diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index c3a8556f9..5e53efeac 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-llvm14" + "image": "ghcr.io/iith-compilers/manylinux2014-llvm/manylinux2014-llvm:x86-llvm16" // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7f5299de2..e2884678a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,10 +14,10 @@ jobs: runs-on: ubuntu-20.04 steps: - - name: Install LLVM-14.0.1 + - name: Install LLVM-16.0.1 run: | wget https://apt.llvm.org/llvm.sh - sudo bash llvm.sh 14 + sudo bash llvm.sh 16 - uses: actions/checkout@v2 - name: Eigen-setup run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b4f4f84db..6fc9074bc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,10 +17,12 @@ jobs: runs-on: ubuntu-20.04 steps: - - name: Install LLVM-14.0.1 + - name: Install libzstd-dev + run: sudo apt-get install libzstd-dev + - name: Install LLVM-16.0.1 run: | wget https://apt.llvm.org/llvm.sh - sudo bash llvm.sh 14 + sudo bash llvm.sh 16 - uses: actions/checkout@v2 - name: Eigen-setup run: | diff --git a/.github/workflows/upload-pypi.yml b/.github/workflows/upload-pypi.yml index 006377f09..7e6778edf 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-llvm14 + container: ghcr.io/iith-compilers/manylinux2014-llvm/manylinux2014-llvm:x86-llvm16 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index 0d96840b0..3d0d52bf6 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-llvm14" + CIBW_MANYLINUX_X86_64_IMAGE: "ghcr.io/iith-compilers/manylinux2014-llvm/manylinux2014-llvm:x86-llvm16" 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/Manylinux2014_Compliant_Source/manylinux-llvm/Dockerfile b/Manylinux2014_Compliant_Source/manylinux-llvm/Dockerfile index 7085bc2a3..fea537d96 100644 --- a/Manylinux2014_Compliant_Source/manylinux-llvm/Dockerfile +++ b/Manylinux2014_Compliant_Source/manylinux-llvm/Dockerfile @@ -36,7 +36,7 @@ RUN cmake -DCMAKE_BUILD_TYPE=Release -G Ninja -B build \ && cmake --install build --prefix /root/destdir WORKDIR /root/llvm -ARG LLVM_VERSION="14.0.1" +ARG LLVM_VERSION="16.0.1" RUN wget -q "https://github.com/llvm/llvm-project/releases/download/llvmorg-${LLVM_VERSION}/llvm-project-${LLVM_VERSION}.src.tar.xz" \ && tar -xf "llvm-project-${LLVM_VERSION}.src.tar.xz" WORKDIR /root/llvm/llvm-project-${LLVM_VERSION}.src/build diff --git a/Manylinux2014_Compliant_Source/pkg/regen-oracle.sh b/Manylinux2014_Compliant_Source/pkg/regen-oracle.sh index 43642afd9..80939f635 100644 --- a/Manylinux2014_Compliant_Source/pkg/regen-oracle.sh +++ b/Manylinux2014_Compliant_Source/pkg/regen-oracle.sh @@ -6,7 +6,7 @@ cd src/test-suite rm -rf oracle -SEED_VERSION="llvm14" +SEED_VERSION="llvm16" SRC_WD="PE-benchmarks" DEST_FOLDER_LL="PE-benchmarks-llfiles-${SEED_VERSION}" DEST_FOLDER_SYM="oracle/SYM_${SEED_VERSION}_f" @@ -18,7 +18,7 @@ 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-14 -S -emit-llvm -Xclang -disable-O0-optnone ${d} -o ${DEST_FOLDER_LL}/${oname}.ll & + name=$(basename ${d}) && oname=${name%.*} && clang-16 -S -emit-llvm -Xclang -disable-O0-optnone ${d} -o ${DEST_FOLDER_LL}/${oname}.ll & done wait diff --git a/Manylinux2014_Compliant_Source/pkg/tests/test_ir2vec.py b/Manylinux2014_Compliant_Source/pkg/tests/test_ir2vec.py index ea0179946..0095d104b 100644 --- a/Manylinux2014_Compliant_Source/pkg/tests/test_ir2vec.py +++ b/Manylinux2014_Compliant_Source/pkg/tests/test_ir2vec.py @@ -13,7 +13,7 @@ ABS_ACCURACY = 1e-4 TEST_SUITE_DIR = pl.Path(__file__).resolve().parents[3] / "src" / "test-suite" -SEED_VERSION = "llvm14" +SEED_VERSION = "llvm16" ll_files = [] path = TEST_SUITE_DIR / f"index-{SEED_VERSION}.files" diff --git a/README.md b/README.md index 0ad32a151..46629ce47 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-v14.0.1-blue)](https://github.com/llvm/llvm-project/releases/tag/llvmorg-14.0.1) +[![LLVM](https://img.shields.io/badge/LLVM-v16.0.1-blue)](https://github.com/llvm/llvm-project/releases/tag/llvmorg-16.0.1) [![PyPI Version](https://img.shields.io/pypi/v/IR2Vec)](https://pypi.org/project/IR2Vec/) ![Tests](https://github.com/IITH-Compilers/IR2Vec/workflows/Tests/badge.svg) ![Publish](https://github.com/IITH-Compilers/IR2Vec/workflows/Publish/badge.svg) @@ -18,7 +18,8 @@ Please see [here](https://compilers.cse.iith.ac.in/projects/ir2vec/) for more de | LLVM Version | Branch | | ------------ | ------ | -| LLVM 14.0.1 | [main](https://github.com/IITH-Compilers/IR2Vec) | +| LLVM 16.0.1 | [main](https://github.com/IITH-Compilers/IR2Vec) | +| LLVM 14.0.1 | [llvm14](https://github.com/IITH-Compilers/IR2Vec/tree/llvm14) | | 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) | @@ -68,7 +69,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 (14.0.1) - [src](https://github.com/llvm/llvm-project/tree/release/14.x), [release](https://releases.llvm.org/download.html#14.0.1) +* LLVM (16.0.1) - [src](https://github.com/llvm/llvm-project/tree/release/16.x), [release](https://releases.llvm.org/download.html#16.0.1) * Support for latest LLVM versions would be added soon * Eigen library (3.3.7) * Python (3.6.7) diff --git a/experiments/Device_Mapping/DevMap.ipynb b/experiments/Device_Mapping/DevMap.ipynb index a943cb90f..30f5e3c6f 100644 --- a/experiments/Device_Mapping/DevMap.ipynb +++ b/experiments/Device_Mapping/DevMap.ipynb @@ -300,7 +300,7 @@ ], "source": [ "raw_embeddings, fileIndexNum = readEmd_program(\n", - " \"./output/embeddings/Device_Mapping_Symbolic_llvm14.txt\"\n", + " \"./output/embeddings/Device_Mapping_Symbolic_llvm16txt\"\n", ")\n", "ir2vec_sym = evaluate(max_depth=10, learning_rate=0.5, n_estimators=70, seed=104)" ] @@ -359,7 +359,7 @@ ], "source": [ "raw_embeddings, fileIndexNum = readEmd_program(\n", - " \"./output/embeddings/Device_Mapping_FlowAware_llvm14.txt\"\n", + " \"./output/embeddings/Device_Mapping_FlowAware_llvm16.txt\"\n", ")\n", "ir2vec_fa = evaluate(max_depth=10, learning_rate=0.5, n_estimators=70, seed=104)" ] diff --git a/experiments/README.md b/experiments/README.md index c28a803da..d33d95d7c 100644 --- a/experiments/README.md +++ b/experiments/README.md @@ -32,8 +32,8 @@ Device_Mapping | |-- cgo17-nvidia.csv |-- output | |-- embeddings -| | |-- Device_Mapping_Symbolic_llvm14.txt -| | |-- Device_Mapping_FlowAware_llvm14.txt +| | |-- Device_Mapping_Symbolic_llvm16.txt +| | |-- Device_Mapping_FlowAware_llvm16.txt |-- DevMap.ipynb ``` ## Thread Coarsening @@ -60,8 +60,8 @@ Thread_Coarsening | |-- pact-2014-runtimes.csv |-- output | |-- embeddings -| | |-- Thread_Coarsening_Symbolic_llvm14.txt -| | |-- Thread_Coarsening_FlowAware_llvm14.txt +| | |-- Thread_Coarsening_Symbolic_llvm16.txt +| | |-- Thread_Coarsening_FlowAware_llvm16.txt |-- ThreadCoarsening.ipynb ``` ## Out_Of_Vocabulary diff --git a/experiments/Thread_Coarsening/ThreadCoarsening.ipynb b/experiments/Thread_Coarsening/ThreadCoarsening.ipynb index bd227854b..15aedb112 100644 --- a/experiments/Thread_Coarsening/ThreadCoarsening.ipynb +++ b/experiments/Thread_Coarsening/ThreadCoarsening.ipynb @@ -324,7 +324,7 @@ ], "source": [ "raw_embeddings, fileIndex = readEmd_program(\n", - " \"./output/embeddings/Thread_Coarsening_Symbolic_llvm14.txt\"\n", + " \"./output/embeddings/Thread_Coarsening_Symbolic_llvm16.txt\"\n", ")\n", "ir2vec_sym = evaluate(max_depth=1, learning_rate=0.05, n_estimators=140)" ] @@ -374,7 +374,7 @@ ], "source": [ "raw_embeddings, fileIndex = readEmd_program(\n", - " \"./output/embeddings/Thread_Coarsening_FlowAware_llvm14.txt\"\n", + " \"./output/embeddings/Thread_Coarsening_FlowAware_llvm16.txt\"\n", ")\n", "ir2vec_fa = evaluate(max_depth=1, learning_rate=0.05, n_estimators=140)" ] diff --git a/experiments/generate_IR2Vec_embeddings.sh b/experiments/generate_IR2Vec_embeddings.sh index c6b9caa8e..7934a7e04 100644 --- a/experiments/generate_IR2Vec_embeddings.sh +++ b/experiments/generate_IR2Vec_embeddings.sh @@ -45,10 +45,10 @@ fi if [ $EncodingType = "SYM" ]; then PASS="sym" - Trans_type="${TASK_DIR}_Symbolic_llvm14" + Trans_type="${TASK_DIR}_Symbolic_llvm16" elif [ $EncodingType = "FA" ]; then PASS="fa" - Trans_type="${TASK_DIR}_FlowAware_llvm14" + Trans_type="${TASK_DIR}_FlowAware_llvm16" else echo "Please enter SYM or FA for EncodingType" exit diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 92c814eb6..5a6e2cc4f 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 14.0.0 REQUIRED CONFIG) +find_package(LLVM 16.0.0 REQUIRED CONFIG) message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}") message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}") @@ -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 llvm14 + COMMAND bash ./sanity_check.sh SYM llvm16 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 llvm14 + COMMAND bash sanity_check.sh FA llvm16 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 6c975ad6e..71e095a2b 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-llvm14 DESTINATION ./) +file(COPY PE-benchmarks-llfiles-llvm16 DESTINATION ./) file(COPY oracle DESTINATION ./) file(COPY ../../vocabulary DESTINATION ./) -file(COPY index-llvm14.files DESTINATION ./) +file(COPY index-llvm16.files DESTINATION ./) diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/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 deleted file mode 100644 index a26f13d5d..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/Find_the_closest_pair_from_two_sorted_arrays.ll +++ /dev/null @@ -1,213 +0,0 @@ -; ModuleID = 'PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp' -source_filename = "PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 -@__const.main.ar1 = private unnamed_addr constant [4 x i32] [i32 1, i32 4, i32 5, i32 7], align 16 -@__const.main.ar2 = private unnamed_addr constant [4 x i32] [i32 10, i32 20, i32 30, i32 40], align 16 - -; 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) #0 { - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - store i32* %0, i32** %6, align 8 - store i32* %1, i32** %7, align 8 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - store i32 %4, i32* %10, align 4 - store i32 2147483647, i32* %11, align 4 - store i32 0, i32* %14, align 4 - %16 = load i32, i32* %9, align 4 - %17 = sub nsw i32 %16, 1 - store i32 %17, i32* %15, align 4 - br label %18 - -18: ; preds = %81, %5 - %19 = load i32, i32* %14, align 4 - %20 = load i32, i32* %8, align 4 - %21 = icmp slt i32 %19, %20 - br i1 %21, label %22, label %25 - -22: ; preds = %18 - %23 = load i32, i32* %15, align 4 - %24 = icmp sge i32 %23, 0 - br label %25 - -25: ; preds = %22, %18 - %26 = phi i1 [ false, %18 ], [ %24, %22 ] - br i1 %26, label %27, label %82 - -27: ; preds = %25 - %28 = load i32*, i32** %6, align 8 - %29 = load i32, i32* %14, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i32, i32* %28, i64 %30 - %32 = load i32, i32* %31, align 4 - %33 = load i32*, i32** %7, align 8 - %34 = load i32, i32* %15, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i32, i32* %33, i64 %35 - %37 = load i32, i32* %36, align 4 - %38 = add nsw i32 %32, %37 - %39 = load i32, i32* %10, align 4 - %40 = sub nsw i32 %38, %39 - %41 = call i32 @abs(i32 noundef %40) #5 - %42 = load i32, i32* %11, align 4 - %43 = icmp slt i32 %41, %42 - br i1 %43, label %44, label %61 - -44: ; preds = %27 - %45 = load i32, i32* %14, align 4 - store i32 %45, i32* %12, align 4 - %46 = load i32, i32* %15, align 4 - store i32 %46, i32* %13, align 4 - %47 = load i32*, i32** %6, align 8 - %48 = load i32, i32* %14, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %47, i64 %49 - %51 = load i32, i32* %50, align 4 - %52 = load i32*, i32** %7, align 8 - %53 = load i32, i32* %15, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %52, i64 %54 - %56 = load i32, i32* %55, align 4 - %57 = add nsw i32 %51, %56 - %58 = load i32, i32* %10, align 4 - %59 = sub nsw i32 %57, %58 - %60 = call i32 @abs(i32 noundef %59) #5 - store i32 %60, i32* %11, align 4 - br label %61 - -61: ; preds = %44, %27 - %62 = load i32*, i32** %6, align 8 - %63 = load i32, i32* %14, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds i32, i32* %62, i64 %64 - %66 = load i32, i32* %65, align 4 - %67 = load i32*, i32** %7, align 8 - %68 = load i32, i32* %15, align 4 - %69 = sext i32 %68 to i64 - %70 = getelementptr inbounds i32, i32* %67, i64 %69 - %71 = load i32, i32* %70, align 4 - %72 = add nsw i32 %66, %71 - %73 = load i32, i32* %10, align 4 - %74 = icmp sgt i32 %72, %73 - br i1 %74, label %75, label %78 - -75: ; preds = %61 - %76 = load i32, i32* %15, align 4 - %77 = add nsw i32 %76, -1 - store i32 %77, i32* %15, align 4 - br label %81 - -78: ; preds = %61 - %79 = load i32, i32* %14, align 4 - %80 = add nsw i32 %79, 1 - store i32 %80, i32* %14, align 4 - br label %81 - -81: ; preds = %78, %75 - br label %18, !llvm.loop !6 - -82: ; preds = %25 - %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 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 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 i32 @abs(i32 noundef) #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) #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [4 x i32], align 16 - %3 = alloca [4 x i32], align 16 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %7 = bitcast [4 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %7, i8* align 16 bitcast ([4 x i32]* @__const.main.ar1 to i8*), i64 16, i1 false) - %8 = bitcast [4 x i32]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %8, i8* align 16 bitcast ([4 x i32]* @__const.main.ar2 to i8*), i64 16, i1 false) - store i32 4, i32* %4, align 4 - store i32 4, i32* %5, align 4 - store i32 38, i32* %6, align 4 - %9 = getelementptr inbounds [4 x i32], [4 x i32]* %2, i64 0, i64 0 - %10 = getelementptr inbounds [4 x i32], [4 x i32]* %3, i64 0, i64 0 - %11 = load i32, i32* %4, align 4 - %12 = load i32, i32* %5, align 4 - %13 = load i32, i32* %6, align 4 - call void @_Z12printClosestPiS_iii(i32* noundef %9, i32* noundef %10, i32 noundef %11, i32 noundef %12, i32 noundef %13) - ret i32 0 -} - -; 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 = { 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 = { 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 #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 } -attributes #5 = { nounwind readnone willreturn } - -!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-llvm14/Iterative_QuickSort.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/Iterative_QuickSort.ll deleted file mode 100644 index 2e44a5f5a..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/Iterative_QuickSort.ll +++ /dev/null @@ -1,337 +0,0 @@ -; ModuleID = 'PE-benchmarks/Iterative_QuickSort.cpp' -source_filename = "PE-benchmarks/Iterative_QuickSort.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z4swapPiS_(i32* noundef %0, i32* noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %6, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %3, align 8 - store i32 %9, i32* %10, align 4 - %11 = load i32, i32* %5, align 4 - %12 = load i32*, i32** %4, align 8 - store i32 %11, i32* %12, align 4 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z9partitionPiii(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 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %10 = load i32*, i32** %4, align 8 - %11 = load i32, i32* %6, align 4 - %12 = sext i32 %11 to i64 - %13 = getelementptr inbounds i32, i32* %10, i64 %12 - %14 = load i32, i32* %13, align 4 - store i32 %14, i32* %7, align 4 - %15 = load i32, i32* %5, align 4 - %16 = sub nsw i32 %15, 1 - store i32 %16, i32* %8, align 4 - %17 = load i32, i32* %5, align 4 - store i32 %17, i32* %9, align 4 - br label %18 - -18: ; preds = %43, %3 - %19 = load i32, i32* %9, align 4 - %20 = load i32, i32* %6, align 4 - %21 = sub nsw i32 %20, 1 - %22 = icmp sle i32 %19, %21 - br i1 %22, label %23, label %46 - -23: ; preds = %18 - %24 = load i32*, i32** %4, align 8 - %25 = load i32, i32* %9, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i32, i32* %24, i64 %26 - %28 = load i32, i32* %27, align 4 - %29 = load i32, i32* %7, align 4 - %30 = icmp sle i32 %28, %29 - br i1 %30, label %31, label %42 - -31: ; preds = %23 - %32 = load i32, i32* %8, align 4 - %33 = add nsw i32 %32, 1 - store i32 %33, i32* %8, align 4 - %34 = load i32*, i32** %4, align 8 - %35 = load i32, i32* %8, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i32, i32* %34, i64 %36 - %38 = load i32*, i32** %4, align 8 - %39 = load i32, i32* %9, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i32, i32* %38, i64 %40 - call void @_Z4swapPiS_(i32* noundef %37, i32* noundef %41) - br label %42 - -42: ; preds = %31, %23 - br label %43 - -43: ; preds = %42 - %44 = load i32, i32* %9, align 4 - %45 = add nsw i32 %44, 1 - store i32 %45, i32* %9, align 4 - br label %18, !llvm.loop !6 - -46: ; preds = %18 - %47 = load i32*, i32** %4, align 8 - %48 = load i32, i32* %8, align 4 - %49 = add nsw i32 %48, 1 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %47, i64 %50 - %52 = load i32*, i32** %4, align 8 - %53 = load i32, i32* %6, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %52, i64 %54 - call void @_Z4swapPiS_(i32* noundef %51, i32* noundef %55) - %56 = load i32, i32* %8, align 4 - %57 = add nsw i32 %56, 1 - ret i32 %57 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z18quickSortIterativePiii(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 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %11 = load i32, i32* %6, align 4 - %12 = load i32, i32* %5, align 4 - %13 = sub nsw i32 %11, %12 - %14 = add nsw i32 %13, 1 - %15 = zext i32 %14 to i64 - %16 = call i8* @llvm.stacksave() - store i8* %16, i8** %7, align 8 - %17 = alloca i32, i64 %15, align 16 - store i64 %15, i64* %8, align 8 - store i32 -1, i32* %9, align 4 - %18 = load i32, i32* %5, align 4 - %19 = load i32, i32* %9, align 4 - %20 = add nsw i32 %19, 1 - store i32 %20, i32* %9, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i32, i32* %17, i64 %21 - store i32 %18, i32* %22, align 4 - %23 = load i32, i32* %6, align 4 - %24 = load i32, i32* %9, align 4 - %25 = add nsw i32 %24, 1 - store i32 %25, i32* %9, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i32, i32* %17, i64 %26 - store i32 %23, i32* %27, align 4 - br label %28 - -28: ; preds = %79, %3 - %29 = load i32, i32* %9, align 4 - %30 = icmp sge i32 %29, 0 - br i1 %30, label %31, label %80 - -31: ; preds = %28 - %32 = load i32, i32* %9, align 4 - %33 = add nsw i32 %32, -1 - store i32 %33, i32* %9, align 4 - %34 = sext i32 %32 to i64 - %35 = getelementptr inbounds i32, i32* %17, i64 %34 - %36 = load i32, i32* %35, align 4 - store i32 %36, i32* %6, align 4 - %37 = load i32, i32* %9, align 4 - %38 = add nsw i32 %37, -1 - store i32 %38, i32* %9, align 4 - %39 = sext i32 %37 to i64 - %40 = getelementptr inbounds i32, i32* %17, i64 %39 - %41 = load i32, i32* %40, align 4 - store i32 %41, i32* %5, align 4 - %42 = load i32*, i32** %4, align 8 - %43 = load i32, i32* %5, align 4 - %44 = load i32, i32* %6, align 4 - %45 = call 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 - %48 = load i32, i32* %5, align 4 - %49 = icmp sgt i32 %47, %48 - br i1 %49, label %50, label %62 - -50: ; preds = %31 - %51 = load i32, i32* %5, align 4 - %52 = load i32, i32* %9, align 4 - %53 = add nsw i32 %52, 1 - store i32 %53, i32* %9, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %17, i64 %54 - store i32 %51, i32* %55, align 4 - %56 = load i32, i32* %10, align 4 - %57 = sub nsw i32 %56, 1 - %58 = load i32, i32* %9, align 4 - %59 = add nsw i32 %58, 1 - store i32 %59, i32* %9, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i32, i32* %17, i64 %60 - store i32 %57, i32* %61, align 4 - br label %62 - -62: ; preds = %50, %31 - %63 = load i32, i32* %10, align 4 - %64 = add nsw i32 %63, 1 - %65 = load i32, i32* %6, align 4 - %66 = icmp slt i32 %64, %65 - br i1 %66, label %67, label %79 - -67: ; preds = %62 - %68 = load i32, i32* %10, align 4 - %69 = add nsw i32 %68, 1 - %70 = load i32, i32* %9, align 4 - %71 = add nsw i32 %70, 1 - store i32 %71, i32* %9, align 4 - %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds i32, i32* %17, i64 %72 - store i32 %69, i32* %73, align 4 - %74 = load i32, i32* %6, align 4 - %75 = load i32, i32* %9, align 4 - %76 = add nsw i32 %75, 1 - store i32 %76, i32* %9, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds i32, i32* %17, i64 %77 - store i32 %74, i32* %78, align 4 - br label %79 - -79: ; preds = %67, %62 - br label %28, !llvm.loop !8 - -80: ; preds = %28 - %81 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %81) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z8printArrPii(i32* noundef %0, i32 noundef %1) #2 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %6 - -6: ; preds = %18, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %7, %8 - br i1 %9, label %10, label %21 - -10: ; preds = %6 - %11 = load i32*, i32** %3, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - %15 = load i32, i32* %14, align 4 - %16 = call 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 !9 - -21: ; preds = %6 - ret void -} - -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) #3 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 - -; 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 - store i32 0, i32* %1, align 4 - %4 = bitcast [8 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([8 x i32]* @__const.main.arr to i8*), i64 32, i1 false) - store i32 8, i32* %3, align 4 - %5 = getelementptr inbounds [8 x i32], [8 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = sub nsw i32 %6, 1 - call void @_Z18quickSortIterativePiii(i32* 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* noundef %8, i32 noundef %9) - ret i32 0 -} - -; 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 = { 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 = { 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 #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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/Nearly_sorted_Algo.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/Nearly_sorted_Algo.ll deleted file mode 100644 index 5a7f1d829..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/Nearly_sorted_Algo.ll +++ /dev/null @@ -1,2684 +0,0 @@ -; ModuleID = 'PE-benchmarks/Nearly_sorted_Algo.cpp' -source_filename = "PE-benchmarks/Nearly_sorted_Algo.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::priority_queue" = type <{ %"class.std::vector", %"struct.std::greater", [7 x i8] }> -%"class.std::vector" = type { %"struct.std::_Vector_base" } -%"struct.std::_Vector_base" = type { %"struct.std::_Vector_base>::_Vector_impl" } -%"struct.std::_Vector_base>::_Vector_impl" = type { %"struct.std::_Vector_base>::_Vector_impl_data" } -%"struct.std::_Vector_base>::_Vector_impl_data" = type { i32*, i32*, i32* } -%"struct.std::greater" = type { i8 } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::__normal_iterator" = type { i32* } -%"struct.std::forward_iterator_tag" = type { i8 } -%"struct.std::random_access_iterator_tag" = type { i8 } -%"struct.__gnu_cxx::__ops::_Iter_comp_iter" = type { %"struct.std::greater" } -%"struct.__gnu_cxx::__ops::_Iter_comp_val" = type { %"struct.std::greater" } -%"class.__gnu_cxx::__normal_iterator.0" = type { i32* } -%"struct.std::integral_constant" = type { i8 } - -$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPivEET_S8_RKS4_ = comdat any - -$_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv = comdat any - -$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv = comdat any - -$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE4pushERKi = comdat any - -$_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE5emptyEv = comdat any - -$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEED2Ev = comdat any - -$_ZNSt6vectorIiSaIiEED2Ev = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt12_Vector_baseIiSaIiEED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZSt8_DestroyIPiEvT_S1_ = comdat any - -$_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev = comdat any - -$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any - -$_ZNSt15__new_allocatorIiED2Ev = comdat any - -$_ZNSt6vectorIiSaIiEEC2IPivEET_S4_RKS0_ = comdat any - -$_ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_ = comdat any - -$_ZNSt6vectorIiSaIiEE5beginEv = comdat any - -$_ZNSt6vectorIiSaIiEE3endEv = comdat any - -$_ZNSt12_Vector_baseIiSaIiEEC2ERKS0_ = comdat any - -$_ZNSt6vectorIiSaIiEE19_M_range_initializeIPiEEvT_S4_St20forward_iterator_tag = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm = comdat any - -$_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_ = comdat any - -$_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E = comdat any - -$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZSt18uninitialized_copyIPiS0_ET0_T_S2_S1_ = comdat any - -$_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIPiS2_EET0_T_S4_S3_ = comdat any - -$_ZSt4copyIPiS0_ET0_T_S2_S1_ = comdat any - -$_ZSt13__copy_move_aILb0EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt12__miter_baseIPiET_S1_ = comdat any - -$_ZSt12__niter_wrapIPiET_RKS1_S1_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt12__niter_baseIPiET_S1_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiiEEPT0_PT_S6_S4_ = comdat any - -$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIiiEEvPT_PT0_ = comdat any - -$_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_ = comdat any - -$_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEC2ES3_ = comdat any - -$_ZSt11__make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_RT0_ = comdat any - -$_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_ = comdat any - -$_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_ = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv = comdat any - -$_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_T0_SD_T1_T2_ = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv = comdat any - -$_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_ = comdat any - -$_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEESB_EEbT_T0_ = comdat any - -$_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEEEONSt16remove_referenceIT_E4typeEOS8_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2EONS0_15_Iter_comp_iterIS3_EE = comdat any - -$_ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops14_Iter_comp_valISt7greaterIiEEEEvT_T0_SD_T1_RT2_ = comdat any - -$_ZNKSt7greaterIiEclERKiS2_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEEiEEbT_RT0_ = comdat any - -$_ZNKSt6vectorIiSaIiEE5frontEv = comdat any - -$_ZNKSt6vectorIiSaIiEE5beginEv = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEdeEv = comdat any - -$_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_ = comdat any - -$_ZSt8pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_ = comdat any - -$_ZNSt6vectorIiSaIiEE8pop_backEv = comdat any - -$_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmmEv = comdat any - -$_ZSt10__pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_SC_RT0_ = comdat any - -$_ZNSt6vectorIiSaIiEE9push_backERKi = comdat any - -$_ZSt9push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_ = comdat any - -$_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc = comdat any - -$_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_ = comdat any - -$_ZNKSt6vectorIiSaIiEE8max_sizeEv = comdat any - -$_ZNKSt6vectorIiSaIiEE4sizeEv = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE = comdat any - -$_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_ = comdat any - -$_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2ES3_ = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmiEl = comdat any - -$_ZNKSt6vectorIiSaIiEE5emptyEv = comdat any - -$_ZN9__gnu_cxxeqIPKiSt6vectorIiSaIiEEEEbRKNS_17__normal_iteratorIT_T0_EESB_ = comdat any - -$_ZNKSt6vectorIiSaIiEE3endEv = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv = comdat any - -@_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 -@.str.2 = private unnamed_addr constant [49 x i8] c"cannot create std::vector larger than max_size()\00", align 1 -@.str.3 = private unnamed_addr constant [26 x i8] c"vector::_M_realloc_insert\00", align 1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z5sortKPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca %"class.std::priority_queue", align 8 - %8 = alloca %"struct.std::greater", align 1 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i8*, align 8 - %12 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %13 = load i32*, i32** %4, align 8 - %14 = load i32*, i32** %4, align 8 - %15 = load i32, i32* %6, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds i32, i32* %14, i64 %16 - %18 = getelementptr inbounds i32, i32* %17, i64 1 - call void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPivEET_S8_RKS4_(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7, i32* noundef %13, i32* noundef %18, %"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %8) - store i32 0, i32* %9, align 4 - %19 = load i32, i32* %6, align 4 - %20 = add nsw i32 %19, 1 - store i32 %20, i32* %10, align 4 - br label %21 - -21: ; preds = %40, %3 - %22 = load i32, i32* %10, align 4 - %23 = load i32, i32* %5, align 4 - %24 = icmp slt i32 %22, %23 - br i1 %24, label %25, label %47 - -25: ; preds = %21 - %26 = invoke noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7) - to label %27 unwind label %43 - -27: ; preds = %25 - %28 = load i32, i32* %26, align 4 - %29 = load i32*, i32** %4, align 8 - %30 = load i32, i32* %9, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %9, align 4 - %32 = sext i32 %30 to i64 - %33 = getelementptr inbounds i32, i32* %29, i64 %32 - store i32 %28, i32* %33, align 4 - invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7) - to label %34 unwind label %43 - -34: ; preds = %27 - %35 = load i32*, i32** %4, align 8 - %36 = load i32, i32* %10, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i32, i32* %35, i64 %37 - invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE4pushERKi(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7, i32* noundef nonnull align 4 dereferenceable(4) %38) - to label %39 unwind label %43 - -39: ; preds = %34 - br label %40 - -40: ; preds = %39 - %41 = load i32, i32* %10, align 4 - %42 = add nsw i32 %41, 1 - store i32 %42, i32* %10, align 4 - br label %21, !llvm.loop !6 - -43: ; preds = %55, %53, %48, %34, %27, %25 - %44 = landingpad { i8*, i32 } - cleanup - %45 = extractvalue { i8*, i32 } %44, 0 - store i8* %45, i8** %11, align 8 - %46 = extractvalue { i8*, i32 } %44, 1 - store i32 %46, i32* %12, align 4 - call void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEED2Ev(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7) #12 - br label %64 - -47: ; preds = %21 - br label %48 - -48: ; preds = %62, %47 - %49 = invoke noundef zeroext i1 @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE5emptyEv(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7) - to label %50 unwind label %43 - -50: ; preds = %48 - %51 = zext i1 %49 to i32 - %52 = icmp eq i32 %51, 0 - br i1 %52, label %53, label %63 - -53: ; preds = %50 - %54 = invoke noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7) - to label %55 unwind label %43 - -55: ; preds = %53 - %56 = load i32, i32* %54, align 4 - %57 = load i32*, i32** %4, align 8 - %58 = load i32, i32* %9, align 4 - %59 = add nsw i32 %58, 1 - store i32 %59, i32* %9, align 4 - %60 = sext i32 %58 to i64 - %61 = getelementptr inbounds i32, i32* %57, i64 %60 - store i32 %56, i32* %61, align 4 - invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7) - to label %62 unwind label %43 - -62: ; preds = %55 - br label %48, !llvm.loop !8 - -63: ; preds = %50 - call void @llvm.trap() - unreachable - -64: ; preds = %43 - %65 = load i8*, i8** %11, align 8 - %66 = load i32, i32* %12, align 4 - %67 = insertvalue { i8*, i32 } undef, i8* %65, 0 - %68 = insertvalue { i8*, i32 } %67, i32 %66, 1 - resume { i8*, i32 } %68 -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPivEET_S8_RKS4_(%"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) unnamed_addr #1 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"class.std::allocator"*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca %"class.std::priority_queue"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca i32*, align 8 - %12 = alloca %"struct.std::greater"*, align 8 - %13 = alloca %"class.std::allocator", align 1 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - %16 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %17 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %18 = alloca %"struct.std::greater", align 1 - store %"class.std::priority_queue"* %0, %"class.std::priority_queue"** %9, align 8 - store i32* %1, i32** %10, align 8 - store i32* %2, i32** %11, align 8 - store %"struct.std::greater"* %3, %"struct.std::greater"** %12, align 8 - %19 = load %"class.std::priority_queue"*, %"class.std::priority_queue"** %9, align 8 - %20 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %19, i32 0, i32 0 - %21 = load i32*, i32** %10, align 8 - %22 = load i32*, i32** %11, align 8 - store %"class.std::allocator"* %13, %"class.std::allocator"** %8, align 8 - %23 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %24 = bitcast %"class.std::allocator"* %23 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %24, %"class.std::__new_allocator"** %5, align 8 - %25 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - invoke void @_ZNSt6vectorIiSaIiEEC2IPivEET_S4_RKS0_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %20, i32* noundef %21, i32* noundef %22, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %13) - to label %26 unwind label %43 - -26: ; preds = %4 - store %"class.std::allocator"* %13, %"class.std::allocator"** %7, align 8 - %27 = load %"class.std::allocator"*, %"class.std::allocator"** %7, align 8 - %28 = bitcast %"class.std::allocator"* %27 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %28) #12 - %29 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %19, i32 0, i32 1 - %30 = load %"struct.std::greater"*, %"struct.std::greater"** %12, align 8 - %31 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %19, i32 0, i32 0 - %32 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %31) #12 - %33 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %16, i32 0, i32 0 - store i32* %32, i32** %33, align 8 - %34 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %19, i32 0, i32 0 - %35 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %34) #12 - %36 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %17, i32 0, i32 0 - store i32* %35, i32** %36, align 8 - %37 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %19, i32 0, i32 1 - %38 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %16, i32 0, i32 0 - %39 = load i32*, i32** %38, align 8 - %40 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %17, i32 0, i32 0 - %41 = load i32*, i32** %40, align 8 - invoke void @_ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(i32* %39, i32* %41) - to label %42 unwind label %49 - -42: ; preds = %26 - ret void - -43: ; preds = %4 - %44 = landingpad { i8*, i32 } - cleanup - %45 = extractvalue { i8*, i32 } %44, 0 - store i8* %45, i8** %14, align 8 - %46 = extractvalue { i8*, i32 } %44, 1 - store i32 %46, i32* %15, align 4 - store %"class.std::allocator"* %13, %"class.std::allocator"** %6, align 8 - %47 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %48 = bitcast %"class.std::allocator"* %47 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %48) #12 - br label %53 - -49: ; preds = %26 - %50 = landingpad { i8*, i32 } - cleanup - %51 = extractvalue { i8*, i32 } %50, 0 - store i8* %51, i8** %14, align 8 - %52 = extractvalue { i8*, i32 } %50, 1 - store i32 %52, i32* %15, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %20) #12 - br label %53 - -53: ; preds = %49, %43 - %54 = load i8*, i8** %14, align 8 - %55 = load i32, i32* %15, align 4 - %56 = insertvalue { i8*, i32 } undef, i8* %54, 0 - %57 = insertvalue { i8*, i32 } %56, i32 %55, 1 - resume { i8*, i32 } %57 -} - -; 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) #2 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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt6vectorIiSaIiEE5frontEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %4) #12 - ret i32* %5 -} - -declare i32 @__gxx_personality_v0(...) - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %0) #0 comdat align 2 { - %2 = alloca %"class.std::priority_queue"*, align 8 - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"struct.std::greater", align 1 - store %"class.std::priority_queue"* %0, %"class.std::priority_queue"** %2, align 8 - %6 = load %"class.std::priority_queue"*, %"class.std::priority_queue"** %2, align 8 - %7 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %6, i32 0, i32 0 - %8 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %7) #12 - %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"* noundef nonnull align 8 dereferenceable(24) %10) #12 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %11, i32** %12, align 8 - %13 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %6, i32 0, i32 1 - %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - %15 = load i32*, i32** %14, align 8 - %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - call void @_ZSt8pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(i32* %15, i32* %17) - %18 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %6, i32 0, i32 0 - call void @_ZNSt6vectorIiSaIiEE8pop_backEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %18) #12 - ret void -} - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::priority_queue"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %7 = alloca %"struct.std::greater", align 1 - store %"class.std::priority_queue"* %0, %"class.std::priority_queue"** %3, align 8 - store i32* %1, i32** %4, align 8 - %8 = load %"class.std::priority_queue"*, %"class.std::priority_queue"** %3, align 8 - %9 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %8, i32 0, i32 0 - %10 = load i32*, i32** %4, align 8 - call void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.std::vector"* 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"* noundef nonnull align 8 dereferenceable(24) %11) #12 - %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"* noundef nonnull align 8 dereferenceable(24) %14) #12 - %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %6, i32 0, i32 0 - store i32* %15, i32** %16, align 8 - %17 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %8, i32 0, i32 1 - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - %19 = load i32*, i32** %18, align 8 - %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %6, i32 0, i32 0 - %21 = load i32*, i32** %20, align 8 - call void @_ZSt9push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(i32* %19, i32* %21) - ret void -} - -; Function Attrs: 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) #2 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 noundef zeroext i1 @_ZNKSt6vectorIiSaIiEE5emptyEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %4) #12 - ret i1 %5 -} - -; Function Attrs: cold noreturn nounwind -declare void @llvm.trap() #3 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEED2Ev(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %0) unnamed_addr #4 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"* noundef nonnull align 8 dereferenceable(24) %4) #12 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z10printArrayPii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %6 - -6: ; preds = %18, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %7, %8 - br i1 %9, label %10, label %21 - -10: ; preds = %6 - %11 = load i32*, i32** %3, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - %15 = load i32, i32* %14, align 4 - %16 = call 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 !9 - -21: ; preds = %6 - %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 noundef 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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -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) #5 - -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)) #5 - -; 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 [6 x i32], align 16 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 3, i32* %2, align 4 - %5 = bitcast [6 x i32]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([6 x i32]* @__const.main.arr to i8*), i64 24, i1 false) - store i32 6, i32* %4, align 4 - %6 = getelementptr inbounds [6 x i32], [6 x i32]* %3, i64 0, i64 0 - %7 = load i32, i32* %4, align 4 - %8 = load i32, i32* %2, align 4 - %9 = call 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* noundef %11, i32 noundef %12) - ret i32 0 -} - -; 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 -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca i32*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"class.std::vector"*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store %"class.std::vector"* %0, %"class.std::vector"** %5, align 8 - %8 = load %"class.std::vector"*, %"class.std::vector"** %5, align 8 - %9 = bitcast %"class.std::vector"* %8 to %"struct.std::_Vector_base"* - %10 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %9, i32 0, i32 0 - %11 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %10 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %11, i32 0, i32 0 - %13 = load i32*, i32** %12, align 8 - %14 = bitcast %"class.std::vector"* %8 to %"struct.std::_Vector_base"* - %15 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %15 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %16, i32 0, i32 1 - %18 = load i32*, i32** %17, align 8 - %19 = bitcast %"class.std::vector"* %8 to %"struct.std::_Vector_base"* - %20 = 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) %19) #12 - store i32* %13, i32** %2, align 8 - store i32* %18, i32** %3, align 8 - store %"class.std::allocator"* %20, %"class.std::allocator"** %4, align 8 - %21 = load i32*, i32** %2, align 8 - %22 = load i32*, i32** %3, align 8 - invoke void @_ZSt8_DestroyIPiEvT_S1_(i32* noundef %21, i32* noundef %22) - to label %23 unwind label %26 - -23: ; preds = %1 - br label %24 - -24: ; preds = %23 - %25 = bitcast %"class.std::vector"* %8 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %25) #12 - ret void - -26: ; preds = %1 - %27 = landingpad { i8*, i32 } - catch i8* null - %28 = extractvalue { i8*, i32 } %27, 0 - store i8* %28, i8** %6, align 8 - %29 = extractvalue { i8*, i32 } %27, 1 - store i32 %29, i32* %7, align 4 - %30 = bitcast %"class.std::vector"* %8 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %30) #12 - br label %31 - -31: ; preds = %26 - %32 = load i8*, i8** %6, align 8 - call void @__clang_call_terminate(i8* %32) #13 - unreachable -} - -; 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) #2 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %3 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %5 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %11 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %10 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %11, i32 0, i32 2 - %13 = load i32*, i32** %12, align 8 - %14 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %15 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %14 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %15, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = ptrtoint i32* %13 to i64 - %19 = ptrtoint i32* %17 to i64 - %20 = sub i64 %18, %19 - %21 = sdiv exact i64 %20, 4 - invoke void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* 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"* noundef nonnull align 8 dereferenceable(24) %23) #12 - ret void - -24: ; preds = %1 - %25 = landingpad { i8*, i32 } - catch i8* null - %26 = extractvalue { i8*, i32 } %25, 0 - store i8* %26, i8** %3, align 8 - %27 = extractvalue { i8*, i32 } %25, 1 - store i32 %27, i32* %4, align 4 - %28 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %28) #12 - br label %29 - -29: ; preds = %24 - %30 = load i8*, i8** %3, align 8 - call void @__clang_call_terminate(i8* %30) #13 - unreachable -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #8 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #12 - call void @_ZSt9terminatev() #13 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZSt8_DestroyIPiEvT_S1_(i32* noundef %0, i32* noundef %1) #0 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* noundef %5, i32* noundef %6) - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(i32* noundef %0, i32* noundef %1) #2 comdat align 2 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - ret void -} - -; Function Attrs: 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) #0 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - %7 = alloca %"struct.std::_Vector_base"*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i64, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %7, align 8 - store i32* %1, i32** %8, align 8 - store i64 %2, i64* %9, align 8 - %10 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %7, align 8 - %11 = load i32*, i32** %8, align 8 - %12 = icmp ne i32* %11, null - br i1 %12, label %13, label %22 - -13: ; preds = %3 - %14 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %10, i32 0, i32 0 - %15 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %14 to %"class.std::allocator"* - %16 = load i32*, i32** %8, align 8 - %17 = load i64, i64* %9, align 8 - store %"class.std::allocator"* %15, %"class.std::allocator"** %4, align 8 - store i32* %16, i32** %5, align 8 - store i64 %17, i64* %6, align 8 - %18 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %19 = bitcast %"class.std::allocator"* %18 to %"class.std::__new_allocator"* - %20 = load i32*, i32** %5, align 8 - %21 = load i64, i64* %6, align 8 - call void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %19, i32* noundef %20, i64 noundef %21) - br label %22 - -22: ; preds = %13, %3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #4 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = 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 - %4 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %3, align 8 - %5 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %4 to %"class.std::allocator"* - store %"class.std::allocator"* %5, %"class.std::allocator"** %2, align 8 - %6 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %7 = bitcast %"class.std::allocator"* %6 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #12 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #2 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* noundef %9) #14 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #9 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #4 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2IPivEET_S4_RKS0_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef %1, i32* noundef %2, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) unnamed_addr #1 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %5 = alloca i32**, align 8 - %6 = alloca %"class.std::vector"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::allocator"*, align 8 - %10 = alloca %"struct.std::forward_iterator_tag", align 1 - %11 = alloca %"struct.std::random_access_iterator_tag", align 1 - %12 = alloca i8*, align 8 - %13 = alloca i32, align 4 - %14 = alloca %"struct.std::random_access_iterator_tag", align 1 - store %"class.std::vector"* %0, %"class.std::vector"** %6, align 8 - store i32* %1, i32** %7, align 8 - store i32* %2, i32** %8, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %9, align 8 - %15 = load %"class.std::vector"*, %"class.std::vector"** %6, align 8 - %16 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %17 = load %"class.std::allocator"*, %"class.std::allocator"** %9, align 8 - call void @_ZNSt12_Vector_baseIiSaIiEEC2ERKS0_(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %16, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %17) #12 - %18 = load i32*, i32** %7, align 8 - %19 = load i32*, i32** %8, align 8 - store i32** %7, i32*** %5, align 8 - br label %20 - -20: ; preds = %4 - %21 = bitcast %"struct.std::random_access_iterator_tag"* %11 to %"struct.std::forward_iterator_tag"* - invoke void @_ZNSt6vectorIiSaIiEE19_M_range_initializeIPiEEvT_S4_St20forward_iterator_tag(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %15, i32* noundef %18, i32* noundef %19) - to label %22 unwind label %23 - -22: ; preds = %20 - ret void - -23: ; preds = %20 - %24 = landingpad { i8*, i32 } - cleanup - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %12, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %13, align 4 - %27 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %27) #12 - br label %28 - -28: ; preds = %23 - %29 = load i8*, i8** %12, align 8 - %30 = load i32, i32* %13, align 4 - %31 = insertvalue { i8*, i32 } undef, i8* %29, 0 - %32 = insertvalue { i8*, i32 } %31, i32 %30, 1 - resume { i8*, i32 } %32 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(i32* %0, i32* %1) #0 comdat { - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"struct.std::greater", align 1 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 - %7 = alloca %"struct.std::greater", align 1 - %8 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %9 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %10 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - store i32* %0, i32** %10, align 8 - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %1, i32** %11, align 8 - %12 = call noundef nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %5) #12 - 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) - %15 = bitcast %"class.__gnu_cxx::__normal_iterator"* %9 to i8* - %16 = bitcast %"class.__gnu_cxx::__normal_iterator"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %15, i8* align 8 %16, i64 8, i1 false) - %17 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %8, i32 0, i32 0 - %18 = load i32*, i32** %17, align 8 - %19 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %9, i32 0, i32 0 - %20 = load i32*, i32** %19, align 8 - call void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_RT0_(i32* %18, i32* %20, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 1 dereferenceable(1) %6) - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef nonnull align 8 dereferenceable(8) %8) #12 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 1 - call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef nonnull align 8 dereferenceable(8) %8) #12 - %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_baseIiSaIiEEC2ERKS0_(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1) unnamed_addr #4 comdat align 2 { - %3 = alloca %"struct.std::_Vector_base"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %3, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %4, align 8 - %5 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %6, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #12 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE19_M_range_initializeIPiEEvT_S4_St20forward_iterator_tag(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef %1, i32* noundef %2) #0 comdat align 2 { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"struct.std::forward_iterator_tag", align 1 - %10 = alloca %"class.std::vector"*, align 8 - %11 = alloca i32*, align 8 - %12 = alloca i32*, align 8 - %13 = alloca i64, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %10, align 8 - store i32* %1, i32** %11, align 8 - store i32* %2, i32** %12, align 8 - %14 = load %"class.std::vector"*, %"class.std::vector"** %10, align 8 - %15 = load i32*, i32** %11, align 8 - %16 = load i32*, i32** %12, align 8 - store i32* %15, i32** %7, align 8 - store i32* %16, i32** %8, align 8 - %17 = load i32*, i32** %7, align 8 - %18 = load i32*, i32** %8, align 8 - store i32** %7, i32*** %6, align 8 - store i32* %17, i32** %4, align 8 - store i32* %18, i32** %5, align 8 - %19 = load i32*, i32** %5, align 8 - %20 = load i32*, i32** %4, align 8 - %21 = ptrtoint i32* %19 to i64 - %22 = ptrtoint i32* %20 to i64 - %23 = sub i64 %21, %22 - %24 = sdiv exact i64 %23, 4 - store i64 %24, i64* %13, align 8 - %25 = bitcast %"class.std::vector"* %14 to %"struct.std::_Vector_base"* - %26 = load i64, i64* %13, align 8 - %27 = bitcast %"class.std::vector"* %14 to %"struct.std::_Vector_base"* - %28 = 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) %27) #12 - %29 = call noundef i64 @_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_(i64 noundef %26, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %28) - %30 = call noundef i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %25, i64 noundef %29) - %31 = bitcast %"class.std::vector"* %14 to %"struct.std::_Vector_base"* - %32 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %32 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %33, i32 0, i32 0 - store i32* %30, i32** %34, align 8 - %35 = bitcast %"class.std::vector"* %14 to %"struct.std::_Vector_base"* - %36 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %35, i32 0, i32 0 - %37 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %36 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %37, i32 0, i32 0 - %39 = load i32*, i32** %38, align 8 - %40 = load i64, i64* %13, align 8 - %41 = getelementptr inbounds i32, i32* %39, i64 %40 - %42 = bitcast %"class.std::vector"* %14 to %"struct.std::_Vector_base"* - %43 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %42, i32 0, i32 0 - %44 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %43 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %45 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %44, i32 0, i32 2 - store i32* %41, i32** %45, align 8 - %46 = load i32*, i32** %11, align 8 - %47 = load i32*, i32** %12, align 8 - %48 = bitcast %"class.std::vector"* %14 to %"struct.std::_Vector_base"* - %49 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %49 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %50, i32 0, i32 0 - %52 = load i32*, i32** %51, align 8 - %53 = bitcast %"class.std::vector"* %14 to %"struct.std::_Vector_base"* - %54 = 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) %53) #12 - %55 = call noundef i32* @_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E(i32* noundef %46, i32* noundef %47, i32* noundef %52, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %54) - %56 = bitcast %"class.std::vector"* %14 to %"struct.std::_Vector_base"* - %57 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %56, i32 0, i32 0 - %58 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %57 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %58, i32 0, i32 1 - store i32* %55, i32** %59, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1) unnamed_addr #4 comdat align 2 { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::_Vector_base>::_Vector_impl"*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl"* %0, %"struct.std::_Vector_base>::_Vector_impl"** %7, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %8, align 8 - %9 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %7, align 8 - %10 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %9 to %"class.std::allocator"* - %11 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - store %"class.std::allocator"* %10, %"class.std::allocator"** %5, align 8 - store %"class.std::allocator"* %11, %"class.std::allocator"** %6, align 8 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %13 = bitcast %"class.std::allocator"* %12 to %"class.std::__new_allocator"* - %14 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %15 = bitcast %"class.std::allocator"* %14 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %13, %"class.std::__new_allocator"** %3, align 8 - store %"class.std::__new_allocator"* %15, %"class.std::__new_allocator"** %4, align 8 - %16 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %17 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %9 to %"struct.std::_Vector_base>::_Vector_impl_data"* - call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(%"struct.std::_Vector_base>::_Vector_impl_data"* noundef nonnull align 8 dereferenceable(24) %17) #12 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #4 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base>::_Vector_impl_data"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl_data"* %0, %"struct.std::_Vector_base>::_Vector_impl_data"** %2, align 8 - %3 = load %"struct.std::_Vector_base>::_Vector_impl_data"*, %"struct.std::_Vector_base>::_Vector_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - ret void -} - -; Function Attrs: 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) #0 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::_Vector_base"*, align 8 - %6 = alloca i64, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %5, align 8 - store i64 %1, i64* %6, align 8 - %7 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %5, align 8 - %8 = load i64, i64* %6, align 8 - %9 = icmp ne i64 %8, 0 - br i1 %9, label %10, label %18 - -10: ; preds = %2 - %11 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %7, i32 0, i32 0 - %12 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %11 to %"class.std::allocator"* - %13 = load i64, i64* %6, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %3, align 8 - store i64 %13, i64* %4, align 8 - %14 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %15 = bitcast %"class.std::allocator"* %14 to %"class.std::__new_allocator"* - %16 = load i64, i64* %4, align 8 - %17 = call noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %15, i64 noundef %16, i8* noundef null) - br label %19 - -18: ; preds = %2 - br label %19 - -19: ; preds = %18, %10 - %20 = phi i32* [ %17, %10 ], [ null, %18 ] - ret i32* %20 -} - -; Function Attrs: 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) #1 comdat align 2 { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"class.std::allocator"*, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::allocator"*, align 8 - %10 = alloca %"class.std::allocator", align 1 - store i64 %0, i64* %8, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %9, align 8 - %11 = load i64, i64* %8, align 8 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %9, align 8 - store %"class.std::allocator"* %10, %"class.std::allocator"** %5, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %6, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %14 = bitcast %"class.std::allocator"* %13 to %"class.std::__new_allocator"* - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %14, %"class.std::__new_allocator"** %3, align 8 - store %"class.std::__new_allocator"* %16, %"class.std::__new_allocator"** %4, align 8 - %17 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %18 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %10) #12 - %19 = icmp ugt i64 %11, %18 - store %"class.std::allocator"* %10, %"class.std::allocator"** %7, align 8 - %20 = load %"class.std::allocator"*, %"class.std::allocator"** %7, align 8 - %21 = bitcast %"class.std::allocator"* %20 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %21) #12 - br i1 %19, label %22, label %23 - -22: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* noundef getelementptr inbounds ([49 x i8], [49 x i8]* @.str.2, i64 0, i64 0)) #15 - unreachable - -23: ; preds = %2 - %24 = load i64, i64* %8, align 8 - ret i64 %24 -} - -; 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) #0 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = load i32*, i32** %7, align 8 - %12 = call noundef i32* @_ZSt18uninitialized_copyIPiS0_ET0_T_S2_S1_(i32* noundef %9, i32* noundef %10, i32* noundef %11) - ret i32* %12 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #0 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 2305843009213693951 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 4611686018427387903 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #15 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #15 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 4 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #16 - %21 = bitcast i8* %20 to i32* - ret i32* %21 -} - -; Function Attrs: noreturn -declare void @_ZSt28__throw_bad_array_new_lengthv() #10 - -; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #10 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #11 - -; 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) #2 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %5, align 8 - store i64 2305843009213693951, i64* %6, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - store %"class.std::allocator"* %8, %"class.std::allocator"** %4, align 8 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %10 = bitcast %"class.std::allocator"* %9 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %10, %"class.std::__new_allocator"** %3, align 8 - %11 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - store %"class.std::__new_allocator"* %11, %"class.std::__new_allocator"** %2, align 8 - %12 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - store i64 2305843009213693951, i64* %7, align 8 - %13 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef nonnull align 8 dereferenceable(8) %7) - to label %14 unwind label %16 - -14: ; preds = %1 - %15 = load i64, i64* %13, align 8 - ret i64 %15 - -16: ; preds = %1 - %17 = landingpad { i8*, i32 } - catch i8* null - %18 = extractvalue { i8*, i32 } %17, 0 - call void @__clang_call_terminate(i8* %18) #13 - unreachable -} - -; Function Attrs: noreturn -declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #10 - -; 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) #2 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: 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) #0 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i8, align 1 - %8 = alloca i8, align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - store i8 1, i8* %7, align 1 - store i8 1, i8* %8, align 1 - %9 = load i32*, i32** %4, align 8 - %10 = load i32*, i32** %5, align 8 - %11 = load i32*, i32** %6, align 8 - %12 = call noundef i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIPiS2_EET0_T_S4_S3_(i32* noundef %9, i32* noundef %10, i32* noundef %11) - ret i32* %12 -} - -; 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) #0 comdat align 2 { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call noundef i32* @_ZSt4copyIPiS0_ET0_T_S2_S1_(i32* noundef %7, i32* noundef %8, i32* noundef %9) - ret i32* %10 -} - -; 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) #0 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = call noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %7) - %9 = load i32*, i32** %5, align 8 - %10 = call noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %9) - %11 = load i32*, i32** %6, align 8 - %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: 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) #0 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %7) #12 - %9 = load i32*, i32** %5, align 8 - %10 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %9) #12 - %11 = load i32*, i32** %6, align 8 - %12 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %11) #12 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %0) #2 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: 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) #2 comdat { - %3 = alloca i32**, align 8 - %4 = alloca i32*, align 8 - store i32** %0, i32*** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: 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) #0 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call noundef i32* @_ZSt14__copy_move_a2ILb0EPiS0_ET1_T0_S2_S1_(i32* noundef %7, i32* noundef %8, i32* noundef %9) - ret i32* %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %0) #2 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: 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) #0 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call noundef i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiiEEPT0_PT_S6_S4_(i32* noundef %7, i32* noundef %8, i32* noundef %9) - ret i32* %10 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiiEEPT0_PT_S6_S4_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #0 comdat align 2 { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = ptrtoint i32* %8 to i64 - %11 = ptrtoint i32* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 4 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32*, i32** %6, align 8 - %18 = bitcast i32* %17 to i8* - %19 = load i32*, i32** %4, align 8 - %20 = bitcast i32* %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 4, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %20, i64 %22, i1 false) - br label %30 - -23: ; preds = %3 - %24 = load i64, i64* %7, align 8 - %25 = icmp eq i64 %24, 1 - br i1 %25, label %26, label %29 - -26: ; preds = %23 - %27 = load i32*, i32** %6, align 8 - %28 = load i32*, i32** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIiiEEvPT_PT0_(i32* noundef %27, i32* noundef %28) - br label %29 - -29: ; preds = %26, %23 - br label %30 - -30: ; preds = %29, %16 - %31 = load i32*, i32** %6, align 8 - %32 = load i64, i64* %7, align 8 - %33 = getelementptr inbounds i32, i32* %31, i64 %32 - ret i32* %33 -} - -; Function Attrs: argmemonly nofree nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIiiEEvPT_PT0_(i32* noundef %0, i32* noundef %1) #2 comdat align 2 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load i32*, i32** %4, align 8 - %6 = load i32, i32* %5, align 4 - %7 = load i32*, i32** %3, align 8 - store i32 %6, i32* %7, align 4 - ret void -} - -; 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) #2 comdat { - %2 = alloca %"struct.std::greater"*, align 8 - store %"struct.std::greater"* %0, %"struct.std::greater"** %2, align 8 - %3 = load %"struct.std::greater"*, %"struct.std::greater"** %2, align 8 - ret %"struct.std::greater"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEC2ES3_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #4 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 noundef nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %2) #12 - ret void -} - -; 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) #0 comdat { - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %11 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 - %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %0, i32** %13, align 8 - %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %1, i32** %14, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %15 = call 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) #12 - %16 = icmp slt i64 %15, 2 - br i1 %16, label %17, label %18 - -17: ; preds = %3 - br label %47 - -18: ; preds = %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) #12 - store i64 %19, i64* %7, align 8 - %20 = load i64, i64* %7, align 8 - %21 = sub nsw i64 %20, 2 - %22 = sdiv i64 %21, 2 - store i64 %22, i64* %8, align 8 - br label %23 - -23: ; preds = %18, %44 - %24 = load i64, i64* %8, align 8 - %25 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %4, i64 noundef %24) #12 - %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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #12 - %28 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %27) #12 - %29 = load i32, i32* %28, align 4 - store i32 %29, i32* %9, align 4 - %30 = bitcast %"class.__gnu_cxx::__normal_iterator"* %11 to i8* - %31 = bitcast %"class.__gnu_cxx::__normal_iterator"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %30, i8* align 8 %31, i64 8, i1 false) - %32 = load i64, i64* %8, align 8 - %33 = load i64, i64* %7, align 8 - %34 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %9) #12 - %35 = load i32, i32* %34, align 4 - %36 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %37 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %12 to i8* - %38 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %36 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %37, i8* align 1 %38, i64 1, i1 false) - %39 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %11, i32 0, i32 0 - %40 = load i32*, i32** %39, align 8 - call void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_T0_SD_T1_T2_(i32* %40, i64 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 - -43: ; preds = %23 - br label %47 - -44: ; preds = %23 - %45 = load i64, i64* %8, align 8 - %46 = add nsw i64 %45, -1 - store i64 %46, i64* %8, align 8 - br label %23, !llvm.loop !10 - -47: ; preds = %43, %17 - ret void -} - -; 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) #2 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 noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5) #12 - %7 = load i32*, i32** %6, align 8 - %8 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - %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) #12 - %10 = load i32*, i32** %9, align 8 - %11 = ptrtoint i32* %7 to i64 - %12 = ptrtoint i32* %10 to i64 - %13 = sub i64 %11, %12 - %14 = sdiv exact i64 %13, 4 - ret i64 %14 -} - -; Function Attrs: 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) #2 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: 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) #2 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - store i64 %1, i64* %5, align 8 - %7 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - %8 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = load i64, i64* %5, align 8 - %11 = getelementptr inbounds i32, i32* %9, i64 %10 - store i32* %11, i32** %6, align 8 - call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %3, i32** noundef nonnull align 8 dereferenceable(8) %6) #12 - %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: 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) #2 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: 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) #0 comdat { - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %13 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %14 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %15 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %16 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %17 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %18 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val", align 1 - %19 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %0, i32** %20, align 8 - store i64 %1, i64* %7, align 8 - store i64 %2, i64* %8, align 8 - store i32 %3, i32* %9, align 4 - %21 = load i64, i64* %7, align 8 - store i64 %21, i64* %10, align 8 - %22 = load i64, i64* %7, align 8 - store i64 %22, i64* %11, align 8 - br label %23 - -23: ; preds = %48, %4 - %24 = load i64, i64* %11, align 8 - %25 = load i64, i64* %8, align 8 - %26 = sub nsw i64 %25, 1 - %27 = sdiv i64 %26, 2 - %28 = icmp slt i64 %24, %27 - br i1 %28, label %29, label %60 - -29: ; preds = %23 - %30 = load i64, i64* %11, align 8 - %31 = add nsw i64 %30, 1 - %32 = mul nsw i64 2, %31 - store i64 %32, i64* %11, align 8 - %33 = load i64, i64* %11, align 8 - %34 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %33) #12 - %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"* noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %37) #12 - %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 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 - %46 = load i64, i64* %11, align 8 - %47 = add nsw i64 %46, -1 - store i64 %47, i64* %11, align 8 - br label %48 - -48: ; preds = %45, %29 - %49 = load i64, i64* %11, align 8 - %50 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %49) #12 - %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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %14) #12 - %53 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %52) #12 - %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"* noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %55) #12 - %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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #12 - 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 !11 - -60: ; preds = %23 - %61 = load i64, i64* %8, align 8 - %62 = and i64 %61, 1 - %63 = icmp eq i64 %62, 0 - br i1 %63, label %64, label %87 - -64: ; preds = %60 - %65 = load i64, i64* %11, align 8 - %66 = load i64, i64* %8, align 8 - %67 = sub nsw i64 %66, 2 - %68 = sdiv i64 %67, 2 - %69 = icmp eq i64 %65, %68 - br i1 %69, label %70, label %87 - -70: ; preds = %64 - %71 = load i64, i64* %11, align 8 - %72 = add nsw i64 %71, 1 - %73 = mul nsw i64 2, %72 - store i64 %73, i64* %11, align 8 - %74 = load i64, i64* %11, align 8 - %75 = sub nsw i64 %74, 1 - %76 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %75) #12 - %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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %16) #12 - %79 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %78) #12 - %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"* noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %81) #12 - %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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %17) #12 - store i32 %80, i32* %84, align 4 - %85 = load i64, i64* %11, align 8 - %86 = sub nsw i64 %85, 1 - store i64 %86, i64* %7, align 8 - br label %87 - -87: ; preds = %70, %64, %60 - %88 = call 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) #12 - 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 noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %9) #12 - %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 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: 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) #2 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - ret i32** %4 -} - -; Function Attrs: noinline nounwind uwtable -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 #4 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %3, align 8 - %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32*, i32** %7, align 8 - store i32* %8, i32** %6, align 8 - ret void -} - -; Function Attrs: 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) #0 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %1, i32** %7, align 8 - %8 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %2, i32** %8, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %9 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %4) #12 - %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) #12 - %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: 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) #2 comdat { - %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %2, align 8 - ret %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2EONS0_15_Iter_comp_iterIS3_EE(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 1 dereferenceable(1) %1) unnamed_addr #4 comdat align 2 { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %3, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %5 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %3, align 8 - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %5, i32 0, i32 0 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %9 = call noundef nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %8) #12 - ret void -} - -; 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) #0 comdat { - %6 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %13 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %14 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %15 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %6, i32 0, i32 0 - store i32* %0, i32** %16, align 8 - store i64 %1, i64* %7, align 8 - store i64 %2, i64* %8, align 8 - store i32 %3, i32* %9, align 4 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %4, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %10, align 8 - %17 = load i64, i64* %7, align 8 - %18 = sub nsw i64 %17, 1 - %19 = sdiv i64 %18, 2 - store i64 %19, i64* %11, align 8 - br label %20 - -20: ; preds = %34, %5 - %21 = load i64, i64* %7, align 8 - %22 = load i64, i64* %8, align 8 - %23 = icmp sgt i64 %21, %22 - br i1 %23, label %24, label %32 - -24: ; preds = %20 - %25 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %10, align 8 - %26 = load i64, i64* %11, align 8 - %27 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %6, i64 noundef %26) #12 - %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 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 - %33 = phi i1 [ false, %20 ], [ %31, %24 ] - br i1 %33, label %34, label %49 - -34: ; preds = %32 - %35 = load i64, i64* %11, align 8 - %36 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %6, i64 noundef %35) #12 - %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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %13) #12 - %39 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %38) #12 - %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"* noundef nonnull align 8 dereferenceable(8) %6, i64 noundef %41) #12 - %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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %14) #12 - store i32 %40, i32* %44, align 4 - %45 = load i64, i64* %11, align 8 - store i64 %45, i64* %7, align 8 - %46 = load i64, i64* %7, align 8 - %47 = sub nsw i64 %46, 1 - %48 = sdiv i64 %47, 2 - store i64 %48, i64* %11, align 8 - br label %20, !llvm.loop !12 - -49: ; preds = %32 - %50 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %9) #12 - %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"* noundef nonnull align 8 dereferenceable(8) %6, i64 noundef %52) #12 - %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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #12 - store i32 %51, i32* %55, align 4 - ret void -} - -; 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) #2 comdat align 2 { - %4 = alloca %"struct.std::greater"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"struct.std::greater"* %0, %"struct.std::greater"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"struct.std::greater"*, %"struct.std::greater"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %6, align 8 - %11 = load i32, i32* %10, align 4 - %12 = icmp sgt i32 %9, %11 - ret i1 %12 -} - -; Function Attrs: 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) #2 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %6 = alloca i32*, align 8 - %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %1, i32** %7, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %5, align 8 - store i32* %2, i32** %6, align 8 - %8 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %5, align 8 - %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %8, i32 0, i32 0 - %10 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %4) #12 - %11 = load i32*, i32** %6, align 8 - %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: 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) #2 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"* noundef nonnull align 8 dereferenceable(24) %4) #12 - %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 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) #12 - ret i32* %7 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef nonnull align 8 dereferenceable(8) %8) #12 - %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: 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) #2 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.0"*, align 8 - store %"class.__gnu_cxx::__normal_iterator.0"* %0, %"class.__gnu_cxx::__normal_iterator.0"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator.0"*, %"class.__gnu_cxx::__normal_iterator.0"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable -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 #4 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator.0"*, align 8 - %4 = alloca i32**, align 8 - store %"class.__gnu_cxx::__normal_iterator.0"* %0, %"class.__gnu_cxx::__normal_iterator.0"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"class.__gnu_cxx::__normal_iterator.0"*, %"class.__gnu_cxx::__normal_iterator.0"** %3, align 8 - %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32*, i32** %7, align 8 - store i32* %8, i32** %6, align 8 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZSt8pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(i32* %0, i32* %1) #0 comdat { - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"struct.std::greater", align 1 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 - %7 = alloca %"struct.std::greater", align 1 - %8 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %9 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - store i32* %0, i32** %11, align 8 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %1, i32** %12, align 8 - %13 = call 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) #12 - %14 = icmp sgt i64 %13, 1 - br i1 %14, label %15, label %30 - -15: ; preds = %2 - %16 = call noundef nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %5) #12 - 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) #12 - %18 = bitcast %"class.__gnu_cxx::__normal_iterator"* %8 to i8* - %19 = bitcast %"class.__gnu_cxx::__normal_iterator"* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %19, i64 8, i1 false) - %20 = bitcast %"class.__gnu_cxx::__normal_iterator"* %9 to i8* - %21 = bitcast %"class.__gnu_cxx::__normal_iterator"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %20, i8* align 8 %21, i64 8, i1 false) - %22 = bitcast %"class.__gnu_cxx::__normal_iterator"* %10 to i8* - %23 = bitcast %"class.__gnu_cxx::__normal_iterator"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %22, i8* align 8 %23, i64 8, i1 false) - %24 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %8, i32 0, i32 0 - %25 = load i32*, i32** %24, align 8 - %26 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %9, i32 0, i32 0 - %27 = load i32*, i32** %26, align 8 - %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %10, i32 0, i32 0 - %29 = load i32*, i32** %28, align 8 - call void @_ZSt10__pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_SC_RT0_(i32* %25, i32* %27, i32* %29, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 1 dereferenceable(1) %6) - br label %30 - -30: ; preds = %15, %2 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE8pop_backEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %6, align 8 - %7 = load %"class.std::vector"*, %"class.std::vector"** %6, align 8 - %8 = bitcast %"class.std::vector"* %7 to %"struct.std::_Vector_base"* - %9 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %9 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %10, i32 0, i32 1 - %12 = load i32*, i32** %11, align 8 - %13 = getelementptr inbounds i32, i32* %12, i32 -1 - store i32* %13, i32** %11, align 8 - %14 = bitcast %"class.std::vector"* %7 to %"struct.std::_Vector_base"* - %15 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %15 to %"class.std::allocator"* - %17 = bitcast %"class.std::vector"* %7 to %"struct.std::_Vector_base"* - %18 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %17, i32 0, i32 0 - %19 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %18 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %20 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %19, i32 0, i32 1 - %21 = load i32*, i32** %20, align 8 - store %"class.std::allocator"* %16, %"class.std::allocator"** %4, align 8 - store i32* %21, i32** %5, align 8 - %22 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %23 = bitcast %"class.std::allocator"* %22 to %"class.std::__new_allocator"* - %24 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator"* %23, %"class.std::__new_allocator"** %2, align 8 - store i32* %24, i32** %3, align 8 - %25 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %26 = load i32*, i32** %3, align 8 - ret void -} - -; 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) #2 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - %6 = getelementptr inbounds i32, i32* %5, i32 -1 - store i32* %6, i32** %4, align 8 - ret %"class.__gnu_cxx::__normal_iterator"* %3 -} - -; Function Attrs: 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) #0 comdat { - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %7 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %0, i32** %12, align 8 - %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %6, i32 0, i32 0 - store i32* %1, i32** %13, align 8 - %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %7, i32 0, i32 0 - store i32* %2, i32** %14, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %8, align 8 - %15 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #12 - %16 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %15) #12 - %17 = load i32, i32* %16, align 4 - store i32 %17, i32* %9, align 4 - %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) #12 - %19 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %18) #12 - %20 = load i32, i32* %19, align 4 - %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) #12 - 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 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) #12 - %25 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %9) #12 - %26 = load i32, i32* %25, align 4 - %27 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %8, align 8 - %28 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %29 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %27 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %28, i8* align 1 %29, i64 1, i1 false) - %30 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %10, i32 0, i32 0 - %31 = load i32*, i32** %30, align 8 - call void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_T0_SD_T1_T2_(i32* %31, i64 noundef 0, i64 noundef %24, i32 noundef %26) - ret void -} - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::vector"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %9, align 8 - store i32* %1, i32** %10, align 8 - %12 = load %"class.std::vector"*, %"class.std::vector"** %9, align 8 - %13 = bitcast %"class.std::vector"* %12 to %"struct.std::_Vector_base"* - %14 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %14 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %15, i32 0, i32 1 - %17 = load i32*, i32** %16, align 8 - %18 = bitcast %"class.std::vector"* %12 to %"struct.std::_Vector_base"* - %19 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %19 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %20, i32 0, i32 2 - %22 = load i32*, i32** %21, align 8 - %23 = icmp ne i32* %17, %22 - br i1 %23, label %24, label %51 - -24: ; preds = %2 - %25 = bitcast %"class.std::vector"* %12 to %"struct.std::_Vector_base"* - %26 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %25, i32 0, i32 0 - %27 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %26 to %"class.std::allocator"* - %28 = bitcast %"class.std::vector"* %12 to %"struct.std::_Vector_base"* - %29 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %28, i32 0, i32 0 - %30 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %29 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %31 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %30, i32 0, i32 1 - %32 = load i32*, i32** %31, align 8 - %33 = load i32*, i32** %10, align 8 - store %"class.std::allocator"* %27, %"class.std::allocator"** %6, align 8 - store i32* %32, i32** %7, align 8 - store i32* %33, i32** %8, align 8 - %34 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %35 = bitcast %"class.std::allocator"* %34 to %"class.std::__new_allocator"* - %36 = load i32*, i32** %7, align 8 - %37 = load i32*, i32** %8, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %37) #12 - store %"class.std::__new_allocator"* %35, %"class.std::__new_allocator"** %3, align 8 - store i32* %36, i32** %4, align 8 - store i32* %38, i32** %5, align 8 - %39 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %40 = load i32*, i32** %4, align 8 - %41 = bitcast i32* %40 to i8* - %42 = load i32*, i32** %5, align 8 - %43 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %42) #12 - %44 = load i32, i32* %43, align 4 - store i32 %44, i32* %40, align 4 - %45 = bitcast %"class.std::vector"* %12 to %"struct.std::_Vector_base"* - %46 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %45, i32 0, i32 0 - %47 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %46 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %48 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %47, i32 0, i32 1 - %49 = load i32*, i32** %48, align 8 - %50 = getelementptr inbounds i32, i32* %49, i32 1 - store i32* %50, i32** %48, align 8 - br label %57 - -51: ; preds = %2 - %52 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %12) #12 - %53 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %11, i32 0, i32 0 - store i32* %52, i32** %53, align 8 - %54 = load i32*, i32** %10, align 8 - %55 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %11, i32 0, i32 0 - %56 = load i32*, i32** %55, align 8 - call void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %12, i32* %56, i32* noundef nonnull align 4 dereferenceable(4) %54) - br label %57 - -57: ; preds = %51, %24 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZSt9push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(i32* %0, i32* %1) #0 comdat { - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"struct.std::greater", align 1 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val", align 1 - %7 = alloca %"struct.std::greater", align 1 - %8 = alloca i32, align 4 - %9 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - store i32* %0, i32** %11, align 8 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %1, i32** %12, align 8 - %13 = call noundef nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %5) #12 - 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) #12 - %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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #12 - %17 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %16) #12 - %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 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) #12 - %22 = sub nsw i64 %21, 1 - %23 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %8) #12 - %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 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: 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) #0 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"class.std::allocator"*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32*, align 8 - %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %11 = alloca %"class.std::vector"*, align 8 - %12 = alloca i32*, align 8 - %13 = alloca i64, align 8 - %14 = alloca i32*, align 8 - %15 = alloca i32*, align 8 - %16 = alloca i64, align 8 - %17 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %18 = alloca i32*, align 8 - %19 = alloca i32*, align 8 - %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %10, i32 0, i32 0 - store i32* %1, i32** %20, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %11, align 8 - store i32* %2, i32** %12, align 8 - %21 = load %"class.std::vector"*, %"class.std::vector"** %11, align 8 - %22 = call noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %21, i64 noundef 1, i8* noundef getelementptr inbounds ([26 x i8], [26 x i8]* @.str.3, i64 0, i64 0)) - store i64 %22, i64* %13, align 8 - %23 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %24 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %23, i32 0, i32 0 - %25 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %24 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %25, i32 0, i32 0 - %27 = load i32*, i32** %26, align 8 - store i32* %27, i32** %14, align 8 - %28 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %29 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %28, i32 0, i32 0 - %30 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %29 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %31 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %30, i32 0, i32 1 - %32 = load i32*, i32** %31, align 8 - store i32* %32, i32** %15, align 8 - %33 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %21) #12 - %34 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %17, i32 0, i32 0 - store i32* %33, i32** %34, align 8 - %35 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %10, %"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %17) #12 - store i64 %35, i64* %16, align 8 - %36 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %37 = load i64, i64* %13, align 8 - %38 = call noundef i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %36, i64 noundef %37) - store i32* %38, i32** %18, align 8 - %39 = load i32*, i32** %18, align 8 - store i32* %39, i32** %19, align 8 - %40 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %41 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %40, i32 0, i32 0 - %42 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %41 to %"class.std::allocator"* - %43 = load i32*, i32** %18, align 8 - %44 = load i64, i64* %16, align 8 - %45 = getelementptr inbounds i32, i32* %43, i64 %44 - %46 = load i32*, i32** %12, align 8 - %47 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %46) #12 - store %"class.std::allocator"* %42, %"class.std::allocator"** %7, align 8 - store i32* %45, i32** %8, align 8 - store i32* %47, i32** %9, align 8 - %48 = load %"class.std::allocator"*, %"class.std::allocator"** %7, align 8 - %49 = bitcast %"class.std::allocator"* %48 to %"class.std::__new_allocator"* - %50 = load i32*, i32** %8, align 8 - %51 = load i32*, i32** %9, align 8 - %52 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %51) #12 - store %"class.std::__new_allocator"* %49, %"class.std::__new_allocator"** %4, align 8 - store i32* %50, i32** %5, align 8 - store i32* %52, i32** %6, align 8 - %53 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %54 = load i32*, i32** %5, align 8 - %55 = bitcast i32* %54 to i8* - %56 = load i32*, i32** %6, align 8 - %57 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %56) #12 - %58 = load i32, i32* %57, align 4 - store i32 %58, i32* %54, align 4 - store i32* null, i32** %19, align 8 - %59 = load i32*, i32** %14, align 8 - %60 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #12 - %61 = load i32*, i32** %60, align 8 - %62 = load i32*, i32** %18, align 8 - %63 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %64 = 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) %63) #12 - %65 = call noundef i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* noundef %59, i32* noundef %61, i32* noundef %62, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %64) #12 - store i32* %65, i32** %19, align 8 - %66 = load i32*, i32** %19, align 8 - %67 = getelementptr inbounds i32, i32* %66, i32 1 - store i32* %67, i32** %19, align 8 - %68 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #12 - %69 = load i32*, i32** %68, align 8 - %70 = load i32*, i32** %15, align 8 - %71 = load i32*, i32** %19, align 8 - %72 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %73 = 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) %72) #12 - %74 = call noundef i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* noundef %69, i32* noundef %70, i32* noundef %71, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %73) #12 - store i32* %74, i32** %19, align 8 - %75 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %76 = load i32*, i32** %14, align 8 - %77 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %78 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %77, i32 0, i32 0 - %79 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %78 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %80 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %79, i32 0, i32 2 - %81 = load i32*, i32** %80, align 8 - %82 = load i32*, i32** %14, align 8 - %83 = ptrtoint i32* %81 to i64 - %84 = ptrtoint i32* %82 to i64 - %85 = sub i64 %83, %84 - %86 = sdiv exact i64 %85, 4 - call void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %75, i32* noundef %76, i64 noundef %86) - %87 = load i32*, i32** %18, align 8 - %88 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %89 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %88, i32 0, i32 0 - %90 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %89 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %91 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %90, i32 0, i32 0 - store i32* %87, i32** %91, align 8 - %92 = load i32*, i32** %19, align 8 - %93 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %94 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %93, i32 0, i32 0 - %95 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %94 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %96 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %95, i32 0, i32 1 - store i32* %92, i32** %96, align 8 - %97 = load i32*, i32** %18, align 8 - %98 = load i64, i64* %13, align 8 - %99 = getelementptr inbounds i32, i32* %97, i64 %98 - %100 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %101 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %100, i32 0, i32 0 - %102 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %101 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %103 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %102, i32 0, i32 2 - store i32* %99, i32** %103, align 8 - ret void -} - -; 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) #2 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: 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) #0 comdat align 2 { - %4 = alloca %"class.std::vector"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %9 = load %"class.std::vector"*, %"class.std::vector"** %4, align 8 - %10 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #12 - %11 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #12 - %12 = sub i64 %10, %11 - %13 = load i64, i64* %5, align 8 - %14 = icmp ult i64 %12, %13 - br i1 %14, label %15, label %17 - -15: ; preds = %3 - %16 = load i8*, i8** %6, align 8 - call void @_ZSt20__throw_length_errorPKc(i8* noundef %16) #15 - unreachable - -17: ; preds = %3 - %18 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #12 - %19 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #12 - store i64 %19, i64* %8, align 8 - %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 noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #12 - %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 noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #12 - %29 = icmp ugt i64 %27, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %26, %17 - %31 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #12 - br label %34 - -32: ; preds = %26 - %33 = load i64, i64* %7, align 8 - br label %34 - -34: ; preds = %32, %30 - %35 = phi i64 [ %31, %30 ], [ %33, %32 ] - ret i64 %35 -} - -; Function Attrs: 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) #2 comdat align 2 { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca %"struct.std::integral_constant", align 1 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %10 = load i32*, i32** %5, align 8 - %11 = load i32*, i32** %6, align 8 - %12 = load i32*, i32** %7, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %14 = call 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) #12 - ret i32* %14 -} - -; 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) #2 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 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) #12 - %6 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5) #12 - ret i64 %6 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { - %2 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %3 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - %4 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - %5 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %5 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %6, i32 0, i32 1 - %8 = load i32*, i32** %7, align 8 - %9 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - %10 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %9, i32 0, i32 0 - %11 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %10 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %11, i32 0, i32 0 - %13 = load i32*, i32** %12, align 8 - %14 = ptrtoint i32* %8 to i64 - %15 = ptrtoint i32* %13 to i64 - %16 = sub i64 %14, %15 - %17 = sdiv exact i64 %16, 4 - ret i64 %17 -} - -; Function Attrs: 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) #2 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: 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) #2 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %3 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: 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) #2 comdat align 2 { - %5 = alloca %"struct.std::integral_constant", align 1 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %6, align 8 - store i32* %1, i32** %7, align 8 - store i32* %2, i32** %8, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %9, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = load i32*, i32** %7, align 8 - %12 = load i32*, i32** %8, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %9, align 8 - %14 = call 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) #12 - ret i32* %14 -} - -; 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) #2 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %9) #12 - %11 = load i32*, i32** %6, align 8 - %12 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %11) #12 - %13 = load i32*, i32** %7, align 8 - %14 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %13) #12 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %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) #12 - ret i32* %16 -} - -; 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) #2 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca i64, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = load i32*, i32** %5, align 8 - %12 = ptrtoint i32* %10 to i64 - %13 = ptrtoint i32* %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 4 - store i64 %15, i64* %9, align 8 - %16 = load i64, i64* %9, align 8 - %17 = icmp sgt i64 %16, 0 - br i1 %17, label %18, label %25 - -18: ; preds = %4 - %19 = load i32*, i32** %7, align 8 - %20 = bitcast i32* %19 to i8* - %21 = load i32*, i32** %5, align 8 - %22 = bitcast i32* %21 to i8* - %23 = load i64, i64* %9, align 8 - %24 = mul i64 %23, 4 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %22, i64 %24, i1 false) - br label %25 - -25: ; preds = %18, %4 - %26 = load i32*, i32** %7, align 8 - %27 = load i64, i64* %9, align 8 - %28 = getelementptr inbounds i32, i32* %26, i64 %27 - ret i32* %28 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2ES3_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #4 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 noundef nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %2) #12 - ret void -} - -; 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) #2 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - store i64 %1, i64* %5, align 8 - %7 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - %8 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = load i64, i64* %5, align 8 - %11 = sub i64 0, %10 - %12 = getelementptr inbounds i32, i32* %9, i64 %11 - store i32* %12, i32** %6, align 8 - call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %3, i32** noundef nonnull align 8 dereferenceable(8) %6) #12 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt6vectorIiSaIiEE5emptyEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #2 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"* noundef nonnull align 8 dereferenceable(24) %5) #12 - %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"* noundef nonnull align 8 dereferenceable(24) %5) #12 - %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 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) #12 - ret i1 %10 -} - -; 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) #2 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 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) #12 - %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 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) #12 - %10 = load i32*, i32** %9, align 8 - %11 = icmp eq i32* %7, %10 - ret i1 %11 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 1 - call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef nonnull align 8 dereferenceable(8) %8) #12 - %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: 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) #2 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.0"*, align 8 - store %"class.__gnu_cxx::__normal_iterator.0"* %0, %"class.__gnu_cxx::__normal_iterator.0"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator.0"*, %"class.__gnu_cxx::__normal_iterator.0"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %3, i32 0, i32 0 - ret i32** %4 -} - -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 = { 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 = { 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 = { cold noreturn nounwind } -attributes #4 = { 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 = { "frame-pointer"="all" "no-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 = { noinline noreturn nounwind } -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 = { 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 #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 = { nounwind } -attributes #13 = { noreturn nounwind } -attributes #14 = { builtin nounwind } -attributes #15 = { noreturn } -attributes #16 = { builtin allocsize(0) } - -!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"} -!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-llvm14/aho-corasick-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/aho-corasick-algorithm.ll deleted file mode 100644 index ae5df78ea..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/aho-corasick-algorithm.ll +++ /dev/null @@ -1,3121 +0,0 @@ -; ModuleID = 'PE-benchmarks/aho-corasick-algorithm.cpp' -source_filename = "PE-benchmarks/aho-corasick-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::queue" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { i32**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%"struct.std::_Deque_iterator" = type { i32*, i32*, i32*, i32** } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.std::allocator.3" = type { i8 } -%"class.std::__new_allocator.4" = type { i8 } -%"class.std::__new_allocator.1" = type { i8 } - -$_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi = comdat any - -$_ZNKSt5queueIiSt5dequeIiSaIiEEE4sizeEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any - -$_ZNSt5dequeIiSaIiEE5beginEv = comdat any - -$_ZNSt5dequeIiSaIiEE3endEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any - -$_ZNSt15__new_allocatorIPiED2Ev = comdat any - -$_ZNSt15__new_allocatorIiED2Ev = comdat any - -$_ZNSt15__new_allocatorIcED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any - -$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any - -$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any - -$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any - -$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIPPiET_S2_ = comdat any - -$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIPPiET_S2_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNSt5dequeIiSaIiEE5frontEv = comdat any - -$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any - -$_ZNSt5dequeIiSaIiEE9pop_frontEv = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv = 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 global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [6 x i8] c"Word \00", align 1 -@.str.1 = private unnamed_addr constant [15 x i8] c" appears from \00", align 1 -@.str.2 = private unnamed_addr constant [5 x i8] c" to \00", align 1 -@.str.3 = private unnamed_addr constant [3 x i8] c"he\00", align 1 -@.str.4 = private unnamed_addr constant [4 x i8] c"she\00", align 1 -@.str.5 = private unnamed_addr constant [5 x i8] c"hers\00", align 1 -@.str.6 = private unnamed_addr constant [4 x i8] c"his\00", align 1 -@.str.7 = private unnamed_addr constant [9 x i8] c"ahishers\00", align 1 -@.str.8 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%"class.std::__cxx11::basic_string"* noundef %0, i32 noundef %1) #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca %"class.std::queue", align 8 - %13 = alloca i32, align 4 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - %18 = alloca i32, align 4 - store %"class.std::__cxx11::basic_string"* %0, %"class.std::__cxx11::basic_string"** %3, align 8 - store i32 %1, i32* %4, align 4 - call void @llvm.memset.p0i8.i64(i8* align 16 bitcast ([500 x i32]* @out to i8*), i8 0, i64 2000, i1 false) - call void @llvm.memset.p0i8.i64(i8* align 16 bitcast ([500 x [26 x i32]]* @g to i8*), i8 -1, i64 52000, i1 false) - store i32 1, i32* %5, align 4 - store i32 0, i32* %6, align 4 - br label %19 - -19: ; preds = %78, %2 - %20 = load i32, i32* %6, align 4 - %21 = load i32, i32* %4, align 4 - %22 = icmp slt i32 %20, %21 - br i1 %22, label %23, label %81 - -23: ; preds = %19 - %24 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %3, align 8 - %25 = load i32, i32* %6, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %24, i64 %26 - store %"class.std::__cxx11::basic_string"* %27, %"class.std::__cxx11::basic_string"** %7, align 8 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - br label %28 - -28: ; preds = %67, %23 - %29 = load i32, i32* %9, align 4 - %30 = sext i32 %29 to i64 - %31 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %7, align 8 - %32 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %31) #13 - %33 = icmp ult i64 %30, %32 - br i1 %33, label %34, label %70 - -34: ; preds = %28 - %35 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %7, align 8 - %36 = load i32, i32* %9, align 4 - %37 = sext i32 %36 to i64 - %38 = call 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) #13 - %39 = load i8, i8* %38, align 1 - %40 = sext i8 %39 to i32 - %41 = sub nsw i32 %40, 97 - store i32 %41, i32* %10, align 4 - %42 = load i32, i32* %8, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %43 - %45 = load i32, i32* %10, align 4 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds [26 x i32], [26 x i32]* %44, i64 0, i64 %46 - %48 = load i32, i32* %47, align 4 - %49 = icmp eq i32 %48, -1 - br i1 %49, label %50, label %59 - -50: ; preds = %34 - %51 = load i32, i32* %5, align 4 - %52 = add nsw i32 %51, 1 - store i32 %52, i32* %5, align 4 - %53 = load i32, i32* %8, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %54 - %56 = load i32, i32* %10, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds [26 x i32], [26 x i32]* %55, i64 0, i64 %57 - store i32 %51, i32* %58, align 4 - br label %59 - -59: ; preds = %50, %34 - %60 = load i32, i32* %8, align 4 - %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %61 - %63 = load i32, i32* %10, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds [26 x i32], [26 x i32]* %62, i64 0, i64 %64 - %66 = load i32, i32* %65, align 4 - store i32 %66, i32* %8, align 4 - br label %67 - -67: ; preds = %59 - %68 = load i32, i32* %9, align 4 - %69 = add nsw i32 %68, 1 - store i32 %69, i32* %9, align 4 - br label %28, !llvm.loop !6 - -70: ; preds = %28 - %71 = load i32, i32* %6, align 4 - %72 = shl i32 1, %71 - %73 = load i32, i32* %8, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds [500 x i32], [500 x i32]* @out, i64 0, i64 %74 - %76 = load i32, i32* %75, align 4 - %77 = or i32 %76, %72 - store i32 %77, i32* %75, align 4 - br label %78 - -78: ; preds = %70 - %79 = load i32, i32* %6, align 4 - %80 = add nsw i32 %79, 1 - store i32 %80, i32* %6, align 4 - br label %19, !llvm.loop !8 - -81: ; preds = %19 - store i32 0, i32* %11, align 4 - br label %82 - -82: ; preds = %96, %81 - %83 = load i32, i32* %11, align 4 - %84 = icmp slt i32 %83, 26 - br i1 %84, label %85, label %99 - -85: ; preds = %82 - %86 = load i32, i32* %11, align 4 - %87 = sext i32 %86 to i64 - %88 = getelementptr inbounds [26 x i32], [26 x i32]* getelementptr inbounds ([500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 0), i64 0, i64 %87 - %89 = load i32, i32* %88, align 4 - %90 = icmp eq i32 %89, -1 - br i1 %90, label %91, label %95 - -91: ; preds = %85 - %92 = load i32, i32* %11, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds [26 x i32], [26 x i32]* getelementptr inbounds ([500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 0), i64 0, i64 %93 - store i32 0, i32* %94, align 4 - br label %95 - -95: ; preds = %91, %85 - br label %96 - -96: ; preds = %95 - %97 = load i32, i32* %11, align 4 - %98 = add nsw i32 %97, 1 - store i32 %98, i32* %11, align 4 - br label %82, !llvm.loop !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"* noundef nonnull align 8 dereferenceable(80) %12) - store i32 0, i32* %13, align 4 - br label %100 - -100: ; preds = %125, %99 - %101 = load i32, i32* %13, align 4 - %102 = icmp slt i32 %101, 26 - br i1 %102, label %103, label %128 - -103: ; preds = %100 - %104 = load i32, i32* %13, align 4 - %105 = sext i32 %104 to i64 - %106 = getelementptr inbounds [26 x i32], [26 x i32]* getelementptr inbounds ([500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 0), i64 0, i64 %105 - %107 = load i32, i32* %106, align 4 - %108 = icmp ne i32 %107, 0 - br i1 %108, label %109, label %124 - -109: ; preds = %103 - %110 = load i32, i32* %13, align 4 - %111 = sext i32 %110 to i64 - %112 = getelementptr inbounds [26 x i32], [26 x i32]* getelementptr inbounds ([500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 0), i64 0, i64 %111 - %113 = load i32, i32* %112, align 4 - %114 = sext i32 %113 to i64 - %115 = getelementptr inbounds [500 x i32], [500 x i32]* @f, i64 0, i64 %114 - store i32 0, i32* %115, align 4 - %116 = load i32, i32* %13, align 4 - %117 = sext i32 %116 to i64 - %118 = getelementptr inbounds [26 x i32], [26 x i32]* getelementptr inbounds ([500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 0), i64 0, i64 %117 - invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %12, i32* noundef nonnull align 4 dereferenceable(4) %118) - to label %119 unwind label %120 - -119: ; preds = %109 - br label %124 - -120: ; preds = %169, %135, %133, %129, %109 - %121 = landingpad { i8*, i32 } - cleanup - %122 = extractvalue { i8*, i32 } %121, 0 - store i8* %122, i8** %14, align 8 - %123 = extractvalue { i8*, i32 } %121, 1 - store i32 %123, i32* %15, align 4 - call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %12) #13 - br label %216 - -124: ; preds = %119, %103 - br label %125 - -125: ; preds = %124 - %126 = load i32, i32* %13, align 4 - %127 = add nsw i32 %126, 1 - store i32 %127, i32* %13, align 4 - br label %100, !llvm.loop !10 - -128: ; preds = %100 - br label %129 - -129: ; preds = %213, %128 - %130 = invoke noundef i64 @_ZNKSt5queueIiSt5dequeIiSaIiEEE4sizeEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %12) - to label %131 unwind label %120 - -131: ; preds = %129 - %132 = icmp ne i64 %130, 0 - br i1 %132, label %133, label %214 - -133: ; preds = %131 - %134 = invoke 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"* noundef nonnull align 8 dereferenceable(80) %12) - to label %137 unwind label %120 - -137: ; preds = %135 - store i32 0, i32* %17, align 4 - br label %138 - -138: ; preds = %210, %137 - %139 = load i32, i32* %17, align 4 - %140 = icmp sle i32 %139, 26 - br i1 %140, label %141, label %213 - -141: ; preds = %138 - %142 = load i32, i32* %16, align 4 - %143 = sext i32 %142 to i64 - %144 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %143 - %145 = load i32, i32* %17, align 4 - %146 = sext i32 %145 to i64 - %147 = getelementptr inbounds [26 x i32], [26 x i32]* %144, i64 0, i64 %146 - %148 = load i32, i32* %147, align 4 - %149 = icmp ne i32 %148, -1 - br i1 %149, label %150, label %209 - -150: ; preds = %141 - %151 = load i32, i32* %16, align 4 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds [500 x i32], [500 x i32]* @f, i64 0, i64 %152 - %154 = load i32, i32* %153, align 4 - store i32 %154, i32* %18, align 4 - br label %155 - -155: ; preds = %164, %150 - %156 = load i32, i32* %18, align 4 - %157 = sext i32 %156 to i64 - %158 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %157 - %159 = load i32, i32* %17, align 4 - %160 = sext i32 %159 to i64 - %161 = getelementptr inbounds [26 x i32], [26 x i32]* %158, i64 0, i64 %160 - %162 = load i32, i32* %161, align 4 - %163 = icmp eq i32 %162, -1 - br i1 %163, label %164, label %169 - -164: ; preds = %155 - %165 = load i32, i32* %18, align 4 - %166 = sext i32 %165 to i64 - %167 = getelementptr inbounds [500 x i32], [500 x i32]* @f, i64 0, i64 %166 - %168 = load i32, i32* %167, align 4 - store i32 %168, i32* %18, align 4 - br label %155, !llvm.loop !11 - -169: ; preds = %155 - %170 = load i32, i32* %18, align 4 - %171 = sext i32 %170 to i64 - %172 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %171 - %173 = load i32, i32* %17, align 4 - %174 = sext i32 %173 to i64 - %175 = getelementptr inbounds [26 x i32], [26 x i32]* %172, i64 0, i64 %174 - %176 = load i32, i32* %175, align 4 - store i32 %176, i32* %18, align 4 - %177 = load i32, i32* %18, align 4 - %178 = load i32, i32* %16, align 4 - %179 = sext i32 %178 to i64 - %180 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %179 - %181 = load i32, i32* %17, align 4 - %182 = sext i32 %181 to i64 - %183 = getelementptr inbounds [26 x i32], [26 x i32]* %180, i64 0, i64 %182 - %184 = load i32, i32* %183, align 4 - %185 = sext i32 %184 to i64 - %186 = getelementptr inbounds [500 x i32], [500 x i32]* @f, i64 0, i64 %185 - store i32 %177, i32* %186, align 4 - %187 = load i32, i32* %18, align 4 - %188 = sext i32 %187 to i64 - %189 = getelementptr inbounds [500 x i32], [500 x i32]* @out, i64 0, i64 %188 - %190 = load i32, i32* %189, align 4 - %191 = load i32, i32* %16, align 4 - %192 = sext i32 %191 to i64 - %193 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %192 - %194 = load i32, i32* %17, align 4 - %195 = sext i32 %194 to i64 - %196 = getelementptr inbounds [26 x i32], [26 x i32]* %193, i64 0, i64 %195 - %197 = load i32, i32* %196, align 4 - %198 = sext i32 %197 to i64 - %199 = getelementptr inbounds [500 x i32], [500 x i32]* @out, i64 0, i64 %198 - %200 = load i32, i32* %199, align 4 - %201 = or i32 %200, %190 - store i32 %201, i32* %199, align 4 - %202 = load i32, i32* %16, align 4 - %203 = sext i32 %202 to i64 - %204 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %203 - %205 = load i32, i32* %17, align 4 - %206 = sext i32 %205 to i64 - %207 = getelementptr inbounds [26 x i32], [26 x i32]* %204, i64 0, i64 %206 - invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %12, i32* noundef nonnull align 4 dereferenceable(4) %207) - to label %208 unwind label %120 - -208: ; preds = %169 - br label %209 - -209: ; preds = %208, %141 - br label %210 - -210: ; preds = %209 - %211 = load i32, i32* %17, align 4 - %212 = add nsw i32 %211, 1 - store i32 %212, i32* %17, align 4 - br label %138, !llvm.loop !12 - -213: ; preds = %138 - br label %129, !llvm.loop !13 - -214: ; preds = %131 - %215 = load i32, i32* %5, align 4 - call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %12) #13 - ret i32 %215 - -216: ; preds = %120 - %217 = load i8*, i8** %14, align 8 - %218 = load i32, i32* %15, align 4 - %219 = insertvalue { i8*, i32 } undef, i8* %217, 0 - %220 = insertvalue { i8*, i32 } %219, i32 %218, 1 - resume { i8*, i32 } %220 -} - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #1 - -; Function Attrs: nounwind -declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) #2 - -; Function Attrs: nounwind -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"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(80) %4) - ret void -} - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::queue"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::queue"*, %"class.std::queue"** %3, align 8 - %6 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %5, i32 0, i32 0 - %7 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %6, i32* noundef nonnull align 4 dereferenceable(4) %7) - ret void -} - -declare i32 @__gxx_personality_v0(...) - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt5queueIiSt5dequeIiSaIiEEE4sizeEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %0) #4 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 noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #13 - ret i64 %5 -} - -; 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) #4 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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE5frontEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #13 - ret i32* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %0) #4 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"* noundef nonnull align 8 dereferenceable(80) %4) #13 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #5 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"* noundef nonnull align 8 dereferenceable(80) %4) #13 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z13findNextStateic(i32 noundef %0, i8 noundef signext %1) #4 { - %3 = alloca i32, align 4 - %4 = alloca i8, align 1 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i8 %1, i8* %4, align 1 - %7 = load i32, i32* %3, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i8, i8* %4, align 1 - %9 = sext i8 %8 to i32 - %10 = sub nsw i32 %9, 97 - store i32 %10, i32* %6, align 4 - br label %11 - -11: ; preds = %20, %2 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %13 - %15 = load i32, i32* %6, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds [26 x i32], [26 x i32]* %14, i64 0, i64 %16 - %18 = load i32, i32* %17, align 4 - %19 = icmp eq i32 %18, -1 - br i1 %19, label %20, label %25 - -20: ; preds = %11 - %21 = load i32, i32* %5, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds [500 x i32], [500 x i32]* @f, i64 0, i64 %22 - %24 = load i32, i32* %23, align 4 - store i32 %24, i32* %5, align 4 - br label %11, !llvm.loop !14 - -25: ; preds = %11 - %26 = load i32, i32* %5, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %27 - %29 = load i32, i32* %6, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds [26 x i32], [26 x i32]* %28, i64 0, i64 %30 - %32 = load i32, i32* %31, align 4 - ret i32 %32 -} - -; Function Attrs: 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) #0 { - %4 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store %"class.std::__cxx11::basic_string"* %0, %"class.std::__cxx11::basic_string"** %4, align 8 - store i32 %1, i32* %5, align 4 - %9 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %4, align 8 - %10 = load i32, i32* %5, align 4 - %11 = call 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 - -12: ; preds = %71, %3 - %13 = load i32, i32* %7, align 4 - %14 = sext i32 %13 to i64 - %15 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #13 - %16 = icmp ult i64 %14, %15 - br i1 %16, label %17, label %74 - -17: ; preds = %12 - %18 = load i32, i32* %6, align 4 - %19 = load i32, i32* %7, align 4 - %20 = sext i32 %19 to i64 - %21 = call 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 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 - %26 = getelementptr inbounds [500 x i32], [500 x i32]* @out, i64 0, i64 %25 - %27 = load i32, i32* %26, align 4 - %28 = icmp eq i32 %27, 0 - br i1 %28, label %29, label %30 - -29: ; preds = %17 - br label %71 - -30: ; preds = %17 - store i32 0, i32* %8, align 4 - br label %31 - -31: ; preds = %67, %30 - %32 = load i32, i32* %8, align 4 - %33 = load i32, i32* %5, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %70 - -35: ; preds = %31 - %36 = load i32, i32* %6, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds [500 x i32], [500 x i32]* @out, i64 0, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = load i32, i32* %8, align 4 - %41 = shl i32 1, %40 - %42 = and i32 %39, %41 - %43 = icmp ne i32 %42, 0 - br i1 %43, label %44, label %66 - -44: ; preds = %35 - %45 = call noundef 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 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 noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %57) #13 - %59 = sub i64 %53, %58 - %60 = add i64 %59, 1 - %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 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 - br label %67 - -67: ; preds = %66 - %68 = load i32, i32* %8, align 4 - %69 = add nsw i32 %68, 1 - store i32 %69, i32* %8, align 4 - br label %31, !llvm.loop !15 - -70: ; preds = %31 - br label %71 - -71: ; preds = %70, %29 - %72 = load i32, i32* %7, align 4 - %73 = add nsw i32 %72, 1 - store i32 %73, i32* %7, align 4 - br label %12, !llvm.loop !16 - -74: ; preds = %12 - ret void -} - -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) #6 - -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) #6 - -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)) #6 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEm(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i64 noundef) #6 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #6 - -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) #6 - -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)) #6 - -; Function Attrs: noinline norecurse uwtable -define dso_local noundef i32 @main() #7 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca %"class.std::__new_allocator"*, align 8 - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"class.std::allocator"*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca %"class.std::allocator"*, align 8 - %10 = alloca %"class.std::allocator"*, align 8 - %11 = alloca %"class.std::allocator"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"class.std::allocator"*, align 8 - %14 = alloca %"class.std::allocator"*, align 8 - %15 = alloca %"class.std::allocator"*, align 8 - %16 = alloca %"class.std::allocator"*, align 8 - %17 = alloca %"class.std::allocator"*, align 8 - %18 = alloca %"class.std::allocator"*, align 8 - %19 = alloca %"class.std::allocator"*, align 8 - %20 = alloca %"class.std::allocator"*, align 8 - %21 = alloca i32, align 4 - %22 = alloca [4 x %"class.std::__cxx11::basic_string"], align 16 - %23 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %24 = alloca %"class.std::allocator", align 1 - %25 = alloca i8*, align 8 - %26 = alloca i32, align 4 - %27 = alloca %"class.std::allocator", align 1 - %28 = alloca %"class.std::allocator", align 1 - %29 = alloca %"class.std::allocator", align 1 - %30 = alloca i1, align 1 - %31 = alloca %"class.std::__cxx11::basic_string", align 8 - %32 = alloca %"class.std::allocator", align 1 - %33 = alloca i32, align 4 - %34 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %21, align 4 - %35 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], [4 x %"class.std::__cxx11::basic_string"]* %22, i64 0, i64 0 - store i1 true, i1* %30, align 1 - store %"class.std::__cxx11::basic_string"* %35, %"class.std::__cxx11::basic_string"** %23, align 8 - store %"class.std::allocator"* %24, %"class.std::allocator"** %20, align 8 - %36 = load %"class.std::allocator"*, %"class.std::allocator"** %20, align 8 - %37 = bitcast %"class.std::allocator"* %36 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %37, %"class.std::__new_allocator"** %1, align 8 - %38 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %1, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %35, 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) %24) - to label %39 unwind label %75 - -39: ; preds = %0 - %40 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %35, i64 1 - store %"class.std::__cxx11::basic_string"* %40, %"class.std::__cxx11::basic_string"** %23, align 8 - store %"class.std::allocator"* %27, %"class.std::allocator"** %19, align 8 - %41 = load %"class.std::allocator"*, %"class.std::allocator"** %19, align 8 - %42 = bitcast %"class.std::allocator"* %41 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %42, %"class.std::__new_allocator"** %2, align 8 - %43 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %40, 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) %27) - to label %44 unwind label %79 - -44: ; preds = %39 - %45 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %40, i64 1 - store %"class.std::__cxx11::basic_string"* %45, %"class.std::__cxx11::basic_string"** %23, align 8 - store %"class.std::allocator"* %28, %"class.std::allocator"** %18, align 8 - %46 = load %"class.std::allocator"*, %"class.std::allocator"** %18, align 8 - %47 = bitcast %"class.std::allocator"* %46 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %47, %"class.std::__new_allocator"** %3, align 8 - %48 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %45, 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) %28) - to label %49 unwind label %83 - -49: ; preds = %44 - %50 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %45, i64 1 - store %"class.std::__cxx11::basic_string"* %50, %"class.std::__cxx11::basic_string"** %23, align 8 - store %"class.std::allocator"* %29, %"class.std::allocator"** %17, align 8 - %51 = load %"class.std::allocator"*, %"class.std::allocator"** %17, align 8 - %52 = bitcast %"class.std::allocator"* %51 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %52, %"class.std::__new_allocator"** %4, align 8 - %53 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %50, 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) %29) - to label %54 unwind label %87 - -54: ; preds = %49 - store i1 false, i1* %30, align 1 - store %"class.std::allocator"* %29, %"class.std::allocator"** %15, align 8 - %55 = load %"class.std::allocator"*, %"class.std::allocator"** %15, align 8 - %56 = bitcast %"class.std::allocator"* %55 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %56) #13 - store %"class.std::allocator"* %28, %"class.std::allocator"** %13, align 8 - %57 = load %"class.std::allocator"*, %"class.std::allocator"** %13, align 8 - %58 = bitcast %"class.std::allocator"* %57 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %58) #13 - store %"class.std::allocator"* %27, %"class.std::allocator"** %11, align 8 - %59 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %60 = bitcast %"class.std::allocator"* %59 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %60) #13 - store %"class.std::allocator"* %24, %"class.std::allocator"** %9, align 8 - %61 = load %"class.std::allocator"*, %"class.std::allocator"** %9, align 8 - %62 = bitcast %"class.std::allocator"* %61 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %62) #13 - store %"class.std::allocator"* %32, %"class.std::allocator"** %16, align 8 - %63 = load %"class.std::allocator"*, %"class.std::allocator"** %16, align 8 - %64 = bitcast %"class.std::allocator"* %63 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %64, %"class.std::__new_allocator"** %5, align 8 - %65 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %31, 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) %32) - to label %66 unwind label %112 - -66: ; preds = %54 - store %"class.std::allocator"* %32, %"class.std::allocator"** %7, align 8 - %67 = load %"class.std::allocator"*, %"class.std::allocator"** %7, align 8 - %68 = bitcast %"class.std::allocator"* %67 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %68) #13 - store i32 4, i32* %33, align 4 - %69 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], [4 x %"class.std::__cxx11::basic_string"]* %22, i64 0, i64 0 - %70 = load i32, i32* %33, align 4 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %34, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %31) - to label %71 unwind label %118 - -71: ; preds = %66 - invoke void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS4_(%"class.std::__cxx11::basic_string"* noundef %69, i32 noundef %70, %"class.std::__cxx11::basic_string"* noundef %34) - to label %72 unwind label %122 - -72: ; preds = %71 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %34) #13 - store i32 0, i32* %21, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %31) #13 - %73 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], [4 x %"class.std::__cxx11::basic_string"]* %22, i32 0, i32 0 - %74 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %73, i64 4 - br label %127 - -75: ; preds = %0 - %76 = landingpad { i8*, i32 } - cleanup - %77 = extractvalue { i8*, i32 } %76, 0 - store i8* %77, i8** %25, align 8 - %78 = extractvalue { i8*, i32 } %76, 1 - store i32 %78, i32* %26, align 4 - br label %99 - -79: ; preds = %39 - %80 = landingpad { i8*, i32 } - cleanup - %81 = extractvalue { i8*, i32 } %80, 0 - store i8* %81, i8** %25, align 8 - %82 = extractvalue { i8*, i32 } %80, 1 - store i32 %82, i32* %26, align 4 - br label %96 - -83: ; preds = %44 - %84 = landingpad { i8*, i32 } - cleanup - %85 = extractvalue { i8*, i32 } %84, 0 - store i8* %85, i8** %25, align 8 - %86 = extractvalue { i8*, i32 } %84, 1 - store i32 %86, i32* %26, align 4 - br label %93 - -87: ; preds = %49 - %88 = landingpad { i8*, i32 } - cleanup - %89 = extractvalue { i8*, i32 } %88, 0 - store i8* %89, i8** %25, align 8 - %90 = extractvalue { i8*, i32 } %88, 1 - store i32 %90, i32* %26, align 4 - store %"class.std::allocator"* %29, %"class.std::allocator"** %14, align 8 - %91 = load %"class.std::allocator"*, %"class.std::allocator"** %14, align 8 - %92 = bitcast %"class.std::allocator"* %91 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %92) #13 - br label %93 - -93: ; preds = %87, %83 - store %"class.std::allocator"* %28, %"class.std::allocator"** %12, align 8 - %94 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %95 = bitcast %"class.std::allocator"* %94 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %95) #13 - br label %96 - -96: ; preds = %93, %79 - store %"class.std::allocator"* %27, %"class.std::allocator"** %10, align 8 - %97 = load %"class.std::allocator"*, %"class.std::allocator"** %10, align 8 - %98 = bitcast %"class.std::allocator"* %97 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %98) #13 - br label %99 - -99: ; preds = %96, %75 - store %"class.std::allocator"* %24, %"class.std::allocator"** %8, align 8 - %100 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %101 = bitcast %"class.std::allocator"* %100 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %101) #13 - %102 = load i1, i1* %30, align 1 - br i1 %102, label %103, label %111 - -103: ; preds = %99 - %104 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %23, align 8 - %105 = icmp eq %"class.std::__cxx11::basic_string"* %35, %104 - br i1 %105, label %110, label %106 - -106: ; preds = %106, %103 - %107 = phi %"class.std::__cxx11::basic_string"* [ %104, %103 ], [ %108, %106 ] - %108 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %107, i64 -1 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %108) #13 - %109 = icmp eq %"class.std::__cxx11::basic_string"* %108, %35 - br i1 %109, label %110, label %106 - -110: ; preds = %106, %103 - br label %111 - -111: ; preds = %110, %99 - br label %141 - -112: ; preds = %54 - %113 = landingpad { i8*, i32 } - cleanup - %114 = extractvalue { i8*, i32 } %113, 0 - store i8* %114, i8** %25, align 8 - %115 = extractvalue { i8*, i32 } %113, 1 - store i32 %115, i32* %26, align 4 - store %"class.std::allocator"* %32, %"class.std::allocator"** %6, align 8 - %116 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %117 = bitcast %"class.std::allocator"* %116 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %117) #13 - br label %133 - -118: ; preds = %66 - %119 = landingpad { i8*, i32 } - cleanup - %120 = extractvalue { i8*, i32 } %119, 0 - store i8* %120, i8** %25, align 8 - %121 = extractvalue { i8*, i32 } %119, 1 - store i32 %121, i32* %26, align 4 - br label %126 - -122: ; preds = %71 - %123 = landingpad { i8*, i32 } - cleanup - %124 = extractvalue { i8*, i32 } %123, 0 - store i8* %124, i8** %25, align 8 - %125 = extractvalue { i8*, i32 } %123, 1 - store i32 %125, i32* %26, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %34) #13 - br label %126 - -126: ; preds = %122, %118 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %31) #13 - br label %133 - -127: ; preds = %127, %72 - %128 = phi %"class.std::__cxx11::basic_string"* [ %74, %72 ], [ %129, %127 ] - %129 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %128, i64 -1 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %129) #13 - %130 = icmp eq %"class.std::__cxx11::basic_string"* %129, %73 - br i1 %130, label %131, label %127 - -131: ; preds = %127 - %132 = load i32, i32* %21, align 4 - ret i32 %132 - -133: ; preds = %126, %112 - %134 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], [4 x %"class.std::__cxx11::basic_string"]* %22, i32 0, i32 0 - %135 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %134, i64 4 - br label %136 - -136: ; preds = %136, %133 - %137 = phi %"class.std::__cxx11::basic_string"* [ %135, %133 ], [ %138, %136 ] - %138 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %137, i64 -1 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %138) #13 - %139 = icmp eq %"class.std::__cxx11::basic_string"* %138, %134 - br i1 %139, label %140, label %136 - -140: ; preds = %136 - br label %141 - -141: ; preds = %140, %111 - %142 = load i8*, i8** %25, align 8 - %143 = load i32, i32* %26, align 4 - %144 = insertvalue { i8*, i32 } undef, i8* %142, 0 - %145 = insertvalue { i8*, i32 } %144, i32 %143, 1 - resume { i8*, i32 } %145 -} - -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 #6 - -; Function Attrs: nounwind -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 - -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 #6 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - %4 = alloca %"struct.std::_Deque_iterator", align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) #13 - 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) #13 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %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) #13 - 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"* noundef nonnull align 8 dereferenceable(80) %11) #13 - ret void - -12: ; preds = %1 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %5, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %6, align 4 - %16 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %16) #13 - br label %17 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - call void @__clang_call_terminate(i8* %18) #14 - unreachable -} - -; 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) #4 comdat align 2 { - %5 = alloca %"class.std::deque"*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %5, align 8 - store %"class.std::allocator.0"* %3, %"class.std::allocator.0"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %5, align 8 - ret void -} - -; Function Attrs: 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) #4 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %10) #13 - ret void -} - -; 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) #4 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %10) #13 - ret void -} - -; 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) #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"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %6, align 8 - %8 = icmp ne i32** %7, null - br i1 %8, label %9, label %29 - -9: ; preds = %1 - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 2 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 3 - %14 = load i32**, i32*** %13, align 8 - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = getelementptr inbounds i32*, i32** %19, i64 1 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %14, i32** noundef %20) #13 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 0 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 1 - %28 = load i64, i64* %27, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %24, i64 noundef %28) #13 - 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"* noundef nonnull align 8 dereferenceable(80) %30) #13 - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #8 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #13 - call void @_ZSt9terminatev() #14 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable -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 #5 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load i32*, i32** %12, align 8 - store i32* %13, i32** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - store i32* %17, i32** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load i32**, i32*** %20, align 8 - store i32** %21, i32*** %18, align 8 - ret void -} - -; Function Attrs: 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) #4 comdat align 2 { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load i32**, i32*** %5, align 8 - store i32** %9, i32*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32**, i32*** %7, align 8 - %12 = load i32**, i32*** %6, align 8 - %13 = icmp ult i32** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32**, i32*** %7, align 8 - %16 = load i32*, i32** %15, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %16) #13 - 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 !17 - -20: ; preds = %10 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca %"class.std::allocator.3"*, align 8 - %6 = alloca %"class.std::allocator.3"*, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::_Deque_base"*, align 8 - %10 = alloca i32**, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"class.std::allocator.3", align 1 - %13 = alloca i8*, align 8 - %14 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %9, align 8 - store i32** %1, i32*** %10, align 8 - store i64 %2, i64* %11, align 8 - %15 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %9, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %12, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %15) #13 - %16 = load i32**, i32*** %10, align 8 - %17 = load i64, i64* %11, align 8 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %6, align 8 - store i32** %16, i32*** %7, align 8 - store i64 %17, i64* %8, align 8 - %18 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %6, align 8 - %19 = bitcast %"class.std::allocator.3"* %18 to %"class.std::__new_allocator.4"* - %20 = load i32**, i32*** %7, align 8 - %21 = load i64, i64* %8, align 8 - call void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %19, i32** noundef %20, i64 noundef %21) - br label %22 - -22: ; preds = %3 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %5, align 8 - %23 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %5, align 8 - %24 = bitcast %"class.std::allocator.3"* %23 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %24) #13 - ret void - -25: ; No predecessors! - %26 = landingpad { i8*, i32 } - catch i8* null - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %13, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %14, align 4 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %4, align 8 - %29 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %30 = bitcast %"class.std::allocator.3"* %29 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %30) #13 - br label %31 - -31: ; preds = %25 - %32 = load i8*, i8** %13, align 8 - call void @__clang_call_terminate(i8* %32) #14 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -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 #5 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - %3 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %4 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - store %"class.std::allocator.0"* %5, %"class.std::allocator.0"** %2, align 8 - %6 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %7 = bitcast %"class.std::allocator.0"* %6 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %7) #13 - ret void -} - -; 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) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::_Deque_base"*, align 8 - %7 = alloca i32*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %6, align 8 - store i32* %1, i32** %7, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %6, align 8 - %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 %"class.std::allocator.0"* - %11 = load i32*, i32** %7, align 8 - %12 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - to label %13 unwind label %19 - -13: ; preds = %2 - store %"class.std::allocator.0"* %10, %"class.std::allocator.0"** %3, align 8 - store i32* %11, i32** %4, align 8 - store i64 %12, i64* %5, align 8 - %14 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %15 = bitcast %"class.std::allocator.0"* %14 to %"class.std::__new_allocator.1"* - %16 = load i32*, i32** %4, align 8 - %17 = load i64, i64* %5, align 8 - call void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %15, i32* noundef %16, i64 noundef %17) - br label %18 - -18: ; preds = %13 - ret void - -19: ; preds = %2 - %20 = landingpad { i8*, i32 } - catch i8* null - %21 = extractvalue { i8*, i32 } %20, 0 - call void @__clang_call_terminate(i8* %21) #14 - unreachable -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #4 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* noundef %9) #15 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #9 - -; Function Attrs: 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) #5 comdat align 2 { - %3 = alloca %"class.std::__new_allocator.4"*, align 8 - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = bitcast %"class.std::allocator.3"* %0 to i8* - store i8* %8, i8** %6, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %7, align 8 - %9 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - %10 = 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) %9) #13 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %4, align 8 - store %"class.std::allocator.0"* %10, %"class.std::allocator.0"** %5, align 8 - %11 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %12 = bitcast %"class.std::allocator.3"* %11 to %"class.std::__new_allocator.4"* - store %"class.std::__new_allocator.4"* %12, %"class.std::__new_allocator.4"** %3, align 8 - %13 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %3, align 8 - ret void -} - -; 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) #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"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.4"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = bitcast i32** %8 to i8* - call void @_ZdlPv(i8* noundef %9) #15 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.4"*, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %2, align 8 - %3 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %2, align 8 - %3 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 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"* 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"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(80) %6) #13 - 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 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #13 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %5 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"class.std::allocator.0"* - store %"class.std::allocator.0"* %6, %"class.std::allocator.0"** %3, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %8, %"class.std::__new_allocator.1"** %2, align 8 - %9 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 dereferenceable(80) %10) #13 - ret void -} - -; 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) #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32**, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call 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 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call 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"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call 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 - store i32** %28, i32*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load i32**, i32*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds i32*, i32** %35, i64 %42 - store i32** %43, i32*** %8, align 8 - %44 = load i32**, i32*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds i32*, i32** %44, i64 %45 - store i32** %46, i32*** %9, align 8 - %47 = load i32**, i32*** %8, align 8 - %48 = load i32**, i32*** %9, align 8 - invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %47, i32** noundef %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #13 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load i32**, i32*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %60, i64 noundef %64) #13 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store i32** null, i32*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #16 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load i32**, i32*** %8, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, i32** noundef %80) #13 - %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"* noundef nonnull align 8 dereferenceable(32) %83, i32** noundef %85) #13 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load i32*, i32** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store i32* %90, i32** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load i32*, i32** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call 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 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store i32* %103, i32** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #14 - unreachable - -116: ; preds = %54 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl_data"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl_data"* %0, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl_data"*, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store i32** null, i32*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %6) #13 - %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"* noundef nonnull align 8 dereferenceable(32) %7) #13 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store i32** null, i32*** %7, align 8 - ret void -} - -; Function Attrs: 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 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable -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) #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"class.std::allocator.3"*, align 8 - %6 = alloca %"class.std::allocator.3"*, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::allocator.3", align 1 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %7, align 8 - store i64 %1, i64* %8, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %9, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12) #13 - %13 = load i64, i64* %8, align 8 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %3, align 8 - store i64 %13, i64* %4, align 8 - %14 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %15 = bitcast %"class.std::allocator.3"* %14 to %"class.std::__new_allocator.4"* - %16 = load i64, i64* %4, align 8 - %17 = invoke noundef i32** @_ZNSt15__new_allocatorIPiE8allocateEmPKv(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %15, i64 noundef %16, i8* noundef null) - to label %18 unwind label %22 - -18: ; preds = %2 - br label %19 - -19: ; preds = %18 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %6, align 8 - %20 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %6, align 8 - %21 = bitcast %"class.std::allocator.3"* %20 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %21) #13 - ret i32** %17 - -22: ; preds = %2 - %23 = landingpad { i8*, i32 } - cleanup - %24 = extractvalue { i8*, i32 } %23, 0 - store i8* %24, i8** %10, align 8 - %25 = extractvalue { i8*, i32 } %23, 1 - store i32 %25, i32* %11, align 4 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %5, align 8 - %26 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %5, align 8 - %27 = bitcast %"class.std::allocator.3"* %26 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %27) #13 - br label %28 - -28: ; preds = %22 - %29 = load i8*, i8** %10, align 8 - %30 = load i32, i32* %11, align 4 - %31 = insertvalue { i8*, i32 } undef, i8* %29, 0 - %32 = insertvalue { i8*, i32 } %31, i32 %30, 1 - resume { i8*, i32 } %32 -} - -; 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) #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load i32**, i32*** %5, align 8 - store i32** %11, i32*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load i32**, i32*** %7, align 8 - %14 = load i32**, i32*** %6, align 8 - %15 = icmp ult i32** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke 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 - %19 = load i32**, i32*** %7, align 8 - store i32* %17, i32** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load i32**, i32*** %7, align 8 - %22 = getelementptr inbounds i32*, i32** %21, i32 1 - store i32** %22, i32*** %7, align 8 - br label %12, !llvm.loop !18 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #13 - %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"* noundef nonnull align 8 dereferenceable(80) %10, i32** noundef %30, i32** noundef %31) #13 - invoke void @__cxa_rethrow() #16 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #14 - unreachable - -47: ; preds = %27 - unreachable -} - -declare void @__cxa_rethrow() - -declare void @__cxa_end_catch() - -; 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) #4 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load i32**, i32*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store i32** %6, i32*** %7, align 8 - %8 = load i32**, i32*** %4, align 8 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store i32* %9, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load i32*, i32** %11, align 8 - %13 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #13 - %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: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt15__new_allocatorIPiE8allocateEmPKv(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #0 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.4"*, align 8 - %5 = alloca %"class.std::__new_allocator.4"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator.4"* %8, %"class.std::__new_allocator.4"** %4, align 8 - %10 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %4, align 8 - %11 = icmp ugt i64 %9, 1152921504606846975 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 2305843009213693951 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #16 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 8 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #17 - %21 = bitcast i8* %20 to i32** - ret i32** %21 -} - -; Function Attrs: noreturn -declare void @_ZSt28__throw_bad_array_new_lengthv() #10 - -; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #10 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #11 - -; 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) #0 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator.0"* - %8 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - store %"class.std::allocator.0"* %7, %"class.std::allocator.0"** %2, align 8 - store i64 %8, i64* %3, align 8 - %9 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %10 = bitcast %"class.std::allocator.0"* %9 to %"class.std::__new_allocator.1"* - %11 = load i64, i64* %3, align 8 - %12 = call noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %10, i64 noundef %11, i8* noundef null) - ret i32* %12 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #0 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca %"class.std::__new_allocator.1"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator.1"* %8, %"class.std::__new_allocator.1"** %4, align 8 - %10 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - %11 = icmp ugt i64 %9, 2305843009213693951 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 4611686018427387903 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #16 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 4 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #17 - %21 = bitcast i8* %20 to i32* - ret i32* %21 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #4 comdat align 2 { - %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - ret i64 %1 -} - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::__new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store i32* %1, i32** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %19 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %19 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 2 - %23 = load i32*, i32** %22, align 8 - %24 = getelementptr inbounds i32, i32* %23, i64 -1 - %25 = icmp ne i32* %17, %24 - br i1 %25, label %26, label %55 - -26: ; preds = %2 - %27 = bitcast %"class.std::deque"* %11 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 %"class.std::allocator.0"* - %30 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %31 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %30, i32 0, i32 0 - %32 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %31 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %32, i32 0, i32 3 - %34 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %33, i32 0, i32 0 - %35 = load i32*, i32** %34, align 8 - %36 = load i32*, i32** %10, align 8 - store %"class.std::allocator.0"* %29, %"class.std::allocator.0"** %6, align 8 - store i32* %35, i32** %7, align 8 - store i32* %36, i32** %8, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %7, align 8 - %40 = load i32*, i32** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #13 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %3, align 8 - store i32* %39, i32** %4, align 8 - store i32* %41, i32** %5, align 8 - %42 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - %43 = load i32*, i32** %4, align 8 - %44 = bitcast i32* %43 to i8* - %45 = load i32*, i32** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %45) #13 - %47 = load i32, i32* %46, align 4 - store i32 %47, i32* %43, align 4 - %48 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %51, i32 0, i32 0 - %53 = load i32*, i32** %52, align 8 - %54 = getelementptr inbounds i32, i32* %53, i32 1 - store i32* %54, i32** %52, align 8 - br label %57 - -55: ; preds = %2 - %56 = load i32*, i32** %10, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, i32* noundef nonnull align 4 dereferenceable(4) %56) - br label %57 - -57: ; preds = %55, %26 - ret void -} - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::__new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store i32* %1, i32** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #13 - %13 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #13 - %14 = icmp eq i64 %12, %13 - br i1 %14, label %15, label %16 - -15: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* noundef getelementptr inbounds ([48 x i8], [48 x i8]* @.str.8, i64 0, i64 0)) #16 - unreachable - -16: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) - %17 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %18 = call noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %17) - %19 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 3 - %23 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %22, i32 0, i32 3 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds i32*, i32** %24, i64 1 - store i32* %18, i32** %25, align 8 - %26 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %27 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %26, i32 0, i32 0 - %28 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %27 to %"class.std::allocator.0"* - %29 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %29, i32 0, i32 0 - %31 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %30 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %32 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %31, i32 0, i32 3 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load i32*, i32** %33, align 8 - %35 = load i32*, i32** %10, align 8 - %36 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %35) #13 - store %"class.std::allocator.0"* %28, %"class.std::allocator.0"** %6, align 8 - store i32* %34, i32** %7, align 8 - store i32* %36, i32** %8, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %7, align 8 - %40 = load i32*, i32** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #13 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %3, align 8 - store i32* %39, i32** %4, align 8 - store i32* %41, i32** %5, align 8 - %42 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - %43 = load i32*, i32** %4, align 8 - %44 = bitcast i32* %43 to i8* - %45 = load i32*, i32** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %45) #13 - %47 = load i32, i32* %46, align 4 - store i32 %47, i32* %43, align 4 - %48 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %53 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %52, i32 0, i32 0 - %54 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %53 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %55 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %54, i32 0, i32 3 - %56 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %55, i32 0, i32 3 - %57 = load i32**, i32*** %56, align 8 - %58 = getelementptr inbounds i32*, i32** %57, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %51, i32** noundef %58) #13 - %59 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %60 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %59, i32 0, i32 0 - %61 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %60 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %62 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %61, i32 0, i32 3 - %63 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %62, i32 0, i32 1 - %64 = load i32*, i32** %63, align 8 - %65 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %66 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %65, i32 0, i32 0 - %67 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %66 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %68 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %67, i32 0, i32 3 - %69 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %68, i32 0, i32 0 - store i32* %64, i32** %69, align 8 - ret void -} - -; 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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call 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) #13 - ret i64 %12 -} - -; 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) #4 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 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) #13 - %6 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #13 - ret i64 %6 -} - -; Function Attrs: noreturn -declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #10 - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load i32**, i32*** %22, align 8 - %24 = ptrtoint i32** %18 to i64 - %25 = ptrtoint i32** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* 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: 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) #4 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 noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #13 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load i32**, i32*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = ptrtoint i32** %8 to i64 - %13 = ptrtoint i32** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = 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 i64 - %21 = sub nsw i64 %15, %20 - %22 = mul nsw i64 %5, %21 - %23 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 0 - %25 = load i32*, i32** %24, align 8 - %26 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 1 - %28 = load i32*, i32** %27, align 8 - %29 = ptrtoint i32* %25 to i64 - %30 = ptrtoint i32* %28 to i64 - %31 = sub i64 %29, %30 - %32 = sdiv exact i64 %31, 4 - %33 = add nsw i64 %22, %32 - %34 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 2 - %36 = load i32*, i32** %35, align 8 - %37 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %38 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %37, i32 0, i32 0 - %39 = load i32*, i32** %38, align 8 - %40 = ptrtoint i32* %36 to i64 - %41 = ptrtoint i32* %39 to i64 - %42 = sub i64 %40, %41 - %43 = sdiv exact i64 %42, 4 - %44 = add nsw i64 %33, %43 - ret i64 %44 -} - -; 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) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca %"class.std::__new_allocator.1"*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %5, align 8 - store i64 9223372036854775807, i64* %6, align 8 - %8 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %5, align 8 - store %"class.std::allocator.0"* %8, %"class.std::allocator.0"** %4, align 8 - %9 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %10 = bitcast %"class.std::allocator.0"* %9 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %10, %"class.std::__new_allocator.1"** %3, align 8 - %11 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - store %"class.std::__new_allocator.1"* %11, %"class.std::__new_allocator.1"** %2, align 8 - %12 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - store i64 2305843009213693951, i64* %7, align 8 - %13 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef nonnull align 8 dereferenceable(8) %7) - to label %14 unwind label %16 - -14: ; preds = %1 - %15 = load i64, i64* %13, align 8 - ret i64 %15 - -16: ; preds = %1 - %17 = landingpad { i8*, i32 } - catch i8* null - %18 = extractvalue { i8*, i32 } %17, 0 - call void @__clang_call_terminate(i8* %18) #14 - unreachable -} - -; 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 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: 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) #0 comdat align 2 { - %4 = alloca %"class.std::deque"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8, align 1 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i64, align 8 - %11 = alloca i32**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load i32**, i32*** %24, align 8 - %26 = ptrtoint i32** %19 to i64 - %27 = ptrtoint i32** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load i32**, i32*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds i32*, i32** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds i32*, i32** %56, i64 %63 - store i32** %64, i32*** %9, align 8 - %65 = load i32**, i32*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load i32**, i32*** %70, align 8 - %72 = icmp ult i32** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load i32**, i32*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load i32**, i32*** %84, align 8 - %86 = getelementptr inbounds i32*, i32** %85, i64 1 - %87 = load i32**, i32*** %9, align 8 - %88 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %79, i32** noundef %86, i32** noundef %87) - br label %107 - -89: ; preds = %62 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load i32**, i32*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load i32**, i32*** %100, align 8 - %102 = getelementptr inbounds i32*, i32** %101, i64 1 - %103 = load i32**, i32*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds i32*, i32** %103, i64 %104 - %106 = call noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %95, i32** noundef %102, i32** noundef %105) - br label %107 - -107: ; preds = %89, %73 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call 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 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 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds i32*, i32** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds i32*, i32** %130, i64 %137 - store i32** %138, i32*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load i32**, i32*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load i32**, i32*** %149, align 8 - %151 = getelementptr inbounds i32*, i32** %150, i64 1 - %152 = load i32**, i32*** %9, align 8 - %153 = call 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 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load i32**, i32*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, i32** noundef %159, i64 noundef %164) #13 - %165 = load i32**, i32*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store i32** %165, i32*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load i32**, i32*** %9, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, i32** noundef %180) #13 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load i32**, i32*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds i32*, i32** %185, i64 %186 - %188 = getelementptr inbounds i32*, i32** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, i32** noundef %188) #13 - ret void -} - -; 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %9) - %11 = load i32**, i32*** %6, align 8 - %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: 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %9) - %11 = load i32**, i32*** %6, align 8 - %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: 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #13 - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %9) #13 - %11 = load i32**, i32*** %6, align 8 - %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #13 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZSt12__miter_baseIPPiET_S2_(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: 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) #4 comdat { - %3 = alloca i32***, align 8 - %4 = alloca i32**, align 8 - store i32*** %0, i32**** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - ret i32** %5 -} - -; Function Attrs: 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZSt12__niter_baseIPPiET_S2_(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: 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #0 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = bitcast i32** %17 to i8* - %19 = load i32**, i32*** %4, align 8 - %20 = bitcast i32** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %30 - -23: ; preds = %3 - %24 = load i64, i64* %7, align 8 - %25 = icmp eq i64 %24, 1 - br i1 %25, label %26, label %29 - -26: ; preds = %23 - %27 = load i32**, i32*** %6, align 8 - %28 = load i32**, i32*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %27, i32** noundef %28) - br label %29 - -29: ; preds = %26, %23 - br label %30 - -30: ; preds = %29, %16 - %31 = load i32**, i32*** %6, align 8 - %32 = load i64, i64* %7, align 8 - %33 = getelementptr inbounds i32*, i32** %31, i64 %32 - ret i32** %33 -} - -; Function Attrs: argmemonly nofree nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #12 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(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 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32**, i32*** %3, align 8 - store i32* %6, i32** %7, align 8 - ret void -} - -; 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #13 - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %9) #13 - %11 = load i32**, i32*** %6, align 8 - %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #13 - %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: 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call 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: 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(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 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32*, i32** %17, i64 %19 - %21 = bitcast i32** %20 to i8* - %22 = load i32**, i32*** %4, align 8 - %23 = bitcast i32** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %34 - -26: ; preds = %3 - %27 = load i64, i64* %7, align 8 - %28 = icmp eq i64 %27, 1 - br i1 %28, label %29, label %33 - -29: ; preds = %26 - %30 = load i32**, i32*** %6, align 8 - %31 = getelementptr inbounds i32*, i32** %30, i64 -1 - %32 = load i32**, i32*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %31, i32** noundef %32) - br label %33 - -33: ; preds = %29, %26 - br label %34 - -34: ; preds = %33, %16 - %35 = load i32**, i32*** %6, align 8 - %36 = load i64, i64* %7, align 8 - %37 = sub i64 0, %36 - %38 = getelementptr inbounds i32*, i32** %35, i64 %37 - ret i32** %38 -} - -; 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) #4 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"* noundef nonnull align 8 dereferenceable(80) %4) #13 - %5 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3) #13 - ret i32* %5 -} - -; 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) #4 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 0 - %13 = load i32*, i32** %12, align 8 - %14 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 2 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 2 - %19 = load i32*, i32** %18, align 8 - %20 = getelementptr inbounds i32, i32* %19, i64 -1 - %21 = icmp ne i32* %13, %20 - br i1 %21, label %22, label %43 - -22: ; preds = %1 - %23 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %24 = 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) %23) #13 - %25 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %26 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %25, i32 0, i32 0 - %27 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %26 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %28 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %27, i32 0, i32 2 - %29 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %28, i32 0, i32 0 - %30 = load i32*, i32** %29, align 8 - store %"class.std::allocator.0"* %24, %"class.std::allocator.0"** %4, align 8 - store i32* %30, i32** %5, align 8 - %31 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %32 = bitcast %"class.std::allocator.0"* %31 to %"class.std::__new_allocator.1"* - %33 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator.1"* %32, %"class.std::__new_allocator.1"** %2, align 8 - store i32* %33, i32** %3, align 8 - %34 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %35 = load i32*, i32** %3, align 8 - %36 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %37 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %36, i32 0, i32 0 - %38 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %37 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %38, i32 0, i32 2 - %40 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %39, i32 0, i32 0 - %41 = load i32*, i32** %40, align 8 - %42 = getelementptr inbounds i32, i32* %41, i32 1 - store i32* %42, i32** %40, align 8 - br label %45 - -43: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) - to label %44 unwind label %46 - -44: ; preds = %43 - br label %45 - -45: ; preds = %44, %22 - ret void - -46: ; preds = %43 - %47 = landingpad { i8*, i32 } - catch i8* null - %48 = extractvalue { i8*, i32 } %47, 0 - call void @__clang_call_terminate(i8* %48) #14 - unreachable -} - -; 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) #4 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %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) #13 - %10 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %11 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %10, i32 0, i32 0 - %12 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %11 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %12, i32 0, i32 2 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %13, i32 0, i32 0 - %15 = load i32*, i32** %14, align 8 - store %"class.std::allocator.0"* %9, %"class.std::allocator.0"** %4, align 8 - store i32* %15, i32** %5, align 8 - %16 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %17 = bitcast %"class.std::allocator.0"* %16 to %"class.std::__new_allocator.1"* - %18 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator.1"* %17, %"class.std::__new_allocator.1"** %2, align 8 - store i32* %18, i32** %3, align 8 - %19 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %20 = load i32*, i32** %3, align 8 - %21 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %22 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %23 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %23 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %24, i32 0, i32 2 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %25, i32 0, i32 1 - %27 = load i32*, i32** %26, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %21, i32* noundef %27) #13 - %28 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %29 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %28, 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 2 - %32 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %33 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %32, i32 0, i32 0 - %34 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %33 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %35 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %34, i32 0, i32 2 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %35, i32 0, i32 3 - %37 = load i32**, i32*** %36, align 8 - %38 = getelementptr inbounds i32*, i32** %37, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %31, i32** noundef %38) #13 - %39 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %40 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %39, i32 0, i32 0 - %41 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %40 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %42 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %41, i32 0, i32 2 - %43 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %42, i32 0, i32 1 - %44 = load i32*, i32** %43, align 8 - %45 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %46 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %45, i32 0, i32 0 - %47 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %46 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %48 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %47, i32 0, i32 2 - %49 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %48, i32 0, i32 0 - store i32* %44, i32** %49, align 8 - ret void -} - -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 = { argmemonly nofree nounwind willreturn writeonly } -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 = { 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 #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 = { 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 = { "frame-pointer"="all" "no-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 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 = { noinline noreturn nounwind } -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 = { 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 #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 = { argmemonly nofree nounwind willreturn } -attributes #13 = { nounwind } -attributes #14 = { noreturn nounwind } -attributes #15 = { builtin nounwind } -attributes #16 = { noreturn } -attributes #17 = { builtin allocsize(0) } - -!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"} -!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-llvm14/anagram-substring-search-search-permutations.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/anagram-substring-search-search-permutations.ll deleted file mode 100644 index 83946d9c4..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/anagram-substring-search-search-permutations.ll +++ /dev/null @@ -1,275 +0,0 @@ -; ModuleID = 'PE-benchmarks/anagram-substring-search-search-permutations.cpp' -source_filename = "PE-benchmarks/anagram-substring-search-search-permutations.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z7comparePcS_(i8* noundef %0, i8* noundef %1) #0 { - %3 = alloca i1, align 1 - %4 = alloca i8*, align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i8* %1, i8** %5, align 8 - store i32 0, i32* %6, align 4 - br label %7 - -7: ; preds = %26, %2 - %8 = load i32, i32* %6, align 4 - %9 = icmp slt i32 %8, 256 - br i1 %9, label %10, label %29 - -10: ; preds = %7 - %11 = load i8*, i8** %4, align 8 - %12 = load i32, i32* %6, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i8, i8* %11, i64 %13 - %15 = load i8, i8* %14, align 1 - %16 = sext i8 %15 to i32 - %17 = load i8*, i8** %5, align 8 - %18 = load i32, i32* %6, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds i8, i8* %17, i64 %19 - %21 = load i8, i8* %20, align 1 - %22 = sext i8 %21 to i32 - %23 = icmp ne i32 %16, %22 - br i1 %23, label %24, label %25 - -24: ; preds = %10 - store i1 false, i1* %3, align 1 - br label %30 - -25: ; preds = %10 - br label %26 - -26: ; preds = %25 - %27 = load i32, i32* %6, align 4 - %28 = add nsw i32 %27, 1 - store i32 %28, i32* %6, align 4 - br label %7, !llvm.loop !6 - -29: ; preds = %7 - store i1 true, i1* %3, align 1 - br label %30 - -30: ; preds = %29, %24 - %31 = load i1, i1* %3, align 1 - ret i1 %31 -} - -; Function Attrs: 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 - %6 = alloca i32, align 4 - %7 = alloca [256 x i8], align 16 - %8 = alloca [256 x i8], align 16 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %11 = load i8*, i8** %3, align 8 - %12 = call i64 @strlen(i8* noundef %11) #7 - %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* noundef %14) #7 - %16 = trunc i64 %15 to i32 - store i32 %16, i32* %6, align 4 - %17 = bitcast [256 x i8]* %7 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %17, i8 0, i64 256, i1 false) - %18 = bitcast [256 x i8]* %8 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %18, i8 0, i64 256, i1 false) - store i32 0, i32* %9, align 4 - br label %19 - -19: ; preds = %42, %2 - %20 = load i32, i32* %9, align 4 - %21 = load i32, i32* %5, align 4 - %22 = icmp slt i32 %20, %21 - br i1 %22, label %23, label %45 - -23: ; preds = %19 - %24 = load i8*, i8** %3, align 8 - %25 = load i32, i32* %9, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i8, i8* %24, i64 %26 - %28 = load i8, i8* %27, align 1 - %29 = sext i8 %28 to i64 - %30 = getelementptr inbounds [256 x i8], [256 x i8]* %7, i64 0, i64 %29 - %31 = load i8, i8* %30, align 1 - %32 = add i8 %31, 1 - store i8 %32, i8* %30, align 1 - %33 = load i8*, i8** %4, align 8 - %34 = load i32, i32* %9, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i8, i8* %33, i64 %35 - %37 = load i8, i8* %36, align 1 - %38 = sext i8 %37 to i64 - %39 = getelementptr inbounds [256 x i8], [256 x i8]* %8, i64 0, i64 %38 - %40 = load i8, i8* %39, align 1 - %41 = add i8 %40, 1 - store i8 %41, i8* %39, align 1 - br label %42 - -42: ; preds = %23 - %43 = load i32, i32* %9, align 4 - %44 = add nsw i32 %43, 1 - store i32 %44, i32* %9, align 4 - br label %19, !llvm.loop !8 - -45: ; preds = %19 - %46 = load i32, i32* %5, align 4 - store i32 %46, i32* %10, align 4 - br label %47 - -47: ; preds = %83, %45 - %48 = load i32, i32* %10, align 4 - %49 = load i32, i32* %6, align 4 - %50 = icmp slt i32 %48, %49 - br i1 %50, label %51, label %86 - -51: ; preds = %47 - %52 = getelementptr inbounds [256 x i8], [256 x i8]* %7, i64 0, i64 0 - %53 = getelementptr inbounds [256 x i8], [256 x i8]* %8, i64 0, i64 0 - %54 = call noundef zeroext i1 @_Z7comparePcS_(i8* noundef %52, i8* noundef %53) - br i1 %54, label %55, label %62 - -55: ; preds = %51 - %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 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 - %63 = load i8*, i8** %4, align 8 - %64 = load i32, i32* %10, align 4 - %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds i8, i8* %63, i64 %65 - %67 = load i8, i8* %66, align 1 - %68 = sext i8 %67 to i64 - %69 = getelementptr inbounds [256 x i8], [256 x i8]* %8, i64 0, i64 %68 - %70 = load i8, i8* %69, align 1 - %71 = add i8 %70, 1 - store i8 %71, i8* %69, align 1 - %72 = load i8*, i8** %4, align 8 - %73 = load i32, i32* %10, align 4 - %74 = load i32, i32* %5, align 4 - %75 = sub nsw i32 %73, %74 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds i8, i8* %72, i64 %76 - %78 = load i8, i8* %77, align 1 - %79 = sext i8 %78 to i64 - %80 = getelementptr inbounds [256 x i8], [256 x i8]* %8, i64 0, i64 %79 - %81 = load i8, i8* %80, align 1 - %82 = add i8 %81, -1 - store i8 %82, i8* %80, align 1 - br label %83 - -83: ; preds = %62 - %84 = load i32, i32* %10, align 4 - %85 = add nsw i32 %84, 1 - store i32 %85, i32* %10, align 4 - br label %47, !llvm.loop !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 noundef zeroext i1 @_Z7comparePcS_(i8* noundef %87, i8* noundef %88) - br i1 %89, label %90, label %97 - -90: ; preds = %86 - %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 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 - ret void -} - -; Function Attrs: nounwind readonly willreturn -declare i64 @strlen(i8* noundef) #2 - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #3 - -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) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 - -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) #4 - -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)) #4 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #5 { - %1 = alloca i32, align 4 - %2 = alloca [11 x i8], align 1 - %3 = alloca [5 x i8], align 1 - store i32 0, i32* %1, align 4 - %4 = bitcast [11 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %4, i8* align 1 getelementptr inbounds ([11 x i8], [11 x i8]* @__const.main.txt, i32 0, i32 0), i64 11, i1 false) - %5 = bitcast [5 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %5, i8* align 1 getelementptr inbounds ([5 x i8], [5 x i8]* @__const.main.pat, i32 0, i32 0), i64 5, i1 false) - %6 = getelementptr inbounds [5 x i8], [5 x i8]* %3, i64 0, i64 0 - %7 = getelementptr inbounds [11 x i8], [11 x i8]* %2, i64 0, i64 0 - call void @_Z6searchPcS_(i8* noundef %6, i8* noundef %7) - ret i32 0 -} - -; 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 - -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 = { argmemonly nofree nounwind willreturn writeonly } -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 = { argmemonly nofree nounwind willreturn } -attributes #7 = { nounwind readonly willreturn } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/bellman-ford-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/bellman-ford-algorithm.ll deleted file mode 100644 index c6195791e..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/bellman-ford-algorithm.ll +++ /dev/null @@ -1,533 +0,0 @@ -; ModuleID = 'PE-benchmarks/bellman-ford-algorithm.cpp' -source_filename = "PE-benchmarks/bellman-ford-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%struct.Graph = type { i32, i32, %struct.Edge* } -%struct.Edge = type { i32, i32, i32 } - -@.str = private unnamed_addr constant [29 x i8] c"Vertex Distance from Source\0A\00", align 1 -@.str.1 = private unnamed_addr constant [10 x i8] c"%d \09\09 %d\0A\00", align 1 -@.str.2 = private unnamed_addr constant [37 x i8] c"Graph contains negative weight cycle\00", align 1 - -; 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 noundef nonnull i8* @_Znwm(i64 noundef 16) #6 - %7 = bitcast i8* %6 to %struct.Graph* - store %struct.Graph* %7, %struct.Graph** %5, align 8 - %8 = load i32, i32* %3, align 4 - %9 = load %struct.Graph*, %struct.Graph** %5, align 8 - %10 = getelementptr inbounds %struct.Graph, %struct.Graph* %9, i32 0, i32 0 - store i32 %8, i32* %10, align 8 - %11 = load i32, i32* %4, align 4 - %12 = load %struct.Graph*, %struct.Graph** %5, align 8 - %13 = getelementptr inbounds %struct.Graph, %struct.Graph* %12, i32 0, i32 1 - store i32 %11, i32* %13, align 4 - %14 = load i32, i32* %4, align 4 - %15 = sext i32 %14 to i64 - %16 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %15, i64 12) - %17 = extractvalue { i64, i1 } %16, 1 - %18 = extractvalue { i64, i1 } %16, 0 - %19 = select i1 %17, i64 -1, i64 %18 - %20 = call noalias noundef nonnull i8* @_Znam(i64 noundef %19) #6 - %21 = bitcast i8* %20 to %struct.Edge* - %22 = load %struct.Graph*, %struct.Graph** %5, align 8 - %23 = getelementptr inbounds %struct.Graph, %struct.Graph* %22, i32 0, i32 2 - store %struct.Edge* %21, %struct.Edge** %23, align 8 - %24 = load %struct.Graph*, %struct.Graph** %5, align 8 - ret %struct.Graph* %24 -} - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #2 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z8printArrPii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %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 - -7: ; preds = %19, %2 - %8 = load i32, i32* %5, align 4 - %9 = load i32, i32* %4, align 4 - %10 = icmp slt i32 %8, %9 - br i1 %10, label %11, label %22 - -11: ; preds = %7 - %12 = load i32, i32* %5, align 4 - %13 = load i32*, i32** %3, align 8 - %14 = load i32, i32* %5, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds i32, i32* %13, i64 %15 - %17 = load i32, i32* %16, align 4 - %18 = call i32 (i8*, ...) @printf(i8* 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 !6 - -22: ; preds = %7 - ret void -} - -declare i32 @printf(i8* noundef, ...) #3 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z11BellmanFordP5Graphi(%struct.Graph* noundef %0, i32 noundef %1) #0 { - %3 = alloca %struct.Graph*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - %18 = alloca i32, align 4 - %19 = alloca i32, align 4 - store %struct.Graph* %0, %struct.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %20 = load %struct.Graph*, %struct.Graph** %3, align 8 - %21 = getelementptr inbounds %struct.Graph, %struct.Graph* %20, i32 0, i32 0 - %22 = load i32, i32* %21, align 8 - store i32 %22, i32* %5, align 4 - %23 = load %struct.Graph*, %struct.Graph** %3, align 8 - %24 = getelementptr inbounds %struct.Graph, %struct.Graph* %23, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - store i32 %25, i32* %6, align 4 - %26 = load i32, i32* %5, align 4 - %27 = zext i32 %26 to i64 - %28 = call i8* @llvm.stacksave() - store i8* %28, i8** %7, align 8 - %29 = alloca i32, i64 %27, align 16 - store i64 %27, i64* %8, align 8 - store i32 0, i32* %9, align 4 - br label %30 - -30: ; preds = %38, %2 - %31 = load i32, i32* %9, align 4 - %32 = load i32, i32* %5, align 4 - %33 = icmp slt i32 %31, %32 - br i1 %33, label %34, label %41 - -34: ; preds = %30 - %35 = load i32, i32* %9, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i32, i32* %29, i64 %36 - store i32 2147483647, i32* %37, align 4 - br label %38 - -38: ; preds = %34 - %39 = load i32, i32* %9, align 4 - %40 = add nsw i32 %39, 1 - store i32 %40, i32* %9, align 4 - br label %30, !llvm.loop !8 - -41: ; preds = %30 - %42 = load i32, i32* %4, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %29, i64 %43 - store i32 0, i32* %44, align 4 - store i32 1, i32* %10, align 4 - br label %45 - -45: ; preds = %112, %41 - %46 = load i32, i32* %10, align 4 - %47 = load i32, i32* %5, align 4 - %48 = sub nsw i32 %47, 1 - %49 = icmp sle i32 %46, %48 - br i1 %49, label %50, label %115 - -50: ; preds = %45 - store i32 0, i32* %11, align 4 - br label %51 - -51: ; preds = %108, %50 - %52 = load i32, i32* %11, align 4 - %53 = load i32, i32* %6, align 4 - %54 = icmp slt i32 %52, %53 - br i1 %54, label %55, label %111 - -55: ; preds = %51 - %56 = load %struct.Graph*, %struct.Graph** %3, align 8 - %57 = getelementptr inbounds %struct.Graph, %struct.Graph* %56, i32 0, i32 2 - %58 = load %struct.Edge*, %struct.Edge** %57, align 8 - %59 = load i32, i32* %11, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds %struct.Edge, %struct.Edge* %58, i64 %60 - %62 = getelementptr inbounds %struct.Edge, %struct.Edge* %61, i32 0, i32 0 - %63 = load i32, i32* %62, align 4 - store i32 %63, i32* %12, align 4 - %64 = load %struct.Graph*, %struct.Graph** %3, align 8 - %65 = getelementptr inbounds %struct.Graph, %struct.Graph* %64, i32 0, i32 2 - %66 = load %struct.Edge*, %struct.Edge** %65, align 8 - %67 = load i32, i32* %11, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds %struct.Edge, %struct.Edge* %66, i64 %68 - %70 = getelementptr inbounds %struct.Edge, %struct.Edge* %69, i32 0, i32 1 - %71 = load i32, i32* %70, align 4 - store i32 %71, i32* %13, align 4 - %72 = load %struct.Graph*, %struct.Graph** %3, align 8 - %73 = getelementptr inbounds %struct.Graph, %struct.Graph* %72, i32 0, i32 2 - %74 = load %struct.Edge*, %struct.Edge** %73, align 8 - %75 = load i32, i32* %11, align 4 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds %struct.Edge, %struct.Edge* %74, i64 %76 - %78 = getelementptr inbounds %struct.Edge, %struct.Edge* %77, i32 0, i32 2 - %79 = load i32, i32* %78, align 4 - store i32 %79, i32* %14, align 4 - %80 = load i32, i32* %12, align 4 - %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds i32, i32* %29, i64 %81 - %83 = load i32, i32* %82, align 4 - %84 = icmp ne i32 %83, 2147483647 - br i1 %84, label %85, label %107 - -85: ; preds = %55 - %86 = load i32, i32* %12, align 4 - %87 = sext i32 %86 to i64 - %88 = getelementptr inbounds i32, i32* %29, i64 %87 - %89 = load i32, i32* %88, align 4 - %90 = load i32, i32* %14, align 4 - %91 = add nsw i32 %89, %90 - %92 = load i32, i32* %13, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %29, i64 %93 - %95 = load i32, i32* %94, align 4 - %96 = icmp slt i32 %91, %95 - br i1 %96, label %97, label %107 - -97: ; preds = %85 - %98 = load i32, i32* %12, align 4 - %99 = sext i32 %98 to i64 - %100 = getelementptr inbounds i32, i32* %29, i64 %99 - %101 = load i32, i32* %100, align 4 - %102 = load i32, i32* %14, align 4 - %103 = add nsw i32 %101, %102 - %104 = load i32, i32* %13, align 4 - %105 = sext i32 %104 to i64 - %106 = getelementptr inbounds i32, i32* %29, i64 %105 - store i32 %103, i32* %106, align 4 - br label %107 - -107: ; preds = %97, %85, %55 - br label %108 - -108: ; preds = %107 - %109 = load i32, i32* %11, align 4 - %110 = add nsw i32 %109, 1 - store i32 %110, i32* %11, align 4 - br label %51, !llvm.loop !9 - -111: ; preds = %51 - br label %112 - -112: ; preds = %111 - %113 = load i32, i32* %10, align 4 - %114 = add nsw i32 %113, 1 - store i32 %114, i32* %10, align 4 - br label %45, !llvm.loop !10 - -115: ; preds = %45 - store i32 0, i32* %15, align 4 - br label %116 - -116: ; preds = %165, %115 - %117 = load i32, i32* %15, align 4 - %118 = load i32, i32* %6, align 4 - %119 = icmp slt i32 %117, %118 - br i1 %119, label %120, label %168 - -120: ; preds = %116 - %121 = load %struct.Graph*, %struct.Graph** %3, align 8 - %122 = getelementptr inbounds %struct.Graph, %struct.Graph* %121, i32 0, i32 2 - %123 = load %struct.Edge*, %struct.Edge** %122, align 8 - %124 = load i32, i32* %15, align 4 - %125 = sext i32 %124 to i64 - %126 = getelementptr inbounds %struct.Edge, %struct.Edge* %123, i64 %125 - %127 = getelementptr inbounds %struct.Edge, %struct.Edge* %126, i32 0, i32 0 - %128 = load i32, i32* %127, align 4 - store i32 %128, i32* %16, align 4 - %129 = load %struct.Graph*, %struct.Graph** %3, align 8 - %130 = getelementptr inbounds %struct.Graph, %struct.Graph* %129, i32 0, i32 2 - %131 = load %struct.Edge*, %struct.Edge** %130, align 8 - %132 = load i32, i32* %15, align 4 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds %struct.Edge, %struct.Edge* %131, i64 %133 - %135 = getelementptr inbounds %struct.Edge, %struct.Edge* %134, i32 0, i32 1 - %136 = load i32, i32* %135, align 4 - store i32 %136, i32* %17, align 4 - %137 = load %struct.Graph*, %struct.Graph** %3, align 8 - %138 = getelementptr inbounds %struct.Graph, %struct.Graph* %137, i32 0, i32 2 - %139 = load %struct.Edge*, %struct.Edge** %138, align 8 - %140 = load i32, i32* %15, align 4 - %141 = sext i32 %140 to i64 - %142 = getelementptr inbounds %struct.Edge, %struct.Edge* %139, i64 %141 - %143 = getelementptr inbounds %struct.Edge, %struct.Edge* %142, i32 0, i32 2 - %144 = load i32, i32* %143, align 4 - store i32 %144, i32* %18, align 4 - %145 = load i32, i32* %16, align 4 - %146 = sext i32 %145 to i64 - %147 = getelementptr inbounds i32, i32* %29, i64 %146 - %148 = load i32, i32* %147, align 4 - %149 = icmp ne i32 %148, 2147483647 - br i1 %149, label %150, label %164 - -150: ; preds = %120 - %151 = load i32, i32* %16, align 4 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds i32, i32* %29, i64 %152 - %154 = load i32, i32* %153, align 4 - %155 = load i32, i32* %18, align 4 - %156 = add nsw i32 %154, %155 - %157 = load i32, i32* %17, align 4 - %158 = sext i32 %157 to i64 - %159 = getelementptr inbounds i32, i32* %29, i64 %158 - %160 = load i32, i32* %159, align 4 - %161 = icmp slt i32 %156, %160 - br i1 %161, label %162, label %164 - -162: ; preds = %150 - %163 = call i32 (i8*, ...) @printf(i8* 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 - -164: ; preds = %150, %120 - br label %165 - -165: ; preds = %164 - %166 = load i32, i32* %15, align 4 - %167 = add nsw i32 %166, 1 - store i32 %167, i32* %15, align 4 - br label %116, !llvm.loop !11 - -168: ; preds = %116 - %169 = load i32, i32* %5, align 4 - call void @_Z8printArrPii(i32* noundef %29, i32 noundef %169) - store i32 1, i32* %19, align 4 - br label %170 - -170: ; preds = %168, %162 - %171 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %171) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #4 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #4 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #5 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - %4 = alloca %struct.Graph*, align 8 - store i32 0, i32* %1, align 4 - store i32 5, i32* %2, align 4 - store i32 8, i32* %3, align 4 - %5 = load i32, i32* %2, align 4 - %6 = load i32, i32* %3, align 4 - %7 = call 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 - %10 = load %struct.Edge*, %struct.Edge** %9, align 8 - %11 = getelementptr inbounds %struct.Edge, %struct.Edge* %10, i64 0 - %12 = getelementptr inbounds %struct.Edge, %struct.Edge* %11, i32 0, i32 0 - store i32 0, i32* %12, align 4 - %13 = load %struct.Graph*, %struct.Graph** %4, align 8 - %14 = getelementptr inbounds %struct.Graph, %struct.Graph* %13, i32 0, i32 2 - %15 = load %struct.Edge*, %struct.Edge** %14, align 8 - %16 = getelementptr inbounds %struct.Edge, %struct.Edge* %15, i64 0 - %17 = getelementptr inbounds %struct.Edge, %struct.Edge* %16, i32 0, i32 1 - store i32 1, i32* %17, align 4 - %18 = load %struct.Graph*, %struct.Graph** %4, align 8 - %19 = getelementptr inbounds %struct.Graph, %struct.Graph* %18, i32 0, i32 2 - %20 = load %struct.Edge*, %struct.Edge** %19, align 8 - %21 = getelementptr inbounds %struct.Edge, %struct.Edge* %20, i64 0 - %22 = getelementptr inbounds %struct.Edge, %struct.Edge* %21, i32 0, i32 2 - store i32 -1, i32* %22, align 4 - %23 = load %struct.Graph*, %struct.Graph** %4, align 8 - %24 = getelementptr inbounds %struct.Graph, %struct.Graph* %23, i32 0, i32 2 - %25 = load %struct.Edge*, %struct.Edge** %24, align 8 - %26 = getelementptr inbounds %struct.Edge, %struct.Edge* %25, i64 1 - %27 = getelementptr inbounds %struct.Edge, %struct.Edge* %26, i32 0, i32 0 - store i32 0, i32* %27, align 4 - %28 = load %struct.Graph*, %struct.Graph** %4, align 8 - %29 = getelementptr inbounds %struct.Graph, %struct.Graph* %28, i32 0, i32 2 - %30 = load %struct.Edge*, %struct.Edge** %29, align 8 - %31 = getelementptr inbounds %struct.Edge, %struct.Edge* %30, i64 1 - %32 = getelementptr inbounds %struct.Edge, %struct.Edge* %31, i32 0, i32 1 - store i32 2, i32* %32, align 4 - %33 = load %struct.Graph*, %struct.Graph** %4, align 8 - %34 = getelementptr inbounds %struct.Graph, %struct.Graph* %33, i32 0, i32 2 - %35 = load %struct.Edge*, %struct.Edge** %34, align 8 - %36 = getelementptr inbounds %struct.Edge, %struct.Edge* %35, i64 1 - %37 = getelementptr inbounds %struct.Edge, %struct.Edge* %36, i32 0, i32 2 - store i32 4, i32* %37, align 4 - %38 = load %struct.Graph*, %struct.Graph** %4, align 8 - %39 = getelementptr inbounds %struct.Graph, %struct.Graph* %38, i32 0, i32 2 - %40 = load %struct.Edge*, %struct.Edge** %39, align 8 - %41 = getelementptr inbounds %struct.Edge, %struct.Edge* %40, i64 2 - %42 = getelementptr inbounds %struct.Edge, %struct.Edge* %41, i32 0, i32 0 - store i32 1, i32* %42, align 4 - %43 = load %struct.Graph*, %struct.Graph** %4, align 8 - %44 = getelementptr inbounds %struct.Graph, %struct.Graph* %43, i32 0, i32 2 - %45 = load %struct.Edge*, %struct.Edge** %44, align 8 - %46 = getelementptr inbounds %struct.Edge, %struct.Edge* %45, i64 2 - %47 = getelementptr inbounds %struct.Edge, %struct.Edge* %46, i32 0, i32 1 - store i32 2, i32* %47, align 4 - %48 = load %struct.Graph*, %struct.Graph** %4, align 8 - %49 = getelementptr inbounds %struct.Graph, %struct.Graph* %48, i32 0, i32 2 - %50 = load %struct.Edge*, %struct.Edge** %49, align 8 - %51 = getelementptr inbounds %struct.Edge, %struct.Edge* %50, i64 2 - %52 = getelementptr inbounds %struct.Edge, %struct.Edge* %51, i32 0, i32 2 - store i32 3, i32* %52, align 4 - %53 = load %struct.Graph*, %struct.Graph** %4, align 8 - %54 = getelementptr inbounds %struct.Graph, %struct.Graph* %53, i32 0, i32 2 - %55 = load %struct.Edge*, %struct.Edge** %54, align 8 - %56 = getelementptr inbounds %struct.Edge, %struct.Edge* %55, i64 3 - %57 = getelementptr inbounds %struct.Edge, %struct.Edge* %56, i32 0, i32 0 - store i32 1, i32* %57, align 4 - %58 = load %struct.Graph*, %struct.Graph** %4, align 8 - %59 = getelementptr inbounds %struct.Graph, %struct.Graph* %58, i32 0, i32 2 - %60 = load %struct.Edge*, %struct.Edge** %59, align 8 - %61 = getelementptr inbounds %struct.Edge, %struct.Edge* %60, i64 3 - %62 = getelementptr inbounds %struct.Edge, %struct.Edge* %61, i32 0, i32 1 - store i32 3, i32* %62, align 4 - %63 = load %struct.Graph*, %struct.Graph** %4, align 8 - %64 = getelementptr inbounds %struct.Graph, %struct.Graph* %63, i32 0, i32 2 - %65 = load %struct.Edge*, %struct.Edge** %64, align 8 - %66 = getelementptr inbounds %struct.Edge, %struct.Edge* %65, i64 3 - %67 = getelementptr inbounds %struct.Edge, %struct.Edge* %66, i32 0, i32 2 - store i32 2, i32* %67, align 4 - %68 = load %struct.Graph*, %struct.Graph** %4, align 8 - %69 = getelementptr inbounds %struct.Graph, %struct.Graph* %68, i32 0, i32 2 - %70 = load %struct.Edge*, %struct.Edge** %69, align 8 - %71 = getelementptr inbounds %struct.Edge, %struct.Edge* %70, i64 4 - %72 = getelementptr inbounds %struct.Edge, %struct.Edge* %71, i32 0, i32 0 - store i32 1, i32* %72, align 4 - %73 = load %struct.Graph*, %struct.Graph** %4, align 8 - %74 = getelementptr inbounds %struct.Graph, %struct.Graph* %73, i32 0, i32 2 - %75 = load %struct.Edge*, %struct.Edge** %74, align 8 - %76 = getelementptr inbounds %struct.Edge, %struct.Edge* %75, i64 4 - %77 = getelementptr inbounds %struct.Edge, %struct.Edge* %76, i32 0, i32 1 - store i32 4, i32* %77, align 4 - %78 = load %struct.Graph*, %struct.Graph** %4, align 8 - %79 = getelementptr inbounds %struct.Graph, %struct.Graph* %78, i32 0, i32 2 - %80 = load %struct.Edge*, %struct.Edge** %79, align 8 - %81 = getelementptr inbounds %struct.Edge, %struct.Edge* %80, i64 4 - %82 = getelementptr inbounds %struct.Edge, %struct.Edge* %81, i32 0, i32 2 - store i32 2, i32* %82, align 4 - %83 = load %struct.Graph*, %struct.Graph** %4, align 8 - %84 = getelementptr inbounds %struct.Graph, %struct.Graph* %83, i32 0, i32 2 - %85 = load %struct.Edge*, %struct.Edge** %84, align 8 - %86 = getelementptr inbounds %struct.Edge, %struct.Edge* %85, i64 5 - %87 = getelementptr inbounds %struct.Edge, %struct.Edge* %86, i32 0, i32 0 - store i32 3, i32* %87, align 4 - %88 = load %struct.Graph*, %struct.Graph** %4, align 8 - %89 = getelementptr inbounds %struct.Graph, %struct.Graph* %88, i32 0, i32 2 - %90 = load %struct.Edge*, %struct.Edge** %89, align 8 - %91 = getelementptr inbounds %struct.Edge, %struct.Edge* %90, i64 5 - %92 = getelementptr inbounds %struct.Edge, %struct.Edge* %91, i32 0, i32 1 - store i32 2, i32* %92, align 4 - %93 = load %struct.Graph*, %struct.Graph** %4, align 8 - %94 = getelementptr inbounds %struct.Graph, %struct.Graph* %93, i32 0, i32 2 - %95 = load %struct.Edge*, %struct.Edge** %94, align 8 - %96 = getelementptr inbounds %struct.Edge, %struct.Edge* %95, i64 5 - %97 = getelementptr inbounds %struct.Edge, %struct.Edge* %96, i32 0, i32 2 - store i32 5, i32* %97, align 4 - %98 = load %struct.Graph*, %struct.Graph** %4, align 8 - %99 = getelementptr inbounds %struct.Graph, %struct.Graph* %98, i32 0, i32 2 - %100 = load %struct.Edge*, %struct.Edge** %99, align 8 - %101 = getelementptr inbounds %struct.Edge, %struct.Edge* %100, i64 6 - %102 = getelementptr inbounds %struct.Edge, %struct.Edge* %101, i32 0, i32 0 - store i32 3, i32* %102, align 4 - %103 = load %struct.Graph*, %struct.Graph** %4, align 8 - %104 = getelementptr inbounds %struct.Graph, %struct.Graph* %103, i32 0, i32 2 - %105 = load %struct.Edge*, %struct.Edge** %104, align 8 - %106 = getelementptr inbounds %struct.Edge, %struct.Edge* %105, i64 6 - %107 = getelementptr inbounds %struct.Edge, %struct.Edge* %106, i32 0, i32 1 - store i32 1, i32* %107, align 4 - %108 = load %struct.Graph*, %struct.Graph** %4, align 8 - %109 = getelementptr inbounds %struct.Graph, %struct.Graph* %108, i32 0, i32 2 - %110 = load %struct.Edge*, %struct.Edge** %109, align 8 - %111 = getelementptr inbounds %struct.Edge, %struct.Edge* %110, i64 6 - %112 = getelementptr inbounds %struct.Edge, %struct.Edge* %111, i32 0, i32 2 - store i32 1, i32* %112, align 4 - %113 = load %struct.Graph*, %struct.Graph** %4, align 8 - %114 = getelementptr inbounds %struct.Graph, %struct.Graph* %113, i32 0, i32 2 - %115 = load %struct.Edge*, %struct.Edge** %114, align 8 - %116 = getelementptr inbounds %struct.Edge, %struct.Edge* %115, i64 7 - %117 = getelementptr inbounds %struct.Edge, %struct.Edge* %116, i32 0, i32 0 - store i32 4, i32* %117, align 4 - %118 = load %struct.Graph*, %struct.Graph** %4, align 8 - %119 = getelementptr inbounds %struct.Graph, %struct.Graph* %118, i32 0, i32 2 - %120 = load %struct.Edge*, %struct.Edge** %119, align 8 - %121 = getelementptr inbounds %struct.Edge, %struct.Edge* %120, i64 7 - %122 = getelementptr inbounds %struct.Edge, %struct.Edge* %121, i32 0, i32 1 - store i32 3, i32* %122, align 4 - %123 = load %struct.Graph*, %struct.Graph** %4, align 8 - %124 = getelementptr inbounds %struct.Graph, %struct.Graph* %123, i32 0, i32 2 - %125 = load %struct.Edge*, %struct.Edge** %124, align 8 - %126 = getelementptr inbounds %struct.Edge, %struct.Edge* %125, i64 7 - %127 = getelementptr inbounds %struct.Edge, %struct.Edge* %126, i32 0, i32 2 - store i32 -3, i32* %127, align 4 - %128 = load %struct.Graph*, %struct.Graph** %4, align 8 - call void @_Z11BellmanFordP5Graphi(%struct.Graph* noundef %128, i32 noundef 0) - ret i32 0 -} - -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 = { 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 #2 = { nofree nosync nounwind readnone speculatable 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 = { nofree nosync nounwind willreturn } -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 = { builtin allocsize(0) } - -!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"} -!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/bfs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/bfs.ll deleted file mode 100644 index af1cd48a1..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/bfs.ll +++ /dev/null @@ -1,1179 +0,0 @@ -; ModuleID = 'PE-benchmarks/bfs.cpp' -source_filename = "PE-benchmarks/bfs.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNKSt7__cxx114listIiSaIiEE5emptyEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5frontEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9pop_frontEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE8_M_eraseESt14_List_iteratorIiE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_sizeEm = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_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 - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -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 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #13 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %26) #14 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; 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 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef nonnull align 4 dereferenceable(4) %6) - ret void -} - -; 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"* noundef nonnull align 8 dereferenceable(24) %6) #14 - %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"* 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: mustprogress noinline uwtable -define dso_local void @_ZN5Graph3BFSEi(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) #4 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca %"class.std::__cxx11::list", align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - %12 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %13 = load %class.Graph*, %class.Graph** %3, align 8 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 0 - %15 = load i32, i32* %14, align 8 - %16 = sext i32 %15 to i64 - %17 = call noalias noundef nonnull i8* @_Znam(i64 noundef %16) #13 - store i8* %17, i8** %5, align 8 - store i32 0, i32* %6, align 4 - br label %18 - -18: ; preds = %28, %2 - %19 = load i32, i32* %6, align 4 - %20 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 0 - %21 = load i32, i32* %20, align 8 - %22 = icmp slt i32 %19, %21 - br i1 %22, label %23, label %31 - -23: ; preds = %18 - %24 = load i8*, i8** %5, align 8 - %25 = load i32, i32* %6, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i8, i8* %24, i64 %26 - store i8 0, i8* %27, align 1 - br label %28 - -28: ; preds = %23 - %29 = load i32, i32* %6, align 4 - %30 = add nsw i32 %29, 1 - store i32 %30, i32* %6, align 4 - br label %18, !llvm.loop !6 - -31: ; preds = %18 - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %7) #14 - %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"* 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"* noundef nonnull align 8 dereferenceable(8) %10) #14 - br label %37 - -37: ; preds = %89, %36 - %38 = call noundef zeroext i1 @_ZNKSt7__cxx114listIiSaIiEE5emptyEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %7) #14 - %39 = xor i1 %38, true - br i1 %39, label %40, label %90 - -40: ; preds = %37 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt7__cxx114listIiSaIiEE5frontEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %7) #14 - %42 = load i32, i32* %41, align 4 - store i32 %42, i32* %4, align 4 - %43 = load i32, i32* %4, align 4 - %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 noundef 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"* noundef nonnull align 8 dereferenceable(24) %7) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %52) #14 - %54 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %11, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %53, %"struct.std::__detail::_List_node_base"** %54, align 8 - %55 = bitcast %"struct.std::_List_iterator"* %10 to i8* - %56 = bitcast %"struct.std::_List_iterator"* %11 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %55, i8* align 8 %56, i64 8, i1 false) - br label %57 - -57: ; preds = %87, %47 - %58 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %59 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %58, align 8 - %60 = load i32, i32* %4, align 4 - %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %59, i64 %61 - %63 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %62) #14 - %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 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) #14 - br i1 %65, label %66, label %89 - -66: ; preds = %57 - %67 = load i8*, i8** %5, align 8 - %68 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #14 - %69 = load i32, i32* %68, align 4 - %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds i8, i8* %67, i64 %70 - %72 = load i8, i8* %71, align 1 - %73 = trunc i8 %72 to i1 - br i1 %73, label %86, label %74 - -74: ; preds = %66 - %75 = load i8*, i8** %5, align 8 - %76 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #14 - %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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #14 - 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 - br label %86 - -82: ; preds = %74, %45, %40, %31 - %83 = landingpad { i8*, i32 } - cleanup - %84 = extractvalue { i8*, i32 } %83, 0 - store i8* %84, i8** %8, align 8 - %85 = extractvalue { i8*, i32 } %83, 1 - store i32 %85, i32* %9, align 4 - call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %7) #14 - br label %91 - -86: ; preds = %81, %66 - br label %87 - -87: ; preds = %86 - %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) #14 - br label %57, !llvm.loop !8 - -89: ; preds = %57 - br label %37, !llvm.loop !9 - -90: ; preds = %37 - call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %7) #14 - ret void - -91: ; preds = %82 - %92 = load i8*, i8** %8, align 8 - %93 = load i32, i32* %9, align 4 - %94 = insertvalue { i8*, i32 } undef, i8* %92, 0 - %95 = insertvalue { i8*, i32 } %94, i32 %93, 1 - resume { i8*, i32 } %95 -} - -declare i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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) #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"* - %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %4, i32 0, i32 0 - %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %6 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - %9 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %8, align 8 - %10 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - %11 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %10, i32 0, i32 0 - %12 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %11, i32 0, i32 0 - %13 = bitcast %"struct.std::__detail::_List_node_header"* %12 to %"struct.std::__detail::_List_node_base"* - %14 = icmp eq %"struct.std::__detail::_List_node_base"* %9, %13 - ret i1 %14 -} - -; Function Attrs: 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) #5 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - %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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %3) #14 - ret i32* %7 -} - -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) #6 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #6 - -; 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) #5 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %4, %"struct.std::__detail::_List_node_base"* %8) #14 - ret void -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #14 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; 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) #5 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #14 - %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: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %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 noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) - ret i32* %7 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #14 - ret void -} - -; 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) #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"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; 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) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %7 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - %8 = alloca %"struct.std::_List_node"*, align 8 - %9 = alloca i32*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %6, align 8 - %10 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %6, align 8 - %11 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %10, i32 0, i32 0 - %12 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %11, i32 0, i32 0 - %13 = bitcast %"struct.std::__detail::_List_node_header"* %12 to %"struct.std::__detail::_List_node_base"* - %14 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %13, i32 0, i32 0 - %15 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %14, align 8 - store %"struct.std::__detail::_List_node_base"* %15, %"struct.std::__detail::_List_node_base"** %7, align 8 - br label %16 - -16: ; preds = %31, %1 - %17 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %7, align 8 - %18 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %10, i32 0, i32 0 - %19 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::__detail::_List_node_header"* %19 to %"struct.std::__detail::_List_node_base"* - %21 = icmp ne %"struct.std::__detail::_List_node_base"* %17, %20 - br i1 %21, label %22, label %40 - -22: ; preds = %16 - %23 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %7, align 8 - %24 = bitcast %"struct.std::__detail::_List_node_base"* %23 to %"struct.std::_List_node"* - store %"struct.std::_List_node"* %24, %"struct.std::_List_node"** %8, align 8 - %25 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - %26 = bitcast %"struct.std::_List_node"* %25 to %"struct.std::__detail::_List_node_base"* - %27 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %26, i32 0, i32 0 - %28 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %27, align 8 - store %"struct.std::__detail::_List_node_base"* %28, %"struct.std::__detail::_List_node_base"** %7, align 8 - %29 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - %30 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %29) - to label %31 unwind label %41 - -31: ; preds = %22 - store i32* %30, i32** %9, align 8 - %32 = 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) %10) #14 - %33 = load i32*, i32** %9, align 8 - store %"class.std::allocator"* %32, %"class.std::allocator"** %4, align 8 - store i32* %33, i32** %5, align 8 - %34 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %35 = bitcast %"class.std::allocator"* %34 to %"class.std::__new_allocator"* - %36 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator"* %35, %"class.std::__new_allocator"** %2, align 8 - store i32* %36, i32** %3, align 8 - %37 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %38 = load i32*, i32** %3, align 8 - %39 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %10, %"struct.std::_List_node"* noundef %39) #14 - br label %16, !llvm.loop !10 - -40: ; preds = %16 - ret void - -41: ; preds = %22 - %42 = landingpad { i8*, i32 } - catch i8* null - %43 = extractvalue { i8*, i32 } %42, 0 - call void @__clang_call_terminate(i8* %43) #15 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = 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"** %3, align 8 - %4 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %3, align 8 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - store %"class.std::allocator"* %5, %"class.std::allocator"** %2, align 8 - %6 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %7 = bitcast %"class.std::allocator"* %6 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #14 - ret void -} - -; 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) #5 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #14 - ret i32* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #9 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #14 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; 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) #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 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; 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) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %6, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %7, align 8 - %8 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %6, align 8 - %9 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %9 to %"class.std::allocator"* - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - store %"class.std::allocator"* %10, %"class.std::allocator"** %3, align 8 - store %"struct.std::_List_node"* %11, %"struct.std::_List_node"** %4, align 8 - store i64 1, i64* %5, align 8 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %13 = bitcast %"class.std::allocator"* %12 to %"class.std::__new_allocator"* - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %15 = load i64, i64* %5, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* noundef %14, i64 noundef %15) - br label %16 - -16: ; preds = %2 - ret void - -17: ; No predecessors! - %18 = landingpad { i8*, i32 } - catch i8* null - %19 = extractvalue { i8*, i32 } %18, 0 - call void @__clang_call_terminate(i8* %19) #15 - unreachable -} - -; 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) #5 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #14 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #16 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #10 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -; 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 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #14 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %14 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %15 = bitcast %"class.std::__cxx11::list"* %14 to %"class.std::__cxx11::_List_base"* - %16 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %15) - store %"struct.std::_List_node"* %16, %"struct.std::_List_node"** %11, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %14 to %"class.std::__cxx11::_List_base"* - %18 = 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) %17) #14 - store %"class.std::allocator"* %18, %"class.std::allocator"** %12, align 8 - %19 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %20 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %19, %"struct.std::_List_node"* noundef %20) #14 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %23 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %22) - %24 = load i32*, i32** %10, align 8 - %25 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %24) #14 - store %"class.std::allocator"* %21, %"class.std::allocator"** %6, align 8 - store i32* %23, i32** %7, align 8 - store i32* %25, i32** %8, align 8 - %26 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %27 = bitcast %"class.std::allocator"* %26 to %"class.std::__new_allocator"* - %28 = load i32*, i32** %7, align 8 - %29 = load i32*, i32** %8, align 8 - %30 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %29) #14 - store %"class.std::__new_allocator"* %27, %"class.std::__new_allocator"** %3, align 8 - store i32* %28, i32** %4, align 8 - store i32* %30, i32** %5, align 8 - %31 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %32 = load i32*, i32** %4, align 8 - %33 = bitcast i32* %32 to i8* - %34 = load i32*, i32** %5, align 8 - %35 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %34) #14 - %36 = load i32, i32* %35, align 4 - store i32 %36, i32* %32, align 4 - %37 = 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) %13, i8* null) #14 - %38 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #14 - ret %"struct.std::_List_node"* %38 -} - -; 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) #5 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare 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) #11 - -; 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) #5 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #14 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #15 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #17 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #13 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -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 noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; 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) #5 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: 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) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_iterator", align 8 - %8 = alloca %"class.std::__cxx11::list"*, align 8 - %9 = alloca %"struct.std::_List_node"*, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %10, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %8, align 8 - %11 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %12 = bitcast %"class.std::__cxx11::list"* %11 to %"class.std::__cxx11::_List_base"* - invoke void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %12, i64 noundef 1) - to label %13 unwind label %30 - -13: ; preds = %2 - %14 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %7, i32 0, i32 0 - %15 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %14, align 8 - call void @_ZNSt8__detail15_List_node_base9_M_unhookEv(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %15) #14 - %16 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %7, i32 0, i32 0 - %17 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %16, align 8 - %18 = bitcast %"struct.std::__detail::_List_node_base"* %17 to %"struct.std::_List_node"* - store %"struct.std::_List_node"* %18, %"struct.std::_List_node"** %9, align 8 - %19 = bitcast %"class.std::__cxx11::list"* %11 to %"class.std::__cxx11::_List_base"* - %20 = 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) %19) #14 - %21 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %9, align 8 - %22 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %21) - store %"class.std::allocator"* %20, %"class.std::allocator"** %5, align 8 - store i32* %22, i32** %6, align 8 - %23 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %24 = bitcast %"class.std::allocator"* %23 to %"class.std::__new_allocator"* - %25 = load i32*, i32** %6, align 8 - store %"class.std::__new_allocator"* %24, %"class.std::__new_allocator"** %3, align 8 - store i32* %25, i32** %4, align 8 - %26 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %27 = load i32*, i32** %4, align 8 - %28 = bitcast %"class.std::__cxx11::list"* %11 to %"class.std::__cxx11::_List_base"* - %29 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %9, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %28, %"struct.std::_List_node"* noundef %29) #14 - ret void - -30: ; preds = %2 - %31 = landingpad { i8*, i32 } - catch i8* null - %32 = extractvalue { i8*, i32 } %31, 0 - call void @__clang_call_terminate(i8* %32) #15 - unreachable -} - -; 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) #5 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = sub i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: nounwind -declare void @_ZNSt8__detail15_List_node_base9_M_unhookEv(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16)) #11 - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -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 = { nofree nosync nounwind readnone speculatable willreturn } -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 = { 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 #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 = { "frame-pointer"="all" "no-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 = { 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 "frame-pointer"="all" "no-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 = { 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 = { builtin allocsize(0) } -attributes #14 = { nounwind } -attributes #15 = { noreturn nounwind } -attributes #16 = { builtin nounwind } -attributes #17 = { noreturn } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/biconnectivity.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/biconnectivity.ll deleted file mode 100644 index 300f9ba32..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/biconnectivity.ll +++ /dev/null @@ -1,1216 +0,0 @@ -; ModuleID = 'PE-benchmarks/biconnectivity.cpp' -source_filename = "PE-benchmarks/biconnectivity.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_ZZN5Graph8isBCUtilEiPbPiS1_S1_E4time = internal global i32 0, align 4 -@_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 - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -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 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #13 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %26) #14 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; 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 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* 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"* noundef nonnull align 8 dereferenceable(24) %17, i32* noundef nonnull align 4 dereferenceable(4) %5) - ret void -} - -; 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"* noundef nonnull align 8 dereferenceable(24) %6) #14 - %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"* 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: 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) #4 align 2 { - %7 = alloca i1, align 1 - %8 = alloca %class.Graph*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i8*, align 8 - %11 = alloca i32*, align 8 - %12 = alloca i32*, align 8 - %13 = alloca i32*, align 8 - %14 = alloca i32, align 4 - %15 = alloca %"struct.std::_List_iterator", align 8 - %16 = alloca %"struct.std::_List_iterator", align 8 - %17 = alloca %"struct.std::_List_iterator", align 8 - %18 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %8, align 8 - store i32 %1, i32* %9, align 4 - store i8* %2, i8** %10, align 8 - store i32* %3, i32** %11, align 8 - store i32* %4, i32** %12, align 8 - store i32* %5, i32** %13, align 8 - %19 = load %class.Graph*, %class.Graph** %8, align 8 - store i32 0, i32* %14, align 4 - %20 = load i8*, i8** %10, align 8 - %21 = load i32, i32* %9, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds i8, i8* %20, i64 %22 - store i8 1, i8* %23, align 1 - %24 = load i32, i32* @_ZZN5Graph8isBCUtilEiPbPiS1_S1_E4time, align 4 - %25 = add nsw i32 %24, 1 - store i32 %25, i32* @_ZZN5Graph8isBCUtilEiPbPiS1_S1_E4time, align 4 - %26 = load i32*, i32** %12, align 8 - %27 = load i32, i32* %9, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i32, i32* %26, i64 %28 - store i32 %25, i32* %29, align 4 - %30 = load i32*, i32** %11, align 8 - %31 = load i32, i32* %9, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds i32, i32* %30, i64 %32 - store i32 %25, i32* %33, align 4 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %38) #14 - %40 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %16, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %39, %"struct.std::__detail::_List_node_base"** %40, align 8 - %41 = bitcast %"struct.std::_List_iterator"* %15 to i8* - %42 = bitcast %"struct.std::_List_iterator"* %16 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %41, i8* align 8 %42, i64 8, i1 false) - br label %43 - -43: ; preds = %147, %6 - %44 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 1 - %45 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %44, align 8 - %46 = load i32, i32* %9, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %45, i64 %47 - %49 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %48) #14 - %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 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) #14 - br i1 %51, label %52, label %149 - -52: ; preds = %43 - %53 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #14 - %54 = load i32, i32* %53, align 4 - store i32 %54, i32* %18, align 4 - %55 = load i8*, i8** %10, align 8 - %56 = load i32, i32* %18, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i8, i8* %55, i64 %57 - %59 = load i8, i8* %58, align 1 - %60 = trunc i8 %59 to i1 - br i1 %60, label %122, label %61 - -61: ; preds = %52 - %62 = load i32, i32* %14, align 4 - %63 = add nsw i32 %62, 1 - store i32 %63, i32* %14, align 4 - %64 = load i32, i32* %9, align 4 - %65 = load i32*, i32** %13, align 8 - %66 = load i32, i32* %18, align 4 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds i32, i32* %65, i64 %67 - store i32 %64, i32* %68, align 4 - %69 = load i32, i32* %18, align 4 - %70 = load i8*, i8** %10, align 8 - %71 = load i32*, i32** %11, align 8 - %72 = load i32*, i32** %12, align 8 - %73 = load i32*, i32** %13, align 8 - %74 = call 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 - store i1 true, i1* %7, align 1 - br label %150 - -76: ; preds = %61 - %77 = load i32*, i32** %12, align 8 - %78 = load i32, i32* %9, align 4 - %79 = sext i32 %78 to i64 - %80 = getelementptr inbounds i32, i32* %77, i64 %79 - %81 = load i32*, i32** %12, align 8 - %82 = load i32, i32* %18, align 4 - %83 = sext i32 %82 to i64 - %84 = getelementptr inbounds i32, i32* %81, i64 %83 - %85 = call 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 - %89 = sext i32 %88 to i64 - %90 = getelementptr inbounds i32, i32* %87, i64 %89 - store i32 %86, i32* %90, align 4 - %91 = load i32*, i32** %13, align 8 - %92 = load i32, i32* %9, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %91, i64 %93 - %95 = load i32, i32* %94, align 4 - %96 = icmp eq i32 %95, -1 - br i1 %96, label %97, label %101 - -97: ; preds = %76 - %98 = load i32, i32* %14, align 4 - %99 = icmp sgt i32 %98, 1 - br i1 %99, label %100, label %101 - -100: ; preds = %97 - store i1 true, i1* %7, align 1 - br label %150 - -101: ; preds = %97, %76 - %102 = load i32*, i32** %13, align 8 - %103 = load i32, i32* %9, align 4 - %104 = sext i32 %103 to i64 - %105 = getelementptr inbounds i32, i32* %102, i64 %104 - %106 = load i32, i32* %105, align 4 - %107 = icmp ne i32 %106, -1 - br i1 %107, label %108, label %121 - -108: ; preds = %101 - %109 = load i32*, i32** %12, align 8 - %110 = load i32, i32* %18, align 4 - %111 = sext i32 %110 to i64 - %112 = getelementptr inbounds i32, i32* %109, i64 %111 - %113 = load i32, i32* %112, align 4 - %114 = load i32*, i32** %11, align 8 - %115 = load i32, i32* %9, align 4 - %116 = sext i32 %115 to i64 - %117 = getelementptr inbounds i32, i32* %114, i64 %116 - %118 = load i32, i32* %117, align 4 - %119 = icmp sge i32 %113, %118 - br i1 %119, label %120, label %121 - -120: ; preds = %108 - store i1 true, i1* %7, align 1 - br label %150 - -121: ; preds = %108, %101 - br label %146 - -122: ; preds = %52 - %123 = load i32, i32* %18, align 4 - %124 = load i32*, i32** %13, align 8 - %125 = load i32, i32* %9, align 4 - %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds i32, i32* %124, i64 %126 - %128 = load i32, i32* %127, align 4 - %129 = icmp ne i32 %123, %128 - br i1 %129, label %130, label %145 - -130: ; preds = %122 - %131 = load i32*, i32** %12, align 8 - %132 = load i32, i32* %9, align 4 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds i32, i32* %131, i64 %133 - %135 = load i32*, i32** %11, align 8 - %136 = load i32, i32* %18, align 4 - %137 = sext i32 %136 to i64 - %138 = getelementptr inbounds i32, i32* %135, i64 %137 - %139 = call 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 - %143 = sext i32 %142 to i64 - %144 = getelementptr inbounds i32, i32* %141, i64 %143 - store i32 %140, i32* %144, align 4 - br label %145 - -145: ; preds = %130, %122 - br label %146 - -146: ; preds = %145, %121 - br label %147 - -147: ; preds = %146 - %148 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #14 - br label %43, !llvm.loop !6 - -149: ; preds = %43 - store i1 false, i1* %7, align 1 - br label %150 - -150: ; preds = %149, %120, %100, %75 - %151 = load i1, i1* %7, align 1 - ret i1 %151 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #14 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -; 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) #5 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #14 - %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: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %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 noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) - ret i32* %7 -} - -; 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 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_ZN5Graph4isBCEv(%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 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %10 = load %class.Graph*, %class.Graph** %3, align 8 - %11 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - %12 = load i32, i32* %11, align 8 - %13 = sext i32 %12 to i64 - %14 = call noalias noundef nonnull i8* @_Znam(i64 noundef %13) #13 - store i8* %14, i8** %4, align 8 - %15 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - %16 = load i32, i32* %15, align 8 - %17 = sext i32 %16 to i64 - %18 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %17, i64 4) - %19 = extractvalue { i64, i1 } %18, 1 - %20 = extractvalue { i64, i1 } %18, 0 - %21 = select i1 %19, i64 -1, i64 %20 - %22 = call noalias noundef nonnull i8* @_Znam(i64 noundef %21) #13 - %23 = bitcast i8* %22 to i32* - store i32* %23, i32** %5, align 8 - %24 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - %25 = load i32, i32* %24, align 8 - %26 = sext i32 %25 to i64 - %27 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %26, i64 4) - %28 = extractvalue { i64, i1 } %27, 1 - %29 = extractvalue { i64, i1 } %27, 0 - %30 = select i1 %28, i64 -1, i64 %29 - %31 = call noalias noundef nonnull i8* @_Znam(i64 noundef %30) #13 - %32 = bitcast i8* %31 to i32* - store i32* %32, i32** %6, align 8 - %33 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - %34 = load i32, i32* %33, align 8 - %35 = sext i32 %34 to i64 - %36 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %35, i64 4) - %37 = extractvalue { i64, i1 } %36, 1 - %38 = extractvalue { i64, i1 } %36, 0 - %39 = select i1 %37, i64 -1, i64 %38 - %40 = call noalias noundef nonnull i8* @_Znam(i64 noundef %39) #13 - %41 = bitcast i8* %40 to i32* - store i32* %41, i32** %7, align 8 - store i32 0, i32* %8, align 4 - br label %42 - -42: ; preds = %56, %1 - %43 = load i32, i32* %8, align 4 - %44 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - %45 = load i32, i32* %44, align 8 - %46 = icmp slt i32 %43, %45 - br i1 %46, label %47, label %59 - -47: ; preds = %42 - %48 = load i32*, i32** %7, align 8 - %49 = load i32, i32* %8, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %48, i64 %50 - store i32 -1, i32* %51, align 4 - %52 = load i8*, i8** %4, align 8 - %53 = load i32, i32* %8, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i8, i8* %52, i64 %54 - store i8 0, i8* %55, align 1 - br label %56 - -56: ; preds = %47 - %57 = load i32, i32* %8, align 4 - %58 = add nsw i32 %57, 1 - store i32 %58, i32* %8, align 4 - br label %42, !llvm.loop !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 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 - -67: ; preds = %59 - store i1 false, i1* %2, align 1 - br label %89 - -68: ; preds = %59 - store i32 0, i32* %9, align 4 - br label %69 - -69: ; preds = %85, %68 - %70 = load i32, i32* %9, align 4 - %71 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - %72 = load i32, i32* %71, align 8 - %73 = icmp slt i32 %70, %72 - br i1 %73, label %74, label %88 - -74: ; preds = %69 - %75 = load i8*, i8** %4, align 8 - %76 = load i32, i32* %9, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds i8, i8* %75, i64 %77 - %79 = load i8, i8* %78, align 1 - %80 = trunc i8 %79 to i1 - %81 = zext i1 %80 to i32 - %82 = icmp eq i32 %81, 0 - br i1 %82, label %83, label %84 - -83: ; preds = %74 - store i1 false, i1* %2, align 1 - br label %89 - -84: ; preds = %74 - br label %85 - -85: ; preds = %84 - %86 = load i32, i32* %9, align 4 - %87 = add nsw i32 %86, 1 - store i32 %87, i32* %9, align 4 - br label %69, !llvm.loop !9 - -88: ; preds = %69 - store i1 true, i1* %2, align 1 - br label %89 - -89: ; preds = %88, %83, %67 - %90 = load i1, i1* %2, align 1 - ret i1 %90 -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - %3 = alloca %class.Graph, align 8 - %4 = alloca %class.Graph, align 8 - %5 = alloca %class.Graph, align 8 - %6 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC1Ei(%class.Graph* 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 noundef 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 noundef 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* 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 noundef 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 noundef 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* 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 noundef 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 noundef 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* 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 noundef 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 noundef 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* 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 noundef 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 noundef 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 - %41 = phi %"class.std::basic_ostream"* [ %37, %36 ], [ %39, %38 ] - 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) #8 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #14 - ret void -} - -; 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) #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"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: 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 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #14 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %16 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %18 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17) - store %"struct.std::_List_node"* %18, %"struct.std::_List_node"** %11, align 8 - %19 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %20 = 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) %19) #14 - store %"class.std::allocator"* %20, %"class.std::allocator"** %12, align 8 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %21, %"struct.std::_List_node"* noundef %22) #14 - %23 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %25 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %24) - to label %26 unwind label %42 - -26: ; preds = %2 - %27 = load i32*, i32** %10, align 8 - %28 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %27) #14 - store %"class.std::allocator"* %23, %"class.std::allocator"** %6, align 8 - store i32* %25, i32** %7, align 8 - store i32* %28, i32** %8, align 8 - %29 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %30 = bitcast %"class.std::allocator"* %29 to %"class.std::__new_allocator"* - %31 = load i32*, i32** %7, align 8 - %32 = load i32*, i32** %8, align 8 - %33 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %32) #14 - store %"class.std::__new_allocator"* %30, %"class.std::__new_allocator"** %3, align 8 - store i32* %31, i32** %4, align 8 - store i32* %33, i32** %5, align 8 - %34 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %35 = load i32*, i32** %4, align 8 - %36 = bitcast i32* %35 to i8* - %37 = load i32*, i32** %5, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %37) #14 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %35, align 4 - %40 = 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) %13, i8* null) #14 - %41 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #14 - ret %"struct.std::_List_node"* %41 - -42: ; preds = %2 - %43 = landingpad { i8*, i32 } - cleanup - %44 = extractvalue { i8*, i32 } %43, 0 - store i8* %44, i8** %14, align 8 - %45 = extractvalue { i8*, i32 } %43, 1 - store i32 %45, i32* %15, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #14 - br label %46 - -46: ; preds = %42 - %47 = load i8*, i8** %14, align 8 - %48 = load i32, i32* %15, align 4 - %49 = insertvalue { i8*, i32 } undef, i8* %47, 0 - %50 = insertvalue { i8*, i32 } %49, i32 %48, 1 - resume { i8*, i32 } %50 -} - -; 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) #5 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare 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) #9 - -; 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) #5 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; 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) #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 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* 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 #3 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #14 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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) #5 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #14 - ret i32* %5 -} - -declare i32 @__gxx_personality_v0(...) - -; 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) #5 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #15 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #16 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #13 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -declare void @_ZSt28__throw_bad_array_new_lengthv() #10 - -; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #10 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; 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) #5 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: 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) #5 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #14 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #14 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #17 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #12 - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -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 = { nofree nosync nounwind readnone speculatable willreturn } -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 = { 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 #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 = { argmemonly nofree 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 = { "frame-pointer"="all" "no-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 "frame-pointer"="all" "no-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 = { 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 #11 = { noinline noreturn nounwind } -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 = { builtin allocsize(0) } -attributes #14 = { nounwind } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { builtin nounwind } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/binary-insertion-sort.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/binary-insertion-sort.ll deleted file mode 100644 index ec58a2fc3..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/binary-insertion-sort.ll +++ /dev/null @@ -1,250 +0,0 @@ -; ModuleID = 'PE-benchmarks/binary-insertion-sort.cpp' -source_filename = "PE-benchmarks/binary-insertion-sort.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const.main.a = private unnamed_addr constant [11 x i32] [i32 37, i32 23, i32 0, i32 17, i32 12, i32 72, i32 31, i32 46, i32 100, i32 88, i32 54], align 16 -@.str = private unnamed_addr constant [16 x i8] c"Sorted array: \0A\00", align 1 -@.str.1 = private unnamed_addr constant [4 x i8] c"%d \00", align 1 - -; Function Attrs: 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 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32* %0, i32** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - %11 = load i32, i32* %9, align 4 - %12 = load i32, i32* %8, align 4 - %13 = icmp sle i32 %11, %12 - br i1 %13, label %14, label %29 - -14: ; preds = %4 - %15 = load i32, i32* %7, align 4 - %16 = load i32*, i32** %6, align 8 - %17 = load i32, i32* %8, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds i32, i32* %16, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = icmp sgt i32 %15, %20 - br i1 %21, label %22, label %25 - -22: ; preds = %14 - %23 = load i32, i32* %8, align 4 - %24 = add nsw i32 %23, 1 - br label %27 - -25: ; preds = %14 - %26 = load i32, i32* %8, align 4 - br label %27 - -27: ; preds = %25, %22 - %28 = phi i32 [ %24, %22 ], [ %26, %25 ] - store i32 %28, i32* %5, align 4 - br label %66 - -29: ; preds = %4 - %30 = load i32, i32* %8, align 4 - %31 = load i32, i32* %9, align 4 - %32 = add nsw i32 %30, %31 - %33 = sdiv i32 %32, 2 - store i32 %33, i32* %10, align 4 - %34 = load i32, i32* %7, align 4 - %35 = load i32*, i32** %6, align 8 - %36 = load i32, i32* %10, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i32, i32* %35, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = icmp eq i32 %34, %39 - br i1 %40, label %41, label %44 - -41: ; preds = %29 - %42 = load i32, i32* %10, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %5, align 4 - br label %66 - -44: ; preds = %29 - %45 = load i32, i32* %7, align 4 - %46 = load i32*, i32** %6, align 8 - %47 = load i32, i32* %10, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %46, i64 %48 - %50 = load i32, i32* %49, align 4 - %51 = icmp sgt i32 %45, %50 - br i1 %51, label %52, label %59 - -52: ; preds = %44 - %53 = load i32*, i32** %6, align 8 - %54 = load i32, i32* %7, align 4 - %55 = load i32, i32* %10, align 4 - %56 = add nsw i32 %55, 1 - %57 = load i32, i32* %9, align 4 - %58 = call 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 - -59: ; preds = %44 - %60 = load i32*, i32** %6, align 8 - %61 = load i32, i32* %7, align 4 - %62 = load i32, i32* %8, align 4 - %63 = load i32, i32* %10, align 4 - %64 = sub nsw i32 %63, 1 - %65 = call 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 - -66: ; preds = %59, %52, %41, %27 - %67 = load i32, i32* %5, align 4 - ret i32 %67 -} - -; 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 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 1, i32* %5, align 4 - br label %10 - -10: ; preds = %50, %2 - %11 = load i32, i32* %5, align 4 - %12 = load i32, i32* %4, align 4 - %13 = icmp slt i32 %11, %12 - br i1 %13, label %14, label %53 - -14: ; preds = %10 - %15 = load i32, i32* %5, align 4 - %16 = sub nsw i32 %15, 1 - store i32 %16, i32* %7, align 4 - %17 = load i32*, i32** %3, align 8 - %18 = load i32, i32* %5, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds i32, i32* %17, i64 %19 - %21 = load i32, i32* %20, align 4 - store i32 %21, i32* %9, align 4 - %22 = load i32*, i32** %3, align 8 - %23 = load i32, i32* %9, align 4 - %24 = load i32, i32* %7, align 4 - %25 = call 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 - -26: ; preds = %30, %14 - %27 = load i32, i32* %7, align 4 - %28 = load i32, i32* %6, align 4 - %29 = icmp sge i32 %27, %28 - br i1 %29, label %30, label %43 - -30: ; preds = %26 - %31 = load i32*, i32** %3, align 8 - %32 = load i32, i32* %7, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds i32, i32* %31, i64 %33 - %35 = load i32, i32* %34, align 4 - %36 = load i32*, i32** %3, align 8 - %37 = load i32, i32* %7, align 4 - %38 = add nsw i32 %37, 1 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds i32, i32* %36, i64 %39 - store i32 %35, i32* %40, align 4 - %41 = load i32, i32* %7, align 4 - %42 = add nsw i32 %41, -1 - store i32 %42, i32* %7, align 4 - br label %26, !llvm.loop !6 - -43: ; preds = %26 - %44 = load i32, i32* %9, align 4 - %45 = load i32*, i32** %3, align 8 - %46 = load i32, i32* %7, align 4 - %47 = add nsw i32 %46, 1 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %45, i64 %48 - store i32 %44, i32* %49, align 4 - br label %50 - -50: ; preds = %43 - %51 = load i32, i32* %5, align 4 - %52 = add nsw i32 %51, 1 - store i32 %52, i32* %5, align 4 - br label %10, !llvm.loop !8 - -53: ; preds = %10 - ret void -} - -; 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 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [11 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([11 x i32]* @__const.main.a to i8*), i64 44, i1 false) - store i32 11, i32* %3, align 4 - %6 = getelementptr inbounds [11 x i32], [11 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - call void @_Z13insertionSortPii(i32* 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 - -9: ; preds = %19, %0 - %10 = load i32, i32* %4, align 4 - %11 = load i32, i32* %3, align 4 - %12 = icmp slt i32 %10, %11 - br i1 %12, label %13, label %22 - -13: ; preds = %9 - %14 = load i32, i32* %4, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [11 x i32], [11 x i32]* %2, i64 0, i64 %15 - %17 = load i32, i32* %16, align 4 - %18 = call i32 (i8*, ...) @printf(i8* 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 !9 - -22: ; preds = %9 - ret i32 0 -} - -; 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 i32 @printf(i8* noundef, ...) #3 - -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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/binomial-coefficient.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/binomial-coefficient.ll deleted file mode 100644 index df7a9a695..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/binomial-coefficient.ll +++ /dev/null @@ -1,229 +0,0 @@ -; ModuleID = 'PE-benchmarks/binomial-coefficient.cpp' -source_filename = "PE-benchmarks/binomial-coefficient.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z13binomialCoeffii(i32 noundef %0, i32 noundef %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %10 = load i32, i32* %3, align 4 - %11 = add nsw i32 %10, 1 - %12 = zext i32 %11 to i64 - %13 = load i32, i32* %4, align 4 - %14 = add nsw i32 %13, 1 - %15 = zext i32 %14 to i64 - %16 = call i8* @llvm.stacksave() - store i8* %16, i8** %5, align 8 - %17 = mul nuw i64 %12, %15 - %18 = alloca i32, i64 %17, align 16 - store i64 %12, i64* %6, align 8 - store i64 %15, i64* %7, align 8 - store i32 0, i32* %8, align 4 - br label %19 - -19: ; preds = %78, %2 - %20 = load i32, i32* %8, align 4 - %21 = load i32, i32* %3, align 4 - %22 = icmp sle i32 %20, %21 - br i1 %22, label %23, label %81 - -23: ; preds = %19 - store i32 0, i32* %9, align 4 - br label %24 - -24: ; preds = %74, %23 - %25 = load i32, i32* %9, align 4 - %26 = load i32, i32* %8, align 4 - %27 = load i32, i32* %4, align 4 - %28 = call noundef i32 @_Z3minii(i32 noundef %26, i32 noundef %27) - %29 = icmp sle i32 %25, %28 - br i1 %29, label %30, label %77 - -30: ; preds = %24 - %31 = load i32, i32* %9, align 4 - %32 = icmp eq i32 %31, 0 - br i1 %32, label %37, label %33 - -33: ; preds = %30 - %34 = load i32, i32* %9, align 4 - %35 = load i32, i32* %8, align 4 - %36 = icmp eq i32 %34, %35 - br i1 %36, label %37, label %45 - -37: ; preds = %33, %30 - %38 = load i32, i32* %8, align 4 - %39 = sext i32 %38 to i64 - %40 = mul nsw i64 %39, %15 - %41 = getelementptr inbounds i32, i32* %18, i64 %40 - %42 = load i32, i32* %9, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %41, i64 %43 - store i32 1, i32* %44, align 4 - br label %73 - -45: ; preds = %33 - %46 = load i32, i32* %8, align 4 - %47 = sub nsw i32 %46, 1 - %48 = sext i32 %47 to i64 - %49 = mul nsw i64 %48, %15 - %50 = getelementptr inbounds i32, i32* %18, i64 %49 - %51 = load i32, i32* %9, align 4 - %52 = sub nsw i32 %51, 1 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds i32, i32* %50, i64 %53 - %55 = load i32, i32* %54, align 4 - %56 = load i32, i32* %8, align 4 - %57 = sub nsw i32 %56, 1 - %58 = sext i32 %57 to i64 - %59 = mul nsw i64 %58, %15 - %60 = getelementptr inbounds i32, i32* %18, i64 %59 - %61 = load i32, i32* %9, align 4 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds i32, i32* %60, i64 %62 - %64 = load i32, i32* %63, align 4 - %65 = add nsw i32 %55, %64 - %66 = load i32, i32* %8, align 4 - %67 = sext i32 %66 to i64 - %68 = mul nsw i64 %67, %15 - %69 = getelementptr inbounds i32, i32* %18, i64 %68 - %70 = load i32, i32* %9, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds i32, i32* %69, i64 %71 - store i32 %65, i32* %72, align 4 - br label %73 - -73: ; preds = %45, %37 - br label %74 - -74: ; preds = %73 - %75 = load i32, i32* %9, align 4 - %76 = add nsw i32 %75, 1 - store i32 %76, i32* %9, align 4 - br label %24, !llvm.loop !6 - -77: ; preds = %24 - br label %78 - -78: ; preds = %77 - %79 = load i32, i32* %8, align 4 - %80 = add nsw i32 %79, 1 - store i32 %80, i32* %8, align 4 - br label %19, !llvm.loop !8 - -81: ; preds = %19 - %82 = load i32, i32* %3, align 4 - %83 = sext i32 %82 to i64 - %84 = mul nsw i64 %83, %15 - %85 = getelementptr inbounds i32, i32* %18, i64 %84 - %86 = load i32, i32* %4, align 4 - %87 = sext i32 %86 to i64 - %88 = getelementptr inbounds i32, i32* %85, i64 %87 - %89 = load i32, i32* %88, align 4 - %90 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %90) - ret i32 %89 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z3minii(i32 noundef %0, i32 noundef %1) #2 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp slt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %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 noundef 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 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 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 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 noundef 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) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 - -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 willreturn } -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 = { 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, !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"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/birthday-paradox.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/birthday-paradox.ll deleted file mode 100644 index 3672f2039..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/birthday-paradox.ll +++ /dev/null @@ -1,74 +0,0 @@ -; ModuleID = 'PE-benchmarks/birthday-paradox.cpp' -source_filename = "PE-benchmarks/birthday-paradox.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_ZSt4cout = external global %"class.std::basic_ostream", align 8 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z4findd(double noundef %0) #0 { - %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 noundef %5) #5 - %7 = fmul double 7.300000e+02, %6 - %8 = call double @sqrt(double noundef %7) #5 - %9 = call double @llvm.ceil.f64(double %8) - %10 = fptosi double %9 to i32 - ret i32 %10 -} - -; Function Attrs: nounwind -declare double @sqrt(double noundef) #1 - -; Function Attrs: nounwind -declare double @log(double noundef) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare double @llvm.ceil.f64(double) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 - -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 "frame-pointer"="all" "no-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 readnone speculatable willreturn } -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, !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-llvm14/boolean-parenthesization-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/boolean-parenthesization-problem.ll deleted file mode 100644 index ce8cf4011..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/boolean-parenthesization-problem.ll +++ /dev/null @@ -1,563 +0,0 @@ -; ModuleID = 'PE-benchmarks/boolean-parenthesization-problem.cpp' -source_filename = "PE-benchmarks/boolean-parenthesization-problem.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@__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 global %"class.std::basic_ostream", align 8 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z12countParenthPcS_i(i8* noundef %0, i8* noundef %1, i32 noundef %2) #0 { - %4 = alloca i8*, align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i64, align 8 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - %18 = alloca i32, align 4 - %19 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i8* %1, i8** %5, align 8 - store i32 %2, i32* %6, align 4 - %20 = load i32, i32* %6, align 4 - %21 = zext i32 %20 to i64 - %22 = load i32, i32* %6, align 4 - %23 = zext i32 %22 to i64 - %24 = call i8* @llvm.stacksave() - store i8* %24, i8** %7, align 8 - %25 = mul nuw i64 %21, %23 - %26 = alloca i32, i64 %25, align 16 - store i64 %21, i64* %8, align 8 - store i64 %23, i64* %9, align 8 - %27 = load i32, i32* %6, align 4 - %28 = zext i32 %27 to i64 - %29 = load i32, i32* %6, align 4 - %30 = zext i32 %29 to i64 - %31 = mul nuw i64 %28, %30 - %32 = alloca i32, i64 %31, align 16 - store i64 %28, i64* %10, align 8 - store i64 %30, i64* %11, align 8 - store i32 0, i32* %12, align 4 - br label %33 - -33: ; preds = %70, %3 - %34 = load i32, i32* %12, align 4 - %35 = load i32, i32* %6, align 4 - %36 = icmp slt i32 %34, %35 - br i1 %36, label %37, label %73 - -37: ; preds = %33 - %38 = load i8*, i8** %4, align 8 - %39 = load i32, i32* %12, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i8, i8* %38, i64 %40 - %42 = load i8, i8* %41, align 1 - %43 = sext i8 %42 to i32 - %44 = icmp eq i32 %43, 70 - %45 = zext i1 %44 to i64 - %46 = select i1 %44, i32 1, i32 0 - %47 = load i32, i32* %12, align 4 - %48 = sext i32 %47 to i64 - %49 = mul nsw i64 %48, %23 - %50 = getelementptr inbounds i32, i32* %26, i64 %49 - %51 = load i32, i32* %12, align 4 - %52 = sext i32 %51 to i64 - %53 = getelementptr inbounds i32, i32* %50, i64 %52 - store i32 %46, i32* %53, align 4 - %54 = load i8*, i8** %4, align 8 - %55 = load i32, i32* %12, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i8, i8* %54, i64 %56 - %58 = load i8, i8* %57, align 1 - %59 = sext i8 %58 to i32 - %60 = icmp eq i32 %59, 84 - %61 = zext i1 %60 to i64 - %62 = select i1 %60, i32 1, i32 0 - %63 = load i32, i32* %12, align 4 - %64 = sext i32 %63 to i64 - %65 = mul nsw i64 %64, %30 - %66 = getelementptr inbounds i32, i32* %32, i64 %65 - %67 = load i32, i32* %12, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds i32, i32* %66, i64 %68 - store i32 %62, i32* %69, align 4 - br label %70 - -70: ; preds = %37 - %71 = load i32, i32* %12, align 4 - %72 = add nsw i32 %71, 1 - store i32 %72, i32* %12, align 4 - br label %33, !llvm.loop !6 - -73: ; preds = %33 - store i32 1, i32* %13, align 4 - br label %74 - -74: ; preds = %388, %73 - %75 = load i32, i32* %13, align 4 - %76 = load i32, i32* %6, align 4 - %77 = icmp slt i32 %75, %76 - br i1 %77, label %78, label %391 - -78: ; preds = %74 - store i32 0, i32* %14, align 4 - %79 = load i32, i32* %13, align 4 - store i32 %79, i32* %15, align 4 - br label %80 - -80: ; preds = %382, %78 - %81 = load i32, i32* %15, align 4 - %82 = load i32, i32* %6, align 4 - %83 = icmp slt i32 %81, %82 - br i1 %83, label %84, label %387 - -84: ; preds = %80 - %85 = load i32, i32* %14, align 4 - %86 = sext i32 %85 to i64 - %87 = mul nsw i64 %86, %23 - %88 = getelementptr inbounds i32, i32* %26, i64 %87 - %89 = load i32, i32* %15, align 4 - %90 = sext i32 %89 to i64 - %91 = getelementptr inbounds i32, i32* %88, i64 %90 - store i32 0, i32* %91, align 4 - %92 = load i32, i32* %14, align 4 - %93 = sext i32 %92 to i64 - %94 = mul nsw i64 %93, %30 - %95 = getelementptr inbounds i32, i32* %32, i64 %94 - %96 = load i32, i32* %15, align 4 - %97 = sext i32 %96 to i64 - %98 = getelementptr inbounds i32, i32* %95, i64 %97 - store i32 0, i32* %98, align 4 - store i32 0, i32* %16, align 4 - br label %99 - -99: ; preds = %378, %84 - %100 = load i32, i32* %16, align 4 - %101 = load i32, i32* %13, align 4 - %102 = icmp slt i32 %100, %101 - br i1 %102, label %103, label %381 - -103: ; preds = %99 - %104 = load i32, i32* %14, align 4 - %105 = load i32, i32* %16, align 4 - %106 = add nsw i32 %104, %105 - store i32 %106, i32* %17, align 4 - %107 = load i32, i32* %14, align 4 - %108 = sext i32 %107 to i64 - %109 = mul nsw i64 %108, %30 - %110 = getelementptr inbounds i32, i32* %32, i64 %109 - %111 = load i32, i32* %17, align 4 - %112 = sext i32 %111 to i64 - %113 = getelementptr inbounds i32, i32* %110, i64 %112 - %114 = load i32, i32* %113, align 4 - %115 = load i32, i32* %14, align 4 - %116 = sext i32 %115 to i64 - %117 = mul nsw i64 %116, %23 - %118 = getelementptr inbounds i32, i32* %26, i64 %117 - %119 = load i32, i32* %17, align 4 - %120 = sext i32 %119 to i64 - %121 = getelementptr inbounds i32, i32* %118, i64 %120 - %122 = load i32, i32* %121, align 4 - %123 = add nsw i32 %114, %122 - store i32 %123, i32* %18, align 4 - %124 = load i32, i32* %17, align 4 - %125 = add nsw i32 %124, 1 - %126 = sext i32 %125 to i64 - %127 = mul nsw i64 %126, %30 - %128 = getelementptr inbounds i32, i32* %32, i64 %127 - %129 = load i32, i32* %15, align 4 - %130 = sext i32 %129 to i64 - %131 = getelementptr inbounds i32, i32* %128, i64 %130 - %132 = load i32, i32* %131, align 4 - %133 = load i32, i32* %17, align 4 - %134 = add nsw i32 %133, 1 - %135 = sext i32 %134 to i64 - %136 = mul nsw i64 %135, %23 - %137 = getelementptr inbounds i32, i32* %26, i64 %136 - %138 = load i32, i32* %15, align 4 - %139 = sext i32 %138 to i64 - %140 = getelementptr inbounds i32, i32* %137, i64 %139 - %141 = load i32, i32* %140, align 4 - %142 = add nsw i32 %132, %141 - store i32 %142, i32* %19, align 4 - %143 = load i8*, i8** %5, align 8 - %144 = load i32, i32* %17, align 4 - %145 = sext i32 %144 to i64 - %146 = getelementptr inbounds i8, i8* %143, i64 %145 - %147 = load i8, i8* %146, align 1 - %148 = sext i8 %147 to i32 - %149 = icmp eq i32 %148, 38 - br i1 %149, label %150, label %209 - -150: ; preds = %103 - %151 = load i32, i32* %14, align 4 - %152 = sext i32 %151 to i64 - %153 = mul nsw i64 %152, %30 - %154 = getelementptr inbounds i32, i32* %32, i64 %153 - %155 = load i32, i32* %17, align 4 - %156 = sext i32 %155 to i64 - %157 = getelementptr inbounds i32, i32* %154, i64 %156 - %158 = load i32, i32* %157, align 4 - %159 = load i32, i32* %17, align 4 - %160 = add nsw i32 %159, 1 - %161 = sext i32 %160 to i64 - %162 = mul nsw i64 %161, %30 - %163 = getelementptr inbounds i32, i32* %32, i64 %162 - %164 = load i32, i32* %15, align 4 - %165 = sext i32 %164 to i64 - %166 = getelementptr inbounds i32, i32* %163, i64 %165 - %167 = load i32, i32* %166, align 4 - %168 = mul nsw i32 %158, %167 - %169 = load i32, i32* %14, align 4 - %170 = sext i32 %169 to i64 - %171 = mul nsw i64 %170, %30 - %172 = getelementptr inbounds i32, i32* %32, i64 %171 - %173 = load i32, i32* %15, align 4 - %174 = sext i32 %173 to i64 - %175 = getelementptr inbounds i32, i32* %172, i64 %174 - %176 = load i32, i32* %175, align 4 - %177 = add nsw i32 %176, %168 - store i32 %177, i32* %175, align 4 - %178 = load i32, i32* %18, align 4 - %179 = load i32, i32* %19, align 4 - %180 = mul nsw i32 %178, %179 - %181 = load i32, i32* %14, align 4 - %182 = sext i32 %181 to i64 - %183 = mul nsw i64 %182, %30 - %184 = getelementptr inbounds i32, i32* %32, i64 %183 - %185 = load i32, i32* %17, align 4 - %186 = sext i32 %185 to i64 - %187 = getelementptr inbounds i32, i32* %184, i64 %186 - %188 = load i32, i32* %187, align 4 - %189 = load i32, i32* %17, align 4 - %190 = add nsw i32 %189, 1 - %191 = sext i32 %190 to i64 - %192 = mul nsw i64 %191, %30 - %193 = getelementptr inbounds i32, i32* %32, i64 %192 - %194 = load i32, i32* %15, align 4 - %195 = sext i32 %194 to i64 - %196 = getelementptr inbounds i32, i32* %193, i64 %195 - %197 = load i32, i32* %196, align 4 - %198 = mul nsw i32 %188, %197 - %199 = sub nsw i32 %180, %198 - %200 = load i32, i32* %14, align 4 - %201 = sext i32 %200 to i64 - %202 = mul nsw i64 %201, %23 - %203 = getelementptr inbounds i32, i32* %26, i64 %202 - %204 = load i32, i32* %15, align 4 - %205 = sext i32 %204 to i64 - %206 = getelementptr inbounds i32, i32* %203, i64 %205 - %207 = load i32, i32* %206, align 4 - %208 = add nsw i32 %207, %199 - store i32 %208, i32* %206, align 4 - br label %209 - -209: ; preds = %150, %103 - %210 = load i8*, i8** %5, align 8 - %211 = load i32, i32* %17, align 4 - %212 = sext i32 %211 to i64 - %213 = getelementptr inbounds i8, i8* %210, i64 %212 - %214 = load i8, i8* %213, align 1 - %215 = sext i8 %214 to i32 - %216 = icmp eq i32 %215, 124 - br i1 %216, label %217, label %276 - -217: ; preds = %209 - %218 = load i32, i32* %14, align 4 - %219 = sext i32 %218 to i64 - %220 = mul nsw i64 %219, %23 - %221 = getelementptr inbounds i32, i32* %26, i64 %220 - %222 = load i32, i32* %17, align 4 - %223 = sext i32 %222 to i64 - %224 = getelementptr inbounds i32, i32* %221, i64 %223 - %225 = load i32, i32* %224, align 4 - %226 = load i32, i32* %17, align 4 - %227 = add nsw i32 %226, 1 - %228 = sext i32 %227 to i64 - %229 = mul nsw i64 %228, %23 - %230 = getelementptr inbounds i32, i32* %26, i64 %229 - %231 = load i32, i32* %15, align 4 - %232 = sext i32 %231 to i64 - %233 = getelementptr inbounds i32, i32* %230, i64 %232 - %234 = load i32, i32* %233, align 4 - %235 = mul nsw i32 %225, %234 - %236 = load i32, i32* %14, align 4 - %237 = sext i32 %236 to i64 - %238 = mul nsw i64 %237, %23 - %239 = getelementptr inbounds i32, i32* %26, i64 %238 - %240 = load i32, i32* %15, align 4 - %241 = sext i32 %240 to i64 - %242 = getelementptr inbounds i32, i32* %239, i64 %241 - %243 = load i32, i32* %242, align 4 - %244 = add nsw i32 %243, %235 - store i32 %244, i32* %242, align 4 - %245 = load i32, i32* %18, align 4 - %246 = load i32, i32* %19, align 4 - %247 = mul nsw i32 %245, %246 - %248 = load i32, i32* %14, align 4 - %249 = sext i32 %248 to i64 - %250 = mul nsw i64 %249, %23 - %251 = getelementptr inbounds i32, i32* %26, i64 %250 - %252 = load i32, i32* %17, align 4 - %253 = sext i32 %252 to i64 - %254 = getelementptr inbounds i32, i32* %251, i64 %253 - %255 = load i32, i32* %254, align 4 - %256 = load i32, i32* %17, align 4 - %257 = add nsw i32 %256, 1 - %258 = sext i32 %257 to i64 - %259 = mul nsw i64 %258, %23 - %260 = getelementptr inbounds i32, i32* %26, i64 %259 - %261 = load i32, i32* %15, align 4 - %262 = sext i32 %261 to i64 - %263 = getelementptr inbounds i32, i32* %260, i64 %262 - %264 = load i32, i32* %263, align 4 - %265 = mul nsw i32 %255, %264 - %266 = sub nsw i32 %247, %265 - %267 = load i32, i32* %14, align 4 - %268 = sext i32 %267 to i64 - %269 = mul nsw i64 %268, %30 - %270 = getelementptr inbounds i32, i32* %32, i64 %269 - %271 = load i32, i32* %15, align 4 - %272 = sext i32 %271 to i64 - %273 = getelementptr inbounds i32, i32* %270, i64 %272 - %274 = load i32, i32* %273, align 4 - %275 = add nsw i32 %274, %266 - store i32 %275, i32* %273, align 4 - br label %276 - -276: ; preds = %217, %209 - %277 = load i8*, i8** %5, align 8 - %278 = load i32, i32* %17, align 4 - %279 = sext i32 %278 to i64 - %280 = getelementptr inbounds i8, i8* %277, i64 %279 - %281 = load i8, i8* %280, align 1 - %282 = sext i8 %281 to i32 - %283 = icmp eq i32 %282, 94 - br i1 %283, label %284, label %377 - -284: ; preds = %276 - %285 = load i32, i32* %14, align 4 - %286 = sext i32 %285 to i64 - %287 = mul nsw i64 %286, %23 - %288 = getelementptr inbounds i32, i32* %26, i64 %287 - %289 = load i32, i32* %17, align 4 - %290 = sext i32 %289 to i64 - %291 = getelementptr inbounds i32, i32* %288, i64 %290 - %292 = load i32, i32* %291, align 4 - %293 = load i32, i32* %17, align 4 - %294 = add nsw i32 %293, 1 - %295 = sext i32 %294 to i64 - %296 = mul nsw i64 %295, %30 - %297 = getelementptr inbounds i32, i32* %32, i64 %296 - %298 = load i32, i32* %15, align 4 - %299 = sext i32 %298 to i64 - %300 = getelementptr inbounds i32, i32* %297, i64 %299 - %301 = load i32, i32* %300, align 4 - %302 = mul nsw i32 %292, %301 - %303 = load i32, i32* %14, align 4 - %304 = sext i32 %303 to i64 - %305 = mul nsw i64 %304, %30 - %306 = getelementptr inbounds i32, i32* %32, i64 %305 - %307 = load i32, i32* %17, align 4 - %308 = sext i32 %307 to i64 - %309 = getelementptr inbounds i32, i32* %306, i64 %308 - %310 = load i32, i32* %309, align 4 - %311 = load i32, i32* %17, align 4 - %312 = add nsw i32 %311, 1 - %313 = sext i32 %312 to i64 - %314 = mul nsw i64 %313, %23 - %315 = getelementptr inbounds i32, i32* %26, i64 %314 - %316 = load i32, i32* %15, align 4 - %317 = sext i32 %316 to i64 - %318 = getelementptr inbounds i32, i32* %315, i64 %317 - %319 = load i32, i32* %318, align 4 - %320 = mul nsw i32 %310, %319 - %321 = add nsw i32 %302, %320 - %322 = load i32, i32* %14, align 4 - %323 = sext i32 %322 to i64 - %324 = mul nsw i64 %323, %30 - %325 = getelementptr inbounds i32, i32* %32, i64 %324 - %326 = load i32, i32* %15, align 4 - %327 = sext i32 %326 to i64 - %328 = getelementptr inbounds i32, i32* %325, i64 %327 - %329 = load i32, i32* %328, align 4 - %330 = add nsw i32 %329, %321 - store i32 %330, i32* %328, align 4 - %331 = load i32, i32* %14, align 4 - %332 = sext i32 %331 to i64 - %333 = mul nsw i64 %332, %30 - %334 = getelementptr inbounds i32, i32* %32, i64 %333 - %335 = load i32, i32* %17, align 4 - %336 = sext i32 %335 to i64 - %337 = getelementptr inbounds i32, i32* %334, i64 %336 - %338 = load i32, i32* %337, align 4 - %339 = load i32, i32* %17, align 4 - %340 = add nsw i32 %339, 1 - %341 = sext i32 %340 to i64 - %342 = mul nsw i64 %341, %30 - %343 = getelementptr inbounds i32, i32* %32, i64 %342 - %344 = load i32, i32* %15, align 4 - %345 = sext i32 %344 to i64 - %346 = getelementptr inbounds i32, i32* %343, i64 %345 - %347 = load i32, i32* %346, align 4 - %348 = mul nsw i32 %338, %347 - %349 = load i32, i32* %14, align 4 - %350 = sext i32 %349 to i64 - %351 = mul nsw i64 %350, %23 - %352 = getelementptr inbounds i32, i32* %26, i64 %351 - %353 = load i32, i32* %17, align 4 - %354 = sext i32 %353 to i64 - %355 = getelementptr inbounds i32, i32* %352, i64 %354 - %356 = load i32, i32* %355, align 4 - %357 = load i32, i32* %17, align 4 - %358 = add nsw i32 %357, 1 - %359 = sext i32 %358 to i64 - %360 = mul nsw i64 %359, %23 - %361 = getelementptr inbounds i32, i32* %26, i64 %360 - %362 = load i32, i32* %15, align 4 - %363 = sext i32 %362 to i64 - %364 = getelementptr inbounds i32, i32* %361, i64 %363 - %365 = load i32, i32* %364, align 4 - %366 = mul nsw i32 %356, %365 - %367 = add nsw i32 %348, %366 - %368 = load i32, i32* %14, align 4 - %369 = sext i32 %368 to i64 - %370 = mul nsw i64 %369, %23 - %371 = getelementptr inbounds i32, i32* %26, i64 %370 - %372 = load i32, i32* %15, align 4 - %373 = sext i32 %372 to i64 - %374 = getelementptr inbounds i32, i32* %371, i64 %373 - %375 = load i32, i32* %374, align 4 - %376 = add nsw i32 %375, %367 - store i32 %376, i32* %374, align 4 - br label %377 - -377: ; preds = %284, %276 - br label %378 - -378: ; preds = %377 - %379 = load i32, i32* %16, align 4 - %380 = add nsw i32 %379, 1 - store i32 %380, i32* %16, align 4 - br label %99, !llvm.loop !8 - -381: ; preds = %99 - br label %382 - -382: ; preds = %381 - %383 = load i32, i32* %14, align 4 - %384 = add nsw i32 %383, 1 - store i32 %384, i32* %14, align 4 - %385 = load i32, i32* %15, align 4 - %386 = add nsw i32 %385, 1 - store i32 %386, i32* %15, align 4 - br label %80, !llvm.loop !9 - -387: ; preds = %80 - br label %388 - -388: ; preds = %387 - %389 = load i32, i32* %13, align 4 - %390 = add nsw i32 %389, 1 - store i32 %390, i32* %13, align 4 - br label %74, !llvm.loop !10 - -391: ; preds = %74 - %392 = mul nsw i64 0, %30 - %393 = getelementptr inbounds i32, i32* %32, i64 %392 - %394 = load i32, i32* %6, align 4 - %395 = sub nsw i32 %394, 1 - %396 = sext i32 %395 to i64 - %397 = getelementptr inbounds i32, i32* %393, i64 %396 - %398 = load i32, i32* %397, align 4 - %399 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %399) - ret i32 %398 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca [5 x i8], align 1 - %3 = alloca [4 x i8], align 1 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [5 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %5, i8* align 1 getelementptr inbounds ([5 x i8], [5 x i8]* @__const.main.symbols, i32 0, i32 0), i64 5, i1 false) - %6 = bitcast [4 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %6, i8* align 1 getelementptr inbounds ([4 x i8], [4 x i8]* @__const.main.operators, i32 0, i32 0), i64 4, i1 false) - %7 = getelementptr inbounds [5 x i8], [5 x i8]* %2, i64 0, i64 0 - %8 = call i64 @strlen(i8* noundef %7) #6 - %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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 - -; Function Attrs: nounwind readonly willreturn -declare i64 @strlen(i8* noundef) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -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 = { 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 = { 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 #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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/boruvkas-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/boruvkas-algorithm.ll deleted file mode 100644 index b59b4ef01..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/boruvkas-algorithm.ll +++ /dev/null @@ -1,684 +0,0 @@ -; ModuleID = 'PE-benchmarks/boruvkas-algorithm.cpp' -source_filename = "PE-benchmarks/boruvkas-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%struct.Graph = type { i32, i32, %struct.Edge* } -%struct.Edge = type { i32, i32, i32 } -%struct.subset = type { i32, i32 } - -@.str = private unnamed_addr constant [28 x i8] c"Edge %d-%d included in MST\0A\00", align 1 -@.str.1 = private unnamed_addr constant [21 x i8] c"Weight of MST is %d\0A\00", align 1 - -; Function Attrs: 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 - %5 = alloca %struct.Edge*, align 8 - %6 = alloca %struct.subset*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - store %struct.Graph* %0, %struct.Graph** %2, align 8 - %18 = load %struct.Graph*, %struct.Graph** %2, align 8 - %19 = getelementptr inbounds %struct.Graph, %struct.Graph* %18, i32 0, i32 0 - %20 = load i32, i32* %19, align 8 - store i32 %20, i32* %3, align 4 - %21 = load %struct.Graph*, %struct.Graph** %2, align 8 - %22 = getelementptr inbounds %struct.Graph, %struct.Graph* %21, i32 0, i32 1 - %23 = load i32, i32* %22, align 4 - store i32 %23, i32* %4, align 4 - %24 = load %struct.Graph*, %struct.Graph** %2, align 8 - %25 = getelementptr inbounds %struct.Graph, %struct.Graph* %24, i32 0, i32 2 - %26 = load %struct.Edge*, %struct.Edge** %25, align 8 - store %struct.Edge* %26, %struct.Edge** %5, align 8 - %27 = load i32, i32* %3, align 4 - %28 = sext i32 %27 to i64 - %29 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %28, i64 8) - %30 = extractvalue { i64, i1 } %29, 1 - %31 = extractvalue { i64, i1 } %29, 0 - %32 = select i1 %30, i64 -1, i64 %31 - %33 = call noalias 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 - %36 = sext i32 %35 to i64 - %37 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %36, i64 4) - %38 = extractvalue { i64, i1 } %37, 1 - %39 = extractvalue { i64, i1 } %37, 0 - %40 = select i1 %38, i64 -1, i64 %39 - %41 = call noalias 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 - br label %43 - -43: ; preds = %63, %1 - %44 = load i32, i32* %8, align 4 - %45 = load i32, i32* %3, align 4 - %46 = icmp slt i32 %44, %45 - br i1 %46, label %47, label %66 - -47: ; preds = %43 - %48 = load i32, i32* %8, align 4 - %49 = load %struct.subset*, %struct.subset** %6, align 8 - %50 = load i32, i32* %8, align 4 - %51 = sext i32 %50 to i64 - %52 = getelementptr inbounds %struct.subset, %struct.subset* %49, i64 %51 - %53 = getelementptr inbounds %struct.subset, %struct.subset* %52, i32 0, i32 0 - store i32 %48, i32* %53, align 4 - %54 = load %struct.subset*, %struct.subset** %6, align 8 - %55 = load i32, i32* %8, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds %struct.subset, %struct.subset* %54, i64 %56 - %58 = getelementptr inbounds %struct.subset, %struct.subset* %57, i32 0, i32 1 - store i32 0, i32* %58, align 4 - %59 = load i32*, i32** %7, align 8 - %60 = load i32, i32* %8, align 4 - %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds i32, i32* %59, i64 %61 - store i32 -1, i32* %62, align 4 - br label %63 - -63: ; preds = %47 - %64 = load i32, i32* %8, align 4 - %65 = add nsw i32 %64, 1 - store i32 %65, i32* %8, align 4 - br label %43, !llvm.loop !6 - -66: ; preds = %43 - %67 = load i32, i32* %3, align 4 - store i32 %67, i32* %9, align 4 - store i32 0, i32* %10, align 4 - br label %68 - -68: ; preds = %261, %66 - %69 = load i32, i32* %9, align 4 - %70 = icmp sgt i32 %69, 1 - br i1 %70, label %71, label %262 - -71: ; preds = %68 - store i32 0, i32* %11, align 4 - br label %72 - -72: ; preds = %81, %71 - %73 = load i32, i32* %11, align 4 - %74 = load i32, i32* %3, align 4 - %75 = icmp slt i32 %73, %74 - br i1 %75, label %76, label %84 - -76: ; preds = %72 - %77 = load i32*, i32** %7, align 8 - %78 = load i32, i32* %11, align 4 - %79 = sext i32 %78 to i64 - %80 = getelementptr inbounds i32, i32* %77, i64 %79 - store i32 -1, i32* %80, align 4 - br label %81 - -81: ; preds = %76 - %82 = load i32, i32* %11, align 4 - %83 = add nsw i32 %82, 1 - store i32 %83, i32* %11, align 4 - br label %72, !llvm.loop !8 - -84: ; preds = %72 - store i32 0, i32* %12, align 4 - br label %85 - -85: ; preds = %174, %84 - %86 = load i32, i32* %12, align 4 - %87 = load i32, i32* %4, align 4 - %88 = icmp slt i32 %86, %87 - br i1 %88, label %89, label %177 - -89: ; preds = %85 - %90 = load %struct.subset*, %struct.subset** %6, align 8 - %91 = load %struct.Edge*, %struct.Edge** %5, align 8 - %92 = load i32, i32* %12, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds %struct.Edge, %struct.Edge* %91, i64 %93 - %95 = getelementptr inbounds %struct.Edge, %struct.Edge* %94, i32 0, i32 0 - %96 = load i32, i32* %95, align 4 - %97 = call 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 - %100 = load i32, i32* %12, align 4 - %101 = sext i32 %100 to i64 - %102 = getelementptr inbounds %struct.Edge, %struct.Edge* %99, i64 %101 - %103 = getelementptr inbounds %struct.Edge, %struct.Edge* %102, i32 0, i32 1 - %104 = load i32, i32* %103, align 4 - %105 = call 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 - %108 = icmp eq i32 %106, %107 - br i1 %108, label %109, label %110 - -109: ; preds = %89 - br label %174 - -110: ; preds = %89 - %111 = load i32*, i32** %7, align 8 - %112 = load i32, i32* %13, align 4 - %113 = sext i32 %112 to i64 - %114 = getelementptr inbounds i32, i32* %111, i64 %113 - %115 = load i32, i32* %114, align 4 - %116 = icmp eq i32 %115, -1 - br i1 %116, label %135, label %117 - -117: ; preds = %110 - %118 = load %struct.Edge*, %struct.Edge** %5, align 8 - %119 = load i32*, i32** %7, align 8 - %120 = load i32, i32* %13, align 4 - %121 = sext i32 %120 to i64 - %122 = getelementptr inbounds i32, i32* %119, i64 %121 - %123 = load i32, i32* %122, align 4 - %124 = sext i32 %123 to i64 - %125 = getelementptr inbounds %struct.Edge, %struct.Edge* %118, i64 %124 - %126 = getelementptr inbounds %struct.Edge, %struct.Edge* %125, i32 0, i32 2 - %127 = load i32, i32* %126, align 4 - %128 = load %struct.Edge*, %struct.Edge** %5, align 8 - %129 = load i32, i32* %12, align 4 - %130 = sext i32 %129 to i64 - %131 = getelementptr inbounds %struct.Edge, %struct.Edge* %128, i64 %130 - %132 = getelementptr inbounds %struct.Edge, %struct.Edge* %131, i32 0, i32 2 - %133 = load i32, i32* %132, align 4 - %134 = icmp sgt i32 %127, %133 - br i1 %134, label %135, label %141 - -135: ; preds = %117, %110 - %136 = load i32, i32* %12, align 4 - %137 = load i32*, i32** %7, align 8 - %138 = load i32, i32* %13, align 4 - %139 = sext i32 %138 to i64 - %140 = getelementptr inbounds i32, i32* %137, i64 %139 - store i32 %136, i32* %140, align 4 - br label %141 - -141: ; preds = %135, %117 - %142 = load i32*, i32** %7, align 8 - %143 = load i32, i32* %14, align 4 - %144 = sext i32 %143 to i64 - %145 = getelementptr inbounds i32, i32* %142, i64 %144 - %146 = load i32, i32* %145, align 4 - %147 = icmp eq i32 %146, -1 - br i1 %147, label %166, label %148 - -148: ; preds = %141 - %149 = load %struct.Edge*, %struct.Edge** %5, align 8 - %150 = load i32*, i32** %7, align 8 - %151 = load i32, i32* %14, align 4 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds i32, i32* %150, i64 %152 - %154 = load i32, i32* %153, align 4 - %155 = sext i32 %154 to i64 - %156 = getelementptr inbounds %struct.Edge, %struct.Edge* %149, i64 %155 - %157 = getelementptr inbounds %struct.Edge, %struct.Edge* %156, i32 0, i32 2 - %158 = load i32, i32* %157, align 4 - %159 = load %struct.Edge*, %struct.Edge** %5, align 8 - %160 = load i32, i32* %12, align 4 - %161 = sext i32 %160 to i64 - %162 = getelementptr inbounds %struct.Edge, %struct.Edge* %159, i64 %161 - %163 = getelementptr inbounds %struct.Edge, %struct.Edge* %162, i32 0, i32 2 - %164 = load i32, i32* %163, align 4 - %165 = icmp sgt i32 %158, %164 - br i1 %165, label %166, label %172 - -166: ; preds = %148, %141 - %167 = load i32, i32* %12, align 4 - %168 = load i32*, i32** %7, align 8 - %169 = load i32, i32* %14, align 4 - %170 = sext i32 %169 to i64 - %171 = getelementptr inbounds i32, i32* %168, i64 %170 - store i32 %167, i32* %171, align 4 - br label %172 - -172: ; preds = %166, %148 - br label %173 - -173: ; preds = %172 - br label %174 - -174: ; preds = %173, %109 - %175 = load i32, i32* %12, align 4 - %176 = add nsw i32 %175, 1 - store i32 %176, i32* %12, align 4 - br label %85, !llvm.loop !9 - -177: ; preds = %85 - store i32 0, i32* %15, align 4 - br label %178 - -178: ; preds = %258, %177 - %179 = load i32, i32* %15, align 4 - %180 = load i32, i32* %3, align 4 - %181 = icmp slt i32 %179, %180 - br i1 %181, label %182, label %261 - -182: ; preds = %178 - %183 = load i32*, i32** %7, align 8 - %184 = load i32, i32* %15, align 4 - %185 = sext i32 %184 to i64 - %186 = getelementptr inbounds i32, i32* %183, i64 %185 - %187 = load i32, i32* %186, align 4 - %188 = icmp ne i32 %187, -1 - br i1 %188, label %189, label %257 - -189: ; preds = %182 - %190 = load %struct.subset*, %struct.subset** %6, align 8 - %191 = load %struct.Edge*, %struct.Edge** %5, align 8 - %192 = load i32*, i32** %7, align 8 - %193 = load i32, i32* %15, align 4 - %194 = sext i32 %193 to i64 - %195 = getelementptr inbounds i32, i32* %192, i64 %194 - %196 = load i32, i32* %195, align 4 - %197 = sext i32 %196 to i64 - %198 = getelementptr inbounds %struct.Edge, %struct.Edge* %191, i64 %197 - %199 = getelementptr inbounds %struct.Edge, %struct.Edge* %198, i32 0, i32 0 - %200 = load i32, i32* %199, align 4 - %201 = call 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 - %204 = load i32*, i32** %7, align 8 - %205 = load i32, i32* %15, align 4 - %206 = sext i32 %205 to i64 - %207 = getelementptr inbounds i32, i32* %204, i64 %206 - %208 = load i32, i32* %207, align 4 - %209 = sext i32 %208 to i64 - %210 = getelementptr inbounds %struct.Edge, %struct.Edge* %203, i64 %209 - %211 = getelementptr inbounds %struct.Edge, %struct.Edge* %210, i32 0, i32 1 - %212 = load i32, i32* %211, align 4 - %213 = call 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 - %216 = icmp eq i32 %214, %215 - br i1 %216, label %217, label %218 - -217: ; preds = %189 - br label %258 - -218: ; preds = %189 - %219 = load %struct.Edge*, %struct.Edge** %5, align 8 - %220 = load i32*, i32** %7, align 8 - %221 = load i32, i32* %15, align 4 - %222 = sext i32 %221 to i64 - %223 = getelementptr inbounds i32, i32* %220, i64 %222 - %224 = load i32, i32* %223, align 4 - %225 = sext i32 %224 to i64 - %226 = getelementptr inbounds %struct.Edge, %struct.Edge* %219, i64 %225 - %227 = getelementptr inbounds %struct.Edge, %struct.Edge* %226, i32 0, i32 2 - %228 = load i32, i32* %227, align 4 - %229 = load i32, i32* %10, align 4 - %230 = add nsw i32 %229, %228 - store i32 %230, i32* %10, align 4 - %231 = load %struct.Edge*, %struct.Edge** %5, align 8 - %232 = load i32*, i32** %7, align 8 - %233 = load i32, i32* %15, align 4 - %234 = sext i32 %233 to i64 - %235 = getelementptr inbounds i32, i32* %232, i64 %234 - %236 = load i32, i32* %235, align 4 - %237 = sext i32 %236 to i64 - %238 = getelementptr inbounds %struct.Edge, %struct.Edge* %231, i64 %237 - %239 = getelementptr inbounds %struct.Edge, %struct.Edge* %238, i32 0, i32 0 - %240 = load i32, i32* %239, align 4 - %241 = load %struct.Edge*, %struct.Edge** %5, align 8 - %242 = load i32*, i32** %7, align 8 - %243 = load i32, i32* %15, align 4 - %244 = sext i32 %243 to i64 - %245 = getelementptr inbounds i32, i32* %242, i64 %244 - %246 = load i32, i32* %245, align 4 - %247 = sext i32 %246 to i64 - %248 = getelementptr inbounds %struct.Edge, %struct.Edge* %241, i64 %247 - %249 = getelementptr inbounds %struct.Edge, %struct.Edge* %248, i32 0, i32 1 - %250 = load i32, i32* %249, align 4 - %251 = call i32 (i8*, ...) @printf(i8* 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* 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 - br label %257 - -257: ; preds = %218, %182 - br label %258 - -258: ; preds = %257, %217 - %259 = load i32, i32* %15, align 4 - %260 = add nsw i32 %259, 1 - store i32 %260, i32* %15, align 4 - br label %178, !llvm.loop !10 - -261: ; preds = %178 - br label %68, !llvm.loop !11 - -262: ; preds = %68 - %263 = load i32, i32* %10, align 4 - %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 -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; 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 - store i32 %1, i32* %4, align 4 - %5 = load %struct.subset*, %struct.subset** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = sext i32 %6 to i64 - %8 = getelementptr inbounds %struct.subset, %struct.subset* %5, i64 %7 - %9 = getelementptr inbounds %struct.subset, %struct.subset* %8, i32 0, i32 0 - %10 = load i32, i32* %9, align 4 - %11 = load i32, i32* %4, align 4 - %12 = icmp ne i32 %10, %11 - br i1 %12, label %13, label %27 - -13: ; preds = %2 - %14 = load %struct.subset*, %struct.subset** %3, align 8 - %15 = load %struct.subset*, %struct.subset** %3, align 8 - %16 = load i32, i32* %4, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds %struct.subset, %struct.subset* %15, i64 %17 - %19 = getelementptr inbounds %struct.subset, %struct.subset* %18, i32 0, i32 0 - %20 = load i32, i32* %19, align 4 - %21 = call 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 - %25 = getelementptr inbounds %struct.subset, %struct.subset* %22, i64 %24 - %26 = getelementptr inbounds %struct.subset, %struct.subset* %25, i32 0, i32 0 - store i32 %21, i32* %26, align 4 - br label %27 - -27: ; preds = %13, %2 - %28 = load %struct.subset*, %struct.subset** %3, align 8 - %29 = load i32, i32* %4, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds %struct.subset, %struct.subset* %28, i64 %30 - %32 = getelementptr inbounds %struct.subset, %struct.subset* %31, i32 0, i32 0 - %33 = load i32, i32* %32, align 4 - ret i32 %33 -} - -declare i32 @printf(i8* noundef, ...) #3 - -; 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 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store %struct.subset* %0, %struct.subset** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %9 = load %struct.subset*, %struct.subset** %4, align 8 - %10 = load i32, i32* %5, align 4 - %11 = call 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 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 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds %struct.subset, %struct.subset* %15, i64 %17 - %19 = getelementptr inbounds %struct.subset, %struct.subset* %18, i32 0, i32 1 - %20 = load i32, i32* %19, align 4 - %21 = load %struct.subset*, %struct.subset** %4, align 8 - %22 = load i32, i32* %8, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds %struct.subset, %struct.subset* %21, i64 %23 - %25 = getelementptr inbounds %struct.subset, %struct.subset* %24, i32 0, i32 1 - %26 = load i32, i32* %25, align 4 - %27 = icmp slt i32 %20, %26 - br i1 %27, label %28, label %35 - -28: ; preds = %3 - %29 = load i32, i32* %8, align 4 - %30 = load %struct.subset*, %struct.subset** %4, align 8 - %31 = load i32, i32* %7, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds %struct.subset, %struct.subset* %30, i64 %32 - %34 = getelementptr inbounds %struct.subset, %struct.subset* %33, i32 0, i32 0 - store i32 %29, i32* %34, align 4 - br label %71 - -35: ; preds = %3 - %36 = load %struct.subset*, %struct.subset** %4, align 8 - %37 = load i32, i32* %7, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds %struct.subset, %struct.subset* %36, i64 %38 - %40 = getelementptr inbounds %struct.subset, %struct.subset* %39, i32 0, i32 1 - %41 = load i32, i32* %40, align 4 - %42 = load %struct.subset*, %struct.subset** %4, align 8 - %43 = load i32, i32* %8, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds %struct.subset, %struct.subset* %42, i64 %44 - %46 = getelementptr inbounds %struct.subset, %struct.subset* %45, i32 0, i32 1 - %47 = load i32, i32* %46, align 4 - %48 = icmp sgt i32 %41, %47 - br i1 %48, label %49, label %56 - -49: ; preds = %35 - %50 = load i32, i32* %7, align 4 - %51 = load %struct.subset*, %struct.subset** %4, align 8 - %52 = load i32, i32* %8, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds %struct.subset, %struct.subset* %51, i64 %53 - %55 = getelementptr inbounds %struct.subset, %struct.subset* %54, i32 0, i32 0 - store i32 %50, i32* %55, align 4 - br label %70 - -56: ; preds = %35 - %57 = load i32, i32* %7, align 4 - %58 = load %struct.subset*, %struct.subset** %4, align 8 - %59 = load i32, i32* %8, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds %struct.subset, %struct.subset* %58, i64 %60 - %62 = getelementptr inbounds %struct.subset, %struct.subset* %61, i32 0, i32 0 - store i32 %57, i32* %62, align 4 - %63 = load %struct.subset*, %struct.subset** %4, align 8 - %64 = load i32, i32* %7, align 4 - %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds %struct.subset, %struct.subset* %63, i64 %65 - %67 = getelementptr inbounds %struct.subset, %struct.subset* %66, i32 0, i32 1 - %68 = load i32, i32* %67, align 4 - %69 = add nsw i32 %68, 1 - store i32 %69, i32* %67, align 4 - br label %70 - -70: ; preds = %56, %49 - br label %71 - -71: ; preds = %70, %28 - ret void -} - -; Function Attrs: 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 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 - %9 = load %struct.Graph*, %struct.Graph** %5, align 8 - %10 = getelementptr inbounds %struct.Graph, %struct.Graph* %9, i32 0, i32 0 - store i32 %8, i32* %10, align 8 - %11 = load i32, i32* %4, align 4 - %12 = load %struct.Graph*, %struct.Graph** %5, align 8 - %13 = getelementptr inbounds %struct.Graph, %struct.Graph* %12, i32 0, i32 1 - store i32 %11, i32* %13, align 4 - %14 = load i32, i32* %4, align 4 - %15 = sext i32 %14 to i64 - %16 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %15, i64 12) - %17 = extractvalue { i64, i1 } %16, 1 - %18 = extractvalue { i64, i1 } %16, 0 - %19 = select i1 %17, i64 -1, i64 %18 - %20 = call noalias 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 - store %struct.Edge* %21, %struct.Edge** %23, align 8 - %24 = load %struct.Graph*, %struct.Graph** %5, align 8 - ret %struct.Graph* %24 -} - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; 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 - %4 = alloca %struct.Graph*, align 8 - store i32 0, i32* %1, align 4 - store i32 4, i32* %2, align 4 - store i32 5, i32* %3, align 4 - %5 = load i32, i32* %2, align 4 - %6 = load i32, i32* %3, align 4 - %7 = call 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 - %10 = load %struct.Edge*, %struct.Edge** %9, align 8 - %11 = getelementptr inbounds %struct.Edge, %struct.Edge* %10, i64 0 - %12 = getelementptr inbounds %struct.Edge, %struct.Edge* %11, i32 0, i32 0 - store i32 0, i32* %12, align 4 - %13 = load %struct.Graph*, %struct.Graph** %4, align 8 - %14 = getelementptr inbounds %struct.Graph, %struct.Graph* %13, i32 0, i32 2 - %15 = load %struct.Edge*, %struct.Edge** %14, align 8 - %16 = getelementptr inbounds %struct.Edge, %struct.Edge* %15, i64 0 - %17 = getelementptr inbounds %struct.Edge, %struct.Edge* %16, i32 0, i32 1 - store i32 1, i32* %17, align 4 - %18 = load %struct.Graph*, %struct.Graph** %4, align 8 - %19 = getelementptr inbounds %struct.Graph, %struct.Graph* %18, i32 0, i32 2 - %20 = load %struct.Edge*, %struct.Edge** %19, align 8 - %21 = getelementptr inbounds %struct.Edge, %struct.Edge* %20, i64 0 - %22 = getelementptr inbounds %struct.Edge, %struct.Edge* %21, i32 0, i32 2 - store i32 10, i32* %22, align 4 - %23 = load %struct.Graph*, %struct.Graph** %4, align 8 - %24 = getelementptr inbounds %struct.Graph, %struct.Graph* %23, i32 0, i32 2 - %25 = load %struct.Edge*, %struct.Edge** %24, align 8 - %26 = getelementptr inbounds %struct.Edge, %struct.Edge* %25, i64 1 - %27 = getelementptr inbounds %struct.Edge, %struct.Edge* %26, i32 0, i32 0 - store i32 0, i32* %27, align 4 - %28 = load %struct.Graph*, %struct.Graph** %4, align 8 - %29 = getelementptr inbounds %struct.Graph, %struct.Graph* %28, i32 0, i32 2 - %30 = load %struct.Edge*, %struct.Edge** %29, align 8 - %31 = getelementptr inbounds %struct.Edge, %struct.Edge* %30, i64 1 - %32 = getelementptr inbounds %struct.Edge, %struct.Edge* %31, i32 0, i32 1 - store i32 2, i32* %32, align 4 - %33 = load %struct.Graph*, %struct.Graph** %4, align 8 - %34 = getelementptr inbounds %struct.Graph, %struct.Graph* %33, i32 0, i32 2 - %35 = load %struct.Edge*, %struct.Edge** %34, align 8 - %36 = getelementptr inbounds %struct.Edge, %struct.Edge* %35, i64 1 - %37 = getelementptr inbounds %struct.Edge, %struct.Edge* %36, i32 0, i32 2 - store i32 6, i32* %37, align 4 - %38 = load %struct.Graph*, %struct.Graph** %4, align 8 - %39 = getelementptr inbounds %struct.Graph, %struct.Graph* %38, i32 0, i32 2 - %40 = load %struct.Edge*, %struct.Edge** %39, align 8 - %41 = getelementptr inbounds %struct.Edge, %struct.Edge* %40, i64 2 - %42 = getelementptr inbounds %struct.Edge, %struct.Edge* %41, i32 0, i32 0 - store i32 0, i32* %42, align 4 - %43 = load %struct.Graph*, %struct.Graph** %4, align 8 - %44 = getelementptr inbounds %struct.Graph, %struct.Graph* %43, i32 0, i32 2 - %45 = load %struct.Edge*, %struct.Edge** %44, align 8 - %46 = getelementptr inbounds %struct.Edge, %struct.Edge* %45, i64 2 - %47 = getelementptr inbounds %struct.Edge, %struct.Edge* %46, i32 0, i32 1 - store i32 3, i32* %47, align 4 - %48 = load %struct.Graph*, %struct.Graph** %4, align 8 - %49 = getelementptr inbounds %struct.Graph, %struct.Graph* %48, i32 0, i32 2 - %50 = load %struct.Edge*, %struct.Edge** %49, align 8 - %51 = getelementptr inbounds %struct.Edge, %struct.Edge* %50, i64 2 - %52 = getelementptr inbounds %struct.Edge, %struct.Edge* %51, i32 0, i32 2 - store i32 5, i32* %52, align 4 - %53 = load %struct.Graph*, %struct.Graph** %4, align 8 - %54 = getelementptr inbounds %struct.Graph, %struct.Graph* %53, i32 0, i32 2 - %55 = load %struct.Edge*, %struct.Edge** %54, align 8 - %56 = getelementptr inbounds %struct.Edge, %struct.Edge* %55, i64 3 - %57 = getelementptr inbounds %struct.Edge, %struct.Edge* %56, i32 0, i32 0 - store i32 1, i32* %57, align 4 - %58 = load %struct.Graph*, %struct.Graph** %4, align 8 - %59 = getelementptr inbounds %struct.Graph, %struct.Graph* %58, i32 0, i32 2 - %60 = load %struct.Edge*, %struct.Edge** %59, align 8 - %61 = getelementptr inbounds %struct.Edge, %struct.Edge* %60, i64 3 - %62 = getelementptr inbounds %struct.Edge, %struct.Edge* %61, i32 0, i32 1 - store i32 3, i32* %62, align 4 - %63 = load %struct.Graph*, %struct.Graph** %4, align 8 - %64 = getelementptr inbounds %struct.Graph, %struct.Graph* %63, i32 0, i32 2 - %65 = load %struct.Edge*, %struct.Edge** %64, align 8 - %66 = getelementptr inbounds %struct.Edge, %struct.Edge* %65, i64 3 - %67 = getelementptr inbounds %struct.Edge, %struct.Edge* %66, i32 0, i32 2 - store i32 15, i32* %67, align 4 - %68 = load %struct.Graph*, %struct.Graph** %4, align 8 - %69 = getelementptr inbounds %struct.Graph, %struct.Graph* %68, i32 0, i32 2 - %70 = load %struct.Edge*, %struct.Edge** %69, align 8 - %71 = getelementptr inbounds %struct.Edge, %struct.Edge* %70, i64 4 - %72 = getelementptr inbounds %struct.Edge, %struct.Edge* %71, i32 0, i32 0 - store i32 2, i32* %72, align 4 - %73 = load %struct.Graph*, %struct.Graph** %4, align 8 - %74 = getelementptr inbounds %struct.Graph, %struct.Graph* %73, i32 0, i32 2 - %75 = load %struct.Edge*, %struct.Edge** %74, align 8 - %76 = getelementptr inbounds %struct.Edge, %struct.Edge* %75, i64 4 - %77 = getelementptr inbounds %struct.Edge, %struct.Edge* %76, i32 0, i32 1 - store i32 3, i32* %77, align 4 - %78 = load %struct.Graph*, %struct.Graph** %4, align 8 - %79 = getelementptr inbounds %struct.Graph, %struct.Graph* %78, i32 0, i32 2 - %80 = load %struct.Edge*, %struct.Edge** %79, align 8 - %81 = getelementptr inbounds %struct.Edge, %struct.Edge* %80, i64 4 - %82 = getelementptr inbounds %struct.Edge, %struct.Edge* %81, i32 0, i32 2 - store i32 4, i32* %82, align 4 - %83 = load %struct.Graph*, %struct.Graph** %4, align 8 - call void @_Z10boruvkaMSTP5Graph(%struct.Graph* noundef %83) - ret i32 0 -} - -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) "frame-pointer"="all" "no-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, !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"} -!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/box-stacking.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/box-stacking.ll deleted file mode 100644 index ed6e41d6d..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/box-stacking.ll +++ /dev/null @@ -1,513 +0,0 @@ -; ModuleID = 'PE-benchmarks/box-stacking.cpp' -source_filename = "PE-benchmarks/box-stacking.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%struct.Box = type { i32, i32, i32 } - -@__const.main.arr = private unnamed_addr constant [4 x %struct.Box] [%struct.Box { i32 4, i32 6, i32 7 }, %struct.Box { i32 1, i32 2, i32 3 }, %struct.Box { i32 4, i32 5, i32 6 }, %struct.Box { i32 10, i32 12, i32 32 }], align 16 -@.str = private unnamed_addr constant [44 x i8] c"The maximum possible height of stack is %d\0A\00", align 1 - -; Function Attrs: 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 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp slt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: 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 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp sgt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: 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 - store i8* %1, i8** %4, align 8 - %5 = load i8*, i8** %4, align 8 - %6 = bitcast i8* %5 to %struct.Box* - %7 = getelementptr inbounds %struct.Box, %struct.Box* %6, i32 0, i32 2 - %8 = load i32, i32* %7, align 4 - %9 = load i8*, i8** %4, align 8 - %10 = bitcast i8* %9 to %struct.Box* - %11 = getelementptr inbounds %struct.Box, %struct.Box* %10, i32 0, i32 1 - %12 = load i32, i32* %11, align 4 - %13 = mul nsw i32 %8, %12 - %14 = load i8*, i8** %3, align 8 - %15 = bitcast i8* %14 to %struct.Box* - %16 = getelementptr inbounds %struct.Box, %struct.Box* %15, i32 0, i32 2 - %17 = load i32, i32* %16, align 4 - %18 = load i8*, i8** %3, align 8 - %19 = bitcast i8* %18 to %struct.Box* - %20 = getelementptr inbounds %struct.Box, %struct.Box* %19, i32 0, i32 1 - %21 = load i32, i32* %20, align 4 - %22 = mul nsw i32 %17, %21 - %23 = sub nsw i32 %13, %22 - ret i32 %23 -} - -; Function Attrs: 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 - %6 = alloca i64, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i64, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - store %struct.Box* %0, %struct.Box** %3, align 8 - store i32 %1, i32* %4, align 4 - %15 = load i32, i32* %4, align 4 - %16 = mul nsw i32 3, %15 - %17 = zext i32 %16 to i64 - %18 = call i8* @llvm.stacksave() - store i8* %18, i8** %5, align 8 - %19 = alloca %struct.Box, i64 %17, align 16 - store i64 %17, i64* %6, align 8 - store i32 0, i32* %7, align 4 - store i32 0, i32* %8, align 4 - br label %20 - -20: ; preds = %163, %2 - %21 = load i32, i32* %8, align 4 - %22 = load i32, i32* %4, align 4 - %23 = icmp slt i32 %21, %22 - br i1 %23, label %24, label %166 - -24: ; preds = %20 - %25 = load %struct.Box*, %struct.Box** %3, align 8 - %26 = load i32, i32* %8, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds %struct.Box, %struct.Box* %25, i64 %27 - %29 = getelementptr inbounds %struct.Box, %struct.Box* %28, i32 0, i32 0 - %30 = load i32, i32* %29, align 4 - %31 = load i32, i32* %7, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %32 - %34 = getelementptr inbounds %struct.Box, %struct.Box* %33, i32 0, i32 0 - store i32 %30, i32* %34, align 4 - %35 = load %struct.Box*, %struct.Box** %3, align 8 - %36 = load i32, i32* %8, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds %struct.Box, %struct.Box* %35, i64 %37 - %39 = getelementptr inbounds %struct.Box, %struct.Box* %38, i32 0, i32 2 - %40 = load i32, i32* %39, align 4 - %41 = load %struct.Box*, %struct.Box** %3, align 8 - %42 = load i32, i32* %8, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds %struct.Box, %struct.Box* %41, i64 %43 - %45 = getelementptr inbounds %struct.Box, %struct.Box* %44, i32 0, i32 1 - %46 = load i32, i32* %45, align 4 - %47 = call 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 - %51 = getelementptr inbounds %struct.Box, %struct.Box* %50, i32 0, i32 2 - store i32 %47, i32* %51, align 4 - %52 = load %struct.Box*, %struct.Box** %3, align 8 - %53 = load i32, i32* %8, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds %struct.Box, %struct.Box* %52, i64 %54 - %56 = getelementptr inbounds %struct.Box, %struct.Box* %55, i32 0, i32 2 - %57 = load i32, i32* %56, align 4 - %58 = load %struct.Box*, %struct.Box** %3, align 8 - %59 = load i32, i32* %8, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds %struct.Box, %struct.Box* %58, i64 %60 - %62 = getelementptr inbounds %struct.Box, %struct.Box* %61, i32 0, i32 1 - %63 = load i32, i32* %62, align 4 - %64 = call 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 - %68 = getelementptr inbounds %struct.Box, %struct.Box* %67, i32 0, i32 1 - store i32 %64, i32* %68, align 4 - %69 = load i32, i32* %7, align 4 - %70 = add nsw i32 %69, 1 - store i32 %70, i32* %7, align 4 - %71 = load %struct.Box*, %struct.Box** %3, align 8 - %72 = load i32, i32* %8, align 4 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds %struct.Box, %struct.Box* %71, i64 %73 - %75 = getelementptr inbounds %struct.Box, %struct.Box* %74, i32 0, i32 1 - %76 = load i32, i32* %75, align 4 - %77 = load i32, i32* %7, align 4 - %78 = sext i32 %77 to i64 - %79 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %78 - %80 = getelementptr inbounds %struct.Box, %struct.Box* %79, i32 0, i32 0 - store i32 %76, i32* %80, align 4 - %81 = load %struct.Box*, %struct.Box** %3, align 8 - %82 = load i32, i32* %8, align 4 - %83 = sext i32 %82 to i64 - %84 = getelementptr inbounds %struct.Box, %struct.Box* %81, i64 %83 - %85 = getelementptr inbounds %struct.Box, %struct.Box* %84, i32 0, i32 0 - %86 = load i32, i32* %85, align 4 - %87 = load %struct.Box*, %struct.Box** %3, align 8 - %88 = load i32, i32* %8, align 4 - %89 = sext i32 %88 to i64 - %90 = getelementptr inbounds %struct.Box, %struct.Box* %87, i64 %89 - %91 = getelementptr inbounds %struct.Box, %struct.Box* %90, i32 0, i32 2 - %92 = load i32, i32* %91, align 4 - %93 = call 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 - %97 = getelementptr inbounds %struct.Box, %struct.Box* %96, i32 0, i32 2 - store i32 %93, i32* %97, align 4 - %98 = load %struct.Box*, %struct.Box** %3, align 8 - %99 = load i32, i32* %8, align 4 - %100 = sext i32 %99 to i64 - %101 = getelementptr inbounds %struct.Box, %struct.Box* %98, i64 %100 - %102 = getelementptr inbounds %struct.Box, %struct.Box* %101, i32 0, i32 0 - %103 = load i32, i32* %102, align 4 - %104 = load %struct.Box*, %struct.Box** %3, align 8 - %105 = load i32, i32* %8, align 4 - %106 = sext i32 %105 to i64 - %107 = getelementptr inbounds %struct.Box, %struct.Box* %104, i64 %106 - %108 = getelementptr inbounds %struct.Box, %struct.Box* %107, i32 0, i32 2 - %109 = load i32, i32* %108, align 4 - %110 = call 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 - %114 = getelementptr inbounds %struct.Box, %struct.Box* %113, i32 0, i32 1 - store i32 %110, i32* %114, align 4 - %115 = load i32, i32* %7, align 4 - %116 = add nsw i32 %115, 1 - store i32 %116, i32* %7, align 4 - %117 = load %struct.Box*, %struct.Box** %3, align 8 - %118 = load i32, i32* %8, align 4 - %119 = sext i32 %118 to i64 - %120 = getelementptr inbounds %struct.Box, %struct.Box* %117, i64 %119 - %121 = getelementptr inbounds %struct.Box, %struct.Box* %120, i32 0, i32 2 - %122 = load i32, i32* %121, align 4 - %123 = load i32, i32* %7, align 4 - %124 = sext i32 %123 to i64 - %125 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %124 - %126 = getelementptr inbounds %struct.Box, %struct.Box* %125, i32 0, i32 0 - store i32 %122, i32* %126, align 4 - %127 = load %struct.Box*, %struct.Box** %3, align 8 - %128 = load i32, i32* %8, align 4 - %129 = sext i32 %128 to i64 - %130 = getelementptr inbounds %struct.Box, %struct.Box* %127, i64 %129 - %131 = getelementptr inbounds %struct.Box, %struct.Box* %130, i32 0, i32 0 - %132 = load i32, i32* %131, align 4 - %133 = load %struct.Box*, %struct.Box** %3, align 8 - %134 = load i32, i32* %8, align 4 - %135 = sext i32 %134 to i64 - %136 = getelementptr inbounds %struct.Box, %struct.Box* %133, i64 %135 - %137 = getelementptr inbounds %struct.Box, %struct.Box* %136, i32 0, i32 1 - %138 = load i32, i32* %137, align 4 - %139 = call 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 - %143 = getelementptr inbounds %struct.Box, %struct.Box* %142, i32 0, i32 2 - store i32 %139, i32* %143, align 4 - %144 = load %struct.Box*, %struct.Box** %3, align 8 - %145 = load i32, i32* %8, align 4 - %146 = sext i32 %145 to i64 - %147 = getelementptr inbounds %struct.Box, %struct.Box* %144, i64 %146 - %148 = getelementptr inbounds %struct.Box, %struct.Box* %147, i32 0, i32 0 - %149 = load i32, i32* %148, align 4 - %150 = load %struct.Box*, %struct.Box** %3, align 8 - %151 = load i32, i32* %8, align 4 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds %struct.Box, %struct.Box* %150, i64 %152 - %154 = getelementptr inbounds %struct.Box, %struct.Box* %153, i32 0, i32 1 - %155 = load i32, i32* %154, align 4 - %156 = call 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 - %160 = getelementptr inbounds %struct.Box, %struct.Box* %159, i32 0, i32 1 - store i32 %156, i32* %160, align 4 - %161 = load i32, i32* %7, align 4 - %162 = add nsw i32 %161, 1 - store i32 %162, i32* %7, align 4 - br label %163 - -163: ; preds = %24 - %164 = load i32, i32* %8, align 4 - %165 = add nsw i32 %164, 1 - store i32 %165, i32* %8, align 4 - br label %20, !llvm.loop !6 - -166: ; preds = %20 - %167 = load i32, i32* %4, align 4 - %168 = mul nsw i32 3, %167 - store i32 %168, i32* %4, align 4 - %169 = bitcast %struct.Box* %19 to i8* - %170 = load i32, i32* %4, align 4 - %171 = sext i32 %170 to i64 - call void @qsort(i8* 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 - store i64 %173, i64* %9, align 8 - store i32 0, i32* %10, align 4 - br label %175 - -175: ; preds = %188, %166 - %176 = load i32, i32* %10, align 4 - %177 = load i32, i32* %4, align 4 - %178 = icmp slt i32 %176, %177 - br i1 %178, label %179, label %191 - -179: ; preds = %175 - %180 = load i32, i32* %10, align 4 - %181 = sext i32 %180 to i64 - %182 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %181 - %183 = getelementptr inbounds %struct.Box, %struct.Box* %182, i32 0, i32 0 - %184 = load i32, i32* %183, align 4 - %185 = load i32, i32* %10, align 4 - %186 = sext i32 %185 to i64 - %187 = getelementptr inbounds i32, i32* %174, i64 %186 - store i32 %184, i32* %187, align 4 - br label %188 - -188: ; preds = %179 - %189 = load i32, i32* %10, align 4 - %190 = add nsw i32 %189, 1 - store i32 %190, i32* %10, align 4 - br label %175, !llvm.loop !8 - -191: ; preds = %175 - store i32 1, i32* %11, align 4 - br label %192 - -192: ; preds = %260, %191 - %193 = load i32, i32* %11, align 4 - %194 = load i32, i32* %4, align 4 - %195 = icmp slt i32 %193, %194 - br i1 %195, label %196, label %263 - -196: ; preds = %192 - store i32 0, i32* %12, align 4 - br label %197 - -197: ; preds = %256, %196 - %198 = load i32, i32* %12, align 4 - %199 = load i32, i32* %11, align 4 - %200 = icmp slt i32 %198, %199 - br i1 %200, label %201, label %259 - -201: ; preds = %197 - %202 = load i32, i32* %11, align 4 - %203 = sext i32 %202 to i64 - %204 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %203 - %205 = getelementptr inbounds %struct.Box, %struct.Box* %204, i32 0, i32 1 - %206 = load i32, i32* %205, align 4 - %207 = load i32, i32* %12, align 4 - %208 = sext i32 %207 to i64 - %209 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %208 - %210 = getelementptr inbounds %struct.Box, %struct.Box* %209, i32 0, i32 1 - %211 = load i32, i32* %210, align 4 - %212 = icmp slt i32 %206, %211 - br i1 %212, label %213, label %255 - -213: ; preds = %201 - %214 = load i32, i32* %11, align 4 - %215 = sext i32 %214 to i64 - %216 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %215 - %217 = getelementptr inbounds %struct.Box, %struct.Box* %216, i32 0, i32 2 - %218 = load i32, i32* %217, align 4 - %219 = load i32, i32* %12, align 4 - %220 = sext i32 %219 to i64 - %221 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %220 - %222 = getelementptr inbounds %struct.Box, %struct.Box* %221, i32 0, i32 2 - %223 = load i32, i32* %222, align 4 - %224 = icmp slt i32 %218, %223 - br i1 %224, label %225, label %255 - -225: ; preds = %213 - %226 = load i32, i32* %11, align 4 - %227 = sext i32 %226 to i64 - %228 = getelementptr inbounds i32, i32* %174, i64 %227 - %229 = load i32, i32* %228, align 4 - %230 = load i32, i32* %12, align 4 - %231 = sext i32 %230 to i64 - %232 = getelementptr inbounds i32, i32* %174, i64 %231 - %233 = load i32, i32* %232, align 4 - %234 = load i32, i32* %11, align 4 - %235 = sext i32 %234 to i64 - %236 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %235 - %237 = getelementptr inbounds %struct.Box, %struct.Box* %236, i32 0, i32 0 - %238 = load i32, i32* %237, align 4 - %239 = add nsw i32 %233, %238 - %240 = icmp slt i32 %229, %239 - br i1 %240, label %241, label %255 - -241: ; preds = %225 - %242 = load i32, i32* %12, align 4 - %243 = sext i32 %242 to i64 - %244 = getelementptr inbounds i32, i32* %174, i64 %243 - %245 = load i32, i32* %244, align 4 - %246 = load i32, i32* %11, align 4 - %247 = sext i32 %246 to i64 - %248 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %247 - %249 = getelementptr inbounds %struct.Box, %struct.Box* %248, i32 0, i32 0 - %250 = load i32, i32* %249, align 4 - %251 = add nsw i32 %245, %250 - %252 = load i32, i32* %11, align 4 - %253 = sext i32 %252 to i64 - %254 = getelementptr inbounds i32, i32* %174, i64 %253 - store i32 %251, i32* %254, align 4 - br label %255 - -255: ; preds = %241, %225, %213, %201 - br label %256 - -256: ; preds = %255 - %257 = load i32, i32* %12, align 4 - %258 = add nsw i32 %257, 1 - store i32 %258, i32* %12, align 4 - br label %197, !llvm.loop !9 - -259: ; preds = %197 - br label %260 - -260: ; preds = %259 - %261 = load i32, i32* %11, align 4 - %262 = add nsw i32 %261, 1 - store i32 %262, i32* %11, align 4 - br label %192, !llvm.loop !10 - -263: ; preds = %192 - store i32 -1, i32* %13, align 4 - store i32 0, i32* %14, align 4 - br label %264 - -264: ; preds = %281, %263 - %265 = load i32, i32* %14, align 4 - %266 = load i32, i32* %4, align 4 - %267 = icmp slt i32 %265, %266 - br i1 %267, label %268, label %284 - -268: ; preds = %264 - %269 = load i32, i32* %13, align 4 - %270 = load i32, i32* %14, align 4 - %271 = sext i32 %270 to i64 - %272 = getelementptr inbounds i32, i32* %174, i64 %271 - %273 = load i32, i32* %272, align 4 - %274 = icmp slt i32 %269, %273 - br i1 %274, label %275, label %280 - -275: ; preds = %268 - %276 = load i32, i32* %14, align 4 - %277 = sext i32 %276 to i64 - %278 = getelementptr inbounds i32, i32* %174, i64 %277 - %279 = load i32, i32* %278, align 4 - store i32 %279, i32* %13, align 4 - br label %280 - -280: ; preds = %275, %268 - br label %281 - -281: ; preds = %280 - %282 = load i32, i32* %14, align 4 - %283 = add nsw i32 %282, 1 - store i32 %283, i32* %14, align 4 - br label %264, !llvm.loop !11 - -284: ; preds = %264 - %285 = load i32, i32* %13, align 4 - %286 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %286) - ret i32 %285 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #2 - -declare 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: 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 - store i32 0, i32* %1, align 4 - %4 = bitcast [4 x %struct.Box]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([4 x %struct.Box]* @__const.main.arr to i8*), i64 48, i1 false) - store i32 4, i32* %3, align 4 - %5 = getelementptr inbounds [4 x %struct.Box], [4 x %struct.Box]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = call 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #5 - -declare i32 @printf(i8* noundef, ...) #3 - -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 = { "frame-pointer"="all" "no-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, !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"} -!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/boyer-moore-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/boyer-moore-algorithm.ll deleted file mode 100644 index 061dbf523..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/boyer-moore-algorithm.ll +++ /dev/null @@ -1,480 +0,0 @@ -; ModuleID = 'PE-benchmarks/boyer-moore-algorithm.cpp' -source_filename = "PE-benchmarks/boyer-moore-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } - -$_ZSt3maxIiERKT_S2_S2_ = comdat any - -$_ZNSt15__new_allocatorIcED2Ev = comdat any - -@_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 - -; 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) #0 { - %4 = alloca i32, align 4 - %5 = alloca i32*, align 8 - %6 = alloca i32, align 4 - store i32 %1, i32* %4, align 4 - store i32* %2, i32** %5, align 8 - store i32 0, i32* %6, align 4 - br label %7 - -7: ; preds = %15, %3 - %8 = load i32, i32* %6, align 4 - %9 = icmp slt i32 %8, 256 - br i1 %9, label %10, label %18 - -10: ; preds = %7 - %11 = load i32*, i32** %5, align 8 - %12 = load i32, i32* %6, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - store i32 -1, i32* %14, align 4 - br label %15 - -15: ; preds = %10 - %16 = load i32, i32* %6, align 4 - %17 = add nsw i32 %16, 1 - store i32 %17, i32* %6, align 4 - br label %7, !llvm.loop !6 - -18: ; preds = %7 - store i32 0, i32* %6, align 4 - br label %19 - -19: ; preds = %33, %18 - %20 = load i32, i32* %6, align 4 - %21 = load i32, i32* %4, align 4 - %22 = icmp slt i32 %20, %21 - br i1 %22, label %23, label %36 - -23: ; preds = %19 - %24 = load i32, i32* %6, align 4 - %25 = load i32*, i32** %5, align 8 - %26 = load i32, i32* %6, align 4 - %27 = sext i32 %26 to i64 - %28 = call 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 - %32 = getelementptr inbounds i32, i32* %25, i64 %31 - store i32 %24, i32* %32, align 4 - br label %33 - -33: ; preds = %23 - %34 = load i32, i32* %6, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %6, align 4 - br label %19, !llvm.loop !8 - -36: ; preds = %19 - ret void -} - -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: 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) #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca [256 x i32], align 16 - %6 = alloca %"class.std::__cxx11::basic_string", align 8 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) #6 - %14 = trunc i64 %13 to i32 - store i32 %14, i32* %3, align 4 - %15 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #6 - %16 = trunc i64 %15 to i32 - store i32 %16, i32* %4, align 4 - 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"* 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"* noundef nonnull align 8 dereferenceable(32) %6) #6 - store i32 0, i32* %9, align 4 - br label %20 - -20: ; preds = %101, %19 - %21 = load i32, i32* %9, align 4 - %22 = load i32, i32* %4, align 4 - %23 = load i32, i32* %3, align 4 - %24 = sub nsw i32 %22, %23 - %25 = icmp sle i32 %21, %24 - br i1 %25, label %26, label %102 - -26: ; preds = %20 - %27 = load i32, i32* %3, align 4 - %28 = sub nsw i32 %27, 1 - store i32 %28, i32* %10, align 4 - br label %29 - -29: ; preds = %48, %26 - %30 = load i32, i32* %10, align 4 - %31 = icmp sge i32 %30, 0 - br i1 %31, label %32, label %46 - -32: ; preds = %29 - %33 = load i32, i32* %10, align 4 - %34 = sext i32 %33 to i64 - %35 = call 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 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 - br label %46 - -46: ; preds = %32, %29 - %47 = phi i1 [ false, %29 ], [ %45, %32 ] - br i1 %47, label %48, label %55 - -48: ; preds = %46 - %49 = load i32, i32* %10, align 4 - %50 = add nsw i32 %49, -1 - store i32 %50, i32* %10, align 4 - br label %29, !llvm.loop !9 - -51: ; preds = %2 - %52 = landingpad { i8*, i32 } - cleanup - %53 = extractvalue { i8*, i32 } %52, 0 - store i8* %53, i8** %7, align 8 - %54 = extractvalue { i8*, i32 } %52, 1 - store i32 %54, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #6 - br label %103 - -55: ; preds = %46 - %56 = load i32, i32* %10, align 4 - %57 = icmp slt i32 %56, 0 - br i1 %57, label %58, label %85 - -58: ; preds = %55 - %59 = call noundef 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 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 - %66 = load i32, i32* %4, align 4 - %67 = icmp slt i32 %65, %66 - br i1 %67, label %68, label %80 - -68: ; preds = %58 - %69 = load i32, i32* %3, align 4 - %70 = load i32, i32* %9, align 4 - %71 = load i32, i32* %3, align 4 - %72 = add nsw i32 %70, %71 - %73 = sext i32 %72 to i64 - %74 = call 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 - %78 = load i32, i32* %77, align 4 - %79 = sub nsw i32 %69, %78 - br label %81 - -80: ; preds = %58 - br label %81 - -81: ; preds = %80, %68 - %82 = phi i32 [ %79, %68 ], [ 1, %80 ] - %83 = load i32, i32* %9, align 4 - %84 = add nsw i32 %83, %82 - store i32 %84, i32* %9, align 4 - br label %101 - -85: ; preds = %55 - store i32 1, i32* %11, align 4 - %86 = load i32, i32* %10, align 4 - %87 = load i32, i32* %9, align 4 - %88 = load i32, i32* %10, align 4 - %89 = add nsw i32 %87, %88 - %90 = sext i32 %89 to i64 - %91 = call 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 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 - store i32 %100, i32* %9, align 4 - br label %101 - -101: ; preds = %85, %81 - br label %20, !llvm.loop !10 - -102: ; preds = %20 - ret void - -103: ; preds = %51 - %104 = load i8*, i8** %7, align 8 - %105 = load i32, i32* %8, align 4 - %106 = insertvalue { i8*, i32 } undef, i8* %104, 0 - %107 = insertvalue { i8*, i32 } %106, i32 %105, 1 - resume { i8*, i32 } %107 -} - -; Function Attrs: nounwind -declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) #2 - -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 i32 @__gxx_personality_v0(...) - -; Function Attrs: nounwind -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 - -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 - -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 - -; 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) #3 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: noinline norecurse uwtable -define dso_local noundef i32 @main() #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca %"class.std::__new_allocator"*, align 8 - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"class.std::allocator"*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"class.std::__cxx11::basic_string", align 8 - %11 = alloca %"class.std::allocator", align 1 - %12 = alloca i8*, align 8 - %13 = alloca i32, align 4 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - %15 = alloca %"class.std::allocator", align 1 - %16 = alloca %"class.std::__cxx11::basic_string", align 8 - %17 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %9, align 4 - store %"class.std::allocator"* %11, %"class.std::allocator"** %8, align 8 - %18 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %19 = bitcast %"class.std::allocator"* %18 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %19, %"class.std::__new_allocator"** %1, align 8 - %20 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %1, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10, 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) %11) - to label %21 unwind label %34 - -21: ; preds = %0 - store %"class.std::allocator"* %11, %"class.std::allocator"** %6, align 8 - %22 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %23 = bitcast %"class.std::allocator"* %22 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %23) #6 - store %"class.std::allocator"* %15, %"class.std::allocator"** %7, align 8 - %24 = load %"class.std::allocator"*, %"class.std::allocator"** %7, align 8 - %25 = bitcast %"class.std::allocator"* %24 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %25, %"class.std::__new_allocator"** %2, align 8 - %26 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14, 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) %15) - to label %27 unwind label %40 - -27: ; preds = %21 - store %"class.std::allocator"* %15, %"class.std::allocator"** %4, align 8 - %28 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %29 = bitcast %"class.std::allocator"* %28 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %29) #6 - 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) %10) - to label %30 unwind label %46 - -30: ; preds = %27 - 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) %14) - to label %31 unwind label %50 - -31: ; preds = %30 - invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %16, %"class.std::__cxx11::basic_string"* noundef %17) - to label %32 unwind label %54 - -32: ; preds = %31 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17) #6 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #6 - store i32 0, i32* %9, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #6 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #6 - %33 = load i32, i32* %9, align 4 - ret i32 %33 - -34: ; preds = %0 - %35 = landingpad { i8*, i32 } - cleanup - %36 = extractvalue { i8*, i32 } %35, 0 - store i8* %36, i8** %12, align 8 - %37 = extractvalue { i8*, i32 } %35, 1 - store i32 %37, i32* %13, align 4 - store %"class.std::allocator"* %11, %"class.std::allocator"** %5, align 8 - %38 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %39 = bitcast %"class.std::allocator"* %38 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %39) #6 - br label %61 - -40: ; preds = %21 - %41 = landingpad { i8*, i32 } - cleanup - %42 = extractvalue { i8*, i32 } %41, 0 - store i8* %42, i8** %12, align 8 - %43 = extractvalue { i8*, i32 } %41, 1 - store i32 %43, i32* %13, align 4 - store %"class.std::allocator"* %15, %"class.std::allocator"** %3, align 8 - %44 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %45 = bitcast %"class.std::allocator"* %44 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %45) #6 - br label %60 - -46: ; preds = %27 - %47 = landingpad { i8*, i32 } - cleanup - %48 = extractvalue { i8*, i32 } %47, 0 - store i8* %48, i8** %12, align 8 - %49 = extractvalue { i8*, i32 } %47, 1 - store i32 %49, i32* %13, align 4 - br label %59 - -50: ; preds = %30 - %51 = landingpad { i8*, i32 } - cleanup - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %12, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %13, align 4 - br label %58 - -54: ; preds = %31 - %55 = landingpad { i8*, i32 } - cleanup - %56 = extractvalue { i8*, i32 } %55, 0 - store i8* %56, i8** %12, align 8 - %57 = extractvalue { i8*, i32 } %55, 1 - store i32 %57, i32* %13, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17) #6 - br label %58 - -58: ; preds = %54, %50 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #6 - br label %59 - -59: ; preds = %58, %46 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #6 - br label %60 - -60: ; preds = %59, %40 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #6 - br label %61 - -61: ; preds = %60, %34 - %62 = load i8*, i8** %12, align 8 - %63 = load i32, i32* %13, align 4 - %64 = insertvalue { i8*, i32 } undef, i8* %62, 0 - %65 = insertvalue { i8*, i32 } %64, i32 %63, 1 - resume { i8*, i32 } %65 -} - -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: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -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 = { 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 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 #4 = { 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 = { 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 } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/channel-assignment.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/channel-assignment.ll deleted file mode 100644 index 28d55d6e9..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/channel-assignment.ll +++ /dev/null @@ -1,277 +0,0 @@ -; ModuleID = 'PE-benchmarks/channel-assignment.cpp' -source_filename = "PE-benchmarks/channel-assignment.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 -@.str.3 = private unnamed_addr constant [5 x i8] c"-> R\00", align 1 - -; 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) #0 { - %5 = alloca i1, align 1 - %6 = alloca [4 x i32]*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i8*, align 8 - %9 = alloca i32*, align 8 - %10 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %6, align 8 - store i32 %1, i32* %7, align 4 - store i8* %2, i8** %8, align 8 - store i32* %3, i32** %9, align 8 - store i32 0, i32* %10, align 4 - br label %11 - -11: ; preds = %60, %4 - %12 = load i32, i32* %10, align 4 - %13 = icmp slt i32 %12, 4 - br i1 %13, label %14, label %63 - -14: ; preds = %11 - %15 = load [4 x i32]*, [4 x i32]** %6, align 8 - %16 = load i32, i32* %7, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds [4 x i32], [4 x i32]* %15, i64 %17 - %19 = load i32, i32* %10, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [4 x i32], [4 x i32]* %18, i64 0, i64 %20 - %22 = load i32, i32* %21, align 4 - %23 = icmp sgt i32 %22, 0 - br i1 %23, label %24, label %59 - -24: ; preds = %14 - %25 = load i8*, i8** %8, align 8 - %26 = load i32, i32* %10, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds i8, i8* %25, i64 %27 - %29 = load i8, i8* %28, align 1 - %30 = trunc i8 %29 to i1 - br i1 %30, label %59, label %31 - -31: ; preds = %24 - %32 = load i8*, i8** %8, align 8 - %33 = load i32, i32* %10, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds i8, i8* %32, i64 %34 - store i8 1, i8* %35, align 1 - %36 = load i32*, i32** %9, align 8 - %37 = load i32, i32* %10, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i32, i32* %36, i64 %38 - %40 = load i32, i32* %39, align 4 - %41 = icmp slt i32 %40, 0 - br i1 %41, label %52, label %42 - -42: ; preds = %31 - %43 = load [4 x i32]*, [4 x i32]** %6, align 8 - %44 = load i32*, i32** %9, align 8 - %45 = load i32, i32* %10, align 4 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds i32, i32* %44, i64 %46 - %48 = load i32, i32* %47, align 4 - %49 = load i8*, i8** %8, align 8 - %50 = load i32*, i32** %9, align 8 - %51 = call 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 - %53 = load i32, i32* %7, align 4 - %54 = load i32*, i32** %9, align 8 - %55 = load i32, i32* %10, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i32, i32* %54, i64 %56 - store i32 %53, i32* %57, align 4 - store i1 true, i1* %5, align 1 - br label %64 - -58: ; preds = %42 - br label %59 - -59: ; preds = %58, %24, %14 - br label %60 - -60: ; preds = %59 - %61 = load i32, i32* %10, align 4 - %62 = add nsw i32 %61, 1 - store i32 %62, i32* %10, align 4 - br label %11, !llvm.loop !6 - -63: ; preds = %11 - store i1 false, i1* %5, align 1 - br label %64 - -64: ; preds = %63, %52 - %65 = load i1, i1* %5, align 1 - ret i1 %65 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z6maxBPMPA4_i([4 x i32]* noundef %0) #0 { - %2 = alloca [4 x i32]*, align 8 - %3 = alloca [4 x i32], align 16 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca [4 x i8], align 1 - %7 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %2, align 8 - %8 = getelementptr inbounds [4 x i32], [4 x i32]* %3, i64 0, i64 0 - %9 = bitcast i32* %8 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %9, i8 -1, i64 16, i1 false) - store i32 0, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %10 - -10: ; preds = %24, %1 - %11 = load i32, i32* %5, align 4 - %12 = icmp slt i32 %11, 3 - br i1 %12, label %13, label %27 - -13: ; preds = %10 - %14 = getelementptr inbounds [4 x i8], [4 x i8]* %6, i64 0, i64 0 - call void @llvm.memset.p0i8.i64(i8* align 1 %14, i8 0, i64 4, i1 false) - %15 = load [4 x i32]*, [4 x i32]** %2, align 8 - %16 = load i32, i32* %5, align 4 - %17 = getelementptr inbounds [4 x i8], [4 x i8]* %6, i64 0, i64 0 - %18 = getelementptr inbounds [4 x i32], [4 x i32]* %3, i64 0, i64 0 - %19 = call 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 - %21 = load i32, i32* %4, align 4 - %22 = add nsw i32 %21, 1 - store i32 %22, i32* %4, align 4 - br label %23 - -23: ; preds = %20, %13 - br label %24 - -24: ; preds = %23 - %25 = load i32, i32* %5, align 4 - %26 = add nsw i32 %25, 1 - store i32 %26, i32* %5, align 4 - br label %10, !llvm.loop !8 - -27: ; preds = %10 - %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 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 - -32: ; preds = %56, %27 - %33 = load i32, i32* %7, align 4 - %34 = icmp slt i32 %33, 4 - br i1 %34, label %35, label %59 - -35: ; preds = %32 - %36 = load i32, i32* %7, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds [4 x i32], [4 x i32]* %3, i64 0, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = add nsw i32 %39, 1 - %41 = icmp ne i32 %40, 0 - br i1 %41, label %42, label %55 - -42: ; preds = %35 - %43 = call noundef 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 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 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 - br label %56 - -56: ; preds = %55 - %57 = load i32, i32* %7, align 4 - %58 = add nsw i32 %57, 1 - store i32 %58, i32* %7, align 4 - br label %32, !llvm.loop !9 - -59: ; preds = %32 - %60 = load i32, i32* %4, align 4 - ret i32 %60 -} - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #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) #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [3 x [4 x i32]], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [3 x [4 x i32]]* %2 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %4, i8 0, i64 48, i1 false) - %5 = bitcast i8* %4 to [3 x [4 x i32]]* - %6 = getelementptr inbounds [3 x [4 x i32]], [3 x [4 x i32]]* %5, i32 0, i32 0 - %7 = getelementptr inbounds [4 x i32], [4 x i32]* %6, i32 0, i32 1 - store i32 2, i32* %7, align 4 - %8 = getelementptr inbounds [3 x [4 x i32]], [3 x [4 x i32]]* %5, i32 0, i32 1 - %9 = getelementptr inbounds [4 x i32], [4 x i32]* %8, i32 0, i32 0 - store i32 3, i32* %9, align 16 - %10 = getelementptr inbounds [4 x i32], [4 x i32]* %8, i32 0, i32 2 - store i32 1, i32* %10, align 8 - %11 = getelementptr inbounds [3 x [4 x i32]], [3 x [4 x i32]]* %5, i32 0, i32 2 - %12 = getelementptr inbounds [4 x i32], [4 x i32]* %11, i32 0, i32 0 - store i32 2, i32* %12, align 16 - %13 = getelementptr inbounds [4 x i32], [4 x i32]* %11, i32 0, i32 1 - store i32 4, i32* %13, align 4 - %14 = getelementptr inbounds [3 x [4 x i32]], [3 x [4 x i32]]* %2, i64 0, i64 0 - %15 = call noundef i32 @_Z6maxBPMPA4_i([4 x i32]* noundef %14) - store i32 %15, i32* %3, align 4 - ret i32 0 -} - -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 = { argmemonly nofree nounwind willreturn writeonly } -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" } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/coin-change.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/coin-change.ll deleted file mode 100644 index 828488d00..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/coin-change.ll +++ /dev/null @@ -1,245 +0,0 @@ -; ModuleID = 'PE-benchmarks/coin-change.cpp' -source_filename = "PE-benchmarks/coin-change.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@__const.main.arr = private unnamed_addr constant [3 x i32] [i32 1, i32 2, i32 3], align 4 -@_ZSt4cout = external global %"class.std::basic_ostream", align 8 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z5countPiii(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 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i8*, align 8 - %12 = alloca i64, align 8 - %13 = alloca i64, align 8 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %14 = load i32, i32* %6, align 4 - %15 = add nsw i32 %14, 1 - %16 = zext i32 %15 to i64 - %17 = load i32, i32* %5, align 4 - %18 = zext i32 %17 to i64 - %19 = call i8* @llvm.stacksave() - store i8* %19, i8** %11, align 8 - %20 = mul nuw i64 %16, %18 - %21 = alloca i32, i64 %20, align 16 - store i64 %16, i64* %12, align 8 - store i64 %18, i64* %13, align 8 - store i32 0, i32* %7, align 4 - br label %22 - -22: ; preds = %32, %3 - %23 = load i32, i32* %7, align 4 - %24 = load i32, i32* %5, align 4 - %25 = icmp slt i32 %23, %24 - br i1 %25, label %26, label %35 - -26: ; preds = %22 - %27 = mul nsw i64 0, %18 - %28 = getelementptr inbounds i32, i32* %21, i64 %27 - %29 = load i32, i32* %7, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i32, i32* %28, i64 %30 - store i32 1, i32* %31, align 4 - br label %32 - -32: ; preds = %26 - %33 = load i32, i32* %7, align 4 - %34 = add nsw i32 %33, 1 - store i32 %34, i32* %7, align 4 - br label %22, !llvm.loop !6 - -35: ; preds = %22 - store i32 1, i32* %7, align 4 - br label %36 - -36: ; preds = %102, %35 - %37 = load i32, i32* %7, align 4 - %38 = load i32, i32* %6, align 4 - %39 = add nsw i32 %38, 1 - %40 = icmp slt i32 %37, %39 - br i1 %40, label %41, label %105 - -41: ; preds = %36 - store i32 0, i32* %8, align 4 - br label %42 - -42: ; preds = %98, %41 - %43 = load i32, i32* %8, align 4 - %44 = load i32, i32* %5, align 4 - %45 = icmp slt i32 %43, %44 - br i1 %45, label %46, label %101 - -46: ; preds = %42 - %47 = load i32, i32* %7, align 4 - %48 = load i32*, i32** %4, align 8 - %49 = load i32, i32* %8, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %48, i64 %50 - %52 = load i32, i32* %51, align 4 - %53 = sub nsw i32 %47, %52 - %54 = icmp sge i32 %53, 0 - br i1 %54, label %55, label %70 - -55: ; preds = %46 - %56 = load i32, i32* %7, align 4 - %57 = load i32*, i32** %4, align 8 - %58 = load i32, i32* %8, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds i32, i32* %57, i64 %59 - %61 = load i32, i32* %60, align 4 - %62 = sub nsw i32 %56, %61 - %63 = sext i32 %62 to i64 - %64 = mul nsw i64 %63, %18 - %65 = getelementptr inbounds i32, i32* %21, i64 %64 - %66 = load i32, i32* %8, align 4 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds i32, i32* %65, i64 %67 - %69 = load i32, i32* %68, align 4 - br label %71 - -70: ; preds = %46 - br label %71 - -71: ; preds = %70, %55 - %72 = phi i32 [ %69, %55 ], [ 0, %70 ] - store i32 %72, i32* %9, align 4 - %73 = load i32, i32* %8, align 4 - %74 = icmp sge i32 %73, 1 - br i1 %74, label %75, label %85 - -75: ; preds = %71 - %76 = load i32, i32* %7, align 4 - %77 = sext i32 %76 to i64 - %78 = mul nsw i64 %77, %18 - %79 = getelementptr inbounds i32, i32* %21, i64 %78 - %80 = load i32, i32* %8, align 4 - %81 = sub nsw i32 %80, 1 - %82 = sext i32 %81 to i64 - %83 = getelementptr inbounds i32, i32* %79, i64 %82 - %84 = load i32, i32* %83, align 4 - br label %86 - -85: ; preds = %71 - br label %86 - -86: ; preds = %85, %75 - %87 = phi i32 [ %84, %75 ], [ 0, %85 ] - store i32 %87, i32* %10, align 4 - %88 = load i32, i32* %9, align 4 - %89 = load i32, i32* %10, align 4 - %90 = add nsw i32 %88, %89 - %91 = load i32, i32* %7, align 4 - %92 = sext i32 %91 to i64 - %93 = mul nsw i64 %92, %18 - %94 = getelementptr inbounds i32, i32* %21, i64 %93 - %95 = load i32, i32* %8, align 4 - %96 = sext i32 %95 to i64 - %97 = getelementptr inbounds i32, i32* %94, i64 %96 - store i32 %90, i32* %97, align 4 - br label %98 - -98: ; preds = %86 - %99 = load i32, i32* %8, align 4 - %100 = add nsw i32 %99, 1 - store i32 %100, i32* %8, align 4 - br label %42, !llvm.loop !8 - -101: ; preds = %42 - br label %102 - -102: ; preds = %101 - %103 = load i32, i32* %7, align 4 - %104 = add nsw i32 %103, 1 - store i32 %104, i32* %7, align 4 - br label %36, !llvm.loop !9 - -105: ; preds = %36 - %106 = load i32, i32* %6, align 4 - %107 = sext i32 %106 to i64 - %108 = mul nsw i64 %107, %18 - %109 = getelementptr inbounds i32, i32* %21, i64 %108 - %110 = load i32, i32* %5, align 4 - %111 = sub nsw i32 %110, 1 - %112 = sext i32 %111 to i64 - %113 = getelementptr inbounds i32, i32* %109, i64 %112 - %114 = load i32, i32* %113, align 4 - %115 = load i8*, i8** %11, align 8 - call void @llvm.stackrestore(i8* %115) - ret i32 %114 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca [3 x i32], align 4 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [3 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %5, i8* align 4 bitcast ([3 x i32]* @__const.main.arr to i8*), i64 12, i1 false) - store i32 3, i32* %3, align 4 - store i32 4, i32* %4, align 4 - %6 = getelementptr inbounds [3 x i32], [3 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = load i32, i32* %4, align 4 - %9 = call 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 - -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 = { 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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/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 deleted file mode 100644 index 97a7fef43..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/collect-maximum-points-in-a-grid-using-two-traversals.ll +++ /dev/null @@ -1,474 +0,0 @@ -; ModuleID = 'PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp' -source_filename = "PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt3maxIiERKT_S2_S2_ = comdat any - -@__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 global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [23 x i8] c"Maximum collection is \00", align 1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z7isValidiii(i32 noundef %0, i32 noundef %1, i32 noundef %2) #0 { - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store i32 %0, i32* %4, align 4 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load i32, i32* %4, align 4 - %8 = icmp sge i32 %7, 0 - br i1 %8, label %9, label %24 - -9: ; preds = %3 - %10 = load i32, i32* %4, align 4 - %11 = icmp slt i32 %10, 5 - br i1 %11, label %12, label %24 - -12: ; preds = %9 - %13 = load i32, i32* %5, align 4 - %14 = icmp sge i32 %13, 0 - br i1 %14, label %15, label %24 - -15: ; preds = %12 - %16 = load i32, i32* %5, align 4 - %17 = icmp slt i32 %16, 4 - br i1 %17, label %18, label %24 - -18: ; preds = %15 - %19 = load i32, i32* %6, align 4 - %20 = icmp sge i32 %19, 0 - br i1 %20, label %21, label %24 - -21: ; preds = %18 - %22 = load i32, i32* %6, align 4 - %23 = icmp slt i32 %22, 4 - br label %24 - -24: ; preds = %21, %18, %15, %12, %9, %3 - %25 = phi i1 [ false, %18 ], [ false, %15 ], [ false, %12 ], [ false, %9 ], [ false, %3 ], [ %23, %21 ] - ret i1 %25 -} - -; Function Attrs: 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) #1 { - %6 = alloca i32, align 4 - %7 = alloca [4 x i32]*, align 8 - %8 = alloca [4 x [4 x i32]]*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - %18 = alloca i32, align 4 - %19 = alloca i32, align 4 - %20 = alloca i32, align 4 - %21 = alloca i32, align 4 - %22 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %7, align 8 - store [4 x [4 x i32]]* %1, [4 x [4 x i32]]** %8, align 8 - store i32 %2, i32* %9, align 4 - store i32 %3, i32* %10, align 4 - store i32 %4, i32* %11, align 4 - %23 = load i32, i32* %9, align 4 - %24 = load i32, i32* %10, align 4 - %25 = load i32, i32* %11, align 4 - %26 = call noundef zeroext i1 @_Z7isValidiii(i32 noundef %23, i32 noundef %24, i32 noundef %25) - br i1 %26, label %28, label %27 - -27: ; preds = %5 - store i32 -2147483648, i32* %6, align 4 - br label %254 - -28: ; preds = %5 - %29 = load i32, i32* %9, align 4 - %30 = icmp eq i32 %29, 4 - br i1 %30, label %31, label %70 - -31: ; preds = %28 - %32 = load i32, i32* %10, align 4 - %33 = icmp eq i32 %32, 0 - br i1 %33, label %34, label %70 - -34: ; preds = %31 - %35 = load i32, i32* %11, align 4 - %36 = icmp eq i32 %35, 3 - br i1 %36, label %37, label %70 - -37: ; preds = %34 - %38 = load i32, i32* %10, align 4 - %39 = load i32, i32* %11, align 4 - %40 = icmp eq i32 %38, %39 - br i1 %40, label %41, label %50 - -41: ; preds = %37 - %42 = load [4 x i32]*, [4 x i32]** %7, align 8 - %43 = load i32, i32* %9, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds [4 x i32], [4 x i32]* %42, i64 %44 - %46 = load i32, i32* %10, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds [4 x i32], [4 x i32]* %45, i64 0, i64 %47 - %49 = load i32, i32* %48, align 4 - br label %68 - -50: ; preds = %37 - %51 = load [4 x i32]*, [4 x i32]** %7, align 8 - %52 = load i32, i32* %9, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds [4 x i32], [4 x i32]* %51, i64 %53 - %55 = load i32, i32* %10, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds [4 x i32], [4 x i32]* %54, i64 0, i64 %56 - %58 = load i32, i32* %57, align 4 - %59 = load [4 x i32]*, [4 x i32]** %7, align 8 - %60 = load i32, i32* %9, align 4 - %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds [4 x i32], [4 x i32]* %59, i64 %61 - %63 = load i32, i32* %11, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds [4 x i32], [4 x i32]* %62, i64 0, i64 %64 - %66 = load i32, i32* %65, align 4 - %67 = add nsw i32 %58, %66 - br label %68 - -68: ; preds = %50, %41 - %69 = phi i32 [ %49, %41 ], [ %67, %50 ] - store i32 %69, i32* %6, align 4 - br label %254 - -70: ; preds = %34, %31, %28 - %71 = load i32, i32* %9, align 4 - %72 = icmp eq i32 %71, 4 - br i1 %72, label %73, label %74 - -73: ; preds = %70 - store i32 -2147483648, i32* %6, align 4 - br label %254 - -74: ; preds = %70 - %75 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %76 = load i32, i32* %9, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %75, i64 %77 - %79 = load i32, i32* %10, align 4 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %78, i64 0, i64 %80 - %82 = load i32, i32* %11, align 4 - %83 = sext i32 %82 to i64 - %84 = getelementptr inbounds [4 x i32], [4 x i32]* %81, i64 0, i64 %83 - %85 = load i32, i32* %84, align 4 - %86 = icmp ne i32 %85, -1 - br i1 %86, label %87, label %99 - -87: ; preds = %74 - %88 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %89 = load i32, i32* %9, align 4 - %90 = sext i32 %89 to i64 - %91 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %88, i64 %90 - %92 = load i32, i32* %10, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %91, i64 0, i64 %93 - %95 = load i32, i32* %11, align 4 - %96 = sext i32 %95 to i64 - %97 = getelementptr inbounds [4 x i32], [4 x i32]* %94, i64 0, i64 %96 - %98 = load i32, i32* %97, align 4 - store i32 %98, i32* %6, align 4 - br label %254 - -99: ; preds = %74 - store i32 -2147483648, i32* %12, align 4 - %100 = load i32, i32* %10, align 4 - %101 = load i32, i32* %11, align 4 - %102 = icmp eq i32 %100, %101 - br i1 %102, label %103, label %112 - -103: ; preds = %99 - %104 = load [4 x i32]*, [4 x i32]** %7, align 8 - %105 = load i32, i32* %9, align 4 - %106 = sext i32 %105 to i64 - %107 = getelementptr inbounds [4 x i32], [4 x i32]* %104, i64 %106 - %108 = load i32, i32* %10, align 4 - %109 = sext i32 %108 to i64 - %110 = getelementptr inbounds [4 x i32], [4 x i32]* %107, i64 0, i64 %109 - %111 = load i32, i32* %110, align 4 - br label %130 - -112: ; preds = %99 - %113 = load [4 x i32]*, [4 x i32]** %7, align 8 - %114 = load i32, i32* %9, align 4 - %115 = sext i32 %114 to i64 - %116 = getelementptr inbounds [4 x i32], [4 x i32]* %113, i64 %115 - %117 = load i32, i32* %10, align 4 - %118 = sext i32 %117 to i64 - %119 = getelementptr inbounds [4 x i32], [4 x i32]* %116, i64 0, i64 %118 - %120 = load i32, i32* %119, align 4 - %121 = load [4 x i32]*, [4 x i32]** %7, align 8 - %122 = load i32, i32* %9, align 4 - %123 = sext i32 %122 to i64 - %124 = getelementptr inbounds [4 x i32], [4 x i32]* %121, i64 %123 - %125 = load i32, i32* %11, align 4 - %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds [4 x i32], [4 x i32]* %124, i64 0, i64 %126 - %128 = load i32, i32* %127, align 4 - %129 = add nsw i32 %120, %128 - br label %130 - -130: ; preds = %112, %103 - %131 = phi i32 [ %111, %103 ], [ %129, %112 ] - store i32 %131, i32* %13, align 4 - %132 = load i32, i32* %13, align 4 - %133 = load [4 x i32]*, [4 x i32]** %7, align 8 - %134 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %135 = load i32, i32* %9, align 4 - %136 = add nsw i32 %135, 1 - %137 = load i32, i32* %10, align 4 - %138 = load i32, i32* %11, align 4 - %139 = sub nsw i32 %138, 1 - %140 = call 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 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 - %145 = load [4 x i32]*, [4 x i32]** %7, align 8 - %146 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %147 = load i32, i32* %9, align 4 - %148 = add nsw i32 %147, 1 - %149 = load i32, i32* %10, align 4 - %150 = load i32, i32* %11, align 4 - %151 = add nsw i32 %150, 1 - %152 = call 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 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 - %157 = load [4 x i32]*, [4 x i32]** %7, align 8 - %158 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %159 = load i32, i32* %9, align 4 - %160 = add nsw i32 %159, 1 - %161 = load i32, i32* %10, align 4 - %162 = load i32, i32* %11, align 4 - %163 = call 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 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 - %168 = load [4 x i32]*, [4 x i32]** %7, align 8 - %169 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %170 = load i32, i32* %9, align 4 - %171 = add nsw i32 %170, 1 - %172 = load i32, i32* %10, align 4 - %173 = sub nsw i32 %172, 1 - %174 = load i32, i32* %11, align 4 - %175 = call 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 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 - %180 = load [4 x i32]*, [4 x i32]** %7, align 8 - %181 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %182 = load i32, i32* %9, align 4 - %183 = add nsw i32 %182, 1 - %184 = load i32, i32* %10, align 4 - %185 = sub nsw i32 %184, 1 - %186 = load i32, i32* %11, align 4 - %187 = sub nsw i32 %186, 1 - %188 = call 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 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 - %193 = load [4 x i32]*, [4 x i32]** %7, align 8 - %194 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %195 = load i32, i32* %9, align 4 - %196 = add nsw i32 %195, 1 - %197 = load i32, i32* %10, align 4 - %198 = sub nsw i32 %197, 1 - %199 = load i32, i32* %11, align 4 - %200 = add nsw i32 %199, 1 - %201 = call 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 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 - %206 = load [4 x i32]*, [4 x i32]** %7, align 8 - %207 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %208 = load i32, i32* %9, align 4 - %209 = add nsw i32 %208, 1 - %210 = load i32, i32* %10, align 4 - %211 = add nsw i32 %210, 1 - %212 = load i32, i32* %11, align 4 - %213 = call 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 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 - %218 = load [4 x i32]*, [4 x i32]** %7, align 8 - %219 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %220 = load i32, i32* %9, align 4 - %221 = add nsw i32 %220, 1 - %222 = load i32, i32* %10, align 4 - %223 = add nsw i32 %222, 1 - %224 = load i32, i32* %11, align 4 - %225 = sub nsw i32 %224, 1 - %226 = call 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 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 - %231 = load [4 x i32]*, [4 x i32]** %7, align 8 - %232 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %233 = load i32, i32* %9, align 4 - %234 = add nsw i32 %233, 1 - %235 = load i32, i32* %10, align 4 - %236 = add nsw i32 %235, 1 - %237 = load i32, i32* %11, align 4 - %238 = add nsw i32 %237, 1 - %239 = call 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 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 - %244 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %245 = load i32, i32* %9, align 4 - %246 = sext i32 %245 to i64 - %247 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %244, i64 %246 - %248 = load i32, i32* %10, align 4 - %249 = sext i32 %248 to i64 - %250 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %247, i64 0, i64 %249 - %251 = load i32, i32* %11, align 4 - %252 = sext i32 %251 to i64 - %253 = getelementptr inbounds [4 x i32], [4 x i32]* %250, i64 0, i64 %252 - store i32 %243, i32* %253, align 4 - store i32 %243, i32* %6, align 4 - br label %254 - -254: ; preds = %130, %87, %73, %68, %27 - %255 = load i32, i32* %6, align 4 - ret i32 %255 -} - -; Function Attrs: 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) #0 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z15geMaxCollectionPA4_i([4 x i32]* noundef %0) #1 { - %2 = alloca [4 x i32]*, align 8 - %3 = alloca [5 x [4 x [4 x i32]]], align 16 - store [4 x i32]* %0, [4 x i32]** %2, align 8 - %4 = getelementptr inbounds [5 x [4 x [4 x i32]]], [5 x [4 x [4 x i32]]]* %3, i64 0, i64 0 - %5 = bitcast [4 x [4 x i32]]* %4 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %5, i8 -1, i64 320, i1 false) - %6 = load [4 x i32]*, [4 x i32]** %2, align 8 - %7 = getelementptr inbounds [5 x [4 x [4 x i32]]], [5 x [4 x [4 x i32]]]* %3, i64 0, i64 0 - %8 = call 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 nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %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 noundef 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -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 = { 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" } -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" } - -!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-llvm14/construction-of-lcp-array-from-suffix-array.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/construction-of-lcp-array-from-suffix-array.ll deleted file mode 100644 index 30c9280e7..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/construction-of-lcp-array-from-suffix-array.ll +++ /dev/null @@ -1,4610 +0,0 @@ -; ModuleID = 'PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp' -source_filename = "PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%struct.suffix = type { i32, [2 x i32] } -%"class.std::vector" = type { %"struct.std::_Vector_base" } -%"struct.std::_Vector_base" = type { %"struct.std::_Vector_base>::_Vector_impl" } -%"struct.std::_Vector_base>::_Vector_impl" = type { %"struct.std::_Vector_base>::_Vector_impl_data" } -%"struct.std::_Vector_base>::_Vector_impl_data" = type { i32*, i32*, i32* } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"struct.__gnu_cxx::__ops::_Iter_comp_iter" = type { i32 (i64, i32, i64, i32)* } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::__normal_iterator" = type { i32* } -%"class.std::__new_allocator.1" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.__gnu_cxx::__normal_iterator.3" = type { i32* } -%"struct.__gnu_cxx::__ops::_Iter_comp_val" = type { i32 (i64, i32, i64, i32)* } -%"struct.__gnu_cxx::__ops::_Val_comp_iter" = type { i32 (i64, i32, i64, i32)* } -%"struct.std::integral_constant" = type { i8 } -%"struct.std::random_access_iterator_tag" = type { i8 } - -$_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_ = comdat any - -$_ZNSt6vectorIiSaIiEEC2Ev = comdat any - -$_ZNSt6vectorIiSaIiEE9push_backERKi = comdat any - -$_ZNSt6vectorIiSaIiEED2Ev = comdat any - -$_ZNKSt6vectorIiSaIiEE4sizeEv = comdat any - -$_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_ = comdat any - -$_ZNSt6vectorIiSaIiEEixEm = comdat any - -$_ZNSt6vectorIiSaIiEEC2ERKS1_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev = comdat any - -$_ZNSt15__new_allocatorIcED2Ev = comdat any - -$_ZNSt15__new_allocatorIiED2Ev = comdat any - -$_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFi6suffixS2_EEENS0_15_Iter_comp_iterIT_EES6_ = comdat any - -$_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_T1_ = comdat any - -$_ZSt4__lgIlET_S0_ = comdat any - -$_ZSt22__final_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZSt14__partial_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_ = comdat any - -$_ZSt27__unguarded_partition_pivotIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_T0_ = comdat any - -$_ZSt13__heap_selectIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_ = comdat any - -$_ZSt11__sort_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_ = comdat any - -$_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_ = comdat any - -$_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_ = comdat any - -$_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_RT0_ = comdat any - -$_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_ = comdat any - -$_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_T0_S9_T1_T2_ = comdat any - -$_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS3_EEEEONSt16remove_referenceIT_E4typeEOS9_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE = comdat any - -$_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFiS0_S0_EEEEvT_T0_S9_T1_RT2_ = comdat any - -$_ZSt4moveIRPFi6suffixS0_EEONSt16remove_referenceIT_E4typeEOS5_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEclIPS2_S2_EEbT_RT0_ = comdat any - -$_ZSt22__move_median_to_firstIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_S8_T0_ = comdat any - -$_ZSt21__unguarded_partitionIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_S8_T0_ = comdat any - -$_ZSt9iter_swapIP6suffixS1_EvT_T0_ = comdat any - -$_ZSt4swapI6suffixENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_ = comdat any - -$_ZSt11__bit_widthImEiT_ = comdat any - -$_ZSt13__countl_zeroImEiT_ = comdat any - -$_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZSt26__unguarded_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZSt13move_backwardIP6suffixS1_ET0_T_S3_S2_ = comdat any - -$_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops15__val_comp_iterIPFi6suffixS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE = comdat any - -$_ZSt22__copy_move_backward_aILb1EP6suffixS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIP6suffixET_S2_ = comdat any - -$_ZSt12__niter_wrapIP6suffixET_RKS2_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb1EP6suffixS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIP6suffixET_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb1EP6suffixS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI6suffixS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneI6suffixS3_EEvPT_PT0_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEclIS2_PS2_EEbRT_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE = comdat any - -$_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEC2ES4_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt12_Vector_baseIiSaIiEED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZSt8_DestroyIPiEvT_S1_ = comdat any - -$_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev = comdat any - -$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any - -$_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_ = comdat any - -$_ZNSt6vectorIiSaIiEE3endEv = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc = comdat any - -$_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_ = comdat any - -$_ZNSt6vectorIiSaIiEE5beginEv = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm = comdat any - -$_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_ = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv = comdat any - -$_ZNKSt6vectorIiSaIiEE8max_sizeEv = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_ = comdat any - -$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE = comdat any - -$_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_ = comdat any - -$_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E = comdat any - -$_ZSt12__niter_baseIPiET_S1_ = comdat any - -$_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_ = comdat any - -$_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRKi = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE17_M_create_storageEm = comdat any - -$_ZSt24__uninitialized_fill_n_aIPimiiET_S1_T0_RKT1_RSaIT2_E = comdat any - -$_ZSt20uninitialized_fill_nIPimiET_S1_T0_RKT1_ = comdat any - -$_ZNSt22__uninitialized_fill_nILb1EE15__uninit_fill_nIPimiEET_S3_T0_RKT1_ = comdat any - -$_ZSt6fill_nIPimiET_S1_T0_RKT1_ = comdat any - -$_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26random_access_iterator_tag = comdat any - -$_ZSt17__size_to_integerm = comdat any - -$_ZSt8__fill_aIPiiEvT_S1_RKT0_ = comdat any - -$_ZSt9__fill_a1IPiiEN9__gnu_cxx11__enable_ifIXsr11__is_scalarIT0_EE7__valueEvE6__typeET_S6_RKS3_ = comdat any - -$_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiiET0_T_SA_S9_RSaIT1_E = comdat any - -$_ZNKSt6vectorIiSaIiEE5beginEv = comdat any - -$_ZNKSt6vectorIiSaIiEE3endEv = comdat any - -$_ZSt18uninitialized_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_ = comdat any - -$_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiEET0_T_SC_SB_ = comdat any - -$_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_ = comdat any - -$_ZSt13__copy_move_aILb0EN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET1_T0_SA_S9_ = comdat any - -$_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEET_S8_ = comdat any - -$_ZSt12__niter_wrapIPiET_RKS1_S1_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPKiPiET1_T0_S4_S3_ = comdat any - -$_ZSt12__niter_baseIPKiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS5_T0_EE = comdat any - -$_ZSt14__copy_move_a2ILb0EPKiPiET1_T0_S4_S3_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIKiiEEPT0_PT_S7_S5_ = comdat any - -$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIiKiEEvPT_PT0_ = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv = comdat any - -$_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_ = comdat any - -@_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 -@.str.3 = private unnamed_addr constant [15 x i8] c"\0ALCP Array : \0A\00", align 1 -@.str.4 = private unnamed_addr constant [26 x i8] c"vector::_M_realloc_insert\00", align 1 -@.str.5 = private unnamed_addr constant [49 x i8] c"cannot create std::vector larger than max_size()\00", align 1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z3cmp6suffixS_(i64 %0, i32 %1, i64 %2, i32 %3) #0 { - %5 = alloca %struct.suffix, align 4 - %6 = alloca { i64, i32 }, align 4 - %7 = alloca %struct.suffix, align 4 - %8 = alloca { i64, i32 }, align 4 - %9 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %6, i32 0, i32 0 - store i64 %0, i64* %9, align 4 - %10 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %6, i32 0, i32 1 - store i32 %1, i32* %10, align 4 - %11 = bitcast %struct.suffix* %5 to i8* - %12 = bitcast { i64, i32 }* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %11, i8* align 4 %12, i64 12, i1 false) - %13 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 0 - store i64 %2, i64* %13, align 4 - %14 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 1 - store i32 %3, i32* %14, align 4 - %15 = bitcast %struct.suffix* %7 to i8* - %16 = bitcast { i64, i32 }* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = getelementptr inbounds %struct.suffix, %struct.suffix* %5, i32 0, i32 1 - %18 = getelementptr inbounds [2 x i32], [2 x i32]* %17, i64 0, i64 0 - %19 = load i32, i32* %18, align 4 - %20 = getelementptr inbounds %struct.suffix, %struct.suffix* %7, i32 0, i32 1 - %21 = getelementptr inbounds [2 x i32], [2 x i32]* %20, i64 0, i64 0 - %22 = load i32, i32* %21, align 4 - %23 = icmp eq i32 %19, %22 - br i1 %23, label %24, label %34 - -24: ; preds = %4 - %25 = getelementptr inbounds %struct.suffix, %struct.suffix* %5, i32 0, i32 1 - %26 = getelementptr inbounds [2 x i32], [2 x i32]* %25, i64 0, i64 1 - %27 = load i32, i32* %26, align 4 - %28 = getelementptr inbounds %struct.suffix, %struct.suffix* %7, i32 0, i32 1 - %29 = getelementptr inbounds [2 x i32], [2 x i32]* %28, i64 0, i64 1 - %30 = load i32, i32* %29, align 4 - %31 = icmp slt i32 %27, %30 - %32 = zext i1 %31 to i64 - %33 = select i1 %31, i32 1, i32 0 - br label %44 - -34: ; preds = %4 - %35 = getelementptr inbounds %struct.suffix, %struct.suffix* %5, i32 0, i32 1 - %36 = getelementptr inbounds [2 x i32], [2 x i32]* %35, i64 0, i64 0 - %37 = load i32, i32* %36, align 4 - %38 = getelementptr inbounds %struct.suffix, %struct.suffix* %7, i32 0, i32 1 - %39 = getelementptr inbounds [2 x i32], [2 x i32]* %38, i64 0, i64 0 - %40 = load i32, i32* %39, align 4 - %41 = icmp slt i32 %37, %40 - %42 = zext i1 %41 to i64 - %43 = select i1 %41, i32 1, i32 0 - br label %44 - -44: ; preds = %34, %24 - %45 = phi i32 [ %33, %24 ], [ %43, %34 ] - ret i32 %45 -} - -; Function Attrs: argmemonly nofree nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #1 - -; 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) #2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i8*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32, align 4 - %9 = alloca i64, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i1, align 1 - %17 = alloca i32, align 4 - %18 = alloca i8*, align 8 - %19 = alloca i32, align 4 - %20 = bitcast %"class.std::vector"* %0 to i8* - store i8* %20, i8** %4, align 8 - store i32 %2, i32* %5, align 4 - %21 = load i32, i32* %5, align 4 - %22 = zext i32 %21 to i64 - %23 = call i8* @llvm.stacksave() - store i8* %23, i8** %6, align 8 - %24 = alloca %struct.suffix, i64 %22, align 16 - store i64 %22, i64* %7, align 8 - store i32 0, i32* %8, align 4 - br label %25 - -25: ; preds = %66, %3 - %26 = load i32, i32* %8, align 4 - %27 = load i32, i32* %5, align 4 - %28 = icmp slt i32 %26, %27 - br i1 %28, label %29, label %69 - -29: ; preds = %25 - %30 = load i32, i32* %8, align 4 - %31 = load i32, i32* %8, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %32 - %34 = getelementptr inbounds %struct.suffix, %struct.suffix* %33, i32 0, i32 0 - store i32 %30, i32* %34, align 4 - %35 = load i32, i32* %8, align 4 - %36 = sext i32 %35 to i64 - %37 = call 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 - %41 = load i32, i32* %8, align 4 - %42 = sext i32 %41 to i64 - %43 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %42 - %44 = getelementptr inbounds %struct.suffix, %struct.suffix* %43, i32 0, i32 1 - %45 = getelementptr inbounds [2 x i32], [2 x i32]* %44, i64 0, i64 0 - store i32 %40, i32* %45, align 4 - %46 = load i32, i32* %8, align 4 - %47 = add nsw i32 %46, 1 - %48 = load i32, i32* %5, align 4 - %49 = icmp slt i32 %47, %48 - br i1 %49, label %50, label %58 - -50: ; preds = %29 - %51 = load i32, i32* %8, align 4 - %52 = add nsw i32 %51, 1 - %53 = sext i32 %52 to i64 - %54 = call 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 - br label %59 - -58: ; preds = %29 - br label %59 - -59: ; preds = %58, %50 - %60 = phi i32 [ %57, %50 ], [ -1, %58 ] - %61 = load i32, i32* %8, align 4 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %62 - %64 = getelementptr inbounds %struct.suffix, %struct.suffix* %63, i32 0, i32 1 - %65 = getelementptr inbounds [2 x i32], [2 x i32]* %64, i64 0, i64 1 - store i32 %60, i32* %65, align 4 - br label %66 - -66: ; preds = %59 - %67 = load i32, i32* %8, align 4 - %68 = add nsw i32 %67, 1 - store i32 %68, i32* %8, align 4 - br label %25, !llvm.loop !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* 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 - store i64 %74, i64* %9, align 8 - store i32 4, i32* %10, align 4 - br label %76 - -76: ; preds = %204, %69 - %77 = load i32, i32* %10, align 4 - %78 = load i32, i32* %5, align 4 - %79 = mul nsw i32 2, %78 - %80 = icmp slt i32 %77, %79 - br i1 %80, label %81, label %207 - -81: ; preds = %76 - store i32 0, i32* %11, align 4 - %82 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 0 - %83 = getelementptr inbounds %struct.suffix, %struct.suffix* %82, i32 0, i32 1 - %84 = getelementptr inbounds [2 x i32], [2 x i32]* %83, i64 0, i64 0 - %85 = load i32, i32* %84, align 4 - store i32 %85, i32* %12, align 4 - %86 = load i32, i32* %11, align 4 - %87 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 0 - %88 = getelementptr inbounds %struct.suffix, %struct.suffix* %87, i32 0, i32 1 - %89 = getelementptr inbounds [2 x i32], [2 x i32]* %88, i64 0, i64 0 - store i32 %86, i32* %89, align 4 - %90 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 0 - %91 = getelementptr inbounds %struct.suffix, %struct.suffix* %90, i32 0, i32 0 - %92 = load i32, i32* %91, align 16 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %75, i64 %93 - store i32 0, i32* %94, align 4 - store i32 1, i32* %13, align 4 - br label %95 - -95: ; preds = %159, %81 - %96 = load i32, i32* %13, align 4 - %97 = load i32, i32* %5, align 4 - %98 = icmp slt i32 %96, %97 - br i1 %98, label %99, label %162 - -99: ; preds = %95 - %100 = load i32, i32* %13, align 4 - %101 = sext i32 %100 to i64 - %102 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %101 - %103 = getelementptr inbounds %struct.suffix, %struct.suffix* %102, i32 0, i32 1 - %104 = getelementptr inbounds [2 x i32], [2 x i32]* %103, i64 0, i64 0 - %105 = load i32, i32* %104, align 4 - %106 = load i32, i32* %12, align 4 - %107 = icmp eq i32 %105, %106 - br i1 %107, label %108, label %136 - -108: ; preds = %99 - %109 = load i32, i32* %13, align 4 - %110 = sext i32 %109 to i64 - %111 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %110 - %112 = getelementptr inbounds %struct.suffix, %struct.suffix* %111, i32 0, i32 1 - %113 = getelementptr inbounds [2 x i32], [2 x i32]* %112, i64 0, i64 1 - %114 = load i32, i32* %113, align 4 - %115 = load i32, i32* %13, align 4 - %116 = sub nsw i32 %115, 1 - %117 = sext i32 %116 to i64 - %118 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %117 - %119 = getelementptr inbounds %struct.suffix, %struct.suffix* %118, i32 0, i32 1 - %120 = getelementptr inbounds [2 x i32], [2 x i32]* %119, i64 0, i64 1 - %121 = load i32, i32* %120, align 4 - %122 = icmp eq i32 %114, %121 - br i1 %122, label %123, label %136 - -123: ; preds = %108 - %124 = load i32, i32* %13, align 4 - %125 = sext i32 %124 to i64 - %126 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %125 - %127 = getelementptr inbounds %struct.suffix, %struct.suffix* %126, i32 0, i32 1 - %128 = getelementptr inbounds [2 x i32], [2 x i32]* %127, i64 0, i64 0 - %129 = load i32, i32* %128, align 4 - store i32 %129, i32* %12, align 4 - %130 = load i32, i32* %11, align 4 - %131 = load i32, i32* %13, align 4 - %132 = sext i32 %131 to i64 - %133 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %132 - %134 = getelementptr inbounds %struct.suffix, %struct.suffix* %133, i32 0, i32 1 - %135 = getelementptr inbounds [2 x i32], [2 x i32]* %134, i64 0, i64 0 - store i32 %130, i32* %135, align 4 - br label %150 - -136: ; preds = %108, %99 - %137 = load i32, i32* %13, align 4 - %138 = sext i32 %137 to i64 - %139 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %138 - %140 = getelementptr inbounds %struct.suffix, %struct.suffix* %139, i32 0, i32 1 - %141 = getelementptr inbounds [2 x i32], [2 x i32]* %140, i64 0, i64 0 - %142 = load i32, i32* %141, align 4 - store i32 %142, i32* %12, align 4 - %143 = load i32, i32* %11, align 4 - %144 = add nsw i32 %143, 1 - store i32 %144, i32* %11, align 4 - %145 = load i32, i32* %13, align 4 - %146 = sext i32 %145 to i64 - %147 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %146 - %148 = getelementptr inbounds %struct.suffix, %struct.suffix* %147, i32 0, i32 1 - %149 = getelementptr inbounds [2 x i32], [2 x i32]* %148, i64 0, i64 0 - store i32 %144, i32* %149, align 4 - br label %150 - -150: ; preds = %136, %123 - %151 = load i32, i32* %13, align 4 - %152 = load i32, i32* %13, align 4 - %153 = sext i32 %152 to i64 - %154 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %153 - %155 = getelementptr inbounds %struct.suffix, %struct.suffix* %154, i32 0, i32 0 - %156 = load i32, i32* %155, align 4 - %157 = sext i32 %156 to i64 - %158 = getelementptr inbounds i32, i32* %75, i64 %157 - store i32 %151, i32* %158, align 4 - br label %159 - -159: ; preds = %150 - %160 = load i32, i32* %13, align 4 - %161 = add nsw i32 %160, 1 - store i32 %161, i32* %13, align 4 - br label %95, !llvm.loop !8 - -162: ; preds = %95 - store i32 0, i32* %14, align 4 - br label %163 - -163: ; preds = %197, %162 - %164 = load i32, i32* %14, align 4 - %165 = load i32, i32* %5, align 4 - %166 = icmp slt i32 %164, %165 - br i1 %166, label %167, label %200 - -167: ; preds = %163 - %168 = load i32, i32* %14, align 4 - %169 = sext i32 %168 to i64 - %170 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %169 - %171 = getelementptr inbounds %struct.suffix, %struct.suffix* %170, i32 0, i32 0 - %172 = load i32, i32* %171, align 4 - %173 = load i32, i32* %10, align 4 - %174 = sdiv i32 %173, 2 - %175 = add nsw i32 %172, %174 - store i32 %175, i32* %15, align 4 - %176 = load i32, i32* %15, align 4 - %177 = load i32, i32* %5, align 4 - %178 = icmp slt i32 %176, %177 - br i1 %178, label %179, label %189 - -179: ; preds = %167 - %180 = load i32, i32* %15, align 4 - %181 = sext i32 %180 to i64 - %182 = getelementptr inbounds i32, i32* %75, i64 %181 - %183 = load i32, i32* %182, align 4 - %184 = sext i32 %183 to i64 - %185 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %184 - %186 = getelementptr inbounds %struct.suffix, %struct.suffix* %185, i32 0, i32 1 - %187 = getelementptr inbounds [2 x i32], [2 x i32]* %186, i64 0, i64 0 - %188 = load i32, i32* %187, align 4 - br label %190 - -189: ; preds = %167 - br label %190 - -190: ; preds = %189, %179 - %191 = phi i32 [ %188, %179 ], [ -1, %189 ] - %192 = load i32, i32* %14, align 4 - %193 = sext i32 %192 to i64 - %194 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %193 - %195 = getelementptr inbounds %struct.suffix, %struct.suffix* %194, i32 0, i32 1 - %196 = getelementptr inbounds [2 x i32], [2 x i32]* %195, i64 0, i64 1 - store i32 %191, i32* %196, align 4 - br label %197 - -197: ; preds = %190 - %198 = load i32, i32* %14, align 4 - %199 = add nsw i32 %198, 1 - store i32 %199, i32* %14, align 4 - br label %163, !llvm.loop !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* 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 !10 - -207: ; preds = %76 - store i1 false, i1* %16, align 1 - call void @_ZNSt6vectorIiSaIiEEC2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #15 - store i32 0, i32* %17, align 4 - br label %208 - -208: ; preds = %218, %207 - %209 = load i32, i32* %17, align 4 - %210 = load i32, i32* %5, align 4 - %211 = icmp slt i32 %209, %210 - br i1 %211, label %212, label %225 - -212: ; preds = %208 - %213 = load i32, i32* %17, align 4 - %214 = sext i32 %213 to i64 - %215 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %214 - %216 = getelementptr inbounds %struct.suffix, %struct.suffix* %215, i32 0, i32 0 - invoke void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef nonnull align 4 dereferenceable(4) %216) - to label %217 unwind label %221 - -217: ; preds = %212 - br label %218 - -218: ; preds = %217 - %219 = load i32, i32* %17, align 4 - %220 = add nsw i32 %219, 1 - store i32 %220, i32* %17, align 4 - br label %208, !llvm.loop !11 - -221: ; preds = %212 - %222 = landingpad { i8*, i32 } - cleanup - %223 = extractvalue { i8*, i32 } %222, 0 - store i8* %223, i8** %18, align 8 - %224 = extractvalue { i8*, i32 } %222, 1 - store i32 %224, i32* %19, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #15 - br label %230 - -225: ; preds = %208 - store i1 true, i1* %16, align 1 - %226 = load i1, i1* %16, align 1 - br i1 %226, label %228, label %227 - -227: ; preds = %225 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #15 - br label %228 - -228: ; preds = %227, %225 - %229 = load i8*, i8** %6, align 8 - call void @llvm.stackrestore(i8* %229) - ret void - -230: ; preds = %221 - %231 = load i8*, i8** %18, align 8 - %232 = load i32, i32* %19, align 4 - %233 = insertvalue { i8*, i32 } undef, i8* %231, 0 - %234 = insertvalue { i8*, i32 } %233, i32 %232, 1 - resume { i8*, i32 } %234 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #3 - -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) #4 - -; 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) #2 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca i32 (i64, i32, i64, i32)*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store i32 (i64, i32, i64, i32)* %2, i32 (i64, i32, i64, i32)** %6, align 8 - %8 = load %struct.suffix*, %struct.suffix** %4, align 8 - %9 = load %struct.suffix*, %struct.suffix** %5, align 8 - %10 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %6, align 8 - %11 = call i32 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFi6suffixS2_EEENS0_15_Iter_comp_iterIT_EES6_(i32 (i64, i32, i64, i32)* 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* 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - ret void -} - -; 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) #2 comdat align 2 { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::vector"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %9, align 8 - store i32* %1, i32** %10, align 8 - %12 = load %"class.std::vector"*, %"class.std::vector"** %9, align 8 - %13 = bitcast %"class.std::vector"* %12 to %"struct.std::_Vector_base"* - %14 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %14 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %15, i32 0, i32 1 - %17 = load i32*, i32** %16, align 8 - %18 = bitcast %"class.std::vector"* %12 to %"struct.std::_Vector_base"* - %19 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %19 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %20, i32 0, i32 2 - %22 = load i32*, i32** %21, align 8 - %23 = icmp ne i32* %17, %22 - br i1 %23, label %24, label %51 - -24: ; preds = %2 - %25 = bitcast %"class.std::vector"* %12 to %"struct.std::_Vector_base"* - %26 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %25, i32 0, i32 0 - %27 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %26 to %"class.std::allocator"* - %28 = bitcast %"class.std::vector"* %12 to %"struct.std::_Vector_base"* - %29 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %28, i32 0, i32 0 - %30 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %29 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %31 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %30, i32 0, i32 1 - %32 = load i32*, i32** %31, align 8 - %33 = load i32*, i32** %10, align 8 - store %"class.std::allocator"* %27, %"class.std::allocator"** %6, align 8 - store i32* %32, i32** %7, align 8 - store i32* %33, i32** %8, align 8 - %34 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %35 = bitcast %"class.std::allocator"* %34 to %"class.std::__new_allocator"* - %36 = load i32*, i32** %7, align 8 - %37 = load i32*, i32** %8, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %37) #15 - store %"class.std::__new_allocator"* %35, %"class.std::__new_allocator"** %3, align 8 - store i32* %36, i32** %4, align 8 - store i32* %38, i32** %5, align 8 - %39 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %40 = load i32*, i32** %4, align 8 - %41 = bitcast i32* %40 to i8* - %42 = load i32*, i32** %5, align 8 - %43 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %42) #15 - %44 = load i32, i32* %43, align 4 - store i32 %44, i32* %40, align 4 - %45 = bitcast %"class.std::vector"* %12 to %"struct.std::_Vector_base"* - %46 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %45, i32 0, i32 0 - %47 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %46 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %48 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %47, i32 0, i32 1 - %49 = load i32*, i32** %48, align 8 - %50 = getelementptr inbounds i32, i32* %49, i32 1 - store i32* %50, i32** %48, align 8 - br label %57 - -51: ; preds = %2 - %52 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %12) #15 - %53 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %11, i32 0, i32 0 - store i32* %52, i32** %53, align 8 - %54 = load i32*, i32** %10, align 8 - %55 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %11, i32 0, i32 0 - %56 = load i32*, i32** %55, align 8 - call void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %12, i32* %56, i32* noundef nonnull align 4 dereferenceable(4) %54) - br label %57 - -57: ; preds = %51, %24 - ret void -} - -declare i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca i32*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"class.std::vector"*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store %"class.std::vector"* %0, %"class.std::vector"** %5, align 8 - %8 = load %"class.std::vector"*, %"class.std::vector"** %5, align 8 - %9 = bitcast %"class.std::vector"* %8 to %"struct.std::_Vector_base"* - %10 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %9, i32 0, i32 0 - %11 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %10 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %11, i32 0, i32 0 - %13 = load i32*, i32** %12, align 8 - %14 = bitcast %"class.std::vector"* %8 to %"struct.std::_Vector_base"* - %15 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %15 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %16, i32 0, i32 1 - %18 = load i32*, i32** %17, align 8 - %19 = bitcast %"class.std::vector"* %8 to %"struct.std::_Vector_base"* - %20 = 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) %19) #15 - store i32* %13, i32** %2, align 8 - store i32* %18, i32** %3, align 8 - store %"class.std::allocator"* %20, %"class.std::allocator"** %4, align 8 - %21 = load i32*, i32** %2, align 8 - %22 = load i32*, i32** %3, align 8 - invoke void @_ZSt8_DestroyIPiEvT_S1_(i32* noundef %21, i32* noundef %22) - to label %23 unwind label %26 - -23: ; preds = %1 - br label %24 - -24: ; preds = %23 - %25 = bitcast %"class.std::vector"* %8 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %25) #15 - ret void - -26: ; preds = %1 - %27 = landingpad { i8*, i32 } - catch i8* null - %28 = extractvalue { i8*, i32 } %27, 0 - store i8* %28, i8** %6, align 8 - %29 = extractvalue { i8*, i32 } %27, 1 - store i32 %29, i32* %7, align 4 - %30 = bitcast %"class.std::vector"* %8 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %30) #15 - br label %31 - -31: ; preds = %26 - %32 = load i8*, i8** %6, align 8 - call void @__clang_call_terminate(i8* %32) #16 - unreachable -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #3 - -; Function Attrs: 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 %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"class.std::allocator"*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca %"class.std::allocator"*, align 8 - %10 = alloca %"class.std::allocator"*, align 8 - %11 = alloca %"class.std::allocator"*, align 8 - %12 = alloca i8*, align 8 - %13 = alloca i32, align 4 - %14 = alloca i1, align 1 - %15 = alloca i32, align 4 - %16 = alloca %"class.std::allocator", align 1 - %17 = alloca i8*, align 8 - %18 = alloca i32, align 4 - %19 = alloca %"class.std::vector", align 8 - %20 = alloca i32, align 4 - %21 = alloca %"class.std::allocator", align 1 - %22 = alloca i32, align 4 - %23 = alloca i32, align 4 - %24 = alloca i32, align 4 - %25 = alloca i32, align 4 - %26 = bitcast %"class.std::vector"* %0 to i8* - store i8* %26, i8** %12, align 8 - %27 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %2) #15 - %28 = trunc i64 %27 to i32 - store i32 %28, i32* %13, align 4 - store i1 false, i1* %14, align 1 - %29 = load i32, i32* %13, align 4 - %30 = sext i32 %29 to i64 - store i32 0, i32* %15, align 4 - store %"class.std::allocator"* %16, %"class.std::allocator"** %11, align 8 - %31 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %32 = bitcast %"class.std::allocator"* %31 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %32, %"class.std::__new_allocator"** %4, align 8 - %33 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - invoke void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %30, i32* noundef nonnull align 4 dereferenceable(4) %15, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %16) - to label %34 unwind label %60 - -34: ; preds = %3 - store %"class.std::allocator"* %16, %"class.std::allocator"** %9, align 8 - %35 = load %"class.std::allocator"*, %"class.std::allocator"** %9, align 8 - %36 = bitcast %"class.std::allocator"* %35 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %36) #15 - %37 = load i32, i32* %13, align 4 - %38 = sext i32 %37 to i64 - store i32 0, i32* %20, align 4 - store %"class.std::allocator"* %21, %"class.std::allocator"** %10, align 8 - %39 = load %"class.std::allocator"*, %"class.std::allocator"** %10, align 8 - %40 = bitcast %"class.std::allocator"* %39 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %40, %"class.std::__new_allocator"** %5, align 8 - %41 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - invoke void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %19, i64 noundef %38, i32* noundef nonnull align 4 dereferenceable(4) %20, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %21) - to label %42 unwind label %66 - -42: ; preds = %34 - store %"class.std::allocator"* %21, %"class.std::allocator"** %7, align 8 - %43 = load %"class.std::allocator"*, %"class.std::allocator"** %7, align 8 - %44 = bitcast %"class.std::allocator"* %43 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %44) #15 - store i32 0, i32* %22, align 4 - br label %45 - -45: ; preds = %57, %42 - %46 = load i32, i32* %22, align 4 - %47 = load i32, i32* %13, align 4 - %48 = icmp slt i32 %46, %47 - br i1 %48, label %49, label %72 - -49: ; preds = %45 - %50 = load i32, i32* %22, align 4 - %51 = load i32, i32* %22, align 4 - %52 = sext i32 %51 to i64 - %53 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %2, i64 noundef %52) #15 - %54 = load i32, i32* %53, align 4 - %55 = sext i32 %54 to i64 - %56 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %19, i64 noundef %55) #15 - store i32 %50, i32* %56, align 4 - br label %57 - -57: ; preds = %49 - %58 = load i32, i32* %22, align 4 - %59 = add nsw i32 %58, 1 - store i32 %59, i32* %22, align 4 - br label %45, !llvm.loop !12 - -60: ; preds = %3 - %61 = landingpad { i8*, i32 } - cleanup - %62 = extractvalue { i8*, i32 } %61, 0 - store i8* %62, i8** %17, align 8 - %63 = extractvalue { i8*, i32 } %61, 1 - store i32 %63, i32* %18, align 4 - store %"class.std::allocator"* %16, %"class.std::allocator"** %8, align 8 - %64 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %65 = bitcast %"class.std::allocator"* %64 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %65) #15 - br label %156 - -66: ; preds = %34 - %67 = landingpad { i8*, i32 } - cleanup - %68 = extractvalue { i8*, i32 } %67, 0 - store i8* %68, i8** %17, align 8 - %69 = extractvalue { i8*, i32 } %67, 1 - store i32 %69, i32* %18, align 4 - store %"class.std::allocator"* %21, %"class.std::allocator"** %6, align 8 - %70 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %71 = bitcast %"class.std::allocator"* %70 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %71) #15 - br label %155 - -72: ; preds = %45 - store i32 0, i32* %23, align 4 - store i32 0, i32* %24, align 4 - br label %73 - -73: ; preds = %148, %72 - %74 = load i32, i32* %24, align 4 - %75 = load i32, i32* %13, align 4 - %76 = icmp slt i32 %74, %75 - br i1 %76, label %77, label %151 - -77: ; preds = %73 - %78 = load i32, i32* %24, align 4 - %79 = sext i32 %78 to i64 - %80 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %19, i64 noundef %79) #15 - %81 = load i32, i32* %80, align 4 - %82 = load i32, i32* %13, align 4 - %83 = sub nsw i32 %82, 1 - %84 = icmp eq i32 %81, %83 - br i1 %84, label %85, label %86 - -85: ; preds = %77 - store i32 0, i32* %23, align 4 - br label %148 - -86: ; preds = %77 - %87 = load i32, i32* %24, align 4 - %88 = sext i32 %87 to i64 - %89 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %19, i64 noundef %88) #15 - %90 = load i32, i32* %89, align 4 - %91 = add nsw i32 %90, 1 - %92 = sext i32 %91 to i64 - %93 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %2, i64 noundef %92) #15 - %94 = load i32, i32* %93, align 4 - store i32 %94, i32* %25, align 4 - br label %95 - -95: ; preds = %127, %86 - %96 = load i32, i32* %24, align 4 - %97 = load i32, i32* %23, align 4 - %98 = add nsw i32 %96, %97 - %99 = load i32, i32* %13, align 4 - %100 = icmp slt i32 %98, %99 - br i1 %100, label %101, label %125 - -101: ; preds = %95 - %102 = load i32, i32* %25, align 4 - %103 = load i32, i32* %23, align 4 - %104 = add nsw i32 %102, %103 - %105 = load i32, i32* %13, align 4 - %106 = icmp slt i32 %104, %105 - br i1 %106, label %107, label %125 - -107: ; preds = %101 - %108 = load i32, i32* %24, align 4 - %109 = load i32, i32* %23, align 4 - %110 = add nsw i32 %108, %109 - %111 = sext i32 %110 to i64 - %112 = 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 %111) - to label %113 unwind label %130 - -113: ; preds = %107 - %114 = load i8, i8* %112, align 1 - %115 = sext i8 %114 to i32 - %116 = load i32, i32* %25, align 4 - %117 = load i32, i32* %23, align 4 - %118 = add nsw i32 %116, %117 - %119 = sext i32 %118 to i64 - %120 = 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 %119) - to label %121 unwind label %130 - -121: ; preds = %113 - %122 = load i8, i8* %120, align 1 - %123 = sext i8 %122 to i32 - %124 = icmp eq i32 %115, %123 - br label %125 - -125: ; preds = %121, %101, %95 - %126 = phi i1 [ false, %101 ], [ false, %95 ], [ %124, %121 ] - br i1 %126, label %127, label %134 - -127: ; preds = %125 - %128 = load i32, i32* %23, align 4 - %129 = add nsw i32 %128, 1 - store i32 %129, i32* %23, align 4 - br label %95, !llvm.loop !13 - -130: ; preds = %113, %107 - %131 = landingpad { i8*, i32 } - cleanup - %132 = extractvalue { i8*, i32 } %131, 0 - store i8* %132, i8** %17, align 8 - %133 = extractvalue { i8*, i32 } %131, 1 - store i32 %133, i32* %18, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %19) #15 - br label %155 - -134: ; preds = %125 - %135 = load i32, i32* %23, align 4 - %136 = load i32, i32* %24, align 4 - %137 = sext i32 %136 to i64 - %138 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %19, i64 noundef %137) #15 - %139 = load i32, i32* %138, align 4 - %140 = sext i32 %139 to i64 - %141 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %140) #15 - store i32 %135, i32* %141, align 4 - %142 = load i32, i32* %23, align 4 - %143 = icmp sgt i32 %142, 0 - br i1 %143, label %144, label %147 - -144: ; preds = %134 - %145 = load i32, i32* %23, align 4 - %146 = add nsw i32 %145, -1 - store i32 %146, i32* %23, align 4 - br label %147 - -147: ; preds = %144, %134 - br label %148 - -148: ; preds = %147, %85 - %149 = load i32, i32* %24, align 4 - %150 = add nsw i32 %149, 1 - store i32 %150, i32* %24, align 4 - br label %73, !llvm.loop !14 - -151: ; preds = %73 - store i1 true, i1* %14, align 1 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %19) #15 - %152 = load i1, i1* %14, align 1 - br i1 %152, label %154, label %153 - -153: ; preds = %151 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #15 - br label %154 - -154: ; preds = %153, %151 - ret void - -155: ; preds = %130, %66 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #15 - br label %156 - -156: ; preds = %155, %60 - %157 = load i8*, i8** %17, align 8 - %158 = load i32, i32* %18, align 4 - %159 = insertvalue { i8*, i32 } undef, i8* %157, 0 - %160 = insertvalue { i8*, i32 } %159, i32 %158, 1 - resume { i8*, i32 } %160 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { - %2 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %3 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - %4 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - %5 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %5 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %6, i32 0, i32 1 - %8 = load i32*, i32** %7, align 8 - %9 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - %10 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %9, i32 0, i32 0 - %11 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %10 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %11, i32 0, i32 0 - %13 = load i32*, i32** %12, align 8 - %14 = ptrtoint i32* %8 to i64 - %15 = ptrtoint i32* %13 to i64 - %16 = sub i64 %14, %15 - %17 = sdiv exact i64 %16, 4 - ret i64 %17 -} - -; Function Attrs: noinline uwtable -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 #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %5 = alloca %"class.std::vector"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca i8*, align 8 - %10 = alloca i32, align 4 - store %"class.std::vector"* %0, %"class.std::vector"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %11 = load %"class.std::vector"*, %"class.std::vector"** %5, align 8 - %12 = bitcast %"class.std::vector"* %11 to %"struct.std::_Vector_base"* - %13 = load i64, i64* %6, align 8 - %14 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %15 = call 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"* 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"* 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 - ret void - -20: ; preds = %4 - %21 = landingpad { i8*, i32 } - cleanup - %22 = extractvalue { i8*, i32 } %21, 0 - store i8* %22, i8** %9, align 8 - %23 = extractvalue { i8*, i32 } %21, 1 - store i32 %23, i32* %10, align 4 - %24 = bitcast %"class.std::vector"* %11 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %24) #15 - br label %25 - -25: ; preds = %20 - %26 = load i8*, i8** %9, align 8 - %27 = load i32, i32* %10, align 4 - %28 = insertvalue { i8*, i32 } undef, i8* %26, 0 - %29 = insertvalue { i8*, i32 } %28, i32 %27, 1 - resume { i8*, i32 } %29 -} - -; Function Attrs: 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) #0 comdat align 2 { - %3 = alloca %"class.std::vector"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %6 = bitcast %"class.std::vector"* %5 to %"struct.std::_Vector_base"* - %7 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %7 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %8, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - %11 = load i64, i64* %4, align 8 - %12 = getelementptr inbounds i32, i32* %10, i64 %11 - ret i32* %12 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z8printArrSt6vectorIiSaIiEEi(%"class.std::vector"* noundef %0, i32 noundef %1) #2 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %1, i32* %3, align 4 - store i32 0, i32* %4, align 4 - br label %5 - -5: ; preds = %16, %2 - %6 = load i32, i32* %4, align 4 - %7 = load i32, i32* %3, align 4 - %8 = icmp slt i32 %6, %7 - br i1 %8, label %9, label %19 - -9: ; preds = %5 - %10 = load i32, i32* %4, align 4 - %11 = sext i32 %10 to i64 - %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %11) #15 - %13 = load i32, i32* %12, align 4 - %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 !15 - -19: ; preds = %5 - %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 noundef 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) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 - -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) #4 - -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)) #4 - -; Function Attrs: noinline norecurse uwtable -define dso_local noundef i32 @main() #7 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca %"class.std::__new_allocator.1"*, align 8 - %2 = alloca %"class.std::allocator.0"*, align 8 - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32, align 4 - %6 = alloca %"class.std::__cxx11::basic_string", align 8 - %7 = alloca %"class.std::allocator.0", align 1 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"class.std::vector", align 8 - %11 = alloca %"class.std::__cxx11::basic_string", align 8 - %12 = alloca i32, align 4 - %13 = alloca %"class.std::vector", align 8 - %14 = alloca %"class.std::vector", align 8 - %15 = alloca %"class.std::__cxx11::basic_string", align 8 - %16 = alloca %"class.std::vector", align 8 - %17 = alloca %"class.std::vector", align 8 - store i32 0, i32* %5, align 4 - store %"class.std::allocator.0"* %7, %"class.std::allocator.0"** %4, align 8 - %18 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %19 = bitcast %"class.std::allocator.0"* %18 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %19, %"class.std::__new_allocator.1"** %1, align 8 - %20 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %1, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6, 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) %7) - to label %21 unwind label %44 - -21: ; preds = %0 - store %"class.std::allocator.0"* %7, %"class.std::allocator.0"** %3, align 8 - %22 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %23 = bitcast %"class.std::allocator.0"* %22 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %23) #15 - 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) %6) - to label %24 unwind label %50 - -24: ; preds = %21 - %25 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #15 - %26 = trunc i64 %25 to i32 - invoke void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%"class.std::vector"* sret(%"class.std::vector") align 8 %10, %"class.std::__cxx11::basic_string"* noundef %11, i32 noundef %26) - to label %27 unwind label %54 - -27: ; preds = %24 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #15 - %28 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %10) #15 - %29 = trunc i64 %28 to i32 - store i32 %29, i32* %12, align 4 - %30 = 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 %31 unwind label %58 - -31: ; preds = %27 - 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 %32 unwind label %58 - -32: ; preds = %31 - %33 = load i32, i32* %12, align 4 - invoke void @_Z8printArrSt6vectorIiSaIiEEi(%"class.std::vector"* noundef %13, i32 noundef %33) - to label %34 unwind label %62 - -34: ; preds = %32 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %13) #15 - 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) %6) - to label %35 unwind label %58 - -35: ; preds = %34 - invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %16, %"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %10) - to label %36 unwind label %66 - -36: ; preds = %35 - invoke void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt6vectorIiSaIiEE(%"class.std::vector"* sret(%"class.std::vector") align 8 %14, %"class.std::__cxx11::basic_string"* noundef %15, %"class.std::vector"* noundef %16) - to label %37 unwind label %70 - -37: ; preds = %36 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %16) #15 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #15 - %38 = 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 %39 unwind label %75 - -39: ; preds = %37 - invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %17, %"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %14) - to label %40 unwind label %75 - -40: ; preds = %39 - %41 = load i32, i32* %12, align 4 - invoke void @_Z8printArrSt6vectorIiSaIiEEi(%"class.std::vector"* noundef %17, i32 noundef %41) - to label %42 unwind label %79 - -42: ; preds = %40 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %17) #15 - store i32 0, i32* %5, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %14) #15 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %10) #15 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #15 - %43 = load i32, i32* %5, align 4 - ret i32 %43 - -44: ; preds = %0 - %45 = landingpad { i8*, i32 } - cleanup - %46 = extractvalue { i8*, i32 } %45, 0 - store i8* %46, i8** %8, align 8 - %47 = extractvalue { i8*, i32 } %45, 1 - store i32 %47, i32* %9, align 4 - store %"class.std::allocator.0"* %7, %"class.std::allocator.0"** %2, align 8 - %48 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %49 = bitcast %"class.std::allocator.0"* %48 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %49) #15 - br label %86 - -50: ; preds = %21 - %51 = landingpad { i8*, i32 } - cleanup - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %8, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %9, align 4 - br label %85 - -54: ; preds = %24 - %55 = landingpad { i8*, i32 } - cleanup - %56 = extractvalue { i8*, i32 } %55, 0 - store i8* %56, i8** %8, align 8 - %57 = extractvalue { i8*, i32 } %55, 1 - store i32 %57, i32* %9, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #15 - br label %85 - -58: ; preds = %34, %31, %27 - %59 = landingpad { i8*, i32 } - cleanup - %60 = extractvalue { i8*, i32 } %59, 0 - store i8* %60, i8** %8, align 8 - %61 = extractvalue { i8*, i32 } %59, 1 - store i32 %61, i32* %9, align 4 - br label %84 - -62: ; preds = %32 - %63 = landingpad { i8*, i32 } - cleanup - %64 = extractvalue { i8*, i32 } %63, 0 - store i8* %64, i8** %8, align 8 - %65 = extractvalue { i8*, i32 } %63, 1 - store i32 %65, i32* %9, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %13) #15 - br label %84 - -66: ; preds = %35 - %67 = landingpad { i8*, i32 } - cleanup - %68 = extractvalue { i8*, i32 } %67, 0 - store i8* %68, i8** %8, align 8 - %69 = extractvalue { i8*, i32 } %67, 1 - store i32 %69, i32* %9, align 4 - br label %74 - -70: ; preds = %36 - %71 = landingpad { i8*, i32 } - cleanup - %72 = extractvalue { i8*, i32 } %71, 0 - store i8* %72, i8** %8, align 8 - %73 = extractvalue { i8*, i32 } %71, 1 - store i32 %73, i32* %9, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %16) #15 - br label %74 - -74: ; preds = %70, %66 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #15 - br label %84 - -75: ; preds = %39, %37 - %76 = landingpad { i8*, i32 } - cleanup - %77 = extractvalue { i8*, i32 } %76, 0 - store i8* %77, i8** %8, align 8 - %78 = extractvalue { i8*, i32 } %76, 1 - store i32 %78, i32* %9, align 4 - br label %83 - -79: ; preds = %40 - %80 = landingpad { i8*, i32 } - cleanup - %81 = extractvalue { i8*, i32 } %80, 0 - store i8* %81, i8** %8, align 8 - %82 = extractvalue { i8*, i32 } %80, 1 - store i32 %82, i32* %9, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %17) #15 - br label %83 - -83: ; preds = %79, %75 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %14) #15 - br label %84 - -84: ; preds = %83, %74, %62, %58 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %10) #15 - br label %85 - -85: ; preds = %84, %54, %50 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #15 - br label %86 - -86: ; preds = %85, %44 - %87 = load i8*, i8** %8, align 8 - %88 = load i32, i32* %9, align 4 - %89 = insertvalue { i8*, i32 } undef, i8* %87, 0 - %90 = insertvalue { i8*, i32 } %89, i32 %88, 1 - resume { i8*, i32 } %90 -} - -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 #4 - -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 #4 - -; Function Attrs: nounwind -declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) #8 - -; Function Attrs: nounwind -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #8 - -; Function Attrs: noinline uwtable -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 #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i8*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca i8*, align 8 - %10 = alloca %"class.std::allocator"*, align 8 - %11 = alloca %"class.std::allocator"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"class.std::vector"*, align 8 - %14 = alloca %"class.std::vector"*, align 8 - %15 = alloca %"class.std::allocator", align 1 - %16 = alloca i8*, align 8 - %17 = alloca i32, align 4 - %18 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %19 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %13, align 8 - store %"class.std::vector"* %1, %"class.std::vector"** %14, align 8 - %20 = load %"class.std::vector"*, %"class.std::vector"** %13, align 8 - %21 = bitcast %"class.std::vector"* %20 to %"struct.std::_Vector_base"* - %22 = load %"class.std::vector"*, %"class.std::vector"** %14, align 8 - %23 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %22) #15 - %24 = load %"class.std::vector"*, %"class.std::vector"** %14, align 8 - %25 = bitcast %"class.std::vector"* %24 to %"struct.std::_Vector_base"* - %26 = 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) %25) #15 - call void @llvm.experimental.noalias.scope.decl(metadata !16) - %27 = bitcast %"class.std::allocator"* %15 to i8* - store i8* %27, i8** %9, align 8, !noalias !16 - store %"class.std::allocator"* %26, %"class.std::allocator"** %10, align 8, !noalias !16 - %28 = load %"class.std::allocator"*, %"class.std::allocator"** %10, align 8, !noalias !16 - call void @llvm.experimental.noalias.scope.decl(metadata !19) - %29 = bitcast %"class.std::allocator"* %15 to i8* - store i8* %29, i8** %7, align 8, !noalias !19 - store %"class.std::allocator"* %28, %"class.std::allocator"** %8, align 8, !noalias !19 - %30 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8, !noalias !19 - store %"class.std::allocator"* %15, %"class.std::allocator"** %5, align 8, !noalias !19 - store %"class.std::allocator"* %30, %"class.std::allocator"** %6, align 8, !noalias !19 - %31 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8, !noalias !19 - %32 = bitcast %"class.std::allocator"* %31 to %"class.std::__new_allocator"* - %33 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8, !noalias !19 - %34 = bitcast %"class.std::allocator"* %33 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %32, %"class.std::__new_allocator"** %3, align 8, !noalias !19 - store %"class.std::__new_allocator"* %34, %"class.std::__new_allocator"** %4, align 8, !noalias !19 - %35 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8, !noalias !19 - invoke void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %21, i64 noundef %23, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15) - to label %36 unwind label %62 - -36: ; preds = %2 - store %"class.std::allocator"* %15, %"class.std::allocator"** %12, align 8 - %37 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %38 = bitcast %"class.std::allocator"* %37 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %38) #15 - %39 = load %"class.std::vector"*, %"class.std::vector"** %14, align 8 - %40 = call i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %39) #15 - %41 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %18, i32 0, i32 0 - store i32* %40, i32** %41, align 8 - %42 = load %"class.std::vector"*, %"class.std::vector"** %14, align 8 - %43 = call i32* @_ZNKSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %42) #15 - %44 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %19, i32 0, i32 0 - store i32* %43, i32** %44, align 8 - %45 = bitcast %"class.std::vector"* %20 to %"struct.std::_Vector_base"* - %46 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %45, i32 0, i32 0 - %47 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %46 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %48 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %47, i32 0, i32 0 - %49 = load i32*, i32** %48, align 8 - %50 = bitcast %"class.std::vector"* %20 to %"struct.std::_Vector_base"* - %51 = 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) %50) #15 - %52 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %18, i32 0, i32 0 - %53 = load i32*, i32** %52, align 8 - %54 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %19, i32 0, i32 0 - %55 = load i32*, i32** %54, align 8 - %56 = invoke noundef i32* @_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiiET0_T_SA_S9_RSaIT1_E(i32* %53, i32* %55, i32* noundef %49, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %51) - to label %57 unwind label %68 - -57: ; preds = %36 - %58 = bitcast %"class.std::vector"* %20 to %"struct.std::_Vector_base"* - %59 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %58, i32 0, i32 0 - %60 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %59 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %61 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %60, i32 0, i32 1 - store i32* %56, i32** %61, align 8 - ret void - -62: ; preds = %2 - %63 = landingpad { i8*, i32 } - cleanup - %64 = extractvalue { i8*, i32 } %63, 0 - store i8* %64, i8** %16, align 8 - %65 = extractvalue { i8*, i32 } %63, 1 - store i32 %65, i32* %17, align 4 - store %"class.std::allocator"* %15, %"class.std::allocator"** %11, align 8 - %66 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %67 = bitcast %"class.std::allocator"* %66 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %67) #15 - br label %73 - -68: ; preds = %36 - %69 = landingpad { i8*, i32 } - cleanup - %70 = extractvalue { i8*, i32 } %69, 0 - store i8* %70, i8** %16, align 8 - %71 = extractvalue { i8*, i32 } %69, 1 - store i32 %71, i32* %17, align 4 - %72 = bitcast %"class.std::vector"* %20 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %72) #15 - br label %73 - -73: ; preds = %68, %62 - %74 = load i8*, i8** %16, align 8 - %75 = load i32, i32* %17, align 4 - %76 = insertvalue { i8*, i32 } undef, i8* %74, 0 - %77 = insertvalue { i8*, i32 } %76, i32 %75, 1 - resume { i8*, i32 } %77 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #5 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, 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"** %4, align 8 - %5 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %4, align 8 - %6 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = 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"* noundef nonnull align 8 dereferenceable(24) %10) #15 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base>::_Vector_impl_data"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl_data"* %0, %"struct.std::_Vector_base>::_Vector_impl_data"** %2, align 8 - %3 = load %"struct.std::_Vector_base>::_Vector_impl_data"*, %"struct.std::_Vector_base>::_Vector_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %2, align 8 - %3 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -; 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) #2 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %2, i32 (i64, i32, i64, i32)** %9, align 8 - store %struct.suffix* %0, %struct.suffix** %5, align 8 - store %struct.suffix* %1, %struct.suffix** %6, align 8 - %10 = load %struct.suffix*, %struct.suffix** %5, align 8 - %11 = load %struct.suffix*, %struct.suffix** %6, align 8 - %12 = icmp ne %struct.suffix* %10, %11 - br i1 %12, label %13, label %34 - -13: ; preds = %3 - %14 = load %struct.suffix*, %struct.suffix** %5, align 8 - %15 = load %struct.suffix*, %struct.suffix** %6, align 8 - %16 = load %struct.suffix*, %struct.suffix** %6, align 8 - %17 = load %struct.suffix*, %struct.suffix** %5, align 8 - %18 = ptrtoint %struct.suffix* %16 to i64 - %19 = ptrtoint %struct.suffix* %17 to i64 - %20 = sub i64 %18, %19 - %21 = sdiv exact i64 %20, 12 - %22 = call noundef i64 @_ZSt4__lgIlET_S0_(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* 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* - %31 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %30, i8* align 8 %31, i64 8, i1 false) - %32 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8, i32 0, i32 0 - %33 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %32, align 8 - call void @_ZSt22__final_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* noundef %28, %struct.suffix* noundef %29, i32 (i64, i32, i64, i32)* %33) - br label %34 - -34: ; preds = %13, %3 - ret void -} - -; 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) #2 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 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) #15 - %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"* 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: 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) #2 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = alloca %struct.suffix*, align 8 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %13 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %3, i32 (i64, i32, i64, i32)** %13, align 8 - store %struct.suffix* %0, %struct.suffix** %6, align 8 - store %struct.suffix* %1, %struct.suffix** %7, align 8 - store i64 %2, i64* %8, align 8 - br label %14 - -14: ; preds = %33, %4 - %15 = load %struct.suffix*, %struct.suffix** %7, align 8 - %16 = load %struct.suffix*, %struct.suffix** %6, align 8 - %17 = ptrtoint %struct.suffix* %15 to i64 - %18 = ptrtoint %struct.suffix* %16 to i64 - %19 = sub i64 %17, %18 - %20 = sdiv exact i64 %19, 12 - %21 = icmp sgt i64 %20, 16 - br i1 %21, label %22, label %51 - -22: ; preds = %14 - %23 = load i64, i64* %8, align 8 - %24 = icmp eq i64 %23, 0 - br i1 %24, label %25, label %33 - -25: ; preds = %22 - %26 = load %struct.suffix*, %struct.suffix** %6, align 8 - %27 = load %struct.suffix*, %struct.suffix** %7, align 8 - %28 = load %struct.suffix*, %struct.suffix** %7, align 8 - %29 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %30 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %29, i8* align 8 %30, i64 8, i1 false) - %31 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %32 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %31, align 8 - call void @_ZSt14__partial_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_(%struct.suffix* noundef %26, %struct.suffix* noundef %27, %struct.suffix* noundef %28, i32 (i64, i32, i64, i32)* %32) - br label %51 - -33: ; preds = %22 - %34 = load i64, i64* %8, align 8 - %35 = add nsw i64 %34, -1 - store i64 %35, i64* %8, align 8 - %36 = load %struct.suffix*, %struct.suffix** %6, align 8 - %37 = load %struct.suffix*, %struct.suffix** %7, align 8 - %38 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %39 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %38, i8* align 8 %39, i64 8, i1 false) - %40 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %41 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %40, align 8 - %42 = call 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 - %45 = load i64, i64* %8, align 8 - %46 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %12 to i8* - %47 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %46, i8* align 8 %47, i64 8, i1 false) - %48 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %12, i32 0, i32 0 - %49 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %48, align 8 - call void @_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_T1_(%struct.suffix* 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 !22 - -51: ; preds = %25, %14 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt4__lgIlET_S0_(i64 noundef %0) #0 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = call noundef i32 @_ZSt11__bit_widthImEiT_(i64 noundef %3) #15 - %5 = sub nsw i32 %4, 1 - %6 = sext i32 %5 to i64 - ret i64 %6 -} - -; 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) #2 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %2, i32 (i64, i32, i64, i32)** %10, align 8 - store %struct.suffix* %0, %struct.suffix** %5, align 8 - store %struct.suffix* %1, %struct.suffix** %6, align 8 - %11 = load %struct.suffix*, %struct.suffix** %6, align 8 - %12 = load %struct.suffix*, %struct.suffix** %5, align 8 - %13 = ptrtoint %struct.suffix* %11 to i64 - %14 = ptrtoint %struct.suffix* %12 to i64 - %15 = sub i64 %13, %14 - %16 = sdiv exact i64 %15, 12 - %17 = icmp sgt i64 %16, 16 - br i1 %17, label %18, label %33 - -18: ; preds = %3 - %19 = load %struct.suffix*, %struct.suffix** %5, align 8 - %20 = load %struct.suffix*, %struct.suffix** %5, align 8 - %21 = getelementptr inbounds %struct.suffix, %struct.suffix* %20, i64 16 - %22 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7 to i8* - %23 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %22, i8* align 8 %23, i64 8, i1 false) - %24 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %25 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %24, align 8 - call void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* 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 - %29 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8 to i8* - %30 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %29, i8* align 8 %30, i64 8, i1 false) - %31 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8, i32 0, i32 0 - %32 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %31, align 8 - call void @_ZSt26__unguarded_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* noundef %27, %struct.suffix* noundef %28, i32 (i64, i32, i64, i32)* %32) - br label %40 - -33: ; preds = %3 - %34 = load %struct.suffix*, %struct.suffix** %5, align 8 - %35 = load %struct.suffix*, %struct.suffix** %6, align 8 - %36 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %37 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %36, i8* align 8 %37, i64 8, i1 false) - %38 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %39 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %38, align 8 - call void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* noundef %34, %struct.suffix* noundef %35, i32 (i64, i32, i64, i32)* %39) - br label %40 - -40: ; preds = %33, %18 - ret void -} - -; 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) #2 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %struct.suffix*, align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %3, i32 (i64, i32, i64, i32)** %10, align 8 - store %struct.suffix* %0, %struct.suffix** %6, align 8 - store %struct.suffix* %1, %struct.suffix** %7, align 8 - store %struct.suffix* %2, %struct.suffix** %8, align 8 - %11 = load %struct.suffix*, %struct.suffix** %6, align 8 - %12 = load %struct.suffix*, %struct.suffix** %7, align 8 - %13 = load %struct.suffix*, %struct.suffix** %8, align 8 - %14 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %15 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %14, i8* align 8 %15, i64 8, i1 false) - %16 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %17 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %16, align 8 - call void @_ZSt13__heap_selectIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_(%struct.suffix* 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* noundef %18, %struct.suffix* noundef %19, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %5) - ret void -} - -; 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) #2 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %2, i32 (i64, i32, i64, i32)** %10, align 8 - store %struct.suffix* %0, %struct.suffix** %5, align 8 - store %struct.suffix* %1, %struct.suffix** %6, align 8 - %11 = load %struct.suffix*, %struct.suffix** %5, align 8 - %12 = load %struct.suffix*, %struct.suffix** %6, align 8 - %13 = load %struct.suffix*, %struct.suffix** %5, align 8 - %14 = ptrtoint %struct.suffix* %12 to i64 - %15 = ptrtoint %struct.suffix* %13 to i64 - %16 = sub i64 %14, %15 - %17 = sdiv exact i64 %16, 12 - %18 = sdiv i64 %17, 2 - %19 = getelementptr inbounds %struct.suffix, %struct.suffix* %11, i64 %18 - store %struct.suffix* %19, %struct.suffix** %7, align 8 - %20 = load %struct.suffix*, %struct.suffix** %5, align 8 - %21 = load %struct.suffix*, %struct.suffix** %5, align 8 - %22 = getelementptr inbounds %struct.suffix, %struct.suffix* %21, i64 1 - %23 = load %struct.suffix*, %struct.suffix** %7, align 8 - %24 = load %struct.suffix*, %struct.suffix** %6, align 8 - %25 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 -1 - %26 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8 to i8* - %27 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %26, i8* align 8 %27, i64 8, i1 false) - %28 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8, i32 0, i32 0 - %29 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %28, align 8 - call void @_ZSt22__move_median_to_firstIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_S8_T0_(%struct.suffix* 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 - %33 = load %struct.suffix*, %struct.suffix** %5, align 8 - %34 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %35 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %34, i8* align 8 %35, i64 8, i1 false) - %36 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %37 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %36, align 8 - %38 = call 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: 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) #2 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %struct.suffix*, align 8 - %9 = alloca %struct.suffix*, align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %3, i32 (i64, i32, i64, i32)** %10, align 8 - store %struct.suffix* %0, %struct.suffix** %6, align 8 - store %struct.suffix* %1, %struct.suffix** %7, align 8 - store %struct.suffix* %2, %struct.suffix** %8, align 8 - %11 = load %struct.suffix*, %struct.suffix** %6, align 8 - %12 = load %struct.suffix*, %struct.suffix** %7, align 8 - call void @_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_(%struct.suffix* 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 - -14: ; preds = %27, %4 - %15 = load %struct.suffix*, %struct.suffix** %9, align 8 - %16 = load %struct.suffix*, %struct.suffix** %8, align 8 - %17 = icmp ult %struct.suffix* %15, %16 - br i1 %17, label %18, label %30 - -18: ; preds = %14 - %19 = load %struct.suffix*, %struct.suffix** %9, align 8 - %20 = load %struct.suffix*, %struct.suffix** %6, align 8 - %21 = call 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* 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 - br label %27 - -27: ; preds = %26 - %28 = load %struct.suffix*, %struct.suffix** %9, align 8 - %29 = getelementptr inbounds %struct.suffix, %struct.suffix* %28, i32 1 - store %struct.suffix* %29, %struct.suffix** %9, align 8 - br label %14, !llvm.loop !23 - -30: ; preds = %14 - ret void -} - -; 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) #2 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - br label %7 - -7: ; preds = %15, %3 - %8 = load %struct.suffix*, %struct.suffix** %5, align 8 - %9 = load %struct.suffix*, %struct.suffix** %4, align 8 - %10 = ptrtoint %struct.suffix* %8 to i64 - %11 = ptrtoint %struct.suffix* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 12 - %14 = icmp sgt i64 %13, 1 - br i1 %14, label %15, label %22 - -15: ; preds = %7 - %16 = load %struct.suffix*, %struct.suffix** %5, align 8 - %17 = getelementptr inbounds %struct.suffix, %struct.suffix* %16, i32 -1 - store %struct.suffix* %17, %struct.suffix** %5, align 8 - %18 = load %struct.suffix*, %struct.suffix** %4, align 8 - %19 = load %struct.suffix*, %struct.suffix** %5, align 8 - %20 = load %struct.suffix*, %struct.suffix** %5, align 8 - %21 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - call void @_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_RT0_(%struct.suffix* 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 !24 - -22: ; preds = %7 - ret void -} - -; 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) #2 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca %struct.suffix, align 4 - %10 = alloca %struct.suffix, align 4 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %12 = alloca { i64, i32 }, align 4 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %13 = load %struct.suffix*, %struct.suffix** %5, align 8 - %14 = load %struct.suffix*, %struct.suffix** %4, align 8 - %15 = ptrtoint %struct.suffix* %13 to i64 - %16 = ptrtoint %struct.suffix* %14 to i64 - %17 = sub i64 %15, %16 - %18 = sdiv exact i64 %17, 12 - %19 = icmp slt i64 %18, 2 - br i1 %19, label %20, label %21 - -20: ; preds = %3 - br label %61 - -21: ; preds = %3 - %22 = load %struct.suffix*, %struct.suffix** %5, align 8 - %23 = load %struct.suffix*, %struct.suffix** %4, align 8 - %24 = ptrtoint %struct.suffix* %22 to i64 - %25 = ptrtoint %struct.suffix* %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 12 - store i64 %27, i64* %7, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub nsw i64 %28, 2 - %30 = sdiv i64 %29, 2 - store i64 %30, i64* %8, align 8 - br label %31 - -31: ; preds = %21, %58 - %32 = load %struct.suffix*, %struct.suffix** %4, align 8 - %33 = load i64, i64* %8, align 8 - %34 = getelementptr inbounds %struct.suffix, %struct.suffix* %32, i64 %33 - %35 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %34) #15 - %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 noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %9) #15 - %42 = bitcast %struct.suffix* %10 to i8* - %43 = bitcast %struct.suffix* %41 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %42, i8* align 4 %43, i64 12, i1 false) - %44 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %45 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %46 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %44 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %45, i8* align 8 %46, i64 8, i1 false) - %47 = bitcast { i64, i32 }* %12 to i8* - %48 = bitcast %struct.suffix* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %47, i8* align 4 %48, i64 12, i1 false) - %49 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 0 - %50 = load i64, i64* %49, align 4 - %51 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 1 - %52 = load i32, i32* %51, align 4 - %53 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %54 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %53, align 8 - call void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.suffix* 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 - -57: ; preds = %31 - br label %61 - -58: ; preds = %31 - %59 = load i64, i64* %8, align 8 - %60 = add nsw i64 %59, -1 - store i64 %60, i64* %8, align 8 - br label %31, !llvm.loop !25 - -61: ; preds = %57, %20 - ret void -} - -; 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) #2 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix, align 4 - %8 = alloca %struct.suffix, align 4 - %9 = alloca { i64, i32 }, align 4 - %10 = alloca { i64, i32 }, align 4 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %11 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %13 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %12, align 8 - %14 = load %struct.suffix*, %struct.suffix** %5, align 8 - %15 = bitcast %struct.suffix* %7 to i8* - %16 = bitcast %struct.suffix* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.suffix*, %struct.suffix** %6, align 8 - %18 = bitcast %struct.suffix* %8 to i8* - %19 = bitcast %struct.suffix* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %19, i64 12, i1 false) - %20 = bitcast { i64, i32 }* %9 to i8* - %21 = bitcast %struct.suffix* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 0 - %23 = load i64, i64* %22, align 4 - %24 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - %26 = bitcast { i64, i32 }* %10 to i8* - %27 = bitcast %struct.suffix* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %26, i8* align 4 %27, i64 12, i1 false) - %28 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 0 - %29 = load i64, i64* %28, align 4 - %30 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 1 - %31 = load i32, i32* %30, align 4 - %32 = call noundef i32 %13(i64 %23, i32 %25, i64 %29, i32 %31) - %33 = icmp ne i32 %32, 0 - ret i1 %33 -} - -; 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) #2 comdat { - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %9 = alloca %struct.suffix, align 4 - %10 = alloca %struct.suffix, align 4 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %12 = alloca { i64, i32 }, align 4 - store %struct.suffix* %0, %struct.suffix** %5, align 8 - store %struct.suffix* %1, %struct.suffix** %6, align 8 - store %struct.suffix* %2, %struct.suffix** %7, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %8, align 8 - %13 = load %struct.suffix*, %struct.suffix** %7, align 8 - %14 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %13) #15 - %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 noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %17) #15 - %19 = load %struct.suffix*, %struct.suffix** %7, align 8 - %20 = bitcast %struct.suffix* %19 to i8* - %21 = bitcast %struct.suffix* %18 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = load %struct.suffix*, %struct.suffix** %5, align 8 - %23 = load %struct.suffix*, %struct.suffix** %6, align 8 - %24 = load %struct.suffix*, %struct.suffix** %5, align 8 - %25 = ptrtoint %struct.suffix* %23 to i64 - %26 = ptrtoint %struct.suffix* %24 to i64 - %27 = sub i64 %25, %26 - %28 = sdiv exact i64 %27, 12 - %29 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %9) #15 - %30 = bitcast %struct.suffix* %10 to i8* - %31 = bitcast %struct.suffix* %29 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %30, i8* align 4 %31, i64 12, i1 false) - %32 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %8, align 8 - %33 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %34 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %32 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %33, i8* align 8 %34, i64 8, i1 false) - %35 = bitcast { i64, i32 }* %12 to i8* - %36 = bitcast %struct.suffix* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %35, i8* align 4 %36, i64 12, i1 false) - %37 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 0 - %38 = load i64, i64* %37, align 4 - %39 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 1 - %40 = load i32, i32* %39, align 4 - %41 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %42 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %41, align 8 - call void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.suffix* noundef %22, i64 noundef 0, i64 noundef %28, i64 %38, i32 %40, i32 (i64, i32, i64, i32)* %42) - ret void -} - -; 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) #0 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: 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) #2 comdat { - %7 = alloca %struct.suffix, align 4 - %8 = alloca { i64, i32 }, align 4 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = alloca %struct.suffix*, align 8 - %11 = alloca i64, align 8 - %12 = alloca i64, align 8 - %13 = alloca i64, align 8 - %14 = alloca i64, align 8 - %15 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val", align 8 - %16 = alloca %struct.suffix, align 4 - %17 = alloca { i64, i32 }, align 4 - %18 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 0 - store i64 %3, i64* %18, align 4 - %19 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 1 - store i32 %4, i32* %19, align 4 - %20 = bitcast %struct.suffix* %7 to i8* - %21 = bitcast { i64, i32 }* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %5, i32 (i64, i32, i64, i32)** %22, align 8 - store %struct.suffix* %0, %struct.suffix** %10, align 8 - store i64 %1, i64* %11, align 8 - store i64 %2, i64* %12, align 8 - %23 = load i64, i64* %11, align 8 - store i64 %23, i64* %13, align 8 - %24 = load i64, i64* %11, align 8 - store i64 %24, i64* %14, align 8 - br label %25 - -25: ; preds = %46, %6 - %26 = load i64, i64* %14, align 8 - %27 = load i64, i64* %12, align 8 - %28 = sub nsw i64 %27, 1 - %29 = sdiv i64 %28, 2 - %30 = icmp slt i64 %26, %29 - br i1 %30, label %31, label %57 - -31: ; preds = %25 - %32 = load i64, i64* %14, align 8 - %33 = add nsw i64 %32, 1 - %34 = mul nsw i64 2, %33 - store i64 %34, i64* %14, align 8 - %35 = load %struct.suffix*, %struct.suffix** %10, align 8 - %36 = load i64, i64* %14, align 8 - %37 = getelementptr inbounds %struct.suffix, %struct.suffix* %35, i64 %36 - %38 = load %struct.suffix*, %struct.suffix** %10, align 8 - %39 = load i64, i64* %14, align 8 - %40 = sub nsw i64 %39, 1 - %41 = getelementptr inbounds %struct.suffix, %struct.suffix* %38, i64 %40 - %42 = call 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 - %44 = load i64, i64* %14, align 8 - %45 = add nsw i64 %44, -1 - store i64 %45, i64* %14, align 8 - br label %46 - -46: ; preds = %43, %31 - %47 = load %struct.suffix*, %struct.suffix** %10, align 8 - %48 = load i64, i64* %14, align 8 - %49 = getelementptr inbounds %struct.suffix, %struct.suffix* %47, i64 %48 - %50 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %49) #15 - %51 = load %struct.suffix*, %struct.suffix** %10, align 8 - %52 = load i64, i64* %11, align 8 - %53 = getelementptr inbounds %struct.suffix, %struct.suffix* %51, i64 %52 - %54 = bitcast %struct.suffix* %53 to i8* - %55 = bitcast %struct.suffix* %50 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %54, i8* align 4 %55, i64 12, i1 false) - %56 = load i64, i64* %14, align 8 - store i64 %56, i64* %11, align 8 - br label %25, !llvm.loop !26 - -57: ; preds = %25 - %58 = load i64, i64* %12, align 8 - %59 = and i64 %58, 1 - %60 = icmp eq i64 %59, 0 - br i1 %60, label %61, label %83 - -61: ; preds = %57 - %62 = load i64, i64* %14, align 8 - %63 = load i64, i64* %12, align 8 - %64 = sub nsw i64 %63, 2 - %65 = sdiv i64 %64, 2 - %66 = icmp eq i64 %62, %65 - br i1 %66, label %67, label %83 - -67: ; preds = %61 - %68 = load i64, i64* %14, align 8 - %69 = add nsw i64 %68, 1 - %70 = mul nsw i64 2, %69 - store i64 %70, i64* %14, align 8 - %71 = load %struct.suffix*, %struct.suffix** %10, align 8 - %72 = load i64, i64* %14, align 8 - %73 = sub nsw i64 %72, 1 - %74 = getelementptr inbounds %struct.suffix, %struct.suffix* %71, i64 %73 - %75 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %74) #15 - %76 = load %struct.suffix*, %struct.suffix** %10, align 8 - %77 = load i64, i64* %11, align 8 - %78 = getelementptr inbounds %struct.suffix, %struct.suffix* %76, i64 %77 - %79 = bitcast %struct.suffix* %78 to i8* - %80 = bitcast %struct.suffix* %75 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %79, i8* align 4 %80, i64 12, i1 false) - %81 = load i64, i64* %14, align 8 - %82 = sub nsw i64 %81, 1 - store i64 %82, i64* %11, align 8 - br label %83 - -83: ; preds = %67, %61, %57 - %84 = call 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) #15 - 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 noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %7) #15 - %89 = bitcast %struct.suffix* %16 to i8* - %90 = bitcast %struct.suffix* %88 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %89, i8* align 4 %90, i64 12, i1 false) - %91 = bitcast { i64, i32 }* %17 to i8* - %92 = bitcast %struct.suffix* %16 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %91, i8* align 4 %92, i64 12, i1 false) - %93 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %17, i32 0, i32 0 - %94 = load i64, i64* %93, align 4 - %95 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %17, i32 0, i32 1 - %96 = load i32, i32* %95, align 4 - call void @_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFiS0_S0_EEEEvT_T0_S9_T1_RT2_(%struct.suffix* 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: 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) #0 comdat { - %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %2, align 8 - ret %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %1) unnamed_addr #5 comdat align 2 { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %3, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %5 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %3, align 8 - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %5, i32 0, i32 0 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %9 = call 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) #15 - %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: 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) #2 comdat { - %7 = alloca %struct.suffix, align 4 - %8 = alloca { i64, i32 }, align 4 - %9 = alloca %struct.suffix*, align 8 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %13 = alloca i64, align 8 - %14 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 0 - store i64 %3, i64* %14, align 4 - %15 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 1 - store i32 %4, i32* %15, align 4 - %16 = bitcast %struct.suffix* %7 to i8* - %17 = bitcast { i64, i32 }* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %16, i8* align 4 %17, i64 12, i1 false) - store %struct.suffix* %0, %struct.suffix** %9, align 8 - store i64 %1, i64* %10, align 8 - store i64 %2, i64* %11, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %5, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %12, align 8 - %18 = load i64, i64* %10, align 8 - %19 = sub nsw i64 %18, 1 - %20 = sdiv i64 %19, 2 - store i64 %20, i64* %13, align 8 - br label %21 - -21: ; preds = %33, %6 - %22 = load i64, i64* %10, align 8 - %23 = load i64, i64* %11, align 8 - %24 = icmp sgt i64 %22, %23 - br i1 %24, label %25, label %31 - -25: ; preds = %21 - %26 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %12, align 8 - %27 = load %struct.suffix*, %struct.suffix** %9, align 8 - %28 = load i64, i64* %13, align 8 - %29 = getelementptr inbounds %struct.suffix, %struct.suffix* %27, i64 %28 - %30 = call 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 - %32 = phi i1 [ false, %21 ], [ %30, %25 ] - br i1 %32, label %33, label %47 - -33: ; preds = %31 - %34 = load %struct.suffix*, %struct.suffix** %9, align 8 - %35 = load i64, i64* %13, align 8 - %36 = getelementptr inbounds %struct.suffix, %struct.suffix* %34, i64 %35 - %37 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %36) #15 - %38 = load %struct.suffix*, %struct.suffix** %9, align 8 - %39 = load i64, i64* %10, align 8 - %40 = getelementptr inbounds %struct.suffix, %struct.suffix* %38, i64 %39 - %41 = bitcast %struct.suffix* %40 to i8* - %42 = bitcast %struct.suffix* %37 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %41, i8* align 4 %42, i64 12, i1 false) - %43 = load i64, i64* %13, align 8 - store i64 %43, i64* %10, align 8 - %44 = load i64, i64* %10, align 8 - %45 = sub nsw i64 %44, 1 - %46 = sdiv i64 %45, 2 - store i64 %46, i64* %13, align 8 - br label %21, !llvm.loop !27 - -47: ; preds = %31 - %48 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %7) #15 - %49 = load %struct.suffix*, %struct.suffix** %9, align 8 - %50 = load i64, i64* %10, align 8 - %51 = getelementptr inbounds %struct.suffix, %struct.suffix* %49, i64 %50 - %52 = bitcast %struct.suffix* %51 to i8* - %53 = bitcast %struct.suffix* %48 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %52, i8* align 4 %53, i64 12, i1 false) - ret void -} - -; Function Attrs: 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) #0 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: 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) #2 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix, align 4 - %8 = alloca %struct.suffix, align 4 - %9 = alloca { i64, i32 }, align 4 - %10 = alloca { i64, i32 }, align 4 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %11 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %4, align 8 - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %11, i32 0, i32 0 - %13 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %12, align 8 - %14 = load %struct.suffix*, %struct.suffix** %5, align 8 - %15 = bitcast %struct.suffix* %7 to i8* - %16 = bitcast %struct.suffix* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.suffix*, %struct.suffix** %6, align 8 - %18 = bitcast %struct.suffix* %8 to i8* - %19 = bitcast %struct.suffix* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %19, i64 12, i1 false) - %20 = bitcast { i64, i32 }* %9 to i8* - %21 = bitcast %struct.suffix* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 0 - %23 = load i64, i64* %22, align 4 - %24 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - %26 = bitcast { i64, i32 }* %10 to i8* - %27 = bitcast %struct.suffix* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %26, i8* align 4 %27, i64 12, i1 false) - %28 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 0 - %29 = load i64, i64* %28, align 4 - %30 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 1 - %31 = load i32, i32* %30, align 4 - %32 = call noundef i32 %13(i64 %23, i32 %25, i64 %29, i32 %31) - %33 = icmp ne i32 %32, 0 - ret i1 %33 -} - -; 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) #2 comdat { - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %struct.suffix*, align 8 - %9 = alloca %struct.suffix*, align 8 - %10 = alloca %struct.suffix*, align 8 - %11 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %6, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %4, i32 (i64, i32, i64, i32)** %11, align 8 - store %struct.suffix* %0, %struct.suffix** %7, align 8 - store %struct.suffix* %1, %struct.suffix** %8, align 8 - store %struct.suffix* %2, %struct.suffix** %9, align 8 - store %struct.suffix* %3, %struct.suffix** %10, align 8 - %12 = load %struct.suffix*, %struct.suffix** %8, align 8 - %13 = load %struct.suffix*, %struct.suffix** %9, align 8 - %14 = call 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 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* 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 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* 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* noundef %30, %struct.suffix* noundef %31) - br label %32 - -32: ; preds = %29, %26 - br label %33 - -33: ; preds = %32, %19 - br label %53 - -34: ; preds = %5 - %35 = load %struct.suffix*, %struct.suffix** %8, align 8 - %36 = load %struct.suffix*, %struct.suffix** %10, align 8 - %37 = call 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* 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 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* 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* noundef %49, %struct.suffix* noundef %50) - br label %51 - -51: ; preds = %48, %45 - br label %52 - -52: ; preds = %51, %38 - br label %53 - -53: ; preds = %52, %33 - ret void -} - -; Function Attrs: 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) #2 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %struct.suffix*, align 8 - %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %3, i32 (i64, i32, i64, i32)** %9, align 8 - store %struct.suffix* %0, %struct.suffix** %6, align 8 - store %struct.suffix* %1, %struct.suffix** %7, align 8 - store %struct.suffix* %2, %struct.suffix** %8, align 8 - br label %10 - -10: ; preds = %4, %34 - br label %11 - -11: ; preds = %15, %10 - %12 = load %struct.suffix*, %struct.suffix** %6, align 8 - %13 = load %struct.suffix*, %struct.suffix** %8, align 8 - %14 = call 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 !28 - -18: ; preds = %11 - %19 = load %struct.suffix*, %struct.suffix** %7, align 8 - %20 = getelementptr inbounds %struct.suffix, %struct.suffix* %19, i32 -1 - store %struct.suffix* %20, %struct.suffix** %7, align 8 - br label %21 - -21: ; preds = %25, %18 - %22 = load %struct.suffix*, %struct.suffix** %8, align 8 - %23 = load %struct.suffix*, %struct.suffix** %7, align 8 - %24 = call 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 !29 - -28: ; preds = %21 - %29 = load %struct.suffix*, %struct.suffix** %6, align 8 - %30 = load %struct.suffix*, %struct.suffix** %7, align 8 - %31 = icmp ult %struct.suffix* %29, %30 - br i1 %31, label %34, label %32 - -32: ; preds = %28 - %33 = load %struct.suffix*, %struct.suffix** %6, align 8 - ret %struct.suffix* %33 - -34: ; preds = %28 - %35 = load %struct.suffix*, %struct.suffix** %6, align 8 - %36 = load %struct.suffix*, %struct.suffix** %7, align 8 - call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* 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, !llvm.loop !30 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* noundef %0, %struct.suffix* noundef %1) #0 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* noundef nonnull align 4 dereferenceable(12) %5, %struct.suffix* noundef nonnull align 4 dereferenceable(12) %6) #15 - ret void -} - -; 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) #0 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 noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %6) #15 - %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 noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %10) #15 - %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 noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %5) #15 - %16 = load %struct.suffix*, %struct.suffix** %4, align 8 - %17 = bitcast %struct.suffix* %16 to i8* - %18 = bitcast %struct.suffix* %15 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %17, i8* align 4 %18, i64 12, i1 false) - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32 @_ZSt11__bit_widthImEiT_(i64 noundef %0) #0 comdat { - %2 = alloca i64, align 8 - %3 = alloca i32, align 4 - store i64 %0, i64* %2, align 8 - store i32 64, i32* %3, align 4 - %4 = load i64, i64* %2, align 8 - %5 = call noundef i32 @_ZSt13__countl_zeroImEiT_(i64 noundef %4) #15 - %6 = sub nsw i32 64, %5 - ret i32 %6 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32 @_ZSt13__countl_zeroImEiT_(i64 noundef %0) #0 comdat { - %2 = alloca i32, align 4 - %3 = alloca i64, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i64 %0, i64* %3, align 8 - store i32 64, i32* %4, align 4 - %9 = load i64, i64* %3, align 8 - %10 = icmp eq i64 %9, 0 - br i1 %10, label %11, label %12 - -11: ; preds = %1 - store i32 64, i32* %2, align 4 - br label %17 - -12: ; preds = %1 - store i32 64, i32* %5, align 4 - store i32 64, i32* %6, align 4 - store i32 32, i32* %7, align 4 - store i32 0, i32* %8, align 4 - %13 = load i64, i64* %3, align 8 - %14 = call i64 @llvm.ctlz.i64(i64 %13, i1 true) - %15 = trunc i64 %14 to i32 - %16 = sub nsw i32 %15, 0 - store i32 %16, i32* %2, align 4 - br label %17 - -17: ; preds = %12, %11 - %18 = load i32, i32* %2, align 4 - ret i32 %18 -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare i64 @llvm.ctlz.i64(i64, i1 immarg) #9 - -; 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) #2 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %struct.suffix, align 4 - %9 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %11 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %2, i32 (i64, i32, i64, i32)** %11, align 8 - store %struct.suffix* %0, %struct.suffix** %5, align 8 - store %struct.suffix* %1, %struct.suffix** %6, align 8 - %12 = load %struct.suffix*, %struct.suffix** %5, align 8 - %13 = load %struct.suffix*, %struct.suffix** %6, align 8 - %14 = icmp eq %struct.suffix* %12, %13 - br i1 %14, label %15, label %16 - -15: ; preds = %3 - br label %55 - -16: ; preds = %3 - %17 = load %struct.suffix*, %struct.suffix** %5, align 8 - %18 = getelementptr inbounds %struct.suffix, %struct.suffix* %17, i64 1 - store %struct.suffix* %18, %struct.suffix** %7, align 8 - br label %19 - -19: ; preds = %52, %16 - %20 = load %struct.suffix*, %struct.suffix** %7, align 8 - %21 = load %struct.suffix*, %struct.suffix** %6, align 8 - %22 = icmp ne %struct.suffix* %20, %21 - br i1 %22, label %23, label %55 - -23: ; preds = %19 - %24 = load %struct.suffix*, %struct.suffix** %7, align 8 - %25 = load %struct.suffix*, %struct.suffix** %5, align 8 - %26 = call 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 noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %28) #15 - %30 = bitcast %struct.suffix* %8 to i8* - %31 = bitcast %struct.suffix* %29 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %30, i8* align 4 %31, i64 12, i1 false) - %32 = load %struct.suffix*, %struct.suffix** %5, align 8 - %33 = load %struct.suffix*, %struct.suffix** %7, align 8 - %34 = load %struct.suffix*, %struct.suffix** %7, align 8 - %35 = getelementptr inbounds %struct.suffix, %struct.suffix* %34, i64 1 - %36 = call 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) #15 - %38 = load %struct.suffix*, %struct.suffix** %5, align 8 - %39 = bitcast %struct.suffix* %38 to i8* - %40 = bitcast %struct.suffix* %37 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %39, i8* align 4 %40, i64 12, i1 false) - br label %51 - -41: ; preds = %23 - %42 = load %struct.suffix*, %struct.suffix** %7, align 8 - %43 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %10 to i8* - %44 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %43, i8* align 8 %44, i64 8, i1 false) - %45 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %10, i32 0, i32 0 - %46 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %45, align 8 - %47 = call i32 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFi6suffixS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(i32 (i64, i32, i64, i32)* %46) - %48 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %9, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %47, i32 (i64, i32, i64, i32)** %48, align 8 - %49 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %9, i32 0, i32 0 - %50 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %49, align 8 - call void @_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_(%struct.suffix* noundef %42, i32 (i64, i32, i64, i32)* %50) - br label %51 - -51: ; preds = %41, %27 - br label %52 - -52: ; preds = %51 - %53 = load %struct.suffix*, %struct.suffix** %7, align 8 - %54 = getelementptr inbounds %struct.suffix, %struct.suffix* %53, i32 1 - store %struct.suffix* %54, %struct.suffix** %7, align 8 - br label %19, !llvm.loop !31 - -55: ; preds = %15, %19 - ret void -} - -; 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) #2 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %2, i32 (i64, i32, i64, i32)** %10, align 8 - store %struct.suffix* %0, %struct.suffix** %5, align 8 - store %struct.suffix* %1, %struct.suffix** %6, align 8 - %11 = load %struct.suffix*, %struct.suffix** %5, align 8 - store %struct.suffix* %11, %struct.suffix** %7, align 8 - br label %12 - -12: ; preds = %26, %3 - %13 = load %struct.suffix*, %struct.suffix** %7, align 8 - %14 = load %struct.suffix*, %struct.suffix** %6, align 8 - %15 = icmp ne %struct.suffix* %13, %14 - br i1 %15, label %16, label %29 - -16: ; preds = %12 - %17 = load %struct.suffix*, %struct.suffix** %7, align 8 - %18 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %19 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %19, i64 8, i1 false) - %20 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %21 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %20, align 8 - %22 = call i32 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFi6suffixS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(i32 (i64, i32, i64, i32)* %21) - %23 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %8, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %22, i32 (i64, i32, i64, i32)** %23, align 8 - %24 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %8, i32 0, i32 0 - %25 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %24, align 8 - call void @_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_(%struct.suffix* 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 !32 - -29: ; preds = %12 - ret void -} - -; 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) #2 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %7 = load %struct.suffix*, %struct.suffix** %4, align 8 - %8 = call noundef %struct.suffix* @_ZSt12__miter_baseIP6suffixET_S2_(%struct.suffix* noundef %7) - %9 = load %struct.suffix*, %struct.suffix** %5, align 8 - %10 = call noundef %struct.suffix* @_ZSt12__miter_baseIP6suffixET_S2_(%struct.suffix* noundef %9) - %11 = load %struct.suffix*, %struct.suffix** %6, align 8 - %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: 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) #2 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix, align 4 - %6 = alloca %struct.suffix*, align 8 - %7 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %3, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %1, i32 (i64, i32, i64, i32)** %7, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - %8 = load %struct.suffix*, %struct.suffix** %4, align 8 - %9 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %8) #15 - %10 = bitcast %struct.suffix* %5 to i8* - %11 = bitcast %struct.suffix* %9 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %10, i8* align 4 %11, i64 12, i1 false) - %12 = load %struct.suffix*, %struct.suffix** %4, align 8 - store %struct.suffix* %12, %struct.suffix** %6, align 8 - %13 = load %struct.suffix*, %struct.suffix** %6, align 8 - %14 = getelementptr inbounds %struct.suffix, %struct.suffix* %13, i32 -1 - store %struct.suffix* %14, %struct.suffix** %6, align 8 - br label %15 - -15: ; preds = %18, %2 - %16 = load %struct.suffix*, %struct.suffix** %6, align 8 - %17 = call 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 noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %19) #15 - %21 = load %struct.suffix*, %struct.suffix** %4, align 8 - %22 = bitcast %struct.suffix* %21 to i8* - %23 = bitcast %struct.suffix* %20 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %22, i8* align 4 %23, i64 12, i1 false) - %24 = load %struct.suffix*, %struct.suffix** %6, align 8 - store %struct.suffix* %24, %struct.suffix** %4, align 8 - %25 = load %struct.suffix*, %struct.suffix** %6, align 8 - %26 = getelementptr inbounds %struct.suffix, %struct.suffix* %25, i32 -1 - store %struct.suffix* %26, %struct.suffix** %6, align 8 - br label %15, !llvm.loop !33 - -27: ; preds = %15 - %28 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %5) #15 - %29 = load %struct.suffix*, %struct.suffix** %4, align 8 - %30 = bitcast %struct.suffix* %29 to i8* - %31 = bitcast %struct.suffix* %28 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %30, i8* align 4 %31, i64 12, i1 false) - ret void -} - -; Function Attrs: 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) #2 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 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) #15 - 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: 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) #2 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %7 = load %struct.suffix*, %struct.suffix** %4, align 8 - %8 = call noundef %struct.suffix* @_ZSt12__niter_baseIP6suffixET_S2_(%struct.suffix* noundef %7) #15 - %9 = load %struct.suffix*, %struct.suffix** %5, align 8 - %10 = call noundef %struct.suffix* @_ZSt12__niter_baseIP6suffixET_S2_(%struct.suffix* noundef %9) #15 - %11 = load %struct.suffix*, %struct.suffix** %6, align 8 - %12 = call noundef %struct.suffix* @_ZSt12__niter_baseIP6suffixET_S2_(%struct.suffix* noundef %11) #15 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef %struct.suffix* @_ZSt12__miter_baseIP6suffixET_S2_(%struct.suffix* noundef %0) #0 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: 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) #0 comdat { - %3 = alloca %struct.suffix**, align 8 - %4 = alloca %struct.suffix*, align 8 - store %struct.suffix** %0, %struct.suffix*** %3, align 8 - store %struct.suffix* %1, %struct.suffix** %4, align 8 - %5 = load %struct.suffix*, %struct.suffix** %4, align 8 - ret %struct.suffix* %5 -} - -; Function Attrs: 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) #2 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %7 = load %struct.suffix*, %struct.suffix** %4, align 8 - %8 = load %struct.suffix*, %struct.suffix** %5, align 8 - %9 = load %struct.suffix*, %struct.suffix** %6, align 8 - %10 = call 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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef %struct.suffix* @_ZSt12__niter_baseIP6suffixET_S2_(%struct.suffix* noundef %0) #0 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: 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) #2 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %7 = load %struct.suffix*, %struct.suffix** %4, align 8 - %8 = load %struct.suffix*, %struct.suffix** %5, align 8 - %9 = load %struct.suffix*, %struct.suffix** %6, align 8 - %10 = call noundef %struct.suffix* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI6suffixS3_EEPT0_PT_S7_S5_(%struct.suffix* noundef %7, %struct.suffix* noundef %8, %struct.suffix* noundef %9) - ret %struct.suffix* %10 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %struct.suffix* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI6suffixS3_EEPT0_PT_S7_S5_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, %struct.suffix* noundef %2) #2 comdat align 2 { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca i64, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %8 = load %struct.suffix*, %struct.suffix** %5, align 8 - %9 = load %struct.suffix*, %struct.suffix** %4, align 8 - %10 = ptrtoint %struct.suffix* %8 to i64 - %11 = ptrtoint %struct.suffix* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 12 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load %struct.suffix*, %struct.suffix** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds %struct.suffix, %struct.suffix* %17, i64 %19 - %21 = bitcast %struct.suffix* %20 to i8* - %22 = load %struct.suffix*, %struct.suffix** %4, align 8 - %23 = bitcast %struct.suffix* %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 12, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %21, i8* align 4 %23, i64 %25, i1 false) - br label %34 - -26: ; preds = %3 - %27 = load i64, i64* %7, align 8 - %28 = icmp eq i64 %27, 1 - br i1 %28, label %29, label %33 - -29: ; preds = %26 - %30 = load %struct.suffix*, %struct.suffix** %6, align 8 - %31 = getelementptr inbounds %struct.suffix, %struct.suffix* %30, i64 -1 - %32 = load %struct.suffix*, %struct.suffix** %4, align 8 - call void @_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneI6suffixS3_EEvPT_PT0_(%struct.suffix* noundef %31, %struct.suffix* noundef %32) - br label %33 - -33: ; preds = %29, %26 - br label %34 - -34: ; preds = %33, %16 - %35 = load %struct.suffix*, %struct.suffix** %6, align 8 - %36 = load i64, i64* %7, align 8 - %37 = sub i64 0, %36 - %38 = getelementptr inbounds %struct.suffix, %struct.suffix* %35, i64 %37 - ret %struct.suffix* %38 -} - -; Function Attrs: argmemonly nofree nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneI6suffixS3_EEvPT_PT0_(%struct.suffix* noundef %0, %struct.suffix* noundef %1) #0 comdat align 2 { - %3 = alloca %struct.suffix*, align 8 - %4 = alloca %struct.suffix*, align 8 - store %struct.suffix* %0, %struct.suffix** %3, align 8 - store %struct.suffix* %1, %struct.suffix** %4, align 8 - %5 = load %struct.suffix*, %struct.suffix** %4, align 8 - %6 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %5) #15 - %7 = load %struct.suffix*, %struct.suffix** %3, align 8 - %8 = bitcast %struct.suffix* %7 to i8* - %9 = bitcast %struct.suffix* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %8, i8* align 4 %9, i64 12, i1 false) - ret void -} - -; 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) #2 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix, align 4 - %8 = alloca %struct.suffix, align 4 - %9 = alloca { i64, i32 }, align 4 - %10 = alloca { i64, i32 }, align 4 - store %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %11 = load %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %4, align 8 - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %11, i32 0, i32 0 - %13 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %12, align 8 - %14 = load %struct.suffix*, %struct.suffix** %5, align 8 - %15 = bitcast %struct.suffix* %7 to i8* - %16 = bitcast %struct.suffix* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.suffix*, %struct.suffix** %6, align 8 - %18 = bitcast %struct.suffix* %8 to i8* - %19 = bitcast %struct.suffix* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %19, i64 12, i1 false) - %20 = bitcast { i64, i32 }* %9 to i8* - %21 = bitcast %struct.suffix* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 0 - %23 = load i64, i64* %22, align 4 - %24 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - %26 = bitcast { i64, i32 }* %10 to i8* - %27 = bitcast %struct.suffix* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %26, i8* align 4 %27, i64 12, i1 false) - %28 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 0 - %29 = load i64, i64* %28, align 4 - %30 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 1 - %31 = load i32, i32* %30, align 4 - %32 = call 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"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %1) unnamed_addr #5 comdat align 2 { - %3 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, align 8 - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %3, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %5 = load %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %3, align 8 - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %5, i32 0, i32 0 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %9 = call 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) #15 - %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"* noundef nonnull align 8 dereferenceable(8) %0, i32 (i64, i32, i64, i32)* noundef %1) unnamed_addr #5 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 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) #15 - %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: 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) #0 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %3 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %5 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %11 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %10 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %11, i32 0, i32 2 - %13 = load i32*, i32** %12, align 8 - %14 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %15 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %14 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %15, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = ptrtoint i32* %13 to i64 - %19 = ptrtoint i32* %17 to i64 - %20 = sub i64 %18, %19 - %21 = sdiv exact i64 %20, 4 - invoke void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* 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"* noundef nonnull align 8 dereferenceable(24) %23) #15 - ret void - -24: ; preds = %1 - %25 = landingpad { i8*, i32 } - catch i8* null - %26 = extractvalue { i8*, i32 } %25, 0 - store i8* %26, i8** %3, align 8 - %27 = extractvalue { i8*, i32 } %25, 1 - store i32 %27, i32* %4, align 4 - %28 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %28) #15 - br label %29 - -29: ; preds = %24 - %30 = load i8*, i8** %3, align 8 - call void @__clang_call_terminate(i8* %30) #16 - unreachable -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #10 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #15 - call void @_ZSt9terminatev() #16 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZSt8_DestroyIPiEvT_S1_(i32* noundef %0, i32* noundef %1) #2 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* noundef %5, i32* noundef %6) - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(i32* noundef %0, i32* noundef %1) #0 comdat align 2 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - ret void -} - -; Function Attrs: 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) #2 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - %7 = alloca %"struct.std::_Vector_base"*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i64, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %7, align 8 - store i32* %1, i32** %8, align 8 - store i64 %2, i64* %9, align 8 - %10 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %7, align 8 - %11 = load i32*, i32** %8, align 8 - %12 = icmp ne i32* %11, null - br i1 %12, label %13, label %22 - -13: ; preds = %3 - %14 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %10, i32 0, i32 0 - %15 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %14 to %"class.std::allocator"* - %16 = load i32*, i32** %8, align 8 - %17 = load i64, i64* %9, align 8 - store %"class.std::allocator"* %15, %"class.std::allocator"** %4, align 8 - store i32* %16, i32** %5, align 8 - store i64 %17, i64* %6, align 8 - %18 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %19 = bitcast %"class.std::allocator"* %18 to %"class.std::__new_allocator"* - %20 = load i32*, i32** %5, align 8 - %21 = load i64, i64* %6, align 8 - call void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %19, i32* noundef %20, i64 noundef %21) - br label %22 - -22: ; preds = %13, %3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = 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 - %4 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %3, align 8 - %5 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %4 to %"class.std::allocator"* - store %"class.std::allocator"* %5, %"class.std::allocator"** %2, align 8 - %6 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %7 = bitcast %"class.std::allocator"* %6 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #15 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #0 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* noundef %9) #17 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #11 - -; 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) #2 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"class.std::allocator"*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32*, align 8 - %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %11 = alloca %"class.std::vector"*, align 8 - %12 = alloca i32*, align 8 - %13 = alloca i64, align 8 - %14 = alloca i32*, align 8 - %15 = alloca i32*, align 8 - %16 = alloca i64, align 8 - %17 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %18 = alloca i32*, align 8 - %19 = alloca i32*, align 8 - %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %10, i32 0, i32 0 - store i32* %1, i32** %20, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %11, align 8 - store i32* %2, i32** %12, align 8 - %21 = load %"class.std::vector"*, %"class.std::vector"** %11, align 8 - %22 = call noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %21, i64 noundef 1, i8* noundef getelementptr inbounds ([26 x i8], [26 x i8]* @.str.4, i64 0, i64 0)) - store i64 %22, i64* %13, align 8 - %23 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %24 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %23, i32 0, i32 0 - %25 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %24 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %25, i32 0, i32 0 - %27 = load i32*, i32** %26, align 8 - store i32* %27, i32** %14, align 8 - %28 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %29 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %28, i32 0, i32 0 - %30 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %29 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %31 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %30, i32 0, i32 1 - %32 = load i32*, i32** %31, align 8 - store i32* %32, i32** %15, align 8 - %33 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %21) #15 - %34 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %17, i32 0, i32 0 - store i32* %33, i32** %34, align 8 - %35 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %10, %"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %17) #15 - store i64 %35, i64* %16, align 8 - %36 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %37 = load i64, i64* %13, align 8 - %38 = call noundef i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %36, i64 noundef %37) - store i32* %38, i32** %18, align 8 - %39 = load i32*, i32** %18, align 8 - store i32* %39, i32** %19, align 8 - %40 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %41 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %40, i32 0, i32 0 - %42 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %41 to %"class.std::allocator"* - %43 = load i32*, i32** %18, align 8 - %44 = load i64, i64* %16, align 8 - %45 = getelementptr inbounds i32, i32* %43, i64 %44 - %46 = load i32*, i32** %12, align 8 - %47 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %46) #15 - store %"class.std::allocator"* %42, %"class.std::allocator"** %7, align 8 - store i32* %45, i32** %8, align 8 - store i32* %47, i32** %9, align 8 - %48 = load %"class.std::allocator"*, %"class.std::allocator"** %7, align 8 - %49 = bitcast %"class.std::allocator"* %48 to %"class.std::__new_allocator"* - %50 = load i32*, i32** %8, align 8 - %51 = load i32*, i32** %9, align 8 - %52 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %51) #15 - store %"class.std::__new_allocator"* %49, %"class.std::__new_allocator"** %4, align 8 - store i32* %50, i32** %5, align 8 - store i32* %52, i32** %6, align 8 - %53 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %54 = load i32*, i32** %5, align 8 - %55 = bitcast i32* %54 to i8* - %56 = load i32*, i32** %6, align 8 - %57 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %56) #15 - %58 = load i32, i32* %57, align 4 - store i32 %58, i32* %54, align 4 - store i32* null, i32** %19, align 8 - %59 = load i32*, i32** %14, align 8 - %60 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #15 - %61 = load i32*, i32** %60, align 8 - %62 = load i32*, i32** %18, align 8 - %63 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %64 = 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) %63) #15 - %65 = call noundef i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* noundef %59, i32* noundef %61, i32* noundef %62, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %64) #15 - store i32* %65, i32** %19, align 8 - %66 = load i32*, i32** %19, align 8 - %67 = getelementptr inbounds i32, i32* %66, i32 1 - store i32* %67, i32** %19, align 8 - %68 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #15 - %69 = load i32*, i32** %68, align 8 - %70 = load i32*, i32** %15, align 8 - %71 = load i32*, i32** %19, align 8 - %72 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %73 = 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) %72) #15 - %74 = call noundef i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* noundef %69, i32* noundef %70, i32* noundef %71, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %73) #15 - store i32* %74, i32** %19, align 8 - %75 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %76 = load i32*, i32** %14, align 8 - %77 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %78 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %77, i32 0, i32 0 - %79 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %78 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %80 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %79, i32 0, i32 2 - %81 = load i32*, i32** %80, align 8 - %82 = load i32*, i32** %14, align 8 - %83 = ptrtoint i32* %81 to i64 - %84 = ptrtoint i32* %82 to i64 - %85 = sub i64 %83, %84 - %86 = sdiv exact i64 %85, 4 - call void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %75, i32* noundef %76, i64 noundef %86) - %87 = load i32*, i32** %18, align 8 - %88 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %89 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %88, i32 0, i32 0 - %90 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %89 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %91 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %90, i32 0, i32 0 - store i32* %87, i32** %91, align 8 - %92 = load i32*, i32** %19, align 8 - %93 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %94 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %93, i32 0, i32 0 - %95 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %94 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %96 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %95, i32 0, i32 1 - store i32* %92, i32** %96, align 8 - %97 = load i32*, i32** %18, align 8 - %98 = load i64, i64* %13, align 8 - %99 = getelementptr inbounds i32, i32* %97, i64 %98 - %100 = bitcast %"class.std::vector"* %21 to %"struct.std::_Vector_base"* - %101 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %100, i32 0, i32 0 - %102 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %101 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %103 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %102, i32 0, i32 2 - store i32* %99, i32** %103, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 1 - call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef nonnull align 8 dereferenceable(8) %8) #15 - %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: 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) #0 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: 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) #2 comdat align 2 { - %4 = alloca %"class.std::vector"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %9 = load %"class.std::vector"*, %"class.std::vector"** %4, align 8 - %10 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #15 - %11 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #15 - %12 = sub i64 %10, %11 - %13 = load i64, i64* %5, align 8 - %14 = icmp ult i64 %12, %13 - br i1 %14, label %15, label %17 - -15: ; preds = %3 - %16 = load i8*, i8** %6, align 8 - call void @_ZSt20__throw_length_errorPKc(i8* noundef %16) #18 - unreachable - -17: ; preds = %3 - %18 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #15 - %19 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #15 - store i64 %19, i64* %8, align 8 - %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 noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #15 - %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 noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #15 - %29 = icmp ugt i64 %27, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %26, %17 - %31 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #15 - br label %34 - -32: ; preds = %26 - %33 = load i64, i64* %7, align 8 - br label %34 - -34: ; preds = %32, %30 - %35 = phi i64 [ %31, %30 ], [ %33, %32 ] - ret i64 %35 -} - -; Function Attrs: 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) #0 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 noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5) #15 - %7 = load i32*, i32** %6, align 8 - %8 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - %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) #15 - %10 = load i32*, i32** %9, align 8 - %11 = ptrtoint i32* %7 to i64 - %12 = ptrtoint i32* %10 to i64 - %13 = sub i64 %11, %12 - %14 = sdiv exact i64 %13, 4 - ret i64 %14 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef nonnull align 8 dereferenceable(8) %8) #15 - %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: 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) #2 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::_Vector_base"*, align 8 - %6 = alloca i64, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %5, align 8 - store i64 %1, i64* %6, align 8 - %7 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %5, align 8 - %8 = load i64, i64* %6, align 8 - %9 = icmp ne i64 %8, 0 - br i1 %9, label %10, label %18 - -10: ; preds = %2 - %11 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %7, i32 0, i32 0 - %12 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %11 to %"class.std::allocator"* - %13 = load i64, i64* %6, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %3, align 8 - store i64 %13, i64* %4, align 8 - %14 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %15 = bitcast %"class.std::allocator"* %14 to %"class.std::__new_allocator"* - %16 = load i64, i64* %4, align 8 - %17 = call noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %15, i64 noundef %16, i8* noundef null) - br label %19 - -18: ; preds = %2 - br label %19 - -19: ; preds = %18, %10 - %20 = phi i32* [ %17, %10 ], [ null, %18 ] - ret i32* %20 -} - -; 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) #0 comdat align 2 { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca %"struct.std::integral_constant", align 1 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %10 = load i32*, i32** %5, align 8 - %11 = load i32*, i32** %6, align 8 - %12 = load i32*, i32** %7, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %14 = call 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) #15 - ret i32* %14 -} - -; 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) #0 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - ret i32** %4 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #0 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 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) #15 - %6 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5) #15 - ret i64 %6 -} - -; Function Attrs: noreturn -declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #12 - -; 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) #0 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: 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) #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %5, align 8 - store i64 2305843009213693951, i64* %6, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - store %"class.std::allocator"* %8, %"class.std::allocator"** %4, align 8 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %10 = bitcast %"class.std::allocator"* %9 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %10, %"class.std::__new_allocator"** %3, align 8 - %11 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - store %"class.std::__new_allocator"* %11, %"class.std::__new_allocator"** %2, align 8 - %12 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - store i64 2305843009213693951, i64* %7, align 8 - %13 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef nonnull align 8 dereferenceable(8) %7) - to label %14 unwind label %16 - -14: ; preds = %1 - %15 = load i64, i64* %13, align 8 - ret i64 %15 - -16: ; preds = %1 - %17 = landingpad { i8*, i32 } - catch i8* null - %18 = extractvalue { i8*, i32 } %17, 0 - call void @__clang_call_terminate(i8* %18) #16 - unreachable -} - -; 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) #0 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %3 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: 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) #0 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline nounwind uwtable -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 #5 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %3, align 8 - %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32*, i32** %7, align 8 - store i32* %8, i32** %6, align 8 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #2 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 2305843009213693951 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 4611686018427387903 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #18 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 4 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #19 - %21 = bitcast i8* %20 to i32* - ret i32* %21 -} - -; Function Attrs: noreturn -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 noundef nonnull i8* @_Znwm(i64 noundef) #13 - -; 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) #0 comdat align 2 { - %5 = alloca %"struct.std::integral_constant", align 1 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %6, align 8 - store i32* %1, i32** %7, align 8 - store i32* %2, i32** %8, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %9, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = load i32*, i32** %7, align 8 - %12 = load i32*, i32** %8, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %9, align 8 - %14 = call 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) #15 - ret i32* %14 -} - -; 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) #0 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %9) #15 - %11 = load i32*, i32** %6, align 8 - %12 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %11) #15 - %13 = load i32*, i32** %7, align 8 - %14 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %13) #15 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %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) #15 - ret i32* %16 -} - -; 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) #0 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca i64, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = load i32*, i32** %5, align 8 - %12 = ptrtoint i32* %10 to i64 - %13 = ptrtoint i32* %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 4 - store i64 %15, i64* %9, align 8 - %16 = load i64, i64* %9, align 8 - %17 = icmp sgt i64 %16, 0 - br i1 %17, label %18, label %25 - -18: ; preds = %4 - %19 = load i32*, i32** %7, align 8 - %20 = bitcast i32* %19 to i8* - %21 = load i32*, i32** %5, align 8 - %22 = bitcast i32* %21 to i8* - %23 = load i64, i64* %9, align 8 - %24 = mul i64 %23, 4 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %22, i64 %24, i1 false) - br label %25 - -25: ; preds = %18, %4 - %26 = load i32*, i32** %7, align 8 - %27 = load i64, i64* %9, align 8 - %28 = getelementptr inbounds i32, i32* %26, i64 %27 - ret i32* %28 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %0) #0 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 -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 %"class.std::__new_allocator"*, align 8 - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"class.std::allocator"*, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::allocator"*, align 8 - %10 = alloca %"class.std::allocator", align 1 - store i64 %0, i64* %8, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %9, align 8 - %11 = load i64, i64* %8, align 8 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %9, align 8 - store %"class.std::allocator"* %10, %"class.std::allocator"** %5, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %6, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %14 = bitcast %"class.std::allocator"* %13 to %"class.std::__new_allocator"* - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %14, %"class.std::__new_allocator"** %3, align 8 - store %"class.std::__new_allocator"* %16, %"class.std::__new_allocator"** %4, align 8 - %17 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %18 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %10) #15 - %19 = icmp ugt i64 %11, %18 - store %"class.std::allocator"* %10, %"class.std::allocator"** %7, align 8 - %20 = load %"class.std::allocator"*, %"class.std::allocator"** %7, align 8 - %21 = bitcast %"class.std::allocator"* %20 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %21) #15 - br i1 %19, label %22, label %23 - -22: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* noundef getelementptr inbounds ([49 x i8], [49 x i8]* @.str.5, i64 0, i64 0)) #18 - unreachable - -23: ; preds = %2 - %24 = load i64, i64* %8, align 8 - ret i64 %24 -} - -; Function Attrs: noinline uwtable -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 #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"struct.std::_Vector_base"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %4, align 8 - store i64 %1, i64* %5, align 8 - store %"class.std::allocator"* %2, %"class.std::allocator"** %6, align 8 - %9 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %9, i32 0, i32 0 - %11 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %10, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %11) #15 - %12 = load i64, i64* %5, align 8 - 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 - ret void - -14: ; preds = %3 - %15 = landingpad { i8*, i32 } - cleanup - %16 = extractvalue { i8*, i32 } %15, 0 - store i8* %16, i8** %7, align 8 - %17 = extractvalue { i8*, i32 } %15, 1 - store i32 %17, i32* %8, align 4 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %10) #15 - br label %18 - -18: ; preds = %14 - %19 = load i8*, i8** %7, align 8 - %20 = load i32, i32* %8, align 4 - %21 = insertvalue { i8*, i32 } undef, i8* %19, 0 - %22 = insertvalue { i8*, i32 } %21, i32 %20, 1 - resume { i8*, i32 } %22 -} - -; Function Attrs: 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) #2 comdat align 2 { - %4 = alloca %"class.std::vector"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::vector"*, %"class.std::vector"** %4, align 8 - %8 = bitcast %"class.std::vector"* %7 to %"struct.std::_Vector_base"* - %9 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %9 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %10, i32 0, i32 0 - %12 = load i32*, i32** %11, align 8 - %13 = load i64, i64* %5, align 8 - %14 = load i32*, i32** %6, align 8 - %15 = bitcast %"class.std::vector"* %7 to %"struct.std::_Vector_base"* - %16 = call 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) #15 - %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"* - %21 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %20, i32 0, i32 1 - store i32* %17, i32** %21, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_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 #5 comdat align 2 { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::_Vector_base>::_Vector_impl"*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl"* %0, %"struct.std::_Vector_base>::_Vector_impl"** %7, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %8, align 8 - %9 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %7, align 8 - %10 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %9 to %"class.std::allocator"* - %11 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - store %"class.std::allocator"* %10, %"class.std::allocator"** %5, align 8 - store %"class.std::allocator"* %11, %"class.std::allocator"** %6, align 8 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %13 = bitcast %"class.std::allocator"* %12 to %"class.std::__new_allocator"* - %14 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %15 = bitcast %"class.std::allocator"* %14 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %13, %"class.std::__new_allocator"** %3, align 8 - store %"class.std::__new_allocator"* %15, %"class.std::__new_allocator"** %4, align 8 - %16 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %17 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %9 to %"struct.std::_Vector_base>::_Vector_impl_data"* - call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(%"struct.std::_Vector_base>::_Vector_impl_data"* noundef nonnull align 8 dereferenceable(24) %17) #15 - ret void -} - -; 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) #2 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 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 - store i32* %7, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %12 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %11 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %13 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %12, i32 0, i32 0 - %14 = load i32*, i32** %13, align 8 - %15 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %16 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %15 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %16, i32 0, i32 1 - store i32* %14, i32** %17, align 8 - %18 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %19 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %18 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %20 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %19, i32 0, i32 0 - %21 = load i32*, i32** %20, align 8 - %22 = load i64, i64* %4, align 8 - %23 = getelementptr inbounds i32, i32* %21, i64 %22 - %24 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %25 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %24 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %25, i32 0, i32 2 - store i32* %23, i32** %26, align 8 - ret void -} - -; Function Attrs: 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) #2 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %5, align 8 - store i64 %1, i64* %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = load i64, i64* %6, align 8 - %11 = load i32*, i32** %7, align 8 - %12 = call 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: 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) #2 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i8, align 1 - store i32* %0, i32** %4, align 8 - store i64 %1, i64* %5, align 8 - store i32* %2, i32** %6, align 8 - store i8 1, i8* %7, align 1 - %8 = load i32*, i32** %4, align 8 - %9 = load i64, i64* %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call 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: 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) #2 comdat align 2 { - %4 = alloca i32*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i64 %1, i64* %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call 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: 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) #2 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"struct.std::random_access_iterator_tag", align 1 - %9 = alloca %"struct.std::random_access_iterator_tag", align 1 - store i32* %0, i32** %5, align 8 - store i64 %1, i64* %6, align 8 - store i32* %2, i32** %7, align 8 - %10 = load i32*, i32** %5, align 8 - %11 = load i64, i64* %6, align 8 - %12 = call noundef i64 @_ZSt17__size_to_integerm(i64 noundef %11) - %13 = load i32*, i32** %7, align 8 - store i32** %5, i32*** %4, align 8 - %14 = call noundef i32* @_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26random_access_iterator_tag(i32* noundef %10, i64 noundef %12, i32* noundef nonnull align 4 dereferenceable(4) %13) - ret i32* %14 -} - -; 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) #2 comdat { - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32*, align 8 - store i32* %0, i32** %6, align 8 - store i64 %1, i64* %7, align 8 - store i32* %2, i32** %8, align 8 - %9 = load i64, i64* %7, align 8 - %10 = icmp ule i64 %9, 0 - br i1 %10, label %11, label %13 - -11: ; preds = %3 - %12 = load i32*, i32** %6, align 8 - store i32* %12, i32** %4, align 8 - br label %22 - -13: ; preds = %3 - %14 = load i32*, i32** %6, align 8 - %15 = load i32*, i32** %6, align 8 - %16 = load i64, i64* %7, align 8 - %17 = getelementptr inbounds i32, i32* %15, i64 %16 - %18 = load i32*, i32** %8, align 8 - call void @_ZSt8__fill_aIPiiEvT_S1_RKT0_(i32* 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 - store i32* %21, i32** %4, align 8 - br label %22 - -22: ; preds = %13, %11 - %23 = load i32*, i32** %4, align 8 - ret i32* %23 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt17__size_to_integerm(i64 noundef %0) #0 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: 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) #2 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - call void @_ZSt9__fill_a1IPiiEN9__gnu_cxx11__enable_ifIXsr11__is_scalarIT0_EE7__valueEvE6__typeET_S6_RKS3_(i32* noundef %7, i32* noundef %8, i32* noundef nonnull align 4 dereferenceable(4) %9) - ret void -} - -; 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) #0 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %8 = load i32*, i32** %6, align 8 - %9 = load i32, i32* %8, align 4 - store i32 %9, i32* %7, align 4 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32*, i32** %4, align 8 - %12 = load i32*, i32** %5, align 8 - %13 = icmp ne i32* %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32, i32* %7, align 4 - %16 = load i32*, i32** %4, align 8 - store i32 %15, i32* %16, align 4 - br label %17 - -17: ; preds = %14 - %18 = load i32*, i32** %4, align 8 - %19 = getelementptr inbounds i32, i32* %18, i32 1 - store i32* %19, i32** %4, align 8 - br label %10, !llvm.loop !34 - -20: ; preds = %10 - ret void -} - -; 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) #2 comdat { - %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %6 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %10 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %5, i32 0, i32 0 - store i32* %0, i32** %11, align 8 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %6, i32 0, i32 0 - store i32* %1, i32** %12, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %13 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %9 to i8* - %14 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %13, i8* align 8 %14, i64 8, i1 false) - %15 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %10 to i8* - %16 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %15, i8* align 8 %16, i64 8, i1 false) - %17 = load i32*, i32** %7, align 8 - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %9, i32 0, i32 0 - %19 = load i32*, i32** %18, align 8 - %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %10, i32 0, i32 0 - %21 = load i32*, i32** %20, align 8 - %22 = call noundef i32* @_ZSt18uninitialized_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(i32* %19, i32* %21, i32* noundef %17) - ret i32* %22 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.3"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef nonnull align 8 dereferenceable(8) %8) #15 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 1 - call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.3"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef nonnull align 8 dereferenceable(8) %8) #15 - %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: 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) #2 comdat { - %4 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %6 = alloca i32*, align 8 - %7 = alloca i8, align 1 - %8 = alloca i8, align 1 - %9 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %10 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %4, i32 0, i32 0 - store i32* %0, i32** %11, align 8 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %5, i32 0, i32 0 - store i32* %1, i32** %12, align 8 - store i32* %2, i32** %6, align 8 - store i8 1, i8* %7, align 1 - store i8 1, i8* %8, align 1 - %13 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %9 to i8* - %14 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %13, i8* align 8 %14, i64 8, i1 false) - %15 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %10 to i8* - %16 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %15, i8* align 8 %16, i64 8, i1 false) - %17 = load i32*, i32** %6, align 8 - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %9, i32 0, i32 0 - %19 = load i32*, i32** %18, align 8 - %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %10, i32 0, i32 0 - %21 = load i32*, i32** %20, align 8 - %22 = call noundef i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiEET0_T_SC_SB_(i32* %19, i32* %21, i32* noundef %17) - ret i32* %22 -} - -; 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) #2 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %8 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %4, i32 0, i32 0 - store i32* %0, i32** %9, align 8 - %10 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %5, i32 0, i32 0 - store i32* %1, i32** %10, align 8 - store i32* %2, i32** %6, align 8 - %11 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %7 to i8* - %12 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %11, i8* align 8 %12, i64 8, i1 false) - %13 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %8 to i8* - %14 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %13, i8* align 8 %14, i64 8, i1 false) - %15 = load i32*, i32** %6, align 8 - %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %7, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %8, i32 0, i32 0 - %19 = load i32*, i32** %18, align 8 - %20 = call noundef i32* @_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(i32* %17, i32* %19, i32* noundef %15) - ret i32* %20 -} - -; 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) #2 comdat { - %4 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %8 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %9 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %10 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %4, i32 0, i32 0 - store i32* %0, i32** %11, align 8 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %5, i32 0, i32 0 - store i32* %1, i32** %12, align 8 - store i32* %2, i32** %6, align 8 - %13 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %8 to i8* - %14 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %13, i8* align 8 %14, i64 8, i1 false) - %15 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %8, i32 0, i32 0 - %16 = load i32*, i32** %15, align 8 - %17 = call i32* @_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEET_S8_(i32* %16) - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %7, i32 0, i32 0 - store i32* %17, i32** %18, align 8 - %19 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %10 to i8* - %20 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %19, i8* align 8 %20, i64 8, i1 false) - %21 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %10, i32 0, i32 0 - %22 = load i32*, i32** %21, align 8 - %23 = call i32* @_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEET_S8_(i32* %22) - %24 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %9, i32 0, i32 0 - store i32* %23, i32** %24, align 8 - %25 = load i32*, i32** %6, align 8 - %26 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %7, i32 0, i32 0 - %27 = load i32*, i32** %26, align 8 - %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %9, i32 0, i32 0 - %29 = load i32*, i32** %28, align 8 - %30 = call 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: 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) #2 comdat { - %4 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %8 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %4, i32 0, i32 0 - store i32* %0, i32** %9, align 8 - %10 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %5, i32 0, i32 0 - store i32* %1, i32** %10, align 8 - store i32* %2, i32** %6, align 8 - %11 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %7 to i8* - %12 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %11, i8* align 8 %12, i64 8, i1 false) - %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %7, i32 0, i32 0 - %14 = load i32*, i32** %13, align 8 - %15 = call noundef i32* @_ZSt12__niter_baseIPKiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS5_T0_EE(i32* %14) #15 - %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 noundef i32* @_ZSt12__niter_baseIPKiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS5_T0_EE(i32* %19) #15 - %21 = load i32*, i32** %6, align 8 - %22 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %21) #15 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local i32* @_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEET_S8_(i32* %0) #0 comdat { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %3 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %3, i32 0, i32 0 - store i32* %0, i32** %4, align 8 - %5 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %2 to i8* - %6 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %5, i8* align 8 %6, i64 8, i1 false) - %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %2, i32 0, i32 0 - %8 = load i32*, i32** %7, align 8 - ret i32* %8 -} - -; Function Attrs: 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) #0 comdat { - %3 = alloca i32**, align 8 - %4 = alloca i32*, align 8 - store i32** %0, i32*** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: 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) #2 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call noundef i32* @_ZSt14__copy_move_a2ILb0EPKiPiET1_T0_S4_S3_(i32* noundef %7, i32* noundef %8, i32* noundef %9) - ret i32* %10 -} - -; 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) #0 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 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) #15 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; 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) #2 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call noundef i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIKiiEEPT0_PT_S7_S5_(i32* noundef %7, i32* noundef %8, i32* noundef %9) - ret i32* %10 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIKiiEEPT0_PT_S7_S5_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #2 comdat align 2 { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = ptrtoint i32* %8 to i64 - %11 = ptrtoint i32* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 4 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32*, i32** %6, align 8 - %18 = bitcast i32* %17 to i8* - %19 = load i32*, i32** %4, align 8 - %20 = bitcast i32* %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 4, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %20, i64 %22, i1 false) - br label %30 - -23: ; preds = %3 - %24 = load i64, i64* %7, align 8 - %25 = icmp eq i64 %24, 1 - br i1 %25, label %26, label %29 - -26: ; preds = %23 - %27 = load i32*, i32** %6, align 8 - %28 = load i32*, i32** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIiKiEEvPT_PT0_(i32* noundef %27, i32* noundef %28) - br label %29 - -29: ; preds = %26, %23 - br label %30 - -30: ; preds = %29, %16 - %31 = load i32*, i32** %6, align 8 - %32 = load i64, i64* %7, align 8 - %33 = getelementptr inbounds i32, i32* %31, i64 %32 - ret i32* %33 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIiKiEEvPT_PT0_(i32* noundef %0, i32* noundef %1) #0 comdat align 2 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load i32*, i32** %4, align 8 - %6 = load i32, i32* %5, align 4 - %7 = load i32*, i32** %3, align 8 - store i32 %6, i32* %7, align 4 - ret void -} - -; 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) #0 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.3"*, align 8 - store %"class.__gnu_cxx::__normal_iterator.3"* %0, %"class.__gnu_cxx::__normal_iterator.3"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator.3"*, %"class.__gnu_cxx::__normal_iterator.3"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %3, i32 0, i32 0 - ret i32** %4 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.3"* noundef nonnull align 8 dereferenceable(8) %0, i32** noundef nonnull align 8 dereferenceable(8) %1) unnamed_addr #5 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator.3"*, align 8 - %4 = alloca i32**, align 8 - store %"class.__gnu_cxx::__normal_iterator.3"* %0, %"class.__gnu_cxx::__normal_iterator.3"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"class.__gnu_cxx::__normal_iterator.3"*, %"class.__gnu_cxx::__normal_iterator.3"** %3, align 8 - %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32*, i32** %7, align 8 - store i32* %8, i32** %6, align 8 - ret void -} - -; Function Attrs: inaccessiblememonly nofree nosync nounwind willreturn -declare void @llvm.experimental.noalias.scope.decl(metadata) #14 - -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 = { 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 #3 = { nofree nosync 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" } -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 = { 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 = { 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 = { 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 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #10 = { noinline noreturn nounwind } -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 = { inaccessiblememonly nofree nosync nounwind willreturn } -attributes #15 = { nounwind } -attributes #16 = { noreturn nounwind } -attributes #17 = { builtin nounwind } -attributes #18 = { noreturn } -attributes #19 = { builtin allocsize(0) } - -!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"} -!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 = !{!17} -!17 = distinct !{!17, !18, !"_ZN9__gnu_cxx14__alloc_traitsISaIiEiE17_S_select_on_copyERKS1_: argument 0"} -!18 = distinct !{!18, !"_ZN9__gnu_cxx14__alloc_traitsISaIiEiE17_S_select_on_copyERKS1_"} -!19 = !{!20} -!20 = distinct !{!20, !21, !"_ZNSt16allocator_traitsISaIiEE37select_on_container_copy_constructionERKS0_: argument 0"} -!21 = distinct !{!21, !"_ZNSt16allocator_traitsISaIiEE37select_on_container_copy_constructionERKS0_"} -!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} -!29 = distinct !{!29, !7} -!30 = distinct !{!30, !7} -!31 = distinct !{!31, !7} -!32 = distinct !{!32, !7} -!33 = distinct !{!33, !7} -!34 = distinct !{!34, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/count-1s-sorted-binary-array.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/count-1s-sorted-binary-array.ll deleted file mode 100644 index 7dedefa3c..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/count-1s-sorted-binary-array.ll +++ /dev/null @@ -1,161 +0,0 @@ -; ModuleID = 'PE-benchmarks/count-1s-sorted-binary-array.cpp' -source_filename = "PE-benchmarks/count-1s-sorted-binary-array.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@__const.main.arr = private unnamed_addr constant [7 x i8] c"\01\01\01\01\00\00\00", align 1 -@_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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z9countOnesPbii(i8* noundef %0, i32 noundef %1, i32 noundef %2) #0 { - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i8* %0, i8** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - %9 = load i32, i32* %7, align 4 - %10 = load i32, i32* %6, align 4 - %11 = icmp sge i32 %9, %10 - br i1 %11, label %12, label %65 - -12: ; preds = %3 - %13 = load i32, i32* %6, align 4 - %14 = load i32, i32* %7, align 4 - %15 = load i32, i32* %6, align 4 - %16 = sub nsw i32 %14, %15 - %17 = sdiv i32 %16, 2 - %18 = add nsw i32 %13, %17 - store i32 %18, i32* %8, align 4 - %19 = load i32, i32* %8, align 4 - %20 = load i32, i32* %7, align 4 - %21 = icmp eq i32 %19, %20 - br i1 %21, label %32, label %22 - -22: ; preds = %12 - %23 = load i8*, i8** %5, align 8 - %24 = load i32, i32* %8, align 4 - %25 = add nsw i32 %24, 1 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i8, i8* %23, i64 %26 - %28 = load i8, i8* %27, align 1 - %29 = trunc i8 %28 to i1 - %30 = zext i1 %29 to i32 - %31 = icmp eq i32 %30, 0 - br i1 %31, label %32, label %44 - -32: ; preds = %22, %12 - %33 = load i8*, i8** %5, align 8 - %34 = load i32, i32* %8, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i8, i8* %33, i64 %35 - %37 = load i8, i8* %36, align 1 - %38 = trunc i8 %37 to i1 - %39 = zext i1 %38 to i32 - %40 = icmp eq i32 %39, 1 - br i1 %40, label %41, label %44 - -41: ; preds = %32 - %42 = load i32, i32* %8, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %4, align 4 - br label %66 - -44: ; preds = %32, %22 - %45 = load i8*, i8** %5, align 8 - %46 = load i32, i32* %8, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds i8, i8* %45, i64 %47 - %49 = load i8, i8* %48, align 1 - %50 = trunc i8 %49 to i1 - %51 = zext i1 %50 to i32 - %52 = icmp eq i32 %51, 1 - br i1 %52, label %53, label %59 - -53: ; preds = %44 - %54 = load i8*, i8** %5, align 8 - %55 = load i32, i32* %8, align 4 - %56 = add nsw i32 %55, 1 - %57 = load i32, i32* %7, align 4 - %58 = call noundef i32 @_Z9countOnesPbii(i8* noundef %54, i32 noundef %56, i32 noundef %57) - store i32 %58, i32* %4, align 4 - br label %66 - -59: ; preds = %44 - %60 = load i8*, i8** %5, align 8 - %61 = load i32, i32* %6, align 4 - %62 = load i32, i32* %8, align 4 - %63 = sub nsw i32 %62, 1 - %64 = call noundef i32 @_Z9countOnesPbii(i8* noundef %60, i32 noundef %61, i32 noundef %63) - store i32 %64, i32* %4, align 4 - br label %66 - -65: ; preds = %3 - store i32 0, i32* %4, align 4 - br label %66 - -66: ; preds = %65, %59, %53, %41 - %67 = load i32, i32* %4, align 4 - ret i32 %67 -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #1 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i8], align 1 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [7 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %4, i8* align 1 getelementptr inbounds ([7 x i8], [7 x i8]* @__const.main.arr, i32 0, i32 0), i64 7, i1 false) - store i32 7, i32* %3, align 4 - %5 = call noundef 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #2 - -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) #3 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 - -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, !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-llvm14/count-number-binary-strings-without-consecutive-1s.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/count-number-binary-strings-without-consecutive-1s.ll deleted file mode 100644 index 895432459..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/count-number-binary-strings-without-consecutive-1s.ll +++ /dev/null @@ -1,144 +0,0 @@ -; ModuleID = 'PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp' -source_filename = "PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_ZSt4cout = external global %"class.std::basic_ostream", align 8 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z12countStringsi(i32 noundef %0) #0 { - %2 = alloca i32, align 4 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %7 = load i32, i32* %2, align 4 - %8 = zext i32 %7 to i64 - %9 = call i8* @llvm.stacksave() - store i8* %9, i8** %3, align 8 - %10 = alloca i32, i64 %8, align 16 - store i64 %8, i64* %4, align 8 - %11 = load i32, i32* %2, align 4 - %12 = zext i32 %11 to i64 - %13 = alloca i32, i64 %12, align 16 - store i64 %12, i64* %5, align 8 - %14 = getelementptr inbounds i32, i32* %13, i64 0 - store i32 1, i32* %14, align 16 - %15 = getelementptr inbounds i32, i32* %10, i64 0 - store i32 1, i32* %15, align 16 - store i32 1, i32* %6, align 4 - br label %16 - -16: ; preds = %43, %1 - %17 = load i32, i32* %6, align 4 - %18 = load i32, i32* %2, align 4 - %19 = icmp slt i32 %17, %18 - br i1 %19, label %20, label %46 - -20: ; preds = %16 - %21 = load i32, i32* %6, align 4 - %22 = sub nsw i32 %21, 1 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds i32, i32* %10, i64 %23 - %25 = load i32, i32* %24, align 4 - %26 = load i32, i32* %6, align 4 - %27 = sub nsw i32 %26, 1 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i32, i32* %13, i64 %28 - %30 = load i32, i32* %29, align 4 - %31 = add nsw i32 %25, %30 - %32 = load i32, i32* %6, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds i32, i32* %10, i64 %33 - store i32 %31, i32* %34, align 4 - %35 = load i32, i32* %6, align 4 - %36 = sub nsw i32 %35, 1 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i32, i32* %10, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = load i32, i32* %6, align 4 - %41 = sext i32 %40 to i64 - %42 = getelementptr inbounds i32, i32* %13, i64 %41 - store i32 %39, i32* %42, align 4 - br label %43 - -43: ; preds = %20 - %44 = load i32, i32* %6, align 4 - %45 = add nsw i32 %44, 1 - store i32 %45, i32* %6, align 4 - br label %16, !llvm.loop !6 - -46: ; preds = %16 - %47 = load i32, i32* %2, align 4 - %48 = sub nsw i32 %47, 1 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %10, i64 %49 - %51 = load i32, i32* %50, align 4 - %52 = load i32, i32* %2, align 4 - %53 = sub nsw i32 %52, 1 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %13, i64 %54 - %56 = load i32, i32* %55, align 4 - %57 = add nsw i32 %51, %56 - %58 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %58) - ret i32 %57 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #2 { - %1 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 - -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) #3 - -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)) #3 - -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 = { 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, !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-llvm14/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 deleted file mode 100644 index 4ffd6ffbf..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll +++ /dev/null @@ -1,211 +0,0 @@ -; ModuleID = 'PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp' -source_filename = "PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@lookup = dso_local global [101 x [501 x i64]] zeroinitializer, align 16 -@_ZSt4cout = external global %"class.std::basic_ostream", align 8 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i64 @_Z8countRecii(i32 noundef %0, i32 noundef %1) #0 { - %3 = alloca i64, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i64, align 8 - %7 = alloca i32, align 4 - store i32 %0, i32* %4, align 4 - store i32 %1, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp eq i32 %8, 0 - br i1 %9, label %10, label %14 - -10: ; preds = %2 - %11 = load i32, i32* %5, align 4 - %12 = icmp eq i32 %11, 0 - %13 = zext i1 %12 to i64 - store i64 %13, i64* %3, align 8 - br label %61 - -14: ; preds = %2 - %15 = load i32, i32* %4, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds [101 x [501 x i64]], [101 x [501 x i64]]* @lookup, i64 0, i64 %16 - %18 = load i32, i32* %5, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds [501 x i64], [501 x i64]* %17, i64 0, i64 %19 - %21 = load i64, i64* %20, align 8 - %22 = icmp ne i64 %21, -1 - br i1 %22, label %23, label %31 - -23: ; preds = %14 - %24 = load i32, i32* %4, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds [101 x [501 x i64]], [101 x [501 x i64]]* @lookup, i64 0, i64 %25 - %27 = load i32, i32* %5, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds [501 x i64], [501 x i64]* %26, i64 0, i64 %28 - %30 = load i64, i64* %29, align 8 - store i64 %30, i64* %3, align 8 - br label %61 - -31: ; preds = %14 - store i64 0, i64* %6, align 8 - store i32 0, i32* %7, align 4 - br label %32 - -32: ; preds = %50, %31 - %33 = load i32, i32* %7, align 4 - %34 = icmp slt i32 %33, 10 - br i1 %34, label %35, label %53 - -35: ; preds = %32 - %36 = load i32, i32* %5, align 4 - %37 = load i32, i32* %7, align 4 - %38 = sub nsw i32 %36, %37 - %39 = icmp sge i32 %38, 0 - br i1 %39, label %40, label %49 - -40: ; preds = %35 - %41 = load i32, i32* %4, align 4 - %42 = sub nsw i32 %41, 1 - %43 = load i32, i32* %5, align 4 - %44 = load i32, i32* %7, align 4 - %45 = sub nsw i32 %43, %44 - %46 = call 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 - br label %49 - -49: ; preds = %40, %35 - br label %50 - -50: ; preds = %49 - %51 = load i32, i32* %7, align 4 - %52 = add nsw i32 %51, 1 - store i32 %52, i32* %7, align 4 - br label %32, !llvm.loop !6 - -53: ; preds = %32 - %54 = load i64, i64* %6, align 8 - %55 = load i32, i32* %4, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds [101 x [501 x i64]], [101 x [501 x i64]]* @lookup, i64 0, i64 %56 - %58 = load i32, i32* %5, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds [501 x i64], [501 x i64]* %57, i64 0, i64 %59 - store i64 %54, i64* %60, align 8 - store i64 %54, i64* %3, align 8 - br label %61 - -61: ; preds = %53, %23, %10 - %62 = load i64, i64* %3, align 8 - ret i64 %62 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i64 @_Z10finalCountii(i32 noundef %0, i32 noundef %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i64, align 8 - %6 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - call void @llvm.memset.p0i8.i64(i8* align 16 bitcast ([101 x [501 x i64]]* @lookup to i8*), i8 -1, i64 404808, i1 false) - store i64 0, i64* %5, align 8 - store i32 1, i32* %6, align 4 - br label %7 - -7: ; preds = %25, %2 - %8 = load i32, i32* %6, align 4 - %9 = icmp sle i32 %8, 9 - br i1 %9, label %10, label %28 - -10: ; preds = %7 - %11 = load i32, i32* %4, align 4 - %12 = load i32, i32* %6, align 4 - %13 = sub nsw i32 %11, %12 - %14 = icmp sge i32 %13, 0 - br i1 %14, label %15, label %24 - -15: ; preds = %10 - %16 = load i32, i32* %3, align 4 - %17 = sub nsw i32 %16, 1 - %18 = load i32, i32* %4, align 4 - %19 = load i32, i32* %6, align 4 - %20 = sub nsw i32 %18, %19 - %21 = call 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 - br label %24 - -24: ; preds = %15, %10 - br label %25 - -25: ; preds = %24 - %26 = load i32, i32* %6, align 4 - %27 = add nsw i32 %26, 1 - store i32 %27, i32* %6, align 4 - br label %7, !llvm.loop !8 - -28: ; preds = %7 - %29 = load i64, i64* %5, align 8 - ret i64 %29 -} - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #1 - -; 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 - store i32 0, i32* %1, align 4 - store i32 3, i32* %2, align 4 - store i32 5, i32* %3, align 4 - %4 = load i32, i32* %2, align 4 - %5 = load i32, i32* %3, align 4 - %6 = call 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEy(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i64 noundef) #3 - -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 = { argmemonly nofree nounwind willreturn writeonly } -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, !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"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/count-possible-ways-to-construct-buildings.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/count-possible-ways-to-construct-buildings.ll deleted file mode 100644 index 8547c4f57..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/count-possible-ways-to-construct-buildings.ll +++ /dev/null @@ -1,128 +0,0 @@ -; ModuleID = 'PE-benchmarks/count-possible-ways-to-construct-buildings.cpp' -source_filename = "PE-benchmarks/count-possible-ways-to-construct-buildings.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z9countWaysi(i32 noundef %0) #0 { - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - %10 = load i32, i32* %3, align 4 - %11 = icmp eq i32 %10, 1 - br i1 %11, label %12, label %13 - -12: ; preds = %1 - store i32 4, i32* %2, align 4 - br label %35 - -13: ; preds = %1 - store i32 1, i32* %4, align 4 - store i32 1, i32* %5, align 4 - store i32 2, i32* %8, align 4 - br label %14 - -14: ; preds = %25, %13 - %15 = load i32, i32* %8, align 4 - %16 = load i32, i32* %3, align 4 - %17 = icmp sle i32 %15, %16 - br i1 %17, label %18, label %28 - -18: ; preds = %14 - %19 = load i32, i32* %4, align 4 - store i32 %19, i32* %6, align 4 - %20 = load i32, i32* %5, align 4 - store i32 %20, i32* %7, align 4 - %21 = load i32, i32* %6, align 4 - %22 = load i32, i32* %7, align 4 - %23 = add nsw i32 %21, %22 - store i32 %23, i32* %5, align 4 - %24 = load i32, i32* %7, align 4 - store i32 %24, i32* %4, align 4 - br label %25 - -25: ; preds = %18 - %26 = load i32, i32* %8, align 4 - %27 = add nsw i32 %26, 1 - store i32 %27, i32* %8, align 4 - br label %14, !llvm.loop !6 - -28: ; preds = %14 - %29 = load i32, i32* %5, align 4 - %30 = load i32, i32* %4, align 4 - %31 = add nsw i32 %29, %30 - store i32 %31, i32* %9, align 4 - %32 = load i32, i32* %9, align 4 - %33 = load i32, i32* %9, align 4 - %34 = mul nsw i32 %32, %33 - store i32 %34, i32* %2, align 4 - br label %35 - -35: ; preds = %28, %12 - %36 = load i32, i32* %2, align 4 - ret i32 %36 -} - -; Function Attrs: 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 3, i32* %2, align 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 ([19 x i8], [19 x i8]* @.str, i64 0, i64 0)) - %4 = load i32, i32* %2, align 4 - %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 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 noundef 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) #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -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, !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-llvm14/cut-vertices.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/cut-vertices.ll deleted file mode 100644 index 3a2c469a0..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/cut-vertices.ll +++ /dev/null @@ -1,1190 +0,0 @@ -; ModuleID = 'PE-benchmarks/cut-vertices.cpp' -source_filename = "PE-benchmarks/cut-vertices.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_ZZN5Graph6APUtilEiPbPiS1_S1_S0_E4time = internal global i32 0, align 4 -@_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 -@.str.3 = private unnamed_addr constant [38 x i8] c"\0AArticulation points in third graph \0A\00", align 1 - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -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 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #13 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %26) #14 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; 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 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* 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"* noundef nonnull align 8 dereferenceable(24) %17, i32* noundef nonnull align 4 dereferenceable(4) %5) - ret void -} - -; 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"* noundef nonnull align 8 dereferenceable(24) %6) #14 - %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"* 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: 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) #4 align 2 { - %8 = alloca %class.Graph*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i8*, align 8 - %11 = alloca i32*, align 8 - %12 = alloca i32*, align 8 - %13 = alloca i32*, align 8 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - %16 = alloca %"struct.std::_List_iterator", align 8 - %17 = alloca %"struct.std::_List_iterator", align 8 - %18 = alloca %"struct.std::_List_iterator", align 8 - %19 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %8, align 8 - store i32 %1, i32* %9, align 4 - store i8* %2, i8** %10, align 8 - store i32* %3, i32** %11, align 8 - store i32* %4, i32** %12, align 8 - store i32* %5, i32** %13, align 8 - store i8* %6, i8** %14, align 8 - %20 = load %class.Graph*, %class.Graph** %8, align 8 - store i32 0, i32* %15, align 4 - %21 = load i8*, i8** %10, align 8 - %22 = load i32, i32* %9, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds i8, i8* %21, i64 %23 - store i8 1, i8* %24, align 1 - %25 = load i32, i32* @_ZZN5Graph6APUtilEiPbPiS1_S1_S0_E4time, align 4 - %26 = add nsw i32 %25, 1 - store i32 %26, i32* @_ZZN5Graph6APUtilEiPbPiS1_S1_S0_E4time, align 4 - %27 = load i32*, i32** %12, align 8 - %28 = load i32, i32* %9, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i32, i32* %27, i64 %29 - store i32 %26, i32* %30, align 4 - %31 = load i32*, i32** %11, align 8 - %32 = load i32, i32* %9, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds i32, i32* %31, i64 %33 - store i32 %26, i32* %34, align 4 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %16) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %39) #14 - %41 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %17, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %40, %"struct.std::__detail::_List_node_base"** %41, align 8 - %42 = bitcast %"struct.std::_List_iterator"* %16 to i8* - %43 = bitcast %"struct.std::_List_iterator"* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %42, i8* align 8 %43, i64 8, i1 false) - br label %44 - -44: ; preds = %154, %7 - %45 = getelementptr inbounds %class.Graph, %class.Graph* %20, i32 0, i32 1 - %46 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %45, align 8 - %47 = load i32, i32* %9, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %46, i64 %48 - %50 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %49) #14 - %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 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) #14 - br i1 %52, label %53, label %156 - -53: ; preds = %44 - %54 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %16) #14 - %55 = load i32, i32* %54, align 4 - store i32 %55, i32* %19, align 4 - %56 = load i8*, i8** %10, align 8 - %57 = load i32, i32* %19, align 4 - %58 = sext i32 %57 to i64 - %59 = getelementptr inbounds i8, i8* %56, i64 %58 - %60 = load i8, i8* %59, align 1 - %61 = trunc i8 %60 to i1 - br i1 %61, label %129, label %62 - -62: ; preds = %53 - %63 = load i32, i32* %15, align 4 - %64 = add nsw i32 %63, 1 - store i32 %64, i32* %15, align 4 - %65 = load i32, i32* %9, align 4 - %66 = load i32*, i32** %13, align 8 - %67 = load i32, i32* %19, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds i32, i32* %66, i64 %68 - store i32 %65, i32* %69, align 4 - %70 = load i32, i32* %19, align 4 - %71 = load i8*, i8** %10, align 8 - %72 = load i32*, i32** %11, align 8 - %73 = load i32*, i32** %12, align 8 - %74 = load i32*, i32** %13, align 8 - %75 = load i8*, i8** %14, align 8 - call void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* 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 - %79 = getelementptr inbounds i32, i32* %76, i64 %78 - %80 = load i32*, i32** %12, align 8 - %81 = load i32, i32* %19, align 4 - %82 = sext i32 %81 to i64 - %83 = getelementptr inbounds i32, i32* %80, i64 %82 - %84 = call 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 - %88 = sext i32 %87 to i64 - %89 = getelementptr inbounds i32, i32* %86, i64 %88 - store i32 %85, i32* %89, align 4 - %90 = load i32*, i32** %13, align 8 - %91 = load i32, i32* %9, align 4 - %92 = sext i32 %91 to i64 - %93 = getelementptr inbounds i32, i32* %90, i64 %92 - %94 = load i32, i32* %93, align 4 - %95 = icmp eq i32 %94, -1 - br i1 %95, label %96, label %104 - -96: ; preds = %62 - %97 = load i32, i32* %15, align 4 - %98 = icmp sgt i32 %97, 1 - br i1 %98, label %99, label %104 - -99: ; preds = %96 - %100 = load i8*, i8** %14, align 8 - %101 = load i32, i32* %9, align 4 - %102 = sext i32 %101 to i64 - %103 = getelementptr inbounds i8, i8* %100, i64 %102 - store i8 1, i8* %103, align 1 - br label %104 - -104: ; preds = %99, %96, %62 - %105 = load i32*, i32** %13, align 8 - %106 = load i32, i32* %9, align 4 - %107 = sext i32 %106 to i64 - %108 = getelementptr inbounds i32, i32* %105, i64 %107 - %109 = load i32, i32* %108, align 4 - %110 = icmp ne i32 %109, -1 - br i1 %110, label %111, label %128 - -111: ; preds = %104 - %112 = load i32*, i32** %12, align 8 - %113 = load i32, i32* %19, align 4 - %114 = sext i32 %113 to i64 - %115 = getelementptr inbounds i32, i32* %112, i64 %114 - %116 = load i32, i32* %115, align 4 - %117 = load i32*, i32** %11, align 8 - %118 = load i32, i32* %9, align 4 - %119 = sext i32 %118 to i64 - %120 = getelementptr inbounds i32, i32* %117, i64 %119 - %121 = load i32, i32* %120, align 4 - %122 = icmp sge i32 %116, %121 - br i1 %122, label %123, label %128 - -123: ; preds = %111 - %124 = load i8*, i8** %14, align 8 - %125 = load i32, i32* %9, align 4 - %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds i8, i8* %124, i64 %126 - store i8 1, i8* %127, align 1 - br label %128 - -128: ; preds = %123, %111, %104 - br label %153 - -129: ; preds = %53 - %130 = load i32, i32* %19, align 4 - %131 = load i32*, i32** %13, align 8 - %132 = load i32, i32* %9, align 4 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds i32, i32* %131, i64 %133 - %135 = load i32, i32* %134, align 4 - %136 = icmp ne i32 %130, %135 - br i1 %136, label %137, label %152 - -137: ; preds = %129 - %138 = load i32*, i32** %12, align 8 - %139 = load i32, i32* %9, align 4 - %140 = sext i32 %139 to i64 - %141 = getelementptr inbounds i32, i32* %138, i64 %140 - %142 = load i32*, i32** %11, align 8 - %143 = load i32, i32* %19, align 4 - %144 = sext i32 %143 to i64 - %145 = getelementptr inbounds i32, i32* %142, i64 %144 - %146 = call 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 - %150 = sext i32 %149 to i64 - %151 = getelementptr inbounds i32, i32* %148, i64 %150 - store i32 %147, i32* %151, align 4 - br label %152 - -152: ; preds = %137, %129 - br label %153 - -153: ; preds = %152, %128 - br label %154 - -154: ; preds = %153 - %155 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %16) #14 - 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"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #14 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -; 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) #5 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #14 - %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: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %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 noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) - ret i32* %7 -} - -; 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 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph2APEv(%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 i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %2, align 8 - %11 = load %class.Graph*, %class.Graph** %2, align 8 - %12 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %13 = load i32, i32* %12, align 8 - %14 = sext i32 %13 to i64 - %15 = call noalias noundef nonnull i8* @_Znam(i64 noundef %14) #13 - store i8* %15, i8** %3, align 8 - %16 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %17 = load i32, i32* %16, align 8 - %18 = sext i32 %17 to i64 - %19 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %18, i64 4) - %20 = extractvalue { i64, i1 } %19, 1 - %21 = extractvalue { i64, i1 } %19, 0 - %22 = select i1 %20, i64 -1, i64 %21 - %23 = call noalias noundef nonnull i8* @_Znam(i64 noundef %22) #13 - %24 = bitcast i8* %23 to i32* - store i32* %24, i32** %4, align 8 - %25 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %26 = load i32, i32* %25, align 8 - %27 = sext i32 %26 to i64 - %28 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %27, i64 4) - %29 = extractvalue { i64, i1 } %28, 1 - %30 = extractvalue { i64, i1 } %28, 0 - %31 = select i1 %29, i64 -1, i64 %30 - %32 = call noalias noundef nonnull i8* @_Znam(i64 noundef %31) #13 - %33 = bitcast i8* %32 to i32* - store i32* %33, i32** %5, align 8 - %34 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %35 = load i32, i32* %34, align 8 - %36 = sext i32 %35 to i64 - %37 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %36, i64 4) - %38 = extractvalue { i64, i1 } %37, 1 - %39 = extractvalue { i64, i1 } %37, 0 - %40 = select i1 %38, i64 -1, i64 %39 - %41 = call noalias noundef nonnull i8* @_Znam(i64 noundef %40) #13 - %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 noundef nonnull i8* @_Znam(i64 noundef %45) #13 - store i8* %46, i8** %7, align 8 - store i32 0, i32* %8, align 4 - br label %47 - -47: ; preds = %65, %1 - %48 = load i32, i32* %8, align 4 - %49 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %50 = load i32, i32* %49, align 8 - %51 = icmp slt i32 %48, %50 - br i1 %51, label %52, label %68 - -52: ; preds = %47 - %53 = load i32*, i32** %6, align 8 - %54 = load i32, i32* %8, align 4 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i32, i32* %53, i64 %55 - store i32 -1, i32* %56, align 4 - %57 = load i8*, i8** %3, align 8 - %58 = load i32, i32* %8, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds i8, i8* %57, i64 %59 - store i8 0, i8* %60, align 1 - %61 = load i8*, i8** %7, align 8 - %62 = load i32, i32* %8, align 4 - %63 = sext i32 %62 to i64 - %64 = getelementptr inbounds i8, i8* %61, i64 %63 - store i8 0, i8* %64, align 1 - br label %65 - -65: ; preds = %52 - %66 = load i32, i32* %8, align 4 - %67 = add nsw i32 %66, 1 - store i32 %67, i32* %8, align 4 - br label %47, !llvm.loop !8 - -68: ; preds = %47 - store i32 0, i32* %9, align 4 - br label %69 - -69: ; preds = %91, %68 - %70 = load i32, i32* %9, align 4 - %71 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %72 = load i32, i32* %71, align 8 - %73 = icmp slt i32 %70, %72 - br i1 %73, label %74, label %94 - -74: ; preds = %69 - %75 = load i8*, i8** %3, align 8 - %76 = load i32, i32* %9, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds i8, i8* %75, i64 %77 - %79 = load i8, i8* %78, align 1 - %80 = trunc i8 %79 to i1 - %81 = zext i1 %80 to i32 - %82 = icmp eq i32 %81, 0 - br i1 %82, label %83, label %90 - -83: ; preds = %74 - %84 = load i32, i32* %9, align 4 - %85 = load i8*, i8** %3, align 8 - %86 = load i32*, i32** %4, align 8 - %87 = load i32*, i32** %5, align 8 - %88 = load i32*, i32** %6, align 8 - %89 = load i8*, i8** %7, align 8 - call void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* 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 - br label %91 - -91: ; preds = %90 - %92 = load i32, i32* %9, align 4 - %93 = add nsw i32 %92, 1 - store i32 %93, i32* %9, align 4 - br label %69, !llvm.loop !9 - -94: ; preds = %69 - store i32 0, i32* %10, align 4 - br label %95 - -95: ; preds = %114, %94 - %96 = load i32, i32* %10, align 4 - %97 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %98 = load i32, i32* %97, align 8 - %99 = icmp slt i32 %96, %98 - br i1 %99, label %100, label %117 - -100: ; preds = %95 - %101 = load i8*, i8** %7, align 8 - %102 = load i32, i32* %10, align 4 - %103 = sext i32 %102 to i64 - %104 = getelementptr inbounds i8, i8* %101, i64 %103 - %105 = load i8, i8* %104, align 1 - %106 = trunc i8 %105 to i1 - %107 = zext i1 %106 to i32 - %108 = icmp eq i32 %107, 1 - br i1 %108, label %109, label %113 - -109: ; preds = %100 - %110 = load i32, i32* %10, align 4 - %111 = call 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 - br label %114 - -114: ; preds = %113 - %115 = load i32, i32* %10, align 4 - %116 = add nsw i32 %115, 1 - store i32 %116, i32* %10, align 4 - br label %95, !llvm.loop !10 - -117: ; preds = %95 - ret void -} - -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) #7 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #7 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #8 { - %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 noundef 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #14 - ret void -} - -; 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) #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"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: 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 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #14 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %16 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %18 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17) - store %"struct.std::_List_node"* %18, %"struct.std::_List_node"** %11, align 8 - %19 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %20 = 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) %19) #14 - store %"class.std::allocator"* %20, %"class.std::allocator"** %12, align 8 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %21, %"struct.std::_List_node"* noundef %22) #14 - %23 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %25 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %24) - to label %26 unwind label %42 - -26: ; preds = %2 - %27 = load i32*, i32** %10, align 8 - %28 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %27) #14 - store %"class.std::allocator"* %23, %"class.std::allocator"** %6, align 8 - store i32* %25, i32** %7, align 8 - store i32* %28, i32** %8, align 8 - %29 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %30 = bitcast %"class.std::allocator"* %29 to %"class.std::__new_allocator"* - %31 = load i32*, i32** %7, align 8 - %32 = load i32*, i32** %8, align 8 - %33 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %32) #14 - store %"class.std::__new_allocator"* %30, %"class.std::__new_allocator"** %3, align 8 - store i32* %31, i32** %4, align 8 - store i32* %33, i32** %5, align 8 - %34 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %35 = load i32*, i32** %4, align 8 - %36 = bitcast i32* %35 to i8* - %37 = load i32*, i32** %5, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %37) #14 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %35, align 4 - %40 = 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) %13, i8* null) #14 - %41 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #14 - ret %"struct.std::_List_node"* %41 - -42: ; preds = %2 - %43 = landingpad { i8*, i32 } - cleanup - %44 = extractvalue { i8*, i32 } %43, 0 - store i8* %44, i8** %14, align 8 - %45 = extractvalue { i8*, i32 } %43, 1 - store i32 %45, i32* %15, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #14 - br label %46 - -46: ; preds = %42 - %47 = load i8*, i8** %14, align 8 - %48 = load i32, i32* %15, align 4 - %49 = insertvalue { i8*, i32 } undef, i8* %47, 0 - %50 = insertvalue { i8*, i32 } %49, i32 %48, 1 - resume { i8*, i32 } %50 -} - -; 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) #5 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare 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) #9 - -; 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) #5 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; 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) #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 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* 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 #3 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #14 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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) #5 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #14 - ret i32* %5 -} - -declare i32 @__gxx_personality_v0(...) - -; 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) #5 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #15 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #16 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #13 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -declare void @_ZSt28__throw_bad_array_new_lengthv() #10 - -; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #10 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; 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) #5 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: 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) #5 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #14 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #14 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #17 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #12 - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -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 = { nofree nosync nounwind readnone speculatable willreturn } -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 = { 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 #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 = { argmemonly nofree nounwind willreturn } -attributes #7 = { "frame-pointer"="all" "no-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 = { 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 = { 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 #11 = { noinline noreturn nounwind } -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 = { builtin allocsize(0) } -attributes #14 = { nounwind } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { builtin nounwind } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/detect-cycle-in-a-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/detect-cycle-in-a-graph.ll deleted file mode 100644 index dbe899890..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/detect-cycle-in-a-graph.ll +++ /dev/null @@ -1,976 +0,0 @@ -; ModuleID = 'PE-benchmarks/detect-cycle-in-a-graph.cpp' -source_filename = "PE-benchmarks/detect-cycle-in-a-graph.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_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 - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -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 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #13 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %26) #14 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; 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 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef nonnull align 4 dereferenceable(4) %6) - ret void -} - -; 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"* noundef nonnull align 8 dereferenceable(24) %6) #14 - %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"* 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: 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) #4 align 2 { - %5 = alloca i1, align 1 - %6 = alloca %class.Graph*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i8*, align 8 - %9 = alloca i8*, align 8 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - %12 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %6, align 8 - store i32 %1, i32* %7, align 4 - store i8* %2, i8** %8, align 8 - store i8* %3, i8** %9, align 8 - %13 = load %class.Graph*, %class.Graph** %6, align 8 - %14 = load i8*, i8** %8, align 8 - %15 = load i32, i32* %7, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds i8, i8* %14, i64 %16 - %18 = load i8, i8* %17, align 1 - %19 = trunc i8 %18 to i1 - %20 = zext i1 %19 to i32 - %21 = icmp eq i32 %20, 0 - br i1 %21, label %22, label %78 - -22: ; preds = %4 - %23 = load i8*, i8** %8, align 8 - %24 = load i32, i32* %7, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i8, i8* %23, i64 %25 - store i8 1, i8* %26, align 1 - %27 = load i8*, i8** %9, align 8 - %28 = load i32, i32* %7, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i8, i8* %27, i64 %29 - store i8 1, i8* %30, align 1 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %35) #14 - %37 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %11, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %36, %"struct.std::__detail::_List_node_base"** %37, align 8 - %38 = bitcast %"struct.std::_List_iterator"* %10 to i8* - %39 = bitcast %"struct.std::_List_iterator"* %11 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %38, i8* align 8 %39, i64 8, i1 false) - br label %40 - -40: ; preds = %75, %22 - %41 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %42 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %41, align 8 - %43 = load i32, i32* %7, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %42, i64 %44 - %46 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %45) #14 - %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 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) #14 - br i1 %48, label %49, label %77 - -49: ; preds = %40 - %50 = load i8*, i8** %8, align 8 - %51 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #14 - %52 = load i32, i32* %51, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds i8, i8* %50, i64 %53 - %55 = load i8, i8* %54, align 1 - %56 = trunc i8 %55 to i1 - br i1 %56, label %64, label %57 - -57: ; preds = %49 - %58 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #14 - %59 = load i32, i32* %58, align 4 - %60 = load i8*, i8** %8, align 8 - %61 = load i8*, i8** %9, align 8 - %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 - store i1 true, i1* %5, align 1 - br label %83 - -64: ; preds = %57, %49 - %65 = load i8*, i8** %9, align 8 - %66 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #14 - %67 = load i32, i32* %66, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds i8, i8* %65, i64 %68 - %70 = load i8, i8* %69, align 1 - %71 = trunc i8 %70 to i1 - br i1 %71, label %72, label %73 - -72: ; preds = %64 - store i1 true, i1* %5, align 1 - br label %83 - -73: ; preds = %64 - br label %74 - -74: ; preds = %73 - br label %75 - -75: ; preds = %74 - %76 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #14 - br label %40, !llvm.loop !6 - -77: ; preds = %40 - br label %78 - -78: ; preds = %77, %4 - %79 = load i8*, i8** %9, align 8 - %80 = load i32, i32* %7, align 4 - %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds i8, i8* %79, i64 %81 - store i8 0, i8* %82, align 1 - store i1 false, i1* %5, align 1 - br label %83 - -83: ; preds = %78, %72, %63 - %84 = load i1, i1* %5, align 1 - ret i1 %84 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #14 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -; 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) #5 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #14 - %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: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %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 noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) - ret i32* %7 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_ZN5Graph8isCyclicEv(%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 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %8 = load %class.Graph*, %class.Graph** %3, align 8 - %9 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %10 = load i32, i32* %9, align 8 - %11 = sext i32 %10 to i64 - %12 = call noalias noundef nonnull i8* @_Znam(i64 noundef %11) #13 - 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 noundef nonnull i8* @_Znam(i64 noundef %15) #13 - store i8* %16, i8** %5, align 8 - store i32 0, i32* %6, align 4 - br label %17 - -17: ; preds = %31, %1 - %18 = load i32, i32* %6, align 4 - %19 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %20 = load i32, i32* %19, align 8 - %21 = icmp slt i32 %18, %20 - br i1 %21, label %22, label %34 - -22: ; preds = %17 - %23 = load i8*, i8** %4, align 8 - %24 = load i32, i32* %6, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i8, i8* %23, i64 %25 - store i8 0, i8* %26, align 1 - %27 = load i8*, i8** %5, align 8 - %28 = load i32, i32* %6, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i8, i8* %27, i64 %29 - store i8 0, i8* %30, align 1 - br label %31 - -31: ; preds = %22 - %32 = load i32, i32* %6, align 4 - %33 = add nsw i32 %32, 1 - store i32 %33, i32* %6, align 4 - br label %17, !llvm.loop !8 - -34: ; preds = %17 - store i32 0, i32* %7, align 4 - br label %35 - -35: ; preds = %47, %34 - %36 = load i32, i32* %7, align 4 - %37 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %38 = load i32, i32* %37, align 8 - %39 = icmp slt i32 %36, %38 - br i1 %39, label %40, label %50 - -40: ; preds = %35 - %41 = load i32, i32* %7, align 4 - %42 = load i8*, i8** %4, align 8 - %43 = load i8*, i8** %5, align 8 - %44 = call 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 - store i1 true, i1* %2, align 1 - br label %51 - -46: ; preds = %40 - br label %47 - -47: ; preds = %46 - %48 = load i32, i32* %7, align 4 - %49 = add nsw i32 %48, 1 - store i32 %49, i32* %7, align 4 - br label %35, !llvm.loop !9 - -50: ; preds = %35 - store i1 false, i1* %2, align 1 - br label %51 - -51: ; preds = %50, %45 - %52 = load i1, i1* %2, align 1 - ret i1 %52 -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - 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 noundef 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 noundef 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 noundef 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) #8 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #14 - ret void -} - -; 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) #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"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: 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 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #14 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %16 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %18 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17) - store %"struct.std::_List_node"* %18, %"struct.std::_List_node"** %11, align 8 - %19 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %20 = 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) %19) #14 - store %"class.std::allocator"* %20, %"class.std::allocator"** %12, align 8 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %21, %"struct.std::_List_node"* noundef %22) #14 - %23 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %25 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %24) - to label %26 unwind label %42 - -26: ; preds = %2 - %27 = load i32*, i32** %10, align 8 - %28 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %27) #14 - store %"class.std::allocator"* %23, %"class.std::allocator"** %6, align 8 - store i32* %25, i32** %7, align 8 - store i32* %28, i32** %8, align 8 - %29 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %30 = bitcast %"class.std::allocator"* %29 to %"class.std::__new_allocator"* - %31 = load i32*, i32** %7, align 8 - %32 = load i32*, i32** %8, align 8 - %33 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %32) #14 - store %"class.std::__new_allocator"* %30, %"class.std::__new_allocator"** %3, align 8 - store i32* %31, i32** %4, align 8 - store i32* %33, i32** %5, align 8 - %34 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %35 = load i32*, i32** %4, align 8 - %36 = bitcast i32* %35 to i8* - %37 = load i32*, i32** %5, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %37) #14 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %35, align 4 - %40 = 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) %13, i8* null) #14 - %41 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #14 - ret %"struct.std::_List_node"* %41 - -42: ; preds = %2 - %43 = landingpad { i8*, i32 } - cleanup - %44 = extractvalue { i8*, i32 } %43, 0 - store i8* %44, i8** %14, align 8 - %45 = extractvalue { i8*, i32 } %43, 1 - store i32 %45, i32* %15, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #14 - br label %46 - -46: ; preds = %42 - %47 = load i8*, i8** %14, align 8 - %48 = load i32, i32* %15, align 4 - %49 = insertvalue { i8*, i32 } undef, i8* %47, 0 - %50 = insertvalue { i8*, i32 } %49, i32 %48, 1 - resume { i8*, i32 } %50 -} - -; 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) #5 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare 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) #9 - -; 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) #5 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; 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) #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 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* 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 #3 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #14 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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) #5 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #14 - ret i32* %5 -} - -declare i32 @__gxx_personality_v0(...) - -; 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) #5 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #15 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #16 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #13 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -declare void @_ZSt28__throw_bad_array_new_lengthv() #10 - -; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #10 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; 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) #5 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: 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) #5 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #14 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #14 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #17 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #12 - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -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 = { nofree nosync nounwind readnone speculatable willreturn } -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 = { 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 #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 = { argmemonly nofree 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 = { "frame-pointer"="all" "no-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 "frame-pointer"="all" "no-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 = { 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 #11 = { noinline noreturn nounwind } -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 = { builtin allocsize(0) } -attributes #14 = { nounwind } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { builtin nounwind } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/detect-cycle-undirected-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/detect-cycle-undirected-graph.ll deleted file mode 100644 index ce6a10758..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/detect-cycle-undirected-graph.ll +++ /dev/null @@ -1,975 +0,0 @@ -; ModuleID = 'PE-benchmarks/detect-cycle-undirected-graph.cpp' -source_filename = "PE-benchmarks/detect-cycle-undirected-graph.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_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 - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -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 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #13 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %26) #14 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; 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 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* 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"* noundef nonnull align 8 dereferenceable(24) %17, i32* noundef nonnull align 4 dereferenceable(4) %5) - ret void -} - -; 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"* noundef nonnull align 8 dereferenceable(24) %6) #14 - %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"* 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: 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) #4 align 2 { - %5 = alloca i1, align 1 - %6 = alloca %class.Graph*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - %12 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %6, align 8 - store i32 %1, i32* %7, align 4 - store i8* %2, i8** %8, align 8 - store i32 %3, i32* %9, align 4 - %13 = load %class.Graph*, %class.Graph** %6, align 8 - %14 = load i8*, i8** %8, align 8 - %15 = load i32, i32* %7, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds i8, i8* %14, i64 %16 - store i8 1, i8* %17, align 1 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %22) #14 - %24 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %11, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %23, %"struct.std::__detail::_List_node_base"** %24, align 8 - %25 = bitcast %"struct.std::_List_iterator"* %10 to i8* - %26 = bitcast %"struct.std::_List_iterator"* %11 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %25, i8* align 8 %26, i64 8, i1 false) - br label %27 - -27: ; preds = %60, %4 - %28 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %29 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %28, align 8 - %30 = load i32, i32* %7, align 4 - %31 = sext i32 %30 to i64 - %32 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %29, i64 %31 - %33 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %32) #14 - %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 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) #14 - br i1 %35, label %36, label %62 - -36: ; preds = %27 - %37 = load i8*, i8** %8, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #14 - %39 = load i32, i32* %38, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i8, i8* %37, i64 %40 - %42 = load i8, i8* %41, align 1 - %43 = trunc i8 %42 to i1 - br i1 %43, label %52, label %44 - -44: ; preds = %36 - %45 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #14 - %46 = load i32, i32* %45, align 4 - %47 = load i8*, i8** %8, align 8 - %48 = load i32, i32* %7, align 4 - %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 - store i1 true, i1* %5, align 1 - br label %63 - -51: ; preds = %44 - br label %59 - -52: ; preds = %36 - %53 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #14 - %54 = load i32, i32* %53, align 4 - %55 = load i32, i32* %9, align 4 - %56 = icmp ne i32 %54, %55 - br i1 %56, label %57, label %58 - -57: ; preds = %52 - store i1 true, i1* %5, align 1 - br label %63 - -58: ; preds = %52 - br label %59 - -59: ; preds = %58, %51 - br label %60 - -60: ; preds = %59 - %61 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #14 - br label %27, !llvm.loop !6 - -62: ; preds = %27 - store i1 false, i1* %5, align 1 - br label %63 - -63: ; preds = %62, %57, %50 - %64 = load i1, i1* %5, align 1 - ret i1 %64 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #14 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -; 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) #5 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #14 - %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: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %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 noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) - ret i32* %7 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_ZN5Graph8isCyclicEv(%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 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %7 = load %class.Graph*, %class.Graph** %3, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 0 - %9 = load i32, i32* %8, align 8 - %10 = sext i32 %9 to i64 - %11 = call noalias noundef nonnull i8* @_Znam(i64 noundef %10) #13 - store i8* %11, i8** %4, align 8 - store i32 0, i32* %5, align 4 - br label %12 - -12: ; preds = %22, %1 - %13 = load i32, i32* %5, align 4 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 0 - %15 = load i32, i32* %14, align 8 - %16 = icmp slt i32 %13, %15 - br i1 %16, label %17, label %25 - -17: ; preds = %12 - %18 = load i8*, i8** %4, align 8 - %19 = load i32, i32* %5, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds i8, i8* %18, i64 %20 - store i8 0, i8* %21, align 1 - br label %22 - -22: ; preds = %17 - %23 = load i32, i32* %5, align 4 - %24 = add nsw i32 %23, 1 - store i32 %24, i32* %5, align 4 - br label %12, !llvm.loop !8 - -25: ; preds = %12 - store i32 0, i32* %6, align 4 - br label %26 - -26: ; preds = %45, %25 - %27 = load i32, i32* %6, align 4 - %28 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 0 - %29 = load i32, i32* %28, align 8 - %30 = icmp slt i32 %27, %29 - br i1 %30, label %31, label %48 - -31: ; preds = %26 - %32 = load i8*, i8** %4, align 8 - %33 = load i32, i32* %6, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds i8, i8* %32, i64 %34 - %36 = load i8, i8* %35, align 1 - %37 = trunc i8 %36 to i1 - br i1 %37, label %44, label %38 - -38: ; preds = %31 - %39 = load i32, i32* %6, align 4 - %40 = load i8*, i8** %4, align 8 - %41 = call 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 - store i1 true, i1* %2, align 1 - br label %49 - -43: ; preds = %38 - br label %44 - -44: ; preds = %43, %31 - br label %45 - -45: ; preds = %44 - %46 = load i32, i32* %6, align 4 - %47 = add nsw i32 %46, 1 - store i32 %47, i32* %6, align 4 - br label %26, !llvm.loop !9 - -48: ; preds = %26 - store i1 false, i1* %2, align 1 - br label %49 - -49: ; preds = %48, %42 - %50 = load i1, i1* %2, align 1 - ret i1 %50 -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { - %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* 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 noundef 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 noundef 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* 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 noundef 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 noundef 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 - %17 = phi %"class.std::basic_ostream"* [ %13, %12 ], [ %15, %14 ] - 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) #8 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #14 - ret void -} - -; 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) #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"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: 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 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #14 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %16 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %18 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17) - store %"struct.std::_List_node"* %18, %"struct.std::_List_node"** %11, align 8 - %19 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %20 = 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) %19) #14 - store %"class.std::allocator"* %20, %"class.std::allocator"** %12, align 8 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %21, %"struct.std::_List_node"* noundef %22) #14 - %23 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %25 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %24) - to label %26 unwind label %42 - -26: ; preds = %2 - %27 = load i32*, i32** %10, align 8 - %28 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %27) #14 - store %"class.std::allocator"* %23, %"class.std::allocator"** %6, align 8 - store i32* %25, i32** %7, align 8 - store i32* %28, i32** %8, align 8 - %29 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %30 = bitcast %"class.std::allocator"* %29 to %"class.std::__new_allocator"* - %31 = load i32*, i32** %7, align 8 - %32 = load i32*, i32** %8, align 8 - %33 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %32) #14 - store %"class.std::__new_allocator"* %30, %"class.std::__new_allocator"** %3, align 8 - store i32* %31, i32** %4, align 8 - store i32* %33, i32** %5, align 8 - %34 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %35 = load i32*, i32** %4, align 8 - %36 = bitcast i32* %35 to i8* - %37 = load i32*, i32** %5, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %37) #14 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %35, align 4 - %40 = 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) %13, i8* null) #14 - %41 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #14 - ret %"struct.std::_List_node"* %41 - -42: ; preds = %2 - %43 = landingpad { i8*, i32 } - cleanup - %44 = extractvalue { i8*, i32 } %43, 0 - store i8* %44, i8** %14, align 8 - %45 = extractvalue { i8*, i32 } %43, 1 - store i32 %45, i32* %15, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #14 - br label %46 - -46: ; preds = %42 - %47 = load i8*, i8** %14, align 8 - %48 = load i32, i32* %15, align 4 - %49 = insertvalue { i8*, i32 } undef, i8* %47, 0 - %50 = insertvalue { i8*, i32 } %49, i32 %48, 1 - resume { i8*, i32 } %50 -} - -; 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) #5 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare 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) #9 - -; 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) #5 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; 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) #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 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* 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 #3 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #14 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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) #5 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #14 - ret i32* %5 -} - -declare i32 @__gxx_personality_v0(...) - -; 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) #5 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #15 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #16 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #13 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -declare void @_ZSt28__throw_bad_array_new_lengthv() #10 - -; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #10 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; 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) #5 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: 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) #5 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #14 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #14 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #17 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #12 - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -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 = { nofree nosync nounwind readnone speculatable willreturn } -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 = { 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 #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 = { argmemonly nofree 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 = { "frame-pointer"="all" "no-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 "frame-pointer"="all" "no-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 = { 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 #11 = { noinline noreturn nounwind } -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 = { builtin allocsize(0) } -attributes #14 = { nounwind } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { builtin nounwind } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/dfs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/dfs.ll deleted file mode 100644 index 6533998bf..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/dfs.ll +++ /dev/null @@ -1,872 +0,0 @@ -; ModuleID = 'PE-benchmarks/dfs.cpp' -source_filename = "PE-benchmarks/dfs.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_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 - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -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 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #13 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %26) #14 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; 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 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef nonnull align 4 dereferenceable(4) %6) - ret void -} - -; 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"* noundef nonnull align 8 dereferenceable(24) %6) #14 - %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"* 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: 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 - %7 = alloca %"struct.std::_List_iterator", align 8 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i8* %2, i8** %6, align 8 - %10 = load %class.Graph*, %class.Graph** %4, align 8 - %11 = load i8*, i8** %6, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i8, i8* %11, i64 %13 - store i8 1, i8* %14, align 1 - %15 = load i32, i32* %5, align 4 - %16 = call 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) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %22) #14 - %24 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %23, %"struct.std::__detail::_List_node_base"** %24, align 8 - %25 = bitcast %"struct.std::_List_iterator"* %7 to i8* - %26 = bitcast %"struct.std::_List_iterator"* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %25, i8* align 8 %26, i64 8, i1 false) - br label %27 - -27: ; preds = %49, %3 - %28 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 1 - %29 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %28, align 8 - %30 = load i32, i32* %5, align 4 - %31 = sext i32 %30 to i64 - %32 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %29, i64 %31 - %33 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %32) #14 - %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 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) #14 - br i1 %35, label %36, label %51 - -36: ; preds = %27 - %37 = load i8*, i8** %6, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #14 - %39 = load i32, i32* %38, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i8, i8* %37, i64 %40 - %42 = load i8, i8* %41, align 1 - %43 = trunc i8 %42 to i1 - br i1 %43, label %48, label %44 - -44: ; preds = %36 - %45 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #14 - %46 = load i32, i32* %45, align 4 - %47 = load i8*, i8** %6, align 8 - 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 noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #14 - br label %27, !llvm.loop !6 - -51: ; preds = %27 - ret void -} - -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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #14 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; 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 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #14 - %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: 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 noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) - ret i32* %7 -} - -; 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 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph3DFSEi(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) #4 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %7 = load %class.Graph*, %class.Graph** %3, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 0 - %9 = load i32, i32* %8, align 8 - %10 = sext i32 %9 to i64 - %11 = call noalias noundef nonnull i8* @_Znam(i64 noundef %10) #13 - store i8* %11, i8** %5, align 8 - store i32 0, i32* %6, align 4 - br label %12 - -12: ; preds = %22, %2 - %13 = load i32, i32* %6, align 4 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 0 - %15 = load i32, i32* %14, align 8 - %16 = icmp slt i32 %13, %15 - br i1 %16, label %17, label %25 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - %19 = load i32, i32* %6, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds i8, i8* %18, i64 %20 - store i8 0, i8* %21, align 1 - br label %22 - -22: ; preds = %17 - %23 = load i32, i32* %6, align 4 - %24 = add nsw i32 %23, 1 - store i32 %24, i32* %6, align 4 - br label %12, !llvm.loop !8 - -25: ; preds = %12 - %26 = load i32, i32* %4, align 4 - %27 = load i8*, i8** %5, align 8 - call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %7, i32 noundef %26, i8* noundef %27) - ret void -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #14 - ret void -} - -; 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 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: 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 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #14 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %16 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %18 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17) - store %"struct.std::_List_node"* %18, %"struct.std::_List_node"** %11, align 8 - %19 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %20 = 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) %19) #14 - store %"class.std::allocator"* %20, %"class.std::allocator"** %12, align 8 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %21, %"struct.std::_List_node"* noundef %22) #14 - %23 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %25 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %24) - to label %26 unwind label %42 - -26: ; preds = %2 - %27 = load i32*, i32** %10, align 8 - %28 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %27) #14 - store %"class.std::allocator"* %23, %"class.std::allocator"** %6, align 8 - store i32* %25, i32** %7, align 8 - store i32* %28, i32** %8, align 8 - %29 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %30 = bitcast %"class.std::allocator"* %29 to %"class.std::__new_allocator"* - %31 = load i32*, i32** %7, align 8 - %32 = load i32*, i32** %8, align 8 - %33 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %32) #14 - store %"class.std::__new_allocator"* %30, %"class.std::__new_allocator"** %3, align 8 - store i32* %31, i32** %4, align 8 - store i32* %33, i32** %5, align 8 - %34 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %35 = load i32*, i32** %4, align 8 - %36 = bitcast i32* %35 to i8* - %37 = load i32*, i32** %5, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %37) #14 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %35, align 4 - %40 = 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) %13, i8* null) #14 - %41 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #14 - ret %"struct.std::_List_node"* %41 - -42: ; preds = %2 - %43 = landingpad { i8*, i32 } - cleanup - %44 = extractvalue { i8*, i32 } %43, 0 - store i8* %44, i8** %14, align 8 - %45 = extractvalue { i8*, i32 } %43, 1 - store i32 %45, i32* %15, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #14 - br label %46 - -46: ; preds = %42 - %47 = load i8*, i8** %14, align 8 - %48 = load i32, i32* %15, align 4 - %49 = insertvalue { i8*, i32 } undef, i8* %47, 0 - %50 = insertvalue { i8*, i32 } %49, i32 %48, 1 - resume { i8*, i32 } %50 -} - -; 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: nounwind -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) #9 - -; 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 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; 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 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* 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 #3 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #14 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #14 - ret i32* %5 -} - -declare i32 @__gxx_personality_v0(...) - -; 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 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #15 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #16 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #13 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -declare void @_ZSt28__throw_bad_array_new_lengthv() #10 - -; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #10 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; 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: 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #14 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #14 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__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.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #17 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #12 - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -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 = { nofree nosync nounwind readnone speculatable willreturn } -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 = { 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 #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 = { "frame-pointer"="all" "no-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 = { 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 = { 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 = { 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 #11 = { noinline noreturn nounwind } -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 = { builtin allocsize(0) } -attributes #14 = { nounwind } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { builtin nounwind } - -!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"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/edit-distance.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/edit-distance.ll deleted file mode 100644 index 4469b41c0..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/edit-distance.ll +++ /dev/null @@ -1,507 +0,0 @@ -; ModuleID = 'PE-benchmarks/edit-distance.cpp' -source_filename = "PE-benchmarks/edit-distance.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -$_ZNSt15__new_allocatorIcED2Ev = comdat any - -@.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 global %"class.std::basic_ostream", align 8 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z3miniii(i32 noundef %0, i32 noundef %1, i32 noundef %2) #0 { - %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 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: 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) #1 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: 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) #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca %"class.std::__cxx11::basic_string", align 8 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - %12 = alloca %"class.std::__cxx11::basic_string", align 8 - %13 = alloca %"class.std::__cxx11::basic_string", align 8 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - %15 = alloca %"class.std::__cxx11::basic_string", align 8 - %16 = alloca %"class.std::__cxx11::basic_string", align 8 - %17 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 %2, i32* %6, align 4 - store i32 %3, i32* %7, align 4 - %18 = load i32, i32* %6, align 4 - %19 = icmp eq i32 %18, 0 - br i1 %19, label %20, label %22 - -20: ; preds = %4 - %21 = load i32, i32* %7, align 4 - store i32 %21, i32* %5, align 4 - br label %112 - -22: ; preds = %4 - %23 = load i32, i32* %7, align 4 - %24 = icmp eq i32 %23, 0 - br i1 %24, label %25, label %27 - -25: ; preds = %22 - %26 = load i32, i32* %6, align 4 - store i32 %26, i32* %5, align 4 - br label %112 - -27: ; preds = %22 - %28 = load i32, i32* %6, align 4 - %29 = sub nsw i32 %28, 1 - %30 = sext i32 %29 to i64 - %31 = call 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 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"* 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 - %43 = load i32, i32* %6, align 4 - %44 = sub nsw i32 %43, 1 - %45 = load i32, i32* %7, align 4 - %46 = sub nsw i32 %45, 1 - %47 = invoke 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"* noundef nonnull align 8 dereferenceable(32) %9) #6 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %8) #6 - br label %112 - -49: ; preds = %41 - %50 = landingpad { i8*, i32 } - cleanup - %51 = extractvalue { i8*, i32 } %50, 0 - store i8* %51, i8** %10, align 8 - %52 = extractvalue { i8*, i32 } %50, 1 - store i32 %52, i32* %11, align 4 - br label %57 - -53: ; preds = %42 - %54 = landingpad { i8*, i32 } - cleanup - %55 = extractvalue { i8*, i32 } %54, 0 - store i8* %55, i8** %10, align 8 - %56 = extractvalue { i8*, i32 } %54, 1 - store i32 %56, i32* %11, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9) #6 - br label %57 - -57: ; preds = %53, %49 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %8) #6 - br label %114 - -58: ; preds = %27 - 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 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"* 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"* 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 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"* 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"* 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 - %74 = load i32, i32* %6, align 4 - %75 = sub nsw i32 %74, 1 - %76 = load i32, i32* %7, align 4 - %77 = sub nsw i32 %76, 1 - %78 = invoke 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 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"* noundef nonnull align 8 dereferenceable(32) %17) #6 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #6 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #6 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #6 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13) #6 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %12) #6 - br label %112 - -83: ; preds = %58 - %84 = landingpad { i8*, i32 } - cleanup - %85 = extractvalue { i8*, i32 } %84, 0 - store i8* %85, i8** %10, align 8 - %86 = extractvalue { i8*, i32 } %84, 1 - store i32 %86, i32* %11, align 4 - br label %111 - -87: ; preds = %64, %59 - %88 = landingpad { i8*, i32 } - cleanup - %89 = extractvalue { i8*, i32 } %88, 0 - store i8* %89, i8** %10, align 8 - %90 = extractvalue { i8*, i32 } %88, 1 - store i32 %90, i32* %11, align 4 - br label %110 - -91: ; preds = %65 - %92 = landingpad { i8*, i32 } - cleanup - %93 = extractvalue { i8*, i32 } %92, 0 - store i8* %93, i8** %10, align 8 - %94 = extractvalue { i8*, i32 } %92, 1 - store i32 %94, i32* %11, align 4 - br label %109 - -95: ; preds = %71, %66 - %96 = landingpad { i8*, i32 } - cleanup - %97 = extractvalue { i8*, i32 } %96, 0 - store i8* %97, i8** %10, align 8 - %98 = extractvalue { i8*, i32 } %96, 1 - store i32 %98, i32* %11, align 4 - br label %108 - -99: ; preds = %72 - %100 = landingpad { i8*, i32 } - cleanup - %101 = extractvalue { i8*, i32 } %100, 0 - store i8* %101, i8** %10, align 8 - %102 = extractvalue { i8*, i32 } %100, 1 - store i32 %102, i32* %11, align 4 - br label %107 - -103: ; preds = %79, %73 - %104 = landingpad { i8*, i32 } - cleanup - %105 = extractvalue { i8*, i32 } %104, 0 - store i8* %105, i8** %10, align 8 - %106 = extractvalue { i8*, i32 } %104, 1 - store i32 %106, i32* %11, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17) #6 - br label %107 - -107: ; preds = %103, %99 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #6 - br label %108 - -108: ; preds = %107, %95 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #6 - br label %109 - -109: ; preds = %108, %91 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #6 - br label %110 - -110: ; preds = %109, %87 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13) #6 - br label %111 - -111: ; preds = %110, %83 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %12) #6 - br label %114 - -112: ; preds = %81, %48, %25, %20 - %113 = load i32, i32* %5, align 4 - ret i32 %113 - -114: ; preds = %111, %57 - %115 = load i8*, i8** %10, align 8 - %116 = load i32, i32* %11, align 4 - %117 = insertvalue { i8*, i32 } undef, i8* %115, 0 - %118 = insertvalue { i8*, i32 } %117, i32 %116, 1 - resume { i8*, i32 } %118 -} - -declare noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 - -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 #2 - -declare i32 @__gxx_personality_v0(...) - -; Function Attrs: nounwind -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #3 - -; Function Attrs: noinline norecurse uwtable -define dso_local noundef i32 @main() #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca %"class.std::__new_allocator"*, align 8 - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"class.std::allocator"*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"class.std::__cxx11::basic_string", align 8 - %11 = alloca %"class.std::allocator", align 1 - %12 = alloca i8*, align 8 - %13 = alloca i32, align 4 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - %15 = alloca %"class.std::allocator", align 1 - %16 = alloca %"class.std::__cxx11::basic_string", align 8 - %17 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %9, align 4 - store %"class.std::allocator"* %11, %"class.std::allocator"** %8, align 8 - %18 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %19 = bitcast %"class.std::allocator"* %18 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %19, %"class.std::__new_allocator"** %1, align 8 - %20 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %1, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10, i8* noundef getelementptr inbounds ([7 x i8], [7 x i8]* @.str, i64 0, i64 0), %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %11) - to label %21 unwind label %41 - -21: ; preds = %0 - store %"class.std::allocator"* %11, %"class.std::allocator"** %6, align 8 - %22 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %23 = bitcast %"class.std::allocator"* %22 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %23) #6 - store %"class.std::allocator"* %15, %"class.std::allocator"** %7, align 8 - %24 = load %"class.std::allocator"*, %"class.std::allocator"** %7, align 8 - %25 = bitcast %"class.std::allocator"* %24 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %25, %"class.std::__new_allocator"** %2, align 8 - %26 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - 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.1, i64 0, i64 0), %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15) - to label %27 unwind label %47 - -27: ; preds = %21 - store %"class.std::allocator"* %15, %"class.std::allocator"** %4, align 8 - %28 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %29 = bitcast %"class.std::allocator"* %28 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %29) #6 - 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) %10) - to label %30 unwind label %53 - -30: ; preds = %27 - 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) %14) - to label %31 unwind label %57 - -31: ; preds = %30 - %32 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #6 - %33 = trunc i64 %32 to i32 - %34 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #6 - %35 = trunc i64 %34 to i32 - %36 = invoke noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(%"class.std::__cxx11::basic_string"* noundef %16, %"class.std::__cxx11::basic_string"* noundef %17, i32 noundef %33, i32 noundef %35) - to label %37 unwind label %61 - -37: ; preds = %31 - %38 = 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 %36) - to label %39 unwind label %61 - -39: ; preds = %37 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17) #6 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #6 - store i32 0, i32* %9, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #6 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #6 - %40 = load i32, i32* %9, align 4 - ret i32 %40 - -41: ; preds = %0 - %42 = landingpad { i8*, i32 } - cleanup - %43 = extractvalue { i8*, i32 } %42, 0 - store i8* %43, i8** %12, align 8 - %44 = extractvalue { i8*, i32 } %42, 1 - store i32 %44, i32* %13, align 4 - store %"class.std::allocator"* %11, %"class.std::allocator"** %5, align 8 - %45 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %46 = bitcast %"class.std::allocator"* %45 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %46) #6 - br label %68 - -47: ; preds = %21 - %48 = landingpad { i8*, i32 } - cleanup - %49 = extractvalue { i8*, i32 } %48, 0 - store i8* %49, i8** %12, align 8 - %50 = extractvalue { i8*, i32 } %48, 1 - store i32 %50, i32* %13, align 4 - store %"class.std::allocator"* %15, %"class.std::allocator"** %3, align 8 - %51 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %52 = bitcast %"class.std::allocator"* %51 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %52) #6 - br label %67 - -53: ; preds = %27 - %54 = landingpad { i8*, i32 } - cleanup - %55 = extractvalue { i8*, i32 } %54, 0 - store i8* %55, i8** %12, align 8 - %56 = extractvalue { i8*, i32 } %54, 1 - store i32 %56, i32* %13, align 4 - br label %66 - -57: ; preds = %30 - %58 = landingpad { i8*, i32 } - cleanup - %59 = extractvalue { i8*, i32 } %58, 0 - store i8* %59, i8** %12, align 8 - %60 = extractvalue { i8*, i32 } %58, 1 - store i32 %60, i32* %13, align 4 - br label %65 - -61: ; preds = %37, %31 - %62 = landingpad { i8*, i32 } - cleanup - %63 = extractvalue { i8*, i32 } %62, 0 - store i8* %63, i8** %12, align 8 - %64 = extractvalue { i8*, i32 } %62, 1 - store i32 %64, i32* %13, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17) #6 - br label %65 - -65: ; preds = %61, %57 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #6 - br label %66 - -66: ; preds = %65, %53 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #6 - br label %67 - -67: ; preds = %66, %47 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #6 - br label %68 - -68: ; preds = %67, %41 - %69 = load i8*, i8** %12, align 8 - %70 = load i32, i32* %13, align 4 - %71 = insertvalue { i8*, i32 } undef, i8* %69, 0 - %72 = insertvalue { i8*, i32 } %71, i32 %70, 1 - resume { i8*, i32 } %72 -} - -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 #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -; Function Attrs: nounwind -declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) #3 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -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 = { 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 = { 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 = { 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 } - -!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-llvm14/efficient-constructtion-of-finite-automata.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/efficient-constructtion-of-finite-automata.ll deleted file mode 100644 index 65375e246..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/efficient-constructtion-of-finite-automata.ll +++ /dev/null @@ -1,306 +0,0 @@ -; ModuleID = 'PE-benchmarks/efficient-constructtion-of-finite-automata.cpp' -source_filename = "PE-benchmarks/efficient-constructtion-of-finite-automata.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z15computeTransFunPciPA256_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 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i32 %1, i32* %5, align 4 - store [256 x i32]* %2, [256 x i32]** %6, align 8 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - br label %10 - -10: ; preds = %19, %3 - %11 = load i32, i32* %9, align 4 - %12 = icmp slt i32 %11, 256 - br i1 %12, label %13, label %22 - -13: ; preds = %10 - %14 = load [256 x i32]*, [256 x i32]** %6, align 8 - %15 = getelementptr inbounds [256 x i32], [256 x i32]* %14, i64 0 - %16 = load i32, i32* %9, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds [256 x i32], [256 x i32]* %15, i64 0, i64 %17 - store i32 0, i32* %18, align 4 - br label %19 - -19: ; preds = %13 - %20 = load i32, i32* %9, align 4 - %21 = add nsw i32 %20, 1 - store i32 %21, i32* %9, align 4 - br label %10, !llvm.loop !6 - -22: ; preds = %10 - %23 = load [256 x i32]*, [256 x i32]** %6, align 8 - %24 = getelementptr inbounds [256 x i32], [256 x i32]* %23, i64 0 - %25 = load i8*, i8** %4, align 8 - %26 = getelementptr inbounds i8, i8* %25, i64 0 - %27 = load i8, i8* %26, align 1 - %28 = sext i8 %27 to i64 - %29 = getelementptr inbounds [256 x i32], [256 x i32]* %24, i64 0, i64 %28 - store i32 1, i32* %29, align 4 - store i32 1, i32* %7, align 4 - br label %30 - -30: ; preds = %88, %22 - %31 = load i32, i32* %7, align 4 - %32 = load i32, i32* %5, align 4 - %33 = icmp sle i32 %31, %32 - br i1 %33, label %34, label %91 - -34: ; preds = %30 - store i32 0, i32* %9, align 4 - br label %35 - -35: ; preds = %54, %34 - %36 = load i32, i32* %9, align 4 - %37 = icmp slt i32 %36, 256 - br i1 %37, label %38, label %57 - -38: ; preds = %35 - %39 = load [256 x i32]*, [256 x i32]** %6, align 8 - %40 = load i32, i32* %8, align 4 - %41 = sext i32 %40 to i64 - %42 = getelementptr inbounds [256 x i32], [256 x i32]* %39, i64 %41 - %43 = load i32, i32* %9, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds [256 x i32], [256 x i32]* %42, i64 0, i64 %44 - %46 = load i32, i32* %45, align 4 - %47 = load [256 x i32]*, [256 x i32]** %6, align 8 - %48 = load i32, i32* %7, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds [256 x i32], [256 x i32]* %47, i64 %49 - %51 = load i32, i32* %9, align 4 - %52 = sext i32 %51 to i64 - %53 = getelementptr inbounds [256 x i32], [256 x i32]* %50, i64 0, i64 %52 - store i32 %46, i32* %53, align 4 - br label %54 - -54: ; preds = %38 - %55 = load i32, i32* %9, align 4 - %56 = add nsw i32 %55, 1 - store i32 %56, i32* %9, align 4 - br label %35, !llvm.loop !8 - -57: ; preds = %35 - %58 = load i32, i32* %7, align 4 - %59 = add nsw i32 %58, 1 - %60 = load [256 x i32]*, [256 x i32]** %6, align 8 - %61 = load i32, i32* %7, align 4 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds [256 x i32], [256 x i32]* %60, i64 %62 - %64 = load i8*, i8** %4, align 8 - %65 = load i32, i32* %7, align 4 - %66 = sext i32 %65 to i64 - %67 = getelementptr inbounds i8, i8* %64, i64 %66 - %68 = load i8, i8* %67, align 1 - %69 = sext i8 %68 to i64 - %70 = getelementptr inbounds [256 x i32], [256 x i32]* %63, i64 0, i64 %69 - store i32 %59, i32* %70, align 4 - %71 = load i32, i32* %7, align 4 - %72 = load i32, i32* %5, align 4 - %73 = icmp slt i32 %71, %72 - br i1 %73, label %74, label %87 - -74: ; preds = %57 - %75 = load [256 x i32]*, [256 x i32]** %6, align 8 - %76 = load i32, i32* %8, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds [256 x i32], [256 x i32]* %75, i64 %77 - %79 = load i8*, i8** %4, align 8 - %80 = load i32, i32* %7, align 4 - %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds i8, i8* %79, i64 %81 - %83 = load i8, i8* %82, align 1 - %84 = sext i8 %83 to i64 - %85 = getelementptr inbounds [256 x i32], [256 x i32]* %78, i64 0, i64 %84 - %86 = load i32, i32* %85, align 4 - store i32 %86, i32* %8, align 4 - br label %87 - -87: ; preds = %74, %57 - br label %88 - -88: ; preds = %87 - %89 = load i32, i32* %7, align 4 - %90 = add nsw i32 %89, 1 - store i32 %90, i32* %7, align 4 - br label %30, !llvm.loop !9 - -91: ; preds = %30 - ret void -} - -; 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 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %11 = load i8*, i8** %3, align 8 - %12 = call i64 @strlen(i8* noundef %11) #7 - %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* noundef %14) #7 - %16 = trunc i64 %15 to i32 - store i32 %16, i32* %6, align 4 - %17 = load i32, i32* %5, align 4 - %18 = add nsw i32 %17, 1 - %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %7, align 8 - %21 = alloca [256 x i32], i64 %19, align 16 - store i64 %19, i64* %8, align 8 - %22 = load i8*, i8** %3, align 8 - %23 = load i32, i32* %5, align 4 - call void @_Z15computeTransFunPciPA256_i(i8* 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 - -24: ; preds = %52, %2 - %25 = load i32, i32* %9, align 4 - %26 = load i32, i32* %6, align 4 - %27 = icmp slt i32 %25, %26 - br i1 %27, label %28, label %55 - -28: ; preds = %24 - %29 = load i32, i32* %10, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds [256 x i32], [256 x i32]* %21, i64 %30 - %32 = load i8*, i8** %4, align 8 - %33 = load i32, i32* %9, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds i8, i8* %32, i64 %34 - %36 = load i8, i8* %35, align 1 - %37 = sext i8 %36 to i64 - %38 = getelementptr inbounds [256 x i32], [256 x i32]* %31, i64 0, i64 %37 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %10, align 4 - %40 = load i32, i32* %10, align 4 - %41 = load i32, i32* %5, align 4 - %42 = icmp eq i32 %40, %41 - br i1 %42, label %43, label %51 - -43: ; preds = %28 - %44 = call noundef 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 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 - br label %52 - -52: ; preds = %51 - %53 = load i32, i32* %9, align 4 - %54 = add nsw i32 %53, 1 - store i32 %54, i32* %9, align 4 - br label %24, !llvm.loop !10 - -55: ; preds = %24 - %56 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %56) - ret void -} - -; Function Attrs: nounwind readonly willreturn -declare i64 @strlen(i8* noundef) #2 - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #3 - -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) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 - -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) #4 - -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)) #4 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #3 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #5 { - %1 = alloca i32, align 4 - %2 = alloca [16 x i8], align 16 - %3 = alloca [6 x i8], align 1 - store i32 0, i32* %1, align 4 - %4 = bitcast [16 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 getelementptr inbounds ([16 x i8], [16 x i8]* @__const.main.txt, i32 0, i32 0), i64 16, i1 false) - %5 = bitcast [6 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %5, i8* align 1 getelementptr inbounds ([6 x i8], [6 x i8]* @__const.main.pat, i32 0, i32 0), i64 6, i1 false) - %6 = getelementptr inbounds [6 x i8], [6 x i8]* %3, i64 0, i64 0 - %7 = getelementptr inbounds [16 x i8], [16 x i8]* %2, i64 0, i64 0 - call void @_Z6searchPcS_(i8* noundef %6, i8* noundef %7) - ret i32 0 -} - -; 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 - -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 = { "frame-pointer"="all" "no-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 = { nounwind readonly willreturn } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/euler-circuit-directed-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/euler-circuit-directed-graph.ll deleted file mode 100644 index e8dbaef7e..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/euler-circuit-directed-graph.ll +++ /dev/null @@ -1,1597 +0,0 @@ -; ModuleID = 'PE-benchmarks/euler-circuit-directed-graph.cpp' -source_filename = "PE-benchmarks/euler-circuit-directed-graph.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"*, i32* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNKSt7__cxx114listIiSaIiEE4sizeEv = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZN5GraphD2Ev = comdat any - -$_ZN5Graph7addEdgeEii = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv = comdat any - -$_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_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 - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -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 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %6 = load %class.Graph*, %class.Graph** %3, align 8 - %7 = load i32, i32* %4, align 4 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %6, i32 0, i32 0 - store i32 %7, i32* %8, align 8 - %9 = load i32, i32* %4, align 4 - %10 = sext i32 %9 to i64 - %11 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %10, i64 24) - %12 = extractvalue { i64, i1 } %11, 1 - %13 = extractvalue { i64, i1 } %11, 0 - %14 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %13, i64 8) - %15 = extractvalue { i64, i1 } %14, 1 - %16 = or i1 %12, %15 - %17 = extractvalue { i64, i1 } %14, 0 - %18 = select i1 %16, i64 -1, i64 %17 - %19 = call noalias noundef nonnull i8* @_Znam(i64 noundef %18) #14 - %20 = bitcast i8* %19 to i64* - store i64 %10, i64* %20, align 16 - %21 = getelementptr inbounds i8, i8* %19, i64 8 - %22 = bitcast i8* %21 to %"class.std::__cxx11::list"* - %23 = icmp eq i64 %10, 0 - br i1 %23, label %30, label %24 - -24: ; preds = %2 - %25 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %22, i64 %10 - br label %26 - -26: ; preds = %26, %24 - %27 = phi %"class.std::__cxx11::list"* [ %22, %24 ], [ %28, %26 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %27) #15 - %28 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %27, i64 1 - %29 = icmp eq %"class.std::__cxx11::list"* %28, %25 - br i1 %29, label %30, label %26 - -30: ; preds = %2, %26 - %31 = getelementptr inbounds %class.Graph, %class.Graph* %6, i32 0, i32 1 - store %"class.std::__cxx11::list"* %22, %"class.std::__cxx11::list"** %31, align 8 - %32 = load i32, i32* %4, align 4 - %33 = sext i32 %32 to i64 - %34 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %33, i64 4) - %35 = extractvalue { i64, i1 } %34, 1 - %36 = extractvalue { i64, i1 } %34, 0 - %37 = select i1 %35, i64 -1, i64 %36 - %38 = call noalias noundef nonnull i8* @_Znam(i64 noundef %37) #14 - %39 = bitcast i8* %38 to i32* - %40 = getelementptr inbounds %class.Graph, %class.Graph* %6, i32 0, i32 2 - store i32* %39, i32** %40, align 8 - store i32 0, i32* %5, align 4 - br label %41 - -41: ; preds = %51, %30 - %42 = load i32, i32* %5, align 4 - %43 = load i32, i32* %4, align 4 - %44 = icmp slt i32 %42, %43 - br i1 %44, label %45, label %54 - -45: ; preds = %41 - %46 = getelementptr inbounds %class.Graph, %class.Graph* %6, i32 0, i32 2 - %47 = load i32*, i32** %46, align 8 - %48 = load i32, i32* %5, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %47, i64 %49 - store i32 0, i32* %50, align 4 - br label %51 - -51: ; preds = %45 - %52 = load i32, i32* %5, align 4 - %53 = add nsw i32 %52, 1 - store i32 %53, i32* %5, align 4 - br label %41, !llvm.loop !6 - -54: ; preds = %41 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_ZN5Graph15isEulerianCycleEv(%class.Graph* noundef nonnull align 8 dereferenceable(24) %0) #4 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 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 - -9: ; preds = %1 - store i1 false, i1* %2, align 1 - br label %37 - -10: ; preds = %1 - store i32 0, i32* %4, align 4 - br label %11 - -11: ; preds = %33, %10 - %12 = load i32, i32* %4, align 4 - %13 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - %14 = load i32, i32* %13, align 8 - %15 = icmp slt i32 %12, %14 - br i1 %15, label %16, label %36 - -16: ; preds = %11 - %17 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - %18 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %17, align 8 - %19 = load i32, i32* %4, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %18, i64 %20 - %22 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %21) #15 - %23 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 2 - %24 = load i32*, i32** %23, align 8 - %25 = load i32, i32* %4, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i32, i32* %24, i64 %26 - %28 = load i32, i32* %27, align 4 - %29 = sext i32 %28 to i64 - %30 = icmp ne i64 %22, %29 - br i1 %30, label %31, label %32 - -31: ; preds = %16 - store i1 false, i1* %2, align 1 - br label %37 - -32: ; preds = %16 - br label %33 - -33: ; preds = %32 - %34 = load i32, i32* %4, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %4, align 4 - br label %11, !llvm.loop !8 - -36: ; preds = %11 - store i1 true, i1* %2, align 1 - br label %37 - -37: ; preds = %36, %31, %9 - %38 = load i1, i1* %2, align 1 - ret i1 %38 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* noundef nonnull align 8 dereferenceable(24) %0) #4 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca i1, align 1 - %3 = alloca %class.Graph*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca %class.Graph, align 8 - %11 = alloca i32, align 4 - %12 = alloca i8*, align 8 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %15 = load %class.Graph*, %class.Graph** %3, align 8 - %16 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 0 - %17 = load i32, i32* %16, align 8 - %18 = zext i32 %17 to i64 - %19 = call i8* @llvm.stacksave() - store i8* %19, i8** %4, align 8 - %20 = alloca i8, i64 %18, align 16 - store i64 %18, i64* %5, align 8 - store i32 0, i32* %6, align 4 - br label %21 - -21: ; preds = %30, %1 - %22 = load i32, i32* %6, align 4 - %23 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 0 - %24 = load i32, i32* %23, align 8 - %25 = icmp slt i32 %22, %24 - br i1 %25, label %26, label %33 - -26: ; preds = %21 - %27 = load i32, i32* %6, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i8, i8* %20, i64 %28 - store i8 0, i8* %29, align 1 - br label %30 - -30: ; preds = %26 - %31 = load i32, i32* %6, align 4 - %32 = add nsw i32 %31, 1 - store i32 %32, i32* %6, align 4 - br label %21, !llvm.loop !9 - -33: ; preds = %21 - store i32 0, i32* %7, align 4 - br label %34 - -34: ; preds = %49, %33 - %35 = load i32, i32* %7, align 4 - %36 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 0 - %37 = load i32, i32* %36, align 8 - %38 = icmp slt i32 %35, %37 - br i1 %38, label %39, label %52 - -39: ; preds = %34 - %40 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 1 - %41 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %40, align 8 - %42 = load i32, i32* %7, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %41, i64 %43 - %45 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %44) #15 - %46 = icmp ugt i64 %45, 0 - br i1 %46, label %47, label %48 - -47: ; preds = %39 - br label %52 - -48: ; preds = %39 - br label %49 - -49: ; preds = %48 - %50 = load i32, i32* %7, align 4 - %51 = add nsw i32 %50, 1 - store i32 %51, i32* %7, align 4 - br label %34, !llvm.loop !10 - -52: ; preds = %47, %34 - %53 = load i32, i32* %7, align 4 - 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 - -54: ; preds = %77, %52 - %55 = load i32, i32* %8, align 4 - %56 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 0 - %57 = load i32, i32* %56, align 8 - %58 = icmp slt i32 %55, %57 - br i1 %58, label %59, label %80 - -59: ; preds = %54 - %60 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 1 - %61 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %60, align 8 - %62 = load i32, i32* %8, align 4 - %63 = sext i32 %62 to i64 - %64 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %61, i64 %63 - %65 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %64) #15 - %66 = icmp ugt i64 %65, 0 - br i1 %66, label %67, label %76 - -67: ; preds = %59 - %68 = load i32, i32* %8, align 4 - %69 = sext i32 %68 to i64 - %70 = getelementptr inbounds i8, i8* %20, i64 %69 - %71 = load i8, i8* %70, align 1 - %72 = trunc i8 %71 to i1 - %73 = zext i1 %72 to i32 - %74 = icmp eq i32 %73, 0 - br i1 %74, label %75, label %76 - -75: ; preds = %67 - store i1 false, i1* %2, align 1 - store i32 1, i32* %9, align 4 - br label %128 - -76: ; preds = %67, %59 - br label %77 - -77: ; preds = %76 - %78 = load i32, i32* %8, align 4 - %79 = add nsw i32 %78, 1 - store i32 %79, i32* %8, align 4 - br label %54, !llvm.loop !11 - -80: ; preds = %54 - 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 - -81: ; preds = %90, %80 - %82 = load i32, i32* %11, align 4 - %83 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 0 - %84 = load i32, i32* %83, align 8 - %85 = icmp slt i32 %82, %84 - br i1 %85, label %86, label %93 - -86: ; preds = %81 - %87 = load i32, i32* %11, align 4 - %88 = sext i32 %87 to i64 - %89 = getelementptr inbounds i8, i8* %20, i64 %88 - store i8 0, i8* %89, align 1 - br label %90 - -90: ; preds = %86 - %91 = load i32, i32* %11, align 4 - %92 = add nsw i32 %91, 1 - store i32 %92, i32* %11, align 4 - br label %81, !llvm.loop !12 - -93: ; preds = %81 - %94 = load i32, i32* %7, align 4 - 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 - store i32 0, i32* %14, align 4 - br label %96 - -96: ; preds = %123, %95 - %97 = load i32, i32* %14, align 4 - %98 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 0 - %99 = load i32, i32* %98, align 8 - %100 = icmp slt i32 %97, %99 - br i1 %100, label %101, label %126 - -101: ; preds = %96 - %102 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 1 - %103 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %102, align 8 - %104 = load i32, i32* %14, align 4 - %105 = sext i32 %104 to i64 - %106 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %103, i64 %105 - %107 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %106) #15 - %108 = icmp ugt i64 %107, 0 - br i1 %108, label %109, label %122 - -109: ; preds = %101 - %110 = load i32, i32* %14, align 4 - %111 = sext i32 %110 to i64 - %112 = getelementptr inbounds i8, i8* %20, i64 %111 - %113 = load i8, i8* %112, align 1 - %114 = trunc i8 %113 to i1 - %115 = zext i1 %114 to i32 - %116 = icmp eq i32 %115, 0 - br i1 %116, label %117, label %122 - -117: ; preds = %109 - store i1 false, i1* %2, align 1 - store i32 1, i32* %9, align 4 - br label %127 - -118: ; preds = %93 - %119 = landingpad { i8*, i32 } - cleanup - %120 = extractvalue { i8*, i32 } %119, 0 - store i8* %120, i8** %12, align 8 - %121 = extractvalue { i8*, i32 } %119, 1 - store i32 %121, i32* %13, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(24) %10) #15 - br label %131 - -122: ; preds = %109, %101 - br label %123 - -123: ; preds = %122 - %124 = load i32, i32* %14, align 4 - %125 = add nsw i32 %124, 1 - store i32 %125, i32* %14, align 4 - br label %96, !llvm.loop !13 - -126: ; preds = %96 - store i1 true, i1* %2, align 1 - store i32 1, i32* %9, align 4 - br label %127 - -127: ; preds = %126, %117 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(24) %10) #15 - br label %128 - -128: ; preds = %127, %75 - %129 = load i8*, i8** %4, align 8 - call void @llvm.stackrestore(i8* %129) - %130 = load i1, i1* %2, align 1 - ret i1 %130 - -131: ; preds = %118 - %132 = load i8*, i8** %12, align 8 - %133 = load i32, i32* %13, align 4 - %134 = insertvalue { i8*, i32 } undef, i8* %132, 0 - %135 = insertvalue { i8*, i32 } %134, i32 %133, 1 - resume { i8*, i32 } %135 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) #5 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 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 - ret i64 %4 - -6: ; preds = %1 - %7 = landingpad { i8*, i32 } - catch i8* null - %8 = extractvalue { i8*, i32 } %7, 0 - call void @__clang_call_terminate(i8* %8) #16 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(24) %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 - %7 = alloca %"struct.std::_List_iterator", align 8 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i8* %2, i8** %6, align 8 - %10 = load %class.Graph*, %class.Graph** %4, align 8 - %11 = load i8*, i8** %6, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i8, i8* %11, i64 %13 - store i8 1, i8* %14, align 1 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %19) #15 - %21 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %20, %"struct.std::__detail::_List_node_base"** %21, align 8 - %22 = bitcast %"struct.std::_List_iterator"* %7 to i8* - %23 = bitcast %"struct.std::_List_iterator"* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %22, i8* align 8 %23, i64 8, i1 false) - br label %24 - -24: ; preds = %46, %3 - %25 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 1 - %26 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %25, align 8 - %27 = load i32, i32* %5, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 %28 - %30 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %29) #15 - %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 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) #15 - br i1 %32, label %33, label %48 - -33: ; preds = %24 - %34 = load i8*, i8** %6, align 8 - %35 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #15 - %36 = load i32, i32* %35, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i8, i8* %34, i64 %37 - %39 = load i8, i8* %38, align 1 - %40 = trunc i8 %39 to i1 - br i1 %40, label %45, label %41 - -41: ; preds = %33 - %42 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #15 - %43 = load i32, i32* %42, align 4 - %44 = load i8*, i8** %6, align 8 - 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 noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #15 - 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"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #15 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -; 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) #5 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #15 - %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: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %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 noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) - ret i32* %7 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: 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) #4 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca i8*, align 8 - %4 = alloca %class.Graph*, align 8 - %5 = alloca i1, align 1 - %6 = alloca i32, align 4 - %7 = alloca %"struct.std::_List_iterator", align 8 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - %12 = bitcast %class.Graph* %0 to i8* - store i8* %12, i8** %3, align 8 - store %class.Graph* %1, %class.Graph** %4, align 8 - %13 = load %class.Graph*, %class.Graph** %4, align 8 - store i1 false, i1* %5, align 1 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 0 - %15 = load i32, i32* %14, align 8 - call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(24) %0, i32 noundef %15) - store i32 0, i32* %6, align 4 - br label %16 - -16: ; preds = %62, %2 - %17 = load i32, i32* %6, align 4 - %18 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 0 - %19 = load i32, i32* %18, align 8 - %20 = icmp slt i32 %17, %19 - br i1 %20, label %21, label %65 - -21: ; preds = %16 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %26) #15 - %28 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %27, %"struct.std::__detail::_List_node_base"** %28, align 8 - %29 = bitcast %"struct.std::_List_iterator"* %7 to i8* - %30 = bitcast %"struct.std::_List_iterator"* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %29, i8* align 8 %30, i64 8, i1 false) - br label %31 - -31: ; preds = %55, %21 - %32 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %33 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %32, align 8 - %34 = load i32, i32* %6, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %33, i64 %35 - %37 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %36) #15 - %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 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) #15 - 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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %46, i32* noundef nonnull align 4 dereferenceable(4) %6) - to label %47 unwind label %57 - -47: ; preds = %40 - %48 = getelementptr inbounds %class.Graph, %class.Graph* %0, i32 0, i32 2 - %49 = load i32*, i32** %48, align 8 - %50 = load i32, i32* %6, align 4 - %51 = sext i32 %50 to i64 - %52 = getelementptr inbounds i32, i32* %49, i64 %51 - %53 = load i32, i32* %52, align 4 - %54 = add nsw i32 %53, 1 - store i32 %54, i32* %52, align 4 - br label %55 - -55: ; preds = %47 - %56 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #15 - br label %31, !llvm.loop !15 - -57: ; preds = %40 - %58 = landingpad { i8*, i32 } - cleanup - %59 = extractvalue { i8*, i32 } %58, 0 - store i8* %59, i8** %10, align 8 - %60 = extractvalue { i8*, i32 } %58, 1 - store i32 %60, i32* %11, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(24) %0) #15 - br label %69 - -61: ; preds = %31 - br label %62 - -62: ; preds = %61 - %63 = load i32, i32* %6, align 4 - %64 = add nsw i32 %63, 1 - store i32 %64, i32* %6, align 4 - br label %16, !llvm.loop !16 - -65: ; preds = %16 - store i1 true, i1* %5, align 1 - %66 = load i1, i1* %5, align 1 - br i1 %66, label %68, label %67 - -67: ; preds = %65 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(24) %0) #15 - br label %68 - -68: ; preds = %67, %65 - ret void - -69: ; preds = %57 - %70 = load i8*, i8** %10, align 8 - %71 = load i32, i32* %11, align 4 - %72 = insertvalue { i8*, i32 } undef, i8* %70, 0 - %73 = insertvalue { i8*, i32 } %72, i32 %71, 1 - resume { i8*, i32 } %73 -} - -; Function Attrs: 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"* noundef nonnull align 8 dereferenceable(24) %6) #15 - %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"* 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 i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %class.Graph*, align 8 - store %class.Graph* %0, %class.Graph** %2, align 8 - %3 = load %class.Graph*, %class.Graph** %2, align 8 - %4 = getelementptr inbounds %class.Graph, %class.Graph* %3, i32 0, i32 1 - %5 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %4, align 8 - %6 = icmp eq %"class.std::__cxx11::list"* %5, null - br i1 %6, label %19, label %7 - -7: ; preds = %1 - %8 = bitcast %"class.std::__cxx11::list"* %5 to i8* - %9 = getelementptr inbounds i8, i8* %8, i64 -8 - %10 = bitcast i8* %9 to i64* - %11 = load i64, i64* %10, align 8 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %5, i64 %11 - %13 = icmp eq %"class.std::__cxx11::list"* %5, %12 - br i1 %13, label %18, label %14 - -14: ; preds = %14, %7 - %15 = phi %"class.std::__cxx11::list"* [ %12, %7 ], [ %16, %14 ] - %16 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %15, i64 -1 - call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %16) #15 - %17 = icmp eq %"class.std::__cxx11::list"* %16, %5 - br i1 %17, label %18, label %14 - -18: ; preds = %14, %7 - call void @_ZdaPv(i8* noundef %9) #17 - br label %19 - -19: ; preds = %18, %1 - %20 = getelementptr inbounds %class.Graph, %class.Graph* %3, i32 0, i32 2 - %21 = load i32*, i32** %20, align 8 - %22 = icmp eq i32* %21, null - br i1 %22, label %25, label %23 - -23: ; preds = %19 - %24 = bitcast i32* %21 to i8* - call void @_ZdaPv(i8* noundef %24) #17 - br label %25 - -25: ; preds = %23, %19 - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #7 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #7 - -; Function Attrs: 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 %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* 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* 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* 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* 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* 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* noundef nonnull align 8 dereferenceable(24) %2, i32 noundef 4, i32 noundef 0) - to label %10 unwind label %16 - -10: ; preds = %9 - %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 noundef 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 - br label %23 - -16: ; preds = %20, %13, %10, %9, %8, %7, %6, %5, %0 - %17 = landingpad { i8*, i32 } - cleanup - %18 = extractvalue { i8*, i32 } %17, 0 - store i8* %18, i8** %3, align 8 - %19 = extractvalue { i8*, i32 } %17, 1 - store i32 %19, i32* %4, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(24) %2) #15 - br label %25 - -20: ; preds = %12 - %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 - br label %23 - -23: ; preds = %22, %15 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(24) %2) #15 - %24 = load i32, i32* %1, align 4 - ret i32 %24 - -25: ; preds = %16 - %26 = load i8*, i8** %3, align 8 - %27 = load i32, i32* %4, align 4 - %28 = insertvalue { i8*, i32 } undef, i8* %26, 0 - %29 = insertvalue { i8*, i32 } %28, i32 %27, 1 - resume { i8*, i32 } %29 -} - -; Function Attrs: 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) #4 comdat align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* 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 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds i32, i32* %14, i64 %16 - %18 = load i32, i32* %17, align 4 - %19 = add nsw i32 %18, 1 - store i32 %19, i32* %17, align 4 - ret void -} - -declare noundef 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) #9 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #15 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #15 - ret void -} - -; 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) #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"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdaPv(i8* noundef) #10 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - ret void -} - -; 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) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %7 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - %8 = alloca %"struct.std::_List_node"*, align 8 - %9 = alloca i32*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %6, align 8 - %10 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %6, align 8 - %11 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %10, i32 0, i32 0 - %12 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %11, i32 0, i32 0 - %13 = bitcast %"struct.std::__detail::_List_node_header"* %12 to %"struct.std::__detail::_List_node_base"* - %14 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %13, i32 0, i32 0 - %15 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %14, align 8 - store %"struct.std::__detail::_List_node_base"* %15, %"struct.std::__detail::_List_node_base"** %7, align 8 - br label %16 - -16: ; preds = %31, %1 - %17 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %7, align 8 - %18 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %10, i32 0, i32 0 - %19 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::__detail::_List_node_header"* %19 to %"struct.std::__detail::_List_node_base"* - %21 = icmp ne %"struct.std::__detail::_List_node_base"* %17, %20 - br i1 %21, label %22, label %40 - -22: ; preds = %16 - %23 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %7, align 8 - %24 = bitcast %"struct.std::__detail::_List_node_base"* %23 to %"struct.std::_List_node"* - store %"struct.std::_List_node"* %24, %"struct.std::_List_node"** %8, align 8 - %25 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - %26 = bitcast %"struct.std::_List_node"* %25 to %"struct.std::__detail::_List_node_base"* - %27 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %26, i32 0, i32 0 - %28 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %27, align 8 - store %"struct.std::__detail::_List_node_base"* %28, %"struct.std::__detail::_List_node_base"** %7, align 8 - %29 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - %30 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %29) - to label %31 unwind label %41 - -31: ; preds = %22 - store i32* %30, i32** %9, align 8 - %32 = 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) %10) #15 - %33 = load i32*, i32** %9, align 8 - store %"class.std::allocator"* %32, %"class.std::allocator"** %4, align 8 - store i32* %33, i32** %5, align 8 - %34 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %35 = bitcast %"class.std::allocator"* %34 to %"class.std::__new_allocator"* - %36 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator"* %35, %"class.std::__new_allocator"** %2, align 8 - store i32* %36, i32** %3, align 8 - %37 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %38 = load i32*, i32** %3, align 8 - %39 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %10, %"struct.std::_List_node"* noundef %39) #15 - br label %16, !llvm.loop !17 - -40: ; preds = %16 - ret void - -41: ; preds = %22 - %42 = landingpad { i8*, i32 } - catch i8* null - %43 = extractvalue { i8*, i32 } %42, 0 - call void @__clang_call_terminate(i8* %43) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = 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"** %3, align 8 - %4 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %3, align 8 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - store %"class.std::allocator"* %5, %"class.std::allocator"** %2, align 8 - %6 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %7 = bitcast %"class.std::allocator"* %6 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #15 - ret void -} - -; 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) #5 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #15 - ret i32* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #15 - call void @_ZSt9terminatev() #16 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; 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) #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 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; 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) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %6, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %7, align 8 - %8 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %6, align 8 - %9 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %9 to %"class.std::allocator"* - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - store %"class.std::allocator"* %10, %"class.std::allocator"** %3, align 8 - store %"struct.std::_List_node"* %11, %"struct.std::_List_node"** %4, align 8 - store i64 1, i64* %5, align 8 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %13 = bitcast %"class.std::allocator"* %12 to %"class.std::__new_allocator"* - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %15 = load i64, i64* %5, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* noundef %14, i64 noundef %15) - br label %16 - -16: ; preds = %2 - ret void - -17: ; No predecessors! - %18 = landingpad { i8*, i32 } - catch i8* null - %19 = extractvalue { i8*, i32 } %18, 0 - call void @__clang_call_terminate(i8* %19) #16 - unreachable -} - -; 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) #5 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #15 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #17 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #10 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -; 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 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #15 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %14 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %15 = bitcast %"class.std::__cxx11::list"* %14 to %"class.std::__cxx11::_List_base"* - %16 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %15) - store %"struct.std::_List_node"* %16, %"struct.std::_List_node"** %11, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %14 to %"class.std::__cxx11::_List_base"* - %18 = 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) %17) #15 - store %"class.std::allocator"* %18, %"class.std::allocator"** %12, align 8 - %19 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %20 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %19, %"struct.std::_List_node"* noundef %20) #15 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %23 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %22) - %24 = load i32*, i32** %10, align 8 - %25 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %24) #15 - store %"class.std::allocator"* %21, %"class.std::allocator"** %6, align 8 - store i32* %23, i32** %7, align 8 - store i32* %25, i32** %8, align 8 - %26 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %27 = bitcast %"class.std::allocator"* %26 to %"class.std::__new_allocator"* - %28 = load i32*, i32** %7, align 8 - %29 = load i32*, i32** %8, align 8 - %30 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %29) #15 - store %"class.std::__new_allocator"* %27, %"class.std::__new_allocator"** %3, align 8 - store i32* %28, i32** %4, align 8 - store i32* %30, i32** %5, align 8 - %31 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %32 = load i32*, i32** %4, align 8 - %33 = bitcast i32* %32 to i8* - %34 = load i32*, i32** %5, align 8 - %35 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %34) #15 - %36 = load i32, i32* %35, align 4 - store i32 %36, i32* %32, align 4 - %37 = 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) %13, i8* null) #15 - %38 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #15 - ret %"struct.std::_List_node"* %38 -} - -; 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) #5 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare 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) #12 - -; 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) #5 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #15 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #16 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #18 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #14 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -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 noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; 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) #5 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: 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 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: 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) #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 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %4, i32 0, i32 0 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %5, i32 0, i32 1 - %7 = load i64, i64* %6, align 8 - ret i64 %7 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %1) unnamed_addr #3 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -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 = { nofree nosync nounwind readnone speculatable willreturn } -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 = { 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 #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 = { argmemonly nofree nounwind willreturn } -attributes #7 = { 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 = { "frame-pointer"="all" "no-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 = { 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 = { noinline noreturn nounwind } -attributes #12 = { 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 = { nounwind } -attributes #16 = { noreturn nounwind } -attributes #17 = { builtin nounwind } -attributes #18 = { noreturn } - -!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"} -!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-llvm14/eulerian-path-and-circuit.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/eulerian-path-and-circuit.ll deleted file mode 100644 index e44465a64..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/eulerian-path-and-circuit.ll +++ /dev/null @@ -1,1509 +0,0 @@ -; ModuleID = 'PE-benchmarks/eulerian-path-and-circuit.cpp' -source_filename = "PE-benchmarks/eulerian-path-and-circuit.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNKSt7__cxx114listIiSaIiEE4sizeEv = comdat any - -$_ZN5GraphC2Ei = comdat any - -$_ZN5GraphD2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -$_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv = comdat any - -$_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv = comdat any - -@_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 - -; 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) #0 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* 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"* noundef nonnull align 8 dereferenceable(24) %17, i32* noundef nonnull align 4 dereferenceable(4) %5) - ret void -} - -; 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) #0 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"* noundef nonnull align 8 dereferenceable(24) %6) #14 - %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"* 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: mustprogress noinline uwtable -define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i8* noundef %2) #0 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i8*, align 8 - %7 = alloca %"struct.std::_List_iterator", align 8 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i8* %2, i8** %6, align 8 - %10 = load %class.Graph*, %class.Graph** %4, align 8 - %11 = load i8*, i8** %6, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i8, i8* %11, i64 %13 - store i8 1, i8* %14, align 1 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %19) #14 - %21 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %20, %"struct.std::__detail::_List_node_base"** %21, align 8 - %22 = bitcast %"struct.std::_List_iterator"* %7 to i8* - %23 = bitcast %"struct.std::_List_iterator"* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %22, i8* align 8 %23, i64 8, i1 false) - br label %24 - -24: ; preds = %46, %3 - %25 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 1 - %26 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %25, align 8 - %27 = load i32, i32* %5, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 %28 - %30 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %29) #14 - %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 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) #14 - br i1 %32, label %33, label %48 - -33: ; preds = %24 - %34 = load i8*, i8** %6, align 8 - %35 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #14 - %36 = load i32, i32* %35, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i8, i8* %34, i64 %37 - %39 = load i8, i8* %38, align 1 - %40 = trunc i8 %39 to i1 - br i1 %40, label %45, label %41 - -41: ; preds = %33 - %42 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #14 - %43 = load i32, i32* %42, align 4 - %44 = load i8*, i8** %6, align 8 - 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 noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #14 - 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"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #1 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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) #2 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #14 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 - -; 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) #2 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #2 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #14 - %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: 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) #2 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 noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) - ret i32* %7 -} - -; 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) #2 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_ZN5Graph11isConnectedEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #0 align 2 { - %2 = alloca i1, align 1 - %3 = alloca %class.Graph*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %8 = load %class.Graph*, %class.Graph** %3, align 8 - %9 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %10 = load i32, i32* %9, align 8 - %11 = zext i32 %10 to i64 - %12 = call i8* @llvm.stacksave() - store i8* %12, i8** %4, align 8 - %13 = alloca i8, i64 %11, align 16 - store i64 %11, i64* %5, align 8 - store i32 0, i32* %6, align 4 - br label %14 - -14: ; preds = %23, %1 - %15 = load i32, i32* %6, align 4 - %16 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %17 = load i32, i32* %16, align 8 - %18 = icmp slt i32 %15, %17 - br i1 %18, label %19, label %26 - -19: ; preds = %14 - %20 = load i32, i32* %6, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i8, i8* %13, i64 %21 - store i8 0, i8* %22, align 1 - br label %23 - -23: ; preds = %19 - %24 = load i32, i32* %6, align 4 - %25 = add nsw i32 %24, 1 - store i32 %25, i32* %6, align 4 - br label %14, !llvm.loop !8 - -26: ; preds = %14 - store i32 0, i32* %6, align 4 - br label %27 - -27: ; preds = %42, %26 - %28 = load i32, i32* %6, align 4 - %29 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %30 = load i32, i32* %29, align 8 - %31 = icmp slt i32 %28, %30 - br i1 %31, label %32, label %45 - -32: ; preds = %27 - %33 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 1 - %34 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %33, align 8 - %35 = load i32, i32* %6, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %34, i64 %36 - %38 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %37) #14 - %39 = icmp ne i64 %38, 0 - br i1 %39, label %40, label %41 - -40: ; preds = %32 - br label %45 - -41: ; preds = %32 - br label %42 - -42: ; preds = %41 - %43 = load i32, i32* %6, align 4 - %44 = add nsw i32 %43, 1 - store i32 %44, i32* %6, align 4 - br label %27, !llvm.loop !9 - -45: ; preds = %40, %27 - %46 = load i32, i32* %6, align 4 - %47 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %48 = load i32, i32* %47, align 8 - %49 = icmp eq i32 %46, %48 - br i1 %49, label %50, label %51 - -50: ; preds = %45 - store i1 true, i1* %2, align 1 - store i32 1, i32* %7, align 4 - br label %80 - -51: ; preds = %45 - %52 = load i32, i32* %6, align 4 - call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %8, i32 noundef %52, i8* noundef %13) - store i32 0, i32* %6, align 4 - br label %53 - -53: ; preds = %76, %51 - %54 = load i32, i32* %6, align 4 - %55 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %56 = load i32, i32* %55, align 8 - %57 = icmp slt i32 %54, %56 - br i1 %57, label %58, label %79 - -58: ; preds = %53 - %59 = load i32, i32* %6, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i8, i8* %13, i64 %60 - %62 = load i8, i8* %61, align 1 - %63 = trunc i8 %62 to i1 - %64 = zext i1 %63 to i32 - %65 = icmp eq i32 %64, 0 - br i1 %65, label %66, label %75 - -66: ; preds = %58 - %67 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 1 - %68 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %67, align 8 - %69 = load i32, i32* %6, align 4 - %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %68, i64 %70 - %72 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %71) #14 - %73 = icmp ugt i64 %72, 0 - br i1 %73, label %74, label %75 - -74: ; preds = %66 - store i1 false, i1* %2, align 1 - store i32 1, i32* %7, align 4 - br label %80 - -75: ; preds = %66, %58 - br label %76 - -76: ; preds = %75 - %77 = load i32, i32* %6, align 4 - %78 = add nsw i32 %77, 1 - store i32 %78, i32* %6, align 4 - br label %53, !llvm.loop !10 - -79: ; preds = %53 - store i1 true, i1* %2, align 1 - store i32 1, i32* %7, align 4 - br label %80 - -80: ; preds = %79, %74, %50 - %81 = load i8*, i8** %4, align 8 - call void @llvm.stackrestore(i8* %81) - %82 = load i1, i1* %2, align 1 - ret i1 %82 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #4 - -; 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) #2 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 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 - ret i64 %4 - -6: ; preds = %1 - %7 = landingpad { i8*, i32 } - catch i8* null - %8 = extractvalue { i8*, i32 } %7, 0 - call void @__clang_call_terminate(i8* %8) #15 - unreachable -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #4 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_ZN5Graph10isEulerianEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #0 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 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 - -10: ; preds = %1 - store i32 0, i32* %2, align 4 - br label %42 - -11: ; preds = %1 - store i32 0, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %12 - -12: ; preds = %30, %11 - %13 = load i32, i32* %5, align 4 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %6, i32 0, i32 0 - %15 = load i32, i32* %14, align 8 - %16 = icmp slt i32 %13, %15 - br i1 %16, label %17, label %33 - -17: ; preds = %12 - %18 = getelementptr inbounds %class.Graph, %class.Graph* %6, i32 0, i32 1 - %19 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %18, align 8 - %20 = load i32, i32* %5, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %19, i64 %21 - %23 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %22) #14 - %24 = and i64 %23, 1 - %25 = icmp ne i64 %24, 0 - br i1 %25, label %26, label %29 - -26: ; preds = %17 - %27 = load i32, i32* %4, align 4 - %28 = add nsw i32 %27, 1 - store i32 %28, i32* %4, align 4 - br label %29 - -29: ; preds = %26, %17 - br label %30 - -30: ; preds = %29 - %31 = load i32, i32* %5, align 4 - %32 = add nsw i32 %31, 1 - store i32 %32, i32* %5, align 4 - br label %12, !llvm.loop !11 - -33: ; preds = %12 - %34 = load i32, i32* %4, align 4 - %35 = icmp sgt i32 %34, 2 - br i1 %35, label %36, label %37 - -36: ; preds = %33 - store i32 0, i32* %2, align 4 - br label %42 - -37: ; preds = %33 - %38 = load i32, i32* %4, align 4 - %39 = icmp ne i32 %38, 0 - %40 = zext i1 %39 to i64 - %41 = select i1 %39, i32 1, i32 2 - store i32 %41, i32* %2, align 4 - br label %42 - -42: ; preds = %37, %36, %10 - %43 = load i32, i32* %2, align 4 - ret i32 %43 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z4testR5Graph(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #0 { - %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 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 noundef 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 - %11 = load i32, i32* %3, align 4 - %12 = icmp eq i32 %11, 1 - br i1 %12, label %13, label %15 - -13: ; preds = %10 - %14 = call noundef 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 noundef 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 - br label %18 - -18: ; preds = %17, %8 - ret void -} - -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) #5 - -; 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.Graph, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - %5 = alloca %class.Graph, align 8 - %6 = alloca %class.Graph, align 8 - %7 = alloca %class.Graph, align 8 - %8 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC2Ei(%class.Graph* 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* 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* 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* 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* 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* noundef nonnull align 8 dereferenceable(16) %2) - to label %14 unwind label %39 - -14: ; preds = %13 - 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* 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* 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* 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* 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* 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* 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* noundef nonnull align 8 dereferenceable(16) %5) - to label %22 unwind label %43 - -22: ; preds = %21 - 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* 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* 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* 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* 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* 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* 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* noundef nonnull align 8 dereferenceable(16) %6) - to label %30 unwind label %47 - -30: ; preds = %29 - 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* 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* 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* 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* noundef nonnull align 8 dereferenceable(16) %7) - to label %35 unwind label %51 - -35: ; preds = %34 - 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* 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* noundef nonnull align 8 dereferenceable(16) %8) #14 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %7) #14 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6) #14 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5) #14 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) #14 - %38 = load i32, i32* %1, align 4 - ret i32 %38 - -39: ; preds = %14, %13, %12, %11, %10, %9, %0 - %40 = landingpad { i8*, i32 } - cleanup - %41 = extractvalue { i8*, i32 } %40, 0 - store i8* %41, i8** %3, align 8 - %42 = extractvalue { i8*, i32 } %40, 1 - store i32 %42, i32* %4, align 4 - br label %62 - -43: ; preds = %22, %21, %20, %19, %18, %17, %16, %15 - %44 = landingpad { i8*, i32 } - cleanup - %45 = extractvalue { i8*, i32 } %44, 0 - store i8* %45, i8** %3, align 8 - %46 = extractvalue { i8*, i32 } %44, 1 - store i32 %46, i32* %4, align 4 - br label %61 - -47: ; preds = %30, %29, %28, %27, %26, %25, %24, %23 - %48 = landingpad { i8*, i32 } - cleanup - %49 = extractvalue { i8*, i32 } %48, 0 - store i8* %49, i8** %3, align 8 - %50 = extractvalue { i8*, i32 } %48, 1 - store i32 %50, i32* %4, align 4 - br label %60 - -51: ; preds = %35, %34, %33, %32, %31 - %52 = landingpad { i8*, i32 } - cleanup - %53 = extractvalue { i8*, i32 } %52, 0 - store i8* %53, i8** %3, align 8 - %54 = extractvalue { i8*, i32 } %52, 1 - store i32 %54, i32* %4, align 4 - br label %59 - -55: ; preds = %36 - %56 = landingpad { i8*, i32 } - cleanup - %57 = extractvalue { i8*, i32 } %56, 0 - store i8* %57, i8** %3, align 8 - %58 = extractvalue { i8*, i32 } %56, 1 - store i32 %58, i32* %4, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %8) #14 - br label %59 - -59: ; preds = %55, %51 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %7) #14 - br label %60 - -60: ; preds = %59, %47 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6) #14 - br label %61 - -61: ; preds = %60, %43 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5) #14 - br label %62 - -62: ; preds = %61, %39 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) #14 - br label %63 - -63: ; preds = %62 - %64 = load i8*, i8** %3, align 8 - %65 = load i32, i32* %4, align 4 - %66 = insertvalue { i8*, i32 } undef, i8* %64, 0 - %67 = insertvalue { i8*, i32 } %66, i32 %65, 1 - resume { i8*, i32 } %67 -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #7 comdat align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias 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 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %26) #14 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -declare i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #1 comdat align 2 { - %2 = alloca %class.Graph*, align 8 - store %class.Graph* %0, %class.Graph** %2, align 8 - %3 = load %class.Graph*, %class.Graph** %2, align 8 - %4 = getelementptr inbounds %class.Graph, %class.Graph* %3, i32 0, i32 1 - %5 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %4, align 8 - %6 = icmp eq %"class.std::__cxx11::list"* %5, null - br i1 %6, label %19, label %7 - -7: ; preds = %1 - %8 = bitcast %"class.std::__cxx11::list"* %5 to i8* - %9 = getelementptr inbounds i8, i8* %8, i64 -8 - %10 = bitcast i8* %9 to i64* - %11 = load i64, i64* %10, align 8 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %5, i64 %11 - %13 = icmp eq %"class.std::__cxx11::list"* %5, %12 - br i1 %13, label %18, label %14 - -14: ; preds = %14, %7 - %15 = phi %"class.std::__cxx11::list"* [ %12, %7 ], [ %16, %14 ] - %16 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %15, i64 -1 - call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %16) #14 - %17 = icmp eq %"class.std::__cxx11::list"* %16, %5 - br i1 %17, label %18, label %14 - -18: ; preds = %14, %7 - call void @_ZdaPv(i8* noundef %9) #17 - br label %19 - -19: ; preds = %18, %1 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #8 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #8 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #9 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #1 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #1 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #1 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #1 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"* noundef nonnull align 8 dereferenceable(24) %3) #14 - ret void -} - -; 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) #2 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #1 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdaPv(i8* noundef) #10 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #1 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"* noundef nonnull align 8 dereferenceable(24) %3) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; 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) #2 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %7 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - %8 = alloca %"struct.std::_List_node"*, align 8 - %9 = alloca i32*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %6, align 8 - %10 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %6, align 8 - %11 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %10, i32 0, i32 0 - %12 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %11, i32 0, i32 0 - %13 = bitcast %"struct.std::__detail::_List_node_header"* %12 to %"struct.std::__detail::_List_node_base"* - %14 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %13, i32 0, i32 0 - %15 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %14, align 8 - store %"struct.std::__detail::_List_node_base"* %15, %"struct.std::__detail::_List_node_base"** %7, align 8 - br label %16 - -16: ; preds = %31, %1 - %17 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %7, align 8 - %18 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %10, i32 0, i32 0 - %19 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::__detail::_List_node_header"* %19 to %"struct.std::__detail::_List_node_base"* - %21 = icmp ne %"struct.std::__detail::_List_node_base"* %17, %20 - br i1 %21, label %22, label %40 - -22: ; preds = %16 - %23 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %7, align 8 - %24 = bitcast %"struct.std::__detail::_List_node_base"* %23 to %"struct.std::_List_node"* - store %"struct.std::_List_node"* %24, %"struct.std::_List_node"** %8, align 8 - %25 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - %26 = bitcast %"struct.std::_List_node"* %25 to %"struct.std::__detail::_List_node_base"* - %27 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %26, i32 0, i32 0 - %28 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %27, align 8 - store %"struct.std::__detail::_List_node_base"* %28, %"struct.std::__detail::_List_node_base"** %7, align 8 - %29 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - %30 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %29) - to label %31 unwind label %41 - -31: ; preds = %22 - store i32* %30, i32** %9, align 8 - %32 = 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) %10) #14 - %33 = load i32*, i32** %9, align 8 - store %"class.std::allocator"* %32, %"class.std::allocator"** %4, align 8 - store i32* %33, i32** %5, align 8 - %34 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %35 = bitcast %"class.std::allocator"* %34 to %"class.std::__new_allocator"* - %36 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator"* %35, %"class.std::__new_allocator"** %2, align 8 - store i32* %36, i32** %3, align 8 - %37 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %38 = load i32*, i32** %3, align 8 - %39 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %10, %"struct.std::_List_node"* noundef %39) #14 - br label %16, !llvm.loop !12 - -40: ; preds = %16 - ret void - -41: ; preds = %22 - %42 = landingpad { i8*, i32 } - catch i8* null - %43 = extractvalue { i8*, i32 } %42, 0 - call void @__clang_call_terminate(i8* %43) #15 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #1 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = 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"** %3, align 8 - %4 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %3, align 8 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - store %"class.std::allocator"* %5, %"class.std::allocator"** %2, align 8 - %6 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %7 = bitcast %"class.std::allocator"* %6 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #14 - ret void -} - -; 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) #2 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #14 - ret i32* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #14 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; 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) #2 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: 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) #2 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %6, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %7, align 8 - %8 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %6, align 8 - %9 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %9 to %"class.std::allocator"* - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - store %"class.std::allocator"* %10, %"class.std::allocator"** %3, align 8 - store %"struct.std::_List_node"* %11, %"struct.std::_List_node"** %4, align 8 - store i64 1, i64* %5, align 8 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %13 = bitcast %"class.std::allocator"* %12 to %"class.std::__new_allocator"* - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %15 = load i64, i64* %5, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* noundef %14, i64 noundef %15) - br label %16 - -16: ; preds = %2 - ret void - -17: ; No predecessors! - %18 = landingpad { i8*, i32 } - catch i8* null - %19 = extractvalue { i8*, i32 } %18, 0 - call void @__clang_call_terminate(i8* %19) #15 - unreachable -} - -; 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) #2 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #14 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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) #2 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %2) #2 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #17 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #10 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #1 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -; 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) #0 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #14 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %14 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %15 = bitcast %"class.std::__cxx11::list"* %14 to %"class.std::__cxx11::_List_base"* - %16 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %15) - store %"struct.std::_List_node"* %16, %"struct.std::_List_node"** %11, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %14 to %"class.std::__cxx11::_List_base"* - %18 = 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) %17) #14 - store %"class.std::allocator"* %18, %"class.std::allocator"** %12, align 8 - %19 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %20 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %19, %"struct.std::_List_node"* noundef %20) #14 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %23 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %22) - %24 = load i32*, i32** %10, align 8 - %25 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %24) #14 - store %"class.std::allocator"* %21, %"class.std::allocator"** %6, align 8 - store i32* %23, i32** %7, align 8 - store i32* %25, i32** %8, align 8 - %26 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %27 = bitcast %"class.std::allocator"* %26 to %"class.std::__new_allocator"* - %28 = load i32*, i32** %7, align 8 - %29 = load i32*, i32** %8, align 8 - %30 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %29) #14 - store %"class.std::__new_allocator"* %27, %"class.std::__new_allocator"** %3, align 8 - store i32* %28, i32** %4, align 8 - store i32* %30, i32** %5, align 8 - %31 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %32 = load i32*, i32** %4, align 8 - %33 = bitcast i32* %32 to i8* - %34 = load i32*, i32** %5, align 8 - %35 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %34) #14 - %36 = load i32, i32* %35, align 4 - store i32 %36, i32* %32, align 4 - %37 = 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) %13, i8* null) #14 - %38 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #14 - ret %"struct.std::_List_node"* %38 -} - -; 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) #2 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare 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) #12 - -; 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) #2 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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) #0 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; Function Attrs: noinline nounwind uwtable -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 #1 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #14 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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) #2 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #1 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #15 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #0 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #18 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #16 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -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 noundef nonnull i8* @_Znwm(i64 noundef) #9 - -; 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) #2 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 -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 #1 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: 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) #0 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 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: 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) #2 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %4, i32 0, i32 0 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %5, i32 0, i32 1 - %7 = load i64, i64* %6, align 8 - ret i64 %7 -} - -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 = { 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 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 } -attributes #4 = { nofree nosync 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 = { 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 = { 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 readnone speculatable willreturn } -attributes #9 = { 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 #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 = { noinline noreturn nounwind } -attributes #12 = { 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 = { nounwind } -attributes #15 = { noreturn nounwind } -attributes #16 = { builtin allocsize(0) } -attributes #17 = { builtin nounwind } -attributes #18 = { noreturn } - -!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"} -!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-llvm14/find-common-elements-three-sorted-arrays.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/find-common-elements-three-sorted-arrays.ll deleted file mode 100644 index 056adae32..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/find-common-elements-three-sorted-arrays.ll +++ /dev/null @@ -1,233 +0,0 @@ -; ModuleID = 'PE-benchmarks/find-common-elements-three-sorted-arrays.cpp' -source_filename = "PE-benchmarks/find-common-elements-three-sorted-arrays.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 -@__const.main.ar3 = private unnamed_addr constant [8 x i32] [i32 3, i32 4, i32 15, i32 20, i32 30, i32 70, i32 80, i32 120], align 16 -@.str.1 = private unnamed_addr constant [21 x i8] c"Common Elements are \00", align 1 - -; 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) #0 { - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32*, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - store i32* %0, i32** %7, align 8 - store i32* %1, i32** %8, align 8 - store i32* %2, i32** %9, align 8 - store i32 %3, i32* %10, align 4 - store i32 %4, i32* %11, align 4 - store i32 %5, i32* %12, align 4 - store i32 0, i32* %13, align 4 - store i32 0, i32* %14, align 4 - store i32 0, i32* %15, align 4 - br label %16 - -16: ; preds = %103, %6 - %17 = load i32, i32* %13, align 4 - %18 = load i32, i32* %10, align 4 - %19 = icmp slt i32 %17, %18 - br i1 %19, label %20, label %28 - -20: ; preds = %16 - %21 = load i32, i32* %14, align 4 - %22 = load i32, i32* %11, align 4 - %23 = icmp slt i32 %21, %22 - br i1 %23, label %24, label %28 - -24: ; preds = %20 - %25 = load i32, i32* %15, align 4 - %26 = load i32, i32* %12, align 4 - %27 = icmp slt i32 %25, %26 - br label %28 - -28: ; preds = %24, %20, %16 - %29 = phi i1 [ false, %20 ], [ false, %16 ], [ %27, %24 ] - br i1 %29, label %30, label %104 - -30: ; preds = %28 - %31 = load i32*, i32** %7, align 8 - %32 = load i32, i32* %13, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds i32, i32* %31, i64 %33 - %35 = load i32, i32* %34, align 4 - %36 = load i32*, i32** %8, align 8 - %37 = load i32, i32* %14, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i32, i32* %36, i64 %38 - %40 = load i32, i32* %39, align 4 - %41 = icmp eq i32 %35, %40 - br i1 %41, label %42, label %68 - -42: ; preds = %30 - %43 = load i32*, i32** %8, align 8 - %44 = load i32, i32* %14, align 4 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i32, i32* %43, i64 %45 - %47 = load i32, i32* %46, align 4 - %48 = load i32*, i32** %9, align 8 - %49 = load i32, i32* %15, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %48, i64 %50 - %52 = load i32, i32* %51, align 4 - %53 = icmp eq i32 %47, %52 - br i1 %53, label %54, label %68 - -54: ; preds = %42 - %55 = load i32*, i32** %7, align 8 - %56 = load i32, i32* %13, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %55, i64 %57 - %59 = load i32, i32* %58, align 4 - %60 = call 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 - %64 = load i32, i32* %14, align 4 - %65 = add nsw i32 %64, 1 - store i32 %65, i32* %14, align 4 - %66 = load i32, i32* %15, align 4 - %67 = add nsw i32 %66, 1 - store i32 %67, i32* %15, align 4 - br label %103 - -68: ; preds = %42, %30 - %69 = load i32*, i32** %7, align 8 - %70 = load i32, i32* %13, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds i32, i32* %69, i64 %71 - %73 = load i32, i32* %72, align 4 - %74 = load i32*, i32** %8, align 8 - %75 = load i32, i32* %14, align 4 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds i32, i32* %74, i64 %76 - %78 = load i32, i32* %77, align 4 - %79 = icmp slt i32 %73, %78 - br i1 %79, label %80, label %83 - -80: ; preds = %68 - %81 = load i32, i32* %13, align 4 - %82 = add nsw i32 %81, 1 - store i32 %82, i32* %13, align 4 - br label %102 - -83: ; preds = %68 - %84 = load i32*, i32** %8, align 8 - %85 = load i32, i32* %14, align 4 - %86 = sext i32 %85 to i64 - %87 = getelementptr inbounds i32, i32* %84, i64 %86 - %88 = load i32, i32* %87, align 4 - %89 = load i32*, i32** %9, align 8 - %90 = load i32, i32* %15, align 4 - %91 = sext i32 %90 to i64 - %92 = getelementptr inbounds i32, i32* %89, i64 %91 - %93 = load i32, i32* %92, align 4 - %94 = icmp slt i32 %88, %93 - br i1 %94, label %95, label %98 - -95: ; preds = %83 - %96 = load i32, i32* %14, align 4 - %97 = add nsw i32 %96, 1 - store i32 %97, i32* %14, align 4 - br label %101 - -98: ; preds = %83 - %99 = load i32, i32* %15, align 4 - %100 = add nsw i32 %99, 1 - store i32 %100, i32* %15, align 4 - br label %101 - -101: ; preds = %98, %95 - br label %102 - -102: ; preds = %101, %80 - br label %103 - -103: ; preds = %102, %54 - br label %16, !llvm.loop !6 - -104: ; preds = %28 - ret void -} - -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 norecurse uwtable -define dso_local noundef i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca [6 x i32], align 16 - %3 = alloca [5 x i32], align 16 - %4 = alloca [8 x i32], align 16 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %8 = bitcast [6 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %8, i8* align 16 bitcast ([6 x i32]* @__const.main.ar1 to i8*), i64 24, i1 false) - %9 = bitcast [5 x i32]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %9, i8* align 16 bitcast ([5 x i32]* @__const.main.ar2 to i8*), i64 20, i1 false) - %10 = bitcast [8 x i32]* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %10, i8* align 16 bitcast ([8 x i32]* @__const.main.ar3 to i8*), i64 32, i1 false) - store i32 6, i32* %5, align 4 - store i32 5, i32* %6, align 4 - store i32 8, i32* %7, align 4 - %11 = call noundef 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* noundef %12, i32* noundef %13, i32* noundef %14, i32 noundef %15, i32 noundef %16, i32 noundef %17) - ret i32 0 -} - -; 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 = { 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, !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-llvm14/find-k-closest-elements-given-value.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/find-k-closest-elements-given-value.ll deleted file mode 100644 index 307f7e78d..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/find-k-closest-elements-given-value.ll +++ /dev/null @@ -1,335 +0,0 @@ -; ModuleID = 'PE-benchmarks/find-k-closest-elements-given-value.cpp' -source_filename = "PE-benchmarks/find-k-closest-elements-given-value.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [4 x i8] c"%d \00", align 1 -@__const.main.arr = private unnamed_addr constant [13 x i32] [i32 12, i32 16, i32 22, i32 30, i32 35, i32 39, i32 42, i32 45, i32 48, i32 50, i32 53, i32 55, i32 56], align 16 - -; Function Attrs: 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 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32* %0, i32** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - %11 = load i32*, i32** %6, align 8 - %12 = load i32, i32* %8, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - %15 = load i32, i32* %14, align 4 - %16 = load i32, i32* %9, align 4 - %17 = icmp sle i32 %15, %16 - br i1 %17, label %18, label %20 - -18: ; preds = %4 - %19 = load i32, i32* %8, align 4 - store i32 %19, i32* %5, align 4 - br label %75 - -20: ; preds = %4 - %21 = load i32*, i32** %6, align 8 - %22 = load i32, i32* %7, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds i32, i32* %21, i64 %23 - %25 = load i32, i32* %24, align 4 - %26 = load i32, i32* %9, align 4 - %27 = icmp sgt i32 %25, %26 - br i1 %27, label %28, label %30 - -28: ; preds = %20 - %29 = load i32, i32* %7, align 4 - store i32 %29, i32* %5, align 4 - br label %75 - -30: ; preds = %20 - %31 = load i32, i32* %7, align 4 - %32 = load i32, i32* %8, align 4 - %33 = add nsw i32 %31, %32 - %34 = sdiv i32 %33, 2 - store i32 %34, i32* %10, align 4 - %35 = load i32*, i32** %6, align 8 - %36 = load i32, i32* %10, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i32, i32* %35, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = load i32, i32* %9, align 4 - %41 = icmp sle i32 %39, %40 - br i1 %41, label %42, label %53 - -42: ; preds = %30 - %43 = load i32*, i32** %6, align 8 - %44 = load i32, i32* %10, align 4 - %45 = add nsw i32 %44, 1 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds i32, i32* %43, i64 %46 - %48 = load i32, i32* %47, align 4 - %49 = load i32, i32* %9, align 4 - %50 = icmp sgt i32 %48, %49 - br i1 %50, label %51, label %53 - -51: ; preds = %42 - %52 = load i32, i32* %10, align 4 - store i32 %52, i32* %5, align 4 - br label %75 - -53: ; preds = %42, %30 - %54 = load i32*, i32** %6, align 8 - %55 = load i32, i32* %10, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i32, i32* %54, i64 %56 - %58 = load i32, i32* %57, align 4 - %59 = load i32, i32* %9, align 4 - %60 = icmp slt i32 %58, %59 - br i1 %60, label %61, label %68 - -61: ; preds = %53 - %62 = load i32*, i32** %6, align 8 - %63 = load i32, i32* %10, align 4 - %64 = add nsw i32 %63, 1 - %65 = load i32, i32* %8, align 4 - %66 = load i32, i32* %9, align 4 - %67 = call 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 - -68: ; preds = %53 - %69 = load i32*, i32** %6, align 8 - %70 = load i32, i32* %7, align 4 - %71 = load i32, i32* %10, align 4 - %72 = sub nsw i32 %71, 1 - %73 = load i32, i32* %9, align 4 - %74 = call 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 - -75: ; preds = %68, %61, %51, %28, %18 - %76 = load i32, i32* %5, align 4 - ret i32 %76 -} - -; 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 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store i32* %0, i32** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 %3, i32* %8, align 4 - %12 = load i32*, i32** %5, align 8 - %13 = load i32, i32* %8, align 4 - %14 = sub nsw i32 %13, 1 - %15 = load i32, i32* %6, align 4 - %16 = call 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 - store i32 %18, i32* %10, align 4 - store i32 0, i32* %11, align 4 - %19 = load i32*, i32** %5, align 8 - %20 = load i32, i32* %9, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i32, i32* %19, i64 %21 - %23 = load i32, i32* %22, align 4 - %24 = load i32, i32* %6, align 4 - %25 = icmp eq i32 %23, %24 - br i1 %25, label %26, label %29 - -26: ; preds = %4 - %27 = load i32, i32* %9, align 4 - %28 = add nsw i32 %27, -1 - store i32 %28, i32* %9, align 4 - br label %29 - -29: ; preds = %26, %4 - br label %30 - -30: ; preds = %75, %29 - %31 = load i32, i32* %9, align 4 - %32 = icmp sge i32 %31, 0 - br i1 %32, label %33, label %41 - -33: ; preds = %30 - %34 = load i32, i32* %10, align 4 - %35 = load i32, i32* %8, align 4 - %36 = icmp slt i32 %34, %35 - br i1 %36, label %37, label %41 - -37: ; preds = %33 - %38 = load i32, i32* %11, align 4 - %39 = load i32, i32* %7, align 4 - %40 = icmp slt i32 %38, %39 - br label %41 - -41: ; preds = %37, %33, %30 - %42 = phi i1 [ false, %33 ], [ false, %30 ], [ %40, %37 ] - br i1 %42, label %43, label %78 - -43: ; preds = %41 - %44 = load i32, i32* %6, align 4 - %45 = load i32*, i32** %5, align 8 - %46 = load i32, i32* %9, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds i32, i32* %45, i64 %47 - %49 = load i32, i32* %48, align 4 - %50 = sub nsw i32 %44, %49 - %51 = load i32*, i32** %5, align 8 - %52 = load i32, i32* %10, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds i32, i32* %51, i64 %53 - %55 = load i32, i32* %54, align 4 - %56 = load i32, i32* %6, align 4 - %57 = sub nsw i32 %55, %56 - %58 = icmp slt i32 %50, %57 - br i1 %58, label %59, label %67 - -59: ; preds = %43 - %60 = load i32*, i32** %5, align 8 - %61 = load i32, i32* %9, align 4 - %62 = add nsw i32 %61, -1 - store i32 %62, i32* %9, align 4 - %63 = sext i32 %61 to i64 - %64 = getelementptr inbounds i32, i32* %60, i64 %63 - %65 = load i32, i32* %64, align 4 - %66 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 noundef %65) - br label %75 - -67: ; preds = %43 - %68 = load i32*, i32** %5, align 8 - %69 = load i32, i32* %10, align 4 - %70 = add nsw i32 %69, 1 - store i32 %70, i32* %10, align 4 - %71 = sext i32 %69 to i64 - %72 = getelementptr inbounds i32, i32* %68, i64 %71 - %73 = load i32, i32* %72, align 4 - %74 = call i32 (i8*, ...) @printf(i8* 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 !6 - -78: ; preds = %41 - br label %79 - -79: ; preds = %88, %78 - %80 = load i32, i32* %11, align 4 - %81 = load i32, i32* %7, align 4 - %82 = icmp slt i32 %80, %81 - br i1 %82, label %83, label %86 - -83: ; preds = %79 - %84 = load i32, i32* %9, align 4 - %85 = icmp sge i32 %84, 0 - br label %86 - -86: ; preds = %83, %79 - %87 = phi i1 [ false, %79 ], [ %85, %83 ] - br i1 %87, label %88, label %98 - -88: ; preds = %86 - %89 = load i32*, i32** %5, align 8 - %90 = load i32, i32* %9, align 4 - %91 = add nsw i32 %90, -1 - store i32 %91, i32* %9, align 4 - %92 = sext i32 %90 to i64 - %93 = getelementptr inbounds i32, i32* %89, i64 %92 - %94 = load i32, i32* %93, align 4 - %95 = call i32 (i8*, ...) @printf(i8* 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 !8 - -98: ; preds = %86 - br label %99 - -99: ; preds = %109, %98 - %100 = load i32, i32* %11, align 4 - %101 = load i32, i32* %7, align 4 - %102 = icmp slt i32 %100, %101 - br i1 %102, label %103, label %107 - -103: ; preds = %99 - %104 = load i32, i32* %10, align 4 - %105 = load i32, i32* %8, align 4 - %106 = icmp slt i32 %104, %105 - br label %107 - -107: ; preds = %103, %99 - %108 = phi i1 [ false, %99 ], [ %106, %103 ] - br i1 %108, label %109, label %119 - -109: ; preds = %107 - %110 = load i32*, i32** %5, align 8 - %111 = load i32, i32* %10, align 4 - %112 = add nsw i32 %111, 1 - store i32 %112, i32* %10, align 4 - %113 = sext i32 %111 to i64 - %114 = getelementptr inbounds i32, i32* %110, i64 %113 - %115 = load i32, i32* %114, align 4 - %116 = call i32 (i8*, ...) @printf(i8* 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 !9 - -119: ; preds = %107 - 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 [13 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %6 = bitcast [13 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %6, i8* align 16 bitcast ([13 x i32]* @__const.main.arr to i8*), i64 52, i1 false) - store i32 13, i32* %3, align 4 - store i32 35, i32* %4, align 4 - store i32 4, i32* %5, align 4 - %7 = getelementptr inbounds [13 x i32], [13 x i32]* %2, i64 0, i64 0 - %8 = load i32, i32* %4, align 4 - %9 = load i32, i32* %3, align 4 - call void @_Z13printKclosestPiiii(i32* noundef %7, i32 noundef %8, i32 noundef 4, i32 noundef %9) - ret i32 0 -} - -; 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 = { 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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/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 deleted file mode 100644 index 50adfb33a..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll +++ /dev/null @@ -1,403 +0,0 @@ -; ModuleID = 'PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp' -source_filename = "PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt3maxIiERKT_S2_S2_ = comdat any - -@x = dso_local global [8 x i32] [i32 0, i32 1, i32 1, i32 -1, i32 1, i32 0, i32 -1, i32 -1], align 16 -@y = dso_local global [8 x i32] [i32 1, i32 0, i32 1, i32 1, i32 -1, i32 -1, i32 0, i32 -1], align 16 -@dp = dso_local global [3 x [3 x i32]] zeroinitializer, align 16 -@__const.main.mat = private unnamed_addr constant [3 x [3 x i8]] [[3 x i8] c"acd", [3 x i8] c"hba", [3 x i8] c"igf"], align 1 -@_ZSt4cout = external global %"class.std::basic_ostream", align 8 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z7isvalidii(i32 noundef %0, i32 noundef %1) #0 { - %3 = alloca i1, align 1 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32 %0, i32* %4, align 4 - store i32 %1, i32* %5, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp slt i32 %6, 0 - br i1 %7, label %17, label %8 - -8: ; preds = %2 - %9 = load i32, i32* %5, align 4 - %10 = icmp slt i32 %9, 0 - br i1 %10, label %17, label %11 - -11: ; preds = %8 - %12 = load i32, i32* %4, align 4 - %13 = icmp sge i32 %12, 3 - br i1 %13, label %17, label %14 - -14: ; preds = %11 - %15 = load i32, i32* %5, align 4 - %16 = icmp sge i32 %15, 3 - br i1 %16, label %17, label %18 - -17: ; preds = %14, %11, %8, %2 - store i1 false, i1* %3, align 1 - br label %19 - -18: ; preds = %14 - store i1 true, i1* %3, align 1 - br label %19 - -19: ; preds = %18, %17 - %20 = load i1, i1* %3, align 1 - ret i1 %20 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z10isadjacentcc(i8 noundef signext %0, i8 noundef signext %1) #0 { - %3 = alloca i8, align 1 - %4 = alloca i8, align 1 - store i8 %0, i8* %3, align 1 - store i8 %1, i8* %4, align 1 - %5 = load i8, i8* %4, align 1 - %6 = sext i8 %5 to i32 - %7 = load i8, i8* %3, align 1 - %8 = sext i8 %7 to i32 - %9 = sub nsw i32 %6, %8 - %10 = icmp eq i32 %9, 1 - ret i1 %10 -} - -; Function Attrs: 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) #1 { - %5 = alloca i32, align 4 - %6 = alloca [3 x i8]*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i8, align 1 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - store [3 x i8]* %0, [3 x i8]** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i8 %3, i8* %9, align 1 - %13 = load i32, i32* %7, align 4 - %14 = load i32, i32* %8, align 4 - %15 = call noundef zeroext i1 @_Z7isvalidii(i32 noundef %13, i32 noundef %14) - br i1 %15, label %16, label %27 - -16: ; preds = %4 - %17 = load i8, i8* %9, align 1 - %18 = load [3 x i8]*, [3 x i8]** %6, align 8 - %19 = load i32, i32* %7, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [3 x i8], [3 x i8]* %18, i64 %20 - %22 = load i32, i32* %8, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds [3 x i8], [3 x i8]* %21, i64 0, i64 %23 - %25 = load i8, i8* %24, align 1 - %26 = call noundef zeroext i1 @_Z10isadjacentcc(i8 noundef signext %17, i8 noundef signext %25) - br i1 %26, label %28, label %27 - -27: ; preds = %16, %4 - store i32 0, i32* %5, align 4 - br label %86 - -28: ; preds = %16 - %29 = load i32, i32* %7, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* @dp, i64 0, i64 %30 - %32 = load i32, i32* %8, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds [3 x i32], [3 x i32]* %31, i64 0, i64 %33 - %35 = load i32, i32* %34, align 4 - %36 = icmp ne i32 %35, -1 - br i1 %36, label %37, label %45 - -37: ; preds = %28 - %38 = load i32, i32* %7, align 4 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* @dp, i64 0, i64 %39 - %41 = load i32, i32* %8, align 4 - %42 = sext i32 %41 to i64 - %43 = getelementptr inbounds [3 x i32], [3 x i32]* %40, i64 0, i64 %42 - %44 = load i32, i32* %43, align 4 - store i32 %44, i32* %5, align 4 - br label %86 - -45: ; preds = %28 - store i32 0, i32* %10, align 4 - store i32 0, i32* %11, align 4 - br label %46 - -46: ; preds = %75, %45 - %47 = load i32, i32* %11, align 4 - %48 = icmp slt i32 %47, 8 - br i1 %48, label %49, label %78 - -49: ; preds = %46 - %50 = load [3 x i8]*, [3 x i8]** %6, align 8 - %51 = load i32, i32* %7, align 4 - %52 = load i32, i32* %11, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds [8 x i32], [8 x i32]* @x, i64 0, i64 %53 - %55 = load i32, i32* %54, align 4 - %56 = add nsw i32 %51, %55 - %57 = load i32, i32* %8, align 4 - %58 = load i32, i32* %11, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds [8 x i32], [8 x i32]* @y, i64 0, i64 %59 - %61 = load i32, i32* %60, align 4 - %62 = add nsw i32 %57, %61 - %63 = load [3 x i8]*, [3 x i8]** %6, align 8 - %64 = load i32, i32* %7, align 4 - %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds [3 x i8], [3 x i8]* %63, i64 %65 - %67 = load i32, i32* %8, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds [3 x i8], [3 x i8]* %66, i64 0, i64 %68 - %70 = load i8, i8* %69, align 1 - %71 = call 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 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 - -75: ; preds = %49 - %76 = load i32, i32* %11, align 4 - %77 = add nsw i32 %76, 1 - store i32 %77, i32* %11, align 4 - br label %46, !llvm.loop !6 - -78: ; preds = %46 - %79 = load i32, i32* %10, align 4 - %80 = load i32, i32* %7, align 4 - %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* @dp, i64 0, i64 %81 - %83 = load i32, i32* %8, align 4 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds [3 x i32], [3 x i32]* %82, i64 0, i64 %84 - store i32 %79, i32* %85, align 4 - store i32 %79, i32* %5, align 4 - br label %86 - -86: ; preds = %78, %37, %27 - %87 = load i32, i32* %5, align 4 - ret i32 %87 -} - -; Function Attrs: 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) #0 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z6getLenPA3_cc([3 x i8]* noundef %0, i8 noundef signext %1) #1 { - %3 = alloca [3 x i8]*, align 8 - %4 = alloca i8, align 1 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store [3 x i8]* %0, [3 x i8]** %3, align 8 - store i8 %1, i8* %4, align 1 - call void @llvm.memset.p0i8.i64(i8* align 16 bitcast ([3 x [3 x i32]]* @dp to i8*), i8 -1, i64 36, i1 false) - store i32 0, i32* %5, align 4 - store i32 0, i32* %6, align 4 - br label %10 - -10: ; preds = %62, %2 - %11 = load i32, i32* %6, align 4 - %12 = icmp slt i32 %11, 3 - br i1 %12, label %13, label %65 - -13: ; preds = %10 - store i32 0, i32* %7, align 4 - br label %14 - -14: ; preds = %58, %13 - %15 = load i32, i32* %7, align 4 - %16 = icmp slt i32 %15, 3 - br i1 %16, label %17, label %61 - -17: ; preds = %14 - %18 = load [3 x i8]*, [3 x i8]** %3, align 8 - %19 = load i32, i32* %6, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [3 x i8], [3 x i8]* %18, i64 %20 - %22 = load i32, i32* %7, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds [3 x i8], [3 x i8]* %21, i64 0, i64 %23 - %25 = load i8, i8* %24, align 1 - %26 = sext i8 %25 to i32 - %27 = load i8, i8* %4, align 1 - %28 = sext i8 %27 to i32 - %29 = icmp eq i32 %26, %28 - br i1 %29, label %30, label %57 - -30: ; preds = %17 - store i32 0, i32* %8, align 4 - br label %31 - -31: ; preds = %53, %30 - %32 = load i32, i32* %8, align 4 - %33 = icmp slt i32 %32, 8 - br i1 %33, label %34, label %56 - -34: ; preds = %31 - %35 = load [3 x i8]*, [3 x i8]** %3, align 8 - %36 = load i32, i32* %6, align 4 - %37 = load i32, i32* %8, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds [8 x i32], [8 x i32]* @x, i64 0, i64 %38 - %40 = load i32, i32* %39, align 4 - %41 = add nsw i32 %36, %40 - %42 = load i32, i32* %7, align 4 - %43 = load i32, i32* %8, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds [8 x i32], [8 x i32]* @y, i64 0, i64 %44 - %46 = load i32, i32* %45, align 4 - %47 = add nsw i32 %42, %46 - %48 = load i8, i8* %4, align 1 - %49 = call 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 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 - -53: ; preds = %34 - %54 = load i32, i32* %8, align 4 - %55 = add nsw i32 %54, 1 - store i32 %55, i32* %8, align 4 - br label %31, !llvm.loop !8 - -56: ; preds = %31 - br label %57 - -57: ; preds = %56, %17 - br label %58 - -58: ; preds = %57 - %59 = load i32, i32* %7, align 4 - %60 = add nsw i32 %59, 1 - store i32 %60, i32* %7, align 4 - br label %14, !llvm.loop !9 - -61: ; preds = %14 - br label %62 - -62: ; preds = %61 - %63 = load i32, i32* %6, align 4 - %64 = add nsw i32 %63, 1 - store i32 %64, i32* %6, align 4 - br label %10, !llvm.loop !10 - -65: ; preds = %10 - %66 = load i32, i32* %5, align 4 - ret i32 %66 -} - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %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 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 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 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -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) #5 - -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)) #5 - -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 = { 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" } -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" } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/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 deleted file mode 100644 index b64a07d11..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/find-minimum-number-of-coins-that-make-a-change.ll +++ /dev/null @@ -1,220 +0,0 @@ -; ModuleID = 'PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp' -source_filename = "PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@__const.main.coins = private unnamed_addr constant [4 x i32] [i32 9, i32 6, i32 5, i32 1], align 16 -@_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 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z8minCoinsPiii(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 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %13 = load i32, i32* %6, align 4 - %14 = add nsw i32 %13, 1 - %15 = zext i32 %14 to i64 - %16 = call i8* @llvm.stacksave() - store i8* %16, i8** %7, align 8 - %17 = alloca i32, i64 %15, align 16 - store i64 %15, i64* %8, align 8 - %18 = getelementptr inbounds i32, i32* %17, i64 0 - store i32 0, i32* %18, align 16 - store i32 1, i32* %9, align 4 - br label %19 - -19: ; preds = %27, %3 - %20 = load i32, i32* %9, align 4 - %21 = load i32, i32* %6, align 4 - %22 = icmp sle i32 %20, %21 - br i1 %22, label %23, label %30 - -23: ; preds = %19 - %24 = load i32, i32* %9, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %17, i64 %25 - store i32 2147483647, i32* %26, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i32, i32* %9, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %9, align 4 - br label %19, !llvm.loop !6 - -30: ; preds = %19 - store i32 1, i32* %10, align 4 - br label %31 - -31: ; preds = %81, %30 - %32 = load i32, i32* %10, align 4 - %33 = load i32, i32* %6, align 4 - %34 = icmp sle i32 %32, %33 - br i1 %34, label %35, label %84 - -35: ; preds = %31 - store i32 0, i32* %11, align 4 - br label %36 - -36: ; preds = %77, %35 - %37 = load i32, i32* %11, align 4 - %38 = load i32, i32* %5, align 4 - %39 = icmp slt i32 %37, %38 - br i1 %39, label %40, label %80 - -40: ; preds = %36 - %41 = load i32*, i32** %4, align 8 - %42 = load i32, i32* %11, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %41, i64 %43 - %45 = load i32, i32* %44, align 4 - %46 = load i32, i32* %10, align 4 - %47 = icmp sle i32 %45, %46 - br i1 %47, label %48, label %76 - -48: ; preds = %40 - %49 = load i32, i32* %10, align 4 - %50 = load i32*, i32** %4, align 8 - %51 = load i32, i32* %11, align 4 - %52 = sext i32 %51 to i64 - %53 = getelementptr inbounds i32, i32* %50, i64 %52 - %54 = load i32, i32* %53, align 4 - %55 = sub nsw i32 %49, %54 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i32, i32* %17, i64 %56 - %58 = load i32, i32* %57, align 4 - store i32 %58, i32* %12, align 4 - %59 = load i32, i32* %12, align 4 - %60 = icmp ne i32 %59, 2147483647 - br i1 %60, label %61, label %75 - -61: ; preds = %48 - %62 = load i32, i32* %12, align 4 - %63 = add nsw i32 %62, 1 - %64 = load i32, i32* %10, align 4 - %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds i32, i32* %17, i64 %65 - %67 = load i32, i32* %66, align 4 - %68 = icmp slt i32 %63, %67 - br i1 %68, label %69, label %75 - -69: ; preds = %61 - %70 = load i32, i32* %12, align 4 - %71 = add nsw i32 %70, 1 - %72 = load i32, i32* %10, align 4 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds i32, i32* %17, i64 %73 - store i32 %71, i32* %74, align 4 - br label %75 - -75: ; preds = %69, %61, %48 - br label %76 - -76: ; preds = %75, %40 - br label %77 - -77: ; preds = %76 - %78 = load i32, i32* %11, align 4 - %79 = add nsw i32 %78, 1 - store i32 %79, i32* %11, align 4 - br label %36, !llvm.loop !8 - -80: ; preds = %36 - br label %81 - -81: ; preds = %80 - %82 = load i32, i32* %10, align 4 - %83 = add nsw i32 %82, 1 - store i32 %83, i32* %10, align 4 - br label %31, !llvm.loop !9 - -84: ; preds = %31 - %85 = load i32, i32* %6, align 4 - %86 = sext i32 %85 to i64 - %87 = getelementptr inbounds i32, i32* %17, i64 %86 - %88 = load i32, i32* %87, align 4 - %89 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %89) - ret i32 %88 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca [4 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [4 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([4 x i32]* @__const.main.coins to i8*), i64 16, i1 false) - store i32 4, i32* %3, align 4 - store i32 11, i32* %4, align 4 - %6 = call noundef 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 - -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) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 - -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 = { 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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/find-parity.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/find-parity.ll deleted file mode 100644 index 1b65c864c..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/find-parity.ll +++ /dev/null @@ -1,101 +0,0 @@ -; ModuleID = 'PE-benchmarks/find-parity.cpp' -source_filename = "PE-benchmarks/find-parity.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 -@.str.3 = private unnamed_addr constant [5 x i8] c"even\00", align 1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z9getParityj(i32 noundef %0) #0 { - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - store i32 0, i32* %3, align 4 - br label %4 - -4: ; preds = %7, %1 - %5 = load i32, i32* %2, align 4 - %6 = icmp ne i32 %5, 0 - br i1 %6, label %7, label %16 - -7: ; preds = %4 - %8 = load i32, i32* %3, align 4 - %9 = icmp ne i32 %8, 0 - %10 = xor i1 %9, true - %11 = zext i1 %10 to i32 - store i32 %11, i32* %3, align 4 - %12 = load i32, i32* %2, align 4 - %13 = load i32, i32* %2, align 4 - %14 = sub i32 %13, 1 - %15 = and i32 %12, %14 - store i32 %15, i32* %2, align 4 - br label %4, !llvm.loop !6 - -16: ; preds = %4 - %17 = load i32, i32* %3, align 4 - ret i32 %17 -} - -; 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 7, i32* %2, align 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 ([14 x i8], [14 x i8]* @.str, i64 0, i64 0)) - %4 = load i32, i32* %2, align 4 - %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 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 noundef 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 noundef 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) #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEj(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -declare i32 @getchar() #2 - -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, !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-llvm14/find-two-non-repeating-element.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/find-two-non-repeating-element.ll deleted file mode 100644 index 2e0d2c353..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/find-two-non-repeating-element.ll +++ /dev/null @@ -1,198 +0,0 @@ -; ModuleID = 'PE-benchmarks/find-two-non-repeating-element.cpp' -source_filename = "PE-benchmarks/find-two-non-repeating-element.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@__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 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 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z19get2NonRepeatingNosPiiS_S_(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 8 - %8 = alloca i32*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store i32* %0, i32** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32* %2, i32** %7, align 8 - store i32* %3, i32** %8, align 8 - %12 = load i32*, i32** %5, align 8 - %13 = getelementptr inbounds i32, i32* %12, i64 0 - %14 = load i32, i32* %13, align 4 - store i32 %14, i32* %9, align 4 - %15 = load i32*, i32** %7, align 8 - store i32 0, i32* %15, align 4 - %16 = load i32*, i32** %8, align 8 - store i32 0, i32* %16, align 4 - store i32 1, i32* %11, align 4 - br label %17 - -17: ; preds = %29, %4 - %18 = load i32, i32* %11, align 4 - %19 = load i32, i32* %6, align 4 - %20 = icmp slt i32 %18, %19 - br i1 %20, label %21, label %32 - -21: ; preds = %17 - %22 = load i32*, i32** %5, align 8 - %23 = load i32, i32* %11, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds i32, i32* %22, i64 %24 - %26 = load i32, i32* %25, align 4 - %27 = load i32, i32* %9, align 4 - %28 = xor i32 %27, %26 - store i32 %28, i32* %9, align 4 - br label %29 - -29: ; preds = %21 - %30 = load i32, i32* %11, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %11, align 4 - br label %17, !llvm.loop !6 - -32: ; preds = %17 - %33 = load i32, i32* %9, align 4 - %34 = load i32, i32* %9, align 4 - %35 = sub nsw i32 %34, 1 - %36 = xor i32 %35, -1 - %37 = and i32 %33, %36 - store i32 %37, i32* %10, align 4 - store i32 0, i32* %11, align 4 - br label %38 - -38: ; preds = %72, %32 - %39 = load i32, i32* %11, align 4 - %40 = load i32, i32* %6, align 4 - %41 = icmp slt i32 %39, %40 - br i1 %41, label %42, label %75 - -42: ; preds = %38 - %43 = load i32*, i32** %5, align 8 - %44 = load i32, i32* %11, align 4 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i32, i32* %43, i64 %45 - %47 = load i32, i32* %46, align 4 - %48 = load i32, i32* %10, align 4 - %49 = and i32 %47, %48 - %50 = icmp ne i32 %49, 0 - br i1 %50, label %51, label %61 - -51: ; preds = %42 - %52 = load i32*, i32** %7, align 8 - %53 = load i32, i32* %52, align 4 - %54 = load i32*, i32** %5, align 8 - %55 = load i32, i32* %11, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i32, i32* %54, i64 %56 - %58 = load i32, i32* %57, align 4 - %59 = xor i32 %53, %58 - %60 = load i32*, i32** %7, align 8 - store i32 %59, i32* %60, align 4 - br label %71 - -61: ; preds = %42 - %62 = load i32*, i32** %8, align 8 - %63 = load i32, i32* %62, align 4 - %64 = load i32*, i32** %5, align 8 - %65 = load i32, i32* %11, align 4 - %66 = sext i32 %65 to i64 - %67 = getelementptr inbounds i32, i32* %64, i64 %66 - %68 = load i32, i32* %67, align 4 - %69 = xor i32 %63, %68 - %70 = load i32*, i32** %8, align 8 - store i32 %69, i32* %70, align 4 - br label %71 - -71: ; preds = %61, %51 - br label %72 - -72: ; preds = %71 - %73 = load i32, i32* %11, align 4 - %74 = add nsw i32 %73, 1 - store i32 %74, i32* %11, align 4 - br label %38, !llvm.loop !8 - -75: ; preds = %38 - ret void -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #1 { - %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 noundef nonnull i8* @_Znam(i64 noundef 16) #5 - %6 = bitcast i8* %5 to i32* - store i32* %6, i32** %2, align 8 - %7 = call noalias noundef nonnull i8* @_Znam(i64 noundef 16) #5 - %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* 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 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #2 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #3 - -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) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 - -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 = { 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 = { "frame-pointer"="all" "no-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, !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"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/floyd-warshall.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/floyd-warshall.ll deleted file mode 100644 index 3f41c7e98..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/floyd-warshall.ll +++ /dev/null @@ -1,320 +0,0 @@ -; ModuleID = 'PE-benchmarks/floyd-warshall.cpp' -source_filename = "PE-benchmarks/floyd-warshall.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 -@__const.main.graph = private unnamed_addr constant [4 x [4 x i32]] [[4 x i32] [i32 0, i32 5, i32 99999, i32 10], [4 x i32] [i32 99999, i32 0, i32 3, i32 99999], [4 x i32] [i32 99999, i32 99999, i32 0, i32 1], [4 x i32] [i32 99999, i32 99999, i32 99999, i32 0]], align 16 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z13floydWarshallPA4_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 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %2, align 8 - store i32 0, i32* %4, align 4 - br label %7 - -7: ; preds = %33, %1 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %8, 4 - br i1 %9, label %10, label %36 - -10: ; preds = %7 - store i32 0, i32* %5, align 4 - br label %11 - -11: ; preds = %29, %10 - %12 = load i32, i32* %5, align 4 - %13 = icmp slt i32 %12, 4 - br i1 %13, label %14, label %32 - -14: ; preds = %11 - %15 = load [4 x i32]*, [4 x i32]** %2, align 8 - %16 = load i32, i32* %4, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds [4 x i32], [4 x i32]* %15, i64 %17 - %19 = load i32, i32* %5, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [4 x i32], [4 x i32]* %18, i64 0, i64 %20 - %22 = load i32, i32* %21, align 4 - %23 = load i32, i32* %4, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %24 - %26 = load i32, i32* %5, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds [4 x i32], [4 x i32]* %25, i64 0, i64 %27 - store i32 %22, i32* %28, align 4 - br label %29 - -29: ; preds = %14 - %30 = load i32, i32* %5, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %5, align 4 - br label %11, !llvm.loop !6 - -32: ; preds = %11 - br label %33 - -33: ; preds = %32 - %34 = load i32, i32* %4, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %4, align 4 - br label %7, !llvm.loop !8 - -36: ; preds = %7 - store i32 0, i32* %6, align 4 - br label %37 - -37: ; preds = %103, %36 - %38 = load i32, i32* %6, align 4 - %39 = icmp slt i32 %38, 4 - br i1 %39, label %40, label %106 - -40: ; preds = %37 - store i32 0, i32* %4, align 4 - br label %41 - -41: ; preds = %99, %40 - %42 = load i32, i32* %4, align 4 - %43 = icmp slt i32 %42, 4 - br i1 %43, label %44, label %102 - -44: ; preds = %41 - store i32 0, i32* %5, align 4 - br label %45 - -45: ; preds = %95, %44 - %46 = load i32, i32* %5, align 4 - %47 = icmp slt i32 %46, 4 - br i1 %47, label %48, label %98 - -48: ; preds = %45 - %49 = load i32, i32* %4, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %50 - %52 = load i32, i32* %6, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds [4 x i32], [4 x i32]* %51, i64 0, i64 %53 - %55 = load i32, i32* %54, align 4 - %56 = load i32, i32* %6, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %57 - %59 = load i32, i32* %5, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds [4 x i32], [4 x i32]* %58, i64 0, i64 %60 - %62 = load i32, i32* %61, align 4 - %63 = add nsw i32 %55, %62 - %64 = load i32, i32* %4, align 4 - %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %65 - %67 = load i32, i32* %5, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds [4 x i32], [4 x i32]* %66, i64 0, i64 %68 - %70 = load i32, i32* %69, align 4 - %71 = icmp slt i32 %63, %70 - br i1 %71, label %72, label %94 - -72: ; preds = %48 - %73 = load i32, i32* %4, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %74 - %76 = load i32, i32* %6, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds [4 x i32], [4 x i32]* %75, i64 0, i64 %77 - %79 = load i32, i32* %78, align 4 - %80 = load i32, i32* %6, align 4 - %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %81 - %83 = load i32, i32* %5, align 4 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds [4 x i32], [4 x i32]* %82, i64 0, i64 %84 - %86 = load i32, i32* %85, align 4 - %87 = add nsw i32 %79, %86 - %88 = load i32, i32* %4, align 4 - %89 = sext i32 %88 to i64 - %90 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %89 - %91 = load i32, i32* %5, align 4 - %92 = sext i32 %91 to i64 - %93 = getelementptr inbounds [4 x i32], [4 x i32]* %90, i64 0, i64 %92 - store i32 %87, i32* %93, align 4 - br label %94 - -94: ; preds = %72, %48 - br label %95 - -95: ; preds = %94 - %96 = load i32, i32* %5, align 4 - %97 = add nsw i32 %96, 1 - store i32 %97, i32* %5, align 4 - br label %45, !llvm.loop !9 - -98: ; preds = %45 - br label %99 - -99: ; preds = %98 - %100 = load i32, i32* %4, align 4 - %101 = add nsw i32 %100, 1 - store i32 %101, i32* %4, align 4 - br label %41, !llvm.loop !10 - -102: ; preds = %41 - br label %103 - -103: ; preds = %102 - %104 = load i32, i32* %6, align 4 - %105 = add nsw i32 %104, 1 - store i32 %105, i32* %6, align 4 - br label %37, !llvm.loop !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]* noundef %107) - ret void -} - -; 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 noundef 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 - -6: ; preds = %43, %1 - %7 = load i32, i32* %3, align 4 - %8 = icmp slt i32 %7, 4 - br i1 %8, label %9, label %46 - -9: ; preds = %6 - store i32 0, i32* %4, align 4 - br label %10 - -10: ; preds = %38, %9 - %11 = load i32, i32* %4, align 4 - %12 = icmp slt i32 %11, 4 - br i1 %12, label %13, label %41 - -13: ; preds = %10 - %14 = load [4 x i32]*, [4 x i32]** %2, align 8 - %15 = load i32, i32* %3, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds [4 x i32], [4 x i32]* %14, i64 %16 - %18 = load i32, i32* %4, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds [4 x i32], [4 x i32]* %17, i64 0, i64 %19 - %21 = load i32, i32* %20, align 4 - %22 = icmp eq i32 %21, 99999 - br i1 %22, label %23, label %26 - -23: ; preds = %13 - %24 = call noundef 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 - %27 = load [4 x i32]*, [4 x i32]** %2, align 8 - %28 = load i32, i32* %3, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds [4 x i32], [4 x i32]* %27, i64 %29 - %31 = load i32, i32* %4, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds [4 x i32], [4 x i32]* %30, i64 0, i64 %32 - %34 = load i32, i32* %33, align 4 - %35 = call 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 - br label %38 - -38: ; preds = %37 - %39 = load i32, i32* %4, align 4 - %40 = add nsw i32 %39, 1 - store i32 %40, i32* %4, align 4 - br label %10, !llvm.loop !12 - -41: ; preds = %10 - %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 !13 - -46: ; preds = %6 - ret void -} - -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 - -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 - -; 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 @_Z13floydWarshallPA4_i([4 x i32]* noundef %4) - ret i32 0 -} - -; 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 = { 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, !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"} -!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-llvm14/graph-coloring.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/graph-coloring.ll deleted file mode 100644 index 4681bea6d..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/graph-coloring.ll +++ /dev/null @@ -1,1330 +0,0 @@ -; ModuleID = 'PE-benchmarks/graph-coloring.cpp' -source_filename = "PE-benchmarks/graph-coloring.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZN5GraphC2Ei = comdat any - -$_ZN5GraphD2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_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 -@.str.3 = private unnamed_addr constant [23 x i8] c"\0AColoring of graph 2 \0A\00", align 1 - -; 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) #0 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* 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"* noundef nonnull align 8 dereferenceable(24) %17, i32* noundef nonnull align 4 dereferenceable(4) %5) - ret void -} - -; 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) #0 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"* noundef nonnull align 8 dereferenceable(24) %6) #14 - %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"* 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: mustprogress noinline uwtable -define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #0 align 2 { - %2 = alloca %class.Graph*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i32, align 4 - %6 = alloca i64, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca %"struct.std::_List_iterator", align 8 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - %12 = alloca i32, align 4 - %13 = alloca %"struct.std::_List_iterator", align 8 - %14 = alloca %"struct.std::_List_iterator", align 8 - %15 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %2, align 8 - %16 = load %class.Graph*, %class.Graph** %2, align 8 - %17 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %18 = load i32, i32* %17, align 8 - %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %3, align 8 - %21 = alloca i32, i64 %19, align 16 - store i64 %19, i64* %4, align 8 - %22 = getelementptr inbounds i32, i32* %21, i64 0 - store i32 0, i32* %22, align 16 - store i32 1, i32* %5, align 4 - br label %23 - -23: ; preds = %32, %1 - %24 = load i32, i32* %5, align 4 - %25 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %26 = load i32, i32* %25, align 8 - %27 = icmp slt i32 %24, %26 - br i1 %27, label %28, label %35 - -28: ; preds = %23 - %29 = load i32, i32* %5, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i32, i32* %21, i64 %30 - store i32 -1, i32* %31, align 4 - br label %32 - -32: ; preds = %28 - %33 = load i32, i32* %5, align 4 - %34 = add nsw i32 %33, 1 - store i32 %34, i32* %5, align 4 - br label %23, !llvm.loop !6 - -35: ; preds = %23 - %36 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %37 = load i32, i32* %36, align 8 - %38 = zext i32 %37 to i64 - %39 = alloca i8, i64 %38, align 16 - store i64 %38, i64* %6, align 8 - store i32 0, i32* %7, align 4 - br label %40 - -40: ; preds = %49, %35 - %41 = load i32, i32* %7, align 4 - %42 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %43 = load i32, i32* %42, align 8 - %44 = icmp slt i32 %41, %43 - br i1 %44, label %45, label %52 - -45: ; preds = %40 - %46 = load i32, i32* %7, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds i8, i8* %39, i64 %47 - store i8 0, i8* %48, align 1 - br label %49 - -49: ; preds = %45 - %50 = load i32, i32* %7, align 4 - %51 = add nsw i32 %50, 1 - store i32 %51, i32* %7, align 4 - br label %40, !llvm.loop !8 - -52: ; preds = %40 - store i32 1, i32* %8, align 4 - br label %53 - -53: ; preds = %156, %52 - %54 = load i32, i32* %8, align 4 - %55 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %56 = load i32, i32* %55, align 8 - %57 = icmp slt i32 %54, %56 - br i1 %57, label %58, label %159 - -58: ; preds = %53 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %63) #14 - %65 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %10, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %64, %"struct.std::__detail::_List_node_base"** %65, align 8 - %66 = bitcast %"struct.std::_List_iterator"* %9 to i8* - %67 = bitcast %"struct.std::_List_iterator"* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %66, i8* align 8 %67, i64 8, i1 false) - br label %68 - -68: ; preds = %93, %58 - %69 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 1 - %70 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %69, align 8 - %71 = load i32, i32* %8, align 4 - %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %70, i64 %72 - %74 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %73) #14 - %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 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) #14 - br i1 %76, label %77, label %95 - -77: ; preds = %68 - %78 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #14 - %79 = load i32, i32* %78, align 4 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds i32, i32* %21, i64 %80 - %82 = load i32, i32* %81, align 4 - %83 = icmp ne i32 %82, -1 - br i1 %83, label %84, label %92 - -84: ; preds = %77 - %85 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #14 - %86 = load i32, i32* %85, align 4 - %87 = sext i32 %86 to i64 - %88 = getelementptr inbounds i32, i32* %21, i64 %87 - %89 = load i32, i32* %88, align 4 - %90 = sext i32 %89 to i64 - %91 = getelementptr inbounds i8, i8* %39, i64 %90 - store i8 1, i8* %91, align 1 - br label %92 - -92: ; preds = %84, %77 - br label %93 - -93: ; preds = %92 - %94 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #14 - br label %68, !llvm.loop !9 - -95: ; preds = %68 - store i32 0, i32* %12, align 4 - br label %96 - -96: ; preds = %111, %95 - %97 = load i32, i32* %12, align 4 - %98 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %99 = load i32, i32* %98, align 8 - %100 = icmp slt i32 %97, %99 - br i1 %100, label %101, label %114 - -101: ; preds = %96 - %102 = load i32, i32* %12, align 4 - %103 = sext i32 %102 to i64 - %104 = getelementptr inbounds i8, i8* %39, i64 %103 - %105 = load i8, i8* %104, align 1 - %106 = trunc i8 %105 to i1 - %107 = zext i1 %106 to i32 - %108 = icmp eq i32 %107, 0 - br i1 %108, label %109, label %110 - -109: ; preds = %101 - br label %114 - -110: ; preds = %101 - br label %111 - -111: ; preds = %110 - %112 = load i32, i32* %12, align 4 - %113 = add nsw i32 %112, 1 - store i32 %113, i32* %12, align 4 - br label %96, !llvm.loop !10 - -114: ; preds = %109, %96 - %115 = load i32, i32* %12, align 4 - %116 = load i32, i32* %8, align 4 - %117 = sext i32 %116 to i64 - %118 = getelementptr inbounds i32, i32* %21, i64 %117 - store i32 %115, i32* %118, align 4 - %119 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 1 - %120 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %119, align 8 - %121 = load i32, i32* %8, align 4 - %122 = sext i32 %121 to i64 - %123 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %120, i64 %122 - %124 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %123) #14 - %125 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %13, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %124, %"struct.std::__detail::_List_node_base"** %125, align 8 - %126 = bitcast %"struct.std::_List_iterator"* %9 to i8* - %127 = bitcast %"struct.std::_List_iterator"* %13 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %126, i8* align 8 %127, i64 8, i1 false) - br label %128 - -128: ; preds = %153, %114 - %129 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 1 - %130 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %129, align 8 - %131 = load i32, i32* %8, align 4 - %132 = sext i32 %131 to i64 - %133 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %130, i64 %132 - %134 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %133) #14 - %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 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) #14 - br i1 %136, label %137, label %155 - -137: ; preds = %128 - %138 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #14 - %139 = load i32, i32* %138, align 4 - %140 = sext i32 %139 to i64 - %141 = getelementptr inbounds i32, i32* %21, i64 %140 - %142 = load i32, i32* %141, align 4 - %143 = icmp ne i32 %142, -1 - br i1 %143, label %144, label %152 - -144: ; preds = %137 - %145 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #14 - %146 = load i32, i32* %145, align 4 - %147 = sext i32 %146 to i64 - %148 = getelementptr inbounds i32, i32* %21, i64 %147 - %149 = load i32, i32* %148, align 4 - %150 = sext i32 %149 to i64 - %151 = getelementptr inbounds i8, i8* %39, i64 %150 - store i8 0, i8* %151, align 1 - br label %152 - -152: ; preds = %144, %137 - br label %153 - -153: ; preds = %152 - %154 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #14 - br label %128, !llvm.loop !11 - -155: ; preds = %128 - br label %156 - -156: ; preds = %155 - %157 = load i32, i32* %8, align 4 - %158 = add nsw i32 %157, 1 - store i32 %158, i32* %8, align 4 - br label %53, !llvm.loop !12 - -159: ; preds = %53 - store i32 0, i32* %15, align 4 - br label %160 - -160: ; preds = %176, %159 - %161 = load i32, i32* %15, align 4 - %162 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %163 = load i32, i32* %162, align 8 - %164 = icmp slt i32 %161, %163 - br i1 %164, label %165, label %179 - -165: ; preds = %160 - %166 = call noundef 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 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 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 !13 - -179: ; preds = %160 - %180 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %180) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #2 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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) #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #14 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -; 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) #3 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #14 - %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: 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) #3 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 noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) - ret i32* %7 -} - -; 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) #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -declare noundef 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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -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) #5 - -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)) #5 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; 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.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* 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* 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* 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* 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* 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* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4) - to label %11 unwind label %26 - -11: ; preds = %10 - %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* noundef nonnull align 8 dereferenceable(16) %2) - to label %14 unwind label %26 - -14: ; preds = %13 - 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* 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* 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* 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* 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* 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* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 4, i32 noundef 3) - to label %21 unwind label %30 - -21: ; preds = %20 - %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* 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* noundef nonnull align 8 dereferenceable(16) %5) #14 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) #14 - %25 = load i32, i32* %1, align 4 - ret i32 %25 - -26: ; preds = %14, %13, %11, %10, %9, %8, %7, %6, %0 - %27 = landingpad { i8*, i32 } - cleanup - %28 = extractvalue { i8*, i32 } %27, 0 - store i8* %28, i8** %3, align 8 - %29 = extractvalue { i8*, i32 } %27, 1 - store i32 %29, i32* %4, align 4 - br label %34 - -30: ; preds = %23, %21, %20, %19, %18, %17, %16, %15 - %31 = landingpad { i8*, i32 } - cleanup - %32 = extractvalue { i8*, i32 } %31, 0 - store i8* %32, i8** %3, align 8 - %33 = extractvalue { i8*, i32 } %31, 1 - store i32 %33, i32* %4, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5) #14 - br label %34 - -34: ; preds = %30, %26 - call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) #14 - br label %35 - -35: ; preds = %34 - %36 = load i8*, i8** %3, align 8 - %37 = load i32, i32* %4, align 4 - %38 = insertvalue { i8*, i32 } undef, i8* %36, 0 - %39 = insertvalue { i8*, i32 } %38, i32 %37, 1 - resume { i8*, i32 } %39 -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #7 comdat align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias 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 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %26) #14 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -declare i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #2 comdat align 2 { - %2 = alloca %class.Graph*, align 8 - store %class.Graph* %0, %class.Graph** %2, align 8 - %3 = load %class.Graph*, %class.Graph** %2, align 8 - %4 = getelementptr inbounds %class.Graph, %class.Graph* %3, i32 0, i32 1 - %5 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %4, align 8 - %6 = icmp eq %"class.std::__cxx11::list"* %5, null - br i1 %6, label %19, label %7 - -7: ; preds = %1 - %8 = bitcast %"class.std::__cxx11::list"* %5 to i8* - %9 = getelementptr inbounds i8, i8* %8, i64 -8 - %10 = bitcast i8* %9 to i64* - %11 = load i64, i64* %10, align 8 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %5, i64 %11 - %13 = icmp eq %"class.std::__cxx11::list"* %5, %12 - br i1 %13, label %18, label %14 - -14: ; preds = %14, %7 - %15 = phi %"class.std::__cxx11::list"* [ %12, %7 ], [ %16, %14 ] - %16 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %15, i64 -1 - call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %16) #14 - %17 = icmp eq %"class.std::__cxx11::list"* %16, %5 - br i1 %17, label %18, label %14 - -18: ; preds = %14, %7 - call void @_ZdaPv(i8* noundef %9) #16 - br label %19 - -19: ; preds = %18, %1 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #8 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #8 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #9 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #2 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #2 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #2 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #2 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"* noundef nonnull align 8 dereferenceable(24) %3) #14 - ret void -} - -; 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) #3 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #2 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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdaPv(i8* noundef) #10 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #2 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"* noundef nonnull align 8 dereferenceable(24) %3) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %4) #14 - ret void -} - -; 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) #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %7 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - %8 = alloca %"struct.std::_List_node"*, align 8 - %9 = alloca i32*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %6, align 8 - %10 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %6, align 8 - %11 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %10, i32 0, i32 0 - %12 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %11, i32 0, i32 0 - %13 = bitcast %"struct.std::__detail::_List_node_header"* %12 to %"struct.std::__detail::_List_node_base"* - %14 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %13, i32 0, i32 0 - %15 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %14, align 8 - store %"struct.std::__detail::_List_node_base"* %15, %"struct.std::__detail::_List_node_base"** %7, align 8 - br label %16 - -16: ; preds = %31, %1 - %17 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %7, align 8 - %18 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %10, i32 0, i32 0 - %19 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::__detail::_List_node_header"* %19 to %"struct.std::__detail::_List_node_base"* - %21 = icmp ne %"struct.std::__detail::_List_node_base"* %17, %20 - br i1 %21, label %22, label %40 - -22: ; preds = %16 - %23 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %7, align 8 - %24 = bitcast %"struct.std::__detail::_List_node_base"* %23 to %"struct.std::_List_node"* - store %"struct.std::_List_node"* %24, %"struct.std::_List_node"** %8, align 8 - %25 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - %26 = bitcast %"struct.std::_List_node"* %25 to %"struct.std::__detail::_List_node_base"* - %27 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %26, i32 0, i32 0 - %28 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %27, align 8 - store %"struct.std::__detail::_List_node_base"* %28, %"struct.std::__detail::_List_node_base"** %7, align 8 - %29 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - %30 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %29) - to label %31 unwind label %41 - -31: ; preds = %22 - store i32* %30, i32** %9, align 8 - %32 = 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) %10) #14 - %33 = load i32*, i32** %9, align 8 - store %"class.std::allocator"* %32, %"class.std::allocator"** %4, align 8 - store i32* %33, i32** %5, align 8 - %34 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %35 = bitcast %"class.std::allocator"* %34 to %"class.std::__new_allocator"* - %36 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator"* %35, %"class.std::__new_allocator"** %2, align 8 - store i32* %36, i32** %3, align 8 - %37 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %38 = load i32*, i32** %3, align 8 - %39 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %10, %"struct.std::_List_node"* noundef %39) #14 - br label %16, !llvm.loop !14 - -40: ; preds = %16 - ret void - -41: ; preds = %22 - %42 = landingpad { i8*, i32 } - catch i8* null - %43 = extractvalue { i8*, i32 } %42, 0 - call void @__clang_call_terminate(i8* %43) #17 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #2 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = 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"** %3, align 8 - %4 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %3, align 8 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - store %"class.std::allocator"* %5, %"class.std::allocator"** %2, align 8 - %6 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %7 = bitcast %"class.std::allocator"* %6 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #14 - ret void -} - -; 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) #3 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #14 - ret i32* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #14 - call void @_ZSt9terminatev() #17 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; 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) #3 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: 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) #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %6, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %7, align 8 - %8 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %6, align 8 - %9 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %9 to %"class.std::allocator"* - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - store %"class.std::allocator"* %10, %"class.std::allocator"** %3, align 8 - store %"struct.std::_List_node"* %11, %"struct.std::_List_node"** %4, align 8 - store i64 1, i64* %5, align 8 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %13 = bitcast %"class.std::allocator"* %12 to %"class.std::__new_allocator"* - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %15 = load i64, i64* %5, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* noundef %14, i64 noundef %15) - br label %16 - -16: ; preds = %2 - ret void - -17: ; No predecessors! - %18 = landingpad { i8*, i32 } - catch i8* null - %19 = extractvalue { i8*, i32 } %18, 0 - call void @__clang_call_terminate(i8* %19) #17 - unreachable -} - -; 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) #3 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #14 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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) #3 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %2) #3 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #16 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #10 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #2 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -; 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) #0 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #14 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #14 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %14 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %15 = bitcast %"class.std::__cxx11::list"* %14 to %"class.std::__cxx11::_List_base"* - %16 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %15) - store %"struct.std::_List_node"* %16, %"struct.std::_List_node"** %11, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %14 to %"class.std::__cxx11::_List_base"* - %18 = 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) %17) #14 - store %"class.std::allocator"* %18, %"class.std::allocator"** %12, align 8 - %19 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %20 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %19, %"struct.std::_List_node"* noundef %20) #14 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %23 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %22) - %24 = load i32*, i32** %10, align 8 - %25 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %24) #14 - store %"class.std::allocator"* %21, %"class.std::allocator"** %6, align 8 - store i32* %23, i32** %7, align 8 - store i32* %25, i32** %8, align 8 - %26 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %27 = bitcast %"class.std::allocator"* %26 to %"class.std::__new_allocator"* - %28 = load i32*, i32** %7, align 8 - %29 = load i32*, i32** %8, align 8 - %30 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %29) #14 - store %"class.std::__new_allocator"* %27, %"class.std::__new_allocator"** %3, align 8 - store i32* %28, i32** %4, align 8 - store i32* %30, i32** %5, align 8 - %31 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %32 = load i32*, i32** %4, align 8 - %33 = bitcast i32* %32 to i8* - %34 = load i32*, i32** %5, align 8 - %35 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %34) #14 - %36 = load i32, i32* %35, align 4 - store i32 %36, i32* %32, align 4 - %37 = 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) %13, i8* null) #14 - %38 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #14 - ret %"struct.std::_List_node"* %38 -} - -; 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) #3 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare 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) #12 - -; 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) #3 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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) #0 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; Function Attrs: noinline nounwind uwtable -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 #2 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #14 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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) #3 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #2 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #17 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #0 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #18 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #15 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -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 noundef nonnull i8* @_Znwm(i64 noundef) #9 - -; 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) #3 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 -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 #2 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -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 willreturn } -attributes #2 = { 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 = { 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 #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 = { 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 = { 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 readnone speculatable willreturn } -attributes #9 = { 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 #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 = { noinline noreturn nounwind } -attributes #12 = { 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 = { nounwind } -attributes #15 = { builtin allocsize(0) } -attributes #16 = { builtin nounwind } -attributes #17 = { noreturn nounwind } -attributes #18 = { noreturn } - -!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"} -!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-llvm14/hamiltonian-cycle-backtracking.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/hamiltonian-cycle-backtracking.ll deleted file mode 100644 index 77e61f228..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/hamiltonian-cycle-backtracking.ll +++ /dev/null @@ -1,364 +0,0 @@ -; ModuleID = 'PE-benchmarks/hamiltonian-cycle-backtracking.cpp' -source_filename = "PE-benchmarks/hamiltonian-cycle-backtracking.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 -@__const.main.graph1 = private unnamed_addr constant [5 x [5 x i8]] [[5 x i8] c"\00\01\00\01\00", [5 x i8] c"\01\00\01\01\01", [5 x i8] c"\00\01\00\00\01", [5 x i8] c"\01\01\00\00\01", [5 x i8] c"\00\01\01\01\00"], align 16 -@__const.main.graph2 = private unnamed_addr constant [5 x [5 x i8]] [[5 x i8] c"\00\01\00\01\00", [5 x i8] c"\01\00\01\01\01", [5 x i8] c"\00\01\00\00\01", [5 x i8] c"\01\01\00\00\00", [5 x i8] c"\00\01\01\00\00"], align 16 - -; 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) #0 { - %5 = alloca i1, align 1 - %6 = alloca i32, align 4 - %7 = alloca [5 x i8]*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32 %0, i32* %6, align 4 - store [5 x i8]* %1, [5 x i8]** %7, align 8 - store i32* %2, i32** %8, align 8 - store i32 %3, i32* %9, align 4 - %11 = load [5 x i8]*, [5 x i8]** %7, align 8 - %12 = load i32*, i32** %8, align 8 - %13 = load i32, i32* %9, align 4 - %14 = sub nsw i32 %13, 1 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds i32, i32* %12, i64 %15 - %17 = load i32, i32* %16, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [5 x i8], [5 x i8]* %11, i64 %18 - %20 = load i32, i32* %6, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds [5 x i8], [5 x i8]* %19, i64 0, i64 %21 - %23 = load i8, i8* %22, align 1 - %24 = trunc i8 %23 to i1 - %25 = zext i1 %24 to i32 - %26 = icmp eq i32 %25, 0 - br i1 %26, label %27, label %28 - -27: ; preds = %4 - store i1 false, i1* %5, align 1 - br label %47 - -28: ; preds = %4 - store i32 0, i32* %10, align 4 - br label %29 - -29: ; preds = %43, %28 - %30 = load i32, i32* %10, align 4 - %31 = load i32, i32* %9, align 4 - %32 = icmp slt i32 %30, %31 - br i1 %32, label %33, label %46 - -33: ; preds = %29 - %34 = load i32*, i32** %8, align 8 - %35 = load i32, i32* %10, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i32, i32* %34, i64 %36 - %38 = load i32, i32* %37, align 4 - %39 = load i32, i32* %6, align 4 - %40 = icmp eq i32 %38, %39 - br i1 %40, label %41, label %42 - -41: ; preds = %33 - store i1 false, i1* %5, align 1 - br label %47 - -42: ; preds = %33 - br label %43 - -43: ; preds = %42 - %44 = load i32, i32* %10, align 4 - %45 = add nsw i32 %44, 1 - store i32 %45, i32* %10, align 4 - br label %29, !llvm.loop !6 - -46: ; preds = %29 - store i1 true, i1* %5, align 1 - br label %47 - -47: ; preds = %46, %41, %27 - %48 = load i1, i1* %5, align 1 - ret i1 %48 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_Z12hamCycleUtilPA5_bPii([5 x i8]* noundef %0, i32* noundef %1, i32 noundef %2) #1 { - %4 = alloca i1, align 1 - %5 = alloca [5 x i8]*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store [5 x i8]* %0, [5 x i8]** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32 %2, i32* %7, align 4 - %9 = load i32, i32* %7, align 4 - %10 = icmp eq i32 %9, 5 - br i1 %10, label %11, label %32 - -11: ; preds = %3 - %12 = load [5 x i8]*, [5 x i8]** %5, align 8 - %13 = load i32*, i32** %6, align 8 - %14 = load i32, i32* %7, align 4 - %15 = sub nsw i32 %14, 1 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds i32, i32* %13, i64 %16 - %18 = load i32, i32* %17, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds [5 x i8], [5 x i8]* %12, i64 %19 - %21 = load i32*, i32** %6, align 8 - %22 = getelementptr inbounds i32, i32* %21, i64 0 - %23 = load i32, i32* %22, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [5 x i8], [5 x i8]* %20, i64 0, i64 %24 - %26 = load i8, i8* %25, align 1 - %27 = trunc i8 %26 to i1 - %28 = zext i1 %27 to i32 - %29 = icmp eq i32 %28, 1 - br i1 %29, label %30, label %31 - -30: ; preds = %11 - store i1 true, i1* %4, align 1 - br label %66 - -31: ; preds = %11 - store i1 false, i1* %4, align 1 - br label %66 - -32: ; preds = %3 - store i32 1, i32* %8, align 4 - br label %33 - -33: ; preds = %62, %32 - %34 = load i32, i32* %8, align 4 - %35 = icmp slt i32 %34, 5 - br i1 %35, label %36, label %65 - -36: ; preds = %33 - %37 = load i32, i32* %8, align 4 - %38 = load [5 x i8]*, [5 x i8]** %5, align 8 - %39 = load i32*, i32** %6, align 8 - %40 = load i32, i32* %7, align 4 - %41 = call 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 - %43 = load i32, i32* %8, align 4 - %44 = load i32*, i32** %6, align 8 - %45 = load i32, i32* %7, align 4 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds i32, i32* %44, i64 %46 - store i32 %43, i32* %47, align 4 - %48 = load [5 x i8]*, [5 x i8]** %5, align 8 - %49 = load i32*, i32** %6, align 8 - %50 = load i32, i32* %7, align 4 - %51 = add nsw i32 %50, 1 - %52 = call 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 - -55: ; preds = %42 - store i1 true, i1* %4, align 1 - br label %66 - -56: ; preds = %42 - %57 = load i32*, i32** %6, align 8 - %58 = load i32, i32* %7, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds i32, i32* %57, i64 %59 - store i32 -1, i32* %60, align 4 - br label %61 - -61: ; preds = %56, %36 - br label %62 - -62: ; preds = %61 - %63 = load i32, i32* %8, align 4 - %64 = add nsw i32 %63, 1 - store i32 %64, i32* %8, align 4 - br label %33, !llvm.loop !8 - -65: ; preds = %33 - store i1 false, i1* %4, align 1 - br label %66 - -66: ; preds = %65, %55, %31, %30 - %67 = load i1, i1* %4, align 1 - ret i1 %67 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_Z8hamCyclePA5_b([5 x i8]* noundef %0) #1 { - %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 noundef nonnull i8* @_Znam(i64 noundef 20) #6 - %7 = bitcast i8* %6 to i32* - store i32* %7, i32** %4, align 8 - store i32 0, i32* %5, align 4 - br label %8 - -8: ; preds = %16, %1 - %9 = load i32, i32* %5, align 4 - %10 = icmp slt i32 %9, 5 - br i1 %10, label %11, label %19 - -11: ; preds = %8 - %12 = load i32*, i32** %4, align 8 - %13 = load i32, i32* %5, align 4 - %14 = sext i32 %13 to i64 - %15 = getelementptr inbounds i32, i32* %12, i64 %14 - store i32 -1, i32* %15, align 4 - br label %16 - -16: ; preds = %11 - %17 = load i32, i32* %5, align 4 - %18 = add nsw i32 %17, 1 - store i32 %18, i32* %5, align 4 - br label %8, !llvm.loop !9 - -19: ; preds = %8 - %20 = load i32*, i32** %4, align 8 - %21 = getelementptr inbounds i32, i32* %20, i64 0 - store i32 0, i32* %21, align 4 - %22 = load [5 x i8]*, [5 x i8]** %3, align 8 - %23 = load i32*, i32** %4, align 8 - %24 = call 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 noundef 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* noundef %30) - store i1 true, i1* %2, align 1 - br label %31 - -31: ; preds = %29, %27 - %32 = load i1, i1* %2, align 1 - ret i1 %32 -} - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -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) #3 - -; 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 noundef 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 - -5: ; preds = %16, %1 - %6 = load i32, i32* %3, align 4 - %7 = icmp slt i32 %6, 5 - br i1 %7, label %8, label %19 - -8: ; preds = %5 - %9 = load i32*, i32** %2, align 8 - %10 = load i32, i32* %3, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds i32, i32* %9, i64 %11 - %13 = load i32, i32* %12, align 4 - %14 = call 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 !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 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 - -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) #3 - -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)) #3 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #4 { - %1 = alloca i32, align 4 - %2 = alloca [5 x [5 x i8]], align 16 - %3 = alloca [5 x [5 x i8]], align 16 - store i32 0, i32* %1, align 4 - %4 = bitcast [5 x [5 x i8]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 getelementptr inbounds ([5 x [5 x i8]], [5 x [5 x i8]]* @__const.main.graph1, i32 0, i32 0, i32 0), i64 25, i1 false) - %5 = getelementptr inbounds [5 x [5 x i8]], [5 x [5 x i8]]* %2, i64 0, i64 0 - %6 = call 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 noundef zeroext i1 @_Z8hamCyclePA5_b([5 x i8]* noundef %8) - ret i32 0 -} - -; 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 = { 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 = { 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 = { argmemonly nofree nounwind willreturn } -attributes #6 = { builtin allocsize(0) } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/insertion-sort-for-singly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/insertion-sort-for-singly-linked-list.ll deleted file mode 100644 index 5275cc929..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/insertion-sort-for-singly-linked-list.ll +++ /dev/null @@ -1,234 +0,0 @@ -; ModuleID = 'PE-benchmarks/insertion-sort-for-singly-linked-list.cpp' -source_filename = "PE-benchmarks/insertion-sort-for-singly-linked-list.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%struct.Node = type { i32, %struct.Node* } - -@.str = private unnamed_addr constant [4 x i8] c"%d \00", align 1 -@.str.1 = private unnamed_addr constant [29 x i8] c"Linked List before sorting \0A\00", align 1 -@.str.2 = private unnamed_addr constant [29 x i8] c"\0ALinked List after sorting \0A\00", align 1 - -; Function Attrs: 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 - %5 = alloca %struct.Node*, align 8 - store %struct.Node** %0, %struct.Node*** %2, align 8 - store %struct.Node* null, %struct.Node** %3, align 8 - %6 = load %struct.Node**, %struct.Node*** %2, align 8 - %7 = load %struct.Node*, %struct.Node** %6, align 8 - store %struct.Node* %7, %struct.Node** %4, align 8 - br label %8 - -8: ; preds = %11, %1 - %9 = load %struct.Node*, %struct.Node** %4, align 8 - %10 = icmp ne %struct.Node* %9, null - br i1 %10, label %11, label %17 - -11: ; preds = %8 - %12 = load %struct.Node*, %struct.Node** %4, align 8 - %13 = getelementptr inbounds %struct.Node, %struct.Node* %12, i32 0, i32 1 - %14 = load %struct.Node*, %struct.Node** %13, align 8 - store %struct.Node* %14, %struct.Node** %5, align 8 - %15 = load %struct.Node*, %struct.Node** %4, align 8 - call void @_Z12sortedInsertPP4NodeS0_(%struct.Node** 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 !6 - -17: ; preds = %8 - %18 = load %struct.Node*, %struct.Node** %3, align 8 - %19 = load %struct.Node**, %struct.Node*** %2, align 8 - store %struct.Node* %18, %struct.Node** %19, align 8 - ret void -} - -; Function Attrs: 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 - store %struct.Node** %0, %struct.Node*** %3, align 8 - store %struct.Node* %1, %struct.Node** %4, align 8 - %6 = load %struct.Node**, %struct.Node*** %3, align 8 - %7 = load %struct.Node*, %struct.Node** %6, align 8 - %8 = icmp eq %struct.Node* %7, null - br i1 %8, label %18, label %9 - -9: ; preds = %2 - %10 = load %struct.Node**, %struct.Node*** %3, align 8 - %11 = load %struct.Node*, %struct.Node** %10, align 8 - %12 = getelementptr inbounds %struct.Node, %struct.Node* %11, i32 0, i32 0 - %13 = load i32, i32* %12, align 8 - %14 = load %struct.Node*, %struct.Node** %4, align 8 - %15 = getelementptr inbounds %struct.Node, %struct.Node* %14, i32 0, i32 0 - %16 = load i32, i32* %15, align 8 - %17 = icmp sge i32 %13, %16 - br i1 %17, label %18, label %25 - -18: ; preds = %9, %2 - %19 = load %struct.Node**, %struct.Node*** %3, align 8 - %20 = load %struct.Node*, %struct.Node** %19, align 8 - %21 = load %struct.Node*, %struct.Node** %4, align 8 - %22 = getelementptr inbounds %struct.Node, %struct.Node* %21, i32 0, i32 1 - store %struct.Node* %20, %struct.Node** %22, align 8 - %23 = load %struct.Node*, %struct.Node** %4, align 8 - %24 = load %struct.Node**, %struct.Node*** %3, align 8 - store %struct.Node* %23, %struct.Node** %24, align 8 - br label %58 - -25: ; preds = %9 - %26 = load %struct.Node**, %struct.Node*** %3, align 8 - %27 = load %struct.Node*, %struct.Node** %26, align 8 - store %struct.Node* %27, %struct.Node** %5, align 8 - br label %28 - -28: ; preds = %45, %25 - %29 = load %struct.Node*, %struct.Node** %5, align 8 - %30 = getelementptr inbounds %struct.Node, %struct.Node* %29, i32 0, i32 1 - %31 = load %struct.Node*, %struct.Node** %30, align 8 - %32 = icmp ne %struct.Node* %31, null - br i1 %32, label %33, label %43 - -33: ; preds = %28 - %34 = load %struct.Node*, %struct.Node** %5, align 8 - %35 = getelementptr inbounds %struct.Node, %struct.Node* %34, i32 0, i32 1 - %36 = load %struct.Node*, %struct.Node** %35, align 8 - %37 = getelementptr inbounds %struct.Node, %struct.Node* %36, i32 0, i32 0 - %38 = load i32, i32* %37, align 8 - %39 = load %struct.Node*, %struct.Node** %4, align 8 - %40 = getelementptr inbounds %struct.Node, %struct.Node* %39, i32 0, i32 0 - %41 = load i32, i32* %40, align 8 - %42 = icmp slt i32 %38, %41 - br label %43 - -43: ; preds = %33, %28 - %44 = phi i1 [ false, %28 ], [ %42, %33 ] - br i1 %44, label %45, label %49 - -45: ; preds = %43 - %46 = load %struct.Node*, %struct.Node** %5, align 8 - %47 = getelementptr inbounds %struct.Node, %struct.Node* %46, i32 0, i32 1 - %48 = load %struct.Node*, %struct.Node** %47, align 8 - store %struct.Node* %48, %struct.Node** %5, align 8 - br label %28, !llvm.loop !8 - -49: ; preds = %43 - %50 = load %struct.Node*, %struct.Node** %5, align 8 - %51 = getelementptr inbounds %struct.Node, %struct.Node* %50, i32 0, i32 1 - %52 = load %struct.Node*, %struct.Node** %51, align 8 - %53 = load %struct.Node*, %struct.Node** %4, align 8 - %54 = getelementptr inbounds %struct.Node, %struct.Node* %53, i32 0, i32 1 - store %struct.Node* %52, %struct.Node** %54, align 8 - %55 = load %struct.Node*, %struct.Node** %4, align 8 - %56 = load %struct.Node*, %struct.Node** %5, align 8 - %57 = getelementptr inbounds %struct.Node, %struct.Node* %56, i32 0, i32 1 - store %struct.Node* %55, %struct.Node** %57, align 8 - br label %58 - -58: ; preds = %49, %18 - ret void -} - -; Function Attrs: 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 - %4 = load %struct.Node*, %struct.Node** %2, align 8 - store %struct.Node* %4, %struct.Node** %3, align 8 - br label %5 - -5: ; preds = %8, %1 - %6 = load %struct.Node*, %struct.Node** %3, align 8 - %7 = icmp ne %struct.Node* %6, null - br i1 %7, label %8, label %16 - -8: ; preds = %5 - %9 = load %struct.Node*, %struct.Node** %3, align 8 - %10 = getelementptr inbounds %struct.Node, %struct.Node* %9, i32 0, i32 0 - %11 = load i32, i32* %10, align 8 - %12 = call i32 (i8*, ...) @printf(i8* 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 !9 - -16: ; preds = %5 - ret void -} - -declare i32 @printf(i8* noundef, ...) #2 - -; 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 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 - %9 = load %struct.Node*, %struct.Node** %5, align 8 - %10 = getelementptr inbounds %struct.Node, %struct.Node* %9, i32 0, i32 0 - store i32 %8, i32* %10, align 8 - %11 = load %struct.Node**, %struct.Node*** %3, align 8 - %12 = load %struct.Node*, %struct.Node** %11, align 8 - %13 = load %struct.Node*, %struct.Node** %5, align 8 - %14 = getelementptr inbounds %struct.Node, %struct.Node* %13, i32 0, i32 1 - store %struct.Node* %12, %struct.Node** %14, align 8 - %15 = load %struct.Node*, %struct.Node** %5, align 8 - %16 = load %struct.Node**, %struct.Node*** %3, align 8 - store %struct.Node* %15, %struct.Node** %16, align 8 - ret void -} - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #3 - -; 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** 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* 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* noundef %6) - ret i32 0 -} - -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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/karatsuba.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/karatsuba.ll deleted file mode 100644 index 25b354492..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/karatsuba.ll +++ /dev/null @@ -1,1552 +0,0 @@ -; ModuleID = 'PE-benchmarks/karatsuba.cpp' -source_filename = "PE-benchmarks/karatsuba.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::allocator" = type { i8 } -%"class.std::__new_allocator" = type { i8 } - -$_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_ = comdat any - -$_ZNSt15__new_allocatorIcED2Ev = comdat any - -$_ZSt12__str_concatINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEET_PKNS6_10value_typeENS6_9size_typeES9_SA_RKNS6_14allocator_typeE = comdat any - -@.str = private unnamed_addr constant [5 x i8] c"%ld\0A\00", align 1 -@.str.1 = private unnamed_addr constant [5 x i8] c"1100\00", align 1 -@.str.2 = private unnamed_addr constant [5 x i8] c"1010\00", align 1 -@.str.3 = private unnamed_addr constant [4 x i8] c"110\00", align 1 -@.str.4 = private unnamed_addr constant [3 x i8] c"11\00", align 1 -@.str.5 = private unnamed_addr constant [2 x i8] c"1\00", align 1 -@.str.6 = private unnamed_addr constant [2 x i8] c"0\00", align 1 -@.str.7 = private unnamed_addr constant [4 x i8] c"111\00", align 1 - -; 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) #0 { - %3 = alloca i32, align 4 - %4 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %5 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - %10 = alloca i32, align 4 - %11 = alloca %"class.std::__cxx11::basic_string", align 8 - store %"class.std::__cxx11::basic_string"* %0, %"class.std::__cxx11::basic_string"** %4, align 8 - store %"class.std::__cxx11::basic_string"* %1, %"class.std::__cxx11::basic_string"** %5, align 8 - %12 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %4, align 8 - %13 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %12) #7 - %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 noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #7 - %17 = trunc i64 %16 to i32 - store i32 %17, i32* %7, align 4 - %18 = load i32, i32* %6, align 4 - %19 = load i32, i32* %7, align 4 - %20 = icmp slt i32 %18, %19 - br i1 %20, label %21, label %37 - -21: ; preds = %2 - store i32 0, i32* %8, align 4 - br label %22 - -22: ; preds = %32, %21 - %23 = load i32, i32* %8, align 4 - %24 = load i32, i32* %7, align 4 - %25 = load i32, i32* %6, align 4 - %26 = sub nsw i32 %24, %25 - %27 = icmp slt i32 %23, %26 - br i1 %27, label %28, label %35 - -28: ; preds = %22 - %29 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %4, align 8 - call void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %9, i8 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 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) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9) #7 - 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 !6 - -35: ; preds = %22 - %36 = load i32, i32* %7, align 4 - store i32 %36, i32* %3, align 4 - br label %59 - -37: ; preds = %2 - %38 = load i32, i32* %6, align 4 - %39 = load i32, i32* %7, align 4 - %40 = icmp sgt i32 %38, %39 - br i1 %40, label %41, label %56 - -41: ; preds = %37 - store i32 0, i32* %10, align 4 - br label %42 - -42: ; preds = %52, %41 - %43 = load i32, i32* %10, align 4 - %44 = load i32, i32* %6, align 4 - %45 = load i32, i32* %7, align 4 - %46 = sub nsw i32 %44, %45 - %47 = icmp slt i32 %43, %46 - br i1 %47, label %48, label %55 - -48: ; preds = %42 - %49 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %5, align 8 - call void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %11, i8 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 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) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #7 - 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 !8 - -55: ; preds = %42 - br label %56 - -56: ; preds = %55, %37 - br label %57 - -57: ; preds = %56 - %58 = load i32, i32* %6, align 4 - store i32 %58, i32* %3, align 4 - br label %59 - -59: ; preds = %57, %35 - %60 = load i32, i32* %3, align 4 - ret i32 %60 -} - -; Function Attrs: nounwind -declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) #1 - -; Function Attrs: 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) #2 comdat personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca i8, align 1 - %8 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %9 = alloca %"class.std::allocator", align 1 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - %12 = bitcast %"class.std::__cxx11::basic_string"* %0 to i8* - store i8* %12, i8** %6, align 8 - store i8 %1, i8* %7, align 1 - store %"class.std::__cxx11::basic_string"* %2, %"class.std::__cxx11::basic_string"** %8, align 8 - %13 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %8, align 8 - %14 = call noundef i8* @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE5c_strEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13) #7 - %15 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %8, align 8 - %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #7 - %17 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %8, align 8 - 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) %17) #7 - invoke void @_ZSt12__str_concatINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEET_PKNS6_10value_typeENS6_9size_typeES9_SA_RKNS6_14allocator_typeE(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %0, i8* noundef %7, i64 noundef 1, i8* noundef %14, i64 noundef %16, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) - to label %18 unwind label %21 - -18: ; preds = %3 - store %"class.std::allocator"* %9, %"class.std::allocator"** %5, align 8 - %19 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %20 = bitcast %"class.std::allocator"* %19 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %20) #7 - ret void - -21: ; preds = %3 - %22 = landingpad { i8*, i32 } - cleanup - %23 = extractvalue { i8*, i32 } %22, 0 - store i8* %23, i8** %10, align 8 - %24 = extractvalue { i8*, i32 } %22, 1 - store i32 %24, i32* %11, align 4 - store %"class.std::allocator"* %9, %"class.std::allocator"** %4, align 8 - %25 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %26 = bitcast %"class.std::allocator"* %25 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %26) #7 - br label %27 - -27: ; preds = %21 - %28 = load i8*, i8** %10, align 8 - %29 = load i32, i32* %11, align 4 - %30 = insertvalue { i8*, i32 } undef, i8* %28, 0 - %31 = insertvalue { i8*, i32 } %30, i32 %29, 1 - resume { i8*, i32 } %31 -} - -; Function Attrs: nounwind -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)) #1 - -; Function Attrs: nounwind -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 - -; 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) #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca i8*, align 8 - %5 = alloca i1, align 1 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - %15 = alloca %"class.std::__cxx11::basic_string", align 8 - %16 = bitcast %"class.std::__cxx11::basic_string"* %0 to i8* - store i8* %16, i8** %4, align 8 - store i1 false, i1* %5, align 1 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #7 - %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 - store i32 %17, i32* %6, align 4 - store i32 0, i32* %9, align 4 - %19 = load i32, i32* %6, align 4 - %20 = sub nsw i32 %19, 1 - store i32 %20, i32* %10, align 4 - br label %21 - -21: ; preds = %60, %18 - %22 = load i32, i32* %10, align 4 - %23 = icmp sge i32 %22, 0 - br i1 %23, label %24, label %67 - -24: ; preds = %21 - %25 = load i32, i32* %10, align 4 - %26 = sext i32 %25 to i64 - %27 = invoke 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 - %29 = load i8, i8* %27, align 1 - %30 = sext i8 %29 to i32 - %31 = sub nsw i32 %30, 48 - store i32 %31, i32* %11, align 4 - %32 = load i32, i32* %10, align 4 - %33 = sext i32 %32 to i64 - %34 = invoke 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 - %36 = load i8, i8* %34, align 1 - %37 = sext i8 %36 to i32 - %38 = sub nsw i32 %37, 48 - store i32 %38, i32* %12, align 4 - %39 = load i32, i32* %11, align 4 - %40 = load i32, i32* %12, align 4 - %41 = xor i32 %39, %40 - %42 = load i32, i32* %9, align 4 - %43 = xor i32 %41, %42 - %44 = add nsw i32 %43, 48 - store i32 %44, i32* %13, align 4 - %45 = load i32, i32* %13, align 4 - %46 = trunc i32 %45 to i8 - invoke void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %14, i8 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 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) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #7 - %49 = load i32, i32* %11, align 4 - %50 = load i32, i32* %12, align 4 - %51 = and i32 %49, %50 - %52 = load i32, i32* %12, align 4 - %53 = load i32, i32* %9, align 4 - %54 = and i32 %52, %53 - %55 = or i32 %51, %54 - %56 = load i32, i32* %11, align 4 - %57 = load i32, i32* %9, align 4 - %58 = and i32 %56, %57 - %59 = or i32 %55, %58 - store i32 %59, i32* %9, align 4 - br label %60 - -60: ; preds = %47 - %61 = load i32, i32* %10, align 4 - %62 = add nsw i32 %61, -1 - store i32 %62, i32* %10, align 4 - br label %21, !llvm.loop !9 - -63: ; preds = %70, %35, %28, %24, %3 - %64 = landingpad { i8*, i32 } - cleanup - %65 = extractvalue { i8*, i32 } %64, 0 - store i8* %65, i8** %7, align 8 - %66 = extractvalue { i8*, i32 } %64, 1 - store i32 %66, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #7 - br label %77 - -67: ; preds = %21 - %68 = load i32, i32* %9, align 4 - %69 = icmp ne i32 %68, 0 - br i1 %69, label %70, label %73 - -70: ; preds = %67 - invoke void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %15, i8 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 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) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #7 - br label %73 - -73: ; preds = %71, %67 - store i1 true, i1* %5, align 1 - %74 = load i1, i1* %5, align 1 - br i1 %74, label %76, label %75 - -75: ; preds = %73 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #7 - br label %76 - -76: ; preds = %75, %73 - ret void - -77: ; preds = %63 - %78 = load i8*, i8** %7, align 8 - %79 = load i32, i32* %8, align 4 - %80 = insertvalue { i8*, i32 } undef, i8* %78, 0 - %81 = insertvalue { i8*, i32 } %80, i32 %79, 1 - resume { i8*, i32 } %81 -} - -; Function Attrs: nounwind -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 - -declare i32 @__gxx_personality_v0(...) - -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) #3 - -; 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) #0 { - %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 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 - %11 = mul nsw i32 %6, %10 - ret i32 %11 -} - -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) #3 - -; 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) #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca i64, align 8 - %4 = alloca i32, align 4 - %5 = alloca %"class.std::__cxx11::basic_string", align 8 - %6 = alloca %"class.std::__cxx11::basic_string", align 8 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca %"class.std::__cxx11::basic_string", align 8 - %12 = alloca %"class.std::__cxx11::basic_string", align 8 - %13 = alloca %"class.std::__cxx11::basic_string", align 8 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - %15 = alloca i64, align 8 - %16 = alloca %"class.std::__cxx11::basic_string", align 8 - %17 = alloca %"class.std::__cxx11::basic_string", align 8 - %18 = alloca i64, align 8 - %19 = alloca %"class.std::__cxx11::basic_string", align 8 - %20 = alloca %"class.std::__cxx11::basic_string", align 8 - %21 = alloca i64, align 8 - %22 = alloca %"class.std::__cxx11::basic_string", align 8 - %23 = alloca %"class.std::__cxx11::basic_string", align 8 - %24 = alloca %"class.std::__cxx11::basic_string", align 8 - %25 = alloca %"class.std::__cxx11::basic_string", align 8 - %26 = alloca %"class.std::__cxx11::basic_string", align 8 - %27 = alloca %"class.std::__cxx11::basic_string", align 8 - %28 = call 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 - br i1 %30, label %31, label %32 - -31: ; preds = %2 - store i64 0, i64* %3, align 8 - br label %171 - -32: ; preds = %2 - %33 = load i32, i32* %4, align 4 - %34 = icmp eq i32 %33, 1 - br i1 %34, label %35, label %49 - -35: ; preds = %32 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* 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 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"* noundef nonnull align 8 dereferenceable(32) %6) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5) #7 - br label %171 - -40: ; preds = %35 - %41 = landingpad { i8*, i32 } - cleanup - %42 = extractvalue { i8*, i32 } %41, 0 - store i8* %42, i8** %7, align 8 - %43 = extractvalue { i8*, i32 } %41, 1 - store i32 %43, i32* %8, align 4 - br label %48 - -44: ; preds = %36 - %45 = landingpad { i8*, i32 } - cleanup - %46 = extractvalue { i8*, i32 } %45, 0 - store i8* %46, i8** %7, align 8 - %47 = extractvalue { i8*, i32 } %45, 1 - store i32 %47, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #7 - br label %48 - -48: ; preds = %44, %40 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5) #7 - br label %173 - -49: ; preds = %32 - %50 = load i32, i32* %4, align 4 - %51 = sdiv i32 %50, 2 - store i32 %51, i32* %9, align 4 - %52 = load i32, i32* %4, align 4 - %53 = load i32, i32* %9, align 4 - %54 = sub nsw i32 %52, %53 - store i32 %54, i32* %10, align 4 - %55 = load i32, i32* %9, align 4 - %56 = sext i32 %55 to i64 - call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %11, %"class.std::__cxx11::basic_string"* 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"* 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"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 0, i64 noundef %63) - to label %64 unwind label %108 - -64: ; preds = %61 - %65 = load i32, i32* %9, align 4 - %66 = sext i32 %65 to i64 - %67 = load i32, i32* %10, align 4 - %68 = sext i32 %67 to i64 - invoke void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %14, %"class.std::__cxx11::basic_string"* 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"* 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"* 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 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"* noundef nonnull align 8 dereferenceable(32) %17) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #7 - store i64 %72, i64* %15, align 8 - 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"* 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 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"* noundef nonnull align 8 dereferenceable(32) %20) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %19) #7 - store i64 %76, i64* %18, align 8 - 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"* 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"* 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"* 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"* 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"* noundef %26, %"class.std::__cxx11::basic_string"* noundef %27) - to label %83 unwind label %154 - -83: ; preds = %82 - %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"* noundef nonnull align 8 dereferenceable(32) %25) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %27) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %26) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %22) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %24) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %23) #7 - store i64 %84, i64* %21, align 8 - %86 = load i64, i64* %15, align 8 - %87 = load i32, i32* %10, align 4 - %88 = mul nsw i32 2, %87 - %89 = shl i32 1, %88 - %90 = sext i32 %89 to i64 - %91 = mul nsw i64 %86, %90 - %92 = load i64, i64* %21, align 8 - %93 = load i64, i64* %15, align 8 - %94 = sub nsw i64 %92, %93 - %95 = load i64, i64* %18, align 8 - %96 = sub nsw i64 %94, %95 - %97 = load i32, i32* %10, align 4 - %98 = shl i32 1, %97 - %99 = sext i32 %98 to i64 - %100 = mul nsw i64 %96, %99 - %101 = add nsw i64 %91, %100 - %102 = load i64, i64* %18, align 8 - %103 = add nsw i64 %101, %102 - store i64 %103, i64* %3, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %12) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #7 - br label %171 - -104: ; preds = %49 - %105 = landingpad { i8*, i32 } - cleanup - %106 = extractvalue { i8*, i32 } %105, 0 - store i8* %106, i8** %7, align 8 - %107 = extractvalue { i8*, i32 } %105, 1 - store i32 %107, i32* %8, align 4 - br label %170 - -108: ; preds = %61 - %109 = landingpad { i8*, i32 } - cleanup - %110 = extractvalue { i8*, i32 } %109, 0 - store i8* %110, i8** %7, align 8 - %111 = extractvalue { i8*, i32 } %109, 1 - store i32 %111, i32* %8, align 4 - br label %169 - -112: ; preds = %64 - %113 = landingpad { i8*, i32 } - cleanup - %114 = extractvalue { i8*, i32 } %113, 0 - store i8* %114, i8** %7, align 8 - %115 = extractvalue { i8*, i32 } %113, 1 - store i32 %115, i32* %8, align 4 - br label %168 - -116: ; preds = %77, %73, %69 - %117 = landingpad { i8*, i32 } - cleanup - %118 = extractvalue { i8*, i32 } %117, 0 - store i8* %118, i8** %7, align 8 - %119 = extractvalue { i8*, i32 } %117, 1 - store i32 %119, i32* %8, align 4 - br label %167 - -120: ; preds = %70 - %121 = landingpad { i8*, i32 } - cleanup - %122 = extractvalue { i8*, i32 } %121, 0 - store i8* %122, i8** %7, align 8 - %123 = extractvalue { i8*, i32 } %121, 1 - store i32 %123, i32* %8, align 4 - br label %128 - -124: ; preds = %71 - %125 = landingpad { i8*, i32 } - cleanup - %126 = extractvalue { i8*, i32 } %125, 0 - store i8* %126, i8** %7, align 8 - %127 = extractvalue { i8*, i32 } %125, 1 - store i32 %127, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17) #7 - br label %128 - -128: ; preds = %124, %120 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #7 - br label %167 - -129: ; preds = %74 - %130 = landingpad { i8*, i32 } - cleanup - %131 = extractvalue { i8*, i32 } %130, 0 - store i8* %131, i8** %7, align 8 - %132 = extractvalue { i8*, i32 } %130, 1 - store i32 %132, i32* %8, align 4 - br label %137 - -133: ; preds = %75 - %134 = landingpad { i8*, i32 } - cleanup - %135 = extractvalue { i8*, i32 } %134, 0 - store i8* %135, i8** %7, align 8 - %136 = extractvalue { i8*, i32 } %134, 1 - store i32 %136, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %20) #7 - br label %137 - -137: ; preds = %133, %129 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %19) #7 - br label %167 - -138: ; preds = %78 - %139 = landingpad { i8*, i32 } - cleanup - %140 = extractvalue { i8*, i32 } %139, 0 - store i8* %140, i8** %7, align 8 - %141 = extractvalue { i8*, i32 } %139, 1 - store i32 %141, i32* %8, align 4 - br label %166 - -142: ; preds = %79 - %143 = landingpad { i8*, i32 } - cleanup - %144 = extractvalue { i8*, i32 } %143, 0 - store i8* %144, i8** %7, align 8 - %145 = extractvalue { i8*, i32 } %143, 1 - store i32 %145, i32* %8, align 4 - br label %165 - -146: ; preds = %80 - %147 = landingpad { i8*, i32 } - cleanup - %148 = extractvalue { i8*, i32 } %147, 0 - store i8* %148, i8** %7, align 8 - %149 = extractvalue { i8*, i32 } %147, 1 - store i32 %149, i32* %8, align 4 - br label %164 - -150: ; preds = %81 - %151 = landingpad { i8*, i32 } - cleanup - %152 = extractvalue { i8*, i32 } %151, 0 - store i8* %152, i8** %7, align 8 - %153 = extractvalue { i8*, i32 } %151, 1 - store i32 %153, i32* %8, align 4 - br label %163 - -154: ; preds = %82 - %155 = landingpad { i8*, i32 } - cleanup - %156 = extractvalue { i8*, i32 } %155, 0 - store i8* %156, i8** %7, align 8 - %157 = extractvalue { i8*, i32 } %155, 1 - store i32 %157, i32* %8, align 4 - br label %162 - -158: ; preds = %83 - %159 = landingpad { i8*, i32 } - cleanup - %160 = extractvalue { i8*, i32 } %159, 0 - store i8* %160, i8** %7, align 8 - %161 = extractvalue { i8*, i32 } %159, 1 - store i32 %161, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %25) #7 - br label %162 - -162: ; preds = %158, %154 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %27) #7 - br label %163 - -163: ; preds = %162, %150 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %26) #7 - br label %164 - -164: ; preds = %163, %146 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %22) #7 - br label %165 - -165: ; preds = %164, %142 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %24) #7 - br label %166 - -166: ; preds = %165, %138 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %23) #7 - br label %167 - -167: ; preds = %166, %137, %128, %116 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #7 - br label %168 - -168: ; preds = %167, %112 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13) #7 - br label %169 - -169: ; preds = %168, %108 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %12) #7 - br label %170 - -170: ; preds = %169, %104 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #7 - br label %173 - -171: ; preds = %85, %38, %31 - %172 = load i64, i64* %3, align 8 - ret i64 %172 - -173: ; preds = %170, %48 - %174 = load i8*, i8** %7, align 8 - %175 = load i32, i32* %8, align 4 - %176 = insertvalue { i8*, i32 } undef, i8* %174, 0 - %177 = insertvalue { i8*, i32 } %176, i32 %175, 1 - resume { i8*, i32 } %177 -} - -declare 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 #3 - -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) #3 - -; Function Attrs: noinline norecurse uwtable -define dso_local noundef i32 @main() #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca %"class.std::__new_allocator"*, align 8 - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca %"class.std::__new_allocator"*, align 8 - %7 = alloca %"class.std::__new_allocator"*, align 8 - %8 = alloca %"class.std::__new_allocator"*, align 8 - %9 = alloca %"class.std::__new_allocator"*, align 8 - %10 = alloca %"class.std::__new_allocator"*, align 8 - %11 = alloca %"class.std::__new_allocator"*, align 8 - %12 = alloca %"class.std::__new_allocator"*, align 8 - %13 = alloca %"class.std::__new_allocator"*, align 8 - %14 = alloca %"class.std::__new_allocator"*, align 8 - %15 = alloca %"class.std::allocator"*, align 8 - %16 = alloca %"class.std::allocator"*, align 8 - %17 = alloca %"class.std::allocator"*, align 8 - %18 = alloca %"class.std::allocator"*, align 8 - %19 = alloca %"class.std::allocator"*, align 8 - %20 = alloca %"class.std::allocator"*, align 8 - %21 = alloca %"class.std::allocator"*, align 8 - %22 = alloca %"class.std::allocator"*, align 8 - %23 = alloca %"class.std::allocator"*, align 8 - %24 = alloca %"class.std::allocator"*, align 8 - %25 = alloca %"class.std::allocator"*, align 8 - %26 = alloca %"class.std::allocator"*, align 8 - %27 = alloca %"class.std::allocator"*, align 8 - %28 = alloca %"class.std::allocator"*, align 8 - %29 = alloca %"class.std::allocator"*, align 8 - %30 = alloca %"class.std::allocator"*, align 8 - %31 = alloca %"class.std::allocator"*, align 8 - %32 = alloca %"class.std::allocator"*, align 8 - %33 = alloca %"class.std::allocator"*, align 8 - %34 = alloca %"class.std::allocator"*, align 8 - %35 = alloca %"class.std::allocator"*, align 8 - %36 = alloca %"class.std::allocator"*, align 8 - %37 = alloca %"class.std::allocator"*, align 8 - %38 = alloca %"class.std::allocator"*, align 8 - %39 = alloca %"class.std::allocator"*, align 8 - %40 = alloca %"class.std::allocator"*, align 8 - %41 = alloca %"class.std::allocator"*, align 8 - %42 = alloca %"class.std::allocator"*, align 8 - %43 = alloca %"class.std::allocator"*, align 8 - %44 = alloca %"class.std::allocator"*, align 8 - %45 = alloca %"class.std::allocator"*, align 8 - %46 = alloca %"class.std::allocator"*, align 8 - %47 = alloca %"class.std::allocator"*, align 8 - %48 = alloca %"class.std::allocator"*, align 8 - %49 = alloca %"class.std::allocator"*, align 8 - %50 = alloca %"class.std::allocator"*, align 8 - %51 = alloca %"class.std::allocator"*, align 8 - %52 = alloca %"class.std::allocator"*, align 8 - %53 = alloca %"class.std::allocator"*, align 8 - %54 = alloca %"class.std::allocator"*, align 8 - %55 = alloca %"class.std::allocator"*, align 8 - %56 = alloca %"class.std::allocator"*, align 8 - %57 = alloca %"class.std::__cxx11::basic_string", align 8 - %58 = alloca %"class.std::allocator", align 1 - %59 = alloca i8*, align 8 - %60 = alloca i32, align 4 - %61 = alloca %"class.std::__cxx11::basic_string", align 8 - %62 = alloca %"class.std::allocator", align 1 - %63 = alloca %"class.std::__cxx11::basic_string", align 8 - %64 = alloca %"class.std::allocator", align 1 - %65 = alloca %"class.std::__cxx11::basic_string", align 8 - %66 = alloca %"class.std::allocator", align 1 - %67 = alloca %"class.std::__cxx11::basic_string", align 8 - %68 = alloca %"class.std::allocator", align 1 - %69 = alloca %"class.std::__cxx11::basic_string", align 8 - %70 = alloca %"class.std::allocator", align 1 - %71 = alloca %"class.std::__cxx11::basic_string", align 8 - %72 = alloca %"class.std::allocator", align 1 - %73 = alloca %"class.std::__cxx11::basic_string", align 8 - %74 = alloca %"class.std::allocator", align 1 - %75 = alloca %"class.std::__cxx11::basic_string", align 8 - %76 = alloca %"class.std::allocator", align 1 - %77 = alloca %"class.std::__cxx11::basic_string", align 8 - %78 = alloca %"class.std::allocator", align 1 - %79 = alloca %"class.std::__cxx11::basic_string", align 8 - %80 = alloca %"class.std::allocator", align 1 - %81 = alloca %"class.std::__cxx11::basic_string", align 8 - %82 = alloca %"class.std::allocator", align 1 - %83 = alloca %"class.std::__cxx11::basic_string", align 8 - %84 = alloca %"class.std::allocator", align 1 - %85 = alloca %"class.std::__cxx11::basic_string", align 8 - %86 = alloca %"class.std::allocator", align 1 - store %"class.std::allocator"* %58, %"class.std::allocator"** %56, align 8 - %87 = load %"class.std::allocator"*, %"class.std::allocator"** %56, align 8 - %88 = bitcast %"class.std::allocator"* %87 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %88, %"class.std::__new_allocator"** %1, align 8 - %89 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %1, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %57, 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) %58) - to label %90 unwind label %199 - -90: ; preds = %0 - store %"class.std::allocator"* %62, %"class.std::allocator"** %55, align 8 - %91 = load %"class.std::allocator"*, %"class.std::allocator"** %55, align 8 - %92 = bitcast %"class.std::allocator"* %91 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %92, %"class.std::__new_allocator"** %2, align 8 - %93 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %61, 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) %62) - to label %94 unwind label %203 - -94: ; preds = %90 - %95 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %57, %"class.std::__cxx11::basic_string"* noundef %61) - to label %96 unwind label %207 - -96: ; preds = %94 - %97 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %95) - to label %98 unwind label %207 - -98: ; preds = %96 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %61) #7 - store %"class.std::allocator"* %62, %"class.std::allocator"** %42, align 8 - %99 = load %"class.std::allocator"*, %"class.std::allocator"** %42, align 8 - %100 = bitcast %"class.std::allocator"* %99 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %100) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %57) #7 - store %"class.std::allocator"* %58, %"class.std::allocator"** %40, align 8 - %101 = load %"class.std::allocator"*, %"class.std::allocator"** %40, align 8 - %102 = bitcast %"class.std::allocator"* %101 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %102) #7 - store %"class.std::allocator"* %64, %"class.std::allocator"** %54, align 8 - %103 = load %"class.std::allocator"*, %"class.std::allocator"** %54, align 8 - %104 = bitcast %"class.std::allocator"* %103 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %104, %"class.std::__new_allocator"** %3, align 8 - %105 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %63, 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) %64) - to label %106 unwind label %217 - -106: ; preds = %98 - store %"class.std::allocator"* %66, %"class.std::allocator"** %53, align 8 - %107 = load %"class.std::allocator"*, %"class.std::allocator"** %53, align 8 - %108 = bitcast %"class.std::allocator"* %107 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %108, %"class.std::__new_allocator"** %4, align 8 - %109 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %65, 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) %66) - to label %110 unwind label %221 - -110: ; preds = %106 - %111 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %63, %"class.std::__cxx11::basic_string"* noundef %65) - to label %112 unwind label %225 - -112: ; preds = %110 - %113 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %111) - to label %114 unwind label %225 - -114: ; preds = %112 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %65) #7 - store %"class.std::allocator"* %66, %"class.std::allocator"** %38, align 8 - %115 = load %"class.std::allocator"*, %"class.std::allocator"** %38, align 8 - %116 = bitcast %"class.std::allocator"* %115 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %116) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %63) #7 - store %"class.std::allocator"* %64, %"class.std::allocator"** %36, align 8 - %117 = load %"class.std::allocator"*, %"class.std::allocator"** %36, align 8 - %118 = bitcast %"class.std::allocator"* %117 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %118) #7 - store %"class.std::allocator"* %68, %"class.std::allocator"** %52, align 8 - %119 = load %"class.std::allocator"*, %"class.std::allocator"** %52, align 8 - %120 = bitcast %"class.std::allocator"* %119 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %120, %"class.std::__new_allocator"** %5, align 8 - %121 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %67, 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) %68) - to label %122 unwind label %235 - -122: ; preds = %114 - store %"class.std::allocator"* %70, %"class.std::allocator"** %51, align 8 - %123 = load %"class.std::allocator"*, %"class.std::allocator"** %51, align 8 - %124 = bitcast %"class.std::allocator"* %123 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %124, %"class.std::__new_allocator"** %6, align 8 - %125 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %6, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %69, 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) %70) - to label %126 unwind label %239 - -126: ; preds = %122 - %127 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %67, %"class.std::__cxx11::basic_string"* noundef %69) - to label %128 unwind label %243 - -128: ; preds = %126 - %129 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %127) - to label %130 unwind label %243 - -130: ; preds = %128 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %69) #7 - store %"class.std::allocator"* %70, %"class.std::allocator"** %34, align 8 - %131 = load %"class.std::allocator"*, %"class.std::allocator"** %34, align 8 - %132 = bitcast %"class.std::allocator"* %131 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %132) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %67) #7 - store %"class.std::allocator"* %68, %"class.std::allocator"** %32, align 8 - %133 = load %"class.std::allocator"*, %"class.std::allocator"** %32, align 8 - %134 = bitcast %"class.std::allocator"* %133 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %134) #7 - store %"class.std::allocator"* %72, %"class.std::allocator"** %50, align 8 - %135 = load %"class.std::allocator"*, %"class.std::allocator"** %50, align 8 - %136 = bitcast %"class.std::allocator"* %135 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %136, %"class.std::__new_allocator"** %7, align 8 - %137 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %7, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %71, 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) %72) - to label %138 unwind label %253 - -138: ; preds = %130 - store %"class.std::allocator"* %74, %"class.std::allocator"** %49, align 8 - %139 = load %"class.std::allocator"*, %"class.std::allocator"** %49, align 8 - %140 = bitcast %"class.std::allocator"* %139 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %140, %"class.std::__new_allocator"** %8, align 8 - %141 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %8, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %73, 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) %74) - to label %142 unwind label %257 - -142: ; preds = %138 - %143 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %71, %"class.std::__cxx11::basic_string"* noundef %73) - to label %144 unwind label %261 - -144: ; preds = %142 - %145 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %143) - to label %146 unwind label %261 - -146: ; preds = %144 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %73) #7 - store %"class.std::allocator"* %74, %"class.std::allocator"** %30, align 8 - %147 = load %"class.std::allocator"*, %"class.std::allocator"** %30, align 8 - %148 = bitcast %"class.std::allocator"* %147 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %148) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %71) #7 - store %"class.std::allocator"* %72, %"class.std::allocator"** %28, align 8 - %149 = load %"class.std::allocator"*, %"class.std::allocator"** %28, align 8 - %150 = bitcast %"class.std::allocator"* %149 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %150) #7 - store %"class.std::allocator"* %76, %"class.std::allocator"** %48, align 8 - %151 = load %"class.std::allocator"*, %"class.std::allocator"** %48, align 8 - %152 = bitcast %"class.std::allocator"* %151 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %152, %"class.std::__new_allocator"** %9, align 8 - %153 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %9, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %75, 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) %76) - to label %154 unwind label %271 - -154: ; preds = %146 - store %"class.std::allocator"* %78, %"class.std::allocator"** %47, align 8 - %155 = load %"class.std::allocator"*, %"class.std::allocator"** %47, align 8 - %156 = bitcast %"class.std::allocator"* %155 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %156, %"class.std::__new_allocator"** %10, align 8 - %157 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %10, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %77, 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) %78) - to label %158 unwind label %275 - -158: ; preds = %154 - %159 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %75, %"class.std::__cxx11::basic_string"* noundef %77) - to label %160 unwind label %279 - -160: ; preds = %158 - %161 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %159) - to label %162 unwind label %279 - -162: ; preds = %160 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %77) #7 - store %"class.std::allocator"* %78, %"class.std::allocator"** %26, align 8 - %163 = load %"class.std::allocator"*, %"class.std::allocator"** %26, align 8 - %164 = bitcast %"class.std::allocator"* %163 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %164) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %75) #7 - store %"class.std::allocator"* %76, %"class.std::allocator"** %24, align 8 - %165 = load %"class.std::allocator"*, %"class.std::allocator"** %24, align 8 - %166 = bitcast %"class.std::allocator"* %165 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %166) #7 - store %"class.std::allocator"* %80, %"class.std::allocator"** %46, align 8 - %167 = load %"class.std::allocator"*, %"class.std::allocator"** %46, align 8 - %168 = bitcast %"class.std::allocator"* %167 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %168, %"class.std::__new_allocator"** %11, align 8 - %169 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %11, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %79, 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) %80) - to label %170 unwind label %289 - -170: ; preds = %162 - store %"class.std::allocator"* %82, %"class.std::allocator"** %45, align 8 - %171 = load %"class.std::allocator"*, %"class.std::allocator"** %45, align 8 - %172 = bitcast %"class.std::allocator"* %171 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %172, %"class.std::__new_allocator"** %12, align 8 - %173 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %12, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %81, 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) %82) - to label %174 unwind label %293 - -174: ; preds = %170 - %175 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %79, %"class.std::__cxx11::basic_string"* noundef %81) - to label %176 unwind label %297 - -176: ; preds = %174 - %177 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %175) - to label %178 unwind label %297 - -178: ; preds = %176 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %81) #7 - store %"class.std::allocator"* %82, %"class.std::allocator"** %22, align 8 - %179 = load %"class.std::allocator"*, %"class.std::allocator"** %22, align 8 - %180 = bitcast %"class.std::allocator"* %179 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %180) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %79) #7 - store %"class.std::allocator"* %80, %"class.std::allocator"** %20, align 8 - %181 = load %"class.std::allocator"*, %"class.std::allocator"** %20, align 8 - %182 = bitcast %"class.std::allocator"* %181 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %182) #7 - store %"class.std::allocator"* %84, %"class.std::allocator"** %44, align 8 - %183 = load %"class.std::allocator"*, %"class.std::allocator"** %44, align 8 - %184 = bitcast %"class.std::allocator"* %183 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %184, %"class.std::__new_allocator"** %13, align 8 - %185 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %13, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %83, 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) %84) - to label %186 unwind label %307 - -186: ; preds = %178 - store %"class.std::allocator"* %86, %"class.std::allocator"** %43, align 8 - %187 = load %"class.std::allocator"*, %"class.std::allocator"** %43, align 8 - %188 = bitcast %"class.std::allocator"* %187 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %188, %"class.std::__new_allocator"** %14, align 8 - %189 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %14, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %85, 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) %86) - to label %190 unwind label %311 - -190: ; preds = %186 - %191 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %83, %"class.std::__cxx11::basic_string"* noundef %85) - to label %192 unwind label %315 - -192: ; preds = %190 - %193 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %191) - to label %194 unwind label %315 - -194: ; preds = %192 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %85) #7 - store %"class.std::allocator"* %86, %"class.std::allocator"** %18, align 8 - %195 = load %"class.std::allocator"*, %"class.std::allocator"** %18, align 8 - %196 = bitcast %"class.std::allocator"* %195 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %196) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %83) #7 - store %"class.std::allocator"* %84, %"class.std::allocator"** %16, align 8 - %197 = load %"class.std::allocator"*, %"class.std::allocator"** %16, align 8 - %198 = bitcast %"class.std::allocator"* %197 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %198) #7 - ret i32 0 - -199: ; preds = %0 - %200 = landingpad { i8*, i32 } - cleanup - %201 = extractvalue { i8*, i32 } %200, 0 - store i8* %201, i8** %59, align 8 - %202 = extractvalue { i8*, i32 } %200, 1 - store i32 %202, i32* %60, align 4 - br label %214 - -203: ; preds = %90 - %204 = landingpad { i8*, i32 } - cleanup - %205 = extractvalue { i8*, i32 } %204, 0 - store i8* %205, i8** %59, align 8 - %206 = extractvalue { i8*, i32 } %204, 1 - store i32 %206, i32* %60, align 4 - br label %211 - -207: ; preds = %96, %94 - %208 = landingpad { i8*, i32 } - cleanup - %209 = extractvalue { i8*, i32 } %208, 0 - store i8* %209, i8** %59, align 8 - %210 = extractvalue { i8*, i32 } %208, 1 - store i32 %210, i32* %60, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %61) #7 - br label %211 - -211: ; preds = %207, %203 - store %"class.std::allocator"* %62, %"class.std::allocator"** %41, align 8 - %212 = load %"class.std::allocator"*, %"class.std::allocator"** %41, align 8 - %213 = bitcast %"class.std::allocator"* %212 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %213) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %57) #7 - br label %214 - -214: ; preds = %211, %199 - store %"class.std::allocator"* %58, %"class.std::allocator"** %39, align 8 - %215 = load %"class.std::allocator"*, %"class.std::allocator"** %39, align 8 - %216 = bitcast %"class.std::allocator"* %215 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %216) #7 - br label %325 - -217: ; preds = %98 - %218 = landingpad { i8*, i32 } - cleanup - %219 = extractvalue { i8*, i32 } %218, 0 - store i8* %219, i8** %59, align 8 - %220 = extractvalue { i8*, i32 } %218, 1 - store i32 %220, i32* %60, align 4 - br label %232 - -221: ; preds = %106 - %222 = landingpad { i8*, i32 } - cleanup - %223 = extractvalue { i8*, i32 } %222, 0 - store i8* %223, i8** %59, align 8 - %224 = extractvalue { i8*, i32 } %222, 1 - store i32 %224, i32* %60, align 4 - br label %229 - -225: ; preds = %112, %110 - %226 = landingpad { i8*, i32 } - cleanup - %227 = extractvalue { i8*, i32 } %226, 0 - store i8* %227, i8** %59, align 8 - %228 = extractvalue { i8*, i32 } %226, 1 - store i32 %228, i32* %60, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %65) #7 - br label %229 - -229: ; preds = %225, %221 - store %"class.std::allocator"* %66, %"class.std::allocator"** %37, align 8 - %230 = load %"class.std::allocator"*, %"class.std::allocator"** %37, align 8 - %231 = bitcast %"class.std::allocator"* %230 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %231) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %63) #7 - br label %232 - -232: ; preds = %229, %217 - store %"class.std::allocator"* %64, %"class.std::allocator"** %35, align 8 - %233 = load %"class.std::allocator"*, %"class.std::allocator"** %35, align 8 - %234 = bitcast %"class.std::allocator"* %233 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %234) #7 - br label %325 - -235: ; preds = %114 - %236 = landingpad { i8*, i32 } - cleanup - %237 = extractvalue { i8*, i32 } %236, 0 - store i8* %237, i8** %59, align 8 - %238 = extractvalue { i8*, i32 } %236, 1 - store i32 %238, i32* %60, align 4 - br label %250 - -239: ; preds = %122 - %240 = landingpad { i8*, i32 } - cleanup - %241 = extractvalue { i8*, i32 } %240, 0 - store i8* %241, i8** %59, align 8 - %242 = extractvalue { i8*, i32 } %240, 1 - store i32 %242, i32* %60, align 4 - br label %247 - -243: ; preds = %128, %126 - %244 = landingpad { i8*, i32 } - cleanup - %245 = extractvalue { i8*, i32 } %244, 0 - store i8* %245, i8** %59, align 8 - %246 = extractvalue { i8*, i32 } %244, 1 - store i32 %246, i32* %60, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %69) #7 - br label %247 - -247: ; preds = %243, %239 - store %"class.std::allocator"* %70, %"class.std::allocator"** %33, align 8 - %248 = load %"class.std::allocator"*, %"class.std::allocator"** %33, align 8 - %249 = bitcast %"class.std::allocator"* %248 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %249) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %67) #7 - br label %250 - -250: ; preds = %247, %235 - store %"class.std::allocator"* %68, %"class.std::allocator"** %31, align 8 - %251 = load %"class.std::allocator"*, %"class.std::allocator"** %31, align 8 - %252 = bitcast %"class.std::allocator"* %251 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %252) #7 - br label %325 - -253: ; preds = %130 - %254 = landingpad { i8*, i32 } - cleanup - %255 = extractvalue { i8*, i32 } %254, 0 - store i8* %255, i8** %59, align 8 - %256 = extractvalue { i8*, i32 } %254, 1 - store i32 %256, i32* %60, align 4 - br label %268 - -257: ; preds = %138 - %258 = landingpad { i8*, i32 } - cleanup - %259 = extractvalue { i8*, i32 } %258, 0 - store i8* %259, i8** %59, align 8 - %260 = extractvalue { i8*, i32 } %258, 1 - store i32 %260, i32* %60, align 4 - br label %265 - -261: ; preds = %144, %142 - %262 = landingpad { i8*, i32 } - cleanup - %263 = extractvalue { i8*, i32 } %262, 0 - store i8* %263, i8** %59, align 8 - %264 = extractvalue { i8*, i32 } %262, 1 - store i32 %264, i32* %60, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %73) #7 - br label %265 - -265: ; preds = %261, %257 - store %"class.std::allocator"* %74, %"class.std::allocator"** %29, align 8 - %266 = load %"class.std::allocator"*, %"class.std::allocator"** %29, align 8 - %267 = bitcast %"class.std::allocator"* %266 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %267) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %71) #7 - br label %268 - -268: ; preds = %265, %253 - store %"class.std::allocator"* %72, %"class.std::allocator"** %27, align 8 - %269 = load %"class.std::allocator"*, %"class.std::allocator"** %27, align 8 - %270 = bitcast %"class.std::allocator"* %269 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %270) #7 - br label %325 - -271: ; preds = %146 - %272 = landingpad { i8*, i32 } - cleanup - %273 = extractvalue { i8*, i32 } %272, 0 - store i8* %273, i8** %59, align 8 - %274 = extractvalue { i8*, i32 } %272, 1 - store i32 %274, i32* %60, align 4 - br label %286 - -275: ; preds = %154 - %276 = landingpad { i8*, i32 } - cleanup - %277 = extractvalue { i8*, i32 } %276, 0 - store i8* %277, i8** %59, align 8 - %278 = extractvalue { i8*, i32 } %276, 1 - store i32 %278, i32* %60, align 4 - br label %283 - -279: ; preds = %160, %158 - %280 = landingpad { i8*, i32 } - cleanup - %281 = extractvalue { i8*, i32 } %280, 0 - store i8* %281, i8** %59, align 8 - %282 = extractvalue { i8*, i32 } %280, 1 - store i32 %282, i32* %60, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %77) #7 - br label %283 - -283: ; preds = %279, %275 - store %"class.std::allocator"* %78, %"class.std::allocator"** %25, align 8 - %284 = load %"class.std::allocator"*, %"class.std::allocator"** %25, align 8 - %285 = bitcast %"class.std::allocator"* %284 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %285) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %75) #7 - br label %286 - -286: ; preds = %283, %271 - store %"class.std::allocator"* %76, %"class.std::allocator"** %23, align 8 - %287 = load %"class.std::allocator"*, %"class.std::allocator"** %23, align 8 - %288 = bitcast %"class.std::allocator"* %287 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %288) #7 - br label %325 - -289: ; preds = %162 - %290 = landingpad { i8*, i32 } - cleanup - %291 = extractvalue { i8*, i32 } %290, 0 - store i8* %291, i8** %59, align 8 - %292 = extractvalue { i8*, i32 } %290, 1 - store i32 %292, i32* %60, align 4 - br label %304 - -293: ; preds = %170 - %294 = landingpad { i8*, i32 } - cleanup - %295 = extractvalue { i8*, i32 } %294, 0 - store i8* %295, i8** %59, align 8 - %296 = extractvalue { i8*, i32 } %294, 1 - store i32 %296, i32* %60, align 4 - br label %301 - -297: ; preds = %176, %174 - %298 = landingpad { i8*, i32 } - cleanup - %299 = extractvalue { i8*, i32 } %298, 0 - store i8* %299, i8** %59, align 8 - %300 = extractvalue { i8*, i32 } %298, 1 - store i32 %300, i32* %60, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %81) #7 - br label %301 - -301: ; preds = %297, %293 - store %"class.std::allocator"* %82, %"class.std::allocator"** %21, align 8 - %302 = load %"class.std::allocator"*, %"class.std::allocator"** %21, align 8 - %303 = bitcast %"class.std::allocator"* %302 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %303) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %79) #7 - br label %304 - -304: ; preds = %301, %289 - store %"class.std::allocator"* %80, %"class.std::allocator"** %19, align 8 - %305 = load %"class.std::allocator"*, %"class.std::allocator"** %19, align 8 - %306 = bitcast %"class.std::allocator"* %305 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %306) #7 - br label %325 - -307: ; preds = %178 - %308 = landingpad { i8*, i32 } - cleanup - %309 = extractvalue { i8*, i32 } %308, 0 - store i8* %309, i8** %59, align 8 - %310 = extractvalue { i8*, i32 } %308, 1 - store i32 %310, i32* %60, align 4 - br label %322 - -311: ; preds = %186 - %312 = landingpad { i8*, i32 } - cleanup - %313 = extractvalue { i8*, i32 } %312, 0 - store i8* %313, i8** %59, align 8 - %314 = extractvalue { i8*, i32 } %312, 1 - store i32 %314, i32* %60, align 4 - br label %319 - -315: ; preds = %192, %190 - %316 = landingpad { i8*, i32 } - cleanup - %317 = extractvalue { i8*, i32 } %316, 0 - store i8* %317, i8** %59, align 8 - %318 = extractvalue { i8*, i32 } %316, 1 - store i32 %318, i32* %60, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %85) #7 - br label %319 - -319: ; preds = %315, %311 - store %"class.std::allocator"* %86, %"class.std::allocator"** %17, align 8 - %320 = load %"class.std::allocator"*, %"class.std::allocator"** %17, align 8 - %321 = bitcast %"class.std::allocator"* %320 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %321) #7 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %83) #7 - br label %322 - -322: ; preds = %319, %307 - store %"class.std::allocator"* %84, %"class.std::allocator"** %15, align 8 - %323 = load %"class.std::allocator"*, %"class.std::allocator"** %15, align 8 - %324 = bitcast %"class.std::allocator"* %323 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %324) #7 - br label %325 - -325: ; preds = %322, %304, %286, %268, %250, %232, %214 - %326 = load i8*, i8** %59, align 8 - %327 = load i32, i32* %60, align 4 - %328 = insertvalue { i8*, i32 } undef, i8* %326, 0 - %329 = insertvalue { i8*, i32 } %328, i32 %327, 1 - resume { i8*, i32 } %329 -} - -declare i32 @printf(i8* noundef, ...) #3 - -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 #3 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZSt12__str_concatINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEET_PKNS6_10value_typeENS6_9size_typeES9_SA_RKNS6_14allocator_typeE(%"class.std::__cxx11::basic_string"* noalias sret(%"class.std::__cxx11::basic_string") align 8 %0, i8* noundef %1, i64 noundef %2, i8* noundef %3, i64 noundef %4, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5) #2 comdat personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %7 = alloca %"class.std::__new_allocator"*, align 8 - %8 = alloca %"class.std::__new_allocator"*, align 8 - %9 = alloca %"class.std::allocator"*, align 8 - %10 = alloca %"class.std::allocator"*, align 8 - %11 = alloca i8*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca i8*, align 8 - %14 = alloca %"class.std::allocator"*, align 8 - %15 = alloca %"class.std::allocator"*, align 8 - %16 = alloca i8*, align 8 - %17 = alloca i8*, align 8 - %18 = alloca i64, align 8 - %19 = alloca i8*, align 8 - %20 = alloca i64, align 8 - %21 = alloca %"class.std::allocator"*, align 8 - %22 = alloca i1, align 1 - %23 = alloca %"class.std::allocator", align 1 - %24 = alloca i8*, align 8 - %25 = alloca i32, align 4 - %26 = bitcast %"class.std::__cxx11::basic_string"* %0 to i8* - store i8* %26, i8** %16, align 8 - store i8* %1, i8** %17, align 8 - store i64 %2, i64* %18, align 8 - store i8* %3, i8** %19, align 8 - store i64 %4, i64* %20, align 8 - store %"class.std::allocator"* %5, %"class.std::allocator"** %21, align 8 - store i1 false, i1* %22, align 1 - %27 = load %"class.std::allocator"*, %"class.std::allocator"** %21, align 8 - call void @llvm.experimental.noalias.scope.decl(metadata !10) - %28 = bitcast %"class.std::allocator"* %23 to i8* - store i8* %28, i8** %13, align 8, !noalias !10 - store %"class.std::allocator"* %27, %"class.std::allocator"** %14, align 8, !noalias !10 - %29 = load %"class.std::allocator"*, %"class.std::allocator"** %14, align 8, !noalias !10 - call void @llvm.experimental.noalias.scope.decl(metadata !13) - %30 = bitcast %"class.std::allocator"* %23 to i8* - store i8* %30, i8** %11, align 8, !noalias !13 - store %"class.std::allocator"* %29, %"class.std::allocator"** %12, align 8, !noalias !13 - %31 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8, !noalias !13 - store %"class.std::allocator"* %23, %"class.std::allocator"** %9, align 8 - store %"class.std::allocator"* %31, %"class.std::allocator"** %10, align 8 - %32 = load %"class.std::allocator"*, %"class.std::allocator"** %9, align 8 - %33 = bitcast %"class.std::allocator"* %32 to %"class.std::__new_allocator"* - %34 = load %"class.std::allocator"*, %"class.std::allocator"** %10, align 8 - %35 = bitcast %"class.std::allocator"* %34 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %33, %"class.std::__new_allocator"** %7, align 8 - store %"class.std::__new_allocator"* %35, %"class.std::__new_allocator"** %8, align 8 - %36 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %7, align 8 - 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) %23) #7 - store %"class.std::allocator"* %23, %"class.std::allocator"** %15, align 8 - %37 = load %"class.std::allocator"*, %"class.std::allocator"** %15, align 8 - %38 = bitcast %"class.std::allocator"* %37 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %38) #7 - %39 = load i64, i64* %18, align 8 - %40 = load i64, i64* %20, align 8 - %41 = add i64 %39, %40 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %41) - to label %42 unwind label %52 - -42: ; preds = %6 - %43 = load i8*, i8** %17, align 8 - %44 = load i64, i64* %18, align 8 - %45 = invoke noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i8* noundef %43, i64 noundef %44) - to label %46 unwind label %52 - -46: ; preds = %42 - %47 = load i8*, i8** %19, align 8 - %48 = load i64, i64* %20, align 8 - %49 = invoke noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i8* noundef %47, i64 noundef %48) - to label %50 unwind label %52 - -50: ; preds = %46 - store i1 true, i1* %22, align 1 - %51 = load i1, i1* %22, align 1 - br i1 %51, label %57, label %56 - -52: ; preds = %46, %42, %6 - %53 = landingpad { i8*, i32 } - cleanup - %54 = extractvalue { i8*, i32 } %53, 0 - store i8* %54, i8** %24, align 8 - %55 = extractvalue { i8*, i32 } %53, 1 - store i32 %55, i32* %25, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #7 - br label %58 - -56: ; preds = %50 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #7 - br label %57 - -57: ; preds = %56, %50 - ret void - -58: ; preds = %52 - %59 = load i8*, i8** %24, align 8 - %60 = load i32, i32* %25, align 4 - %61 = insertvalue { i8*, i32 } undef, i8* %59, 0 - %62 = insertvalue { i8*, i32 } %61, i32 %60, 1 - resume { i8*, i32 } %62 -} - -; Function Attrs: nounwind -declare noundef i8* @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE5c_strEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) #1 - -; Function Attrs: nounwind -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)) #1 - -; Function Attrs: nounwind -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 #1 - -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #3 - -declare noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i8* noundef, i64 noundef) #3 - -; Function Attrs: inaccessiblememonly nofree nosync nounwind willreturn -declare void @llvm.experimental.noalias.scope.decl(metadata) #6 - -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 = { 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 #2 = { 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 #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 = { 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 = { 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 = { inaccessiblememonly nofree nosync nounwind willreturn } -attributes #7 = { nounwind } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = !{!11} -!11 = distinct !{!11, !12, !"_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_: argument 0"} -!12 = distinct !{!12, !"_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_"} -!13 = !{!14} -!14 = distinct !{!14, !15, !"_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_: argument 0"} -!15 = distinct !{!15, !"_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/kmp-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/kmp-algorithm.ll deleted file mode 100644 index 5df68e028..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/kmp-algorithm.ll +++ /dev/null @@ -1,292 +0,0 @@ -; ModuleID = 'PE-benchmarks/kmp-algorithm.cpp' -source_filename = "PE-benchmarks/kmp-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -@.str = private unnamed_addr constant [27 x i8] c"Found pattern at index %d \00", align 1 -@__const.main.txt = private unnamed_addr constant [20 x i8] c"ABABDABACDABABCABAB\00", align 16 -@__const.main.pat = private unnamed_addr constant [10 x i8] c"ABABCABAB\00", align 1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9KMPSearchPcS_(i8* noundef %0, i8* noundef %1) #0 { - %3 = alloca i8*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %11 = load i8*, i8** %3, align 8 - %12 = call i64 @strlen(i8* noundef %11) #7 - %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* noundef %14) #7 - %16 = trunc i64 %15 to i32 - store i32 %16, i32* %6, align 4 - %17 = load i32, i32* %5, align 4 - %18 = zext i32 %17 to i64 - %19 = call i8* @llvm.stacksave() - store i8* %19, i8** %7, align 8 - %20 = alloca i32, i64 %18, align 16 - store i64 %18, i64* %8, align 8 - %21 = load i8*, i8** %3, align 8 - %22 = load i32, i32* %5, align 4 - call void @_Z15computeLPSArrayPciPi(i8* 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 - -23: ; preds = %92, %2 - %24 = load i32, i32* %9, align 4 - %25 = load i32, i32* %6, align 4 - %26 = icmp slt i32 %24, %25 - br i1 %26, label %27, label %93 - -27: ; preds = %23 - %28 = load i8*, i8** %3, align 8 - %29 = load i32, i32* %10, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i8, i8* %28, i64 %30 - %32 = load i8, i8* %31, align 1 - %33 = sext i8 %32 to i32 - %34 = load i8*, i8** %4, align 8 - %35 = load i32, i32* %9, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i8, i8* %34, i64 %36 - %38 = load i8, i8* %37, align 1 - %39 = sext i8 %38 to i32 - %40 = icmp eq i32 %33, %39 - br i1 %40, label %41, label %46 - -41: ; preds = %27 - %42 = load i32, i32* %10, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %10, align 4 - %44 = load i32, i32* %9, align 4 - %45 = add nsw i32 %44, 1 - store i32 %45, i32* %9, align 4 - br label %46 - -46: ; preds = %41, %27 - %47 = load i32, i32* %10, align 4 - %48 = load i32, i32* %5, align 4 - %49 = icmp eq i32 %47, %48 - br i1 %49, label %50, label %60 - -50: ; preds = %46 - %51 = load i32, i32* %9, align 4 - %52 = load i32, i32* %10, align 4 - %53 = sub nsw i32 %51, %52 - %54 = call i32 (i8*, ...) @printf(i8* 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 - %58 = getelementptr inbounds i32, i32* %20, i64 %57 - %59 = load i32, i32* %58, align 4 - store i32 %59, i32* %10, align 4 - br label %92 - -60: ; preds = %46 - %61 = load i32, i32* %9, align 4 - %62 = load i32, i32* %6, align 4 - %63 = icmp slt i32 %61, %62 - br i1 %63, label %64, label %91 - -64: ; preds = %60 - %65 = load i8*, i8** %3, align 8 - %66 = load i32, i32* %10, align 4 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds i8, i8* %65, i64 %67 - %69 = load i8, i8* %68, align 1 - %70 = sext i8 %69 to i32 - %71 = load i8*, i8** %4, align 8 - %72 = load i32, i32* %9, align 4 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds i8, i8* %71, i64 %73 - %75 = load i8, i8* %74, align 1 - %76 = sext i8 %75 to i32 - %77 = icmp ne i32 %70, %76 - br i1 %77, label %78, label %91 - -78: ; preds = %64 - %79 = load i32, i32* %10, align 4 - %80 = icmp ne i32 %79, 0 - br i1 %80, label %81, label %87 - -81: ; preds = %78 - %82 = load i32, i32* %10, align 4 - %83 = sub nsw i32 %82, 1 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds i32, i32* %20, i64 %84 - %86 = load i32, i32* %85, align 4 - store i32 %86, i32* %10, align 4 - br label %90 - -87: ; preds = %78 - %88 = load i32, i32* %9, align 4 - %89 = add nsw i32 %88, 1 - store i32 %89, i32* %9, align 4 - br label %90 - -90: ; preds = %87, %81 - br label %91 - -91: ; preds = %90, %64, %60 - br label %92 - -92: ; preds = %91, %50 - br label %23, !llvm.loop !6 - -93: ; preds = %23 - %94 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %94) - ret void -} - -; Function Attrs: nounwind readonly willreturn -declare i64 @strlen(i8* noundef) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #2 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z15computeLPSArrayPciPi(i8* noundef %0, i32 noundef %1, i32* noundef %2) #3 { - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32* %2, i32** %6, align 8 - store i32 0, i32* %7, align 4 - %9 = load i32*, i32** %6, align 8 - %10 = getelementptr inbounds i32, i32* %9, i64 0 - store i32 0, i32* %10, align 4 - store i32 1, i32* %8, align 4 - br label %11 - -11: ; preds = %57, %3 - %12 = load i32, i32* %8, align 4 - %13 = load i32, i32* %5, align 4 - %14 = icmp slt i32 %12, %13 - br i1 %14, label %15, label %58 - -15: ; preds = %11 - %16 = load i8*, i8** %4, align 8 - %17 = load i32, i32* %8, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds i8, i8* %16, i64 %18 - %20 = load i8, i8* %19, align 1 - %21 = sext i8 %20 to i32 - %22 = load i8*, i8** %4, align 8 - %23 = load i32, i32* %7, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds i8, i8* %22, i64 %24 - %26 = load i8, i8* %25, align 1 - %27 = sext i8 %26 to i32 - %28 = icmp eq i32 %21, %27 - br i1 %28, label %29, label %39 - -29: ; preds = %15 - %30 = load i32, i32* %7, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %7, align 4 - %32 = load i32, i32* %7, align 4 - %33 = load i32*, i32** %6, align 8 - %34 = load i32, i32* %8, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i32, i32* %33, i64 %35 - store i32 %32, i32* %36, align 4 - %37 = load i32, i32* %8, align 4 - %38 = add nsw i32 %37, 1 - store i32 %38, i32* %8, align 4 - br label %57 - -39: ; preds = %15 - %40 = load i32, i32* %7, align 4 - %41 = icmp ne i32 %40, 0 - br i1 %41, label %42, label %49 - -42: ; preds = %39 - %43 = load i32*, i32** %6, align 8 - %44 = load i32, i32* %7, align 4 - %45 = sub nsw i32 %44, 1 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds i32, i32* %43, i64 %46 - %48 = load i32, i32* %47, align 4 - store i32 %48, i32* %7, align 4 - br label %56 - -49: ; preds = %39 - %50 = load i32*, i32** %6, align 8 - %51 = load i32, i32* %8, align 4 - %52 = sext i32 %51 to i64 - %53 = getelementptr inbounds i32, i32* %50, i64 %52 - store i32 0, i32* %53, align 4 - %54 = load i32, i32* %8, align 4 - %55 = add nsw i32 %54, 1 - store i32 %55, i32* %8, align 4 - br label %56 - -56: ; preds = %49, %42 - br label %57 - -57: ; preds = %56, %29 - br label %11, !llvm.loop !8 - -58: ; preds = %11 - ret void -} - -declare i32 @printf(i8* noundef, ...) #4 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #5 { - %1 = alloca i32, align 4 - %2 = alloca [20 x i8], align 16 - %3 = alloca [10 x i8], align 1 - store i32 0, i32* %1, align 4 - %4 = bitcast [20 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 getelementptr inbounds ([20 x i8], [20 x i8]* @__const.main.txt, i32 0, i32 0), i64 20, i1 false) - %5 = bitcast [10 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %5, i8* align 1 getelementptr inbounds ([10 x i8], [10 x i8]* @__const.main.pat, i32 0, i32 0), i64 10, i1 false) - %6 = getelementptr inbounds [10 x i8], [10 x i8]* %3, i64 0, i64 0 - %7 = getelementptr inbounds [20 x i8], [20 x i8]* %2, i64 0, i64 0 - call void @_Z9KMPSearchPcS_(i8* noundef %6, i8* noundef %7) - ret i32 0 -} - -; 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 - -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 = { 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 = { 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 #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 = { argmemonly nofree nounwind willreturn } -attributes #7 = { nounwind readonly willreturn } - -!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"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/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 deleted file mode 100644 index d0adf0ed3..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll +++ /dev/null @@ -1,303 +0,0 @@ -; ModuleID = 'PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp' -source_filename = "PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@__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 global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [26 x i8] c"K'th smallest element is \00", align 1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z11kthSmallestPiiii(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 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32* %0, i32** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - %11 = load i32, i32* %9, align 4 - %12 = icmp sgt i32 %11, 0 - br i1 %12, label %13, label %63 - -13: ; preds = %4 - %14 = load i32, i32* %9, align 4 - %15 = load i32, i32* %8, align 4 - %16 = load i32, i32* %7, align 4 - %17 = sub nsw i32 %15, %16 - %18 = add nsw i32 %17, 1 - %19 = icmp sle i32 %14, %18 - br i1 %19, label %20, label %63 - -20: ; preds = %13 - %21 = load i32*, i32** %6, align 8 - %22 = load i32, i32* %7, align 4 - %23 = load i32, i32* %8, align 4 - %24 = call 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 - %27 = sub nsw i32 %25, %26 - %28 = load i32, i32* %9, align 4 - %29 = sub nsw i32 %28, 1 - %30 = icmp eq i32 %27, %29 - br i1 %30, label %31, label %37 - -31: ; preds = %20 - %32 = load i32*, i32** %6, align 8 - %33 = load i32, i32* %10, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds i32, i32* %32, i64 %34 - %36 = load i32, i32* %35, align 4 - store i32 %36, i32* %5, align 4 - br label %64 - -37: ; preds = %20 - %38 = load i32, i32* %10, align 4 - %39 = load i32, i32* %7, align 4 - %40 = sub nsw i32 %38, %39 - %41 = load i32, i32* %9, align 4 - %42 = sub nsw i32 %41, 1 - %43 = icmp sgt i32 %40, %42 - br i1 %43, label %44, label %51 - -44: ; preds = %37 - %45 = load i32*, i32** %6, align 8 - %46 = load i32, i32* %7, align 4 - %47 = load i32, i32* %10, align 4 - %48 = sub nsw i32 %47, 1 - %49 = load i32, i32* %9, align 4 - %50 = call 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 - -51: ; preds = %37 - %52 = load i32*, i32** %6, align 8 - %53 = load i32, i32* %10, align 4 - %54 = add nsw i32 %53, 1 - %55 = load i32, i32* %8, align 4 - %56 = load i32, i32* %9, align 4 - %57 = load i32, i32* %10, align 4 - %58 = sub nsw i32 %56, %57 - %59 = load i32, i32* %7, align 4 - %60 = add nsw i32 %58, %59 - %61 = sub nsw i32 %60, 1 - %62 = call 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 - -63: ; preds = %13, %4 - store i32 2147483647, i32* %5, align 4 - br label %64 - -64: ; preds = %63, %51, %44, %31 - %65 = load i32, i32* %5, align 4 - ret i32 %65 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z15randomPartitionPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #1 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %9 = load i32, i32* %6, align 4 - %10 = load i32, i32* %5, align 4 - %11 = sub nsw i32 %9, %10 - %12 = add nsw i32 %11, 1 - store i32 %12, i32* %7, align 4 - %13 = call i32 @rand() #6 - %14 = load i32, i32* %7, align 4 - %15 = srem i32 %13, %14 - store i32 %15, i32* %8, align 4 - %16 = load i32*, i32** %4, align 8 - %17 = load i32, i32* %5, align 4 - %18 = load i32, i32* %8, align 4 - %19 = add nsw i32 %17, %18 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds i32, i32* %16, i64 %20 - %22 = load i32*, i32** %4, align 8 - %23 = load i32, i32* %6, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds i32, i32* %22, i64 %24 - call void @_Z4swapPiS_(i32* 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 noundef i32 @_Z9partitionPiii(i32* noundef %26, i32 noundef %27, i32 noundef %28) - ret i32 %29 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z4swapPiS_(i32* noundef %0, i32* noundef %1) #1 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %6, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %3, align 8 - store i32 %9, i32* %10, align 4 - %11 = load i32, i32* %5, align 4 - %12 = load i32*, i32** %4, align 8 - store i32 %11, i32* %12, align 4 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z9partitionPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #1 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %10 = load i32*, i32** %4, align 8 - %11 = load i32, i32* %6, align 4 - %12 = sext i32 %11 to i64 - %13 = getelementptr inbounds i32, i32* %10, i64 %12 - %14 = load i32, i32* %13, align 4 - store i32 %14, i32* %7, align 4 - %15 = load i32, i32* %5, align 4 - store i32 %15, i32* %8, align 4 - %16 = load i32, i32* %5, align 4 - store i32 %16, i32* %9, align 4 - br label %17 - -17: ; preds = %42, %3 - %18 = load i32, i32* %9, align 4 - %19 = load i32, i32* %6, align 4 - %20 = sub nsw i32 %19, 1 - %21 = icmp sle i32 %18, %20 - br i1 %21, label %22, label %45 - -22: ; preds = %17 - %23 = load i32*, i32** %4, align 8 - %24 = load i32, i32* %9, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %23, i64 %25 - %27 = load i32, i32* %26, align 4 - %28 = load i32, i32* %7, align 4 - %29 = icmp sle i32 %27, %28 - br i1 %29, label %30, label %41 - -30: ; preds = %22 - %31 = load i32*, i32** %4, align 8 - %32 = load i32, i32* %8, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds i32, i32* %31, i64 %33 - %35 = load i32*, i32** %4, align 8 - %36 = load i32, i32* %9, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i32, i32* %35, i64 %37 - call void @_Z4swapPiS_(i32* 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 - br label %41 - -41: ; preds = %30, %22 - br label %42 - -42: ; preds = %41 - %43 = load i32, i32* %9, align 4 - %44 = add nsw i32 %43, 1 - store i32 %44, i32* %9, align 4 - br label %17, !llvm.loop !6 - -45: ; preds = %17 - %46 = load i32*, i32** %4, align 8 - %47 = load i32, i32* %8, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %46, i64 %48 - %50 = load i32*, i32** %4, align 8 - %51 = load i32, i32* %6, align 4 - %52 = sext i32 %51 to i64 - %53 = getelementptr inbounds i32, i32* %50, i64 %52 - call void @_Z4swapPiS_(i32* noundef %49, i32* noundef %53) - %54 = load i32, i32* %8, align 4 - ret i32 %54 -} - -; Function Attrs: nounwind -declare i32 @rand() #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [7 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([7 x i32]* @__const.main.arr to i8*), i64 28, i1 false) - store i32 7, i32* %3, align 4 - store i32 3, i32* %4, align 4 - %6 = call noundef 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -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 = { 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 = { 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 } - -!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-llvm14/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 deleted file mode 100644 index e5edd7b45..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll +++ /dev/null @@ -1,1760 +0,0 @@ -; ModuleID = 'PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp' -source_filename = "PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"struct.__gnu_cxx::__ops::_Iter_less_iter" = type { i8 } -%"struct.__gnu_cxx::__ops::_Iter_less_val" = type { i8 } -%"struct.__gnu_cxx::__ops::_Val_less_iter" = type { i8 } - -$_ZSt4sortIPiEvT_S1_ = comdat any - -$_ZSt6__sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops16__iter_less_iterEv = comdat any - -$_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_T1_ = comdat any - -$_ZSt4__lgIlET_S0_ = comdat any - -$_ZSt22__final_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_ = comdat any - -$_ZSt14__partial_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_ = comdat any - -$_ZSt27__unguarded_partition_pivotIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_T0_ = comdat any - -$_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_ = comdat any - -$_ZSt11__sort_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_ = comdat any - -$_ZSt11__make_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_ = comdat any - -$_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_ = comdat any - -$_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_RT0_ = comdat any - -$_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_ = comdat any - -$_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_Iter_less_iterEEvT_T0_S5_T1_T2_ = comdat any - -$_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_less_iterEEONSt16remove_referenceIT_E4typeEOS5_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_less_valC2ENS0_15_Iter_less_iterE = comdat any - -$_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_Iter_less_valEEvT_T0_S5_T1_RT2_ = comdat any - -$_ZNK9__gnu_cxx5__ops14_Iter_less_valclIPiiEEbT_RT0_ = comdat any - -$_ZSt22__move_median_to_firstIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_S4_T0_ = comdat any - -$_ZSt21__unguarded_partitionIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_S4_T0_ = comdat any - -$_ZSt9iter_swapIPiS0_EvT_T0_ = comdat any - -$_ZSt4swapIiENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_ = comdat any - -$_ZSt11__bit_widthImEiT_ = comdat any - -$_ZSt13__countl_zeroImEiT_ = comdat any - -$_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_ = comdat any - -$_ZSt26__unguarded_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_ = comdat any - -$_ZSt13move_backwardIPiS0_ET0_T_S2_S1_ = comdat any - -$_ZSt25__unguarded_linear_insertIPiN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops15__val_comp_iterENS0_15_Iter_less_iterE = comdat any - -$_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt12__miter_baseIPiET_S1_ = comdat any - -$_ZSt12__niter_wrapIPiET_RKS1_S1_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt12__niter_baseIPiET_S1_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiiEEPT0_PT_S6_S4_ = comdat any - -$_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneIiiEEvPT_PT0_ = comdat any - -$_ZNK9__gnu_cxx5__ops14_Val_less_iterclIiPiEEbRT_T0_ = comdat any - -@__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 global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [26 x i8] c"K'th smallest element is \00", align 1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z10findMedianPii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load i32*, i32** %3, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %4, align 4 - %8 = sext i32 %7 to i64 - %9 = getelementptr inbounds i32, i32* %6, i64 %8 - call void @_ZSt4sortIPiEvT_S1_(i32* noundef %5, i32* noundef %9) - %10 = load i32*, i32** %3, align 8 - %11 = load i32, i32* %4, align 4 - %12 = sdiv i32 %11, 2 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %10, i64 %13 - %15 = load i32, i32* %14, align 4 - ret i32 %15 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZSt4sortIPiEvT_S1_(i32* noundef %0, i32* noundef %1) #0 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %7 = load i32*, i32** %3, align 8 - %8 = load i32*, i32** %4, align 8 - call void @_ZN9__gnu_cxx5__ops16__iter_less_iterEv() - call void @_ZSt6__sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* noundef %7, i32* noundef %8) - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z11kthSmallestPiiii(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 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i8*, align 8 - %13 = alloca i64, align 8 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - store i32* %0, i32** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - %17 = load i32, i32* %9, align 4 - %18 = icmp sgt i32 %17, 0 - br i1 %18, label %19, label %142 - -19: ; preds = %4 - %20 = load i32, i32* %9, align 4 - %21 = load i32, i32* %8, align 4 - %22 = load i32, i32* %7, align 4 - %23 = sub nsw i32 %21, %22 - %24 = add nsw i32 %23, 1 - %25 = icmp sle i32 %20, %24 - br i1 %25, label %26, label %142 - -26: ; preds = %19 - %27 = load i32, i32* %8, align 4 - %28 = load i32, i32* %7, align 4 - %29 = sub nsw i32 %27, %28 - %30 = add nsw i32 %29, 1 - store i32 %30, i32* %10, align 4 - %31 = load i32, i32* %10, align 4 - %32 = add nsw i32 %31, 4 - %33 = sdiv i32 %32, 5 - %34 = zext i32 %33 to i64 - %35 = call i8* @llvm.stacksave() - store i8* %35, i8** %12, align 8 - %36 = alloca i32, i64 %34, align 16 - store i64 %34, i64* %13, align 8 - store i32 0, i32* %11, align 4 - br label %37 - -37: ; preds = %55, %26 - %38 = load i32, i32* %11, align 4 - %39 = load i32, i32* %10, align 4 - %40 = sdiv i32 %39, 5 - %41 = icmp slt i32 %38, %40 - br i1 %41, label %42, label %58 - -42: ; preds = %37 - %43 = load i32*, i32** %6, align 8 - %44 = load i32, i32* %7, align 4 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i32, i32* %43, i64 %45 - %47 = load i32, i32* %11, align 4 - %48 = mul nsw i32 %47, 5 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %46, i64 %49 - %51 = call 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 - store i32 %51, i32* %54, align 4 - br label %55 - -55: ; preds = %42 - %56 = load i32, i32* %11, align 4 - %57 = add nsw i32 %56, 1 - store i32 %57, i32* %11, align 4 - br label %37, !llvm.loop !6 - -58: ; preds = %37 - %59 = load i32, i32* %11, align 4 - %60 = mul nsw i32 %59, 5 - %61 = load i32, i32* %10, align 4 - %62 = icmp slt i32 %60, %61 - br i1 %62, label %63, label %80 - -63: ; preds = %58 - %64 = load i32*, i32** %6, align 8 - %65 = load i32, i32* %7, align 4 - %66 = sext i32 %65 to i64 - %67 = getelementptr inbounds i32, i32* %64, i64 %66 - %68 = load i32, i32* %11, align 4 - %69 = mul nsw i32 %68, 5 - %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds i32, i32* %67, i64 %70 - %72 = load i32, i32* %10, align 4 - %73 = srem i32 %72, 5 - %74 = call 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 - store i32 %74, i32* %77, align 4 - %78 = load i32, i32* %11, align 4 - %79 = add nsw i32 %78, 1 - store i32 %79, i32* %11, align 4 - br label %80 - -80: ; preds = %63, %58 - %81 = load i32, i32* %11, align 4 - %82 = icmp eq i32 %81, 1 - br i1 %82, label %83, label %89 - -83: ; preds = %80 - %84 = load i32, i32* %11, align 4 - %85 = sub nsw i32 %84, 1 - %86 = sext i32 %85 to i64 - %87 = getelementptr inbounds i32, i32* %36, i64 %86 - %88 = load i32, i32* %87, align 4 - br label %95 - -89: ; preds = %80 - %90 = load i32, i32* %11, align 4 - %91 = sub nsw i32 %90, 1 - %92 = load i32, i32* %11, align 4 - %93 = sdiv i32 %92, 2 - %94 = call noundef i32 @_Z11kthSmallestPiiii(i32* noundef %36, i32 noundef 0, i32 noundef %91, i32 noundef %93) - br label %95 - -95: ; preds = %89, %83 - %96 = phi i32 [ %88, %83 ], [ %94, %89 ] - store i32 %96, i32* %14, align 4 - %97 = load i32*, i32** %6, align 8 - %98 = load i32, i32* %7, align 4 - %99 = load i32, i32* %8, align 4 - %100 = load i32, i32* %14, align 4 - %101 = call 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 - %104 = sub nsw i32 %102, %103 - %105 = load i32, i32* %9, align 4 - %106 = sub nsw i32 %105, 1 - %107 = icmp eq i32 %104, %106 - br i1 %107, label %108, label %114 - -108: ; preds = %95 - %109 = load i32*, i32** %6, align 8 - %110 = load i32, i32* %15, align 4 - %111 = sext i32 %110 to i64 - %112 = getelementptr inbounds i32, i32* %109, i64 %111 - %113 = load i32, i32* %112, align 4 - store i32 %113, i32* %5, align 4 - store i32 1, i32* %16, align 4 - br label %140 - -114: ; preds = %95 - %115 = load i32, i32* %15, align 4 - %116 = load i32, i32* %7, align 4 - %117 = sub nsw i32 %115, %116 - %118 = load i32, i32* %9, align 4 - %119 = sub nsw i32 %118, 1 - %120 = icmp sgt i32 %117, %119 - br i1 %120, label %121, label %128 - -121: ; preds = %114 - %122 = load i32*, i32** %6, align 8 - %123 = load i32, i32* %7, align 4 - %124 = load i32, i32* %15, align 4 - %125 = sub nsw i32 %124, 1 - %126 = load i32, i32* %9, align 4 - %127 = call 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 - -128: ; preds = %114 - %129 = load i32*, i32** %6, align 8 - %130 = load i32, i32* %15, align 4 - %131 = add nsw i32 %130, 1 - %132 = load i32, i32* %8, align 4 - %133 = load i32, i32* %9, align 4 - %134 = load i32, i32* %15, align 4 - %135 = sub nsw i32 %133, %134 - %136 = load i32, i32* %7, align 4 - %137 = add nsw i32 %135, %136 - %138 = sub nsw i32 %137, 1 - %139 = call 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 - -140: ; preds = %128, %121, %108 - %141 = load i8*, i8** %12, align 8 - call void @llvm.stackrestore(i8* %141) - br label %143 - -142: ; preds = %19, %4 - store i32 2147483647, i32* %5, align 4 - br label %143 - -143: ; preds = %142, %140 - %144 = load i32, i32* %5, align 4 - ret i32 %144 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z9partitionPiiii(i32* noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #2 { - %5 = alloca i32*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32* %0, i32** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 %3, i32* %8, align 4 - %11 = load i32, i32* %6, align 4 - store i32 %11, i32* %9, align 4 - br label %12 - -12: ; preds = %26, %4 - %13 = load i32, i32* %9, align 4 - %14 = load i32, i32* %7, align 4 - %15 = icmp slt i32 %13, %14 - br i1 %15, label %16, label %29 - -16: ; preds = %12 - %17 = load i32*, i32** %5, align 8 - %18 = load i32, i32* %9, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds i32, i32* %17, i64 %19 - %21 = load i32, i32* %20, align 4 - %22 = load i32, i32* %8, align 4 - %23 = icmp eq i32 %21, %22 - br i1 %23, label %24, label %25 - -24: ; preds = %16 - br label %29 - -25: ; preds = %16 - br label %26 - -26: ; preds = %25 - %27 = load i32, i32* %9, align 4 - %28 = add nsw i32 %27, 1 - store i32 %28, i32* %9, align 4 - br label %12, !llvm.loop !8 - -29: ; preds = %24, %12 - %30 = load i32*, i32** %5, align 8 - %31 = load i32, i32* %9, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds i32, i32* %30, i64 %32 - %34 = load i32*, i32** %5, align 8 - %35 = load i32, i32* %7, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i32, i32* %34, i64 %36 - call void @_Z4swapPiS_(i32* 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 - store i32 %39, i32* %10, align 4 - br label %40 - -40: ; preds = %65, %29 - %41 = load i32, i32* %10, align 4 - %42 = load i32, i32* %7, align 4 - %43 = sub nsw i32 %42, 1 - %44 = icmp sle i32 %41, %43 - br i1 %44, label %45, label %68 - -45: ; preds = %40 - %46 = load i32*, i32** %5, align 8 - %47 = load i32, i32* %10, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %46, i64 %48 - %50 = load i32, i32* %49, align 4 - %51 = load i32, i32* %8, align 4 - %52 = icmp sle i32 %50, %51 - br i1 %52, label %53, label %64 - -53: ; preds = %45 - %54 = load i32*, i32** %5, align 8 - %55 = load i32, i32* %9, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i32, i32* %54, i64 %56 - %58 = load i32*, i32** %5, align 8 - %59 = load i32, i32* %10, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i32, i32* %58, i64 %60 - call void @_Z4swapPiS_(i32* 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 - br label %64 - -64: ; preds = %53, %45 - br label %65 - -65: ; preds = %64 - %66 = load i32, i32* %10, align 4 - %67 = add nsw i32 %66, 1 - store i32 %67, i32* %10, align 4 - br label %40, !llvm.loop !9 - -68: ; preds = %40 - %69 = load i32*, i32** %5, align 8 - %70 = load i32, i32* %9, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds i32, i32* %69, i64 %71 - %73 = load i32*, i32** %5, align 8 - %74 = load i32, i32* %7, align 4 - %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds i32, i32* %73, i64 %75 - call void @_Z4swapPiS_(i32* noundef %72, i32* noundef %76) - %77 = load i32, i32* %9, align 4 - ret i32 %77 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z4swapPiS_(i32* noundef %0, i32* noundef %1) #2 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %6, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %3, align 8 - store i32 %9, i32* %10, align 4 - %11 = load i32, i32* %5, align 4 - %12 = load i32*, i32** %4, align 8 - store i32 %11, i32* %12, align 4 - ret void -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [7 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([7 x i32]* @__const.main.arr to i8*), i64 28, i1 false) - store i32 7, i32* %3, align 4 - store i32 3, i32* %4, align 4 - %6 = call noundef 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -; 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) #0 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %8 = load i32*, i32** %4, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = icmp ne i32* %8, %9 - br i1 %10, label %11, label %24 - -11: ; preds = %2 - %12 = load i32*, i32** %4, align 8 - %13 = load i32*, i32** %5, align 8 - %14 = load i32*, i32** %5, align 8 - %15 = load i32*, i32** %4, align 8 - %16 = ptrtoint i32* %14 to i64 - %17 = ptrtoint i32* %15 to i64 - %18 = sub i64 %16, %17 - %19 = sdiv exact i64 %18, 4 - %20 = call noundef i64 @_ZSt4__lgIlET_S0_(i64 noundef %19) - %21 = mul nsw i64 %20, 2 - 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* noundef %22, i32* noundef %23) - br label %24 - -24: ; preds = %11, %2 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops16__iter_less_iterEv() #2 comdat { - ret void -} - -; 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) #0 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %9 = alloca i32*, align 8 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i64 %2, i64* %7, align 8 - br label %12 - -12: ; preds = %27, %3 - %13 = load i32*, i32** %6, align 8 - %14 = load i32*, i32** %5, align 8 - %15 = ptrtoint i32* %13 to i64 - %16 = ptrtoint i32* %14 to i64 - %17 = sub i64 %15, %16 - %18 = sdiv exact i64 %17, 4 - %19 = icmp sgt i64 %18, 16 - br i1 %19, label %20, label %37 - -20: ; preds = %12 - %21 = load i64, i64* %7, align 8 - %22 = icmp eq i64 %21, 0 - br i1 %22, label %23, label %27 - -23: ; preds = %20 - %24 = load i32*, i32** %5, align 8 - %25 = load i32*, i32** %6, align 8 - %26 = load i32*, i32** %6, align 8 - call void @_ZSt14__partial_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(i32* noundef %24, i32* noundef %25, i32* noundef %26) - br label %37 - -27: ; preds = %20 - %28 = load i64, i64* %7, align 8 - %29 = add nsw i64 %28, -1 - store i64 %29, i64* %7, align 8 - %30 = load i32*, i32** %5, align 8 - %31 = load i32*, i32** %6, align 8 - %32 = call 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* 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 !10 - -37: ; preds = %23, %12 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt4__lgIlET_S0_(i64 noundef %0) #2 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = call noundef i32 @_ZSt11__bit_widthImEiT_(i64 noundef %3) #8 - %5 = sub nsw i32 %4, 1 - %6 = sext i32 %5 to i64 - ret i64 %6 -} - -; 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) #0 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %4, align 8 - %11 = ptrtoint i32* %9 to i64 - %12 = ptrtoint i32* %10 to i64 - %13 = sub i64 %11, %12 - %14 = sdiv exact i64 %13, 4 - %15 = icmp sgt i64 %14, 16 - br i1 %15, label %16, label %23 - -16: ; preds = %2 - %17 = load i32*, i32** %4, align 8 - %18 = load i32*, i32** %4, align 8 - %19 = getelementptr inbounds i32, i32* %18, i64 16 - call void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* 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* 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* noundef %24, i32* noundef %25) - br label %26 - -26: ; preds = %23, %16 - ret void -} - -; 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) #0 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = load i32*, i32** %7, align 8 - call void @_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(i32* 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* noundef %12, i32* noundef %13, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %4) - ret void -} - -; 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) #0 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = load i32*, i32** %5, align 8 - %11 = load i32*, i32** %4, align 8 - %12 = ptrtoint i32* %10 to i64 - %13 = ptrtoint i32* %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 4 - %16 = sdiv i64 %15, 2 - %17 = getelementptr inbounds i32, i32* %9, i64 %16 - store i32* %17, i32** %6, align 8 - %18 = load i32*, i32** %4, align 8 - %19 = load i32*, i32** %4, align 8 - %20 = getelementptr inbounds i32, i32* %19, i64 1 - %21 = load i32*, i32** %6, align 8 - %22 = load i32*, i32** %5, align 8 - %23 = getelementptr inbounds i32, i32* %22, i64 -1 - call void @_ZSt22__move_median_to_firstIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_S4_T0_(i32* 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 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: 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) #0 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - call void @_ZSt11__make_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_(i32* 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 - -12: ; preds = %25, %3 - %13 = load i32*, i32** %8, align 8 - %14 = load i32*, i32** %7, align 8 - %15 = icmp ult i32* %13, %14 - br i1 %15, label %16, label %28 - -16: ; preds = %12 - %17 = load i32*, i32** %8, align 8 - %18 = load i32*, i32** %5, align 8 - %19 = call 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* 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 - br label %25 - -25: ; preds = %24 - %26 = load i32*, i32** %8, align 8 - %27 = getelementptr inbounds i32, i32* %26, i32 1 - store i32* %27, i32** %8, align 8 - br label %12, !llvm.loop !11 - -28: ; preds = %12 - ret void -} - -; 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) #0 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %6, align 8 - br label %7 - -7: ; preds = %15, %3 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = ptrtoint i32* %8 to i64 - %11 = ptrtoint i32* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 4 - %14 = icmp sgt i64 %13, 1 - br i1 %14, label %15, label %22 - -15: ; preds = %7 - %16 = load i32*, i32** %5, align 8 - %17 = getelementptr inbounds i32, i32* %16, i32 -1 - store i32* %17, i32** %5, align 8 - %18 = load i32*, i32** %4, align 8 - %19 = load i32*, i32** %5, align 8 - %20 = load i32*, i32** %5, align 8 - %21 = load %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %6, align 8 - call void @_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_RT0_(i32* 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: 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) #0 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %6, align 8 - %11 = load i32*, i32** %5, align 8 - %12 = load i32*, i32** %4, align 8 - %13 = ptrtoint i32* %11 to i64 - %14 = ptrtoint i32* %12 to i64 - %15 = sub i64 %13, %14 - %16 = sdiv exact i64 %15, 4 - %17 = icmp slt i64 %16, 2 - br i1 %17, label %18, label %19 - -18: ; preds = %3 - br label %47 - -19: ; preds = %3 - %20 = load i32*, i32** %5, align 8 - %21 = load i32*, i32** %4, align 8 - %22 = ptrtoint i32* %20 to i64 - %23 = ptrtoint i32* %21 to i64 - %24 = sub i64 %22, %23 - %25 = sdiv exact i64 %24, 4 - store i64 %25, i64* %7, align 8 - %26 = load i64, i64* %7, align 8 - %27 = sub nsw i64 %26, 2 - %28 = sdiv i64 %27, 2 - store i64 %28, i64* %8, align 8 - br label %29 - -29: ; preds = %19, %44 - %30 = load i32*, i32** %4, align 8 - %31 = load i64, i64* %8, align 8 - %32 = getelementptr inbounds i32, i32* %30, i64 %31 - %33 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %32) #8 - %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 noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %9) #8 - %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* 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 - -43: ; preds = %29 - br label %47 - -44: ; preds = %29 - %45 = load i64, i64* %8, align 8 - %46 = add nsw i64 %45, -1 - store i64 %46, i64* %8, align 8 - br label %29, !llvm.loop !13 - -47: ; preds = %43, %18 - ret void -} - -; 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) #2 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %6, align 8 - %11 = load i32, i32* %10, align 4 - %12 = icmp slt i32 %9, %11 - ret i1 %12 -} - -; Function Attrs: 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) #0 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_iter"* %3, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %8, align 8 - %11 = load i32*, i32** %7, align 8 - %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %11) #8 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %9, align 4 - %14 = load i32*, i32** %5, align 8 - %15 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %14) #8 - %16 = load i32, i32* %15, align 4 - %17 = load i32*, i32** %7, align 8 - store i32 %16, i32* %17, align 4 - %18 = load i32*, i32** %5, align 8 - %19 = load i32*, i32** %6, align 8 - %20 = load i32*, i32** %5, align 8 - %21 = ptrtoint i32* %19 to i64 - %22 = ptrtoint i32* %20 to i64 - %23 = sub i64 %21, %22 - %24 = sdiv exact i64 %23, 4 - %25 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %9) #8 - %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* noundef %18, i64 noundef 0, i64 noundef %24, i32 noundef %26) - ret void -} - -; 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) #2 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: 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) #0 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_val", align 1 - %13 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %6, align 8 - store i64 %1, i64* %7, align 8 - store i64 %2, i64* %8, align 8 - store i32 %3, i32* %9, align 4 - %14 = load i64, i64* %7, align 8 - store i64 %14, i64* %10, align 8 - %15 = load i64, i64* %7, align 8 - store i64 %15, i64* %11, align 8 - br label %16 - -16: ; preds = %37, %4 - %17 = load i64, i64* %11, align 8 - %18 = load i64, i64* %8, align 8 - %19 = sub nsw i64 %18, 1 - %20 = sdiv i64 %19, 2 - %21 = icmp slt i64 %17, %20 - br i1 %21, label %22, label %47 - -22: ; preds = %16 - %23 = load i64, i64* %11, align 8 - %24 = add nsw i64 %23, 1 - %25 = mul nsw i64 2, %24 - store i64 %25, i64* %11, align 8 - %26 = load i32*, i32** %6, align 8 - %27 = load i64, i64* %11, align 8 - %28 = getelementptr inbounds i32, i32* %26, i64 %27 - %29 = load i32*, i32** %6, align 8 - %30 = load i64, i64* %11, align 8 - %31 = sub nsw i64 %30, 1 - %32 = getelementptr inbounds i32, i32* %29, i64 %31 - %33 = call 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 - %35 = load i64, i64* %11, align 8 - %36 = add nsw i64 %35, -1 - store i64 %36, i64* %11, align 8 - br label %37 - -37: ; preds = %34, %22 - %38 = load i32*, i32** %6, align 8 - %39 = load i64, i64* %11, align 8 - %40 = getelementptr inbounds i32, i32* %38, i64 %39 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %40) #8 - %42 = load i32, i32* %41, align 4 - %43 = load i32*, i32** %6, align 8 - %44 = load i64, i64* %7, align 8 - %45 = getelementptr inbounds i32, i32* %43, i64 %44 - store i32 %42, i32* %45, align 4 - %46 = load i64, i64* %11, align 8 - store i64 %46, i64* %7, align 8 - br label %16, !llvm.loop !14 - -47: ; preds = %16 - %48 = load i64, i64* %8, align 8 - %49 = and i64 %48, 1 - %50 = icmp eq i64 %49, 0 - br i1 %50, label %51, label %72 - -51: ; preds = %47 - %52 = load i64, i64* %11, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub nsw i64 %53, 2 - %55 = sdiv i64 %54, 2 - %56 = icmp eq i64 %52, %55 - br i1 %56, label %57, label %72 - -57: ; preds = %51 - %58 = load i64, i64* %11, align 8 - %59 = add nsw i64 %58, 1 - %60 = mul nsw i64 2, %59 - store i64 %60, i64* %11, align 8 - %61 = load i32*, i32** %6, align 8 - %62 = load i64, i64* %11, align 8 - %63 = sub nsw i64 %62, 1 - %64 = getelementptr inbounds i32, i32* %61, i64 %63 - %65 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %64) #8 - %66 = load i32, i32* %65, align 4 - %67 = load i32*, i32** %6, align 8 - %68 = load i64, i64* %7, align 8 - %69 = getelementptr inbounds i32, i32* %67, i64 %68 - store i32 %66, i32* %69, align 4 - %70 = load i64, i64* %11, align 8 - %71 = sub nsw i64 %70, 1 - store i64 %71, i64* %7, align 8 - br label %72 - -72: ; preds = %57, %51, %47 - %73 = call 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) #8 - 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 noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %9) #8 - %78 = load i32, i32* %77, align 4 - 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: 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) #2 comdat { - %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %2, align 8 - ret %"struct.__gnu_cxx::__ops::_Iter_less_iter"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_less_valC2ENS0_15_Iter_less_iterE(%"struct.__gnu_cxx::__ops::_Iter_less_val"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_val"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_less_val"** %3, align 8 - %4 = load %"struct.__gnu_cxx::__ops::_Iter_less_val"*, %"struct.__gnu_cxx::__ops::_Iter_less_val"** %3, align 8 - ret void -} - -; Function Attrs: 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) #0 comdat { - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_val"*, align 8 - %11 = alloca i64, align 8 - store i32* %0, i32** %6, align 8 - store i64 %1, i64* %7, align 8 - store i64 %2, i64* %8, align 8 - store i32 %3, i32* %9, align 4 - store %"struct.__gnu_cxx::__ops::_Iter_less_val"* %4, %"struct.__gnu_cxx::__ops::_Iter_less_val"** %10, align 8 - %12 = load i64, i64* %7, align 8 - %13 = sub nsw i64 %12, 1 - %14 = sdiv i64 %13, 2 - store i64 %14, i64* %11, align 8 - br label %15 - -15: ; preds = %27, %5 - %16 = load i64, i64* %7, align 8 - %17 = load i64, i64* %8, align 8 - %18 = icmp sgt i64 %16, %17 - br i1 %18, label %19, label %25 - -19: ; preds = %15 - %20 = load %"struct.__gnu_cxx::__ops::_Iter_less_val"*, %"struct.__gnu_cxx::__ops::_Iter_less_val"** %10, align 8 - %21 = load i32*, i32** %6, align 8 - %22 = load i64, i64* %11, align 8 - %23 = getelementptr inbounds i32, i32* %21, i64 %22 - %24 = call 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 - %26 = phi i1 [ false, %15 ], [ %24, %19 ] - br i1 %26, label %27, label %40 - -27: ; preds = %25 - %28 = load i32*, i32** %6, align 8 - %29 = load i64, i64* %11, align 8 - %30 = getelementptr inbounds i32, i32* %28, i64 %29 - %31 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %30) #8 - %32 = load i32, i32* %31, align 4 - %33 = load i32*, i32** %6, align 8 - %34 = load i64, i64* %7, align 8 - %35 = getelementptr inbounds i32, i32* %33, i64 %34 - store i32 %32, i32* %35, align 4 - %36 = load i64, i64* %11, align 8 - store i64 %36, i64* %7, align 8 - %37 = load i64, i64* %7, align 8 - %38 = sub nsw i64 %37, 1 - %39 = sdiv i64 %38, 2 - store i64 %39, i64* %11, align 8 - br label %15, !llvm.loop !15 - -40: ; preds = %25 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %9) #8 - %42 = load i32, i32* %41, align 4 - %43 = load i32*, i32** %6, align 8 - %44 = load i64, i64* %7, align 8 - %45 = getelementptr inbounds i32, i32* %43, i64 %44 - store i32 %42, i32* %45, align 4 - ret void -} - -; Function Attrs: 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) #2 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_val"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_less_val"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_less_val"*, %"struct.__gnu_cxx::__ops::_Iter_less_val"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %6, align 8 - %11 = load i32, i32* %10, align 4 - %12 = icmp slt i32 %9, %11 - ret i1 %12 -} - -; Function Attrs: 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) #0 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32*, align 8 - store i32* %0, i32** %6, align 8 - store i32* %1, i32** %7, align 8 - store i32* %2, i32** %8, align 8 - store i32* %3, i32** %9, align 8 - %10 = load i32*, i32** %7, align 8 - %11 = load i32*, i32** %8, align 8 - %12 = call 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 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* 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 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* 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* noundef %28, i32* noundef %29) - br label %30 - -30: ; preds = %27, %24 - br label %31 - -31: ; preds = %30, %17 - br label %51 - -32: ; preds = %4 - %33 = load i32*, i32** %7, align 8 - %34 = load i32*, i32** %9, align 8 - %35 = call 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* 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 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* 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* noundef %47, i32* noundef %48) - br label %49 - -49: ; preds = %46, %43 - br label %50 - -50: ; preds = %49, %36 - br label %51 - -51: ; preds = %50, %31 - ret void -} - -; Function Attrs: 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) #2 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - br label %8 - -8: ; preds = %3, %32 - br label %9 - -9: ; preds = %13, %8 - %10 = load i32*, i32** %5, align 8 - %11 = load i32*, i32** %7, align 8 - %12 = call 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 !16 - -16: ; preds = %9 - %17 = load i32*, i32** %6, align 8 - %18 = getelementptr inbounds i32, i32* %17, i32 -1 - store i32* %18, i32** %6, align 8 - br label %19 - -19: ; preds = %23, %16 - %20 = load i32*, i32** %7, align 8 - %21 = load i32*, i32** %6, align 8 - %22 = call 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 !17 - -26: ; preds = %19 - %27 = load i32*, i32** %5, align 8 - %28 = load i32*, i32** %6, align 8 - %29 = icmp ult i32* %27, %28 - br i1 %29, label %32, label %30 - -30: ; preds = %26 - %31 = load i32*, i32** %5, align 8 - ret i32* %31 - -32: ; preds = %26 - %33 = load i32*, i32** %5, align 8 - %34 = load i32*, i32** %6, align 8 - call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* 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, !llvm.loop !18 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* noundef %0, i32* noundef %1) #2 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* noundef nonnull align 4 dereferenceable(4) %5, i32* noundef nonnull align 4 dereferenceable(4) %6) #8 - ret void -} - -; 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) #2 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 noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %6) #8 - %8 = load i32, i32* %7, align 4 - store i32 %8, i32* %5, align 4 - %9 = load i32*, i32** %4, align 8 - %10 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %9) #8 - %11 = load i32, i32* %10, align 4 - %12 = load i32*, i32** %3, align 8 - store i32 %11, i32* %12, align 4 - %13 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %5) #8 - %14 = load i32, i32* %13, align 4 - %15 = load i32*, i32** %4, align 8 - store i32 %14, i32* %15, align 4 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32 @_ZSt11__bit_widthImEiT_(i64 noundef %0) #2 comdat { - %2 = alloca i64, align 8 - %3 = alloca i32, align 4 - store i64 %0, i64* %2, align 8 - store i32 64, i32* %3, align 4 - %4 = load i64, i64* %2, align 8 - %5 = call noundef i32 @_ZSt13__countl_zeroImEiT_(i64 noundef %4) #8 - %6 = sub nsw i32 64, %5 - ret i32 %6 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32 @_ZSt13__countl_zeroImEiT_(i64 noundef %0) #2 comdat { - %2 = alloca i32, align 4 - %3 = alloca i64, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i64 %0, i64* %3, align 8 - store i32 64, i32* %4, align 4 - %9 = load i64, i64* %3, align 8 - %10 = icmp eq i64 %9, 0 - br i1 %10, label %11, label %12 - -11: ; preds = %1 - store i32 64, i32* %2, align 4 - br label %17 - -12: ; preds = %1 - store i32 64, i32* %5, align 4 - store i32 64, i32* %6, align 4 - store i32 32, i32* %7, align 4 - store i32 0, i32* %8, align 4 - %13 = load i64, i64* %3, align 8 - %14 = call i64 @llvm.ctlz.i64(i64 %13, i1 true) - %15 = trunc i64 %14 to i32 - %16 = sub nsw i32 %15, 0 - store i32 %16, i32* %2, align 4 - br label %17 - -17: ; preds = %12, %11 - %18 = load i32, i32* %2, align 4 - ret i32 %18 -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare i64 @llvm.ctlz.i64(i64, i1 immarg) #7 - -; 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) #0 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - %8 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %10 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %11 = load i32*, i32** %4, align 8 - %12 = load i32*, i32** %5, align 8 - %13 = icmp eq i32* %11, %12 - br i1 %13, label %14, label %15 - -14: ; preds = %2 - br label %44 - -15: ; preds = %2 - %16 = load i32*, i32** %4, align 8 - %17 = getelementptr inbounds i32, i32* %16, i64 1 - store i32* %17, i32** %6, align 8 - br label %18 - -18: ; preds = %41, %15 - %19 = load i32*, i32** %6, align 8 - %20 = load i32*, i32** %5, align 8 - %21 = icmp ne i32* %19, %20 - br i1 %21, label %22, label %44 - -22: ; preds = %18 - %23 = load i32*, i32** %6, align 8 - %24 = load i32*, i32** %4, align 8 - %25 = call 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 noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %27) #8 - %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 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) #8 - %36 = load i32, i32* %35, align 4 - %37 = load i32*, i32** %4, align 8 - store i32 %36, i32* %37, align 4 - br label %40 - -38: ; preds = %22 - %39 = load i32*, i32** %6, align 8 - call void @_ZN9__gnu_cxx5__ops15__val_comp_iterENS0_15_Iter_less_iterE() - call void @_ZSt25__unguarded_linear_insertIPiN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_(i32* noundef %39) - br label %40 - -40: ; preds = %38, %26 - br label %41 - -41: ; preds = %40 - %42 = load i32*, i32** %6, align 8 - %43 = getelementptr inbounds i32, i32* %42, i32 1 - store i32* %43, i32** %6, align 8 - br label %18, !llvm.loop !19 - -44: ; preds = %14, %18 - ret void -} - -; 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) #0 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %9 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %10 = load i32*, i32** %4, align 8 - store i32* %10, i32** %6, align 8 - br label %11 - -11: ; preds = %17, %2 - %12 = load i32*, i32** %6, align 8 - %13 = load i32*, i32** %5, align 8 - %14 = icmp ne i32* %12, %13 - br i1 %14, label %15, label %20 - -15: ; preds = %11 - %16 = load i32*, i32** %6, align 8 - call void @_ZN9__gnu_cxx5__ops15__val_comp_iterENS0_15_Iter_less_iterE() - call void @_ZSt25__unguarded_linear_insertIPiN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_(i32* 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 !20 - -20: ; preds = %11 - ret void -} - -; 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) #0 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = call noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %7) - %9 = load i32*, i32** %5, align 8 - %10 = call noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %9) - %11 = load i32*, i32** %6, align 8 - %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: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIPiN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_(i32* noundef %0) #0 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 noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %6) #8 - %8 = load i32, i32* %7, align 4 - store i32 %8, i32* %4, align 4 - %9 = load i32*, i32** %3, align 8 - store i32* %9, i32** %5, align 8 - %10 = load i32*, i32** %5, align 8 - %11 = getelementptr inbounds i32, i32* %10, i32 -1 - store i32* %11, i32** %5, align 8 - br label %12 - -12: ; preds = %15, %1 - %13 = load i32*, i32** %5, align 8 - %14 = call 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 noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %16) #8 - %18 = load i32, i32* %17, align 4 - %19 = load i32*, i32** %3, align 8 - store i32 %18, i32* %19, align 4 - %20 = load i32*, i32** %5, align 8 - store i32* %20, i32** %3, align 8 - %21 = load i32*, i32** %5, align 8 - %22 = getelementptr inbounds i32, i32* %21, i32 -1 - store i32* %22, i32** %5, align 8 - br label %12, !llvm.loop !21 - -23: ; preds = %12 - %24 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %4) #8 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15__val_comp_iterENS0_15_Iter_less_iterE() #2 comdat { - %1 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - ret void -} - -; 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) #0 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %7) #8 - %9 = load i32*, i32** %5, align 8 - %10 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %9) #8 - %11 = load i32*, i32** %6, align 8 - %12 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %11) #8 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %0) #2 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: 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) #2 comdat { - %3 = alloca i32**, align 8 - %4 = alloca i32*, align 8 - store i32** %0, i32*** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: 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) #0 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call 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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %0) #2 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: 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) #0 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call noundef i32* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiiEEPT0_PT_S6_S4_(i32* noundef %7, i32* noundef %8, i32* noundef %9) - ret i32* %10 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiiEEPT0_PT_S6_S4_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #0 comdat align 2 { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = ptrtoint i32* %8 to i64 - %11 = ptrtoint i32* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 4 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32*, i32** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32, i32* %17, i64 %19 - %21 = bitcast i32* %20 to i8* - %22 = load i32*, i32** %4, align 8 - %23 = bitcast i32* %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 4, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %21, i8* align 4 %23, i64 %25, i1 false) - br label %34 - -26: ; preds = %3 - %27 = load i64, i64* %7, align 8 - %28 = icmp eq i64 %27, 1 - br i1 %28, label %29, label %33 - -29: ; preds = %26 - %30 = load i32*, i32** %6, align 8 - %31 = getelementptr inbounds i32, i32* %30, i64 -1 - %32 = load i32*, i32** %4, align 8 - call void @_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneIiiEEvPT_PT0_(i32* noundef %31, i32* noundef %32) - br label %33 - -33: ; preds = %29, %26 - br label %34 - -34: ; preds = %33, %16 - %35 = load i32*, i32** %6, align 8 - %36 = load i64, i64* %7, align 8 - %37 = sub i64 0, %36 - %38 = getelementptr inbounds i32, i32* %35, i64 %37 - ret i32* %38 -} - -; Function Attrs: argmemonly nofree nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #4 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneIiiEEvPT_PT0_(i32* noundef %0, i32* noundef %1) #2 comdat align 2 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load i32*, i32** %4, align 8 - %6 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef nonnull align 4 dereferenceable(4) %5) #8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %3, align 8 - store i32 %7, i32* %8, align 4 - ret void -} - -; 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) #2 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"struct.__gnu_cxx::__ops::_Val_less_iter"* %0, %"struct.__gnu_cxx::__ops::_Val_less_iter"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"struct.__gnu_cxx::__ops::_Val_less_iter"*, %"struct.__gnu_cxx::__ops::_Val_less_iter"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %6, align 8 - %11 = load i32, i32* %10, align 4 - %12 = icmp slt i32 %9, %11 - ret i1 %12 -} - -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 willreturn } -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 = { 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 = { 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 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #8 = { nounwind } - -!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"} -!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-llvm14/largest-independent-set-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/largest-independent-set-problem.ll deleted file mode 100644 index e449e17b7..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/largest-independent-set-problem.ll +++ /dev/null @@ -1,292 +0,0 @@ -; ModuleID = 'PE-benchmarks/largest-independent-set-problem.cpp' -source_filename = "PE-benchmarks/largest-independent-set-problem.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.node = type { i32, i32, %class.node*, %class.node* } - -@_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 - -; 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 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp sgt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z4LISSP4node(%class.node* noundef %0) #1 { - %2 = alloca i32, align 4 - %3 = alloca %class.node*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store %class.node* %0, %class.node** %3, align 8 - %6 = load %class.node*, %class.node** %3, align 8 - %7 = icmp eq %class.node* %6, null - br i1 %7, label %8, label %9 - -8: ; preds = %1 - store i32 0, i32* %2, align 4 - br label %91 - -9: ; preds = %1 - %10 = load %class.node*, %class.node** %3, align 8 - %11 = getelementptr inbounds %class.node, %class.node* %10, i32 0, i32 1 - %12 = load i32, i32* %11, align 4 - %13 = icmp ne i32 %12, 0 - br i1 %13, label %14, label %18 - -14: ; preds = %9 - %15 = load %class.node*, %class.node** %3, align 8 - %16 = getelementptr inbounds %class.node, %class.node* %15, i32 0, i32 1 - %17 = load i32, i32* %16, align 4 - store i32 %17, i32* %2, align 4 - br label %91 - -18: ; preds = %9 - %19 = load %class.node*, %class.node** %3, align 8 - %20 = getelementptr inbounds %class.node, %class.node* %19, i32 0, i32 2 - %21 = load %class.node*, %class.node** %20, align 8 - %22 = icmp eq %class.node* %21, null - br i1 %22, label %23, label %31 - -23: ; preds = %18 - %24 = load %class.node*, %class.node** %3, align 8 - %25 = getelementptr inbounds %class.node, %class.node* %24, i32 0, i32 3 - %26 = load %class.node*, %class.node** %25, align 8 - %27 = icmp eq %class.node* %26, null - br i1 %27, label %28, label %31 - -28: ; preds = %23 - %29 = load %class.node*, %class.node** %3, align 8 - %30 = getelementptr inbounds %class.node, %class.node* %29, i32 0, i32 1 - store i32 1, i32* %30, align 4 - store i32 1, i32* %2, align 4 - br label %91 - -31: ; preds = %23, %18 - %32 = load %class.node*, %class.node** %3, align 8 - %33 = getelementptr inbounds %class.node, %class.node* %32, i32 0, i32 2 - %34 = load %class.node*, %class.node** %33, align 8 - %35 = call 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 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 - %41 = load %class.node*, %class.node** %3, align 8 - %42 = getelementptr inbounds %class.node, %class.node* %41, i32 0, i32 2 - %43 = load %class.node*, %class.node** %42, align 8 - %44 = icmp ne %class.node* %43, null - br i1 %44, label %45, label %61 - -45: ; preds = %31 - %46 = load %class.node*, %class.node** %3, align 8 - %47 = getelementptr inbounds %class.node, %class.node* %46, i32 0, i32 2 - %48 = load %class.node*, %class.node** %47, align 8 - %49 = getelementptr inbounds %class.node, %class.node* %48, i32 0, i32 2 - %50 = load %class.node*, %class.node** %49, align 8 - %51 = call 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 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 - store i32 %60, i32* %5, align 4 - br label %61 - -61: ; preds = %45, %31 - %62 = load %class.node*, %class.node** %3, align 8 - %63 = getelementptr inbounds %class.node, %class.node* %62, i32 0, i32 3 - %64 = load %class.node*, %class.node** %63, align 8 - %65 = icmp ne %class.node* %64, null - br i1 %65, label %66, label %82 - -66: ; preds = %61 - %67 = load %class.node*, %class.node** %3, align 8 - %68 = getelementptr inbounds %class.node, %class.node* %67, i32 0, i32 3 - %69 = load %class.node*, %class.node** %68, align 8 - %70 = getelementptr inbounds %class.node, %class.node* %69, i32 0, i32 2 - %71 = load %class.node*, %class.node** %70, align 8 - %72 = call 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 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 - store i32 %81, i32* %5, align 4 - br label %82 - -82: ; preds = %66, %61 - %83 = load i32, i32* %5, align 4 - %84 = load i32, i32* %4, align 4 - %85 = call 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 - %88 = load %class.node*, %class.node** %3, align 8 - %89 = getelementptr inbounds %class.node, %class.node* %88, i32 0, i32 1 - %90 = load i32, i32* %89, align 4 - store i32 %90, i32* %2, align 4 - br label %91 - -91: ; preds = %82, %28, %14, %8 - %92 = load i32, i32* %2, align 4 - ret i32 %92 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef %class.node* @_Z7newNodei(i32 noundef %0) #1 { - %2 = alloca i32, align 4 - %3 = alloca %class.node*, align 8 - store i32 %0, i32* %2, align 4 - %4 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 24) #6 - %5 = bitcast i8* %4 to %class.node* - %6 = bitcast %class.node* %5 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %6, i8 0, i64 24, i1 false) - store %class.node* %5, %class.node** %3, align 8 - %7 = load i32, i32* %2, align 4 - %8 = load %class.node*, %class.node** %3, align 8 - %9 = getelementptr inbounds %class.node, %class.node* %8, i32 0, i32 0 - store i32 %7, i32* %9, align 8 - %10 = load %class.node*, %class.node** %3, align 8 - %11 = getelementptr inbounds %class.node, %class.node* %10, i32 0, i32 3 - store %class.node* null, %class.node** %11, align 8 - %12 = load %class.node*, %class.node** %3, align 8 - %13 = getelementptr inbounds %class.node, %class.node* %12, i32 0, i32 2 - store %class.node* null, %class.node** %13, align 8 - %14 = load %class.node*, %class.node** %3, align 8 - %15 = getelementptr inbounds %class.node, %class.node* %14, i32 0, i32 1 - store i32 0, i32* %15, align 4 - %16 = load %class.node*, %class.node** %3, align 8 - ret %class.node* %16 -} - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #3 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #4 { - %1 = alloca i32, align 4 - %2 = alloca %class.node*, align 8 - store i32 0, i32* %1, align 4 - %3 = call noundef %class.node* @_Z7newNodei(i32 noundef 20) - store %class.node* %3, %class.node** %2, align 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 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 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 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 - %21 = getelementptr inbounds %class.node, %class.node* %20, i32 0, i32 3 - %22 = load %class.node*, %class.node** %21, align 8 - %23 = getelementptr inbounds %class.node, %class.node* %22, i32 0, i32 2 - store %class.node* %17, %class.node** %23, align 8 - %24 = call 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 - %28 = getelementptr inbounds %class.node, %class.node* %27, i32 0, i32 3 - %29 = load %class.node*, %class.node** %28, align 8 - %30 = getelementptr inbounds %class.node, %class.node* %29, i32 0, i32 3 - store %class.node* %24, %class.node** %30, align 8 - %31 = call 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 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 noundef 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 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 noundef 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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -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 = { 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 = { 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 = { "frame-pointer"="all" "no-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, !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-llvm14/largest-sum-contiguous-subarray.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/largest-sum-contiguous-subarray.ll deleted file mode 100644 index e0b74c656..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/largest-sum-contiguous-subarray.ll +++ /dev/null @@ -1,164 +0,0 @@ -; ModuleID = 'PE-benchmarks/largest-sum-contiguous-subarray.cpp' -source_filename = "PE-benchmarks/largest-sum-contiguous-subarray.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 -@__const.main.a = private unnamed_addr constant [8 x i32] [i32 -2, i32 -3, i32 4, i32 -1, i32 -2, i32 1, i32 5, i32 -3], align 16 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z14maxSubArraySumPii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 -2147483648, i32* %5, align 4 - store i32 0, i32* %6, align 4 - store i32 0, i32* %7, align 4 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - store i32 0, i32* %10, align 4 - br label %11 - -11: ; preds = %37, %2 - %12 = load i32, i32* %10, align 4 - %13 = load i32, i32* %4, align 4 - %14 = icmp slt i32 %12, %13 - br i1 %14, label %15, label %40 - -15: ; preds = %11 - %16 = load i32*, i32** %3, align 8 - %17 = load i32, i32* %10, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds i32, i32* %16, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = load i32, i32* %6, align 4 - %22 = add nsw i32 %21, %20 - store i32 %22, i32* %6, align 4 - %23 = load i32, i32* %5, align 4 - %24 = load i32, i32* %6, align 4 - %25 = icmp slt i32 %23, %24 - br i1 %25, label %26, label %30 - -26: ; preds = %15 - %27 = load i32, i32* %6, align 4 - store i32 %27, i32* %5, align 4 - %28 = load i32, i32* %9, align 4 - store i32 %28, i32* %7, align 4 - %29 = load i32, i32* %10, align 4 - store i32 %29, i32* %8, align 4 - br label %30 - -30: ; preds = %26, %15 - %31 = load i32, i32* %6, align 4 - %32 = icmp slt i32 %31, 0 - br i1 %32, label %33, label %36 - -33: ; preds = %30 - store i32 0, i32* %6, align 4 - %34 = load i32, i32* %10, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %9, align 4 - br label %36 - -36: ; preds = %33, %30 - br label %37 - -37: ; preds = %36 - %38 = load i32, i32* %10, align 4 - %39 = add nsw i32 %38, 1 - store i32 %39, i32* %10, align 4 - br label %11, !llvm.loop !6 - -40: ; preds = %11 - %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 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 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 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 noundef 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 - -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 - -; Function Attrs: cold noreturn nounwind -declare void @llvm.trap() #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [8 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [8 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([8 x i32]* @__const.main.a to i8*), i64 32, i1 false) - store i32 8, i32* %3, align 4 - %6 = getelementptr inbounds [8 x i32], [8 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = call noundef i32 @_Z14maxSubArraySumPii(i32* noundef %6, i32 noundef %7) - store i32 %8, i32* %4, align 4 - ret i32 0 -} - -; 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 = { 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 = { cold noreturn nounwind } -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, !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-llvm14/lexicographic-rank-of-a-string.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/lexicographic-rank-of-a-string.ll deleted file mode 100644 index 3a4c2fae8..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/lexicographic-rank-of-a-string.ll +++ /dev/null @@ -1,207 +0,0 @@ -; ModuleID = 'PE-benchmarks/lexicographic-rank-of-a-string.cpp' -source_filename = "PE-benchmarks/lexicographic-rank-of-a-string.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@__const.main.str = private unnamed_addr constant [7 x i8] c"string\00", align 1 -@_ZSt4cout = external global %"class.std::basic_ostream", align 8 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z4facti(i32 noundef %0) #0 { - %2 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %3 = load i32, i32* %2, align 4 - %4 = icmp sle i32 %3, 1 - br i1 %4, label %5, label %6 - -5: ; preds = %1 - br label %12 - -6: ; preds = %1 - %7 = load i32, i32* %2, align 4 - %8 = load i32, i32* %2, align 4 - %9 = sub nsw i32 %8, 1 - %10 = call noundef i32 @_Z4facti(i32 noundef %9) - %11 = mul nsw i32 %7, %10 - br label %12 - -12: ; preds = %6, %5 - %13 = phi i32 [ 1, %5 ], [ %11, %6 ] - ret i32 %13 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z18findSmallerInRightPcii(i8* noundef %0, i32 noundef %1, i32 noundef %2) #1 { - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - store i32 0, i32* %7, align 4 - %9 = load i32, i32* %5, align 4 - %10 = add nsw i32 %9, 1 - store i32 %10, i32* %8, align 4 - br label %11 - -11: ; preds = %33, %3 - %12 = load i32, i32* %8, align 4 - %13 = load i32, i32* %6, align 4 - %14 = icmp sle i32 %12, %13 - br i1 %14, label %15, label %36 - -15: ; preds = %11 - %16 = load i8*, i8** %4, align 8 - %17 = load i32, i32* %8, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds i8, i8* %16, i64 %18 - %20 = load i8, i8* %19, align 1 - %21 = sext i8 %20 to i32 - %22 = load i8*, i8** %4, align 8 - %23 = load i32, i32* %5, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds i8, i8* %22, i64 %24 - %26 = load i8, i8* %25, align 1 - %27 = sext i8 %26 to i32 - %28 = icmp slt i32 %21, %27 - br i1 %28, label %29, label %32 - -29: ; preds = %15 - %30 = load i32, i32* %7, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %7, align 4 - br label %32 - -32: ; preds = %29, %15 - br label %33 - -33: ; preds = %32 - %34 = load i32, i32* %8, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %8, align 4 - br label %11, !llvm.loop !6 - -36: ; preds = %11 - %37 = load i32, i32* %7, align 4 - ret i32 %37 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z8findRankPc(i8* noundef %0) #0 { - %2 = alloca i8*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store i8* %0, i8** %2, align 8 - %8 = load i8*, i8** %2, align 8 - %9 = call i64 @strlen(i8* noundef %8) #6 - %10 = trunc i64 %9 to i32 - store i32 %10, i32* %3, align 4 - %11 = load i32, i32* %3, align 4 - %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 - br label %13 - -13: ; preds = %33, %1 - %14 = load i32, i32* %7, align 4 - %15 = load i32, i32* %3, align 4 - %16 = icmp slt i32 %14, %15 - br i1 %16, label %17, label %36 - -17: ; preds = %13 - %18 = load i32, i32* %3, align 4 - %19 = load i32, i32* %7, align 4 - %20 = sub nsw i32 %18, %19 - %21 = load i32, i32* %4, align 4 - %22 = sdiv i32 %21, %20 - store i32 %22, i32* %4, align 4 - %23 = load i8*, i8** %2, align 8 - %24 = load i32, i32* %7, align 4 - %25 = load i32, i32* %3, align 4 - %26 = sub nsw i32 %25, 1 - %27 = call 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 - %30 = mul nsw i32 %28, %29 - %31 = load i32, i32* %5, align 4 - %32 = add nsw i32 %31, %30 - store i32 %32, i32* %5, align 4 - br label %33 - -33: ; preds = %17 - %34 = load i32, i32* %7, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %7, align 4 - br label %13, !llvm.loop !8 - -36: ; preds = %13 - %37 = load i32, i32* %5, align 4 - ret i32 %37 -} - -; Function Attrs: nounwind readonly willreturn -declare i64 @strlen(i8* noundef) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -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 = { 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 = { 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, !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"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-bitonic-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-bitonic-subsequence.ll deleted file mode 100644 index 9e4a40a56..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-bitonic-subsequence.ll +++ /dev/null @@ -1,367 +0,0 @@ -; ModuleID = 'PE-benchmarks/longest-bitonic-subsequence.cpp' -source_filename = "PE-benchmarks/longest-bitonic-subsequence.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const.main.arr = private unnamed_addr constant [16 x i32] [i32 0, i32 8, i32 4, i32 12, i32 2, i32 10, i32 6, i32 14, i32 1, i32 9, i32 5, i32 13, i32 3, i32 11, i32 7, i32 15], align 16 -@.str = private unnamed_addr constant [21 x i8] c"Length of LBS is %d\0A\00", align 1 - -; Function Attrs: 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 - %6 = alloca i32, align 4 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %10 = load i32, i32* %4, align 4 - %11 = sext i32 %10 to i64 - %12 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %11, i64 4) - %13 = extractvalue { i64, i1 } %12, 1 - %14 = extractvalue { i64, i1 } %12, 0 - %15 = select i1 %13, i64 -1, i64 %14 - %16 = call noalias 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 - br label %18 - -18: ; preds = %27, %2 - %19 = load i32, i32* %5, align 4 - %20 = load i32, i32* %4, align 4 - %21 = icmp slt i32 %19, %20 - br i1 %21, label %22, label %30 - -22: ; preds = %18 - %23 = load i32*, i32** %7, align 8 - %24 = load i32, i32* %5, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %23, i64 %25 - store i32 1, i32* %26, align 4 - br label %27 - -27: ; preds = %22 - %28 = load i32, i32* %5, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %5, align 4 - br label %18, !llvm.loop !6 - -30: ; preds = %18 - store i32 1, i32* %5, align 4 - br label %31 - -31: ; preds = %81, %30 - %32 = load i32, i32* %5, align 4 - %33 = load i32, i32* %4, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %84 - -35: ; preds = %31 - store i32 0, i32* %6, align 4 - br label %36 - -36: ; preds = %77, %35 - %37 = load i32, i32* %6, align 4 - %38 = load i32, i32* %5, align 4 - %39 = icmp slt i32 %37, %38 - br i1 %39, label %40, label %80 - -40: ; preds = %36 - %41 = load i32*, i32** %3, align 8 - %42 = load i32, i32* %5, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %41, i64 %43 - %45 = load i32, i32* %44, align 4 - %46 = load i32*, i32** %3, align 8 - %47 = load i32, i32* %6, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %46, i64 %48 - %50 = load i32, i32* %49, align 4 - %51 = icmp sgt i32 %45, %50 - br i1 %51, label %52, label %76 - -52: ; preds = %40 - %53 = load i32*, i32** %7, align 8 - %54 = load i32, i32* %5, align 4 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i32, i32* %53, i64 %55 - %57 = load i32, i32* %56, align 4 - %58 = load i32*, i32** %7, align 8 - %59 = load i32, i32* %6, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i32, i32* %58, i64 %60 - %62 = load i32, i32* %61, align 4 - %63 = add nsw i32 %62, 1 - %64 = icmp slt i32 %57, %63 - br i1 %64, label %65, label %76 - -65: ; preds = %52 - %66 = load i32*, i32** %7, align 8 - %67 = load i32, i32* %6, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds i32, i32* %66, i64 %68 - %70 = load i32, i32* %69, align 4 - %71 = add nsw i32 %70, 1 - %72 = load i32*, i32** %7, align 8 - %73 = load i32, i32* %5, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds i32, i32* %72, i64 %74 - store i32 %71, i32* %75, align 4 - br label %76 - -76: ; preds = %65, %52, %40 - br label %77 - -77: ; preds = %76 - %78 = load i32, i32* %6, align 4 - %79 = add nsw i32 %78, 1 - store i32 %79, i32* %6, align 4 - br label %36, !llvm.loop !8 - -80: ; preds = %36 - br label %81 - -81: ; preds = %80 - %82 = load i32, i32* %5, align 4 - %83 = add nsw i32 %82, 1 - store i32 %83, i32* %5, align 4 - br label %31, !llvm.loop !9 - -84: ; preds = %31 - %85 = load i32, i32* %4, align 4 - %86 = sext i32 %85 to i64 - %87 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %86, i64 4) - %88 = extractvalue { i64, i1 } %87, 1 - %89 = extractvalue { i64, i1 } %87, 0 - %90 = select i1 %88, i64 -1, i64 %89 - %91 = call noalias 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 - br label %93 - -93: ; preds = %102, %84 - %94 = load i32, i32* %5, align 4 - %95 = load i32, i32* %4, align 4 - %96 = icmp slt i32 %94, %95 - br i1 %96, label %97, label %105 - -97: ; preds = %93 - %98 = load i32*, i32** %8, align 8 - %99 = load i32, i32* %5, align 4 - %100 = sext i32 %99 to i64 - %101 = getelementptr inbounds i32, i32* %98, i64 %100 - store i32 1, i32* %101, align 4 - br label %102 - -102: ; preds = %97 - %103 = load i32, i32* %5, align 4 - %104 = add nsw i32 %103, 1 - store i32 %104, i32* %5, align 4 - br label %93, !llvm.loop !10 - -105: ; preds = %93 - %106 = load i32, i32* %4, align 4 - %107 = sub nsw i32 %106, 2 - store i32 %107, i32* %5, align 4 - br label %108 - -108: ; preds = %159, %105 - %109 = load i32, i32* %5, align 4 - %110 = icmp sge i32 %109, 0 - br i1 %110, label %111, label %162 - -111: ; preds = %108 - %112 = load i32, i32* %4, align 4 - %113 = sub nsw i32 %112, 1 - store i32 %113, i32* %6, align 4 - br label %114 - -114: ; preds = %155, %111 - %115 = load i32, i32* %6, align 4 - %116 = load i32, i32* %5, align 4 - %117 = icmp sgt i32 %115, %116 - br i1 %117, label %118, label %158 - -118: ; preds = %114 - %119 = load i32*, i32** %3, align 8 - %120 = load i32, i32* %5, align 4 - %121 = sext i32 %120 to i64 - %122 = getelementptr inbounds i32, i32* %119, i64 %121 - %123 = load i32, i32* %122, align 4 - %124 = load i32*, i32** %3, align 8 - %125 = load i32, i32* %6, align 4 - %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds i32, i32* %124, i64 %126 - %128 = load i32, i32* %127, align 4 - %129 = icmp sgt i32 %123, %128 - br i1 %129, label %130, label %154 - -130: ; preds = %118 - %131 = load i32*, i32** %8, align 8 - %132 = load i32, i32* %5, align 4 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds i32, i32* %131, i64 %133 - %135 = load i32, i32* %134, align 4 - %136 = load i32*, i32** %8, align 8 - %137 = load i32, i32* %6, align 4 - %138 = sext i32 %137 to i64 - %139 = getelementptr inbounds i32, i32* %136, i64 %138 - %140 = load i32, i32* %139, align 4 - %141 = add nsw i32 %140, 1 - %142 = icmp slt i32 %135, %141 - br i1 %142, label %143, label %154 - -143: ; preds = %130 - %144 = load i32*, i32** %8, align 8 - %145 = load i32, i32* %6, align 4 - %146 = sext i32 %145 to i64 - %147 = getelementptr inbounds i32, i32* %144, i64 %146 - %148 = load i32, i32* %147, align 4 - %149 = add nsw i32 %148, 1 - %150 = load i32*, i32** %8, align 8 - %151 = load i32, i32* %5, align 4 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds i32, i32* %150, i64 %152 - store i32 %149, i32* %153, align 4 - br label %154 - -154: ; preds = %143, %130, %118 - br label %155 - -155: ; preds = %154 - %156 = load i32, i32* %6, align 4 - %157 = add nsw i32 %156, -1 - store i32 %157, i32* %6, align 4 - br label %114, !llvm.loop !11 - -158: ; preds = %114 - br label %159 - -159: ; preds = %158 - %160 = load i32, i32* %5, align 4 - %161 = add nsw i32 %160, -1 - store i32 %161, i32* %5, align 4 - br label %108, !llvm.loop !12 - -162: ; preds = %108 - %163 = load i32*, i32** %7, align 8 - %164 = getelementptr inbounds i32, i32* %163, i64 0 - %165 = load i32, i32* %164, align 4 - %166 = load i32*, i32** %8, align 8 - %167 = getelementptr inbounds i32, i32* %166, i64 0 - %168 = load i32, i32* %167, align 4 - %169 = add nsw i32 %165, %168 - %170 = sub nsw i32 %169, 1 - store i32 %170, i32* %9, align 4 - store i32 1, i32* %5, align 4 - br label %171 - -171: ; preds = %204, %162 - %172 = load i32, i32* %5, align 4 - %173 = load i32, i32* %4, align 4 - %174 = icmp slt i32 %172, %173 - br i1 %174, label %175, label %207 - -175: ; preds = %171 - %176 = load i32*, i32** %7, align 8 - %177 = load i32, i32* %5, align 4 - %178 = sext i32 %177 to i64 - %179 = getelementptr inbounds i32, i32* %176, i64 %178 - %180 = load i32, i32* %179, align 4 - %181 = load i32*, i32** %8, align 8 - %182 = load i32, i32* %5, align 4 - %183 = sext i32 %182 to i64 - %184 = getelementptr inbounds i32, i32* %181, i64 %183 - %185 = load i32, i32* %184, align 4 - %186 = add nsw i32 %180, %185 - %187 = sub nsw i32 %186, 1 - %188 = load i32, i32* %9, align 4 - %189 = icmp sgt i32 %187, %188 - br i1 %189, label %190, label %203 - -190: ; preds = %175 - %191 = load i32*, i32** %7, align 8 - %192 = load i32, i32* %5, align 4 - %193 = sext i32 %192 to i64 - %194 = getelementptr inbounds i32, i32* %191, i64 %193 - %195 = load i32, i32* %194, align 4 - %196 = load i32*, i32** %8, align 8 - %197 = load i32, i32* %5, align 4 - %198 = sext i32 %197 to i64 - %199 = getelementptr inbounds i32, i32* %196, i64 %198 - %200 = load i32, i32* %199, align 4 - %201 = add nsw i32 %195, %200 - %202 = sub nsw i32 %201, 1 - store i32 %202, i32* %9, align 4 - br label %203 - -203: ; preds = %190, %175 - br label %204 - -204: ; preds = %203 - %205 = load i32, i32* %5, align 4 - %206 = add nsw i32 %205, 1 - store i32 %206, i32* %5, align 4 - br label %171, !llvm.loop !13 - -207: ; preds = %171 - %208 = load i32, i32* %9, align 4 - ret i32 %208 -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; 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 - store i32 0, i32* %1, align 4 - %4 = bitcast [16 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([16 x i32]* @__const.main.arr to i8*), i64 64, i1 false) - store i32 16, i32* %3, align 4 - %5 = getelementptr inbounds [16 x i32], [16 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = call 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -declare i32 @printf(i8* noundef, ...) #5 - -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) "frame-pointer"="all" "no-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, !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"} -!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-llvm14/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 deleted file mode 100644 index 221e7bc44..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-even-length-substring-sum-first-second-half.ll +++ /dev/null @@ -1,268 +0,0 @@ -; ModuleID = 'PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp' -source_filename = "PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@__const.main.str = private unnamed_addr constant [7 x i8] c"153803\00", align 1 -@_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 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z10findLengthPc(i8* noundef %0) #0 { - %2 = alloca i8*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - store i8* %0, i8** %2, align 8 - %13 = load i8*, i8** %2, align 8 - %14 = call i64 @strlen(i8* noundef %13) #6 - %15 = trunc i64 %14 to i32 - store i32 %15, i32* %3, align 4 - store i32 0, i32* %4, align 4 - %16 = load i32, i32* %3, align 4 - %17 = zext i32 %16 to i64 - %18 = load i32, i32* %3, align 4 - %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %5, align 8 - %21 = mul nuw i64 %17, %19 - %22 = alloca i32, i64 %21, align 16 - store i64 %17, i64* %6, align 8 - store i64 %19, i64* %7, align 8 - store i32 0, i32* %8, align 4 - br label %23 - -23: ; preds = %42, %1 - %24 = load i32, i32* %8, align 4 - %25 = load i32, i32* %3, align 4 - %26 = icmp slt i32 %24, %25 - br i1 %26, label %27, label %45 - -27: ; preds = %23 - %28 = load i8*, i8** %2, align 8 - %29 = load i32, i32* %8, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i8, i8* %28, i64 %30 - %32 = load i8, i8* %31, align 1 - %33 = sext i8 %32 to i32 - %34 = sub nsw i32 %33, 48 - %35 = load i32, i32* %8, align 4 - %36 = sext i32 %35 to i64 - %37 = mul nsw i64 %36, %19 - %38 = getelementptr inbounds i32, i32* %22, i64 %37 - %39 = load i32, i32* %8, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i32, i32* %38, i64 %40 - store i32 %34, i32* %41, align 4 - br label %42 - -42: ; preds = %27 - %43 = load i32, i32* %8, align 4 - %44 = add nsw i32 %43, 1 - store i32 %44, i32* %8, align 4 - br label %23, !llvm.loop !6 - -45: ; preds = %23 - store i32 2, i32* %9, align 4 - br label %46 - -46: ; preds = %131, %45 - %47 = load i32, i32* %9, align 4 - %48 = load i32, i32* %3, align 4 - %49 = icmp sle i32 %47, %48 - br i1 %49, label %50, label %134 - -50: ; preds = %46 - store i32 0, i32* %10, align 4 - br label %51 - -51: ; preds = %127, %50 - %52 = load i32, i32* %10, align 4 - %53 = load i32, i32* %3, align 4 - %54 = load i32, i32* %9, align 4 - %55 = sub nsw i32 %53, %54 - %56 = add nsw i32 %55, 1 - %57 = icmp slt i32 %52, %56 - br i1 %57, label %58, label %130 - -58: ; preds = %51 - %59 = load i32, i32* %10, align 4 - %60 = load i32, i32* %9, align 4 - %61 = add nsw i32 %59, %60 - %62 = sub nsw i32 %61, 1 - store i32 %62, i32* %11, align 4 - %63 = load i32, i32* %9, align 4 - %64 = sdiv i32 %63, 2 - store i32 %64, i32* %12, align 4 - %65 = load i32, i32* %10, align 4 - %66 = sext i32 %65 to i64 - %67 = mul nsw i64 %66, %19 - %68 = getelementptr inbounds i32, i32* %22, i64 %67 - %69 = load i32, i32* %11, align 4 - %70 = load i32, i32* %12, align 4 - %71 = sub nsw i32 %69, %70 - %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds i32, i32* %68, i64 %72 - %74 = load i32, i32* %73, align 4 - %75 = load i32, i32* %11, align 4 - %76 = load i32, i32* %12, align 4 - %77 = sub nsw i32 %75, %76 - %78 = add nsw i32 %77, 1 - %79 = sext i32 %78 to i64 - %80 = mul nsw i64 %79, %19 - %81 = getelementptr inbounds i32, i32* %22, i64 %80 - %82 = load i32, i32* %11, align 4 - %83 = sext i32 %82 to i64 - %84 = getelementptr inbounds i32, i32* %81, i64 %83 - %85 = load i32, i32* %84, align 4 - %86 = add nsw i32 %74, %85 - %87 = load i32, i32* %10, align 4 - %88 = sext i32 %87 to i64 - %89 = mul nsw i64 %88, %19 - %90 = getelementptr inbounds i32, i32* %22, i64 %89 - %91 = load i32, i32* %11, align 4 - %92 = sext i32 %91 to i64 - %93 = getelementptr inbounds i32, i32* %90, i64 %92 - store i32 %86, i32* %93, align 4 - %94 = load i32, i32* %9, align 4 - %95 = srem i32 %94, 2 - %96 = icmp eq i32 %95, 0 - br i1 %96, label %97, label %126 - -97: ; preds = %58 - %98 = load i32, i32* %10, align 4 - %99 = sext i32 %98 to i64 - %100 = mul nsw i64 %99, %19 - %101 = getelementptr inbounds i32, i32* %22, i64 %100 - %102 = load i32, i32* %11, align 4 - %103 = load i32, i32* %12, align 4 - %104 = sub nsw i32 %102, %103 - %105 = sext i32 %104 to i64 - %106 = getelementptr inbounds i32, i32* %101, i64 %105 - %107 = load i32, i32* %106, align 4 - %108 = load i32, i32* %11, align 4 - %109 = load i32, i32* %12, align 4 - %110 = sub nsw i32 %108, %109 - %111 = add nsw i32 %110, 1 - %112 = sext i32 %111 to i64 - %113 = mul nsw i64 %112, %19 - %114 = getelementptr inbounds i32, i32* %22, i64 %113 - %115 = load i32, i32* %11, align 4 - %116 = sext i32 %115 to i64 - %117 = getelementptr inbounds i32, i32* %114, i64 %116 - %118 = load i32, i32* %117, align 4 - %119 = icmp eq i32 %107, %118 - br i1 %119, label %120, label %126 - -120: ; preds = %97 - %121 = load i32, i32* %9, align 4 - %122 = load i32, i32* %4, align 4 - %123 = icmp sgt i32 %121, %122 - br i1 %123, label %124, label %126 - -124: ; preds = %120 - %125 = load i32, i32* %9, align 4 - store i32 %125, i32* %4, align 4 - br label %126 - -126: ; preds = %124, %120, %97, %58 - br label %127 - -127: ; preds = %126 - %128 = load i32, i32* %10, align 4 - %129 = add nsw i32 %128, 1 - store i32 %129, i32* %10, align 4 - br label %51, !llvm.loop !8 - -130: ; preds = %51 - br label %131 - -131: ; preds = %130 - %132 = load i32, i32* %9, align 4 - %133 = add nsw i32 %132, 1 - store i32 %133, i32* %9, align 4 - br label %46, !llvm.loop !9 - -134: ; preds = %46 - %135 = load i32, i32* %4, align 4 - %136 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %136) - ret i32 %135 -} - -; Function Attrs: nounwind readonly willreturn -declare i64 @strlen(i8* noundef) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #2 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %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 noundef 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -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 = { 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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-palindrome-substring.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-palindrome-substring.ll deleted file mode 100644 index b6a06f557..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-palindrome-substring.ll +++ /dev/null @@ -1,466 +0,0 @@ -; ModuleID = 'PE-benchmarks/longest-palindrome-substring.cpp' -source_filename = "PE-benchmarks/longest-palindrome-substring.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } - -$_ZNSt15__new_allocatorIcED2Ev = comdat any - -@_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 - -; 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) #0 { - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store i32 %1, i32* %4, align 4 - store i32 %2, i32* %5, align 4 - %7 = load i32, i32* %4, align 4 - store i32 %7, i32* %6, align 4 - br label %8 - -8: ; preds = %18, %3 - %9 = load i32, i32* %6, align 4 - %10 = load i32, i32* %5, align 4 - %11 = icmp sle i32 %9, %10 - br i1 %11, label %12, label %21 - -12: ; preds = %8 - %13 = load i32, i32* %6, align 4 - %14 = sext i32 %13 to i64 - %15 = call 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 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 !6 - -21: ; preds = %8 - 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 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%"class.std::__cxx11::basic_string"* noundef %0) #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca i32, align 4 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca %"class.std::__cxx11::basic_string", align 8 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #7 - %17 = trunc i64 %16 to i32 - store i32 %17, i32* %2, align 4 - %18 = load i32, i32* %2, align 4 - %19 = zext i32 %18 to i64 - %20 = load i32, i32* %2, align 4 - %21 = zext i32 %20 to i64 - %22 = call i8* @llvm.stacksave() - store i8* %22, i8** %3, align 8 - %23 = mul nuw i64 %19, %21 - %24 = alloca i8, i64 %23, align 16 - store i64 %19, i64* %4, align 8 - store i64 %21, i64* %5, align 8 - %25 = mul nuw i64 %19, %21 - call void @llvm.memset.p0i8.i64(i8* align 16 %24, i8 0, i64 %25, i1 false) - store i32 1, i32* %6, align 4 - store i32 0, i32* %7, align 4 - br label %26 - -26: ; preds = %38, %1 - %27 = load i32, i32* %7, align 4 - %28 = load i32, i32* %2, align 4 - %29 = icmp slt i32 %27, %28 - br i1 %29, label %30, label %41 - -30: ; preds = %26 - %31 = load i32, i32* %7, align 4 - %32 = sext i32 %31 to i64 - %33 = mul nsw i64 %32, %21 - %34 = getelementptr inbounds i8, i8* %24, i64 %33 - %35 = load i32, i32* %7, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i8, i8* %34, i64 %36 - store i8 1, i8* %37, align 1 - br label %38 - -38: ; preds = %30 - %39 = load i32, i32* %7, align 4 - %40 = add nsw i32 %39, 1 - store i32 %40, i32* %7, align 4 - br label %26, !llvm.loop !8 - -41: ; preds = %26 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - br label %42 - -42: ; preds = %71, %41 - %43 = load i32, i32* %9, align 4 - %44 = load i32, i32* %2, align 4 - %45 = sub nsw i32 %44, 1 - %46 = icmp slt i32 %43, %45 - br i1 %46, label %47, label %74 - -47: ; preds = %42 - %48 = load i32, i32* %9, align 4 - %49 = sext i32 %48 to i64 - %50 = call 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 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 - br i1 %59, label %60, label %70 - -60: ; preds = %47 - %61 = load i32, i32* %9, align 4 - %62 = sext i32 %61 to i64 - %63 = mul nsw i64 %62, %21 - %64 = getelementptr inbounds i8, i8* %24, i64 %63 - %65 = load i32, i32* %9, align 4 - %66 = add nsw i32 %65, 1 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds i8, i8* %64, i64 %67 - store i8 1, i8* %68, align 1 - %69 = load i32, i32* %9, align 4 - store i32 %69, i32* %8, align 4 - store i32 2, i32* %6, align 4 - br label %70 - -70: ; preds = %60, %47 - br label %71 - -71: ; preds = %70 - %72 = load i32, i32* %9, align 4 - %73 = add nsw i32 %72, 1 - store i32 %73, i32* %9, align 4 - br label %42, !llvm.loop !9 - -74: ; preds = %42 - store i32 3, i32* %10, align 4 - br label %75 - -75: ; preds = %135, %74 - %76 = load i32, i32* %10, align 4 - %77 = load i32, i32* %2, align 4 - %78 = icmp sle i32 %76, %77 - br i1 %78, label %79, label %138 - -79: ; preds = %75 - store i32 0, i32* %11, align 4 - br label %80 - -80: ; preds = %131, %79 - %81 = load i32, i32* %11, align 4 - %82 = load i32, i32* %2, align 4 - %83 = load i32, i32* %10, align 4 - %84 = sub nsw i32 %82, %83 - %85 = add nsw i32 %84, 1 - %86 = icmp slt i32 %81, %85 - br i1 %86, label %87, label %134 - -87: ; preds = %80 - %88 = load i32, i32* %11, align 4 - %89 = load i32, i32* %10, align 4 - %90 = add nsw i32 %88, %89 - %91 = sub nsw i32 %90, 1 - store i32 %91, i32* %12, align 4 - %92 = load i32, i32* %11, align 4 - %93 = add nsw i32 %92, 1 - %94 = sext i32 %93 to i64 - %95 = mul nsw i64 %94, %21 - %96 = getelementptr inbounds i8, i8* %24, i64 %95 - %97 = load i32, i32* %12, align 4 - %98 = sub nsw i32 %97, 1 - %99 = sext i32 %98 to i64 - %100 = getelementptr inbounds i8, i8* %96, i64 %99 - %101 = load i8, i8* %100, align 1 - %102 = trunc i8 %101 to i1 - br i1 %102, label %103, label %130 - -103: ; preds = %87 - %104 = load i32, i32* %11, align 4 - %105 = sext i32 %104 to i64 - %106 = call 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 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 - br i1 %114, label %115, label %130 - -115: ; preds = %103 - %116 = load i32, i32* %11, align 4 - %117 = sext i32 %116 to i64 - %118 = mul nsw i64 %117, %21 - %119 = getelementptr inbounds i8, i8* %24, i64 %118 - %120 = load i32, i32* %12, align 4 - %121 = sext i32 %120 to i64 - %122 = getelementptr inbounds i8, i8* %119, i64 %121 - store i8 1, i8* %122, align 1 - %123 = load i32, i32* %10, align 4 - %124 = load i32, i32* %6, align 4 - %125 = icmp sgt i32 %123, %124 - br i1 %125, label %126, label %129 - -126: ; preds = %115 - %127 = load i32, i32* %11, align 4 - store i32 %127, i32* %8, align 4 - %128 = load i32, i32* %10, align 4 - store i32 %128, i32* %6, align 4 - br label %129 - -129: ; preds = %126, %115 - br label %130 - -130: ; preds = %129, %103, %87 - br label %131 - -131: ; preds = %130 - %132 = load i32, i32* %11, align 4 - %133 = add nsw i32 %132, 1 - store i32 %133, i32* %11, align 4 - br label %80, !llvm.loop !10 - -134: ; preds = %80 - br label %135 - -135: ; preds = %134 - %136 = load i32, i32* %10, align 4 - %137 = add nsw i32 %136, 1 - store i32 %137, i32* %10, align 4 - br label %75, !llvm.loop !11 - -138: ; preds = %75 - %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"* 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"* noundef nonnull align 8 dereferenceable(32) %13) #7 - %146 = load i32, i32* %6, align 4 - %147 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %147) - ret i32 %146 - -148: ; preds = %138 - %149 = landingpad { i8*, i32 } - cleanup - %150 = extractvalue { i8*, i32 } %149, 0 - store i8* %150, i8** %14, align 8 - %151 = extractvalue { i8*, i32 } %149, 1 - store i32 %151, i32* %15, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13) #7 - br label %152 - -152: ; preds = %148 - %153 = load i8*, i8** %14, align 8 - %154 = load i32, i32* %15, align 4 - %155 = insertvalue { i8*, i32 } undef, i8* %153, 0 - %156 = insertvalue { i8*, i32 } %155, i32 %154, 1 - resume { i8*, i32 } %156 -} - -; Function Attrs: nounwind -declare 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() #3 - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #4 - -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 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 i32 @__gxx_personality_v0(...) - -; Function Attrs: nounwind -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*) #3 - -; Function Attrs: noinline norecurse uwtable -define dso_local noundef i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca %"class.std::__new_allocator"*, align 8 - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32, align 4 - %6 = alloca %"class.std::__cxx11::basic_string", align 8 - %7 = alloca %"class.std::allocator", align 1 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %5, align 4 - store %"class.std::allocator"* %7, %"class.std::allocator"** %4, align 8 - %11 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %12 = bitcast %"class.std::allocator"* %11 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %12, %"class.std::__new_allocator"** %1, align 8 - %13 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %1, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6, 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) %7) - to label %14 unwind label %25 - -14: ; preds = %0 - store %"class.std::allocator"* %7, %"class.std::allocator"** %3, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16) #7 - %17 = 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 %18 unwind label %31 - -18: ; preds = %14 - 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) %6) - to label %19 unwind label %31 - -19: ; preds = %18 - %20 = invoke noundef i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%"class.std::__cxx11::basic_string"* noundef %10) - to label %21 unwind label %35 - -21: ; preds = %19 - %22 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %17, i32 noundef %20) - to label %23 unwind label %35 - -23: ; preds = %21 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #7 - store i32 0, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #7 - %24 = load i32, i32* %5, align 4 - ret i32 %24 - -25: ; preds = %0 - %26 = landingpad { i8*, i32 } - cleanup - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %8, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %9, align 4 - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - %29 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %30 = bitcast %"class.std::allocator"* %29 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %30) #7 - br label %40 - -31: ; preds = %18, %14 - %32 = landingpad { i8*, i32 } - cleanup - %33 = extractvalue { i8*, i32 } %32, 0 - store i8* %33, i8** %8, align 8 - %34 = extractvalue { i8*, i32 } %32, 1 - store i32 %34, i32* %9, align 4 - br label %39 - -35: ; preds = %21, %19 - %36 = landingpad { i8*, i32 } - cleanup - %37 = extractvalue { i8*, i32 } %36, 0 - store i8* %37, i8** %8, align 8 - %38 = extractvalue { i8*, i32 } %36, 1 - store i32 %38, i32* %9, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #7 - br label %39 - -39: ; preds = %35, %31 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #7 - br label %40 - -40: ; preds = %39, %25 - %41 = load i8*, i8** %8, align 8 - %42 = load i32, i32* %9, align 4 - %43 = insertvalue { i8*, i32 } undef, i8* %41, 0 - %44 = insertvalue { i8*, i32 } %43, i32 %42, 1 - resume { i8*, i32 } %44 -} - -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 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 @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -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 = { 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 = { nofree nosync nounwind willreturn } -attributes #4 = { argmemonly nofree nounwind willreturn writeonly } -attributes #5 = { 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 = { 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 = { nounwind } - -!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"} -!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/longest-path-directed-acyclic-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-path-directed-acyclic-graph.ll deleted file mode 100644 index 4c2b88cd5..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-path-directed-acyclic-graph.ll +++ /dev/null @@ -1,3757 +0,0 @@ -; ModuleID = 'PE-benchmarks/longest-path-directed-acyclic-graph.cpp' -source_filename = "PE-benchmarks/longest-path-directed-acyclic-graph.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%class.AdjListNode = type { i32, i32 } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"class.std::stack" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { i32**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%"struct.std::_Deque_iterator" = type { i32*, i32*, i32*, i32** } -%"struct.std::_List_node" = type { %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf" } -%"struct.__gnu_cxx::__aligned_membuf" = type { [8 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.std::allocator.3" = type { i8 } -%"class.std::__new_allocator.4" = type { i8 } -%"class.std::__new_allocator.1" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EEC2Ev = comdat any - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EED2Ev = comdat any - -$_ZN11AdjListNodeC2Eii = comdat any - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9push_backERKS1_ = comdat any - -$_ZNSt14_List_iteratorI11AdjListNodeEC2Ev = comdat any - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorI11AdjListNodeES3_ = comdat any - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv = comdat any - -$_ZNKSt14_List_iteratorI11AdjListNodeEdeEv = comdat any - -$_ZN11AdjListNode4getVEv = comdat any - -$_ZNSt14_List_iteratorI11AdjListNodeEppEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any - -$_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv = comdat any - -$_ZNKSt14_List_iteratorI11AdjListNodeEptEv = comdat any - -$_ZN11AdjListNode9getWeightEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE8_M_clearEv = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implD2Ev = comdat any - -$_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E = comdat any - -$_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE7_M_addrEv = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS2_m = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any - -$_ZNSt5dequeIiSaIiEE5beginEv = comdat any - -$_ZNSt5dequeIiSaIiEE3endEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any - -$_ZNSt15__new_allocatorIPiED2Ev = comdat any - -$_ZNSt15__new_allocatorIiED2Ev = comdat any - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_ = comdat any - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_ = comdat any - -$_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_get_nodeEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEC2ERS3_PS2_ = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeI11AdjListNodeEEEPT_RS4_ = comdat any - -$_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE = comdat any - -$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any - -$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any - -$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any - -$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIPPiET_S2_ = comdat any - -$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIPPiET_S2_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt5dequeIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any - -$_ZNKSt5dequeIiSaIiEE5emptyEv = comdat any - -$_ZSteqRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt5dequeIiSaIiEE4backEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEmmEv = comdat any - -$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any - -$_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any - -@_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 -@.str.3 = private unnamed_addr constant [3 x i8] c" \0A\00", align 1 -@.str.4 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei -@_ZN5GraphD1Ev = dso_local unnamed_addr alias void (%class.Graph*), void (%class.Graph*)* @_ZN5GraphD2Ev - -; Function Attrs: noinline uwtable -define 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 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias 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 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %26) #16 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #16 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define dso_local void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 align 2 { - %2 = alloca %class.Graph*, align 8 - store %class.Graph* %0, %class.Graph** %2, align 8 - %3 = load %class.Graph*, %class.Graph** %2, align 8 - %4 = getelementptr inbounds %class.Graph, %class.Graph* %3, i32 0, i32 1 - %5 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %4, align 8 - %6 = icmp eq %"class.std::__cxx11::list"* %5, null - br i1 %6, label %19, label %7 - -7: ; preds = %1 - %8 = bitcast %"class.std::__cxx11::list"* %5 to i8* - %9 = getelementptr inbounds i8, i8* %8, i64 -8 - %10 = bitcast i8* %9 to i64* - %11 = load i64, i64* %10, align 8 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %5, i64 %11 - %13 = icmp eq %"class.std::__cxx11::list"* %5, %12 - br i1 %13, label %18, label %14 - -14: ; preds = %14, %7 - %15 = phi %"class.std::__cxx11::list"* [ %12, %7 ], [ %16, %14 ] - %16 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %15, i64 -1 - call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %16) #16 - %17 = icmp eq %"class.std::__cxx11::list"* %16, %5 - br i1 %17, label %18, label %14 - -18: ; preds = %14, %7 - call void @_ZdaPv(i8* noundef %9) #17 - br label %19 - -19: ; preds = %18, %1 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #16 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdaPv(i8* noundef) #4 - -; 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) #5 align 2 { - %5 = alloca %class.Graph*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca %class.AdjListNode, align 4 - store %class.Graph* %0, %class.Graph** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 %3, i32* %8, align 4 - %10 = load %class.Graph*, %class.Graph** %5, align 8 - %11 = load i32, i32* %7, align 4 - %12 = load i32, i32* %8, align 4 - call void @_ZN11AdjListNodeC2Eii(%class.AdjListNode* 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"* 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* noundef nonnull align 4 dereferenceable(8) %0, i32 noundef %1, i32 noundef %2) unnamed_addr #3 comdat align 2 { - %4 = alloca %class.AdjListNode*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.AdjListNode* %0, %class.AdjListNode** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.AdjListNode*, %class.AdjListNode** %4, align 8 - %8 = load i32, i32* %5, align 4 - %9 = getelementptr inbounds %class.AdjListNode, %class.AdjListNode* %7, i32 0, i32 0 - store i32 %8, i32* %9, align 4 - %10 = load i32, i32* %6, align 4 - %11 = getelementptr inbounds %class.AdjListNode, %class.AdjListNode* %7, i32 0, i32 1 - store i32 %10, i32* %11, align 4 - ret void -} - -; Function Attrs: 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) #5 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"* noundef nonnull align 8 dereferenceable(24) %6) #16 - %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"* 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: 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) #5 align 2 { - %5 = alloca %class.Graph*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca %"class.std::stack"*, align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - %12 = alloca %class.AdjListNode, align 4 - store %class.Graph* %0, %class.Graph** %5, align 8 - store i32 %1, i32* %6, align 4 - store i8* %2, i8** %7, align 8 - store %"class.std::stack"* %3, %"class.std::stack"** %8, align 8 - %13 = load %class.Graph*, %class.Graph** %5, align 8 - %14 = load i8*, i8** %7, align 8 - %15 = load i32, i32* %6, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds i8, i8* %14, i64 %16 - store i8 1, i8* %17, align 1 - call void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #16 - %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"* noundef nonnull align 8 dereferenceable(24) %22) #16 - %24 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %10, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %23, %"struct.std::__detail::_List_node_base"** %24, align 8 - %25 = bitcast %"struct.std::_List_iterator"* %9 to i8* - %26 = bitcast %"struct.std::_List_iterator"* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %25, i8* align 8 %26, i64 8, i1 false) - br label %27 - -27: ; preds = %51, %4 - %28 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %29 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %28, align 8 - %30 = load i32, i32* %6, align 4 - %31 = sext i32 %30 to i64 - %32 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %29, i64 %31 - %33 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %32) #16 - %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 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) #16 - br i1 %35, label %36, label %53 - -36: ; preds = %27 - %37 = call noundef nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #16 - %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 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 - %45 = trunc i8 %44 to i1 - br i1 %45, label %50, label %46 - -46: ; preds = %36 - %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* 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 noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorI11AdjListNodeEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #16 - 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"* 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"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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) #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #16 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; 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) #6 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #16 - %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: 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) #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 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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %0) #6 comdat align 2 { - %2 = alloca %class.AdjListNode*, align 8 - store %class.AdjListNode* %0, %class.AdjListNode** %2, align 8 - %3 = load %class.AdjListNode*, %class.AdjListNode** %2, align 8 - %4 = getelementptr inbounds %class.AdjListNode, %class.AdjListNode* %3, i32 0, i32 0 - %5 = load i32, i32* %4, align 4 - ret i32 %5 -} - -; Function Attrs: 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) #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: 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) #5 comdat align 2 { - %3 = alloca %"class.std::stack"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::stack"*, %"class.std::stack"** %3, align 8 - %6 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %5, i32 0, i32 0 - %7 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %6, i32* noundef nonnull align 4 dereferenceable(4) %7) - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) #5 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - %5 = alloca %"class.std::stack", align 8 - %6 = alloca i8*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i8*, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca %"struct.std::_List_iterator", align 8 - %16 = alloca %"struct.std::_List_iterator", align 8 - %17 = alloca %"struct.std::_List_iterator", align 8 - %18 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %19 = load %class.Graph*, %class.Graph** %3, align 8 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* 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 - %23 = call i8* @llvm.stacksave() - store i8* %23, i8** %6, align 8 - %24 = alloca i32, i64 %22, align 16 - store i64 %22, i64* %7, align 8 - %25 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 0 - %26 = load i32, i32* %25, align 8 - %27 = sext i32 %26 to i64 - %28 = invoke noalias noundef nonnull i8* @_Znam(i64 noundef %27) #15 - to label %29 unwind label %43 - -29: ; preds = %2 - store i8* %28, i8** %8, align 8 - store i32 0, i32* %11, align 4 - br label %30 - -30: ; preds = %40, %29 - %31 = load i32, i32* %11, align 4 - %32 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 0 - %33 = load i32, i32* %32, align 8 - %34 = icmp slt i32 %31, %33 - br i1 %34, label %35, label %47 - -35: ; preds = %30 - %36 = load i8*, i8** %8, align 8 - %37 = load i32, i32* %11, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i8, i8* %36, i64 %38 - store i8 0, i8* %39, align 1 - br label %40 - -40: ; preds = %35 - %41 = load i32, i32* %11, align 4 - %42 = add nsw i32 %41, 1 - store i32 %42, i32* %11, align 4 - br label %30, !llvm.loop !8 - -43: ; preds = %177, %171, %168, %144, %137, %124, %121, %94, %92, %87, %62, %2 - %44 = landingpad { i8*, i32 } - cleanup - %45 = extractvalue { i8*, i32 } %44, 0 - store i8* %45, i8** %9, align 8 - %46 = extractvalue { i8*, i32 } %44, 1 - store i32 %46, i32* %10, align 4 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %5) #16 - br label %191 - -47: ; preds = %30 - store i32 0, i32* %12, align 4 - br label %48 - -48: ; preds = %67, %47 - %49 = load i32, i32* %12, align 4 - %50 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 0 - %51 = load i32, i32* %50, align 8 - %52 = icmp slt i32 %49, %51 - br i1 %52, label %53, label %70 - -53: ; preds = %48 - %54 = load i8*, i8** %8, align 8 - %55 = load i32, i32* %12, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i8, i8* %54, i64 %56 - %58 = load i8, i8* %57, align 1 - %59 = trunc i8 %58 to i1 - %60 = zext i1 %59 to i32 - %61 = icmp eq i32 %60, 0 - br i1 %61, label %62, label %66 - -62: ; preds = %53 - %63 = load i32, i32* %12, align 4 - %64 = load i8*, i8** %8, align 8 - invoke void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* 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 - br label %66 - -66: ; preds = %65, %53 - br label %67 - -67: ; preds = %66 - %68 = load i32, i32* %12, align 4 - %69 = add nsw i32 %68, 1 - store i32 %69, i32* %12, align 4 - br label %48, !llvm.loop !9 - -70: ; preds = %48 - store i32 0, i32* %13, align 4 - br label %71 - -71: ; preds = %80, %70 - %72 = load i32, i32* %13, align 4 - %73 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 0 - %74 = load i32, i32* %73, align 8 - %75 = icmp slt i32 %72, %74 - br i1 %75, label %76, label %83 - -76: ; preds = %71 - %77 = load i32, i32* %13, align 4 - %78 = sext i32 %77 to i64 - %79 = getelementptr inbounds i32, i32* %24, i64 %78 - store i32 -2147483648, i32* %79, align 4 - br label %80 - -80: ; preds = %76 - %81 = load i32, i32* %13, align 4 - %82 = add nsw i32 %81, 1 - store i32 %82, i32* %13, align 4 - br label %71, !llvm.loop !10 - -83: ; preds = %71 - %84 = load i32, i32* %4, align 4 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i32, i32* %24, i64 %85 - store i32 0, i32* %86, align 4 - br label %87 - -87: ; preds = %155, %83 - %88 = invoke noundef zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %5) - to label %89 unwind label %43 - -89: ; preds = %87 - %90 = zext i1 %88 to i32 - %91 = icmp eq i32 %90, 0 - br i1 %91, label %92, label %156 - -92: ; preds = %89 - %93 = invoke 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"* 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"* noundef nonnull align 8 dereferenceable(8) %15) #16 - %97 = load i32, i32* %14, align 4 - %98 = sext i32 %97 to i64 - %99 = getelementptr inbounds i32, i32* %24, i64 %98 - %100 = load i32, i32* %99, align 4 - %101 = icmp ne i32 %100, -2147483648 - br i1 %101, label %102, label %155 - -102: ; preds = %96 - %103 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 1 - %104 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %103, align 8 - %105 = load i32, i32* %14, align 4 - %106 = sext i32 %105 to i64 - %107 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %104, i64 %106 - %108 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %107) #16 - %109 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %16, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %108, %"struct.std::__detail::_List_node_base"** %109, align 8 - %110 = bitcast %"struct.std::_List_iterator"* %15 to i8* - %111 = bitcast %"struct.std::_List_iterator"* %16 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %110, i8* align 8 %111, i64 8, i1 false) - br label %112 - -112: ; preds = %152, %102 - %113 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 1 - %114 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %113, align 8 - %115 = load i32, i32* %14, align 4 - %116 = sext i32 %115 to i64 - %117 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %114, i64 %116 - %118 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %117) #16 - %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 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) #16 - br i1 %120, label %121, label %154 - -121: ; preds = %112 - %122 = call noundef %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #16 - %123 = invoke noundef i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %122) - to label %124 unwind label %43 - -124: ; preds = %121 - %125 = sext i32 %123 to i64 - %126 = getelementptr inbounds i32, i32* %24, i64 %125 - %127 = load i32, i32* %126, align 4 - %128 = load i32, i32* %14, align 4 - %129 = sext i32 %128 to i64 - %130 = getelementptr inbounds i32, i32* %24, i64 %129 - %131 = load i32, i32* %130, align 4 - %132 = call noundef %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #16 - %133 = invoke noundef i32 @_ZN11AdjListNode9getWeightEv(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %132) - to label %134 unwind label %43 - -134: ; preds = %124 - %135 = add nsw i32 %131, %133 - %136 = icmp slt i32 %127, %135 - br i1 %136, label %137, label %151 - -137: ; preds = %134 - %138 = load i32, i32* %14, align 4 - %139 = sext i32 %138 to i64 - %140 = getelementptr inbounds i32, i32* %24, i64 %139 - %141 = load i32, i32* %140, align 4 - %142 = call noundef %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #16 - %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 noundef %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #16 - %147 = invoke noundef i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %146) - to label %148 unwind label %43 - -148: ; preds = %144 - %149 = sext i32 %147 to i64 - %150 = getelementptr inbounds i32, i32* %24, i64 %149 - store i32 %145, i32* %150, align 4 - br label %151 - -151: ; preds = %148, %134 - br label %152 - -152: ; preds = %151 - %153 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorI11AdjListNodeEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #16 - br label %112, !llvm.loop !11 - -154: ; preds = %112 - br label %155 - -155: ; preds = %154, %96 - br label %87, !llvm.loop !12 - -156: ; preds = %89 - store i32 0, i32* %18, align 4 - br label %157 - -157: ; preds = %182, %156 - %158 = load i32, i32* %18, align 4 - %159 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 0 - %160 = load i32, i32* %159, align 8 - %161 = icmp slt i32 %158, %160 - br i1 %161, label %162, label %185 - -162: ; preds = %157 - %163 = load i32, i32* %18, align 4 - %164 = sext i32 %163 to i64 - %165 = getelementptr inbounds i32, i32* %24, i64 %164 - %166 = load i32, i32* %165, align 4 - %167 = icmp eq i32 %166, -2147483648 - br i1 %167, label %168, label %171 - -168: ; preds = %162 - %169 = invoke noundef 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 - br label %180 - -171: ; preds = %162 - %172 = load i32, i32* %18, align 4 - %173 = sext i32 %172 to i64 - %174 = getelementptr inbounds i32, i32* %24, i64 %173 - %175 = load i32, i32* %174, align 4 - %176 = invoke 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 noundef 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 - br label %180 - -180: ; preds = %179, %170 - %181 = phi %"class.std::basic_ostream"* [ %169, %170 ], [ %178, %179 ] - br label %182 - -182: ; preds = %180 - %183 = load i32, i32* %18, align 4 - %184 = add nsw i32 %183, 1 - store i32 %184, i32* %18, align 4 - br label %157, !llvm.loop !13 - -185: ; preds = %157 - %186 = load i8*, i8** %8, align 8 - %187 = icmp eq i8* %186, null - br i1 %187, label %189, label %188 - -188: ; preds = %185 - call void @_ZdaPv(i8* 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"* noundef nonnull align 8 dereferenceable(80) %5) #16 - ret void - -191: ; preds = %43 - %192 = load i8*, i8** %9, align 8 - %193 = load i32, i32* %10, align 4 - %194 = insertvalue { i8*, i32 } undef, i8* %192, 0 - %195 = insertvalue { i8*, i32 } %194, i32 %193, 1 - resume { i8*, i32 } %195 -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* 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"* noundef nonnull align 8 dereferenceable(80) %4) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #8 - -declare i32 @__gxx_personality_v0(...) - -; 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) #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 - %5 = call noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #16 - ret i1 %5 -} - -; 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) #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 - %5 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #16 - ret i32* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %0) #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 @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #16 - ret void -} - -; 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) #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 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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32 @_ZN11AdjListNode9getWeightEv(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %0) #6 comdat align 2 { - %2 = alloca %class.AdjListNode*, align 8 - store %class.AdjListNode* %0, %class.AdjListNode** %2, align 8 - %3 = load %class.AdjListNode*, %class.AdjListNode** %2, align 8 - %4 = getelementptr inbounds %class.AdjListNode, %class.AdjListNode* %3, i32 0, i32 1 - %5 = load i32, i32* %4, align 4 - ret i32 %5 -} - -declare noundef 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) #9 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #9 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #8 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(80) %4) #16 - ret void -} - -; 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.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* 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* 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* 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* 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* 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* 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* 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* 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* 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* 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 noundef 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 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 noundef 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* 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* noundef nonnull align 8 dereferenceable(16) %2) #16 - %25 = load i32, i32* %1, align 4 - ret i32 %25 - -26: ; preds = %22, %20, %17, %15, %14, %13, %12, %11, %10, %9, %8, %7, %6, %0 - %27 = landingpad { i8*, i32 } - cleanup - %28 = extractvalue { i8*, i32 } %27, 0 - store i8* %28, i8** %3, align 8 - %29 = extractvalue { i8*, i32 } %27, 1 - store i32 %29, i32* %4, align 4 - call void @_ZN5GraphD1Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) #16 - br label %30 - -30: ; preds = %26 - %31 = load i8*, i8** %3, align 8 - %32 = load i32, i32* %4, align 4 - %33 = insertvalue { i8*, i32 } undef, i8* %31, 0 - %34 = insertvalue { i8*, i32 } %33, i32 %32, 1 - resume { i8*, i32 } %34 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #16 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #16 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #16 - ret void -} - -; 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 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #16 - %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"* noundef nonnull align 8 dereferenceable(24) %4) #16 - ret void -} - -; 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) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %class.AdjListNode*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %class.AdjListNode*, align 8 - %6 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %7 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - %8 = alloca %"struct.std::_List_node"*, align 8 - %9 = alloca %class.AdjListNode*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %6, align 8 - %10 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %6, align 8 - %11 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %10, i32 0, i32 0 - %12 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %11, i32 0, i32 0 - %13 = bitcast %"struct.std::__detail::_List_node_header"* %12 to %"struct.std::__detail::_List_node_base"* - %14 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %13, i32 0, i32 0 - %15 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %14, align 8 - store %"struct.std::__detail::_List_node_base"* %15, %"struct.std::__detail::_List_node_base"** %7, align 8 - br label %16 - -16: ; preds = %31, %1 - %17 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %7, align 8 - %18 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %10, i32 0, i32 0 - %19 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::__detail::_List_node_header"* %19 to %"struct.std::__detail::_List_node_base"* - %21 = icmp ne %"struct.std::__detail::_List_node_base"* %17, %20 - br i1 %21, label %22, label %40 - -22: ; preds = %16 - %23 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %7, align 8 - %24 = bitcast %"struct.std::__detail::_List_node_base"* %23 to %"struct.std::_List_node"* - store %"struct.std::_List_node"* %24, %"struct.std::_List_node"** %8, align 8 - %25 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - %26 = bitcast %"struct.std::_List_node"* %25 to %"struct.std::__detail::_List_node_base"* - %27 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %26, i32 0, i32 0 - %28 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %27, align 8 - store %"struct.std::__detail::_List_node_base"* %28, %"struct.std::__detail::_List_node_base"** %7, align 8 - %29 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - %30 = invoke noundef %class.AdjListNode* @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(24) %29) - to label %31 unwind label %41 - -31: ; preds = %22 - store %class.AdjListNode* %30, %class.AdjListNode** %9, align 8 - %32 = 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) %10) #16 - %33 = load %class.AdjListNode*, %class.AdjListNode** %9, align 8 - store %"class.std::allocator"* %32, %"class.std::allocator"** %4, align 8 - store %class.AdjListNode* %33, %class.AdjListNode** %5, align 8 - %34 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %35 = bitcast %"class.std::allocator"* %34 to %"class.std::__new_allocator"* - %36 = load %class.AdjListNode*, %class.AdjListNode** %5, align 8 - store %"class.std::__new_allocator"* %35, %"class.std::__new_allocator"** %2, align 8 - store %class.AdjListNode* %36, %class.AdjListNode** %3, align 8 - %37 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %38 = load %class.AdjListNode*, %class.AdjListNode** %3, align 8 - %39 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %8, align 8 - call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %10, %"struct.std::_List_node"* noundef %39) #16 - br label %16, !llvm.loop !14 - -40: ; preds = %16 - ret void - -41: ; preds = %22 - %42 = landingpad { i8*, i32 } - catch i8* null - %43 = extractvalue { i8*, i32 } %42, 0 - call void @__clang_call_terminate(i8* %43) #18 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = 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"** %3, align 8 - %4 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %3, align 8 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - store %"class.std::allocator"* %5, %"class.std::allocator"** %2, align 8 - %6 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %7 = bitcast %"class.std::allocator"* %6 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #16 - ret void -} - -; 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) #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 noundef %class.AdjListNode* @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(8) %4) #16 - ret %class.AdjListNode* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #16 - call void @_ZSt9terminatev() #18 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; 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) #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: 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) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %6, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %7, align 8 - %8 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %6, align 8 - %9 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %9 to %"class.std::allocator"* - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - store %"class.std::allocator"* %10, %"class.std::allocator"** %3, align 8 - store %"struct.std::_List_node"* %11, %"struct.std::_List_node"** %4, align 8 - store i64 1, i64* %5, align 8 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %13 = bitcast %"class.std::allocator"* %12 to %"class.std::__new_allocator"* - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %15 = load i64, i64* %5, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS2_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* noundef %14, i64 noundef %15) - br label %16 - -16: ; preds = %2 - ret void - -17: ; No predecessors! - %18 = landingpad { i8*, i32 } - catch i8* null - %19 = extractvalue { i8*, i32 } %18, 0 - call void @__clang_call_terminate(i8* %19) #18 - unreachable -} - -; 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) #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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(8) %3) #16 - %5 = bitcast i8* %4 to %class.AdjListNode* - ret %class.AdjListNode* %5 -} - -; 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) #6 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [8 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS2_m(%"class.std::__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.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #17 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #4 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - %4 = alloca %"struct.std::_Deque_iterator", align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) #16 - 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) #16 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %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) #16 - 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"* noundef nonnull align 8 dereferenceable(80) %11) #16 - ret void - -12: ; preds = %1 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %5, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %6, align 4 - %16 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %16) #16 - br label %17 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - call void @__clang_call_terminate(i8* %18) #18 - unreachable -} - -; 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 - store %"class.std::allocator.0"* %3, %"class.std::allocator.0"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %5, align 8 - ret void -} - -; Function Attrs: 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* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %10) #16 - ret void -} - -; 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* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %10) #16 - ret void -} - -; 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 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %6, align 8 - %8 = icmp ne i32** %7, null - br i1 %8, label %9, label %29 - -9: ; preds = %1 - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 2 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 3 - %14 = load i32**, i32*** %13, align 8 - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = getelementptr inbounds i32*, i32** %19, i64 1 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %14, i32** noundef %20) #16 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 0 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 1 - %28 = load i64, i64* %27, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %24, i64 noundef %28) #16 - 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"* noundef nonnull align 8 dereferenceable(80) %30) #16 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load i32*, i32** %12, align 8 - store i32* %13, i32** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - store i32* %17, i32** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load i32**, i32*** %20, align 8 - store i32** %21, i32*** %18, align 8 - ret void -} - -; Function Attrs: 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 - %7 = alloca i32**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load i32**, i32*** %5, align 8 - store i32** %9, i32*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32**, i32*** %7, align 8 - %12 = load i32**, i32*** %6, align 8 - %13 = icmp ult i32** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32**, i32*** %7, align 8 - %16 = load i32*, i32** %15, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %16) #16 - 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 !15 - -20: ; preds = %10 - ret void -} - -; Function Attrs: 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) #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca %"class.std::allocator.3"*, align 8 - %6 = alloca %"class.std::allocator.3"*, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::_Deque_base"*, align 8 - %10 = alloca i32**, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"class.std::allocator.3", align 1 - %13 = alloca i8*, align 8 - %14 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %9, align 8 - store i32** %1, i32*** %10, align 8 - store i64 %2, i64* %11, align 8 - %15 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %9, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %12, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %15) #16 - %16 = load i32**, i32*** %10, align 8 - %17 = load i64, i64* %11, align 8 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %6, align 8 - store i32** %16, i32*** %7, align 8 - store i64 %17, i64* %8, align 8 - %18 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %6, align 8 - %19 = bitcast %"class.std::allocator.3"* %18 to %"class.std::__new_allocator.4"* - %20 = load i32**, i32*** %7, align 8 - %21 = load i64, i64* %8, align 8 - call void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %19, i32** noundef %20, i64 noundef %21) - br label %22 - -22: ; preds = %3 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %5, align 8 - %23 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %5, align 8 - %24 = bitcast %"class.std::allocator.3"* %23 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %24) #16 - ret void - -25: ; No predecessors! - %26 = landingpad { i8*, i32 } - catch i8* null - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %13, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %14, align 4 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %4, align 8 - %29 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %30 = bitcast %"class.std::allocator.3"* %29 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %30) #16 - br label %31 - -31: ; preds = %25 - %32 = load i8*, i8** %13, align 8 - call void @__clang_call_terminate(i8* %32) #18 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - %3 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %4 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - store %"class.std::allocator.0"* %5, %"class.std::allocator.0"** %2, align 8 - %6 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %7 = bitcast %"class.std::allocator.0"* %6 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %7) #16 - ret void -} - -; 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::allocator.0"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::_Deque_base"*, align 8 - %7 = alloca i32*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %6, align 8 - store i32* %1, i32** %7, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %6, align 8 - %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 %"class.std::allocator.0"* - %11 = load i32*, i32** %7, align 8 - %12 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - to label %13 unwind label %19 - -13: ; preds = %2 - store %"class.std::allocator.0"* %10, %"class.std::allocator.0"** %3, align 8 - store i32* %11, i32** %4, align 8 - store i64 %12, i64* %5, align 8 - %14 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %15 = bitcast %"class.std::allocator.0"* %14 to %"class.std::__new_allocator.1"* - %16 = load i32*, i32** %4, align 8 - %17 = load i64, i64* %5, align 8 - call void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %15, i32* noundef %16, i64 noundef %17) - br label %18 - -18: ; preds = %13 - ret void - -19: ; preds = %2 - %20 = landingpad { i8*, i32 } - catch i8* null - %21 = extractvalue { i8*, i32 } %20, 0 - call void @__clang_call_terminate(i8* %21) #18 - unreachable -} - -; 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 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #6 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* noundef %9) #17 - ret void -} - -; Function Attrs: 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) #3 comdat align 2 { - %3 = alloca %"class.std::__new_allocator.4"*, align 8 - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = bitcast %"class.std::allocator.3"* %0 to i8* - store i8* %8, i8** %6, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %7, align 8 - %9 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - %10 = 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) %9) #16 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %4, align 8 - store %"class.std::allocator.0"* %10, %"class.std::allocator.0"** %5, align 8 - %11 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %12 = bitcast %"class.std::allocator.3"* %11 to %"class.std::__new_allocator.4"* - store %"class.std::__new_allocator.4"* %12, %"class.std::__new_allocator.4"** %3, align 8 - %13 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %3, align 8 - ret void -} - -; 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 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %2) #6 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.4"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = bitcast i32** %8 to i8* - call void @_ZdlPv(i8* noundef %9) #17 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.4"*, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %2, align 8 - %3 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %2, align 8 - %3 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - ret void -} - -; 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) #5 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca %class.AdjListNode*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store %class.AdjListNode* %2, %class.AdjListNode** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load %class.AdjListNode*, %class.AdjListNode** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %10) #16 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #16 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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) #5 comdat align 2 { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca %class.AdjListNode*, align 8 - %5 = alloca %class.AdjListNode*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %class.AdjListNode*, align 8 - %8 = alloca %class.AdjListNode*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca %class.AdjListNode*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store %class.AdjListNode* %1, %class.AdjListNode** %10, align 8 - %14 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %15 = bitcast %"class.std::__cxx11::list"* %14 to %"class.std::__cxx11::_List_base"* - %16 = 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) %15) - store %"struct.std::_List_node"* %16, %"struct.std::_List_node"** %11, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %14 to %"class.std::__cxx11::_List_base"* - %18 = 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) %17) #16 - store %"class.std::allocator"* %18, %"class.std::allocator"** %12, align 8 - %19 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %20 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEC2ERS3_PS2_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %19, %"struct.std::_List_node"* noundef %20) #16 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %23 = call noundef %class.AdjListNode* @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(24) %22) - %24 = load %class.AdjListNode*, %class.AdjListNode** %10, align 8 - %25 = call noundef nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %24) #16 - store %"class.std::allocator"* %21, %"class.std::allocator"** %6, align 8 - store %class.AdjListNode* %23, %class.AdjListNode** %7, align 8 - store %class.AdjListNode* %25, %class.AdjListNode** %8, align 8 - %26 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %27 = bitcast %"class.std::allocator"* %26 to %"class.std::__new_allocator"* - %28 = load %class.AdjListNode*, %class.AdjListNode** %7, align 8 - %29 = load %class.AdjListNode*, %class.AdjListNode** %8, align 8 - %30 = call noundef nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %29) #16 - store %"class.std::__new_allocator"* %27, %"class.std::__new_allocator"** %3, align 8 - store %class.AdjListNode* %28, %class.AdjListNode** %4, align 8 - store %class.AdjListNode* %30, %class.AdjListNode** %5, align 8 - %31 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %32 = load %class.AdjListNode*, %class.AdjListNode** %4, align 8 - %33 = bitcast %class.AdjListNode* %32 to i8* - %34 = load %class.AdjListNode*, %class.AdjListNode** %5, align 8 - %35 = call noundef nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %34) #16 - %36 = bitcast %class.AdjListNode* %32 to i8* - %37 = bitcast %class.AdjListNode* %35 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %36, i8* align 4 %37, i64 8, i1 false) #16 - %38 = 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) %13, i8* null) #16 - %39 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #16 - ret %"struct.std::_List_node"* %39 -} - -; 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) #6 comdat { - %2 = alloca %class.AdjListNode*, align 8 - store %class.AdjListNode* %0, %class.AdjListNode** %2, align 8 - %3 = load %class.AdjListNode*, %class.AdjListNode** %2, align 8 - ret %class.AdjListNode* %3 -} - -; Function Attrs: nounwind -declare 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) #12 - -; 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) #6 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeI11AdjListNodeEEEPT_RS4_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #16 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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) #6 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS2_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #18 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #19 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #19 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #15 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -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 noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; 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) #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 -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 #3 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 { - %3 = alloca %"class.std::__new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store i32* %1, i32** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %19 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %19 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 2 - %23 = load i32*, i32** %22, align 8 - %24 = getelementptr inbounds i32, i32* %23, i64 -1 - %25 = icmp ne i32* %17, %24 - br i1 %25, label %26, label %55 - -26: ; preds = %2 - %27 = bitcast %"class.std::deque"* %11 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 %"class.std::allocator.0"* - %30 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %31 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %30, i32 0, i32 0 - %32 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %31 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %32, i32 0, i32 3 - %34 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %33, i32 0, i32 0 - %35 = load i32*, i32** %34, align 8 - %36 = load i32*, i32** %10, align 8 - store %"class.std::allocator.0"* %29, %"class.std::allocator.0"** %6, align 8 - store i32* %35, i32** %7, align 8 - store i32* %36, i32** %8, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %7, align 8 - %40 = load i32*, i32** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #16 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %3, align 8 - store i32* %39, i32** %4, align 8 - store i32* %41, i32** %5, align 8 - %42 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - %43 = load i32*, i32** %4, align 8 - %44 = bitcast i32* %43 to i8* - %45 = load i32*, i32** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %45) #16 - %47 = load i32, i32* %46, align 4 - store i32 %47, i32* %43, align 4 - %48 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %51, i32 0, i32 0 - %53 = load i32*, i32** %52, align 8 - %54 = getelementptr inbounds i32, i32* %53, i32 1 - store i32* %54, i32** %52, align 8 - br label %57 - -55: ; preds = %2 - %56 = load i32*, i32** %10, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, i32* noundef nonnull align 4 dereferenceable(4) %56) - br label %57 - -57: ; preds = %55, %26 - ret void -} - -; 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) #5 comdat align 2 { - %3 = alloca %"class.std::__new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store i32* %1, i32** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #16 - %13 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #16 - %14 = icmp eq i64 %12, %13 - br i1 %14, label %15, label %16 - -15: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* noundef getelementptr inbounds ([48 x i8], [48 x i8]* @.str.4, i64 0, i64 0)) #19 - unreachable - -16: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) - %17 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %18 = call noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %17) - %19 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 3 - %23 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %22, i32 0, i32 3 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds i32*, i32** %24, i64 1 - store i32* %18, i32** %25, align 8 - %26 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %27 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %26, i32 0, i32 0 - %28 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %27 to %"class.std::allocator.0"* - %29 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %29, i32 0, i32 0 - %31 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %30 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %32 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %31, i32 0, i32 3 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load i32*, i32** %33, align 8 - %35 = load i32*, i32** %10, align 8 - %36 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %35) #16 - store %"class.std::allocator.0"* %28, %"class.std::allocator.0"** %6, align 8 - store i32* %34, i32** %7, align 8 - store i32* %36, i32** %8, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %7, align 8 - %40 = load i32*, i32** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #16 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %3, align 8 - store i32* %39, i32** %4, align 8 - store i32* %41, i32** %5, align 8 - %42 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - %43 = load i32*, i32** %4, align 8 - %44 = bitcast i32* %43 to i8* - %45 = load i32*, i32** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %45) #16 - %47 = load i32, i32* %46, align 4 - store i32 %47, i32* %43, align 4 - %48 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %53 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %52, i32 0, i32 0 - %54 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %53 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %55 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %54, i32 0, i32 3 - %56 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %55, i32 0, i32 3 - %57 = load i32**, i32*** %56, align 8 - %58 = getelementptr inbounds i32*, i32** %57, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %51, i32** noundef %58) #16 - %59 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %60 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %59, i32 0, i32 0 - %61 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %60 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %62 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %61, i32 0, i32 3 - %63 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %62, i32 0, i32 1 - %64 = load i32*, i32** %63, align 8 - %65 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %66 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %65, i32 0, i32 0 - %67 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %66 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %68 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %67, i32 0, i32 3 - %69 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %68, i32 0, i32 0 - store i32* %64, i32** %69, align 8 - ret void -} - -; 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: 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 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call 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) #16 - ret i64 %12 -} - -; 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 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) #16 - %6 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #16 - ret i64 %6 -} - -; Function Attrs: noreturn -declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #13 - -; 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) #5 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load i32**, i32*** %22, align 8 - %24 = ptrtoint i32** %18 to i64 - %25 = ptrtoint i32** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* 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: 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) #5 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator.0"* - %8 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - store %"class.std::allocator.0"* %7, %"class.std::allocator.0"** %2, align 8 - store i64 %8, i64* %3, align 8 - %9 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %10 = bitcast %"class.std::allocator.0"* %9 to %"class.std::__new_allocator.1"* - %11 = load i64, i64* %3, align 8 - %12 = call noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %10, i64 noundef %11, i8* noundef null) - ret i32* %12 -} - -; 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 - store i32** %1, i32*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load i32**, i32*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store i32** %6, i32*** %7, align 8 - %8 = load i32**, i32*** %4, align 8 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store i32* %9, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load i32*, i32** %11, align 8 - %13 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #16 - %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: 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 noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #16 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load i32**, i32*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = ptrtoint i32** %8 to i64 - %13 = ptrtoint i32** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = 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 i64 - %21 = sub nsw i64 %15, %20 - %22 = mul nsw i64 %5, %21 - %23 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 0 - %25 = load i32*, i32** %24, align 8 - %26 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 1 - %28 = load i32*, i32** %27, align 8 - %29 = ptrtoint i32* %25 to i64 - %30 = ptrtoint i32* %28 to i64 - %31 = sub i64 %29, %30 - %32 = sdiv exact i64 %31, 4 - %33 = add nsw i64 %22, %32 - %34 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 2 - %36 = load i32*, i32** %35, align 8 - %37 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %38 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %37, i32 0, i32 0 - %39 = load i32*, i32** %38, align 8 - %40 = ptrtoint i32* %36 to i64 - %41 = ptrtoint i32* %39 to i64 - %42 = sub i64 %40, %41 - %43 = sdiv exact i64 %42, 4 - %44 = add nsw i64 %33, %43 - ret i64 %44 -} - -; 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: 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::__new_allocator.1"*, align 8 - %3 = alloca %"class.std::__new_allocator.1"*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %5, align 8 - store i64 9223372036854775807, i64* %6, align 8 - %8 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %5, align 8 - store %"class.std::allocator.0"* %8, %"class.std::allocator.0"** %4, align 8 - %9 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %10 = bitcast %"class.std::allocator.0"* %9 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %10, %"class.std::__new_allocator.1"** %3, align 8 - %11 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - store %"class.std::__new_allocator.1"* %11, %"class.std::__new_allocator.1"** %2, align 8 - %12 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - store i64 2305843009213693951, i64* %7, align 8 - %13 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef nonnull align 8 dereferenceable(8) %7) - to label %14 unwind label %16 - -14: ; preds = %1 - %15 = load i64, i64* %13, align 8 - ret i64 %15 - -16: ; preds = %1 - %17 = landingpad { i8*, i32 } - catch i8* null - %18 = extractvalue { i8*, i32 } %17, 0 - call void @__clang_call_terminate(i8* %18) #18 - unreachable -} - -; 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 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: 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) #5 comdat align 2 { - %4 = alloca %"class.std::deque"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8, align 1 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i64, align 8 - %11 = alloca i32**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load i32**, i32*** %24, align 8 - %26 = ptrtoint i32** %19 to i64 - %27 = ptrtoint i32** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load i32**, i32*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds i32*, i32** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds i32*, i32** %56, i64 %63 - store i32** %64, i32*** %9, align 8 - %65 = load i32**, i32*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load i32**, i32*** %70, align 8 - %72 = icmp ult i32** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load i32**, i32*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load i32**, i32*** %84, align 8 - %86 = getelementptr inbounds i32*, i32** %85, i64 1 - %87 = load i32**, i32*** %9, align 8 - %88 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %79, i32** noundef %86, i32** noundef %87) - br label %107 - -89: ; preds = %62 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load i32**, i32*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load i32**, i32*** %100, align 8 - %102 = getelementptr inbounds i32*, i32** %101, i64 1 - %103 = load i32**, i32*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds i32*, i32** %103, i64 %104 - %106 = call noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %95, i32** noundef %102, i32** noundef %105) - br label %107 - -107: ; preds = %89, %73 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call 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 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 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds i32*, i32** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds i32*, i32** %130, i64 %137 - store i32** %138, i32*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load i32**, i32*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load i32**, i32*** %149, align 8 - %151 = getelementptr inbounds i32*, i32** %150, i64 1 - %152 = load i32**, i32*** %9, align 8 - %153 = call 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 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load i32**, i32*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, i32** noundef %159, i64 noundef %164) #16 - %165 = load i32**, i32*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store i32** %165, i32*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load i32**, i32*** %9, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, i32** noundef %180) #16 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load i32**, i32*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds i32*, i32** %185, i64 %186 - %188 = getelementptr inbounds i32*, i32** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, i32** noundef %188) #16 - ret void -} - -; 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) #5 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %9) - %11 = load i32**, i32*** %6, align 8 - %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: 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) #5 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %9) - %11 = load i32**, i32*** %6, align 8 - %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: 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 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable -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) #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"class.std::allocator.3"*, align 8 - %6 = alloca %"class.std::allocator.3"*, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::allocator.3", align 1 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %7, align 8 - store i64 %1, i64* %8, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %9, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12) #16 - %13 = load i64, i64* %8, align 8 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %3, align 8 - store i64 %13, i64* %4, align 8 - %14 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %15 = bitcast %"class.std::allocator.3"* %14 to %"class.std::__new_allocator.4"* - %16 = load i64, i64* %4, align 8 - %17 = invoke noundef i32** @_ZNSt15__new_allocatorIPiE8allocateEmPKv(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %15, i64 noundef %16, i8* noundef null) - to label %18 unwind label %22 - -18: ; preds = %2 - br label %19 - -19: ; preds = %18 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %6, align 8 - %20 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %6, align 8 - %21 = bitcast %"class.std::allocator.3"* %20 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %21) #16 - ret i32** %17 - -22: ; preds = %2 - %23 = landingpad { i8*, i32 } - cleanup - %24 = extractvalue { i8*, i32 } %23, 0 - store i8* %24, i8** %10, align 8 - %25 = extractvalue { i8*, i32 } %23, 1 - store i32 %25, i32* %11, align 4 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %5, align 8 - %26 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %5, align 8 - %27 = bitcast %"class.std::allocator.3"* %26 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %27) #16 - br label %28 - -28: ; preds = %22 - %29 = load i8*, i8** %10, align 8 - %30 = load i32, i32* %11, align 4 - %31 = insertvalue { i8*, i32 } undef, i8* %29, 0 - %32 = insertvalue { i8*, i32 } %31, i32 %30, 1 - resume { i8*, i32 } %32 -} - -; 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) #5 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #16 - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %9) #16 - %11 = load i32**, i32*** %6, align 8 - %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #16 - %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: 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: 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 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - ret i32** %5 -} - -; 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) #5 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; 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: 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) #5 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #5 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = bitcast i32** %17 to i8* - %19 = load i32**, i32*** %4, align 8 - %20 = bitcast i32** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %30 - -23: ; preds = %3 - %24 = load i64, i64* %7, align 8 - %25 = icmp eq i64 %24, 1 - br i1 %25, label %26, label %29 - -26: ; preds = %23 - %27 = load i32**, i32*** %6, align 8 - %28 = load i32**, i32*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %27, i32** noundef %28) - br label %29 - -29: ; preds = %26, %23 - br label %30 - -30: ; preds = %29, %16 - %31 = load i32**, i32*** %6, align 8 - %32 = load i64, i64* %7, align 8 - %33 = getelementptr inbounds i32*, i32** %31, i64 %32 - ret i32** %33 -} - -; Function Attrs: argmemonly nofree nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %0, i32** noundef %1) #6 comdat align 2 { - %3 = alloca i32**, align 8 - %4 = alloca i32**, align 8 - store i32** %0, i32*** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32**, i32*** %3, align 8 - store i32* %6, i32** %7, align 8 - ret void -} - -; 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) #5 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #16 - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %9) #16 - %11 = load i32**, i32*** %6, align 8 - %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #16 - %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: 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) #5 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call 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: 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) #5 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_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 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32*, i32** %17, i64 %19 - %21 = bitcast i32** %20 to i8* - %22 = load i32**, i32*** %4, align 8 - %23 = bitcast i32** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %34 - -26: ; preds = %3 - %27 = load i64, i64* %7, align 8 - %28 = icmp eq i64 %27, 1 - br i1 %28, label %29, label %33 - -29: ; preds = %26 - %30 = load i32**, i32*** %6, align 8 - %31 = getelementptr inbounds i32*, i32** %30, i64 -1 - %32 = load i32**, i32*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %31, i32** noundef %32) - br label %33 - -33: ; preds = %29, %26 - br label %34 - -34: ; preds = %33, %16 - %35 = load i32**, i32*** %6, align 8 - %36 = load i64, i64* %7, align 8 - %37 = sub i64 0, %36 - %38 = getelementptr inbounds i32*, i32** %35, i64 %37 - ret i32** %38 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt15__new_allocatorIPiE8allocateEmPKv(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.4"*, align 8 - %5 = alloca %"class.std::__new_allocator.4"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator.4"* %8, %"class.std::__new_allocator.4"** %4, align 8 - %10 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %4, align 8 - %11 = icmp ugt i64 %9, 1152921504606846975 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 2305843009213693951 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #19 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #19 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 8 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #15 - %21 = bitcast i8* %20 to i32** - ret i32** %21 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca %"class.std::__new_allocator.1"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator.1"* %8, %"class.std::__new_allocator.1"** %4, align 8 - %10 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - %11 = icmp ugt i64 %9, 2305843009213693951 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 4611686018427387903 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #19 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #19 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 4 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #15 - %21 = bitcast i8* %20 to i32* - ret i32* %21 -} - -; 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"* 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"* 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"* 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"* noundef nonnull align 8 dereferenceable(80) %6) #16 - 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 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #16 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %5 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"class.std::allocator.0"* - store %"class.std::allocator.0"* %6, %"class.std::allocator.0"** %3, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %8, %"class.std::__new_allocator.1"** %2, align 8 - %9 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 dereferenceable(80) %10) #16 - ret void -} - -; 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) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32**, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call 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 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call 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"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call 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 - store i32** %28, i32*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load i32**, i32*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds i32*, i32** %35, i64 %42 - store i32** %43, i32*** %8, align 8 - %44 = load i32**, i32*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds i32*, i32** %44, i64 %45 - store i32** %46, i32*** %9, align 8 - %47 = load i32**, i32*** %8, align 8 - %48 = load i32**, i32*** %9, align 8 - invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %47, i32** noundef %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #16 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load i32**, i32*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %60, i64 noundef %64) #16 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store i32** null, i32*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #19 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load i32**, i32*** %8, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, i32** noundef %80) #16 - %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"* noundef nonnull align 8 dereferenceable(32) %83, i32** noundef %85) #16 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load i32*, i32** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store i32* %90, i32** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load i32*, i32** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call 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 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store i32* %103, i32** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #18 - unreachable - -116: ; preds = %54 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl_data"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl_data"* %0, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl_data"*, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store i32** null, i32*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %6) #16 - %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"* noundef nonnull align 8 dereferenceable(32) %7) #16 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store i32** null, i32*** %7, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load i32**, i32*** %5, align 8 - store i32** %11, i32*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load i32**, i32*** %7, align 8 - %14 = load i32**, i32*** %6, align 8 - %15 = icmp ult i32** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke 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 - %19 = load i32**, i32*** %7, align 8 - store i32* %17, i32** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load i32**, i32*** %7, align 8 - %22 = getelementptr inbounds i32*, i32** %21, i32 1 - store i32** %22, i32*** %7, align 8 - br label %12, !llvm.loop !16 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #16 - %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"* noundef nonnull align 8 dereferenceable(80) %10, i32** noundef %30, i32** noundef %31) #16 - invoke void @__cxa_rethrow() #19 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #18 - unreachable - -47: ; preds = %27 - unreachable -} - -declare void @__cxa_rethrow() - -declare void @__cxa_end_catch() - -; 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 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call 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) #16 - ret i1 %12 -} - -; 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 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load i32*, i32** %6, align 8 - %8 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - %11 = icmp eq i32* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #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 @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #16 - %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) #16 - %6 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3) #16 - ret i32* %6 -} - -; 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) #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - %7 = load i32*, i32** %6, align 8 - %8 = icmp eq i32* %5, %7 - br i1 %8, label %9, label %16 - -9: ; preds = %1 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = getelementptr inbounds i32*, i32** %11, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3, i32** noundef %12) #16 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - %14 = load i32*, i32** %13, align 8 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* %14, i32** %15, align 8 - br label %16 - -16: ; preds = %9, %1 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %18 = load i32*, i32** %17, align 8 - %19 = getelementptr inbounds i32, i32* %18, i32 -1 - store i32* %19, i32** %17, align 8 - ret %"struct.std::_Deque_iterator"* %3 -} - -; Function Attrs: 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 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"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::__new_allocator.1"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 0 - %13 = load i32*, i32** %12, align 8 - %14 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 1 - %19 = load i32*, i32** %18, align 8 - %20 = icmp ne i32* %13, %19 - br i1 %20, label %21, label %42 - -21: ; preds = %1 - %22 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %23 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %23 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %24, i32 0, i32 3 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %25, i32 0, i32 0 - %27 = load i32*, i32** %26, align 8 - %28 = getelementptr inbounds i32, i32* %27, i32 -1 - store i32* %28, i32** %26, align 8 - %29 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %30 = 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) %29) #16 - %31 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 0 - %36 = load i32*, i32** %35, align 8 - store %"class.std::allocator.0"* %30, %"class.std::allocator.0"** %4, align 8 - store i32* %36, i32** %5, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %2, align 8 - store i32* %39, i32** %3, align 8 - %40 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %41 = load i32*, i32** %3, align 8 - br label %44 - -42: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) - to label %43 unwind label %45 - -43: ; preds = %42 - br label %44 - -44: ; preds = %43, %21 - ret void - -45: ; preds = %42 - %46 = landingpad { i8*, i32 } - catch i8* null - %47 = extractvalue { i8*, i32 } %46, 0 - call void @__clang_call_terminate(i8* %47) #18 - unreachable -} - -; 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) #6 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %9, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 3 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 1 - %14 = load i32*, i32** %13, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %14) #16 - %15 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %16 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %15, i32 0, i32 0 - %17 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %16 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %18 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %17, i32 0, i32 3 - %19 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 3 - %23 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %22, i32 0, i32 3 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds i32*, i32** %24, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %18, i32** noundef %25) #16 - %26 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %27 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %26, i32 0, i32 0 - %28 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %27 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %28, i32 0, i32 3 - %30 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %29, i32 0, i32 2 - %31 = load i32*, i32** %30, align 8 - %32 = getelementptr inbounds i32, i32* %31, i64 -1 - %33 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %34 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %33, i32 0, i32 0 - %35 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %34 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %36 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %35, i32 0, i32 3 - %37 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %36, i32 0, i32 0 - store i32* %32, i32** %37, align 8 - %38 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %39 = 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) %38) #16 - %40 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %41 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %40, i32 0, i32 0 - %42 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %41 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %43 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %42, i32 0, i32 3 - %44 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %43, i32 0, i32 0 - %45 = load i32*, i32** %44, align 8 - store %"class.std::allocator.0"* %39, %"class.std::allocator.0"** %4, align 8 - store i32* %45, i32** %5, align 8 - %46 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %47 = bitcast %"class.std::allocator.0"* %46 to %"class.std::__new_allocator.1"* - %48 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator.1"* %47, %"class.std::__new_allocator.1"** %2, align 8 - store i32* %48, i32** %3, align 8 - %49 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %50 = load i32*, i32** %3, align 8 - 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 = { nofree nosync nounwind readnone speculatable willreturn } -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 = { 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 #4 = { 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 #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 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 = { "frame-pointer"="all" "no-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 noreturn nounwind } -attributes #12 = { 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 = { nounwind } -attributes #17 = { builtin nounwind } -attributes #18 = { noreturn nounwind } -attributes #19 = { noreturn } - -!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"} -!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-llvm14/magic-square.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/magic-square.ll deleted file mode 100644 index c91edde77..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/magic-square.ll +++ /dev/null @@ -1,271 +0,0 @@ -; ModuleID = 'PE-benchmarks/magic-square.cpp' -source_filename = "PE-benchmarks/magic-square.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 -@.str.3 = private unnamed_addr constant [2 x i8] c" \00", align 1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z14generateSquarei(i32 noundef %0) #0 { - %2 = alloca i32, align 4 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %9 = load i32, i32* %2, align 4 - %10 = zext i32 %9 to i64 - %11 = load i32, i32* %2, align 4 - %12 = zext i32 %11 to i64 - %13 = call i8* @llvm.stacksave() - store i8* %13, i8** %3, align 8 - %14 = mul nuw i64 %10, %12 - %15 = alloca i32, i64 %14, align 16 - store i64 %10, i64* %4, align 8 - store i64 %12, i64* %5, align 8 - %16 = bitcast i32* %15 to i8* - %17 = mul nuw i64 %10, %12 - %18 = mul nuw i64 4, %17 - call void @llvm.memset.p0i8.i64(i8* align 16 %16, i8 0, i64 %18, i1 false) - %19 = load i32, i32* %2, align 4 - %20 = sdiv i32 %19, 2 - store i32 %20, i32* %6, align 4 - %21 = load i32, i32* %2, align 4 - %22 = sub nsw i32 %21, 1 - store i32 %22, i32* %7, align 4 - store i32 1, i32* %8, align 4 - br label %23 - -23: ; preds = %76, %61, %1 - %24 = load i32, i32* %8, align 4 - %25 = load i32, i32* %2, align 4 - %26 = load i32, i32* %2, align 4 - %27 = mul nsw i32 %25, %26 - %28 = icmp sle i32 %24, %27 - br i1 %28, label %29, label %81 - -29: ; preds = %23 - %30 = load i32, i32* %6, align 4 - %31 = icmp eq i32 %30, -1 - br i1 %31, label %32, label %39 - -32: ; preds = %29 - %33 = load i32, i32* %7, align 4 - %34 = load i32, i32* %2, align 4 - %35 = icmp eq i32 %33, %34 - br i1 %35, label %36, label %39 - -36: ; preds = %32 - %37 = load i32, i32* %2, align 4 - %38 = sub nsw i32 %37, 2 - store i32 %38, i32* %7, align 4 - store i32 0, i32* %6, align 4 - br label %51 - -39: ; preds = %32, %29 - %40 = load i32, i32* %7, align 4 - %41 = load i32, i32* %2, align 4 - %42 = icmp eq i32 %40, %41 - br i1 %42, label %43, label %44 - -43: ; preds = %39 - store i32 0, i32* %7, align 4 - br label %44 - -44: ; preds = %43, %39 - %45 = load i32, i32* %6, align 4 - %46 = icmp slt i32 %45, 0 - br i1 %46, label %47, label %50 - -47: ; preds = %44 - %48 = load i32, i32* %2, align 4 - %49 = sub nsw i32 %48, 1 - store i32 %49, i32* %6, align 4 - br label %50 - -50: ; preds = %47, %44 - br label %51 - -51: ; preds = %50, %36 - %52 = load i32, i32* %6, align 4 - %53 = sext i32 %52 to i64 - %54 = mul nsw i64 %53, %12 - %55 = getelementptr inbounds i32, i32* %15, i64 %54 - %56 = load i32, i32* %7, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %55, i64 %57 - %59 = load i32, i32* %58, align 4 - %60 = icmp ne i32 %59, 0 - br i1 %60, label %61, label %66 - -61: ; preds = %51 - %62 = load i32, i32* %7, align 4 - %63 = sub nsw i32 %62, 2 - store i32 %63, i32* %7, align 4 - %64 = load i32, i32* %6, align 4 - %65 = add nsw i32 %64, 1 - store i32 %65, i32* %6, align 4 - br label %23, !llvm.loop !6 - -66: ; preds = %51 - %67 = load i32, i32* %8, align 4 - %68 = add nsw i32 %67, 1 - store i32 %68, i32* %8, align 4 - %69 = load i32, i32* %6, align 4 - %70 = sext i32 %69 to i64 - %71 = mul nsw i64 %70, %12 - %72 = getelementptr inbounds i32, i32* %15, i64 %71 - %73 = load i32, i32* %7, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds i32, i32* %72, i64 %74 - store i32 %67, i32* %75, align 4 - br label %76 - -76: ; preds = %66 - %77 = load i32, i32* %7, align 4 - %78 = add nsw i32 %77, 1 - store i32 %78, i32* %7, align 4 - %79 = load i32, i32* %6, align 4 - %80 = add nsw i32 %79, -1 - store i32 %80, i32* %6, align 4 - br label %23, !llvm.loop !6 - -81: ; preds = %23 - %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 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 - %89 = mul nsw i32 %87, %88 - %90 = add nsw i32 %89, 1 - %91 = mul nsw i32 %86, %90 - %92 = sdiv i32 %91, 2 - %93 = call 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 - -95: ; preds = %120, %81 - %96 = load i32, i32* %6, align 4 - %97 = load i32, i32* %2, align 4 - %98 = icmp slt i32 %96, %97 - br i1 %98, label %99, label %123 - -99: ; preds = %95 - store i32 0, i32* %7, align 4 - br label %100 - -100: ; preds = %115, %99 - %101 = load i32, i32* %7, align 4 - %102 = load i32, i32* %2, align 4 - %103 = icmp slt i32 %101, %102 - br i1 %103, label %104, label %118 - -104: ; preds = %100 - %105 = load i32, i32* %6, align 4 - %106 = sext i32 %105 to i64 - %107 = mul nsw i64 %106, %12 - %108 = getelementptr inbounds i32, i32* %15, i64 %107 - %109 = load i32, i32* %7, align 4 - %110 = sext i32 %109 to i64 - %111 = getelementptr inbounds i32, i32* %108, i64 %110 - %112 = load i32, i32* %111, align 4 - %113 = call 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 !8 - -118: ; preds = %100 - %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 !9 - -123: ; preds = %95 - %124 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %124) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #2 - -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) #3 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 - -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) #3 - -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)) #3 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #4 { - %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 noundef %3) - ret i32 0 -} - -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 willreturn } -attributes #2 = { argmemonly nofree nounwind willreturn writeonly } -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" } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/matrix-chain-multiplication.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/matrix-chain-multiplication.ll deleted file mode 100644 index cc1726110..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/matrix-chain-multiplication.ll +++ /dev/null @@ -1,281 +0,0 @@ -; ModuleID = 'PE-benchmarks/matrix-chain-multiplication.cpp' -source_filename = "PE-benchmarks/matrix-chain-multiplication.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@__const.main.arr = private unnamed_addr constant [4 x i32] [i32 1, i32 2, i32 3, i32 4], align 16 -@_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 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z16MatrixChainOrderPii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %13 = load i32, i32* %4, align 4 - %14 = zext i32 %13 to i64 - %15 = load i32, i32* %4, align 4 - %16 = zext i32 %15 to i64 - %17 = call i8* @llvm.stacksave() - store i8* %17, i8** %5, align 8 - %18 = mul nuw i64 %14, %16 - %19 = alloca i32, i64 %18, align 16 - store i64 %14, i64* %6, align 8 - store i64 %16, i64* %7, align 8 - store i32 1, i32* %8, align 4 - br label %20 - -20: ; preds = %32, %2 - %21 = load i32, i32* %8, align 4 - %22 = load i32, i32* %4, align 4 - %23 = icmp slt i32 %21, %22 - br i1 %23, label %24, label %35 - -24: ; preds = %20 - %25 = load i32, i32* %8, align 4 - %26 = sext i32 %25 to i64 - %27 = mul nsw i64 %26, %16 - %28 = getelementptr inbounds i32, i32* %19, i64 %27 - %29 = load i32, i32* %8, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i32, i32* %28, i64 %30 - store i32 0, i32* %31, align 4 - br label %32 - -32: ; preds = %24 - %33 = load i32, i32* %8, align 4 - %34 = add nsw i32 %33, 1 - store i32 %34, i32* %8, align 4 - br label %20, !llvm.loop !6 - -35: ; preds = %20 - store i32 2, i32* %11, align 4 - br label %36 - -36: ; preds = %132, %35 - %37 = load i32, i32* %11, align 4 - %38 = load i32, i32* %4, align 4 - %39 = icmp slt i32 %37, %38 - br i1 %39, label %40, label %135 - -40: ; preds = %36 - store i32 1, i32* %8, align 4 - br label %41 - -41: ; preds = %128, %40 - %42 = load i32, i32* %8, align 4 - %43 = load i32, i32* %4, align 4 - %44 = load i32, i32* %11, align 4 - %45 = sub nsw i32 %43, %44 - %46 = add nsw i32 %45, 1 - %47 = icmp slt i32 %42, %46 - br i1 %47, label %48, label %131 - -48: ; preds = %41 - %49 = load i32, i32* %8, align 4 - %50 = load i32, i32* %11, align 4 - %51 = add nsw i32 %49, %50 - %52 = sub nsw i32 %51, 1 - store i32 %52, i32* %9, align 4 - %53 = load i32, i32* %8, align 4 - %54 = sext i32 %53 to i64 - %55 = mul nsw i64 %54, %16 - %56 = getelementptr inbounds i32, i32* %19, i64 %55 - %57 = load i32, i32* %9, align 4 - %58 = sext i32 %57 to i64 - %59 = getelementptr inbounds i32, i32* %56, i64 %58 - store i32 2147483647, i32* %59, align 4 - %60 = load i32, i32* %8, align 4 - store i32 %60, i32* %10, align 4 - br label %61 - -61: ; preds = %124, %48 - %62 = load i32, i32* %10, align 4 - %63 = load i32, i32* %9, align 4 - %64 = sub nsw i32 %63, 1 - %65 = icmp sle i32 %62, %64 - br i1 %65, label %66, label %127 - -66: ; preds = %61 - %67 = load i32, i32* %8, align 4 - %68 = sext i32 %67 to i64 - %69 = mul nsw i64 %68, %16 - %70 = getelementptr inbounds i32, i32* %19, i64 %69 - %71 = load i32, i32* %10, align 4 - %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds i32, i32* %70, i64 %72 - %74 = load i32, i32* %73, align 4 - %75 = load i32, i32* %10, align 4 - %76 = add nsw i32 %75, 1 - %77 = sext i32 %76 to i64 - %78 = mul nsw i64 %77, %16 - %79 = getelementptr inbounds i32, i32* %19, i64 %78 - %80 = load i32, i32* %9, align 4 - %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds i32, i32* %79, i64 %81 - %83 = load i32, i32* %82, align 4 - %84 = add nsw i32 %74, %83 - %85 = load i32*, i32** %3, align 8 - %86 = load i32, i32* %8, align 4 - %87 = sub nsw i32 %86, 1 - %88 = sext i32 %87 to i64 - %89 = getelementptr inbounds i32, i32* %85, i64 %88 - %90 = load i32, i32* %89, align 4 - %91 = load i32*, i32** %3, align 8 - %92 = load i32, i32* %10, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %91, i64 %93 - %95 = load i32, i32* %94, align 4 - %96 = mul nsw i32 %90, %95 - %97 = load i32*, i32** %3, align 8 - %98 = load i32, i32* %9, align 4 - %99 = sext i32 %98 to i64 - %100 = getelementptr inbounds i32, i32* %97, i64 %99 - %101 = load i32, i32* %100, align 4 - %102 = mul nsw i32 %96, %101 - %103 = add nsw i32 %84, %102 - store i32 %103, i32* %12, align 4 - %104 = load i32, i32* %12, align 4 - %105 = load i32, i32* %8, align 4 - %106 = sext i32 %105 to i64 - %107 = mul nsw i64 %106, %16 - %108 = getelementptr inbounds i32, i32* %19, i64 %107 - %109 = load i32, i32* %9, align 4 - %110 = sext i32 %109 to i64 - %111 = getelementptr inbounds i32, i32* %108, i64 %110 - %112 = load i32, i32* %111, align 4 - %113 = icmp slt i32 %104, %112 - br i1 %113, label %114, label %123 - -114: ; preds = %66 - %115 = load i32, i32* %12, align 4 - %116 = load i32, i32* %8, align 4 - %117 = sext i32 %116 to i64 - %118 = mul nsw i64 %117, %16 - %119 = getelementptr inbounds i32, i32* %19, i64 %118 - %120 = load i32, i32* %9, align 4 - %121 = sext i32 %120 to i64 - %122 = getelementptr inbounds i32, i32* %119, i64 %121 - store i32 %115, i32* %122, align 4 - br label %123 - -123: ; preds = %114, %66 - br label %124 - -124: ; preds = %123 - %125 = load i32, i32* %10, align 4 - %126 = add nsw i32 %125, 1 - store i32 %126, i32* %10, align 4 - br label %61, !llvm.loop !8 - -127: ; preds = %61 - br label %128 - -128: ; preds = %127 - %129 = load i32, i32* %8, align 4 - %130 = add nsw i32 %129, 1 - store i32 %130, i32* %8, align 4 - br label %41, !llvm.loop !9 - -131: ; preds = %41 - br label %132 - -132: ; preds = %131 - %133 = load i32, i32* %11, align 4 - %134 = add nsw i32 %133, 1 - store i32 %134, i32* %11, align 4 - br label %36, !llvm.loop !10 - -135: ; preds = %36 - %136 = mul nsw i64 1, %16 - %137 = getelementptr inbounds i32, i32* %19, i64 %136 - %138 = load i32, i32* %4, align 4 - %139 = sub nsw i32 %138, 1 - %140 = sext i32 %139 to i64 - %141 = getelementptr inbounds i32, i32* %137, i64 %140 - %142 = load i32, i32* %141, align 4 - %143 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %143) - ret i32 %142 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca [4 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [4 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([4 x i32]* @__const.main.arr to i8*), i64 16, i1 false) - store i32 4, i32* %3, align 4 - %5 = call noundef 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 - -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) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 - -declare i32 @getchar() #4 - -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 = { 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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-length-chain-of-pairs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-length-chain-of-pairs.ll deleted file mode 100644 index 9c8c9795d..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-length-chain-of-pairs.ll +++ /dev/null @@ -1,250 +0,0 @@ -; ModuleID = 'PE-benchmarks/maximum-length-chain-of-pairs.cpp' -source_filename = "PE-benchmarks/maximum-length-chain-of-pairs.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%class.Pair = type { i32, i32 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@__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 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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z14maxChainLengthP4Pairi(%class.Pair* noundef %0, i32 noundef %1) #0 { - %3 = alloca %class.Pair*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32*, align 8 - store %class.Pair* %0, %class.Pair** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %7, align 4 - %9 = load i32, i32* %4, align 4 - %10 = sext i32 %9 to i64 - %11 = mul i64 4, %10 - %12 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %11, i64 4) - %13 = extractvalue { i64, i1 } %12, 1 - %14 = extractvalue { i64, i1 } %12, 0 - %15 = select i1 %13, i64 -1, i64 %14 - %16 = call noalias noundef nonnull i8* @_Znam(i64 noundef %15) #6 - %17 = bitcast i8* %16 to i32* - store i32* %17, i32** %8, align 8 - store i32 0, i32* %5, align 4 - br label %18 - -18: ; preds = %27, %2 - %19 = load i32, i32* %5, align 4 - %20 = load i32, i32* %4, align 4 - %21 = icmp slt i32 %19, %20 - br i1 %21, label %22, label %30 - -22: ; preds = %18 - %23 = load i32*, i32** %8, align 8 - %24 = load i32, i32* %5, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %23, i64 %25 - store i32 1, i32* %26, align 4 - br label %27 - -27: ; preds = %22 - %28 = load i32, i32* %5, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %5, align 4 - br label %18, !llvm.loop !6 - -30: ; preds = %18 - store i32 1, i32* %5, align 4 - br label %31 - -31: ; preds = %83, %30 - %32 = load i32, i32* %5, align 4 - %33 = load i32, i32* %4, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %86 - -35: ; preds = %31 - store i32 0, i32* %6, align 4 - br label %36 - -36: ; preds = %79, %35 - %37 = load i32, i32* %6, align 4 - %38 = load i32, i32* %5, align 4 - %39 = icmp slt i32 %37, %38 - br i1 %39, label %40, label %82 - -40: ; preds = %36 - %41 = load %class.Pair*, %class.Pair** %3, align 8 - %42 = load i32, i32* %5, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds %class.Pair, %class.Pair* %41, i64 %43 - %45 = getelementptr inbounds %class.Pair, %class.Pair* %44, i32 0, i32 0 - %46 = load i32, i32* %45, align 4 - %47 = load %class.Pair*, %class.Pair** %3, align 8 - %48 = load i32, i32* %6, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds %class.Pair, %class.Pair* %47, i64 %49 - %51 = getelementptr inbounds %class.Pair, %class.Pair* %50, i32 0, i32 1 - %52 = load i32, i32* %51, align 4 - %53 = icmp sgt i32 %46, %52 - br i1 %53, label %54, label %78 - -54: ; preds = %40 - %55 = load i32*, i32** %8, align 8 - %56 = load i32, i32* %5, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %55, i64 %57 - %59 = load i32, i32* %58, align 4 - %60 = load i32*, i32** %8, align 8 - %61 = load i32, i32* %6, align 4 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds i32, i32* %60, i64 %62 - %64 = load i32, i32* %63, align 4 - %65 = add nsw i32 %64, 1 - %66 = icmp slt i32 %59, %65 - br i1 %66, label %67, label %78 - -67: ; preds = %54 - %68 = load i32*, i32** %8, align 8 - %69 = load i32, i32* %6, align 4 - %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds i32, i32* %68, i64 %70 - %72 = load i32, i32* %71, align 4 - %73 = add nsw i32 %72, 1 - %74 = load i32*, i32** %8, align 8 - %75 = load i32, i32* %5, align 4 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds i32, i32* %74, i64 %76 - store i32 %73, i32* %77, align 4 - br label %78 - -78: ; preds = %67, %54, %40 - br label %79 - -79: ; preds = %78 - %80 = load i32, i32* %6, align 4 - %81 = add nsw i32 %80, 1 - store i32 %81, i32* %6, align 4 - br label %36, !llvm.loop !8 - -82: ; preds = %36 - br label %83 - -83: ; preds = %82 - %84 = load i32, i32* %5, align 4 - %85 = add nsw i32 %84, 1 - store i32 %85, i32* %5, align 4 - br label %31, !llvm.loop !9 - -86: ; preds = %31 - store i32 0, i32* %5, align 4 - br label %87 - -87: ; preds = %106, %86 - %88 = load i32, i32* %5, align 4 - %89 = load i32, i32* %4, align 4 - %90 = icmp slt i32 %88, %89 - br i1 %90, label %91, label %109 - -91: ; preds = %87 - %92 = load i32, i32* %7, align 4 - %93 = load i32*, i32** %8, align 8 - %94 = load i32, i32* %5, align 4 - %95 = sext i32 %94 to i64 - %96 = getelementptr inbounds i32, i32* %93, i64 %95 - %97 = load i32, i32* %96, align 4 - %98 = icmp slt i32 %92, %97 - br i1 %98, label %99, label %105 - -99: ; preds = %91 - %100 = load i32*, i32** %8, align 8 - %101 = load i32, i32* %5, align 4 - %102 = sext i32 %101 to i64 - %103 = getelementptr inbounds i32, i32* %100, i64 %102 - %104 = load i32, i32* %103, align 4 - store i32 %104, i32* %7, align 4 - br label %105 - -105: ; preds = %99, %91 - br label %106 - -106: ; preds = %105 - %107 = load i32, i32* %5, align 4 - %108 = add nsw i32 %107, 1 - store i32 %108, i32* %5, align 4 - br label %87, !llvm.loop !10 - -109: ; preds = %87 - %110 = load i32, i32* %7, align 4 - ret i32 %110 -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [4 x %class.Pair], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [4 x %class.Pair]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([4 x %class.Pair]* @__const.main.arr to i8*), i64 32, i1 false) - store i32 4, i32* %3, align 4 - %5 = call noundef 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -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) "frame-pointer"="all" "no-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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/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 deleted file mode 100644 index e2f593746..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll +++ /dev/null @@ -1,318 +0,0 @@ -; ModuleID = 'PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp' -source_filename = "PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt3maxIiERKT_S2_S2_ = comdat any - -@__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 global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [18 x i8] c"Maximum Profit = \00", align 1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z9maxProfitPii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %14 = load i32, i32* %4, align 4 - %15 = sext i32 %14 to i64 - %16 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %15, i64 4) - %17 = extractvalue { i64, i1 } %16, 1 - %18 = extractvalue { i64, i1 } %16, 0 - %19 = select i1 %17, i64 -1, i64 %18 - %20 = call noalias noundef nonnull i8* @_Znam(i64 noundef %19) #8 - %21 = bitcast i8* %20 to i32* - store i32* %21, i32** %5, align 8 - store i32 0, i32* %6, align 4 - br label %22 - -22: ; preds = %31, %2 - %23 = load i32, i32* %6, align 4 - %24 = load i32, i32* %4, align 4 - %25 = icmp slt i32 %23, %24 - br i1 %25, label %26, label %34 - -26: ; preds = %22 - %27 = load i32*, i32** %5, align 8 - %28 = load i32, i32* %6, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i32, i32* %27, i64 %29 - store i32 0, i32* %30, align 4 - br label %31 - -31: ; preds = %26 - %32 = load i32, i32* %6, align 4 - %33 = add nsw i32 %32, 1 - store i32 %33, i32* %6, align 4 - br label %22, !llvm.loop !6 - -34: ; preds = %22 - %35 = load i32*, i32** %3, align 8 - %36 = load i32, i32* %4, align 4 - %37 = sub nsw i32 %36, 1 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i32, i32* %35, i64 %38 - %40 = load i32, i32* %39, align 4 - store i32 %40, i32* %7, align 4 - %41 = load i32, i32* %4, align 4 - %42 = sub nsw i32 %41, 2 - store i32 %42, i32* %8, align 4 - br label %43 - -43: ; preds = %79, %34 - %44 = load i32, i32* %8, align 4 - %45 = icmp sge i32 %44, 0 - br i1 %45, label %46, label %82 - -46: ; preds = %43 - %47 = load i32*, i32** %3, align 8 - %48 = load i32, i32* %8, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %47, i64 %49 - %51 = load i32, i32* %50, align 4 - %52 = load i32, i32* %7, align 4 - %53 = icmp sgt i32 %51, %52 - br i1 %53, label %54, label %60 - -54: ; preds = %46 - %55 = load i32*, i32** %3, align 8 - %56 = load i32, i32* %8, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %55, i64 %57 - %59 = load i32, i32* %58, align 4 - store i32 %59, i32* %7, align 4 - br label %60 - -60: ; preds = %54, %46 - %61 = load i32*, i32** %5, align 8 - %62 = load i32, i32* %8, align 4 - %63 = add nsw i32 %62, 1 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds i32, i32* %61, i64 %64 - %66 = load i32, i32* %7, align 4 - %67 = load i32*, i32** %3, align 8 - %68 = load i32, i32* %8, align 4 - %69 = sext i32 %68 to i64 - %70 = getelementptr inbounds i32, i32* %67, i64 %69 - %71 = load i32, i32* %70, align 4 - %72 = sub nsw i32 %66, %71 - store i32 %72, i32* %9, align 4 - %73 = call 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 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds i32, i32* %75, i64 %77 - store i32 %74, i32* %78, align 4 - br label %79 - -79: ; preds = %60 - %80 = load i32, i32* %8, align 4 - %81 = add nsw i32 %80, -1 - store i32 %81, i32* %8, align 4 - br label %43, !llvm.loop !8 - -82: ; preds = %43 - %83 = load i32*, i32** %3, align 8 - %84 = getelementptr inbounds i32, i32* %83, i64 0 - %85 = load i32, i32* %84, align 4 - store i32 %85, i32* %10, align 4 - store i32 1, i32* %11, align 4 - br label %86 - -86: ; preds = %129, %82 - %87 = load i32, i32* %11, align 4 - %88 = load i32, i32* %4, align 4 - %89 = icmp slt i32 %87, %88 - br i1 %89, label %90, label %132 - -90: ; preds = %86 - %91 = load i32*, i32** %3, align 8 - %92 = load i32, i32* %11, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %91, i64 %93 - %95 = load i32, i32* %94, align 4 - %96 = load i32, i32* %10, align 4 - %97 = icmp slt i32 %95, %96 - br i1 %97, label %98, label %104 - -98: ; preds = %90 - %99 = load i32*, i32** %3, align 8 - %100 = load i32, i32* %11, align 4 - %101 = sext i32 %100 to i64 - %102 = getelementptr inbounds i32, i32* %99, i64 %101 - %103 = load i32, i32* %102, align 4 - store i32 %103, i32* %10, align 4 - br label %104 - -104: ; preds = %98, %90 - %105 = load i32*, i32** %5, align 8 - %106 = load i32, i32* %11, align 4 - %107 = sub nsw i32 %106, 1 - %108 = sext i32 %107 to i64 - %109 = getelementptr inbounds i32, i32* %105, i64 %108 - %110 = load i32*, i32** %5, align 8 - %111 = load i32, i32* %11, align 4 - %112 = sext i32 %111 to i64 - %113 = getelementptr inbounds i32, i32* %110, i64 %112 - %114 = load i32, i32* %113, align 4 - %115 = load i32*, i32** %3, align 8 - %116 = load i32, i32* %11, align 4 - %117 = sext i32 %116 to i64 - %118 = getelementptr inbounds i32, i32* %115, i64 %117 - %119 = load i32, i32* %118, align 4 - %120 = load i32, i32* %10, align 4 - %121 = sub nsw i32 %119, %120 - %122 = add nsw i32 %114, %121 - store i32 %122, i32* %12, align 4 - %123 = call 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 - %127 = sext i32 %126 to i64 - %128 = getelementptr inbounds i32, i32* %125, i64 %127 - store i32 %124, i32* %128, align 4 - br label %129 - -129: ; preds = %104 - %130 = load i32, i32* %11, align 4 - %131 = add nsw i32 %130, 1 - store i32 %131, i32* %11, align 4 - br label %86, !llvm.loop !9 - -132: ; preds = %86 - %133 = load i32*, i32** %5, align 8 - %134 = load i32, i32* %4, align 4 - %135 = sub nsw i32 %134, 1 - %136 = sext i32 %135 to i64 - %137 = getelementptr inbounds i32, i32* %133, i64 %136 - %138 = load i32, i32* %137, align 4 - store i32 %138, i32* %13, align 4 - %139 = load i32*, i32** %5, align 8 - %140 = icmp eq i32* %139, null - br i1 %140, label %143, label %141 - -141: ; preds = %132 - %142 = bitcast i32* %139 to i8* - call void @_ZdaPv(i8* noundef %142) #9 - br label %143 - -143: ; preds = %141, %132 - %144 = load i32, i32* %13, align 4 - ret i32 %144 -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; 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) #3 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdaPv(i8* noundef) #4 - -; 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 - store i32 0, i32* %1, align 4 - %4 = bitcast [7 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([7 x i32]* @__const.main.price to i8*), i64 28, i1 false) - store i32 7, i32* %3, align 4 - %5 = call noundef 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -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) #7 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #7 - -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) "frame-pointer"="all" "no-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 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 #4 = { 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 #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 = { "frame-pointer"="all" "no-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) } -attributes #9 = { builtin nounwind } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/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 deleted file mode 100644 index a19544660..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll +++ /dev/null @@ -1,391 +0,0 @@ -; ModuleID = 'PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp' -source_filename = "PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -@_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 -@__const.main.M = private unnamed_addr constant [6 x [5 x i32]] [[5 x i32] [i32 0, i32 1, i32 1, i32 0, i32 1], [5 x i32] [i32 1, i32 1, i32 0, i32 1, i32 0], [5 x i32] [i32 0, i32 1, i32 1, i32 1, i32 0], [5 x i32] [i32 1, i32 1, i32 1, i32 1, i32 0], [5 x i32] [i32 1, i32 1, i32 1, i32 1, i32 1], [5 x i32] zeroinitializer], align 16 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z17printMaxSubSquarePA5_i([5 x i32]* noundef %0) #0 { - %2 = alloca [5 x i32]*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca [6 x [5 x i32]], align 16 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store [5 x i32]* %0, [5 x i32]** %2, align 8 - store i32 0, i32* %3, align 4 - br label %9 - -9: ; preds = %23, %1 - %10 = load i32, i32* %3, align 4 - %11 = icmp slt i32 %10, 6 - br i1 %11, label %12, label %26 - -12: ; preds = %9 - %13 = load [5 x i32]*, [5 x i32]** %2, align 8 - %14 = load i32, i32* %3, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [5 x i32], [5 x i32]* %13, i64 %15 - %17 = getelementptr inbounds [5 x i32], [5 x i32]* %16, i64 0, i64 0 - %18 = load i32, i32* %17, align 4 - %19 = load i32, i32* %3, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %20 - %22 = getelementptr inbounds [5 x i32], [5 x i32]* %21, i64 0, i64 0 - store i32 %18, i32* %22, align 4 - br label %23 - -23: ; preds = %12 - %24 = load i32, i32* %3, align 4 - %25 = add nsw i32 %24, 1 - store i32 %25, i32* %3, align 4 - br label %9, !llvm.loop !6 - -26: ; preds = %9 - store i32 0, i32* %4, align 4 - br label %27 - -27: ; preds = %41, %26 - %28 = load i32, i32* %4, align 4 - %29 = icmp slt i32 %28, 5 - br i1 %29, label %30, label %44 - -30: ; preds = %27 - %31 = load [5 x i32]*, [5 x i32]** %2, align 8 - %32 = getelementptr inbounds [5 x i32], [5 x i32]* %31, i64 0 - %33 = load i32, i32* %4, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds [5 x i32], [5 x i32]* %32, i64 0, i64 %34 - %36 = load i32, i32* %35, align 4 - %37 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 0 - %38 = load i32, i32* %4, align 4 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds [5 x i32], [5 x i32]* %37, i64 0, i64 %39 - store i32 %36, i32* %40, align 4 - br label %41 - -41: ; preds = %30 - %42 = load i32, i32* %4, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %4, align 4 - br label %27, !llvm.loop !8 - -44: ; preds = %27 - store i32 1, i32* %3, align 4 - br label %45 - -45: ; preds = %107, %44 - %46 = load i32, i32* %3, align 4 - %47 = icmp slt i32 %46, 6 - br i1 %47, label %48, label %110 - -48: ; preds = %45 - store i32 1, i32* %4, align 4 - br label %49 - -49: ; preds = %103, %48 - %50 = load i32, i32* %4, align 4 - %51 = icmp slt i32 %50, 5 - br i1 %51, label %52, label %106 - -52: ; preds = %49 - %53 = load [5 x i32]*, [5 x i32]** %2, align 8 - %54 = load i32, i32* %3, align 4 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds [5 x i32], [5 x i32]* %53, i64 %55 - %57 = load i32, i32* %4, align 4 - %58 = sext i32 %57 to i64 - %59 = getelementptr inbounds [5 x i32], [5 x i32]* %56, i64 0, i64 %58 - %60 = load i32, i32* %59, align 4 - %61 = icmp eq i32 %60, 1 - br i1 %61, label %62, label %95 - -62: ; preds = %52 - %63 = load i32, i32* %3, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %64 - %66 = load i32, i32* %4, align 4 - %67 = sub nsw i32 %66, 1 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds [5 x i32], [5 x i32]* %65, i64 0, i64 %68 - %70 = load i32, i32* %3, align 4 - %71 = sub nsw i32 %70, 1 - %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %72 - %74 = load i32, i32* %4, align 4 - %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds [5 x i32], [5 x i32]* %73, i64 0, i64 %75 - %77 = load i32, i32* %3, align 4 - %78 = sub nsw i32 %77, 1 - %79 = sext i32 %78 to i64 - %80 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %79 - %81 = load i32, i32* %4, align 4 - %82 = sub nsw i32 %81, 1 - %83 = sext i32 %82 to i64 - %84 = getelementptr inbounds [5 x i32], [5 x i32]* %80, i64 0, i64 %83 - %85 = call 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 - %90 = sext i32 %89 to i64 - %91 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %90 - %92 = load i32, i32* %4, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds [5 x i32], [5 x i32]* %91, i64 0, i64 %93 - store i32 %88, i32* %94, align 4 - br label %102 - -95: ; preds = %52 - %96 = load i32, i32* %3, align 4 - %97 = sext i32 %96 to i64 - %98 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %97 - %99 = load i32, i32* %4, align 4 - %100 = sext i32 %99 to i64 - %101 = getelementptr inbounds [5 x i32], [5 x i32]* %98, i64 0, i64 %100 - store i32 0, i32* %101, align 4 - br label %102 - -102: ; preds = %95, %62 - br label %103 - -103: ; preds = %102 - %104 = load i32, i32* %4, align 4 - %105 = add nsw i32 %104, 1 - store i32 %105, i32* %4, align 4 - br label %49, !llvm.loop !9 - -106: ; preds = %49 - br label %107 - -107: ; preds = %106 - %108 = load i32, i32* %3, align 4 - %109 = add nsw i32 %108, 1 - store i32 %109, i32* %3, align 4 - br label %45, !llvm.loop !10 - -110: ; preds = %45 - %111 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 0 - %112 = getelementptr inbounds [5 x i32], [5 x i32]* %111, i64 0, i64 0 - %113 = load i32, i32* %112, align 16 - store i32 %113, i32* %6, align 4 - store i32 0, i32* %7, align 4 - store i32 0, i32* %8, align 4 - store i32 0, i32* %3, align 4 - br label %114 - -114: ; preds = %146, %110 - %115 = load i32, i32* %3, align 4 - %116 = icmp slt i32 %115, 6 - br i1 %116, label %117, label %149 - -117: ; preds = %114 - store i32 0, i32* %4, align 4 - br label %118 - -118: ; preds = %142, %117 - %119 = load i32, i32* %4, align 4 - %120 = icmp slt i32 %119, 5 - br i1 %120, label %121, label %145 - -121: ; preds = %118 - %122 = load i32, i32* %6, align 4 - %123 = load i32, i32* %3, align 4 - %124 = sext i32 %123 to i64 - %125 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %124 - %126 = load i32, i32* %4, align 4 - %127 = sext i32 %126 to i64 - %128 = getelementptr inbounds [5 x i32], [5 x i32]* %125, i64 0, i64 %127 - %129 = load i32, i32* %128, align 4 - %130 = icmp slt i32 %122, %129 - br i1 %130, label %131, label %141 - -131: ; preds = %121 - %132 = load i32, i32* %3, align 4 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %133 - %135 = load i32, i32* %4, align 4 - %136 = sext i32 %135 to i64 - %137 = getelementptr inbounds [5 x i32], [5 x i32]* %134, i64 0, i64 %136 - %138 = load i32, i32* %137, align 4 - store i32 %138, i32* %6, align 4 - %139 = load i32, i32* %3, align 4 - store i32 %139, i32* %7, align 4 - %140 = load i32, i32* %4, align 4 - store i32 %140, i32* %8, align 4 - br label %141 - -141: ; preds = %131, %121 - br label %142 - -142: ; preds = %141 - %143 = load i32, i32* %4, align 4 - %144 = add nsw i32 %143, 1 - store i32 %144, i32* %4, align 4 - br label %118, !llvm.loop !11 - -145: ; preds = %118 - br label %146 - -146: ; preds = %145 - %147 = load i32, i32* %3, align 4 - %148 = add nsw i32 %147, 1 - store i32 %148, i32* %3, align 4 - br label %114, !llvm.loop !12 - -149: ; preds = %114 - %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 - -152: ; preds = %182, %149 - %153 = load i32, i32* %3, align 4 - %154 = load i32, i32* %7, align 4 - %155 = load i32, i32* %6, align 4 - %156 = sub nsw i32 %154, %155 - %157 = icmp sgt i32 %153, %156 - br i1 %157, label %158, label %185 - -158: ; preds = %152 - %159 = load i32, i32* %8, align 4 - store i32 %159, i32* %4, align 4 - br label %160 - -160: ; preds = %177, %158 - %161 = load i32, i32* %4, align 4 - %162 = load i32, i32* %8, align 4 - %163 = load i32, i32* %6, align 4 - %164 = sub nsw i32 %162, %163 - %165 = icmp sgt i32 %161, %164 - br i1 %165, label %166, label %180 - -166: ; preds = %160 - %167 = load [5 x i32]*, [5 x i32]** %2, align 8 - %168 = load i32, i32* %3, align 4 - %169 = sext i32 %168 to i64 - %170 = getelementptr inbounds [5 x i32], [5 x i32]* %167, i64 %169 - %171 = load i32, i32* %4, align 4 - %172 = sext i32 %171 to i64 - %173 = getelementptr inbounds [5 x i32], [5 x i32]* %170, i64 0, i64 %172 - %174 = load i32, i32* %173, align 4 - %175 = call 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 !13 - -180: ; preds = %160 - %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 !14 - -185: ; preds = %152 - ret void -} - -; 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) #1 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -declare noundef 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) #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %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]* noundef %3) - ret i32 0 -} - -; 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 = { 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 = { 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, !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"} -!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-llvm14/maximum-sum-increasing-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-sum-increasing-subsequence.ll deleted file mode 100644 index d8a10ee90..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-sum-increasing-subsequence.ll +++ /dev/null @@ -1,257 +0,0 @@ -; ModuleID = 'PE-benchmarks/maximum-sum-increasing-subsequence.cpp' -source_filename = "PE-benchmarks/maximum-sum-increasing-subsequence.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@__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 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 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z8maxSumISPii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i8*, align 8 - %9 = alloca i64, align 8 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %7, align 4 - %10 = load i32, i32* %4, align 4 - %11 = zext i32 %10 to i64 - %12 = call i8* @llvm.stacksave() - store i8* %12, i8** %8, align 8 - %13 = alloca i32, i64 %11, align 16 - store i64 %11, i64* %9, align 8 - store i32 0, i32* %5, align 4 - br label %14 - -14: ; preds = %27, %2 - %15 = load i32, i32* %5, align 4 - %16 = load i32, i32* %4, align 4 - %17 = icmp slt i32 %15, %16 - br i1 %17, label %18, label %30 - -18: ; preds = %14 - %19 = load i32*, i32** %3, align 8 - %20 = load i32, i32* %5, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i32, i32* %19, i64 %21 - %23 = load i32, i32* %22, align 4 - %24 = load i32, i32* %5, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %13, i64 %25 - store i32 %23, i32* %26, align 4 - br label %27 - -27: ; preds = %18 - %28 = load i32, i32* %5, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %5, align 4 - br label %14, !llvm.loop !6 - -30: ; preds = %14 - store i32 1, i32* %5, align 4 - br label %31 - -31: ; preds = %87, %30 - %32 = load i32, i32* %5, align 4 - %33 = load i32, i32* %4, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %90 - -35: ; preds = %31 - store i32 0, i32* %6, align 4 - br label %36 - -36: ; preds = %83, %35 - %37 = load i32, i32* %6, align 4 - %38 = load i32, i32* %5, align 4 - %39 = icmp slt i32 %37, %38 - br i1 %39, label %40, label %86 - -40: ; preds = %36 - %41 = load i32*, i32** %3, align 8 - %42 = load i32, i32* %5, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %41, i64 %43 - %45 = load i32, i32* %44, align 4 - %46 = load i32*, i32** %3, align 8 - %47 = load i32, i32* %6, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %46, i64 %48 - %50 = load i32, i32* %49, align 4 - %51 = icmp sgt i32 %45, %50 - br i1 %51, label %52, label %82 - -52: ; preds = %40 - %53 = load i32, i32* %5, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %13, i64 %54 - %56 = load i32, i32* %55, align 4 - %57 = load i32, i32* %6, align 4 - %58 = sext i32 %57 to i64 - %59 = getelementptr inbounds i32, i32* %13, i64 %58 - %60 = load i32, i32* %59, align 4 - %61 = load i32*, i32** %3, align 8 - %62 = load i32, i32* %5, align 4 - %63 = sext i32 %62 to i64 - %64 = getelementptr inbounds i32, i32* %61, i64 %63 - %65 = load i32, i32* %64, align 4 - %66 = add nsw i32 %60, %65 - %67 = icmp slt i32 %56, %66 - br i1 %67, label %68, label %82 - -68: ; preds = %52 - %69 = load i32, i32* %6, align 4 - %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds i32, i32* %13, i64 %70 - %72 = load i32, i32* %71, align 4 - %73 = load i32*, i32** %3, align 8 - %74 = load i32, i32* %5, align 4 - %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds i32, i32* %73, i64 %75 - %77 = load i32, i32* %76, align 4 - %78 = add nsw i32 %72, %77 - %79 = load i32, i32* %5, align 4 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds i32, i32* %13, i64 %80 - store i32 %78, i32* %81, align 4 - br label %82 - -82: ; preds = %68, %52, %40 - br label %83 - -83: ; preds = %82 - %84 = load i32, i32* %6, align 4 - %85 = add nsw i32 %84, 1 - store i32 %85, i32* %6, align 4 - br label %36, !llvm.loop !8 - -86: ; preds = %36 - br label %87 - -87: ; preds = %86 - %88 = load i32, i32* %5, align 4 - %89 = add nsw i32 %88, 1 - store i32 %89, i32* %5, align 4 - br label %31, !llvm.loop !9 - -90: ; preds = %31 - store i32 0, i32* %5, align 4 - br label %91 - -91: ; preds = %108, %90 - %92 = load i32, i32* %5, align 4 - %93 = load i32, i32* %4, align 4 - %94 = icmp slt i32 %92, %93 - br i1 %94, label %95, label %111 - -95: ; preds = %91 - %96 = load i32, i32* %7, align 4 - %97 = load i32, i32* %5, align 4 - %98 = sext i32 %97 to i64 - %99 = getelementptr inbounds i32, i32* %13, i64 %98 - %100 = load i32, i32* %99, align 4 - %101 = icmp slt i32 %96, %100 - br i1 %101, label %102, label %107 - -102: ; preds = %95 - %103 = load i32, i32* %5, align 4 - %104 = sext i32 %103 to i64 - %105 = getelementptr inbounds i32, i32* %13, i64 %104 - %106 = load i32, i32* %105, align 4 - store i32 %106, i32* %7, align 4 - br label %107 - -107: ; preds = %102, %95 - br label %108 - -108: ; preds = %107 - %109 = load i32, i32* %5, align 4 - %110 = add nsw i32 %109, 1 - store i32 %110, i32* %5, align 4 - br label %91, !llvm.loop !10 - -111: ; preds = %91 - %112 = load i32, i32* %7, align 4 - %113 = load i8*, i8** %8, align 8 - call void @llvm.stackrestore(i8* %113) - ret i32 %112 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [7 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([7 x i32]* @__const.main.arr to i8*), i64 28, i1 false) - store i32 7, i32* %3, align 4 - %5 = call noundef 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 - -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) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 - -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) #4 - -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)) #4 - -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 = { 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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-sum-rectangle-in-a-2d-matrix.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-sum-rectangle-in-a-2d-matrix.ll deleted file mode 100644 index 0ffb8accc..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-sum-rectangle-in-a-2d-matrix.ll +++ /dev/null @@ -1,363 +0,0 @@ -; ModuleID = 'PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp' -source_filename = "PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 -@.str.3 = private unnamed_addr constant [18 x i8] c"(Bottom, Right) (\00", align 1 -@.str.4 = private unnamed_addr constant [13 x i8] c"Max sum is: \00", align 1 -@__const.main.M = private unnamed_addr constant [4 x [5 x i32]] [[5 x i32] [i32 1, i32 2, i32 -1, i32 -4, i32 -20], [5 x i32] [i32 -8, i32 -3, i32 4, i32 2, i32 1], [5 x i32] [i32 3, i32 8, i32 10, i32 1, i32 3], [5 x i32] [i32 -4, i32 -1, i32 1, i32 7, i32 -6]], align 16 - -; 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) #0 { - %5 = alloca i32, align 4 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - store i32* %0, i32** %6, align 8 - store i32* %1, i32** %7, align 8 - store i32* %2, i32** %8, align 8 - store i32 %3, i32* %9, align 4 - store i32 0, i32* %10, align 4 - store i32 -2147483648, i32* %11, align 4 - %14 = load i32*, i32** %8, align 8 - store i32 -1, i32* %14, align 4 - store i32 0, i32* %13, align 4 - store i32 0, i32* %12, align 4 - br label %15 - -15: ; preds = %44, %4 - %16 = load i32, i32* %12, align 4 - %17 = load i32, i32* %9, align 4 - %18 = icmp slt i32 %16, %17 - br i1 %18, label %19, label %47 - -19: ; preds = %15 - %20 = load i32*, i32** %6, align 8 - %21 = load i32, i32* %12, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds i32, i32* %20, i64 %22 - %24 = load i32, i32* %23, align 4 - %25 = load i32, i32* %10, align 4 - %26 = add nsw i32 %25, %24 - store i32 %26, i32* %10, align 4 - %27 = load i32, i32* %10, align 4 - %28 = icmp slt i32 %27, 0 - br i1 %28, label %29, label %32 - -29: ; preds = %19 - store i32 0, i32* %10, align 4 - %30 = load i32, i32* %12, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %13, align 4 - br label %43 - -32: ; preds = %19 - %33 = load i32, i32* %10, align 4 - %34 = load i32, i32* %11, align 4 - %35 = icmp sgt i32 %33, %34 - br i1 %35, label %36, label %42 - -36: ; preds = %32 - %37 = load i32, i32* %10, align 4 - store i32 %37, i32* %11, align 4 - %38 = load i32, i32* %13, align 4 - %39 = load i32*, i32** %7, align 8 - store i32 %38, i32* %39, align 4 - %40 = load i32, i32* %12, align 4 - %41 = load i32*, i32** %8, align 8 - store i32 %40, i32* %41, align 4 - br label %42 - -42: ; preds = %36, %32 - br label %43 - -43: ; preds = %42, %29 - br label %44 - -44: ; preds = %43 - %45 = load i32, i32* %12, align 4 - %46 = add nsw i32 %45, 1 - store i32 %46, i32* %12, align 4 - br label %15, !llvm.loop !6 - -47: ; preds = %15 - %48 = load i32*, i32** %8, align 8 - %49 = load i32, i32* %48, align 4 - %50 = icmp ne i32 %49, -1 - br i1 %50, label %51, label %53 - -51: ; preds = %47 - %52 = load i32, i32* %11, align 4 - store i32 %52, i32* %5, align 4 - br label %86 - -53: ; preds = %47 - %54 = load i32*, i32** %6, align 8 - %55 = getelementptr inbounds i32, i32* %54, i64 0 - %56 = load i32, i32* %55, align 4 - store i32 %56, i32* %11, align 4 - %57 = load i32*, i32** %8, align 8 - store i32 0, i32* %57, align 4 - %58 = load i32*, i32** %7, align 8 - store i32 0, i32* %58, align 4 - store i32 1, i32* %12, align 4 - br label %59 - -59: ; preds = %81, %53 - %60 = load i32, i32* %12, align 4 - %61 = load i32, i32* %9, align 4 - %62 = icmp slt i32 %60, %61 - br i1 %62, label %63, label %84 - -63: ; preds = %59 - %64 = load i32*, i32** %6, align 8 - %65 = load i32, i32* %12, align 4 - %66 = sext i32 %65 to i64 - %67 = getelementptr inbounds i32, i32* %64, i64 %66 - %68 = load i32, i32* %67, align 4 - %69 = load i32, i32* %11, align 4 - %70 = icmp sgt i32 %68, %69 - br i1 %70, label %71, label %80 - -71: ; preds = %63 - %72 = load i32*, i32** %6, align 8 - %73 = load i32, i32* %12, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds i32, i32* %72, i64 %74 - %76 = load i32, i32* %75, align 4 - store i32 %76, i32* %11, align 4 - %77 = load i32, i32* %12, align 4 - %78 = load i32*, i32** %8, align 8 - store i32 %77, i32* %78, align 4 - %79 = load i32*, i32** %7, align 8 - store i32 %77, i32* %79, align 4 - br label %80 - -80: ; preds = %71, %63 - br label %81 - -81: ; preds = %80 - %82 = load i32, i32* %12, align 4 - %83 = add nsw i32 %82, 1 - store i32 %83, i32* %12, align 4 - br label %59, !llvm.loop !8 - -84: ; preds = %59 - %85 = load i32, i32* %11, align 4 - store i32 %85, i32* %5, align 4 - br label %86 - -86: ; preds = %84, %51 - %87 = load i32, i32* %5, align 4 - ret i32 %87 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z10findMaxSumPA5_i([5 x i32]* noundef %0) #1 { - %2 = alloca [5 x i32]*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca [4 x i32], align 16 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - store [5 x i32]* %0, [5 x i32]** %2, align 8 - store i32 -2147483648, i32* %3, align 4 - store i32 0, i32* %8, align 4 - br label %15 - -15: ; preds = %63, %1 - %16 = load i32, i32* %8, align 4 - %17 = icmp slt i32 %16, 5 - br i1 %17, label %18, label %66 - -18: ; preds = %15 - %19 = getelementptr inbounds [4 x i32], [4 x i32]* %11, i64 0, i64 0 - %20 = bitcast i32* %19 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %20, i8 0, i64 16, i1 false) - %21 = load i32, i32* %8, align 4 - store i32 %21, i32* %9, align 4 - br label %22 - -22: ; preds = %59, %18 - %23 = load i32, i32* %9, align 4 - %24 = icmp slt i32 %23, 5 - br i1 %24, label %25, label %62 - -25: ; preds = %22 - store i32 0, i32* %10, align 4 - br label %26 - -26: ; preds = %43, %25 - %27 = load i32, i32* %10, align 4 - %28 = icmp slt i32 %27, 4 - br i1 %28, label %29, label %46 - -29: ; preds = %26 - %30 = load [5 x i32]*, [5 x i32]** %2, align 8 - %31 = load i32, i32* %10, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds [5 x i32], [5 x i32]* %30, i64 %32 - %34 = load i32, i32* %9, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds [5 x i32], [5 x i32]* %33, i64 0, i64 %35 - %37 = load i32, i32* %36, align 4 - %38 = load i32, i32* %10, align 4 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds [4 x i32], [4 x i32]* %11, i64 0, i64 %39 - %41 = load i32, i32* %40, align 4 - %42 = add nsw i32 %41, %37 - store i32 %42, i32* %40, align 4 - br label %43 - -43: ; preds = %29 - %44 = load i32, i32* %10, align 4 - %45 = add nsw i32 %44, 1 - store i32 %45, i32* %10, align 4 - br label %26, !llvm.loop !9 - -46: ; preds = %26 - %47 = getelementptr inbounds [4 x i32], [4 x i32]* %11, i64 0, i64 0 - %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 - %51 = icmp sgt i32 %49, %50 - br i1 %51, label %52, label %58 - -52: ; preds = %46 - %53 = load i32, i32* %12, align 4 - store i32 %53, i32* %3, align 4 - %54 = load i32, i32* %8, align 4 - store i32 %54, i32* %4, align 4 - %55 = load i32, i32* %9, align 4 - store i32 %55, i32* %5, align 4 - %56 = load i32, i32* %13, align 4 - store i32 %56, i32* %6, align 4 - %57 = load i32, i32* %14, align 4 - store i32 %57, i32* %7, align 4 - br label %58 - -58: ; preds = %52, %46 - br label %59 - -59: ; preds = %58 - %60 = load i32, i32* %9, align 4 - %61 = add nsw i32 %60, 1 - store i32 %61, i32* %9, align 4 - br label %22, !llvm.loop !10 - -62: ; preds = %22 - br label %63 - -63: ; preds = %62 - %64 = load i32, i32* %8, align 4 - %65 = add nsw i32 %64, 1 - store i32 %65, i32* %8, align 4 - br label %15, !llvm.loop !11 - -66: ; preds = %15 - %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 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 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 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 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 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 nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #2 - -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) #3 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 - -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) #3 - -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)) #3 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #4 { - %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]* noundef %4) - ret i32 0 -} - -; 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 = { 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 = { argmemonly nofree nounwind willreturn writeonly } -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, !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"} -!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/merge-sort-for-doubly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/merge-sort-for-doubly-linked-list.ll deleted file mode 100644 index 8167332e2..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/merge-sort-for-doubly-linked-list.ll +++ /dev/null @@ -1,395 +0,0 @@ -; ModuleID = 'PE-benchmarks/merge-sort-for-doubly-linked-list.cpp' -source_filename = "PE-benchmarks/merge-sort-for-doubly-linked-list.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Node = type { i32, %class.Node*, %class.Node* } - -@_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 -@.str.3 = private unnamed_addr constant [27 x i8] c"Linked List after sorting\0A\00", align 1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef %class.Node* @_Z5mergeP4NodeS0_(%class.Node* noundef %0, %class.Node* noundef %1) #0 { - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - %5 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %4, align 8 - store %class.Node* %1, %class.Node** %5, align 8 - %6 = load %class.Node*, %class.Node** %4, align 8 - %7 = icmp ne %class.Node* %6, null - br i1 %7, label %10, label %8 - -8: ; preds = %2 - %9 = load %class.Node*, %class.Node** %5, align 8 - store %class.Node* %9, %class.Node** %3, align 8 - br label %55 - -10: ; preds = %2 - %11 = load %class.Node*, %class.Node** %5, align 8 - %12 = icmp ne %class.Node* %11, null - br i1 %12, label %15, label %13 - -13: ; preds = %10 - %14 = load %class.Node*, %class.Node** %4, align 8 - store %class.Node* %14, %class.Node** %3, align 8 - br label %55 - -15: ; preds = %10 - %16 = load %class.Node*, %class.Node** %4, align 8 - %17 = getelementptr inbounds %class.Node, %class.Node* %16, i32 0, i32 0 - %18 = load i32, i32* %17, align 8 - %19 = load %class.Node*, %class.Node** %5, align 8 - %20 = getelementptr inbounds %class.Node, %class.Node* %19, i32 0, i32 0 - %21 = load i32, i32* %20, align 8 - %22 = icmp slt i32 %18, %21 - br i1 %22, label %23, label %39 - -23: ; preds = %15 - %24 = load %class.Node*, %class.Node** %4, align 8 - %25 = getelementptr inbounds %class.Node, %class.Node* %24, i32 0, i32 1 - %26 = load %class.Node*, %class.Node** %25, align 8 - %27 = load %class.Node*, %class.Node** %5, align 8 - %28 = call 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 - %31 = load %class.Node*, %class.Node** %4, align 8 - %32 = load %class.Node*, %class.Node** %4, align 8 - %33 = getelementptr inbounds %class.Node, %class.Node* %32, i32 0, i32 1 - %34 = load %class.Node*, %class.Node** %33, align 8 - %35 = getelementptr inbounds %class.Node, %class.Node* %34, i32 0, i32 2 - store %class.Node* %31, %class.Node** %35, align 8 - %36 = load %class.Node*, %class.Node** %4, align 8 - %37 = getelementptr inbounds %class.Node, %class.Node* %36, i32 0, i32 2 - store %class.Node* null, %class.Node** %37, align 8 - %38 = load %class.Node*, %class.Node** %4, align 8 - store %class.Node* %38, %class.Node** %3, align 8 - br label %55 - -39: ; preds = %15 - %40 = load %class.Node*, %class.Node** %4, align 8 - %41 = load %class.Node*, %class.Node** %5, align 8 - %42 = getelementptr inbounds %class.Node, %class.Node* %41, i32 0, i32 1 - %43 = load %class.Node*, %class.Node** %42, align 8 - %44 = call 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 - %47 = load %class.Node*, %class.Node** %5, align 8 - %48 = load %class.Node*, %class.Node** %5, align 8 - %49 = getelementptr inbounds %class.Node, %class.Node* %48, i32 0, i32 1 - %50 = load %class.Node*, %class.Node** %49, align 8 - %51 = getelementptr inbounds %class.Node, %class.Node* %50, i32 0, i32 2 - store %class.Node* %47, %class.Node** %51, align 8 - %52 = load %class.Node*, %class.Node** %5, align 8 - %53 = getelementptr inbounds %class.Node, %class.Node* %52, i32 0, i32 2 - store %class.Node* null, %class.Node** %53, align 8 - %54 = load %class.Node*, %class.Node** %5, align 8 - store %class.Node* %54, %class.Node** %3, align 8 - br label %55 - -55: ; preds = %39, %23, %13, %8 - %56 = load %class.Node*, %class.Node** %3, align 8 - ret %class.Node* %56 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef %class.Node* @_Z9mergeSortP4Node(%class.Node* noundef %0) #0 { - %2 = alloca %class.Node*, align 8 - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %3, align 8 - %5 = load %class.Node*, %class.Node** %3, align 8 - %6 = icmp ne %class.Node* %5, null - br i1 %6, label %7, label %12 - -7: ; preds = %1 - %8 = load %class.Node*, %class.Node** %3, align 8 - %9 = getelementptr inbounds %class.Node, %class.Node* %8, i32 0, i32 1 - %10 = load %class.Node*, %class.Node** %9, align 8 - %11 = icmp ne %class.Node* %10, null - br i1 %11, label %14, label %12 - -12: ; preds = %7, %1 - %13 = load %class.Node*, %class.Node** %3, align 8 - store %class.Node* %13, %class.Node** %2, align 8 - br label %24 - -14: ; preds = %7 - %15 = load %class.Node*, %class.Node** %3, align 8 - %16 = call 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 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 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 noundef %class.Node* @_Z5mergeP4NodeS0_(%class.Node* noundef %21, %class.Node* noundef %22) - store %class.Node* %23, %class.Node** %2, align 8 - br label %24 - -24: ; preds = %14, %12 - %25 = load %class.Node*, %class.Node** %2, align 8 - ret %class.Node* %25 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef %class.Node* @_Z5splitP4Node(%class.Node* noundef %0) #1 { - %2 = alloca %class.Node*, align 8 - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - %5 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %2, align 8 - %6 = load %class.Node*, %class.Node** %2, align 8 - store %class.Node* %6, %class.Node** %3, align 8 - %7 = load %class.Node*, %class.Node** %2, align 8 - store %class.Node* %7, %class.Node** %4, align 8 - br label %8 - -8: ; preds = %22, %1 - %9 = load %class.Node*, %class.Node** %3, align 8 - %10 = getelementptr inbounds %class.Node, %class.Node* %9, i32 0, i32 1 - %11 = load %class.Node*, %class.Node** %10, align 8 - %12 = icmp ne %class.Node* %11, null - br i1 %12, label %13, label %20 - -13: ; preds = %8 - %14 = load %class.Node*, %class.Node** %3, align 8 - %15 = getelementptr inbounds %class.Node, %class.Node* %14, i32 0, i32 1 - %16 = load %class.Node*, %class.Node** %15, align 8 - %17 = getelementptr inbounds %class.Node, %class.Node* %16, i32 0, i32 1 - %18 = load %class.Node*, %class.Node** %17, align 8 - %19 = icmp ne %class.Node* %18, null - br label %20 - -20: ; preds = %13, %8 - %21 = phi i1 [ false, %8 ], [ %19, %13 ] - br i1 %21, label %22, label %31 - -22: ; preds = %20 - %23 = load %class.Node*, %class.Node** %3, align 8 - %24 = getelementptr inbounds %class.Node, %class.Node* %23, i32 0, i32 1 - %25 = load %class.Node*, %class.Node** %24, align 8 - %26 = getelementptr inbounds %class.Node, %class.Node* %25, i32 0, i32 1 - %27 = load %class.Node*, %class.Node** %26, align 8 - store %class.Node* %27, %class.Node** %3, align 8 - %28 = load %class.Node*, %class.Node** %4, align 8 - %29 = getelementptr inbounds %class.Node, %class.Node* %28, i32 0, i32 1 - %30 = load %class.Node*, %class.Node** %29, align 8 - store %class.Node* %30, %class.Node** %4, align 8 - br label %8, !llvm.loop !6 - -31: ; preds = %20 - %32 = load %class.Node*, %class.Node** %4, align 8 - %33 = getelementptr inbounds %class.Node, %class.Node* %32, i32 0, i32 1 - %34 = load %class.Node*, %class.Node** %33, align 8 - store %class.Node* %34, %class.Node** %5, align 8 - %35 = load %class.Node*, %class.Node** %4, align 8 - %36 = getelementptr inbounds %class.Node, %class.Node* %35, i32 0, i32 1 - store %class.Node* null, %class.Node** %36, align 8 - %37 = load %class.Node*, %class.Node** %5, align 8 - ret %class.Node* %37 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z6insertPP4Nodei(%class.Node** noundef %0, i32 noundef %1) #0 { - %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 noundef nonnull i8* @_Znwm(i64 noundef 24) #6 - %7 = bitcast i8* %6 to %class.Node* - %8 = bitcast %class.Node* %7 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %8, i8 0, i64 24, i1 false) - store %class.Node* %7, %class.Node** %5, align 8 - %9 = load i32, i32* %4, align 4 - %10 = load %class.Node*, %class.Node** %5, align 8 - %11 = getelementptr inbounds %class.Node, %class.Node* %10, i32 0, i32 0 - store i32 %9, i32* %11, align 8 - %12 = load %class.Node*, %class.Node** %5, align 8 - %13 = getelementptr inbounds %class.Node, %class.Node* %12, i32 0, i32 2 - store %class.Node* null, %class.Node** %13, align 8 - %14 = load %class.Node*, %class.Node** %5, align 8 - %15 = getelementptr inbounds %class.Node, %class.Node* %14, i32 0, i32 1 - store %class.Node* null, %class.Node** %15, align 8 - %16 = load %class.Node**, %class.Node*** %3, align 8 - %17 = load %class.Node*, %class.Node** %16, align 8 - %18 = icmp ne %class.Node* %17, null - br i1 %18, label %22, label %19 - -19: ; preds = %2 - %20 = load %class.Node*, %class.Node** %5, align 8 - %21 = load %class.Node**, %class.Node*** %3, align 8 - store %class.Node* %20, %class.Node** %21, align 8 - br label %33 - -22: ; preds = %2 - %23 = load %class.Node**, %class.Node*** %3, align 8 - %24 = load %class.Node*, %class.Node** %23, align 8 - %25 = load %class.Node*, %class.Node** %5, align 8 - %26 = getelementptr inbounds %class.Node, %class.Node* %25, i32 0, i32 1 - store %class.Node* %24, %class.Node** %26, align 8 - %27 = load %class.Node*, %class.Node** %5, align 8 - %28 = load %class.Node**, %class.Node*** %3, align 8 - %29 = load %class.Node*, %class.Node** %28, align 8 - %30 = getelementptr inbounds %class.Node, %class.Node* %29, i32 0, i32 2 - store %class.Node* %27, %class.Node** %30, align 8 - %31 = load %class.Node*, %class.Node** %5, align 8 - %32 = load %class.Node**, %class.Node*** %3, align 8 - store %class.Node* %31, %class.Node** %32, align 8 - br label %33 - -33: ; preds = %22, %19 - ret void -} - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #3 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z5printP4Node(%class.Node* noundef %0) #0 { - %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 noundef 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 - %7 = load %class.Node*, %class.Node** %2, align 8 - %8 = icmp ne %class.Node* %7, null - br i1 %8, label %9, label %19 - -9: ; preds = %6 - %10 = load %class.Node*, %class.Node** %2, align 8 - %11 = getelementptr inbounds %class.Node, %class.Node* %10, i32 0, i32 0 - %12 = load i32, i32* %11, align 8 - %13 = call 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 !8 - -19: ; preds = %6 - %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 - %22 = load %class.Node*, %class.Node** %3, align 8 - %23 = icmp ne %class.Node* %22, null - br i1 %23, label %24, label %33 - -24: ; preds = %21 - %25 = load %class.Node*, %class.Node** %3, align 8 - %26 = getelementptr inbounds %class.Node, %class.Node* %25, i32 0, i32 0 - %27 = load i32, i32* %26, align 8 - %28 = call 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 !9 - -33: ; preds = %21 - ret void -} - -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) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z4swapPiS_(i32* noundef %0, i32* noundef %1) #1 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %6, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %3, align 8 - store i32 %9, i32* %10, align 4 - %11 = load i32, i32* %5, align 4 - %12 = load i32*, i32** %4, align 8 - store i32 %11, i32* %12, align 4 - ret void -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #5 { - %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** 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 noundef %class.Node* @_Z9mergeSortP4Node(%class.Node* noundef %3) - store %class.Node* %4, %class.Node** %2, align 8 - %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* noundef %6) - ret i32 0 -} - -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 = { 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 = { argmemonly nofree nounwind willreturn writeonly } -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 = { builtin allocsize(0) } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/mergeSort_LinkedList.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/mergeSort_LinkedList.ll deleted file mode 100644 index 7dfbe6b13..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/mergeSort_LinkedList.ll +++ /dev/null @@ -1,311 +0,0 @@ -; ModuleID = 'PE-benchmarks/mergeSort_LinkedList.cpp' -source_filename = "PE-benchmarks/mergeSort_LinkedList.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Node = type { i32, %class.Node* } - -@_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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9MergeSortPP4Node(%class.Node** noundef %0) #0 { - %2 = alloca %class.Node**, align 8 - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - %5 = alloca %class.Node*, align 8 - store %class.Node** %0, %class.Node*** %2, align 8 - %6 = load %class.Node**, %class.Node*** %2, align 8 - %7 = load %class.Node*, %class.Node** %6, align 8 - store %class.Node* %7, %class.Node** %3, align 8 - %8 = load %class.Node*, %class.Node** %3, align 8 - %9 = icmp eq %class.Node* %8, null - br i1 %9, label %15, label %10 - -10: ; preds = %1 - %11 = load %class.Node*, %class.Node** %3, align 8 - %12 = getelementptr inbounds %class.Node, %class.Node* %11, i32 0, i32 1 - %13 = load %class.Node*, %class.Node** %12, align 8 - %14 = icmp eq %class.Node* %13, null - br i1 %14, label %15, label %16 - -15: ; preds = %10, %1 - br label %22 - -16: ; preds = %10 - %17 = load %class.Node*, %class.Node** %3, align 8 - call void @_Z14FrontBackSplitP4NodePS0_S1_(%class.Node* 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 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 - -22: ; preds = %16, %15 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z14FrontBackSplitP4NodePS0_S1_(%class.Node* noundef %0, %class.Node** noundef %1, %class.Node** noundef %2) #1 { - %4 = alloca %class.Node*, align 8 - %5 = alloca %class.Node**, align 8 - %6 = alloca %class.Node**, align 8 - %7 = alloca %class.Node*, align 8 - %8 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %4, align 8 - store %class.Node** %1, %class.Node*** %5, align 8 - store %class.Node** %2, %class.Node*** %6, align 8 - %9 = load %class.Node*, %class.Node** %4, align 8 - store %class.Node* %9, %class.Node** %8, align 8 - %10 = load %class.Node*, %class.Node** %4, align 8 - %11 = getelementptr inbounds %class.Node, %class.Node* %10, i32 0, i32 1 - %12 = load %class.Node*, %class.Node** %11, align 8 - store %class.Node* %12, %class.Node** %7, align 8 - br label %13 - -13: ; preds = %29, %3 - %14 = load %class.Node*, %class.Node** %7, align 8 - %15 = icmp ne %class.Node* %14, null - br i1 %15, label %16, label %30 - -16: ; preds = %13 - %17 = load %class.Node*, %class.Node** %7, align 8 - %18 = getelementptr inbounds %class.Node, %class.Node* %17, i32 0, i32 1 - %19 = load %class.Node*, %class.Node** %18, align 8 - store %class.Node* %19, %class.Node** %7, align 8 - %20 = load %class.Node*, %class.Node** %7, align 8 - %21 = icmp ne %class.Node* %20, null - br i1 %21, label %22, label %29 - -22: ; preds = %16 - %23 = load %class.Node*, %class.Node** %8, align 8 - %24 = getelementptr inbounds %class.Node, %class.Node* %23, i32 0, i32 1 - %25 = load %class.Node*, %class.Node** %24, align 8 - store %class.Node* %25, %class.Node** %8, align 8 - %26 = load %class.Node*, %class.Node** %7, align 8 - %27 = getelementptr inbounds %class.Node, %class.Node* %26, i32 0, i32 1 - %28 = load %class.Node*, %class.Node** %27, align 8 - store %class.Node* %28, %class.Node** %7, align 8 - br label %29 - -29: ; preds = %22, %16 - br label %13, !llvm.loop !6 - -30: ; preds = %13 - %31 = load %class.Node*, %class.Node** %4, align 8 - %32 = load %class.Node**, %class.Node*** %5, align 8 - store %class.Node* %31, %class.Node** %32, align 8 - %33 = load %class.Node*, %class.Node** %8, align 8 - %34 = getelementptr inbounds %class.Node, %class.Node* %33, i32 0, i32 1 - %35 = load %class.Node*, %class.Node** %34, align 8 - %36 = load %class.Node**, %class.Node*** %6, align 8 - store %class.Node* %35, %class.Node** %36, align 8 - %37 = load %class.Node*, %class.Node** %8, align 8 - %38 = getelementptr inbounds %class.Node, %class.Node* %37, i32 0, i32 1 - store %class.Node* null, %class.Node** %38, align 8 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef %class.Node* @_Z11SortedMergeP4NodeS0_(%class.Node* noundef %0, %class.Node* noundef %1) #0 { - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - %5 = alloca %class.Node*, align 8 - %6 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %4, align 8 - store %class.Node* %1, %class.Node** %5, align 8 - store %class.Node* null, %class.Node** %6, align 8 - %7 = load %class.Node*, %class.Node** %4, align 8 - %8 = icmp eq %class.Node* %7, null - br i1 %8, label %9, label %11 - -9: ; preds = %2 - %10 = load %class.Node*, %class.Node** %5, align 8 - store %class.Node* %10, %class.Node** %3, align 8 - br label %45 - -11: ; preds = %2 - %12 = load %class.Node*, %class.Node** %5, align 8 - %13 = icmp eq %class.Node* %12, null - br i1 %13, label %14, label %16 - -14: ; preds = %11 - %15 = load %class.Node*, %class.Node** %4, align 8 - store %class.Node* %15, %class.Node** %3, align 8 - br label %45 - -16: ; preds = %11 - br label %17 - -17: ; preds = %16 - %18 = load %class.Node*, %class.Node** %4, align 8 - %19 = getelementptr inbounds %class.Node, %class.Node* %18, i32 0, i32 0 - %20 = load i32, i32* %19, align 8 - %21 = load %class.Node*, %class.Node** %5, align 8 - %22 = getelementptr inbounds %class.Node, %class.Node* %21, i32 0, i32 0 - %23 = load i32, i32* %22, align 8 - %24 = icmp sle i32 %20, %23 - br i1 %24, label %25, label %34 - -25: ; preds = %17 - %26 = load %class.Node*, %class.Node** %4, align 8 - store %class.Node* %26, %class.Node** %6, align 8 - %27 = load %class.Node*, %class.Node** %4, align 8 - %28 = getelementptr inbounds %class.Node, %class.Node* %27, i32 0, i32 1 - %29 = load %class.Node*, %class.Node** %28, align 8 - %30 = load %class.Node*, %class.Node** %5, align 8 - %31 = call 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 - br label %43 - -34: ; preds = %17 - %35 = load %class.Node*, %class.Node** %5, align 8 - store %class.Node* %35, %class.Node** %6, align 8 - %36 = load %class.Node*, %class.Node** %4, align 8 - %37 = load %class.Node*, %class.Node** %5, align 8 - %38 = getelementptr inbounds %class.Node, %class.Node* %37, i32 0, i32 1 - %39 = load %class.Node*, %class.Node** %38, align 8 - %40 = call 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 - br label %43 - -43: ; preds = %34, %25 - %44 = load %class.Node*, %class.Node** %6, align 8 - store %class.Node* %44, %class.Node** %3, align 8 - br label %45 - -45: ; preds = %43, %14, %9 - %46 = load %class.Node*, %class.Node** %3, align 8 - ret %class.Node* %46 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9printListP4Node(%class.Node* noundef %0) #0 { - %2 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %2, align 8 - br label %3 - -3: ; preds = %6, %1 - %4 = load %class.Node*, %class.Node** %2, align 8 - %5 = icmp ne %class.Node* %4, null - br i1 %5, label %6, label %15 - -6: ; preds = %3 - %7 = load %class.Node*, %class.Node** %2, align 8 - %8 = getelementptr inbounds %class.Node, %class.Node* %7, i32 0, i32 0 - %9 = load i32, i32* %8, align 8 - %10 = call 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 !8 - -15: ; preds = %3 - ret void -} - -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) #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z4pushPP4Nodei(%class.Node** noundef %0, i32 noundef %1) #0 { - %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 noundef nonnull i8* @_Znwm(i64 noundef 16) #6 - %7 = bitcast i8* %6 to %class.Node* - %8 = bitcast %class.Node* %7 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %8, i8 0, i64 16, i1 false) - store %class.Node* %7, %class.Node** %5, align 8 - %9 = load i32, i32* %4, align 4 - %10 = load %class.Node*, %class.Node** %5, align 8 - %11 = getelementptr inbounds %class.Node, %class.Node* %10, i32 0, i32 0 - store i32 %9, i32* %11, align 8 - %12 = load %class.Node**, %class.Node*** %3, align 8 - %13 = load %class.Node*, %class.Node** %12, align 8 - %14 = load %class.Node*, %class.Node** %5, align 8 - %15 = getelementptr inbounds %class.Node, %class.Node* %14, i32 0, i32 1 - store %class.Node* %13, %class.Node** %15, align 8 - %16 = load %class.Node*, %class.Node** %5, align 8 - %17 = load %class.Node**, %class.Node*** %3, align 8 - store %class.Node* %16, %class.Node** %17, align 8 - ret void -} - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #3 - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #4 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #5 { - %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** 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* noundef %5) - ret i32 0 -} - -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 = { argmemonly nofree nounwind willreturn writeonly } -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 = { builtin allocsize(0) } - -!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"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/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 deleted file mode 100644 index 8708dd311..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll +++ /dev/null @@ -1,170 +0,0 @@ -; ModuleID = 'PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp' -source_filename = "PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z5solvePii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 -1, i32* %5, align 4 - %10 = load i32*, i32** %3, align 8 - %11 = getelementptr inbounds i32, i32* %10, i64 0 - %12 = load i32, i32* %11, align 4 - store i32 %12, i32* %6, align 4 - store i32 0, i32* %7, align 4 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - br label %13 - -13: ; preds = %48, %2 - %14 = load i32, i32* %9, align 4 - %15 = load i32, i32* %4, align 4 - %16 = icmp slt i32 %14, %15 - br i1 %16, label %17, label %51 - -17: ; preds = %13 - %18 = load i32*, i32** %3, align 8 - %19 = load i32, i32* %9, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds i32, i32* %18, i64 %20 - %22 = load i32, i32* %21, align 4 - %23 = load i32, i32* %5, align 4 - %24 = icmp sgt i32 %22, %23 - br i1 %24, label %25, label %32 - -25: ; preds = %17 - %26 = load i32*, i32** %3, align 8 - %27 = load i32, i32* %9, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i32, i32* %26, i64 %28 - %30 = load i32, i32* %29, align 4 - store i32 %30, i32* %5, align 4 - %31 = load i32, i32* %9, align 4 - store i32 %31, i32* %7, align 4 - br label %32 - -32: ; preds = %25, %17 - %33 = load i32*, i32** %3, align 8 - %34 = load i32, i32* %9, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i32, i32* %33, i64 %35 - %37 = load i32, i32* %36, align 4 - %38 = load i32, i32* %6, align 4 - %39 = icmp sle i32 %37, %38 - br i1 %39, label %40, label %47 - -40: ; preds = %32 - %41 = load i32*, i32** %3, align 8 - %42 = load i32, i32* %9, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %41, i64 %43 - %45 = load i32, i32* %44, align 4 - store i32 %45, i32* %6, align 4 - %46 = load i32, i32* %9, align 4 - store i32 %46, i32* %8, align 4 - br label %47 - -47: ; preds = %40, %32 - br label %48 - -48: ; preds = %47 - %49 = load i32, i32* %9, align 4 - %50 = add nsw i32 %49, 1 - store i32 %50, i32* %9, align 4 - br label %13, !llvm.loop !6 - -51: ; preds = %13 - %52 = load i32, i32* %8, align 4 - %53 = load i32, i32* %7, align 4 - %54 = icmp slt i32 %52, %53 - br i1 %54, label %55, label %63 - -55: ; preds = %51 - %56 = load i32, i32* %7, align 4 - %57 = load i32, i32* %4, align 4 - %58 = load i32, i32* %8, align 4 - %59 = sub nsw i32 %57, %58 - %60 = sub nsw i32 %59, 2 - %61 = add nsw i32 %56, %60 - %62 = call 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 - %64 = load i32, i32* %7, align 4 - %65 = load i32, i32* %4, align 4 - %66 = load i32, i32* %8, align 4 - %67 = sub nsw i32 %65, %66 - %68 = sub nsw i32 %67, 1 - %69 = add nsw i32 %64, %68 - %70 = call 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 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() #2 { - %1 = alloca i32, align 4 - %2 = alloca [4 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [4 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([4 x i32]* @__const.main.a to i8*), i64 16, i1 false) - store i32 4, i32* %3, align 4 - %5 = getelementptr inbounds [4 x i32], [4 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - call void @_Z5solvePii(i32* noundef %5, i32 noundef %6) - ret i32 0 -} - -; 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 = { 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, !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-llvm14/minimum-cost-polygon-triangulation.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-cost-polygon-triangulation.ll deleted file mode 100644 index 03ecf6fbe..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-cost-polygon-triangulation.ll +++ /dev/null @@ -1,441 +0,0 @@ -; ModuleID = 'PE-benchmarks/minimum-cost-polygon-triangulation.cpp' -source_filename = "PE-benchmarks/minimum-cost-polygon-triangulation.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%struct.Point = type { i32, i32 } - -$_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_ = comdat any - -@_ZSt4cout = external global %"class.std::basic_ostream", align 8 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef double @_Z3mindd(double noundef %0, double noundef %1) #0 { - %3 = alloca double, align 8 - %4 = alloca double, align 8 - store double %0, double* %3, align 8 - store double %1, double* %4, align 8 - %5 = load double, double* %3, align 8 - %6 = load double, double* %4, align 8 - %7 = fcmp ole double %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load double, double* %3, align 8 - br label %12 - -10: ; preds = %2 - %11 = load double, double* %4, align 8 - br label %12 - -12: ; preds = %10, %8 - %13 = phi double [ %9, %8 ], [ %11, %10 ] - ret double %13 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef double @_Z4dist5PointS_(i64 %0, i64 %1) #1 { - %3 = alloca %struct.Point, align 4 - %4 = alloca %struct.Point, align 4 - %5 = bitcast %struct.Point* %3 to i64* - store i64 %0, i64* %5, align 4 - %6 = bitcast %struct.Point* %4 to i64* - store i64 %1, i64* %6, align 4 - %7 = getelementptr inbounds %struct.Point, %struct.Point* %3, i32 0, i32 0 - %8 = load i32, i32* %7, align 4 - %9 = getelementptr inbounds %struct.Point, %struct.Point* %4, i32 0, i32 0 - %10 = load i32, i32* %9, align 4 - %11 = sub nsw i32 %8, %10 - %12 = getelementptr inbounds %struct.Point, %struct.Point* %3, i32 0, i32 0 - %13 = load i32, i32* %12, align 4 - %14 = getelementptr inbounds %struct.Point, %struct.Point* %4, i32 0, i32 0 - %15 = load i32, i32* %14, align 4 - %16 = sub nsw i32 %13, %15 - %17 = mul nsw i32 %11, %16 - %18 = getelementptr inbounds %struct.Point, %struct.Point* %3, i32 0, i32 1 - %19 = load i32, i32* %18, align 4 - %20 = getelementptr inbounds %struct.Point, %struct.Point* %4, i32 0, i32 1 - %21 = load i32, i32* %20, align 4 - %22 = sub nsw i32 %19, %21 - %23 = getelementptr inbounds %struct.Point, %struct.Point* %3, i32 0, i32 1 - %24 = load i32, i32* %23, align 4 - %25 = getelementptr inbounds %struct.Point, %struct.Point* %4, i32 0, i32 1 - %26 = load i32, i32* %25, align 4 - %27 = sub nsw i32 %24, %26 - %28 = mul nsw i32 %22, %27 - %29 = add nsw i32 %17, %28 - %30 = call noundef double @_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_(i32 noundef %29) - ret double %30 -} - -; 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) #0 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 noundef %4) #8 - ret double %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) #1 { - %5 = alloca %struct.Point*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca %struct.Point, align 4 - %10 = alloca %struct.Point, align 4 - %11 = alloca %struct.Point, align 4 - %12 = alloca %struct.Point, align 4 - %13 = alloca %struct.Point, align 4 - %14 = alloca %struct.Point, align 4 - %15 = alloca %struct.Point, align 4 - %16 = alloca %struct.Point, align 4 - %17 = alloca %struct.Point, align 4 - store %struct.Point* %0, %struct.Point** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 %3, i32* %8, align 4 - %18 = load %struct.Point*, %struct.Point** %5, align 8 - %19 = load i32, i32* %6, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds %struct.Point, %struct.Point* %18, i64 %20 - %22 = bitcast %struct.Point* %9 to i8* - %23 = bitcast %struct.Point* %21 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %22, i8* align 4 %23, i64 8, i1 false) - %24 = load %struct.Point*, %struct.Point** %5, align 8 - %25 = load i32, i32* %7, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds %struct.Point, %struct.Point* %24, i64 %26 - %28 = bitcast %struct.Point* %10 to i8* - %29 = bitcast %struct.Point* %27 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %28, i8* align 4 %29, i64 8, i1 false) - %30 = load %struct.Point*, %struct.Point** %5, align 8 - %31 = load i32, i32* %8, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds %struct.Point, %struct.Point* %30, i64 %32 - %34 = bitcast %struct.Point* %11 to i8* - %35 = bitcast %struct.Point* %33 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %34, i8* align 4 %35, i64 8, i1 false) - %36 = bitcast %struct.Point* %12 to i8* - %37 = bitcast %struct.Point* %9 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %36, i8* align 4 %37, i64 8, i1 false) - %38 = bitcast %struct.Point* %13 to i8* - %39 = bitcast %struct.Point* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %38, i8* align 4 %39, i64 8, i1 false) - %40 = bitcast %struct.Point* %12 to i64* - %41 = load i64, i64* %40, align 4 - %42 = bitcast %struct.Point* %13 to i64* - %43 = load i64, i64* %42, align 4 - %44 = call 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) - %47 = bitcast %struct.Point* %15 to i8* - %48 = bitcast %struct.Point* %11 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %47, i8* align 4 %48, i64 8, i1 false) - %49 = bitcast %struct.Point* %14 to i64* - %50 = load i64, i64* %49, align 4 - %51 = bitcast %struct.Point* %15 to i64* - %52 = load i64, i64* %51, align 4 - %53 = call 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* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %55, i8* align 4 %56, i64 8, i1 false) - %57 = bitcast %struct.Point* %17 to i8* - %58 = bitcast %struct.Point* %9 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %57, i8* align 4 %58, i64 8, i1 false) - %59 = bitcast %struct.Point* %16 to i64* - %60 = load i64, i64* %59, align 4 - %61 = bitcast %struct.Point* %17 to i64* - %62 = load i64, i64* %61, align 4 - %63 = call noundef double @_Z4dist5PointS_(i64 %60, i64 %62) - %64 = fadd double %54, %63 - ret double %64 -} - -; 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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef double @_Z5mTCDPP5Pointi(%struct.Point* noundef %0, i32 noundef %1) #1 { - %3 = alloca double, align 8 - %4 = alloca %struct.Point*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i8*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca double, align 8 - store %struct.Point* %0, %struct.Point** %4, align 8 - store i32 %1, i32* %5, align 4 - %14 = load i32, i32* %5, align 4 - %15 = icmp slt i32 %14, 3 - br i1 %15, label %16, label %17 - -16: ; preds = %2 - store double 0.000000e+00, double* %3, align 8 - br label %129 - -17: ; preds = %2 - %18 = load i32, i32* %5, align 4 - %19 = zext i32 %18 to i64 - %20 = load i32, i32* %5, align 4 - %21 = zext i32 %20 to i64 - %22 = call i8* @llvm.stacksave() - store i8* %22, i8** %6, align 8 - %23 = mul nuw i64 %19, %21 - %24 = alloca double, i64 %23, align 16 - store i64 %19, i64* %7, align 8 - store i64 %21, i64* %8, align 8 - store i32 0, i32* %9, align 4 - br label %25 - -25: ; preds = %117, %17 - %26 = load i32, i32* %9, align 4 - %27 = load i32, i32* %5, align 4 - %28 = icmp slt i32 %26, %27 - br i1 %28, label %29, label %120 - -29: ; preds = %25 - store i32 0, i32* %10, align 4 - %30 = load i32, i32* %9, align 4 - store i32 %30, i32* %11, align 4 - br label %31 - -31: ; preds = %111, %29 - %32 = load i32, i32* %11, align 4 - %33 = load i32, i32* %5, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %116 - -35: ; preds = %31 - %36 = load i32, i32* %11, align 4 - %37 = load i32, i32* %10, align 4 - %38 = add nsw i32 %37, 2 - %39 = icmp slt i32 %36, %38 - br i1 %39, label %40, label %48 - -40: ; preds = %35 - %41 = load i32, i32* %10, align 4 - %42 = sext i32 %41 to i64 - %43 = mul nsw i64 %42, %21 - %44 = getelementptr inbounds double, double* %24, i64 %43 - %45 = load i32, i32* %11, align 4 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds double, double* %44, i64 %46 - store double 0.000000e+00, double* %47, align 8 - br label %110 - -48: ; preds = %35 - %49 = load i32, i32* %10, align 4 - %50 = sext i32 %49 to i64 - %51 = mul nsw i64 %50, %21 - %52 = getelementptr inbounds double, double* %24, i64 %51 - %53 = load i32, i32* %11, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds double, double* %52, i64 %54 - store double 1.000000e+06, double* %55, align 8 - %56 = load i32, i32* %10, align 4 - %57 = add nsw i32 %56, 1 - store i32 %57, i32* %12, align 4 - br label %58 - -58: ; preds = %106, %48 - %59 = load i32, i32* %12, align 4 - %60 = load i32, i32* %11, align 4 - %61 = icmp slt i32 %59, %60 - br i1 %61, label %62, label %109 - -62: ; preds = %58 - %63 = load i32, i32* %10, align 4 - %64 = sext i32 %63 to i64 - %65 = mul nsw i64 %64, %21 - %66 = getelementptr inbounds double, double* %24, i64 %65 - %67 = load i32, i32* %12, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds double, double* %66, i64 %68 - %70 = load double, double* %69, align 8 - %71 = load i32, i32* %12, align 4 - %72 = sext i32 %71 to i64 - %73 = mul nsw i64 %72, %21 - %74 = getelementptr inbounds double, double* %24, i64 %73 - %75 = load i32, i32* %11, align 4 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds double, double* %74, i64 %76 - %78 = load double, double* %77, align 8 - %79 = fadd double %70, %78 - %80 = load %struct.Point*, %struct.Point** %4, align 8 - %81 = load i32, i32* %10, align 4 - %82 = load i32, i32* %11, align 4 - %83 = load i32, i32* %12, align 4 - %84 = call 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 - %87 = sext i32 %86 to i64 - %88 = mul nsw i64 %87, %21 - %89 = getelementptr inbounds double, double* %24, i64 %88 - %90 = load i32, i32* %11, align 4 - %91 = sext i32 %90 to i64 - %92 = getelementptr inbounds double, double* %89, i64 %91 - %93 = load double, double* %92, align 8 - %94 = load double, double* %13, align 8 - %95 = fcmp ogt double %93, %94 - br i1 %95, label %96, label %105 - -96: ; preds = %62 - %97 = load double, double* %13, align 8 - %98 = load i32, i32* %10, align 4 - %99 = sext i32 %98 to i64 - %100 = mul nsw i64 %99, %21 - %101 = getelementptr inbounds double, double* %24, i64 %100 - %102 = load i32, i32* %11, align 4 - %103 = sext i32 %102 to i64 - %104 = getelementptr inbounds double, double* %101, i64 %103 - store double %97, double* %104, align 8 - br label %105 - -105: ; preds = %96, %62 - br label %106 - -106: ; preds = %105 - %107 = load i32, i32* %12, align 4 - %108 = add nsw i32 %107, 1 - store i32 %108, i32* %12, align 4 - br label %58, !llvm.loop !6 - -109: ; preds = %58 - br label %110 - -110: ; preds = %109, %40 - br label %111 - -111: ; preds = %110 - %112 = load i32, i32* %10, align 4 - %113 = add nsw i32 %112, 1 - store i32 %113, i32* %10, align 4 - %114 = load i32, i32* %11, align 4 - %115 = add nsw i32 %114, 1 - store i32 %115, i32* %11, align 4 - br label %31, !llvm.loop !8 - -116: ; preds = %31 - br label %117 - -117: ; preds = %116 - %118 = load i32, i32* %9, align 4 - %119 = add nsw i32 %118, 1 - store i32 %119, i32* %9, align 4 - br label %25, !llvm.loop !9 - -120: ; preds = %25 - %121 = mul nsw i64 0, %21 - %122 = getelementptr inbounds double, double* %24, i64 %121 - %123 = load i32, i32* %5, align 4 - %124 = sub nsw i32 %123, 1 - %125 = sext i32 %124 to i64 - %126 = getelementptr inbounds double, double* %122, i64 %125 - %127 = load double, double* %126, align 8 - store double %127, double* %3, align 8 - %128 = load i8*, i8** %6, align 8 - call void @llvm.stackrestore(i8* %128) - br label %129 - -129: ; preds = %120, %16 - %130 = load double, double* %3, align 8 - ret double %130 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #3 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #3 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #4 { - %1 = alloca i32, align 4 - %2 = alloca [5 x %struct.Point], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [5 x %struct.Point]* %2 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %4, i8 0, i64 40, i1 false) - %5 = bitcast i8* %4 to [5 x %struct.Point]* - %6 = getelementptr inbounds [5 x %struct.Point], [5 x %struct.Point]* %5, i32 0, i32 1 - %7 = getelementptr inbounds %struct.Point, %struct.Point* %6, i32 0, i32 0 - store i32 1, i32* %7, align 8 - %8 = getelementptr inbounds [5 x %struct.Point], [5 x %struct.Point]* %5, i32 0, i32 2 - %9 = getelementptr inbounds %struct.Point, %struct.Point* %8, i32 0, i32 0 - store i32 2, i32* %9, align 16 - %10 = getelementptr inbounds %struct.Point, %struct.Point* %8, i32 0, i32 1 - store i32 1, i32* %10, align 4 - %11 = getelementptr inbounds [5 x %struct.Point], [5 x %struct.Point]* %5, i32 0, i32 3 - %12 = getelementptr inbounds %struct.Point, %struct.Point* %11, i32 0, i32 0 - store i32 1, i32* %12, align 8 - %13 = getelementptr inbounds %struct.Point, %struct.Point* %11, i32 0, i32 1 - store i32 2, i32* %13, align 4 - %14 = getelementptr inbounds [5 x %struct.Point], [5 x %struct.Point]* %5, i32 0, i32 4 - %15 = getelementptr inbounds %struct.Point, %struct.Point* %14, i32 0, i32 1 - store i32 2, i32* %15, align 4 - store i32 5, i32* %3, align 4 - %16 = getelementptr inbounds [5 x %struct.Point], [5 x %struct.Point]* %2, i64 0, i64 0 - %17 = load i32, i32* %3, align 4 - %18 = call 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 nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEd(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), double noundef) #6 - -; Function Attrs: nounwind -declare double @sqrt(double noundef) #7 - -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 = { argmemonly nofree nounwind willreturn } -attributes #3 = { nofree nosync 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" } -attributes #5 = { argmemonly nofree nounwind willreturn writeonly } -attributes #6 = { "frame-pointer"="all" "no-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 = { 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 = { nounwind } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-cut-in-a-directed-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-cut-in-a-directed-graph.ll deleted file mode 100644 index 6036a2ab4..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-cut-in-a-directed-graph.ll +++ /dev/null @@ -1,2834 +0,0 @@ -; ModuleID = 'PE-benchmarks/minimum-cut-in-a-directed-graph.cpp' -source_filename = "PE-benchmarks/minimum-cut-in-a-directed-graph.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::queue" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { i32**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%"struct.std::_Deque_iterator" = type { i32*, i32*, i32*, i32** } -%"class.std::allocator" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.std::__new_allocator.1" = type { i8 } -%"class.std::__new_allocator" = type { i8 } - -$_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi = comdat any - -$_ZNKSt5queueIiSt5dequeIiSaIiEEE5emptyEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev = comdat any - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -$_ZNSt5dequeIiSaIiEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any - -$_ZNSt5dequeIiSaIiEE5beginEv = comdat any - -$_ZNSt5dequeIiSaIiEE3endEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any - -$_ZNSt15__new_allocatorIPiED2Ev = comdat any - -$_ZNSt15__new_allocatorIiED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any - -$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any - -$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any - -$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any - -$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIPPiET_S2_ = comdat any - -$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIPPiET_S2_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNKSt5dequeIiSaIiEE5emptyEv = comdat any - -$_ZSteqRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt5dequeIiSaIiEE5frontEv = comdat any - -$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any - -$_ZNSt5dequeIiSaIiEE9pop_frontEv = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv = comdat any - -@_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 - -; 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) #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %5 = alloca [6 x i32]*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32*, align 8 - %9 = alloca [6 x i8], align 1 - %10 = alloca %"class.std::queue", align 8 - %11 = alloca i8*, align 8 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - store [6 x i32]* %0, [6 x i32]** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32* %3, i32** %8, align 8 - %15 = getelementptr inbounds [6 x i8], [6 x i8]* %9, i64 0, i64 0 - call void @llvm.memset.p0i8.i64(i8* align 1 %15, i8 0, i64 6, i1 false) - call void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::queue"* 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 - %17 = load i32, i32* %6, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [6 x i8], [6 x i8]* %9, i64 0, i64 %18 - store i8 1, i8* %19, align 1 - %20 = load i32*, i32** %8, align 8 - %21 = load i32, i32* %6, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds i32, i32* %20, i64 %22 - store i32 -1, i32* %23, align 4 - br label %24 - -24: ; preds = %72, %16 - %25 = invoke noundef zeroext i1 @_ZNKSt5queueIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %10) - to label %26 unwind label %64 - -26: ; preds = %24 - %27 = xor i1 %25, true - br i1 %27, label %28, label %73 - -28: ; preds = %26 - %29 = invoke 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"* noundef nonnull align 8 dereferenceable(80) %10) - to label %32 unwind label %64 - -32: ; preds = %30 - store i32 0, i32* %14, align 4 - br label %33 - -33: ; preds = %69, %32 - %34 = load i32, i32* %14, align 4 - %35 = icmp slt i32 %34, 6 - br i1 %35, label %36, label %72 - -36: ; preds = %33 - %37 = load i32, i32* %14, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds [6 x i8], [6 x i8]* %9, i64 0, i64 %38 - %40 = load i8, i8* %39, align 1 - %41 = trunc i8 %40 to i1 - %42 = zext i1 %41 to i32 - %43 = icmp eq i32 %42, 0 - br i1 %43, label %44, label %68 - -44: ; preds = %36 - %45 = load [6 x i32]*, [6 x i32]** %5, align 8 - %46 = load i32, i32* %13, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds [6 x i32], [6 x i32]* %45, i64 %47 - %49 = load i32, i32* %14, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds [6 x i32], [6 x i32]* %48, i64 0, i64 %50 - %52 = load i32, i32* %51, align 4 - %53 = icmp sgt i32 %52, 0 - br i1 %53, label %54, label %68 - -54: ; preds = %44 - invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %10, i32* noundef nonnull align 4 dereferenceable(4) %14) - to label %55 unwind label %64 - -55: ; preds = %54 - %56 = load i32, i32* %13, align 4 - %57 = load i32*, i32** %8, align 8 - %58 = load i32, i32* %14, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds i32, i32* %57, i64 %59 - store i32 %56, i32* %60, align 4 - %61 = load i32, i32* %14, align 4 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds [6 x i8], [6 x i8]* %9, i64 0, i64 %62 - store i8 1, i8* %63, align 1 - br label %68 - -64: ; preds = %54, %30, %28, %24, %4 - %65 = landingpad { i8*, i32 } - cleanup - %66 = extractvalue { i8*, i32 } %65, 0 - store i8* %66, i8** %11, align 8 - %67 = extractvalue { i8*, i32 } %65, 1 - store i32 %67, i32* %12, align 4 - call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %10) #12 - br label %82 - -68: ; preds = %55, %44, %36 - br label %69 - -69: ; preds = %68 - %70 = load i32, i32* %14, align 4 - %71 = add nsw i32 %70, 1 - store i32 %71, i32* %14, align 4 - br label %33, !llvm.loop !6 - -72: ; preds = %33 - br label %24, !llvm.loop !8 - -73: ; preds = %26 - %74 = load i32, i32* %7, align 4 - %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds [6 x i8], [6 x i8]* %9, i64 0, i64 %75 - %77 = load i8, i8* %76, align 1 - %78 = trunc i8 %77 to i1 - %79 = zext i1 %78 to i32 - %80 = icmp eq i32 %79, 1 - %81 = zext i1 %80 to i32 - call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %10) #12 - ret i32 %81 - -82: ; preds = %64 - %83 = load i8*, i8** %11, align 8 - %84 = load i32, i32* %12, align 4 - %85 = insertvalue { i8*, i32 } undef, i8* %83, 0 - %86 = insertvalue { i8*, i32 } %85, i32 %84, 1 - resume { i8*, i32 } %86 -} - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #1 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #2 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"* noundef nonnull align 8 dereferenceable(80) %4) - ret void -} - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::queue"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::queue"*, %"class.std::queue"** %3, align 8 - %6 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %5, i32 0, i32 0 - %7 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %6, i32* noundef nonnull align 4 dereferenceable(4) %7) - ret void -} - -declare i32 @__gxx_personality_v0(...) - -; 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) #3 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 noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #12 - ret i1 %5 -} - -; 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) #3 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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE5frontEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #12 - ret i32* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %0) #3 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"* noundef nonnull align 8 dereferenceable(80) %4) #12 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #4 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"* noundef nonnull align 8 dereferenceable(80) %4) #12 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z3dfsPA6_iiPb([6 x i32]* noundef %0, i32 noundef %1, i8* noundef %2) #0 { - %4 = alloca [6 x i32]*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store [6 x i32]* %0, [6 x i32]** %4, align 8 - store i32 %1, i32* %5, align 4 - store i8* %2, i8** %6, align 8 - %8 = load i8*, i8** %6, align 8 - %9 = load i32, i32* %5, align 4 - %10 = sext i32 %9 to i64 - %11 = getelementptr inbounds i8, i8* %8, i64 %10 - store i8 1, i8* %11, align 1 - store i32 0, i32* %7, align 4 - br label %12 - -12: ; preds = %37, %3 - %13 = load i32, i32* %7, align 4 - %14 = icmp slt i32 %13, 6 - br i1 %14, label %15, label %40 - -15: ; preds = %12 - %16 = load [6 x i32]*, [6 x i32]** %4, align 8 - %17 = load i32, i32* %5, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [6 x i32], [6 x i32]* %16, i64 %18 - %20 = load i32, i32* %7, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds [6 x i32], [6 x i32]* %19, i64 0, i64 %21 - %23 = load i32, i32* %22, align 4 - %24 = icmp ne i32 %23, 0 - br i1 %24, label %25, label %36 - -25: ; preds = %15 - %26 = load i8*, i8** %6, align 8 - %27 = load i32, i32* %7, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i8, i8* %26, i64 %28 - %30 = load i8, i8* %29, align 1 - %31 = trunc i8 %30 to i1 - br i1 %31, label %36, label %32 - -32: ; preds = %25 - %33 = load [6 x i32]*, [6 x i32]** %4, align 8 - %34 = load i32, i32* %7, align 4 - %35 = load i8*, i8** %6, align 8 - call void @_Z3dfsPA6_iiPb([6 x i32]* noundef %33, i32 noundef %34, i8* noundef %35) - br label %36 - -36: ; preds = %32, %25, %15 - br label %37 - -37: ; preds = %36 - %38 = load i32, i32* %7, align 4 - %39 = add nsw i32 %38, 1 - store i32 %39, i32* %7, align 4 - br label %12, !llvm.loop !9 - -40: ; preds = %12 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z6minCutPA6_iii([6 x i32]* noundef %0, i32 noundef %1, i32 noundef %2) #0 { - %4 = alloca [6 x i32]*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca [6 x [6 x i32]], align 16 - %10 = alloca [6 x i32], align 16 - %11 = alloca i32, align 4 - %12 = alloca [6 x i8], align 1 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - store [6 x i32]* %0, [6 x i32]** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - store i32 0, i32* %7, align 4 - br label %15 - -15: ; preds = %41, %3 - %16 = load i32, i32* %7, align 4 - %17 = icmp slt i32 %16, 6 - br i1 %17, label %18, label %44 - -18: ; preds = %15 - store i32 0, i32* %8, align 4 - br label %19 - -19: ; preds = %37, %18 - %20 = load i32, i32* %8, align 4 - %21 = icmp slt i32 %20, 6 - br i1 %21, label %22, label %40 - -22: ; preds = %19 - %23 = load [6 x i32]*, [6 x i32]** %4, align 8 - %24 = load i32, i32* %7, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds [6 x i32], [6 x i32]* %23, i64 %25 - %27 = load i32, i32* %8, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds [6 x i32], [6 x i32]* %26, i64 0, i64 %28 - %30 = load i32, i32* %29, align 4 - %31 = load i32, i32* %7, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds [6 x [6 x i32]], [6 x [6 x i32]]* %9, i64 0, i64 %32 - %34 = load i32, i32* %8, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds [6 x i32], [6 x i32]* %33, i64 0, i64 %35 - store i32 %30, i32* %36, align 4 - br label %37 - -37: ; preds = %22 - %38 = load i32, i32* %8, align 4 - %39 = add nsw i32 %38, 1 - store i32 %39, i32* %8, align 4 - br label %19, !llvm.loop !10 - -40: ; preds = %19 - br label %41 - -41: ; preds = %40 - %42 = load i32, i32* %7, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %7, align 4 - br label %15, !llvm.loop !11 - -44: ; preds = %15 - br label %45 - -45: ; preds = %110, %44 - %46 = getelementptr inbounds [6 x [6 x i32]], [6 x [6 x i32]]* %9, i64 0, i64 0 - %47 = load i32, i32* %5, align 4 - %48 = load i32, i32* %6, align 4 - %49 = getelementptr inbounds [6 x i32], [6 x i32]* %10, i64 0, i64 0 - %50 = call 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 - -52: ; preds = %45 - store i32 2147483647, i32* %11, align 4 - %53 = load i32, i32* %6, align 4 - store i32 %53, i32* %8, align 4 - br label %54 - -54: ; preds = %71, %52 - %55 = load i32, i32* %8, align 4 - %56 = load i32, i32* %5, align 4 - %57 = icmp ne i32 %55, %56 - br i1 %57, label %58, label %76 - -58: ; preds = %54 - %59 = load i32, i32* %8, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds [6 x i32], [6 x i32]* %10, i64 0, i64 %60 - %62 = load i32, i32* %61, align 4 - store i32 %62, i32* %7, align 4 - %63 = load i32, i32* %7, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds [6 x [6 x i32]], [6 x [6 x i32]]* %9, i64 0, i64 %64 - %66 = load i32, i32* %8, align 4 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds [6 x i32], [6 x i32]* %65, i64 0, i64 %67 - %69 = call 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 - -71: ; preds = %58 - %72 = load i32, i32* %8, align 4 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds [6 x i32], [6 x i32]* %10, i64 0, i64 %73 - %75 = load i32, i32* %74, align 4 - store i32 %75, i32* %8, align 4 - br label %54, !llvm.loop !12 - -76: ; preds = %54 - %77 = load i32, i32* %6, align 4 - store i32 %77, i32* %8, align 4 - br label %78 - -78: ; preds = %105, %76 - %79 = load i32, i32* %8, align 4 - %80 = load i32, i32* %5, align 4 - %81 = icmp ne i32 %79, %80 - br i1 %81, label %82, label %110 - -82: ; preds = %78 - %83 = load i32, i32* %8, align 4 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds [6 x i32], [6 x i32]* %10, i64 0, i64 %84 - %86 = load i32, i32* %85, align 4 - store i32 %86, i32* %7, align 4 - %87 = load i32, i32* %11, align 4 - %88 = load i32, i32* %7, align 4 - %89 = sext i32 %88 to i64 - %90 = getelementptr inbounds [6 x [6 x i32]], [6 x [6 x i32]]* %9, i64 0, i64 %89 - %91 = load i32, i32* %8, align 4 - %92 = sext i32 %91 to i64 - %93 = getelementptr inbounds [6 x i32], [6 x i32]* %90, i64 0, i64 %92 - %94 = load i32, i32* %93, align 4 - %95 = sub nsw i32 %94, %87 - store i32 %95, i32* %93, align 4 - %96 = load i32, i32* %11, align 4 - %97 = load i32, i32* %8, align 4 - %98 = sext i32 %97 to i64 - %99 = getelementptr inbounds [6 x [6 x i32]], [6 x [6 x i32]]* %9, i64 0, i64 %98 - %100 = load i32, i32* %7, align 4 - %101 = sext i32 %100 to i64 - %102 = getelementptr inbounds [6 x i32], [6 x i32]* %99, i64 0, i64 %101 - %103 = load i32, i32* %102, align 4 - %104 = add nsw i32 %103, %96 - store i32 %104, i32* %102, align 4 - br label %105 - -105: ; preds = %82 - %106 = load i32, i32* %8, align 4 - %107 = sext i32 %106 to i64 - %108 = getelementptr inbounds [6 x i32], [6 x i32]* %10, i64 0, i64 %107 - %109 = load i32, i32* %108, align 4 - store i32 %109, i32* %8, align 4 - br label %78, !llvm.loop !13 - -110: ; preds = %78 - br label %45, !llvm.loop !14 - -111: ; preds = %45 - %112 = getelementptr inbounds [6 x i8], [6 x i8]* %12, i64 0, i64 0 - call void @llvm.memset.p0i8.i64(i8* align 1 %112, i8 0, i64 6, i1 false) - %113 = getelementptr inbounds [6 x [6 x i32]], [6 x [6 x i32]]* %9, i64 0, i64 0 - %114 = load i32, i32* %5, align 4 - %115 = getelementptr inbounds [6 x i8], [6 x i8]* %12, i64 0, i64 0 - call void @_Z3dfsPA6_iiPb([6 x i32]* noundef %113, i32 noundef %114, i8* noundef %115) - store i32 0, i32* %13, align 4 - br label %116 - -116: ; preds = %157, %111 - %117 = load i32, i32* %13, align 4 - %118 = icmp slt i32 %117, 6 - br i1 %118, label %119, label %160 - -119: ; preds = %116 - store i32 0, i32* %14, align 4 - br label %120 - -120: ; preds = %153, %119 - %121 = load i32, i32* %14, align 4 - %122 = icmp slt i32 %121, 6 - br i1 %122, label %123, label %156 - -123: ; preds = %120 - %124 = load i32, i32* %13, align 4 - %125 = sext i32 %124 to i64 - %126 = getelementptr inbounds [6 x i8], [6 x i8]* %12, i64 0, i64 %125 - %127 = load i8, i8* %126, align 1 - %128 = trunc i8 %127 to i1 - br i1 %128, label %129, label %152 - -129: ; preds = %123 - %130 = load i32, i32* %14, align 4 - %131 = sext i32 %130 to i64 - %132 = getelementptr inbounds [6 x i8], [6 x i8]* %12, i64 0, i64 %131 - %133 = load i8, i8* %132, align 1 - %134 = trunc i8 %133 to i1 - br i1 %134, label %152, label %135 - -135: ; preds = %129 - %136 = load [6 x i32]*, [6 x i32]** %4, align 8 - %137 = load i32, i32* %13, align 4 - %138 = sext i32 %137 to i64 - %139 = getelementptr inbounds [6 x i32], [6 x i32]* %136, i64 %138 - %140 = load i32, i32* %14, align 4 - %141 = sext i32 %140 to i64 - %142 = getelementptr inbounds [6 x i32], [6 x i32]* %139, i64 0, i64 %141 - %143 = load i32, i32* %142, align 4 - %144 = icmp ne i32 %143, 0 - br i1 %144, label %145, label %152 - -145: ; preds = %135 - %146 = load i32, i32* %13, align 4 - %147 = call 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 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 - br label %153 - -153: ; preds = %152 - %154 = load i32, i32* %14, align 4 - %155 = add nsw i32 %154, 1 - store i32 %155, i32* %14, align 4 - br label %120, !llvm.loop !15 - -156: ; preds = %120 - br label %157 - -157: ; preds = %156 - %158 = load i32, i32* %13, align 4 - %159 = add nsw i32 %158, 1 - store i32 %159, i32* %13, align 4 - br label %116, !llvm.loop !16 - -160: ; preds = %116 - ret void -} - -; 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) #3 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -declare noundef 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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -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) #5 - -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)) #5 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #6 { - %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]* noundef %4, i32 noundef 0, i32 noundef 5) - ret i32 0 -} - -; 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 -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - %4 = alloca %"struct.std::_Deque_iterator", align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) #12 - 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) #12 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %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) #12 - 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"* noundef nonnull align 8 dereferenceable(80) %11) #12 - ret void - -12: ; preds = %1 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %5, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %6, align 4 - %16 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %16) #12 - br label %17 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - call void @__clang_call_terminate(i8* %18) #13 - unreachable -} - -; 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) #3 comdat align 2 { - %5 = alloca %"class.std::deque"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %5, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %5, align 8 - ret void -} - -; Function Attrs: 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) #3 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %10) #12 - ret void -} - -; 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) #3 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %10) #12 - ret void -} - -; 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) #3 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #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 %"struct.std::_Deque_base>::_Deque_impl_data"* - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %6, align 8 - %8 = icmp ne i32** %7, null - br i1 %8, label %9, label %29 - -9: ; preds = %1 - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 2 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 3 - %14 = load i32**, i32*** %13, align 8 - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = getelementptr inbounds i32*, i32** %19, i64 1 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %14, i32** noundef %20) #12 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 0 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 1 - %28 = load i64, i64* %27, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %24, i64 noundef %28) #12 - 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"* noundef nonnull align 8 dereferenceable(80) %30) #12 - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #8 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #12 - call void @_ZSt9terminatev() #13 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable -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 #4 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load i32*, i32** %12, align 8 - store i32* %13, i32** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - store i32* %17, i32** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load i32**, i32*** %20, align 8 - store i32** %21, i32*** %18, align 8 - ret void -} - -; Function Attrs: 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) #3 comdat align 2 { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load i32**, i32*** %5, align 8 - store i32** %9, i32*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32**, i32*** %7, align 8 - %12 = load i32**, i32*** %6, align 8 - %13 = icmp ult i32** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32**, i32*** %7, align 8 - %16 = load i32*, i32** %15, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %16) #12 - 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 !17 - -20: ; preds = %10 - ret void -} - -; Function Attrs: 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) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::_Deque_base"*, align 8 - %10 = alloca i32**, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"class.std::allocator.0", align 1 - %13 = alloca i8*, align 8 - %14 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %9, align 8 - store i32** %1, i32*** %10, align 8 - store i64 %2, i64* %11, align 8 - %15 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %9, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.0"* sret(%"class.std::allocator.0") align 1 %12, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %15) #12 - %16 = load i32**, i32*** %10, align 8 - %17 = load i64, i64* %11, align 8 - store %"class.std::allocator.0"* %12, %"class.std::allocator.0"** %6, align 8 - store i32** %16, i32*** %7, align 8 - store i64 %17, i64* %8, align 8 - %18 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %19 = bitcast %"class.std::allocator.0"* %18 to %"class.std::__new_allocator.1"* - %20 = load i32**, i32*** %7, align 8 - %21 = load i64, i64* %8, align 8 - call void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %19, i32** noundef %20, i64 noundef %21) - br label %22 - -22: ; preds = %3 - store %"class.std::allocator.0"* %12, %"class.std::allocator.0"** %5, align 8 - %23 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %5, align 8 - %24 = bitcast %"class.std::allocator.0"* %23 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %24) #12 - ret void - -25: ; No predecessors! - %26 = landingpad { i8*, i32 } - catch i8* null - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %13, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %14, align 4 - store %"class.std::allocator.0"* %12, %"class.std::allocator.0"** %4, align 8 - %29 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %30 = bitcast %"class.std::allocator.0"* %29 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %30) #12 - br label %31 - -31: ; preds = %25 - %32 = load i8*, i8** %13, align 8 - call void @__clang_call_terminate(i8* %32) #13 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -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 #4 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %4 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator"* - store %"class.std::allocator"* %5, %"class.std::allocator"** %2, align 8 - %6 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %7 = bitcast %"class.std::allocator"* %6 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #12 - ret void -} - -; 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) #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::_Deque_base"*, align 8 - %7 = alloca i32*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %6, align 8 - store i32* %1, i32** %7, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %6, align 8 - %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 %"class.std::allocator"* - %11 = load i32*, i32** %7, align 8 - %12 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - to label %13 unwind label %19 - -13: ; preds = %2 - store %"class.std::allocator"* %10, %"class.std::allocator"** %3, align 8 - store i32* %11, i32** %4, align 8 - store i64 %12, i64* %5, align 8 - %14 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %15 = bitcast %"class.std::allocator"* %14 to %"class.std::__new_allocator"* - %16 = load i32*, i32** %4, align 8 - %17 = load i64, i64* %5, align 8 - call void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %15, i32* noundef %16, i64 noundef %17) - br label %18 - -18: ; preds = %13 - ret void - -19: ; preds = %2 - %20 = landingpad { i8*, i32 } - catch i8* null - %21 = extractvalue { i8*, i32 } %20, 0 - call void @__clang_call_terminate(i8* %21) #13 - unreachable -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #3 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #3 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* noundef %9) #14 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #9 - -; Function Attrs: 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) #4 comdat align 2 { - %3 = alloca %"class.std::__new_allocator.1"*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = bitcast %"class.std::allocator.0"* %0 to i8* - store i8* %8, i8** %6, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %7, align 8 - %9 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - %10 = 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) %9) #12 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store %"class.std::allocator"* %10, %"class.std::allocator"** %5, align 8 - %11 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %12 = bitcast %"class.std::allocator.0"* %11 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %12, %"class.std::__new_allocator.1"** %3, align 8 - %13 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - ret void -} - -; 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) #3 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %2) #3 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = bitcast i32** %8 to i8* - call void @_ZdlPv(i8* noundef %9) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #4 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %2, align 8 - %3 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #4 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #2 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"* 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"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #2 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"* noundef nonnull align 8 dereferenceable(80) %6) #12 - 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 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #12 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #4 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %5 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 dereferenceable(80) %10) #12 - ret void -} - -; 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) #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32**, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call 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 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call 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"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call 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 - store i32** %28, i32*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load i32**, i32*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds i32*, i32** %35, i64 %42 - store i32** %43, i32*** %8, align 8 - %44 = load i32**, i32*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds i32*, i32** %44, i64 %45 - store i32** %46, i32*** %9, align 8 - %47 = load i32**, i32*** %8, align 8 - %48 = load i32**, i32*** %9, align 8 - invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %47, i32** noundef %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #12 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load i32**, i32*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %60, i64 noundef %64) #12 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store i32** null, i32*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #15 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load i32**, i32*** %8, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, i32** noundef %80) #12 - %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"* noundef nonnull align 8 dereferenceable(32) %83, i32** noundef %85) #12 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load i32*, i32** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store i32* %90, i32** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load i32*, i32** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call 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 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store i32* %103, i32** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #13 - unreachable - -116: ; preds = %54 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -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 #4 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl_data"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl_data"* %0, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl_data"*, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store i32** null, i32*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %6) #12 - %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"* noundef nonnull align 8 dereferenceable(32) %7) #12 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #4 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store i32** null, i32*** %7, align 8 - ret void -} - -; Function Attrs: 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) #3 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable -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) #2 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::allocator.0", align 1 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %7, align 8 - store i64 %1, i64* %8, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.0"* sret(%"class.std::allocator.0") align 1 %9, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12) #12 - %13 = load i64, i64* %8, align 8 - store %"class.std::allocator.0"* %9, %"class.std::allocator.0"** %3, align 8 - store i64 %13, i64* %4, align 8 - %14 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %15 = bitcast %"class.std::allocator.0"* %14 to %"class.std::__new_allocator.1"* - %16 = load i64, i64* %4, align 8 - %17 = invoke noundef i32** @_ZNSt15__new_allocatorIPiE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %15, i64 noundef %16, i8* noundef null) - to label %18 unwind label %22 - -18: ; preds = %2 - br label %19 - -19: ; preds = %18 - store %"class.std::allocator.0"* %9, %"class.std::allocator.0"** %6, align 8 - %20 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %21 = bitcast %"class.std::allocator.0"* %20 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %21) #12 - ret i32** %17 - -22: ; preds = %2 - %23 = landingpad { i8*, i32 } - cleanup - %24 = extractvalue { i8*, i32 } %23, 0 - store i8* %24, i8** %10, align 8 - %25 = extractvalue { i8*, i32 } %23, 1 - store i32 %25, i32* %11, align 4 - store %"class.std::allocator.0"* %9, %"class.std::allocator.0"** %5, align 8 - %26 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %5, align 8 - %27 = bitcast %"class.std::allocator.0"* %26 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %27) #12 - br label %28 - -28: ; preds = %22 - %29 = load i8*, i8** %10, align 8 - %30 = load i32, i32* %11, align 4 - %31 = insertvalue { i8*, i32 } undef, i8* %29, 0 - %32 = insertvalue { i8*, i32 } %31, i32 %30, 1 - resume { i8*, i32 } %32 -} - -; 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) #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load i32**, i32*** %5, align 8 - store i32** %11, i32*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load i32**, i32*** %7, align 8 - %14 = load i32**, i32*** %6, align 8 - %15 = icmp ult i32** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke 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 - %19 = load i32**, i32*** %7, align 8 - store i32* %17, i32** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load i32**, i32*** %7, align 8 - %22 = getelementptr inbounds i32*, i32** %21, i32 1 - store i32** %22, i32*** %7, align 8 - br label %12, !llvm.loop !18 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #12 - %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"* noundef nonnull align 8 dereferenceable(80) %10, i32** noundef %30, i32** noundef %31) #12 - invoke void @__cxa_rethrow() #15 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #13 - unreachable - -47: ; preds = %27 - unreachable -} - -declare void @__cxa_rethrow() - -declare void @__cxa_end_catch() - -; 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) #3 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load i32**, i32*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store i32** %6, i32*** %7, align 8 - %8 = load i32**, i32*** %4, align 8 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store i32* %9, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load i32*, i32** %11, align 8 - %13 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #12 - %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: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt15__new_allocatorIPiE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #0 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca %"class.std::__new_allocator.1"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator.1"* %8, %"class.std::__new_allocator.1"** %4, align 8 - %10 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - %11 = icmp ugt i64 %9, 1152921504606846975 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 2305843009213693951 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #15 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #15 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 8 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #16 - %21 = bitcast i8* %20 to i32** - ret i32** %21 -} - -; Function Attrs: noreturn -declare void @_ZSt28__throw_bad_array_new_lengthv() #10 - -; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #10 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #11 - -; 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) #0 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator"* - %8 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 %8, i64* %3, align 8 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %10 = bitcast %"class.std::allocator"* %9 to %"class.std::__new_allocator"* - %11 = load i64, i64* %3, align 8 - %12 = call noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %10, i64 noundef %11, i8* noundef null) - ret i32* %12 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #0 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 2305843009213693951 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 4611686018427387903 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #15 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #15 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 4 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #16 - %21 = bitcast i8* %20 to i32* - ret i32* %21 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 comdat align 2 { - %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - ret i64 %1 -} - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store i32* %1, i32** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %19 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %19 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 2 - %23 = load i32*, i32** %22, align 8 - %24 = getelementptr inbounds i32, i32* %23, i64 -1 - %25 = icmp ne i32* %17, %24 - br i1 %25, label %26, label %55 - -26: ; preds = %2 - %27 = bitcast %"class.std::deque"* %11 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 %"class.std::allocator"* - %30 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %31 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %30, i32 0, i32 0 - %32 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %31 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %32, i32 0, i32 3 - %34 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %33, i32 0, i32 0 - %35 = load i32*, i32** %34, align 8 - %36 = load i32*, i32** %10, align 8 - store %"class.std::allocator"* %29, %"class.std::allocator"** %6, align 8 - store i32* %35, i32** %7, align 8 - store i32* %36, i32** %8, align 8 - %37 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %38 = bitcast %"class.std::allocator"* %37 to %"class.std::__new_allocator"* - %39 = load i32*, i32** %7, align 8 - %40 = load i32*, i32** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #12 - store %"class.std::__new_allocator"* %38, %"class.std::__new_allocator"** %3, align 8 - store i32* %39, i32** %4, align 8 - store i32* %41, i32** %5, align 8 - %42 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %43 = load i32*, i32** %4, align 8 - %44 = bitcast i32* %43 to i8* - %45 = load i32*, i32** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %45) #12 - %47 = load i32, i32* %46, align 4 - store i32 %47, i32* %43, align 4 - %48 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %51, i32 0, i32 0 - %53 = load i32*, i32** %52, align 8 - %54 = getelementptr inbounds i32, i32* %53, i32 1 - store i32* %54, i32** %52, align 8 - br label %57 - -55: ; preds = %2 - %56 = load i32*, i32** %10, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, i32* noundef nonnull align 4 dereferenceable(4) %56) - br label %57 - -57: ; preds = %55, %26 - ret void -} - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store i32* %1, i32** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #12 - %13 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #12 - %14 = icmp eq i64 %12, %13 - br i1 %14, label %15, label %16 - -15: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* noundef getelementptr inbounds ([48 x i8], [48 x i8]* @.str.1, i64 0, i64 0)) #15 - unreachable - -16: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) - %17 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %18 = call noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %17) - %19 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 3 - %23 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %22, i32 0, i32 3 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds i32*, i32** %24, i64 1 - store i32* %18, i32** %25, align 8 - %26 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %27 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %26, i32 0, i32 0 - %28 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %27 to %"class.std::allocator"* - %29 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %29, i32 0, i32 0 - %31 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %30 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %32 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %31, i32 0, i32 3 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load i32*, i32** %33, align 8 - %35 = load i32*, i32** %10, align 8 - %36 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %35) #12 - store %"class.std::allocator"* %28, %"class.std::allocator"** %6, align 8 - store i32* %34, i32** %7, align 8 - store i32* %36, i32** %8, align 8 - %37 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %38 = bitcast %"class.std::allocator"* %37 to %"class.std::__new_allocator"* - %39 = load i32*, i32** %7, align 8 - %40 = load i32*, i32** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #12 - store %"class.std::__new_allocator"* %38, %"class.std::__new_allocator"** %3, align 8 - store i32* %39, i32** %4, align 8 - store i32* %41, i32** %5, align 8 - %42 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %43 = load i32*, i32** %4, align 8 - %44 = bitcast i32* %43 to i8* - %45 = load i32*, i32** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %45) #12 - %47 = load i32, i32* %46, align 4 - store i32 %47, i32* %43, align 4 - %48 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %53 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %52, i32 0, i32 0 - %54 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %53 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %55 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %54, i32 0, i32 3 - %56 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %55, i32 0, i32 3 - %57 = load i32**, i32*** %56, align 8 - %58 = getelementptr inbounds i32*, i32** %57, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %51, i32** noundef %58) #12 - %59 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %60 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %59, i32 0, i32 0 - %61 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %60 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %62 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %61, i32 0, i32 3 - %63 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %62, i32 0, i32 1 - %64 = load i32*, i32** %63, align 8 - %65 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %66 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %65, i32 0, i32 0 - %67 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %66 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %68 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %67, i32 0, i32 3 - %69 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %68, i32 0, i32 0 - store i32* %64, i32** %69, align 8 - ret void -} - -; 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) #3 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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) #3 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call 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) #12 - ret i64 %12 -} - -; 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) #3 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 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) #12 - %6 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5) #12 - ret i64 %6 -} - -; Function Attrs: noreturn -declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #10 - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load i32**, i32*** %22, align 8 - %24 = ptrtoint i32** %18 to i64 - %25 = ptrtoint i32** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* 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: 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) #3 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 noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #12 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load i32**, i32*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = ptrtoint i32** %8 to i64 - %13 = ptrtoint i32** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = 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 i64 - %21 = sub nsw i64 %15, %20 - %22 = mul nsw i64 %5, %21 - %23 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 0 - %25 = load i32*, i32** %24, align 8 - %26 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 1 - %28 = load i32*, i32** %27, align 8 - %29 = ptrtoint i32* %25 to i64 - %30 = ptrtoint i32* %28 to i64 - %31 = sub i64 %29, %30 - %32 = sdiv exact i64 %31, 4 - %33 = add nsw i64 %22, %32 - %34 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 2 - %36 = load i32*, i32** %35, align 8 - %37 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %38 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %37, i32 0, i32 0 - %39 = load i32*, i32** %38, align 8 - %40 = ptrtoint i32* %36 to i64 - %41 = ptrtoint i32* %39 to i64 - %42 = sub i64 %40, %41 - %43 = sdiv exact i64 %42, 4 - %44 = add nsw i64 %33, %43 - ret i64 %44 -} - -; 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) #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %5, align 8 - store i64 9223372036854775807, i64* %6, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - store %"class.std::allocator"* %8, %"class.std::allocator"** %4, align 8 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %10 = bitcast %"class.std::allocator"* %9 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %10, %"class.std::__new_allocator"** %3, align 8 - %11 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - store %"class.std::__new_allocator"* %11, %"class.std::__new_allocator"** %2, align 8 - %12 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - store i64 2305843009213693951, i64* %7, align 8 - %13 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef nonnull align 8 dereferenceable(8) %7) - to label %14 unwind label %16 - -14: ; preds = %1 - %15 = load i64, i64* %13, align 8 - ret i64 %15 - -16: ; preds = %1 - %17 = landingpad { i8*, i32 } - catch i8* null - %18 = extractvalue { i8*, i32 } %17, 0 - call void @__clang_call_terminate(i8* %18) #13 - unreachable -} - -; 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) #3 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: 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) #0 comdat align 2 { - %4 = alloca %"class.std::deque"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8, align 1 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i64, align 8 - %11 = alloca i32**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load i32**, i32*** %24, align 8 - %26 = ptrtoint i32** %19 to i64 - %27 = ptrtoint i32** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load i32**, i32*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds i32*, i32** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds i32*, i32** %56, i64 %63 - store i32** %64, i32*** %9, align 8 - %65 = load i32**, i32*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load i32**, i32*** %70, align 8 - %72 = icmp ult i32** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load i32**, i32*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load i32**, i32*** %84, align 8 - %86 = getelementptr inbounds i32*, i32** %85, i64 1 - %87 = load i32**, i32*** %9, align 8 - %88 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %79, i32** noundef %86, i32** noundef %87) - br label %107 - -89: ; preds = %62 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load i32**, i32*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load i32**, i32*** %100, align 8 - %102 = getelementptr inbounds i32*, i32** %101, i64 1 - %103 = load i32**, i32*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds i32*, i32** %103, i64 %104 - %106 = call noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %95, i32** noundef %102, i32** noundef %105) - br label %107 - -107: ; preds = %89, %73 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call 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 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 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds i32*, i32** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds i32*, i32** %130, i64 %137 - store i32** %138, i32*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load i32**, i32*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load i32**, i32*** %149, align 8 - %151 = getelementptr inbounds i32*, i32** %150, i64 1 - %152 = load i32**, i32*** %9, align 8 - %153 = call 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 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load i32**, i32*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, i32** noundef %159, i64 noundef %164) #12 - %165 = load i32**, i32*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store i32** %165, i32*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load i32**, i32*** %9, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, i32** noundef %180) #12 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load i32**, i32*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds i32*, i32** %185, i64 %186 - %188 = getelementptr inbounds i32*, i32** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, i32** noundef %188) #12 - ret void -} - -; 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %9) - %11 = load i32**, i32*** %6, align 8 - %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: 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %9) - %11 = load i32**, i32*** %6, align 8 - %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: 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #12 - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %9) #12 - %11 = load i32**, i32*** %6, align 8 - %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #12 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %0) #3 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: 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) #3 comdat { - %3 = alloca i32***, align 8 - %4 = alloca i32**, align 8 - store i32*** %0, i32**** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - ret i32** %5 -} - -; Function Attrs: 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %0) #3 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: 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #0 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = bitcast i32** %17 to i8* - %19 = load i32**, i32*** %4, align 8 - %20 = bitcast i32** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %30 - -23: ; preds = %3 - %24 = load i64, i64* %7, align 8 - %25 = icmp eq i64 %24, 1 - br i1 %25, label %26, label %29 - -26: ; preds = %23 - %27 = load i32**, i32*** %6, align 8 - %28 = load i32**, i32*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %27, i32** noundef %28) - br label %29 - -29: ; preds = %26, %23 - br label %30 - -30: ; preds = %29, %16 - %31 = load i32**, i32*** %6, align 8 - %32 = load i64, i64* %7, align 8 - %33 = getelementptr inbounds i32*, i32** %31, i64 %32 - ret i32** %33 -} - -; Function Attrs: argmemonly nofree nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %0, i32** noundef %1) #3 comdat align 2 { - %3 = alloca i32**, align 8 - %4 = alloca i32**, align 8 - store i32** %0, i32*** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32**, i32*** %3, align 8 - store i32* %6, i32** %7, align 8 - ret void -} - -; 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #12 - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %9) #12 - %11 = load i32**, i32*** %6, align 8 - %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #12 - %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: 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call 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: 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) #0 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #3 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32*, i32** %17, i64 %19 - %21 = bitcast i32** %20 to i8* - %22 = load i32**, i32*** %4, align 8 - %23 = bitcast i32** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %34 - -26: ; preds = %3 - %27 = load i64, i64* %7, align 8 - %28 = icmp eq i64 %27, 1 - br i1 %28, label %29, label %33 - -29: ; preds = %26 - %30 = load i32**, i32*** %6, align 8 - %31 = getelementptr inbounds i32*, i32** %30, i64 -1 - %32 = load i32**, i32*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %31, i32** noundef %32) - br label %33 - -33: ; preds = %29, %26 - br label %34 - -34: ; preds = %33, %16 - %35 = load i32**, i32*** %6, align 8 - %36 = load i64, i64* %7, align 8 - %37 = sub i64 0, %36 - %38 = getelementptr inbounds i32*, i32** %35, i64 %37 - ret i32** %38 -} - -; 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) #3 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call 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) #12 - ret i1 %12 -} - -; 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) #3 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load i32*, i32** %6, align 8 - %8 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - %11 = icmp eq i32* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #3 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"* noundef nonnull align 8 dereferenceable(80) %4) #12 - %5 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3) #12 - ret i32* %5 -} - -; 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) #3 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 0 - %13 = load i32*, i32** %12, align 8 - %14 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 2 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 2 - %19 = load i32*, i32** %18, align 8 - %20 = getelementptr inbounds i32, i32* %19, i64 -1 - %21 = icmp ne i32* %13, %20 - br i1 %21, label %22, label %43 - -22: ; preds = %1 - %23 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %24 = 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) %23) #12 - %25 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %26 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %25, i32 0, i32 0 - %27 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %26 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %28 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %27, i32 0, i32 2 - %29 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %28, i32 0, i32 0 - %30 = load i32*, i32** %29, align 8 - store %"class.std::allocator"* %24, %"class.std::allocator"** %4, align 8 - store i32* %30, i32** %5, align 8 - %31 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %32 = bitcast %"class.std::allocator"* %31 to %"class.std::__new_allocator"* - %33 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator"* %32, %"class.std::__new_allocator"** %2, align 8 - store i32* %33, i32** %3, align 8 - %34 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %35 = load i32*, i32** %3, align 8 - %36 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %37 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %36, i32 0, i32 0 - %38 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %37 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %38, i32 0, i32 2 - %40 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %39, i32 0, i32 0 - %41 = load i32*, i32** %40, align 8 - %42 = getelementptr inbounds i32, i32* %41, i32 1 - store i32* %42, i32** %40, align 8 - br label %45 - -43: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) - to label %44 unwind label %46 - -44: ; preds = %43 - br label %45 - -45: ; preds = %44, %22 - ret void - -46: ; preds = %43 - %47 = landingpad { i8*, i32 } - catch i8* null - %48 = extractvalue { i8*, i32 } %47, 0 - call void @__clang_call_terminate(i8* %48) #13 - unreachable -} - -; 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) #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %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) #12 - %10 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %11 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %10, i32 0, i32 0 - %12 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %11 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %12, i32 0, i32 2 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %13, i32 0, i32 0 - %15 = load i32*, i32** %14, align 8 - store %"class.std::allocator"* %9, %"class.std::allocator"** %4, align 8 - store i32* %15, i32** %5, align 8 - %16 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %17 = bitcast %"class.std::allocator"* %16 to %"class.std::__new_allocator"* - %18 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator"* %17, %"class.std::__new_allocator"** %2, align 8 - store i32* %18, i32** %3, align 8 - %19 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %20 = load i32*, i32** %3, align 8 - %21 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %22 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %23 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %23 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %24, i32 0, i32 2 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %25, i32 0, i32 1 - %27 = load i32*, i32** %26, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %21, i32* noundef %27) #12 - %28 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %29 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %28, 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 2 - %32 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %33 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %32, i32 0, i32 0 - %34 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %33 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %35 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %34, i32 0, i32 2 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %35, i32 0, i32 3 - %37 = load i32**, i32*** %36, align 8 - %38 = getelementptr inbounds i32*, i32** %37, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %31, i32** noundef %38) #12 - %39 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %40 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %39, i32 0, i32 0 - %41 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %40 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %42 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %41, i32 0, i32 2 - %43 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %42, i32 0, i32 1 - %44 = load i32*, i32** %43, align 8 - %45 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %46 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %45, i32 0, i32 0 - %47 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %46 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %48 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %47, i32 0, i32 2 - %49 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %48, i32 0, i32 0 - store i32* %44, i32** %49, align 8 - ret void -} - -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 = { argmemonly nofree nounwind willreturn writeonly } -attributes #2 = { 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 #3 = { 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 #4 = { 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 = { "frame-pointer"="all" "no-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 = { noinline noreturn nounwind } -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 = { 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 #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 = { nounwind } -attributes #13 = { noreturn nounwind } -attributes #14 = { builtin nounwind } -attributes #15 = { noreturn } -attributes #16 = { builtin allocsize(0) } - -!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"} -!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-llvm14/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 deleted file mode 100644 index 149712e72..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll +++ /dev/null @@ -1,238 +0,0 @@ -; ModuleID = 'PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp' -source_filename = "PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@__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 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 - -; 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 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp slt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z8minJumpsPii(i32* noundef %0, i32 noundef %1) #1 { - %3 = alloca i32, align 4 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - %9 = load i32, i32* %5, align 4 - %10 = sext i32 %9 to i64 - %11 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %10, i64 4) - %12 = extractvalue { i64, i1 } %11, 1 - %13 = extractvalue { i64, i1 } %11, 0 - %14 = select i1 %12, i64 -1, i64 %13 - %15 = call noalias noundef nonnull i8* @_Znam(i64 noundef %14) #7 - %16 = bitcast i8* %15 to i32* - store i32* %16, i32** %6, align 8 - %17 = load i32, i32* %5, align 4 - %18 = icmp eq i32 %17, 0 - br i1 %18, label %24, label %19 - -19: ; preds = %2 - %20 = load i32*, i32** %4, align 8 - %21 = getelementptr inbounds i32, i32* %20, i64 0 - %22 = load i32, i32* %21, align 4 - %23 = icmp eq i32 %22, 0 - br i1 %23, label %24, label %25 - -24: ; preds = %19, %2 - store i32 2147483647, i32* %3, align 4 - br label %90 - -25: ; preds = %19 - %26 = load i32*, i32** %6, align 8 - %27 = getelementptr inbounds i32, i32* %26, i64 0 - store i32 0, i32* %27, align 4 - store i32 1, i32* %7, align 4 - br label %28 - -28: ; preds = %80, %25 - %29 = load i32, i32* %7, align 4 - %30 = load i32, i32* %5, align 4 - %31 = icmp slt i32 %29, %30 - br i1 %31, label %32, label %83 - -32: ; preds = %28 - %33 = load i32*, i32** %6, align 8 - %34 = load i32, i32* %7, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i32, i32* %33, i64 %35 - store i32 2147483647, i32* %36, align 4 - store i32 0, i32* %8, align 4 - br label %37 - -37: ; preds = %76, %32 - %38 = load i32, i32* %8, align 4 - %39 = load i32, i32* %7, align 4 - %40 = icmp slt i32 %38, %39 - br i1 %40, label %41, label %79 - -41: ; preds = %37 - %42 = load i32, i32* %7, align 4 - %43 = load i32, i32* %8, align 4 - %44 = load i32*, i32** %4, align 8 - %45 = load i32, i32* %8, align 4 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds i32, i32* %44, i64 %46 - %48 = load i32, i32* %47, align 4 - %49 = add nsw i32 %43, %48 - %50 = icmp sle i32 %42, %49 - br i1 %50, label %51, label %75 - -51: ; preds = %41 - %52 = load i32*, i32** %6, align 8 - %53 = load i32, i32* %8, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %52, i64 %54 - %56 = load i32, i32* %55, align 4 - %57 = icmp ne i32 %56, 2147483647 - br i1 %57, label %58, label %75 - -58: ; preds = %51 - %59 = load i32*, i32** %6, align 8 - %60 = load i32, i32* %7, align 4 - %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds i32, i32* %59, i64 %61 - %63 = load i32, i32* %62, align 4 - %64 = load i32*, i32** %6, align 8 - %65 = load i32, i32* %8, align 4 - %66 = sext i32 %65 to i64 - %67 = getelementptr inbounds i32, i32* %64, i64 %66 - %68 = load i32, i32* %67, align 4 - %69 = add nsw i32 %68, 1 - %70 = call 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 - %74 = getelementptr inbounds i32, i32* %71, i64 %73 - store i32 %70, i32* %74, align 4 - br label %79 - -75: ; preds = %51, %41 - br label %76 - -76: ; preds = %75 - %77 = load i32, i32* %8, align 4 - %78 = add nsw i32 %77, 1 - store i32 %78, i32* %8, align 4 - br label %37, !llvm.loop !6 - -79: ; preds = %58, %37 - br label %80 - -80: ; preds = %79 - %81 = load i32, i32* %7, align 4 - %82 = add nsw i32 %81, 1 - store i32 %82, i32* %7, align 4 - br label %28, !llvm.loop !8 - -83: ; preds = %28 - %84 = load i32*, i32** %6, align 8 - %85 = load i32, i32* %5, align 4 - %86 = sub nsw i32 %85, 1 - %87 = sext i32 %86 to i64 - %88 = getelementptr inbounds i32, i32* %84, i64 %87 - %89 = load i32, i32* %88, align 4 - store i32 %89, i32* %3, align 4 - br label %90 - -90: ; preds = %83, %24 - %91 = load i32, i32* %3, align 4 - ret i32 %91 -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #2 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #3 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #4 { - %1 = alloca i32, align 4 - %2 = alloca [6 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [6 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([6 x i32]* @__const.main.arr to i8*), i64 24, i1 false) - store i32 6, i32* %3, align 4 - %5 = call noundef 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #5 - -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) #6 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #6 - -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 readnone speculatable willreturn } -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 = { argmemonly nofree nounwind willreturn } -attributes #6 = { "frame-pointer"="all" "no-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 = { builtin allocsize(0) } - -!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"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-positive-points-to-reach-destination.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-positive-points-to-reach-destination.ll deleted file mode 100644 index a37b30b5c..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-positive-points-to-reach-destination.ll +++ /dev/null @@ -1,383 +0,0 @@ -; ModuleID = 'PE-benchmarks/minimum-positive-points-to-reach-destination.cpp' -source_filename = "PE-benchmarks/minimum-positive-points-to-reach-destination.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt3maxIiERKT_S2_S2_ = comdat any - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -@__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 global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [34 x i8] c"Minimum Initial Points Required: \00", align 1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z16minInitialPointsPA3_i([3 x i32]* noundef %0) #0 { - %2 = alloca [3 x i32]*, align 8 - %3 = alloca [3 x [3 x i32]], align 16 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - store [3 x i32]* %0, [3 x i32]** %2, align 8 - store i32 3, i32* %4, align 4 - store i32 3, i32* %5, align 4 - %17 = load [3 x i32]*, [3 x i32]** %2, align 8 - %18 = load i32, i32* %4, align 4 - %19 = sub nsw i32 %18, 1 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [3 x i32], [3 x i32]* %17, i64 %20 - %22 = load i32, i32* %5, align 4 - %23 = sub nsw i32 %22, 1 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [3 x i32], [3 x i32]* %21, i64 0, i64 %24 - %26 = load i32, i32* %25, align 4 - %27 = icmp sgt i32 %26, 0 - br i1 %27, label %28, label %29 - -28: ; preds = %1 - br label %42 - -29: ; preds = %1 - %30 = load [3 x i32]*, [3 x i32]** %2, align 8 - %31 = load i32, i32* %4, align 4 - %32 = sub nsw i32 %31, 1 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds [3 x i32], [3 x i32]* %30, i64 %33 - %35 = load i32, i32* %5, align 4 - %36 = sub nsw i32 %35, 1 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds [3 x i32], [3 x i32]* %34, i64 0, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = call i32 @abs(i32 noundef %39) #6 - %41 = add nsw i32 %40, 1 - br label %42 - -42: ; preds = %29, %28 - %43 = phi i32 [ 1, %28 ], [ %41, %29 ] - %44 = load i32, i32* %4, align 4 - %45 = sub nsw i32 %44, 1 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %46 - %48 = load i32, i32* %5, align 4 - %49 = sub nsw i32 %48, 1 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds [3 x i32], [3 x i32]* %47, i64 0, i64 %50 - store i32 %43, i32* %51, align 4 - %52 = load i32, i32* %4, align 4 - %53 = sub nsw i32 %52, 2 - store i32 %53, i32* %6, align 4 - br label %54 - -54: ; preds = %86, %42 - %55 = load i32, i32* %6, align 4 - %56 = icmp sge i32 %55, 0 - br i1 %56, label %57, label %89 - -57: ; preds = %54 - %58 = load i32, i32* %6, align 4 - %59 = add nsw i32 %58, 1 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %60 - %62 = load i32, i32* %5, align 4 - %63 = sub nsw i32 %62, 1 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds [3 x i32], [3 x i32]* %61, i64 0, i64 %64 - %66 = load i32, i32* %65, align 4 - %67 = load [3 x i32]*, [3 x i32]** %2, align 8 - %68 = load i32, i32* %6, align 4 - %69 = sext i32 %68 to i64 - %70 = getelementptr inbounds [3 x i32], [3 x i32]* %67, i64 %69 - %71 = load i32, i32* %5, align 4 - %72 = sub nsw i32 %71, 1 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds [3 x i32], [3 x i32]* %70, i64 0, i64 %73 - %75 = load i32, i32* %74, align 4 - %76 = sub nsw i32 %66, %75 - store i32 %76, i32* %7, align 4 - store i32 1, i32* %8, align 4 - %77 = call 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 - %81 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %80 - %82 = load i32, i32* %5, align 4 - %83 = sub nsw i32 %82, 1 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds [3 x i32], [3 x i32]* %81, i64 0, i64 %84 - store i32 %78, i32* %85, align 4 - br label %86 - -86: ; preds = %57 - %87 = load i32, i32* %6, align 4 - %88 = add nsw i32 %87, -1 - store i32 %88, i32* %6, align 4 - br label %54, !llvm.loop !6 - -89: ; preds = %54 - %90 = load i32, i32* %5, align 4 - %91 = sub nsw i32 %90, 2 - store i32 %91, i32* %9, align 4 - br label %92 - -92: ; preds = %124, %89 - %93 = load i32, i32* %9, align 4 - %94 = icmp sge i32 %93, 0 - br i1 %94, label %95, label %127 - -95: ; preds = %92 - %96 = load i32, i32* %4, align 4 - %97 = sub nsw i32 %96, 1 - %98 = sext i32 %97 to i64 - %99 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %98 - %100 = load i32, i32* %9, align 4 - %101 = add nsw i32 %100, 1 - %102 = sext i32 %101 to i64 - %103 = getelementptr inbounds [3 x i32], [3 x i32]* %99, i64 0, i64 %102 - %104 = load i32, i32* %103, align 4 - %105 = load [3 x i32]*, [3 x i32]** %2, align 8 - %106 = load i32, i32* %4, align 4 - %107 = sub nsw i32 %106, 1 - %108 = sext i32 %107 to i64 - %109 = getelementptr inbounds [3 x i32], [3 x i32]* %105, i64 %108 - %110 = load i32, i32* %9, align 4 - %111 = sext i32 %110 to i64 - %112 = getelementptr inbounds [3 x i32], [3 x i32]* %109, i64 0, i64 %111 - %113 = load i32, i32* %112, align 4 - %114 = sub nsw i32 %104, %113 - store i32 %114, i32* %10, align 4 - store i32 1, i32* %11, align 4 - %115 = call 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 - %119 = sext i32 %118 to i64 - %120 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %119 - %121 = load i32, i32* %9, align 4 - %122 = sext i32 %121 to i64 - %123 = getelementptr inbounds [3 x i32], [3 x i32]* %120, i64 0, i64 %122 - store i32 %116, i32* %123, align 4 - br label %124 - -124: ; preds = %95 - %125 = load i32, i32* %9, align 4 - %126 = add nsw i32 %125, -1 - store i32 %126, i32* %9, align 4 - br label %92, !llvm.loop !8 - -127: ; preds = %92 - %128 = load i32, i32* %4, align 4 - %129 = sub nsw i32 %128, 2 - store i32 %129, i32* %12, align 4 - br label %130 - -130: ; preds = %178, %127 - %131 = load i32, i32* %12, align 4 - %132 = icmp sge i32 %131, 0 - br i1 %132, label %133, label %181 - -133: ; preds = %130 - %134 = load i32, i32* %5, align 4 - %135 = sub nsw i32 %134, 2 - store i32 %135, i32* %13, align 4 - br label %136 - -136: ; preds = %174, %133 - %137 = load i32, i32* %13, align 4 - %138 = icmp sge i32 %137, 0 - br i1 %138, label %139, label %177 - -139: ; preds = %136 - %140 = load i32, i32* %12, align 4 - %141 = add nsw i32 %140, 1 - %142 = sext i32 %141 to i64 - %143 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %142 - %144 = load i32, i32* %13, align 4 - %145 = sext i32 %144 to i64 - %146 = getelementptr inbounds [3 x i32], [3 x i32]* %143, i64 0, i64 %145 - %147 = load i32, i32* %12, align 4 - %148 = sext i32 %147 to i64 - %149 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %148 - %150 = load i32, i32* %13, align 4 - %151 = add nsw i32 %150, 1 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds [3 x i32], [3 x i32]* %149, i64 0, i64 %152 - %154 = call 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 - %157 = load [3 x i32]*, [3 x i32]** %2, align 8 - %158 = load i32, i32* %12, align 4 - %159 = sext i32 %158 to i64 - %160 = getelementptr inbounds [3 x i32], [3 x i32]* %157, i64 %159 - %161 = load i32, i32* %13, align 4 - %162 = sext i32 %161 to i64 - %163 = getelementptr inbounds [3 x i32], [3 x i32]* %160, i64 0, i64 %162 - %164 = load i32, i32* %163, align 4 - %165 = sub nsw i32 %156, %164 - store i32 %165, i32* %15, align 4 - store i32 1, i32* %16, align 4 - %166 = call 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 - %170 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %169 - %171 = load i32, i32* %13, align 4 - %172 = sext i32 %171 to i64 - %173 = getelementptr inbounds [3 x i32], [3 x i32]* %170, i64 0, i64 %172 - store i32 %167, i32* %173, align 4 - br label %174 - -174: ; preds = %139 - %175 = load i32, i32* %13, align 4 - %176 = add nsw i32 %175, -1 - store i32 %176, i32* %13, align 4 - br label %136, !llvm.loop !9 - -177: ; preds = %136 - br label %178 - -178: ; preds = %177 - %179 = load i32, i32* %12, align 4 - %180 = add nsw i32 %179, -1 - store i32 %180, i32* %12, align 4 - br label %130, !llvm.loop !10 - -181: ; preds = %130 - %182 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 0 - %183 = getelementptr inbounds [3 x i32], [3 x i32]* %182, i64 0, i64 0 - %184 = load i32, i32* %183, align 16 - ret i32 %184 -} - -; Function Attrs: nounwind readnone willreturn -declare i32 @abs(i32 noundef) #1 - -; 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) #2 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: 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) #2 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %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 noundef 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -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 = { 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 #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 = { 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 readnone willreturn } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/mobile-numeric-keypad-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/mobile-numeric-keypad-problem.ll deleted file mode 100644 index 40821c82d..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/mobile-numeric-keypad-problem.ll +++ /dev/null @@ -1,421 +0,0 @@ -; ModuleID = 'PE-benchmarks/mobile-numeric-keypad-problem.cpp' -source_filename = "PE-benchmarks/mobile-numeric-keypad-problem.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const._Z8getCountPA3_ci.row = private unnamed_addr constant [5 x i32] [i32 0, i32 0, i32 -1, i32 0, i32 1], align 16 -@__const._Z8getCountPA3_ci.col = private unnamed_addr constant [5 x i32] [i32 0, i32 -1, i32 0, i32 1, i32 0], align 16 -@__const.main.keypad = private unnamed_addr constant [4 x [3 x i8]] [[3 x i8] c"123", [3 x i8] c"456", [3 x i8] c"789", [3 x i8] c"*0#"], align 1 -@.str = private unnamed_addr constant [36 x i8] c"Count for numbers of length %d: %dn\00", align 1 - -; Function Attrs: 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 - %6 = alloca [5 x i32], align 16 - %7 = alloca [5 x i32], align 16 - %8 = alloca i8*, align 8 - %9 = alloca i64, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - %18 = alloca i32, align 4 - store [3 x i8]* %0, [3 x i8]** %4, align 8 - store i32 %1, i32* %5, align 4 - %19 = load [3 x i8]*, [3 x i8]** %4, align 8 - %20 = icmp eq [3 x i8]* %19, null - br i1 %20, label %24, label %21 - -21: ; preds = %2 - %22 = load i32, i32* %5, align 4 - %23 = icmp sle i32 %22, 0 - br i1 %23, label %24, label %25 - -24: ; preds = %21, %2 - store i32 0, i32* %3, align 4 - br label %224 - -25: ; preds = %21 - %26 = load i32, i32* %5, align 4 - %27 = icmp eq i32 %26, 1 - br i1 %27, label %28, label %29 - -28: ; preds = %25 - store i32 10, i32* %3, align 4 - br label %224 - -29: ; preds = %25 - %30 = bitcast [5 x i32]* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %30, i8* align 16 bitcast ([5 x i32]* @__const._Z8getCountPA3_ci.row to i8*), i64 20, i1 false) - %31 = bitcast [5 x i32]* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %31, i8* align 16 bitcast ([5 x i32]* @__const._Z8getCountPA3_ci.col to i8*), i64 20, i1 false) - %32 = load i32, i32* %5, align 4 - %33 = add nsw i32 %32, 1 - %34 = zext i32 %33 to i64 - %35 = call i8* @llvm.stacksave() - store i8* %35, i8** %8, align 8 - %36 = mul nuw i64 10, %34 - %37 = alloca i32, i64 %36, align 16 - store i64 %34, i64* %9, align 8 - store i32 0, i32* %10, align 4 - store i32 0, i32* %11, align 4 - store i32 0, i32* %12, align 4 - store i32 0, i32* %13, align 4 - store i32 0, i32* %14, align 4 - store i32 0, i32* %15, align 4 - store i32 0, i32* %16, align 4 - store i32 0, i32* %17, align 4 - store i32 0, i32* %18, align 4 - store i32 0, i32* %10, align 4 - br label %38 - -38: ; preds = %52, %29 - %39 = load i32, i32* %10, align 4 - %40 = icmp sle i32 %39, 9 - br i1 %40, label %41, label %55 - -41: ; preds = %38 - %42 = load i32, i32* %10, align 4 - %43 = sext i32 %42 to i64 - %44 = mul nsw i64 %43, %34 - %45 = getelementptr inbounds i32, i32* %37, i64 %44 - %46 = getelementptr inbounds i32, i32* %45, i64 0 - store i32 0, i32* %46, align 4 - %47 = load i32, i32* %10, align 4 - %48 = sext i32 %47 to i64 - %49 = mul nsw i64 %48, %34 - %50 = getelementptr inbounds i32, i32* %37, i64 %49 - %51 = getelementptr inbounds i32, i32* %50, i64 1 - store i32 1, i32* %51, align 4 - br label %52 - -52: ; preds = %41 - %53 = load i32, i32* %10, align 4 - %54 = add nsw i32 %53, 1 - store i32 %54, i32* %10, align 4 - br label %38, !llvm.loop !6 - -55: ; preds = %38 - store i32 2, i32* %12, align 4 - br label %56 - -56: ; preds = %200, %55 - %57 = load i32, i32* %12, align 4 - %58 = load i32, i32* %5, align 4 - %59 = icmp sle i32 %57, %58 - br i1 %59, label %60, label %203 - -60: ; preds = %56 - store i32 0, i32* %10, align 4 - br label %61 - -61: ; preds = %196, %60 - %62 = load i32, i32* %10, align 4 - %63 = icmp slt i32 %62, 4 - br i1 %63, label %64, label %199 - -64: ; preds = %61 - store i32 0, i32* %11, align 4 - br label %65 - -65: ; preds = %192, %64 - %66 = load i32, i32* %11, align 4 - %67 = icmp slt i32 %66, 3 - br i1 %67, label %68, label %195 - -68: ; preds = %65 - %69 = load [3 x i8]*, [3 x i8]** %4, align 8 - %70 = load i32, i32* %10, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds [3 x i8], [3 x i8]* %69, i64 %71 - %73 = load i32, i32* %11, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds [3 x i8], [3 x i8]* %72, i64 0, i64 %74 - %76 = load i8, i8* %75, align 1 - %77 = sext i8 %76 to i32 - %78 = icmp ne i32 %77, 42 - br i1 %78, label %79, label %191 - -79: ; preds = %68 - %80 = load [3 x i8]*, [3 x i8]** %4, align 8 - %81 = load i32, i32* %10, align 4 - %82 = sext i32 %81 to i64 - %83 = getelementptr inbounds [3 x i8], [3 x i8]* %80, i64 %82 - %84 = load i32, i32* %11, align 4 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds [3 x i8], [3 x i8]* %83, i64 0, i64 %85 - %87 = load i8, i8* %86, align 1 - %88 = sext i8 %87 to i32 - %89 = icmp ne i32 %88, 35 - br i1 %89, label %90, label %191 - -90: ; preds = %79 - %91 = load [3 x i8]*, [3 x i8]** %4, align 8 - %92 = load i32, i32* %10, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds [3 x i8], [3 x i8]* %91, i64 %93 - %95 = load i32, i32* %11, align 4 - %96 = sext i32 %95 to i64 - %97 = getelementptr inbounds [3 x i8], [3 x i8]* %94, i64 0, i64 %96 - %98 = load i8, i8* %97, align 1 - %99 = sext i8 %98 to i32 - %100 = sub nsw i32 %99, 48 - store i32 %100, i32* %16, align 4 - %101 = load i32, i32* %16, align 4 - %102 = sext i32 %101 to i64 - %103 = mul nsw i64 %102, %34 - %104 = getelementptr inbounds i32, i32* %37, i64 %103 - %105 = load i32, i32* %12, align 4 - %106 = sext i32 %105 to i64 - %107 = getelementptr inbounds i32, i32* %104, i64 %106 - store i32 0, i32* %107, align 4 - store i32 0, i32* %13, align 4 - br label %108 - -108: ; preds = %187, %90 - %109 = load i32, i32* %13, align 4 - %110 = icmp slt i32 %109, 5 - br i1 %110, label %111, label %190 - -111: ; preds = %108 - %112 = load i32, i32* %10, align 4 - %113 = load i32, i32* %13, align 4 - %114 = sext i32 %113 to i64 - %115 = getelementptr inbounds [5 x i32], [5 x i32]* %6, i64 0, i64 %114 - %116 = load i32, i32* %115, align 4 - %117 = add nsw i32 %112, %116 - store i32 %117, i32* %14, align 4 - %118 = load i32, i32* %11, align 4 - %119 = load i32, i32* %13, align 4 - %120 = sext i32 %119 to i64 - %121 = getelementptr inbounds [5 x i32], [5 x i32]* %7, i64 0, i64 %120 - %122 = load i32, i32* %121, align 4 - %123 = add nsw i32 %118, %122 - store i32 %123, i32* %15, align 4 - %124 = load i32, i32* %14, align 4 - %125 = icmp sge i32 %124, 0 - br i1 %125, label %126, label %186 - -126: ; preds = %111 - %127 = load i32, i32* %14, align 4 - %128 = icmp sle i32 %127, 3 - br i1 %128, label %129, label %186 - -129: ; preds = %126 - %130 = load i32, i32* %15, align 4 - %131 = icmp sge i32 %130, 0 - br i1 %131, label %132, label %186 - -132: ; preds = %129 - %133 = load i32, i32* %15, align 4 - %134 = icmp sle i32 %133, 2 - br i1 %134, label %135, label %186 - -135: ; preds = %132 - %136 = load [3 x i8]*, [3 x i8]** %4, align 8 - %137 = load i32, i32* %14, align 4 - %138 = sext i32 %137 to i64 - %139 = getelementptr inbounds [3 x i8], [3 x i8]* %136, i64 %138 - %140 = load i32, i32* %15, align 4 - %141 = sext i32 %140 to i64 - %142 = getelementptr inbounds [3 x i8], [3 x i8]* %139, i64 0, i64 %141 - %143 = load i8, i8* %142, align 1 - %144 = sext i8 %143 to i32 - %145 = icmp ne i32 %144, 42 - br i1 %145, label %146, label %186 - -146: ; preds = %135 - %147 = load [3 x i8]*, [3 x i8]** %4, align 8 - %148 = load i32, i32* %14, align 4 - %149 = sext i32 %148 to i64 - %150 = getelementptr inbounds [3 x i8], [3 x i8]* %147, i64 %149 - %151 = load i32, i32* %15, align 4 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds [3 x i8], [3 x i8]* %150, i64 0, i64 %152 - %154 = load i8, i8* %153, align 1 - %155 = sext i8 %154 to i32 - %156 = icmp ne i32 %155, 35 - br i1 %156, label %157, label %186 - -157: ; preds = %146 - %158 = load [3 x i8]*, [3 x i8]** %4, align 8 - %159 = load i32, i32* %14, align 4 - %160 = sext i32 %159 to i64 - %161 = getelementptr inbounds [3 x i8], [3 x i8]* %158, i64 %160 - %162 = load i32, i32* %15, align 4 - %163 = sext i32 %162 to i64 - %164 = getelementptr inbounds [3 x i8], [3 x i8]* %161, i64 0, i64 %163 - %165 = load i8, i8* %164, align 1 - %166 = sext i8 %165 to i32 - %167 = sub nsw i32 %166, 48 - store i32 %167, i32* %17, align 4 - %168 = load i32, i32* %17, align 4 - %169 = sext i32 %168 to i64 - %170 = mul nsw i64 %169, %34 - %171 = getelementptr inbounds i32, i32* %37, i64 %170 - %172 = load i32, i32* %12, align 4 - %173 = sub nsw i32 %172, 1 - %174 = sext i32 %173 to i64 - %175 = getelementptr inbounds i32, i32* %171, i64 %174 - %176 = load i32, i32* %175, align 4 - %177 = load i32, i32* %16, align 4 - %178 = sext i32 %177 to i64 - %179 = mul nsw i64 %178, %34 - %180 = getelementptr inbounds i32, i32* %37, i64 %179 - %181 = load i32, i32* %12, align 4 - %182 = sext i32 %181 to i64 - %183 = getelementptr inbounds i32, i32* %180, i64 %182 - %184 = load i32, i32* %183, align 4 - %185 = add nsw i32 %184, %176 - store i32 %185, i32* %183, align 4 - br label %186 - -186: ; preds = %157, %146, %135, %132, %129, %126, %111 - br label %187 - -187: ; preds = %186 - %188 = load i32, i32* %13, align 4 - %189 = add nsw i32 %188, 1 - store i32 %189, i32* %13, align 4 - br label %108, !llvm.loop !8 - -190: ; preds = %108 - br label %191 - -191: ; preds = %190, %79, %68 - br label %192 - -192: ; preds = %191 - %193 = load i32, i32* %11, align 4 - %194 = add nsw i32 %193, 1 - store i32 %194, i32* %11, align 4 - br label %65, !llvm.loop !9 - -195: ; preds = %65 - br label %196 - -196: ; preds = %195 - %197 = load i32, i32* %10, align 4 - %198 = add nsw i32 %197, 1 - store i32 %198, i32* %10, align 4 - br label %61, !llvm.loop !10 - -199: ; preds = %61 - br label %200 - -200: ; preds = %199 - %201 = load i32, i32* %12, align 4 - %202 = add nsw i32 %201, 1 - store i32 %202, i32* %12, align 4 - br label %56, !llvm.loop !11 - -203: ; preds = %56 - store i32 0, i32* %18, align 4 - store i32 0, i32* %10, align 4 - br label %204 - -204: ; preds = %218, %203 - %205 = load i32, i32* %10, align 4 - %206 = icmp sle i32 %205, 9 - br i1 %206, label %207, label %221 - -207: ; preds = %204 - %208 = load i32, i32* %10, align 4 - %209 = sext i32 %208 to i64 - %210 = mul nsw i64 %209, %34 - %211 = getelementptr inbounds i32, i32* %37, i64 %210 - %212 = load i32, i32* %5, align 4 - %213 = sext i32 %212 to i64 - %214 = getelementptr inbounds i32, i32* %211, i64 %213 - %215 = load i32, i32* %214, align 4 - %216 = load i32, i32* %18, align 4 - %217 = add nsw i32 %216, %215 - store i32 %217, i32* %18, align 4 - br label %218 - -218: ; preds = %207 - %219 = load i32, i32* %10, align 4 - %220 = add nsw i32 %219, 1 - store i32 %220, i32* %10, align 4 - br label %204, !llvm.loop !12 - -221: ; preds = %204 - %222 = load i32, i32* %18, align 4 - store i32 %222, i32* %3, align 4 - %223 = load i8*, i8** %8, align 8 - call void @llvm.stackrestore(i8* %223) - br label %224 - -224: ; preds = %221, %28, %24 - %225 = load i32, i32* %3, align 4 - ret i32 %225 -} - -; Function Attrs: argmemonly nofree nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #2 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #2 - -; Function Attrs: 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 - %6 = alloca [4 x [3 x i8]], align 1 - store i32 0, i32* %3, align 4 - store i32 %0, i32* %4, align 4 - store i8** %1, i8*** %5, align 8 - %7 = bitcast [4 x [3 x i8]]* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %7, i8* align 1 getelementptr inbounds ([4 x [3 x i8]], [4 x [3 x i8]]* @__const.main.keypad, i32 0, i32 0, i32 0), i64 12, i1 false) - %8 = getelementptr inbounds [4 x [3 x i8]], [4 x [3 x i8]]* %6, i64 0, i64 0 - %9 = call 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 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 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 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 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 i32 @printf(i8* noundef, ...) #4 - -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 = { 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, !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"} -!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-llvm14/mobile-numeric-keypad-problem_space_optm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/mobile-numeric-keypad-problem_space_optm.ll deleted file mode 100644 index 3d37add56..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/mobile-numeric-keypad-problem_space_optm.ll +++ /dev/null @@ -1,459 +0,0 @@ -; ModuleID = 'PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp' -source_filename = "PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const.main.keypad = private unnamed_addr constant [4 x [3 x i8]] [[3 x i8] c"123", [3 x i8] c"456", [3 x i8] c"789", [3 x i8] c"*0#"], align 1 -@.str = private unnamed_addr constant [36 x i8] c"Count for numbers of length %d: %dn\00", align 1 - -; Function Attrs: 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 - %6 = alloca [10 x i32], align 16 - %7 = alloca [10 x i32], align 16 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store [3 x i8]* %0, [3 x i8]** %4, align 8 - store i32 %1, i32* %5, align 4 - %12 = load [3 x i8]*, [3 x i8]** %4, align 8 - %13 = icmp eq [3 x i8]* %12, null - br i1 %13, label %17, label %14 - -14: ; preds = %2 - %15 = load i32, i32* %5, align 4 - %16 = icmp sle i32 %15, 0 - br i1 %16, label %17, label %18 - -17: ; preds = %14, %2 - store i32 0, i32* %3, align 4 - br label %300 - -18: ; preds = %14 - %19 = load i32, i32* %5, align 4 - %20 = icmp eq i32 %19, 1 - br i1 %20, label %21, label %22 - -21: ; preds = %18 - store i32 10, i32* %3, align 4 - br label %300 - -22: ; preds = %18 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - store i32 0, i32* %10, align 4 - store i32 0, i32* %11, align 4 - store i32 0, i32* %8, align 4 - br label %23 - -23: ; preds = %30, %22 - %24 = load i32, i32* %8, align 4 - %25 = icmp sle i32 %24, 9 - br i1 %25, label %26, label %33 - -26: ; preds = %23 - %27 = load i32, i32* %8, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 %28 - store i32 1, i32* %29, align 4 - br label %30 - -30: ; preds = %26 - %31 = load i32, i32* %8, align 4 - %32 = add nsw i32 %31, 1 - store i32 %32, i32* %8, align 4 - br label %23, !llvm.loop !6 - -33: ; preds = %23 - store i32 2, i32* %9, align 4 - br label %34 - -34: ; preds = %262, %33 - %35 = load i32, i32* %9, align 4 - %36 = load i32, i32* %5, align 4 - %37 = icmp sle i32 %35, %36 - br i1 %37, label %38, label %265 - -38: ; preds = %34 - %39 = load i32, i32* %10, align 4 - %40 = sub nsw i32 1, %39 - store i32 %40, i32* %10, align 4 - %41 = load i32, i32* %10, align 4 - %42 = icmp eq i32 %41, 1 - br i1 %42, label %43, label %152 - -43: ; preds = %38 - %44 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 0 - %45 = load i32, i32* %44, align 16 - %46 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 8 - %47 = load i32, i32* %46, align 16 - %48 = add nsw i32 %45, %47 - %49 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 0 - store i32 %48, i32* %49, align 16 - %50 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 1 - %51 = load i32, i32* %50, align 4 - %52 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 2 - %53 = load i32, i32* %52, align 8 - %54 = add nsw i32 %51, %53 - %55 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 4 - %56 = load i32, i32* %55, align 16 - %57 = add nsw i32 %54, %56 - %58 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 1 - store i32 %57, i32* %58, align 4 - %59 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 2 - %60 = load i32, i32* %59, align 8 - %61 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 1 - %62 = load i32, i32* %61, align 4 - %63 = add nsw i32 %60, %62 - %64 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 3 - %65 = load i32, i32* %64, align 4 - %66 = add nsw i32 %63, %65 - %67 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 5 - %68 = load i32, i32* %67, align 4 - %69 = add nsw i32 %66, %68 - %70 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 2 - store i32 %69, i32* %70, align 8 - %71 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 3 - %72 = load i32, i32* %71, align 4 - %73 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 2 - %74 = load i32, i32* %73, align 8 - %75 = add nsw i32 %72, %74 - %76 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 6 - %77 = load i32, i32* %76, align 8 - %78 = add nsw i32 %75, %77 - %79 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 3 - store i32 %78, i32* %79, align 4 - %80 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 4 - %81 = load i32, i32* %80, align 16 - %82 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 1 - %83 = load i32, i32* %82, align 4 - %84 = add nsw i32 %81, %83 - %85 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 5 - %86 = load i32, i32* %85, align 4 - %87 = add nsw i32 %84, %86 - %88 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 7 - %89 = load i32, i32* %88, align 4 - %90 = add nsw i32 %87, %89 - %91 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 4 - store i32 %90, i32* %91, align 16 - %92 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 5 - %93 = load i32, i32* %92, align 4 - %94 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 2 - %95 = load i32, i32* %94, align 8 - %96 = add nsw i32 %93, %95 - %97 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 4 - %98 = load i32, i32* %97, align 16 - %99 = add nsw i32 %96, %98 - %100 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 8 - %101 = load i32, i32* %100, align 16 - %102 = add nsw i32 %99, %101 - %103 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 6 - %104 = load i32, i32* %103, align 8 - %105 = add nsw i32 %102, %104 - %106 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 5 - store i32 %105, i32* %106, align 4 - %107 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 6 - %108 = load i32, i32* %107, align 8 - %109 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 3 - %110 = load i32, i32* %109, align 4 - %111 = add nsw i32 %108, %110 - %112 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 5 - %113 = load i32, i32* %112, align 4 - %114 = add nsw i32 %111, %113 - %115 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 9 - %116 = load i32, i32* %115, align 4 - %117 = add nsw i32 %114, %116 - %118 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 6 - store i32 %117, i32* %118, align 8 - %119 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 7 - %120 = load i32, i32* %119, align 4 - %121 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 4 - %122 = load i32, i32* %121, align 16 - %123 = add nsw i32 %120, %122 - %124 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 8 - %125 = load i32, i32* %124, align 16 - %126 = add nsw i32 %123, %125 - %127 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 7 - store i32 %126, i32* %127, align 4 - %128 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 8 - %129 = load i32, i32* %128, align 16 - %130 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 0 - %131 = load i32, i32* %130, align 16 - %132 = add nsw i32 %129, %131 - %133 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 5 - %134 = load i32, i32* %133, align 4 - %135 = add nsw i32 %132, %134 - %136 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 7 - %137 = load i32, i32* %136, align 4 - %138 = add nsw i32 %135, %137 - %139 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 9 - %140 = load i32, i32* %139, align 4 - %141 = add nsw i32 %138, %140 - %142 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 8 - store i32 %141, i32* %142, align 16 - %143 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 9 - %144 = load i32, i32* %143, align 4 - %145 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 6 - %146 = load i32, i32* %145, align 8 - %147 = add nsw i32 %144, %146 - %148 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 8 - %149 = load i32, i32* %148, align 16 - %150 = add nsw i32 %147, %149 - %151 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 9 - store i32 %150, i32* %151, align 4 - br label %261 - -152: ; preds = %38 - %153 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 0 - %154 = load i32, i32* %153, align 16 - %155 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 8 - %156 = load i32, i32* %155, align 16 - %157 = add nsw i32 %154, %156 - %158 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 0 - store i32 %157, i32* %158, align 16 - %159 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 1 - %160 = load i32, i32* %159, align 4 - %161 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 2 - %162 = load i32, i32* %161, align 8 - %163 = add nsw i32 %160, %162 - %164 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 4 - %165 = load i32, i32* %164, align 16 - %166 = add nsw i32 %163, %165 - %167 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 1 - store i32 %166, i32* %167, align 4 - %168 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 2 - %169 = load i32, i32* %168, align 8 - %170 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 1 - %171 = load i32, i32* %170, align 4 - %172 = add nsw i32 %169, %171 - %173 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 3 - %174 = load i32, i32* %173, align 4 - %175 = add nsw i32 %172, %174 - %176 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 5 - %177 = load i32, i32* %176, align 4 - %178 = add nsw i32 %175, %177 - %179 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 2 - store i32 %178, i32* %179, align 8 - %180 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 3 - %181 = load i32, i32* %180, align 4 - %182 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 2 - %183 = load i32, i32* %182, align 8 - %184 = add nsw i32 %181, %183 - %185 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 6 - %186 = load i32, i32* %185, align 8 - %187 = add nsw i32 %184, %186 - %188 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 3 - store i32 %187, i32* %188, align 4 - %189 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 4 - %190 = load i32, i32* %189, align 16 - %191 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 1 - %192 = load i32, i32* %191, align 4 - %193 = add nsw i32 %190, %192 - %194 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 5 - %195 = load i32, i32* %194, align 4 - %196 = add nsw i32 %193, %195 - %197 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 7 - %198 = load i32, i32* %197, align 4 - %199 = add nsw i32 %196, %198 - %200 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 4 - store i32 %199, i32* %200, align 16 - %201 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 5 - %202 = load i32, i32* %201, align 4 - %203 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 2 - %204 = load i32, i32* %203, align 8 - %205 = add nsw i32 %202, %204 - %206 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 4 - %207 = load i32, i32* %206, align 16 - %208 = add nsw i32 %205, %207 - %209 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 8 - %210 = load i32, i32* %209, align 16 - %211 = add nsw i32 %208, %210 - %212 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 6 - %213 = load i32, i32* %212, align 8 - %214 = add nsw i32 %211, %213 - %215 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 5 - store i32 %214, i32* %215, align 4 - %216 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 6 - %217 = load i32, i32* %216, align 8 - %218 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 3 - %219 = load i32, i32* %218, align 4 - %220 = add nsw i32 %217, %219 - %221 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 5 - %222 = load i32, i32* %221, align 4 - %223 = add nsw i32 %220, %222 - %224 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 9 - %225 = load i32, i32* %224, align 4 - %226 = add nsw i32 %223, %225 - %227 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 6 - store i32 %226, i32* %227, align 8 - %228 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 7 - %229 = load i32, i32* %228, align 4 - %230 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 4 - %231 = load i32, i32* %230, align 16 - %232 = add nsw i32 %229, %231 - %233 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 8 - %234 = load i32, i32* %233, align 16 - %235 = add nsw i32 %232, %234 - %236 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 7 - store i32 %235, i32* %236, align 4 - %237 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 8 - %238 = load i32, i32* %237, align 16 - %239 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 0 - %240 = load i32, i32* %239, align 16 - %241 = add nsw i32 %238, %240 - %242 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 5 - %243 = load i32, i32* %242, align 4 - %244 = add nsw i32 %241, %243 - %245 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 7 - %246 = load i32, i32* %245, align 4 - %247 = add nsw i32 %244, %246 - %248 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 9 - %249 = load i32, i32* %248, align 4 - %250 = add nsw i32 %247, %249 - %251 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 8 - store i32 %250, i32* %251, align 16 - %252 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 9 - %253 = load i32, i32* %252, align 4 - %254 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 6 - %255 = load i32, i32* %254, align 8 - %256 = add nsw i32 %253, %255 - %257 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 8 - %258 = load i32, i32* %257, align 16 - %259 = add nsw i32 %256, %258 - %260 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 9 - store i32 %259, i32* %260, align 4 - br label %261 - -261: ; preds = %152, %43 - br label %262 - -262: ; preds = %261 - %263 = load i32, i32* %9, align 4 - %264 = add nsw i32 %263, 1 - store i32 %264, i32* %9, align 4 - br label %34, !llvm.loop !8 - -265: ; preds = %34 - store i32 0, i32* %11, align 4 - %266 = load i32, i32* %10, align 4 - %267 = icmp eq i32 %266, 1 - br i1 %267, label %268, label %283 - -268: ; preds = %265 - store i32 0, i32* %8, align 4 - br label %269 - -269: ; preds = %279, %268 - %270 = load i32, i32* %8, align 4 - %271 = icmp sle i32 %270, 9 - br i1 %271, label %272, label %282 - -272: ; preds = %269 - %273 = load i32, i32* %8, align 4 - %274 = sext i32 %273 to i64 - %275 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 %274 - %276 = load i32, i32* %275, align 4 - %277 = load i32, i32* %11, align 4 - %278 = add nsw i32 %277, %276 - store i32 %278, i32* %11, align 4 - br label %279 - -279: ; preds = %272 - %280 = load i32, i32* %8, align 4 - %281 = add nsw i32 %280, 1 - store i32 %281, i32* %8, align 4 - br label %269, !llvm.loop !9 - -282: ; preds = %269 - br label %298 - -283: ; preds = %265 - store i32 0, i32* %8, align 4 - br label %284 - -284: ; preds = %294, %283 - %285 = load i32, i32* %8, align 4 - %286 = icmp sle i32 %285, 9 - br i1 %286, label %287, label %297 - -287: ; preds = %284 - %288 = load i32, i32* %8, align 4 - %289 = sext i32 %288 to i64 - %290 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 %289 - %291 = load i32, i32* %290, align 4 - %292 = load i32, i32* %11, align 4 - %293 = add nsw i32 %292, %291 - store i32 %293, i32* %11, align 4 - br label %294 - -294: ; preds = %287 - %295 = load i32, i32* %8, align 4 - %296 = add nsw i32 %295, 1 - store i32 %296, i32* %8, align 4 - br label %284, !llvm.loop !10 - -297: ; preds = %284 - br label %298 - -298: ; preds = %297, %282 - %299 = load i32, i32* %11, align 4 - store i32 %299, i32* %3, align 4 - br label %300 - -300: ; preds = %298, %21, %17 - %301 = load i32, i32* %3, align 4 - ret i32 %301 -} - -; Function Attrs: 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 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 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 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 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #2 - -declare i32 @printf(i8* noundef, ...) #3 - -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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/naive-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/naive-algorithm.ll deleted file mode 100644 index acd1bf82a..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/naive-algorithm.ll +++ /dev/null @@ -1,172 +0,0 @@ -; ModuleID = 'PE-benchmarks/naive-algorithm.cpp' -source_filename = "PE-benchmarks/naive-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z6searchPcS_(i8* noundef %0, i8* noundef %1) #0 { - %3 = alloca i8*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %9 = load i8*, i8** %3, align 8 - %10 = call i64 @strlen(i8* noundef %9) #5 - %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* noundef %12) #5 - %14 = trunc i64 %13 to i32 - store i32 %14, i32* %6, align 4 - store i32 0, i32* %7, align 4 - br label %15 - -15: ; preds = %57, %2 - %16 = load i32, i32* %7, align 4 - %17 = load i32, i32* %6, align 4 - %18 = load i32, i32* %5, align 4 - %19 = sub nsw i32 %17, %18 - %20 = icmp sle i32 %16, %19 - br i1 %20, label %21, label %60 - -21: ; preds = %15 - store i32 0, i32* %8, align 4 - br label %22 - -22: ; preds = %44, %21 - %23 = load i32, i32* %8, align 4 - %24 = load i32, i32* %5, align 4 - %25 = icmp slt i32 %23, %24 - br i1 %25, label %26, label %47 - -26: ; preds = %22 - %27 = load i8*, i8** %4, align 8 - %28 = load i32, i32* %7, align 4 - %29 = load i32, i32* %8, align 4 - %30 = add nsw i32 %28, %29 - %31 = sext i32 %30 to i64 - %32 = getelementptr inbounds i8, i8* %27, i64 %31 - %33 = load i8, i8* %32, align 1 - %34 = sext i8 %33 to i32 - %35 = load i8*, i8** %3, align 8 - %36 = load i32, i32* %8, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i8, i8* %35, i64 %37 - %39 = load i8, i8* %38, align 1 - %40 = sext i8 %39 to i32 - %41 = icmp ne i32 %34, %40 - br i1 %41, label %42, label %43 - -42: ; preds = %26 - br label %47 - -43: ; preds = %26 - br label %44 - -44: ; preds = %43 - %45 = load i32, i32* %8, align 4 - %46 = add nsw i32 %45, 1 - store i32 %46, i32* %8, align 4 - br label %22, !llvm.loop !6 - -47: ; preds = %42, %22 - %48 = load i32, i32* %8, align 4 - %49 = load i32, i32* %5, align 4 - %50 = icmp eq i32 %48, %49 - br i1 %50, label %51, label %56 - -51: ; preds = %47 - %52 = call noundef 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 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 - br label %57 - -57: ; preds = %56 - %58 = load i32, i32* %7, align 4 - %59 = add nsw i32 %58, 1 - store i32 %59, i32* %7, align 4 - br label %15, !llvm.loop !8 - -60: ; preds = %15 - ret void -} - -; Function Attrs: nounwind readonly willreturn -declare i64 @strlen(i8* noundef) #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) #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -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) #2 - -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)) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [19 x i8], align 16 - %3 = alloca [5 x i8], align 1 - store i32 0, i32* %1, align 4 - %4 = bitcast [19 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 getelementptr inbounds ([19 x i8], [19 x i8]* @__const.main.txt, i32 0, i32 0), i64 19, i1 false) - %5 = bitcast [5 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %5, i8* align 1 getelementptr inbounds ([5 x i8], [5 x i8]* @__const.main.pat, i32 0, i32 0), i64 5, i1 false) - %6 = getelementptr inbounds [5 x i8], [5 x i8]* %3, i64 0, i64 0 - %7 = getelementptr inbounds [19 x i8], [19 x i8]* %2, i64 0, i64 0 - call void @_Z6searchPcS_(i8* noundef %6, i8* noundef %7) - ret i32 0 -} - -; 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 = { 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 = { 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 = { "frame-pointer"="all" "no-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 = { nounwind readonly willreturn } - -!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"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/optimal-binary-search-tree.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/optimal-binary-search-tree.ll deleted file mode 100644 index 0874e6b24..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/optimal-binary-search-tree.ll +++ /dev/null @@ -1,348 +0,0 @@ -; ModuleID = 'PE-benchmarks/optimal-binary-search-tree.cpp' -source_filename = "PE-benchmarks/optimal-binary-search-tree.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@__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 global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [24 x i8] c"Cost of Optimal BST is \00", align 1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z17optimalSearchTreePiS_i(i32* noundef %0, i32* noundef %1, i32 noundef %2) #0 { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i64, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32 %2, i32* %6, align 4 - %16 = load i32, i32* %6, align 4 - %17 = zext i32 %16 to i64 - %18 = load i32, i32* %6, align 4 - %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %7, align 8 - %21 = mul nuw i64 %17, %19 - %22 = alloca i32, i64 %21, align 16 - store i64 %17, i64* %8, align 8 - store i64 %19, i64* %9, align 8 - store i32 0, i32* %10, align 4 - br label %23 - -23: ; preds = %40, %3 - %24 = load i32, i32* %10, align 4 - %25 = load i32, i32* %6, align 4 - %26 = icmp slt i32 %24, %25 - br i1 %26, label %27, label %43 - -27: ; preds = %23 - %28 = load i32*, i32** %5, align 8 - %29 = load i32, i32* %10, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i32, i32* %28, i64 %30 - %32 = load i32, i32* %31, align 4 - %33 = load i32, i32* %10, align 4 - %34 = sext i32 %33 to i64 - %35 = mul nsw i64 %34, %19 - %36 = getelementptr inbounds i32, i32* %22, i64 %35 - %37 = load i32, i32* %10, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i32, i32* %36, i64 %38 - store i32 %32, i32* %39, align 4 - br label %40 - -40: ; preds = %27 - %41 = load i32, i32* %10, align 4 - %42 = add nsw i32 %41, 1 - store i32 %42, i32* %10, align 4 - br label %23, !llvm.loop !6 - -43: ; preds = %23 - store i32 2, i32* %11, align 4 - br label %44 - -44: ; preds = %140, %43 - %45 = load i32, i32* %11, align 4 - %46 = load i32, i32* %6, align 4 - %47 = icmp sle i32 %45, %46 - br i1 %47, label %48, label %143 - -48: ; preds = %44 - store i32 0, i32* %12, align 4 - br label %49 - -49: ; preds = %136, %48 - %50 = load i32, i32* %12, align 4 - %51 = load i32, i32* %6, align 4 - %52 = load i32, i32* %11, align 4 - %53 = sub nsw i32 %51, %52 - %54 = add nsw i32 %53, 1 - %55 = icmp sle i32 %50, %54 - br i1 %55, label %56, label %139 - -56: ; preds = %49 - %57 = load i32, i32* %12, align 4 - %58 = load i32, i32* %11, align 4 - %59 = add nsw i32 %57, %58 - %60 = sub nsw i32 %59, 1 - store i32 %60, i32* %13, align 4 - %61 = load i32, i32* %12, align 4 - %62 = sext i32 %61 to i64 - %63 = mul nsw i64 %62, %19 - %64 = getelementptr inbounds i32, i32* %22, i64 %63 - %65 = load i32, i32* %13, align 4 - %66 = sext i32 %65 to i64 - %67 = getelementptr inbounds i32, i32* %64, i64 %66 - store i32 2147483647, i32* %67, align 4 - %68 = load i32, i32* %12, align 4 - store i32 %68, i32* %14, align 4 - br label %69 - -69: ; preds = %132, %56 - %70 = load i32, i32* %14, align 4 - %71 = load i32, i32* %13, align 4 - %72 = icmp sle i32 %70, %71 - br i1 %72, label %73, label %135 - -73: ; preds = %69 - %74 = load i32, i32* %14, align 4 - %75 = load i32, i32* %12, align 4 - %76 = icmp sgt i32 %74, %75 - br i1 %76, label %77, label %87 - -77: ; preds = %73 - %78 = load i32, i32* %12, align 4 - %79 = sext i32 %78 to i64 - %80 = mul nsw i64 %79, %19 - %81 = getelementptr inbounds i32, i32* %22, i64 %80 - %82 = load i32, i32* %14, align 4 - %83 = sub nsw i32 %82, 1 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds i32, i32* %81, i64 %84 - %86 = load i32, i32* %85, align 4 - br label %88 - -87: ; preds = %73 - br label %88 - -88: ; preds = %87, %77 - %89 = phi i32 [ %86, %77 ], [ 0, %87 ] - %90 = load i32, i32* %14, align 4 - %91 = load i32, i32* %13, align 4 - %92 = icmp slt i32 %90, %91 - br i1 %92, label %93, label %103 - -93: ; preds = %88 - %94 = load i32, i32* %14, align 4 - %95 = add nsw i32 %94, 1 - %96 = sext i32 %95 to i64 - %97 = mul nsw i64 %96, %19 - %98 = getelementptr inbounds i32, i32* %22, i64 %97 - %99 = load i32, i32* %13, align 4 - %100 = sext i32 %99 to i64 - %101 = getelementptr inbounds i32, i32* %98, i64 %100 - %102 = load i32, i32* %101, align 4 - br label %104 - -103: ; preds = %88 - br label %104 - -104: ; preds = %103, %93 - %105 = phi i32 [ %102, %93 ], [ 0, %103 ] - %106 = add nsw i32 %89, %105 - %107 = load i32*, i32** %5, align 8 - %108 = load i32, i32* %12, align 4 - %109 = load i32, i32* %13, align 4 - %110 = call 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 - %113 = load i32, i32* %12, align 4 - %114 = sext i32 %113 to i64 - %115 = mul nsw i64 %114, %19 - %116 = getelementptr inbounds i32, i32* %22, i64 %115 - %117 = load i32, i32* %13, align 4 - %118 = sext i32 %117 to i64 - %119 = getelementptr inbounds i32, i32* %116, i64 %118 - %120 = load i32, i32* %119, align 4 - %121 = icmp slt i32 %112, %120 - br i1 %121, label %122, label %131 - -122: ; preds = %104 - %123 = load i32, i32* %15, align 4 - %124 = load i32, i32* %12, align 4 - %125 = sext i32 %124 to i64 - %126 = mul nsw i64 %125, %19 - %127 = getelementptr inbounds i32, i32* %22, i64 %126 - %128 = load i32, i32* %13, align 4 - %129 = sext i32 %128 to i64 - %130 = getelementptr inbounds i32, i32* %127, i64 %129 - store i32 %123, i32* %130, align 4 - br label %131 - -131: ; preds = %122, %104 - br label %132 - -132: ; preds = %131 - %133 = load i32, i32* %14, align 4 - %134 = add nsw i32 %133, 1 - store i32 %134, i32* %14, align 4 - br label %69, !llvm.loop !8 - -135: ; preds = %69 - br label %136 - -136: ; preds = %135 - %137 = load i32, i32* %12, align 4 - %138 = add nsw i32 %137, 1 - store i32 %138, i32* %12, align 4 - br label %49, !llvm.loop !9 - -139: ; preds = %49 - br label %140 - -140: ; preds = %139 - %141 = load i32, i32* %11, align 4 - %142 = add nsw i32 %141, 1 - store i32 %142, i32* %11, align 4 - br label %44, !llvm.loop !10 - -143: ; preds = %44 - %144 = mul nsw i64 0, %19 - %145 = getelementptr inbounds i32, i32* %22, i64 %144 - %146 = load i32, i32* %6, align 4 - %147 = sub nsw i32 %146, 1 - %148 = sext i32 %147 to i64 - %149 = getelementptr inbounds i32, i32* %145, i64 %148 - %150 = load i32, i32* %149, align 4 - %151 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %151) - ret i32 %150 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z3sumPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #2 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - store i32 0, i32* %7, align 4 - %9 = load i32, i32* %5, align 4 - store i32 %9, i32* %8, align 4 - br label %10 - -10: ; preds = %22, %3 - %11 = load i32, i32* %8, align 4 - %12 = load i32, i32* %6, align 4 - %13 = icmp sle i32 %11, %12 - br i1 %13, label %14, label %25 - -14: ; preds = %10 - %15 = load i32*, i32** %4, align 8 - %16 = load i32, i32* %8, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds i32, i32* %15, i64 %17 - %19 = load i32, i32* %18, align 4 - %20 = load i32, i32* %7, align 4 - %21 = add nsw i32 %20, %19 - store i32 %21, i32* %7, align 4 - br label %22 - -22: ; preds = %14 - %23 = load i32, i32* %8, align 4 - %24 = add nsw i32 %23, 1 - store i32 %24, i32* %8, align 4 - br label %10, !llvm.loop !11 - -25: ; preds = %10 - %26 = load i32, i32* %7, align 4 - ret i32 %26 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [3 x i32], align 4 - %3 = alloca [3 x i32], align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [3 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %5, i8* align 4 bitcast ([3 x i32]* @__const.main.keys to i8*), i64 12, i1 false) - %6 = bitcast [3 x i32]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %6, i8* align 4 bitcast ([3 x i32]* @__const.main.freq to i8*), i64 12, i1 false) - store i32 3, i32* %4, align 4 - %7 = call noundef 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 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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -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 willreturn } -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 = { 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" } - -!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"} -!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/optimized-naive-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/optimized-naive-algorithm.ll deleted file mode 100644 index a4093f669..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/optimized-naive-algorithm.ll +++ /dev/null @@ -1,330 +0,0 @@ -; ModuleID = 'PE-benchmarks/optimized-naive-algorithm.cpp' -source_filename = "PE-benchmarks/optimized-naive-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } - -$_ZNSt15__new_allocatorIcED2Ev = comdat any - -@_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 - -; 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) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #5 - %8 = trunc i64 %7 to i32 - store i32 %8, i32* %3, align 4 - %9 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) #5 - %10 = trunc i64 %9 to i32 - store i32 %10, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %11 - -11: ; preds = %64, %2 - %12 = load i32, i32* %5, align 4 - %13 = load i32, i32* %4, align 4 - %14 = load i32, i32* %3, align 4 - %15 = sub nsw i32 %13, %14 - %16 = icmp sle i32 %12, %15 - br i1 %16, label %17, label %65 - -17: ; preds = %11 - store i32 0, i32* %6, align 4 - br label %18 - -18: ; preds = %38, %17 - %19 = load i32, i32* %6, align 4 - %20 = load i32, i32* %3, align 4 - %21 = icmp slt i32 %19, %20 - br i1 %21, label %22, label %41 - -22: ; preds = %18 - %23 = load i32, i32* %5, align 4 - %24 = load i32, i32* %6, align 4 - %25 = add nsw i32 %23, %24 - %26 = sext i32 %25 to i64 - %27 = call 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 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 - br i1 %35, label %36, label %37 - -36: ; preds = %22 - br label %41 - -37: ; preds = %22 - br label %38 - -38: ; preds = %37 - %39 = load i32, i32* %6, align 4 - %40 = add nsw i32 %39, 1 - store i32 %40, i32* %6, align 4 - br label %18, !llvm.loop !6 - -41: ; preds = %36, %18 - %42 = load i32, i32* %6, align 4 - %43 = load i32, i32* %3, align 4 - %44 = icmp eq i32 %42, %43 - br i1 %44, label %45, label %53 - -45: ; preds = %41 - %46 = call noundef 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 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 - store i32 %52, i32* %5, align 4 - br label %64 - -53: ; preds = %41 - %54 = load i32, i32* %6, align 4 - %55 = icmp eq i32 %54, 0 - br i1 %55, label %56, label %59 - -56: ; preds = %53 - %57 = load i32, i32* %5, align 4 - %58 = add nsw i32 %57, 1 - store i32 %58, i32* %5, align 4 - br label %63 - -59: ; preds = %53 - %60 = load i32, i32* %5, align 4 - %61 = load i32, i32* %6, align 4 - %62 = add nsw i32 %60, %61 - store i32 %62, i32* %5, align 4 - br label %63 - -63: ; preds = %59, %56 - br label %64 - -64: ; preds = %63, %45 - br label %11, !llvm.loop !8 - -65: ; preds = %11 - ret void -} - -; Function Attrs: nounwind -declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) #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) #2 - -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) #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -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) #2 - -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)) #2 - -; Function Attrs: noinline norecurse uwtable -define dso_local noundef i32 @main() #3 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca %"class.std::__new_allocator"*, align 8 - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"class.std::allocator"*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"class.std::__cxx11::basic_string", align 8 - %11 = alloca %"class.std::allocator", align 1 - %12 = alloca i8*, align 8 - %13 = alloca i32, align 4 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - %15 = alloca %"class.std::allocator", align 1 - %16 = alloca %"class.std::__cxx11::basic_string", align 8 - %17 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %9, align 4 - store %"class.std::allocator"* %11, %"class.std::allocator"** %8, align 8 - %18 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %19 = bitcast %"class.std::allocator"* %18 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %19, %"class.std::__new_allocator"** %1, align 8 - %20 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %1, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10, 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) %11) - to label %21 unwind label %34 - -21: ; preds = %0 - store %"class.std::allocator"* %11, %"class.std::allocator"** %6, align 8 - %22 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %23 = bitcast %"class.std::allocator"* %22 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %23) #5 - store %"class.std::allocator"* %15, %"class.std::allocator"** %7, align 8 - %24 = load %"class.std::allocator"*, %"class.std::allocator"** %7, align 8 - %25 = bitcast %"class.std::allocator"* %24 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %25, %"class.std::__new_allocator"** %2, align 8 - %26 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14, 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) %15) - to label %27 unwind label %40 - -27: ; preds = %21 - store %"class.std::allocator"* %15, %"class.std::allocator"** %4, align 8 - %28 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %29 = bitcast %"class.std::allocator"* %28 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %29) #5 - 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) %14) - to label %30 unwind label %46 - -30: ; preds = %27 - 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) %10) - to label %31 unwind label %50 - -31: ; preds = %30 - invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %16, %"class.std::__cxx11::basic_string"* noundef %17) - to label %32 unwind label %54 - -32: ; preds = %31 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17) #5 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #5 - store i32 0, i32* %9, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #5 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #5 - %33 = load i32, i32* %9, align 4 - ret i32 %33 - -34: ; preds = %0 - %35 = landingpad { i8*, i32 } - cleanup - %36 = extractvalue { i8*, i32 } %35, 0 - store i8* %36, i8** %12, align 8 - %37 = extractvalue { i8*, i32 } %35, 1 - store i32 %37, i32* %13, align 4 - store %"class.std::allocator"* %11, %"class.std::allocator"** %5, align 8 - %38 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %39 = bitcast %"class.std::allocator"* %38 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %39) #5 - br label %61 - -40: ; preds = %21 - %41 = landingpad { i8*, i32 } - cleanup - %42 = extractvalue { i8*, i32 } %41, 0 - store i8* %42, i8** %12, align 8 - %43 = extractvalue { i8*, i32 } %41, 1 - store i32 %43, i32* %13, align 4 - store %"class.std::allocator"* %15, %"class.std::allocator"** %3, align 8 - %44 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %45 = bitcast %"class.std::allocator"* %44 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %45) #5 - br label %60 - -46: ; preds = %27 - %47 = landingpad { i8*, i32 } - cleanup - %48 = extractvalue { i8*, i32 } %47, 0 - store i8* %48, i8** %12, align 8 - %49 = extractvalue { i8*, i32 } %47, 1 - store i32 %49, i32* %13, align 4 - br label %59 - -50: ; preds = %30 - %51 = landingpad { i8*, i32 } - cleanup - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %12, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %13, align 4 - br label %58 - -54: ; preds = %31 - %55 = landingpad { i8*, i32 } - cleanup - %56 = extractvalue { i8*, i32 } %55, 0 - store i8* %56, i8** %12, align 8 - %57 = extractvalue { i8*, i32 } %55, 1 - store i32 %57, i32* %13, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17) #5 - br label %58 - -58: ; preds = %54, %50 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #5 - br label %59 - -59: ; preds = %58, %46 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #5 - br label %60 - -60: ; preds = %59, %40 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #5 - br label %61 - -61: ; preds = %60, %34 - %62 = load i8*, i8** %12, align 8 - %63 = load i32, i32* %13, align 4 - %64 = insertvalue { i8*, i32 } undef, i8* %62, 0 - %65 = insertvalue { i8*, i32 } %64, i32 %63, 1 - resume { i8*, i32 } %65 -} - -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 #2 - -declare i32 @__gxx_personality_v0(...) - -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 #2 - -; Function Attrs: nounwind -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"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 @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #4 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -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 = { 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 #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 = { 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 = { 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 } - -!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"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/overlapping-subproblems-property.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/overlapping-subproblems-property.ll deleted file mode 100644 index 9bb5a36cc..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/overlapping-subproblems-property.ll +++ /dev/null @@ -1,138 +0,0 @@ -; ModuleID = 'PE-benchmarks/overlapping-subproblems-property.cpp' -source_filename = "PE-benchmarks/overlapping-subproblems-property.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@lookup = dso_local global [100 x i32] zeroinitializer, align 16 -@_ZSt4cout = external global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [21 x i8] c"Fibonacci number is \00", align 1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z11_initializev() #0 { - %1 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - br label %2 - -2: ; preds = %9, %0 - %3 = load i32, i32* %1, align 4 - %4 = icmp slt i32 %3, 100 - br i1 %4, label %5, label %12 - -5: ; preds = %2 - %6 = load i32, i32* %1, align 4 - %7 = sext i32 %6 to i64 - %8 = getelementptr inbounds [100 x i32], [100 x i32]* @lookup, i64 0, i64 %7 - store i32 -1, i32* %8, align 4 - br label %9 - -9: ; preds = %5 - %10 = load i32, i32* %1, align 4 - %11 = add nsw i32 %10, 1 - store i32 %11, i32* %1, align 4 - br label %2, !llvm.loop !6 - -12: ; preds = %2 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z3fibi(i32 noundef %0) #1 { - %2 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %3 = load i32, i32* %2, align 4 - %4 = sext i32 %3 to i64 - %5 = getelementptr inbounds [100 x i32], [100 x i32]* @lookup, i64 0, i64 %4 - %6 = load i32, i32* %5, align 4 - %7 = icmp eq i32 %6, -1 - br i1 %7, label %8, label %28 - -8: ; preds = %1 - %9 = load i32, i32* %2, align 4 - %10 = icmp sle i32 %9, 1 - br i1 %10, label %11, label %16 - -11: ; preds = %8 - %12 = load i32, i32* %2, align 4 - %13 = load i32, i32* %2, align 4 - %14 = sext i32 %13 to i64 - %15 = getelementptr inbounds [100 x i32], [100 x i32]* @lookup, i64 0, i64 %14 - store i32 %12, i32* %15, align 4 - br label %27 - -16: ; preds = %8 - %17 = load i32, i32* %2, align 4 - %18 = sub nsw i32 %17, 1 - %19 = call noundef i32 @_Z3fibi(i32 noundef %18) - %20 = load i32, i32* %2, align 4 - %21 = sub nsw i32 %20, 2 - %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 - %26 = getelementptr inbounds [100 x i32], [100 x i32]* @lookup, i64 0, i64 %25 - store i32 %23, i32* %26, align 4 - br label %27 - -27: ; preds = %16, %11 - br label %28 - -28: ; preds = %27, %1 - %29 = load i32, i32* %2, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds [100 x i32], [100 x i32]* @lookup, i64 0, i64 %30 - %32 = load i32, i32* %31, align 4 - ret i32 %32 -} - -; Function Attrs: 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 40, i32* %2, align 4 - call void @_Z11_initializev() - %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 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 noundef 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) #3 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 - -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 = { 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, !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-llvm14/permutations-of-a-given-string.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/permutations-of-a-given-string.ll deleted file mode 100644 index 50a0d8bea..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/permutations-of-a-given-string.ll +++ /dev/null @@ -1,292 +0,0 @@ -; ModuleID = 'PE-benchmarks/permutations-of-a-given-string.cpp' -source_filename = "PE-benchmarks/permutations-of-a-given-string.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } - -$_ZSt4swapIcENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_ = comdat any - -$_ZNSt15__new_allocatorIcED2Ev = comdat any - -$_ZSt4moveIRcEONSt16remove_referenceIT_E4typeEOS2_ = comdat any - -@_ZSt4cout = external global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [4 x i8] c"ABC\00", align 1 - -; 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) #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca %"class.std::__cxx11::basic_string", align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store i32 %1, i32* %4, align 4 - store i32 %2, i32* %5, align 4 - %10 = load i32, i32* %4, align 4 - %11 = load i32, i32* %5, align 4 - %12 = icmp eq i32 %10, %11 - br i1 %12, label %13, label %16 - -13: ; preds = %3 - %14 = call 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 - %17 = load i32, i32* %4, align 4 - store i32 %17, i32* %6, align 4 - br label %18 - -18: ; preds = %39, %16 - %19 = load i32, i32* %6, align 4 - %20 = load i32, i32* %5, align 4 - %21 = icmp sle i32 %19, %20 - br i1 %21, label %22, label %46 - -22: ; preds = %18 - %23 = load i32, i32* %4, align 4 - %24 = sext i32 %23 to i64 - %25 = call 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 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) #6 - 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"* 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"* noundef nonnull align 8 dereferenceable(32) %7) #6 - %33 = load i32, i32* %4, align 4 - %34 = sext i32 %33 to i64 - %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 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) #6 - 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 !6 - -42: ; preds = %22 - %43 = landingpad { i8*, i32 } - cleanup - %44 = extractvalue { i8*, i32 } %43, 0 - store i8* %44, i8** %8, align 8 - %45 = extractvalue { i8*, i32 } %43, 1 - store i32 %45, i32* %9, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %7) #6 - br label %48 - -46: ; preds = %18 - br label %47 - -47: ; preds = %46, %13 - ret void - -48: ; preds = %42 - %49 = load i8*, i8** %8, align 8 - %50 = load i32, i32* %9, align 4 - %51 = insertvalue { i8*, i32 } undef, i8* %49, 0 - %52 = insertvalue { i8*, i32 } %51, i32 %50, 1 - resume { i8*, i32 } %52 -} - -declare 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 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 - -; 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) #2 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 noundef nonnull align 1 dereferenceable(1) i8* @_ZSt4moveIRcEONSt16remove_referenceIT_E4typeEOS2_(i8* noundef nonnull align 1 dereferenceable(1) %6) #6 - %8 = load i8, i8* %7, align 1 - store i8 %8, i8* %5, align 1 - %9 = load i8*, i8** %4, align 8 - %10 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZSt4moveIRcEONSt16remove_referenceIT_E4typeEOS2_(i8* noundef nonnull align 1 dereferenceable(1) %9) #6 - %11 = load i8, i8* %10, align 1 - %12 = load i8*, i8** %3, align 8 - store i8 %11, i8* %12, align 1 - %13 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZSt4moveIRcEONSt16remove_referenceIT_E4typeEOS2_(i8* noundef nonnull align 1 dereferenceable(1) %5) #6 - %14 = load i8, i8* %13, align 1 - %15 = load i8*, i8** %4, align 8 - store i8 %14, i8* %15, align 1 - ret void -} - -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 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 i32 @__gxx_personality_v0(...) - -; Function Attrs: nounwind -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #3 - -; Function Attrs: noinline norecurse uwtable -define dso_local noundef i32 @main() #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca %"class.std::__new_allocator"*, align 8 - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32, align 4 - %6 = alloca %"class.std::__cxx11::basic_string", align 8 - %7 = alloca %"class.std::allocator", align 1 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %5, align 4 - store %"class.std::allocator"* %7, %"class.std::allocator"** %4, align 8 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %13 = bitcast %"class.std::allocator"* %12 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %13, %"class.std::__new_allocator"** %1, align 8 - %14 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %1, align 8 - 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, i64 0, i64 0), %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) - to label %15 unwind label %25 - -15: ; preds = %0 - store %"class.std::allocator"* %7, %"class.std::allocator"** %3, align 8 - %16 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %17 = bitcast %"class.std::allocator"* %16 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %17) #6 - %18 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #6 - %19 = trunc i64 %18 to i32 - store i32 %19, i32* %10, align 4 - 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) %6) - to label %20 unwind label %31 - -20: ; preds = %15 - %21 = load i32, i32* %10, align 4 - %22 = sub nsw i32 %21, 1 - invoke void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(%"class.std::__cxx11::basic_string"* noundef %11, i32 noundef 0, i32 noundef %22) - to label %23 unwind label %35 - -23: ; preds = %20 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #6 - store i32 0, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #6 - %24 = load i32, i32* %5, align 4 - ret i32 %24 - -25: ; preds = %0 - %26 = landingpad { i8*, i32 } - cleanup - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %8, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %9, align 4 - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - %29 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %30 = bitcast %"class.std::allocator"* %29 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %30) #6 - br label %40 - -31: ; preds = %15 - %32 = landingpad { i8*, i32 } - cleanup - %33 = extractvalue { i8*, i32 } %32, 0 - store i8* %33, i8** %8, align 8 - %34 = extractvalue { i8*, i32 } %32, 1 - store i32 %34, i32* %9, align 4 - br label %39 - -35: ; preds = %20 - %36 = landingpad { i8*, i32 } - cleanup - %37 = extractvalue { i8*, i32 } %36, 0 - store i8* %37, i8** %8, align 8 - %38 = extractvalue { i8*, i32 } %36, 1 - store i32 %38, i32* %9, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #6 - br label %39 - -39: ; preds = %35, %31 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #6 - br label %40 - -40: ; preds = %39, %25 - %41 = load i8*, i8** %8, align 8 - %42 = load i32, i32* %9, align 4 - %43 = insertvalue { i8*, i32 } undef, i8* %41, 0 - %44 = insertvalue { i8*, i32 } %43, i32 %42, 1 - resume { i8*, i32 } %44 -} - -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 noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) #3 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -; 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) #2 comdat { - %2 = alloca i8*, align 8 - store i8* %0, i8** %2, align 8 - %3 = load i8*, i8** %2, align 8 - ret i8* %3 -} - -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 = { 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 = { 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 } - -!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-llvm14/program-wish-womens-day.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/program-wish-womens-day.ll deleted file mode 100644 index 1903ae81f..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/program-wish-womens-day.ll +++ /dev/null @@ -1,296 +0,0 @@ -; ModuleID = 'PE-benchmarks/program-wish-womens-day.cpp' -source_filename = "PE-benchmarks/program-wish-womens-day.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_ = comdat any - -@_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 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #0 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca float, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 5, i32* %2, align 4 - store i32 0, i32* %3, align 4 - br label %9 - -9: ; preds = %68, %0 - %10 = load i32, i32* %3, align 4 - %11 = load i32, i32* %2, align 4 - %12 = mul nsw i32 2, %11 - %13 = icmp sle i32 %10, %12 - br i1 %13, label %14, label %71 - -14: ; preds = %9 - store i32 0, i32* %4, align 4 - br label %15 - -15: ; preds = %56, %14 - %16 = load i32, i32* %4, align 4 - %17 = load i32, i32* %2, align 4 - %18 = mul nsw i32 2, %17 - %19 = icmp sle i32 %16, %18 - br i1 %19, label %20, label %59 - -20: ; preds = %15 - %21 = load i32, i32* %3, align 4 - %22 = load i32, i32* %2, align 4 - %23 = sub nsw i32 %21, %22 - %24 = load i32, i32* %3, align 4 - %25 = load i32, i32* %2, align 4 - %26 = sub nsw i32 %24, %25 - %27 = mul nsw i32 %23, %26 - %28 = load i32, i32* %4, align 4 - %29 = load i32, i32* %2, align 4 - %30 = sub nsw i32 %28, %29 - %31 = load i32, i32* %4, align 4 - %32 = load i32, i32* %2, align 4 - %33 = sub nsw i32 %31, %32 - %34 = mul nsw i32 %30, %33 - %35 = add nsw i32 %27, %34 - %36 = call 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 - %39 = fpext float %38 to double - %40 = load i32, i32* %2, align 4 - %41 = sitofp i32 %40 to double - %42 = fsub double %41, 5.000000e-01 - %43 = fcmp ogt double %39, %42 - br i1 %43, label %44, label %53 - -44: ; preds = %20 - %45 = load float, float* %5, align 4 - %46 = fpext float %45 to double - %47 = load i32, i32* %2, align 4 - %48 = sitofp i32 %47 to double - %49 = fadd double %48, 5.000000e-01 - %50 = fcmp olt double %46, %49 - br i1 %50, label %51, label %53 - -51: ; preds = %44 - %52 = call noundef 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 noundef 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 - br label %56 - -56: ; preds = %55 - %57 = load i32, i32* %4, align 4 - %58 = add nsw i32 %57, 1 - store i32 %58, i32* %4, align 4 - br label %15, !llvm.loop !6 - -59: ; preds = %15 - %60 = load i32, i32* %3, align 4 - %61 = load i32, i32* %2, align 4 - %62 = icmp eq i32 %60, %61 - br i1 %62, label %63, label %66 - -63: ; preds = %59 - %64 = call noundef 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 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 !8 - -71: ; preds = %9 - store i32 0, i32* %6, align 4 - br label %72 - -72: ; preds = %132, %71 - %73 = load i32, i32* %6, align 4 - %74 = load i32, i32* %2, align 4 - %75 = icmp sle i32 %73, %74 - br i1 %75, label %76, label %135 - -76: ; preds = %72 - %77 = load i32, i32* %6, align 4 - %78 = load i32, i32* %2, align 4 - %79 = sdiv i32 %78, 2 - %80 = add nsw i32 %79, 1 - %81 = icmp eq i32 %77, %80 - br i1 %81, label %82, label %111 - -82: ; preds = %76 - store i32 0, i32* %7, align 4 - br label %83 - -83: ; preds = %107, %82 - %84 = load i32, i32* %7, align 4 - %85 = load i32, i32* %2, align 4 - %86 = mul nsw i32 2, %85 - %87 = icmp sle i32 %84, %86 - br i1 %87, label %88, label %110 - -88: ; preds = %83 - %89 = load i32, i32* %7, align 4 - %90 = load i32, i32* %2, align 4 - %91 = load i32, i32* %2, align 4 - %92 = sdiv i32 %91, 2 - %93 = sub nsw i32 %90, %92 - %94 = icmp sge i32 %89, %93 - br i1 %94, label %95, label %104 - -95: ; preds = %88 - %96 = load i32, i32* %7, align 4 - %97 = load i32, i32* %2, align 4 - %98 = load i32, i32* %2, align 4 - %99 = sdiv i32 %98, 2 - %100 = add nsw i32 %97, %99 - %101 = icmp sle i32 %96, %100 - br i1 %101, label %102, label %104 - -102: ; preds = %95 - %103 = call noundef 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 noundef 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 - br label %107 - -107: ; preds = %106 - %108 = load i32, i32* %7, align 4 - %109 = add nsw i32 %108, 1 - store i32 %109, i32* %7, align 4 - br label %83, !llvm.loop !9 - -110: ; preds = %83 - br label %130 - -111: ; preds = %76 - store i32 0, i32* %8, align 4 - br label %112 - -112: ; preds = %126, %111 - %113 = load i32, i32* %8, align 4 - %114 = load i32, i32* %2, align 4 - %115 = mul nsw i32 2, %114 - %116 = icmp sle i32 %113, %115 - br i1 %116, label %117, label %129 - -117: ; preds = %112 - %118 = load i32, i32* %8, align 4 - %119 = load i32, i32* %2, align 4 - %120 = icmp eq i32 %118, %119 - br i1 %120, label %121, label %123 - -121: ; preds = %117 - %122 = call noundef 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 noundef 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 - br label %126 - -126: ; preds = %125 - %127 = load i32, i32* %8, align 4 - %128 = add nsw i32 %127, 1 - store i32 %128, i32* %8, align 4 - br label %112, !llvm.loop !10 - -129: ; preds = %112 - br label %130 - -130: ; preds = %129, %110 - %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 !11 - -135: ; preds = %72 - %136 = load i32, i32* %1, align 4 - ret i32 %136 -} - -; 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) #1 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 noundef %4) #4 - ret double %5 -} - -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) #2 - -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) #2 - -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)) #2 - -; Function Attrs: nounwind -declare double @sqrt(double noundef) #3 - -attributes #0 = { 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 #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 = { 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 = { nounwind } - -!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"} -!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/quicksort-for-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/quicksort-for-linked-list.ll deleted file mode 100644 index d64cf2a5d..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/quicksort-for-linked-list.ll +++ /dev/null @@ -1,363 +0,0 @@ -; ModuleID = 'PE-benchmarks/quicksort-for-linked-list.cpp' -source_filename = "PE-benchmarks/quicksort-for-linked-list.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Node = type { i32, %class.Node*, %class.Node* } - -@_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 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z4swapPiS_(i32* noundef %0, i32* noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %6, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %3, align 8 - store i32 %9, i32* %10, align 4 - %11 = load i32, i32* %5, align 4 - %12 = load i32*, i32** %4, align 8 - store i32 %11, i32* %12, align 4 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef %class.Node* @_Z8lastNodeP4Node(%class.Node* noundef %0) #0 { - %2 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %2, align 8 - br label %3 - -3: ; preds = %13, %1 - %4 = load %class.Node*, %class.Node** %2, align 8 - %5 = icmp ne %class.Node* %4, null - br i1 %5, label %6, label %11 - -6: ; preds = %3 - %7 = load %class.Node*, %class.Node** %2, align 8 - %8 = getelementptr inbounds %class.Node, %class.Node* %7, i32 0, i32 1 - %9 = load %class.Node*, %class.Node** %8, align 8 - %10 = icmp ne %class.Node* %9, null - br label %11 - -11: ; preds = %6, %3 - %12 = phi i1 [ false, %3 ], [ %10, %6 ] - br i1 %12, label %13, label %17 - -13: ; preds = %11 - %14 = load %class.Node*, %class.Node** %2, align 8 - %15 = getelementptr inbounds %class.Node, %class.Node* %14, i32 0, i32 1 - %16 = load %class.Node*, %class.Node** %15, align 8 - store %class.Node* %16, %class.Node** %2, align 8 - br label %3, !llvm.loop !6 - -17: ; preds = %11 - %18 = load %class.Node*, %class.Node** %2, align 8 - ret %class.Node* %18 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef %class.Node* @_Z9partitionP4NodeS0_(%class.Node* noundef %0, %class.Node* noundef %1) #0 { - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - %5 = alloca i32, align 4 - %6 = alloca %class.Node*, align 8 - %7 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %3, align 8 - store %class.Node* %1, %class.Node** %4, align 8 - %8 = load %class.Node*, %class.Node** %4, align 8 - %9 = getelementptr inbounds %class.Node, %class.Node* %8, i32 0, i32 0 - %10 = load i32, i32* %9, align 8 - store i32 %10, i32* %5, align 4 - %11 = load %class.Node*, %class.Node** %3, align 8 - %12 = getelementptr inbounds %class.Node, %class.Node* %11, i32 0, i32 2 - %13 = load %class.Node*, %class.Node** %12, align 8 - store %class.Node* %13, %class.Node** %6, align 8 - %14 = load %class.Node*, %class.Node** %3, align 8 - store %class.Node* %14, %class.Node** %7, align 8 - br label %15 - -15: ; preds = %41, %2 - %16 = load %class.Node*, %class.Node** %7, align 8 - %17 = load %class.Node*, %class.Node** %4, align 8 - %18 = icmp ne %class.Node* %16, %17 - br i1 %18, label %19, label %45 - -19: ; preds = %15 - %20 = load %class.Node*, %class.Node** %7, align 8 - %21 = getelementptr inbounds %class.Node, %class.Node* %20, i32 0, i32 0 - %22 = load i32, i32* %21, align 8 - %23 = load i32, i32* %5, align 4 - %24 = icmp sle i32 %22, %23 - br i1 %24, label %25, label %40 - -25: ; preds = %19 - %26 = load %class.Node*, %class.Node** %6, align 8 - %27 = icmp eq %class.Node* %26, null - br i1 %27, label %28, label %30 - -28: ; preds = %25 - %29 = load %class.Node*, %class.Node** %3, align 8 - br label %34 - -30: ; preds = %25 - %31 = load %class.Node*, %class.Node** %6, align 8 - %32 = getelementptr inbounds %class.Node, %class.Node* %31, i32 0, i32 1 - %33 = load %class.Node*, %class.Node** %32, align 8 - br label %34 - -34: ; preds = %30, %28 - %35 = phi %class.Node* [ %29, %28 ], [ %33, %30 ] - store %class.Node* %35, %class.Node** %6, align 8 - %36 = load %class.Node*, %class.Node** %6, align 8 - %37 = getelementptr inbounds %class.Node, %class.Node* %36, i32 0, i32 0 - %38 = load %class.Node*, %class.Node** %7, align 8 - %39 = getelementptr inbounds %class.Node, %class.Node* %38, i32 0, i32 0 - call void @_Z4swapPiS_(i32* noundef %37, i32* noundef %39) - br label %40 - -40: ; preds = %34, %19 - br label %41 - -41: ; preds = %40 - %42 = load %class.Node*, %class.Node** %7, align 8 - %43 = getelementptr inbounds %class.Node, %class.Node* %42, i32 0, i32 1 - %44 = load %class.Node*, %class.Node** %43, align 8 - store %class.Node* %44, %class.Node** %7, align 8 - br label %15, !llvm.loop !8 - -45: ; preds = %15 - %46 = load %class.Node*, %class.Node** %6, align 8 - %47 = icmp eq %class.Node* %46, null - br i1 %47, label %48, label %50 - -48: ; preds = %45 - %49 = load %class.Node*, %class.Node** %3, align 8 - br label %54 - -50: ; preds = %45 - %51 = load %class.Node*, %class.Node** %6, align 8 - %52 = getelementptr inbounds %class.Node, %class.Node* %51, i32 0, i32 1 - %53 = load %class.Node*, %class.Node** %52, align 8 - br label %54 - -54: ; preds = %50, %48 - %55 = phi %class.Node* [ %49, %48 ], [ %53, %50 ] - store %class.Node* %55, %class.Node** %6, align 8 - %56 = load %class.Node*, %class.Node** %6, align 8 - %57 = getelementptr inbounds %class.Node, %class.Node* %56, i32 0, i32 0 - %58 = load %class.Node*, %class.Node** %4, align 8 - %59 = getelementptr inbounds %class.Node, %class.Node* %58, i32 0, i32 0 - call void @_Z4swapPiS_(i32* noundef %57, i32* noundef %59) - %60 = load %class.Node*, %class.Node** %6, align 8 - ret %class.Node* %60 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z10_quickSortP4NodeS0_(%class.Node* noundef %0, %class.Node* noundef %1) #1 { - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - %5 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %3, align 8 - store %class.Node* %1, %class.Node** %4, align 8 - %6 = load %class.Node*, %class.Node** %4, align 8 - %7 = icmp ne %class.Node* %6, null - br i1 %7, label %8, label %30 - -8: ; preds = %2 - %9 = load %class.Node*, %class.Node** %3, align 8 - %10 = load %class.Node*, %class.Node** %4, align 8 - %11 = icmp ne %class.Node* %9, %10 - br i1 %11, label %12, label %30 - -12: ; preds = %8 - %13 = load %class.Node*, %class.Node** %3, align 8 - %14 = load %class.Node*, %class.Node** %4, align 8 - %15 = getelementptr inbounds %class.Node, %class.Node* %14, i32 0, i32 1 - %16 = load %class.Node*, %class.Node** %15, align 8 - %17 = icmp ne %class.Node* %13, %16 - br i1 %17, label %18, label %30 - -18: ; preds = %12 - %19 = load %class.Node*, %class.Node** %3, align 8 - %20 = load %class.Node*, %class.Node** %4, align 8 - %21 = call 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* 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* noundef %28, %class.Node* noundef %29) - br label %30 - -30: ; preds = %18, %12, %8, %2 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9quickSortP4Node(%class.Node* noundef %0) #1 { - %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 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* noundef %6, %class.Node* noundef %7) - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9printListP4Node(%class.Node* noundef %0) #1 { - %2 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %2, align 8 - br label %3 - -3: ; preds = %6, %1 - %4 = load %class.Node*, %class.Node** %2, align 8 - %5 = icmp ne %class.Node* %4, null - br i1 %5, label %6, label %15 - -6: ; preds = %3 - %7 = load %class.Node*, %class.Node** %2, align 8 - %8 = getelementptr inbounds %class.Node, %class.Node* %7, i32 0, i32 0 - %9 = load i32, i32* %8, align 8 - %10 = call 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 !9 - -15: ; preds = %3 - %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 noundef 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) #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -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) #2 - -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)) #2 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z4pushPP4Nodei(%class.Node** noundef %0, i32 noundef %1) #1 { - %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 noundef nonnull i8* @_Znwm(i64 noundef 24) #5 - %7 = bitcast i8* %6 to %class.Node* - store %class.Node* %7, %class.Node** %5, align 8 - %8 = load i32, i32* %4, align 4 - %9 = load %class.Node*, %class.Node** %5, align 8 - %10 = getelementptr inbounds %class.Node, %class.Node* %9, i32 0, i32 0 - store i32 %8, i32* %10, align 8 - %11 = load %class.Node*, %class.Node** %5, align 8 - %12 = getelementptr inbounds %class.Node, %class.Node* %11, i32 0, i32 2 - store %class.Node* null, %class.Node** %12, align 8 - %13 = load %class.Node**, %class.Node*** %3, align 8 - %14 = load %class.Node*, %class.Node** %13, align 8 - %15 = load %class.Node*, %class.Node** %5, align 8 - %16 = getelementptr inbounds %class.Node, %class.Node* %15, i32 0, i32 1 - store %class.Node* %14, %class.Node** %16, align 8 - %17 = load %class.Node**, %class.Node*** %3, align 8 - %18 = load %class.Node*, %class.Node** %17, align 8 - %19 = icmp ne %class.Node* %18, null - br i1 %19, label %20, label %25 - -20: ; preds = %2 - %21 = load %class.Node*, %class.Node** %5, align 8 - %22 = load %class.Node**, %class.Node*** %3, align 8 - %23 = load %class.Node*, %class.Node** %22, align 8 - %24 = getelementptr inbounds %class.Node, %class.Node* %23, i32 0, i32 2 - store %class.Node* %21, %class.Node** %24, align 8 - br label %25 - -25: ; preds = %20, %2 - %26 = load %class.Node*, %class.Node** %5, align 8 - %27 = load %class.Node**, %class.Node*** %3, align 8 - store %class.Node* %26, %class.Node** %27, align 8 - ret void -} - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #3 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #4 { - %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** 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* noundef %4) - %5 = load %class.Node*, %class.Node** %2, align 8 - 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* noundef %7) - ret i32 0 -} - -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 = { 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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/quicksort-on-singly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/quicksort-on-singly-linked-list.ll deleted file mode 100644 index 10c615f6b..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/quicksort-on-singly-linked-list.ll +++ /dev/null @@ -1,389 +0,0 @@ -; ModuleID = 'PE-benchmarks/quicksort-on-singly-linked-list.cpp' -source_filename = "PE-benchmarks/quicksort-on-singly-linked-list.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%struct.Node = type { i32, %struct.Node* } - -@.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 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 - -; 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 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 - %9 = load %struct.Node*, %struct.Node** %5, align 8 - %10 = getelementptr inbounds %struct.Node, %struct.Node* %9, i32 0, i32 0 - store i32 %8, i32* %10, align 8 - %11 = load %struct.Node**, %struct.Node*** %3, align 8 - %12 = load %struct.Node*, %struct.Node** %11, align 8 - %13 = load %struct.Node*, %struct.Node** %5, align 8 - %14 = getelementptr inbounds %struct.Node, %struct.Node* %13, i32 0, i32 1 - store %struct.Node* %12, %struct.Node** %14, align 8 - %15 = load %struct.Node*, %struct.Node** %5, align 8 - %16 = load %struct.Node**, %struct.Node*** %3, align 8 - store %struct.Node* %15, %struct.Node** %16, align 8 - ret void -} - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9printListP4Node(%struct.Node* noundef %0) #0 { - %2 = alloca %struct.Node*, align 8 - store %struct.Node* %0, %struct.Node** %2, align 8 - br label %3 - -3: ; preds = %6, %1 - %4 = load %struct.Node*, %struct.Node** %2, align 8 - %5 = icmp ne %struct.Node* %4, null - br i1 %5, label %6, label %14 - -6: ; preds = %3 - %7 = load %struct.Node*, %struct.Node** %2, align 8 - %8 = getelementptr inbounds %struct.Node, %struct.Node* %7, i32 0, i32 0 - %9 = load i32, i32* %8, align 8 - %10 = call i32 (i8*, ...) @printf(i8* 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 !6 - -14: ; preds = %3 - %15 = 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, ...) #2 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef %struct.Node* @_Z7getTailP4Node(%struct.Node* noundef %0) #3 { - %2 = alloca %struct.Node*, align 8 - store %struct.Node* %0, %struct.Node** %2, align 8 - br label %3 - -3: ; preds = %13, %1 - %4 = load %struct.Node*, %struct.Node** %2, align 8 - %5 = icmp ne %struct.Node* %4, null - br i1 %5, label %6, label %11 - -6: ; preds = %3 - %7 = load %struct.Node*, %struct.Node** %2, align 8 - %8 = getelementptr inbounds %struct.Node, %struct.Node* %7, i32 0, i32 1 - %9 = load %struct.Node*, %struct.Node** %8, align 8 - %10 = icmp ne %struct.Node* %9, null - br label %11 - -11: ; preds = %6, %3 - %12 = phi i1 [ false, %3 ], [ %10, %6 ] - br i1 %12, label %13, label %17 - -13: ; preds = %11 - %14 = load %struct.Node*, %struct.Node** %2, align 8 - %15 = getelementptr inbounds %struct.Node, %struct.Node* %14, i32 0, i32 1 - %16 = load %struct.Node*, %struct.Node** %15, align 8 - store %struct.Node* %16, %struct.Node** %2, align 8 - br label %3, !llvm.loop !8 - -17: ; preds = %11 - %18 = load %struct.Node*, %struct.Node** %2, align 8 - ret %struct.Node* %18 -} - -; 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) #3 { - %5 = alloca %struct.Node*, align 8 - %6 = alloca %struct.Node*, align 8 - %7 = alloca %struct.Node**, align 8 - %8 = alloca %struct.Node**, align 8 - %9 = alloca %struct.Node*, align 8 - %10 = alloca %struct.Node*, align 8 - %11 = alloca %struct.Node*, align 8 - %12 = alloca %struct.Node*, align 8 - %13 = alloca %struct.Node*, align 8 - store %struct.Node* %0, %struct.Node** %5, align 8 - store %struct.Node* %1, %struct.Node** %6, align 8 - store %struct.Node** %2, %struct.Node*** %7, align 8 - store %struct.Node** %3, %struct.Node*** %8, align 8 - %14 = load %struct.Node*, %struct.Node** %6, align 8 - store %struct.Node* %14, %struct.Node** %9, align 8 - store %struct.Node* null, %struct.Node** %10, align 8 - %15 = load %struct.Node*, %struct.Node** %5, align 8 - store %struct.Node* %15, %struct.Node** %11, align 8 - %16 = load %struct.Node*, %struct.Node** %9, align 8 - store %struct.Node* %16, %struct.Node** %12, align 8 - br label %17 - -17: ; preds = %61, %4 - %18 = load %struct.Node*, %struct.Node** %11, align 8 - %19 = load %struct.Node*, %struct.Node** %9, align 8 - %20 = icmp ne %struct.Node* %18, %19 - br i1 %20, label %21, label %62 - -21: ; preds = %17 - %22 = load %struct.Node*, %struct.Node** %11, align 8 - %23 = getelementptr inbounds %struct.Node, %struct.Node* %22, i32 0, i32 0 - %24 = load i32, i32* %23, align 8 - %25 = load %struct.Node*, %struct.Node** %9, align 8 - %26 = getelementptr inbounds %struct.Node, %struct.Node* %25, i32 0, i32 0 - %27 = load i32, i32* %26, align 8 - %28 = icmp slt i32 %24, %27 - br i1 %28, label %29, label %41 - -29: ; preds = %21 - %30 = load %struct.Node**, %struct.Node*** %7, align 8 - %31 = load %struct.Node*, %struct.Node** %30, align 8 - %32 = icmp eq %struct.Node* %31, null - br i1 %32, label %33, label %36 - -33: ; preds = %29 - %34 = load %struct.Node*, %struct.Node** %11, align 8 - %35 = load %struct.Node**, %struct.Node*** %7, align 8 - store %struct.Node* %34, %struct.Node** %35, align 8 - br label %36 - -36: ; preds = %33, %29 - %37 = load %struct.Node*, %struct.Node** %11, align 8 - store %struct.Node* %37, %struct.Node** %10, align 8 - %38 = load %struct.Node*, %struct.Node** %11, align 8 - %39 = getelementptr inbounds %struct.Node, %struct.Node* %38, i32 0, i32 1 - %40 = load %struct.Node*, %struct.Node** %39, align 8 - store %struct.Node* %40, %struct.Node** %11, align 8 - br label %61 - -41: ; preds = %21 - %42 = load %struct.Node*, %struct.Node** %10, align 8 - %43 = icmp ne %struct.Node* %42, null - br i1 %43, label %44, label %50 - -44: ; preds = %41 - %45 = load %struct.Node*, %struct.Node** %11, align 8 - %46 = getelementptr inbounds %struct.Node, %struct.Node* %45, i32 0, i32 1 - %47 = load %struct.Node*, %struct.Node** %46, align 8 - %48 = load %struct.Node*, %struct.Node** %10, align 8 - %49 = getelementptr inbounds %struct.Node, %struct.Node* %48, i32 0, i32 1 - store %struct.Node* %47, %struct.Node** %49, align 8 - br label %50 - -50: ; preds = %44, %41 - %51 = load %struct.Node*, %struct.Node** %11, align 8 - %52 = getelementptr inbounds %struct.Node, %struct.Node* %51, i32 0, i32 1 - %53 = load %struct.Node*, %struct.Node** %52, align 8 - store %struct.Node* %53, %struct.Node** %13, align 8 - %54 = load %struct.Node*, %struct.Node** %11, align 8 - %55 = getelementptr inbounds %struct.Node, %struct.Node* %54, i32 0, i32 1 - store %struct.Node* null, %struct.Node** %55, align 8 - %56 = load %struct.Node*, %struct.Node** %11, align 8 - %57 = load %struct.Node*, %struct.Node** %12, align 8 - %58 = getelementptr inbounds %struct.Node, %struct.Node* %57, i32 0, i32 1 - store %struct.Node* %56, %struct.Node** %58, align 8 - %59 = load %struct.Node*, %struct.Node** %11, align 8 - store %struct.Node* %59, %struct.Node** %12, align 8 - %60 = load %struct.Node*, %struct.Node** %13, align 8 - store %struct.Node* %60, %struct.Node** %11, align 8 - br label %61 - -61: ; preds = %50, %36 - br label %17, !llvm.loop !9 - -62: ; preds = %17 - %63 = load %struct.Node**, %struct.Node*** %7, align 8 - %64 = load %struct.Node*, %struct.Node** %63, align 8 - %65 = icmp eq %struct.Node* %64, null - br i1 %65, label %66, label %69 - -66: ; preds = %62 - %67 = load %struct.Node*, %struct.Node** %9, align 8 - %68 = load %struct.Node**, %struct.Node*** %7, align 8 - store %struct.Node* %67, %struct.Node** %68, align 8 - br label %69 - -69: ; preds = %66, %62 - %70 = load %struct.Node*, %struct.Node** %12, align 8 - %71 = load %struct.Node**, %struct.Node*** %8, align 8 - store %struct.Node* %70, %struct.Node** %71, align 8 - %72 = load %struct.Node*, %struct.Node** %9, align 8 - ret %struct.Node* %72 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* noundef %0, %struct.Node* noundef %1) #0 { - %3 = alloca %struct.Node*, align 8 - %4 = alloca %struct.Node*, align 8 - %5 = alloca %struct.Node*, align 8 - %6 = alloca %struct.Node*, align 8 - %7 = alloca %struct.Node*, align 8 - %8 = alloca %struct.Node*, align 8 - %9 = alloca %struct.Node*, align 8 - store %struct.Node* %0, %struct.Node** %4, align 8 - store %struct.Node* %1, %struct.Node** %5, align 8 - %10 = load %struct.Node*, %struct.Node** %4, align 8 - %11 = icmp ne %struct.Node* %10, null - br i1 %11, label %12, label %16 - -12: ; preds = %2 - %13 = load %struct.Node*, %struct.Node** %4, align 8 - %14 = load %struct.Node*, %struct.Node** %5, align 8 - %15 = icmp eq %struct.Node* %13, %14 - br i1 %15, label %16, label %18 - -16: ; preds = %12, %2 - %17 = load %struct.Node*, %struct.Node** %4, align 8 - store %struct.Node* %17, %struct.Node** %3, align 8 - br label %57 - -18: ; preds = %12 - store %struct.Node* null, %struct.Node** %6, align 8 - store %struct.Node* null, %struct.Node** %7, align 8 - %19 = load %struct.Node*, %struct.Node** %4, align 8 - %20 = load %struct.Node*, %struct.Node** %5, align 8 - %21 = call 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 - %24 = icmp ne %struct.Node* %22, %23 - br i1 %24, label %25, label %48 - -25: ; preds = %18 - %26 = load %struct.Node*, %struct.Node** %6, align 8 - store %struct.Node* %26, %struct.Node** %9, align 8 - br label %27 - -27: ; preds = %33, %25 - %28 = load %struct.Node*, %struct.Node** %9, align 8 - %29 = getelementptr inbounds %struct.Node, %struct.Node* %28, i32 0, i32 1 - %30 = load %struct.Node*, %struct.Node** %29, align 8 - %31 = load %struct.Node*, %struct.Node** %8, align 8 - %32 = icmp ne %struct.Node* %30, %31 - br i1 %32, label %33, label %37 - -33: ; preds = %27 - %34 = load %struct.Node*, %struct.Node** %9, align 8 - %35 = getelementptr inbounds %struct.Node, %struct.Node* %34, i32 0, i32 1 - %36 = load %struct.Node*, %struct.Node** %35, align 8 - store %struct.Node* %36, %struct.Node** %9, align 8 - br label %27, !llvm.loop !10 - -37: ; preds = %27 - %38 = load %struct.Node*, %struct.Node** %9, align 8 - %39 = getelementptr inbounds %struct.Node, %struct.Node* %38, i32 0, i32 1 - store %struct.Node* null, %struct.Node** %39, align 8 - %40 = load %struct.Node*, %struct.Node** %6, align 8 - %41 = load %struct.Node*, %struct.Node** %9, align 8 - %42 = call 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 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 - %47 = getelementptr inbounds %struct.Node, %struct.Node* %46, i32 0, i32 1 - store %struct.Node* %45, %struct.Node** %47, align 8 - br label %48 - -48: ; preds = %37, %18 - %49 = load %struct.Node*, %struct.Node** %8, align 8 - %50 = getelementptr inbounds %struct.Node, %struct.Node* %49, i32 0, i32 1 - %51 = load %struct.Node*, %struct.Node** %50, align 8 - %52 = load %struct.Node*, %struct.Node** %7, align 8 - %53 = call 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 - %56 = load %struct.Node*, %struct.Node** %6, align 8 - store %struct.Node* %56, %struct.Node** %3, align 8 - br label %57 - -57: ; preds = %48, %16 - %58 = load %struct.Node*, %struct.Node** %3, align 8 - ret %struct.Node* %58 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9quickSortPP4Node(%struct.Node** noundef %0) #0 { - %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 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: 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** 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* 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* noundef %6) - 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) #2 - -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 = { 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 #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 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 #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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/rabin-karp-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/rabin-karp-algorithm.ll deleted file mode 100644 index 692f7cbd8..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/rabin-karp-algorithm.ll +++ /dev/null @@ -1,308 +0,0 @@ -; ModuleID = 'PE-benchmarks/rabin-karp-algorithm.cpp' -source_filename = "PE-benchmarks/rabin-karp-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z6searchPcS_i(i8* noundef %0, i8* noundef %1, i32 noundef %2) #0 { - %4 = alloca i8*, align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i8* %1, i8** %5, align 8 - store i32 %2, i32* %6, align 4 - %14 = load i8*, i8** %4, align 8 - %15 = call i64 @strlen(i8* noundef %14) #5 - %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* noundef %17) #5 - %19 = trunc i64 %18 to i32 - store i32 %19, i32* %8, align 4 - store i32 0, i32* %11, align 4 - store i32 0, i32* %12, align 4 - store i32 1, i32* %13, align 4 - store i32 0, i32* %9, align 4 - br label %20 - -20: ; preds = %30, %3 - %21 = load i32, i32* %9, align 4 - %22 = load i32, i32* %7, align 4 - %23 = sub nsw i32 %22, 1 - %24 = icmp slt i32 %21, %23 - br i1 %24, label %25, label %33 - -25: ; preds = %20 - %26 = load i32, i32* %13, align 4 - %27 = mul nsw i32 %26, 256 - %28 = load i32, i32* %6, align 4 - %29 = srem i32 %27, %28 - store i32 %29, i32* %13, align 4 - br label %30 - -30: ; preds = %25 - %31 = load i32, i32* %9, align 4 - %32 = add nsw i32 %31, 1 - store i32 %32, i32* %9, align 4 - br label %20, !llvm.loop !6 - -33: ; preds = %20 - store i32 0, i32* %9, align 4 - br label %34 - -34: ; preds = %61, %33 - %35 = load i32, i32* %9, align 4 - %36 = load i32, i32* %7, align 4 - %37 = icmp slt i32 %35, %36 - br i1 %37, label %38, label %64 - -38: ; preds = %34 - %39 = load i32, i32* %11, align 4 - %40 = mul nsw i32 256, %39 - %41 = load i8*, i8** %4, align 8 - %42 = load i32, i32* %9, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i8, i8* %41, i64 %43 - %45 = load i8, i8* %44, align 1 - %46 = sext i8 %45 to i32 - %47 = add nsw i32 %40, %46 - %48 = load i32, i32* %6, align 4 - %49 = srem i32 %47, %48 - store i32 %49, i32* %11, align 4 - %50 = load i32, i32* %12, align 4 - %51 = mul nsw i32 256, %50 - %52 = load i8*, i8** %5, align 8 - %53 = load i32, i32* %9, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i8, i8* %52, i64 %54 - %56 = load i8, i8* %55, align 1 - %57 = sext i8 %56 to i32 - %58 = add nsw i32 %51, %57 - %59 = load i32, i32* %6, align 4 - %60 = srem i32 %58, %59 - store i32 %60, i32* %12, align 4 - br label %61 - -61: ; preds = %38 - %62 = load i32, i32* %9, align 4 - %63 = add nsw i32 %62, 1 - store i32 %63, i32* %9, align 4 - br label %34, !llvm.loop !8 - -64: ; preds = %34 - store i32 0, i32* %9, align 4 - br label %65 - -65: ; preds = %148, %64 - %66 = load i32, i32* %9, align 4 - %67 = load i32, i32* %8, align 4 - %68 = load i32, i32* %7, align 4 - %69 = sub nsw i32 %67, %68 - %70 = icmp sle i32 %66, %69 - br i1 %70, label %71, label %151 - -71: ; preds = %65 - %72 = load i32, i32* %11, align 4 - %73 = load i32, i32* %12, align 4 - %74 = icmp eq i32 %72, %73 - br i1 %74, label %75, label %111 - -75: ; preds = %71 - store i32 0, i32* %10, align 4 - br label %76 - -76: ; preds = %98, %75 - %77 = load i32, i32* %10, align 4 - %78 = load i32, i32* %7, align 4 - %79 = icmp slt i32 %77, %78 - br i1 %79, label %80, label %101 - -80: ; preds = %76 - %81 = load i8*, i8** %5, align 8 - %82 = load i32, i32* %9, align 4 - %83 = load i32, i32* %10, align 4 - %84 = add nsw i32 %82, %83 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i8, i8* %81, i64 %85 - %87 = load i8, i8* %86, align 1 - %88 = sext i8 %87 to i32 - %89 = load i8*, i8** %4, align 8 - %90 = load i32, i32* %10, align 4 - %91 = sext i32 %90 to i64 - %92 = getelementptr inbounds i8, i8* %89, i64 %91 - %93 = load i8, i8* %92, align 1 - %94 = sext i8 %93 to i32 - %95 = icmp ne i32 %88, %94 - br i1 %95, label %96, label %97 - -96: ; preds = %80 - br label %101 - -97: ; preds = %80 - br label %98 - -98: ; preds = %97 - %99 = load i32, i32* %10, align 4 - %100 = add nsw i32 %99, 1 - store i32 %100, i32* %10, align 4 - br label %76, !llvm.loop !9 - -101: ; preds = %96, %76 - %102 = load i32, i32* %10, align 4 - %103 = load i32, i32* %7, align 4 - %104 = icmp eq i32 %102, %103 - br i1 %104, label %105, label %110 - -105: ; preds = %101 - %106 = call noundef 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 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 - br label %111 - -111: ; preds = %110, %71 - %112 = load i32, i32* %9, align 4 - %113 = load i32, i32* %8, align 4 - %114 = load i32, i32* %7, align 4 - %115 = sub nsw i32 %113, %114 - %116 = icmp slt i32 %112, %115 - br i1 %116, label %117, label %147 - -117: ; preds = %111 - %118 = load i32, i32* %12, align 4 - %119 = load i8*, i8** %5, align 8 - %120 = load i32, i32* %9, align 4 - %121 = sext i32 %120 to i64 - %122 = getelementptr inbounds i8, i8* %119, i64 %121 - %123 = load i8, i8* %122, align 1 - %124 = sext i8 %123 to i32 - %125 = load i32, i32* %13, align 4 - %126 = mul nsw i32 %124, %125 - %127 = sub nsw i32 %118, %126 - %128 = mul nsw i32 256, %127 - %129 = load i8*, i8** %5, align 8 - %130 = load i32, i32* %9, align 4 - %131 = load i32, i32* %7, align 4 - %132 = add nsw i32 %130, %131 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds i8, i8* %129, i64 %133 - %135 = load i8, i8* %134, align 1 - %136 = sext i8 %135 to i32 - %137 = add nsw i32 %128, %136 - %138 = load i32, i32* %6, align 4 - %139 = srem i32 %137, %138 - store i32 %139, i32* %12, align 4 - %140 = load i32, i32* %12, align 4 - %141 = icmp slt i32 %140, 0 - br i1 %141, label %142, label %146 - -142: ; preds = %117 - %143 = load i32, i32* %12, align 4 - %144 = load i32, i32* %6, align 4 - %145 = add nsw i32 %143, %144 - store i32 %145, i32* %12, align 4 - br label %146 - -146: ; preds = %142, %117 - br label %147 - -147: ; preds = %146, %111 - br label %148 - -148: ; preds = %147 - %149 = load i32, i32* %9, align 4 - %150 = add nsw i32 %149, 1 - store i32 %150, i32* %9, align 4 - br label %65, !llvm.loop !10 - -151: ; preds = %65 - ret void -} - -; Function Attrs: nounwind readonly willreturn -declare i64 @strlen(i8* noundef) #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) #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -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) #2 - -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)) #2 - -; 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 [5 x i8], align 1 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [16 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 getelementptr inbounds ([16 x i8], [16 x i8]* @__const.main.txt, i32 0, i32 0), i64 16, i1 false) - %6 = bitcast [5 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %6, i8* align 1 getelementptr inbounds ([5 x i8], [5 x i8]* @__const.main.pat, i32 0, i32 0), i64 5, i1 false) - store i32 101, i32* %4, align 4 - %7 = getelementptr inbounds [5 x i8], [5 x i8]* %3, i64 0, i64 0 - %8 = getelementptr inbounds [16 x i8], [16 x i8]* %2, i64 0, i64 0 - %9 = load i32, i32* %4, align 4 - call void @_Z6searchPcS_i(i8* noundef %7, i8* noundef %8, i32 noundef %9) - ret i32 0 -} - -; 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 = { 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 = { 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 = { "frame-pointer"="all" "no-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 = { nounwind readonly willreturn } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/rat-in-a-maze.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/rat-in-a-maze.ll deleted file mode 100644 index 3e5c11056..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/rat-in-a-maze.ll +++ /dev/null @@ -1,288 +0,0 @@ -; ModuleID = 'PE-benchmarks/rat-in-a-maze.cpp' -source_filename = "PE-benchmarks/rat-in-a-maze.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [5 x i8] c" %d \00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 -@.str.2 = private unnamed_addr constant [23 x i8] c"Solution doesn't exist\00", align 1 -@__const.main.maze = private unnamed_addr constant [4 x [4 x i32]] [[4 x i32] [i32 1, i32 0, i32 0, i32 0], [4 x i32] [i32 1, i32 1, i32 0, i32 1], [4 x i32] [i32 0, i32 1, i32 0, i32 0], [4 x i32] [i32 1, i32 1, i32 1, i32 1]], align 16 - -; Function Attrs: 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 - store i32 0, i32* %3, align 4 - br label %5 - -5: ; preds = %27, %1 - %6 = load i32, i32* %3, align 4 - %7 = icmp slt i32 %6, 4 - br i1 %7, label %8, label %30 - -8: ; preds = %5 - store i32 0, i32* %4, align 4 - br label %9 - -9: ; preds = %22, %8 - %10 = load i32, i32* %4, align 4 - %11 = icmp slt i32 %10, 4 - br i1 %11, label %12, label %25 - -12: ; preds = %9 - %13 = load [4 x i32]*, [4 x i32]** %2, align 8 - %14 = load i32, i32* %3, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [4 x i32], [4 x i32]* %13, i64 %15 - %17 = load i32, i32* %4, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [4 x i32], [4 x i32]* %16, i64 0, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = call i32 (i8*, ...) @printf(i8* 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 !6 - -25: ; preds = %9 - %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 !8 - -30: ; preds = %5 - ret void -} - -declare i32 @printf(i8* noundef, ...) #1 - -; 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 - %7 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - %8 = load i32, i32* %6, align 4 - %9 = icmp sge i32 %8, 0 - br i1 %9, label %10, label %30 - -10: ; preds = %3 - %11 = load i32, i32* %6, align 4 - %12 = icmp slt i32 %11, 4 - br i1 %12, label %13, label %30 - -13: ; preds = %10 - %14 = load i32, i32* %7, align 4 - %15 = icmp sge i32 %14, 0 - br i1 %15, label %16, label %30 - -16: ; preds = %13 - %17 = load i32, i32* %7, align 4 - %18 = icmp slt i32 %17, 4 - br i1 %18, label %19, label %30 - -19: ; preds = %16 - %20 = load [4 x i32]*, [4 x i32]** %5, align 8 - %21 = load i32, i32* %6, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds [4 x i32], [4 x i32]* %20, i64 %22 - %24 = load i32, i32* %7, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds [4 x i32], [4 x i32]* %23, i64 0, i64 %25 - %27 = load i32, i32* %26, align 4 - %28 = icmp eq i32 %27, 1 - br i1 %28, label %29, label %30 - -29: ; preds = %19 - store i1 true, i1* %4, align 1 - br label %31 - -30: ; preds = %19, %16, %13, %10, %3 - store i1 false, i1* %4, align 1 - br label %31 - -31: ; preds = %30, %29 - %32 = load i1, i1* %4, align 1 - ret i1 %32 -} - -; Function Attrs: 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 - store [4 x i32]* %0, [4 x i32]** %3, align 8 - %5 = bitcast [4 x [4 x i32]]* %4 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %5, i8 0, i64 64, i1 false) - %6 = load [4 x i32]*, [4 x i32]** %3, align 8 - %7 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %4, i64 0, i64 0 - %8 = call 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* 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]* noundef %14) - store i1 true, i1* %2, align 1 - br label %15 - -15: ; preds = %13, %11 - %16 = load i1, i1* %2, align 1 - ret i1 %16 -} - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #3 - -; 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 - %8 = alloca i32, align 4 - %9 = alloca [4 x i32]*, align 8 - store [4 x i32]* %0, [4 x i32]** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store [4 x i32]* %3, [4 x i32]** %9, align 8 - %10 = load i32, i32* %7, align 4 - %11 = icmp eq i32 %10, 3 - br i1 %11, label %12, label %23 - -12: ; preds = %4 - %13 = load i32, i32* %8, align 4 - %14 = icmp eq i32 %13, 3 - br i1 %14, label %15, label %23 - -15: ; preds = %12 - %16 = load [4 x i32]*, [4 x i32]** %9, align 8 - %17 = load i32, i32* %7, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [4 x i32], [4 x i32]* %16, i64 %18 - %20 = load i32, i32* %8, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds [4 x i32], [4 x i32]* %19, i64 0, i64 %21 - store i32 1, i32* %22, align 4 - store i1 true, i1* %5, align 1 - br label %66 - -23: ; preds = %12, %4 - %24 = load [4 x i32]*, [4 x i32]** %6, align 8 - %25 = load i32, i32* %7, align 4 - %26 = load i32, i32* %8, align 4 - %27 = call 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 - -30: ; preds = %23 - %31 = load [4 x i32]*, [4 x i32]** %9, align 8 - %32 = load i32, i32* %7, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds [4 x i32], [4 x i32]* %31, i64 %33 - %35 = load i32, i32* %8, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds [4 x i32], [4 x i32]* %34, i64 0, i64 %36 - store i32 1, i32* %37, align 4 - %38 = load [4 x i32]*, [4 x i32]** %6, align 8 - %39 = load i32, i32* %7, align 4 - %40 = add nsw i32 %39, 1 - %41 = load i32, i32* %8, align 4 - %42 = load [4 x i32]*, [4 x i32]** %9, align 8 - %43 = call 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 - -46: ; preds = %30 - store i1 true, i1* %5, align 1 - br label %66 - -47: ; preds = %30 - %48 = load [4 x i32]*, [4 x i32]** %6, align 8 - %49 = load i32, i32* %7, align 4 - %50 = load i32, i32* %8, align 4 - %51 = add nsw i32 %50, 1 - %52 = load [4 x i32]*, [4 x i32]** %9, align 8 - %53 = call 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 - -56: ; preds = %47 - store i1 true, i1* %5, align 1 - br label %66 - -57: ; preds = %47 - %58 = load [4 x i32]*, [4 x i32]** %9, align 8 - %59 = load i32, i32* %7, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds [4 x i32], [4 x i32]* %58, i64 %60 - %62 = load i32, i32* %8, align 4 - %63 = sext i32 %62 to i64 - %64 = getelementptr inbounds [4 x i32], [4 x i32]* %61, i64 0, i64 %63 - store i32 0, i32* %64, align 4 - store i1 false, i1* %5, align 1 - br label %66 - -65: ; preds = %23 - store i1 false, i1* %5, align 1 - br label %66 - -66: ; preds = %65, %57, %56, %46, %15 - %67 = load i1, i1* %5, align 1 - ret i1 %67 -} - -; Function Attrs: 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 noundef zeroext i1 @_Z9solveMazePA4_i([4 x i32]* noundef %4) - ret i32 0 -} - -; 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 = { 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, !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"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/reservoir-sampling.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/reservoir-sampling.ll deleted file mode 100644 index 9fc81c842..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/reservoir-sampling.ll +++ /dev/null @@ -1,228 +0,0 @@ -; ModuleID = 'PE-benchmarks/reservoir-sampling.cpp' -source_filename = "PE-benchmarks/reservoir-sampling.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z10printArrayPii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %6 - -6: ; preds = %18, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %7, %8 - br i1 %9, label %10, label %21 - -10: ; preds = %6 - %11 = load i32*, i32** %3, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - %15 = load i32, i32* %14, align 4 - %16 = call 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 !6 - -21: ; preds = %6 - %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 noundef 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 - -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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z12selectKItemsPiii(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 - %7 = alloca i32, align 4 - %8 = alloca i8*, align 8 - %9 = alloca i64, align 8 - %10 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %11 = load i32, i32* %6, align 4 - %12 = zext i32 %11 to i64 - %13 = call i8* @llvm.stacksave() - store i8* %13, i8** %8, align 8 - %14 = alloca i32, i64 %12, align 16 - store i64 %12, i64* %9, align 8 - store i32 0, i32* %7, align 4 - br label %15 - -15: ; preds = %28, %3 - %16 = load i32, i32* %7, align 4 - %17 = load i32, i32* %6, align 4 - %18 = icmp slt i32 %16, %17 - br i1 %18, label %19, label %31 - -19: ; preds = %15 - %20 = load i32*, i32** %4, align 8 - %21 = load i32, i32* %7, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds i32, i32* %20, i64 %22 - %24 = load i32, i32* %23, align 4 - %25 = load i32, i32* %7, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i32, i32* %14, i64 %26 - store i32 %24, i32* %27, align 4 - br label %28 - -28: ; preds = %19 - %29 = load i32, i32* %7, align 4 - %30 = add nsw i32 %29, 1 - store i32 %30, i32* %7, align 4 - br label %15, !llvm.loop !8 - -31: ; preds = %15 - %32 = call i64 @time(i64* noundef null) #6 - %33 = trunc i64 %32 to i32 - call void @srand(i32 noundef %33) #6 - br label %34 - -34: ; preds = %56, %31 - %35 = load i32, i32* %7, align 4 - %36 = load i32, i32* %5, align 4 - %37 = icmp slt i32 %35, %36 - br i1 %37, label %38, label %59 - -38: ; preds = %34 - %39 = call i32 @rand() #6 - %40 = load i32, i32* %7, align 4 - %41 = add nsw i32 %40, 1 - %42 = srem i32 %39, %41 - store i32 %42, i32* %10, align 4 - %43 = load i32, i32* %10, align 4 - %44 = load i32, i32* %6, align 4 - %45 = icmp slt i32 %43, %44 - br i1 %45, label %46, label %55 - -46: ; preds = %38 - %47 = load i32*, i32** %4, align 8 - %48 = load i32, i32* %7, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %47, i64 %49 - %51 = load i32, i32* %50, align 4 - %52 = load i32, i32* %10, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds i32, i32* %14, i64 %53 - store i32 %51, i32* %54, align 4 - br label %55 - -55: ; preds = %46, %38 - br label %56 - -56: ; preds = %55 - %57 = load i32, i32* %7, align 4 - %58 = add nsw i32 %57, 1 - store i32 %58, i32* %7, align 4 - br label %34, !llvm.loop !9 - -59: ; preds = %34 - %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* noundef %14, i32 noundef %61) - %62 = load i8*, i8** %8, align 8 - call void @llvm.stackrestore(i8* %62) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #2 - -; Function Attrs: nounwind -declare void @srand(i32 noundef) #3 - -; Function Attrs: nounwind -declare i64 @time(i64* noundef) #3 - -; Function Attrs: nounwind -declare i32 @rand() #3 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #4 { - %1 = alloca i32, align 4 - %2 = alloca [12 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [12 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([12 x i32]* @__const.main.stream to i8*), i64 48, i1 false) - store i32 12, i32* %3, align 4 - store i32 5, i32* %4, align 4 - %6 = getelementptr inbounds [12 x i32], [12 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = load i32, i32* %4, align 4 - call void @_Z12selectKItemsPiii(i32* noundef %6, i32 noundef %7, i32 noundef %8) - ret i32 0 -} - -; 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 = { 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 = { nofree nosync nounwind willreturn } -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, !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"} -!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 deleted file mode 100644 index 6dc686ac9..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/rotate-bits-of-an-integer.ll +++ /dev/null @@ -1,126 +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" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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 - -@_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 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #0 { - %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) #2 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) #2 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 - -attributes #0 = { 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 #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" } - -!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-llvm14/shortest-common-supersequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/shortest-common-supersequence.ll deleted file mode 100644 index eece22665..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/shortest-common-supersequence.ll +++ /dev/null @@ -1,308 +0,0 @@ -; ModuleID = 'PE-benchmarks/shortest-common-supersequence.cpp' -source_filename = "PE-benchmarks/shortest-common-supersequence.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -@__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 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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z8superSeqPcS_ii(i8* noundef %0, i8* noundef %1, i32 noundef %2, i32 noundef %3) #0 { - %5 = alloca i8*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i8*, align 8 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - store i8* %0, i8** %5, align 8 - store i8* %1, i8** %6, align 8 - store i32 %2, i32* %7, align 4 - store i32 %3, i32* %8, align 4 - %14 = load i32, i32* %7, align 4 - %15 = add nsw i32 %14, 1 - %16 = zext i32 %15 to i64 - %17 = load i32, i32* %8, align 4 - %18 = add nsw i32 %17, 1 - %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %9, align 8 - %21 = mul nuw i64 %16, %19 - %22 = alloca i32, i64 %21, align 16 - store i64 %16, i64* %10, align 8 - store i64 %19, i64* %11, align 8 - store i32 0, i32* %12, align 4 - br label %23 - -23: ; preds = %125, %4 - %24 = load i32, i32* %12, align 4 - %25 = load i32, i32* %7, align 4 - %26 = icmp sle i32 %24, %25 - br i1 %26, label %27, label %128 - -27: ; preds = %23 - store i32 0, i32* %13, align 4 - br label %28 - -28: ; preds = %121, %27 - %29 = load i32, i32* %13, align 4 - %30 = load i32, i32* %8, align 4 - %31 = icmp sle i32 %29, %30 - br i1 %31, label %32, label %124 - -32: ; preds = %28 - %33 = load i32, i32* %12, align 4 - %34 = icmp ne i32 %33, 0 - br i1 %34, label %44, label %35 - -35: ; preds = %32 - %36 = load i32, i32* %13, align 4 - %37 = load i32, i32* %12, align 4 - %38 = sext i32 %37 to i64 - %39 = mul nsw i64 %38, %19 - %40 = getelementptr inbounds i32, i32* %22, i64 %39 - %41 = load i32, i32* %13, align 4 - %42 = sext i32 %41 to i64 - %43 = getelementptr inbounds i32, i32* %40, i64 %42 - store i32 %36, i32* %43, align 4 - br label %120 - -44: ; preds = %32 - %45 = load i32, i32* %13, align 4 - %46 = icmp ne i32 %45, 0 - br i1 %46, label %56, label %47 - -47: ; preds = %44 - %48 = load i32, i32* %12, align 4 - %49 = load i32, i32* %12, align 4 - %50 = sext i32 %49 to i64 - %51 = mul nsw i64 %50, %19 - %52 = getelementptr inbounds i32, i32* %22, i64 %51 - %53 = load i32, i32* %13, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %52, i64 %54 - store i32 %48, i32* %55, align 4 - br label %119 - -56: ; preds = %44 - %57 = load i8*, i8** %5, align 8 - %58 = load i32, i32* %12, align 4 - %59 = sub nsw i32 %58, 1 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i8, i8* %57, i64 %60 - %62 = load i8, i8* %61, align 1 - %63 = sext i8 %62 to i32 - %64 = load i8*, i8** %6, align 8 - %65 = load i32, i32* %13, align 4 - %66 = sub nsw i32 %65, 1 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds i8, i8* %64, i64 %67 - %69 = load i8, i8* %68, align 1 - %70 = sext i8 %69 to i32 - %71 = icmp eq i32 %63, %70 - br i1 %71, label %72, label %91 - -72: ; preds = %56 - %73 = load i32, i32* %12, align 4 - %74 = sub nsw i32 %73, 1 - %75 = sext i32 %74 to i64 - %76 = mul nsw i64 %75, %19 - %77 = getelementptr inbounds i32, i32* %22, i64 %76 - %78 = load i32, i32* %13, align 4 - %79 = sub nsw i32 %78, 1 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds i32, i32* %77, i64 %80 - %82 = load i32, i32* %81, align 4 - %83 = add nsw i32 1, %82 - %84 = load i32, i32* %12, align 4 - %85 = sext i32 %84 to i64 - %86 = mul nsw i64 %85, %19 - %87 = getelementptr inbounds i32, i32* %22, i64 %86 - %88 = load i32, i32* %13, align 4 - %89 = sext i32 %88 to i64 - %90 = getelementptr inbounds i32, i32* %87, i64 %89 - store i32 %83, i32* %90, align 4 - br label %118 - -91: ; preds = %56 - %92 = load i32, i32* %12, align 4 - %93 = sub nsw i32 %92, 1 - %94 = sext i32 %93 to i64 - %95 = mul nsw i64 %94, %19 - %96 = getelementptr inbounds i32, i32* %22, i64 %95 - %97 = load i32, i32* %13, align 4 - %98 = sext i32 %97 to i64 - %99 = getelementptr inbounds i32, i32* %96, i64 %98 - %100 = load i32, i32* %12, align 4 - %101 = sext i32 %100 to i64 - %102 = mul nsw i64 %101, %19 - %103 = getelementptr inbounds i32, i32* %22, i64 %102 - %104 = load i32, i32* %13, align 4 - %105 = sub nsw i32 %104, 1 - %106 = sext i32 %105 to i64 - %107 = getelementptr inbounds i32, i32* %103, i64 %106 - %108 = call 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 - %112 = sext i32 %111 to i64 - %113 = mul nsw i64 %112, %19 - %114 = getelementptr inbounds i32, i32* %22, i64 %113 - %115 = load i32, i32* %13, align 4 - %116 = sext i32 %115 to i64 - %117 = getelementptr inbounds i32, i32* %114, i64 %116 - store i32 %110, i32* %117, align 4 - br label %118 - -118: ; preds = %91, %72 - br label %119 - -119: ; preds = %118, %47 - br label %120 - -120: ; preds = %119, %35 - br label %121 - -121: ; preds = %120 - %122 = load i32, i32* %13, align 4 - %123 = add nsw i32 %122, 1 - store i32 %123, i32* %13, align 4 - br label %28, !llvm.loop !6 - -124: ; preds = %28 - br label %125 - -125: ; preds = %124 - %126 = load i32, i32* %12, align 4 - %127 = add nsw i32 %126, 1 - store i32 %127, i32* %12, align 4 - br label %23, !llvm.loop !8 - -128: ; preds = %23 - %129 = load i32, i32* %7, align 4 - %130 = sext i32 %129 to i64 - %131 = mul nsw i64 %130, %19 - %132 = getelementptr inbounds i32, i32* %22, i64 %131 - %133 = load i32, i32* %8, align 4 - %134 = sext i32 %133 to i64 - %135 = getelementptr inbounds i32, i32* %132, i64 %134 - %136 = load i32, i32* %135, align 4 - %137 = load i8*, i8** %9, align 8 - call void @llvm.stackrestore(i8* %137) - ret i32 %136 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; 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) #2 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i8], align 1 - %3 = alloca [8 x i8], align 1 - store i32 0, i32* %1, align 4 - %4 = bitcast [7 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %4, i8* align 1 getelementptr inbounds ([7 x i8], [7 x i8]* @__const.main.X, i32 0, i32 0), i64 7, i1 false) - %5 = bitcast [8 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %5, i8* align 1 getelementptr inbounds ([8 x i8], [8 x i8]* @__const.main.Y, i32 0, i32 0), i64 8, i1 false) - %6 = call noundef 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* noundef %9) #7 - %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* noundef %12) #7 - %14 = trunc i64 %13 to i32 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -; Function Attrs: nounwind readonly willreturn -declare i64 @strlen(i8* noundef) #6 - -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 willreturn } -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 = { 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 "frame-pointer"="all" "no-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 = { nounwind readonly willreturn } - -!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"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/sieve-of-eratosthenes.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/sieve-of-eratosthenes.ll deleted file mode 100644 index b5fd1b503..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/sieve-of-eratosthenes.ll +++ /dev/null @@ -1,196 +0,0 @@ -; ModuleID = 'PE-benchmarks/sieve-of-eratosthenes.cpp' -source_filename = "PE-benchmarks/sieve-of-eratosthenes.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z19SieveOfEratosthenesi(i32 noundef %0) #0 { - %2 = alloca i32, align 4 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %8 = load i32, i32* %2, align 4 - %9 = add nsw i32 %8, 1 - %10 = zext i32 %9 to i64 - %11 = call i8* @llvm.stacksave() - store i8* %11, i8** %3, align 8 - %12 = alloca i8, i64 %10, align 16 - store i64 %10, i64* %4, align 8 - call void @llvm.memset.p0i8.i64(i8* align 16 %12, i8 1, i64 %10, i1 false) - store i32 2, i32* %5, align 4 - br label %13 - -13: ; preds = %45, %1 - %14 = load i32, i32* %5, align 4 - %15 = load i32, i32* %5, align 4 - %16 = mul nsw i32 %14, %15 - %17 = load i32, i32* %2, align 4 - %18 = icmp sle i32 %16, %17 - br i1 %18, label %19, label %48 - -19: ; preds = %13 - %20 = load i32, i32* %5, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i8, i8* %12, i64 %21 - %23 = load i8, i8* %22, align 1 - %24 = trunc i8 %23 to i1 - %25 = zext i1 %24 to i32 - %26 = icmp eq i32 %25, 1 - br i1 %26, label %27, label %44 - -27: ; preds = %19 - %28 = load i32, i32* %5, align 4 - %29 = load i32, i32* %5, align 4 - %30 = mul nsw i32 %28, %29 - store i32 %30, i32* %6, align 4 - br label %31 - -31: ; preds = %39, %27 - %32 = load i32, i32* %6, align 4 - %33 = load i32, i32* %2, align 4 - %34 = icmp sle i32 %32, %33 - br i1 %34, label %35, label %43 - -35: ; preds = %31 - %36 = load i32, i32* %6, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i8, i8* %12, i64 %37 - store i8 0, i8* %38, align 1 - br label %39 - -39: ; preds = %35 - %40 = load i32, i32* %5, align 4 - %41 = load i32, i32* %6, align 4 - %42 = add nsw i32 %41, %40 - store i32 %42, i32* %6, align 4 - br label %31, !llvm.loop !6 - -43: ; preds = %31 - br label %44 - -44: ; preds = %43, %19 - br label %45 - -45: ; preds = %44 - %46 = load i32, i32* %5, align 4 - %47 = add nsw i32 %46, 1 - store i32 %47, i32* %5, align 4 - br label %13, !llvm.loop !8 - -48: ; preds = %13 - store i32 2, i32* %7, align 4 - br label %49 - -49: ; preds = %64, %48 - %50 = load i32, i32* %7, align 4 - %51 = load i32, i32* %2, align 4 - %52 = icmp sle i32 %50, %51 - br i1 %52, label %53, label %67 - -53: ; preds = %49 - %54 = load i32, i32* %7, align 4 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i8, i8* %12, i64 %55 - %57 = load i8, i8* %56, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %63 - -59: ; preds = %53 - %60 = load i32, i32* %7, align 4 - %61 = call 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 - br label %64 - -64: ; preds = %63 - %65 = load i32, i32* %7, align 4 - %66 = add nsw i32 %65, 1 - store i32 %66, i32* %7, align 4 - br label %49, !llvm.loop !9 - -67: ; preds = %49 - %68 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %68) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #2 - -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) #3 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #4 { - %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 noundef 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 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 noundef %8) - ret i32 0 -} - -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) #3 - -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)) #3 - -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 willreturn } -attributes #2 = { argmemonly nofree nounwind willreturn writeonly } -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" } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/snake-ladder.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/snake-ladder.ll deleted file mode 100644 index 571b74ca3..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/snake-ladder.ll +++ /dev/null @@ -1,2603 +0,0 @@ -; ModuleID = 'PE-benchmarks/snake-ladder.cpp' -source_filename = "PE-benchmarks/snake-ladder.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::queue" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { %struct.queueEntry**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%struct.queueEntry = type { i32, i32 } -%"struct.std::_Deque_iterator" = type { %struct.queueEntry*, %struct.queueEntry*, %struct.queueEntry*, %struct.queueEntry** } -%"class.std::allocator" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.std::__new_allocator.1" = type { i8 } -%"class.std::__new_allocator" = type { i8 } - -$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEEC2IS3_vEEv = comdat any - -$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE4pushERKS0_ = comdat any - -$_ZNKSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5emptyEv = comdat any - -$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5frontEv = comdat any - -$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE3popEv = comdat any - -$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EED2Ev = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE15_M_destroy_dataESt15_Deque_iteratorIS0_RS0_PS0_ES6_RKS1_ = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE3endEv = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_ = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_destroy_nodesEPPS0_S4_ = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_ = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZNSt15__new_allocatorI10queueEntryE10deallocateEPS0_m = comdat any - -$_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv = comdat any - -$_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt15__new_allocatorIP10queueEntryE10deallocateEPS1_m = comdat any - -$_ZNSt15__new_allocatorIP10queueEntryED2Ev = comdat any - -$_ZNSt15__new_allocatorI10queueEntryED2Ev = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EEC2Ev = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_initialize_mapEm = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_Deque_impl_dataC2Ev = comdat any - -$_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_allocate_mapEm = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_create_nodesEPPS0_S4_ = comdat any - -$_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_ = comdat any - -$_ZNSt15__new_allocatorIP10queueEntryE8allocateEmPKv = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv = comdat any - -$_ZNSt15__new_allocatorI10queueEntryE8allocateEmPKv = comdat any - -$_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE9push_backERKS0_ = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_back_auxIJRKS0_EEEvDpOT_ = comdat any - -$_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE = comdat any - -$_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv = comdat any - -$_ZNKSt5dequeI10queueEntrySaIS0_EE8max_sizeEv = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE22_M_reserve_map_at_backEm = comdat any - -$_ZStmiRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_ = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE11_S_max_sizeERKS1_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S3_ = comdat any - -$_ZSt13copy_backwardIPP10queueEntryS2_ET0_T_S4_S3_ = comdat any - -$_ZSt13__copy_move_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any - -$_ZSt12__miter_baseIPP10queueEntryET_S3_ = comdat any - -$_ZSt12__niter_wrapIPP10queueEntryET_RKS3_S3_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any - -$_ZSt12__niter_baseIPP10queueEntryET_S3_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIP10queueEntryS4_EEPT0_PT_S8_S6_ = comdat any - -$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIP10queueEntryS4_EEvPT_PT0_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIP10queueEntryS4_EEPT0_PT_S8_S6_ = comdat any - -$_ZNKSt5dequeI10queueEntrySaIS0_EE5emptyEv = comdat any - -$_ZSteqRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_ = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE5frontEv = comdat any - -$_ZNKSt15_Deque_iteratorI10queueEntryRS0_PS0_EdeEv = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_front_auxEv = comdat any - -@_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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z16getMinDiceThrowsPii(i32* noundef %0, i32 noundef %1) #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca %"class.std::queue", align 8 - %8 = alloca %struct.queueEntry, align 4 - %9 = alloca i8*, align 8 - %10 = alloca i32, align 4 - %11 = alloca %struct.queueEntry, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca %struct.queueEntry, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %15 = load i32, i32* %4, align 4 - %16 = sext i32 %15 to i64 - %17 = call noalias noundef nonnull i8* @_Znam(i64 noundef %16) #13 - store i8* %17, i8** %5, align 8 - store i32 0, i32* %6, align 4 - br label %18 - -18: ; preds = %27, %2 - %19 = load i32, i32* %6, align 4 - %20 = load i32, i32* %4, align 4 - %21 = icmp slt i32 %19, %20 - br i1 %21, label %22, label %30 - -22: ; preds = %18 - %23 = load i8*, i8** %5, align 8 - %24 = load i32, i32* %6, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i8, i8* %23, i64 %25 - store i8 0, i8* %26, align 1 - br label %27 - -27: ; preds = %22 - %28 = load i32, i32* %6, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %6, align 4 - br label %18, !llvm.loop !6 - -30: ; preds = %18 - 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"* 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 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 - %38 = xor i1 %36, true - br i1 %38, label %39, label %109 - -39: ; preds = %37 - %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 - %42 = bitcast %struct.queueEntry* %11 to i8* - %43 = bitcast %struct.queueEntry* %40 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %42, i8* align 4 %43, i64 8, i1 false) - %44 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %11, i32 0, i32 0 - %45 = load i32, i32* %44, align 4 - store i32 %45, i32* %12, align 4 - %46 = load i32, i32* %12, align 4 - %47 = load i32, i32* %4, align 4 - %48 = sub nsw i32 %47, 1 - %49 = icmp eq i32 %46, %48 - br i1 %49, label %50, label %55 - -50: ; preds = %41 - br label %109 - -51: ; preds = %102, %55, %39, %35, %30 - %52 = landingpad { i8*, i32 } - cleanup - %53 = extractvalue { i8*, i32 } %52, 0 - store i8* %53, i8** %9, align 8 - %54 = extractvalue { i8*, i32 } %52, 1 - store i32 %54, i32* %10, align 4 - call void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %7) #14 - br label %112 - -55: ; preds = %41 - invoke void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE3popEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %7) - to label %56 unwind label %51 - -56: ; preds = %55 - %57 = load i32, i32* %12, align 4 - %58 = add nsw i32 %57, 1 - store i32 %58, i32* %13, align 4 - br label %59 - -59: ; preds = %105, %56 - %60 = load i32, i32* %13, align 4 - %61 = load i32, i32* %12, align 4 - %62 = add nsw i32 %61, 6 - %63 = icmp sle i32 %60, %62 - br i1 %63, label %64, label %68 - -64: ; preds = %59 - %65 = load i32, i32* %13, align 4 - %66 = load i32, i32* %4, align 4 - %67 = icmp slt i32 %65, %66 - br label %68 - -68: ; preds = %64, %59 - %69 = phi i1 [ false, %59 ], [ %67, %64 ] - br i1 %69, label %70, label %108 - -70: ; preds = %68 - %71 = load i8*, i8** %5, align 8 - %72 = load i32, i32* %13, align 4 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds i8, i8* %71, i64 %73 - %75 = load i8, i8* %74, align 1 - %76 = trunc i8 %75 to i1 - br i1 %76, label %104, label %77 - -77: ; preds = %70 - %78 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %11, i32 0, i32 1 - %79 = load i32, i32* %78, align 4 - %80 = add nsw i32 %79, 1 - %81 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %14, i32 0, i32 1 - store i32 %80, i32* %81, align 4 - %82 = load i8*, i8** %5, align 8 - %83 = load i32, i32* %13, align 4 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds i8, i8* %82, i64 %84 - store i8 1, i8* %85, align 1 - %86 = load i32*, i32** %3, align 8 - %87 = load i32, i32* %13, align 4 - %88 = sext i32 %87 to i64 - %89 = getelementptr inbounds i32, i32* %86, i64 %88 - %90 = load i32, i32* %89, align 4 - %91 = icmp ne i32 %90, -1 - br i1 %91, label %92, label %99 - -92: ; preds = %77 - %93 = load i32*, i32** %3, align 8 - %94 = load i32, i32* %13, align 4 - %95 = sext i32 %94 to i64 - %96 = getelementptr inbounds i32, i32* %93, i64 %95 - %97 = load i32, i32* %96, align 4 - %98 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %14, i32 0, i32 0 - store i32 %97, i32* %98, align 4 - br label %102 - -99: ; preds = %77 - %100 = load i32, i32* %13, align 4 - %101 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %14, i32 0, i32 0 - store i32 %100, i32* %101, align 4 - br label %102 - -102: ; preds = %99, %92 - invoke void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE4pushERKS0_(%"class.std::queue"* 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 - br label %104 - -104: ; preds = %103, %70 - br label %105 - -105: ; preds = %104 - %106 = load i32, i32* %13, align 4 - %107 = add nsw i32 %106, 1 - store i32 %107, i32* %13, align 4 - br label %59, !llvm.loop !8 - -108: ; preds = %68 - 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"* noundef nonnull align 8 dereferenceable(80) %7) #14 - ret i32 %111 - -112: ; preds = %51 - %113 = load i8*, i8** %9, align 8 - %114 = load i32, i32* %10, align 4 - %115 = insertvalue { i8*, i32 } undef, i8* %113, 0 - %116 = insertvalue { i8*, i32 } %115, i32 %114, 1 - resume { i8*, i32 } %116 -} - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #1 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEEC2IS3_vEEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #2 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"* noundef nonnull align 8 dereferenceable(80) %4) - ret void -} - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #3 - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::queue"*, align 8 - %4 = alloca %struct.queueEntry*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %3, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %4, align 8 - %5 = load %"class.std::queue"*, %"class.std::queue"** %3, align 8 - %6 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %5, i32 0, i32 0 - %7 = load %struct.queueEntry*, %struct.queueEntry** %4, align 8 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE9push_backERKS0_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %6, %struct.queueEntry* noundef nonnull align 4 dereferenceable(8) %7) - ret void -} - -declare i32 @__gxx_personality_v0(...) - -; 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) #4 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 noundef zeroext i1 @_ZNKSt5dequeI10queueEntrySaIS0_EE5emptyEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #14 - ret i1 %5 -} - -; 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) #4 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 noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZNSt5dequeI10queueEntrySaIS0_EE5frontEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #14 - ret %struct.queueEntry* %5 -} - -; 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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE3popEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %0) #4 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"* noundef nonnull align 8 dereferenceable(80) %4) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #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 @_ZNSt5dequeI10queueEntrySaIS0_EED2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #14 - ret void -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 30, i32* %2, align 4 - %6 = load i32, i32* %2, align 4 - %7 = zext i32 %6 to i64 - %8 = call i8* @llvm.stacksave() - store i8* %8, i8** %3, align 8 - %9 = alloca i32, i64 %7, align 16 - store i64 %7, i64* %4, align 8 - store i32 0, i32* %5, align 4 - br label %10 - -10: ; preds = %18, %0 - %11 = load i32, i32* %5, align 4 - %12 = load i32, i32* %2, align 4 - %13 = icmp slt i32 %11, %12 - br i1 %13, label %14, label %21 - -14: ; preds = %10 - %15 = load i32, i32* %5, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds i32, i32* %9, i64 %16 - store i32 -1, i32* %17, align 4 - br label %18 - -18: ; preds = %14 - %19 = load i32, i32* %5, align 4 - %20 = add nsw i32 %19, 1 - store i32 %20, i32* %5, align 4 - br label %10, !llvm.loop !10 - -21: ; preds = %10 - %22 = getelementptr inbounds i32, i32* %9, i64 2 - store i32 21, i32* %22, align 8 - %23 = getelementptr inbounds i32, i32* %9, i64 4 - store i32 7, i32* %23, align 16 - %24 = getelementptr inbounds i32, i32* %9, i64 10 - store i32 25, i32* %24, align 8 - %25 = getelementptr inbounds i32, i32* %9, i64 19 - store i32 28, i32* %25, align 4 - %26 = getelementptr inbounds i32, i32* %9, i64 26 - store i32 0, i32* %26, align 8 - %27 = getelementptr inbounds i32, i32* %9, i64 20 - store i32 8, i32* %27, align 16 - %28 = getelementptr inbounds i32, i32* %9, i64 16 - store i32 3, i32* %28, align 16 - %29 = getelementptr inbounds i32, i32* %9, i64 18 - store i32 6, i32* %29, align 8 - %30 = call noundef 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 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) - %35 = load i32, i32* %1, align 4 - ret i32 %35 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #8 - -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) #9 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #9 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #8 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EED2Ev(%"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 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) #14 - 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) #14 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %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) #14 - 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"* noundef nonnull align 8 dereferenceable(80) %11) #14 - ret void - -12: ; preds = %1 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %5, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %6, align 4 - %16 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %16) #14 - br label %17 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - call void @__clang_call_terminate(i8* %18) #15 - unreachable -} - -; 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) #4 comdat align 2 { - %5 = alloca %"class.std::deque"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %5, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %5, align 8 - ret void -} - -; Function Attrs: 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) #4 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %10) #14 - ret void -} - -; 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) #4 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %10) #14 - ret void -} - -; 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) #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"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev(%"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 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %5, i32 0, i32 0 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %8 = icmp ne %struct.queueEntry** %7, null - br i1 %8, label %9, label %29 - -9: ; preds = %1 - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 2 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 3 - %14 = load %struct.queueEntry**, %struct.queueEntry*** %13, align 8 - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load %struct.queueEntry**, %struct.queueEntry*** %18, align 8 - %20 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %19, i64 1 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_destroy_nodesEPPS0_S4_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, %struct.queueEntry** noundef %14, %struct.queueEntry** noundef %20) #14 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 0 - %24 = load %struct.queueEntry**, %struct.queueEntry*** %23, align 8 - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 1 - %28 = load i64, i64* %27, align 8 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, %struct.queueEntry** noundef %24, i64 noundef %28) #14 - 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"* noundef nonnull align 8 dereferenceable(80) %30) #14 - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #10 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #14 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable -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 #6 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load %struct.queueEntry*, %struct.queueEntry** %8, align 8 - store %struct.queueEntry* %9, %struct.queueEntry** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load %struct.queueEntry*, %struct.queueEntry** %12, align 8 - store %struct.queueEntry* %13, %struct.queueEntry** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load %struct.queueEntry*, %struct.queueEntry** %16, align 8 - store %struct.queueEntry* %17, %struct.queueEntry** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load %struct.queueEntry**, %struct.queueEntry*** %20, align 8 - store %struct.queueEntry** %21, %struct.queueEntry*** %18, align 8 - ret void -} - -; Function Attrs: 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) #4 comdat align 2 { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - %7 = alloca %struct.queueEntry**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %9, %struct.queueEntry*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - %12 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %13 = icmp ult %struct.queueEntry** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - %16 = load %struct.queueEntry*, %struct.queueEntry** %15, align 8 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, %struct.queueEntry* noundef %16) #14 - 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 !11 - -20: ; preds = %10 - ret void -} - -; Function Attrs: 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) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca %struct.queueEntry**, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::_Deque_base"*, align 8 - %10 = alloca %struct.queueEntry**, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"class.std::allocator.0", align 1 - %13 = alloca i8*, align 8 - %14 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %9, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %10, align 8 - store i64 %2, i64* %11, align 8 - %15 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %9, align 8 - call void @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv(%"class.std::allocator.0"* sret(%"class.std::allocator.0") align 1 %12, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %15) #14 - %16 = load %struct.queueEntry**, %struct.queueEntry*** %10, align 8 - %17 = load i64, i64* %11, align 8 - store %"class.std::allocator.0"* %12, %"class.std::allocator.0"** %6, align 8 - store %struct.queueEntry** %16, %struct.queueEntry*** %7, align 8 - store i64 %17, i64* %8, align 8 - %18 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %19 = bitcast %"class.std::allocator.0"* %18 to %"class.std::__new_allocator.1"* - %20 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - %21 = load i64, i64* %8, align 8 - call void @_ZNSt15__new_allocatorIP10queueEntryE10deallocateEPS1_m(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %19, %struct.queueEntry** noundef %20, i64 noundef %21) - br label %22 - -22: ; preds = %3 - store %"class.std::allocator.0"* %12, %"class.std::allocator.0"** %5, align 8 - %23 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %5, align 8 - %24 = bitcast %"class.std::allocator.0"* %23 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIP10queueEntryED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %24) #14 - ret void - -25: ; No predecessors! - %26 = landingpad { i8*, i32 } - catch i8* null - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %13, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %14, align 4 - store %"class.std::allocator.0"* %12, %"class.std::allocator.0"** %4, align 8 - %29 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %30 = bitcast %"class.std::allocator.0"* %29 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIP10queueEntryED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %30) #14 - br label %31 - -31: ; preds = %25 - %32 = load i8*, i8** %13, align 8 - call void @__clang_call_terminate(i8* %32) #15 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -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 #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %4 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator"* - store %"class.std::allocator"* %5, %"class.std::allocator"** %2, align 8 - %6 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %7 = bitcast %"class.std::allocator"* %6 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorI10queueEntryED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #14 - ret void -} - -; 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) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %struct.queueEntry*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::_Deque_base"*, align 8 - %7 = alloca %struct.queueEntry*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %6, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %7, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %6, align 8 - %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 %"class.std::allocator"* - %11 = load %struct.queueEntry*, %struct.queueEntry** %7, align 8 - %12 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 8) - to label %13 unwind label %19 - -13: ; preds = %2 - store %"class.std::allocator"* %10, %"class.std::allocator"** %3, align 8 - store %struct.queueEntry* %11, %struct.queueEntry** %4, align 8 - store i64 %12, i64* %5, align 8 - %14 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %15 = bitcast %"class.std::allocator"* %14 to %"class.std::__new_allocator"* - %16 = load %struct.queueEntry*, %struct.queueEntry** %4, align 8 - %17 = load i64, i64* %5, align 8 - call void @_ZNSt15__new_allocatorI10queueEntryE10deallocateEPS0_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %15, %struct.queueEntry* noundef %16, i64 noundef %17) - br label %18 - -18: ; preds = %13 - ret void - -19: ; preds = %2 - %20 = landingpad { i8*, i32 } - catch i8* null - %21 = extractvalue { i8*, i32 } %20, 0 - call void @__clang_call_terminate(i8* %21) #15 - unreachable -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #4 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorI10queueEntryE10deallocateEPS0_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %struct.queueEntry* noundef %1, i64 noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %struct.queueEntry*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #16 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #11 - -; Function Attrs: 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) #6 comdat align 2 { - %3 = alloca %"class.std::__new_allocator.1"*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = bitcast %"class.std::allocator.0"* %0 to i8* - store i8* %8, i8** %6, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %7, align 8 - %9 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - %10 = 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) %9) #14 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store %"class.std::allocator"* %10, %"class.std::allocator"** %5, align 8 - %11 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %12 = bitcast %"class.std::allocator.0"* %11 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %12, %"class.std::__new_allocator.1"** %3, align 8 - %13 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - ret void -} - -; 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) #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"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIP10queueEntryE10deallocateEPS1_m(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, %struct.queueEntry** noundef %1, i64 noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator.1"*, %"class.std::__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* noundef %9) #16 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIP10queueEntryED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %2, align 8 - %3 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorI10queueEntryED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EEC2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #2 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"* 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"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #2 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"* noundef nonnull align 8 dereferenceable(80) %6) #14 - 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 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #14 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %5 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 dereferenceable(80) %10) #14 - ret void -} - -; 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) #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca %struct.queueEntry**, align 8 - %9 = alloca %struct.queueEntry**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call 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 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call 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"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call 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 - store %struct.queueEntry** %28, %struct.queueEntry*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load %struct.queueEntry**, %struct.queueEntry*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %35, i64 %42 - store %struct.queueEntry** %43, %struct.queueEntry*** %8, align 8 - %44 = load %struct.queueEntry**, %struct.queueEntry*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %44, i64 %45 - store %struct.queueEntry** %46, %struct.queueEntry*** %9, align 8 - %47 = load %struct.queueEntry**, %struct.queueEntry*** %8, align 8 - %48 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - invoke void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_create_nodesEPPS0_S4_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, %struct.queueEntry** noundef %47, %struct.queueEntry** noundef %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #14 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load %struct.queueEntry**, %struct.queueEntry*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, %struct.queueEntry** noundef %60, i64 noundef %64) #14 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store %struct.queueEntry** null, %struct.queueEntry*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #17 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load %struct.queueEntry**, %struct.queueEntry*** %8, align 8 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, %struct.queueEntry** noundef %80) #14 - %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"* noundef nonnull align 8 dereferenceable(32) %83, %struct.queueEntry** noundef %85) #14 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load %struct.queueEntry*, %struct.queueEntry** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store %struct.queueEntry* %90, %struct.queueEntry** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load %struct.queueEntry*, %struct.queueEntry** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call 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 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store %struct.queueEntry* %103, %struct.queueEntry** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #15 - unreachable - -116: ; preds = %54 - unreachable -} - -; 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"* 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 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store %struct.queueEntry** null, %struct.queueEntry*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %6) #14 - %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"* noundef nonnull align 8 dereferenceable(32) %7) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev(%"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 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store %struct.queueEntry* null, %struct.queueEntry** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store %struct.queueEntry* null, %struct.queueEntry** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store %struct.queueEntry* null, %struct.queueEntry** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store %struct.queueEntry** null, %struct.queueEntry*** %7, align 8 - ret void -} - -; Function Attrs: 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 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable -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) #2 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::allocator.0", align 1 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %7, align 8 - store i64 %1, i64* %8, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - call void @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv(%"class.std::allocator.0"* sret(%"class.std::allocator.0") align 1 %9, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12) #14 - %13 = load i64, i64* %8, align 8 - store %"class.std::allocator.0"* %9, %"class.std::allocator.0"** %3, align 8 - store i64 %13, i64* %4, align 8 - %14 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %15 = bitcast %"class.std::allocator.0"* %14 to %"class.std::__new_allocator.1"* - %16 = load i64, i64* %4, align 8 - %17 = invoke noundef %struct.queueEntry** @_ZNSt15__new_allocatorIP10queueEntryE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %15, i64 noundef %16, i8* noundef null) - to label %18 unwind label %22 - -18: ; preds = %2 - br label %19 - -19: ; preds = %18 - store %"class.std::allocator.0"* %9, %"class.std::allocator.0"** %6, align 8 - %20 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %21 = bitcast %"class.std::allocator.0"* %20 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIP10queueEntryED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %21) #14 - ret %struct.queueEntry** %17 - -22: ; preds = %2 - %23 = landingpad { i8*, i32 } - cleanup - %24 = extractvalue { i8*, i32 } %23, 0 - store i8* %24, i8** %10, align 8 - %25 = extractvalue { i8*, i32 } %23, 1 - store i32 %25, i32* %11, align 4 - store %"class.std::allocator.0"* %9, %"class.std::allocator.0"** %5, align 8 - %26 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %5, align 8 - %27 = bitcast %"class.std::allocator.0"* %26 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIP10queueEntryED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %27) #14 - br label %28 - -28: ; preds = %22 - %29 = load i8*, i8** %10, align 8 - %30 = load i32, i32* %11, align 4 - %31 = insertvalue { i8*, i32 } undef, i8* %29, 0 - %32 = insertvalue { i8*, i32 } %31, i32 %30, 1 - resume { i8*, i32 } %32 -} - -; 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) #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - %7 = alloca %struct.queueEntry**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %11, %struct.queueEntry*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - %14 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %15 = icmp ult %struct.queueEntry** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke 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 - %19 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - store %struct.queueEntry* %17, %struct.queueEntry** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - %22 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %21, i32 1 - store %struct.queueEntry** %22, %struct.queueEntry*** %7, align 8 - br label %12, !llvm.loop !12 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #14 - %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"* noundef nonnull align 8 dereferenceable(80) %10, %struct.queueEntry** noundef %30, %struct.queueEntry** noundef %31) #14 - invoke void @__cxa_rethrow() #17 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #15 - unreachable - -47: ; preds = %27 - unreachable -} - -declare void @__cxa_rethrow() - -declare void @__cxa_end_catch() - -; 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) #4 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %struct.queueEntry**, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store %struct.queueEntry** %6, %struct.queueEntry*** %7, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %9 = load %struct.queueEntry*, %struct.queueEntry** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store %struct.queueEntry* %9, %struct.queueEntry** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load %struct.queueEntry*, %struct.queueEntry** %11, align 8 - %13 = call noundef i64 @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv() #14 - %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: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %struct.queueEntry** @_ZNSt15__new_allocatorIP10queueEntryE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #0 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca %"class.std::__new_allocator.1"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator.1"* %8, %"class.std::__new_allocator.1"** %4, align 8 - %10 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - %11 = icmp ugt i64 %9, 1152921504606846975 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 2305843009213693951 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #17 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 8 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #13 - %21 = bitcast i8* %20 to %struct.queueEntry** - ret %struct.queueEntry** %21 -} - -; Function Attrs: noreturn -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 noundef nonnull i8* @_Znwm(i64 noundef) #1 - -; 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) #0 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator"* - %8 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 8) - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 %8, i64* %3, align 8 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %10 = bitcast %"class.std::allocator"* %9 to %"class.std::__new_allocator"* - %11 = load i64, i64* %3, align 8 - %12 = call noundef %struct.queueEntry* @_ZNSt15__new_allocatorI10queueEntryE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %10, i64 noundef %11, i8* noundef null) - ret %struct.queueEntry* %12 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %struct.queueEntry* @_ZNSt15__new_allocatorI10queueEntryE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #0 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 1152921504606846975 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 2305843009213693951 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #17 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 8 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #13 - %21 = bitcast i8* %20 to %struct.queueEntry* - ret %struct.queueEntry* %21 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv() #4 comdat align 2 { - %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 8) - ret i64 %1 -} - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca %struct.queueEntry*, align 8 - %5 = alloca %struct.queueEntry*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %struct.queueEntry*, align 8 - %8 = alloca %struct.queueEntry*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca %struct.queueEntry*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 0 - %17 = load %struct.queueEntry*, %struct.queueEntry** %16, align 8 - %18 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %19 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %19 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 2 - %23 = load %struct.queueEntry*, %struct.queueEntry** %22, align 8 - %24 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %23, i64 -1 - %25 = icmp ne %struct.queueEntry* %17, %24 - br i1 %25, label %26, label %56 - -26: ; preds = %2 - %27 = bitcast %"class.std::deque"* %11 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 %"class.std::allocator"* - %30 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %31 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %30, i32 0, i32 0 - %32 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %31 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %32, i32 0, i32 3 - %34 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %33, i32 0, i32 0 - %35 = load %struct.queueEntry*, %struct.queueEntry** %34, align 8 - %36 = load %struct.queueEntry*, %struct.queueEntry** %10, align 8 - store %"class.std::allocator"* %29, %"class.std::allocator"** %6, align 8 - store %struct.queueEntry* %35, %struct.queueEntry** %7, align 8 - store %struct.queueEntry* %36, %struct.queueEntry** %8, align 8 - %37 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %38 = bitcast %"class.std::allocator"* %37 to %"class.std::__new_allocator"* - %39 = load %struct.queueEntry*, %struct.queueEntry** %7, align 8 - %40 = load %struct.queueEntry*, %struct.queueEntry** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE(%struct.queueEntry* noundef nonnull align 4 dereferenceable(8) %40) #14 - store %"class.std::__new_allocator"* %38, %"class.std::__new_allocator"** %3, align 8 - store %struct.queueEntry* %39, %struct.queueEntry** %4, align 8 - store %struct.queueEntry* %41, %struct.queueEntry** %5, align 8 - %42 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %43 = load %struct.queueEntry*, %struct.queueEntry** %4, align 8 - %44 = bitcast %struct.queueEntry* %43 to i8* - %45 = load %struct.queueEntry*, %struct.queueEntry** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE(%struct.queueEntry* noundef nonnull align 4 dereferenceable(8) %45) #14 - %47 = bitcast %struct.queueEntry* %43 to i8* - %48 = bitcast %struct.queueEntry* %46 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %47, i8* align 4 %48, i64 8, i1 false) #14 - %49 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %50 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %49, i32 0, i32 0 - %51 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %50 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %52 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %51, i32 0, i32 3 - %53 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %52, i32 0, i32 0 - %54 = load %struct.queueEntry*, %struct.queueEntry** %53, align 8 - %55 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %54, i32 1 - store %struct.queueEntry* %55, %struct.queueEntry** %53, align 8 - br label %58 - -56: ; preds = %2 - %57 = load %struct.queueEntry*, %struct.queueEntry** %10, align 8 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_back_auxIJRKS0_EEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, %struct.queueEntry* noundef nonnull align 4 dereferenceable(8) %57) - br label %58 - -58: ; preds = %56, %26 - ret void -} - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca %struct.queueEntry*, align 8 - %5 = alloca %struct.queueEntry*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %struct.queueEntry*, align 8 - %8 = alloca %struct.queueEntry*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca %struct.queueEntry*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = call noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #14 - %13 = call noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #14 - %14 = icmp eq i64 %12, %13 - br i1 %14, label %15, label %16 - -15: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* noundef getelementptr inbounds ([48 x i8], [48 x i8]* @.str.1, i64 0, i64 0)) #17 - unreachable - -16: ; preds = %2 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) - %17 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %18 = call noundef %struct.queueEntry* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %17) - %19 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 3 - %23 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %22, i32 0, i32 3 - %24 = load %struct.queueEntry**, %struct.queueEntry*** %23, align 8 - %25 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %24, i64 1 - store %struct.queueEntry* %18, %struct.queueEntry** %25, align 8 - %26 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %27 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %26, i32 0, i32 0 - %28 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %27 to %"class.std::allocator"* - %29 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %29, i32 0, i32 0 - %31 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %30 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %32 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %31, i32 0, i32 3 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load %struct.queueEntry*, %struct.queueEntry** %33, align 8 - %35 = load %struct.queueEntry*, %struct.queueEntry** %10, align 8 - %36 = call noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE(%struct.queueEntry* noundef nonnull align 4 dereferenceable(8) %35) #14 - store %"class.std::allocator"* %28, %"class.std::allocator"** %6, align 8 - store %struct.queueEntry* %34, %struct.queueEntry** %7, align 8 - store %struct.queueEntry* %36, %struct.queueEntry** %8, align 8 - %37 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %38 = bitcast %"class.std::allocator"* %37 to %"class.std::__new_allocator"* - %39 = load %struct.queueEntry*, %struct.queueEntry** %7, align 8 - %40 = load %struct.queueEntry*, %struct.queueEntry** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE(%struct.queueEntry* noundef nonnull align 4 dereferenceable(8) %40) #14 - store %"class.std::__new_allocator"* %38, %"class.std::__new_allocator"** %3, align 8 - store %struct.queueEntry* %39, %struct.queueEntry** %4, align 8 - store %struct.queueEntry* %41, %struct.queueEntry** %5, align 8 - %42 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %43 = load %struct.queueEntry*, %struct.queueEntry** %4, align 8 - %44 = bitcast %struct.queueEntry* %43 to i8* - %45 = load %struct.queueEntry*, %struct.queueEntry** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE(%struct.queueEntry* noundef nonnull align 4 dereferenceable(8) %45) #14 - %47 = bitcast %struct.queueEntry* %43 to i8* - %48 = bitcast %struct.queueEntry* %46 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %47, i8* align 4 %48, i64 8, i1 false) #14 - %49 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %50 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %49, i32 0, i32 0 - %51 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %50 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %52 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %51, i32 0, i32 3 - %53 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %54 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %53, i32 0, i32 0 - %55 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %54 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %56 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %55, i32 0, i32 3 - %57 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %56, i32 0, i32 3 - %58 = load %struct.queueEntry**, %struct.queueEntry*** %57, align 8 - %59 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %58, i64 1 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %52, %struct.queueEntry** noundef %59) #14 - %60 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %60, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 3 - %64 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %63, i32 0, i32 1 - %65 = load %struct.queueEntry*, %struct.queueEntry** %64, align 8 - %66 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 3 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 0 - store %struct.queueEntry* %65, %struct.queueEntry** %70, align 8 - ret void -} - -; 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) #4 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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call 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) #14 - ret i64 %12 -} - -; 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) #4 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 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) #14 - %6 = call noundef i64 @_ZNSt5dequeI10queueEntrySaIS0_EE11_S_max_sizeERKS1_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5) #14 - ret i64 %6 -} - -; Function Attrs: noreturn -declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #12 - -; 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) #0 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load %struct.queueEntry**, %struct.queueEntry*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load %struct.queueEntry**, %struct.queueEntry*** %22, align 8 - %24 = ptrtoint %struct.queueEntry** %18 to i64 - %25 = ptrtoint %struct.queueEntry** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_reallocate_mapEmb(%"class.std::deque"* 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: 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) #4 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 noundef i64 @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv() #14 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load %struct.queueEntry**, %struct.queueEntry*** %10, align 8 - %12 = ptrtoint %struct.queueEntry** %8 to i64 - %13 = ptrtoint %struct.queueEntry** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = 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 i64 - %21 = sub nsw i64 %15, %20 - %22 = mul nsw i64 %5, %21 - %23 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 0 - %25 = load %struct.queueEntry*, %struct.queueEntry** %24, align 8 - %26 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 1 - %28 = load %struct.queueEntry*, %struct.queueEntry** %27, align 8 - %29 = ptrtoint %struct.queueEntry* %25 to i64 - %30 = ptrtoint %struct.queueEntry* %28 to i64 - %31 = sub i64 %29, %30 - %32 = sdiv exact i64 %31, 8 - %33 = add nsw i64 %22, %32 - %34 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 2 - %36 = load %struct.queueEntry*, %struct.queueEntry** %35, align 8 - %37 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %38 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %37, i32 0, i32 0 - %39 = load %struct.queueEntry*, %struct.queueEntry** %38, align 8 - %40 = ptrtoint %struct.queueEntry* %36 to i64 - %41 = ptrtoint %struct.queueEntry* %39 to i64 - %42 = sub i64 %40, %41 - %43 = sdiv exact i64 %42, 8 - %44 = add nsw i64 %33, %43 - ret i64 %44 -} - -; 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) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %5, align 8 - store i64 9223372036854775807, i64* %6, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - store %"class.std::allocator"* %8, %"class.std::allocator"** %4, align 8 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %10 = bitcast %"class.std::allocator"* %9 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %10, %"class.std::__new_allocator"** %3, align 8 - %11 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - store %"class.std::__new_allocator"* %11, %"class.std::__new_allocator"** %2, align 8 - %12 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - store i64 1152921504606846975, i64* %7, align 8 - %13 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef nonnull align 8 dereferenceable(8) %7) - to label %14 unwind label %16 - -14: ; preds = %1 - %15 = load i64, i64* %13, align 8 - ret i64 %15 - -16: ; preds = %1 - %17 = landingpad { i8*, i32 } - catch i8* null - %18 = extractvalue { i8*, i32 } %17, 0 - call void @__clang_call_terminate(i8* %18) #15 - unreachable -} - -; 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 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: 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) #0 comdat align 2 { - %4 = alloca %"class.std::deque"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8, align 1 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca %struct.queueEntry**, align 8 - %10 = alloca i64, align 8 - %11 = alloca %struct.queueEntry**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load %struct.queueEntry**, %struct.queueEntry*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load %struct.queueEntry**, %struct.queueEntry*** %24, align 8 - %26 = ptrtoint %struct.queueEntry** %19 to i64 - %27 = ptrtoint %struct.queueEntry** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load %struct.queueEntry**, %struct.queueEntry*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %56, i64 %63 - store %struct.queueEntry** %64, %struct.queueEntry*** %9, align 8 - %65 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load %struct.queueEntry**, %struct.queueEntry*** %70, align 8 - %72 = icmp ult %struct.queueEntry** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load %struct.queueEntry**, %struct.queueEntry*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load %struct.queueEntry**, %struct.queueEntry*** %84, align 8 - %86 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %85, i64 1 - %87 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - %88 = call 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 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load %struct.queueEntry**, %struct.queueEntry*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load %struct.queueEntry**, %struct.queueEntry*** %100, align 8 - %102 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %101, i64 1 - %103 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %103, i64 %104 - %106 = call 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 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call 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 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 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %130, i64 %137 - store %struct.queueEntry** %138, %struct.queueEntry*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load %struct.queueEntry**, %struct.queueEntry*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load %struct.queueEntry**, %struct.queueEntry*** %149, align 8 - %151 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %150, i64 1 - %152 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - %153 = call 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 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load %struct.queueEntry**, %struct.queueEntry*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, %struct.queueEntry** noundef %159, i64 noundef %164) #14 - %165 = load %struct.queueEntry**, %struct.queueEntry*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store %struct.queueEntry** %165, %struct.queueEntry*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, %struct.queueEntry** noundef %180) #14 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %185, i64 %186 - %188 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, %struct.queueEntry** noundef %188) #14 - ret void -} - -; 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) #0 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = call noundef %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %7) - %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %10 = call noundef %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %9) - %11 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %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: 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) #0 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = call noundef %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %7) - %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %10 = call noundef %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %9) - %11 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %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: 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) #0 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = call noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %7) #14 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %10 = call noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %9) #14 - %11 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %12 = call noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %11) #14 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %0) #4 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: 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) #4 comdat { - %3 = alloca %struct.queueEntry***, align 8 - %4 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry*** %0, %struct.queueEntry**** %3, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %4, align 8 - %5 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - ret %struct.queueEntry** %5 -} - -; Function Attrs: 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) #0 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %10 = call 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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %0) #4 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: 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) #0 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %10 = call noundef %struct.queueEntry** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIP10queueEntryS4_EEPT0_PT_S8_S6_(%struct.queueEntry** noundef %7, %struct.queueEntry** noundef %8, %struct.queueEntry** noundef %9) - ret %struct.queueEntry** %10 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %struct.queueEntry** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIP10queueEntryS4_EEPT0_PT_S8_S6_(%struct.queueEntry** noundef %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %2) #0 comdat align 2 { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - %7 = alloca i64, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %10 = ptrtoint %struct.queueEntry** %8 to i64 - %11 = ptrtoint %struct.queueEntry** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %18 = bitcast %struct.queueEntry** %17 to i8* - %19 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %20 = bitcast %struct.queueEntry** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %30 - -23: ; preds = %3 - %24 = load i64, i64* %7, align 8 - %25 = icmp eq i64 %24, 1 - br i1 %25, label %26, label %29 - -26: ; preds = %23 - %27 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %28 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIP10queueEntryS4_EEvPT_PT0_(%struct.queueEntry** noundef %27, %struct.queueEntry** noundef %28) - br label %29 - -29: ; preds = %26, %23 - br label %30 - -30: ; preds = %29, %16 - %31 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %32 = load i64, i64* %7, align 8 - %33 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %31, i64 %32 - ret %struct.queueEntry** %33 -} - -; 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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIP10queueEntryS4_EEvPT_PT0_(%struct.queueEntry** noundef %0, %struct.queueEntry** noundef %1) #4 comdat align 2 { - %3 = alloca %struct.queueEntry**, align 8 - %4 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %3, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %4, align 8 - %5 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %6 = load %struct.queueEntry*, %struct.queueEntry** %5, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %3, align 8 - store %struct.queueEntry* %6, %struct.queueEntry** %7, align 8 - ret void -} - -; 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) #0 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = call noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %7) #14 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %10 = call noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %9) #14 - %11 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %12 = call noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %11) #14 - %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: 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) #0 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %10 = call 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: 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) #0 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %10 = call noundef %struct.queueEntry** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIP10queueEntryS4_EEPT0_PT_S8_S6_(%struct.queueEntry** noundef %7, %struct.queueEntry** noundef %8, %struct.queueEntry** noundef %9) - ret %struct.queueEntry** %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef %struct.queueEntry** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIP10queueEntryS4_EEPT0_PT_S8_S6_(%struct.queueEntry** noundef %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %2) #4 comdat align 2 { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - %7 = alloca i64, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %10 = ptrtoint %struct.queueEntry** %8 to i64 - %11 = ptrtoint %struct.queueEntry** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %17, i64 %19 - %21 = bitcast %struct.queueEntry** %20 to i8* - %22 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %23 = bitcast %struct.queueEntry** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %34 - -26: ; preds = %3 - %27 = load i64, i64* %7, align 8 - %28 = icmp eq i64 %27, 1 - br i1 %28, label %29, label %33 - -29: ; preds = %26 - %30 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %31 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %30, i64 -1 - %32 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIP10queueEntryS4_EEvPT_PT0_(%struct.queueEntry** noundef %31, %struct.queueEntry** noundef %32) - br label %33 - -33: ; preds = %29, %26 - br label %34 - -34: ; preds = %33, %16 - %35 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %36 = load i64, i64* %7, align 8 - %37 = sub i64 0, %36 - %38 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %35, i64 %37 - ret %struct.queueEntry** %38 -} - -; 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) #4 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call 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) #14 - ret i1 %12 -} - -; 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) #4 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %struct.queueEntry*, %struct.queueEntry** %6, align 8 - %8 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 0 - %10 = load %struct.queueEntry*, %struct.queueEntry** %9, align 8 - %11 = icmp eq %struct.queueEntry* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #4 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"* noundef nonnull align 8 dereferenceable(80) %4) #14 - %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) #14 - ret %struct.queueEntry* %5 -} - -; 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) #4 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load %struct.queueEntry*, %struct.queueEntry** %4, align 8 - ret %struct.queueEntry* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %struct.queueEntry*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %struct.queueEntry*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 0 - %13 = load %struct.queueEntry*, %struct.queueEntry** %12, align 8 - %14 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 2 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 2 - %19 = load %struct.queueEntry*, %struct.queueEntry** %18, align 8 - %20 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %19, i64 -1 - %21 = icmp ne %struct.queueEntry* %13, %20 - br i1 %21, label %22, label %43 - -22: ; preds = %1 - %23 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %24 = 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) %23) #14 - %25 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %26 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %25, i32 0, i32 0 - %27 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %26 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %28 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %27, i32 0, i32 2 - %29 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %28, i32 0, i32 0 - %30 = load %struct.queueEntry*, %struct.queueEntry** %29, align 8 - store %"class.std::allocator"* %24, %"class.std::allocator"** %4, align 8 - store %struct.queueEntry* %30, %struct.queueEntry** %5, align 8 - %31 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %32 = bitcast %"class.std::allocator"* %31 to %"class.std::__new_allocator"* - %33 = load %struct.queueEntry*, %struct.queueEntry** %5, align 8 - store %"class.std::__new_allocator"* %32, %"class.std::__new_allocator"** %2, align 8 - store %struct.queueEntry* %33, %struct.queueEntry** %3, align 8 - %34 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %35 = load %struct.queueEntry*, %struct.queueEntry** %3, align 8 - %36 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %37 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %36, i32 0, i32 0 - %38 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %37 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %38, i32 0, i32 2 - %40 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %39, i32 0, i32 0 - %41 = load %struct.queueEntry*, %struct.queueEntry** %40, align 8 - %42 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %41, i32 1 - store %struct.queueEntry* %42, %struct.queueEntry** %40, align 8 - br label %45 - -43: ; preds = %1 - invoke void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_front_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) - to label %44 unwind label %46 - -44: ; preds = %43 - br label %45 - -45: ; preds = %44, %22 - ret void - -46: ; preds = %43 - %47 = landingpad { i8*, i32 } - catch i8* null - %48 = extractvalue { i8*, i32 } %47, 0 - call void @__clang_call_terminate(i8* %48) #15 - unreachable -} - -; 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) #4 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %struct.queueEntry*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %struct.queueEntry*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %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) #14 - %10 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %11 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %10, i32 0, i32 0 - %12 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %11 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %12, i32 0, i32 2 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %13, i32 0, i32 0 - %15 = load %struct.queueEntry*, %struct.queueEntry** %14, align 8 - store %"class.std::allocator"* %9, %"class.std::allocator"** %4, align 8 - store %struct.queueEntry* %15, %struct.queueEntry** %5, align 8 - %16 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %17 = bitcast %"class.std::allocator"* %16 to %"class.std::__new_allocator"* - %18 = load %struct.queueEntry*, %struct.queueEntry** %5, align 8 - store %"class.std::__new_allocator"* %17, %"class.std::__new_allocator"** %2, align 8 - store %struct.queueEntry* %18, %struct.queueEntry** %3, align 8 - %19 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %20 = load %struct.queueEntry*, %struct.queueEntry** %3, align 8 - %21 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %22 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %23 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %23 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %24, i32 0, i32 2 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %25, i32 0, i32 1 - %27 = load %struct.queueEntry*, %struct.queueEntry** %26, align 8 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %21, %struct.queueEntry* noundef %27) #14 - %28 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %29 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %28, 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 2 - %32 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %33 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %32, i32 0, i32 0 - %34 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %33 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %35 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %34, i32 0, i32 2 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %35, i32 0, i32 3 - %37 = load %struct.queueEntry**, %struct.queueEntry*** %36, align 8 - %38 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %37, i64 1 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %31, %struct.queueEntry** noundef %38) #14 - %39 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %40 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %39, i32 0, i32 0 - %41 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %40 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %42 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %41, i32 0, i32 2 - %43 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %42, i32 0, i32 1 - %44 = load %struct.queueEntry*, %struct.queueEntry** %43, align 8 - %45 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %46 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %45, i32 0, i32 0 - %47 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %46 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %48 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %47, i32 0, i32 2 - %49 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %48, i32 0, i32 0 - store %struct.queueEntry* %44, %struct.queueEntry** %49, align 8 - ret void -} - -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 = { 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 #2 = { 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 #3 = { argmemonly nofree nounwind willreturn writeonly } -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 = { 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 = { nofree nosync nounwind willreturn } -attributes #9 = { "frame-pointer"="all" "no-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 = { noinline noreturn nounwind } -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 = { builtin allocsize(0) } -attributes #14 = { nounwind } -attributes #15 = { noreturn nounwind } -attributes #16 = { builtin nounwind } -attributes #17 = { noreturn } - -!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"} -!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-llvm14/sort-array-wave-form-2.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/sort-array-wave-form-2.ll deleted file mode 100644 index a782743a5..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/sort-array-wave-form-2.ll +++ /dev/null @@ -1,209 +0,0 @@ -; ModuleID = 'PE-benchmarks/sort-array-wave-form-2.cpp' -source_filename = "PE-benchmarks/sort-array-wave-form-2.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@__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 global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z4swapPiS_(i32* noundef %0, i32* noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %6, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %3, align 8 - store i32 %9, i32* %10, align 4 - %11 = load i32, i32* %5, align 4 - %12 = load i32*, i32** %4, align 8 - store i32 %11, i32* %12, align 4 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z10sortInWavePii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %6 - -6: ; preds = %65, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %7, %8 - br i1 %9, label %10, label %68 - -10: ; preds = %6 - %11 = load i32, i32* %5, align 4 - %12 = icmp sgt i32 %11, 0 - br i1 %12, label %13, label %36 - -13: ; preds = %10 - %14 = load i32*, i32** %3, align 8 - %15 = load i32, i32* %5, align 4 - %16 = sub nsw i32 %15, 1 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds i32, i32* %14, i64 %17 - %19 = load i32, i32* %18, align 4 - %20 = load i32*, i32** %3, align 8 - %21 = load i32, i32* %5, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds i32, i32* %20, i64 %22 - %24 = load i32, i32* %23, align 4 - %25 = icmp sgt i32 %19, %24 - br i1 %25, label %26, label %36 - -26: ; preds = %13 - %27 = load i32*, i32** %3, align 8 - %28 = load i32, i32* %5, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i32, i32* %27, i64 %29 - %31 = load i32*, i32** %3, align 8 - %32 = load i32, i32* %5, align 4 - %33 = sub nsw i32 %32, 1 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds i32, i32* %31, i64 %34 - call void @_Z4swapPiS_(i32* noundef %30, i32* noundef %35) - br label %36 - -36: ; preds = %26, %13, %10 - %37 = load i32, i32* %5, align 4 - %38 = load i32, i32* %4, align 4 - %39 = sub nsw i32 %38, 1 - %40 = icmp slt i32 %37, %39 - br i1 %40, label %41, label %64 - -41: ; preds = %36 - %42 = load i32*, i32** %3, align 8 - %43 = load i32, i32* %5, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds i32, i32* %42, i64 %44 - %46 = load i32, i32* %45, align 4 - %47 = load i32*, i32** %3, align 8 - %48 = load i32, i32* %5, align 4 - %49 = add nsw i32 %48, 1 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %47, i64 %50 - %52 = load i32, i32* %51, align 4 - %53 = icmp slt i32 %46, %52 - br i1 %53, label %54, label %64 - -54: ; preds = %41 - %55 = load i32*, i32** %3, align 8 - %56 = load i32, i32* %5, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %55, i64 %57 - %59 = load i32*, i32** %3, align 8 - %60 = load i32, i32* %5, align 4 - %61 = add nsw i32 %60, 1 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds i32, i32* %59, i64 %62 - call void @_Z4swapPiS_(i32* noundef %58, i32* noundef %63) - br label %64 - -64: ; preds = %54, %41, %36 - br label %65 - -65: ; preds = %64 - %66 = load i32, i32* %5, align 4 - %67 = add nsw i32 %66, 2 - store i32 %67, i32* %5, align 4 - br label %6, !llvm.loop !6 - -68: ; preds = %6 - ret void -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #1 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [7 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([7 x i32]* @__const.main.arr to i8*), i64 28, i1 false) - store i32 7, i32* %3, align 4 - %6 = getelementptr inbounds [7 x i32], [7 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - call void @_Z10sortInWavePii(i32* noundef %6, i32 noundef %7) - store i32 0, i32* %4, align 4 - br label %8 - -8: ; preds = %19, %0 - %9 = load i32, i32* %4, align 4 - %10 = load i32, i32* %3, align 4 - %11 = icmp slt i32 %9, %10 - br i1 %11, label %12, label %22 - -12: ; preds = %8 - %13 = load i32, i32* %4, align 4 - %14 = sext i32 %13 to i64 - %15 = getelementptr inbounds [7 x i32], [7 x i32]* %2, i64 0, i64 %14 - %16 = load i32, i32* %15, align 4 - %17 = call 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 !8 - -22: ; preds = %8 - ret i32 0 -} - -; 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 noundef 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) #3 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 - -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, !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"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/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 deleted file mode 100644 index 8d734f381..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/sort-n-numbers-range-0-n2-1-linear-time.ll +++ /dev/null @@ -1,337 +0,0 @@ -; ModuleID = 'PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp' -source_filename = "PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 -@.str.2 = private unnamed_addr constant [19 x i8] c"nSorted array is n\00", align 1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z9countSortPiii(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 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i64, align 8 - %11 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %12 = load i32, i32* %5, align 4 - %13 = zext i32 %12 to i64 - %14 = call i8* @llvm.stacksave() - store i8* %14, i8** %7, align 8 - %15 = alloca i32, i64 %13, align 16 - store i64 %13, i64* %8, align 8 - %16 = load i32, i32* %5, align 4 - %17 = zext i32 %16 to i64 - %18 = alloca i32, i64 %17, align 16 - store i64 %17, i64* %10, align 8 - store i32 0, i32* %11, align 4 - br label %19 - -19: ; preds = %27, %3 - %20 = load i32, i32* %11, align 4 - %21 = load i32, i32* %5, align 4 - %22 = icmp slt i32 %20, %21 - br i1 %22, label %23, label %30 - -23: ; preds = %19 - %24 = load i32, i32* %11, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %18, i64 %25 - store i32 0, i32* %26, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i32, i32* %11, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %11, align 4 - br label %19, !llvm.loop !6 - -30: ; preds = %19 - store i32 0, i32* %9, align 4 - br label %31 - -31: ; preds = %49, %30 - %32 = load i32, i32* %9, align 4 - %33 = load i32, i32* %5, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %52 - -35: ; preds = %31 - %36 = load i32*, i32** %4, align 8 - %37 = load i32, i32* %9, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i32, i32* %36, i64 %38 - %40 = load i32, i32* %39, align 4 - %41 = load i32, i32* %6, align 4 - %42 = sdiv i32 %40, %41 - %43 = load i32, i32* %5, align 4 - %44 = srem i32 %42, %43 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i32, i32* %18, i64 %45 - %47 = load i32, i32* %46, align 4 - %48 = add nsw i32 %47, 1 - store i32 %48, i32* %46, align 4 - br label %49 - -49: ; preds = %35 - %50 = load i32, i32* %9, align 4 - %51 = add nsw i32 %50, 1 - store i32 %51, i32* %9, align 4 - br label %31, !llvm.loop !8 - -52: ; preds = %31 - store i32 1, i32* %9, align 4 - br label %53 - -53: ; preds = %68, %52 - %54 = load i32, i32* %9, align 4 - %55 = load i32, i32* %5, align 4 - %56 = icmp slt i32 %54, %55 - br i1 %56, label %57, label %71 - -57: ; preds = %53 - %58 = load i32, i32* %9, align 4 - %59 = sub nsw i32 %58, 1 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i32, i32* %18, i64 %60 - %62 = load i32, i32* %61, align 4 - %63 = load i32, i32* %9, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds i32, i32* %18, i64 %64 - %66 = load i32, i32* %65, align 4 - %67 = add nsw i32 %66, %62 - store i32 %67, i32* %65, align 4 - br label %68 - -68: ; preds = %57 - %69 = load i32, i32* %9, align 4 - %70 = add nsw i32 %69, 1 - store i32 %70, i32* %9, align 4 - br label %53, !llvm.loop !9 - -71: ; preds = %53 - %72 = load i32, i32* %5, align 4 - %73 = sub nsw i32 %72, 1 - store i32 %73, i32* %9, align 4 - br label %74 - -74: ; preds = %111, %71 - %75 = load i32, i32* %9, align 4 - %76 = icmp sge i32 %75, 0 - br i1 %76, label %77, label %114 - -77: ; preds = %74 - %78 = load i32*, i32** %4, align 8 - %79 = load i32, i32* %9, align 4 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds i32, i32* %78, i64 %80 - %82 = load i32, i32* %81, align 4 - %83 = load i32*, i32** %4, align 8 - %84 = load i32, i32* %9, align 4 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i32, i32* %83, i64 %85 - %87 = load i32, i32* %86, align 4 - %88 = load i32, i32* %6, align 4 - %89 = sdiv i32 %87, %88 - %90 = load i32, i32* %5, align 4 - %91 = srem i32 %89, %90 - %92 = sext i32 %91 to i64 - %93 = getelementptr inbounds i32, i32* %18, i64 %92 - %94 = load i32, i32* %93, align 4 - %95 = sub nsw i32 %94, 1 - %96 = sext i32 %95 to i64 - %97 = getelementptr inbounds i32, i32* %15, i64 %96 - store i32 %82, i32* %97, align 4 - %98 = load i32*, i32** %4, align 8 - %99 = load i32, i32* %9, align 4 - %100 = sext i32 %99 to i64 - %101 = getelementptr inbounds i32, i32* %98, i64 %100 - %102 = load i32, i32* %101, align 4 - %103 = load i32, i32* %6, align 4 - %104 = sdiv i32 %102, %103 - %105 = load i32, i32* %5, align 4 - %106 = srem i32 %104, %105 - %107 = sext i32 %106 to i64 - %108 = getelementptr inbounds i32, i32* %18, i64 %107 - %109 = load i32, i32* %108, align 4 - %110 = add nsw i32 %109, -1 - store i32 %110, i32* %108, align 4 - br label %111 - -111: ; preds = %77 - %112 = load i32, i32* %9, align 4 - %113 = add nsw i32 %112, -1 - store i32 %113, i32* %9, align 4 - br label %74, !llvm.loop !10 - -114: ; preds = %74 - store i32 0, i32* %9, align 4 - br label %115 - -115: ; preds = %128, %114 - %116 = load i32, i32* %9, align 4 - %117 = load i32, i32* %5, align 4 - %118 = icmp slt i32 %116, %117 - br i1 %118, label %119, label %131 - -119: ; preds = %115 - %120 = load i32, i32* %9, align 4 - %121 = sext i32 %120 to i64 - %122 = getelementptr inbounds i32, i32* %15, i64 %121 - %123 = load i32, i32* %122, align 4 - %124 = load i32*, i32** %4, align 8 - %125 = load i32, i32* %9, align 4 - %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds i32, i32* %124, i64 %126 - store i32 %123, i32* %127, align 4 - br label %128 - -128: ; preds = %119 - %129 = load i32, i32* %9, align 4 - %130 = add nsw i32 %129, 1 - store i32 %130, i32* %9, align 4 - br label %115, !llvm.loop !11 - -131: ; preds = %115 - call void @llvm.trap() - unreachable -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: cold noreturn nounwind -declare void @llvm.trap() #2 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z4sortPii(i32* noundef %0, i32 noundef %1) #0 { - %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 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 noundef i32 @_Z9countSortPiii(i32* noundef %8, i32 noundef %9, i32 noundef %10) - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z8printArrPii(i32* noundef %0, i32 noundef %1) #3 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %6 - -6: ; preds = %18, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %7, %8 - br i1 %9, label %10, label %21 - -10: ; preds = %6 - %11 = load i32*, i32** %3, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - %15 = load i32, i32* %14, align 4 - %16 = call 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 !12 - -21: ; preds = %6 - ret void -} - -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) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 - -; 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 - store i32 0, i32* %1, align 4 - %4 = bitcast [7 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([7 x i32]* @__const.main.arr to i8*), i64 28, i1 false) - store i32 7, i32* %3, align 4 - %5 = call noundef 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* 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* 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* noundef %11, i32 noundef %12) - ret i32 0 -} - -; 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 - -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 = { cold noreturn nounwind } -attributes #3 = { 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 #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 = { argmemonly nofree nounwind willreturn } - -!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"} -!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-llvm14/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 deleted file mode 100644 index 9f7803f06..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll +++ /dev/null @@ -1,190 +0,0 @@ -; ModuleID = 'PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp' -source_filename = "PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z12printClosestPiii(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 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - store i32 0, i32* %9, align 4 - %12 = load i32, i32* %5, align 4 - %13 = sub nsw i32 %12, 1 - store i32 %13, i32* %10, align 4 - store i32 2147483647, i32* %11, align 4 - br label %14 - -14: ; preds = %72, %3 - %15 = load i32, i32* %10, align 4 - %16 = load i32, i32* %9, align 4 - %17 = icmp sgt i32 %15, %16 - br i1 %17, label %18, label %73 - -18: ; preds = %14 - %19 = load i32*, i32** %4, align 8 - %20 = load i32, i32* %9, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i32, i32* %19, i64 %21 - %23 = load i32, i32* %22, align 4 - %24 = load i32*, i32** %4, align 8 - %25 = load i32, i32* %10, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i32, i32* %24, i64 %26 - %28 = load i32, i32* %27, align 4 - %29 = add nsw i32 %23, %28 - %30 = load i32, i32* %6, align 4 - %31 = sub nsw i32 %29, %30 - %32 = call i32 @abs(i32 noundef %31) #5 - %33 = load i32, i32* %11, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %52 - -35: ; preds = %18 - %36 = load i32, i32* %9, align 4 - store i32 %36, i32* %7, align 4 - %37 = load i32, i32* %10, align 4 - store i32 %37, i32* %8, align 4 - %38 = load i32*, i32** %4, align 8 - %39 = load i32, i32* %9, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i32, i32* %38, i64 %40 - %42 = load i32, i32* %41, align 4 - %43 = load i32*, i32** %4, align 8 - %44 = load i32, i32* %10, align 4 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i32, i32* %43, i64 %45 - %47 = load i32, i32* %46, align 4 - %48 = add nsw i32 %42, %47 - %49 = load i32, i32* %6, align 4 - %50 = sub nsw i32 %48, %49 - %51 = call i32 @abs(i32 noundef %50) #5 - store i32 %51, i32* %11, align 4 - br label %52 - -52: ; preds = %35, %18 - %53 = load i32*, i32** %4, align 8 - %54 = load i32, i32* %9, align 4 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i32, i32* %53, i64 %55 - %57 = load i32, i32* %56, align 4 - %58 = load i32*, i32** %4, align 8 - %59 = load i32, i32* %10, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i32, i32* %58, i64 %60 - %62 = load i32, i32* %61, align 4 - %63 = add nsw i32 %57, %62 - %64 = load i32, i32* %6, align 4 - %65 = icmp sgt i32 %63, %64 - br i1 %65, label %66, label %69 - -66: ; preds = %52 - %67 = load i32, i32* %10, align 4 - %68 = add nsw i32 %67, -1 - store i32 %68, i32* %10, align 4 - br label %72 - -69: ; preds = %52 - %70 = load i32, i32* %9, align 4 - %71 = add nsw i32 %70, 1 - store i32 %71, i32* %9, align 4 - br label %72 - -72: ; preds = %69, %66 - br label %14, !llvm.loop !6 - -73: ; preds = %14 - %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 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 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 i32 @abs(i32 noundef) #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) #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [6 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [6 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([6 x i32]* @__const.main.arr to i8*), i64 24, i1 false) - store i32 54, i32* %3, align 4 - store i32 6, i32* %4, align 4 - %6 = getelementptr inbounds [6 x i32], [6 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %4, align 4 - %8 = load i32, i32* %3, align 4 - call void @_Z12printClosestPiii(i32* noundef %6, i32 noundef %7, i32 noundef %8) - ret i32 0 -} - -; 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 = { 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 = { 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 #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 } -attributes #5 = { nounwind readnone willreturn } - -!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-llvm14/strongly-connected-components.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/strongly-connected-components.ll deleted file mode 100644 index b7dc9bdc0..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/strongly-connected-components.ll +++ /dev/null @@ -1,3433 +0,0 @@ -; ModuleID = 'PE-benchmarks/strongly-connected-components.cpp' -source_filename = "PE-benchmarks/strongly-connected-components.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::stack" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { i32**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%"struct.std::_Deque_iterator" = type { i32*, i32*, i32*, i32** } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.std::allocator.3" = type { i8 } -%"class.std::__new_allocator.4" = type { i8 } -%"class.std::__new_allocator.1" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any - -$_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt5dequeIiSaIiEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any - -$_ZNSt5dequeIiSaIiEE5beginEv = comdat any - -$_ZNSt5dequeIiSaIiEE3endEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any - -$_ZNSt15__new_allocatorIPiED2Ev = comdat any - -$_ZNSt15__new_allocatorIiED2Ev = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any - -$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any - -$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any - -$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any - -$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIPPiET_S2_ = comdat any - -$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIPPiET_S2_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt5dequeIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any - -$_ZNKSt5dequeIiSaIiEE5emptyEv = comdat any - -$_ZSteqRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt5dequeIiSaIiEE4backEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEmmEv = comdat any - -$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any - -$_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any - -@_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 - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -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 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias 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 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %26) #15 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - ret void -} - -; 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 - %7 = alloca %"struct.std::_List_iterator", align 8 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i8* %2, i8** %6, align 8 - %10 = load %class.Graph*, %class.Graph** %4, align 8 - %11 = load i8*, i8** %6, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i8, i8* %11, i64 %13 - store i8 1, i8* %14, align 1 - %15 = load i32, i32* %5, align 4 - %16 = call 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) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %22) #15 - %24 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %23, %"struct.std::__detail::_List_node_base"** %24, align 8 - %25 = bitcast %"struct.std::_List_iterator"* %7 to i8* - %26 = bitcast %"struct.std::_List_iterator"* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %25, i8* align 8 %26, i64 8, i1 false) - br label %27 - -27: ; preds = %49, %3 - %28 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 1 - %29 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %28, align 8 - %30 = load i32, i32* %5, align 4 - %31 = sext i32 %30 to i64 - %32 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %29, i64 %31 - %33 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %32) #15 - %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 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) #15 - br i1 %35, label %36, label %51 - -36: ; preds = %27 - %37 = load i8*, i8** %6, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #15 - %39 = load i32, i32* %38, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i8, i8* %37, i64 %40 - %42 = load i8, i8* %41, align 1 - %43 = trunc i8 %42 to i1 - br i1 %43, label %48, label %44 - -44: ; preds = %36 - %45 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #15 - %46 = load i32, i32* %45, align 4 - %47 = load i8*, i8** %6, align 8 - 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 noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #15 - br label %27, !llvm.loop !6 - -51: ; preds = %27 - ret void -} - -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) #5 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #15 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; 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 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #15 - %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: 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 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 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 - ret i32* %7 - -9: ; preds = %1 - %10 = landingpad { i8*, i32 } - catch i8* null - %11 = extractvalue { i8*, i32 } %10, 0 - call void @__clang_call_terminate(i8* %11) #16 - unreachable -} - -; Function Attrs: 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 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local { i32, %"class.std::__cxx11::list"* } @_ZN5Graph12getTransposeEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 { - %2 = alloca %class.Graph, align 8 - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - %5 = alloca %"struct.std::_List_iterator", align 8 - %6 = alloca %"struct.std::_List_iterator", align 8 - %7 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %3, align 8 - %8 = load %class.Graph*, %class.Graph** %3, align 8 - %9 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %10 = load i32, i32* %9, align 8 - call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef %10) - store i32 0, i32* %4, align 4 - br label %11 - -11: ; preds = %45, %1 - %12 = load i32, i32* %4, align 4 - %13 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %14 = load i32, i32* %13, align 8 - %15 = icmp slt i32 %12, %14 - br i1 %15, label %16, label %48 - -16: ; preds = %11 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %5) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %21) #15 - %23 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %6, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %22, %"struct.std::__detail::_List_node_base"** %23, align 8 - %24 = bitcast %"struct.std::_List_iterator"* %5 to i8* - %25 = bitcast %"struct.std::_List_iterator"* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %24, i8* align 8 %25, i64 8, i1 false) - br label %26 - -26: ; preds = %42, %16 - %27 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 1 - %28 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %27, align 8 - %29 = load i32, i32* %4, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %28, i64 %30 - %32 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %31) #15 - %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 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) #15 - 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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %5) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %41, i32* noundef nonnull align 4 dereferenceable(4) %4) - br label %42 - -42: ; preds = %35 - %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) #15 - br label %26, !llvm.loop !8 - -44: ; preds = %26 - br label %45 - -45: ; preds = %44 - %46 = load i32, i32* %4, align 4 - %47 = add nsw i32 %46, 1 - store i32 %47, i32* %4, align 4 - br label %11, !llvm.loop !9 - -48: ; preds = %11 - %49 = bitcast %class.Graph* %2 to { i32, %"class.std::__cxx11::list"* }* - %50 = load { i32, %"class.std::__cxx11::list"* }, { i32, %"class.std::__cxx11::list"* }* %49, align 8 - ret { i32, %"class.std::__cxx11::list"* } %50 -} - -; Function Attrs: 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"* noundef nonnull align 8 dereferenceable(24) %6) #15 - %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"* 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: 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 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef nonnull align 4 dereferenceable(4) %6) - ret void -} - -; 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) #4 align 2 { - %5 = alloca %class.Graph*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca %"class.std::stack"*, align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %5, align 8 - store i32 %1, i32* %6, align 4 - store i8* %2, i8** %7, align 8 - store %"class.std::stack"* %3, %"class.std::stack"** %8, align 8 - %12 = load %class.Graph*, %class.Graph** %5, align 8 - %13 = load i8*, i8** %7, align 8 - %14 = load i32, i32* %6, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds i8, i8* %13, i64 %15 - store i8 1, i8* %16, align 1 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %21) #15 - %23 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %10, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %22, %"struct.std::__detail::_List_node_base"** %23, align 8 - %24 = bitcast %"struct.std::_List_iterator"* %9 to i8* - %25 = bitcast %"struct.std::_List_iterator"* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %24, i8* align 8 %25, i64 8, i1 false) - br label %26 - -26: ; preds = %49, %4 - %27 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 1 - %28 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %27, align 8 - %29 = load i32, i32* %6, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %28, i64 %30 - %32 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %31) #15 - %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 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) #15 - br i1 %34, label %35, label %51 - -35: ; preds = %26 - %36 = load i8*, i8** %7, align 8 - %37 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #15 - %38 = load i32, i32* %37, align 4 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds i8, i8* %36, i64 %39 - %41 = load i8, i8* %40, align 1 - %42 = trunc i8 %41 to i1 - br i1 %42, label %48, label %43 - -43: ; preds = %35 - %44 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #15 - %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* 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 noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #15 - 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"* noundef nonnull align 8 dereferenceable(80) %52, i32* noundef nonnull align 4 dereferenceable(4) %6) - ret void -} - -; 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) #4 comdat align 2 { - %3 = alloca %"class.std::stack"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::stack"*, %"class.std::stack"** %3, align 8 - %6 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %5, i32 0, i32 0 - %7 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %6, i32* noundef nonnull align 4 dereferenceable(4) %7) - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph9printSCCsEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %class.Graph*, align 8 - %3 = alloca %"class.std::stack", align 8 - %4 = alloca i8*, align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca %class.Graph, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %2, align 8 - %12 = load %class.Graph*, %class.Graph** %2, align 8 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* 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 noundef nonnull i8* @_Znam(i64 noundef %15) #14 - to label %17 unwind label %31 - -17: ; preds = %1 - store i8* %16, i8** %4, align 8 - store i32 0, i32* %7, align 4 - br label %18 - -18: ; preds = %28, %17 - %19 = load i32, i32* %7, align 4 - %20 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %21 = load i32, i32* %20, align 8 - %22 = icmp slt i32 %19, %21 - br i1 %22, label %23, label %35 - -23: ; preds = %18 - %24 = load i8*, i8** %4, align 8 - %25 = load i32, i32* %7, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i8, i8* %24, i64 %26 - store i8 0, i8* %27, align 1 - br label %28 - -28: ; preds = %23 - %29 = load i32, i32* %7, align 4 - %30 = add nsw i32 %29, 1 - store i32 %30, i32* %7, align 4 - br label %18, !llvm.loop !11 - -31: ; preds = %101, %98, %87, %85, %80, %58, %50, %1 - %32 = landingpad { i8*, i32 } - cleanup - %33 = extractvalue { i8*, i32 } %32, 0 - store i8* %33, i8** %5, align 8 - %34 = extractvalue { i8*, i32 } %32, 1 - store i32 %34, i32* %6, align 4 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) #15 - br label %106 - -35: ; preds = %18 - store i32 0, i32* %8, align 4 - br label %36 - -36: ; preds = %55, %35 - %37 = load i32, i32* %8, align 4 - %38 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %39 = load i32, i32* %38, align 8 - %40 = icmp slt i32 %37, %39 - br i1 %40, label %41, label %58 - -41: ; preds = %36 - %42 = load i8*, i8** %4, align 8 - %43 = load i32, i32* %8, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds i8, i8* %42, i64 %44 - %46 = load i8, i8* %45, align 1 - %47 = trunc i8 %46 to i1 - %48 = zext i1 %47 to i32 - %49 = icmp eq i32 %48, 0 - br i1 %49, label %50, label %54 - -50: ; preds = %41 - %51 = load i32, i32* %8, align 4 - %52 = load i8*, i8** %4, align 8 - invoke void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* 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 - br label %54 - -54: ; preds = %53, %41 - br label %55 - -55: ; preds = %54 - %56 = load i32, i32* %8, align 4 - %57 = add nsw i32 %56, 1 - store i32 %57, i32* %8, align 4 - br label %36, !llvm.loop !12 - -58: ; preds = %36 - %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 - %61 = bitcast %class.Graph* %9 to { i32, %"class.std::__cxx11::list"* }* - %62 = getelementptr inbounds { i32, %"class.std::__cxx11::list"* }, { i32, %"class.std::__cxx11::list"* }* %61, i32 0, i32 0 - %63 = extractvalue { i32, %"class.std::__cxx11::list"* } %59, 0 - store i32 %63, i32* %62, align 8 - %64 = getelementptr inbounds { i32, %"class.std::__cxx11::list"* }, { i32, %"class.std::__cxx11::list"* }* %61, i32 0, i32 1 - %65 = extractvalue { i32, %"class.std::__cxx11::list"* } %59, 1 - store %"class.std::__cxx11::list"* %65, %"class.std::__cxx11::list"** %64, align 8 - store i32 0, i32* %10, align 4 - br label %66 - -66: ; preds = %76, %60 - %67 = load i32, i32* %10, align 4 - %68 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %69 = load i32, i32* %68, align 8 - %70 = icmp slt i32 %67, %69 - br i1 %70, label %71, label %79 - -71: ; preds = %66 - %72 = load i8*, i8** %4, align 8 - %73 = load i32, i32* %10, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds i8, i8* %72, i64 %74 - store i8 0, i8* %75, align 1 - br label %76 - -76: ; preds = %71 - %77 = load i32, i32* %10, align 4 - %78 = add nsw i32 %77, 1 - store i32 %78, i32* %10, align 4 - br label %66, !llvm.loop !13 - -79: ; preds = %66 - br label %80 - -80: ; preds = %104, %79 - %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 - %83 = zext i1 %81 to i32 - %84 = icmp eq i32 %83, 0 - br i1 %84, label %85, label %105 - -85: ; preds = %82 - %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"* noundef nonnull align 8 dereferenceable(80) %3) - to label %89 unwind label %31 - -89: ; preds = %87 - %90 = load i8*, i8** %4, align 8 - %91 = load i32, i32* %11, align 4 - %92 = sext i32 %91 to i64 - %93 = getelementptr inbounds i8, i8* %90, i64 %92 - %94 = load i8, i8* %93, align 1 - %95 = trunc i8 %94 to i1 - %96 = zext i1 %95 to i32 - %97 = icmp eq i32 %96, 0 - br i1 %97, label %98, label %104 - -98: ; preds = %89 - %99 = load i32, i32* %11, align 4 - %100 = load i8*, i8** %4, align 8 - invoke void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %9, i32 noundef %99, i8* noundef %100) - to label %101 unwind label %31 - -101: ; preds = %98 - %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 !14 - -105: ; preds = %82 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) #15 - ret void - -106: ; preds = %31 - %107 = load i8*, i8** %5, align 8 - %108 = load i32, i32* %6, align 4 - %109 = insertvalue { i8*, i32 } undef, i8* %107, 0 - %110 = insertvalue { i8*, i32 } %109, i32 %108, 1 - resume { i8*, i32 } %110 -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* 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"* noundef nonnull align 8 dereferenceable(80) %4) - ret void -} - -declare i32 @__gxx_personality_v0(...) - -; 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) #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 - %5 = call noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #15 - ret i1 %5 -} - -; 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) #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 - %5 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #15 - ret i32* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %0) #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 @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #15 - ret void -} - -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) #5 - -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)) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(80) %4) #15 - ret void -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #15 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #15 - ret void -} - -; 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 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - %4 = alloca %"struct.std::_Deque_iterator", align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) #15 - 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) #15 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %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) #15 - 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"* noundef nonnull align 8 dereferenceable(80) %11) #15 - ret void - -12: ; preds = %1 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %5, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %6, align 4 - %16 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %16) #15 - br label %17 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - call void @__clang_call_terminate(i8* %18) #16 - unreachable -} - -; 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 - store %"class.std::allocator.0"* %3, %"class.std::allocator.0"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %5, align 8 - ret void -} - -; Function Attrs: 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* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %10) #15 - ret void -} - -; 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* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %10) #15 - ret void -} - -; 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 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %6, align 8 - %8 = icmp ne i32** %7, null - br i1 %8, label %9, label %29 - -9: ; preds = %1 - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 2 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 3 - %14 = load i32**, i32*** %13, align 8 - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = getelementptr inbounds i32*, i32** %19, i64 1 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %14, i32** noundef %20) #15 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 0 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 1 - %28 = load i64, i64* %27, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %24, i64 noundef %28) #15 - 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"* noundef nonnull align 8 dereferenceable(80) %30) #15 - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #9 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #15 - call void @_ZSt9terminatev() #16 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load i32*, i32** %12, align 8 - store i32* %13, i32** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - store i32* %17, i32** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load i32**, i32*** %20, align 8 - store i32** %21, i32*** %18, align 8 - ret void -} - -; Function Attrs: 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 - %7 = alloca i32**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load i32**, i32*** %5, align 8 - store i32** %9, i32*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32**, i32*** %7, align 8 - %12 = load i32**, i32*** %6, align 8 - %13 = icmp ult i32** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32**, i32*** %7, align 8 - %16 = load i32*, i32** %15, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %16) #15 - 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 !15 - -20: ; preds = %10 - ret void -} - -; Function Attrs: 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) #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca %"class.std::allocator.3"*, align 8 - %6 = alloca %"class.std::allocator.3"*, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::_Deque_base"*, align 8 - %10 = alloca i32**, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"class.std::allocator.3", align 1 - %13 = alloca i8*, align 8 - %14 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %9, align 8 - store i32** %1, i32*** %10, align 8 - store i64 %2, i64* %11, align 8 - %15 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %9, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %12, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %15) #15 - %16 = load i32**, i32*** %10, align 8 - %17 = load i64, i64* %11, align 8 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %6, align 8 - store i32** %16, i32*** %7, align 8 - store i64 %17, i64* %8, align 8 - %18 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %6, align 8 - %19 = bitcast %"class.std::allocator.3"* %18 to %"class.std::__new_allocator.4"* - %20 = load i32**, i32*** %7, align 8 - %21 = load i64, i64* %8, align 8 - call void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %19, i32** noundef %20, i64 noundef %21) - br label %22 - -22: ; preds = %3 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %5, align 8 - %23 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %5, align 8 - %24 = bitcast %"class.std::allocator.3"* %23 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %24) #15 - ret void - -25: ; No predecessors! - %26 = landingpad { i8*, i32 } - catch i8* null - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %13, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %14, align 4 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %4, align 8 - %29 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %30 = bitcast %"class.std::allocator.3"* %29 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %30) #15 - br label %31 - -31: ; preds = %25 - %32 = load i8*, i8** %13, align 8 - call void @__clang_call_terminate(i8* %32) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - %3 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %4 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - store %"class.std::allocator.0"* %5, %"class.std::allocator.0"** %2, align 8 - %6 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %7 = bitcast %"class.std::allocator.0"* %6 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %7) #15 - ret void -} - -; 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::allocator.0"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::_Deque_base"*, align 8 - %7 = alloca i32*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %6, align 8 - store i32* %1, i32** %7, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %6, align 8 - %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 %"class.std::allocator.0"* - %11 = load i32*, i32** %7, align 8 - %12 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - to label %13 unwind label %19 - -13: ; preds = %2 - store %"class.std::allocator.0"* %10, %"class.std::allocator.0"** %3, align 8 - store i32* %11, i32** %4, align 8 - store i64 %12, i64* %5, align 8 - %14 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %15 = bitcast %"class.std::allocator.0"* %14 to %"class.std::__new_allocator.1"* - %16 = load i32*, i32** %4, align 8 - %17 = load i64, i64* %5, align 8 - call void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %15, i32* noundef %16, i64 noundef %17) - br label %18 - -18: ; preds = %13 - ret void - -19: ; preds = %2 - %20 = landingpad { i8*, i32 } - catch i8* null - %21 = extractvalue { i8*, i32 } %20, 0 - call void @__clang_call_terminate(i8* %21) #16 - unreachable -} - -; 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 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #6 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* noundef %9) #17 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #10 - -; Function Attrs: 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) #3 comdat align 2 { - %3 = alloca %"class.std::__new_allocator.4"*, align 8 - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = bitcast %"class.std::allocator.3"* %0 to i8* - store i8* %8, i8** %6, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %7, align 8 - %9 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - %10 = 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) %9) #15 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %4, align 8 - store %"class.std::allocator.0"* %10, %"class.std::allocator.0"** %5, align 8 - %11 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %12 = bitcast %"class.std::allocator.3"* %11 to %"class.std::__new_allocator.4"* - store %"class.std::__new_allocator.4"* %12, %"class.std::__new_allocator.4"** %3, align 8 - %13 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %3, align 8 - ret void -} - -; 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 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %2) #6 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.4"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = bitcast i32** %8 to i8* - call void @_ZdlPv(i8* noundef %9) #17 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.4"*, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %2, align 8 - %3 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %2, align 8 - %3 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %1) unnamed_addr #3 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #15 - ret i32* %5 -} - -; 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #15 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: 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 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #15 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %14 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %15 = bitcast %"class.std::__cxx11::list"* %14 to %"class.std::__cxx11::_List_base"* - %16 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %15) - store %"struct.std::_List_node"* %16, %"struct.std::_List_node"** %11, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %14 to %"class.std::__cxx11::_List_base"* - %18 = 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) %17) #15 - store %"class.std::allocator"* %18, %"class.std::allocator"** %12, align 8 - %19 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %20 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %19, %"struct.std::_List_node"* noundef %20) #15 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %23 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %22) - %24 = load i32*, i32** %10, align 8 - %25 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %24) #15 - store %"class.std::allocator"* %21, %"class.std::allocator"** %6, align 8 - store i32* %23, i32** %7, align 8 - store i32* %25, i32** %8, align 8 - %26 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %27 = bitcast %"class.std::allocator"* %26 to %"class.std::__new_allocator"* - %28 = load i32*, i32** %7, align 8 - %29 = load i32*, i32** %8, align 8 - %30 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %29) #15 - store %"class.std::__new_allocator"* %27, %"class.std::__new_allocator"** %3, align 8 - store i32* %28, i32** %4, align 8 - store i32* %30, i32** %5, align 8 - %31 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %32 = load i32*, i32** %4, align 8 - %33 = bitcast i32* %32 to i8* - %34 = load i32*, i32** %5, align 8 - %35 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %34) #15 - %36 = load i32, i32* %35, align 4 - store i32 %36, i32* %32, align 4 - %37 = 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) %13, i8* null) #15 - %38 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #15 - ret %"struct.std::_List_node"* %38 -} - -; 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: nounwind -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) #11 - -; 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 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; 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 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* 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 #3 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #15 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #16 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #18 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #14 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -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 noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; 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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__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.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #17 - ret void -} - -; 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::__new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store i32* %1, i32** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %19 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %19 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 2 - %23 = load i32*, i32** %22, align 8 - %24 = getelementptr inbounds i32, i32* %23, i64 -1 - %25 = icmp ne i32* %17, %24 - br i1 %25, label %26, label %55 - -26: ; preds = %2 - %27 = bitcast %"class.std::deque"* %11 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 %"class.std::allocator.0"* - %30 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %31 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %30, i32 0, i32 0 - %32 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %31 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %32, i32 0, i32 3 - %34 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %33, i32 0, i32 0 - %35 = load i32*, i32** %34, align 8 - %36 = load i32*, i32** %10, align 8 - store %"class.std::allocator.0"* %29, %"class.std::allocator.0"** %6, align 8 - store i32* %35, i32** %7, align 8 - store i32* %36, i32** %8, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %7, align 8 - %40 = load i32*, i32** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #15 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %3, align 8 - store i32* %39, i32** %4, align 8 - store i32* %41, i32** %5, align 8 - %42 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - %43 = load i32*, i32** %4, align 8 - %44 = bitcast i32* %43 to i8* - %45 = load i32*, i32** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %45) #15 - %47 = load i32, i32* %46, align 4 - store i32 %47, i32* %43, align 4 - %48 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %51, i32 0, i32 0 - %53 = load i32*, i32** %52, align 8 - %54 = getelementptr inbounds i32, i32* %53, i32 1 - store i32* %54, i32** %52, align 8 - br label %57 - -55: ; preds = %2 - %56 = load i32*, i32** %10, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, i32* noundef nonnull align 4 dereferenceable(4) %56) - br label %57 - -57: ; preds = %55, %26 - ret void -} - -; 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::__new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store i32* %1, i32** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #15 - %13 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #15 - %14 = icmp eq i64 %12, %13 - br i1 %14, label %15, label %16 - -15: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* noundef getelementptr inbounds ([48 x i8], [48 x i8]* @.str.2, i64 0, i64 0)) #18 - unreachable - -16: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) - %17 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %18 = call noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %17) - %19 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 3 - %23 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %22, i32 0, i32 3 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds i32*, i32** %24, i64 1 - store i32* %18, i32** %25, align 8 - %26 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %27 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %26, i32 0, i32 0 - %28 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %27 to %"class.std::allocator.0"* - %29 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %29, i32 0, i32 0 - %31 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %30 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %32 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %31, i32 0, i32 3 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load i32*, i32** %33, align 8 - %35 = load i32*, i32** %10, align 8 - %36 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %35) #15 - store %"class.std::allocator.0"* %28, %"class.std::allocator.0"** %6, align 8 - store i32* %34, i32** %7, align 8 - store i32* %36, i32** %8, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %7, align 8 - %40 = load i32*, i32** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #15 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %3, align 8 - store i32* %39, i32** %4, align 8 - store i32* %41, i32** %5, align 8 - %42 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - %43 = load i32*, i32** %4, align 8 - %44 = bitcast i32* %43 to i8* - %45 = load i32*, i32** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %45) #15 - %47 = load i32, i32* %46, align 4 - store i32 %47, i32* %43, align 4 - %48 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %53 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %52, i32 0, i32 0 - %54 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %53 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %55 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %54, i32 0, i32 3 - %56 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %55, i32 0, i32 3 - %57 = load i32**, i32*** %56, align 8 - %58 = getelementptr inbounds i32*, i32** %57, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %51, i32** noundef %58) #15 - %59 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %60 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %59, i32 0, i32 0 - %61 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %60 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %62 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %61, i32 0, i32 3 - %63 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %62, i32 0, i32 1 - %64 = load i32*, i32** %63, align 8 - %65 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %66 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %65, i32 0, i32 0 - %67 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %66 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %68 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %67, i32 0, i32 3 - %69 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %68, i32 0, i32 0 - store i32* %64, i32** %69, align 8 - ret void -} - -; 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 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call 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) #15 - ret i64 %12 -} - -; 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 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) #15 - %6 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #15 - ret i64 %6 -} - -; Function Attrs: noreturn -declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #12 - -; 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 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load i32**, i32*** %22, align 8 - %24 = ptrtoint i32** %18 to i64 - %25 = ptrtoint i32** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* 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: 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::allocator.0"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator.0"* - %8 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - store %"class.std::allocator.0"* %7, %"class.std::allocator.0"** %2, align 8 - store i64 %8, i64* %3, align 8 - %9 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %10 = bitcast %"class.std::allocator.0"* %9 to %"class.std::__new_allocator.1"* - %11 = load i64, i64* %3, align 8 - %12 = call noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %10, i64 noundef %11, i8* noundef null) - ret i32* %12 -} - -; 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 - store i32** %1, i32*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load i32**, i32*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store i32** %6, i32*** %7, align 8 - %8 = load i32**, i32*** %4, align 8 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store i32* %9, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load i32*, i32** %11, align 8 - %13 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #15 - %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: 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 noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #15 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load i32**, i32*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = ptrtoint i32** %8 to i64 - %13 = ptrtoint i32** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = 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 i64 - %21 = sub nsw i64 %15, %20 - %22 = mul nsw i64 %5, %21 - %23 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 0 - %25 = load i32*, i32** %24, align 8 - %26 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 1 - %28 = load i32*, i32** %27, align 8 - %29 = ptrtoint i32* %25 to i64 - %30 = ptrtoint i32* %28 to i64 - %31 = sub i64 %29, %30 - %32 = sdiv exact i64 %31, 4 - %33 = add nsw i64 %22, %32 - %34 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 2 - %36 = load i32*, i32** %35, align 8 - %37 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %38 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %37, i32 0, i32 0 - %39 = load i32*, i32** %38, align 8 - %40 = ptrtoint i32* %36 to i64 - %41 = ptrtoint i32* %39 to i64 - %42 = sub i64 %40, %41 - %43 = sdiv exact i64 %42, 4 - %44 = add nsw i64 %33, %43 - ret i64 %44 -} - -; 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: 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::__new_allocator.1"*, align 8 - %3 = alloca %"class.std::__new_allocator.1"*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %5, align 8 - store i64 9223372036854775807, i64* %6, align 8 - %8 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %5, align 8 - store %"class.std::allocator.0"* %8, %"class.std::allocator.0"** %4, align 8 - %9 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %10 = bitcast %"class.std::allocator.0"* %9 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %10, %"class.std::__new_allocator.1"** %3, align 8 - %11 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - store %"class.std::__new_allocator.1"* %11, %"class.std::__new_allocator.1"** %2, align 8 - %12 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - store i64 2305843009213693951, i64* %7, align 8 - %13 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef nonnull align 8 dereferenceable(8) %7) - to label %14 unwind label %16 - -14: ; preds = %1 - %15 = load i64, i64* %13, align 8 - ret i64 %15 - -16: ; preds = %1 - %17 = landingpad { i8*, i32 } - catch i8* null - %18 = extractvalue { i8*, i32 } %17, 0 - call void @__clang_call_terminate(i8* %18) #16 - unreachable -} - -; 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 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: 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 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i64, align 8 - %11 = alloca i32**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load i32**, i32*** %24, align 8 - %26 = ptrtoint i32** %19 to i64 - %27 = ptrtoint i32** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load i32**, i32*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds i32*, i32** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds i32*, i32** %56, i64 %63 - store i32** %64, i32*** %9, align 8 - %65 = load i32**, i32*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load i32**, i32*** %70, align 8 - %72 = icmp ult i32** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load i32**, i32*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load i32**, i32*** %84, align 8 - %86 = getelementptr inbounds i32*, i32** %85, i64 1 - %87 = load i32**, i32*** %9, align 8 - %88 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %79, i32** noundef %86, i32** noundef %87) - br label %107 - -89: ; preds = %62 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load i32**, i32*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load i32**, i32*** %100, align 8 - %102 = getelementptr inbounds i32*, i32** %101, i64 1 - %103 = load i32**, i32*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds i32*, i32** %103, i64 %104 - %106 = call noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %95, i32** noundef %102, i32** noundef %105) - br label %107 - -107: ; preds = %89, %73 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call 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 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 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds i32*, i32** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds i32*, i32** %130, i64 %137 - store i32** %138, i32*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load i32**, i32*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load i32**, i32*** %149, align 8 - %151 = getelementptr inbounds i32*, i32** %150, i64 1 - %152 = load i32**, i32*** %9, align 8 - %153 = call 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 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load i32**, i32*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, i32** noundef %159, i64 noundef %164) #15 - %165 = load i32**, i32*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store i32** %165, i32*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load i32**, i32*** %9, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, i32** noundef %180) #15 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load i32**, i32*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds i32*, i32** %185, i64 %186 - %188 = getelementptr inbounds i32*, i32** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, i32** noundef %188) #15 - ret void -} - -; 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %9) - %11 = load i32**, i32*** %6, align 8 - %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: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %9) - %11 = load i32**, i32*** %6, align 8 - %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: 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 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable -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) #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"class.std::allocator.3"*, align 8 - %6 = alloca %"class.std::allocator.3"*, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::allocator.3", align 1 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %7, align 8 - store i64 %1, i64* %8, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %9, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12) #15 - %13 = load i64, i64* %8, align 8 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %3, align 8 - store i64 %13, i64* %4, align 8 - %14 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %15 = bitcast %"class.std::allocator.3"* %14 to %"class.std::__new_allocator.4"* - %16 = load i64, i64* %4, align 8 - %17 = invoke noundef i32** @_ZNSt15__new_allocatorIPiE8allocateEmPKv(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %15, i64 noundef %16, i8* noundef null) - to label %18 unwind label %22 - -18: ; preds = %2 - br label %19 - -19: ; preds = %18 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %6, align 8 - %20 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %6, align 8 - %21 = bitcast %"class.std::allocator.3"* %20 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %21) #15 - ret i32** %17 - -22: ; preds = %2 - %23 = landingpad { i8*, i32 } - cleanup - %24 = extractvalue { i8*, i32 } %23, 0 - store i8* %24, i8** %10, align 8 - %25 = extractvalue { i8*, i32 } %23, 1 - store i32 %25, i32* %11, align 4 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %5, align 8 - %26 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %5, align 8 - %27 = bitcast %"class.std::allocator.3"* %26 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %27) #15 - br label %28 - -28: ; preds = %22 - %29 = load i8*, i8** %10, align 8 - %30 = load i32, i32* %11, align 4 - %31 = insertvalue { i8*, i32 } undef, i8* %29, 0 - %32 = insertvalue { i8*, i32 } %31, i32 %30, 1 - resume { i8*, i32 } %32 -} - -; 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #15 - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %9) #15 - %11 = load i32**, i32*** %6, align 8 - %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #15 - %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: 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: 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 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - ret i32** %5 -} - -; 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; 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: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(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 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = bitcast i32** %17 to i8* - %19 = load i32**, i32*** %4, align 8 - %20 = bitcast i32** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %30 - -23: ; preds = %3 - %24 = load i64, i64* %7, align 8 - %25 = icmp eq i64 %24, 1 - br i1 %25, label %26, label %29 - -26: ; preds = %23 - %27 = load i32**, i32*** %6, align 8 - %28 = load i32**, i32*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %27, i32** noundef %28) - br label %29 - -29: ; preds = %26, %23 - br label %30 - -30: ; preds = %29, %16 - %31 = load i32**, i32*** %6, align 8 - %32 = load i64, i64* %7, align 8 - %33 = getelementptr inbounds i32*, i32** %31, i64 %32 - ret i32** %33 -} - -; Function Attrs: argmemonly nofree nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %0, i32** noundef %1) #6 comdat align 2 { - %3 = alloca i32**, align 8 - %4 = alloca i32**, align 8 - store i32** %0, i32*** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32**, i32*** %3, align 8 - store i32* %6, i32** %7, align 8 - ret void -} - -; 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #15 - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %9) #15 - %11 = load i32**, i32*** %6, align 8 - %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #15 - %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: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call 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: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_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 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32*, i32** %17, i64 %19 - %21 = bitcast i32** %20 to i8* - %22 = load i32**, i32*** %4, align 8 - %23 = bitcast i32** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %34 - -26: ; preds = %3 - %27 = load i64, i64* %7, align 8 - %28 = icmp eq i64 %27, 1 - br i1 %28, label %29, label %33 - -29: ; preds = %26 - %30 = load i32**, i32*** %6, align 8 - %31 = getelementptr inbounds i32*, i32** %30, i64 -1 - %32 = load i32**, i32*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %31, i32** noundef %32) - br label %33 - -33: ; preds = %29, %26 - br label %34 - -34: ; preds = %33, %16 - %35 = load i32**, i32*** %6, align 8 - %36 = load i64, i64* %7, align 8 - %37 = sub i64 0, %36 - %38 = getelementptr inbounds i32*, i32** %35, i64 %37 - ret i32** %38 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt15__new_allocatorIPiE8allocateEmPKv(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.4"*, align 8 - %5 = alloca %"class.std::__new_allocator.4"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator.4"* %8, %"class.std::__new_allocator.4"** %4, align 8 - %10 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %4, align 8 - %11 = icmp ugt i64 %9, 1152921504606846975 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 2305843009213693951 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #18 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 8 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #14 - %21 = bitcast i8* %20 to i32** - ret i32** %21 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca %"class.std::__new_allocator.1"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator.1"* %8, %"class.std::__new_allocator.1"** %4, align 8 - %10 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - %11 = icmp ugt i64 %9, 2305843009213693951 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 4611686018427387903 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #18 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 4 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #14 - %21 = bitcast i8* %20 to i32* - ret i32* %21 -} - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #13 - -; Function Attrs: noinline uwtable -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"* 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"* 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"* noundef nonnull align 8 dereferenceable(80) %6) #15 - 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 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #15 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %5 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"class.std::allocator.0"* - store %"class.std::allocator.0"* %6, %"class.std::allocator.0"** %3, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %8, %"class.std::__new_allocator.1"** %2, align 8 - %9 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 dereferenceable(80) %10) #15 - ret void -} - -; 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 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32**, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call 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 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call 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"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call 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 - store i32** %28, i32*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load i32**, i32*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds i32*, i32** %35, i64 %42 - store i32** %43, i32*** %8, align 8 - %44 = load i32**, i32*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds i32*, i32** %44, i64 %45 - store i32** %46, i32*** %9, align 8 - %47 = load i32**, i32*** %8, align 8 - %48 = load i32**, i32*** %9, align 8 - invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %47, i32** noundef %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #15 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load i32**, i32*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %60, i64 noundef %64) #15 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store i32** null, i32*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #18 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load i32**, i32*** %8, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, i32** noundef %80) #15 - %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"* noundef nonnull align 8 dereferenceable(32) %83, i32** noundef %85) #15 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load i32*, i32** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store i32* %90, i32** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load i32*, i32** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call 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 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store i32* %103, i32** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #16 - unreachable - -116: ; preds = %54 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl_data"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl_data"* %0, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl_data"*, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store i32** null, i32*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %6) #15 - %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"* noundef nonnull align 8 dereferenceable(32) %7) #15 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store i32** null, i32*** %7, align 8 - ret void -} - -; Function Attrs: 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 - %7 = alloca i32**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load i32**, i32*** %5, align 8 - store i32** %11, i32*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load i32**, i32*** %7, align 8 - %14 = load i32**, i32*** %6, align 8 - %15 = icmp ult i32** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke 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 - %19 = load i32**, i32*** %7, align 8 - store i32* %17, i32** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load i32**, i32*** %7, align 8 - %22 = getelementptr inbounds i32*, i32** %21, i32 1 - store i32** %22, i32*** %7, align 8 - br label %12, !llvm.loop !16 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #15 - %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"* noundef nonnull align 8 dereferenceable(80) %10, i32** noundef %30, i32** noundef %31) #15 - invoke void @__cxa_rethrow() #18 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #16 - unreachable - -47: ; preds = %27 - unreachable -} - -declare void @__cxa_rethrow() - -declare void @__cxa_end_catch() - -; 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 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call 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) #15 - ret i1 %12 -} - -; 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 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load i32*, i32** %6, align 8 - %8 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - %11 = icmp eq i32* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #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 @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #15 - %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) #15 - %6 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3) #15 - ret i32* %6 -} - -; 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) #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - %7 = load i32*, i32** %6, align 8 - %8 = icmp eq i32* %5, %7 - br i1 %8, label %9, label %16 - -9: ; preds = %1 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = getelementptr inbounds i32*, i32** %11, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3, i32** noundef %12) #15 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - %14 = load i32*, i32** %13, align 8 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* %14, i32** %15, align 8 - br label %16 - -16: ; preds = %9, %1 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %18 = load i32*, i32** %17, align 8 - %19 = getelementptr inbounds i32, i32* %18, i32 -1 - store i32* %19, i32** %17, align 8 - ret %"struct.std::_Deque_iterator"* %3 -} - -; Function Attrs: 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 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"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::__new_allocator.1"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 0 - %13 = load i32*, i32** %12, align 8 - %14 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 1 - %19 = load i32*, i32** %18, align 8 - %20 = icmp ne i32* %13, %19 - br i1 %20, label %21, label %42 - -21: ; preds = %1 - %22 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %23 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %23 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %24, i32 0, i32 3 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %25, i32 0, i32 0 - %27 = load i32*, i32** %26, align 8 - %28 = getelementptr inbounds i32, i32* %27, i32 -1 - store i32* %28, i32** %26, align 8 - %29 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %30 = 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) %29) #15 - %31 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 0 - %36 = load i32*, i32** %35, align 8 - store %"class.std::allocator.0"* %30, %"class.std::allocator.0"** %4, align 8 - store i32* %36, i32** %5, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %2, align 8 - store i32* %39, i32** %3, align 8 - %40 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %41 = load i32*, i32** %3, align 8 - br label %44 - -42: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) - to label %43 unwind label %45 - -43: ; preds = %42 - br label %44 - -44: ; preds = %43, %21 - ret void - -45: ; preds = %42 - %46 = landingpad { i8*, i32 } - catch i8* null - %47 = extractvalue { i8*, i32 } %46, 0 - call void @__clang_call_terminate(i8* %47) #16 - unreachable -} - -; 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) #6 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %9, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 3 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 1 - %14 = load i32*, i32** %13, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %14) #15 - %15 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %16 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %15, i32 0, i32 0 - %17 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %16 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %18 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %17, i32 0, i32 3 - %19 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 3 - %23 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %22, i32 0, i32 3 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds i32*, i32** %24, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %18, i32** noundef %25) #15 - %26 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %27 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %26, i32 0, i32 0 - %28 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %27 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %28, i32 0, i32 3 - %30 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %29, i32 0, i32 2 - %31 = load i32*, i32** %30, align 8 - %32 = getelementptr inbounds i32, i32* %31, i64 -1 - %33 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %34 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %33, i32 0, i32 0 - %35 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %34 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %36 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %35, i32 0, i32 3 - %37 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %36, i32 0, i32 0 - store i32* %32, i32** %37, align 8 - %38 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %39 = 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) %38) #15 - %40 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %41 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %40, i32 0, i32 0 - %42 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %41 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %43 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %42, i32 0, i32 3 - %44 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %43, i32 0, i32 0 - %45 = load i32*, i32** %44, align 8 - store %"class.std::allocator.0"* %39, %"class.std::allocator.0"** %4, align 8 - store i32* %45, i32** %5, align 8 - %46 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %47 = bitcast %"class.std::allocator.0"* %46 to %"class.std::__new_allocator.1"* - %48 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator.1"* %47, %"class.std::__new_allocator.1"** %2, align 8 - store i32* %48, i32** %3, align 8 - %49 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %50 = load i32*, i32** %3, align 8 - 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 = { nofree nosync nounwind readnone speculatable willreturn } -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 = { 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 #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 = { "frame-pointer"="all" "no-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 = { 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 "frame-pointer"="all" "no-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 = { 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 = { argmemonly nofree nounwind willreturn writeonly } -attributes #14 = { builtin allocsize(0) } -attributes #15 = { nounwind } -attributes #16 = { noreturn nounwind } -attributes #17 = { builtin nounwind } -attributes #18 = { noreturn } - -!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"} -!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-llvm14/subset-sum.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/subset-sum.ll deleted file mode 100644 index eab607a92..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/subset-sum.ll +++ /dev/null @@ -1,367 +0,0 @@ -; ModuleID = 'PE-benchmarks/subset-sum.cpp' -source_filename = "PE-benchmarks/subset-sum.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [4 x i8] c"%*d\00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c"n\00", align 1 -@_ZL11total_nodes = internal global i32 0, align 4 -@__const.main.weights = private unnamed_addr constant [8 x i32] [i32 15, i32 22, i32 14, i32 26, i32 32, i32 9, i32 16, i32 8], align 16 -@.str.2 = private unnamed_addr constant [20 x i8] c"Nodes generated %dn\00", align 1 - -; Function Attrs: 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 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %6 - -6: ; preds = %17, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %7, %8 - br i1 %9, label %10, label %20 - -10: ; preds = %6 - %11 = load i32*, i32** %3, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - %15 = load i32, i32* %14, align 4 - %16 = call i32 (i8*, ...) @printf(i8* 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 !6 - -20: ; preds = %6 - %21 = 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 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 - %6 = alloca i32*, align 8 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %7 = load i8*, i8** %3, align 8 - %8 = bitcast i8* %7 to i32* - store i32* %8, i32** %5, align 8 - %9 = load i8*, i8** %4, align 8 - %10 = bitcast i8* %9 to i32* - store i32* %10, i32** %6, align 8 - %11 = load i32*, i32** %5, align 8 - %12 = load i32, i32* %11, align 4 - %13 = load i32*, i32** %6, align 8 - %14 = load i32, i32* %13, align 4 - %15 = icmp sgt i32 %12, %14 - %16 = zext i1 %15 to i32 - ret i32 %16 -} - -; Function Attrs: 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 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - store i32* %0, i32** %8, align 8 - store i32* %1, i32** %9, align 8 - store i32 %2, i32* %10, align 4 - store i32 %3, i32* %11, align 4 - store i32 %4, i32* %12, align 4 - store i32 %5, i32* %13, align 4 - store i32 %6, i32* %14, align 4 - %16 = load i32, i32* @_ZL11total_nodes, align 4 - %17 = add nsw i32 %16, 1 - store i32 %17, i32* @_ZL11total_nodes, align 4 - %18 = load i32, i32* %14, align 4 - %19 = load i32, i32* %12, align 4 - %20 = icmp eq i32 %18, %19 - br i1 %20, label %21, label %62 - -21: ; preds = %7 - %22 = load i32*, i32** %9, align 8 - %23 = load i32, i32* %11, align 4 - call void @_Z11printSubsetPii(i32* 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 - %27 = icmp slt i32 %25, %26 - br i1 %27, label %28, label %61 - -28: ; preds = %21 - %29 = load i32, i32* %12, align 4 - %30 = load i32*, i32** %8, align 8 - %31 = load i32, i32* %13, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds i32, i32* %30, i64 %32 - %34 = load i32, i32* %33, align 4 - %35 = sub nsw i32 %29, %34 - %36 = load i32*, i32** %8, align 8 - %37 = load i32, i32* %13, align 4 - %38 = add nsw i32 %37, 1 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds i32, i32* %36, i64 %39 - %41 = load i32, i32* %40, align 4 - %42 = add nsw i32 %35, %41 - %43 = load i32, i32* %14, align 4 - %44 = icmp sle i32 %42, %43 - br i1 %44, label %45, label %61 - -45: ; preds = %28 - %46 = load i32*, i32** %8, align 8 - %47 = load i32*, i32** %9, align 8 - %48 = load i32, i32* %10, align 4 - %49 = load i32, i32* %11, align 4 - %50 = sub nsw i32 %49, 1 - %51 = load i32, i32* %12, align 4 - %52 = load i32*, i32** %8, align 8 - %53 = load i32, i32* %13, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %52, i64 %54 - %56 = load i32, i32* %55, align 4 - %57 = sub nsw i32 %51, %56 - %58 = load i32, i32* %13, align 4 - %59 = add nsw i32 %58, 1 - %60 = load i32, i32* %14, align 4 - call void @_Z10subset_sumPiS_iiiii(i32* 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 - br label %123 - -62: ; preds = %7 - %63 = load i32, i32* %13, align 4 - %64 = load i32, i32* %10, align 4 - %65 = icmp slt i32 %63, %64 - br i1 %65, label %66, label %122 - -66: ; preds = %62 - %67 = load i32, i32* %12, align 4 - %68 = load i32*, i32** %8, align 8 - %69 = load i32, i32* %13, align 4 - %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds i32, i32* %68, i64 %70 - %72 = load i32, i32* %71, align 4 - %73 = add nsw i32 %67, %72 - %74 = load i32, i32* %14, align 4 - %75 = icmp sle i32 %73, %74 - br i1 %75, label %76, label %122 - -76: ; preds = %66 - %77 = load i32, i32* %13, align 4 - store i32 %77, i32* %15, align 4 - br label %78 - -78: ; preds = %118, %76 - %79 = load i32, i32* %15, align 4 - %80 = load i32, i32* %10, align 4 - %81 = icmp slt i32 %79, %80 - br i1 %81, label %82, label %121 - -82: ; preds = %78 - %83 = load i32*, i32** %8, align 8 - %84 = load i32, i32* %15, align 4 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i32, i32* %83, i64 %85 - %87 = load i32, i32* %86, align 4 - %88 = load i32*, i32** %9, align 8 - %89 = load i32, i32* %11, align 4 - %90 = sext i32 %89 to i64 - %91 = getelementptr inbounds i32, i32* %88, i64 %90 - store i32 %87, i32* %91, align 4 - %92 = load i32, i32* %12, align 4 - %93 = load i32*, i32** %8, align 8 - %94 = load i32, i32* %15, align 4 - %95 = sext i32 %94 to i64 - %96 = getelementptr inbounds i32, i32* %93, i64 %95 - %97 = load i32, i32* %96, align 4 - %98 = add nsw i32 %92, %97 - %99 = load i32, i32* %14, align 4 - %100 = icmp sle i32 %98, %99 - br i1 %100, label %101, label %117 - -101: ; preds = %82 - %102 = load i32*, i32** %8, align 8 - %103 = load i32*, i32** %9, align 8 - %104 = load i32, i32* %10, align 4 - %105 = load i32, i32* %11, align 4 - %106 = add nsw i32 %105, 1 - %107 = load i32, i32* %12, align 4 - %108 = load i32*, i32** %8, align 8 - %109 = load i32, i32* %15, align 4 - %110 = sext i32 %109 to i64 - %111 = getelementptr inbounds i32, i32* %108, i64 %110 - %112 = load i32, i32* %111, align 4 - %113 = add nsw i32 %107, %112 - %114 = load i32, i32* %15, align 4 - %115 = add nsw i32 %114, 1 - %116 = load i32, i32* %14, align 4 - call void @_Z10subset_sumPiS_iiiii(i32* 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 - br label %118 - -118: ; preds = %117 - %119 = load i32, i32* %15, align 4 - %120 = add nsw i32 %119, 1 - store i32 %120, i32* %15, align 4 - br label %78, !llvm.loop !8 - -121: ; preds = %78 - br label %122 - -122: ; preds = %121, %66, %62 - br label %123 - -123: ; preds = %61, %122 - ret void -} - -; 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 - %7 = alloca i32*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = mul i64 %11, 4 - %13 = call noalias i8* @malloc(i64 noundef %12) #6 - %14 = bitcast i8* %13 to i32* - store i32* %14, i32** %7, align 8 - store i32 0, i32* %8, align 4 - %15 = load i32*, i32** %4, align 8 - %16 = bitcast i32* %15 to i8* - %17 = load i32, i32* %5, align 4 - %18 = sext i32 %17 to i64 - call void @qsort(i8* noundef %16, i64 noundef %18, i64 noundef 4, i32 (i8*, i8*)* noundef @_Z10comparatorPKvS0_) - store i32 0, i32* %9, align 4 - br label %19 - -19: ; preds = %31, %3 - %20 = load i32, i32* %9, align 4 - %21 = load i32, i32* %5, align 4 - %22 = icmp slt i32 %20, %21 - br i1 %22, label %23, label %34 - -23: ; preds = %19 - %24 = load i32*, i32** %4, align 8 - %25 = load i32, i32* %9, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i32, i32* %24, i64 %26 - %28 = load i32, i32* %27, align 4 - %29 = load i32, i32* %8, align 4 - %30 = add nsw i32 %29, %28 - store i32 %30, i32* %8, align 4 - br label %31 - -31: ; preds = %23 - %32 = load i32, i32* %9, align 4 - %33 = add nsw i32 %32, 1 - store i32 %33, i32* %9, align 4 - br label %19, !llvm.loop !9 - -34: ; preds = %19 - %35 = load i32*, i32** %4, align 8 - %36 = getelementptr inbounds i32, i32* %35, i64 0 - %37 = load i32, i32* %36, align 4 - %38 = load i32, i32* %6, align 4 - %39 = icmp sle i32 %37, %38 - br i1 %39, label %40, label %49 - -40: ; preds = %34 - %41 = load i32, i32* %8, align 4 - %42 = load i32, i32* %6, align 4 - %43 = icmp sge i32 %41, %42 - br i1 %43, label %44, label %49 - -44: ; preds = %40 - %45 = load i32*, i32** %4, align 8 - %46 = load i32*, i32** %7, align 8 - %47 = load i32, i32* %5, align 4 - %48 = load i32, i32* %6, align 4 - call void @_Z10subset_sumPiS_iiiii(i32* 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* noundef %51) #6 - ret void -} - -; Function Attrs: nounwind -declare noalias i8* @malloc(i64 noundef) #3 - -declare void @qsort(i8* noundef, i64 noundef, i64 noundef, i32 (i8*, i8*)* noundef) #1 - -; Function Attrs: nounwind -declare void @free(i8* noundef) #3 - -; 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 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [8 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([8 x i32]* @__const.main.weights to i8*), i64 32, i1 false) - store i32 53, i32* %3, align 4 - store i32 8, i32* %4, align 4 - %6 = getelementptr inbounds [8 x i32], [8 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %4, align 4 - %8 = load i32, i32* %3, align 4 - call void @_Z15generateSubsetsPiii(i32* noundef %6, i32 noundef %7, i32 noundef %8) - %9 = load i32, i32* @_ZL11total_nodes, align 4 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #5 - -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, !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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/sudoku.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/sudoku.ll deleted file mode 100644 index c6b0d8668..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/sudoku.ll +++ /dev/null @@ -1,541 +0,0 @@ -; ModuleID = 'PE-benchmarks/sudoku.cpp' -source_filename = "PE-benchmarks/sudoku.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_Z11SolveSudokuPA9_i([9 x i32]* noundef %0) #0 { - %2 = alloca i1, align 1 - %3 = alloca [9 x i32]*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store [9 x i32]* %0, [9 x i32]** %3, align 8 - %7 = load [9 x i32]*, [9 x i32]** %3, align 8 - %8 = call 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 - store i1 true, i1* %2, align 1 - br label %45 - -10: ; preds = %1 - store i32 1, i32* %6, align 4 - br label %11 - -11: ; preds = %41, %10 - %12 = load i32, i32* %6, align 4 - %13 = icmp sle i32 %12, 9 - br i1 %13, label %14, label %44 - -14: ; preds = %11 - %15 = load [9 x i32]*, [9 x i32]** %3, align 8 - %16 = load i32, i32* %4, align 4 - %17 = load i32, i32* %5, align 4 - %18 = load i32, i32* %6, align 4 - %19 = call 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 - %21 = load i32, i32* %6, align 4 - %22 = load [9 x i32]*, [9 x i32]** %3, align 8 - %23 = load i32, i32* %4, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [9 x i32], [9 x i32]* %22, i64 %24 - %26 = load i32, i32* %5, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds [9 x i32], [9 x i32]* %25, i64 0, i64 %27 - store i32 %21, i32* %28, align 4 - %29 = load [9 x i32]*, [9 x i32]** %3, align 8 - %30 = call noundef zeroext i1 @_Z11SolveSudokuPA9_i([9 x i32]* noundef %29) - br i1 %30, label %31, label %32 - -31: ; preds = %20 - store i1 true, i1* %2, align 1 - br label %45 - -32: ; preds = %20 - %33 = load [9 x i32]*, [9 x i32]** %3, align 8 - %34 = load i32, i32* %4, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds [9 x i32], [9 x i32]* %33, i64 %35 - %37 = load i32, i32* %5, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds [9 x i32], [9 x i32]* %36, i64 0, i64 %38 - store i32 0, i32* %39, align 4 - br label %40 - -40: ; preds = %32, %14 - br label %41 - -41: ; preds = %40 - %42 = load i32, i32* %6, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %6, align 4 - br label %11, !llvm.loop !6 - -44: ; preds = %11 - store i1 false, i1* %2, align 1 - br label %45 - -45: ; preds = %44, %31, %9 - %46 = load i1, i1* %2, align 1 - ret i1 %46 -} - -; Function Attrs: 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) #1 { - %4 = alloca i1, align 1 - %5 = alloca [9 x i32]*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - store [9 x i32]* %0, [9 x i32]** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - %8 = load i32*, i32** %6, align 8 - store i32 0, i32* %8, align 4 - br label %9 - -9: ; preds = %38, %3 - %10 = load i32*, i32** %6, align 8 - %11 = load i32, i32* %10, align 4 - %12 = icmp slt i32 %11, 9 - br i1 %12, label %13, label %42 - -13: ; preds = %9 - %14 = load i32*, i32** %7, align 8 - store i32 0, i32* %14, align 4 - br label %15 - -15: ; preds = %33, %13 - %16 = load i32*, i32** %7, align 8 - %17 = load i32, i32* %16, align 4 - %18 = icmp slt i32 %17, 9 - br i1 %18, label %19, label %37 - -19: ; preds = %15 - %20 = load [9 x i32]*, [9 x i32]** %5, align 8 - %21 = load i32*, i32** %6, align 8 - %22 = load i32, i32* %21, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds [9 x i32], [9 x i32]* %20, i64 %23 - %25 = load i32*, i32** %7, align 8 - %26 = load i32, i32* %25, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds [9 x i32], [9 x i32]* %24, i64 0, i64 %27 - %29 = load i32, i32* %28, align 4 - %30 = icmp eq i32 %29, 0 - br i1 %30, label %31, label %32 - -31: ; preds = %19 - store i1 true, i1* %4, align 1 - br label %43 - -32: ; preds = %19 - br label %33 - -33: ; preds = %32 - %34 = load i32*, i32** %7, align 8 - %35 = load i32, i32* %34, align 4 - %36 = add nsw i32 %35, 1 - store i32 %36, i32* %34, align 4 - br label %15, !llvm.loop !8 - -37: ; preds = %15 - br label %38 - -38: ; preds = %37 - %39 = load i32*, i32** %6, align 8 - %40 = load i32, i32* %39, align 4 - %41 = add nsw i32 %40, 1 - store i32 %41, i32* %39, align 4 - br label %9, !llvm.loop !9 - -42: ; preds = %9 - store i1 false, i1* %4, align 1 - br label %43 - -43: ; preds = %42, %31 - %44 = load i1, i1* %4, align 1 - ret i1 %44 -} - -; Function Attrs: 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) #1 { - %5 = alloca [9 x i32]*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store [9 x i32]* %0, [9 x i32]** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 %3, i32* %8, align 4 - %9 = load [9 x i32]*, [9 x i32]** %5, align 8 - %10 = load i32, i32* %6, align 4 - %11 = load i32, i32* %8, align 4 - %12 = call 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 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 - %19 = load [9 x i32]*, [9 x i32]** %5, align 8 - %20 = load i32, i32* %6, align 4 - %21 = load i32, i32* %6, align 4 - %22 = srem i32 %21, 3 - %23 = sub nsw i32 %20, %22 - %24 = load i32, i32* %7, align 4 - %25 = load i32, i32* %7, align 4 - %26 = srem i32 %25, 3 - %27 = sub nsw i32 %24, %26 - %28 = load i32, i32* %8, align 4 - %29 = call 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 - %31 = load [9 x i32]*, [9 x i32]** %5, align 8 - %32 = load i32, i32* %6, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds [9 x i32], [9 x i32]* %31, i64 %33 - %35 = load i32, i32* %7, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds [9 x i32], [9 x i32]* %34, i64 0, i64 %36 - %38 = load i32, i32* %37, align 4 - %39 = icmp eq i32 %38, 0 - br label %40 - -40: ; preds = %30, %18, %13, %4 - %41 = phi i1 [ false, %18 ], [ false, %13 ], [ false, %4 ], [ %39, %30 ] - ret i1 %41 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z9UsedInRowPA9_iii([9 x i32]* noundef %0, i32 noundef %1, i32 noundef %2) #1 { - %4 = alloca i1, align 1 - %5 = alloca [9 x i32]*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store [9 x i32]* %0, [9 x i32]** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 0, i32* %8, align 4 - br label %9 - -9: ; preds = %25, %3 - %10 = load i32, i32* %8, align 4 - %11 = icmp slt i32 %10, 9 - br i1 %11, label %12, label %28 - -12: ; preds = %9 - %13 = load [9 x i32]*, [9 x i32]** %5, align 8 - %14 = load i32, i32* %6, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [9 x i32], [9 x i32]* %13, i64 %15 - %17 = load i32, i32* %8, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [9 x i32], [9 x i32]* %16, i64 0, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = load i32, i32* %7, align 4 - %22 = icmp eq i32 %20, %21 - br i1 %22, label %23, label %24 - -23: ; preds = %12 - store i1 true, i1* %4, align 1 - br label %29 - -24: ; preds = %12 - br label %25 - -25: ; preds = %24 - %26 = load i32, i32* %8, align 4 - %27 = add nsw i32 %26, 1 - store i32 %27, i32* %8, align 4 - br label %9, !llvm.loop !10 - -28: ; preds = %9 - store i1 false, i1* %4, align 1 - br label %29 - -29: ; preds = %28, %23 - %30 = load i1, i1* %4, align 1 - ret i1 %30 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z9UsedInColPA9_iii([9 x i32]* noundef %0, i32 noundef %1, i32 noundef %2) #1 { - %4 = alloca i1, align 1 - %5 = alloca [9 x i32]*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store [9 x i32]* %0, [9 x i32]** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 0, i32* %8, align 4 - br label %9 - -9: ; preds = %25, %3 - %10 = load i32, i32* %8, align 4 - %11 = icmp slt i32 %10, 9 - br i1 %11, label %12, label %28 - -12: ; preds = %9 - %13 = load [9 x i32]*, [9 x i32]** %5, align 8 - %14 = load i32, i32* %8, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [9 x i32], [9 x i32]* %13, i64 %15 - %17 = load i32, i32* %6, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [9 x i32], [9 x i32]* %16, i64 0, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = load i32, i32* %7, align 4 - %22 = icmp eq i32 %20, %21 - br i1 %22, label %23, label %24 - -23: ; preds = %12 - store i1 true, i1* %4, align 1 - br label %29 - -24: ; preds = %12 - br label %25 - -25: ; preds = %24 - %26 = load i32, i32* %8, align 4 - %27 = add nsw i32 %26, 1 - store i32 %27, i32* %8, align 4 - br label %9, !llvm.loop !11 - -28: ; preds = %9 - store i1 false, i1* %4, align 1 - br label %29 - -29: ; preds = %28, %23 - %30 = load i1, i1* %4, align 1 - ret i1 %30 -} - -; Function Attrs: 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) #1 { - %5 = alloca i1, align 1 - %6 = alloca [9 x i32]*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store [9 x i32]* %0, [9 x i32]** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - store i32 0, i32* %10, align 4 - br label %12 - -12: ; preds = %40, %4 - %13 = load i32, i32* %10, align 4 - %14 = icmp slt i32 %13, 3 - br i1 %14, label %15, label %43 - -15: ; preds = %12 - store i32 0, i32* %11, align 4 - br label %16 - -16: ; preds = %36, %15 - %17 = load i32, i32* %11, align 4 - %18 = icmp slt i32 %17, 3 - br i1 %18, label %19, label %39 - -19: ; preds = %16 - %20 = load [9 x i32]*, [9 x i32]** %6, align 8 - %21 = load i32, i32* %10, align 4 - %22 = load i32, i32* %7, align 4 - %23 = add nsw i32 %21, %22 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [9 x i32], [9 x i32]* %20, i64 %24 - %26 = load i32, i32* %11, align 4 - %27 = load i32, i32* %8, align 4 - %28 = add nsw i32 %26, %27 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds [9 x i32], [9 x i32]* %25, i64 0, i64 %29 - %31 = load i32, i32* %30, align 4 - %32 = load i32, i32* %9, align 4 - %33 = icmp eq i32 %31, %32 - br i1 %33, label %34, label %35 - -34: ; preds = %19 - store i1 true, i1* %5, align 1 - br label %44 - -35: ; preds = %19 - br label %36 - -36: ; preds = %35 - %37 = load i32, i32* %11, align 4 - %38 = add nsw i32 %37, 1 - store i32 %38, i32* %11, align 4 - br label %16, !llvm.loop !12 - -39: ; preds = %16 - br label %40 - -40: ; preds = %39 - %41 = load i32, i32* %10, align 4 - %42 = add nsw i32 %41, 1 - store i32 %42, i32* %10, align 4 - br label %12, !llvm.loop !13 - -43: ; preds = %12 - store i1 false, i1* %5, align 1 - br label %44 - -44: ; preds = %43, %34 - %45 = load i1, i1* %5, align 1 - ret i1 %45 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9printGridPA9_i([9 x i32]* noundef %0) #0 { - %2 = alloca [9 x i32]*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store [9 x i32]* %0, [9 x i32]** %2, align 8 - store i32 0, i32* %3, align 4 - br label %5 - -5: ; preds = %28, %1 - %6 = load i32, i32* %3, align 4 - %7 = icmp slt i32 %6, 9 - br i1 %7, label %8, label %31 - -8: ; preds = %5 - store i32 0, i32* %4, align 4 - br label %9 - -9: ; preds = %23, %8 - %10 = load i32, i32* %4, align 4 - %11 = icmp slt i32 %10, 9 - br i1 %11, label %12, label %26 - -12: ; preds = %9 - %13 = load [9 x i32]*, [9 x i32]** %2, align 8 - %14 = load i32, i32* %3, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [9 x i32], [9 x i32]* %13, i64 %15 - %17 = load i32, i32* %4, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [9 x i32], [9 x i32]* %16, i64 0, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = call 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 !14 - -26: ; preds = %9 - %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 !15 - -31: ; preds = %5 - ret void -} - -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) #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -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) #2 - -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)) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %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 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]* noundef %9) - br label %12 - -10: ; preds = %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -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 = { 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, !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"} -!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-llvm14/tarjan-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/tarjan-algorithm.ll deleted file mode 100644 index 69c9662e3..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/tarjan-algorithm.ll +++ /dev/null @@ -1,3276 +0,0 @@ -; ModuleID = 'PE-benchmarks/tarjan-algorithm.cpp' -source_filename = "PE-benchmarks/tarjan-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"class.std::stack" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { i32**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%"struct.std::_Deque_iterator" = type { i32*, i32*, i32*, i32** } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } -%"class.std::__new_allocator.1" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.std::allocator.3" = type { i8 } -%"class.std::__new_allocator.4" = type { i8 } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any - -$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any - -$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any - -$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any - -$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIPPiET_S2_ = comdat any - -$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIPPiET_S2_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any - -$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNSt15__new_allocatorIPiED2Ev = comdat any - -$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any - -$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -$_ZNSt5dequeIiSaIiEE4backEv = comdat any - -$_ZNSt5dequeIiSaIiEE3endEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEmmEv = comdat any - -$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any - -$_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any - -$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any - -$_ZNSt5dequeIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any - -$_ZNSt15__new_allocatorIiED2Ev = comdat any - -@_ZZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPbE4time = internal global i32 0, align 4 -@_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 -@.str.3 = private unnamed_addr constant [24 x i8] c"\0ASCCs in second graph \0A\00", align 1 -@.str.4 = private unnamed_addr constant [23 x i8] c"\0ASCCs in third graph \0A\00", align 1 -@.str.5 = private unnamed_addr constant [24 x i8] c"\0ASCCs in fourth graph \0A\00", align 1 -@.str.6 = private unnamed_addr constant [23 x i8] c"\0ASCCs in fifth graph \0A\00", align 1 -@.str.7 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -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 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias 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 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %26) #15 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - ret void -} - -; 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 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef nonnull align 4 dereferenceable(4) %6) - ret void -} - -; 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"* noundef nonnull align 8 dereferenceable(24) %6) #15 - %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"* 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: 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) #4 align 2 { - %7 = alloca %class.Graph*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"class.std::stack"*, align 8 - %12 = alloca i8*, align 8 - %13 = alloca %"struct.std::_List_iterator", align 8 - %14 = alloca %"struct.std::_List_iterator", align 8 - %15 = alloca %"struct.std::_List_iterator", align 8 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %7, align 8 - store i32 %1, i32* %8, align 4 - store i32* %2, i32** %9, align 8 - store i32* %3, i32** %10, align 8 - store %"class.std::stack"* %4, %"class.std::stack"** %11, align 8 - store i8* %5, i8** %12, align 8 - %18 = load %class.Graph*, %class.Graph** %7, align 8 - %19 = load i32, i32* @_ZZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPbE4time, align 4 - %20 = add nsw i32 %19, 1 - store i32 %20, i32* @_ZZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPbE4time, align 4 - %21 = load i32*, i32** %10, align 8 - %22 = load i32, i32* %8, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds i32, i32* %21, i64 %23 - store i32 %20, i32* %24, align 4 - %25 = load i32*, i32** %9, align 8 - %26 = load i32, i32* %8, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds i32, i32* %25, i64 %27 - store i32 %20, i32* %28, align 4 - %29 = load %"class.std::stack"*, %"class.std::stack"** %11, align 8 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* 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"* noundef nonnull align 8 dereferenceable(8) %13) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %38) #15 - %40 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %14, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %39, %"struct.std::__detail::_List_node_base"** %40, align 8 - %41 = bitcast %"struct.std::_List_iterator"* %13 to i8* - %42 = bitcast %"struct.std::_List_iterator"* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %41, i8* align 8 %42, i64 8, i1 false) - br label %43 - -43: ; preds = %107, %6 - %44 = getelementptr inbounds %class.Graph, %class.Graph* %18, i32 0, i32 1 - %45 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %44, align 8 - %46 = load i32, i32* %8, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %45, i64 %47 - %49 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %48) #15 - %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 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) #15 - br i1 %51, label %52, label %109 - -52: ; preds = %43 - %53 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %13) #15 - %54 = load i32, i32* %53, align 4 - store i32 %54, i32* %16, align 4 - %55 = load i32*, i32** %9, align 8 - %56 = load i32, i32* %16, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %55, i64 %57 - %59 = load i32, i32* %58, align 4 - %60 = icmp eq i32 %59, -1 - br i1 %60, label %61, label %81 - -61: ; preds = %52 - %62 = load i32, i32* %16, align 4 - %63 = load i32*, i32** %9, align 8 - %64 = load i32*, i32** %10, align 8 - %65 = load %"class.std::stack"*, %"class.std::stack"** %11, align 8 - %66 = load i8*, i8** %12, align 8 - call void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%class.Graph* 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 - %70 = getelementptr inbounds i32, i32* %67, i64 %69 - %71 = load i32*, i32** %10, align 8 - %72 = load i32, i32* %16, align 4 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds i32, i32* %71, i64 %73 - %75 = call 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 - %79 = sext i32 %78 to i64 - %80 = getelementptr inbounds i32, i32* %77, i64 %79 - store i32 %76, i32* %80, align 4 - br label %106 - -81: ; preds = %52 - %82 = load i8*, i8** %12, align 8 - %83 = load i32, i32* %16, align 4 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds i8, i8* %82, i64 %84 - %86 = load i8, i8* %85, align 1 - %87 = trunc i8 %86 to i1 - %88 = zext i1 %87 to i32 - %89 = icmp eq i32 %88, 1 - br i1 %89, label %90, label %105 - -90: ; preds = %81 - %91 = load i32*, i32** %10, align 8 - %92 = load i32, i32* %8, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %91, i64 %93 - %95 = load i32*, i32** %9, align 8 - %96 = load i32, i32* %16, align 4 - %97 = sext i32 %96 to i64 - %98 = getelementptr inbounds i32, i32* %95, i64 %97 - %99 = call 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 - %103 = sext i32 %102 to i64 - %104 = getelementptr inbounds i32, i32* %101, i64 %103 - store i32 %100, i32* %104, align 4 - br label %105 - -105: ; preds = %90, %81 - br label %106 - -106: ; preds = %105, %61 - br label %107 - -107: ; preds = %106 - %108 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %13) #15 - br label %43, !llvm.loop !6 - -109: ; preds = %43 - store i32 0, i32* %17, align 4 - %110 = load i32*, i32** %10, align 8 - %111 = load i32, i32* %8, align 4 - %112 = sext i32 %111 to i64 - %113 = getelementptr inbounds i32, i32* %110, i64 %112 - %114 = load i32, i32* %113, align 4 - %115 = load i32*, i32** %9, align 8 - %116 = load i32, i32* %8, align 4 - %117 = sext i32 %116 to i64 - %118 = getelementptr inbounds i32, i32* %115, i64 %117 - %119 = load i32, i32* %118, align 4 - %120 = icmp eq i32 %114, %119 - br i1 %120, label %121, label %152 - -121: ; preds = %109 - br label %122 - -122: ; preds = %128, %121 - %123 = load %"class.std::stack"*, %"class.std::stack"** %11, align 8 - %124 = call 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 - br i1 %127, label %128, label %140 - -128: ; preds = %122 - %129 = load %"class.std::stack"*, %"class.std::stack"** %11, align 8 - %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 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"* 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 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 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"* noundef nonnull align 8 dereferenceable(80) %151) - br label %152 - -152: ; preds = %140, %109 - ret void -} - -; 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) #4 comdat align 2 { - %3 = alloca %"class.std::stack"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::stack"*, %"class.std::stack"** %3, align 8 - %6 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %5, i32 0, i32 0 - %7 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* 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"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #15 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -; 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) #5 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #15 - %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: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %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 noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) - ret i32* %7 -} - -; 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 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: 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) #5 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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #15 - ret i32* %5 -} - -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) #7 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #7 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %0) #5 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"* noundef nonnull align 8 dereferenceable(80) %4) #15 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph3SCCEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %class.Graph*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i8*, align 8 - %6 = alloca %"class.std::stack"*, align 8 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %2, align 8 - %11 = load %class.Graph*, %class.Graph** %2, align 8 - %12 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %13 = load i32, i32* %12, align 8 - %14 = sext i32 %13 to i64 - %15 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %14, i64 4) - %16 = extractvalue { i64, i1 } %15, 1 - %17 = extractvalue { i64, i1 } %15, 0 - %18 = select i1 %16, i64 -1, i64 %17 - %19 = call noalias noundef nonnull i8* @_Znam(i64 noundef %18) #14 - %20 = bitcast i8* %19 to i32* - store i32* %20, i32** %3, align 8 - %21 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %22 = load i32, i32* %21, align 8 - %23 = sext i32 %22 to i64 - %24 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %23, i64 4) - %25 = extractvalue { i64, i1 } %24, 1 - %26 = extractvalue { i64, i1 } %24, 0 - %27 = select i1 %25, i64 -1, i64 %26 - %28 = call noalias noundef nonnull i8* @_Znam(i64 noundef %27) #14 - %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 noundef nonnull i8* @_Znam(i64 noundef %32) #14 - store i8* %33, i8** %5, align 8 - %34 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 80) #14 - %35 = bitcast i8* %34 to %"class.std::stack"* - invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %35) - to label %36 unwind label %58 - -36: ; preds = %1 - store %"class.std::stack"* %35, %"class.std::stack"** %6, align 8 - store i32 0, i32* %9, align 4 - br label %37 - -37: ; preds = %55, %36 - %38 = load i32, i32* %9, align 4 - %39 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %40 = load i32, i32* %39, align 8 - %41 = icmp slt i32 %38, %40 - br i1 %41, label %42, label %62 - -42: ; preds = %37 - %43 = load i32*, i32** %3, align 8 - %44 = load i32, i32* %9, align 4 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i32, i32* %43, i64 %45 - store i32 -1, i32* %46, align 4 - %47 = load i32*, i32** %4, align 8 - %48 = load i32, i32* %9, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %47, i64 %49 - store i32 -1, i32* %50, align 4 - %51 = load i8*, i8** %5, align 8 - %52 = load i32, i32* %9, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds i8, i8* %51, i64 %53 - store i8 0, i8* %54, align 1 - br label %55 - -55: ; preds = %42 - %56 = load i32, i32* %9, align 4 - %57 = add nsw i32 %56, 1 - store i32 %57, i32* %9, align 4 - br label %37, !llvm.loop !9 - -58: ; preds = %1 - %59 = landingpad { i8*, i32 } - cleanup - %60 = extractvalue { i8*, i32 } %59, 0 - store i8* %60, i8** %7, align 8 - %61 = extractvalue { i8*, i32 } %59, 1 - store i32 %61, i32* %8, align 4 - call void @_ZdlPv(i8* noundef %34) #16 - br label %86 - -62: ; preds = %37 - store i32 0, i32* %10, align 4 - br label %63 - -63: ; preds = %82, %62 - %64 = load i32, i32* %10, align 4 - %65 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %66 = load i32, i32* %65, align 8 - %67 = icmp slt i32 %64, %66 - br i1 %67, label %68, label %85 - -68: ; preds = %63 - %69 = load i32*, i32** %3, align 8 - %70 = load i32, i32* %10, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds i32, i32* %69, i64 %71 - %73 = load i32, i32* %72, align 4 - %74 = icmp eq i32 %73, -1 - br i1 %74, label %75, label %81 - -75: ; preds = %68 - %76 = load i32, i32* %10, align 4 - %77 = load i32*, i32** %3, align 8 - %78 = load i32*, i32** %4, align 8 - %79 = load %"class.std::stack"*, %"class.std::stack"** %6, align 8 - %80 = load i8*, i8** %5, align 8 - call void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%class.Graph* 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 - br label %82 - -82: ; preds = %81 - %83 = load i32, i32* %10, align 4 - %84 = add nsw i32 %83, 1 - store i32 %84, i32* %10, align 4 - br label %63, !llvm.loop !10 - -85: ; preds = %63 - ret void - -86: ; preds = %58 - %87 = load i8*, i8** %7, align 8 - %88 = load i32, i32* %8, align 4 - %89 = insertvalue { i8*, i32 } undef, i8* %87, 0 - %90 = insertvalue { i8*, i32 } %89, i32 %88, 1 - resume { i8*, i32 } %90 -} - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; Function Attrs: noinline uwtable -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"* noundef nonnull align 8 dereferenceable(80) %4) - ret void -} - -declare i32 @__gxx_personality_v0(...) - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #8 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #9 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - %3 = alloca %class.Graph, align 8 - %4 = alloca %class.Graph, align 8 - %5 = alloca %class.Graph, align 8 - %6 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - %7 = call noundef 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #15 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #15 - ret void -} - -; 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) #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"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: 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 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #15 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %16 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %18 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17) - store %"struct.std::_List_node"* %18, %"struct.std::_List_node"** %11, align 8 - %19 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %20 = 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) %19) #15 - store %"class.std::allocator"* %20, %"class.std::allocator"** %12, align 8 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %21, %"struct.std::_List_node"* noundef %22) #15 - %23 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %25 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %24) - to label %26 unwind label %42 - -26: ; preds = %2 - %27 = load i32*, i32** %10, align 8 - %28 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %27) #15 - store %"class.std::allocator"* %23, %"class.std::allocator"** %6, align 8 - store i32* %25, i32** %7, align 8 - store i32* %28, i32** %8, align 8 - %29 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %30 = bitcast %"class.std::allocator"* %29 to %"class.std::__new_allocator"* - %31 = load i32*, i32** %7, align 8 - %32 = load i32*, i32** %8, align 8 - %33 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %32) #15 - store %"class.std::__new_allocator"* %30, %"class.std::__new_allocator"** %3, align 8 - store i32* %31, i32** %4, align 8 - store i32* %33, i32** %5, align 8 - %34 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %35 = load i32*, i32** %4, align 8 - %36 = bitcast i32* %35 to i8* - %37 = load i32*, i32** %5, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %37) #15 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %35, align 4 - %40 = 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) %13, i8* null) #15 - %41 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #15 - ret %"struct.std::_List_node"* %41 - -42: ; preds = %2 - %43 = landingpad { i8*, i32 } - cleanup - %44 = extractvalue { i8*, i32 } %43, 0 - store i8* %44, i8** %14, align 8 - %45 = extractvalue { i8*, i32 } %43, 1 - store i32 %45, i32* %15, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #15 - br label %46 - -46: ; preds = %42 - %47 = load i8*, i8** %14, align 8 - %48 = load i32, i32* %15, align 4 - %49 = insertvalue { i8*, i32 } undef, i8* %47, 0 - %50 = insertvalue { i8*, i32 } %49, i32 %48, 1 - resume { i8*, i32 } %50 -} - -; 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) #5 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare 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) #10 - -; 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) #5 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; 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) #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 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* 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 #3 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #15 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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) #5 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #15 - ret i32* %5 -} - -; 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) #5 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #17 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #18 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #14 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -declare void @_ZSt28__throw_bad_array_new_lengthv() #11 - -; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #11 - -; 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) #5 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: 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) #5 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #15 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #15 - call void @_ZSt9terminatev() #17 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #16 - ret void -} - -; 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::__new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store i32* %1, i32** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %19 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %19 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 2 - %23 = load i32*, i32** %22, align 8 - %24 = getelementptr inbounds i32, i32* %23, i64 -1 - %25 = icmp ne i32* %17, %24 - br i1 %25, label %26, label %55 - -26: ; preds = %2 - %27 = bitcast %"class.std::deque"* %11 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 %"class.std::allocator.0"* - %30 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %31 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %30, i32 0, i32 0 - %32 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %31 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %32, i32 0, i32 3 - %34 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %33, i32 0, i32 0 - %35 = load i32*, i32** %34, align 8 - %36 = load i32*, i32** %10, align 8 - store %"class.std::allocator.0"* %29, %"class.std::allocator.0"** %6, align 8 - store i32* %35, i32** %7, align 8 - store i32* %36, i32** %8, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %7, align 8 - %40 = load i32*, i32** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #15 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %3, align 8 - store i32* %39, i32** %4, align 8 - store i32* %41, i32** %5, align 8 - %42 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - %43 = load i32*, i32** %4, align 8 - %44 = bitcast i32* %43 to i8* - %45 = load i32*, i32** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %45) #15 - %47 = load i32, i32* %46, align 4 - store i32 %47, i32* %43, align 4 - %48 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %51, i32 0, i32 0 - %53 = load i32*, i32** %52, align 8 - %54 = getelementptr inbounds i32, i32* %53, i32 1 - store i32* %54, i32** %52, align 8 - br label %57 - -55: ; preds = %2 - %56 = load i32*, i32** %10, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, i32* noundef nonnull align 4 dereferenceable(4) %56) - br label %57 - -57: ; preds = %55, %26 - ret void -} - -; 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::__new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store i32* %1, i32** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #15 - %13 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #15 - %14 = icmp eq i64 %12, %13 - br i1 %14, label %15, label %16 - -15: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* noundef getelementptr inbounds ([48 x i8], [48 x i8]* @.str.7, i64 0, i64 0)) #18 - unreachable - -16: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) - %17 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %18 = call noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %17) - %19 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 3 - %23 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %22, i32 0, i32 3 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds i32*, i32** %24, i64 1 - store i32* %18, i32** %25, align 8 - %26 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %27 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %26, i32 0, i32 0 - %28 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %27 to %"class.std::allocator.0"* - %29 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %29, i32 0, i32 0 - %31 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %30 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %32 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %31, i32 0, i32 3 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load i32*, i32** %33, align 8 - %35 = load i32*, i32** %10, align 8 - %36 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %35) #15 - store %"class.std::allocator.0"* %28, %"class.std::allocator.0"** %6, align 8 - store i32* %34, i32** %7, align 8 - store i32* %36, i32** %8, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %7, align 8 - %40 = load i32*, i32** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #15 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %3, align 8 - store i32* %39, i32** %4, align 8 - store i32* %41, i32** %5, align 8 - %42 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - %43 = load i32*, i32** %4, align 8 - %44 = bitcast i32* %43 to i8* - %45 = load i32*, i32** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %45) #15 - %47 = load i32, i32* %46, align 4 - store i32 %47, i32* %43, align 4 - %48 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %53 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %52, i32 0, i32 0 - %54 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %53 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %55 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %54, i32 0, i32 3 - %56 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %55, i32 0, i32 3 - %57 = load i32**, i32*** %56, align 8 - %58 = getelementptr inbounds i32*, i32** %57, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %51, i32** noundef %58) #15 - %59 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %60 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %59, i32 0, i32 0 - %61 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %60 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %62 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %61, i32 0, i32 3 - %63 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %62, i32 0, i32 1 - %64 = load i32*, i32** %63, align 8 - %65 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %66 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %65, i32 0, i32 0 - %67 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %66 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %68 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %67, i32 0, i32 3 - %69 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %68, i32 0, i32 0 - store i32* %64, i32** %69, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call 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) #15 - ret i64 %12 -} - -; 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) #5 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 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) #15 - %6 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #15 - ret i64 %6 -} - -; Function Attrs: noreturn -declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #11 - -; 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 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load i32**, i32*** %22, align 8 - %24 = ptrtoint i32** %18 to i64 - %25 = ptrtoint i32** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* 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: 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::allocator.0"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator.0"* - %8 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - store %"class.std::allocator.0"* %7, %"class.std::allocator.0"** %2, align 8 - store i64 %8, i64* %3, align 8 - %9 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %10 = bitcast %"class.std::allocator.0"* %9 to %"class.std::__new_allocator.1"* - %11 = load i64, i64* %3, align 8 - %12 = call noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %10, i64 noundef %11, i8* noundef null) - ret i32* %12 -} - -; 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) #5 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load i32**, i32*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store i32** %6, i32*** %7, align 8 - %8 = load i32**, i32*** %4, align 8 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store i32* %9, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load i32*, i32** %11, align 8 - %13 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #15 - %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: 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) #5 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 noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #15 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load i32**, i32*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = ptrtoint i32** %8 to i64 - %13 = ptrtoint i32** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = 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 i64 - %21 = sub nsw i64 %15, %20 - %22 = mul nsw i64 %5, %21 - %23 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 0 - %25 = load i32*, i32** %24, align 8 - %26 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 1 - %28 = load i32*, i32** %27, align 8 - %29 = ptrtoint i32* %25 to i64 - %30 = ptrtoint i32* %28 to i64 - %31 = sub i64 %29, %30 - %32 = sdiv exact i64 %31, 4 - %33 = add nsw i64 %22, %32 - %34 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 2 - %36 = load i32*, i32** %35, align 8 - %37 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %38 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %37, i32 0, i32 0 - %39 = load i32*, i32** %38, align 8 - %40 = ptrtoint i32* %36 to i64 - %41 = ptrtoint i32* %39 to i64 - %42 = sub i64 %40, %41 - %43 = sdiv exact i64 %42, 4 - %44 = add nsw i64 %33, %43 - ret i64 %44 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #5 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 - ret i64 %1 - -3: ; preds = %0 - %4 = landingpad { i8*, i32 } - catch i8* null - %5 = extractvalue { i8*, i32 } %4, 0 - call void @__clang_call_terminate(i8* %5) #17 - unreachable -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #5 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: 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) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca %"class.std::__new_allocator.1"*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %5, align 8 - store i64 9223372036854775807, i64* %6, align 8 - %8 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %5, align 8 - store %"class.std::allocator.0"* %8, %"class.std::allocator.0"** %4, align 8 - %9 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %10 = bitcast %"class.std::allocator.0"* %9 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %10, %"class.std::__new_allocator.1"** %3, align 8 - %11 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - store %"class.std::__new_allocator.1"* %11, %"class.std::__new_allocator.1"** %2, align 8 - %12 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - store i64 2305843009213693951, i64* %7, align 8 - %13 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef nonnull align 8 dereferenceable(8) %7) - to label %14 unwind label %16 - -14: ; preds = %1 - %15 = load i64, i64* %13, align 8 - ret i64 %15 - -16: ; preds = %1 - %17 = landingpad { i8*, i32 } - catch i8* null - %18 = extractvalue { i8*, i32 } %17, 0 - call void @__clang_call_terminate(i8* %18) #17 - unreachable -} - -; 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) #5 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: 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) #5 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: 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 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i64, align 8 - %11 = alloca i32**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load i32**, i32*** %24, align 8 - %26 = ptrtoint i32** %19 to i64 - %27 = ptrtoint i32** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load i32**, i32*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds i32*, i32** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds i32*, i32** %56, i64 %63 - store i32** %64, i32*** %9, align 8 - %65 = load i32**, i32*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load i32**, i32*** %70, align 8 - %72 = icmp ult i32** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load i32**, i32*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load i32**, i32*** %84, align 8 - %86 = getelementptr inbounds i32*, i32** %85, i64 1 - %87 = load i32**, i32*** %9, align 8 - %88 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %79, i32** noundef %86, i32** noundef %87) - br label %107 - -89: ; preds = %62 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load i32**, i32*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load i32**, i32*** %100, align 8 - %102 = getelementptr inbounds i32*, i32** %101, i64 1 - %103 = load i32**, i32*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds i32*, i32** %103, i64 %104 - %106 = call noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %95, i32** noundef %102, i32** noundef %105) - br label %107 - -107: ; preds = %89, %73 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call 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 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 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds i32*, i32** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds i32*, i32** %130, i64 %137 - store i32** %138, i32*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load i32**, i32*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load i32**, i32*** %149, align 8 - %151 = getelementptr inbounds i32*, i32** %150, i64 1 - %152 = load i32**, i32*** %9, align 8 - %153 = call 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 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load i32**, i32*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, i32** noundef %159, i64 noundef %164) #15 - %165 = load i32**, i32*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store i32** %165, i32*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load i32**, i32*** %9, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, i32** noundef %180) #15 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load i32**, i32*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds i32*, i32** %185, i64 %186 - %188 = getelementptr inbounds i32*, i32** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, i32** noundef %188) #15 - ret void -} - -; 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %9) - %11 = load i32**, i32*** %6, align 8 - %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: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %9) - %11 = load i32**, i32*** %6, align 8 - %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: 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) #5 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable -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) #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca %"class.std::allocator.3"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::allocator.3", align 1 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %7, align 8 - store i64 %1, i64* %8, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %9, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12) #15 - %13 = load i64, i64* %8, align 8 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %5, align 8 - store i64 %13, i64* %6, align 8 - %14 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %5, align 8 - %15 = bitcast %"class.std::allocator.3"* %14 to %"class.std::__new_allocator.4"* - %16 = load i64, i64* %6, align 8 - %17 = invoke noundef i32** @_ZNSt15__new_allocatorIPiE8allocateEmPKv(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %15, i64 noundef %16, i8* noundef null) - to label %18 unwind label %22 - -18: ; preds = %2 - br label %19 - -19: ; preds = %18 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %4, align 8 - %20 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %21 = bitcast %"class.std::allocator.3"* %20 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %21) #15 - ret i32** %17 - -22: ; preds = %2 - %23 = landingpad { i8*, i32 } - cleanup - %24 = extractvalue { i8*, i32 } %23, 0 - store i8* %24, i8** %10, align 8 - %25 = extractvalue { i8*, i32 } %23, 1 - store i32 %25, i32* %11, align 4 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %3, align 8 - %26 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %27 = bitcast %"class.std::allocator.3"* %26 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %27) #15 - br label %28 - -28: ; preds = %22 - %29 = load i8*, i8** %10, align 8 - %30 = load i32, i32* %11, align 4 - %31 = insertvalue { i8*, i32 } undef, i8* %29, 0 - %32 = insertvalue { i8*, i32 } %31, i32 %30, 1 - resume { i8*, i32 } %32 -} - -; Function Attrs: 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) #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - %7 = alloca %"class.std::allocator.3"*, align 8 - %8 = alloca %"class.std::allocator.3"*, align 8 - %9 = alloca %"class.std::_Deque_base"*, align 8 - %10 = alloca i32**, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"class.std::allocator.3", align 1 - %13 = alloca i8*, align 8 - %14 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %9, align 8 - store i32** %1, i32*** %10, align 8 - store i64 %2, i64* %11, align 8 - %15 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %9, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %12, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %15) #15 - %16 = load i32**, i32*** %10, align 8 - %17 = load i64, i64* %11, align 8 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %4, align 8 - store i32** %16, i32*** %5, align 8 - store i64 %17, i64* %6, align 8 - %18 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %19 = bitcast %"class.std::allocator.3"* %18 to %"class.std::__new_allocator.4"* - %20 = load i32**, i32*** %5, align 8 - %21 = load i64, i64* %6, align 8 - call void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %19, i32** noundef %20, i64 noundef %21) - br label %22 - -22: ; preds = %3 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %8, align 8 - %23 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %8, align 8 - %24 = bitcast %"class.std::allocator.3"* %23 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %24) #15 - ret void - -25: ; No predecessors! - %26 = landingpad { i8*, i32 } - catch i8* null - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %13, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %14, align 4 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %7, align 8 - %29 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %7, align 8 - %30 = bitcast %"class.std::allocator.3"* %29 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %30) #15 - br label %31 - -31: ; preds = %25 - %32 = load i8*, i8** %13, align 8 - call void @__clang_call_terminate(i8* %32) #17 - unreachable -} - -; 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #15 - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %9) #15 - %11 = load i32**, i32*** %6, align 8 - %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #15 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %0) #5 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: 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) #5 comdat { - %3 = alloca i32***, align 8 - %4 = alloca i32**, align 8 - store i32*** %0, i32**** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - ret i32** %5 -} - -; Function Attrs: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %0) #5 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: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(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 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = bitcast i32** %17 to i8* - %19 = load i32**, i32*** %4, align 8 - %20 = bitcast i32** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %30 - -23: ; preds = %3 - %24 = load i64, i64* %7, align 8 - %25 = icmp eq i64 %24, 1 - br i1 %25, label %26, label %29 - -26: ; preds = %23 - %27 = load i32**, i32*** %6, align 8 - %28 = load i32**, i32*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %27, i32** noundef %28) - br label %29 - -29: ; preds = %26, %23 - br label %30 - -30: ; preds = %29, %16 - %31 = load i32**, i32*** %6, align 8 - %32 = load i64, i64* %7, align 8 - %33 = getelementptr inbounds i32*, i32** %31, i64 %32 - ret i32** %33 -} - -; Function Attrs: argmemonly nofree nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #6 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %0, i32** noundef %1) #5 comdat align 2 { - %3 = alloca i32**, align 8 - %4 = alloca i32**, align 8 - store i32** %0, i32*** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32**, i32*** %3, align 8 - store i32* %6, i32** %7, align 8 - ret void -} - -; 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #15 - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %9) #15 - %11 = load i32**, i32*** %6, align 8 - %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #15 - %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: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call 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: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #5 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32*, i32** %17, i64 %19 - %21 = bitcast i32** %20 to i8* - %22 = load i32**, i32*** %4, align 8 - %23 = bitcast i32** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %34 - -26: ; preds = %3 - %27 = load i64, i64* %7, align 8 - %28 = icmp eq i64 %27, 1 - br i1 %28, label %29, label %33 - -29: ; preds = %26 - %30 = load i32**, i32*** %6, align 8 - %31 = getelementptr inbounds i32*, i32** %30, i64 -1 - %32 = load i32**, i32*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %31, i32** noundef %32) - br label %33 - -33: ; preds = %29, %26 - br label %34 - -34: ; preds = %33, %16 - %35 = load i32**, i32*** %6, align 8 - %36 = load i64, i64* %7, align 8 - %37 = sub i64 0, %36 - %38 = getelementptr inbounds i32*, i32** %35, i64 %37 - ret i32** %38 -} - -; Function Attrs: 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) #3 comdat align 2 { - %3 = alloca %"class.std::__new_allocator.4"*, align 8 - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = bitcast %"class.std::allocator.3"* %0 to i8* - store i8* %8, i8** %6, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %7, align 8 - %9 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - %10 = 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) %9) #15 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %4, align 8 - store %"class.std::allocator.0"* %10, %"class.std::allocator.0"** %5, align 8 - %11 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %12 = bitcast %"class.std::allocator.3"* %11 to %"class.std::__new_allocator.4"* - store %"class.std::__new_allocator.4"* %12, %"class.std::__new_allocator.4"** %3, align 8 - %13 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %3, align 8 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt15__new_allocatorIPiE8allocateEmPKv(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.4"*, align 8 - %5 = alloca %"class.std::__new_allocator.4"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator.4"* %8, %"class.std::__new_allocator.4"** %4, align 8 - %10 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %4, align 8 - %11 = icmp ugt i64 %9, 1152921504606846975 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 2305843009213693951 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #18 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 8 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #14 - %21 = bitcast i8* %20 to i32** - ret i32** %21 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.4"*, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %2, align 8 - %3 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.4"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = bitcast i32** %8 to i8* - call void @_ZdlPv(i8* noundef %9) #16 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca %"class.std::__new_allocator.1"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator.1"* %8, %"class.std::__new_allocator.1"** %4, align 8 - %10 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - %11 = icmp ugt i64 %9, 2305843009213693951 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 4611686018427387903 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #18 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 4 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #14 - %21 = bitcast i8* %20 to i32* - ret i32* %21 -} - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: 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) #5 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"* noundef nonnull align 8 dereferenceable(80) %4) #15 - %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) #15 - %6 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3) #15 - ret i32* %6 -} - -; 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) #5 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %10) #15 - ret void -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - %7 = load i32*, i32** %6, align 8 - %8 = icmp eq i32* %5, %7 - br i1 %8, label %9, label %16 - -9: ; preds = %1 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = getelementptr inbounds i32*, i32** %11, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3, i32** noundef %12) #15 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - %14 = load i32*, i32** %13, align 8 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* %14, i32** %15, align 8 - br label %16 - -16: ; preds = %9, %1 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %18 = load i32*, i32** %17, align 8 - %19 = getelementptr inbounds i32, i32* %18, i32 -1 - store i32* %19, i32** %17, align 8 - ret %"struct.std::_Deque_iterator"* %3 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %1) unnamed_addr #3 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load i32*, i32** %12, align 8 - store i32* %13, i32** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - store i32* %17, i32** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load i32**, i32*** %20, align 8 - store i32** %21, i32*** %18, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 0 - %13 = load i32*, i32** %12, align 8 - %14 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 1 - %19 = load i32*, i32** %18, align 8 - %20 = icmp ne i32* %13, %19 - br i1 %20, label %21, label %42 - -21: ; preds = %1 - %22 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %23 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %23 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %24, i32 0, i32 3 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %25, i32 0, i32 0 - %27 = load i32*, i32** %26, align 8 - %28 = getelementptr inbounds i32, i32* %27, i32 -1 - store i32* %28, i32** %26, align 8 - %29 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %30 = 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) %29) #15 - %31 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 0 - %36 = load i32*, i32** %35, align 8 - store %"class.std::allocator.0"* %30, %"class.std::allocator.0"** %4, align 8 - store i32* %36, i32** %5, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %2, align 8 - store i32* %39, i32** %3, align 8 - %40 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %41 = load i32*, i32** %3, align 8 - br label %44 - -42: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) - to label %43 unwind label %45 - -43: ; preds = %42 - br label %44 - -44: ; preds = %43, %21 - ret void - -45: ; preds = %42 - %46 = landingpad { i8*, i32 } - catch i8* null - %47 = extractvalue { i8*, i32 } %46, 0 - call void @__clang_call_terminate(i8* %47) #17 - unreachable -} - -; 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) #5 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %9, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 3 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 1 - %14 = load i32*, i32** %13, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %14) #15 - %15 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %16 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %15, i32 0, i32 0 - %17 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %16 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %18 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %17, i32 0, i32 3 - %19 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 3 - %23 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %22, i32 0, i32 3 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds i32*, i32** %24, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %18, i32** noundef %25) #15 - %26 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %27 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %26, i32 0, i32 0 - %28 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %27 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %28, i32 0, i32 3 - %30 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %29, i32 0, i32 2 - %31 = load i32*, i32** %30, align 8 - %32 = getelementptr inbounds i32, i32* %31, i64 -1 - %33 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %34 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %33, i32 0, i32 0 - %35 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %34 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %36 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %35, i32 0, i32 3 - %37 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %36, i32 0, i32 0 - store i32* %32, i32** %37, align 8 - %38 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %39 = 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) %38) #15 - %40 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %41 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %40, i32 0, i32 0 - %42 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %41 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %43 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %42, i32 0, i32 3 - %44 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %43, i32 0, i32 0 - %45 = load i32*, i32** %44, align 8 - store %"class.std::allocator.0"* %39, %"class.std::allocator.0"** %4, align 8 - store i32* %45, i32** %5, align 8 - %46 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %47 = bitcast %"class.std::allocator.0"* %46 to %"class.std::__new_allocator.1"* - %48 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator.1"* %47, %"class.std::__new_allocator.1"** %2, align 8 - store i32* %48, i32** %3, align 8 - %49 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %50 = load i32*, i32** %3, align 8 - ret void -} - -; 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) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::_Deque_base"*, align 8 - %7 = alloca i32*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %6, align 8 - store i32* %1, i32** %7, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %6, align 8 - %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 %"class.std::allocator.0"* - %11 = load i32*, i32** %7, align 8 - %12 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - store %"class.std::allocator.0"* %10, %"class.std::allocator.0"** %3, align 8 - store i32* %11, i32** %4, align 8 - store i64 %12, i64* %5, align 8 - %13 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %14 = bitcast %"class.std::allocator.0"* %13 to %"class.std::__new_allocator.1"* - %15 = load i32*, i32** %4, align 8 - %16 = load i64, i64* %5, align 8 - call void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %14, i32* noundef %15, i64 noundef %16) - br label %17 - -17: ; preds = %2 - ret void - -18: ; No predecessors! - %19 = landingpad { i8*, i32 } - catch i8* null - %20 = extractvalue { i8*, i32 } %19, 0 - call void @__clang_call_terminate(i8* %20) #17 - unreachable -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* noundef %9) #16 - ret void -} - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #13 - -; Function Attrs: noinline uwtable -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"* 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"* 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"* noundef nonnull align 8 dereferenceable(80) %6) #15 - 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 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #15 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %5 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"class.std::allocator.0"* - store %"class.std::allocator.0"* %6, %"class.std::allocator.0"** %3, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %8, %"class.std::__new_allocator.1"** %2, align 8 - %9 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 dereferenceable(80) %10) #15 - ret void -} - -; 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 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32**, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call 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 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call 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"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call 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 - store i32** %28, i32*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load i32**, i32*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds i32*, i32** %35, i64 %42 - store i32** %43, i32*** %8, align 8 - %44 = load i32**, i32*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds i32*, i32** %44, i64 %45 - store i32** %46, i32*** %9, align 8 - %47 = load i32**, i32*** %8, align 8 - %48 = load i32**, i32*** %9, align 8 - invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %47, i32** noundef %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #15 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load i32**, i32*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %60, i64 noundef %64) #15 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store i32** null, i32*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #18 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load i32**, i32*** %8, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, i32** noundef %80) #15 - %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"* noundef nonnull align 8 dereferenceable(32) %83, i32** noundef %85) #15 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load i32*, i32** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store i32* %90, i32** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load i32*, i32** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call 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 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store i32* %103, i32** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #17 - unreachable - -116: ; preds = %54 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - %3 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %4 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - store %"class.std::allocator.0"* %5, %"class.std::allocator.0"** %2, align 8 - %6 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %7 = bitcast %"class.std::allocator.0"* %6 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %7) #15 - 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"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl_data"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl_data"* %0, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl_data"*, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store i32** null, i32*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %6) #15 - %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"* noundef nonnull align 8 dereferenceable(32) %7) #15 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store i32** null, i32*** %7, align 8 - ret void -} - -; Function Attrs: 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 - %7 = alloca i32**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load i32**, i32*** %5, align 8 - store i32** %11, i32*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load i32**, i32*** %7, align 8 - %14 = load i32**, i32*** %6, align 8 - %15 = icmp ult i32** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke 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 - %19 = load i32**, i32*** %7, align 8 - store i32* %17, i32** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load i32**, i32*** %7, align 8 - %22 = getelementptr inbounds i32*, i32** %21, i32 1 - store i32** %22, i32*** %7, align 8 - br label %12, !llvm.loop !11 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #15 - %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"* noundef nonnull align 8 dereferenceable(80) %10, i32** noundef %30, i32** noundef %31) #15 - invoke void @__cxa_rethrow() #18 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #17 - unreachable - -47: ; preds = %27 - unreachable -} - -declare void @__cxa_rethrow() - -declare void @__cxa_end_catch() - -; 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) #5 comdat align 2 { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load i32**, i32*** %5, align 8 - store i32** %9, i32*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32**, i32*** %7, align 8 - %12 = load i32**, i32*** %6, align 8 - %13 = icmp ult i32** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32**, i32*** %7, align 8 - %16 = load i32*, i32** %15, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %16) #15 - 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 !12 - -20: ; preds = %10 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %2, align 8 - %3 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - 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 = { nofree nosync nounwind readnone speculatable willreturn } -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 = { 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 #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 = { argmemonly nofree nounwind willreturn } -attributes #7 = { "frame-pointer"="all" "no-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 = { 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 = { noinline noreturn nounwind } -attributes #13 = { argmemonly nofree nounwind willreturn writeonly } -attributes #14 = { builtin allocsize(0) } -attributes #15 = { nounwind } -attributes #16 = { builtin nounwind } -attributes #17 = { noreturn nounwind } -attributes #18 = { noreturn } - -!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"} -!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-llvm14/topological-sorting.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/topological-sorting.ll deleted file mode 100644 index 5d68268bd..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/topological-sorting.ll +++ /dev/null @@ -1,3229 +0,0 @@ -; ModuleID = 'PE-benchmarks/topological-sorting.cpp' -source_filename = "PE-benchmarks/topological-sorting.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"class.std::stack" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { i32**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%"struct.std::_Deque_iterator" = type { i32*, i32*, i32*, i32** } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.std::allocator.3" = type { i8 } -%"class.std::__new_allocator.4" = type { i8 } -%"class.std::__new_allocator.1" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any - -$_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt5dequeIiSaIiEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any - -$_ZNSt5dequeIiSaIiEE5beginEv = comdat any - -$_ZNSt5dequeIiSaIiEE3endEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any - -$_ZNSt15__new_allocatorIPiED2Ev = comdat any - -$_ZNSt15__new_allocatorIiED2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any - -$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any - -$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any - -$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any - -$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIPPiET_S2_ = comdat any - -$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIPPiET_S2_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt5dequeIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any - -$_ZNKSt5dequeIiSaIiEE5emptyEv = comdat any - -$_ZSteqRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt5dequeIiSaIiEE4backEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEmmEv = comdat any - -$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any - -$_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any - -@_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 - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -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 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias 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 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %26) #15 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - ret void -} - -; 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 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef nonnull align 4 dereferenceable(4) %6) - ret void -} - -; 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"* noundef nonnull align 8 dereferenceable(24) %6) #15 - %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"* 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: 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) #4 align 2 { - %5 = alloca %class.Graph*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca %"class.std::stack"*, align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %5, align 8 - store i32 %1, i32* %6, align 4 - store i8* %2, i8** %7, align 8 - store %"class.std::stack"* %3, %"class.std::stack"** %8, align 8 - %12 = load %class.Graph*, %class.Graph** %5, align 8 - %13 = load i8*, i8** %7, align 8 - %14 = load i32, i32* %6, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds i8, i8* %13, i64 %15 - store i8 1, i8* %16, align 1 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %21) #15 - %23 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %10, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %22, %"struct.std::__detail::_List_node_base"** %23, align 8 - %24 = bitcast %"struct.std::_List_iterator"* %9 to i8* - %25 = bitcast %"struct.std::_List_iterator"* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %24, i8* align 8 %25, i64 8, i1 false) - br label %26 - -26: ; preds = %49, %4 - %27 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 1 - %28 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %27, align 8 - %29 = load i32, i32* %6, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %28, i64 %30 - %32 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %31) #15 - %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 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) #15 - br i1 %34, label %35, label %51 - -35: ; preds = %26 - %36 = load i8*, i8** %7, align 8 - %37 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #15 - %38 = load i32, i32* %37, align 4 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds i8, i8* %36, i64 %39 - %41 = load i8, i8* %40, align 1 - %42 = trunc i8 %41 to i1 - br i1 %42, label %48, label %43 - -43: ; preds = %35 - %44 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #15 - %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* 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 noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #15 - 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"* 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"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #15 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -; 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) #5 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #15 - %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: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %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 noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) - ret i32* %7 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: 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) #4 comdat align 2 { - %3 = alloca %"class.std::stack"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::stack"*, %"class.std::stack"** %3, align 8 - %6 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %5, i32 0, i32 0 - %7 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %6, i32* noundef nonnull align 4 dereferenceable(4) %7) - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph15topologicalSortEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %class.Graph*, align 8 - %3 = alloca %"class.std::stack", align 8 - %4 = alloca i8*, align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %2, align 8 - %9 = load %class.Graph*, %class.Graph** %2, align 8 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* 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 noundef nonnull i8* @_Znam(i64 noundef %12) #14 - to label %14 unwind label %28 - -14: ; preds = %1 - store i8* %13, i8** %4, align 8 - store i32 0, i32* %7, align 4 - br label %15 - -15: ; preds = %25, %14 - %16 = load i32, i32* %7, align 4 - %17 = getelementptr inbounds %class.Graph, %class.Graph* %9, i32 0, i32 0 - %18 = load i32, i32* %17, align 8 - %19 = icmp slt i32 %16, %18 - br i1 %19, label %20, label %32 - -20: ; preds = %15 - %21 = load i8*, i8** %4, align 8 - %22 = load i32, i32* %7, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds i8, i8* %21, i64 %23 - store i8 0, i8* %24, align 1 - br label %25 - -25: ; preds = %20 - %26 = load i32, i32* %7, align 4 - %27 = add nsw i32 %26, 1 - store i32 %27, i32* %7, align 4 - br label %15, !llvm.loop !8 - -28: ; preds = %68, %66, %63, %61, %56, %47, %1 - %29 = landingpad { i8*, i32 } - cleanup - %30 = extractvalue { i8*, i32 } %29, 0 - store i8* %30, i8** %5, align 8 - %31 = extractvalue { i8*, i32 } %29, 1 - store i32 %31, i32* %6, align 4 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) #15 - br label %71 - -32: ; preds = %15 - store i32 0, i32* %8, align 4 - br label %33 - -33: ; preds = %52, %32 - %34 = load i32, i32* %8, align 4 - %35 = getelementptr inbounds %class.Graph, %class.Graph* %9, i32 0, i32 0 - %36 = load i32, i32* %35, align 8 - %37 = icmp slt i32 %34, %36 - br i1 %37, label %38, label %55 - -38: ; preds = %33 - %39 = load i8*, i8** %4, align 8 - %40 = load i32, i32* %8, align 4 - %41 = sext i32 %40 to i64 - %42 = getelementptr inbounds i8, i8* %39, i64 %41 - %43 = load i8, i8* %42, align 1 - %44 = trunc i8 %43 to i1 - %45 = zext i1 %44 to i32 - %46 = icmp eq i32 %45, 0 - br i1 %46, label %47, label %51 - -47: ; preds = %38 - %48 = load i32, i32* %8, align 4 - %49 = load i8*, i8** %4, align 8 - invoke void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* 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 - br label %51 - -51: ; preds = %50, %38 - br label %52 - -52: ; preds = %51 - %53 = load i32, i32* %8, align 4 - %54 = add nsw i32 %53, 1 - store i32 %54, i32* %8, align 4 - br label %33, !llvm.loop !9 - -55: ; preds = %33 - br label %56 - -56: ; preds = %69, %55 - %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 - %59 = zext i1 %57 to i32 - %60 = icmp eq i32 %59, 0 - br i1 %60, label %61, label %70 - -61: ; preds = %58 - %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 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 noundef 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"* noundef nonnull align 8 dereferenceable(80) %3) - to label %69 unwind label %28 - -69: ; preds = %68 - br label %56, !llvm.loop !10 - -70: ; preds = %58 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) #15 - ret void - -71: ; preds = %28 - %72 = load i8*, i8** %5, align 8 - %73 = load i32, i32* %6, align 4 - %74 = insertvalue { i8*, i32 } undef, i8* %72, 0 - %75 = insertvalue { i8*, i32 } %74, i32 %73, 1 - resume { i8*, i32 } %75 -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* 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"* noundef nonnull align 8 dereferenceable(80) %4) - ret void -} - -declare i32 @__gxx_personality_v0(...) - -; 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) #5 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 noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #15 - ret i1 %5 -} - -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) #7 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #7 - -; 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) #5 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 noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #15 - ret i32* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %0) #5 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"* noundef nonnull align 8 dereferenceable(80) %4) #15 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(80) %4) #15 - ret void -} - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #15 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #15 - ret void -} - -; 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) #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"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - %4 = alloca %"struct.std::_Deque_iterator", align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) #15 - 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) #15 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %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) #15 - 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"* noundef nonnull align 8 dereferenceable(80) %11) #15 - ret void - -12: ; preds = %1 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %5, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %6, align 4 - %16 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %16) #15 - br label %17 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - call void @__clang_call_terminate(i8* %18) #16 - unreachable -} - -; 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) #5 comdat align 2 { - %5 = alloca %"class.std::deque"*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %5, align 8 - store %"class.std::allocator.0"* %3, %"class.std::allocator.0"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %5, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %10) #15 - ret void -} - -; 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) #5 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %10) #15 - ret void -} - -; 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) #5 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %6, align 8 - %8 = icmp ne i32** %7, null - br i1 %8, label %9, label %29 - -9: ; preds = %1 - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 2 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 3 - %14 = load i32**, i32*** %13, align 8 - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = getelementptr inbounds i32*, i32** %19, i64 1 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %14, i32** noundef %20) #15 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 0 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 1 - %28 = load i64, i64* %27, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %24, i64 noundef %28) #15 - 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"* noundef nonnull align 8 dereferenceable(80) %30) #15 - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #9 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #15 - call void @_ZSt9terminatev() #16 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load i32*, i32** %12, align 8 - store i32* %13, i32** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - store i32* %17, i32** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load i32**, i32*** %20, align 8 - store i32** %21, i32*** %18, align 8 - ret void -} - -; Function Attrs: 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) #5 comdat align 2 { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load i32**, i32*** %5, align 8 - store i32** %9, i32*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32**, i32*** %7, align 8 - %12 = load i32**, i32*** %6, align 8 - %13 = icmp ult i32** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32**, i32*** %7, align 8 - %16 = load i32*, i32** %15, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %16) #15 - br label %17 - -17: ; preds = %14 - %18 = load i32**, i32*** %7, align 8 - %19 = getelementptr inbounds i32*, i32** %18, i32 1 - store i32** %19, i32*** %7, align 8 - br label %10, !llvm.loop !11 - -20: ; preds = %10 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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) #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca %"class.std::allocator.3"*, align 8 - %6 = alloca %"class.std::allocator.3"*, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::_Deque_base"*, align 8 - %10 = alloca i32**, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"class.std::allocator.3", align 1 - %13 = alloca i8*, align 8 - %14 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %9, align 8 - store i32** %1, i32*** %10, align 8 - store i64 %2, i64* %11, align 8 - %15 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %9, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %12, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %15) #15 - %16 = load i32**, i32*** %10, align 8 - %17 = load i64, i64* %11, align 8 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %6, align 8 - store i32** %16, i32*** %7, align 8 - store i64 %17, i64* %8, align 8 - %18 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %6, align 8 - %19 = bitcast %"class.std::allocator.3"* %18 to %"class.std::__new_allocator.4"* - %20 = load i32**, i32*** %7, align 8 - %21 = load i64, i64* %8, align 8 - call void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %19, i32** noundef %20, i64 noundef %21) - br label %22 - -22: ; preds = %3 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %5, align 8 - %23 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %5, align 8 - %24 = bitcast %"class.std::allocator.3"* %23 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %24) #15 - ret void - -25: ; No predecessors! - %26 = landingpad { i8*, i32 } - catch i8* null - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %13, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %14, align 4 - store %"class.std::allocator.3"* %12, %"class.std::allocator.3"** %4, align 8 - %29 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %30 = bitcast %"class.std::allocator.3"* %29 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %30) #15 - br label %31 - -31: ; preds = %25 - %32 = load i8*, i8** %13, align 8 - call void @__clang_call_terminate(i8* %32) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - %3 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %4 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %3, align 8 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - store %"class.std::allocator.0"* %5, %"class.std::allocator.0"** %2, align 8 - %6 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %7 = bitcast %"class.std::allocator.0"* %6 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %7) #15 - ret void -} - -; 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) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::_Deque_base"*, align 8 - %7 = alloca i32*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %6, align 8 - store i32* %1, i32** %7, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %6, align 8 - %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 %"class.std::allocator.0"* - %11 = load i32*, i32** %7, align 8 - %12 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - to label %13 unwind label %19 - -13: ; preds = %2 - store %"class.std::allocator.0"* %10, %"class.std::allocator.0"** %3, align 8 - store i32* %11, i32** %4, align 8 - store i64 %12, i64* %5, align 8 - %14 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %15 = bitcast %"class.std::allocator.0"* %14 to %"class.std::__new_allocator.1"* - %16 = load i32*, i32** %4, align 8 - %17 = load i64, i64* %5, align 8 - call void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %15, i32* noundef %16, i64 noundef %17) - br label %18 - -18: ; preds = %13 - ret void - -19: ; preds = %2 - %20 = landingpad { i8*, i32 } - catch i8* null - %21 = extractvalue { i8*, i32 } %20, 0 - call void @__clang_call_terminate(i8* %21) #16 - unreachable -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #5 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* noundef %9) #17 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #10 - -; Function Attrs: 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) #3 comdat align 2 { - %3 = alloca %"class.std::__new_allocator.4"*, align 8 - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = bitcast %"class.std::allocator.3"* %0 to i8* - store i8* %8, i8** %6, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %7, align 8 - %9 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - %10 = 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) %9) #15 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %4, align 8 - store %"class.std::allocator.0"* %10, %"class.std::allocator.0"** %5, align 8 - %11 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %12 = bitcast %"class.std::allocator.3"* %11 to %"class.std::__new_allocator.4"* - store %"class.std::__new_allocator.4"* %12, %"class.std::__new_allocator.4"** %3, align 8 - %13 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %3, align 8 - ret void -} - -; 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) #5 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.4"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = bitcast i32** %8 to i8* - call void @_ZdlPv(i8* noundef %9) #17 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.4"*, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %2, align 8 - %3 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %2, align 8 - %3 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - ret void -} - -; 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 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #15 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %16 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %18 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17) - store %"struct.std::_List_node"* %18, %"struct.std::_List_node"** %11, align 8 - %19 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %20 = 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) %19) #15 - store %"class.std::allocator"* %20, %"class.std::allocator"** %12, align 8 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %21, %"struct.std::_List_node"* noundef %22) #15 - %23 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %25 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %24) - to label %26 unwind label %42 - -26: ; preds = %2 - %27 = load i32*, i32** %10, align 8 - %28 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %27) #15 - store %"class.std::allocator"* %23, %"class.std::allocator"** %6, align 8 - store i32* %25, i32** %7, align 8 - store i32* %28, i32** %8, align 8 - %29 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %30 = bitcast %"class.std::allocator"* %29 to %"class.std::__new_allocator"* - %31 = load i32*, i32** %7, align 8 - %32 = load i32*, i32** %8, align 8 - %33 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %32) #15 - store %"class.std::__new_allocator"* %30, %"class.std::__new_allocator"** %3, align 8 - store i32* %31, i32** %4, align 8 - store i32* %33, i32** %5, align 8 - %34 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %35 = load i32*, i32** %4, align 8 - %36 = bitcast i32* %35 to i8* - %37 = load i32*, i32** %5, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %37) #15 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %35, align 4 - %40 = 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) %13, i8* null) #15 - %41 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #15 - ret %"struct.std::_List_node"* %41 - -42: ; preds = %2 - %43 = landingpad { i8*, i32 } - cleanup - %44 = extractvalue { i8*, i32 } %43, 0 - store i8* %44, i8** %14, align 8 - %45 = extractvalue { i8*, i32 } %43, 1 - store i32 %45, i32* %15, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #15 - br label %46 - -46: ; preds = %42 - %47 = load i8*, i8** %14, align 8 - %48 = load i32, i32* %15, align 4 - %49 = insertvalue { i8*, i32 } undef, i8* %47, 0 - %50 = insertvalue { i8*, i32 } %49, i32 %48, 1 - resume { i8*, i32 } %50 -} - -; 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) #5 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare 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) #11 - -; 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) #5 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; 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) #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 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* 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 #3 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #15 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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) #5 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #15 - ret i32* %5 -} - -; 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) #5 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #16 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #18 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #14 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -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 noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; 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) #5 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: 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) #5 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #15 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %2) #5 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #17 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: 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::__new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store i32* %1, i32** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %19 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %19 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 2 - %23 = load i32*, i32** %22, align 8 - %24 = getelementptr inbounds i32, i32* %23, i64 -1 - %25 = icmp ne i32* %17, %24 - br i1 %25, label %26, label %55 - -26: ; preds = %2 - %27 = bitcast %"class.std::deque"* %11 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 %"class.std::allocator.0"* - %30 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %31 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %30, i32 0, i32 0 - %32 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %31 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %32, i32 0, i32 3 - %34 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %33, i32 0, i32 0 - %35 = load i32*, i32** %34, align 8 - %36 = load i32*, i32** %10, align 8 - store %"class.std::allocator.0"* %29, %"class.std::allocator.0"** %6, align 8 - store i32* %35, i32** %7, align 8 - store i32* %36, i32** %8, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %7, align 8 - %40 = load i32*, i32** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #15 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %3, align 8 - store i32* %39, i32** %4, align 8 - store i32* %41, i32** %5, align 8 - %42 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - %43 = load i32*, i32** %4, align 8 - %44 = bitcast i32* %43 to i8* - %45 = load i32*, i32** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %45) #15 - %47 = load i32, i32* %46, align 4 - store i32 %47, i32* %43, align 4 - %48 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %51, i32 0, i32 0 - %53 = load i32*, i32** %52, align 8 - %54 = getelementptr inbounds i32, i32* %53, i32 1 - store i32* %54, i32** %52, align 8 - br label %57 - -55: ; preds = %2 - %56 = load i32*, i32** %10, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, i32* noundef nonnull align 4 dereferenceable(4) %56) - br label %57 - -57: ; preds = %55, %26 - ret void -} - -; 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::__new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::deque"*, align 8 - %10 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %9, align 8 - store i32* %1, i32** %10, align 8 - %11 = load %"class.std::deque"*, %"class.std::deque"** %9, align 8 - %12 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #15 - %13 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11) #15 - %14 = icmp eq i64 %12, %13 - br i1 %14, label %15, label %16 - -15: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* noundef getelementptr inbounds ([48 x i8], [48 x i8]* @.str.2, i64 0, i64 0)) #18 - unreachable - -16: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) - %17 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %18 = call noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %17) - %19 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 3 - %23 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %22, i32 0, i32 3 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds i32*, i32** %24, i64 1 - store i32* %18, i32** %25, align 8 - %26 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %27 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %26, i32 0, i32 0 - %28 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %27 to %"class.std::allocator.0"* - %29 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %29, i32 0, i32 0 - %31 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %30 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %32 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %31, i32 0, i32 3 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load i32*, i32** %33, align 8 - %35 = load i32*, i32** %10, align 8 - %36 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %35) #15 - store %"class.std::allocator.0"* %28, %"class.std::allocator.0"** %6, align 8 - store i32* %34, i32** %7, align 8 - store i32* %36, i32** %8, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %7, align 8 - %40 = load i32*, i32** %8, align 8 - %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #15 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %3, align 8 - store i32* %39, i32** %4, align 8 - store i32* %41, i32** %5, align 8 - %42 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - %43 = load i32*, i32** %4, align 8 - %44 = bitcast i32* %43 to i8* - %45 = load i32*, i32** %5, align 8 - %46 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %45) #15 - %47 = load i32, i32* %46, align 4 - store i32 %47, i32* %43, align 4 - %48 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %53 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %52, i32 0, i32 0 - %54 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %53 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %55 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %54, i32 0, i32 3 - %56 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %55, i32 0, i32 3 - %57 = load i32**, i32*** %56, align 8 - %58 = getelementptr inbounds i32*, i32** %57, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %51, i32** noundef %58) #15 - %59 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %60 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %59, i32 0, i32 0 - %61 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %60 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %62 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %61, i32 0, i32 3 - %63 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %62, i32 0, i32 1 - %64 = load i32*, i32** %63, align 8 - %65 = bitcast %"class.std::deque"* %11 to %"class.std::_Deque_base"* - %66 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %65, i32 0, i32 0 - %67 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %66 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %68 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %67, i32 0, i32 3 - %69 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %68, i32 0, i32 0 - store i32* %64, i32** %69, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call 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) #15 - ret i64 %12 -} - -; 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) #5 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 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) #15 - %6 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #15 - ret i64 %6 -} - -; Function Attrs: noreturn -declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #12 - -; 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 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load i32**, i32*** %22, align 8 - %24 = ptrtoint i32** %18 to i64 - %25 = ptrtoint i32** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* 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: 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::allocator.0"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator.0"* - %8 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - store %"class.std::allocator.0"* %7, %"class.std::allocator.0"** %2, align 8 - store i64 %8, i64* %3, align 8 - %9 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %10 = bitcast %"class.std::allocator.0"* %9 to %"class.std::__new_allocator.1"* - %11 = load i64, i64* %3, align 8 - %12 = call noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %10, i64 noundef %11, i8* noundef null) - ret i32* %12 -} - -; 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) #5 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load i32**, i32*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store i32** %6, i32*** %7, align 8 - %8 = load i32**, i32*** %4, align 8 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store i32* %9, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load i32*, i32** %11, align 8 - %13 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #15 - %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: 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) #5 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 noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #15 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load i32**, i32*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = ptrtoint i32** %8 to i64 - %13 = ptrtoint i32** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = 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 i64 - %21 = sub nsw i64 %15, %20 - %22 = mul nsw i64 %5, %21 - %23 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 0 - %25 = load i32*, i32** %24, align 8 - %26 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 1 - %28 = load i32*, i32** %27, align 8 - %29 = ptrtoint i32* %25 to i64 - %30 = ptrtoint i32* %28 to i64 - %31 = sub i64 %29, %30 - %32 = sdiv exact i64 %31, 4 - %33 = add nsw i64 %22, %32 - %34 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 2 - %36 = load i32*, i32** %35, align 8 - %37 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %38 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %37, i32 0, i32 0 - %39 = load i32*, i32** %38, align 8 - %40 = ptrtoint i32* %36 to i64 - %41 = ptrtoint i32* %39 to i64 - %42 = sub i64 %40, %41 - %43 = sdiv exact i64 %42, 4 - %44 = add nsw i64 %33, %43 - ret i64 %44 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #5 comdat align 2 { - %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - ret i64 %1 -} - -; 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) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca %"class.std::__new_allocator.1"*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca %"class.std::allocator.0"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %5, align 8 - store i64 9223372036854775807, i64* %6, align 8 - %8 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %5, align 8 - store %"class.std::allocator.0"* %8, %"class.std::allocator.0"** %4, align 8 - %9 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %10 = bitcast %"class.std::allocator.0"* %9 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %10, %"class.std::__new_allocator.1"** %3, align 8 - %11 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - store %"class.std::__new_allocator.1"* %11, %"class.std::__new_allocator.1"** %2, align 8 - %12 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - store i64 2305843009213693951, i64* %7, align 8 - %13 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef nonnull align 8 dereferenceable(8) %7) - to label %14 unwind label %16 - -14: ; preds = %1 - %15 = load i64, i64* %13, align 8 - ret i64 %15 - -16: ; preds = %1 - %17 = landingpad { i8*, i32 } - catch i8* null - %18 = extractvalue { i8*, i32 } %17, 0 - call void @__clang_call_terminate(i8* %18) #16 - unreachable -} - -; 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) #5 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: 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 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i64, align 8 - %11 = alloca i32**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load i32**, i32*** %24, align 8 - %26 = ptrtoint i32** %19 to i64 - %27 = ptrtoint i32** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load i32**, i32*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds i32*, i32** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds i32*, i32** %56, i64 %63 - store i32** %64, i32*** %9, align 8 - %65 = load i32**, i32*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load i32**, i32*** %70, align 8 - %72 = icmp ult i32** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load i32**, i32*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load i32**, i32*** %84, align 8 - %86 = getelementptr inbounds i32*, i32** %85, i64 1 - %87 = load i32**, i32*** %9, align 8 - %88 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %79, i32** noundef %86, i32** noundef %87) - br label %107 - -89: ; preds = %62 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load i32**, i32*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load i32**, i32*** %100, align 8 - %102 = getelementptr inbounds i32*, i32** %101, i64 1 - %103 = load i32**, i32*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds i32*, i32** %103, i64 %104 - %106 = call noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %95, i32** noundef %102, i32** noundef %105) - br label %107 - -107: ; preds = %89, %73 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call 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 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 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds i32*, i32** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds i32*, i32** %130, i64 %137 - store i32** %138, i32*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load i32**, i32*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load i32**, i32*** %149, align 8 - %151 = getelementptr inbounds i32*, i32** %150, i64 1 - %152 = load i32**, i32*** %9, align 8 - %153 = call 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 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load i32**, i32*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, i32** noundef %159, i64 noundef %164) #15 - %165 = load i32**, i32*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store i32** %165, i32*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load i32**, i32*** %9, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, i32** noundef %180) #15 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load i32**, i32*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds i32*, i32** %185, i64 %186 - %188 = getelementptr inbounds i32*, i32** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, i32** noundef %188) #15 - ret void -} - -; 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %9) - %11 = load i32**, i32*** %6, align 8 - %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: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %9) - %11 = load i32**, i32*** %6, align 8 - %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: 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) #5 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable -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) #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"class.std::allocator.3"*, align 8 - %6 = alloca %"class.std::allocator.3"*, align 8 - %7 = alloca %"class.std::_Deque_base"*, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"class.std::allocator.3", align 1 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %7, align 8 - store i64 %1, i64* %8, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %7, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %9, %"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12) #15 - %13 = load i64, i64* %8, align 8 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %3, align 8 - store i64 %13, i64* %4, align 8 - %14 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %15 = bitcast %"class.std::allocator.3"* %14 to %"class.std::__new_allocator.4"* - %16 = load i64, i64* %4, align 8 - %17 = invoke noundef i32** @_ZNSt15__new_allocatorIPiE8allocateEmPKv(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %15, i64 noundef %16, i8* noundef null) - to label %18 unwind label %22 - -18: ; preds = %2 - br label %19 - -19: ; preds = %18 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %6, align 8 - %20 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %6, align 8 - %21 = bitcast %"class.std::allocator.3"* %20 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %21) #15 - ret i32** %17 - -22: ; preds = %2 - %23 = landingpad { i8*, i32 } - cleanup - %24 = extractvalue { i8*, i32 } %23, 0 - store i8* %24, i8** %10, align 8 - %25 = extractvalue { i8*, i32 } %23, 1 - store i32 %25, i32* %11, align 4 - store %"class.std::allocator.3"* %9, %"class.std::allocator.3"** %5, align 8 - %26 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %5, align 8 - %27 = bitcast %"class.std::allocator.3"* %26 to %"class.std::__new_allocator.4"* - call void @_ZNSt15__new_allocatorIPiED2Ev(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %27) #15 - br label %28 - -28: ; preds = %22 - %29 = load i8*, i8** %10, align 8 - %30 = load i32, i32* %11, align 4 - %31 = insertvalue { i8*, i32 } undef, i8* %29, 0 - %32 = insertvalue { i8*, i32 } %31, i32 %30, 1 - resume { i8*, i32 } %32 -} - -; 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #15 - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %9) #15 - %11 = load i32**, i32*** %6, align 8 - %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #15 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %0) #5 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: 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) #5 comdat { - %3 = alloca i32***, align 8 - %4 = alloca i32**, align 8 - store i32*** %0, i32**** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - ret i32** %5 -} - -; Function Attrs: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %0) #5 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: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(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 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = bitcast i32** %17 to i8* - %19 = load i32**, i32*** %4, align 8 - %20 = bitcast i32** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %30 - -23: ; preds = %3 - %24 = load i64, i64* %7, align 8 - %25 = icmp eq i64 %24, 1 - br i1 %25, label %26, label %29 - -26: ; preds = %23 - %27 = load i32**, i32*** %6, align 8 - %28 = load i32**, i32*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %27, i32** noundef %28) - br label %29 - -29: ; preds = %26, %23 - br label %30 - -30: ; preds = %29, %16 - %31 = load i32**, i32*** %6, align 8 - %32 = load i64, i64* %7, align 8 - %33 = getelementptr inbounds i32*, i32** %31, i64 %32 - ret i32** %33 -} - -; Function Attrs: argmemonly nofree nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #6 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %0, i32** noundef %1) #5 comdat align 2 { - %3 = alloca i32**, align 8 - %4 = alloca i32**, align 8 - store i32** %0, i32*** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32**, i32*** %3, align 8 - store i32* %6, i32** %7, align 8 - ret void -} - -; 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #15 - %9 = load i32**, i32*** %5, align 8 - %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %9) #15 - %11 = load i32**, i32*** %6, align 8 - %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #15 - %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: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call 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: 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 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %9) - ret i32** %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #5 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32*, i32** %17, i64 %19 - %21 = bitcast i32** %20 to i8* - %22 = load i32**, i32*** %4, align 8 - %23 = bitcast i32** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %34 - -26: ; preds = %3 - %27 = load i64, i64* %7, align 8 - %28 = icmp eq i64 %27, 1 - br i1 %28, label %29, label %33 - -29: ; preds = %26 - %30 = load i32**, i32*** %6, align 8 - %31 = getelementptr inbounds i32*, i32** %30, i64 -1 - %32 = load i32**, i32*** %4, align 8 - call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(i32** noundef %31, i32** noundef %32) - br label %33 - -33: ; preds = %29, %26 - br label %34 - -34: ; preds = %33, %16 - %35 = load i32**, i32*** %6, align 8 - %36 = load i64, i64* %7, align 8 - %37 = sub i64 0, %36 - %38 = getelementptr inbounds i32*, i32** %35, i64 %37 - ret i32** %38 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32** @_ZNSt15__new_allocatorIPiE8allocateEmPKv(%"class.std::__new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.4"*, align 8 - %5 = alloca %"class.std::__new_allocator.4"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator.4"* %0, %"class.std::__new_allocator.4"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator.4"* %8, %"class.std::__new_allocator.4"** %4, align 8 - %10 = load %"class.std::__new_allocator.4"*, %"class.std::__new_allocator.4"** %4, align 8 - %11 = icmp ugt i64 %9, 1152921504606846975 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 2305843009213693951 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #18 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 8 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #14 - %21 = bitcast i8* %20 to i32** - ret i32** %21 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i32* @_ZNSt15__new_allocatorIiE8allocateEmPKv(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca %"class.std::__new_allocator.1"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator.1"* %8, %"class.std::__new_allocator.1"** %4, align 8 - %10 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - %11 = icmp ugt i64 %9, 2305843009213693951 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 4611686018427387903 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #18 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 4 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #14 - %21 = bitcast i8* %20 to i32* - ret i32* %21 -} - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #13 - -; Function Attrs: noinline uwtable -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"* 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"* 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"* noundef nonnull align 8 dereferenceable(80) %6) #15 - 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 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #15 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %5 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %4, align 8 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"class.std::allocator.0"* - store %"class.std::allocator.0"* %6, %"class.std::allocator.0"** %3, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %8, %"class.std::__new_allocator.1"** %2, align 8 - %9 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 dereferenceable(80) %10) #15 - ret void -} - -; 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 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32**, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call 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 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call 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"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call 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 - store i32** %28, i32*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load i32**, i32*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds i32*, i32** %35, i64 %42 - store i32** %43, i32*** %8, align 8 - %44 = load i32**, i32*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds i32*, i32** %44, i64 %45 - store i32** %46, i32*** %9, align 8 - %47 = load i32**, i32*** %8, align 8 - %48 = load i32**, i32*** %9, align 8 - invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %47, i32** noundef %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #15 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load i32**, i32*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %60, i64 noundef %64) #15 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store i32** null, i32*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #18 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load i32**, i32*** %8, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, i32** noundef %80) #15 - %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"* noundef nonnull align 8 dereferenceable(32) %83, i32** noundef %85) #15 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load i32*, i32** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store i32* %90, i32** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load i32*, i32** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call 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 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store i32* %103, i32** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #16 - unreachable - -116: ; preds = %54 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl_data"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl_data"* %0, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl_data"*, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store i32** null, i32*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %6) #15 - %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"* noundef nonnull align 8 dereferenceable(32) %7) #15 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store i32** null, i32*** %7, align 8 - ret void -} - -; Function Attrs: 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 - %7 = alloca i32**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load i32**, i32*** %5, align 8 - store i32** %11, i32*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load i32**, i32*** %7, align 8 - %14 = load i32**, i32*** %6, align 8 - %15 = icmp ult i32** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke 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 - %19 = load i32**, i32*** %7, align 8 - store i32* %17, i32** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load i32**, i32*** %7, align 8 - %22 = getelementptr inbounds i32*, i32** %21, i32 1 - store i32** %22, i32*** %7, align 8 - br label %12, !llvm.loop !12 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #15 - %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"* noundef nonnull align 8 dereferenceable(80) %10, i32** noundef %30, i32** noundef %31) #15 - invoke void @__cxa_rethrow() #18 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #16 - unreachable - -47: ; preds = %27 - unreachable -} - -declare void @__cxa_rethrow() - -declare void @__cxa_end_catch() - -; 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) #5 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call 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) #15 - ret i1 %12 -} - -; 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) #5 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load i32*, i32** %6, align 8 - %8 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - %11 = icmp eq i32* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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) #5 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"* noundef nonnull align 8 dereferenceable(80) %4) #15 - %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) #15 - %6 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3) #15 - ret i32* %6 -} - -; 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - %7 = load i32*, i32** %6, align 8 - %8 = icmp eq i32* %5, %7 - br i1 %8, label %9, label %16 - -9: ; preds = %1 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = getelementptr inbounds i32*, i32** %11, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3, i32** noundef %12) #15 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - %14 = load i32*, i32** %13, align 8 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* %14, i32** %15, align 8 - br label %16 - -16: ; preds = %9, %1 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %18 = load i32*, i32** %17, align 8 - %19 = getelementptr inbounds i32, i32* %18, i32 -1 - store i32* %19, i32** %17, align 8 - ret %"struct.std::_Deque_iterator"* %3 -} - -; Function Attrs: 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) #5 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 0 - %13 = load i32*, i32** %12, align 8 - %14 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 1 - %19 = load i32*, i32** %18, align 8 - %20 = icmp ne i32* %13, %19 - br i1 %20, label %21, label %42 - -21: ; preds = %1 - %22 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %23 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %23 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %24, i32 0, i32 3 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %25, i32 0, i32 0 - %27 = load i32*, i32** %26, align 8 - %28 = getelementptr inbounds i32, i32* %27, i32 -1 - store i32* %28, i32** %26, align 8 - %29 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %30 = 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) %29) #15 - %31 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 0 - %36 = load i32*, i32** %35, align 8 - store %"class.std::allocator.0"* %30, %"class.std::allocator.0"** %4, align 8 - store i32* %36, i32** %5, align 8 - %37 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %38 = bitcast %"class.std::allocator.0"* %37 to %"class.std::__new_allocator.1"* - %39 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator.1"* %38, %"class.std::__new_allocator.1"** %2, align 8 - store i32* %39, i32** %3, align 8 - %40 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %41 = load i32*, i32** %3, align 8 - br label %44 - -42: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) - to label %43 unwind label %45 - -43: ; preds = %42 - br label %44 - -44: ; preds = %43, %21 - ret void - -45: ; preds = %42 - %46 = landingpad { i8*, i32 } - catch i8* null - %47 = extractvalue { i8*, i32 } %46, 0 - call void @__clang_call_terminate(i8* %47) #16 - unreachable -} - -; 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) #5 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %6, align 8 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %9, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 3 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 1 - %14 = load i32*, i32** %13, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %14) #15 - %15 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %16 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %15, i32 0, i32 0 - %17 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %16 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %18 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %17, i32 0, i32 3 - %19 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 3 - %23 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %22, i32 0, i32 3 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds i32*, i32** %24, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %18, i32** noundef %25) #15 - %26 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %27 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %26, i32 0, i32 0 - %28 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %27 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %28, i32 0, i32 3 - %30 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %29, i32 0, i32 2 - %31 = load i32*, i32** %30, align 8 - %32 = getelementptr inbounds i32, i32* %31, i64 -1 - %33 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %34 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %33, i32 0, i32 0 - %35 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %34 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %36 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %35, i32 0, i32 3 - %37 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %36, i32 0, i32 0 - store i32* %32, i32** %37, align 8 - %38 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %39 = 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) %38) #15 - %40 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %41 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %40, i32 0, i32 0 - %42 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %41 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %43 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %42, i32 0, i32 3 - %44 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %43, i32 0, i32 0 - %45 = load i32*, i32** %44, align 8 - store %"class.std::allocator.0"* %39, %"class.std::allocator.0"** %4, align 8 - store i32* %45, i32** %5, align 8 - %46 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %47 = bitcast %"class.std::allocator.0"* %46 to %"class.std::__new_allocator.1"* - %48 = load i32*, i32** %5, align 8 - store %"class.std::__new_allocator.1"* %47, %"class.std::__new_allocator.1"** %2, align 8 - store i32* %48, i32** %3, align 8 - %49 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - %50 = load i32*, i32** %3, align 8 - 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 = { nofree nosync nounwind readnone speculatable willreturn } -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 = { 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 #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 = { argmemonly nofree nounwind willreturn } -attributes #7 = { "frame-pointer"="all" "no-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 "frame-pointer"="all" "no-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 = { 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 = { argmemonly nofree nounwind willreturn writeonly } -attributes #14 = { builtin allocsize(0) } -attributes #15 = { nounwind } -attributes #16 = { noreturn nounwind } -attributes #17 = { builtin nounwind } -attributes #18 = { noreturn } - -!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"} -!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-llvm14/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 deleted file mode 100644 index 4ba4c78eb..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/total-number-of-non-decreasing-numbers-with-n-digits.ll +++ /dev/null @@ -1,228 +0,0 @@ -; ModuleID = 'PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp' -source_filename = "PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_ZSt4cout = external global %"class.std::basic_ostream", align 8 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i64 @_Z18countNonDecreasingi(i32 noundef %0) #0 { - %2 = alloca i32, align 4 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i64, align 8 - %10 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %11 = load i32, i32* %2, align 4 - %12 = add nsw i32 %11, 1 - %13 = zext i32 %12 to i64 - %14 = call i8* @llvm.stacksave() - store i8* %14, i8** %3, align 8 - %15 = mul nuw i64 10, %13 - %16 = alloca i64, i64 %15, align 16 - store i64 %13, i64* %4, align 8 - %17 = bitcast i64* %16 to i8* - %18 = mul nuw i64 10, %13 - %19 = mul nuw i64 8, %18 - call void @llvm.memset.p0i8.i64(i8* align 16 %17, i8 0, i64 %19, i1 false) - store i32 0, i32* %5, align 4 - br label %20 - -20: ; preds = %29, %1 - %21 = load i32, i32* %5, align 4 - %22 = icmp slt i32 %21, 10 - br i1 %22, label %23, label %32 - -23: ; preds = %20 - %24 = load i32, i32* %5, align 4 - %25 = sext i32 %24 to i64 - %26 = mul nsw i64 %25, %13 - %27 = getelementptr inbounds i64, i64* %16, i64 %26 - %28 = getelementptr inbounds i64, i64* %27, i64 1 - store i64 1, i64* %28, align 8 - br label %29 - -29: ; preds = %23 - %30 = load i32, i32* %5, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %5, align 4 - br label %20, !llvm.loop !6 - -32: ; preds = %20 - store i32 0, i32* %6, align 4 - br label %33 - -33: ; preds = %73, %32 - %34 = load i32, i32* %6, align 4 - %35 = icmp sle i32 %34, 9 - br i1 %35, label %36, label %76 - -36: ; preds = %33 - store i32 2, i32* %7, align 4 - br label %37 - -37: ; preds = %69, %36 - %38 = load i32, i32* %7, align 4 - %39 = load i32, i32* %2, align 4 - %40 = icmp sle i32 %38, %39 - br i1 %40, label %41, label %72 - -41: ; preds = %37 - store i32 0, i32* %8, align 4 - br label %42 - -42: ; preds = %65, %41 - %43 = load i32, i32* %8, align 4 - %44 = load i32, i32* %6, align 4 - %45 = icmp sle i32 %43, %44 - br i1 %45, label %46, label %68 - -46: ; preds = %42 - %47 = load i32, i32* %8, align 4 - %48 = sext i32 %47 to i64 - %49 = mul nsw i64 %48, %13 - %50 = getelementptr inbounds i64, i64* %16, i64 %49 - %51 = load i32, i32* %7, align 4 - %52 = sub nsw i32 %51, 1 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds i64, i64* %50, i64 %53 - %55 = load i64, i64* %54, align 8 - %56 = load i32, i32* %6, align 4 - %57 = sext i32 %56 to i64 - %58 = mul nsw i64 %57, %13 - %59 = getelementptr inbounds i64, i64* %16, i64 %58 - %60 = load i32, i32* %7, align 4 - %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds i64, i64* %59, i64 %61 - %63 = load i64, i64* %62, align 8 - %64 = add nsw i64 %63, %55 - store i64 %64, i64* %62, align 8 - br label %65 - -65: ; preds = %46 - %66 = load i32, i32* %8, align 4 - %67 = add nsw i32 %66, 1 - store i32 %67, i32* %8, align 4 - br label %42, !llvm.loop !8 - -68: ; preds = %42 - br label %69 - -69: ; preds = %68 - %70 = load i32, i32* %7, align 4 - %71 = add nsw i32 %70, 1 - store i32 %71, i32* %7, align 4 - br label %37, !llvm.loop !9 - -72: ; preds = %37 - br label %73 - -73: ; preds = %72 - %74 = load i32, i32* %6, align 4 - %75 = add nsw i32 %74, 1 - store i32 %75, i32* %6, align 4 - br label %33, !llvm.loop !10 - -76: ; preds = %33 - store i64 0, i64* %9, align 8 - store i32 0, i32* %10, align 4 - br label %77 - -77: ; preds = %91, %76 - %78 = load i32, i32* %10, align 4 - %79 = icmp slt i32 %78, 10 - br i1 %79, label %80, label %94 - -80: ; preds = %77 - %81 = load i32, i32* %10, align 4 - %82 = sext i32 %81 to i64 - %83 = mul nsw i64 %82, %13 - %84 = getelementptr inbounds i64, i64* %16, i64 %83 - %85 = load i32, i32* %2, align 4 - %86 = sext i32 %85 to i64 - %87 = getelementptr inbounds i64, i64* %84, i64 %86 - %88 = load i64, i64* %87, align 8 - %89 = load i64, i64* %9, align 8 - %90 = add nsw i64 %89, %88 - store i64 %90, i64* %9, align 8 - br label %91 - -91: ; preds = %80 - %92 = load i32, i32* %10, align 4 - %93 = add nsw i32 %92, 1 - store i32 %93, i32* %10, align 4 - br label %77, !llvm.loop !11 - -94: ; preds = %77 - %95 = load i64, i64* %9, align 8 - %96 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %96) - ret i64 %95 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #2 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %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 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEx(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i64 noundef) #4 - -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 = { 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" } -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, !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"} -!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 deleted file mode 100644 index cedbb1f0c..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/tower-of-hanoi.ll +++ /dev/null @@ -1,116 +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" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 - -; 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) #0 { - %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() #2 { - %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 -} - -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"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/trie-suffixes.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/trie-suffixes.ll deleted file mode 100644 index 9f582f84e..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/trie-suffixes.ll +++ /dev/null @@ -1,1376 +0,0 @@ -; ModuleID = 'PE-benchmarks/trie-suffixes.cpp' -source_filename = "PE-benchmarks/trie-suffixes.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.SuffixTrieNode = type { [256 x %class.SuffixTrieNode*], %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%class.SuffixTrie = type { %class.SuffixTrieNode } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::__new_allocator.1" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZN14SuffixTrieNodeC2Ev = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE = comdat any - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt15__new_allocatorIcED2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_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 -@.str.3 = private unnamed_addr constant [16 x i8] c"Search for 'ee'\00", align 1 -@.str.4 = private unnamed_addr constant [3 x i8] c"ee\00", align 1 -@.str.5 = private unnamed_addr constant [19 x i8] c"\0ASearch for 'geek'\00", align 1 -@.str.6 = private unnamed_addr constant [5 x i8] c"geek\00", align 1 -@.str.7 = private unnamed_addr constant [19 x i8] c"\0ASearch for 'quiz'\00", align 1 -@.str.8 = private unnamed_addr constant [5 x i8] c"quiz\00", align 1 -@.str.9 = private unnamed_addr constant [23 x i8] c"\0ASearch for 'forgeeks'\00", align 1 -@.str.10 = private unnamed_addr constant [9 x i8] c"forgeeks\00", align 1 - -; 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) #0 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %class.SuffixTrieNode*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i8, align 1 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - store %class.SuffixTrieNode* %0, %class.SuffixTrieNode** %4, align 8 - store i32 %2, i32* %5, align 4 - %10 = load %class.SuffixTrieNode*, %class.SuffixTrieNode** %4, align 8 - %11 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %10, i32 0, i32 1 - %12 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %11, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* 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) #12 - %14 = icmp ugt i64 %13, 0 - br i1 %14, label %15, label %49 - -15: ; preds = %3 - %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 - %19 = load i8, i8* %6, align 1 - %20 = sext i8 %19 to i64 - %21 = getelementptr inbounds [256 x %class.SuffixTrieNode*], [256 x %class.SuffixTrieNode*]* %18, i64 0, i64 %20 - %22 = load %class.SuffixTrieNode*, %class.SuffixTrieNode** %21, align 8 - %23 = icmp eq %class.SuffixTrieNode* %22, null - br i1 %23, label %24, label %36 - -24: ; preds = %15 - %25 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 2056) #13 - %26 = bitcast i8* %25 to %class.SuffixTrieNode* - invoke void @_ZN14SuffixTrieNodeC2Ev(%class.SuffixTrieNode* noundef nonnull align 8 dereferenceable(2056) %26) - to label %27 unwind label %32 - -27: ; preds = %24 - %28 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %10, i32 0, i32 0 - %29 = load i8, i8* %6, align 1 - %30 = sext i8 %29 to i64 - %31 = getelementptr inbounds [256 x %class.SuffixTrieNode*], [256 x %class.SuffixTrieNode*]* %28, i64 0, i64 %30 - store %class.SuffixTrieNode* %26, %class.SuffixTrieNode** %31, align 8 - br label %36 - -32: ; preds = %24 - %33 = landingpad { i8*, i32 } - cleanup - %34 = extractvalue { i8*, i32 } %33, 0 - store i8* %34, i8** %7, align 8 - %35 = extractvalue { i8*, i32 } %33, 1 - store i32 %35, i32* %8, align 4 - call void @_ZdlPv(i8* noundef %25) #14 - br label %50 - -36: ; preds = %27, %15 - %37 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %10, i32 0, i32 0 - %38 = load i8, i8* %6, align 1 - %39 = sext i8 %38 to i64 - %40 = getelementptr inbounds [256 x %class.SuffixTrieNode*], [256 x %class.SuffixTrieNode*]* %37, i64 0, i64 %39 - %41 = load %class.SuffixTrieNode*, %class.SuffixTrieNode** %40, align 8 - call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %9, %"class.std::__cxx11::basic_string"* 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* 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"* noundef nonnull align 8 dereferenceable(32) %9) #12 - br label %49 - -45: ; preds = %36 - %46 = landingpad { i8*, i32 } - cleanup - %47 = extractvalue { i8*, i32 } %46, 0 - store i8* %47, i8** %7, align 8 - %48 = extractvalue { i8*, i32 } %46, 1 - store i32 %48, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9) #12 - br label %50 - -49: ; preds = %44, %3 - ret void - -50: ; preds = %45, %32 - %51 = load i8*, i8** %7, align 8 - %52 = load i32, i32* %8, align 4 - %53 = insertvalue { i8*, i32 } undef, i8* %51, 0 - %54 = insertvalue { i8*, i32 } %53, i32 %52, 1 - resume { i8*, i32 } %54 -} - -; Function Attrs: 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) #0 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"* noundef nonnull align 8 dereferenceable(24) %6) #12 - %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"* 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 noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) #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) #2 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #3 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZN14SuffixTrieNodeC2Ev(%class.SuffixTrieNode* noundef nonnull align 8 dereferenceable(2056) %0) unnamed_addr #4 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 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"* noundef nonnull align 8 dereferenceable(24) %6) #12 - %7 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %4, i32 0, i32 1 - store %"class.std::__cxx11::list"* %6, %"class.std::__cxx11::list"** %7, align 8 - store i32 0, i32* %3, align 4 - br label %8 - -8: ; preds = %16, %1 - %9 = load i32, i32* %3, align 4 - %10 = icmp slt i32 %9, 256 - br i1 %10, label %11, label %19 - -11: ; preds = %8 - %12 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %4, i32 0, i32 0 - %13 = load i32, i32* %3, align 4 - %14 = sext i32 %13 to i64 - %15 = getelementptr inbounds [256 x %class.SuffixTrieNode*], [256 x %class.SuffixTrieNode*]* %12, i64 0, i64 %14 - store %class.SuffixTrieNode* null, %class.SuffixTrieNode** %15, align 8 - br label %16 - -16: ; preds = %11 - %17 = load i32, i32* %3, align 4 - %18 = add nsw i32 %17, 1 - store i32 %18, i32* %3, align 4 - br label %8, !llvm.loop !6 - -19: ; preds = %8 - ret void -} - -declare i32 @__gxx_personality_v0(...) - -; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(i8* noundef) #5 - -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) #2 - -; Function Attrs: nounwind -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 - -; 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) #0 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca %class.SuffixTrieNode*, align 8 - %5 = alloca %"class.std::__cxx11::basic_string", align 8 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store %class.SuffixTrieNode* %0, %class.SuffixTrieNode** %4, align 8 - %8 = load %class.SuffixTrieNode*, %class.SuffixTrieNode** %4, align 8 - %9 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) #12 - %10 = icmp eq i64 %9, 0 - br i1 %10, label %11, label %14 - -11: ; preds = %2 - %12 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %8, i32 0, i32 1 - %13 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %12, align 8 - store %"class.std::__cxx11::list"* %13, %"class.std::__cxx11::list"** %3, align 8 - br label %36 - -14: ; preds = %2 - %15 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %8, i32 0, i32 0 - %16 = call 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 - %20 = load %class.SuffixTrieNode*, %class.SuffixTrieNode** %19, align 8 - %21 = icmp ne %class.SuffixTrieNode* %20, null - br i1 %21, label %22, label %35 - -22: ; preds = %14 - %23 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %8, i32 0, i32 0 - %24 = call 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"* 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"* noundef nonnull align 8 dereferenceable(32) %5) #12 - br label %36 - -31: ; preds = %22 - %32 = landingpad { i8*, i32 } - cleanup - %33 = extractvalue { i8*, i32 } %32, 0 - store i8* %33, i8** %6, align 8 - %34 = extractvalue { i8*, i32 } %32, 1 - store i32 %34, i32* %7, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5) #12 - br label %38 - -35: ; preds = %14 - store %"class.std::__cxx11::list"* null, %"class.std::__cxx11::list"** %3, align 8 - br label %36 - -36: ; preds = %35, %30, %11 - %37 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - ret %"class.std::__cxx11::list"* %37 - -38: ; preds = %31 - %39 = load i8*, i8** %6, align 8 - %40 = load i32, i32* %7, align 4 - %41 = insertvalue { i8*, i32 } undef, i8* %39, 0 - %42 = insertvalue { i8*, i32 } %41, i32 %40, 1 - resume { i8*, i32 } %42 -} - -; Function Attrs: 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) #0 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %class.SuffixTrie*, align 8 - %4 = alloca %"class.std::__cxx11::list"*, align 8 - %5 = alloca %"class.std::__cxx11::basic_string", align 8 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - store %class.SuffixTrie* %0, %class.SuffixTrie** %3, align 8 - %12 = load %class.SuffixTrie*, %class.SuffixTrie** %3, align 8 - %13 = getelementptr inbounds %class.SuffixTrie, %class.SuffixTrie* %12, i32 0, i32 0 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* 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"* noundef nonnull align 8 dereferenceable(32) %5) #12 - 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 noundef 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 - %22 = landingpad { i8*, i32 } - cleanup - %23 = extractvalue { i8*, i32 } %22, 0 - store i8* %23, i8** %6, align 8 - %24 = extractvalue { i8*, i32 } %22, 1 - store i32 %24, i32* %7, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5) #12 - br label %50 - -25: ; preds = %15 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %8) #12 - %26 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) #12 - %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"* noundef nonnull align 8 dereferenceable(24) %28) #12 - %30 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %10, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %29, %"struct.std::__detail::_List_node_base"** %30, align 8 - %31 = bitcast %"struct.std::_List_iterator"* %8 to i8* - %32 = bitcast %"struct.std::_List_iterator"* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %31, i8* align 8 %32, i64 8, i1 false) - br label %33 - -33: ; preds = %46, %25 - %34 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %4, align 8 - %35 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %34) #12 - %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 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) #12 - br i1 %37, label %38, label %48 - -38: ; preds = %33 - %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) #12 - %41 = load i32, i32* %40, align 4 - %42 = load i32, i32* %9, align 4 - %43 = sub nsw i32 %41, %42 - %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 noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %8) #12 - br label %33, !llvm.loop !8 - -48: ; preds = %33 - br label %49 - -49: ; preds = %48, %18 - ret void - -50: ; preds = %21 - %51 = load i8*, i8** %6, align 8 - %52 = load i32, i32* %7, align 4 - %53 = insertvalue { i8*, i32 } undef, i8* %51, 0 - %54 = insertvalue { i8*, i32 } %53, i32 %52, 1 - resume { i8*, i32 } %54 -} - -declare 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 #2 - -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) #2 - -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) #2 - -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)) #2 - -; Function Attrs: noinline nounwind uwtable -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 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #12 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -; 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 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #12 - %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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) - ret i32* %7 -} - -; 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 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline norecurse uwtable -define dso_local noundef i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca %"class.std::__new_allocator.1"*, align 8 - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - %3 = alloca %"class.std::__new_allocator.1"*, align 8 - %4 = alloca %"class.std::__new_allocator.1"*, align 8 - %5 = alloca %"class.std::__new_allocator.1"*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - %7 = alloca %"class.std::allocator.0"*, align 8 - %8 = alloca %"class.std::allocator.0"*, align 8 - %9 = alloca %"class.std::allocator.0"*, align 8 - %10 = alloca %"class.std::allocator.0"*, align 8 - %11 = alloca %"class.std::allocator.0"*, align 8 - %12 = alloca %"class.std::allocator.0"*, align 8 - %13 = alloca %"class.std::allocator.0"*, align 8 - %14 = alloca %"class.std::allocator.0"*, align 8 - %15 = alloca %"class.std::allocator.0"*, align 8 - %16 = alloca %"class.std::allocator.0"*, align 8 - %17 = alloca %"class.std::allocator.0"*, align 8 - %18 = alloca %"class.std::allocator.0"*, align 8 - %19 = alloca %"class.std::allocator.0"*, align 8 - %20 = alloca %"class.std::allocator.0"*, align 8 - %21 = alloca i32, align 4 - %22 = alloca %"class.std::__cxx11::basic_string", align 8 - %23 = alloca %"class.std::allocator.0", align 1 - %24 = alloca i8*, align 8 - %25 = alloca i32, align 4 - %26 = alloca %class.SuffixTrie, align 8 - %27 = alloca %"class.std::__cxx11::basic_string", align 8 - %28 = alloca %"class.std::__cxx11::basic_string", align 8 - %29 = alloca %"class.std::allocator.0", align 1 - %30 = alloca %"class.std::__cxx11::basic_string", align 8 - %31 = alloca %"class.std::allocator.0", align 1 - %32 = alloca %"class.std::__cxx11::basic_string", align 8 - %33 = alloca %"class.std::allocator.0", align 1 - %34 = alloca %"class.std::__cxx11::basic_string", align 8 - %35 = alloca %"class.std::allocator.0", align 1 - store i32 0, i32* %21, align 4 - store %"class.std::allocator.0"* %23, %"class.std::allocator.0"** %20, align 8 - %36 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %20, align 8 - %37 = bitcast %"class.std::allocator.0"* %36 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %37, %"class.std::__new_allocator.1"** %1, align 8 - %38 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %1, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %22, 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) %23) - to label %39 unwind label %89 - -39: ; preds = %0 - store %"class.std::allocator.0"* %23, %"class.std::allocator.0"** %15, align 8 - %40 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %15, align 8 - %41 = bitcast %"class.std::allocator.0"* %40 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %41) #12 - 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) %22) - to label %42 unwind label %95 - -42: ; preds = %39 - invoke void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* noundef nonnull align 8 dereferenceable(2056) %26, %"class.std::__cxx11::basic_string"* noundef %27) - to label %43 unwind label %99 - -43: ; preds = %42 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %27) #12 - %44 = 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 %45 unwind label %95 - -45: ; preds = %43 - %46 = invoke 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_) - to label %47 unwind label %95 - -47: ; preds = %45 - store %"class.std::allocator.0"* %29, %"class.std::allocator.0"** %19, align 8 - %48 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %19, align 8 - %49 = bitcast %"class.std::allocator.0"* %48 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %49, %"class.std::__new_allocator.1"** %2, align 8 - %50 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %28, 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) %29) - to label %51 unwind label %103 - -51: ; preds = %47 - invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* noundef nonnull align 8 dereferenceable(2056) %26, %"class.std::__cxx11::basic_string"* noundef %28) - to label %52 unwind label %107 - -52: ; preds = %51 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %28) #12 - store %"class.std::allocator.0"* %29, %"class.std::allocator.0"** %13, align 8 - %53 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %13, align 8 - %54 = bitcast %"class.std::allocator.0"* %53 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %54) #12 - %55 = 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 %56 unwind label %95 - -56: ; preds = %52 - %57 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %55, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - to label %58 unwind label %95 - -58: ; preds = %56 - store %"class.std::allocator.0"* %31, %"class.std::allocator.0"** %18, align 8 - %59 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %18, align 8 - %60 = bitcast %"class.std::allocator.0"* %59 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %60, %"class.std::__new_allocator.1"** %3, align 8 - %61 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %3, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %30, 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) %31) - to label %62 unwind label %114 - -62: ; preds = %58 - invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* noundef nonnull align 8 dereferenceable(2056) %26, %"class.std::__cxx11::basic_string"* noundef %30) - to label %63 unwind label %118 - -63: ; preds = %62 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %30) #12 - store %"class.std::allocator.0"* %31, %"class.std::allocator.0"** %11, align 8 - %64 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %11, align 8 - %65 = bitcast %"class.std::allocator.0"* %64 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %65) #12 - %66 = 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 %67 unwind label %95 - -67: ; preds = %63 - %68 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %66, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - to label %69 unwind label %95 - -69: ; preds = %67 - store %"class.std::allocator.0"* %33, %"class.std::allocator.0"** %17, align 8 - %70 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %17, align 8 - %71 = bitcast %"class.std::allocator.0"* %70 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %71, %"class.std::__new_allocator.1"** %4, align 8 - %72 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %4, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %32, 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) %33) - to label %73 unwind label %125 - -73: ; preds = %69 - invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* noundef nonnull align 8 dereferenceable(2056) %26, %"class.std::__cxx11::basic_string"* noundef %32) - to label %74 unwind label %129 - -74: ; preds = %73 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %32) #12 - store %"class.std::allocator.0"* %33, %"class.std::allocator.0"** %9, align 8 - %75 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %9, align 8 - %76 = bitcast %"class.std::allocator.0"* %75 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %76) #12 - %77 = 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 %78 unwind label %95 - -78: ; preds = %74 - %79 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %77, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - to label %80 unwind label %95 - -80: ; preds = %78 - store %"class.std::allocator.0"* %35, %"class.std::allocator.0"** %16, align 8 - %81 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %16, align 8 - %82 = bitcast %"class.std::allocator.0"* %81 to %"class.std::__new_allocator.1"* - store %"class.std::__new_allocator.1"* %82, %"class.std::__new_allocator.1"** %5, align 8 - %83 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %5, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %34, 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) %35) - to label %84 unwind label %136 - -84: ; preds = %80 - invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* noundef nonnull align 8 dereferenceable(2056) %26, %"class.std::__cxx11::basic_string"* noundef %34) - to label %85 unwind label %140 - -85: ; preds = %84 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %34) #12 - store %"class.std::allocator.0"* %35, %"class.std::allocator.0"** %7, align 8 - %86 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %7, align 8 - %87 = bitcast %"class.std::allocator.0"* %86 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %87) #12 - store i32 0, i32* %21, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %22) #12 - %88 = load i32, i32* %21, align 4 - ret i32 %88 - -89: ; preds = %0 - %90 = landingpad { i8*, i32 } - cleanup - %91 = extractvalue { i8*, i32 } %90, 0 - store i8* %91, i8** %24, align 8 - %92 = extractvalue { i8*, i32 } %90, 1 - store i32 %92, i32* %25, align 4 - store %"class.std::allocator.0"* %23, %"class.std::allocator.0"** %14, align 8 - %93 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %14, align 8 - %94 = bitcast %"class.std::allocator.0"* %93 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %94) #12 - br label %148 - -95: ; preds = %78, %74, %67, %63, %56, %52, %45, %43, %39 - %96 = landingpad { i8*, i32 } - cleanup - %97 = extractvalue { i8*, i32 } %96, 0 - store i8* %97, i8** %24, align 8 - %98 = extractvalue { i8*, i32 } %96, 1 - store i32 %98, i32* %25, align 4 - br label %147 - -99: ; preds = %42 - %100 = landingpad { i8*, i32 } - cleanup - %101 = extractvalue { i8*, i32 } %100, 0 - store i8* %101, i8** %24, align 8 - %102 = extractvalue { i8*, i32 } %100, 1 - store i32 %102, i32* %25, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %27) #12 - br label %147 - -103: ; preds = %47 - %104 = landingpad { i8*, i32 } - cleanup - %105 = extractvalue { i8*, i32 } %104, 0 - store i8* %105, i8** %24, align 8 - %106 = extractvalue { i8*, i32 } %104, 1 - store i32 %106, i32* %25, align 4 - br label %111 - -107: ; preds = %51 - %108 = landingpad { i8*, i32 } - cleanup - %109 = extractvalue { i8*, i32 } %108, 0 - store i8* %109, i8** %24, align 8 - %110 = extractvalue { i8*, i32 } %108, 1 - store i32 %110, i32* %25, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %28) #12 - br label %111 - -111: ; preds = %107, %103 - store %"class.std::allocator.0"* %29, %"class.std::allocator.0"** %12, align 8 - %112 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %12, align 8 - %113 = bitcast %"class.std::allocator.0"* %112 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %113) #12 - br label %147 - -114: ; preds = %58 - %115 = landingpad { i8*, i32 } - cleanup - %116 = extractvalue { i8*, i32 } %115, 0 - store i8* %116, i8** %24, align 8 - %117 = extractvalue { i8*, i32 } %115, 1 - store i32 %117, i32* %25, align 4 - br label %122 - -118: ; preds = %62 - %119 = landingpad { i8*, i32 } - cleanup - %120 = extractvalue { i8*, i32 } %119, 0 - store i8* %120, i8** %24, align 8 - %121 = extractvalue { i8*, i32 } %119, 1 - store i32 %121, i32* %25, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %30) #12 - br label %122 - -122: ; preds = %118, %114 - store %"class.std::allocator.0"* %31, %"class.std::allocator.0"** %10, align 8 - %123 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %10, align 8 - %124 = bitcast %"class.std::allocator.0"* %123 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %124) #12 - br label %147 - -125: ; preds = %69 - %126 = landingpad { i8*, i32 } - cleanup - %127 = extractvalue { i8*, i32 } %126, 0 - store i8* %127, i8** %24, align 8 - %128 = extractvalue { i8*, i32 } %126, 1 - store i32 %128, i32* %25, align 4 - br label %133 - -129: ; preds = %73 - %130 = landingpad { i8*, i32 } - cleanup - %131 = extractvalue { i8*, i32 } %130, 0 - store i8* %131, i8** %24, align 8 - %132 = extractvalue { i8*, i32 } %130, 1 - store i32 %132, i32* %25, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %32) #12 - br label %133 - -133: ; preds = %129, %125 - store %"class.std::allocator.0"* %33, %"class.std::allocator.0"** %8, align 8 - %134 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %8, align 8 - %135 = bitcast %"class.std::allocator.0"* %134 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %135) #12 - br label %147 - -136: ; preds = %80 - %137 = landingpad { i8*, i32 } - cleanup - %138 = extractvalue { i8*, i32 } %137, 0 - store i8* %138, i8** %24, align 8 - %139 = extractvalue { i8*, i32 } %137, 1 - store i32 %139, i32* %25, align 4 - br label %144 - -140: ; preds = %84 - %141 = landingpad { i8*, i32 } - cleanup - %142 = extractvalue { i8*, i32 } %141, 0 - store i8* %142, i8** %24, align 8 - %143 = extractvalue { i8*, i32 } %141, 1 - store i32 %143, i32* %25, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %34) #12 - br label %144 - -144: ; preds = %140, %136 - store %"class.std::allocator.0"* %35, %"class.std::allocator.0"** %6, align 8 - %145 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %6, align 8 - %146 = bitcast %"class.std::allocator.0"* %145 to %"class.std::__new_allocator.1"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %146) #12 - br label %147 - -147: ; preds = %144, %133, %122, %111, %99, %95 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %22) #12 - br label %148 - -148: ; preds = %147, %89 - %149 = load i8*, i8** %24, align 8 - %150 = load i32, i32* %25, align 4 - %151 = insertvalue { i8*, i32 } undef, i8* %149, 0 - %152 = insertvalue { i8*, i32 } %151, i32 %150, 1 - resume { i8*, i32 } %152 -} - -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 #2 - -; Function Attrs: noinline uwtable -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 #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %class.SuffixTrie*, align 8 - %4 = alloca i32, align 4 - %5 = alloca %"class.std::__cxx11::basic_string", align 8 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store %class.SuffixTrie* %0, %class.SuffixTrie** %3, align 8 - %8 = load %class.SuffixTrie*, %class.SuffixTrie** %3, align 8 - %9 = getelementptr inbounds %class.SuffixTrie, %class.SuffixTrie* %8, i32 0, i32 0 - call void @_ZN14SuffixTrieNodeC2Ev(%class.SuffixTrieNode* 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 noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) #12 - %14 = icmp ult i64 %12, %13 - br i1 %14, label %15, label %28 - -15: ; preds = %10 - %16 = getelementptr inbounds %class.SuffixTrie, %class.SuffixTrie* %8, i32 0, i32 0 - %17 = load i32, i32* %4, align 4 - %18 = sext i32 %17 to i64 - call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %5, %"class.std::__cxx11::basic_string"* 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* 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"* noundef nonnull align 8 dereferenceable(32) %5) #12 - 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 !9 - -24: ; preds = %15 - %25 = landingpad { i8*, i32 } - cleanup - %26 = extractvalue { i8*, i32 } %25, 0 - store i8* %26, i8** %6, align 8 - %27 = extractvalue { i8*, i32 } %25, 1 - store i32 %27, i32* %7, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5) #12 - br label %29 - -28: ; preds = %10 - ret void - -29: ; preds = %24 - %30 = load i8*, i8** %6, align 8 - %31 = load i32, i32* %7, align 4 - %32 = insertvalue { i8*, i32 } undef, i8* %30, 0 - %33 = insertvalue { i8*, i32 } %32, i32 %31, 1 - resume { i8*, i32 } %33 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* 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"* noundef nonnull align 8 dereferenceable(24) %4) #12 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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"* noundef nonnull align 8 dereferenceable(24) %4) #12 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #12 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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"* noundef nonnull align 8 dereferenceable(24) %3) #12 - ret void -} - -; 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 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__new_allocator.1"*, align 8 - store %"class.std::__new_allocator.1"* %0, %"class.std::__new_allocator.1"** %2, align 8 - %3 = load %"class.std::__new_allocator.1"*, %"class.std::__new_allocator.1"** %2, align 8 - ret void -} - -; 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) #0 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #12 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #12 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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) #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %16 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %18 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17) - store %"struct.std::_List_node"* %18, %"struct.std::_List_node"** %11, align 8 - %19 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %20 = 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) %19) #12 - store %"class.std::allocator"* %20, %"class.std::allocator"** %12, align 8 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %21, %"struct.std::_List_node"* noundef %22) #12 - %23 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %25 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %24) - to label %26 unwind label %42 - -26: ; preds = %2 - %27 = load i32*, i32** %10, align 8 - %28 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %27) #12 - store %"class.std::allocator"* %23, %"class.std::allocator"** %6, align 8 - store i32* %25, i32** %7, align 8 - store i32* %28, i32** %8, align 8 - %29 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %30 = bitcast %"class.std::allocator"* %29 to %"class.std::__new_allocator"* - %31 = load i32*, i32** %7, align 8 - %32 = load i32*, i32** %8, align 8 - %33 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %32) #12 - store %"class.std::__new_allocator"* %30, %"class.std::__new_allocator"** %3, align 8 - store i32* %31, i32** %4, align 8 - store i32* %33, i32** %5, align 8 - %34 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %35 = load i32*, i32** %4, align 8 - %36 = bitcast i32* %35 to i8* - %37 = load i32*, i32** %5, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %37) #12 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %35, align 4 - %40 = 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) %13, i8* null) #12 - %41 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #12 - ret %"struct.std::_List_node"* %41 - -42: ; preds = %2 - %43 = landingpad { i8*, i32 } - cleanup - %44 = extractvalue { i8*, i32 } %43, 0 - store i8* %44, i8** %14, align 8 - %45 = extractvalue { i8*, i32 } %43, 1 - store i32 %45, i32* %15, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #12 - br label %46 - -46: ; preds = %42 - %47 = load i8*, i8** %14, align 8 - %48 = load i32, i32* %15, align 4 - %49 = insertvalue { i8*, i32 } undef, i8* %47, 0 - %50 = insertvalue { i8*, i32 } %49, i32 %48, 1 - resume { i8*, i32 } %50 -} - -; 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: nounwind -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) #1 - -; 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 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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) #0 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; 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 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* 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 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #12 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #12 - ret i32* %5 -} - -; 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 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #15 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #0 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #16 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #13 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -declare void @_ZSt28__throw_bad_array_new_lengthv() #10 - -; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #10 - -; 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: 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #12 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #12 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__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.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #14 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -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 = { 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 #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 = { 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 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 #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 = { 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 = { 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 #11 = { noinline noreturn nounwind } -attributes #12 = { nounwind } -attributes #13 = { builtin allocsize(0) } -attributes #14 = { builtin nounwind } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/tug-of-war.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/tug-of-war.ll deleted file mode 100644 index 6e96ac1c2..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/tug-of-war.ll +++ /dev/null @@ -1,389 +0,0 @@ -; ModuleID = 'PE-benchmarks/tug-of-war.cpp' -source_filename = "PE-benchmarks/tug-of-war.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 -@__const.main.arr = private unnamed_addr constant [11 x i32] [i32 23, i32 45, i32 -34, i32 12, i32 0, i32 98, i32 -99, i32 4, i32 189, i32 -1, i32 4], align 16 - -; 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) #0 { - %10 = alloca i32*, align 8 - %11 = alloca i32, align 4 - %12 = alloca i8*, align 8 - %13 = alloca i32, align 4 - %14 = alloca i8*, align 8 - %15 = alloca i32*, align 8 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - %18 = alloca i32, align 4 - %19 = alloca i32, align 4 - store i32* %0, i32** %10, align 8 - store i32 %1, i32* %11, align 4 - store i8* %2, i8** %12, align 8 - store i32 %3, i32* %13, align 4 - store i8* %4, i8** %14, align 8 - store i32* %5, i32** %15, align 8 - store i32 %6, i32* %16, align 4 - store i32 %7, i32* %17, align 4 - store i32 %8, i32* %18, align 4 - %20 = load i32, i32* %18, align 4 - %21 = load i32, i32* %11, align 4 - %22 = icmp eq i32 %20, %21 - br i1 %22, label %23, label %24 - -23: ; preds = %9 - br label %115 - -24: ; preds = %9 - %25 = load i32, i32* %11, align 4 - %26 = sdiv i32 %25, 2 - %27 = load i32, i32* %13, align 4 - %28 = sub nsw i32 %26, %27 - %29 = load i32, i32* %11, align 4 - %30 = load i32, i32* %18, align 4 - %31 = sub nsw i32 %29, %30 - %32 = icmp sgt i32 %28, %31 - br i1 %32, label %33, label %34 - -33: ; preds = %24 - br label %115 - -34: ; preds = %24 - %35 = load i32*, i32** %10, align 8 - %36 = load i32, i32* %11, align 4 - %37 = load i8*, i8** %12, align 8 - %38 = load i32, i32* %13, align 4 - %39 = load i8*, i8** %14, align 8 - %40 = load i32*, i32** %15, align 8 - %41 = load i32, i32* %16, align 4 - %42 = load i32, i32* %17, align 4 - %43 = load i32, i32* %18, align 4 - %44 = add nsw i32 %43, 1 - call void @_Z7TOWUtilPiiPbiS0_S_iii(i32* 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 - %47 = load i32, i32* %17, align 4 - %48 = load i32*, i32** %10, align 8 - %49 = load i32, i32* %18, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %48, i64 %50 - %52 = load i32, i32* %51, align 4 - %53 = add nsw i32 %47, %52 - store i32 %53, i32* %17, align 4 - %54 = load i8*, i8** %12, align 8 - %55 = load i32, i32* %18, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i8, i8* %54, i64 %56 - store i8 1, i8* %57, align 1 - %58 = load i32, i32* %13, align 4 - %59 = load i32, i32* %11, align 4 - %60 = sdiv i32 %59, 2 - %61 = icmp eq i32 %58, %60 - br i1 %61, label %62, label %99 - -62: ; preds = %34 - %63 = load i32, i32* %16, align 4 - %64 = sdiv i32 %63, 2 - %65 = load i32, i32* %17, align 4 - %66 = sub nsw i32 %64, %65 - %67 = call i32 @abs(i32 noundef %66) #6 - %68 = load i32*, i32** %15, align 8 - %69 = load i32, i32* %68, align 4 - %70 = icmp slt i32 %67, %69 - br i1 %70, label %71, label %98 - -71: ; preds = %62 - %72 = load i32, i32* %16, align 4 - %73 = sdiv i32 %72, 2 - %74 = load i32, i32* %17, align 4 - %75 = sub nsw i32 %73, %74 - %76 = call i32 @abs(i32 noundef %75) #6 - %77 = load i32*, i32** %15, align 8 - store i32 %76, i32* %77, align 4 - store i32 0, i32* %19, align 4 - br label %78 - -78: ; preds = %94, %71 - %79 = load i32, i32* %19, align 4 - %80 = load i32, i32* %11, align 4 - %81 = icmp slt i32 %79, %80 - br i1 %81, label %82, label %97 - -82: ; preds = %78 - %83 = load i8*, i8** %12, align 8 - %84 = load i32, i32* %19, align 4 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i8, i8* %83, i64 %85 - %87 = load i8, i8* %86, align 1 - %88 = trunc i8 %87 to i1 - %89 = load i8*, i8** %14, align 8 - %90 = load i32, i32* %19, align 4 - %91 = sext i32 %90 to i64 - %92 = getelementptr inbounds i8, i8* %89, i64 %91 - %93 = zext i1 %88 to i8 - store i8 %93, i8* %92, align 1 - br label %94 - -94: ; preds = %82 - %95 = load i32, i32* %19, align 4 - %96 = add nsw i32 %95, 1 - store i32 %96, i32* %19, align 4 - br label %78, !llvm.loop !6 - -97: ; preds = %78 - br label %98 - -98: ; preds = %97, %62 - br label %110 - -99: ; preds = %34 - %100 = load i32*, i32** %10, align 8 - %101 = load i32, i32* %11, align 4 - %102 = load i8*, i8** %12, align 8 - %103 = load i32, i32* %13, align 4 - %104 = load i8*, i8** %14, align 8 - %105 = load i32*, i32** %15, align 8 - %106 = load i32, i32* %16, align 4 - %107 = load i32, i32* %17, align 4 - %108 = load i32, i32* %18, align 4 - %109 = add nsw i32 %108, 1 - call void @_Z7TOWUtilPiiPbiS0_S_iii(i32* 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 - %111 = load i8*, i8** %12, align 8 - %112 = load i32, i32* %18, align 4 - %113 = sext i32 %112 to i64 - %114 = getelementptr inbounds i8, i8* %111, i64 %113 - store i8 0, i8* %114, align 1 - br label %115 - -115: ; preds = %110, %33, %23 - ret void -} - -; Function Attrs: nounwind readnone willreturn -declare i32 @abs(i32 noundef) #1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z8tugOfWarPii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %12 = load i32, i32* %4, align 4 - %13 = sext i32 %12 to i64 - %14 = call noalias noundef nonnull i8* @_Znam(i64 noundef %13) #7 - store i8* %14, i8** %5, align 8 - %15 = load i32, i32* %4, align 4 - %16 = sext i32 %15 to i64 - %17 = call noalias noundef nonnull i8* @_Znam(i64 noundef %16) #7 - store i8* %17, i8** %6, align 8 - store i32 2147483647, i32* %7, align 4 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - br label %18 - -18: ; preds = %38, %2 - %19 = load i32, i32* %9, align 4 - %20 = load i32, i32* %4, align 4 - %21 = icmp slt i32 %19, %20 - br i1 %21, label %22, label %41 - -22: ; preds = %18 - %23 = load i32*, i32** %3, align 8 - %24 = load i32, i32* %9, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %23, i64 %25 - %27 = load i32, i32* %26, align 4 - %28 = load i32, i32* %8, align 4 - %29 = add nsw i32 %28, %27 - store i32 %29, i32* %8, align 4 - %30 = load i8*, i8** %6, align 8 - %31 = load i32, i32* %9, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds i8, i8* %30, i64 %32 - store i8 0, i8* %33, align 1 - %34 = load i8*, i8** %5, align 8 - %35 = load i32, i32* %9, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i8, i8* %34, i64 %36 - store i8 0, i8* %37, align 1 - br label %38 - -38: ; preds = %22 - %39 = load i32, i32* %9, align 4 - %40 = add nsw i32 %39, 1 - store i32 %40, i32* %9, align 4 - br label %18, !llvm.loop !8 - -41: ; preds = %18 - %42 = load i32*, i32** %3, align 8 - %43 = load i32, i32* %4, align 4 - %44 = load i8*, i8** %5, align 8 - %45 = load i8*, i8** %6, align 8 - %46 = load i32, i32* %8, align 4 - call void @_Z7TOWUtilPiiPbiS0_S_iii(i32* 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 - -48: ; preds = %70, %41 - %49 = load i32, i32* %10, align 4 - %50 = load i32, i32* %4, align 4 - %51 = icmp slt i32 %49, %50 - br i1 %51, label %52, label %73 - -52: ; preds = %48 - %53 = load i8*, i8** %6, align 8 - %54 = load i32, i32* %10, align 4 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i8, i8* %53, i64 %55 - %57 = load i8, i8* %56, align 1 - %58 = trunc i8 %57 to i1 - %59 = zext i1 %58 to i32 - %60 = icmp eq i32 %59, 1 - br i1 %60, label %61, label %69 - -61: ; preds = %52 - %62 = load i32*, i32** %3, align 8 - %63 = load i32, i32* %10, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds i32, i32* %62, i64 %64 - %66 = load i32, i32* %65, align 4 - %67 = call 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 - br label %70 - -70: ; preds = %69 - %71 = load i32, i32* %10, align 4 - %72 = add nsw i32 %71, 1 - store i32 %72, i32* %10, align 4 - br label %48, !llvm.loop !9 - -73: ; preds = %48 - %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 - -75: ; preds = %97, %73 - %76 = load i32, i32* %11, align 4 - %77 = load i32, i32* %4, align 4 - %78 = icmp slt i32 %76, %77 - br i1 %78, label %79, label %100 - -79: ; preds = %75 - %80 = load i8*, i8** %6, align 8 - %81 = load i32, i32* %11, align 4 - %82 = sext i32 %81 to i64 - %83 = getelementptr inbounds i8, i8* %80, i64 %82 - %84 = load i8, i8* %83, align 1 - %85 = trunc i8 %84 to i1 - %86 = zext i1 %85 to i32 - %87 = icmp eq i32 %86, 0 - br i1 %87, label %88, label %96 - -88: ; preds = %79 - %89 = load i32*, i32** %3, align 8 - %90 = load i32, i32* %11, align 4 - %91 = sext i32 %90 to i64 - %92 = getelementptr inbounds i32, i32* %89, i64 %91 - %93 = load i32, i32* %92, align 4 - %94 = call 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 - br label %97 - -97: ; preds = %96 - %98 = load i32, i32* %11, align 4 - %99 = add nsw i32 %98, 1 - store i32 %99, i32* %11, align 4 - br label %75, !llvm.loop !10 - -100: ; preds = %75 - ret void -} - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -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) #3 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #4 { - %1 = alloca i32, align 4 - %2 = alloca [11 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [11 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([11 x i32]* @__const.main.arr to i8*), i64 44, i1 false) - store i32 11, i32* %3, align 4 - %5 = getelementptr inbounds [11 x i32], [11 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - call void @_Z8tugOfWarPii(i32* noundef %5, i32 noundef %6) - ret i32 0 -} - -; 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 = { 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 = { 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 #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 = { argmemonly nofree nounwind willreturn } -attributes #6 = { nounwind readnone willreturn } -attributes #7 = { builtin allocsize(0) } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/union-find.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/union-find.ll deleted file mode 100644 index 0f294b932..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/union-find.ll +++ /dev/null @@ -1,332 +0,0 @@ -; ModuleID = 'PE-benchmarks/union-find.cpp' -source_filename = "PE-benchmarks/union-find.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, i32, %class.Edge* } -%class.Edge = type { i32, i32 } - -@_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 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef %class.Graph* @_Z11createGraphii(i32 noundef %0, i32 noundef %1) #0 { - %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 noundef nonnull i8* @_Znwm(i64 noundef 16) #6 - %7 = bitcast i8* %6 to %class.Graph* - %8 = bitcast %class.Graph* %7 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %8, i8 0, i64 16, i1 false) - store %class.Graph* %7, %class.Graph** %5, align 8 - %9 = load i32, i32* %3, align 4 - %10 = load %class.Graph*, %class.Graph** %5, align 8 - %11 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - store i32 %9, i32* %11, align 8 - %12 = load i32, i32* %4, align 4 - %13 = load %class.Graph*, %class.Graph** %5, align 8 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - store i32 %12, i32* %14, align 4 - %15 = load %class.Graph*, %class.Graph** %5, align 8 - %16 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 1 - %17 = load i32, i32* %16, align 4 - %18 = sext i32 %17 to i64 - %19 = mul i64 %18, 8 - %20 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %19, i64 8) - %21 = extractvalue { i64, i1 } %20, 1 - %22 = extractvalue { i64, i1 } %20, 0 - %23 = select i1 %21, i64 -1, i64 %22 - %24 = call noalias noundef nonnull i8* @_Znam(i64 noundef %23) #6 - %25 = bitcast i8* %24 to %class.Edge* - %26 = load %class.Graph*, %class.Graph** %5, align 8 - %27 = getelementptr inbounds %class.Graph, %class.Graph* %26, i32 0, i32 2 - store %class.Edge* %25, %class.Edge** %27, align 8 - %28 = load %class.Graph*, %class.Graph** %5, align 8 - ret %class.Graph* %28 -} - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znwm(i64 noundef) #1 - -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #2 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #3 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z4findPii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %5, align 4 - %8 = sext i32 %7 to i64 - %9 = getelementptr inbounds i32, i32* %6, i64 %8 - %10 = load i32, i32* %9, align 4 - %11 = icmp eq i32 %10, -1 - br i1 %11, label %12, label %14 - -12: ; preds = %2 - %13 = load i32, i32* %5, align 4 - store i32 %13, i32* %3, align 4 - br label %22 - -14: ; preds = %2 - %15 = load i32*, i32** %4, align 8 - %16 = load i32*, i32** %4, align 8 - %17 = load i32, i32* %5, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds i32, i32* %16, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = call noundef i32 @_Z4findPii(i32* noundef %15, i32 noundef %20) - store i32 %21, i32* %3, align 4 - br label %22 - -22: ; preds = %14, %12 - %23 = load i32, i32* %3, align 4 - ret i32 %23 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z5UnionPiii(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 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %9 = load i32*, i32** %4, align 8 - %10 = load i32, i32* %5, align 4 - %11 = call 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 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 - %17 = icmp ne i32 %15, %16 - br i1 %17, label %18, label %24 - -18: ; preds = %3 - %19 = load i32, i32* %8, align 4 - %20 = load i32*, i32** %4, align 8 - %21 = load i32, i32* %7, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds i32, i32* %20, i64 %22 - store i32 %19, i32* %23, align 4 - br label %24 - -24: ; preds = %18, %3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z7isCycleP5Graph(%class.Graph* noundef %0) #0 { - %2 = alloca i32, align 4 - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %8 = load %class.Graph*, %class.Graph** %3, align 8 - %9 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %10 = load i32, i32* %9, align 8 - %11 = sext i32 %10 to i64 - %12 = mul i64 %11, 4 - %13 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %12, i64 4) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = extractvalue { i64, i1 } %13, 0 - %16 = select i1 %14, i64 -1, i64 %15 - %17 = call noalias noundef nonnull i8* @_Znam(i64 noundef %16) #6 - %18 = bitcast i8* %17 to i32* - store i32* %18, i32** %4, align 8 - %19 = load i32*, i32** %4, align 8 - %20 = bitcast i32* %19 to i8* - %21 = load %class.Graph*, %class.Graph** %3, align 8 - %22 = getelementptr inbounds %class.Graph, %class.Graph* %21, i32 0, i32 0 - %23 = load i32, i32* %22, align 8 - %24 = sext i32 %23 to i64 - %25 = mul i64 4, %24 - call void @llvm.memset.p0i8.i64(i8* align 4 %20, i8 -1, i64 %25, i1 false) - store i32 0, i32* %5, align 4 - br label %26 - -26: ; preds = %61, %1 - %27 = load i32, i32* %5, align 4 - %28 = load %class.Graph*, %class.Graph** %3, align 8 - %29 = getelementptr inbounds %class.Graph, %class.Graph* %28, i32 0, i32 1 - %30 = load i32, i32* %29, align 4 - %31 = icmp slt i32 %27, %30 - br i1 %31, label %32, label %64 - -32: ; preds = %26 - %33 = load i32*, i32** %4, align 8 - %34 = load %class.Graph*, %class.Graph** %3, align 8 - %35 = getelementptr inbounds %class.Graph, %class.Graph* %34, i32 0, i32 2 - %36 = load %class.Edge*, %class.Edge** %35, align 8 - %37 = load i32, i32* %5, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds %class.Edge, %class.Edge* %36, i64 %38 - %40 = getelementptr inbounds %class.Edge, %class.Edge* %39, i32 0, i32 0 - %41 = load i32, i32* %40, align 4 - %42 = call 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 - %45 = getelementptr inbounds %class.Graph, %class.Graph* %44, i32 0, i32 2 - %46 = load %class.Edge*, %class.Edge** %45, align 8 - %47 = load i32, i32* %5, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds %class.Edge, %class.Edge* %46, i64 %48 - %50 = getelementptr inbounds %class.Edge, %class.Edge* %49, i32 0, i32 1 - %51 = load i32, i32* %50, align 4 - %52 = call 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 - %55 = icmp eq i32 %53, %54 - br i1 %55, label %56, label %57 - -56: ; preds = %32 - store i32 1, i32* %2, align 4 - br label %65 - -57: ; preds = %32 - %58 = load i32*, i32** %4, align 8 - %59 = load i32, i32* %6, align 4 - %60 = load i32, i32* %7, align 4 - call void @_Z5UnionPiii(i32* 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 !6 - -64: ; preds = %26 - store i32 0, i32* %2, align 4 - br label %65 - -65: ; preds = %64, %56 - %66 = load i32, i32* %2, align 4 - ret i32 %66 -} - -; Function Attrs: 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 - %4 = alloca %class.Graph*, align 8 - store i32 0, i32* %1, align 4 - store i32 3, i32* %2, align 4 - store i32 3, i32* %3, align 4 - %5 = load i32, i32* %2, align 4 - %6 = load i32, i32* %3, align 4 - %7 = call 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 - %10 = load %class.Edge*, %class.Edge** %9, align 8 - %11 = getelementptr inbounds %class.Edge, %class.Edge* %10, i64 0 - %12 = getelementptr inbounds %class.Edge, %class.Edge* %11, i32 0, i32 0 - store i32 0, i32* %12, align 4 - %13 = load %class.Graph*, %class.Graph** %4, align 8 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 2 - %15 = load %class.Edge*, %class.Edge** %14, align 8 - %16 = getelementptr inbounds %class.Edge, %class.Edge* %15, i64 0 - %17 = getelementptr inbounds %class.Edge, %class.Edge* %16, i32 0, i32 1 - store i32 1, i32* %17, align 4 - %18 = load %class.Graph*, %class.Graph** %4, align 8 - %19 = getelementptr inbounds %class.Graph, %class.Graph* %18, i32 0, i32 2 - %20 = load %class.Edge*, %class.Edge** %19, align 8 - %21 = getelementptr inbounds %class.Edge, %class.Edge* %20, i64 1 - %22 = getelementptr inbounds %class.Edge, %class.Edge* %21, i32 0, i32 0 - store i32 1, i32* %22, align 4 - %23 = load %class.Graph*, %class.Graph** %4, align 8 - %24 = getelementptr inbounds %class.Graph, %class.Graph* %23, i32 0, i32 2 - %25 = load %class.Edge*, %class.Edge** %24, align 8 - %26 = getelementptr inbounds %class.Edge, %class.Edge* %25, i64 1 - %27 = getelementptr inbounds %class.Edge, %class.Edge* %26, i32 0, i32 1 - store i32 2, i32* %27, align 4 - %28 = load %class.Graph*, %class.Graph** %4, align 8 - %29 = getelementptr inbounds %class.Graph, %class.Graph* %28, i32 0, i32 2 - %30 = load %class.Edge*, %class.Edge** %29, align 8 - %31 = getelementptr inbounds %class.Edge, %class.Edge* %30, i64 2 - %32 = getelementptr inbounds %class.Edge, %class.Edge* %31, i32 0, i32 0 - store i32 0, i32* %32, align 4 - %33 = load %class.Graph*, %class.Graph** %4, align 8 - %34 = getelementptr inbounds %class.Graph, %class.Graph* %33, i32 0, i32 2 - %35 = load %class.Edge*, %class.Edge** %34, align 8 - %36 = getelementptr inbounds %class.Edge, %class.Edge* %35, i64 2 - %37 = getelementptr inbounds %class.Edge, %class.Edge* %36, i32 0, i32 1 - store i32 2, i32* %37, align 4 - %38 = load %class.Graph*, %class.Graph** %4, align 8 - %39 = call 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 noundef 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 noundef 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 noundef 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) #5 - -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 = { 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 #2 = { argmemonly nofree nounwind willreturn writeonly } -attributes #3 = { nofree nosync nounwind readnone speculatable 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" } -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, !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-llvm14/vertex-cover-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/vertex-cover-problem.ll deleted file mode 100644 index bcc2f3592..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/vertex-cover-problem.ll +++ /dev/null @@ -1,941 +0,0 @@ -; ModuleID = 'PE-benchmarks/vertex-cover-problem.cpp' -source_filename = "PE-benchmarks/vertex-cover-problem.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::__new_allocator" = type { i8 } -%"class.std::allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_ZSt4cout = external global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -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 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias 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 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %26) #15 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #2 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - ret void -} - -; 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 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* 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"* noundef nonnull align 8 dereferenceable(24) %17, i32* noundef nonnull align 4 dereferenceable(4) %5) - ret void -} - -; 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"* noundef nonnull align 8 dereferenceable(24) %6) #15 - %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"* 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: mustprogress noinline uwtable -define dso_local void @_ZN5Graph16printVertexCoverEv(%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 - %5 = alloca i32, align 4 - %6 = alloca %"struct.std::_List_iterator", align 8 - %7 = alloca i32, align 4 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %2, align 8 - %12 = load %class.Graph*, %class.Graph** %2, align 8 - %13 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %14 = load i32, i32* %13, align 8 - %15 = zext i32 %14 to i64 - %16 = call i8* @llvm.stacksave() - store i8* %16, i8** %3, align 8 - %17 = alloca i8, i64 %15, align 16 - store i64 %15, i64* %4, align 8 - store i32 0, i32* %5, align 4 - br label %18 - -18: ; preds = %27, %1 - %19 = load i32, i32* %5, align 4 - %20 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %21 = load i32, i32* %20, align 8 - %22 = icmp slt i32 %19, %21 - br i1 %22, label %23, label %30 - -23: ; preds = %18 - %24 = load i32, i32* %5, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i8, i8* %17, i64 %25 - store i8 0, i8* %26, align 1 - br label %27 - -27: ; preds = %23 - %28 = load i32, i32* %5, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %5, align 4 - br label %18, !llvm.loop !6 - -30: ; preds = %18 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %6) #15 - store i32 0, i32* %7, align 4 - br label %31 - -31: ; preds = %85, %30 - %32 = load i32, i32* %7, align 4 - %33 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %34 = load i32, i32* %33, align 8 - %35 = icmp slt i32 %32, %34 - br i1 %35, label %36, label %88 - -36: ; preds = %31 - %37 = load i32, i32* %7, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i8, i8* %17, i64 %38 - %40 = load i8, i8* %39, align 1 - %41 = trunc i8 %40 to i1 - %42 = zext i1 %41 to i32 - %43 = icmp eq i32 %42, 0 - br i1 %43, label %44, label %84 - -44: ; preds = %36 - %45 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 1 - %46 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %45, align 8 - %47 = load i32, i32* %7, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %46, i64 %48 - %50 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %49) #15 - %51 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %50, %"struct.std::__detail::_List_node_base"** %51, align 8 - %52 = bitcast %"struct.std::_List_iterator"* %6 to i8* - %53 = bitcast %"struct.std::_List_iterator"* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %52, i8* align 8 %53, i64 8, i1 false) - br label %54 - -54: ; preds = %81, %44 - %55 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 1 - %56 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %55, align 8 - %57 = load i32, i32* %7, align 4 - %58 = sext i32 %57 to i64 - %59 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %56, i64 %58 - %60 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %59) #15 - %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 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) #15 - br i1 %62, label %63, label %83 - -63: ; preds = %54 - %64 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %6) #15 - %65 = load i32, i32* %64, align 4 - store i32 %65, i32* %10, align 4 - %66 = load i32, i32* %10, align 4 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds i8, i8* %17, i64 %67 - %69 = load i8, i8* %68, align 1 - %70 = trunc i8 %69 to i1 - %71 = zext i1 %70 to i32 - %72 = icmp eq i32 %71, 0 - br i1 %72, label %73, label %80 - -73: ; preds = %63 - %74 = load i32, i32* %10, align 4 - %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds i8, i8* %17, i64 %75 - store i8 1, i8* %76, align 1 - %77 = load i32, i32* %7, align 4 - %78 = sext i32 %77 to i64 - %79 = getelementptr inbounds i8, i8* %17, i64 %78 - store i8 1, i8* %79, align 1 - br label %83 - -80: ; preds = %63 - br label %81 - -81: ; preds = %80 - %82 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %6) #15 - br label %54, !llvm.loop !8 - -83: ; preds = %73, %54 - br label %84 - -84: ; preds = %83, %36 - br label %85 - -85: ; preds = %84 - %86 = load i32, i32* %7, align 4 - %87 = add nsw i32 %86, 1 - store i32 %87, i32* %7, align 4 - br label %31, !llvm.loop !9 - -88: ; preds = %31 - store i32 0, i32* %11, align 4 - br label %89 - -89: ; preds = %105, %88 - %90 = load i32, i32* %11, align 4 - %91 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %92 = load i32, i32* %91, align 8 - %93 = icmp slt i32 %90, %92 - br i1 %93, label %94, label %108 - -94: ; preds = %89 - %95 = load i32, i32* %11, align 4 - %96 = sext i32 %95 to i64 - %97 = getelementptr inbounds i8, i8* %17, i64 %96 - %98 = load i8, i8* %97, align 1 - %99 = trunc i8 %98 to i1 - br i1 %99, label %100, label %104 - -100: ; preds = %94 - %101 = load i32, i32* %11, align 4 - %102 = call 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 - br label %105 - -105: ; preds = %104 - %106 = load i32, i32* %11, align 4 - %107 = add nsw i32 %106, 1 - store i32 %107, i32* %11, align 4 - br label %89, !llvm.loop !10 - -108: ; preds = %89 - %109 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %109) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: 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 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %10) #15 - %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 nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; 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 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: 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 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %8) #15 - %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: 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 noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) - ret i32* %7 -} - -; 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 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -declare noundef 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) #8 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #8 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #9 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 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"* noundef nonnull align 8 dereferenceable(24) %4) #15 - 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"* noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = 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"** %4, align 8 - %5 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %4, align 8 - %6 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %5 to %"class.std::allocator"* - store %"class.std::allocator"* %6, %"class.std::allocator"** %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %2, align 8 - %9 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - %10 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 dereferenceable(24) %10) #15 - ret void -} - -; Function Attrs: noinline nounwind uwtable -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 #3 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"* noundef nonnull align 8 dereferenceable(24) %3) #15 - ret void -} - -; 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 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: 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 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #15 - %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"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %16) #15 - %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"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 1) - ret void -} - -; 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::__new_allocator"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::__cxx11::list"*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"struct.std::_List_node"*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca %"struct.std::__allocated_ptr", align 8 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %9, align 8 - store i32* %1, i32** %10, align 8 - %16 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %9, align 8 - %17 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %18 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17) - store %"struct.std::_List_node"* %18, %"struct.std::_List_node"** %11, align 8 - %19 = bitcast %"class.std::__cxx11::list"* %16 to %"class.std::__cxx11::_List_base"* - %20 = 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) %19) #15 - store %"class.std::allocator"* %20, %"class.std::allocator"** %12, align 8 - %21 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %22 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %21, %"struct.std::_List_node"* noundef %22) #15 - %23 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - %25 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %24) - to label %26 unwind label %42 - -26: ; preds = %2 - %27 = load i32*, i32** %10, align 8 - %28 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %27) #15 - store %"class.std::allocator"* %23, %"class.std::allocator"** %6, align 8 - store i32* %25, i32** %7, align 8 - store i32* %28, i32** %8, align 8 - %29 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %30 = bitcast %"class.std::allocator"* %29 to %"class.std::__new_allocator"* - %31 = load i32*, i32** %7, align 8 - %32 = load i32*, i32** %8, align 8 - %33 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %32) #15 - store %"class.std::__new_allocator"* %30, %"class.std::__new_allocator"** %3, align 8 - store i32* %31, i32** %4, align 8 - store i32* %33, i32** %5, align 8 - %34 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %3, align 8 - %35 = load i32*, i32** %4, align 8 - %36 = bitcast i32* %35 to i8* - %37 = load i32*, i32** %5, align 8 - %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %37) #15 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %35, align 4 - %40 = 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) %13, i8* null) #15 - %41 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %11, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #15 - ret %"struct.std::_List_node"* %41 - -42: ; preds = %2 - %43 = landingpad { i8*, i32 } - cleanup - %44 = extractvalue { i8*, i32 } %43, 0 - store i8* %44, i8** %14, align 8 - %45 = extractvalue { i8*, i32 } %43, 1 - store i32 %45, i32* %15, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %13) #15 - br label %46 - -46: ; preds = %42 - %47 = load i8*, i8** %14, align 8 - %48 = load i32, i32* %15, align 4 - %49 = insertvalue { i8*, i32 } undef, i8* %47, 0 - %50 = insertvalue { i8*, i32 } %49, i32 %48, 1 - resume { i8*, i32 } %50 -} - -; 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: nounwind -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) #10 - -; 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 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: 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::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %4, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - store %"class.std::allocator"* %7, %"class.std::allocator"** %2, align 8 - store i64 1, i64* %3, align 8 - %8 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %9 = bitcast %"class.std::allocator"* %8 to %"class.std::__new_allocator"* - %10 = load i64, i64* %3, align 8 - %11 = call noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10, i8* noundef null) - ret %"struct.std::_List_node"* %11 -} - -; 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 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* 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 #3 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #15 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: 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 noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #15 - ret i32* %5 -} - -declare i32 @__gxx_personality_v0(...) - -; 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 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca %"struct.std::_List_node"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %5, align 8 - %6 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %5, align 8 - %7 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %9 = icmp ne %"struct.std::_List_node"* %8, null - br i1 %9, label %10, label %20 - -10: ; preds = %1 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 0 - %12 = load %"class.std::allocator"*, %"class.std::allocator"** %11, align 8 - %13 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %6, i32 0, i32 1 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %13, align 8 - store %"class.std::allocator"* %12, %"class.std::allocator"** %2, align 8 - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %3, align 8 - store i64 1, i64* %4, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %16 = bitcast %"class.std::allocator"* %15 to %"class.std::__new_allocator"* - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %3, align 8 - %18 = load i64, i64* %4, align 8 - call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %16, %"struct.std::_List_node"* noundef %17, i64 noundef %18) - br label %19 - -19: ; preds = %10 - br label %20 - -20: ; preds = %19, %1 - ret void - -21: ; No predecessors! - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #16 - unreachable -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::__new_allocator"*, align 8 - %5 = alloca %"class.std::__new_allocator"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i8*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i8* %2, i8** %7, align 8 - %8 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %5, align 8 - %9 = load i64, i64* %6, align 8 - store %"class.std::__new_allocator"* %8, %"class.std::__new_allocator"** %4, align 8 - %10 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %4, align 8 - %11 = icmp ugt i64 %9, 384307168202282325 - br i1 %11, label %12, label %17 - -12: ; preds = %3 - %13 = load i64, i64* %6, align 8 - %14 = icmp ugt i64 %13, 768614336404564650 - br i1 %14, label %15, label %16 - -15: ; preds = %12 - call void @_ZSt28__throw_bad_array_new_lengthv() #17 - unreachable - -16: ; preds = %12 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -17: ; preds = %3 - %18 = load i64, i64* %6, align 8 - %19 = mul i64 %18, 24 - %20 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %19) #14 - %21 = bitcast i8* %20 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noreturn -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 noundef nonnull i8* @_Znwm(i64 noundef) #2 - -; 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: 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 noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %3) #15 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; 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 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #15 - call void @_ZSt9terminatev() #16 - unreachable -} - -declare i8* @__cxa_begin_catch(i8*) - -declare void @_ZSt9terminatev() - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(%"class.std::__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.std::__new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::__new_allocator"*, %"class.std::__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* noundef %9) #18 - ret void -} - -; Function Attrs: nobuiltin nounwind -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"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %1) unnamed_addr #3 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -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 = { nofree nosync nounwind readnone speculatable willreturn } -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 = { 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 #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 = { 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 = { "frame-pointer"="all" "no-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 = { 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 = { noinline noreturn nounwind } -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 = { nounwind } -attributes #16 = { noreturn nounwind } -attributes #17 = { noreturn } -attributes #18 = { builtin nounwind } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/weighted-job-scheduling.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/weighted-job-scheduling.ll deleted file mode 100644 index f5d81e015..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/weighted-job-scheduling.ll +++ /dev/null @@ -1,1942 +0,0 @@ -; ModuleID = 'PE-benchmarks/weighted-job-scheduling.cpp' -source_filename = "PE-benchmarks/weighted-job-scheduling.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%struct.Job = type { i32, i32, i32 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"struct.__gnu_cxx::__ops::_Iter_comp_iter" = type { i1 (i64, i32, i64, i32)* } -%"struct.__gnu_cxx::__ops::_Iter_comp_val" = type { i1 (i64, i32, i64, i32)* } -%"struct.__gnu_cxx::__ops::_Val_comp_iter" = type { i1 (i64, i32, i64, i32)* } - -$_ZSt4sortIP3JobPFbS0_S0_EEvT_S4_T0_ = comdat any - -$_ZSt3maxIiERKT_S2_S2_ = comdat any - -$_ZSt6__sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFb3JobS2_EEENS0_15_Iter_comp_iterIT_EES6_ = comdat any - -$_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_T1_ = comdat any - -$_ZSt4__lgIlET_S0_ = comdat any - -$_ZSt22__final_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZSt14__partial_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_ = comdat any - -$_ZSt27__unguarded_partition_pivotIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_T0_ = comdat any - -$_ZSt13__heap_selectIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_ = comdat any - -$_ZSt11__sort_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_ = comdat any - -$_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_ = comdat any - -$_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_ = comdat any - -$_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_RT0_ = comdat any - -$_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_ = comdat any - -$_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_T0_S9_T1_T2_ = comdat any - -$_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS3_EEEEONSt16remove_referenceIT_E4typeEOS9_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE = comdat any - -$_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFbS0_S0_EEEEvT_T0_S9_T1_RT2_ = comdat any - -$_ZSt4moveIRPFb3JobS0_EEONSt16remove_referenceIT_E4typeEOS5_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEclIPS2_S2_EEbT_RT0_ = comdat any - -$_ZSt22__move_median_to_firstIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_S8_T0_ = comdat any - -$_ZSt21__unguarded_partitionIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_S8_T0_ = comdat any - -$_ZSt9iter_swapIP3JobS1_EvT_T0_ = comdat any - -$_ZSt4swapI3JobENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_ = comdat any - -$_ZSt11__bit_widthImEiT_ = comdat any - -$_ZSt13__countl_zeroImEiT_ = comdat any - -$_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZSt26__unguarded_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZSt13move_backwardIP3JobS1_ET0_T_S3_S2_ = comdat any - -$_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops15__val_comp_iterIPFb3JobS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE = comdat any - -$_ZSt22__copy_move_backward_aILb1EP3JobS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIP3JobET_S2_ = comdat any - -$_ZSt12__niter_wrapIP3JobET_RKS2_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb1EP3JobS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIP3JobET_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb1EP3JobS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI3JobS3_EEPT0_PT_S7_S5_ = comdat any - -$_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneI3JobS3_EEvPT_PT0_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEclIS2_PS2_EEbRT_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE = comdat any - -$_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEC2ES4_ = comdat any - -@__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 global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [23 x i8] c"The optimal profit is \00", align 1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z14jobComparataor3JobS_(i64 %0, i32 %1, i64 %2, i32 %3) #0 { - %5 = alloca %struct.Job, align 4 - %6 = alloca { i64, i32 }, align 4 - %7 = alloca %struct.Job, align 4 - %8 = alloca { i64, i32 }, align 4 - %9 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %6, i32 0, i32 0 - store i64 %0, i64* %9, align 4 - %10 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %6, i32 0, i32 1 - store i32 %1, i32* %10, align 4 - %11 = bitcast %struct.Job* %5 to i8* - %12 = bitcast { i64, i32 }* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %11, i8* align 4 %12, i64 12, i1 false) - %13 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 0 - store i64 %2, i64* %13, align 4 - %14 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 1 - store i32 %3, i32* %14, align 4 - %15 = bitcast %struct.Job* %7 to i8* - %16 = bitcast { i64, i32 }* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = getelementptr inbounds %struct.Job, %struct.Job* %5, i32 0, i32 1 - %18 = load i32, i32* %17, align 4 - %19 = getelementptr inbounds %struct.Job, %struct.Job* %7, i32 0, i32 1 - %20 = load i32, i32* %19, align 4 - %21 = icmp slt i32 %18, %20 - ret i1 %21 -} - -; Function Attrs: argmemonly nofree nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z17latestNonConflictP3Jobi(%struct.Job* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca %struct.Job*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %struct.Job* %0, %struct.Job** %4, align 8 - store i32 %1, i32* %5, align 4 - %7 = load i32, i32* %5, align 4 - %8 = sub nsw i32 %7, 1 - store i32 %8, i32* %6, align 4 - br label %9 - -9: ; preds = %29, %2 - %10 = load i32, i32* %6, align 4 - %11 = icmp sge i32 %10, 0 - br i1 %11, label %12, label %32 - -12: ; preds = %9 - %13 = load %struct.Job*, %struct.Job** %4, align 8 - %14 = load i32, i32* %6, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds %struct.Job, %struct.Job* %13, i64 %15 - %17 = getelementptr inbounds %struct.Job, %struct.Job* %16, i32 0, i32 1 - %18 = load i32, i32* %17, align 4 - %19 = load %struct.Job*, %struct.Job** %4, align 8 - %20 = load i32, i32* %5, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds %struct.Job, %struct.Job* %19, i64 %21 - %23 = getelementptr inbounds %struct.Job, %struct.Job* %22, i32 0, i32 0 - %24 = load i32, i32* %23, align 4 - %25 = icmp sle i32 %18, %24 - br i1 %25, label %26, label %28 - -26: ; preds = %12 - %27 = load i32, i32* %6, align 4 - store i32 %27, i32* %3, align 4 - br label %33 - -28: ; preds = %12 - br label %29 - -29: ; preds = %28 - %30 = load i32, i32* %6, align 4 - %31 = add nsw i32 %30, -1 - store i32 %31, i32* %6, align 4 - br label %9, !llvm.loop !6 - -32: ; preds = %9 - store i32 -1, i32* %3, align 4 - br label %33 - -33: ; preds = %32, %26 - %34 = load i32, i32* %3, align 4 - ret i32 %34 -} - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z13findMaxProfitP3Jobi(%struct.Job* noundef %0, i32 noundef %1) #2 { - %3 = alloca %struct.Job*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store %struct.Job* %0, %struct.Job** %3, align 8 - store i32 %1, i32* %4, align 4 - %10 = load %struct.Job*, %struct.Job** %3, align 8 - %11 = load %struct.Job*, %struct.Job** %3, align 8 - %12 = load i32, i32* %4, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds %struct.Job, %struct.Job* %11, i64 %13 - call void @_ZSt4sortIP3JobPFbS0_S0_EEvT_S4_T0_(%struct.Job* 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 noundef nonnull i8* @_Znam(i64 noundef %20) #9 - %22 = bitcast i8* %21 to i32* - store i32* %22, i32** %5, align 8 - %23 = load %struct.Job*, %struct.Job** %3, align 8 - %24 = getelementptr inbounds %struct.Job, %struct.Job* %23, i64 0 - %25 = getelementptr inbounds %struct.Job, %struct.Job* %24, i32 0, i32 2 - %26 = load i32, i32* %25, align 4 - %27 = load i32*, i32** %5, align 8 - %28 = getelementptr inbounds i32, i32* %27, i64 0 - store i32 %26, i32* %28, align 4 - store i32 1, i32* %6, align 4 - br label %29 - -29: ; preds = %65, %2 - %30 = load i32, i32* %6, align 4 - %31 = load i32, i32* %4, align 4 - %32 = icmp slt i32 %30, %31 - br i1 %32, label %33, label %68 - -33: ; preds = %29 - %34 = load %struct.Job*, %struct.Job** %3, align 8 - %35 = load i32, i32* %6, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds %struct.Job, %struct.Job* %34, i64 %36 - %38 = getelementptr inbounds %struct.Job, %struct.Job* %37, i32 0, i32 2 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %7, align 4 - %40 = load %struct.Job*, %struct.Job** %3, align 8 - %41 = load i32, i32* %6, align 4 - %42 = call 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 - br i1 %44, label %45, label %53 - -45: ; preds = %33 - %46 = load i32*, i32** %5, align 8 - %47 = load i32, i32* %8, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %46, i64 %48 - %50 = load i32, i32* %49, align 4 - %51 = load i32, i32* %7, align 4 - %52 = add nsw i32 %51, %50 - store i32 %52, i32* %7, align 4 - br label %53 - -53: ; preds = %45, %33 - %54 = load i32*, i32** %5, align 8 - %55 = load i32, i32* %6, align 4 - %56 = sub nsw i32 %55, 1 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %54, i64 %57 - %59 = call 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 - %63 = sext i32 %62 to i64 - %64 = getelementptr inbounds i32, i32* %61, i64 %63 - store i32 %60, i32* %64, align 4 - br label %65 - -65: ; preds = %53 - %66 = load i32, i32* %6, align 4 - %67 = add nsw i32 %66, 1 - store i32 %67, i32* %6, align 4 - br label %29, !llvm.loop !8 - -68: ; preds = %29 - %69 = load i32*, i32** %5, align 8 - %70 = load i32, i32* %4, align 4 - %71 = sub nsw i32 %70, 1 - %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds i32, i32* %69, i64 %72 - %74 = load i32, i32* %73, align 4 - store i32 %74, i32* %9, align 4 - %75 = load i32*, i32** %5, align 8 - %76 = icmp eq i32* %75, null - br i1 %76, label %79, label %77 - -77: ; preds = %68 - %78 = bitcast i32* %75 to i8* - call void @_ZdaPv(i8* noundef %78) #10 - br label %79 - -79: ; preds = %77, %68 - %80 = load i32, i32* %9, align 4 - ret i32 %80 -} - -; 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) #2 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca i1 (i64, i32, i64, i32)*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store i1 (i64, i32, i64, i32)* %2, i1 (i64, i32, i64, i32)** %6, align 8 - %8 = load %struct.Job*, %struct.Job** %4, align 8 - %9 = load %struct.Job*, %struct.Job** %5, align 8 - %10 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %6, align 8 - %11 = call i1 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFb3JobS2_EEENS0_15_Iter_comp_iterIT_EES6_(i1 (i64, i32, i64, i32)* 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* noundef %8, %struct.Job* noundef %9, i1 (i64, i32, i64, i32)* %14) - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #3 - -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull i8* @_Znam(i64 noundef) #4 - -; 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) #0 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: nobuiltin nounwind -declare void @_ZdaPv(i8* noundef) #5 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [4 x %struct.Job], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [4 x %struct.Job]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([4 x %struct.Job]* @__const.main.arr to i8*), i64 48, i1 false) - store i32 4, i32* %3, align 4 - %5 = call noundef 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 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 noundef 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) #7 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #7 - -; 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) #2 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %2, i1 (i64, i32, i64, i32)** %9, align 8 - store %struct.Job* %0, %struct.Job** %5, align 8 - store %struct.Job* %1, %struct.Job** %6, align 8 - %10 = load %struct.Job*, %struct.Job** %5, align 8 - %11 = load %struct.Job*, %struct.Job** %6, align 8 - %12 = icmp ne %struct.Job* %10, %11 - br i1 %12, label %13, label %34 - -13: ; preds = %3 - %14 = load %struct.Job*, %struct.Job** %5, align 8 - %15 = load %struct.Job*, %struct.Job** %6, align 8 - %16 = load %struct.Job*, %struct.Job** %6, align 8 - %17 = load %struct.Job*, %struct.Job** %5, align 8 - %18 = ptrtoint %struct.Job* %16 to i64 - %19 = ptrtoint %struct.Job* %17 to i64 - %20 = sub i64 %18, %19 - %21 = sdiv exact i64 %20, 12 - %22 = call noundef i64 @_ZSt4__lgIlET_S0_(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* 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* - %31 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %30, i8* align 8 %31, i64 8, i1 false) - %32 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8, i32 0, i32 0 - %33 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %32, align 8 - call void @_ZSt22__final_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* noundef %28, %struct.Job* noundef %29, i1 (i64, i32, i64, i32)* %33) - br label %34 - -34: ; preds = %13, %3 - ret void -} - -; 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) #2 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 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) #11 - %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"* 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: 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) #2 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = alloca %struct.Job*, align 8 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %13 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %3, i1 (i64, i32, i64, i32)** %13, align 8 - store %struct.Job* %0, %struct.Job** %6, align 8 - store %struct.Job* %1, %struct.Job** %7, align 8 - store i64 %2, i64* %8, align 8 - br label %14 - -14: ; preds = %33, %4 - %15 = load %struct.Job*, %struct.Job** %7, align 8 - %16 = load %struct.Job*, %struct.Job** %6, align 8 - %17 = ptrtoint %struct.Job* %15 to i64 - %18 = ptrtoint %struct.Job* %16 to i64 - %19 = sub i64 %17, %18 - %20 = sdiv exact i64 %19, 12 - %21 = icmp sgt i64 %20, 16 - br i1 %21, label %22, label %51 - -22: ; preds = %14 - %23 = load i64, i64* %8, align 8 - %24 = icmp eq i64 %23, 0 - br i1 %24, label %25, label %33 - -25: ; preds = %22 - %26 = load %struct.Job*, %struct.Job** %6, align 8 - %27 = load %struct.Job*, %struct.Job** %7, align 8 - %28 = load %struct.Job*, %struct.Job** %7, align 8 - %29 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %30 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %29, i8* align 8 %30, i64 8, i1 false) - %31 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %32 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %31, align 8 - call void @_ZSt14__partial_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_(%struct.Job* noundef %26, %struct.Job* noundef %27, %struct.Job* noundef %28, i1 (i64, i32, i64, i32)* %32) - br label %51 - -33: ; preds = %22 - %34 = load i64, i64* %8, align 8 - %35 = add nsw i64 %34, -1 - store i64 %35, i64* %8, align 8 - %36 = load %struct.Job*, %struct.Job** %6, align 8 - %37 = load %struct.Job*, %struct.Job** %7, align 8 - %38 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %39 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %38, i8* align 8 %39, i64 8, i1 false) - %40 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %41 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %40, align 8 - %42 = call 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 - %45 = load i64, i64* %8, align 8 - %46 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %12 to i8* - %47 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %46, i8* align 8 %47, i64 8, i1 false) - %48 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %12, i32 0, i32 0 - %49 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %48, align 8 - call void @_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_T1_(%struct.Job* 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 !9 - -51: ; preds = %25, %14 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt4__lgIlET_S0_(i64 noundef %0) #0 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = call noundef i32 @_ZSt11__bit_widthImEiT_(i64 noundef %3) #11 - %5 = sub nsw i32 %4, 1 - %6 = sext i32 %5 to i64 - ret i64 %6 -} - -; 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) #2 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %2, i1 (i64, i32, i64, i32)** %10, align 8 - store %struct.Job* %0, %struct.Job** %5, align 8 - store %struct.Job* %1, %struct.Job** %6, align 8 - %11 = load %struct.Job*, %struct.Job** %6, align 8 - %12 = load %struct.Job*, %struct.Job** %5, align 8 - %13 = ptrtoint %struct.Job* %11 to i64 - %14 = ptrtoint %struct.Job* %12 to i64 - %15 = sub i64 %13, %14 - %16 = sdiv exact i64 %15, 12 - %17 = icmp sgt i64 %16, 16 - br i1 %17, label %18, label %33 - -18: ; preds = %3 - %19 = load %struct.Job*, %struct.Job** %5, align 8 - %20 = load %struct.Job*, %struct.Job** %5, align 8 - %21 = getelementptr inbounds %struct.Job, %struct.Job* %20, i64 16 - %22 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7 to i8* - %23 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %22, i8* align 8 %23, i64 8, i1 false) - %24 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %25 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %24, align 8 - call void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* 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 - %29 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8 to i8* - %30 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %29, i8* align 8 %30, i64 8, i1 false) - %31 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8, i32 0, i32 0 - %32 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %31, align 8 - call void @_ZSt26__unguarded_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* noundef %27, %struct.Job* noundef %28, i1 (i64, i32, i64, i32)* %32) - br label %40 - -33: ; preds = %3 - %34 = load %struct.Job*, %struct.Job** %5, align 8 - %35 = load %struct.Job*, %struct.Job** %6, align 8 - %36 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %37 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %36, i8* align 8 %37, i64 8, i1 false) - %38 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %39 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %38, align 8 - call void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* noundef %34, %struct.Job* noundef %35, i1 (i64, i32, i64, i32)* %39) - br label %40 - -40: ; preds = %33, %18 - ret void -} - -; 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) #2 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %struct.Job*, align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %3, i1 (i64, i32, i64, i32)** %10, align 8 - store %struct.Job* %0, %struct.Job** %6, align 8 - store %struct.Job* %1, %struct.Job** %7, align 8 - store %struct.Job* %2, %struct.Job** %8, align 8 - %11 = load %struct.Job*, %struct.Job** %6, align 8 - %12 = load %struct.Job*, %struct.Job** %7, align 8 - %13 = load %struct.Job*, %struct.Job** %8, align 8 - %14 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %15 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %14, i8* align 8 %15, i64 8, i1 false) - %16 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %17 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %16, align 8 - call void @_ZSt13__heap_selectIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_(%struct.Job* 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* noundef %18, %struct.Job* noundef %19, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %5) - ret void -} - -; 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) #2 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %2, i1 (i64, i32, i64, i32)** %10, align 8 - store %struct.Job* %0, %struct.Job** %5, align 8 - store %struct.Job* %1, %struct.Job** %6, align 8 - %11 = load %struct.Job*, %struct.Job** %5, align 8 - %12 = load %struct.Job*, %struct.Job** %6, align 8 - %13 = load %struct.Job*, %struct.Job** %5, align 8 - %14 = ptrtoint %struct.Job* %12 to i64 - %15 = ptrtoint %struct.Job* %13 to i64 - %16 = sub i64 %14, %15 - %17 = sdiv exact i64 %16, 12 - %18 = sdiv i64 %17, 2 - %19 = getelementptr inbounds %struct.Job, %struct.Job* %11, i64 %18 - store %struct.Job* %19, %struct.Job** %7, align 8 - %20 = load %struct.Job*, %struct.Job** %5, align 8 - %21 = load %struct.Job*, %struct.Job** %5, align 8 - %22 = getelementptr inbounds %struct.Job, %struct.Job* %21, i64 1 - %23 = load %struct.Job*, %struct.Job** %7, align 8 - %24 = load %struct.Job*, %struct.Job** %6, align 8 - %25 = getelementptr inbounds %struct.Job, %struct.Job* %24, i64 -1 - %26 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8 to i8* - %27 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %26, i8* align 8 %27, i64 8, i1 false) - %28 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8, i32 0, i32 0 - %29 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %28, align 8 - call void @_ZSt22__move_median_to_firstIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_S8_T0_(%struct.Job* 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 - %33 = load %struct.Job*, %struct.Job** %5, align 8 - %34 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %35 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %34, i8* align 8 %35, i64 8, i1 false) - %36 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %37 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %36, align 8 - %38 = call 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: 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) #2 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %struct.Job*, align 8 - %9 = alloca %struct.Job*, align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %3, i1 (i64, i32, i64, i32)** %10, align 8 - store %struct.Job* %0, %struct.Job** %6, align 8 - store %struct.Job* %1, %struct.Job** %7, align 8 - store %struct.Job* %2, %struct.Job** %8, align 8 - %11 = load %struct.Job*, %struct.Job** %6, align 8 - %12 = load %struct.Job*, %struct.Job** %7, align 8 - call void @_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_(%struct.Job* 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 - -14: ; preds = %27, %4 - %15 = load %struct.Job*, %struct.Job** %9, align 8 - %16 = load %struct.Job*, %struct.Job** %8, align 8 - %17 = icmp ult %struct.Job* %15, %16 - br i1 %17, label %18, label %30 - -18: ; preds = %14 - %19 = load %struct.Job*, %struct.Job** %9, align 8 - %20 = load %struct.Job*, %struct.Job** %6, align 8 - %21 = call 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* 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 - br label %27 - -27: ; preds = %26 - %28 = load %struct.Job*, %struct.Job** %9, align 8 - %29 = getelementptr inbounds %struct.Job, %struct.Job* %28, i32 1 - store %struct.Job* %29, %struct.Job** %9, align 8 - br label %14, !llvm.loop !10 - -30: ; preds = %14 - ret void -} - -; 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) #2 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - br label %7 - -7: ; preds = %15, %3 - %8 = load %struct.Job*, %struct.Job** %5, align 8 - %9 = load %struct.Job*, %struct.Job** %4, align 8 - %10 = ptrtoint %struct.Job* %8 to i64 - %11 = ptrtoint %struct.Job* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 12 - %14 = icmp sgt i64 %13, 1 - br i1 %14, label %15, label %22 - -15: ; preds = %7 - %16 = load %struct.Job*, %struct.Job** %5, align 8 - %17 = getelementptr inbounds %struct.Job, %struct.Job* %16, i32 -1 - store %struct.Job* %17, %struct.Job** %5, align 8 - %18 = load %struct.Job*, %struct.Job** %4, align 8 - %19 = load %struct.Job*, %struct.Job** %5, align 8 - %20 = load %struct.Job*, %struct.Job** %5, align 8 - %21 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - call void @_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_RT0_(%struct.Job* 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: 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) #2 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca %struct.Job, align 4 - %10 = alloca %struct.Job, align 4 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %12 = alloca { i64, i32 }, align 4 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %13 = load %struct.Job*, %struct.Job** %5, align 8 - %14 = load %struct.Job*, %struct.Job** %4, align 8 - %15 = ptrtoint %struct.Job* %13 to i64 - %16 = ptrtoint %struct.Job* %14 to i64 - %17 = sub i64 %15, %16 - %18 = sdiv exact i64 %17, 12 - %19 = icmp slt i64 %18, 2 - br i1 %19, label %20, label %21 - -20: ; preds = %3 - br label %61 - -21: ; preds = %3 - %22 = load %struct.Job*, %struct.Job** %5, align 8 - %23 = load %struct.Job*, %struct.Job** %4, align 8 - %24 = ptrtoint %struct.Job* %22 to i64 - %25 = ptrtoint %struct.Job* %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 12 - store i64 %27, i64* %7, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub nsw i64 %28, 2 - %30 = sdiv i64 %29, 2 - store i64 %30, i64* %8, align 8 - br label %31 - -31: ; preds = %21, %58 - %32 = load %struct.Job*, %struct.Job** %4, align 8 - %33 = load i64, i64* %8, align 8 - %34 = getelementptr inbounds %struct.Job, %struct.Job* %32, i64 %33 - %35 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %34) #11 - %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 noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %9) #11 - %42 = bitcast %struct.Job* %10 to i8* - %43 = bitcast %struct.Job* %41 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %42, i8* align 4 %43, i64 12, i1 false) - %44 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %45 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %46 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %44 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %45, i8* align 8 %46, i64 8, i1 false) - %47 = bitcast { i64, i32 }* %12 to i8* - %48 = bitcast %struct.Job* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %47, i8* align 4 %48, i64 12, i1 false) - %49 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 0 - %50 = load i64, i64* %49, align 4 - %51 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 1 - %52 = load i32, i32* %51, align 4 - %53 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %54 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %53, align 8 - call void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.Job* 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 - -57: ; preds = %31 - br label %61 - -58: ; preds = %31 - %59 = load i64, i64* %8, align 8 - %60 = add nsw i64 %59, -1 - store i64 %60, i64* %8, align 8 - br label %31, !llvm.loop !12 - -61: ; preds = %57, %20 - ret void -} - -; 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) #2 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job, align 4 - %8 = alloca %struct.Job, align 4 - %9 = alloca { i64, i32 }, align 4 - %10 = alloca { i64, i32 }, align 4 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %11 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %13 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %12, align 8 - %14 = load %struct.Job*, %struct.Job** %5, align 8 - %15 = bitcast %struct.Job* %7 to i8* - %16 = bitcast %struct.Job* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.Job*, %struct.Job** %6, align 8 - %18 = bitcast %struct.Job* %8 to i8* - %19 = bitcast %struct.Job* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %19, i64 12, i1 false) - %20 = bitcast { i64, i32 }* %9 to i8* - %21 = bitcast %struct.Job* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 0 - %23 = load i64, i64* %22, align 4 - %24 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - %26 = bitcast { i64, i32 }* %10 to i8* - %27 = bitcast %struct.Job* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %26, i8* align 4 %27, i64 12, i1 false) - %28 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 0 - %29 = load i64, i64* %28, align 4 - %30 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 1 - %31 = load i32, i32* %30, align 4 - %32 = call noundef zeroext i1 %13(i64 %23, i32 %25, i64 %29, i32 %31) - ret i1 %32 -} - -; 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) #2 comdat { - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %9 = alloca %struct.Job, align 4 - %10 = alloca %struct.Job, align 4 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %12 = alloca { i64, i32 }, align 4 - store %struct.Job* %0, %struct.Job** %5, align 8 - store %struct.Job* %1, %struct.Job** %6, align 8 - store %struct.Job* %2, %struct.Job** %7, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %8, align 8 - %13 = load %struct.Job*, %struct.Job** %7, align 8 - %14 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %13) #11 - %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 noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %17) #11 - %19 = load %struct.Job*, %struct.Job** %7, align 8 - %20 = bitcast %struct.Job* %19 to i8* - %21 = bitcast %struct.Job* %18 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = load %struct.Job*, %struct.Job** %5, align 8 - %23 = load %struct.Job*, %struct.Job** %6, align 8 - %24 = load %struct.Job*, %struct.Job** %5, align 8 - %25 = ptrtoint %struct.Job* %23 to i64 - %26 = ptrtoint %struct.Job* %24 to i64 - %27 = sub i64 %25, %26 - %28 = sdiv exact i64 %27, 12 - %29 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %9) #11 - %30 = bitcast %struct.Job* %10 to i8* - %31 = bitcast %struct.Job* %29 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %30, i8* align 4 %31, i64 12, i1 false) - %32 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %8, align 8 - %33 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %34 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %32 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %33, i8* align 8 %34, i64 8, i1 false) - %35 = bitcast { i64, i32 }* %12 to i8* - %36 = bitcast %struct.Job* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %35, i8* align 4 %36, i64 12, i1 false) - %37 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 0 - %38 = load i64, i64* %37, align 4 - %39 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 1 - %40 = load i32, i32* %39, align 4 - %41 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %42 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %41, align 8 - call void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.Job* noundef %22, i64 noundef 0, i64 noundef %28, i64 %38, i32 %40, i1 (i64, i32, i64, i32)* %42) - ret void -} - -; 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) #0 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: 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) #2 comdat { - %7 = alloca %struct.Job, align 4 - %8 = alloca { i64, i32 }, align 4 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = alloca %struct.Job*, align 8 - %11 = alloca i64, align 8 - %12 = alloca i64, align 8 - %13 = alloca i64, align 8 - %14 = alloca i64, align 8 - %15 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val", align 8 - %16 = alloca %struct.Job, align 4 - %17 = alloca { i64, i32 }, align 4 - %18 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 0 - store i64 %3, i64* %18, align 4 - %19 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 1 - store i32 %4, i32* %19, align 4 - %20 = bitcast %struct.Job* %7 to i8* - %21 = bitcast { i64, i32 }* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %5, i1 (i64, i32, i64, i32)** %22, align 8 - store %struct.Job* %0, %struct.Job** %10, align 8 - store i64 %1, i64* %11, align 8 - store i64 %2, i64* %12, align 8 - %23 = load i64, i64* %11, align 8 - store i64 %23, i64* %13, align 8 - %24 = load i64, i64* %11, align 8 - store i64 %24, i64* %14, align 8 - br label %25 - -25: ; preds = %46, %6 - %26 = load i64, i64* %14, align 8 - %27 = load i64, i64* %12, align 8 - %28 = sub nsw i64 %27, 1 - %29 = sdiv i64 %28, 2 - %30 = icmp slt i64 %26, %29 - br i1 %30, label %31, label %57 - -31: ; preds = %25 - %32 = load i64, i64* %14, align 8 - %33 = add nsw i64 %32, 1 - %34 = mul nsw i64 2, %33 - store i64 %34, i64* %14, align 8 - %35 = load %struct.Job*, %struct.Job** %10, align 8 - %36 = load i64, i64* %14, align 8 - %37 = getelementptr inbounds %struct.Job, %struct.Job* %35, i64 %36 - %38 = load %struct.Job*, %struct.Job** %10, align 8 - %39 = load i64, i64* %14, align 8 - %40 = sub nsw i64 %39, 1 - %41 = getelementptr inbounds %struct.Job, %struct.Job* %38, i64 %40 - %42 = call 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 - %44 = load i64, i64* %14, align 8 - %45 = add nsw i64 %44, -1 - store i64 %45, i64* %14, align 8 - br label %46 - -46: ; preds = %43, %31 - %47 = load %struct.Job*, %struct.Job** %10, align 8 - %48 = load i64, i64* %14, align 8 - %49 = getelementptr inbounds %struct.Job, %struct.Job* %47, i64 %48 - %50 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %49) #11 - %51 = load %struct.Job*, %struct.Job** %10, align 8 - %52 = load i64, i64* %11, align 8 - %53 = getelementptr inbounds %struct.Job, %struct.Job* %51, i64 %52 - %54 = bitcast %struct.Job* %53 to i8* - %55 = bitcast %struct.Job* %50 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %54, i8* align 4 %55, i64 12, i1 false) - %56 = load i64, i64* %14, align 8 - store i64 %56, i64* %11, align 8 - br label %25, !llvm.loop !13 - -57: ; preds = %25 - %58 = load i64, i64* %12, align 8 - %59 = and i64 %58, 1 - %60 = icmp eq i64 %59, 0 - br i1 %60, label %61, label %83 - -61: ; preds = %57 - %62 = load i64, i64* %14, align 8 - %63 = load i64, i64* %12, align 8 - %64 = sub nsw i64 %63, 2 - %65 = sdiv i64 %64, 2 - %66 = icmp eq i64 %62, %65 - br i1 %66, label %67, label %83 - -67: ; preds = %61 - %68 = load i64, i64* %14, align 8 - %69 = add nsw i64 %68, 1 - %70 = mul nsw i64 2, %69 - store i64 %70, i64* %14, align 8 - %71 = load %struct.Job*, %struct.Job** %10, align 8 - %72 = load i64, i64* %14, align 8 - %73 = sub nsw i64 %72, 1 - %74 = getelementptr inbounds %struct.Job, %struct.Job* %71, i64 %73 - %75 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %74) #11 - %76 = load %struct.Job*, %struct.Job** %10, align 8 - %77 = load i64, i64* %11, align 8 - %78 = getelementptr inbounds %struct.Job, %struct.Job* %76, i64 %77 - %79 = bitcast %struct.Job* %78 to i8* - %80 = bitcast %struct.Job* %75 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %79, i8* align 4 %80, i64 12, i1 false) - %81 = load i64, i64* %14, align 8 - %82 = sub nsw i64 %81, 1 - store i64 %82, i64* %11, align 8 - br label %83 - -83: ; preds = %67, %61, %57 - %84 = call 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) #11 - 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 noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %7) #11 - %89 = bitcast %struct.Job* %16 to i8* - %90 = bitcast %struct.Job* %88 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %89, i8* align 4 %90, i64 12, i1 false) - %91 = bitcast { i64, i32 }* %17 to i8* - %92 = bitcast %struct.Job* %16 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %91, i8* align 4 %92, i64 12, i1 false) - %93 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %17, i32 0, i32 0 - %94 = load i64, i64* %93, align 4 - %95 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %17, i32 0, i32 1 - %96 = load i32, i32* %95, align 4 - call void @_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFbS0_S0_EEEEvT_T0_S9_T1_RT2_(%struct.Job* 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: 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) #0 comdat { - %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %2, align 8 - ret %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* 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 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %5 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %3, align 8 - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %5, i32 0, i32 0 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %9 = call 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) #11 - %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: 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) #2 comdat { - %7 = alloca %struct.Job, align 4 - %8 = alloca { i64, i32 }, align 4 - %9 = alloca %struct.Job*, align 8 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %13 = alloca i64, align 8 - %14 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 0 - store i64 %3, i64* %14, align 4 - %15 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 1 - store i32 %4, i32* %15, align 4 - %16 = bitcast %struct.Job* %7 to i8* - %17 = bitcast { i64, i32 }* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %16, i8* align 4 %17, i64 12, i1 false) - store %struct.Job* %0, %struct.Job** %9, align 8 - store i64 %1, i64* %10, align 8 - store i64 %2, i64* %11, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %5, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %12, align 8 - %18 = load i64, i64* %10, align 8 - %19 = sub nsw i64 %18, 1 - %20 = sdiv i64 %19, 2 - store i64 %20, i64* %13, align 8 - br label %21 - -21: ; preds = %33, %6 - %22 = load i64, i64* %10, align 8 - %23 = load i64, i64* %11, align 8 - %24 = icmp sgt i64 %22, %23 - br i1 %24, label %25, label %31 - -25: ; preds = %21 - %26 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %12, align 8 - %27 = load %struct.Job*, %struct.Job** %9, align 8 - %28 = load i64, i64* %13, align 8 - %29 = getelementptr inbounds %struct.Job, %struct.Job* %27, i64 %28 - %30 = call 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 - %32 = phi i1 [ false, %21 ], [ %30, %25 ] - br i1 %32, label %33, label %47 - -33: ; preds = %31 - %34 = load %struct.Job*, %struct.Job** %9, align 8 - %35 = load i64, i64* %13, align 8 - %36 = getelementptr inbounds %struct.Job, %struct.Job* %34, i64 %35 - %37 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %36) #11 - %38 = load %struct.Job*, %struct.Job** %9, align 8 - %39 = load i64, i64* %10, align 8 - %40 = getelementptr inbounds %struct.Job, %struct.Job* %38, i64 %39 - %41 = bitcast %struct.Job* %40 to i8* - %42 = bitcast %struct.Job* %37 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %41, i8* align 4 %42, i64 12, i1 false) - %43 = load i64, i64* %13, align 8 - store i64 %43, i64* %10, align 8 - %44 = load i64, i64* %10, align 8 - %45 = sub nsw i64 %44, 1 - %46 = sdiv i64 %45, 2 - store i64 %46, i64* %13, align 8 - br label %21, !llvm.loop !14 - -47: ; preds = %31 - %48 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %7) #11 - %49 = load %struct.Job*, %struct.Job** %9, align 8 - %50 = load i64, i64* %10, align 8 - %51 = getelementptr inbounds %struct.Job, %struct.Job* %49, i64 %50 - %52 = bitcast %struct.Job* %51 to i8* - %53 = bitcast %struct.Job* %48 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %52, i8* align 4 %53, i64 12, i1 false) - ret void -} - -; Function Attrs: 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) #0 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: 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) #2 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job, align 4 - %8 = alloca %struct.Job, align 4 - %9 = alloca { i64, i32 }, align 4 - %10 = alloca { i64, i32 }, align 4 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %11 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %4, align 8 - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %11, i32 0, i32 0 - %13 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %12, align 8 - %14 = load %struct.Job*, %struct.Job** %5, align 8 - %15 = bitcast %struct.Job* %7 to i8* - %16 = bitcast %struct.Job* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.Job*, %struct.Job** %6, align 8 - %18 = bitcast %struct.Job* %8 to i8* - %19 = bitcast %struct.Job* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %19, i64 12, i1 false) - %20 = bitcast { i64, i32 }* %9 to i8* - %21 = bitcast %struct.Job* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 0 - %23 = load i64, i64* %22, align 4 - %24 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - %26 = bitcast { i64, i32 }* %10 to i8* - %27 = bitcast %struct.Job* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %26, i8* align 4 %27, i64 12, i1 false) - %28 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 0 - %29 = load i64, i64* %28, align 4 - %30 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 1 - %31 = load i32, i32* %30, align 4 - %32 = call noundef zeroext i1 %13(i64 %23, i32 %25, i64 %29, i32 %31) - ret i1 %32 -} - -; 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) #2 comdat { - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %struct.Job*, align 8 - %9 = alloca %struct.Job*, align 8 - %10 = alloca %struct.Job*, align 8 - %11 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %6, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %4, i1 (i64, i32, i64, i32)** %11, align 8 - store %struct.Job* %0, %struct.Job** %7, align 8 - store %struct.Job* %1, %struct.Job** %8, align 8 - store %struct.Job* %2, %struct.Job** %9, align 8 - store %struct.Job* %3, %struct.Job** %10, align 8 - %12 = load %struct.Job*, %struct.Job** %8, align 8 - %13 = load %struct.Job*, %struct.Job** %9, align 8 - %14 = call 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 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* 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 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* 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* noundef %30, %struct.Job* noundef %31) - br label %32 - -32: ; preds = %29, %26 - br label %33 - -33: ; preds = %32, %19 - br label %53 - -34: ; preds = %5 - %35 = load %struct.Job*, %struct.Job** %8, align 8 - %36 = load %struct.Job*, %struct.Job** %10, align 8 - %37 = call 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* 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 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* 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* noundef %49, %struct.Job* noundef %50) - br label %51 - -51: ; preds = %48, %45 - br label %52 - -52: ; preds = %51, %38 - br label %53 - -53: ; preds = %52, %33 - ret void -} - -; Function Attrs: 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) #2 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %struct.Job*, align 8 - %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %3, i1 (i64, i32, i64, i32)** %9, align 8 - store %struct.Job* %0, %struct.Job** %6, align 8 - store %struct.Job* %1, %struct.Job** %7, align 8 - store %struct.Job* %2, %struct.Job** %8, align 8 - br label %10 - -10: ; preds = %4, %34 - br label %11 - -11: ; preds = %15, %10 - %12 = load %struct.Job*, %struct.Job** %6, align 8 - %13 = load %struct.Job*, %struct.Job** %8, align 8 - %14 = call 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 !15 - -18: ; preds = %11 - %19 = load %struct.Job*, %struct.Job** %7, align 8 - %20 = getelementptr inbounds %struct.Job, %struct.Job* %19, i32 -1 - store %struct.Job* %20, %struct.Job** %7, align 8 - br label %21 - -21: ; preds = %25, %18 - %22 = load %struct.Job*, %struct.Job** %8, align 8 - %23 = load %struct.Job*, %struct.Job** %7, align 8 - %24 = call 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 !16 - -28: ; preds = %21 - %29 = load %struct.Job*, %struct.Job** %6, align 8 - %30 = load %struct.Job*, %struct.Job** %7, align 8 - %31 = icmp ult %struct.Job* %29, %30 - br i1 %31, label %34, label %32 - -32: ; preds = %28 - %33 = load %struct.Job*, %struct.Job** %6, align 8 - ret %struct.Job* %33 - -34: ; preds = %28 - %35 = load %struct.Job*, %struct.Job** %6, align 8 - %36 = load %struct.Job*, %struct.Job** %7, align 8 - call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* 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, !llvm.loop !17 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* noundef %0, %struct.Job* noundef %1) #0 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* noundef nonnull align 4 dereferenceable(12) %5, %struct.Job* noundef nonnull align 4 dereferenceable(12) %6) #11 - ret void -} - -; 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) #0 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 noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %6) #11 - %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 noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %10) #11 - %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 noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %5) #11 - %16 = load %struct.Job*, %struct.Job** %4, align 8 - %17 = bitcast %struct.Job* %16 to i8* - %18 = bitcast %struct.Job* %15 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %17, i8* align 4 %18, i64 12, i1 false) - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32 @_ZSt11__bit_widthImEiT_(i64 noundef %0) #0 comdat { - %2 = alloca i64, align 8 - %3 = alloca i32, align 4 - store i64 %0, i64* %2, align 8 - store i32 64, i32* %3, align 4 - %4 = load i64, i64* %2, align 8 - %5 = call noundef i32 @_ZSt13__countl_zeroImEiT_(i64 noundef %4) #11 - %6 = sub nsw i32 64, %5 - ret i32 %6 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32 @_ZSt13__countl_zeroImEiT_(i64 noundef %0) #0 comdat { - %2 = alloca i32, align 4 - %3 = alloca i64, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i64 %0, i64* %3, align 8 - store i32 64, i32* %4, align 4 - %9 = load i64, i64* %3, align 8 - %10 = icmp eq i64 %9, 0 - br i1 %10, label %11, label %12 - -11: ; preds = %1 - store i32 64, i32* %2, align 4 - br label %17 - -12: ; preds = %1 - store i32 64, i32* %5, align 4 - store i32 64, i32* %6, align 4 - store i32 32, i32* %7, align 4 - store i32 0, i32* %8, align 4 - %13 = load i64, i64* %3, align 8 - %14 = call i64 @llvm.ctlz.i64(i64 %13, i1 true) - %15 = trunc i64 %14 to i32 - %16 = sub nsw i32 %15, 0 - store i32 %16, i32* %2, align 4 - br label %17 - -17: ; preds = %12, %11 - %18 = load i32, i32* %2, align 4 - ret i32 %18 -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare i64 @llvm.ctlz.i64(i64, i1 immarg) #3 - -; 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) #2 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %struct.Job, align 4 - %9 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %11 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %2, i1 (i64, i32, i64, i32)** %11, align 8 - store %struct.Job* %0, %struct.Job** %5, align 8 - store %struct.Job* %1, %struct.Job** %6, align 8 - %12 = load %struct.Job*, %struct.Job** %5, align 8 - %13 = load %struct.Job*, %struct.Job** %6, align 8 - %14 = icmp eq %struct.Job* %12, %13 - br i1 %14, label %15, label %16 - -15: ; preds = %3 - br label %55 - -16: ; preds = %3 - %17 = load %struct.Job*, %struct.Job** %5, align 8 - %18 = getelementptr inbounds %struct.Job, %struct.Job* %17, i64 1 - store %struct.Job* %18, %struct.Job** %7, align 8 - br label %19 - -19: ; preds = %52, %16 - %20 = load %struct.Job*, %struct.Job** %7, align 8 - %21 = load %struct.Job*, %struct.Job** %6, align 8 - %22 = icmp ne %struct.Job* %20, %21 - br i1 %22, label %23, label %55 - -23: ; preds = %19 - %24 = load %struct.Job*, %struct.Job** %7, align 8 - %25 = load %struct.Job*, %struct.Job** %5, align 8 - %26 = call 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 noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %28) #11 - %30 = bitcast %struct.Job* %8 to i8* - %31 = bitcast %struct.Job* %29 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %30, i8* align 4 %31, i64 12, i1 false) - %32 = load %struct.Job*, %struct.Job** %5, align 8 - %33 = load %struct.Job*, %struct.Job** %7, align 8 - %34 = load %struct.Job*, %struct.Job** %7, align 8 - %35 = getelementptr inbounds %struct.Job, %struct.Job* %34, i64 1 - %36 = call 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) #11 - %38 = load %struct.Job*, %struct.Job** %5, align 8 - %39 = bitcast %struct.Job* %38 to i8* - %40 = bitcast %struct.Job* %37 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %39, i8* align 4 %40, i64 12, i1 false) - br label %51 - -41: ; preds = %23 - %42 = load %struct.Job*, %struct.Job** %7, align 8 - %43 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %10 to i8* - %44 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %43, i8* align 8 %44, i64 8, i1 false) - %45 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %10, i32 0, i32 0 - %46 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %45, align 8 - %47 = call i1 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFb3JobS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(i1 (i64, i32, i64, i32)* %46) - %48 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %9, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %47, i1 (i64, i32, i64, i32)** %48, align 8 - %49 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %9, i32 0, i32 0 - %50 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %49, align 8 - call void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_(%struct.Job* noundef %42, i1 (i64, i32, i64, i32)* %50) - br label %51 - -51: ; preds = %41, %27 - br label %52 - -52: ; preds = %51 - %53 = load %struct.Job*, %struct.Job** %7, align 8 - %54 = getelementptr inbounds %struct.Job, %struct.Job* %53, i32 1 - store %struct.Job* %54, %struct.Job** %7, align 8 - br label %19, !llvm.loop !18 - -55: ; preds = %15, %19 - ret void -} - -; 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) #2 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %2, i1 (i64, i32, i64, i32)** %10, align 8 - store %struct.Job* %0, %struct.Job** %5, align 8 - store %struct.Job* %1, %struct.Job** %6, align 8 - %11 = load %struct.Job*, %struct.Job** %5, align 8 - store %struct.Job* %11, %struct.Job** %7, align 8 - br label %12 - -12: ; preds = %26, %3 - %13 = load %struct.Job*, %struct.Job** %7, align 8 - %14 = load %struct.Job*, %struct.Job** %6, align 8 - %15 = icmp ne %struct.Job* %13, %14 - br i1 %15, label %16, label %29 - -16: ; preds = %12 - %17 = load %struct.Job*, %struct.Job** %7, align 8 - %18 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %19 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %19, i64 8, i1 false) - %20 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %21 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %20, align 8 - %22 = call i1 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFb3JobS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(i1 (i64, i32, i64, i32)* %21) - %23 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %8, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %22, i1 (i64, i32, i64, i32)** %23, align 8 - %24 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %8, i32 0, i32 0 - %25 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %24, align 8 - call void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_(%struct.Job* 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 !19 - -29: ; preds = %12 - ret void -} - -; 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) #2 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %7 = load %struct.Job*, %struct.Job** %4, align 8 - %8 = call noundef %struct.Job* @_ZSt12__miter_baseIP3JobET_S2_(%struct.Job* noundef %7) - %9 = load %struct.Job*, %struct.Job** %5, align 8 - %10 = call noundef %struct.Job* @_ZSt12__miter_baseIP3JobET_S2_(%struct.Job* noundef %9) - %11 = load %struct.Job*, %struct.Job** %6, align 8 - %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: 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) #2 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job, align 4 - %6 = alloca %struct.Job*, align 8 - %7 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %3, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %1, i1 (i64, i32, i64, i32)** %7, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - %8 = load %struct.Job*, %struct.Job** %4, align 8 - %9 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %8) #11 - %10 = bitcast %struct.Job* %5 to i8* - %11 = bitcast %struct.Job* %9 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %10, i8* align 4 %11, i64 12, i1 false) - %12 = load %struct.Job*, %struct.Job** %4, align 8 - store %struct.Job* %12, %struct.Job** %6, align 8 - %13 = load %struct.Job*, %struct.Job** %6, align 8 - %14 = getelementptr inbounds %struct.Job, %struct.Job* %13, i32 -1 - store %struct.Job* %14, %struct.Job** %6, align 8 - br label %15 - -15: ; preds = %18, %2 - %16 = load %struct.Job*, %struct.Job** %6, align 8 - %17 = call 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 noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %19) #11 - %21 = load %struct.Job*, %struct.Job** %4, align 8 - %22 = bitcast %struct.Job* %21 to i8* - %23 = bitcast %struct.Job* %20 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %22, i8* align 4 %23, i64 12, i1 false) - %24 = load %struct.Job*, %struct.Job** %6, align 8 - store %struct.Job* %24, %struct.Job** %4, align 8 - %25 = load %struct.Job*, %struct.Job** %6, align 8 - %26 = getelementptr inbounds %struct.Job, %struct.Job* %25, i32 -1 - store %struct.Job* %26, %struct.Job** %6, align 8 - br label %15, !llvm.loop !20 - -27: ; preds = %15 - %28 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %5) #11 - %29 = load %struct.Job*, %struct.Job** %4, align 8 - %30 = bitcast %struct.Job* %29 to i8* - %31 = bitcast %struct.Job* %28 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %30, i8* align 4 %31, i64 12, i1 false) - ret void -} - -; Function Attrs: 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) #2 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 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) #11 - 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: 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) #2 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %7 = load %struct.Job*, %struct.Job** %4, align 8 - %8 = call noundef %struct.Job* @_ZSt12__niter_baseIP3JobET_S2_(%struct.Job* noundef %7) #11 - %9 = load %struct.Job*, %struct.Job** %5, align 8 - %10 = call noundef %struct.Job* @_ZSt12__niter_baseIP3JobET_S2_(%struct.Job* noundef %9) #11 - %11 = load %struct.Job*, %struct.Job** %6, align 8 - %12 = call noundef %struct.Job* @_ZSt12__niter_baseIP3JobET_S2_(%struct.Job* noundef %11) #11 - %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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef %struct.Job* @_ZSt12__miter_baseIP3JobET_S2_(%struct.Job* noundef %0) #0 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: 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) #0 comdat { - %3 = alloca %struct.Job**, align 8 - %4 = alloca %struct.Job*, align 8 - store %struct.Job** %0, %struct.Job*** %3, align 8 - store %struct.Job* %1, %struct.Job** %4, align 8 - %5 = load %struct.Job*, %struct.Job** %4, align 8 - ret %struct.Job* %5 -} - -; Function Attrs: 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) #2 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %7 = load %struct.Job*, %struct.Job** %4, align 8 - %8 = load %struct.Job*, %struct.Job** %5, align 8 - %9 = load %struct.Job*, %struct.Job** %6, align 8 - %10 = call 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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef %struct.Job* @_ZSt12__niter_baseIP3JobET_S2_(%struct.Job* noundef %0) #0 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: 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) #2 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %7 = load %struct.Job*, %struct.Job** %4, align 8 - %8 = load %struct.Job*, %struct.Job** %5, align 8 - %9 = load %struct.Job*, %struct.Job** %6, align 8 - %10 = call noundef %struct.Job* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI3JobS3_EEPT0_PT_S7_S5_(%struct.Job* noundef %7, %struct.Job* noundef %8, %struct.Job* noundef %9) - ret %struct.Job* %10 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef %struct.Job* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI3JobS3_EEPT0_PT_S7_S5_(%struct.Job* noundef %0, %struct.Job* noundef %1, %struct.Job* noundef %2) #2 comdat align 2 { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca i64, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %8 = load %struct.Job*, %struct.Job** %5, align 8 - %9 = load %struct.Job*, %struct.Job** %4, align 8 - %10 = ptrtoint %struct.Job* %8 to i64 - %11 = ptrtoint %struct.Job* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 12 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp sgt i64 %14, 1 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load %struct.Job*, %struct.Job** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds %struct.Job, %struct.Job* %17, i64 %19 - %21 = bitcast %struct.Job* %20 to i8* - %22 = load %struct.Job*, %struct.Job** %4, align 8 - %23 = bitcast %struct.Job* %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 12, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %21, i8* align 4 %23, i64 %25, i1 false) - br label %34 - -26: ; preds = %3 - %27 = load i64, i64* %7, align 8 - %28 = icmp eq i64 %27, 1 - br i1 %28, label %29, label %33 - -29: ; preds = %26 - %30 = load %struct.Job*, %struct.Job** %6, align 8 - %31 = getelementptr inbounds %struct.Job, %struct.Job* %30, i64 -1 - %32 = load %struct.Job*, %struct.Job** %4, align 8 - call void @_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneI3JobS3_EEvPT_PT0_(%struct.Job* noundef %31, %struct.Job* noundef %32) - br label %33 - -33: ; preds = %29, %26 - br label %34 - -34: ; preds = %33, %16 - %35 = load %struct.Job*, %struct.Job** %6, align 8 - %36 = load i64, i64* %7, align 8 - %37 = sub i64 0, %36 - %38 = getelementptr inbounds %struct.Job, %struct.Job* %35, i64 %37 - ret %struct.Job* %38 -} - -; Function Attrs: argmemonly nofree nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneI3JobS3_EEvPT_PT0_(%struct.Job* noundef %0, %struct.Job* noundef %1) #0 comdat align 2 { - %3 = alloca %struct.Job*, align 8 - %4 = alloca %struct.Job*, align 8 - store %struct.Job* %0, %struct.Job** %3, align 8 - store %struct.Job* %1, %struct.Job** %4, align 8 - %5 = load %struct.Job*, %struct.Job** %4, align 8 - %6 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %5) #11 - %7 = load %struct.Job*, %struct.Job** %3, align 8 - %8 = bitcast %struct.Job* %7 to i8* - %9 = bitcast %struct.Job* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %8, i8* align 4 %9, i64 12, i1 false) - ret void -} - -; 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) #2 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job, align 4 - %8 = alloca %struct.Job, align 4 - %9 = alloca { i64, i32 }, align 4 - %10 = alloca { i64, i32 }, align 4 - store %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %11 = load %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %4, align 8 - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %11, i32 0, i32 0 - %13 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %12, align 8 - %14 = load %struct.Job*, %struct.Job** %5, align 8 - %15 = bitcast %struct.Job* %7 to i8* - %16 = bitcast %struct.Job* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.Job*, %struct.Job** %6, align 8 - %18 = bitcast %struct.Job* %8 to i8* - %19 = bitcast %struct.Job* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %19, i64 12, i1 false) - %20 = bitcast { i64, i32 }* %9 to i8* - %21 = bitcast %struct.Job* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 0 - %23 = load i64, i64* %22, align 4 - %24 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - %26 = bitcast { i64, i32 }* %10 to i8* - %27 = bitcast %struct.Job* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %26, i8* align 4 %27, i64 12, i1 false) - %28 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 0 - %29 = load i64, i64* %28, align 4 - %30 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 1 - %31 = load i32, i32* %30, align 4 - %32 = call 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"* 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 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %5 = load %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %3, align 8 - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %5, i32 0, i32 0 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %9 = call 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) #11 - %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"* noundef nonnull align 8 dereferenceable(8) %0, i1 (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 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 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) #11 - %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 -} - -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 = { 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 #3 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #4 = { 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 #5 = { 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 #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 = { "frame-pointer"="all" "no-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 = { 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 = { builtin allocsize(0) } -attributes #10 = { builtin nounwind } -attributes #11 = { nounwind } - -!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"} -!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-llvm14/word-wrap.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/word-wrap.ll deleted file mode 100644 index 8985f1842..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/word-wrap.ll +++ /dev/null @@ -1,509 +0,0 @@ -; ModuleID = 'PE-benchmarks/word-wrap.cpp' -source_filename = "PE-benchmarks/word-wrap.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"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] } - -@_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 -@__const.main.l = private unnamed_addr constant [4 x i32] [i32 3, i32 2, i32 2, i32 5], align 16 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z13solveWordWrapPiii(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 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i64, align 8 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca i64, align 8 - %13 = alloca i64, align 8 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %16 = load i32, i32* %5, align 4 - %17 = add nsw i32 %16, 1 - %18 = zext i32 %17 to i64 - %19 = load i32, i32* %5, align 4 - %20 = add nsw i32 %19, 1 - %21 = zext i32 %20 to i64 - %22 = call i8* @llvm.stacksave() - store i8* %22, i8** %7, align 8 - %23 = mul nuw i64 %18, %21 - %24 = alloca i32, i64 %23, align 16 - store i64 %18, i64* %8, align 8 - store i64 %21, i64* %9, align 8 - %25 = load i32, i32* %5, align 4 - %26 = add nsw i32 %25, 1 - %27 = zext i32 %26 to i64 - %28 = load i32, i32* %5, align 4 - %29 = add nsw i32 %28, 1 - %30 = zext i32 %29 to i64 - %31 = mul nuw i64 %27, %30 - %32 = alloca i32, i64 %31, align 16 - store i64 %27, i64* %10, align 8 - store i64 %30, i64* %11, align 8 - %33 = load i32, i32* %5, align 4 - %34 = add nsw i32 %33, 1 - %35 = zext i32 %34 to i64 - %36 = alloca i32, i64 %35, align 16 - store i64 %35, i64* %12, align 8 - %37 = load i32, i32* %5, align 4 - %38 = add nsw i32 %37, 1 - %39 = zext i32 %38 to i64 - %40 = alloca i32, i64 %39, align 16 - store i64 %39, i64* %13, align 8 - store i32 1, i32* %14, align 4 - br label %41 - -41: ; preds = %96, %3 - %42 = load i32, i32* %14, align 4 - %43 = load i32, i32* %5, align 4 - %44 = icmp sle i32 %42, %43 - br i1 %44, label %45, label %99 - -45: ; preds = %41 - %46 = load i32, i32* %6, align 4 - %47 = load i32*, i32** %4, align 8 - %48 = load i32, i32* %14, align 4 - %49 = sub nsw i32 %48, 1 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %47, i64 %50 - %52 = load i32, i32* %51, align 4 - %53 = sub nsw i32 %46, %52 - %54 = load i32, i32* %14, align 4 - %55 = sext i32 %54 to i64 - %56 = mul nsw i64 %55, %21 - %57 = getelementptr inbounds i32, i32* %24, i64 %56 - %58 = load i32, i32* %14, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds i32, i32* %57, i64 %59 - store i32 %53, i32* %60, align 4 - %61 = load i32, i32* %14, align 4 - %62 = add nsw i32 %61, 1 - store i32 %62, i32* %15, align 4 - br label %63 - -63: ; preds = %92, %45 - %64 = load i32, i32* %15, align 4 - %65 = load i32, i32* %5, align 4 - %66 = icmp sle i32 %64, %65 - br i1 %66, label %67, label %95 - -67: ; preds = %63 - %68 = load i32, i32* %14, align 4 - %69 = sext i32 %68 to i64 - %70 = mul nsw i64 %69, %21 - %71 = getelementptr inbounds i32, i32* %24, i64 %70 - %72 = load i32, i32* %15, align 4 - %73 = sub nsw i32 %72, 1 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds i32, i32* %71, i64 %74 - %76 = load i32, i32* %75, align 4 - %77 = load i32*, i32** %4, align 8 - %78 = load i32, i32* %15, align 4 - %79 = sub nsw i32 %78, 1 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds i32, i32* %77, i64 %80 - %82 = load i32, i32* %81, align 4 - %83 = sub nsw i32 %76, %82 - %84 = sub nsw i32 %83, 1 - %85 = load i32, i32* %14, align 4 - %86 = sext i32 %85 to i64 - %87 = mul nsw i64 %86, %21 - %88 = getelementptr inbounds i32, i32* %24, i64 %87 - %89 = load i32, i32* %15, align 4 - %90 = sext i32 %89 to i64 - %91 = getelementptr inbounds i32, i32* %88, i64 %90 - store i32 %84, i32* %91, align 4 - br label %92 - -92: ; preds = %67 - %93 = load i32, i32* %15, align 4 - %94 = add nsw i32 %93, 1 - store i32 %94, i32* %15, align 4 - br label %63, !llvm.loop !6 - -95: ; preds = %63 - br label %96 - -96: ; preds = %95 - %97 = load i32, i32* %14, align 4 - %98 = add nsw i32 %97, 1 - store i32 %98, i32* %14, align 4 - br label %41, !llvm.loop !8 - -99: ; preds = %41 - store i32 1, i32* %14, align 4 - br label %100 - -100: ; preds = %181, %99 - %101 = load i32, i32* %14, align 4 - %102 = load i32, i32* %5, align 4 - %103 = icmp sle i32 %101, %102 - br i1 %103, label %104, label %184 - -104: ; preds = %100 - %105 = load i32, i32* %14, align 4 - store i32 %105, i32* %15, align 4 - br label %106 - -106: ; preds = %177, %104 - %107 = load i32, i32* %15, align 4 - %108 = load i32, i32* %5, align 4 - %109 = icmp sle i32 %107, %108 - br i1 %109, label %110, label %180 - -110: ; preds = %106 - %111 = load i32, i32* %14, align 4 - %112 = sext i32 %111 to i64 - %113 = mul nsw i64 %112, %21 - %114 = getelementptr inbounds i32, i32* %24, i64 %113 - %115 = load i32, i32* %15, align 4 - %116 = sext i32 %115 to i64 - %117 = getelementptr inbounds i32, i32* %114, i64 %116 - %118 = load i32, i32* %117, align 4 - %119 = icmp slt i32 %118, 0 - br i1 %119, label %120, label %128 - -120: ; preds = %110 - %121 = load i32, i32* %14, align 4 - %122 = sext i32 %121 to i64 - %123 = mul nsw i64 %122, %30 - %124 = getelementptr inbounds i32, i32* %32, i64 %123 - %125 = load i32, i32* %15, align 4 - %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds i32, i32* %124, i64 %126 - store i32 2147483647, i32* %127, align 4 - br label %176 - -128: ; preds = %110 - %129 = load i32, i32* %15, align 4 - %130 = load i32, i32* %5, align 4 - %131 = icmp eq i32 %129, %130 - br i1 %131, label %132, label %150 - -132: ; preds = %128 - %133 = load i32, i32* %14, align 4 - %134 = sext i32 %133 to i64 - %135 = mul nsw i64 %134, %21 - %136 = getelementptr inbounds i32, i32* %24, i64 %135 - %137 = load i32, i32* %15, align 4 - %138 = sext i32 %137 to i64 - %139 = getelementptr inbounds i32, i32* %136, i64 %138 - %140 = load i32, i32* %139, align 4 - %141 = icmp sge i32 %140, 0 - br i1 %141, label %142, label %150 - -142: ; preds = %132 - %143 = load i32, i32* %14, align 4 - %144 = sext i32 %143 to i64 - %145 = mul nsw i64 %144, %30 - %146 = getelementptr inbounds i32, i32* %32, i64 %145 - %147 = load i32, i32* %15, align 4 - %148 = sext i32 %147 to i64 - %149 = getelementptr inbounds i32, i32* %146, i64 %148 - store i32 0, i32* %149, align 4 - br label %175 - -150: ; preds = %132, %128 - %151 = load i32, i32* %14, align 4 - %152 = sext i32 %151 to i64 - %153 = mul nsw i64 %152, %21 - %154 = getelementptr inbounds i32, i32* %24, i64 %153 - %155 = load i32, i32* %15, align 4 - %156 = sext i32 %155 to i64 - %157 = getelementptr inbounds i32, i32* %154, i64 %156 - %158 = load i32, i32* %157, align 4 - %159 = load i32, i32* %14, align 4 - %160 = sext i32 %159 to i64 - %161 = mul nsw i64 %160, %21 - %162 = getelementptr inbounds i32, i32* %24, i64 %161 - %163 = load i32, i32* %15, align 4 - %164 = sext i32 %163 to i64 - %165 = getelementptr inbounds i32, i32* %162, i64 %164 - %166 = load i32, i32* %165, align 4 - %167 = mul nsw i32 %158, %166 - %168 = load i32, i32* %14, align 4 - %169 = sext i32 %168 to i64 - %170 = mul nsw i64 %169, %30 - %171 = getelementptr inbounds i32, i32* %32, i64 %170 - %172 = load i32, i32* %15, align 4 - %173 = sext i32 %172 to i64 - %174 = getelementptr inbounds i32, i32* %171, i64 %173 - store i32 %167, i32* %174, align 4 - br label %175 - -175: ; preds = %150, %142 - br label %176 - -176: ; preds = %175, %120 - br label %177 - -177: ; preds = %176 - %178 = load i32, i32* %15, align 4 - %179 = add nsw i32 %178, 1 - store i32 %179, i32* %15, align 4 - br label %106, !llvm.loop !9 - -180: ; preds = %106 - br label %181 - -181: ; preds = %180 - %182 = load i32, i32* %14, align 4 - %183 = add nsw i32 %182, 1 - store i32 %183, i32* %14, align 4 - br label %100, !llvm.loop !10 - -184: ; preds = %100 - %185 = getelementptr inbounds i32, i32* %36, i64 0 - store i32 0, i32* %185, align 16 - store i32 1, i32* %15, align 4 - br label %186 - -186: ; preds = %262, %184 - %187 = load i32, i32* %15, align 4 - %188 = load i32, i32* %5, align 4 - %189 = icmp sle i32 %187, %188 - br i1 %189, label %190, label %265 - -190: ; preds = %186 - %191 = load i32, i32* %15, align 4 - %192 = sext i32 %191 to i64 - %193 = getelementptr inbounds i32, i32* %36, i64 %192 - store i32 2147483647, i32* %193, align 4 - store i32 1, i32* %14, align 4 - br label %194 - -194: ; preds = %258, %190 - %195 = load i32, i32* %14, align 4 - %196 = load i32, i32* %15, align 4 - %197 = icmp sle i32 %195, %196 - br i1 %197, label %198, label %261 - -198: ; preds = %194 - %199 = load i32, i32* %14, align 4 - %200 = sub nsw i32 %199, 1 - %201 = sext i32 %200 to i64 - %202 = getelementptr inbounds i32, i32* %36, i64 %201 - %203 = load i32, i32* %202, align 4 - %204 = icmp ne i32 %203, 2147483647 - br i1 %204, label %205, label %257 - -205: ; preds = %198 - %206 = load i32, i32* %14, align 4 - %207 = sext i32 %206 to i64 - %208 = mul nsw i64 %207, %30 - %209 = getelementptr inbounds i32, i32* %32, i64 %208 - %210 = load i32, i32* %15, align 4 - %211 = sext i32 %210 to i64 - %212 = getelementptr inbounds i32, i32* %209, i64 %211 - %213 = load i32, i32* %212, align 4 - %214 = icmp ne i32 %213, 2147483647 - br i1 %214, label %215, label %257 - -215: ; preds = %205 - %216 = load i32, i32* %14, align 4 - %217 = sub nsw i32 %216, 1 - %218 = sext i32 %217 to i64 - %219 = getelementptr inbounds i32, i32* %36, i64 %218 - %220 = load i32, i32* %219, align 4 - %221 = load i32, i32* %14, align 4 - %222 = sext i32 %221 to i64 - %223 = mul nsw i64 %222, %30 - %224 = getelementptr inbounds i32, i32* %32, i64 %223 - %225 = load i32, i32* %15, align 4 - %226 = sext i32 %225 to i64 - %227 = getelementptr inbounds i32, i32* %224, i64 %226 - %228 = load i32, i32* %227, align 4 - %229 = add nsw i32 %220, %228 - %230 = load i32, i32* %15, align 4 - %231 = sext i32 %230 to i64 - %232 = getelementptr inbounds i32, i32* %36, i64 %231 - %233 = load i32, i32* %232, align 4 - %234 = icmp slt i32 %229, %233 - br i1 %234, label %235, label %257 - -235: ; preds = %215 - %236 = load i32, i32* %14, align 4 - %237 = sub nsw i32 %236, 1 - %238 = sext i32 %237 to i64 - %239 = getelementptr inbounds i32, i32* %36, i64 %238 - %240 = load i32, i32* %239, align 4 - %241 = load i32, i32* %14, align 4 - %242 = sext i32 %241 to i64 - %243 = mul nsw i64 %242, %30 - %244 = getelementptr inbounds i32, i32* %32, i64 %243 - %245 = load i32, i32* %15, align 4 - %246 = sext i32 %245 to i64 - %247 = getelementptr inbounds i32, i32* %244, i64 %246 - %248 = load i32, i32* %247, align 4 - %249 = add nsw i32 %240, %248 - %250 = load i32, i32* %15, align 4 - %251 = sext i32 %250 to i64 - %252 = getelementptr inbounds i32, i32* %36, i64 %251 - store i32 %249, i32* %252, align 4 - %253 = load i32, i32* %14, align 4 - %254 = load i32, i32* %15, align 4 - %255 = sext i32 %254 to i64 - %256 = getelementptr inbounds i32, i32* %40, i64 %255 - store i32 %253, i32* %256, align 4 - br label %257 - -257: ; preds = %235, %215, %205, %198 - br label %258 - -258: ; preds = %257 - %259 = load i32, i32* %14, align 4 - %260 = add nsw i32 %259, 1 - store i32 %260, i32* %14, align 4 - br label %194, !llvm.loop !11 - -261: ; preds = %194 - br label %262 - -262: ; preds = %261 - %263 = load i32, i32* %15, align 4 - %264 = add nsw i32 %263, 1 - store i32 %264, i32* %15, align 4 - br label %186, !llvm.loop !12 - -265: ; preds = %186 - %266 = load i32, i32* %5, align 4 - %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 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z13printSolutionPii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %4, align 4 - %8 = sext i32 %7 to i64 - %9 = getelementptr inbounds i32, i32* %6, i64 %8 - %10 = load i32, i32* %9, align 4 - %11 = icmp eq i32 %10, 1 - br i1 %11, label %12, label %13 - -12: ; preds = %2 - store i32 1, i32* %5, align 4 - br label %23 - -13: ; preds = %2 - %14 = load i32*, i32** %3, align 8 - %15 = load i32*, i32** %3, align 8 - %16 = load i32, i32* %4, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds i32, i32* %15, i64 %17 - %19 = load i32, i32* %18, align 4 - %20 = sub nsw i32 %19, 1 - %21 = call 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 noundef 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 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 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 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 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(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) #2 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 - -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) #2 - -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)) #2 - -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [4 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [4 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([4 x i32]* @__const.main.l to i8*), i64 16, i1 false) - store i32 4, i32* %3, align 4 - store i32 6, i32* %4, align 4 - %6 = getelementptr inbounds [4 x i32], [4 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = load i32, i32* %4, align 4 - call void @_Z13solveWordWrapPiii(i32* noundef %6, i32 noundef %7, i32 noundef %8) - ret i32 0 -} - -; 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 = { 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 willreturn } -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, !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"} -!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-llvm14/z-algorithm-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/z-algorithm-linear-time.ll deleted file mode 100644 index 5241624aa..000000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/z-algorithm-linear-time.ll +++ /dev/null @@ -1,778 +0,0 @@ -; ModuleID = 'PE-benchmarks/z-algorithm-linear-time.cpp' -source_filename = "PE-benchmarks/z-algorithm-linear-time.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -module asm ".globl _ZSt21ios_base_library_initv" - -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::allocator" = type { i8 } -%"class.std::__new_allocator" = type { i8 } - -$_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEOS8_RKS8_ = comdat any - -$_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EERKS8_PKS5_ = comdat any - -$_ZNSt15__new_allocatorIcED2Ev = comdat any - -$_ZSt12__str_concatINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEET_PKNS6_10value_typeENS6_9size_typeES9_SA_RKNS6_14allocator_typeE = comdat any - -$_ZNSt11char_traitsIcE6lengthEPKc = comdat any - -$_ZSt4moveIRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEONSt16remove_referenceIT_E4typeEOS8_ = comdat any - -@.str = private unnamed_addr constant [2 x i8] c"$\00", align 1 -@_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 - -; 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) #0 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::basic_string", align 8 - %4 = alloca %"class.std::__cxx11::basic_string", align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i8*, align 8 - %9 = alloca i64, align 8 - %10 = alloca %"class.std::__cxx11::basic_string", align 8 - %11 = alloca i32, align 4 - call void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EERKS8_PKS5_(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %4, %"class.std::__cxx11::basic_string"* 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"* noundef nonnull align 8 dereferenceable(32) %4) #9 - %13 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %3) #9 - %14 = trunc i64 %13 to i32 - store i32 %14, i32* %7, align 4 - %15 = load i32, i32* %7, align 4 - %16 = zext i32 %15 to i64 - %17 = call i8* @llvm.stacksave() - store i8* %17, i8** %8, align 8 - %18 = alloca i32, i64 %16, align 16 - store i64 %16, i64* %9, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* 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"* 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"* noundef nonnull align 8 dereferenceable(32) %10) #9 - store i32 0, i32* %11, align 4 - br label %21 - -21: ; preds = %58, %20 - %22 = load i32, i32* %11, align 4 - %23 = load i32, i32* %7, align 4 - %24 = icmp slt i32 %22, %23 - br i1 %24, label %25, label %61 - -25: ; preds = %21 - %26 = load i32, i32* %11, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds i32, i32* %18, i64 %27 - %29 = load i32, i32* %28, align 4 - %30 = sext i32 %29 to i64 - %31 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) #9 - %32 = icmp eq i64 %30, %31 - br i1 %32, label %33, label %57 - -33: ; preds = %25 - %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 noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) #9 - %39 = sub i64 %37, %38 - %40 = sub i64 %39, 1 - %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 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 - br label %57 - -45: ; preds = %2 - %46 = landingpad { i8*, i32 } - cleanup - %47 = extractvalue { i8*, i32 } %46, 0 - store i8* %47, i8** %5, align 8 - %48 = extractvalue { i8*, i32 } %46, 1 - store i32 %48, i32* %6, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %4) #9 - br label %64 - -49: ; preds = %42, %35, %33, %12 - %50 = landingpad { i8*, i32 } - cleanup - %51 = extractvalue { i8*, i32 } %50, 0 - store i8* %51, i8** %5, align 8 - %52 = extractvalue { i8*, i32 } %50, 1 - store i32 %52, i32* %6, align 4 - br label %63 - -53: ; preds = %19 - %54 = landingpad { i8*, i32 } - cleanup - %55 = extractvalue { i8*, i32 } %54, 0 - store i8* %55, i8** %5, align 8 - %56 = extractvalue { i8*, i32 } %54, 1 - store i32 %56, i32* %6, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #9 - br label %63 - -57: ; preds = %44, %25 - br label %58 - -58: ; preds = %57 - %59 = load i32, i32* %11, align 4 - %60 = add nsw i32 %59, 1 - store i32 %60, i32* %11, align 4 - br label %21, !llvm.loop !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"* noundef nonnull align 8 dereferenceable(32) %3) #9 - ret void - -63: ; preds = %53, %49 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %3) #9 - br label %64 - -64: ; preds = %63, %45 - %65 = load i8*, i8** %5, align 8 - %66 = load i32, i32* %6, align 4 - %67 = insertvalue { i8*, i32 } undef, i8* %65, 0 - %68 = insertvalue { i8*, i32 } %67, i32 %66, 1 - resume { i8*, i32 } %68 -} - -; Function Attrs: 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) #0 comdat { - %4 = alloca i8*, align 8 - %5 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %6 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %7 = bitcast %"class.std::__cxx11::basic_string"* %0 to i8* - store i8* %7, i8** %4, align 8 - store %"class.std::__cxx11::basic_string"* %1, %"class.std::__cxx11::basic_string"** %5, align 8 - store %"class.std::__cxx11::basic_string"* %2, %"class.std::__cxx11::basic_string"** %6, align 8 - %8 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %5, align 8 - %9 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %6, align 8 - %10 = call 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) #9 - 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) #9 - ret void -} - -; Function Attrs: 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) #1 comdat personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %8 = alloca i8*, align 8 - %9 = alloca %"class.std::allocator", align 1 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - %12 = bitcast %"class.std::__cxx11::basic_string"* %0 to i8* - store i8* %12, i8** %6, align 8 - store %"class.std::__cxx11::basic_string"* %1, %"class.std::__cxx11::basic_string"** %7, align 8 - store i8* %2, i8** %8, align 8 - %13 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %7, align 8 - %14 = call noundef i8* @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE5c_strEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13) #9 - %15 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %7, align 8 - %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #9 - %17 = load i8*, i8** %8, align 8 - %18 = load i8*, i8** %8, align 8 - %19 = call noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(i8* noundef %18) - %20 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %7, align 8 - 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) %20) #9 - invoke void @_ZSt12__str_concatINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEET_PKNS6_10value_typeENS6_9size_typeES9_SA_RKNS6_14allocator_typeE(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %0, i8* noundef %14, i64 noundef %16, i8* noundef %17, i64 noundef %19, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) - to label %21 unwind label %24 - -21: ; preds = %3 - store %"class.std::allocator"* %9, %"class.std::allocator"** %5, align 8 - %22 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %23 = bitcast %"class.std::allocator"* %22 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %23) #9 - ret void - -24: ; preds = %3 - %25 = landingpad { i8*, i32 } - cleanup - %26 = extractvalue { i8*, i32 } %25, 0 - store i8* %26, i8** %10, align 8 - %27 = extractvalue { i8*, i32 } %25, 1 - store i32 %27, i32* %11, align 4 - store %"class.std::allocator"* %9, %"class.std::allocator"** %4, align 8 - %28 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %29 = bitcast %"class.std::allocator"* %28 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %29) #9 - br label %30 - -30: ; preds = %24 - %31 = load i8*, i8** %10, align 8 - %32 = load i32, i32* %11, align 4 - %33 = insertvalue { i8*, i32 } undef, i8* %31, 0 - %34 = insertvalue { i8*, i32 } %33, i32 %32, 1 - resume { i8*, i32 } %34 -} - -declare i32 @__gxx_personality_v0(...) - -; Function Attrs: nounwind -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 - -; Function Attrs: nounwind -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() #3 - -; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPi(%"class.std::__cxx11::basic_string"* noundef %0, i32* noundef %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32* %1, i32** %3, align 8 - %9 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #9 - %10 = trunc i64 %9 to i32 - store i32 %10, i32* %4, align 4 - store i32 0, i32* %6, align 4 - store i32 0, i32* %5, align 4 - store i32 1, i32* %8, align 4 - br label %11 - -11: ; preds = %115, %2 - %12 = load i32, i32* %8, align 4 - %13 = load i32, i32* %4, align 4 - %14 = icmp slt i32 %12, %13 - br i1 %14, label %15, label %118 - -15: ; preds = %11 - %16 = load i32, i32* %8, align 4 - %17 = load i32, i32* %6, align 4 - %18 = icmp sgt i32 %16, %17 - br i1 %18, label %19, label %54 - -19: ; preds = %15 - %20 = load i32, i32* %8, align 4 - store i32 %20, i32* %6, align 4 - store i32 %20, i32* %5, align 4 - br label %21 - -21: ; preds = %41, %19 - %22 = load i32, i32* %6, align 4 - %23 = load i32, i32* %4, align 4 - %24 = icmp slt i32 %22, %23 - br i1 %24, label %25, label %39 - -25: ; preds = %21 - %26 = load i32, i32* %6, align 4 - %27 = load i32, i32* %5, align 4 - %28 = sub nsw i32 %26, %27 - %29 = sext i32 %28 to i64 - %30 = call 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 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 - br label %39 - -39: ; preds = %25, %21 - %40 = phi i1 [ false, %21 ], [ %38, %25 ] - br i1 %40, label %41, label %44 - -41: ; preds = %39 - %42 = load i32, i32* %6, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %6, align 4 - br label %21, !llvm.loop !8 - -44: ; preds = %39 - %45 = load i32, i32* %6, align 4 - %46 = load i32, i32* %5, align 4 - %47 = sub nsw i32 %45, %46 - %48 = load i32*, i32** %3, align 8 - %49 = load i32, i32* %8, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %48, i64 %50 - store i32 %47, i32* %51, align 4 - %52 = load i32, i32* %6, align 4 - %53 = add nsw i32 %52, -1 - store i32 %53, i32* %6, align 4 - br label %114 - -54: ; preds = %15 - %55 = load i32, i32* %8, align 4 - %56 = load i32, i32* %5, align 4 - %57 = sub nsw i32 %55, %56 - store i32 %57, i32* %7, align 4 - %58 = load i32*, i32** %3, align 8 - %59 = load i32, i32* %7, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i32, i32* %58, i64 %60 - %62 = load i32, i32* %61, align 4 - %63 = load i32, i32* %6, align 4 - %64 = load i32, i32* %8, align 4 - %65 = sub nsw i32 %63, %64 - %66 = add nsw i32 %65, 1 - %67 = icmp slt i32 %62, %66 - br i1 %67, label %68, label %78 - -68: ; preds = %54 - %69 = load i32*, i32** %3, align 8 - %70 = load i32, i32* %7, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds i32, i32* %69, i64 %71 - %73 = load i32, i32* %72, align 4 - %74 = load i32*, i32** %3, align 8 - %75 = load i32, i32* %8, align 4 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds i32, i32* %74, i64 %76 - store i32 %73, i32* %77, align 4 - br label %113 - -78: ; preds = %54 - %79 = load i32, i32* %8, align 4 - store i32 %79, i32* %5, align 4 - br label %80 - -80: ; preds = %100, %78 - %81 = load i32, i32* %6, align 4 - %82 = load i32, i32* %4, align 4 - %83 = icmp slt i32 %81, %82 - br i1 %83, label %84, label %98 - -84: ; preds = %80 - %85 = load i32, i32* %6, align 4 - %86 = load i32, i32* %5, align 4 - %87 = sub nsw i32 %85, %86 - %88 = sext i32 %87 to i64 - %89 = call 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 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 - br label %98 - -98: ; preds = %84, %80 - %99 = phi i1 [ false, %80 ], [ %97, %84 ] - br i1 %99, label %100, label %103 - -100: ; preds = %98 - %101 = load i32, i32* %6, align 4 - %102 = add nsw i32 %101, 1 - store i32 %102, i32* %6, align 4 - br label %80, !llvm.loop !9 - -103: ; preds = %98 - %104 = load i32, i32* %6, align 4 - %105 = load i32, i32* %5, align 4 - %106 = sub nsw i32 %104, %105 - %107 = load i32*, i32** %3, align 8 - %108 = load i32, i32* %8, align 4 - %109 = sext i32 %108 to i64 - %110 = getelementptr inbounds i32, i32* %107, i64 %109 - store i32 %106, i32* %110, align 4 - %111 = load i32, i32* %6, align 4 - %112 = add nsw i32 %111, -1 - store i32 %112, i32* %6, align 4 - br label %113 - -113: ; preds = %103, %68 - br label %114 - -114: ; preds = %113, %44 - br label %115 - -115: ; preds = %114 - %116 = load i32, i32* %8, align 4 - %117 = add nsw i32 %116, 1 - store i32 %117, i32* %8, align 4 - br label %11, !llvm.loop !10 - -118: ; preds = %11 - ret void -} - -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 #4 - -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) #4 - -declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEm(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i64 noundef) #4 - -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) #4 - -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)) #4 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #3 - -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) #4 - -; Function Attrs: noinline norecurse uwtable -define dso_local noundef i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca %"class.std::__new_allocator"*, align 8 - %2 = alloca %"class.std::__new_allocator"*, align 8 - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"class.std::allocator"*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"class.std::__cxx11::basic_string", align 8 - %11 = alloca %"class.std::allocator", align 1 - %12 = alloca i8*, align 8 - %13 = alloca i32, align 4 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - %15 = alloca %"class.std::allocator", align 1 - %16 = alloca %"class.std::__cxx11::basic_string", align 8 - %17 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %9, align 4 - store %"class.std::allocator"* %11, %"class.std::allocator"** %8, align 8 - %18 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %19 = bitcast %"class.std::allocator"* %18 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %19, %"class.std::__new_allocator"** %1, align 8 - %20 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %1, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10, 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) %11) - to label %21 unwind label %34 - -21: ; preds = %0 - store %"class.std::allocator"* %11, %"class.std::allocator"** %6, align 8 - %22 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %23 = bitcast %"class.std::allocator"* %22 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %23) #9 - store %"class.std::allocator"* %15, %"class.std::allocator"** %7, align 8 - %24 = load %"class.std::allocator"*, %"class.std::allocator"** %7, align 8 - %25 = bitcast %"class.std::allocator"* %24 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %25, %"class.std::__new_allocator"** %2, align 8 - %26 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14, 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) %15) - to label %27 unwind label %40 - -27: ; preds = %21 - store %"class.std::allocator"* %15, %"class.std::allocator"** %4, align 8 - %28 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %29 = bitcast %"class.std::allocator"* %28 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %29) #9 - 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) %10) - to label %30 unwind label %46 - -30: ; preds = %27 - 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) %14) - to label %31 unwind label %50 - -31: ; preds = %30 - invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %16, %"class.std::__cxx11::basic_string"* noundef %17) - to label %32 unwind label %54 - -32: ; preds = %31 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17) #9 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #9 - store i32 0, i32* %9, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #9 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #9 - %33 = load i32, i32* %9, align 4 - ret i32 %33 - -34: ; preds = %0 - %35 = landingpad { i8*, i32 } - cleanup - %36 = extractvalue { i8*, i32 } %35, 0 - store i8* %36, i8** %12, align 8 - %37 = extractvalue { i8*, i32 } %35, 1 - store i32 %37, i32* %13, align 4 - store %"class.std::allocator"* %11, %"class.std::allocator"** %5, align 8 - %38 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %39 = bitcast %"class.std::allocator"* %38 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %39) #9 - br label %61 - -40: ; preds = %21 - %41 = landingpad { i8*, i32 } - cleanup - %42 = extractvalue { i8*, i32 } %41, 0 - store i8* %42, i8** %12, align 8 - %43 = extractvalue { i8*, i32 } %41, 1 - store i32 %43, i32* %13, align 4 - store %"class.std::allocator"* %15, %"class.std::allocator"** %3, align 8 - %44 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %45 = bitcast %"class.std::allocator"* %44 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %45) #9 - br label %60 - -46: ; preds = %27 - %47 = landingpad { i8*, i32 } - cleanup - %48 = extractvalue { i8*, i32 } %47, 0 - store i8* %48, i8** %12, align 8 - %49 = extractvalue { i8*, i32 } %47, 1 - store i32 %49, i32* %13, align 4 - br label %59 - -50: ; preds = %30 - %51 = landingpad { i8*, i32 } - cleanup - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %12, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %13, align 4 - br label %58 - -54: ; preds = %31 - %55 = landingpad { i8*, i32 } - cleanup - %56 = extractvalue { i8*, i32 } %55, 0 - store i8* %56, i8** %12, align 8 - %57 = extractvalue { i8*, i32 } %55, 1 - store i32 %57, i32* %13, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17) #9 - br label %58 - -58: ; preds = %54, %50 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #9 - br label %59 - -59: ; preds = %58, %46 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #9 - br label %60 - -60: ; preds = %59, %40 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #9 - br label %61 - -61: ; preds = %60, %34 - %62 = load i8*, i8** %12, align 8 - %63 = load i32, i32* %13, align 4 - %64 = insertvalue { i8*, i32 } undef, i8* %62, 0 - %65 = insertvalue { i8*, i32 } %64, i32 %63, 1 - resume { i8*, i32 } %65 -} - -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 #4 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__new_allocator"*, align 8 - store %"class.std::__new_allocator"* %0, %"class.std::__new_allocator"** %2, align 8 - %3 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZSt12__str_concatINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEET_PKNS6_10value_typeENS6_9size_typeES9_SA_RKNS6_14allocator_typeE(%"class.std::__cxx11::basic_string"* noalias sret(%"class.std::__cxx11::basic_string") align 8 %0, i8* noundef %1, i64 noundef %2, i8* noundef %3, i64 noundef %4, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5) #1 comdat personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %7 = alloca %"class.std::__new_allocator"*, align 8 - %8 = alloca %"class.std::__new_allocator"*, align 8 - %9 = alloca %"class.std::allocator"*, align 8 - %10 = alloca %"class.std::allocator"*, align 8 - %11 = alloca i8*, align 8 - %12 = alloca %"class.std::allocator"*, align 8 - %13 = alloca i8*, align 8 - %14 = alloca %"class.std::allocator"*, align 8 - %15 = alloca %"class.std::allocator"*, align 8 - %16 = alloca i8*, align 8 - %17 = alloca i8*, align 8 - %18 = alloca i64, align 8 - %19 = alloca i8*, align 8 - %20 = alloca i64, align 8 - %21 = alloca %"class.std::allocator"*, align 8 - %22 = alloca i1, align 1 - %23 = alloca %"class.std::allocator", align 1 - %24 = alloca i8*, align 8 - %25 = alloca i32, align 4 - %26 = bitcast %"class.std::__cxx11::basic_string"* %0 to i8* - store i8* %26, i8** %16, align 8 - store i8* %1, i8** %17, align 8 - store i64 %2, i64* %18, align 8 - store i8* %3, i8** %19, align 8 - store i64 %4, i64* %20, align 8 - store %"class.std::allocator"* %5, %"class.std::allocator"** %21, align 8 - store i1 false, i1* %22, align 1 - %27 = load %"class.std::allocator"*, %"class.std::allocator"** %21, align 8 - call void @llvm.experimental.noalias.scope.decl(metadata !11) - %28 = bitcast %"class.std::allocator"* %23 to i8* - store i8* %28, i8** %13, align 8, !noalias !11 - store %"class.std::allocator"* %27, %"class.std::allocator"** %14, align 8, !noalias !11 - %29 = load %"class.std::allocator"*, %"class.std::allocator"** %14, align 8, !noalias !11 - call void @llvm.experimental.noalias.scope.decl(metadata !14) - %30 = bitcast %"class.std::allocator"* %23 to i8* - store i8* %30, i8** %11, align 8, !noalias !14 - store %"class.std::allocator"* %29, %"class.std::allocator"** %12, align 8, !noalias !14 - %31 = load %"class.std::allocator"*, %"class.std::allocator"** %12, align 8, !noalias !14 - store %"class.std::allocator"* %23, %"class.std::allocator"** %9, align 8 - store %"class.std::allocator"* %31, %"class.std::allocator"** %10, align 8 - %32 = load %"class.std::allocator"*, %"class.std::allocator"** %9, align 8 - %33 = bitcast %"class.std::allocator"* %32 to %"class.std::__new_allocator"* - %34 = load %"class.std::allocator"*, %"class.std::allocator"** %10, align 8 - %35 = bitcast %"class.std::allocator"* %34 to %"class.std::__new_allocator"* - store %"class.std::__new_allocator"* %33, %"class.std::__new_allocator"** %7, align 8 - store %"class.std::__new_allocator"* %35, %"class.std::__new_allocator"** %8, align 8 - %36 = load %"class.std::__new_allocator"*, %"class.std::__new_allocator"** %7, align 8 - 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) %23) #9 - store %"class.std::allocator"* %23, %"class.std::allocator"** %15, align 8 - %37 = load %"class.std::allocator"*, %"class.std::allocator"** %15, align 8 - %38 = bitcast %"class.std::allocator"* %37 to %"class.std::__new_allocator"* - call void @_ZNSt15__new_allocatorIcED2Ev(%"class.std::__new_allocator"* noundef nonnull align 1 dereferenceable(1) %38) #9 - %39 = load i64, i64* %18, align 8 - %40 = load i64, i64* %20, align 8 - %41 = add i64 %39, %40 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %41) - to label %42 unwind label %52 - -42: ; preds = %6 - %43 = load i8*, i8** %17, align 8 - %44 = load i64, i64* %18, align 8 - %45 = invoke noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i8* noundef %43, i64 noundef %44) - to label %46 unwind label %52 - -46: ; preds = %42 - %47 = load i8*, i8** %19, align 8 - %48 = load i64, i64* %20, align 8 - %49 = invoke noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i8* noundef %47, i64 noundef %48) - to label %50 unwind label %52 - -50: ; preds = %46 - store i1 true, i1* %22, align 1 - %51 = load i1, i1* %22, align 1 - br i1 %51, label %57, label %56 - -52: ; preds = %46, %42, %6 - %53 = landingpad { i8*, i32 } - cleanup - %54 = extractvalue { i8*, i32 } %53, 0 - store i8* %54, i8** %24, align 8 - %55 = extractvalue { i8*, i32 } %53, 1 - store i32 %55, i32* %25, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #9 - br label %58 - -56: ; preds = %50 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #9 - br label %57 - -57: ; preds = %56, %50 - ret void - -58: ; preds = %52 - %59 = load i8*, i8** %24, align 8 - %60 = load i32, i32* %25, align 4 - %61 = insertvalue { i8*, i32 } undef, i8* %59, 0 - %62 = insertvalue { i8*, i32 } %61, i32 %60, 1 - resume { i8*, i32 } %62 -} - -; Function Attrs: nounwind -declare noundef i8* @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE5c_strEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) #2 - -; Function Attrs: nounwind -declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) #2 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(i8* noundef %0) #7 comdat align 2 { - %2 = alloca i8*, align 8 - store i8* %0, i8** %2, align 8 - %3 = load i8*, i8** %2, align 8 - %4 = call i64 @strlen(i8* noundef %3) #9 - ret i64 %4 -} - -; Function Attrs: nounwind -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 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #4 - -declare noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i8* noundef, i64 noundef) #4 - -; Function Attrs: nounwind -declare i64 @strlen(i8* noundef) #2 - -; 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 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)) #4 - -; Function Attrs: nounwind -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: inaccessiblememonly nofree nosync nounwind willreturn -declare void @llvm.experimental.noalias.scope.decl(metadata) #8 - -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 = { 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 = { nofree nosync 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" } -attributes #5 = { 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 = { 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 = { inaccessiblememonly nofree nosync nounwind willreturn } -attributes #9 = { nounwind } - -!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"} -!8 = distinct !{!8, !7} -!9 = distinct !{!9, !7} -!10 = distinct !{!10, !7} -!11 = !{!12} -!12 = distinct !{!12, !13, !"_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_: argument 0"} -!13 = distinct !{!13, !"_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_"} -!14 = !{!15} -!15 = distinct !{!15, !16, !"_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_: argument 0"} -!16 = distinct !{!16, !"_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/Find_the_closest_pair_from_two_sorted_arrays.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/Find_the_closest_pair_from_two_sorted_arrays.ll new file mode 100644 index 000000000..e89806028 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/Find_the_closest_pair_from_two_sorted_arrays.ll @@ -0,0 +1,201 @@ +; ModuleID = 'PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp' +source_filename = "PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 +@__const.main.ar1 = private unnamed_addr constant [4 x i32] [i32 1, i32 4, i32 5, i32 7], align 16 +@__const.main.ar2 = private unnamed_addr constant [4 x i32] [i32 10, i32 20, i32 30, i32 40], align 16 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z12printClosestPiS_iii(ptr noundef %0, ptr noundef %1, i32 noundef %2, i32 noundef %3, i32 noundef %4) #0 { + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + %15 = alloca i32, align 4 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + store i32 %2, ptr %8, align 4 + store i32 %3, ptr %9, align 4 + store i32 %4, ptr %10, align 4 + store i32 2147483647, ptr %11, align 4 + store i32 0, ptr %14, align 4 + %16 = load i32, ptr %9, align 4 + %17 = sub nsw i32 %16, 1 + store i32 %17, ptr %15, align 4 + br label %18 + +18: ; preds = %81, %5 + %19 = load i32, ptr %14, align 4 + %20 = load i32, ptr %8, align 4 + %21 = icmp slt i32 %19, %20 + br i1 %21, label %22, label %25 + +22: ; preds = %18 + %23 = load i32, ptr %15, align 4 + %24 = icmp sge i32 %23, 0 + br label %25 + +25: ; preds = %22, %18 + %26 = phi i1 [ false, %18 ], [ %24, %22 ] + br i1 %26, label %27, label %82 + +27: ; preds = %25 + %28 = load ptr, ptr %6, align 8 + %29 = load i32, ptr %14, align 4 + %30 = sext i32 %29 to i64 + %31 = getelementptr inbounds i32, ptr %28, i64 %30 + %32 = load i32, ptr %31, align 4 + %33 = load ptr, ptr %7, align 8 + %34 = load i32, ptr %15, align 4 + %35 = sext i32 %34 to i64 + %36 = getelementptr inbounds i32, ptr %33, i64 %35 + %37 = load i32, ptr %36, align 4 + %38 = add nsw i32 %32, %37 + %39 = load i32, ptr %10, align 4 + %40 = sub nsw i32 %38, %39 + %41 = call i32 @abs(i32 noundef %40) #5 + %42 = load i32, ptr %11, align 4 + %43 = icmp slt i32 %41, %42 + br i1 %43, label %44, label %61 + +44: ; preds = %27 + %45 = load i32, ptr %14, align 4 + store i32 %45, ptr %12, align 4 + %46 = load i32, ptr %15, align 4 + store i32 %46, ptr %13, align 4 + %47 = load ptr, ptr %6, align 8 + %48 = load i32, ptr %14, align 4 + %49 = sext i32 %48 to i64 + %50 = getelementptr inbounds i32, ptr %47, i64 %49 + %51 = load i32, ptr %50, align 4 + %52 = load ptr, ptr %7, align 8 + %53 = load i32, ptr %15, align 4 + %54 = sext i32 %53 to i64 + %55 = getelementptr inbounds i32, ptr %52, i64 %54 + %56 = load i32, ptr %55, align 4 + %57 = add nsw i32 %51, %56 + %58 = load i32, ptr %10, align 4 + %59 = sub nsw i32 %57, %58 + %60 = call i32 @abs(i32 noundef %59) #5 + store i32 %60, ptr %11, align 4 + br label %61 + +61: ; preds = %44, %27 + %62 = load ptr, ptr %6, align 8 + %63 = load i32, ptr %14, align 4 + %64 = sext i32 %63 to i64 + %65 = getelementptr inbounds i32, ptr %62, i64 %64 + %66 = load i32, ptr %65, align 4 + %67 = load ptr, ptr %7, align 8 + %68 = load i32, ptr %15, align 4 + %69 = sext i32 %68 to i64 + %70 = getelementptr inbounds i32, ptr %67, i64 %69 + %71 = load i32, ptr %70, align 4 + %72 = add nsw i32 %66, %71 + %73 = load i32, ptr %10, align 4 + %74 = icmp sgt i32 %72, %73 + br i1 %74, label %75, label %78 + +75: ; preds = %61 + %76 = load i32, ptr %15, align 4 + %77 = add nsw i32 %76, -1 + store i32 %77, ptr %15, align 4 + br label %81 + +78: ; preds = %61 + %79 = load i32, ptr %14, align 4 + %80 = add nsw i32 %79, 1 + store i32 %80, ptr %14, align 4 + br label %81 + +81: ; preds = %78, %75 + br label %18, !llvm.loop !6 + +82: ; preds = %25 + %83 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %84 = load ptr, ptr %6, align 8 + %85 = load i32, ptr %12, align 4 + %86 = sext i32 %85 to i64 + %87 = getelementptr inbounds i32, ptr %84, i64 %86 + %88 = load i32, ptr %87, align 4 + %89 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %83, i32 noundef %88) + %90 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %89, ptr noundef @.str.1) + %91 = load ptr, ptr %7, align 8 + %92 = load i32, ptr %13, align 4 + %93 = sext i32 %92 to i64 + %94 = getelementptr inbounds i32, ptr %91, i64 %93 + %95 = load i32, ptr %94, align 4 + %96 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %90, i32 noundef %95) + %97 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %96, ptr noundef @.str.2) + ret void +} + +; Function Attrs: nounwind willreturn memory(none) +declare i32 @abs(i32 noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [4 x i32], align 16 + %3 = alloca [4 x i32], align 16 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.ar1, i64 16, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %3, ptr align 16 @__const.main.ar2, i64 16, i1 false) + store i32 4, ptr %4, align 4 + store i32 4, ptr %5, align 4 + store i32 38, ptr %6, align 4 + %7 = getelementptr inbounds [4 x i32], ptr %2, i64 0, i64 0 + %8 = getelementptr inbounds [4 x i32], ptr %3, i64 0, i64 0 + %9 = load i32, ptr %4, align 4 + %10 = load i32, ptr %5, align 4 + %11 = load i32, ptr %6, align 4 + call void @_Z12printClosestPiS_iii(ptr noundef %7, ptr noundef %8, i32 noundef %9, i32 noundef %10, i32 noundef %11) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +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 = { nounwind willreturn memory(none) "frame-pointer"="all" "no-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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #5 = { nounwind willreturn memory(none) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/Iterative_QuickSort.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/Iterative_QuickSort.ll new file mode 100644 index 000000000..dc89e39f6 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/Iterative_QuickSort.ll @@ -0,0 +1,326 @@ +; ModuleID = 'PE-benchmarks/Iterative_QuickSort.cpp' +source_filename = "PE-benchmarks/Iterative_QuickSort.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = load i32, ptr %6, align 4 + store i32 %7, ptr %5, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = load ptr, ptr %3, align 8 + store i32 %9, ptr %10, align 4 + %11 = load i32, ptr %5, align 4 + %12 = load ptr, ptr %4, align 8 + store i32 %11, ptr %12, align 4 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9partitionPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %10 = load ptr, ptr %4, align 8 + %11 = load i32, ptr %6, align 4 + %12 = sext i32 %11 to i64 + %13 = getelementptr inbounds i32, ptr %10, i64 %12 + %14 = load i32, ptr %13, align 4 + store i32 %14, ptr %7, align 4 + %15 = load i32, ptr %5, align 4 + %16 = sub nsw i32 %15, 1 + store i32 %16, ptr %8, align 4 + %17 = load i32, ptr %5, align 4 + store i32 %17, ptr %9, align 4 + br label %18 + +18: ; preds = %43, %3 + %19 = load i32, ptr %9, align 4 + %20 = load i32, ptr %6, align 4 + %21 = sub nsw i32 %20, 1 + %22 = icmp sle i32 %19, %21 + br i1 %22, label %23, label %46 + +23: ; preds = %18 + %24 = load ptr, ptr %4, align 8 + %25 = load i32, ptr %9, align 4 + %26 = sext i32 %25 to i64 + %27 = getelementptr inbounds i32, ptr %24, i64 %26 + %28 = load i32, ptr %27, align 4 + %29 = load i32, ptr %7, align 4 + %30 = icmp sle i32 %28, %29 + br i1 %30, label %31, label %42 + +31: ; preds = %23 + %32 = load i32, ptr %8, align 4 + %33 = add nsw i32 %32, 1 + store i32 %33, ptr %8, align 4 + %34 = load ptr, ptr %4, align 8 + %35 = load i32, ptr %8, align 4 + %36 = sext i32 %35 to i64 + %37 = getelementptr inbounds i32, ptr %34, i64 %36 + %38 = load ptr, ptr %4, align 8 + %39 = load i32, ptr %9, align 4 + %40 = sext i32 %39 to i64 + %41 = getelementptr inbounds i32, ptr %38, i64 %40 + call void @_Z4swapPiS_(ptr noundef %37, ptr noundef %41) + br label %42 + +42: ; preds = %31, %23 + br label %43 + +43: ; preds = %42 + %44 = load i32, ptr %9, align 4 + %45 = add nsw i32 %44, 1 + store i32 %45, ptr %9, align 4 + br label %18, !llvm.loop !6 + +46: ; preds = %18 + %47 = load ptr, ptr %4, align 8 + %48 = load i32, ptr %8, align 4 + %49 = add nsw i32 %48, 1 + %50 = sext i32 %49 to i64 + %51 = getelementptr inbounds i32, ptr %47, i64 %50 + %52 = load ptr, ptr %4, align 8 + %53 = load i32, ptr %6, align 4 + %54 = sext i32 %53 to i64 + %55 = getelementptr inbounds i32, ptr %52, i64 %54 + call void @_Z4swapPiS_(ptr noundef %51, ptr noundef %55) + %56 = load i32, ptr %8, align 4 + %57 = add nsw i32 %56, 1 + ret i32 %57 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z18quickSortIterativePiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %11 = load i32, ptr %6, align 4 + %12 = load i32, ptr %5, align 4 + %13 = sub nsw i32 %11, %12 + %14 = add nsw i32 %13, 1 + %15 = zext i32 %14 to i64 + %16 = call ptr @llvm.stacksave() + store ptr %16, ptr %7, align 8 + %17 = alloca i32, i64 %15, align 16 + store i64 %15, ptr %8, align 8 + store i32 -1, ptr %9, align 4 + %18 = load i32, ptr %5, align 4 + %19 = load i32, ptr %9, align 4 + %20 = add nsw i32 %19, 1 + store i32 %20, ptr %9, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds i32, ptr %17, i64 %21 + store i32 %18, ptr %22, align 4 + %23 = load i32, ptr %6, align 4 + %24 = load i32, ptr %9, align 4 + %25 = add nsw i32 %24, 1 + store i32 %25, ptr %9, align 4 + %26 = sext i32 %25 to i64 + %27 = getelementptr inbounds i32, ptr %17, i64 %26 + store i32 %23, ptr %27, align 4 + br label %28 + +28: ; preds = %79, %3 + %29 = load i32, ptr %9, align 4 + %30 = icmp sge i32 %29, 0 + br i1 %30, label %31, label %80 + +31: ; preds = %28 + %32 = load i32, ptr %9, align 4 + %33 = add nsw i32 %32, -1 + store i32 %33, ptr %9, align 4 + %34 = sext i32 %32 to i64 + %35 = getelementptr inbounds i32, ptr %17, i64 %34 + %36 = load i32, ptr %35, align 4 + store i32 %36, ptr %6, align 4 + %37 = load i32, ptr %9, align 4 + %38 = add nsw i32 %37, -1 + store i32 %38, ptr %9, align 4 + %39 = sext i32 %37 to i64 + %40 = getelementptr inbounds i32, ptr %17, i64 %39 + %41 = load i32, ptr %40, align 4 + store i32 %41, ptr %5, align 4 + %42 = load ptr, ptr %4, align 8 + %43 = load i32, ptr %5, align 4 + %44 = load i32, ptr %6, align 4 + %45 = call noundef i32 @_Z9partitionPiii(ptr noundef %42, i32 noundef %43, i32 noundef %44) + store i32 %45, ptr %10, align 4 + %46 = load i32, ptr %10, align 4 + %47 = sub nsw i32 %46, 1 + %48 = load i32, ptr %5, align 4 + %49 = icmp sgt i32 %47, %48 + br i1 %49, label %50, label %62 + +50: ; preds = %31 + %51 = load i32, ptr %5, align 4 + %52 = load i32, ptr %9, align 4 + %53 = add nsw i32 %52, 1 + store i32 %53, ptr %9, align 4 + %54 = sext i32 %53 to i64 + %55 = getelementptr inbounds i32, ptr %17, i64 %54 + store i32 %51, ptr %55, align 4 + %56 = load i32, ptr %10, align 4 + %57 = sub nsw i32 %56, 1 + %58 = load i32, ptr %9, align 4 + %59 = add nsw i32 %58, 1 + store i32 %59, ptr %9, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds i32, ptr %17, i64 %60 + store i32 %57, ptr %61, align 4 + br label %62 + +62: ; preds = %50, %31 + %63 = load i32, ptr %10, align 4 + %64 = add nsw i32 %63, 1 + %65 = load i32, ptr %6, align 4 + %66 = icmp slt i32 %64, %65 + br i1 %66, label %67, label %79 + +67: ; preds = %62 + %68 = load i32, ptr %10, align 4 + %69 = add nsw i32 %68, 1 + %70 = load i32, ptr %9, align 4 + %71 = add nsw i32 %70, 1 + store i32 %71, ptr %9, align 4 + %72 = sext i32 %71 to i64 + %73 = getelementptr inbounds i32, ptr %17, i64 %72 + store i32 %69, ptr %73, align 4 + %74 = load i32, ptr %6, align 4 + %75 = load i32, ptr %9, align 4 + %76 = add nsw i32 %75, 1 + store i32 %76, ptr %9, align 4 + %77 = sext i32 %76 to i64 + %78 = getelementptr inbounds i32, ptr %17, i64 %77 + store i32 %74, ptr %78, align 4 + br label %79 + +79: ; preds = %67, %62 + br label %28, !llvm.loop !8 + +80: ; preds = %28 + %81 = load ptr, ptr %7, align 8 + call void @llvm.stackrestore(ptr %81) + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z8printArrPii(ptr noundef %0, i32 noundef %1) #2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + store i32 0, ptr %5, align 4 + br label %6 + +6: ; preds = %18, %2 + %7 = load i32, ptr %5, align 4 + %8 = load i32, ptr %4, align 4 + %9 = icmp slt i32 %7, %8 + br i1 %9, label %10, label %21 + +10: ; preds = %6 + %11 = load ptr, ptr %3, align 8 + %12 = load i32, ptr %5, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i32, ptr %11, i64 %13 + %15 = load i32, ptr %14, align 4 + %16 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %16, ptr noundef @.str) + br label %18 + +18: ; preds = %10 + %19 = load i32, ptr %5, align 4 + %20 = add nsw i32 %19, 1 + store i32 %20, ptr %5, align 4 + br label %6, !llvm.loop !9 + +21: ; preds = %6 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 + +; 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 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 32, i1 false) + store i32 8, ptr %3, align 4 + %4 = getelementptr inbounds [8 x i32], ptr %2, i64 0, i64 0 + %5 = load i32, ptr %3, align 4 + %6 = sub nsw i32 %5, 1 + call void @_Z18quickSortIterativePiii(ptr noundef %4, i32 noundef 0, i32 noundef %6) + %7 = getelementptr inbounds [8 x i32], ptr %2, i64 0, i64 0 + %8 = load i32, ptr %3, align 4 + call void @_Z8printArrPii(ptr noundef %7, i32 noundef %8) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 + +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 = { nocallback nofree nosync nounwind willreturn } +attributes #2 = { 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/Nearly_sorted_Algo.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/Nearly_sorted_Algo.ll new file mode 100644 index 000000000..118123f7c --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/Nearly_sorted_Algo.ll @@ -0,0 +1,2439 @@ +; ModuleID = 'PE-benchmarks/Nearly_sorted_Algo.cpp' +source_filename = "PE-benchmarks/Nearly_sorted_Algo.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%"class.std::priority_queue" = type <{ %"class.std::vector", %"struct.std::greater", [7 x i8] }> +%"class.std::vector" = type { %"struct.std::_Vector_base" } +%"struct.std::_Vector_base" = type { %"struct.std::_Vector_base>::_Vector_impl" } +%"struct.std::_Vector_base>::_Vector_impl" = type { %"struct.std::_Vector_base>::_Vector_impl_data" } +%"struct.std::_Vector_base>::_Vector_impl_data" = type { ptr, ptr, ptr } +%"struct.std::greater" = type { i8 } +%"class.std::allocator" = type { i8 } +%"class.__gnu_cxx::__normal_iterator" = type { ptr } +%"struct.std::forward_iterator_tag" = type { i8 } +%"struct.std::random_access_iterator_tag" = type { i8 } +%"struct.__gnu_cxx::__ops::_Iter_comp_iter" = type { %"struct.std::greater" } +%"struct.__gnu_cxx::__ops::_Iter_comp_val" = type { %"struct.std::greater" } +%"class.__gnu_cxx::__normal_iterator.0" = type { ptr } + +$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPivEET_S8_RKS4_ = comdat any + +$_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv = comdat any + +$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv = comdat any + +$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE4pushERKi = comdat any + +$_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE5emptyEv = comdat any + +$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEED2Ev = comdat any + +$_ZNSt6vectorIiSaIiEED2Ev = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt12_Vector_baseIiSaIiEED2Ev = comdat any + +$_ZSt8_DestroyIPiEvT_S1_ = comdat any + +$_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_ = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev = comdat any + +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any + +$_ZNSt15__new_allocatorIiED2Ev = comdat any + +$_ZNSt6vectorIiSaIiEEC2IPivEET_S4_RKS0_ = comdat any + +$_ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_ = comdat any + +$_ZNSt6vectorIiSaIiEE5beginEv = comdat any + +$_ZNSt6vectorIiSaIiEE3endEv = comdat any + +$_ZNSt12_Vector_baseIiSaIiEEC2ERKS0_ = comdat any + +$_ZNSt6vectorIiSaIiEE19_M_range_initializeIPiEEvT_S4_St20forward_iterator_tag = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_ = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm = comdat any + +$_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_ = comdat any + +$_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E = comdat any + +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any + +$_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_ = comdat any + +$_ZSt3minImERKT_S2_S2_ = comdat any + +$_ZSt18uninitialized_copyIPiS0_ET0_T_S2_S1_ = comdat any + +$_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIPiS2_EET0_T_S4_S3_ = comdat any + +$_ZSt4copyIPiS0_ET0_T_S2_S1_ = comdat any + +$_ZSt13__copy_move_aILb0EPiS0_ET1_T0_S2_S1_ = comdat any + +$_ZSt12__miter_baseIPiET_S1_ = comdat any + +$_ZSt12__niter_wrapIPiET_RKS1_S1_ = comdat any + +$_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_ = comdat any + +$_ZSt12__niter_baseIPiET_S1_ = comdat any + +$_ZSt14__copy_move_a2ILb0EPiS0_ET1_T0_S2_S1_ = comdat any + +$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiiEEPT0_PT_S6_S4_ = comdat any + +$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIiiEEvPT_PT0_ = comdat any + +$_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEC2ES3_ = comdat any + +$_ZSt11__make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_RT0_ = comdat any + +$_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_ = comdat any + +$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl = comdat any + +$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv = comdat any + +$_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_T0_SD_T1_T2_ = comdat any + +$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv = comdat any + +$_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_ = comdat any + +$_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEESB_EEbT_T0_ = comdat any + +$_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2EONS0_15_Iter_comp_iterIS3_EE = comdat any + +$_ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops14_Iter_comp_valISt7greaterIiEEEEvT_T0_SD_T1_RT2_ = comdat any + +$_ZNKSt7greaterIiEclERKiS2_ = comdat any + +$_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEEiEEbT_RT0_ = comdat any + +$_ZNKSt6vectorIiSaIiEE5frontEv = comdat any + +$_ZNKSt6vectorIiSaIiEE5beginEv = comdat any + +$_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEdeEv = comdat any + +$_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_ = comdat any + +$_ZSt8pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_ = comdat any + +$_ZNSt6vectorIiSaIiEE8pop_backEv = comdat any + +$_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmmEv = comdat any + +$_ZSt10__pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_SC_RT0_ = comdat any + +$_ZNSt6vectorIiSaIiEE9push_backERKi = comdat any + +$_ZSt9push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_ = comdat any + +$_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_ = comdat any + +$_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc = comdat any + +$_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_ = comdat any + +$_ZNKSt6vectorIiSaIiEE8max_sizeEv = comdat any + +$_ZNKSt6vectorIiSaIiEE4sizeEv = comdat any + +$_ZSt3maxImERKT_S2_S2_ = comdat any + +$_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_ = comdat any + +$_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E = comdat any + +$_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2ES3_ = comdat any + +$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmiEl = comdat any + +$_ZNKSt6vectorIiSaIiEE5emptyEv = comdat any + +$_ZN9__gnu_cxxeqIPKiSt6vectorIiSaIiEEEEbRKNS_17__normal_iteratorIT_T0_EESB_ = comdat any + +$_ZNKSt6vectorIiSaIiEE3endEv = comdat any + +$_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv = comdat any + +@_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 +@.str.2 = private unnamed_addr constant [49 x i8] c"cannot create std::vector larger than max_size()\00", align 1 +@.str.3 = private unnamed_addr constant [26 x i8] c"vector::_M_realloc_insert\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z5sortKPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca %"class.std::priority_queue", align 8 + %8 = alloca %"struct.std::greater", align 1 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca ptr, align 8 + %12 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %13 = load ptr, ptr %4, align 8 + %14 = load ptr, ptr %4, align 8 + %15 = load i32, ptr %6, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds i32, ptr %14, i64 %16 + %18 = getelementptr inbounds i32, ptr %17, i64 1 + call void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPivEET_S8_RKS4_(ptr noundef nonnull align 8 dereferenceable(25) %7, ptr noundef %13, ptr noundef %18, ptr noundef nonnull align 1 dereferenceable(1) %8) + store i32 0, ptr %9, align 4 + %19 = load i32, ptr %6, align 4 + %20 = add nsw i32 %19, 1 + store i32 %20, ptr %10, align 4 + br label %21 + +21: ; preds = %40, %3 + %22 = load i32, ptr %10, align 4 + %23 = load i32, ptr %5, align 4 + %24 = icmp slt i32 %22, %23 + br i1 %24, label %25, label %47 + +25: ; preds = %21 + %26 = invoke noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv(ptr noundef nonnull align 8 dereferenceable(25) %7) + to label %27 unwind label %43 + +27: ; preds = %25 + %28 = load i32, ptr %26, align 4 + %29 = load ptr, ptr %4, align 8 + %30 = load i32, ptr %9, align 4 + %31 = add nsw i32 %30, 1 + store i32 %31, ptr %9, align 4 + %32 = sext i32 %30 to i64 + %33 = getelementptr inbounds i32, ptr %29, i64 %32 + store i32 %28, ptr %33, align 4 + invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv(ptr noundef nonnull align 8 dereferenceable(25) %7) + to label %34 unwind label %43 + +34: ; preds = %27 + %35 = load ptr, ptr %4, align 8 + %36 = load i32, ptr %10, align 4 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds i32, ptr %35, i64 %37 + invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(25) %7, ptr noundef nonnull align 4 dereferenceable(4) %38) + to label %39 unwind label %43 + +39: ; preds = %34 + br label %40 + +40: ; preds = %39 + %41 = load i32, ptr %10, align 4 + %42 = add nsw i32 %41, 1 + store i32 %42, ptr %10, align 4 + br label %21, !llvm.loop !6 + +43: ; preds = %55, %53, %48, %34, %27, %25 + %44 = landingpad { ptr, i32 } + cleanup + %45 = extractvalue { ptr, i32 } %44, 0 + store ptr %45, ptr %11, align 8 + %46 = extractvalue { ptr, i32 } %44, 1 + store i32 %46, ptr %12, align 4 + call void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(25) %7) #12 + br label %64 + +47: ; preds = %21 + br label %48 + +48: ; preds = %62, %47 + %49 = invoke noundef zeroext i1 @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(25) %7) + to label %50 unwind label %43 + +50: ; preds = %48 + %51 = zext i1 %49 to i32 + %52 = icmp eq i32 %51, 0 + br i1 %52, label %53, label %63 + +53: ; preds = %50 + %54 = invoke noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv(ptr noundef nonnull align 8 dereferenceable(25) %7) + to label %55 unwind label %43 + +55: ; preds = %53 + %56 = load i32, ptr %54, align 4 + %57 = load ptr, ptr %4, align 8 + %58 = load i32, ptr %9, align 4 + %59 = add nsw i32 %58, 1 + store i32 %59, ptr %9, align 4 + %60 = sext i32 %58 to i64 + %61 = getelementptr inbounds i32, ptr %57, i64 %60 + store i32 %56, ptr %61, align 4 + invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv(ptr noundef nonnull align 8 dereferenceable(25) %7) + to label %62 unwind label %43 + +62: ; preds = %55 + br label %48, !llvm.loop !8 + +63: ; preds = %50 + call void @llvm.trap() + unreachable + +64: ; preds = %43 + %65 = load ptr, ptr %11, align 8 + %66 = load i32, ptr %12, align 4 + %67 = insertvalue { ptr, i32 } poison, ptr %65, 0 + %68 = insertvalue { ptr, i32 } %67, i32 %66, 1 + resume { ptr, i32 } %68 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPivEET_S8_RKS4_(ptr noundef nonnull align 8 dereferenceable(25) %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) unnamed_addr #1 comdat align 2 personality ptr @__gxx_personality_v0 { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"class.std::allocator", align 1 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + %16 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %17 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %18 = alloca %"struct.std::greater", align 1 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + store ptr %2, ptr %11, align 8 + store ptr %3, ptr %12, align 8 + %19 = load ptr, ptr %9, align 8 + %20 = getelementptr inbounds %"class.std::priority_queue", ptr %19, i32 0, i32 0 + %21 = load ptr, ptr %10, align 8 + %22 = load ptr, ptr %11, align 8 + store ptr %13, ptr %8, align 8 + %23 = load ptr, ptr %8, align 8 + store ptr %23, ptr %5, align 8 + %24 = load ptr, ptr %5, align 8 + invoke void @_ZNSt6vectorIiSaIiEEC2IPivEET_S4_RKS0_(ptr noundef nonnull align 8 dereferenceable(24) %20, ptr noundef %21, ptr noundef %22, ptr noundef nonnull align 1 dereferenceable(1) %13) + to label %25 unwind label %41 + +25: ; preds = %4 + store ptr %13, ptr %7, align 8 + %26 = load ptr, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %26) #12 + %27 = getelementptr inbounds %"class.std::priority_queue", ptr %19, i32 0, i32 1 + %28 = load ptr, ptr %12, align 8 + %29 = getelementptr inbounds %"class.std::priority_queue", ptr %19, i32 0, i32 0 + %30 = call ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %29) #12 + %31 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %16, i32 0, i32 0 + store ptr %30, ptr %31, align 8 + %32 = getelementptr inbounds %"class.std::priority_queue", ptr %19, i32 0, i32 0 + %33 = call ptr @_ZNSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %32) #12 + %34 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %17, i32 0, i32 0 + store ptr %33, ptr %34, align 8 + %35 = getelementptr inbounds %"class.std::priority_queue", ptr %19, i32 0, i32 1 + %36 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %16, i32 0, i32 0 + %37 = load ptr, ptr %36, align 8 + %38 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %17, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + invoke void @_ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(ptr %37, ptr %39) + to label %40 unwind label %46 + +40: ; preds = %25 + ret void + +41: ; preds = %4 + %42 = landingpad { ptr, i32 } + cleanup + %43 = extractvalue { ptr, i32 } %42, 0 + store ptr %43, ptr %14, align 8 + %44 = extractvalue { ptr, i32 } %42, 1 + store i32 %44, ptr %15, align 4 + store ptr %13, ptr %6, align 8 + %45 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %45) #12 + br label %50 + +46: ; preds = %25 + %47 = landingpad { ptr, i32 } + cleanup + %48 = extractvalue { ptr, i32 } %47, 0 + store ptr %48, ptr %14, align 8 + %49 = extractvalue { ptr, i32 } %47, 1 + store i32 %49, ptr %15, align 4 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %20) #12 + br label %50 + +50: ; preds = %46, %41 + %51 = load ptr, ptr %14, align 8 + %52 = load i32, ptr %15, align 4 + %53 = insertvalue { ptr, i32 } poison, ptr %51, 0 + %54 = insertvalue { ptr, i32 } %53, i32 %52, 1 + resume { ptr, i32 } %54 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv(ptr noundef nonnull align 8 dereferenceable(25) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::priority_queue", ptr %3, i32 0, i32 0 + %5 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt6vectorIiSaIiEE5frontEv(ptr noundef nonnull align 8 dereferenceable(24) %4) #12 + ret ptr %5 +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv(ptr noundef nonnull align 8 dereferenceable(25) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %5 = alloca %"struct.std::greater", align 1 + store ptr %0, ptr %2, align 8 + %6 = load ptr, ptr %2, align 8 + %7 = getelementptr inbounds %"class.std::priority_queue", ptr %6, i32 0, i32 0 + %8 = call ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %7) #12 + %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 + store ptr %8, ptr %9, align 8 + %10 = getelementptr inbounds %"class.std::priority_queue", ptr %6, i32 0, i32 0 + %11 = call ptr @_ZNSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #12 + %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 + store ptr %11, ptr %12, align 8 + %13 = getelementptr inbounds %"class.std::priority_queue", ptr %6, i32 0, i32 1 + %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 + %17 = load ptr, ptr %16, align 8 + call void @_ZSt8pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(ptr %15, ptr %17) + %18 = getelementptr inbounds %"class.std::priority_queue", ptr %6, i32 0, i32 0 + call void @_ZNSt6vectorIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(24) %18) #12 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(25) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %6 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %7 = alloca %"struct.std::greater", align 1 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %8 = load ptr, ptr %3, align 8 + %9 = getelementptr inbounds %"class.std::priority_queue", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %4, align 8 + call void @_ZNSt6vectorIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + %11 = getelementptr inbounds %"class.std::priority_queue", ptr %8, i32 0, i32 0 + %12 = call ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %11) #12 + %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 + store ptr %12, ptr %13, align 8 + %14 = getelementptr inbounds %"class.std::priority_queue", ptr %8, i32 0, i32 0 + %15 = call ptr @_ZNSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %14) #12 + %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %6, i32 0, i32 0 + store ptr %15, ptr %16, align 8 + %17 = getelementptr inbounds %"class.std::priority_queue", ptr %8, i32 0, i32 1 + %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 + %19 = load ptr, ptr %18, align 8 + %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %6, i32 0, i32 0 + %21 = load ptr, ptr %20, align 8 + call void @_ZSt9push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(ptr %19, ptr %21) + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(25) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::priority_queue", ptr %3, i32 0, i32 0 + %5 = call noundef zeroext i1 @_ZNKSt6vectorIiSaIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(24) %4) #12 + ret i1 %5 +} + +; Function Attrs: cold noreturn nounwind +declare void @llvm.trap() #3 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(25) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::priority_queue", ptr %3, i32 0, i32 0 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #12 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10printArrayPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + store i32 0, ptr %5, align 4 + br label %6 + +6: ; preds = %18, %2 + %7 = load i32, ptr %5, align 4 + %8 = load i32, ptr %4, align 4 + %9 = icmp slt i32 %7, %8 + br i1 %9, label %10, label %21 + +10: ; preds = %6 + %11 = load ptr, ptr %3, align 8 + %12 = load i32, ptr %5, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i32, ptr %11, i64 %13 + %15 = load i32, ptr %14, align 4 + %16 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %16, ptr noundef @.str) + br label %18 + +18: ; preds = %10 + %19 = load i32, ptr %5, align 4 + %20 = add nsw i32 %19, 1 + store i32 %20, ptr %5, align 4 + br label %6, !llvm.loop !9 + +21: ; preds = %6 + %22 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #5 + +; 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 [6 x i32], align 16 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + store i32 3, ptr %2, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %3, ptr align 16 @__const.main.arr, i64 24, i1 false) + store i32 6, ptr %4, align 4 + %5 = getelementptr inbounds [6 x i32], ptr %3, i64 0, i64 0 + %6 = load i32, ptr %4, align 4 + %7 = load i32, ptr %2, align 4 + %8 = call noundef i32 @_Z5sortKPiii(ptr noundef %5, i32 noundef %6, i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + %10 = getelementptr inbounds [6 x i32], ptr %3, i64 0, i64 0 + %11 = load i32, ptr %4, align 4 + call void @_Z10printArrayPii(ptr noundef %10, i32 noundef %11) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #7 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::_Vector_base", ptr %6, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::_Vector_base", ptr %6, i32 0, i32 0 + %11 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %10, i32 0, i32 1 + %12 = load ptr, ptr %11, align 8 + %13 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #12 + store ptr %9, ptr %2, align 8 + store ptr %12, ptr %3, align 8 + store ptr %13, ptr %4, align 8 + %14 = load ptr, ptr %2, align 8 + %15 = load ptr, ptr %3, align 8 + invoke void @_ZSt8_DestroyIPiEvT_S1_(ptr noundef %14, ptr noundef %15) + to label %16 unwind label %18 + +16: ; preds = %1 + br label %17 + +17: ; preds = %16 + call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %6) #12 + ret void + +18: ; preds = %1 + %19 = landingpad { ptr, i32 } + catch ptr null + %20 = extractvalue { ptr, i32 } %19, 0 + call void @__clang_call_terminate(ptr %20) #13 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #8 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #12 + call void @_ZSt9terminatev() #13 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %4, i32 0, i32 0 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %7, i32 0, i32 2 + %9 = load ptr, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + %11 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %10, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = ptrtoint ptr %9 to i64 + %14 = ptrtoint ptr %12 to i64 + %15 = sub i64 %13, %14 + %16 = sdiv exact i64 %15, 4 + invoke void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(ptr noundef nonnull align 8 dereferenceable(24) %3, ptr noundef %6, i64 noundef %16) + to label %17 unwind label %19 + +17: ; preds = %1 + %18 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %18) #12 + ret void + +19: ; preds = %1 + %20 = landingpad { ptr, i32 } + catch ptr null + %21 = extractvalue { ptr, i32 } %20, 0 + call void @__clang_call_terminate(ptr %21) #13 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt8_DestroyIPiEvT_S1_(ptr noundef %0, ptr noundef %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load ptr, ptr %4, align 8 + call void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(ptr noundef %5, ptr noundef %6) + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(ptr noundef %0, ptr noundef %1) #2 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef %1, i64 noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i64, align 8 + store ptr %0, ptr %7, align 8 + store ptr %1, ptr %8, align 8 + store i64 %2, ptr %9, align 8 + %10 = load ptr, ptr %7, align 8 + %11 = load ptr, ptr %8, align 8 + %12 = icmp ne ptr %11, null + br i1 %12, label %13, label %20 + +13: ; preds = %3 + %14 = getelementptr inbounds %"struct.std::_Vector_base", ptr %10, i32 0, i32 0 + %15 = load ptr, ptr %8, align 8 + %16 = load i64, ptr %9, align 8 + store ptr %14, ptr %4, align 8 + store ptr %15, ptr %5, align 8 + store i64 %16, ptr %6, align 8 + %17 = load ptr, ptr %4, align 8 + %18 = load ptr, ptr %5, align 8 + %19 = load i64, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %18, i64 noundef %19) + br label %20 + +20: ; preds = %13, %3 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #12 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #14 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #9 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2IPivEET_S4_RKS0_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) unnamed_addr #1 comdat align 2 personality ptr @__gxx_personality_v0 { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + %11 = alloca %"struct.std::random_access_iterator_tag", align 1 + %12 = alloca ptr, align 8 + %13 = alloca i32, align 4 + %14 = alloca %"struct.std::random_access_iterator_tag", align 1 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + store ptr %2, ptr %8, align 8 + store ptr %3, ptr %9, align 8 + %15 = load ptr, ptr %6, align 8 + %16 = load ptr, ptr %9, align 8 + call void @_ZNSt12_Vector_baseIiSaIiEEC2ERKS0_(ptr noundef nonnull align 8 dereferenceable(24) %15, ptr noundef nonnull align 1 dereferenceable(1) %16) #12 + %17 = load ptr, ptr %7, align 8 + %18 = load ptr, ptr %8, align 8 + store ptr %7, ptr %5, align 8 + br label %19 + +19: ; preds = %4 + invoke void @_ZNSt6vectorIiSaIiEE19_M_range_initializeIPiEEvT_S4_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(24) %15, ptr noundef %17, ptr noundef %18) + to label %20 unwind label %21 + +20: ; preds = %19 + ret void + +21: ; preds = %19 + %22 = landingpad { ptr, i32 } + cleanup + %23 = extractvalue { ptr, i32 } %22, 0 + store ptr %23, ptr %12, align 8 + %24 = extractvalue { ptr, i32 } %22, 1 + store i32 %24, ptr %13, align 4 + call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %15) #12 + br label %25 + +25: ; preds = %21 + %26 = load ptr, ptr %12, align 8 + %27 = load i32, ptr %13, align 4 + %28 = insertvalue { ptr, i32 } poison, ptr %26, 0 + %29 = insertvalue { ptr, i32 } %28, i32 %27, 1 + resume { ptr, i32 } %29 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(ptr %0, ptr %1) #0 comdat { + %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %5 = alloca %"struct.std::greater", align 1 + %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 + %7 = alloca %"struct.std::greater", align 1 + %8 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %9 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %10 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 + store ptr %0, ptr %10, align 8 + %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %11, align 8 + call void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEC2ES3_(ptr noundef nonnull align 1 dereferenceable(1) %6) + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %3, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %4, i64 8, i1 false) + %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %8, i32 0, i32 0 + %13 = load ptr, ptr %12, align 8 + %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %9, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + call void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_RT0_(ptr %13, ptr %15, ptr noundef nonnull align 1 dereferenceable(1) %6) + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"struct.std::_Vector_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %5, i32 0, i32 0 + call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef nonnull align 8 dereferenceable(8) %6) #12 + %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"struct.std::_Vector_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %5, i32 0, i32 1 + call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef nonnull align 8 dereferenceable(8) %6) #12 + %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2ERKS0_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 1 dereferenceable(1) %1) unnamed_addr #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Vector_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr noundef nonnull align 1 dereferenceable(1) %7) #12 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE19_M_range_initializeIPiEEvT_S4_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca %"struct.std::forward_iterator_tag", align 1 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca i64, align 8 + store ptr %0, ptr %10, align 8 + store ptr %1, ptr %11, align 8 + store ptr %2, ptr %12, align 8 + %14 = load ptr, ptr %10, align 8 + %15 = load ptr, ptr %11, align 8 + %16 = load ptr, ptr %12, align 8 + store ptr %15, ptr %7, align 8 + store ptr %16, ptr %8, align 8 + %17 = load ptr, ptr %7, align 8 + %18 = load ptr, ptr %8, align 8 + store ptr %7, ptr %6, align 8 + store ptr %17, ptr %4, align 8 + store ptr %18, ptr %5, align 8 + %19 = load ptr, ptr %5, align 8 + %20 = load ptr, ptr %4, align 8 + %21 = ptrtoint ptr %19 to i64 + %22 = ptrtoint ptr %20 to i64 + %23 = sub i64 %21, %22 + %24 = sdiv exact i64 %23, 4 + store i64 %24, ptr %13, align 8 + %25 = load i64, ptr %13, align 8 + %26 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %14) #12 + %27 = call noundef i64 @_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_(i64 noundef %25, ptr noundef nonnull align 1 dereferenceable(1) %26) + %28 = call noundef ptr @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(ptr noundef nonnull align 8 dereferenceable(24) %14, i64 noundef %27) + %29 = getelementptr inbounds %"struct.std::_Vector_base", ptr %14, i32 0, i32 0 + %30 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %29, i32 0, i32 0 + store ptr %28, ptr %30, align 8 + %31 = getelementptr inbounds %"struct.std::_Vector_base", ptr %14, i32 0, i32 0 + %32 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %31, i32 0, i32 0 + %33 = load ptr, ptr %32, align 8 + %34 = load i64, ptr %13, align 8 + %35 = getelementptr inbounds i32, ptr %33, i64 %34 + %36 = getelementptr inbounds %"struct.std::_Vector_base", ptr %14, i32 0, i32 0 + %37 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %36, i32 0, i32 2 + store ptr %35, ptr %37, align 8 + %38 = load ptr, ptr %11, align 8 + %39 = load ptr, ptr %12, align 8 + %40 = getelementptr inbounds %"struct.std::_Vector_base", ptr %14, i32 0, i32 0 + %41 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %40, i32 0, i32 0 + %42 = load ptr, ptr %41, align 8 + %43 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %14) #12 + %44 = call noundef ptr @_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E(ptr noundef %38, ptr noundef %39, ptr noundef %42, ptr noundef nonnull align 1 dereferenceable(1) %43) + %45 = getelementptr inbounds %"struct.std::_Vector_base", ptr %14, i32 0, i32 0 + %46 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %45, i32 0, i32 1 + store ptr %44, ptr %46, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 1 dereferenceable(1) %1) unnamed_addr #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + store ptr %0, ptr %7, align 8 + store ptr %1, ptr %8, align 8 + %9 = load ptr, ptr %7, align 8 + %10 = load ptr, ptr %8, align 8 + store ptr %9, ptr %5, align 8 + store ptr %10, ptr %6, align 8 + %11 = load ptr, ptr %5, align 8 + %12 = load ptr, ptr %6, align 8 + store ptr %11, ptr %3, align 8 + store ptr %12, ptr %4, align 8 + %13 = load ptr, ptr %3, align 8 + call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %9) #12 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %3, i32 0, i32 1 + store ptr null, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %3, i32 0, i32 2 + store ptr null, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + %7 = load ptr, ptr %5, align 8 + %8 = load i64, ptr %6, align 8 + %9 = icmp ne i64 %8, 0 + br i1 %9, label %10, label %16 + +10: ; preds = %2 + %11 = getelementptr inbounds %"struct.std::_Vector_base", ptr %7, i32 0, i32 0 + %12 = load i64, ptr %6, align 8 + store ptr %11, ptr %3, align 8 + store i64 %12, ptr %4, align 8 + %13 = load ptr, ptr %3, align 8 + %14 = load i64, ptr %4, align 8 + %15 = call noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %13, i64 noundef %14, ptr noundef null) + br label %17 + +16: ; preds = %2 + br label %17 + +17: ; preds = %16, %10 + %18 = phi ptr [ %15, %10 ], [ null, %16 ] + ret ptr %18 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_(i64 noundef %0, ptr noundef nonnull align 1 dereferenceable(1) %1) #1 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"class.std::allocator", align 1 + store i64 %0, ptr %8, align 8 + store ptr %1, ptr %9, align 8 + %11 = load i64, ptr %8, align 8 + %12 = load ptr, ptr %9, align 8 + store ptr %10, ptr %5, align 8 + store ptr %12, ptr %6, align 8 + %13 = load ptr, ptr %5, align 8 + %14 = load ptr, ptr %6, align 8 + store ptr %13, ptr %3, align 8 + store ptr %14, ptr %4, align 8 + %15 = load ptr, ptr %3, align 8 + %16 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %10) #12 + %17 = icmp ugt i64 %11, %16 + store ptr %10, ptr %7, align 8 + %18 = load ptr, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %18) #12 + br i1 %17, label %19, label %20 + +19: ; preds = %2 + call void @_ZSt20__throw_length_errorPKc(ptr noundef @.str.2) #15 + unreachable + +20: ; preds = %2 + %21 = load i64, ptr %8, align 8 + ret i64 %21 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #0 comdat { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = load ptr, ptr %7, align 8 + %12 = call noundef ptr @_ZSt18uninitialized_copyIPiS0_ET0_T_S2_S1_(ptr noundef %9, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 2305843009213693951 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 4611686018427387903 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #15 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #15 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 4 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #16 + ret ptr %20 +} + +; Function Attrs: noreturn +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #10 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #11 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %0) #2 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %5, align 8 + store i64 2305843009213693951, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + store ptr %8, ptr %4, align 8 + %9 = load ptr, ptr %4, align 8 + store ptr %9, ptr %3, align 8 + %10 = load ptr, ptr %3, align 8 + store ptr %10, ptr %2, align 8 + %11 = load ptr, ptr %2, align 8 + store i64 2305843009213693951, ptr %7, align 8 + %12 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + to label %13 unwind label %15 + +13: ; preds = %1 + %14 = load i64, ptr %12, align 8 + ret i64 %14 + +15: ; preds = %1 + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #13 + unreachable +} + +; Function Attrs: noreturn +declare void @_ZSt20__throw_length_errorPKc(ptr noundef) #10 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt18uninitialized_copyIPiS0_ET0_T_S2_S1_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i8, align 1 + %8 = alloca i8, align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + store i8 1, ptr %7, align 1 + store i8 1, ptr %8, align 1 + %9 = load ptr, ptr %4, align 8 + %10 = load ptr, ptr %5, align 8 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIPiS2_EET0_T_S4_S3_(ptr noundef %9, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIPiS2_EET0_T_S4_S3_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt4copyIPiS0_ET0_T_S2_S1_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt4copyIPiS0_ET0_T_S2_S1_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPiET_S1_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPiET_S1_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt13__copy_move_aILb0EPiS0_ET1_T0_S2_S1_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPiS0_ET1_T0_S2_S1_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %7) #12 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %9) #12 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %11) #12 + %13 = call noundef ptr @_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPiET_RKS1_S1_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPiET_S1_(ptr noundef %0) #2 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPiET_RKS1_S1_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt14__copy_move_a2ILb0EPiS0_ET1_T0_S2_S1_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %0) #2 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPiS0_ET1_T0_S2_S1_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiiEEPT0_PT_S6_S4_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiiEEPT0_PT_S6_S4_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 4 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %21 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load i64, ptr %7, align 8 + %20 = mul i64 4, %19 + call void @llvm.memmove.p0.p0.i64(ptr align 4 %17, ptr align 4 %18, i64 %20, i1 false) + br label %28 + +21: ; preds = %3 + %22 = load i64, ptr %7, align 8 + %23 = icmp eq i64 %22, 1 + br i1 %23, label %24, label %27 + +24: ; preds = %21 + %25 = load ptr, ptr %6, align 8 + %26 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIiiEEvPT_PT0_(ptr noundef %25, ptr noundef %26) + br label %27 + +27: ; preds = %24, %21 + br label %28 + +28: ; preds = %27, %16 + %29 = load ptr, ptr %6, align 8 + %30 = load i64, ptr %7, align 8 + %31 = getelementptr inbounds i32, ptr %29, i64 %30 + ret ptr %31 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memmove.p0.p0.i64(ptr nocapture writeonly, ptr nocapture readonly, i64, i1 immarg) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIiiEEvPT_PT0_(ptr noundef %0, ptr noundef %1) #2 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = load i32, ptr %5, align 4 + %7 = load ptr, ptr %3, align 8 + store i32 %6, ptr %7, align 4 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEC2ES3_(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca %"struct.std::greater", align 1 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %4, i32 0, i32 0 + ret void +} + +; 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_(ptr %0, ptr %1, ptr noundef nonnull align 1 dereferenceable(1) %2) #0 comdat { + %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca i32, align 4 + %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %11 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 + %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 + store ptr %0, ptr %13, align 8 + %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 + store ptr %1, ptr %14, align 8 + store ptr %2, ptr %6, align 8 + %15 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(ptr noundef nonnull align 8 dereferenceable(8) %5, ptr noundef nonnull align 8 dereferenceable(8) %4) #12 + %16 = icmp slt i64 %15, 2 + br i1 %16, label %17, label %18 + +17: ; preds = %3 + br label %41 + +18: ; preds = %3 + %19 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(ptr noundef nonnull align 8 dereferenceable(8) %5, ptr noundef nonnull align 8 dereferenceable(8) %4) #12 + store i64 %19, ptr %7, align 8 + %20 = load i64, ptr %7, align 8 + %21 = sub nsw i64 %20, 2 + %22 = sdiv i64 %21, 2 + store i64 %22, ptr %8, align 8 + br label %23 + +23: ; preds = %18, %38 + %24 = load i64, ptr %8, align 8 + %25 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %4, i64 noundef %24) #12 + %26 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %10, i32 0, i32 0 + store ptr %25, ptr %26, align 8 + %27 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #12 + %28 = load i32, ptr %27, align 4 + store i32 %28, ptr %9, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %11, ptr align 8 %4, i64 8, i1 false) + %29 = load i64, ptr %8, align 8 + %30 = load i64, ptr %7, align 8 + %31 = load i32, ptr %9, align 4 + %32 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %12, ptr align 1 %32, i64 1, i1 false) + %33 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %11, i32 0, i32 0 + %34 = load ptr, ptr %33, align 8 + call void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_T0_SD_T1_T2_(ptr %34, i64 noundef %29, i64 noundef %30, i32 noundef %31) + %35 = load i64, ptr %8, align 8 + %36 = icmp eq i64 %35, 0 + br i1 %36, label %37, label %38 + +37: ; preds = %23 + br label %41 + +38: ; preds = %23 + %39 = load i64, ptr %8, align 8 + %40 = add nsw i64 %39, -1 + store i64 %40, ptr %8, align 8 + br label %23, !llvm.loop !10 + +41: ; preds = %37, %17 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %5) #12 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %8) #12 + %10 = load ptr, ptr %9, align 8 + %11 = ptrtoint ptr %7 to i64 + %12 = ptrtoint ptr %10 to i64 + %13 = sub i64 %11, %12 + %14 = sdiv exact i64 %13, 4 + ret i64 %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %0, i64 noundef %1) #2 comdat align 2 { + %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + %10 = load i64, ptr %5, align 8 + %11 = getelementptr inbounds i32, ptr %9, i64 %10 + store ptr %11, ptr %6, align 8 + call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 8 dereferenceable(8) %6) #12 + %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 + %13 = load ptr, ptr %12, align 8 + ret ptr %13 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; 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_(ptr %0, i64 noundef %1, i64 noundef %2, i32 noundef %3) #0 comdat { + %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca i32, align 4 + %10 = alloca i64, align 8 + %11 = alloca i64, align 8 + %12 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %13 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %14 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %15 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %16 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %17 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %18 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val", align 1 + %19 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 + store ptr %0, ptr %20, align 8 + store i64 %1, ptr %7, align 8 + store i64 %2, ptr %8, align 8 + store i32 %3, ptr %9, align 4 + %21 = load i64, ptr %7, align 8 + store i64 %21, ptr %10, align 8 + %22 = load i64, ptr %7, align 8 + store i64 %22, ptr %11, align 8 + br label %23 + +23: ; preds = %48, %4 + %24 = load i64, ptr %11, align 8 + %25 = load i64, ptr %8, align 8 + %26 = sub nsw i64 %25, 1 + %27 = sdiv i64 %26, 2 + %28 = icmp slt i64 %24, %27 + br i1 %28, label %29, label %59 + +29: ; preds = %23 + %30 = load i64, ptr %11, align 8 + %31 = add nsw i64 %30, 1 + %32 = mul nsw i64 2, %31 + store i64 %32, ptr %11, align 8 + %33 = load i64, ptr %11, align 8 + %34 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %33) #12 + %35 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %12, i32 0, i32 0 + store ptr %34, ptr %35, align 8 + %36 = load i64, ptr %11, align 8 + %37 = sub nsw i64 %36, 1 + %38 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %37) #12 + %39 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %13, i32 0, i32 0 + store ptr %38, ptr %39, align 8 + %40 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %12, i32 0, i32 0 + %41 = load ptr, ptr %40, align 8 + %42 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %13, i32 0, i32 0 + %43 = load ptr, ptr %42, align 8 + %44 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEESB_EEbT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %6, ptr %41, ptr %43) + br i1 %44, label %45, label %48 + +45: ; preds = %29 + %46 = load i64, ptr %11, align 8 + %47 = add nsw i64 %46, -1 + store i64 %47, ptr %11, align 8 + br label %48 + +48: ; preds = %45, %29 + %49 = load i64, ptr %11, align 8 + %50 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %49) #12 + %51 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %14, i32 0, i32 0 + store ptr %50, ptr %51, align 8 + %52 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %14) #12 + %53 = load i32, ptr %52, align 4 + %54 = load i64, ptr %7, align 8 + %55 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %54) #12 + %56 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %15, i32 0, i32 0 + store ptr %55, ptr %56, align 8 + %57 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %15) #12 + store i32 %53, ptr %57, align 4 + %58 = load i64, ptr %11, align 8 + store i64 %58, ptr %7, align 8 + br label %23, !llvm.loop !11 + +59: ; preds = %23 + %60 = load i64, ptr %8, align 8 + %61 = and i64 %60, 1 + %62 = icmp eq i64 %61, 0 + br i1 %62, label %63, label %85 + +63: ; preds = %59 + %64 = load i64, ptr %11, align 8 + %65 = load i64, ptr %8, align 8 + %66 = sub nsw i64 %65, 2 + %67 = sdiv i64 %66, 2 + %68 = icmp eq i64 %64, %67 + br i1 %68, label %69, label %85 + +69: ; preds = %63 + %70 = load i64, ptr %11, align 8 + %71 = add nsw i64 %70, 1 + %72 = mul nsw i64 2, %71 + store i64 %72, ptr %11, align 8 + %73 = load i64, ptr %11, align 8 + %74 = sub nsw i64 %73, 1 + %75 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %74) #12 + %76 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %16, i32 0, i32 0 + store ptr %75, ptr %76, align 8 + %77 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %16) #12 + %78 = load i32, ptr %77, align 4 + %79 = load i64, ptr %7, align 8 + %80 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %79) #12 + %81 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %17, i32 0, i32 0 + store ptr %80, ptr %81, align 8 + %82 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %17) #12 + store i32 %78, ptr %82, align 4 + %83 = load i64, ptr %11, align 8 + %84 = sub nsw i64 %83, 1 + store i64 %84, ptr %7, align 8 + br label %85 + +85: ; preds = %69, %63, %59 + call void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2EONS0_15_Iter_comp_iterIS3_EE(ptr noundef nonnull align 1 dereferenceable(1) %18, ptr noundef nonnull align 1 dereferenceable(1) %6) + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %19, ptr align 8 %5, i64 8, i1 false) + %86 = load i64, ptr %7, align 8 + %87 = load i64, ptr %10, align 8 + %88 = load i32, ptr %9, align 4 + %89 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %19, i32 0, i32 0 + %90 = load ptr, ptr %89, align 8 + call void @_ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops14_Iter_comp_valISt7greaterIiEEEEvT_T0_SD_T1_RT2_(ptr %90, i64 noundef %86, i64 noundef %87, i32 noundef %88, ptr noundef nonnull align 1 dereferenceable(1) %18) + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) unnamed_addr #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %7, align 8 + store ptr %8, ptr %6, align 8 + ret void +} + +; 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_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr %1, ptr %2) #0 comdat align 2 { + %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %6 = alloca ptr, align 8 + %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %7, align 8 + %8 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 + store ptr %2, ptr %8, align 8 + store ptr %0, ptr %6, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %9, i32 0, i32 0 + %11 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %4) #12 + %12 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %5) #12 + %13 = call noundef zeroext i1 @_ZNKSt7greaterIiEclERKiS2_(ptr noundef nonnull align 1 dereferenceable(1) %10, ptr noundef nonnull align 4 dereferenceable(4) %11, ptr noundef nonnull align 4 dereferenceable(4) %12) + ret i1 %13 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2EONS0_15_Iter_comp_iterIS3_EE(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %1) unnamed_addr #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %7, i32 0, i32 0 + ret void +} + +; 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_(ptr %0, i64 noundef %1, i64 noundef %2, i32 noundef %3, ptr noundef nonnull align 1 dereferenceable(1) %4) #0 comdat { + %6 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca i32, align 4 + %10 = alloca ptr, align 8 + %11 = alloca i64, align 8 + %12 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %13 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %14 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %15 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %6, i32 0, i32 0 + store ptr %0, ptr %16, align 8 + store i64 %1, ptr %7, align 8 + store i64 %2, ptr %8, align 8 + store i32 %3, ptr %9, align 4 + store ptr %4, ptr %10, align 8 + %17 = load i64, ptr %7, align 8 + %18 = sub nsw i64 %17, 1 + %19 = sdiv i64 %18, 2 + store i64 %19, ptr %11, align 8 + br label %20 + +20: ; preds = %34, %5 + %21 = load i64, ptr %7, align 8 + %22 = load i64, ptr %8, align 8 + %23 = icmp sgt i64 %21, %22 + br i1 %23, label %24, label %32 + +24: ; preds = %20 + %25 = load ptr, ptr %10, align 8 + %26 = load i64, ptr %11, align 8 + %27 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %6, i64 noundef %26) #12 + %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %12, i32 0, i32 0 + store ptr %27, ptr %28, align 8 + %29 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %12, i32 0, i32 0 + %30 = load ptr, ptr %29, align 8 + %31 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEEiEEbT_RT0_(ptr noundef nonnull align 1 dereferenceable(1) %25, ptr %30, ptr noundef nonnull align 4 dereferenceable(4) %9) + br label %32 + +32: ; preds = %24, %20 + %33 = phi i1 [ false, %20 ], [ %31, %24 ] + br i1 %33, label %34, label %48 + +34: ; preds = %32 + %35 = load i64, ptr %11, align 8 + %36 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %6, i64 noundef %35) #12 + %37 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %13, i32 0, i32 0 + store ptr %36, ptr %37, align 8 + %38 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %13) #12 + %39 = load i32, ptr %38, align 4 + %40 = load i64, ptr %7, align 8 + %41 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %6, i64 noundef %40) #12 + %42 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %14, i32 0, i32 0 + store ptr %41, ptr %42, align 8 + %43 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %14) #12 + store i32 %39, ptr %43, align 4 + %44 = load i64, ptr %11, align 8 + store i64 %44, ptr %7, align 8 + %45 = load i64, ptr %7, align 8 + %46 = sub nsw i64 %45, 1 + %47 = sdiv i64 %46, 2 + store i64 %47, ptr %11, align 8 + br label %20, !llvm.loop !12 + +48: ; preds = %32 + %49 = load i32, ptr %9, align 4 + %50 = load i64, ptr %7, align 8 + %51 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %6, i64 noundef %50) #12 + %52 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %15, i32 0, i32 0 + store ptr %51, ptr %52, align 8 + %53 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %15) #12 + store i32 %49, ptr %53, align 4 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt7greaterIiEclERKiS2_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 4 dereferenceable(4) %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i32, ptr %8, align 4 + %10 = load ptr, ptr %6, align 8 + %11 = load i32, ptr %10, align 4 + %12 = icmp sgt i32 %9, %11 + ret i1 %12 +} + +; 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_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #2 comdat align 2 { + %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %7, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", ptr %8, i32 0, i32 0 + %10 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %4) #12 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef zeroext i1 @_ZNKSt7greaterIiEclERKiS2_(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef nonnull align 4 dereferenceable(4) %10, ptr noundef nonnull align 4 dereferenceable(4) %11) + ret i1 %12 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt6vectorIiSaIiEE5frontEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + %5 = call ptr @_ZNKSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %4) #12 + %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", ptr %3, i32 0, i32 0 + store ptr %5, ptr %6, align 8 + %7 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %3) #12 + ret ptr %7 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNKSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"struct.std::_Vector_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %5, i32 0, i32 0 + call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef nonnull align 8 dereferenceable(8) %6) #12 + %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) unnamed_addr #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %7, align 8 + store ptr %8, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt8pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(ptr %0, ptr %1) #0 comdat { + %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %5 = alloca %"struct.std::greater", align 1 + %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 + %7 = alloca %"struct.std::greater", align 1 + %8 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %9 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 + store ptr %0, ptr %11, align 8 + %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %12, align 8 + %13 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(ptr noundef nonnull align 8 dereferenceable(8) %4, ptr noundef nonnull align 8 dereferenceable(8) %3) #12 + %14 = icmp sgt i64 %13, 1 + br i1 %14, label %15, label %23 + +15: ; preds = %2 + call void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEC2ES3_(ptr noundef nonnull align 1 dereferenceable(1) %6) + %16 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmmEv(ptr noundef nonnull align 8 dereferenceable(8) %4) #12 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %3, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %4, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %10, ptr align 8 %4, i64 8, i1 false) + %17 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %8, i32 0, i32 0 + %18 = load ptr, ptr %17, align 8 + %19 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %9, i32 0, i32 0 + %20 = load ptr, ptr %19, align 8 + %21 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %10, i32 0, i32 0 + %22 = load ptr, ptr %21, align 8 + call void @_ZSt10__pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_SC_RT0_(ptr %18, ptr %20, ptr %22, ptr noundef nonnull align 1 dereferenceable(1) %6) + br label %23 + +23: ; preds = %15, %2 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_Vector_base", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %8, i32 0, i32 1 + %10 = load ptr, ptr %9, align 8 + %11 = getelementptr inbounds i32, ptr %10, i32 -1 + store ptr %11, ptr %9, align 8 + %12 = getelementptr inbounds %"struct.std::_Vector_base", ptr %7, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Vector_base", ptr %7, i32 0, i32 0 + %14 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %13, i32 0, i32 1 + %15 = load ptr, ptr %14, align 8 + store ptr %12, ptr %4, align 8 + store ptr %15, ptr %5, align 8 + %16 = load ptr, ptr %4, align 8 + %17 = load ptr, ptr %5, align 8 + store ptr %16, ptr %2, align 8 + store ptr %17, ptr %3, align 8 + %18 = load ptr, ptr %2, align 8 + %19 = load ptr, ptr %3, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmmEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds i32, ptr %5, i32 -1 + store ptr %6, ptr %4, align 8 + ret ptr %3 +} + +; 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_(ptr %0, ptr %1, ptr %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #0 comdat { + %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %6 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %7 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 + %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 + store ptr %0, ptr %12, align 8 + %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %6, i32 0, i32 0 + store ptr %1, ptr %13, align 8 + %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %7, i32 0, i32 0 + store ptr %2, ptr %14, align 8 + store ptr %3, ptr %8, align 8 + %15 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #12 + %16 = load i32, ptr %15, align 4 + store i32 %16, ptr %9, align 4 + %17 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %5) #12 + %18 = load i32, ptr %17, align 4 + %19 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #12 + store i32 %18, ptr %19, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %10, ptr align 8 %5, i64 8, i1 false) + %20 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %5) #12 + %21 = load i32, ptr %9, align 4 + %22 = load ptr, ptr %8, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %11, ptr align 1 %22, i64 1, i1 false) + %23 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %10, i32 0, i32 0 + %24 = load ptr, ptr %23, align 8 + call void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_T0_SD_T1_T2_(ptr %24, i64 noundef 0, i64 noundef %20, i32 noundef %21) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %12 = load ptr, ptr %9, align 8 + %13 = getelementptr inbounds %"struct.std::_Vector_base", ptr %12, i32 0, i32 0 + %14 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %13, i32 0, i32 1 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %"struct.std::_Vector_base", ptr %12, i32 0, i32 0 + %17 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %16, i32 0, i32 2 + %18 = load ptr, ptr %17, align 8 + %19 = icmp ne ptr %15, %18 + br i1 %19, label %20, label %37 + +20: ; preds = %2 + %21 = getelementptr inbounds %"struct.std::_Vector_base", ptr %12, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Vector_base", ptr %12, i32 0, i32 0 + %23 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %22, i32 0, i32 1 + %24 = load ptr, ptr %23, align 8 + %25 = load ptr, ptr %10, align 8 + store ptr %21, ptr %6, align 8 + store ptr %24, ptr %7, align 8 + store ptr %25, ptr %8, align 8 + %26 = load ptr, ptr %6, align 8 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %8, align 8 + store ptr %26, ptr %3, align 8 + store ptr %27, ptr %4, align 8 + store ptr %28, ptr %5, align 8 + %29 = load ptr, ptr %3, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + %32 = load i32, ptr %31, align 4 + store i32 %32, ptr %30, align 4 + %33 = getelementptr inbounds %"struct.std::_Vector_base", ptr %12, i32 0, i32 0 + %34 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %33, i32 0, i32 1 + %35 = load ptr, ptr %34, align 8 + %36 = getelementptr inbounds i32, ptr %35, i32 1 + store ptr %36, ptr %34, align 8 + br label %43 + +37: ; preds = %2 + %38 = call ptr @_ZNSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %12) #12 + %39 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %11, i32 0, i32 0 + store ptr %38, ptr %39, align 8 + %40 = load ptr, ptr %10, align 8 + %41 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %11, i32 0, i32 0 + %42 = load ptr, ptr %41, align 8 + call void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr %42, ptr noundef nonnull align 4 dereferenceable(4) %40) + br label %43 + +43: ; preds = %37, %20 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt9push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(ptr %0, ptr %1) #0 comdat { + %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %5 = alloca %"struct.std::greater", align 1 + %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val", align 1 + %7 = alloca %"struct.std::greater", align 1 + %8 = alloca i32, align 4 + %9 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 + store ptr %0, ptr %11, align 8 + %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %12, align 8 + call void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2ES3_(ptr noundef nonnull align 1 dereferenceable(1) %6) + %13 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmiEl(ptr noundef nonnull align 8 dereferenceable(8) %4, i64 noundef 1) #12 + %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %9, i32 0, i32 0 + store ptr %13, ptr %14, align 8 + %15 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #12 + %16 = load i32, ptr %15, align 4 + store i32 %16, ptr %8, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %10, ptr align 8 %3, i64 8, i1 false) + %17 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(ptr noundef nonnull align 8 dereferenceable(8) %4, ptr noundef nonnull align 8 dereferenceable(8) %3) #12 + %18 = sub nsw i64 %17, 1 + %19 = load i32, ptr %8, align 4 + %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %10, i32 0, i32 0 + %21 = load ptr, ptr %20, align 8 + call void @_ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops14_Iter_comp_valISt7greaterIiEEEEvT_T0_SD_T1_RT2_(ptr %21, i64 noundef %18, i64 noundef 0, i32 noundef %19, ptr noundef nonnull align 1 dereferenceable(1) %6) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca i64, align 8 + %14 = alloca ptr, align 8 + %15 = alloca ptr, align 8 + %16 = alloca i64, align 8 + %17 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %18 = alloca ptr, align 8 + %19 = alloca ptr, align 8 + %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %10, i32 0, i32 0 + store ptr %1, ptr %20, align 8 + store ptr %0, ptr %11, align 8 + store ptr %2, ptr %12, align 8 + %21 = load ptr, ptr %11, align 8 + %22 = call noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(ptr noundef nonnull align 8 dereferenceable(24) %21, i64 noundef 1, ptr noundef @.str.3) + store i64 %22, ptr %13, align 8 + %23 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %24 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %23, i32 0, i32 0 + %25 = load ptr, ptr %24, align 8 + store ptr %25, ptr %14, align 8 + %26 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %27 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %26, i32 0, i32 1 + %28 = load ptr, ptr %27, align 8 + store ptr %28, ptr %15, align 8 + %29 = call ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %21) #12 + %30 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %17, i32 0, i32 0 + store ptr %29, ptr %30, align 8 + %31 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef nonnull align 8 dereferenceable(8) %17) #12 + store i64 %31, ptr %16, align 8 + %32 = load i64, ptr %13, align 8 + %33 = call noundef ptr @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(ptr noundef nonnull align 8 dereferenceable(24) %21, i64 noundef %32) + store ptr %33, ptr %18, align 8 + %34 = load ptr, ptr %18, align 8 + store ptr %34, ptr %19, align 8 + %35 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %36 = load ptr, ptr %18, align 8 + %37 = load i64, ptr %16, align 8 + %38 = getelementptr inbounds i32, ptr %36, i64 %37 + %39 = load ptr, ptr %12, align 8 + store ptr %35, ptr %7, align 8 + store ptr %38, ptr %8, align 8 + store ptr %39, ptr %9, align 8 + %40 = load ptr, ptr %7, align 8 + %41 = load ptr, ptr %8, align 8 + %42 = load ptr, ptr %9, align 8 + store ptr %40, ptr %4, align 8 + store ptr %41, ptr %5, align 8 + store ptr %42, ptr %6, align 8 + %43 = load ptr, ptr %4, align 8 + %44 = load ptr, ptr %5, align 8 + %45 = load ptr, ptr %6, align 8 + %46 = load i32, ptr %45, align 4 + store i32 %46, ptr %44, align 4 + store ptr null, ptr %19, align 8 + %47 = load ptr, ptr %14, align 8 + %48 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #12 + %49 = load ptr, ptr %48, align 8 + %50 = load ptr, ptr %18, align 8 + %51 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %21) #12 + %52 = call noundef ptr @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(ptr noundef %47, ptr noundef %49, ptr noundef %50, ptr noundef nonnull align 1 dereferenceable(1) %51) #12 + store ptr %52, ptr %19, align 8 + %53 = load ptr, ptr %19, align 8 + %54 = getelementptr inbounds i32, ptr %53, i32 1 + store ptr %54, ptr %19, align 8 + %55 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #12 + %56 = load ptr, ptr %55, align 8 + %57 = load ptr, ptr %15, align 8 + %58 = load ptr, ptr %19, align 8 + %59 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %21) #12 + %60 = call noundef ptr @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(ptr noundef %56, ptr noundef %57, ptr noundef %58, ptr noundef nonnull align 1 dereferenceable(1) %59) #12 + store ptr %60, ptr %19, align 8 + %61 = load ptr, ptr %14, align 8 + %62 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %63 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %62, i32 0, i32 2 + %64 = load ptr, ptr %63, align 8 + %65 = load ptr, ptr %14, align 8 + %66 = ptrtoint ptr %64 to i64 + %67 = ptrtoint ptr %65 to i64 + %68 = sub i64 %66, %67 + %69 = sdiv exact i64 %68, 4 + call void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(ptr noundef nonnull align 8 dereferenceable(24) %21, ptr noundef %61, i64 noundef %69) + %70 = load ptr, ptr %18, align 8 + %71 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %72 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %71, i32 0, i32 0 + store ptr %70, ptr %72, align 8 + %73 = load ptr, ptr %19, align 8 + %74 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %75 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %74, i32 0, i32 1 + store ptr %73, ptr %75, align 8 + %76 = load ptr, ptr %18, align 8 + %77 = load i64, ptr %13, align 8 + %78 = getelementptr inbounds i32, ptr %76, i64 %77 + %79 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %80 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %79, i32 0, i32 2 + store ptr %78, ptr %80, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #12 + %11 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #12 + %12 = sub i64 %10, %11 + %13 = load i64, ptr %5, align 8 + %14 = icmp ult i64 %12, %13 + br i1 %14, label %15, label %17 + +15: ; preds = %3 + %16 = load ptr, ptr %6, align 8 + call void @_ZSt20__throw_length_errorPKc(ptr noundef %16) #15 + unreachable + +17: ; preds = %3 + %18 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #12 + %19 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #12 + store i64 %19, ptr %8, align 8 + %20 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %8, ptr noundef nonnull align 8 dereferenceable(8) %5) + %21 = load i64, ptr %20, align 8 + %22 = add i64 %18, %21 + store i64 %22, ptr %7, align 8 + %23 = load i64, ptr %7, align 8 + %24 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #12 + %25 = icmp ult i64 %23, %24 + br i1 %25, label %30, label %26 + +26: ; preds = %17 + %27 = load i64, ptr %7, align 8 + %28 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #12 + %29 = icmp ugt i64 %27, %28 + br i1 %29, label %30, label %32 + +30: ; preds = %26, %17 + %31 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #12 + br label %34 + +32: ; preds = %26 + %33 = load i64, ptr %7, align 8 + br label %34 + +34: ; preds = %32, %30 + %35 = phi i64 [ %31, %30 ], [ %33, %32 ] + ret i64 %35 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #2 comdat align 2 { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = load ptr, ptr %7, align 8 + %12 = load ptr, ptr %8, align 8 + %13 = call noundef ptr @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(ptr noundef %9, ptr noundef %10, ptr noundef %11, ptr noundef nonnull align 1 dereferenceable(1) %12) #12 + ret ptr %13 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #12 + %5 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #12 + ret i64 %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %4, i32 0, i32 1 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + %10 = ptrtoint ptr %6 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 4 + ret i64 %13 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #2 comdat { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %9) #12 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %11) #12 + %13 = load ptr, ptr %7, align 8 + %14 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %13) #12 + %15 = load ptr, ptr %8, align 8 + %16 = call noundef ptr @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E(ptr noundef %10, ptr noundef %12, ptr noundef %14, ptr noundef nonnull align 1 dereferenceable(1) %15) #12 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #2 comdat { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i64, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = load ptr, ptr %5, align 8 + %12 = ptrtoint ptr %10 to i64 + %13 = ptrtoint ptr %11 to i64 + %14 = sub i64 %12, %13 + %15 = sdiv exact i64 %14, 4 + store i64 %15, ptr %9, align 8 + %16 = load i64, ptr %9, align 8 + %17 = icmp sgt i64 %16, 0 + br i1 %17, label %18, label %23 + +18: ; preds = %4 + %19 = load ptr, ptr %7, align 8 + %20 = load ptr, ptr %5, align 8 + %21 = load i64, ptr %9, align 8 + %22 = mul i64 %21, 4 + call void @llvm.memmove.p0.p0.i64(ptr align 4 %19, ptr align 4 %20, i64 %22, i1 false) + br label %23 + +23: ; preds = %18, %4 + %24 = load ptr, ptr %7, align 8 + %25 = load i64, ptr %9, align 8 + %26 = getelementptr inbounds i32, ptr %24, i64 %25 + ret ptr %26 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2ES3_(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca %"struct.std::greater", align 1 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", ptr %4, i32 0, i32 0 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmiEl(ptr noundef nonnull align 8 dereferenceable(8) %0, i64 noundef %1) #2 comdat align 2 { + %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + %10 = load i64, ptr %5, align 8 + %11 = sub i64 0, %10 + %12 = getelementptr inbounds i32, ptr %9, i64 %11 + store ptr %12, ptr %6, align 8 + call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 8 dereferenceable(8) %6) #12 + %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + ret ptr %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt6vectorIiSaIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 + %4 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + %6 = call ptr @_ZNKSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %5) #12 + %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", ptr %3, i32 0, i32 0 + store ptr %6, ptr %7, align 8 + %8 = call ptr @_ZNKSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %5) #12 + %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", ptr %4, i32 0, i32 0 + store ptr %8, ptr %9, align 8 + %10 = call noundef zeroext i1 @_ZN9__gnu_cxxeqIPKiSt6vectorIiSaIiEEEEbRKNS_17__normal_iteratorIT_T0_EESB_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 8 dereferenceable(8) %4) #12 + ret i1 %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxxeqIPKiSt6vectorIiSaIiEEEEbRKNS_17__normal_iteratorIT_T0_EESB_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %5) #12 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %8) #12 + %10 = load ptr, ptr %9, align 8 + %11 = icmp eq ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNKSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"struct.std::_Vector_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %5, i32 0, i32 1 + call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef nonnull align 8 dereferenceable(8) %6) #12 + %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +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 = { 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 = { 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 = { cold noreturn nounwind } +attributes #4 = { 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 = { "frame-pointer"="all" "no-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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #8 = { noinline noreturn 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 = { 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 = { 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 #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 = { nounwind } +attributes #13 = { noreturn nounwind } +attributes #14 = { builtin nounwind } +attributes #15 = { noreturn } +attributes #16 = { builtin allocsize(0) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/aho-corasick-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/aho-corasick-algorithm.ll new file mode 100644 index 000000000..f61d4f72a --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/aho-corasick-algorithm.ll @@ -0,0 +1,3152 @@ +; ModuleID = 'PE-benchmarks/aho-corasick-algorithm.cpp' +source_filename = "PE-benchmarks/aho-corasick-algorithm.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%"class.std::queue" = type { %"class.std::deque" } +%"class.std::deque" = type { %"class.std::_Deque_base" } +%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } +%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } +%"struct.std::_Deque_base>::_Deque_impl_data" = type { ptr, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } +%"struct.std::_Deque_iterator" = type { ptr, ptr, ptr, ptr } +%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } +%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } +%union.anon = type { i64, [8 x i8] } +%"class.std::allocator" = type { i8 } +%"struct.std::forward_iterator_tag" = type { i8 } +%"class.std::allocator.3" = type { i8 } +%struct._Guard = type { ptr } + +$_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any + +$_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi = comdat any + +$_ZNKSt5queueIiSt5dequeIiSaIiEEE4sizeEv = comdat any + +$_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv = comdat any + +$_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv = comdat any + +$_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any + +$_ZNSt5dequeIiSaIiEED2Ev = comdat any + +$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any + +$_ZNSt5dequeIiSaIiEE5beginEv = comdat any + +$_ZNSt5dequeIiSaIiEE3endEv = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any + +$_ZSt16__deque_buf_sizem = comdat any + +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any + +$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any + +$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any + +$_ZNSt15__new_allocatorIPiED2Ev = comdat any + +$_ZNSt15__new_allocatorIiED2Ev = comdat any + +$_ZNSt15__new_allocatorIcED2Ev = comdat any + +$_ZNSt11char_traitsIcE6lengthEPKc = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any + +$_ZNSt5dequeIiSaIiEEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any + +$_ZSt3maxImERKT_S2_S2_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any + +$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any + +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any + +$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any + +$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any + +$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any + +$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any + +$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any + +$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any + +$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any + +$_ZSt3minImERKT_S2_S2_ = comdat any + +$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any + +$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any + +$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any + +$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__miter_baseIPPiET_S2_ = comdat any + +$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any + +$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__niter_baseIPPiET_S2_ = comdat any + +$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_ = comdat any + +$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNSt5dequeIiSaIiEE5frontEv = comdat any + +$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any + +$_ZNSt5dequeIiSaIiEE9pop_frontEv = comdat any + +$_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv = 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 global %"class.std::basic_ostream", align 8 +@.str = private unnamed_addr constant [6 x i8] c"Word \00", align 1 +@.str.1 = private unnamed_addr constant [15 x i8] c" appears from \00", align 1 +@.str.2 = private unnamed_addr constant [5 x i8] c" to \00", align 1 +@.str.3 = private unnamed_addr constant [3 x i8] c"he\00", align 1 +@.str.4 = private unnamed_addr constant [4 x i8] c"she\00", align 1 +@.str.5 = private unnamed_addr constant [5 x i8] c"hers\00", align 1 +@.str.6 = private unnamed_addr constant [4 x i8] c"his\00", align 1 +@.str.7 = private unnamed_addr constant [9 x i8] c"ahishers\00", align 1 +@.str.8 = private unnamed_addr constant [50 x i8] c"basic_string: construction from null is not valid\00", align 1 +@.str.9 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(ptr noundef %0, i32 noundef %1) #0 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca %"class.std::queue", align 8 + %13 = alloca i32, align 4 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + %16 = alloca i32, align 4 + %17 = alloca i32, align 4 + %18 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + call void @llvm.memset.p0.i64(ptr align 16 @out, i8 0, i64 2000, i1 false) + call void @llvm.memset.p0.i64(ptr align 16 @g, i8 -1, i64 52000, i1 false) + store i32 1, ptr %5, align 4 + store i32 0, ptr %6, align 4 + br label %19 + +19: ; preds = %78, %2 + %20 = load i32, ptr %6, align 4 + %21 = load i32, ptr %4, align 4 + %22 = icmp slt i32 %20, %21 + br i1 %22, label %23, label %81 + +23: ; preds = %19 + %24 = load ptr, ptr %3, align 8 + %25 = load i32, ptr %6, align 4 + %26 = sext i32 %25 to i64 + %27 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %24, i64 %26 + store ptr %27, ptr %7, align 8 + store i32 0, ptr %8, align 4 + store i32 0, ptr %9, align 4 + br label %28 + +28: ; preds = %67, %23 + %29 = load i32, ptr %9, align 4 + %30 = sext i32 %29 to i64 + %31 = load ptr, ptr %7, align 8 + %32 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %31) #13 + %33 = icmp ult i64 %30, %32 + br i1 %33, label %34, label %70 + +34: ; preds = %28 + %35 = load ptr, ptr %7, align 8 + %36 = load i32, ptr %9, align 4 + %37 = sext i32 %36 to i64 + %38 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %35, i64 noundef %37) #13 + %39 = load i8, ptr %38, align 1 + %40 = sext i8 %39 to i32 + %41 = sub nsw i32 %40, 97 + store i32 %41, ptr %10, align 4 + %42 = load i32, ptr %8, align 4 + %43 = sext i32 %42 to i64 + %44 = getelementptr inbounds [500 x [26 x i32]], ptr @g, i64 0, i64 %43 + %45 = load i32, ptr %10, align 4 + %46 = sext i32 %45 to i64 + %47 = getelementptr inbounds [26 x i32], ptr %44, i64 0, i64 %46 + %48 = load i32, ptr %47, align 4 + %49 = icmp eq i32 %48, -1 + br i1 %49, label %50, label %59 + +50: ; preds = %34 + %51 = load i32, ptr %5, align 4 + %52 = add nsw i32 %51, 1 + store i32 %52, ptr %5, align 4 + %53 = load i32, ptr %8, align 4 + %54 = sext i32 %53 to i64 + %55 = getelementptr inbounds [500 x [26 x i32]], ptr @g, i64 0, i64 %54 + %56 = load i32, ptr %10, align 4 + %57 = sext i32 %56 to i64 + %58 = getelementptr inbounds [26 x i32], ptr %55, i64 0, i64 %57 + store i32 %51, ptr %58, align 4 + br label %59 + +59: ; preds = %50, %34 + %60 = load i32, ptr %8, align 4 + %61 = sext i32 %60 to i64 + %62 = getelementptr inbounds [500 x [26 x i32]], ptr @g, i64 0, i64 %61 + %63 = load i32, ptr %10, align 4 + %64 = sext i32 %63 to i64 + %65 = getelementptr inbounds [26 x i32], ptr %62, i64 0, i64 %64 + %66 = load i32, ptr %65, align 4 + store i32 %66, ptr %8, align 4 + br label %67 + +67: ; preds = %59 + %68 = load i32, ptr %9, align 4 + %69 = add nsw i32 %68, 1 + store i32 %69, ptr %9, align 4 + br label %28, !llvm.loop !6 + +70: ; preds = %28 + %71 = load i32, ptr %6, align 4 + %72 = shl i32 1, %71 + %73 = load i32, ptr %8, align 4 + %74 = sext i32 %73 to i64 + %75 = getelementptr inbounds [500 x i32], ptr @out, i64 0, i64 %74 + %76 = load i32, ptr %75, align 4 + %77 = or i32 %76, %72 + store i32 %77, ptr %75, align 4 + br label %78 + +78: ; preds = %70 + %79 = load i32, ptr %6, align 4 + %80 = add nsw i32 %79, 1 + store i32 %80, ptr %6, align 4 + br label %19, !llvm.loop !8 + +81: ; preds = %19 + store i32 0, ptr %11, align 4 + br label %82 + +82: ; preds = %96, %81 + %83 = load i32, ptr %11, align 4 + %84 = icmp slt i32 %83, 26 + br i1 %84, label %85, label %99 + +85: ; preds = %82 + %86 = load i32, ptr %11, align 4 + %87 = sext i32 %86 to i64 + %88 = getelementptr inbounds [26 x i32], ptr @g, i64 0, i64 %87 + %89 = load i32, ptr %88, align 4 + %90 = icmp eq i32 %89, -1 + br i1 %90, label %91, label %95 + +91: ; preds = %85 + %92 = load i32, ptr %11, align 4 + %93 = sext i32 %92 to i64 + %94 = getelementptr inbounds [26 x i32], ptr @g, i64 0, i64 %93 + store i32 0, ptr %94, align 4 + br label %95 + +95: ; preds = %91, %85 + br label %96 + +96: ; preds = %95 + %97 = load i32, ptr %11, align 4 + %98 = add nsw i32 %97, 1 + store i32 %98, ptr %11, align 4 + br label %82, !llvm.loop !9 + +99: ; preds = %82 + call void @llvm.memset.p0.i64(ptr align 16 @f, i8 -1, i64 2000, i1 false) + call void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %12) + store i32 0, ptr %13, align 4 + br label %100 + +100: ; preds = %125, %99 + %101 = load i32, ptr %13, align 4 + %102 = icmp slt i32 %101, 26 + br i1 %102, label %103, label %128 + +103: ; preds = %100 + %104 = load i32, ptr %13, align 4 + %105 = sext i32 %104 to i64 + %106 = getelementptr inbounds [26 x i32], ptr @g, i64 0, i64 %105 + %107 = load i32, ptr %106, align 4 + %108 = icmp ne i32 %107, 0 + br i1 %108, label %109, label %124 + +109: ; preds = %103 + %110 = load i32, ptr %13, align 4 + %111 = sext i32 %110 to i64 + %112 = getelementptr inbounds [26 x i32], ptr @g, i64 0, i64 %111 + %113 = load i32, ptr %112, align 4 + %114 = sext i32 %113 to i64 + %115 = getelementptr inbounds [500 x i32], ptr @f, i64 0, i64 %114 + store i32 0, ptr %115, align 4 + %116 = load i32, ptr %13, align 4 + %117 = sext i32 %116 to i64 + %118 = getelementptr inbounds [26 x i32], ptr @g, i64 0, i64 %117 + invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef nonnull align 4 dereferenceable(4) %118) + to label %119 unwind label %120 + +119: ; preds = %109 + br label %124 + +120: ; preds = %169, %135, %133, %129, %109 + %121 = landingpad { ptr, i32 } + cleanup + %122 = extractvalue { ptr, i32 } %121, 0 + store ptr %122, ptr %14, align 8 + %123 = extractvalue { ptr, i32 } %121, 1 + store i32 %123, ptr %15, align 4 + call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %12) #13 + br label %216 + +124: ; preds = %119, %103 + br label %125 + +125: ; preds = %124 + %126 = load i32, ptr %13, align 4 + %127 = add nsw i32 %126, 1 + store i32 %127, ptr %13, align 4 + br label %100, !llvm.loop !10 + +128: ; preds = %100 + br label %129 + +129: ; preds = %213, %128 + %130 = invoke noundef i64 @_ZNKSt5queueIiSt5dequeIiSaIiEEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %12) + to label %131 unwind label %120 + +131: ; preds = %129 + %132 = icmp ne i64 %130, 0 + br i1 %132, label %133, label %214 + +133: ; preds = %131 + %134 = invoke noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv(ptr noundef nonnull align 8 dereferenceable(80) %12) + to label %135 unwind label %120 + +135: ; preds = %133 + %136 = load i32, ptr %134, align 4 + store i32 %136, ptr %16, align 4 + invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %12) + to label %137 unwind label %120 + +137: ; preds = %135 + store i32 0, ptr %17, align 4 + br label %138 + +138: ; preds = %210, %137 + %139 = load i32, ptr %17, align 4 + %140 = icmp sle i32 %139, 26 + br i1 %140, label %141, label %213 + +141: ; preds = %138 + %142 = load i32, ptr %16, align 4 + %143 = sext i32 %142 to i64 + %144 = getelementptr inbounds [500 x [26 x i32]], ptr @g, i64 0, i64 %143 + %145 = load i32, ptr %17, align 4 + %146 = sext i32 %145 to i64 + %147 = getelementptr inbounds [26 x i32], ptr %144, i64 0, i64 %146 + %148 = load i32, ptr %147, align 4 + %149 = icmp ne i32 %148, -1 + br i1 %149, label %150, label %209 + +150: ; preds = %141 + %151 = load i32, ptr %16, align 4 + %152 = sext i32 %151 to i64 + %153 = getelementptr inbounds [500 x i32], ptr @f, i64 0, i64 %152 + %154 = load i32, ptr %153, align 4 + store i32 %154, ptr %18, align 4 + br label %155 + +155: ; preds = %164, %150 + %156 = load i32, ptr %18, align 4 + %157 = sext i32 %156 to i64 + %158 = getelementptr inbounds [500 x [26 x i32]], ptr @g, i64 0, i64 %157 + %159 = load i32, ptr %17, align 4 + %160 = sext i32 %159 to i64 + %161 = getelementptr inbounds [26 x i32], ptr %158, i64 0, i64 %160 + %162 = load i32, ptr %161, align 4 + %163 = icmp eq i32 %162, -1 + br i1 %163, label %164, label %169 + +164: ; preds = %155 + %165 = load i32, ptr %18, align 4 + %166 = sext i32 %165 to i64 + %167 = getelementptr inbounds [500 x i32], ptr @f, i64 0, i64 %166 + %168 = load i32, ptr %167, align 4 + store i32 %168, ptr %18, align 4 + br label %155, !llvm.loop !11 + +169: ; preds = %155 + %170 = load i32, ptr %18, align 4 + %171 = sext i32 %170 to i64 + %172 = getelementptr inbounds [500 x [26 x i32]], ptr @g, i64 0, i64 %171 + %173 = load i32, ptr %17, align 4 + %174 = sext i32 %173 to i64 + %175 = getelementptr inbounds [26 x i32], ptr %172, i64 0, i64 %174 + %176 = load i32, ptr %175, align 4 + store i32 %176, ptr %18, align 4 + %177 = load i32, ptr %18, align 4 + %178 = load i32, ptr %16, align 4 + %179 = sext i32 %178 to i64 + %180 = getelementptr inbounds [500 x [26 x i32]], ptr @g, i64 0, i64 %179 + %181 = load i32, ptr %17, align 4 + %182 = sext i32 %181 to i64 + %183 = getelementptr inbounds [26 x i32], ptr %180, i64 0, i64 %182 + %184 = load i32, ptr %183, align 4 + %185 = sext i32 %184 to i64 + %186 = getelementptr inbounds [500 x i32], ptr @f, i64 0, i64 %185 + store i32 %177, ptr %186, align 4 + %187 = load i32, ptr %18, align 4 + %188 = sext i32 %187 to i64 + %189 = getelementptr inbounds [500 x i32], ptr @out, i64 0, i64 %188 + %190 = load i32, ptr %189, align 4 + %191 = load i32, ptr %16, align 4 + %192 = sext i32 %191 to i64 + %193 = getelementptr inbounds [500 x [26 x i32]], ptr @g, i64 0, i64 %192 + %194 = load i32, ptr %17, align 4 + %195 = sext i32 %194 to i64 + %196 = getelementptr inbounds [26 x i32], ptr %193, i64 0, i64 %195 + %197 = load i32, ptr %196, align 4 + %198 = sext i32 %197 to i64 + %199 = getelementptr inbounds [500 x i32], ptr @out, i64 0, i64 %198 + %200 = load i32, ptr %199, align 4 + %201 = or i32 %200, %190 + store i32 %201, ptr %199, align 4 + %202 = load i32, ptr %16, align 4 + %203 = sext i32 %202 to i64 + %204 = getelementptr inbounds [500 x [26 x i32]], ptr @g, i64 0, i64 %203 + %205 = load i32, ptr %17, align 4 + %206 = sext i32 %205 to i64 + %207 = getelementptr inbounds [26 x i32], ptr %204, i64 0, i64 %206 + invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef nonnull align 4 dereferenceable(4) %207) + to label %208 unwind label %120 + +208: ; preds = %169 + br label %209 + +209: ; preds = %208, %141 + br label %210 + +210: ; preds = %209 + %211 = load i32, ptr %17, align 4 + %212 = add nsw i32 %211, 1 + store i32 %212, ptr %17, align 4 + br label %138, !llvm.loop !12 + +213: ; preds = %138 + br label %129, !llvm.loop !13 + +214: ; preds = %131 + %215 = load i32, ptr %5, align 4 + call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %12) #13 + ret i32 %215 + +216: ; preds = %120 + %217 = load ptr, ptr %14, align 8 + %218 = load i32, ptr %15, align 4 + %219 = insertvalue { ptr, i32 } poison, ptr %217, 0 + %220 = insertvalue { ptr, i32 } %219, i32 %218, 1 + resume { ptr, i32 } %220 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #1 + +; Function Attrs: nounwind +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +; Function Attrs: nounwind +declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + call void @llvm.memset.p0.i64(ptr align 8 %4, i8 0, i64 80, i1 false) + call void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %4) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"class.std::queue", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + call void @_ZNSt5dequeIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(80) %6, ptr noundef nonnull align 4 dereferenceable(4) %7) + ret void +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5queueIiSt5dequeIiSaIiEEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + %5 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #13 + ret i64 %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + %5 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5dequeIiSaIiEE5frontEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #13 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + call void @_ZNSt5dequeIiSaIiEE9pop_frontEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #13 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + call void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %4) #13 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z13findNextStateic(i32 noundef %0, i8 noundef signext %1) #4 { + %3 = alloca i32, align 4 + %4 = alloca i8, align 1 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store i32 %0, ptr %3, align 4 + store i8 %1, ptr %4, align 1 + %7 = load i32, ptr %3, align 4 + store i32 %7, ptr %5, align 4 + %8 = load i8, ptr %4, align 1 + %9 = sext i8 %8 to i32 + %10 = sub nsw i32 %9, 97 + store i32 %10, ptr %6, align 4 + br label %11 + +11: ; preds = %20, %2 + %12 = load i32, ptr %5, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds [500 x [26 x i32]], ptr @g, i64 0, i64 %13 + %15 = load i32, ptr %6, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds [26 x i32], ptr %14, i64 0, i64 %16 + %18 = load i32, ptr %17, align 4 + %19 = icmp eq i32 %18, -1 + br i1 %19, label %20, label %25 + +20: ; preds = %11 + %21 = load i32, ptr %5, align 4 + %22 = sext i32 %21 to i64 + %23 = getelementptr inbounds [500 x i32], ptr @f, i64 0, i64 %22 + %24 = load i32, ptr %23, align 4 + store i32 %24, ptr %5, align 4 + br label %11, !llvm.loop !14 + +25: ; preds = %11 + %26 = load i32, ptr %5, align 4 + %27 = sext i32 %26 to i64 + %28 = getelementptr inbounds [500 x [26 x i32]], ptr @g, i64 0, i64 %27 + %29 = load i32, ptr %6, align 4 + %30 = sext i32 %29 to i64 + %31 = getelementptr inbounds [26 x i32], ptr %28, i64 0, i64 %30 + %32 = load i32, ptr %31, align 4 + ret i32 %32 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS4_(ptr noundef %0, i32 noundef %1, ptr noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + %9 = load ptr, ptr %4, align 8 + %10 = load i32, ptr %5, align 4 + %11 = call noundef i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(ptr noundef %9, i32 noundef %10) + store i32 0, ptr %6, align 4 + store i32 0, ptr %7, align 4 + br label %12 + +12: ; preds = %71, %3 + %13 = load i32, ptr %7, align 4 + %14 = sext i32 %13 to i64 + %15 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %2) #13 + %16 = icmp ult i64 %14, %15 + br i1 %16, label %17, label %74 + +17: ; preds = %12 + %18 = load i32, ptr %6, align 4 + %19 = load i32, ptr %7, align 4 + %20 = sext i32 %19 to i64 + %21 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %2, i64 noundef %20) + %22 = load i8, ptr %21, align 1 + %23 = call noundef i32 @_Z13findNextStateic(i32 noundef %18, i8 noundef signext %22) + store i32 %23, ptr %6, align 4 + %24 = load i32, ptr %6, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds [500 x i32], ptr @out, i64 0, i64 %25 + %27 = load i32, ptr %26, align 4 + %28 = icmp eq i32 %27, 0 + br i1 %28, label %29, label %30 + +29: ; preds = %17 + br label %71 + +30: ; preds = %17 + store i32 0, ptr %8, align 4 + br label %31 + +31: ; preds = %67, %30 + %32 = load i32, ptr %8, align 4 + %33 = load i32, ptr %5, align 4 + %34 = icmp slt i32 %32, %33 + br i1 %34, label %35, label %70 + +35: ; preds = %31 + %36 = load i32, ptr %6, align 4 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds [500 x i32], ptr @out, i64 0, i64 %37 + %39 = load i32, ptr %38, align 4 + %40 = load i32, ptr %8, align 4 + %41 = shl i32 1, %40 + %42 = and i32 %39, %41 + %43 = icmp ne i32 %42, 0 + br i1 %43, label %44, label %66 + +44: ; preds = %35 + %45 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %46 = load ptr, ptr %4, align 8 + %47 = load i32, ptr %8, align 4 + %48 = sext i32 %47 to i64 + %49 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %46, i64 %48 + %50 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKNSt7__cxx1112basic_stringIS4_S5_T1_EE(ptr noundef nonnull align 8 dereferenceable(8) %45, ptr noundef nonnull align 8 dereferenceable(32) %49) + %51 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %50, ptr noundef @.str.1) + %52 = load i32, ptr %7, align 4 + %53 = sext i32 %52 to i64 + %54 = load ptr, ptr %4, align 8 + %55 = load i32, ptr %8, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %54, i64 %56 + %58 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %57) #13 + %59 = sub i64 %53, %58 + %60 = add i64 %59, 1 + %61 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEm(ptr noundef nonnull align 8 dereferenceable(8) %51, i64 noundef %60) + %62 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %61, ptr noundef @.str.2) + %63 = load i32, ptr %7, align 4 + %64 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %62, i32 noundef %63) + %65 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %64, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %66 + +66: ; preds = %44, %35 + br label %67 + +67: ; preds = %66 + %68 = load i32, ptr %8, align 4 + %69 = add nsw i32 %68, 1 + store i32 %69, ptr %8, align 4 + br label %31, !llvm.loop !15 + +70: ; preds = %31 + br label %71 + +71: ; preds = %70, %29 + %72 = load i32, ptr %7, align 4 + %73 = add nsw i32 %72, 1 + store i32 %73, ptr %7, align 4 + br label %12, !llvm.loop !16 + +74: ; preds = %12 + ret void +} + +declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #6 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #6 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKNSt7__cxx1112basic_stringIS4_S5_T1_EE(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef nonnull align 8 dereferenceable(32)) #6 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEm(ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #6 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #6 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #6 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #6 + +; Function Attrs: noinline norecurse uwtable +define dso_local noundef i32 @main() #7 personality ptr @__gxx_personality_v0 { + %1 = alloca ptr, align 8 + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca ptr, align 8 + %15 = alloca ptr, align 8 + %16 = alloca ptr, align 8 + %17 = alloca ptr, align 8 + %18 = alloca ptr, align 8 + %19 = alloca ptr, align 8 + %20 = alloca ptr, align 8 + %21 = alloca i32, align 4 + %22 = alloca [4 x %"class.std::__cxx11::basic_string"], align 16 + %23 = alloca ptr, align 8 + %24 = alloca %"class.std::allocator", align 1 + %25 = alloca ptr, align 8 + %26 = alloca i32, align 4 + %27 = alloca %"class.std::allocator", align 1 + %28 = alloca %"class.std::allocator", align 1 + %29 = alloca %"class.std::allocator", align 1 + %30 = alloca i1, align 1 + %31 = alloca %"class.std::__cxx11::basic_string", align 8 + %32 = alloca %"class.std::allocator", align 1 + %33 = alloca i32, align 4 + %34 = alloca %"class.std::__cxx11::basic_string", align 8 + store i32 0, ptr %21, align 4 + %35 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], ptr %22, i64 0, i64 0 + store i1 true, ptr %30, align 1 + store ptr %35, ptr %23, align 8 + store ptr %24, ptr %20, align 8 + %36 = load ptr, ptr %20, align 8 + store ptr %36, ptr %1, align 8 + %37 = load ptr, ptr %1, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %35, ptr noundef @.str.3, ptr noundef nonnull align 1 dereferenceable(1) %24) + to label %38 unwind label %65 + +38: ; preds = %0 + %39 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %35, i64 1 + store ptr %39, ptr %23, align 8 + store ptr %27, ptr %19, align 8 + %40 = load ptr, ptr %19, align 8 + store ptr %40, ptr %2, align 8 + %41 = load ptr, ptr %2, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %39, ptr noundef @.str.4, ptr noundef nonnull align 1 dereferenceable(1) %27) + to label %42 unwind label %69 + +42: ; preds = %38 + %43 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %39, i64 1 + store ptr %43, ptr %23, align 8 + store ptr %28, ptr %18, align 8 + %44 = load ptr, ptr %18, align 8 + store ptr %44, ptr %3, align 8 + %45 = load ptr, ptr %3, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %43, ptr noundef @.str.5, ptr noundef nonnull align 1 dereferenceable(1) %28) + to label %46 unwind label %73 + +46: ; preds = %42 + %47 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %43, i64 1 + store ptr %47, ptr %23, align 8 + store ptr %29, ptr %17, align 8 + %48 = load ptr, ptr %17, align 8 + store ptr %48, ptr %4, align 8 + %49 = load ptr, ptr %4, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %47, ptr noundef @.str.6, ptr noundef nonnull align 1 dereferenceable(1) %29) + to label %50 unwind label %77 + +50: ; preds = %46 + store i1 false, ptr %30, align 1 + store ptr %29, ptr %15, align 8 + %51 = load ptr, ptr %15, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %51) #13 + store ptr %28, ptr %13, align 8 + %52 = load ptr, ptr %13, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %52) #13 + store ptr %27, ptr %11, align 8 + %53 = load ptr, ptr %11, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %53) #13 + store ptr %24, ptr %9, align 8 + %54 = load ptr, ptr %9, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %54) #13 + store ptr %32, ptr %16, align 8 + %55 = load ptr, ptr %16, align 8 + store ptr %55, ptr %5, align 8 + %56 = load ptr, ptr %5, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %31, ptr noundef @.str.7, ptr noundef nonnull align 1 dereferenceable(1) %32) + to label %57 unwind label %98 + +57: ; preds = %50 + store ptr %32, ptr %7, align 8 + %58 = load ptr, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %58) #13 + store i32 4, ptr %33, align 4 + %59 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], ptr %22, i64 0, i64 0 + %60 = load i32, ptr %33, align 4 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %34, ptr noundef nonnull align 8 dereferenceable(32) %31) + to label %61 unwind label %103 + +61: ; preds = %57 + invoke void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS4_(ptr noundef %59, i32 noundef %60, ptr noundef %34) + to label %62 unwind label %107 + +62: ; preds = %61 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %34) #13 + store i32 0, ptr %21, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %31) #13 + %63 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], ptr %22, i32 0, i32 0 + %64 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %63, i64 4 + br label %112 + +65: ; preds = %0 + %66 = landingpad { ptr, i32 } + cleanup + %67 = extractvalue { ptr, i32 } %66, 0 + store ptr %67, ptr %25, align 8 + %68 = extractvalue { ptr, i32 } %66, 1 + store i32 %68, ptr %26, align 4 + br label %86 + +69: ; preds = %38 + %70 = landingpad { ptr, i32 } + cleanup + %71 = extractvalue { ptr, i32 } %70, 0 + store ptr %71, ptr %25, align 8 + %72 = extractvalue { ptr, i32 } %70, 1 + store i32 %72, ptr %26, align 4 + br label %84 + +73: ; preds = %42 + %74 = landingpad { ptr, i32 } + cleanup + %75 = extractvalue { ptr, i32 } %74, 0 + store ptr %75, ptr %25, align 8 + %76 = extractvalue { ptr, i32 } %74, 1 + store i32 %76, ptr %26, align 4 + br label %82 + +77: ; preds = %46 + %78 = landingpad { ptr, i32 } + cleanup + %79 = extractvalue { ptr, i32 } %78, 0 + store ptr %79, ptr %25, align 8 + %80 = extractvalue { ptr, i32 } %78, 1 + store i32 %80, ptr %26, align 4 + store ptr %29, ptr %14, align 8 + %81 = load ptr, ptr %14, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %81) #13 + br label %82 + +82: ; preds = %77, %73 + store ptr %28, ptr %12, align 8 + %83 = load ptr, ptr %12, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %83) #13 + br label %84 + +84: ; preds = %82, %69 + store ptr %27, ptr %10, align 8 + %85 = load ptr, ptr %10, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %85) #13 + br label %86 + +86: ; preds = %84, %65 + store ptr %24, ptr %8, align 8 + %87 = load ptr, ptr %8, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %87) #13 + %88 = load i1, ptr %30, align 1 + br i1 %88, label %89, label %97 + +89: ; preds = %86 + %90 = load ptr, ptr %23, align 8 + %91 = icmp eq ptr %35, %90 + br i1 %91, label %96, label %92 + +92: ; preds = %92, %89 + %93 = phi ptr [ %90, %89 ], [ %94, %92 ] + %94 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %93, i64 -1 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %94) #13 + %95 = icmp eq ptr %94, %35 + br i1 %95, label %96, label %92 + +96: ; preds = %92, %89 + br label %97 + +97: ; preds = %96, %86 + br label %126 + +98: ; preds = %50 + %99 = landingpad { ptr, i32 } + cleanup + %100 = extractvalue { ptr, i32 } %99, 0 + store ptr %100, ptr %25, align 8 + %101 = extractvalue { ptr, i32 } %99, 1 + store i32 %101, ptr %26, align 4 + store ptr %32, ptr %6, align 8 + %102 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %102) #13 + br label %118 + +103: ; preds = %57 + %104 = landingpad { ptr, i32 } + cleanup + %105 = extractvalue { ptr, i32 } %104, 0 + store ptr %105, ptr %25, align 8 + %106 = extractvalue { ptr, i32 } %104, 1 + store i32 %106, ptr %26, align 4 + br label %111 + +107: ; preds = %61 + %108 = landingpad { ptr, i32 } + cleanup + %109 = extractvalue { ptr, i32 } %108, 0 + store ptr %109, ptr %25, align 8 + %110 = extractvalue { ptr, i32 } %108, 1 + store i32 %110, ptr %26, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %34) #13 + br label %111 + +111: ; preds = %107, %103 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %31) #13 + br label %118 + +112: ; preds = %112, %62 + %113 = phi ptr [ %64, %62 ], [ %114, %112 ] + %114 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %113, i64 -1 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %114) #13 + %115 = icmp eq ptr %114, %63 + br i1 %115, label %116, label %112 + +116: ; preds = %112 + %117 = load i32, ptr %21, align 4 + ret i32 %117 + +118: ; preds = %111, %98 + %119 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], ptr %22, i32 0, i32 0 + %120 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %119, i64 4 + br label %121 + +121: ; preds = %121, %118 + %122 = phi ptr [ %120, %118 ], [ %123, %121 ] + %123 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %122, i64 -1 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %123) #13 + %124 = icmp eq ptr %123, %119 + br i1 %124, label %125, label %121 + +125: ; preds = %121 + br label %126 + +126: ; preds = %125, %97 + %127 = load ptr, ptr %25, align 8 + %128 = load i32, ptr %26, align 4 + %129 = insertvalue { ptr, i32 } poison, ptr %127, 0 + %130 = insertvalue { ptr, i32 } %129, i32 %128, 1 + resume { ptr, i32 } %130 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %11, i32 0, i32 0 + %13 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) + %14 = load ptr, ptr %6, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %12, ptr noundef %13, ptr noundef nonnull align 1 dereferenceable(1) %14) + %15 = load ptr, ptr %5, align 8 + %16 = icmp eq ptr %15, null + br i1 %16, label %17, label %23 + +17: ; preds = %3 + invoke void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.8) #14 + to label %18 unwind label %19 + +18: ; preds = %17 + unreachable + +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } + cleanup + %21 = extractvalue { ptr, i32 } %20, 0 + store ptr %21, ptr %7, align 8 + %22 = extractvalue { ptr, i32 } %20, 1 + store i32 %22, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %12) #13 + br label %32 + +23: ; preds = %3 + %24 = load ptr, ptr %5, align 8 + %25 = load ptr, ptr %5, align 8 + %26 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %25) + to label %27 unwind label %19 + +27: ; preds = %23 + %28 = getelementptr inbounds i8, ptr %24, i64 %26 + store ptr %28, ptr %9, align 8 + %29 = load ptr, ptr %5, align 8 + %30 = load ptr, ptr %9, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %29, ptr noundef %30) + to label %31 unwind label %19 + +31: ; preds = %27 + ret void + +32: ; preds = %19 + %33 = load ptr, ptr %7, align 8 + %34 = load i32, ptr %8, align 4 + %35 = insertvalue { ptr, i32 } poison, ptr %33, 0 + %36 = insertvalue { ptr, i32 } %35, i32 %34, 1 + resume { ptr, i32 } %36 +} + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #6 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_Deque_iterator", align 8 + %4 = alloca %"struct.std::_Deque_iterator", align 8 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt5dequeIiSaIiEE5beginEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %3, ptr noundef nonnull align 8 dereferenceable(80) %5) #13 + call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %4, ptr noundef nonnull align 8 dereferenceable(80) %5) #13 + %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #13 + invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(ptr noundef nonnull align 8 dereferenceable(80) %5, ptr noundef %3, ptr noundef %4, ptr noundef nonnull align 1 dereferenceable(1) %6) + to label %7 unwind label %8 + +7: ; preds = %1 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #13 + ret void + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + catch ptr null + %10 = extractvalue { ptr, i32 } %9, 0 + call void @__clang_call_terminate(ptr %10) #15 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #4 comdat align 2 { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %3, ptr %6, align 8 + %7 = load ptr, ptr %5, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %7) #13 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %7) #13 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #8 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #13 + call void @_ZSt9terminatev() #15 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 0 + %6 = load ptr, ptr %5, align 8 + %7 = icmp ne ptr %6, null + br i1 %7, label %8, label %24 + +8: ; preds = %1 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %9, i32 0, i32 2 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %10, i32 0, i32 3 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %14 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %13, i32 0, i32 3 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %14, i32 0, i32 3 + %16 = load ptr, ptr %15, align 8 + %17 = getelementptr inbounds ptr, ptr %16, i64 1 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %12, ptr noundef %17) #13 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 0 + %20 = load ptr, ptr %19, align 8 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 1 + %23 = load i64, ptr %22, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %20, i64 noundef %23) #13 + br label %24 + +24: ; preds = %8, %1 + %25 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %25) #13 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) unnamed_addr #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + store ptr %9, ptr %6, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 1 + %13 = load ptr, ptr %12, align 8 + store ptr %13, ptr %10, align 8 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + %15 = load ptr, ptr %4, align 8 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 2 + %17 = load ptr, ptr %16, align 8 + store ptr %17, ptr %14, align 8 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + %19 = load ptr, ptr %4, align 8 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + store ptr %21, ptr %18, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %7, align 8 + br label %10 + +10: ; preds = %17, %3 + %11 = load ptr, ptr %7, align 8 + %12 = load ptr, ptr %6, align 8 + %13 = icmp ult ptr %11, %12 + br i1 %13, label %14, label %20 + +14: ; preds = %10 + %15 = load ptr, ptr %7, align 8 + %16 = load ptr, ptr %15, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %8, ptr noundef %16) #13 + br label %17 + +17: ; preds = %14 + %18 = load ptr, ptr %7, align 8 + %19 = getelementptr inbounds ptr, ptr %18, i32 1 + store ptr %19, ptr %7, align 8 + br label %10, !llvm.loop !17 + +20: ; preds = %10 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, i64 noundef %2) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca %"class.std::allocator.3", align 1 + store ptr %0, ptr %8, align 8 + store ptr %1, ptr %9, align 8 + store i64 %2, ptr %10, align 8 + %12 = load ptr, ptr %8, align 8 + call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %11, ptr noundef nonnull align 8 dereferenceable(80) %12) #13 + %13 = load ptr, ptr %9, align 8 + %14 = load i64, ptr %10, align 8 + store ptr %11, ptr %5, align 8 + store ptr %13, ptr %6, align 8 + store i64 %14, ptr %7, align 8 + %15 = load ptr, ptr %5, align 8 + %16 = load ptr, ptr %6, align 8 + %17 = load i64, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %3 + store ptr %11, ptr %4, align 8 + %19 = load ptr, ptr %4, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #13 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #15 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #13 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %7, align 8 + %11 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + to label %12 unwind label %17 + +12: ; preds = %2 + store ptr %9, ptr %3, align 8 + store ptr %10, ptr %4, align 8 + store i64 %11, ptr %5, align 8 + %13 = load ptr, ptr %3, align 8 + %14 = load ptr, ptr %4, align 8 + %15 = load i64, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14, i64 noundef %15) + br label %16 + +16: ; preds = %12 + ret void + +17: ; preds = %2 + %18 = landingpad { ptr, i32 } + catch ptr null + %19 = extractvalue { ptr, i32 } %18, 0 + call void @__clang_call_terminate(ptr %19) #15 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #4 comdat { + %2 = alloca i64, align 8 + store i64 %0, ptr %2, align 8 + %3 = load i64, ptr %2, align 8 + %4 = icmp ult i64 %3, 512 + br i1 %4, label %5, label %8 + +5: ; preds = %1 + %6 = load i64, ptr %2, align 8 + %7 = udiv i64 512, %6 + br label %9 + +8: ; preds = %1 + br label %9 + +9: ; preds = %8, %5 + %10 = phi i64 [ %7, %5 ], [ 1, %8 ] + ret i64 %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #16 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #9 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr noalias sret(%"class.std::allocator.3") align 1 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %7, align 8 + %9 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %8) #13 + store ptr %0, ptr %4, align 8 + store ptr %9, ptr %5, align 8 + %10 = load ptr, ptr %4, align 8 + store ptr %10, ptr %3, align 8 + %11 = load ptr, ptr %3, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #16 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #6 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef, ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #6 + +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #10 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call i64 @strlen(ptr noundef %3) #13 + ret i64 %4 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca i64, align 8 + %15 = alloca %struct._Guard, align 8 + %16 = alloca ptr, align 8 + %17 = alloca i32, align 4 + store ptr %0, ptr %11, align 8 + store ptr %1, ptr %12, align 8 + store ptr %2, ptr %13, align 8 + %18 = load ptr, ptr %11, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %13, align 8 + store ptr %19, ptr %8, align 8 + store ptr %20, ptr %9, align 8 + %21 = load ptr, ptr %8, align 8 + %22 = load ptr, ptr %9, align 8 + store ptr %8, ptr %4, align 8 + store ptr %21, ptr %5, align 8 + store ptr %22, ptr %6, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %5, align 8 + %25 = ptrtoint ptr %23 to i64 + %26 = ptrtoint ptr %24 to i64 + %27 = sub i64 %25, %26 + store i64 %27, ptr %14, align 8 + %28 = load i64, ptr %14, align 8 + %29 = icmp ugt i64 %28, 15 + br i1 %29, label %30, label %33 + +30: ; preds = %3 + %31 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef nonnull align 8 dereferenceable(8) %14, i64 noundef 0) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef %31) + %32 = load i64, ptr %14, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %32) + br label %40 + +33: ; preds = %3 + store ptr %18, ptr %7, align 8 + %34 = load ptr, ptr %7, align 8 + %35 = invoke noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %34) + to label %39 unwind label %36 + +36: ; preds = %33 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #15 + unreachable + +39: ; preds = %33 + br label %40 + +40: ; preds = %39, %30 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef %18) + %41 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %18) + to label %42 unwind label %48 + +42: ; preds = %40 + %43 = load ptr, ptr %12, align 8 + %44 = load ptr, ptr %13, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %41, ptr noundef %43, ptr noundef %44) #13 + %45 = getelementptr inbounds %struct._Guard, ptr %15, i32 0, i32 0 + store ptr null, ptr %45, align 8 + %46 = load i64, ptr %14, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %46) + to label %47 unwind label %48 + +47: ; preds = %42 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #13 + ret void + +48: ; preds = %42, %40 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %16, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %17, align 4 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #13 + br label %52 + +52: ; preds = %48 + %53 = load ptr, ptr %16, align 8 + %54 = load i32, ptr %17, align 4 + %55 = insertvalue { ptr, i32 } poison, ptr %53, 0 + %56 = insertvalue { ptr, i32 } %55, i32 %54, 1 + resume { ptr, i32 } %56 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #13 + ret void +} + +; Function Attrs: nounwind +declare i64 @strlen(ptr noundef) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #6 + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #6 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #6 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %struct._Guard, ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #2 + +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #6 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #6 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = icmp ne ptr %5, null + br i1 %6, label %7, label %11 + +7: ; preds = %1 + %8 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %9) + to label %10 unwind label %12 + +10: ; preds = %7 + br label %11 + +11: ; preds = %10, %1 + ret void + +12: ; preds = %7 + %13 = landingpad { ptr, i32 } + catch ptr null + %14 = extractvalue { ptr, i32 } %13, 0 + call void @__clang_call_terminate(ptr %14) #15 + unreachable +} + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #6 + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) + ret void +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #13 + invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) + to label %7 unwind label %8 + +7: ; preds = %1 + ret void + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + cleanup + %10 = extractvalue { ptr, i32 } %9, 0 + store ptr %10, ptr %3, align 8 + %11 = extractvalue { ptr, i32 } %9, 1 + store i32 %11, ptr %4, align 4 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #13 + br label %12 + +12: ; preds = %8 + %13 = load ptr, ptr %3, align 8 + %14 = load i32, ptr %4, align 4 + %15 = insertvalue { ptr, i32 } poison, ptr %13, 0 + %16 = insertvalue { ptr, i32 } %15, i32 %14, 1 + resume { ptr, i32 } %16 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #13 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i64, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %12 = load ptr, ptr %3, align 8 + %13 = load i64, ptr %4, align 8 + %14 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %15 = udiv i64 %13, %14 + %16 = add i64 %15, 1 + store i64 %16, ptr %5, align 8 + store i64 8, ptr %6, align 8 + %17 = load i64, ptr %5, align 8 + %18 = add i64 %17, 2 + store i64 %18, ptr %7, align 8 + %19 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + %20 = load i64, ptr %19, align 8 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 1 + store i64 %20, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 1 + %25 = load i64, ptr %24, align 8 + %26 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %25) + %27 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %28 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %27, i32 0, i32 0 + store ptr %26, ptr %28, align 8 + %29 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + %32 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %32, i32 0, i32 1 + %34 = load i64, ptr %33, align 8 + %35 = load i64, ptr %5, align 8 + %36 = sub i64 %34, %35 + %37 = udiv i64 %36, 2 + %38 = getelementptr inbounds ptr, ptr %31, i64 %37 + store ptr %38, ptr %8, align 8 + %39 = load ptr, ptr %8, align 8 + %40 = load i64, ptr %5, align 8 + %41 = getelementptr inbounds ptr, ptr %39, i64 %40 + store ptr %41, ptr %9, align 8 + %42 = load ptr, ptr %8, align 8 + %43 = load ptr, ptr %9, align 8 + invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %42, ptr noundef %43) + to label %44 unwind label %45 + +44: ; preds = %2 + br label %67 + +45: ; preds = %2 + %46 = landingpad { ptr, i32 } + catch ptr null + %47 = extractvalue { ptr, i32 } %46, 0 + store ptr %47, ptr %10, align 8 + %48 = extractvalue { ptr, i32 } %46, 1 + store i32 %48, ptr %11, align 4 + br label %49 + +49: ; preds = %45 + %50 = load ptr, ptr %10, align 8 + %51 = call ptr @__cxa_begin_catch(ptr %50) #13 + %52 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %53 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %52, i32 0, i32 0 + %54 = load ptr, ptr %53, align 8 + %55 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %56 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %55, i32 0, i32 1 + %57 = load i64, ptr %56, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %54, i64 noundef %57) #13 + %58 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %58, i32 0, i32 0 + store ptr null, ptr %59, align 8 + %60 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %61 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %60, i32 0, i32 1 + store i64 0, ptr %61, align 8 + invoke void @__cxa_rethrow() #14 + to label %101 unwind label %62 + +62: ; preds = %49 + %63 = landingpad { ptr, i32 } + cleanup + %64 = extractvalue { ptr, i32 } %63, 0 + store ptr %64, ptr %10, align 8 + %65 = extractvalue { ptr, i32 } %63, 1 + store i32 %65, ptr %11, align 4 + invoke void @__cxa_end_catch() + to label %66 unwind label %98 + +66: ; preds = %62 + br label %93 + +67: ; preds = %44 + %68 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %68, i32 0, i32 2 + %70 = load ptr, ptr %8, align 8 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %69, ptr noundef %70) #13 + %71 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %72 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %71, i32 0, i32 3 + %73 = load ptr, ptr %9, align 8 + %74 = getelementptr inbounds ptr, ptr %73, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %72, ptr noundef %74) #13 + %75 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %76 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %75, i32 0, i32 2 + %77 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %76, i32 0, i32 1 + %78 = load ptr, ptr %77, align 8 + %79 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %80 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %79, i32 0, i32 2 + %81 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %80, i32 0, i32 0 + store ptr %78, ptr %81, align 8 + %82 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %82, i32 0, i32 3 + %84 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %83, i32 0, i32 1 + %85 = load ptr, ptr %84, align 8 + %86 = load i64, ptr %4, align 8 + %87 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %88 = urem i64 %86, %87 + %89 = getelementptr inbounds i32, ptr %85, i64 %88 + %90 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %91 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %90, i32 0, i32 3 + %92 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %91, i32 0, i32 0 + store ptr %89, ptr %92, align 8 + ret void + +93: ; preds = %66 + %94 = load ptr, ptr %10, align 8 + %95 = load i32, ptr %11, align 4 + %96 = insertvalue { ptr, i32 } poison, ptr %94, 0 + %97 = insertvalue { ptr, i32 } %96, i32 %95, 1 + resume { ptr, i32 } %97 + +98: ; preds = %62 + %99 = landingpad { ptr, i32 } + catch ptr null + %100 = extractvalue { ptr, i32 } %99, 0 + call void @__clang_call_terminate(ptr %100) #15 + unreachable + +101: ; preds = %49 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 1 + store i64 0, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 2 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #13 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #13 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 1 + store ptr null, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 2 + store ptr null, ptr %6, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 3 + store ptr null, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #4 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca %"class.std::allocator.3", align 1 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %7, align 8 + store i64 %1, ptr %8, align 8 + %12 = load ptr, ptr %7, align 8 + call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %9, ptr noundef nonnull align 8 dereferenceable(80) %12) #13 + %13 = load i64, ptr %8, align 8 + store ptr %9, ptr %3, align 8 + store i64 %13, ptr %4, align 8 + %14 = load ptr, ptr %3, align 8 + %15 = load i64, ptr %4, align 8 + %16 = invoke noundef ptr @_ZNSt15__new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %14, i64 noundef %15, ptr noundef null) + to label %17 unwind label %20 + +17: ; preds = %2 + br label %18 + +18: ; preds = %17 + store ptr %9, ptr %6, align 8 + %19 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #13 + ret ptr %16 + +20: ; preds = %2 + %21 = landingpad { ptr, i32 } + cleanup + %22 = extractvalue { ptr, i32 } %21, 0 + store ptr %22, ptr %10, align 8 + %23 = extractvalue { ptr, i32 } %21, 1 + store i32 %23, ptr %11, align 4 + store ptr %9, ptr %5, align 8 + %24 = load ptr, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %24) #13 + br label %25 + +25: ; preds = %20 + %26 = load ptr, ptr %10, align 8 + %27 = load i32, ptr %11, align 4 + %28 = insertvalue { ptr, i32 } poison, ptr %26, 0 + %29 = insertvalue { ptr, i32 } %28, i32 %27, 1 + resume { ptr, i32 } %29 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = load ptr, ptr %5, align 8 + store ptr %11, ptr %7, align 8 + br label %12 + +12: ; preds = %20, %3 + %13 = load ptr, ptr %7, align 8 + %14 = load ptr, ptr %6, align 8 + %15 = icmp ult ptr %13, %14 + br i1 %15, label %16, label %32 + +16: ; preds = %12 + %17 = invoke noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %10) + to label %18 unwind label %23 + +18: ; preds = %16 + %19 = load ptr, ptr %7, align 8 + store ptr %17, ptr %19, align 8 + br label %20 + +20: ; preds = %18 + %21 = load ptr, ptr %7, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i32 1 + store ptr %22, ptr %7, align 8 + br label %12, !llvm.loop !18 + +23: ; preds = %16 + %24 = landingpad { ptr, i32 } + catch ptr null + %25 = extractvalue { ptr, i32 } %24, 0 + store ptr %25, ptr %8, align 8 + %26 = extractvalue { ptr, i32 } %24, 1 + store i32 %26, ptr %9, align 4 + br label %27 + +27: ; preds = %23 + %28 = load ptr, ptr %8, align 8 + %29 = call ptr @__cxa_begin_catch(ptr %28) #13 + %30 = load ptr, ptr %5, align 8 + %31 = load ptr, ptr %7, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %10, ptr noundef %30, ptr noundef %31) #13 + invoke void @__cxa_rethrow() #14 + to label %47 unwind label %33 + +32: ; preds = %12 + br label %38 + +33: ; preds = %27 + %34 = landingpad { ptr, i32 } + cleanup + %35 = extractvalue { ptr, i32 } %34, 0 + store ptr %35, ptr %8, align 8 + %36 = extractvalue { ptr, i32 } %34, 1 + store i32 %36, ptr %9, align 4 + invoke void @__cxa_end_catch() + to label %37 unwind label %44 + +37: ; preds = %33 + br label %39 + +38: ; preds = %32 + ret void + +39: ; preds = %37 + %40 = load ptr, ptr %8, align 8 + %41 = load i32, ptr %9, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 + +44: ; preds = %33 + %45 = landingpad { ptr, i32 } + catch ptr null + %46 = extractvalue { ptr, i32 } %45, 0 + call void @__clang_call_terminate(ptr %46) #15 + unreachable + +47: ; preds = %27 + unreachable +} + +declare void @__cxa_rethrow() + +declare void @__cxa_end_catch() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + store ptr %6, ptr %7, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + store ptr %9, ptr %10, align 8 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %12 = load ptr, ptr %11, align 8 + %13 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #13 + %14 = getelementptr inbounds i32, ptr %12, i64 %13 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + store ptr %14, ptr %15, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 1152921504606846975 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #14 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #14 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 8 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #17 + ret ptr %20 +} + +; Function Attrs: noreturn +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #10 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #11 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + store ptr %6, ptr %2, align 8 + store i64 %7, ptr %3, align 8 + %8 = load ptr, ptr %2, align 8 + %9 = load i64, ptr %3, align 8 + %10 = call noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %8, i64 noundef %9, ptr noundef null) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 2305843009213693951 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 4611686018427387903 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #14 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #14 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 4 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #17 + ret ptr %20 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #4 comdat align 2 { + %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + ret i64 %1 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %16, i32 0, i32 3 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %17, i32 0, i32 2 + %19 = load ptr, ptr %18, align 8 + %20 = getelementptr inbounds i32, ptr %19, i64 -1 + %21 = icmp ne ptr %15, %20 + br i1 %21, label %22, label %41 + +22: ; preds = %2 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %34, align 4 + store i32 %35, ptr %33, align 4 + %36 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %36, i32 0, i32 3 + %38 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = getelementptr inbounds i32, ptr %39, i32 1 + store ptr %40, ptr %38, align 8 + br label %43 + +41: ; preds = %2 + %42 = load ptr, ptr %10, align 8 + call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %11, ptr noundef nonnull align 4 dereferenceable(4) %42) + br label %43 + +43: ; preds = %41, %22 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #13 + %13 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #13 + %14 = icmp eq i64 %12, %13 + br i1 %14, label %15, label %16 + +15: ; preds = %2 + call void @_ZSt20__throw_length_errorPKc(ptr noundef @.str.9) #14 + unreachable + +16: ; preds = %2 + call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) + %17 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 3 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i64 1 + store ptr %17, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %34, align 4 + store i32 %35, ptr %33, align 4 + %36 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %36, i32 0, i32 3 + %38 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %38, i32 0, i32 3 + %40 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %39, i32 0, i32 3 + %41 = load ptr, ptr %40, align 8 + %42 = getelementptr inbounds ptr, ptr %41, i64 1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %37, ptr noundef %42) #13 + %43 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %44 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %43, i32 0, i32 3 + %45 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %44, i32 0, i32 1 + %46 = load ptr, ptr %45, align 8 + %47 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %48 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %47, i32 0, i32 3 + %49 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %48, i32 0, i32 0 + store ptr %46, ptr %49, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 3 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + %8 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %7) #13 + ret i64 %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #13 + %5 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #13 + ret i64 %5 +} + +; Function Attrs: noreturn +declare void @_ZSt20__throw_length_errorPKc(ptr noundef) #10 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = add i64 %6, 1 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %11, i32 0, i32 3 + %13 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %12, i32 0, i32 3 + %14 = load ptr, ptr %13, align 8 + %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 0 + %17 = load ptr, ptr %16, align 8 + %18 = ptrtoint ptr %14 to i64 + %19 = ptrtoint ptr %17 to i64 + %20 = sub i64 %18, %19 + %21 = sdiv exact i64 %20, 8 + %22 = sub i64 %10, %21 + %23 = icmp ugt i64 %7, %22 + br i1 %23, label %24, label %26 + +24: ; preds = %2 + %25 = load i64, ptr %4, align 8 + call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %25, i1 noundef zeroext false) + br label %26 + +26: ; preds = %24, %2 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) #4 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #13 + %6 = load ptr, ptr %3, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %6, i32 0, i32 3 + %8 = load ptr, ptr %7, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 3 + %11 = load ptr, ptr %10, align 8 + %12 = ptrtoint ptr %8 to i64 + %13 = ptrtoint ptr %11 to i64 + %14 = sub i64 %12, %13 + %15 = sdiv exact i64 %14, 8 + %16 = load ptr, ptr %3, align 8 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 3 + %18 = load ptr, ptr %17, align 8 + %19 = icmp ne ptr %18, null + %20 = zext i1 %19 to i64 + %21 = sub nsw i64 %15, %20 + %22 = mul nsw i64 %5, %21 + %23 = load ptr, ptr %3, align 8 + %24 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %23, i32 0, i32 0 + %25 = load ptr, ptr %24, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 1 + %28 = load ptr, ptr %27, align 8 + %29 = ptrtoint ptr %25 to i64 + %30 = ptrtoint ptr %28 to i64 + %31 = sub i64 %29, %30 + %32 = sdiv exact i64 %31, 4 + %33 = add nsw i64 %22, %32 + %34 = load ptr, ptr %4, align 8 + %35 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %34, i32 0, i32 2 + %36 = load ptr, ptr %35, align 8 + %37 = load ptr, ptr %4, align 8 + %38 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = ptrtoint ptr %36 to i64 + %41 = ptrtoint ptr %39 to i64 + %42 = sub i64 %40, %41 + %43 = sdiv exact i64 %42, 4 + %44 = add nsw i64 %33, %43 + ret i64 %44 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %0) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %5, align 8 + store i64 9223372036854775807, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + store ptr %8, ptr %4, align 8 + %9 = load ptr, ptr %4, align 8 + store ptr %9, ptr %3, align 8 + %10 = load ptr, ptr %3, align 8 + store ptr %10, ptr %2, align 8 + %11 = load ptr, ptr %2, align 8 + store i64 2305843009213693951, ptr %7, align 8 + %12 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + to label %13 unwind label %15 + +13: ; preds = %1 + %14 = load i64, ptr %12, align 8 + ret i64 %14 + +15: ; preds = %1 + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #15 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #4 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca i8, align 1 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + %12 = zext i1 %2 to i8 + store i8 %12, ptr %6, align 1 + %13 = load ptr, ptr %4, align 8 + %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %14, i32 0, i32 3 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 3 + %17 = load ptr, ptr %16, align 8 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 2 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = ptrtoint ptr %17 to i64 + %23 = ptrtoint ptr %21 to i64 + %24 = sub i64 %22, %23 + %25 = sdiv exact i64 %24, 8 + %26 = add nsw i64 %25, 1 + store i64 %26, ptr %7, align 8 + %27 = load i64, ptr %7, align 8 + %28 = load i64, ptr %5, align 8 + %29 = add i64 %27, %28 + store i64 %29, ptr %8, align 8 + %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 1 + %32 = load i64, ptr %31, align 8 + %33 = load i64, ptr %8, align 8 + %34 = mul i64 2, %33 + %35 = icmp ugt i64 %32, %34 + br i1 %35, label %36, label %88 + +36: ; preds = %3 + %37 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %41 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %40, i32 0, i32 1 + %42 = load i64, ptr %41, align 8 + %43 = load i64, ptr %8, align 8 + %44 = sub i64 %42, %43 + %45 = udiv i64 %44, 2 + %46 = getelementptr inbounds ptr, ptr %39, i64 %45 + %47 = load i8, ptr %6, align 1 + %48 = trunc i8 %47 to i1 + br i1 %48, label %49, label %51 + +49: ; preds = %36 + %50 = load i64, ptr %5, align 8 + br label %52 + +51: ; preds = %36 + br label %52 + +52: ; preds = %51, %49 + %53 = phi i64 [ %50, %49 ], [ 0, %51 ] + %54 = getelementptr inbounds ptr, ptr %46, i64 %53 + store ptr %54, ptr %9, align 8 + %55 = load ptr, ptr %9, align 8 + %56 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %57 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %56, i32 0, i32 2 + %58 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %57, i32 0, i32 3 + %59 = load ptr, ptr %58, align 8 + %60 = icmp ult ptr %55, %59 + br i1 %60, label %61, label %73 + +61: ; preds = %52 + %62 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %62, i32 0, i32 2 + %64 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %63, i32 0, i32 3 + %65 = load ptr, ptr %64, align 8 + %66 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %66, i32 0, i32 3 + %68 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %67, i32 0, i32 3 + %69 = load ptr, ptr %68, align 8 + %70 = getelementptr inbounds ptr, ptr %69, i64 1 + %71 = load ptr, ptr %9, align 8 + %72 = call noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %65, ptr noundef %70, ptr noundef %71) + br label %87 + +73: ; preds = %52 + %74 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %75 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %74, i32 0, i32 2 + %76 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %75, i32 0, i32 3 + %77 = load ptr, ptr %76, align 8 + %78 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %78, i32 0, i32 3 + %80 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %79, i32 0, i32 3 + %81 = load ptr, ptr %80, align 8 + %82 = getelementptr inbounds ptr, ptr %81, i64 1 + %83 = load ptr, ptr %9, align 8 + %84 = load i64, ptr %7, align 8 + %85 = getelementptr inbounds ptr, ptr %83, i64 %84 + %86 = call noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(ptr noundef %77, ptr noundef %82, ptr noundef %85) + br label %87 + +87: ; preds = %73, %61 + br label %137 + +88: ; preds = %3 + %89 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %90 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %89, i32 0, i32 1 + %91 = load i64, ptr %90, align 8 + %92 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %92, i32 0, i32 1 + %94 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %93, ptr noundef nonnull align 8 dereferenceable(8) %5) + %95 = load i64, ptr %94, align 8 + %96 = add i64 %91, %95 + %97 = add i64 %96, 2 + store i64 %97, ptr %10, align 8 + %98 = load i64, ptr %10, align 8 + %99 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %13, i64 noundef %98) + store ptr %99, ptr %11, align 8 + %100 = load ptr, ptr %11, align 8 + %101 = load i64, ptr %10, align 8 + %102 = load i64, ptr %8, align 8 + %103 = sub i64 %101, %102 + %104 = udiv i64 %103, 2 + %105 = getelementptr inbounds ptr, ptr %100, i64 %104 + %106 = load i8, ptr %6, align 1 + %107 = trunc i8 %106 to i1 + br i1 %107, label %108, label %110 + +108: ; preds = %88 + %109 = load i64, ptr %5, align 8 + br label %111 + +110: ; preds = %88 + br label %111 + +111: ; preds = %110, %108 + %112 = phi i64 [ %109, %108 ], [ 0, %110 ] + %113 = getelementptr inbounds ptr, ptr %105, i64 %112 + store ptr %113, ptr %9, align 8 + %114 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %115 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %114, i32 0, i32 2 + %116 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %115, i32 0, i32 3 + %117 = load ptr, ptr %116, align 8 + %118 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %119 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %118, i32 0, i32 3 + %120 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %119, i32 0, i32 3 + %121 = load ptr, ptr %120, align 8 + %122 = getelementptr inbounds ptr, ptr %121, i64 1 + %123 = load ptr, ptr %9, align 8 + %124 = call noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %117, ptr noundef %122, ptr noundef %123) + %125 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %126 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %125, i32 0, i32 0 + %127 = load ptr, ptr %126, align 8 + %128 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %129 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %128, i32 0, i32 1 + %130 = load i64, ptr %129, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %13, ptr noundef %127, i64 noundef %130) #13 + %131 = load ptr, ptr %11, align 8 + %132 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %133 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %132, i32 0, i32 0 + store ptr %131, ptr %133, align 8 + %134 = load i64, ptr %10, align 8 + %135 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %136 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %135, i32 0, i32 1 + store i64 %134, ptr %136, align 8 + br label %137 + +137: ; preds = %111, %87 + %138 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %139 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %138, i32 0, i32 2 + %140 = load ptr, ptr %9, align 8 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %139, ptr noundef %140) #13 + %141 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %141, i32 0, i32 3 + %143 = load ptr, ptr %9, align 8 + %144 = load i64, ptr %7, align 8 + %145 = getelementptr inbounds ptr, ptr %143, i64 %144 + %146 = getelementptr inbounds ptr, ptr %145, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %142, ptr noundef %146) #13 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %7) #13 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %9) #13 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %11) #13 + %13 = call noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %0) #4 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) #4 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %0) #4 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %21 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load i64, ptr %7, align 8 + %20 = mul i64 8, %19 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %17, ptr align 8 %18, i64 %20, i1 false) + br label %28 + +21: ; preds = %3 + %22 = load i64, ptr %7, align 8 + %23 = icmp eq i64 %22, 1 + br i1 %23, label %24, label %27 + +24: ; preds = %21 + %25 = load ptr, ptr %6, align 8 + %26 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %25, ptr noundef %26) + br label %27 + +27: ; preds = %24, %21 + br label %28 + +28: ; preds = %27, %16 + %29 = load ptr, ptr %6, align 8 + %30 = load i64, ptr %7, align 8 + %31 = getelementptr inbounds ptr, ptr %29, i64 %30 + ret ptr %31 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memmove.p0.p0.i64(ptr nocapture writeonly, ptr nocapture readonly, i64, i1 immarg) #12 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %0, ptr noundef %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load ptr, ptr %3, align 8 + store ptr %6, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %7) #13 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %9) #13 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %11) #13 + %13 = call noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %24 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load i64, ptr %7, align 8 + %19 = sub i64 0, %18 + %20 = getelementptr inbounds ptr, ptr %17, i64 %19 + %21 = load ptr, ptr %4, align 8 + %22 = load i64, ptr %7, align 8 + %23 = mul i64 8, %22 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %20, ptr align 8 %21, i64 %23, i1 false) + br label %32 + +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 + +27: ; preds = %24 + %28 = load ptr, ptr %6, align 8 + %29 = getelementptr inbounds ptr, ptr %28, i64 -1 + %30 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %29, ptr noundef %30) + br label %31 + +31: ; preds = %27, %24 + br label %32 + +32: ; preds = %31, %16 + %33 = load ptr, ptr %6, align 8 + %34 = load i64, ptr %7, align 8 + %35 = sub i64 0, %34 + %36 = getelementptr inbounds ptr, ptr %33, i64 %35 + ret ptr %36 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5dequeIiSaIiEE5frontEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_Deque_iterator", align 8 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + call void @_ZNSt5dequeIiSaIiEE5beginEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %3, ptr noundef nonnull align 8 dereferenceable(80) %4) #13 + %5 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #13 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 2 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 2 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 2 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds i32, ptr %15, i64 -1 + %17 = icmp ne ptr %11, %16 + br i1 %17, label %18, label %33 + +18: ; preds = %1 + %19 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #13 + %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %20, i32 0, i32 2 + %22 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %21, i32 0, i32 0 + %23 = load ptr, ptr %22, align 8 + store ptr %19, ptr %4, align 8 + store ptr %23, ptr %5, align 8 + %24 = load ptr, ptr %4, align 8 + %25 = load ptr, ptr %5, align 8 + store ptr %24, ptr %2, align 8 + store ptr %25, ptr %3, align 8 + %26 = load ptr, ptr %2, align 8 + %27 = load ptr, ptr %3, align 8 + %28 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %28, i32 0, i32 2 + %30 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + %32 = getelementptr inbounds i32, ptr %31, i32 1 + store ptr %32, ptr %30, align 8 + br label %35 + +33: ; preds = %1 + invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %34 unwind label %36 + +34: ; preds = %33 + br label %35 + +35: ; preds = %34, %18 + ret void + +36: ; preds = %33 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #15 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #13 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %9, i32 0, i32 2 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %10, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + store ptr %8, ptr %4, align 8 + store ptr %12, ptr %5, align 8 + %13 = load ptr, ptr %4, align 8 + %14 = load ptr, ptr %5, align 8 + store ptr %13, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %18 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %17, i32 0, i32 2 + %19 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %18, i32 0, i32 1 + %20 = load ptr, ptr %19, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %7, ptr noundef %20) #13 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 2 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 2 + %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 3 + %26 = load ptr, ptr %25, align 8 + %27 = getelementptr inbounds ptr, ptr %26, i64 1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %22, ptr noundef %27) #13 + %28 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %28, i32 0, i32 2 + %30 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %29, i32 0, i32 1 + %31 = load ptr, ptr %30, align 8 + %32 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %32, i32 0, i32 2 + %34 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %33, i32 0, i32 0 + store ptr %31, ptr %34, align 8 + ret void +} + +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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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 = { 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 #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 = { 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 = { "frame-pointer"="all" "no-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 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 = { noinline noreturn 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 = { 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 = { 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #13 = { nounwind } +attributes #14 = { noreturn } +attributes #15 = { noreturn nounwind } +attributes #16 = { builtin nounwind } +attributes #17 = { builtin allocsize(0) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/anagram-substring-search-search-permutations.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/anagram-substring-search-search-permutations.ll new file mode 100644 index 000000000..0b0013923 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/anagram-substring-search-search-permutations.ll @@ -0,0 +1,261 @@ +; ModuleID = 'PE-benchmarks/anagram-substring-search-search-permutations.cpp' +source_filename = "PE-benchmarks/anagram-substring-search-search-permutations.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z7comparePcS_(ptr noundef %0, ptr noundef %1) #0 { + %3 = alloca i1, align 1 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i32 0, ptr %6, align 4 + br label %7 + +7: ; preds = %26, %2 + %8 = load i32, ptr %6, align 4 + %9 = icmp slt i32 %8, 256 + br i1 %9, label %10, label %29 + +10: ; preds = %7 + %11 = load ptr, ptr %4, align 8 + %12 = load i32, ptr %6, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i8, ptr %11, i64 %13 + %15 = load i8, ptr %14, align 1 + %16 = sext i8 %15 to i32 + %17 = load ptr, ptr %5, align 8 + %18 = load i32, ptr %6, align 4 + %19 = sext i32 %18 to i64 + %20 = getelementptr inbounds i8, ptr %17, i64 %19 + %21 = load i8, ptr %20, align 1 + %22 = sext i8 %21 to i32 + %23 = icmp ne i32 %16, %22 + br i1 %23, label %24, label %25 + +24: ; preds = %10 + store i1 false, ptr %3, align 1 + br label %30 + +25: ; preds = %10 + br label %26 + +26: ; preds = %25 + %27 = load i32, ptr %6, align 4 + %28 = add nsw i32 %27, 1 + store i32 %28, ptr %6, align 4 + br label %7, !llvm.loop !6 + +29: ; preds = %7 + store i1 true, ptr %3, align 1 + br label %30 + +30: ; preds = %29, %24 + %31 = load i1, ptr %3, align 1 + ret i1 %31 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchPcS_(ptr noundef %0, ptr noundef %1) #1 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca [256 x i8], align 16 + %8 = alloca [256 x i8], align 16 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %11 = load ptr, ptr %3, align 8 + %12 = call i64 @strlen(ptr noundef %11) #7 + %13 = trunc i64 %12 to i32 + store i32 %13, ptr %5, align 4 + %14 = load ptr, ptr %4, align 8 + %15 = call i64 @strlen(ptr noundef %14) #7 + %16 = trunc i64 %15 to i32 + store i32 %16, ptr %6, align 4 + call void @llvm.memset.p0.i64(ptr align 16 %7, i8 0, i64 256, i1 false) + call void @llvm.memset.p0.i64(ptr align 16 %8, i8 0, i64 256, i1 false) + store i32 0, ptr %9, align 4 + br label %17 + +17: ; preds = %40, %2 + %18 = load i32, ptr %9, align 4 + %19 = load i32, ptr %5, align 4 + %20 = icmp slt i32 %18, %19 + br i1 %20, label %21, label %43 + +21: ; preds = %17 + %22 = load ptr, ptr %3, align 8 + %23 = load i32, ptr %9, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds i8, ptr %22, i64 %24 + %26 = load i8, ptr %25, align 1 + %27 = sext i8 %26 to i64 + %28 = getelementptr inbounds [256 x i8], ptr %7, i64 0, i64 %27 + %29 = load i8, ptr %28, align 1 + %30 = add i8 %29, 1 + store i8 %30, ptr %28, align 1 + %31 = load ptr, ptr %4, align 8 + %32 = load i32, ptr %9, align 4 + %33 = sext i32 %32 to i64 + %34 = getelementptr inbounds i8, ptr %31, i64 %33 + %35 = load i8, ptr %34, align 1 + %36 = sext i8 %35 to i64 + %37 = getelementptr inbounds [256 x i8], ptr %8, i64 0, i64 %36 + %38 = load i8, ptr %37, align 1 + %39 = add i8 %38, 1 + store i8 %39, ptr %37, align 1 + br label %40 + +40: ; preds = %21 + %41 = load i32, ptr %9, align 4 + %42 = add nsw i32 %41, 1 + store i32 %42, ptr %9, align 4 + br label %17, !llvm.loop !8 + +43: ; preds = %17 + %44 = load i32, ptr %5, align 4 + store i32 %44, ptr %10, align 4 + br label %45 + +45: ; preds = %81, %43 + %46 = load i32, ptr %10, align 4 + %47 = load i32, ptr %6, align 4 + %48 = icmp slt i32 %46, %47 + br i1 %48, label %49, label %84 + +49: ; preds = %45 + %50 = getelementptr inbounds [256 x i8], ptr %7, i64 0, i64 0 + %51 = getelementptr inbounds [256 x i8], ptr %8, i64 0, i64 0 + %52 = call noundef zeroext i1 @_Z7comparePcS_(ptr noundef %50, ptr noundef %51) + br i1 %52, label %53, label %60 + +53: ; preds = %49 + %54 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %55 = load i32, ptr %10, align 4 + %56 = load i32, ptr %5, align 4 + %57 = sub nsw i32 %55, %56 + %58 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %54, i32 noundef %57) + %59 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %58, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %60 + +60: ; preds = %53, %49 + %61 = load ptr, ptr %4, align 8 + %62 = load i32, ptr %10, align 4 + %63 = sext i32 %62 to i64 + %64 = getelementptr inbounds i8, ptr %61, i64 %63 + %65 = load i8, ptr %64, align 1 + %66 = sext i8 %65 to i64 + %67 = getelementptr inbounds [256 x i8], ptr %8, i64 0, i64 %66 + %68 = load i8, ptr %67, align 1 + %69 = add i8 %68, 1 + store i8 %69, ptr %67, align 1 + %70 = load ptr, ptr %4, align 8 + %71 = load i32, ptr %10, align 4 + %72 = load i32, ptr %5, align 4 + %73 = sub nsw i32 %71, %72 + %74 = sext i32 %73 to i64 + %75 = getelementptr inbounds i8, ptr %70, i64 %74 + %76 = load i8, ptr %75, align 1 + %77 = sext i8 %76 to i64 + %78 = getelementptr inbounds [256 x i8], ptr %8, i64 0, i64 %77 + %79 = load i8, ptr %78, align 1 + %80 = add i8 %79, -1 + store i8 %80, ptr %78, align 1 + br label %81 + +81: ; preds = %60 + %82 = load i32, ptr %10, align 4 + %83 = add nsw i32 %82, 1 + store i32 %83, ptr %10, align 4 + br label %45, !llvm.loop !9 + +84: ; preds = %45 + %85 = getelementptr inbounds [256 x i8], ptr %7, i64 0, i64 0 + %86 = getelementptr inbounds [256 x i8], ptr %8, i64 0, i64 0 + %87 = call noundef zeroext i1 @_Z7comparePcS_(ptr noundef %85, ptr noundef %86) + br i1 %87, label %88, label %95 + +88: ; preds = %84 + %89 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %90 = load i32, ptr %6, align 4 + %91 = load i32, ptr %5, align 4 + %92 = sub nsw i32 %90, %91 + %93 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %89, i32 noundef %92) + %94 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %93, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %95 + +95: ; preds = %88, %84 + ret void +} + +; Function Attrs: nounwind willreturn memory(read) +declare i64 @strlen(ptr noundef) #2 + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #4 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #5 { + %1 = alloca i32, align 4 + %2 = alloca [11 x i8], align 1 + %3 = alloca [5 x i8], align 1 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %2, ptr align 1 @__const.main.txt, i64 11, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %3, ptr align 1 @__const.main.pat, i64 5, i1 false) + %4 = getelementptr inbounds [5 x i8], ptr %3, i64 0, i64 0 + %5 = getelementptr inbounds [11 x i8], ptr %2, i64 0, i64 0 + call void @_Z6searchPcS_(ptr noundef %4, ptr noundef %5) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 + +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 willreturn memory(read) "frame-pointer"="all" "no-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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #7 = { nounwind willreturn memory(read) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/bellman-ford-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/bellman-ford-algorithm.ll new file mode 100644 index 000000000..92a1fcab7 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/bellman-ford-algorithm.ll @@ -0,0 +1,531 @@ +; ModuleID = 'PE-benchmarks/bellman-ford-algorithm.cpp' +source_filename = "PE-benchmarks/bellman-ford-algorithm.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%struct.Graph = type { i32, i32, ptr } +%struct.Edge = type { i32, i32, i32 } + +@.str = private unnamed_addr constant [29 x i8] c"Vertex Distance from Source\0A\00", align 1 +@.str.1 = private unnamed_addr constant [10 x i8] c"%d \09\09 %d\0A\00", align 1 +@.str.2 = private unnamed_addr constant [37 x i8] c"Graph contains negative weight cycle\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef ptr @_Z11createGraphii(i32 noundef %0, i32 noundef %1) #0 { + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %6 = call noalias noundef nonnull ptr @_Znwm(i64 noundef 16) #6 + store ptr %6, ptr %5, align 8 + %7 = load i32, ptr %3, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = getelementptr inbounds %struct.Graph, ptr %8, i32 0, i32 0 + store i32 %7, ptr %9, align 8 + %10 = load i32, ptr %4, align 4 + %11 = load ptr, ptr %5, align 8 + %12 = getelementptr inbounds %struct.Graph, ptr %11, i32 0, i32 1 + store i32 %10, ptr %12, align 4 + %13 = load i32, ptr %4, align 4 + %14 = sext i32 %13 to i64 + %15 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %14, i64 12) + %16 = extractvalue { i64, i1 } %15, 1 + %17 = extractvalue { i64, i1 } %15, 0 + %18 = select i1 %16, i64 -1, i64 %17 + %19 = call noalias noundef nonnull ptr @_Znam(i64 noundef %18) #6 + %20 = load ptr, ptr %5, align 8 + %21 = getelementptr inbounds %struct.Graph, ptr %20, i32 0, i32 2 + store ptr %19, ptr %21, align 8 + %22 = load ptr, ptr %5, align 8 + ret ptr %22 +} + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #2 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z8printArrPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %6 = call i32 (ptr, ...) @printf(ptr noundef @.str) + store i32 0, ptr %5, align 4 + br label %7 + +7: ; preds = %19, %2 + %8 = load i32, ptr %5, align 4 + %9 = load i32, ptr %4, align 4 + %10 = icmp slt i32 %8, %9 + br i1 %10, label %11, label %22 + +11: ; preds = %7 + %12 = load i32, ptr %5, align 4 + %13 = load ptr, ptr %3, align 8 + %14 = load i32, ptr %5, align 4 + %15 = sext i32 %14 to i64 + %16 = getelementptr inbounds i32, ptr %13, i64 %15 + %17 = load i32, ptr %16, align 4 + %18 = call i32 (ptr, ...) @printf(ptr noundef @.str.1, i32 noundef %12, i32 noundef %17) + br label %19 + +19: ; preds = %11 + %20 = load i32, ptr %5, align 4 + %21 = add nsw i32 %20, 1 + store i32 %21, ptr %5, align 4 + br label %7, !llvm.loop !6 + +22: ; preds = %7 + ret void +} + +declare i32 @printf(ptr noundef, ...) #3 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z11BellmanFordP5Graphi(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + %15 = alloca i32, align 4 + %16 = alloca i32, align 4 + %17 = alloca i32, align 4 + %18 = alloca i32, align 4 + %19 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %20 = load ptr, ptr %3, align 8 + %21 = getelementptr inbounds %struct.Graph, ptr %20, i32 0, i32 0 + %22 = load i32, ptr %21, align 8 + store i32 %22, ptr %5, align 4 + %23 = load ptr, ptr %3, align 8 + %24 = getelementptr inbounds %struct.Graph, ptr %23, i32 0, i32 1 + %25 = load i32, ptr %24, align 4 + store i32 %25, ptr %6, align 4 + %26 = load i32, ptr %5, align 4 + %27 = zext i32 %26 to i64 + %28 = call ptr @llvm.stacksave() + store ptr %28, ptr %7, align 8 + %29 = alloca i32, i64 %27, align 16 + store i64 %27, ptr %8, align 8 + store i32 0, ptr %9, align 4 + br label %30 + +30: ; preds = %38, %2 + %31 = load i32, ptr %9, align 4 + %32 = load i32, ptr %5, align 4 + %33 = icmp slt i32 %31, %32 + br i1 %33, label %34, label %41 + +34: ; preds = %30 + %35 = load i32, ptr %9, align 4 + %36 = sext i32 %35 to i64 + %37 = getelementptr inbounds i32, ptr %29, i64 %36 + store i32 2147483647, ptr %37, align 4 + br label %38 + +38: ; preds = %34 + %39 = load i32, ptr %9, align 4 + %40 = add nsw i32 %39, 1 + store i32 %40, ptr %9, align 4 + br label %30, !llvm.loop !8 + +41: ; preds = %30 + %42 = load i32, ptr %4, align 4 + %43 = sext i32 %42 to i64 + %44 = getelementptr inbounds i32, ptr %29, i64 %43 + store i32 0, ptr %44, align 4 + store i32 1, ptr %10, align 4 + br label %45 + +45: ; preds = %112, %41 + %46 = load i32, ptr %10, align 4 + %47 = load i32, ptr %5, align 4 + %48 = sub nsw i32 %47, 1 + %49 = icmp sle i32 %46, %48 + br i1 %49, label %50, label %115 + +50: ; preds = %45 + store i32 0, ptr %11, align 4 + br label %51 + +51: ; preds = %108, %50 + %52 = load i32, ptr %11, align 4 + %53 = load i32, ptr %6, align 4 + %54 = icmp slt i32 %52, %53 + br i1 %54, label %55, label %111 + +55: ; preds = %51 + %56 = load ptr, ptr %3, align 8 + %57 = getelementptr inbounds %struct.Graph, ptr %56, i32 0, i32 2 + %58 = load ptr, ptr %57, align 8 + %59 = load i32, ptr %11, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds %struct.Edge, ptr %58, i64 %60 + %62 = getelementptr inbounds %struct.Edge, ptr %61, i32 0, i32 0 + %63 = load i32, ptr %62, align 4 + store i32 %63, ptr %12, align 4 + %64 = load ptr, ptr %3, align 8 + %65 = getelementptr inbounds %struct.Graph, ptr %64, i32 0, i32 2 + %66 = load ptr, ptr %65, align 8 + %67 = load i32, ptr %11, align 4 + %68 = sext i32 %67 to i64 + %69 = getelementptr inbounds %struct.Edge, ptr %66, i64 %68 + %70 = getelementptr inbounds %struct.Edge, ptr %69, i32 0, i32 1 + %71 = load i32, ptr %70, align 4 + store i32 %71, ptr %13, align 4 + %72 = load ptr, ptr %3, align 8 + %73 = getelementptr inbounds %struct.Graph, ptr %72, i32 0, i32 2 + %74 = load ptr, ptr %73, align 8 + %75 = load i32, ptr %11, align 4 + %76 = sext i32 %75 to i64 + %77 = getelementptr inbounds %struct.Edge, ptr %74, i64 %76 + %78 = getelementptr inbounds %struct.Edge, ptr %77, i32 0, i32 2 + %79 = load i32, ptr %78, align 4 + store i32 %79, ptr %14, align 4 + %80 = load i32, ptr %12, align 4 + %81 = sext i32 %80 to i64 + %82 = getelementptr inbounds i32, ptr %29, i64 %81 + %83 = load i32, ptr %82, align 4 + %84 = icmp ne i32 %83, 2147483647 + br i1 %84, label %85, label %107 + +85: ; preds = %55 + %86 = load i32, ptr %12, align 4 + %87 = sext i32 %86 to i64 + %88 = getelementptr inbounds i32, ptr %29, i64 %87 + %89 = load i32, ptr %88, align 4 + %90 = load i32, ptr %14, align 4 + %91 = add nsw i32 %89, %90 + %92 = load i32, ptr %13, align 4 + %93 = sext i32 %92 to i64 + %94 = getelementptr inbounds i32, ptr %29, i64 %93 + %95 = load i32, ptr %94, align 4 + %96 = icmp slt i32 %91, %95 + br i1 %96, label %97, label %107 + +97: ; preds = %85 + %98 = load i32, ptr %12, align 4 + %99 = sext i32 %98 to i64 + %100 = getelementptr inbounds i32, ptr %29, i64 %99 + %101 = load i32, ptr %100, align 4 + %102 = load i32, ptr %14, align 4 + %103 = add nsw i32 %101, %102 + %104 = load i32, ptr %13, align 4 + %105 = sext i32 %104 to i64 + %106 = getelementptr inbounds i32, ptr %29, i64 %105 + store i32 %103, ptr %106, align 4 + br label %107 + +107: ; preds = %97, %85, %55 + br label %108 + +108: ; preds = %107 + %109 = load i32, ptr %11, align 4 + %110 = add nsw i32 %109, 1 + store i32 %110, ptr %11, align 4 + br label %51, !llvm.loop !9 + +111: ; preds = %51 + br label %112 + +112: ; preds = %111 + %113 = load i32, ptr %10, align 4 + %114 = add nsw i32 %113, 1 + store i32 %114, ptr %10, align 4 + br label %45, !llvm.loop !10 + +115: ; preds = %45 + store i32 0, ptr %15, align 4 + br label %116 + +116: ; preds = %165, %115 + %117 = load i32, ptr %15, align 4 + %118 = load i32, ptr %6, align 4 + %119 = icmp slt i32 %117, %118 + br i1 %119, label %120, label %168 + +120: ; preds = %116 + %121 = load ptr, ptr %3, align 8 + %122 = getelementptr inbounds %struct.Graph, ptr %121, i32 0, i32 2 + %123 = load ptr, ptr %122, align 8 + %124 = load i32, ptr %15, align 4 + %125 = sext i32 %124 to i64 + %126 = getelementptr inbounds %struct.Edge, ptr %123, i64 %125 + %127 = getelementptr inbounds %struct.Edge, ptr %126, i32 0, i32 0 + %128 = load i32, ptr %127, align 4 + store i32 %128, ptr %16, align 4 + %129 = load ptr, ptr %3, align 8 + %130 = getelementptr inbounds %struct.Graph, ptr %129, i32 0, i32 2 + %131 = load ptr, ptr %130, align 8 + %132 = load i32, ptr %15, align 4 + %133 = sext i32 %132 to i64 + %134 = getelementptr inbounds %struct.Edge, ptr %131, i64 %133 + %135 = getelementptr inbounds %struct.Edge, ptr %134, i32 0, i32 1 + %136 = load i32, ptr %135, align 4 + store i32 %136, ptr %17, align 4 + %137 = load ptr, ptr %3, align 8 + %138 = getelementptr inbounds %struct.Graph, ptr %137, i32 0, i32 2 + %139 = load ptr, ptr %138, align 8 + %140 = load i32, ptr %15, align 4 + %141 = sext i32 %140 to i64 + %142 = getelementptr inbounds %struct.Edge, ptr %139, i64 %141 + %143 = getelementptr inbounds %struct.Edge, ptr %142, i32 0, i32 2 + %144 = load i32, ptr %143, align 4 + store i32 %144, ptr %18, align 4 + %145 = load i32, ptr %16, align 4 + %146 = sext i32 %145 to i64 + %147 = getelementptr inbounds i32, ptr %29, i64 %146 + %148 = load i32, ptr %147, align 4 + %149 = icmp ne i32 %148, 2147483647 + br i1 %149, label %150, label %164 + +150: ; preds = %120 + %151 = load i32, ptr %16, align 4 + %152 = sext i32 %151 to i64 + %153 = getelementptr inbounds i32, ptr %29, i64 %152 + %154 = load i32, ptr %153, align 4 + %155 = load i32, ptr %18, align 4 + %156 = add nsw i32 %154, %155 + %157 = load i32, ptr %17, align 4 + %158 = sext i32 %157 to i64 + %159 = getelementptr inbounds i32, ptr %29, i64 %158 + %160 = load i32, ptr %159, align 4 + %161 = icmp slt i32 %156, %160 + br i1 %161, label %162, label %164 + +162: ; preds = %150 + %163 = call i32 (ptr, ...) @printf(ptr noundef @.str.2) + store i32 1, ptr %19, align 4 + br label %170 + +164: ; preds = %150, %120 + br label %165 + +165: ; preds = %164 + %166 = load i32, ptr %15, align 4 + %167 = add nsw i32 %166, 1 + store i32 %167, ptr %15, align 4 + br label %116, !llvm.loop !11 + +168: ; preds = %116 + %169 = load i32, ptr %5, align 4 + call void @_Z8printArrPii(ptr noundef %29, i32 noundef %169) + store i32 1, ptr %19, align 4 + br label %170 + +170: ; preds = %168, %162 + %171 = load ptr, ptr %7, align 8 + call void @llvm.stackrestore(ptr %171) + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #4 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #4 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #5 { + %1 = alloca i32, align 4 + %2 = alloca i32, align 4 + %3 = alloca i32, align 4 + %4 = alloca ptr, align 8 + store i32 0, ptr %1, align 4 + store i32 5, ptr %2, align 4 + store i32 8, ptr %3, align 4 + %5 = load i32, ptr %2, align 4 + %6 = load i32, ptr %3, align 4 + %7 = call noundef ptr @_Z11createGraphii(i32 noundef %5, i32 noundef %6) + store ptr %7, ptr %4, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %struct.Graph, ptr %8, i32 0, i32 2 + %10 = load ptr, ptr %9, align 8 + %11 = getelementptr inbounds %struct.Edge, ptr %10, i64 0 + %12 = getelementptr inbounds %struct.Edge, ptr %11, i32 0, i32 0 + store i32 0, ptr %12, align 4 + %13 = load ptr, ptr %4, align 8 + %14 = getelementptr inbounds %struct.Graph, ptr %13, i32 0, i32 2 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %struct.Edge, ptr %15, i64 0 + %17 = getelementptr inbounds %struct.Edge, ptr %16, i32 0, i32 1 + store i32 1, ptr %17, align 4 + %18 = load ptr, ptr %4, align 8 + %19 = getelementptr inbounds %struct.Graph, ptr %18, i32 0, i32 2 + %20 = load ptr, ptr %19, align 8 + %21 = getelementptr inbounds %struct.Edge, ptr %20, i64 0 + %22 = getelementptr inbounds %struct.Edge, ptr %21, i32 0, i32 2 + store i32 -1, ptr %22, align 4 + %23 = load ptr, ptr %4, align 8 + %24 = getelementptr inbounds %struct.Graph, ptr %23, i32 0, i32 2 + %25 = load ptr, ptr %24, align 8 + %26 = getelementptr inbounds %struct.Edge, ptr %25, i64 1 + %27 = getelementptr inbounds %struct.Edge, ptr %26, i32 0, i32 0 + store i32 0, ptr %27, align 4 + %28 = load ptr, ptr %4, align 8 + %29 = getelementptr inbounds %struct.Graph, ptr %28, i32 0, i32 2 + %30 = load ptr, ptr %29, align 8 + %31 = getelementptr inbounds %struct.Edge, ptr %30, i64 1 + %32 = getelementptr inbounds %struct.Edge, ptr %31, i32 0, i32 1 + store i32 2, ptr %32, align 4 + %33 = load ptr, ptr %4, align 8 + %34 = getelementptr inbounds %struct.Graph, ptr %33, i32 0, i32 2 + %35 = load ptr, ptr %34, align 8 + %36 = getelementptr inbounds %struct.Edge, ptr %35, i64 1 + %37 = getelementptr inbounds %struct.Edge, ptr %36, i32 0, i32 2 + store i32 4, ptr %37, align 4 + %38 = load ptr, ptr %4, align 8 + %39 = getelementptr inbounds %struct.Graph, ptr %38, i32 0, i32 2 + %40 = load ptr, ptr %39, align 8 + %41 = getelementptr inbounds %struct.Edge, ptr %40, i64 2 + %42 = getelementptr inbounds %struct.Edge, ptr %41, i32 0, i32 0 + store i32 1, ptr %42, align 4 + %43 = load ptr, ptr %4, align 8 + %44 = getelementptr inbounds %struct.Graph, ptr %43, i32 0, i32 2 + %45 = load ptr, ptr %44, align 8 + %46 = getelementptr inbounds %struct.Edge, ptr %45, i64 2 + %47 = getelementptr inbounds %struct.Edge, ptr %46, i32 0, i32 1 + store i32 2, ptr %47, align 4 + %48 = load ptr, ptr %4, align 8 + %49 = getelementptr inbounds %struct.Graph, ptr %48, i32 0, i32 2 + %50 = load ptr, ptr %49, align 8 + %51 = getelementptr inbounds %struct.Edge, ptr %50, i64 2 + %52 = getelementptr inbounds %struct.Edge, ptr %51, i32 0, i32 2 + store i32 3, ptr %52, align 4 + %53 = load ptr, ptr %4, align 8 + %54 = getelementptr inbounds %struct.Graph, ptr %53, i32 0, i32 2 + %55 = load ptr, ptr %54, align 8 + %56 = getelementptr inbounds %struct.Edge, ptr %55, i64 3 + %57 = getelementptr inbounds %struct.Edge, ptr %56, i32 0, i32 0 + store i32 1, ptr %57, align 4 + %58 = load ptr, ptr %4, align 8 + %59 = getelementptr inbounds %struct.Graph, ptr %58, i32 0, i32 2 + %60 = load ptr, ptr %59, align 8 + %61 = getelementptr inbounds %struct.Edge, ptr %60, i64 3 + %62 = getelementptr inbounds %struct.Edge, ptr %61, i32 0, i32 1 + store i32 3, ptr %62, align 4 + %63 = load ptr, ptr %4, align 8 + %64 = getelementptr inbounds %struct.Graph, ptr %63, i32 0, i32 2 + %65 = load ptr, ptr %64, align 8 + %66 = getelementptr inbounds %struct.Edge, ptr %65, i64 3 + %67 = getelementptr inbounds %struct.Edge, ptr %66, i32 0, i32 2 + store i32 2, ptr %67, align 4 + %68 = load ptr, ptr %4, align 8 + %69 = getelementptr inbounds %struct.Graph, ptr %68, i32 0, i32 2 + %70 = load ptr, ptr %69, align 8 + %71 = getelementptr inbounds %struct.Edge, ptr %70, i64 4 + %72 = getelementptr inbounds %struct.Edge, ptr %71, i32 0, i32 0 + store i32 1, ptr %72, align 4 + %73 = load ptr, ptr %4, align 8 + %74 = getelementptr inbounds %struct.Graph, ptr %73, i32 0, i32 2 + %75 = load ptr, ptr %74, align 8 + %76 = getelementptr inbounds %struct.Edge, ptr %75, i64 4 + %77 = getelementptr inbounds %struct.Edge, ptr %76, i32 0, i32 1 + store i32 4, ptr %77, align 4 + %78 = load ptr, ptr %4, align 8 + %79 = getelementptr inbounds %struct.Graph, ptr %78, i32 0, i32 2 + %80 = load ptr, ptr %79, align 8 + %81 = getelementptr inbounds %struct.Edge, ptr %80, i64 4 + %82 = getelementptr inbounds %struct.Edge, ptr %81, i32 0, i32 2 + store i32 2, ptr %82, align 4 + %83 = load ptr, ptr %4, align 8 + %84 = getelementptr inbounds %struct.Graph, ptr %83, i32 0, i32 2 + %85 = load ptr, ptr %84, align 8 + %86 = getelementptr inbounds %struct.Edge, ptr %85, i64 5 + %87 = getelementptr inbounds %struct.Edge, ptr %86, i32 0, i32 0 + store i32 3, ptr %87, align 4 + %88 = load ptr, ptr %4, align 8 + %89 = getelementptr inbounds %struct.Graph, ptr %88, i32 0, i32 2 + %90 = load ptr, ptr %89, align 8 + %91 = getelementptr inbounds %struct.Edge, ptr %90, i64 5 + %92 = getelementptr inbounds %struct.Edge, ptr %91, i32 0, i32 1 + store i32 2, ptr %92, align 4 + %93 = load ptr, ptr %4, align 8 + %94 = getelementptr inbounds %struct.Graph, ptr %93, i32 0, i32 2 + %95 = load ptr, ptr %94, align 8 + %96 = getelementptr inbounds %struct.Edge, ptr %95, i64 5 + %97 = getelementptr inbounds %struct.Edge, ptr %96, i32 0, i32 2 + store i32 5, ptr %97, align 4 + %98 = load ptr, ptr %4, align 8 + %99 = getelementptr inbounds %struct.Graph, ptr %98, i32 0, i32 2 + %100 = load ptr, ptr %99, align 8 + %101 = getelementptr inbounds %struct.Edge, ptr %100, i64 6 + %102 = getelementptr inbounds %struct.Edge, ptr %101, i32 0, i32 0 + store i32 3, ptr %102, align 4 + %103 = load ptr, ptr %4, align 8 + %104 = getelementptr inbounds %struct.Graph, ptr %103, i32 0, i32 2 + %105 = load ptr, ptr %104, align 8 + %106 = getelementptr inbounds %struct.Edge, ptr %105, i64 6 + %107 = getelementptr inbounds %struct.Edge, ptr %106, i32 0, i32 1 + store i32 1, ptr %107, align 4 + %108 = load ptr, ptr %4, align 8 + %109 = getelementptr inbounds %struct.Graph, ptr %108, i32 0, i32 2 + %110 = load ptr, ptr %109, align 8 + %111 = getelementptr inbounds %struct.Edge, ptr %110, i64 6 + %112 = getelementptr inbounds %struct.Edge, ptr %111, i32 0, i32 2 + store i32 1, ptr %112, align 4 + %113 = load ptr, ptr %4, align 8 + %114 = getelementptr inbounds %struct.Graph, ptr %113, i32 0, i32 2 + %115 = load ptr, ptr %114, align 8 + %116 = getelementptr inbounds %struct.Edge, ptr %115, i64 7 + %117 = getelementptr inbounds %struct.Edge, ptr %116, i32 0, i32 0 + store i32 4, ptr %117, align 4 + %118 = load ptr, ptr %4, align 8 + %119 = getelementptr inbounds %struct.Graph, ptr %118, i32 0, i32 2 + %120 = load ptr, ptr %119, align 8 + %121 = getelementptr inbounds %struct.Edge, ptr %120, i64 7 + %122 = getelementptr inbounds %struct.Edge, ptr %121, i32 0, i32 1 + store i32 3, ptr %122, align 4 + %123 = load ptr, ptr %4, align 8 + %124 = getelementptr inbounds %struct.Graph, ptr %123, i32 0, i32 2 + %125 = load ptr, ptr %124, align 8 + %126 = getelementptr inbounds %struct.Edge, ptr %125, i64 7 + %127 = getelementptr inbounds %struct.Edge, ptr %126, i32 0, i32 2 + store i32 -3, ptr %127, align 4 + %128 = load ptr, ptr %4, align 8 + call void @_Z11BellmanFordP5Graphi(ptr noundef %128, i32 noundef 0) + ret i32 0 +} + +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 = { 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 #2 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { nocallback nofree nosync nounwind willreturn } +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 = { builtin allocsize(0) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/bfs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/bfs.ll new file mode 100644 index 000000000..5458e4e96 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/bfs.ll @@ -0,0 +1,1093 @@ +; ModuleID = 'PE-benchmarks/bfs.cpp' +source_filename = "PE-benchmarks/bfs.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"struct.std::_List_iterator" = type { ptr } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } +%"struct.std::__allocated_ptr" = type { ptr, ptr } + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNKSt7__cxx114listIiSaIiEE5emptyEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5frontEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9pop_frontEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE8_M_eraseESt14_List_iteratorIiE = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_sizeEm = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +@_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 + +@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei + +; Function Attrs: noinline uwtable +define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #0 align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + store i32 %6, ptr %7, align 8 + %8 = load i32, ptr %4, align 4 + %9 = sext i32 %8 to i64 + %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) + %11 = extractvalue { i64, i1 } %10, 1 + %12 = extractvalue { i64, i1 } %10, 0 + %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = or i1 %11, %14 + %16 = extractvalue { i64, i1 } %13, 0 + %17 = select i1 %15, i64 -1, i64 %16 + %18 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #13 + store i64 %9, ptr %18, align 16 + %19 = getelementptr inbounds i8, ptr %18, i64 8 + %20 = icmp eq i64 %9, 0 + br i1 %20, label %27, label %21 + +21: ; preds = %2 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %9 + br label %23 + +23: ; preds = %23, %21 + %24 = phi ptr [ %19, %21 ], [ %25, %23 ] + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #14 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 1 + %26 = icmp eq ptr %25, %22 + br i1 %26, label %27, label %23 + +27: ; preds = %2, %23 + %28 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + store ptr %19, ptr %28, align 8 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #4 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds %"class.std::__cxx11::list", ptr %9, i64 %11 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %6) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #14 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph3BFSEi(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) #4 align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca %"class.std::__cxx11::list", align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca %"struct.std::_List_iterator", align 8 + %11 = alloca %"struct.std::_List_iterator", align 8 + %12 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %13 = load ptr, ptr %3, align 8 + %14 = getelementptr inbounds %class.Graph, ptr %13, i32 0, i32 0 + %15 = load i32, ptr %14, align 8 + %16 = sext i32 %15 to i64 + %17 = call noalias noundef nonnull ptr @_Znam(i64 noundef %16) #13 + store ptr %17, ptr %5, align 8 + store i32 0, ptr %6, align 4 + br label %18 + +18: ; preds = %28, %2 + %19 = load i32, ptr %6, align 4 + %20 = getelementptr inbounds %class.Graph, ptr %13, i32 0, i32 0 + %21 = load i32, ptr %20, align 8 + %22 = icmp slt i32 %19, %21 + br i1 %22, label %23, label %31 + +23: ; preds = %18 + %24 = load ptr, ptr %5, align 8 + %25 = load i32, ptr %6, align 4 + %26 = sext i32 %25 to i64 + %27 = getelementptr inbounds i8, ptr %24, i64 %26 + store i8 0, ptr %27, align 1 + br label %28 + +28: ; preds = %23 + %29 = load i32, ptr %6, align 4 + %30 = add nsw i32 %29, 1 + store i32 %30, ptr %6, align 4 + br label %18, !llvm.loop !6 + +31: ; preds = %18 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %7) #14 + %32 = load ptr, ptr %5, align 8 + %33 = load i32, ptr %4, align 4 + %34 = sext i32 %33 to i64 + %35 = getelementptr inbounds i8, ptr %32, i64 %34 + store i8 1, ptr %35, align 1 + invoke void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %7, ptr noundef nonnull align 4 dereferenceable(4) %4) + to label %36 unwind label %80 + +36: ; preds = %31 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + br label %37 + +37: ; preds = %87, %36 + %38 = call noundef zeroext i1 @_ZNKSt7__cxx114listIiSaIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(24) %7) #14 + %39 = xor i1 %38, true + br i1 %39, label %40, label %88 + +40: ; preds = %37 + %41 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt7__cxx114listIiSaIiEE5frontEv(ptr noundef nonnull align 8 dereferenceable(24) %7) #14 + %42 = load i32, ptr %41, align 4 + store i32 %42, ptr %4, align 4 + %43 = load i32, ptr %4, align 4 + %44 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %43) + to label %45 unwind label %80 + +45: ; preds = %40 + %46 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %44, ptr noundef @.str) + to label %47 unwind label %80 + +47: ; preds = %45 + call void @_ZNSt7__cxx114listIiSaIiEE9pop_frontEv(ptr noundef nonnull align 8 dereferenceable(24) %7) #14 + %48 = getelementptr inbounds %class.Graph, ptr %13, i32 0, i32 1 + %49 = load ptr, ptr %48, align 8 + %50 = load i32, ptr %4, align 4 + %51 = sext i32 %50 to i64 + %52 = getelementptr inbounds %"class.std::__cxx11::list", ptr %49, i64 %51 + %53 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %52) #14 + %54 = getelementptr inbounds %"struct.std::_List_iterator", ptr %11, i32 0, i32 0 + store ptr %53, ptr %54, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %10, ptr align 8 %11, i64 8, i1 false) + br label %55 + +55: ; preds = %85, %47 + %56 = getelementptr inbounds %class.Graph, ptr %13, i32 0, i32 1 + %57 = load ptr, ptr %56, align 8 + %58 = load i32, ptr %4, align 4 + %59 = sext i32 %58 to i64 + %60 = getelementptr inbounds %"class.std::__cxx11::list", ptr %57, i64 %59 + %61 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %60) #14 + %62 = getelementptr inbounds %"struct.std::_List_iterator", ptr %12, i32 0, i32 0 + store ptr %61, ptr %62, align 8 + %63 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef nonnull align 8 dereferenceable(8) %12) #14 + br i1 %63, label %64, label %87 + +64: ; preds = %55 + %65 = load ptr, ptr %5, align 8 + %66 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + %67 = load i32, ptr %66, align 4 + %68 = sext i32 %67 to i64 + %69 = getelementptr inbounds i8, ptr %65, i64 %68 + %70 = load i8, ptr %69, align 1 + %71 = trunc i8 %70 to i1 + br i1 %71, label %84, label %72 + +72: ; preds = %64 + %73 = load ptr, ptr %5, align 8 + %74 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + %75 = load i32, ptr %74, align 4 + %76 = sext i32 %75 to i64 + %77 = getelementptr inbounds i8, ptr %73, i64 %76 + store i8 1, ptr %77, align 1 + %78 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + invoke void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %7, ptr noundef nonnull align 4 dereferenceable(4) %78) + to label %79 unwind label %80 + +79: ; preds = %72 + br label %84 + +80: ; preds = %72, %45, %40, %31 + %81 = landingpad { ptr, i32 } + cleanup + %82 = extractvalue { ptr, i32 } %81, 0 + store ptr %82, ptr %8, align 8 + %83 = extractvalue { ptr, i32 } %81, 1 + store i32 %83, ptr %9, align 4 + call void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %7) #14 + br label %89 + +84: ; preds = %79, %64 + br label %85 + +85: ; preds = %84 + %86 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + br label %55, !llvm.loop !8 + +87: ; preds = %55 + br label %37, !llvm.loop !9 + +88: ; preds = %37 + call void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %7) #14 + ret void + +89: ; preds = %80 + %90 = load ptr, ptr %8, align 8 + %91 = load i32, ptr %9, align 4 + %92 = insertvalue { ptr, i32 } poison, ptr %90, 0 + %93 = insertvalue { ptr, i32 } %92, i32 %91, 1 + resume { ptr, i32 } %93 +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt7__cxx114listIiSaIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %8, i32 0, i32 0 + %10 = icmp eq ptr %7, %9 + ret i1 %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt7__cxx114listIiSaIiEE5frontEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + %5 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %4) #14 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %5, ptr %6, align 8 + %7 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %3) #14 + ret ptr %7 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #6 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #6 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9pop_frontEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + %5 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %4) #14 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %5, ptr %6, align 8 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE8_M_eraseESt14_List_iteratorIiE(ptr noundef nonnull align 8 dereferenceable(24) %4, ptr %8) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #14 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #14 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 { + %1 = alloca i32, align 4 + %2 = alloca %class.Graph, align 8 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 3) + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef @.str.2) + call void @_ZN5Graph3BFSEi(ptr 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(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %10, i32 0, i32 0 + %12 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %11, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %12, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + store ptr %14, ptr %7, align 8 + br label %15 + +15: ; preds = %27, %1 + %16 = load ptr, ptr %7, align 8 + %17 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %10, i32 0, i32 0 + %18 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %17, i32 0, i32 0 + %19 = icmp ne ptr %16, %18 + br i1 %19, label %20, label %35 + +20: ; preds = %15 + %21 = load ptr, ptr %7, align 8 + store ptr %21, ptr %8, align 8 + %22 = load ptr, ptr %8, align 8 + %23 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %22, i32 0, i32 0 + %24 = load ptr, ptr %23, align 8 + store ptr %24, ptr %7, align 8 + %25 = load ptr, ptr %8, align 8 + %26 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %25) + to label %27 unwind label %36 + +27: ; preds = %20 + store ptr %26, ptr %9, align 8 + %28 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #14 + %29 = load ptr, ptr %9, align 8 + store ptr %28, ptr %4, align 8 + store ptr %29, ptr %5, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + store ptr %30, ptr %2, align 8 + store ptr %31, ptr %3, align 8 + %32 = load ptr, ptr %2, align 8 + %33 = load ptr, ptr %3, align 8 + %34 = load ptr, ptr %8, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %10, ptr noundef %34) #14 + br label %15, !llvm.loop !10 + +35: ; preds = %15 + ret void + +36: ; preds = %20 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #15 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #14 + ret ptr %5 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #9 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #14 + call void @_ZSt9terminatev() #15 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef %1) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %7, align 8 + store ptr %9, ptr %3, align 8 + store ptr %10, ptr %4, align 8 + store i64 1, ptr %5, align 8 + %11 = load ptr, ptr %3, align 8 + %12 = load ptr, ptr %4, align 8 + %13 = load i64, ptr %5, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %11, ptr noundef %12, i64 noundef %13) + br label %14 + +14: ; preds = %2 + ret void + +15: ; No predecessors! + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #15 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #14 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #16 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #10 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #14 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %14 = load ptr, ptr %9, align 8 + %15 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %14) + store ptr %15, ptr %11, align 8 + %16 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %14) #14 + store ptr %16, ptr %12, align 8 + %17 = load ptr, ptr %12, align 8 + %18 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %18) #14 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + %21 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %20) + %22 = load ptr, ptr %10, align 8 + store ptr %19, ptr %6, align 8 + store ptr %21, ptr %7, align 8 + store ptr %22, ptr %8, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %7, align 8 + %25 = load ptr, ptr %8, align 8 + store ptr %23, ptr %3, align 8 + store ptr %24, ptr %4, align 8 + store ptr %25, ptr %5, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = load ptr, ptr %4, align 8 + %28 = load ptr, ptr %5, align 8 + %29 = load i32, ptr %28, align 4 + store i32 %29, ptr %27, align 4 + %30 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #14 + %31 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #14 + ret ptr %31 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #11 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #15 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #17 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #13 + ret ptr %20 +} + +; Function Attrs: noreturn +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 noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE8_M_eraseESt14_List_iteratorIiE(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %"struct.std::_List_iterator", align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %7, i32 0, i32 0 + store ptr %1, ptr %10, align 8 + store ptr %0, ptr %8, align 8 + %11 = load ptr, ptr %8, align 8 + invoke void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %11, i64 noundef 1) + to label %12 unwind label %25 + +12: ; preds = %2 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %7, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base9_M_unhookEv(ptr noundef nonnull align 8 dereferenceable(16) %14) #14 + %15 = getelementptr inbounds %"struct.std::_List_iterator", ptr %7, i32 0, i32 0 + %16 = load ptr, ptr %15, align 8 + store ptr %16, ptr %9, align 8 + %17 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %11) #14 + %18 = load ptr, ptr %9, align 8 + %19 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %18) + store ptr %17, ptr %5, align 8 + store ptr %19, ptr %6, align 8 + %20 = load ptr, ptr %5, align 8 + %21 = load ptr, ptr %6, align 8 + store ptr %20, ptr %3, align 8 + store ptr %21, ptr %4, align 8 + %22 = load ptr, ptr %3, align 8 + %23 = load ptr, ptr %4, align 8 + %24 = load ptr, ptr %9, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %11, ptr noundef %24) #14 + ret void + +25: ; preds = %2 + %26 = landingpad { ptr, i32 } + catch ptr null + %27 = extractvalue { ptr, i32 } %26, 0 + call void @__clang_call_terminate(ptr %27) #15 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = sub i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base9_M_unhookEv(ptr noundef nonnull align 8 dereferenceable(16)) #11 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { 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 #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 = { "frame-pointer"="all" "no-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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 "frame-pointer"="all" "no-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 = { 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 = { 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 = { builtin allocsize(0) } +attributes #14 = { nounwind } +attributes #15 = { noreturn nounwind } +attributes #16 = { builtin nounwind } +attributes #17 = { noreturn } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/biconnectivity.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/biconnectivity.ll new file mode 100644 index 000000000..366eaa309 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/biconnectivity.ll @@ -0,0 +1,1146 @@ +; ModuleID = 'PE-benchmarks/biconnectivity.cpp' +source_filename = "PE-benchmarks/biconnectivity.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"struct.std::_List_iterator" = type { ptr } +%"struct.std::__allocated_ptr" = type { ptr, ptr } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZSt3minIiERKT_S2_S2_ = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +@_ZZN5Graph8isBCUtilEiPbPiS1_S1_E4time = internal global i32 0, align 4 +@_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 + +@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei + +; Function Attrs: noinline uwtable +define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #0 align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + store i32 %6, ptr %7, align 8 + %8 = load i32, ptr %4, align 4 + %9 = sext i32 %8 to i64 + %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) + %11 = extractvalue { i64, i1 } %10, 1 + %12 = extractvalue { i64, i1 } %10, 0 + %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = or i1 %11, %14 + %16 = extractvalue { i64, i1 } %13, 0 + %17 = select i1 %15, i64 -1, i64 %16 + %18 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #13 + store i64 %9, ptr %18, align 16 + %19 = getelementptr inbounds i8, ptr %18, i64 8 + %20 = icmp eq i64 %9, 0 + br i1 %20, label %27, label %21 + +21: ; preds = %2 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %9 + br label %23 + +23: ; preds = %23, %21 + %24 = phi ptr [ %19, %21 ], [ %25, %23 ] + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #14 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 1 + %26 = icmp eq ptr %25, %22 + br i1 %26, label %27, label %23 + +27: ; preds = %2, %23 + %28 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + store ptr %19, ptr %28, align 8 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #4 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds %"class.std::__cxx11::list", ptr %9, i64 %11 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %6) + %13 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + %15 = load i32, ptr %6, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds %"class.std::__cxx11::list", ptr %14, i64 %16 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %17, ptr noundef nonnull align 4 dereferenceable(4) %5) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #14 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, ptr noundef %2, ptr noundef %3, ptr noundef %4, ptr noundef %5) #4 align 2 { + %7 = alloca i1, align 1 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca i32, align 4 + %15 = alloca %"struct.std::_List_iterator", align 8 + %16 = alloca %"struct.std::_List_iterator", align 8 + %17 = alloca %"struct.std::_List_iterator", align 8 + %18 = alloca i32, align 4 + store ptr %0, ptr %8, align 8 + store i32 %1, ptr %9, align 4 + store ptr %2, ptr %10, align 8 + store ptr %3, ptr %11, align 8 + store ptr %4, ptr %12, align 8 + store ptr %5, ptr %13, align 8 + %19 = load ptr, ptr %8, align 8 + store i32 0, ptr %14, align 4 + %20 = load ptr, ptr %10, align 8 + %21 = load i32, ptr %9, align 4 + %22 = sext i32 %21 to i64 + %23 = getelementptr inbounds i8, ptr %20, i64 %22 + store i8 1, ptr %23, align 1 + %24 = load i32, ptr @_ZZN5Graph8isBCUtilEiPbPiS1_S1_E4time, align 4 + %25 = add nsw i32 %24, 1 + store i32 %25, ptr @_ZZN5Graph8isBCUtilEiPbPiS1_S1_E4time, align 4 + %26 = load ptr, ptr %12, align 8 + %27 = load i32, ptr %9, align 4 + %28 = sext i32 %27 to i64 + %29 = getelementptr inbounds i32, ptr %26, i64 %28 + store i32 %25, ptr %29, align 4 + %30 = load ptr, ptr %11, align 8 + %31 = load i32, ptr %9, align 4 + %32 = sext i32 %31 to i64 + %33 = getelementptr inbounds i32, ptr %30, i64 %32 + store i32 %25, ptr %33, align 4 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #14 + %34 = getelementptr inbounds %class.Graph, ptr %19, i32 0, i32 1 + %35 = load ptr, ptr %34, align 8 + %36 = load i32, ptr %9, align 4 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds %"class.std::__cxx11::list", ptr %35, i64 %37 + %39 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %38) #14 + %40 = getelementptr inbounds %"struct.std::_List_iterator", ptr %16, i32 0, i32 0 + store ptr %39, ptr %40, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %15, ptr align 8 %16, i64 8, i1 false) + br label %41 + +41: ; preds = %145, %6 + %42 = getelementptr inbounds %class.Graph, ptr %19, i32 0, i32 1 + %43 = load ptr, ptr %42, align 8 + %44 = load i32, ptr %9, align 4 + %45 = sext i32 %44 to i64 + %46 = getelementptr inbounds %"class.std::__cxx11::list", ptr %43, i64 %45 + %47 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %46) #14 + %48 = getelementptr inbounds %"struct.std::_List_iterator", ptr %17, i32 0, i32 0 + store ptr %47, ptr %48, align 8 + %49 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef nonnull align 8 dereferenceable(8) %17) #14 + br i1 %49, label %50, label %147 + +50: ; preds = %41 + %51 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %15) #14 + %52 = load i32, ptr %51, align 4 + store i32 %52, ptr %18, align 4 + %53 = load ptr, ptr %10, align 8 + %54 = load i32, ptr %18, align 4 + %55 = sext i32 %54 to i64 + %56 = getelementptr inbounds i8, ptr %53, i64 %55 + %57 = load i8, ptr %56, align 1 + %58 = trunc i8 %57 to i1 + br i1 %58, label %120, label %59 + +59: ; preds = %50 + %60 = load i32, ptr %14, align 4 + %61 = add nsw i32 %60, 1 + store i32 %61, ptr %14, align 4 + %62 = load i32, ptr %9, align 4 + %63 = load ptr, ptr %13, align 8 + %64 = load i32, ptr %18, align 4 + %65 = sext i32 %64 to i64 + %66 = getelementptr inbounds i32, ptr %63, i64 %65 + store i32 %62, ptr %66, align 4 + %67 = load i32, ptr %18, align 4 + %68 = load ptr, ptr %10, align 8 + %69 = load ptr, ptr %11, align 8 + %70 = load ptr, ptr %12, align 8 + %71 = load ptr, ptr %13, align 8 + %72 = call noundef zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(ptr noundef nonnull align 8 dereferenceable(16) %19, i32 noundef %67, ptr noundef %68, ptr noundef %69, ptr noundef %70, ptr noundef %71) + br i1 %72, label %73, label %74 + +73: ; preds = %59 + store i1 true, ptr %7, align 1 + br label %148 + +74: ; preds = %59 + %75 = load ptr, ptr %12, align 8 + %76 = load i32, ptr %9, align 4 + %77 = sext i32 %76 to i64 + %78 = getelementptr inbounds i32, ptr %75, i64 %77 + %79 = load ptr, ptr %12, align 8 + %80 = load i32, ptr %18, align 4 + %81 = sext i32 %80 to i64 + %82 = getelementptr inbounds i32, ptr %79, i64 %81 + %83 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %78, ptr noundef nonnull align 4 dereferenceable(4) %82) + %84 = load i32, ptr %83, align 4 + %85 = load ptr, ptr %12, align 8 + %86 = load i32, ptr %9, align 4 + %87 = sext i32 %86 to i64 + %88 = getelementptr inbounds i32, ptr %85, i64 %87 + store i32 %84, ptr %88, align 4 + %89 = load ptr, ptr %13, align 8 + %90 = load i32, ptr %9, align 4 + %91 = sext i32 %90 to i64 + %92 = getelementptr inbounds i32, ptr %89, i64 %91 + %93 = load i32, ptr %92, align 4 + %94 = icmp eq i32 %93, -1 + br i1 %94, label %95, label %99 + +95: ; preds = %74 + %96 = load i32, ptr %14, align 4 + %97 = icmp sgt i32 %96, 1 + br i1 %97, label %98, label %99 + +98: ; preds = %95 + store i1 true, ptr %7, align 1 + br label %148 + +99: ; preds = %95, %74 + %100 = load ptr, ptr %13, align 8 + %101 = load i32, ptr %9, align 4 + %102 = sext i32 %101 to i64 + %103 = getelementptr inbounds i32, ptr %100, i64 %102 + %104 = load i32, ptr %103, align 4 + %105 = icmp ne i32 %104, -1 + br i1 %105, label %106, label %119 + +106: ; preds = %99 + %107 = load ptr, ptr %12, align 8 + %108 = load i32, ptr %18, align 4 + %109 = sext i32 %108 to i64 + %110 = getelementptr inbounds i32, ptr %107, i64 %109 + %111 = load i32, ptr %110, align 4 + %112 = load ptr, ptr %11, align 8 + %113 = load i32, ptr %9, align 4 + %114 = sext i32 %113 to i64 + %115 = getelementptr inbounds i32, ptr %112, i64 %114 + %116 = load i32, ptr %115, align 4 + %117 = icmp sge i32 %111, %116 + br i1 %117, label %118, label %119 + +118: ; preds = %106 + store i1 true, ptr %7, align 1 + br label %148 + +119: ; preds = %106, %99 + br label %144 + +120: ; preds = %50 + %121 = load i32, ptr %18, align 4 + %122 = load ptr, ptr %13, align 8 + %123 = load i32, ptr %9, align 4 + %124 = sext i32 %123 to i64 + %125 = getelementptr inbounds i32, ptr %122, i64 %124 + %126 = load i32, ptr %125, align 4 + %127 = icmp ne i32 %121, %126 + br i1 %127, label %128, label %143 + +128: ; preds = %120 + %129 = load ptr, ptr %12, align 8 + %130 = load i32, ptr %9, align 4 + %131 = sext i32 %130 to i64 + %132 = getelementptr inbounds i32, ptr %129, i64 %131 + %133 = load ptr, ptr %11, align 8 + %134 = load i32, ptr %18, align 4 + %135 = sext i32 %134 to i64 + %136 = getelementptr inbounds i32, ptr %133, i64 %135 + %137 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %132, ptr noundef nonnull align 4 dereferenceable(4) %136) + %138 = load i32, ptr %137, align 4 + %139 = load ptr, ptr %12, align 8 + %140 = load i32, ptr %9, align 4 + %141 = sext i32 %140 to i64 + %142 = getelementptr inbounds i32, ptr %139, i64 %141 + store i32 %138, ptr %142, align 4 + br label %143 + +143: ; preds = %128, %120 + br label %144 + +144: ; preds = %143, %119 + br label %145 + +145: ; preds = %144 + %146 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %15) #14 + br label %41, !llvm.loop !6 + +147: ; preds = %41 + store i1 false, ptr %7, align 1 + br label %148 + +148: ; preds = %147, %118, %98, %73 + %149 = load i1, ptr %7, align 1 + ret i1 %149 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #14 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #14 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph4isBCEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 { + %2 = alloca i1, align 1 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + %10 = load ptr, ptr %3, align 8 + %11 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 0 + %12 = load i32, ptr %11, align 8 + %13 = sext i32 %12 to i64 + %14 = call noalias noundef nonnull ptr @_Znam(i64 noundef %13) #13 + store ptr %14, ptr %4, align 8 + %15 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 0 + %16 = load i32, ptr %15, align 8 + %17 = sext i32 %16 to i64 + %18 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %17, i64 4) + %19 = extractvalue { i64, i1 } %18, 1 + %20 = extractvalue { i64, i1 } %18, 0 + %21 = select i1 %19, i64 -1, i64 %20 + %22 = call noalias noundef nonnull ptr @_Znam(i64 noundef %21) #13 + store ptr %22, ptr %5, align 8 + %23 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 0 + %24 = load i32, ptr %23, align 8 + %25 = sext i32 %24 to i64 + %26 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %25, i64 4) + %27 = extractvalue { i64, i1 } %26, 1 + %28 = extractvalue { i64, i1 } %26, 0 + %29 = select i1 %27, i64 -1, i64 %28 + %30 = call noalias noundef nonnull ptr @_Znam(i64 noundef %29) #13 + store ptr %30, ptr %6, align 8 + %31 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 0 + %32 = load i32, ptr %31, align 8 + %33 = sext i32 %32 to i64 + %34 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %33, i64 4) + %35 = extractvalue { i64, i1 } %34, 1 + %36 = extractvalue { i64, i1 } %34, 0 + %37 = select i1 %35, i64 -1, i64 %36 + %38 = call noalias noundef nonnull ptr @_Znam(i64 noundef %37) #13 + store ptr %38, ptr %7, align 8 + store i32 0, ptr %8, align 4 + br label %39 + +39: ; preds = %53, %1 + %40 = load i32, ptr %8, align 4 + %41 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 0 + %42 = load i32, ptr %41, align 8 + %43 = icmp slt i32 %40, %42 + br i1 %43, label %44, label %56 + +44: ; preds = %39 + %45 = load ptr, ptr %7, align 8 + %46 = load i32, ptr %8, align 4 + %47 = sext i32 %46 to i64 + %48 = getelementptr inbounds i32, ptr %45, i64 %47 + store i32 -1, ptr %48, align 4 + %49 = load ptr, ptr %4, align 8 + %50 = load i32, ptr %8, align 4 + %51 = sext i32 %50 to i64 + %52 = getelementptr inbounds i8, ptr %49, i64 %51 + store i8 0, ptr %52, align 1 + br label %53 + +53: ; preds = %44 + %54 = load i32, ptr %8, align 4 + %55 = add nsw i32 %54, 1 + store i32 %55, ptr %8, align 4 + br label %39, !llvm.loop !8 + +56: ; preds = %39 + %57 = load ptr, ptr %4, align 8 + %58 = load ptr, ptr %5, align 8 + %59 = load ptr, ptr %6, align 8 + %60 = load ptr, ptr %7, align 8 + %61 = call noundef zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(ptr noundef nonnull align 8 dereferenceable(16) %10, i32 noundef 0, ptr noundef %57, ptr noundef %58, ptr noundef %59, ptr noundef %60) + %62 = zext i1 %61 to i32 + %63 = icmp eq i32 %62, 1 + br i1 %63, label %64, label %65 + +64: ; preds = %56 + store i1 false, ptr %2, align 1 + br label %86 + +65: ; preds = %56 + store i32 0, ptr %9, align 4 + br label %66 + +66: ; preds = %82, %65 + %67 = load i32, ptr %9, align 4 + %68 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 0 + %69 = load i32, ptr %68, align 8 + %70 = icmp slt i32 %67, %69 + br i1 %70, label %71, label %85 + +71: ; preds = %66 + %72 = load ptr, ptr %4, align 8 + %73 = load i32, ptr %9, align 4 + %74 = sext i32 %73 to i64 + %75 = getelementptr inbounds i8, ptr %72, i64 %74 + %76 = load i8, ptr %75, align 1 + %77 = trunc i8 %76 to i1 + %78 = zext i1 %77 to i32 + %79 = icmp eq i32 %78, 0 + br i1 %79, label %80, label %81 + +80: ; preds = %71 + store i1 false, ptr %2, align 1 + br label %86 + +81: ; preds = %71 + br label %82 + +82: ; preds = %81 + %83 = load i32, ptr %9, align 4 + %84 = add nsw i32 %83, 1 + store i32 %84, ptr %9, align 4 + br label %66, !llvm.loop !9 + +85: ; preds = %66 + store i1 true, ptr %2, align 1 + br label %86 + +86: ; preds = %85, %80, %64 + %87 = load i1, ptr %2, align 1 + ret i1 %87 +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #7 { + %1 = alloca i32, align 4 + %2 = alloca %class.Graph, align 8 + %3 = alloca %class.Graph, align 8 + %4 = alloca %class.Graph, align 8 + %5 = alloca %class.Graph, align 8 + %6 = alloca %class.Graph, align 8 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 1) + %7 = call noundef zeroext i1 @_ZN5Graph4isBCEv(ptr noundef nonnull align 8 dereferenceable(16) %2) + br i1 %7, label %8, label %10 + +8: ; preds = %0 + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %12 + +10: ; preds = %0 + %11 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %12 + +12: ; preds = %10, %8 + %13 = phi ptr [ %9, %8 ], [ %11, %10 ] + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 1, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 2, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 3, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 2, i32 noundef 4) + %14 = call noundef zeroext i1 @_ZN5Graph4isBCEv(ptr noundef nonnull align 8 dereferenceable(16) %3) + br i1 %14, label %15, label %17 + +15: ; preds = %12 + %16 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %19 + +17: ; preds = %12 + %18 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %19 + +19: ; preds = %17, %15 + %20 = phi ptr [ %16, %15 ], [ %18, %17 ] + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 2) + %21 = call noundef zeroext i1 @_ZN5Graph4isBCEv(ptr noundef nonnull align 8 dereferenceable(16) %4) + br i1 %21, label %22, label %24 + +22: ; preds = %19 + %23 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %26 + +24: ; preds = %19 + %25 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %26 + +26: ; preds = %24, %22 + %27 = phi ptr [ %23, %22 ], [ %25, %24 ] + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 1, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 2, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 3, i32 noundef 4) + %28 = call noundef zeroext i1 @_ZN5Graph4isBCEv(ptr noundef nonnull align 8 dereferenceable(16) %5) + br i1 %28, label %29, label %31 + +29: ; preds = %26 + %30 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %33 + +31: ; preds = %26 + %32 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %33 + +33: ; preds = %31, %29 + %34 = phi ptr [ %30, %29 ], [ %32, %31 ] + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 2, i32 noundef 0) + %35 = call noundef zeroext i1 @_ZN5Graph4isBCEv(ptr noundef nonnull align 8 dereferenceable(16) %6) + br i1 %35, label %36, label %38 + +36: ; preds = %33 + %37 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %40 + +38: ; preds = %33 + %39 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %40 + +40: ; preds = %38, %36 + %41 = phi ptr [ %37, %36 ], [ %39, %38 ] + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #8 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #14 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %16 = load ptr, ptr %9, align 8 + %17 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %16) + store ptr %17, ptr %11, align 8 + %18 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %16) #14 + store ptr %18, ptr %12, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %19, ptr noundef %20) #14 + %21 = load ptr, ptr %12, align 8 + %22 = load ptr, ptr %11, align 8 + %23 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %22) + to label %24 unwind label %35 + +24: ; preds = %2 + %25 = load ptr, ptr %10, align 8 + store ptr %21, ptr %6, align 8 + store ptr %23, ptr %7, align 8 + store ptr %25, ptr %8, align 8 + %26 = load ptr, ptr %6, align 8 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %8, align 8 + store ptr %26, ptr %3, align 8 + store ptr %27, ptr %4, align 8 + store ptr %28, ptr %5, align 8 + %29 = load ptr, ptr %3, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + %32 = load i32, ptr %31, align 4 + store i32 %32, ptr %30, align 4 + %33 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #14 + %34 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #14 + ret ptr %34 + +35: ; preds = %2 + %36 = landingpad { ptr, i32 } + cleanup + %37 = extractvalue { ptr, i32 } %36, 0 + store ptr %37, ptr %14, align 8 + %38 = extractvalue { ptr, i32 } %36, 1 + store i32 %38, ptr %15, align 4 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #14 + br label %39 + +39: ; preds = %35 + %40 = load ptr, ptr %14, align 8 + %41 = load i32, ptr %15, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #9 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #14 + ret ptr %5 +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #15 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #16 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #16 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #13 + ret ptr %20 +} + +; Function Attrs: noreturn +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #10 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #14 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #14 + call void @_ZSt9terminatev() #15 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #12 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 = { "frame-pointer"="all" "no-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 "frame-pointer"="all" "no-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 = { 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 #11 = { noinline noreturn 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 = { 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 = { builtin allocsize(0) } +attributes #14 = { nounwind } +attributes #15 = { noreturn nounwind } +attributes #16 = { noreturn } +attributes #17 = { builtin nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/binary-insertion-sort.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/binary-insertion-sort.ll new file mode 100644 index 000000000..bda834434 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/binary-insertion-sort.ll @@ -0,0 +1,249 @@ +; ModuleID = 'PE-benchmarks/binary-insertion-sort.cpp' +source_filename = "PE-benchmarks/binary-insertion-sort.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +@__const.main.a = private unnamed_addr constant [11 x i32] [i32 37, i32 23, i32 0, i32 17, i32 12, i32 72, i32 31, i32 46, i32 100, i32 88, i32 54], align 16 +@.str = private unnamed_addr constant [16 x i8] c"Sorted array: \0A\00", align 1 +@.str.1 = private unnamed_addr constant [4 x i8] c"%d \00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z12binarySearchPiiii(ptr noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #0 { + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + store ptr %0, ptr %6, align 8 + store i32 %1, ptr %7, align 4 + store i32 %2, ptr %8, align 4 + store i32 %3, ptr %9, align 4 + %11 = load i32, ptr %9, align 4 + %12 = load i32, ptr %8, align 4 + %13 = icmp sle i32 %11, %12 + br i1 %13, label %14, label %29 + +14: ; preds = %4 + %15 = load i32, ptr %7, align 4 + %16 = load ptr, ptr %6, align 8 + %17 = load i32, ptr %8, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds i32, ptr %16, i64 %18 + %20 = load i32, ptr %19, align 4 + %21 = icmp sgt i32 %15, %20 + br i1 %21, label %22, label %25 + +22: ; preds = %14 + %23 = load i32, ptr %8, align 4 + %24 = add nsw i32 %23, 1 + br label %27 + +25: ; preds = %14 + %26 = load i32, ptr %8, align 4 + br label %27 + +27: ; preds = %25, %22 + %28 = phi i32 [ %24, %22 ], [ %26, %25 ] + store i32 %28, ptr %5, align 4 + br label %66 + +29: ; preds = %4 + %30 = load i32, ptr %8, align 4 + %31 = load i32, ptr %9, align 4 + %32 = add nsw i32 %30, %31 + %33 = sdiv i32 %32, 2 + store i32 %33, ptr %10, align 4 + %34 = load i32, ptr %7, align 4 + %35 = load ptr, ptr %6, align 8 + %36 = load i32, ptr %10, align 4 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds i32, ptr %35, i64 %37 + %39 = load i32, ptr %38, align 4 + %40 = icmp eq i32 %34, %39 + br i1 %40, label %41, label %44 + +41: ; preds = %29 + %42 = load i32, ptr %10, align 4 + %43 = add nsw i32 %42, 1 + store i32 %43, ptr %5, align 4 + br label %66 + +44: ; preds = %29 + %45 = load i32, ptr %7, align 4 + %46 = load ptr, ptr %6, align 8 + %47 = load i32, ptr %10, align 4 + %48 = sext i32 %47 to i64 + %49 = getelementptr inbounds i32, ptr %46, i64 %48 + %50 = load i32, ptr %49, align 4 + %51 = icmp sgt i32 %45, %50 + br i1 %51, label %52, label %59 + +52: ; preds = %44 + %53 = load ptr, ptr %6, align 8 + %54 = load i32, ptr %7, align 4 + %55 = load i32, ptr %10, align 4 + %56 = add nsw i32 %55, 1 + %57 = load i32, ptr %9, align 4 + %58 = call noundef i32 @_Z12binarySearchPiiii(ptr noundef %53, i32 noundef %54, i32 noundef %56, i32 noundef %57) + store i32 %58, ptr %5, align 4 + br label %66 + +59: ; preds = %44 + %60 = load ptr, ptr %6, align 8 + %61 = load i32, ptr %7, align 4 + %62 = load i32, ptr %8, align 4 + %63 = load i32, ptr %10, align 4 + %64 = sub nsw i32 %63, 1 + %65 = call noundef i32 @_Z12binarySearchPiiii(ptr noundef %60, i32 noundef %61, i32 noundef %62, i32 noundef %64) + store i32 %65, ptr %5, align 4 + br label %66 + +66: ; preds = %59, %52, %41, %27 + %67 = load i32, ptr %5, align 4 + ret i32 %67 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13insertionSortPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + store i32 1, ptr %5, align 4 + br label %10 + +10: ; preds = %50, %2 + %11 = load i32, ptr %5, align 4 + %12 = load i32, ptr %4, align 4 + %13 = icmp slt i32 %11, %12 + br i1 %13, label %14, label %53 + +14: ; preds = %10 + %15 = load i32, ptr %5, align 4 + %16 = sub nsw i32 %15, 1 + store i32 %16, ptr %7, align 4 + %17 = load ptr, ptr %3, align 8 + %18 = load i32, ptr %5, align 4 + %19 = sext i32 %18 to i64 + %20 = getelementptr inbounds i32, ptr %17, i64 %19 + %21 = load i32, ptr %20, align 4 + store i32 %21, ptr %9, align 4 + %22 = load ptr, ptr %3, align 8 + %23 = load i32, ptr %9, align 4 + %24 = load i32, ptr %7, align 4 + %25 = call noundef i32 @_Z12binarySearchPiiii(ptr noundef %22, i32 noundef %23, i32 noundef 0, i32 noundef %24) + store i32 %25, ptr %6, align 4 + br label %26 + +26: ; preds = %30, %14 + %27 = load i32, ptr %7, align 4 + %28 = load i32, ptr %6, align 4 + %29 = icmp sge i32 %27, %28 + br i1 %29, label %30, label %43 + +30: ; preds = %26 + %31 = load ptr, ptr %3, align 8 + %32 = load i32, ptr %7, align 4 + %33 = sext i32 %32 to i64 + %34 = getelementptr inbounds i32, ptr %31, i64 %33 + %35 = load i32, ptr %34, align 4 + %36 = load ptr, ptr %3, align 8 + %37 = load i32, ptr %7, align 4 + %38 = add nsw i32 %37, 1 + %39 = sext i32 %38 to i64 + %40 = getelementptr inbounds i32, ptr %36, i64 %39 + store i32 %35, ptr %40, align 4 + %41 = load i32, ptr %7, align 4 + %42 = add nsw i32 %41, -1 + store i32 %42, ptr %7, align 4 + br label %26, !llvm.loop !6 + +43: ; preds = %26 + %44 = load i32, ptr %9, align 4 + %45 = load ptr, ptr %3, align 8 + %46 = load i32, ptr %7, align 4 + %47 = add nsw i32 %46, 1 + %48 = sext i32 %47 to i64 + %49 = getelementptr inbounds i32, ptr %45, i64 %48 + store i32 %44, ptr %49, align 4 + br label %50 + +50: ; preds = %43 + %51 = load i32, ptr %5, align 4 + %52 = add nsw i32 %51, 1 + store i32 %52, ptr %5, align 4 + br label %10, !llvm.loop !8 + +53: ; preds = %10 + ret void +} + +; 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 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.a, i64 44, i1 false) + store i32 11, ptr %3, align 4 + %5 = getelementptr inbounds [11 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + call void @_Z13insertionSortPii(ptr noundef %5, i32 noundef %6) + %7 = call i32 (ptr, ...) @printf(ptr noundef @.str) + store i32 0, ptr %4, align 4 + br label %8 + +8: ; preds = %18, %0 + %9 = load i32, ptr %4, align 4 + %10 = load i32, ptr %3, align 4 + %11 = icmp slt i32 %9, %10 + br i1 %11, label %12, label %21 + +12: ; preds = %8 + %13 = load i32, ptr %4, align 4 + %14 = sext i32 %13 to i64 + %15 = getelementptr inbounds [11 x i32], ptr %2, i64 0, i64 %14 + %16 = load i32, ptr %15, align 4 + %17 = call i32 (ptr, ...) @printf(ptr noundef @.str.1, i32 noundef %16) + br label %18 + +18: ; preds = %12 + %19 = load i32, ptr %4, align 4 + %20 = add nsw i32 %19, 1 + store i32 %20, ptr %4, align 4 + br label %8, !llvm.loop !9 + +21: ; preds = %8 + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #2 + +declare i32 @printf(ptr noundef, ...) #3 + +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/binomial-coefficient.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/binomial-coefficient.ll new file mode 100644 index 000000000..6415047af --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/binomial-coefficient.ll @@ -0,0 +1,219 @@ +; ModuleID = 'PE-benchmarks/binomial-coefficient.cpp' +source_filename = "PE-benchmarks/binomial-coefficient.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z13binomialCoeffii(i32 noundef %0, i32 noundef %1) #0 { + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %10 = load i32, ptr %3, align 4 + %11 = add nsw i32 %10, 1 + %12 = zext i32 %11 to i64 + %13 = load i32, ptr %4, align 4 + %14 = add nsw i32 %13, 1 + %15 = zext i32 %14 to i64 + %16 = call ptr @llvm.stacksave() + store ptr %16, ptr %5, align 8 + %17 = mul nuw i64 %12, %15 + %18 = alloca i32, i64 %17, align 16 + store i64 %12, ptr %6, align 8 + store i64 %15, ptr %7, align 8 + store i32 0, ptr %8, align 4 + br label %19 + +19: ; preds = %78, %2 + %20 = load i32, ptr %8, align 4 + %21 = load i32, ptr %3, align 4 + %22 = icmp sle i32 %20, %21 + br i1 %22, label %23, label %81 + +23: ; preds = %19 + store i32 0, ptr %9, align 4 + br label %24 + +24: ; preds = %74, %23 + %25 = load i32, ptr %9, align 4 + %26 = load i32, ptr %8, align 4 + %27 = load i32, ptr %4, align 4 + %28 = call noundef i32 @_Z3minii(i32 noundef %26, i32 noundef %27) + %29 = icmp sle i32 %25, %28 + br i1 %29, label %30, label %77 + +30: ; preds = %24 + %31 = load i32, ptr %9, align 4 + %32 = icmp eq i32 %31, 0 + br i1 %32, label %37, label %33 + +33: ; preds = %30 + %34 = load i32, ptr %9, align 4 + %35 = load i32, ptr %8, align 4 + %36 = icmp eq i32 %34, %35 + br i1 %36, label %37, label %45 + +37: ; preds = %33, %30 + %38 = load i32, ptr %8, align 4 + %39 = sext i32 %38 to i64 + %40 = mul nsw i64 %39, %15 + %41 = getelementptr inbounds i32, ptr %18, i64 %40 + %42 = load i32, ptr %9, align 4 + %43 = sext i32 %42 to i64 + %44 = getelementptr inbounds i32, ptr %41, i64 %43 + store i32 1, ptr %44, align 4 + br label %73 + +45: ; preds = %33 + %46 = load i32, ptr %8, align 4 + %47 = sub nsw i32 %46, 1 + %48 = sext i32 %47 to i64 + %49 = mul nsw i64 %48, %15 + %50 = getelementptr inbounds i32, ptr %18, i64 %49 + %51 = load i32, ptr %9, align 4 + %52 = sub nsw i32 %51, 1 + %53 = sext i32 %52 to i64 + %54 = getelementptr inbounds i32, ptr %50, i64 %53 + %55 = load i32, ptr %54, align 4 + %56 = load i32, ptr %8, align 4 + %57 = sub nsw i32 %56, 1 + %58 = sext i32 %57 to i64 + %59 = mul nsw i64 %58, %15 + %60 = getelementptr inbounds i32, ptr %18, i64 %59 + %61 = load i32, ptr %9, align 4 + %62 = sext i32 %61 to i64 + %63 = getelementptr inbounds i32, ptr %60, i64 %62 + %64 = load i32, ptr %63, align 4 + %65 = add nsw i32 %55, %64 + %66 = load i32, ptr %8, align 4 + %67 = sext i32 %66 to i64 + %68 = mul nsw i64 %67, %15 + %69 = getelementptr inbounds i32, ptr %18, i64 %68 + %70 = load i32, ptr %9, align 4 + %71 = sext i32 %70 to i64 + %72 = getelementptr inbounds i32, ptr %69, i64 %71 + store i32 %65, ptr %72, align 4 + br label %73 + +73: ; preds = %45, %37 + br label %74 + +74: ; preds = %73 + %75 = load i32, ptr %9, align 4 + %76 = add nsw i32 %75, 1 + store i32 %76, ptr %9, align 4 + br label %24, !llvm.loop !6 + +77: ; preds = %24 + br label %78 + +78: ; preds = %77 + %79 = load i32, ptr %8, align 4 + %80 = add nsw i32 %79, 1 + store i32 %80, ptr %8, align 4 + br label %19, !llvm.loop !8 + +81: ; preds = %19 + %82 = load i32, ptr %3, align 4 + %83 = sext i32 %82 to i64 + %84 = mul nsw i64 %83, %15 + %85 = getelementptr inbounds i32, ptr %18, i64 %84 + %86 = load i32, ptr %4, align 4 + %87 = sext i32 %86 to i64 + %88 = getelementptr inbounds i32, ptr %85, i64 %87 + %89 = load i32, ptr %88, align 4 + %90 = load ptr, ptr %5, align 8 + call void @llvm.stackrestore(ptr %90) + ret i32 %89 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3minii(i32 noundef %0, i32 noundef %1) #2 { + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %5 = load i32, ptr %3, align 4 + %6 = load i32, ptr %4, align 4 + %7 = icmp slt i32 %5, %6 + br i1 %7, label %8, label %10 + +8: ; preds = %2 + %9 = load i32, ptr %3, align 4 + br label %12 + +10: ; preds = %2 + %11 = load i32, ptr %4, align 4 + br label %12 + +12: ; preds = %10, %8 + %13 = phi i32 [ %9, %8 ], [ %11, %10 ] + ret i32 %13 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca i32, align 4 + store i32 5, ptr %1, align 4 + store i32 2, ptr %2, align 4 + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %4 = load i32, ptr %1, align 4 + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %3, i32 noundef %4) + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %5, ptr noundef @.str.1) + %7 = load i32, ptr %2, align 4 + %8 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %6, i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %8, ptr noundef @.str.2) + %10 = load i32, ptr %1, align 4 + %11 = load i32, ptr %2, align 4 + %12 = call noundef i32 @_Z13binomialCoeffii(i32 noundef %10, i32 noundef %11) + %13 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %9, i32 noundef %12) + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 + +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 = { nocallback nofree nosync nounwind willreturn } +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 = { 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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/birthday-paradox.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/birthday-paradox.ll new file mode 100644 index 000000000..618f3ee57 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/birthday-paradox.ll @@ -0,0 +1,64 @@ +; ModuleID = 'PE-benchmarks/birthday-paradox.cpp' +source_filename = "PE-benchmarks/birthday-paradox.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_ZSt4cout = external global %"class.std::basic_ostream", align 8 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z4findd(double noundef %0) #0 { + %2 = alloca double, align 8 + store double %0, ptr %2, align 8 + %3 = load double, ptr %2, align 8 + %4 = fsub double 1.000000e+00, %3 + %5 = fdiv double 1.000000e+00, %4 + %6 = call double @log(double noundef %5) #5 + %7 = fmul double 7.300000e+02, %6 + %8 = call double @sqrt(double noundef %7) #5 + %9 = call double @llvm.ceil.f64(double %8) + %10 = fptosi double %9 to i32 + ret i32 %10 +} + +; Function Attrs: nounwind +declare double @sqrt(double noundef) #1 + +; Function Attrs: nounwind +declare double @log(double noundef) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare double @llvm.ceil.f64(double) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = call noundef i32 @_Z4findd(double noundef 0x3FE6666666666666) + %2 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %1) + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 + +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 "frame-pointer"="all" "no-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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/boolean-parenthesization-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/boolean-parenthesization-problem.ll new file mode 100644 index 000000000..4fdfede9a --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/boolean-parenthesization-problem.ll @@ -0,0 +1,551 @@ +; ModuleID = 'PE-benchmarks/boolean-parenthesization-problem.cpp' +source_filename = "PE-benchmarks/boolean-parenthesization-problem.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__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 global %"class.std::basic_ostream", align 8 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z12countParenthPcS_i(ptr noundef %0, ptr noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca i64, align 8 + %10 = alloca i64, align 8 + %11 = alloca i64, align 8 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + %15 = alloca i32, align 4 + %16 = alloca i32, align 4 + %17 = alloca i32, align 4 + %18 = alloca i32, align 4 + %19 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i32 %2, ptr %6, align 4 + %20 = load i32, ptr %6, align 4 + %21 = zext i32 %20 to i64 + %22 = load i32, ptr %6, align 4 + %23 = zext i32 %22 to i64 + %24 = call ptr @llvm.stacksave() + store ptr %24, ptr %7, align 8 + %25 = mul nuw i64 %21, %23 + %26 = alloca i32, i64 %25, align 16 + store i64 %21, ptr %8, align 8 + store i64 %23, ptr %9, align 8 + %27 = load i32, ptr %6, align 4 + %28 = zext i32 %27 to i64 + %29 = load i32, ptr %6, align 4 + %30 = zext i32 %29 to i64 + %31 = mul nuw i64 %28, %30 + %32 = alloca i32, i64 %31, align 16 + store i64 %28, ptr %10, align 8 + store i64 %30, ptr %11, align 8 + store i32 0, ptr %12, align 4 + br label %33 + +33: ; preds = %70, %3 + %34 = load i32, ptr %12, align 4 + %35 = load i32, ptr %6, align 4 + %36 = icmp slt i32 %34, %35 + br i1 %36, label %37, label %73 + +37: ; preds = %33 + %38 = load ptr, ptr %4, align 8 + %39 = load i32, ptr %12, align 4 + %40 = sext i32 %39 to i64 + %41 = getelementptr inbounds i8, ptr %38, i64 %40 + %42 = load i8, ptr %41, align 1 + %43 = sext i8 %42 to i32 + %44 = icmp eq i32 %43, 70 + %45 = zext i1 %44 to i64 + %46 = select i1 %44, i32 1, i32 0 + %47 = load i32, ptr %12, align 4 + %48 = sext i32 %47 to i64 + %49 = mul nsw i64 %48, %23 + %50 = getelementptr inbounds i32, ptr %26, i64 %49 + %51 = load i32, ptr %12, align 4 + %52 = sext i32 %51 to i64 + %53 = getelementptr inbounds i32, ptr %50, i64 %52 + store i32 %46, ptr %53, align 4 + %54 = load ptr, ptr %4, align 8 + %55 = load i32, ptr %12, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i8, ptr %54, i64 %56 + %58 = load i8, ptr %57, align 1 + %59 = sext i8 %58 to i32 + %60 = icmp eq i32 %59, 84 + %61 = zext i1 %60 to i64 + %62 = select i1 %60, i32 1, i32 0 + %63 = load i32, ptr %12, align 4 + %64 = sext i32 %63 to i64 + %65 = mul nsw i64 %64, %30 + %66 = getelementptr inbounds i32, ptr %32, i64 %65 + %67 = load i32, ptr %12, align 4 + %68 = sext i32 %67 to i64 + %69 = getelementptr inbounds i32, ptr %66, i64 %68 + store i32 %62, ptr %69, align 4 + br label %70 + +70: ; preds = %37 + %71 = load i32, ptr %12, align 4 + %72 = add nsw i32 %71, 1 + store i32 %72, ptr %12, align 4 + br label %33, !llvm.loop !6 + +73: ; preds = %33 + store i32 1, ptr %13, align 4 + br label %74 + +74: ; preds = %388, %73 + %75 = load i32, ptr %13, align 4 + %76 = load i32, ptr %6, align 4 + %77 = icmp slt i32 %75, %76 + br i1 %77, label %78, label %391 + +78: ; preds = %74 + store i32 0, ptr %14, align 4 + %79 = load i32, ptr %13, align 4 + store i32 %79, ptr %15, align 4 + br label %80 + +80: ; preds = %382, %78 + %81 = load i32, ptr %15, align 4 + %82 = load i32, ptr %6, align 4 + %83 = icmp slt i32 %81, %82 + br i1 %83, label %84, label %387 + +84: ; preds = %80 + %85 = load i32, ptr %14, align 4 + %86 = sext i32 %85 to i64 + %87 = mul nsw i64 %86, %23 + %88 = getelementptr inbounds i32, ptr %26, i64 %87 + %89 = load i32, ptr %15, align 4 + %90 = sext i32 %89 to i64 + %91 = getelementptr inbounds i32, ptr %88, i64 %90 + store i32 0, ptr %91, align 4 + %92 = load i32, ptr %14, align 4 + %93 = sext i32 %92 to i64 + %94 = mul nsw i64 %93, %30 + %95 = getelementptr inbounds i32, ptr %32, i64 %94 + %96 = load i32, ptr %15, align 4 + %97 = sext i32 %96 to i64 + %98 = getelementptr inbounds i32, ptr %95, i64 %97 + store i32 0, ptr %98, align 4 + store i32 0, ptr %16, align 4 + br label %99 + +99: ; preds = %378, %84 + %100 = load i32, ptr %16, align 4 + %101 = load i32, ptr %13, align 4 + %102 = icmp slt i32 %100, %101 + br i1 %102, label %103, label %381 + +103: ; preds = %99 + %104 = load i32, ptr %14, align 4 + %105 = load i32, ptr %16, align 4 + %106 = add nsw i32 %104, %105 + store i32 %106, ptr %17, align 4 + %107 = load i32, ptr %14, align 4 + %108 = sext i32 %107 to i64 + %109 = mul nsw i64 %108, %30 + %110 = getelementptr inbounds i32, ptr %32, i64 %109 + %111 = load i32, ptr %17, align 4 + %112 = sext i32 %111 to i64 + %113 = getelementptr inbounds i32, ptr %110, i64 %112 + %114 = load i32, ptr %113, align 4 + %115 = load i32, ptr %14, align 4 + %116 = sext i32 %115 to i64 + %117 = mul nsw i64 %116, %23 + %118 = getelementptr inbounds i32, ptr %26, i64 %117 + %119 = load i32, ptr %17, align 4 + %120 = sext i32 %119 to i64 + %121 = getelementptr inbounds i32, ptr %118, i64 %120 + %122 = load i32, ptr %121, align 4 + %123 = add nsw i32 %114, %122 + store i32 %123, ptr %18, align 4 + %124 = load i32, ptr %17, align 4 + %125 = add nsw i32 %124, 1 + %126 = sext i32 %125 to i64 + %127 = mul nsw i64 %126, %30 + %128 = getelementptr inbounds i32, ptr %32, i64 %127 + %129 = load i32, ptr %15, align 4 + %130 = sext i32 %129 to i64 + %131 = getelementptr inbounds i32, ptr %128, i64 %130 + %132 = load i32, ptr %131, align 4 + %133 = load i32, ptr %17, align 4 + %134 = add nsw i32 %133, 1 + %135 = sext i32 %134 to i64 + %136 = mul nsw i64 %135, %23 + %137 = getelementptr inbounds i32, ptr %26, i64 %136 + %138 = load i32, ptr %15, align 4 + %139 = sext i32 %138 to i64 + %140 = getelementptr inbounds i32, ptr %137, i64 %139 + %141 = load i32, ptr %140, align 4 + %142 = add nsw i32 %132, %141 + store i32 %142, ptr %19, align 4 + %143 = load ptr, ptr %5, align 8 + %144 = load i32, ptr %17, align 4 + %145 = sext i32 %144 to i64 + %146 = getelementptr inbounds i8, ptr %143, i64 %145 + %147 = load i8, ptr %146, align 1 + %148 = sext i8 %147 to i32 + %149 = icmp eq i32 %148, 38 + br i1 %149, label %150, label %209 + +150: ; preds = %103 + %151 = load i32, ptr %14, align 4 + %152 = sext i32 %151 to i64 + %153 = mul nsw i64 %152, %30 + %154 = getelementptr inbounds i32, ptr %32, i64 %153 + %155 = load i32, ptr %17, align 4 + %156 = sext i32 %155 to i64 + %157 = getelementptr inbounds i32, ptr %154, i64 %156 + %158 = load i32, ptr %157, align 4 + %159 = load i32, ptr %17, align 4 + %160 = add nsw i32 %159, 1 + %161 = sext i32 %160 to i64 + %162 = mul nsw i64 %161, %30 + %163 = getelementptr inbounds i32, ptr %32, i64 %162 + %164 = load i32, ptr %15, align 4 + %165 = sext i32 %164 to i64 + %166 = getelementptr inbounds i32, ptr %163, i64 %165 + %167 = load i32, ptr %166, align 4 + %168 = mul nsw i32 %158, %167 + %169 = load i32, ptr %14, align 4 + %170 = sext i32 %169 to i64 + %171 = mul nsw i64 %170, %30 + %172 = getelementptr inbounds i32, ptr %32, i64 %171 + %173 = load i32, ptr %15, align 4 + %174 = sext i32 %173 to i64 + %175 = getelementptr inbounds i32, ptr %172, i64 %174 + %176 = load i32, ptr %175, align 4 + %177 = add nsw i32 %176, %168 + store i32 %177, ptr %175, align 4 + %178 = load i32, ptr %18, align 4 + %179 = load i32, ptr %19, align 4 + %180 = mul nsw i32 %178, %179 + %181 = load i32, ptr %14, align 4 + %182 = sext i32 %181 to i64 + %183 = mul nsw i64 %182, %30 + %184 = getelementptr inbounds i32, ptr %32, i64 %183 + %185 = load i32, ptr %17, align 4 + %186 = sext i32 %185 to i64 + %187 = getelementptr inbounds i32, ptr %184, i64 %186 + %188 = load i32, ptr %187, align 4 + %189 = load i32, ptr %17, align 4 + %190 = add nsw i32 %189, 1 + %191 = sext i32 %190 to i64 + %192 = mul nsw i64 %191, %30 + %193 = getelementptr inbounds i32, ptr %32, i64 %192 + %194 = load i32, ptr %15, align 4 + %195 = sext i32 %194 to i64 + %196 = getelementptr inbounds i32, ptr %193, i64 %195 + %197 = load i32, ptr %196, align 4 + %198 = mul nsw i32 %188, %197 + %199 = sub nsw i32 %180, %198 + %200 = load i32, ptr %14, align 4 + %201 = sext i32 %200 to i64 + %202 = mul nsw i64 %201, %23 + %203 = getelementptr inbounds i32, ptr %26, i64 %202 + %204 = load i32, ptr %15, align 4 + %205 = sext i32 %204 to i64 + %206 = getelementptr inbounds i32, ptr %203, i64 %205 + %207 = load i32, ptr %206, align 4 + %208 = add nsw i32 %207, %199 + store i32 %208, ptr %206, align 4 + br label %209 + +209: ; preds = %150, %103 + %210 = load ptr, ptr %5, align 8 + %211 = load i32, ptr %17, align 4 + %212 = sext i32 %211 to i64 + %213 = getelementptr inbounds i8, ptr %210, i64 %212 + %214 = load i8, ptr %213, align 1 + %215 = sext i8 %214 to i32 + %216 = icmp eq i32 %215, 124 + br i1 %216, label %217, label %276 + +217: ; preds = %209 + %218 = load i32, ptr %14, align 4 + %219 = sext i32 %218 to i64 + %220 = mul nsw i64 %219, %23 + %221 = getelementptr inbounds i32, ptr %26, i64 %220 + %222 = load i32, ptr %17, align 4 + %223 = sext i32 %222 to i64 + %224 = getelementptr inbounds i32, ptr %221, i64 %223 + %225 = load i32, ptr %224, align 4 + %226 = load i32, ptr %17, align 4 + %227 = add nsw i32 %226, 1 + %228 = sext i32 %227 to i64 + %229 = mul nsw i64 %228, %23 + %230 = getelementptr inbounds i32, ptr %26, i64 %229 + %231 = load i32, ptr %15, align 4 + %232 = sext i32 %231 to i64 + %233 = getelementptr inbounds i32, ptr %230, i64 %232 + %234 = load i32, ptr %233, align 4 + %235 = mul nsw i32 %225, %234 + %236 = load i32, ptr %14, align 4 + %237 = sext i32 %236 to i64 + %238 = mul nsw i64 %237, %23 + %239 = getelementptr inbounds i32, ptr %26, i64 %238 + %240 = load i32, ptr %15, align 4 + %241 = sext i32 %240 to i64 + %242 = getelementptr inbounds i32, ptr %239, i64 %241 + %243 = load i32, ptr %242, align 4 + %244 = add nsw i32 %243, %235 + store i32 %244, ptr %242, align 4 + %245 = load i32, ptr %18, align 4 + %246 = load i32, ptr %19, align 4 + %247 = mul nsw i32 %245, %246 + %248 = load i32, ptr %14, align 4 + %249 = sext i32 %248 to i64 + %250 = mul nsw i64 %249, %23 + %251 = getelementptr inbounds i32, ptr %26, i64 %250 + %252 = load i32, ptr %17, align 4 + %253 = sext i32 %252 to i64 + %254 = getelementptr inbounds i32, ptr %251, i64 %253 + %255 = load i32, ptr %254, align 4 + %256 = load i32, ptr %17, align 4 + %257 = add nsw i32 %256, 1 + %258 = sext i32 %257 to i64 + %259 = mul nsw i64 %258, %23 + %260 = getelementptr inbounds i32, ptr %26, i64 %259 + %261 = load i32, ptr %15, align 4 + %262 = sext i32 %261 to i64 + %263 = getelementptr inbounds i32, ptr %260, i64 %262 + %264 = load i32, ptr %263, align 4 + %265 = mul nsw i32 %255, %264 + %266 = sub nsw i32 %247, %265 + %267 = load i32, ptr %14, align 4 + %268 = sext i32 %267 to i64 + %269 = mul nsw i64 %268, %30 + %270 = getelementptr inbounds i32, ptr %32, i64 %269 + %271 = load i32, ptr %15, align 4 + %272 = sext i32 %271 to i64 + %273 = getelementptr inbounds i32, ptr %270, i64 %272 + %274 = load i32, ptr %273, align 4 + %275 = add nsw i32 %274, %266 + store i32 %275, ptr %273, align 4 + br label %276 + +276: ; preds = %217, %209 + %277 = load ptr, ptr %5, align 8 + %278 = load i32, ptr %17, align 4 + %279 = sext i32 %278 to i64 + %280 = getelementptr inbounds i8, ptr %277, i64 %279 + %281 = load i8, ptr %280, align 1 + %282 = sext i8 %281 to i32 + %283 = icmp eq i32 %282, 94 + br i1 %283, label %284, label %377 + +284: ; preds = %276 + %285 = load i32, ptr %14, align 4 + %286 = sext i32 %285 to i64 + %287 = mul nsw i64 %286, %23 + %288 = getelementptr inbounds i32, ptr %26, i64 %287 + %289 = load i32, ptr %17, align 4 + %290 = sext i32 %289 to i64 + %291 = getelementptr inbounds i32, ptr %288, i64 %290 + %292 = load i32, ptr %291, align 4 + %293 = load i32, ptr %17, align 4 + %294 = add nsw i32 %293, 1 + %295 = sext i32 %294 to i64 + %296 = mul nsw i64 %295, %30 + %297 = getelementptr inbounds i32, ptr %32, i64 %296 + %298 = load i32, ptr %15, align 4 + %299 = sext i32 %298 to i64 + %300 = getelementptr inbounds i32, ptr %297, i64 %299 + %301 = load i32, ptr %300, align 4 + %302 = mul nsw i32 %292, %301 + %303 = load i32, ptr %14, align 4 + %304 = sext i32 %303 to i64 + %305 = mul nsw i64 %304, %30 + %306 = getelementptr inbounds i32, ptr %32, i64 %305 + %307 = load i32, ptr %17, align 4 + %308 = sext i32 %307 to i64 + %309 = getelementptr inbounds i32, ptr %306, i64 %308 + %310 = load i32, ptr %309, align 4 + %311 = load i32, ptr %17, align 4 + %312 = add nsw i32 %311, 1 + %313 = sext i32 %312 to i64 + %314 = mul nsw i64 %313, %23 + %315 = getelementptr inbounds i32, ptr %26, i64 %314 + %316 = load i32, ptr %15, align 4 + %317 = sext i32 %316 to i64 + %318 = getelementptr inbounds i32, ptr %315, i64 %317 + %319 = load i32, ptr %318, align 4 + %320 = mul nsw i32 %310, %319 + %321 = add nsw i32 %302, %320 + %322 = load i32, ptr %14, align 4 + %323 = sext i32 %322 to i64 + %324 = mul nsw i64 %323, %30 + %325 = getelementptr inbounds i32, ptr %32, i64 %324 + %326 = load i32, ptr %15, align 4 + %327 = sext i32 %326 to i64 + %328 = getelementptr inbounds i32, ptr %325, i64 %327 + %329 = load i32, ptr %328, align 4 + %330 = add nsw i32 %329, %321 + store i32 %330, ptr %328, align 4 + %331 = load i32, ptr %14, align 4 + %332 = sext i32 %331 to i64 + %333 = mul nsw i64 %332, %30 + %334 = getelementptr inbounds i32, ptr %32, i64 %333 + %335 = load i32, ptr %17, align 4 + %336 = sext i32 %335 to i64 + %337 = getelementptr inbounds i32, ptr %334, i64 %336 + %338 = load i32, ptr %337, align 4 + %339 = load i32, ptr %17, align 4 + %340 = add nsw i32 %339, 1 + %341 = sext i32 %340 to i64 + %342 = mul nsw i64 %341, %30 + %343 = getelementptr inbounds i32, ptr %32, i64 %342 + %344 = load i32, ptr %15, align 4 + %345 = sext i32 %344 to i64 + %346 = getelementptr inbounds i32, ptr %343, i64 %345 + %347 = load i32, ptr %346, align 4 + %348 = mul nsw i32 %338, %347 + %349 = load i32, ptr %14, align 4 + %350 = sext i32 %349 to i64 + %351 = mul nsw i64 %350, %23 + %352 = getelementptr inbounds i32, ptr %26, i64 %351 + %353 = load i32, ptr %17, align 4 + %354 = sext i32 %353 to i64 + %355 = getelementptr inbounds i32, ptr %352, i64 %354 + %356 = load i32, ptr %355, align 4 + %357 = load i32, ptr %17, align 4 + %358 = add nsw i32 %357, 1 + %359 = sext i32 %358 to i64 + %360 = mul nsw i64 %359, %23 + %361 = getelementptr inbounds i32, ptr %26, i64 %360 + %362 = load i32, ptr %15, align 4 + %363 = sext i32 %362 to i64 + %364 = getelementptr inbounds i32, ptr %361, i64 %363 + %365 = load i32, ptr %364, align 4 + %366 = mul nsw i32 %356, %365 + %367 = add nsw i32 %348, %366 + %368 = load i32, ptr %14, align 4 + %369 = sext i32 %368 to i64 + %370 = mul nsw i64 %369, %23 + %371 = getelementptr inbounds i32, ptr %26, i64 %370 + %372 = load i32, ptr %15, align 4 + %373 = sext i32 %372 to i64 + %374 = getelementptr inbounds i32, ptr %371, i64 %373 + %375 = load i32, ptr %374, align 4 + %376 = add nsw i32 %375, %367 + store i32 %376, ptr %374, align 4 + br label %377 + +377: ; preds = %284, %276 + br label %378 + +378: ; preds = %377 + %379 = load i32, ptr %16, align 4 + %380 = add nsw i32 %379, 1 + store i32 %380, ptr %16, align 4 + br label %99, !llvm.loop !8 + +381: ; preds = %99 + br label %382 + +382: ; preds = %381 + %383 = load i32, ptr %14, align 4 + %384 = add nsw i32 %383, 1 + store i32 %384, ptr %14, align 4 + %385 = load i32, ptr %15, align 4 + %386 = add nsw i32 %385, 1 + store i32 %386, ptr %15, align 4 + br label %80, !llvm.loop !9 + +387: ; preds = %80 + br label %388 + +388: ; preds = %387 + %389 = load i32, ptr %13, align 4 + %390 = add nsw i32 %389, 1 + store i32 %390, ptr %13, align 4 + br label %74, !llvm.loop !10 + +391: ; preds = %74 + %392 = mul nsw i64 0, %30 + %393 = getelementptr inbounds i32, ptr %32, i64 %392 + %394 = load i32, ptr %6, align 4 + %395 = sub nsw i32 %394, 1 + %396 = sext i32 %395 to i64 + %397 = getelementptr inbounds i32, ptr %393, i64 %396 + %398 = load i32, ptr %397, align 4 + %399 = load ptr, ptr %7, align 8 + call void @llvm.stackrestore(ptr %399) + ret i32 %398 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #2 { + %1 = alloca i32, align 4 + %2 = alloca [5 x i8], align 1 + %3 = alloca [4 x i8], align 1 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %2, ptr align 1 @__const.main.symbols, i64 5, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %3, ptr align 1 @__const.main.operators, i64 4, i1 false) + %5 = getelementptr inbounds [5 x i8], ptr %2, i64 0, i64 0 + %6 = call i64 @strlen(ptr noundef %5) #6 + %7 = trunc i64 %6 to i32 + store i32 %7, ptr %4, align 4 + %8 = getelementptr inbounds [5 x i8], ptr %2, i64 0, i64 0 + %9 = getelementptr inbounds [4 x i8], ptr %3, i64 0, i64 0 + %10 = load i32, ptr %4, align 4 + %11 = call noundef i32 @_Z12countParenthPcS_i(ptr noundef %8, ptr noundef %9, i32 noundef %10) + %12 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %11) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 + +; Function Attrs: nounwind willreturn memory(read) +declare i64 @strlen(ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +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 = { nocallback nofree nosync nounwind willreturn } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #4 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-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 = { "frame-pointer"="all" "no-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 willreturn memory(read) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/boruvkas-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/boruvkas-algorithm.ll new file mode 100644 index 000000000..523f8a806 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/boruvkas-algorithm.ll @@ -0,0 +1,680 @@ +; ModuleID = 'PE-benchmarks/boruvkas-algorithm.cpp' +source_filename = "PE-benchmarks/boruvkas-algorithm.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +%struct.Graph = type { i32, i32, ptr } +%struct.subset = type { i32, i32 } +%struct.Edge = type { i32, i32, i32 } + +@.str = private unnamed_addr constant [28 x i8] c"Edge %d-%d included in MST\0A\00", align 1 +@.str.1 = private unnamed_addr constant [21 x i8] c"Weight of MST is %d\0A\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10boruvkaMSTP5Graph(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + %15 = alloca i32, align 4 + %16 = alloca i32, align 4 + %17 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %18 = load ptr, ptr %2, align 8 + %19 = getelementptr inbounds %struct.Graph, ptr %18, i32 0, i32 0 + %20 = load i32, ptr %19, align 8 + store i32 %20, ptr %3, align 4 + %21 = load ptr, ptr %2, align 8 + %22 = getelementptr inbounds %struct.Graph, ptr %21, i32 0, i32 1 + %23 = load i32, ptr %22, align 4 + store i32 %23, ptr %4, align 4 + %24 = load ptr, ptr %2, align 8 + %25 = getelementptr inbounds %struct.Graph, ptr %24, i32 0, i32 2 + %26 = load ptr, ptr %25, align 8 + store ptr %26, ptr %5, align 8 + %27 = load i32, ptr %3, align 4 + %28 = sext i32 %27 to i64 + %29 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %28, i64 8) + %30 = extractvalue { i64, i1 } %29, 1 + %31 = extractvalue { i64, i1 } %29, 0 + %32 = select i1 %30, i64 -1, i64 %31 + %33 = call noalias noundef nonnull ptr @_Znam(i64 noundef %32) #5 + store ptr %33, ptr %6, align 8 + %34 = load i32, ptr %3, align 4 + %35 = sext i32 %34 to i64 + %36 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %35, i64 4) + %37 = extractvalue { i64, i1 } %36, 1 + %38 = extractvalue { i64, i1 } %36, 0 + %39 = select i1 %37, i64 -1, i64 %38 + %40 = call noalias noundef nonnull ptr @_Znam(i64 noundef %39) #5 + store ptr %40, ptr %7, align 8 + store i32 0, ptr %8, align 4 + br label %41 + +41: ; preds = %61, %1 + %42 = load i32, ptr %8, align 4 + %43 = load i32, ptr %3, align 4 + %44 = icmp slt i32 %42, %43 + br i1 %44, label %45, label %64 + +45: ; preds = %41 + %46 = load i32, ptr %8, align 4 + %47 = load ptr, ptr %6, align 8 + %48 = load i32, ptr %8, align 4 + %49 = sext i32 %48 to i64 + %50 = getelementptr inbounds %struct.subset, ptr %47, i64 %49 + %51 = getelementptr inbounds %struct.subset, ptr %50, i32 0, i32 0 + store i32 %46, ptr %51, align 4 + %52 = load ptr, ptr %6, align 8 + %53 = load i32, ptr %8, align 4 + %54 = sext i32 %53 to i64 + %55 = getelementptr inbounds %struct.subset, ptr %52, i64 %54 + %56 = getelementptr inbounds %struct.subset, ptr %55, i32 0, i32 1 + store i32 0, ptr %56, align 4 + %57 = load ptr, ptr %7, align 8 + %58 = load i32, ptr %8, align 4 + %59 = sext i32 %58 to i64 + %60 = getelementptr inbounds i32, ptr %57, i64 %59 + store i32 -1, ptr %60, align 4 + br label %61 + +61: ; preds = %45 + %62 = load i32, ptr %8, align 4 + %63 = add nsw i32 %62, 1 + store i32 %63, ptr %8, align 4 + br label %41, !llvm.loop !6 + +64: ; preds = %41 + %65 = load i32, ptr %3, align 4 + store i32 %65, ptr %9, align 4 + store i32 0, ptr %10, align 4 + br label %66 + +66: ; preds = %259, %64 + %67 = load i32, ptr %9, align 4 + %68 = icmp sgt i32 %67, 1 + br i1 %68, label %69, label %260 + +69: ; preds = %66 + store i32 0, ptr %11, align 4 + br label %70 + +70: ; preds = %79, %69 + %71 = load i32, ptr %11, align 4 + %72 = load i32, ptr %3, align 4 + %73 = icmp slt i32 %71, %72 + br i1 %73, label %74, label %82 + +74: ; preds = %70 + %75 = load ptr, ptr %7, align 8 + %76 = load i32, ptr %11, align 4 + %77 = sext i32 %76 to i64 + %78 = getelementptr inbounds i32, ptr %75, i64 %77 + store i32 -1, ptr %78, align 4 + br label %79 + +79: ; preds = %74 + %80 = load i32, ptr %11, align 4 + %81 = add nsw i32 %80, 1 + store i32 %81, ptr %11, align 4 + br label %70, !llvm.loop !8 + +82: ; preds = %70 + store i32 0, ptr %12, align 4 + br label %83 + +83: ; preds = %172, %82 + %84 = load i32, ptr %12, align 4 + %85 = load i32, ptr %4, align 4 + %86 = icmp slt i32 %84, %85 + br i1 %86, label %87, label %175 + +87: ; preds = %83 + %88 = load ptr, ptr %6, align 8 + %89 = load ptr, ptr %5, align 8 + %90 = load i32, ptr %12, align 4 + %91 = sext i32 %90 to i64 + %92 = getelementptr inbounds %struct.Edge, ptr %89, i64 %91 + %93 = getelementptr inbounds %struct.Edge, ptr %92, i32 0, i32 0 + %94 = load i32, ptr %93, align 4 + %95 = call noundef i32 @_Z4findP6subseti(ptr noundef %88, i32 noundef %94) + store i32 %95, ptr %13, align 4 + %96 = load ptr, ptr %6, align 8 + %97 = load ptr, ptr %5, align 8 + %98 = load i32, ptr %12, align 4 + %99 = sext i32 %98 to i64 + %100 = getelementptr inbounds %struct.Edge, ptr %97, i64 %99 + %101 = getelementptr inbounds %struct.Edge, ptr %100, i32 0, i32 1 + %102 = load i32, ptr %101, align 4 + %103 = call noundef i32 @_Z4findP6subseti(ptr noundef %96, i32 noundef %102) + store i32 %103, ptr %14, align 4 + %104 = load i32, ptr %13, align 4 + %105 = load i32, ptr %14, align 4 + %106 = icmp eq i32 %104, %105 + br i1 %106, label %107, label %108 + +107: ; preds = %87 + br label %172 + +108: ; preds = %87 + %109 = load ptr, ptr %7, align 8 + %110 = load i32, ptr %13, align 4 + %111 = sext i32 %110 to i64 + %112 = getelementptr inbounds i32, ptr %109, i64 %111 + %113 = load i32, ptr %112, align 4 + %114 = icmp eq i32 %113, -1 + br i1 %114, label %133, label %115 + +115: ; preds = %108 + %116 = load ptr, ptr %5, align 8 + %117 = load ptr, ptr %7, align 8 + %118 = load i32, ptr %13, align 4 + %119 = sext i32 %118 to i64 + %120 = getelementptr inbounds i32, ptr %117, i64 %119 + %121 = load i32, ptr %120, align 4 + %122 = sext i32 %121 to i64 + %123 = getelementptr inbounds %struct.Edge, ptr %116, i64 %122 + %124 = getelementptr inbounds %struct.Edge, ptr %123, i32 0, i32 2 + %125 = load i32, ptr %124, align 4 + %126 = load ptr, ptr %5, align 8 + %127 = load i32, ptr %12, align 4 + %128 = sext i32 %127 to i64 + %129 = getelementptr inbounds %struct.Edge, ptr %126, i64 %128 + %130 = getelementptr inbounds %struct.Edge, ptr %129, i32 0, i32 2 + %131 = load i32, ptr %130, align 4 + %132 = icmp sgt i32 %125, %131 + br i1 %132, label %133, label %139 + +133: ; preds = %115, %108 + %134 = load i32, ptr %12, align 4 + %135 = load ptr, ptr %7, align 8 + %136 = load i32, ptr %13, align 4 + %137 = sext i32 %136 to i64 + %138 = getelementptr inbounds i32, ptr %135, i64 %137 + store i32 %134, ptr %138, align 4 + br label %139 + +139: ; preds = %133, %115 + %140 = load ptr, ptr %7, align 8 + %141 = load i32, ptr %14, align 4 + %142 = sext i32 %141 to i64 + %143 = getelementptr inbounds i32, ptr %140, i64 %142 + %144 = load i32, ptr %143, align 4 + %145 = icmp eq i32 %144, -1 + br i1 %145, label %164, label %146 + +146: ; preds = %139 + %147 = load ptr, ptr %5, align 8 + %148 = load ptr, ptr %7, align 8 + %149 = load i32, ptr %14, align 4 + %150 = sext i32 %149 to i64 + %151 = getelementptr inbounds i32, ptr %148, i64 %150 + %152 = load i32, ptr %151, align 4 + %153 = sext i32 %152 to i64 + %154 = getelementptr inbounds %struct.Edge, ptr %147, i64 %153 + %155 = getelementptr inbounds %struct.Edge, ptr %154, i32 0, i32 2 + %156 = load i32, ptr %155, align 4 + %157 = load ptr, ptr %5, align 8 + %158 = load i32, ptr %12, align 4 + %159 = sext i32 %158 to i64 + %160 = getelementptr inbounds %struct.Edge, ptr %157, i64 %159 + %161 = getelementptr inbounds %struct.Edge, ptr %160, i32 0, i32 2 + %162 = load i32, ptr %161, align 4 + %163 = icmp sgt i32 %156, %162 + br i1 %163, label %164, label %170 + +164: ; preds = %146, %139 + %165 = load i32, ptr %12, align 4 + %166 = load ptr, ptr %7, align 8 + %167 = load i32, ptr %14, align 4 + %168 = sext i32 %167 to i64 + %169 = getelementptr inbounds i32, ptr %166, i64 %168 + store i32 %165, ptr %169, align 4 + br label %170 + +170: ; preds = %164, %146 + br label %171 + +171: ; preds = %170 + br label %172 + +172: ; preds = %171, %107 + %173 = load i32, ptr %12, align 4 + %174 = add nsw i32 %173, 1 + store i32 %174, ptr %12, align 4 + br label %83, !llvm.loop !9 + +175: ; preds = %83 + store i32 0, ptr %15, align 4 + br label %176 + +176: ; preds = %256, %175 + %177 = load i32, ptr %15, align 4 + %178 = load i32, ptr %3, align 4 + %179 = icmp slt i32 %177, %178 + br i1 %179, label %180, label %259 + +180: ; preds = %176 + %181 = load ptr, ptr %7, align 8 + %182 = load i32, ptr %15, align 4 + %183 = sext i32 %182 to i64 + %184 = getelementptr inbounds i32, ptr %181, i64 %183 + %185 = load i32, ptr %184, align 4 + %186 = icmp ne i32 %185, -1 + br i1 %186, label %187, label %255 + +187: ; preds = %180 + %188 = load ptr, ptr %6, align 8 + %189 = load ptr, ptr %5, align 8 + %190 = load ptr, ptr %7, align 8 + %191 = load i32, ptr %15, align 4 + %192 = sext i32 %191 to i64 + %193 = getelementptr inbounds i32, ptr %190, i64 %192 + %194 = load i32, ptr %193, align 4 + %195 = sext i32 %194 to i64 + %196 = getelementptr inbounds %struct.Edge, ptr %189, i64 %195 + %197 = getelementptr inbounds %struct.Edge, ptr %196, i32 0, i32 0 + %198 = load i32, ptr %197, align 4 + %199 = call noundef i32 @_Z4findP6subseti(ptr noundef %188, i32 noundef %198) + store i32 %199, ptr %16, align 4 + %200 = load ptr, ptr %6, align 8 + %201 = load ptr, ptr %5, align 8 + %202 = load ptr, ptr %7, align 8 + %203 = load i32, ptr %15, align 4 + %204 = sext i32 %203 to i64 + %205 = getelementptr inbounds i32, ptr %202, i64 %204 + %206 = load i32, ptr %205, align 4 + %207 = sext i32 %206 to i64 + %208 = getelementptr inbounds %struct.Edge, ptr %201, i64 %207 + %209 = getelementptr inbounds %struct.Edge, ptr %208, i32 0, i32 1 + %210 = load i32, ptr %209, align 4 + %211 = call noundef i32 @_Z4findP6subseti(ptr noundef %200, i32 noundef %210) + store i32 %211, ptr %17, align 4 + %212 = load i32, ptr %16, align 4 + %213 = load i32, ptr %17, align 4 + %214 = icmp eq i32 %212, %213 + br i1 %214, label %215, label %216 + +215: ; preds = %187 + br label %256 + +216: ; preds = %187 + %217 = load ptr, ptr %5, align 8 + %218 = load ptr, ptr %7, align 8 + %219 = load i32, ptr %15, align 4 + %220 = sext i32 %219 to i64 + %221 = getelementptr inbounds i32, ptr %218, i64 %220 + %222 = load i32, ptr %221, align 4 + %223 = sext i32 %222 to i64 + %224 = getelementptr inbounds %struct.Edge, ptr %217, i64 %223 + %225 = getelementptr inbounds %struct.Edge, ptr %224, i32 0, i32 2 + %226 = load i32, ptr %225, align 4 + %227 = load i32, ptr %10, align 4 + %228 = add nsw i32 %227, %226 + store i32 %228, ptr %10, align 4 + %229 = load ptr, ptr %5, align 8 + %230 = load ptr, ptr %7, align 8 + %231 = load i32, ptr %15, align 4 + %232 = sext i32 %231 to i64 + %233 = getelementptr inbounds i32, ptr %230, i64 %232 + %234 = load i32, ptr %233, align 4 + %235 = sext i32 %234 to i64 + %236 = getelementptr inbounds %struct.Edge, ptr %229, i64 %235 + %237 = getelementptr inbounds %struct.Edge, ptr %236, i32 0, i32 0 + %238 = load i32, ptr %237, align 4 + %239 = load ptr, ptr %5, align 8 + %240 = load ptr, ptr %7, align 8 + %241 = load i32, ptr %15, align 4 + %242 = sext i32 %241 to i64 + %243 = getelementptr inbounds i32, ptr %240, i64 %242 + %244 = load i32, ptr %243, align 4 + %245 = sext i32 %244 to i64 + %246 = getelementptr inbounds %struct.Edge, ptr %239, i64 %245 + %247 = getelementptr inbounds %struct.Edge, ptr %246, i32 0, i32 1 + %248 = load i32, ptr %247, align 4 + %249 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %238, i32 noundef %248) + %250 = load ptr, ptr %6, align 8 + %251 = load i32, ptr %16, align 4 + %252 = load i32, ptr %17, align 4 + call void @_Z5UnionP6subsetii(ptr noundef %250, i32 noundef %251, i32 noundef %252) + %253 = load i32, ptr %9, align 4 + %254 = add nsw i32 %253, -1 + store i32 %254, ptr %9, align 4 + br label %255 + +255: ; preds = %216, %180 + br label %256 + +256: ; preds = %255, %215 + %257 = load i32, ptr %15, align 4 + %258 = add nsw i32 %257, 1 + store i32 %258, ptr %15, align 4 + br label %176, !llvm.loop !10 + +259: ; preds = %176 + br label %66, !llvm.loop !11 + +260: ; preds = %66 + %261 = load i32, ptr %10, align 4 + %262 = call i32 (ptr, ...) @printf(ptr noundef @.str.1, i32 noundef %261) + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z4findP6subseti(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = sext i32 %6 to i64 + %8 = getelementptr inbounds %struct.subset, ptr %5, i64 %7 + %9 = getelementptr inbounds %struct.subset, ptr %8, i32 0, i32 0 + %10 = load i32, ptr %9, align 4 + %11 = load i32, ptr %4, align 4 + %12 = icmp ne i32 %10, %11 + br i1 %12, label %13, label %27 + +13: ; preds = %2 + %14 = load ptr, ptr %3, align 8 + %15 = load ptr, ptr %3, align 8 + %16 = load i32, ptr %4, align 4 + %17 = sext i32 %16 to i64 + %18 = getelementptr inbounds %struct.subset, ptr %15, i64 %17 + %19 = getelementptr inbounds %struct.subset, ptr %18, i32 0, i32 0 + %20 = load i32, ptr %19, align 4 + %21 = call noundef i32 @_Z4findP6subseti(ptr noundef %14, i32 noundef %20) + %22 = load ptr, ptr %3, align 8 + %23 = load i32, ptr %4, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds %struct.subset, ptr %22, i64 %24 + %26 = getelementptr inbounds %struct.subset, ptr %25, i32 0, i32 0 + store i32 %21, ptr %26, align 4 + br label %27 + +27: ; preds = %13, %2 + %28 = load ptr, ptr %3, align 8 + %29 = load i32, ptr %4, align 4 + %30 = sext i32 %29 to i64 + %31 = getelementptr inbounds %struct.subset, ptr %28, i64 %30 + %32 = getelementptr inbounds %struct.subset, ptr %31, i32 0, i32 0 + %33 = load i32, ptr %32, align 4 + ret i32 %33 +} + +declare i32 @printf(ptr noundef, ...) #3 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z5UnionP6subsetii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %9 = load ptr, ptr %4, align 8 + %10 = load i32, ptr %5, align 4 + %11 = call noundef i32 @_Z4findP6subseti(ptr noundef %9, i32 noundef %10) + store i32 %11, ptr %7, align 4 + %12 = load ptr, ptr %4, align 8 + %13 = load i32, ptr %6, align 4 + %14 = call noundef i32 @_Z4findP6subseti(ptr noundef %12, i32 noundef %13) + store i32 %14, ptr %8, align 4 + %15 = load ptr, ptr %4, align 8 + %16 = load i32, ptr %7, align 4 + %17 = sext i32 %16 to i64 + %18 = getelementptr inbounds %struct.subset, ptr %15, i64 %17 + %19 = getelementptr inbounds %struct.subset, ptr %18, i32 0, i32 1 + %20 = load i32, ptr %19, align 4 + %21 = load ptr, ptr %4, align 8 + %22 = load i32, ptr %8, align 4 + %23 = sext i32 %22 to i64 + %24 = getelementptr inbounds %struct.subset, ptr %21, i64 %23 + %25 = getelementptr inbounds %struct.subset, ptr %24, i32 0, i32 1 + %26 = load i32, ptr %25, align 4 + %27 = icmp slt i32 %20, %26 + br i1 %27, label %28, label %35 + +28: ; preds = %3 + %29 = load i32, ptr %8, align 4 + %30 = load ptr, ptr %4, align 8 + %31 = load i32, ptr %7, align 4 + %32 = sext i32 %31 to i64 + %33 = getelementptr inbounds %struct.subset, ptr %30, i64 %32 + %34 = getelementptr inbounds %struct.subset, ptr %33, i32 0, i32 0 + store i32 %29, ptr %34, align 4 + br label %71 + +35: ; preds = %3 + %36 = load ptr, ptr %4, align 8 + %37 = load i32, ptr %7, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds %struct.subset, ptr %36, i64 %38 + %40 = getelementptr inbounds %struct.subset, ptr %39, i32 0, i32 1 + %41 = load i32, ptr %40, align 4 + %42 = load ptr, ptr %4, align 8 + %43 = load i32, ptr %8, align 4 + %44 = sext i32 %43 to i64 + %45 = getelementptr inbounds %struct.subset, ptr %42, i64 %44 + %46 = getelementptr inbounds %struct.subset, ptr %45, i32 0, i32 1 + %47 = load i32, ptr %46, align 4 + %48 = icmp sgt i32 %41, %47 + br i1 %48, label %49, label %56 + +49: ; preds = %35 + %50 = load i32, ptr %7, align 4 + %51 = load ptr, ptr %4, align 8 + %52 = load i32, ptr %8, align 4 + %53 = sext i32 %52 to i64 + %54 = getelementptr inbounds %struct.subset, ptr %51, i64 %53 + %55 = getelementptr inbounds %struct.subset, ptr %54, i32 0, i32 0 + store i32 %50, ptr %55, align 4 + br label %70 + +56: ; preds = %35 + %57 = load i32, ptr %7, align 4 + %58 = load ptr, ptr %4, align 8 + %59 = load i32, ptr %8, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds %struct.subset, ptr %58, i64 %60 + %62 = getelementptr inbounds %struct.subset, ptr %61, i32 0, i32 0 + store i32 %57, ptr %62, align 4 + %63 = load ptr, ptr %4, align 8 + %64 = load i32, ptr %7, align 4 + %65 = sext i32 %64 to i64 + %66 = getelementptr inbounds %struct.subset, ptr %63, i64 %65 + %67 = getelementptr inbounds %struct.subset, ptr %66, i32 0, i32 1 + %68 = load i32, ptr %67, align 4 + %69 = add nsw i32 %68, 1 + store i32 %69, ptr %67, align 4 + br label %70 + +70: ; preds = %56, %49 + br label %71 + +71: ; preds = %70, %28 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef ptr @_Z11createGraphii(i32 noundef %0, i32 noundef %1) #0 { + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %6 = call noalias noundef nonnull ptr @_Znwm(i64 noundef 16) #5 + store ptr %6, ptr %5, align 8 + %7 = load i32, ptr %3, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = getelementptr inbounds %struct.Graph, ptr %8, i32 0, i32 0 + store i32 %7, ptr %9, align 8 + %10 = load i32, ptr %4, align 4 + %11 = load ptr, ptr %5, align 8 + %12 = getelementptr inbounds %struct.Graph, ptr %11, i32 0, i32 1 + store i32 %10, ptr %12, align 4 + %13 = load i32, ptr %4, align 4 + %14 = sext i32 %13 to i64 + %15 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %14, i64 12) + %16 = extractvalue { i64, i1 } %15, 1 + %17 = extractvalue { i64, i1 } %15, 0 + %18 = select i1 %16, i64 -1, i64 %17 + %19 = call noalias noundef nonnull ptr @_Znam(i64 noundef %18) #5 + %20 = load ptr, ptr %5, align 8 + %21 = getelementptr inbounds %struct.Graph, ptr %20, i32 0, i32 2 + store ptr %19, ptr %21, align 8 + %22 = load ptr, ptr %5, align 8 + ret ptr %22 +} + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; 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 + %4 = alloca ptr, align 8 + store i32 0, ptr %1, align 4 + store i32 4, ptr %2, align 4 + store i32 5, ptr %3, align 4 + %5 = load i32, ptr %2, align 4 + %6 = load i32, ptr %3, align 4 + %7 = call noundef ptr @_Z11createGraphii(i32 noundef %5, i32 noundef %6) + store ptr %7, ptr %4, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %struct.Graph, ptr %8, i32 0, i32 2 + %10 = load ptr, ptr %9, align 8 + %11 = getelementptr inbounds %struct.Edge, ptr %10, i64 0 + %12 = getelementptr inbounds %struct.Edge, ptr %11, i32 0, i32 0 + store i32 0, ptr %12, align 4 + %13 = load ptr, ptr %4, align 8 + %14 = getelementptr inbounds %struct.Graph, ptr %13, i32 0, i32 2 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %struct.Edge, ptr %15, i64 0 + %17 = getelementptr inbounds %struct.Edge, ptr %16, i32 0, i32 1 + store i32 1, ptr %17, align 4 + %18 = load ptr, ptr %4, align 8 + %19 = getelementptr inbounds %struct.Graph, ptr %18, i32 0, i32 2 + %20 = load ptr, ptr %19, align 8 + %21 = getelementptr inbounds %struct.Edge, ptr %20, i64 0 + %22 = getelementptr inbounds %struct.Edge, ptr %21, i32 0, i32 2 + store i32 10, ptr %22, align 4 + %23 = load ptr, ptr %4, align 8 + %24 = getelementptr inbounds %struct.Graph, ptr %23, i32 0, i32 2 + %25 = load ptr, ptr %24, align 8 + %26 = getelementptr inbounds %struct.Edge, ptr %25, i64 1 + %27 = getelementptr inbounds %struct.Edge, ptr %26, i32 0, i32 0 + store i32 0, ptr %27, align 4 + %28 = load ptr, ptr %4, align 8 + %29 = getelementptr inbounds %struct.Graph, ptr %28, i32 0, i32 2 + %30 = load ptr, ptr %29, align 8 + %31 = getelementptr inbounds %struct.Edge, ptr %30, i64 1 + %32 = getelementptr inbounds %struct.Edge, ptr %31, i32 0, i32 1 + store i32 2, ptr %32, align 4 + %33 = load ptr, ptr %4, align 8 + %34 = getelementptr inbounds %struct.Graph, ptr %33, i32 0, i32 2 + %35 = load ptr, ptr %34, align 8 + %36 = getelementptr inbounds %struct.Edge, ptr %35, i64 1 + %37 = getelementptr inbounds %struct.Edge, ptr %36, i32 0, i32 2 + store i32 6, ptr %37, align 4 + %38 = load ptr, ptr %4, align 8 + %39 = getelementptr inbounds %struct.Graph, ptr %38, i32 0, i32 2 + %40 = load ptr, ptr %39, align 8 + %41 = getelementptr inbounds %struct.Edge, ptr %40, i64 2 + %42 = getelementptr inbounds %struct.Edge, ptr %41, i32 0, i32 0 + store i32 0, ptr %42, align 4 + %43 = load ptr, ptr %4, align 8 + %44 = getelementptr inbounds %struct.Graph, ptr %43, i32 0, i32 2 + %45 = load ptr, ptr %44, align 8 + %46 = getelementptr inbounds %struct.Edge, ptr %45, i64 2 + %47 = getelementptr inbounds %struct.Edge, ptr %46, i32 0, i32 1 + store i32 3, ptr %47, align 4 + %48 = load ptr, ptr %4, align 8 + %49 = getelementptr inbounds %struct.Graph, ptr %48, i32 0, i32 2 + %50 = load ptr, ptr %49, align 8 + %51 = getelementptr inbounds %struct.Edge, ptr %50, i64 2 + %52 = getelementptr inbounds %struct.Edge, ptr %51, i32 0, i32 2 + store i32 5, ptr %52, align 4 + %53 = load ptr, ptr %4, align 8 + %54 = getelementptr inbounds %struct.Graph, ptr %53, i32 0, i32 2 + %55 = load ptr, ptr %54, align 8 + %56 = getelementptr inbounds %struct.Edge, ptr %55, i64 3 + %57 = getelementptr inbounds %struct.Edge, ptr %56, i32 0, i32 0 + store i32 1, ptr %57, align 4 + %58 = load ptr, ptr %4, align 8 + %59 = getelementptr inbounds %struct.Graph, ptr %58, i32 0, i32 2 + %60 = load ptr, ptr %59, align 8 + %61 = getelementptr inbounds %struct.Edge, ptr %60, i64 3 + %62 = getelementptr inbounds %struct.Edge, ptr %61, i32 0, i32 1 + store i32 3, ptr %62, align 4 + %63 = load ptr, ptr %4, align 8 + %64 = getelementptr inbounds %struct.Graph, ptr %63, i32 0, i32 2 + %65 = load ptr, ptr %64, align 8 + %66 = getelementptr inbounds %struct.Edge, ptr %65, i64 3 + %67 = getelementptr inbounds %struct.Edge, ptr %66, i32 0, i32 2 + store i32 15, ptr %67, align 4 + %68 = load ptr, ptr %4, align 8 + %69 = getelementptr inbounds %struct.Graph, ptr %68, i32 0, i32 2 + %70 = load ptr, ptr %69, align 8 + %71 = getelementptr inbounds %struct.Edge, ptr %70, i64 4 + %72 = getelementptr inbounds %struct.Edge, ptr %71, i32 0, i32 0 + store i32 2, ptr %72, align 4 + %73 = load ptr, ptr %4, align 8 + %74 = getelementptr inbounds %struct.Graph, ptr %73, i32 0, i32 2 + %75 = load ptr, ptr %74, align 8 + %76 = getelementptr inbounds %struct.Edge, ptr %75, i64 4 + %77 = getelementptr inbounds %struct.Edge, ptr %76, i32 0, i32 1 + store i32 3, ptr %77, align 4 + %78 = load ptr, ptr %4, align 8 + %79 = getelementptr inbounds %struct.Graph, ptr %78, i32 0, i32 2 + %80 = load ptr, ptr %79, align 8 + %81 = getelementptr inbounds %struct.Edge, ptr %80, i64 4 + %82 = getelementptr inbounds %struct.Edge, ptr %81, i32 0, i32 2 + store i32 4, ptr %82, align 4 + %83 = load ptr, ptr %4, align 8 + call void @_Z10boruvkaMSTP5Graph(ptr noundef %83) + ret i32 0 +} + +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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/box-stacking.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/box-stacking.ll new file mode 100644 index 000000000..995a44ec6 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/box-stacking.ll @@ -0,0 +1,507 @@ +; ModuleID = 'PE-benchmarks/box-stacking.cpp' +source_filename = "PE-benchmarks/box-stacking.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +%struct.Box = type { i32, i32, i32 } + +@__const.main.arr = private unnamed_addr constant [4 x %struct.Box] [%struct.Box { i32 4, i32 6, i32 7 }, %struct.Box { i32 1, i32 2, i32 3 }, %struct.Box { i32 4, i32 5, i32 6 }, %struct.Box { i32 10, i32 12, i32 32 }], align 16 +@.str = private unnamed_addr constant [44 x i8] c"The maximum possible height of stack is %d\0A\00", align 1 + +; Function Attrs: 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, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %5 = load i32, ptr %3, align 4 + %6 = load i32, ptr %4, align 4 + %7 = icmp slt i32 %5, %6 + br i1 %7, label %8, label %10 + +8: ; preds = %2 + %9 = load i32, ptr %3, align 4 + br label %12 + +10: ; preds = %2 + %11 = load i32, ptr %4, align 4 + br label %12 + +12: ; preds = %10, %8 + %13 = phi i32 [ %9, %8 ], [ %11, %10 ] + ret i32 %13 +} + +; 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, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %5 = load i32, ptr %3, align 4 + %6 = load i32, ptr %4, align 4 + %7 = icmp sgt i32 %5, %6 + br i1 %7, label %8, label %10 + +8: ; preds = %2 + %9 = load i32, ptr %3, align 4 + br label %12 + +10: ; preds = %2 + %11 = load i32, ptr %4, align 4 + br label %12 + +12: ; preds = %10, %8 + %13 = phi i32 [ %9, %8 ], [ %11, %10 ] + ret i32 %13 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z7comparePKvS0_(ptr noundef %0, ptr noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %struct.Box, ptr %5, i32 0, i32 2 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %struct.Box, ptr %8, i32 0, i32 1 + %10 = load i32, ptr %9, align 4 + %11 = mul nsw i32 %7, %10 + %12 = load ptr, ptr %3, align 8 + %13 = getelementptr inbounds %struct.Box, ptr %12, i32 0, i32 2 + %14 = load i32, ptr %13, align 4 + %15 = load ptr, ptr %3, align 8 + %16 = getelementptr inbounds %struct.Box, ptr %15, i32 0, i32 1 + %17 = load i32, ptr %16, align 4 + %18 = mul nsw i32 %14, %17 + %19 = sub nsw i32 %11, %18 + ret i32 %19 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z14maxStackHeightP3Boxi(ptr noundef %0, i32 noundef %1) #1 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i64, align 8 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %15 = load i32, ptr %4, align 4 + %16 = mul nsw i32 3, %15 + %17 = zext i32 %16 to i64 + %18 = call ptr @llvm.stacksave() + store ptr %18, ptr %5, align 8 + %19 = alloca %struct.Box, i64 %17, align 16 + store i64 %17, ptr %6, align 8 + store i32 0, ptr %7, align 4 + store i32 0, ptr %8, align 4 + br label %20 + +20: ; preds = %163, %2 + %21 = load i32, ptr %8, align 4 + %22 = load i32, ptr %4, align 4 + %23 = icmp slt i32 %21, %22 + br i1 %23, label %24, label %166 + +24: ; preds = %20 + %25 = load ptr, ptr %3, align 8 + %26 = load i32, ptr %8, align 4 + %27 = sext i32 %26 to i64 + %28 = getelementptr inbounds %struct.Box, ptr %25, i64 %27 + %29 = getelementptr inbounds %struct.Box, ptr %28, i32 0, i32 0 + %30 = load i32, ptr %29, align 4 + %31 = load i32, ptr %7, align 4 + %32 = sext i32 %31 to i64 + %33 = getelementptr inbounds %struct.Box, ptr %19, i64 %32 + %34 = getelementptr inbounds %struct.Box, ptr %33, i32 0, i32 0 + store i32 %30, ptr %34, align 4 + %35 = load ptr, ptr %3, align 8 + %36 = load i32, ptr %8, align 4 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds %struct.Box, ptr %35, i64 %37 + %39 = getelementptr inbounds %struct.Box, ptr %38, i32 0, i32 2 + %40 = load i32, ptr %39, align 4 + %41 = load ptr, ptr %3, align 8 + %42 = load i32, ptr %8, align 4 + %43 = sext i32 %42 to i64 + %44 = getelementptr inbounds %struct.Box, ptr %41, i64 %43 + %45 = getelementptr inbounds %struct.Box, ptr %44, i32 0, i32 1 + %46 = load i32, ptr %45, align 4 + %47 = call noundef i32 @_Z3maxii(i32 noundef %40, i32 noundef %46) + %48 = load i32, ptr %7, align 4 + %49 = sext i32 %48 to i64 + %50 = getelementptr inbounds %struct.Box, ptr %19, i64 %49 + %51 = getelementptr inbounds %struct.Box, ptr %50, i32 0, i32 2 + store i32 %47, ptr %51, align 4 + %52 = load ptr, ptr %3, align 8 + %53 = load i32, ptr %8, align 4 + %54 = sext i32 %53 to i64 + %55 = getelementptr inbounds %struct.Box, ptr %52, i64 %54 + %56 = getelementptr inbounds %struct.Box, ptr %55, i32 0, i32 2 + %57 = load i32, ptr %56, align 4 + %58 = load ptr, ptr %3, align 8 + %59 = load i32, ptr %8, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds %struct.Box, ptr %58, i64 %60 + %62 = getelementptr inbounds %struct.Box, ptr %61, i32 0, i32 1 + %63 = load i32, ptr %62, align 4 + %64 = call noundef i32 @_Z3minii(i32 noundef %57, i32 noundef %63) + %65 = load i32, ptr %7, align 4 + %66 = sext i32 %65 to i64 + %67 = getelementptr inbounds %struct.Box, ptr %19, i64 %66 + %68 = getelementptr inbounds %struct.Box, ptr %67, i32 0, i32 1 + store i32 %64, ptr %68, align 4 + %69 = load i32, ptr %7, align 4 + %70 = add nsw i32 %69, 1 + store i32 %70, ptr %7, align 4 + %71 = load ptr, ptr %3, align 8 + %72 = load i32, ptr %8, align 4 + %73 = sext i32 %72 to i64 + %74 = getelementptr inbounds %struct.Box, ptr %71, i64 %73 + %75 = getelementptr inbounds %struct.Box, ptr %74, i32 0, i32 1 + %76 = load i32, ptr %75, align 4 + %77 = load i32, ptr %7, align 4 + %78 = sext i32 %77 to i64 + %79 = getelementptr inbounds %struct.Box, ptr %19, i64 %78 + %80 = getelementptr inbounds %struct.Box, ptr %79, i32 0, i32 0 + store i32 %76, ptr %80, align 4 + %81 = load ptr, ptr %3, align 8 + %82 = load i32, ptr %8, align 4 + %83 = sext i32 %82 to i64 + %84 = getelementptr inbounds %struct.Box, ptr %81, i64 %83 + %85 = getelementptr inbounds %struct.Box, ptr %84, i32 0, i32 0 + %86 = load i32, ptr %85, align 4 + %87 = load ptr, ptr %3, align 8 + %88 = load i32, ptr %8, align 4 + %89 = sext i32 %88 to i64 + %90 = getelementptr inbounds %struct.Box, ptr %87, i64 %89 + %91 = getelementptr inbounds %struct.Box, ptr %90, i32 0, i32 2 + %92 = load i32, ptr %91, align 4 + %93 = call noundef i32 @_Z3maxii(i32 noundef %86, i32 noundef %92) + %94 = load i32, ptr %7, align 4 + %95 = sext i32 %94 to i64 + %96 = getelementptr inbounds %struct.Box, ptr %19, i64 %95 + %97 = getelementptr inbounds %struct.Box, ptr %96, i32 0, i32 2 + store i32 %93, ptr %97, align 4 + %98 = load ptr, ptr %3, align 8 + %99 = load i32, ptr %8, align 4 + %100 = sext i32 %99 to i64 + %101 = getelementptr inbounds %struct.Box, ptr %98, i64 %100 + %102 = getelementptr inbounds %struct.Box, ptr %101, i32 0, i32 0 + %103 = load i32, ptr %102, align 4 + %104 = load ptr, ptr %3, align 8 + %105 = load i32, ptr %8, align 4 + %106 = sext i32 %105 to i64 + %107 = getelementptr inbounds %struct.Box, ptr %104, i64 %106 + %108 = getelementptr inbounds %struct.Box, ptr %107, i32 0, i32 2 + %109 = load i32, ptr %108, align 4 + %110 = call noundef i32 @_Z3minii(i32 noundef %103, i32 noundef %109) + %111 = load i32, ptr %7, align 4 + %112 = sext i32 %111 to i64 + %113 = getelementptr inbounds %struct.Box, ptr %19, i64 %112 + %114 = getelementptr inbounds %struct.Box, ptr %113, i32 0, i32 1 + store i32 %110, ptr %114, align 4 + %115 = load i32, ptr %7, align 4 + %116 = add nsw i32 %115, 1 + store i32 %116, ptr %7, align 4 + %117 = load ptr, ptr %3, align 8 + %118 = load i32, ptr %8, align 4 + %119 = sext i32 %118 to i64 + %120 = getelementptr inbounds %struct.Box, ptr %117, i64 %119 + %121 = getelementptr inbounds %struct.Box, ptr %120, i32 0, i32 2 + %122 = load i32, ptr %121, align 4 + %123 = load i32, ptr %7, align 4 + %124 = sext i32 %123 to i64 + %125 = getelementptr inbounds %struct.Box, ptr %19, i64 %124 + %126 = getelementptr inbounds %struct.Box, ptr %125, i32 0, i32 0 + store i32 %122, ptr %126, align 4 + %127 = load ptr, ptr %3, align 8 + %128 = load i32, ptr %8, align 4 + %129 = sext i32 %128 to i64 + %130 = getelementptr inbounds %struct.Box, ptr %127, i64 %129 + %131 = getelementptr inbounds %struct.Box, ptr %130, i32 0, i32 0 + %132 = load i32, ptr %131, align 4 + %133 = load ptr, ptr %3, align 8 + %134 = load i32, ptr %8, align 4 + %135 = sext i32 %134 to i64 + %136 = getelementptr inbounds %struct.Box, ptr %133, i64 %135 + %137 = getelementptr inbounds %struct.Box, ptr %136, i32 0, i32 1 + %138 = load i32, ptr %137, align 4 + %139 = call noundef i32 @_Z3maxii(i32 noundef %132, i32 noundef %138) + %140 = load i32, ptr %7, align 4 + %141 = sext i32 %140 to i64 + %142 = getelementptr inbounds %struct.Box, ptr %19, i64 %141 + %143 = getelementptr inbounds %struct.Box, ptr %142, i32 0, i32 2 + store i32 %139, ptr %143, align 4 + %144 = load ptr, ptr %3, align 8 + %145 = load i32, ptr %8, align 4 + %146 = sext i32 %145 to i64 + %147 = getelementptr inbounds %struct.Box, ptr %144, i64 %146 + %148 = getelementptr inbounds %struct.Box, ptr %147, i32 0, i32 0 + %149 = load i32, ptr %148, align 4 + %150 = load ptr, ptr %3, align 8 + %151 = load i32, ptr %8, align 4 + %152 = sext i32 %151 to i64 + %153 = getelementptr inbounds %struct.Box, ptr %150, i64 %152 + %154 = getelementptr inbounds %struct.Box, ptr %153, i32 0, i32 1 + %155 = load i32, ptr %154, align 4 + %156 = call noundef i32 @_Z3minii(i32 noundef %149, i32 noundef %155) + %157 = load i32, ptr %7, align 4 + %158 = sext i32 %157 to i64 + %159 = getelementptr inbounds %struct.Box, ptr %19, i64 %158 + %160 = getelementptr inbounds %struct.Box, ptr %159, i32 0, i32 1 + store i32 %156, ptr %160, align 4 + %161 = load i32, ptr %7, align 4 + %162 = add nsw i32 %161, 1 + store i32 %162, ptr %7, align 4 + br label %163 + +163: ; preds = %24 + %164 = load i32, ptr %8, align 4 + %165 = add nsw i32 %164, 1 + store i32 %165, ptr %8, align 4 + br label %20, !llvm.loop !6 + +166: ; preds = %20 + %167 = load i32, ptr %4, align 4 + %168 = mul nsw i32 3, %167 + store i32 %168, ptr %4, align 4 + %169 = load i32, ptr %4, align 4 + %170 = sext i32 %169 to i64 + call void @qsort(ptr noundef %19, i64 noundef %170, i64 noundef 12, ptr noundef @_Z7comparePKvS0_) + %171 = load i32, ptr %4, align 4 + %172 = zext i32 %171 to i64 + %173 = alloca i32, i64 %172, align 16 + store i64 %172, ptr %9, align 8 + store i32 0, ptr %10, align 4 + br label %174 + +174: ; preds = %187, %166 + %175 = load i32, ptr %10, align 4 + %176 = load i32, ptr %4, align 4 + %177 = icmp slt i32 %175, %176 + br i1 %177, label %178, label %190 + +178: ; preds = %174 + %179 = load i32, ptr %10, align 4 + %180 = sext i32 %179 to i64 + %181 = getelementptr inbounds %struct.Box, ptr %19, i64 %180 + %182 = getelementptr inbounds %struct.Box, ptr %181, i32 0, i32 0 + %183 = load i32, ptr %182, align 4 + %184 = load i32, ptr %10, align 4 + %185 = sext i32 %184 to i64 + %186 = getelementptr inbounds i32, ptr %173, i64 %185 + store i32 %183, ptr %186, align 4 + br label %187 + +187: ; preds = %178 + %188 = load i32, ptr %10, align 4 + %189 = add nsw i32 %188, 1 + store i32 %189, ptr %10, align 4 + br label %174, !llvm.loop !8 + +190: ; preds = %174 + store i32 1, ptr %11, align 4 + br label %191 + +191: ; preds = %259, %190 + %192 = load i32, ptr %11, align 4 + %193 = load i32, ptr %4, align 4 + %194 = icmp slt i32 %192, %193 + br i1 %194, label %195, label %262 + +195: ; preds = %191 + store i32 0, ptr %12, align 4 + br label %196 + +196: ; preds = %255, %195 + %197 = load i32, ptr %12, align 4 + %198 = load i32, ptr %11, align 4 + %199 = icmp slt i32 %197, %198 + br i1 %199, label %200, label %258 + +200: ; preds = %196 + %201 = load i32, ptr %11, align 4 + %202 = sext i32 %201 to i64 + %203 = getelementptr inbounds %struct.Box, ptr %19, i64 %202 + %204 = getelementptr inbounds %struct.Box, ptr %203, i32 0, i32 1 + %205 = load i32, ptr %204, align 4 + %206 = load i32, ptr %12, align 4 + %207 = sext i32 %206 to i64 + %208 = getelementptr inbounds %struct.Box, ptr %19, i64 %207 + %209 = getelementptr inbounds %struct.Box, ptr %208, i32 0, i32 1 + %210 = load i32, ptr %209, align 4 + %211 = icmp slt i32 %205, %210 + br i1 %211, label %212, label %254 + +212: ; preds = %200 + %213 = load i32, ptr %11, align 4 + %214 = sext i32 %213 to i64 + %215 = getelementptr inbounds %struct.Box, ptr %19, i64 %214 + %216 = getelementptr inbounds %struct.Box, ptr %215, i32 0, i32 2 + %217 = load i32, ptr %216, align 4 + %218 = load i32, ptr %12, align 4 + %219 = sext i32 %218 to i64 + %220 = getelementptr inbounds %struct.Box, ptr %19, i64 %219 + %221 = getelementptr inbounds %struct.Box, ptr %220, i32 0, i32 2 + %222 = load i32, ptr %221, align 4 + %223 = icmp slt i32 %217, %222 + br i1 %223, label %224, label %254 + +224: ; preds = %212 + %225 = load i32, ptr %11, align 4 + %226 = sext i32 %225 to i64 + %227 = getelementptr inbounds i32, ptr %173, i64 %226 + %228 = load i32, ptr %227, align 4 + %229 = load i32, ptr %12, align 4 + %230 = sext i32 %229 to i64 + %231 = getelementptr inbounds i32, ptr %173, i64 %230 + %232 = load i32, ptr %231, align 4 + %233 = load i32, ptr %11, align 4 + %234 = sext i32 %233 to i64 + %235 = getelementptr inbounds %struct.Box, ptr %19, i64 %234 + %236 = getelementptr inbounds %struct.Box, ptr %235, i32 0, i32 0 + %237 = load i32, ptr %236, align 4 + %238 = add nsw i32 %232, %237 + %239 = icmp slt i32 %228, %238 + br i1 %239, label %240, label %254 + +240: ; preds = %224 + %241 = load i32, ptr %12, align 4 + %242 = sext i32 %241 to i64 + %243 = getelementptr inbounds i32, ptr %173, i64 %242 + %244 = load i32, ptr %243, align 4 + %245 = load i32, ptr %11, align 4 + %246 = sext i32 %245 to i64 + %247 = getelementptr inbounds %struct.Box, ptr %19, i64 %246 + %248 = getelementptr inbounds %struct.Box, ptr %247, i32 0, i32 0 + %249 = load i32, ptr %248, align 4 + %250 = add nsw i32 %244, %249 + %251 = load i32, ptr %11, align 4 + %252 = sext i32 %251 to i64 + %253 = getelementptr inbounds i32, ptr %173, i64 %252 + store i32 %250, ptr %253, align 4 + br label %254 + +254: ; preds = %240, %224, %212, %200 + br label %255 + +255: ; preds = %254 + %256 = load i32, ptr %12, align 4 + %257 = add nsw i32 %256, 1 + store i32 %257, ptr %12, align 4 + br label %196, !llvm.loop !9 + +258: ; preds = %196 + br label %259 + +259: ; preds = %258 + %260 = load i32, ptr %11, align 4 + %261 = add nsw i32 %260, 1 + store i32 %261, ptr %11, align 4 + br label %191, !llvm.loop !10 + +262: ; preds = %191 + store i32 -1, ptr %13, align 4 + store i32 0, ptr %14, align 4 + br label %263 + +263: ; preds = %280, %262 + %264 = load i32, ptr %14, align 4 + %265 = load i32, ptr %4, align 4 + %266 = icmp slt i32 %264, %265 + br i1 %266, label %267, label %283 + +267: ; preds = %263 + %268 = load i32, ptr %13, align 4 + %269 = load i32, ptr %14, align 4 + %270 = sext i32 %269 to i64 + %271 = getelementptr inbounds i32, ptr %173, i64 %270 + %272 = load i32, ptr %271, align 4 + %273 = icmp slt i32 %268, %272 + br i1 %273, label %274, label %279 + +274: ; preds = %267 + %275 = load i32, ptr %14, align 4 + %276 = sext i32 %275 to i64 + %277 = getelementptr inbounds i32, ptr %173, i64 %276 + %278 = load i32, ptr %277, align 4 + store i32 %278, ptr %13, align 4 + br label %279 + +279: ; preds = %274, %267 + br label %280 + +280: ; preds = %279 + %281 = load i32, ptr %14, align 4 + %282 = add nsw i32 %281, 1 + store i32 %282, ptr %14, align 4 + br label %263, !llvm.loop !11 + +283: ; preds = %263 + %284 = load i32, ptr %13, align 4 + %285 = load ptr, ptr %5, align 8 + call void @llvm.stackrestore(ptr %285) + ret i32 %284 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #2 + +declare void @qsort(ptr noundef, i64 noundef, i64 noundef, ptr noundef) #3 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #2 + +; 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 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 48, i1 false) + store i32 4, ptr %3, align 4 + %4 = getelementptr inbounds [4 x %struct.Box], ptr %2, i64 0, i64 0 + %5 = load i32, ptr %3, align 4 + %6 = call noundef i32 @_Z14maxStackHeightP3Boxi(ptr noundef %4, i32 noundef %5) + %7 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %6) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 + +declare i32 @printf(ptr noundef, ...) #3 + +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 = { nocallback 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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/boyer-moore-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/boyer-moore-algorithm.ll new file mode 100644 index 000000000..0eb120438 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/boyer-moore-algorithm.ll @@ -0,0 +1,745 @@ +; ModuleID = 'PE-benchmarks/boyer-moore-algorithm.cpp' +source_filename = "PE-benchmarks/boyer-moore-algorithm.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } +%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } +%union.anon = type { i64, [8 x i8] } +%"class.std::allocator" = type { i8 } +%"struct.std::forward_iterator_tag" = type { i8 } +%struct._Guard = type { ptr } + +$_ZSt3maxIiERKT_S2_S2_ = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any + +$_ZNSt15__new_allocatorIcED2Ev = comdat any + +$_ZNSt11char_traitsIcE6lengthEPKc = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any + +$__clang_call_terminate = comdat any + +@_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 +@.str.3 = private unnamed_addr constant [50 x i8] c"basic_string: construction from null is not valid\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z16badCharHeuristicNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPi(ptr noundef %0, i32 noundef %1, ptr noundef %2) #0 { + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + store i32 %1, ptr %4, align 4 + store ptr %2, ptr %5, align 8 + store i32 0, ptr %6, align 4 + br label %7 + +7: ; preds = %15, %3 + %8 = load i32, ptr %6, align 4 + %9 = icmp slt i32 %8, 256 + br i1 %9, label %10, label %18 + +10: ; preds = %7 + %11 = load ptr, ptr %5, align 8 + %12 = load i32, ptr %6, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i32, ptr %11, i64 %13 + store i32 -1, ptr %14, align 4 + br label %15 + +15: ; preds = %10 + %16 = load i32, ptr %6, align 4 + %17 = add nsw i32 %16, 1 + store i32 %17, ptr %6, align 4 + br label %7, !llvm.loop !6 + +18: ; preds = %7 + store i32 0, ptr %6, align 4 + br label %19 + +19: ; preds = %33, %18 + %20 = load i32, ptr %6, align 4 + %21 = load i32, ptr %4, align 4 + %22 = icmp slt i32 %20, %21 + br i1 %22, label %23, label %36 + +23: ; preds = %19 + %24 = load i32, ptr %6, align 4 + %25 = load ptr, ptr %5, align 8 + %26 = load i32, ptr %6, align 4 + %27 = sext i32 %26 to i64 + %28 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %27) + %29 = load i8, ptr %28, align 1 + %30 = sext i8 %29 to i32 + %31 = sext i32 %30 to i64 + %32 = getelementptr inbounds i32, ptr %25, i64 %31 + store i32 %24, ptr %32, align 4 + br label %33 + +33: ; preds = %23 + %34 = load i32, ptr %6, align 4 + %35 = add nsw i32 %34, 1 + store i32 %35, ptr %6, align 4 + br label %19, !llvm.loop !8 + +36: ; preds = %19 + ret void +} + +declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %0, ptr noundef %1) #0 personality ptr @__gxx_personality_v0 { + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca [256 x i32], align 16 + %6 = alloca %"class.std::__cxx11::basic_string", align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #9 + %14 = trunc i64 %13 to i32 + store i32 %14, ptr %3, align 4 + %15 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #9 + %16 = trunc i64 %15 to i32 + store i32 %16, ptr %4, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %6, ptr noundef nonnull align 8 dereferenceable(32) %1) + %17 = load i32, ptr %3, align 4 + %18 = getelementptr inbounds [256 x i32], ptr %5, i64 0, i64 0 + invoke void @_Z16badCharHeuristicNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPi(ptr noundef %6, i32 noundef %17, ptr noundef %18) + to label %19 unwind label %51 + +19: ; preds = %2 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #9 + store i32 0, ptr %9, align 4 + br label %20 + +20: ; preds = %101, %19 + %21 = load i32, ptr %9, align 4 + %22 = load i32, ptr %4, align 4 + %23 = load i32, ptr %3, align 4 + %24 = sub nsw i32 %22, %23 + %25 = icmp sle i32 %21, %24 + br i1 %25, label %26, label %102 + +26: ; preds = %20 + %27 = load i32, ptr %3, align 4 + %28 = sub nsw i32 %27, 1 + store i32 %28, ptr %10, align 4 + br label %29 + +29: ; preds = %48, %26 + %30 = load i32, ptr %10, align 4 + %31 = icmp sge i32 %30, 0 + br i1 %31, label %32, label %46 + +32: ; preds = %29 + %33 = load i32, ptr %10, align 4 + %34 = sext i32 %33 to i64 + %35 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %34) + %36 = load i8, ptr %35, align 1 + %37 = sext i8 %36 to i32 + %38 = load i32, ptr %9, align 4 + %39 = load i32, ptr %10, align 4 + %40 = add nsw i32 %38, %39 + %41 = sext i32 %40 to i64 + %42 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %41) + %43 = load i8, ptr %42, align 1 + %44 = sext i8 %43 to i32 + %45 = icmp eq i32 %37, %44 + br label %46 + +46: ; preds = %32, %29 + %47 = phi i1 [ false, %29 ], [ %45, %32 ] + br i1 %47, label %48, label %55 + +48: ; preds = %46 + %49 = load i32, ptr %10, align 4 + %50 = add nsw i32 %49, -1 + store i32 %50, ptr %10, align 4 + br label %29, !llvm.loop !9 + +51: ; preds = %2 + %52 = landingpad { ptr, i32 } + cleanup + %53 = extractvalue { ptr, i32 } %52, 0 + store ptr %53, ptr %7, align 8 + %54 = extractvalue { ptr, i32 } %52, 1 + store i32 %54, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #9 + br label %103 + +55: ; preds = %46 + %56 = load i32, ptr %10, align 4 + %57 = icmp slt i32 %56, 0 + br i1 %57, label %58, label %85 + +58: ; preds = %55 + %59 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %60 = load i32, ptr %9, align 4 + %61 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %59, i32 noundef %60) + %62 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %61, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %63 = load i32, ptr %9, align 4 + %64 = load i32, ptr %3, align 4 + %65 = add nsw i32 %63, %64 + %66 = load i32, ptr %4, align 4 + %67 = icmp slt i32 %65, %66 + br i1 %67, label %68, label %80 + +68: ; preds = %58 + %69 = load i32, ptr %3, align 4 + %70 = load i32, ptr %9, align 4 + %71 = load i32, ptr %3, align 4 + %72 = add nsw i32 %70, %71 + %73 = sext i32 %72 to i64 + %74 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %73) + %75 = load i8, ptr %74, align 1 + %76 = sext i8 %75 to i64 + %77 = getelementptr inbounds [256 x i32], ptr %5, i64 0, i64 %76 + %78 = load i32, ptr %77, align 4 + %79 = sub nsw i32 %69, %78 + br label %81 + +80: ; preds = %58 + br label %81 + +81: ; preds = %80, %68 + %82 = phi i32 [ %79, %68 ], [ 1, %80 ] + %83 = load i32, ptr %9, align 4 + %84 = add nsw i32 %83, %82 + store i32 %84, ptr %9, align 4 + br label %101 + +85: ; preds = %55 + store i32 1, ptr %11, align 4 + %86 = load i32, ptr %10, align 4 + %87 = load i32, ptr %9, align 4 + %88 = load i32, ptr %10, align 4 + %89 = add nsw i32 %87, %88 + %90 = sext i32 %89 to i64 + %91 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %90) + %92 = load i8, ptr %91, align 1 + %93 = sext i8 %92 to i64 + %94 = getelementptr inbounds [256 x i32], ptr %5, i64 0, i64 %93 + %95 = load i32, ptr %94, align 4 + %96 = sub nsw i32 %86, %95 + store i32 %96, ptr %12, align 4 + %97 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %11, ptr noundef nonnull align 4 dereferenceable(4) %12) + %98 = load i32, ptr %97, align 4 + %99 = load i32, ptr %9, align 4 + %100 = add nsw i32 %99, %98 + store i32 %100, ptr %9, align 4 + br label %101 + +101: ; preds = %85, %81 + br label %20, !llvm.loop !10 + +102: ; preds = %20 + ret void + +103: ; preds = %51 + %104 = load ptr, ptr %7, align 8 + %105 = load i32, ptr %8, align 4 + %106 = insertvalue { ptr, i32 } poison, ptr %104, 0 + %107 = insertvalue { ptr, i32 } %106, i32 %105, 1 + resume { ptr, i32 } %107 +} + +; Function Attrs: nounwind +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #3 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: noinline norecurse uwtable +define dso_local noundef i32 @main() #4 personality ptr @__gxx_personality_v0 { + %1 = alloca ptr, align 8 + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca %"class.std::__cxx11::basic_string", align 8 + %11 = alloca %"class.std::allocator", align 1 + %12 = alloca ptr, align 8 + %13 = alloca i32, align 4 + %14 = alloca %"class.std::__cxx11::basic_string", align 8 + %15 = alloca %"class.std::allocator", align 1 + %16 = alloca %"class.std::__cxx11::basic_string", align 8 + %17 = alloca %"class.std::__cxx11::basic_string", align 8 + store i32 0, ptr %9, align 4 + store ptr %11, ptr %8, align 8 + %18 = load ptr, ptr %8, align 8 + store ptr %18, ptr %1, align 8 + %19 = load ptr, ptr %1, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef @.str.1, ptr noundef nonnull align 1 dereferenceable(1) %11) + to label %20 unwind label %30 + +20: ; preds = %0 + store ptr %11, ptr %6, align 8 + %21 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %21) #9 + store ptr %15, ptr %7, align 8 + %22 = load ptr, ptr %7, align 8 + store ptr %22, ptr %2, align 8 + %23 = load ptr, ptr %2, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %14, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %15) + to label %24 unwind label %35 + +24: ; preds = %20 + store ptr %15, ptr %4, align 8 + %25 = load ptr, ptr %4, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %25) #9 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %16, ptr noundef nonnull align 8 dereferenceable(32) %10) + to label %26 unwind label %40 + +26: ; preds = %24 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %17, ptr noundef nonnull align 8 dereferenceable(32) %14) + to label %27 unwind label %44 + +27: ; preds = %26 + invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %16, ptr noundef %17) + to label %28 unwind label %48 + +28: ; preds = %27 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #9 + store i32 0, ptr %9, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #9 + %29 = load i32, ptr %9, align 4 + ret i32 %29 + +30: ; preds = %0 + %31 = landingpad { ptr, i32 } + cleanup + %32 = extractvalue { ptr, i32 } %31, 0 + store ptr %32, ptr %12, align 8 + %33 = extractvalue { ptr, i32 } %31, 1 + store i32 %33, ptr %13, align 4 + store ptr %11, ptr %5, align 8 + %34 = load ptr, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %34) #9 + br label %55 + +35: ; preds = %20 + %36 = landingpad { ptr, i32 } + cleanup + %37 = extractvalue { ptr, i32 } %36, 0 + store ptr %37, ptr %12, align 8 + %38 = extractvalue { ptr, i32 } %36, 1 + store i32 %38, ptr %13, align 4 + store ptr %15, ptr %3, align 8 + %39 = load ptr, ptr %3, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %39) #9 + br label %54 + +40: ; preds = %24 + %41 = landingpad { ptr, i32 } + cleanup + %42 = extractvalue { ptr, i32 } %41, 0 + store ptr %42, ptr %12, align 8 + %43 = extractvalue { ptr, i32 } %41, 1 + store i32 %43, ptr %13, align 4 + br label %53 + +44: ; preds = %26 + %45 = landingpad { ptr, i32 } + cleanup + %46 = extractvalue { ptr, i32 } %45, 0 + store ptr %46, ptr %12, align 8 + %47 = extractvalue { ptr, i32 } %45, 1 + store i32 %47, ptr %13, align 4 + br label %52 + +48: ; preds = %27 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %12, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %13, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #9 + br label %52 + +52: ; preds = %48, %44 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #9 + br label %53 + +53: ; preds = %52, %40 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #9 + br label %54 + +54: ; preds = %53, %35 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #9 + br label %55 + +55: ; preds = %54, %30 + %56 = load ptr, ptr %12, align 8 + %57 = load i32, ptr %13, align 4 + %58 = insertvalue { ptr, i32 } poison, ptr %56, 0 + %59 = insertvalue { ptr, i32 } %58, i32 %57, 1 + resume { ptr, i32 } %59 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) unnamed_addr #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %11, i32 0, i32 0 + %13 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) + %14 = load ptr, ptr %6, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %12, ptr noundef %13, ptr noundef nonnull align 1 dereferenceable(1) %14) + %15 = load ptr, ptr %5, align 8 + %16 = icmp eq ptr %15, null + br i1 %16, label %17, label %23 + +17: ; preds = %3 + invoke void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.3) #10 + to label %18 unwind label %19 + +18: ; preds = %17 + unreachable + +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } + cleanup + %21 = extractvalue { ptr, i32 } %20, 0 + store ptr %21, ptr %7, align 8 + %22 = extractvalue { ptr, i32 } %20, 1 + store i32 %22, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %12) #9 + br label %32 + +23: ; preds = %3 + %24 = load ptr, ptr %5, align 8 + %25 = load ptr, ptr %5, align 8 + %26 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %25) + to label %27 unwind label %19 + +27: ; preds = %23 + %28 = getelementptr inbounds i8, ptr %24, i64 %26 + store ptr %28, ptr %9, align 8 + %29 = load ptr, ptr %5, align 8 + %30 = load ptr, ptr %9, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %29, ptr noundef %30) + to label %31 unwind label %19 + +31: ; preds = %27 + ret void + +32: ; preds = %19 + %33 = load ptr, ptr %7, align 8 + %34 = load i32, ptr %8, align 4 + %35 = insertvalue { ptr, i32 } poison, ptr %33, 0 + %36 = insertvalue { ptr, i32 } %35, i32 %34, 1 + resume { ptr, i32 } %36 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef, ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 + +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call i64 @strlen(ptr noundef %3) #9 + ret i64 %4 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca i64, align 8 + %15 = alloca %struct._Guard, align 8 + %16 = alloca ptr, align 8 + %17 = alloca i32, align 4 + store ptr %0, ptr %11, align 8 + store ptr %1, ptr %12, align 8 + store ptr %2, ptr %13, align 8 + %18 = load ptr, ptr %11, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %13, align 8 + store ptr %19, ptr %8, align 8 + store ptr %20, ptr %9, align 8 + %21 = load ptr, ptr %8, align 8 + %22 = load ptr, ptr %9, align 8 + store ptr %8, ptr %4, align 8 + store ptr %21, ptr %5, align 8 + store ptr %22, ptr %6, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %5, align 8 + %25 = ptrtoint ptr %23 to i64 + %26 = ptrtoint ptr %24 to i64 + %27 = sub i64 %25, %26 + store i64 %27, ptr %14, align 8 + %28 = load i64, ptr %14, align 8 + %29 = icmp ugt i64 %28, 15 + br i1 %29, label %30, label %33 + +30: ; preds = %3 + %31 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef nonnull align 8 dereferenceable(8) %14, i64 noundef 0) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef %31) + %32 = load i64, ptr %14, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %32) + br label %40 + +33: ; preds = %3 + store ptr %18, ptr %7, align 8 + %34 = load ptr, ptr %7, align 8 + %35 = invoke noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %34) + to label %39 unwind label %36 + +36: ; preds = %33 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #11 + unreachable + +39: ; preds = %33 + br label %40 + +40: ; preds = %39, %30 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef %18) + %41 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %18) + to label %42 unwind label %48 + +42: ; preds = %40 + %43 = load ptr, ptr %12, align 8 + %44 = load ptr, ptr %13, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %41, ptr noundef %43, ptr noundef %44) #9 + %45 = getelementptr inbounds %struct._Guard, ptr %15, i32 0, i32 0 + store ptr null, ptr %45, align 8 + %46 = load i64, ptr %14, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %46) + to label %47 unwind label %48 + +47: ; preds = %42 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #9 + ret void + +48: ; preds = %42, %40 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %16, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %17, align 4 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #9 + br label %52 + +52: ; preds = %48 + %53 = load ptr, ptr %16, align 8 + %54 = load i32, ptr %17, align 4 + %55 = insertvalue { ptr, i32 } poison, ptr %53, 0 + %56 = insertvalue { ptr, i32 } %55, i32 %54, 1 + resume { ptr, i32 } %56 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #9 + ret void +} + +; Function Attrs: nounwind +declare i64 @strlen(ptr noundef) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #1 + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %struct._Guard, ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #2 + +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = icmp ne ptr %5, null + br i1 %6, label %7, label %11 + +7: ; preds = %1 + %8 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %9) + to label %10 unwind label %12 + +10: ; preds = %7 + br label %11 + +11: ; preds = %10, %1 + ret void + +12: ; preds = %7 + %13 = landingpad { ptr, i32 } + catch ptr null + %14 = extractvalue { ptr, i32 } %13, 0 + call void @__clang_call_terminate(ptr %14) #11 + unreachable +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #8 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #9 + call void @_ZSt9terminatev() #11 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #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 = { 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 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 #4 = { 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 = { 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 = { 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 = { 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 #8 = { noinline noreturn 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 = { nounwind } +attributes #10 = { noreturn } +attributes #11 = { noreturn nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/channel-assignment.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/channel-assignment.ll new file mode 100644 index 000000000..7c7ae0e3c --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/channel-assignment.ll @@ -0,0 +1,264 @@ +; ModuleID = 'PE-benchmarks/channel-assignment.cpp' +source_filename = "PE-benchmarks/channel-assignment.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 +@.str.3 = private unnamed_addr constant [5 x i8] c"-> R\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z3bpmPA4_iiPbPi(ptr noundef %0, i32 noundef %1, ptr noundef %2, ptr noundef %3) #0 { + %5 = alloca i1, align 1 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i32, align 4 + store ptr %0, ptr %6, align 8 + store i32 %1, ptr %7, align 4 + store ptr %2, ptr %8, align 8 + store ptr %3, ptr %9, align 8 + store i32 0, ptr %10, align 4 + br label %11 + +11: ; preds = %60, %4 + %12 = load i32, ptr %10, align 4 + %13 = icmp slt i32 %12, 4 + br i1 %13, label %14, label %63 + +14: ; preds = %11 + %15 = load ptr, ptr %6, align 8 + %16 = load i32, ptr %7, align 4 + %17 = sext i32 %16 to i64 + %18 = getelementptr inbounds [4 x i32], ptr %15, i64 %17 + %19 = load i32, ptr %10, align 4 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds [4 x i32], ptr %18, i64 0, i64 %20 + %22 = load i32, ptr %21, align 4 + %23 = icmp sgt i32 %22, 0 + br i1 %23, label %24, label %59 + +24: ; preds = %14 + %25 = load ptr, ptr %8, align 8 + %26 = load i32, ptr %10, align 4 + %27 = sext i32 %26 to i64 + %28 = getelementptr inbounds i8, ptr %25, i64 %27 + %29 = load i8, ptr %28, align 1 + %30 = trunc i8 %29 to i1 + br i1 %30, label %59, label %31 + +31: ; preds = %24 + %32 = load ptr, ptr %8, align 8 + %33 = load i32, ptr %10, align 4 + %34 = sext i32 %33 to i64 + %35 = getelementptr inbounds i8, ptr %32, i64 %34 + store i8 1, ptr %35, align 1 + %36 = load ptr, ptr %9, align 8 + %37 = load i32, ptr %10, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds i32, ptr %36, i64 %38 + %40 = load i32, ptr %39, align 4 + %41 = icmp slt i32 %40, 0 + br i1 %41, label %52, label %42 + +42: ; preds = %31 + %43 = load ptr, ptr %6, align 8 + %44 = load ptr, ptr %9, align 8 + %45 = load i32, ptr %10, align 4 + %46 = sext i32 %45 to i64 + %47 = getelementptr inbounds i32, ptr %44, i64 %46 + %48 = load i32, ptr %47, align 4 + %49 = load ptr, ptr %8, align 8 + %50 = load ptr, ptr %9, align 8 + %51 = call noundef zeroext i1 @_Z3bpmPA4_iiPbPi(ptr noundef %43, i32 noundef %48, ptr noundef %49, ptr noundef %50) + br i1 %51, label %52, label %58 + +52: ; preds = %42, %31 + %53 = load i32, ptr %7, align 4 + %54 = load ptr, ptr %9, align 8 + %55 = load i32, ptr %10, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i32, ptr %54, i64 %56 + store i32 %53, ptr %57, align 4 + store i1 true, ptr %5, align 1 + br label %64 + +58: ; preds = %42 + br label %59 + +59: ; preds = %58, %24, %14 + br label %60 + +60: ; preds = %59 + %61 = load i32, ptr %10, align 4 + %62 = add nsw i32 %61, 1 + store i32 %62, ptr %10, align 4 + br label %11, !llvm.loop !6 + +63: ; preds = %11 + store i1 false, ptr %5, align 1 + br label %64 + +64: ; preds = %63, %52 + %65 = load i1, ptr %5, align 1 + ret i1 %65 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z6maxBPMPA4_i(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca [4 x i32], align 16 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca [4 x i8], align 1 + %7 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %8 = getelementptr inbounds [4 x i32], ptr %3, i64 0, i64 0 + call void @llvm.memset.p0.i64(ptr align 16 %8, i8 -1, i64 16, i1 false) + store i32 0, ptr %4, align 4 + store i32 0, ptr %5, align 4 + br label %9 + +9: ; preds = %23, %1 + %10 = load i32, ptr %5, align 4 + %11 = icmp slt i32 %10, 3 + br i1 %11, label %12, label %26 + +12: ; preds = %9 + %13 = getelementptr inbounds [4 x i8], ptr %6, i64 0, i64 0 + call void @llvm.memset.p0.i64(ptr align 1 %13, i8 0, i64 4, i1 false) + %14 = load ptr, ptr %2, align 8 + %15 = load i32, ptr %5, align 4 + %16 = getelementptr inbounds [4 x i8], ptr %6, i64 0, i64 0 + %17 = getelementptr inbounds [4 x i32], ptr %3, i64 0, i64 0 + %18 = call noundef zeroext i1 @_Z3bpmPA4_iiPbPi(ptr noundef %14, i32 noundef %15, ptr noundef %16, ptr noundef %17) + br i1 %18, label %19, label %22 + +19: ; preds = %12 + %20 = load i32, ptr %4, align 4 + %21 = add nsw i32 %20, 1 + store i32 %21, ptr %4, align 4 + br label %22 + +22: ; preds = %19, %12 + br label %23 + +23: ; preds = %22 + %24 = load i32, ptr %5, align 4 + %25 = add nsw i32 %24, 1 + store i32 %25, ptr %5, align 4 + br label %9, !llvm.loop !8 + +26: ; preds = %9 + %27 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %28 = load i32, ptr %4, align 4 + %29 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %27, i32 noundef %28) + %30 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %29, ptr noundef @.str.1) + store i32 0, ptr %7, align 4 + br label %31 + +31: ; preds = %55, %26 + %32 = load i32, ptr %7, align 4 + %33 = icmp slt i32 %32, 4 + br i1 %33, label %34, label %58 + +34: ; preds = %31 + %35 = load i32, ptr %7, align 4 + %36 = sext i32 %35 to i64 + %37 = getelementptr inbounds [4 x i32], ptr %3, i64 0, i64 %36 + %38 = load i32, ptr %37, align 4 + %39 = add nsw i32 %38, 1 + %40 = icmp ne i32 %39, 0 + br i1 %40, label %41, label %54 + +41: ; preds = %34 + %42 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + %43 = load i32, ptr %7, align 4 + %44 = sext i32 %43 to i64 + %45 = getelementptr inbounds [4 x i32], ptr %3, i64 0, i64 %44 + %46 = load i32, ptr %45, align 4 + %47 = add nsw i32 %46, 1 + %48 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %42, i32 noundef %47) + %49 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %48, ptr noundef @.str.3) + %50 = load i32, ptr %7, align 4 + %51 = add nsw i32 %50, 1 + %52 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %49, i32 noundef %51) + %53 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %52, ptr noundef @.str.1) + br label %54 + +54: ; preds = %41, %34 + br label %55 + +55: ; preds = %54 + %56 = load i32, ptr %7, align 4 + %57 = add nsw i32 %56, 1 + store i32 %57, ptr %7, align 4 + br label %31, !llvm.loop !9 + +58: ; preds = %31 + %59 = load i32, ptr %4, align 4 + ret i32 %59 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [3 x [4 x i32]], align 16 + %3 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memset.p0.i64(ptr align 16 %2, i8 0, i64 48, i1 false) + %4 = getelementptr inbounds [3 x [4 x i32]], ptr %2, i32 0, i32 0 + %5 = getelementptr inbounds [4 x i32], ptr %4, i32 0, i32 1 + store i32 2, ptr %5, align 4 + %6 = getelementptr inbounds [3 x [4 x i32]], ptr %2, i32 0, i32 1 + %7 = getelementptr inbounds [4 x i32], ptr %6, i32 0, i32 0 + store i32 3, ptr %7, align 16 + %8 = getelementptr inbounds [4 x i32], ptr %6, i32 0, i32 2 + store i32 1, ptr %8, align 8 + %9 = getelementptr inbounds [3 x [4 x i32]], ptr %2, i32 0, i32 2 + %10 = getelementptr inbounds [4 x i32], ptr %9, i32 0, i32 0 + store i32 2, ptr %10, align 16 + %11 = getelementptr inbounds [4 x i32], ptr %9, i32 0, i32 1 + store i32 4, ptr %11, align 4 + %12 = getelementptr inbounds [3 x [4 x i32]], ptr %2, i64 0, i64 0 + %13 = call noundef i32 @_Z6maxBPMPA4_i(ptr noundef %12) + store i32 %13, ptr %3, align 4 + ret i32 0 +} + +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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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" } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/coin-change.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/coin-change.ll new file mode 100644 index 000000000..fb491ca84 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/coin-change.ll @@ -0,0 +1,234 @@ +; ModuleID = 'PE-benchmarks/coin-change.cpp' +source_filename = "PE-benchmarks/coin-change.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__const.main.arr = private unnamed_addr constant [3 x i32] [i32 1, i32 2, i32 3], align 4 +@_ZSt4cout = external global %"class.std::basic_ostream", align 8 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z5countPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca ptr, align 8 + %12 = alloca i64, align 8 + %13 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %14 = load i32, ptr %6, align 4 + %15 = add nsw i32 %14, 1 + %16 = zext i32 %15 to i64 + %17 = load i32, ptr %5, align 4 + %18 = zext i32 %17 to i64 + %19 = call ptr @llvm.stacksave() + store ptr %19, ptr %11, align 8 + %20 = mul nuw i64 %16, %18 + %21 = alloca i32, i64 %20, align 16 + store i64 %16, ptr %12, align 8 + store i64 %18, ptr %13, align 8 + store i32 0, ptr %7, align 4 + br label %22 + +22: ; preds = %32, %3 + %23 = load i32, ptr %7, align 4 + %24 = load i32, ptr %5, align 4 + %25 = icmp slt i32 %23, %24 + br i1 %25, label %26, label %35 + +26: ; preds = %22 + %27 = mul nsw i64 0, %18 + %28 = getelementptr inbounds i32, ptr %21, i64 %27 + %29 = load i32, ptr %7, align 4 + %30 = sext i32 %29 to i64 + %31 = getelementptr inbounds i32, ptr %28, i64 %30 + store i32 1, ptr %31, align 4 + br label %32 + +32: ; preds = %26 + %33 = load i32, ptr %7, align 4 + %34 = add nsw i32 %33, 1 + store i32 %34, ptr %7, align 4 + br label %22, !llvm.loop !6 + +35: ; preds = %22 + store i32 1, ptr %7, align 4 + br label %36 + +36: ; preds = %102, %35 + %37 = load i32, ptr %7, align 4 + %38 = load i32, ptr %6, align 4 + %39 = add nsw i32 %38, 1 + %40 = icmp slt i32 %37, %39 + br i1 %40, label %41, label %105 + +41: ; preds = %36 + store i32 0, ptr %8, align 4 + br label %42 + +42: ; preds = %98, %41 + %43 = load i32, ptr %8, align 4 + %44 = load i32, ptr %5, align 4 + %45 = icmp slt i32 %43, %44 + br i1 %45, label %46, label %101 + +46: ; preds = %42 + %47 = load i32, ptr %7, align 4 + %48 = load ptr, ptr %4, align 8 + %49 = load i32, ptr %8, align 4 + %50 = sext i32 %49 to i64 + %51 = getelementptr inbounds i32, ptr %48, i64 %50 + %52 = load i32, ptr %51, align 4 + %53 = sub nsw i32 %47, %52 + %54 = icmp sge i32 %53, 0 + br i1 %54, label %55, label %70 + +55: ; preds = %46 + %56 = load i32, ptr %7, align 4 + %57 = load ptr, ptr %4, align 8 + %58 = load i32, ptr %8, align 4 + %59 = sext i32 %58 to i64 + %60 = getelementptr inbounds i32, ptr %57, i64 %59 + %61 = load i32, ptr %60, align 4 + %62 = sub nsw i32 %56, %61 + %63 = sext i32 %62 to i64 + %64 = mul nsw i64 %63, %18 + %65 = getelementptr inbounds i32, ptr %21, i64 %64 + %66 = load i32, ptr %8, align 4 + %67 = sext i32 %66 to i64 + %68 = getelementptr inbounds i32, ptr %65, i64 %67 + %69 = load i32, ptr %68, align 4 + br label %71 + +70: ; preds = %46 + br label %71 + +71: ; preds = %70, %55 + %72 = phi i32 [ %69, %55 ], [ 0, %70 ] + store i32 %72, ptr %9, align 4 + %73 = load i32, ptr %8, align 4 + %74 = icmp sge i32 %73, 1 + br i1 %74, label %75, label %85 + +75: ; preds = %71 + %76 = load i32, ptr %7, align 4 + %77 = sext i32 %76 to i64 + %78 = mul nsw i64 %77, %18 + %79 = getelementptr inbounds i32, ptr %21, i64 %78 + %80 = load i32, ptr %8, align 4 + %81 = sub nsw i32 %80, 1 + %82 = sext i32 %81 to i64 + %83 = getelementptr inbounds i32, ptr %79, i64 %82 + %84 = load i32, ptr %83, align 4 + br label %86 + +85: ; preds = %71 + br label %86 + +86: ; preds = %85, %75 + %87 = phi i32 [ %84, %75 ], [ 0, %85 ] + store i32 %87, ptr %10, align 4 + %88 = load i32, ptr %9, align 4 + %89 = load i32, ptr %10, align 4 + %90 = add nsw i32 %88, %89 + %91 = load i32, ptr %7, align 4 + %92 = sext i32 %91 to i64 + %93 = mul nsw i64 %92, %18 + %94 = getelementptr inbounds i32, ptr %21, i64 %93 + %95 = load i32, ptr %8, align 4 + %96 = sext i32 %95 to i64 + %97 = getelementptr inbounds i32, ptr %94, i64 %96 + store i32 %90, ptr %97, align 4 + br label %98 + +98: ; preds = %86 + %99 = load i32, ptr %8, align 4 + %100 = add nsw i32 %99, 1 + store i32 %100, ptr %8, align 4 + br label %42, !llvm.loop !8 + +101: ; preds = %42 + br label %102 + +102: ; preds = %101 + %103 = load i32, ptr %7, align 4 + %104 = add nsw i32 %103, 1 + store i32 %104, ptr %7, align 4 + br label %36, !llvm.loop !9 + +105: ; preds = %36 + %106 = load i32, ptr %6, align 4 + %107 = sext i32 %106 to i64 + %108 = mul nsw i64 %107, %18 + %109 = getelementptr inbounds i32, ptr %21, i64 %108 + %110 = load i32, ptr %5, align 4 + %111 = sub nsw i32 %110, 1 + %112 = sext i32 %111 to i64 + %113 = getelementptr inbounds i32, ptr %109, i64 %112 + %114 = load i32, ptr %113, align 4 + %115 = load ptr, ptr %11, align 8 + call void @llvm.stackrestore(ptr %115) + ret i32 %114 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #2 { + %1 = alloca i32, align 4 + %2 = alloca [3 x i32], align 4 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %2, ptr align 4 @__const.main.arr, i64 12, i1 false) + store i32 3, ptr %3, align 4 + store i32 4, ptr %4, align 4 + %5 = getelementptr inbounds [3 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + %7 = load i32, ptr %4, align 4 + %8 = call noundef i32 @_Z5countPiii(ptr noundef %5, i32 noundef %6, i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %8) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 + +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 = { nocallback nofree nosync nounwind willreturn } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/collect-maximum-points-in-a-grid-using-two-traversals.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/collect-maximum-points-in-a-grid-using-two-traversals.ll new file mode 100644 index 000000000..336c1ba3e --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/collect-maximum-points-in-a-grid-using-two-traversals.ll @@ -0,0 +1,462 @@ +; ModuleID = 'PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp' +source_filename = "PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +$_ZSt3maxIiERKT_S2_S2_ = comdat any + +@__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 global %"class.std::basic_ostream", align 8 +@.str = private unnamed_addr constant [23 x i8] c"Maximum collection is \00", align 1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z7isValidiii(i32 noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store i32 %0, ptr %4, align 4 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load i32, ptr %4, align 4 + %8 = icmp sge i32 %7, 0 + br i1 %8, label %9, label %24 + +9: ; preds = %3 + %10 = load i32, ptr %4, align 4 + %11 = icmp slt i32 %10, 5 + br i1 %11, label %12, label %24 + +12: ; preds = %9 + %13 = load i32, ptr %5, align 4 + %14 = icmp sge i32 %13, 0 + br i1 %14, label %15, label %24 + +15: ; preds = %12 + %16 = load i32, ptr %5, align 4 + %17 = icmp slt i32 %16, 4 + br i1 %17, label %18, label %24 + +18: ; preds = %15 + %19 = load i32, ptr %6, align 4 + %20 = icmp sge i32 %19, 0 + br i1 %20, label %21, label %24 + +21: ; preds = %18 + %22 = load i32, ptr %6, align 4 + %23 = icmp slt i32 %22, 4 + br label %24 + +24: ; preds = %21, %18, %15, %12, %9, %3 + %25 = phi i1 [ false, %18 ], [ false, %15 ], [ false, %12 ], [ false, %9 ], [ false, %3 ], [ %23, %21 ] + ret i1 %25 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii(ptr noundef %0, ptr noundef %1, i32 noundef %2, i32 noundef %3, i32 noundef %4) #1 { + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + %15 = alloca i32, align 4 + %16 = alloca i32, align 4 + %17 = alloca i32, align 4 + %18 = alloca i32, align 4 + %19 = alloca i32, align 4 + %20 = alloca i32, align 4 + %21 = alloca i32, align 4 + %22 = alloca i32, align 4 + store ptr %0, ptr %7, align 8 + store ptr %1, ptr %8, align 8 + store i32 %2, ptr %9, align 4 + store i32 %3, ptr %10, align 4 + store i32 %4, ptr %11, align 4 + %23 = load i32, ptr %9, align 4 + %24 = load i32, ptr %10, align 4 + %25 = load i32, ptr %11, align 4 + %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 + store i32 -2147483648, ptr %6, align 4 + br label %254 + +28: ; preds = %5 + %29 = load i32, ptr %9, align 4 + %30 = icmp eq i32 %29, 4 + br i1 %30, label %31, label %70 + +31: ; preds = %28 + %32 = load i32, ptr %10, align 4 + %33 = icmp eq i32 %32, 0 + br i1 %33, label %34, label %70 + +34: ; preds = %31 + %35 = load i32, ptr %11, align 4 + %36 = icmp eq i32 %35, 3 + br i1 %36, label %37, label %70 + +37: ; preds = %34 + %38 = load i32, ptr %10, align 4 + %39 = load i32, ptr %11, align 4 + %40 = icmp eq i32 %38, %39 + br i1 %40, label %41, label %50 + +41: ; preds = %37 + %42 = load ptr, ptr %7, align 8 + %43 = load i32, ptr %9, align 4 + %44 = sext i32 %43 to i64 + %45 = getelementptr inbounds [4 x i32], ptr %42, i64 %44 + %46 = load i32, ptr %10, align 4 + %47 = sext i32 %46 to i64 + %48 = getelementptr inbounds [4 x i32], ptr %45, i64 0, i64 %47 + %49 = load i32, ptr %48, align 4 + br label %68 + +50: ; preds = %37 + %51 = load ptr, ptr %7, align 8 + %52 = load i32, ptr %9, align 4 + %53 = sext i32 %52 to i64 + %54 = getelementptr inbounds [4 x i32], ptr %51, i64 %53 + %55 = load i32, ptr %10, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds [4 x i32], ptr %54, i64 0, i64 %56 + %58 = load i32, ptr %57, align 4 + %59 = load ptr, ptr %7, align 8 + %60 = load i32, ptr %9, align 4 + %61 = sext i32 %60 to i64 + %62 = getelementptr inbounds [4 x i32], ptr %59, i64 %61 + %63 = load i32, ptr %11, align 4 + %64 = sext i32 %63 to i64 + %65 = getelementptr inbounds [4 x i32], ptr %62, i64 0, i64 %64 + %66 = load i32, ptr %65, align 4 + %67 = add nsw i32 %58, %66 + br label %68 + +68: ; preds = %50, %41 + %69 = phi i32 [ %49, %41 ], [ %67, %50 ] + store i32 %69, ptr %6, align 4 + br label %254 + +70: ; preds = %34, %31, %28 + %71 = load i32, ptr %9, align 4 + %72 = icmp eq i32 %71, 4 + br i1 %72, label %73, label %74 + +73: ; preds = %70 + store i32 -2147483648, ptr %6, align 4 + br label %254 + +74: ; preds = %70 + %75 = load ptr, ptr %8, align 8 + %76 = load i32, ptr %9, align 4 + %77 = sext i32 %76 to i64 + %78 = getelementptr inbounds [4 x [4 x i32]], ptr %75, i64 %77 + %79 = load i32, ptr %10, align 4 + %80 = sext i32 %79 to i64 + %81 = getelementptr inbounds [4 x [4 x i32]], ptr %78, i64 0, i64 %80 + %82 = load i32, ptr %11, align 4 + %83 = sext i32 %82 to i64 + %84 = getelementptr inbounds [4 x i32], ptr %81, i64 0, i64 %83 + %85 = load i32, ptr %84, align 4 + %86 = icmp ne i32 %85, -1 + br i1 %86, label %87, label %99 + +87: ; preds = %74 + %88 = load ptr, ptr %8, align 8 + %89 = load i32, ptr %9, align 4 + %90 = sext i32 %89 to i64 + %91 = getelementptr inbounds [4 x [4 x i32]], ptr %88, i64 %90 + %92 = load i32, ptr %10, align 4 + %93 = sext i32 %92 to i64 + %94 = getelementptr inbounds [4 x [4 x i32]], ptr %91, i64 0, i64 %93 + %95 = load i32, ptr %11, align 4 + %96 = sext i32 %95 to i64 + %97 = getelementptr inbounds [4 x i32], ptr %94, i64 0, i64 %96 + %98 = load i32, ptr %97, align 4 + store i32 %98, ptr %6, align 4 + br label %254 + +99: ; preds = %74 + store i32 -2147483648, ptr %12, align 4 + %100 = load i32, ptr %10, align 4 + %101 = load i32, ptr %11, align 4 + %102 = icmp eq i32 %100, %101 + br i1 %102, label %103, label %112 + +103: ; preds = %99 + %104 = load ptr, ptr %7, align 8 + %105 = load i32, ptr %9, align 4 + %106 = sext i32 %105 to i64 + %107 = getelementptr inbounds [4 x i32], ptr %104, i64 %106 + %108 = load i32, ptr %10, align 4 + %109 = sext i32 %108 to i64 + %110 = getelementptr inbounds [4 x i32], ptr %107, i64 0, i64 %109 + %111 = load i32, ptr %110, align 4 + br label %130 + +112: ; preds = %99 + %113 = load ptr, ptr %7, align 8 + %114 = load i32, ptr %9, align 4 + %115 = sext i32 %114 to i64 + %116 = getelementptr inbounds [4 x i32], ptr %113, i64 %115 + %117 = load i32, ptr %10, align 4 + %118 = sext i32 %117 to i64 + %119 = getelementptr inbounds [4 x i32], ptr %116, i64 0, i64 %118 + %120 = load i32, ptr %119, align 4 + %121 = load ptr, ptr %7, align 8 + %122 = load i32, ptr %9, align 4 + %123 = sext i32 %122 to i64 + %124 = getelementptr inbounds [4 x i32], ptr %121, i64 %123 + %125 = load i32, ptr %11, align 4 + %126 = sext i32 %125 to i64 + %127 = getelementptr inbounds [4 x i32], ptr %124, i64 0, i64 %126 + %128 = load i32, ptr %127, align 4 + %129 = add nsw i32 %120, %128 + br label %130 + +130: ; preds = %112, %103 + %131 = phi i32 [ %111, %103 ], [ %129, %112 ] + store i32 %131, ptr %13, align 4 + %132 = load i32, ptr %13, align 4 + %133 = load ptr, ptr %7, align 8 + %134 = load ptr, ptr %8, align 8 + %135 = load i32, ptr %9, align 4 + %136 = add nsw i32 %135, 1 + %137 = load i32, ptr %10, align 4 + %138 = load i32, ptr %11, align 4 + %139 = sub nsw i32 %138, 1 + %140 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii(ptr noundef %133, ptr noundef %134, i32 noundef %136, i32 noundef %137, i32 noundef %139) + %141 = add nsw i32 %132, %140 + store i32 %141, ptr %14, align 4 + %142 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %12, ptr noundef nonnull align 4 dereferenceable(4) %14) + %143 = load i32, ptr %142, align 4 + store i32 %143, ptr %12, align 4 + %144 = load i32, ptr %13, align 4 + %145 = load ptr, ptr %7, align 8 + %146 = load ptr, ptr %8, align 8 + %147 = load i32, ptr %9, align 4 + %148 = add nsw i32 %147, 1 + %149 = load i32, ptr %10, align 4 + %150 = load i32, ptr %11, align 4 + %151 = add nsw i32 %150, 1 + %152 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii(ptr noundef %145, ptr noundef %146, i32 noundef %148, i32 noundef %149, i32 noundef %151) + %153 = add nsw i32 %144, %152 + store i32 %153, ptr %15, align 4 + %154 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %12, ptr noundef nonnull align 4 dereferenceable(4) %15) + %155 = load i32, ptr %154, align 4 + store i32 %155, ptr %12, align 4 + %156 = load i32, ptr %13, align 4 + %157 = load ptr, ptr %7, align 8 + %158 = load ptr, ptr %8, align 8 + %159 = load i32, ptr %9, align 4 + %160 = add nsw i32 %159, 1 + %161 = load i32, ptr %10, align 4 + %162 = load i32, ptr %11, align 4 + %163 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii(ptr noundef %157, ptr noundef %158, i32 noundef %160, i32 noundef %161, i32 noundef %162) + %164 = add nsw i32 %156, %163 + store i32 %164, ptr %16, align 4 + %165 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %12, ptr noundef nonnull align 4 dereferenceable(4) %16) + %166 = load i32, ptr %165, align 4 + store i32 %166, ptr %12, align 4 + %167 = load i32, ptr %13, align 4 + %168 = load ptr, ptr %7, align 8 + %169 = load ptr, ptr %8, align 8 + %170 = load i32, ptr %9, align 4 + %171 = add nsw i32 %170, 1 + %172 = load i32, ptr %10, align 4 + %173 = sub nsw i32 %172, 1 + %174 = load i32, ptr %11, align 4 + %175 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii(ptr noundef %168, ptr noundef %169, i32 noundef %171, i32 noundef %173, i32 noundef %174) + %176 = add nsw i32 %167, %175 + store i32 %176, ptr %17, align 4 + %177 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %12, ptr noundef nonnull align 4 dereferenceable(4) %17) + %178 = load i32, ptr %177, align 4 + store i32 %178, ptr %12, align 4 + %179 = load i32, ptr %13, align 4 + %180 = load ptr, ptr %7, align 8 + %181 = load ptr, ptr %8, align 8 + %182 = load i32, ptr %9, align 4 + %183 = add nsw i32 %182, 1 + %184 = load i32, ptr %10, align 4 + %185 = sub nsw i32 %184, 1 + %186 = load i32, ptr %11, align 4 + %187 = sub nsw i32 %186, 1 + %188 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii(ptr noundef %180, ptr noundef %181, i32 noundef %183, i32 noundef %185, i32 noundef %187) + %189 = add nsw i32 %179, %188 + store i32 %189, ptr %18, align 4 + %190 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %12, ptr noundef nonnull align 4 dereferenceable(4) %18) + %191 = load i32, ptr %190, align 4 + store i32 %191, ptr %12, align 4 + %192 = load i32, ptr %13, align 4 + %193 = load ptr, ptr %7, align 8 + %194 = load ptr, ptr %8, align 8 + %195 = load i32, ptr %9, align 4 + %196 = add nsw i32 %195, 1 + %197 = load i32, ptr %10, align 4 + %198 = sub nsw i32 %197, 1 + %199 = load i32, ptr %11, align 4 + %200 = add nsw i32 %199, 1 + %201 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii(ptr noundef %193, ptr noundef %194, i32 noundef %196, i32 noundef %198, i32 noundef %200) + %202 = add nsw i32 %192, %201 + store i32 %202, ptr %19, align 4 + %203 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %12, ptr noundef nonnull align 4 dereferenceable(4) %19) + %204 = load i32, ptr %203, align 4 + store i32 %204, ptr %12, align 4 + %205 = load i32, ptr %13, align 4 + %206 = load ptr, ptr %7, align 8 + %207 = load ptr, ptr %8, align 8 + %208 = load i32, ptr %9, align 4 + %209 = add nsw i32 %208, 1 + %210 = load i32, ptr %10, align 4 + %211 = add nsw i32 %210, 1 + %212 = load i32, ptr %11, align 4 + %213 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii(ptr noundef %206, ptr noundef %207, i32 noundef %209, i32 noundef %211, i32 noundef %212) + %214 = add nsw i32 %205, %213 + store i32 %214, ptr %20, align 4 + %215 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %12, ptr noundef nonnull align 4 dereferenceable(4) %20) + %216 = load i32, ptr %215, align 4 + store i32 %216, ptr %12, align 4 + %217 = load i32, ptr %13, align 4 + %218 = load ptr, ptr %7, align 8 + %219 = load ptr, ptr %8, align 8 + %220 = load i32, ptr %9, align 4 + %221 = add nsw i32 %220, 1 + %222 = load i32, ptr %10, align 4 + %223 = add nsw i32 %222, 1 + %224 = load i32, ptr %11, align 4 + %225 = sub nsw i32 %224, 1 + %226 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii(ptr noundef %218, ptr noundef %219, i32 noundef %221, i32 noundef %223, i32 noundef %225) + %227 = add nsw i32 %217, %226 + store i32 %227, ptr %21, align 4 + %228 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %12, ptr noundef nonnull align 4 dereferenceable(4) %21) + %229 = load i32, ptr %228, align 4 + store i32 %229, ptr %12, align 4 + %230 = load i32, ptr %13, align 4 + %231 = load ptr, ptr %7, align 8 + %232 = load ptr, ptr %8, align 8 + %233 = load i32, ptr %9, align 4 + %234 = add nsw i32 %233, 1 + %235 = load i32, ptr %10, align 4 + %236 = add nsw i32 %235, 1 + %237 = load i32, ptr %11, align 4 + %238 = add nsw i32 %237, 1 + %239 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii(ptr noundef %231, ptr noundef %232, i32 noundef %234, i32 noundef %236, i32 noundef %238) + %240 = add nsw i32 %230, %239 + store i32 %240, ptr %22, align 4 + %241 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %12, ptr noundef nonnull align 4 dereferenceable(4) %22) + %242 = load i32, ptr %241, align 4 + store i32 %242, ptr %12, align 4 + %243 = load i32, ptr %12, align 4 + %244 = load ptr, ptr %8, align 8 + %245 = load i32, ptr %9, align 4 + %246 = sext i32 %245 to i64 + %247 = getelementptr inbounds [4 x [4 x i32]], ptr %244, i64 %246 + %248 = load i32, ptr %10, align 4 + %249 = sext i32 %248 to i64 + %250 = getelementptr inbounds [4 x [4 x i32]], ptr %247, i64 0, i64 %249 + %251 = load i32, ptr %11, align 4 + %252 = sext i32 %251 to i64 + %253 = getelementptr inbounds [4 x i32], ptr %250, i64 0, i64 %252 + store i32 %243, ptr %253, align 4 + store i32 %243, ptr %6, align 4 + br label %254 + +254: ; preds = %130, %87, %73, %68, %27 + %255 = load i32, ptr %6, align 4 + ret i32 %255 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z15geMaxCollectionPA4_i(ptr noundef %0) #1 { + %2 = alloca ptr, align 8 + %3 = alloca [5 x [4 x [4 x i32]]], align 16 + store ptr %0, ptr %2, align 8 + %4 = getelementptr inbounds [5 x [4 x [4 x i32]]], ptr %3, i64 0, i64 0 + call void @llvm.memset.p0.i64(ptr align 16 %4, i8 -1, i64 320, i1 false) + %5 = load ptr, ptr %2, align 8 + %6 = getelementptr inbounds [5 x [4 x [4 x i32]]], ptr %3, i64 0, i64 0 + %7 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii(ptr noundef %5, ptr noundef %6, i32 noundef 0, i32 noundef 0, i32 noundef 3) + ret i32 %7 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [5 x [4 x i32]], align 16 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 80, i1 false) + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %4 = getelementptr inbounds [5 x [4 x i32]], ptr %2, i64 0, i64 0 + %5 = call noundef i32 @_Z15geMaxCollectionPA4_i(ptr noundef %4) + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %3, i32 noundef %5) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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" } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/construction-of-lcp-array-from-suffix-array.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/construction-of-lcp-array-from-suffix-array.ll new file mode 100644 index 000000000..265d9a2d4 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/construction-of-lcp-array-from-suffix-array.ll @@ -0,0 +1,4498 @@ +; ModuleID = 'PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp' +source_filename = "PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%struct.suffix = type { i32, [2 x i32] } +%"class.std::vector" = type { %"struct.std::_Vector_base" } +%"struct.std::_Vector_base" = type { %"struct.std::_Vector_base>::_Vector_impl" } +%"struct.std::_Vector_base>::_Vector_impl" = type { %"struct.std::_Vector_base>::_Vector_impl_data" } +%"struct.std::_Vector_base>::_Vector_impl_data" = type { ptr, ptr, ptr } +%"struct.__gnu_cxx::__ops::_Iter_comp_iter" = type { ptr } +%"class.__gnu_cxx::__normal_iterator" = type { ptr } +%"class.std::allocator" = type { i8 } +%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } +%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } +%union.anon = type { i64, [8 x i8] } +%"class.std::allocator.0" = type { i8 } +%"struct.std::forward_iterator_tag" = type { i8 } +%"class.__gnu_cxx::__normal_iterator.3" = type { ptr } +%struct._Guard = type { ptr } +%"struct.__gnu_cxx::__ops::_Iter_comp_val" = type { ptr } +%"struct.__gnu_cxx::__ops::_Val_comp_iter" = type { ptr } +%"struct.std::random_access_iterator_tag" = type { i8 } + +$_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_ = comdat any + +$_ZNSt6vectorIiSaIiEEC2Ev = comdat any + +$_ZNSt6vectorIiSaIiEE9push_backERKi = comdat any + +$_ZNSt6vectorIiSaIiEED2Ev = comdat any + +$_ZNKSt6vectorIiSaIiEE4sizeEv = comdat any + +$_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_ = comdat any + +$_ZNSt6vectorIiSaIiEEixEm = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any + +$_ZNSt6vectorIiSaIiEEC2ERKS1_ = comdat any + +$_ZNSt12_Vector_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev = comdat any + +$_ZNSt15__new_allocatorIcED2Ev = comdat any + +$_ZNSt11char_traitsIcE6lengthEPKc = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt15__new_allocatorIiED2Ev = comdat any + +$_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any + +$_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFi6suffixS2_EEENS0_15_Iter_comp_iterIT_EES6_ = comdat any + +$_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_T1_ = comdat any + +$_ZSt4__lgIlET_S0_ = comdat any + +$_ZSt22__final_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any + +$_ZSt14__partial_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_ = comdat any + +$_ZSt27__unguarded_partition_pivotIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_T0_ = comdat any + +$_ZSt13__heap_selectIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_ = comdat any + +$_ZSt11__sort_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_ = comdat any + +$_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_ = comdat any + +$_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_ = comdat any + +$_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_RT0_ = comdat any + +$_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_T0_S9_T1_T2_ = comdat any + +$_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE = comdat any + +$_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFiS0_S0_EEEEvT_T0_S9_T1_RT2_ = comdat any + +$_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEclIPS2_S2_EEbT_RT0_ = comdat any + +$_ZSt22__move_median_to_firstIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_S8_T0_ = comdat any + +$_ZSt21__unguarded_partitionIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_S8_T0_ = comdat any + +$_ZSt9iter_swapIP6suffixS1_EvT_T0_ = comdat any + +$_ZSt4swapI6suffixENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_ = comdat any + +$_ZSt11__bit_widthImEiT_ = comdat any + +$_ZSt13__countl_zeroImEiT_ = comdat any + +$_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any + +$_ZSt26__unguarded_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any + +$_ZSt13move_backwardIP6suffixS1_ET0_T_S3_S2_ = comdat any + +$_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_ = comdat any + +$_ZN9__gnu_cxx5__ops15__val_comp_iterIPFi6suffixS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE = comdat any + +$_ZSt22__copy_move_backward_aILb1EP6suffixS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__miter_baseIP6suffixET_S2_ = comdat any + +$_ZSt12__niter_wrapIP6suffixET_RKS2_S2_ = comdat any + +$_ZSt23__copy_move_backward_a1ILb1EP6suffixS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__niter_baseIP6suffixET_S2_ = comdat any + +$_ZSt23__copy_move_backward_a2ILb1EP6suffixS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI6suffixS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneI6suffixS3_EEvPT_PT0_ = comdat any + +$_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEclIS2_PS2_EEbRT_T0_ = comdat any + +$_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE = comdat any + +$_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEC2ES4_ = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$_ZNSt12_Vector_baseIiSaIiEED2Ev = comdat any + +$_ZSt8_DestroyIPiEvT_S1_ = comdat any + +$_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_ = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev = comdat any + +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any + +$_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_ = comdat any + +$_ZNSt6vectorIiSaIiEE3endEv = comdat any + +$_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc = comdat any + +$_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_ = comdat any + +$_ZNSt6vectorIiSaIiEE5beginEv = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm = comdat any + +$_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_ = comdat any + +$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv = comdat any + +$_ZNKSt6vectorIiSaIiEE8max_sizeEv = comdat any + +$_ZSt3maxImERKT_S2_S2_ = comdat any + +$_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_ = comdat any + +$_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$_ZSt3minImERKT_S2_S2_ = comdat any + +$_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_ = comdat any + +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any + +$_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_ = comdat any + +$_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E = comdat any + +$_ZSt12__niter_baseIPiET_S1_ = comdat any + +$_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_ = comdat any + +$_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_ = comdat any + +$_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRKi = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_ = comdat any + +$_ZNSt12_Vector_baseIiSaIiEE17_M_create_storageEm = comdat any + +$_ZSt24__uninitialized_fill_n_aIPimiiET_S1_T0_RKT1_RSaIT2_E = comdat any + +$_ZSt20uninitialized_fill_nIPimiET_S1_T0_RKT1_ = comdat any + +$_ZNSt22__uninitialized_fill_nILb1EE15__uninit_fill_nIPimiEET_S3_T0_RKT1_ = comdat any + +$_ZSt6fill_nIPimiET_S1_T0_RKT1_ = comdat any + +$_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26random_access_iterator_tag = comdat any + +$_ZSt17__size_to_integerm = comdat any + +$_ZSt8__fill_aIPiiEvT_S1_RKT0_ = comdat any + +$_ZSt9__fill_a1IPiiEN9__gnu_cxx11__enable_ifIXsr11__is_scalarIT0_EE7__valueEvE6__typeET_S6_RKS3_ = comdat any + +$_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiiET0_T_SA_S9_RSaIT1_E = comdat any + +$_ZNKSt6vectorIiSaIiEE5beginEv = comdat any + +$_ZNKSt6vectorIiSaIiEE3endEv = comdat any + +$_ZSt18uninitialized_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_ = comdat any + +$_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiEET0_T_SC_SB_ = comdat any + +$_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_ = comdat any + +$_ZSt13__copy_move_aILb0EN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET1_T0_SA_S9_ = comdat any + +$_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEET_S8_ = comdat any + +$_ZSt12__niter_wrapIPiET_RKS1_S1_ = comdat any + +$_ZSt14__copy_move_a1ILb0EPKiPiET1_T0_S4_S3_ = comdat any + +$_ZSt12__niter_baseIPKiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS5_T0_EE = comdat any + +$_ZSt14__copy_move_a2ILb0EPKiPiET1_T0_S4_S3_ = comdat any + +$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIKiiEEPT0_PT_S7_S5_ = comdat any + +$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIiKiEEvPT_PT0_ = comdat any + +$_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv = comdat any + +$_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_ = comdat any + +@_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 +@.str.3 = private unnamed_addr constant [15 x i8] c"\0ALCP Array : \0A\00", align 1 +@.str.4 = private unnamed_addr constant [50 x i8] c"basic_string: construction from null is not valid\00", align 1 +@.str.5 = private unnamed_addr constant [26 x i8] c"vector::_M_realloc_insert\00", align 1 +@.str.6 = private unnamed_addr constant [49 x i8] c"cannot create std::vector larger than max_size()\00", align 1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3cmp6suffixS_(i64 %0, i32 %1, i64 %2, i32 %3) #0 { + %5 = alloca %struct.suffix, align 4 + %6 = alloca { i64, i32 }, align 4 + %7 = alloca %struct.suffix, align 4 + %8 = alloca { i64, i32 }, align 4 + %9 = getelementptr inbounds { i64, i32 }, ptr %6, i32 0, i32 0 + store i64 %0, ptr %9, align 4 + %10 = getelementptr inbounds { i64, i32 }, ptr %6, i32 0, i32 1 + store i32 %1, ptr %10, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %5, ptr align 4 %6, i64 12, i1 false) + %11 = getelementptr inbounds { i64, i32 }, ptr %8, i32 0, i32 0 + store i64 %2, ptr %11, align 4 + %12 = getelementptr inbounds { i64, i32 }, ptr %8, i32 0, i32 1 + store i32 %3, ptr %12, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %7, ptr align 4 %8, i64 12, i1 false) + %13 = getelementptr inbounds %struct.suffix, ptr %5, i32 0, i32 1 + %14 = getelementptr inbounds [2 x i32], ptr %13, i64 0, i64 0 + %15 = load i32, ptr %14, align 4 + %16 = getelementptr inbounds %struct.suffix, ptr %7, i32 0, i32 1 + %17 = getelementptr inbounds [2 x i32], ptr %16, i64 0, i64 0 + %18 = load i32, ptr %17, align 4 + %19 = icmp eq i32 %15, %18 + br i1 %19, label %20, label %30 + +20: ; preds = %4 + %21 = getelementptr inbounds %struct.suffix, ptr %5, i32 0, i32 1 + %22 = getelementptr inbounds [2 x i32], ptr %21, i64 0, i64 1 + %23 = load i32, ptr %22, align 4 + %24 = getelementptr inbounds %struct.suffix, ptr %7, i32 0, i32 1 + %25 = getelementptr inbounds [2 x i32], ptr %24, i64 0, i64 1 + %26 = load i32, ptr %25, align 4 + %27 = icmp slt i32 %23, %26 + %28 = zext i1 %27 to i64 + %29 = select i1 %27, i32 1, i32 0 + br label %40 + +30: ; preds = %4 + %31 = getelementptr inbounds %struct.suffix, ptr %5, i32 0, i32 1 + %32 = getelementptr inbounds [2 x i32], ptr %31, i64 0, i64 0 + %33 = load i32, ptr %32, align 4 + %34 = getelementptr inbounds %struct.suffix, ptr %7, i32 0, i32 1 + %35 = getelementptr inbounds [2 x i32], ptr %34, i64 0, i64 0 + %36 = load i32, ptr %35, align 4 + %37 = icmp slt i32 %33, %36 + %38 = zext i1 %37 to i64 + %39 = select i1 %37, i32 1, i32 0 + br label %40 + +40: ; preds = %30, %20 + %41 = phi i32 [ %29, %20 ], [ %39, %30 ] + ret i32 %41 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(ptr noalias sret(%"class.std::vector") align 8 %0, ptr noundef %1, i32 noundef %2) #2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca i32, align 4 + %9 = alloca i64, align 8 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + %15 = alloca i32, align 4 + %16 = alloca i1, align 1 + %17 = alloca i32, align 4 + %18 = alloca ptr, align 8 + %19 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %2, ptr %5, align 4 + %20 = load i32, ptr %5, align 4 + %21 = zext i32 %20 to i64 + %22 = call ptr @llvm.stacksave() + store ptr %22, ptr %6, align 8 + %23 = alloca %struct.suffix, i64 %21, align 16 + store i64 %21, ptr %7, align 8 + store i32 0, ptr %8, align 4 + br label %24 + +24: ; preds = %65, %3 + %25 = load i32, ptr %8, align 4 + %26 = load i32, ptr %5, align 4 + %27 = icmp slt i32 %25, %26 + br i1 %27, label %28, label %68 + +28: ; preds = %24 + %29 = load i32, ptr %8, align 4 + %30 = load i32, ptr %8, align 4 + %31 = sext i32 %30 to i64 + %32 = getelementptr inbounds %struct.suffix, ptr %23, i64 %31 + %33 = getelementptr inbounds %struct.suffix, ptr %32, i32 0, i32 0 + store i32 %29, ptr %33, align 4 + %34 = load i32, ptr %8, align 4 + %35 = sext i32 %34 to i64 + %36 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %35) + %37 = load i8, ptr %36, align 1 + %38 = sext i8 %37 to i32 + %39 = sub nsw i32 %38, 97 + %40 = load i32, ptr %8, align 4 + %41 = sext i32 %40 to i64 + %42 = getelementptr inbounds %struct.suffix, ptr %23, i64 %41 + %43 = getelementptr inbounds %struct.suffix, ptr %42, i32 0, i32 1 + %44 = getelementptr inbounds [2 x i32], ptr %43, i64 0, i64 0 + store i32 %39, ptr %44, align 4 + %45 = load i32, ptr %8, align 4 + %46 = add nsw i32 %45, 1 + %47 = load i32, ptr %5, align 4 + %48 = icmp slt i32 %46, %47 + br i1 %48, label %49, label %57 + +49: ; preds = %28 + %50 = load i32, ptr %8, align 4 + %51 = add nsw i32 %50, 1 + %52 = sext i32 %51 to i64 + %53 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %52) + %54 = load i8, ptr %53, align 1 + %55 = sext i8 %54 to i32 + %56 = sub nsw i32 %55, 97 + br label %58 + +57: ; preds = %28 + br label %58 + +58: ; preds = %57, %49 + %59 = phi i32 [ %56, %49 ], [ -1, %57 ] + %60 = load i32, ptr %8, align 4 + %61 = sext i32 %60 to i64 + %62 = getelementptr inbounds %struct.suffix, ptr %23, i64 %61 + %63 = getelementptr inbounds %struct.suffix, ptr %62, i32 0, i32 1 + %64 = getelementptr inbounds [2 x i32], ptr %63, i64 0, i64 1 + store i32 %59, ptr %64, align 4 + br label %65 + +65: ; preds = %58 + %66 = load i32, ptr %8, align 4 + %67 = add nsw i32 %66, 1 + store i32 %67, ptr %8, align 4 + br label %24, !llvm.loop !6 + +68: ; preds = %24 + %69 = load i32, ptr %5, align 4 + %70 = sext i32 %69 to i64 + %71 = getelementptr inbounds %struct.suffix, ptr %23, i64 %70 + call void @_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_(ptr noundef %23, ptr noundef %71, ptr noundef @_Z3cmp6suffixS_) + %72 = load i32, ptr %5, align 4 + %73 = zext i32 %72 to i64 + %74 = alloca i32, i64 %73, align 16 + store i64 %73, ptr %9, align 8 + store i32 4, ptr %10, align 4 + br label %75 + +75: ; preds = %203, %68 + %76 = load i32, ptr %10, align 4 + %77 = load i32, ptr %5, align 4 + %78 = mul nsw i32 2, %77 + %79 = icmp slt i32 %76, %78 + br i1 %79, label %80, label %206 + +80: ; preds = %75 + store i32 0, ptr %11, align 4 + %81 = getelementptr inbounds %struct.suffix, ptr %23, i64 0 + %82 = getelementptr inbounds %struct.suffix, ptr %81, i32 0, i32 1 + %83 = getelementptr inbounds [2 x i32], ptr %82, i64 0, i64 0 + %84 = load i32, ptr %83, align 4 + store i32 %84, ptr %12, align 4 + %85 = load i32, ptr %11, align 4 + %86 = getelementptr inbounds %struct.suffix, ptr %23, i64 0 + %87 = getelementptr inbounds %struct.suffix, ptr %86, i32 0, i32 1 + %88 = getelementptr inbounds [2 x i32], ptr %87, i64 0, i64 0 + store i32 %85, ptr %88, align 4 + %89 = getelementptr inbounds %struct.suffix, ptr %23, i64 0 + %90 = getelementptr inbounds %struct.suffix, ptr %89, i32 0, i32 0 + %91 = load i32, ptr %90, align 16 + %92 = sext i32 %91 to i64 + %93 = getelementptr inbounds i32, ptr %74, i64 %92 + store i32 0, ptr %93, align 4 + store i32 1, ptr %13, align 4 + br label %94 + +94: ; preds = %158, %80 + %95 = load i32, ptr %13, align 4 + %96 = load i32, ptr %5, align 4 + %97 = icmp slt i32 %95, %96 + br i1 %97, label %98, label %161 + +98: ; preds = %94 + %99 = load i32, ptr %13, align 4 + %100 = sext i32 %99 to i64 + %101 = getelementptr inbounds %struct.suffix, ptr %23, i64 %100 + %102 = getelementptr inbounds %struct.suffix, ptr %101, i32 0, i32 1 + %103 = getelementptr inbounds [2 x i32], ptr %102, i64 0, i64 0 + %104 = load i32, ptr %103, align 4 + %105 = load i32, ptr %12, align 4 + %106 = icmp eq i32 %104, %105 + br i1 %106, label %107, label %135 + +107: ; preds = %98 + %108 = load i32, ptr %13, align 4 + %109 = sext i32 %108 to i64 + %110 = getelementptr inbounds %struct.suffix, ptr %23, i64 %109 + %111 = getelementptr inbounds %struct.suffix, ptr %110, i32 0, i32 1 + %112 = getelementptr inbounds [2 x i32], ptr %111, i64 0, i64 1 + %113 = load i32, ptr %112, align 4 + %114 = load i32, ptr %13, align 4 + %115 = sub nsw i32 %114, 1 + %116 = sext i32 %115 to i64 + %117 = getelementptr inbounds %struct.suffix, ptr %23, i64 %116 + %118 = getelementptr inbounds %struct.suffix, ptr %117, i32 0, i32 1 + %119 = getelementptr inbounds [2 x i32], ptr %118, i64 0, i64 1 + %120 = load i32, ptr %119, align 4 + %121 = icmp eq i32 %113, %120 + br i1 %121, label %122, label %135 + +122: ; preds = %107 + %123 = load i32, ptr %13, align 4 + %124 = sext i32 %123 to i64 + %125 = getelementptr inbounds %struct.suffix, ptr %23, i64 %124 + %126 = getelementptr inbounds %struct.suffix, ptr %125, i32 0, i32 1 + %127 = getelementptr inbounds [2 x i32], ptr %126, i64 0, i64 0 + %128 = load i32, ptr %127, align 4 + store i32 %128, ptr %12, align 4 + %129 = load i32, ptr %11, align 4 + %130 = load i32, ptr %13, align 4 + %131 = sext i32 %130 to i64 + %132 = getelementptr inbounds %struct.suffix, ptr %23, i64 %131 + %133 = getelementptr inbounds %struct.suffix, ptr %132, i32 0, i32 1 + %134 = getelementptr inbounds [2 x i32], ptr %133, i64 0, i64 0 + store i32 %129, ptr %134, align 4 + br label %149 + +135: ; preds = %107, %98 + %136 = load i32, ptr %13, align 4 + %137 = sext i32 %136 to i64 + %138 = getelementptr inbounds %struct.suffix, ptr %23, i64 %137 + %139 = getelementptr inbounds %struct.suffix, ptr %138, i32 0, i32 1 + %140 = getelementptr inbounds [2 x i32], ptr %139, i64 0, i64 0 + %141 = load i32, ptr %140, align 4 + store i32 %141, ptr %12, align 4 + %142 = load i32, ptr %11, align 4 + %143 = add nsw i32 %142, 1 + store i32 %143, ptr %11, align 4 + %144 = load i32, ptr %13, align 4 + %145 = sext i32 %144 to i64 + %146 = getelementptr inbounds %struct.suffix, ptr %23, i64 %145 + %147 = getelementptr inbounds %struct.suffix, ptr %146, i32 0, i32 1 + %148 = getelementptr inbounds [2 x i32], ptr %147, i64 0, i64 0 + store i32 %143, ptr %148, align 4 + br label %149 + +149: ; preds = %135, %122 + %150 = load i32, ptr %13, align 4 + %151 = load i32, ptr %13, align 4 + %152 = sext i32 %151 to i64 + %153 = getelementptr inbounds %struct.suffix, ptr %23, i64 %152 + %154 = getelementptr inbounds %struct.suffix, ptr %153, i32 0, i32 0 + %155 = load i32, ptr %154, align 4 + %156 = sext i32 %155 to i64 + %157 = getelementptr inbounds i32, ptr %74, i64 %156 + store i32 %150, ptr %157, align 4 + br label %158 + +158: ; preds = %149 + %159 = load i32, ptr %13, align 4 + %160 = add nsw i32 %159, 1 + store i32 %160, ptr %13, align 4 + br label %94, !llvm.loop !8 + +161: ; preds = %94 + store i32 0, ptr %14, align 4 + br label %162 + +162: ; preds = %196, %161 + %163 = load i32, ptr %14, align 4 + %164 = load i32, ptr %5, align 4 + %165 = icmp slt i32 %163, %164 + br i1 %165, label %166, label %199 + +166: ; preds = %162 + %167 = load i32, ptr %14, align 4 + %168 = sext i32 %167 to i64 + %169 = getelementptr inbounds %struct.suffix, ptr %23, i64 %168 + %170 = getelementptr inbounds %struct.suffix, ptr %169, i32 0, i32 0 + %171 = load i32, ptr %170, align 4 + %172 = load i32, ptr %10, align 4 + %173 = sdiv i32 %172, 2 + %174 = add nsw i32 %171, %173 + store i32 %174, ptr %15, align 4 + %175 = load i32, ptr %15, align 4 + %176 = load i32, ptr %5, align 4 + %177 = icmp slt i32 %175, %176 + br i1 %177, label %178, label %188 + +178: ; preds = %166 + %179 = load i32, ptr %15, align 4 + %180 = sext i32 %179 to i64 + %181 = getelementptr inbounds i32, ptr %74, i64 %180 + %182 = load i32, ptr %181, align 4 + %183 = sext i32 %182 to i64 + %184 = getelementptr inbounds %struct.suffix, ptr %23, i64 %183 + %185 = getelementptr inbounds %struct.suffix, ptr %184, i32 0, i32 1 + %186 = getelementptr inbounds [2 x i32], ptr %185, i64 0, i64 0 + %187 = load i32, ptr %186, align 4 + br label %189 + +188: ; preds = %166 + br label %189 + +189: ; preds = %188, %178 + %190 = phi i32 [ %187, %178 ], [ -1, %188 ] + %191 = load i32, ptr %14, align 4 + %192 = sext i32 %191 to i64 + %193 = getelementptr inbounds %struct.suffix, ptr %23, i64 %192 + %194 = getelementptr inbounds %struct.suffix, ptr %193, i32 0, i32 1 + %195 = getelementptr inbounds [2 x i32], ptr %194, i64 0, i64 1 + store i32 %190, ptr %195, align 4 + br label %196 + +196: ; preds = %189 + %197 = load i32, ptr %14, align 4 + %198 = add nsw i32 %197, 1 + store i32 %198, ptr %14, align 4 + br label %162, !llvm.loop !9 + +199: ; preds = %162 + %200 = load i32, ptr %5, align 4 + %201 = sext i32 %200 to i64 + %202 = getelementptr inbounds %struct.suffix, ptr %23, i64 %201 + call void @_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_(ptr noundef %23, ptr noundef %202, ptr noundef @_Z3cmp6suffixS_) + br label %203 + +203: ; preds = %199 + %204 = load i32, ptr %10, align 4 + %205 = mul nsw i32 %204, 2 + store i32 %205, ptr %10, align 4 + br label %75, !llvm.loop !10 + +206: ; preds = %75 + store i1 false, ptr %16, align 1 + call void @_ZNSt6vectorIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 + store i32 0, ptr %17, align 4 + br label %207 + +207: ; preds = %217, %206 + %208 = load i32, ptr %17, align 4 + %209 = load i32, ptr %5, align 4 + %210 = icmp slt i32 %208, %209 + br i1 %210, label %211, label %224 + +211: ; preds = %207 + %212 = load i32, ptr %17, align 4 + %213 = sext i32 %212 to i64 + %214 = getelementptr inbounds %struct.suffix, ptr %23, i64 %213 + %215 = getelementptr inbounds %struct.suffix, ptr %214, i32 0, i32 0 + invoke void @_ZNSt6vectorIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %215) + to label %216 unwind label %220 + +216: ; preds = %211 + br label %217 + +217: ; preds = %216 + %218 = load i32, ptr %17, align 4 + %219 = add nsw i32 %218, 1 + store i32 %219, ptr %17, align 4 + br label %207, !llvm.loop !11 + +220: ; preds = %211 + %221 = landingpad { ptr, i32 } + cleanup + %222 = extractvalue { ptr, i32 } %221, 0 + store ptr %222, ptr %18, align 8 + %223 = extractvalue { ptr, i32 } %221, 1 + store i32 %223, ptr %19, align 4 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 + br label %229 + +224: ; preds = %207 + store i1 true, ptr %16, align 1 + %225 = load i1, ptr %16, align 1 + br i1 %225, label %227, label %226 + +226: ; preds = %224 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 + br label %227 + +227: ; preds = %226, %224 + %228 = load ptr, ptr %6, align 8 + call void @llvm.stackrestore(ptr %228) + ret void + +229: ; preds = %220 + %230 = load ptr, ptr %18, align 8 + %231 = load i32, ptr %19, align 4 + %232 = insertvalue { ptr, i32 } poison, ptr %230, 0 + %233 = insertvalue { ptr, i32 } %232, i32 %231, 1 + resume { ptr, i32 } %233 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #3 + +declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #4 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call ptr @_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFi6suffixS2_EEENS0_15_Iter_comp_iterIT_EES6_(ptr noundef %10) + %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %7, i32 0, i32 0 + store ptr %11, ptr %12, align 8 + %13 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %7, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(ptr noundef %8, ptr noundef %9, ptr %14) + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt12_Vector_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #2 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %12 = load ptr, ptr %9, align 8 + %13 = getelementptr inbounds %"struct.std::_Vector_base", ptr %12, i32 0, i32 0 + %14 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %13, i32 0, i32 1 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %"struct.std::_Vector_base", ptr %12, i32 0, i32 0 + %17 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %16, i32 0, i32 2 + %18 = load ptr, ptr %17, align 8 + %19 = icmp ne ptr %15, %18 + br i1 %19, label %20, label %37 + +20: ; preds = %2 + %21 = getelementptr inbounds %"struct.std::_Vector_base", ptr %12, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Vector_base", ptr %12, i32 0, i32 0 + %23 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %22, i32 0, i32 1 + %24 = load ptr, ptr %23, align 8 + %25 = load ptr, ptr %10, align 8 + store ptr %21, ptr %6, align 8 + store ptr %24, ptr %7, align 8 + store ptr %25, ptr %8, align 8 + %26 = load ptr, ptr %6, align 8 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %8, align 8 + store ptr %26, ptr %3, align 8 + store ptr %27, ptr %4, align 8 + store ptr %28, ptr %5, align 8 + %29 = load ptr, ptr %3, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + %32 = load i32, ptr %31, align 4 + store i32 %32, ptr %30, align 4 + %33 = getelementptr inbounds %"struct.std::_Vector_base", ptr %12, i32 0, i32 0 + %34 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %33, i32 0, i32 1 + %35 = load ptr, ptr %34, align 8 + %36 = getelementptr inbounds i32, ptr %35, i32 1 + store ptr %36, ptr %34, align 8 + br label %43 + +37: ; preds = %2 + %38 = call ptr @_ZNSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %12) #15 + %39 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %11, i32 0, i32 0 + store ptr %38, ptr %39, align 8 + %40 = load ptr, ptr %10, align 8 + %41 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %11, i32 0, i32 0 + %42 = load ptr, ptr %41, align 8 + call void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr %42, ptr noundef nonnull align 4 dereferenceable(4) %40) + br label %43 + +43: ; preds = %37, %20 + ret void +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::_Vector_base", ptr %6, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::_Vector_base", ptr %6, i32 0, i32 0 + %11 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %10, i32 0, i32 1 + %12 = load ptr, ptr %11, align 8 + %13 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #15 + store ptr %9, ptr %2, align 8 + store ptr %12, ptr %3, align 8 + store ptr %13, ptr %4, align 8 + %14 = load ptr, ptr %2, align 8 + %15 = load ptr, ptr %3, align 8 + invoke void @_ZSt8_DestroyIPiEvT_S1_(ptr noundef %14, ptr noundef %15) + to label %16 unwind label %18 + +16: ; preds = %1 + br label %17 + +17: ; preds = %16 + call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %6) #15 + ret void + +18: ; preds = %1 + %19 = landingpad { ptr, i32 } + catch ptr null + %20 = extractvalue { ptr, i32 } %19, 0 + call void @__clang_call_terminate(ptr %20) #16 + unreachable +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #3 + +; Function Attrs: noinline uwtable +define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt6vectorIiSaIiEE(ptr noalias sret(%"class.std::vector") align 8 %0, ptr noundef %1, ptr noundef %2) #6 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca i32, align 4 + %14 = alloca i1, align 1 + %15 = alloca i32, align 4 + %16 = alloca %"class.std::allocator", align 1 + %17 = alloca ptr, align 8 + %18 = alloca i32, align 4 + %19 = alloca %"class.std::vector", align 8 + %20 = alloca i32, align 4 + %21 = alloca %"class.std::allocator", align 1 + %22 = alloca i32, align 4 + %23 = alloca i32, align 4 + %24 = alloca i32, align 4 + %25 = alloca i32, align 4 + store ptr %0, ptr %12, align 8 + %26 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %2) #15 + %27 = trunc i64 %26 to i32 + store i32 %27, ptr %13, align 4 + store i1 false, ptr %14, align 1 + %28 = load i32, ptr %13, align 4 + %29 = sext i32 %28 to i64 + store i32 0, ptr %15, align 4 + store ptr %16, ptr %11, align 8 + %30 = load ptr, ptr %11, align 8 + store ptr %30, ptr %4, align 8 + %31 = load ptr, ptr %4, align 8 + invoke void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %29, ptr noundef nonnull align 4 dereferenceable(4) %15, ptr noundef nonnull align 1 dereferenceable(1) %16) + to label %32 unwind label %55 + +32: ; preds = %3 + store ptr %16, ptr %9, align 8 + %33 = load ptr, ptr %9, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %33) #15 + %34 = load i32, ptr %13, align 4 + %35 = sext i32 %34 to i64 + store i32 0, ptr %20, align 4 + store ptr %21, ptr %10, align 8 + %36 = load ptr, ptr %10, align 8 + store ptr %36, ptr %5, align 8 + %37 = load ptr, ptr %5, align 8 + invoke void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(ptr noundef nonnull align 8 dereferenceable(24) %19, i64 noundef %35, ptr noundef nonnull align 4 dereferenceable(4) %20, ptr noundef nonnull align 1 dereferenceable(1) %21) + to label %38 unwind label %60 + +38: ; preds = %32 + store ptr %21, ptr %7, align 8 + %39 = load ptr, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %39) #15 + store i32 0, ptr %22, align 4 + br label %40 + +40: ; preds = %52, %38 + %41 = load i32, ptr %22, align 4 + %42 = load i32, ptr %13, align 4 + %43 = icmp slt i32 %41, %42 + br i1 %43, label %44, label %65 + +44: ; preds = %40 + %45 = load i32, ptr %22, align 4 + %46 = load i32, ptr %22, align 4 + %47 = sext i32 %46 to i64 + %48 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %2, i64 noundef %47) #15 + %49 = load i32, ptr %48, align 4 + %50 = sext i32 %49 to i64 + %51 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %19, i64 noundef %50) #15 + store i32 %45, ptr %51, align 4 + br label %52 + +52: ; preds = %44 + %53 = load i32, ptr %22, align 4 + %54 = add nsw i32 %53, 1 + store i32 %54, ptr %22, align 4 + br label %40, !llvm.loop !12 + +55: ; preds = %3 + %56 = landingpad { ptr, i32 } + cleanup + %57 = extractvalue { ptr, i32 } %56, 0 + store ptr %57, ptr %17, align 8 + %58 = extractvalue { ptr, i32 } %56, 1 + store i32 %58, ptr %18, align 4 + store ptr %16, ptr %8, align 8 + %59 = load ptr, ptr %8, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %59) #15 + br label %149 + +60: ; preds = %32 + %61 = landingpad { ptr, i32 } + cleanup + %62 = extractvalue { ptr, i32 } %61, 0 + store ptr %62, ptr %17, align 8 + %63 = extractvalue { ptr, i32 } %61, 1 + store i32 %63, ptr %18, align 4 + store ptr %21, ptr %6, align 8 + %64 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %64) #15 + br label %148 + +65: ; preds = %40 + store i32 0, ptr %23, align 4 + store i32 0, ptr %24, align 4 + br label %66 + +66: ; preds = %141, %65 + %67 = load i32, ptr %24, align 4 + %68 = load i32, ptr %13, align 4 + %69 = icmp slt i32 %67, %68 + br i1 %69, label %70, label %144 + +70: ; preds = %66 + %71 = load i32, ptr %24, align 4 + %72 = sext i32 %71 to i64 + %73 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %19, i64 noundef %72) #15 + %74 = load i32, ptr %73, align 4 + %75 = load i32, ptr %13, align 4 + %76 = sub nsw i32 %75, 1 + %77 = icmp eq i32 %74, %76 + br i1 %77, label %78, label %79 + +78: ; preds = %70 + store i32 0, ptr %23, align 4 + br label %141 + +79: ; preds = %70 + %80 = load i32, ptr %24, align 4 + %81 = sext i32 %80 to i64 + %82 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %19, i64 noundef %81) #15 + %83 = load i32, ptr %82, align 4 + %84 = add nsw i32 %83, 1 + %85 = sext i32 %84 to i64 + %86 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %2, i64 noundef %85) #15 + %87 = load i32, ptr %86, align 4 + store i32 %87, ptr %25, align 4 + br label %88 + +88: ; preds = %120, %79 + %89 = load i32, ptr %24, align 4 + %90 = load i32, ptr %23, align 4 + %91 = add nsw i32 %89, %90 + %92 = load i32, ptr %13, align 4 + %93 = icmp slt i32 %91, %92 + br i1 %93, label %94, label %118 + +94: ; preds = %88 + %95 = load i32, ptr %25, align 4 + %96 = load i32, ptr %23, align 4 + %97 = add nsw i32 %95, %96 + %98 = load i32, ptr %13, align 4 + %99 = icmp slt i32 %97, %98 + br i1 %99, label %100, label %118 + +100: ; preds = %94 + %101 = load i32, ptr %24, align 4 + %102 = load i32, ptr %23, align 4 + %103 = add nsw i32 %101, %102 + %104 = sext i32 %103 to i64 + %105 = invoke noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %104) + to label %106 unwind label %123 + +106: ; preds = %100 + %107 = load i8, ptr %105, align 1 + %108 = sext i8 %107 to i32 + %109 = load i32, ptr %25, align 4 + %110 = load i32, ptr %23, align 4 + %111 = add nsw i32 %109, %110 + %112 = sext i32 %111 to i64 + %113 = invoke noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %112) + to label %114 unwind label %123 + +114: ; preds = %106 + %115 = load i8, ptr %113, align 1 + %116 = sext i8 %115 to i32 + %117 = icmp eq i32 %108, %116 + br label %118 + +118: ; preds = %114, %94, %88 + %119 = phi i1 [ false, %94 ], [ false, %88 ], [ %117, %114 ] + br i1 %119, label %120, label %127 + +120: ; preds = %118 + %121 = load i32, ptr %23, align 4 + %122 = add nsw i32 %121, 1 + store i32 %122, ptr %23, align 4 + br label %88, !llvm.loop !13 + +123: ; preds = %106, %100 + %124 = landingpad { ptr, i32 } + cleanup + %125 = extractvalue { ptr, i32 } %124, 0 + store ptr %125, ptr %17, align 8 + %126 = extractvalue { ptr, i32 } %124, 1 + store i32 %126, ptr %18, align 4 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %19) #15 + br label %148 + +127: ; preds = %118 + %128 = load i32, ptr %23, align 4 + %129 = load i32, ptr %24, align 4 + %130 = sext i32 %129 to i64 + %131 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %19, i64 noundef %130) #15 + %132 = load i32, ptr %131, align 4 + %133 = sext i32 %132 to i64 + %134 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %133) #15 + store i32 %128, ptr %134, align 4 + %135 = load i32, ptr %23, align 4 + %136 = icmp sgt i32 %135, 0 + br i1 %136, label %137, label %140 + +137: ; preds = %127 + %138 = load i32, ptr %23, align 4 + %139 = add nsw i32 %138, -1 + store i32 %139, ptr %23, align 4 + br label %140 + +140: ; preds = %137, %127 + br label %141 + +141: ; preds = %140, %78 + %142 = load i32, ptr %24, align 4 + %143 = add nsw i32 %142, 1 + store i32 %143, ptr %24, align 4 + br label %66, !llvm.loop !14 + +144: ; preds = %66 + store i1 true, ptr %14, align 1 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %19) #15 + %145 = load i1, ptr %14, align 1 + br i1 %145, label %147, label %146 + +146: ; preds = %144 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 + br label %147 + +147: ; preds = %146, %144 + ret void + +148: ; preds = %123, %60 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 + br label %149 + +149: ; preds = %148, %55 + %150 = load ptr, ptr %17, align 8 + %151 = load i32, ptr %18, align 4 + %152 = insertvalue { ptr, i32 } poison, ptr %150, 0 + %153 = insertvalue { ptr, i32 } %152, i32 %151, 1 + resume { ptr, i32 } %153 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %4, i32 0, i32 1 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + %10 = ptrtoint ptr %6 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 4 + ret i64 %13 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2, ptr noundef nonnull align 1 dereferenceable(1) %3) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i32, align 4 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %11 = load ptr, ptr %5, align 8 + %12 = load i64, ptr %6, align 8 + %13 = load ptr, ptr %8, align 8 + %14 = call noundef i64 @_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_(i64 noundef %12, ptr noundef nonnull align 1 dereferenceable(1) %13) + %15 = load ptr, ptr %8, align 8 + call void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(ptr noundef nonnull align 8 dereferenceable(24) %11, i64 noundef %14, ptr noundef nonnull align 1 dereferenceable(1) %15) + %16 = load i64, ptr %6, align 8 + %17 = load ptr, ptr %7, align 8 + invoke void @_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRKi(ptr noundef nonnull align 8 dereferenceable(24) %11, i64 noundef %16, ptr noundef nonnull align 4 dereferenceable(4) %17) + to label %18 unwind label %19 + +18: ; preds = %4 + ret void + +19: ; preds = %4 + %20 = landingpad { ptr, i32 } + cleanup + %21 = extractvalue { ptr, i32 } %20, 0 + store ptr %21, ptr %9, align 8 + %22 = extractvalue { ptr, i32 } %20, 1 + store i32 %22, ptr %10, align 4 + call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %11) #15 + br label %23 + +23: ; preds = %19 + %24 = load ptr, ptr %9, align 8 + %25 = load i32, ptr %10, align 4 + %26 = insertvalue { ptr, i32 } poison, ptr %24, 0 + %27 = insertvalue { ptr, i32 } %26, i32 %25, 1 + resume { ptr, i32 } %27 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Vector_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + %9 = load i64, ptr %4, align 8 + %10 = getelementptr inbounds i32, ptr %8, i64 %9 + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z8printArrSt6vectorIiSaIiEEi(ptr noundef %0, i32 noundef %1) #2 { + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store i32 %1, ptr %3, align 4 + store i32 0, ptr %4, align 4 + br label %5 + +5: ; preds = %16, %2 + %6 = load i32, ptr %4, align 4 + %7 = load i32, ptr %3, align 4 + %8 = icmp slt i32 %6, %7 + br i1 %8, label %9, label %19 + +9: ; preds = %5 + %10 = load i32, ptr %4, align 4 + %11 = sext i32 %10 to i64 + %12 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %11) #15 + %13 = load i32, ptr %12, align 4 + %14 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %13) + %15 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %14, ptr noundef @.str) + br label %16 + +16: ; preds = %9 + %17 = load i32, ptr %4, align 4 + %18 = add nsw i32 %17, 1 + store i32 %18, ptr %4, align 4 + br label %5, !llvm.loop !15 + +19: ; preds = %5 + %20 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #4 + +; Function Attrs: noinline norecurse uwtable +define dso_local noundef i32 @main() #7 personality ptr @__gxx_personality_v0 { + %1 = alloca ptr, align 8 + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca %"class.std::__cxx11::basic_string", align 8 + %7 = alloca %"class.std::allocator.0", align 1 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca %"class.std::vector", align 8 + %11 = alloca %"class.std::__cxx11::basic_string", align 8 + %12 = alloca i32, align 4 + %13 = alloca %"class.std::vector", align 8 + %14 = alloca %"class.std::vector", align 8 + %15 = alloca %"class.std::__cxx11::basic_string", align 8 + %16 = alloca %"class.std::vector", align 8 + %17 = alloca %"class.std::vector", align 8 + store i32 0, ptr %5, align 4 + store ptr %7, ptr %4, align 8 + %18 = load ptr, ptr %4, align 8 + store ptr %18, ptr %1, align 8 + %19 = load ptr, ptr %1, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %6, ptr noundef @.str.1, ptr noundef nonnull align 1 dereferenceable(1) %7) + to label %20 unwind label %42 + +20: ; preds = %0 + store ptr %7, ptr %3, align 8 + %21 = load ptr, ptr %3, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %21) #15 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef nonnull align 8 dereferenceable(32) %6) + to label %22 unwind label %47 + +22: ; preds = %20 + %23 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %6) #15 + %24 = trunc i64 %23 to i32 + invoke void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(ptr sret(%"class.std::vector") align 8 %10, ptr noundef %11, i32 noundef %24) + to label %25 unwind label %51 + +25: ; preds = %22 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #15 + %26 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #15 + %27 = trunc i64 %26 to i32 + store i32 %27, ptr %12, align 4 + %28 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + to label %29 unwind label %55 + +29: ; preds = %25 + invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(24) %13, ptr noundef nonnull align 8 dereferenceable(24) %10) + to label %30 unwind label %55 + +30: ; preds = %29 + %31 = load i32, ptr %12, align 4 + invoke void @_Z8printArrSt6vectorIiSaIiEEi(ptr noundef %13, i32 noundef %31) + to label %32 unwind label %59 + +32: ; preds = %30 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %13) #15 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %15, ptr noundef nonnull align 8 dereferenceable(32) %6) + to label %33 unwind label %55 + +33: ; preds = %32 + invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(24) %16, ptr noundef nonnull align 8 dereferenceable(24) %10) + to label %34 unwind label %63 + +34: ; preds = %33 + invoke void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt6vectorIiSaIiEE(ptr sret(%"class.std::vector") align 8 %14, ptr noundef %15, ptr noundef %16) + to label %35 unwind label %67 + +35: ; preds = %34 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %16) #15 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #15 + %36 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.3) + to label %37 unwind label %72 + +37: ; preds = %35 + invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(24) %17, ptr noundef nonnull align 8 dereferenceable(24) %14) + to label %38 unwind label %72 + +38: ; preds = %37 + %39 = load i32, ptr %12, align 4 + invoke void @_Z8printArrSt6vectorIiSaIiEEi(ptr noundef %17, i32 noundef %39) + to label %40 unwind label %76 + +40: ; preds = %38 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %17) #15 + store i32 0, ptr %5, align 4 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %14) #15 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %10) #15 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #15 + %41 = load i32, ptr %5, align 4 + ret i32 %41 + +42: ; preds = %0 + %43 = landingpad { ptr, i32 } + cleanup + %44 = extractvalue { ptr, i32 } %43, 0 + store ptr %44, ptr %8, align 8 + %45 = extractvalue { ptr, i32 } %43, 1 + store i32 %45, ptr %9, align 4 + store ptr %7, ptr %2, align 8 + %46 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %46) #15 + br label %83 + +47: ; preds = %20 + %48 = landingpad { ptr, i32 } + cleanup + %49 = extractvalue { ptr, i32 } %48, 0 + store ptr %49, ptr %8, align 8 + %50 = extractvalue { ptr, i32 } %48, 1 + store i32 %50, ptr %9, align 4 + br label %82 + +51: ; preds = %22 + %52 = landingpad { ptr, i32 } + cleanup + %53 = extractvalue { ptr, i32 } %52, 0 + store ptr %53, ptr %8, align 8 + %54 = extractvalue { ptr, i32 } %52, 1 + store i32 %54, ptr %9, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #15 + br label %82 + +55: ; preds = %32, %29, %25 + %56 = landingpad { ptr, i32 } + cleanup + %57 = extractvalue { ptr, i32 } %56, 0 + store ptr %57, ptr %8, align 8 + %58 = extractvalue { ptr, i32 } %56, 1 + store i32 %58, ptr %9, align 4 + br label %81 + +59: ; preds = %30 + %60 = landingpad { ptr, i32 } + cleanup + %61 = extractvalue { ptr, i32 } %60, 0 + store ptr %61, ptr %8, align 8 + %62 = extractvalue { ptr, i32 } %60, 1 + store i32 %62, ptr %9, align 4 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %13) #15 + br label %81 + +63: ; preds = %33 + %64 = landingpad { ptr, i32 } + cleanup + %65 = extractvalue { ptr, i32 } %64, 0 + store ptr %65, ptr %8, align 8 + %66 = extractvalue { ptr, i32 } %64, 1 + store i32 %66, ptr %9, align 4 + br label %71 + +67: ; preds = %34 + %68 = landingpad { ptr, i32 } + cleanup + %69 = extractvalue { ptr, i32 } %68, 0 + store ptr %69, ptr %8, align 8 + %70 = extractvalue { ptr, i32 } %68, 1 + store i32 %70, ptr %9, align 4 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %16) #15 + br label %71 + +71: ; preds = %67, %63 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #15 + br label %81 + +72: ; preds = %37, %35 + %73 = landingpad { ptr, i32 } + cleanup + %74 = extractvalue { ptr, i32 } %73, 0 + store ptr %74, ptr %8, align 8 + %75 = extractvalue { ptr, i32 } %73, 1 + store i32 %75, ptr %9, align 4 + br label %80 + +76: ; preds = %38 + %77 = landingpad { ptr, i32 } + cleanup + %78 = extractvalue { ptr, i32 } %77, 0 + store ptr %78, ptr %8, align 8 + %79 = extractvalue { ptr, i32 } %77, 1 + store i32 %79, ptr %9, align 4 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %17) #15 + br label %80 + +80: ; preds = %76, %72 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %14) #15 + br label %81 + +81: ; preds = %80, %71, %59, %55 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %10) #15 + br label %82 + +82: ; preds = %81, %51, %47 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #15 + br label %83 + +83: ; preds = %82, %42 + %84 = load ptr, ptr %8, align 8 + %85 = load i32, ptr %9, align 4 + %86 = insertvalue { ptr, i32 } poison, ptr %84, 0 + %87 = insertvalue { ptr, i32 } %86, i32 %85, 1 + resume { ptr, i32 } %87 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %11, i32 0, i32 0 + %13 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) + %14 = load ptr, ptr %6, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %12, ptr noundef %13, ptr noundef nonnull align 1 dereferenceable(1) %14) + %15 = load ptr, ptr %5, align 8 + %16 = icmp eq ptr %15, null + br i1 %16, label %17, label %23 + +17: ; preds = %3 + invoke void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.4) #17 + to label %18 unwind label %19 + +18: ; preds = %17 + unreachable + +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } + cleanup + %21 = extractvalue { ptr, i32 } %20, 0 + store ptr %21, ptr %7, align 8 + %22 = extractvalue { ptr, i32 } %20, 1 + store i32 %22, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %12) #15 + br label %32 + +23: ; preds = %3 + %24 = load ptr, ptr %5, align 8 + %25 = load ptr, ptr %5, align 8 + %26 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %25) + to label %27 unwind label %19 + +27: ; preds = %23 + %28 = getelementptr inbounds i8, ptr %24, i64 %26 + store ptr %28, ptr %9, align 8 + %29 = load ptr, ptr %5, align 8 + %30 = load ptr, ptr %9, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %29, ptr noundef %30) + to label %31 unwind label %19 + +31: ; preds = %27 + ret void + +32: ; preds = %19 + %33 = load ptr, ptr %7, align 8 + %34 = load i32, ptr %8, align 4 + %35 = insertvalue { ptr, i32 } poison, ptr %33, 0 + %36 = insertvalue { ptr, i32 } %35, i32 %34, 1 + resume { ptr, i32 } %36 +} + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #4 + +; Function Attrs: nounwind +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32)) #8 + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #8 + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 8 dereferenceable(24) %1) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca ptr, align 8 + %15 = alloca %"class.std::allocator", align 1 + %16 = alloca ptr, align 8 + %17 = alloca i32, align 4 + %18 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %19 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + store ptr %0, ptr %13, align 8 + store ptr %1, ptr %14, align 8 + %20 = load ptr, ptr %13, align 8 + %21 = load ptr, ptr %14, align 8 + %22 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %21) #15 + %23 = load ptr, ptr %14, align 8 + %24 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %23) #15 + call void @llvm.experimental.noalias.scope.decl(metadata !16) + store ptr %15, ptr %9, align 8, !noalias !16 + store ptr %24, ptr %10, align 8, !noalias !16 + %25 = load ptr, ptr %10, align 8, !noalias !16 + call void @llvm.experimental.noalias.scope.decl(metadata !19) + store ptr %15, ptr %7, align 8, !noalias !19 + store ptr %25, ptr %8, align 8, !noalias !19 + %26 = load ptr, ptr %8, align 8, !noalias !19 + store ptr %15, ptr %5, align 8, !noalias !19 + store ptr %26, ptr %6, align 8, !noalias !19 + %27 = load ptr, ptr %5, align 8, !noalias !19 + %28 = load ptr, ptr %6, align 8, !noalias !19 + store ptr %27, ptr %3, align 8, !noalias !19 + store ptr %28, ptr %4, align 8, !noalias !19 + %29 = load ptr, ptr %3, align 8, !noalias !19 + invoke void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(ptr noundef nonnull align 8 dereferenceable(24) %20, i64 noundef %22, ptr noundef nonnull align 1 dereferenceable(1) %15) + to label %30 unwind label %50 + +30: ; preds = %2 + store ptr %15, ptr %12, align 8 + %31 = load ptr, ptr %12, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %31) #15 + %32 = load ptr, ptr %14, align 8 + %33 = call ptr @_ZNKSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %32) #15 + %34 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %18, i32 0, i32 0 + store ptr %33, ptr %34, align 8 + %35 = load ptr, ptr %14, align 8 + %36 = call ptr @_ZNKSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %35) #15 + %37 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %19, i32 0, i32 0 + store ptr %36, ptr %37, align 8 + %38 = getelementptr inbounds %"struct.std::_Vector_base", ptr %20, i32 0, i32 0 + %39 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %38, i32 0, i32 0 + %40 = load ptr, ptr %39, align 8 + %41 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %20) #15 + %42 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %18, i32 0, i32 0 + %43 = load ptr, ptr %42, align 8 + %44 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %19, i32 0, i32 0 + %45 = load ptr, ptr %44, align 8 + %46 = invoke noundef ptr @_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiiET0_T_SA_S9_RSaIT1_E(ptr %43, ptr %45, ptr noundef %40, ptr noundef nonnull align 1 dereferenceable(1) %41) + to label %47 unwind label %55 + +47: ; preds = %30 + %48 = getelementptr inbounds %"struct.std::_Vector_base", ptr %20, i32 0, i32 0 + %49 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %48, i32 0, i32 1 + store ptr %46, ptr %49, align 8 + ret void + +50: ; preds = %2 + %51 = landingpad { ptr, i32 } + cleanup + %52 = extractvalue { ptr, i32 } %51, 0 + store ptr %52, ptr %16, align 8 + %53 = extractvalue { ptr, i32 } %51, 1 + store i32 %53, ptr %17, align 4 + store ptr %15, ptr %11, align 8 + %54 = load ptr, ptr %11, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %54) #15 + br label %59 + +55: ; preds = %30 + %56 = landingpad { ptr, i32 } + cleanup + %57 = extractvalue { ptr, i32 } %56, 0 + store ptr %57, ptr %16, align 8 + %58 = extractvalue { ptr, i32 } %56, 1 + store i32 %58, ptr %17, align 4 + call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %20) #15 + br label %59 + +59: ; preds = %55, %50 + %60 = load ptr, ptr %16, align 8 + %61 = load i32, ptr %17, align 4 + %62 = insertvalue { ptr, i32 } poison, ptr %60, 0 + %63 = insertvalue { ptr, i32 } %62, i32 %61, 1 + resume { ptr, i32 } %63 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %5) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %3, i32 0, i32 1 + store ptr null, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %3, i32 0, i32 2 + store ptr null, ptr %6, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #4 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef, ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #4 + +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #9 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call i64 @strlen(ptr noundef %3) #15 + ret i64 %4 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #2 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca i64, align 8 + %15 = alloca %struct._Guard, align 8 + %16 = alloca ptr, align 8 + %17 = alloca i32, align 4 + store ptr %0, ptr %11, align 8 + store ptr %1, ptr %12, align 8 + store ptr %2, ptr %13, align 8 + %18 = load ptr, ptr %11, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %13, align 8 + store ptr %19, ptr %8, align 8 + store ptr %20, ptr %9, align 8 + %21 = load ptr, ptr %8, align 8 + %22 = load ptr, ptr %9, align 8 + store ptr %8, ptr %4, align 8 + store ptr %21, ptr %5, align 8 + store ptr %22, ptr %6, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %5, align 8 + %25 = ptrtoint ptr %23 to i64 + %26 = ptrtoint ptr %24 to i64 + %27 = sub i64 %25, %26 + store i64 %27, ptr %14, align 8 + %28 = load i64, ptr %14, align 8 + %29 = icmp ugt i64 %28, 15 + br i1 %29, label %30, label %33 + +30: ; preds = %3 + %31 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef nonnull align 8 dereferenceable(8) %14, i64 noundef 0) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef %31) + %32 = load i64, ptr %14, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %32) + br label %40 + +33: ; preds = %3 + store ptr %18, ptr %7, align 8 + %34 = load ptr, ptr %7, align 8 + %35 = invoke noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %34) + to label %39 unwind label %36 + +36: ; preds = %33 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #16 + unreachable + +39: ; preds = %33 + br label %40 + +40: ; preds = %39, %30 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef %18) + %41 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %18) + to label %42 unwind label %48 + +42: ; preds = %40 + %43 = load ptr, ptr %12, align 8 + %44 = load ptr, ptr %13, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %41, ptr noundef %43, ptr noundef %44) #15 + %45 = getelementptr inbounds %struct._Guard, ptr %15, i32 0, i32 0 + store ptr null, ptr %45, align 8 + %46 = load i64, ptr %14, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %46) + to label %47 unwind label %48 + +47: ; preds = %42 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #15 + ret void + +48: ; preds = %42, %40 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %16, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %17, align 4 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #15 + br label %52 + +52: ; preds = %48 + %53 = load ptr, ptr %16, align 8 + %54 = load i32, ptr %17, align 4 + %55 = insertvalue { ptr, i32 } poison, ptr %53, 0 + %56 = insertvalue { ptr, i32 } %55, i32 %54, 1 + resume { ptr, i32 } %56 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #15 + ret void +} + +; Function Attrs: nounwind +declare i64 @strlen(ptr noundef) #8 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #4 + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #4 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #4 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %struct._Guard, ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #8 + +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #4 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #4 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = icmp ne ptr %5, null + br i1 %6, label %7, label %11 + +7: ; preds = %1 + %8 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %9) + to label %10 unwind label %12 + +10: ; preds = %7 + br label %11 + +11: ; preds = %10, %1 + ret void + +12: ; preds = %7 + %13 = landingpad { ptr, i32 } + catch ptr null + %14 = extractvalue { ptr, i32 } %13, 0 + call void @__clang_call_terminate(ptr %14) #16 + unreachable +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #10 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #15 + call void @_ZSt9terminatev() #16 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #4 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(ptr noundef %0, ptr noundef %1, ptr %2) #2 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %4, i32 0, i32 0 + store ptr %2, ptr %9, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + %10 = load ptr, ptr %5, align 8 + %11 = load ptr, ptr %6, align 8 + %12 = icmp ne ptr %10, %11 + br i1 %12, label %13, label %30 + +13: ; preds = %3 + %14 = load ptr, ptr %5, align 8 + %15 = load ptr, ptr %6, align 8 + %16 = load ptr, ptr %6, align 8 + %17 = load ptr, ptr %5, align 8 + %18 = ptrtoint ptr %16 to i64 + %19 = ptrtoint ptr %17 to i64 + %20 = sub i64 %18, %19 + %21 = sdiv exact i64 %20, 12 + %22 = call noundef i64 @_ZSt4__lgIlET_S0_(i64 noundef %21) + %23 = mul nsw i64 %22, 2 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %7, ptr align 8 %4, i64 8, i1 false) + %24 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %7, i32 0, i32 0 + %25 = load ptr, ptr %24, align 8 + call void @_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_T1_(ptr noundef %14, ptr noundef %15, i64 noundef %23, ptr %25) + %26 = load ptr, ptr %5, align 8 + %27 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %4, i64 8, i1 false) + %28 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %8, i32 0, i32 0 + %29 = load ptr, ptr %28, align 8 + call void @_ZSt22__final_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(ptr noundef %26, ptr noundef %27, ptr %29) + br label %30 + +30: ; preds = %13, %3 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local ptr @_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFi6suffixS2_EEENS0_15_Iter_comp_iterIT_EES6_(ptr noundef %0) #2 comdat { + %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + call void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEC2ES4_(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %4) + %5 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %2, i32 0, i32 0 + %6 = load ptr, ptr %5, align 8 + ret ptr %6 +} + +; 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_(ptr noundef %0, ptr noundef %1, i64 noundef %2, ptr %3) #2 comdat { + %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %10 = alloca ptr, align 8 + %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %13 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %5, i32 0, i32 0 + store ptr %3, ptr %13, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + store i64 %2, ptr %8, align 8 + br label %14 + +14: ; preds = %31, %4 + %15 = load ptr, ptr %7, align 8 + %16 = load ptr, ptr %6, align 8 + %17 = ptrtoint ptr %15 to i64 + %18 = ptrtoint ptr %16 to i64 + %19 = sub i64 %17, %18 + %20 = sdiv exact i64 %19, 12 + %21 = icmp sgt i64 %20, 16 + br i1 %21, label %22, label %45 + +22: ; preds = %14 + %23 = load i64, ptr %8, align 8 + %24 = icmp eq i64 %23, 0 + br i1 %24, label %25, label %31 + +25: ; preds = %22 + %26 = load ptr, ptr %6, align 8 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %5, i64 8, i1 false) + %29 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %9, i32 0, i32 0 + %30 = load ptr, ptr %29, align 8 + call void @_ZSt14__partial_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_(ptr noundef %26, ptr noundef %27, ptr noundef %28, ptr %30) + br label %45 + +31: ; preds = %22 + %32 = load i64, ptr %8, align 8 + %33 = add nsw i64 %32, -1 + store i64 %33, ptr %8, align 8 + %34 = load ptr, ptr %6, align 8 + %35 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %11, ptr align 8 %5, i64 8, i1 false) + %36 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %11, i32 0, i32 0 + %37 = load ptr, ptr %36, align 8 + %38 = call noundef ptr @_ZSt27__unguarded_partition_pivotIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_T0_(ptr noundef %34, ptr noundef %35, ptr %37) + store ptr %38, ptr %10, align 8 + %39 = load ptr, ptr %10, align 8 + %40 = load ptr, ptr %7, align 8 + %41 = load i64, ptr %8, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %12, ptr align 8 %5, i64 8, i1 false) + %42 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %12, i32 0, i32 0 + %43 = load ptr, ptr %42, align 8 + call void @_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_T1_(ptr noundef %39, ptr noundef %40, i64 noundef %41, ptr %43) + %44 = load ptr, ptr %10, align 8 + store ptr %44, ptr %7, align 8 + br label %14, !llvm.loop !22 + +45: ; preds = %25, %14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt4__lgIlET_S0_(i64 noundef %0) #0 comdat { + %2 = alloca i64, align 8 + store i64 %0, ptr %2, align 8 + %3 = load i64, ptr %2, align 8 + %4 = call noundef i32 @_ZSt11__bit_widthImEiT_(i64 noundef %3) #15 + %5 = sub nsw i32 %4, 1 + %6 = sext i32 %5 to i64 + ret i64 %6 +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr %2) #2 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %4, i32 0, i32 0 + store ptr %2, ptr %10, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + %11 = load ptr, ptr %6, align 8 + %12 = load ptr, ptr %5, align 8 + %13 = ptrtoint ptr %11 to i64 + %14 = ptrtoint ptr %12 to i64 + %15 = sub i64 %13, %14 + %16 = sdiv exact i64 %15, 12 + %17 = icmp sgt i64 %16, 16 + br i1 %17, label %18, label %29 + +18: ; preds = %3 + %19 = load ptr, ptr %5, align 8 + %20 = load ptr, ptr %5, align 8 + %21 = getelementptr inbounds %struct.suffix, ptr %20, i64 16 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %7, ptr align 8 %4, i64 8, i1 false) + %22 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %7, i32 0, i32 0 + %23 = load ptr, ptr %22, align 8 + call void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(ptr noundef %19, ptr noundef %21, ptr %23) + %24 = load ptr, ptr %5, align 8 + %25 = getelementptr inbounds %struct.suffix, ptr %24, i64 16 + %26 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %4, i64 8, i1 false) + %27 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %8, i32 0, i32 0 + %28 = load ptr, ptr %27, align 8 + call void @_ZSt26__unguarded_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(ptr noundef %25, ptr noundef %26, ptr %28) + br label %34 + +29: ; preds = %3 + %30 = load ptr, ptr %5, align 8 + %31 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %4, i64 8, i1 false) + %32 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %9, i32 0, i32 0 + %33 = load ptr, ptr %32, align 8 + call void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(ptr noundef %30, ptr noundef %31, ptr %33) + br label %34 + +34: ; preds = %29, %18 + ret void +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr %3) #2 comdat { + %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %5, i32 0, i32 0 + store ptr %3, ptr %10, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + store ptr %2, ptr %8, align 8 + %11 = load ptr, ptr %6, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = load ptr, ptr %8, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %5, i64 8, i1 false) + %14 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %9, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + call void @_ZSt13__heap_selectIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_(ptr noundef %11, ptr noundef %12, ptr noundef %13, ptr %15) + %16 = load ptr, ptr %6, align 8 + %17 = load ptr, ptr %7, align 8 + call void @_ZSt11__sort_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_(ptr noundef %16, ptr noundef %17, ptr noundef nonnull align 8 dereferenceable(8) %5) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt27__unguarded_partition_pivotIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_T0_(ptr noundef %0, ptr noundef %1, ptr %2) #2 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %4, i32 0, i32 0 + store ptr %2, ptr %10, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + %11 = load ptr, ptr %5, align 8 + %12 = load ptr, ptr %6, align 8 + %13 = load ptr, ptr %5, align 8 + %14 = ptrtoint ptr %12 to i64 + %15 = ptrtoint ptr %13 to i64 + %16 = sub i64 %14, %15 + %17 = sdiv exact i64 %16, 12 + %18 = sdiv i64 %17, 2 + %19 = getelementptr inbounds %struct.suffix, ptr %11, i64 %18 + store ptr %19, ptr %7, align 8 + %20 = load ptr, ptr %5, align 8 + %21 = load ptr, ptr %5, align 8 + %22 = getelementptr inbounds %struct.suffix, ptr %21, i64 1 + %23 = load ptr, ptr %7, align 8 + %24 = load ptr, ptr %6, align 8 + %25 = getelementptr inbounds %struct.suffix, ptr %24, i64 -1 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %4, i64 8, i1 false) + %26 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %8, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + call void @_ZSt22__move_median_to_firstIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_S8_T0_(ptr noundef %20, ptr noundef %22, ptr noundef %23, ptr noundef %25, ptr %27) + %28 = load ptr, ptr %5, align 8 + %29 = getelementptr inbounds %struct.suffix, ptr %28, i64 1 + %30 = load ptr, ptr %6, align 8 + %31 = load ptr, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %4, i64 8, i1 false) + %32 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %9, i32 0, i32 0 + %33 = load ptr, ptr %32, align 8 + %34 = call noundef ptr @_ZSt21__unguarded_partitionIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_S8_T0_(ptr noundef %29, ptr noundef %30, ptr noundef %31, ptr %33) + ret ptr %34 +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr %3) #2 comdat { + %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %5, i32 0, i32 0 + store ptr %3, ptr %10, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + store ptr %2, ptr %8, align 8 + %11 = load ptr, ptr %6, align 8 + %12 = load ptr, ptr %7, align 8 + call void @_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_(ptr noundef %11, ptr noundef %12, ptr noundef nonnull align 8 dereferenceable(8) %5) + %13 = load ptr, ptr %7, align 8 + store ptr %13, ptr %9, align 8 + br label %14 + +14: ; preds = %27, %4 + %15 = load ptr, ptr %9, align 8 + %16 = load ptr, ptr %8, align 8 + %17 = icmp ult ptr %15, %16 + br i1 %17, label %18, label %30 + +18: ; preds = %14 + %19 = load ptr, ptr %9, align 8 + %20 = load ptr, ptr %6, align 8 + %21 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %5, ptr noundef %19, ptr noundef %20) + br i1 %21, label %22, label %26 + +22: ; preds = %18 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %7, align 8 + %25 = load ptr, ptr %9, align 8 + call void @_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_RT0_(ptr noundef %23, ptr noundef %24, ptr noundef %25, ptr noundef nonnull align 8 dereferenceable(8) %5) + br label %26 + +26: ; preds = %22, %18 + br label %27 + +27: ; preds = %26 + %28 = load ptr, ptr %9, align 8 + %29 = getelementptr inbounds %struct.suffix, ptr %28, i32 1 + store ptr %29, ptr %9, align 8 + br label %14, !llvm.loop !23 + +30: ; preds = %14 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__sort_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_(ptr noundef %0, ptr noundef %1, ptr noundef nonnull align 8 dereferenceable(8) %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + br label %7 + +7: ; preds = %15, %3 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 12 + %14 = icmp sgt i64 %13, 1 + br i1 %14, label %15, label %22 + +15: ; preds = %7 + %16 = load ptr, ptr %5, align 8 + %17 = getelementptr inbounds %struct.suffix, ptr %16, i32 -1 + store ptr %17, ptr %5, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load ptr, ptr %5, align 8 + %20 = load ptr, ptr %5, align 8 + %21 = load ptr, ptr %6, align 8 + call void @_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_RT0_(ptr noundef %18, ptr noundef %19, ptr noundef %20, ptr noundef nonnull align 8 dereferenceable(8) %21) + br label %7, !llvm.loop !24 + +22: ; preds = %7 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_(ptr noundef %0, ptr noundef %1, ptr noundef nonnull align 8 dereferenceable(8) %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca %struct.suffix, align 4 + %10 = alloca %struct.suffix, align 4 + %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %12 = alloca { i64, i32 }, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %13 = load ptr, ptr %5, align 8 + %14 = load ptr, ptr %4, align 8 + %15 = ptrtoint ptr %13 to i64 + %16 = ptrtoint ptr %14 to i64 + %17 = sub i64 %15, %16 + %18 = sdiv exact i64 %17, 12 + %19 = icmp slt i64 %18, 2 + br i1 %19, label %20, label %21 + +20: ; preds = %3 + br label %51 + +21: ; preds = %3 + %22 = load ptr, ptr %5, align 8 + %23 = load ptr, ptr %4, align 8 + %24 = ptrtoint ptr %22 to i64 + %25 = ptrtoint ptr %23 to i64 + %26 = sub i64 %24, %25 + %27 = sdiv exact i64 %26, 12 + store i64 %27, ptr %7, align 8 + %28 = load i64, ptr %7, align 8 + %29 = sub nsw i64 %28, 2 + %30 = sdiv i64 %29, 2 + store i64 %30, ptr %8, align 8 + br label %31 + +31: ; preds = %21, %48 + %32 = load ptr, ptr %4, align 8 + %33 = load i64, ptr %8, align 8 + %34 = getelementptr inbounds %struct.suffix, ptr %32, i64 %33 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %9, ptr align 4 %34, i64 12, i1 false) + %35 = load ptr, ptr %4, align 8 + %36 = load i64, ptr %8, align 8 + %37 = load i64, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %10, ptr align 4 %9, i64 12, i1 false) + %38 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %11, ptr align 8 %38, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %12, ptr align 4 %10, i64 12, i1 false) + %39 = getelementptr inbounds { i64, i32 }, ptr %12, i32 0, i32 0 + %40 = load i64, ptr %39, align 4 + %41 = getelementptr inbounds { i64, i32 }, ptr %12, i32 0, i32 1 + %42 = load i32, ptr %41, align 4 + %43 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %11, i32 0, i32 0 + %44 = load ptr, ptr %43, align 8 + call void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_T0_S9_T1_T2_(ptr noundef %35, i64 noundef %36, i64 noundef %37, i64 %40, i32 %42, ptr %44) + %45 = load i64, ptr %8, align 8 + %46 = icmp eq i64 %45, 0 + br i1 %46, label %47, label %48 + +47: ; preds = %31 + br label %51 + +48: ; preds = %31 + %49 = load i64, ptr %8, align 8 + %50 = add nsw i64 %49, -1 + store i64 %50, ptr %8, align 8 + br label %31, !llvm.loop !25 + +51: ; preds = %47, %20 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1, ptr noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %struct.suffix, align 4 + %8 = alloca %struct.suffix, align 4 + %9 = alloca { i64, i32 }, align 4 + %10 = alloca { i64, i32 }, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %11, i32 0, i32 0 + %13 = load ptr, ptr %12, align 8 + %14 = load ptr, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %7, ptr align 4 %14, i64 12, i1 false) + %15 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %8, ptr align 4 %15, i64 12, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %9, ptr align 4 %7, i64 12, i1 false) + %16 = getelementptr inbounds { i64, i32 }, ptr %9, i32 0, i32 0 + %17 = load i64, ptr %16, align 4 + %18 = getelementptr inbounds { i64, i32 }, ptr %9, i32 0, i32 1 + %19 = load i32, ptr %18, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %10, ptr align 4 %8, i64 12, i1 false) + %20 = getelementptr inbounds { i64, i32 }, ptr %10, i32 0, i32 0 + %21 = load i64, ptr %20, align 4 + %22 = getelementptr inbounds { i64, i32 }, ptr %10, i32 0, i32 1 + %23 = load i32, ptr %22, align 4 + %24 = call noundef i32 %13(i64 %17, i32 %19, i64 %21, i32 %23) + %25 = icmp ne i32 %24, 0 + ret i1 %25 +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 8 dereferenceable(8) %3) #2 comdat { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca %struct.suffix, align 4 + %10 = alloca %struct.suffix, align 4 + %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %12 = alloca { i64, i32 }, align 4 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %13 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %9, ptr align 4 %13, i64 12, i1 false) + %14 = load ptr, ptr %5, align 8 + %15 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %15, ptr align 4 %14, i64 12, i1 false) + %16 = load ptr, ptr %5, align 8 + %17 = load ptr, ptr %6, align 8 + %18 = load ptr, ptr %5, align 8 + %19 = ptrtoint ptr %17 to i64 + %20 = ptrtoint ptr %18 to i64 + %21 = sub i64 %19, %20 + %22 = sdiv exact i64 %21, 12 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %10, ptr align 4 %9, i64 12, i1 false) + %23 = load ptr, ptr %8, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %11, ptr align 8 %23, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %12, ptr align 4 %10, i64 12, i1 false) + %24 = getelementptr inbounds { i64, i32 }, ptr %12, i32 0, i32 0 + %25 = load i64, ptr %24, align 4 + %26 = getelementptr inbounds { i64, i32 }, ptr %12, i32 0, i32 1 + %27 = load i32, ptr %26, align 4 + %28 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %11, i32 0, i32 0 + %29 = load ptr, ptr %28, align 8 + call void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_T0_S9_T1_T2_(ptr noundef %16, i64 noundef 0, i64 noundef %22, i64 %25, i32 %27, ptr %29) + ret void +} + +; 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_(ptr noundef %0, i64 noundef %1, i64 noundef %2, i64 %3, i32 %4, ptr %5) #2 comdat { + %7 = alloca %struct.suffix, align 4 + %8 = alloca { i64, i32 }, align 4 + %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %10 = alloca ptr, align 8 + %11 = alloca i64, align 8 + %12 = alloca i64, align 8 + %13 = alloca i64, align 8 + %14 = alloca i64, align 8 + %15 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val", align 8 + %16 = alloca %struct.suffix, align 4 + %17 = alloca { i64, i32 }, align 4 + %18 = getelementptr inbounds { i64, i32 }, ptr %8, i32 0, i32 0 + store i64 %3, ptr %18, align 4 + %19 = getelementptr inbounds { i64, i32 }, ptr %8, i32 0, i32 1 + store i32 %4, ptr %19, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %7, ptr align 4 %8, i64 12, i1 false) + %20 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %9, i32 0, i32 0 + store ptr %5, ptr %20, align 8 + store ptr %0, ptr %10, align 8 + store i64 %1, ptr %11, align 8 + store i64 %2, ptr %12, align 8 + %21 = load i64, ptr %11, align 8 + store i64 %21, ptr %13, align 8 + %22 = load i64, ptr %11, align 8 + store i64 %22, ptr %14, align 8 + br label %23 + +23: ; preds = %44, %6 + %24 = load i64, ptr %14, align 8 + %25 = load i64, ptr %12, align 8 + %26 = sub nsw i64 %25, 1 + %27 = sdiv i64 %26, 2 + %28 = icmp slt i64 %24, %27 + br i1 %28, label %29, label %52 + +29: ; preds = %23 + %30 = load i64, ptr %14, align 8 + %31 = add nsw i64 %30, 1 + %32 = mul nsw i64 2, %31 + store i64 %32, ptr %14, align 8 + %33 = load ptr, ptr %10, align 8 + %34 = load i64, ptr %14, align 8 + %35 = getelementptr inbounds %struct.suffix, ptr %33, i64 %34 + %36 = load ptr, ptr %10, align 8 + %37 = load i64, ptr %14, align 8 + %38 = sub nsw i64 %37, 1 + %39 = getelementptr inbounds %struct.suffix, ptr %36, i64 %38 + %40 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %9, ptr noundef %35, ptr noundef %39) + br i1 %40, label %41, label %44 + +41: ; preds = %29 + %42 = load i64, ptr %14, align 8 + %43 = add nsw i64 %42, -1 + store i64 %43, ptr %14, align 8 + br label %44 + +44: ; preds = %41, %29 + %45 = load ptr, ptr %10, align 8 + %46 = load i64, ptr %14, align 8 + %47 = getelementptr inbounds %struct.suffix, ptr %45, i64 %46 + %48 = load ptr, ptr %10, align 8 + %49 = load i64, ptr %11, align 8 + %50 = getelementptr inbounds %struct.suffix, ptr %48, i64 %49 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %50, ptr align 4 %47, i64 12, i1 false) + %51 = load i64, ptr %14, align 8 + store i64 %51, ptr %11, align 8 + br label %23, !llvm.loop !26 + +52: ; preds = %23 + %53 = load i64, ptr %12, align 8 + %54 = and i64 %53, 1 + %55 = icmp eq i64 %54, 0 + br i1 %55, label %56, label %75 + +56: ; preds = %52 + %57 = load i64, ptr %14, align 8 + %58 = load i64, ptr %12, align 8 + %59 = sub nsw i64 %58, 2 + %60 = sdiv i64 %59, 2 + %61 = icmp eq i64 %57, %60 + br i1 %61, label %62, label %75 + +62: ; preds = %56 + %63 = load i64, ptr %14, align 8 + %64 = add nsw i64 %63, 1 + %65 = mul nsw i64 2, %64 + store i64 %65, ptr %14, align 8 + %66 = load ptr, ptr %10, align 8 + %67 = load i64, ptr %14, align 8 + %68 = sub nsw i64 %67, 1 + %69 = getelementptr inbounds %struct.suffix, ptr %66, i64 %68 + %70 = load ptr, ptr %10, align 8 + %71 = load i64, ptr %11, align 8 + %72 = getelementptr inbounds %struct.suffix, ptr %70, i64 %71 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %72, ptr align 4 %69, i64 12, i1 false) + %73 = load i64, ptr %14, align 8 + %74 = sub nsw i64 %73, 1 + store i64 %74, ptr %11, align 8 + br label %75 + +75: ; preds = %62, %56, %52 + call void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef nonnull align 8 dereferenceable(8) %9) + %76 = load ptr, ptr %10, align 8 + %77 = load i64, ptr %11, align 8 + %78 = load i64, ptr %13, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %16, ptr align 4 %7, i64 12, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %17, ptr align 4 %16, i64 12, i1 false) + %79 = getelementptr inbounds { i64, i32 }, ptr %17, i32 0, i32 0 + %80 = load i64, ptr %79, align 4 + %81 = getelementptr inbounds { i64, i32 }, ptr %17, i32 0, i32 1 + %82 = load i32, ptr %81, align 4 + call void @_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFiS0_S0_EEEEvT_T0_S9_T1_RT2_(ptr noundef %76, i64 noundef %77, i64 noundef %78, i64 %80, i32 %82, ptr noundef nonnull align 8 dereferenceable(8) %15) + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) unnamed_addr #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + store ptr %9, ptr %6, align 8 + ret void +} + +; 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_(ptr noundef %0, i64 noundef %1, i64 noundef %2, i64 %3, i32 %4, ptr noundef nonnull align 8 dereferenceable(8) %5) #2 comdat { + %7 = alloca %struct.suffix, align 4 + %8 = alloca { i64, i32 }, align 4 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca i64, align 8 + %12 = alloca ptr, align 8 + %13 = alloca i64, align 8 + %14 = getelementptr inbounds { i64, i32 }, ptr %8, i32 0, i32 0 + store i64 %3, ptr %14, align 4 + %15 = getelementptr inbounds { i64, i32 }, ptr %8, i32 0, i32 1 + store i32 %4, ptr %15, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %7, ptr align 4 %8, i64 12, i1 false) + store ptr %0, ptr %9, align 8 + store i64 %1, ptr %10, align 8 + store i64 %2, ptr %11, align 8 + store ptr %5, ptr %12, align 8 + %16 = load i64, ptr %10, align 8 + %17 = sub nsw i64 %16, 1 + %18 = sdiv i64 %17, 2 + store i64 %18, ptr %13, align 8 + br label %19 + +19: ; preds = %31, %6 + %20 = load i64, ptr %10, align 8 + %21 = load i64, ptr %11, align 8 + %22 = icmp sgt i64 %20, %21 + br i1 %22, label %23, label %29 + +23: ; preds = %19 + %24 = load ptr, ptr %12, align 8 + %25 = load ptr, ptr %9, align 8 + %26 = load i64, ptr %13, align 8 + %27 = getelementptr inbounds %struct.suffix, ptr %25, i64 %26 + %28 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEclIPS2_S2_EEbT_RT0_(ptr noundef nonnull align 8 dereferenceable(8) %24, ptr noundef %27, ptr noundef nonnull align 4 dereferenceable(12) %7) + br label %29 + +29: ; preds = %23, %19 + %30 = phi i1 [ false, %19 ], [ %28, %23 ] + br i1 %30, label %31, label %42 + +31: ; preds = %29 + %32 = load ptr, ptr %9, align 8 + %33 = load i64, ptr %13, align 8 + %34 = getelementptr inbounds %struct.suffix, ptr %32, i64 %33 + %35 = load ptr, ptr %9, align 8 + %36 = load i64, ptr %10, align 8 + %37 = getelementptr inbounds %struct.suffix, ptr %35, i64 %36 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %37, ptr align 4 %34, i64 12, i1 false) + %38 = load i64, ptr %13, align 8 + store i64 %38, ptr %10, align 8 + %39 = load i64, ptr %10, align 8 + %40 = sub nsw i64 %39, 1 + %41 = sdiv i64 %40, 2 + store i64 %41, ptr %13, align 8 + br label %19, !llvm.loop !27 + +42: ; preds = %29 + %43 = load ptr, ptr %9, align 8 + %44 = load i64, ptr %10, align 8 + %45 = getelementptr inbounds %struct.suffix, ptr %43, i64 %44 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %45, ptr align 4 %7, i64 12, i1 false) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEclIPS2_S2_EEbT_RT0_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(12) %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %struct.suffix, align 4 + %8 = alloca %struct.suffix, align 4 + %9 = alloca { i64, i32 }, align 4 + %10 = alloca { i64, i32 }, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", ptr %11, i32 0, i32 0 + %13 = load ptr, ptr %12, align 8 + %14 = load ptr, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %7, ptr align 4 %14, i64 12, i1 false) + %15 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %8, ptr align 4 %15, i64 12, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %9, ptr align 4 %7, i64 12, i1 false) + %16 = getelementptr inbounds { i64, i32 }, ptr %9, i32 0, i32 0 + %17 = load i64, ptr %16, align 4 + %18 = getelementptr inbounds { i64, i32 }, ptr %9, i32 0, i32 1 + %19 = load i32, ptr %18, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %10, ptr align 4 %8, i64 12, i1 false) + %20 = getelementptr inbounds { i64, i32 }, ptr %10, i32 0, i32 0 + %21 = load i64, ptr %20, align 4 + %22 = getelementptr inbounds { i64, i32 }, ptr %10, i32 0, i32 1 + %23 = load i32, ptr %22, align 4 + %24 = call noundef i32 %13(i64 %17, i32 %19, i64 %21, i32 %23) + %25 = icmp ne i32 %24, 0 + ret i1 %25 +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef %3, ptr %4) #2 comdat { + %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %6, i32 0, i32 0 + store ptr %4, ptr %11, align 8 + store ptr %0, ptr %7, align 8 + store ptr %1, ptr %8, align 8 + store ptr %2, ptr %9, align 8 + store ptr %3, ptr %10, align 8 + %12 = load ptr, ptr %8, align 8 + %13 = load ptr, ptr %9, align 8 + %14 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %12, ptr noundef %13) + br i1 %14, label %15, label %34 + +15: ; preds = %5 + %16 = load ptr, ptr %9, align 8 + %17 = load ptr, ptr %10, align 8 + %18 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %16, ptr noundef %17) + br i1 %18, label %19, label %22 + +19: ; preds = %15 + %20 = load ptr, ptr %7, align 8 + %21 = load ptr, ptr %9, align 8 + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(ptr noundef %20, ptr noundef %21) + br label %33 + +22: ; preds = %15 + %23 = load ptr, ptr %8, align 8 + %24 = load ptr, ptr %10, align 8 + %25 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %23, ptr noundef %24) + br i1 %25, label %26, label %29 + +26: ; preds = %22 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %10, align 8 + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(ptr noundef %27, ptr noundef %28) + br label %32 + +29: ; preds = %22 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(ptr noundef %30, ptr noundef %31) + br label %32 + +32: ; preds = %29, %26 + br label %33 + +33: ; preds = %32, %19 + br label %53 + +34: ; preds = %5 + %35 = load ptr, ptr %8, align 8 + %36 = load ptr, ptr %10, align 8 + %37 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %35, ptr noundef %36) + br i1 %37, label %38, label %41 + +38: ; preds = %34 + %39 = load ptr, ptr %7, align 8 + %40 = load ptr, ptr %8, align 8 + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(ptr noundef %39, ptr noundef %40) + br label %52 + +41: ; preds = %34 + %42 = load ptr, ptr %9, align 8 + %43 = load ptr, ptr %10, align 8 + %44 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %42, ptr noundef %43) + br i1 %44, label %45, label %48 + +45: ; preds = %41 + %46 = load ptr, ptr %7, align 8 + %47 = load ptr, ptr %10, align 8 + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(ptr noundef %46, ptr noundef %47) + br label %51 + +48: ; preds = %41 + %49 = load ptr, ptr %7, align 8 + %50 = load ptr, ptr %9, align 8 + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(ptr noundef %49, ptr noundef %50) + br label %51 + +51: ; preds = %48, %45 + br label %52 + +52: ; preds = %51, %38 + br label %53 + +53: ; preds = %52, %33 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt21__unguarded_partitionIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_S8_T0_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr %3) #2 comdat { + %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %5, i32 0, i32 0 + store ptr %3, ptr %9, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + store ptr %2, ptr %8, align 8 + br label %10 + +10: ; preds = %4, %34 + br label %11 + +11: ; preds = %15, %10 + %12 = load ptr, ptr %6, align 8 + %13 = load ptr, ptr %8, align 8 + %14 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %5, ptr noundef %12, ptr noundef %13) + br i1 %14, label %15, label %18 + +15: ; preds = %11 + %16 = load ptr, ptr %6, align 8 + %17 = getelementptr inbounds %struct.suffix, ptr %16, i32 1 + store ptr %17, ptr %6, align 8 + br label %11, !llvm.loop !28 + +18: ; preds = %11 + %19 = load ptr, ptr %7, align 8 + %20 = getelementptr inbounds %struct.suffix, ptr %19, i32 -1 + store ptr %20, ptr %7, align 8 + br label %21 + +21: ; preds = %25, %18 + %22 = load ptr, ptr %8, align 8 + %23 = load ptr, ptr %7, align 8 + %24 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %5, ptr noundef %22, ptr noundef %23) + br i1 %24, label %25, label %28 + +25: ; preds = %21 + %26 = load ptr, ptr %7, align 8 + %27 = getelementptr inbounds %struct.suffix, ptr %26, i32 -1 + store ptr %27, ptr %7, align 8 + br label %21, !llvm.loop !29 + +28: ; preds = %21 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = icmp ult ptr %29, %30 + br i1 %31, label %34, label %32 + +32: ; preds = %28 + %33 = load ptr, ptr %6, align 8 + ret ptr %33 + +34: ; preds = %28 + %35 = load ptr, ptr %6, align 8 + %36 = load ptr, ptr %7, align 8 + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(ptr noundef %35, ptr noundef %36) + %37 = load ptr, ptr %6, align 8 + %38 = getelementptr inbounds %struct.suffix, ptr %37, i32 1 + store ptr %38, ptr %6, align 8 + br label %10, !llvm.loop !30 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(ptr noundef %0, ptr noundef %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load ptr, ptr %4, align 8 + call void @_ZSt4swapI6suffixENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_(ptr noundef nonnull align 4 dereferenceable(12) %5, ptr noundef nonnull align 4 dereferenceable(12) %6) #15 + ret void +} + +; 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_(ptr noundef nonnull align 4 dereferenceable(12) %0, ptr noundef nonnull align 4 dereferenceable(12) %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %struct.suffix, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %5, ptr align 4 %6, i64 12, i1 false) + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %3, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %8, ptr align 4 %7, i64 12, i1 false) + %9 = load ptr, ptr %4, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %9, ptr align 4 %5, i64 12, i1 false) + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32 @_ZSt11__bit_widthImEiT_(i64 noundef %0) #0 comdat { + %2 = alloca i64, align 8 + %3 = alloca i32, align 4 + store i64 %0, ptr %2, align 8 + store i32 64, ptr %3, align 4 + %4 = load i64, ptr %2, align 8 + %5 = call noundef i32 @_ZSt13__countl_zeroImEiT_(i64 noundef %4) #15 + %6 = sub nsw i32 64, %5 + ret i32 %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32 @_ZSt13__countl_zeroImEiT_(i64 noundef %0) #0 comdat { + %2 = alloca i32, align 4 + %3 = alloca i64, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store i64 %0, ptr %3, align 8 + store i32 64, ptr %4, align 4 + %9 = load i64, ptr %3, align 8 + %10 = icmp eq i64 %9, 0 + br i1 %10, label %11, label %12 + +11: ; preds = %1 + store i32 64, ptr %2, align 4 + br label %17 + +12: ; preds = %1 + store i32 64, ptr %5, align 4 + store i32 64, ptr %6, align 4 + store i32 32, ptr %7, align 4 + store i32 0, ptr %8, align 4 + %13 = load i64, ptr %3, align 8 + %14 = call i64 @llvm.ctlz.i64(i64 %13, i1 true) + %15 = trunc i64 %14 to i32 + %16 = sub nsw i32 %15, 0 + store i32 %16, ptr %2, align 4 + br label %17 + +17: ; preds = %12, %11 + %18 = load i32, ptr %2, align 4 + ret i32 %18 +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare i64 @llvm.ctlz.i64(i64, i1 immarg) #11 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(ptr noundef %0, ptr noundef %1, ptr %2) #2 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca %struct.suffix, align 4 + %9 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 + %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %11 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %4, i32 0, i32 0 + store ptr %2, ptr %11, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + %12 = load ptr, ptr %5, align 8 + %13 = load ptr, ptr %6, align 8 + %14 = icmp eq ptr %12, %13 + br i1 %14, label %15, label %16 + +15: ; preds = %3 + br label %47 + +16: ; preds = %3 + %17 = load ptr, ptr %5, align 8 + %18 = getelementptr inbounds %struct.suffix, ptr %17, i64 1 + store ptr %18, ptr %7, align 8 + br label %19 + +19: ; preds = %44, %16 + %20 = load ptr, ptr %7, align 8 + %21 = load ptr, ptr %6, align 8 + %22 = icmp ne ptr %20, %21 + br i1 %22, label %23, label %47 + +23: ; preds = %19 + %24 = load ptr, ptr %7, align 8 + %25 = load ptr, ptr %5, align 8 + %26 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %4, ptr noundef %24, ptr noundef %25) + br i1 %26, label %27, label %35 + +27: ; preds = %23 + %28 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %8, ptr align 4 %28, i64 12, i1 false) + %29 = load ptr, ptr %5, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %7, align 8 + %32 = getelementptr inbounds %struct.suffix, ptr %31, i64 1 + %33 = call noundef ptr @_ZSt13move_backwardIP6suffixS1_ET0_T_S3_S2_(ptr noundef %29, ptr noundef %30, ptr noundef %32) + %34 = load ptr, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %34, ptr align 4 %8, i64 12, i1 false) + br label %43 + +35: ; preds = %23 + %36 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %10, ptr align 8 %4, i64 8, i1 false) + %37 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %10, i32 0, i32 0 + %38 = load ptr, ptr %37, align 8 + %39 = call ptr @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFi6suffixS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(ptr %38) + %40 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %9, i32 0, i32 0 + store ptr %39, ptr %40, align 8 + %41 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %9, i32 0, i32 0 + %42 = load ptr, ptr %41, align 8 + call void @_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_(ptr noundef %36, ptr %42) + br label %43 + +43: ; preds = %35, %27 + br label %44 + +44: ; preds = %43 + %45 = load ptr, ptr %7, align 8 + %46 = getelementptr inbounds %struct.suffix, ptr %45, i32 1 + store ptr %46, ptr %7, align 8 + br label %19, !llvm.loop !31 + +47: ; preds = %15, %19 + ret void +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr %2) #2 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 + %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %4, i32 0, i32 0 + store ptr %2, ptr %10, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + %11 = load ptr, ptr %5, align 8 + store ptr %11, ptr %7, align 8 + br label %12 + +12: ; preds = %24, %3 + %13 = load ptr, ptr %7, align 8 + %14 = load ptr, ptr %6, align 8 + %15 = icmp ne ptr %13, %14 + br i1 %15, label %16, label %27 + +16: ; preds = %12 + %17 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %4, i64 8, i1 false) + %18 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %9, i32 0, i32 0 + %19 = load ptr, ptr %18, align 8 + %20 = call ptr @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFi6suffixS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(ptr %19) + %21 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %8, i32 0, i32 0 + store ptr %20, ptr %21, align 8 + %22 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %8, i32 0, i32 0 + %23 = load ptr, ptr %22, align 8 + call void @_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_(ptr noundef %17, ptr %23) + br label %24 + +24: ; preds = %16 + %25 = load ptr, ptr %7, align 8 + %26 = getelementptr inbounds %struct.suffix, ptr %25, i32 1 + store ptr %26, ptr %7, align 8 + br label %12, !llvm.loop !32 + +27: ; preds = %12 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13move_backwardIP6suffixS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIP6suffixET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIP6suffixET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt22__copy_move_backward_aILb1EP6suffixS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_(ptr noundef %0, ptr %1) #2 comdat { + %3 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 + %4 = alloca ptr, align 8 + %5 = alloca %struct.suffix, align 4 + %6 = alloca ptr, align 8 + %7 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %3, i32 0, i32 0 + store ptr %1, ptr %7, align 8 + store ptr %0, ptr %4, align 8 + %8 = load ptr, ptr %4, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %5, ptr align 4 %8, i64 12, i1 false) + %9 = load ptr, ptr %4, align 8 + store ptr %9, ptr %6, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = getelementptr inbounds %struct.suffix, ptr %10, i32 -1 + store ptr %11, ptr %6, align 8 + br label %12 + +12: ; preds = %15, %2 + %13 = load ptr, ptr %6, align 8 + %14 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEclIS2_PS2_EEbRT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 4 dereferenceable(12) %5, ptr noundef %13) + br i1 %14, label %15, label %21 + +15: ; preds = %12 + %16 = load ptr, ptr %6, align 8 + %17 = load ptr, ptr %4, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %17, ptr align 4 %16, i64 12, i1 false) + %18 = load ptr, ptr %6, align 8 + store ptr %18, ptr %4, align 8 + %19 = load ptr, ptr %6, align 8 + %20 = getelementptr inbounds %struct.suffix, ptr %19, i32 -1 + store ptr %20, ptr %6, align 8 + br label %12, !llvm.loop !33 + +21: ; preds = %12 + %22 = load ptr, ptr %4, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %22, ptr align 4 %5, i64 12, i1 false) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local ptr @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFi6suffixS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(ptr %0) #2 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", ptr %3, i32 0, i32 0 + store ptr %0, ptr %4, align 8 + call void @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef nonnull align 8 dereferenceable(8) %3) + %5 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %2, i32 0, i32 0 + %6 = load ptr, ptr %5, align 8 + ret ptr %6 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb1EP6suffixS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIP6suffixET_S2_(ptr noundef %7) #15 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIP6suffixET_S2_(ptr noundef %9) #15 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIP6suffixET_S2_(ptr noundef %11) #15 + %13 = call noundef ptr @_ZSt23__copy_move_backward_a1ILb1EP6suffixS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIP6suffixET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIP6suffixET_S2_(ptr noundef %0) #0 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIP6suffixET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb1EP6suffixS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt23__copy_move_backward_a2ILb1EP6suffixS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIP6suffixET_S2_(ptr noundef %0) #0 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb1EP6suffixS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI6suffixS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI6suffixS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 12 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %24 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load i64, ptr %7, align 8 + %19 = sub i64 0, %18 + %20 = getelementptr inbounds %struct.suffix, ptr %17, i64 %19 + %21 = load ptr, ptr %4, align 8 + %22 = load i64, ptr %7, align 8 + %23 = mul i64 12, %22 + call void @llvm.memmove.p0.p0.i64(ptr align 4 %20, ptr align 4 %21, i64 %23, i1 false) + br label %32 + +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 + +27: ; preds = %24 + %28 = load ptr, ptr %6, align 8 + %29 = getelementptr inbounds %struct.suffix, ptr %28, i64 -1 + %30 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneI6suffixS3_EEvPT_PT0_(ptr noundef %29, ptr noundef %30) + br label %31 + +31: ; preds = %27, %24 + br label %32 + +32: ; preds = %31, %16 + %33 = load ptr, ptr %6, align 8 + %34 = load i64, ptr %7, align 8 + %35 = sub i64 0, %34 + %36 = getelementptr inbounds %struct.suffix, ptr %33, i64 %35 + ret ptr %36 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memmove.p0.p0.i64(ptr nocapture writeonly, ptr nocapture readonly, i64, i1 immarg) #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneI6suffixS3_EEvPT_PT0_(ptr noundef %0, ptr noundef %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %6, ptr align 4 %5, i64 12, i1 false) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEclIS2_PS2_EEbRT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 4 dereferenceable(12) %1, ptr noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %struct.suffix, align 4 + %8 = alloca %struct.suffix, align 4 + %9 = alloca { i64, i32 }, align 4 + %10 = alloca { i64, i32 }, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %11, i32 0, i32 0 + %13 = load ptr, ptr %12, align 8 + %14 = load ptr, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %7, ptr align 4 %14, i64 12, i1 false) + %15 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %8, ptr align 4 %15, i64 12, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %9, ptr align 4 %7, i64 12, i1 false) + %16 = getelementptr inbounds { i64, i32 }, ptr %9, i32 0, i32 0 + %17 = load i64, ptr %16, align 4 + %18 = getelementptr inbounds { i64, i32 }, ptr %9, i32 0, i32 1 + %19 = load i32, ptr %18, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %10, ptr align 4 %8, i64 12, i1 false) + %20 = getelementptr inbounds { i64, i32 }, ptr %10, i32 0, i32 0 + %21 = load i64, ptr %20, align 4 + %22 = getelementptr inbounds { i64, i32 }, ptr %10, i32 0, i32 1 + %23 = load i32, ptr %22, align 4 + %24 = call noundef i32 %13(i64 %17, i32 %19, i64 %21, i32 %23) + %25 = icmp ne i32 %24, 0 + ret i1 %25 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) unnamed_addr #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + store ptr %9, ptr %6, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEC2ES4_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %4, i32 0, i32 0 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %7, i32 0, i32 2 + %9 = load ptr, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + %11 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %10, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = ptrtoint ptr %9 to i64 + %14 = ptrtoint ptr %12 to i64 + %15 = sub i64 %13, %14 + %16 = sdiv exact i64 %15, 4 + invoke void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(ptr noundef nonnull align 8 dereferenceable(24) %3, ptr noundef %6, i64 noundef %16) + to label %17 unwind label %19 + +17: ; preds = %1 + %18 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %18) #15 + ret void + +19: ; preds = %1 + %20 = landingpad { ptr, i32 } + catch ptr null + %21 = extractvalue { ptr, i32 } %20, 0 + call void @__clang_call_terminate(ptr %21) #16 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt8_DestroyIPiEvT_S1_(ptr noundef %0, ptr noundef %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load ptr, ptr %4, align 8 + call void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(ptr noundef %5, ptr noundef %6) + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(ptr noundef %0, ptr noundef %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef %1, i64 noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i64, align 8 + store ptr %0, ptr %7, align 8 + store ptr %1, ptr %8, align 8 + store i64 %2, ptr %9, align 8 + %10 = load ptr, ptr %7, align 8 + %11 = load ptr, ptr %8, align 8 + %12 = icmp ne ptr %11, null + br i1 %12, label %13, label %20 + +13: ; preds = %3 + %14 = getelementptr inbounds %"struct.std::_Vector_base", ptr %10, i32 0, i32 0 + %15 = load ptr, ptr %8, align 8 + %16 = load i64, ptr %9, align 8 + store ptr %14, ptr %4, align 8 + store ptr %15, ptr %5, align 8 + store i64 %16, ptr %6, align 8 + %17 = load ptr, ptr %4, align 8 + %18 = load ptr, ptr %5, align 8 + %19 = load i64, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %18, i64 noundef %19) + br label %20 + +20: ; preds = %13, %3 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #18 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #12 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca i64, align 8 + %14 = alloca ptr, align 8 + %15 = alloca ptr, align 8 + %16 = alloca i64, align 8 + %17 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %18 = alloca ptr, align 8 + %19 = alloca ptr, align 8 + %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %10, i32 0, i32 0 + store ptr %1, ptr %20, align 8 + store ptr %0, ptr %11, align 8 + store ptr %2, ptr %12, align 8 + %21 = load ptr, ptr %11, align 8 + %22 = call noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(ptr noundef nonnull align 8 dereferenceable(24) %21, i64 noundef 1, ptr noundef @.str.5) + store i64 %22, ptr %13, align 8 + %23 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %24 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %23, i32 0, i32 0 + %25 = load ptr, ptr %24, align 8 + store ptr %25, ptr %14, align 8 + %26 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %27 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %26, i32 0, i32 1 + %28 = load ptr, ptr %27, align 8 + store ptr %28, ptr %15, align 8 + %29 = call ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %21) #15 + %30 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %17, i32 0, i32 0 + store ptr %29, ptr %30, align 8 + %31 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef nonnull align 8 dereferenceable(8) %17) #15 + store i64 %31, ptr %16, align 8 + %32 = load i64, ptr %13, align 8 + %33 = call noundef ptr @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(ptr noundef nonnull align 8 dereferenceable(24) %21, i64 noundef %32) + store ptr %33, ptr %18, align 8 + %34 = load ptr, ptr %18, align 8 + store ptr %34, ptr %19, align 8 + %35 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %36 = load ptr, ptr %18, align 8 + %37 = load i64, ptr %16, align 8 + %38 = getelementptr inbounds i32, ptr %36, i64 %37 + %39 = load ptr, ptr %12, align 8 + store ptr %35, ptr %7, align 8 + store ptr %38, ptr %8, align 8 + store ptr %39, ptr %9, align 8 + %40 = load ptr, ptr %7, align 8 + %41 = load ptr, ptr %8, align 8 + %42 = load ptr, ptr %9, align 8 + store ptr %40, ptr %4, align 8 + store ptr %41, ptr %5, align 8 + store ptr %42, ptr %6, align 8 + %43 = load ptr, ptr %4, align 8 + %44 = load ptr, ptr %5, align 8 + %45 = load ptr, ptr %6, align 8 + %46 = load i32, ptr %45, align 4 + store i32 %46, ptr %44, align 4 + store ptr null, ptr %19, align 8 + %47 = load ptr, ptr %14, align 8 + %48 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #15 + %49 = load ptr, ptr %48, align 8 + %50 = load ptr, ptr %18, align 8 + %51 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %21) #15 + %52 = call noundef ptr @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(ptr noundef %47, ptr noundef %49, ptr noundef %50, ptr noundef nonnull align 1 dereferenceable(1) %51) #15 + store ptr %52, ptr %19, align 8 + %53 = load ptr, ptr %19, align 8 + %54 = getelementptr inbounds i32, ptr %53, i32 1 + store ptr %54, ptr %19, align 8 + %55 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #15 + %56 = load ptr, ptr %55, align 8 + %57 = load ptr, ptr %15, align 8 + %58 = load ptr, ptr %19, align 8 + %59 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %21) #15 + %60 = call noundef ptr @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(ptr noundef %56, ptr noundef %57, ptr noundef %58, ptr noundef nonnull align 1 dereferenceable(1) %59) #15 + store ptr %60, ptr %19, align 8 + %61 = load ptr, ptr %14, align 8 + %62 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %63 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %62, i32 0, i32 2 + %64 = load ptr, ptr %63, align 8 + %65 = load ptr, ptr %14, align 8 + %66 = ptrtoint ptr %64 to i64 + %67 = ptrtoint ptr %65 to i64 + %68 = sub i64 %66, %67 + %69 = sdiv exact i64 %68, 4 + call void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(ptr noundef nonnull align 8 dereferenceable(24) %21, ptr noundef %61, i64 noundef %69) + %70 = load ptr, ptr %18, align 8 + %71 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %72 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %71, i32 0, i32 0 + store ptr %70, ptr %72, align 8 + %73 = load ptr, ptr %19, align 8 + %74 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %75 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %74, i32 0, i32 1 + store ptr %73, ptr %75, align 8 + %76 = load ptr, ptr %18, align 8 + %77 = load i64, ptr %13, align 8 + %78 = getelementptr inbounds i32, ptr %76, i64 %77 + %79 = getelementptr inbounds %"struct.std::_Vector_base", ptr %21, i32 0, i32 0 + %80 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %79, i32 0, i32 2 + store ptr %78, ptr %80, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { + %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"struct.std::_Vector_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %5, i32 0, i32 1 + call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef nonnull align 8 dereferenceable(8) %6) #15 + %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1, ptr noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #15 + %11 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #15 + %12 = sub i64 %10, %11 + %13 = load i64, ptr %5, align 8 + %14 = icmp ult i64 %12, %13 + br i1 %14, label %15, label %17 + +15: ; preds = %3 + %16 = load ptr, ptr %6, align 8 + call void @_ZSt20__throw_length_errorPKc(ptr noundef %16) #17 + unreachable + +17: ; preds = %3 + %18 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #15 + %19 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #15 + store i64 %19, ptr %8, align 8 + %20 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %8, ptr noundef nonnull align 8 dereferenceable(8) %5) + %21 = load i64, ptr %20, align 8 + %22 = add i64 %18, %21 + store i64 %22, ptr %7, align 8 + %23 = load i64, ptr %7, align 8 + %24 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #15 + %25 = icmp ult i64 %23, %24 + br i1 %25, label %30, label %26 + +26: ; preds = %17 + %27 = load i64, ptr %7, align 8 + %28 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #15 + %29 = icmp ugt i64 %27, %28 + br i1 %29, label %30, label %32 + +30: ; preds = %26, %17 + %31 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #15 + br label %34 + +32: ; preds = %26 + %33 = load i64, ptr %7, align 8 + br label %34 + +34: ; preds = %32, %30 + %35 = phi i64 [ %31, %30 ], [ %33, %32 ] + ret i64 %35 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %5) #15 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %8) #15 + %10 = load ptr, ptr %9, align 8 + %11 = ptrtoint ptr %7 to i64 + %12 = ptrtoint ptr %10 to i64 + %13 = sub i64 %11, %12 + %14 = sdiv exact i64 %13, 4 + ret i64 %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { + %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"struct.std::_Vector_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %5, i32 0, i32 0 + call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef nonnull align 8 dereferenceable(8) %6) #15 + %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #2 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + %7 = load ptr, ptr %5, align 8 + %8 = load i64, ptr %6, align 8 + %9 = icmp ne i64 %8, 0 + br i1 %9, label %10, label %16 + +10: ; preds = %2 + %11 = getelementptr inbounds %"struct.std::_Vector_base", ptr %7, i32 0, i32 0 + %12 = load i64, ptr %6, align 8 + store ptr %11, ptr %3, align 8 + store i64 %12, ptr %4, align 8 + %13 = load ptr, ptr %3, align 8 + %14 = load i64, ptr %4, align 8 + %15 = call noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %13, i64 noundef %14, ptr noundef null) + br label %17 + +16: ; preds = %2 + br label %17 + +17: ; preds = %16, %10 + %18 = phi ptr [ %15, %10 ], [ null, %16 ] + ret ptr %18 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #0 comdat align 2 { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = load ptr, ptr %7, align 8 + %12 = load ptr, ptr %8, align 8 + %13 = call noundef ptr @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(ptr noundef %9, ptr noundef %10, ptr noundef %11, ptr noundef nonnull align 1 dereferenceable(1) %12) #15 + ret ptr %13 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + %5 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #15 + ret i64 %5 +} + +; Function Attrs: noreturn +declare void @_ZSt20__throw_length_errorPKc(ptr noundef) #9 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %0) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %5, align 8 + store i64 2305843009213693951, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + store ptr %8, ptr %4, align 8 + %9 = load ptr, ptr %4, align 8 + store ptr %9, ptr %3, align 8 + %10 = load ptr, ptr %3, align 8 + store ptr %10, ptr %2, align 8 + %11 = load ptr, ptr %2, align 8 + store i64 2305843009213693951, ptr %7, align 8 + %12 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + to label %13 unwind label %15 + +13: ; preds = %1 + %14 = load i64, ptr %12, align 8 + ret i64 %14 + +15: ; preds = %1 + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #16 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) unnamed_addr #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %7, align 8 + store ptr %8, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 2305843009213693951 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 4611686018427387903 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #17 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 4 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #19 + ret ptr %20 +} + +; Function Attrs: noreturn +declare void @_ZSt28__throw_bad_array_new_lengthv() #9 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #9 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #13 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #0 comdat { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %9) #15 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %11) #15 + %13 = load ptr, ptr %7, align 8 + %14 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %13) #15 + %15 = load ptr, ptr %8, align 8 + %16 = call noundef ptr @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E(ptr noundef %10, ptr noundef %12, ptr noundef %14, ptr noundef nonnull align 1 dereferenceable(1) %15) #15 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #0 comdat { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i64, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = load ptr, ptr %5, align 8 + %12 = ptrtoint ptr %10 to i64 + %13 = ptrtoint ptr %11 to i64 + %14 = sub i64 %12, %13 + %15 = sdiv exact i64 %14, 4 + store i64 %15, ptr %9, align 8 + %16 = load i64, ptr %9, align 8 + %17 = icmp sgt i64 %16, 0 + br i1 %17, label %18, label %23 + +18: ; preds = %4 + %19 = load ptr, ptr %7, align 8 + %20 = load ptr, ptr %5, align 8 + %21 = load i64, ptr %9, align 8 + %22 = mul i64 %21, 4 + call void @llvm.memmove.p0.p0.i64(ptr align 4 %19, ptr align 4 %20, i64 %22, i1 false) + br label %23 + +23: ; preds = %18, %4 + %24 = load ptr, ptr %7, align 8 + %25 = load i64, ptr %9, align 8 + %26 = getelementptr inbounds i32, ptr %24, i64 %25 + ret ptr %26 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %0) #0 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_(i64 noundef %0, ptr noundef nonnull align 1 dereferenceable(1) %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"class.std::allocator", align 1 + store i64 %0, ptr %8, align 8 + store ptr %1, ptr %9, align 8 + %11 = load i64, ptr %8, align 8 + %12 = load ptr, ptr %9, align 8 + store ptr %10, ptr %5, align 8 + store ptr %12, ptr %6, align 8 + %13 = load ptr, ptr %5, align 8 + %14 = load ptr, ptr %6, align 8 + store ptr %13, ptr %3, align 8 + store ptr %14, ptr %4, align 8 + %15 = load ptr, ptr %3, align 8 + %16 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %10) #15 + %17 = icmp ugt i64 %11, %16 + store ptr %10, ptr %7, align 8 + %18 = load ptr, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %18) #15 + br i1 %17, label %19, label %20 + +19: ; preds = %2 + call void @_ZSt20__throw_length_errorPKc(ptr noundef @.str.6) #17 + unreachable + +20: ; preds = %2 + %21 = load i64, ptr %8, align 8 + ret i64 %21 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_Vector_base", ptr %9, i32 0, i32 0 + %11 = load ptr, ptr %6, align 8 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_(ptr noundef nonnull align 8 dereferenceable(24) %10, ptr noundef nonnull align 1 dereferenceable(1) %11) #15 + %12 = load i64, ptr %5, align 8 + invoke void @_ZNSt12_Vector_baseIiSaIiEE17_M_create_storageEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef %12) + to label %13 unwind label %14 + +13: ; preds = %3 + ret void + +14: ; preds = %3 + %15 = landingpad { ptr, i32 } + cleanup + %16 = extractvalue { ptr, i32 } %15, 0 + store ptr %16, ptr %7, align 8 + %17 = extractvalue { ptr, i32 } %15, 1 + store i32 %17, ptr %8, align 4 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %10) #15 + br label %18 + +18: ; preds = %14 + %19 = load ptr, ptr %7, align 8 + %20 = load i32, ptr %8, align 4 + %21 = insertvalue { ptr, i32 } poison, ptr %19, 0 + %22 = insertvalue { ptr, i32 } %21, i32 %20, 1 + resume { ptr, i32 } %22 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRKi(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::_Vector_base", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = load i64, ptr %5, align 8 + %12 = load ptr, ptr %6, align 8 + %13 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %7) #15 + %14 = call noundef ptr @_ZSt24__uninitialized_fill_n_aIPimiiET_S1_T0_RKT1_RSaIT2_E(ptr noundef %10, i64 noundef %11, ptr noundef nonnull align 4 dereferenceable(4) %12, ptr noundef nonnull align 1 dereferenceable(1) %13) + %15 = getelementptr inbounds %"struct.std::_Vector_base", ptr %7, i32 0, i32 0 + %16 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %15, i32 0, i32 1 + store ptr %14, ptr %16, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 1 dereferenceable(1) %1) unnamed_addr #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + store ptr %0, ptr %7, align 8 + store ptr %1, ptr %8, align 8 + %9 = load ptr, ptr %7, align 8 + %10 = load ptr, ptr %8, align 8 + store ptr %9, ptr %5, align 8 + store ptr %10, ptr %6, align 8 + %11 = load ptr, ptr %5, align 8 + %12 = load ptr, ptr %6, align 8 + store ptr %11, ptr %3, align 8 + store ptr %12, ptr %4, align 8 + %13 = load ptr, ptr %3, align 8 + call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %9) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_M_create_storageEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #2 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = call noundef ptr @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(ptr noundef nonnull align 8 dereferenceable(24) %5, i64 noundef %6) + %8 = getelementptr inbounds %"struct.std::_Vector_base", ptr %5, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %8, i32 0, i32 0 + store ptr %7, ptr %9, align 8 + %10 = getelementptr inbounds %"struct.std::_Vector_base", ptr %5, i32 0, i32 0 + %11 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %10, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::_Vector_base", ptr %5, i32 0, i32 0 + %14 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %13, i32 0, i32 1 + store ptr %12, ptr %14, align 8 + %15 = getelementptr inbounds %"struct.std::_Vector_base", ptr %5, i32 0, i32 0 + %16 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %15, i32 0, i32 0 + %17 = load ptr, ptr %16, align 8 + %18 = load i64, ptr %4, align 8 + %19 = getelementptr inbounds i32, ptr %17, i64 %18 + %20 = getelementptr inbounds %"struct.std::_Vector_base", ptr %5, i32 0, i32 0 + %21 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %20, i32 0, i32 2 + store ptr %19, ptr %21, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt24__uninitialized_fill_n_aIPimiiET_S1_T0_RKT1_RSaIT2_E(ptr noundef %0, i64 noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #2 comdat { + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load i64, ptr %6, align 8 + %11 = load ptr, ptr %7, align 8 + %12 = call noundef ptr @_ZSt20uninitialized_fill_nIPimiET_S1_T0_RKT1_(ptr noundef %9, i64 noundef %10, ptr noundef nonnull align 4 dereferenceable(4) %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt20uninitialized_fill_nIPimiET_S1_T0_RKT1_(ptr noundef %0, i64 noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i8, align 1 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + store i8 1, ptr %7, align 1 + %8 = load ptr, ptr %4, align 8 + %9 = load i64, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt22__uninitialized_fill_nILb1EE15__uninit_fill_nIPimiEET_S3_T0_RKT1_(ptr noundef %8, i64 noundef %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + ret ptr %11 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt22__uninitialized_fill_nILb1EE15__uninit_fill_nIPimiEET_S3_T0_RKT1_(ptr noundef %0, i64 noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load i64, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt6fill_nIPimiET_S1_T0_RKT1_(ptr noundef %7, i64 noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt6fill_nIPimiET_S1_T0_RKT1_(ptr noundef %0, i64 noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + %8 = alloca %"struct.std::random_access_iterator_tag", align 1 + %9 = alloca %"struct.std::random_access_iterator_tag", align 1 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %10 = load ptr, ptr %5, align 8 + %11 = load i64, ptr %6, align 8 + %12 = call noundef i64 @_ZSt17__size_to_integerm(i64 noundef %11) + %13 = load ptr, ptr %7, align 8 + store ptr %5, ptr %4, align 8 + %14 = call noundef ptr @_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26random_access_iterator_tag(ptr noundef %10, i64 noundef %12, ptr noundef nonnull align 4 dereferenceable(4) %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26random_access_iterator_tag(ptr noundef %0, i64 noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::random_access_iterator_tag", align 1 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store i64 %1, ptr %7, align 8 + store ptr %2, ptr %8, align 8 + %9 = load i64, ptr %7, align 8 + %10 = icmp ule i64 %9, 0 + br i1 %10, label %11, label %13 + +11: ; preds = %3 + %12 = load ptr, ptr %6, align 8 + store ptr %12, ptr %4, align 8 + br label %22 + +13: ; preds = %3 + %14 = load ptr, ptr %6, align 8 + %15 = load ptr, ptr %6, align 8 + %16 = load i64, ptr %7, align 8 + %17 = getelementptr inbounds i32, ptr %15, i64 %16 + %18 = load ptr, ptr %8, align 8 + call void @_ZSt8__fill_aIPiiEvT_S1_RKT0_(ptr noundef %14, ptr noundef %17, ptr noundef nonnull align 4 dereferenceable(4) %18) + %19 = load ptr, ptr %6, align 8 + %20 = load i64, ptr %7, align 8 + %21 = getelementptr inbounds i32, ptr %19, i64 %20 + store ptr %21, ptr %4, align 8 + br label %22 + +22: ; preds = %13, %11 + %23 = load ptr, ptr %4, align 8 + ret ptr %23 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt17__size_to_integerm(i64 noundef %0) #0 comdat { + %2 = alloca i64, align 8 + store i64 %0, ptr %2, align 8 + %3 = load i64, ptr %2, align 8 + ret i64 %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt8__fill_aIPiiEvT_S1_RKT0_(ptr noundef %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + call void @_ZSt9__fill_a1IPiiEN9__gnu_cxx11__enable_ifIXsr11__is_scalarIT0_EE7__valueEvE6__typeET_S6_RKS3_(ptr noundef %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = load i32, ptr %8, align 4 + store i32 %9, ptr %7, align 4 + br label %10 + +10: ; preds = %17, %3 + %11 = load ptr, ptr %4, align 8 + %12 = load ptr, ptr %5, align 8 + %13 = icmp ne ptr %11, %12 + br i1 %13, label %14, label %20 + +14: ; preds = %10 + %15 = load i32, ptr %7, align 4 + %16 = load ptr, ptr %4, align 8 + store i32 %15, ptr %16, align 4 + br label %17 + +17: ; preds = %14 + %18 = load ptr, ptr %4, align 8 + %19 = getelementptr inbounds i32, ptr %18, i32 1 + store ptr %19, ptr %4, align 8 + br label %10, !llvm.loop !34 + +20: ; preds = %10 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiiET0_T_SA_S9_RSaIT1_E(ptr %0, ptr %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #2 comdat { + %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %6 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %10 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %5, i32 0, i32 0 + store ptr %0, ptr %11, align 8 + %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %6, i32 0, i32 0 + store ptr %1, ptr %12, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %5, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %10, ptr align 8 %6, i64 8, i1 false) + %13 = load ptr, ptr %7, align 8 + %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %9, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %10, i32 0, i32 0 + %17 = load ptr, ptr %16, align 8 + %18 = call noundef ptr @_ZSt18uninitialized_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(ptr %15, ptr %17, ptr noundef %13) + ret ptr %18 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNKSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { + %2 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"struct.std::_Vector_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %5, i32 0, i32 0 + call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef nonnull align 8 dereferenceable(8) %6) #15 + %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNKSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { + %2 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"struct.std::_Vector_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %5, i32 0, i32 1 + call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef nonnull align 8 dereferenceable(8) %6) #15 + %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt18uninitialized_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(ptr %0, ptr %1, ptr noundef %2) #2 comdat { + %4 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %6 = alloca ptr, align 8 + %7 = alloca i8, align 1 + %8 = alloca i8, align 1 + %9 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %10 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %4, i32 0, i32 0 + store ptr %0, ptr %11, align 8 + %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %5, i32 0, i32 0 + store ptr %1, ptr %12, align 8 + store ptr %2, ptr %6, align 8 + store i8 1, ptr %7, align 1 + store i8 1, ptr %8, align 1 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %4, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %10, ptr align 8 %5, i64 8, i1 false) + %13 = load ptr, ptr %6, align 8 + %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %9, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %10, i32 0, i32 0 + %17 = load ptr, ptr %16, align 8 + %18 = call noundef ptr @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiEET0_T_SC_SB_(ptr %15, ptr %17, ptr noundef %13) + ret ptr %18 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiEET0_T_SC_SB_(ptr %0, ptr %1, ptr noundef %2) #2 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 ptr, align 8 + %7 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %8 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %4, i32 0, i32 0 + store ptr %0, ptr %9, align 8 + %10 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %5, i32 0, i32 0 + store ptr %1, ptr %10, align 8 + store ptr %2, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %7, ptr align 8 %4, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %5, i64 8, i1 false) + %11 = load ptr, ptr %6, align 8 + %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %7, i32 0, i32 0 + %13 = load ptr, ptr %12, align 8 + %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %8, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + %16 = call noundef ptr @_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(ptr %13, ptr %15, ptr noundef %11) + ret ptr %16 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(ptr %0, ptr %1, ptr noundef %2) #2 comdat { + %4 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %6 = alloca ptr, align 8 + %7 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %8 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %9 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %10 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %4, i32 0, i32 0 + store ptr %0, ptr %11, align 8 + %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %5, i32 0, i32 0 + store ptr %1, ptr %12, align 8 + store ptr %2, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %4, i64 8, i1 false) + %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %8, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + %15 = call ptr @_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEET_S8_(ptr %14) + %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %7, i32 0, i32 0 + store ptr %15, ptr %16, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %10, ptr align 8 %5, i64 8, i1 false) + %17 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %10, i32 0, i32 0 + %18 = load ptr, ptr %17, align 8 + %19 = call ptr @_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEET_S8_(ptr %18) + %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %9, i32 0, i32 0 + store ptr %19, ptr %20, align 8 + %21 = load ptr, ptr %6, align 8 + %22 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %7, i32 0, i32 0 + %23 = load ptr, ptr %22, align 8 + %24 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %9, i32 0, i32 0 + %25 = load ptr, ptr %24, align 8 + %26 = call noundef ptr @_ZSt13__copy_move_aILb0EN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET1_T0_SA_S9_(ptr %23, ptr %25, ptr noundef %21) + ret ptr %26 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET1_T0_SA_S9_(ptr %0, ptr %1, ptr noundef %2) #2 comdat { + %4 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %6 = alloca ptr, align 8 + %7 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %8 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %4, i32 0, i32 0 + store ptr %0, ptr %9, align 8 + %10 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %5, i32 0, i32 0 + store ptr %1, ptr %10, align 8 + store ptr %2, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %7, ptr align 8 %4, i64 8, i1 false) + %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %7, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = call noundef ptr @_ZSt12__niter_baseIPKiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS5_T0_EE(ptr %12) #15 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %5, i64 8, i1 false) + %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %8, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + %16 = call noundef ptr @_ZSt12__niter_baseIPKiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS5_T0_EE(ptr %15) #15 + %17 = load ptr, ptr %6, align 8 + %18 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %17) #15 + %19 = call noundef ptr @_ZSt14__copy_move_a1ILb0EPKiPiET1_T0_S4_S3_(ptr noundef %13, ptr noundef %16, ptr noundef %18) + %20 = call noundef ptr @_ZSt12__niter_wrapIPiET_RKS1_S1_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %19) + ret ptr %20 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEET_S8_(ptr %0) #0 comdat { + %2 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %3 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %3, i32 0, i32 0 + store ptr %0, ptr %4, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %2, ptr align 8 %3, i64 8, i1 false) + %5 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %2, i32 0, i32 0 + %6 = load ptr, ptr %5, align 8 + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPiET_RKS1_S1_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPKiPiET1_T0_S4_S3_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt14__copy_move_a2ILb0EPKiPiET1_T0_S4_S3_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPKiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS5_T0_EE(ptr %0) #0 comdat { + %2 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 + %3 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %2, i32 0, i32 0 + store ptr %0, ptr %3, align 8 + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %2) #15 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPKiPiET1_T0_S4_S3_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIKiiEEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIKiiEEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 4 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %21 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load i64, ptr %7, align 8 + %20 = mul i64 4, %19 + call void @llvm.memmove.p0.p0.i64(ptr align 4 %17, ptr align 4 %18, i64 %20, i1 false) + br label %28 + +21: ; preds = %3 + %22 = load i64, ptr %7, align 8 + %23 = icmp eq i64 %22, 1 + br i1 %23, label %24, label %27 + +24: ; preds = %21 + %25 = load ptr, ptr %6, align 8 + %26 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIiKiEEvPT_PT0_(ptr noundef %25, ptr noundef %26) + br label %27 + +27: ; preds = %24, %21 + br label %28 + +28: ; preds = %27, %16 + %29 = load ptr, ptr %6, align 8 + %30 = load i64, ptr %7, align 8 + %31 = getelementptr inbounds i32, ptr %29, i64 %30 + ret ptr %31 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIiKiEEvPT_PT0_(ptr noundef %0, ptr noundef %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = load i32, ptr %5, align 4 + %7 = load ptr, ptr %3, align 8 + store i32 %6, ptr %7, align 4 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) unnamed_addr #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %7, align 8 + store ptr %8, ptr %6, align 8 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn memory(inaccessiblemem: readwrite) +declare void @llvm.experimental.noalias.scope.decl(metadata) #14 + +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #2 = { 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 #3 = { nocallback nofree nosync 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" } +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 = { 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 = { 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 = { 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 = { 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 #10 = { noinline noreturn 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { 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 = { nocallback nofree nosync nounwind willreturn memory(inaccessiblemem: readwrite) } +attributes #15 = { nounwind } +attributes #16 = { noreturn nounwind } +attributes #17 = { noreturn } +attributes #18 = { builtin nounwind } +attributes #19 = { builtin allocsize(0) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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 = !{!17} +!17 = distinct !{!17, !18, !"_ZN9__gnu_cxx14__alloc_traitsISaIiEiE17_S_select_on_copyERKS1_: argument 0"} +!18 = distinct !{!18, !"_ZN9__gnu_cxx14__alloc_traitsISaIiEiE17_S_select_on_copyERKS1_"} +!19 = !{!20} +!20 = distinct !{!20, !21, !"_ZNSt16allocator_traitsISaIiEE37select_on_container_copy_constructionERKS0_: argument 0"} +!21 = distinct !{!21, !"_ZNSt16allocator_traitsISaIiEE37select_on_container_copy_constructionERKS0_"} +!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} +!29 = distinct !{!29, !7} +!30 = distinct !{!30, !7} +!31 = distinct !{!31, !7} +!32 = distinct !{!32, !7} +!33 = distinct !{!33, !7} +!34 = distinct !{!34, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/count-1s-sorted-binary-array.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/count-1s-sorted-binary-array.ll new file mode 100644 index 000000000..f39b113f4 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/count-1s-sorted-binary-array.ll @@ -0,0 +1,150 @@ +; ModuleID = 'PE-benchmarks/count-1s-sorted-binary-array.cpp' +source_filename = "PE-benchmarks/count-1s-sorted-binary-array.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__const.main.arr = private unnamed_addr constant [7 x i8] c"\01\01\01\01\00\00\00", align 1 +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z9countOnesPbii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store i32 %2, ptr %7, align 4 + %9 = load i32, ptr %7, align 4 + %10 = load i32, ptr %6, align 4 + %11 = icmp sge i32 %9, %10 + br i1 %11, label %12, label %65 + +12: ; preds = %3 + %13 = load i32, ptr %6, align 4 + %14 = load i32, ptr %7, align 4 + %15 = load i32, ptr %6, align 4 + %16 = sub nsw i32 %14, %15 + %17 = sdiv i32 %16, 2 + %18 = add nsw i32 %13, %17 + store i32 %18, ptr %8, align 4 + %19 = load i32, ptr %8, align 4 + %20 = load i32, ptr %7, align 4 + %21 = icmp eq i32 %19, %20 + br i1 %21, label %32, label %22 + +22: ; preds = %12 + %23 = load ptr, ptr %5, align 8 + %24 = load i32, ptr %8, align 4 + %25 = add nsw i32 %24, 1 + %26 = sext i32 %25 to i64 + %27 = getelementptr inbounds i8, ptr %23, i64 %26 + %28 = load i8, ptr %27, align 1 + %29 = trunc i8 %28 to i1 + %30 = zext i1 %29 to i32 + %31 = icmp eq i32 %30, 0 + br i1 %31, label %32, label %44 + +32: ; preds = %22, %12 + %33 = load ptr, ptr %5, align 8 + %34 = load i32, ptr %8, align 4 + %35 = sext i32 %34 to i64 + %36 = getelementptr inbounds i8, ptr %33, i64 %35 + %37 = load i8, ptr %36, align 1 + %38 = trunc i8 %37 to i1 + %39 = zext i1 %38 to i32 + %40 = icmp eq i32 %39, 1 + br i1 %40, label %41, label %44 + +41: ; preds = %32 + %42 = load i32, ptr %8, align 4 + %43 = add nsw i32 %42, 1 + store i32 %43, ptr %4, align 4 + br label %66 + +44: ; preds = %32, %22 + %45 = load ptr, ptr %5, align 8 + %46 = load i32, ptr %8, align 4 + %47 = sext i32 %46 to i64 + %48 = getelementptr inbounds i8, ptr %45, i64 %47 + %49 = load i8, ptr %48, align 1 + %50 = trunc i8 %49 to i1 + %51 = zext i1 %50 to i32 + %52 = icmp eq i32 %51, 1 + br i1 %52, label %53, label %59 + +53: ; preds = %44 + %54 = load ptr, ptr %5, align 8 + %55 = load i32, ptr %8, align 4 + %56 = add nsw i32 %55, 1 + %57 = load i32, ptr %7, align 4 + %58 = call noundef i32 @_Z9countOnesPbii(ptr noundef %54, i32 noundef %56, i32 noundef %57) + store i32 %58, ptr %4, align 4 + br label %66 + +59: ; preds = %44 + %60 = load ptr, ptr %5, align 8 + %61 = load i32, ptr %6, align 4 + %62 = load i32, ptr %8, align 4 + %63 = sub nsw i32 %62, 1 + %64 = call noundef i32 @_Z9countOnesPbii(ptr noundef %60, i32 noundef %61, i32 noundef %63) + store i32 %64, ptr %4, align 4 + br label %66 + +65: ; preds = %3 + store i32 0, ptr %4, align 4 + br label %66 + +66: ; preds = %65, %59, %53, %41 + %67 = load i32, ptr %4, align 4 + ret i32 %67 +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #1 { + %1 = alloca i32, align 4 + %2 = alloca [7 x i8], align 1 + %3 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %2, ptr align 1 @__const.main.arr, i64 7, i1 false) + store i32 7, ptr %3, align 4 + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %5 = getelementptr inbounds [7 x i8], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + %7 = sub nsw i32 %6, 1 + %8 = call noundef i32 @_Z9countOnesPbii(ptr noundef %5, i32 noundef 0, i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %8) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 + +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/count-number-binary-strings-without-consecutive-1s.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/count-number-binary-strings-without-consecutive-1s.ll new file mode 100644 index 000000000..c27011d0f --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/count-number-binary-strings-without-consecutive-1s.ll @@ -0,0 +1,134 @@ +; ModuleID = 'PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp' +source_filename = "PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_ZSt4cout = external global %"class.std::basic_ostream", align 8 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z12countStringsi(i32 noundef %0) #0 { + %2 = alloca i32, align 4 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i64, align 8 + %6 = alloca i32, align 4 + store i32 %0, ptr %2, align 4 + %7 = load i32, ptr %2, align 4 + %8 = zext i32 %7 to i64 + %9 = call ptr @llvm.stacksave() + store ptr %9, ptr %3, align 8 + %10 = alloca i32, i64 %8, align 16 + store i64 %8, ptr %4, align 8 + %11 = load i32, ptr %2, align 4 + %12 = zext i32 %11 to i64 + %13 = alloca i32, i64 %12, align 16 + store i64 %12, ptr %5, align 8 + %14 = getelementptr inbounds i32, ptr %13, i64 0 + store i32 1, ptr %14, align 16 + %15 = getelementptr inbounds i32, ptr %10, i64 0 + store i32 1, ptr %15, align 16 + store i32 1, ptr %6, align 4 + br label %16 + +16: ; preds = %43, %1 + %17 = load i32, ptr %6, align 4 + %18 = load i32, ptr %2, align 4 + %19 = icmp slt i32 %17, %18 + br i1 %19, label %20, label %46 + +20: ; preds = %16 + %21 = load i32, ptr %6, align 4 + %22 = sub nsw i32 %21, 1 + %23 = sext i32 %22 to i64 + %24 = getelementptr inbounds i32, ptr %10, i64 %23 + %25 = load i32, ptr %24, align 4 + %26 = load i32, ptr %6, align 4 + %27 = sub nsw i32 %26, 1 + %28 = sext i32 %27 to i64 + %29 = getelementptr inbounds i32, ptr %13, i64 %28 + %30 = load i32, ptr %29, align 4 + %31 = add nsw i32 %25, %30 + %32 = load i32, ptr %6, align 4 + %33 = sext i32 %32 to i64 + %34 = getelementptr inbounds i32, ptr %10, i64 %33 + store i32 %31, ptr %34, align 4 + %35 = load i32, ptr %6, align 4 + %36 = sub nsw i32 %35, 1 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds i32, ptr %10, i64 %37 + %39 = load i32, ptr %38, align 4 + %40 = load i32, ptr %6, align 4 + %41 = sext i32 %40 to i64 + %42 = getelementptr inbounds i32, ptr %13, i64 %41 + store i32 %39, ptr %42, align 4 + br label %43 + +43: ; preds = %20 + %44 = load i32, ptr %6, align 4 + %45 = add nsw i32 %44, 1 + store i32 %45, ptr %6, align 4 + br label %16, !llvm.loop !6 + +46: ; preds = %16 + %47 = load i32, ptr %2, align 4 + %48 = sub nsw i32 %47, 1 + %49 = sext i32 %48 to i64 + %50 = getelementptr inbounds i32, ptr %10, i64 %49 + %51 = load i32, ptr %50, align 4 + %52 = load i32, ptr %2, align 4 + %53 = sub nsw i32 %52, 1 + %54 = sext i32 %53 to i64 + %55 = getelementptr inbounds i32, ptr %13, i64 %54 + %56 = load i32, ptr %55, align 4 + %57 = add nsw i32 %51, %56 + %58 = load ptr, ptr %3, align 8 + call void @llvm.stackrestore(ptr %58) + ret i32 %57 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #2 { + %1 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + %2 = call noundef i32 @_Z12countStringsi(i32 noundef 3) + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %2) + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #3 + +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 = { nocallback nofree nosync nounwind willreturn } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll new file mode 100644 index 000000000..6237f73ba --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll @@ -0,0 +1,201 @@ +; ModuleID = 'PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp' +source_filename = "PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@lookup = dso_local global [101 x [501 x i64]] zeroinitializer, align 16 +@_ZSt4cout = external global %"class.std::basic_ostream", align 8 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i64 @_Z8countRecii(i32 noundef %0, i32 noundef %1) #0 { + %3 = alloca i64, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i64, align 8 + %7 = alloca i32, align 4 + store i32 %0, ptr %4, align 4 + store i32 %1, ptr %5, align 4 + %8 = load i32, ptr %4, align 4 + %9 = icmp eq i32 %8, 0 + br i1 %9, label %10, label %14 + +10: ; preds = %2 + %11 = load i32, ptr %5, align 4 + %12 = icmp eq i32 %11, 0 + %13 = zext i1 %12 to i64 + store i64 %13, ptr %3, align 8 + br label %61 + +14: ; preds = %2 + %15 = load i32, ptr %4, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds [101 x [501 x i64]], ptr @lookup, i64 0, i64 %16 + %18 = load i32, ptr %5, align 4 + %19 = sext i32 %18 to i64 + %20 = getelementptr inbounds [501 x i64], ptr %17, i64 0, i64 %19 + %21 = load i64, ptr %20, align 8 + %22 = icmp ne i64 %21, -1 + br i1 %22, label %23, label %31 + +23: ; preds = %14 + %24 = load i32, ptr %4, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds [101 x [501 x i64]], ptr @lookup, i64 0, i64 %25 + %27 = load i32, ptr %5, align 4 + %28 = sext i32 %27 to i64 + %29 = getelementptr inbounds [501 x i64], ptr %26, i64 0, i64 %28 + %30 = load i64, ptr %29, align 8 + store i64 %30, ptr %3, align 8 + br label %61 + +31: ; preds = %14 + store i64 0, ptr %6, align 8 + store i32 0, ptr %7, align 4 + br label %32 + +32: ; preds = %50, %31 + %33 = load i32, ptr %7, align 4 + %34 = icmp slt i32 %33, 10 + br i1 %34, label %35, label %53 + +35: ; preds = %32 + %36 = load i32, ptr %5, align 4 + %37 = load i32, ptr %7, align 4 + %38 = sub nsw i32 %36, %37 + %39 = icmp sge i32 %38, 0 + br i1 %39, label %40, label %49 + +40: ; preds = %35 + %41 = load i32, ptr %4, align 4 + %42 = sub nsw i32 %41, 1 + %43 = load i32, ptr %5, align 4 + %44 = load i32, ptr %7, align 4 + %45 = sub nsw i32 %43, %44 + %46 = call noundef i64 @_Z8countRecii(i32 noundef %42, i32 noundef %45) + %47 = load i64, ptr %6, align 8 + %48 = add i64 %47, %46 + store i64 %48, ptr %6, align 8 + br label %49 + +49: ; preds = %40, %35 + br label %50 + +50: ; preds = %49 + %51 = load i32, ptr %7, align 4 + %52 = add nsw i32 %51, 1 + store i32 %52, ptr %7, align 4 + br label %32, !llvm.loop !6 + +53: ; preds = %32 + %54 = load i64, ptr %6, align 8 + %55 = load i32, ptr %4, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds [101 x [501 x i64]], ptr @lookup, i64 0, i64 %56 + %58 = load i32, ptr %5, align 4 + %59 = sext i32 %58 to i64 + %60 = getelementptr inbounds [501 x i64], ptr %57, i64 0, i64 %59 + store i64 %54, ptr %60, align 8 + store i64 %54, ptr %3, align 8 + br label %61 + +61: ; preds = %53, %23, %10 + %62 = load i64, ptr %3, align 8 + ret i64 %62 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i64 @_Z10finalCountii(i32 noundef %0, i32 noundef %1) #0 { + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca i64, align 8 + %6 = alloca i32, align 4 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + call void @llvm.memset.p0.i64(ptr align 16 @lookup, i8 -1, i64 404808, i1 false) + store i64 0, ptr %5, align 8 + store i32 1, ptr %6, align 4 + br label %7 + +7: ; preds = %25, %2 + %8 = load i32, ptr %6, align 4 + %9 = icmp sle i32 %8, 9 + br i1 %9, label %10, label %28 + +10: ; preds = %7 + %11 = load i32, ptr %4, align 4 + %12 = load i32, ptr %6, align 4 + %13 = sub nsw i32 %11, %12 + %14 = icmp sge i32 %13, 0 + br i1 %14, label %15, label %24 + +15: ; preds = %10 + %16 = load i32, ptr %3, align 4 + %17 = sub nsw i32 %16, 1 + %18 = load i32, ptr %4, align 4 + %19 = load i32, ptr %6, align 4 + %20 = sub nsw i32 %18, %19 + %21 = call noundef i64 @_Z8countRecii(i32 noundef %17, i32 noundef %20) + %22 = load i64, ptr %5, align 8 + %23 = add i64 %22, %21 + store i64 %23, ptr %5, align 8 + br label %24 + +24: ; preds = %15, %10 + br label %25 + +25: ; preds = %24 + %26 = load i32, ptr %6, align 4 + %27 = add nsw i32 %26, 1 + store i32 %27, ptr %6, align 4 + br label %7, !llvm.loop !8 + +28: ; preds = %7 + %29 = load i64, ptr %5, align 8 + ret i64 %29 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #1 + +; 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 + store i32 0, ptr %1, align 4 + store i32 3, ptr %2, align 4 + store i32 5, ptr %3, align 4 + %4 = load i32, ptr %2, align 4 + %5 = load i32, ptr %3, align 4 + %6 = call noundef i64 @_Z10finalCountii(i32 noundef %4, i32 noundef %5) + %7 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEy(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i64 noundef %6) + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEy(ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #3 + +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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/count-possible-ways-to-construct-buildings.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/count-possible-ways-to-construct-buildings.ll new file mode 100644 index 000000000..ed6e9af1a --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/count-possible-ways-to-construct-buildings.ll @@ -0,0 +1,118 @@ +; ModuleID = 'PE-benchmarks/count-possible-ways-to-construct-buildings.cpp' +source_filename = "PE-benchmarks/count-possible-ways-to-construct-buildings.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9countWaysi(i32 noundef %0) #0 { + %2 = alloca i32, align 4 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + store i32 %0, ptr %3, align 4 + %10 = load i32, ptr %3, align 4 + %11 = icmp eq i32 %10, 1 + br i1 %11, label %12, label %13 + +12: ; preds = %1 + store i32 4, ptr %2, align 4 + br label %35 + +13: ; preds = %1 + store i32 1, ptr %4, align 4 + store i32 1, ptr %5, align 4 + store i32 2, ptr %8, align 4 + br label %14 + +14: ; preds = %25, %13 + %15 = load i32, ptr %8, align 4 + %16 = load i32, ptr %3, align 4 + %17 = icmp sle i32 %15, %16 + br i1 %17, label %18, label %28 + +18: ; preds = %14 + %19 = load i32, ptr %4, align 4 + store i32 %19, ptr %6, align 4 + %20 = load i32, ptr %5, align 4 + store i32 %20, ptr %7, align 4 + %21 = load i32, ptr %6, align 4 + %22 = load i32, ptr %7, align 4 + %23 = add nsw i32 %21, %22 + store i32 %23, ptr %5, align 4 + %24 = load i32, ptr %7, align 4 + store i32 %24, ptr %4, align 4 + br label %25 + +25: ; preds = %18 + %26 = load i32, ptr %8, align 4 + %27 = add nsw i32 %26, 1 + store i32 %27, ptr %8, align 4 + br label %14, !llvm.loop !6 + +28: ; preds = %14 + %29 = load i32, ptr %5, align 4 + %30 = load i32, ptr %4, align 4 + %31 = add nsw i32 %29, %30 + store i32 %31, ptr %9, align 4 + %32 = load i32, ptr %9, align 4 + %33 = load i32, ptr %9, align 4 + %34 = mul nsw i32 %32, %33 + store i32 %34, ptr %2, align 4 + br label %35 + +35: ; preds = %28, %12 + %36 = load i32, ptr %2, align 4 + ret i32 %36 +} + +; 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, ptr %1, align 4 + store i32 3, ptr %2, align 4 + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %4 = load i32, ptr %2, align 4 + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %3, i32 noundef %4) + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %5, ptr noundef @.str.1) + %7 = load i32, ptr %2, align 4 + %8 = call noundef i32 @_Z9countWaysi(i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %6, i32 noundef %8) + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/count-ways-reach-nth-stair.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/count-ways-reach-nth-stair.ll similarity index 60% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/count-ways-reach-nth-stair.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/count-ways-reach-nth-stair.ll index 04ace7769..0ac412f5e 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/count-ways-reach-nth-stair.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/count-ways-reach-nth-stair.ll @@ -9,48 +9,48 @@ target triple = "x86_64-pc-linux-gnu" 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 + %5 = alloca ptr, align 8 %6 = alloca i64, align 8 %7 = alloca i32, align 4 %8 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %9 = load i32, i32* %3, align 4 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %9 = load i32, ptr %3, align 4 %10 = zext i32 %9 to i64 - %11 = call i8* @llvm.stacksave() - store i8* %11, i8** %5, align 8 + %11 = call ptr @llvm.stacksave() + store ptr %11, ptr %5, align 8 %12 = alloca i32, i64 %10, align 16 - store i64 %10, i64* %6, align 8 - %13 = getelementptr inbounds i32, i32* %12, i64 0 - store i32 1, i32* %13, align 16 - %14 = getelementptr inbounds i32, i32* %12, i64 1 - store i32 1, i32* %14, align 4 - store i32 2, i32* %7, align 4 + store i64 %10, ptr %6, align 8 + %13 = getelementptr inbounds i32, ptr %12, i64 0 + store i32 1, ptr %13, align 16 + %14 = getelementptr inbounds i32, ptr %12, i64 1 + store i32 1, ptr %14, align 4 + store i32 2, ptr %7, align 4 br label %15 15: ; preds = %49, %2 - %16 = load i32, i32* %7, align 4 - %17 = load i32, i32* %3, align 4 + %16 = load i32, ptr %7, align 4 + %17 = load i32, ptr %3, align 4 %18 = icmp slt i32 %16, %17 br i1 %18, label %19, label %52 19: ; preds = %15 - %20 = load i32, i32* %7, align 4 + %20 = load i32, ptr %7, align 4 %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i32, i32* %12, i64 %21 - store i32 0, i32* %22, align 4 - store i32 1, i32* %8, align 4 + %22 = getelementptr inbounds i32, ptr %12, i64 %21 + store i32 0, ptr %22, align 4 + store i32 1, ptr %8, align 4 br label %23 23: ; preds = %45, %19 - %24 = load i32, i32* %8, align 4 - %25 = load i32, i32* %4, align 4 + %24 = load i32, ptr %8, align 4 + %25 = load i32, ptr %4, align 4 %26 = icmp sle i32 %24, %25 br i1 %26, label %27, label %31 27: ; preds = %23 - %28 = load i32, i32* %8, align 4 - %29 = load i32, i32* %7, align 4 + %28 = load i32, ptr %8, align 4 + %29 = load i32, ptr %7, align 4 %30 = icmp sle i32 %28, %29 br label %31 @@ -59,61 +59,61 @@ define dso_local noundef i32 @_Z13countWaysUtilii(i32 noundef %0, i32 noundef %1 br i1 %32, label %33, label %48 33: ; preds = %31 - %34 = load i32, i32* %7, align 4 - %35 = load i32, i32* %8, align 4 + %34 = load i32, ptr %7, align 4 + %35 = load i32, ptr %8, align 4 %36 = sub nsw i32 %34, %35 %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i32, i32* %12, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = load i32, i32* %7, align 4 + %38 = getelementptr inbounds i32, ptr %12, i64 %37 + %39 = load i32, ptr %38, align 4 + %40 = load i32, ptr %7, align 4 %41 = sext i32 %40 to i64 - %42 = getelementptr inbounds i32, i32* %12, i64 %41 - %43 = load i32, i32* %42, align 4 + %42 = getelementptr inbounds i32, ptr %12, i64 %41 + %43 = load i32, ptr %42, align 4 %44 = add nsw i32 %43, %39 - store i32 %44, i32* %42, align 4 + store i32 %44, ptr %42, align 4 br label %45 45: ; preds = %33 - %46 = load i32, i32* %8, align 4 + %46 = load i32, ptr %8, align 4 %47 = add nsw i32 %46, 1 - store i32 %47, i32* %8, align 4 + store i32 %47, ptr %8, align 4 br label %23, !llvm.loop !6 48: ; preds = %31 br label %49 49: ; preds = %48 - %50 = load i32, i32* %7, align 4 + %50 = load i32, ptr %7, align 4 %51 = add nsw i32 %50, 1 - store i32 %51, i32* %7, align 4 + store i32 %51, ptr %7, align 4 br label %15, !llvm.loop !8 52: ; preds = %15 - %53 = load i32, i32* %3, align 4 + %53 = load i32, ptr %3, align 4 %54 = sub nsw i32 %53, 1 %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i32, i32* %12, i64 %55 - %57 = load i32, i32* %56, align 4 - %58 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %58) + %56 = getelementptr inbounds i32, ptr %12, i64 %55 + %57 = load i32, ptr %56, align 4 + %58 = load ptr, ptr %5, align 8 + call void @llvm.stackrestore(ptr %58) ret i32 %57 } -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 ; 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 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %5 = load i32, ptr %3, align 4 %6 = add nsw i32 %5, 1 - %7 = load i32, i32* %4, align 4 + %7 = load i32, ptr %4, align 4 %8 = call noundef i32 @_Z13countWaysUtilii(i32 noundef %6, i32 noundef %7) ret i32 %8 } @@ -123,20 +123,20 @@ define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 4, i32* %2, align 4 - store i32 2, i32* %3, align 4 - %4 = load i32, i32* %2, align 4 - %5 = load i32, i32* %3, align 4 + store i32 0, ptr %1, align 4 + store i32 4, ptr %2, align 4 + store i32 2, ptr %3, align 4 + %4 = load i32, ptr %2, align 4 + %5 = load i32, ptr %3, align 4 %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) + %7 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %6) ret i32 0 } -declare i32 @printf(i8* noundef, ...) #3 +declare i32 @printf(ptr noundef, ...) #3 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 #1 = { nocallback nofree nosync nounwind willreturn } 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" } @@ -144,11 +144,11 @@ attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{i32 7, !"PIC Level", i32 2} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/cut-vertices.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/cut-vertices.ll new file mode 100644 index 000000000..fd5953511 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/cut-vertices.ll @@ -0,0 +1,1120 @@ +; ModuleID = 'PE-benchmarks/cut-vertices.cpp' +source_filename = "PE-benchmarks/cut-vertices.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"struct.std::_List_iterator" = type { ptr } +%"struct.std::__allocated_ptr" = type { ptr, ptr } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZSt3minIiERKT_S2_S2_ = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +@_ZZN5Graph6APUtilEiPbPiS1_S1_S0_E4time = internal global i32 0, align 4 +@_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 +@.str.3 = private unnamed_addr constant [38 x i8] c"\0AArticulation points in third graph \0A\00", align 1 + +@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei + +; Function Attrs: noinline uwtable +define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #0 align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + store i32 %6, ptr %7, align 8 + %8 = load i32, ptr %4, align 4 + %9 = sext i32 %8 to i64 + %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) + %11 = extractvalue { i64, i1 } %10, 1 + %12 = extractvalue { i64, i1 } %10, 0 + %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = or i1 %11, %14 + %16 = extractvalue { i64, i1 } %13, 0 + %17 = select i1 %15, i64 -1, i64 %16 + %18 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #13 + store i64 %9, ptr %18, align 16 + %19 = getelementptr inbounds i8, ptr %18, i64 8 + %20 = icmp eq i64 %9, 0 + br i1 %20, label %27, label %21 + +21: ; preds = %2 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %9 + br label %23 + +23: ; preds = %23, %21 + %24 = phi ptr [ %19, %21 ], [ %25, %23 ] + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #14 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 1 + %26 = icmp eq ptr %25, %22 + br i1 %26, label %27, label %23 + +27: ; preds = %2, %23 + %28 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + store ptr %19, ptr %28, align 8 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #4 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds %"class.std::__cxx11::list", ptr %9, i64 %11 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %6) + %13 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + %15 = load i32, ptr %6, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds %"class.std::__cxx11::list", ptr %14, i64 %16 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %17, ptr noundef nonnull align 4 dereferenceable(4) %5) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #14 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, ptr noundef %2, ptr noundef %3, ptr noundef %4, ptr noundef %5, ptr noundef %6) #4 align 2 { + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + %16 = alloca %"struct.std::_List_iterator", align 8 + %17 = alloca %"struct.std::_List_iterator", align 8 + %18 = alloca %"struct.std::_List_iterator", align 8 + %19 = alloca i32, align 4 + store ptr %0, ptr %8, align 8 + store i32 %1, ptr %9, align 4 + store ptr %2, ptr %10, align 8 + store ptr %3, ptr %11, align 8 + store ptr %4, ptr %12, align 8 + store ptr %5, ptr %13, align 8 + store ptr %6, ptr %14, align 8 + %20 = load ptr, ptr %8, align 8 + store i32 0, ptr %15, align 4 + %21 = load ptr, ptr %10, align 8 + %22 = load i32, ptr %9, align 4 + %23 = sext i32 %22 to i64 + %24 = getelementptr inbounds i8, ptr %21, i64 %23 + store i8 1, ptr %24, align 1 + %25 = load i32, ptr @_ZZN5Graph6APUtilEiPbPiS1_S1_S0_E4time, align 4 + %26 = add nsw i32 %25, 1 + store i32 %26, ptr @_ZZN5Graph6APUtilEiPbPiS1_S1_S0_E4time, align 4 + %27 = load ptr, ptr %12, align 8 + %28 = load i32, ptr %9, align 4 + %29 = sext i32 %28 to i64 + %30 = getelementptr inbounds i32, ptr %27, i64 %29 + store i32 %26, ptr %30, align 4 + %31 = load ptr, ptr %11, align 8 + %32 = load i32, ptr %9, align 4 + %33 = sext i32 %32 to i64 + %34 = getelementptr inbounds i32, ptr %31, i64 %33 + store i32 %26, ptr %34, align 4 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %16) #14 + %35 = getelementptr inbounds %class.Graph, ptr %20, i32 0, i32 1 + %36 = load ptr, ptr %35, align 8 + %37 = load i32, ptr %9, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds %"class.std::__cxx11::list", ptr %36, i64 %38 + %40 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %39) #14 + %41 = getelementptr inbounds %"struct.std::_List_iterator", ptr %17, i32 0, i32 0 + store ptr %40, ptr %41, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %16, ptr align 8 %17, i64 8, i1 false) + br label %42 + +42: ; preds = %152, %7 + %43 = getelementptr inbounds %class.Graph, ptr %20, i32 0, i32 1 + %44 = load ptr, ptr %43, align 8 + %45 = load i32, ptr %9, align 4 + %46 = sext i32 %45 to i64 + %47 = getelementptr inbounds %"class.std::__cxx11::list", ptr %44, i64 %46 + %48 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %47) #14 + %49 = getelementptr inbounds %"struct.std::_List_iterator", ptr %18, i32 0, i32 0 + store ptr %48, ptr %49, align 8 + %50 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %16, ptr noundef nonnull align 8 dereferenceable(8) %18) #14 + br i1 %50, label %51, label %154 + +51: ; preds = %42 + %52 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %16) #14 + %53 = load i32, ptr %52, align 4 + store i32 %53, ptr %19, align 4 + %54 = load ptr, ptr %10, align 8 + %55 = load i32, ptr %19, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i8, ptr %54, i64 %56 + %58 = load i8, ptr %57, align 1 + %59 = trunc i8 %58 to i1 + br i1 %59, label %127, label %60 + +60: ; preds = %51 + %61 = load i32, ptr %15, align 4 + %62 = add nsw i32 %61, 1 + store i32 %62, ptr %15, align 4 + %63 = load i32, ptr %9, align 4 + %64 = load ptr, ptr %13, align 8 + %65 = load i32, ptr %19, align 4 + %66 = sext i32 %65 to i64 + %67 = getelementptr inbounds i32, ptr %64, i64 %66 + store i32 %63, ptr %67, align 4 + %68 = load i32, ptr %19, align 4 + %69 = load ptr, ptr %10, align 8 + %70 = load ptr, ptr %11, align 8 + %71 = load ptr, ptr %12, align 8 + %72 = load ptr, ptr %13, align 8 + %73 = load ptr, ptr %14, align 8 + call void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(ptr noundef nonnull align 8 dereferenceable(16) %20, i32 noundef %68, ptr noundef %69, ptr noundef %70, ptr noundef %71, ptr noundef %72, ptr noundef %73) + %74 = load ptr, ptr %12, align 8 + %75 = load i32, ptr %9, align 4 + %76 = sext i32 %75 to i64 + %77 = getelementptr inbounds i32, ptr %74, i64 %76 + %78 = load ptr, ptr %12, align 8 + %79 = load i32, ptr %19, align 4 + %80 = sext i32 %79 to i64 + %81 = getelementptr inbounds i32, ptr %78, i64 %80 + %82 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %77, ptr noundef nonnull align 4 dereferenceable(4) %81) + %83 = load i32, ptr %82, align 4 + %84 = load ptr, ptr %12, align 8 + %85 = load i32, ptr %9, align 4 + %86 = sext i32 %85 to i64 + %87 = getelementptr inbounds i32, ptr %84, i64 %86 + store i32 %83, ptr %87, align 4 + %88 = load ptr, ptr %13, align 8 + %89 = load i32, ptr %9, align 4 + %90 = sext i32 %89 to i64 + %91 = getelementptr inbounds i32, ptr %88, i64 %90 + %92 = load i32, ptr %91, align 4 + %93 = icmp eq i32 %92, -1 + br i1 %93, label %94, label %102 + +94: ; preds = %60 + %95 = load i32, ptr %15, align 4 + %96 = icmp sgt i32 %95, 1 + br i1 %96, label %97, label %102 + +97: ; preds = %94 + %98 = load ptr, ptr %14, align 8 + %99 = load i32, ptr %9, align 4 + %100 = sext i32 %99 to i64 + %101 = getelementptr inbounds i8, ptr %98, i64 %100 + store i8 1, ptr %101, align 1 + br label %102 + +102: ; preds = %97, %94, %60 + %103 = load ptr, ptr %13, align 8 + %104 = load i32, ptr %9, align 4 + %105 = sext i32 %104 to i64 + %106 = getelementptr inbounds i32, ptr %103, i64 %105 + %107 = load i32, ptr %106, align 4 + %108 = icmp ne i32 %107, -1 + br i1 %108, label %109, label %126 + +109: ; preds = %102 + %110 = load ptr, ptr %12, align 8 + %111 = load i32, ptr %19, align 4 + %112 = sext i32 %111 to i64 + %113 = getelementptr inbounds i32, ptr %110, i64 %112 + %114 = load i32, ptr %113, align 4 + %115 = load ptr, ptr %11, align 8 + %116 = load i32, ptr %9, align 4 + %117 = sext i32 %116 to i64 + %118 = getelementptr inbounds i32, ptr %115, i64 %117 + %119 = load i32, ptr %118, align 4 + %120 = icmp sge i32 %114, %119 + br i1 %120, label %121, label %126 + +121: ; preds = %109 + %122 = load ptr, ptr %14, align 8 + %123 = load i32, ptr %9, align 4 + %124 = sext i32 %123 to i64 + %125 = getelementptr inbounds i8, ptr %122, i64 %124 + store i8 1, ptr %125, align 1 + br label %126 + +126: ; preds = %121, %109, %102 + br label %151 + +127: ; preds = %51 + %128 = load i32, ptr %19, align 4 + %129 = load ptr, ptr %13, align 8 + %130 = load i32, ptr %9, align 4 + %131 = sext i32 %130 to i64 + %132 = getelementptr inbounds i32, ptr %129, i64 %131 + %133 = load i32, ptr %132, align 4 + %134 = icmp ne i32 %128, %133 + br i1 %134, label %135, label %150 + +135: ; preds = %127 + %136 = load ptr, ptr %12, align 8 + %137 = load i32, ptr %9, align 4 + %138 = sext i32 %137 to i64 + %139 = getelementptr inbounds i32, ptr %136, i64 %138 + %140 = load ptr, ptr %11, align 8 + %141 = load i32, ptr %19, align 4 + %142 = sext i32 %141 to i64 + %143 = getelementptr inbounds i32, ptr %140, i64 %142 + %144 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %139, ptr noundef nonnull align 4 dereferenceable(4) %143) + %145 = load i32, ptr %144, align 4 + %146 = load ptr, ptr %12, align 8 + %147 = load i32, ptr %9, align 4 + %148 = sext i32 %147 to i64 + %149 = getelementptr inbounds i32, ptr %146, i64 %148 + store i32 %145, ptr %149, align 4 + br label %150 + +150: ; preds = %135, %127 + br label %151 + +151: ; preds = %150, %126 + br label %152 + +152: ; preds = %151 + %153 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %16) #14 + br label %42, !llvm.loop !6 + +154: ; preds = %42 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #14 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #14 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph2APEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %11 = load ptr, ptr %2, align 8 + %12 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 0 + %13 = load i32, ptr %12, align 8 + %14 = sext i32 %13 to i64 + %15 = call noalias noundef nonnull ptr @_Znam(i64 noundef %14) #13 + store ptr %15, ptr %3, align 8 + %16 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 0 + %17 = load i32, ptr %16, align 8 + %18 = sext i32 %17 to i64 + %19 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %18, i64 4) + %20 = extractvalue { i64, i1 } %19, 1 + %21 = extractvalue { i64, i1 } %19, 0 + %22 = select i1 %20, i64 -1, i64 %21 + %23 = call noalias noundef nonnull ptr @_Znam(i64 noundef %22) #13 + store ptr %23, ptr %4, align 8 + %24 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 0 + %25 = load i32, ptr %24, align 8 + %26 = sext i32 %25 to i64 + %27 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %26, i64 4) + %28 = extractvalue { i64, i1 } %27, 1 + %29 = extractvalue { i64, i1 } %27, 0 + %30 = select i1 %28, i64 -1, i64 %29 + %31 = call noalias noundef nonnull ptr @_Znam(i64 noundef %30) #13 + store ptr %31, ptr %5, align 8 + %32 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 0 + %33 = load i32, ptr %32, align 8 + %34 = sext i32 %33 to i64 + %35 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %34, i64 4) + %36 = extractvalue { i64, i1 } %35, 1 + %37 = extractvalue { i64, i1 } %35, 0 + %38 = select i1 %36, i64 -1, i64 %37 + %39 = call noalias noundef nonnull ptr @_Znam(i64 noundef %38) #13 + store ptr %39, ptr %6, align 8 + %40 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 0 + %41 = load i32, ptr %40, align 8 + %42 = sext i32 %41 to i64 + %43 = call noalias noundef nonnull ptr @_Znam(i64 noundef %42) #13 + store ptr %43, ptr %7, align 8 + store i32 0, ptr %8, align 4 + br label %44 + +44: ; preds = %62, %1 + %45 = load i32, ptr %8, align 4 + %46 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 0 + %47 = load i32, ptr %46, align 8 + %48 = icmp slt i32 %45, %47 + br i1 %48, label %49, label %65 + +49: ; preds = %44 + %50 = load ptr, ptr %6, align 8 + %51 = load i32, ptr %8, align 4 + %52 = sext i32 %51 to i64 + %53 = getelementptr inbounds i32, ptr %50, i64 %52 + store i32 -1, ptr %53, align 4 + %54 = load ptr, ptr %3, align 8 + %55 = load i32, ptr %8, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i8, ptr %54, i64 %56 + store i8 0, ptr %57, align 1 + %58 = load ptr, ptr %7, align 8 + %59 = load i32, ptr %8, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds i8, ptr %58, i64 %60 + store i8 0, ptr %61, align 1 + br label %62 + +62: ; preds = %49 + %63 = load i32, ptr %8, align 4 + %64 = add nsw i32 %63, 1 + store i32 %64, ptr %8, align 4 + br label %44, !llvm.loop !8 + +65: ; preds = %44 + store i32 0, ptr %9, align 4 + br label %66 + +66: ; preds = %88, %65 + %67 = load i32, ptr %9, align 4 + %68 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 0 + %69 = load i32, ptr %68, align 8 + %70 = icmp slt i32 %67, %69 + br i1 %70, label %71, label %91 + +71: ; preds = %66 + %72 = load ptr, ptr %3, align 8 + %73 = load i32, ptr %9, align 4 + %74 = sext i32 %73 to i64 + %75 = getelementptr inbounds i8, ptr %72, i64 %74 + %76 = load i8, ptr %75, align 1 + %77 = trunc i8 %76 to i1 + %78 = zext i1 %77 to i32 + %79 = icmp eq i32 %78, 0 + br i1 %79, label %80, label %87 + +80: ; preds = %71 + %81 = load i32, ptr %9, align 4 + %82 = load ptr, ptr %3, align 8 + %83 = load ptr, ptr %4, align 8 + %84 = load ptr, ptr %5, align 8 + %85 = load ptr, ptr %6, align 8 + %86 = load ptr, ptr %7, align 8 + call void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(ptr noundef nonnull align 8 dereferenceable(16) %11, i32 noundef %81, ptr noundef %82, ptr noundef %83, ptr noundef %84, ptr noundef %85, ptr noundef %86) + br label %87 + +87: ; preds = %80, %71 + br label %88 + +88: ; preds = %87 + %89 = load i32, ptr %9, align 4 + %90 = add nsw i32 %89, 1 + store i32 %90, ptr %9, align 4 + br label %66, !llvm.loop !9 + +91: ; preds = %66 + store i32 0, ptr %10, align 4 + br label %92 + +92: ; preds = %111, %91 + %93 = load i32, ptr %10, align 4 + %94 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 0 + %95 = load i32, ptr %94, align 8 + %96 = icmp slt i32 %93, %95 + br i1 %96, label %97, label %114 + +97: ; preds = %92 + %98 = load ptr, ptr %7, align 8 + %99 = load i32, ptr %10, align 4 + %100 = sext i32 %99 to i64 + %101 = getelementptr inbounds i8, ptr %98, i64 %100 + %102 = load i8, ptr %101, align 1 + %103 = trunc i8 %102 to i1 + %104 = zext i1 %103 to i32 + %105 = icmp eq i32 %104, 1 + br i1 %105, label %106, label %110 + +106: ; preds = %97 + %107 = load i32, ptr %10, align 4 + %108 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %107) + %109 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %108, ptr noundef @.str) + br label %110 + +110: ; preds = %106, %97 + br label %111 + +111: ; preds = %110 + %112 = load i32, ptr %10, align 4 + %113 = add nsw i32 %112, 1 + store i32 %113, ptr %10, align 4 + br label %92, !llvm.loop !10 + +114: ; preds = %92 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #7 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #7 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 { + %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, ptr %1, align 4 + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4) + call void @_ZN5Graph2APEv(ptr noundef nonnull align 8 dereferenceable(16) %2) + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph2APEv(ptr noundef nonnull align 8 dereferenceable(16) %3) + %7 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.3) + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 7) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 2, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 6) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 3, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 4, i32 noundef 5) + call void @_ZN5Graph2APEv(ptr 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(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #14 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %16 = load ptr, ptr %9, align 8 + %17 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %16) + store ptr %17, ptr %11, align 8 + %18 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %16) #14 + store ptr %18, ptr %12, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %19, ptr noundef %20) #14 + %21 = load ptr, ptr %12, align 8 + %22 = load ptr, ptr %11, align 8 + %23 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %22) + to label %24 unwind label %35 + +24: ; preds = %2 + %25 = load ptr, ptr %10, align 8 + store ptr %21, ptr %6, align 8 + store ptr %23, ptr %7, align 8 + store ptr %25, ptr %8, align 8 + %26 = load ptr, ptr %6, align 8 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %8, align 8 + store ptr %26, ptr %3, align 8 + store ptr %27, ptr %4, align 8 + store ptr %28, ptr %5, align 8 + %29 = load ptr, ptr %3, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + %32 = load i32, ptr %31, align 4 + store i32 %32, ptr %30, align 4 + %33 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #14 + %34 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #14 + ret ptr %34 + +35: ; preds = %2 + %36 = landingpad { ptr, i32 } + cleanup + %37 = extractvalue { ptr, i32 } %36, 0 + store ptr %37, ptr %14, align 8 + %38 = extractvalue { ptr, i32 } %36, 1 + store i32 %38, ptr %15, align 4 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #14 + br label %39 + +39: ; preds = %35 + %40 = load ptr, ptr %14, align 8 + %41 = load i32, ptr %15, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #9 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #14 + ret ptr %5 +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #15 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #16 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #16 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #13 + ret ptr %20 +} + +; Function Attrs: noreturn +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #10 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #14 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #14 + call void @_ZSt9terminatev() #15 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #12 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #7 = { "frame-pointer"="all" "no-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 = { 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 = { 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 #11 = { noinline noreturn 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 = { 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 = { builtin allocsize(0) } +attributes #14 = { nounwind } +attributes #15 = { noreturn nounwind } +attributes #16 = { noreturn } +attributes #17 = { builtin nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm14/cutting-a-rod.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/cutting-a-rod.ll similarity index 54% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/cutting-a-rod.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/cutting-a-rod.ll index 1d4be6ba8..3d978872a 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/cutting-a-rod.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/cutting-a-rod.ll @@ -10,19 +10,19 @@ target triple = "x86_64-pc-linux-gnu" 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 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %5 = load i32, ptr %3, align 4 + %6 = load i32, ptr %4, align 4 %7 = icmp sgt i32 %5, %6 br i1 %7, label %8, label %10 8: ; preds = %2 - %9 = load i32, i32* %3, align 4 + %9 = load i32, ptr %3, align 4 br label %12 10: ; preds = %2 - %11 = load i32, i32* %4, align 4 + %11 = load i32, ptr %4, align 4 br label %12 12: ; preds = %10, %8 @@ -31,139 +31,138 @@ define dso_local noundef i32 @_Z3maxii(i32 noundef %0, i32 noundef %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 +define dso_local noundef i32 @_Z6cutRodPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 + %5 = alloca ptr, align 8 %6 = alloca i64, align 8 %7 = alloca i32, align 4 %8 = alloca i32, align 4 %9 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %10 = load i32, i32* %4, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %10 = load i32, ptr %4, align 4 %11 = add nsw i32 %10, 1 %12 = zext i32 %11 to i64 - %13 = call i8* @llvm.stacksave() - store i8* %13, i8** %5, align 8 + %13 = call ptr @llvm.stacksave() + store ptr %13, ptr %5, align 8 %14 = alloca i32, i64 %12, align 16 - store i64 %12, i64* %6, align 8 - %15 = getelementptr inbounds i32, i32* %14, i64 0 - store i32 0, i32* %15, align 16 - store i32 1, i32* %7, align 4 + store i64 %12, ptr %6, align 8 + %15 = getelementptr inbounds i32, ptr %14, i64 0 + store i32 0, ptr %15, align 16 + store i32 1, ptr %7, align 4 br label %16 16: ; preds = %49, %2 - %17 = load i32, i32* %7, align 4 - %18 = load i32, i32* %4, align 4 + %17 = load i32, ptr %7, align 4 + %18 = load i32, ptr %4, align 4 %19 = icmp sle i32 %17, %18 br i1 %19, label %20, label %52 20: ; preds = %16 - store i32 -2147483648, i32* %9, align 4 - store i32 0, i32* %8, align 4 + store i32 -2147483648, ptr %9, align 4 + store i32 0, ptr %8, align 4 br label %21 21: ; preds = %41, %20 - %22 = load i32, i32* %8, align 4 - %23 = load i32, i32* %7, align 4 + %22 = load i32, ptr %8, align 4 + %23 = load i32, ptr %7, align 4 %24 = icmp slt i32 %22, %23 br i1 %24, label %25, label %44 25: ; preds = %21 - %26 = load i32, i32* %9, align 4 - %27 = load i32*, i32** %3, align 8 - %28 = load i32, i32* %8, align 4 + %26 = load i32, ptr %9, align 4 + %27 = load ptr, ptr %3, align 8 + %28 = load i32, ptr %8, align 4 %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i32, i32* %27, i64 %29 - %31 = load i32, i32* %30, align 4 - %32 = load i32, i32* %7, align 4 - %33 = load i32, i32* %8, align 4 + %30 = getelementptr inbounds i32, ptr %27, i64 %29 + %31 = load i32, ptr %30, align 4 + %32 = load i32, ptr %7, align 4 + %33 = load i32, ptr %8, align 4 %34 = sub nsw i32 %32, %33 %35 = sub nsw i32 %34, 1 %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i32, i32* %14, i64 %36 - %38 = load i32, i32* %37, align 4 + %37 = getelementptr inbounds i32, ptr %14, i64 %36 + %38 = load i32, ptr %37, align 4 %39 = add nsw i32 %31, %38 %40 = call noundef i32 @_Z3maxii(i32 noundef %26, i32 noundef %39) - store i32 %40, i32* %9, align 4 + store i32 %40, ptr %9, align 4 br label %41 41: ; preds = %25 - %42 = load i32, i32* %8, align 4 + %42 = load i32, ptr %8, align 4 %43 = add nsw i32 %42, 1 - store i32 %43, i32* %8, align 4 + store i32 %43, ptr %8, align 4 br label %21, !llvm.loop !6 44: ; preds = %21 - %45 = load i32, i32* %9, align 4 - %46 = load i32, i32* %7, align 4 + %45 = load i32, ptr %9, align 4 + %46 = load i32, ptr %7, align 4 %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds i32, i32* %14, i64 %47 - store i32 %45, i32* %48, align 4 + %48 = getelementptr inbounds i32, ptr %14, i64 %47 + store i32 %45, ptr %48, align 4 br label %49 49: ; preds = %44 - %50 = load i32, i32* %7, align 4 + %50 = load i32, ptr %7, align 4 %51 = add nsw i32 %50, 1 - store i32 %51, i32* %7, align 4 + store i32 %51, ptr %7, align 4 br label %16, !llvm.loop !8 52: ; preds = %16 - %53 = load i32, i32* %4, align 4 + %53 = load i32, ptr %4, align 4 %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %14, i64 %54 - %56 = load i32, i32* %55, align 4 - %57 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %57) + %55 = getelementptr inbounds i32, ptr %14, i64 %54 + %56 = load i32, ptr %55, align 4 + %57 = load ptr, ptr %5, align 8 + call void @llvm.stackrestore(ptr %57) ret i32 %56 } -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 ; 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 - store i32 0, i32* %1, align 4 - %4 = bitcast [8 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([8 x i32]* @__const.main.arr to i8*), i64 32, i1 false) - store i32 8, i32* %3, align 4 - %5 = getelementptr inbounds [8 x i32], [8 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = call 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() + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 32, i1 false) + store i32 8, ptr %3, align 4 + %4 = getelementptr inbounds [8 x i32], ptr %2, i64 0, i64 0 + %5 = load i32, ptr %3, align 4 + %6 = call noundef i32 @_Z6cutRodPii(ptr noundef %4, i32 noundef %5) + %7 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %6) + %8 = call i32 @getchar() ret i32 0 } -; 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: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 -declare i32 @printf(i8* noundef, ...) #4 +declare i32 @printf(ptr noundef, ...) #4 declare i32 @getchar() #4 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 #1 = { nocallback nofree nosync nounwind willreturn } 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 #3 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } 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, !1, !2, !3, !4} !llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{i32 7, !"PIC Level", i32 2} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/detect-cycle-in-a-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/detect-cycle-in-a-graph.ll new file mode 100644 index 000000000..35b3d0eb6 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/detect-cycle-in-a-graph.ll @@ -0,0 +1,909 @@ +; ModuleID = 'PE-benchmarks/detect-cycle-in-a-graph.cpp' +source_filename = "PE-benchmarks/detect-cycle-in-a-graph.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"struct.std::_List_iterator" = type { ptr } +%"struct.std::__allocated_ptr" = type { ptr, ptr } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +@_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 + +@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei + +; Function Attrs: noinline uwtable +define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #0 align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + store i32 %6, ptr %7, align 8 + %8 = load i32, ptr %4, align 4 + %9 = sext i32 %8 to i64 + %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) + %11 = extractvalue { i64, i1 } %10, 1 + %12 = extractvalue { i64, i1 } %10, 0 + %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = or i1 %11, %14 + %16 = extractvalue { i64, i1 } %13, 0 + %17 = select i1 %15, i64 -1, i64 %16 + %18 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #13 + store i64 %9, ptr %18, align 16 + %19 = getelementptr inbounds i8, ptr %18, i64 8 + %20 = icmp eq i64 %9, 0 + br i1 %20, label %27, label %21 + +21: ; preds = %2 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %9 + br label %23 + +23: ; preds = %23, %21 + %24 = phi ptr [ %19, %21 ], [ %25, %23 ] + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #14 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 1 + %26 = icmp eq ptr %25, %22 + br i1 %26, label %27, label %23 + +27: ; preds = %2, %23 + %28 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + store ptr %19, ptr %28, align 8 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #4 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds %"class.std::__cxx11::list", ptr %9, i64 %11 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %6) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #14 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, ptr noundef %2, ptr noundef %3) #4 align 2 { + %5 = alloca i1, align 1 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::_List_iterator", align 8 + %11 = alloca %"struct.std::_List_iterator", align 8 + %12 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %6, align 8 + store i32 %1, ptr %7, align 4 + store ptr %2, ptr %8, align 8 + store ptr %3, ptr %9, align 8 + %13 = load ptr, ptr %6, align 8 + %14 = load ptr, ptr %8, align 8 + %15 = load i32, ptr %7, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds i8, ptr %14, i64 %16 + %18 = load i8, ptr %17, align 1 + %19 = trunc i8 %18 to i1 + %20 = zext i1 %19 to i32 + %21 = icmp eq i32 %20, 0 + br i1 %21, label %22, label %76 + +22: ; preds = %4 + %23 = load ptr, ptr %8, align 8 + %24 = load i32, ptr %7, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds i8, ptr %23, i64 %25 + store i8 1, ptr %26, align 1 + %27 = load ptr, ptr %9, align 8 + %28 = load i32, ptr %7, align 4 + %29 = sext i32 %28 to i64 + %30 = getelementptr inbounds i8, ptr %27, i64 %29 + store i8 1, ptr %30, align 1 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + %31 = getelementptr inbounds %class.Graph, ptr %13, i32 0, i32 1 + %32 = load ptr, ptr %31, align 8 + %33 = load i32, ptr %7, align 4 + %34 = sext i32 %33 to i64 + %35 = getelementptr inbounds %"class.std::__cxx11::list", ptr %32, i64 %34 + %36 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %35) #14 + %37 = getelementptr inbounds %"struct.std::_List_iterator", ptr %11, i32 0, i32 0 + store ptr %36, ptr %37, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %10, ptr align 8 %11, i64 8, i1 false) + br label %38 + +38: ; preds = %73, %22 + %39 = getelementptr inbounds %class.Graph, ptr %13, i32 0, i32 1 + %40 = load ptr, ptr %39, align 8 + %41 = load i32, ptr %7, align 4 + %42 = sext i32 %41 to i64 + %43 = getelementptr inbounds %"class.std::__cxx11::list", ptr %40, i64 %42 + %44 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %43) #14 + %45 = getelementptr inbounds %"struct.std::_List_iterator", ptr %12, i32 0, i32 0 + store ptr %44, ptr %45, align 8 + %46 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef nonnull align 8 dereferenceable(8) %12) #14 + br i1 %46, label %47, label %75 + +47: ; preds = %38 + %48 = load ptr, ptr %8, align 8 + %49 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + %50 = load i32, ptr %49, align 4 + %51 = sext i32 %50 to i64 + %52 = getelementptr inbounds i8, ptr %48, i64 %51 + %53 = load i8, ptr %52, align 1 + %54 = trunc i8 %53 to i1 + br i1 %54, label %62, label %55 + +55: ; preds = %47 + %56 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + %57 = load i32, ptr %56, align 4 + %58 = load ptr, ptr %8, align 8 + %59 = load ptr, ptr %9, align 8 + %60 = call noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(ptr noundef nonnull align 8 dereferenceable(16) %13, i32 noundef %57, ptr noundef %58, ptr noundef %59) + br i1 %60, label %61, label %62 + +61: ; preds = %55 + store i1 true, ptr %5, align 1 + br label %81 + +62: ; preds = %55, %47 + %63 = load ptr, ptr %9, align 8 + %64 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + %65 = load i32, ptr %64, align 4 + %66 = sext i32 %65 to i64 + %67 = getelementptr inbounds i8, ptr %63, i64 %66 + %68 = load i8, ptr %67, align 1 + %69 = trunc i8 %68 to i1 + br i1 %69, label %70, label %71 + +70: ; preds = %62 + store i1 true, ptr %5, align 1 + br label %81 + +71: ; preds = %62 + br label %72 + +72: ; preds = %71 + br label %73 + +73: ; preds = %72 + %74 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + br label %38, !llvm.loop !6 + +75: ; preds = %38 + br label %76 + +76: ; preds = %75, %4 + %77 = load ptr, ptr %9, align 8 + %78 = load i32, ptr %7, align 4 + %79 = sext i32 %78 to i64 + %80 = getelementptr inbounds i8, ptr %77, i64 %79 + store i8 0, ptr %80, align 1 + store i1 false, ptr %5, align 1 + br label %81 + +81: ; preds = %76, %70, %61 + %82 = load i1, ptr %5, align 1 + ret i1 %82 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #14 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #14 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph8isCyclicEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 { + %2 = alloca i1, align 1 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + %8 = load ptr, ptr %3, align 8 + %9 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 0 + %10 = load i32, ptr %9, align 8 + %11 = sext i32 %10 to i64 + %12 = call noalias noundef nonnull ptr @_Znam(i64 noundef %11) #13 + store ptr %12, ptr %4, align 8 + %13 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 0 + %14 = load i32, ptr %13, align 8 + %15 = sext i32 %14 to i64 + %16 = call noalias noundef nonnull ptr @_Znam(i64 noundef %15) #13 + store ptr %16, ptr %5, align 8 + store i32 0, ptr %6, align 4 + br label %17 + +17: ; preds = %31, %1 + %18 = load i32, ptr %6, align 4 + %19 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 0 + %20 = load i32, ptr %19, align 8 + %21 = icmp slt i32 %18, %20 + br i1 %21, label %22, label %34 + +22: ; preds = %17 + %23 = load ptr, ptr %4, align 8 + %24 = load i32, ptr %6, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds i8, ptr %23, i64 %25 + store i8 0, ptr %26, align 1 + %27 = load ptr, ptr %5, align 8 + %28 = load i32, ptr %6, align 4 + %29 = sext i32 %28 to i64 + %30 = getelementptr inbounds i8, ptr %27, i64 %29 + store i8 0, ptr %30, align 1 + br label %31 + +31: ; preds = %22 + %32 = load i32, ptr %6, align 4 + %33 = add nsw i32 %32, 1 + store i32 %33, ptr %6, align 4 + br label %17, !llvm.loop !8 + +34: ; preds = %17 + store i32 0, ptr %7, align 4 + br label %35 + +35: ; preds = %47, %34 + %36 = load i32, ptr %7, align 4 + %37 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 0 + %38 = load i32, ptr %37, align 8 + %39 = icmp slt i32 %36, %38 + br i1 %39, label %40, label %50 + +40: ; preds = %35 + %41 = load i32, ptr %7, align 4 + %42 = load ptr, ptr %4, align 8 + %43 = load ptr, ptr %5, align 8 + %44 = call noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(ptr noundef nonnull align 8 dereferenceable(16) %8, i32 noundef %41, ptr noundef %42, ptr noundef %43) + br i1 %44, label %45, label %46 + +45: ; preds = %40 + store i1 true, ptr %2, align 1 + br label %51 + +46: ; preds = %40 + br label %47 + +47: ; preds = %46 + %48 = load i32, ptr %7, align 4 + %49 = add nsw i32 %48, 1 + store i32 %49, ptr %7, align 4 + br label %35, !llvm.loop !9 + +50: ; preds = %35 + store i1 false, ptr %2, align 1 + br label %51 + +51: ; preds = %50, %45 + %52 = load i1, ptr %2, align 1 + ret i1 %52 +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #7 { + %1 = alloca i32, align 4 + %2 = alloca %class.Graph, align 8 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 3) + %3 = call noundef zeroext i1 @_ZN5Graph8isCyclicEv(ptr noundef nonnull align 8 dereferenceable(16) %2) + br i1 %3, label %4, label %6 + +4: ; preds = %0 + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %8 + +6: ; preds = %0 + %7 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %8 + +8: ; preds = %6, %4 + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #8 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #14 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %16 = load ptr, ptr %9, align 8 + %17 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %16) + store ptr %17, ptr %11, align 8 + %18 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %16) #14 + store ptr %18, ptr %12, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %19, ptr noundef %20) #14 + %21 = load ptr, ptr %12, align 8 + %22 = load ptr, ptr %11, align 8 + %23 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %22) + to label %24 unwind label %35 + +24: ; preds = %2 + %25 = load ptr, ptr %10, align 8 + store ptr %21, ptr %6, align 8 + store ptr %23, ptr %7, align 8 + store ptr %25, ptr %8, align 8 + %26 = load ptr, ptr %6, align 8 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %8, align 8 + store ptr %26, ptr %3, align 8 + store ptr %27, ptr %4, align 8 + store ptr %28, ptr %5, align 8 + %29 = load ptr, ptr %3, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + %32 = load i32, ptr %31, align 4 + store i32 %32, ptr %30, align 4 + %33 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #14 + %34 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #14 + ret ptr %34 + +35: ; preds = %2 + %36 = landingpad { ptr, i32 } + cleanup + %37 = extractvalue { ptr, i32 } %36, 0 + store ptr %37, ptr %14, align 8 + %38 = extractvalue { ptr, i32 } %36, 1 + store i32 %38, ptr %15, align 4 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #14 + br label %39 + +39: ; preds = %35 + %40 = load ptr, ptr %14, align 8 + %41 = load i32, ptr %15, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #9 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #14 + ret ptr %5 +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #15 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #16 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #16 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #13 + ret ptr %20 +} + +; Function Attrs: noreturn +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #10 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #14 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #14 + call void @_ZSt9terminatev() #15 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #12 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 = { "frame-pointer"="all" "no-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 "frame-pointer"="all" "no-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 = { 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 #11 = { noinline noreturn 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 = { 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 = { builtin allocsize(0) } +attributes #14 = { nounwind } +attributes #15 = { noreturn nounwind } +attributes #16 = { noreturn } +attributes #17 = { builtin nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/detect-cycle-undirected-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/detect-cycle-undirected-graph.ll new file mode 100644 index 000000000..0fc416213 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/detect-cycle-undirected-graph.ll @@ -0,0 +1,908 @@ +; ModuleID = 'PE-benchmarks/detect-cycle-undirected-graph.cpp' +source_filename = "PE-benchmarks/detect-cycle-undirected-graph.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"struct.std::_List_iterator" = type { ptr } +%"struct.std::__allocated_ptr" = type { ptr, ptr } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +@_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 + +@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei + +; Function Attrs: noinline uwtable +define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #0 align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + store i32 %6, ptr %7, align 8 + %8 = load i32, ptr %4, align 4 + %9 = sext i32 %8 to i64 + %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) + %11 = extractvalue { i64, i1 } %10, 1 + %12 = extractvalue { i64, i1 } %10, 0 + %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = or i1 %11, %14 + %16 = extractvalue { i64, i1 } %13, 0 + %17 = select i1 %15, i64 -1, i64 %16 + %18 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #13 + store i64 %9, ptr %18, align 16 + %19 = getelementptr inbounds i8, ptr %18, i64 8 + %20 = icmp eq i64 %9, 0 + br i1 %20, label %27, label %21 + +21: ; preds = %2 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %9 + br label %23 + +23: ; preds = %23, %21 + %24 = phi ptr [ %19, %21 ], [ %25, %23 ] + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #14 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 1 + %26 = icmp eq ptr %25, %22 + br i1 %26, label %27, label %23 + +27: ; preds = %2, %23 + %28 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + store ptr %19, ptr %28, align 8 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #4 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds %"class.std::__cxx11::list", ptr %9, i64 %11 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %6) + %13 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + %15 = load i32, ptr %6, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds %"class.std::__cxx11::list", ptr %14, i64 %16 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %17, ptr noundef nonnull align 4 dereferenceable(4) %5) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #14 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, ptr noundef %2, i32 noundef %3) #4 align 2 { + %5 = alloca i1, align 1 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca %"struct.std::_List_iterator", align 8 + %11 = alloca %"struct.std::_List_iterator", align 8 + %12 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %6, align 8 + store i32 %1, ptr %7, align 4 + store ptr %2, ptr %8, align 8 + store i32 %3, ptr %9, align 4 + %13 = load ptr, ptr %6, align 8 + %14 = load ptr, ptr %8, align 8 + %15 = load i32, ptr %7, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds i8, ptr %14, i64 %16 + store i8 1, ptr %17, align 1 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + %18 = getelementptr inbounds %class.Graph, ptr %13, i32 0, i32 1 + %19 = load ptr, ptr %18, align 8 + %20 = load i32, ptr %7, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %21 + %23 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %22) #14 + %24 = getelementptr inbounds %"struct.std::_List_iterator", ptr %11, i32 0, i32 0 + store ptr %23, ptr %24, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %10, ptr align 8 %11, i64 8, i1 false) + br label %25 + +25: ; preds = %58, %4 + %26 = getelementptr inbounds %class.Graph, ptr %13, i32 0, i32 1 + %27 = load ptr, ptr %26, align 8 + %28 = load i32, ptr %7, align 4 + %29 = sext i32 %28 to i64 + %30 = getelementptr inbounds %"class.std::__cxx11::list", ptr %27, i64 %29 + %31 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %30) #14 + %32 = getelementptr inbounds %"struct.std::_List_iterator", ptr %12, i32 0, i32 0 + store ptr %31, ptr %32, align 8 + %33 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef nonnull align 8 dereferenceable(8) %12) #14 + br i1 %33, label %34, label %60 + +34: ; preds = %25 + %35 = load ptr, ptr %8, align 8 + %36 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + %37 = load i32, ptr %36, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds i8, ptr %35, i64 %38 + %40 = load i8, ptr %39, align 1 + %41 = trunc i8 %40 to i1 + br i1 %41, label %50, label %42 + +42: ; preds = %34 + %43 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + %44 = load i32, ptr %43, align 4 + %45 = load ptr, ptr %8, align 8 + %46 = load i32, ptr %7, align 4 + %47 = call noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(ptr noundef nonnull align 8 dereferenceable(16) %13, i32 noundef %44, ptr noundef %45, i32 noundef %46) + br i1 %47, label %48, label %49 + +48: ; preds = %42 + store i1 true, ptr %5, align 1 + br label %61 + +49: ; preds = %42 + br label %57 + +50: ; preds = %34 + %51 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + %52 = load i32, ptr %51, align 4 + %53 = load i32, ptr %9, align 4 + %54 = icmp ne i32 %52, %53 + br i1 %54, label %55, label %56 + +55: ; preds = %50 + store i1 true, ptr %5, align 1 + br label %61 + +56: ; preds = %50 + br label %57 + +57: ; preds = %56, %49 + br label %58 + +58: ; preds = %57 + %59 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %10) #14 + br label %25, !llvm.loop !6 + +60: ; preds = %25 + store i1 false, ptr %5, align 1 + br label %61 + +61: ; preds = %60, %55, %48 + %62 = load i1, ptr %5, align 1 + ret i1 %62 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #14 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #14 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph8isCyclicEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 { + %2 = alloca i1, align 1 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + %7 = load ptr, ptr %3, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 0 + %9 = load i32, ptr %8, align 8 + %10 = sext i32 %9 to i64 + %11 = call noalias noundef nonnull ptr @_Znam(i64 noundef %10) #13 + store ptr %11, ptr %4, align 8 + store i32 0, ptr %5, align 4 + br label %12 + +12: ; preds = %22, %1 + %13 = load i32, ptr %5, align 4 + %14 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 0 + %15 = load i32, ptr %14, align 8 + %16 = icmp slt i32 %13, %15 + br i1 %16, label %17, label %25 + +17: ; preds = %12 + %18 = load ptr, ptr %4, align 8 + %19 = load i32, ptr %5, align 4 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds i8, ptr %18, i64 %20 + store i8 0, ptr %21, align 1 + br label %22 + +22: ; preds = %17 + %23 = load i32, ptr %5, align 4 + %24 = add nsw i32 %23, 1 + store i32 %24, ptr %5, align 4 + br label %12, !llvm.loop !8 + +25: ; preds = %12 + store i32 0, ptr %6, align 4 + br label %26 + +26: ; preds = %45, %25 + %27 = load i32, ptr %6, align 4 + %28 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 0 + %29 = load i32, ptr %28, align 8 + %30 = icmp slt i32 %27, %29 + br i1 %30, label %31, label %48 + +31: ; preds = %26 + %32 = load ptr, ptr %4, align 8 + %33 = load i32, ptr %6, align 4 + %34 = sext i32 %33 to i64 + %35 = getelementptr inbounds i8, ptr %32, i64 %34 + %36 = load i8, ptr %35, align 1 + %37 = trunc i8 %36 to i1 + br i1 %37, label %44, label %38 + +38: ; preds = %31 + %39 = load i32, ptr %6, align 4 + %40 = load ptr, ptr %4, align 8 + %41 = call noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(ptr noundef nonnull align 8 dereferenceable(16) %7, i32 noundef %39, ptr noundef %40, i32 noundef -1) + br i1 %41, label %42, label %43 + +42: ; preds = %38 + store i1 true, ptr %2, align 1 + br label %49 + +43: ; preds = %38 + br label %44 + +44: ; preds = %43, %31 + br label %45 + +45: ; preds = %44 + %46 = load i32, ptr %6, align 4 + %47 = add nsw i32 %46, 1 + store i32 %47, ptr %6, align 4 + br label %26, !llvm.loop !9 + +48: ; preds = %26 + store i1 false, ptr %2, align 1 + br label %49 + +49: ; preds = %48, %42 + %50 = load i1, ptr %2, align 1 + ret i1 %50 +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #7 { + %1 = alloca i32, align 4 + %2 = alloca %class.Graph, align 8 + %3 = alloca %class.Graph, align 8 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4) + %4 = call noundef zeroext i1 @_ZN5Graph8isCyclicEv(ptr noundef nonnull align 8 dereferenceable(16) %2) + br i1 %4, label %5, label %7 + +5: ; preds = %0 + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %9 + +7: ; preds = %0 + %8 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %9 + +9: ; preds = %7, %5 + %10 = phi ptr [ %6, %5 ], [ %8, %7 ] + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 1, i32 noundef 2) + %11 = call noundef zeroext i1 @_ZN5Graph8isCyclicEv(ptr noundef nonnull align 8 dereferenceable(16) %3) + br i1 %11, label %12, label %14 + +12: ; preds = %9 + %13 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %16 + +14: ; preds = %9 + %15 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %16 + +16: ; preds = %14, %12 + %17 = phi ptr [ %13, %12 ], [ %15, %14 ] + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #8 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #14 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %16 = load ptr, ptr %9, align 8 + %17 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %16) + store ptr %17, ptr %11, align 8 + %18 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %16) #14 + store ptr %18, ptr %12, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %19, ptr noundef %20) #14 + %21 = load ptr, ptr %12, align 8 + %22 = load ptr, ptr %11, align 8 + %23 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %22) + to label %24 unwind label %35 + +24: ; preds = %2 + %25 = load ptr, ptr %10, align 8 + store ptr %21, ptr %6, align 8 + store ptr %23, ptr %7, align 8 + store ptr %25, ptr %8, align 8 + %26 = load ptr, ptr %6, align 8 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %8, align 8 + store ptr %26, ptr %3, align 8 + store ptr %27, ptr %4, align 8 + store ptr %28, ptr %5, align 8 + %29 = load ptr, ptr %3, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + %32 = load i32, ptr %31, align 4 + store i32 %32, ptr %30, align 4 + %33 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #14 + %34 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #14 + ret ptr %34 + +35: ; preds = %2 + %36 = landingpad { ptr, i32 } + cleanup + %37 = extractvalue { ptr, i32 } %36, 0 + store ptr %37, ptr %14, align 8 + %38 = extractvalue { ptr, i32 } %36, 1 + store i32 %38, ptr %15, align 4 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #14 + br label %39 + +39: ; preds = %35 + %40 = load ptr, ptr %14, align 8 + %41 = load i32, ptr %15, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #9 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #14 + ret ptr %5 +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #15 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #16 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #16 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #13 + ret ptr %20 +} + +; Function Attrs: noreturn +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #10 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #14 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #14 + call void @_ZSt9terminatev() #15 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #12 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 = { "frame-pointer"="all" "no-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 "frame-pointer"="all" "no-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 = { 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 #11 = { noinline noreturn 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 = { 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 = { builtin allocsize(0) } +attributes #14 = { nounwind } +attributes #15 = { noreturn nounwind } +attributes #16 = { noreturn } +attributes #17 = { builtin nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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/dfa-based-division.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/dfa-based-division.ll similarity index 52% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/dfa-based-division.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/dfa-based-division.ll index 10e4c3688..6adbda3de 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/dfa-based-division.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/dfa-based-division.ll @@ -7,83 +7,83 @@ target triple = "x86_64-pc-linux-gnu" @.str.1 = private unnamed_addr constant [32 x i8] c"Not Divisible: Remainder is %d\0A\00", align 1 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z10preprocessiPA2_i(i32 noundef %0, [2 x i32]* noundef %1) #0 { +define dso_local void @_Z10preprocessiPA2_i(i32 noundef %0, ptr noundef %1) #0 { %3 = alloca i32, align 4 - %4 = alloca [2 x i32]*, align 8 + %4 = alloca ptr, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 %7 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store [2 x i32]* %1, [2 x i32]** %4, align 8 - store i32 0, i32* %7, align 4 + store i32 %0, ptr %3, align 4 + store ptr %1, ptr %4, align 8 + store i32 0, ptr %7, align 4 br label %8 8: ; preds = %50, %2 - %9 = load i32, i32* %7, align 4 - %10 = load i32, i32* %3, align 4 + %9 = load i32, ptr %7, align 4 + %10 = load i32, ptr %3, align 4 %11 = icmp slt i32 %9, %10 br i1 %11, label %12, label %53 12: ; preds = %8 - %13 = load i32, i32* %7, align 4 + %13 = load i32, ptr %7, align 4 %14 = shl i32 %13, 1 - store i32 %14, i32* %5, align 4 - %15 = load i32, i32* %5, align 4 - %16 = load i32, i32* %3, align 4 + store i32 %14, ptr %5, align 4 + %15 = load i32, ptr %5, align 4 + %16 = load i32, ptr %3, align 4 %17 = icmp slt i32 %15, %16 br i1 %17, label %18, label %20 18: ; preds = %12 - %19 = load i32, i32* %5, align 4 + %19 = load i32, ptr %5, align 4 br label %24 20: ; preds = %12 - %21 = load i32, i32* %5, align 4 - %22 = load i32, i32* %3, align 4 + %21 = load i32, ptr %5, align 4 + %22 = load i32, ptr %3, align 4 %23 = sub nsw i32 %21, %22 br label %24 24: ; preds = %20, %18 %25 = phi i32 [ %19, %18 ], [ %23, %20 ] - %26 = load [2 x i32]*, [2 x i32]** %4, align 8 - %27 = load i32, i32* %7, align 4 + %26 = load ptr, ptr %4, align 8 + %27 = load i32, ptr %7, align 4 %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds [2 x i32], [2 x i32]* %26, i64 %28 - %30 = getelementptr inbounds [2 x i32], [2 x i32]* %29, i64 0, i64 0 - store i32 %25, i32* %30, align 4 - %31 = load i32, i32* %7, align 4 + %29 = getelementptr inbounds [2 x i32], ptr %26, i64 %28 + %30 = getelementptr inbounds [2 x i32], ptr %29, i64 0, i64 0 + store i32 %25, ptr %30, align 4 + %31 = load i32, ptr %7, align 4 %32 = shl i32 %31, 1 %33 = add nsw i32 %32, 1 - store i32 %33, i32* %6, align 4 - %34 = load i32, i32* %6, align 4 - %35 = load i32, i32* %3, align 4 + store i32 %33, ptr %6, align 4 + %34 = load i32, ptr %6, align 4 + %35 = load i32, ptr %3, align 4 %36 = icmp slt i32 %34, %35 br i1 %36, label %37, label %39 37: ; preds = %24 - %38 = load i32, i32* %6, align 4 + %38 = load i32, ptr %6, align 4 br label %43 39: ; preds = %24 - %40 = load i32, i32* %6, align 4 - %41 = load i32, i32* %3, align 4 + %40 = load i32, ptr %6, align 4 + %41 = load i32, ptr %3, align 4 %42 = sub nsw i32 %40, %41 br label %43 43: ; preds = %39, %37 %44 = phi i32 [ %38, %37 ], [ %42, %39 ] - %45 = load [2 x i32]*, [2 x i32]** %4, align 8 - %46 = load i32, i32* %7, align 4 + %45 = load ptr, ptr %4, align 8 + %46 = load i32, ptr %7, align 4 %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds [2 x i32], [2 x i32]* %45, i64 %47 - %49 = getelementptr inbounds [2 x i32], [2 x i32]* %48, i64 0, i64 1 - store i32 %44, i32* %49, align 4 + %48 = getelementptr inbounds [2 x i32], ptr %45, i64 %47 + %49 = getelementptr inbounds [2 x i32], ptr %48, i64 0, i64 1 + store i32 %44, ptr %49, align 4 br label %50 50: ; preds = %43 - %51 = load i32, i32* %7, align 4 + %51 = load i32, ptr %7, align 4 %52 = add nsw i32 %51, 1 - store i32 %52, i32* %7, align 4 + store i32 %52, ptr %7, align 4 br label %8, !llvm.loop !6 53: ; preds = %8 @@ -91,35 +91,35 @@ define dso_local void @_Z10preprocessiPA2_i(i32 noundef %0, [2 x i32]* noundef % } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z15isDivisibleUtiliPiPA2_i(i32 noundef %0, i32* noundef %1, [2 x i32]* noundef %2) #1 { +define dso_local void @_Z15isDivisibleUtiliPiPA2_i(i32 noundef %0, ptr noundef %1, ptr noundef %2) #1 { %4 = alloca i32, align 4 - %5 = alloca i32*, align 8 - %6 = alloca [2 x i32]*, align 8 - store i32 %0, i32* %4, align 4 - store i32* %1, i32** %5, align 8 - store [2 x i32]* %2, [2 x i32]** %6, align 8 - %7 = load i32, i32* %4, align 4 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store i32 %0, ptr %4, align 4 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load i32, ptr %4, align 4 %8 = icmp ne i32 %7, 0 br i1 %8, label %9, label %25 9: ; preds = %3 - %10 = load i32, i32* %4, align 4 + %10 = load i32, ptr %4, align 4 %11 = ashr i32 %10, 1 - %12 = load i32*, i32** %5, align 8 - %13 = load [2 x i32]*, [2 x i32]** %6, align 8 - call void @_Z15isDivisibleUtiliPiPA2_i(i32 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 + %12 = load ptr, ptr %5, align 8 + %13 = load ptr, ptr %6, align 8 + call void @_Z15isDivisibleUtiliPiPA2_i(i32 noundef %11, ptr noundef %12, ptr noundef %13) + %14 = load ptr, ptr %6, align 8 + %15 = load ptr, ptr %5, align 8 + %16 = load i32, ptr %15, align 4 %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds [2 x i32], [2 x i32]* %14, i64 %17 - %19 = load i32, i32* %4, align 4 + %18 = getelementptr inbounds [2 x i32], ptr %14, i64 %17 + %19 = load i32, ptr %4, align 4 %20 = and i32 %19, 1 %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds [2 x i32], [2 x i32]* %18, i64 0, i64 %21 - %23 = load i32, i32* %22, align 4 - %24 = load i32*, i32** %5, align 8 - store i32 %23, i32* %24, align 4 + %22 = getelementptr inbounds [2 x i32], ptr %18, i64 0, i64 %21 + %23 = load i32, ptr %22, align 4 + %24 = load ptr, ptr %5, align 8 + store i32 %23, ptr %24, align 4 br label %25 25: ; preds = %9, %3 @@ -130,29 +130,28 @@ define dso_local void @_Z15isDivisibleUtiliPiPA2_i(i32 noundef %0, i32* noundef 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 + %5 = alloca ptr, align 8 %6 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %7 = load i32, i32* %4, align 4 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %7 = load i32, ptr %4, align 4 %8 = sext i32 %7 to i64 %9 = mul i64 %8, 8 - %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 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 noundef %14, i32* noundef %6, [2 x i32]* noundef %15) - %16 = load i32, i32* %6, align 4 - ret i32 %16 + %10 = call noalias ptr @malloc(i64 noundef %9) #5 + store ptr %10, ptr %5, align 8 + %11 = load i32, ptr %4, align 4 + %12 = load ptr, ptr %5, align 8 + call void @_Z10preprocessiPA2_i(i32 noundef %11, ptr noundef %12) + store i32 0, ptr %6, align 4 + %13 = load i32, ptr %3, align 4 + %14 = load ptr, ptr %5, align 8 + call void @_Z15isDivisibleUtiliPiPA2_i(i32 noundef %13, ptr noundef %6, ptr noundef %14) + %15 = load i32, ptr %6, align 4 + ret i32 %15 } -; Function Attrs: nounwind -declare noalias i8* @malloc(i64 noundef) #2 +; Function Attrs: nounwind allocsize(0) +declare noalias ptr @malloc(i64 noundef) #2 ; Function Attrs: mustprogress noinline norecurse uwtable define dso_local noundef i32 @main() #3 { @@ -160,47 +159,47 @@ define dso_local noundef i32 @main() #3 { %2 = alloca i32, align 4 %3 = alloca i32, align 4 %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 47, i32* %2, align 4 - store i32 5, i32* %3, align 4 - %5 = load i32, i32* %2, align 4 - %6 = load i32, i32* %3, align 4 + store i32 0, ptr %1, align 4 + store i32 47, ptr %2, align 4 + store i32 5, ptr %3, align 4 + %5 = load i32, ptr %2, align 4 + %6 = load i32, ptr %3, align 4 %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 + store i32 %7, ptr %4, align 4 + %8 = load i32, ptr %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* noundef getelementptr inbounds ([11 x i8], [11 x i8]* @.str, i64 0, i64 0)) + %11 = call i32 (ptr, ...) @printf(ptr noundef @.str) br label %15 12: ; preds = %0 - %13 = load i32, i32* %4, align 4 - %14 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([32 x i8], [32 x i8]* @.str.1, i64 0, i64 0), i32 noundef %13) + %13 = load i32, ptr %4, align 4 + %14 = call i32 (ptr, ...) @printf(ptr noundef @.str.1, i32 noundef %13) br label %15 15: ; preds = %12, %10 ret i32 0 } -declare i32 @printf(i8* noundef, ...) #4 +declare i32 @printf(ptr noundef, ...) #4 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 #2 = { nounwind 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 = { "frame-pointer"="all" "no-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 } +attributes #5 = { nounwind allocsize(0) } !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} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/dfs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/dfs.ll new file mode 100644 index 000000000..f7d98539e --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/dfs.ll @@ -0,0 +1,805 @@ +; ModuleID = 'PE-benchmarks/dfs.cpp' +source_filename = "PE-benchmarks/dfs.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"struct.std::_List_iterator" = type { ptr } +%"struct.std::__allocated_ptr" = type { ptr, ptr } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +@_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 + +@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei + +; Function Attrs: noinline uwtable +define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #0 align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + store i32 %6, ptr %7, align 8 + %8 = load i32, ptr %4, align 4 + %9 = sext i32 %8 to i64 + %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) + %11 = extractvalue { i64, i1 } %10, 1 + %12 = extractvalue { i64, i1 } %10, 0 + %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = or i1 %11, %14 + %16 = extractvalue { i64, i1 } %13, 0 + %17 = select i1 %15, i64 -1, i64 %16 + %18 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #13 + store i64 %9, ptr %18, align 16 + %19 = getelementptr inbounds i8, ptr %18, i64 8 + %20 = icmp eq i64 %9, 0 + br i1 %20, label %27, label %21 + +21: ; preds = %2 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %9 + br label %23 + +23: ; preds = %23, %21 + %24 = phi ptr [ %19, %21 ], [ %25, %23 ] + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #14 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 1 + %26 = icmp eq ptr %25, %22 + br i1 %26, label %27, label %23 + +27: ; preds = %2, %23 + %28 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + store ptr %19, ptr %28, align 8 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #4 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds %"class.std::__cxx11::list", ptr %9, i64 %11 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %6) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #14 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, ptr noundef %2) #4 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca %"struct.std::_List_iterator", align 8 + %8 = alloca %"struct.std::_List_iterator", align 8 + %9 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store ptr %2, ptr %6, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = load ptr, ptr %6, align 8 + %12 = load i32, ptr %5, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i8, ptr %11, i64 %13 + store i8 1, ptr %14, align 1 + %15 = load i32, ptr %5, align 4 + %16 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %16, ptr noundef @.str) + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %7) #14 + %18 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 1 + %19 = load ptr, ptr %18, align 8 + %20 = load i32, ptr %5, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %21 + %23 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %22) #14 + %24 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + store ptr %23, ptr %24, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %7, ptr align 8 %8, i64 8, i1 false) + br label %25 + +25: ; preds = %47, %3 + %26 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 1 + %27 = load ptr, ptr %26, align 8 + %28 = load i32, ptr %5, align 4 + %29 = sext i32 %28 to i64 + %30 = getelementptr inbounds %"class.std::__cxx11::list", ptr %27, i64 %29 + %31 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %30) #14 + %32 = getelementptr inbounds %"struct.std::_List_iterator", ptr %9, i32 0, i32 0 + store ptr %31, ptr %32, align 8 + %33 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %7, ptr noundef nonnull align 8 dereferenceable(8) %9) #14 + br i1 %33, label %34, label %49 + +34: ; preds = %25 + %35 = load ptr, ptr %6, align 8 + %36 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #14 + %37 = load i32, ptr %36, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds i8, ptr %35, i64 %38 + %40 = load i8, ptr %39, align 1 + %41 = trunc i8 %40 to i1 + br i1 %41, label %46, label %42 + +42: ; preds = %34 + %43 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #14 + %44 = load i32, ptr %43, align 4 + %45 = load ptr, ptr %6, align 8 + call void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(16) %10, i32 noundef %44, ptr noundef %45) + br label %46 + +46: ; preds = %42, %34 + br label %47 + +47: ; preds = %46 + %48 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #14 + br label %25, !llvm.loop !6 + +49: ; preds = %25 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #14 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #14 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph3DFSEi(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) #4 align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %7 = load ptr, ptr %3, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 0 + %9 = load i32, ptr %8, align 8 + %10 = sext i32 %9 to i64 + %11 = call noalias noundef nonnull ptr @_Znam(i64 noundef %10) #13 + store ptr %11, ptr %5, align 8 + store i32 0, ptr %6, align 4 + br label %12 + +12: ; preds = %22, %2 + %13 = load i32, ptr %6, align 4 + %14 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 0 + %15 = load i32, ptr %14, align 8 + %16 = icmp slt i32 %13, %15 + br i1 %16, label %17, label %25 + +17: ; preds = %12 + %18 = load ptr, ptr %5, align 8 + %19 = load i32, ptr %6, align 4 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds i8, ptr %18, i64 %20 + store i8 0, ptr %21, align 1 + br label %22 + +22: ; preds = %17 + %23 = load i32, ptr %6, align 4 + %24 = add nsw i32 %23, 1 + store i32 %24, ptr %6, align 4 + br label %12, !llvm.loop !8 + +25: ; preds = %12 + %26 = load i32, ptr %4, align 4 + %27 = load ptr, ptr %5, align 8 + call void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(16) %7, i32 noundef %26, ptr noundef %27) + ret void +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 { + %1 = alloca i32, align 4 + %2 = alloca %class.Graph, align 8 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 3) + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + call void @_ZN5Graph3DFSEi(ptr 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(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #14 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %16 = load ptr, ptr %9, align 8 + %17 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %16) + store ptr %17, ptr %11, align 8 + %18 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %16) #14 + store ptr %18, ptr %12, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %19, ptr noundef %20) #14 + %21 = load ptr, ptr %12, align 8 + %22 = load ptr, ptr %11, align 8 + %23 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %22) + to label %24 unwind label %35 + +24: ; preds = %2 + %25 = load ptr, ptr %10, align 8 + store ptr %21, ptr %6, align 8 + store ptr %23, ptr %7, align 8 + store ptr %25, ptr %8, align 8 + %26 = load ptr, ptr %6, align 8 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %8, align 8 + store ptr %26, ptr %3, align 8 + store ptr %27, ptr %4, align 8 + store ptr %28, ptr %5, align 8 + %29 = load ptr, ptr %3, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + %32 = load i32, ptr %31, align 4 + store i32 %32, ptr %30, align 4 + %33 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #14 + %34 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #14 + ret ptr %34 + +35: ; preds = %2 + %36 = landingpad { ptr, i32 } + cleanup + %37 = extractvalue { ptr, i32 } %36, 0 + store ptr %37, ptr %14, align 8 + %38 = extractvalue { ptr, i32 } %36, 1 + store i32 %38, ptr %15, align 4 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #14 + br label %39 + +39: ; preds = %35 + %40 = load ptr, ptr %14, align 8 + %41 = load i32, ptr %15, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #9 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #14 + ret ptr %5 +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #15 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #16 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #16 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #13 + ret ptr %20 +} + +; Function Attrs: noreturn +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #10 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #14 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #14 + call void @_ZSt9terminatev() #15 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #6 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #12 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { 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 #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 = { "frame-pointer"="all" "no-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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 = { 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 = { 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 #11 = { noinline noreturn 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 = { 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 = { builtin allocsize(0) } +attributes #14 = { nounwind } +attributes #15 = { noreturn nounwind } +attributes #16 = { noreturn } +attributes #17 = { builtin nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/edit-distance.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/edit-distance.ll new file mode 100644 index 000000000..59722e6d6 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/edit-distance.ll @@ -0,0 +1,772 @@ +; ModuleID = 'PE-benchmarks/edit-distance.cpp' +source_filename = "PE-benchmarks/edit-distance.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } +%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } +%union.anon = type { i64, [8 x i8] } +%"class.std::allocator" = type { i8 } +%"struct.std::forward_iterator_tag" = type { i8 } +%struct._Guard = type { ptr } + +$_ZSt3minIiERKT_S2_S2_ = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any + +$_ZNSt15__new_allocatorIcED2Ev = comdat any + +$_ZNSt11char_traitsIcE6lengthEPKc = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any + +$__clang_call_terminate = comdat any + +@.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 global %"class.std::basic_ostream", align 8 +@.str.2 = private unnamed_addr constant [50 x i8] c"basic_string: construction from null is not valid\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z3miniii(i32 noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store i32 %0, ptr %4, align 4 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %4, ptr noundef nonnull align 4 dereferenceable(4) %5) + %8 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %7, ptr noundef nonnull align 4 dereferenceable(4) %6) + %9 = load i32, ptr %8, align 4 + ret i32 %9 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #1 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(ptr noundef %0, ptr noundef %1, i32 noundef %2, i32 noundef %3) #0 personality ptr @__gxx_personality_v0 { + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca %"class.std::__cxx11::basic_string", align 8 + %9 = alloca %"class.std::__cxx11::basic_string", align 8 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + %12 = alloca %"class.std::__cxx11::basic_string", align 8 + %13 = alloca %"class.std::__cxx11::basic_string", align 8 + %14 = alloca %"class.std::__cxx11::basic_string", align 8 + %15 = alloca %"class.std::__cxx11::basic_string", align 8 + %16 = alloca %"class.std::__cxx11::basic_string", align 8 + %17 = alloca %"class.std::__cxx11::basic_string", align 8 + store i32 %2, ptr %6, align 4 + store i32 %3, ptr %7, align 4 + %18 = load i32, ptr %6, align 4 + %19 = icmp eq i32 %18, 0 + br i1 %19, label %20, label %22 + +20: ; preds = %4 + %21 = load i32, ptr %7, align 4 + store i32 %21, ptr %5, align 4 + br label %112 + +22: ; preds = %4 + %23 = load i32, ptr %7, align 4 + %24 = icmp eq i32 %23, 0 + br i1 %24, label %25, label %27 + +25: ; preds = %22 + %26 = load i32, ptr %6, align 4 + store i32 %26, ptr %5, align 4 + br label %112 + +27: ; preds = %22 + %28 = load i32, ptr %6, align 4 + %29 = sub nsw i32 %28, 1 + %30 = sext i32 %29 to i64 + %31 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %30) + %32 = load i8, ptr %31, align 1 + %33 = sext i8 %32 to i32 + %34 = load i32, ptr %7, align 4 + %35 = sub nsw i32 %34, 1 + %36 = sext i32 %35 to i64 + %37 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %36) + %38 = load i8, ptr %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_(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef nonnull align 8 dereferenceable(32) %0) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef nonnull align 8 dereferenceable(32) %1) + to label %42 unwind label %49 + +42: ; preds = %41 + %43 = load i32, ptr %6, align 4 + %44 = sub nsw i32 %43, 1 + %45 = load i32, ptr %7, align 4 + %46 = sub nsw i32 %45, 1 + %47 = invoke noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(ptr noundef %8, ptr noundef %9, i32 noundef %44, i32 noundef %46) + to label %48 unwind label %53 + +48: ; preds = %42 + store i32 %47, ptr %5, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #9 + br label %112 + +49: ; preds = %41 + %50 = landingpad { ptr, i32 } + cleanup + %51 = extractvalue { ptr, i32 } %50, 0 + store ptr %51, ptr %10, align 8 + %52 = extractvalue { ptr, i32 } %50, 1 + store i32 %52, ptr %11, align 4 + br label %57 + +53: ; preds = %42 + %54 = landingpad { ptr, i32 } + cleanup + %55 = extractvalue { ptr, i32 } %54, 0 + store ptr %55, ptr %10, align 8 + %56 = extractvalue { ptr, i32 } %54, 1 + store i32 %56, ptr %11, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #9 + br label %57 + +57: ; preds = %53, %49 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #9 + br label %114 + +58: ; preds = %27 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %12, ptr noundef nonnull align 8 dereferenceable(32) %0) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %13, ptr noundef nonnull align 8 dereferenceable(32) %1) + to label %59 unwind label %83 + +59: ; preds = %58 + %60 = load i32, ptr %6, align 4 + %61 = load i32, ptr %7, align 4 + %62 = sub nsw i32 %61, 1 + %63 = invoke noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(ptr noundef %12, ptr noundef %13, i32 noundef %60, i32 noundef %62) + to label %64 unwind label %87 + +64: ; preds = %59 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %14, ptr noundef nonnull align 8 dereferenceable(32) %0) + to label %65 unwind label %87 + +65: ; preds = %64 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %15, ptr noundef nonnull align 8 dereferenceable(32) %1) + to label %66 unwind label %91 + +66: ; preds = %65 + %67 = load i32, ptr %6, align 4 + %68 = sub nsw i32 %67, 1 + %69 = load i32, ptr %7, align 4 + %70 = invoke noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(ptr noundef %14, ptr noundef %15, i32 noundef %68, i32 noundef %69) + to label %71 unwind label %95 + +71: ; preds = %66 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %16, ptr noundef nonnull align 8 dereferenceable(32) %0) + to label %72 unwind label %95 + +72: ; preds = %71 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %17, ptr noundef nonnull align 8 dereferenceable(32) %1) + to label %73 unwind label %99 + +73: ; preds = %72 + %74 = load i32, ptr %6, align 4 + %75 = sub nsw i32 %74, 1 + %76 = load i32, ptr %7, align 4 + %77 = sub nsw i32 %76, 1 + %78 = invoke noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(ptr noundef %16, ptr noundef %17, i32 noundef %75, i32 noundef %77) + to label %79 unwind label %103 + +79: ; preds = %73 + %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, ptr %5, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %13) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %12) #9 + br label %112 + +83: ; preds = %58 + %84 = landingpad { ptr, i32 } + cleanup + %85 = extractvalue { ptr, i32 } %84, 0 + store ptr %85, ptr %10, align 8 + %86 = extractvalue { ptr, i32 } %84, 1 + store i32 %86, ptr %11, align 4 + br label %111 + +87: ; preds = %64, %59 + %88 = landingpad { ptr, i32 } + cleanup + %89 = extractvalue { ptr, i32 } %88, 0 + store ptr %89, ptr %10, align 8 + %90 = extractvalue { ptr, i32 } %88, 1 + store i32 %90, ptr %11, align 4 + br label %110 + +91: ; preds = %65 + %92 = landingpad { ptr, i32 } + cleanup + %93 = extractvalue { ptr, i32 } %92, 0 + store ptr %93, ptr %10, align 8 + %94 = extractvalue { ptr, i32 } %92, 1 + store i32 %94, ptr %11, align 4 + br label %109 + +95: ; preds = %71, %66 + %96 = landingpad { ptr, i32 } + cleanup + %97 = extractvalue { ptr, i32 } %96, 0 + store ptr %97, ptr %10, align 8 + %98 = extractvalue { ptr, i32 } %96, 1 + store i32 %98, ptr %11, align 4 + br label %108 + +99: ; preds = %72 + %100 = landingpad { ptr, i32 } + cleanup + %101 = extractvalue { ptr, i32 } %100, 0 + store ptr %101, ptr %10, align 8 + %102 = extractvalue { ptr, i32 } %100, 1 + store i32 %102, ptr %11, align 4 + br label %107 + +103: ; preds = %79, %73 + %104 = landingpad { ptr, i32 } + cleanup + %105 = extractvalue { ptr, i32 } %104, 0 + store ptr %105, ptr %10, align 8 + %106 = extractvalue { ptr, i32 } %104, 1 + store i32 %106, ptr %11, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #9 + br label %107 + +107: ; preds = %103, %99 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #9 + br label %108 + +108: ; preds = %107, %95 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #9 + br label %109 + +109: ; preds = %108, %91 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #9 + br label %110 + +110: ; preds = %109, %87 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %13) #9 + br label %111 + +111: ; preds = %110, %83 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %12) #9 + br label %114 + +112: ; preds = %81, %48, %25, %20 + %113 = load i32, ptr %5, align 4 + ret i32 %113 + +114: ; preds = %111, %57 + %115 = load ptr, ptr %10, align 8 + %116 = load i32, ptr %11, align 4 + %117 = insertvalue { ptr, i32 } poison, ptr %115, 0 + %118 = insertvalue { ptr, i32 } %117, i32 %116, 1 + resume { ptr, i32 } %118 +} + +declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #3 + +; Function Attrs: noinline norecurse uwtable +define dso_local noundef i32 @main() #4 personality ptr @__gxx_personality_v0 { + %1 = alloca ptr, align 8 + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca %"class.std::__cxx11::basic_string", align 8 + %11 = alloca %"class.std::allocator", align 1 + %12 = alloca ptr, align 8 + %13 = alloca i32, align 4 + %14 = alloca %"class.std::__cxx11::basic_string", align 8 + %15 = alloca %"class.std::allocator", align 1 + %16 = alloca %"class.std::__cxx11::basic_string", align 8 + %17 = alloca %"class.std::__cxx11::basic_string", align 8 + store i32 0, ptr %9, align 4 + store ptr %11, ptr %8, align 8 + %18 = load ptr, ptr %8, align 8 + store ptr %18, ptr %1, align 8 + %19 = load ptr, ptr %1, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef @.str, ptr noundef nonnull align 1 dereferenceable(1) %11) + to label %20 unwind label %37 + +20: ; preds = %0 + store ptr %11, ptr %6, align 8 + %21 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %21) #9 + store ptr %15, ptr %7, align 8 + %22 = load ptr, ptr %7, align 8 + store ptr %22, ptr %2, align 8 + %23 = load ptr, ptr %2, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %14, ptr noundef @.str.1, ptr noundef nonnull align 1 dereferenceable(1) %15) + to label %24 unwind label %42 + +24: ; preds = %20 + store ptr %15, ptr %4, align 8 + %25 = load ptr, ptr %4, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %25) #9 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %16, ptr noundef nonnull align 8 dereferenceable(32) %10) + to label %26 unwind label %47 + +26: ; preds = %24 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %17, ptr noundef nonnull align 8 dereferenceable(32) %14) + to label %27 unwind label %51 + +27: ; preds = %26 + %28 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %10) #9 + %29 = trunc i64 %28 to i32 + %30 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %14) #9 + %31 = trunc i64 %30 to i32 + %32 = invoke noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(ptr noundef %16, ptr noundef %17, i32 noundef %29, i32 noundef %31) + to label %33 unwind label %55 + +33: ; preds = %27 + %34 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %32) + to label %35 unwind label %55 + +35: ; preds = %33 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #9 + store i32 0, ptr %9, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #9 + %36 = load i32, ptr %9, align 4 + ret i32 %36 + +37: ; preds = %0 + %38 = landingpad { ptr, i32 } + cleanup + %39 = extractvalue { ptr, i32 } %38, 0 + store ptr %39, ptr %12, align 8 + %40 = extractvalue { ptr, i32 } %38, 1 + store i32 %40, ptr %13, align 4 + store ptr %11, ptr %5, align 8 + %41 = load ptr, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %41) #9 + br label %62 + +42: ; preds = %20 + %43 = landingpad { ptr, i32 } + cleanup + %44 = extractvalue { ptr, i32 } %43, 0 + store ptr %44, ptr %12, align 8 + %45 = extractvalue { ptr, i32 } %43, 1 + store i32 %45, ptr %13, align 4 + store ptr %15, ptr %3, align 8 + %46 = load ptr, ptr %3, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %46) #9 + br label %61 + +47: ; preds = %24 + %48 = landingpad { ptr, i32 } + cleanup + %49 = extractvalue { ptr, i32 } %48, 0 + store ptr %49, ptr %12, align 8 + %50 = extractvalue { ptr, i32 } %48, 1 + store i32 %50, ptr %13, align 4 + br label %60 + +51: ; preds = %26 + %52 = landingpad { ptr, i32 } + cleanup + %53 = extractvalue { ptr, i32 } %52, 0 + store ptr %53, ptr %12, align 8 + %54 = extractvalue { ptr, i32 } %52, 1 + store i32 %54, ptr %13, align 4 + br label %59 + +55: ; preds = %33, %27 + %56 = landingpad { ptr, i32 } + cleanup + %57 = extractvalue { ptr, i32 } %56, 0 + store ptr %57, ptr %12, align 8 + %58 = extractvalue { ptr, i32 } %56, 1 + store i32 %58, ptr %13, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #9 + br label %59 + +59: ; preds = %55, %51 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #9 + br label %60 + +60: ; preds = %59, %47 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #9 + br label %61 + +61: ; preds = %60, %42 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #9 + br label %62 + +62: ; preds = %61, %37 + %63 = load ptr, ptr %12, align 8 + %64 = load i32, ptr %13, align 4 + %65 = insertvalue { ptr, i32 } poison, ptr %63, 0 + %66 = insertvalue { ptr, i32 } %65, i32 %64, 1 + resume { ptr, i32 } %66 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) unnamed_addr #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %11, i32 0, i32 0 + %13 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) + %14 = load ptr, ptr %6, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %12, ptr noundef %13, ptr noundef nonnull align 1 dereferenceable(1) %14) + %15 = load ptr, ptr %5, align 8 + %16 = icmp eq ptr %15, null + br i1 %16, label %17, label %23 + +17: ; preds = %3 + invoke void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.2) #10 + to label %18 unwind label %19 + +18: ; preds = %17 + unreachable + +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } + cleanup + %21 = extractvalue { ptr, i32 } %20, 0 + store ptr %21, ptr %7, align 8 + %22 = extractvalue { ptr, i32 } %20, 1 + store i32 %22, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %12) #9 + br label %32 + +23: ; preds = %3 + %24 = load ptr, ptr %5, align 8 + %25 = load ptr, ptr %5, align 8 + %26 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %25) + to label %27 unwind label %19 + +27: ; preds = %23 + %28 = getelementptr inbounds i8, ptr %24, i64 %26 + store ptr %28, ptr %9, align 8 + %29 = load ptr, ptr %5, align 8 + %30 = load ptr, ptr %9, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %29, ptr noundef %30) + to label %31 unwind label %19 + +31: ; preds = %27 + ret void + +32: ; preds = %19 + %33 = load ptr, ptr %7, align 8 + %34 = load i32, ptr %8, align 4 + %35 = insertvalue { ptr, i32 } poison, ptr %33, 0 + %36 = insertvalue { ptr, i32 } %35, i32 %34, 1 + resume { ptr, i32 } %36 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +; Function Attrs: nounwind +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32)) #3 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef, ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 + +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %0) #1 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call i64 @strlen(ptr noundef %3) #9 + ret i64 %4 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca i64, align 8 + %15 = alloca %struct._Guard, align 8 + %16 = alloca ptr, align 8 + %17 = alloca i32, align 4 + store ptr %0, ptr %11, align 8 + store ptr %1, ptr %12, align 8 + store ptr %2, ptr %13, align 8 + %18 = load ptr, ptr %11, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %13, align 8 + store ptr %19, ptr %8, align 8 + store ptr %20, ptr %9, align 8 + %21 = load ptr, ptr %8, align 8 + %22 = load ptr, ptr %9, align 8 + store ptr %8, ptr %4, align 8 + store ptr %21, ptr %5, align 8 + store ptr %22, ptr %6, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %5, align 8 + %25 = ptrtoint ptr %23 to i64 + %26 = ptrtoint ptr %24 to i64 + %27 = sub i64 %25, %26 + store i64 %27, ptr %14, align 8 + %28 = load i64, ptr %14, align 8 + %29 = icmp ugt i64 %28, 15 + br i1 %29, label %30, label %33 + +30: ; preds = %3 + %31 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef nonnull align 8 dereferenceable(8) %14, i64 noundef 0) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef %31) + %32 = load i64, ptr %14, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %32) + br label %40 + +33: ; preds = %3 + store ptr %18, ptr %7, align 8 + %34 = load ptr, ptr %7, align 8 + %35 = invoke noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %34) + to label %39 unwind label %36 + +36: ; preds = %33 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #11 + unreachable + +39: ; preds = %33 + br label %40 + +40: ; preds = %39, %30 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef %18) + %41 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %18) + to label %42 unwind label %48 + +42: ; preds = %40 + %43 = load ptr, ptr %12, align 8 + %44 = load ptr, ptr %13, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %41, ptr noundef %43, ptr noundef %44) #9 + %45 = getelementptr inbounds %struct._Guard, ptr %15, i32 0, i32 0 + store ptr null, ptr %45, align 8 + %46 = load i64, ptr %14, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %46) + to label %47 unwind label %48 + +47: ; preds = %42 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #9 + ret void + +48: ; preds = %42, %40 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %16, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %17, align 4 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #9 + br label %52 + +52: ; preds = %48 + %53 = load ptr, ptr %16, align 8 + %54 = load i32, ptr %17, align 4 + %55 = insertvalue { ptr, i32 } poison, ptr %53, 0 + %56 = insertvalue { ptr, i32 } %55, i32 %54, 1 + resume { ptr, i32 } %56 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #9 + ret void +} + +; Function Attrs: nounwind +declare i64 @strlen(ptr noundef) #3 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #2 + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %struct._Guard, ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #3 + +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = icmp ne ptr %5, null + br i1 %6, label %7, label %11 + +7: ; preds = %1 + %8 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %9) + to label %10 unwind label %12 + +10: ; preds = %7 + br label %11 + +11: ; preds = %10, %1 + ret void + +12: ; preds = %7 + %13 = landingpad { ptr, i32 } + catch ptr null + %14 = extractvalue { ptr, i32 } %13, 0 + call void @__clang_call_terminate(ptr %14) #11 + unreachable +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #8 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #9 + call void @_ZSt9terminatev() #11 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +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 = { 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 = { 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 = { 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 = { 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 = { 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 #8 = { noinline noreturn 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 = { nounwind } +attributes #10 = { noreturn } +attributes #11 = { noreturn nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/efficient-constructtion-of-finite-automata.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/efficient-constructtion-of-finite-automata.ll new file mode 100644 index 000000000..2a93e0032 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/efficient-constructtion-of-finite-automata.ll @@ -0,0 +1,294 @@ +; ModuleID = 'PE-benchmarks/efficient-constructtion-of-finite-automata.cpp' +source_filename = "PE-benchmarks/efficient-constructtion-of-finite-automata.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z15computeTransFunPciPA256_i(ptr noundef %0, i32 noundef %1, ptr noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store ptr %2, ptr %6, align 8 + store i32 0, ptr %8, align 4 + store i32 0, ptr %9, align 4 + br label %10 + +10: ; preds = %19, %3 + %11 = load i32, ptr %9, align 4 + %12 = icmp slt i32 %11, 256 + br i1 %12, label %13, label %22 + +13: ; preds = %10 + %14 = load ptr, ptr %6, align 8 + %15 = getelementptr inbounds [256 x i32], ptr %14, i64 0 + %16 = load i32, ptr %9, align 4 + %17 = sext i32 %16 to i64 + %18 = getelementptr inbounds [256 x i32], ptr %15, i64 0, i64 %17 + store i32 0, ptr %18, align 4 + br label %19 + +19: ; preds = %13 + %20 = load i32, ptr %9, align 4 + %21 = add nsw i32 %20, 1 + store i32 %21, ptr %9, align 4 + br label %10, !llvm.loop !6 + +22: ; preds = %10 + %23 = load ptr, ptr %6, align 8 + %24 = getelementptr inbounds [256 x i32], ptr %23, i64 0 + %25 = load ptr, ptr %4, align 8 + %26 = getelementptr inbounds i8, ptr %25, i64 0 + %27 = load i8, ptr %26, align 1 + %28 = sext i8 %27 to i64 + %29 = getelementptr inbounds [256 x i32], ptr %24, i64 0, i64 %28 + store i32 1, ptr %29, align 4 + store i32 1, ptr %7, align 4 + br label %30 + +30: ; preds = %88, %22 + %31 = load i32, ptr %7, align 4 + %32 = load i32, ptr %5, align 4 + %33 = icmp sle i32 %31, %32 + br i1 %33, label %34, label %91 + +34: ; preds = %30 + store i32 0, ptr %9, align 4 + br label %35 + +35: ; preds = %54, %34 + %36 = load i32, ptr %9, align 4 + %37 = icmp slt i32 %36, 256 + br i1 %37, label %38, label %57 + +38: ; preds = %35 + %39 = load ptr, ptr %6, align 8 + %40 = load i32, ptr %8, align 4 + %41 = sext i32 %40 to i64 + %42 = getelementptr inbounds [256 x i32], ptr %39, i64 %41 + %43 = load i32, ptr %9, align 4 + %44 = sext i32 %43 to i64 + %45 = getelementptr inbounds [256 x i32], ptr %42, i64 0, i64 %44 + %46 = load i32, ptr %45, align 4 + %47 = load ptr, ptr %6, align 8 + %48 = load i32, ptr %7, align 4 + %49 = sext i32 %48 to i64 + %50 = getelementptr inbounds [256 x i32], ptr %47, i64 %49 + %51 = load i32, ptr %9, align 4 + %52 = sext i32 %51 to i64 + %53 = getelementptr inbounds [256 x i32], ptr %50, i64 0, i64 %52 + store i32 %46, ptr %53, align 4 + br label %54 + +54: ; preds = %38 + %55 = load i32, ptr %9, align 4 + %56 = add nsw i32 %55, 1 + store i32 %56, ptr %9, align 4 + br label %35, !llvm.loop !8 + +57: ; preds = %35 + %58 = load i32, ptr %7, align 4 + %59 = add nsw i32 %58, 1 + %60 = load ptr, ptr %6, align 8 + %61 = load i32, ptr %7, align 4 + %62 = sext i32 %61 to i64 + %63 = getelementptr inbounds [256 x i32], ptr %60, i64 %62 + %64 = load ptr, ptr %4, align 8 + %65 = load i32, ptr %7, align 4 + %66 = sext i32 %65 to i64 + %67 = getelementptr inbounds i8, ptr %64, i64 %66 + %68 = load i8, ptr %67, align 1 + %69 = sext i8 %68 to i64 + %70 = getelementptr inbounds [256 x i32], ptr %63, i64 0, i64 %69 + store i32 %59, ptr %70, align 4 + %71 = load i32, ptr %7, align 4 + %72 = load i32, ptr %5, align 4 + %73 = icmp slt i32 %71, %72 + br i1 %73, label %74, label %87 + +74: ; preds = %57 + %75 = load ptr, ptr %6, align 8 + %76 = load i32, ptr %8, align 4 + %77 = sext i32 %76 to i64 + %78 = getelementptr inbounds [256 x i32], ptr %75, i64 %77 + %79 = load ptr, ptr %4, align 8 + %80 = load i32, ptr %7, align 4 + %81 = sext i32 %80 to i64 + %82 = getelementptr inbounds i8, ptr %79, i64 %81 + %83 = load i8, ptr %82, align 1 + %84 = sext i8 %83 to i64 + %85 = getelementptr inbounds [256 x i32], ptr %78, i64 0, i64 %84 + %86 = load i32, ptr %85, align 4 + store i32 %86, ptr %8, align 4 + br label %87 + +87: ; preds = %74, %57 + br label %88 + +88: ; preds = %87 + %89 = load i32, ptr %7, align 4 + %90 = add nsw i32 %89, 1 + store i32 %90, ptr %7, align 4 + br label %30, !llvm.loop !9 + +91: ; preds = %30 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchPcS_(ptr noundef %0, ptr noundef %1) #1 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %11 = load ptr, ptr %3, align 8 + %12 = call i64 @strlen(ptr noundef %11) #7 + %13 = trunc i64 %12 to i32 + store i32 %13, ptr %5, align 4 + %14 = load ptr, ptr %4, align 8 + %15 = call i64 @strlen(ptr noundef %14) #7 + %16 = trunc i64 %15 to i32 + store i32 %16, ptr %6, align 4 + %17 = load i32, ptr %5, align 4 + %18 = add nsw i32 %17, 1 + %19 = zext i32 %18 to i64 + %20 = call ptr @llvm.stacksave() + store ptr %20, ptr %7, align 8 + %21 = alloca [256 x i32], i64 %19, align 16 + store i64 %19, ptr %8, align 8 + %22 = load ptr, ptr %3, align 8 + %23 = load i32, ptr %5, align 4 + call void @_Z15computeTransFunPciPA256_i(ptr noundef %22, i32 noundef %23, ptr noundef %21) + store i32 0, ptr %10, align 4 + store i32 0, ptr %9, align 4 + br label %24 + +24: ; preds = %52, %2 + %25 = load i32, ptr %9, align 4 + %26 = load i32, ptr %6, align 4 + %27 = icmp slt i32 %25, %26 + br i1 %27, label %28, label %55 + +28: ; preds = %24 + %29 = load i32, ptr %10, align 4 + %30 = sext i32 %29 to i64 + %31 = getelementptr inbounds [256 x i32], ptr %21, i64 %30 + %32 = load ptr, ptr %4, align 8 + %33 = load i32, ptr %9, align 4 + %34 = sext i32 %33 to i64 + %35 = getelementptr inbounds i8, ptr %32, i64 %34 + %36 = load i8, ptr %35, align 1 + %37 = sext i8 %36 to i64 + %38 = getelementptr inbounds [256 x i32], ptr %31, i64 0, i64 %37 + %39 = load i32, ptr %38, align 4 + store i32 %39, ptr %10, align 4 + %40 = load i32, ptr %10, align 4 + %41 = load i32, ptr %5, align 4 + %42 = icmp eq i32 %40, %41 + br i1 %42, label %43, label %51 + +43: ; preds = %28 + %44 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %45 = load i32, ptr %9, align 4 + %46 = load i32, ptr %5, align 4 + %47 = sub nsw i32 %45, %46 + %48 = add nsw i32 %47, 1 + %49 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %44, i32 noundef %48) + %50 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %49, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %51 + +51: ; preds = %43, %28 + br label %52 + +52: ; preds = %51 + %53 = load i32, ptr %9, align 4 + %54 = add nsw i32 %53, 1 + store i32 %54, ptr %9, align 4 + br label %24, !llvm.loop !10 + +55: ; preds = %24 + %56 = load ptr, ptr %7, align 8 + call void @llvm.stackrestore(ptr %56) + ret void +} + +; Function Attrs: nounwind willreturn memory(read) +declare i64 @strlen(ptr noundef) #2 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #4 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #3 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #5 { + %1 = alloca i32, align 4 + %2 = alloca [16 x i8], align 16 + %3 = alloca [6 x i8], align 1 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.txt, i64 16, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %3, ptr align 1 @__const.main.pat, i64 6, i1 false) + %4 = getelementptr inbounds [6 x i8], ptr %3, i64 0, i64 0 + %5 = getelementptr inbounds [16 x i8], ptr %2, i64 0, i64 0 + call void @_Z6searchPcS_(ptr noundef %4, ptr noundef %5) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 + +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 willreturn memory(read) "frame-pointer"="all" "no-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 = { nocallback nofree nosync 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" } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #7 = { nounwind willreturn memory(read) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm14/egg-dropping-puzzle.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/egg-dropping-puzzle.ll similarity index 58% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/egg-dropping-puzzle.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/egg-dropping-puzzle.ll index eb3eabd65..243404dfb 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/egg-dropping-puzzle.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/egg-dropping-puzzle.ll @@ -9,19 +9,19 @@ target triple = "x86_64-pc-linux-gnu" 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 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %5 = load i32, ptr %3, align 4 + %6 = load i32, ptr %4, align 4 %7 = icmp sgt i32 %5, %6 br i1 %7, label %8, label %10 8: ; preds = %2 - %9 = load i32, i32* %3, align 4 + %9 = load i32, ptr %3, align 4 br label %12 10: ; preds = %2 - %11 = load i32, i32* %4, align 4 + %11 = load i32, ptr %4, align 4 br label %12 12: ; preds = %10, %8 @@ -33,237 +33,237 @@ define dso_local noundef i32 @_Z3maxii(i32 noundef %0, i32 noundef %1) #0 { 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 + %5 = alloca ptr, align 8 %6 = alloca i64, align 8 %7 = alloca i64, align 8 %8 = alloca i32, align 4 %9 = alloca i32, align 4 %10 = alloca i32, align 4 %11 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %12 = load i32, i32* %3, align 4 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %12 = load i32, ptr %3, align 4 %13 = add nsw i32 %12, 1 %14 = zext i32 %13 to i64 - %15 = load i32, i32* %4, align 4 + %15 = load i32, ptr %4, align 4 %16 = add nsw i32 %15, 1 %17 = zext i32 %16 to i64 - %18 = call i8* @llvm.stacksave() - store i8* %18, i8** %5, align 8 + %18 = call ptr @llvm.stacksave() + store ptr %18, ptr %5, align 8 %19 = mul nuw i64 %14, %17 %20 = alloca i32, i64 %19, align 16 - store i64 %14, i64* %6, align 8 - store i64 %17, i64* %7, align 8 - store i32 1, i32* %9, align 4 + store i64 %14, ptr %6, align 8 + store i64 %17, ptr %7, align 8 + store i32 1, ptr %9, align 4 br label %21 21: ; preds = %36, %2 - %22 = load i32, i32* %9, align 4 - %23 = load i32, i32* %3, align 4 + %22 = load i32, ptr %9, align 4 + %23 = load i32, ptr %3, align 4 %24 = icmp sle i32 %22, %23 br i1 %24, label %25, label %39 25: ; preds = %21 - %26 = load i32, i32* %9, align 4 + %26 = load i32, ptr %9, align 4 %27 = sext i32 %26 to i64 %28 = mul nsw i64 %27, %17 - %29 = getelementptr inbounds i32, i32* %20, i64 %28 - %30 = getelementptr inbounds i32, i32* %29, i64 1 - store i32 1, i32* %30, align 4 - %31 = load i32, i32* %9, align 4 + %29 = getelementptr inbounds i32, ptr %20, i64 %28 + %30 = getelementptr inbounds i32, ptr %29, i64 1 + store i32 1, ptr %30, align 4 + %31 = load i32, ptr %9, align 4 %32 = sext i32 %31 to i64 %33 = mul nsw i64 %32, %17 - %34 = getelementptr inbounds i32, i32* %20, i64 %33 - %35 = getelementptr inbounds i32, i32* %34, i64 0 - store i32 0, i32* %35, align 4 + %34 = getelementptr inbounds i32, ptr %20, i64 %33 + %35 = getelementptr inbounds i32, ptr %34, i64 0 + store i32 0, ptr %35, align 4 br label %36 36: ; preds = %25 - %37 = load i32, i32* %9, align 4 + %37 = load i32, ptr %9, align 4 %38 = add nsw i32 %37, 1 - store i32 %38, i32* %9, align 4 + store i32 %38, ptr %9, align 4 br label %21, !llvm.loop !6 39: ; preds = %21 - store i32 1, i32* %10, align 4 + store i32 1, ptr %10, align 4 br label %40 40: ; preds = %51, %39 - %41 = load i32, i32* %10, align 4 - %42 = load i32, i32* %4, align 4 + %41 = load i32, ptr %10, align 4 + %42 = load i32, ptr %4, align 4 %43 = icmp sle i32 %41, %42 br i1 %43, label %44, label %54 44: ; preds = %40 - %45 = load i32, i32* %10, align 4 + %45 = load i32, ptr %10, align 4 %46 = mul nsw i64 1, %17 - %47 = getelementptr inbounds i32, i32* %20, i64 %46 - %48 = load i32, i32* %10, align 4 + %47 = getelementptr inbounds i32, ptr %20, i64 %46 + %48 = load i32, ptr %10, align 4 %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %47, i64 %49 - store i32 %45, i32* %50, align 4 + %50 = getelementptr inbounds i32, ptr %47, i64 %49 + store i32 %45, ptr %50, align 4 br label %51 51: ; preds = %44 - %52 = load i32, i32* %10, align 4 + %52 = load i32, ptr %10, align 4 %53 = add nsw i32 %52, 1 - store i32 %53, i32* %10, align 4 + store i32 %53, ptr %10, align 4 br label %40, !llvm.loop !8 54: ; preds = %40 - store i32 2, i32* %9, align 4 + store i32 2, ptr %9, align 4 br label %55 55: ; preds = %127, %54 - %56 = load i32, i32* %9, align 4 - %57 = load i32, i32* %3, align 4 + %56 = load i32, ptr %9, align 4 + %57 = load i32, ptr %3, align 4 %58 = icmp sle i32 %56, %57 br i1 %58, label %59, label %130 59: ; preds = %55 - store i32 2, i32* %10, align 4 + store i32 2, ptr %10, align 4 br label %60 60: ; preds = %123, %59 - %61 = load i32, i32* %10, align 4 - %62 = load i32, i32* %4, align 4 + %61 = load i32, ptr %10, align 4 + %62 = load i32, ptr %4, align 4 %63 = icmp sle i32 %61, %62 br i1 %63, label %64, label %126 64: ; preds = %60 - %65 = load i32, i32* %9, align 4 + %65 = load i32, ptr %9, align 4 %66 = sext i32 %65 to i64 %67 = mul nsw i64 %66, %17 - %68 = getelementptr inbounds i32, i32* %20, i64 %67 - %69 = load i32, i32* %10, align 4 + %68 = getelementptr inbounds i32, ptr %20, i64 %67 + %69 = load i32, ptr %10, align 4 %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds i32, i32* %68, i64 %70 - store i32 2147483647, i32* %71, align 4 - store i32 1, i32* %11, align 4 + %71 = getelementptr inbounds i32, ptr %68, i64 %70 + store i32 2147483647, ptr %71, align 4 + store i32 1, ptr %11, align 4 br label %72 72: ; preds = %119, %64 - %73 = load i32, i32* %11, align 4 - %74 = load i32, i32* %10, align 4 + %73 = load i32, ptr %11, align 4 + %74 = load i32, ptr %10, align 4 %75 = icmp sle i32 %73, %74 br i1 %75, label %76, label %122 76: ; preds = %72 - %77 = load i32, i32* %9, align 4 + %77 = load i32, ptr %9, align 4 %78 = sub nsw i32 %77, 1 %79 = sext i32 %78 to i64 %80 = mul nsw i64 %79, %17 - %81 = getelementptr inbounds i32, i32* %20, i64 %80 - %82 = load i32, i32* %11, align 4 + %81 = getelementptr inbounds i32, ptr %20, i64 %80 + %82 = load i32, ptr %11, align 4 %83 = sub nsw i32 %82, 1 %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds i32, i32* %81, i64 %84 - %86 = load i32, i32* %85, align 4 - %87 = load i32, i32* %9, align 4 + %85 = getelementptr inbounds i32, ptr %81, i64 %84 + %86 = load i32, ptr %85, align 4 + %87 = load i32, ptr %9, align 4 %88 = sext i32 %87 to i64 %89 = mul nsw i64 %88, %17 - %90 = getelementptr inbounds i32, i32* %20, i64 %89 - %91 = load i32, i32* %10, align 4 - %92 = load i32, i32* %11, align 4 + %90 = getelementptr inbounds i32, ptr %20, i64 %89 + %91 = load i32, ptr %10, align 4 + %92 = load i32, ptr %11, align 4 %93 = sub nsw i32 %91, %92 %94 = sext i32 %93 to i64 - %95 = getelementptr inbounds i32, i32* %90, i64 %94 - %96 = load i32, i32* %95, align 4 + %95 = getelementptr inbounds i32, ptr %90, i64 %94 + %96 = load i32, ptr %95, align 4 %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 - %100 = load i32, i32* %9, align 4 + store i32 %98, ptr %8, align 4 + %99 = load i32, ptr %8, align 4 + %100 = load i32, ptr %9, align 4 %101 = sext i32 %100 to i64 %102 = mul nsw i64 %101, %17 - %103 = getelementptr inbounds i32, i32* %20, i64 %102 - %104 = load i32, i32* %10, align 4 + %103 = getelementptr inbounds i32, ptr %20, i64 %102 + %104 = load i32, ptr %10, align 4 %105 = sext i32 %104 to i64 - %106 = getelementptr inbounds i32, i32* %103, i64 %105 - %107 = load i32, i32* %106, align 4 + %106 = getelementptr inbounds i32, ptr %103, i64 %105 + %107 = load i32, ptr %106, align 4 %108 = icmp slt i32 %99, %107 br i1 %108, label %109, label %118 109: ; preds = %76 - %110 = load i32, i32* %8, align 4 - %111 = load i32, i32* %9, align 4 + %110 = load i32, ptr %8, align 4 + %111 = load i32, ptr %9, align 4 %112 = sext i32 %111 to i64 %113 = mul nsw i64 %112, %17 - %114 = getelementptr inbounds i32, i32* %20, i64 %113 - %115 = load i32, i32* %10, align 4 + %114 = getelementptr inbounds i32, ptr %20, i64 %113 + %115 = load i32, ptr %10, align 4 %116 = sext i32 %115 to i64 - %117 = getelementptr inbounds i32, i32* %114, i64 %116 - store i32 %110, i32* %117, align 4 + %117 = getelementptr inbounds i32, ptr %114, i64 %116 + store i32 %110, ptr %117, align 4 br label %118 118: ; preds = %109, %76 br label %119 119: ; preds = %118 - %120 = load i32, i32* %11, align 4 + %120 = load i32, ptr %11, align 4 %121 = add nsw i32 %120, 1 - store i32 %121, i32* %11, align 4 + store i32 %121, ptr %11, align 4 br label %72, !llvm.loop !9 122: ; preds = %72 br label %123 123: ; preds = %122 - %124 = load i32, i32* %10, align 4 + %124 = load i32, ptr %10, align 4 %125 = add nsw i32 %124, 1 - store i32 %125, i32* %10, align 4 + store i32 %125, ptr %10, align 4 br label %60, !llvm.loop !10 126: ; preds = %60 br label %127 127: ; preds = %126 - %128 = load i32, i32* %9, align 4 + %128 = load i32, ptr %9, align 4 %129 = add nsw i32 %128, 1 - store i32 %129, i32* %9, align 4 + store i32 %129, ptr %9, align 4 br label %55, !llvm.loop !11 130: ; preds = %55 - %131 = load i32, i32* %3, align 4 + %131 = load i32, ptr %3, align 4 %132 = sext i32 %131 to i64 %133 = mul nsw i64 %132, %17 - %134 = getelementptr inbounds i32, i32* %20, i64 %133 - %135 = load i32, i32* %4, align 4 + %134 = getelementptr inbounds i32, ptr %20, i64 %133 + %135 = load i32, ptr %4, align 4 %136 = sext i32 %135 to i64 - %137 = getelementptr inbounds i32, i32* %134, i64 %136 - %138 = load i32, i32* %137, align 4 - %139 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %139) + %137 = getelementptr inbounds i32, ptr %134, i64 %136 + %138 = load i32, ptr %137, align 4 + %139 = load ptr, ptr %5, align 8 + call void @llvm.stackrestore(ptr %139) ret i32 %138 } -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 ; 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 - store i32 0, i32* %1, align 4 - store i32 2, i32* %2, align 4 - store i32 36, i32* %3, align 4 - %4 = load i32, i32* %2, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %2, align 4 - %7 = load i32, i32* %3, align 4 + store i32 0, ptr %1, align 4 + store i32 2, ptr %2, align 4 + store i32 36, ptr %3, align 4 + %4 = load i32, ptr %2, align 4 + %5 = load i32, ptr %3, align 4 + %6 = load i32, ptr %2, align 4 + %7 = load i32, ptr %3, align 4 %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) + %9 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %4, i32 noundef %5, i32 noundef %8) ret i32 0 } -declare i32 @printf(i8* noundef, ...) #3 +declare i32 @printf(ptr noundef, ...) #3 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 #1 = { nocallback nofree nosync nounwind willreturn } 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" } @@ -271,11 +271,11 @@ attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{i32 7, !"PIC Level", i32 2} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/euler-circuit-directed-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/euler-circuit-directed-graph.ll new file mode 100644 index 000000000..2b004abca --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/euler-circuit-directed-graph.ll @@ -0,0 +1,1512 @@ +; ModuleID = 'PE-benchmarks/euler-circuit-directed-graph.cpp' +source_filename = "PE-benchmarks/euler-circuit-directed-graph.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"struct.std::_List_iterator" = type { ptr } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } +%"struct.std::__allocated_ptr" = type { ptr, ptr } + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNKSt7__cxx114listIiSaIiEE4sizeEv = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZN5GraphD2Ev = comdat any + +$_ZN5Graph7addEdgeEii = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv = comdat any + +$_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +@_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 + +@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei + +; Function Attrs: noinline uwtable +define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(24) %0, i32 noundef %1) unnamed_addr #0 align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %6 = load ptr, ptr %3, align 8 + %7 = load i32, ptr %4, align 4 + %8 = getelementptr inbounds %class.Graph, ptr %6, i32 0, i32 0 + store i32 %7, ptr %8, align 8 + %9 = load i32, ptr %4, align 4 + %10 = sext i32 %9 to i64 + %11 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %10, i64 24) + %12 = extractvalue { i64, i1 } %11, 1 + %13 = extractvalue { i64, i1 } %11, 0 + %14 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %13, i64 8) + %15 = extractvalue { i64, i1 } %14, 1 + %16 = or i1 %12, %15 + %17 = extractvalue { i64, i1 } %14, 0 + %18 = select i1 %16, i64 -1, i64 %17 + %19 = call noalias noundef nonnull ptr @_Znam(i64 noundef %18) #14 + store i64 %10, ptr %19, align 16 + %20 = getelementptr inbounds i8, ptr %19, i64 8 + %21 = icmp eq i64 %10, 0 + br i1 %21, label %28, label %22 + +22: ; preds = %2 + %23 = getelementptr inbounds %"class.std::__cxx11::list", ptr %20, i64 %10 + br label %24 + +24: ; preds = %24, %22 + %25 = phi ptr [ %20, %22 ], [ %26, %24 ] + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %25) #15 + %26 = getelementptr inbounds %"class.std::__cxx11::list", ptr %25, i64 1 + %27 = icmp eq ptr %26, %23 + br i1 %27, label %28, label %24 + +28: ; preds = %2, %24 + %29 = getelementptr inbounds %class.Graph, ptr %6, i32 0, i32 1 + store ptr %20, ptr %29, align 8 + %30 = load i32, ptr %4, align 4 + %31 = sext i32 %30 to i64 + %32 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %31, i64 4) + %33 = extractvalue { i64, i1 } %32, 1 + %34 = extractvalue { i64, i1 } %32, 0 + %35 = select i1 %33, i64 -1, i64 %34 + %36 = call noalias noundef nonnull ptr @_Znam(i64 noundef %35) #14 + %37 = getelementptr inbounds %class.Graph, ptr %6, i32 0, i32 2 + store ptr %36, ptr %37, align 8 + store i32 0, ptr %5, align 4 + br label %38 + +38: ; preds = %48, %28 + %39 = load i32, ptr %5, align 4 + %40 = load i32, ptr %4, align 4 + %41 = icmp slt i32 %39, %40 + br i1 %41, label %42, label %51 + +42: ; preds = %38 + %43 = getelementptr inbounds %class.Graph, ptr %6, i32 0, i32 2 + %44 = load ptr, ptr %43, align 8 + %45 = load i32, ptr %5, align 4 + %46 = sext i32 %45 to i64 + %47 = getelementptr inbounds i32, ptr %44, i64 %46 + store i32 0, ptr %47, align 4 + br label %48 + +48: ; preds = %42 + %49 = load i32, ptr %5, align 4 + %50 = add nsw i32 %49, 1 + store i32 %50, ptr %5, align 4 + br label %38, !llvm.loop !6 + +51: ; preds = %38 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph15isEulerianCycleEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 align 2 { + %2 = alloca i1, align 1 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = call noundef zeroext i1 @_ZN5Graph4isSCEv(ptr 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 + +9: ; preds = %1 + store i1 false, ptr %2, align 1 + br label %37 + +10: ; preds = %1 + store i32 0, ptr %4, align 4 + br label %11 + +11: ; preds = %33, %10 + %12 = load i32, ptr %4, align 4 + %13 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + %14 = load i32, ptr %13, align 8 + %15 = icmp slt i32 %12, %14 + br i1 %15, label %16, label %36 + +16: ; preds = %11 + %17 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + %18 = load ptr, ptr %17, align 8 + %19 = load i32, ptr %4, align 4 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds %"class.std::__cxx11::list", ptr %18, i64 %20 + %22 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %21) #15 + %23 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 2 + %24 = load ptr, ptr %23, align 8 + %25 = load i32, ptr %4, align 4 + %26 = sext i32 %25 to i64 + %27 = getelementptr inbounds i32, ptr %24, i64 %26 + %28 = load i32, ptr %27, align 4 + %29 = sext i32 %28 to i64 + %30 = icmp ne i64 %22, %29 + br i1 %30, label %31, label %32 + +31: ; preds = %16 + store i1 false, ptr %2, align 1 + br label %37 + +32: ; preds = %16 + br label %33 + +33: ; preds = %32 + %34 = load i32, ptr %4, align 4 + %35 = add nsw i32 %34, 1 + store i32 %35, ptr %4, align 4 + br label %11, !llvm.loop !8 + +36: ; preds = %11 + store i1 true, ptr %2, align 1 + br label %37 + +37: ; preds = %36, %31, %9 + %38 = load i1, ptr %2, align 1 + ret i1 %38 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph4isSCEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca i1, align 1 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca %class.Graph, align 8 + %11 = alloca i32, align 4 + %12 = alloca ptr, align 8 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + %15 = load ptr, ptr %3, align 8 + %16 = getelementptr inbounds %class.Graph, ptr %15, i32 0, i32 0 + %17 = load i32, ptr %16, align 8 + %18 = zext i32 %17 to i64 + %19 = call ptr @llvm.stacksave() + store ptr %19, ptr %4, align 8 + %20 = alloca i8, i64 %18, align 16 + store i64 %18, ptr %5, align 8 + store i32 0, ptr %6, align 4 + br label %21 + +21: ; preds = %30, %1 + %22 = load i32, ptr %6, align 4 + %23 = getelementptr inbounds %class.Graph, ptr %15, i32 0, i32 0 + %24 = load i32, ptr %23, align 8 + %25 = icmp slt i32 %22, %24 + br i1 %25, label %26, label %33 + +26: ; preds = %21 + %27 = load i32, ptr %6, align 4 + %28 = sext i32 %27 to i64 + %29 = getelementptr inbounds i8, ptr %20, i64 %28 + store i8 0, ptr %29, align 1 + br label %30 + +30: ; preds = %26 + %31 = load i32, ptr %6, align 4 + %32 = add nsw i32 %31, 1 + store i32 %32, ptr %6, align 4 + br label %21, !llvm.loop !9 + +33: ; preds = %21 + store i32 0, ptr %7, align 4 + br label %34 + +34: ; preds = %49, %33 + %35 = load i32, ptr %7, align 4 + %36 = getelementptr inbounds %class.Graph, ptr %15, i32 0, i32 0 + %37 = load i32, ptr %36, align 8 + %38 = icmp slt i32 %35, %37 + br i1 %38, label %39, label %52 + +39: ; preds = %34 + %40 = getelementptr inbounds %class.Graph, ptr %15, i32 0, i32 1 + %41 = load ptr, ptr %40, align 8 + %42 = load i32, ptr %7, align 4 + %43 = sext i32 %42 to i64 + %44 = getelementptr inbounds %"class.std::__cxx11::list", ptr %41, i64 %43 + %45 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %44) #15 + %46 = icmp ugt i64 %45, 0 + br i1 %46, label %47, label %48 + +47: ; preds = %39 + br label %52 + +48: ; preds = %39 + br label %49 + +49: ; preds = %48 + %50 = load i32, ptr %7, align 4 + %51 = add nsw i32 %50, 1 + store i32 %51, ptr %7, align 4 + br label %34, !llvm.loop !10 + +52: ; preds = %47, %34 + %53 = load i32, ptr %7, align 4 + call void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(24) %15, i32 noundef %53, ptr noundef %20) + store i32 0, ptr %8, align 4 + br label %54 + +54: ; preds = %77, %52 + %55 = load i32, ptr %8, align 4 + %56 = getelementptr inbounds %class.Graph, ptr %15, i32 0, i32 0 + %57 = load i32, ptr %56, align 8 + %58 = icmp slt i32 %55, %57 + br i1 %58, label %59, label %80 + +59: ; preds = %54 + %60 = getelementptr inbounds %class.Graph, ptr %15, i32 0, i32 1 + %61 = load ptr, ptr %60, align 8 + %62 = load i32, ptr %8, align 4 + %63 = sext i32 %62 to i64 + %64 = getelementptr inbounds %"class.std::__cxx11::list", ptr %61, i64 %63 + %65 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %64) #15 + %66 = icmp ugt i64 %65, 0 + br i1 %66, label %67, label %76 + +67: ; preds = %59 + %68 = load i32, ptr %8, align 4 + %69 = sext i32 %68 to i64 + %70 = getelementptr inbounds i8, ptr %20, i64 %69 + %71 = load i8, ptr %70, align 1 + %72 = trunc i8 %71 to i1 + %73 = zext i1 %72 to i32 + %74 = icmp eq i32 %73, 0 + br i1 %74, label %75, label %76 + +75: ; preds = %67 + store i1 false, ptr %2, align 1 + store i32 1, ptr %9, align 4 + br label %128 + +76: ; preds = %67, %59 + br label %77 + +77: ; preds = %76 + %78 = load i32, ptr %8, align 4 + %79 = add nsw i32 %78, 1 + store i32 %79, ptr %8, align 4 + br label %54, !llvm.loop !11 + +80: ; preds = %54 + call void @_ZN5Graph12getTransposeEv(ptr sret(%class.Graph) align 8 %10, ptr noundef nonnull align 8 dereferenceable(24) %15) + store i32 0, ptr %11, align 4 + br label %81 + +81: ; preds = %90, %80 + %82 = load i32, ptr %11, align 4 + %83 = getelementptr inbounds %class.Graph, ptr %15, i32 0, i32 0 + %84 = load i32, ptr %83, align 8 + %85 = icmp slt i32 %82, %84 + br i1 %85, label %86, label %93 + +86: ; preds = %81 + %87 = load i32, ptr %11, align 4 + %88 = sext i32 %87 to i64 + %89 = getelementptr inbounds i8, ptr %20, i64 %88 + store i8 0, ptr %89, align 1 + br label %90 + +90: ; preds = %86 + %91 = load i32, ptr %11, align 4 + %92 = add nsw i32 %91, 1 + store i32 %92, ptr %11, align 4 + br label %81, !llvm.loop !12 + +93: ; preds = %81 + %94 = load i32, ptr %7, align 4 + invoke void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(24) %10, i32 noundef %94, ptr noundef %20) + to label %95 unwind label %118 + +95: ; preds = %93 + store i32 0, ptr %14, align 4 + br label %96 + +96: ; preds = %123, %95 + %97 = load i32, ptr %14, align 4 + %98 = getelementptr inbounds %class.Graph, ptr %15, i32 0, i32 0 + %99 = load i32, ptr %98, align 8 + %100 = icmp slt i32 %97, %99 + br i1 %100, label %101, label %126 + +101: ; preds = %96 + %102 = getelementptr inbounds %class.Graph, ptr %15, i32 0, i32 1 + %103 = load ptr, ptr %102, align 8 + %104 = load i32, ptr %14, align 4 + %105 = sext i32 %104 to i64 + %106 = getelementptr inbounds %"class.std::__cxx11::list", ptr %103, i64 %105 + %107 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %106) #15 + %108 = icmp ugt i64 %107, 0 + br i1 %108, label %109, label %122 + +109: ; preds = %101 + %110 = load i32, ptr %14, align 4 + %111 = sext i32 %110 to i64 + %112 = getelementptr inbounds i8, ptr %20, i64 %111 + %113 = load i8, ptr %112, align 1 + %114 = trunc i8 %113 to i1 + %115 = zext i1 %114 to i32 + %116 = icmp eq i32 %115, 0 + br i1 %116, label %117, label %122 + +117: ; preds = %109 + store i1 false, ptr %2, align 1 + store i32 1, ptr %9, align 4 + br label %127 + +118: ; preds = %93 + %119 = landingpad { ptr, i32 } + cleanup + %120 = extractvalue { ptr, i32 } %119, 0 + store ptr %120, ptr %12, align 8 + %121 = extractvalue { ptr, i32 } %119, 1 + store i32 %121, ptr %13, align 4 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %10) #15 + br label %131 + +122: ; preds = %109, %101 + br label %123 + +123: ; preds = %122 + %124 = load i32, ptr %14, align 4 + %125 = add nsw i32 %124, 1 + store i32 %125, ptr %14, align 4 + br label %96, !llvm.loop !13 + +126: ; preds = %96 + store i1 true, ptr %2, align 1 + store i32 1, ptr %9, align 4 + br label %127 + +127: ; preds = %126, %117 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %10) #15 + br label %128 + +128: ; preds = %127, %75 + %129 = load ptr, ptr %4, align 8 + call void @llvm.stackrestore(ptr %129) + %130 = load i1, ptr %2, align 1 + ret i1 %130 + +131: ; preds = %118 + %132 = load ptr, ptr %12, align 8 + %133 = load i32, ptr %13, align 4 + %134 = insertvalue { ptr, i32 } poison, ptr %132, 0 + %135 = insertvalue { ptr, i32 } %134, i32 %133, 1 + resume { ptr, i32 } %135 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = invoke noundef i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv(ptr noundef nonnull align 8 dereferenceable(24) %3) + to label %5 unwind label %6 + +5: ; preds = %1 + ret i64 %4 + +6: ; preds = %1 + %7 = landingpad { ptr, i32 } + catch ptr null + %8 = extractvalue { ptr, i32 } %7, 0 + call void @__clang_call_terminate(ptr %8) #16 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(24) %0, i32 noundef %1, ptr noundef %2) #4 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca %"struct.std::_List_iterator", align 8 + %8 = alloca %"struct.std::_List_iterator", align 8 + %9 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store ptr %2, ptr %6, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = load ptr, ptr %6, align 8 + %12 = load i32, ptr %5, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i8, ptr %11, i64 %13 + store i8 1, ptr %14, align 1 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %7) #15 + %15 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 1 + %16 = load ptr, ptr %15, align 8 + %17 = load i32, ptr %5, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds %"class.std::__cxx11::list", ptr %16, i64 %18 + %20 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %19) #15 + %21 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + store ptr %20, ptr %21, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %7, ptr align 8 %8, i64 8, i1 false) + br label %22 + +22: ; preds = %44, %3 + %23 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 1 + %24 = load ptr, ptr %23, align 8 + %25 = load i32, ptr %5, align 4 + %26 = sext i32 %25 to i64 + %27 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 %26 + %28 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %27) #15 + %29 = getelementptr inbounds %"struct.std::_List_iterator", ptr %9, i32 0, i32 0 + store ptr %28, ptr %29, align 8 + %30 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %7, ptr noundef nonnull align 8 dereferenceable(8) %9) #15 + br i1 %30, label %31, label %46 + +31: ; preds = %22 + %32 = load ptr, ptr %6, align 8 + %33 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #15 + %34 = load i32, ptr %33, align 4 + %35 = sext i32 %34 to i64 + %36 = getelementptr inbounds i8, ptr %32, i64 %35 + %37 = load i8, ptr %36, align 1 + %38 = trunc i8 %37 to i1 + br i1 %38, label %43, label %39 + +39: ; preds = %31 + %40 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #15 + %41 = load i32, ptr %40, align 4 + %42 = load ptr, ptr %6, align 8 + call void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(24) %10, i32 noundef %41, ptr noundef %42) + br label %43 + +43: ; preds = %39, %31 + br label %44 + +44: ; preds = %43 + %45 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #15 + br label %22, !llvm.loop !14 + +46: ; preds = %22 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #15 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #15 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph12getTransposeEv(ptr noalias sret(%class.Graph) align 8 %0, ptr noundef nonnull align 8 dereferenceable(24) %1) #4 align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i1, align 1 + %6 = alloca i32, align 4 + %7 = alloca %"struct.std::_List_iterator", align 8 + %8 = alloca %"struct.std::_List_iterator", align 8 + %9 = alloca %"struct.std::_List_iterator", align 8 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %12 = load ptr, ptr %4, align 8 + store i1 false, ptr %5, align 1 + %13 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 0 + %14 = load i32, ptr %13, align 8 + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(24) %0, i32 noundef %14) + store i32 0, ptr %6, align 4 + br label %15 + +15: ; preds = %59, %2 + %16 = load i32, ptr %6, align 4 + %17 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 0 + %18 = load i32, ptr %17, align 8 + %19 = icmp slt i32 %16, %18 + br i1 %19, label %20, label %62 + +20: ; preds = %15 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %7) #15 + %21 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 1 + %22 = load ptr, ptr %21, align 8 + %23 = load i32, ptr %6, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %22, i64 %24 + %26 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %25) #15 + %27 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + store ptr %26, ptr %27, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %7, ptr align 8 %8, i64 8, i1 false) + br label %28 + +28: ; preds = %52, %20 + %29 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 1 + %30 = load ptr, ptr %29, align 8 + %31 = load i32, ptr %6, align 4 + %32 = sext i32 %31 to i64 + %33 = getelementptr inbounds %"class.std::__cxx11::list", ptr %30, i64 %32 + %34 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %33) #15 + %35 = getelementptr inbounds %"struct.std::_List_iterator", ptr %9, i32 0, i32 0 + store ptr %34, ptr %35, align 8 + %36 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %7, ptr noundef nonnull align 8 dereferenceable(8) %9) #15 + br i1 %36, label %37, label %58 + +37: ; preds = %28 + %38 = getelementptr inbounds %class.Graph, ptr %0, i32 0, i32 1 + %39 = load ptr, ptr %38, align 8 + %40 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #15 + %41 = load i32, ptr %40, align 4 + %42 = sext i32 %41 to i64 + %43 = getelementptr inbounds %"class.std::__cxx11::list", ptr %39, i64 %42 + invoke void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %43, ptr noundef nonnull align 4 dereferenceable(4) %6) + to label %44 unwind label %54 + +44: ; preds = %37 + %45 = getelementptr inbounds %class.Graph, ptr %0, i32 0, i32 2 + %46 = load ptr, ptr %45, align 8 + %47 = load i32, ptr %6, align 4 + %48 = sext i32 %47 to i64 + %49 = getelementptr inbounds i32, ptr %46, i64 %48 + %50 = load i32, ptr %49, align 4 + %51 = add nsw i32 %50, 1 + store i32 %51, ptr %49, align 4 + br label %52 + +52: ; preds = %44 + %53 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #15 + br label %28, !llvm.loop !15 + +54: ; preds = %37 + %55 = landingpad { ptr, i32 } + cleanup + %56 = extractvalue { ptr, i32 } %55, 0 + store ptr %56, ptr %10, align 8 + %57 = extractvalue { ptr, i32 } %55, 1 + store i32 %57, ptr %11, align 4 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 + br label %66 + +58: ; preds = %28 + br label %59 + +59: ; preds = %58 + %60 = load i32, ptr %6, align 4 + %61 = add nsw i32 %60, 1 + store i32 %61, ptr %6, align 4 + br label %15, !llvm.loop !16 + +62: ; preds = %15 + store i1 true, ptr %5, align 1 + %63 = load i1, ptr %5, align 1 + br i1 %63, label %65, label %64 + +64: ; preds = %62 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 + br label %65 + +65: ; preds = %64, %62 + ret void + +66: ; preds = %54 + %67 = load ptr, ptr %10, align 8 + %68 = load i32, ptr %11, align 4 + %69 = insertvalue { ptr, i32 } poison, ptr %67, 0 + %70 = insertvalue { ptr, i32 } %69, i32 %68, 1 + resume { ptr, i32 } %70 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #15 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %class.Graph, ptr %3, i32 0, i32 1 + %5 = load ptr, ptr %4, align 8 + %6 = icmp eq ptr %5, null + br i1 %6, label %17, label %7 + +7: ; preds = %1 + %8 = getelementptr inbounds i8, ptr %5, i64 -8 + %9 = load i64, ptr %8, align 8 + %10 = getelementptr inbounds %"class.std::__cxx11::list", ptr %5, i64 %9 + %11 = icmp eq ptr %5, %10 + br i1 %11, label %16, label %12 + +12: ; preds = %12, %7 + %13 = phi ptr [ %10, %7 ], [ %14, %12 ] + %14 = getelementptr inbounds %"class.std::__cxx11::list", ptr %13, i64 -1 + call void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %14) #15 + %15 = icmp eq ptr %14, %5 + br i1 %15, label %16, label %12 + +16: ; preds = %12, %7 + call void @_ZdaPv(ptr noundef %8) #17 + br label %17 + +17: ; preds = %16, %1 + %18 = getelementptr inbounds %class.Graph, ptr %3, i32 0, i32 2 + %19 = load ptr, ptr %18, align 8 + %20 = icmp eq ptr %19, null + br i1 %20, label %22, label %21 + +21: ; preds = %17 + call void @_ZdaPv(ptr noundef %19) #17 + br label %22 + +22: ; preds = %21, %17 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #7 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #7 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 personality ptr @__gxx_personality_v0 { + %1 = alloca i32, align 4 + %2 = alloca %class.Graph, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(24) %2, i32 noundef 5) + invoke void @_ZN5Graph7addEdgeEii(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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(ptr noundef nonnull align 8 dereferenceable(24) %2, i32 noundef 4, i32 noundef 0) + to label %10 unwind label %16 + +10: ; preds = %9 + %11 = invoke noundef zeroext i1 @_ZN5Graph15isEulerianCycleEv(ptr 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 noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + to label %15 unwind label %16 + +15: ; preds = %13 + br label %23 + +16: ; preds = %20, %13, %10, %9, %8, %7, %6, %5, %0 + %17 = landingpad { ptr, i32 } + cleanup + %18 = extractvalue { ptr, i32 } %17, 0 + store ptr %18, ptr %3, align 8 + %19 = extractvalue { ptr, i32 } %17, 1 + store i32 %19, ptr %4, align 4 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %2) #15 + br label %25 + +20: ; preds = %12 + %21 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + to label %22 unwind label %16 + +22: ; preds = %20 + br label %23 + +23: ; preds = %22, %15 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %2) #15 + %24 = load i32, ptr %1, align 4 + ret i32 %24 + +25: ; preds = %16 + %26 = load ptr, ptr %3, align 8 + %27 = load i32, ptr %4, align 4 + %28 = insertvalue { ptr, i32 } poison, ptr %26, 0 + %29 = insertvalue { ptr, i32 } %28, i32 %27, 1 + resume { ptr, i32 } %29 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(24) %0, i32 noundef %1, i32 noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds %"class.std::__cxx11::list", ptr %9, i64 %11 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %6) + %13 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 2 + %14 = load ptr, ptr %13, align 8 + %15 = load i32, ptr %6, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds i32, ptr %14, i64 %16 + %18 = load i32, ptr %17, align 4 + %19 = add nsw i32 %18, 1 + store i32 %19, ptr %17, align 4 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #9 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdaPv(ptr noundef) #10 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %10, i32 0, i32 0 + %12 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %11, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %12, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + store ptr %14, ptr %7, align 8 + br label %15 + +15: ; preds = %27, %1 + %16 = load ptr, ptr %7, align 8 + %17 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %10, i32 0, i32 0 + %18 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %17, i32 0, i32 0 + %19 = icmp ne ptr %16, %18 + br i1 %19, label %20, label %35 + +20: ; preds = %15 + %21 = load ptr, ptr %7, align 8 + store ptr %21, ptr %8, align 8 + %22 = load ptr, ptr %8, align 8 + %23 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %22, i32 0, i32 0 + %24 = load ptr, ptr %23, align 8 + store ptr %24, ptr %7, align 8 + %25 = load ptr, ptr %8, align 8 + %26 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %25) + to label %27 unwind label %36 + +27: ; preds = %20 + store ptr %26, ptr %9, align 8 + %28 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #15 + %29 = load ptr, ptr %9, align 8 + store ptr %28, ptr %4, align 8 + store ptr %29, ptr %5, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + store ptr %30, ptr %2, align 8 + store ptr %31, ptr %3, align 8 + %32 = load ptr, ptr %2, align 8 + %33 = load ptr, ptr %3, align 8 + %34 = load ptr, ptr %8, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %10, ptr noundef %34) #15 + br label %15, !llvm.loop !17 + +35: ; preds = %15 + ret void + +36: ; preds = %20 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #16 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #15 + ret ptr %5 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #15 + call void @_ZSt9terminatev() #16 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef %1) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %7, align 8 + store ptr %9, ptr %3, align 8 + store ptr %10, ptr %4, align 8 + store i64 1, ptr %5, align 8 + %11 = load ptr, ptr %3, align 8 + %12 = load ptr, ptr %4, align 8 + %13 = load i64, ptr %5, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %11, ptr noundef %12, i64 noundef %13) + br label %14 + +14: ; preds = %2 + ret void + +15: ; No predecessors! + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #16 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #15 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #10 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #15 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %14 = load ptr, ptr %9, align 8 + %15 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %14) + store ptr %15, ptr %11, align 8 + %16 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %14) #15 + store ptr %16, ptr %12, align 8 + %17 = load ptr, ptr %12, align 8 + %18 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %18) #15 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + %21 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %20) + %22 = load ptr, ptr %10, align 8 + store ptr %19, ptr %6, align 8 + store ptr %21, ptr %7, align 8 + store ptr %22, ptr %8, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %7, align 8 + %25 = load ptr, ptr %8, align 8 + store ptr %23, ptr %3, align 8 + store ptr %24, ptr %4, align 8 + store ptr %25, ptr %5, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = load ptr, ptr %4, align 8 + %28 = load ptr, ptr %5, align 8 + %29 = load i32, ptr %28, align 4 + store i32 %29, ptr %27, align 4 + %30 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #15 + %31 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #15 + ret ptr %31 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #12 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #16 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #14 + ret ptr %20 +} + +; Function Attrs: noreturn +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 noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %3) + ret i64 %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %5, i32 0, i32 1 + %7 = load i64, ptr %6, align 8 + ret i64 %7 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #7 = { nocallback 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 = { "frame-pointer"="all" "no-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 = { 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 = { noinline noreturn 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 = { 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 = { nounwind } +attributes #16 = { noreturn nounwind } +attributes #17 = { builtin nounwind } +attributes #18 = { noreturn } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/eulerian-path-and-circuit.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/eulerian-path-and-circuit.ll new file mode 100644 index 000000000..d64b89626 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/eulerian-path-and-circuit.ll @@ -0,0 +1,1429 @@ +; ModuleID = 'PE-benchmarks/eulerian-path-and-circuit.cpp' +source_filename = "PE-benchmarks/eulerian-path-and-circuit.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"struct.std::_List_iterator" = type { ptr } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } +%"struct.std::__allocated_ptr" = type { ptr, ptr } + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZNKSt7__cxx114listIiSaIiEE4sizeEv = comdat any + +$_ZN5GraphC2Ei = comdat any + +$_ZN5GraphD2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +$_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv = comdat any + +$_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv = comdat any + +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #0 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds %"class.std::__cxx11::list", ptr %9, i64 %11 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %6) + %13 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + %15 = load i32, ptr %6, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds %"class.std::__cxx11::list", ptr %14, i64 %16 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %17, ptr noundef nonnull align 4 dereferenceable(4) %5) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #14 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, ptr noundef %2) #0 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca %"struct.std::_List_iterator", align 8 + %8 = alloca %"struct.std::_List_iterator", align 8 + %9 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store ptr %2, ptr %6, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = load ptr, ptr %6, align 8 + %12 = load i32, ptr %5, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i8, ptr %11, i64 %13 + store i8 1, ptr %14, align 1 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %7) #14 + %15 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 1 + %16 = load ptr, ptr %15, align 8 + %17 = load i32, ptr %5, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds %"class.std::__cxx11::list", ptr %16, i64 %18 + %20 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %19) #14 + %21 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + store ptr %20, ptr %21, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %7, ptr align 8 %8, i64 8, i1 false) + br label %22 + +22: ; preds = %44, %3 + %23 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 1 + %24 = load ptr, ptr %23, align 8 + %25 = load i32, ptr %5, align 4 + %26 = sext i32 %25 to i64 + %27 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 %26 + %28 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %27) #14 + %29 = getelementptr inbounds %"struct.std::_List_iterator", ptr %9, i32 0, i32 0 + store ptr %28, ptr %29, align 8 + %30 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %7, ptr noundef nonnull align 8 dereferenceable(8) %9) #14 + br i1 %30, label %31, label %46 + +31: ; preds = %22 + %32 = load ptr, ptr %6, align 8 + %33 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #14 + %34 = load i32, ptr %33, align 4 + %35 = sext i32 %34 to i64 + %36 = getelementptr inbounds i8, ptr %32, i64 %35 + %37 = load i8, ptr %36, align 1 + %38 = trunc i8 %37 to i1 + br i1 %38, label %43, label %39 + +39: ; preds = %31 + %40 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #14 + %41 = load i32, ptr %40, align 4 + %42 = load ptr, ptr %6, align 8 + call void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(16) %10, i32 noundef %41, ptr noundef %42) + br label %43 + +43: ; preds = %39, %31 + br label %44 + +44: ; preds = %43 + %45 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #14 + br label %22, !llvm.loop !6 + +46: ; preds = %22 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #1 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #14 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #14 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph11isConnectedEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #0 align 2 { + %2 = alloca i1, align 1 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + %8 = load ptr, ptr %3, align 8 + %9 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 0 + %10 = load i32, ptr %9, align 8 + %11 = zext i32 %10 to i64 + %12 = call ptr @llvm.stacksave() + store ptr %12, ptr %4, align 8 + %13 = alloca i8, i64 %11, align 16 + store i64 %11, ptr %5, align 8 + store i32 0, ptr %6, align 4 + br label %14 + +14: ; preds = %23, %1 + %15 = load i32, ptr %6, align 4 + %16 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 0 + %17 = load i32, ptr %16, align 8 + %18 = icmp slt i32 %15, %17 + br i1 %18, label %19, label %26 + +19: ; preds = %14 + %20 = load i32, ptr %6, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds i8, ptr %13, i64 %21 + store i8 0, ptr %22, align 1 + br label %23 + +23: ; preds = %19 + %24 = load i32, ptr %6, align 4 + %25 = add nsw i32 %24, 1 + store i32 %25, ptr %6, align 4 + br label %14, !llvm.loop !8 + +26: ; preds = %14 + store i32 0, ptr %6, align 4 + br label %27 + +27: ; preds = %42, %26 + %28 = load i32, ptr %6, align 4 + %29 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 0 + %30 = load i32, ptr %29, align 8 + %31 = icmp slt i32 %28, %30 + br i1 %31, label %32, label %45 + +32: ; preds = %27 + %33 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 1 + %34 = load ptr, ptr %33, align 8 + %35 = load i32, ptr %6, align 4 + %36 = sext i32 %35 to i64 + %37 = getelementptr inbounds %"class.std::__cxx11::list", ptr %34, i64 %36 + %38 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %37) #14 + %39 = icmp ne i64 %38, 0 + br i1 %39, label %40, label %41 + +40: ; preds = %32 + br label %45 + +41: ; preds = %32 + br label %42 + +42: ; preds = %41 + %43 = load i32, ptr %6, align 4 + %44 = add nsw i32 %43, 1 + store i32 %44, ptr %6, align 4 + br label %27, !llvm.loop !9 + +45: ; preds = %40, %27 + %46 = load i32, ptr %6, align 4 + %47 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 0 + %48 = load i32, ptr %47, align 8 + %49 = icmp eq i32 %46, %48 + br i1 %49, label %50, label %51 + +50: ; preds = %45 + store i1 true, ptr %2, align 1 + store i32 1, ptr %7, align 4 + br label %80 + +51: ; preds = %45 + %52 = load i32, ptr %6, align 4 + call void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(16) %8, i32 noundef %52, ptr noundef %13) + store i32 0, ptr %6, align 4 + br label %53 + +53: ; preds = %76, %51 + %54 = load i32, ptr %6, align 4 + %55 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 0 + %56 = load i32, ptr %55, align 8 + %57 = icmp slt i32 %54, %56 + br i1 %57, label %58, label %79 + +58: ; preds = %53 + %59 = load i32, ptr %6, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds i8, ptr %13, i64 %60 + %62 = load i8, ptr %61, align 1 + %63 = trunc i8 %62 to i1 + %64 = zext i1 %63 to i32 + %65 = icmp eq i32 %64, 0 + br i1 %65, label %66, label %75 + +66: ; preds = %58 + %67 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 1 + %68 = load ptr, ptr %67, align 8 + %69 = load i32, ptr %6, align 4 + %70 = sext i32 %69 to i64 + %71 = getelementptr inbounds %"class.std::__cxx11::list", ptr %68, i64 %70 + %72 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %71) #14 + %73 = icmp ugt i64 %72, 0 + br i1 %73, label %74, label %75 + +74: ; preds = %66 + store i1 false, ptr %2, align 1 + store i32 1, ptr %7, align 4 + br label %80 + +75: ; preds = %66, %58 + br label %76 + +76: ; preds = %75 + %77 = load i32, ptr %6, align 4 + %78 = add nsw i32 %77, 1 + store i32 %78, ptr %6, align 4 + br label %53, !llvm.loop !10 + +79: ; preds = %53 + store i1 true, ptr %2, align 1 + store i32 1, ptr %7, align 4 + br label %80 + +80: ; preds = %79, %74, %50 + %81 = load ptr, ptr %4, align 8 + call void @llvm.stackrestore(ptr %81) + %82 = load i1, ptr %2, align 1 + ret i1 %82 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #4 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = invoke noundef i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv(ptr noundef nonnull align 8 dereferenceable(24) %3) + to label %5 unwind label %6 + +5: ; preds = %1 + ret i64 %4 + +6: ; preds = %1 + %7 = landingpad { ptr, i32 } + catch ptr null + %8 = extractvalue { ptr, i32 } %7, 0 + call void @__clang_call_terminate(ptr %8) #15 + unreachable +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #4 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_ZN5Graph10isEulerianEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #0 align 2 { + %2 = alloca i32, align 4 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call noundef zeroext i1 @_ZN5Graph11isConnectedEv(ptr 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 + +10: ; preds = %1 + store i32 0, ptr %2, align 4 + br label %42 + +11: ; preds = %1 + store i32 0, ptr %4, align 4 + store i32 0, ptr %5, align 4 + br label %12 + +12: ; preds = %30, %11 + %13 = load i32, ptr %5, align 4 + %14 = getelementptr inbounds %class.Graph, ptr %6, i32 0, i32 0 + %15 = load i32, ptr %14, align 8 + %16 = icmp slt i32 %13, %15 + br i1 %16, label %17, label %33 + +17: ; preds = %12 + %18 = getelementptr inbounds %class.Graph, ptr %6, i32 0, i32 1 + %19 = load ptr, ptr %18, align 8 + %20 = load i32, ptr %5, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %21 + %23 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %22) #14 + %24 = and i64 %23, 1 + %25 = icmp ne i64 %24, 0 + br i1 %25, label %26, label %29 + +26: ; preds = %17 + %27 = load i32, ptr %4, align 4 + %28 = add nsw i32 %27, 1 + store i32 %28, ptr %4, align 4 + br label %29 + +29: ; preds = %26, %17 + br label %30 + +30: ; preds = %29 + %31 = load i32, ptr %5, align 4 + %32 = add nsw i32 %31, 1 + store i32 %32, ptr %5, align 4 + br label %12, !llvm.loop !11 + +33: ; preds = %12 + %34 = load i32, ptr %4, align 4 + %35 = icmp sgt i32 %34, 2 + br i1 %35, label %36, label %37 + +36: ; preds = %33 + store i32 0, ptr %2, align 4 + br label %42 + +37: ; preds = %33 + %38 = load i32, ptr %4, align 4 + %39 = icmp ne i32 %38, 0 + %40 = zext i1 %39 to i64 + %41 = select i1 %39, i32 1, i32 2 + store i32 %41, ptr %2, align 4 + br label %42 + +42: ; preds = %37, %36, %10 + %43 = load i32, ptr %2, align 4 + ret i32 %43 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z4testR5Graph(ptr noundef nonnull align 8 dereferenceable(16) %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + %5 = call noundef i32 @_ZN5Graph10isEulerianEv(ptr noundef nonnull align 8 dereferenceable(16) %4) + store i32 %5, ptr %3, align 4 + %6 = load i32, ptr %3, align 4 + %7 = icmp eq i32 %6, 0 + br i1 %7, label %8, label %10 + +8: ; preds = %1 + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %18 + +10: ; preds = %1 + %11 = load i32, ptr %3, align 4 + %12 = icmp eq i32 %11, 1 + br i1 %12, label %13, label %15 + +13: ; preds = %10 + %14 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %17 + +15: ; preds = %10 + %16 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + br label %17 + +17: ; preds = %15, %13 + br label %18 + +18: ; preds = %17, %8 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 personality ptr @__gxx_personality_v0 { + %1 = alloca i32, align 4 + %2 = alloca %class.Graph, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca %class.Graph, align 8 + %6 = alloca %class.Graph, align 8 + %7 = alloca %class.Graph, align 8 + %8 = alloca %class.Graph, align 8 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5) + invoke void @_ZN5Graph7addEdgeEii(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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(ptr noundef nonnull align 8 dereferenceable(16) %2) + to label %14 unwind label %39 + +14: ; preds = %13 + invoke void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5) + to label %15 unwind label %39 + +15: ; preds = %14 + invoke void @_ZN5Graph7addEdgeEii(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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(ptr noundef nonnull align 8 dereferenceable(16) %5) + to label %22 unwind label %43 + +22: ; preds = %21 + invoke void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 5) + to label %23 unwind label %43 + +23: ; preds = %22 + invoke void @_ZN5Graph7addEdgeEii(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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(ptr noundef nonnull align 8 dereferenceable(16) %6) + to label %30 unwind label %47 + +30: ; preds = %29 + invoke void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %7, i32 noundef 3) + to label %31 unwind label %47 + +31: ; preds = %30 + invoke void @_ZN5Graph7addEdgeEii(ptr 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(ptr 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(ptr 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(ptr noundef nonnull align 8 dereferenceable(16) %7) + to label %35 unwind label %51 + +35: ; preds = %34 + invoke void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %8, i32 noundef 3) + to label %36 unwind label %51 + +36: ; preds = %35 + invoke void @_Z4testR5Graph(ptr noundef nonnull align 8 dereferenceable(16) %8) + to label %37 unwind label %55 + +37: ; preds = %36 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %8) #14 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #14 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %6) #14 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %5) #14 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %2) #14 + %38 = load i32, ptr %1, align 4 + ret i32 %38 + +39: ; preds = %14, %13, %12, %11, %10, %9, %0 + %40 = landingpad { ptr, i32 } + cleanup + %41 = extractvalue { ptr, i32 } %40, 0 + store ptr %41, ptr %3, align 8 + %42 = extractvalue { ptr, i32 } %40, 1 + store i32 %42, ptr %4, align 4 + br label %62 + +43: ; preds = %22, %21, %20, %19, %18, %17, %16, %15 + %44 = landingpad { ptr, i32 } + cleanup + %45 = extractvalue { ptr, i32 } %44, 0 + store ptr %45, ptr %3, align 8 + %46 = extractvalue { ptr, i32 } %44, 1 + store i32 %46, ptr %4, align 4 + br label %61 + +47: ; preds = %30, %29, %28, %27, %26, %25, %24, %23 + %48 = landingpad { ptr, i32 } + cleanup + %49 = extractvalue { ptr, i32 } %48, 0 + store ptr %49, ptr %3, align 8 + %50 = extractvalue { ptr, i32 } %48, 1 + store i32 %50, ptr %4, align 4 + br label %60 + +51: ; preds = %35, %34, %33, %32, %31 + %52 = landingpad { ptr, i32 } + cleanup + %53 = extractvalue { ptr, i32 } %52, 0 + store ptr %53, ptr %3, align 8 + %54 = extractvalue { ptr, i32 } %52, 1 + store i32 %54, ptr %4, align 4 + br label %59 + +55: ; preds = %36 + %56 = landingpad { ptr, i32 } + cleanup + %57 = extractvalue { ptr, i32 } %56, 0 + store ptr %57, ptr %3, align 8 + %58 = extractvalue { ptr, i32 } %56, 1 + store i32 %58, ptr %4, align 4 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %8) #14 + br label %59 + +59: ; preds = %55, %51 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #14 + br label %60 + +60: ; preds = %59, %47 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %6) #14 + br label %61 + +61: ; preds = %60, %43 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %5) #14 + br label %62 + +62: ; preds = %61, %39 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %2) #14 + br label %63 + +63: ; preds = %62 + %64 = load ptr, ptr %3, align 8 + %65 = load i32, ptr %4, align 4 + %66 = insertvalue { ptr, i32 } poison, ptr %64, 0 + %67 = insertvalue { ptr, i32 } %66, i32 %65, 1 + resume { ptr, i32 } %67 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #7 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + store i32 %6, ptr %7, align 8 + %8 = load i32, ptr %4, align 4 + %9 = sext i32 %8 to i64 + %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) + %11 = extractvalue { i64, i1 } %10, 1 + %12 = extractvalue { i64, i1 } %10, 0 + %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = or i1 %11, %14 + %16 = extractvalue { i64, i1 } %13, 0 + %17 = select i1 %15, i64 -1, i64 %16 + %18 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #16 + store i64 %9, ptr %18, align 16 + %19 = getelementptr inbounds i8, ptr %18, i64 8 + %20 = icmp eq i64 %9, 0 + br i1 %20, label %27, label %21 + +21: ; preds = %2 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %9 + br label %23 + +23: ; preds = %23, %21 + %24 = phi ptr [ %19, %21 ], [ %25, %23 ] + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #14 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 1 + %26 = icmp eq ptr %25, %22 + br i1 %26, label %27, label %23 + +27: ; preds = %2, %23 + %28 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + store ptr %19, ptr %28, align 8 + ret void +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #1 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %class.Graph, ptr %3, i32 0, i32 1 + %5 = load ptr, ptr %4, align 8 + %6 = icmp eq ptr %5, null + br i1 %6, label %17, label %7 + +7: ; preds = %1 + %8 = getelementptr inbounds i8, ptr %5, i64 -8 + %9 = load i64, ptr %8, align 8 + %10 = getelementptr inbounds %"class.std::__cxx11::list", ptr %5, i64 %9 + %11 = icmp eq ptr %5, %10 + br i1 %11, label %16, label %12 + +12: ; preds = %12, %7 + %13 = phi ptr [ %10, %7 ], [ %14, %12 ] + %14 = getelementptr inbounds %"class.std::__cxx11::list", ptr %13, i64 -1 + call void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %14) #14 + %15 = icmp eq ptr %14, %5 + br i1 %15, label %16, label %12 + +16: ; preds = %12, %7 + call void @_ZdaPv(ptr noundef %8) #17 + br label %17 + +17: ; preds = %16, %1 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #8 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #8 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #9 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #1 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #1 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #1 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #1 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #1 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdaPv(ptr noundef) #10 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #1 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %10, i32 0, i32 0 + %12 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %11, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %12, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + store ptr %14, ptr %7, align 8 + br label %15 + +15: ; preds = %27, %1 + %16 = load ptr, ptr %7, align 8 + %17 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %10, i32 0, i32 0 + %18 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %17, i32 0, i32 0 + %19 = icmp ne ptr %16, %18 + br i1 %19, label %20, label %35 + +20: ; preds = %15 + %21 = load ptr, ptr %7, align 8 + store ptr %21, ptr %8, align 8 + %22 = load ptr, ptr %8, align 8 + %23 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %22, i32 0, i32 0 + %24 = load ptr, ptr %23, align 8 + store ptr %24, ptr %7, align 8 + %25 = load ptr, ptr %8, align 8 + %26 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %25) + to label %27 unwind label %36 + +27: ; preds = %20 + store ptr %26, ptr %9, align 8 + %28 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #14 + %29 = load ptr, ptr %9, align 8 + store ptr %28, ptr %4, align 8 + store ptr %29, ptr %5, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + store ptr %30, ptr %2, align 8 + store ptr %31, ptr %3, align 8 + %32 = load ptr, ptr %2, align 8 + %33 = load ptr, ptr %3, align 8 + %34 = load ptr, ptr %8, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %10, ptr noundef %34) #14 + br label %15, !llvm.loop !12 + +35: ; preds = %15 + ret void + +36: ; preds = %20 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #15 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #1 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #14 + ret ptr %5 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #14 + call void @_ZSt9terminatev() #15 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef %1) #2 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %7, align 8 + store ptr %9, ptr %3, align 8 + store ptr %10, ptr %4, align 8 + store i64 1, ptr %5, align 8 + %11 = load ptr, ptr %3, align 8 + %12 = load ptr, ptr %4, align 8 + %13 = load i64, ptr %5, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %11, ptr noundef %12, i64 noundef %13) + br label %14 + +14: ; preds = %2 + ret void + +15: ; No predecessors! + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #15 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #14 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #10 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #1 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #0 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #14 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %14 = load ptr, ptr %9, align 8 + %15 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %14) + store ptr %15, ptr %11, align 8 + %16 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %14) #14 + store ptr %16, ptr %12, align 8 + %17 = load ptr, ptr %12, align 8 + %18 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %18) #14 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + %21 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %20) + %22 = load ptr, ptr %10, align 8 + store ptr %19, ptr %6, align 8 + store ptr %21, ptr %7, align 8 + store ptr %22, ptr %8, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %7, align 8 + %25 = load ptr, ptr %8, align 8 + store ptr %23, ptr %3, align 8 + store ptr %24, ptr %4, align 8 + store ptr %25, ptr %5, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = load ptr, ptr %4, align 8 + %28 = load ptr, ptr %5, align 8 + %29 = load i32, ptr %28, align 4 + store i32 %29, ptr %27, align 4 + %30 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #14 + %31 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #14 + ret ptr %31 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #12 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #2 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #1 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #2 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #1 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #15 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #16 + ret ptr %20 +} + +; Function Attrs: noreturn +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 noundef nonnull ptr @_Znwm(i64 noundef) #9 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #1 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %3) + ret i64 %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %5, i32 0, i32 1 + %7 = load i64, ptr %6, align 8 + ret i64 %7 +} + +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 = { 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 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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #4 = { nocallback nofree nosync 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 = { 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 = { 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +attributes #9 = { 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 #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 = { noinline noreturn 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 = { 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 = { nounwind } +attributes #15 = { noreturn nounwind } +attributes #16 = { builtin allocsize(0) } +attributes #17 = { builtin nounwind } +attributes #18 = { noreturn } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/find-common-elements-three-sorted-arrays.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/find-common-elements-three-sorted-arrays.ll new file mode 100644 index 000000000..bc4acf6cc --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/find-common-elements-three-sorted-arrays.ll @@ -0,0 +1,220 @@ +; ModuleID = 'PE-benchmarks/find-common-elements-three-sorted-arrays.cpp' +source_filename = "PE-benchmarks/find-common-elements-three-sorted-arrays.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 +@__const.main.ar3 = private unnamed_addr constant [8 x i32] [i32 3, i32 4, i32 15, i32 20, i32 30, i32 70, i32 80, i32 120], align 16 +@.str.1 = private unnamed_addr constant [21 x i8] c"Common Elements are \00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10findCommonPiS_S_iii(ptr noundef %0, ptr noundef %1, ptr noundef %2, i32 noundef %3, i32 noundef %4, i32 noundef %5) #0 { + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + %15 = alloca i32, align 4 + store ptr %0, ptr %7, align 8 + store ptr %1, ptr %8, align 8 + store ptr %2, ptr %9, align 8 + store i32 %3, ptr %10, align 4 + store i32 %4, ptr %11, align 4 + store i32 %5, ptr %12, align 4 + store i32 0, ptr %13, align 4 + store i32 0, ptr %14, align 4 + store i32 0, ptr %15, align 4 + br label %16 + +16: ; preds = %103, %6 + %17 = load i32, ptr %13, align 4 + %18 = load i32, ptr %10, align 4 + %19 = icmp slt i32 %17, %18 + br i1 %19, label %20, label %28 + +20: ; preds = %16 + %21 = load i32, ptr %14, align 4 + %22 = load i32, ptr %11, align 4 + %23 = icmp slt i32 %21, %22 + br i1 %23, label %24, label %28 + +24: ; preds = %20 + %25 = load i32, ptr %15, align 4 + %26 = load i32, ptr %12, align 4 + %27 = icmp slt i32 %25, %26 + br label %28 + +28: ; preds = %24, %20, %16 + %29 = phi i1 [ false, %20 ], [ false, %16 ], [ %27, %24 ] + br i1 %29, label %30, label %104 + +30: ; preds = %28 + %31 = load ptr, ptr %7, align 8 + %32 = load i32, ptr %13, align 4 + %33 = sext i32 %32 to i64 + %34 = getelementptr inbounds i32, ptr %31, i64 %33 + %35 = load i32, ptr %34, align 4 + %36 = load ptr, ptr %8, align 8 + %37 = load i32, ptr %14, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds i32, ptr %36, i64 %38 + %40 = load i32, ptr %39, align 4 + %41 = icmp eq i32 %35, %40 + br i1 %41, label %42, label %68 + +42: ; preds = %30 + %43 = load ptr, ptr %8, align 8 + %44 = load i32, ptr %14, align 4 + %45 = sext i32 %44 to i64 + %46 = getelementptr inbounds i32, ptr %43, i64 %45 + %47 = load i32, ptr %46, align 4 + %48 = load ptr, ptr %9, align 8 + %49 = load i32, ptr %15, align 4 + %50 = sext i32 %49 to i64 + %51 = getelementptr inbounds i32, ptr %48, i64 %50 + %52 = load i32, ptr %51, align 4 + %53 = icmp eq i32 %47, %52 + br i1 %53, label %54, label %68 + +54: ; preds = %42 + %55 = load ptr, ptr %7, align 8 + %56 = load i32, ptr %13, align 4 + %57 = sext i32 %56 to i64 + %58 = getelementptr inbounds i32, ptr %55, i64 %57 + %59 = load i32, ptr %58, align 4 + %60 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %59) + %61 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %60, ptr noundef @.str) + %62 = load i32, ptr %13, align 4 + %63 = add nsw i32 %62, 1 + store i32 %63, ptr %13, align 4 + %64 = load i32, ptr %14, align 4 + %65 = add nsw i32 %64, 1 + store i32 %65, ptr %14, align 4 + %66 = load i32, ptr %15, align 4 + %67 = add nsw i32 %66, 1 + store i32 %67, ptr %15, align 4 + br label %103 + +68: ; preds = %42, %30 + %69 = load ptr, ptr %7, align 8 + %70 = load i32, ptr %13, align 4 + %71 = sext i32 %70 to i64 + %72 = getelementptr inbounds i32, ptr %69, i64 %71 + %73 = load i32, ptr %72, align 4 + %74 = load ptr, ptr %8, align 8 + %75 = load i32, ptr %14, align 4 + %76 = sext i32 %75 to i64 + %77 = getelementptr inbounds i32, ptr %74, i64 %76 + %78 = load i32, ptr %77, align 4 + %79 = icmp slt i32 %73, %78 + br i1 %79, label %80, label %83 + +80: ; preds = %68 + %81 = load i32, ptr %13, align 4 + %82 = add nsw i32 %81, 1 + store i32 %82, ptr %13, align 4 + br label %102 + +83: ; preds = %68 + %84 = load ptr, ptr %8, align 8 + %85 = load i32, ptr %14, align 4 + %86 = sext i32 %85 to i64 + %87 = getelementptr inbounds i32, ptr %84, i64 %86 + %88 = load i32, ptr %87, align 4 + %89 = load ptr, ptr %9, align 8 + %90 = load i32, ptr %15, align 4 + %91 = sext i32 %90 to i64 + %92 = getelementptr inbounds i32, ptr %89, i64 %91 + %93 = load i32, ptr %92, align 4 + %94 = icmp slt i32 %88, %93 + br i1 %94, label %95, label %98 + +95: ; preds = %83 + %96 = load i32, ptr %14, align 4 + %97 = add nsw i32 %96, 1 + store i32 %97, ptr %14, align 4 + br label %101 + +98: ; preds = %83 + %99 = load i32, ptr %15, align 4 + %100 = add nsw i32 %99, 1 + store i32 %100, ptr %15, align 4 + br label %101 + +101: ; preds = %98, %95 + br label %102 + +102: ; preds = %101, %80 + br label %103 + +103: ; preds = %102, %54 + br label %16, !llvm.loop !6 + +104: ; preds = %28 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 + +; 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 [5 x i32], align 16 + %4 = alloca [8 x i32], align 16 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.ar1, i64 24, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %3, ptr align 16 @__const.main.ar2, i64 20, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %4, ptr align 16 @__const.main.ar3, i64 32, i1 false) + store i32 6, ptr %5, align 4 + store i32 5, ptr %6, align 4 + store i32 8, ptr %7, align 4 + %8 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + %9 = getelementptr inbounds [6 x i32], ptr %2, i64 0, i64 0 + %10 = getelementptr inbounds [5 x i32], ptr %3, i64 0, i64 0 + %11 = getelementptr inbounds [8 x i32], ptr %4, i64 0, i64 0 + %12 = load i32, ptr %5, align 4 + %13 = load i32, ptr %6, align 4 + %14 = load i32, ptr %7, align 4 + call void @_Z10findCommonPiS_S_iii(ptr noundef %9, ptr noundef %10, ptr noundef %11, i32 noundef %12, i32 noundef %13, i32 noundef %14) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 + +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/find-k-closest-elements-given-value.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/find-k-closest-elements-given-value.ll new file mode 100644 index 000000000..d28978d00 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/find-k-closest-elements-given-value.ll @@ -0,0 +1,334 @@ +; ModuleID = 'PE-benchmarks/find-k-closest-elements-given-value.cpp' +source_filename = "PE-benchmarks/find-k-closest-elements-given-value.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +@.str = private unnamed_addr constant [4 x i8] c"%d \00", align 1 +@__const.main.arr = private unnamed_addr constant [13 x i32] [i32 12, i32 16, i32 22, i32 30, i32 35, i32 39, i32 42, i32 45, i32 48, i32 50, i32 53, i32 55, i32 56], align 16 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z13findCrossOverPiiii(ptr noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #0 { + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + store ptr %0, ptr %6, align 8 + store i32 %1, ptr %7, align 4 + store i32 %2, ptr %8, align 4 + store i32 %3, ptr %9, align 4 + %11 = load ptr, ptr %6, align 8 + %12 = load i32, ptr %8, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i32, ptr %11, i64 %13 + %15 = load i32, ptr %14, align 4 + %16 = load i32, ptr %9, align 4 + %17 = icmp sle i32 %15, %16 + br i1 %17, label %18, label %20 + +18: ; preds = %4 + %19 = load i32, ptr %8, align 4 + store i32 %19, ptr %5, align 4 + br label %75 + +20: ; preds = %4 + %21 = load ptr, ptr %6, align 8 + %22 = load i32, ptr %7, align 4 + %23 = sext i32 %22 to i64 + %24 = getelementptr inbounds i32, ptr %21, i64 %23 + %25 = load i32, ptr %24, align 4 + %26 = load i32, ptr %9, align 4 + %27 = icmp sgt i32 %25, %26 + br i1 %27, label %28, label %30 + +28: ; preds = %20 + %29 = load i32, ptr %7, align 4 + store i32 %29, ptr %5, align 4 + br label %75 + +30: ; preds = %20 + %31 = load i32, ptr %7, align 4 + %32 = load i32, ptr %8, align 4 + %33 = add nsw i32 %31, %32 + %34 = sdiv i32 %33, 2 + store i32 %34, ptr %10, align 4 + %35 = load ptr, ptr %6, align 8 + %36 = load i32, ptr %10, align 4 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds i32, ptr %35, i64 %37 + %39 = load i32, ptr %38, align 4 + %40 = load i32, ptr %9, align 4 + %41 = icmp sle i32 %39, %40 + br i1 %41, label %42, label %53 + +42: ; preds = %30 + %43 = load ptr, ptr %6, align 8 + %44 = load i32, ptr %10, align 4 + %45 = add nsw i32 %44, 1 + %46 = sext i32 %45 to i64 + %47 = getelementptr inbounds i32, ptr %43, i64 %46 + %48 = load i32, ptr %47, align 4 + %49 = load i32, ptr %9, align 4 + %50 = icmp sgt i32 %48, %49 + br i1 %50, label %51, label %53 + +51: ; preds = %42 + %52 = load i32, ptr %10, align 4 + store i32 %52, ptr %5, align 4 + br label %75 + +53: ; preds = %42, %30 + %54 = load ptr, ptr %6, align 8 + %55 = load i32, ptr %10, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i32, ptr %54, i64 %56 + %58 = load i32, ptr %57, align 4 + %59 = load i32, ptr %9, align 4 + %60 = icmp slt i32 %58, %59 + br i1 %60, label %61, label %68 + +61: ; preds = %53 + %62 = load ptr, ptr %6, align 8 + %63 = load i32, ptr %10, align 4 + %64 = add nsw i32 %63, 1 + %65 = load i32, ptr %8, align 4 + %66 = load i32, ptr %9, align 4 + %67 = call noundef i32 @_Z13findCrossOverPiiii(ptr noundef %62, i32 noundef %64, i32 noundef %65, i32 noundef %66) + store i32 %67, ptr %5, align 4 + br label %75 + +68: ; preds = %53 + %69 = load ptr, ptr %6, align 8 + %70 = load i32, ptr %7, align 4 + %71 = load i32, ptr %10, align 4 + %72 = sub nsw i32 %71, 1 + %73 = load i32, ptr %9, align 4 + %74 = call noundef i32 @_Z13findCrossOverPiiii(ptr noundef %69, i32 noundef %70, i32 noundef %72, i32 noundef %73) + store i32 %74, ptr %5, align 4 + br label %75 + +75: ; preds = %68, %61, %51, %28, %18 + %76 = load i32, ptr %5, align 4 + ret i32 %76 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13printKclosestPiiii(ptr noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #0 { + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store i32 %2, ptr %7, align 4 + store i32 %3, ptr %8, align 4 + %12 = load ptr, ptr %5, align 8 + %13 = load i32, ptr %8, align 4 + %14 = sub nsw i32 %13, 1 + %15 = load i32, ptr %6, align 4 + %16 = call noundef i32 @_Z13findCrossOverPiiii(ptr noundef %12, i32 noundef 0, i32 noundef %14, i32 noundef %15) + store i32 %16, ptr %9, align 4 + %17 = load i32, ptr %9, align 4 + %18 = add nsw i32 %17, 1 + store i32 %18, ptr %10, align 4 + store i32 0, ptr %11, align 4 + %19 = load ptr, ptr %5, align 8 + %20 = load i32, ptr %9, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds i32, ptr %19, i64 %21 + %23 = load i32, ptr %22, align 4 + %24 = load i32, ptr %6, align 4 + %25 = icmp eq i32 %23, %24 + br i1 %25, label %26, label %29 + +26: ; preds = %4 + %27 = load i32, ptr %9, align 4 + %28 = add nsw i32 %27, -1 + store i32 %28, ptr %9, align 4 + br label %29 + +29: ; preds = %26, %4 + br label %30 + +30: ; preds = %75, %29 + %31 = load i32, ptr %9, align 4 + %32 = icmp sge i32 %31, 0 + br i1 %32, label %33, label %41 + +33: ; preds = %30 + %34 = load i32, ptr %10, align 4 + %35 = load i32, ptr %8, align 4 + %36 = icmp slt i32 %34, %35 + br i1 %36, label %37, label %41 + +37: ; preds = %33 + %38 = load i32, ptr %11, align 4 + %39 = load i32, ptr %7, align 4 + %40 = icmp slt i32 %38, %39 + br label %41 + +41: ; preds = %37, %33, %30 + %42 = phi i1 [ false, %33 ], [ false, %30 ], [ %40, %37 ] + br i1 %42, label %43, label %78 + +43: ; preds = %41 + %44 = load i32, ptr %6, align 4 + %45 = load ptr, ptr %5, align 8 + %46 = load i32, ptr %9, align 4 + %47 = sext i32 %46 to i64 + %48 = getelementptr inbounds i32, ptr %45, i64 %47 + %49 = load i32, ptr %48, align 4 + %50 = sub nsw i32 %44, %49 + %51 = load ptr, ptr %5, align 8 + %52 = load i32, ptr %10, align 4 + %53 = sext i32 %52 to i64 + %54 = getelementptr inbounds i32, ptr %51, i64 %53 + %55 = load i32, ptr %54, align 4 + %56 = load i32, ptr %6, align 4 + %57 = sub nsw i32 %55, %56 + %58 = icmp slt i32 %50, %57 + br i1 %58, label %59, label %67 + +59: ; preds = %43 + %60 = load ptr, ptr %5, align 8 + %61 = load i32, ptr %9, align 4 + %62 = add nsw i32 %61, -1 + store i32 %62, ptr %9, align 4 + %63 = sext i32 %61 to i64 + %64 = getelementptr inbounds i32, ptr %60, i64 %63 + %65 = load i32, ptr %64, align 4 + %66 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %65) + br label %75 + +67: ; preds = %43 + %68 = load ptr, ptr %5, align 8 + %69 = load i32, ptr %10, align 4 + %70 = add nsw i32 %69, 1 + store i32 %70, ptr %10, align 4 + %71 = sext i32 %69 to i64 + %72 = getelementptr inbounds i32, ptr %68, i64 %71 + %73 = load i32, ptr %72, align 4 + %74 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %73) + br label %75 + +75: ; preds = %67, %59 + %76 = load i32, ptr %11, align 4 + %77 = add nsw i32 %76, 1 + store i32 %77, ptr %11, align 4 + br label %30, !llvm.loop !6 + +78: ; preds = %41 + br label %79 + +79: ; preds = %88, %78 + %80 = load i32, ptr %11, align 4 + %81 = load i32, ptr %7, align 4 + %82 = icmp slt i32 %80, %81 + br i1 %82, label %83, label %86 + +83: ; preds = %79 + %84 = load i32, ptr %9, align 4 + %85 = icmp sge i32 %84, 0 + br label %86 + +86: ; preds = %83, %79 + %87 = phi i1 [ false, %79 ], [ %85, %83 ] + br i1 %87, label %88, label %98 + +88: ; preds = %86 + %89 = load ptr, ptr %5, align 8 + %90 = load i32, ptr %9, align 4 + %91 = add nsw i32 %90, -1 + store i32 %91, ptr %9, align 4 + %92 = sext i32 %90 to i64 + %93 = getelementptr inbounds i32, ptr %89, i64 %92 + %94 = load i32, ptr %93, align 4 + %95 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %94) + %96 = load i32, ptr %11, align 4 + %97 = add nsw i32 %96, 1 + store i32 %97, ptr %11, align 4 + br label %79, !llvm.loop !8 + +98: ; preds = %86 + br label %99 + +99: ; preds = %109, %98 + %100 = load i32, ptr %11, align 4 + %101 = load i32, ptr %7, align 4 + %102 = icmp slt i32 %100, %101 + br i1 %102, label %103, label %107 + +103: ; preds = %99 + %104 = load i32, ptr %10, align 4 + %105 = load i32, ptr %8, align 4 + %106 = icmp slt i32 %104, %105 + br label %107 + +107: ; preds = %103, %99 + %108 = phi i1 [ false, %99 ], [ %106, %103 ] + br i1 %108, label %109, label %119 + +109: ; preds = %107 + %110 = load ptr, ptr %5, align 8 + %111 = load i32, ptr %10, align 4 + %112 = add nsw i32 %111, 1 + store i32 %112, ptr %10, align 4 + %113 = sext i32 %111 to i64 + %114 = getelementptr inbounds i32, ptr %110, i64 %113 + %115 = load i32, ptr %114, align 4 + %116 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %115) + %117 = load i32, ptr %11, align 4 + %118 = add nsw i32 %117, 1 + store i32 %118, ptr %11, align 4 + br label %99, !llvm.loop !9 + +119: ; preds = %107 + ret void +} + +declare i32 @printf(ptr noundef, ...) #1 + +; 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 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 52, i1 false) + store i32 13, ptr %3, align 4 + store i32 35, ptr %4, align 4 + store i32 4, ptr %5, align 4 + %6 = getelementptr inbounds [13 x i32], ptr %2, i64 0, i64 0 + %7 = load i32, ptr %4, align 4 + %8 = load i32, ptr %3, align 4 + call void @_Z13printKclosestPiiii(ptr noundef %6, i32 noundef %7, i32 noundef 4, i32 noundef %8) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 + +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll new file mode 100644 index 000000000..96f307d50 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll @@ -0,0 +1,392 @@ +; ModuleID = 'PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp' +source_filename = "PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +$_ZSt3maxIiERKT_S2_S2_ = comdat any + +@x = dso_local global [8 x i32] [i32 0, i32 1, i32 1, i32 -1, i32 1, i32 0, i32 -1, i32 -1], align 16 +@y = dso_local global [8 x i32] [i32 1, i32 0, i32 1, i32 1, i32 -1, i32 -1, i32 0, i32 -1], align 16 +@dp = dso_local global [3 x [3 x i32]] zeroinitializer, align 16 +@__const.main.mat = private unnamed_addr constant [3 x [3 x i8]] [[3 x i8] c"acd", [3 x i8] c"hba", [3 x i8] c"igf"], align 1 +@_ZSt4cout = external global %"class.std::basic_ostream", align 8 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z7isvalidii(i32 noundef %0, i32 noundef %1) #0 { + %3 = alloca i1, align 1 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store i32 %0, ptr %4, align 4 + store i32 %1, ptr %5, align 4 + %6 = load i32, ptr %4, align 4 + %7 = icmp slt i32 %6, 0 + br i1 %7, label %17, label %8 + +8: ; preds = %2 + %9 = load i32, ptr %5, align 4 + %10 = icmp slt i32 %9, 0 + br i1 %10, label %17, label %11 + +11: ; preds = %8 + %12 = load i32, ptr %4, align 4 + %13 = icmp sge i32 %12, 3 + br i1 %13, label %17, label %14 + +14: ; preds = %11 + %15 = load i32, ptr %5, align 4 + %16 = icmp sge i32 %15, 3 + br i1 %16, label %17, label %18 + +17: ; preds = %14, %11, %8, %2 + store i1 false, ptr %3, align 1 + br label %19 + +18: ; preds = %14 + store i1 true, ptr %3, align 1 + br label %19 + +19: ; preds = %18, %17 + %20 = load i1, ptr %3, align 1 + ret i1 %20 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z10isadjacentcc(i8 noundef signext %0, i8 noundef signext %1) #0 { + %3 = alloca i8, align 1 + %4 = alloca i8, align 1 + store i8 %0, ptr %3, align 1 + store i8 %1, ptr %4, align 1 + %5 = load i8, ptr %4, align 1 + %6 = sext i8 %5 to i32 + %7 = load i8, ptr %3, align 1 + %8 = sext i8 %7 to i32 + %9 = sub nsw i32 %6, %8 + %10 = icmp eq i32 %9, 1 + ret i1 %10 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z10getLenUtilPA3_ciic(ptr noundef %0, i32 noundef %1, i32 noundef %2, i8 noundef signext %3) #1 { + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i8, align 1 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + store ptr %0, ptr %6, align 8 + store i32 %1, ptr %7, align 4 + store i32 %2, ptr %8, align 4 + store i8 %3, ptr %9, align 1 + %13 = load i32, ptr %7, align 4 + %14 = load i32, ptr %8, align 4 + %15 = call noundef zeroext i1 @_Z7isvalidii(i32 noundef %13, i32 noundef %14) + br i1 %15, label %16, label %27 + +16: ; preds = %4 + %17 = load i8, ptr %9, align 1 + %18 = load ptr, ptr %6, align 8 + %19 = load i32, ptr %7, align 4 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds [3 x i8], ptr %18, i64 %20 + %22 = load i32, ptr %8, align 4 + %23 = sext i32 %22 to i64 + %24 = getelementptr inbounds [3 x i8], ptr %21, i64 0, i64 %23 + %25 = load i8, ptr %24, align 1 + %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 + store i32 0, ptr %5, align 4 + br label %86 + +28: ; preds = %16 + %29 = load i32, ptr %7, align 4 + %30 = sext i32 %29 to i64 + %31 = getelementptr inbounds [3 x [3 x i32]], ptr @dp, i64 0, i64 %30 + %32 = load i32, ptr %8, align 4 + %33 = sext i32 %32 to i64 + %34 = getelementptr inbounds [3 x i32], ptr %31, i64 0, i64 %33 + %35 = load i32, ptr %34, align 4 + %36 = icmp ne i32 %35, -1 + br i1 %36, label %37, label %45 + +37: ; preds = %28 + %38 = load i32, ptr %7, align 4 + %39 = sext i32 %38 to i64 + %40 = getelementptr inbounds [3 x [3 x i32]], ptr @dp, i64 0, i64 %39 + %41 = load i32, ptr %8, align 4 + %42 = sext i32 %41 to i64 + %43 = getelementptr inbounds [3 x i32], ptr %40, i64 0, i64 %42 + %44 = load i32, ptr %43, align 4 + store i32 %44, ptr %5, align 4 + br label %86 + +45: ; preds = %28 + store i32 0, ptr %10, align 4 + store i32 0, ptr %11, align 4 + br label %46 + +46: ; preds = %75, %45 + %47 = load i32, ptr %11, align 4 + %48 = icmp slt i32 %47, 8 + br i1 %48, label %49, label %78 + +49: ; preds = %46 + %50 = load ptr, ptr %6, align 8 + %51 = load i32, ptr %7, align 4 + %52 = load i32, ptr %11, align 4 + %53 = sext i32 %52 to i64 + %54 = getelementptr inbounds [8 x i32], ptr @x, i64 0, i64 %53 + %55 = load i32, ptr %54, align 4 + %56 = add nsw i32 %51, %55 + %57 = load i32, ptr %8, align 4 + %58 = load i32, ptr %11, align 4 + %59 = sext i32 %58 to i64 + %60 = getelementptr inbounds [8 x i32], ptr @y, i64 0, i64 %59 + %61 = load i32, ptr %60, align 4 + %62 = add nsw i32 %57, %61 + %63 = load ptr, ptr %6, align 8 + %64 = load i32, ptr %7, align 4 + %65 = sext i32 %64 to i64 + %66 = getelementptr inbounds [3 x i8], ptr %63, i64 %65 + %67 = load i32, ptr %8, align 4 + %68 = sext i32 %67 to i64 + %69 = getelementptr inbounds [3 x i8], ptr %66, i64 0, i64 %68 + %70 = load i8, ptr %69, align 1 + %71 = call noundef i32 @_Z10getLenUtilPA3_ciic(ptr noundef %50, i32 noundef %56, i32 noundef %62, i8 noundef signext %70) + %72 = add nsw i32 1, %71 + store i32 %72, ptr %12, align 4 + %73 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %10, ptr noundef nonnull align 4 dereferenceable(4) %12) + %74 = load i32, ptr %73, align 4 + store i32 %74, ptr %10, align 4 + br label %75 + +75: ; preds = %49 + %76 = load i32, ptr %11, align 4 + %77 = add nsw i32 %76, 1 + store i32 %77, ptr %11, align 4 + br label %46, !llvm.loop !6 + +78: ; preds = %46 + %79 = load i32, ptr %10, align 4 + %80 = load i32, ptr %7, align 4 + %81 = sext i32 %80 to i64 + %82 = getelementptr inbounds [3 x [3 x i32]], ptr @dp, i64 0, i64 %81 + %83 = load i32, ptr %8, align 4 + %84 = sext i32 %83 to i64 + %85 = getelementptr inbounds [3 x i32], ptr %82, i64 0, i64 %84 + store i32 %79, ptr %85, align 4 + store i32 %79, ptr %5, align 4 + br label %86 + +86: ; preds = %78, %37, %27 + %87 = load i32, ptr %5, align 4 + ret i32 %87 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z6getLenPA3_cc(ptr noundef %0, i8 noundef signext %1) #1 { + %3 = alloca ptr, align 8 + %4 = alloca i8, align 1 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i8 %1, ptr %4, align 1 + call void @llvm.memset.p0.i64(ptr align 16 @dp, i8 -1, i64 36, i1 false) + store i32 0, ptr %5, align 4 + store i32 0, ptr %6, align 4 + br label %10 + +10: ; preds = %62, %2 + %11 = load i32, ptr %6, align 4 + %12 = icmp slt i32 %11, 3 + br i1 %12, label %13, label %65 + +13: ; preds = %10 + store i32 0, ptr %7, align 4 + br label %14 + +14: ; preds = %58, %13 + %15 = load i32, ptr %7, align 4 + %16 = icmp slt i32 %15, 3 + br i1 %16, label %17, label %61 + +17: ; preds = %14 + %18 = load ptr, ptr %3, align 8 + %19 = load i32, ptr %6, align 4 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds [3 x i8], ptr %18, i64 %20 + %22 = load i32, ptr %7, align 4 + %23 = sext i32 %22 to i64 + %24 = getelementptr inbounds [3 x i8], ptr %21, i64 0, i64 %23 + %25 = load i8, ptr %24, align 1 + %26 = sext i8 %25 to i32 + %27 = load i8, ptr %4, align 1 + %28 = sext i8 %27 to i32 + %29 = icmp eq i32 %26, %28 + br i1 %29, label %30, label %57 + +30: ; preds = %17 + store i32 0, ptr %8, align 4 + br label %31 + +31: ; preds = %53, %30 + %32 = load i32, ptr %8, align 4 + %33 = icmp slt i32 %32, 8 + br i1 %33, label %34, label %56 + +34: ; preds = %31 + %35 = load ptr, ptr %3, align 8 + %36 = load i32, ptr %6, align 4 + %37 = load i32, ptr %8, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds [8 x i32], ptr @x, i64 0, i64 %38 + %40 = load i32, ptr %39, align 4 + %41 = add nsw i32 %36, %40 + %42 = load i32, ptr %7, align 4 + %43 = load i32, ptr %8, align 4 + %44 = sext i32 %43 to i64 + %45 = getelementptr inbounds [8 x i32], ptr @y, i64 0, i64 %44 + %46 = load i32, ptr %45, align 4 + %47 = add nsw i32 %42, %46 + %48 = load i8, ptr %4, align 1 + %49 = call noundef i32 @_Z10getLenUtilPA3_ciic(ptr noundef %35, i32 noundef %41, i32 noundef %47, i8 noundef signext %48) + %50 = add nsw i32 1, %49 + store i32 %50, ptr %9, align 4 + %51 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %5, ptr noundef nonnull align 4 dereferenceable(4) %9) + %52 = load i32, ptr %51, align 4 + store i32 %52, ptr %5, align 4 + br label %53 + +53: ; preds = %34 + %54 = load i32, ptr %8, align 4 + %55 = add nsw i32 %54, 1 + store i32 %55, ptr %8, align 4 + br label %31, !llvm.loop !8 + +56: ; preds = %31 + br label %57 + +57: ; preds = %56, %17 + br label %58 + +58: ; preds = %57 + %59 = load i32, ptr %7, align 4 + %60 = add nsw i32 %59, 1 + store i32 %60, ptr %7, align 4 + br label %14, !llvm.loop !9 + +61: ; preds = %14 + br label %62 + +62: ; preds = %61 + %63 = load i32, ptr %6, align 4 + %64 = add nsw i32 %63, 1 + store i32 %64, ptr %6, align 4 + br label %10, !llvm.loop !10 + +65: ; preds = %10 + %66 = load i32, ptr %5, align 4 + ret i32 %66 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [3 x [3 x i8]], align 1 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %2, ptr align 1 @__const.main.mat, i64 9, i1 false) + %3 = getelementptr inbounds [3 x [3 x i8]], ptr %2, i64 0, i64 0 + %4 = call noundef i32 @_Z6getLenPA3_cc(ptr noundef %3, i8 noundef signext 97) + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %4) + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %5, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %7 = getelementptr inbounds [3 x [3 x i8]], ptr %2, i64 0, i64 0 + %8 = call noundef i32 @_Z6getLenPA3_cc(ptr noundef %7, i8 noundef signext 101) + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %8) + %10 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %9, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %11 = getelementptr inbounds [3 x [3 x i8]], ptr %2, i64 0, i64 0 + %12 = call noundef i32 @_Z6getLenPA3_cc(ptr noundef %11, i8 noundef signext 98) + %13 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %12) + %14 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %13, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %15 = getelementptr inbounds [3 x [3 x i8]], ptr %2, i64 0, i64 0 + %16 = call noundef i32 @_Z6getLenPA3_cc(ptr noundef %15, i8 noundef signext 102) + %17 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %16) + %18 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %17, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #5 + +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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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" } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/find-minimum-number-of-coins-that-make-a-change.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/find-minimum-number-of-coins-that-make-a-change.ll new file mode 100644 index 000000000..32742ed05 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/find-minimum-number-of-coins-that-make-a-change.ll @@ -0,0 +1,209 @@ +; ModuleID = 'PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp' +source_filename = "PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__const.main.coins = private unnamed_addr constant [4 x i32] [i32 9, i32 6, i32 5, i32 1], align 16 +@_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 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z8minCoinsPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %13 = load i32, ptr %6, align 4 + %14 = add nsw i32 %13, 1 + %15 = zext i32 %14 to i64 + %16 = call ptr @llvm.stacksave() + store ptr %16, ptr %7, align 8 + %17 = alloca i32, i64 %15, align 16 + store i64 %15, ptr %8, align 8 + %18 = getelementptr inbounds i32, ptr %17, i64 0 + store i32 0, ptr %18, align 16 + store i32 1, ptr %9, align 4 + br label %19 + +19: ; preds = %27, %3 + %20 = load i32, ptr %9, align 4 + %21 = load i32, ptr %6, align 4 + %22 = icmp sle i32 %20, %21 + br i1 %22, label %23, label %30 + +23: ; preds = %19 + %24 = load i32, ptr %9, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds i32, ptr %17, i64 %25 + store i32 2147483647, ptr %26, align 4 + br label %27 + +27: ; preds = %23 + %28 = load i32, ptr %9, align 4 + %29 = add nsw i32 %28, 1 + store i32 %29, ptr %9, align 4 + br label %19, !llvm.loop !6 + +30: ; preds = %19 + store i32 1, ptr %10, align 4 + br label %31 + +31: ; preds = %81, %30 + %32 = load i32, ptr %10, align 4 + %33 = load i32, ptr %6, align 4 + %34 = icmp sle i32 %32, %33 + br i1 %34, label %35, label %84 + +35: ; preds = %31 + store i32 0, ptr %11, align 4 + br label %36 + +36: ; preds = %77, %35 + %37 = load i32, ptr %11, align 4 + %38 = load i32, ptr %5, align 4 + %39 = icmp slt i32 %37, %38 + br i1 %39, label %40, label %80 + +40: ; preds = %36 + %41 = load ptr, ptr %4, align 8 + %42 = load i32, ptr %11, align 4 + %43 = sext i32 %42 to i64 + %44 = getelementptr inbounds i32, ptr %41, i64 %43 + %45 = load i32, ptr %44, align 4 + %46 = load i32, ptr %10, align 4 + %47 = icmp sle i32 %45, %46 + br i1 %47, label %48, label %76 + +48: ; preds = %40 + %49 = load i32, ptr %10, align 4 + %50 = load ptr, ptr %4, align 8 + %51 = load i32, ptr %11, align 4 + %52 = sext i32 %51 to i64 + %53 = getelementptr inbounds i32, ptr %50, i64 %52 + %54 = load i32, ptr %53, align 4 + %55 = sub nsw i32 %49, %54 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i32, ptr %17, i64 %56 + %58 = load i32, ptr %57, align 4 + store i32 %58, ptr %12, align 4 + %59 = load i32, ptr %12, align 4 + %60 = icmp ne i32 %59, 2147483647 + br i1 %60, label %61, label %75 + +61: ; preds = %48 + %62 = load i32, ptr %12, align 4 + %63 = add nsw i32 %62, 1 + %64 = load i32, ptr %10, align 4 + %65 = sext i32 %64 to i64 + %66 = getelementptr inbounds i32, ptr %17, i64 %65 + %67 = load i32, ptr %66, align 4 + %68 = icmp slt i32 %63, %67 + br i1 %68, label %69, label %75 + +69: ; preds = %61 + %70 = load i32, ptr %12, align 4 + %71 = add nsw i32 %70, 1 + %72 = load i32, ptr %10, align 4 + %73 = sext i32 %72 to i64 + %74 = getelementptr inbounds i32, ptr %17, i64 %73 + store i32 %71, ptr %74, align 4 + br label %75 + +75: ; preds = %69, %61, %48 + br label %76 + +76: ; preds = %75, %40 + br label %77 + +77: ; preds = %76 + %78 = load i32, ptr %11, align 4 + %79 = add nsw i32 %78, 1 + store i32 %79, ptr %11, align 4 + br label %36, !llvm.loop !8 + +80: ; preds = %36 + br label %81 + +81: ; preds = %80 + %82 = load i32, ptr %10, align 4 + %83 = add nsw i32 %82, 1 + store i32 %83, ptr %10, align 4 + br label %31, !llvm.loop !9 + +84: ; preds = %31 + %85 = load i32, ptr %6, align 4 + %86 = sext i32 %85 to i64 + %87 = getelementptr inbounds i32, ptr %17, i64 %86 + %88 = load i32, ptr %87, align 4 + %89 = load ptr, ptr %7, align 8 + call void @llvm.stackrestore(ptr %89) + ret i32 %88 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #2 { + %1 = alloca i32, align 4 + %2 = alloca [4 x i32], align 16 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.coins, i64 16, i1 false) + store i32 4, ptr %3, align 4 + store i32 11, ptr %4, align 4 + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %6 = getelementptr inbounds [4 x i32], ptr %2, i64 0, i64 0 + %7 = load i32, ptr %3, align 4 + %8 = load i32, ptr %4, align 4 + %9 = call noundef i32 @_Z8minCoinsPiii(ptr noundef %6, i32 noundef %7, i32 noundef %8) + %10 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %5, i32 noundef %9) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 + +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 = { nocallback nofree nosync nounwind willreturn } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/find-parity.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/find-parity.ll new file mode 100644 index 000000000..113b1f51d --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/find-parity.ll @@ -0,0 +1,91 @@ +; ModuleID = 'PE-benchmarks/find-parity.cpp' +source_filename = "PE-benchmarks/find-parity.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 +@.str.3 = private unnamed_addr constant [5 x i8] c"even\00", align 1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9getParityj(i32 noundef %0) #0 { + %2 = alloca i32, align 4 + %3 = alloca i32, align 4 + store i32 %0, ptr %2, align 4 + store i32 0, ptr %3, align 4 + br label %4 + +4: ; preds = %7, %1 + %5 = load i32, ptr %2, align 4 + %6 = icmp ne i32 %5, 0 + br i1 %6, label %7, label %16 + +7: ; preds = %4 + %8 = load i32, ptr %3, align 4 + %9 = icmp ne i32 %8, 0 + %10 = xor i1 %9, true + %11 = zext i1 %10 to i32 + store i32 %11, ptr %3, align 4 + %12 = load i32, ptr %2, align 4 + %13 = load i32, ptr %2, align 4 + %14 = sub i32 %13, 1 + %15 = and i32 %12, %14 + store i32 %15, ptr %2, align 4 + br label %4, !llvm.loop !6 + +16: ; preds = %4 + %17 = load i32, ptr %3, align 4 + ret i32 %17 +} + +; 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, ptr %1, align 4 + store i32 7, ptr %2, align 4 + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %4 = load i32, ptr %2, align 4 + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEj(ptr noundef nonnull align 8 dereferenceable(8) %3, i32 noundef %4) + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %5, ptr noundef @.str.1) + %7 = load i32, ptr %2, align 4 + %8 = call noundef i32 @_Z9getParityj(i32 noundef %7) + %9 = icmp ne i32 %8, 0 + %10 = zext i1 %9 to i64 + %11 = select i1 %9, ptr @.str.2, ptr @.str.3 + %12 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %11) + %13 = call i32 @getchar() + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEj(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +declare i32 @getchar() #2 + +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/find-two-non-repeating-element.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/find-two-non-repeating-element.ll new file mode 100644 index 000000000..d10800358 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/find-two-non-repeating-element.ll @@ -0,0 +1,185 @@ +; ModuleID = 'PE-benchmarks/find-two-non-repeating-element.cpp' +source_filename = "PE-benchmarks/find-two-non-repeating-element.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__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 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 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z19get2NonRepeatingNosPiiS_S_(ptr noundef %0, i32 noundef %1, ptr noundef %2, ptr noundef %3) #0 { + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %12 = load ptr, ptr %5, align 8 + %13 = getelementptr inbounds i32, ptr %12, i64 0 + %14 = load i32, ptr %13, align 4 + store i32 %14, ptr %9, align 4 + %15 = load ptr, ptr %7, align 8 + store i32 0, ptr %15, align 4 + %16 = load ptr, ptr %8, align 8 + store i32 0, ptr %16, align 4 + store i32 1, ptr %11, align 4 + br label %17 + +17: ; preds = %29, %4 + %18 = load i32, ptr %11, align 4 + %19 = load i32, ptr %6, align 4 + %20 = icmp slt i32 %18, %19 + br i1 %20, label %21, label %32 + +21: ; preds = %17 + %22 = load ptr, ptr %5, align 8 + %23 = load i32, ptr %11, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds i32, ptr %22, i64 %24 + %26 = load i32, ptr %25, align 4 + %27 = load i32, ptr %9, align 4 + %28 = xor i32 %27, %26 + store i32 %28, ptr %9, align 4 + br label %29 + +29: ; preds = %21 + %30 = load i32, ptr %11, align 4 + %31 = add nsw i32 %30, 1 + store i32 %31, ptr %11, align 4 + br label %17, !llvm.loop !6 + +32: ; preds = %17 + %33 = load i32, ptr %9, align 4 + %34 = load i32, ptr %9, align 4 + %35 = sub nsw i32 %34, 1 + %36 = xor i32 %35, -1 + %37 = and i32 %33, %36 + store i32 %37, ptr %10, align 4 + store i32 0, ptr %11, align 4 + br label %38 + +38: ; preds = %72, %32 + %39 = load i32, ptr %11, align 4 + %40 = load i32, ptr %6, align 4 + %41 = icmp slt i32 %39, %40 + br i1 %41, label %42, label %75 + +42: ; preds = %38 + %43 = load ptr, ptr %5, align 8 + %44 = load i32, ptr %11, align 4 + %45 = sext i32 %44 to i64 + %46 = getelementptr inbounds i32, ptr %43, i64 %45 + %47 = load i32, ptr %46, align 4 + %48 = load i32, ptr %10, align 4 + %49 = and i32 %47, %48 + %50 = icmp ne i32 %49, 0 + br i1 %50, label %51, label %61 + +51: ; preds = %42 + %52 = load ptr, ptr %7, align 8 + %53 = load i32, ptr %52, align 4 + %54 = load ptr, ptr %5, align 8 + %55 = load i32, ptr %11, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i32, ptr %54, i64 %56 + %58 = load i32, ptr %57, align 4 + %59 = xor i32 %53, %58 + %60 = load ptr, ptr %7, align 8 + store i32 %59, ptr %60, align 4 + br label %71 + +61: ; preds = %42 + %62 = load ptr, ptr %8, align 8 + %63 = load i32, ptr %62, align 4 + %64 = load ptr, ptr %5, align 8 + %65 = load i32, ptr %11, align 4 + %66 = sext i32 %65 to i64 + %67 = getelementptr inbounds i32, ptr %64, i64 %66 + %68 = load i32, ptr %67, align 4 + %69 = xor i32 %63, %68 + %70 = load ptr, ptr %8, align 8 + store i32 %69, ptr %70, align 4 + br label %71 + +71: ; preds = %61, %51 + br label %72 + +72: ; preds = %71 + %73 = load i32, ptr %11, align 4 + %74 = add nsw i32 %73, 1 + store i32 %74, ptr %11, align 4 + br label %38, !llvm.loop !8 + +75: ; preds = %38 + ret void +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #1 { + %1 = alloca [8 x i32], align 16 + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %1, ptr align 16 @__const.main.arr, i64 32, i1 false) + %4 = call noalias noundef nonnull ptr @_Znam(i64 noundef 16) #5 + store ptr %4, ptr %2, align 8 + %5 = call noalias noundef nonnull ptr @_Znam(i64 noundef 16) #5 + store ptr %5, ptr %3, align 8 + %6 = getelementptr inbounds [8 x i32], ptr %1, i64 0, i64 0 + %7 = load ptr, ptr %2, align 8 + %8 = load ptr, ptr %3, align 8 + call void @_Z19get2NonRepeatingNosPiiS_S_(ptr noundef %6, i32 noundef 8, ptr noundef %7, ptr noundef %8) + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %10 = load ptr, ptr %2, align 8 + %11 = load i32, ptr %10, align 4 + %12 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %9, i32 noundef %11) + %13 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %12, ptr noundef @.str.1) + %14 = load ptr, ptr %3, align 8 + %15 = load i32, ptr %14, align 4 + %16 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %13, i32 noundef %15) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #2 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 + +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 = { "frame-pointer"="all" "no-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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/finite-automata-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/finite-automata-algorithm.ll similarity index 54% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/finite-automata-algorithm.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/finite-automata-algorithm.ll index 700dce6ae..74264e951 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/finite-automata-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/finite-automata-algorithm.ll @@ -8,90 +8,90 @@ target triple = "x86_64-pc-linux-gnu" @.str.2 = private unnamed_addr constant [5 x i8] c"AABA\00", align 1 ; 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 { +define dso_local noundef i32 @_Z12getNextStatePciii(ptr noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #0 { %5 = alloca i32, align 4 - %6 = alloca i8*, align 8 + %6 = alloca ptr, align 8 %7 = alloca i32, align 4 %8 = alloca i32, align 4 %9 = alloca i32, align 4 %10 = alloca i32, align 4 %11 = alloca i32, align 4 - store i8* %0, i8** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - %12 = load i32, i32* %8, align 4 - %13 = load i32, i32* %7, align 4 + store ptr %0, ptr %6, align 8 + store i32 %1, ptr %7, align 4 + store i32 %2, ptr %8, align 4 + store i32 %3, ptr %9, align 4 + %12 = load i32, ptr %8, align 4 + %13 = load i32, ptr %7, align 4 %14 = icmp slt i32 %12, %13 br i1 %14, label %15, label %27 15: ; preds = %4 - %16 = load i32, i32* %9, align 4 - %17 = load i8*, i8** %6, align 8 - %18 = load i32, i32* %8, align 4 + %16 = load i32, ptr %9, align 4 + %17 = load ptr, ptr %6, align 8 + %18 = load i32, ptr %8, align 4 %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds i8, i8* %17, i64 %19 - %21 = load i8, i8* %20, align 1 + %20 = getelementptr inbounds i8, ptr %17, i64 %19 + %21 = load i8, ptr %20, align 1 %22 = sext i8 %21 to i32 %23 = icmp eq i32 %16, %22 br i1 %23, label %24, label %27 24: ; preds = %15 - %25 = load i32, i32* %8, align 4 + %25 = load i32, ptr %8, align 4 %26 = add nsw i32 %25, 1 - store i32 %26, i32* %5, align 4 + store i32 %26, ptr %5, align 4 br label %85 27: ; preds = %15, %4 - %28 = load i32, i32* %8, align 4 - store i32 %28, i32* %10, align 4 + %28 = load i32, ptr %8, align 4 + store i32 %28, ptr %10, align 4 br label %29 29: ; preds = %81, %27 - %30 = load i32, i32* %10, align 4 + %30 = load i32, ptr %10, align 4 %31 = icmp sgt i32 %30, 0 br i1 %31, label %32, label %84 32: ; preds = %29 - %33 = load i8*, i8** %6, align 8 - %34 = load i32, i32* %10, align 4 + %33 = load ptr, ptr %6, align 8 + %34 = load i32, ptr %10, align 4 %35 = sub nsw i32 %34, 1 %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i8, i8* %33, i64 %36 - %38 = load i8, i8* %37, align 1 + %37 = getelementptr inbounds i8, ptr %33, i64 %36 + %38 = load i8, ptr %37, align 1 %39 = sext i8 %38 to i32 - %40 = load i32, i32* %9, align 4 + %40 = load i32, ptr %9, align 4 %41 = icmp eq i32 %39, %40 br i1 %41, label %42, label %80 42: ; preds = %32 - store i32 0, i32* %11, align 4 + store i32 0, ptr %11, align 4 br label %43 43: ; preds = %69, %42 - %44 = load i32, i32* %11, align 4 - %45 = load i32, i32* %10, align 4 + %44 = load i32, ptr %11, align 4 + %45 = load i32, ptr %10, align 4 %46 = sub nsw i32 %45, 1 %47 = icmp slt i32 %44, %46 br i1 %47, label %48, label %72 48: ; preds = %43 - %49 = load i8*, i8** %6, align 8 - %50 = load i32, i32* %11, align 4 + %49 = load ptr, ptr %6, align 8 + %50 = load i32, ptr %11, align 4 %51 = sext i32 %50 to i64 - %52 = getelementptr inbounds i8, i8* %49, i64 %51 - %53 = load i8, i8* %52, align 1 + %52 = getelementptr inbounds i8, ptr %49, i64 %51 + %53 = load i8, ptr %52, align 1 %54 = sext i8 %53 to i32 - %55 = load i8*, i8** %6, align 8 - %56 = load i32, i32* %8, align 4 - %57 = load i32, i32* %10, align 4 + %55 = load ptr, ptr %6, align 8 + %56 = load i32, ptr %8, align 4 + %57 = load i32, ptr %10, align 4 %58 = sub nsw i32 %56, %57 %59 = add nsw i32 %58, 1 - %60 = load i32, i32* %11, align 4 + %60 = load i32, ptr %11, align 4 %61 = add nsw i32 %59, %60 %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds i8, i8* %55, i64 %62 - %64 = load i8, i8* %63, align 1 + %63 = getelementptr inbounds i8, ptr %55, i64 %62 + %64 = load i8, ptr %63, align 1 %65 = sext i8 %64 to i32 %66 = icmp ne i32 %54, %65 br i1 %66, label %67, label %68 @@ -103,21 +103,21 @@ define dso_local noundef i32 @_Z12getNextStatePciii(i8* noundef %0, i32 noundef br label %69 69: ; preds = %68 - %70 = load i32, i32* %11, align 4 + %70 = load i32, ptr %11, align 4 %71 = add nsw i32 %70, 1 - store i32 %71, i32* %11, align 4 + store i32 %71, ptr %11, align 4 br label %43, !llvm.loop !6 72: ; preds = %67, %43 - %73 = load i32, i32* %11, align 4 - %74 = load i32, i32* %10, align 4 + %73 = load i32, ptr %11, align 4 + %74 = load i32, ptr %10, align 4 %75 = sub nsw i32 %74, 1 %76 = icmp eq i32 %73, %75 br i1 %76, label %77, label %79 77: ; preds = %72 - %78 = load i32, i32* %10, align 4 - store i32 %78, i32* %5, align 4 + %78 = load i32, ptr %10, align 4 + store i32 %78, ptr %5, align 4 br label %85 79: ; preds = %72 @@ -127,77 +127,77 @@ define dso_local noundef i32 @_Z12getNextStatePciii(i8* noundef %0, i32 noundef br label %81 81: ; preds = %80 - %82 = load i32, i32* %10, align 4 + %82 = load i32, ptr %10, align 4 %83 = add nsw i32 %82, -1 - store i32 %83, i32* %10, align 4 + store i32 %83, ptr %10, align 4 br label %29, !llvm.loop !8 84: ; preds = %29 - store i32 0, i32* %5, align 4 + store i32 0, ptr %5, align 4 br label %85 85: ; preds = %84, %77, %24 - %86 = load i32, i32* %5, align 4 + %86 = load i32, ptr %5, align 4 ret i32 %86 } ; 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 +define dso_local void @_Z9computeTFPciPA256_i(ptr noundef %0, i32 noundef %1, ptr noundef %2) #0 { + %4 = alloca ptr, align 8 %5 = alloca i32, align 4 - %6 = alloca [256 x i32]*, align 8 + %6 = alloca ptr, align 8 %7 = alloca i32, align 4 %8 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i32 %1, i32* %5, align 4 - store [256 x i32]* %2, [256 x i32]** %6, align 8 - store i32 0, i32* %7, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store ptr %2, ptr %6, align 8 + store i32 0, ptr %7, align 4 br label %9 9: ; preds = %34, %3 - %10 = load i32, i32* %7, align 4 - %11 = load i32, i32* %5, align 4 + %10 = load i32, ptr %7, align 4 + %11 = load i32, ptr %5, align 4 %12 = icmp sle i32 %10, %11 br i1 %12, label %13, label %37 13: ; preds = %9 - store i32 0, i32* %8, align 4 + store i32 0, ptr %8, align 4 br label %14 14: ; preds = %30, %13 - %15 = load i32, i32* %8, align 4 + %15 = load i32, ptr %8, align 4 %16 = icmp slt i32 %15, 256 br i1 %16, label %17, label %33 17: ; preds = %14 - %18 = load i8*, i8** %4, align 8 - %19 = load i32, i32* %5, align 4 - %20 = load i32, i32* %7, align 4 - %21 = load i32, i32* %8, align 4 - %22 = call 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 + %18 = load ptr, ptr %4, align 8 + %19 = load i32, ptr %5, align 4 + %20 = load i32, ptr %7, align 4 + %21 = load i32, ptr %8, align 4 + %22 = call noundef i32 @_Z12getNextStatePciii(ptr noundef %18, i32 noundef %19, i32 noundef %20, i32 noundef %21) + %23 = load ptr, ptr %6, align 8 + %24 = load i32, ptr %7, align 4 %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds [256 x i32], [256 x i32]* %23, i64 %25 - %27 = load i32, i32* %8, align 4 + %26 = getelementptr inbounds [256 x i32], ptr %23, i64 %25 + %27 = load i32, ptr %8, align 4 %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds [256 x i32], [256 x i32]* %26, i64 0, i64 %28 - store i32 %22, i32* %29, align 4 + %29 = getelementptr inbounds [256 x i32], ptr %26, i64 0, i64 %28 + store i32 %22, ptr %29, align 4 br label %30 30: ; preds = %17 - %31 = load i32, i32* %8, align 4 + %31 = load i32, ptr %8, align 4 %32 = add nsw i32 %31, 1 - store i32 %32, i32* %8, align 4 + store i32 %32, ptr %8, align 4 br label %14, !llvm.loop !9 33: ; preds = %14 br label %34 34: ; preds = %33 - %35 = load i32, i32* %7, align 4 + %35 = load i32, ptr %7, align 4 %36 = add nsw i32 %35, 1 - store i32 %36, i32* %7, align 4 + store i32 %36, ptr %7, align 4 br label %9, !llvm.loop !10 37: ; preds = %9 @@ -205,128 +205,128 @@ define dso_local void @_Z9computeTFPciPA256_i(i8* noundef %0, i32 noundef %1, [2 } ; 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 +define dso_local void @_Z6searchPcS_(ptr noundef %0, ptr noundef %1) #1 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 + %7 = alloca ptr, align 8 %8 = alloca i64, align 8 %9 = alloca i32, align 4 %10 = alloca i32, align 4 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %11 = load i8*, i8** %3, align 8 - %12 = call i64 @strlen(i8* noundef %11) #6 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %11 = load ptr, ptr %3, align 8 + %12 = call i64 @strlen(ptr 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* noundef %14) #6 + store i32 %13, ptr %5, align 4 + %14 = load ptr, ptr %4, align 8 + %15 = call i64 @strlen(ptr noundef %14) #6 %16 = trunc i64 %15 to i32 - store i32 %16, i32* %6, align 4 - %17 = load i32, i32* %5, align 4 + store i32 %16, ptr %6, align 4 + %17 = load i32, ptr %5, align 4 %18 = add nsw i32 %17, 1 %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %7, align 8 + %20 = call ptr @llvm.stacksave() + store ptr %20, ptr %7, align 8 %21 = alloca [256 x i32], i64 %19, align 16 - store i64 %19, i64* %8, align 8 - %22 = load i8*, i8** %3, align 8 - %23 = load i32, i32* %5, align 4 - call void @_Z9computeTFPciPA256_i(i8* noundef %22, i32 noundef %23, [256 x i32]* noundef %21) - store i32 0, i32* %10, align 4 - store i32 0, i32* %9, align 4 + store i64 %19, ptr %8, align 8 + %22 = load ptr, ptr %3, align 8 + %23 = load i32, ptr %5, align 4 + call void @_Z9computeTFPciPA256_i(ptr noundef %22, i32 noundef %23, ptr noundef %21) + store i32 0, ptr %10, align 4 + store i32 0, ptr %9, align 4 br label %24 24: ; preds = %50, %2 - %25 = load i32, i32* %9, align 4 - %26 = load i32, i32* %6, align 4 + %25 = load i32, ptr %9, align 4 + %26 = load i32, ptr %6, align 4 %27 = icmp slt i32 %25, %26 br i1 %27, label %28, label %53 28: ; preds = %24 - %29 = load i32, i32* %10, align 4 + %29 = load i32, ptr %10, align 4 %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds [256 x i32], [256 x i32]* %21, i64 %30 - %32 = load i8*, i8** %4, align 8 - %33 = load i32, i32* %9, align 4 + %31 = getelementptr inbounds [256 x i32], ptr %21, i64 %30 + %32 = load ptr, ptr %4, align 8 + %33 = load i32, ptr %9, align 4 %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds i8, i8* %32, i64 %34 - %36 = load i8, i8* %35, align 1 + %35 = getelementptr inbounds i8, ptr %32, i64 %34 + %36 = load i8, ptr %35, align 1 %37 = sext i8 %36 to i64 - %38 = getelementptr inbounds [256 x i32], [256 x i32]* %31, i64 0, i64 %37 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %10, align 4 - %40 = load i32, i32* %10, align 4 - %41 = load i32, i32* %5, align 4 + %38 = getelementptr inbounds [256 x i32], ptr %31, i64 0, i64 %37 + %39 = load i32, ptr %38, align 4 + store i32 %39, ptr %10, align 4 + %40 = load i32, ptr %10, align 4 + %41 = load i32, ptr %5, align 4 %42 = icmp eq i32 %40, %41 br i1 %42, label %43, label %49 43: ; preds = %28 - %44 = load i32, i32* %9, align 4 - %45 = load i32, i32* %5, align 4 + %44 = load i32, ptr %9, align 4 + %45 = load i32, ptr %5, align 4 %46 = sub nsw i32 %44, %45 %47 = add nsw i32 %46, 1 - %48 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([28 x i8], [28 x i8]* @.str, i64 0, i64 0), i32 noundef %47) + %48 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %47) br label %49 49: ; preds = %43, %28 br label %50 50: ; preds = %49 - %51 = load i32, i32* %9, align 4 + %51 = load i32, ptr %9, align 4 %52 = add nsw i32 %51, 1 - store i32 %52, i32* %9, align 4 + store i32 %52, ptr %9, align 4 br label %24, !llvm.loop !11 53: ; preds = %24 - %54 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %54) + %54 = load ptr, ptr %7, align 8 + call void @llvm.stackrestore(ptr %54) ret void } -; Function Attrs: nounwind readonly willreturn -declare i64 @strlen(i8* noundef) #2 +; Function Attrs: nounwind willreturn memory(read) +declare i64 @strlen(ptr noundef) #2 -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #3 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #3 -declare i32 @printf(i8* noundef, ...) #4 +declare i32 @printf(ptr noundef, ...) #4 -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #3 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #3 ; 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 - store i32 0, i32* %1, align 4 - store i8* getelementptr inbounds ([19 x i8], [19 x i8]* @.str.1, i64 0, i64 0), i8** %2, align 8 - store i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), i8** %3, align 8 - %4 = load i8*, i8** %3, align 8 - %5 = load i8*, i8** %2, align 8 - call void @_Z6searchPcS_(i8* noundef %4, i8* noundef %5) + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store i32 0, ptr %1, align 4 + store ptr @.str.1, ptr %2, align 8 + store ptr @.str.2, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_Z6searchPcS_(ptr noundef %4, ptr noundef %5) ret i32 0 } 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 #2 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-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 = { nocallback nofree nosync 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" } 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 } +attributes #6 = { nounwind willreturn memory(read) } !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} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/floyd-warshall.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/floyd-warshall.ll new file mode 100644 index 000000000..cb66430ef --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/floyd-warshall.ll @@ -0,0 +1,309 @@ +; ModuleID = 'PE-benchmarks/floyd-warshall.cpp' +source_filename = "PE-benchmarks/floyd-warshall.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 +@__const.main.graph = private unnamed_addr constant [4 x [4 x i32]] [[4 x i32] [i32 0, i32 5, i32 99999, i32 10], [4 x i32] [i32 99999, i32 0, i32 3, i32 99999], [4 x i32] [i32 99999, i32 99999, i32 0, i32 1], [4 x i32] [i32 99999, i32 99999, i32 99999, i32 0]], align 16 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13floydWarshallPA4_i(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca [4 x [4 x i32]], align 16 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + store i32 0, ptr %4, align 4 + br label %7 + +7: ; preds = %33, %1 + %8 = load i32, ptr %4, align 4 + %9 = icmp slt i32 %8, 4 + br i1 %9, label %10, label %36 + +10: ; preds = %7 + store i32 0, ptr %5, align 4 + br label %11 + +11: ; preds = %29, %10 + %12 = load i32, ptr %5, align 4 + %13 = icmp slt i32 %12, 4 + br i1 %13, label %14, label %32 + +14: ; preds = %11 + %15 = load ptr, ptr %2, align 8 + %16 = load i32, ptr %4, align 4 + %17 = sext i32 %16 to i64 + %18 = getelementptr inbounds [4 x i32], ptr %15, i64 %17 + %19 = load i32, ptr %5, align 4 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds [4 x i32], ptr %18, i64 0, i64 %20 + %22 = load i32, ptr %21, align 4 + %23 = load i32, ptr %4, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 %24 + %26 = load i32, ptr %5, align 4 + %27 = sext i32 %26 to i64 + %28 = getelementptr inbounds [4 x i32], ptr %25, i64 0, i64 %27 + store i32 %22, ptr %28, align 4 + br label %29 + +29: ; preds = %14 + %30 = load i32, ptr %5, align 4 + %31 = add nsw i32 %30, 1 + store i32 %31, ptr %5, align 4 + br label %11, !llvm.loop !6 + +32: ; preds = %11 + br label %33 + +33: ; preds = %32 + %34 = load i32, ptr %4, align 4 + %35 = add nsw i32 %34, 1 + store i32 %35, ptr %4, align 4 + br label %7, !llvm.loop !8 + +36: ; preds = %7 + store i32 0, ptr %6, align 4 + br label %37 + +37: ; preds = %103, %36 + %38 = load i32, ptr %6, align 4 + %39 = icmp slt i32 %38, 4 + br i1 %39, label %40, label %106 + +40: ; preds = %37 + store i32 0, ptr %4, align 4 + br label %41 + +41: ; preds = %99, %40 + %42 = load i32, ptr %4, align 4 + %43 = icmp slt i32 %42, 4 + br i1 %43, label %44, label %102 + +44: ; preds = %41 + store i32 0, ptr %5, align 4 + br label %45 + +45: ; preds = %95, %44 + %46 = load i32, ptr %5, align 4 + %47 = icmp slt i32 %46, 4 + br i1 %47, label %48, label %98 + +48: ; preds = %45 + %49 = load i32, ptr %4, align 4 + %50 = sext i32 %49 to i64 + %51 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 %50 + %52 = load i32, ptr %6, align 4 + %53 = sext i32 %52 to i64 + %54 = getelementptr inbounds [4 x i32], ptr %51, i64 0, i64 %53 + %55 = load i32, ptr %54, align 4 + %56 = load i32, ptr %6, align 4 + %57 = sext i32 %56 to i64 + %58 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 %57 + %59 = load i32, ptr %5, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds [4 x i32], ptr %58, i64 0, i64 %60 + %62 = load i32, ptr %61, align 4 + %63 = add nsw i32 %55, %62 + %64 = load i32, ptr %4, align 4 + %65 = sext i32 %64 to i64 + %66 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 %65 + %67 = load i32, ptr %5, align 4 + %68 = sext i32 %67 to i64 + %69 = getelementptr inbounds [4 x i32], ptr %66, i64 0, i64 %68 + %70 = load i32, ptr %69, align 4 + %71 = icmp slt i32 %63, %70 + br i1 %71, label %72, label %94 + +72: ; preds = %48 + %73 = load i32, ptr %4, align 4 + %74 = sext i32 %73 to i64 + %75 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 %74 + %76 = load i32, ptr %6, align 4 + %77 = sext i32 %76 to i64 + %78 = getelementptr inbounds [4 x i32], ptr %75, i64 0, i64 %77 + %79 = load i32, ptr %78, align 4 + %80 = load i32, ptr %6, align 4 + %81 = sext i32 %80 to i64 + %82 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 %81 + %83 = load i32, ptr %5, align 4 + %84 = sext i32 %83 to i64 + %85 = getelementptr inbounds [4 x i32], ptr %82, i64 0, i64 %84 + %86 = load i32, ptr %85, align 4 + %87 = add nsw i32 %79, %86 + %88 = load i32, ptr %4, align 4 + %89 = sext i32 %88 to i64 + %90 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 %89 + %91 = load i32, ptr %5, align 4 + %92 = sext i32 %91 to i64 + %93 = getelementptr inbounds [4 x i32], ptr %90, i64 0, i64 %92 + store i32 %87, ptr %93, align 4 + br label %94 + +94: ; preds = %72, %48 + br label %95 + +95: ; preds = %94 + %96 = load i32, ptr %5, align 4 + %97 = add nsw i32 %96, 1 + store i32 %97, ptr %5, align 4 + br label %45, !llvm.loop !9 + +98: ; preds = %45 + br label %99 + +99: ; preds = %98 + %100 = load i32, ptr %4, align 4 + %101 = add nsw i32 %100, 1 + store i32 %101, ptr %4, align 4 + br label %41, !llvm.loop !10 + +102: ; preds = %41 + br label %103 + +103: ; preds = %102 + %104 = load i32, ptr %6, align 4 + %105 = add nsw i32 %104, 1 + store i32 %105, ptr %6, align 4 + br label %37, !llvm.loop !11 + +106: ; preds = %37 + %107 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 0 + call void @_Z13printSolutionPA4_i(ptr noundef %107) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13printSolutionPA4_i(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + store i32 0, ptr %3, align 4 + br label %6 + +6: ; preds = %43, %1 + %7 = load i32, ptr %3, align 4 + %8 = icmp slt i32 %7, 4 + br i1 %8, label %9, label %46 + +9: ; preds = %6 + store i32 0, ptr %4, align 4 + br label %10 + +10: ; preds = %38, %9 + %11 = load i32, ptr %4, align 4 + %12 = icmp slt i32 %11, 4 + br i1 %12, label %13, label %41 + +13: ; preds = %10 + %14 = load ptr, ptr %2, align 8 + %15 = load i32, ptr %3, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds [4 x i32], ptr %14, i64 %16 + %18 = load i32, ptr %4, align 4 + %19 = sext i32 %18 to i64 + %20 = getelementptr inbounds [4 x i32], ptr %17, i64 0, i64 %19 + %21 = load i32, ptr %20, align 4 + %22 = icmp eq i32 %21, 99999 + br i1 %22, label %23, label %26 + +23: ; preds = %13 + %24 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + %25 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %24, ptr noundef @.str.2) + br label %37 + +26: ; preds = %13 + %27 = load ptr, ptr %2, align 8 + %28 = load i32, ptr %3, align 4 + %29 = sext i32 %28 to i64 + %30 = getelementptr inbounds [4 x i32], ptr %27, i64 %29 + %31 = load i32, ptr %4, align 4 + %32 = sext i32 %31 to i64 + %33 = getelementptr inbounds [4 x i32], ptr %30, i64 0, i64 %32 + %34 = load i32, ptr %33, align 4 + %35 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %34) + %36 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %35, ptr noundef @.str.2) + br label %37 + +37: ; preds = %26, %23 + br label %38 + +38: ; preds = %37 + %39 = load i32, ptr %4, align 4 + %40 = add nsw i32 %39, 1 + store i32 %40, ptr %4, align 4 + br label %10, !llvm.loop !12 + +41: ; preds = %10 + %42 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %43 + +43: ; preds = %41 + %44 = load i32, ptr %3, align 4 + %45 = add nsw i32 %44, 1 + store i32 %45, ptr %3, align 4 + br label %6, !llvm.loop !13 + +46: ; preds = %6 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #1 + +; 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, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.graph, i64 64, i1 false) + %3 = getelementptr inbounds [4 x [4 x i32]], ptr %2, i64 0, i64 0 + call void @_Z13floydWarshallPA4_i(ptr noundef %3) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 + +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/graph-coloring.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/graph-coloring.ll new file mode 100644 index 000000000..cc32c5d31 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/graph-coloring.ll @@ -0,0 +1,1249 @@ +; ModuleID = 'PE-benchmarks/graph-coloring.cpp' +source_filename = "PE-benchmarks/graph-coloring.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"struct.std::_List_iterator" = type { ptr } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } +%"struct.std::__allocated_ptr" = type { ptr, ptr } + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZN5GraphC2Ei = comdat any + +$_ZN5GraphD2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +@_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 +@.str.3 = private unnamed_addr constant [23 x i8] c"\0AColoring of graph 2 \0A\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #0 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds %"class.std::__cxx11::list", ptr %9, i64 %11 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %6) + %13 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + %15 = load i32, ptr %6, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds %"class.std::__cxx11::list", ptr %14, i64 %16 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %17, ptr noundef nonnull align 4 dereferenceable(4) %5) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #14 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph14greedyColoringEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #0 align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i32, align 4 + %6 = alloca i64, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca %"struct.std::_List_iterator", align 8 + %10 = alloca %"struct.std::_List_iterator", align 8 + %11 = alloca %"struct.std::_List_iterator", align 8 + %12 = alloca i32, align 4 + %13 = alloca %"struct.std::_List_iterator", align 8 + %14 = alloca %"struct.std::_List_iterator", align 8 + %15 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %16 = load ptr, ptr %2, align 8 + %17 = getelementptr inbounds %class.Graph, ptr %16, i32 0, i32 0 + %18 = load i32, ptr %17, align 8 + %19 = zext i32 %18 to i64 + %20 = call ptr @llvm.stacksave() + store ptr %20, ptr %3, align 8 + %21 = alloca i32, i64 %19, align 16 + store i64 %19, ptr %4, align 8 + %22 = getelementptr inbounds i32, ptr %21, i64 0 + store i32 0, ptr %22, align 16 + store i32 1, ptr %5, align 4 + br label %23 + +23: ; preds = %32, %1 + %24 = load i32, ptr %5, align 4 + %25 = getelementptr inbounds %class.Graph, ptr %16, i32 0, i32 0 + %26 = load i32, ptr %25, align 8 + %27 = icmp slt i32 %24, %26 + br i1 %27, label %28, label %35 + +28: ; preds = %23 + %29 = load i32, ptr %5, align 4 + %30 = sext i32 %29 to i64 + %31 = getelementptr inbounds i32, ptr %21, i64 %30 + store i32 -1, ptr %31, align 4 + br label %32 + +32: ; preds = %28 + %33 = load i32, ptr %5, align 4 + %34 = add nsw i32 %33, 1 + store i32 %34, ptr %5, align 4 + br label %23, !llvm.loop !6 + +35: ; preds = %23 + %36 = getelementptr inbounds %class.Graph, ptr %16, i32 0, i32 0 + %37 = load i32, ptr %36, align 8 + %38 = zext i32 %37 to i64 + %39 = alloca i8, i64 %38, align 16 + store i64 %38, ptr %6, align 8 + store i32 0, ptr %7, align 4 + br label %40 + +40: ; preds = %49, %35 + %41 = load i32, ptr %7, align 4 + %42 = getelementptr inbounds %class.Graph, ptr %16, i32 0, i32 0 + %43 = load i32, ptr %42, align 8 + %44 = icmp slt i32 %41, %43 + br i1 %44, label %45, label %52 + +45: ; preds = %40 + %46 = load i32, ptr %7, align 4 + %47 = sext i32 %46 to i64 + %48 = getelementptr inbounds i8, ptr %39, i64 %47 + store i8 0, ptr %48, align 1 + br label %49 + +49: ; preds = %45 + %50 = load i32, ptr %7, align 4 + %51 = add nsw i32 %50, 1 + store i32 %51, ptr %7, align 4 + br label %40, !llvm.loop !8 + +52: ; preds = %40 + store i32 1, ptr %8, align 4 + br label %53 + +53: ; preds = %152, %52 + %54 = load i32, ptr %8, align 4 + %55 = getelementptr inbounds %class.Graph, ptr %16, i32 0, i32 0 + %56 = load i32, ptr %55, align 8 + %57 = icmp slt i32 %54, %56 + br i1 %57, label %58, label %155 + +58: ; preds = %53 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %9) #14 + %59 = getelementptr inbounds %class.Graph, ptr %16, i32 0, i32 1 + %60 = load ptr, ptr %59, align 8 + %61 = load i32, ptr %8, align 4 + %62 = sext i32 %61 to i64 + %63 = getelementptr inbounds %"class.std::__cxx11::list", ptr %60, i64 %62 + %64 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %63) #14 + %65 = getelementptr inbounds %"struct.std::_List_iterator", ptr %10, i32 0, i32 0 + store ptr %64, ptr %65, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %10, i64 8, i1 false) + br label %66 + +66: ; preds = %91, %58 + %67 = getelementptr inbounds %class.Graph, ptr %16, i32 0, i32 1 + %68 = load ptr, ptr %67, align 8 + %69 = load i32, ptr %8, align 4 + %70 = sext i32 %69 to i64 + %71 = getelementptr inbounds %"class.std::__cxx11::list", ptr %68, i64 %70 + %72 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %71) #14 + %73 = getelementptr inbounds %"struct.std::_List_iterator", ptr %11, i32 0, i32 0 + store ptr %72, ptr %73, align 8 + %74 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %9, ptr noundef nonnull align 8 dereferenceable(8) %11) #14 + br i1 %74, label %75, label %93 + +75: ; preds = %66 + %76 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #14 + %77 = load i32, ptr %76, align 4 + %78 = sext i32 %77 to i64 + %79 = getelementptr inbounds i32, ptr %21, i64 %78 + %80 = load i32, ptr %79, align 4 + %81 = icmp ne i32 %80, -1 + br i1 %81, label %82, label %90 + +82: ; preds = %75 + %83 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #14 + %84 = load i32, ptr %83, align 4 + %85 = sext i32 %84 to i64 + %86 = getelementptr inbounds i32, ptr %21, i64 %85 + %87 = load i32, ptr %86, align 4 + %88 = sext i32 %87 to i64 + %89 = getelementptr inbounds i8, ptr %39, i64 %88 + store i8 1, ptr %89, align 1 + br label %90 + +90: ; preds = %82, %75 + br label %91 + +91: ; preds = %90 + %92 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #14 + br label %66, !llvm.loop !9 + +93: ; preds = %66 + store i32 0, ptr %12, align 4 + br label %94 + +94: ; preds = %109, %93 + %95 = load i32, ptr %12, align 4 + %96 = getelementptr inbounds %class.Graph, ptr %16, i32 0, i32 0 + %97 = load i32, ptr %96, align 8 + %98 = icmp slt i32 %95, %97 + br i1 %98, label %99, label %112 + +99: ; preds = %94 + %100 = load i32, ptr %12, align 4 + %101 = sext i32 %100 to i64 + %102 = getelementptr inbounds i8, ptr %39, i64 %101 + %103 = load i8, ptr %102, align 1 + %104 = trunc i8 %103 to i1 + %105 = zext i1 %104 to i32 + %106 = icmp eq i32 %105, 0 + br i1 %106, label %107, label %108 + +107: ; preds = %99 + br label %112 + +108: ; preds = %99 + br label %109 + +109: ; preds = %108 + %110 = load i32, ptr %12, align 4 + %111 = add nsw i32 %110, 1 + store i32 %111, ptr %12, align 4 + br label %94, !llvm.loop !10 + +112: ; preds = %107, %94 + %113 = load i32, ptr %12, align 4 + %114 = load i32, ptr %8, align 4 + %115 = sext i32 %114 to i64 + %116 = getelementptr inbounds i32, ptr %21, i64 %115 + store i32 %113, ptr %116, align 4 + %117 = getelementptr inbounds %class.Graph, ptr %16, i32 0, i32 1 + %118 = load ptr, ptr %117, align 8 + %119 = load i32, ptr %8, align 4 + %120 = sext i32 %119 to i64 + %121 = getelementptr inbounds %"class.std::__cxx11::list", ptr %118, i64 %120 + %122 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %121) #14 + %123 = getelementptr inbounds %"struct.std::_List_iterator", ptr %13, i32 0, i32 0 + store ptr %122, ptr %123, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %13, i64 8, i1 false) + br label %124 + +124: ; preds = %149, %112 + %125 = getelementptr inbounds %class.Graph, ptr %16, i32 0, i32 1 + %126 = load ptr, ptr %125, align 8 + %127 = load i32, ptr %8, align 4 + %128 = sext i32 %127 to i64 + %129 = getelementptr inbounds %"class.std::__cxx11::list", ptr %126, i64 %128 + %130 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %129) #14 + %131 = getelementptr inbounds %"struct.std::_List_iterator", ptr %14, i32 0, i32 0 + store ptr %130, ptr %131, align 8 + %132 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %9, ptr noundef nonnull align 8 dereferenceable(8) %14) #14 + br i1 %132, label %133, label %151 + +133: ; preds = %124 + %134 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #14 + %135 = load i32, ptr %134, align 4 + %136 = sext i32 %135 to i64 + %137 = getelementptr inbounds i32, ptr %21, i64 %136 + %138 = load i32, ptr %137, align 4 + %139 = icmp ne i32 %138, -1 + br i1 %139, label %140, label %148 + +140: ; preds = %133 + %141 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #14 + %142 = load i32, ptr %141, align 4 + %143 = sext i32 %142 to i64 + %144 = getelementptr inbounds i32, ptr %21, i64 %143 + %145 = load i32, ptr %144, align 4 + %146 = sext i32 %145 to i64 + %147 = getelementptr inbounds i8, ptr %39, i64 %146 + store i8 0, ptr %147, align 1 + br label %148 + +148: ; preds = %140, %133 + br label %149 + +149: ; preds = %148 + %150 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #14 + br label %124, !llvm.loop !11 + +151: ; preds = %124 + br label %152 + +152: ; preds = %151 + %153 = load i32, ptr %8, align 4 + %154 = add nsw i32 %153, 1 + store i32 %154, ptr %8, align 4 + br label %53, !llvm.loop !12 + +155: ; preds = %53 + store i32 0, ptr %15, align 4 + br label %156 + +156: ; preds = %172, %155 + %157 = load i32, ptr %15, align 4 + %158 = getelementptr inbounds %class.Graph, ptr %16, i32 0, i32 0 + %159 = load i32, ptr %158, align 8 + %160 = icmp slt i32 %157, %159 + br i1 %160, label %161, label %175 + +161: ; preds = %156 + %162 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %163 = load i32, ptr %15, align 4 + %164 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %162, i32 noundef %163) + %165 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %164, ptr noundef @.str.1) + %166 = load i32, ptr %15, align 4 + %167 = sext i32 %166 to i64 + %168 = getelementptr inbounds i32, ptr %21, i64 %167 + %169 = load i32, ptr %168, align 4 + %170 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %165, i32 noundef %169) + %171 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %170, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %172 + +172: ; preds = %161 + %173 = load i32, ptr %15, align 4 + %174 = add nsw i32 %173, 1 + store i32 %174, ptr %15, align 4 + br label %156, !llvm.loop !13 + +175: ; preds = %156 + %176 = load ptr, ptr %3, align 8 + call void @llvm.stackrestore(ptr %176) + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #3 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #14 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #3 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #3 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #14 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #5 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 personality ptr @__gxx_personality_v0 { + %1 = alloca i32, align 4 + %2 = alloca %class.Graph, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca %class.Graph, align 8 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5) + invoke void @_ZN5Graph7addEdgeEii(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4) + to label %11 unwind label %26 + +11: ; preds = %10 + %12 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + to label %13 unwind label %26 + +13: ; preds = %11 + invoke void @_ZN5Graph14greedyColoringEv(ptr noundef nonnull align 8 dereferenceable(16) %2) + to label %14 unwind label %26 + +14: ; preds = %13 + invoke void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5) + to label %15 unwind label %26 + +15: ; preds = %14 + invoke void @_ZN5Graph7addEdgeEii(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 4, i32 noundef 3) + to label %21 unwind label %30 + +21: ; preds = %20 + %22 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.3) + to label %23 unwind label %30 + +23: ; preds = %21 + invoke void @_ZN5Graph14greedyColoringEv(ptr noundef nonnull align 8 dereferenceable(16) %5) + to label %24 unwind label %30 + +24: ; preds = %23 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %5) #14 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %2) #14 + %25 = load i32, ptr %1, align 4 + ret i32 %25 + +26: ; preds = %14, %13, %11, %10, %9, %8, %7, %6, %0 + %27 = landingpad { ptr, i32 } + cleanup + %28 = extractvalue { ptr, i32 } %27, 0 + store ptr %28, ptr %3, align 8 + %29 = extractvalue { ptr, i32 } %27, 1 + store i32 %29, ptr %4, align 4 + br label %34 + +30: ; preds = %23, %21, %20, %19, %18, %17, %16, %15 + %31 = landingpad { ptr, i32 } + cleanup + %32 = extractvalue { ptr, i32 } %31, 0 + store ptr %32, ptr %3, align 8 + %33 = extractvalue { ptr, i32 } %31, 1 + store i32 %33, ptr %4, align 4 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %5) #14 + br label %34 + +34: ; preds = %30, %26 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %2) #14 + br label %35 + +35: ; preds = %34 + %36 = load ptr, ptr %3, align 8 + %37 = load i32, ptr %4, align 4 + %38 = insertvalue { ptr, i32 } poison, ptr %36, 0 + %39 = insertvalue { ptr, i32 } %38, i32 %37, 1 + resume { ptr, i32 } %39 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #7 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + store i32 %6, ptr %7, align 8 + %8 = load i32, ptr %4, align 4 + %9 = sext i32 %8 to i64 + %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) + %11 = extractvalue { i64, i1 } %10, 1 + %12 = extractvalue { i64, i1 } %10, 0 + %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = or i1 %11, %14 + %16 = extractvalue { i64, i1 } %13, 0 + %17 = select i1 %15, i64 -1, i64 %16 + %18 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #15 + store i64 %9, ptr %18, align 16 + %19 = getelementptr inbounds i8, ptr %18, i64 8 + %20 = icmp eq i64 %9, 0 + br i1 %20, label %27, label %21 + +21: ; preds = %2 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %9 + br label %23 + +23: ; preds = %23, %21 + %24 = phi ptr [ %19, %21 ], [ %25, %23 ] + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #14 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 1 + %26 = icmp eq ptr %25, %22 + br i1 %26, label %27, label %23 + +27: ; preds = %2, %23 + %28 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + store ptr %19, ptr %28, align 8 + ret void +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %class.Graph, ptr %3, i32 0, i32 1 + %5 = load ptr, ptr %4, align 8 + %6 = icmp eq ptr %5, null + br i1 %6, label %17, label %7 + +7: ; preds = %1 + %8 = getelementptr inbounds i8, ptr %5, i64 -8 + %9 = load i64, ptr %8, align 8 + %10 = getelementptr inbounds %"class.std::__cxx11::list", ptr %5, i64 %9 + %11 = icmp eq ptr %5, %10 + br i1 %11, label %16, label %12 + +12: ; preds = %12, %7 + %13 = phi ptr [ %10, %7 ], [ %14, %12 ] + %14 = getelementptr inbounds %"class.std::__cxx11::list", ptr %13, i64 -1 + call void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %14) #14 + %15 = icmp eq ptr %14, %5 + br i1 %15, label %16, label %12 + +16: ; preds = %12, %7 + call void @_ZdaPv(ptr noundef %8) #16 + br label %17 + +17: ; preds = %16, %1 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #8 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #8 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #9 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdaPv(ptr noundef) #10 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #14 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %10, i32 0, i32 0 + %12 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %11, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %12, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + store ptr %14, ptr %7, align 8 + br label %15 + +15: ; preds = %27, %1 + %16 = load ptr, ptr %7, align 8 + %17 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %10, i32 0, i32 0 + %18 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %17, i32 0, i32 0 + %19 = icmp ne ptr %16, %18 + br i1 %19, label %20, label %35 + +20: ; preds = %15 + %21 = load ptr, ptr %7, align 8 + store ptr %21, ptr %8, align 8 + %22 = load ptr, ptr %8, align 8 + %23 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %22, i32 0, i32 0 + %24 = load ptr, ptr %23, align 8 + store ptr %24, ptr %7, align 8 + %25 = load ptr, ptr %8, align 8 + %26 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %25) + to label %27 unwind label %36 + +27: ; preds = %20 + store ptr %26, ptr %9, align 8 + %28 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #14 + %29 = load ptr, ptr %9, align 8 + store ptr %28, ptr %4, align 8 + store ptr %29, ptr %5, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + store ptr %30, ptr %2, align 8 + store ptr %31, ptr %3, align 8 + %32 = load ptr, ptr %2, align 8 + %33 = load ptr, ptr %3, align 8 + %34 = load ptr, ptr %8, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %10, ptr noundef %34) #14 + br label %15, !llvm.loop !14 + +35: ; preds = %15 + ret void + +36: ; preds = %20 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #17 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #14 + ret ptr %5 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #14 + call void @_ZSt9terminatev() #17 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef %1) #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %7, align 8 + store ptr %9, ptr %3, align 8 + store ptr %10, ptr %4, align 8 + store i64 1, ptr %5, align 8 + %11 = load ptr, ptr %3, align 8 + %12 = load ptr, ptr %4, align 8 + %13 = load i64, ptr %5, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %11, ptr noundef %12, i64 noundef %13) + br label %14 + +14: ; preds = %2 + ret void + +15: ; No predecessors! + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #17 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #14 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #16 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #10 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #0 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #14 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %14 = load ptr, ptr %9, align 8 + %15 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %14) + store ptr %15, ptr %11, align 8 + %16 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %14) #14 + store ptr %16, ptr %12, align 8 + %17 = load ptr, ptr %12, align 8 + %18 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %18) #14 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + %21 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %20) + %22 = load ptr, ptr %10, align 8 + store ptr %19, ptr %6, align 8 + store ptr %21, ptr %7, align 8 + store ptr %22, ptr %8, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %7, align 8 + %25 = load ptr, ptr %8, align 8 + store ptr %23, ptr %3, align 8 + store ptr %24, ptr %4, align 8 + store ptr %25, ptr %5, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = load ptr, ptr %4, align 8 + %28 = load ptr, ptr %5, align 8 + %29 = load i32, ptr %28, align 4 + store i32 %29, ptr %27, align 4 + %30 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #14 + %31 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #14 + ret ptr %31 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #12 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #2 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #17 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #15 + ret ptr %20 +} + +; Function Attrs: noreturn +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 noundef nonnull ptr @_Znwm(i64 noundef) #9 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #2 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +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 = { nocallback nofree nosync nounwind willreturn } +attributes #2 = { 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 = { 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 #4 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 = { 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 = { 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +attributes #9 = { 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 #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 = { noinline noreturn 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 = { 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 = { nounwind } +attributes #15 = { builtin allocsize(0) } +attributes #16 = { builtin nounwind } +attributes #17 = { noreturn nounwind } +attributes #18 = { noreturn } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/hamiltonian-cycle-backtracking.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/hamiltonian-cycle-backtracking.ll new file mode 100644 index 000000000..c4b70e3ce --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/hamiltonian-cycle-backtracking.ll @@ -0,0 +1,351 @@ +; ModuleID = 'PE-benchmarks/hamiltonian-cycle-backtracking.cpp' +source_filename = "PE-benchmarks/hamiltonian-cycle-backtracking.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 +@__const.main.graph1 = private unnamed_addr constant [5 x [5 x i8]] [[5 x i8] c"\00\01\00\01\00", [5 x i8] c"\01\00\01\01\01", [5 x i8] c"\00\01\00\00\01", [5 x i8] c"\01\01\00\00\01", [5 x i8] c"\00\01\01\01\00"], align 16 +@__const.main.graph2 = private unnamed_addr constant [5 x [5 x i8]] [[5 x i8] c"\00\01\00\01\00", [5 x i8] c"\01\00\01\01\01", [5 x i8] c"\00\01\00\00\01", [5 x i8] c"\01\01\00\00\00", [5 x i8] c"\00\01\01\00\00"], align 16 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z6isSafeiPA5_bPii(i32 noundef %0, ptr noundef %1, ptr noundef %2, i32 noundef %3) #0 { + %5 = alloca i1, align 1 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + store i32 %0, ptr %6, align 4 + store ptr %1, ptr %7, align 8 + store ptr %2, ptr %8, align 8 + store i32 %3, ptr %9, align 4 + %11 = load ptr, ptr %7, align 8 + %12 = load ptr, ptr %8, align 8 + %13 = load i32, ptr %9, align 4 + %14 = sub nsw i32 %13, 1 + %15 = sext i32 %14 to i64 + %16 = getelementptr inbounds i32, ptr %12, i64 %15 + %17 = load i32, ptr %16, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds [5 x i8], ptr %11, i64 %18 + %20 = load i32, ptr %6, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds [5 x i8], ptr %19, i64 0, i64 %21 + %23 = load i8, ptr %22, align 1 + %24 = trunc i8 %23 to i1 + %25 = zext i1 %24 to i32 + %26 = icmp eq i32 %25, 0 + br i1 %26, label %27, label %28 + +27: ; preds = %4 + store i1 false, ptr %5, align 1 + br label %47 + +28: ; preds = %4 + store i32 0, ptr %10, align 4 + br label %29 + +29: ; preds = %43, %28 + %30 = load i32, ptr %10, align 4 + %31 = load i32, ptr %9, align 4 + %32 = icmp slt i32 %30, %31 + br i1 %32, label %33, label %46 + +33: ; preds = %29 + %34 = load ptr, ptr %8, align 8 + %35 = load i32, ptr %10, align 4 + %36 = sext i32 %35 to i64 + %37 = getelementptr inbounds i32, ptr %34, i64 %36 + %38 = load i32, ptr %37, align 4 + %39 = load i32, ptr %6, align 4 + %40 = icmp eq i32 %38, %39 + br i1 %40, label %41, label %42 + +41: ; preds = %33 + store i1 false, ptr %5, align 1 + br label %47 + +42: ; preds = %33 + br label %43 + +43: ; preds = %42 + %44 = load i32, ptr %10, align 4 + %45 = add nsw i32 %44, 1 + store i32 %45, ptr %10, align 4 + br label %29, !llvm.loop !6 + +46: ; preds = %29 + store i1 true, ptr %5, align 1 + br label %47 + +47: ; preds = %46, %41, %27 + %48 = load i1, ptr %5, align 1 + ret i1 %48 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z12hamCycleUtilPA5_bPii(ptr noundef %0, ptr noundef %1, i32 noundef %2) #1 { + %4 = alloca i1, align 1 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store i32 %2, ptr %7, align 4 + %9 = load i32, ptr %7, align 4 + %10 = icmp eq i32 %9, 5 + br i1 %10, label %11, label %32 + +11: ; preds = %3 + %12 = load ptr, ptr %5, align 8 + %13 = load ptr, ptr %6, align 8 + %14 = load i32, ptr %7, align 4 + %15 = sub nsw i32 %14, 1 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds i32, ptr %13, i64 %16 + %18 = load i32, ptr %17, align 4 + %19 = sext i32 %18 to i64 + %20 = getelementptr inbounds [5 x i8], ptr %12, i64 %19 + %21 = load ptr, ptr %6, align 8 + %22 = getelementptr inbounds i32, ptr %21, i64 0 + %23 = load i32, ptr %22, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds [5 x i8], ptr %20, i64 0, i64 %24 + %26 = load i8, ptr %25, align 1 + %27 = trunc i8 %26 to i1 + %28 = zext i1 %27 to i32 + %29 = icmp eq i32 %28, 1 + br i1 %29, label %30, label %31 + +30: ; preds = %11 + store i1 true, ptr %4, align 1 + br label %66 + +31: ; preds = %11 + store i1 false, ptr %4, align 1 + br label %66 + +32: ; preds = %3 + store i32 1, ptr %8, align 4 + br label %33 + +33: ; preds = %62, %32 + %34 = load i32, ptr %8, align 4 + %35 = icmp slt i32 %34, 5 + br i1 %35, label %36, label %65 + +36: ; preds = %33 + %37 = load i32, ptr %8, align 4 + %38 = load ptr, ptr %5, align 8 + %39 = load ptr, ptr %6, align 8 + %40 = load i32, ptr %7, align 4 + %41 = call noundef zeroext i1 @_Z6isSafeiPA5_bPii(i32 noundef %37, ptr noundef %38, ptr noundef %39, i32 noundef %40) + br i1 %41, label %42, label %61 + +42: ; preds = %36 + %43 = load i32, ptr %8, align 4 + %44 = load ptr, ptr %6, align 8 + %45 = load i32, ptr %7, align 4 + %46 = sext i32 %45 to i64 + %47 = getelementptr inbounds i32, ptr %44, i64 %46 + store i32 %43, ptr %47, align 4 + %48 = load ptr, ptr %5, align 8 + %49 = load ptr, ptr %6, align 8 + %50 = load i32, ptr %7, align 4 + %51 = add nsw i32 %50, 1 + %52 = call noundef zeroext i1 @_Z12hamCycleUtilPA5_bPii(ptr noundef %48, ptr noundef %49, i32 noundef %51) + %53 = zext i1 %52 to i32 + %54 = icmp eq i32 %53, 1 + br i1 %54, label %55, label %56 + +55: ; preds = %42 + store i1 true, ptr %4, align 1 + br label %66 + +56: ; preds = %42 + %57 = load ptr, ptr %6, align 8 + %58 = load i32, ptr %7, align 4 + %59 = sext i32 %58 to i64 + %60 = getelementptr inbounds i32, ptr %57, i64 %59 + store i32 -1, ptr %60, align 4 + br label %61 + +61: ; preds = %56, %36 + br label %62 + +62: ; preds = %61 + %63 = load i32, ptr %8, align 4 + %64 = add nsw i32 %63, 1 + store i32 %64, ptr %8, align 4 + br label %33, !llvm.loop !8 + +65: ; preds = %33 + store i1 false, ptr %4, align 1 + br label %66 + +66: ; preds = %65, %55, %31, %30 + %67 = load i1, ptr %4, align 1 + ret i1 %67 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z8hamCyclePA5_b(ptr noundef %0) #1 { + %2 = alloca i1, align 1 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + %6 = call noalias noundef nonnull ptr @_Znam(i64 noundef 20) #6 + store ptr %6, ptr %4, align 8 + store i32 0, ptr %5, align 4 + br label %7 + +7: ; preds = %15, %1 + %8 = load i32, ptr %5, align 4 + %9 = icmp slt i32 %8, 5 + br i1 %9, label %10, label %18 + +10: ; preds = %7 + %11 = load ptr, ptr %4, align 8 + %12 = load i32, ptr %5, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i32, ptr %11, i64 %13 + store i32 -1, ptr %14, align 4 + br label %15 + +15: ; preds = %10 + %16 = load i32, ptr %5, align 4 + %17 = add nsw i32 %16, 1 + store i32 %17, ptr %5, align 4 + br label %7, !llvm.loop !9 + +18: ; preds = %7 + %19 = load ptr, ptr %4, align 8 + %20 = getelementptr inbounds i32, ptr %19, i64 0 + store i32 0, ptr %20, align 4 + %21 = load ptr, ptr %3, align 8 + %22 = load ptr, ptr %4, align 8 + %23 = call noundef zeroext i1 @_Z12hamCycleUtilPA5_bPii(ptr noundef %21, ptr noundef %22, i32 noundef 1) + %24 = zext i1 %23 to i32 + %25 = icmp eq i32 %24, 0 + br i1 %25, label %26, label %28 + +26: ; preds = %18 + %27 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + store i1 false, ptr %2, align 1 + br label %30 + +28: ; preds = %18 + %29 = load ptr, ptr %4, align 8 + call void @_Z13printSolutionPi(ptr noundef %29) + store i1 true, ptr %2, align 1 + br label %30 + +30: ; preds = %28, %26 + %31 = load i1, ptr %2, align 1 + ret i1 %31 +} + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13printSolutionPi(ptr noundef %0) #1 { + %2 = alloca ptr, align 8 + %3 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + store i32 0, ptr %3, align 4 + br label %5 + +5: ; preds = %16, %1 + %6 = load i32, ptr %3, align 4 + %7 = icmp slt i32 %6, 5 + br i1 %7, label %8, label %19 + +8: ; preds = %5 + %9 = load ptr, ptr %2, align 8 + %10 = load i32, ptr %3, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds i32, ptr %9, i64 %11 + %13 = load i32, ptr %12, align 4 + %14 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %13) + %15 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %14, ptr noundef @.str.2) + br label %16 + +16: ; preds = %8 + %17 = load i32, ptr %3, align 4 + %18 = add nsw i32 %17, 1 + store i32 %18, ptr %3, align 4 + br label %5, !llvm.loop !10 + +19: ; preds = %5 + %20 = load ptr, ptr %2, align 8 + %21 = getelementptr inbounds i32, ptr %20, i64 0 + %22 = load i32, ptr %21, align 4 + %23 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %22) + %24 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %23, ptr noundef @.str.2) + %25 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #3 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { + %1 = alloca i32, align 4 + %2 = alloca [5 x [5 x i8]], align 16 + %3 = alloca [5 x [5 x i8]], align 16 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.graph1, i64 25, i1 false) + %4 = getelementptr inbounds [5 x [5 x i8]], ptr %2, i64 0, i64 0 + %5 = call noundef zeroext i1 @_Z8hamCyclePA5_b(ptr noundef %4) + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %3, ptr align 16 @__const.main.graph2, i64 25, i1 false) + %6 = getelementptr inbounds [5 x [5 x i8]], ptr %3, i64 0, i64 0 + %7 = call noundef zeroext i1 @_Z8hamCyclePA5_b(ptr noundef %6) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 + +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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #6 = { builtin allocsize(0) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/insertion-sort-for-singly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/insertion-sort-for-singly-linked-list.ll new file mode 100644 index 000000000..240fd89ef --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/insertion-sort-for-singly-linked-list.ll @@ -0,0 +1,233 @@ +; ModuleID = 'PE-benchmarks/insertion-sort-for-singly-linked-list.cpp' +source_filename = "PE-benchmarks/insertion-sort-for-singly-linked-list.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +%struct.Node = type { i32, ptr } + +@.str = private unnamed_addr constant [4 x i8] c"%d \00", align 1 +@.str.1 = private unnamed_addr constant [29 x i8] c"Linked List before sorting \0A\00", align 1 +@.str.2 = private unnamed_addr constant [29 x i8] c"\0ALinked List after sorting \0A\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13insertionSortPP4Node(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + store ptr null, ptr %3, align 8 + %6 = load ptr, ptr %2, align 8 + %7 = load ptr, ptr %6, align 8 + store ptr %7, ptr %4, align 8 + br label %8 + +8: ; preds = %11, %1 + %9 = load ptr, ptr %4, align 8 + %10 = icmp ne ptr %9, null + br i1 %10, label %11, label %17 + +11: ; preds = %8 + %12 = load ptr, ptr %4, align 8 + %13 = getelementptr inbounds %struct.Node, ptr %12, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %14, ptr %5, align 8 + %15 = load ptr, ptr %4, align 8 + call void @_Z12sortedInsertPP4NodeS0_(ptr noundef %3, ptr noundef %15) + %16 = load ptr, ptr %5, align 8 + store ptr %16, ptr %4, align 8 + br label %8, !llvm.loop !6 + +17: ; preds = %8 + %18 = load ptr, ptr %3, align 8 + %19 = load ptr, ptr %2, align 8 + store ptr %18, ptr %19, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z12sortedInsertPP4NodeS0_(ptr noundef %0, ptr noundef %1) #1 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = icmp eq ptr %7, null + br i1 %8, label %18, label %9 + +9: ; preds = %2 + %10 = load ptr, ptr %3, align 8 + %11 = load ptr, ptr %10, align 8 + %12 = getelementptr inbounds %struct.Node, ptr %11, i32 0, i32 0 + %13 = load i32, ptr %12, align 8 + %14 = load ptr, ptr %4, align 8 + %15 = getelementptr inbounds %struct.Node, ptr %14, i32 0, i32 0 + %16 = load i32, ptr %15, align 8 + %17 = icmp sge i32 %13, %16 + br i1 %17, label %18, label %25 + +18: ; preds = %9, %2 + %19 = load ptr, ptr %3, align 8 + %20 = load ptr, ptr %19, align 8 + %21 = load ptr, ptr %4, align 8 + %22 = getelementptr inbounds %struct.Node, ptr %21, i32 0, i32 1 + store ptr %20, ptr %22, align 8 + %23 = load ptr, ptr %4, align 8 + %24 = load ptr, ptr %3, align 8 + store ptr %23, ptr %24, align 8 + br label %58 + +25: ; preds = %9 + %26 = load ptr, ptr %3, align 8 + %27 = load ptr, ptr %26, align 8 + store ptr %27, ptr %5, align 8 + br label %28 + +28: ; preds = %45, %25 + %29 = load ptr, ptr %5, align 8 + %30 = getelementptr inbounds %struct.Node, ptr %29, i32 0, i32 1 + %31 = load ptr, ptr %30, align 8 + %32 = icmp ne ptr %31, null + br i1 %32, label %33, label %43 + +33: ; preds = %28 + %34 = load ptr, ptr %5, align 8 + %35 = getelementptr inbounds %struct.Node, ptr %34, i32 0, i32 1 + %36 = load ptr, ptr %35, align 8 + %37 = getelementptr inbounds %struct.Node, ptr %36, i32 0, i32 0 + %38 = load i32, ptr %37, align 8 + %39 = load ptr, ptr %4, align 8 + %40 = getelementptr inbounds %struct.Node, ptr %39, i32 0, i32 0 + %41 = load i32, ptr %40, align 8 + %42 = icmp slt i32 %38, %41 + br label %43 + +43: ; preds = %33, %28 + %44 = phi i1 [ false, %28 ], [ %42, %33 ] + br i1 %44, label %45, label %49 + +45: ; preds = %43 + %46 = load ptr, ptr %5, align 8 + %47 = getelementptr inbounds %struct.Node, ptr %46, i32 0, i32 1 + %48 = load ptr, ptr %47, align 8 + store ptr %48, ptr %5, align 8 + br label %28, !llvm.loop !8 + +49: ; preds = %43 + %50 = load ptr, ptr %5, align 8 + %51 = getelementptr inbounds %struct.Node, ptr %50, i32 0, i32 1 + %52 = load ptr, ptr %51, align 8 + %53 = load ptr, ptr %4, align 8 + %54 = getelementptr inbounds %struct.Node, ptr %53, i32 0, i32 1 + store ptr %52, ptr %54, align 8 + %55 = load ptr, ptr %4, align 8 + %56 = load ptr, ptr %5, align 8 + %57 = getelementptr inbounds %struct.Node, ptr %56, i32 0, i32 1 + store ptr %55, ptr %57, align 8 + br label %58 + +58: ; preds = %49, %18 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9printListP4Node(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + store ptr %4, ptr %3, align 8 + br label %5 + +5: ; preds = %8, %1 + %6 = load ptr, ptr %3, align 8 + %7 = icmp ne ptr %6, null + br i1 %7, label %8, label %16 + +8: ; preds = %5 + %9 = load ptr, ptr %3, align 8 + %10 = getelementptr inbounds %struct.Node, ptr %9, i32 0, i32 0 + %11 = load i32, ptr %10, align 8 + %12 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %11) + %13 = load ptr, ptr %3, align 8 + %14 = getelementptr inbounds %struct.Node, ptr %13, i32 0, i32 1 + %15 = load ptr, ptr %14, align 8 + store ptr %15, ptr %3, align 8 + br label %5, !llvm.loop !9 + +16: ; preds = %5 + ret void +} + +declare i32 @printf(ptr noundef, ...) #2 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z4pushPP4Nodei(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %6 = call noalias noundef nonnull ptr @_Znwm(i64 noundef 16) #5 + store ptr %6, ptr %5, align 8 + %7 = load i32, ptr %4, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = getelementptr inbounds %struct.Node, ptr %8, i32 0, i32 0 + store i32 %7, ptr %9, align 8 + %10 = load ptr, ptr %3, align 8 + %11 = load ptr, ptr %10, align 8 + %12 = load ptr, ptr %5, align 8 + %13 = getelementptr inbounds %struct.Node, ptr %12, i32 0, i32 1 + store ptr %11, ptr %13, align 8 + %14 = load ptr, ptr %5, align 8 + %15 = load ptr, ptr %3, align 8 + store ptr %14, ptr %15, align 8 + ret void +} + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #3 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { + %1 = alloca i32, align 4 + %2 = alloca ptr, align 8 + store i32 0, ptr %1, align 4 + store ptr null, ptr %2, align 8 + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 5) + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 20) + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 4) + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 3) + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 30) + %3 = call i32 (ptr, ...) @printf(ptr noundef @.str.1) + %4 = load ptr, ptr %2, align 8 + call void @_Z9printListP4Node(ptr noundef %4) + call void @_Z13insertionSortPP4Node(ptr noundef %2) + %5 = call i32 (ptr, ...) @printf(ptr noundef @.str.2) + %6 = load ptr, ptr %2, align 8 + call void @_Z9printListP4Node(ptr noundef %6) + ret i32 0 +} + +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/karatsuba.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/karatsuba.ll new file mode 100644 index 000000000..452ccddf5 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/karatsuba.ll @@ -0,0 +1,1781 @@ +; ModuleID = 'PE-benchmarks/karatsuba.cpp' +source_filename = "PE-benchmarks/karatsuba.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } +%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } +%union.anon = type { i64, [8 x i8] } +%"class.std::allocator" = type { i8 } +%"struct.std::forward_iterator_tag" = type { i8 } +%struct._Guard = type { ptr } + +$_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_ = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any + +$_ZNSt15__new_allocatorIcED2Ev = comdat any + +$_ZSt12__str_concatINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEET_PKNS6_10value_typeENS6_9size_typeES9_SA_RKNS6_14allocator_typeE = comdat any + +$_ZNSt11char_traitsIcE6lengthEPKc = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any + +$__clang_call_terminate = comdat any + +@.str = private unnamed_addr constant [5 x i8] c"%ld\0A\00", align 1 +@.str.1 = private unnamed_addr constant [5 x i8] c"1100\00", align 1 +@.str.2 = private unnamed_addr constant [5 x i8] c"1010\00", align 1 +@.str.3 = private unnamed_addr constant [4 x i8] c"110\00", align 1 +@.str.4 = private unnamed_addr constant [3 x i8] c"11\00", align 1 +@.str.5 = private unnamed_addr constant [2 x i8] c"1\00", align 1 +@.str.6 = private unnamed_addr constant [2 x i8] c"0\00", align 1 +@.str.7 = private unnamed_addr constant [4 x i8] c"111\00", align 1 +@.str.8 = private unnamed_addr constant [50 x i8] c"basic_string: construction from null is not valid\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) #0 { + %3 = alloca i32, align 4 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca %"class.std::__cxx11::basic_string", align 8 + %10 = alloca i32, align 4 + %11 = alloca %"class.std::__cxx11::basic_string", align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %12 = load ptr, ptr %4, align 8 + %13 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %12) #10 + %14 = trunc i64 %13 to i32 + store i32 %14, ptr %6, align 4 + %15 = load ptr, ptr %5, align 8 + %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %15) #10 + %17 = trunc i64 %16 to i32 + store i32 %17, ptr %7, align 4 + %18 = load i32, ptr %6, align 4 + %19 = load i32, ptr %7, align 4 + %20 = icmp slt i32 %18, %19 + br i1 %20, label %21, label %37 + +21: ; preds = %2 + store i32 0, ptr %8, align 4 + br label %22 + +22: ; preds = %32, %21 + %23 = load i32, ptr %8, align 4 + %24 = load i32, ptr %7, align 4 + %25 = load i32, ptr %6, align 4 + %26 = sub nsw i32 %24, %25 + %27 = icmp slt i32 %23, %26 + br i1 %27, label %28, label %35 + +28: ; preds = %22 + %29 = load ptr, ptr %4, align 8 + call void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(ptr sret(%"class.std::__cxx11::basic_string") align 8 %9, i8 noundef signext 48, ptr noundef nonnull align 8 dereferenceable(32) %29) + %30 = load ptr, ptr %4, align 8 + %31 = call noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(ptr noundef nonnull align 8 dereferenceable(32) %30, ptr noundef nonnull align 8 dereferenceable(32) %9) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #10 + br label %32 + +32: ; preds = %28 + %33 = load i32, ptr %8, align 4 + %34 = add nsw i32 %33, 1 + store i32 %34, ptr %8, align 4 + br label %22, !llvm.loop !6 + +35: ; preds = %22 + %36 = load i32, ptr %7, align 4 + store i32 %36, ptr %3, align 4 + br label %59 + +37: ; preds = %2 + %38 = load i32, ptr %6, align 4 + %39 = load i32, ptr %7, align 4 + %40 = icmp sgt i32 %38, %39 + br i1 %40, label %41, label %56 + +41: ; preds = %37 + store i32 0, ptr %10, align 4 + br label %42 + +42: ; preds = %52, %41 + %43 = load i32, ptr %10, align 4 + %44 = load i32, ptr %6, align 4 + %45 = load i32, ptr %7, align 4 + %46 = sub nsw i32 %44, %45 + %47 = icmp slt i32 %43, %46 + br i1 %47, label %48, label %55 + +48: ; preds = %42 + %49 = load ptr, ptr %5, align 8 + call void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(ptr sret(%"class.std::__cxx11::basic_string") align 8 %11, i8 noundef signext 48, ptr noundef nonnull align 8 dereferenceable(32) %49) + %50 = load ptr, ptr %5, align 8 + %51 = call noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(ptr noundef nonnull align 8 dereferenceable(32) %50, ptr noundef nonnull align 8 dereferenceable(32) %11) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #10 + br label %52 + +52: ; preds = %48 + %53 = load i32, ptr %10, align 4 + %54 = add nsw i32 %53, 1 + store i32 %54, ptr %10, align 4 + br label %42, !llvm.loop !8 + +55: ; preds = %42 + br label %56 + +56: ; preds = %55, %37 + br label %57 + +57: ; preds = %56 + %58 = load i32, ptr %6, align 4 + store i32 %58, ptr %3, align 4 + br label %59 + +59: ; preds = %57, %35 + %60 = load i32, ptr %3, align 4 + ret i32 %60 +} + +; Function Attrs: nounwind +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(ptr noalias sret(%"class.std::__cxx11::basic_string") align 8 %0, i8 noundef signext %1, ptr noundef nonnull align 8 dereferenceable(32) %2) #2 comdat personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i8, align 1 + %8 = alloca ptr, align 8 + %9 = alloca %"class.std::allocator", align 1 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %6, align 8 + store i8 %1, ptr %7, align 1 + store ptr %2, ptr %8, align 8 + %12 = load ptr, ptr %8, align 8 + %13 = call noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE5c_strEv(ptr noundef nonnull align 8 dereferenceable(32) %12) #10 + %14 = load ptr, ptr %8, align 8 + %15 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %14) #10 + %16 = load ptr, ptr %8, align 8 + call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13get_allocatorEv(ptr sret(%"class.std::allocator") align 1 %9, ptr noundef nonnull align 8 dereferenceable(32) %16) #10 + invoke void @_ZSt12__str_concatINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEET_PKNS6_10value_typeENS6_9size_typeES9_SA_RKNS6_14allocator_typeE(ptr sret(%"class.std::__cxx11::basic_string") align 8 %0, ptr noundef %7, i64 noundef 1, ptr noundef %13, i64 noundef %15, ptr noundef nonnull align 1 dereferenceable(1) %9) + to label %17 unwind label %19 + +17: ; preds = %3 + store ptr %9, ptr %5, align 8 + %18 = load ptr, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %18) #10 + ret void + +19: ; preds = %3 + %20 = landingpad { ptr, i32 } + cleanup + %21 = extractvalue { ptr, i32 } %20, 0 + store ptr %21, ptr %10, align 8 + %22 = extractvalue { ptr, i32 } %20, 1 + store i32 %22, ptr %11, align 4 + store ptr %9, ptr %4, align 8 + %23 = load ptr, ptr %4, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %23) #10 + br label %24 + +24: ; preds = %19 + %25 = load ptr, ptr %10, align 8 + %26 = load i32, ptr %11, align 4 + %27 = insertvalue { ptr, i32 } poison, ptr %25, 0 + %28 = insertvalue { ptr, i32 } %27, i32 %26, 1 + resume { ptr, i32 } %28 +} + +; Function Attrs: nounwind +declare noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) #1 + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noalias sret(%"class.std::__cxx11::basic_string") align 8 %0, ptr noundef %1, ptr noundef %2) #0 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca i1, align 1 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca %"class.std::__cxx11::basic_string", align 8 + %15 = alloca %"class.std::__cxx11::basic_string", align 8 + store ptr %0, ptr %4, align 8 + store i1 false, ptr %5, align 1 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #10 + %16 = invoke noundef i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_(ptr noundef nonnull align 8 dereferenceable(32) %1, ptr noundef nonnull align 8 dereferenceable(32) %2) + to label %17 unwind label %62 + +17: ; preds = %3 + store i32 %16, ptr %6, align 4 + store i32 0, ptr %9, align 4 + %18 = load i32, ptr %6, align 4 + %19 = sub nsw i32 %18, 1 + store i32 %19, ptr %10, align 4 + br label %20 + +20: ; preds = %59, %17 + %21 = load i32, ptr %10, align 4 + %22 = icmp sge i32 %21, 0 + br i1 %22, label %23, label %66 + +23: ; preds = %20 + %24 = load i32, ptr %10, align 4 + %25 = sext i32 %24 to i64 + %26 = invoke noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %25) + to label %27 unwind label %62 + +27: ; preds = %23 + %28 = load i8, ptr %26, align 1 + %29 = sext i8 %28 to i32 + %30 = sub nsw i32 %29, 48 + store i32 %30, ptr %11, align 4 + %31 = load i32, ptr %10, align 4 + %32 = sext i32 %31 to i64 + %33 = invoke noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(ptr noundef nonnull align 8 dereferenceable(32) %2, i64 noundef %32) + to label %34 unwind label %62 + +34: ; preds = %27 + %35 = load i8, ptr %33, align 1 + %36 = sext i8 %35 to i32 + %37 = sub nsw i32 %36, 48 + store i32 %37, ptr %12, align 4 + %38 = load i32, ptr %11, align 4 + %39 = load i32, ptr %12, align 4 + %40 = xor i32 %38, %39 + %41 = load i32, ptr %9, align 4 + %42 = xor i32 %40, %41 + %43 = add nsw i32 %42, 48 + store i32 %43, ptr %13, align 4 + %44 = load i32, ptr %13, align 4 + %45 = trunc i32 %44 to i8 + invoke void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(ptr sret(%"class.std::__cxx11::basic_string") align 8 %14, i8 noundef signext %45, ptr noundef nonnull align 8 dereferenceable(32) %0) + to label %46 unwind label %62 + +46: ; preds = %34 + %47 = call noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %14) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #10 + %48 = load i32, ptr %11, align 4 + %49 = load i32, ptr %12, align 4 + %50 = and i32 %48, %49 + %51 = load i32, ptr %12, align 4 + %52 = load i32, ptr %9, align 4 + %53 = and i32 %51, %52 + %54 = or i32 %50, %53 + %55 = load i32, ptr %11, align 4 + %56 = load i32, ptr %9, align 4 + %57 = and i32 %55, %56 + %58 = or i32 %54, %57 + store i32 %58, ptr %9, align 4 + br label %59 + +59: ; preds = %46 + %60 = load i32, ptr %10, align 4 + %61 = add nsw i32 %60, -1 + store i32 %61, ptr %10, align 4 + br label %20, !llvm.loop !9 + +62: ; preds = %69, %34, %27, %23, %3 + %63 = landingpad { ptr, i32 } + cleanup + %64 = extractvalue { ptr, i32 } %63, 0 + store ptr %64, ptr %7, align 8 + %65 = extractvalue { ptr, i32 } %63, 1 + store i32 %65, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #10 + br label %76 + +66: ; preds = %20 + %67 = load i32, ptr %9, align 4 + %68 = icmp ne i32 %67, 0 + br i1 %68, label %69, label %72 + +69: ; preds = %66 + invoke void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(ptr sret(%"class.std::__cxx11::basic_string") align 8 %15, i8 noundef signext 49, ptr noundef nonnull align 8 dereferenceable(32) %0) + to label %70 unwind label %62 + +70: ; preds = %69 + %71 = call noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %15) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #10 + br label %72 + +72: ; preds = %70, %66 + store i1 true, ptr %5, align 1 + %73 = load i1, ptr %5, align 1 + br i1 %73, label %75, label %74 + +74: ; preds = %72 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #10 + br label %75 + +75: ; preds = %74, %72 + ret void + +76: ; preds = %62 + %77 = load ptr, ptr %7, align 8 + %78 = load i32, ptr %8, align 4 + %79 = insertvalue { ptr, i32 } poison, ptr %77, 0 + %80 = insertvalue { ptr, i32 } %79, i32 %78, 1 + resume { ptr, i32 } %80 +} + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 + +declare i32 @__gxx_personality_v0(...) + +declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #3 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z18multiplyiSingleBitNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %0, ptr noundef %1) #0 { + %3 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef 0) + %4 = load i8, ptr %3, align 1 + %5 = sext i8 %4 to i32 + %6 = sub nsw i32 %5, 48 + %7 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 0) + %8 = load i8, ptr %7, align 1 + %9 = sext i8 %8 to i32 + %10 = sub nsw i32 %9, 48 + %11 = mul nsw i32 %6, %10 + ret i32 %11 +} + +declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #3 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %0, ptr noundef %1) #0 personality ptr @__gxx_personality_v0 { + %3 = alloca i64, align 8 + %4 = alloca i32, align 4 + %5 = alloca %"class.std::__cxx11::basic_string", align 8 + %6 = alloca %"class.std::__cxx11::basic_string", align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca %"class.std::__cxx11::basic_string", align 8 + %12 = alloca %"class.std::__cxx11::basic_string", align 8 + %13 = alloca %"class.std::__cxx11::basic_string", align 8 + %14 = alloca %"class.std::__cxx11::basic_string", align 8 + %15 = alloca i64, align 8 + %16 = alloca %"class.std::__cxx11::basic_string", align 8 + %17 = alloca %"class.std::__cxx11::basic_string", align 8 + %18 = alloca i64, align 8 + %19 = alloca %"class.std::__cxx11::basic_string", align 8 + %20 = alloca %"class.std::__cxx11::basic_string", align 8 + %21 = alloca i64, align 8 + %22 = alloca %"class.std::__cxx11::basic_string", align 8 + %23 = alloca %"class.std::__cxx11::basic_string", align 8 + %24 = alloca %"class.std::__cxx11::basic_string", align 8 + %25 = alloca %"class.std::__cxx11::basic_string", align 8 + %26 = alloca %"class.std::__cxx11::basic_string", align 8 + %27 = alloca %"class.std::__cxx11::basic_string", align 8 + %28 = call noundef i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) + store i32 %28, ptr %4, align 4 + %29 = load i32, ptr %4, align 4 + %30 = icmp eq i32 %29, 0 + br i1 %30, label %31, label %32 + +31: ; preds = %2 + store i64 0, ptr %3, align 8 + br label %171 + +32: ; preds = %2 + %33 = load i32, ptr %4, align 4 + %34 = icmp eq i32 %33, 1 + br i1 %34, label %35, label %49 + +35: ; preds = %32 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %0) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %6, ptr noundef nonnull align 8 dereferenceable(32) %1) + to label %36 unwind label %40 + +36: ; preds = %35 + %37 = invoke noundef i32 @_Z18multiplyiSingleBitNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %5, ptr noundef %6) + to label %38 unwind label %44 + +38: ; preds = %36 + %39 = sext i32 %37 to i64 + store i64 %39, ptr %3, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #10 + br label %171 + +40: ; preds = %35 + %41 = landingpad { ptr, i32 } + cleanup + %42 = extractvalue { ptr, i32 } %41, 0 + store ptr %42, ptr %7, align 8 + %43 = extractvalue { ptr, i32 } %41, 1 + store i32 %43, ptr %8, align 4 + br label %48 + +44: ; preds = %36 + %45 = landingpad { ptr, i32 } + cleanup + %46 = extractvalue { ptr, i32 } %45, 0 + store ptr %46, ptr %7, align 8 + %47 = extractvalue { ptr, i32 } %45, 1 + store i32 %47, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #10 + br label %48 + +48: ; preds = %44, %40 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #10 + br label %173 + +49: ; preds = %32 + %50 = load i32, ptr %4, align 4 + %51 = sdiv i32 %50, 2 + store i32 %51, ptr %9, align 4 + %52 = load i32, ptr %4, align 4 + %53 = load i32, ptr %9, align 4 + %54 = sub nsw i32 %52, %53 + store i32 %54, ptr %10, align 4 + %55 = load i32, ptr %9, align 4 + %56 = sext i32 %55 to i64 + call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(ptr sret(%"class.std::__cxx11::basic_string") align 8 %11, ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef 0, i64 noundef %56) + %57 = load i32, ptr %9, align 4 + %58 = sext i32 %57 to i64 + %59 = load i32, ptr %10, align 4 + %60 = sext i32 %59 to i64 + invoke void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(ptr sret(%"class.std::__cxx11::basic_string") align 8 %12, ptr 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, ptr %9, align 4 + %63 = sext i32 %62 to i64 + invoke void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(ptr sret(%"class.std::__cxx11::basic_string") align 8 %13, ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 0, i64 noundef %63) + to label %64 unwind label %108 + +64: ; preds = %61 + %65 = load i32, ptr %9, align 4 + %66 = sext i32 %65 to i64 + %67 = load i32, ptr %10, align 4 + %68 = sext i32 %67 to i64 + invoke void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(ptr sret(%"class.std::__cxx11::basic_string") align 8 %14, ptr 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_(ptr noundef nonnull align 8 dereferenceable(32) %16, ptr noundef nonnull align 8 dereferenceable(32) %11) + to label %70 unwind label %116 + +70: ; preds = %69 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %17, ptr noundef nonnull align 8 dereferenceable(32) %13) + to label %71 unwind label %120 + +71: ; preds = %70 + %72 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %16, ptr noundef %17) + to label %73 unwind label %124 + +73: ; preds = %71 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #10 + store i64 %72, ptr %15, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %19, ptr noundef nonnull align 8 dereferenceable(32) %12) + to label %74 unwind label %116 + +74: ; preds = %73 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %20, ptr noundef nonnull align 8 dereferenceable(32) %14) + to label %75 unwind label %129 + +75: ; preds = %74 + %76 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %19, ptr noundef %20) + to label %77 unwind label %133 + +77: ; preds = %75 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %20) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %19) #10 + store i64 %76, ptr %18, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %23, ptr noundef nonnull align 8 dereferenceable(32) %11) + to label %78 unwind label %116 + +78: ; preds = %77 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %24, ptr noundef nonnull align 8 dereferenceable(32) %12) + to label %79 unwind label %138 + +79: ; preds = %78 + invoke void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr sret(%"class.std::__cxx11::basic_string") align 8 %22, ptr noundef %23, ptr noundef %24) + to label %80 unwind label %142 + +80: ; preds = %79 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %26, ptr noundef nonnull align 8 dereferenceable(32) %13) + to label %81 unwind label %146 + +81: ; preds = %80 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %27, ptr noundef nonnull align 8 dereferenceable(32) %14) + to label %82 unwind label %150 + +82: ; preds = %81 + invoke void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr sret(%"class.std::__cxx11::basic_string") align 8 %25, ptr noundef %26, ptr noundef %27) + to label %83 unwind label %154 + +83: ; preds = %82 + %84 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %22, ptr noundef %25) + to label %85 unwind label %158 + +85: ; preds = %83 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %25) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %27) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %26) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %22) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %24) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %23) #10 + store i64 %84, ptr %21, align 8 + %86 = load i64, ptr %15, align 8 + %87 = load i32, ptr %10, align 4 + %88 = mul nsw i32 2, %87 + %89 = shl i32 1, %88 + %90 = sext i32 %89 to i64 + %91 = mul nsw i64 %86, %90 + %92 = load i64, ptr %21, align 8 + %93 = load i64, ptr %15, align 8 + %94 = sub nsw i64 %92, %93 + %95 = load i64, ptr %18, align 8 + %96 = sub nsw i64 %94, %95 + %97 = load i32, ptr %10, align 4 + %98 = shl i32 1, %97 + %99 = sext i32 %98 to i64 + %100 = mul nsw i64 %96, %99 + %101 = add nsw i64 %91, %100 + %102 = load i64, ptr %18, align 8 + %103 = add nsw i64 %101, %102 + store i64 %103, ptr %3, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %13) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %12) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #10 + br label %171 + +104: ; preds = %49 + %105 = landingpad { ptr, i32 } + cleanup + %106 = extractvalue { ptr, i32 } %105, 0 + store ptr %106, ptr %7, align 8 + %107 = extractvalue { ptr, i32 } %105, 1 + store i32 %107, ptr %8, align 4 + br label %170 + +108: ; preds = %61 + %109 = landingpad { ptr, i32 } + cleanup + %110 = extractvalue { ptr, i32 } %109, 0 + store ptr %110, ptr %7, align 8 + %111 = extractvalue { ptr, i32 } %109, 1 + store i32 %111, ptr %8, align 4 + br label %169 + +112: ; preds = %64 + %113 = landingpad { ptr, i32 } + cleanup + %114 = extractvalue { ptr, i32 } %113, 0 + store ptr %114, ptr %7, align 8 + %115 = extractvalue { ptr, i32 } %113, 1 + store i32 %115, ptr %8, align 4 + br label %168 + +116: ; preds = %77, %73, %69 + %117 = landingpad { ptr, i32 } + cleanup + %118 = extractvalue { ptr, i32 } %117, 0 + store ptr %118, ptr %7, align 8 + %119 = extractvalue { ptr, i32 } %117, 1 + store i32 %119, ptr %8, align 4 + br label %167 + +120: ; preds = %70 + %121 = landingpad { ptr, i32 } + cleanup + %122 = extractvalue { ptr, i32 } %121, 0 + store ptr %122, ptr %7, align 8 + %123 = extractvalue { ptr, i32 } %121, 1 + store i32 %123, ptr %8, align 4 + br label %128 + +124: ; preds = %71 + %125 = landingpad { ptr, i32 } + cleanup + %126 = extractvalue { ptr, i32 } %125, 0 + store ptr %126, ptr %7, align 8 + %127 = extractvalue { ptr, i32 } %125, 1 + store i32 %127, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #10 + br label %128 + +128: ; preds = %124, %120 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #10 + br label %167 + +129: ; preds = %74 + %130 = landingpad { ptr, i32 } + cleanup + %131 = extractvalue { ptr, i32 } %130, 0 + store ptr %131, ptr %7, align 8 + %132 = extractvalue { ptr, i32 } %130, 1 + store i32 %132, ptr %8, align 4 + br label %137 + +133: ; preds = %75 + %134 = landingpad { ptr, i32 } + cleanup + %135 = extractvalue { ptr, i32 } %134, 0 + store ptr %135, ptr %7, align 8 + %136 = extractvalue { ptr, i32 } %134, 1 + store i32 %136, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %20) #10 + br label %137 + +137: ; preds = %133, %129 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %19) #10 + br label %167 + +138: ; preds = %78 + %139 = landingpad { ptr, i32 } + cleanup + %140 = extractvalue { ptr, i32 } %139, 0 + store ptr %140, ptr %7, align 8 + %141 = extractvalue { ptr, i32 } %139, 1 + store i32 %141, ptr %8, align 4 + br label %166 + +142: ; preds = %79 + %143 = landingpad { ptr, i32 } + cleanup + %144 = extractvalue { ptr, i32 } %143, 0 + store ptr %144, ptr %7, align 8 + %145 = extractvalue { ptr, i32 } %143, 1 + store i32 %145, ptr %8, align 4 + br label %165 + +146: ; preds = %80 + %147 = landingpad { ptr, i32 } + cleanup + %148 = extractvalue { ptr, i32 } %147, 0 + store ptr %148, ptr %7, align 8 + %149 = extractvalue { ptr, i32 } %147, 1 + store i32 %149, ptr %8, align 4 + br label %164 + +150: ; preds = %81 + %151 = landingpad { ptr, i32 } + cleanup + %152 = extractvalue { ptr, i32 } %151, 0 + store ptr %152, ptr %7, align 8 + %153 = extractvalue { ptr, i32 } %151, 1 + store i32 %153, ptr %8, align 4 + br label %163 + +154: ; preds = %82 + %155 = landingpad { ptr, i32 } + cleanup + %156 = extractvalue { ptr, i32 } %155, 0 + store ptr %156, ptr %7, align 8 + %157 = extractvalue { ptr, i32 } %155, 1 + store i32 %157, ptr %8, align 4 + br label %162 + +158: ; preds = %83 + %159 = landingpad { ptr, i32 } + cleanup + %160 = extractvalue { ptr, i32 } %159, 0 + store ptr %160, ptr %7, align 8 + %161 = extractvalue { ptr, i32 } %159, 1 + store i32 %161, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %25) #10 + br label %162 + +162: ; preds = %158, %154 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %27) #10 + br label %163 + +163: ; preds = %162, %150 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %26) #10 + br label %164 + +164: ; preds = %163, %146 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %22) #10 + br label %165 + +165: ; preds = %164, %142 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %24) #10 + br label %166 + +166: ; preds = %165, %138 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %23) #10 + br label %167 + +167: ; preds = %166, %137, %128, %116 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #10 + br label %168 + +168: ; preds = %167, %112 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %13) #10 + br label %169 + +169: ; preds = %168, %108 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %12) #10 + br label %170 + +170: ; preds = %169, %104 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #10 + br label %173 + +171: ; preds = %85, %38, %31 + %172 = load i64, ptr %3, align 8 + ret i64 %172 + +173: ; preds = %170, %48 + %174 = load ptr, ptr %7, align 8 + %175 = load i32, ptr %8, align 4 + %176 = insertvalue { ptr, i32 } poison, ptr %174, 0 + %177 = insertvalue { ptr, i32 } %176, i32 %175, 1 + resume { ptr, i32 } %177 +} + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #3 + +declare void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(ptr sret(%"class.std::__cxx11::basic_string") align 8, ptr noundef nonnull align 8 dereferenceable(32), i64 noundef, i64 noundef) #3 + +; Function Attrs: noinline norecurse uwtable +define dso_local noundef i32 @main() #4 personality ptr @__gxx_personality_v0 { + %1 = alloca ptr, align 8 + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca ptr, align 8 + %15 = alloca ptr, align 8 + %16 = alloca ptr, align 8 + %17 = alloca ptr, align 8 + %18 = alloca ptr, align 8 + %19 = alloca ptr, align 8 + %20 = alloca ptr, align 8 + %21 = alloca ptr, align 8 + %22 = alloca ptr, align 8 + %23 = alloca ptr, align 8 + %24 = alloca ptr, align 8 + %25 = alloca ptr, align 8 + %26 = alloca ptr, align 8 + %27 = alloca ptr, align 8 + %28 = alloca ptr, align 8 + %29 = alloca ptr, align 8 + %30 = alloca ptr, align 8 + %31 = alloca ptr, align 8 + %32 = alloca ptr, align 8 + %33 = alloca ptr, align 8 + %34 = alloca ptr, align 8 + %35 = alloca ptr, align 8 + %36 = alloca ptr, align 8 + %37 = alloca ptr, align 8 + %38 = alloca ptr, align 8 + %39 = alloca ptr, align 8 + %40 = alloca ptr, align 8 + %41 = alloca ptr, align 8 + %42 = alloca ptr, align 8 + %43 = alloca ptr, align 8 + %44 = alloca ptr, align 8 + %45 = alloca ptr, align 8 + %46 = alloca ptr, align 8 + %47 = alloca ptr, align 8 + %48 = alloca ptr, align 8 + %49 = alloca ptr, align 8 + %50 = alloca ptr, align 8 + %51 = alloca ptr, align 8 + %52 = alloca ptr, align 8 + %53 = alloca ptr, align 8 + %54 = alloca ptr, align 8 + %55 = alloca ptr, align 8 + %56 = alloca ptr, align 8 + %57 = alloca %"class.std::__cxx11::basic_string", align 8 + %58 = alloca %"class.std::allocator", align 1 + %59 = alloca ptr, align 8 + %60 = alloca i32, align 4 + %61 = alloca %"class.std::__cxx11::basic_string", align 8 + %62 = alloca %"class.std::allocator", align 1 + %63 = alloca %"class.std::__cxx11::basic_string", align 8 + %64 = alloca %"class.std::allocator", align 1 + %65 = alloca %"class.std::__cxx11::basic_string", align 8 + %66 = alloca %"class.std::allocator", align 1 + %67 = alloca %"class.std::__cxx11::basic_string", align 8 + %68 = alloca %"class.std::allocator", align 1 + %69 = alloca %"class.std::__cxx11::basic_string", align 8 + %70 = alloca %"class.std::allocator", align 1 + %71 = alloca %"class.std::__cxx11::basic_string", align 8 + %72 = alloca %"class.std::allocator", align 1 + %73 = alloca %"class.std::__cxx11::basic_string", align 8 + %74 = alloca %"class.std::allocator", align 1 + %75 = alloca %"class.std::__cxx11::basic_string", align 8 + %76 = alloca %"class.std::allocator", align 1 + %77 = alloca %"class.std::__cxx11::basic_string", align 8 + %78 = alloca %"class.std::allocator", align 1 + %79 = alloca %"class.std::__cxx11::basic_string", align 8 + %80 = alloca %"class.std::allocator", align 1 + %81 = alloca %"class.std::__cxx11::basic_string", align 8 + %82 = alloca %"class.std::allocator", align 1 + %83 = alloca %"class.std::__cxx11::basic_string", align 8 + %84 = alloca %"class.std::allocator", align 1 + %85 = alloca %"class.std::__cxx11::basic_string", align 8 + %86 = alloca %"class.std::allocator", align 1 + store ptr %58, ptr %56, align 8 + %87 = load ptr, ptr %56, align 8 + store ptr %87, ptr %1, align 8 + %88 = load ptr, ptr %1, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %57, ptr noundef @.str.1, ptr noundef nonnull align 1 dereferenceable(1) %58) + to label %89 unwind label %171 + +89: ; preds = %0 + store ptr %62, ptr %55, align 8 + %90 = load ptr, ptr %55, align 8 + store ptr %90, ptr %2, align 8 + %91 = load ptr, ptr %2, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %61, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %62) + to label %92 unwind label %175 + +92: ; preds = %89 + %93 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %57, ptr noundef %61) + to label %94 unwind label %179 + +94: ; preds = %92 + %95 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %93) + to label %96 unwind label %179 + +96: ; preds = %94 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %61) #10 + store ptr %62, ptr %42, align 8 + %97 = load ptr, ptr %42, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %97) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %57) #10 + store ptr %58, ptr %40, align 8 + %98 = load ptr, ptr %40, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %98) #10 + store ptr %64, ptr %54, align 8 + %99 = load ptr, ptr %54, align 8 + store ptr %99, ptr %3, align 8 + %100 = load ptr, ptr %3, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %63, ptr noundef @.str.3, ptr noundef nonnull align 1 dereferenceable(1) %64) + to label %101 unwind label %187 + +101: ; preds = %96 + store ptr %66, ptr %53, align 8 + %102 = load ptr, ptr %53, align 8 + store ptr %102, ptr %4, align 8 + %103 = load ptr, ptr %4, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %65, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %66) + to label %104 unwind label %191 + +104: ; preds = %101 + %105 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %63, ptr noundef %65) + to label %106 unwind label %195 + +106: ; preds = %104 + %107 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %105) + to label %108 unwind label %195 + +108: ; preds = %106 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %65) #10 + store ptr %66, ptr %38, align 8 + %109 = load ptr, ptr %38, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %109) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %63) #10 + store ptr %64, ptr %36, align 8 + %110 = load ptr, ptr %36, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %110) #10 + store ptr %68, ptr %52, align 8 + %111 = load ptr, ptr %52, align 8 + store ptr %111, ptr %5, align 8 + %112 = load ptr, ptr %5, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %67, ptr noundef @.str.4, ptr noundef nonnull align 1 dereferenceable(1) %68) + to label %113 unwind label %203 + +113: ; preds = %108 + store ptr %70, ptr %51, align 8 + %114 = load ptr, ptr %51, align 8 + store ptr %114, ptr %6, align 8 + %115 = load ptr, ptr %6, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %69, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %70) + to label %116 unwind label %207 + +116: ; preds = %113 + %117 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %67, ptr noundef %69) + to label %118 unwind label %211 + +118: ; preds = %116 + %119 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %117) + to label %120 unwind label %211 + +120: ; preds = %118 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %69) #10 + store ptr %70, ptr %34, align 8 + %121 = load ptr, ptr %34, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %121) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %67) #10 + store ptr %68, ptr %32, align 8 + %122 = load ptr, ptr %32, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %122) #10 + store ptr %72, ptr %50, align 8 + %123 = load ptr, ptr %50, align 8 + store ptr %123, ptr %7, align 8 + %124 = load ptr, ptr %7, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %71, ptr noundef @.str.5, ptr noundef nonnull align 1 dereferenceable(1) %72) + to label %125 unwind label %219 + +125: ; preds = %120 + store ptr %74, ptr %49, align 8 + %126 = load ptr, ptr %49, align 8 + store ptr %126, ptr %8, align 8 + %127 = load ptr, ptr %8, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %73, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %74) + to label %128 unwind label %223 + +128: ; preds = %125 + %129 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %71, ptr noundef %73) + to label %130 unwind label %227 + +130: ; preds = %128 + %131 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %129) + to label %132 unwind label %227 + +132: ; preds = %130 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %73) #10 + store ptr %74, ptr %30, align 8 + %133 = load ptr, ptr %30, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %133) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %71) #10 + store ptr %72, ptr %28, align 8 + %134 = load ptr, ptr %28, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %134) #10 + store ptr %76, ptr %48, align 8 + %135 = load ptr, ptr %48, align 8 + store ptr %135, ptr %9, align 8 + %136 = load ptr, ptr %9, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %75, ptr noundef @.str.6, ptr noundef nonnull align 1 dereferenceable(1) %76) + to label %137 unwind label %235 + +137: ; preds = %132 + store ptr %78, ptr %47, align 8 + %138 = load ptr, ptr %47, align 8 + store ptr %138, ptr %10, align 8 + %139 = load ptr, ptr %10, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %77, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %78) + to label %140 unwind label %239 + +140: ; preds = %137 + %141 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %75, ptr noundef %77) + to label %142 unwind label %243 + +142: ; preds = %140 + %143 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %141) + to label %144 unwind label %243 + +144: ; preds = %142 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %77) #10 + store ptr %78, ptr %26, align 8 + %145 = load ptr, ptr %26, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %145) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %75) #10 + store ptr %76, ptr %24, align 8 + %146 = load ptr, ptr %24, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %146) #10 + store ptr %80, ptr %46, align 8 + %147 = load ptr, ptr %46, align 8 + store ptr %147, ptr %11, align 8 + %148 = load ptr, ptr %11, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %79, ptr noundef @.str.7, ptr noundef nonnull align 1 dereferenceable(1) %80) + to label %149 unwind label %251 + +149: ; preds = %144 + store ptr %82, ptr %45, align 8 + %150 = load ptr, ptr %45, align 8 + store ptr %150, ptr %12, align 8 + %151 = load ptr, ptr %12, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %81, ptr noundef @.str.7, ptr noundef nonnull align 1 dereferenceable(1) %82) + to label %152 unwind label %255 + +152: ; preds = %149 + %153 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %79, ptr noundef %81) + to label %154 unwind label %259 + +154: ; preds = %152 + %155 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %153) + to label %156 unwind label %259 + +156: ; preds = %154 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %81) #10 + store ptr %82, ptr %22, align 8 + %157 = load ptr, ptr %22, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %157) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %79) #10 + store ptr %80, ptr %20, align 8 + %158 = load ptr, ptr %20, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %158) #10 + store ptr %84, ptr %44, align 8 + %159 = load ptr, ptr %44, align 8 + store ptr %159, ptr %13, align 8 + %160 = load ptr, ptr %13, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %83, ptr noundef @.str.4, ptr noundef nonnull align 1 dereferenceable(1) %84) + to label %161 unwind label %267 + +161: ; preds = %156 + store ptr %86, ptr %43, align 8 + %162 = load ptr, ptr %43, align 8 + store ptr %162, ptr %14, align 8 + %163 = load ptr, ptr %14, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %85, ptr noundef @.str.4, ptr noundef nonnull align 1 dereferenceable(1) %86) + to label %164 unwind label %271 + +164: ; preds = %161 + %165 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %83, ptr noundef %85) + to label %166 unwind label %275 + +166: ; preds = %164 + %167 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %165) + to label %168 unwind label %275 + +168: ; preds = %166 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %85) #10 + store ptr %86, ptr %18, align 8 + %169 = load ptr, ptr %18, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %169) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %83) #10 + store ptr %84, ptr %16, align 8 + %170 = load ptr, ptr %16, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %170) #10 + ret i32 0 + +171: ; preds = %0 + %172 = landingpad { ptr, i32 } + cleanup + %173 = extractvalue { ptr, i32 } %172, 0 + store ptr %173, ptr %59, align 8 + %174 = extractvalue { ptr, i32 } %172, 1 + store i32 %174, ptr %60, align 4 + br label %185 + +175: ; preds = %89 + %176 = landingpad { ptr, i32 } + cleanup + %177 = extractvalue { ptr, i32 } %176, 0 + store ptr %177, ptr %59, align 8 + %178 = extractvalue { ptr, i32 } %176, 1 + store i32 %178, ptr %60, align 4 + br label %183 + +179: ; preds = %94, %92 + %180 = landingpad { ptr, i32 } + cleanup + %181 = extractvalue { ptr, i32 } %180, 0 + store ptr %181, ptr %59, align 8 + %182 = extractvalue { ptr, i32 } %180, 1 + store i32 %182, ptr %60, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %61) #10 + br label %183 + +183: ; preds = %179, %175 + store ptr %62, ptr %41, align 8 + %184 = load ptr, ptr %41, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %184) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %57) #10 + br label %185 + +185: ; preds = %183, %171 + store ptr %58, ptr %39, align 8 + %186 = load ptr, ptr %39, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %186) #10 + br label %283 + +187: ; preds = %96 + %188 = landingpad { ptr, i32 } + cleanup + %189 = extractvalue { ptr, i32 } %188, 0 + store ptr %189, ptr %59, align 8 + %190 = extractvalue { ptr, i32 } %188, 1 + store i32 %190, ptr %60, align 4 + br label %201 + +191: ; preds = %101 + %192 = landingpad { ptr, i32 } + cleanup + %193 = extractvalue { ptr, i32 } %192, 0 + store ptr %193, ptr %59, align 8 + %194 = extractvalue { ptr, i32 } %192, 1 + store i32 %194, ptr %60, align 4 + br label %199 + +195: ; preds = %106, %104 + %196 = landingpad { ptr, i32 } + cleanup + %197 = extractvalue { ptr, i32 } %196, 0 + store ptr %197, ptr %59, align 8 + %198 = extractvalue { ptr, i32 } %196, 1 + store i32 %198, ptr %60, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %65) #10 + br label %199 + +199: ; preds = %195, %191 + store ptr %66, ptr %37, align 8 + %200 = load ptr, ptr %37, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %200) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %63) #10 + br label %201 + +201: ; preds = %199, %187 + store ptr %64, ptr %35, align 8 + %202 = load ptr, ptr %35, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %202) #10 + br label %283 + +203: ; preds = %108 + %204 = landingpad { ptr, i32 } + cleanup + %205 = extractvalue { ptr, i32 } %204, 0 + store ptr %205, ptr %59, align 8 + %206 = extractvalue { ptr, i32 } %204, 1 + store i32 %206, ptr %60, align 4 + br label %217 + +207: ; preds = %113 + %208 = landingpad { ptr, i32 } + cleanup + %209 = extractvalue { ptr, i32 } %208, 0 + store ptr %209, ptr %59, align 8 + %210 = extractvalue { ptr, i32 } %208, 1 + store i32 %210, ptr %60, align 4 + br label %215 + +211: ; preds = %118, %116 + %212 = landingpad { ptr, i32 } + cleanup + %213 = extractvalue { ptr, i32 } %212, 0 + store ptr %213, ptr %59, align 8 + %214 = extractvalue { ptr, i32 } %212, 1 + store i32 %214, ptr %60, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %69) #10 + br label %215 + +215: ; preds = %211, %207 + store ptr %70, ptr %33, align 8 + %216 = load ptr, ptr %33, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %216) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %67) #10 + br label %217 + +217: ; preds = %215, %203 + store ptr %68, ptr %31, align 8 + %218 = load ptr, ptr %31, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %218) #10 + br label %283 + +219: ; preds = %120 + %220 = landingpad { ptr, i32 } + cleanup + %221 = extractvalue { ptr, i32 } %220, 0 + store ptr %221, ptr %59, align 8 + %222 = extractvalue { ptr, i32 } %220, 1 + store i32 %222, ptr %60, align 4 + br label %233 + +223: ; preds = %125 + %224 = landingpad { ptr, i32 } + cleanup + %225 = extractvalue { ptr, i32 } %224, 0 + store ptr %225, ptr %59, align 8 + %226 = extractvalue { ptr, i32 } %224, 1 + store i32 %226, ptr %60, align 4 + br label %231 + +227: ; preds = %130, %128 + %228 = landingpad { ptr, i32 } + cleanup + %229 = extractvalue { ptr, i32 } %228, 0 + store ptr %229, ptr %59, align 8 + %230 = extractvalue { ptr, i32 } %228, 1 + store i32 %230, ptr %60, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %73) #10 + br label %231 + +231: ; preds = %227, %223 + store ptr %74, ptr %29, align 8 + %232 = load ptr, ptr %29, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %232) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %71) #10 + br label %233 + +233: ; preds = %231, %219 + store ptr %72, ptr %27, align 8 + %234 = load ptr, ptr %27, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %234) #10 + br label %283 + +235: ; preds = %132 + %236 = landingpad { ptr, i32 } + cleanup + %237 = extractvalue { ptr, i32 } %236, 0 + store ptr %237, ptr %59, align 8 + %238 = extractvalue { ptr, i32 } %236, 1 + store i32 %238, ptr %60, align 4 + br label %249 + +239: ; preds = %137 + %240 = landingpad { ptr, i32 } + cleanup + %241 = extractvalue { ptr, i32 } %240, 0 + store ptr %241, ptr %59, align 8 + %242 = extractvalue { ptr, i32 } %240, 1 + store i32 %242, ptr %60, align 4 + br label %247 + +243: ; preds = %142, %140 + %244 = landingpad { ptr, i32 } + cleanup + %245 = extractvalue { ptr, i32 } %244, 0 + store ptr %245, ptr %59, align 8 + %246 = extractvalue { ptr, i32 } %244, 1 + store i32 %246, ptr %60, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %77) #10 + br label %247 + +247: ; preds = %243, %239 + store ptr %78, ptr %25, align 8 + %248 = load ptr, ptr %25, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %248) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %75) #10 + br label %249 + +249: ; preds = %247, %235 + store ptr %76, ptr %23, align 8 + %250 = load ptr, ptr %23, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %250) #10 + br label %283 + +251: ; preds = %144 + %252 = landingpad { ptr, i32 } + cleanup + %253 = extractvalue { ptr, i32 } %252, 0 + store ptr %253, ptr %59, align 8 + %254 = extractvalue { ptr, i32 } %252, 1 + store i32 %254, ptr %60, align 4 + br label %265 + +255: ; preds = %149 + %256 = landingpad { ptr, i32 } + cleanup + %257 = extractvalue { ptr, i32 } %256, 0 + store ptr %257, ptr %59, align 8 + %258 = extractvalue { ptr, i32 } %256, 1 + store i32 %258, ptr %60, align 4 + br label %263 + +259: ; preds = %154, %152 + %260 = landingpad { ptr, i32 } + cleanup + %261 = extractvalue { ptr, i32 } %260, 0 + store ptr %261, ptr %59, align 8 + %262 = extractvalue { ptr, i32 } %260, 1 + store i32 %262, ptr %60, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %81) #10 + br label %263 + +263: ; preds = %259, %255 + store ptr %82, ptr %21, align 8 + %264 = load ptr, ptr %21, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %264) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %79) #10 + br label %265 + +265: ; preds = %263, %251 + store ptr %80, ptr %19, align 8 + %266 = load ptr, ptr %19, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %266) #10 + br label %283 + +267: ; preds = %156 + %268 = landingpad { ptr, i32 } + cleanup + %269 = extractvalue { ptr, i32 } %268, 0 + store ptr %269, ptr %59, align 8 + %270 = extractvalue { ptr, i32 } %268, 1 + store i32 %270, ptr %60, align 4 + br label %281 + +271: ; preds = %161 + %272 = landingpad { ptr, i32 } + cleanup + %273 = extractvalue { ptr, i32 } %272, 0 + store ptr %273, ptr %59, align 8 + %274 = extractvalue { ptr, i32 } %272, 1 + store i32 %274, ptr %60, align 4 + br label %279 + +275: ; preds = %166, %164 + %276 = landingpad { ptr, i32 } + cleanup + %277 = extractvalue { ptr, i32 } %276, 0 + store ptr %277, ptr %59, align 8 + %278 = extractvalue { ptr, i32 } %276, 1 + store i32 %278, ptr %60, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %85) #10 + br label %279 + +279: ; preds = %275, %271 + store ptr %86, ptr %17, align 8 + %280 = load ptr, ptr %17, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %280) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %83) #10 + br label %281 + +281: ; preds = %279, %267 + store ptr %84, ptr %15, align 8 + %282 = load ptr, ptr %15, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %282) #10 + br label %283 + +283: ; preds = %281, %265, %249, %233, %217, %201, %185 + %284 = load ptr, ptr %59, align 8 + %285 = load i32, ptr %60, align 4 + %286 = insertvalue { ptr, i32 } poison, ptr %284, 0 + %287 = insertvalue { ptr, i32 } %286, i32 %285, 1 + resume { ptr, i32 } %287 +} + +declare i32 @printf(ptr noundef, ...) #3 + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) unnamed_addr #2 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %11, i32 0, i32 0 + %13 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) + %14 = load ptr, ptr %6, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %12, ptr noundef %13, ptr noundef nonnull align 1 dereferenceable(1) %14) + %15 = load ptr, ptr %5, align 8 + %16 = icmp eq ptr %15, null + br i1 %16, label %17, label %23 + +17: ; preds = %3 + invoke void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.8) #11 + to label %18 unwind label %19 + +18: ; preds = %17 + unreachable + +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } + cleanup + %21 = extractvalue { ptr, i32 } %20, 0 + store ptr %21, ptr %7, align 8 + %22 = extractvalue { ptr, i32 } %20, 1 + store i32 %22, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %12) #10 + br label %32 + +23: ; preds = %3 + %24 = load ptr, ptr %5, align 8 + %25 = load ptr, ptr %5, align 8 + %26 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %25) + to label %27 unwind label %19 + +27: ; preds = %23 + %28 = getelementptr inbounds i8, ptr %24, i64 %26 + store ptr %28, ptr %9, align 8 + %29 = load ptr, ptr %5, align 8 + %30 = load ptr, ptr %9, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %29, ptr noundef %30) + to label %31 unwind label %19 + +31: ; preds = %27 + ret void + +32: ; preds = %19 + %33 = load ptr, ptr %7, align 8 + %34 = load i32, ptr %8, align 4 + %35 = insertvalue { ptr, i32 } poison, ptr %33, 0 + %36 = insertvalue { ptr, i32 } %35, i32 %34, 1 + resume { ptr, i32 } %36 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZSt12__str_concatINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEET_PKNS6_10value_typeENS6_9size_typeES9_SA_RKNS6_14allocator_typeE(ptr noalias sret(%"class.std::__cxx11::basic_string") align 8 %0, ptr noundef %1, i64 noundef %2, ptr noundef %3, i64 noundef %4, ptr noundef nonnull align 1 dereferenceable(1) %5) #2 comdat personality ptr @__gxx_personality_v0 { + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca ptr, align 8 + %15 = alloca ptr, align 8 + %16 = alloca ptr, align 8 + %17 = alloca ptr, align 8 + %18 = alloca i64, align 8 + %19 = alloca ptr, align 8 + %20 = alloca i64, align 8 + %21 = alloca ptr, align 8 + %22 = alloca i1, align 1 + %23 = alloca %"class.std::allocator", align 1 + %24 = alloca ptr, align 8 + %25 = alloca i32, align 4 + store ptr %0, ptr %16, align 8 + store ptr %1, ptr %17, align 8 + store i64 %2, ptr %18, align 8 + store ptr %3, ptr %19, align 8 + store i64 %4, ptr %20, align 8 + store ptr %5, ptr %21, align 8 + store i1 false, ptr %22, align 1 + %26 = load ptr, ptr %21, align 8 + call void @llvm.experimental.noalias.scope.decl(metadata !10) + store ptr %23, ptr %13, align 8, !noalias !10 + store ptr %26, ptr %14, align 8, !noalias !10 + %27 = load ptr, ptr %14, align 8, !noalias !10 + call void @llvm.experimental.noalias.scope.decl(metadata !13) + store ptr %23, ptr %11, align 8, !noalias !13 + store ptr %27, ptr %12, align 8, !noalias !13 + %28 = load ptr, ptr %12, align 8, !noalias !13 + store ptr %23, ptr %9, align 8 + store ptr %28, ptr %10, align 8 + %29 = load ptr, ptr %9, align 8 + %30 = load ptr, ptr %10, align 8 + store ptr %29, ptr %7, align 8 + store ptr %30, ptr %8, align 8 + %31 = load ptr, ptr %7, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 1 dereferenceable(1) %23) #10 + store ptr %23, ptr %15, align 8 + %32 = load ptr, ptr %15, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %32) #10 + %33 = load i64, ptr %18, align 8 + %34 = load i64, ptr %20, align 8 + %35 = add i64 %33, %34 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %35) + to label %36 unwind label %46 + +36: ; preds = %6 + %37 = load ptr, ptr %17, align 8 + %38 = load i64, ptr %18, align 8 + %39 = invoke noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %37, i64 noundef %38) + to label %40 unwind label %46 + +40: ; preds = %36 + %41 = load ptr, ptr %19, align 8 + %42 = load i64, ptr %20, align 8 + %43 = invoke noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %41, i64 noundef %42) + to label %44 unwind label %46 + +44: ; preds = %40 + store i1 true, ptr %22, align 1 + %45 = load i1, ptr %22, align 1 + br i1 %45, label %51, label %50 + +46: ; preds = %40, %36, %6 + %47 = landingpad { ptr, i32 } + cleanup + %48 = extractvalue { ptr, i32 } %47, 0 + store ptr %48, ptr %24, align 8 + %49 = extractvalue { ptr, i32 } %47, 1 + store i32 %49, ptr %25, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #10 + br label %52 + +50: ; preds = %44 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #10 + br label %51 + +51: ; preds = %50, %44 + ret void + +52: ; preds = %46 + %53 = load ptr, ptr %24, align 8 + %54 = load i32, ptr %25, align 4 + %55 = insertvalue { ptr, i32 } poison, ptr %53, 0 + %56 = insertvalue { ptr, i32 } %55, i32 %54, 1 + resume { ptr, i32 } %56 +} + +; Function Attrs: nounwind +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE5c_strEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 + +; Function Attrs: nounwind +declare void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13get_allocatorEv(ptr sret(%"class.std::allocator") align 1, ptr noundef nonnull align 8 dereferenceable(32)) #1 + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS3_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #3 + +declare noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef, i64 noundef) #3 + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #3 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef, ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #3 + +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #6 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %0) #7 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call i64 @strlen(ptr noundef %3) #10 + ret i64 %4 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca i64, align 8 + %15 = alloca %struct._Guard, align 8 + %16 = alloca ptr, align 8 + %17 = alloca i32, align 4 + store ptr %0, ptr %11, align 8 + store ptr %1, ptr %12, align 8 + store ptr %2, ptr %13, align 8 + %18 = load ptr, ptr %11, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %13, align 8 + store ptr %19, ptr %8, align 8 + store ptr %20, ptr %9, align 8 + %21 = load ptr, ptr %8, align 8 + %22 = load ptr, ptr %9, align 8 + store ptr %8, ptr %4, align 8 + store ptr %21, ptr %5, align 8 + store ptr %22, ptr %6, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %5, align 8 + %25 = ptrtoint ptr %23 to i64 + %26 = ptrtoint ptr %24 to i64 + %27 = sub i64 %25, %26 + store i64 %27, ptr %14, align 8 + %28 = load i64, ptr %14, align 8 + %29 = icmp ugt i64 %28, 15 + br i1 %29, label %30, label %33 + +30: ; preds = %3 + %31 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef nonnull align 8 dereferenceable(8) %14, i64 noundef 0) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef %31) + %32 = load i64, ptr %14, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %32) + br label %40 + +33: ; preds = %3 + store ptr %18, ptr %7, align 8 + %34 = load ptr, ptr %7, align 8 + %35 = invoke noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %34) + to label %39 unwind label %36 + +36: ; preds = %33 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #12 + unreachable + +39: ; preds = %33 + br label %40 + +40: ; preds = %39, %30 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef %18) + %41 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %18) + to label %42 unwind label %48 + +42: ; preds = %40 + %43 = load ptr, ptr %12, align 8 + %44 = load ptr, ptr %13, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %41, ptr noundef %43, ptr noundef %44) #10 + %45 = getelementptr inbounds %struct._Guard, ptr %15, i32 0, i32 0 + store ptr null, ptr %45, align 8 + %46 = load i64, ptr %14, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %46) + to label %47 unwind label %48 + +47: ; preds = %42 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #10 + ret void + +48: ; preds = %42, %40 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %16, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %17, align 4 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #10 + br label %52 + +52: ; preds = %48 + %53 = load ptr, ptr %16, align 8 + %54 = load i32, ptr %17, align 4 + %55 = insertvalue { ptr, i32 } poison, ptr %53, 0 + %56 = insertvalue { ptr, i32 } %55, i32 %54, 1 + resume { ptr, i32 } %56 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #10 + ret void +} + +; Function Attrs: nounwind +declare i64 @strlen(ptr noundef) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #3 + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #3 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #3 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %struct._Guard, ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #1 + +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #3 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #3 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = icmp ne ptr %5, null + br i1 %6, label %7, label %11 + +7: ; preds = %1 + %8 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %9) + to label %10 unwind label %12 + +10: ; preds = %7 + br label %11 + +11: ; preds = %10, %1 + ret void + +12: ; preds = %7 + %13 = landingpad { ptr, i32 } + catch ptr null + %14 = extractvalue { ptr, i32 } %13, 0 + call void @__clang_call_terminate(ptr %14) #12 + unreachable +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #8 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #10 + call void @_ZSt9terminatev() #12 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #3 + +; Function Attrs: nocallback nofree nosync nounwind willreturn memory(inaccessiblemem: readwrite) +declare void @llvm.experimental.noalias.scope.decl(metadata) #9 + +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 = { 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 #2 = { 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 #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 = { 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 = { 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 = { 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 #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 = { noinline noreturn 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 = { nocallback nofree nosync nounwind willreturn memory(inaccessiblemem: readwrite) } +attributes #10 = { nounwind } +attributes #11 = { noreturn } +attributes #12 = { noreturn nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = !{!11} +!11 = distinct !{!11, !12, !"_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_: argument 0"} +!12 = distinct !{!12, !"_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_"} +!13 = !{!14} +!14 = distinct !{!14, !15, !"_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_: argument 0"} +!15 = distinct !{!15, !"_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/kmp-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/kmp-algorithm.ll new file mode 100644 index 000000000..44644f10c --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/kmp-algorithm.ll @@ -0,0 +1,290 @@ +; ModuleID = 'PE-benchmarks/kmp-algorithm.cpp' +source_filename = "PE-benchmarks/kmp-algorithm.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +@.str = private unnamed_addr constant [27 x i8] c"Found pattern at index %d \00", align 1 +@__const.main.txt = private unnamed_addr constant [20 x i8] c"ABABDABACDABABCABAB\00", align 16 +@__const.main.pat = private unnamed_addr constant [10 x i8] c"ABABCABAB\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9KMPSearchPcS_(ptr noundef %0, ptr noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %11 = load ptr, ptr %3, align 8 + %12 = call i64 @strlen(ptr noundef %11) #7 + %13 = trunc i64 %12 to i32 + store i32 %13, ptr %5, align 4 + %14 = load ptr, ptr %4, align 8 + %15 = call i64 @strlen(ptr noundef %14) #7 + %16 = trunc i64 %15 to i32 + store i32 %16, ptr %6, align 4 + %17 = load i32, ptr %5, align 4 + %18 = zext i32 %17 to i64 + %19 = call ptr @llvm.stacksave() + store ptr %19, ptr %7, align 8 + %20 = alloca i32, i64 %18, align 16 + store i64 %18, ptr %8, align 8 + %21 = load ptr, ptr %3, align 8 + %22 = load i32, ptr %5, align 4 + call void @_Z15computeLPSArrayPciPi(ptr noundef %21, i32 noundef %22, ptr noundef %20) + store i32 0, ptr %9, align 4 + store i32 0, ptr %10, align 4 + br label %23 + +23: ; preds = %92, %2 + %24 = load i32, ptr %9, align 4 + %25 = load i32, ptr %6, align 4 + %26 = icmp slt i32 %24, %25 + br i1 %26, label %27, label %93 + +27: ; preds = %23 + %28 = load ptr, ptr %3, align 8 + %29 = load i32, ptr %10, align 4 + %30 = sext i32 %29 to i64 + %31 = getelementptr inbounds i8, ptr %28, i64 %30 + %32 = load i8, ptr %31, align 1 + %33 = sext i8 %32 to i32 + %34 = load ptr, ptr %4, align 8 + %35 = load i32, ptr %9, align 4 + %36 = sext i32 %35 to i64 + %37 = getelementptr inbounds i8, ptr %34, i64 %36 + %38 = load i8, ptr %37, align 1 + %39 = sext i8 %38 to i32 + %40 = icmp eq i32 %33, %39 + br i1 %40, label %41, label %46 + +41: ; preds = %27 + %42 = load i32, ptr %10, align 4 + %43 = add nsw i32 %42, 1 + store i32 %43, ptr %10, align 4 + %44 = load i32, ptr %9, align 4 + %45 = add nsw i32 %44, 1 + store i32 %45, ptr %9, align 4 + br label %46 + +46: ; preds = %41, %27 + %47 = load i32, ptr %10, align 4 + %48 = load i32, ptr %5, align 4 + %49 = icmp eq i32 %47, %48 + br i1 %49, label %50, label %60 + +50: ; preds = %46 + %51 = load i32, ptr %9, align 4 + %52 = load i32, ptr %10, align 4 + %53 = sub nsw i32 %51, %52 + %54 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %53) + %55 = load i32, ptr %10, align 4 + %56 = sub nsw i32 %55, 1 + %57 = sext i32 %56 to i64 + %58 = getelementptr inbounds i32, ptr %20, i64 %57 + %59 = load i32, ptr %58, align 4 + store i32 %59, ptr %10, align 4 + br label %92 + +60: ; preds = %46 + %61 = load i32, ptr %9, align 4 + %62 = load i32, ptr %6, align 4 + %63 = icmp slt i32 %61, %62 + br i1 %63, label %64, label %91 + +64: ; preds = %60 + %65 = load ptr, ptr %3, align 8 + %66 = load i32, ptr %10, align 4 + %67 = sext i32 %66 to i64 + %68 = getelementptr inbounds i8, ptr %65, i64 %67 + %69 = load i8, ptr %68, align 1 + %70 = sext i8 %69 to i32 + %71 = load ptr, ptr %4, align 8 + %72 = load i32, ptr %9, align 4 + %73 = sext i32 %72 to i64 + %74 = getelementptr inbounds i8, ptr %71, i64 %73 + %75 = load i8, ptr %74, align 1 + %76 = sext i8 %75 to i32 + %77 = icmp ne i32 %70, %76 + br i1 %77, label %78, label %91 + +78: ; preds = %64 + %79 = load i32, ptr %10, align 4 + %80 = icmp ne i32 %79, 0 + br i1 %80, label %81, label %87 + +81: ; preds = %78 + %82 = load i32, ptr %10, align 4 + %83 = sub nsw i32 %82, 1 + %84 = sext i32 %83 to i64 + %85 = getelementptr inbounds i32, ptr %20, i64 %84 + %86 = load i32, ptr %85, align 4 + store i32 %86, ptr %10, align 4 + br label %90 + +87: ; preds = %78 + %88 = load i32, ptr %9, align 4 + %89 = add nsw i32 %88, 1 + store i32 %89, ptr %9, align 4 + br label %90 + +90: ; preds = %87, %81 + br label %91 + +91: ; preds = %90, %64, %60 + br label %92 + +92: ; preds = %91, %50 + br label %23, !llvm.loop !6 + +93: ; preds = %23 + %94 = load ptr, ptr %7, align 8 + call void @llvm.stackrestore(ptr %94) + ret void +} + +; Function Attrs: nounwind willreturn memory(read) +declare i64 @strlen(ptr noundef) #1 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z15computeLPSArrayPciPi(ptr noundef %0, i32 noundef %1, ptr noundef %2) #3 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store ptr %2, ptr %6, align 8 + store i32 0, ptr %7, align 4 + %9 = load ptr, ptr %6, align 8 + %10 = getelementptr inbounds i32, ptr %9, i64 0 + store i32 0, ptr %10, align 4 + store i32 1, ptr %8, align 4 + br label %11 + +11: ; preds = %57, %3 + %12 = load i32, ptr %8, align 4 + %13 = load i32, ptr %5, align 4 + %14 = icmp slt i32 %12, %13 + br i1 %14, label %15, label %58 + +15: ; preds = %11 + %16 = load ptr, ptr %4, align 8 + %17 = load i32, ptr %8, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds i8, ptr %16, i64 %18 + %20 = load i8, ptr %19, align 1 + %21 = sext i8 %20 to i32 + %22 = load ptr, ptr %4, align 8 + %23 = load i32, ptr %7, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds i8, ptr %22, i64 %24 + %26 = load i8, ptr %25, align 1 + %27 = sext i8 %26 to i32 + %28 = icmp eq i32 %21, %27 + br i1 %28, label %29, label %39 + +29: ; preds = %15 + %30 = load i32, ptr %7, align 4 + %31 = add nsw i32 %30, 1 + store i32 %31, ptr %7, align 4 + %32 = load i32, ptr %7, align 4 + %33 = load ptr, ptr %6, align 8 + %34 = load i32, ptr %8, align 4 + %35 = sext i32 %34 to i64 + %36 = getelementptr inbounds i32, ptr %33, i64 %35 + store i32 %32, ptr %36, align 4 + %37 = load i32, ptr %8, align 4 + %38 = add nsw i32 %37, 1 + store i32 %38, ptr %8, align 4 + br label %57 + +39: ; preds = %15 + %40 = load i32, ptr %7, align 4 + %41 = icmp ne i32 %40, 0 + br i1 %41, label %42, label %49 + +42: ; preds = %39 + %43 = load ptr, ptr %6, align 8 + %44 = load i32, ptr %7, align 4 + %45 = sub nsw i32 %44, 1 + %46 = sext i32 %45 to i64 + %47 = getelementptr inbounds i32, ptr %43, i64 %46 + %48 = load i32, ptr %47, align 4 + store i32 %48, ptr %7, align 4 + br label %56 + +49: ; preds = %39 + %50 = load ptr, ptr %6, align 8 + %51 = load i32, ptr %8, align 4 + %52 = sext i32 %51 to i64 + %53 = getelementptr inbounds i32, ptr %50, i64 %52 + store i32 0, ptr %53, align 4 + %54 = load i32, ptr %8, align 4 + %55 = add nsw i32 %54, 1 + store i32 %55, ptr %8, align 4 + br label %56 + +56: ; preds = %49, %42 + br label %57 + +57: ; preds = %56, %29 + br label %11, !llvm.loop !8 + +58: ; preds = %11 + ret void +} + +declare i32 @printf(ptr noundef, ...) #4 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #5 { + %1 = alloca i32, align 4 + %2 = alloca [20 x i8], align 16 + %3 = alloca [10 x i8], align 1 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.txt, i64 20, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %3, ptr align 1 @__const.main.pat, i64 10, i1 false) + %4 = getelementptr inbounds [10 x i8], ptr %3, i64 0, i64 0 + %5 = getelementptr inbounds [20 x i8], ptr %2, i64 0, i64 0 + call void @_Z9KMPSearchPcS_(ptr noundef %4, ptr noundef %5) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 + +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 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-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 = { nocallback nofree nosync nounwind willreturn } +attributes #3 = { 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #7 = { nounwind willreturn memory(read) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll new file mode 100644 index 000000000..50515b85b --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll @@ -0,0 +1,292 @@ +; ModuleID = 'PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp' +source_filename = "PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__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 global %"class.std::basic_ostream", align 8 +@.str = private unnamed_addr constant [26 x i8] c"K'th smallest element is \00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z11kthSmallestPiiii(ptr noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #0 { + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + store ptr %0, ptr %6, align 8 + store i32 %1, ptr %7, align 4 + store i32 %2, ptr %8, align 4 + store i32 %3, ptr %9, align 4 + %11 = load i32, ptr %9, align 4 + %12 = icmp sgt i32 %11, 0 + br i1 %12, label %13, label %63 + +13: ; preds = %4 + %14 = load i32, ptr %9, align 4 + %15 = load i32, ptr %8, align 4 + %16 = load i32, ptr %7, align 4 + %17 = sub nsw i32 %15, %16 + %18 = add nsw i32 %17, 1 + %19 = icmp sle i32 %14, %18 + br i1 %19, label %20, label %63 + +20: ; preds = %13 + %21 = load ptr, ptr %6, align 8 + %22 = load i32, ptr %7, align 4 + %23 = load i32, ptr %8, align 4 + %24 = call noundef i32 @_Z15randomPartitionPiii(ptr noundef %21, i32 noundef %22, i32 noundef %23) + store i32 %24, ptr %10, align 4 + %25 = load i32, ptr %10, align 4 + %26 = load i32, ptr %7, align 4 + %27 = sub nsw i32 %25, %26 + %28 = load i32, ptr %9, align 4 + %29 = sub nsw i32 %28, 1 + %30 = icmp eq i32 %27, %29 + br i1 %30, label %31, label %37 + +31: ; preds = %20 + %32 = load ptr, ptr %6, align 8 + %33 = load i32, ptr %10, align 4 + %34 = sext i32 %33 to i64 + %35 = getelementptr inbounds i32, ptr %32, i64 %34 + %36 = load i32, ptr %35, align 4 + store i32 %36, ptr %5, align 4 + br label %64 + +37: ; preds = %20 + %38 = load i32, ptr %10, align 4 + %39 = load i32, ptr %7, align 4 + %40 = sub nsw i32 %38, %39 + %41 = load i32, ptr %9, align 4 + %42 = sub nsw i32 %41, 1 + %43 = icmp sgt i32 %40, %42 + br i1 %43, label %44, label %51 + +44: ; preds = %37 + %45 = load ptr, ptr %6, align 8 + %46 = load i32, ptr %7, align 4 + %47 = load i32, ptr %10, align 4 + %48 = sub nsw i32 %47, 1 + %49 = load i32, ptr %9, align 4 + %50 = call noundef i32 @_Z11kthSmallestPiiii(ptr noundef %45, i32 noundef %46, i32 noundef %48, i32 noundef %49) + store i32 %50, ptr %5, align 4 + br label %64 + +51: ; preds = %37 + %52 = load ptr, ptr %6, align 8 + %53 = load i32, ptr %10, align 4 + %54 = add nsw i32 %53, 1 + %55 = load i32, ptr %8, align 4 + %56 = load i32, ptr %9, align 4 + %57 = load i32, ptr %10, align 4 + %58 = sub nsw i32 %56, %57 + %59 = load i32, ptr %7, align 4 + %60 = add nsw i32 %58, %59 + %61 = sub nsw i32 %60, 1 + %62 = call noundef i32 @_Z11kthSmallestPiiii(ptr noundef %52, i32 noundef %54, i32 noundef %55, i32 noundef %61) + store i32 %62, ptr %5, align 4 + br label %64 + +63: ; preds = %13, %4 + store i32 2147483647, ptr %5, align 4 + br label %64 + +64: ; preds = %63, %51, %44, %31 + %65 = load i32, ptr %5, align 4 + ret i32 %65 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z15randomPartitionPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #1 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %9 = load i32, ptr %6, align 4 + %10 = load i32, ptr %5, align 4 + %11 = sub nsw i32 %9, %10 + %12 = add nsw i32 %11, 1 + store i32 %12, ptr %7, align 4 + %13 = call i32 @rand() #6 + %14 = load i32, ptr %7, align 4 + %15 = srem i32 %13, %14 + store i32 %15, ptr %8, align 4 + %16 = load ptr, ptr %4, align 8 + %17 = load i32, ptr %5, align 4 + %18 = load i32, ptr %8, align 4 + %19 = add nsw i32 %17, %18 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds i32, ptr %16, i64 %20 + %22 = load ptr, ptr %4, align 8 + %23 = load i32, ptr %6, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds i32, ptr %22, i64 %24 + call void @_Z4swapPiS_(ptr noundef %21, ptr noundef %25) + %26 = load ptr, ptr %4, align 8 + %27 = load i32, ptr %5, align 4 + %28 = load i32, ptr %6, align 4 + %29 = call noundef i32 @_Z9partitionPiii(ptr noundef %26, i32 noundef %27, i32 noundef %28) + ret i32 %29 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #1 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = load i32, ptr %6, align 4 + store i32 %7, ptr %5, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = load ptr, ptr %3, align 8 + store i32 %9, ptr %10, align 4 + %11 = load i32, ptr %5, align 4 + %12 = load ptr, ptr %4, align 8 + store i32 %11, ptr %12, align 4 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9partitionPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #1 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %10 = load ptr, ptr %4, align 8 + %11 = load i32, ptr %6, align 4 + %12 = sext i32 %11 to i64 + %13 = getelementptr inbounds i32, ptr %10, i64 %12 + %14 = load i32, ptr %13, align 4 + store i32 %14, ptr %7, align 4 + %15 = load i32, ptr %5, align 4 + store i32 %15, ptr %8, align 4 + %16 = load i32, ptr %5, align 4 + store i32 %16, ptr %9, align 4 + br label %17 + +17: ; preds = %42, %3 + %18 = load i32, ptr %9, align 4 + %19 = load i32, ptr %6, align 4 + %20 = sub nsw i32 %19, 1 + %21 = icmp sle i32 %18, %20 + br i1 %21, label %22, label %45 + +22: ; preds = %17 + %23 = load ptr, ptr %4, align 8 + %24 = load i32, ptr %9, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds i32, ptr %23, i64 %25 + %27 = load i32, ptr %26, align 4 + %28 = load i32, ptr %7, align 4 + %29 = icmp sle i32 %27, %28 + br i1 %29, label %30, label %41 + +30: ; preds = %22 + %31 = load ptr, ptr %4, align 8 + %32 = load i32, ptr %8, align 4 + %33 = sext i32 %32 to i64 + %34 = getelementptr inbounds i32, ptr %31, i64 %33 + %35 = load ptr, ptr %4, align 8 + %36 = load i32, ptr %9, align 4 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds i32, ptr %35, i64 %37 + call void @_Z4swapPiS_(ptr noundef %34, ptr noundef %38) + %39 = load i32, ptr %8, align 4 + %40 = add nsw i32 %39, 1 + store i32 %40, ptr %8, align 4 + br label %41 + +41: ; preds = %30, %22 + br label %42 + +42: ; preds = %41 + %43 = load i32, ptr %9, align 4 + %44 = add nsw i32 %43, 1 + store i32 %44, ptr %9, align 4 + br label %17, !llvm.loop !6 + +45: ; preds = %17 + %46 = load ptr, ptr %4, align 8 + %47 = load i32, ptr %8, align 4 + %48 = sext i32 %47 to i64 + %49 = getelementptr inbounds i32, ptr %46, i64 %48 + %50 = load ptr, ptr %4, align 8 + %51 = load i32, ptr %6, align 4 + %52 = sext i32 %51 to i64 + %53 = getelementptr inbounds i32, ptr %50, i64 %52 + call void @_Z4swapPiS_(ptr noundef %49, ptr noundef %53) + %54 = load i32, ptr %8, align 4 + ret i32 %54 +} + +; Function Attrs: nounwind +declare i32 @rand() #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [7 x i32], align 16 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 28, i1 false) + store i32 7, ptr %3, align 4 + store i32 3, ptr %4, align 4 + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %6 = getelementptr inbounds [7 x i32], ptr %2, i64 0, i64 0 + %7 = load i32, ptr %3, align 4 + %8 = sub nsw i32 %7, 1 + %9 = load i32, ptr %4, align 4 + %10 = call noundef i32 @_Z11kthSmallestPiiii(ptr noundef %6, i32 noundef 0, i32 noundef %8, i32 noundef %9) + %11 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %5, i32 noundef %10) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll new file mode 100644 index 000000000..7d61a47fa --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll @@ -0,0 +1,1707 @@ +; ModuleID = 'PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp' +source_filename = "PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%"struct.__gnu_cxx::__ops::_Iter_less_iter" = type { i8 } +%"struct.__gnu_cxx::__ops::_Iter_less_val" = type { i8 } +%"struct.__gnu_cxx::__ops::_Val_less_iter" = type { i8 } + +$_ZSt4sortIPiEvT_S1_ = comdat any + +$_ZSt6__sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_ = comdat any + +$_ZN9__gnu_cxx5__ops16__iter_less_iterEv = comdat any + +$_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_T1_ = comdat any + +$_ZSt4__lgIlET_S0_ = comdat any + +$_ZSt22__final_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_ = comdat any + +$_ZSt14__partial_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_ = comdat any + +$_ZSt27__unguarded_partition_pivotIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_T0_ = comdat any + +$_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_ = comdat any + +$_ZSt11__sort_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_ = comdat any + +$_ZSt11__make_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_ = comdat any + +$_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_ = comdat any + +$_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_RT0_ = comdat any + +$_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_Iter_less_iterEEvT_T0_S5_T1_T2_ = comdat any + +$_ZN9__gnu_cxx5__ops14_Iter_less_valC2ENS0_15_Iter_less_iterE = comdat any + +$_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_Iter_less_valEEvT_T0_S5_T1_RT2_ = comdat any + +$_ZNK9__gnu_cxx5__ops14_Iter_less_valclIPiiEEbT_RT0_ = comdat any + +$_ZSt22__move_median_to_firstIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_S4_T0_ = comdat any + +$_ZSt21__unguarded_partitionIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_S4_T0_ = comdat any + +$_ZSt9iter_swapIPiS0_EvT_T0_ = comdat any + +$_ZSt4swapIiENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_ = comdat any + +$_ZSt11__bit_widthImEiT_ = comdat any + +$_ZSt13__countl_zeroImEiT_ = comdat any + +$_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_ = comdat any + +$_ZSt26__unguarded_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_ = comdat any + +$_ZSt13move_backwardIPiS0_ET0_T_S2_S1_ = comdat any + +$_ZSt25__unguarded_linear_insertIPiN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_ = comdat any + +$_ZN9__gnu_cxx5__ops15__val_comp_iterENS0_15_Iter_less_iterE = comdat any + +$_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_ = comdat any + +$_ZSt12__miter_baseIPiET_S1_ = comdat any + +$_ZSt12__niter_wrapIPiET_RKS1_S1_ = comdat any + +$_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_ = comdat any + +$_ZSt12__niter_baseIPiET_S1_ = comdat any + +$_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_ = comdat any + +$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiiEEPT0_PT_S6_S4_ = comdat any + +$_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneIiiEEvPT_PT0_ = comdat any + +$_ZNK9__gnu_cxx5__ops14_Val_less_iterclIiPiEEbRT_T0_ = comdat any + +@__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 global %"class.std::basic_ostream", align 8 +@.str = private unnamed_addr constant [26 x i8] c"K'th smallest element is \00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z10findMedianPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = load i32, ptr %4, align 4 + %8 = sext i32 %7 to i64 + %9 = getelementptr inbounds i32, ptr %6, i64 %8 + call void @_ZSt4sortIPiEvT_S1_(ptr noundef %5, ptr noundef %9) + %10 = load ptr, ptr %3, align 8 + %11 = load i32, ptr %4, align 4 + %12 = sdiv i32 %11, 2 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i32, ptr %10, i64 %13 + %15 = load i32, ptr %14, align 4 + ret i32 %15 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt4sortIPiEvT_S1_(ptr noundef %0, ptr noundef %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %7 = load ptr, ptr %3, align 8 + %8 = load ptr, ptr %4, align 8 + call void @_ZN9__gnu_cxx5__ops16__iter_less_iterEv() + call void @_ZSt6__sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(ptr noundef %7, ptr noundef %8) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z11kthSmallestPiiii(ptr noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #0 { + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca ptr, align 8 + %13 = alloca i64, align 8 + %14 = alloca i32, align 4 + %15 = alloca i32, align 4 + %16 = alloca i32, align 4 + store ptr %0, ptr %6, align 8 + store i32 %1, ptr %7, align 4 + store i32 %2, ptr %8, align 4 + store i32 %3, ptr %9, align 4 + %17 = load i32, ptr %9, align 4 + %18 = icmp sgt i32 %17, 0 + br i1 %18, label %19, label %142 + +19: ; preds = %4 + %20 = load i32, ptr %9, align 4 + %21 = load i32, ptr %8, align 4 + %22 = load i32, ptr %7, align 4 + %23 = sub nsw i32 %21, %22 + %24 = add nsw i32 %23, 1 + %25 = icmp sle i32 %20, %24 + br i1 %25, label %26, label %142 + +26: ; preds = %19 + %27 = load i32, ptr %8, align 4 + %28 = load i32, ptr %7, align 4 + %29 = sub nsw i32 %27, %28 + %30 = add nsw i32 %29, 1 + store i32 %30, ptr %10, align 4 + %31 = load i32, ptr %10, align 4 + %32 = add nsw i32 %31, 4 + %33 = sdiv i32 %32, 5 + %34 = zext i32 %33 to i64 + %35 = call ptr @llvm.stacksave() + store ptr %35, ptr %12, align 8 + %36 = alloca i32, i64 %34, align 16 + store i64 %34, ptr %13, align 8 + store i32 0, ptr %11, align 4 + br label %37 + +37: ; preds = %55, %26 + %38 = load i32, ptr %11, align 4 + %39 = load i32, ptr %10, align 4 + %40 = sdiv i32 %39, 5 + %41 = icmp slt i32 %38, %40 + br i1 %41, label %42, label %58 + +42: ; preds = %37 + %43 = load ptr, ptr %6, align 8 + %44 = load i32, ptr %7, align 4 + %45 = sext i32 %44 to i64 + %46 = getelementptr inbounds i32, ptr %43, i64 %45 + %47 = load i32, ptr %11, align 4 + %48 = mul nsw i32 %47, 5 + %49 = sext i32 %48 to i64 + %50 = getelementptr inbounds i32, ptr %46, i64 %49 + %51 = call noundef i32 @_Z10findMedianPii(ptr noundef %50, i32 noundef 5) + %52 = load i32, ptr %11, align 4 + %53 = sext i32 %52 to i64 + %54 = getelementptr inbounds i32, ptr %36, i64 %53 + store i32 %51, ptr %54, align 4 + br label %55 + +55: ; preds = %42 + %56 = load i32, ptr %11, align 4 + %57 = add nsw i32 %56, 1 + store i32 %57, ptr %11, align 4 + br label %37, !llvm.loop !6 + +58: ; preds = %37 + %59 = load i32, ptr %11, align 4 + %60 = mul nsw i32 %59, 5 + %61 = load i32, ptr %10, align 4 + %62 = icmp slt i32 %60, %61 + br i1 %62, label %63, label %80 + +63: ; preds = %58 + %64 = load ptr, ptr %6, align 8 + %65 = load i32, ptr %7, align 4 + %66 = sext i32 %65 to i64 + %67 = getelementptr inbounds i32, ptr %64, i64 %66 + %68 = load i32, ptr %11, align 4 + %69 = mul nsw i32 %68, 5 + %70 = sext i32 %69 to i64 + %71 = getelementptr inbounds i32, ptr %67, i64 %70 + %72 = load i32, ptr %10, align 4 + %73 = srem i32 %72, 5 + %74 = call noundef i32 @_Z10findMedianPii(ptr noundef %71, i32 noundef %73) + %75 = load i32, ptr %11, align 4 + %76 = sext i32 %75 to i64 + %77 = getelementptr inbounds i32, ptr %36, i64 %76 + store i32 %74, ptr %77, align 4 + %78 = load i32, ptr %11, align 4 + %79 = add nsw i32 %78, 1 + store i32 %79, ptr %11, align 4 + br label %80 + +80: ; preds = %63, %58 + %81 = load i32, ptr %11, align 4 + %82 = icmp eq i32 %81, 1 + br i1 %82, label %83, label %89 + +83: ; preds = %80 + %84 = load i32, ptr %11, align 4 + %85 = sub nsw i32 %84, 1 + %86 = sext i32 %85 to i64 + %87 = getelementptr inbounds i32, ptr %36, i64 %86 + %88 = load i32, ptr %87, align 4 + br label %95 + +89: ; preds = %80 + %90 = load i32, ptr %11, align 4 + %91 = sub nsw i32 %90, 1 + %92 = load i32, ptr %11, align 4 + %93 = sdiv i32 %92, 2 + %94 = call noundef i32 @_Z11kthSmallestPiiii(ptr noundef %36, i32 noundef 0, i32 noundef %91, i32 noundef %93) + br label %95 + +95: ; preds = %89, %83 + %96 = phi i32 [ %88, %83 ], [ %94, %89 ] + store i32 %96, ptr %14, align 4 + %97 = load ptr, ptr %6, align 8 + %98 = load i32, ptr %7, align 4 + %99 = load i32, ptr %8, align 4 + %100 = load i32, ptr %14, align 4 + %101 = call noundef i32 @_Z9partitionPiiii(ptr noundef %97, i32 noundef %98, i32 noundef %99, i32 noundef %100) + store i32 %101, ptr %15, align 4 + %102 = load i32, ptr %15, align 4 + %103 = load i32, ptr %7, align 4 + %104 = sub nsw i32 %102, %103 + %105 = load i32, ptr %9, align 4 + %106 = sub nsw i32 %105, 1 + %107 = icmp eq i32 %104, %106 + br i1 %107, label %108, label %114 + +108: ; preds = %95 + %109 = load ptr, ptr %6, align 8 + %110 = load i32, ptr %15, align 4 + %111 = sext i32 %110 to i64 + %112 = getelementptr inbounds i32, ptr %109, i64 %111 + %113 = load i32, ptr %112, align 4 + store i32 %113, ptr %5, align 4 + store i32 1, ptr %16, align 4 + br label %140 + +114: ; preds = %95 + %115 = load i32, ptr %15, align 4 + %116 = load i32, ptr %7, align 4 + %117 = sub nsw i32 %115, %116 + %118 = load i32, ptr %9, align 4 + %119 = sub nsw i32 %118, 1 + %120 = icmp sgt i32 %117, %119 + br i1 %120, label %121, label %128 + +121: ; preds = %114 + %122 = load ptr, ptr %6, align 8 + %123 = load i32, ptr %7, align 4 + %124 = load i32, ptr %15, align 4 + %125 = sub nsw i32 %124, 1 + %126 = load i32, ptr %9, align 4 + %127 = call noundef i32 @_Z11kthSmallestPiiii(ptr noundef %122, i32 noundef %123, i32 noundef %125, i32 noundef %126) + store i32 %127, ptr %5, align 4 + store i32 1, ptr %16, align 4 + br label %140 + +128: ; preds = %114 + %129 = load ptr, ptr %6, align 8 + %130 = load i32, ptr %15, align 4 + %131 = add nsw i32 %130, 1 + %132 = load i32, ptr %8, align 4 + %133 = load i32, ptr %9, align 4 + %134 = load i32, ptr %15, align 4 + %135 = sub nsw i32 %133, %134 + %136 = load i32, ptr %7, align 4 + %137 = add nsw i32 %135, %136 + %138 = sub nsw i32 %137, 1 + %139 = call noundef i32 @_Z11kthSmallestPiiii(ptr noundef %129, i32 noundef %131, i32 noundef %132, i32 noundef %138) + store i32 %139, ptr %5, align 4 + store i32 1, ptr %16, align 4 + br label %140 + +140: ; preds = %128, %121, %108 + %141 = load ptr, ptr %12, align 8 + call void @llvm.stackrestore(ptr %141) + br label %143 + +142: ; preds = %19, %4 + store i32 2147483647, ptr %5, align 4 + br label %143 + +143: ; preds = %142, %140 + %144 = load i32, ptr %5, align 4 + ret i32 %144 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9partitionPiiii(ptr noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #2 { + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store i32 %2, ptr %7, align 4 + store i32 %3, ptr %8, align 4 + %11 = load i32, ptr %6, align 4 + store i32 %11, ptr %9, align 4 + br label %12 + +12: ; preds = %26, %4 + %13 = load i32, ptr %9, align 4 + %14 = load i32, ptr %7, align 4 + %15 = icmp slt i32 %13, %14 + br i1 %15, label %16, label %29 + +16: ; preds = %12 + %17 = load ptr, ptr %5, align 8 + %18 = load i32, ptr %9, align 4 + %19 = sext i32 %18 to i64 + %20 = getelementptr inbounds i32, ptr %17, i64 %19 + %21 = load i32, ptr %20, align 4 + %22 = load i32, ptr %8, align 4 + %23 = icmp eq i32 %21, %22 + br i1 %23, label %24, label %25 + +24: ; preds = %16 + br label %29 + +25: ; preds = %16 + br label %26 + +26: ; preds = %25 + %27 = load i32, ptr %9, align 4 + %28 = add nsw i32 %27, 1 + store i32 %28, ptr %9, align 4 + br label %12, !llvm.loop !8 + +29: ; preds = %24, %12 + %30 = load ptr, ptr %5, align 8 + %31 = load i32, ptr %9, align 4 + %32 = sext i32 %31 to i64 + %33 = getelementptr inbounds i32, ptr %30, i64 %32 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %7, align 4 + %36 = sext i32 %35 to i64 + %37 = getelementptr inbounds i32, ptr %34, i64 %36 + call void @_Z4swapPiS_(ptr noundef %33, ptr noundef %37) + %38 = load i32, ptr %6, align 4 + store i32 %38, ptr %9, align 4 + %39 = load i32, ptr %6, align 4 + store i32 %39, ptr %10, align 4 + br label %40 + +40: ; preds = %65, %29 + %41 = load i32, ptr %10, align 4 + %42 = load i32, ptr %7, align 4 + %43 = sub nsw i32 %42, 1 + %44 = icmp sle i32 %41, %43 + br i1 %44, label %45, label %68 + +45: ; preds = %40 + %46 = load ptr, ptr %5, align 8 + %47 = load i32, ptr %10, align 4 + %48 = sext i32 %47 to i64 + %49 = getelementptr inbounds i32, ptr %46, i64 %48 + %50 = load i32, ptr %49, align 4 + %51 = load i32, ptr %8, align 4 + %52 = icmp sle i32 %50, %51 + br i1 %52, label %53, label %64 + +53: ; preds = %45 + %54 = load ptr, ptr %5, align 8 + %55 = load i32, ptr %9, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i32, ptr %54, i64 %56 + %58 = load ptr, ptr %5, align 8 + %59 = load i32, ptr %10, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds i32, ptr %58, i64 %60 + call void @_Z4swapPiS_(ptr noundef %57, ptr noundef %61) + %62 = load i32, ptr %9, align 4 + %63 = add nsw i32 %62, 1 + store i32 %63, ptr %9, align 4 + br label %64 + +64: ; preds = %53, %45 + br label %65 + +65: ; preds = %64 + %66 = load i32, ptr %10, align 4 + %67 = add nsw i32 %66, 1 + store i32 %67, ptr %10, align 4 + br label %40, !llvm.loop !9 + +68: ; preds = %40 + %69 = load ptr, ptr %5, align 8 + %70 = load i32, ptr %9, align 4 + %71 = sext i32 %70 to i64 + %72 = getelementptr inbounds i32, ptr %69, i64 %71 + %73 = load ptr, ptr %5, align 8 + %74 = load i32, ptr %7, align 4 + %75 = sext i32 %74 to i64 + %76 = getelementptr inbounds i32, ptr %73, i64 %75 + call void @_Z4swapPiS_(ptr noundef %72, ptr noundef %76) + %77 = load i32, ptr %9, align 4 + ret i32 %77 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = load i32, ptr %6, align 4 + store i32 %7, ptr %5, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = load ptr, ptr %3, align 8 + store i32 %9, ptr %10, align 4 + %11 = load i32, ptr %5, align 4 + %12 = load ptr, ptr %4, align 8 + store i32 %11, ptr %12, align 4 + ret void +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [7 x i32], align 16 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 28, i1 false) + store i32 7, ptr %3, align 4 + store i32 3, ptr %4, align 4 + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %6 = getelementptr inbounds [7 x i32], ptr %2, i64 0, i64 0 + %7 = load i32, ptr %3, align 4 + %8 = sub nsw i32 %7, 1 + %9 = load i32, ptr %4, align 4 + %10 = call noundef i32 @_Z11kthSmallestPiiii(ptr noundef %6, i32 noundef 0, i32 noundef %8, i32 noundef %9) + %11 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %5, i32 noundef %10) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt6__sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(ptr noundef %0, ptr noundef %1) #0 comdat { + %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = icmp ne ptr %8, %9 + br i1 %10, label %11, label %24 + +11: ; preds = %2 + %12 = load ptr, ptr %4, align 8 + %13 = load ptr, ptr %5, align 8 + %14 = load ptr, ptr %5, align 8 + %15 = load ptr, ptr %4, align 8 + %16 = ptrtoint ptr %14 to i64 + %17 = ptrtoint ptr %15 to i64 + %18 = sub i64 %16, %17 + %19 = sdiv exact i64 %18, 4 + %20 = call noundef i64 @_ZSt4__lgIlET_S0_(i64 noundef %19) + %21 = mul nsw i64 %20, 2 + call void @_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_T1_(ptr noundef %12, ptr noundef %13, i64 noundef %21) + %22 = load ptr, ptr %4, align 8 + %23 = load ptr, ptr %5, align 8 + call void @_ZSt22__final_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(ptr noundef %22, ptr noundef %23) + br label %24 + +24: ; preds = %11, %2 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops16__iter_less_iterEv() #2 comdat { + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_T1_(ptr noundef %0, ptr noundef %1, i64 noundef %2) #0 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store i64 %2, ptr %7, align 8 + br label %12 + +12: ; preds = %27, %3 + %13 = load ptr, ptr %6, align 8 + %14 = load ptr, ptr %5, align 8 + %15 = ptrtoint ptr %13 to i64 + %16 = ptrtoint ptr %14 to i64 + %17 = sub i64 %15, %16 + %18 = sdiv exact i64 %17, 4 + %19 = icmp sgt i64 %18, 16 + br i1 %19, label %20, label %37 + +20: ; preds = %12 + %21 = load i64, ptr %7, align 8 + %22 = icmp eq i64 %21, 0 + br i1 %22, label %23, label %27 + +23: ; preds = %20 + %24 = load ptr, ptr %5, align 8 + %25 = load ptr, ptr %6, align 8 + %26 = load ptr, ptr %6, align 8 + call void @_ZSt14__partial_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(ptr noundef %24, ptr noundef %25, ptr noundef %26) + br label %37 + +27: ; preds = %20 + %28 = load i64, ptr %7, align 8 + %29 = add nsw i64 %28, -1 + store i64 %29, ptr %7, align 8 + %30 = load ptr, ptr %5, align 8 + %31 = load ptr, ptr %6, align 8 + %32 = call noundef ptr @_ZSt27__unguarded_partition_pivotIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_T0_(ptr noundef %30, ptr noundef %31) + store ptr %32, ptr %9, align 8 + %33 = load ptr, ptr %9, align 8 + %34 = load ptr, ptr %6, align 8 + %35 = load i64, ptr %7, align 8 + call void @_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_T1_(ptr noundef %33, ptr noundef %34, i64 noundef %35) + %36 = load ptr, ptr %9, align 8 + store ptr %36, ptr %6, align 8 + br label %12, !llvm.loop !10 + +37: ; preds = %23, %12 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt4__lgIlET_S0_(i64 noundef %0) #2 comdat { + %2 = alloca i64, align 8 + store i64 %0, ptr %2, align 8 + %3 = load i64, ptr %2, align 8 + %4 = call noundef i32 @_ZSt11__bit_widthImEiT_(i64 noundef %3) #8 + %5 = sub nsw i32 %4, 1 + %6 = sext i32 %5 to i64 + ret i64 %6 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(ptr noundef %0, ptr noundef %1) #0 comdat { + %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = ptrtoint ptr %9 to i64 + %12 = ptrtoint ptr %10 to i64 + %13 = sub i64 %11, %12 + %14 = sdiv exact i64 %13, 4 + %15 = icmp sgt i64 %14, 16 + br i1 %15, label %16, label %23 + +16: ; preds = %2 + %17 = load ptr, ptr %4, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = getelementptr inbounds i32, ptr %18, i64 16 + call void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(ptr noundef %17, ptr noundef %19) + %20 = load ptr, ptr %4, align 8 + %21 = getelementptr inbounds i32, ptr %20, i64 16 + %22 = load ptr, ptr %5, align 8 + call void @_ZSt26__unguarded_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(ptr noundef %21, ptr noundef %22) + br label %26 + +23: ; preds = %2 + %24 = load ptr, ptr %4, align 8 + %25 = load ptr, ptr %5, align 8 + call void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(ptr noundef %24, ptr noundef %25) + br label %26 + +26: ; preds = %23, %16 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt14__partial_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = load ptr, ptr %7, align 8 + call void @_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(ptr noundef %9, ptr noundef %10, ptr noundef %11) + %12 = load ptr, ptr %5, align 8 + %13 = load ptr, ptr %6, align 8 + call void @_ZSt11__sort_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_(ptr noundef %12, ptr noundef %13, ptr noundef nonnull align 1 dereferenceable(1) %4) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt27__unguarded_partition_pivotIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_T0_(ptr noundef %0, ptr noundef %1) #0 comdat { + %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = load ptr, ptr %5, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = ptrtoint ptr %10 to i64 + %13 = ptrtoint ptr %11 to i64 + %14 = sub i64 %12, %13 + %15 = sdiv exact i64 %14, 4 + %16 = sdiv i64 %15, 2 + %17 = getelementptr inbounds i32, ptr %9, i64 %16 + store ptr %17, ptr %6, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load ptr, ptr %4, align 8 + %20 = getelementptr inbounds i32, ptr %19, i64 1 + %21 = load ptr, ptr %6, align 8 + %22 = load ptr, ptr %5, align 8 + %23 = getelementptr inbounds i32, ptr %22, i64 -1 + call void @_ZSt22__move_median_to_firstIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_S4_T0_(ptr noundef %18, ptr noundef %20, ptr noundef %21, ptr noundef %23) + %24 = load ptr, ptr %4, align 8 + %25 = getelementptr inbounds i32, ptr %24, i64 1 + %26 = load ptr, ptr %5, align 8 + %27 = load ptr, ptr %4, align 8 + %28 = call noundef ptr @_ZSt21__unguarded_partitionIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_S4_T0_(ptr noundef %25, ptr noundef %26, ptr noundef %27) + ret ptr %28 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + call void @_ZSt11__make_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_(ptr noundef %9, ptr noundef %10, ptr noundef nonnull align 1 dereferenceable(1) %4) + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %8, align 8 + br label %12 + +12: ; preds = %25, %3 + %13 = load ptr, ptr %8, align 8 + %14 = load ptr, ptr %7, align 8 + %15 = icmp ult ptr %13, %14 + br i1 %15, label %16, label %28 + +16: ; preds = %12 + %17 = load ptr, ptr %8, align 8 + %18 = load ptr, ptr %5, align 8 + %19 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %4, ptr noundef %17, ptr noundef %18) + br i1 %19, label %20, label %24 + +20: ; preds = %16 + %21 = load ptr, ptr %5, align 8 + %22 = load ptr, ptr %6, align 8 + %23 = load ptr, ptr %8, align 8 + call void @_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_RT0_(ptr noundef %21, ptr noundef %22, ptr noundef %23, ptr noundef nonnull align 1 dereferenceable(1) %4) + br label %24 + +24: ; preds = %20, %16 + br label %25 + +25: ; preds = %24 + %26 = load ptr, ptr %8, align 8 + %27 = getelementptr inbounds i32, ptr %26, i32 1 + store ptr %27, ptr %8, align 8 + br label %12, !llvm.loop !11 + +28: ; preds = %12 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__sort_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_(ptr noundef %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + br label %7 + +7: ; preds = %15, %3 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 4 + %14 = icmp sgt i64 %13, 1 + br i1 %14, label %15, label %22 + +15: ; preds = %7 + %16 = load ptr, ptr %5, align 8 + %17 = getelementptr inbounds i32, ptr %16, i32 -1 + store ptr %17, ptr %5, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load ptr, ptr %5, align 8 + %20 = load ptr, ptr %5, align 8 + %21 = load ptr, ptr %6, align 8 + call void @_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_RT0_(ptr noundef %18, ptr noundef %19, ptr noundef %20, ptr noundef nonnull align 1 dereferenceable(1) %21) + br label %7, !llvm.loop !12 + +22: ; preds = %7 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__make_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_(ptr noundef %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca i32, align 4 + %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %5, align 8 + %12 = load ptr, ptr %4, align 8 + %13 = ptrtoint ptr %11 to i64 + %14 = ptrtoint ptr %12 to i64 + %15 = sub i64 %13, %14 + %16 = sdiv exact i64 %15, 4 + %17 = icmp slt i64 %16, 2 + br i1 %17, label %18, label %19 + +18: ; preds = %3 + br label %45 + +19: ; preds = %3 + %20 = load ptr, ptr %5, align 8 + %21 = load ptr, ptr %4, align 8 + %22 = ptrtoint ptr %20 to i64 + %23 = ptrtoint ptr %21 to i64 + %24 = sub i64 %22, %23 + %25 = sdiv exact i64 %24, 4 + store i64 %25, ptr %7, align 8 + %26 = load i64, ptr %7, align 8 + %27 = sub nsw i64 %26, 2 + %28 = sdiv i64 %27, 2 + store i64 %28, ptr %8, align 8 + br label %29 + +29: ; preds = %19, %42 + %30 = load ptr, ptr %4, align 8 + %31 = load i64, ptr %8, align 8 + %32 = getelementptr inbounds i32, ptr %30, i64 %31 + %33 = load i32, ptr %32, align 4 + store i32 %33, ptr %9, align 4 + %34 = load ptr, ptr %4, align 8 + %35 = load i64, ptr %8, align 8 + %36 = load i64, ptr %7, align 8 + %37 = load i32, ptr %9, align 4 + %38 = load ptr, ptr %6, align 8 + call void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_Iter_less_iterEEvT_T0_S5_T1_T2_(ptr noundef %34, i64 noundef %35, i64 noundef %36, i32 noundef %37) + %39 = load i64, ptr %8, align 8 + %40 = icmp eq i64 %39, 0 + br i1 %40, label %41, label %42 + +41: ; preds = %29 + br label %45 + +42: ; preds = %29 + %43 = load i64, ptr %8, align 8 + %44 = add nsw i64 %43, -1 + store i64 %44, ptr %8, align 8 + br label %29, !llvm.loop !13 + +45: ; preds = %41, %18 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i32, ptr %8, align 4 + %10 = load ptr, ptr %6, align 8 + %11 = load i32, ptr %10, align 4 + %12 = icmp slt i32 %9, %11 + ret i1 %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_RT0_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #0 comdat { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %11 = load ptr, ptr %7, align 8 + %12 = load i32, ptr %11, align 4 + store i32 %12, ptr %9, align 4 + %13 = load ptr, ptr %5, align 8 + %14 = load i32, ptr %13, align 4 + %15 = load ptr, ptr %7, align 8 + store i32 %14, ptr %15, align 4 + %16 = load ptr, ptr %5, align 8 + %17 = load ptr, ptr %6, align 8 + %18 = load ptr, ptr %5, align 8 + %19 = ptrtoint ptr %17 to i64 + %20 = ptrtoint ptr %18 to i64 + %21 = sub i64 %19, %20 + %22 = sdiv exact i64 %21, 4 + %23 = load i32, ptr %9, align 4 + %24 = load ptr, ptr %8, align 8 + call void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_Iter_less_iterEEvT_T0_S5_T1_T2_(ptr noundef %16, i64 noundef 0, i64 noundef %22, i32 noundef %23) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_Iter_less_iterEEvT_T0_S5_T1_T2_(ptr noundef %0, i64 noundef %1, i64 noundef %2, i32 noundef %3) #0 comdat { + %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca i32, align 4 + %10 = alloca i64, align 8 + %11 = alloca i64, align 8 + %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_val", align 1 + %13 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + store ptr %0, ptr %6, align 8 + store i64 %1, ptr %7, align 8 + store i64 %2, ptr %8, align 8 + store i32 %3, ptr %9, align 4 + %14 = load i64, ptr %7, align 8 + store i64 %14, ptr %10, align 8 + %15 = load i64, ptr %7, align 8 + store i64 %15, ptr %11, align 8 + br label %16 + +16: ; preds = %37, %4 + %17 = load i64, ptr %11, align 8 + %18 = load i64, ptr %8, align 8 + %19 = sub nsw i64 %18, 1 + %20 = sdiv i64 %19, 2 + %21 = icmp slt i64 %17, %20 + br i1 %21, label %22, label %46 + +22: ; preds = %16 + %23 = load i64, ptr %11, align 8 + %24 = add nsw i64 %23, 1 + %25 = mul nsw i64 2, %24 + store i64 %25, ptr %11, align 8 + %26 = load ptr, ptr %6, align 8 + %27 = load i64, ptr %11, align 8 + %28 = getelementptr inbounds i32, ptr %26, i64 %27 + %29 = load ptr, ptr %6, align 8 + %30 = load i64, ptr %11, align 8 + %31 = sub nsw i64 %30, 1 + %32 = getelementptr inbounds i32, ptr %29, i64 %31 + %33 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %28, ptr noundef %32) + br i1 %33, label %34, label %37 + +34: ; preds = %22 + %35 = load i64, ptr %11, align 8 + %36 = add nsw i64 %35, -1 + store i64 %36, ptr %11, align 8 + br label %37 + +37: ; preds = %34, %22 + %38 = load ptr, ptr %6, align 8 + %39 = load i64, ptr %11, align 8 + %40 = getelementptr inbounds i32, ptr %38, i64 %39 + %41 = load i32, ptr %40, align 4 + %42 = load ptr, ptr %6, align 8 + %43 = load i64, ptr %7, align 8 + %44 = getelementptr inbounds i32, ptr %42, i64 %43 + store i32 %41, ptr %44, align 4 + %45 = load i64, ptr %11, align 8 + store i64 %45, ptr %7, align 8 + br label %16, !llvm.loop !14 + +46: ; preds = %16 + %47 = load i64, ptr %8, align 8 + %48 = and i64 %47, 1 + %49 = icmp eq i64 %48, 0 + br i1 %49, label %50, label %70 + +50: ; preds = %46 + %51 = load i64, ptr %11, align 8 + %52 = load i64, ptr %8, align 8 + %53 = sub nsw i64 %52, 2 + %54 = sdiv i64 %53, 2 + %55 = icmp eq i64 %51, %54 + br i1 %55, label %56, label %70 + +56: ; preds = %50 + %57 = load i64, ptr %11, align 8 + %58 = add nsw i64 %57, 1 + %59 = mul nsw i64 2, %58 + store i64 %59, ptr %11, align 8 + %60 = load ptr, ptr %6, align 8 + %61 = load i64, ptr %11, align 8 + %62 = sub nsw i64 %61, 1 + %63 = getelementptr inbounds i32, ptr %60, i64 %62 + %64 = load i32, ptr %63, align 4 + %65 = load ptr, ptr %6, align 8 + %66 = load i64, ptr %7, align 8 + %67 = getelementptr inbounds i32, ptr %65, i64 %66 + store i32 %64, ptr %67, align 4 + %68 = load i64, ptr %11, align 8 + %69 = sub nsw i64 %68, 1 + store i64 %69, ptr %7, align 8 + br label %70 + +70: ; preds = %56, %50, %46 + call void @_ZN9__gnu_cxx5__ops14_Iter_less_valC2ENS0_15_Iter_less_iterE(ptr noundef nonnull align 1 dereferenceable(1) %12) + %71 = load ptr, ptr %6, align 8 + %72 = load i64, ptr %7, align 8 + %73 = load i64, ptr %10, align 8 + %74 = load i32, ptr %9, align 4 + call void @_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_Iter_less_valEEvT_T0_S5_T1_RT2_(ptr noundef %71, i64 noundef %72, i64 noundef %73, i32 noundef %74, ptr noundef nonnull align 1 dereferenceable(1) %12) + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_less_valC2ENS0_15_Iter_less_iterE(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_Iter_less_valEEvT_T0_S5_T1_RT2_(ptr noundef %0, i64 noundef %1, i64 noundef %2, i32 noundef %3, ptr noundef nonnull align 1 dereferenceable(1) %4) #0 comdat { + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca i32, align 4 + %10 = alloca ptr, align 8 + %11 = alloca i64, align 8 + store ptr %0, ptr %6, align 8 + store i64 %1, ptr %7, align 8 + store i64 %2, ptr %8, align 8 + store i32 %3, ptr %9, align 4 + store ptr %4, ptr %10, align 8 + %12 = load i64, ptr %7, align 8 + %13 = sub nsw i64 %12, 1 + %14 = sdiv i64 %13, 2 + store i64 %14, ptr %11, align 8 + br label %15 + +15: ; preds = %27, %5 + %16 = load i64, ptr %7, align 8 + %17 = load i64, ptr %8, align 8 + %18 = icmp sgt i64 %16, %17 + br i1 %18, label %19, label %25 + +19: ; preds = %15 + %20 = load ptr, ptr %10, align 8 + %21 = load ptr, ptr %6, align 8 + %22 = load i64, ptr %11, align 8 + %23 = getelementptr inbounds i32, ptr %21, i64 %22 + %24 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops14_Iter_less_valclIPiiEEbT_RT0_(ptr noundef nonnull align 1 dereferenceable(1) %20, ptr noundef %23, ptr noundef nonnull align 4 dereferenceable(4) %9) + br label %25 + +25: ; preds = %19, %15 + %26 = phi i1 [ false, %15 ], [ %24, %19 ] + br i1 %26, label %27, label %39 + +27: ; preds = %25 + %28 = load ptr, ptr %6, align 8 + %29 = load i64, ptr %11, align 8 + %30 = getelementptr inbounds i32, ptr %28, i64 %29 + %31 = load i32, ptr %30, align 4 + %32 = load ptr, ptr %6, align 8 + %33 = load i64, ptr %7, align 8 + %34 = getelementptr inbounds i32, ptr %32, i64 %33 + store i32 %31, ptr %34, align 4 + %35 = load i64, ptr %11, align 8 + store i64 %35, ptr %7, align 8 + %36 = load i64, ptr %7, align 8 + %37 = sub nsw i64 %36, 1 + %38 = sdiv i64 %37, 2 + store i64 %38, ptr %11, align 8 + br label %15, !llvm.loop !15 + +39: ; preds = %25 + %40 = load i32, ptr %9, align 4 + %41 = load ptr, ptr %6, align 8 + %42 = load i64, ptr %7, align 8 + %43 = getelementptr inbounds i32, ptr %41, i64 %42 + store i32 %40, ptr %43, align 4 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNK9__gnu_cxx5__ops14_Iter_less_valclIPiiEEbT_RT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i32, ptr %8, align 4 + %10 = load ptr, ptr %6, align 8 + %11 = load i32, ptr %10, align 4 + %12 = icmp slt i32 %9, %11 + ret i1 %12 +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef %3) #0 comdat { + %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + store ptr %2, ptr %8, align 8 + store ptr %3, ptr %9, align 8 + %10 = load ptr, ptr %7, align 8 + %11 = load ptr, ptr %8, align 8 + %12 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %10, ptr noundef %11) + br i1 %12, label %13, label %32 + +13: ; preds = %4 + %14 = load ptr, ptr %8, align 8 + %15 = load ptr, ptr %9, align 8 + %16 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %14, ptr noundef %15) + br i1 %16, label %17, label %20 + +17: ; preds = %13 + %18 = load ptr, ptr %6, align 8 + %19 = load ptr, ptr %8, align 8 + call void @_ZSt9iter_swapIPiS0_EvT_T0_(ptr noundef %18, ptr noundef %19) + br label %31 + +20: ; preds = %13 + %21 = load ptr, ptr %7, align 8 + %22 = load ptr, ptr %9, align 8 + %23 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %21, ptr noundef %22) + br i1 %23, label %24, label %27 + +24: ; preds = %20 + %25 = load ptr, ptr %6, align 8 + %26 = load ptr, ptr %9, align 8 + call void @_ZSt9iter_swapIPiS0_EvT_T0_(ptr noundef %25, ptr noundef %26) + br label %30 + +27: ; preds = %20 + %28 = load ptr, ptr %6, align 8 + %29 = load ptr, ptr %7, align 8 + call void @_ZSt9iter_swapIPiS0_EvT_T0_(ptr noundef %28, ptr noundef %29) + br label %30 + +30: ; preds = %27, %24 + br label %31 + +31: ; preds = %30, %17 + br label %51 + +32: ; preds = %4 + %33 = load ptr, ptr %7, align 8 + %34 = load ptr, ptr %9, align 8 + %35 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %33, ptr noundef %34) + br i1 %35, label %36, label %39 + +36: ; preds = %32 + %37 = load ptr, ptr %6, align 8 + %38 = load ptr, ptr %7, align 8 + call void @_ZSt9iter_swapIPiS0_EvT_T0_(ptr noundef %37, ptr noundef %38) + br label %50 + +39: ; preds = %32 + %40 = load ptr, ptr %8, align 8 + %41 = load ptr, ptr %9, align 8 + %42 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %40, ptr noundef %41) + br i1 %42, label %43, label %46 + +43: ; preds = %39 + %44 = load ptr, ptr %6, align 8 + %45 = load ptr, ptr %9, align 8 + call void @_ZSt9iter_swapIPiS0_EvT_T0_(ptr noundef %44, ptr noundef %45) + br label %49 + +46: ; preds = %39 + %47 = load ptr, ptr %6, align 8 + %48 = load ptr, ptr %8, align 8 + call void @_ZSt9iter_swapIPiS0_EvT_T0_(ptr noundef %47, ptr noundef %48) + br label %49 + +49: ; preds = %46, %43 + br label %50 + +50: ; preds = %49, %36 + br label %51 + +51: ; preds = %50, %31 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt21__unguarded_partitionIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_S4_T0_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + br label %8 + +8: ; preds = %3, %32 + br label %9 + +9: ; preds = %13, %8 + %10 = load ptr, ptr %5, align 8 + %11 = load ptr, ptr %7, align 8 + %12 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %4, ptr noundef %10, ptr noundef %11) + br i1 %12, label %13, label %16 + +13: ; preds = %9 + %14 = load ptr, ptr %5, align 8 + %15 = getelementptr inbounds i32, ptr %14, i32 1 + store ptr %15, ptr %5, align 8 + br label %9, !llvm.loop !16 + +16: ; preds = %9 + %17 = load ptr, ptr %6, align 8 + %18 = getelementptr inbounds i32, ptr %17, i32 -1 + store ptr %18, ptr %6, align 8 + br label %19 + +19: ; preds = %23, %16 + %20 = load ptr, ptr %7, align 8 + %21 = load ptr, ptr %6, align 8 + %22 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %4, ptr noundef %20, ptr noundef %21) + br i1 %22, label %23, label %26 + +23: ; preds = %19 + %24 = load ptr, ptr %6, align 8 + %25 = getelementptr inbounds i32, ptr %24, i32 -1 + store ptr %25, ptr %6, align 8 + br label %19, !llvm.loop !17 + +26: ; preds = %19 + %27 = load ptr, ptr %5, align 8 + %28 = load ptr, ptr %6, align 8 + %29 = icmp ult ptr %27, %28 + br i1 %29, label %32, label %30 + +30: ; preds = %26 + %31 = load ptr, ptr %5, align 8 + ret ptr %31 + +32: ; preds = %26 + %33 = load ptr, ptr %5, align 8 + %34 = load ptr, ptr %6, align 8 + call void @_ZSt9iter_swapIPiS0_EvT_T0_(ptr noundef %33, ptr noundef %34) + %35 = load ptr, ptr %5, align 8 + %36 = getelementptr inbounds i32, ptr %35, i32 1 + store ptr %36, ptr %5, align 8 + br label %8, !llvm.loop !18 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZSt9iter_swapIPiS0_EvT_T0_(ptr noundef %0, ptr noundef %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load ptr, ptr %4, align 8 + call void @_ZSt4swapIiENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_(ptr noundef nonnull align 4 dereferenceable(4) %5, ptr noundef nonnull align 4 dereferenceable(4) %6) #8 + ret void +} + +; 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_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = load i32, ptr %6, align 4 + store i32 %7, ptr %5, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = load ptr, ptr %3, align 8 + store i32 %9, ptr %10, align 4 + %11 = load i32, ptr %5, align 4 + %12 = load ptr, ptr %4, align 8 + store i32 %11, ptr %12, align 4 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32 @_ZSt11__bit_widthImEiT_(i64 noundef %0) #2 comdat { + %2 = alloca i64, align 8 + %3 = alloca i32, align 4 + store i64 %0, ptr %2, align 8 + store i32 64, ptr %3, align 4 + %4 = load i64, ptr %2, align 8 + %5 = call noundef i32 @_ZSt13__countl_zeroImEiT_(i64 noundef %4) #8 + %6 = sub nsw i32 64, %5 + ret i32 %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32 @_ZSt13__countl_zeroImEiT_(i64 noundef %0) #2 comdat { + %2 = alloca i32, align 4 + %3 = alloca i64, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store i64 %0, ptr %3, align 8 + store i32 64, ptr %4, align 4 + %9 = load i64, ptr %3, align 8 + %10 = icmp eq i64 %9, 0 + br i1 %10, label %11, label %12 + +11: ; preds = %1 + store i32 64, ptr %2, align 4 + br label %17 + +12: ; preds = %1 + store i32 64, ptr %5, align 4 + store i32 64, ptr %6, align 4 + store i32 32, ptr %7, align 4 + store i32 0, ptr %8, align 4 + %13 = load i64, ptr %3, align 8 + %14 = call i64 @llvm.ctlz.i64(i64 %13, i1 true) + %15 = trunc i64 %14 to i32 + %16 = sub nsw i32 %15, 0 + store i32 %16, ptr %2, align 4 + br label %17 + +17: ; preds = %12, %11 + %18 = load i32, ptr %2, align 4 + ret i32 %18 +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare i64 @llvm.ctlz.i64(i64, i1 immarg) #7 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(ptr noundef %0, ptr noundef %1) #0 comdat { + %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 + %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %10 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = load ptr, ptr %5, align 8 + %13 = icmp eq ptr %11, %12 + br i1 %13, label %14, label %15 + +14: ; preds = %2 + br label %42 + +15: ; preds = %2 + %16 = load ptr, ptr %4, align 8 + %17 = getelementptr inbounds i32, ptr %16, i64 1 + store ptr %17, ptr %6, align 8 + br label %18 + +18: ; preds = %39, %15 + %19 = load ptr, ptr %6, align 8 + %20 = load ptr, ptr %5, align 8 + %21 = icmp ne ptr %19, %20 + br i1 %21, label %22, label %42 + +22: ; preds = %18 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %4, align 8 + %25 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %3, ptr noundef %23, ptr noundef %24) + br i1 %25, label %26, label %36 + +26: ; preds = %22 + %27 = load ptr, ptr %6, align 8 + %28 = load i32, ptr %27, align 4 + store i32 %28, ptr %7, align 4 + %29 = load ptr, ptr %4, align 8 + %30 = load ptr, ptr %6, align 8 + %31 = load ptr, ptr %6, align 8 + %32 = getelementptr inbounds i32, ptr %31, i64 1 + %33 = call noundef ptr @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_(ptr noundef %29, ptr noundef %30, ptr noundef %32) + %34 = load i32, ptr %7, align 4 + %35 = load ptr, ptr %4, align 8 + store i32 %34, ptr %35, align 4 + br label %38 + +36: ; preds = %22 + %37 = load ptr, ptr %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_(ptr noundef %37) + br label %38 + +38: ; preds = %36, %26 + br label %39 + +39: ; preds = %38 + %40 = load ptr, ptr %6, align 8 + %41 = getelementptr inbounds i32, ptr %40, i32 1 + store ptr %41, ptr %6, align 8 + br label %18, !llvm.loop !19 + +42: ; preds = %14, %18 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt26__unguarded_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(ptr noundef %0, ptr noundef %1) #0 comdat { + %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 + %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + %9 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %10 = load ptr, ptr %4, align 8 + store ptr %10, ptr %6, align 8 + br label %11 + +11: ; preds = %17, %2 + %12 = load ptr, ptr %6, align 8 + %13 = load ptr, ptr %5, align 8 + %14 = icmp ne ptr %12, %13 + br i1 %14, label %15, label %20 + +15: ; preds = %11 + %16 = load ptr, ptr %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_(ptr noundef %16) + br label %17 + +17: ; preds = %15 + %18 = load ptr, ptr %6, align 8 + %19 = getelementptr inbounds i32, ptr %18, i32 1 + store ptr %19, ptr %6, align 8 + br label %11, !llvm.loop !20 + +20: ; preds = %11 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPiET_S1_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPiET_S1_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIPiN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_(ptr noundef %0) #0 comdat { + %2 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = load i32, ptr %6, align 4 + store i32 %7, ptr %4, align 4 + %8 = load ptr, ptr %3, align 8 + store ptr %8, ptr %5, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = getelementptr inbounds i32, ptr %9, i32 -1 + store ptr %10, ptr %5, align 8 + br label %11 + +11: ; preds = %14, %1 + %12 = load ptr, ptr %5, align 8 + %13 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops14_Val_less_iterclIiPiEEbRT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %2, ptr noundef nonnull align 4 dereferenceable(4) %4, ptr noundef %12) + br i1 %13, label %14, label %21 + +14: ; preds = %11 + %15 = load ptr, ptr %5, align 8 + %16 = load i32, ptr %15, align 4 + %17 = load ptr, ptr %3, align 8 + store i32 %16, ptr %17, align 4 + %18 = load ptr, ptr %5, align 8 + store ptr %18, ptr %3, align 8 + %19 = load ptr, ptr %5, align 8 + %20 = getelementptr inbounds i32, ptr %19, i32 -1 + store ptr %20, ptr %5, align 8 + br label %11, !llvm.loop !21 + +21: ; preds = %11 + %22 = load i32, ptr %4, align 4 + %23 = load ptr, ptr %3, align 8 + store i32 %22, ptr %23, align 4 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15__val_comp_iterENS0_15_Iter_less_iterE() #2 comdat { + %1 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %7) #8 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %9) #8 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %11) #8 + %13 = call noundef ptr @_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPiET_RKS1_S1_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPiET_S1_(ptr noundef %0) #2 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPiET_RKS1_S1_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %0) #2 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiiEEPT0_PT_S6_S4_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiiEEPT0_PT_S6_S4_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 4 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %24 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load i64, ptr %7, align 8 + %19 = sub i64 0, %18 + %20 = getelementptr inbounds i32, ptr %17, i64 %19 + %21 = load ptr, ptr %4, align 8 + %22 = load i64, ptr %7, align 8 + %23 = mul i64 4, %22 + call void @llvm.memmove.p0.p0.i64(ptr align 4 %20, ptr align 4 %21, i64 %23, i1 false) + br label %32 + +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 + +27: ; preds = %24 + %28 = load ptr, ptr %6, align 8 + %29 = getelementptr inbounds i32, ptr %28, i64 -1 + %30 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneIiiEEvPT_PT0_(ptr noundef %29, ptr noundef %30) + br label %31 + +31: ; preds = %27, %24 + br label %32 + +32: ; preds = %31, %16 + %33 = load ptr, ptr %6, align 8 + %34 = load i64, ptr %7, align 8 + %35 = sub i64 0, %34 + %36 = getelementptr inbounds i32, ptr %33, i64 %35 + ret ptr %36 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memmove.p0.p0.i64(ptr nocapture writeonly, ptr nocapture readonly, i64, i1 immarg) #4 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneIiiEEvPT_PT0_(ptr noundef %0, ptr noundef %1) #2 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = load i32, ptr %5, align 4 + %7 = load ptr, ptr %3, align 8 + store i32 %6, ptr %7, align 4 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNK9__gnu_cxx5__ops14_Val_less_iterclIiPiEEbRT_T0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 4 dereferenceable(4) %1, ptr noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i32, ptr %8, align 4 + %10 = load ptr, ptr %6, align 8 + %11 = load i32, ptr %10, align 4 + %12 = icmp slt i32 %9, %11 + ret i1 %12 +} + +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 = { nocallback nofree nosync nounwind willreturn } +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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 = { 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +attributes #8 = { nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/largest-independent-set-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/largest-independent-set-problem.ll new file mode 100644 index 000000000..4bc7b7e32 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/largest-independent-set-problem.ll @@ -0,0 +1,280 @@ +; ModuleID = 'PE-benchmarks/largest-independent-set-problem.cpp' +source_filename = "PE-benchmarks/largest-independent-set-problem.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.node = type { i32, i32, ptr, ptr } + +@_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 + +; 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, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %5 = load i32, ptr %3, align 4 + %6 = load i32, ptr %4, align 4 + %7 = icmp sgt i32 %5, %6 + br i1 %7, label %8, label %10 + +8: ; preds = %2 + %9 = load i32, ptr %3, align 4 + br label %12 + +10: ; preds = %2 + %11 = load i32, ptr %4, align 4 + br label %12 + +12: ; preds = %10, %8 + %13 = phi i32 [ %9, %8 ], [ %11, %10 ] + ret i32 %13 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z4LISSP4node(ptr noundef %0) #1 { + %2 = alloca i32, align 4 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = icmp eq ptr %6, null + br i1 %7, label %8, label %9 + +8: ; preds = %1 + store i32 0, ptr %2, align 4 + br label %91 + +9: ; preds = %1 + %10 = load ptr, ptr %3, align 8 + %11 = getelementptr inbounds %class.node, ptr %10, i32 0, i32 1 + %12 = load i32, ptr %11, align 4 + %13 = icmp ne i32 %12, 0 + br i1 %13, label %14, label %18 + +14: ; preds = %9 + %15 = load ptr, ptr %3, align 8 + %16 = getelementptr inbounds %class.node, ptr %15, i32 0, i32 1 + %17 = load i32, ptr %16, align 4 + store i32 %17, ptr %2, align 4 + br label %91 + +18: ; preds = %9 + %19 = load ptr, ptr %3, align 8 + %20 = getelementptr inbounds %class.node, ptr %19, i32 0, i32 2 + %21 = load ptr, ptr %20, align 8 + %22 = icmp eq ptr %21, null + br i1 %22, label %23, label %31 + +23: ; preds = %18 + %24 = load ptr, ptr %3, align 8 + %25 = getelementptr inbounds %class.node, ptr %24, i32 0, i32 3 + %26 = load ptr, ptr %25, align 8 + %27 = icmp eq ptr %26, null + br i1 %27, label %28, label %31 + +28: ; preds = %23 + %29 = load ptr, ptr %3, align 8 + %30 = getelementptr inbounds %class.node, ptr %29, i32 0, i32 1 + store i32 1, ptr %30, align 4 + store i32 1, ptr %2, align 4 + br label %91 + +31: ; preds = %23, %18 + %32 = load ptr, ptr %3, align 8 + %33 = getelementptr inbounds %class.node, ptr %32, i32 0, i32 2 + %34 = load ptr, ptr %33, align 8 + %35 = call noundef i32 @_Z4LISSP4node(ptr noundef %34) + %36 = load ptr, ptr %3, align 8 + %37 = getelementptr inbounds %class.node, ptr %36, i32 0, i32 3 + %38 = load ptr, ptr %37, align 8 + %39 = call noundef i32 @_Z4LISSP4node(ptr noundef %38) + %40 = add nsw i32 %35, %39 + store i32 %40, ptr %4, align 4 + store i32 1, ptr %5, align 4 + %41 = load ptr, ptr %3, align 8 + %42 = getelementptr inbounds %class.node, ptr %41, i32 0, i32 2 + %43 = load ptr, ptr %42, align 8 + %44 = icmp ne ptr %43, null + br i1 %44, label %45, label %61 + +45: ; preds = %31 + %46 = load ptr, ptr %3, align 8 + %47 = getelementptr inbounds %class.node, ptr %46, i32 0, i32 2 + %48 = load ptr, ptr %47, align 8 + %49 = getelementptr inbounds %class.node, ptr %48, i32 0, i32 2 + %50 = load ptr, ptr %49, align 8 + %51 = call noundef i32 @_Z4LISSP4node(ptr noundef %50) + %52 = load ptr, ptr %3, align 8 + %53 = getelementptr inbounds %class.node, ptr %52, i32 0, i32 2 + %54 = load ptr, ptr %53, align 8 + %55 = getelementptr inbounds %class.node, ptr %54, i32 0, i32 3 + %56 = load ptr, ptr %55, align 8 + %57 = call noundef i32 @_Z4LISSP4node(ptr noundef %56) + %58 = add nsw i32 %51, %57 + %59 = load i32, ptr %5, align 4 + %60 = add nsw i32 %59, %58 + store i32 %60, ptr %5, align 4 + br label %61 + +61: ; preds = %45, %31 + %62 = load ptr, ptr %3, align 8 + %63 = getelementptr inbounds %class.node, ptr %62, i32 0, i32 3 + %64 = load ptr, ptr %63, align 8 + %65 = icmp ne ptr %64, null + br i1 %65, label %66, label %82 + +66: ; preds = %61 + %67 = load ptr, ptr %3, align 8 + %68 = getelementptr inbounds %class.node, ptr %67, i32 0, i32 3 + %69 = load ptr, ptr %68, align 8 + %70 = getelementptr inbounds %class.node, ptr %69, i32 0, i32 2 + %71 = load ptr, ptr %70, align 8 + %72 = call noundef i32 @_Z4LISSP4node(ptr noundef %71) + %73 = load ptr, ptr %3, align 8 + %74 = getelementptr inbounds %class.node, ptr %73, i32 0, i32 3 + %75 = load ptr, ptr %74, align 8 + %76 = getelementptr inbounds %class.node, ptr %75, i32 0, i32 3 + %77 = load ptr, ptr %76, align 8 + %78 = call noundef i32 @_Z4LISSP4node(ptr noundef %77) + %79 = add nsw i32 %72, %78 + %80 = load i32, ptr %5, align 4 + %81 = add nsw i32 %80, %79 + store i32 %81, ptr %5, align 4 + br label %82 + +82: ; preds = %66, %61 + %83 = load i32, ptr %5, align 4 + %84 = load i32, ptr %4, align 4 + %85 = call noundef i32 @_Z3maxii(i32 noundef %83, i32 noundef %84) + %86 = load ptr, ptr %3, align 8 + %87 = getelementptr inbounds %class.node, ptr %86, i32 0, i32 1 + store i32 %85, ptr %87, align 4 + %88 = load ptr, ptr %3, align 8 + %89 = getelementptr inbounds %class.node, ptr %88, i32 0, i32 1 + %90 = load i32, ptr %89, align 4 + store i32 %90, ptr %2, align 4 + br label %91 + +91: ; preds = %82, %28, %14, %8 + %92 = load i32, ptr %2, align 4 + ret i32 %92 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef ptr @_Z7newNodei(i32 noundef %0) #1 { + %2 = alloca i32, align 4 + %3 = alloca ptr, align 8 + store i32 %0, ptr %2, align 4 + %4 = call noalias noundef nonnull ptr @_Znwm(i64 noundef 24) #6 + call void @llvm.memset.p0.i64(ptr align 16 %4, i8 0, i64 24, i1 false) + store ptr %4, ptr %3, align 8 + %5 = load i32, ptr %2, align 4 + %6 = load ptr, ptr %3, align 8 + %7 = getelementptr inbounds %class.node, ptr %6, i32 0, i32 0 + store i32 %5, ptr %7, align 8 + %8 = load ptr, ptr %3, align 8 + %9 = getelementptr inbounds %class.node, ptr %8, i32 0, i32 3 + store ptr null, ptr %9, align 8 + %10 = load ptr, ptr %3, align 8 + %11 = getelementptr inbounds %class.node, ptr %10, i32 0, i32 2 + store ptr null, ptr %11, align 8 + %12 = load ptr, ptr %3, align 8 + %13 = getelementptr inbounds %class.node, ptr %12, i32 0, i32 1 + store i32 0, ptr %13, align 4 + %14 = load ptr, ptr %3, align 8 + ret ptr %14 +} + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #3 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { + %1 = alloca i32, align 4 + %2 = alloca ptr, align 8 + store i32 0, ptr %1, align 4 + %3 = call noundef ptr @_Z7newNodei(i32 noundef 20) + store ptr %3, ptr %2, align 8 + %4 = call noundef ptr @_Z7newNodei(i32 noundef 8) + %5 = load ptr, ptr %2, align 8 + %6 = getelementptr inbounds %class.node, ptr %5, i32 0, i32 2 + store ptr %4, ptr %6, align 8 + %7 = call noundef ptr @_Z7newNodei(i32 noundef 4) + %8 = load ptr, ptr %2, align 8 + %9 = getelementptr inbounds %class.node, ptr %8, i32 0, i32 2 + %10 = load ptr, ptr %9, align 8 + %11 = getelementptr inbounds %class.node, ptr %10, i32 0, i32 2 + store ptr %7, ptr %11, align 8 + %12 = call noundef ptr @_Z7newNodei(i32 noundef 12) + %13 = load ptr, ptr %2, align 8 + %14 = getelementptr inbounds %class.node, ptr %13, i32 0, i32 2 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %class.node, ptr %15, i32 0, i32 3 + store ptr %12, ptr %16, align 8 + %17 = call noundef ptr @_Z7newNodei(i32 noundef 10) + %18 = load ptr, ptr %2, align 8 + %19 = getelementptr inbounds %class.node, ptr %18, i32 0, i32 2 + %20 = load ptr, ptr %19, align 8 + %21 = getelementptr inbounds %class.node, ptr %20, i32 0, i32 3 + %22 = load ptr, ptr %21, align 8 + %23 = getelementptr inbounds %class.node, ptr %22, i32 0, i32 2 + store ptr %17, ptr %23, align 8 + %24 = call noundef ptr @_Z7newNodei(i32 noundef 14) + %25 = load ptr, ptr %2, align 8 + %26 = getelementptr inbounds %class.node, ptr %25, i32 0, i32 2 + %27 = load ptr, ptr %26, align 8 + %28 = getelementptr inbounds %class.node, ptr %27, i32 0, i32 3 + %29 = load ptr, ptr %28, align 8 + %30 = getelementptr inbounds %class.node, ptr %29, i32 0, i32 3 + store ptr %24, ptr %30, align 8 + %31 = call noundef ptr @_Z7newNodei(i32 noundef 22) + %32 = load ptr, ptr %2, align 8 + %33 = getelementptr inbounds %class.node, ptr %32, i32 0, i32 3 + store ptr %31, ptr %33, align 8 + %34 = call noundef ptr @_Z7newNodei(i32 noundef 25) + %35 = load ptr, ptr %2, align 8 + %36 = getelementptr inbounds %class.node, ptr %35, i32 0, i32 3 + %37 = load ptr, ptr %36, align 8 + %38 = getelementptr inbounds %class.node, ptr %37, i32 0, i32 3 + store ptr %34, ptr %38, align 8 + %39 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %40 = load ptr, ptr %2, align 8 + %41 = call noundef i32 @_Z4LISSP4node(ptr noundef %40) + %42 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %39, i32 noundef %41) + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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 = { "frame-pointer"="all" "no-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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/largest-sum-contiguous-subarray.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/largest-sum-contiguous-subarray.ll new file mode 100644 index 000000000..99e99a041 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/largest-sum-contiguous-subarray.ll @@ -0,0 +1,153 @@ +; ModuleID = 'PE-benchmarks/largest-sum-contiguous-subarray.cpp' +source_filename = "PE-benchmarks/largest-sum-contiguous-subarray.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 +@__const.main.a = private unnamed_addr constant [8 x i32] [i32 -2, i32 -3, i32 4, i32 -1, i32 -2, i32 1, i32 5, i32 -3], align 16 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z14maxSubArraySumPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + store i32 -2147483648, ptr %5, align 4 + store i32 0, ptr %6, align 4 + store i32 0, ptr %7, align 4 + store i32 0, ptr %8, align 4 + store i32 0, ptr %9, align 4 + store i32 0, ptr %10, align 4 + br label %11 + +11: ; preds = %37, %2 + %12 = load i32, ptr %10, align 4 + %13 = load i32, ptr %4, align 4 + %14 = icmp slt i32 %12, %13 + br i1 %14, label %15, label %40 + +15: ; preds = %11 + %16 = load ptr, ptr %3, align 8 + %17 = load i32, ptr %10, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds i32, ptr %16, i64 %18 + %20 = load i32, ptr %19, align 4 + %21 = load i32, ptr %6, align 4 + %22 = add nsw i32 %21, %20 + store i32 %22, ptr %6, align 4 + %23 = load i32, ptr %5, align 4 + %24 = load i32, ptr %6, align 4 + %25 = icmp slt i32 %23, %24 + br i1 %25, label %26, label %30 + +26: ; preds = %15 + %27 = load i32, ptr %6, align 4 + store i32 %27, ptr %5, align 4 + %28 = load i32, ptr %9, align 4 + store i32 %28, ptr %7, align 4 + %29 = load i32, ptr %10, align 4 + store i32 %29, ptr %8, align 4 + br label %30 + +30: ; preds = %26, %15 + %31 = load i32, ptr %6, align 4 + %32 = icmp slt i32 %31, 0 + br i1 %32, label %33, label %36 + +33: ; preds = %30 + store i32 0, ptr %6, align 4 + %34 = load i32, ptr %10, align 4 + %35 = add nsw i32 %34, 1 + store i32 %35, ptr %9, align 4 + br label %36 + +36: ; preds = %33, %30 + br label %37 + +37: ; preds = %36 + %38 = load i32, ptr %10, align 4 + %39 = add nsw i32 %38, 1 + store i32 %39, ptr %10, align 4 + br label %11, !llvm.loop !6 + +40: ; preds = %11 + %41 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %42 = load i32, ptr %5, align 4 + %43 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %41, i32 noundef %42) + %44 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %43, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %45 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + %46 = load i32, ptr %7, align 4 + %47 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %45, i32 noundef %46) + %48 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %47, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %49 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %48, ptr noundef @.str.2) + %50 = load i32, ptr %8, align 4 + %51 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %49, i32 noundef %50) + %52 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %51, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + call void @llvm.trap() + unreachable +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #1 + +; Function Attrs: cold noreturn nounwind +declare void @llvm.trap() #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [8 x i32], align 16 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.a, i64 32, i1 false) + store i32 8, ptr %3, align 4 + %5 = getelementptr inbounds [8 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + %7 = call noundef i32 @_Z14maxSubArraySumPii(ptr noundef %5, i32 noundef %6) + store i32 %7, ptr %4, align 4 + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +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 = { cold noreturn nounwind } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/lexicographic-rank-of-a-string.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/lexicographic-rank-of-a-string.ll new file mode 100644 index 000000000..fe124664c --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/lexicographic-rank-of-a-string.ll @@ -0,0 +1,196 @@ +; ModuleID = 'PE-benchmarks/lexicographic-rank-of-a-string.cpp' +source_filename = "PE-benchmarks/lexicographic-rank-of-a-string.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__const.main.str = private unnamed_addr constant [7 x i8] c"string\00", align 1 +@_ZSt4cout = external global %"class.std::basic_ostream", align 8 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z4facti(i32 noundef %0) #0 { + %2 = alloca i32, align 4 + store i32 %0, ptr %2, align 4 + %3 = load i32, ptr %2, align 4 + %4 = icmp sle i32 %3, 1 + br i1 %4, label %5, label %6 + +5: ; preds = %1 + br label %12 + +6: ; preds = %1 + %7 = load i32, ptr %2, align 4 + %8 = load i32, ptr %2, align 4 + %9 = sub nsw i32 %8, 1 + %10 = call noundef i32 @_Z4facti(i32 noundef %9) + %11 = mul nsw i32 %7, %10 + br label %12 + +12: ; preds = %6, %5 + %13 = phi i32 [ 1, %5 ], [ %11, %6 ] + ret i32 %13 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z18findSmallerInRightPcii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #1 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + store i32 0, ptr %7, align 4 + %9 = load i32, ptr %5, align 4 + %10 = add nsw i32 %9, 1 + store i32 %10, ptr %8, align 4 + br label %11 + +11: ; preds = %33, %3 + %12 = load i32, ptr %8, align 4 + %13 = load i32, ptr %6, align 4 + %14 = icmp sle i32 %12, %13 + br i1 %14, label %15, label %36 + +15: ; preds = %11 + %16 = load ptr, ptr %4, align 8 + %17 = load i32, ptr %8, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds i8, ptr %16, i64 %18 + %20 = load i8, ptr %19, align 1 + %21 = sext i8 %20 to i32 + %22 = load ptr, ptr %4, align 8 + %23 = load i32, ptr %5, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds i8, ptr %22, i64 %24 + %26 = load i8, ptr %25, align 1 + %27 = sext i8 %26 to i32 + %28 = icmp slt i32 %21, %27 + br i1 %28, label %29, label %32 + +29: ; preds = %15 + %30 = load i32, ptr %7, align 4 + %31 = add nsw i32 %30, 1 + store i32 %31, ptr %7, align 4 + br label %32 + +32: ; preds = %29, %15 + br label %33 + +33: ; preds = %32 + %34 = load i32, ptr %8, align 4 + %35 = add nsw i32 %34, 1 + store i32 %35, ptr %8, align 4 + br label %11, !llvm.loop !6 + +36: ; preds = %11 + %37 = load i32, ptr %7, align 4 + ret i32 %37 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z8findRankPc(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %8 = load ptr, ptr %2, align 8 + %9 = call i64 @strlen(ptr noundef %8) #6 + %10 = trunc i64 %9 to i32 + store i32 %10, ptr %3, align 4 + %11 = load i32, ptr %3, align 4 + %12 = call noundef i32 @_Z4facti(i32 noundef %11) + store i32 %12, ptr %4, align 4 + store i32 1, ptr %5, align 4 + store i32 0, ptr %7, align 4 + br label %13 + +13: ; preds = %33, %1 + %14 = load i32, ptr %7, align 4 + %15 = load i32, ptr %3, align 4 + %16 = icmp slt i32 %14, %15 + br i1 %16, label %17, label %36 + +17: ; preds = %13 + %18 = load i32, ptr %3, align 4 + %19 = load i32, ptr %7, align 4 + %20 = sub nsw i32 %18, %19 + %21 = load i32, ptr %4, align 4 + %22 = sdiv i32 %21, %20 + store i32 %22, ptr %4, align 4 + %23 = load ptr, ptr %2, align 8 + %24 = load i32, ptr %7, align 4 + %25 = load i32, ptr %3, align 4 + %26 = sub nsw i32 %25, 1 + %27 = call noundef i32 @_Z18findSmallerInRightPcii(ptr noundef %23, i32 noundef %24, i32 noundef %26) + store i32 %27, ptr %6, align 4 + %28 = load i32, ptr %6, align 4 + %29 = load i32, ptr %4, align 4 + %30 = mul nsw i32 %28, %29 + %31 = load i32, ptr %5, align 4 + %32 = add nsw i32 %31, %30 + store i32 %32, ptr %5, align 4 + br label %33 + +33: ; preds = %17 + %34 = load i32, ptr %7, align 4 + %35 = add nsw i32 %34, 1 + store i32 %35, ptr %7, align 4 + br label %13, !llvm.loop !8 + +36: ; preds = %13 + %37 = load i32, ptr %5, align 4 + ret i32 %37 +} + +; Function Attrs: nounwind willreturn memory(read) +declare i64 @strlen(ptr noundef) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [7 x i8], align 1 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %2, ptr align 1 @__const.main.str, i64 7, i1 false) + %3 = getelementptr inbounds [7 x i8], ptr %2, i64 0, i64 0 + %4 = call noundef i32 @_Z8findRankPc(ptr noundef %3) + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %4) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +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 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 willreturn memory(read) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/little-and-big-endian-mystery.ll similarity index 65% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/little-and-big-endian-mystery.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/little-and-big-endian-mystery.ll index bb82b1ca9..f09b1afeb 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/little-and-big-endian-mystery.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/little-and-big-endian-mystery.ll @@ -7,53 +7,52 @@ target triple = "x86_64-pc-linux-gnu" @.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 +define dso_local void @_Z12show_mem_repPci(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, 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 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + store i32 0, ptr %5, align 4 br label %6 6: ; preds = %18, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 + %7 = load i32, ptr %5, align 4 + %8 = load i32, ptr %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 + %11 = load ptr, ptr %3, align 8 + %12 = load i32, ptr %5, align 4 %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i8, i8* %11, i64 %13 - %15 = load i8, i8* %14, align 1 + %14 = getelementptr inbounds i8, ptr %11, i64 %13 + %15 = load i8, ptr %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) + %17 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %16) br label %18 18: ; preds = %10 - %19 = load i32, i32* %5, align 4 + %19 = load i32, ptr %5, align 4 %20 = add nsw i32 %19, 1 - store i32 %20, i32* %5, align 4 + store i32 %20, ptr %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)) + %22 = call i32 (ptr, ...) @printf(ptr noundef @.str.1) ret void } -declare i32 @printf(i8* noundef, ...) #1 +declare i32 @printf(ptr 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() + store i32 0, ptr %1, align 4 + store i32 19088743, ptr %2, align 4 + call void @_Z12show_mem_repPci(ptr noundef %2, i32 noundef 4) + %3 = call i32 @getchar() ret i32 0 } @@ -67,10 +66,10 @@ attributes #2 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{i32 7, !"PIC Level", i32 2} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-bitonic-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-bitonic-subsequence.ll new file mode 100644 index 000000000..9aafa8032 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-bitonic-subsequence.ll @@ -0,0 +1,364 @@ +; ModuleID = 'PE-benchmarks/longest-bitonic-subsequence.cpp' +source_filename = "PE-benchmarks/longest-bitonic-subsequence.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +@__const.main.arr = private unnamed_addr constant [16 x i32] [i32 0, i32 8, i32 4, i32 12, i32 2, i32 10, i32 6, i32 14, i32 1, i32 9, i32 5, i32 13, i32 3, i32 11, i32 7, i32 15], align 16 +@.str = private unnamed_addr constant [21 x i8] c"Length of LBS is %d\0A\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z3lbsPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %10 = load i32, ptr %4, align 4 + %11 = sext i32 %10 to i64 + %12 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %11, i64 4) + %13 = extractvalue { i64, i1 } %12, 1 + %14 = extractvalue { i64, i1 } %12, 0 + %15 = select i1 %13, i64 -1, i64 %14 + %16 = call noalias noundef nonnull ptr @_Znam(i64 noundef %15) #6 + store ptr %16, ptr %7, align 8 + store i32 0, ptr %5, align 4 + br label %17 + +17: ; preds = %26, %2 + %18 = load i32, ptr %5, align 4 + %19 = load i32, ptr %4, align 4 + %20 = icmp slt i32 %18, %19 + br i1 %20, label %21, label %29 + +21: ; preds = %17 + %22 = load ptr, ptr %7, align 8 + %23 = load i32, ptr %5, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds i32, ptr %22, i64 %24 + store i32 1, ptr %25, align 4 + br label %26 + +26: ; preds = %21 + %27 = load i32, ptr %5, align 4 + %28 = add nsw i32 %27, 1 + store i32 %28, ptr %5, align 4 + br label %17, !llvm.loop !6 + +29: ; preds = %17 + store i32 1, ptr %5, align 4 + br label %30 + +30: ; preds = %80, %29 + %31 = load i32, ptr %5, align 4 + %32 = load i32, ptr %4, align 4 + %33 = icmp slt i32 %31, %32 + br i1 %33, label %34, label %83 + +34: ; preds = %30 + store i32 0, ptr %6, align 4 + br label %35 + +35: ; preds = %76, %34 + %36 = load i32, ptr %6, align 4 + %37 = load i32, ptr %5, align 4 + %38 = icmp slt i32 %36, %37 + br i1 %38, label %39, label %79 + +39: ; preds = %35 + %40 = load ptr, ptr %3, align 8 + %41 = load i32, ptr %5, align 4 + %42 = sext i32 %41 to i64 + %43 = getelementptr inbounds i32, ptr %40, i64 %42 + %44 = load i32, ptr %43, align 4 + %45 = load ptr, ptr %3, align 8 + %46 = load i32, ptr %6, align 4 + %47 = sext i32 %46 to i64 + %48 = getelementptr inbounds i32, ptr %45, i64 %47 + %49 = load i32, ptr %48, align 4 + %50 = icmp sgt i32 %44, %49 + br i1 %50, label %51, label %75 + +51: ; preds = %39 + %52 = load ptr, ptr %7, align 8 + %53 = load i32, ptr %5, align 4 + %54 = sext i32 %53 to i64 + %55 = getelementptr inbounds i32, ptr %52, i64 %54 + %56 = load i32, ptr %55, align 4 + %57 = load ptr, ptr %7, align 8 + %58 = load i32, ptr %6, align 4 + %59 = sext i32 %58 to i64 + %60 = getelementptr inbounds i32, ptr %57, i64 %59 + %61 = load i32, ptr %60, align 4 + %62 = add nsw i32 %61, 1 + %63 = icmp slt i32 %56, %62 + br i1 %63, label %64, label %75 + +64: ; preds = %51 + %65 = load ptr, ptr %7, align 8 + %66 = load i32, ptr %6, align 4 + %67 = sext i32 %66 to i64 + %68 = getelementptr inbounds i32, ptr %65, i64 %67 + %69 = load i32, ptr %68, align 4 + %70 = add nsw i32 %69, 1 + %71 = load ptr, ptr %7, align 8 + %72 = load i32, ptr %5, align 4 + %73 = sext i32 %72 to i64 + %74 = getelementptr inbounds i32, ptr %71, i64 %73 + store i32 %70, ptr %74, align 4 + br label %75 + +75: ; preds = %64, %51, %39 + br label %76 + +76: ; preds = %75 + %77 = load i32, ptr %6, align 4 + %78 = add nsw i32 %77, 1 + store i32 %78, ptr %6, align 4 + br label %35, !llvm.loop !8 + +79: ; preds = %35 + br label %80 + +80: ; preds = %79 + %81 = load i32, ptr %5, align 4 + %82 = add nsw i32 %81, 1 + store i32 %82, ptr %5, align 4 + br label %30, !llvm.loop !9 + +83: ; preds = %30 + %84 = load i32, ptr %4, align 4 + %85 = sext i32 %84 to i64 + %86 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %85, i64 4) + %87 = extractvalue { i64, i1 } %86, 1 + %88 = extractvalue { i64, i1 } %86, 0 + %89 = select i1 %87, i64 -1, i64 %88 + %90 = call noalias noundef nonnull ptr @_Znam(i64 noundef %89) #6 + store ptr %90, ptr %8, align 8 + store i32 0, ptr %5, align 4 + br label %91 + +91: ; preds = %100, %83 + %92 = load i32, ptr %5, align 4 + %93 = load i32, ptr %4, align 4 + %94 = icmp slt i32 %92, %93 + br i1 %94, label %95, label %103 + +95: ; preds = %91 + %96 = load ptr, ptr %8, align 8 + %97 = load i32, ptr %5, align 4 + %98 = sext i32 %97 to i64 + %99 = getelementptr inbounds i32, ptr %96, i64 %98 + store i32 1, ptr %99, align 4 + br label %100 + +100: ; preds = %95 + %101 = load i32, ptr %5, align 4 + %102 = add nsw i32 %101, 1 + store i32 %102, ptr %5, align 4 + br label %91, !llvm.loop !10 + +103: ; preds = %91 + %104 = load i32, ptr %4, align 4 + %105 = sub nsw i32 %104, 2 + store i32 %105, ptr %5, align 4 + br label %106 + +106: ; preds = %157, %103 + %107 = load i32, ptr %5, align 4 + %108 = icmp sge i32 %107, 0 + br i1 %108, label %109, label %160 + +109: ; preds = %106 + %110 = load i32, ptr %4, align 4 + %111 = sub nsw i32 %110, 1 + store i32 %111, ptr %6, align 4 + br label %112 + +112: ; preds = %153, %109 + %113 = load i32, ptr %6, align 4 + %114 = load i32, ptr %5, align 4 + %115 = icmp sgt i32 %113, %114 + br i1 %115, label %116, label %156 + +116: ; preds = %112 + %117 = load ptr, ptr %3, align 8 + %118 = load i32, ptr %5, align 4 + %119 = sext i32 %118 to i64 + %120 = getelementptr inbounds i32, ptr %117, i64 %119 + %121 = load i32, ptr %120, align 4 + %122 = load ptr, ptr %3, align 8 + %123 = load i32, ptr %6, align 4 + %124 = sext i32 %123 to i64 + %125 = getelementptr inbounds i32, ptr %122, i64 %124 + %126 = load i32, ptr %125, align 4 + %127 = icmp sgt i32 %121, %126 + br i1 %127, label %128, label %152 + +128: ; preds = %116 + %129 = load ptr, ptr %8, align 8 + %130 = load i32, ptr %5, align 4 + %131 = sext i32 %130 to i64 + %132 = getelementptr inbounds i32, ptr %129, i64 %131 + %133 = load i32, ptr %132, align 4 + %134 = load ptr, ptr %8, align 8 + %135 = load i32, ptr %6, align 4 + %136 = sext i32 %135 to i64 + %137 = getelementptr inbounds i32, ptr %134, i64 %136 + %138 = load i32, ptr %137, align 4 + %139 = add nsw i32 %138, 1 + %140 = icmp slt i32 %133, %139 + br i1 %140, label %141, label %152 + +141: ; preds = %128 + %142 = load ptr, ptr %8, align 8 + %143 = load i32, ptr %6, align 4 + %144 = sext i32 %143 to i64 + %145 = getelementptr inbounds i32, ptr %142, i64 %144 + %146 = load i32, ptr %145, align 4 + %147 = add nsw i32 %146, 1 + %148 = load ptr, ptr %8, align 8 + %149 = load i32, ptr %5, align 4 + %150 = sext i32 %149 to i64 + %151 = getelementptr inbounds i32, ptr %148, i64 %150 + store i32 %147, ptr %151, align 4 + br label %152 + +152: ; preds = %141, %128, %116 + br label %153 + +153: ; preds = %152 + %154 = load i32, ptr %6, align 4 + %155 = add nsw i32 %154, -1 + store i32 %155, ptr %6, align 4 + br label %112, !llvm.loop !11 + +156: ; preds = %112 + br label %157 + +157: ; preds = %156 + %158 = load i32, ptr %5, align 4 + %159 = add nsw i32 %158, -1 + store i32 %159, ptr %5, align 4 + br label %106, !llvm.loop !12 + +160: ; preds = %106 + %161 = load ptr, ptr %7, align 8 + %162 = getelementptr inbounds i32, ptr %161, i64 0 + %163 = load i32, ptr %162, align 4 + %164 = load ptr, ptr %8, align 8 + %165 = getelementptr inbounds i32, ptr %164, i64 0 + %166 = load i32, ptr %165, align 4 + %167 = add nsw i32 %163, %166 + %168 = sub nsw i32 %167, 1 + store i32 %168, ptr %9, align 4 + store i32 1, ptr %5, align 4 + br label %169 + +169: ; preds = %202, %160 + %170 = load i32, ptr %5, align 4 + %171 = load i32, ptr %4, align 4 + %172 = icmp slt i32 %170, %171 + br i1 %172, label %173, label %205 + +173: ; preds = %169 + %174 = load ptr, ptr %7, align 8 + %175 = load i32, ptr %5, align 4 + %176 = sext i32 %175 to i64 + %177 = getelementptr inbounds i32, ptr %174, i64 %176 + %178 = load i32, ptr %177, align 4 + %179 = load ptr, ptr %8, align 8 + %180 = load i32, ptr %5, align 4 + %181 = sext i32 %180 to i64 + %182 = getelementptr inbounds i32, ptr %179, i64 %181 + %183 = load i32, ptr %182, align 4 + %184 = add nsw i32 %178, %183 + %185 = sub nsw i32 %184, 1 + %186 = load i32, ptr %9, align 4 + %187 = icmp sgt i32 %185, %186 + br i1 %187, label %188, label %201 + +188: ; preds = %173 + %189 = load ptr, ptr %7, align 8 + %190 = load i32, ptr %5, align 4 + %191 = sext i32 %190 to i64 + %192 = getelementptr inbounds i32, ptr %189, i64 %191 + %193 = load i32, ptr %192, align 4 + %194 = load ptr, ptr %8, align 8 + %195 = load i32, ptr %5, align 4 + %196 = sext i32 %195 to i64 + %197 = getelementptr inbounds i32, ptr %194, i64 %196 + %198 = load i32, ptr %197, align 4 + %199 = add nsw i32 %193, %198 + %200 = sub nsw i32 %199, 1 + store i32 %200, ptr %9, align 4 + br label %201 + +201: ; preds = %188, %173 + br label %202 + +202: ; preds = %201 + %203 = load i32, ptr %5, align 4 + %204 = add nsw i32 %203, 1 + store i32 %204, ptr %5, align 4 + br label %169, !llvm.loop !13 + +205: ; preds = %169 + %206 = load i32, ptr %9, align 4 + ret i32 %206 +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; 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 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 64, i1 false) + store i32 16, ptr %3, align 4 + %4 = getelementptr inbounds [16 x i32], ptr %2, i64 0, i64 0 + %5 = load i32, ptr %3, align 4 + %6 = call noundef i32 @_Z3lbsPii(ptr noundef %4, i32 noundef %5) + %7 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %6) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +declare i32 @printf(ptr noundef, ...) #5 + +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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/longest-even-length-substring-sum-first-second-half.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-even-length-substring-sum-first-second-half.ll new file mode 100644 index 000000000..5c6287666 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-even-length-substring-sum-first-second-half.ll @@ -0,0 +1,257 @@ +; ModuleID = 'PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp' +source_filename = "PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__const.main.str = private unnamed_addr constant [7 x i8] c"153803\00", align 1 +@_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 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z10findLengthPc(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %13 = load ptr, ptr %2, align 8 + %14 = call i64 @strlen(ptr noundef %13) #6 + %15 = trunc i64 %14 to i32 + store i32 %15, ptr %3, align 4 + store i32 0, ptr %4, align 4 + %16 = load i32, ptr %3, align 4 + %17 = zext i32 %16 to i64 + %18 = load i32, ptr %3, align 4 + %19 = zext i32 %18 to i64 + %20 = call ptr @llvm.stacksave() + store ptr %20, ptr %5, align 8 + %21 = mul nuw i64 %17, %19 + %22 = alloca i32, i64 %21, align 16 + store i64 %17, ptr %6, align 8 + store i64 %19, ptr %7, align 8 + store i32 0, ptr %8, align 4 + br label %23 + +23: ; preds = %42, %1 + %24 = load i32, ptr %8, align 4 + %25 = load i32, ptr %3, align 4 + %26 = icmp slt i32 %24, %25 + br i1 %26, label %27, label %45 + +27: ; preds = %23 + %28 = load ptr, ptr %2, align 8 + %29 = load i32, ptr %8, align 4 + %30 = sext i32 %29 to i64 + %31 = getelementptr inbounds i8, ptr %28, i64 %30 + %32 = load i8, ptr %31, align 1 + %33 = sext i8 %32 to i32 + %34 = sub nsw i32 %33, 48 + %35 = load i32, ptr %8, align 4 + %36 = sext i32 %35 to i64 + %37 = mul nsw i64 %36, %19 + %38 = getelementptr inbounds i32, ptr %22, i64 %37 + %39 = load i32, ptr %8, align 4 + %40 = sext i32 %39 to i64 + %41 = getelementptr inbounds i32, ptr %38, i64 %40 + store i32 %34, ptr %41, align 4 + br label %42 + +42: ; preds = %27 + %43 = load i32, ptr %8, align 4 + %44 = add nsw i32 %43, 1 + store i32 %44, ptr %8, align 4 + br label %23, !llvm.loop !6 + +45: ; preds = %23 + store i32 2, ptr %9, align 4 + br label %46 + +46: ; preds = %131, %45 + %47 = load i32, ptr %9, align 4 + %48 = load i32, ptr %3, align 4 + %49 = icmp sle i32 %47, %48 + br i1 %49, label %50, label %134 + +50: ; preds = %46 + store i32 0, ptr %10, align 4 + br label %51 + +51: ; preds = %127, %50 + %52 = load i32, ptr %10, align 4 + %53 = load i32, ptr %3, align 4 + %54 = load i32, ptr %9, align 4 + %55 = sub nsw i32 %53, %54 + %56 = add nsw i32 %55, 1 + %57 = icmp slt i32 %52, %56 + br i1 %57, label %58, label %130 + +58: ; preds = %51 + %59 = load i32, ptr %10, align 4 + %60 = load i32, ptr %9, align 4 + %61 = add nsw i32 %59, %60 + %62 = sub nsw i32 %61, 1 + store i32 %62, ptr %11, align 4 + %63 = load i32, ptr %9, align 4 + %64 = sdiv i32 %63, 2 + store i32 %64, ptr %12, align 4 + %65 = load i32, ptr %10, align 4 + %66 = sext i32 %65 to i64 + %67 = mul nsw i64 %66, %19 + %68 = getelementptr inbounds i32, ptr %22, i64 %67 + %69 = load i32, ptr %11, align 4 + %70 = load i32, ptr %12, align 4 + %71 = sub nsw i32 %69, %70 + %72 = sext i32 %71 to i64 + %73 = getelementptr inbounds i32, ptr %68, i64 %72 + %74 = load i32, ptr %73, align 4 + %75 = load i32, ptr %11, align 4 + %76 = load i32, ptr %12, align 4 + %77 = sub nsw i32 %75, %76 + %78 = add nsw i32 %77, 1 + %79 = sext i32 %78 to i64 + %80 = mul nsw i64 %79, %19 + %81 = getelementptr inbounds i32, ptr %22, i64 %80 + %82 = load i32, ptr %11, align 4 + %83 = sext i32 %82 to i64 + %84 = getelementptr inbounds i32, ptr %81, i64 %83 + %85 = load i32, ptr %84, align 4 + %86 = add nsw i32 %74, %85 + %87 = load i32, ptr %10, align 4 + %88 = sext i32 %87 to i64 + %89 = mul nsw i64 %88, %19 + %90 = getelementptr inbounds i32, ptr %22, i64 %89 + %91 = load i32, ptr %11, align 4 + %92 = sext i32 %91 to i64 + %93 = getelementptr inbounds i32, ptr %90, i64 %92 + store i32 %86, ptr %93, align 4 + %94 = load i32, ptr %9, align 4 + %95 = srem i32 %94, 2 + %96 = icmp eq i32 %95, 0 + br i1 %96, label %97, label %126 + +97: ; preds = %58 + %98 = load i32, ptr %10, align 4 + %99 = sext i32 %98 to i64 + %100 = mul nsw i64 %99, %19 + %101 = getelementptr inbounds i32, ptr %22, i64 %100 + %102 = load i32, ptr %11, align 4 + %103 = load i32, ptr %12, align 4 + %104 = sub nsw i32 %102, %103 + %105 = sext i32 %104 to i64 + %106 = getelementptr inbounds i32, ptr %101, i64 %105 + %107 = load i32, ptr %106, align 4 + %108 = load i32, ptr %11, align 4 + %109 = load i32, ptr %12, align 4 + %110 = sub nsw i32 %108, %109 + %111 = add nsw i32 %110, 1 + %112 = sext i32 %111 to i64 + %113 = mul nsw i64 %112, %19 + %114 = getelementptr inbounds i32, ptr %22, i64 %113 + %115 = load i32, ptr %11, align 4 + %116 = sext i32 %115 to i64 + %117 = getelementptr inbounds i32, ptr %114, i64 %116 + %118 = load i32, ptr %117, align 4 + %119 = icmp eq i32 %107, %118 + br i1 %119, label %120, label %126 + +120: ; preds = %97 + %121 = load i32, ptr %9, align 4 + %122 = load i32, ptr %4, align 4 + %123 = icmp sgt i32 %121, %122 + br i1 %123, label %124, label %126 + +124: ; preds = %120 + %125 = load i32, ptr %9, align 4 + store i32 %125, ptr %4, align 4 + br label %126 + +126: ; preds = %124, %120, %97, %58 + br label %127 + +127: ; preds = %126 + %128 = load i32, ptr %10, align 4 + %129 = add nsw i32 %128, 1 + store i32 %129, ptr %10, align 4 + br label %51, !llvm.loop !8 + +130: ; preds = %51 + br label %131 + +131: ; preds = %130 + %132 = load i32, ptr %9, align 4 + %133 = add nsw i32 %132, 1 + store i32 %133, ptr %9, align 4 + br label %46, !llvm.loop !9 + +134: ; preds = %46 + %135 = load i32, ptr %4, align 4 + %136 = load ptr, ptr %5, align 8 + call void @llvm.stackrestore(ptr %136) + ret i32 %135 +} + +; Function Attrs: nounwind willreturn memory(read) +declare i64 @strlen(ptr noundef) #1 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #2 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [7 x i8], align 1 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %2, ptr align 1 @__const.main.str, i64 7, i1 false) + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %4 = getelementptr inbounds [7 x i8], ptr %2, i64 0, i64 0 + %5 = call noundef i32 @_Z10findLengthPc(ptr noundef %4) + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %3, i32 noundef %5) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +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 willreturn memory(read) "frame-pointer"="all" "no-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 = { nocallback nofree nosync nounwind willreturn } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 willreturn memory(read) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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/longest-increasing-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-increasing-subsequence.ll similarity index 53% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/longest-increasing-subsequence.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/longest-increasing-subsequence.ll index 3230e8729..483dfbc85 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-increasing-subsequence.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-increasing-subsequence.ll @@ -7,114 +7,114 @@ target triple = "x86_64-pc-linux-gnu" @.str = private unnamed_addr constant [21 x i8] c"Length of lis is %dn\00", align 1 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z4_lisPiiS_(i32* noundef %0, i32 noundef %1, i32* noundef %2) #0 { +define dso_local noundef i32 @_Z4_lisPiiS_(ptr noundef %0, i32 noundef %1, ptr noundef %2) #0 { %4 = alloca i32, align 4 - %5 = alloca i32*, align 8 + %5 = alloca ptr, align 8 %6 = alloca i32, align 4 - %7 = alloca i32*, align 8 + %7 = alloca ptr, align 8 %8 = alloca i32, align 4 %9 = alloca i32, align 4 %10 = alloca i32, align 4 - store i32* %0, i32** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32* %2, i32** %7, align 8 - %11 = load i32, i32* %6, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store ptr %2, ptr %7, align 8 + %11 = load i32, ptr %6, align 4 %12 = icmp eq i32 %11, 1 br i1 %12, label %13, label %14 13: ; preds = %3 - store i32 1, i32* %4, align 4 + store i32 1, ptr %4, align 4 br label %59 14: ; preds = %3 - store i32 1, i32* %9, align 4 - store i32 1, i32* %10, align 4 + store i32 1, ptr %9, align 4 + store i32 1, ptr %10, align 4 br label %15 15: ; preds = %46, %14 - %16 = load i32, i32* %10, align 4 - %17 = load i32, i32* %6, align 4 + %16 = load i32, ptr %10, align 4 + %17 = load i32, ptr %6, align 4 %18 = icmp slt i32 %16, %17 br i1 %18, label %19, label %49 19: ; preds = %15 - %20 = load i32*, i32** %5, align 8 - %21 = load i32, i32* %10, align 4 - %22 = load i32*, i32** %7, align 8 - %23 = call 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 + %20 = load ptr, ptr %5, align 8 + %21 = load i32, ptr %10, align 4 + %22 = load ptr, ptr %7, align 8 + %23 = call noundef i32 @_Z4_lisPiiS_(ptr noundef %20, i32 noundef %21, ptr noundef %22) + store i32 %23, ptr %8, align 4 + %24 = load ptr, ptr %5, align 8 + %25 = load i32, ptr %10, align 4 %26 = sub nsw i32 %25, 1 %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds i32, i32* %24, i64 %27 - %29 = load i32, i32* %28, align 4 - %30 = load i32*, i32** %5, align 8 - %31 = load i32, i32* %6, align 4 + %28 = getelementptr inbounds i32, ptr %24, i64 %27 + %29 = load i32, ptr %28, align 4 + %30 = load ptr, ptr %5, align 8 + %31 = load i32, ptr %6, align 4 %32 = sub nsw i32 %31, 1 %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds i32, i32* %30, i64 %33 - %35 = load i32, i32* %34, align 4 + %34 = getelementptr inbounds i32, ptr %30, i64 %33 + %35 = load i32, ptr %34, align 4 %36 = icmp slt i32 %29, %35 br i1 %36, label %37, label %45 37: ; preds = %19 - %38 = load i32, i32* %8, align 4 + %38 = load i32, ptr %8, align 4 %39 = add nsw i32 %38, 1 - %40 = load i32, i32* %9, align 4 + %40 = load i32, ptr %9, align 4 %41 = icmp sgt i32 %39, %40 br i1 %41, label %42, label %45 42: ; preds = %37 - %43 = load i32, i32* %8, align 4 + %43 = load i32, ptr %8, align 4 %44 = add nsw i32 %43, 1 - store i32 %44, i32* %9, align 4 + store i32 %44, ptr %9, align 4 br label %45 45: ; preds = %42, %37, %19 br label %46 46: ; preds = %45 - %47 = load i32, i32* %10, align 4 + %47 = load i32, ptr %10, align 4 %48 = add nsw i32 %47, 1 - store i32 %48, i32* %10, align 4 + store i32 %48, ptr %10, align 4 br label %15, !llvm.loop !6 49: ; preds = %15 - %50 = load i32*, i32** %7, align 8 - %51 = load i32, i32* %50, align 4 - %52 = load i32, i32* %9, align 4 + %50 = load ptr, ptr %7, align 8 + %51 = load i32, ptr %50, align 4 + %52 = load i32, ptr %9, align 4 %53 = icmp slt i32 %51, %52 br i1 %53, label %54, label %57 54: ; preds = %49 - %55 = load i32, i32* %9, align 4 - %56 = load i32*, i32** %7, align 8 - store i32 %55, i32* %56, align 4 + %55 = load i32, ptr %9, align 4 + %56 = load ptr, ptr %7, align 8 + store i32 %55, ptr %56, align 4 br label %57 57: ; preds = %54, %49 - %58 = load i32, i32* %9, align 4 - store i32 %58, i32* %4, align 4 + %58 = load i32, ptr %9, align 4 + store i32 %58, ptr %4, align 4 br label %59 59: ; preds = %57, %13 - %60 = load i32, i32* %4, align 4 + %60 = load i32, ptr %4, align 4 ret i32 %60 } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z3lisPii(i32* noundef %0, i32 noundef %1) #0 { - %3 = alloca i32*, align 8 +define dso_local noundef i32 @_Z3lisPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 1, i32* %5, align 4 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %4, align 4 - %8 = call noundef i32 @_Z4_lisPiiS_(i32* noundef %6, i32 noundef %7, i32* noundef %5) - %9 = load i32, i32* %5, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + store i32 1, ptr %5, align 4 + %6 = load ptr, ptr %3, align 8 + %7 = load i32, ptr %4, align 4 + %8 = call noundef i32 @_Z4_lisPiiS_(ptr noundef %6, i32 noundef %7, ptr noundef %5) + %9 = load i32, ptr %5, align 4 ret i32 %9 } @@ -123,35 +123,34 @@ define dso_local noundef i32 @main() #1 { %1 = alloca i32, align 4 %2 = alloca [8 x i32], align 16 %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [8 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([8 x i32]* @__const.main.arr to i8*), i64 32, i1 false) - store i32 8, i32* %3, align 4 - %5 = getelementptr inbounds [8 x i32], [8 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = call 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) + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 32, i1 false) + store i32 8, ptr %3, align 4 + %4 = getelementptr inbounds [8 x i32], ptr %2, i64 0, i64 0 + %5 = load i32, ptr %3, align 4 + %6 = call noundef i32 @_Z3lisPii(ptr noundef %4, i32 noundef %5) + %7 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %6) ret i32 0 } -; 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 +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #2 -declare i32 @printf(i8* noundef, ...) #3 +declare i32 @printf(ptr noundef, ...) #3 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 #2 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } 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, !1, !2, !3, !4} !llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{i32 7, !"PIC Level", i32 2} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-palindrome-substring.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-palindrome-substring.ll new file mode 100644 index 000000000..24beaa2c9 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-palindrome-substring.ll @@ -0,0 +1,735 @@ +; ModuleID = 'PE-benchmarks/longest-palindrome-substring.cpp' +source_filename = "PE-benchmarks/longest-palindrome-substring.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } +%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } +%union.anon = type { i64, [8 x i8] } +%"class.std::allocator" = type { i8 } +%"struct.std::forward_iterator_tag" = type { i8 } +%struct._Guard = type { ptr } + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any + +$_ZNSt15__new_allocatorIcED2Ev = comdat any + +$_ZNSt11char_traitsIcE6lengthEPKc = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any + +$__clang_call_terminate = comdat any + +@_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 +@.str.3 = private unnamed_addr constant [50 x i8] c"basic_string: construction from null is not valid\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z11printSubStrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store i32 %1, ptr %4, align 4 + store i32 %2, ptr %5, align 4 + %7 = load i32, ptr %4, align 4 + store i32 %7, ptr %6, align 4 + br label %8 + +8: ; preds = %18, %3 + %9 = load i32, ptr %6, align 4 + %10 = load i32, ptr %5, align 4 + %11 = icmp sle i32 %9, %10 + br i1 %11, label %12, label %21 + +12: ; preds = %8 + %13 = load i32, ptr %6, align 4 + %14 = sext i32 %13 to i64 + %15 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %14) + %16 = load i8, ptr %15, align 1 + %17 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8 noundef signext %16) + br label %18 + +18: ; preds = %12 + %19 = load i32, ptr %6, align 4 + %20 = add nsw i32 %19, 1 + store i32 %20, ptr %6, align 4 + br label %8, !llvm.loop !6 + +21: ; preds = %8 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(ptr noundef nonnull align 8 dereferenceable(8), i8 noundef signext) #1 + +declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef %0) #0 personality ptr @__gxx_personality_v0 { + %2 = alloca i32, align 4 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i64, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca %"class.std::__cxx11::basic_string", align 8 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #11 + %17 = trunc i64 %16 to i32 + store i32 %17, ptr %2, align 4 + %18 = load i32, ptr %2, align 4 + %19 = zext i32 %18 to i64 + %20 = load i32, ptr %2, align 4 + %21 = zext i32 %20 to i64 + %22 = call ptr @llvm.stacksave() + store ptr %22, ptr %3, align 8 + %23 = mul nuw i64 %19, %21 + %24 = alloca i8, i64 %23, align 16 + store i64 %19, ptr %4, align 8 + store i64 %21, ptr %5, align 8 + %25 = mul nuw i64 %19, %21 + call void @llvm.memset.p0.i64(ptr align 16 %24, i8 0, i64 %25, i1 false) + store i32 1, ptr %6, align 4 + store i32 0, ptr %7, align 4 + br label %26 + +26: ; preds = %38, %1 + %27 = load i32, ptr %7, align 4 + %28 = load i32, ptr %2, align 4 + %29 = icmp slt i32 %27, %28 + br i1 %29, label %30, label %41 + +30: ; preds = %26 + %31 = load i32, ptr %7, align 4 + %32 = sext i32 %31 to i64 + %33 = mul nsw i64 %32, %21 + %34 = getelementptr inbounds i8, ptr %24, i64 %33 + %35 = load i32, ptr %7, align 4 + %36 = sext i32 %35 to i64 + %37 = getelementptr inbounds i8, ptr %34, i64 %36 + store i8 1, ptr %37, align 1 + br label %38 + +38: ; preds = %30 + %39 = load i32, ptr %7, align 4 + %40 = add nsw i32 %39, 1 + store i32 %40, ptr %7, align 4 + br label %26, !llvm.loop !8 + +41: ; preds = %26 + store i32 0, ptr %8, align 4 + store i32 0, ptr %9, align 4 + br label %42 + +42: ; preds = %71, %41 + %43 = load i32, ptr %9, align 4 + %44 = load i32, ptr %2, align 4 + %45 = sub nsw i32 %44, 1 + %46 = icmp slt i32 %43, %45 + br i1 %46, label %47, label %74 + +47: ; preds = %42 + %48 = load i32, ptr %9, align 4 + %49 = sext i32 %48 to i64 + %50 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %49) + %51 = load i8, ptr %50, align 1 + %52 = sext i8 %51 to i32 + %53 = load i32, ptr %9, align 4 + %54 = add nsw i32 %53, 1 + %55 = sext i32 %54 to i64 + %56 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %55) + %57 = load i8, ptr %56, align 1 + %58 = sext i8 %57 to i32 + %59 = icmp eq i32 %52, %58 + br i1 %59, label %60, label %70 + +60: ; preds = %47 + %61 = load i32, ptr %9, align 4 + %62 = sext i32 %61 to i64 + %63 = mul nsw i64 %62, %21 + %64 = getelementptr inbounds i8, ptr %24, i64 %63 + %65 = load i32, ptr %9, align 4 + %66 = add nsw i32 %65, 1 + %67 = sext i32 %66 to i64 + %68 = getelementptr inbounds i8, ptr %64, i64 %67 + store i8 1, ptr %68, align 1 + %69 = load i32, ptr %9, align 4 + store i32 %69, ptr %8, align 4 + store i32 2, ptr %6, align 4 + br label %70 + +70: ; preds = %60, %47 + br label %71 + +71: ; preds = %70 + %72 = load i32, ptr %9, align 4 + %73 = add nsw i32 %72, 1 + store i32 %73, ptr %9, align 4 + br label %42, !llvm.loop !9 + +74: ; preds = %42 + store i32 3, ptr %10, align 4 + br label %75 + +75: ; preds = %135, %74 + %76 = load i32, ptr %10, align 4 + %77 = load i32, ptr %2, align 4 + %78 = icmp sle i32 %76, %77 + br i1 %78, label %79, label %138 + +79: ; preds = %75 + store i32 0, ptr %11, align 4 + br label %80 + +80: ; preds = %131, %79 + %81 = load i32, ptr %11, align 4 + %82 = load i32, ptr %2, align 4 + %83 = load i32, ptr %10, align 4 + %84 = sub nsw i32 %82, %83 + %85 = add nsw i32 %84, 1 + %86 = icmp slt i32 %81, %85 + br i1 %86, label %87, label %134 + +87: ; preds = %80 + %88 = load i32, ptr %11, align 4 + %89 = load i32, ptr %10, align 4 + %90 = add nsw i32 %88, %89 + %91 = sub nsw i32 %90, 1 + store i32 %91, ptr %12, align 4 + %92 = load i32, ptr %11, align 4 + %93 = add nsw i32 %92, 1 + %94 = sext i32 %93 to i64 + %95 = mul nsw i64 %94, %21 + %96 = getelementptr inbounds i8, ptr %24, i64 %95 + %97 = load i32, ptr %12, align 4 + %98 = sub nsw i32 %97, 1 + %99 = sext i32 %98 to i64 + %100 = getelementptr inbounds i8, ptr %96, i64 %99 + %101 = load i8, ptr %100, align 1 + %102 = trunc i8 %101 to i1 + br i1 %102, label %103, label %130 + +103: ; preds = %87 + %104 = load i32, ptr %11, align 4 + %105 = sext i32 %104 to i64 + %106 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %105) + %107 = load i8, ptr %106, align 1 + %108 = sext i8 %107 to i32 + %109 = load i32, ptr %12, align 4 + %110 = sext i32 %109 to i64 + %111 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %110) + %112 = load i8, ptr %111, align 1 + %113 = sext i8 %112 to i32 + %114 = icmp eq i32 %108, %113 + br i1 %114, label %115, label %130 + +115: ; preds = %103 + %116 = load i32, ptr %11, align 4 + %117 = sext i32 %116 to i64 + %118 = mul nsw i64 %117, %21 + %119 = getelementptr inbounds i8, ptr %24, i64 %118 + %120 = load i32, ptr %12, align 4 + %121 = sext i32 %120 to i64 + %122 = getelementptr inbounds i8, ptr %119, i64 %121 + store i8 1, ptr %122, align 1 + %123 = load i32, ptr %10, align 4 + %124 = load i32, ptr %6, align 4 + %125 = icmp sgt i32 %123, %124 + br i1 %125, label %126, label %129 + +126: ; preds = %115 + %127 = load i32, ptr %11, align 4 + store i32 %127, ptr %8, align 4 + %128 = load i32, ptr %10, align 4 + store i32 %128, ptr %6, align 4 + br label %129 + +129: ; preds = %126, %115 + br label %130 + +130: ; preds = %129, %103, %87 + br label %131 + +131: ; preds = %130 + %132 = load i32, ptr %11, align 4 + %133 = add nsw i32 %132, 1 + store i32 %133, ptr %11, align 4 + br label %80, !llvm.loop !10 + +134: ; preds = %80 + br label %135 + +135: ; preds = %134 + %136 = load i32, ptr %10, align 4 + %137 = add nsw i32 %136, 1 + store i32 %137, ptr %10, align 4 + br label %75, !llvm.loop !11 + +138: ; preds = %75 + %139 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %13, ptr noundef nonnull align 8 dereferenceable(32) %0) + %140 = load i32, ptr %8, align 4 + %141 = load i32, ptr %8, align 4 + %142 = load i32, ptr %6, align 4 + %143 = add nsw i32 %141, %142 + %144 = sub nsw i32 %143, 1 + invoke void @_Z11printSubStrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(ptr noundef %13, i32 noundef %140, i32 noundef %144) + to label %145 unwind label %148 + +145: ; preds = %138 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %13) #11 + %146 = load i32, ptr %6, align 4 + %147 = load ptr, ptr %3, align 8 + call void @llvm.stackrestore(ptr %147) + ret i32 %146 + +148: ; preds = %138 + %149 = landingpad { ptr, i32 } + cleanup + %150 = extractvalue { ptr, i32 } %149, 0 + store ptr %150, ptr %14, align 8 + %151 = extractvalue { ptr, i32 } %149, 1 + store i32 %151, ptr %15, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %13) #11 + br label %152 + +152: ; preds = %148 + %153 = load ptr, ptr %14, align 8 + %154 = load i32, ptr %15, align 4 + %155 = insertvalue { ptr, i32 } poison, ptr %153, 0 + %156 = insertvalue { ptr, i32 } %155, i32 %154, 1 + resume { ptr, i32 } %156 +} + +; Function Attrs: nounwind +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #3 + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #3 + +; Function Attrs: noinline norecurse uwtable +define dso_local noundef i32 @main() #5 personality ptr @__gxx_personality_v0 { + %1 = alloca ptr, align 8 + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca %"class.std::__cxx11::basic_string", align 8 + %7 = alloca %"class.std::allocator", align 1 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca %"class.std::__cxx11::basic_string", align 8 + store i32 0, ptr %5, align 4 + store ptr %7, ptr %4, align 8 + %11 = load ptr, ptr %4, align 8 + store ptr %11, ptr %1, align 8 + %12 = load ptr, ptr %1, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %6, ptr noundef @.str.1, ptr noundef nonnull align 1 dereferenceable(1) %7) + to label %13 unwind label %23 + +13: ; preds = %0 + store ptr %7, ptr %3, align 8 + %14 = load ptr, ptr %3, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %14) #11 + %15 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + to label %16 unwind label %28 + +16: ; preds = %13 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef nonnull align 8 dereferenceable(32) %6) + to label %17 unwind label %28 + +17: ; preds = %16 + %18 = invoke noundef i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef %10) + to label %19 unwind label %32 + +19: ; preds = %17 + %20 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %15, i32 noundef %18) + to label %21 unwind label %32 + +21: ; preds = %19 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #11 + store i32 0, ptr %5, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #11 + %22 = load i32, ptr %5, align 4 + ret i32 %22 + +23: ; preds = %0 + %24 = landingpad { ptr, i32 } + cleanup + %25 = extractvalue { ptr, i32 } %24, 0 + store ptr %25, ptr %8, align 8 + %26 = extractvalue { ptr, i32 } %24, 1 + store i32 %26, ptr %9, align 4 + store ptr %7, ptr %2, align 8 + %27 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %27) #11 + br label %37 + +28: ; preds = %16, %13 + %29 = landingpad { ptr, i32 } + cleanup + %30 = extractvalue { ptr, i32 } %29, 0 + store ptr %30, ptr %8, align 8 + %31 = extractvalue { ptr, i32 } %29, 1 + store i32 %31, ptr %9, align 4 + br label %36 + +32: ; preds = %19, %17 + %33 = landingpad { ptr, i32 } + cleanup + %34 = extractvalue { ptr, i32 } %33, 0 + store ptr %34, ptr %8, align 8 + %35 = extractvalue { ptr, i32 } %33, 1 + store i32 %35, ptr %9, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #11 + br label %36 + +36: ; preds = %32, %28 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #11 + br label %37 + +37: ; preds = %36, %23 + %38 = load ptr, ptr %8, align 8 + %39 = load i32, ptr %9, align 4 + %40 = insertvalue { ptr, i32 } poison, ptr %38, 0 + %41 = insertvalue { ptr, i32 } %40, i32 %39, 1 + resume { ptr, i32 } %41 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %11, i32 0, i32 0 + %13 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) + %14 = load ptr, ptr %6, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %12, ptr noundef %13, ptr noundef nonnull align 1 dereferenceable(1) %14) + %15 = load ptr, ptr %5, align 8 + %16 = icmp eq ptr %15, null + br i1 %16, label %17, label %23 + +17: ; preds = %3 + invoke void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.3) #12 + to label %18 unwind label %19 + +18: ; preds = %17 + unreachable + +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } + cleanup + %21 = extractvalue { ptr, i32 } %20, 0 + store ptr %21, ptr %7, align 8 + %22 = extractvalue { ptr, i32 } %20, 1 + store i32 %22, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %12) #11 + br label %32 + +23: ; preds = %3 + %24 = load ptr, ptr %5, align 8 + %25 = load ptr, ptr %5, align 8 + %26 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %25) + to label %27 unwind label %19 + +27: ; preds = %23 + %28 = getelementptr inbounds i8, ptr %24, i64 %26 + store ptr %28, ptr %9, align 8 + %29 = load ptr, ptr %5, align 8 + %30 = load ptr, ptr %9, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %29, ptr noundef %30) + to label %31 unwind label %19 + +31: ; preds = %27 + ret void + +32: ; preds = %19 + %33 = load ptr, ptr %7, align 8 + %34 = load i32, ptr %8, align 4 + %35 = insertvalue { ptr, i32 } poison, ptr %33, 0 + %36 = insertvalue { ptr, i32 } %35, i32 %34, 1 + resume { ptr, i32 } %36 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef, ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 + +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #8 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %0) #9 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call i64 @strlen(ptr noundef %3) #11 + ret i64 %4 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca i64, align 8 + %15 = alloca %struct._Guard, align 8 + %16 = alloca ptr, align 8 + %17 = alloca i32, align 4 + store ptr %0, ptr %11, align 8 + store ptr %1, ptr %12, align 8 + store ptr %2, ptr %13, align 8 + %18 = load ptr, ptr %11, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %13, align 8 + store ptr %19, ptr %8, align 8 + store ptr %20, ptr %9, align 8 + %21 = load ptr, ptr %8, align 8 + %22 = load ptr, ptr %9, align 8 + store ptr %8, ptr %4, align 8 + store ptr %21, ptr %5, align 8 + store ptr %22, ptr %6, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %5, align 8 + %25 = ptrtoint ptr %23 to i64 + %26 = ptrtoint ptr %24 to i64 + %27 = sub i64 %25, %26 + store i64 %27, ptr %14, align 8 + %28 = load i64, ptr %14, align 8 + %29 = icmp ugt i64 %28, 15 + br i1 %29, label %30, label %33 + +30: ; preds = %3 + %31 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef nonnull align 8 dereferenceable(8) %14, i64 noundef 0) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef %31) + %32 = load i64, ptr %14, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %32) + br label %40 + +33: ; preds = %3 + store ptr %18, ptr %7, align 8 + %34 = load ptr, ptr %7, align 8 + %35 = invoke noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %34) + to label %39 unwind label %36 + +36: ; preds = %33 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #13 + unreachable + +39: ; preds = %33 + br label %40 + +40: ; preds = %39, %30 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef %18) + %41 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %18) + to label %42 unwind label %48 + +42: ; preds = %40 + %43 = load ptr, ptr %12, align 8 + %44 = load ptr, ptr %13, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %41, ptr noundef %43, ptr noundef %44) #11 + %45 = getelementptr inbounds %struct._Guard, ptr %15, i32 0, i32 0 + store ptr null, ptr %45, align 8 + %46 = load i64, ptr %14, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %46) + to label %47 unwind label %48 + +47: ; preds = %42 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #11 + ret void + +48: ; preds = %42, %40 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %16, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %17, align 4 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #11 + br label %52 + +52: ; preds = %48 + %53 = load ptr, ptr %16, align 8 + %54 = load i32, ptr %17, align 4 + %55 = insertvalue { ptr, i32 } poison, ptr %53, 0 + %56 = insertvalue { ptr, i32 } %55, i32 %54, 1 + resume { ptr, i32 } %56 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #7 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #11 + ret void +} + +; Function Attrs: nounwind +declare i64 @strlen(ptr noundef) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #1 + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #7 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %struct._Guard, ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #2 + +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #7 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = icmp ne ptr %5, null + br i1 %6, label %7, label %11 + +7: ; preds = %1 + %8 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %9) + to label %10 unwind label %12 + +10: ; preds = %7 + br label %11 + +11: ; preds = %10, %1 + ret void + +12: ; preds = %7 + %13 = landingpad { ptr, i32 } + catch ptr null + %14 = extractvalue { ptr, i32 } %13, 0 + call void @__clang_call_terminate(ptr %14) #13 + unreachable +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #10 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #11 + call void @_ZSt9terminatev() #13 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #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 = { 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 = { nocallback nofree nosync nounwind willreturn } +attributes #4 = { nocallback nofree nounwind willreturn memory(argmem: write) } +attributes #5 = { 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 = { 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 = { 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 = { 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 #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 = { noinline noreturn 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 = { nounwind } +attributes #12 = { noreturn } +attributes #13 = { noreturn nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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/longest-palindromic-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-palindromic-subsequence.ll similarity index 51% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/longest-palindromic-subsequence.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/longest-palindromic-subsequence.ll index 8df181b70..450d6addc 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-palindromic-subsequence.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-palindromic-subsequence.ll @@ -10,19 +10,19 @@ target triple = "x86_64-pc-linux-gnu" 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 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %5 = load i32, ptr %3, align 4 + %6 = load i32, ptr %4, align 4 %7 = icmp sgt i32 %5, %6 br i1 %7, label %8, label %10 8: ; preds = %2 - %9 = load i32, i32* %3, align 4 + %9 = load i32, ptr %3, align 4 br label %12 10: ; preds = %2 - %11 = load i32, i32* %4, align 4 + %11 = load i32, ptr %4, align 4 br label %12 12: ; preds = %10, %8 @@ -31,182 +31,182 @@ define dso_local noundef i32 @_Z3maxii(i32 noundef %0, i32 noundef %1) #0 { } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z3lpsPc(i8* noundef %0) #0 { - %2 = alloca i8*, align 8 +define dso_local noundef i32 @_Z3lpsPc(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 %3 = alloca i32, align 4 %4 = alloca i32, align 4 %5 = alloca i32, align 4 %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 + %7 = alloca ptr, align 8 %8 = alloca i64, align 8 %9 = alloca i64, align 8 - store i8* %0, i8** %2, align 8 - %10 = load i8*, i8** %2, align 8 - %11 = call i64 @strlen(i8* noundef %10) #6 + store ptr %0, ptr %2, align 8 + %10 = load ptr, ptr %2, align 8 + %11 = call i64 @strlen(ptr noundef %10) #6 %12 = trunc i64 %11 to i32 - store i32 %12, i32* %3, align 4 - %13 = load i32, i32* %3, align 4 + store i32 %12, ptr %3, align 4 + %13 = load i32, ptr %3, align 4 %14 = zext i32 %13 to i64 - %15 = load i32, i32* %3, align 4 + %15 = load i32, ptr %3, align 4 %16 = zext i32 %15 to i64 - %17 = call i8* @llvm.stacksave() - store i8* %17, i8** %7, align 8 + %17 = call ptr @llvm.stacksave() + store ptr %17, ptr %7, align 8 %18 = mul nuw i64 %14, %16 %19 = alloca i32, i64 %18, align 16 - store i64 %14, i64* %8, align 8 - store i64 %16, i64* %9, align 8 - store i32 0, i32* %4, align 4 + store i64 %14, ptr %8, align 8 + store i64 %16, ptr %9, align 8 + store i32 0, ptr %4, align 4 br label %20 20: ; preds = %32, %1 - %21 = load i32, i32* %4, align 4 - %22 = load i32, i32* %3, align 4 + %21 = load i32, ptr %4, align 4 + %22 = load i32, ptr %3, align 4 %23 = icmp slt i32 %21, %22 br i1 %23, label %24, label %35 24: ; preds = %20 - %25 = load i32, i32* %4, align 4 + %25 = load i32, ptr %4, align 4 %26 = sext i32 %25 to i64 %27 = mul nsw i64 %26, %16 - %28 = getelementptr inbounds i32, i32* %19, i64 %27 - %29 = load i32, i32* %4, align 4 + %28 = getelementptr inbounds i32, ptr %19, i64 %27 + %29 = load i32, ptr %4, align 4 %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i32, i32* %28, i64 %30 - store i32 1, i32* %31, align 4 + %31 = getelementptr inbounds i32, ptr %28, i64 %30 + store i32 1, ptr %31, align 4 br label %32 32: ; preds = %24 - %33 = load i32, i32* %4, align 4 + %33 = load i32, ptr %4, align 4 %34 = add nsw i32 %33, 1 - store i32 %34, i32* %4, align 4 + store i32 %34, ptr %4, align 4 br label %20, !llvm.loop !6 35: ; preds = %20 - store i32 2, i32* %6, align 4 + store i32 2, ptr %6, align 4 br label %36 36: ; preds = %143, %35 - %37 = load i32, i32* %6, align 4 - %38 = load i32, i32* %3, align 4 + %37 = load i32, ptr %6, align 4 + %38 = load i32, ptr %3, align 4 %39 = icmp sle i32 %37, %38 br i1 %39, label %40, label %146 40: ; preds = %36 - store i32 0, i32* %4, align 4 + store i32 0, ptr %4, align 4 br label %41 41: ; preds = %139, %40 - %42 = load i32, i32* %4, align 4 - %43 = load i32, i32* %3, align 4 - %44 = load i32, i32* %6, align 4 + %42 = load i32, ptr %4, align 4 + %43 = load i32, ptr %3, align 4 + %44 = load i32, ptr %6, align 4 %45 = sub nsw i32 %43, %44 %46 = add nsw i32 %45, 1 %47 = icmp slt i32 %42, %46 br i1 %47, label %48, label %142 48: ; preds = %41 - %49 = load i32, i32* %4, align 4 - %50 = load i32, i32* %6, align 4 + %49 = load i32, ptr %4, align 4 + %50 = load i32, ptr %6, align 4 %51 = add nsw i32 %49, %50 %52 = sub nsw i32 %51, 1 - store i32 %52, i32* %5, align 4 - %53 = load i8*, i8** %2, align 8 - %54 = load i32, i32* %4, align 4 + store i32 %52, ptr %5, align 4 + %53 = load ptr, ptr %2, align 8 + %54 = load i32, ptr %4, align 4 %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i8, i8* %53, i64 %55 - %57 = load i8, i8* %56, align 1 + %56 = getelementptr inbounds i8, ptr %53, i64 %55 + %57 = load i8, ptr %56, align 1 %58 = sext i8 %57 to i32 - %59 = load i8*, i8** %2, align 8 - %60 = load i32, i32* %5, align 4 + %59 = load ptr, ptr %2, align 8 + %60 = load i32, ptr %5, align 4 %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds i8, i8* %59, i64 %61 - %63 = load i8, i8* %62, align 1 + %62 = getelementptr inbounds i8, ptr %59, i64 %61 + %63 = load i8, ptr %62, align 1 %64 = sext i8 %63 to i32 %65 = icmp eq i32 %58, %64 br i1 %65, label %66, label %77 66: ; preds = %48 - %67 = load i32, i32* %6, align 4 + %67 = load i32, ptr %6, align 4 %68 = icmp eq i32 %67, 2 br i1 %68, label %69, label %77 69: ; preds = %66 - %70 = load i32, i32* %4, align 4 + %70 = load i32, ptr %4, align 4 %71 = sext i32 %70 to i64 %72 = mul nsw i64 %71, %16 - %73 = getelementptr inbounds i32, i32* %19, i64 %72 - %74 = load i32, i32* %5, align 4 + %73 = getelementptr inbounds i32, ptr %19, i64 %72 + %74 = load i32, ptr %5, align 4 %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds i32, i32* %73, i64 %75 - store i32 2, i32* %76, align 4 + %76 = getelementptr inbounds i32, ptr %73, i64 %75 + store i32 2, ptr %76, align 4 br label %138 77: ; preds = %66, %48 - %78 = load i8*, i8** %2, align 8 - %79 = load i32, i32* %4, align 4 + %78 = load ptr, ptr %2, align 8 + %79 = load i32, ptr %4, align 4 %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds i8, i8* %78, i64 %80 - %82 = load i8, i8* %81, align 1 + %81 = getelementptr inbounds i8, ptr %78, i64 %80 + %82 = load i8, ptr %81, align 1 %83 = sext i8 %82 to i32 - %84 = load i8*, i8** %2, align 8 - %85 = load i32, i32* %5, align 4 + %84 = load ptr, ptr %2, align 8 + %85 = load i32, ptr %5, align 4 %86 = sext i32 %85 to i64 - %87 = getelementptr inbounds i8, i8* %84, i64 %86 - %88 = load i8, i8* %87, align 1 + %87 = getelementptr inbounds i8, ptr %84, i64 %86 + %88 = load i8, ptr %87, align 1 %89 = sext i8 %88 to i32 %90 = icmp eq i32 %83, %89 br i1 %90, label %91, label %110 91: ; preds = %77 - %92 = load i32, i32* %4, align 4 + %92 = load i32, ptr %4, align 4 %93 = add nsw i32 %92, 1 %94 = sext i32 %93 to i64 %95 = mul nsw i64 %94, %16 - %96 = getelementptr inbounds i32, i32* %19, i64 %95 - %97 = load i32, i32* %5, align 4 + %96 = getelementptr inbounds i32, ptr %19, i64 %95 + %97 = load i32, ptr %5, align 4 %98 = sub nsw i32 %97, 1 %99 = sext i32 %98 to i64 - %100 = getelementptr inbounds i32, i32* %96, i64 %99 - %101 = load i32, i32* %100, align 4 + %100 = getelementptr inbounds i32, ptr %96, i64 %99 + %101 = load i32, ptr %100, align 4 %102 = add nsw i32 %101, 2 - %103 = load i32, i32* %4, align 4 + %103 = load i32, ptr %4, align 4 %104 = sext i32 %103 to i64 %105 = mul nsw i64 %104, %16 - %106 = getelementptr inbounds i32, i32* %19, i64 %105 - %107 = load i32, i32* %5, align 4 + %106 = getelementptr inbounds i32, ptr %19, i64 %105 + %107 = load i32, ptr %5, align 4 %108 = sext i32 %107 to i64 - %109 = getelementptr inbounds i32, i32* %106, i64 %108 - store i32 %102, i32* %109, align 4 + %109 = getelementptr inbounds i32, ptr %106, i64 %108 + store i32 %102, ptr %109, align 4 br label %137 110: ; preds = %77 - %111 = load i32, i32* %4, align 4 + %111 = load i32, ptr %4, align 4 %112 = sext i32 %111 to i64 %113 = mul nsw i64 %112, %16 - %114 = getelementptr inbounds i32, i32* %19, i64 %113 - %115 = load i32, i32* %5, align 4 + %114 = getelementptr inbounds i32, ptr %19, i64 %113 + %115 = load i32, ptr %5, align 4 %116 = sub nsw i32 %115, 1 %117 = sext i32 %116 to i64 - %118 = getelementptr inbounds i32, i32* %114, i64 %117 - %119 = load i32, i32* %118, align 4 - %120 = load i32, i32* %4, align 4 + %118 = getelementptr inbounds i32, ptr %114, i64 %117 + %119 = load i32, ptr %118, align 4 + %120 = load i32, ptr %4, align 4 %121 = add nsw i32 %120, 1 %122 = sext i32 %121 to i64 %123 = mul nsw i64 %122, %16 - %124 = getelementptr inbounds i32, i32* %19, i64 %123 - %125 = load i32, i32* %5, align 4 + %124 = getelementptr inbounds i32, ptr %19, i64 %123 + %125 = load i32, ptr %5, align 4 %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds i32, i32* %124, i64 %126 - %128 = load i32, i32* %127, align 4 + %127 = getelementptr inbounds i32, ptr %124, i64 %126 + %128 = load i32, ptr %127, align 4 %129 = call noundef i32 @_Z3maxii(i32 noundef %119, i32 noundef %128) - %130 = load i32, i32* %4, align 4 + %130 = load i32, ptr %4, align 4 %131 = sext i32 %130 to i64 %132 = mul nsw i64 %131, %16 - %133 = getelementptr inbounds i32, i32* %19, i64 %132 - %134 = load i32, i32* %5, align 4 + %133 = getelementptr inbounds i32, ptr %19, i64 %132 + %134 = load i32, ptr %5, align 4 %135 = sext i32 %134 to i64 - %136 = getelementptr inbounds i32, i32* %133, i64 %135 - store i32 %129, i32* %136, align 4 + %136 = getelementptr inbounds i32, ptr %133, i64 %135 + store i32 %129, ptr %136, align 4 br label %137 137: ; preds = %110, %91 @@ -216,85 +216,84 @@ define dso_local noundef i32 @_Z3lpsPc(i8* noundef %0) #0 { br label %139 139: ; preds = %138 - %140 = load i32, i32* %4, align 4 + %140 = load i32, ptr %4, align 4 %141 = add nsw i32 %140, 1 - store i32 %141, i32* %4, align 4 + store i32 %141, ptr %4, align 4 br label %41, !llvm.loop !8 142: ; preds = %41 br label %143 143: ; preds = %142 - %144 = load i32, i32* %6, align 4 + %144 = load i32, ptr %6, align 4 %145 = add nsw i32 %144, 1 - store i32 %145, i32* %6, align 4 + store i32 %145, ptr %6, align 4 br label %36, !llvm.loop !9 146: ; preds = %36 %147 = mul nsw i64 0, %16 - %148 = getelementptr inbounds i32, i32* %19, i64 %147 - %149 = load i32, i32* %3, align 4 + %148 = getelementptr inbounds i32, ptr %19, i64 %147 + %149 = load i32, ptr %3, align 4 %150 = sub nsw i32 %149, 1 %151 = sext i32 %150 to i64 - %152 = getelementptr inbounds i32, i32* %148, i64 %151 - %153 = load i32, i32* %152, align 4 - %154 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %154) + %152 = getelementptr inbounds i32, ptr %148, i64 %151 + %153 = load i32, ptr %152, align 4 + %154 = load ptr, ptr %7, align 8 + call void @llvm.stackrestore(ptr %154) ret i32 %153 } -; Function Attrs: nounwind readonly willreturn -declare i64 @strlen(i8* noundef) #1 +; Function Attrs: nounwind willreturn memory(read) +declare i64 @strlen(ptr noundef) #1 -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #2 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #2 -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #2 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #2 ; 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 - store i32 0, i32* %1, align 4 - %4 = bitcast [16 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 getelementptr inbounds ([16 x i8], [16 x i8]* @__const.main.seq, i32 0, i32 0), i64 16, i1 false) - %5 = getelementptr inbounds [16 x i8], [16 x i8]* %2, i64 0, i64 0 - %6 = call i64 @strlen(i8* 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 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() + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.seq, i64 16, i1 false) + %4 = getelementptr inbounds [16 x i8], ptr %2, i64 0, i64 0 + %5 = call i64 @strlen(ptr noundef %4) #6 + %6 = trunc i64 %5 to i32 + store i32 %6, ptr %3, align 4 + %7 = getelementptr inbounds [16 x i8], ptr %2, i64 0, i64 0 + %8 = call noundef i32 @_Z3lpsPc(ptr noundef %7) + %9 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %8) + %10 = call i32 @getchar() ret i32 0 } -; 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 +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 -declare i32 @printf(i8* noundef, ...) #5 +declare i32 @printf(ptr noundef, ...) #5 declare i32 @getchar() #5 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 #1 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-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 = { nocallback nofree nosync nounwind willreturn } 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 #4 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } 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 } +attributes #6 = { nounwind willreturn memory(read) } !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} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-path-directed-acyclic-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-path-directed-acyclic-graph.ll new file mode 100644 index 000000000..5a5464e1c --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/longest-path-directed-acyclic-graph.ll @@ -0,0 +1,3460 @@ +; ModuleID = 'PE-benchmarks/longest-path-directed-acyclic-graph.cpp' +source_filename = "PE-benchmarks/longest-path-directed-acyclic-graph.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%class.AdjListNode = type { i32, i32 } +%"struct.std::_List_iterator" = type { ptr } +%"class.std::stack" = type { %"class.std::deque" } +%"class.std::deque" = type { %"class.std::_Deque_base" } +%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } +%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } +%"struct.std::_Deque_base>::_Deque_impl_data" = type { ptr, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } +%"struct.std::_Deque_iterator" = type { ptr, ptr, ptr, ptr } +%"struct.std::_List_node" = type { %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf" } +%"struct.__gnu_cxx::__aligned_membuf" = type { [8 x i8] } +%"class.std::allocator.3" = type { i8 } +%"struct.std::__allocated_ptr" = type { ptr, ptr } + +$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EEC2Ev = comdat any + +$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EED2Ev = comdat any + +$_ZN11AdjListNodeC2Eii = comdat any + +$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9push_backERKS1_ = comdat any + +$_ZNSt14_List_iteratorI11AdjListNodeEC2Ev = comdat any + +$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorI11AdjListNodeES3_ = comdat any + +$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv = comdat any + +$_ZNKSt14_List_iteratorI11AdjListNodeEdeEv = comdat any + +$_ZN11AdjListNode4getVEv = comdat any + +$_ZNSt14_List_iteratorI11AdjListNodeEppEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any + +$_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv = comdat any + +$_ZNKSt14_List_iteratorI11AdjListNodeEptEv = comdat any + +$_ZN11AdjListNode9getWeightEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EED2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE8_M_clearEv = comdat any + +$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implD2Ev = comdat any + +$_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E = comdat any + +$_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE7_M_addrEv = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS2_m = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev = comdat any + +$_ZNSt5dequeIiSaIiEED2Ev = comdat any + +$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any + +$_ZNSt5dequeIiSaIiEE5beginEv = comdat any + +$_ZNSt5dequeIiSaIiEE3endEv = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any + +$_ZSt16__deque_buf_sizem = comdat any + +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any + +$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any + +$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any + +$_ZNSt15__new_allocatorIPiED2Ev = comdat any + +$_ZNSt15__new_allocatorIiED2Ev = comdat any + +$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_ = comdat any + +$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_get_nodeEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEC2ERS3_PS2_ = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv = comdat any + +$_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE = comdat any + +$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any + +$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any + +$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any + +$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any + +$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any + +$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any + +$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any + +$_ZSt3minImERKT_S2_S2_ = comdat any + +$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any + +$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any + +$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any + +$_ZSt3maxImERKT_S2_S2_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any + +$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__miter_baseIPPiET_S2_ = comdat any + +$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any + +$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__niter_baseIPPiET_S2_ = comdat any + +$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_ = comdat any + +$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any + +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any + +$_ZNSt5dequeIiSaIiEEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any + +$_ZNKSt5dequeIiSaIiEE5emptyEv = comdat any + +$_ZSteqRKSt15_Deque_iteratorIiRiPiES4_ = comdat any + +$_ZNSt5dequeIiSaIiEE4backEv = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEmmEv = comdat any + +$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any + +$_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any + +$_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any + +@_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 +@.str.3 = private unnamed_addr constant [3 x i8] c" \0A\00", align 1 +@.str.4 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 + +@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei +@_ZN5GraphD1Ev = dso_local unnamed_addr alias void (ptr), ptr @_ZN5GraphD2Ev + +; Function Attrs: noinline uwtable +define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #0 align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + store i32 %6, ptr %7, align 8 + %8 = load i32, ptr %4, align 4 + %9 = sext i32 %8 to i64 + %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) + %11 = extractvalue { i64, i1 } %10, 1 + %12 = extractvalue { i64, i1 } %10, 0 + %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = or i1 %11, %14 + %16 = extractvalue { i64, i1 } %13, 0 + %17 = select i1 %15, i64 -1, i64 %16 + %18 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #15 + store i64 %9, ptr %18, align 16 + %19 = getelementptr inbounds i8, ptr %18, i64 8 + %20 = icmp eq i64 %9, 0 + br i1 %20, label %27, label %21 + +21: ; preds = %2 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %9 + br label %23 + +23: ; preds = %23, %21 + %24 = phi ptr [ %19, %21 ], [ %25, %23 ] + call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #16 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 1 + %26 = icmp eq ptr %25, %22 + br i1 %26, label %27, label %23 + +27: ; preds = %2, %23 + %28 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + store ptr %19, ptr %28, align 8 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #16 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define dso_local void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %class.Graph, ptr %3, i32 0, i32 1 + %5 = load ptr, ptr %4, align 8 + %6 = icmp eq ptr %5, null + br i1 %6, label %17, label %7 + +7: ; preds = %1 + %8 = getelementptr inbounds i8, ptr %5, i64 -8 + %9 = load i64, ptr %8, align 8 + %10 = getelementptr inbounds %"class.std::__cxx11::list", ptr %5, i64 %9 + %11 = icmp eq ptr %5, %10 + br i1 %11, label %16, label %12 + +12: ; preds = %12, %7 + %13 = phi ptr [ %10, %7 ], [ %14, %12 ] + %14 = getelementptr inbounds %"class.std::__cxx11::list", ptr %13, i64 -1 + call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %14) #16 + %15 = icmp eq ptr %14, %5 + br i1 %15, label %16, label %12 + +16: ; preds = %12, %7 + call void @_ZdaPv(ptr noundef %8) #17 + br label %17 + +17: ; preds = %16, %1 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #16 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdaPv(ptr noundef) #4 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEiii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #5 align 2 { + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca %class.AdjListNode, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store i32 %2, ptr %7, align 4 + store i32 %3, ptr %8, align 4 + %10 = load ptr, ptr %5, align 8 + %11 = load i32, ptr %7, align 4 + %12 = load i32, ptr %8, align 4 + call void @_ZN11AdjListNodeC2Eii(ptr noundef nonnull align 4 dereferenceable(8) %9, i32 noundef %11, i32 noundef %12) + %13 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + %15 = load i32, ptr %6, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds %"class.std::__cxx11::list", ptr %14, i64 %16 + call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9push_backERKS1_(ptr noundef nonnull align 8 dereferenceable(24) %17, ptr noundef nonnull align 4 dereferenceable(8) %9) + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN11AdjListNodeC2Eii(ptr noundef nonnull align 4 dereferenceable(8) %0, i32 noundef %1, i32 noundef %2) unnamed_addr #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = load i32, ptr %5, align 4 + %9 = getelementptr inbounds %class.AdjListNode, ptr %7, i32 0, i32 0 + store i32 %8, ptr %9, align 4 + %10 = load i32, ptr %6, align 4 + %11 = getelementptr inbounds %class.AdjListNode, ptr %7, i32 0, i32 1 + store i32 %10, ptr %11, align 4 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9push_backERKS1_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(8) %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #16 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(8) %9) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, ptr noundef %2, ptr noundef nonnull align 8 dereferenceable(80) %3) #5 align 2 { + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca %"struct.std::_List_iterator", align 8 + %10 = alloca %"struct.std::_List_iterator", align 8 + %11 = alloca %"struct.std::_List_iterator", align 8 + %12 = alloca %class.AdjListNode, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %13 = load ptr, ptr %5, align 8 + %14 = load ptr, ptr %7, align 8 + %15 = load i32, ptr %6, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds i8, ptr %14, i64 %16 + store i8 1, ptr %17, align 1 + call void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %9) #16 + %18 = getelementptr inbounds %class.Graph, ptr %13, i32 0, i32 1 + %19 = load ptr, ptr %18, align 8 + %20 = load i32, ptr %6, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %21 + %23 = call ptr @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %22) #16 + %24 = getelementptr inbounds %"struct.std::_List_iterator", ptr %10, i32 0, i32 0 + store ptr %23, ptr %24, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %10, i64 8, i1 false) + br label %25 + +25: ; preds = %47, %4 + %26 = getelementptr inbounds %class.Graph, ptr %13, i32 0, i32 1 + %27 = load ptr, ptr %26, align 8 + %28 = load i32, ptr %6, align 4 + %29 = sext i32 %28 to i64 + %30 = getelementptr inbounds %"class.std::__cxx11::list", ptr %27, i64 %29 + %31 = call ptr @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %30) #16 + %32 = getelementptr inbounds %"struct.std::_List_iterator", ptr %11, i32 0, i32 0 + store ptr %31, ptr %32, align 8 + %33 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorI11AdjListNodeES3_(ptr noundef nonnull align 8 dereferenceable(8) %9, ptr noundef nonnull align 8 dereferenceable(8) %11) #16 + br i1 %33, label %34, label %49 + +34: ; preds = %25 + %35 = call noundef nonnull align 4 dereferenceable(8) ptr @_ZNKSt14_List_iteratorI11AdjListNodeEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #16 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %12, ptr align 4 %35, i64 8, i1 false) + %36 = load ptr, ptr %7, align 8 + %37 = call noundef i32 @_ZN11AdjListNode4getVEv(ptr noundef nonnull align 4 dereferenceable(8) %12) + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds i8, ptr %36, i64 %38 + %40 = load i8, ptr %39, align 1 + %41 = trunc i8 %40 to i1 + br i1 %41, label %46, label %42 + +42: ; preds = %34 + %43 = call noundef i32 @_ZN11AdjListNode4getVEv(ptr noundef nonnull align 4 dereferenceable(8) %12) + %44 = load ptr, ptr %7, align 8 + %45 = load ptr, ptr %8, align 8 + call void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr noundef nonnull align 8 dereferenceable(16) %13, i32 noundef %43, ptr noundef %44, ptr noundef nonnull align 8 dereferenceable(80) %45) + br label %46 + +46: ; preds = %42, %34 + br label %47 + +47: ; preds = %46 + %48 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorI11AdjListNodeEppEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #16 + br label %25, !llvm.loop !6 + +49: ; preds = %25 + %50 = load ptr, ptr %8, align 8 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %50, ptr noundef nonnull align 4 dereferenceable(4) %6) + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #16 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorI11AdjListNodeES3_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #16 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(8) ptr @_ZNKSt14_List_iteratorI11AdjListNodeEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(24) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32 @_ZN11AdjListNode4getVEv(ptr noundef nonnull align 4 dereferenceable(8) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %class.AdjListNode, ptr %3, i32 0, i32 0 + %5 = load i32, ptr %4, align 4 + ret i32 %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorI11AdjListNodeEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"class.std::stack", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + call void @_ZNSt5dequeIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(80) %6, ptr noundef nonnull align 4 dereferenceable(4) %7) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph11longestPathEi(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) #5 align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca %"class.std::stack", align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + %15 = alloca %"struct.std::_List_iterator", align 8 + %16 = alloca %"struct.std::_List_iterator", align 8 + %17 = alloca %"struct.std::_List_iterator", align 8 + %18 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %19 = load ptr, ptr %3, align 8 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %5) + %20 = getelementptr inbounds %class.Graph, ptr %19, i32 0, i32 0 + %21 = load i32, ptr %20, align 8 + %22 = zext i32 %21 to i64 + %23 = call ptr @llvm.stacksave() + store ptr %23, ptr %6, align 8 + %24 = alloca i32, i64 %22, align 16 + store i64 %22, ptr %7, align 8 + %25 = getelementptr inbounds %class.Graph, ptr %19, i32 0, i32 0 + %26 = load i32, ptr %25, align 8 + %27 = sext i32 %26 to i64 + %28 = invoke noalias noundef nonnull ptr @_Znam(i64 noundef %27) #15 + to label %29 unwind label %43 + +29: ; preds = %2 + store ptr %28, ptr %8, align 8 + store i32 0, ptr %11, align 4 + br label %30 + +30: ; preds = %40, %29 + %31 = load i32, ptr %11, align 4 + %32 = getelementptr inbounds %class.Graph, ptr %19, i32 0, i32 0 + %33 = load i32, ptr %32, align 8 + %34 = icmp slt i32 %31, %33 + br i1 %34, label %35, label %47 + +35: ; preds = %30 + %36 = load ptr, ptr %8, align 8 + %37 = load i32, ptr %11, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds i8, ptr %36, i64 %38 + store i8 0, ptr %39, align 1 + br label %40 + +40: ; preds = %35 + %41 = load i32, ptr %11, align 4 + %42 = add nsw i32 %41, 1 + store i32 %42, ptr %11, align 4 + br label %30, !llvm.loop !8 + +43: ; preds = %175, %169, %166, %142, %135, %122, %119, %94, %92, %87, %62, %2 + %44 = landingpad { ptr, i32 } + cleanup + %45 = extractvalue { ptr, i32 } %44, 0 + store ptr %45, ptr %9, align 8 + %46 = extractvalue { ptr, i32 } %44, 1 + store i32 %46, ptr %10, align 4 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #16 + br label %189 + +47: ; preds = %30 + store i32 0, ptr %12, align 4 + br label %48 + +48: ; preds = %67, %47 + %49 = load i32, ptr %12, align 4 + %50 = getelementptr inbounds %class.Graph, ptr %19, i32 0, i32 0 + %51 = load i32, ptr %50, align 8 + %52 = icmp slt i32 %49, %51 + br i1 %52, label %53, label %70 + +53: ; preds = %48 + %54 = load ptr, ptr %8, align 8 + %55 = load i32, ptr %12, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i8, ptr %54, i64 %56 + %58 = load i8, ptr %57, align 1 + %59 = trunc i8 %58 to i1 + %60 = zext i1 %59 to i32 + %61 = icmp eq i32 %60, 0 + br i1 %61, label %62, label %66 + +62: ; preds = %53 + %63 = load i32, ptr %12, align 4 + %64 = load ptr, ptr %8, align 8 + invoke void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr noundef nonnull align 8 dereferenceable(16) %19, i32 noundef %63, ptr noundef %64, ptr noundef nonnull align 8 dereferenceable(80) %5) + to label %65 unwind label %43 + +65: ; preds = %62 + br label %66 + +66: ; preds = %65, %53 + br label %67 + +67: ; preds = %66 + %68 = load i32, ptr %12, align 4 + %69 = add nsw i32 %68, 1 + store i32 %69, ptr %12, align 4 + br label %48, !llvm.loop !9 + +70: ; preds = %48 + store i32 0, ptr %13, align 4 + br label %71 + +71: ; preds = %80, %70 + %72 = load i32, ptr %13, align 4 + %73 = getelementptr inbounds %class.Graph, ptr %19, i32 0, i32 0 + %74 = load i32, ptr %73, align 8 + %75 = icmp slt i32 %72, %74 + br i1 %75, label %76, label %83 + +76: ; preds = %71 + %77 = load i32, ptr %13, align 4 + %78 = sext i32 %77 to i64 + %79 = getelementptr inbounds i32, ptr %24, i64 %78 + store i32 -2147483648, ptr %79, align 4 + br label %80 + +80: ; preds = %76 + %81 = load i32, ptr %13, align 4 + %82 = add nsw i32 %81, 1 + store i32 %82, ptr %13, align 4 + br label %71, !llvm.loop !10 + +83: ; preds = %71 + %84 = load i32, ptr %4, align 4 + %85 = sext i32 %84 to i64 + %86 = getelementptr inbounds i32, ptr %24, i64 %85 + store i32 0, ptr %86, align 4 + br label %87 + +87: ; preds = %153, %83 + %88 = invoke noundef zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %5) + to label %89 unwind label %43 + +89: ; preds = %87 + %90 = zext i1 %88 to i32 + %91 = icmp eq i32 %90, 0 + br i1 %91, label %92, label %154 + +92: ; preds = %89 + %93 = invoke noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(ptr noundef nonnull align 8 dereferenceable(80) %5) + to label %94 unwind label %43 + +94: ; preds = %92 + %95 = load i32, ptr %93, align 4 + store i32 %95, ptr %14, align 4 + invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %5) + to label %96 unwind label %43 + +96: ; preds = %94 + call void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #16 + %97 = load i32, ptr %14, align 4 + %98 = sext i32 %97 to i64 + %99 = getelementptr inbounds i32, ptr %24, i64 %98 + %100 = load i32, ptr %99, align 4 + %101 = icmp ne i32 %100, -2147483648 + br i1 %101, label %102, label %153 + +102: ; preds = %96 + %103 = getelementptr inbounds %class.Graph, ptr %19, i32 0, i32 1 + %104 = load ptr, ptr %103, align 8 + %105 = load i32, ptr %14, align 4 + %106 = sext i32 %105 to i64 + %107 = getelementptr inbounds %"class.std::__cxx11::list", ptr %104, i64 %106 + %108 = call ptr @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %107) #16 + %109 = getelementptr inbounds %"struct.std::_List_iterator", ptr %16, i32 0, i32 0 + store ptr %108, ptr %109, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %15, ptr align 8 %16, i64 8, i1 false) + br label %110 + +110: ; preds = %150, %102 + %111 = getelementptr inbounds %class.Graph, ptr %19, i32 0, i32 1 + %112 = load ptr, ptr %111, align 8 + %113 = load i32, ptr %14, align 4 + %114 = sext i32 %113 to i64 + %115 = getelementptr inbounds %"class.std::__cxx11::list", ptr %112, i64 %114 + %116 = call ptr @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %115) #16 + %117 = getelementptr inbounds %"struct.std::_List_iterator", ptr %17, i32 0, i32 0 + store ptr %116, ptr %117, align 8 + %118 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorI11AdjListNodeES3_(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef nonnull align 8 dereferenceable(8) %17) #16 + br i1 %118, label %119, label %152 + +119: ; preds = %110 + %120 = call noundef ptr @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(ptr noundef nonnull align 8 dereferenceable(8) %15) #16 + %121 = invoke noundef i32 @_ZN11AdjListNode4getVEv(ptr noundef nonnull align 4 dereferenceable(8) %120) + to label %122 unwind label %43 + +122: ; preds = %119 + %123 = sext i32 %121 to i64 + %124 = getelementptr inbounds i32, ptr %24, i64 %123 + %125 = load i32, ptr %124, align 4 + %126 = load i32, ptr %14, align 4 + %127 = sext i32 %126 to i64 + %128 = getelementptr inbounds i32, ptr %24, i64 %127 + %129 = load i32, ptr %128, align 4 + %130 = call noundef ptr @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(ptr noundef nonnull align 8 dereferenceable(8) %15) #16 + %131 = invoke noundef i32 @_ZN11AdjListNode9getWeightEv(ptr noundef nonnull align 4 dereferenceable(8) %130) + to label %132 unwind label %43 + +132: ; preds = %122 + %133 = add nsw i32 %129, %131 + %134 = icmp slt i32 %125, %133 + br i1 %134, label %135, label %149 + +135: ; preds = %132 + %136 = load i32, ptr %14, align 4 + %137 = sext i32 %136 to i64 + %138 = getelementptr inbounds i32, ptr %24, i64 %137 + %139 = load i32, ptr %138, align 4 + %140 = call noundef ptr @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(ptr noundef nonnull align 8 dereferenceable(8) %15) #16 + %141 = invoke noundef i32 @_ZN11AdjListNode9getWeightEv(ptr noundef nonnull align 4 dereferenceable(8) %140) + to label %142 unwind label %43 + +142: ; preds = %135 + %143 = add nsw i32 %139, %141 + %144 = call noundef ptr @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(ptr noundef nonnull align 8 dereferenceable(8) %15) #16 + %145 = invoke noundef i32 @_ZN11AdjListNode4getVEv(ptr noundef nonnull align 4 dereferenceable(8) %144) + to label %146 unwind label %43 + +146: ; preds = %142 + %147 = sext i32 %145 to i64 + %148 = getelementptr inbounds i32, ptr %24, i64 %147 + store i32 %143, ptr %148, align 4 + br label %149 + +149: ; preds = %146, %132 + br label %150 + +150: ; preds = %149 + %151 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorI11AdjListNodeEppEv(ptr noundef nonnull align 8 dereferenceable(8) %15) #16 + br label %110, !llvm.loop !11 + +152: ; preds = %110 + br label %153 + +153: ; preds = %152, %96 + br label %87, !llvm.loop !12 + +154: ; preds = %89 + store i32 0, ptr %18, align 4 + br label %155 + +155: ; preds = %180, %154 + %156 = load i32, ptr %18, align 4 + %157 = getelementptr inbounds %class.Graph, ptr %19, i32 0, i32 0 + %158 = load i32, ptr %157, align 8 + %159 = icmp slt i32 %156, %158 + br i1 %159, label %160, label %183 + +160: ; preds = %155 + %161 = load i32, ptr %18, align 4 + %162 = sext i32 %161 to i64 + %163 = getelementptr inbounds i32, ptr %24, i64 %162 + %164 = load i32, ptr %163, align 4 + %165 = icmp eq i32 %164, -2147483648 + br i1 %165, label %166, label %169 + +166: ; preds = %160 + %167 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + to label %168 unwind label %43 + +168: ; preds = %166 + br label %178 + +169: ; preds = %160 + %170 = load i32, ptr %18, align 4 + %171 = sext i32 %170 to i64 + %172 = getelementptr inbounds i32, ptr %24, i64 %171 + %173 = load i32, ptr %172, align 4 + %174 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %173) + to label %175 unwind label %43 + +175: ; preds = %169 + %176 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %174, ptr noundef @.str.1) + to label %177 unwind label %43 + +177: ; preds = %175 + br label %178 + +178: ; preds = %177, %168 + %179 = phi ptr [ %167, %168 ], [ %176, %177 ] + br label %180 + +180: ; preds = %178 + %181 = load i32, ptr %18, align 4 + %182 = add nsw i32 %181, 1 + store i32 %182, ptr %18, align 4 + br label %155, !llvm.loop !13 + +183: ; preds = %155 + %184 = load ptr, ptr %8, align 8 + %185 = icmp eq ptr %184, null + br i1 %185, label %187, label %186 + +186: ; preds = %183 + call void @_ZdaPv(ptr noundef %184) #17 + br label %187 + +187: ; preds = %186, %183 + %188 = load ptr, ptr %6, align 8 + call void @llvm.stackrestore(ptr %188) + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #16 + ret void + +189: ; preds = %43 + %190 = load ptr, ptr %9, align 8 + %191 = load i32, ptr %10, align 4 + %192 = insertvalue { ptr, i32 } poison, ptr %190, 0 + %193 = insertvalue { ptr, i32 } %192, i32 %191, 1 + resume { ptr, i32 } %193 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + call void @llvm.memset.p0.i64(ptr align 8 %4, i8 0, i64 80, i1 false) + call void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %4) + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #8 + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + %5 = call noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #16 + ret i1 %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + %5 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5dequeIiSaIiEE4backEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #16 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + call void @_ZNSt5dequeIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #16 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(24) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32 @_ZN11AdjListNode9getWeightEv(ptr noundef nonnull align 4 dereferenceable(8) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %class.AdjListNode, ptr %3, i32 0, i32 1 + %5 = load i32, ptr %4, align 4 + ret i32 %5 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #9 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #9 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #8 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + call void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %4) #16 + ret void +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #10 personality ptr @__gxx_personality_v0 { + %1 = alloca i32, align 4 + %2 = alloca %class.Graph, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 6) + invoke void @_ZN5Graph7addEdgeEiii(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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(ptr 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, ptr %5, align 4 + %16 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + to label %17 unwind label %26 + +17: ; preds = %15 + %18 = load i32, ptr %5, align 4 + %19 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %16, i32 noundef %18) + to label %20 unwind label %26 + +20: ; preds = %17 + %21 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %19, ptr noundef @.str.3) + to label %22 unwind label %26 + +22: ; preds = %20 + %23 = load i32, ptr %5, align 4 + invoke void @_ZN5Graph11longestPathEi(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef %23) + to label %24 unwind label %26 + +24: ; preds = %22 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphD1Ev(ptr noundef nonnull align 8 dereferenceable(16) %2) #16 + %25 = load i32, ptr %1, align 4 + ret i32 %25 + +26: ; preds = %22, %20, %17, %15, %14, %13, %12, %11, %10, %9, %8, %7, %6, %0 + %27 = landingpad { ptr, i32 } + cleanup + %28 = extractvalue { ptr, i32 } %27, 0 + store ptr %28, ptr %3, align 8 + %29 = extractvalue { ptr, i32 } %27, 1 + store i32 %29, ptr %4, align 4 + call void @_ZN5GraphD1Ev(ptr noundef nonnull align 8 dereferenceable(16) %2) #16 + br label %30 + +30: ; preds = %26 + %31 = load ptr, ptr %3, align 8 + %32 = load i32, ptr %4, align 4 + %33 = insertvalue { ptr, i32 } poison, ptr %31, 0 + %34 = insertvalue { ptr, i32 } %33, i32 %32, 1 + resume { ptr, i32 } %34 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #16 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #16 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #16 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE8_M_clearEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #16 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #16 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE8_M_clearEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %10, i32 0, i32 0 + %12 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %11, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %12, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + store ptr %14, ptr %7, align 8 + br label %15 + +15: ; preds = %27, %1 + %16 = load ptr, ptr %7, align 8 + %17 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %10, i32 0, i32 0 + %18 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %17, i32 0, i32 0 + %19 = icmp ne ptr %16, %18 + br i1 %19, label %20, label %35 + +20: ; preds = %15 + %21 = load ptr, ptr %7, align 8 + store ptr %21, ptr %8, align 8 + %22 = load ptr, ptr %8, align 8 + %23 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %22, i32 0, i32 0 + %24 = load ptr, ptr %23, align 8 + store ptr %24, ptr %7, align 8 + %25 = load ptr, ptr %8, align 8 + %26 = invoke noundef ptr @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(24) %25) + to label %27 unwind label %36 + +27: ; preds = %20 + store ptr %26, ptr %9, align 8 + %28 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #16 + %29 = load ptr, ptr %9, align 8 + store ptr %28, ptr %4, align 8 + store ptr %29, ptr %5, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + store ptr %30, ptr %2, align 8 + store ptr %31, ptr %3, align 8 + %32 = load ptr, ptr %2, align 8 + %33 = load ptr, ptr %3, align 8 + %34 = load ptr, ptr %8, align 8 + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E(ptr noundef nonnull align 8 dereferenceable(24) %10, ptr noundef %34) #16 + br label %15, !llvm.loop !14 + +35: ; preds = %15 + ret void + +36: ; preds = %20 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #18 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #16 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(8) %4) #16 + ret ptr %5 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #16 + call void @_ZSt9terminatev() #18 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef %1) #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %7, align 8 + store ptr %9, ptr %3, align 8 + store ptr %10, ptr %4, align 8 + store i64 1, ptr %5, align 8 + %11 = load ptr, ptr %3, align 8 + %12 = load ptr, ptr %4, align 8 + %13 = load i64, ptr %5, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %11, ptr noundef %12, i64 noundef %13) + br label %14 + +14: ; preds = %2 + ret void + +15: ; No predecessors! + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #18 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(8) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(8) %3) #16 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(8) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #6 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #4 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_Deque_iterator", align 8 + %4 = alloca %"struct.std::_Deque_iterator", align 8 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt5dequeIiSaIiEE5beginEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %3, ptr noundef nonnull align 8 dereferenceable(80) %5) #16 + call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %4, ptr noundef nonnull align 8 dereferenceable(80) %5) #16 + %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #16 + invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(ptr noundef nonnull align 8 dereferenceable(80) %5, ptr noundef %3, ptr noundef %4, ptr noundef nonnull align 1 dereferenceable(1) %6) + to label %7 unwind label %8 + +7: ; preds = %1 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #16 + ret void + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + catch ptr null + %10 = extractvalue { ptr, i32 } %9, 0 + call void @__clang_call_terminate(ptr %10) #18 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #6 comdat align 2 { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %3, ptr %6, align 8 + %7 = load ptr, ptr %5, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %7) #16 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %7) #16 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 0 + %6 = load ptr, ptr %5, align 8 + %7 = icmp ne ptr %6, null + br i1 %7, label %8, label %24 + +8: ; preds = %1 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %9, i32 0, i32 2 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %10, i32 0, i32 3 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %14 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %13, i32 0, i32 3 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %14, i32 0, i32 3 + %16 = load ptr, ptr %15, align 8 + %17 = getelementptr inbounds ptr, ptr %16, i64 1 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %12, ptr noundef %17) #16 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 0 + %20 = load ptr, ptr %19, align 8 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 1 + %23 = load i64, ptr %22, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %20, i64 noundef %23) #16 + br label %24 + +24: ; preds = %8, %1 + %25 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %25) #16 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + store ptr %9, ptr %6, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 1 + %13 = load ptr, ptr %12, align 8 + store ptr %13, ptr %10, align 8 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + %15 = load ptr, ptr %4, align 8 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 2 + %17 = load ptr, ptr %16, align 8 + store ptr %17, ptr %14, align 8 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + %19 = load ptr, ptr %4, align 8 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + store ptr %21, ptr %18, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #6 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %7, align 8 + br label %10 + +10: ; preds = %17, %3 + %11 = load ptr, ptr %7, align 8 + %12 = load ptr, ptr %6, align 8 + %13 = icmp ult ptr %11, %12 + br i1 %13, label %14, label %20 + +14: ; preds = %10 + %15 = load ptr, ptr %7, align 8 + %16 = load ptr, ptr %15, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %8, ptr noundef %16) #16 + br label %17 + +17: ; preds = %14 + %18 = load ptr, ptr %7, align 8 + %19 = getelementptr inbounds ptr, ptr %18, i32 1 + store ptr %19, ptr %7, align 8 + br label %10, !llvm.loop !15 + +20: ; preds = %10 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, i64 noundef %2) #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca %"class.std::allocator.3", align 1 + store ptr %0, ptr %8, align 8 + store ptr %1, ptr %9, align 8 + store i64 %2, ptr %10, align 8 + %12 = load ptr, ptr %8, align 8 + call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %11, ptr noundef nonnull align 8 dereferenceable(80) %12) #16 + %13 = load ptr, ptr %9, align 8 + %14 = load i64, ptr %10, align 8 + store ptr %11, ptr %5, align 8 + store ptr %13, ptr %6, align 8 + store i64 %14, ptr %7, align 8 + %15 = load ptr, ptr %5, align 8 + %16 = load ptr, ptr %6, align 8 + %17 = load i64, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %3 + store ptr %11, ptr %4, align 8 + %19 = load ptr, ptr %4, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #16 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #18 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #16 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1) #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %7, align 8 + %11 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + to label %12 unwind label %17 + +12: ; preds = %2 + store ptr %9, ptr %3, align 8 + store ptr %10, ptr %4, align 8 + store i64 %11, ptr %5, align 8 + %13 = load ptr, ptr %3, align 8 + %14 = load ptr, ptr %4, align 8 + %15 = load i64, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14, i64 noundef %15) + br label %16 + +16: ; preds = %12 + ret void + +17: ; preds = %2 + %18 = landingpad { ptr, i32 } + catch ptr null + %19 = extractvalue { ptr, i32 } %18, 0 + call void @__clang_call_terminate(ptr %19) #18 + unreachable +} + +; 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, ptr %2, align 8 + %3 = load i64, ptr %2, align 8 + %4 = icmp ult i64 %3, 512 + br i1 %4, label %5, label %8 + +5: ; preds = %1 + %6 = load i64, ptr %2, align 8 + %7 = udiv i64 512, %6 + br label %9 + +8: ; preds = %1 + br label %9 + +9: ; preds = %8, %5 + %10 = phi i64 [ %7, %5 ], [ 1, %8 ] + ret i64 %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #6 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr noalias sret(%"class.std::allocator.3") align 1 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %7, align 8 + %9 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %8) #16 + store ptr %0, ptr %4, align 8 + store ptr %9, ptr %5, align 8 + %10 = load ptr, ptr %4, align 8 + store ptr %10, ptr %3, align 8 + %11 = load ptr, ptr %3, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #6 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(8) %2) #5 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(8) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #16 + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(8) %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %14 = load ptr, ptr %9, align 8 + %15 = call noundef ptr @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %14) + store ptr %15, ptr %11, align 8 + %16 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %14) #16 + store ptr %16, ptr %12, align 8 + %17 = load ptr, ptr %12, align 8 + %18 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEC2ERS3_PS2_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %18) #16 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + %21 = call noundef ptr @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(24) %20) + %22 = load ptr, ptr %10, align 8 + store ptr %19, ptr %6, align 8 + store ptr %21, ptr %7, align 8 + store ptr %22, ptr %8, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %7, align 8 + %25 = load ptr, ptr %8, align 8 + store ptr %23, ptr %3, align 8 + store ptr %24, ptr %4, align 8 + store ptr %25, ptr %5, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = load ptr, ptr %4, align 8 + %28 = load ptr, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %27, ptr align 4 %28, i64 8, i1 false) + %29 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #16 + %30 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #16 + ret ptr %30 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #12 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEC2ERS3_PS2_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #18 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #19 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #19 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #15 + ret ptr %20 +} + +; Function Attrs: noreturn +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 noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %16, i32 0, i32 3 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %17, i32 0, i32 2 + %19 = load ptr, ptr %18, align 8 + %20 = getelementptr inbounds i32, ptr %19, i64 -1 + %21 = icmp ne ptr %15, %20 + br i1 %21, label %22, label %41 + +22: ; preds = %2 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %34, align 4 + store i32 %35, ptr %33, align 4 + %36 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %36, i32 0, i32 3 + %38 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = getelementptr inbounds i32, ptr %39, i32 1 + store ptr %40, ptr %38, align 8 + br label %43 + +41: ; preds = %2 + %42 = load ptr, ptr %10, align 8 + call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %11, ptr noundef nonnull align 4 dereferenceable(4) %42) + br label %43 + +43: ; preds = %41, %22 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #16 + %13 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #16 + %14 = icmp eq i64 %12, %13 + br i1 %14, label %15, label %16 + +15: ; preds = %2 + call void @_ZSt20__throw_length_errorPKc(ptr noundef @.str.4) #19 + unreachable + +16: ; preds = %2 + call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) + %17 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 3 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i64 1 + store ptr %17, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %34, align 4 + store i32 %35, ptr %33, align 4 + %36 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %36, i32 0, i32 3 + %38 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %38, i32 0, i32 3 + %40 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %39, i32 0, i32 3 + %41 = load ptr, ptr %40, align 8 + %42 = getelementptr inbounds ptr, ptr %41, i64 1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %37, ptr noundef %42) #16 + %43 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %44 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %43, i32 0, i32 3 + %45 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %44, i32 0, i32 1 + %46 = load ptr, ptr %45, align 8 + %47 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %48 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %47, i32 0, i32 3 + %49 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %48, i32 0, i32 0 + store ptr %46, ptr %49, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 3 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + %8 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %7) #16 + ret i64 %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #16 + %5 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #16 + ret i64 %5 +} + +; Function Attrs: noreturn +declare void @_ZSt20__throw_length_errorPKc(ptr noundef) #13 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = add i64 %6, 1 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %11, i32 0, i32 3 + %13 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %12, i32 0, i32 3 + %14 = load ptr, ptr %13, align 8 + %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 0 + %17 = load ptr, ptr %16, align 8 + %18 = ptrtoint ptr %14 to i64 + %19 = ptrtoint ptr %17 to i64 + %20 = sub i64 %18, %19 + %21 = sdiv exact i64 %20, 8 + %22 = sub i64 %10, %21 + %23 = icmp ugt i64 %7, %22 + br i1 %23, label %24, label %26 + +24: ; preds = %2 + %25 = load i64, ptr %4, align 8 + call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %25, i1 noundef zeroext false) + br label %26 + +26: ; preds = %24, %2 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + store ptr %6, ptr %2, align 8 + store i64 %7, ptr %3, align 8 + %8 = load ptr, ptr %2, align 8 + %9 = load i64, ptr %3, align 8 + %10 = call noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %8, i64 noundef %9, ptr noundef null) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + store ptr %6, ptr %7, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + store ptr %9, ptr %10, align 8 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %12 = load ptr, ptr %11, align 8 + %13 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #16 + %14 = getelementptr inbounds i32, ptr %12, i64 %13 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + store ptr %14, ptr %15, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #16 + %6 = load ptr, ptr %3, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %6, i32 0, i32 3 + %8 = load ptr, ptr %7, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 3 + %11 = load ptr, ptr %10, align 8 + %12 = ptrtoint ptr %8 to i64 + %13 = ptrtoint ptr %11 to i64 + %14 = sub i64 %12, %13 + %15 = sdiv exact i64 %14, 8 + %16 = load ptr, ptr %3, align 8 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 3 + %18 = load ptr, ptr %17, align 8 + %19 = icmp ne ptr %18, null + %20 = zext i1 %19 to i64 + %21 = sub nsw i64 %15, %20 + %22 = mul nsw i64 %5, %21 + %23 = load ptr, ptr %3, align 8 + %24 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %23, i32 0, i32 0 + %25 = load ptr, ptr %24, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 1 + %28 = load ptr, ptr %27, align 8 + %29 = ptrtoint ptr %25 to i64 + %30 = ptrtoint ptr %28 to i64 + %31 = sub i64 %29, %30 + %32 = sdiv exact i64 %31, 4 + %33 = add nsw i64 %22, %32 + %34 = load ptr, ptr %4, align 8 + %35 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %34, i32 0, i32 2 + %36 = load ptr, ptr %35, align 8 + %37 = load ptr, ptr %4, align 8 + %38 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = ptrtoint ptr %36 to i64 + %41 = ptrtoint ptr %39 to i64 + %42 = sub i64 %40, %41 + %43 = sdiv exact i64 %42, 4 + %44 = add nsw i64 %33, %43 + ret i64 %44 +} + +; 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: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %0) #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %5, align 8 + store i64 9223372036854775807, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + store ptr %8, ptr %4, align 8 + %9 = load ptr, ptr %4, align 8 + store ptr %9, ptr %3, align 8 + %10 = load ptr, ptr %3, align 8 + store ptr %10, ptr %2, align 8 + %11 = load ptr, ptr %2, align 8 + store i64 2305843009213693951, ptr %7, align 8 + %12 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + to label %13 unwind label %15 + +13: ; preds = %1 + %14 = load i64, ptr %12, align 8 + ret i64 %14 + +15: ; preds = %1 + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #18 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca i8, align 1 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + %12 = zext i1 %2 to i8 + store i8 %12, ptr %6, align 1 + %13 = load ptr, ptr %4, align 8 + %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %14, i32 0, i32 3 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 3 + %17 = load ptr, ptr %16, align 8 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 2 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = ptrtoint ptr %17 to i64 + %23 = ptrtoint ptr %21 to i64 + %24 = sub i64 %22, %23 + %25 = sdiv exact i64 %24, 8 + %26 = add nsw i64 %25, 1 + store i64 %26, ptr %7, align 8 + %27 = load i64, ptr %7, align 8 + %28 = load i64, ptr %5, align 8 + %29 = add i64 %27, %28 + store i64 %29, ptr %8, align 8 + %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 1 + %32 = load i64, ptr %31, align 8 + %33 = load i64, ptr %8, align 8 + %34 = mul i64 2, %33 + %35 = icmp ugt i64 %32, %34 + br i1 %35, label %36, label %88 + +36: ; preds = %3 + %37 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %41 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %40, i32 0, i32 1 + %42 = load i64, ptr %41, align 8 + %43 = load i64, ptr %8, align 8 + %44 = sub i64 %42, %43 + %45 = udiv i64 %44, 2 + %46 = getelementptr inbounds ptr, ptr %39, i64 %45 + %47 = load i8, ptr %6, align 1 + %48 = trunc i8 %47 to i1 + br i1 %48, label %49, label %51 + +49: ; preds = %36 + %50 = load i64, ptr %5, align 8 + br label %52 + +51: ; preds = %36 + br label %52 + +52: ; preds = %51, %49 + %53 = phi i64 [ %50, %49 ], [ 0, %51 ] + %54 = getelementptr inbounds ptr, ptr %46, i64 %53 + store ptr %54, ptr %9, align 8 + %55 = load ptr, ptr %9, align 8 + %56 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %57 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %56, i32 0, i32 2 + %58 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %57, i32 0, i32 3 + %59 = load ptr, ptr %58, align 8 + %60 = icmp ult ptr %55, %59 + br i1 %60, label %61, label %73 + +61: ; preds = %52 + %62 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %62, i32 0, i32 2 + %64 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %63, i32 0, i32 3 + %65 = load ptr, ptr %64, align 8 + %66 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %66, i32 0, i32 3 + %68 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %67, i32 0, i32 3 + %69 = load ptr, ptr %68, align 8 + %70 = getelementptr inbounds ptr, ptr %69, i64 1 + %71 = load ptr, ptr %9, align 8 + %72 = call noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %65, ptr noundef %70, ptr noundef %71) + br label %87 + +73: ; preds = %52 + %74 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %75 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %74, i32 0, i32 2 + %76 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %75, i32 0, i32 3 + %77 = load ptr, ptr %76, align 8 + %78 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %78, i32 0, i32 3 + %80 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %79, i32 0, i32 3 + %81 = load ptr, ptr %80, align 8 + %82 = getelementptr inbounds ptr, ptr %81, i64 1 + %83 = load ptr, ptr %9, align 8 + %84 = load i64, ptr %7, align 8 + %85 = getelementptr inbounds ptr, ptr %83, i64 %84 + %86 = call noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(ptr noundef %77, ptr noundef %82, ptr noundef %85) + br label %87 + +87: ; preds = %73, %61 + br label %137 + +88: ; preds = %3 + %89 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %90 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %89, i32 0, i32 1 + %91 = load i64, ptr %90, align 8 + %92 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %92, i32 0, i32 1 + %94 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %93, ptr noundef nonnull align 8 dereferenceable(8) %5) + %95 = load i64, ptr %94, align 8 + %96 = add i64 %91, %95 + %97 = add i64 %96, 2 + store i64 %97, ptr %10, align 8 + %98 = load i64, ptr %10, align 8 + %99 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %13, i64 noundef %98) + store ptr %99, ptr %11, align 8 + %100 = load ptr, ptr %11, align 8 + %101 = load i64, ptr %10, align 8 + %102 = load i64, ptr %8, align 8 + %103 = sub i64 %101, %102 + %104 = udiv i64 %103, 2 + %105 = getelementptr inbounds ptr, ptr %100, i64 %104 + %106 = load i8, ptr %6, align 1 + %107 = trunc i8 %106 to i1 + br i1 %107, label %108, label %110 + +108: ; preds = %88 + %109 = load i64, ptr %5, align 8 + br label %111 + +110: ; preds = %88 + br label %111 + +111: ; preds = %110, %108 + %112 = phi i64 [ %109, %108 ], [ 0, %110 ] + %113 = getelementptr inbounds ptr, ptr %105, i64 %112 + store ptr %113, ptr %9, align 8 + %114 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %115 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %114, i32 0, i32 2 + %116 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %115, i32 0, i32 3 + %117 = load ptr, ptr %116, align 8 + %118 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %119 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %118, i32 0, i32 3 + %120 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %119, i32 0, i32 3 + %121 = load ptr, ptr %120, align 8 + %122 = getelementptr inbounds ptr, ptr %121, i64 1 + %123 = load ptr, ptr %9, align 8 + %124 = call noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %117, ptr noundef %122, ptr noundef %123) + %125 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %126 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %125, i32 0, i32 0 + %127 = load ptr, ptr %126, align 8 + %128 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %129 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %128, i32 0, i32 1 + %130 = load i64, ptr %129, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %13, ptr noundef %127, i64 noundef %130) #16 + %131 = load ptr, ptr %11, align 8 + %132 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %133 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %132, i32 0, i32 0 + store ptr %131, ptr %133, align 8 + %134 = load i64, ptr %10, align 8 + %135 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %136 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %135, i32 0, i32 1 + store i64 %134, ptr %136, align 8 + br label %137 + +137: ; preds = %111, %87 + %138 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %139 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %138, i32 0, i32 2 + %140 = load ptr, ptr %9, align 8 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %139, ptr noundef %140) #16 + %141 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %141, i32 0, i32 3 + %143 = load ptr, ptr %9, align 8 + %144 = load i64, ptr %7, align 8 + %145 = getelementptr inbounds ptr, ptr %143, i64 %144 + %146 = getelementptr inbounds ptr, ptr %145, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %142, ptr noundef %146) #16 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #5 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #5 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca %"class.std::allocator.3", align 1 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %7, align 8 + store i64 %1, ptr %8, align 8 + %12 = load ptr, ptr %7, align 8 + call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %9, ptr noundef nonnull align 8 dereferenceable(80) %12) #16 + %13 = load i64, ptr %8, align 8 + store ptr %9, ptr %3, align 8 + store i64 %13, ptr %4, align 8 + %14 = load ptr, ptr %3, align 8 + %15 = load i64, ptr %4, align 8 + %16 = invoke noundef ptr @_ZNSt15__new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %14, i64 noundef %15, ptr noundef null) + to label %17 unwind label %20 + +17: ; preds = %2 + br label %18 + +18: ; preds = %17 + store ptr %9, ptr %6, align 8 + %19 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #16 + ret ptr %16 + +20: ; preds = %2 + %21 = landingpad { ptr, i32 } + cleanup + %22 = extractvalue { ptr, i32 } %21, 0 + store ptr %22, ptr %10, align 8 + %23 = extractvalue { ptr, i32 } %21, 1 + store i32 %23, ptr %11, align 4 + store ptr %9, ptr %5, align 8 + %24 = load ptr, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %24) #16 + br label %25 + +25: ; preds = %20 + %26 = load ptr, ptr %10, align 8 + %27 = load i32, ptr %11, align 4 + %28 = insertvalue { ptr, i32 } poison, ptr %26, 0 + %29 = insertvalue { ptr, i32 } %28, i32 %27, 1 + resume { ptr, i32 } %29 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #5 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %7) #16 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %9) #16 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %11) #16 + %13 = call noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %0) #6 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #5 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %0) #6 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #5 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %21 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load i64, ptr %7, align 8 + %20 = mul i64 8, %19 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %17, ptr align 8 %18, i64 %20, i1 false) + br label %28 + +21: ; preds = %3 + %22 = load i64, ptr %7, align 8 + %23 = icmp eq i64 %22, 1 + br i1 %23, label %24, label %27 + +24: ; preds = %21 + %25 = load ptr, ptr %6, align 8 + %26 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %25, ptr noundef %26) + br label %27 + +27: ; preds = %24, %21 + br label %28 + +28: ; preds = %27, %16 + %29 = load ptr, ptr %6, align 8 + %30 = load i64, ptr %7, align 8 + %31 = getelementptr inbounds ptr, ptr %29, i64 %30 + ret ptr %31 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memmove.p0.p0.i64(ptr nocapture writeonly, ptr nocapture readonly, i64, i1 immarg) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %0, ptr noundef %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load ptr, ptr %3, align 8 + store ptr %6, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #5 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %7) #16 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %9) #16 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %11) #16 + %13 = call noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #5 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #5 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #6 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %24 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load i64, ptr %7, align 8 + %19 = sub i64 0, %18 + %20 = getelementptr inbounds ptr, ptr %17, i64 %19 + %21 = load ptr, ptr %4, align 8 + %22 = load i64, ptr %7, align 8 + %23 = mul i64 8, %22 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %20, ptr align 8 %21, i64 %23, i1 false) + br label %32 + +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 + +27: ; preds = %24 + %28 = load ptr, ptr %6, align 8 + %29 = getelementptr inbounds ptr, ptr %28, i64 -1 + %30 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %29, ptr noundef %30) + br label %31 + +31: ; preds = %27, %24 + br label %32 + +32: ; preds = %31, %16 + %33 = load ptr, ptr %6, align 8 + %34 = load i64, ptr %7, align 8 + %35 = sub i64 0, %34 + %36 = getelementptr inbounds ptr, ptr %33, i64 %35 + ret ptr %36 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 1152921504606846975 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #19 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #19 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 8 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #15 + ret ptr %20 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 2305843009213693951 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 4611686018427387903 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #19 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #19 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 4 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #15 + ret ptr %20 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #14 + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) + ret void +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #16 + invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) + to label %7 unwind label %8 + +7: ; preds = %1 + ret void + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + cleanup + %10 = extractvalue { ptr, i32 } %9, 0 + store ptr %10, ptr %3, align 8 + %11 = extractvalue { ptr, i32 } %9, 1 + store i32 %11, ptr %4, align 4 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #16 + br label %12 + +12: ; preds = %8 + %13 = load ptr, ptr %3, align 8 + %14 = load i32, ptr %4, align 4 + %15 = insertvalue { ptr, i32 } poison, ptr %13, 0 + %16 = insertvalue { ptr, i32 } %15, i32 %14, 1 + resume { ptr, i32 } %16 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #16 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i64, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %12 = load ptr, ptr %3, align 8 + %13 = load i64, ptr %4, align 8 + %14 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %15 = udiv i64 %13, %14 + %16 = add i64 %15, 1 + store i64 %16, ptr %5, align 8 + store i64 8, ptr %6, align 8 + %17 = load i64, ptr %5, align 8 + %18 = add i64 %17, 2 + store i64 %18, ptr %7, align 8 + %19 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + %20 = load i64, ptr %19, align 8 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 1 + store i64 %20, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 1 + %25 = load i64, ptr %24, align 8 + %26 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %25) + %27 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %28 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %27, i32 0, i32 0 + store ptr %26, ptr %28, align 8 + %29 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + %32 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %32, i32 0, i32 1 + %34 = load i64, ptr %33, align 8 + %35 = load i64, ptr %5, align 8 + %36 = sub i64 %34, %35 + %37 = udiv i64 %36, 2 + %38 = getelementptr inbounds ptr, ptr %31, i64 %37 + store ptr %38, ptr %8, align 8 + %39 = load ptr, ptr %8, align 8 + %40 = load i64, ptr %5, align 8 + %41 = getelementptr inbounds ptr, ptr %39, i64 %40 + store ptr %41, ptr %9, align 8 + %42 = load ptr, ptr %8, align 8 + %43 = load ptr, ptr %9, align 8 + invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %42, ptr noundef %43) + to label %44 unwind label %45 + +44: ; preds = %2 + br label %67 + +45: ; preds = %2 + %46 = landingpad { ptr, i32 } + catch ptr null + %47 = extractvalue { ptr, i32 } %46, 0 + store ptr %47, ptr %10, align 8 + %48 = extractvalue { ptr, i32 } %46, 1 + store i32 %48, ptr %11, align 4 + br label %49 + +49: ; preds = %45 + %50 = load ptr, ptr %10, align 8 + %51 = call ptr @__cxa_begin_catch(ptr %50) #16 + %52 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %53 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %52, i32 0, i32 0 + %54 = load ptr, ptr %53, align 8 + %55 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %56 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %55, i32 0, i32 1 + %57 = load i64, ptr %56, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %54, i64 noundef %57) #16 + %58 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %58, i32 0, i32 0 + store ptr null, ptr %59, align 8 + %60 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %61 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %60, i32 0, i32 1 + store i64 0, ptr %61, align 8 + invoke void @__cxa_rethrow() #19 + to label %101 unwind label %62 + +62: ; preds = %49 + %63 = landingpad { ptr, i32 } + cleanup + %64 = extractvalue { ptr, i32 } %63, 0 + store ptr %64, ptr %10, align 8 + %65 = extractvalue { ptr, i32 } %63, 1 + store i32 %65, ptr %11, align 4 + invoke void @__cxa_end_catch() + to label %66 unwind label %98 + +66: ; preds = %62 + br label %93 + +67: ; preds = %44 + %68 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %68, i32 0, i32 2 + %70 = load ptr, ptr %8, align 8 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %69, ptr noundef %70) #16 + %71 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %72 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %71, i32 0, i32 3 + %73 = load ptr, ptr %9, align 8 + %74 = getelementptr inbounds ptr, ptr %73, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %72, ptr noundef %74) #16 + %75 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %76 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %75, i32 0, i32 2 + %77 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %76, i32 0, i32 1 + %78 = load ptr, ptr %77, align 8 + %79 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %80 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %79, i32 0, i32 2 + %81 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %80, i32 0, i32 0 + store ptr %78, ptr %81, align 8 + %82 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %82, i32 0, i32 3 + %84 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %83, i32 0, i32 1 + %85 = load ptr, ptr %84, align 8 + %86 = load i64, ptr %4, align 8 + %87 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %88 = urem i64 %86, %87 + %89 = getelementptr inbounds i32, ptr %85, i64 %88 + %90 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %91 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %90, i32 0, i32 3 + %92 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %91, i32 0, i32 0 + store ptr %89, ptr %92, align 8 + ret void + +93: ; preds = %66 + %94 = load ptr, ptr %10, align 8 + %95 = load i32, ptr %11, align 4 + %96 = insertvalue { ptr, i32 } poison, ptr %94, 0 + %97 = insertvalue { ptr, i32 } %96, i32 %95, 1 + resume { ptr, i32 } %97 + +98: ; preds = %62 + %99 = landingpad { ptr, i32 } + catch ptr null + %100 = extractvalue { ptr, i32 } %99, 0 + call void @__clang_call_terminate(ptr %100) #18 + unreachable + +101: ; preds = %49 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 1 + store i64 0, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 2 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #16 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #16 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 1 + store ptr null, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 2 + store ptr null, ptr %6, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 3 + store ptr null, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = load ptr, ptr %5, align 8 + store ptr %11, ptr %7, align 8 + br label %12 + +12: ; preds = %20, %3 + %13 = load ptr, ptr %7, align 8 + %14 = load ptr, ptr %6, align 8 + %15 = icmp ult ptr %13, %14 + br i1 %15, label %16, label %32 + +16: ; preds = %12 + %17 = invoke noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %10) + to label %18 unwind label %23 + +18: ; preds = %16 + %19 = load ptr, ptr %7, align 8 + store ptr %17, ptr %19, align 8 + br label %20 + +20: ; preds = %18 + %21 = load ptr, ptr %7, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i32 1 + store ptr %22, ptr %7, align 8 + br label %12, !llvm.loop !16 + +23: ; preds = %16 + %24 = landingpad { ptr, i32 } + catch ptr null + %25 = extractvalue { ptr, i32 } %24, 0 + store ptr %25, ptr %8, align 8 + %26 = extractvalue { ptr, i32 } %24, 1 + store i32 %26, ptr %9, align 4 + br label %27 + +27: ; preds = %23 + %28 = load ptr, ptr %8, align 8 + %29 = call ptr @__cxa_begin_catch(ptr %28) #16 + %30 = load ptr, ptr %5, align 8 + %31 = load ptr, ptr %7, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %10, ptr noundef %30, ptr noundef %31) #16 + invoke void @__cxa_rethrow() #19 + to label %47 unwind label %33 + +32: ; preds = %12 + br label %38 + +33: ; preds = %27 + %34 = landingpad { ptr, i32 } + cleanup + %35 = extractvalue { ptr, i32 } %34, 0 + store ptr %35, ptr %8, align 8 + %36 = extractvalue { ptr, i32 } %34, 1 + store i32 %36, ptr %9, align 4 + invoke void @__cxa_end_catch() + to label %37 unwind label %44 + +37: ; preds = %33 + br label %39 + +38: ; preds = %32 + ret void + +39: ; preds = %37 + %40 = load ptr, ptr %8, align 8 + %41 = load i32, ptr %9, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 + +44: ; preds = %33 + %45 = landingpad { ptr, i32 } + catch ptr null + %46 = extractvalue { ptr, i32 } %45, 0 + call void @__clang_call_terminate(ptr %46) #18 + unreachable + +47: ; preds = %27 + unreachable +} + +declare void @__cxa_rethrow() + +declare void @__cxa_end_catch() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 3 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + %8 = call noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %7) #16 + ret i1 %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp eq ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5dequeIiSaIiEE4backEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_Deque_iterator", align 8 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %3, ptr noundef nonnull align 8 dereferenceable(80) %4) #16 + %5 = call noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt15_Deque_iteratorIiRiPiEmmEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #16 + %6 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #16 + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt15_Deque_iteratorIiRiPiEmmEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 1 + %7 = load ptr, ptr %6, align 8 + %8 = icmp eq ptr %5, %7 + br i1 %8, label %9, label %16 + +9: ; preds = %1 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 3 + %11 = load ptr, ptr %10, align 8 + %12 = getelementptr inbounds ptr, ptr %11, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %3, ptr noundef %12) #16 + %13 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 2 + %14 = load ptr, ptr %13, align 8 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + store ptr %14, ptr %15, align 8 + br label %16 + +16: ; preds = %9, %1 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %18 = load ptr, ptr %17, align 8 + %19 = getelementptr inbounds i32, ptr %18, i32 -1 + store ptr %19, ptr %17, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 3 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 1 + %15 = load ptr, ptr %14, align 8 + %16 = icmp ne ptr %11, %15 + br i1 %16, label %17, label %32 + +17: ; preds = %1 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 3 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 0 + %21 = load ptr, ptr %20, align 8 + %22 = getelementptr inbounds i32, ptr %21, i32 -1 + store ptr %22, ptr %20, align 8 + %23 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #16 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + store ptr %23, ptr %4, align 8 + store ptr %27, ptr %5, align 8 + %28 = load ptr, ptr %4, align 8 + %29 = load ptr, ptr %5, align 8 + store ptr %28, ptr %2, align 8 + store ptr %29, ptr %3, align 8 + %30 = load ptr, ptr %2, align 8 + %31 = load ptr, ptr %3, align 8 + br label %34 + +32: ; preds = %1 + invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %33 unwind label %35 + +33: ; preds = %32 + br label %34 + +34: ; preds = %33, %17 + ret void + +35: ; preds = %32 + %36 = landingpad { ptr, i32 } + catch ptr null + %37 = extractvalue { ptr, i32 } %36, 0 + call void @__clang_call_terminate(ptr %37) #18 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 3 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 1 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %7, ptr noundef %11) #16 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %14, i32 0, i32 3 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 3 + %17 = load ptr, ptr %16, align 8 + %18 = getelementptr inbounds ptr, ptr %17, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %13, ptr noundef %18) #16 + %19 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %20 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %19, i32 0, i32 3 + %21 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %20, i32 0, i32 2 + %22 = load ptr, ptr %21, align 8 + %23 = getelementptr inbounds i32, ptr %22, i64 -1 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + store ptr %23, ptr %26, align 8 + %27 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #16 + %28 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %28, i32 0, i32 3 + %30 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + store ptr %27, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %4, align 8 + %33 = load ptr, ptr %5, align 8 + store ptr %32, ptr %2, align 8 + store ptr %33, ptr %3, align 8 + %34 = load ptr, ptr %2, align 8 + %35 = load ptr, ptr %3, align 8 + 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { 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 #4 = { 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 #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 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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #8 = { nocallback nofree nosync nounwind willreturn } +attributes #9 = { "frame-pointer"="all" "no-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 noreturn 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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +attributes #15 = { builtin allocsize(0) } +attributes #16 = { nounwind } +attributes #17 = { builtin nounwind } +attributes #18 = { noreturn nounwind } +attributes #19 = { noreturn } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm14/m-coloring-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/m-coloring-problem.ll similarity index 55% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/m-coloring-problem.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/m-coloring-problem.ll index 4c1d42327..4961080c6 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/m-coloring-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/m-coloring-problem.ll @@ -10,242 +10,242 @@ target triple = "x86_64-pc-linux-gnu" @__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: 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 { +define dso_local noundef zeroext i1 @_Z6isSafeiPA4_bPii(i32 noundef %0, ptr noundef %1, ptr noundef %2, i32 noundef %3) #0 { %5 = alloca i1, align 1 %6 = alloca i32, align 4 - %7 = alloca [4 x i8]*, align 8 - %8 = alloca i32*, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 %9 = alloca i32, align 4 %10 = alloca i32, align 4 - store i32 %0, i32* %6, align 4 - store [4 x i8]* %1, [4 x i8]** %7, align 8 - store i32* %2, i32** %8, align 8 - store i32 %3, i32* %9, align 4 - store i32 0, i32* %10, align 4 + store i32 %0, ptr %6, align 4 + store ptr %1, ptr %7, align 8 + store ptr %2, ptr %8, align 8 + store i32 %3, ptr %9, align 4 + store i32 0, ptr %10, align 4 br label %11 11: ; preds = %34, %4 - %12 = load i32, i32* %10, align 4 + %12 = load i32, ptr %10, align 4 %13 = icmp slt i32 %12, 4 br i1 %13, label %14, label %37 14: ; preds = %11 - %15 = load [4 x i8]*, [4 x i8]** %7, align 8 - %16 = load i32, i32* %6, align 4 + %15 = load ptr, ptr %7, align 8 + %16 = load i32, ptr %6, align 4 %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds [4 x i8], [4 x i8]* %15, i64 %17 - %19 = load i32, i32* %10, align 4 + %18 = getelementptr inbounds [4 x i8], ptr %15, i64 %17 + %19 = load i32, ptr %10, align 4 %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [4 x i8], [4 x i8]* %18, i64 0, i64 %20 - %22 = load i8, i8* %21, align 1 + %21 = getelementptr inbounds [4 x i8], ptr %18, i64 0, i64 %20 + %22 = load i8, ptr %21, align 1 %23 = trunc i8 %22 to i1 br i1 %23, label %24, label %33 24: ; preds = %14 - %25 = load i32, i32* %9, align 4 - %26 = load i32*, i32** %8, align 8 - %27 = load i32, i32* %10, align 4 + %25 = load i32, ptr %9, align 4 + %26 = load ptr, ptr %8, align 8 + %27 = load i32, ptr %10, align 4 %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i32, i32* %26, i64 %28 - %30 = load i32, i32* %29, align 4 + %29 = getelementptr inbounds i32, ptr %26, i64 %28 + %30 = load i32, ptr %29, align 4 %31 = icmp eq i32 %25, %30 br i1 %31, label %32, label %33 32: ; preds = %24 - store i1 false, i1* %5, align 1 + store i1 false, ptr %5, align 1 br label %38 33: ; preds = %24, %14 br label %34 34: ; preds = %33 - %35 = load i32, i32* %10, align 4 + %35 = load i32, ptr %10, align 4 %36 = add nsw i32 %35, 1 - store i32 %36, i32* %10, align 4 + store i32 %36, ptr %10, align 4 br label %11, !llvm.loop !6 37: ; preds = %11 - store i1 true, i1* %5, align 1 + store i1 true, ptr %5, align 1 br label %38 38: ; preds = %37, %32 - %39 = load i1, i1* %5, align 1 + %39 = load i1, ptr %5, align 1 ret i1 %39 } ; 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 { +define dso_local noundef zeroext i1 @_Z17graphColoringUtilPA4_biPii(ptr noundef %0, i32 noundef %1, ptr noundef %2, i32 noundef %3) #1 { %5 = alloca i1, align 1 - %6 = alloca [4 x i8]*, align 8 + %6 = alloca ptr, align 8 %7 = alloca i32, align 4 - %8 = alloca i32*, align 8 + %8 = alloca ptr, align 8 %9 = alloca i32, align 4 %10 = alloca i32, align 4 - store [4 x i8]* %0, [4 x i8]** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32* %2, i32** %8, align 8 - store i32 %3, i32* %9, align 4 - %11 = load i32, i32* %9, align 4 + store ptr %0, ptr %6, align 8 + store i32 %1, ptr %7, align 4 + store ptr %2, ptr %8, align 8 + store i32 %3, ptr %9, align 4 + %11 = load i32, ptr %9, align 4 %12 = icmp eq i32 %11, 4 br i1 %12, label %13, label %14 13: ; preds = %4 - store i1 true, i1* %5, align 1 + store i1 true, ptr %5, align 1 br label %50 14: ; preds = %4 - store i32 1, i32* %10, align 4 + store i32 1, ptr %10, align 4 br label %15 15: ; preds = %46, %14 - %16 = load i32, i32* %10, align 4 - %17 = load i32, i32* %7, align 4 + %16 = load i32, ptr %10, align 4 + %17 = load i32, ptr %7, align 4 %18 = icmp sle i32 %16, %17 br i1 %18, label %19, label %49 19: ; preds = %15 - %20 = load i32, i32* %9, align 4 - %21 = load [4 x i8]*, [4 x i8]** %6, align 8 - %22 = load i32*, i32** %8, align 8 - %23 = load i32, i32* %10, align 4 - %24 = call noundef zeroext i1 @_Z6isSafeiPA4_bPii(i32 noundef %20, [4 x i8]* noundef %21, i32* noundef %22, i32 noundef %23) + %20 = load i32, ptr %9, align 4 + %21 = load ptr, ptr %6, align 8 + %22 = load ptr, ptr %8, align 8 + %23 = load i32, ptr %10, align 4 + %24 = call noundef zeroext i1 @_Z6isSafeiPA4_bPii(i32 noundef %20, ptr noundef %21, ptr noundef %22, i32 noundef %23) br i1 %24, label %25, label %45 25: ; preds = %19 - %26 = load i32, i32* %10, align 4 - %27 = load i32*, i32** %8, align 8 - %28 = load i32, i32* %9, align 4 + %26 = load i32, ptr %10, align 4 + %27 = load ptr, ptr %8, align 8 + %28 = load i32, ptr %9, align 4 %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i32, i32* %27, i64 %29 - store i32 %26, i32* %30, align 4 - %31 = load [4 x i8]*, [4 x i8]** %6, align 8 - %32 = load i32, i32* %7, align 4 - %33 = load i32*, i32** %8, align 8 - %34 = load i32, i32* %9, align 4 + %30 = getelementptr inbounds i32, ptr %27, i64 %29 + store i32 %26, ptr %30, align 4 + %31 = load ptr, ptr %6, align 8 + %32 = load i32, ptr %7, align 4 + %33 = load ptr, ptr %8, align 8 + %34 = load i32, ptr %9, align 4 %35 = add nsw i32 %34, 1 - %36 = call noundef zeroext i1 @_Z17graphColoringUtilPA4_biPii([4 x i8]* noundef %31, i32 noundef %32, i32* noundef %33, i32 noundef %35) + %36 = call noundef zeroext i1 @_Z17graphColoringUtilPA4_biPii(ptr noundef %31, i32 noundef %32, ptr noundef %33, i32 noundef %35) %37 = zext i1 %36 to i32 %38 = icmp eq i32 %37, 1 br i1 %38, label %39, label %40 39: ; preds = %25 - store i1 true, i1* %5, align 1 + store i1 true, ptr %5, align 1 br label %50 40: ; preds = %25 - %41 = load i32*, i32** %8, align 8 - %42 = load i32, i32* %9, align 4 + %41 = load ptr, ptr %8, align 8 + %42 = load i32, ptr %9, align 4 %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %41, i64 %43 - store i32 0, i32* %44, align 4 + %44 = getelementptr inbounds i32, ptr %41, i64 %43 + store i32 0, ptr %44, align 4 br label %45 45: ; preds = %40, %19 br label %46 46: ; preds = %45 - %47 = load i32, i32* %10, align 4 + %47 = load i32, ptr %10, align 4 %48 = add nsw i32 %47, 1 - store i32 %48, i32* %10, align 4 + store i32 %48, ptr %10, align 4 br label %15, !llvm.loop !8 49: ; preds = %15 - store i1 false, i1* %5, align 1 + store i1 false, ptr %5, align 1 br label %50 50: ; preds = %49, %39, %13 - %51 = load i1, i1* %5, align 1 + %51 = load i1, ptr %5, align 1 ret i1 %51 } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_Z13graphColoringPA4_bi([4 x i8]* noundef %0, i32 noundef %1) #1 { +define dso_local noundef zeroext i1 @_Z13graphColoringPA4_bi(ptr noundef %0, i32 noundef %1) #1 { %3 = alloca i1, align 1 - %4 = alloca [4 x i8]*, align 8 + %4 = alloca ptr, align 8 %5 = alloca i32, align 4 %6 = alloca [4 x i32], align 16 %7 = alloca i32, align 4 - store [4 x i8]* %0, [4 x i8]** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 0, i32* %7, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 0, ptr %7, align 4 br label %8 8: ; preds = %15, %2 - %9 = load i32, i32* %7, align 4 + %9 = load i32, ptr %7, align 4 %10 = icmp slt i32 %9, 4 br i1 %10, label %11, label %18 11: ; preds = %8 - %12 = load i32, i32* %7, align 4 + %12 = load i32, ptr %7, align 4 %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds [4 x i32], [4 x i32]* %6, i64 0, i64 %13 - store i32 0, i32* %14, align 4 + %14 = getelementptr inbounds [4 x i32], ptr %6, i64 0, i64 %13 + store i32 0, ptr %14, align 4 br label %15 15: ; preds = %11 - %16 = load i32, i32* %7, align 4 + %16 = load i32, ptr %7, align 4 %17 = add nsw i32 %16, 1 - store i32 %17, i32* %7, align 4 + store i32 %17, ptr %7, align 4 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 noundef zeroext i1 @_Z17graphColoringUtilPA4_biPii([4 x i8]* noundef %19, i32 noundef %20, i32* noundef %21, i32 noundef 0) + %19 = load ptr, ptr %4, align 8 + %20 = load i32, ptr %5, align 4 + %21 = getelementptr inbounds [4 x i32], ptr %6, i64 0, i64 0 + %22 = call noundef zeroext i1 @_Z17graphColoringUtilPA4_biPii(ptr noundef %19, i32 noundef %20, ptr 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* noundef getelementptr inbounds ([24 x i8], [24 x i8]* @.str, i64 0, i64 0)) - store i1 false, i1* %3, align 1 + %26 = call i32 (ptr, ...) @printf(ptr noundef @.str) + store i1 false, ptr %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* noundef %28) - store i1 true, i1* %3, align 1 + %28 = getelementptr inbounds [4 x i32], ptr %6, i64 0, i64 0 + call void @_Z13printSolutionPi(ptr noundef %28) + store i1 true, ptr %3, align 1 br label %29 29: ; preds = %27, %25 - %30 = load i1, i1* %3, align 1 + %30 = load i1, ptr %3, align 1 ret i1 %30 } -declare i32 @printf(i8* noundef, ...) #2 +declare i32 @printf(ptr noundef, ...) #2 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z13printSolutionPi(i32* noundef %0) #1 { - %2 = alloca i32*, align 8 +define dso_local void @_Z13printSolutionPi(ptr noundef %0) #1 { + %2 = alloca ptr, align 8 %3 = alloca i32, align 4 - store i32* %0, i32** %2, align 8 - %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 + store ptr %0, ptr %2, align 8 + %4 = call i32 (ptr, ...) @printf(ptr noundef @.str.1) + store i32 0, ptr %3, align 4 br label %5 5: ; preds = %15, %1 - %6 = load i32, i32* %3, align 4 + %6 = load i32, ptr %3, align 4 %7 = icmp slt i32 %6, 4 br i1 %7, label %8, label %18 8: ; preds = %5 - %9 = load i32*, i32** %2, align 8 - %10 = load i32, i32* %3, align 4 + %9 = load ptr, ptr %2, align 8 + %10 = load i32, ptr %3, align 4 %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds i32, i32* %9, i64 %11 - %13 = load i32, i32* %12, align 4 - %14 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), i32 noundef %13) + %12 = getelementptr inbounds i32, ptr %9, i64 %11 + %13 = load i32, ptr %12, align 4 + %14 = call i32 (ptr, ...) @printf(ptr noundef @.str.2, i32 noundef %13) br label %15 15: ; preds = %8 - %16 = load i32, i32* %3, align 4 + %16 = load i32, ptr %3, align 4 %17 = add nsw i32 %16, 1 - store i32 %17, i32* %3, align 4 + store i32 %17, ptr %3, align 4 br label %5, !llvm.loop !10 18: ; preds = %5 - %19 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.3, i64 0, i64 0)) + %19 = call i32 (ptr, ...) @printf(ptr noundef @.str.3) ret void } @@ -254,34 +254,33 @@ 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 - store i32 0, i32* %1, align 4 - %4 = bitcast [4 x [4 x i8]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 getelementptr inbounds ([4 x [4 x i8]], [4 x [4 x i8]]* @__const.main.graph, i32 0, i32 0, i32 0), i64 16, i1 false) - store i32 3, i32* %3, align 4 - %5 = getelementptr inbounds [4 x [4 x i8]], [4 x [4 x i8]]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = call noundef zeroext i1 @_Z13graphColoringPA4_bi([4 x i8]* noundef %5, i32 noundef %6) + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.graph, i64 16, i1 false) + store i32 3, ptr %3, align 4 + %4 = getelementptr inbounds [4 x [4 x i8]], ptr %2, i64 0, i64 0 + %5 = load i32, ptr %3, align 4 + %6 = call noundef zeroext i1 @_Z13graphColoringPA4_bi(ptr noundef %4, i32 noundef %5) ret i32 0 } -; 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 +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 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 } +attributes #4 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } !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} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/magic-square.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/magic-square.ll new file mode 100644 index 000000000..38f38d522 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/magic-square.ll @@ -0,0 +1,260 @@ +; ModuleID = 'PE-benchmarks/magic-square.cpp' +source_filename = "PE-benchmarks/magic-square.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 +@.str.3 = private unnamed_addr constant [2 x i8] c" \00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z14generateSquarei(i32 noundef %0) #0 { + %2 = alloca i32, align 4 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i64, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store i32 %0, ptr %2, align 4 + %9 = load i32, ptr %2, align 4 + %10 = zext i32 %9 to i64 + %11 = load i32, ptr %2, align 4 + %12 = zext i32 %11 to i64 + %13 = call ptr @llvm.stacksave() + store ptr %13, ptr %3, align 8 + %14 = mul nuw i64 %10, %12 + %15 = alloca i32, i64 %14, align 16 + store i64 %10, ptr %4, align 8 + store i64 %12, ptr %5, align 8 + %16 = mul nuw i64 %10, %12 + %17 = mul nuw i64 4, %16 + call void @llvm.memset.p0.i64(ptr align 16 %15, i8 0, i64 %17, i1 false) + %18 = load i32, ptr %2, align 4 + %19 = sdiv i32 %18, 2 + store i32 %19, ptr %6, align 4 + %20 = load i32, ptr %2, align 4 + %21 = sub nsw i32 %20, 1 + store i32 %21, ptr %7, align 4 + store i32 1, ptr %8, align 4 + br label %22 + +22: ; preds = %75, %60, %1 + %23 = load i32, ptr %8, align 4 + %24 = load i32, ptr %2, align 4 + %25 = load i32, ptr %2, align 4 + %26 = mul nsw i32 %24, %25 + %27 = icmp sle i32 %23, %26 + br i1 %27, label %28, label %80 + +28: ; preds = %22 + %29 = load i32, ptr %6, align 4 + %30 = icmp eq i32 %29, -1 + br i1 %30, label %31, label %38 + +31: ; preds = %28 + %32 = load i32, ptr %7, align 4 + %33 = load i32, ptr %2, align 4 + %34 = icmp eq i32 %32, %33 + br i1 %34, label %35, label %38 + +35: ; preds = %31 + %36 = load i32, ptr %2, align 4 + %37 = sub nsw i32 %36, 2 + store i32 %37, ptr %7, align 4 + store i32 0, ptr %6, align 4 + br label %50 + +38: ; preds = %31, %28 + %39 = load i32, ptr %7, align 4 + %40 = load i32, ptr %2, align 4 + %41 = icmp eq i32 %39, %40 + br i1 %41, label %42, label %43 + +42: ; preds = %38 + store i32 0, ptr %7, align 4 + br label %43 + +43: ; preds = %42, %38 + %44 = load i32, ptr %6, align 4 + %45 = icmp slt i32 %44, 0 + br i1 %45, label %46, label %49 + +46: ; preds = %43 + %47 = load i32, ptr %2, align 4 + %48 = sub nsw i32 %47, 1 + store i32 %48, ptr %6, align 4 + br label %49 + +49: ; preds = %46, %43 + br label %50 + +50: ; preds = %49, %35 + %51 = load i32, ptr %6, align 4 + %52 = sext i32 %51 to i64 + %53 = mul nsw i64 %52, %12 + %54 = getelementptr inbounds i32, ptr %15, i64 %53 + %55 = load i32, ptr %7, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i32, ptr %54, i64 %56 + %58 = load i32, ptr %57, align 4 + %59 = icmp ne i32 %58, 0 + br i1 %59, label %60, label %65 + +60: ; preds = %50 + %61 = load i32, ptr %7, align 4 + %62 = sub nsw i32 %61, 2 + store i32 %62, ptr %7, align 4 + %63 = load i32, ptr %6, align 4 + %64 = add nsw i32 %63, 1 + store i32 %64, ptr %6, align 4 + br label %22, !llvm.loop !6 + +65: ; preds = %50 + %66 = load i32, ptr %8, align 4 + %67 = add nsw i32 %66, 1 + store i32 %67, ptr %8, align 4 + %68 = load i32, ptr %6, align 4 + %69 = sext i32 %68 to i64 + %70 = mul nsw i64 %69, %12 + %71 = getelementptr inbounds i32, ptr %15, i64 %70 + %72 = load i32, ptr %7, align 4 + %73 = sext i32 %72 to i64 + %74 = getelementptr inbounds i32, ptr %71, i64 %73 + store i32 %66, ptr %74, align 4 + br label %75 + +75: ; preds = %65 + %76 = load i32, ptr %7, align 4 + %77 = add nsw i32 %76, 1 + store i32 %77, ptr %7, align 4 + %78 = load i32, ptr %6, align 4 + %79 = add nsw i32 %78, -1 + store i32 %79, ptr %6, align 4 + br label %22, !llvm.loop !6 + +80: ; preds = %22 + %81 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %82 = load i32, ptr %2, align 4 + %83 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %81, i32 noundef %82) + %84 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %83, ptr noundef @.str.1) + %85 = load i32, ptr %2, align 4 + %86 = load i32, ptr %2, align 4 + %87 = load i32, ptr %2, align 4 + %88 = mul nsw i32 %86, %87 + %89 = add nsw i32 %88, 1 + %90 = mul nsw i32 %85, %89 + %91 = sdiv i32 %90, 2 + %92 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %84, i32 noundef %91) + %93 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %92, ptr noundef @.str.2) + store i32 0, ptr %6, align 4 + br label %94 + +94: ; preds = %119, %80 + %95 = load i32, ptr %6, align 4 + %96 = load i32, ptr %2, align 4 + %97 = icmp slt i32 %95, %96 + br i1 %97, label %98, label %122 + +98: ; preds = %94 + store i32 0, ptr %7, align 4 + br label %99 + +99: ; preds = %114, %98 + %100 = load i32, ptr %7, align 4 + %101 = load i32, ptr %2, align 4 + %102 = icmp slt i32 %100, %101 + br i1 %102, label %103, label %117 + +103: ; preds = %99 + %104 = load i32, ptr %6, align 4 + %105 = sext i32 %104 to i64 + %106 = mul nsw i64 %105, %12 + %107 = getelementptr inbounds i32, ptr %15, i64 %106 + %108 = load i32, ptr %7, align 4 + %109 = sext i32 %108 to i64 + %110 = getelementptr inbounds i32, ptr %107, i64 %109 + %111 = load i32, ptr %110, align 4 + %112 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %111) + %113 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %112, ptr noundef @.str.3) + br label %114 + +114: ; preds = %103 + %115 = load i32, ptr %7, align 4 + %116 = add nsw i32 %115, 1 + store i32 %116, ptr %7, align 4 + br label %99, !llvm.loop !8 + +117: ; preds = %99 + %118 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %119 + +119: ; preds = %117 + %120 = load i32, ptr %6, align 4 + %121 = add nsw i32 %120, 1 + store i32 %121, ptr %6, align 4 + br label %94, !llvm.loop !9 + +122: ; preds = %94 + %123 = load ptr, ptr %3, align 8 + call void @llvm.stackrestore(ptr %123) + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #3 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { + %1 = alloca i32, align 4 + %2 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + store i32 7, ptr %2, align 4 + %3 = load i32, ptr %2, align 4 + call void @_Z14generateSquarei(i32 noundef %3) + ret i32 0 +} + +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 = { nocallback nofree nosync nounwind willreturn } +attributes #2 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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" } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/matrix-chain-multiplication.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/matrix-chain-multiplication.ll new file mode 100644 index 000000000..e43bef447 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/matrix-chain-multiplication.ll @@ -0,0 +1,270 @@ +; ModuleID = 'PE-benchmarks/matrix-chain-multiplication.cpp' +source_filename = "PE-benchmarks/matrix-chain-multiplication.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__const.main.arr = private unnamed_addr constant [4 x i32] [i32 1, i32 2, i32 3, i32 4], align 16 +@_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 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z16MatrixChainOrderPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %13 = load i32, ptr %4, align 4 + %14 = zext i32 %13 to i64 + %15 = load i32, ptr %4, align 4 + %16 = zext i32 %15 to i64 + %17 = call ptr @llvm.stacksave() + store ptr %17, ptr %5, align 8 + %18 = mul nuw i64 %14, %16 + %19 = alloca i32, i64 %18, align 16 + store i64 %14, ptr %6, align 8 + store i64 %16, ptr %7, align 8 + store i32 1, ptr %8, align 4 + br label %20 + +20: ; preds = %32, %2 + %21 = load i32, ptr %8, align 4 + %22 = load i32, ptr %4, align 4 + %23 = icmp slt i32 %21, %22 + br i1 %23, label %24, label %35 + +24: ; preds = %20 + %25 = load i32, ptr %8, align 4 + %26 = sext i32 %25 to i64 + %27 = mul nsw i64 %26, %16 + %28 = getelementptr inbounds i32, ptr %19, i64 %27 + %29 = load i32, ptr %8, align 4 + %30 = sext i32 %29 to i64 + %31 = getelementptr inbounds i32, ptr %28, i64 %30 + store i32 0, ptr %31, align 4 + br label %32 + +32: ; preds = %24 + %33 = load i32, ptr %8, align 4 + %34 = add nsw i32 %33, 1 + store i32 %34, ptr %8, align 4 + br label %20, !llvm.loop !6 + +35: ; preds = %20 + store i32 2, ptr %11, align 4 + br label %36 + +36: ; preds = %132, %35 + %37 = load i32, ptr %11, align 4 + %38 = load i32, ptr %4, align 4 + %39 = icmp slt i32 %37, %38 + br i1 %39, label %40, label %135 + +40: ; preds = %36 + store i32 1, ptr %8, align 4 + br label %41 + +41: ; preds = %128, %40 + %42 = load i32, ptr %8, align 4 + %43 = load i32, ptr %4, align 4 + %44 = load i32, ptr %11, align 4 + %45 = sub nsw i32 %43, %44 + %46 = add nsw i32 %45, 1 + %47 = icmp slt i32 %42, %46 + br i1 %47, label %48, label %131 + +48: ; preds = %41 + %49 = load i32, ptr %8, align 4 + %50 = load i32, ptr %11, align 4 + %51 = add nsw i32 %49, %50 + %52 = sub nsw i32 %51, 1 + store i32 %52, ptr %9, align 4 + %53 = load i32, ptr %8, align 4 + %54 = sext i32 %53 to i64 + %55 = mul nsw i64 %54, %16 + %56 = getelementptr inbounds i32, ptr %19, i64 %55 + %57 = load i32, ptr %9, align 4 + %58 = sext i32 %57 to i64 + %59 = getelementptr inbounds i32, ptr %56, i64 %58 + store i32 2147483647, ptr %59, align 4 + %60 = load i32, ptr %8, align 4 + store i32 %60, ptr %10, align 4 + br label %61 + +61: ; preds = %124, %48 + %62 = load i32, ptr %10, align 4 + %63 = load i32, ptr %9, align 4 + %64 = sub nsw i32 %63, 1 + %65 = icmp sle i32 %62, %64 + br i1 %65, label %66, label %127 + +66: ; preds = %61 + %67 = load i32, ptr %8, align 4 + %68 = sext i32 %67 to i64 + %69 = mul nsw i64 %68, %16 + %70 = getelementptr inbounds i32, ptr %19, i64 %69 + %71 = load i32, ptr %10, align 4 + %72 = sext i32 %71 to i64 + %73 = getelementptr inbounds i32, ptr %70, i64 %72 + %74 = load i32, ptr %73, align 4 + %75 = load i32, ptr %10, align 4 + %76 = add nsw i32 %75, 1 + %77 = sext i32 %76 to i64 + %78 = mul nsw i64 %77, %16 + %79 = getelementptr inbounds i32, ptr %19, i64 %78 + %80 = load i32, ptr %9, align 4 + %81 = sext i32 %80 to i64 + %82 = getelementptr inbounds i32, ptr %79, i64 %81 + %83 = load i32, ptr %82, align 4 + %84 = add nsw i32 %74, %83 + %85 = load ptr, ptr %3, align 8 + %86 = load i32, ptr %8, align 4 + %87 = sub nsw i32 %86, 1 + %88 = sext i32 %87 to i64 + %89 = getelementptr inbounds i32, ptr %85, i64 %88 + %90 = load i32, ptr %89, align 4 + %91 = load ptr, ptr %3, align 8 + %92 = load i32, ptr %10, align 4 + %93 = sext i32 %92 to i64 + %94 = getelementptr inbounds i32, ptr %91, i64 %93 + %95 = load i32, ptr %94, align 4 + %96 = mul nsw i32 %90, %95 + %97 = load ptr, ptr %3, align 8 + %98 = load i32, ptr %9, align 4 + %99 = sext i32 %98 to i64 + %100 = getelementptr inbounds i32, ptr %97, i64 %99 + %101 = load i32, ptr %100, align 4 + %102 = mul nsw i32 %96, %101 + %103 = add nsw i32 %84, %102 + store i32 %103, ptr %12, align 4 + %104 = load i32, ptr %12, align 4 + %105 = load i32, ptr %8, align 4 + %106 = sext i32 %105 to i64 + %107 = mul nsw i64 %106, %16 + %108 = getelementptr inbounds i32, ptr %19, i64 %107 + %109 = load i32, ptr %9, align 4 + %110 = sext i32 %109 to i64 + %111 = getelementptr inbounds i32, ptr %108, i64 %110 + %112 = load i32, ptr %111, align 4 + %113 = icmp slt i32 %104, %112 + br i1 %113, label %114, label %123 + +114: ; preds = %66 + %115 = load i32, ptr %12, align 4 + %116 = load i32, ptr %8, align 4 + %117 = sext i32 %116 to i64 + %118 = mul nsw i64 %117, %16 + %119 = getelementptr inbounds i32, ptr %19, i64 %118 + %120 = load i32, ptr %9, align 4 + %121 = sext i32 %120 to i64 + %122 = getelementptr inbounds i32, ptr %119, i64 %121 + store i32 %115, ptr %122, align 4 + br label %123 + +123: ; preds = %114, %66 + br label %124 + +124: ; preds = %123 + %125 = load i32, ptr %10, align 4 + %126 = add nsw i32 %125, 1 + store i32 %126, ptr %10, align 4 + br label %61, !llvm.loop !8 + +127: ; preds = %61 + br label %128 + +128: ; preds = %127 + %129 = load i32, ptr %8, align 4 + %130 = add nsw i32 %129, 1 + store i32 %130, ptr %8, align 4 + br label %41, !llvm.loop !9 + +131: ; preds = %41 + br label %132 + +132: ; preds = %131 + %133 = load i32, ptr %11, align 4 + %134 = add nsw i32 %133, 1 + store i32 %134, ptr %11, align 4 + br label %36, !llvm.loop !10 + +135: ; preds = %36 + %136 = mul nsw i64 1, %16 + %137 = getelementptr inbounds i32, ptr %19, i64 %136 + %138 = load i32, ptr %4, align 4 + %139 = sub nsw i32 %138, 1 + %140 = sext i32 %139 to i64 + %141 = getelementptr inbounds i32, ptr %137, i64 %140 + %142 = load i32, ptr %141, align 4 + %143 = load ptr, ptr %5, align 8 + call void @llvm.stackrestore(ptr %143) + ret i32 %142 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #2 { + %1 = alloca i32, align 4 + %2 = alloca [4 x i32], align 16 + %3 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 16, i1 false) + store i32 4, ptr %3, align 4 + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %5 = getelementptr inbounds [4 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + %7 = call noundef i32 @_Z16MatrixChainOrderPii(ptr noundef %5, i32 noundef %6) + %8 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %7) + %9 = call i32 @getchar() + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 + +declare i32 @getchar() #4 + +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 = { nocallback nofree nosync nounwind willreturn } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/maximum-length-chain-of-pairs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/maximum-length-chain-of-pairs.ll new file mode 100644 index 000000000..527c04508 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/maximum-length-chain-of-pairs.ll @@ -0,0 +1,238 @@ +; ModuleID = 'PE-benchmarks/maximum-length-chain-of-pairs.cpp' +source_filename = "PE-benchmarks/maximum-length-chain-of-pairs.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%class.Pair = type { i32, i32 } +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__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 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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z14maxChainLengthP4Pairi(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + store i32 0, ptr %7, align 4 + %9 = load i32, ptr %4, align 4 + %10 = sext i32 %9 to i64 + %11 = mul i64 4, %10 + %12 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %11, i64 4) + %13 = extractvalue { i64, i1 } %12, 1 + %14 = extractvalue { i64, i1 } %12, 0 + %15 = select i1 %13, i64 -1, i64 %14 + %16 = call noalias noundef nonnull ptr @_Znam(i64 noundef %15) #6 + store ptr %16, ptr %8, align 8 + store i32 0, ptr %5, align 4 + br label %17 + +17: ; preds = %26, %2 + %18 = load i32, ptr %5, align 4 + %19 = load i32, ptr %4, align 4 + %20 = icmp slt i32 %18, %19 + br i1 %20, label %21, label %29 + +21: ; preds = %17 + %22 = load ptr, ptr %8, align 8 + %23 = load i32, ptr %5, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds i32, ptr %22, i64 %24 + store i32 1, ptr %25, align 4 + br label %26 + +26: ; preds = %21 + %27 = load i32, ptr %5, align 4 + %28 = add nsw i32 %27, 1 + store i32 %28, ptr %5, align 4 + br label %17, !llvm.loop !6 + +29: ; preds = %17 + store i32 1, ptr %5, align 4 + br label %30 + +30: ; preds = %82, %29 + %31 = load i32, ptr %5, align 4 + %32 = load i32, ptr %4, align 4 + %33 = icmp slt i32 %31, %32 + br i1 %33, label %34, label %85 + +34: ; preds = %30 + store i32 0, ptr %6, align 4 + br label %35 + +35: ; preds = %78, %34 + %36 = load i32, ptr %6, align 4 + %37 = load i32, ptr %5, align 4 + %38 = icmp slt i32 %36, %37 + br i1 %38, label %39, label %81 + +39: ; preds = %35 + %40 = load ptr, ptr %3, align 8 + %41 = load i32, ptr %5, align 4 + %42 = sext i32 %41 to i64 + %43 = getelementptr inbounds %class.Pair, ptr %40, i64 %42 + %44 = getelementptr inbounds %class.Pair, ptr %43, i32 0, i32 0 + %45 = load i32, ptr %44, align 4 + %46 = load ptr, ptr %3, align 8 + %47 = load i32, ptr %6, align 4 + %48 = sext i32 %47 to i64 + %49 = getelementptr inbounds %class.Pair, ptr %46, i64 %48 + %50 = getelementptr inbounds %class.Pair, ptr %49, i32 0, i32 1 + %51 = load i32, ptr %50, align 4 + %52 = icmp sgt i32 %45, %51 + br i1 %52, label %53, label %77 + +53: ; preds = %39 + %54 = load ptr, ptr %8, align 8 + %55 = load i32, ptr %5, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i32, ptr %54, i64 %56 + %58 = load i32, ptr %57, align 4 + %59 = load ptr, ptr %8, align 8 + %60 = load i32, ptr %6, align 4 + %61 = sext i32 %60 to i64 + %62 = getelementptr inbounds i32, ptr %59, i64 %61 + %63 = load i32, ptr %62, align 4 + %64 = add nsw i32 %63, 1 + %65 = icmp slt i32 %58, %64 + br i1 %65, label %66, label %77 + +66: ; preds = %53 + %67 = load ptr, ptr %8, align 8 + %68 = load i32, ptr %6, align 4 + %69 = sext i32 %68 to i64 + %70 = getelementptr inbounds i32, ptr %67, i64 %69 + %71 = load i32, ptr %70, align 4 + %72 = add nsw i32 %71, 1 + %73 = load ptr, ptr %8, align 8 + %74 = load i32, ptr %5, align 4 + %75 = sext i32 %74 to i64 + %76 = getelementptr inbounds i32, ptr %73, i64 %75 + store i32 %72, ptr %76, align 4 + br label %77 + +77: ; preds = %66, %53, %39 + br label %78 + +78: ; preds = %77 + %79 = load i32, ptr %6, align 4 + %80 = add nsw i32 %79, 1 + store i32 %80, ptr %6, align 4 + br label %35, !llvm.loop !8 + +81: ; preds = %35 + br label %82 + +82: ; preds = %81 + %83 = load i32, ptr %5, align 4 + %84 = add nsw i32 %83, 1 + store i32 %84, ptr %5, align 4 + br label %30, !llvm.loop !9 + +85: ; preds = %30 + store i32 0, ptr %5, align 4 + br label %86 + +86: ; preds = %105, %85 + %87 = load i32, ptr %5, align 4 + %88 = load i32, ptr %4, align 4 + %89 = icmp slt i32 %87, %88 + br i1 %89, label %90, label %108 + +90: ; preds = %86 + %91 = load i32, ptr %7, align 4 + %92 = load ptr, ptr %8, align 8 + %93 = load i32, ptr %5, align 4 + %94 = sext i32 %93 to i64 + %95 = getelementptr inbounds i32, ptr %92, i64 %94 + %96 = load i32, ptr %95, align 4 + %97 = icmp slt i32 %91, %96 + br i1 %97, label %98, label %104 + +98: ; preds = %90 + %99 = load ptr, ptr %8, align 8 + %100 = load i32, ptr %5, align 4 + %101 = sext i32 %100 to i64 + %102 = getelementptr inbounds i32, ptr %99, i64 %101 + %103 = load i32, ptr %102, align 4 + store i32 %103, ptr %7, align 4 + br label %104 + +104: ; preds = %98, %90 + br label %105 + +105: ; preds = %104 + %106 = load i32, ptr %5, align 4 + %107 = add nsw i32 %106, 1 + store i32 %107, ptr %5, align 4 + br label %86, !llvm.loop !10 + +108: ; preds = %86 + %109 = load i32, ptr %7, align 4 + ret i32 %109 +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [4 x %class.Pair], align 16 + %3 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 32, i1 false) + store i32 4, ptr %3, align 4 + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %5 = getelementptr inbounds [4 x %class.Pair], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + %7 = call noundef i32 @_Z14maxChainLengthP4Pairi(ptr noundef %5, i32 noundef %6) + %8 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %7) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll new file mode 100644 index 000000000..2202f9402 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll @@ -0,0 +1,305 @@ +; ModuleID = 'PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp' +source_filename = "PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +$_ZSt3maxIiERKT_S2_S2_ = comdat any + +@__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 global %"class.std::basic_ostream", align 8 +@.str = private unnamed_addr constant [18 x i8] c"Maximum Profit = \00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z9maxProfitPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %14 = load i32, ptr %4, align 4 + %15 = sext i32 %14 to i64 + %16 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %15, i64 4) + %17 = extractvalue { i64, i1 } %16, 1 + %18 = extractvalue { i64, i1 } %16, 0 + %19 = select i1 %17, i64 -1, i64 %18 + %20 = call noalias noundef nonnull ptr @_Znam(i64 noundef %19) #8 + store ptr %20, ptr %5, align 8 + store i32 0, ptr %6, align 4 + br label %21 + +21: ; preds = %30, %2 + %22 = load i32, ptr %6, align 4 + %23 = load i32, ptr %4, align 4 + %24 = icmp slt i32 %22, %23 + br i1 %24, label %25, label %33 + +25: ; preds = %21 + %26 = load ptr, ptr %5, align 8 + %27 = load i32, ptr %6, align 4 + %28 = sext i32 %27 to i64 + %29 = getelementptr inbounds i32, ptr %26, i64 %28 + store i32 0, ptr %29, align 4 + br label %30 + +30: ; preds = %25 + %31 = load i32, ptr %6, align 4 + %32 = add nsw i32 %31, 1 + store i32 %32, ptr %6, align 4 + br label %21, !llvm.loop !6 + +33: ; preds = %21 + %34 = load ptr, ptr %3, align 8 + %35 = load i32, ptr %4, align 4 + %36 = sub nsw i32 %35, 1 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds i32, ptr %34, i64 %37 + %39 = load i32, ptr %38, align 4 + store i32 %39, ptr %7, align 4 + %40 = load i32, ptr %4, align 4 + %41 = sub nsw i32 %40, 2 + store i32 %41, ptr %8, align 4 + br label %42 + +42: ; preds = %78, %33 + %43 = load i32, ptr %8, align 4 + %44 = icmp sge i32 %43, 0 + br i1 %44, label %45, label %81 + +45: ; preds = %42 + %46 = load ptr, ptr %3, align 8 + %47 = load i32, ptr %8, align 4 + %48 = sext i32 %47 to i64 + %49 = getelementptr inbounds i32, ptr %46, i64 %48 + %50 = load i32, ptr %49, align 4 + %51 = load i32, ptr %7, align 4 + %52 = icmp sgt i32 %50, %51 + br i1 %52, label %53, label %59 + +53: ; preds = %45 + %54 = load ptr, ptr %3, align 8 + %55 = load i32, ptr %8, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i32, ptr %54, i64 %56 + %58 = load i32, ptr %57, align 4 + store i32 %58, ptr %7, align 4 + br label %59 + +59: ; preds = %53, %45 + %60 = load ptr, ptr %5, align 8 + %61 = load i32, ptr %8, align 4 + %62 = add nsw i32 %61, 1 + %63 = sext i32 %62 to i64 + %64 = getelementptr inbounds i32, ptr %60, i64 %63 + %65 = load i32, ptr %7, align 4 + %66 = load ptr, ptr %3, align 8 + %67 = load i32, ptr %8, align 4 + %68 = sext i32 %67 to i64 + %69 = getelementptr inbounds i32, ptr %66, i64 %68 + %70 = load i32, ptr %69, align 4 + %71 = sub nsw i32 %65, %70 + store i32 %71, ptr %9, align 4 + %72 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %64, ptr noundef nonnull align 4 dereferenceable(4) %9) + %73 = load i32, ptr %72, align 4 + %74 = load ptr, ptr %5, align 8 + %75 = load i32, ptr %8, align 4 + %76 = sext i32 %75 to i64 + %77 = getelementptr inbounds i32, ptr %74, i64 %76 + store i32 %73, ptr %77, align 4 + br label %78 + +78: ; preds = %59 + %79 = load i32, ptr %8, align 4 + %80 = add nsw i32 %79, -1 + store i32 %80, ptr %8, align 4 + br label %42, !llvm.loop !8 + +81: ; preds = %42 + %82 = load ptr, ptr %3, align 8 + %83 = getelementptr inbounds i32, ptr %82, i64 0 + %84 = load i32, ptr %83, align 4 + store i32 %84, ptr %10, align 4 + store i32 1, ptr %11, align 4 + br label %85 + +85: ; preds = %128, %81 + %86 = load i32, ptr %11, align 4 + %87 = load i32, ptr %4, align 4 + %88 = icmp slt i32 %86, %87 + br i1 %88, label %89, label %131 + +89: ; preds = %85 + %90 = load ptr, ptr %3, align 8 + %91 = load i32, ptr %11, align 4 + %92 = sext i32 %91 to i64 + %93 = getelementptr inbounds i32, ptr %90, i64 %92 + %94 = load i32, ptr %93, align 4 + %95 = load i32, ptr %10, align 4 + %96 = icmp slt i32 %94, %95 + br i1 %96, label %97, label %103 + +97: ; preds = %89 + %98 = load ptr, ptr %3, align 8 + %99 = load i32, ptr %11, align 4 + %100 = sext i32 %99 to i64 + %101 = getelementptr inbounds i32, ptr %98, i64 %100 + %102 = load i32, ptr %101, align 4 + store i32 %102, ptr %10, align 4 + br label %103 + +103: ; preds = %97, %89 + %104 = load ptr, ptr %5, align 8 + %105 = load i32, ptr %11, align 4 + %106 = sub nsw i32 %105, 1 + %107 = sext i32 %106 to i64 + %108 = getelementptr inbounds i32, ptr %104, i64 %107 + %109 = load ptr, ptr %5, align 8 + %110 = load i32, ptr %11, align 4 + %111 = sext i32 %110 to i64 + %112 = getelementptr inbounds i32, ptr %109, i64 %111 + %113 = load i32, ptr %112, align 4 + %114 = load ptr, ptr %3, align 8 + %115 = load i32, ptr %11, align 4 + %116 = sext i32 %115 to i64 + %117 = getelementptr inbounds i32, ptr %114, i64 %116 + %118 = load i32, ptr %117, align 4 + %119 = load i32, ptr %10, align 4 + %120 = sub nsw i32 %118, %119 + %121 = add nsw i32 %113, %120 + store i32 %121, ptr %12, align 4 + %122 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %108, ptr noundef nonnull align 4 dereferenceable(4) %12) + %123 = load i32, ptr %122, align 4 + %124 = load ptr, ptr %5, align 8 + %125 = load i32, ptr %11, align 4 + %126 = sext i32 %125 to i64 + %127 = getelementptr inbounds i32, ptr %124, i64 %126 + store i32 %123, ptr %127, align 4 + br label %128 + +128: ; preds = %103 + %129 = load i32, ptr %11, align 4 + %130 = add nsw i32 %129, 1 + store i32 %130, ptr %11, align 4 + br label %85, !llvm.loop !9 + +131: ; preds = %85 + %132 = load ptr, ptr %5, align 8 + %133 = load i32, ptr %4, align 4 + %134 = sub nsw i32 %133, 1 + %135 = sext i32 %134 to i64 + %136 = getelementptr inbounds i32, ptr %132, i64 %135 + %137 = load i32, ptr %136, align 4 + store i32 %137, ptr %13, align 4 + %138 = load ptr, ptr %5, align 8 + %139 = icmp eq ptr %138, null + br i1 %139, label %141, label %140 + +140: ; preds = %131 + call void @_ZdaPv(ptr noundef %138) #9 + br label %141 + +141: ; preds = %140, %131 + %142 = load i32, ptr %13, align 4 + ret i32 %142 +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #3 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdaPv(ptr noundef) #4 + +; 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 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.price, i64 28, i1 false) + store i32 7, ptr %3, align 4 + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %5 = getelementptr inbounds [7 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + %7 = call noundef i32 @_Z9maxProfitPii(ptr noundef %5, i32 noundef %6) + %8 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %7) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #7 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #7 + +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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 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 #4 = { 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #7 = { "frame-pointer"="all" "no-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) } +attributes #9 = { builtin nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll new file mode 100644 index 000000000..1c1f5abd1 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll @@ -0,0 +1,380 @@ +; ModuleID = 'PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp' +source_filename = "PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +$_ZSt3minIiERKT_S2_S2_ = comdat any + +@_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 +@__const.main.M = private unnamed_addr constant [6 x [5 x i32]] [[5 x i32] [i32 0, i32 1, i32 1, i32 0, i32 1], [5 x i32] [i32 1, i32 1, i32 0, i32 1, i32 0], [5 x i32] [i32 0, i32 1, i32 1, i32 1, i32 0], [5 x i32] [i32 1, i32 1, i32 1, i32 1, i32 0], [5 x i32] [i32 1, i32 1, i32 1, i32 1, i32 1], [5 x i32] zeroinitializer], align 16 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z17printMaxSubSquarePA5_i(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca [6 x [5 x i32]], align 16 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + store i32 0, ptr %3, align 4 + br label %9 + +9: ; preds = %23, %1 + %10 = load i32, ptr %3, align 4 + %11 = icmp slt i32 %10, 6 + br i1 %11, label %12, label %26 + +12: ; preds = %9 + %13 = load ptr, ptr %2, align 8 + %14 = load i32, ptr %3, align 4 + %15 = sext i32 %14 to i64 + %16 = getelementptr inbounds [5 x i32], ptr %13, i64 %15 + %17 = getelementptr inbounds [5 x i32], ptr %16, i64 0, i64 0 + %18 = load i32, ptr %17, align 4 + %19 = load i32, ptr %3, align 4 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds [6 x [5 x i32]], ptr %5, i64 0, i64 %20 + %22 = getelementptr inbounds [5 x i32], ptr %21, i64 0, i64 0 + store i32 %18, ptr %22, align 4 + br label %23 + +23: ; preds = %12 + %24 = load i32, ptr %3, align 4 + %25 = add nsw i32 %24, 1 + store i32 %25, ptr %3, align 4 + br label %9, !llvm.loop !6 + +26: ; preds = %9 + store i32 0, ptr %4, align 4 + br label %27 + +27: ; preds = %41, %26 + %28 = load i32, ptr %4, align 4 + %29 = icmp slt i32 %28, 5 + br i1 %29, label %30, label %44 + +30: ; preds = %27 + %31 = load ptr, ptr %2, align 8 + %32 = getelementptr inbounds [5 x i32], ptr %31, i64 0 + %33 = load i32, ptr %4, align 4 + %34 = sext i32 %33 to i64 + %35 = getelementptr inbounds [5 x i32], ptr %32, i64 0, i64 %34 + %36 = load i32, ptr %35, align 4 + %37 = getelementptr inbounds [6 x [5 x i32]], ptr %5, i64 0, i64 0 + %38 = load i32, ptr %4, align 4 + %39 = sext i32 %38 to i64 + %40 = getelementptr inbounds [5 x i32], ptr %37, i64 0, i64 %39 + store i32 %36, ptr %40, align 4 + br label %41 + +41: ; preds = %30 + %42 = load i32, ptr %4, align 4 + %43 = add nsw i32 %42, 1 + store i32 %43, ptr %4, align 4 + br label %27, !llvm.loop !8 + +44: ; preds = %27 + store i32 1, ptr %3, align 4 + br label %45 + +45: ; preds = %107, %44 + %46 = load i32, ptr %3, align 4 + %47 = icmp slt i32 %46, 6 + br i1 %47, label %48, label %110 + +48: ; preds = %45 + store i32 1, ptr %4, align 4 + br label %49 + +49: ; preds = %103, %48 + %50 = load i32, ptr %4, align 4 + %51 = icmp slt i32 %50, 5 + br i1 %51, label %52, label %106 + +52: ; preds = %49 + %53 = load ptr, ptr %2, align 8 + %54 = load i32, ptr %3, align 4 + %55 = sext i32 %54 to i64 + %56 = getelementptr inbounds [5 x i32], ptr %53, i64 %55 + %57 = load i32, ptr %4, align 4 + %58 = sext i32 %57 to i64 + %59 = getelementptr inbounds [5 x i32], ptr %56, i64 0, i64 %58 + %60 = load i32, ptr %59, align 4 + %61 = icmp eq i32 %60, 1 + br i1 %61, label %62, label %95 + +62: ; preds = %52 + %63 = load i32, ptr %3, align 4 + %64 = sext i32 %63 to i64 + %65 = getelementptr inbounds [6 x [5 x i32]], ptr %5, i64 0, i64 %64 + %66 = load i32, ptr %4, align 4 + %67 = sub nsw i32 %66, 1 + %68 = sext i32 %67 to i64 + %69 = getelementptr inbounds [5 x i32], ptr %65, i64 0, i64 %68 + %70 = load i32, ptr %3, align 4 + %71 = sub nsw i32 %70, 1 + %72 = sext i32 %71 to i64 + %73 = getelementptr inbounds [6 x [5 x i32]], ptr %5, i64 0, i64 %72 + %74 = load i32, ptr %4, align 4 + %75 = sext i32 %74 to i64 + %76 = getelementptr inbounds [5 x i32], ptr %73, i64 0, i64 %75 + %77 = load i32, ptr %3, align 4 + %78 = sub nsw i32 %77, 1 + %79 = sext i32 %78 to i64 + %80 = getelementptr inbounds [6 x [5 x i32]], ptr %5, i64 0, i64 %79 + %81 = load i32, ptr %4, align 4 + %82 = sub nsw i32 %81, 1 + %83 = sext i32 %82 to i64 + %84 = getelementptr inbounds [5 x i32], ptr %80, i64 0, i64 %83 + %85 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %76, ptr noundef nonnull align 4 dereferenceable(4) %84) + %86 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %69, ptr noundef nonnull align 4 dereferenceable(4) %85) + %87 = load i32, ptr %86, align 4 + %88 = add nsw i32 %87, 1 + %89 = load i32, ptr %3, align 4 + %90 = sext i32 %89 to i64 + %91 = getelementptr inbounds [6 x [5 x i32]], ptr %5, i64 0, i64 %90 + %92 = load i32, ptr %4, align 4 + %93 = sext i32 %92 to i64 + %94 = getelementptr inbounds [5 x i32], ptr %91, i64 0, i64 %93 + store i32 %88, ptr %94, align 4 + br label %102 + +95: ; preds = %52 + %96 = load i32, ptr %3, align 4 + %97 = sext i32 %96 to i64 + %98 = getelementptr inbounds [6 x [5 x i32]], ptr %5, i64 0, i64 %97 + %99 = load i32, ptr %4, align 4 + %100 = sext i32 %99 to i64 + %101 = getelementptr inbounds [5 x i32], ptr %98, i64 0, i64 %100 + store i32 0, ptr %101, align 4 + br label %102 + +102: ; preds = %95, %62 + br label %103 + +103: ; preds = %102 + %104 = load i32, ptr %4, align 4 + %105 = add nsw i32 %104, 1 + store i32 %105, ptr %4, align 4 + br label %49, !llvm.loop !9 + +106: ; preds = %49 + br label %107 + +107: ; preds = %106 + %108 = load i32, ptr %3, align 4 + %109 = add nsw i32 %108, 1 + store i32 %109, ptr %3, align 4 + br label %45, !llvm.loop !10 + +110: ; preds = %45 + %111 = getelementptr inbounds [6 x [5 x i32]], ptr %5, i64 0, i64 0 + %112 = getelementptr inbounds [5 x i32], ptr %111, i64 0, i64 0 + %113 = load i32, ptr %112, align 16 + store i32 %113, ptr %6, align 4 + store i32 0, ptr %7, align 4 + store i32 0, ptr %8, align 4 + store i32 0, ptr %3, align 4 + br label %114 + +114: ; preds = %146, %110 + %115 = load i32, ptr %3, align 4 + %116 = icmp slt i32 %115, 6 + br i1 %116, label %117, label %149 + +117: ; preds = %114 + store i32 0, ptr %4, align 4 + br label %118 + +118: ; preds = %142, %117 + %119 = load i32, ptr %4, align 4 + %120 = icmp slt i32 %119, 5 + br i1 %120, label %121, label %145 + +121: ; preds = %118 + %122 = load i32, ptr %6, align 4 + %123 = load i32, ptr %3, align 4 + %124 = sext i32 %123 to i64 + %125 = getelementptr inbounds [6 x [5 x i32]], ptr %5, i64 0, i64 %124 + %126 = load i32, ptr %4, align 4 + %127 = sext i32 %126 to i64 + %128 = getelementptr inbounds [5 x i32], ptr %125, i64 0, i64 %127 + %129 = load i32, ptr %128, align 4 + %130 = icmp slt i32 %122, %129 + br i1 %130, label %131, label %141 + +131: ; preds = %121 + %132 = load i32, ptr %3, align 4 + %133 = sext i32 %132 to i64 + %134 = getelementptr inbounds [6 x [5 x i32]], ptr %5, i64 0, i64 %133 + %135 = load i32, ptr %4, align 4 + %136 = sext i32 %135 to i64 + %137 = getelementptr inbounds [5 x i32], ptr %134, i64 0, i64 %136 + %138 = load i32, ptr %137, align 4 + store i32 %138, ptr %6, align 4 + %139 = load i32, ptr %3, align 4 + store i32 %139, ptr %7, align 4 + %140 = load i32, ptr %4, align 4 + store i32 %140, ptr %8, align 4 + br label %141 + +141: ; preds = %131, %121 + br label %142 + +142: ; preds = %141 + %143 = load i32, ptr %4, align 4 + %144 = add nsw i32 %143, 1 + store i32 %144, ptr %4, align 4 + br label %118, !llvm.loop !11 + +145: ; preds = %118 + br label %146 + +146: ; preds = %145 + %147 = load i32, ptr %3, align 4 + %148 = add nsw i32 %147, 1 + store i32 %148, ptr %3, align 4 + br label %114, !llvm.loop !12 + +149: ; preds = %114 + %150 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %151 = load i32, ptr %7, align 4 + store i32 %151, ptr %3, align 4 + br label %152 + +152: ; preds = %182, %149 + %153 = load i32, ptr %3, align 4 + %154 = load i32, ptr %7, align 4 + %155 = load i32, ptr %6, align 4 + %156 = sub nsw i32 %154, %155 + %157 = icmp sgt i32 %153, %156 + br i1 %157, label %158, label %185 + +158: ; preds = %152 + %159 = load i32, ptr %8, align 4 + store i32 %159, ptr %4, align 4 + br label %160 + +160: ; preds = %177, %158 + %161 = load i32, ptr %4, align 4 + %162 = load i32, ptr %8, align 4 + %163 = load i32, ptr %6, align 4 + %164 = sub nsw i32 %162, %163 + %165 = icmp sgt i32 %161, %164 + br i1 %165, label %166, label %180 + +166: ; preds = %160 + %167 = load ptr, ptr %2, align 8 + %168 = load i32, ptr %3, align 4 + %169 = sext i32 %168 to i64 + %170 = getelementptr inbounds [5 x i32], ptr %167, i64 %169 + %171 = load i32, ptr %4, align 4 + %172 = sext i32 %171 to i64 + %173 = getelementptr inbounds [5 x i32], ptr %170, i64 0, i64 %172 + %174 = load i32, ptr %173, align 4 + %175 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %174) + %176 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %175, ptr noundef @.str.1) + br label %177 + +177: ; preds = %166 + %178 = load i32, ptr %4, align 4 + %179 = add nsw i32 %178, -1 + store i32 %179, ptr %4, align 4 + br label %160, !llvm.loop !13 + +180: ; preds = %160 + %181 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + br label %182 + +182: ; preds = %180 + %183 = load i32, ptr %3, align 4 + %184 = add nsw i32 %183, -1 + store i32 %184, ptr %3, align 4 + br label %152, !llvm.loop !14 + +185: ; preds = %152 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #1 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca [6 x [5 x i32]], align 16 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %1, ptr align 16 @__const.main.M, i64 120, i1 false) + %2 = getelementptr inbounds [6 x [5 x i32]], ptr %1, i64 0, i64 0 + call void @_Z17printMaxSubSquarePA5_i(ptr noundef %2) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/maximum-sum-increasing-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/maximum-sum-increasing-subsequence.ll new file mode 100644 index 000000000..fb3d87083 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/maximum-sum-increasing-subsequence.ll @@ -0,0 +1,246 @@ +; ModuleID = 'PE-benchmarks/maximum-sum-increasing-subsequence.cpp' +source_filename = "PE-benchmarks/maximum-sum-increasing-subsequence.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__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 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 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z8maxSumISPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca ptr, align 8 + %9 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + store i32 0, ptr %7, align 4 + %10 = load i32, ptr %4, align 4 + %11 = zext i32 %10 to i64 + %12 = call ptr @llvm.stacksave() + store ptr %12, ptr %8, align 8 + %13 = alloca i32, i64 %11, align 16 + store i64 %11, ptr %9, align 8 + store i32 0, ptr %5, align 4 + br label %14 + +14: ; preds = %27, %2 + %15 = load i32, ptr %5, align 4 + %16 = load i32, ptr %4, align 4 + %17 = icmp slt i32 %15, %16 + br i1 %17, label %18, label %30 + +18: ; preds = %14 + %19 = load ptr, ptr %3, align 8 + %20 = load i32, ptr %5, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds i32, ptr %19, i64 %21 + %23 = load i32, ptr %22, align 4 + %24 = load i32, ptr %5, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds i32, ptr %13, i64 %25 + store i32 %23, ptr %26, align 4 + br label %27 + +27: ; preds = %18 + %28 = load i32, ptr %5, align 4 + %29 = add nsw i32 %28, 1 + store i32 %29, ptr %5, align 4 + br label %14, !llvm.loop !6 + +30: ; preds = %14 + store i32 1, ptr %5, align 4 + br label %31 + +31: ; preds = %87, %30 + %32 = load i32, ptr %5, align 4 + %33 = load i32, ptr %4, align 4 + %34 = icmp slt i32 %32, %33 + br i1 %34, label %35, label %90 + +35: ; preds = %31 + store i32 0, ptr %6, align 4 + br label %36 + +36: ; preds = %83, %35 + %37 = load i32, ptr %6, align 4 + %38 = load i32, ptr %5, align 4 + %39 = icmp slt i32 %37, %38 + br i1 %39, label %40, label %86 + +40: ; preds = %36 + %41 = load ptr, ptr %3, align 8 + %42 = load i32, ptr %5, align 4 + %43 = sext i32 %42 to i64 + %44 = getelementptr inbounds i32, ptr %41, i64 %43 + %45 = load i32, ptr %44, align 4 + %46 = load ptr, ptr %3, align 8 + %47 = load i32, ptr %6, align 4 + %48 = sext i32 %47 to i64 + %49 = getelementptr inbounds i32, ptr %46, i64 %48 + %50 = load i32, ptr %49, align 4 + %51 = icmp sgt i32 %45, %50 + br i1 %51, label %52, label %82 + +52: ; preds = %40 + %53 = load i32, ptr %5, align 4 + %54 = sext i32 %53 to i64 + %55 = getelementptr inbounds i32, ptr %13, i64 %54 + %56 = load i32, ptr %55, align 4 + %57 = load i32, ptr %6, align 4 + %58 = sext i32 %57 to i64 + %59 = getelementptr inbounds i32, ptr %13, i64 %58 + %60 = load i32, ptr %59, align 4 + %61 = load ptr, ptr %3, align 8 + %62 = load i32, ptr %5, align 4 + %63 = sext i32 %62 to i64 + %64 = getelementptr inbounds i32, ptr %61, i64 %63 + %65 = load i32, ptr %64, align 4 + %66 = add nsw i32 %60, %65 + %67 = icmp slt i32 %56, %66 + br i1 %67, label %68, label %82 + +68: ; preds = %52 + %69 = load i32, ptr %6, align 4 + %70 = sext i32 %69 to i64 + %71 = getelementptr inbounds i32, ptr %13, i64 %70 + %72 = load i32, ptr %71, align 4 + %73 = load ptr, ptr %3, align 8 + %74 = load i32, ptr %5, align 4 + %75 = sext i32 %74 to i64 + %76 = getelementptr inbounds i32, ptr %73, i64 %75 + %77 = load i32, ptr %76, align 4 + %78 = add nsw i32 %72, %77 + %79 = load i32, ptr %5, align 4 + %80 = sext i32 %79 to i64 + %81 = getelementptr inbounds i32, ptr %13, i64 %80 + store i32 %78, ptr %81, align 4 + br label %82 + +82: ; preds = %68, %52, %40 + br label %83 + +83: ; preds = %82 + %84 = load i32, ptr %6, align 4 + %85 = add nsw i32 %84, 1 + store i32 %85, ptr %6, align 4 + br label %36, !llvm.loop !8 + +86: ; preds = %36 + br label %87 + +87: ; preds = %86 + %88 = load i32, ptr %5, align 4 + %89 = add nsw i32 %88, 1 + store i32 %89, ptr %5, align 4 + br label %31, !llvm.loop !9 + +90: ; preds = %31 + store i32 0, ptr %5, align 4 + br label %91 + +91: ; preds = %108, %90 + %92 = load i32, ptr %5, align 4 + %93 = load i32, ptr %4, align 4 + %94 = icmp slt i32 %92, %93 + br i1 %94, label %95, label %111 + +95: ; preds = %91 + %96 = load i32, ptr %7, align 4 + %97 = load i32, ptr %5, align 4 + %98 = sext i32 %97 to i64 + %99 = getelementptr inbounds i32, ptr %13, i64 %98 + %100 = load i32, ptr %99, align 4 + %101 = icmp slt i32 %96, %100 + br i1 %101, label %102, label %107 + +102: ; preds = %95 + %103 = load i32, ptr %5, align 4 + %104 = sext i32 %103 to i64 + %105 = getelementptr inbounds i32, ptr %13, i64 %104 + %106 = load i32, ptr %105, align 4 + store i32 %106, ptr %7, align 4 + br label %107 + +107: ; preds = %102, %95 + br label %108 + +108: ; preds = %107 + %109 = load i32, ptr %5, align 4 + %110 = add nsw i32 %109, 1 + store i32 %110, ptr %5, align 4 + br label %91, !llvm.loop !10 + +111: ; preds = %91 + %112 = load i32, ptr %7, align 4 + %113 = load ptr, ptr %8, align 8 + call void @llvm.stackrestore(ptr %113) + ret i32 %112 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #2 { + %1 = alloca i32, align 4 + %2 = alloca [7 x i32], align 16 + %3 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 28, i1 false) + store i32 7, ptr %3, align 4 + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %5 = getelementptr inbounds [7 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + %7 = call noundef i32 @_Z8maxSumISPii(ptr noundef %5, i32 noundef %6) + %8 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %8, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #4 + +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 = { nocallback nofree nosync nounwind willreturn } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/maximum-sum-rectangle-in-a-2d-matrix.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/maximum-sum-rectangle-in-a-2d-matrix.ll new file mode 100644 index 000000000..b16110372 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/maximum-sum-rectangle-in-a-2d-matrix.ll @@ -0,0 +1,351 @@ +; ModuleID = 'PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp' +source_filename = "PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 +@.str.3 = private unnamed_addr constant [18 x i8] c"(Bottom, Right) (\00", align 1 +@.str.4 = private unnamed_addr constant [13 x i8] c"Max sum is: \00", align 1 +@__const.main.M = private unnamed_addr constant [4 x [5 x i32]] [[5 x i32] [i32 1, i32 2, i32 -1, i32 -4, i32 -20], [5 x i32] [i32 -8, i32 -3, i32 4, i32 2, i32 1], [5 x i32] [i32 3, i32 8, i32 10, i32 1, i32 3], [5 x i32] [i32 -4, i32 -1, i32 1, i32 7, i32 -6]], align 16 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z6kadanePiS_S_i(ptr noundef %0, ptr noundef %1, ptr noundef %2, i32 noundef %3) #0 { + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + store ptr %2, ptr %8, align 8 + store i32 %3, ptr %9, align 4 + store i32 0, ptr %10, align 4 + store i32 -2147483648, ptr %11, align 4 + %14 = load ptr, ptr %8, align 8 + store i32 -1, ptr %14, align 4 + store i32 0, ptr %13, align 4 + store i32 0, ptr %12, align 4 + br label %15 + +15: ; preds = %44, %4 + %16 = load i32, ptr %12, align 4 + %17 = load i32, ptr %9, align 4 + %18 = icmp slt i32 %16, %17 + br i1 %18, label %19, label %47 + +19: ; preds = %15 + %20 = load ptr, ptr %6, align 8 + %21 = load i32, ptr %12, align 4 + %22 = sext i32 %21 to i64 + %23 = getelementptr inbounds i32, ptr %20, i64 %22 + %24 = load i32, ptr %23, align 4 + %25 = load i32, ptr %10, align 4 + %26 = add nsw i32 %25, %24 + store i32 %26, ptr %10, align 4 + %27 = load i32, ptr %10, align 4 + %28 = icmp slt i32 %27, 0 + br i1 %28, label %29, label %32 + +29: ; preds = %19 + store i32 0, ptr %10, align 4 + %30 = load i32, ptr %12, align 4 + %31 = add nsw i32 %30, 1 + store i32 %31, ptr %13, align 4 + br label %43 + +32: ; preds = %19 + %33 = load i32, ptr %10, align 4 + %34 = load i32, ptr %11, align 4 + %35 = icmp sgt i32 %33, %34 + br i1 %35, label %36, label %42 + +36: ; preds = %32 + %37 = load i32, ptr %10, align 4 + store i32 %37, ptr %11, align 4 + %38 = load i32, ptr %13, align 4 + %39 = load ptr, ptr %7, align 8 + store i32 %38, ptr %39, align 4 + %40 = load i32, ptr %12, align 4 + %41 = load ptr, ptr %8, align 8 + store i32 %40, ptr %41, align 4 + br label %42 + +42: ; preds = %36, %32 + br label %43 + +43: ; preds = %42, %29 + br label %44 + +44: ; preds = %43 + %45 = load i32, ptr %12, align 4 + %46 = add nsw i32 %45, 1 + store i32 %46, ptr %12, align 4 + br label %15, !llvm.loop !6 + +47: ; preds = %15 + %48 = load ptr, ptr %8, align 8 + %49 = load i32, ptr %48, align 4 + %50 = icmp ne i32 %49, -1 + br i1 %50, label %51, label %53 + +51: ; preds = %47 + %52 = load i32, ptr %11, align 4 + store i32 %52, ptr %5, align 4 + br label %86 + +53: ; preds = %47 + %54 = load ptr, ptr %6, align 8 + %55 = getelementptr inbounds i32, ptr %54, i64 0 + %56 = load i32, ptr %55, align 4 + store i32 %56, ptr %11, align 4 + %57 = load ptr, ptr %8, align 8 + store i32 0, ptr %57, align 4 + %58 = load ptr, ptr %7, align 8 + store i32 0, ptr %58, align 4 + store i32 1, ptr %12, align 4 + br label %59 + +59: ; preds = %81, %53 + %60 = load i32, ptr %12, align 4 + %61 = load i32, ptr %9, align 4 + %62 = icmp slt i32 %60, %61 + br i1 %62, label %63, label %84 + +63: ; preds = %59 + %64 = load ptr, ptr %6, align 8 + %65 = load i32, ptr %12, align 4 + %66 = sext i32 %65 to i64 + %67 = getelementptr inbounds i32, ptr %64, i64 %66 + %68 = load i32, ptr %67, align 4 + %69 = load i32, ptr %11, align 4 + %70 = icmp sgt i32 %68, %69 + br i1 %70, label %71, label %80 + +71: ; preds = %63 + %72 = load ptr, ptr %6, align 8 + %73 = load i32, ptr %12, align 4 + %74 = sext i32 %73 to i64 + %75 = getelementptr inbounds i32, ptr %72, i64 %74 + %76 = load i32, ptr %75, align 4 + store i32 %76, ptr %11, align 4 + %77 = load i32, ptr %12, align 4 + %78 = load ptr, ptr %8, align 8 + store i32 %77, ptr %78, align 4 + %79 = load ptr, ptr %7, align 8 + store i32 %77, ptr %79, align 4 + br label %80 + +80: ; preds = %71, %63 + br label %81 + +81: ; preds = %80 + %82 = load i32, ptr %12, align 4 + %83 = add nsw i32 %82, 1 + store i32 %83, ptr %12, align 4 + br label %59, !llvm.loop !8 + +84: ; preds = %59 + %85 = load i32, ptr %11, align 4 + store i32 %85, ptr %5, align 4 + br label %86 + +86: ; preds = %84, %51 + %87 = load i32, ptr %5, align 4 + ret i32 %87 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10findMaxSumPA5_i(ptr noundef %0) #1 { + %2 = alloca ptr, align 8 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca [4 x i32], align 16 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + store i32 -2147483648, ptr %3, align 4 + store i32 0, ptr %8, align 4 + br label %15 + +15: ; preds = %62, %1 + %16 = load i32, ptr %8, align 4 + %17 = icmp slt i32 %16, 5 + br i1 %17, label %18, label %65 + +18: ; preds = %15 + %19 = getelementptr inbounds [4 x i32], ptr %11, i64 0, i64 0 + call void @llvm.memset.p0.i64(ptr align 16 %19, i8 0, i64 16, i1 false) + %20 = load i32, ptr %8, align 4 + store i32 %20, ptr %9, align 4 + br label %21 + +21: ; preds = %58, %18 + %22 = load i32, ptr %9, align 4 + %23 = icmp slt i32 %22, 5 + br i1 %23, label %24, label %61 + +24: ; preds = %21 + store i32 0, ptr %10, align 4 + br label %25 + +25: ; preds = %42, %24 + %26 = load i32, ptr %10, align 4 + %27 = icmp slt i32 %26, 4 + br i1 %27, label %28, label %45 + +28: ; preds = %25 + %29 = load ptr, ptr %2, align 8 + %30 = load i32, ptr %10, align 4 + %31 = sext i32 %30 to i64 + %32 = getelementptr inbounds [5 x i32], ptr %29, i64 %31 + %33 = load i32, ptr %9, align 4 + %34 = sext i32 %33 to i64 + %35 = getelementptr inbounds [5 x i32], ptr %32, i64 0, i64 %34 + %36 = load i32, ptr %35, align 4 + %37 = load i32, ptr %10, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds [4 x i32], ptr %11, i64 0, i64 %38 + %40 = load i32, ptr %39, align 4 + %41 = add nsw i32 %40, %36 + store i32 %41, ptr %39, align 4 + br label %42 + +42: ; preds = %28 + %43 = load i32, ptr %10, align 4 + %44 = add nsw i32 %43, 1 + store i32 %44, ptr %10, align 4 + br label %25, !llvm.loop !9 + +45: ; preds = %25 + %46 = getelementptr inbounds [4 x i32], ptr %11, i64 0, i64 0 + %47 = call noundef i32 @_Z6kadanePiS_S_i(ptr noundef %46, ptr noundef %13, ptr noundef %14, i32 noundef 4) + store i32 %47, ptr %12, align 4 + %48 = load i32, ptr %12, align 4 + %49 = load i32, ptr %3, align 4 + %50 = icmp sgt i32 %48, %49 + br i1 %50, label %51, label %57 + +51: ; preds = %45 + %52 = load i32, ptr %12, align 4 + store i32 %52, ptr %3, align 4 + %53 = load i32, ptr %8, align 4 + store i32 %53, ptr %4, align 4 + %54 = load i32, ptr %9, align 4 + store i32 %54, ptr %5, align 4 + %55 = load i32, ptr %13, align 4 + store i32 %55, ptr %6, align 4 + %56 = load i32, ptr %14, align 4 + store i32 %56, ptr %7, align 4 + br label %57 + +57: ; preds = %51, %45 + br label %58 + +58: ; preds = %57 + %59 = load i32, ptr %9, align 4 + %60 = add nsw i32 %59, 1 + store i32 %60, ptr %9, align 4 + br label %21, !llvm.loop !10 + +61: ; preds = %21 + br label %62 + +62: ; preds = %61 + %63 = load i32, ptr %8, align 4 + %64 = add nsw i32 %63, 1 + store i32 %64, ptr %8, align 4 + br label %15, !llvm.loop !11 + +65: ; preds = %15 + %66 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %67 = load i32, ptr %6, align 4 + %68 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %66, i32 noundef %67) + %69 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %68, ptr noundef @.str.1) + %70 = load i32, ptr %4, align 4 + %71 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %69, i32 noundef %70) + %72 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %71, ptr noundef @.str.2) + %73 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %72, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %74 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.3) + %75 = load i32, ptr %7, align 4 + %76 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %74, i32 noundef %75) + %77 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %76, ptr noundef @.str.1) + %78 = load i32, ptr %5, align 4 + %79 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %77, i32 noundef %78) + %80 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %79, ptr noundef @.str.2) + %81 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %80, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %82 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.4) + %83 = load i32, ptr %3, align 4 + %84 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %82, i32 noundef %83) + %85 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %84, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + ret void +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #3 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { + %1 = alloca i32, align 4 + %2 = alloca [4 x [5 x i32]], align 16 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.M, i64 80, i1 false) + %3 = getelementptr inbounds [4 x [5 x i32]], ptr %2, i64 0, i64 0 + call void @_Z10findMaxSumPA5_i(ptr noundef %3) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 + +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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/merge-sort-for-doubly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/merge-sort-for-doubly-linked-list.ll new file mode 100644 index 000000000..2c3d1451a --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/merge-sort-for-doubly-linked-list.ll @@ -0,0 +1,383 @@ +; ModuleID = 'PE-benchmarks/merge-sort-for-doubly-linked-list.cpp' +source_filename = "PE-benchmarks/merge-sort-for-doubly-linked-list.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Node = type { i32, ptr, ptr } + +@_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 +@.str.3 = private unnamed_addr constant [27 x i8] c"Linked List after sorting\0A\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef ptr @_Z5mergeP4NodeS0_(ptr noundef %0, ptr noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = icmp ne ptr %6, null + br i1 %7, label %10, label %8 + +8: ; preds = %2 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %3, align 8 + br label %55 + +10: ; preds = %2 + %11 = load ptr, ptr %5, align 8 + %12 = icmp ne ptr %11, null + br i1 %12, label %15, label %13 + +13: ; preds = %10 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %55 + +15: ; preds = %10 + %16 = load ptr, ptr %4, align 8 + %17 = getelementptr inbounds %class.Node, ptr %16, i32 0, i32 0 + %18 = load i32, ptr %17, align 8 + %19 = load ptr, ptr %5, align 8 + %20 = getelementptr inbounds %class.Node, ptr %19, i32 0, i32 0 + %21 = load i32, ptr %20, align 8 + %22 = icmp slt i32 %18, %21 + br i1 %22, label %23, label %39 + +23: ; preds = %15 + %24 = load ptr, ptr %4, align 8 + %25 = getelementptr inbounds %class.Node, ptr %24, i32 0, i32 1 + %26 = load ptr, ptr %25, align 8 + %27 = load ptr, ptr %5, align 8 + %28 = call noundef ptr @_Z5mergeP4NodeS0_(ptr noundef %26, ptr noundef %27) + %29 = load ptr, ptr %4, align 8 + %30 = getelementptr inbounds %class.Node, ptr %29, i32 0, i32 1 + store ptr %28, ptr %30, align 8 + %31 = load ptr, ptr %4, align 8 + %32 = load ptr, ptr %4, align 8 + %33 = getelementptr inbounds %class.Node, ptr %32, i32 0, i32 1 + %34 = load ptr, ptr %33, align 8 + %35 = getelementptr inbounds %class.Node, ptr %34, i32 0, i32 2 + store ptr %31, ptr %35, align 8 + %36 = load ptr, ptr %4, align 8 + %37 = getelementptr inbounds %class.Node, ptr %36, i32 0, i32 2 + store ptr null, ptr %37, align 8 + %38 = load ptr, ptr %4, align 8 + store ptr %38, ptr %3, align 8 + br label %55 + +39: ; preds = %15 + %40 = load ptr, ptr %4, align 8 + %41 = load ptr, ptr %5, align 8 + %42 = getelementptr inbounds %class.Node, ptr %41, i32 0, i32 1 + %43 = load ptr, ptr %42, align 8 + %44 = call noundef ptr @_Z5mergeP4NodeS0_(ptr noundef %40, ptr noundef %43) + %45 = load ptr, ptr %5, align 8 + %46 = getelementptr inbounds %class.Node, ptr %45, i32 0, i32 1 + store ptr %44, ptr %46, align 8 + %47 = load ptr, ptr %5, align 8 + %48 = load ptr, ptr %5, align 8 + %49 = getelementptr inbounds %class.Node, ptr %48, i32 0, i32 1 + %50 = load ptr, ptr %49, align 8 + %51 = getelementptr inbounds %class.Node, ptr %50, i32 0, i32 2 + store ptr %47, ptr %51, align 8 + %52 = load ptr, ptr %5, align 8 + %53 = getelementptr inbounds %class.Node, ptr %52, i32 0, i32 2 + store ptr null, ptr %53, align 8 + %54 = load ptr, ptr %5, align 8 + store ptr %54, ptr %3, align 8 + br label %55 + +55: ; preds = %39, %23, %13, %8 + %56 = load ptr, ptr %3, align 8 + ret ptr %56 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef ptr @_Z9mergeSortP4Node(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = icmp ne ptr %5, null + br i1 %6, label %7, label %12 + +7: ; preds = %1 + %8 = load ptr, ptr %3, align 8 + %9 = getelementptr inbounds %class.Node, ptr %8, i32 0, i32 1 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %10, null + br i1 %11, label %14, label %12 + +12: ; preds = %7, %1 + %13 = load ptr, ptr %3, align 8 + store ptr %13, ptr %2, align 8 + br label %24 + +14: ; preds = %7 + %15 = load ptr, ptr %3, align 8 + %16 = call noundef ptr @_Z5splitP4Node(ptr noundef %15) + store ptr %16, ptr %4, align 8 + %17 = load ptr, ptr %3, align 8 + %18 = call noundef ptr @_Z9mergeSortP4Node(ptr noundef %17) + store ptr %18, ptr %3, align 8 + %19 = load ptr, ptr %4, align 8 + %20 = call noundef ptr @_Z9mergeSortP4Node(ptr noundef %19) + store ptr %20, ptr %4, align 8 + %21 = load ptr, ptr %3, align 8 + %22 = load ptr, ptr %4, align 8 + %23 = call noundef ptr @_Z5mergeP4NodeS0_(ptr noundef %21, ptr noundef %22) + store ptr %23, ptr %2, align 8 + br label %24 + +24: ; preds = %14, %12 + %25 = load ptr, ptr %2, align 8 + ret ptr %25 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef ptr @_Z5splitP4Node(ptr noundef %0) #1 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %6 = load ptr, ptr %2, align 8 + store ptr %6, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + store ptr %7, ptr %4, align 8 + br label %8 + +8: ; preds = %22, %1 + %9 = load ptr, ptr %3, align 8 + %10 = getelementptr inbounds %class.Node, ptr %9, i32 0, i32 1 + %11 = load ptr, ptr %10, align 8 + %12 = icmp ne ptr %11, null + br i1 %12, label %13, label %20 + +13: ; preds = %8 + %14 = load ptr, ptr %3, align 8 + %15 = getelementptr inbounds %class.Node, ptr %14, i32 0, i32 1 + %16 = load ptr, ptr %15, align 8 + %17 = getelementptr inbounds %class.Node, ptr %16, i32 0, i32 1 + %18 = load ptr, ptr %17, align 8 + %19 = icmp ne ptr %18, null + br label %20 + +20: ; preds = %13, %8 + %21 = phi i1 [ false, %8 ], [ %19, %13 ] + br i1 %21, label %22, label %31 + +22: ; preds = %20 + %23 = load ptr, ptr %3, align 8 + %24 = getelementptr inbounds %class.Node, ptr %23, i32 0, i32 1 + %25 = load ptr, ptr %24, align 8 + %26 = getelementptr inbounds %class.Node, ptr %25, i32 0, i32 1 + %27 = load ptr, ptr %26, align 8 + store ptr %27, ptr %3, align 8 + %28 = load ptr, ptr %4, align 8 + %29 = getelementptr inbounds %class.Node, ptr %28, i32 0, i32 1 + %30 = load ptr, ptr %29, align 8 + store ptr %30, ptr %4, align 8 + br label %8, !llvm.loop !6 + +31: ; preds = %20 + %32 = load ptr, ptr %4, align 8 + %33 = getelementptr inbounds %class.Node, ptr %32, i32 0, i32 1 + %34 = load ptr, ptr %33, align 8 + store ptr %34, ptr %5, align 8 + %35 = load ptr, ptr %4, align 8 + %36 = getelementptr inbounds %class.Node, ptr %35, i32 0, i32 1 + store ptr null, ptr %36, align 8 + %37 = load ptr, ptr %5, align 8 + ret ptr %37 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6insertPP4Nodei(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %6 = call noalias noundef nonnull ptr @_Znwm(i64 noundef 24) #6 + call void @llvm.memset.p0.i64(ptr align 16 %6, i8 0, i64 24, i1 false) + store ptr %6, ptr %5, align 8 + %7 = load i32, ptr %4, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = getelementptr inbounds %class.Node, ptr %8, i32 0, i32 0 + store i32 %7, ptr %9, align 8 + %10 = load ptr, ptr %5, align 8 + %11 = getelementptr inbounds %class.Node, ptr %10, i32 0, i32 2 + store ptr null, ptr %11, align 8 + %12 = load ptr, ptr %5, align 8 + %13 = getelementptr inbounds %class.Node, ptr %12, i32 0, i32 1 + store ptr null, ptr %13, align 8 + %14 = load ptr, ptr %3, align 8 + %15 = load ptr, ptr %14, align 8 + %16 = icmp ne ptr %15, null + br i1 %16, label %20, label %17 + +17: ; preds = %2 + %18 = load ptr, ptr %5, align 8 + %19 = load ptr, ptr %3, align 8 + store ptr %18, ptr %19, align 8 + br label %31 + +20: ; preds = %2 + %21 = load ptr, ptr %3, align 8 + %22 = load ptr, ptr %21, align 8 + %23 = load ptr, ptr %5, align 8 + %24 = getelementptr inbounds %class.Node, ptr %23, i32 0, i32 1 + store ptr %22, ptr %24, align 8 + %25 = load ptr, ptr %5, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = load ptr, ptr %26, align 8 + %28 = getelementptr inbounds %class.Node, ptr %27, i32 0, i32 2 + store ptr %25, ptr %28, align 8 + %29 = load ptr, ptr %5, align 8 + %30 = load ptr, ptr %3, align 8 + store ptr %29, ptr %30, align 8 + br label %31 + +31: ; preds = %20, %17 + ret void +} + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #3 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z5printP4Node(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + store ptr %4, ptr %3, align 8 + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %6 + +6: ; preds = %9, %1 + %7 = load ptr, ptr %2, align 8 + %8 = icmp ne ptr %7, null + br i1 %8, label %9, label %19 + +9: ; preds = %6 + %10 = load ptr, ptr %2, align 8 + %11 = getelementptr inbounds %class.Node, ptr %10, i32 0, i32 0 + %12 = load i32, ptr %11, align 8 + %13 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %12) + %14 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %13, ptr noundef @.str.1) + %15 = load ptr, ptr %2, align 8 + store ptr %15, ptr %3, align 8 + %16 = load ptr, ptr %2, align 8 + %17 = getelementptr inbounds %class.Node, ptr %16, i32 0, i32 1 + %18 = load ptr, ptr %17, align 8 + store ptr %18, ptr %2, align 8 + br label %6, !llvm.loop !8 + +19: ; preds = %6 + %20 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + br label %21 + +21: ; preds = %24, %19 + %22 = load ptr, ptr %3, align 8 + %23 = icmp ne ptr %22, null + br i1 %23, label %24, label %33 + +24: ; preds = %21 + %25 = load ptr, ptr %3, align 8 + %26 = getelementptr inbounds %class.Node, ptr %25, i32 0, i32 0 + %27 = load i32, ptr %26, align 8 + %28 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %27) + %29 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %28, ptr noundef @.str.1) + %30 = load ptr, ptr %3, align 8 + %31 = getelementptr inbounds %class.Node, ptr %30, i32 0, i32 2 + %32 = load ptr, ptr %31, align 8 + store ptr %32, ptr %3, align 8 + br label %21, !llvm.loop !9 + +33: ; preds = %21 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #1 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = load i32, ptr %6, align 4 + store i32 %7, ptr %5, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = load ptr, ptr %3, align 8 + store i32 %9, ptr %10, align 4 + %11 = load i32, ptr %5, align 4 + %12 = load ptr, ptr %4, align 8 + store i32 %11, ptr %12, align 4 + ret void +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #5 { + %1 = alloca i32, align 4 + %2 = alloca ptr, align 8 + store i32 0, ptr %1, align 4 + store ptr null, ptr %2, align 8 + call void @_Z6insertPP4Nodei(ptr noundef %2, i32 noundef 5) + call void @_Z6insertPP4Nodei(ptr noundef %2, i32 noundef 20) + call void @_Z6insertPP4Nodei(ptr noundef %2, i32 noundef 4) + call void @_Z6insertPP4Nodei(ptr noundef %2, i32 noundef 3) + call void @_Z6insertPP4Nodei(ptr noundef %2, i32 noundef 30) + call void @_Z6insertPP4Nodei(ptr noundef %2, i32 noundef 10) + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_Z9mergeSortP4Node(ptr noundef %3) + store ptr %4, ptr %2, align 8 + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.3) + %6 = load ptr, ptr %2, align 8 + call void @_Z5printP4Node(ptr noundef %6) + ret i32 0 +} + +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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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 = { builtin allocsize(0) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/mergeSort_LinkedList.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/mergeSort_LinkedList.ll new file mode 100644 index 000000000..1613cb08b --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/mergeSort_LinkedList.ll @@ -0,0 +1,299 @@ +; ModuleID = 'PE-benchmarks/mergeSort_LinkedList.cpp' +source_filename = "PE-benchmarks/mergeSort_LinkedList.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Node = type { i32, ptr } + +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9MergeSortPP4Node(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %6 = load ptr, ptr %2, align 8 + %7 = load ptr, ptr %6, align 8 + store ptr %7, ptr %3, align 8 + %8 = load ptr, ptr %3, align 8 + %9 = icmp eq ptr %8, null + br i1 %9, label %15, label %10 + +10: ; preds = %1 + %11 = load ptr, ptr %3, align 8 + %12 = getelementptr inbounds %class.Node, ptr %11, i32 0, i32 1 + %13 = load ptr, ptr %12, align 8 + %14 = icmp eq ptr %13, null + br i1 %14, label %15, label %16 + +15: ; preds = %10, %1 + br label %22 + +16: ; preds = %10 + %17 = load ptr, ptr %3, align 8 + call void @_Z14FrontBackSplitP4NodePS0_S1_(ptr noundef %17, ptr noundef %4, ptr noundef %5) + call void @_Z9MergeSortPP4Node(ptr noundef %4) + call void @_Z9MergeSortPP4Node(ptr noundef %5) + %18 = load ptr, ptr %4, align 8 + %19 = load ptr, ptr %5, align 8 + %20 = call noundef ptr @_Z11SortedMergeP4NodeS0_(ptr noundef %18, ptr noundef %19) + %21 = load ptr, ptr %2, align 8 + store ptr %20, ptr %21, align 8 + br label %22 + +22: ; preds = %16, %15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z14FrontBackSplitP4NodePS0_S1_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #1 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %4, align 8 + store ptr %9, ptr %8, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = getelementptr inbounds %class.Node, ptr %10, i32 0, i32 1 + %12 = load ptr, ptr %11, align 8 + store ptr %12, ptr %7, align 8 + br label %13 + +13: ; preds = %29, %3 + %14 = load ptr, ptr %7, align 8 + %15 = icmp ne ptr %14, null + br i1 %15, label %16, label %30 + +16: ; preds = %13 + %17 = load ptr, ptr %7, align 8 + %18 = getelementptr inbounds %class.Node, ptr %17, i32 0, i32 1 + %19 = load ptr, ptr %18, align 8 + store ptr %19, ptr %7, align 8 + %20 = load ptr, ptr %7, align 8 + %21 = icmp ne ptr %20, null + br i1 %21, label %22, label %29 + +22: ; preds = %16 + %23 = load ptr, ptr %8, align 8 + %24 = getelementptr inbounds %class.Node, ptr %23, i32 0, i32 1 + %25 = load ptr, ptr %24, align 8 + store ptr %25, ptr %8, align 8 + %26 = load ptr, ptr %7, align 8 + %27 = getelementptr inbounds %class.Node, ptr %26, i32 0, i32 1 + %28 = load ptr, ptr %27, align 8 + store ptr %28, ptr %7, align 8 + br label %29 + +29: ; preds = %22, %16 + br label %13, !llvm.loop !6 + +30: ; preds = %13 + %31 = load ptr, ptr %4, align 8 + %32 = load ptr, ptr %5, align 8 + store ptr %31, ptr %32, align 8 + %33 = load ptr, ptr %8, align 8 + %34 = getelementptr inbounds %class.Node, ptr %33, i32 0, i32 1 + %35 = load ptr, ptr %34, align 8 + %36 = load ptr, ptr %6, align 8 + store ptr %35, ptr %36, align 8 + %37 = load ptr, ptr %8, align 8 + %38 = getelementptr inbounds %class.Node, ptr %37, i32 0, i32 1 + store ptr null, ptr %38, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef ptr @_Z11SortedMergeP4NodeS0_(ptr noundef %0, ptr noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr null, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = icmp eq ptr %7, null + br i1 %8, label %9, label %11 + +9: ; preds = %2 + %10 = load ptr, ptr %5, align 8 + store ptr %10, ptr %3, align 8 + br label %45 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + %13 = icmp eq ptr %12, null + br i1 %13, label %14, label %16 + +14: ; preds = %11 + %15 = load ptr, ptr %4, align 8 + store ptr %15, ptr %3, align 8 + br label %45 + +16: ; preds = %11 + br label %17 + +17: ; preds = %16 + %18 = load ptr, ptr %4, align 8 + %19 = getelementptr inbounds %class.Node, ptr %18, i32 0, i32 0 + %20 = load i32, ptr %19, align 8 + %21 = load ptr, ptr %5, align 8 + %22 = getelementptr inbounds %class.Node, ptr %21, i32 0, i32 0 + %23 = load i32, ptr %22, align 8 + %24 = icmp sle i32 %20, %23 + br i1 %24, label %25, label %34 + +25: ; preds = %17 + %26 = load ptr, ptr %4, align 8 + store ptr %26, ptr %6, align 8 + %27 = load ptr, ptr %4, align 8 + %28 = getelementptr inbounds %class.Node, ptr %27, i32 0, i32 1 + %29 = load ptr, ptr %28, align 8 + %30 = load ptr, ptr %5, align 8 + %31 = call noundef ptr @_Z11SortedMergeP4NodeS0_(ptr noundef %29, ptr noundef %30) + %32 = load ptr, ptr %6, align 8 + %33 = getelementptr inbounds %class.Node, ptr %32, i32 0, i32 1 + store ptr %31, ptr %33, align 8 + br label %43 + +34: ; preds = %17 + %35 = load ptr, ptr %5, align 8 + store ptr %35, ptr %6, align 8 + %36 = load ptr, ptr %4, align 8 + %37 = load ptr, ptr %5, align 8 + %38 = getelementptr inbounds %class.Node, ptr %37, i32 0, i32 1 + %39 = load ptr, ptr %38, align 8 + %40 = call noundef ptr @_Z11SortedMergeP4NodeS0_(ptr noundef %36, ptr noundef %39) + %41 = load ptr, ptr %6, align 8 + %42 = getelementptr inbounds %class.Node, ptr %41, i32 0, i32 1 + store ptr %40, ptr %42, align 8 + br label %43 + +43: ; preds = %34, %25 + %44 = load ptr, ptr %6, align 8 + store ptr %44, ptr %3, align 8 + br label %45 + +45: ; preds = %43, %14, %9 + %46 = load ptr, ptr %3, align 8 + ret ptr %46 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9printListP4Node(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + br label %3 + +3: ; preds = %6, %1 + %4 = load ptr, ptr %2, align 8 + %5 = icmp ne ptr %4, null + br i1 %5, label %6, label %15 + +6: ; preds = %3 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %class.Node, ptr %7, i32 0, i32 0 + %9 = load i32, ptr %8, align 8 + %10 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %9) + %11 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef @.str) + %12 = load ptr, ptr %2, align 8 + %13 = getelementptr inbounds %class.Node, ptr %12, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %14, ptr %2, align 8 + br label %3, !llvm.loop !8 + +15: ; preds = %3 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z4pushPP4Nodei(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %6 = call noalias noundef nonnull ptr @_Znwm(i64 noundef 16) #6 + call void @llvm.memset.p0.i64(ptr align 16 %6, i8 0, i64 16, i1 false) + store ptr %6, ptr %5, align 8 + %7 = load i32, ptr %4, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = getelementptr inbounds %class.Node, ptr %8, i32 0, i32 0 + store i32 %7, ptr %9, align 8 + %10 = load ptr, ptr %3, align 8 + %11 = load ptr, ptr %10, align 8 + %12 = load ptr, ptr %5, align 8 + %13 = getelementptr inbounds %class.Node, ptr %12, i32 0, i32 1 + store ptr %11, ptr %13, align 8 + %14 = load ptr, ptr %5, align 8 + %15 = load ptr, ptr %3, align 8 + store ptr %14, ptr %15, align 8 + ret void +} + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #3 + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #4 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #5 { + %1 = alloca i32, align 4 + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store i32 0, ptr %1, align 4 + store ptr null, ptr %2, align 8 + store ptr null, ptr %3, align 8 + call void @_Z4pushPP4Nodei(ptr noundef %3, i32 noundef 15) + call void @_Z4pushPP4Nodei(ptr noundef %3, i32 noundef 10) + call void @_Z4pushPP4Nodei(ptr noundef %3, i32 noundef 5) + call void @_Z4pushPP4Nodei(ptr noundef %3, i32 noundef 20) + call void @_Z4pushPP4Nodei(ptr noundef %3, i32 noundef 3) + call void @_Z4pushPP4Nodei(ptr noundef %3, i32 noundef 2) + call void @_Z9MergeSortPP4Node(ptr noundef %3) + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + %5 = load ptr, ptr %3, align 8 + call void @_Z9printListP4Node(ptr noundef %5) + ret i32 0 +} + +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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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 = { builtin allocsize(0) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/min-cost-path.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/min-cost-path.ll similarity index 56% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/min-cost-path.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/min-cost-path.ll index 46517977f..8b3f79732 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/min-cost-path.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/min-cost-path.ll @@ -7,81 +7,81 @@ target triple = "x86_64-pc-linux-gnu" @.str = private unnamed_addr constant [5 x i8] c" %d \00", align 1 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z7minCostPA3_iii([3 x i32]* noundef %0, i32 noundef %1, i32 noundef %2) #0 { +define dso_local noundef i32 @_Z7minCostPA3_iii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { %4 = alloca i32, align 4 - %5 = alloca [3 x i32]*, align 8 + %5 = alloca ptr, align 8 %6 = alloca i32, align 4 %7 = alloca i32, align 4 - store [3 x i32]* %0, [3 x i32]** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - %8 = load i32, i32* %7, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store i32 %2, ptr %7, align 4 + %8 = load i32, ptr %7, align 4 %9 = icmp slt i32 %8, 0 br i1 %9, label %13, label %10 10: ; preds = %3 - %11 = load i32, i32* %6, align 4 + %11 = load i32, ptr %6, align 4 %12 = icmp slt i32 %11, 0 br i1 %12, label %13, label %14 13: ; preds = %10, %3 - store i32 2147483647, i32* %4, align 4 + store i32 2147483647, ptr %4, align 4 br label %56 14: ; preds = %10 - %15 = load i32, i32* %6, align 4 + %15 = load i32, ptr %6, align 4 %16 = icmp eq i32 %15, 0 br i1 %16, label %17, label %29 17: ; preds = %14 - %18 = load i32, i32* %7, align 4 + %18 = load i32, ptr %7, align 4 %19 = icmp eq i32 %18, 0 br i1 %19, label %20, label %29 20: ; preds = %17 - %21 = load [3 x i32]*, [3 x i32]** %5, align 8 - %22 = load i32, i32* %6, align 4 + %21 = load ptr, ptr %5, align 8 + %22 = load i32, ptr %6, align 4 %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds [3 x i32], [3 x i32]* %21, i64 %23 - %25 = load i32, i32* %7, align 4 + %24 = getelementptr inbounds [3 x i32], ptr %21, i64 %23 + %25 = load i32, ptr %7, align 4 %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds [3 x i32], [3 x i32]* %24, i64 0, i64 %26 - %28 = load i32, i32* %27, align 4 - store i32 %28, i32* %4, align 4 + %27 = getelementptr inbounds [3 x i32], ptr %24, i64 0, i64 %26 + %28 = load i32, ptr %27, align 4 + store i32 %28, ptr %4, align 4 br label %56 29: ; preds = %17, %14 - %30 = load [3 x i32]*, [3 x i32]** %5, align 8 - %31 = load i32, i32* %6, align 4 + %30 = load ptr, ptr %5, align 8 + %31 = load i32, ptr %6, align 4 %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds [3 x i32], [3 x i32]* %30, i64 %32 - %34 = load i32, i32* %7, align 4 + %33 = getelementptr inbounds [3 x i32], ptr %30, i64 %32 + %34 = load i32, ptr %7, align 4 %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds [3 x i32], [3 x i32]* %33, i64 0, i64 %35 - %37 = load i32, i32* %36, align 4 - %38 = load [3 x i32]*, [3 x i32]** %5, align 8 - %39 = load i32, i32* %6, align 4 + %36 = getelementptr inbounds [3 x i32], ptr %33, i64 0, i64 %35 + %37 = load i32, ptr %36, align 4 + %38 = load ptr, ptr %5, align 8 + %39 = load i32, ptr %6, align 4 %40 = sub nsw i32 %39, 1 - %41 = load i32, i32* %7, align 4 + %41 = load i32, ptr %7, align 4 %42 = sub nsw i32 %41, 1 - %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 + %43 = call noundef i32 @_Z7minCostPA3_iii(ptr noundef %38, i32 noundef %40, i32 noundef %42) + %44 = load ptr, ptr %5, align 8 + %45 = load i32, ptr %6, align 4 %46 = sub nsw i32 %45, 1 - %47 = load i32, i32* %7, align 4 - %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 + %47 = load i32, ptr %7, align 4 + %48 = call noundef i32 @_Z7minCostPA3_iii(ptr noundef %44, i32 noundef %46, i32 noundef %47) + %49 = load ptr, ptr %5, align 8 + %50 = load i32, ptr %6, align 4 + %51 = load i32, ptr %7, align 4 %52 = sub nsw i32 %51, 1 - %53 = call noundef i32 @_Z7minCostPA3_iii([3 x i32]* noundef %49, i32 noundef %50, i32 noundef %52) + %53 = call noundef i32 @_Z7minCostPA3_iii(ptr 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 + store i32 %55, ptr %4, align 4 br label %56 56: ; preds = %29, %20, %13 - %57 = load i32, i32* %4, align 4 + %57 = load i32, ptr %4, align 4 ret i32 %57 } @@ -91,54 +91,54 @@ define dso_local noundef i32 @_Z3miniii(i32 noundef %0, i32 noundef %1, i32 noun %5 = alloca i32, align 4 %6 = alloca i32, align 4 %7 = alloca i32, align 4 - store i32 %0, i32* %5, align 4 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - %8 = load i32, i32* %5, align 4 - %9 = load i32, i32* %6, align 4 + store i32 %0, ptr %5, align 4 + store i32 %1, ptr %6, align 4 + store i32 %2, ptr %7, align 4 + %8 = load i32, ptr %5, align 4 + %9 = load i32, ptr %6, align 4 %10 = icmp slt i32 %8, %9 br i1 %10, label %11, label %21 11: ; preds = %3 - %12 = load i32, i32* %5, align 4 - %13 = load i32, i32* %7, align 4 + %12 = load i32, ptr %5, align 4 + %13 = load i32, ptr %7, align 4 %14 = icmp slt i32 %12, %13 br i1 %14, label %15, label %17 15: ; preds = %11 - %16 = load i32, i32* %5, align 4 + %16 = load i32, ptr %5, align 4 br label %19 17: ; preds = %11 - %18 = load i32, i32* %7, align 4 + %18 = load i32, ptr %7, align 4 br label %19 19: ; preds = %17, %15 %20 = phi i32 [ %16, %15 ], [ %18, %17 ] - store i32 %20, i32* %4, align 4 + store i32 %20, ptr %4, align 4 br label %31 21: ; preds = %3 - %22 = load i32, i32* %6, align 4 - %23 = load i32, i32* %7, align 4 + %22 = load i32, ptr %6, align 4 + %23 = load i32, ptr %7, align 4 %24 = icmp slt i32 %22, %23 br i1 %24, label %25, label %27 25: ; preds = %21 - %26 = load i32, i32* %6, align 4 + %26 = load i32, ptr %6, align 4 br label %29 27: ; preds = %21 - %28 = load i32, i32* %7, align 4 + %28 = load i32, ptr %7, align 4 br label %29 29: ; preds = %27, %25 %30 = phi i32 [ %26, %25 ], [ %28, %27 ] - store i32 %30, i32* %4, align 4 + store i32 %30, ptr %4, align 4 br label %31 31: ; preds = %29, %19 - %32 = load i32, i32* %4, align 4 + %32 = load i32, ptr %4, align 4 ret i32 %32 } @@ -146,32 +146,31 @@ define dso_local noundef i32 @_Z3miniii(i32 noundef %0, i32 noundef %1, i32 noun 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 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) + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.cost, i64 36, i1 false) + %3 = getelementptr inbounds [3 x [3 x i32]], ptr %2, i64 0, i64 0 + %4 = call noundef i32 @_Z7minCostPA3_iii(ptr noundef %3, i32 noundef 2, i32 noundef 2) + %5 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %4) ret i32 0 } -; 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: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 -declare i32 @printf(i8* noundef, ...) #4 +declare i32 @printf(ptr noundef, ...) #4 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 #3 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } 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, !1, !2, !3, !4} !llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{i32 7, !"PIC Level", i32 2} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll new file mode 100644 index 000000000..48bd0f73a --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll @@ -0,0 +1,159 @@ +; ModuleID = 'PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp' +source_filename = "PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z5solvePii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + store i32 -1, ptr %5, align 4 + %10 = load ptr, ptr %3, align 8 + %11 = getelementptr inbounds i32, ptr %10, i64 0 + %12 = load i32, ptr %11, align 4 + store i32 %12, ptr %6, align 4 + store i32 0, ptr %7, align 4 + store i32 0, ptr %8, align 4 + store i32 0, ptr %9, align 4 + br label %13 + +13: ; preds = %48, %2 + %14 = load i32, ptr %9, align 4 + %15 = load i32, ptr %4, align 4 + %16 = icmp slt i32 %14, %15 + br i1 %16, label %17, label %51 + +17: ; preds = %13 + %18 = load ptr, ptr %3, align 8 + %19 = load i32, ptr %9, align 4 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds i32, ptr %18, i64 %20 + %22 = load i32, ptr %21, align 4 + %23 = load i32, ptr %5, align 4 + %24 = icmp sgt i32 %22, %23 + br i1 %24, label %25, label %32 + +25: ; preds = %17 + %26 = load ptr, ptr %3, align 8 + %27 = load i32, ptr %9, align 4 + %28 = sext i32 %27 to i64 + %29 = getelementptr inbounds i32, ptr %26, i64 %28 + %30 = load i32, ptr %29, align 4 + store i32 %30, ptr %5, align 4 + %31 = load i32, ptr %9, align 4 + store i32 %31, ptr %7, align 4 + br label %32 + +32: ; preds = %25, %17 + %33 = load ptr, ptr %3, align 8 + %34 = load i32, ptr %9, align 4 + %35 = sext i32 %34 to i64 + %36 = getelementptr inbounds i32, ptr %33, i64 %35 + %37 = load i32, ptr %36, align 4 + %38 = load i32, ptr %6, align 4 + %39 = icmp sle i32 %37, %38 + br i1 %39, label %40, label %47 + +40: ; preds = %32 + %41 = load ptr, ptr %3, align 8 + %42 = load i32, ptr %9, align 4 + %43 = sext i32 %42 to i64 + %44 = getelementptr inbounds i32, ptr %41, i64 %43 + %45 = load i32, ptr %44, align 4 + store i32 %45, ptr %6, align 4 + %46 = load i32, ptr %9, align 4 + store i32 %46, ptr %8, align 4 + br label %47 + +47: ; preds = %40, %32 + br label %48 + +48: ; preds = %47 + %49 = load i32, ptr %9, align 4 + %50 = add nsw i32 %49, 1 + store i32 %50, ptr %9, align 4 + br label %13, !llvm.loop !6 + +51: ; preds = %13 + %52 = load i32, ptr %8, align 4 + %53 = load i32, ptr %7, align 4 + %54 = icmp slt i32 %52, %53 + br i1 %54, label %55, label %63 + +55: ; preds = %51 + %56 = load i32, ptr %7, align 4 + %57 = load i32, ptr %4, align 4 + %58 = load i32, ptr %8, align 4 + %59 = sub nsw i32 %57, %58 + %60 = sub nsw i32 %59, 2 + %61 = add nsw i32 %56, %60 + %62 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %61) + br label %71 + +63: ; preds = %51 + %64 = load i32, ptr %7, align 4 + %65 = load i32, ptr %4, align 4 + %66 = load i32, ptr %8, align 4 + %67 = sub nsw i32 %65, %66 + %68 = sub nsw i32 %67, 1 + %69 = add nsw i32 %64, %68 + %70 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %69) + br label %71 + +71: ; preds = %63, %55 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #2 { + %1 = alloca i32, align 4 + %2 = alloca [4 x i32], align 16 + %3 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.a, i64 16, i1 false) + store i32 4, ptr %3, align 4 + %4 = getelementptr inbounds [4 x i32], ptr %2, i64 0, i64 0 + %5 = load i32, ptr %3, align 4 + call void @_Z5solvePii(ptr noundef %4, i32 noundef %5) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 + +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/minimum-cost-polygon-triangulation.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/minimum-cost-polygon-triangulation.ll new file mode 100644 index 000000000..32545541c --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/minimum-cost-polygon-triangulation.ll @@ -0,0 +1,403 @@ +; ModuleID = 'PE-benchmarks/minimum-cost-polygon-triangulation.cpp' +source_filename = "PE-benchmarks/minimum-cost-polygon-triangulation.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%struct.Point = type { i32, i32 } + +$_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_ = comdat any + +@_ZSt4cout = external global %"class.std::basic_ostream", align 8 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef double @_Z3mindd(double noundef %0, double noundef %1) #0 { + %3 = alloca double, align 8 + %4 = alloca double, align 8 + store double %0, ptr %3, align 8 + store double %1, ptr %4, align 8 + %5 = load double, ptr %3, align 8 + %6 = load double, ptr %4, align 8 + %7 = fcmp ole double %5, %6 + br i1 %7, label %8, label %10 + +8: ; preds = %2 + %9 = load double, ptr %3, align 8 + br label %12 + +10: ; preds = %2 + %11 = load double, ptr %4, align 8 + br label %12 + +12: ; preds = %10, %8 + %13 = phi double [ %9, %8 ], [ %11, %10 ] + ret double %13 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef double @_Z4dist5PointS_(i64 %0, i64 %1) #1 { + %3 = alloca %struct.Point, align 4 + %4 = alloca %struct.Point, align 4 + store i64 %0, ptr %3, align 4 + store i64 %1, ptr %4, align 4 + %5 = getelementptr inbounds %struct.Point, ptr %3, i32 0, i32 0 + %6 = load i32, ptr %5, align 4 + %7 = getelementptr inbounds %struct.Point, ptr %4, i32 0, i32 0 + %8 = load i32, ptr %7, align 4 + %9 = sub nsw i32 %6, %8 + %10 = getelementptr inbounds %struct.Point, ptr %3, i32 0, i32 0 + %11 = load i32, ptr %10, align 4 + %12 = getelementptr inbounds %struct.Point, ptr %4, i32 0, i32 0 + %13 = load i32, ptr %12, align 4 + %14 = sub nsw i32 %11, %13 + %15 = mul nsw i32 %9, %14 + %16 = getelementptr inbounds %struct.Point, ptr %3, i32 0, i32 1 + %17 = load i32, ptr %16, align 4 + %18 = getelementptr inbounds %struct.Point, ptr %4, i32 0, i32 1 + %19 = load i32, ptr %18, align 4 + %20 = sub nsw i32 %17, %19 + %21 = getelementptr inbounds %struct.Point, ptr %3, i32 0, i32 1 + %22 = load i32, ptr %21, align 4 + %23 = getelementptr inbounds %struct.Point, ptr %4, i32 0, i32 1 + %24 = load i32, ptr %23, align 4 + %25 = sub nsw i32 %22, %24 + %26 = mul nsw i32 %20, %25 + %27 = add nsw i32 %15, %26 + %28 = call noundef double @_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_(i32 noundef %27) + ret double %28 +} + +; 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) #0 comdat { + %2 = alloca i32, align 4 + store i32 %0, ptr %2, align 4 + %3 = load i32, ptr %2, align 4 + %4 = sitofp i32 %3 to double + %5 = call double @sqrt(double noundef %4) #8 + ret double %5 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef double @_Z4costP5Pointiii(ptr noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #1 { + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca %struct.Point, align 4 + %10 = alloca %struct.Point, align 4 + %11 = alloca %struct.Point, align 4 + %12 = alloca %struct.Point, align 4 + %13 = alloca %struct.Point, align 4 + %14 = alloca %struct.Point, align 4 + %15 = alloca %struct.Point, align 4 + %16 = alloca %struct.Point, align 4 + %17 = alloca %struct.Point, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store i32 %2, ptr %7, align 4 + store i32 %3, ptr %8, align 4 + %18 = load ptr, ptr %5, align 8 + %19 = load i32, ptr %6, align 4 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds %struct.Point, ptr %18, i64 %20 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %9, ptr align 4 %21, i64 8, i1 false) + %22 = load ptr, ptr %5, align 8 + %23 = load i32, ptr %7, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds %struct.Point, ptr %22, i64 %24 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %10, ptr align 4 %25, i64 8, i1 false) + %26 = load ptr, ptr %5, align 8 + %27 = load i32, ptr %8, align 4 + %28 = sext i32 %27 to i64 + %29 = getelementptr inbounds %struct.Point, ptr %26, i64 %28 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %11, ptr align 4 %29, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %12, ptr align 4 %9, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %13, ptr align 4 %10, i64 8, i1 false) + %30 = load i64, ptr %12, align 4 + %31 = load i64, ptr %13, align 4 + %32 = call noundef double @_Z4dist5PointS_(i64 %30, i64 %31) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %14, ptr align 4 %10, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %15, ptr align 4 %11, i64 8, i1 false) + %33 = load i64, ptr %14, align 4 + %34 = load i64, ptr %15, align 4 + %35 = call noundef double @_Z4dist5PointS_(i64 %33, i64 %34) + %36 = fadd double %32, %35 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %16, ptr align 4 %11, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %17, ptr align 4 %9, i64 8, i1 false) + %37 = load i64, ptr %16, align 4 + %38 = load i64, ptr %17, align 4 + %39 = call noundef double @_Z4dist5PointS_(i64 %37, i64 %38) + %40 = fadd double %36, %39 + ret double %40 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #2 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef double @_Z5mTCDPP5Pointi(ptr noundef %0, i32 noundef %1) #1 { + %3 = alloca double, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca double, align 8 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + %14 = load i32, ptr %5, align 4 + %15 = icmp slt i32 %14, 3 + br i1 %15, label %16, label %17 + +16: ; preds = %2 + store double 0.000000e+00, ptr %3, align 8 + br label %129 + +17: ; preds = %2 + %18 = load i32, ptr %5, align 4 + %19 = zext i32 %18 to i64 + %20 = load i32, ptr %5, align 4 + %21 = zext i32 %20 to i64 + %22 = call ptr @llvm.stacksave() + store ptr %22, ptr %6, align 8 + %23 = mul nuw i64 %19, %21 + %24 = alloca double, i64 %23, align 16 + store i64 %19, ptr %7, align 8 + store i64 %21, ptr %8, align 8 + store i32 0, ptr %9, align 4 + br label %25 + +25: ; preds = %117, %17 + %26 = load i32, ptr %9, align 4 + %27 = load i32, ptr %5, align 4 + %28 = icmp slt i32 %26, %27 + br i1 %28, label %29, label %120 + +29: ; preds = %25 + store i32 0, ptr %10, align 4 + %30 = load i32, ptr %9, align 4 + store i32 %30, ptr %11, align 4 + br label %31 + +31: ; preds = %111, %29 + %32 = load i32, ptr %11, align 4 + %33 = load i32, ptr %5, align 4 + %34 = icmp slt i32 %32, %33 + br i1 %34, label %35, label %116 + +35: ; preds = %31 + %36 = load i32, ptr %11, align 4 + %37 = load i32, ptr %10, align 4 + %38 = add nsw i32 %37, 2 + %39 = icmp slt i32 %36, %38 + br i1 %39, label %40, label %48 + +40: ; preds = %35 + %41 = load i32, ptr %10, align 4 + %42 = sext i32 %41 to i64 + %43 = mul nsw i64 %42, %21 + %44 = getelementptr inbounds double, ptr %24, i64 %43 + %45 = load i32, ptr %11, align 4 + %46 = sext i32 %45 to i64 + %47 = getelementptr inbounds double, ptr %44, i64 %46 + store double 0.000000e+00, ptr %47, align 8 + br label %110 + +48: ; preds = %35 + %49 = load i32, ptr %10, align 4 + %50 = sext i32 %49 to i64 + %51 = mul nsw i64 %50, %21 + %52 = getelementptr inbounds double, ptr %24, i64 %51 + %53 = load i32, ptr %11, align 4 + %54 = sext i32 %53 to i64 + %55 = getelementptr inbounds double, ptr %52, i64 %54 + store double 1.000000e+06, ptr %55, align 8 + %56 = load i32, ptr %10, align 4 + %57 = add nsw i32 %56, 1 + store i32 %57, ptr %12, align 4 + br label %58 + +58: ; preds = %106, %48 + %59 = load i32, ptr %12, align 4 + %60 = load i32, ptr %11, align 4 + %61 = icmp slt i32 %59, %60 + br i1 %61, label %62, label %109 + +62: ; preds = %58 + %63 = load i32, ptr %10, align 4 + %64 = sext i32 %63 to i64 + %65 = mul nsw i64 %64, %21 + %66 = getelementptr inbounds double, ptr %24, i64 %65 + %67 = load i32, ptr %12, align 4 + %68 = sext i32 %67 to i64 + %69 = getelementptr inbounds double, ptr %66, i64 %68 + %70 = load double, ptr %69, align 8 + %71 = load i32, ptr %12, align 4 + %72 = sext i32 %71 to i64 + %73 = mul nsw i64 %72, %21 + %74 = getelementptr inbounds double, ptr %24, i64 %73 + %75 = load i32, ptr %11, align 4 + %76 = sext i32 %75 to i64 + %77 = getelementptr inbounds double, ptr %74, i64 %76 + %78 = load double, ptr %77, align 8 + %79 = fadd double %70, %78 + %80 = load ptr, ptr %4, align 8 + %81 = load i32, ptr %10, align 4 + %82 = load i32, ptr %11, align 4 + %83 = load i32, ptr %12, align 4 + %84 = call noundef double @_Z4costP5Pointiii(ptr noundef %80, i32 noundef %81, i32 noundef %82, i32 noundef %83) + %85 = fadd double %79, %84 + store double %85, ptr %13, align 8 + %86 = load i32, ptr %10, align 4 + %87 = sext i32 %86 to i64 + %88 = mul nsw i64 %87, %21 + %89 = getelementptr inbounds double, ptr %24, i64 %88 + %90 = load i32, ptr %11, align 4 + %91 = sext i32 %90 to i64 + %92 = getelementptr inbounds double, ptr %89, i64 %91 + %93 = load double, ptr %92, align 8 + %94 = load double, ptr %13, align 8 + %95 = fcmp ogt double %93, %94 + br i1 %95, label %96, label %105 + +96: ; preds = %62 + %97 = load double, ptr %13, align 8 + %98 = load i32, ptr %10, align 4 + %99 = sext i32 %98 to i64 + %100 = mul nsw i64 %99, %21 + %101 = getelementptr inbounds double, ptr %24, i64 %100 + %102 = load i32, ptr %11, align 4 + %103 = sext i32 %102 to i64 + %104 = getelementptr inbounds double, ptr %101, i64 %103 + store double %97, ptr %104, align 8 + br label %105 + +105: ; preds = %96, %62 + br label %106 + +106: ; preds = %105 + %107 = load i32, ptr %12, align 4 + %108 = add nsw i32 %107, 1 + store i32 %108, ptr %12, align 4 + br label %58, !llvm.loop !6 + +109: ; preds = %58 + br label %110 + +110: ; preds = %109, %40 + br label %111 + +111: ; preds = %110 + %112 = load i32, ptr %10, align 4 + %113 = add nsw i32 %112, 1 + store i32 %113, ptr %10, align 4 + %114 = load i32, ptr %11, align 4 + %115 = add nsw i32 %114, 1 + store i32 %115, ptr %11, align 4 + br label %31, !llvm.loop !8 + +116: ; preds = %31 + br label %117 + +117: ; preds = %116 + %118 = load i32, ptr %9, align 4 + %119 = add nsw i32 %118, 1 + store i32 %119, ptr %9, align 4 + br label %25, !llvm.loop !9 + +120: ; preds = %25 + %121 = mul nsw i64 0, %21 + %122 = getelementptr inbounds double, ptr %24, i64 %121 + %123 = load i32, ptr %5, align 4 + %124 = sub nsw i32 %123, 1 + %125 = sext i32 %124 to i64 + %126 = getelementptr inbounds double, ptr %122, i64 %125 + %127 = load double, ptr %126, align 8 + store double %127, ptr %3, align 8 + %128 = load ptr, ptr %6, align 8 + call void @llvm.stackrestore(ptr %128) + br label %129 + +129: ; preds = %120, %16 + %130 = load double, ptr %3, align 8 + ret double %130 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #3 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #3 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { + %1 = alloca i32, align 4 + %2 = alloca [5 x %struct.Point], align 16 + %3 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memset.p0.i64(ptr align 16 %2, i8 0, i64 40, i1 false) + %4 = getelementptr inbounds [5 x %struct.Point], ptr %2, i32 0, i32 1 + %5 = getelementptr inbounds %struct.Point, ptr %4, i32 0, i32 0 + store i32 1, ptr %5, align 8 + %6 = getelementptr inbounds [5 x %struct.Point], ptr %2, i32 0, i32 2 + %7 = getelementptr inbounds %struct.Point, ptr %6, i32 0, i32 0 + store i32 2, ptr %7, align 16 + %8 = getelementptr inbounds %struct.Point, ptr %6, i32 0, i32 1 + store i32 1, ptr %8, align 4 + %9 = getelementptr inbounds [5 x %struct.Point], ptr %2, i32 0, i32 3 + %10 = getelementptr inbounds %struct.Point, ptr %9, i32 0, i32 0 + store i32 1, ptr %10, align 8 + %11 = getelementptr inbounds %struct.Point, ptr %9, i32 0, i32 1 + store i32 2, ptr %11, align 4 + %12 = getelementptr inbounds [5 x %struct.Point], ptr %2, i32 0, i32 4 + %13 = getelementptr inbounds %struct.Point, ptr %12, i32 0, i32 1 + store i32 2, ptr %13, align 4 + store i32 5, ptr %3, align 4 + %14 = getelementptr inbounds [5 x %struct.Point], ptr %2, i64 0, i64 0 + %15 = load i32, ptr %3, align 4 + %16 = call noundef double @_Z5mTCDPP5Pointi(ptr noundef %14, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEd(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, double noundef %16) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEd(ptr noundef nonnull align 8 dereferenceable(8), double noundef) #6 + +; Function Attrs: nounwind +declare double @sqrt(double noundef) #7 + +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #3 = { nocallback nofree nosync 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" } +attributes #5 = { nocallback nofree nounwind willreturn memory(argmem: write) } +attributes #6 = { "frame-pointer"="all" "no-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 = { 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 = { nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/minimum-cut-in-a-directed-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/minimum-cut-in-a-directed-graph.ll new file mode 100644 index 000000000..7e6e33c8f --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/minimum-cut-in-a-directed-graph.ll @@ -0,0 +1,2612 @@ +; ModuleID = 'PE-benchmarks/minimum-cut-in-a-directed-graph.cpp' +source_filename = "PE-benchmarks/minimum-cut-in-a-directed-graph.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%"class.std::queue" = type { %"class.std::deque" } +%"class.std::deque" = type { %"class.std::_Deque_base" } +%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } +%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } +%"struct.std::_Deque_base>::_Deque_impl_data" = type { ptr, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } +%"struct.std::_Deque_iterator" = type { ptr, ptr, ptr, ptr } +%"class.std::allocator.0" = type { i8 } + +$_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any + +$_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi = comdat any + +$_ZNKSt5queueIiSt5dequeIiSaIiEEE5emptyEv = comdat any + +$_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv = comdat any + +$_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv = comdat any + +$_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev = comdat any + +$_ZSt3minIiERKT_S2_S2_ = comdat any + +$_ZNSt5dequeIiSaIiEED2Ev = comdat any + +$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any + +$_ZNSt5dequeIiSaIiEE5beginEv = comdat any + +$_ZNSt5dequeIiSaIiEE3endEv = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any + +$_ZSt16__deque_buf_sizem = comdat any + +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any + +$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any + +$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any + +$_ZNSt15__new_allocatorIPiED2Ev = comdat any + +$_ZNSt15__new_allocatorIiED2Ev = comdat any + +$_ZNSt5dequeIiSaIiEEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any + +$_ZSt3maxImERKT_S2_S2_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any + +$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any + +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any + +$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any + +$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any + +$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any + +$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any + +$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any + +$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any + +$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any + +$_ZSt3minImERKT_S2_S2_ = comdat any + +$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any + +$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any + +$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any + +$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__miter_baseIPPiET_S2_ = comdat any + +$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any + +$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__niter_baseIPPiET_S2_ = comdat any + +$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_ = comdat any + +$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNKSt5dequeIiSaIiEE5emptyEv = comdat any + +$_ZSteqRKSt15_Deque_iteratorIiRiPiES4_ = comdat any + +$_ZNSt5dequeIiSaIiEE5frontEv = comdat any + +$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any + +$_ZNSt5dequeIiSaIiEE9pop_frontEv = comdat any + +$_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv = comdat any + +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z3bfsPA6_iiiPi(ptr noundef %0, i32 noundef %1, i32 noundef %2, ptr noundef %3) #0 personality ptr @__gxx_personality_v0 { + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca ptr, align 8 + %9 = alloca [6 x i8], align 1 + %10 = alloca %"class.std::queue", align 8 + %11 = alloca ptr, align 8 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store i32 %2, ptr %7, align 4 + store ptr %3, ptr %8, align 8 + %15 = getelementptr inbounds [6 x i8], ptr %9, i64 0, i64 0 + call void @llvm.memset.p0.i64(ptr align 1 %15, i8 0, i64 6, i1 false) + call void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %10) + invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %10, ptr noundef nonnull align 4 dereferenceable(4) %6) + to label %16 unwind label %64 + +16: ; preds = %4 + %17 = load i32, ptr %6, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds [6 x i8], ptr %9, i64 0, i64 %18 + store i8 1, ptr %19, align 1 + %20 = load ptr, ptr %8, align 8 + %21 = load i32, ptr %6, align 4 + %22 = sext i32 %21 to i64 + %23 = getelementptr inbounds i32, ptr %20, i64 %22 + store i32 -1, ptr %23, align 4 + br label %24 + +24: ; preds = %72, %16 + %25 = invoke noundef zeroext i1 @_ZNKSt5queueIiSt5dequeIiSaIiEEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %10) + to label %26 unwind label %64 + +26: ; preds = %24 + %27 = xor i1 %25, true + br i1 %27, label %28, label %73 + +28: ; preds = %26 + %29 = invoke noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv(ptr noundef nonnull align 8 dereferenceable(80) %10) + to label %30 unwind label %64 + +30: ; preds = %28 + %31 = load i32, ptr %29, align 4 + store i32 %31, ptr %13, align 4 + invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %10) + to label %32 unwind label %64 + +32: ; preds = %30 + store i32 0, ptr %14, align 4 + br label %33 + +33: ; preds = %69, %32 + %34 = load i32, ptr %14, align 4 + %35 = icmp slt i32 %34, 6 + br i1 %35, label %36, label %72 + +36: ; preds = %33 + %37 = load i32, ptr %14, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds [6 x i8], ptr %9, i64 0, i64 %38 + %40 = load i8, ptr %39, align 1 + %41 = trunc i8 %40 to i1 + %42 = zext i1 %41 to i32 + %43 = icmp eq i32 %42, 0 + br i1 %43, label %44, label %68 + +44: ; preds = %36 + %45 = load ptr, ptr %5, align 8 + %46 = load i32, ptr %13, align 4 + %47 = sext i32 %46 to i64 + %48 = getelementptr inbounds [6 x i32], ptr %45, i64 %47 + %49 = load i32, ptr %14, align 4 + %50 = sext i32 %49 to i64 + %51 = getelementptr inbounds [6 x i32], ptr %48, i64 0, i64 %50 + %52 = load i32, ptr %51, align 4 + %53 = icmp sgt i32 %52, 0 + br i1 %53, label %54, label %68 + +54: ; preds = %44 + invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %10, ptr noundef nonnull align 4 dereferenceable(4) %14) + to label %55 unwind label %64 + +55: ; preds = %54 + %56 = load i32, ptr %13, align 4 + %57 = load ptr, ptr %8, align 8 + %58 = load i32, ptr %14, align 4 + %59 = sext i32 %58 to i64 + %60 = getelementptr inbounds i32, ptr %57, i64 %59 + store i32 %56, ptr %60, align 4 + %61 = load i32, ptr %14, align 4 + %62 = sext i32 %61 to i64 + %63 = getelementptr inbounds [6 x i8], ptr %9, i64 0, i64 %62 + store i8 1, ptr %63, align 1 + br label %68 + +64: ; preds = %54, %30, %28, %24, %4 + %65 = landingpad { ptr, i32 } + cleanup + %66 = extractvalue { ptr, i32 } %65, 0 + store ptr %66, ptr %11, align 8 + %67 = extractvalue { ptr, i32 } %65, 1 + store i32 %67, ptr %12, align 4 + call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %10) #12 + br label %82 + +68: ; preds = %55, %44, %36 + br label %69 + +69: ; preds = %68 + %70 = load i32, ptr %14, align 4 + %71 = add nsw i32 %70, 1 + store i32 %71, ptr %14, align 4 + br label %33, !llvm.loop !6 + +72: ; preds = %33 + br label %24, !llvm.loop !8 + +73: ; preds = %26 + %74 = load i32, ptr %7, align 4 + %75 = sext i32 %74 to i64 + %76 = getelementptr inbounds [6 x i8], ptr %9, i64 0, i64 %75 + %77 = load i8, ptr %76, align 1 + %78 = trunc i8 %77 to i1 + %79 = zext i1 %78 to i32 + %80 = icmp eq i32 %79, 1 + %81 = zext i1 %80 to i32 + call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %10) #12 + ret i32 %81 + +82: ; preds = %64 + %83 = load ptr, ptr %11, align 8 + %84 = load i32, ptr %12, align 4 + %85 = insertvalue { ptr, i32 } poison, ptr %83, 0 + %86 = insertvalue { ptr, i32 } %85, i32 %84, 1 + resume { ptr, i32 } %86 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #1 + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + call void @llvm.memset.p0.i64(ptr align 8 %4, i8 0, i64 80, i1 false) + call void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %4) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"class.std::queue", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + call void @_ZNSt5dequeIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(80) %6, ptr noundef nonnull align 4 dereferenceable(4) %7) + ret void +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5queueIiSt5dequeIiSaIiEEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + %5 = call noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #12 + ret i1 %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + %5 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5dequeIiSaIiEE5frontEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #12 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + call void @_ZNSt5dequeIiSaIiEE9pop_frontEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #12 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + call void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %4) #12 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z3dfsPA6_iiPb(ptr noundef %0, i32 noundef %1, ptr noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = load i32, ptr %5, align 4 + %10 = sext i32 %9 to i64 + %11 = getelementptr inbounds i8, ptr %8, i64 %10 + store i8 1, ptr %11, align 1 + store i32 0, ptr %7, align 4 + br label %12 + +12: ; preds = %37, %3 + %13 = load i32, ptr %7, align 4 + %14 = icmp slt i32 %13, 6 + br i1 %14, label %15, label %40 + +15: ; preds = %12 + %16 = load ptr, ptr %4, align 8 + %17 = load i32, ptr %5, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds [6 x i32], ptr %16, i64 %18 + %20 = load i32, ptr %7, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds [6 x i32], ptr %19, i64 0, i64 %21 + %23 = load i32, ptr %22, align 4 + %24 = icmp ne i32 %23, 0 + br i1 %24, label %25, label %36 + +25: ; preds = %15 + %26 = load ptr, ptr %6, align 8 + %27 = load i32, ptr %7, align 4 + %28 = sext i32 %27 to i64 + %29 = getelementptr inbounds i8, ptr %26, i64 %28 + %30 = load i8, ptr %29, align 1 + %31 = trunc i8 %30 to i1 + br i1 %31, label %36, label %32 + +32: ; preds = %25 + %33 = load ptr, ptr %4, align 8 + %34 = load i32, ptr %7, align 4 + %35 = load ptr, ptr %6, align 8 + call void @_Z3dfsPA6_iiPb(ptr noundef %33, i32 noundef %34, ptr noundef %35) + br label %36 + +36: ; preds = %32, %25, %15 + br label %37 + +37: ; preds = %36 + %38 = load i32, ptr %7, align 4 + %39 = add nsw i32 %38, 1 + store i32 %39, ptr %7, align 4 + br label %12, !llvm.loop !9 + +40: ; preds = %12 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6minCutPA6_iii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca [6 x [6 x i32]], align 16 + %10 = alloca [6 x i32], align 16 + %11 = alloca i32, align 4 + %12 = alloca [6 x i8], align 1 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + store i32 0, ptr %7, align 4 + br label %15 + +15: ; preds = %41, %3 + %16 = load i32, ptr %7, align 4 + %17 = icmp slt i32 %16, 6 + br i1 %17, label %18, label %44 + +18: ; preds = %15 + store i32 0, ptr %8, align 4 + br label %19 + +19: ; preds = %37, %18 + %20 = load i32, ptr %8, align 4 + %21 = icmp slt i32 %20, 6 + br i1 %21, label %22, label %40 + +22: ; preds = %19 + %23 = load ptr, ptr %4, align 8 + %24 = load i32, ptr %7, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds [6 x i32], ptr %23, i64 %25 + %27 = load i32, ptr %8, align 4 + %28 = sext i32 %27 to i64 + %29 = getelementptr inbounds [6 x i32], ptr %26, i64 0, i64 %28 + %30 = load i32, ptr %29, align 4 + %31 = load i32, ptr %7, align 4 + %32 = sext i32 %31 to i64 + %33 = getelementptr inbounds [6 x [6 x i32]], ptr %9, i64 0, i64 %32 + %34 = load i32, ptr %8, align 4 + %35 = sext i32 %34 to i64 + %36 = getelementptr inbounds [6 x i32], ptr %33, i64 0, i64 %35 + store i32 %30, ptr %36, align 4 + br label %37 + +37: ; preds = %22 + %38 = load i32, ptr %8, align 4 + %39 = add nsw i32 %38, 1 + store i32 %39, ptr %8, align 4 + br label %19, !llvm.loop !10 + +40: ; preds = %19 + br label %41 + +41: ; preds = %40 + %42 = load i32, ptr %7, align 4 + %43 = add nsw i32 %42, 1 + store i32 %43, ptr %7, align 4 + br label %15, !llvm.loop !11 + +44: ; preds = %15 + br label %45 + +45: ; preds = %110, %44 + %46 = getelementptr inbounds [6 x [6 x i32]], ptr %9, i64 0, i64 0 + %47 = load i32, ptr %5, align 4 + %48 = load i32, ptr %6, align 4 + %49 = getelementptr inbounds [6 x i32], ptr %10, i64 0, i64 0 + %50 = call noundef i32 @_Z3bfsPA6_iiiPi(ptr noundef %46, i32 noundef %47, i32 noundef %48, ptr noundef %49) + %51 = icmp ne i32 %50, 0 + br i1 %51, label %52, label %111 + +52: ; preds = %45 + store i32 2147483647, ptr %11, align 4 + %53 = load i32, ptr %6, align 4 + store i32 %53, ptr %8, align 4 + br label %54 + +54: ; preds = %71, %52 + %55 = load i32, ptr %8, align 4 + %56 = load i32, ptr %5, align 4 + %57 = icmp ne i32 %55, %56 + br i1 %57, label %58, label %76 + +58: ; preds = %54 + %59 = load i32, ptr %8, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds [6 x i32], ptr %10, i64 0, i64 %60 + %62 = load i32, ptr %61, align 4 + store i32 %62, ptr %7, align 4 + %63 = load i32, ptr %7, align 4 + %64 = sext i32 %63 to i64 + %65 = getelementptr inbounds [6 x [6 x i32]], ptr %9, i64 0, i64 %64 + %66 = load i32, ptr %8, align 4 + %67 = sext i32 %66 to i64 + %68 = getelementptr inbounds [6 x i32], ptr %65, i64 0, i64 %67 + %69 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %11, ptr noundef nonnull align 4 dereferenceable(4) %68) + %70 = load i32, ptr %69, align 4 + store i32 %70, ptr %11, align 4 + br label %71 + +71: ; preds = %58 + %72 = load i32, ptr %8, align 4 + %73 = sext i32 %72 to i64 + %74 = getelementptr inbounds [6 x i32], ptr %10, i64 0, i64 %73 + %75 = load i32, ptr %74, align 4 + store i32 %75, ptr %8, align 4 + br label %54, !llvm.loop !12 + +76: ; preds = %54 + %77 = load i32, ptr %6, align 4 + store i32 %77, ptr %8, align 4 + br label %78 + +78: ; preds = %105, %76 + %79 = load i32, ptr %8, align 4 + %80 = load i32, ptr %5, align 4 + %81 = icmp ne i32 %79, %80 + br i1 %81, label %82, label %110 + +82: ; preds = %78 + %83 = load i32, ptr %8, align 4 + %84 = sext i32 %83 to i64 + %85 = getelementptr inbounds [6 x i32], ptr %10, i64 0, i64 %84 + %86 = load i32, ptr %85, align 4 + store i32 %86, ptr %7, align 4 + %87 = load i32, ptr %11, align 4 + %88 = load i32, ptr %7, align 4 + %89 = sext i32 %88 to i64 + %90 = getelementptr inbounds [6 x [6 x i32]], ptr %9, i64 0, i64 %89 + %91 = load i32, ptr %8, align 4 + %92 = sext i32 %91 to i64 + %93 = getelementptr inbounds [6 x i32], ptr %90, i64 0, i64 %92 + %94 = load i32, ptr %93, align 4 + %95 = sub nsw i32 %94, %87 + store i32 %95, ptr %93, align 4 + %96 = load i32, ptr %11, align 4 + %97 = load i32, ptr %8, align 4 + %98 = sext i32 %97 to i64 + %99 = getelementptr inbounds [6 x [6 x i32]], ptr %9, i64 0, i64 %98 + %100 = load i32, ptr %7, align 4 + %101 = sext i32 %100 to i64 + %102 = getelementptr inbounds [6 x i32], ptr %99, i64 0, i64 %101 + %103 = load i32, ptr %102, align 4 + %104 = add nsw i32 %103, %96 + store i32 %104, ptr %102, align 4 + br label %105 + +105: ; preds = %82 + %106 = load i32, ptr %8, align 4 + %107 = sext i32 %106 to i64 + %108 = getelementptr inbounds [6 x i32], ptr %10, i64 0, i64 %107 + %109 = load i32, ptr %108, align 4 + store i32 %109, ptr %8, align 4 + br label %78, !llvm.loop !13 + +110: ; preds = %78 + br label %45, !llvm.loop !14 + +111: ; preds = %45 + %112 = getelementptr inbounds [6 x i8], ptr %12, i64 0, i64 0 + call void @llvm.memset.p0.i64(ptr align 1 %112, i8 0, i64 6, i1 false) + %113 = getelementptr inbounds [6 x [6 x i32]], ptr %9, i64 0, i64 0 + %114 = load i32, ptr %5, align 4 + %115 = getelementptr inbounds [6 x i8], ptr %12, i64 0, i64 0 + call void @_Z3dfsPA6_iiPb(ptr noundef %113, i32 noundef %114, ptr noundef %115) + store i32 0, ptr %13, align 4 + br label %116 + +116: ; preds = %157, %111 + %117 = load i32, ptr %13, align 4 + %118 = icmp slt i32 %117, 6 + br i1 %118, label %119, label %160 + +119: ; preds = %116 + store i32 0, ptr %14, align 4 + br label %120 + +120: ; preds = %153, %119 + %121 = load i32, ptr %14, align 4 + %122 = icmp slt i32 %121, 6 + br i1 %122, label %123, label %156 + +123: ; preds = %120 + %124 = load i32, ptr %13, align 4 + %125 = sext i32 %124 to i64 + %126 = getelementptr inbounds [6 x i8], ptr %12, i64 0, i64 %125 + %127 = load i8, ptr %126, align 1 + %128 = trunc i8 %127 to i1 + br i1 %128, label %129, label %152 + +129: ; preds = %123 + %130 = load i32, ptr %14, align 4 + %131 = sext i32 %130 to i64 + %132 = getelementptr inbounds [6 x i8], ptr %12, i64 0, i64 %131 + %133 = load i8, ptr %132, align 1 + %134 = trunc i8 %133 to i1 + br i1 %134, label %152, label %135 + +135: ; preds = %129 + %136 = load ptr, ptr %4, align 8 + %137 = load i32, ptr %13, align 4 + %138 = sext i32 %137 to i64 + %139 = getelementptr inbounds [6 x i32], ptr %136, i64 %138 + %140 = load i32, ptr %14, align 4 + %141 = sext i32 %140 to i64 + %142 = getelementptr inbounds [6 x i32], ptr %139, i64 0, i64 %141 + %143 = load i32, ptr %142, align 4 + %144 = icmp ne i32 %143, 0 + br i1 %144, label %145, label %152 + +145: ; preds = %135 + %146 = load i32, ptr %13, align 4 + %147 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %146) + %148 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %147, ptr noundef @.str) + %149 = load i32, ptr %14, align 4 + %150 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %148, i32 noundef %149) + %151 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %150, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %152 + +152: ; preds = %145, %135, %129, %123 + br label %153 + +153: ; preds = %152 + %154 = load i32, ptr %14, align 4 + %155 = add nsw i32 %154, 1 + store i32 %155, ptr %14, align 4 + br label %120, !llvm.loop !15 + +156: ; preds = %120 + br label %157 + +157: ; preds = %156 + %158 = load i32, ptr %13, align 4 + %159 = add nsw i32 %158, 1 + store i32 %159, ptr %13, align 4 + br label %116, !llvm.loop !16 + +160: ; preds = %116 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #3 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #5 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { + %1 = alloca i32, align 4 + %2 = alloca [6 x [6 x i32]], align 16 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.graph, i64 144, i1 false) + %3 = getelementptr inbounds [6 x [6 x i32]], ptr %2, i64 0, i64 0 + call void @_Z6minCutPA6_iii(ptr noundef %3, i32 noundef 0, i32 noundef 5) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #7 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_Deque_iterator", align 8 + %4 = alloca %"struct.std::_Deque_iterator", align 8 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt5dequeIiSaIiEE5beginEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %3, ptr noundef nonnull align 8 dereferenceable(80) %5) #12 + call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %4, ptr noundef nonnull align 8 dereferenceable(80) %5) #12 + %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #12 + invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(ptr noundef nonnull align 8 dereferenceable(80) %5, ptr noundef %3, ptr noundef %4, ptr noundef nonnull align 1 dereferenceable(1) %6) + to label %7 unwind label %8 + +7: ; preds = %1 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #12 + ret void + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + catch ptr null + %10 = extractvalue { ptr, i32 } %9, 0 + call void @__clang_call_terminate(ptr %10) #13 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #3 comdat align 2 { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %3, ptr %6, align 8 + %7 = load ptr, ptr %5, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %7) #12 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %7) #12 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #8 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #12 + call void @_ZSt9terminatev() #13 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 0 + %6 = load ptr, ptr %5, align 8 + %7 = icmp ne ptr %6, null + br i1 %7, label %8, label %24 + +8: ; preds = %1 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %9, i32 0, i32 2 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %10, i32 0, i32 3 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %14 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %13, i32 0, i32 3 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %14, i32 0, i32 3 + %16 = load ptr, ptr %15, align 8 + %17 = getelementptr inbounds ptr, ptr %16, i64 1 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %12, ptr noundef %17) #12 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 0 + %20 = load ptr, ptr %19, align 8 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 1 + %23 = load i64, ptr %22, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %20, i64 noundef %23) #12 + br label %24 + +24: ; preds = %8, %1 + %25 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %25) #12 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) unnamed_addr #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + store ptr %9, ptr %6, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 1 + %13 = load ptr, ptr %12, align 8 + store ptr %13, ptr %10, align 8 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + %15 = load ptr, ptr %4, align 8 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 2 + %17 = load ptr, ptr %16, align 8 + store ptr %17, ptr %14, align 8 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + %19 = load ptr, ptr %4, align 8 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + store ptr %21, ptr %18, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %7, align 8 + br label %10 + +10: ; preds = %17, %3 + %11 = load ptr, ptr %7, align 8 + %12 = load ptr, ptr %6, align 8 + %13 = icmp ult ptr %11, %12 + br i1 %13, label %14, label %20 + +14: ; preds = %10 + %15 = load ptr, ptr %7, align 8 + %16 = load ptr, ptr %15, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %8, ptr noundef %16) #12 + br label %17 + +17: ; preds = %14 + %18 = load ptr, ptr %7, align 8 + %19 = getelementptr inbounds ptr, ptr %18, i32 1 + store ptr %19, ptr %7, align 8 + br label %10, !llvm.loop !17 + +20: ; preds = %10 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, i64 noundef %2) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca %"class.std::allocator.0", align 1 + store ptr %0, ptr %8, align 8 + store ptr %1, ptr %9, align 8 + store i64 %2, ptr %10, align 8 + %12 = load ptr, ptr %8, align 8 + call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.0") align 1 %11, ptr noundef nonnull align 8 dereferenceable(80) %12) #12 + %13 = load ptr, ptr %9, align 8 + %14 = load i64, ptr %10, align 8 + store ptr %11, ptr %5, align 8 + store ptr %13, ptr %6, align 8 + store i64 %14, ptr %7, align 8 + %15 = load ptr, ptr %5, align 8 + %16 = load ptr, ptr %6, align 8 + %17 = load i64, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %3 + store ptr %11, ptr %4, align 8 + %19 = load ptr, ptr %4, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #12 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #13 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #12 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1) #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %7, align 8 + %11 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + to label %12 unwind label %17 + +12: ; preds = %2 + store ptr %9, ptr %3, align 8 + store ptr %10, ptr %4, align 8 + store i64 %11, ptr %5, align 8 + %13 = load ptr, ptr %3, align 8 + %14 = load ptr, ptr %4, align 8 + %15 = load i64, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14, i64 noundef %15) + br label %16 + +16: ; preds = %12 + ret void + +17: ; preds = %2 + %18 = landingpad { ptr, i32 } + catch ptr null + %19 = extractvalue { ptr, i32 } %18, 0 + call void @__clang_call_terminate(ptr %19) #13 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #3 comdat { + %2 = alloca i64, align 8 + store i64 %0, ptr %2, align 8 + %3 = load i64, ptr %2, align 8 + %4 = icmp ult i64 %3, 512 + br i1 %4, label %5, label %8 + +5: ; preds = %1 + %6 = load i64, ptr %2, align 8 + %7 = udiv i64 512, %6 + br label %9 + +8: ; preds = %1 + br label %9 + +9: ; preds = %8, %5 + %10 = phi i64 [ %7, %5 ], [ 1, %8 ] + ret i64 %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #14 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #9 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr noalias sret(%"class.std::allocator.0") align 1 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %7, align 8 + %9 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %8) #12 + store ptr %0, ptr %4, align 8 + store ptr %9, ptr %5, align 8 + %10 = load ptr, ptr %4, align 8 + store ptr %10, ptr %3, align 8 + %11 = load ptr, ptr %3, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) + ret void +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #2 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #12 + invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) + to label %7 unwind label %8 + +7: ; preds = %1 + ret void + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + cleanup + %10 = extractvalue { ptr, i32 } %9, 0 + store ptr %10, ptr %3, align 8 + %11 = extractvalue { ptr, i32 } %9, 1 + store i32 %11, ptr %4, align 4 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #12 + br label %12 + +12: ; preds = %8 + %13 = load ptr, ptr %3, align 8 + %14 = load i32, ptr %4, align 4 + %15 = insertvalue { ptr, i32 } poison, ptr %13, 0 + %16 = insertvalue { ptr, i32 } %15, i32 %14, 1 + resume { ptr, i32 } %16 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #12 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i64, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %12 = load ptr, ptr %3, align 8 + %13 = load i64, ptr %4, align 8 + %14 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %15 = udiv i64 %13, %14 + %16 = add i64 %15, 1 + store i64 %16, ptr %5, align 8 + store i64 8, ptr %6, align 8 + %17 = load i64, ptr %5, align 8 + %18 = add i64 %17, 2 + store i64 %18, ptr %7, align 8 + %19 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + %20 = load i64, ptr %19, align 8 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 1 + store i64 %20, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 1 + %25 = load i64, ptr %24, align 8 + %26 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %25) + %27 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %28 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %27, i32 0, i32 0 + store ptr %26, ptr %28, align 8 + %29 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + %32 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %32, i32 0, i32 1 + %34 = load i64, ptr %33, align 8 + %35 = load i64, ptr %5, align 8 + %36 = sub i64 %34, %35 + %37 = udiv i64 %36, 2 + %38 = getelementptr inbounds ptr, ptr %31, i64 %37 + store ptr %38, ptr %8, align 8 + %39 = load ptr, ptr %8, align 8 + %40 = load i64, ptr %5, align 8 + %41 = getelementptr inbounds ptr, ptr %39, i64 %40 + store ptr %41, ptr %9, align 8 + %42 = load ptr, ptr %8, align 8 + %43 = load ptr, ptr %9, align 8 + invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %42, ptr noundef %43) + to label %44 unwind label %45 + +44: ; preds = %2 + br label %67 + +45: ; preds = %2 + %46 = landingpad { ptr, i32 } + catch ptr null + %47 = extractvalue { ptr, i32 } %46, 0 + store ptr %47, ptr %10, align 8 + %48 = extractvalue { ptr, i32 } %46, 1 + store i32 %48, ptr %11, align 4 + br label %49 + +49: ; preds = %45 + %50 = load ptr, ptr %10, align 8 + %51 = call ptr @__cxa_begin_catch(ptr %50) #12 + %52 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %53 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %52, i32 0, i32 0 + %54 = load ptr, ptr %53, align 8 + %55 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %56 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %55, i32 0, i32 1 + %57 = load i64, ptr %56, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %54, i64 noundef %57) #12 + %58 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %58, i32 0, i32 0 + store ptr null, ptr %59, align 8 + %60 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %61 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %60, i32 0, i32 1 + store i64 0, ptr %61, align 8 + invoke void @__cxa_rethrow() #15 + to label %101 unwind label %62 + +62: ; preds = %49 + %63 = landingpad { ptr, i32 } + cleanup + %64 = extractvalue { ptr, i32 } %63, 0 + store ptr %64, ptr %10, align 8 + %65 = extractvalue { ptr, i32 } %63, 1 + store i32 %65, ptr %11, align 4 + invoke void @__cxa_end_catch() + to label %66 unwind label %98 + +66: ; preds = %62 + br label %93 + +67: ; preds = %44 + %68 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %68, i32 0, i32 2 + %70 = load ptr, ptr %8, align 8 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %69, ptr noundef %70) #12 + %71 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %72 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %71, i32 0, i32 3 + %73 = load ptr, ptr %9, align 8 + %74 = getelementptr inbounds ptr, ptr %73, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %72, ptr noundef %74) #12 + %75 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %76 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %75, i32 0, i32 2 + %77 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %76, i32 0, i32 1 + %78 = load ptr, ptr %77, align 8 + %79 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %80 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %79, i32 0, i32 2 + %81 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %80, i32 0, i32 0 + store ptr %78, ptr %81, align 8 + %82 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %82, i32 0, i32 3 + %84 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %83, i32 0, i32 1 + %85 = load ptr, ptr %84, align 8 + %86 = load i64, ptr %4, align 8 + %87 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %88 = urem i64 %86, %87 + %89 = getelementptr inbounds i32, ptr %85, i64 %88 + %90 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %91 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %90, i32 0, i32 3 + %92 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %91, i32 0, i32 0 + store ptr %89, ptr %92, align 8 + ret void + +93: ; preds = %66 + %94 = load ptr, ptr %10, align 8 + %95 = load i32, ptr %11, align 4 + %96 = insertvalue { ptr, i32 } poison, ptr %94, 0 + %97 = insertvalue { ptr, i32 } %96, i32 %95, 1 + resume { ptr, i32 } %97 + +98: ; preds = %62 + %99 = landingpad { ptr, i32 } + catch ptr null + %100 = extractvalue { ptr, i32 } %99, 0 + call void @__clang_call_terminate(ptr %100) #13 + unreachable + +101: ; preds = %49 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 1 + store i64 0, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 2 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #12 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #12 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 1 + store ptr null, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 2 + store ptr null, ptr %6, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 3 + store ptr null, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #3 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #2 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca %"class.std::allocator.0", align 1 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %7, align 8 + store i64 %1, ptr %8, align 8 + %12 = load ptr, ptr %7, align 8 + call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.0") align 1 %9, ptr noundef nonnull align 8 dereferenceable(80) %12) #12 + %13 = load i64, ptr %8, align 8 + store ptr %9, ptr %3, align 8 + store i64 %13, ptr %4, align 8 + %14 = load ptr, ptr %3, align 8 + %15 = load i64, ptr %4, align 8 + %16 = invoke noundef ptr @_ZNSt15__new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %14, i64 noundef %15, ptr noundef null) + to label %17 unwind label %20 + +17: ; preds = %2 + br label %18 + +18: ; preds = %17 + store ptr %9, ptr %6, align 8 + %19 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #12 + ret ptr %16 + +20: ; preds = %2 + %21 = landingpad { ptr, i32 } + cleanup + %22 = extractvalue { ptr, i32 } %21, 0 + store ptr %22, ptr %10, align 8 + %23 = extractvalue { ptr, i32 } %21, 1 + store i32 %23, ptr %11, align 4 + store ptr %9, ptr %5, align 8 + %24 = load ptr, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %24) #12 + br label %25 + +25: ; preds = %20 + %26 = load ptr, ptr %10, align 8 + %27 = load i32, ptr %11, align 4 + %28 = insertvalue { ptr, i32 } poison, ptr %26, 0 + %29 = insertvalue { ptr, i32 } %28, i32 %27, 1 + resume { ptr, i32 } %29 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = load ptr, ptr %5, align 8 + store ptr %11, ptr %7, align 8 + br label %12 + +12: ; preds = %20, %3 + %13 = load ptr, ptr %7, align 8 + %14 = load ptr, ptr %6, align 8 + %15 = icmp ult ptr %13, %14 + br i1 %15, label %16, label %32 + +16: ; preds = %12 + %17 = invoke noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %10) + to label %18 unwind label %23 + +18: ; preds = %16 + %19 = load ptr, ptr %7, align 8 + store ptr %17, ptr %19, align 8 + br label %20 + +20: ; preds = %18 + %21 = load ptr, ptr %7, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i32 1 + store ptr %22, ptr %7, align 8 + br label %12, !llvm.loop !18 + +23: ; preds = %16 + %24 = landingpad { ptr, i32 } + catch ptr null + %25 = extractvalue { ptr, i32 } %24, 0 + store ptr %25, ptr %8, align 8 + %26 = extractvalue { ptr, i32 } %24, 1 + store i32 %26, ptr %9, align 4 + br label %27 + +27: ; preds = %23 + %28 = load ptr, ptr %8, align 8 + %29 = call ptr @__cxa_begin_catch(ptr %28) #12 + %30 = load ptr, ptr %5, align 8 + %31 = load ptr, ptr %7, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %10, ptr noundef %30, ptr noundef %31) #12 + invoke void @__cxa_rethrow() #15 + to label %47 unwind label %33 + +32: ; preds = %12 + br label %38 + +33: ; preds = %27 + %34 = landingpad { ptr, i32 } + cleanup + %35 = extractvalue { ptr, i32 } %34, 0 + store ptr %35, ptr %8, align 8 + %36 = extractvalue { ptr, i32 } %34, 1 + store i32 %36, ptr %9, align 4 + invoke void @__cxa_end_catch() + to label %37 unwind label %44 + +37: ; preds = %33 + br label %39 + +38: ; preds = %32 + ret void + +39: ; preds = %37 + %40 = load ptr, ptr %8, align 8 + %41 = load i32, ptr %9, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 + +44: ; preds = %33 + %45 = landingpad { ptr, i32 } + catch ptr null + %46 = extractvalue { ptr, i32 } %45, 0 + call void @__clang_call_terminate(ptr %46) #13 + unreachable + +47: ; preds = %27 + unreachable +} + +declare void @__cxa_rethrow() + +declare void @__cxa_end_catch() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1) #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + store ptr %6, ptr %7, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + store ptr %9, ptr %10, align 8 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %12 = load ptr, ptr %11, align 8 + %13 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #12 + %14 = getelementptr inbounds i32, ptr %12, i64 %13 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + store ptr %14, ptr %15, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 1152921504606846975 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #15 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #15 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 8 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #16 + ret ptr %20 +} + +; Function Attrs: noreturn +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #10 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #11 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + store ptr %6, ptr %2, align 8 + store i64 %7, ptr %3, align 8 + %8 = load ptr, ptr %2, align 8 + %9 = load i64, ptr %3, align 8 + %10 = call noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %8, i64 noundef %9, ptr noundef null) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 2305843009213693951 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 4611686018427387903 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #15 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #15 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 4 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #16 + ret ptr %20 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 comdat align 2 { + %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + ret i64 %1 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %16, i32 0, i32 3 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %17, i32 0, i32 2 + %19 = load ptr, ptr %18, align 8 + %20 = getelementptr inbounds i32, ptr %19, i64 -1 + %21 = icmp ne ptr %15, %20 + br i1 %21, label %22, label %41 + +22: ; preds = %2 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %34, align 4 + store i32 %35, ptr %33, align 4 + %36 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %36, i32 0, i32 3 + %38 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = getelementptr inbounds i32, ptr %39, i32 1 + store ptr %40, ptr %38, align 8 + br label %43 + +41: ; preds = %2 + %42 = load ptr, ptr %10, align 8 + call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %11, ptr noundef nonnull align 4 dereferenceable(4) %42) + br label %43 + +43: ; preds = %41, %22 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #12 + %13 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #12 + %14 = icmp eq i64 %12, %13 + br i1 %14, label %15, label %16 + +15: ; preds = %2 + call void @_ZSt20__throw_length_errorPKc(ptr noundef @.str.1) #15 + unreachable + +16: ; preds = %2 + call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) + %17 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 3 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i64 1 + store ptr %17, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %34, align 4 + store i32 %35, ptr %33, align 4 + %36 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %36, i32 0, i32 3 + %38 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %38, i32 0, i32 3 + %40 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %39, i32 0, i32 3 + %41 = load ptr, ptr %40, align 8 + %42 = getelementptr inbounds ptr, ptr %41, i64 1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %37, ptr noundef %42) #12 + %43 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %44 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %43, i32 0, i32 3 + %45 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %44, i32 0, i32 1 + %46 = load ptr, ptr %45, align 8 + %47 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %48 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %47, i32 0, i32 3 + %49 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %48, i32 0, i32 0 + store ptr %46, ptr %49, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 3 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + %8 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %7) #12 + ret i64 %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #12 + %5 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #12 + ret i64 %5 +} + +; Function Attrs: noreturn +declare void @_ZSt20__throw_length_errorPKc(ptr noundef) #10 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = add i64 %6, 1 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %11, i32 0, i32 3 + %13 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %12, i32 0, i32 3 + %14 = load ptr, ptr %13, align 8 + %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 0 + %17 = load ptr, ptr %16, align 8 + %18 = ptrtoint ptr %14 to i64 + %19 = ptrtoint ptr %17 to i64 + %20 = sub i64 %18, %19 + %21 = sdiv exact i64 %20, 8 + %22 = sub i64 %10, %21 + %23 = icmp ugt i64 %7, %22 + br i1 %23, label %24, label %26 + +24: ; preds = %2 + %25 = load i64, ptr %4, align 8 + call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %25, i1 noundef zeroext false) + br label %26 + +26: ; preds = %24, %2 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) #3 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #12 + %6 = load ptr, ptr %3, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %6, i32 0, i32 3 + %8 = load ptr, ptr %7, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 3 + %11 = load ptr, ptr %10, align 8 + %12 = ptrtoint ptr %8 to i64 + %13 = ptrtoint ptr %11 to i64 + %14 = sub i64 %12, %13 + %15 = sdiv exact i64 %14, 8 + %16 = load ptr, ptr %3, align 8 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 3 + %18 = load ptr, ptr %17, align 8 + %19 = icmp ne ptr %18, null + %20 = zext i1 %19 to i64 + %21 = sub nsw i64 %15, %20 + %22 = mul nsw i64 %5, %21 + %23 = load ptr, ptr %3, align 8 + %24 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %23, i32 0, i32 0 + %25 = load ptr, ptr %24, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 1 + %28 = load ptr, ptr %27, align 8 + %29 = ptrtoint ptr %25 to i64 + %30 = ptrtoint ptr %28 to i64 + %31 = sub i64 %29, %30 + %32 = sdiv exact i64 %31, 4 + %33 = add nsw i64 %22, %32 + %34 = load ptr, ptr %4, align 8 + %35 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %34, i32 0, i32 2 + %36 = load ptr, ptr %35, align 8 + %37 = load ptr, ptr %4, align 8 + %38 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = ptrtoint ptr %36 to i64 + %41 = ptrtoint ptr %39 to i64 + %42 = sub i64 %40, %41 + %43 = sdiv exact i64 %42, 4 + %44 = add nsw i64 %33, %43 + ret i64 %44 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %0) #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %5, align 8 + store i64 9223372036854775807, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + store ptr %8, ptr %4, align 8 + %9 = load ptr, ptr %4, align 8 + store ptr %9, ptr %3, align 8 + %10 = load ptr, ptr %3, align 8 + store ptr %10, ptr %2, align 8 + %11 = load ptr, ptr %2, align 8 + store i64 2305843009213693951, ptr %7, align 8 + %12 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + to label %13 unwind label %15 + +13: ; preds = %1 + %14 = load i64, ptr %12, align 8 + ret i64 %14 + +15: ; preds = %1 + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #13 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #3 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca i8, align 1 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + %12 = zext i1 %2 to i8 + store i8 %12, ptr %6, align 1 + %13 = load ptr, ptr %4, align 8 + %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %14, i32 0, i32 3 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 3 + %17 = load ptr, ptr %16, align 8 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 2 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = ptrtoint ptr %17 to i64 + %23 = ptrtoint ptr %21 to i64 + %24 = sub i64 %22, %23 + %25 = sdiv exact i64 %24, 8 + %26 = add nsw i64 %25, 1 + store i64 %26, ptr %7, align 8 + %27 = load i64, ptr %7, align 8 + %28 = load i64, ptr %5, align 8 + %29 = add i64 %27, %28 + store i64 %29, ptr %8, align 8 + %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 1 + %32 = load i64, ptr %31, align 8 + %33 = load i64, ptr %8, align 8 + %34 = mul i64 2, %33 + %35 = icmp ugt i64 %32, %34 + br i1 %35, label %36, label %88 + +36: ; preds = %3 + %37 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %41 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %40, i32 0, i32 1 + %42 = load i64, ptr %41, align 8 + %43 = load i64, ptr %8, align 8 + %44 = sub i64 %42, %43 + %45 = udiv i64 %44, 2 + %46 = getelementptr inbounds ptr, ptr %39, i64 %45 + %47 = load i8, ptr %6, align 1 + %48 = trunc i8 %47 to i1 + br i1 %48, label %49, label %51 + +49: ; preds = %36 + %50 = load i64, ptr %5, align 8 + br label %52 + +51: ; preds = %36 + br label %52 + +52: ; preds = %51, %49 + %53 = phi i64 [ %50, %49 ], [ 0, %51 ] + %54 = getelementptr inbounds ptr, ptr %46, i64 %53 + store ptr %54, ptr %9, align 8 + %55 = load ptr, ptr %9, align 8 + %56 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %57 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %56, i32 0, i32 2 + %58 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %57, i32 0, i32 3 + %59 = load ptr, ptr %58, align 8 + %60 = icmp ult ptr %55, %59 + br i1 %60, label %61, label %73 + +61: ; preds = %52 + %62 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %62, i32 0, i32 2 + %64 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %63, i32 0, i32 3 + %65 = load ptr, ptr %64, align 8 + %66 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %66, i32 0, i32 3 + %68 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %67, i32 0, i32 3 + %69 = load ptr, ptr %68, align 8 + %70 = getelementptr inbounds ptr, ptr %69, i64 1 + %71 = load ptr, ptr %9, align 8 + %72 = call noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %65, ptr noundef %70, ptr noundef %71) + br label %87 + +73: ; preds = %52 + %74 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %75 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %74, i32 0, i32 2 + %76 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %75, i32 0, i32 3 + %77 = load ptr, ptr %76, align 8 + %78 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %78, i32 0, i32 3 + %80 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %79, i32 0, i32 3 + %81 = load ptr, ptr %80, align 8 + %82 = getelementptr inbounds ptr, ptr %81, i64 1 + %83 = load ptr, ptr %9, align 8 + %84 = load i64, ptr %7, align 8 + %85 = getelementptr inbounds ptr, ptr %83, i64 %84 + %86 = call noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(ptr noundef %77, ptr noundef %82, ptr noundef %85) + br label %87 + +87: ; preds = %73, %61 + br label %137 + +88: ; preds = %3 + %89 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %90 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %89, i32 0, i32 1 + %91 = load i64, ptr %90, align 8 + %92 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %92, i32 0, i32 1 + %94 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %93, ptr noundef nonnull align 8 dereferenceable(8) %5) + %95 = load i64, ptr %94, align 8 + %96 = add i64 %91, %95 + %97 = add i64 %96, 2 + store i64 %97, ptr %10, align 8 + %98 = load i64, ptr %10, align 8 + %99 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %13, i64 noundef %98) + store ptr %99, ptr %11, align 8 + %100 = load ptr, ptr %11, align 8 + %101 = load i64, ptr %10, align 8 + %102 = load i64, ptr %8, align 8 + %103 = sub i64 %101, %102 + %104 = udiv i64 %103, 2 + %105 = getelementptr inbounds ptr, ptr %100, i64 %104 + %106 = load i8, ptr %6, align 1 + %107 = trunc i8 %106 to i1 + br i1 %107, label %108, label %110 + +108: ; preds = %88 + %109 = load i64, ptr %5, align 8 + br label %111 + +110: ; preds = %88 + br label %111 + +111: ; preds = %110, %108 + %112 = phi i64 [ %109, %108 ], [ 0, %110 ] + %113 = getelementptr inbounds ptr, ptr %105, i64 %112 + store ptr %113, ptr %9, align 8 + %114 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %115 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %114, i32 0, i32 2 + %116 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %115, i32 0, i32 3 + %117 = load ptr, ptr %116, align 8 + %118 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %119 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %118, i32 0, i32 3 + %120 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %119, i32 0, i32 3 + %121 = load ptr, ptr %120, align 8 + %122 = getelementptr inbounds ptr, ptr %121, i64 1 + %123 = load ptr, ptr %9, align 8 + %124 = call noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %117, ptr noundef %122, ptr noundef %123) + %125 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %126 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %125, i32 0, i32 0 + %127 = load ptr, ptr %126, align 8 + %128 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %129 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %128, i32 0, i32 1 + %130 = load i64, ptr %129, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %13, ptr noundef %127, i64 noundef %130) #12 + %131 = load ptr, ptr %11, align 8 + %132 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %133 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %132, i32 0, i32 0 + store ptr %131, ptr %133, align 8 + %134 = load i64, ptr %10, align 8 + %135 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %136 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %135, i32 0, i32 1 + store i64 %134, ptr %136, align 8 + br label %137 + +137: ; preds = %111, %87 + %138 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %139 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %138, i32 0, i32 2 + %140 = load ptr, ptr %9, align 8 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %139, ptr noundef %140) #12 + %141 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %141, i32 0, i32 3 + %143 = load ptr, ptr %9, align 8 + %144 = load i64, ptr %7, align 8 + %145 = getelementptr inbounds ptr, ptr %143, i64 %144 + %146 = getelementptr inbounds ptr, ptr %145, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %142, ptr noundef %146) #12 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %7) #12 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %9) #12 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %11) #12 + %13 = call noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %0) #3 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) #3 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %0) #3 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %21 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load i64, ptr %7, align 8 + %20 = mul i64 8, %19 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %17, ptr align 8 %18, i64 %20, i1 false) + br label %28 + +21: ; preds = %3 + %22 = load i64, ptr %7, align 8 + %23 = icmp eq i64 %22, 1 + br i1 %23, label %24, label %27 + +24: ; preds = %21 + %25 = load ptr, ptr %6, align 8 + %26 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %25, ptr noundef %26) + br label %27 + +27: ; preds = %24, %21 + br label %28 + +28: ; preds = %27, %16 + %29 = load ptr, ptr %6, align 8 + %30 = load i64, ptr %7, align 8 + %31 = getelementptr inbounds ptr, ptr %29, i64 %30 + ret ptr %31 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memmove.p0.p0.i64(ptr nocapture writeonly, ptr nocapture readonly, i64, i1 immarg) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %0, ptr noundef %1) #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load ptr, ptr %3, align 8 + store ptr %6, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %7) #12 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %9) #12 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %11) #12 + %13 = call noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %24 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load i64, ptr %7, align 8 + %19 = sub i64 0, %18 + %20 = getelementptr inbounds ptr, ptr %17, i64 %19 + %21 = load ptr, ptr %4, align 8 + %22 = load i64, ptr %7, align 8 + %23 = mul i64 8, %22 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %20, ptr align 8 %21, i64 %23, i1 false) + br label %32 + +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 + +27: ; preds = %24 + %28 = load ptr, ptr %6, align 8 + %29 = getelementptr inbounds ptr, ptr %28, i64 -1 + %30 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %29, ptr noundef %30) + br label %31 + +31: ; preds = %27, %24 + br label %32 + +32: ; preds = %31, %16 + %33 = load ptr, ptr %6, align 8 + %34 = load i64, ptr %7, align 8 + %35 = sub i64 0, %34 + %36 = getelementptr inbounds ptr, ptr %33, i64 %35 + ret ptr %36 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 3 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + %8 = call noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %7) #12 + ret i1 %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) #3 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp eq ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5dequeIiSaIiEE5frontEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_Deque_iterator", align 8 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + call void @_ZNSt5dequeIiSaIiEE5beginEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %3, ptr noundef nonnull align 8 dereferenceable(80) %4) #12 + %5 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #12 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 2 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 2 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 2 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds i32, ptr %15, i64 -1 + %17 = icmp ne ptr %11, %16 + br i1 %17, label %18, label %33 + +18: ; preds = %1 + %19 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #12 + %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %20, i32 0, i32 2 + %22 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %21, i32 0, i32 0 + %23 = load ptr, ptr %22, align 8 + store ptr %19, ptr %4, align 8 + store ptr %23, ptr %5, align 8 + %24 = load ptr, ptr %4, align 8 + %25 = load ptr, ptr %5, align 8 + store ptr %24, ptr %2, align 8 + store ptr %25, ptr %3, align 8 + %26 = load ptr, ptr %2, align 8 + %27 = load ptr, ptr %3, align 8 + %28 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %28, i32 0, i32 2 + %30 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + %32 = getelementptr inbounds i32, ptr %31, i32 1 + store ptr %32, ptr %30, align 8 + br label %35 + +33: ; preds = %1 + invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %34 unwind label %36 + +34: ; preds = %33 + br label %35 + +35: ; preds = %34, %18 + ret void + +36: ; preds = %33 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #13 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #12 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %9, i32 0, i32 2 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %10, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + store ptr %8, ptr %4, align 8 + store ptr %12, ptr %5, align 8 + %13 = load ptr, ptr %4, align 8 + %14 = load ptr, ptr %5, align 8 + store ptr %13, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %18 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %17, i32 0, i32 2 + %19 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %18, i32 0, i32 1 + %20 = load ptr, ptr %19, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %7, ptr noundef %20) #12 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 2 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 2 + %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 3 + %26 = load ptr, ptr %25, align 8 + %27 = getelementptr inbounds ptr, ptr %26, i64 1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %22, ptr noundef %27) #12 + %28 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %28, i32 0, i32 2 + %30 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %29, i32 0, i32 1 + %31 = load ptr, ptr %30, align 8 + %32 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %32, i32 0, i32 2 + %34 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %33, i32 0, i32 0 + store ptr %31, ptr %34, align 8 + ret void +} + +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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +attributes #2 = { 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 #3 = { 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 #4 = { 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 = { "frame-pointer"="all" "no-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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #8 = { noinline noreturn 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 = { 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 = { 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 #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 = { nounwind } +attributes #13 = { noreturn nounwind } +attributes #14 = { builtin nounwind } +attributes #15 = { noreturn } +attributes #16 = { builtin allocsize(0) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll new file mode 100644 index 000000000..611fc1a28 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll @@ -0,0 +1,226 @@ +; ModuleID = 'PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp' +source_filename = "PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__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 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 + +; 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, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %5 = load i32, ptr %3, align 4 + %6 = load i32, ptr %4, align 4 + %7 = icmp slt i32 %5, %6 + br i1 %7, label %8, label %10 + +8: ; preds = %2 + %9 = load i32, ptr %3, align 4 + br label %12 + +10: ; preds = %2 + %11 = load i32, ptr %4, align 4 + br label %12 + +12: ; preds = %10, %8 + %13 = phi i32 [ %9, %8 ], [ %11, %10 ] + ret i32 %13 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z8minJumpsPii(ptr noundef %0, i32 noundef %1) #1 { + %3 = alloca i32, align 4 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + %9 = load i32, ptr %5, align 4 + %10 = sext i32 %9 to i64 + %11 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %10, i64 4) + %12 = extractvalue { i64, i1 } %11, 1 + %13 = extractvalue { i64, i1 } %11, 0 + %14 = select i1 %12, i64 -1, i64 %13 + %15 = call noalias noundef nonnull ptr @_Znam(i64 noundef %14) #7 + store ptr %15, ptr %6, align 8 + %16 = load i32, ptr %5, align 4 + %17 = icmp eq i32 %16, 0 + br i1 %17, label %23, label %18 + +18: ; preds = %2 + %19 = load ptr, ptr %4, align 8 + %20 = getelementptr inbounds i32, ptr %19, i64 0 + %21 = load i32, ptr %20, align 4 + %22 = icmp eq i32 %21, 0 + br i1 %22, label %23, label %24 + +23: ; preds = %18, %2 + store i32 2147483647, ptr %3, align 4 + br label %89 + +24: ; preds = %18 + %25 = load ptr, ptr %6, align 8 + %26 = getelementptr inbounds i32, ptr %25, i64 0 + store i32 0, ptr %26, align 4 + store i32 1, ptr %7, align 4 + br label %27 + +27: ; preds = %79, %24 + %28 = load i32, ptr %7, align 4 + %29 = load i32, ptr %5, align 4 + %30 = icmp slt i32 %28, %29 + br i1 %30, label %31, label %82 + +31: ; preds = %27 + %32 = load ptr, ptr %6, align 8 + %33 = load i32, ptr %7, align 4 + %34 = sext i32 %33 to i64 + %35 = getelementptr inbounds i32, ptr %32, i64 %34 + store i32 2147483647, ptr %35, align 4 + store i32 0, ptr %8, align 4 + br label %36 + +36: ; preds = %75, %31 + %37 = load i32, ptr %8, align 4 + %38 = load i32, ptr %7, align 4 + %39 = icmp slt i32 %37, %38 + br i1 %39, label %40, label %78 + +40: ; preds = %36 + %41 = load i32, ptr %7, align 4 + %42 = load i32, ptr %8, align 4 + %43 = load ptr, ptr %4, align 8 + %44 = load i32, ptr %8, align 4 + %45 = sext i32 %44 to i64 + %46 = getelementptr inbounds i32, ptr %43, i64 %45 + %47 = load i32, ptr %46, align 4 + %48 = add nsw i32 %42, %47 + %49 = icmp sle i32 %41, %48 + br i1 %49, label %50, label %74 + +50: ; preds = %40 + %51 = load ptr, ptr %6, align 8 + %52 = load i32, ptr %8, align 4 + %53 = sext i32 %52 to i64 + %54 = getelementptr inbounds i32, ptr %51, i64 %53 + %55 = load i32, ptr %54, align 4 + %56 = icmp ne i32 %55, 2147483647 + br i1 %56, label %57, label %74 + +57: ; preds = %50 + %58 = load ptr, ptr %6, align 8 + %59 = load i32, ptr %7, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds i32, ptr %58, i64 %60 + %62 = load i32, ptr %61, align 4 + %63 = load ptr, ptr %6, align 8 + %64 = load i32, ptr %8, align 4 + %65 = sext i32 %64 to i64 + %66 = getelementptr inbounds i32, ptr %63, i64 %65 + %67 = load i32, ptr %66, align 4 + %68 = add nsw i32 %67, 1 + %69 = call noundef i32 @_Z3minii(i32 noundef %62, i32 noundef %68) + %70 = load ptr, ptr %6, align 8 + %71 = load i32, ptr %7, align 4 + %72 = sext i32 %71 to i64 + %73 = getelementptr inbounds i32, ptr %70, i64 %72 + store i32 %69, ptr %73, align 4 + br label %78 + +74: ; preds = %50, %40 + br label %75 + +75: ; preds = %74 + %76 = load i32, ptr %8, align 4 + %77 = add nsw i32 %76, 1 + store i32 %77, ptr %8, align 4 + br label %36, !llvm.loop !6 + +78: ; preds = %57, %36 + br label %79 + +79: ; preds = %78 + %80 = load i32, ptr %7, align 4 + %81 = add nsw i32 %80, 1 + store i32 %81, ptr %7, align 4 + br label %27, !llvm.loop !8 + +82: ; preds = %27 + %83 = load ptr, ptr %6, align 8 + %84 = load i32, ptr %5, align 4 + %85 = sub nsw i32 %84, 1 + %86 = sext i32 %85 to i64 + %87 = getelementptr inbounds i32, ptr %83, i64 %86 + %88 = load i32, ptr %87, align 4 + store i32 %88, ptr %3, align 4 + br label %89 + +89: ; preds = %82, %23 + %90 = load i32, ptr %3, align 4 + ret i32 %90 +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #2 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #3 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { + %1 = alloca i32, align 4 + %2 = alloca [6 x i32], align 16 + %3 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 24, i1 false) + store i32 6, ptr %3, align 4 + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %5 = getelementptr inbounds [6 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + %7 = call noundef i32 @_Z8minJumpsPii(ptr noundef %5, i32 noundef %6) + %8 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %7) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #6 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #6 + +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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #6 = { "frame-pointer"="all" "no-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 = { builtin allocsize(0) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/minimum-positive-points-to-reach-destination.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/minimum-positive-points-to-reach-destination.ll new file mode 100644 index 000000000..fb93c76aa --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/minimum-positive-points-to-reach-destination.ll @@ -0,0 +1,372 @@ +; ModuleID = 'PE-benchmarks/minimum-positive-points-to-reach-destination.cpp' +source_filename = "PE-benchmarks/minimum-positive-points-to-reach-destination.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +$_ZSt3maxIiERKT_S2_S2_ = comdat any + +$_ZSt3minIiERKT_S2_S2_ = comdat any + +@__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 global %"class.std::basic_ostream", align 8 +@.str = private unnamed_addr constant [34 x i8] c"Minimum Initial Points Required: \00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z16minInitialPointsPA3_i(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca [3 x [3 x i32]], align 16 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + %15 = alloca i32, align 4 + %16 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + store i32 3, ptr %4, align 4 + store i32 3, ptr %5, align 4 + %17 = load ptr, ptr %2, align 8 + %18 = load i32, ptr %4, align 4 + %19 = sub nsw i32 %18, 1 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds [3 x i32], ptr %17, i64 %20 + %22 = load i32, ptr %5, align 4 + %23 = sub nsw i32 %22, 1 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds [3 x i32], ptr %21, i64 0, i64 %24 + %26 = load i32, ptr %25, align 4 + %27 = icmp sgt i32 %26, 0 + br i1 %27, label %28, label %29 + +28: ; preds = %1 + br label %42 + +29: ; preds = %1 + %30 = load ptr, ptr %2, align 8 + %31 = load i32, ptr %4, align 4 + %32 = sub nsw i32 %31, 1 + %33 = sext i32 %32 to i64 + %34 = getelementptr inbounds [3 x i32], ptr %30, i64 %33 + %35 = load i32, ptr %5, align 4 + %36 = sub nsw i32 %35, 1 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds [3 x i32], ptr %34, i64 0, i64 %37 + %39 = load i32, ptr %38, align 4 + %40 = call i32 @abs(i32 noundef %39) #6 + %41 = add nsw i32 %40, 1 + br label %42 + +42: ; preds = %29, %28 + %43 = phi i32 [ 1, %28 ], [ %41, %29 ] + %44 = load i32, ptr %4, align 4 + %45 = sub nsw i32 %44, 1 + %46 = sext i32 %45 to i64 + %47 = getelementptr inbounds [3 x [3 x i32]], ptr %3, i64 0, i64 %46 + %48 = load i32, ptr %5, align 4 + %49 = sub nsw i32 %48, 1 + %50 = sext i32 %49 to i64 + %51 = getelementptr inbounds [3 x i32], ptr %47, i64 0, i64 %50 + store i32 %43, ptr %51, align 4 + %52 = load i32, ptr %4, align 4 + %53 = sub nsw i32 %52, 2 + store i32 %53, ptr %6, align 4 + br label %54 + +54: ; preds = %86, %42 + %55 = load i32, ptr %6, align 4 + %56 = icmp sge i32 %55, 0 + br i1 %56, label %57, label %89 + +57: ; preds = %54 + %58 = load i32, ptr %6, align 4 + %59 = add nsw i32 %58, 1 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds [3 x [3 x i32]], ptr %3, i64 0, i64 %60 + %62 = load i32, ptr %5, align 4 + %63 = sub nsw i32 %62, 1 + %64 = sext i32 %63 to i64 + %65 = getelementptr inbounds [3 x i32], ptr %61, i64 0, i64 %64 + %66 = load i32, ptr %65, align 4 + %67 = load ptr, ptr %2, align 8 + %68 = load i32, ptr %6, align 4 + %69 = sext i32 %68 to i64 + %70 = getelementptr inbounds [3 x i32], ptr %67, i64 %69 + %71 = load i32, ptr %5, align 4 + %72 = sub nsw i32 %71, 1 + %73 = sext i32 %72 to i64 + %74 = getelementptr inbounds [3 x i32], ptr %70, i64 0, i64 %73 + %75 = load i32, ptr %74, align 4 + %76 = sub nsw i32 %66, %75 + store i32 %76, ptr %7, align 4 + store i32 1, ptr %8, align 4 + %77 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %7, ptr noundef nonnull align 4 dereferenceable(4) %8) + %78 = load i32, ptr %77, align 4 + %79 = load i32, ptr %6, align 4 + %80 = sext i32 %79 to i64 + %81 = getelementptr inbounds [3 x [3 x i32]], ptr %3, i64 0, i64 %80 + %82 = load i32, ptr %5, align 4 + %83 = sub nsw i32 %82, 1 + %84 = sext i32 %83 to i64 + %85 = getelementptr inbounds [3 x i32], ptr %81, i64 0, i64 %84 + store i32 %78, ptr %85, align 4 + br label %86 + +86: ; preds = %57 + %87 = load i32, ptr %6, align 4 + %88 = add nsw i32 %87, -1 + store i32 %88, ptr %6, align 4 + br label %54, !llvm.loop !6 + +89: ; preds = %54 + %90 = load i32, ptr %5, align 4 + %91 = sub nsw i32 %90, 2 + store i32 %91, ptr %9, align 4 + br label %92 + +92: ; preds = %124, %89 + %93 = load i32, ptr %9, align 4 + %94 = icmp sge i32 %93, 0 + br i1 %94, label %95, label %127 + +95: ; preds = %92 + %96 = load i32, ptr %4, align 4 + %97 = sub nsw i32 %96, 1 + %98 = sext i32 %97 to i64 + %99 = getelementptr inbounds [3 x [3 x i32]], ptr %3, i64 0, i64 %98 + %100 = load i32, ptr %9, align 4 + %101 = add nsw i32 %100, 1 + %102 = sext i32 %101 to i64 + %103 = getelementptr inbounds [3 x i32], ptr %99, i64 0, i64 %102 + %104 = load i32, ptr %103, align 4 + %105 = load ptr, ptr %2, align 8 + %106 = load i32, ptr %4, align 4 + %107 = sub nsw i32 %106, 1 + %108 = sext i32 %107 to i64 + %109 = getelementptr inbounds [3 x i32], ptr %105, i64 %108 + %110 = load i32, ptr %9, align 4 + %111 = sext i32 %110 to i64 + %112 = getelementptr inbounds [3 x i32], ptr %109, i64 0, i64 %111 + %113 = load i32, ptr %112, align 4 + %114 = sub nsw i32 %104, %113 + store i32 %114, ptr %10, align 4 + store i32 1, ptr %11, align 4 + %115 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %10, ptr noundef nonnull align 4 dereferenceable(4) %11) + %116 = load i32, ptr %115, align 4 + %117 = load i32, ptr %4, align 4 + %118 = sub nsw i32 %117, 1 + %119 = sext i32 %118 to i64 + %120 = getelementptr inbounds [3 x [3 x i32]], ptr %3, i64 0, i64 %119 + %121 = load i32, ptr %9, align 4 + %122 = sext i32 %121 to i64 + %123 = getelementptr inbounds [3 x i32], ptr %120, i64 0, i64 %122 + store i32 %116, ptr %123, align 4 + br label %124 + +124: ; preds = %95 + %125 = load i32, ptr %9, align 4 + %126 = add nsw i32 %125, -1 + store i32 %126, ptr %9, align 4 + br label %92, !llvm.loop !8 + +127: ; preds = %92 + %128 = load i32, ptr %4, align 4 + %129 = sub nsw i32 %128, 2 + store i32 %129, ptr %12, align 4 + br label %130 + +130: ; preds = %178, %127 + %131 = load i32, ptr %12, align 4 + %132 = icmp sge i32 %131, 0 + br i1 %132, label %133, label %181 + +133: ; preds = %130 + %134 = load i32, ptr %5, align 4 + %135 = sub nsw i32 %134, 2 + store i32 %135, ptr %13, align 4 + br label %136 + +136: ; preds = %174, %133 + %137 = load i32, ptr %13, align 4 + %138 = icmp sge i32 %137, 0 + br i1 %138, label %139, label %177 + +139: ; preds = %136 + %140 = load i32, ptr %12, align 4 + %141 = add nsw i32 %140, 1 + %142 = sext i32 %141 to i64 + %143 = getelementptr inbounds [3 x [3 x i32]], ptr %3, i64 0, i64 %142 + %144 = load i32, ptr %13, align 4 + %145 = sext i32 %144 to i64 + %146 = getelementptr inbounds [3 x i32], ptr %143, i64 0, i64 %145 + %147 = load i32, ptr %12, align 4 + %148 = sext i32 %147 to i64 + %149 = getelementptr inbounds [3 x [3 x i32]], ptr %3, i64 0, i64 %148 + %150 = load i32, ptr %13, align 4 + %151 = add nsw i32 %150, 1 + %152 = sext i32 %151 to i64 + %153 = getelementptr inbounds [3 x i32], ptr %149, i64 0, i64 %152 + %154 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %146, ptr noundef nonnull align 4 dereferenceable(4) %153) + %155 = load i32, ptr %154, align 4 + store i32 %155, ptr %14, align 4 + %156 = load i32, ptr %14, align 4 + %157 = load ptr, ptr %2, align 8 + %158 = load i32, ptr %12, align 4 + %159 = sext i32 %158 to i64 + %160 = getelementptr inbounds [3 x i32], ptr %157, i64 %159 + %161 = load i32, ptr %13, align 4 + %162 = sext i32 %161 to i64 + %163 = getelementptr inbounds [3 x i32], ptr %160, i64 0, i64 %162 + %164 = load i32, ptr %163, align 4 + %165 = sub nsw i32 %156, %164 + store i32 %165, ptr %15, align 4 + store i32 1, ptr %16, align 4 + %166 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %15, ptr noundef nonnull align 4 dereferenceable(4) %16) + %167 = load i32, ptr %166, align 4 + %168 = load i32, ptr %12, align 4 + %169 = sext i32 %168 to i64 + %170 = getelementptr inbounds [3 x [3 x i32]], ptr %3, i64 0, i64 %169 + %171 = load i32, ptr %13, align 4 + %172 = sext i32 %171 to i64 + %173 = getelementptr inbounds [3 x i32], ptr %170, i64 0, i64 %172 + store i32 %167, ptr %173, align 4 + br label %174 + +174: ; preds = %139 + %175 = load i32, ptr %13, align 4 + %176 = add nsw i32 %175, -1 + store i32 %176, ptr %13, align 4 + br label %136, !llvm.loop !9 + +177: ; preds = %136 + br label %178 + +178: ; preds = %177 + %179 = load i32, ptr %12, align 4 + %180 = add nsw i32 %179, -1 + store i32 %180, ptr %12, align 4 + br label %130, !llvm.loop !10 + +181: ; preds = %130 + %182 = getelementptr inbounds [3 x [3 x i32]], ptr %3, i64 0, i64 0 + %183 = getelementptr inbounds [3 x i32], ptr %182, i64 0, i64 0 + %184 = load i32, ptr %183, align 16 + ret i32 %184 +} + +; Function Attrs: nounwind willreturn memory(none) +declare i32 @abs(i32 noundef) #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [3 x [3 x i32]], align 16 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.points, i64 36, i1 false) + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %4 = getelementptr inbounds [3 x [3 x i32]], ptr %2, i64 0, i64 0 + %5 = call noundef i32 @_Z16minInitialPointsPA3_i(ptr noundef %4) + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %3, i32 noundef %5) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +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 = { nounwind willreturn memory(none) "frame-pointer"="all" "no-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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 willreturn memory(none) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/mobile-numeric-keypad-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/mobile-numeric-keypad-problem.ll new file mode 100644 index 000000000..142520d90 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/mobile-numeric-keypad-problem.ll @@ -0,0 +1,418 @@ +; ModuleID = 'PE-benchmarks/mobile-numeric-keypad-problem.cpp' +source_filename = "PE-benchmarks/mobile-numeric-keypad-problem.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +@__const._Z8getCountPA3_ci.row = private unnamed_addr constant [5 x i32] [i32 0, i32 0, i32 -1, i32 0, i32 1], align 16 +@__const._Z8getCountPA3_ci.col = private unnamed_addr constant [5 x i32] [i32 0, i32 -1, i32 0, i32 1, i32 0], align 16 +@__const.main.keypad = private unnamed_addr constant [4 x [3 x i8]] [[3 x i8] c"123", [3 x i8] c"456", [3 x i8] c"789", [3 x i8] c"*0#"], align 1 +@.str = private unnamed_addr constant [36 x i8] c"Count for numbers of length %d: %dn\00", align 1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z8getCountPA3_ci(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca i32, align 4 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca [5 x i32], align 16 + %7 = alloca [5 x i32], align 16 + %8 = alloca ptr, align 8 + %9 = alloca i64, align 8 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + %15 = alloca i32, align 4 + %16 = alloca i32, align 4 + %17 = alloca i32, align 4 + %18 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + %19 = load ptr, ptr %4, align 8 + %20 = icmp eq ptr %19, null + br i1 %20, label %24, label %21 + +21: ; preds = %2 + %22 = load i32, ptr %5, align 4 + %23 = icmp sle i32 %22, 0 + br i1 %23, label %24, label %25 + +24: ; preds = %21, %2 + store i32 0, ptr %3, align 4 + br label %222 + +25: ; preds = %21 + %26 = load i32, ptr %5, align 4 + %27 = icmp eq i32 %26, 1 + br i1 %27, label %28, label %29 + +28: ; preds = %25 + store i32 10, ptr %3, align 4 + br label %222 + +29: ; preds = %25 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %6, ptr align 16 @__const._Z8getCountPA3_ci.row, i64 20, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %7, ptr align 16 @__const._Z8getCountPA3_ci.col, i64 20, i1 false) + %30 = load i32, ptr %5, align 4 + %31 = add nsw i32 %30, 1 + %32 = zext i32 %31 to i64 + %33 = call ptr @llvm.stacksave() + store ptr %33, ptr %8, align 8 + %34 = mul nuw i64 10, %32 + %35 = alloca i32, i64 %34, align 16 + store i64 %32, ptr %9, align 8 + store i32 0, ptr %10, align 4 + store i32 0, ptr %11, align 4 + store i32 0, ptr %12, align 4 + store i32 0, ptr %13, align 4 + store i32 0, ptr %14, align 4 + store i32 0, ptr %15, align 4 + store i32 0, ptr %16, align 4 + store i32 0, ptr %17, align 4 + store i32 0, ptr %18, align 4 + store i32 0, ptr %10, align 4 + br label %36 + +36: ; preds = %50, %29 + %37 = load i32, ptr %10, align 4 + %38 = icmp sle i32 %37, 9 + br i1 %38, label %39, label %53 + +39: ; preds = %36 + %40 = load i32, ptr %10, align 4 + %41 = sext i32 %40 to i64 + %42 = mul nsw i64 %41, %32 + %43 = getelementptr inbounds i32, ptr %35, i64 %42 + %44 = getelementptr inbounds i32, ptr %43, i64 0 + store i32 0, ptr %44, align 4 + %45 = load i32, ptr %10, align 4 + %46 = sext i32 %45 to i64 + %47 = mul nsw i64 %46, %32 + %48 = getelementptr inbounds i32, ptr %35, i64 %47 + %49 = getelementptr inbounds i32, ptr %48, i64 1 + store i32 1, ptr %49, align 4 + br label %50 + +50: ; preds = %39 + %51 = load i32, ptr %10, align 4 + %52 = add nsw i32 %51, 1 + store i32 %52, ptr %10, align 4 + br label %36, !llvm.loop !6 + +53: ; preds = %36 + store i32 2, ptr %12, align 4 + br label %54 + +54: ; preds = %198, %53 + %55 = load i32, ptr %12, align 4 + %56 = load i32, ptr %5, align 4 + %57 = icmp sle i32 %55, %56 + br i1 %57, label %58, label %201 + +58: ; preds = %54 + store i32 0, ptr %10, align 4 + br label %59 + +59: ; preds = %194, %58 + %60 = load i32, ptr %10, align 4 + %61 = icmp slt i32 %60, 4 + br i1 %61, label %62, label %197 + +62: ; preds = %59 + store i32 0, ptr %11, align 4 + br label %63 + +63: ; preds = %190, %62 + %64 = load i32, ptr %11, align 4 + %65 = icmp slt i32 %64, 3 + br i1 %65, label %66, label %193 + +66: ; preds = %63 + %67 = load ptr, ptr %4, align 8 + %68 = load i32, ptr %10, align 4 + %69 = sext i32 %68 to i64 + %70 = getelementptr inbounds [3 x i8], ptr %67, i64 %69 + %71 = load i32, ptr %11, align 4 + %72 = sext i32 %71 to i64 + %73 = getelementptr inbounds [3 x i8], ptr %70, i64 0, i64 %72 + %74 = load i8, ptr %73, align 1 + %75 = sext i8 %74 to i32 + %76 = icmp ne i32 %75, 42 + br i1 %76, label %77, label %189 + +77: ; preds = %66 + %78 = load ptr, ptr %4, align 8 + %79 = load i32, ptr %10, align 4 + %80 = sext i32 %79 to i64 + %81 = getelementptr inbounds [3 x i8], ptr %78, i64 %80 + %82 = load i32, ptr %11, align 4 + %83 = sext i32 %82 to i64 + %84 = getelementptr inbounds [3 x i8], ptr %81, i64 0, i64 %83 + %85 = load i8, ptr %84, align 1 + %86 = sext i8 %85 to i32 + %87 = icmp ne i32 %86, 35 + br i1 %87, label %88, label %189 + +88: ; preds = %77 + %89 = load ptr, ptr %4, align 8 + %90 = load i32, ptr %10, align 4 + %91 = sext i32 %90 to i64 + %92 = getelementptr inbounds [3 x i8], ptr %89, i64 %91 + %93 = load i32, ptr %11, align 4 + %94 = sext i32 %93 to i64 + %95 = getelementptr inbounds [3 x i8], ptr %92, i64 0, i64 %94 + %96 = load i8, ptr %95, align 1 + %97 = sext i8 %96 to i32 + %98 = sub nsw i32 %97, 48 + store i32 %98, ptr %16, align 4 + %99 = load i32, ptr %16, align 4 + %100 = sext i32 %99 to i64 + %101 = mul nsw i64 %100, %32 + %102 = getelementptr inbounds i32, ptr %35, i64 %101 + %103 = load i32, ptr %12, align 4 + %104 = sext i32 %103 to i64 + %105 = getelementptr inbounds i32, ptr %102, i64 %104 + store i32 0, ptr %105, align 4 + store i32 0, ptr %13, align 4 + br label %106 + +106: ; preds = %185, %88 + %107 = load i32, ptr %13, align 4 + %108 = icmp slt i32 %107, 5 + br i1 %108, label %109, label %188 + +109: ; preds = %106 + %110 = load i32, ptr %10, align 4 + %111 = load i32, ptr %13, align 4 + %112 = sext i32 %111 to i64 + %113 = getelementptr inbounds [5 x i32], ptr %6, i64 0, i64 %112 + %114 = load i32, ptr %113, align 4 + %115 = add nsw i32 %110, %114 + store i32 %115, ptr %14, align 4 + %116 = load i32, ptr %11, align 4 + %117 = load i32, ptr %13, align 4 + %118 = sext i32 %117 to i64 + %119 = getelementptr inbounds [5 x i32], ptr %7, i64 0, i64 %118 + %120 = load i32, ptr %119, align 4 + %121 = add nsw i32 %116, %120 + store i32 %121, ptr %15, align 4 + %122 = load i32, ptr %14, align 4 + %123 = icmp sge i32 %122, 0 + br i1 %123, label %124, label %184 + +124: ; preds = %109 + %125 = load i32, ptr %14, align 4 + %126 = icmp sle i32 %125, 3 + br i1 %126, label %127, label %184 + +127: ; preds = %124 + %128 = load i32, ptr %15, align 4 + %129 = icmp sge i32 %128, 0 + br i1 %129, label %130, label %184 + +130: ; preds = %127 + %131 = load i32, ptr %15, align 4 + %132 = icmp sle i32 %131, 2 + br i1 %132, label %133, label %184 + +133: ; preds = %130 + %134 = load ptr, ptr %4, align 8 + %135 = load i32, ptr %14, align 4 + %136 = sext i32 %135 to i64 + %137 = getelementptr inbounds [3 x i8], ptr %134, i64 %136 + %138 = load i32, ptr %15, align 4 + %139 = sext i32 %138 to i64 + %140 = getelementptr inbounds [3 x i8], ptr %137, i64 0, i64 %139 + %141 = load i8, ptr %140, align 1 + %142 = sext i8 %141 to i32 + %143 = icmp ne i32 %142, 42 + br i1 %143, label %144, label %184 + +144: ; preds = %133 + %145 = load ptr, ptr %4, align 8 + %146 = load i32, ptr %14, align 4 + %147 = sext i32 %146 to i64 + %148 = getelementptr inbounds [3 x i8], ptr %145, i64 %147 + %149 = load i32, ptr %15, align 4 + %150 = sext i32 %149 to i64 + %151 = getelementptr inbounds [3 x i8], ptr %148, i64 0, i64 %150 + %152 = load i8, ptr %151, align 1 + %153 = sext i8 %152 to i32 + %154 = icmp ne i32 %153, 35 + br i1 %154, label %155, label %184 + +155: ; preds = %144 + %156 = load ptr, ptr %4, align 8 + %157 = load i32, ptr %14, align 4 + %158 = sext i32 %157 to i64 + %159 = getelementptr inbounds [3 x i8], ptr %156, i64 %158 + %160 = load i32, ptr %15, align 4 + %161 = sext i32 %160 to i64 + %162 = getelementptr inbounds [3 x i8], ptr %159, i64 0, i64 %161 + %163 = load i8, ptr %162, align 1 + %164 = sext i8 %163 to i32 + %165 = sub nsw i32 %164, 48 + store i32 %165, ptr %17, align 4 + %166 = load i32, ptr %17, align 4 + %167 = sext i32 %166 to i64 + %168 = mul nsw i64 %167, %32 + %169 = getelementptr inbounds i32, ptr %35, i64 %168 + %170 = load i32, ptr %12, align 4 + %171 = sub nsw i32 %170, 1 + %172 = sext i32 %171 to i64 + %173 = getelementptr inbounds i32, ptr %169, i64 %172 + %174 = load i32, ptr %173, align 4 + %175 = load i32, ptr %16, align 4 + %176 = sext i32 %175 to i64 + %177 = mul nsw i64 %176, %32 + %178 = getelementptr inbounds i32, ptr %35, i64 %177 + %179 = load i32, ptr %12, align 4 + %180 = sext i32 %179 to i64 + %181 = getelementptr inbounds i32, ptr %178, i64 %180 + %182 = load i32, ptr %181, align 4 + %183 = add nsw i32 %182, %174 + store i32 %183, ptr %181, align 4 + br label %184 + +184: ; preds = %155, %144, %133, %130, %127, %124, %109 + br label %185 + +185: ; preds = %184 + %186 = load i32, ptr %13, align 4 + %187 = add nsw i32 %186, 1 + store i32 %187, ptr %13, align 4 + br label %106, !llvm.loop !8 + +188: ; preds = %106 + br label %189 + +189: ; preds = %188, %77, %66 + br label %190 + +190: ; preds = %189 + %191 = load i32, ptr %11, align 4 + %192 = add nsw i32 %191, 1 + store i32 %192, ptr %11, align 4 + br label %63, !llvm.loop !9 + +193: ; preds = %63 + br label %194 + +194: ; preds = %193 + %195 = load i32, ptr %10, align 4 + %196 = add nsw i32 %195, 1 + store i32 %196, ptr %10, align 4 + br label %59, !llvm.loop !10 + +197: ; preds = %59 + br label %198 + +198: ; preds = %197 + %199 = load i32, ptr %12, align 4 + %200 = add nsw i32 %199, 1 + store i32 %200, ptr %12, align 4 + br label %54, !llvm.loop !11 + +201: ; preds = %54 + store i32 0, ptr %18, align 4 + store i32 0, ptr %10, align 4 + br label %202 + +202: ; preds = %216, %201 + %203 = load i32, ptr %10, align 4 + %204 = icmp sle i32 %203, 9 + br i1 %204, label %205, label %219 + +205: ; preds = %202 + %206 = load i32, ptr %10, align 4 + %207 = sext i32 %206 to i64 + %208 = mul nsw i64 %207, %32 + %209 = getelementptr inbounds i32, ptr %35, i64 %208 + %210 = load i32, ptr %5, align 4 + %211 = sext i32 %210 to i64 + %212 = getelementptr inbounds i32, ptr %209, i64 %211 + %213 = load i32, ptr %212, align 4 + %214 = load i32, ptr %18, align 4 + %215 = add nsw i32 %214, %213 + store i32 %215, ptr %18, align 4 + br label %216 + +216: ; preds = %205 + %217 = load i32, ptr %10, align 4 + %218 = add nsw i32 %217, 1 + store i32 %218, ptr %10, align 4 + br label %202, !llvm.loop !12 + +219: ; preds = %202 + %220 = load i32, ptr %18, align 4 + store i32 %220, ptr %3, align 4 + %221 = load ptr, ptr %8, align 8 + call void @llvm.stackrestore(ptr %221) + br label %222 + +222: ; preds = %219, %28, %24 + %223 = load i32, ptr %3, align 4 + ret i32 %223 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #1 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #2 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main(i32 noundef %0, ptr noundef %1) #3 { + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca [4 x [3 x i8]], align 1 + store i32 0, ptr %3, align 4 + store i32 %0, ptr %4, align 4 + store ptr %1, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %6, ptr align 1 @__const.main.keypad, i64 12, i1 false) + %7 = getelementptr inbounds [4 x [3 x i8]], ptr %6, i64 0, i64 0 + %8 = call noundef i32 @_Z8getCountPA3_ci(ptr noundef %7, i32 noundef 1) + %9 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef 1, i32 noundef %8) + %10 = getelementptr inbounds [4 x [3 x i8]], ptr %6, i64 0, i64 0 + %11 = call noundef i32 @_Z8getCountPA3_ci(ptr noundef %10, i32 noundef 2) + %12 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef 2, i32 noundef %11) + %13 = getelementptr inbounds [4 x [3 x i8]], ptr %6, i64 0, i64 0 + %14 = call noundef i32 @_Z8getCountPA3_ci(ptr noundef %13, i32 noundef 3) + %15 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef 3, i32 noundef %14) + %16 = getelementptr inbounds [4 x [3 x i8]], ptr %6, i64 0, i64 0 + %17 = call noundef i32 @_Z8getCountPA3_ci(ptr noundef %16, i32 noundef 4) + %18 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef 4, i32 noundef %17) + %19 = getelementptr inbounds [4 x [3 x i8]], ptr %6, i64 0, i64 0 + %20 = call noundef i32 @_Z8getCountPA3_ci(ptr noundef %19, i32 noundef 5) + %21 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef 5, i32 noundef %20) + ret i32 0 +} + +declare i32 @printf(ptr noundef, ...) #4 + +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #2 = { nocallback nofree nosync nounwind willreturn } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/mobile-numeric-keypad-problem_space_optm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/mobile-numeric-keypad-problem_space_optm.ll new file mode 100644 index 000000000..52060c599 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/mobile-numeric-keypad-problem_space_optm.ll @@ -0,0 +1,458 @@ +; ModuleID = 'PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp' +source_filename = "PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +@__const.main.keypad = private unnamed_addr constant [4 x [3 x i8]] [[3 x i8] c"123", [3 x i8] c"456", [3 x i8] c"789", [3 x i8] c"*0#"], align 1 +@.str = private unnamed_addr constant [36 x i8] c"Count for numbers of length %d: %dn\00", align 1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z8getCountPA3_ci(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca i32, align 4 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca [10 x i32], align 16 + %7 = alloca [10 x i32], align 16 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + %12 = load ptr, ptr %4, align 8 + %13 = icmp eq ptr %12, null + br i1 %13, label %17, label %14 + +14: ; preds = %2 + %15 = load i32, ptr %5, align 4 + %16 = icmp sle i32 %15, 0 + br i1 %16, label %17, label %18 + +17: ; preds = %14, %2 + store i32 0, ptr %3, align 4 + br label %300 + +18: ; preds = %14 + %19 = load i32, ptr %5, align 4 + %20 = icmp eq i32 %19, 1 + br i1 %20, label %21, label %22 + +21: ; preds = %18 + store i32 10, ptr %3, align 4 + br label %300 + +22: ; preds = %18 + store i32 0, ptr %8, align 4 + store i32 0, ptr %9, align 4 + store i32 0, ptr %10, align 4 + store i32 0, ptr %11, align 4 + store i32 0, ptr %8, align 4 + br label %23 + +23: ; preds = %30, %22 + %24 = load i32, ptr %8, align 4 + %25 = icmp sle i32 %24, 9 + br i1 %25, label %26, label %33 + +26: ; preds = %23 + %27 = load i32, ptr %8, align 4 + %28 = sext i32 %27 to i64 + %29 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 %28 + store i32 1, ptr %29, align 4 + br label %30 + +30: ; preds = %26 + %31 = load i32, ptr %8, align 4 + %32 = add nsw i32 %31, 1 + store i32 %32, ptr %8, align 4 + br label %23, !llvm.loop !6 + +33: ; preds = %23 + store i32 2, ptr %9, align 4 + br label %34 + +34: ; preds = %262, %33 + %35 = load i32, ptr %9, align 4 + %36 = load i32, ptr %5, align 4 + %37 = icmp sle i32 %35, %36 + br i1 %37, label %38, label %265 + +38: ; preds = %34 + %39 = load i32, ptr %10, align 4 + %40 = sub nsw i32 1, %39 + store i32 %40, ptr %10, align 4 + %41 = load i32, ptr %10, align 4 + %42 = icmp eq i32 %41, 1 + br i1 %42, label %43, label %152 + +43: ; preds = %38 + %44 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 0 + %45 = load i32, ptr %44, align 16 + %46 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 8 + %47 = load i32, ptr %46, align 16 + %48 = add nsw i32 %45, %47 + %49 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 0 + store i32 %48, ptr %49, align 16 + %50 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 1 + %51 = load i32, ptr %50, align 4 + %52 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 2 + %53 = load i32, ptr %52, align 8 + %54 = add nsw i32 %51, %53 + %55 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 4 + %56 = load i32, ptr %55, align 16 + %57 = add nsw i32 %54, %56 + %58 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 1 + store i32 %57, ptr %58, align 4 + %59 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 2 + %60 = load i32, ptr %59, align 8 + %61 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 1 + %62 = load i32, ptr %61, align 4 + %63 = add nsw i32 %60, %62 + %64 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 3 + %65 = load i32, ptr %64, align 4 + %66 = add nsw i32 %63, %65 + %67 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 5 + %68 = load i32, ptr %67, align 4 + %69 = add nsw i32 %66, %68 + %70 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 2 + store i32 %69, ptr %70, align 8 + %71 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 3 + %72 = load i32, ptr %71, align 4 + %73 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 2 + %74 = load i32, ptr %73, align 8 + %75 = add nsw i32 %72, %74 + %76 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 6 + %77 = load i32, ptr %76, align 8 + %78 = add nsw i32 %75, %77 + %79 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 3 + store i32 %78, ptr %79, align 4 + %80 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 4 + %81 = load i32, ptr %80, align 16 + %82 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 1 + %83 = load i32, ptr %82, align 4 + %84 = add nsw i32 %81, %83 + %85 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 5 + %86 = load i32, ptr %85, align 4 + %87 = add nsw i32 %84, %86 + %88 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 7 + %89 = load i32, ptr %88, align 4 + %90 = add nsw i32 %87, %89 + %91 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 4 + store i32 %90, ptr %91, align 16 + %92 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 5 + %93 = load i32, ptr %92, align 4 + %94 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 2 + %95 = load i32, ptr %94, align 8 + %96 = add nsw i32 %93, %95 + %97 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 4 + %98 = load i32, ptr %97, align 16 + %99 = add nsw i32 %96, %98 + %100 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 8 + %101 = load i32, ptr %100, align 16 + %102 = add nsw i32 %99, %101 + %103 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 6 + %104 = load i32, ptr %103, align 8 + %105 = add nsw i32 %102, %104 + %106 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 5 + store i32 %105, ptr %106, align 4 + %107 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 6 + %108 = load i32, ptr %107, align 8 + %109 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 3 + %110 = load i32, ptr %109, align 4 + %111 = add nsw i32 %108, %110 + %112 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 5 + %113 = load i32, ptr %112, align 4 + %114 = add nsw i32 %111, %113 + %115 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 9 + %116 = load i32, ptr %115, align 4 + %117 = add nsw i32 %114, %116 + %118 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 6 + store i32 %117, ptr %118, align 8 + %119 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 7 + %120 = load i32, ptr %119, align 4 + %121 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 4 + %122 = load i32, ptr %121, align 16 + %123 = add nsw i32 %120, %122 + %124 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 8 + %125 = load i32, ptr %124, align 16 + %126 = add nsw i32 %123, %125 + %127 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 7 + store i32 %126, ptr %127, align 4 + %128 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 8 + %129 = load i32, ptr %128, align 16 + %130 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 0 + %131 = load i32, ptr %130, align 16 + %132 = add nsw i32 %129, %131 + %133 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 5 + %134 = load i32, ptr %133, align 4 + %135 = add nsw i32 %132, %134 + %136 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 7 + %137 = load i32, ptr %136, align 4 + %138 = add nsw i32 %135, %137 + %139 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 9 + %140 = load i32, ptr %139, align 4 + %141 = add nsw i32 %138, %140 + %142 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 8 + store i32 %141, ptr %142, align 16 + %143 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 9 + %144 = load i32, ptr %143, align 4 + %145 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 6 + %146 = load i32, ptr %145, align 8 + %147 = add nsw i32 %144, %146 + %148 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 8 + %149 = load i32, ptr %148, align 16 + %150 = add nsw i32 %147, %149 + %151 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 9 + store i32 %150, ptr %151, align 4 + br label %261 + +152: ; preds = %38 + %153 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 0 + %154 = load i32, ptr %153, align 16 + %155 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 8 + %156 = load i32, ptr %155, align 16 + %157 = add nsw i32 %154, %156 + %158 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 0 + store i32 %157, ptr %158, align 16 + %159 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 1 + %160 = load i32, ptr %159, align 4 + %161 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 2 + %162 = load i32, ptr %161, align 8 + %163 = add nsw i32 %160, %162 + %164 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 4 + %165 = load i32, ptr %164, align 16 + %166 = add nsw i32 %163, %165 + %167 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 1 + store i32 %166, ptr %167, align 4 + %168 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 2 + %169 = load i32, ptr %168, align 8 + %170 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 1 + %171 = load i32, ptr %170, align 4 + %172 = add nsw i32 %169, %171 + %173 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 3 + %174 = load i32, ptr %173, align 4 + %175 = add nsw i32 %172, %174 + %176 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 5 + %177 = load i32, ptr %176, align 4 + %178 = add nsw i32 %175, %177 + %179 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 2 + store i32 %178, ptr %179, align 8 + %180 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 3 + %181 = load i32, ptr %180, align 4 + %182 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 2 + %183 = load i32, ptr %182, align 8 + %184 = add nsw i32 %181, %183 + %185 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 6 + %186 = load i32, ptr %185, align 8 + %187 = add nsw i32 %184, %186 + %188 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 3 + store i32 %187, ptr %188, align 4 + %189 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 4 + %190 = load i32, ptr %189, align 16 + %191 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 1 + %192 = load i32, ptr %191, align 4 + %193 = add nsw i32 %190, %192 + %194 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 5 + %195 = load i32, ptr %194, align 4 + %196 = add nsw i32 %193, %195 + %197 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 7 + %198 = load i32, ptr %197, align 4 + %199 = add nsw i32 %196, %198 + %200 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 4 + store i32 %199, ptr %200, align 16 + %201 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 5 + %202 = load i32, ptr %201, align 4 + %203 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 2 + %204 = load i32, ptr %203, align 8 + %205 = add nsw i32 %202, %204 + %206 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 4 + %207 = load i32, ptr %206, align 16 + %208 = add nsw i32 %205, %207 + %209 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 8 + %210 = load i32, ptr %209, align 16 + %211 = add nsw i32 %208, %210 + %212 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 6 + %213 = load i32, ptr %212, align 8 + %214 = add nsw i32 %211, %213 + %215 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 5 + store i32 %214, ptr %215, align 4 + %216 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 6 + %217 = load i32, ptr %216, align 8 + %218 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 3 + %219 = load i32, ptr %218, align 4 + %220 = add nsw i32 %217, %219 + %221 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 5 + %222 = load i32, ptr %221, align 4 + %223 = add nsw i32 %220, %222 + %224 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 9 + %225 = load i32, ptr %224, align 4 + %226 = add nsw i32 %223, %225 + %227 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 6 + store i32 %226, ptr %227, align 8 + %228 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 7 + %229 = load i32, ptr %228, align 4 + %230 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 4 + %231 = load i32, ptr %230, align 16 + %232 = add nsw i32 %229, %231 + %233 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 8 + %234 = load i32, ptr %233, align 16 + %235 = add nsw i32 %232, %234 + %236 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 7 + store i32 %235, ptr %236, align 4 + %237 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 8 + %238 = load i32, ptr %237, align 16 + %239 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 0 + %240 = load i32, ptr %239, align 16 + %241 = add nsw i32 %238, %240 + %242 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 5 + %243 = load i32, ptr %242, align 4 + %244 = add nsw i32 %241, %243 + %245 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 7 + %246 = load i32, ptr %245, align 4 + %247 = add nsw i32 %244, %246 + %248 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 9 + %249 = load i32, ptr %248, align 4 + %250 = add nsw i32 %247, %249 + %251 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 8 + store i32 %250, ptr %251, align 16 + %252 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 9 + %253 = load i32, ptr %252, align 4 + %254 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 6 + %255 = load i32, ptr %254, align 8 + %256 = add nsw i32 %253, %255 + %257 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 8 + %258 = load i32, ptr %257, align 16 + %259 = add nsw i32 %256, %258 + %260 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 9 + store i32 %259, ptr %260, align 4 + br label %261 + +261: ; preds = %152, %43 + br label %262 + +262: ; preds = %261 + %263 = load i32, ptr %9, align 4 + %264 = add nsw i32 %263, 1 + store i32 %264, ptr %9, align 4 + br label %34, !llvm.loop !8 + +265: ; preds = %34 + store i32 0, ptr %11, align 4 + %266 = load i32, ptr %10, align 4 + %267 = icmp eq i32 %266, 1 + br i1 %267, label %268, label %283 + +268: ; preds = %265 + store i32 0, ptr %8, align 4 + br label %269 + +269: ; preds = %279, %268 + %270 = load i32, ptr %8, align 4 + %271 = icmp sle i32 %270, 9 + br i1 %271, label %272, label %282 + +272: ; preds = %269 + %273 = load i32, ptr %8, align 4 + %274 = sext i32 %273 to i64 + %275 = getelementptr inbounds [10 x i32], ptr %7, i64 0, i64 %274 + %276 = load i32, ptr %275, align 4 + %277 = load i32, ptr %11, align 4 + %278 = add nsw i32 %277, %276 + store i32 %278, ptr %11, align 4 + br label %279 + +279: ; preds = %272 + %280 = load i32, ptr %8, align 4 + %281 = add nsw i32 %280, 1 + store i32 %281, ptr %8, align 4 + br label %269, !llvm.loop !9 + +282: ; preds = %269 + br label %298 + +283: ; preds = %265 + store i32 0, ptr %8, align 4 + br label %284 + +284: ; preds = %294, %283 + %285 = load i32, ptr %8, align 4 + %286 = icmp sle i32 %285, 9 + br i1 %286, label %287, label %297 + +287: ; preds = %284 + %288 = load i32, ptr %8, align 4 + %289 = sext i32 %288 to i64 + %290 = getelementptr inbounds [10 x i32], ptr %6, i64 0, i64 %289 + %291 = load i32, ptr %290, align 4 + %292 = load i32, ptr %11, align 4 + %293 = add nsw i32 %292, %291 + store i32 %293, ptr %11, align 4 + br label %294 + +294: ; preds = %287 + %295 = load i32, ptr %8, align 4 + %296 = add nsw i32 %295, 1 + store i32 %296, ptr %8, align 4 + br label %284, !llvm.loop !10 + +297: ; preds = %284 + br label %298 + +298: ; preds = %297, %282 + %299 = load i32, ptr %11, align 4 + store i32 %299, ptr %3, align 4 + br label %300 + +300: ; preds = %298, %21, %17 + %301 = load i32, ptr %3, align 4 + ret i32 %301 +} + +; 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, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %2, ptr align 1 @__const.main.keypad, i64 12, i1 false) + %3 = getelementptr inbounds [4 x [3 x i8]], ptr %2, i64 0, i64 0 + %4 = call noundef i32 @_Z8getCountPA3_ci(ptr noundef %3, i32 noundef 1) + %5 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef 1, i32 noundef %4) + %6 = getelementptr inbounds [4 x [3 x i8]], ptr %2, i64 0, i64 0 + %7 = call noundef i32 @_Z8getCountPA3_ci(ptr noundef %6, i32 noundef 2) + %8 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef 2, i32 noundef %7) + %9 = getelementptr inbounds [4 x [3 x i8]], ptr %2, i64 0, i64 0 + %10 = call noundef i32 @_Z8getCountPA3_ci(ptr noundef %9, i32 noundef 3) + %11 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef 3, i32 noundef %10) + %12 = getelementptr inbounds [4 x [3 x i8]], ptr %2, i64 0, i64 0 + %13 = call noundef i32 @_Z8getCountPA3_ci(ptr noundef %12, i32 noundef 4) + %14 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef 4, i32 noundef %13) + %15 = getelementptr inbounds [4 x [3 x i8]], ptr %2, i64 0, i64 0 + %16 = call noundef i32 @_Z8getCountPA3_ci(ptr noundef %15, i32 noundef 5) + %17 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef 5, i32 noundef %16) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #2 + +declare i32 @printf(ptr noundef, ...) #3 + +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm14/n-queen-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/n-queen-problem.ll similarity index 50% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/n-queen-problem.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/n-queen-problem.ll index 766d7f406..00c92cda0 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/n-queen-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/n-queen-problem.ll @@ -11,198 +11,198 @@ target triple = "x86_64-pc-linux-gnu" @.str.2 = private unnamed_addr constant [24 x i8] c"Solution does not exist\00", align 1 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z13printSolutionPA4_i([4 x i32]* noundef %0) #0 { - %2 = alloca [4 x i32]*, align 8 +define dso_local void @_Z13printSolutionPA4_i(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 %3 = alloca i32, align 4 %4 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %2, align 8 - store i32 0, i32* %3, align 4 + store ptr %0, ptr %2, align 8 + store i32 0, ptr %3, align 4 br label %5 5: ; preds = %27, %1 - %6 = load i32, i32* %3, align 4 + %6 = load i32, ptr %3, align 4 %7 = icmp slt i32 %6, 4 br i1 %7, label %8, label %30 8: ; preds = %5 - store i32 0, i32* %4, align 4 + store i32 0, ptr %4, align 4 br label %9 9: ; preds = %22, %8 - %10 = load i32, i32* %4, align 4 + %10 = load i32, ptr %4, align 4 %11 = icmp slt i32 %10, 4 br i1 %11, label %12, label %25 12: ; preds = %9 - %13 = load [4 x i32]*, [4 x i32]** %2, align 8 - %14 = load i32, i32* %3, align 4 + %13 = load ptr, ptr %2, align 8 + %14 = load i32, ptr %3, align 4 %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [4 x i32], [4 x i32]* %13, i64 %15 - %17 = load i32, i32* %4, align 4 + %16 = getelementptr inbounds [4 x i32], ptr %13, i64 %15 + %17 = load i32, ptr %4, align 4 %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [4 x i32], [4 x i32]* %16, i64 0, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i32 noundef %20) + %19 = getelementptr inbounds [4 x i32], ptr %16, i64 0, i64 %18 + %20 = load i32, ptr %19, align 4 + %21 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %20) br label %22 22: ; preds = %12 - %23 = load i32, i32* %4, align 4 + %23 = load i32, ptr %4, align 4 %24 = add nsw i32 %23, 1 - store i32 %24, i32* %4, align 4 + store i32 %24, ptr %4, align 4 br label %9, !llvm.loop !6 25: ; preds = %9 - %26 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) + %26 = call i32 (ptr, ...) @printf(ptr noundef @.str.1) br label %27 27: ; preds = %25 - %28 = load i32, i32* %3, align 4 + %28 = load i32, ptr %3, align 4 %29 = add nsw i32 %28, 1 - store i32 %29, i32* %3, align 4 + store i32 %29, ptr %3, align 4 br label %5, !llvm.loop !8 30: ; preds = %5 ret void } -declare i32 @printf(i8* noundef, ...) #1 +declare i32 @printf(ptr noundef, ...) #1 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_Z11solveNQUtilPA4_ii([4 x i32]* noundef %0, i32 noundef %1) #0 { +define dso_local noundef zeroext i1 @_Z11solveNQUtilPA4_ii(ptr noundef %0, i32 noundef %1) #0 { %3 = alloca i1, align 1 - %4 = alloca [4 x i32]*, align 8 + %4 = alloca ptr, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %4, align 8 - store i32 %1, i32* %5, align 4 - %7 = load i32, i32* %5, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + %7 = load i32, ptr %5, align 4 %8 = icmp sge i32 %7, 4 br i1 %8, label %9, label %10 9: ; preds = %2 - store i1 true, i1* %3, align 1 + store i1 true, ptr %3, align 1 br label %94 10: ; preds = %2 - store i32 0, i32* %6, align 4 + store i32 0, ptr %6, align 4 br label %11 11: ; preds = %90, %10 - %12 = load i32, i32* %6, align 4 + %12 = load i32, ptr %6, align 4 %13 = icmp slt i32 %12, 4 br i1 %13, label %14, label %93 14: ; preds = %11 - %15 = load i32, i32* %6, align 4 - %16 = load i32, i32* %5, align 4 + %15 = load i32, ptr %6, align 4 + %16 = load i32, ptr %5, align 4 %17 = sub nsw i32 %15, %16 %18 = add nsw i32 %17, 4 %19 = sub nsw i32 %18, 1 %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [30 x i32], [30 x i32]* @ld, i64 0, i64 %20 - %22 = load i32, i32* %21, align 4 + %21 = getelementptr inbounds [30 x i32], ptr @ld, i64 0, i64 %20 + %22 = load i32, ptr %21, align 4 %23 = icmp ne i32 %22, 1 br i1 %23, label %24, label %89 24: ; preds = %14 - %25 = load i32, i32* %6, align 4 - %26 = load i32, i32* %5, align 4 + %25 = load i32, ptr %6, align 4 + %26 = load i32, ptr %5, align 4 %27 = add nsw i32 %25, %26 %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds [30 x i32], [30 x i32]* @rd, i64 0, i64 %28 - %30 = load i32, i32* %29, align 4 + %29 = getelementptr inbounds [30 x i32], ptr @rd, i64 0, i64 %28 + %30 = load i32, ptr %29, align 4 %31 = icmp ne i32 %30, 1 br i1 %31, label %32, label %89 32: ; preds = %24 - %33 = load i32, i32* %6, align 4 + %33 = load i32, ptr %6, align 4 %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds [30 x i32], [30 x i32]* @cl, i64 0, i64 %34 - %36 = load i32, i32* %35, align 4 + %35 = getelementptr inbounds [30 x i32], ptr @cl, i64 0, i64 %34 + %36 = load i32, ptr %35, align 4 %37 = icmp ne i32 %36, 1 br i1 %37, label %38, label %89 38: ; preds = %32 - %39 = load [4 x i32]*, [4 x i32]** %4, align 8 - %40 = load i32, i32* %6, align 4 + %39 = load ptr, ptr %4, align 8 + %40 = load i32, ptr %6, align 4 %41 = sext i32 %40 to i64 - %42 = getelementptr inbounds [4 x i32], [4 x i32]* %39, i64 %41 - %43 = load i32, i32* %5, align 4 + %42 = getelementptr inbounds [4 x i32], ptr %39, i64 %41 + %43 = load i32, ptr %5, align 4 %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds [4 x i32], [4 x i32]* %42, i64 0, i64 %44 - store i32 1, i32* %45, align 4 - %46 = load i32, i32* %6, align 4 + %45 = getelementptr inbounds [4 x i32], ptr %42, i64 0, i64 %44 + store i32 1, ptr %45, align 4 + %46 = load i32, ptr %6, align 4 %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds [30 x i32], [30 x i32]* @cl, i64 0, i64 %47 - store i32 1, i32* %48, align 4 - %49 = load i32, i32* %6, align 4 - %50 = load i32, i32* %5, align 4 + %48 = getelementptr inbounds [30 x i32], ptr @cl, i64 0, i64 %47 + store i32 1, ptr %48, align 4 + %49 = load i32, ptr %6, align 4 + %50 = load i32, ptr %5, align 4 %51 = add nsw i32 %49, %50 %52 = sext i32 %51 to i64 - %53 = getelementptr inbounds [30 x i32], [30 x i32]* @rd, i64 0, i64 %52 - store i32 1, i32* %53, align 4 - %54 = load i32, i32* %6, align 4 - %55 = load i32, i32* %5, align 4 + %53 = getelementptr inbounds [30 x i32], ptr @rd, i64 0, i64 %52 + store i32 1, ptr %53, align 4 + %54 = load i32, ptr %6, align 4 + %55 = load i32, ptr %5, align 4 %56 = sub nsw i32 %54, %55 %57 = add nsw i32 %56, 4 %58 = sub nsw i32 %57, 1 %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds [30 x i32], [30 x i32]* @ld, i64 0, i64 %59 - store i32 1, i32* %60, align 4 - %61 = load [4 x i32]*, [4 x i32]** %4, align 8 - %62 = load i32, i32* %5, align 4 + %60 = getelementptr inbounds [30 x i32], ptr @ld, i64 0, i64 %59 + store i32 1, ptr %60, align 4 + %61 = load ptr, ptr %4, align 8 + %62 = load i32, ptr %5, align 4 %63 = add nsw i32 %62, 1 - %64 = call noundef zeroext i1 @_Z11solveNQUtilPA4_ii([4 x i32]* noundef %61, i32 noundef %63) + %64 = call noundef zeroext i1 @_Z11solveNQUtilPA4_ii(ptr noundef %61, i32 noundef %63) br i1 %64, label %65, label %66 65: ; preds = %38 - store i1 true, i1* %3, align 1 + store i1 true, ptr %3, align 1 br label %94 66: ; preds = %38 - %67 = load [4 x i32]*, [4 x i32]** %4, align 8 - %68 = load i32, i32* %6, align 4 + %67 = load ptr, ptr %4, align 8 + %68 = load i32, ptr %6, align 4 %69 = sext i32 %68 to i64 - %70 = getelementptr inbounds [4 x i32], [4 x i32]* %67, i64 %69 - %71 = load i32, i32* %5, align 4 + %70 = getelementptr inbounds [4 x i32], ptr %67, i64 %69 + %71 = load i32, ptr %5, align 4 %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds [4 x i32], [4 x i32]* %70, i64 0, i64 %72 - store i32 0, i32* %73, align 4 - %74 = load i32, i32* %6, align 4 + %73 = getelementptr inbounds [4 x i32], ptr %70, i64 0, i64 %72 + store i32 0, ptr %73, align 4 + %74 = load i32, ptr %6, align 4 %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds [30 x i32], [30 x i32]* @cl, i64 0, i64 %75 - store i32 0, i32* %76, align 4 - %77 = load i32, i32* %6, align 4 - %78 = load i32, i32* %5, align 4 + %76 = getelementptr inbounds [30 x i32], ptr @cl, i64 0, i64 %75 + store i32 0, ptr %76, align 4 + %77 = load i32, ptr %6, align 4 + %78 = load i32, ptr %5, align 4 %79 = add nsw i32 %77, %78 %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds [30 x i32], [30 x i32]* @rd, i64 0, i64 %80 - store i32 0, i32* %81, align 4 - %82 = load i32, i32* %6, align 4 - %83 = load i32, i32* %5, align 4 + %81 = getelementptr inbounds [30 x i32], ptr @rd, i64 0, i64 %80 + store i32 0, ptr %81, align 4 + %82 = load i32, ptr %6, align 4 + %83 = load i32, ptr %5, align 4 %84 = sub nsw i32 %82, %83 %85 = add nsw i32 %84, 4 %86 = sub nsw i32 %85, 1 %87 = sext i32 %86 to i64 - %88 = getelementptr inbounds [30 x i32], [30 x i32]* @ld, i64 0, i64 %87 - store i32 0, i32* %88, align 4 + %88 = getelementptr inbounds [30 x i32], ptr @ld, i64 0, i64 %87 + store i32 0, ptr %88, align 4 br label %89 89: ; preds = %66, %32, %24, %14 br label %90 90: ; preds = %89 - %91 = load i32, i32* %6, align 4 + %91 = load i32, ptr %6, align 4 %92 = add nsw i32 %91, 1 - store i32 %92, i32* %6, align 4 + store i32 %92, ptr %6, align 4 br label %11, !llvm.loop !9 93: ; preds = %11 - store i1 false, i1* %3, align 1 + store i1 false, ptr %3, align 1 br label %94 94: ; preds = %93, %65, %9 - %95 = load i1, i1* %3, align 1 + %95 = load i1, ptr %3, align 1 ret i1 %95 } @@ -210,55 +210,54 @@ define dso_local noundef zeroext i1 @_Z11solveNQUtilPA4_ii([4 x i32]* noundef %0 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 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* 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]* noundef %11) - store i1 true, i1* %1, align 1 - br label %12 - -12: ; preds = %10, %8 - %13 = load i1, i1* %1, align 1 - ret i1 %13 + call void @llvm.memset.p0.i64(ptr align 16 %2, i8 0, i64 64, i1 false) + %3 = getelementptr inbounds [4 x [4 x i32]], ptr %2, i64 0, i64 0 + %4 = call noundef zeroext i1 @_Z11solveNQUtilPA4_ii(ptr noundef %3, i32 noundef 0) + %5 = zext i1 %4 to i32 + %6 = icmp eq i32 %5, 0 + br i1 %6, label %7, label %9 + +7: ; preds = %0 + %8 = call i32 (ptr, ...) @printf(ptr noundef @.str.2) + store i1 false, ptr %1, align 1 + br label %11 + +9: ; preds = %0 + %10 = getelementptr inbounds [4 x [4 x i32]], ptr %2, i64 0, i64 0 + call void @_Z13printSolutionPA4_i(ptr noundef %10) + store i1 true, ptr %1, align 1 + br label %11 + +11: ; preds = %9, %7 + %12 = load i1, ptr %1, align 1 + ret i1 %12 } -; Function Attrs: argmemonly nofree nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #2 +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #2 ; 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 + store i32 0, ptr %1, align 4 %2 = call noundef zeroext i1 @_Z7solveNQv() ret i32 0 } 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 #2 = { nocallback nofree nounwind willreturn memory(argmem: write) } 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, !1, !2, !3, !4} !llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{i32 7, !"PIC Level", i32 2} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/naive-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/naive-algorithm.ll new file mode 100644 index 000000000..fb2ec109e --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/naive-algorithm.ll @@ -0,0 +1,160 @@ +; ModuleID = 'PE-benchmarks/naive-algorithm.cpp' +source_filename = "PE-benchmarks/naive-algorithm.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchPcS_(ptr noundef %0, ptr noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %9 = load ptr, ptr %3, align 8 + %10 = call i64 @strlen(ptr noundef %9) #5 + %11 = trunc i64 %10 to i32 + store i32 %11, ptr %5, align 4 + %12 = load ptr, ptr %4, align 8 + %13 = call i64 @strlen(ptr noundef %12) #5 + %14 = trunc i64 %13 to i32 + store i32 %14, ptr %6, align 4 + store i32 0, ptr %7, align 4 + br label %15 + +15: ; preds = %57, %2 + %16 = load i32, ptr %7, align 4 + %17 = load i32, ptr %6, align 4 + %18 = load i32, ptr %5, align 4 + %19 = sub nsw i32 %17, %18 + %20 = icmp sle i32 %16, %19 + br i1 %20, label %21, label %60 + +21: ; preds = %15 + store i32 0, ptr %8, align 4 + br label %22 + +22: ; preds = %44, %21 + %23 = load i32, ptr %8, align 4 + %24 = load i32, ptr %5, align 4 + %25 = icmp slt i32 %23, %24 + br i1 %25, label %26, label %47 + +26: ; preds = %22 + %27 = load ptr, ptr %4, align 8 + %28 = load i32, ptr %7, align 4 + %29 = load i32, ptr %8, align 4 + %30 = add nsw i32 %28, %29 + %31 = sext i32 %30 to i64 + %32 = getelementptr inbounds i8, ptr %27, i64 %31 + %33 = load i8, ptr %32, align 1 + %34 = sext i8 %33 to i32 + %35 = load ptr, ptr %3, align 8 + %36 = load i32, ptr %8, align 4 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds i8, ptr %35, i64 %37 + %39 = load i8, ptr %38, align 1 + %40 = sext i8 %39 to i32 + %41 = icmp ne i32 %34, %40 + br i1 %41, label %42, label %43 + +42: ; preds = %26 + br label %47 + +43: ; preds = %26 + br label %44 + +44: ; preds = %43 + %45 = load i32, ptr %8, align 4 + %46 = add nsw i32 %45, 1 + store i32 %46, ptr %8, align 4 + br label %22, !llvm.loop !6 + +47: ; preds = %42, %22 + %48 = load i32, ptr %8, align 4 + %49 = load i32, ptr %5, align 4 + %50 = icmp eq i32 %48, %49 + br i1 %50, label %51, label %56 + +51: ; preds = %47 + %52 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %53 = load i32, ptr %7, align 4 + %54 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %52, i32 noundef %53) + %55 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %54, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %56 + +56: ; preds = %51, %47 + br label %57 + +57: ; preds = %56 + %58 = load i32, ptr %7, align 4 + %59 = add nsw i32 %58, 1 + store i32 %59, ptr %7, align 4 + br label %15, !llvm.loop !8 + +60: ; preds = %15 + ret void +} + +; Function Attrs: nounwind willreturn memory(read) +declare i64 @strlen(ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [19 x i8], align 16 + %3 = alloca [5 x i8], align 1 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.txt, i64 19, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %3, ptr align 1 @__const.main.pat, i64 5, i1 false) + %4 = getelementptr inbounds [5 x i8], ptr %3, i64 0, i64 0 + %5 = getelementptr inbounds [19 x i8], ptr %2, i64 0, i64 0 + call void @_Z6searchPcS_(ptr noundef %4, ptr noundef %5) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +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 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #5 = { nounwind willreturn memory(read) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/optimal-binary-search-tree.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/optimal-binary-search-tree.ll new file mode 100644 index 000000000..c5ef81f6f --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/optimal-binary-search-tree.ll @@ -0,0 +1,336 @@ +; ModuleID = 'PE-benchmarks/optimal-binary-search-tree.cpp' +source_filename = "PE-benchmarks/optimal-binary-search-tree.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__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 global %"class.std::basic_ostream", align 8 +@.str = private unnamed_addr constant [24 x i8] c"Cost of Optimal BST is \00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z17optimalSearchTreePiS_i(ptr noundef %0, ptr noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca i64, align 8 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + %15 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i32 %2, ptr %6, align 4 + %16 = load i32, ptr %6, align 4 + %17 = zext i32 %16 to i64 + %18 = load i32, ptr %6, align 4 + %19 = zext i32 %18 to i64 + %20 = call ptr @llvm.stacksave() + store ptr %20, ptr %7, align 8 + %21 = mul nuw i64 %17, %19 + %22 = alloca i32, i64 %21, align 16 + store i64 %17, ptr %8, align 8 + store i64 %19, ptr %9, align 8 + store i32 0, ptr %10, align 4 + br label %23 + +23: ; preds = %40, %3 + %24 = load i32, ptr %10, align 4 + %25 = load i32, ptr %6, align 4 + %26 = icmp slt i32 %24, %25 + br i1 %26, label %27, label %43 + +27: ; preds = %23 + %28 = load ptr, ptr %5, align 8 + %29 = load i32, ptr %10, align 4 + %30 = sext i32 %29 to i64 + %31 = getelementptr inbounds i32, ptr %28, i64 %30 + %32 = load i32, ptr %31, align 4 + %33 = load i32, ptr %10, align 4 + %34 = sext i32 %33 to i64 + %35 = mul nsw i64 %34, %19 + %36 = getelementptr inbounds i32, ptr %22, i64 %35 + %37 = load i32, ptr %10, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds i32, ptr %36, i64 %38 + store i32 %32, ptr %39, align 4 + br label %40 + +40: ; preds = %27 + %41 = load i32, ptr %10, align 4 + %42 = add nsw i32 %41, 1 + store i32 %42, ptr %10, align 4 + br label %23, !llvm.loop !6 + +43: ; preds = %23 + store i32 2, ptr %11, align 4 + br label %44 + +44: ; preds = %140, %43 + %45 = load i32, ptr %11, align 4 + %46 = load i32, ptr %6, align 4 + %47 = icmp sle i32 %45, %46 + br i1 %47, label %48, label %143 + +48: ; preds = %44 + store i32 0, ptr %12, align 4 + br label %49 + +49: ; preds = %136, %48 + %50 = load i32, ptr %12, align 4 + %51 = load i32, ptr %6, align 4 + %52 = load i32, ptr %11, align 4 + %53 = sub nsw i32 %51, %52 + %54 = add nsw i32 %53, 1 + %55 = icmp sle i32 %50, %54 + br i1 %55, label %56, label %139 + +56: ; preds = %49 + %57 = load i32, ptr %12, align 4 + %58 = load i32, ptr %11, align 4 + %59 = add nsw i32 %57, %58 + %60 = sub nsw i32 %59, 1 + store i32 %60, ptr %13, align 4 + %61 = load i32, ptr %12, align 4 + %62 = sext i32 %61 to i64 + %63 = mul nsw i64 %62, %19 + %64 = getelementptr inbounds i32, ptr %22, i64 %63 + %65 = load i32, ptr %13, align 4 + %66 = sext i32 %65 to i64 + %67 = getelementptr inbounds i32, ptr %64, i64 %66 + store i32 2147483647, ptr %67, align 4 + %68 = load i32, ptr %12, align 4 + store i32 %68, ptr %14, align 4 + br label %69 + +69: ; preds = %132, %56 + %70 = load i32, ptr %14, align 4 + %71 = load i32, ptr %13, align 4 + %72 = icmp sle i32 %70, %71 + br i1 %72, label %73, label %135 + +73: ; preds = %69 + %74 = load i32, ptr %14, align 4 + %75 = load i32, ptr %12, align 4 + %76 = icmp sgt i32 %74, %75 + br i1 %76, label %77, label %87 + +77: ; preds = %73 + %78 = load i32, ptr %12, align 4 + %79 = sext i32 %78 to i64 + %80 = mul nsw i64 %79, %19 + %81 = getelementptr inbounds i32, ptr %22, i64 %80 + %82 = load i32, ptr %14, align 4 + %83 = sub nsw i32 %82, 1 + %84 = sext i32 %83 to i64 + %85 = getelementptr inbounds i32, ptr %81, i64 %84 + %86 = load i32, ptr %85, align 4 + br label %88 + +87: ; preds = %73 + br label %88 + +88: ; preds = %87, %77 + %89 = phi i32 [ %86, %77 ], [ 0, %87 ] + %90 = load i32, ptr %14, align 4 + %91 = load i32, ptr %13, align 4 + %92 = icmp slt i32 %90, %91 + br i1 %92, label %93, label %103 + +93: ; preds = %88 + %94 = load i32, ptr %14, align 4 + %95 = add nsw i32 %94, 1 + %96 = sext i32 %95 to i64 + %97 = mul nsw i64 %96, %19 + %98 = getelementptr inbounds i32, ptr %22, i64 %97 + %99 = load i32, ptr %13, align 4 + %100 = sext i32 %99 to i64 + %101 = getelementptr inbounds i32, ptr %98, i64 %100 + %102 = load i32, ptr %101, align 4 + br label %104 + +103: ; preds = %88 + br label %104 + +104: ; preds = %103, %93 + %105 = phi i32 [ %102, %93 ], [ 0, %103 ] + %106 = add nsw i32 %89, %105 + %107 = load ptr, ptr %5, align 8 + %108 = load i32, ptr %12, align 4 + %109 = load i32, ptr %13, align 4 + %110 = call noundef i32 @_Z3sumPiii(ptr noundef %107, i32 noundef %108, i32 noundef %109) + %111 = add nsw i32 %106, %110 + store i32 %111, ptr %15, align 4 + %112 = load i32, ptr %15, align 4 + %113 = load i32, ptr %12, align 4 + %114 = sext i32 %113 to i64 + %115 = mul nsw i64 %114, %19 + %116 = getelementptr inbounds i32, ptr %22, i64 %115 + %117 = load i32, ptr %13, align 4 + %118 = sext i32 %117 to i64 + %119 = getelementptr inbounds i32, ptr %116, i64 %118 + %120 = load i32, ptr %119, align 4 + %121 = icmp slt i32 %112, %120 + br i1 %121, label %122, label %131 + +122: ; preds = %104 + %123 = load i32, ptr %15, align 4 + %124 = load i32, ptr %12, align 4 + %125 = sext i32 %124 to i64 + %126 = mul nsw i64 %125, %19 + %127 = getelementptr inbounds i32, ptr %22, i64 %126 + %128 = load i32, ptr %13, align 4 + %129 = sext i32 %128 to i64 + %130 = getelementptr inbounds i32, ptr %127, i64 %129 + store i32 %123, ptr %130, align 4 + br label %131 + +131: ; preds = %122, %104 + br label %132 + +132: ; preds = %131 + %133 = load i32, ptr %14, align 4 + %134 = add nsw i32 %133, 1 + store i32 %134, ptr %14, align 4 + br label %69, !llvm.loop !8 + +135: ; preds = %69 + br label %136 + +136: ; preds = %135 + %137 = load i32, ptr %12, align 4 + %138 = add nsw i32 %137, 1 + store i32 %138, ptr %12, align 4 + br label %49, !llvm.loop !9 + +139: ; preds = %49 + br label %140 + +140: ; preds = %139 + %141 = load i32, ptr %11, align 4 + %142 = add nsw i32 %141, 1 + store i32 %142, ptr %11, align 4 + br label %44, !llvm.loop !10 + +143: ; preds = %44 + %144 = mul nsw i64 0, %19 + %145 = getelementptr inbounds i32, ptr %22, i64 %144 + %146 = load i32, ptr %6, align 4 + %147 = sub nsw i32 %146, 1 + %148 = sext i32 %147 to i64 + %149 = getelementptr inbounds i32, ptr %145, i64 %148 + %150 = load i32, ptr %149, align 4 + %151 = load ptr, ptr %7, align 8 + call void @llvm.stackrestore(ptr %151) + ret i32 %150 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3sumPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + store i32 0, ptr %7, align 4 + %9 = load i32, ptr %5, align 4 + store i32 %9, ptr %8, align 4 + br label %10 + +10: ; preds = %22, %3 + %11 = load i32, ptr %8, align 4 + %12 = load i32, ptr %6, align 4 + %13 = icmp sle i32 %11, %12 + br i1 %13, label %14, label %25 + +14: ; preds = %10 + %15 = load ptr, ptr %4, align 8 + %16 = load i32, ptr %8, align 4 + %17 = sext i32 %16 to i64 + %18 = getelementptr inbounds i32, ptr %15, i64 %17 + %19 = load i32, ptr %18, align 4 + %20 = load i32, ptr %7, align 4 + %21 = add nsw i32 %20, %19 + store i32 %21, ptr %7, align 4 + br label %22 + +22: ; preds = %14 + %23 = load i32, ptr %8, align 4 + %24 = add nsw i32 %23, 1 + store i32 %24, ptr %8, align 4 + br label %10, !llvm.loop !11 + +25: ; preds = %10 + %26 = load i32, ptr %7, align 4 + ret i32 %26 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [3 x i32], align 4 + %3 = alloca [3 x i32], align 4 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %2, ptr align 4 @__const.main.keys, i64 12, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %3, ptr align 4 @__const.main.freq, i64 12, i1 false) + store i32 3, ptr %4, align 4 + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %6 = getelementptr inbounds [3 x i32], ptr %2, i64 0, i64 0 + %7 = getelementptr inbounds [3 x i32], ptr %3, i64 0, i64 0 + %8 = load i32, ptr %4, align 4 + %9 = call noundef i32 @_Z17optimalSearchTreePiS_i(ptr noundef %6, ptr noundef %7, i32 noundef %8) + %10 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %5, i32 noundef %9) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +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 = { nocallback nofree nosync nounwind willreturn } +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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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" } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/optimized-naive-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/optimized-naive-algorithm.ll new file mode 100644 index 000000000..9ea225528 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/optimized-naive-algorithm.ll @@ -0,0 +1,596 @@ +; ModuleID = 'PE-benchmarks/optimized-naive-algorithm.cpp' +source_filename = "PE-benchmarks/optimized-naive-algorithm.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } +%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } +%union.anon = type { i64, [8 x i8] } +%"class.std::allocator" = type { i8 } +%"struct.std::forward_iterator_tag" = type { i8 } +%struct._Guard = type { ptr } + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any + +$_ZNSt15__new_allocatorIcED2Ev = comdat any + +$_ZNSt11char_traitsIcE6lengthEPKc = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any + +$__clang_call_terminate = comdat any + +@_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 +@.str.3 = private unnamed_addr constant [50 x i8] c"basic_string: construction from null is not valid\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %0, ptr noundef %1) #0 { + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #9 + %8 = trunc i64 %7 to i32 + store i32 %8, ptr %3, align 4 + %9 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #9 + %10 = trunc i64 %9 to i32 + store i32 %10, ptr %4, align 4 + store i32 0, ptr %5, align 4 + br label %11 + +11: ; preds = %64, %2 + %12 = load i32, ptr %5, align 4 + %13 = load i32, ptr %4, align 4 + %14 = load i32, ptr %3, align 4 + %15 = sub nsw i32 %13, %14 + %16 = icmp sle i32 %12, %15 + br i1 %16, label %17, label %65 + +17: ; preds = %11 + store i32 0, ptr %6, align 4 + br label %18 + +18: ; preds = %38, %17 + %19 = load i32, ptr %6, align 4 + %20 = load i32, ptr %3, align 4 + %21 = icmp slt i32 %19, %20 + br i1 %21, label %22, label %41 + +22: ; preds = %18 + %23 = load i32, ptr %5, align 4 + %24 = load i32, ptr %6, align 4 + %25 = add nsw i32 %23, %24 + %26 = sext i32 %25 to i64 + %27 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %26) + %28 = load i8, ptr %27, align 1 + %29 = sext i8 %28 to i32 + %30 = load i32, ptr %6, align 4 + %31 = sext i32 %30 to i64 + %32 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %31) + %33 = load i8, ptr %32, align 1 + %34 = sext i8 %33 to i32 + %35 = icmp ne i32 %29, %34 + br i1 %35, label %36, label %37 + +36: ; preds = %22 + br label %41 + +37: ; preds = %22 + br label %38 + +38: ; preds = %37 + %39 = load i32, ptr %6, align 4 + %40 = add nsw i32 %39, 1 + store i32 %40, ptr %6, align 4 + br label %18, !llvm.loop !6 + +41: ; preds = %36, %18 + %42 = load i32, ptr %6, align 4 + %43 = load i32, ptr %3, align 4 + %44 = icmp eq i32 %42, %43 + br i1 %44, label %45, label %53 + +45: ; preds = %41 + %46 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %47 = load i32, ptr %5, align 4 + %48 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %46, i32 noundef %47) + %49 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %48, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %50 = load i32, ptr %5, align 4 + %51 = load i32, ptr %3, align 4 + %52 = add nsw i32 %50, %51 + store i32 %52, ptr %5, align 4 + br label %64 + +53: ; preds = %41 + %54 = load i32, ptr %6, align 4 + %55 = icmp eq i32 %54, 0 + br i1 %55, label %56, label %59 + +56: ; preds = %53 + %57 = load i32, ptr %5, align 4 + %58 = add nsw i32 %57, 1 + store i32 %58, ptr %5, align 4 + br label %63 + +59: ; preds = %53 + %60 = load i32, ptr %5, align 4 + %61 = load i32, ptr %6, align 4 + %62 = add nsw i32 %60, %61 + store i32 %62, ptr %5, align 4 + br label %63 + +63: ; preds = %59, %56 + br label %64 + +64: ; preds = %63, %45 + br label %11, !llvm.loop !8 + +65: ; preds = %11 + ret void +} + +; Function Attrs: nounwind +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 + +declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #2 + +; Function Attrs: noinline norecurse uwtable +define dso_local noundef i32 @main() #3 personality ptr @__gxx_personality_v0 { + %1 = alloca ptr, align 8 + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca %"class.std::__cxx11::basic_string", align 8 + %11 = alloca %"class.std::allocator", align 1 + %12 = alloca ptr, align 8 + %13 = alloca i32, align 4 + %14 = alloca %"class.std::__cxx11::basic_string", align 8 + %15 = alloca %"class.std::allocator", align 1 + %16 = alloca %"class.std::__cxx11::basic_string", align 8 + %17 = alloca %"class.std::__cxx11::basic_string", align 8 + store i32 0, ptr %9, align 4 + store ptr %11, ptr %8, align 8 + %18 = load ptr, ptr %8, align 8 + store ptr %18, ptr %1, align 8 + %19 = load ptr, ptr %1, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef @.str.1, ptr noundef nonnull align 1 dereferenceable(1) %11) + to label %20 unwind label %30 + +20: ; preds = %0 + store ptr %11, ptr %6, align 8 + %21 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %21) #9 + store ptr %15, ptr %7, align 8 + %22 = load ptr, ptr %7, align 8 + store ptr %22, ptr %2, align 8 + %23 = load ptr, ptr %2, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %14, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %15) + to label %24 unwind label %35 + +24: ; preds = %20 + store ptr %15, ptr %4, align 8 + %25 = load ptr, ptr %4, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %25) #9 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %16, ptr noundef nonnull align 8 dereferenceable(32) %14) + to label %26 unwind label %40 + +26: ; preds = %24 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %17, ptr noundef nonnull align 8 dereferenceable(32) %10) + to label %27 unwind label %44 + +27: ; preds = %26 + invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %16, ptr noundef %17) + to label %28 unwind label %48 + +28: ; preds = %27 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #9 + store i32 0, ptr %9, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #9 + %29 = load i32, ptr %9, align 4 + ret i32 %29 + +30: ; preds = %0 + %31 = landingpad { ptr, i32 } + cleanup + %32 = extractvalue { ptr, i32 } %31, 0 + store ptr %32, ptr %12, align 8 + %33 = extractvalue { ptr, i32 } %31, 1 + store i32 %33, ptr %13, align 4 + store ptr %11, ptr %5, align 8 + %34 = load ptr, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %34) #9 + br label %55 + +35: ; preds = %20 + %36 = landingpad { ptr, i32 } + cleanup + %37 = extractvalue { ptr, i32 } %36, 0 + store ptr %37, ptr %12, align 8 + %38 = extractvalue { ptr, i32 } %36, 1 + store i32 %38, ptr %13, align 4 + store ptr %15, ptr %3, align 8 + %39 = load ptr, ptr %3, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %39) #9 + br label %54 + +40: ; preds = %24 + %41 = landingpad { ptr, i32 } + cleanup + %42 = extractvalue { ptr, i32 } %41, 0 + store ptr %42, ptr %12, align 8 + %43 = extractvalue { ptr, i32 } %41, 1 + store i32 %43, ptr %13, align 4 + br label %53 + +44: ; preds = %26 + %45 = landingpad { ptr, i32 } + cleanup + %46 = extractvalue { ptr, i32 } %45, 0 + store ptr %46, ptr %12, align 8 + %47 = extractvalue { ptr, i32 } %45, 1 + store i32 %47, ptr %13, align 4 + br label %52 + +48: ; preds = %27 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %12, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %13, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #9 + br label %52 + +52: ; preds = %48, %44 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #9 + br label %53 + +53: ; preds = %52, %40 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #9 + br label %54 + +54: ; preds = %53, %35 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #9 + br label %55 + +55: ; preds = %54, %30 + %56 = load ptr, ptr %12, align 8 + %57 = load i32, ptr %13, align 4 + %58 = insertvalue { ptr, i32 } poison, ptr %56, 0 + %59 = insertvalue { ptr, i32 } %58, i32 %57, 1 + resume { ptr, i32 } %59 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) unnamed_addr #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %11, i32 0, i32 0 + %13 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) + %14 = load ptr, ptr %6, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %12, ptr noundef %13, ptr noundef nonnull align 1 dereferenceable(1) %14) + %15 = load ptr, ptr %5, align 8 + %16 = icmp eq ptr %15, null + br i1 %16, label %17, label %23 + +17: ; preds = %3 + invoke void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.3) #10 + to label %18 unwind label %19 + +18: ; preds = %17 + unreachable + +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } + cleanup + %21 = extractvalue { ptr, i32 } %20, 0 + store ptr %21, ptr %7, align 8 + %22 = extractvalue { ptr, i32 } %20, 1 + store i32 %22, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %12) #9 + br label %32 + +23: ; preds = %3 + %24 = load ptr, ptr %5, align 8 + %25 = load ptr, ptr %5, align 8 + %26 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %25) + to label %27 unwind label %19 + +27: ; preds = %23 + %28 = getelementptr inbounds i8, ptr %24, i64 %26 + store ptr %28, ptr %9, align 8 + %29 = load ptr, ptr %5, align 8 + %30 = load ptr, ptr %9, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %29, ptr noundef %30) + to label %31 unwind label %19 + +31: ; preds = %27 + ret void + +32: ; preds = %19 + %33 = load ptr, ptr %7, align 8 + %34 = load i32, ptr %8, align 4 + %35 = insertvalue { ptr, i32 } poison, ptr %33, 0 + %36 = insertvalue { ptr, i32 } %35, i32 %34, 1 + resume { ptr, i32 } %36 +} + +declare i32 @__gxx_personality_v0(...) + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef, ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 + +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #6 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %0) #7 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call i64 @strlen(ptr noundef %3) #9 + ret i64 %4 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca i64, align 8 + %15 = alloca %struct._Guard, align 8 + %16 = alloca ptr, align 8 + %17 = alloca i32, align 4 + store ptr %0, ptr %11, align 8 + store ptr %1, ptr %12, align 8 + store ptr %2, ptr %13, align 8 + %18 = load ptr, ptr %11, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %13, align 8 + store ptr %19, ptr %8, align 8 + store ptr %20, ptr %9, align 8 + %21 = load ptr, ptr %8, align 8 + %22 = load ptr, ptr %9, align 8 + store ptr %8, ptr %4, align 8 + store ptr %21, ptr %5, align 8 + store ptr %22, ptr %6, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %5, align 8 + %25 = ptrtoint ptr %23 to i64 + %26 = ptrtoint ptr %24 to i64 + %27 = sub i64 %25, %26 + store i64 %27, ptr %14, align 8 + %28 = load i64, ptr %14, align 8 + %29 = icmp ugt i64 %28, 15 + br i1 %29, label %30, label %33 + +30: ; preds = %3 + %31 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef nonnull align 8 dereferenceable(8) %14, i64 noundef 0) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef %31) + %32 = load i64, ptr %14, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %32) + br label %40 + +33: ; preds = %3 + store ptr %18, ptr %7, align 8 + %34 = load ptr, ptr %7, align 8 + %35 = invoke noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %34) + to label %39 unwind label %36 + +36: ; preds = %33 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #11 + unreachable + +39: ; preds = %33 + br label %40 + +40: ; preds = %39, %30 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef %18) + %41 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %18) + to label %42 unwind label %48 + +42: ; preds = %40 + %43 = load ptr, ptr %12, align 8 + %44 = load ptr, ptr %13, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %41, ptr noundef %43, ptr noundef %44) #9 + %45 = getelementptr inbounds %struct._Guard, ptr %15, i32 0, i32 0 + store ptr null, ptr %45, align 8 + %46 = load i64, ptr %14, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %46) + to label %47 unwind label %48 + +47: ; preds = %42 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #9 + ret void + +48: ; preds = %42, %40 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %16, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %17, align 4 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #9 + br label %52 + +52: ; preds = %48 + %53 = load ptr, ptr %16, align 8 + %54 = load i32, ptr %17, align 4 + %55 = insertvalue { ptr, i32 } poison, ptr %53, 0 + %56 = insertvalue { ptr, i32 } %55, i32 %54, 1 + resume { ptr, i32 } %56 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #9 + ret void +} + +; Function Attrs: nounwind +declare i64 @strlen(ptr noundef) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #2 + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %struct._Guard, ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #1 + +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = icmp ne ptr %5, null + br i1 %6, label %7, label %11 + +7: ; preds = %1 + %8 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %9) + to label %10 unwind label %12 + +10: ; preds = %7 + br label %11 + +11: ; preds = %10, %1 + ret void + +12: ; preds = %7 + %13 = landingpad { ptr, i32 } + catch ptr null + %14 = extractvalue { ptr, i32 } %13, 0 + call void @__clang_call_terminate(ptr %14) #11 + unreachable +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #8 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #9 + call void @_ZSt9terminatev() #11 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +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 = { 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 #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 = { 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 = { 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 = { 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 #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 = { noinline noreturn 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 = { nounwind } +attributes #10 = { noreturn } +attributes #11 = { noreturn nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/overlapping-subproblems-property.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/overlapping-subproblems-property.ll new file mode 100644 index 000000000..13ff6862a --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/overlapping-subproblems-property.ll @@ -0,0 +1,128 @@ +; ModuleID = 'PE-benchmarks/overlapping-subproblems-property.cpp' +source_filename = "PE-benchmarks/overlapping-subproblems-property.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@lookup = dso_local global [100 x i32] zeroinitializer, align 16 +@_ZSt4cout = external global %"class.std::basic_ostream", align 8 +@.str = private unnamed_addr constant [21 x i8] c"Fibonacci number is \00", align 1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z11_initializev() #0 { + %1 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + br label %2 + +2: ; preds = %9, %0 + %3 = load i32, ptr %1, align 4 + %4 = icmp slt i32 %3, 100 + br i1 %4, label %5, label %12 + +5: ; preds = %2 + %6 = load i32, ptr %1, align 4 + %7 = sext i32 %6 to i64 + %8 = getelementptr inbounds [100 x i32], ptr @lookup, i64 0, i64 %7 + store i32 -1, ptr %8, align 4 + br label %9 + +9: ; preds = %5 + %10 = load i32, ptr %1, align 4 + %11 = add nsw i32 %10, 1 + store i32 %11, ptr %1, align 4 + br label %2, !llvm.loop !6 + +12: ; preds = %2 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z3fibi(i32 noundef %0) #1 { + %2 = alloca i32, align 4 + store i32 %0, ptr %2, align 4 + %3 = load i32, ptr %2, align 4 + %4 = sext i32 %3 to i64 + %5 = getelementptr inbounds [100 x i32], ptr @lookup, i64 0, i64 %4 + %6 = load i32, ptr %5, align 4 + %7 = icmp eq i32 %6, -1 + br i1 %7, label %8, label %28 + +8: ; preds = %1 + %9 = load i32, ptr %2, align 4 + %10 = icmp sle i32 %9, 1 + br i1 %10, label %11, label %16 + +11: ; preds = %8 + %12 = load i32, ptr %2, align 4 + %13 = load i32, ptr %2, align 4 + %14 = sext i32 %13 to i64 + %15 = getelementptr inbounds [100 x i32], ptr @lookup, i64 0, i64 %14 + store i32 %12, ptr %15, align 4 + br label %27 + +16: ; preds = %8 + %17 = load i32, ptr %2, align 4 + %18 = sub nsw i32 %17, 1 + %19 = call noundef i32 @_Z3fibi(i32 noundef %18) + %20 = load i32, ptr %2, align 4 + %21 = sub nsw i32 %20, 2 + %22 = call noundef i32 @_Z3fibi(i32 noundef %21) + %23 = add nsw i32 %19, %22 + %24 = load i32, ptr %2, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds [100 x i32], ptr @lookup, i64 0, i64 %25 + store i32 %23, ptr %26, align 4 + br label %27 + +27: ; preds = %16, %11 + br label %28 + +28: ; preds = %27, %1 + %29 = load i32, ptr %2, align 4 + %30 = sext i32 %29 to i64 + %31 = getelementptr inbounds [100 x i32], ptr @lookup, i64 0, i64 %30 + %32 = load i32, ptr %31, align 4 + ret i32 %32 +} + +; 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, ptr %1, align 4 + store i32 40, ptr %2, align 4 + call void @_Z11_initializev() + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %4 = load i32, ptr %2, align 4 + %5 = call noundef i32 @_Z3fibi(i32 noundef %4) + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %3, i32 noundef %5) + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 + +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 = { 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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/palindrome-partitioning.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/palindrome-partitioning.ll similarity index 54% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/palindrome-partitioning.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/palindrome-partitioning.ll index 3ec5028e5..8db6c0b6d 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/palindrome-partitioning.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/palindrome-partitioning.ll @@ -10,19 +10,19 @@ target triple = "x86_64-pc-linux-gnu" 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 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %5 = load i32, ptr %3, align 4 + %6 = load i32, ptr %4, align 4 %7 = icmp slt i32 %5, %6 br i1 %7, label %8, label %10 8: ; preds = %2 - %9 = load i32, i32* %3, align 4 + %9 = load i32, ptr %3, align 4 br label %12 10: ; preds = %2 - %11 = load i32, i32* %4, align 4 + %11 = load i32, ptr %4, align 4 br label %12 12: ; preds = %10, %8 @@ -31,10 +31,10 @@ define dso_local noundef i32 @_Z3minii(i32 noundef %0, i32 noundef %1) #0 { } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z13minPalPartionPc(i8* noundef %0) #0 { - %2 = alloca i8*, align 8 +define dso_local noundef i32 @_Z13minPalPartionPc(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 %3 = alloca i32, align 4 - %4 = alloca i8*, align 8 + %4 = alloca ptr, align 8 %5 = alloca i64, align 8 %6 = alloca i64, align 8 %7 = alloca i64, align 8 @@ -42,260 +42,260 @@ define dso_local noundef i32 @_Z13minPalPartionPc(i8* noundef %0) #0 { %9 = alloca i32, align 4 %10 = alloca i32, align 4 %11 = alloca i32, align 4 - store i8* %0, i8** %2, align 8 - %12 = load i8*, i8** %2, align 8 - %13 = call i64 @strlen(i8* noundef %12) #6 + store ptr %0, ptr %2, align 8 + %12 = load ptr, ptr %2, align 8 + %13 = call i64 @strlen(ptr noundef %12) #6 %14 = trunc i64 %13 to i32 - store i32 %14, i32* %3, align 4 - %15 = load i32, i32* %3, align 4 + store i32 %14, ptr %3, align 4 + %15 = load i32, ptr %3, align 4 %16 = zext i32 %15 to i64 - %17 = call i8* @llvm.stacksave() - store i8* %17, i8** %4, align 8 + %17 = call ptr @llvm.stacksave() + store ptr %17, ptr %4, align 8 %18 = alloca i32, i64 %16, align 16 - store i64 %16, i64* %5, align 8 - %19 = load i32, i32* %3, align 4 + store i64 %16, ptr %5, align 8 + %19 = load i32, ptr %3, align 4 %20 = zext i32 %19 to i64 - %21 = load i32, i32* %3, align 4 + %21 = load i32, ptr %3, align 4 %22 = zext i32 %21 to i64 %23 = mul nuw i64 %20, %22 %24 = alloca i8, i64 %23, align 16 - store i64 %20, i64* %6, align 8 - store i64 %22, i64* %7, align 8 - store i32 0, i32* %8, align 4 + store i64 %20, ptr %6, align 8 + store i64 %22, ptr %7, align 8 + store i32 0, ptr %8, align 4 br label %25 25: ; preds = %37, %1 - %26 = load i32, i32* %8, align 4 - %27 = load i32, i32* %3, align 4 + %26 = load i32, ptr %8, align 4 + %27 = load i32, ptr %3, align 4 %28 = icmp slt i32 %26, %27 br i1 %28, label %29, label %40 29: ; preds = %25 - %30 = load i32, i32* %8, align 4 + %30 = load i32, ptr %8, align 4 %31 = sext i32 %30 to i64 %32 = mul nsw i64 %31, %22 - %33 = getelementptr inbounds i8, i8* %24, i64 %32 - %34 = load i32, i32* %8, align 4 + %33 = getelementptr inbounds i8, ptr %24, i64 %32 + %34 = load i32, ptr %8, align 4 %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i8, i8* %33, i64 %35 - store i8 1, i8* %36, align 1 + %36 = getelementptr inbounds i8, ptr %33, i64 %35 + store i8 1, ptr %36, align 1 br label %37 37: ; preds = %29 - %38 = load i32, i32* %8, align 4 + %38 = load i32, ptr %8, align 4 %39 = add nsw i32 %38, 1 - store i32 %39, i32* %8, align 4 + store i32 %39, ptr %8, align 4 br label %25, !llvm.loop !6 40: ; preds = %25 - store i32 2, i32* %11, align 4 + store i32 2, ptr %11, align 4 br label %41 41: ; preds = %123, %40 - %42 = load i32, i32* %11, align 4 - %43 = load i32, i32* %3, align 4 + %42 = load i32, ptr %11, align 4 + %43 = load i32, ptr %3, align 4 %44 = icmp sle i32 %42, %43 br i1 %44, label %45, label %126 45: ; preds = %41 - store i32 0, i32* %8, align 4 + store i32 0, ptr %8, align 4 br label %46 46: ; preds = %119, %45 - %47 = load i32, i32* %8, align 4 - %48 = load i32, i32* %3, align 4 - %49 = load i32, i32* %11, align 4 + %47 = load i32, ptr %8, align 4 + %48 = load i32, ptr %3, align 4 + %49 = load i32, ptr %11, align 4 %50 = sub nsw i32 %48, %49 %51 = add nsw i32 %50, 1 %52 = icmp slt i32 %47, %51 br i1 %52, label %53, label %122 53: ; preds = %46 - %54 = load i32, i32* %8, align 4 - %55 = load i32, i32* %11, align 4 + %54 = load i32, ptr %8, align 4 + %55 = load i32, ptr %11, align 4 %56 = add nsw i32 %54, %55 %57 = sub nsw i32 %56, 1 - store i32 %57, i32* %9, align 4 - %58 = load i32, i32* %11, align 4 + store i32 %57, ptr %9, align 4 + %58 = load i32, ptr %11, align 4 %59 = icmp eq i32 %58, 2 br i1 %59, label %60, label %82 60: ; preds = %53 - %61 = load i8*, i8** %2, align 8 - %62 = load i32, i32* %8, align 4 + %61 = load ptr, ptr %2, align 8 + %62 = load i32, ptr %8, align 4 %63 = sext i32 %62 to i64 - %64 = getelementptr inbounds i8, i8* %61, i64 %63 - %65 = load i8, i8* %64, align 1 + %64 = getelementptr inbounds i8, ptr %61, i64 %63 + %65 = load i8, ptr %64, align 1 %66 = sext i8 %65 to i32 - %67 = load i8*, i8** %2, align 8 - %68 = load i32, i32* %9, align 4 + %67 = load ptr, ptr %2, align 8 + %68 = load i32, ptr %9, align 4 %69 = sext i32 %68 to i64 - %70 = getelementptr inbounds i8, i8* %67, i64 %69 - %71 = load i8, i8* %70, align 1 + %70 = getelementptr inbounds i8, ptr %67, i64 %69 + %71 = load i8, ptr %70, align 1 %72 = sext i8 %71 to i32 %73 = icmp eq i32 %66, %72 - %74 = load i32, i32* %8, align 4 + %74 = load i32, ptr %8, align 4 %75 = sext i32 %74 to i64 %76 = mul nsw i64 %75, %22 - %77 = getelementptr inbounds i8, i8* %24, i64 %76 - %78 = load i32, i32* %9, align 4 + %77 = getelementptr inbounds i8, ptr %24, i64 %76 + %78 = load i32, ptr %9, align 4 %79 = sext i32 %78 to i64 - %80 = getelementptr inbounds i8, i8* %77, i64 %79 + %80 = getelementptr inbounds i8, ptr %77, i64 %79 %81 = zext i1 %73 to i8 - store i8 %81, i8* %80, align 1 + store i8 %81, ptr %80, align 1 br label %118 82: ; preds = %53 - %83 = load i8*, i8** %2, align 8 - %84 = load i32, i32* %8, align 4 + %83 = load ptr, ptr %2, align 8 + %84 = load i32, ptr %8, align 4 %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i8, i8* %83, i64 %85 - %87 = load i8, i8* %86, align 1 + %86 = getelementptr inbounds i8, ptr %83, i64 %85 + %87 = load i8, ptr %86, align 1 %88 = sext i8 %87 to i32 - %89 = load i8*, i8** %2, align 8 - %90 = load i32, i32* %9, align 4 + %89 = load ptr, ptr %2, align 8 + %90 = load i32, ptr %9, align 4 %91 = sext i32 %90 to i64 - %92 = getelementptr inbounds i8, i8* %89, i64 %91 - %93 = load i8, i8* %92, align 1 + %92 = getelementptr inbounds i8, ptr %89, i64 %91 + %93 = load i8, ptr %92, align 1 %94 = sext i8 %93 to i32 %95 = icmp eq i32 %88, %94 br i1 %95, label %96, label %108 96: ; preds = %82 - %97 = load i32, i32* %8, align 4 + %97 = load i32, ptr %8, align 4 %98 = add nsw i32 %97, 1 %99 = sext i32 %98 to i64 %100 = mul nsw i64 %99, %22 - %101 = getelementptr inbounds i8, i8* %24, i64 %100 - %102 = load i32, i32* %9, align 4 + %101 = getelementptr inbounds i8, ptr %24, i64 %100 + %102 = load i32, ptr %9, align 4 %103 = sub nsw i32 %102, 1 %104 = sext i32 %103 to i64 - %105 = getelementptr inbounds i8, i8* %101, i64 %104 - %106 = load i8, i8* %105, align 1 + %105 = getelementptr inbounds i8, ptr %101, i64 %104 + %106 = load i8, ptr %105, align 1 %107 = trunc i8 %106 to i1 br label %108 108: ; preds = %96, %82 %109 = phi i1 [ false, %82 ], [ %107, %96 ] - %110 = load i32, i32* %8, align 4 + %110 = load i32, ptr %8, align 4 %111 = sext i32 %110 to i64 %112 = mul nsw i64 %111, %22 - %113 = getelementptr inbounds i8, i8* %24, i64 %112 - %114 = load i32, i32* %9, align 4 + %113 = getelementptr inbounds i8, ptr %24, i64 %112 + %114 = load i32, ptr %9, align 4 %115 = sext i32 %114 to i64 - %116 = getelementptr inbounds i8, i8* %113, i64 %115 + %116 = getelementptr inbounds i8, ptr %113, i64 %115 %117 = zext i1 %109 to i8 - store i8 %117, i8* %116, align 1 + store i8 %117, ptr %116, align 1 br label %118 118: ; preds = %108, %60 br label %119 119: ; preds = %118 - %120 = load i32, i32* %8, align 4 + %120 = load i32, ptr %8, align 4 %121 = add nsw i32 %120, 1 - store i32 %121, i32* %8, align 4 + store i32 %121, ptr %8, align 4 br label %46, !llvm.loop !8 122: ; preds = %46 br label %123 123: ; preds = %122 - %124 = load i32, i32* %11, align 4 + %124 = load i32, ptr %11, align 4 %125 = add nsw i32 %124, 1 - store i32 %125, i32* %11, align 4 + store i32 %125, ptr %11, align 4 br label %41, !llvm.loop !9 126: ; preds = %41 - store i32 0, i32* %8, align 4 + store i32 0, ptr %8, align 4 br label %127 127: ; preds = %192, %126 - %128 = load i32, i32* %8, align 4 - %129 = load i32, i32* %3, align 4 + %128 = load i32, ptr %8, align 4 + %129 = load i32, ptr %3, align 4 %130 = icmp slt i32 %128, %129 br i1 %130, label %131, label %195 131: ; preds = %127 %132 = mul nsw i64 0, %22 - %133 = getelementptr inbounds i8, i8* %24, i64 %132 - %134 = load i32, i32* %8, align 4 + %133 = getelementptr inbounds i8, ptr %24, i64 %132 + %134 = load i32, ptr %8, align 4 %135 = sext i32 %134 to i64 - %136 = getelementptr inbounds i8, i8* %133, i64 %135 - %137 = load i8, i8* %136, align 1 + %136 = getelementptr inbounds i8, ptr %133, i64 %135 + %137 = load i8, ptr %136, align 1 %138 = trunc i8 %137 to i1 %139 = zext i1 %138 to i32 %140 = icmp eq i32 %139, 1 br i1 %140, label %141, label %145 141: ; preds = %131 - %142 = load i32, i32* %8, align 4 + %142 = load i32, ptr %8, align 4 %143 = sext i32 %142 to i64 - %144 = getelementptr inbounds i32, i32* %18, i64 %143 - store i32 0, i32* %144, align 4 + %144 = getelementptr inbounds i32, ptr %18, i64 %143 + store i32 0, ptr %144, align 4 br label %191 145: ; preds = %131 - %146 = load i32, i32* %8, align 4 + %146 = load i32, ptr %8, align 4 %147 = sext i32 %146 to i64 - %148 = getelementptr inbounds i32, i32* %18, i64 %147 - store i32 2147483647, i32* %148, align 4 - store i32 0, i32* %9, align 4 + %148 = getelementptr inbounds i32, ptr %18, i64 %147 + store i32 2147483647, ptr %148, align 4 + store i32 0, ptr %9, align 4 br label %149 149: ; preds = %187, %145 - %150 = load i32, i32* %9, align 4 - %151 = load i32, i32* %8, align 4 + %150 = load i32, ptr %9, align 4 + %151 = load i32, ptr %8, align 4 %152 = icmp slt i32 %150, %151 br i1 %152, label %153, label %190 153: ; preds = %149 - %154 = load i32, i32* %9, align 4 + %154 = load i32, ptr %9, align 4 %155 = add nsw i32 %154, 1 %156 = sext i32 %155 to i64 %157 = mul nsw i64 %156, %22 - %158 = getelementptr inbounds i8, i8* %24, i64 %157 - %159 = load i32, i32* %8, align 4 + %158 = getelementptr inbounds i8, ptr %24, i64 %157 + %159 = load i32, ptr %8, align 4 %160 = sext i32 %159 to i64 - %161 = getelementptr inbounds i8, i8* %158, i64 %160 - %162 = load i8, i8* %161, align 1 + %161 = getelementptr inbounds i8, ptr %158, i64 %160 + %162 = load i8, ptr %161, align 1 %163 = trunc i8 %162 to i1 %164 = zext i1 %163 to i32 %165 = icmp eq i32 %164, 1 br i1 %165, label %166, label %186 166: ; preds = %153 - %167 = load i32, i32* %9, align 4 + %167 = load i32, ptr %9, align 4 %168 = sext i32 %167 to i64 - %169 = getelementptr inbounds i32, i32* %18, i64 %168 - %170 = load i32, i32* %169, align 4 + %169 = getelementptr inbounds i32, ptr %18, i64 %168 + %170 = load i32, ptr %169, align 4 %171 = add nsw i32 1, %170 - %172 = load i32, i32* %8, align 4 + %172 = load i32, ptr %8, align 4 %173 = sext i32 %172 to i64 - %174 = getelementptr inbounds i32, i32* %18, i64 %173 - %175 = load i32, i32* %174, align 4 + %174 = getelementptr inbounds i32, ptr %18, i64 %173 + %175 = load i32, ptr %174, align 4 %176 = icmp slt i32 %171, %175 br i1 %176, label %177, label %186 177: ; preds = %166 - %178 = load i32, i32* %9, align 4 + %178 = load i32, ptr %9, align 4 %179 = sext i32 %178 to i64 - %180 = getelementptr inbounds i32, i32* %18, i64 %179 - %181 = load i32, i32* %180, align 4 + %180 = getelementptr inbounds i32, ptr %18, i64 %179 + %181 = load i32, ptr %180, align 4 %182 = add nsw i32 1, %181 - %183 = load i32, i32* %8, align 4 + %183 = load i32, ptr %8, align 4 %184 = sext i32 %183 to i64 - %185 = getelementptr inbounds i32, i32* %18, i64 %184 - store i32 %182, i32* %185, align 4 + %185 = getelementptr inbounds i32, ptr %18, i64 %184 + store i32 %182, ptr %185, align 4 br label %186 186: ; preds = %177, %166, %153 br label %187 187: ; preds = %186 - %188 = load i32, i32* %9, align 4 + %188 = load i32, ptr %9, align 4 %189 = add nsw i32 %188, 1 - store i32 %189, i32* %9, align 4 + store i32 %189, ptr %9, align 4 br label %149, !llvm.loop !10 190: ; preds = %149 @@ -305,66 +305,65 @@ define dso_local noundef i32 @_Z13minPalPartionPc(i8* noundef %0) #0 { br label %192 192: ; preds = %191 - %193 = load i32, i32* %8, align 4 + %193 = load i32, ptr %8, align 4 %194 = add nsw i32 %193, 1 - store i32 %194, i32* %8, align 4 + store i32 %194, ptr %8, align 4 br label %127, !llvm.loop !11 195: ; preds = %127 - %196 = load i32, i32* %3, align 4 + %196 = load i32, ptr %3, align 4 %197 = sub nsw i32 %196, 1 %198 = sext i32 %197 to i64 - %199 = getelementptr inbounds i32, i32* %18, i64 %198 - %200 = load i32, i32* %199, align 4 - %201 = load i8*, i8** %4, align 8 - call void @llvm.stackrestore(i8* %201) + %199 = getelementptr inbounds i32, ptr %18, i64 %198 + %200 = load i32, ptr %199, align 4 + %201 = load ptr, ptr %4, align 8 + call void @llvm.stackrestore(ptr %201) ret i32 %200 } -; Function Attrs: nounwind readonly willreturn -declare i64 @strlen(i8* noundef) #1 +; Function Attrs: nounwind willreturn memory(read) +declare i64 @strlen(ptr noundef) #1 -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #2 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #2 -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #2 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #2 ; 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 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) + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %2, ptr align 1 @__const.main.str, i64 15, i1 false) + %3 = getelementptr inbounds [15 x i8], ptr %2, i64 0, i64 0 + %4 = call noundef i32 @_Z13minPalPartionPc(ptr noundef %3) + %5 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %4) ret i32 0 } -; 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 +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 -declare i32 @printf(i8* noundef, ...) #5 +declare i32 @printf(ptr noundef, ...) #5 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 #1 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-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 = { nocallback nofree nosync nounwind willreturn } 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 #4 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } 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 } +attributes #6 = { nounwind willreturn memory(read) } !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} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/partition-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/partition-problem.ll similarity index 53% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/partition-problem.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/partition-problem.ll index 2f7f9271a..eb39dd861 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/partition-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/partition-problem.ll @@ -8,311 +8,310 @@ target triple = "x86_64-pc-linux-gnu" @.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: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z12findPartiionPii(i32* noundef %0, i32 noundef %1) #0 { +define dso_local noundef zeroext i1 @_Z12findPartiionPii(ptr noundef %0, i32 noundef %1) #0 { %3 = alloca i1, align 1 - %4 = alloca i32*, align 8 + %4 = alloca ptr, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 %7 = alloca i32, align 4 %8 = alloca i32, align 4 - %9 = alloca i8*, align 8 + %9 = alloca ptr, align 8 %10 = alloca i64, align 8 %11 = alloca i64, align 8 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 0, i32* %6, align 4 - store i32 0, i32* %7, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 0, ptr %6, align 4 + store i32 0, ptr %7, align 4 br label %12 12: ; preds = %24, %2 - %13 = load i32, i32* %7, align 4 - %14 = load i32, i32* %5, align 4 + %13 = load i32, ptr %7, align 4 + %14 = load i32, ptr %5, align 4 %15 = icmp slt i32 %13, %14 br i1 %15, label %16, label %27 16: ; preds = %12 - %17 = load i32*, i32** %4, align 8 - %18 = load i32, i32* %7, align 4 + %17 = load ptr, ptr %4, align 8 + %18 = load i32, ptr %7, align 4 %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds i32, i32* %17, i64 %19 - %21 = load i32, i32* %20, align 4 - %22 = load i32, i32* %6, align 4 + %20 = getelementptr inbounds i32, ptr %17, i64 %19 + %21 = load i32, ptr %20, align 4 + %22 = load i32, ptr %6, align 4 %23 = add nsw i32 %22, %21 - store i32 %23, i32* %6, align 4 + store i32 %23, ptr %6, align 4 br label %24 24: ; preds = %16 - %25 = load i32, i32* %7, align 4 + %25 = load i32, ptr %7, align 4 %26 = add nsw i32 %25, 1 - store i32 %26, i32* %7, align 4 + store i32 %26, ptr %7, align 4 br label %12, !llvm.loop !6 27: ; preds = %12 - %28 = load i32, i32* %6, align 4 + %28 = load i32, ptr %6, align 4 %29 = srem i32 %28, 2 %30 = icmp ne i32 %29, 0 br i1 %30, label %31, label %32 31: ; preds = %27 - store i1 false, i1* %3, align 1 + store i1 false, ptr %3, align 1 br label %167 32: ; preds = %27 - %33 = load i32, i32* %6, align 4 + %33 = load i32, ptr %6, align 4 %34 = sdiv i32 %33, 2 %35 = add nsw i32 %34, 1 %36 = zext i32 %35 to i64 - %37 = load i32, i32* %5, align 4 + %37 = load i32, ptr %5, align 4 %38 = add nsw i32 %37, 1 %39 = zext i32 %38 to i64 - %40 = call i8* @llvm.stacksave() - store i8* %40, i8** %9, align 8 + %40 = call ptr @llvm.stacksave() + store ptr %40, ptr %9, align 8 %41 = mul nuw i64 %36, %39 %42 = alloca i8, i64 %41, align 16 - store i64 %36, i64* %10, align 8 - store i64 %39, i64* %11, align 8 - store i32 0, i32* %7, align 4 + store i64 %36, ptr %10, align 8 + store i64 %39, ptr %11, align 8 + store i32 0, ptr %7, align 4 br label %43 43: ; preds = %53, %32 - %44 = load i32, i32* %7, align 4 - %45 = load i32, i32* %5, align 4 + %44 = load i32, ptr %7, align 4 + %45 = load i32, ptr %5, align 4 %46 = icmp sle i32 %44, %45 br i1 %46, label %47, label %56 47: ; preds = %43 %48 = mul nsw i64 0, %39 - %49 = getelementptr inbounds i8, i8* %42, i64 %48 - %50 = load i32, i32* %7, align 4 + %49 = getelementptr inbounds i8, ptr %42, i64 %48 + %50 = load i32, ptr %7, align 4 %51 = sext i32 %50 to i64 - %52 = getelementptr inbounds i8, i8* %49, i64 %51 - store i8 1, i8* %52, align 1 + %52 = getelementptr inbounds i8, ptr %49, i64 %51 + store i8 1, ptr %52, align 1 br label %53 53: ; preds = %47 - %54 = load i32, i32* %7, align 4 + %54 = load i32, ptr %7, align 4 %55 = add nsw i32 %54, 1 - store i32 %55, i32* %7, align 4 + store i32 %55, ptr %7, align 4 br label %43, !llvm.loop !8 56: ; preds = %43 - store i32 1, i32* %7, align 4 + store i32 1, ptr %7, align 4 br label %57 57: ; preds = %68, %56 - %58 = load i32, i32* %7, align 4 - %59 = load i32, i32* %6, align 4 + %58 = load i32, ptr %7, align 4 + %59 = load i32, ptr %6, align 4 %60 = sdiv i32 %59, 2 %61 = icmp sle i32 %58, %60 br i1 %61, label %62, label %71 62: ; preds = %57 - %63 = load i32, i32* %7, align 4 + %63 = load i32, ptr %7, align 4 %64 = sext i32 %63 to i64 %65 = mul nsw i64 %64, %39 - %66 = getelementptr inbounds i8, i8* %42, i64 %65 - %67 = getelementptr inbounds i8, i8* %66, i64 0 - store i8 0, i8* %67, align 1 + %66 = getelementptr inbounds i8, ptr %42, i64 %65 + %67 = getelementptr inbounds i8, ptr %66, i64 0 + store i8 0, ptr %67, align 1 br label %68 68: ; preds = %62 - %69 = load i32, i32* %7, align 4 + %69 = load i32, ptr %7, align 4 %70 = add nsw i32 %69, 1 - store i32 %70, i32* %7, align 4 + store i32 %70, ptr %7, align 4 br label %57, !llvm.loop !9 71: ; preds = %57 - store i32 1, i32* %7, align 4 + store i32 1, ptr %7, align 4 br label %72 72: ; preds = %152, %71 - %73 = load i32, i32* %7, align 4 - %74 = load i32, i32* %6, align 4 + %73 = load i32, ptr %7, align 4 + %74 = load i32, ptr %6, align 4 %75 = sdiv i32 %74, 2 %76 = icmp sle i32 %73, %75 br i1 %76, label %77, label %155 77: ; preds = %72 - store i32 1, i32* %8, align 4 + store i32 1, ptr %8, align 4 br label %78 78: ; preds = %148, %77 - %79 = load i32, i32* %8, align 4 - %80 = load i32, i32* %5, align 4 + %79 = load i32, ptr %8, align 4 + %80 = load i32, ptr %5, align 4 %81 = icmp sle i32 %79, %80 br i1 %81, label %82, label %151 82: ; preds = %78 - %83 = load i32, i32* %7, align 4 + %83 = load i32, ptr %7, align 4 %84 = sext i32 %83 to i64 %85 = mul nsw i64 %84, %39 - %86 = getelementptr inbounds i8, i8* %42, i64 %85 - %87 = load i32, i32* %8, align 4 + %86 = getelementptr inbounds i8, ptr %42, i64 %85 + %87 = load i32, ptr %8, align 4 %88 = sub nsw i32 %87, 1 %89 = sext i32 %88 to i64 - %90 = getelementptr inbounds i8, i8* %86, i64 %89 - %91 = load i8, i8* %90, align 1 + %90 = getelementptr inbounds i8, ptr %86, i64 %89 + %91 = load i8, ptr %90, align 1 %92 = trunc i8 %91 to i1 - %93 = load i32, i32* %7, align 4 + %93 = load i32, ptr %7, align 4 %94 = sext i32 %93 to i64 %95 = mul nsw i64 %94, %39 - %96 = getelementptr inbounds i8, i8* %42, i64 %95 - %97 = load i32, i32* %8, align 4 + %96 = getelementptr inbounds i8, ptr %42, i64 %95 + %97 = load i32, ptr %8, align 4 %98 = sext i32 %97 to i64 - %99 = getelementptr inbounds i8, i8* %96, i64 %98 + %99 = getelementptr inbounds i8, ptr %96, i64 %98 %100 = zext i1 %92 to i8 - store i8 %100, i8* %99, align 1 - %101 = load i32, i32* %7, align 4 - %102 = load i32*, i32** %4, align 8 - %103 = load i32, i32* %8, align 4 + store i8 %100, ptr %99, align 1 + %101 = load i32, ptr %7, align 4 + %102 = load ptr, ptr %4, align 8 + %103 = load i32, ptr %8, align 4 %104 = sub nsw i32 %103, 1 %105 = sext i32 %104 to i64 - %106 = getelementptr inbounds i32, i32* %102, i64 %105 - %107 = load i32, i32* %106, align 4 + %106 = getelementptr inbounds i32, ptr %102, i64 %105 + %107 = load i32, ptr %106, align 4 %108 = icmp sge i32 %101, %107 br i1 %108, label %109, label %147 109: ; preds = %82 - %110 = load i32, i32* %7, align 4 + %110 = load i32, ptr %7, align 4 %111 = sext i32 %110 to i64 %112 = mul nsw i64 %111, %39 - %113 = getelementptr inbounds i8, i8* %42, i64 %112 - %114 = load i32, i32* %8, align 4 + %113 = getelementptr inbounds i8, ptr %42, i64 %112 + %114 = load i32, ptr %8, align 4 %115 = sext i32 %114 to i64 - %116 = getelementptr inbounds i8, i8* %113, i64 %115 - %117 = load i8, i8* %116, align 1 + %116 = getelementptr inbounds i8, ptr %113, i64 %115 + %117 = load i8, ptr %116, align 1 %118 = trunc i8 %117 to i1 br i1 %118, label %137, label %119 119: ; preds = %109 - %120 = load i32, i32* %7, align 4 - %121 = load i32*, i32** %4, align 8 - %122 = load i32, i32* %8, align 4 + %120 = load i32, ptr %7, align 4 + %121 = load ptr, ptr %4, align 8 + %122 = load i32, ptr %8, align 4 %123 = sub nsw i32 %122, 1 %124 = sext i32 %123 to i64 - %125 = getelementptr inbounds i32, i32* %121, i64 %124 - %126 = load i32, i32* %125, align 4 + %125 = getelementptr inbounds i32, ptr %121, i64 %124 + %126 = load i32, ptr %125, align 4 %127 = sub nsw i32 %120, %126 %128 = sext i32 %127 to i64 %129 = mul nsw i64 %128, %39 - %130 = getelementptr inbounds i8, i8* %42, i64 %129 - %131 = load i32, i32* %8, align 4 + %130 = getelementptr inbounds i8, ptr %42, i64 %129 + %131 = load i32, ptr %8, align 4 %132 = sub nsw i32 %131, 1 %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds i8, i8* %130, i64 %133 - %135 = load i8, i8* %134, align 1 + %134 = getelementptr inbounds i8, ptr %130, i64 %133 + %135 = load i8, ptr %134, align 1 %136 = trunc i8 %135 to i1 br label %137 137: ; preds = %119, %109 %138 = phi i1 [ true, %109 ], [ %136, %119 ] - %139 = load i32, i32* %7, align 4 + %139 = load i32, ptr %7, align 4 %140 = sext i32 %139 to i64 %141 = mul nsw i64 %140, %39 - %142 = getelementptr inbounds i8, i8* %42, i64 %141 - %143 = load i32, i32* %8, align 4 + %142 = getelementptr inbounds i8, ptr %42, i64 %141 + %143 = load i32, ptr %8, align 4 %144 = sext i32 %143 to i64 - %145 = getelementptr inbounds i8, i8* %142, i64 %144 + %145 = getelementptr inbounds i8, ptr %142, i64 %144 %146 = zext i1 %138 to i8 - store i8 %146, i8* %145, align 1 + store i8 %146, ptr %145, align 1 br label %147 147: ; preds = %137, %82 br label %148 148: ; preds = %147 - %149 = load i32, i32* %8, align 4 + %149 = load i32, ptr %8, align 4 %150 = add nsw i32 %149, 1 - store i32 %150, i32* %8, align 4 + store i32 %150, ptr %8, align 4 br label %78, !llvm.loop !10 151: ; preds = %78 br label %152 152: ; preds = %151 - %153 = load i32, i32* %7, align 4 + %153 = load i32, ptr %7, align 4 %154 = add nsw i32 %153, 1 - store i32 %154, i32* %7, align 4 + store i32 %154, ptr %7, align 4 br label %72, !llvm.loop !11 155: ; preds = %72 - %156 = load i32, i32* %6, align 4 + %156 = load i32, ptr %6, align 4 %157 = sdiv i32 %156, 2 %158 = sext i32 %157 to i64 %159 = mul nsw i64 %158, %39 - %160 = getelementptr inbounds i8, i8* %42, i64 %159 - %161 = load i32, i32* %5, align 4 + %160 = getelementptr inbounds i8, ptr %42, i64 %159 + %161 = load i32, ptr %5, align 4 %162 = sext i32 %161 to i64 - %163 = getelementptr inbounds i8, i8* %160, i64 %162 - %164 = load i8, i8* %163, align 1 + %163 = getelementptr inbounds i8, ptr %160, i64 %162 + %164 = load i8, ptr %163, align 1 %165 = trunc i8 %164 to i1 - store i1 %165, i1* %3, align 1 - %166 = load i8*, i8** %9, align 8 - call void @llvm.stackrestore(i8* %166) + store i1 %165, ptr %3, align 1 + %166 = load ptr, ptr %9, align 8 + call void @llvm.stackrestore(ptr %166) br label %167 167: ; preds = %155, %31 - %168 = load i1, i1* %3, align 1 + %168 = load i1, ptr %3, align 1 ret i1 %168 } -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 ; 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 - store i32 0, i32* %1, align 4 - %4 = bitcast [6 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([6 x i32]* @__const.main.arr to i8*), i64 24, i1 false) - store i32 6, i32* %3, align 4 - %5 = getelementptr inbounds [6 x i32], [6 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = call 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* 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* noundef getelementptr inbounds ([49 x i8], [49 x i8]* @.str.1, i64 0, i64 0)) - br label %14 - -14: ; preds = %12, %10 - %15 = call i32 @getchar() + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 24, i1 false) + store i32 6, ptr %3, align 4 + %4 = getelementptr inbounds [6 x i32], ptr %2, i64 0, i64 0 + %5 = load i32, ptr %3, align 4 + %6 = call noundef zeroext i1 @_Z12findPartiionPii(ptr noundef %4, i32 noundef %5) + %7 = zext i1 %6 to i32 + %8 = icmp eq i32 %7, 1 + br i1 %8, label %9, label %11 + +9: ; preds = %0 + %10 = call i32 (ptr, ...) @printf(ptr noundef @.str) + br label %13 + +11: ; preds = %0 + %12 = call i32 (ptr, ...) @printf(ptr noundef @.str.1) + br label %13 + +13: ; preds = %11, %9 + %14 = call i32 @getchar() ret i32 0 } -; 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: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 -declare i32 @printf(i8* noundef, ...) #4 +declare i32 @printf(ptr noundef, ...) #4 declare i32 @getchar() #4 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 #1 = { nocallback nofree nosync nounwind willreturn } 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 #3 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } 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, !1, !2, !3, !4} !llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{i32 7, !"PIC Level", i32 2} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/permutations-of-a-given-string.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/permutations-of-a-given-string.ll new file mode 100644 index 000000000..52c882748 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/permutations-of-a-given-string.ll @@ -0,0 +1,547 @@ +; ModuleID = 'PE-benchmarks/permutations-of-a-given-string.cpp' +source_filename = "PE-benchmarks/permutations-of-a-given-string.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } +%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } +%union.anon = type { i64, [8 x i8] } +%"class.std::allocator" = type { i8 } +%"struct.std::forward_iterator_tag" = type { i8 } +%struct._Guard = type { ptr } + +$_ZSt4swapIcENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_ = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any + +$_ZNSt15__new_allocatorIcED2Ev = comdat any + +$_ZNSt11char_traitsIcE6lengthEPKc = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any + +$__clang_call_terminate = comdat any + +@_ZSt4cout = external global %"class.std::basic_ostream", align 8 +@.str = private unnamed_addr constant [4 x i8] c"ABC\00", align 1 +@.str.1 = private unnamed_addr constant [50 x i8] c"basic_string: construction from null is not valid\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 personality ptr @__gxx_personality_v0 { + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca %"class.std::__cxx11::basic_string", align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + store i32 %1, ptr %4, align 4 + store i32 %2, ptr %5, align 4 + %10 = load i32, ptr %4, align 4 + %11 = load i32, ptr %5, align 4 + %12 = icmp eq i32 %10, %11 + br i1 %12, label %13, label %16 + +13: ; preds = %3 + %14 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKNSt7__cxx1112basic_stringIS4_S5_T1_EE(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef nonnull align 8 dereferenceable(32) %0) + %15 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %14, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %47 + +16: ; preds = %3 + %17 = load i32, ptr %4, align 4 + store i32 %17, ptr %6, align 4 + br label %18 + +18: ; preds = %39, %16 + %19 = load i32, ptr %6, align 4 + %20 = load i32, ptr %5, align 4 + %21 = icmp sle i32 %19, %20 + br i1 %21, label %22, label %46 + +22: ; preds = %18 + %23 = load i32, ptr %4, align 4 + %24 = sext i32 %23 to i64 + %25 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %24) + %26 = load i32, ptr %6, align 4 + %27 = sext i32 %26 to i64 + %28 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr 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_(ptr noundef nonnull align 1 dereferenceable(1) %25, ptr noundef nonnull align 1 dereferenceable(1) %28) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %7, ptr noundef nonnull align 8 dereferenceable(32) %0) + %29 = load i32, ptr %4, align 4 + %30 = add nsw i32 %29, 1 + %31 = load i32, ptr %5, align 4 + invoke void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(ptr noundef %7, i32 noundef %30, i32 noundef %31) + to label %32 unwind label %42 + +32: ; preds = %22 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #9 + %33 = load i32, ptr %4, align 4 + %34 = sext i32 %33 to i64 + %35 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %34) + %36 = load i32, ptr %6, align 4 + %37 = sext i32 %36 to i64 + %38 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr 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_(ptr noundef nonnull align 1 dereferenceable(1) %35, ptr noundef nonnull align 1 dereferenceable(1) %38) #9 + br label %39 + +39: ; preds = %32 + %40 = load i32, ptr %6, align 4 + %41 = add nsw i32 %40, 1 + store i32 %41, ptr %6, align 4 + br label %18, !llvm.loop !6 + +42: ; preds = %22 + %43 = landingpad { ptr, i32 } + cleanup + %44 = extractvalue { ptr, i32 } %43, 0 + store ptr %44, ptr %8, align 8 + %45 = extractvalue { ptr, i32 } %43, 1 + store i32 %45, ptr %9, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #9 + br label %48 + +46: ; preds = %18 + br label %47 + +47: ; preds = %46, %13 + ret void + +48: ; preds = %42 + %49 = load ptr, ptr %8, align 8 + %50 = load i32, ptr %9, align 4 + %51 = insertvalue { ptr, i32 } poison, ptr %49, 0 + %52 = insertvalue { ptr, i32 } %51, i32 %50, 1 + resume { ptr, i32 } %52 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKNSt7__cxx1112basic_stringIS4_S5_T1_EE(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef nonnull align 8 dereferenceable(32)) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #1 + +; 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_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i8, align 1 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = load i8, ptr %6, align 1 + store i8 %7, ptr %5, align 1 + %8 = load ptr, ptr %4, align 8 + %9 = load i8, ptr %8, align 1 + %10 = load ptr, ptr %3, align 8 + store i8 %9, ptr %10, align 1 + %11 = load i8, ptr %5, align 1 + %12 = load ptr, ptr %4, align 8 + store i8 %11, ptr %12, align 1 + ret void +} + +declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #3 + +; Function Attrs: noinline norecurse uwtable +define dso_local noundef i32 @main() #4 personality ptr @__gxx_personality_v0 { + %1 = alloca ptr, align 8 + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca %"class.std::__cxx11::basic_string", align 8 + %7 = alloca %"class.std::allocator", align 1 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca %"class.std::__cxx11::basic_string", align 8 + store i32 0, ptr %5, align 4 + store ptr %7, ptr %4, align 8 + %12 = load ptr, ptr %4, align 8 + store ptr %12, ptr %1, align 8 + %13 = load ptr, ptr %1, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %6, ptr noundef @.str, ptr noundef nonnull align 1 dereferenceable(1) %7) + to label %14 unwind label %23 + +14: ; preds = %0 + store ptr %7, ptr %3, align 8 + %15 = load ptr, ptr %3, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %15) #9 + %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %6) #9 + %17 = trunc i64 %16 to i32 + store i32 %17, ptr %10, align 4 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef nonnull align 8 dereferenceable(32) %6) + to label %18 unwind label %28 + +18: ; preds = %14 + %19 = load i32, ptr %10, align 4 + %20 = sub nsw i32 %19, 1 + invoke void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(ptr noundef %11, i32 noundef 0, i32 noundef %20) + to label %21 unwind label %32 + +21: ; preds = %18 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #9 + store i32 0, ptr %5, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #9 + %22 = load i32, ptr %5, align 4 + ret i32 %22 + +23: ; preds = %0 + %24 = landingpad { ptr, i32 } + cleanup + %25 = extractvalue { ptr, i32 } %24, 0 + store ptr %25, ptr %8, align 8 + %26 = extractvalue { ptr, i32 } %24, 1 + store i32 %26, ptr %9, align 4 + store ptr %7, ptr %2, align 8 + %27 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %27) #9 + br label %37 + +28: ; preds = %14 + %29 = landingpad { ptr, i32 } + cleanup + %30 = extractvalue { ptr, i32 } %29, 0 + store ptr %30, ptr %8, align 8 + %31 = extractvalue { ptr, i32 } %29, 1 + store i32 %31, ptr %9, align 4 + br label %36 + +32: ; preds = %18 + %33 = landingpad { ptr, i32 } + cleanup + %34 = extractvalue { ptr, i32 } %33, 0 + store ptr %34, ptr %8, align 8 + %35 = extractvalue { ptr, i32 } %33, 1 + store i32 %35, ptr %9, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #9 + br label %36 + +36: ; preds = %32, %28 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #9 + br label %37 + +37: ; preds = %36, %23 + %38 = load ptr, ptr %8, align 8 + %39 = load i32, ptr %9, align 4 + %40 = insertvalue { ptr, i32 } poison, ptr %38, 0 + %41 = insertvalue { ptr, i32 } %40, i32 %39, 1 + resume { ptr, i32 } %41 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) unnamed_addr #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %11, i32 0, i32 0 + %13 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) + %14 = load ptr, ptr %6, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %12, ptr noundef %13, ptr noundef nonnull align 1 dereferenceable(1) %14) + %15 = load ptr, ptr %5, align 8 + %16 = icmp eq ptr %15, null + br i1 %16, label %17, label %23 + +17: ; preds = %3 + invoke void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.1) #10 + to label %18 unwind label %19 + +18: ; preds = %17 + unreachable + +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } + cleanup + %21 = extractvalue { ptr, i32 } %20, 0 + store ptr %21, ptr %7, align 8 + %22 = extractvalue { ptr, i32 } %20, 1 + store i32 %22, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %12) #9 + br label %32 + +23: ; preds = %3 + %24 = load ptr, ptr %5, align 8 + %25 = load ptr, ptr %5, align 8 + %26 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %25) + to label %27 unwind label %19 + +27: ; preds = %23 + %28 = getelementptr inbounds i8, ptr %24, i64 %26 + store ptr %28, ptr %9, align 8 + %29 = load ptr, ptr %5, align 8 + %30 = load ptr, ptr %9, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %29, ptr noundef %30) + to label %31 unwind label %19 + +31: ; preds = %27 + ret void + +32: ; preds = %19 + %33 = load ptr, ptr %7, align 8 + %34 = load i32, ptr %8, align 4 + %35 = insertvalue { ptr, i32 } poison, ptr %33, 0 + %36 = insertvalue { ptr, i32 } %35, i32 %34, 1 + resume { ptr, i32 } %36 +} + +; Function Attrs: nounwind +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32)) #3 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef, ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 + +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %0) #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call i64 @strlen(ptr noundef %3) #9 + ret i64 %4 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca i64, align 8 + %15 = alloca %struct._Guard, align 8 + %16 = alloca ptr, align 8 + %17 = alloca i32, align 4 + store ptr %0, ptr %11, align 8 + store ptr %1, ptr %12, align 8 + store ptr %2, ptr %13, align 8 + %18 = load ptr, ptr %11, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %13, align 8 + store ptr %19, ptr %8, align 8 + store ptr %20, ptr %9, align 8 + %21 = load ptr, ptr %8, align 8 + %22 = load ptr, ptr %9, align 8 + store ptr %8, ptr %4, align 8 + store ptr %21, ptr %5, align 8 + store ptr %22, ptr %6, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %5, align 8 + %25 = ptrtoint ptr %23 to i64 + %26 = ptrtoint ptr %24 to i64 + %27 = sub i64 %25, %26 + store i64 %27, ptr %14, align 8 + %28 = load i64, ptr %14, align 8 + %29 = icmp ugt i64 %28, 15 + br i1 %29, label %30, label %33 + +30: ; preds = %3 + %31 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef nonnull align 8 dereferenceable(8) %14, i64 noundef 0) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef %31) + %32 = load i64, ptr %14, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %32) + br label %40 + +33: ; preds = %3 + store ptr %18, ptr %7, align 8 + %34 = load ptr, ptr %7, align 8 + %35 = invoke noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %34) + to label %39 unwind label %36 + +36: ; preds = %33 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #11 + unreachable + +39: ; preds = %33 + br label %40 + +40: ; preds = %39, %30 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef %18) + %41 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %18) + to label %42 unwind label %48 + +42: ; preds = %40 + %43 = load ptr, ptr %12, align 8 + %44 = load ptr, ptr %13, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %41, ptr noundef %43, ptr noundef %44) #9 + %45 = getelementptr inbounds %struct._Guard, ptr %15, i32 0, i32 0 + store ptr null, ptr %45, align 8 + %46 = load i64, ptr %14, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %46) + to label %47 unwind label %48 + +47: ; preds = %42 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #9 + ret void + +48: ; preds = %42, %40 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %16, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %17, align 4 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #9 + br label %52 + +52: ; preds = %48 + %53 = load ptr, ptr %16, align 8 + %54 = load i32, ptr %17, align 4 + %55 = insertvalue { ptr, i32 } poison, ptr %53, 0 + %56 = insertvalue { ptr, i32 } %55, i32 %54, 1 + resume { ptr, i32 } %56 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #9 + ret void +} + +; Function Attrs: nounwind +declare i64 @strlen(ptr noundef) #3 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #1 + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %struct._Guard, ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #3 + +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = icmp ne ptr %5, null + br i1 %6, label %7, label %11 + +7: ; preds = %1 + %8 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %9) + to label %10 unwind label %12 + +10: ; preds = %7 + br label %11 + +11: ; preds = %10, %1 + ret void + +12: ; preds = %7 + %13 = landingpad { ptr, i32 } + catch ptr null + %14 = extractvalue { ptr, i32 } %13, 0 + call void @__clang_call_terminate(ptr %14) #11 + unreachable +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #8 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #9 + call void @_ZSt9terminatev() #11 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #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 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 = { 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 = { 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 = { 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 = { 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 #8 = { noinline noreturn 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 = { nounwind } +attributes #10 = { noreturn } +attributes #11 = { noreturn nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/program-for-nth-fibonacci-number.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/program-for-nth-fibonacci-number.ll similarity index 69% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/program-for-nth-fibonacci-number.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/program-for-nth-fibonacci-number.ll index c6054c021..9bd131e23 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/program-for-nth-fibonacci-number.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/program-for-nth-fibonacci-number.ll @@ -13,52 +13,52 @@ define dso_local noundef i32 @_Z3fibi(i32 noundef %0) #0 { %5 = alloca i32, align 4 %6 = alloca i32, align 4 %7 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 0, i32* %4, align 4 - store i32 1, i32* %5, align 4 - %8 = load i32, i32* %3, align 4 + store i32 %0, ptr %3, align 4 + store i32 0, ptr %4, align 4 + store i32 1, ptr %5, align 4 + %8 = load i32, ptr %3, align 4 %9 = icmp eq i32 %8, 0 br i1 %9, label %10, label %12 10: ; preds = %1 - %11 = load i32, i32* %4, align 4 - store i32 %11, i32* %2, align 4 + %11 = load i32, ptr %4, align 4 + store i32 %11, ptr %2, align 4 br label %28 12: ; preds = %1 - store i32 2, i32* %7, align 4 + store i32 2, ptr %7, align 4 br label %13 13: ; preds = %23, %12 - %14 = load i32, i32* %7, align 4 - %15 = load i32, i32* %3, align 4 + %14 = load i32, ptr %7, align 4 + %15 = load i32, ptr %3, align 4 %16 = icmp sle i32 %14, %15 br i1 %16, label %17, label %26 17: ; preds = %13 - %18 = load i32, i32* %4, align 4 - %19 = load i32, i32* %5, align 4 + %18 = load i32, ptr %4, align 4 + %19 = load i32, ptr %5, align 4 %20 = add nsw i32 %18, %19 - store i32 %20, i32* %6, align 4 - %21 = load i32, i32* %5, align 4 - store i32 %21, i32* %4, align 4 - %22 = load i32, i32* %6, align 4 - store i32 %22, i32* %5, align 4 + store i32 %20, ptr %6, align 4 + %21 = load i32, ptr %5, align 4 + store i32 %21, ptr %4, align 4 + %22 = load i32, ptr %6, align 4 + store i32 %22, ptr %5, align 4 br label %23 23: ; preds = %17 - %24 = load i32, i32* %7, align 4 + %24 = load i32, ptr %7, align 4 %25 = add nsw i32 %24, 1 - store i32 %25, i32* %7, align 4 + store i32 %25, ptr %7, align 4 br label %13, !llvm.loop !6 26: ; preds = %13 - %27 = load i32, i32* %5, align 4 - store i32 %27, i32* %2, align 4 + %27 = load i32, ptr %5, align 4 + store i32 %27, ptr %2, align 4 br label %28 28: ; preds = %26, %10 - %29 = load i32, i32* %2, align 4 + %29 = load i32, ptr %2, align 4 ret i32 %29 } @@ -66,16 +66,16 @@ define dso_local noundef i32 @_Z3fibi(i32 noundef %0) #0 { 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 + store i32 0, ptr %1, align 4 + store i32 9, ptr %2, align 4 + %3 = load i32, ptr %2, align 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) + %5 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %4) %6 = call i32 @getchar() ret i32 0 } -declare i32 @printf(i8* noundef, ...) #2 +declare i32 @printf(ptr noundef, ...) #2 declare i32 @getchar() #2 @@ -87,10 +87,10 @@ attributes #2 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{i32 7, !"PIC Level", i32 2} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/program-wish-womens-day.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/program-wish-womens-day.ll new file mode 100644 index 000000000..45784b621 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/program-wish-womens-day.ll @@ -0,0 +1,286 @@ +; ModuleID = 'PE-benchmarks/program-wish-womens-day.cpp' +source_filename = "PE-benchmarks/program-wish-womens-day.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +$_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_ = comdat any + +@_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 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #0 { + %1 = alloca i32, align 4 + %2 = alloca i32, align 4 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca float, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + store i32 5, ptr %2, align 4 + store i32 0, ptr %3, align 4 + br label %9 + +9: ; preds = %68, %0 + %10 = load i32, ptr %3, align 4 + %11 = load i32, ptr %2, align 4 + %12 = mul nsw i32 2, %11 + %13 = icmp sle i32 %10, %12 + br i1 %13, label %14, label %71 + +14: ; preds = %9 + store i32 0, ptr %4, align 4 + br label %15 + +15: ; preds = %56, %14 + %16 = load i32, ptr %4, align 4 + %17 = load i32, ptr %2, align 4 + %18 = mul nsw i32 2, %17 + %19 = icmp sle i32 %16, %18 + br i1 %19, label %20, label %59 + +20: ; preds = %15 + %21 = load i32, ptr %3, align 4 + %22 = load i32, ptr %2, align 4 + %23 = sub nsw i32 %21, %22 + %24 = load i32, ptr %3, align 4 + %25 = load i32, ptr %2, align 4 + %26 = sub nsw i32 %24, %25 + %27 = mul nsw i32 %23, %26 + %28 = load i32, ptr %4, align 4 + %29 = load i32, ptr %2, align 4 + %30 = sub nsw i32 %28, %29 + %31 = load i32, ptr %4, align 4 + %32 = load i32, ptr %2, align 4 + %33 = sub nsw i32 %31, %32 + %34 = mul nsw i32 %30, %33 + %35 = add nsw i32 %27, %34 + %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, ptr %5, align 4 + %38 = load float, ptr %5, align 4 + %39 = fpext float %38 to double + %40 = load i32, ptr %2, align 4 + %41 = sitofp i32 %40 to double + %42 = fsub double %41, 5.000000e-01 + %43 = fcmp ogt double %39, %42 + br i1 %43, label %44, label %53 + +44: ; preds = %20 + %45 = load float, ptr %5, align 4 + %46 = fpext float %45 to double + %47 = load i32, ptr %2, align 4 + %48 = sitofp i32 %47 to double + %49 = fadd double %48, 5.000000e-01 + %50 = fcmp olt double %46, %49 + br i1 %50, label %51, label %53 + +51: ; preds = %44 + %52 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %55 + +53: ; preds = %44, %20 + %54 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %55 + +55: ; preds = %53, %51 + br label %56 + +56: ; preds = %55 + %57 = load i32, ptr %4, align 4 + %58 = add nsw i32 %57, 1 + store i32 %58, ptr %4, align 4 + br label %15, !llvm.loop !6 + +59: ; preds = %15 + %60 = load i32, ptr %3, align 4 + %61 = load i32, ptr %2, align 4 + %62 = icmp eq i32 %60, %61 + br i1 %62, label %63, label %66 + +63: ; preds = %59 + %64 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + %65 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %64, ptr noundef @.str.2) + br label %66 + +66: ; preds = %63, %59 + %67 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %68 + +68: ; preds = %66 + %69 = load i32, ptr %3, align 4 + %70 = add nsw i32 %69, 1 + store i32 %70, ptr %3, align 4 + br label %9, !llvm.loop !8 + +71: ; preds = %9 + store i32 0, ptr %6, align 4 + br label %72 + +72: ; preds = %132, %71 + %73 = load i32, ptr %6, align 4 + %74 = load i32, ptr %2, align 4 + %75 = icmp sle i32 %73, %74 + br i1 %75, label %76, label %135 + +76: ; preds = %72 + %77 = load i32, ptr %6, align 4 + %78 = load i32, ptr %2, align 4 + %79 = sdiv i32 %78, 2 + %80 = add nsw i32 %79, 1 + %81 = icmp eq i32 %77, %80 + br i1 %81, label %82, label %111 + +82: ; preds = %76 + store i32 0, ptr %7, align 4 + br label %83 + +83: ; preds = %107, %82 + %84 = load i32, ptr %7, align 4 + %85 = load i32, ptr %2, align 4 + %86 = mul nsw i32 2, %85 + %87 = icmp sle i32 %84, %86 + br i1 %87, label %88, label %110 + +88: ; preds = %83 + %89 = load i32, ptr %7, align 4 + %90 = load i32, ptr %2, align 4 + %91 = load i32, ptr %2, align 4 + %92 = sdiv i32 %91, 2 + %93 = sub nsw i32 %90, %92 + %94 = icmp sge i32 %89, %93 + br i1 %94, label %95, label %104 + +95: ; preds = %88 + %96 = load i32, ptr %7, align 4 + %97 = load i32, ptr %2, align 4 + %98 = load i32, ptr %2, align 4 + %99 = sdiv i32 %98, 2 + %100 = add nsw i32 %97, %99 + %101 = icmp sle i32 %96, %100 + br i1 %101, label %102, label %104 + +102: ; preds = %95 + %103 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %106 + +104: ; preds = %95, %88 + %105 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %106 + +106: ; preds = %104, %102 + br label %107 + +107: ; preds = %106 + %108 = load i32, ptr %7, align 4 + %109 = add nsw i32 %108, 1 + store i32 %109, ptr %7, align 4 + br label %83, !llvm.loop !9 + +110: ; preds = %83 + br label %130 + +111: ; preds = %76 + store i32 0, ptr %8, align 4 + br label %112 + +112: ; preds = %126, %111 + %113 = load i32, ptr %8, align 4 + %114 = load i32, ptr %2, align 4 + %115 = mul nsw i32 2, %114 + %116 = icmp sle i32 %113, %115 + br i1 %116, label %117, label %129 + +117: ; preds = %112 + %118 = load i32, ptr %8, align 4 + %119 = load i32, ptr %2, align 4 + %120 = icmp eq i32 %118, %119 + br i1 %120, label %121, label %123 + +121: ; preds = %117 + %122 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %125 + +123: ; preds = %117 + %124 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %125 + +125: ; preds = %123, %121 + br label %126 + +126: ; preds = %125 + %127 = load i32, ptr %8, align 4 + %128 = add nsw i32 %127, 1 + store i32 %128, ptr %8, align 4 + br label %112, !llvm.loop !10 + +129: ; preds = %112 + br label %130 + +130: ; preds = %129, %110 + %131 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %132 + +132: ; preds = %130 + %133 = load i32, ptr %6, align 4 + %134 = add nsw i32 %133, 1 + store i32 %134, ptr %6, align 4 + br label %72, !llvm.loop !11 + +135: ; preds = %72 + %136 = load i32, ptr %1, align 4 + ret i32 %136 +} + +; 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) #1 comdat { + %2 = alloca i32, align 4 + store i32 %0, ptr %2, align 4 + %3 = load i32, ptr %2, align 4 + %4 = sitofp i32 %3 to double + %5 = call double @sqrt(double noundef %4) #4 + ret double %5 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #2 + +; Function Attrs: nounwind +declare double @sqrt(double noundef) #3 + +attributes #0 = { 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 #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 = { 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 = { nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/quicksort-for-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/quicksort-for-linked-list.ll new file mode 100644 index 000000000..74498a52d --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/quicksort-for-linked-list.ll @@ -0,0 +1,352 @@ +; ModuleID = 'PE-benchmarks/quicksort-for-linked-list.cpp' +source_filename = "PE-benchmarks/quicksort-for-linked-list.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Node = type { i32, ptr, ptr } + +@_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 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = load i32, ptr %6, align 4 + store i32 %7, ptr %5, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = load ptr, ptr %3, align 8 + store i32 %9, ptr %10, align 4 + %11 = load i32, ptr %5, align 4 + %12 = load ptr, ptr %4, align 8 + store i32 %11, ptr %12, align 4 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef ptr @_Z8lastNodeP4Node(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + br label %3 + +3: ; preds = %13, %1 + %4 = load ptr, ptr %2, align 8 + %5 = icmp ne ptr %4, null + br i1 %5, label %6, label %11 + +6: ; preds = %3 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %class.Node, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = icmp ne ptr %9, null + br label %11 + +11: ; preds = %6, %3 + %12 = phi i1 [ false, %3 ], [ %10, %6 ] + br i1 %12, label %13, label %17 + +13: ; preds = %11 + %14 = load ptr, ptr %2, align 8 + %15 = getelementptr inbounds %class.Node, ptr %14, i32 0, i32 1 + %16 = load ptr, ptr %15, align 8 + store ptr %16, ptr %2, align 8 + br label %3, !llvm.loop !6 + +17: ; preds = %11 + %18 = load ptr, ptr %2, align 8 + ret ptr %18 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef ptr @_Z9partitionP4NodeS0_(ptr noundef %0, ptr noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %class.Node, ptr %8, i32 0, i32 0 + %10 = load i32, ptr %9, align 8 + store i32 %10, ptr %5, align 4 + %11 = load ptr, ptr %3, align 8 + %12 = getelementptr inbounds %class.Node, ptr %11, i32 0, i32 2 + %13 = load ptr, ptr %12, align 8 + store ptr %13, ptr %6, align 8 + %14 = load ptr, ptr %3, align 8 + store ptr %14, ptr %7, align 8 + br label %15 + +15: ; preds = %41, %2 + %16 = load ptr, ptr %7, align 8 + %17 = load ptr, ptr %4, align 8 + %18 = icmp ne ptr %16, %17 + br i1 %18, label %19, label %45 + +19: ; preds = %15 + %20 = load ptr, ptr %7, align 8 + %21 = getelementptr inbounds %class.Node, ptr %20, i32 0, i32 0 + %22 = load i32, ptr %21, align 8 + %23 = load i32, ptr %5, align 4 + %24 = icmp sle i32 %22, %23 + br i1 %24, label %25, label %40 + +25: ; preds = %19 + %26 = load ptr, ptr %6, align 8 + %27 = icmp eq ptr %26, null + br i1 %27, label %28, label %30 + +28: ; preds = %25 + %29 = load ptr, ptr %3, align 8 + br label %34 + +30: ; preds = %25 + %31 = load ptr, ptr %6, align 8 + %32 = getelementptr inbounds %class.Node, ptr %31, i32 0, i32 1 + %33 = load ptr, ptr %32, align 8 + br label %34 + +34: ; preds = %30, %28 + %35 = phi ptr [ %29, %28 ], [ %33, %30 ] + store ptr %35, ptr %6, align 8 + %36 = load ptr, ptr %6, align 8 + %37 = getelementptr inbounds %class.Node, ptr %36, i32 0, i32 0 + %38 = load ptr, ptr %7, align 8 + %39 = getelementptr inbounds %class.Node, ptr %38, i32 0, i32 0 + call void @_Z4swapPiS_(ptr noundef %37, ptr noundef %39) + br label %40 + +40: ; preds = %34, %19 + br label %41 + +41: ; preds = %40 + %42 = load ptr, ptr %7, align 8 + %43 = getelementptr inbounds %class.Node, ptr %42, i32 0, i32 1 + %44 = load ptr, ptr %43, align 8 + store ptr %44, ptr %7, align 8 + br label %15, !llvm.loop !8 + +45: ; preds = %15 + %46 = load ptr, ptr %6, align 8 + %47 = icmp eq ptr %46, null + br i1 %47, label %48, label %50 + +48: ; preds = %45 + %49 = load ptr, ptr %3, align 8 + br label %54 + +50: ; preds = %45 + %51 = load ptr, ptr %6, align 8 + %52 = getelementptr inbounds %class.Node, ptr %51, i32 0, i32 1 + %53 = load ptr, ptr %52, align 8 + br label %54 + +54: ; preds = %50, %48 + %55 = phi ptr [ %49, %48 ], [ %53, %50 ] + store ptr %55, ptr %6, align 8 + %56 = load ptr, ptr %6, align 8 + %57 = getelementptr inbounds %class.Node, ptr %56, i32 0, i32 0 + %58 = load ptr, ptr %4, align 8 + %59 = getelementptr inbounds %class.Node, ptr %58, i32 0, i32 0 + call void @_Z4swapPiS_(ptr noundef %57, ptr noundef %59) + %60 = load ptr, ptr %6, align 8 + ret ptr %60 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10_quickSortP4NodeS0_(ptr noundef %0, ptr noundef %1) #1 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = icmp ne ptr %6, null + br i1 %7, label %8, label %30 + +8: ; preds = %2 + %9 = load ptr, ptr %3, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ne ptr %9, %10 + br i1 %11, label %12, label %30 + +12: ; preds = %8 + %13 = load ptr, ptr %3, align 8 + %14 = load ptr, ptr %4, align 8 + %15 = getelementptr inbounds %class.Node, ptr %14, i32 0, i32 1 + %16 = load ptr, ptr %15, align 8 + %17 = icmp ne ptr %13, %16 + br i1 %17, label %18, label %30 + +18: ; preds = %12 + %19 = load ptr, ptr %3, align 8 + %20 = load ptr, ptr %4, align 8 + %21 = call noundef ptr @_Z9partitionP4NodeS0_(ptr noundef %19, ptr noundef %20) + store ptr %21, ptr %5, align 8 + %22 = load ptr, ptr %3, align 8 + %23 = load ptr, ptr %5, align 8 + %24 = getelementptr inbounds %class.Node, ptr %23, i32 0, i32 2 + %25 = load ptr, ptr %24, align 8 + call void @_Z10_quickSortP4NodeS0_(ptr noundef %22, ptr noundef %25) + %26 = load ptr, ptr %5, align 8 + %27 = getelementptr inbounds %class.Node, ptr %26, i32 0, i32 1 + %28 = load ptr, ptr %27, align 8 + %29 = load ptr, ptr %4, align 8 + call void @_Z10_quickSortP4NodeS0_(ptr noundef %28, ptr noundef %29) + br label %30 + +30: ; preds = %18, %12, %8, %2 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9quickSortP4Node(ptr noundef %0) #1 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + %5 = call noundef ptr @_Z8lastNodeP4Node(ptr noundef %4) + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %2, align 8 + %7 = load ptr, ptr %3, align 8 + call void @_Z10_quickSortP4NodeS0_(ptr noundef %6, ptr noundef %7) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9printListP4Node(ptr noundef %0) #1 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + br label %3 + +3: ; preds = %6, %1 + %4 = load ptr, ptr %2, align 8 + %5 = icmp ne ptr %4, null + br i1 %5, label %6, label %15 + +6: ; preds = %3 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %class.Node, ptr %7, i32 0, i32 0 + %9 = load i32, ptr %8, align 8 + %10 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %9) + %11 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef @.str) + %12 = load ptr, ptr %2, align 8 + %13 = getelementptr inbounds %class.Node, ptr %12, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %14, ptr %2, align 8 + br label %3, !llvm.loop !9 + +15: ; preds = %3 + %16 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #2 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z4pushPP4Nodei(ptr noundef %0, i32 noundef %1) #1 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %6 = call noalias noundef nonnull ptr @_Znwm(i64 noundef 24) #5 + store ptr %6, ptr %5, align 8 + %7 = load i32, ptr %4, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = getelementptr inbounds %class.Node, ptr %8, i32 0, i32 0 + store i32 %7, ptr %9, align 8 + %10 = load ptr, ptr %5, align 8 + %11 = getelementptr inbounds %class.Node, ptr %10, i32 0, i32 2 + store ptr null, ptr %11, align 8 + %12 = load ptr, ptr %3, align 8 + %13 = load ptr, ptr %12, align 8 + %14 = load ptr, ptr %5, align 8 + %15 = getelementptr inbounds %class.Node, ptr %14, i32 0, i32 1 + store ptr %13, ptr %15, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load ptr, ptr %16, align 8 + %18 = icmp ne ptr %17, null + br i1 %18, label %19, label %24 + +19: ; preds = %2 + %20 = load ptr, ptr %5, align 8 + %21 = load ptr, ptr %3, align 8 + %22 = load ptr, ptr %21, align 8 + %23 = getelementptr inbounds %class.Node, ptr %22, i32 0, i32 2 + store ptr %20, ptr %23, align 8 + br label %24 + +24: ; preds = %19, %2 + %25 = load ptr, ptr %5, align 8 + %26 = load ptr, ptr %3, align 8 + store ptr %25, ptr %26, align 8 + ret void +} + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #3 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { + %1 = alloca i32, align 4 + %2 = alloca ptr, align 8 + store i32 0, ptr %1, align 4 + store ptr null, ptr %2, align 8 + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 5) + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 20) + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 4) + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 3) + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 30) + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + %4 = load ptr, ptr %2, align 8 + call void @_Z9printListP4Node(ptr noundef %4) + %5 = load ptr, ptr %2, align 8 + call void @_Z9quickSortP4Node(ptr noundef %5) + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + %7 = load ptr, ptr %2, align 8 + call void @_Z9printListP4Node(ptr noundef %7) + ret i32 0 +} + +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 = { 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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/quicksort-on-singly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/quicksort-on-singly-linked-list.ll new file mode 100644 index 000000000..83ced4d94 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/quicksort-on-singly-linked-list.ll @@ -0,0 +1,378 @@ +; ModuleID = 'PE-benchmarks/quicksort-on-singly-linked-list.cpp' +source_filename = "PE-benchmarks/quicksort-on-singly-linked-list.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%struct.Node = type { i32, ptr } + +@.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 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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z4pushPP4Nodei(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %6 = call noalias noundef nonnull ptr @_Znwm(i64 noundef 16) #5 + store ptr %6, ptr %5, align 8 + %7 = load i32, ptr %4, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = getelementptr inbounds %struct.Node, ptr %8, i32 0, i32 0 + store i32 %7, ptr %9, align 8 + %10 = load ptr, ptr %3, align 8 + %11 = load ptr, ptr %10, align 8 + %12 = load ptr, ptr %5, align 8 + %13 = getelementptr inbounds %struct.Node, ptr %12, i32 0, i32 1 + store ptr %11, ptr %13, align 8 + %14 = load ptr, ptr %5, align 8 + %15 = load ptr, ptr %3, align 8 + store ptr %14, ptr %15, align 8 + ret void +} + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9printListP4Node(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + br label %3 + +3: ; preds = %6, %1 + %4 = load ptr, ptr %2, align 8 + %5 = icmp ne ptr %4, null + br i1 %5, label %6, label %14 + +6: ; preds = %3 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %struct.Node, ptr %7, i32 0, i32 0 + %9 = load i32, ptr %8, align 8 + %10 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %9) + %11 = load ptr, ptr %2, align 8 + %12 = getelementptr inbounds %struct.Node, ptr %11, i32 0, i32 1 + %13 = load ptr, ptr %12, align 8 + store ptr %13, ptr %2, align 8 + br label %3, !llvm.loop !6 + +14: ; preds = %3 + %15 = call i32 (ptr, ...) @printf(ptr noundef @.str.1) + ret void +} + +declare i32 @printf(ptr noundef, ...) #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef ptr @_Z7getTailP4Node(ptr noundef %0) #3 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + br label %3 + +3: ; preds = %13, %1 + %4 = load ptr, ptr %2, align 8 + %5 = icmp ne ptr %4, null + br i1 %5, label %6, label %11 + +6: ; preds = %3 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %struct.Node, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = icmp ne ptr %9, null + br label %11 + +11: ; preds = %6, %3 + %12 = phi i1 [ false, %3 ], [ %10, %6 ] + br i1 %12, label %13, label %17 + +13: ; preds = %11 + %14 = load ptr, ptr %2, align 8 + %15 = getelementptr inbounds %struct.Node, ptr %14, i32 0, i32 1 + %16 = load ptr, ptr %15, align 8 + store ptr %16, ptr %2, align 8 + br label %3, !llvm.loop !8 + +17: ; preds = %11 + %18 = load ptr, ptr %2, align 8 + ret ptr %18 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef ptr @_Z9partitionP4NodeS0_PS0_S1_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef %3) #3 { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %14 = load ptr, ptr %6, align 8 + store ptr %14, ptr %9, align 8 + store ptr null, ptr %10, align 8 + %15 = load ptr, ptr %5, align 8 + store ptr %15, ptr %11, align 8 + %16 = load ptr, ptr %9, align 8 + store ptr %16, ptr %12, align 8 + br label %17 + +17: ; preds = %61, %4 + %18 = load ptr, ptr %11, align 8 + %19 = load ptr, ptr %9, align 8 + %20 = icmp ne ptr %18, %19 + br i1 %20, label %21, label %62 + +21: ; preds = %17 + %22 = load ptr, ptr %11, align 8 + %23 = getelementptr inbounds %struct.Node, ptr %22, i32 0, i32 0 + %24 = load i32, ptr %23, align 8 + %25 = load ptr, ptr %9, align 8 + %26 = getelementptr inbounds %struct.Node, ptr %25, i32 0, i32 0 + %27 = load i32, ptr %26, align 8 + %28 = icmp slt i32 %24, %27 + br i1 %28, label %29, label %41 + +29: ; preds = %21 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %30, align 8 + %32 = icmp eq ptr %31, null + br i1 %32, label %33, label %36 + +33: ; preds = %29 + %34 = load ptr, ptr %11, align 8 + %35 = load ptr, ptr %7, align 8 + store ptr %34, ptr %35, align 8 + br label %36 + +36: ; preds = %33, %29 + %37 = load ptr, ptr %11, align 8 + store ptr %37, ptr %10, align 8 + %38 = load ptr, ptr %11, align 8 + %39 = getelementptr inbounds %struct.Node, ptr %38, i32 0, i32 1 + %40 = load ptr, ptr %39, align 8 + store ptr %40, ptr %11, align 8 + br label %61 + +41: ; preds = %21 + %42 = load ptr, ptr %10, align 8 + %43 = icmp ne ptr %42, null + br i1 %43, label %44, label %50 + +44: ; preds = %41 + %45 = load ptr, ptr %11, align 8 + %46 = getelementptr inbounds %struct.Node, ptr %45, i32 0, i32 1 + %47 = load ptr, ptr %46, align 8 + %48 = load ptr, ptr %10, align 8 + %49 = getelementptr inbounds %struct.Node, ptr %48, i32 0, i32 1 + store ptr %47, ptr %49, align 8 + br label %50 + +50: ; preds = %44, %41 + %51 = load ptr, ptr %11, align 8 + %52 = getelementptr inbounds %struct.Node, ptr %51, i32 0, i32 1 + %53 = load ptr, ptr %52, align 8 + store ptr %53, ptr %13, align 8 + %54 = load ptr, ptr %11, align 8 + %55 = getelementptr inbounds %struct.Node, ptr %54, i32 0, i32 1 + store ptr null, ptr %55, align 8 + %56 = load ptr, ptr %11, align 8 + %57 = load ptr, ptr %12, align 8 + %58 = getelementptr inbounds %struct.Node, ptr %57, i32 0, i32 1 + store ptr %56, ptr %58, align 8 + %59 = load ptr, ptr %11, align 8 + store ptr %59, ptr %12, align 8 + %60 = load ptr, ptr %13, align 8 + store ptr %60, ptr %11, align 8 + br label %61 + +61: ; preds = %50, %36 + br label %17, !llvm.loop !9 + +62: ; preds = %17 + %63 = load ptr, ptr %7, align 8 + %64 = load ptr, ptr %63, align 8 + %65 = icmp eq ptr %64, null + br i1 %65, label %66, label %69 + +66: ; preds = %62 + %67 = load ptr, ptr %9, align 8 + %68 = load ptr, ptr %7, align 8 + store ptr %67, ptr %68, align 8 + br label %69 + +69: ; preds = %66, %62 + %70 = load ptr, ptr %12, align 8 + %71 = load ptr, ptr %8, align 8 + store ptr %70, ptr %71, align 8 + %72 = load ptr, ptr %9, align 8 + ret ptr %72 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef ptr @_Z14quickSortRecurP4NodeS0_(ptr noundef %0, ptr noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ne ptr %10, null + br i1 %11, label %12, label %16 + +12: ; preds = %2 + %13 = load ptr, ptr %4, align 8 + %14 = load ptr, ptr %5, align 8 + %15 = icmp eq ptr %13, %14 + br i1 %15, label %16, label %18 + +16: ; preds = %12, %2 + %17 = load ptr, ptr %4, align 8 + store ptr %17, ptr %3, align 8 + br label %57 + +18: ; preds = %12 + store ptr null, ptr %6, align 8 + store ptr null, ptr %7, align 8 + %19 = load ptr, ptr %4, align 8 + %20 = load ptr, ptr %5, align 8 + %21 = call noundef ptr @_Z9partitionP4NodeS0_PS0_S1_(ptr noundef %19, ptr noundef %20, ptr noundef %6, ptr noundef %7) + store ptr %21, ptr %8, align 8 + %22 = load ptr, ptr %6, align 8 + %23 = load ptr, ptr %8, align 8 + %24 = icmp ne ptr %22, %23 + br i1 %24, label %25, label %48 + +25: ; preds = %18 + %26 = load ptr, ptr %6, align 8 + store ptr %26, ptr %9, align 8 + br label %27 + +27: ; preds = %33, %25 + %28 = load ptr, ptr %9, align 8 + %29 = getelementptr inbounds %struct.Node, ptr %28, i32 0, i32 1 + %30 = load ptr, ptr %29, align 8 + %31 = load ptr, ptr %8, align 8 + %32 = icmp ne ptr %30, %31 + br i1 %32, label %33, label %37 + +33: ; preds = %27 + %34 = load ptr, ptr %9, align 8 + %35 = getelementptr inbounds %struct.Node, ptr %34, i32 0, i32 1 + %36 = load ptr, ptr %35, align 8 + store ptr %36, ptr %9, align 8 + br label %27, !llvm.loop !10 + +37: ; preds = %27 + %38 = load ptr, ptr %9, align 8 + %39 = getelementptr inbounds %struct.Node, ptr %38, i32 0, i32 1 + store ptr null, ptr %39, align 8 + %40 = load ptr, ptr %6, align 8 + %41 = load ptr, ptr %9, align 8 + %42 = call noundef ptr @_Z14quickSortRecurP4NodeS0_(ptr noundef %40, ptr noundef %41) + store ptr %42, ptr %6, align 8 + %43 = load ptr, ptr %6, align 8 + %44 = call noundef ptr @_Z7getTailP4Node(ptr noundef %43) + store ptr %44, ptr %9, align 8 + %45 = load ptr, ptr %8, align 8 + %46 = load ptr, ptr %9, align 8 + %47 = getelementptr inbounds %struct.Node, ptr %46, i32 0, i32 1 + store ptr %45, ptr %47, align 8 + br label %48 + +48: ; preds = %37, %18 + %49 = load ptr, ptr %8, align 8 + %50 = getelementptr inbounds %struct.Node, ptr %49, i32 0, i32 1 + %51 = load ptr, ptr %50, align 8 + %52 = load ptr, ptr %7, align 8 + %53 = call noundef ptr @_Z14quickSortRecurP4NodeS0_(ptr noundef %51, ptr noundef %52) + %54 = load ptr, ptr %8, align 8 + %55 = getelementptr inbounds %struct.Node, ptr %54, i32 0, i32 1 + store ptr %53, ptr %55, align 8 + %56 = load ptr, ptr %6, align 8 + store ptr %56, ptr %3, align 8 + br label %57 + +57: ; preds = %48, %16 + %58 = load ptr, ptr %3, align 8 + ret ptr %58 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9quickSortPP4Node(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = load ptr, ptr %2, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = call noundef ptr @_Z7getTailP4Node(ptr noundef %6) + %8 = call noundef ptr @_Z14quickSortRecurP4NodeS0_(ptr noundef %4, ptr noundef %7) + %9 = load ptr, ptr %2, align 8 + store ptr %8, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { + %1 = alloca i32, align 4 + %2 = alloca ptr, align 8 + store i32 0, ptr %1, align 4 + store ptr null, ptr %2, align 8 + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 5) + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 20) + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 4) + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 3) + call void @_Z4pushPP4Nodei(ptr noundef %2, i32 noundef 30) + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + %4 = load ptr, ptr %2, align 8 + call void @_Z9printListP4Node(ptr noundef %4) + call void @_Z9quickSortPP4Node(ptr noundef %2) + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.3) + %6 = load ptr, ptr %2, align 8 + call void @_Z9printListP4Node(ptr noundef %6) + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +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 = { 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 #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 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 #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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/rabin-karp-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/rabin-karp-algorithm.ll new file mode 100644 index 000000000..405466004 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/rabin-karp-algorithm.ll @@ -0,0 +1,296 @@ +; ModuleID = 'PE-benchmarks/rabin-karp-algorithm.cpp' +source_filename = "PE-benchmarks/rabin-karp-algorithm.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchPcS_i(ptr noundef %0, ptr noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i32 %2, ptr %6, align 4 + %14 = load ptr, ptr %4, align 8 + %15 = call i64 @strlen(ptr noundef %14) #5 + %16 = trunc i64 %15 to i32 + store i32 %16, ptr %7, align 4 + %17 = load ptr, ptr %5, align 8 + %18 = call i64 @strlen(ptr noundef %17) #5 + %19 = trunc i64 %18 to i32 + store i32 %19, ptr %8, align 4 + store i32 0, ptr %11, align 4 + store i32 0, ptr %12, align 4 + store i32 1, ptr %13, align 4 + store i32 0, ptr %9, align 4 + br label %20 + +20: ; preds = %30, %3 + %21 = load i32, ptr %9, align 4 + %22 = load i32, ptr %7, align 4 + %23 = sub nsw i32 %22, 1 + %24 = icmp slt i32 %21, %23 + br i1 %24, label %25, label %33 + +25: ; preds = %20 + %26 = load i32, ptr %13, align 4 + %27 = mul nsw i32 %26, 256 + %28 = load i32, ptr %6, align 4 + %29 = srem i32 %27, %28 + store i32 %29, ptr %13, align 4 + br label %30 + +30: ; preds = %25 + %31 = load i32, ptr %9, align 4 + %32 = add nsw i32 %31, 1 + store i32 %32, ptr %9, align 4 + br label %20, !llvm.loop !6 + +33: ; preds = %20 + store i32 0, ptr %9, align 4 + br label %34 + +34: ; preds = %61, %33 + %35 = load i32, ptr %9, align 4 + %36 = load i32, ptr %7, align 4 + %37 = icmp slt i32 %35, %36 + br i1 %37, label %38, label %64 + +38: ; preds = %34 + %39 = load i32, ptr %11, align 4 + %40 = mul nsw i32 256, %39 + %41 = load ptr, ptr %4, align 8 + %42 = load i32, ptr %9, align 4 + %43 = sext i32 %42 to i64 + %44 = getelementptr inbounds i8, ptr %41, i64 %43 + %45 = load i8, ptr %44, align 1 + %46 = sext i8 %45 to i32 + %47 = add nsw i32 %40, %46 + %48 = load i32, ptr %6, align 4 + %49 = srem i32 %47, %48 + store i32 %49, ptr %11, align 4 + %50 = load i32, ptr %12, align 4 + %51 = mul nsw i32 256, %50 + %52 = load ptr, ptr %5, align 8 + %53 = load i32, ptr %9, align 4 + %54 = sext i32 %53 to i64 + %55 = getelementptr inbounds i8, ptr %52, i64 %54 + %56 = load i8, ptr %55, align 1 + %57 = sext i8 %56 to i32 + %58 = add nsw i32 %51, %57 + %59 = load i32, ptr %6, align 4 + %60 = srem i32 %58, %59 + store i32 %60, ptr %12, align 4 + br label %61 + +61: ; preds = %38 + %62 = load i32, ptr %9, align 4 + %63 = add nsw i32 %62, 1 + store i32 %63, ptr %9, align 4 + br label %34, !llvm.loop !8 + +64: ; preds = %34 + store i32 0, ptr %9, align 4 + br label %65 + +65: ; preds = %148, %64 + %66 = load i32, ptr %9, align 4 + %67 = load i32, ptr %8, align 4 + %68 = load i32, ptr %7, align 4 + %69 = sub nsw i32 %67, %68 + %70 = icmp sle i32 %66, %69 + br i1 %70, label %71, label %151 + +71: ; preds = %65 + %72 = load i32, ptr %11, align 4 + %73 = load i32, ptr %12, align 4 + %74 = icmp eq i32 %72, %73 + br i1 %74, label %75, label %111 + +75: ; preds = %71 + store i32 0, ptr %10, align 4 + br label %76 + +76: ; preds = %98, %75 + %77 = load i32, ptr %10, align 4 + %78 = load i32, ptr %7, align 4 + %79 = icmp slt i32 %77, %78 + br i1 %79, label %80, label %101 + +80: ; preds = %76 + %81 = load ptr, ptr %5, align 8 + %82 = load i32, ptr %9, align 4 + %83 = load i32, ptr %10, align 4 + %84 = add nsw i32 %82, %83 + %85 = sext i32 %84 to i64 + %86 = getelementptr inbounds i8, ptr %81, i64 %85 + %87 = load i8, ptr %86, align 1 + %88 = sext i8 %87 to i32 + %89 = load ptr, ptr %4, align 8 + %90 = load i32, ptr %10, align 4 + %91 = sext i32 %90 to i64 + %92 = getelementptr inbounds i8, ptr %89, i64 %91 + %93 = load i8, ptr %92, align 1 + %94 = sext i8 %93 to i32 + %95 = icmp ne i32 %88, %94 + br i1 %95, label %96, label %97 + +96: ; preds = %80 + br label %101 + +97: ; preds = %80 + br label %98 + +98: ; preds = %97 + %99 = load i32, ptr %10, align 4 + %100 = add nsw i32 %99, 1 + store i32 %100, ptr %10, align 4 + br label %76, !llvm.loop !9 + +101: ; preds = %96, %76 + %102 = load i32, ptr %10, align 4 + %103 = load i32, ptr %7, align 4 + %104 = icmp eq i32 %102, %103 + br i1 %104, label %105, label %110 + +105: ; preds = %101 + %106 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %107 = load i32, ptr %9, align 4 + %108 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %106, i32 noundef %107) + %109 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %108, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %110 + +110: ; preds = %105, %101 + br label %111 + +111: ; preds = %110, %71 + %112 = load i32, ptr %9, align 4 + %113 = load i32, ptr %8, align 4 + %114 = load i32, ptr %7, align 4 + %115 = sub nsw i32 %113, %114 + %116 = icmp slt i32 %112, %115 + br i1 %116, label %117, label %147 + +117: ; preds = %111 + %118 = load i32, ptr %12, align 4 + %119 = load ptr, ptr %5, align 8 + %120 = load i32, ptr %9, align 4 + %121 = sext i32 %120 to i64 + %122 = getelementptr inbounds i8, ptr %119, i64 %121 + %123 = load i8, ptr %122, align 1 + %124 = sext i8 %123 to i32 + %125 = load i32, ptr %13, align 4 + %126 = mul nsw i32 %124, %125 + %127 = sub nsw i32 %118, %126 + %128 = mul nsw i32 256, %127 + %129 = load ptr, ptr %5, align 8 + %130 = load i32, ptr %9, align 4 + %131 = load i32, ptr %7, align 4 + %132 = add nsw i32 %130, %131 + %133 = sext i32 %132 to i64 + %134 = getelementptr inbounds i8, ptr %129, i64 %133 + %135 = load i8, ptr %134, align 1 + %136 = sext i8 %135 to i32 + %137 = add nsw i32 %128, %136 + %138 = load i32, ptr %6, align 4 + %139 = srem i32 %137, %138 + store i32 %139, ptr %12, align 4 + %140 = load i32, ptr %12, align 4 + %141 = icmp slt i32 %140, 0 + br i1 %141, label %142, label %146 + +142: ; preds = %117 + %143 = load i32, ptr %12, align 4 + %144 = load i32, ptr %6, align 4 + %145 = add nsw i32 %143, %144 + store i32 %145, ptr %12, align 4 + br label %146 + +146: ; preds = %142, %117 + br label %147 + +147: ; preds = %146, %111 + br label %148 + +148: ; preds = %147 + %149 = load i32, ptr %9, align 4 + %150 = add nsw i32 %149, 1 + store i32 %150, ptr %9, align 4 + br label %65, !llvm.loop !10 + +151: ; preds = %65 + ret void +} + +; Function Attrs: nounwind willreturn memory(read) +declare i64 @strlen(ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #2 + +; 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 [5 x i8], align 1 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.txt, i64 16, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %3, ptr align 1 @__const.main.pat, i64 5, i1 false) + store i32 101, ptr %4, align 4 + %5 = getelementptr inbounds [5 x i8], ptr %3, i64 0, i64 0 + %6 = getelementptr inbounds [16 x i8], ptr %2, i64 0, i64 0 + %7 = load i32, ptr %4, align 4 + call void @_Z6searchPcS_i(ptr noundef %5, ptr noundef %6, i32 noundef %7) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +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 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #5 = { nounwind willreturn memory(read) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/rat-in-a-maze.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/rat-in-a-maze.ll new file mode 100644 index 000000000..f50569411 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/rat-in-a-maze.ll @@ -0,0 +1,286 @@ +; ModuleID = 'PE-benchmarks/rat-in-a-maze.cpp' +source_filename = "PE-benchmarks/rat-in-a-maze.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +@.str = private unnamed_addr constant [5 x i8] c" %d \00", align 1 +@.str.1 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 +@.str.2 = private unnamed_addr constant [23 x i8] c"Solution doesn't exist\00", align 1 +@__const.main.maze = private unnamed_addr constant [4 x [4 x i32]] [[4 x i32] [i32 1, i32 0, i32 0, i32 0], [4 x i32] [i32 1, i32 1, i32 0, i32 1], [4 x i32] [i32 0, i32 1, i32 0, i32 0], [4 x i32] [i32 1, i32 1, i32 1, i32 1]], align 16 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13printSolutionPA4_i(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + store i32 0, ptr %3, align 4 + br label %5 + +5: ; preds = %27, %1 + %6 = load i32, ptr %3, align 4 + %7 = icmp slt i32 %6, 4 + br i1 %7, label %8, label %30 + +8: ; preds = %5 + store i32 0, ptr %4, align 4 + br label %9 + +9: ; preds = %22, %8 + %10 = load i32, ptr %4, align 4 + %11 = icmp slt i32 %10, 4 + br i1 %11, label %12, label %25 + +12: ; preds = %9 + %13 = load ptr, ptr %2, align 8 + %14 = load i32, ptr %3, align 4 + %15 = sext i32 %14 to i64 + %16 = getelementptr inbounds [4 x i32], ptr %13, i64 %15 + %17 = load i32, ptr %4, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds [4 x i32], ptr %16, i64 0, i64 %18 + %20 = load i32, ptr %19, align 4 + %21 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %20) + br label %22 + +22: ; preds = %12 + %23 = load i32, ptr %4, align 4 + %24 = add nsw i32 %23, 1 + store i32 %24, ptr %4, align 4 + br label %9, !llvm.loop !6 + +25: ; preds = %9 + %26 = call i32 (ptr, ...) @printf(ptr noundef @.str.1) + br label %27 + +27: ; preds = %25 + %28 = load i32, ptr %3, align 4 + %29 = add nsw i32 %28, 1 + store i32 %29, ptr %3, align 4 + br label %5, !llvm.loop !8 + +30: ; preds = %5 + ret void +} + +declare i32 @printf(ptr noundef, ...) #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z6isSafePA4_iii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #2 { + %4 = alloca i1, align 1 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store i32 %2, ptr %7, align 4 + %8 = load i32, ptr %6, align 4 + %9 = icmp sge i32 %8, 0 + br i1 %9, label %10, label %30 + +10: ; preds = %3 + %11 = load i32, ptr %6, align 4 + %12 = icmp slt i32 %11, 4 + br i1 %12, label %13, label %30 + +13: ; preds = %10 + %14 = load i32, ptr %7, align 4 + %15 = icmp sge i32 %14, 0 + br i1 %15, label %16, label %30 + +16: ; preds = %13 + %17 = load i32, ptr %7, align 4 + %18 = icmp slt i32 %17, 4 + br i1 %18, label %19, label %30 + +19: ; preds = %16 + %20 = load ptr, ptr %5, align 8 + %21 = load i32, ptr %6, align 4 + %22 = sext i32 %21 to i64 + %23 = getelementptr inbounds [4 x i32], ptr %20, i64 %22 + %24 = load i32, ptr %7, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds [4 x i32], ptr %23, i64 0, i64 %25 + %27 = load i32, ptr %26, align 4 + %28 = icmp eq i32 %27, 1 + br i1 %28, label %29, label %30 + +29: ; preds = %19 + store i1 true, ptr %4, align 1 + br label %31 + +30: ; preds = %19, %16, %13, %10, %3 + store i1 false, ptr %4, align 1 + br label %31 + +31: ; preds = %30, %29 + %32 = load i1, ptr %4, align 1 + ret i1 %32 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z9solveMazePA4_i(ptr noundef %0) #0 { + %2 = alloca i1, align 1 + %3 = alloca ptr, align 8 + %4 = alloca [4 x [4 x i32]], align 16 + store ptr %0, ptr %3, align 8 + call void @llvm.memset.p0.i64(ptr align 16 %4, i8 0, i64 64, i1 false) + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds [4 x [4 x i32]], ptr %4, i64 0, i64 0 + %7 = call noundef zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_(ptr noundef %5, i32 noundef 0, i32 noundef 0, ptr noundef %6) + %8 = zext i1 %7 to i32 + %9 = icmp eq i32 %8, 0 + br i1 %9, label %10, label %12 + +10: ; preds = %1 + %11 = call i32 (ptr, ...) @printf(ptr noundef @.str.2) + store i1 false, ptr %2, align 1 + br label %14 + +12: ; preds = %1 + %13 = getelementptr inbounds [4 x [4 x i32]], ptr %4, i64 0, i64 0 + call void @_Z13printSolutionPA4_i(ptr noundef %13) + store i1 true, ptr %2, align 1 + br label %14 + +14: ; preds = %12, %10 + %15 = load i1, ptr %2, align 1 + ret i1 %15 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #3 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_(ptr noundef %0, i32 noundef %1, i32 noundef %2, ptr noundef %3) #0 { + %5 = alloca i1, align 1 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store i32 %1, ptr %7, align 4 + store i32 %2, ptr %8, align 4 + store ptr %3, ptr %9, align 8 + %10 = load i32, ptr %7, align 4 + %11 = icmp eq i32 %10, 3 + br i1 %11, label %12, label %23 + +12: ; preds = %4 + %13 = load i32, ptr %8, align 4 + %14 = icmp eq i32 %13, 3 + br i1 %14, label %15, label %23 + +15: ; preds = %12 + %16 = load ptr, ptr %9, align 8 + %17 = load i32, ptr %7, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds [4 x i32], ptr %16, i64 %18 + %20 = load i32, ptr %8, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds [4 x i32], ptr %19, i64 0, i64 %21 + store i32 1, ptr %22, align 4 + store i1 true, ptr %5, align 1 + br label %66 + +23: ; preds = %12, %4 + %24 = load ptr, ptr %6, align 8 + %25 = load i32, ptr %7, align 4 + %26 = load i32, ptr %8, align 4 + %27 = call noundef zeroext i1 @_Z6isSafePA4_iii(ptr 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 + +30: ; preds = %23 + %31 = load ptr, ptr %9, align 8 + %32 = load i32, ptr %7, align 4 + %33 = sext i32 %32 to i64 + %34 = getelementptr inbounds [4 x i32], ptr %31, i64 %33 + %35 = load i32, ptr %8, align 4 + %36 = sext i32 %35 to i64 + %37 = getelementptr inbounds [4 x i32], ptr %34, i64 0, i64 %36 + store i32 1, ptr %37, align 4 + %38 = load ptr, ptr %6, align 8 + %39 = load i32, ptr %7, align 4 + %40 = add nsw i32 %39, 1 + %41 = load i32, ptr %8, align 4 + %42 = load ptr, ptr %9, align 8 + %43 = call noundef zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_(ptr noundef %38, i32 noundef %40, i32 noundef %41, ptr noundef %42) + %44 = zext i1 %43 to i32 + %45 = icmp eq i32 %44, 1 + br i1 %45, label %46, label %47 + +46: ; preds = %30 + store i1 true, ptr %5, align 1 + br label %66 + +47: ; preds = %30 + %48 = load ptr, ptr %6, align 8 + %49 = load i32, ptr %7, align 4 + %50 = load i32, ptr %8, align 4 + %51 = add nsw i32 %50, 1 + %52 = load ptr, ptr %9, align 8 + %53 = call noundef zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_(ptr noundef %48, i32 noundef %49, i32 noundef %51, ptr noundef %52) + %54 = zext i1 %53 to i32 + %55 = icmp eq i32 %54, 1 + br i1 %55, label %56, label %57 + +56: ; preds = %47 + store i1 true, ptr %5, align 1 + br label %66 + +57: ; preds = %47 + %58 = load ptr, ptr %9, align 8 + %59 = load i32, ptr %7, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds [4 x i32], ptr %58, i64 %60 + %62 = load i32, ptr %8, align 4 + %63 = sext i32 %62 to i64 + %64 = getelementptr inbounds [4 x i32], ptr %61, i64 0, i64 %63 + store i32 0, ptr %64, align 4 + store i1 false, ptr %5, align 1 + br label %66 + +65: ; preds = %23 + store i1 false, ptr %5, align 1 + br label %66 + +66: ; preds = %65, %57, %56, %46, %15 + %67 = load i1, ptr %5, align 1 + ret i1 %67 +} + +; 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, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.maze, i64 64, i1 false) + %3 = getelementptr inbounds [4 x [4 x i32]], ptr %2, i64 0, i64 0 + %4 = call noundef zeroext i1 @_Z9solveMazePA4_i(ptr noundef %3) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 + +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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/reservoir-sampling.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/reservoir-sampling.ll new file mode 100644 index 000000000..e5887e7d7 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/reservoir-sampling.ll @@ -0,0 +1,217 @@ +; ModuleID = 'PE-benchmarks/reservoir-sampling.cpp' +source_filename = "PE-benchmarks/reservoir-sampling.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10printArrayPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + store i32 0, ptr %5, align 4 + br label %6 + +6: ; preds = %18, %2 + %7 = load i32, ptr %5, align 4 + %8 = load i32, ptr %4, align 4 + %9 = icmp slt i32 %7, %8 + br i1 %9, label %10, label %21 + +10: ; preds = %6 + %11 = load ptr, ptr %3, align 8 + %12 = load i32, ptr %5, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i32, ptr %11, i64 %13 + %15 = load i32, ptr %14, align 4 + %16 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %16, ptr noundef @.str) + br label %18 + +18: ; preds = %10 + %19 = load i32, ptr %5, align 4 + %20 = add nsw i32 %19, 1 + store i32 %20, ptr %5, align 4 + br label %6, !llvm.loop !6 + +21: ; preds = %6 + %22 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z12selectKItemsPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca ptr, align 8 + %9 = alloca i64, align 8 + %10 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %11 = load i32, ptr %6, align 4 + %12 = zext i32 %11 to i64 + %13 = call ptr @llvm.stacksave() + store ptr %13, ptr %8, align 8 + %14 = alloca i32, i64 %12, align 16 + store i64 %12, ptr %9, align 8 + store i32 0, ptr %7, align 4 + br label %15 + +15: ; preds = %28, %3 + %16 = load i32, ptr %7, align 4 + %17 = load i32, ptr %6, align 4 + %18 = icmp slt i32 %16, %17 + br i1 %18, label %19, label %31 + +19: ; preds = %15 + %20 = load ptr, ptr %4, align 8 + %21 = load i32, ptr %7, align 4 + %22 = sext i32 %21 to i64 + %23 = getelementptr inbounds i32, ptr %20, i64 %22 + %24 = load i32, ptr %23, align 4 + %25 = load i32, ptr %7, align 4 + %26 = sext i32 %25 to i64 + %27 = getelementptr inbounds i32, ptr %14, i64 %26 + store i32 %24, ptr %27, align 4 + br label %28 + +28: ; preds = %19 + %29 = load i32, ptr %7, align 4 + %30 = add nsw i32 %29, 1 + store i32 %30, ptr %7, align 4 + br label %15, !llvm.loop !8 + +31: ; preds = %15 + %32 = call i64 @time(ptr noundef null) #6 + %33 = trunc i64 %32 to i32 + call void @srand(i32 noundef %33) #6 + br label %34 + +34: ; preds = %56, %31 + %35 = load i32, ptr %7, align 4 + %36 = load i32, ptr %5, align 4 + %37 = icmp slt i32 %35, %36 + br i1 %37, label %38, label %59 + +38: ; preds = %34 + %39 = call i32 @rand() #6 + %40 = load i32, ptr %7, align 4 + %41 = add nsw i32 %40, 1 + %42 = srem i32 %39, %41 + store i32 %42, ptr %10, align 4 + %43 = load i32, ptr %10, align 4 + %44 = load i32, ptr %6, align 4 + %45 = icmp slt i32 %43, %44 + br i1 %45, label %46, label %55 + +46: ; preds = %38 + %47 = load ptr, ptr %4, align 8 + %48 = load i32, ptr %7, align 4 + %49 = sext i32 %48 to i64 + %50 = getelementptr inbounds i32, ptr %47, i64 %49 + %51 = load i32, ptr %50, align 4 + %52 = load i32, ptr %10, align 4 + %53 = sext i32 %52 to i64 + %54 = getelementptr inbounds i32, ptr %14, i64 %53 + store i32 %51, ptr %54, align 4 + br label %55 + +55: ; preds = %46, %38 + br label %56 + +56: ; preds = %55 + %57 = load i32, ptr %7, align 4 + %58 = add nsw i32 %57, 1 + store i32 %58, ptr %7, align 4 + br label %34, !llvm.loop !9 + +59: ; preds = %34 + %60 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + %61 = load i32, ptr %6, align 4 + call void @_Z10printArrayPii(ptr noundef %14, i32 noundef %61) + %62 = load ptr, ptr %8, align 8 + call void @llvm.stackrestore(ptr %62) + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #2 + +; Function Attrs: nounwind +declare void @srand(i32 noundef) #3 + +; Function Attrs: nounwind +declare i64 @time(ptr noundef) #3 + +; Function Attrs: nounwind +declare i32 @rand() #3 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { + %1 = alloca i32, align 4 + %2 = alloca [12 x i32], align 16 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.stream, i64 48, i1 false) + store i32 12, ptr %3, align 4 + store i32 5, ptr %4, align 4 + %5 = getelementptr inbounds [12 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + %7 = load i32, ptr %4, align 4 + call void @_Z12selectKItemsPiii(ptr noundef %5, i32 noundef %6, i32 noundef %7) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 + +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 = { nocallback nofree nosync nounwind willreturn } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #6 = { nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/rotate-bits-of-an-integer.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/rotate-bits-of-an-integer.ll new file mode 100644 index 000000000..aa53568eb --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/rotate-bits-of-an-integer.ll @@ -0,0 +1,116 @@ +; 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" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.gfg = type { i8 } + +$_ZN3gfg10leftRotateEij = comdat any + +$_ZN3gfg11rightRotateEij = comdat any + +@_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 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #0 { + %1 = alloca %class.gfg, align 1 + %2 = alloca i32, align 4 + %3 = alloca i32, align 4 + store i32 16, ptr %2, align 4 + store i32 2, ptr %3, align 4 + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %5 = load i32, ptr %2, align 4 + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %5) + %7 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef @.str.1) + %8 = load i32, ptr %3, align 4 + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %7, i32 noundef %8) + %10 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %9, ptr noundef @.str.2) + %11 = load i32, ptr %2, align 4 + %12 = load i32, ptr %3, align 4 + %13 = call noundef i32 @_ZN3gfg10leftRotateEij(ptr noundef nonnull align 1 dereferenceable(1) %1, i32 noundef %11, i32 noundef %12) + %14 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %13) + %15 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.3) + %16 = load i32, ptr %2, align 4 + %17 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %15, i32 noundef %16) + %18 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %17, ptr noundef @.str.1) + %19 = load i32, ptr %3, align 4 + %20 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %18, i32 noundef %19) + %21 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %20, ptr noundef @.str.2) + %22 = load i32, ptr %2, align 4 + %23 = load i32, ptr %3, align 4 + %24 = call noundef i32 @_ZN3gfg11rightRotateEij(ptr noundef nonnull align 1 dereferenceable(1) %1, i32 noundef %22, i32 noundef %23) + %25 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %24) + %26 = call i32 @getchar() + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32 @_ZN3gfg10leftRotateEij(ptr noundef nonnull align 1 dereferenceable(1) %0, i32 noundef %1, i32 noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = load i32, ptr %5, align 4 + %9 = load i32, ptr %6, align 4 + %10 = shl i32 %8, %9 + %11 = load i32, ptr %5, align 4 + %12 = load i32, ptr %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(ptr noundef nonnull align 1 dereferenceable(1) %0, i32 noundef %1, i32 noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = load i32, ptr %5, align 4 + %9 = load i32, ptr %6, align 4 + %10 = ashr i32 %8, %9 + %11 = load i32, ptr %5, align 4 + %12 = load i32, ptr %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 + +attributes #0 = { 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 #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" } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/shortest-common-supersequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/shortest-common-supersequence.ll new file mode 100644 index 000000000..84c17fb54 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/shortest-common-supersequence.ll @@ -0,0 +1,296 @@ +; ModuleID = 'PE-benchmarks/shortest-common-supersequence.cpp' +source_filename = "PE-benchmarks/shortest-common-supersequence.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +$_ZSt3minIiERKT_S2_S2_ = comdat any + +@__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 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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z8superSeqPcS_ii(ptr noundef %0, ptr noundef %1, i32 noundef %2, i32 noundef %3) #0 { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca i64, align 8 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store i32 %2, ptr %7, align 4 + store i32 %3, ptr %8, align 4 + %14 = load i32, ptr %7, align 4 + %15 = add nsw i32 %14, 1 + %16 = zext i32 %15 to i64 + %17 = load i32, ptr %8, align 4 + %18 = add nsw i32 %17, 1 + %19 = zext i32 %18 to i64 + %20 = call ptr @llvm.stacksave() + store ptr %20, ptr %9, align 8 + %21 = mul nuw i64 %16, %19 + %22 = alloca i32, i64 %21, align 16 + store i64 %16, ptr %10, align 8 + store i64 %19, ptr %11, align 8 + store i32 0, ptr %12, align 4 + br label %23 + +23: ; preds = %125, %4 + %24 = load i32, ptr %12, align 4 + %25 = load i32, ptr %7, align 4 + %26 = icmp sle i32 %24, %25 + br i1 %26, label %27, label %128 + +27: ; preds = %23 + store i32 0, ptr %13, align 4 + br label %28 + +28: ; preds = %121, %27 + %29 = load i32, ptr %13, align 4 + %30 = load i32, ptr %8, align 4 + %31 = icmp sle i32 %29, %30 + br i1 %31, label %32, label %124 + +32: ; preds = %28 + %33 = load i32, ptr %12, align 4 + %34 = icmp ne i32 %33, 0 + br i1 %34, label %44, label %35 + +35: ; preds = %32 + %36 = load i32, ptr %13, align 4 + %37 = load i32, ptr %12, align 4 + %38 = sext i32 %37 to i64 + %39 = mul nsw i64 %38, %19 + %40 = getelementptr inbounds i32, ptr %22, i64 %39 + %41 = load i32, ptr %13, align 4 + %42 = sext i32 %41 to i64 + %43 = getelementptr inbounds i32, ptr %40, i64 %42 + store i32 %36, ptr %43, align 4 + br label %120 + +44: ; preds = %32 + %45 = load i32, ptr %13, align 4 + %46 = icmp ne i32 %45, 0 + br i1 %46, label %56, label %47 + +47: ; preds = %44 + %48 = load i32, ptr %12, align 4 + %49 = load i32, ptr %12, align 4 + %50 = sext i32 %49 to i64 + %51 = mul nsw i64 %50, %19 + %52 = getelementptr inbounds i32, ptr %22, i64 %51 + %53 = load i32, ptr %13, align 4 + %54 = sext i32 %53 to i64 + %55 = getelementptr inbounds i32, ptr %52, i64 %54 + store i32 %48, ptr %55, align 4 + br label %119 + +56: ; preds = %44 + %57 = load ptr, ptr %5, align 8 + %58 = load i32, ptr %12, align 4 + %59 = sub nsw i32 %58, 1 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds i8, ptr %57, i64 %60 + %62 = load i8, ptr %61, align 1 + %63 = sext i8 %62 to i32 + %64 = load ptr, ptr %6, align 8 + %65 = load i32, ptr %13, align 4 + %66 = sub nsw i32 %65, 1 + %67 = sext i32 %66 to i64 + %68 = getelementptr inbounds i8, ptr %64, i64 %67 + %69 = load i8, ptr %68, align 1 + %70 = sext i8 %69 to i32 + %71 = icmp eq i32 %63, %70 + br i1 %71, label %72, label %91 + +72: ; preds = %56 + %73 = load i32, ptr %12, align 4 + %74 = sub nsw i32 %73, 1 + %75 = sext i32 %74 to i64 + %76 = mul nsw i64 %75, %19 + %77 = getelementptr inbounds i32, ptr %22, i64 %76 + %78 = load i32, ptr %13, align 4 + %79 = sub nsw i32 %78, 1 + %80 = sext i32 %79 to i64 + %81 = getelementptr inbounds i32, ptr %77, i64 %80 + %82 = load i32, ptr %81, align 4 + %83 = add nsw i32 1, %82 + %84 = load i32, ptr %12, align 4 + %85 = sext i32 %84 to i64 + %86 = mul nsw i64 %85, %19 + %87 = getelementptr inbounds i32, ptr %22, i64 %86 + %88 = load i32, ptr %13, align 4 + %89 = sext i32 %88 to i64 + %90 = getelementptr inbounds i32, ptr %87, i64 %89 + store i32 %83, ptr %90, align 4 + br label %118 + +91: ; preds = %56 + %92 = load i32, ptr %12, align 4 + %93 = sub nsw i32 %92, 1 + %94 = sext i32 %93 to i64 + %95 = mul nsw i64 %94, %19 + %96 = getelementptr inbounds i32, ptr %22, i64 %95 + %97 = load i32, ptr %13, align 4 + %98 = sext i32 %97 to i64 + %99 = getelementptr inbounds i32, ptr %96, i64 %98 + %100 = load i32, ptr %12, align 4 + %101 = sext i32 %100 to i64 + %102 = mul nsw i64 %101, %19 + %103 = getelementptr inbounds i32, ptr %22, i64 %102 + %104 = load i32, ptr %13, align 4 + %105 = sub nsw i32 %104, 1 + %106 = sext i32 %105 to i64 + %107 = getelementptr inbounds i32, ptr %103, i64 %106 + %108 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %99, ptr noundef nonnull align 4 dereferenceable(4) %107) + %109 = load i32, ptr %108, align 4 + %110 = add nsw i32 1, %109 + %111 = load i32, ptr %12, align 4 + %112 = sext i32 %111 to i64 + %113 = mul nsw i64 %112, %19 + %114 = getelementptr inbounds i32, ptr %22, i64 %113 + %115 = load i32, ptr %13, align 4 + %116 = sext i32 %115 to i64 + %117 = getelementptr inbounds i32, ptr %114, i64 %116 + store i32 %110, ptr %117, align 4 + br label %118 + +118: ; preds = %91, %72 + br label %119 + +119: ; preds = %118, %47 + br label %120 + +120: ; preds = %119, %35 + br label %121 + +121: ; preds = %120 + %122 = load i32, ptr %13, align 4 + %123 = add nsw i32 %122, 1 + store i32 %123, ptr %13, align 4 + br label %28, !llvm.loop !6 + +124: ; preds = %28 + br label %125 + +125: ; preds = %124 + %126 = load i32, ptr %12, align 4 + %127 = add nsw i32 %126, 1 + store i32 %127, ptr %12, align 4 + br label %23, !llvm.loop !8 + +128: ; preds = %23 + %129 = load i32, ptr %7, align 4 + %130 = sext i32 %129 to i64 + %131 = mul nsw i64 %130, %19 + %132 = getelementptr inbounds i32, ptr %22, i64 %131 + %133 = load i32, ptr %8, align 4 + %134 = sext i32 %133 to i64 + %135 = getelementptr inbounds i32, ptr %132, i64 %134 + %136 = load i32, ptr %135, align 4 + %137 = load ptr, ptr %9, align 8 + call void @llvm.stackrestore(ptr %137) + ret i32 %136 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #2 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [7 x i8], align 1 + %3 = alloca [8 x i8], align 1 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %2, ptr align 1 @__const.main.X, i64 7, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 1 %3, ptr align 1 @__const.main.Y, i64 8, i1 false) + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %5 = getelementptr inbounds [7 x i8], ptr %2, i64 0, i64 0 + %6 = getelementptr inbounds [8 x i8], ptr %3, i64 0, i64 0 + %7 = getelementptr inbounds [7 x i8], ptr %2, i64 0, i64 0 + %8 = call i64 @strlen(ptr noundef %7) #7 + %9 = trunc i64 %8 to i32 + %10 = getelementptr inbounds [8 x i8], ptr %3, i64 0, i64 0 + %11 = call i64 @strlen(ptr noundef %10) #7 + %12 = trunc i64 %11 to i32 + %13 = call noundef i32 @_Z8superSeqPcS_ii(ptr noundef %5, ptr noundef %6, i32 noundef %9, i32 noundef %12) + %14 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %13) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +; Function Attrs: nounwind willreturn memory(read) +declare i64 @strlen(ptr noundef) #6 + +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 = { nocallback nofree nosync nounwind willreturn } +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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 willreturn memory(read) "frame-pointer"="all" "no-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 = { nounwind willreturn memory(read) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/sieve-of-eratosthenes.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/sieve-of-eratosthenes.ll new file mode 100644 index 000000000..2f5a22452 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/sieve-of-eratosthenes.ll @@ -0,0 +1,186 @@ +; ModuleID = 'PE-benchmarks/sieve-of-eratosthenes.cpp' +source_filename = "PE-benchmarks/sieve-of-eratosthenes.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z19SieveOfEratosthenesi(i32 noundef %0) #0 { + %2 = alloca i32, align 4 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + store i32 %0, ptr %2, align 4 + %8 = load i32, ptr %2, align 4 + %9 = add nsw i32 %8, 1 + %10 = zext i32 %9 to i64 + %11 = call ptr @llvm.stacksave() + store ptr %11, ptr %3, align 8 + %12 = alloca i8, i64 %10, align 16 + store i64 %10, ptr %4, align 8 + call void @llvm.memset.p0.i64(ptr align 16 %12, i8 1, i64 %10, i1 false) + store i32 2, ptr %5, align 4 + br label %13 + +13: ; preds = %45, %1 + %14 = load i32, ptr %5, align 4 + %15 = load i32, ptr %5, align 4 + %16 = mul nsw i32 %14, %15 + %17 = load i32, ptr %2, align 4 + %18 = icmp sle i32 %16, %17 + br i1 %18, label %19, label %48 + +19: ; preds = %13 + %20 = load i32, ptr %5, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds i8, ptr %12, i64 %21 + %23 = load i8, ptr %22, align 1 + %24 = trunc i8 %23 to i1 + %25 = zext i1 %24 to i32 + %26 = icmp eq i32 %25, 1 + br i1 %26, label %27, label %44 + +27: ; preds = %19 + %28 = load i32, ptr %5, align 4 + %29 = load i32, ptr %5, align 4 + %30 = mul nsw i32 %28, %29 + store i32 %30, ptr %6, align 4 + br label %31 + +31: ; preds = %39, %27 + %32 = load i32, ptr %6, align 4 + %33 = load i32, ptr %2, align 4 + %34 = icmp sle i32 %32, %33 + br i1 %34, label %35, label %43 + +35: ; preds = %31 + %36 = load i32, ptr %6, align 4 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds i8, ptr %12, i64 %37 + store i8 0, ptr %38, align 1 + br label %39 + +39: ; preds = %35 + %40 = load i32, ptr %5, align 4 + %41 = load i32, ptr %6, align 4 + %42 = add nsw i32 %41, %40 + store i32 %42, ptr %6, align 4 + br label %31, !llvm.loop !6 + +43: ; preds = %31 + br label %44 + +44: ; preds = %43, %19 + br label %45 + +45: ; preds = %44 + %46 = load i32, ptr %5, align 4 + %47 = add nsw i32 %46, 1 + store i32 %47, ptr %5, align 4 + br label %13, !llvm.loop !8 + +48: ; preds = %13 + store i32 2, ptr %7, align 4 + br label %49 + +49: ; preds = %64, %48 + %50 = load i32, ptr %7, align 4 + %51 = load i32, ptr %2, align 4 + %52 = icmp sle i32 %50, %51 + br i1 %52, label %53, label %67 + +53: ; preds = %49 + %54 = load i32, ptr %7, align 4 + %55 = sext i32 %54 to i64 + %56 = getelementptr inbounds i8, ptr %12, i64 %55 + %57 = load i8, ptr %56, align 1 + %58 = trunc i8 %57 to i1 + br i1 %58, label %59, label %63 + +59: ; preds = %53 + %60 = load i32, ptr %7, align 4 + %61 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %60) + %62 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %61, ptr noundef @.str) + br label %63 + +63: ; preds = %59, %53 + br label %64 + +64: ; preds = %63 + %65 = load i32, ptr %7, align 4 + %66 = add nsw i32 %65, 1 + store i32 %66, ptr %7, align 4 + br label %49, !llvm.loop !9 + +67: ; preds = %49 + %68 = load ptr, ptr %3, align 8 + call void @llvm.stackrestore(ptr %68) + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { + %1 = alloca i32, align 4 + %2 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + store i32 30, ptr %2, align 4 + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef @.str.2) + %5 = load i32, ptr %2, align 4 + %6 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %5) + %7 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %8 = load i32, ptr %2, align 4 + call void @_Z19SieveOfEratosthenesi(i32 noundef %8) + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #3 + +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 = { nocallback nofree nosync nounwind willreturn } +attributes #2 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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" } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/snake-ladder.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/snake-ladder.ll new file mode 100644 index 000000000..11db5932d --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/snake-ladder.ll @@ -0,0 +1,2375 @@ +; ModuleID = 'PE-benchmarks/snake-ladder.cpp' +source_filename = "PE-benchmarks/snake-ladder.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%"class.std::queue" = type { %"class.std::deque" } +%"class.std::deque" = type { %"class.std::_Deque_base" } +%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } +%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } +%"struct.std::_Deque_base>::_Deque_impl_data" = type { ptr, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } +%"struct.std::_Deque_iterator" = type { ptr, ptr, ptr, ptr } +%struct.queueEntry = type { i32, i32 } +%"class.std::allocator.0" = type { i8 } + +$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEEC2IS3_vEEv = comdat any + +$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE4pushERKS0_ = comdat any + +$_ZNKSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5emptyEv = comdat any + +$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5frontEv = comdat any + +$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE3popEv = comdat any + +$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev = comdat any + +$_ZNSt5dequeI10queueEntrySaIS0_EED2Ev = comdat any + +$_ZNSt5dequeI10queueEntrySaIS0_EE15_M_destroy_dataESt15_Deque_iteratorIS0_RS0_PS0_ES6_RKS1_ = comdat any + +$_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv = comdat any + +$_ZNSt5dequeI10queueEntrySaIS0_EE3endEv = comdat any + +$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev = comdat any + +$_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_ = comdat any + +$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_destroy_nodesEPPS0_S4_ = comdat any + +$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m = comdat any + +$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev = comdat any + +$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_ = comdat any + +$_ZSt16__deque_buf_sizem = comdat any + +$_ZNSt15__new_allocatorI10queueEntryE10deallocateEPS0_m = comdat any + +$_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv = comdat any + +$_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv = comdat any + +$_ZNSt15__new_allocatorIP10queueEntryE10deallocateEPS1_m = comdat any + +$_ZNSt15__new_allocatorIP10queueEntryED2Ev = comdat any + +$_ZNSt15__new_allocatorI10queueEntryED2Ev = comdat any + +$_ZNSt5dequeI10queueEntrySaIS0_EEC2Ev = comdat any + +$_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev = comdat any + +$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implC2Ev = comdat any + +$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_initialize_mapEm = comdat any + +$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_Deque_impl_dataC2Ev = comdat any + +$_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev = comdat any + +$_ZSt3maxImERKT_S2_S2_ = comdat any + +$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_allocate_mapEm = comdat any + +$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_create_nodesEPPS0_S4_ = comdat any + +$_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_ = comdat any + +$_ZNSt15__new_allocatorIP10queueEntryE8allocateEmPKv = comdat any + +$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv = comdat any + +$_ZNSt15__new_allocatorI10queueEntryE8allocateEmPKv = comdat any + +$_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv = comdat any + +$_ZNSt5dequeI10queueEntrySaIS0_EE9push_backERKS0_ = comdat any + +$_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_back_auxIJRKS0_EEEvDpOT_ = comdat any + +$_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv = comdat any + +$_ZNKSt5dequeI10queueEntrySaIS0_EE8max_sizeEv = comdat any + +$_ZNSt5dequeI10queueEntrySaIS0_EE22_M_reserve_map_at_backEm = comdat any + +$_ZStmiRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_ = comdat any + +$_ZNSt5dequeI10queueEntrySaIS0_EE11_S_max_sizeERKS1_ = comdat any + +$_ZSt3minImERKT_S2_S2_ = comdat any + +$_ZNSt5dequeI10queueEntrySaIS0_EE17_M_reallocate_mapEmb = comdat any + +$_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S3_ = comdat any + +$_ZSt13copy_backwardIPP10queueEntryS2_ET0_T_S4_S3_ = comdat any + +$_ZSt13__copy_move_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any + +$_ZSt12__miter_baseIPP10queueEntryET_S3_ = comdat any + +$_ZSt12__niter_wrapIPP10queueEntryET_RKS3_S3_ = comdat any + +$_ZSt14__copy_move_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any + +$_ZSt12__niter_baseIPP10queueEntryET_S3_ = comdat any + +$_ZSt14__copy_move_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any + +$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIP10queueEntryS4_EEPT0_PT_S8_S6_ = comdat any + +$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIP10queueEntryS4_EEvPT_PT0_ = comdat any + +$_ZSt22__copy_move_backward_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any + +$_ZSt23__copy_move_backward_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any + +$_ZSt23__copy_move_backward_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any + +$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIP10queueEntryS4_EEPT0_PT_S8_S6_ = comdat any + +$_ZNKSt5dequeI10queueEntrySaIS0_EE5emptyEv = comdat any + +$_ZSteqRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_ = comdat any + +$_ZNSt5dequeI10queueEntrySaIS0_EE5frontEv = comdat any + +$_ZNKSt15_Deque_iteratorI10queueEntryRS0_PS0_EdeEv = comdat any + +$_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv = comdat any + +$_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_front_auxEv = comdat any + +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z16getMinDiceThrowsPii(ptr noundef %0, i32 noundef %1) #0 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca %"class.std::queue", align 8 + %8 = alloca %struct.queueEntry, align 4 + %9 = alloca ptr, align 8 + %10 = alloca i32, align 4 + %11 = alloca %struct.queueEntry, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca %struct.queueEntry, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %15 = load i32, ptr %4, align 4 + %16 = sext i32 %15 to i64 + %17 = call noalias noundef nonnull ptr @_Znam(i64 noundef %16) #13 + store ptr %17, ptr %5, align 8 + store i32 0, ptr %6, align 4 + br label %18 + +18: ; preds = %27, %2 + %19 = load i32, ptr %6, align 4 + %20 = load i32, ptr %4, align 4 + %21 = icmp slt i32 %19, %20 + br i1 %21, label %22, label %30 + +22: ; preds = %18 + %23 = load ptr, ptr %5, align 8 + %24 = load i32, ptr %6, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds i8, ptr %23, i64 %25 + store i8 0, ptr %26, align 1 + br label %27 + +27: ; preds = %22 + %28 = load i32, ptr %6, align 4 + %29 = add nsw i32 %28, 1 + store i32 %29, ptr %6, align 4 + br label %18, !llvm.loop !6 + +30: ; preds = %18 + call void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEEC2IS3_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + %31 = load ptr, ptr %5, align 8 + %32 = getelementptr inbounds i8, ptr %31, i64 0 + store i8 1, ptr %32, align 1 + call void @llvm.memset.p0.i64(ptr align 4 %8, i8 0, i64 8, i1 false) + invoke void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE4pushERKS0_(ptr noundef nonnull align 8 dereferenceable(80) %7, ptr noundef nonnull align 4 dereferenceable(8) %8) + to label %33 unwind label %48 + +33: ; preds = %30 + br label %34 + +34: ; preds = %105, %33 + %35 = invoke noundef zeroext i1 @_ZNKSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %36 unwind label %48 + +36: ; preds = %34 + %37 = xor i1 %35, true + br i1 %37, label %38, label %106 + +38: ; preds = %36 + %39 = invoke noundef nonnull align 4 dereferenceable(8) ptr @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5frontEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %40 unwind label %48 + +40: ; preds = %38 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %11, ptr align 4 %39, i64 8, i1 false) + %41 = getelementptr inbounds %struct.queueEntry, ptr %11, i32 0, i32 0 + %42 = load i32, ptr %41, align 4 + store i32 %42, ptr %12, align 4 + %43 = load i32, ptr %12, align 4 + %44 = load i32, ptr %4, align 4 + %45 = sub nsw i32 %44, 1 + %46 = icmp eq i32 %43, %45 + br i1 %46, label %47, label %52 + +47: ; preds = %40 + br label %106 + +48: ; preds = %99, %52, %38, %34, %30 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %9, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %10, align 4 + call void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %7) #14 + br label %109 + +52: ; preds = %40 + invoke void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %53 unwind label %48 + +53: ; preds = %52 + %54 = load i32, ptr %12, align 4 + %55 = add nsw i32 %54, 1 + store i32 %55, ptr %13, align 4 + br label %56 + +56: ; preds = %102, %53 + %57 = load i32, ptr %13, align 4 + %58 = load i32, ptr %12, align 4 + %59 = add nsw i32 %58, 6 + %60 = icmp sle i32 %57, %59 + br i1 %60, label %61, label %65 + +61: ; preds = %56 + %62 = load i32, ptr %13, align 4 + %63 = load i32, ptr %4, align 4 + %64 = icmp slt i32 %62, %63 + br label %65 + +65: ; preds = %61, %56 + %66 = phi i1 [ false, %56 ], [ %64, %61 ] + br i1 %66, label %67, label %105 + +67: ; preds = %65 + %68 = load ptr, ptr %5, align 8 + %69 = load i32, ptr %13, align 4 + %70 = sext i32 %69 to i64 + %71 = getelementptr inbounds i8, ptr %68, i64 %70 + %72 = load i8, ptr %71, align 1 + %73 = trunc i8 %72 to i1 + br i1 %73, label %101, label %74 + +74: ; preds = %67 + %75 = getelementptr inbounds %struct.queueEntry, ptr %11, i32 0, i32 1 + %76 = load i32, ptr %75, align 4 + %77 = add nsw i32 %76, 1 + %78 = getelementptr inbounds %struct.queueEntry, ptr %14, i32 0, i32 1 + store i32 %77, ptr %78, align 4 + %79 = load ptr, ptr %5, align 8 + %80 = load i32, ptr %13, align 4 + %81 = sext i32 %80 to i64 + %82 = getelementptr inbounds i8, ptr %79, i64 %81 + store i8 1, ptr %82, align 1 + %83 = load ptr, ptr %3, align 8 + %84 = load i32, ptr %13, align 4 + %85 = sext i32 %84 to i64 + %86 = getelementptr inbounds i32, ptr %83, i64 %85 + %87 = load i32, ptr %86, align 4 + %88 = icmp ne i32 %87, -1 + br i1 %88, label %89, label %96 + +89: ; preds = %74 + %90 = load ptr, ptr %3, align 8 + %91 = load i32, ptr %13, align 4 + %92 = sext i32 %91 to i64 + %93 = getelementptr inbounds i32, ptr %90, i64 %92 + %94 = load i32, ptr %93, align 4 + %95 = getelementptr inbounds %struct.queueEntry, ptr %14, i32 0, i32 0 + store i32 %94, ptr %95, align 4 + br label %99 + +96: ; preds = %74 + %97 = load i32, ptr %13, align 4 + %98 = getelementptr inbounds %struct.queueEntry, ptr %14, i32 0, i32 0 + store i32 %97, ptr %98, align 4 + br label %99 + +99: ; preds = %96, %89 + invoke void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE4pushERKS0_(ptr noundef nonnull align 8 dereferenceable(80) %7, ptr noundef nonnull align 4 dereferenceable(8) %14) + to label %100 unwind label %48 + +100: ; preds = %99 + br label %101 + +101: ; preds = %100, %67 + br label %102 + +102: ; preds = %101 + %103 = load i32, ptr %13, align 4 + %104 = add nsw i32 %103, 1 + store i32 %104, ptr %13, align 4 + br label %56, !llvm.loop !8 + +105: ; preds = %65 + br label %34, !llvm.loop !9 + +106: ; preds = %47, %36 + %107 = getelementptr inbounds %struct.queueEntry, ptr %11, i32 0, i32 1 + %108 = load i32, ptr %107, align 4 + call void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %7) #14 + ret i32 %108 + +109: ; preds = %48 + %110 = load ptr, ptr %9, align 8 + %111 = load i32, ptr %10, align 4 + %112 = insertvalue { ptr, i32 } poison, ptr %110, 0 + %113 = insertvalue { ptr, i32 } %112, i32 %111, 1 + resume { ptr, i32 } %113 +} + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #1 + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEEC2IS3_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + call void @llvm.memset.p0.i64(ptr align 8 %4, i8 0, i64 80, i1 false) + call void @_ZNSt5dequeI10queueEntrySaIS0_EEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %4) + ret void +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #3 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE4pushERKS0_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(8) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"class.std::queue", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + call void @_ZNSt5dequeI10queueEntrySaIS0_EE9push_backERKS0_(ptr noundef nonnull align 8 dereferenceable(80) %6, ptr noundef nonnull align 4 dereferenceable(8) %7) + ret void +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + %5 = call noundef zeroext i1 @_ZNKSt5dequeI10queueEntrySaIS0_EE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #14 + ret i1 %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(8) ptr @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5frontEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + %5 = call noundef nonnull align 4 dereferenceable(8) ptr @_ZNSt5dequeI10queueEntrySaIS0_EE5frontEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #14 + ret ptr %5 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + call void @_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::queue", ptr %3, i32 0, i32 0 + call void @_ZNSt5dequeI10queueEntrySaIS0_EED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %4) #14 + ret void +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #7 { + %1 = alloca i32, align 4 + %2 = alloca i32, align 4 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + store i32 30, ptr %2, align 4 + %6 = load i32, ptr %2, align 4 + %7 = zext i32 %6 to i64 + %8 = call ptr @llvm.stacksave() + store ptr %8, ptr %3, align 8 + %9 = alloca i32, i64 %7, align 16 + store i64 %7, ptr %4, align 8 + store i32 0, ptr %5, align 4 + br label %10 + +10: ; preds = %18, %0 + %11 = load i32, ptr %5, align 4 + %12 = load i32, ptr %2, align 4 + %13 = icmp slt i32 %11, %12 + br i1 %13, label %14, label %21 + +14: ; preds = %10 + %15 = load i32, ptr %5, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds i32, ptr %9, i64 %16 + store i32 -1, ptr %17, align 4 + br label %18 + +18: ; preds = %14 + %19 = load i32, ptr %5, align 4 + %20 = add nsw i32 %19, 1 + store i32 %20, ptr %5, align 4 + br label %10, !llvm.loop !10 + +21: ; preds = %10 + %22 = getelementptr inbounds i32, ptr %9, i64 2 + store i32 21, ptr %22, align 8 + %23 = getelementptr inbounds i32, ptr %9, i64 4 + store i32 7, ptr %23, align 16 + %24 = getelementptr inbounds i32, ptr %9, i64 10 + store i32 25, ptr %24, align 8 + %25 = getelementptr inbounds i32, ptr %9, i64 19 + store i32 28, ptr %25, align 4 + %26 = getelementptr inbounds i32, ptr %9, i64 26 + store i32 0, ptr %26, align 8 + %27 = getelementptr inbounds i32, ptr %9, i64 20 + store i32 8, ptr %27, align 16 + %28 = getelementptr inbounds i32, ptr %9, i64 16 + store i32 3, ptr %28, align 16 + %29 = getelementptr inbounds i32, ptr %9, i64 18 + store i32 6, ptr %29, align 8 + %30 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %31 = load i32, ptr %2, align 4 + %32 = call noundef i32 @_Z16getMinDiceThrowsPii(ptr noundef %9, i32 noundef %31) + %33 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %30, i32 noundef %32) + store i32 0, ptr %1, align 4 + %34 = load ptr, ptr %3, align 8 + call void @llvm.stackrestore(ptr %34) + %35 = load i32, ptr %1, align 4 + ret i32 %35 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #8 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #9 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #9 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #8 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_Deque_iterator", align 8 + %4 = alloca %"struct.std::_Deque_iterator", align 8 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %3, ptr noundef nonnull align 8 dereferenceable(80) %5) #14 + call void @_ZNSt5dequeI10queueEntrySaIS0_EE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %4, ptr noundef nonnull align 8 dereferenceable(80) %5) #14 + %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #14 + invoke void @_ZNSt5dequeI10queueEntrySaIS0_EE15_M_destroy_dataESt15_Deque_iteratorIS0_RS0_PS0_ES6_RKS1_(ptr noundef nonnull align 8 dereferenceable(80) %5, ptr noundef %3, ptr noundef %4, ptr noundef nonnull align 1 dereferenceable(1) %6) + to label %7 unwind label %8 + +7: ; preds = %1 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #14 + ret void + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + catch ptr null + %10 = extractvalue { ptr, i32 } %9, 0 + call void @__clang_call_terminate(ptr %10) #15 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE15_M_destroy_dataESt15_Deque_iteratorIS0_RS0_PS0_ES6_RKS1_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #4 comdat align 2 { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %3, ptr %6, align 8 + %7 = load ptr, ptr %5, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %7) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE3endEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %7) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #10 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #14 + call void @_ZSt9terminatev() #15 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 0 + %6 = load ptr, ptr %5, align 8 + %7 = icmp ne ptr %6, null + br i1 %7, label %8, label %24 + +8: ; preds = %1 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %9, i32 0, i32 2 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %10, i32 0, i32 3 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %14 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %13, i32 0, i32 3 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %14, i32 0, i32 3 + %16 = load ptr, ptr %15, align 8 + %17 = getelementptr inbounds ptr, ptr %16, i64 1 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_destroy_nodesEPPS0_S4_(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %12, ptr noundef %17) #14 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 0 + %20 = load ptr, ptr %19, align 8 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 1 + %23 = load i64, ptr %22, align 8 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %20, i64 noundef %23) #14 + br label %24 + +24: ; preds = %8, %1 + %25 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %25) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) unnamed_addr #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + store ptr %9, ptr %6, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 1 + %13 = load ptr, ptr %12, align 8 + store ptr %13, ptr %10, align 8 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + %15 = load ptr, ptr %4, align 8 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 2 + %17 = load ptr, ptr %16, align 8 + store ptr %17, ptr %14, align 8 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + %19 = load ptr, ptr %4, align 8 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + store ptr %21, ptr %18, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_destroy_nodesEPPS0_S4_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %7, align 8 + br label %10 + +10: ; preds = %17, %3 + %11 = load ptr, ptr %7, align 8 + %12 = load ptr, ptr %6, align 8 + %13 = icmp ult ptr %11, %12 + br i1 %13, label %14, label %20 + +14: ; preds = %10 + %15 = load ptr, ptr %7, align 8 + %16 = load ptr, ptr %15, align 8 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_(ptr noundef nonnull align 8 dereferenceable(80) %8, ptr noundef %16) #14 + br label %17 + +17: ; preds = %14 + %18 = load ptr, ptr %7, align 8 + %19 = getelementptr inbounds ptr, ptr %18, i32 1 + store ptr %19, ptr %7, align 8 + br label %10, !llvm.loop !11 + +20: ; preds = %10 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, i64 noundef %2) #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca %"class.std::allocator.0", align 1 + store ptr %0, ptr %8, align 8 + store ptr %1, ptr %9, align 8 + store i64 %2, ptr %10, align 8 + %12 = load ptr, ptr %8, align 8 + call void @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.0") align 1 %11, ptr noundef nonnull align 8 dereferenceable(80) %12) #14 + %13 = load ptr, ptr %9, align 8 + %14 = load i64, ptr %10, align 8 + store ptr %11, ptr %5, align 8 + store ptr %13, ptr %6, align 8 + store i64 %14, ptr %7, align 8 + %15 = load ptr, ptr %5, align 8 + %16 = load ptr, ptr %6, align 8 + %17 = load i64, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIP10queueEntryE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %3 + store ptr %11, ptr %4, align 8 + %19 = load ptr, ptr %4, align 8 + call void @_ZNSt15__new_allocatorIP10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #14 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #15 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorI10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %7, align 8 + %11 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 8) + to label %12 unwind label %17 + +12: ; preds = %2 + store ptr %9, ptr %3, align 8 + store ptr %10, ptr %4, align 8 + store i64 %11, ptr %5, align 8 + %13 = load ptr, ptr %3, align 8 + %14 = load ptr, ptr %4, align 8 + %15 = load i64, ptr %5, align 8 + call void @_ZNSt15__new_allocatorI10queueEntryE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14, i64 noundef %15) + br label %16 + +16: ; preds = %12 + ret void + +17: ; preds = %2 + %18 = landingpad { ptr, i32 } + catch ptr null + %19 = extractvalue { ptr, i32 } %18, 0 + call void @__clang_call_terminate(ptr %19) #15 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #4 comdat { + %2 = alloca i64, align 8 + store i64 %0, ptr %2, align 8 + %3 = load i64, ptr %2, align 8 + %4 = icmp ult i64 %3, 512 + br i1 %4, label %5, label %8 + +5: ; preds = %1 + %6 = load i64, ptr %2, align 8 + %7 = udiv i64 512, %6 + br label %9 + +8: ; preds = %1 + br label %9 + +9: ; preds = %8, %5 + %10 = phi i64 [ %7, %5 ], [ 1, %8 ] + ret i64 %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorI10queueEntryE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #16 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #11 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv(ptr noalias sret(%"class.std::allocator.0") align 1 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %7, align 8 + %9 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %8) #14 + store ptr %0, ptr %4, align 8 + store ptr %9, ptr %5, align 8 + %10 = load ptr, ptr %4, align 8 + store ptr %10, ptr %3, align 8 + %11 = load ptr, ptr %3, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIP10queueEntryE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #16 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIP10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorI10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #2 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) + ret void +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #2 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #14 + invoke void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) + to label %7 unwind label %8 + +7: ; preds = %1 + ret void + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + cleanup + %10 = extractvalue { ptr, i32 } %9, 0 + store ptr %10, ptr %3, align 8 + %11 = extractvalue { ptr, i32 } %9, 1 + store i32 %11, ptr %4, align 4 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #14 + br label %12 + +12: ; preds = %8 + %13 = load ptr, ptr %3, align 8 + %14 = load i32, ptr %4, align 4 + %15 = insertvalue { ptr, i32 } poison, ptr %13, 0 + %16 = insertvalue { ptr, i32 } %15, i32 %14, 1 + resume { ptr, i32 } %16 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #14 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i64, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %12 = load ptr, ptr %3, align 8 + %13 = load i64, ptr %4, align 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, ptr %5, align 8 + store i64 8, ptr %6, align 8 + %17 = load i64, ptr %5, align 8 + %18 = add i64 %17, 2 + store i64 %18, ptr %7, align 8 + %19 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + %20 = load i64, ptr %19, align 8 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 1 + store i64 %20, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 1 + %25 = load i64, ptr %24, align 8 + %26 = call noundef ptr @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %25) + %27 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %28 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %27, i32 0, i32 0 + store ptr %26, ptr %28, align 8 + %29 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + %32 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %32, i32 0, i32 1 + %34 = load i64, ptr %33, align 8 + %35 = load i64, ptr %5, align 8 + %36 = sub i64 %34, %35 + %37 = udiv i64 %36, 2 + %38 = getelementptr inbounds ptr, ptr %31, i64 %37 + store ptr %38, ptr %8, align 8 + %39 = load ptr, ptr %8, align 8 + %40 = load i64, ptr %5, align 8 + %41 = getelementptr inbounds ptr, ptr %39, i64 %40 + store ptr %41, ptr %9, align 8 + %42 = load ptr, ptr %8, align 8 + %43 = load ptr, ptr %9, align 8 + invoke void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_create_nodesEPPS0_S4_(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %42, ptr noundef %43) + to label %44 unwind label %45 + +44: ; preds = %2 + br label %67 + +45: ; preds = %2 + %46 = landingpad { ptr, i32 } + catch ptr null + %47 = extractvalue { ptr, i32 } %46, 0 + store ptr %47, ptr %10, align 8 + %48 = extractvalue { ptr, i32 } %46, 1 + store i32 %48, ptr %11, align 4 + br label %49 + +49: ; preds = %45 + %50 = load ptr, ptr %10, align 8 + %51 = call ptr @__cxa_begin_catch(ptr %50) #14 + %52 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %53 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %52, i32 0, i32 0 + %54 = load ptr, ptr %53, align 8 + %55 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %56 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %55, i32 0, i32 1 + %57 = load i64, ptr %56, align 8 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %54, i64 noundef %57) #14 + %58 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %58, i32 0, i32 0 + store ptr null, ptr %59, align 8 + %60 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %61 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %60, i32 0, i32 1 + store i64 0, ptr %61, align 8 + invoke void @__cxa_rethrow() #17 + to label %101 unwind label %62 + +62: ; preds = %49 + %63 = landingpad { ptr, i32 } + cleanup + %64 = extractvalue { ptr, i32 } %63, 0 + store ptr %64, ptr %10, align 8 + %65 = extractvalue { ptr, i32 } %63, 1 + store i32 %65, ptr %11, align 4 + invoke void @__cxa_end_catch() + to label %66 unwind label %98 + +66: ; preds = %62 + br label %93 + +67: ; preds = %44 + %68 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %68, i32 0, i32 2 + %70 = load ptr, ptr %8, align 8 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(ptr noundef nonnull align 8 dereferenceable(32) %69, ptr noundef %70) #14 + %71 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %72 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %71, i32 0, i32 3 + %73 = load ptr, ptr %9, align 8 + %74 = getelementptr inbounds ptr, ptr %73, i64 -1 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(ptr noundef nonnull align 8 dereferenceable(32) %72, ptr noundef %74) #14 + %75 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %76 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %75, i32 0, i32 2 + %77 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %76, i32 0, i32 1 + %78 = load ptr, ptr %77, align 8 + %79 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %80 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %79, i32 0, i32 2 + %81 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %80, i32 0, i32 0 + store ptr %78, ptr %81, align 8 + %82 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %82, i32 0, i32 3 + %84 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %83, i32 0, i32 1 + %85 = load ptr, ptr %84, align 8 + %86 = load i64, ptr %4, align 8 + %87 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 8) + %88 = urem i64 %86, %87 + %89 = getelementptr inbounds %struct.queueEntry, ptr %85, i64 %88 + %90 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %91 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %90, i32 0, i32 3 + %92 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %91, i32 0, i32 0 + store ptr %89, ptr %92, align 8 + ret void + +93: ; preds = %66 + %94 = load ptr, ptr %10, align 8 + %95 = load i32, ptr %11, align 4 + %96 = insertvalue { ptr, i32 } poison, ptr %94, 0 + %97 = insertvalue { ptr, i32 } %96, i32 %95, 1 + resume { ptr, i32 } %97 + +98: ; preds = %62 + %99 = landingpad { ptr, i32 } + catch ptr null + %100 = extractvalue { ptr, i32 } %99, 0 + call void @__clang_call_terminate(ptr %100) #15 + unreachable + +101: ; preds = %49 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 1 + store i64 0, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 2 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #14 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 1 + store ptr null, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 2 + store ptr null, ptr %6, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 3 + store ptr null, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #4 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #2 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca %"class.std::allocator.0", align 1 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %7, align 8 + store i64 %1, ptr %8, align 8 + %12 = load ptr, ptr %7, align 8 + call void @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.0") align 1 %9, ptr noundef nonnull align 8 dereferenceable(80) %12) #14 + %13 = load i64, ptr %8, align 8 + store ptr %9, ptr %3, align 8 + store i64 %13, ptr %4, align 8 + %14 = load ptr, ptr %3, align 8 + %15 = load i64, ptr %4, align 8 + %16 = invoke noundef ptr @_ZNSt15__new_allocatorIP10queueEntryE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %14, i64 noundef %15, ptr noundef null) + to label %17 unwind label %20 + +17: ; preds = %2 + br label %18 + +18: ; preds = %17 + store ptr %9, ptr %6, align 8 + %19 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIP10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #14 + ret ptr %16 + +20: ; preds = %2 + %21 = landingpad { ptr, i32 } + cleanup + %22 = extractvalue { ptr, i32 } %21, 0 + store ptr %22, ptr %10, align 8 + %23 = extractvalue { ptr, i32 } %21, 1 + store i32 %23, ptr %11, align 4 + store ptr %9, ptr %5, align 8 + %24 = load ptr, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIP10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %24) #14 + br label %25 + +25: ; preds = %20 + %26 = load ptr, ptr %10, align 8 + %27 = load i32, ptr %11, align 4 + %28 = insertvalue { ptr, i32 } poison, ptr %26, 0 + %29 = insertvalue { ptr, i32 } %28, i32 %27, 1 + resume { ptr, i32 } %29 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_create_nodesEPPS0_S4_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = load ptr, ptr %5, align 8 + store ptr %11, ptr %7, align 8 + br label %12 + +12: ; preds = %20, %3 + %13 = load ptr, ptr %7, align 8 + %14 = load ptr, ptr %6, align 8 + %15 = icmp ult ptr %13, %14 + br i1 %15, label %16, label %32 + +16: ; preds = %12 + %17 = invoke noundef ptr @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %10) + to label %18 unwind label %23 + +18: ; preds = %16 + %19 = load ptr, ptr %7, align 8 + store ptr %17, ptr %19, align 8 + br label %20 + +20: ; preds = %18 + %21 = load ptr, ptr %7, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i32 1 + store ptr %22, ptr %7, align 8 + br label %12, !llvm.loop !12 + +23: ; preds = %16 + %24 = landingpad { ptr, i32 } + catch ptr null + %25 = extractvalue { ptr, i32 } %24, 0 + store ptr %25, ptr %8, align 8 + %26 = extractvalue { ptr, i32 } %24, 1 + store i32 %26, ptr %9, align 4 + br label %27 + +27: ; preds = %23 + %28 = load ptr, ptr %8, align 8 + %29 = call ptr @__cxa_begin_catch(ptr %28) #14 + %30 = load ptr, ptr %5, align 8 + %31 = load ptr, ptr %7, align 8 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_destroy_nodesEPPS0_S4_(ptr noundef nonnull align 8 dereferenceable(80) %10, ptr noundef %30, ptr noundef %31) #14 + invoke void @__cxa_rethrow() #17 + to label %47 unwind label %33 + +32: ; preds = %12 + br label %38 + +33: ; preds = %27 + %34 = landingpad { ptr, i32 } + cleanup + %35 = extractvalue { ptr, i32 } %34, 0 + store ptr %35, ptr %8, align 8 + %36 = extractvalue { ptr, i32 } %34, 1 + store i32 %36, ptr %9, align 4 + invoke void @__cxa_end_catch() + to label %37 unwind label %44 + +37: ; preds = %33 + br label %39 + +38: ; preds = %32 + ret void + +39: ; preds = %37 + %40 = load ptr, ptr %8, align 8 + %41 = load i32, ptr %9, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 + +44: ; preds = %33 + %45 = landingpad { ptr, i32 } + catch ptr null + %46 = extractvalue { ptr, i32 } %45, 0 + call void @__clang_call_terminate(ptr %46) #15 + unreachable + +47: ; preds = %27 + unreachable +} + +declare void @__cxa_rethrow() + +declare void @__cxa_end_catch() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + store ptr %6, ptr %7, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + store ptr %9, ptr %10, align 8 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %12 = load ptr, ptr %11, align 8 + %13 = call noundef i64 @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv() #14 + %14 = getelementptr inbounds %struct.queueEntry, ptr %12, i64 %13 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + store ptr %14, ptr %15, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIP10queueEntryE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 1152921504606846975 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #17 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 8 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #13 + ret ptr %20 +} + +; Function Attrs: noreturn +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 noundef nonnull ptr @_Znwm(i64 noundef) #1 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 8) + store ptr %6, ptr %2, align 8 + store i64 %7, ptr %3, align 8 + %8 = load ptr, ptr %2, align 8 + %9 = load i64, ptr %3, align 8 + %10 = call noundef ptr @_ZNSt15__new_allocatorI10queueEntryE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %8, i64 noundef %9, ptr noundef null) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorI10queueEntryE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 1152921504606846975 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #17 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 8 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #13 + ret ptr %20 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv() #4 comdat align 2 { + %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 8) + ret i64 %1 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE9push_backERKS0_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(8) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %16, i32 0, i32 3 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %17, i32 0, i32 2 + %19 = load ptr, ptr %18, align 8 + %20 = getelementptr inbounds %struct.queueEntry, ptr %19, i64 -1 + %21 = icmp ne ptr %15, %20 + br i1 %21, label %22, label %40 + +22: ; preds = %2 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %33, ptr align 4 %34, i64 8, i1 false) + %35 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %36 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %35, i32 0, i32 3 + %37 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %36, i32 0, i32 0 + %38 = load ptr, ptr %37, align 8 + %39 = getelementptr inbounds %struct.queueEntry, ptr %38, i32 1 + store ptr %39, ptr %37, align 8 + br label %42 + +40: ; preds = %2 + %41 = load ptr, ptr %10, align 8 + call void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_back_auxIJRKS0_EEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %11, ptr noundef nonnull align 4 dereferenceable(8) %41) + br label %42 + +42: ; preds = %40, %22 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_back_auxIJRKS0_EEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(8) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = call noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #14 + %13 = call noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #14 + %14 = icmp eq i64 %12, %13 + br i1 %14, label %15, label %16 + +15: ; preds = %2 + call void @_ZSt20__throw_length_errorPKc(ptr noundef @.str.1) #17 + unreachable + +16: ; preds = %2 + call void @_ZNSt5dequeI10queueEntrySaIS0_EE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) + %17 = call noundef ptr @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 3 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i64 1 + store ptr %17, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %33, ptr align 4 %34, i64 8, i1 false) + %35 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %36 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %35, i32 0, i32 3 + %37 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %37, i32 0, i32 3 + %39 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %38, i32 0, i32 3 + %40 = load ptr, ptr %39, align 8 + %41 = getelementptr inbounds ptr, ptr %40, i64 1 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(ptr noundef nonnull align 8 dereferenceable(32) %36, ptr noundef %41) #14 + %42 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %43 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %42, i32 0, i32 3 + %44 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %43, i32 0, i32 1 + %45 = load ptr, ptr %44, align 8 + %46 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %47 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %46, i32 0, i32 3 + %48 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %47, i32 0, i32 0 + store ptr %45, ptr %48, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 3 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + %8 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %7) #14 + ret i64 %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #14 + %5 = call noundef i64 @_ZNSt5dequeI10queueEntrySaIS0_EE11_S_max_sizeERKS1_(ptr noundef nonnull align 1 dereferenceable(1) %4) #14 + ret i64 %5 +} + +; Function Attrs: noreturn +declare void @_ZSt20__throw_length_errorPKc(ptr noundef) #12 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = add i64 %6, 1 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %11, i32 0, i32 3 + %13 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %12, i32 0, i32 3 + %14 = load ptr, ptr %13, align 8 + %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 0 + %17 = load ptr, ptr %16, align 8 + %18 = ptrtoint ptr %14 to i64 + %19 = ptrtoint ptr %17 to i64 + %20 = sub i64 %18, %19 + %21 = sdiv exact i64 %20, 8 + %22 = sub i64 %10, %21 + %23 = icmp ugt i64 %7, %22 + br i1 %23, label %24, label %26 + +24: ; preds = %2 + %25 = load i64, ptr %4, align 8 + call void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %25, i1 noundef zeroext false) + br label %26 + +26: ; preds = %24, %2 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) #4 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = call noundef i64 @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv() #14 + %6 = load ptr, ptr %3, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %6, i32 0, i32 3 + %8 = load ptr, ptr %7, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 3 + %11 = load ptr, ptr %10, align 8 + %12 = ptrtoint ptr %8 to i64 + %13 = ptrtoint ptr %11 to i64 + %14 = sub i64 %12, %13 + %15 = sdiv exact i64 %14, 8 + %16 = load ptr, ptr %3, align 8 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 3 + %18 = load ptr, ptr %17, align 8 + %19 = icmp ne ptr %18, null + %20 = zext i1 %19 to i64 + %21 = sub nsw i64 %15, %20 + %22 = mul nsw i64 %5, %21 + %23 = load ptr, ptr %3, align 8 + %24 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %23, i32 0, i32 0 + %25 = load ptr, ptr %24, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 1 + %28 = load ptr, ptr %27, align 8 + %29 = ptrtoint ptr %25 to i64 + %30 = ptrtoint ptr %28 to i64 + %31 = sub i64 %29, %30 + %32 = sdiv exact i64 %31, 8 + %33 = add nsw i64 %22, %32 + %34 = load ptr, ptr %4, align 8 + %35 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %34, i32 0, i32 2 + %36 = load ptr, ptr %35, align 8 + %37 = load ptr, ptr %4, align 8 + %38 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = ptrtoint ptr %36 to i64 + %41 = ptrtoint ptr %39 to i64 + %42 = sub i64 %40, %41 + %43 = sdiv exact i64 %42, 8 + %44 = add nsw i64 %33, %43 + ret i64 %44 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeI10queueEntrySaIS0_EE11_S_max_sizeERKS1_(ptr noundef nonnull align 1 dereferenceable(1) %0) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %5, align 8 + store i64 9223372036854775807, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + store ptr %8, ptr %4, align 8 + %9 = load ptr, ptr %4, align 8 + store ptr %9, ptr %3, align 8 + %10 = load ptr, ptr %3, align 8 + store ptr %10, ptr %2, align 8 + %11 = load ptr, ptr %2, align 8 + store i64 1152921504606846975, ptr %7, align 8 + %12 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + to label %13 unwind label %15 + +13: ; preds = %1 + %14 = load i64, ptr %12, align 8 + ret i64 %14 + +15: ; preds = %1 + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #15 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #4 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca i8, align 1 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + %12 = zext i1 %2 to i8 + store i8 %12, ptr %6, align 1 + %13 = load ptr, ptr %4, align 8 + %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %14, i32 0, i32 3 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 3 + %17 = load ptr, ptr %16, align 8 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 2 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = ptrtoint ptr %17 to i64 + %23 = ptrtoint ptr %21 to i64 + %24 = sub i64 %22, %23 + %25 = sdiv exact i64 %24, 8 + %26 = add nsw i64 %25, 1 + store i64 %26, ptr %7, align 8 + %27 = load i64, ptr %7, align 8 + %28 = load i64, ptr %5, align 8 + %29 = add i64 %27, %28 + store i64 %29, ptr %8, align 8 + %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 1 + %32 = load i64, ptr %31, align 8 + %33 = load i64, ptr %8, align 8 + %34 = mul i64 2, %33 + %35 = icmp ugt i64 %32, %34 + br i1 %35, label %36, label %88 + +36: ; preds = %3 + %37 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %41 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %40, i32 0, i32 1 + %42 = load i64, ptr %41, align 8 + %43 = load i64, ptr %8, align 8 + %44 = sub i64 %42, %43 + %45 = udiv i64 %44, 2 + %46 = getelementptr inbounds ptr, ptr %39, i64 %45 + %47 = load i8, ptr %6, align 1 + %48 = trunc i8 %47 to i1 + br i1 %48, label %49, label %51 + +49: ; preds = %36 + %50 = load i64, ptr %5, align 8 + br label %52 + +51: ; preds = %36 + br label %52 + +52: ; preds = %51, %49 + %53 = phi i64 [ %50, %49 ], [ 0, %51 ] + %54 = getelementptr inbounds ptr, ptr %46, i64 %53 + store ptr %54, ptr %9, align 8 + %55 = load ptr, ptr %9, align 8 + %56 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %57 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %56, i32 0, i32 2 + %58 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %57, i32 0, i32 3 + %59 = load ptr, ptr %58, align 8 + %60 = icmp ult ptr %55, %59 + br i1 %60, label %61, label %73 + +61: ; preds = %52 + %62 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %62, i32 0, i32 2 + %64 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %63, i32 0, i32 3 + %65 = load ptr, ptr %64, align 8 + %66 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %66, i32 0, i32 3 + %68 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %67, i32 0, i32 3 + %69 = load ptr, ptr %68, align 8 + %70 = getelementptr inbounds ptr, ptr %69, i64 1 + %71 = load ptr, ptr %9, align 8 + %72 = call noundef ptr @_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S3_(ptr noundef %65, ptr noundef %70, ptr noundef %71) + br label %87 + +73: ; preds = %52 + %74 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %75 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %74, i32 0, i32 2 + %76 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %75, i32 0, i32 3 + %77 = load ptr, ptr %76, align 8 + %78 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %78, i32 0, i32 3 + %80 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %79, i32 0, i32 3 + %81 = load ptr, ptr %80, align 8 + %82 = getelementptr inbounds ptr, ptr %81, i64 1 + %83 = load ptr, ptr %9, align 8 + %84 = load i64, ptr %7, align 8 + %85 = getelementptr inbounds ptr, ptr %83, i64 %84 + %86 = call noundef ptr @_ZSt13copy_backwardIPP10queueEntryS2_ET0_T_S4_S3_(ptr noundef %77, ptr noundef %82, ptr noundef %85) + br label %87 + +87: ; preds = %73, %61 + br label %137 + +88: ; preds = %3 + %89 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %90 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %89, i32 0, i32 1 + %91 = load i64, ptr %90, align 8 + %92 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %92, i32 0, i32 1 + %94 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %93, ptr noundef nonnull align 8 dereferenceable(8) %5) + %95 = load i64, ptr %94, align 8 + %96 = add i64 %91, %95 + %97 = add i64 %96, 2 + store i64 %97, ptr %10, align 8 + %98 = load i64, ptr %10, align 8 + %99 = call noundef ptr @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %13, i64 noundef %98) + store ptr %99, ptr %11, align 8 + %100 = load ptr, ptr %11, align 8 + %101 = load i64, ptr %10, align 8 + %102 = load i64, ptr %8, align 8 + %103 = sub i64 %101, %102 + %104 = udiv i64 %103, 2 + %105 = getelementptr inbounds ptr, ptr %100, i64 %104 + %106 = load i8, ptr %6, align 1 + %107 = trunc i8 %106 to i1 + br i1 %107, label %108, label %110 + +108: ; preds = %88 + %109 = load i64, ptr %5, align 8 + br label %111 + +110: ; preds = %88 + br label %111 + +111: ; preds = %110, %108 + %112 = phi i64 [ %109, %108 ], [ 0, %110 ] + %113 = getelementptr inbounds ptr, ptr %105, i64 %112 + store ptr %113, ptr %9, align 8 + %114 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %115 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %114, i32 0, i32 2 + %116 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %115, i32 0, i32 3 + %117 = load ptr, ptr %116, align 8 + %118 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %119 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %118, i32 0, i32 3 + %120 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %119, i32 0, i32 3 + %121 = load ptr, ptr %120, align 8 + %122 = getelementptr inbounds ptr, ptr %121, i64 1 + %123 = load ptr, ptr %9, align 8 + %124 = call noundef ptr @_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S3_(ptr noundef %117, ptr noundef %122, ptr noundef %123) + %125 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %126 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %125, i32 0, i32 0 + %127 = load ptr, ptr %126, align 8 + %128 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %129 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %128, i32 0, i32 1 + %130 = load i64, ptr %129, align 8 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(ptr noundef nonnull align 8 dereferenceable(80) %13, ptr noundef %127, i64 noundef %130) #14 + %131 = load ptr, ptr %11, align 8 + %132 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %133 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %132, i32 0, i32 0 + store ptr %131, ptr %133, align 8 + %134 = load i64, ptr %10, align 8 + %135 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %136 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %135, i32 0, i32 1 + store i64 %134, ptr %136, align 8 + br label %137 + +137: ; preds = %111, %87 + %138 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %139 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %138, i32 0, i32 2 + %140 = load ptr, ptr %9, align 8 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(ptr noundef nonnull align 8 dereferenceable(32) %139, ptr noundef %140) #14 + %141 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %141, i32 0, i32 3 + %143 = load ptr, ptr %9, align 8 + %144 = load i64, ptr %7, align 8 + %145 = getelementptr inbounds ptr, ptr %143, i64 %144 + %146 = getelementptr inbounds ptr, ptr %145, i64 -1 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(ptr noundef nonnull align 8 dereferenceable(32) %142, ptr noundef %146) #14 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S3_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPP10queueEntryET_S3_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPP10queueEntryET_S3_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt13__copy_move_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPP10queueEntryS2_ET0_T_S4_S3_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPP10queueEntryET_S3_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPP10queueEntryET_S3_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt22__copy_move_backward_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPP10queueEntryET_S3_(ptr noundef %7) #14 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPP10queueEntryET_S3_(ptr noundef %9) #14 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPP10queueEntryET_S3_(ptr noundef %11) #14 + %13 = call noundef ptr @_ZSt14__copy_move_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPP10queueEntryET_RKS3_S3_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPP10queueEntryET_S3_(ptr noundef %0) #4 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPP10queueEntryET_RKS3_S3_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) #4 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt14__copy_move_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPP10queueEntryET_S3_(ptr noundef %0) #4 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIP10queueEntryS4_EEPT0_PT_S8_S6_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIP10queueEntryS4_EEPT0_PT_S8_S6_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %21 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load i64, ptr %7, align 8 + %20 = mul i64 8, %19 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %17, ptr align 8 %18, i64 %20, i1 false) + br label %28 + +21: ; preds = %3 + %22 = load i64, ptr %7, align 8 + %23 = icmp eq i64 %22, 1 + br i1 %23, label %24, label %27 + +24: ; preds = %21 + %25 = load ptr, ptr %6, align 8 + %26 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIP10queueEntryS4_EEvPT_PT0_(ptr noundef %25, ptr noundef %26) + br label %27 + +27: ; preds = %24, %21 + br label %28 + +28: ; preds = %27, %16 + %29 = load ptr, ptr %6, align 8 + %30 = load i64, ptr %7, align 8 + %31 = getelementptr inbounds ptr, ptr %29, i64 %30 + ret ptr %31 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memmove.p0.p0.i64(ptr nocapture writeonly, ptr nocapture readonly, i64, i1 immarg) #5 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIP10queueEntryS4_EEvPT_PT0_(ptr noundef %0, ptr noundef %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load ptr, ptr %3, align 8 + store ptr %6, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPP10queueEntryET_S3_(ptr noundef %7) #14 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPP10queueEntryET_S3_(ptr noundef %9) #14 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPP10queueEntryET_S3_(ptr noundef %11) #14 + %13 = call noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPP10queueEntryET_RKS3_S3_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIP10queueEntryS4_EEPT0_PT_S8_S6_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIP10queueEntryS4_EEPT0_PT_S8_S6_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %24 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load i64, ptr %7, align 8 + %19 = sub i64 0, %18 + %20 = getelementptr inbounds ptr, ptr %17, i64 %19 + %21 = load ptr, ptr %4, align 8 + %22 = load i64, ptr %7, align 8 + %23 = mul i64 8, %22 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %20, ptr align 8 %21, i64 %23, i1 false) + br label %32 + +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 + +27: ; preds = %24 + %28 = load ptr, ptr %6, align 8 + %29 = getelementptr inbounds ptr, ptr %28, i64 -1 + %30 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIP10queueEntryS4_EEvPT_PT0_(ptr noundef %29, ptr noundef %30) + br label %31 + +31: ; preds = %27, %24 + br label %32 + +32: ; preds = %31, %16 + %33 = load ptr, ptr %6, align 8 + %34 = load i64, ptr %7, align 8 + %35 = sub i64 0, %34 + %36 = getelementptr inbounds ptr, ptr %33, i64 %35 + ret ptr %36 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeI10queueEntrySaIS0_EE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 3 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + %8 = call noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %7) #14 + ret i1 %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) #4 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp eq ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(8) ptr @_ZNSt5dequeI10queueEntrySaIS0_EE5frontEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_Deque_iterator", align 8 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + call void @_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %3, ptr noundef nonnull align 8 dereferenceable(80) %4) #14 + %5 = call noundef nonnull align 4 dereferenceable(8) ptr @_ZNKSt15_Deque_iteratorI10queueEntryRS0_PS0_EdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #14 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(8) ptr @_ZNKSt15_Deque_iteratorI10queueEntryRS0_PS0_EdeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 2 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 2 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 2 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %struct.queueEntry, ptr %15, i64 -1 + %17 = icmp ne ptr %11, %16 + br i1 %17, label %18, label %33 + +18: ; preds = %1 + %19 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #14 + %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %20, i32 0, i32 2 + %22 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %21, i32 0, i32 0 + %23 = load ptr, ptr %22, align 8 + store ptr %19, ptr %4, align 8 + store ptr %23, ptr %5, align 8 + %24 = load ptr, ptr %4, align 8 + %25 = load ptr, ptr %5, align 8 + store ptr %24, ptr %2, align 8 + store ptr %25, ptr %3, align 8 + %26 = load ptr, ptr %2, align 8 + %27 = load ptr, ptr %3, align 8 + %28 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %28, i32 0, i32 2 + %30 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + %32 = getelementptr inbounds %struct.queueEntry, ptr %31, i32 1 + store ptr %32, ptr %30, align 8 + br label %35 + +33: ; preds = %1 + invoke void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_front_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %34 unwind label %36 + +34: ; preds = %33 + br label %35 + +35: ; preds = %34, %18 + ret void + +36: ; preds = %33 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #15 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_front_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #14 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %9, i32 0, i32 2 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %10, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + store ptr %8, ptr %4, align 8 + store ptr %12, ptr %5, align 8 + %13 = load ptr, ptr %4, align 8 + %14 = load ptr, ptr %5, align 8 + store ptr %13, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %18 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %17, i32 0, i32 2 + %19 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %18, i32 0, i32 1 + %20 = load ptr, ptr %19, align 8 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_(ptr noundef nonnull align 8 dereferenceable(80) %7, ptr noundef %20) #14 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 2 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 2 + %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 3 + %26 = load ptr, ptr %25, align 8 + %27 = getelementptr inbounds ptr, ptr %26, i64 1 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(ptr noundef nonnull align 8 dereferenceable(32) %22, ptr noundef %27) #14 + %28 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %28, i32 0, i32 2 + %30 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %29, i32 0, i32 1 + %31 = load ptr, ptr %30, align 8 + %32 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %32, i32 0, i32 2 + %34 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %33, i32 0, i32 0 + store ptr %31, ptr %34, align 8 + ret void +} + +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 = { 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 #2 = { 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 #3 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 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 = { nocallback nofree nosync nounwind willreturn } +attributes #9 = { "frame-pointer"="all" "no-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 = { noinline noreturn 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 = { 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 = { builtin allocsize(0) } +attributes #14 = { nounwind } +attributes #15 = { noreturn nounwind } +attributes #16 = { builtin nounwind } +attributes #17 = { noreturn } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/sort-array-wave-form-2.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/sort-array-wave-form-2.ll new file mode 100644 index 000000000..4489d0b07 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/sort-array-wave-form-2.ll @@ -0,0 +1,198 @@ +; ModuleID = 'PE-benchmarks/sort-array-wave-form-2.cpp' +source_filename = "PE-benchmarks/sort-array-wave-form-2.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@__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 global %"class.std::basic_ostream", align 8 +@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = load i32, ptr %6, align 4 + store i32 %7, ptr %5, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = load ptr, ptr %3, align 8 + store i32 %9, ptr %10, align 4 + %11 = load i32, ptr %5, align 4 + %12 = load ptr, ptr %4, align 8 + store i32 %11, ptr %12, align 4 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z10sortInWavePii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + store i32 0, ptr %5, align 4 + br label %6 + +6: ; preds = %65, %2 + %7 = load i32, ptr %5, align 4 + %8 = load i32, ptr %4, align 4 + %9 = icmp slt i32 %7, %8 + br i1 %9, label %10, label %68 + +10: ; preds = %6 + %11 = load i32, ptr %5, align 4 + %12 = icmp sgt i32 %11, 0 + br i1 %12, label %13, label %36 + +13: ; preds = %10 + %14 = load ptr, ptr %3, align 8 + %15 = load i32, ptr %5, align 4 + %16 = sub nsw i32 %15, 1 + %17 = sext i32 %16 to i64 + %18 = getelementptr inbounds i32, ptr %14, i64 %17 + %19 = load i32, ptr %18, align 4 + %20 = load ptr, ptr %3, align 8 + %21 = load i32, ptr %5, align 4 + %22 = sext i32 %21 to i64 + %23 = getelementptr inbounds i32, ptr %20, i64 %22 + %24 = load i32, ptr %23, align 4 + %25 = icmp sgt i32 %19, %24 + br i1 %25, label %26, label %36 + +26: ; preds = %13 + %27 = load ptr, ptr %3, align 8 + %28 = load i32, ptr %5, align 4 + %29 = sext i32 %28 to i64 + %30 = getelementptr inbounds i32, ptr %27, i64 %29 + %31 = load ptr, ptr %3, align 8 + %32 = load i32, ptr %5, align 4 + %33 = sub nsw i32 %32, 1 + %34 = sext i32 %33 to i64 + %35 = getelementptr inbounds i32, ptr %31, i64 %34 + call void @_Z4swapPiS_(ptr noundef %30, ptr noundef %35) + br label %36 + +36: ; preds = %26, %13, %10 + %37 = load i32, ptr %5, align 4 + %38 = load i32, ptr %4, align 4 + %39 = sub nsw i32 %38, 1 + %40 = icmp slt i32 %37, %39 + br i1 %40, label %41, label %64 + +41: ; preds = %36 + %42 = load ptr, ptr %3, align 8 + %43 = load i32, ptr %5, align 4 + %44 = sext i32 %43 to i64 + %45 = getelementptr inbounds i32, ptr %42, i64 %44 + %46 = load i32, ptr %45, align 4 + %47 = load ptr, ptr %3, align 8 + %48 = load i32, ptr %5, align 4 + %49 = add nsw i32 %48, 1 + %50 = sext i32 %49 to i64 + %51 = getelementptr inbounds i32, ptr %47, i64 %50 + %52 = load i32, ptr %51, align 4 + %53 = icmp slt i32 %46, %52 + br i1 %53, label %54, label %64 + +54: ; preds = %41 + %55 = load ptr, ptr %3, align 8 + %56 = load i32, ptr %5, align 4 + %57 = sext i32 %56 to i64 + %58 = getelementptr inbounds i32, ptr %55, i64 %57 + %59 = load ptr, ptr %3, align 8 + %60 = load i32, ptr %5, align 4 + %61 = add nsw i32 %60, 1 + %62 = sext i32 %61 to i64 + %63 = getelementptr inbounds i32, ptr %59, i64 %62 + call void @_Z4swapPiS_(ptr noundef %58, ptr noundef %63) + br label %64 + +64: ; preds = %54, %41, %36 + br label %65 + +65: ; preds = %64 + %66 = load i32, ptr %5, align 4 + %67 = add nsw i32 %66, 2 + store i32 %67, ptr %5, align 4 + br label %6, !llvm.loop !6 + +68: ; preds = %6 + ret void +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #1 { + %1 = alloca i32, align 4 + %2 = alloca [7 x i32], align 16 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 28, i1 false) + store i32 7, ptr %3, align 4 + %5 = getelementptr inbounds [7 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + call void @_Z10sortInWavePii(ptr noundef %5, i32 noundef %6) + store i32 0, ptr %4, align 4 + br label %7 + +7: ; preds = %18, %0 + %8 = load i32, ptr %4, align 4 + %9 = load i32, ptr %3, align 4 + %10 = icmp slt i32 %8, %9 + br i1 %10, label %11, label %21 + +11: ; preds = %7 + %12 = load i32, ptr %4, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds [7 x i32], ptr %2, i64 0, i64 %13 + %15 = load i32, ptr %14, align 4 + %16 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %16, ptr noundef @.str) + br label %18 + +18: ; preds = %11 + %19 = load i32, ptr %4, align 4 + %20 = add nsw i32 %19, 1 + store i32 %20, ptr %4, align 4 + br label %7, !llvm.loop !8 + +21: ; preds = %7 + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 + +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/sort-n-numbers-range-0-n2-1-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/sort-n-numbers-range-0-n2-1-linear-time.ll new file mode 100644 index 000000000..d08fd528e --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/sort-n-numbers-range-0-n2-1-linear-time.ll @@ -0,0 +1,326 @@ +; ModuleID = 'PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp' +source_filename = "PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 +@.str.2 = private unnamed_addr constant [19 x i8] c"nSorted array is n\00", align 1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9countSortPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca i32, align 4 + %10 = alloca i64, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %12 = load i32, ptr %5, align 4 + %13 = zext i32 %12 to i64 + %14 = call ptr @llvm.stacksave() + store ptr %14, ptr %7, align 8 + %15 = alloca i32, i64 %13, align 16 + store i64 %13, ptr %8, align 8 + %16 = load i32, ptr %5, align 4 + %17 = zext i32 %16 to i64 + %18 = alloca i32, i64 %17, align 16 + store i64 %17, ptr %10, align 8 + store i32 0, ptr %11, align 4 + br label %19 + +19: ; preds = %27, %3 + %20 = load i32, ptr %11, align 4 + %21 = load i32, ptr %5, align 4 + %22 = icmp slt i32 %20, %21 + br i1 %22, label %23, label %30 + +23: ; preds = %19 + %24 = load i32, ptr %11, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds i32, ptr %18, i64 %25 + store i32 0, ptr %26, align 4 + br label %27 + +27: ; preds = %23 + %28 = load i32, ptr %11, align 4 + %29 = add nsw i32 %28, 1 + store i32 %29, ptr %11, align 4 + br label %19, !llvm.loop !6 + +30: ; preds = %19 + store i32 0, ptr %9, align 4 + br label %31 + +31: ; preds = %49, %30 + %32 = load i32, ptr %9, align 4 + %33 = load i32, ptr %5, align 4 + %34 = icmp slt i32 %32, %33 + br i1 %34, label %35, label %52 + +35: ; preds = %31 + %36 = load ptr, ptr %4, align 8 + %37 = load i32, ptr %9, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds i32, ptr %36, i64 %38 + %40 = load i32, ptr %39, align 4 + %41 = load i32, ptr %6, align 4 + %42 = sdiv i32 %40, %41 + %43 = load i32, ptr %5, align 4 + %44 = srem i32 %42, %43 + %45 = sext i32 %44 to i64 + %46 = getelementptr inbounds i32, ptr %18, i64 %45 + %47 = load i32, ptr %46, align 4 + %48 = add nsw i32 %47, 1 + store i32 %48, ptr %46, align 4 + br label %49 + +49: ; preds = %35 + %50 = load i32, ptr %9, align 4 + %51 = add nsw i32 %50, 1 + store i32 %51, ptr %9, align 4 + br label %31, !llvm.loop !8 + +52: ; preds = %31 + store i32 1, ptr %9, align 4 + br label %53 + +53: ; preds = %68, %52 + %54 = load i32, ptr %9, align 4 + %55 = load i32, ptr %5, align 4 + %56 = icmp slt i32 %54, %55 + br i1 %56, label %57, label %71 + +57: ; preds = %53 + %58 = load i32, ptr %9, align 4 + %59 = sub nsw i32 %58, 1 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds i32, ptr %18, i64 %60 + %62 = load i32, ptr %61, align 4 + %63 = load i32, ptr %9, align 4 + %64 = sext i32 %63 to i64 + %65 = getelementptr inbounds i32, ptr %18, i64 %64 + %66 = load i32, ptr %65, align 4 + %67 = add nsw i32 %66, %62 + store i32 %67, ptr %65, align 4 + br label %68 + +68: ; preds = %57 + %69 = load i32, ptr %9, align 4 + %70 = add nsw i32 %69, 1 + store i32 %70, ptr %9, align 4 + br label %53, !llvm.loop !9 + +71: ; preds = %53 + %72 = load i32, ptr %5, align 4 + %73 = sub nsw i32 %72, 1 + store i32 %73, ptr %9, align 4 + br label %74 + +74: ; preds = %111, %71 + %75 = load i32, ptr %9, align 4 + %76 = icmp sge i32 %75, 0 + br i1 %76, label %77, label %114 + +77: ; preds = %74 + %78 = load ptr, ptr %4, align 8 + %79 = load i32, ptr %9, align 4 + %80 = sext i32 %79 to i64 + %81 = getelementptr inbounds i32, ptr %78, i64 %80 + %82 = load i32, ptr %81, align 4 + %83 = load ptr, ptr %4, align 8 + %84 = load i32, ptr %9, align 4 + %85 = sext i32 %84 to i64 + %86 = getelementptr inbounds i32, ptr %83, i64 %85 + %87 = load i32, ptr %86, align 4 + %88 = load i32, ptr %6, align 4 + %89 = sdiv i32 %87, %88 + %90 = load i32, ptr %5, align 4 + %91 = srem i32 %89, %90 + %92 = sext i32 %91 to i64 + %93 = getelementptr inbounds i32, ptr %18, i64 %92 + %94 = load i32, ptr %93, align 4 + %95 = sub nsw i32 %94, 1 + %96 = sext i32 %95 to i64 + %97 = getelementptr inbounds i32, ptr %15, i64 %96 + store i32 %82, ptr %97, align 4 + %98 = load ptr, ptr %4, align 8 + %99 = load i32, ptr %9, align 4 + %100 = sext i32 %99 to i64 + %101 = getelementptr inbounds i32, ptr %98, i64 %100 + %102 = load i32, ptr %101, align 4 + %103 = load i32, ptr %6, align 4 + %104 = sdiv i32 %102, %103 + %105 = load i32, ptr %5, align 4 + %106 = srem i32 %104, %105 + %107 = sext i32 %106 to i64 + %108 = getelementptr inbounds i32, ptr %18, i64 %107 + %109 = load i32, ptr %108, align 4 + %110 = add nsw i32 %109, -1 + store i32 %110, ptr %108, align 4 + br label %111 + +111: ; preds = %77 + %112 = load i32, ptr %9, align 4 + %113 = add nsw i32 %112, -1 + store i32 %113, ptr %9, align 4 + br label %74, !llvm.loop !10 + +114: ; preds = %74 + store i32 0, ptr %9, align 4 + br label %115 + +115: ; preds = %128, %114 + %116 = load i32, ptr %9, align 4 + %117 = load i32, ptr %5, align 4 + %118 = icmp slt i32 %116, %117 + br i1 %118, label %119, label %131 + +119: ; preds = %115 + %120 = load i32, ptr %9, align 4 + %121 = sext i32 %120 to i64 + %122 = getelementptr inbounds i32, ptr %15, i64 %121 + %123 = load i32, ptr %122, align 4 + %124 = load ptr, ptr %4, align 8 + %125 = load i32, ptr %9, align 4 + %126 = sext i32 %125 to i64 + %127 = getelementptr inbounds i32, ptr %124, i64 %126 + store i32 %123, ptr %127, align 4 + br label %128 + +128: ; preds = %119 + %129 = load i32, ptr %9, align 4 + %130 = add nsw i32 %129, 1 + store i32 %130, ptr %9, align 4 + br label %115, !llvm.loop !11 + +131: ; preds = %115 + call void @llvm.trap() + unreachable +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: cold noreturn nounwind +declare void @llvm.trap() #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4sortPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = call noundef i32 @_Z9countSortPiii(ptr noundef %5, i32 noundef %6, i32 noundef 1) + %8 = load ptr, ptr %3, align 8 + %9 = load i32, ptr %4, align 4 + %10 = load i32, ptr %4, align 4 + %11 = call noundef i32 @_Z9countSortPiii(ptr noundef %8, i32 noundef %9, i32 noundef %10) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z8printArrPii(ptr noundef %0, i32 noundef %1) #3 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + store i32 0, ptr %5, align 4 + br label %6 + +6: ; preds = %18, %2 + %7 = load i32, ptr %5, align 4 + %8 = load i32, ptr %4, align 4 + %9 = icmp slt i32 %7, %8 + br i1 %9, label %10, label %21 + +10: ; preds = %6 + %11 = load ptr, ptr %3, align 8 + %12 = load i32, ptr %5, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i32, ptr %11, i64 %13 + %15 = load i32, ptr %14, align 4 + %16 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %16, ptr noundef @.str) + br label %18 + +18: ; preds = %10 + %19 = load i32, ptr %5, align 4 + %20 = add nsw i32 %19, 1 + store i32 %20, ptr %5, align 4 + br label %6, !llvm.loop !12 + +21: ; preds = %6 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 + +; 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 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 28, i1 false) + store i32 7, ptr %3, align 4 + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + %5 = getelementptr inbounds [7 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + call void @_Z8printArrPii(ptr noundef %5, i32 noundef %6) + %7 = getelementptr inbounds [7 x i32], ptr %2, i64 0, i64 0 + %8 = load i32, ptr %3, align 4 + call void @_Z4sortPii(ptr noundef %7, i32 noundef %8) + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + %10 = getelementptr inbounds [7 x i32], ptr %2, i64 0, i64 0 + %11 = load i32, ptr %3, align 4 + call void @_Z8printArrPii(ptr noundef %10, i32 noundef %11) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 + +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 = { nocallback nofree nosync nounwind willreturn } +attributes #2 = { cold noreturn nounwind } +attributes #3 = { 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll new file mode 100644 index 000000000..f10b1cc5a --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll @@ -0,0 +1,179 @@ +; ModuleID = 'PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp' +source_filename = "PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z12printClosestPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + store i32 0, ptr %9, align 4 + %12 = load i32, ptr %5, align 4 + %13 = sub nsw i32 %12, 1 + store i32 %13, ptr %10, align 4 + store i32 2147483647, ptr %11, align 4 + br label %14 + +14: ; preds = %72, %3 + %15 = load i32, ptr %10, align 4 + %16 = load i32, ptr %9, align 4 + %17 = icmp sgt i32 %15, %16 + br i1 %17, label %18, label %73 + +18: ; preds = %14 + %19 = load ptr, ptr %4, align 8 + %20 = load i32, ptr %9, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds i32, ptr %19, i64 %21 + %23 = load i32, ptr %22, align 4 + %24 = load ptr, ptr %4, align 8 + %25 = load i32, ptr %10, align 4 + %26 = sext i32 %25 to i64 + %27 = getelementptr inbounds i32, ptr %24, i64 %26 + %28 = load i32, ptr %27, align 4 + %29 = add nsw i32 %23, %28 + %30 = load i32, ptr %6, align 4 + %31 = sub nsw i32 %29, %30 + %32 = call i32 @abs(i32 noundef %31) #5 + %33 = load i32, ptr %11, align 4 + %34 = icmp slt i32 %32, %33 + br i1 %34, label %35, label %52 + +35: ; preds = %18 + %36 = load i32, ptr %9, align 4 + store i32 %36, ptr %7, align 4 + %37 = load i32, ptr %10, align 4 + store i32 %37, ptr %8, align 4 + %38 = load ptr, ptr %4, align 8 + %39 = load i32, ptr %9, align 4 + %40 = sext i32 %39 to i64 + %41 = getelementptr inbounds i32, ptr %38, i64 %40 + %42 = load i32, ptr %41, align 4 + %43 = load ptr, ptr %4, align 8 + %44 = load i32, ptr %10, align 4 + %45 = sext i32 %44 to i64 + %46 = getelementptr inbounds i32, ptr %43, i64 %45 + %47 = load i32, ptr %46, align 4 + %48 = add nsw i32 %42, %47 + %49 = load i32, ptr %6, align 4 + %50 = sub nsw i32 %48, %49 + %51 = call i32 @abs(i32 noundef %50) #5 + store i32 %51, ptr %11, align 4 + br label %52 + +52: ; preds = %35, %18 + %53 = load ptr, ptr %4, align 8 + %54 = load i32, ptr %9, align 4 + %55 = sext i32 %54 to i64 + %56 = getelementptr inbounds i32, ptr %53, i64 %55 + %57 = load i32, ptr %56, align 4 + %58 = load ptr, ptr %4, align 8 + %59 = load i32, ptr %10, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds i32, ptr %58, i64 %60 + %62 = load i32, ptr %61, align 4 + %63 = add nsw i32 %57, %62 + %64 = load i32, ptr %6, align 4 + %65 = icmp sgt i32 %63, %64 + br i1 %65, label %66, label %69 + +66: ; preds = %52 + %67 = load i32, ptr %10, align 4 + %68 = add nsw i32 %67, -1 + store i32 %68, ptr %10, align 4 + br label %72 + +69: ; preds = %52 + %70 = load i32, ptr %9, align 4 + %71 = add nsw i32 %70, 1 + store i32 %71, ptr %9, align 4 + br label %72 + +72: ; preds = %69, %66 + br label %14, !llvm.loop !6 + +73: ; preds = %14 + %74 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %75 = load ptr, ptr %4, align 8 + %76 = load i32, ptr %7, align 4 + %77 = sext i32 %76 to i64 + %78 = getelementptr inbounds i32, ptr %75, i64 %77 + %79 = load i32, ptr %78, align 4 + %80 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %74, i32 noundef %79) + %81 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %80, ptr noundef @.str.1) + %82 = load ptr, ptr %4, align 8 + %83 = load i32, ptr %8, align 4 + %84 = sext i32 %83 to i64 + %85 = getelementptr inbounds i32, ptr %82, i64 %84 + %86 = load i32, ptr %85, align 4 + %87 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %81, i32 noundef %86) + ret void +} + +; Function Attrs: nounwind willreturn memory(none) +declare i32 @abs(i32 noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [6 x i32], align 16 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 24, i1 false) + store i32 54, ptr %3, align 4 + store i32 6, ptr %4, align 4 + %5 = getelementptr inbounds [6 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %4, align 4 + %7 = load i32, ptr %3, align 4 + call void @_Z12printClosestPiii(ptr noundef %5, i32 noundef %6, i32 noundef %7) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +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 = { nounwind willreturn memory(none) "frame-pointer"="all" "no-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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #5 = { nounwind willreturn memory(none) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/strongly-connected-components.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/strongly-connected-components.ll new file mode 100644 index 000000000..44610053f --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/strongly-connected-components.ll @@ -0,0 +1,3159 @@ +; ModuleID = 'PE-benchmarks/strongly-connected-components.cpp' +source_filename = "PE-benchmarks/strongly-connected-components.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"struct.std::_List_iterator" = type { ptr } +%"class.std::stack" = type { %"class.std::deque" } +%"class.std::deque" = type { %"class.std::_Deque_base" } +%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } +%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } +%"struct.std::_Deque_base>::_Deque_impl_data" = type { ptr, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } +%"struct.std::_Deque_iterator" = type { ptr, ptr, ptr, ptr } +%"class.std::allocator.3" = type { i8 } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } +%"struct.std::__allocated_ptr" = type { ptr, ptr } + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any + +$_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt5dequeIiSaIiEED2Ev = comdat any + +$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any + +$_ZNSt5dequeIiSaIiEE5beginEv = comdat any + +$_ZNSt5dequeIiSaIiEE3endEv = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any + +$_ZSt16__deque_buf_sizem = comdat any + +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any + +$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any + +$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any + +$_ZNSt15__new_allocatorIPiED2Ev = comdat any + +$_ZNSt15__new_allocatorIiED2Ev = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any + +$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any + +$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any + +$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any + +$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any + +$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any + +$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any + +$_ZSt3minImERKT_S2_S2_ = comdat any + +$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any + +$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any + +$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any + +$_ZSt3maxImERKT_S2_S2_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any + +$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__miter_baseIPPiET_S2_ = comdat any + +$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any + +$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__niter_baseIPPiET_S2_ = comdat any + +$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_ = comdat any + +$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any + +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any + +$_ZNSt5dequeIiSaIiEEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any + +$_ZNKSt5dequeIiSaIiEE5emptyEv = comdat any + +$_ZSteqRKSt15_Deque_iteratorIiRiPiES4_ = comdat any + +$_ZNSt5dequeIiSaIiEE4backEv = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEmmEv = comdat any + +$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any + +$_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any + +$_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any + +@_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 + +@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei + +; Function Attrs: noinline uwtable +define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #0 align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + store i32 %6, ptr %7, align 8 + %8 = load i32, ptr %4, align 4 + %9 = sext i32 %8 to i64 + %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) + %11 = extractvalue { i64, i1 } %10, 1 + %12 = extractvalue { i64, i1 } %10, 0 + %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = or i1 %11, %14 + %16 = extractvalue { i64, i1 } %13, 0 + %17 = select i1 %15, i64 -1, i64 %16 + %18 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #14 + store i64 %9, ptr %18, align 16 + %19 = getelementptr inbounds i8, ptr %18, i64 8 + %20 = icmp eq i64 %9, 0 + br i1 %20, label %27, label %21 + +21: ; preds = %2 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %9 + br label %23 + +23: ; preds = %23, %21 + %24 = phi ptr [ %19, %21 ], [ %25, %23 ] + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #15 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 1 + %26 = icmp eq ptr %25, %22 + br i1 %26, label %27, label %23 + +27: ; preds = %2, %23 + %28 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + store ptr %19, ptr %28, align 8 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, ptr noundef %2) #4 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca ptr, align 8 + %7 = alloca %"struct.std::_List_iterator", align 8 + %8 = alloca %"struct.std::_List_iterator", align 8 + %9 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store ptr %2, ptr %6, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = load ptr, ptr %6, align 8 + %12 = load i32, ptr %5, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i8, ptr %11, i64 %13 + store i8 1, ptr %14, align 1 + %15 = load i32, ptr %5, align 4 + %16 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %16, ptr noundef @.str) + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %7) #15 + %18 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 1 + %19 = load ptr, ptr %18, align 8 + %20 = load i32, ptr %5, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %21 + %23 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %22) #15 + %24 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + store ptr %23, ptr %24, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %7, ptr align 8 %8, i64 8, i1 false) + br label %25 + +25: ; preds = %47, %3 + %26 = getelementptr inbounds %class.Graph, ptr %10, i32 0, i32 1 + %27 = load ptr, ptr %26, align 8 + %28 = load i32, ptr %5, align 4 + %29 = sext i32 %28 to i64 + %30 = getelementptr inbounds %"class.std::__cxx11::list", ptr %27, i64 %29 + %31 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %30) #15 + %32 = getelementptr inbounds %"struct.std::_List_iterator", ptr %9, i32 0, i32 0 + store ptr %31, ptr %32, align 8 + %33 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %7, ptr noundef nonnull align 8 dereferenceable(8) %9) #15 + br i1 %33, label %34, label %49 + +34: ; preds = %25 + %35 = load ptr, ptr %6, align 8 + %36 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #15 + %37 = load i32, ptr %36, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds i8, ptr %35, i64 %38 + %40 = load i8, ptr %39, align 1 + %41 = trunc i8 %40 to i1 + br i1 %41, label %46, label %42 + +42: ; preds = %34 + %43 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #15 + %44 = load i32, ptr %43, align 4 + %45 = load ptr, ptr %6, align 8 + call void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(16) %10, i32 noundef %44, ptr noundef %45) + br label %46 + +46: ; preds = %42, %34 + br label %47 + +47: ; preds = %46 + %48 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #15 + br label %25, !llvm.loop !6 + +49: ; preds = %25 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #15 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #15 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + to label %7 unwind label %8 + +7: ; preds = %1 + ret ptr %6 + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + catch ptr null + %10 = extractvalue { ptr, i32 } %9, 0 + call void @__clang_call_terminate(ptr %10) #16 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local { i32, ptr } @_ZN5Graph12getTransposeEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 { + %2 = alloca %class.Graph, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca %"struct.std::_List_iterator", align 8 + %6 = alloca %"struct.std::_List_iterator", align 8 + %7 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + %8 = load ptr, ptr %3, align 8 + %9 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 0 + %10 = load i32, ptr %9, align 8 + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef %10) + store i32 0, ptr %4, align 4 + br label %11 + +11: ; preds = %43, %1 + %12 = load i32, ptr %4, align 4 + %13 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 0 + %14 = load i32, ptr %13, align 8 + %15 = icmp slt i32 %12, %14 + br i1 %15, label %16, label %46 + +16: ; preds = %11 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %5) #15 + %17 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 1 + %18 = load ptr, ptr %17, align 8 + %19 = load i32, ptr %4, align 4 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds %"class.std::__cxx11::list", ptr %18, i64 %20 + %22 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %21) #15 + %23 = getelementptr inbounds %"struct.std::_List_iterator", ptr %6, i32 0, i32 0 + store ptr %22, ptr %23, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %5, ptr align 8 %6, i64 8, i1 false) + br label %24 + +24: ; preds = %40, %16 + %25 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 1 + %26 = load ptr, ptr %25, align 8 + %27 = load i32, ptr %4, align 4 + %28 = sext i32 %27 to i64 + %29 = getelementptr inbounds %"class.std::__cxx11::list", ptr %26, i64 %28 + %30 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %29) #15 + %31 = getelementptr inbounds %"struct.std::_List_iterator", ptr %7, i32 0, i32 0 + store ptr %30, ptr %31, align 8 + %32 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %5, ptr noundef nonnull align 8 dereferenceable(8) %7) #15 + br i1 %32, label %33, label %42 + +33: ; preds = %24 + %34 = getelementptr inbounds %class.Graph, ptr %2, i32 0, i32 1 + %35 = load ptr, ptr %34, align 8 + %36 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %5) #15 + %37 = load i32, ptr %36, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds %"class.std::__cxx11::list", ptr %35, i64 %38 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %39, ptr noundef nonnull align 4 dereferenceable(4) %4) + br label %40 + +40: ; preds = %33 + %41 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %5) #15 + br label %24, !llvm.loop !8 + +42: ; preds = %24 + br label %43 + +43: ; preds = %42 + %44 = load i32, ptr %4, align 4 + %45 = add nsw i32 %44, 1 + store i32 %45, ptr %4, align 4 + br label %11, !llvm.loop !9 + +46: ; preds = %11 + %47 = load { i32, ptr }, ptr %2, align 8 + ret { i32, ptr } %47 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #15 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #4 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds %"class.std::__cxx11::list", ptr %9, i64 %11 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %6) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, ptr noundef %2, ptr noundef nonnull align 8 dereferenceable(80) %3) #4 align 2 { + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca %"struct.std::_List_iterator", align 8 + %10 = alloca %"struct.std::_List_iterator", align 8 + %11 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %12 = load ptr, ptr %5, align 8 + %13 = load ptr, ptr %7, align 8 + %14 = load i32, ptr %6, align 4 + %15 = sext i32 %14 to i64 + %16 = getelementptr inbounds i8, ptr %13, i64 %15 + store i8 1, ptr %16, align 1 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %9) #15 + %17 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 1 + %18 = load ptr, ptr %17, align 8 + %19 = load i32, ptr %6, align 4 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds %"class.std::__cxx11::list", ptr %18, i64 %20 + %22 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %21) #15 + %23 = getelementptr inbounds %"struct.std::_List_iterator", ptr %10, i32 0, i32 0 + store ptr %22, ptr %23, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %10, i64 8, i1 false) + br label %24 + +24: ; preds = %47, %4 + %25 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 1 + %26 = load ptr, ptr %25, align 8 + %27 = load i32, ptr %6, align 4 + %28 = sext i32 %27 to i64 + %29 = getelementptr inbounds %"class.std::__cxx11::list", ptr %26, i64 %28 + %30 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %29) #15 + %31 = getelementptr inbounds %"struct.std::_List_iterator", ptr %11, i32 0, i32 0 + store ptr %30, ptr %31, align 8 + %32 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %9, ptr noundef nonnull align 8 dereferenceable(8) %11) #15 + br i1 %32, label %33, label %49 + +33: ; preds = %24 + %34 = load ptr, ptr %7, align 8 + %35 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #15 + %36 = load i32, ptr %35, align 4 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds i8, ptr %34, i64 %37 + %39 = load i8, ptr %38, align 1 + %40 = trunc i8 %39 to i1 + br i1 %40, label %46, label %41 + +41: ; preds = %33 + %42 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #15 + %43 = load i32, ptr %42, align 4 + %44 = load ptr, ptr %7, align 8 + %45 = load ptr, ptr %8, align 8 + call void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr noundef nonnull align 8 dereferenceable(16) %12, i32 noundef %43, ptr noundef %44, ptr noundef nonnull align 8 dereferenceable(80) %45) + br label %46 + +46: ; preds = %41, %33 + br label %47 + +47: ; preds = %46 + %48 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #15 + br label %24, !llvm.loop !10 + +49: ; preds = %24 + %50 = load ptr, ptr %8, align 8 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %50, ptr noundef nonnull align 4 dereferenceable(4) %6) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"class.std::stack", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + call void @_ZNSt5dequeIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(80) %6, ptr noundef nonnull align 4 dereferenceable(4) %7) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph9printSCCsEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca %"class.std::stack", align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca %class.Graph, align 8 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %12 = load ptr, ptr %2, align 8 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %3) + %13 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 0 + %14 = load i32, ptr %13, align 8 + %15 = sext i32 %14 to i64 + %16 = invoke noalias noundef nonnull ptr @_Znam(i64 noundef %15) #14 + to label %17 unwind label %31 + +17: ; preds = %1 + store ptr %16, ptr %4, align 8 + store i32 0, ptr %7, align 4 + br label %18 + +18: ; preds = %28, %17 + %19 = load i32, ptr %7, align 4 + %20 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 0 + %21 = load i32, ptr %20, align 8 + %22 = icmp slt i32 %19, %21 + br i1 %22, label %23, label %35 + +23: ; preds = %18 + %24 = load ptr, ptr %4, align 8 + %25 = load i32, ptr %7, align 4 + %26 = sext i32 %25 to i64 + %27 = getelementptr inbounds i8, ptr %24, i64 %26 + store i8 0, ptr %27, align 1 + br label %28 + +28: ; preds = %23 + %29 = load i32, ptr %7, align 4 + %30 = add nsw i32 %29, 1 + store i32 %30, ptr %7, align 4 + br label %18, !llvm.loop !11 + +31: ; preds = %100, %97, %86, %84, %79, %58, %50, %1 + %32 = landingpad { ptr, i32 } + cleanup + %33 = extractvalue { ptr, i32 } %32, 0 + store ptr %33, ptr %5, align 8 + %34 = extractvalue { ptr, i32 } %32, 1 + store i32 %34, ptr %6, align 4 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #15 + br label %105 + +35: ; preds = %18 + store i32 0, ptr %8, align 4 + br label %36 + +36: ; preds = %55, %35 + %37 = load i32, ptr %8, align 4 + %38 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 0 + %39 = load i32, ptr %38, align 8 + %40 = icmp slt i32 %37, %39 + br i1 %40, label %41, label %58 + +41: ; preds = %36 + %42 = load ptr, ptr %4, align 8 + %43 = load i32, ptr %8, align 4 + %44 = sext i32 %43 to i64 + %45 = getelementptr inbounds i8, ptr %42, i64 %44 + %46 = load i8, ptr %45, align 1 + %47 = trunc i8 %46 to i1 + %48 = zext i1 %47 to i32 + %49 = icmp eq i32 %48, 0 + br i1 %49, label %50, label %54 + +50: ; preds = %41 + %51 = load i32, ptr %8, align 4 + %52 = load ptr, ptr %4, align 8 + invoke void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr noundef nonnull align 8 dereferenceable(16) %12, i32 noundef %51, ptr noundef %52, ptr noundef nonnull align 8 dereferenceable(80) %3) + to label %53 unwind label %31 + +53: ; preds = %50 + br label %54 + +54: ; preds = %53, %41 + br label %55 + +55: ; preds = %54 + %56 = load i32, ptr %8, align 4 + %57 = add nsw i32 %56, 1 + store i32 %57, ptr %8, align 4 + br label %36, !llvm.loop !12 + +58: ; preds = %36 + %59 = invoke { i32, ptr } @_ZN5Graph12getTransposeEv(ptr noundef nonnull align 8 dereferenceable(16) %12) + to label %60 unwind label %31 + +60: ; preds = %58 + %61 = getelementptr inbounds { i32, ptr }, ptr %9, i32 0, i32 0 + %62 = extractvalue { i32, ptr } %59, 0 + store i32 %62, ptr %61, align 8 + %63 = getelementptr inbounds { i32, ptr }, ptr %9, i32 0, i32 1 + %64 = extractvalue { i32, ptr } %59, 1 + store ptr %64, ptr %63, align 8 + store i32 0, ptr %10, align 4 + br label %65 + +65: ; preds = %75, %60 + %66 = load i32, ptr %10, align 4 + %67 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 0 + %68 = load i32, ptr %67, align 8 + %69 = icmp slt i32 %66, %68 + br i1 %69, label %70, label %78 + +70: ; preds = %65 + %71 = load ptr, ptr %4, align 8 + %72 = load i32, ptr %10, align 4 + %73 = sext i32 %72 to i64 + %74 = getelementptr inbounds i8, ptr %71, i64 %73 + store i8 0, ptr %74, align 1 + br label %75 + +75: ; preds = %70 + %76 = load i32, ptr %10, align 4 + %77 = add nsw i32 %76, 1 + store i32 %77, ptr %10, align 4 + br label %65, !llvm.loop !13 + +78: ; preds = %65 + br label %79 + +79: ; preds = %103, %78 + %80 = invoke noundef zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %3) + to label %81 unwind label %31 + +81: ; preds = %79 + %82 = zext i1 %80 to i32 + %83 = icmp eq i32 %82, 0 + br i1 %83, label %84, label %104 + +84: ; preds = %81 + %85 = invoke noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(ptr noundef nonnull align 8 dereferenceable(80) %3) + to label %86 unwind label %31 + +86: ; preds = %84 + %87 = load i32, ptr %85, align 4 + store i32 %87, ptr %11, align 4 + invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %3) + to label %88 unwind label %31 + +88: ; preds = %86 + %89 = load ptr, ptr %4, align 8 + %90 = load i32, ptr %11, align 4 + %91 = sext i32 %90 to i64 + %92 = getelementptr inbounds i8, ptr %89, i64 %91 + %93 = load i8, ptr %92, align 1 + %94 = trunc i8 %93 to i1 + %95 = zext i1 %94 to i32 + %96 = icmp eq i32 %95, 0 + br i1 %96, label %97, label %103 + +97: ; preds = %88 + %98 = load i32, ptr %11, align 4 + %99 = load ptr, ptr %4, align 8 + invoke void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(16) %9, i32 noundef %98, ptr noundef %99) + to label %100 unwind label %31 + +100: ; preds = %97 + %101 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + to label %102 unwind label %31 + +102: ; preds = %100 + br label %103 + +103: ; preds = %102, %88 + br label %79, !llvm.loop !14 + +104: ; preds = %81 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #15 + ret void + +105: ; preds = %31 + %106 = load ptr, ptr %5, align 8 + %107 = load i32, ptr %6, align 4 + %108 = insertvalue { ptr, i32 } poison, ptr %106, 0 + %109 = insertvalue { ptr, i32 } %108, i32 %107, 1 + resume { ptr, i32 } %109 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + call void @llvm.memset.p0.i64(ptr align 8 %4, i8 0, i64 80, i1 false) + call void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %4) + ret void +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + %5 = call noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #15 + ret i1 %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + %5 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5dequeIiSaIiEE4backEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #15 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + call void @_ZNSt5dequeIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #15 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #5 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + call void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %4) #15 + ret void +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 { + %1 = alloca i32, align 4 + %2 = alloca %class.Graph, align 8 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4) + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + call void @_ZN5Graph9printSCCsEv(ptr 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(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_Deque_iterator", align 8 + %4 = alloca %"struct.std::_Deque_iterator", align 8 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt5dequeIiSaIiEE5beginEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %3, ptr noundef nonnull align 8 dereferenceable(80) %5) #15 + call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %4, ptr noundef nonnull align 8 dereferenceable(80) %5) #15 + %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #15 + invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(ptr noundef nonnull align 8 dereferenceable(80) %5, ptr noundef %3, ptr noundef %4, ptr noundef nonnull align 1 dereferenceable(1) %6) + to label %7 unwind label %8 + +7: ; preds = %1 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #15 + ret void + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + catch ptr null + %10 = extractvalue { ptr, i32 } %9, 0 + call void @__clang_call_terminate(ptr %10) #16 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #6 comdat align 2 { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %3, ptr %6, align 8 + %7 = load ptr, ptr %5, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %7) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %7) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #9 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #15 + call void @_ZSt9terminatev() #16 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 0 + %6 = load ptr, ptr %5, align 8 + %7 = icmp ne ptr %6, null + br i1 %7, label %8, label %24 + +8: ; preds = %1 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %9, i32 0, i32 2 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %10, i32 0, i32 3 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %14 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %13, i32 0, i32 3 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %14, i32 0, i32 3 + %16 = load ptr, ptr %15, align 8 + %17 = getelementptr inbounds ptr, ptr %16, i64 1 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %12, ptr noundef %17) #15 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 0 + %20 = load ptr, ptr %19, align 8 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 1 + %23 = load i64, ptr %22, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %20, i64 noundef %23) #15 + br label %24 + +24: ; preds = %8, %1 + %25 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %25) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + store ptr %9, ptr %6, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 1 + %13 = load ptr, ptr %12, align 8 + store ptr %13, ptr %10, align 8 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + %15 = load ptr, ptr %4, align 8 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 2 + %17 = load ptr, ptr %16, align 8 + store ptr %17, ptr %14, align 8 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + %19 = load ptr, ptr %4, align 8 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + store ptr %21, ptr %18, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #6 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %7, align 8 + br label %10 + +10: ; preds = %17, %3 + %11 = load ptr, ptr %7, align 8 + %12 = load ptr, ptr %6, align 8 + %13 = icmp ult ptr %11, %12 + br i1 %13, label %14, label %20 + +14: ; preds = %10 + %15 = load ptr, ptr %7, align 8 + %16 = load ptr, ptr %15, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %8, ptr noundef %16) #15 + br label %17 + +17: ; preds = %14 + %18 = load ptr, ptr %7, align 8 + %19 = getelementptr inbounds ptr, ptr %18, i32 1 + store ptr %19, ptr %7, align 8 + br label %10, !llvm.loop !15 + +20: ; preds = %10 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, i64 noundef %2) #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca %"class.std::allocator.3", align 1 + store ptr %0, ptr %8, align 8 + store ptr %1, ptr %9, align 8 + store i64 %2, ptr %10, align 8 + %12 = load ptr, ptr %8, align 8 + call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %11, ptr noundef nonnull align 8 dereferenceable(80) %12) #15 + %13 = load ptr, ptr %9, align 8 + %14 = load i64, ptr %10, align 8 + store ptr %11, ptr %5, align 8 + store ptr %13, ptr %6, align 8 + store i64 %14, ptr %7, align 8 + %15 = load ptr, ptr %5, align 8 + %16 = load ptr, ptr %6, align 8 + %17 = load i64, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %3 + store ptr %11, ptr %4, align 8 + %19 = load ptr, ptr %4, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #15 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #16 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1) #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %7, align 8 + %11 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + to label %12 unwind label %17 + +12: ; preds = %2 + store ptr %9, ptr %3, align 8 + store ptr %10, ptr %4, align 8 + store i64 %11, ptr %5, align 8 + %13 = load ptr, ptr %3, align 8 + %14 = load ptr, ptr %4, align 8 + %15 = load i64, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14, i64 noundef %15) + br label %16 + +16: ; preds = %12 + ret void + +17: ; preds = %2 + %18 = landingpad { ptr, i32 } + catch ptr null + %19 = extractvalue { ptr, i32 } %18, 0 + call void @__clang_call_terminate(ptr %19) #16 + unreachable +} + +; 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, ptr %2, align 8 + %3 = load i64, ptr %2, align 8 + %4 = icmp ult i64 %3, 512 + br i1 %4, label %5, label %8 + +5: ; preds = %1 + %6 = load i64, ptr %2, align 8 + %7 = udiv i64 512, %6 + br label %9 + +8: ; preds = %1 + br label %9 + +9: ; preds = %8, %5 + %10 = phi i64 [ %7, %5 ], [ 1, %8 ] + ret i64 %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #6 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #10 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr noalias sret(%"class.std::allocator.3") align 1 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %7, align 8 + %9 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %8) #15 + store ptr %0, ptr %4, align 8 + store ptr %9, ptr %5, align 8 + %10 = load ptr, ptr %4, align 8 + store ptr %10, ptr %3, align 8 + %11 = load ptr, ptr %3, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #6 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #15 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #15 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #15 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %14 = load ptr, ptr %9, align 8 + %15 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %14) + store ptr %15, ptr %11, align 8 + %16 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %14) #15 + store ptr %16, ptr %12, align 8 + %17 = load ptr, ptr %12, align 8 + %18 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %18) #15 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + %21 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %20) + %22 = load ptr, ptr %10, align 8 + store ptr %19, ptr %6, align 8 + store ptr %21, ptr %7, align 8 + store ptr %22, ptr %8, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %7, align 8 + %25 = load ptr, ptr %8, align 8 + store ptr %23, ptr %3, align 8 + store ptr %24, ptr %4, align 8 + store ptr %25, ptr %5, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = load ptr, ptr %4, align 8 + %28 = load ptr, ptr %5, align 8 + %29 = load i32, ptr %28, align 4 + store i32 %29, ptr %27, align 4 + %30 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #15 + %31 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #15 + ret ptr %31 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #11 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #16 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #14 + ret ptr %20 +} + +; Function Attrs: noreturn +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 noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #6 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %16, i32 0, i32 3 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %17, i32 0, i32 2 + %19 = load ptr, ptr %18, align 8 + %20 = getelementptr inbounds i32, ptr %19, i64 -1 + %21 = icmp ne ptr %15, %20 + br i1 %21, label %22, label %41 + +22: ; preds = %2 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %34, align 4 + store i32 %35, ptr %33, align 4 + %36 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %36, i32 0, i32 3 + %38 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = getelementptr inbounds i32, ptr %39, i32 1 + store ptr %40, ptr %38, align 8 + br label %43 + +41: ; preds = %2 + %42 = load ptr, ptr %10, align 8 + call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %11, ptr noundef nonnull align 4 dereferenceable(4) %42) + br label %43 + +43: ; preds = %41, %22 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #15 + %13 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #15 + %14 = icmp eq i64 %12, %13 + br i1 %14, label %15, label %16 + +15: ; preds = %2 + call void @_ZSt20__throw_length_errorPKc(ptr noundef @.str.2) #18 + unreachable + +16: ; preds = %2 + call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) + %17 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 3 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i64 1 + store ptr %17, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %34, align 4 + store i32 %35, ptr %33, align 4 + %36 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %36, i32 0, i32 3 + %38 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %38, i32 0, i32 3 + %40 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %39, i32 0, i32 3 + %41 = load ptr, ptr %40, align 8 + %42 = getelementptr inbounds ptr, ptr %41, i64 1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %37, ptr noundef %42) #15 + %43 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %44 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %43, i32 0, i32 3 + %45 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %44, i32 0, i32 1 + %46 = load ptr, ptr %45, align 8 + %47 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %48 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %47, i32 0, i32 3 + %49 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %48, i32 0, i32 0 + store ptr %46, ptr %49, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 3 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + %8 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %7) #15 + ret i64 %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #15 + %5 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #15 + ret i64 %5 +} + +; Function Attrs: noreturn +declare void @_ZSt20__throw_length_errorPKc(ptr noundef) #12 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = add i64 %6, 1 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %11, i32 0, i32 3 + %13 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %12, i32 0, i32 3 + %14 = load ptr, ptr %13, align 8 + %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 0 + %17 = load ptr, ptr %16, align 8 + %18 = ptrtoint ptr %14 to i64 + %19 = ptrtoint ptr %17 to i64 + %20 = sub i64 %18, %19 + %21 = sdiv exact i64 %20, 8 + %22 = sub i64 %10, %21 + %23 = icmp ugt i64 %7, %22 + br i1 %23, label %24, label %26 + +24: ; preds = %2 + %25 = load i64, ptr %4, align 8 + call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %25, i1 noundef zeroext false) + br label %26 + +26: ; preds = %24, %2 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + store ptr %6, ptr %2, align 8 + store i64 %7, ptr %3, align 8 + %8 = load ptr, ptr %2, align 8 + %9 = load i64, ptr %3, align 8 + %10 = call noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %8, i64 noundef %9, ptr noundef null) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + store ptr %6, ptr %7, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + store ptr %9, ptr %10, align 8 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %12 = load ptr, ptr %11, align 8 + %13 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #15 + %14 = getelementptr inbounds i32, ptr %12, i64 %13 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + store ptr %14, ptr %15, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #15 + %6 = load ptr, ptr %3, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %6, i32 0, i32 3 + %8 = load ptr, ptr %7, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 3 + %11 = load ptr, ptr %10, align 8 + %12 = ptrtoint ptr %8 to i64 + %13 = ptrtoint ptr %11 to i64 + %14 = sub i64 %12, %13 + %15 = sdiv exact i64 %14, 8 + %16 = load ptr, ptr %3, align 8 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 3 + %18 = load ptr, ptr %17, align 8 + %19 = icmp ne ptr %18, null + %20 = zext i1 %19 to i64 + %21 = sub nsw i64 %15, %20 + %22 = mul nsw i64 %5, %21 + %23 = load ptr, ptr %3, align 8 + %24 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %23, i32 0, i32 0 + %25 = load ptr, ptr %24, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 1 + %28 = load ptr, ptr %27, align 8 + %29 = ptrtoint ptr %25 to i64 + %30 = ptrtoint ptr %28 to i64 + %31 = sub i64 %29, %30 + %32 = sdiv exact i64 %31, 4 + %33 = add nsw i64 %22, %32 + %34 = load ptr, ptr %4, align 8 + %35 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %34, i32 0, i32 2 + %36 = load ptr, ptr %35, align 8 + %37 = load ptr, ptr %4, align 8 + %38 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = ptrtoint ptr %36 to i64 + %41 = ptrtoint ptr %39 to i64 + %42 = sub i64 %40, %41 + %43 = sdiv exact i64 %42, 4 + %44 = add nsw i64 %33, %43 + ret i64 %44 +} + +; 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: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %0) #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %5, align 8 + store i64 9223372036854775807, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + store ptr %8, ptr %4, align 8 + %9 = load ptr, ptr %4, align 8 + store ptr %9, ptr %3, align 8 + %10 = load ptr, ptr %3, align 8 + store ptr %10, ptr %2, align 8 + %11 = load ptr, ptr %2, align 8 + store i64 2305843009213693951, ptr %7, align 8 + %12 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + to label %13 unwind label %15 + +13: ; preds = %1 + %14 = load i64, ptr %12, align 8 + ret i64 %14 + +15: ; preds = %1 + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #16 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca i8, align 1 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + %12 = zext i1 %2 to i8 + store i8 %12, ptr %6, align 1 + %13 = load ptr, ptr %4, align 8 + %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %14, i32 0, i32 3 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 3 + %17 = load ptr, ptr %16, align 8 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 2 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = ptrtoint ptr %17 to i64 + %23 = ptrtoint ptr %21 to i64 + %24 = sub i64 %22, %23 + %25 = sdiv exact i64 %24, 8 + %26 = add nsw i64 %25, 1 + store i64 %26, ptr %7, align 8 + %27 = load i64, ptr %7, align 8 + %28 = load i64, ptr %5, align 8 + %29 = add i64 %27, %28 + store i64 %29, ptr %8, align 8 + %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 1 + %32 = load i64, ptr %31, align 8 + %33 = load i64, ptr %8, align 8 + %34 = mul i64 2, %33 + %35 = icmp ugt i64 %32, %34 + br i1 %35, label %36, label %88 + +36: ; preds = %3 + %37 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %41 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %40, i32 0, i32 1 + %42 = load i64, ptr %41, align 8 + %43 = load i64, ptr %8, align 8 + %44 = sub i64 %42, %43 + %45 = udiv i64 %44, 2 + %46 = getelementptr inbounds ptr, ptr %39, i64 %45 + %47 = load i8, ptr %6, align 1 + %48 = trunc i8 %47 to i1 + br i1 %48, label %49, label %51 + +49: ; preds = %36 + %50 = load i64, ptr %5, align 8 + br label %52 + +51: ; preds = %36 + br label %52 + +52: ; preds = %51, %49 + %53 = phi i64 [ %50, %49 ], [ 0, %51 ] + %54 = getelementptr inbounds ptr, ptr %46, i64 %53 + store ptr %54, ptr %9, align 8 + %55 = load ptr, ptr %9, align 8 + %56 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %57 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %56, i32 0, i32 2 + %58 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %57, i32 0, i32 3 + %59 = load ptr, ptr %58, align 8 + %60 = icmp ult ptr %55, %59 + br i1 %60, label %61, label %73 + +61: ; preds = %52 + %62 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %62, i32 0, i32 2 + %64 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %63, i32 0, i32 3 + %65 = load ptr, ptr %64, align 8 + %66 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %66, i32 0, i32 3 + %68 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %67, i32 0, i32 3 + %69 = load ptr, ptr %68, align 8 + %70 = getelementptr inbounds ptr, ptr %69, i64 1 + %71 = load ptr, ptr %9, align 8 + %72 = call noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %65, ptr noundef %70, ptr noundef %71) + br label %87 + +73: ; preds = %52 + %74 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %75 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %74, i32 0, i32 2 + %76 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %75, i32 0, i32 3 + %77 = load ptr, ptr %76, align 8 + %78 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %78, i32 0, i32 3 + %80 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %79, i32 0, i32 3 + %81 = load ptr, ptr %80, align 8 + %82 = getelementptr inbounds ptr, ptr %81, i64 1 + %83 = load ptr, ptr %9, align 8 + %84 = load i64, ptr %7, align 8 + %85 = getelementptr inbounds ptr, ptr %83, i64 %84 + %86 = call noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(ptr noundef %77, ptr noundef %82, ptr noundef %85) + br label %87 + +87: ; preds = %73, %61 + br label %137 + +88: ; preds = %3 + %89 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %90 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %89, i32 0, i32 1 + %91 = load i64, ptr %90, align 8 + %92 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %92, i32 0, i32 1 + %94 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %93, ptr noundef nonnull align 8 dereferenceable(8) %5) + %95 = load i64, ptr %94, align 8 + %96 = add i64 %91, %95 + %97 = add i64 %96, 2 + store i64 %97, ptr %10, align 8 + %98 = load i64, ptr %10, align 8 + %99 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %13, i64 noundef %98) + store ptr %99, ptr %11, align 8 + %100 = load ptr, ptr %11, align 8 + %101 = load i64, ptr %10, align 8 + %102 = load i64, ptr %8, align 8 + %103 = sub i64 %101, %102 + %104 = udiv i64 %103, 2 + %105 = getelementptr inbounds ptr, ptr %100, i64 %104 + %106 = load i8, ptr %6, align 1 + %107 = trunc i8 %106 to i1 + br i1 %107, label %108, label %110 + +108: ; preds = %88 + %109 = load i64, ptr %5, align 8 + br label %111 + +110: ; preds = %88 + br label %111 + +111: ; preds = %110, %108 + %112 = phi i64 [ %109, %108 ], [ 0, %110 ] + %113 = getelementptr inbounds ptr, ptr %105, i64 %112 + store ptr %113, ptr %9, align 8 + %114 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %115 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %114, i32 0, i32 2 + %116 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %115, i32 0, i32 3 + %117 = load ptr, ptr %116, align 8 + %118 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %119 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %118, i32 0, i32 3 + %120 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %119, i32 0, i32 3 + %121 = load ptr, ptr %120, align 8 + %122 = getelementptr inbounds ptr, ptr %121, i64 1 + %123 = load ptr, ptr %9, align 8 + %124 = call noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %117, ptr noundef %122, ptr noundef %123) + %125 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %126 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %125, i32 0, i32 0 + %127 = load ptr, ptr %126, align 8 + %128 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %129 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %128, i32 0, i32 1 + %130 = load i64, ptr %129, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %13, ptr noundef %127, i64 noundef %130) #15 + %131 = load ptr, ptr %11, align 8 + %132 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %133 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %132, i32 0, i32 0 + store ptr %131, ptr %133, align 8 + %134 = load i64, ptr %10, align 8 + %135 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %136 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %135, i32 0, i32 1 + store i64 %134, ptr %136, align 8 + br label %137 + +137: ; preds = %111, %87 + %138 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %139 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %138, i32 0, i32 2 + %140 = load ptr, ptr %9, align 8 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %139, ptr noundef %140) #15 + %141 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %141, i32 0, i32 3 + %143 = load ptr, ptr %9, align 8 + %144 = load i64, ptr %7, align 8 + %145 = getelementptr inbounds ptr, ptr %143, i64 %144 + %146 = getelementptr inbounds ptr, ptr %145, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %142, ptr noundef %146) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca %"class.std::allocator.3", align 1 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %7, align 8 + store i64 %1, ptr %8, align 8 + %12 = load ptr, ptr %7, align 8 + call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %9, ptr noundef nonnull align 8 dereferenceable(80) %12) #15 + %13 = load i64, ptr %8, align 8 + store ptr %9, ptr %3, align 8 + store i64 %13, ptr %4, align 8 + %14 = load ptr, ptr %3, align 8 + %15 = load i64, ptr %4, align 8 + %16 = invoke noundef ptr @_ZNSt15__new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %14, i64 noundef %15, ptr noundef null) + to label %17 unwind label %20 + +17: ; preds = %2 + br label %18 + +18: ; preds = %17 + store ptr %9, ptr %6, align 8 + %19 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #15 + ret ptr %16 + +20: ; preds = %2 + %21 = landingpad { ptr, i32 } + cleanup + %22 = extractvalue { ptr, i32 } %21, 0 + store ptr %22, ptr %10, align 8 + %23 = extractvalue { ptr, i32 } %21, 1 + store i32 %23, ptr %11, align 4 + store ptr %9, ptr %5, align 8 + %24 = load ptr, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %24) #15 + br label %25 + +25: ; preds = %20 + %26 = load ptr, ptr %10, align 8 + %27 = load i32, ptr %11, align 4 + %28 = insertvalue { ptr, i32 } poison, ptr %26, 0 + %29 = insertvalue { ptr, i32 } %28, i32 %27, 1 + resume { ptr, i32 } %29 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %7) #15 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %9) #15 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %11) #15 + %13 = call noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %0) #6 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %0) #6 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %21 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load i64, ptr %7, align 8 + %20 = mul i64 8, %19 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %17, ptr align 8 %18, i64 %20, i1 false) + br label %28 + +21: ; preds = %3 + %22 = load i64, ptr %7, align 8 + %23 = icmp eq i64 %22, 1 + br i1 %23, label %24, label %27 + +24: ; preds = %21 + %25 = load ptr, ptr %6, align 8 + %26 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %25, ptr noundef %26) + br label %27 + +27: ; preds = %24, %21 + br label %28 + +28: ; preds = %27, %16 + %29 = load ptr, ptr %6, align 8 + %30 = load i64, ptr %7, align 8 + %31 = getelementptr inbounds ptr, ptr %29, i64 %30 + ret ptr %31 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memmove.p0.p0.i64(ptr nocapture writeonly, ptr nocapture readonly, i64, i1 immarg) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %0, ptr noundef %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load ptr, ptr %3, align 8 + store ptr %6, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %7) #15 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %9) #15 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %11) #15 + %13 = call noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #6 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %24 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load i64, ptr %7, align 8 + %19 = sub i64 0, %18 + %20 = getelementptr inbounds ptr, ptr %17, i64 %19 + %21 = load ptr, ptr %4, align 8 + %22 = load i64, ptr %7, align 8 + %23 = mul i64 8, %22 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %20, ptr align 8 %21, i64 %23, i1 false) + br label %32 + +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 + +27: ; preds = %24 + %28 = load ptr, ptr %6, align 8 + %29 = getelementptr inbounds ptr, ptr %28, i64 -1 + %30 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %29, ptr noundef %30) + br label %31 + +31: ; preds = %27, %24 + br label %32 + +32: ; preds = %31, %16 + %33 = load ptr, ptr %6, align 8 + %34 = load i64, ptr %7, align 8 + %35 = sub i64 0, %34 + %36 = getelementptr inbounds ptr, ptr %33, i64 %35 + ret ptr %36 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 1152921504606846975 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 8 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #14 + ret ptr %20 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 2305843009213693951 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 4611686018427387903 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 4 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #14 + ret ptr %20 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #13 + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) + ret void +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #15 + invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) + to label %7 unwind label %8 + +7: ; preds = %1 + ret void + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + cleanup + %10 = extractvalue { ptr, i32 } %9, 0 + store ptr %10, ptr %3, align 8 + %11 = extractvalue { ptr, i32 } %9, 1 + store i32 %11, ptr %4, align 4 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #15 + br label %12 + +12: ; preds = %8 + %13 = load ptr, ptr %3, align 8 + %14 = load i32, ptr %4, align 4 + %15 = insertvalue { ptr, i32 } poison, ptr %13, 0 + %16 = insertvalue { ptr, i32 } %15, i32 %14, 1 + resume { ptr, i32 } %16 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i64, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %12 = load ptr, ptr %3, align 8 + %13 = load i64, ptr %4, align 8 + %14 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %15 = udiv i64 %13, %14 + %16 = add i64 %15, 1 + store i64 %16, ptr %5, align 8 + store i64 8, ptr %6, align 8 + %17 = load i64, ptr %5, align 8 + %18 = add i64 %17, 2 + store i64 %18, ptr %7, align 8 + %19 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + %20 = load i64, ptr %19, align 8 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 1 + store i64 %20, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 1 + %25 = load i64, ptr %24, align 8 + %26 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %25) + %27 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %28 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %27, i32 0, i32 0 + store ptr %26, ptr %28, align 8 + %29 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + %32 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %32, i32 0, i32 1 + %34 = load i64, ptr %33, align 8 + %35 = load i64, ptr %5, align 8 + %36 = sub i64 %34, %35 + %37 = udiv i64 %36, 2 + %38 = getelementptr inbounds ptr, ptr %31, i64 %37 + store ptr %38, ptr %8, align 8 + %39 = load ptr, ptr %8, align 8 + %40 = load i64, ptr %5, align 8 + %41 = getelementptr inbounds ptr, ptr %39, i64 %40 + store ptr %41, ptr %9, align 8 + %42 = load ptr, ptr %8, align 8 + %43 = load ptr, ptr %9, align 8 + invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %42, ptr noundef %43) + to label %44 unwind label %45 + +44: ; preds = %2 + br label %67 + +45: ; preds = %2 + %46 = landingpad { ptr, i32 } + catch ptr null + %47 = extractvalue { ptr, i32 } %46, 0 + store ptr %47, ptr %10, align 8 + %48 = extractvalue { ptr, i32 } %46, 1 + store i32 %48, ptr %11, align 4 + br label %49 + +49: ; preds = %45 + %50 = load ptr, ptr %10, align 8 + %51 = call ptr @__cxa_begin_catch(ptr %50) #15 + %52 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %53 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %52, i32 0, i32 0 + %54 = load ptr, ptr %53, align 8 + %55 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %56 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %55, i32 0, i32 1 + %57 = load i64, ptr %56, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %54, i64 noundef %57) #15 + %58 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %58, i32 0, i32 0 + store ptr null, ptr %59, align 8 + %60 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %61 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %60, i32 0, i32 1 + store i64 0, ptr %61, align 8 + invoke void @__cxa_rethrow() #18 + to label %101 unwind label %62 + +62: ; preds = %49 + %63 = landingpad { ptr, i32 } + cleanup + %64 = extractvalue { ptr, i32 } %63, 0 + store ptr %64, ptr %10, align 8 + %65 = extractvalue { ptr, i32 } %63, 1 + store i32 %65, ptr %11, align 4 + invoke void @__cxa_end_catch() + to label %66 unwind label %98 + +66: ; preds = %62 + br label %93 + +67: ; preds = %44 + %68 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %68, i32 0, i32 2 + %70 = load ptr, ptr %8, align 8 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %69, ptr noundef %70) #15 + %71 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %72 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %71, i32 0, i32 3 + %73 = load ptr, ptr %9, align 8 + %74 = getelementptr inbounds ptr, ptr %73, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %72, ptr noundef %74) #15 + %75 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %76 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %75, i32 0, i32 2 + %77 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %76, i32 0, i32 1 + %78 = load ptr, ptr %77, align 8 + %79 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %80 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %79, i32 0, i32 2 + %81 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %80, i32 0, i32 0 + store ptr %78, ptr %81, align 8 + %82 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %82, i32 0, i32 3 + %84 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %83, i32 0, i32 1 + %85 = load ptr, ptr %84, align 8 + %86 = load i64, ptr %4, align 8 + %87 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %88 = urem i64 %86, %87 + %89 = getelementptr inbounds i32, ptr %85, i64 %88 + %90 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %91 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %90, i32 0, i32 3 + %92 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %91, i32 0, i32 0 + store ptr %89, ptr %92, align 8 + ret void + +93: ; preds = %66 + %94 = load ptr, ptr %10, align 8 + %95 = load i32, ptr %11, align 4 + %96 = insertvalue { ptr, i32 } poison, ptr %94, 0 + %97 = insertvalue { ptr, i32 } %96, i32 %95, 1 + resume { ptr, i32 } %97 + +98: ; preds = %62 + %99 = landingpad { ptr, i32 } + catch ptr null + %100 = extractvalue { ptr, i32 } %99, 0 + call void @__clang_call_terminate(ptr %100) #16 + unreachable + +101: ; preds = %49 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 1 + store i64 0, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 2 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #15 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 1 + store ptr null, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 2 + store ptr null, ptr %6, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 3 + store ptr null, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = load ptr, ptr %5, align 8 + store ptr %11, ptr %7, align 8 + br label %12 + +12: ; preds = %20, %3 + %13 = load ptr, ptr %7, align 8 + %14 = load ptr, ptr %6, align 8 + %15 = icmp ult ptr %13, %14 + br i1 %15, label %16, label %32 + +16: ; preds = %12 + %17 = invoke noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %10) + to label %18 unwind label %23 + +18: ; preds = %16 + %19 = load ptr, ptr %7, align 8 + store ptr %17, ptr %19, align 8 + br label %20 + +20: ; preds = %18 + %21 = load ptr, ptr %7, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i32 1 + store ptr %22, ptr %7, align 8 + br label %12, !llvm.loop !16 + +23: ; preds = %16 + %24 = landingpad { ptr, i32 } + catch ptr null + %25 = extractvalue { ptr, i32 } %24, 0 + store ptr %25, ptr %8, align 8 + %26 = extractvalue { ptr, i32 } %24, 1 + store i32 %26, ptr %9, align 4 + br label %27 + +27: ; preds = %23 + %28 = load ptr, ptr %8, align 8 + %29 = call ptr @__cxa_begin_catch(ptr %28) #15 + %30 = load ptr, ptr %5, align 8 + %31 = load ptr, ptr %7, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %10, ptr noundef %30, ptr noundef %31) #15 + invoke void @__cxa_rethrow() #18 + to label %47 unwind label %33 + +32: ; preds = %12 + br label %38 + +33: ; preds = %27 + %34 = landingpad { ptr, i32 } + cleanup + %35 = extractvalue { ptr, i32 } %34, 0 + store ptr %35, ptr %8, align 8 + %36 = extractvalue { ptr, i32 } %34, 1 + store i32 %36, ptr %9, align 4 + invoke void @__cxa_end_catch() + to label %37 unwind label %44 + +37: ; preds = %33 + br label %39 + +38: ; preds = %32 + ret void + +39: ; preds = %37 + %40 = load ptr, ptr %8, align 8 + %41 = load i32, ptr %9, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 + +44: ; preds = %33 + %45 = landingpad { ptr, i32 } + catch ptr null + %46 = extractvalue { ptr, i32 } %45, 0 + call void @__clang_call_terminate(ptr %46) #16 + unreachable + +47: ; preds = %27 + unreachable +} + +declare void @__cxa_rethrow() + +declare void @__cxa_end_catch() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 3 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + %8 = call noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %7) #15 + ret i1 %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp eq ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5dequeIiSaIiEE4backEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_Deque_iterator", align 8 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %3, ptr noundef nonnull align 8 dereferenceable(80) %4) #15 + %5 = call noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt15_Deque_iteratorIiRiPiEmmEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #15 + %6 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #15 + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt15_Deque_iteratorIiRiPiEmmEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 1 + %7 = load ptr, ptr %6, align 8 + %8 = icmp eq ptr %5, %7 + br i1 %8, label %9, label %16 + +9: ; preds = %1 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 3 + %11 = load ptr, ptr %10, align 8 + %12 = getelementptr inbounds ptr, ptr %11, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %3, ptr noundef %12) #15 + %13 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 2 + %14 = load ptr, ptr %13, align 8 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + store ptr %14, ptr %15, align 8 + br label %16 + +16: ; preds = %9, %1 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %18 = load ptr, ptr %17, align 8 + %19 = getelementptr inbounds i32, ptr %18, i32 -1 + store ptr %19, ptr %17, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 3 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 1 + %15 = load ptr, ptr %14, align 8 + %16 = icmp ne ptr %11, %15 + br i1 %16, label %17, label %32 + +17: ; preds = %1 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 3 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 0 + %21 = load ptr, ptr %20, align 8 + %22 = getelementptr inbounds i32, ptr %21, i32 -1 + store ptr %22, ptr %20, align 8 + %23 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #15 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + store ptr %23, ptr %4, align 8 + store ptr %27, ptr %5, align 8 + %28 = load ptr, ptr %4, align 8 + %29 = load ptr, ptr %5, align 8 + store ptr %28, ptr %2, align 8 + store ptr %29, ptr %3, align 8 + %30 = load ptr, ptr %2, align 8 + %31 = load ptr, ptr %3, align 8 + br label %34 + +32: ; preds = %1 + invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %33 unwind label %35 + +33: ; preds = %32 + br label %34 + +34: ; preds = %33, %17 + ret void + +35: ; preds = %32 + %36 = landingpad { ptr, i32 } + catch ptr null + %37 = extractvalue { ptr, i32 } %36, 0 + call void @__clang_call_terminate(ptr %37) #16 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 3 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 1 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %7, ptr noundef %11) #15 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %14, i32 0, i32 3 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 3 + %17 = load ptr, ptr %16, align 8 + %18 = getelementptr inbounds ptr, ptr %17, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %13, ptr noundef %18) #15 + %19 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %20 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %19, i32 0, i32 3 + %21 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %20, i32 0, i32 2 + %22 = load ptr, ptr %21, align 8 + %23 = getelementptr inbounds i32, ptr %22, i64 -1 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + store ptr %23, ptr %26, align 8 + %27 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #15 + %28 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %28, i32 0, i32 3 + %30 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + store ptr %27, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %4, align 8 + %33 = load ptr, ptr %5, align 8 + store ptr %32, ptr %2, align 8 + store ptr %33, ptr %3, align 8 + %34 = load ptr, ptr %2, align 8 + %35 = load ptr, ptr %3, align 8 + 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { 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 #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 = { "frame-pointer"="all" "no-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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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 "frame-pointer"="all" "no-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 = { 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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +attributes #14 = { builtin allocsize(0) } +attributes #15 = { nounwind } +attributes #16 = { noreturn nounwind } +attributes #17 = { builtin nounwind } +attributes #18 = { noreturn } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm14/subset-sum-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/subset-sum-problem.ll similarity index 52% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/subset-sum-problem.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/subset-sum-problem.ll index b09cfab87..897f17fe2 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/subset-sum-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/subset-sum-problem.ll @@ -8,229 +8,229 @@ target triple = "x86_64-pc-linux-gnu" @.str.1 = private unnamed_addr constant [25 x i8] c"No subset with given sum\00", align 1 ; 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 +define dso_local noundef zeroext i1 @_Z11isSubsetSumPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 + %7 = alloca ptr, align 8 %8 = alloca i64, align 8 %9 = alloca i64, align 8 %10 = alloca i32, align 4 %11 = alloca i32, align 4 %12 = alloca i32, align 4 %13 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %14 = load i32, i32* %5, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %14 = load i32, ptr %5, align 4 %15 = add nsw i32 %14, 1 %16 = zext i32 %15 to i64 - %17 = load i32, i32* %6, align 4 + %17 = load i32, ptr %6, align 4 %18 = add nsw i32 %17, 1 %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %7, align 8 + %20 = call ptr @llvm.stacksave() + store ptr %20, ptr %7, align 8 %21 = mul nuw i64 %16, %19 %22 = alloca i8, i64 %21, align 16 - store i64 %16, i64* %8, align 8 - store i64 %19, i64* %9, align 8 - store i32 0, i32* %10, align 4 + store i64 %16, ptr %8, align 8 + store i64 %19, ptr %9, align 8 + store i32 0, ptr %10, align 4 br label %23 23: ; preds = %33, %3 - %24 = load i32, i32* %10, align 4 - %25 = load i32, i32* %5, align 4 + %24 = load i32, ptr %10, align 4 + %25 = load i32, ptr %5, align 4 %26 = icmp sle i32 %24, %25 br i1 %26, label %27, label %36 27: ; preds = %23 - %28 = load i32, i32* %10, align 4 + %28 = load i32, ptr %10, align 4 %29 = sext i32 %28 to i64 %30 = mul nsw i64 %29, %19 - %31 = getelementptr inbounds i8, i8* %22, i64 %30 - %32 = getelementptr inbounds i8, i8* %31, i64 0 - store i8 1, i8* %32, align 1 + %31 = getelementptr inbounds i8, ptr %22, i64 %30 + %32 = getelementptr inbounds i8, ptr %31, i64 0 + store i8 1, ptr %32, align 1 br label %33 33: ; preds = %27 - %34 = load i32, i32* %10, align 4 + %34 = load i32, ptr %10, align 4 %35 = add nsw i32 %34, 1 - store i32 %35, i32* %10, align 4 + store i32 %35, ptr %10, align 4 br label %23, !llvm.loop !6 36: ; preds = %23 - store i32 1, i32* %11, align 4 + store i32 1, ptr %11, align 4 br label %37 37: ; preds = %47, %36 - %38 = load i32, i32* %11, align 4 - %39 = load i32, i32* %6, align 4 + %38 = load i32, ptr %11, align 4 + %39 = load i32, ptr %6, align 4 %40 = icmp sle i32 %38, %39 br i1 %40, label %41, label %50 41: ; preds = %37 %42 = mul nsw i64 0, %19 - %43 = getelementptr inbounds i8, i8* %22, i64 %42 - %44 = load i32, i32* %11, align 4 + %43 = getelementptr inbounds i8, ptr %22, i64 %42 + %44 = load i32, ptr %11, align 4 %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i8, i8* %43, i64 %45 - store i8 0, i8* %46, align 1 + %46 = getelementptr inbounds i8, ptr %43, i64 %45 + store i8 0, ptr %46, align 1 br label %47 47: ; preds = %41 - %48 = load i32, i32* %11, align 4 + %48 = load i32, ptr %11, align 4 %49 = add nsw i32 %48, 1 - store i32 %49, i32* %11, align 4 + store i32 %49, ptr %11, align 4 br label %37, !llvm.loop !8 50: ; preds = %37 - store i32 1, i32* %12, align 4 + store i32 1, ptr %12, align 4 br label %51 51: ; preds = %141, %50 - %52 = load i32, i32* %12, align 4 - %53 = load i32, i32* %5, align 4 + %52 = load i32, ptr %12, align 4 + %53 = load i32, ptr %5, align 4 %54 = icmp sle i32 %52, %53 br i1 %54, label %55, label %144 55: ; preds = %51 - store i32 1, i32* %13, align 4 + store i32 1, ptr %13, align 4 br label %56 56: ; preds = %137, %55 - %57 = load i32, i32* %13, align 4 - %58 = load i32, i32* %6, align 4 + %57 = load i32, ptr %13, align 4 + %58 = load i32, ptr %6, align 4 %59 = icmp sle i32 %57, %58 br i1 %59, label %60, label %140 60: ; preds = %56 - %61 = load i32, i32* %13, align 4 - %62 = load i32*, i32** %4, align 8 - %63 = load i32, i32* %12, align 4 + %61 = load i32, ptr %13, align 4 + %62 = load ptr, ptr %4, align 8 + %63 = load i32, ptr %12, align 4 %64 = sub nsw i32 %63, 1 %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds i32, i32* %62, i64 %65 - %67 = load i32, i32* %66, align 4 + %66 = getelementptr inbounds i32, ptr %62, i64 %65 + %67 = load i32, ptr %66, align 4 %68 = icmp slt i32 %61, %67 br i1 %68, label %69, label %88 69: ; preds = %60 - %70 = load i32, i32* %12, align 4 + %70 = load i32, ptr %12, align 4 %71 = sub nsw i32 %70, 1 %72 = sext i32 %71 to i64 %73 = mul nsw i64 %72, %19 - %74 = getelementptr inbounds i8, i8* %22, i64 %73 - %75 = load i32, i32* %13, align 4 + %74 = getelementptr inbounds i8, ptr %22, i64 %73 + %75 = load i32, ptr %13, align 4 %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds i8, i8* %74, i64 %76 - %78 = load i8, i8* %77, align 1 + %77 = getelementptr inbounds i8, ptr %74, i64 %76 + %78 = load i8, ptr %77, align 1 %79 = trunc i8 %78 to i1 - %80 = load i32, i32* %12, align 4 + %80 = load i32, ptr %12, align 4 %81 = sext i32 %80 to i64 %82 = mul nsw i64 %81, %19 - %83 = getelementptr inbounds i8, i8* %22, i64 %82 - %84 = load i32, i32* %13, align 4 + %83 = getelementptr inbounds i8, ptr %22, i64 %82 + %84 = load i32, ptr %13, align 4 %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i8, i8* %83, i64 %85 + %86 = getelementptr inbounds i8, ptr %83, i64 %85 %87 = zext i1 %79 to i8 - store i8 %87, i8* %86, align 1 + store i8 %87, ptr %86, align 1 br label %88 88: ; preds = %69, %60 - %89 = load i32, i32* %13, align 4 - %90 = load i32*, i32** %4, align 8 - %91 = load i32, i32* %12, align 4 + %89 = load i32, ptr %13, align 4 + %90 = load ptr, ptr %4, align 8 + %91 = load i32, ptr %12, align 4 %92 = sub nsw i32 %91, 1 %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %90, i64 %93 - %95 = load i32, i32* %94, align 4 + %94 = getelementptr inbounds i32, ptr %90, i64 %93 + %95 = load i32, ptr %94, align 4 %96 = icmp sge i32 %89, %95 br i1 %96, label %97, label %136 97: ; preds = %88 - %98 = load i32, i32* %12, align 4 + %98 = load i32, ptr %12, align 4 %99 = sub nsw i32 %98, 1 %100 = sext i32 %99 to i64 %101 = mul nsw i64 %100, %19 - %102 = getelementptr inbounds i8, i8* %22, i64 %101 - %103 = load i32, i32* %13, align 4 + %102 = getelementptr inbounds i8, ptr %22, i64 %101 + %103 = load i32, ptr %13, align 4 %104 = sext i32 %103 to i64 - %105 = getelementptr inbounds i8, i8* %102, i64 %104 - %106 = load i8, i8* %105, align 1 + %105 = getelementptr inbounds i8, ptr %102, i64 %104 + %106 = load i8, ptr %105, align 1 %107 = trunc i8 %106 to i1 br i1 %107, label %126, label %108 108: ; preds = %97 - %109 = load i32, i32* %12, align 4 + %109 = load i32, ptr %12, align 4 %110 = sub nsw i32 %109, 1 %111 = sext i32 %110 to i64 %112 = mul nsw i64 %111, %19 - %113 = getelementptr inbounds i8, i8* %22, i64 %112 - %114 = load i32, i32* %13, align 4 - %115 = load i32*, i32** %4, align 8 - %116 = load i32, i32* %12, align 4 + %113 = getelementptr inbounds i8, ptr %22, i64 %112 + %114 = load i32, ptr %13, align 4 + %115 = load ptr, ptr %4, align 8 + %116 = load i32, ptr %12, align 4 %117 = sub nsw i32 %116, 1 %118 = sext i32 %117 to i64 - %119 = getelementptr inbounds i32, i32* %115, i64 %118 - %120 = load i32, i32* %119, align 4 + %119 = getelementptr inbounds i32, ptr %115, i64 %118 + %120 = load i32, ptr %119, align 4 %121 = sub nsw i32 %114, %120 %122 = sext i32 %121 to i64 - %123 = getelementptr inbounds i8, i8* %113, i64 %122 - %124 = load i8, i8* %123, align 1 + %123 = getelementptr inbounds i8, ptr %113, i64 %122 + %124 = load i8, ptr %123, align 1 %125 = trunc i8 %124 to i1 br label %126 126: ; preds = %108, %97 %127 = phi i1 [ true, %97 ], [ %125, %108 ] - %128 = load i32, i32* %12, align 4 + %128 = load i32, ptr %12, align 4 %129 = sext i32 %128 to i64 %130 = mul nsw i64 %129, %19 - %131 = getelementptr inbounds i8, i8* %22, i64 %130 - %132 = load i32, i32* %13, align 4 + %131 = getelementptr inbounds i8, ptr %22, i64 %130 + %132 = load i32, ptr %13, align 4 %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds i8, i8* %131, i64 %133 + %134 = getelementptr inbounds i8, ptr %131, i64 %133 %135 = zext i1 %127 to i8 - store i8 %135, i8* %134, align 1 + store i8 %135, ptr %134, align 1 br label %136 136: ; preds = %126, %88 br label %137 137: ; preds = %136 - %138 = load i32, i32* %13, align 4 + %138 = load i32, ptr %13, align 4 %139 = add nsw i32 %138, 1 - store i32 %139, i32* %13, align 4 + store i32 %139, ptr %13, align 4 br label %56, !llvm.loop !9 140: ; preds = %56 br label %141 141: ; preds = %140 - %142 = load i32, i32* %12, align 4 + %142 = load i32, ptr %12, align 4 %143 = add nsw i32 %142, 1 - store i32 %143, i32* %12, align 4 + store i32 %143, ptr %12, align 4 br label %51, !llvm.loop !10 144: ; preds = %51 - %145 = load i32, i32* %5, align 4 + %145 = load i32, ptr %5, align 4 %146 = sext i32 %145 to i64 %147 = mul nsw i64 %146, %19 - %148 = getelementptr inbounds i8, i8* %22, i64 %147 - %149 = load i32, i32* %6, align 4 + %148 = getelementptr inbounds i8, ptr %22, i64 %147 + %149 = load i32, ptr %6, align 4 %150 = sext i32 %149 to i64 - %151 = getelementptr inbounds i8, i8* %148, i64 %150 - %152 = load i8, i8* %151, align 1 + %151 = getelementptr inbounds i8, ptr %148, i64 %150 + %152 = load i8, ptr %151, align 1 %153 = trunc i8 %152 to i1 - %154 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %154) + %154 = load ptr, ptr %7, align 8 + call void @llvm.stackrestore(ptr %154) ret i1 %153 } -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable define dso_local noundef i32 @main() #2 { @@ -238,51 +238,50 @@ define dso_local noundef i32 @main() #2 { %2 = alloca [6 x i32], align 16 %3 = alloca i32, align 4 %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [6 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([6 x i32]* @__const.main.set to i8*), i64 24, i1 false) - store i32 9, i32* %3, align 4 - store i32 6, i32* %4, align 4 - %6 = getelementptr inbounds [6 x i32], [6 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %4, align 4 - %8 = load i32, i32* %3, align 4 - %9 = call 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* 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* noundef getelementptr inbounds ([25 x i8], [25 x i8]* @.str.1, i64 0, i64 0)) - br label %16 - -16: ; preds = %14, %12 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.set, i64 24, i1 false) + store i32 9, ptr %3, align 4 + store i32 6, ptr %4, align 4 + %5 = getelementptr inbounds [6 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %4, align 4 + %7 = load i32, ptr %3, align 4 + %8 = call noundef zeroext i1 @_Z11isSubsetSumPiii(ptr noundef %5, i32 noundef %6, i32 noundef %7) + %9 = zext i1 %8 to i32 + %10 = icmp eq i32 %9, 1 + br i1 %10, label %11, label %13 + +11: ; preds = %0 + %12 = call i32 (ptr, ...) @printf(ptr noundef @.str) + br label %15 + +13: ; preds = %0 + %14 = call i32 (ptr, ...) @printf(ptr noundef @.str.1) + br label %15 + +15: ; preds = %13, %11 ret i32 0 } -; 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: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 -declare i32 @printf(i8* noundef, ...) #4 +declare i32 @printf(ptr noundef, ...) #4 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 #1 = { nocallback nofree nosync nounwind willreturn } 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 #3 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } 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, !1, !2, !3, !4} !llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{i32 7, !"PIC Level", i32 2} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/subset-sum.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/subset-sum.ll new file mode 100644 index 000000000..251a79179 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/subset-sum.ll @@ -0,0 +1,363 @@ +; ModuleID = 'PE-benchmarks/subset-sum.cpp' +source_filename = "PE-benchmarks/subset-sum.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +@.str = private unnamed_addr constant [4 x i8] c"%*d\00", align 1 +@.str.1 = private unnamed_addr constant [2 x i8] c"n\00", align 1 +@_ZL11total_nodes = internal global i32 0, align 4 +@__const.main.weights = private unnamed_addr constant [8 x i32] [i32 15, i32 22, i32 14, i32 26, i32 32, i32 9, i32 16, i32 8], align 16 +@.str.2 = private unnamed_addr constant [20 x i8] c"Nodes generated %dn\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z11printSubsetPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + store i32 0, ptr %5, align 4 + br label %6 + +6: ; preds = %17, %2 + %7 = load i32, ptr %5, align 4 + %8 = load i32, ptr %4, align 4 + %9 = icmp slt i32 %7, %8 + br i1 %9, label %10, label %20 + +10: ; preds = %6 + %11 = load ptr, ptr %3, align 8 + %12 = load i32, ptr %5, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds i32, ptr %11, i64 %13 + %15 = load i32, ptr %14, align 4 + %16 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef 5, i32 noundef %15) + br label %17 + +17: ; preds = %10 + %18 = load i32, ptr %5, align 4 + %19 = add nsw i32 %18, 1 + store i32 %19, ptr %5, align 4 + br label %6, !llvm.loop !6 + +20: ; preds = %6 + %21 = call i32 (ptr, ...) @printf(ptr noundef @.str.1) + ret void +} + +declare i32 @printf(ptr noundef, ...) #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z10comparatorPKvS0_(ptr noundef %0, ptr noundef %1) #2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %7 = load ptr, ptr %3, align 8 + store ptr %7, ptr %5, align 8 + %8 = load ptr, ptr %4, align 8 + store ptr %8, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load i32, ptr %9, align 4 + %11 = load ptr, ptr %6, align 8 + %12 = load i32, ptr %11, align 4 + %13 = icmp sgt i32 %10, %12 + %14 = zext i1 %13 to i32 + ret i32 %14 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10subset_sumPiS_iiiii(ptr noundef %0, ptr noundef %1, i32 noundef %2, i32 noundef %3, i32 noundef %4, i32 noundef %5, i32 noundef %6) #0 { + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + %12 = alloca i32, align 4 + %13 = alloca i32, align 4 + %14 = alloca i32, align 4 + %15 = alloca i32, align 4 + store ptr %0, ptr %8, align 8 + store ptr %1, ptr %9, align 8 + store i32 %2, ptr %10, align 4 + store i32 %3, ptr %11, align 4 + store i32 %4, ptr %12, align 4 + store i32 %5, ptr %13, align 4 + store i32 %6, ptr %14, align 4 + %16 = load i32, ptr @_ZL11total_nodes, align 4 + %17 = add nsw i32 %16, 1 + store i32 %17, ptr @_ZL11total_nodes, align 4 + %18 = load i32, ptr %14, align 4 + %19 = load i32, ptr %12, align 4 + %20 = icmp eq i32 %18, %19 + br i1 %20, label %21, label %62 + +21: ; preds = %7 + %22 = load ptr, ptr %9, align 8 + %23 = load i32, ptr %11, align 4 + call void @_Z11printSubsetPii(ptr noundef %22, i32 noundef %23) + %24 = load i32, ptr %13, align 4 + %25 = add nsw i32 %24, 1 + %26 = load i32, ptr %10, align 4 + %27 = icmp slt i32 %25, %26 + br i1 %27, label %28, label %61 + +28: ; preds = %21 + %29 = load i32, ptr %12, align 4 + %30 = load ptr, ptr %8, align 8 + %31 = load i32, ptr %13, align 4 + %32 = sext i32 %31 to i64 + %33 = getelementptr inbounds i32, ptr %30, i64 %32 + %34 = load i32, ptr %33, align 4 + %35 = sub nsw i32 %29, %34 + %36 = load ptr, ptr %8, align 8 + %37 = load i32, ptr %13, align 4 + %38 = add nsw i32 %37, 1 + %39 = sext i32 %38 to i64 + %40 = getelementptr inbounds i32, ptr %36, i64 %39 + %41 = load i32, ptr %40, align 4 + %42 = add nsw i32 %35, %41 + %43 = load i32, ptr %14, align 4 + %44 = icmp sle i32 %42, %43 + br i1 %44, label %45, label %61 + +45: ; preds = %28 + %46 = load ptr, ptr %8, align 8 + %47 = load ptr, ptr %9, align 8 + %48 = load i32, ptr %10, align 4 + %49 = load i32, ptr %11, align 4 + %50 = sub nsw i32 %49, 1 + %51 = load i32, ptr %12, align 4 + %52 = load ptr, ptr %8, align 8 + %53 = load i32, ptr %13, align 4 + %54 = sext i32 %53 to i64 + %55 = getelementptr inbounds i32, ptr %52, i64 %54 + %56 = load i32, ptr %55, align 4 + %57 = sub nsw i32 %51, %56 + %58 = load i32, ptr %13, align 4 + %59 = add nsw i32 %58, 1 + %60 = load i32, ptr %14, align 4 + call void @_Z10subset_sumPiS_iiiii(ptr noundef %46, ptr 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 + br label %123 + +62: ; preds = %7 + %63 = load i32, ptr %13, align 4 + %64 = load i32, ptr %10, align 4 + %65 = icmp slt i32 %63, %64 + br i1 %65, label %66, label %122 + +66: ; preds = %62 + %67 = load i32, ptr %12, align 4 + %68 = load ptr, ptr %8, align 8 + %69 = load i32, ptr %13, align 4 + %70 = sext i32 %69 to i64 + %71 = getelementptr inbounds i32, ptr %68, i64 %70 + %72 = load i32, ptr %71, align 4 + %73 = add nsw i32 %67, %72 + %74 = load i32, ptr %14, align 4 + %75 = icmp sle i32 %73, %74 + br i1 %75, label %76, label %122 + +76: ; preds = %66 + %77 = load i32, ptr %13, align 4 + store i32 %77, ptr %15, align 4 + br label %78 + +78: ; preds = %118, %76 + %79 = load i32, ptr %15, align 4 + %80 = load i32, ptr %10, align 4 + %81 = icmp slt i32 %79, %80 + br i1 %81, label %82, label %121 + +82: ; preds = %78 + %83 = load ptr, ptr %8, align 8 + %84 = load i32, ptr %15, align 4 + %85 = sext i32 %84 to i64 + %86 = getelementptr inbounds i32, ptr %83, i64 %85 + %87 = load i32, ptr %86, align 4 + %88 = load ptr, ptr %9, align 8 + %89 = load i32, ptr %11, align 4 + %90 = sext i32 %89 to i64 + %91 = getelementptr inbounds i32, ptr %88, i64 %90 + store i32 %87, ptr %91, align 4 + %92 = load i32, ptr %12, align 4 + %93 = load ptr, ptr %8, align 8 + %94 = load i32, ptr %15, align 4 + %95 = sext i32 %94 to i64 + %96 = getelementptr inbounds i32, ptr %93, i64 %95 + %97 = load i32, ptr %96, align 4 + %98 = add nsw i32 %92, %97 + %99 = load i32, ptr %14, align 4 + %100 = icmp sle i32 %98, %99 + br i1 %100, label %101, label %117 + +101: ; preds = %82 + %102 = load ptr, ptr %8, align 8 + %103 = load ptr, ptr %9, align 8 + %104 = load i32, ptr %10, align 4 + %105 = load i32, ptr %11, align 4 + %106 = add nsw i32 %105, 1 + %107 = load i32, ptr %12, align 4 + %108 = load ptr, ptr %8, align 8 + %109 = load i32, ptr %15, align 4 + %110 = sext i32 %109 to i64 + %111 = getelementptr inbounds i32, ptr %108, i64 %110 + %112 = load i32, ptr %111, align 4 + %113 = add nsw i32 %107, %112 + %114 = load i32, ptr %15, align 4 + %115 = add nsw i32 %114, 1 + %116 = load i32, ptr %14, align 4 + call void @_Z10subset_sumPiS_iiiii(ptr noundef %102, ptr noundef %103, i32 noundef %104, i32 noundef %106, i32 noundef %113, i32 noundef %115, i32 noundef %116) + br label %117 + +117: ; preds = %101, %82 + br label %118 + +118: ; preds = %117 + %119 = load i32, ptr %15, align 4 + %120 = add nsw i32 %119, 1 + store i32 %120, ptr %15, align 4 + br label %78, !llvm.loop !8 + +121: ; preds = %78 + br label %122 + +122: ; preds = %121, %66, %62 + br label %123 + +123: ; preds = %61, %122 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z15generateSubsetsPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = mul i64 %11, 4 + %13 = call noalias ptr @malloc(i64 noundef %12) #7 + store ptr %13, ptr %7, align 8 + store i32 0, ptr %8, align 4 + %14 = load ptr, ptr %4, align 8 + %15 = load i32, ptr %5, align 4 + %16 = sext i32 %15 to i64 + call void @qsort(ptr noundef %14, i64 noundef %16, i64 noundef 4, ptr noundef @_Z10comparatorPKvS0_) + store i32 0, ptr %9, align 4 + br label %17 + +17: ; preds = %29, %3 + %18 = load i32, ptr %9, align 4 + %19 = load i32, ptr %5, align 4 + %20 = icmp slt i32 %18, %19 + br i1 %20, label %21, label %32 + +21: ; preds = %17 + %22 = load ptr, ptr %4, align 8 + %23 = load i32, ptr %9, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds i32, ptr %22, i64 %24 + %26 = load i32, ptr %25, align 4 + %27 = load i32, ptr %8, align 4 + %28 = add nsw i32 %27, %26 + store i32 %28, ptr %8, align 4 + br label %29 + +29: ; preds = %21 + %30 = load i32, ptr %9, align 4 + %31 = add nsw i32 %30, 1 + store i32 %31, ptr %9, align 4 + br label %17, !llvm.loop !9 + +32: ; preds = %17 + %33 = load ptr, ptr %4, align 8 + %34 = getelementptr inbounds i32, ptr %33, i64 0 + %35 = load i32, ptr %34, align 4 + %36 = load i32, ptr %6, align 4 + %37 = icmp sle i32 %35, %36 + br i1 %37, label %38, label %47 + +38: ; preds = %32 + %39 = load i32, ptr %8, align 4 + %40 = load i32, ptr %6, align 4 + %41 = icmp sge i32 %39, %40 + br i1 %41, label %42, label %47 + +42: ; preds = %38 + %43 = load ptr, ptr %4, align 8 + %44 = load ptr, ptr %7, align 8 + %45 = load i32, ptr %5, align 4 + %46 = load i32, ptr %6, align 4 + call void @_Z10subset_sumPiS_iiiii(ptr noundef %43, ptr noundef %44, i32 noundef %45, i32 noundef 0, i32 noundef 0, i32 noundef 0, i32 noundef %46) + br label %47 + +47: ; preds = %42, %38, %32 + %48 = load ptr, ptr %7, align 8 + call void @free(ptr noundef %48) #8 + ret void +} + +; Function Attrs: nounwind allocsize(0) +declare noalias ptr @malloc(i64 noundef) #3 + +declare void @qsort(ptr noundef, i64 noundef, i64 noundef, ptr noundef) #1 + +; Function Attrs: nounwind +declare void @free(ptr noundef) #4 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #5 { + %1 = alloca i32, align 4 + %2 = alloca [8 x i32], align 16 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.weights, i64 32, i1 false) + store i32 53, ptr %3, align 4 + store i32 8, ptr %4, align 4 + %5 = getelementptr inbounds [8 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %4, align 4 + %7 = load i32, ptr %3, align 4 + call void @_Z15generateSubsetsPiii(ptr noundef %5, i32 noundef %6, i32 noundef %7) + %8 = load i32, ptr @_ZL11total_nodes, align 4 + %9 = call i32 (ptr, ...) @printf(ptr noundef @.str.2, i32 noundef %8) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 + +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 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 = { 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #7 = { nounwind allocsize(0) } +attributes #8 = { nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/sudoku.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/sudoku.ll new file mode 100644 index 000000000..504de7b12 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/sudoku.ll @@ -0,0 +1,530 @@ +; ModuleID = 'PE-benchmarks/sudoku.cpp' +source_filename = "PE-benchmarks/sudoku.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z11SolveSudokuPA9_i(ptr noundef %0) #0 { + %2 = alloca i1, align 1 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + %7 = load ptr, ptr %3, align 8 + %8 = call noundef zeroext i1 @_Z22FindUnassignedLocationPA9_iRiS1_(ptr noundef %7, ptr noundef nonnull align 4 dereferenceable(4) %4, ptr noundef nonnull align 4 dereferenceable(4) %5) + br i1 %8, label %10, label %9 + +9: ; preds = %1 + store i1 true, ptr %2, align 1 + br label %45 + +10: ; preds = %1 + store i32 1, ptr %6, align 4 + br label %11 + +11: ; preds = %41, %10 + %12 = load i32, ptr %6, align 4 + %13 = icmp sle i32 %12, 9 + br i1 %13, label %14, label %44 + +14: ; preds = %11 + %15 = load ptr, ptr %3, align 8 + %16 = load i32, ptr %4, align 4 + %17 = load i32, ptr %5, align 4 + %18 = load i32, ptr %6, align 4 + %19 = call noundef zeroext i1 @_Z6isSafePA9_iiii(ptr noundef %15, i32 noundef %16, i32 noundef %17, i32 noundef %18) + br i1 %19, label %20, label %40 + +20: ; preds = %14 + %21 = load i32, ptr %6, align 4 + %22 = load ptr, ptr %3, align 8 + %23 = load i32, ptr %4, align 4 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds [9 x i32], ptr %22, i64 %24 + %26 = load i32, ptr %5, align 4 + %27 = sext i32 %26 to i64 + %28 = getelementptr inbounds [9 x i32], ptr %25, i64 0, i64 %27 + store i32 %21, ptr %28, align 4 + %29 = load ptr, ptr %3, align 8 + %30 = call noundef zeroext i1 @_Z11SolveSudokuPA9_i(ptr noundef %29) + br i1 %30, label %31, label %32 + +31: ; preds = %20 + store i1 true, ptr %2, align 1 + br label %45 + +32: ; preds = %20 + %33 = load ptr, ptr %3, align 8 + %34 = load i32, ptr %4, align 4 + %35 = sext i32 %34 to i64 + %36 = getelementptr inbounds [9 x i32], ptr %33, i64 %35 + %37 = load i32, ptr %5, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds [9 x i32], ptr %36, i64 0, i64 %38 + store i32 0, ptr %39, align 4 + br label %40 + +40: ; preds = %32, %14 + br label %41 + +41: ; preds = %40 + %42 = load i32, ptr %6, align 4 + %43 = add nsw i32 %42, 1 + store i32 %43, ptr %6, align 4 + br label %11, !llvm.loop !6 + +44: ; preds = %11 + store i1 false, ptr %2, align 1 + br label %45 + +45: ; preds = %44, %31, %9 + %46 = load i1, ptr %2, align 1 + ret i1 %46 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z22FindUnassignedLocationPA9_iRiS1_(ptr noundef %0, ptr noundef nonnull align 4 dereferenceable(4) %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #1 { + %4 = alloca i1, align 1 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %6, align 8 + store i32 0, ptr %8, align 4 + br label %9 + +9: ; preds = %38, %3 + %10 = load ptr, ptr %6, align 8 + %11 = load i32, ptr %10, align 4 + %12 = icmp slt i32 %11, 9 + br i1 %12, label %13, label %42 + +13: ; preds = %9 + %14 = load ptr, ptr %7, align 8 + store i32 0, ptr %14, align 4 + br label %15 + +15: ; preds = %33, %13 + %16 = load ptr, ptr %7, align 8 + %17 = load i32, ptr %16, align 4 + %18 = icmp slt i32 %17, 9 + br i1 %18, label %19, label %37 + +19: ; preds = %15 + %20 = load ptr, ptr %5, align 8 + %21 = load ptr, ptr %6, align 8 + %22 = load i32, ptr %21, align 4 + %23 = sext i32 %22 to i64 + %24 = getelementptr inbounds [9 x i32], ptr %20, i64 %23 + %25 = load ptr, ptr %7, align 8 + %26 = load i32, ptr %25, align 4 + %27 = sext i32 %26 to i64 + %28 = getelementptr inbounds [9 x i32], ptr %24, i64 0, i64 %27 + %29 = load i32, ptr %28, align 4 + %30 = icmp eq i32 %29, 0 + br i1 %30, label %31, label %32 + +31: ; preds = %19 + store i1 true, ptr %4, align 1 + br label %43 + +32: ; preds = %19 + br label %33 + +33: ; preds = %32 + %34 = load ptr, ptr %7, align 8 + %35 = load i32, ptr %34, align 4 + %36 = add nsw i32 %35, 1 + store i32 %36, ptr %34, align 4 + br label %15, !llvm.loop !8 + +37: ; preds = %15 + br label %38 + +38: ; preds = %37 + %39 = load ptr, ptr %6, align 8 + %40 = load i32, ptr %39, align 4 + %41 = add nsw i32 %40, 1 + store i32 %41, ptr %39, align 4 + br label %9, !llvm.loop !9 + +42: ; preds = %9 + store i1 false, ptr %4, align 1 + br label %43 + +43: ; preds = %42, %31 + %44 = load i1, ptr %4, align 1 + ret i1 %44 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z6isSafePA9_iiii(ptr noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #1 { + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store i32 %2, ptr %7, align 4 + store i32 %3, ptr %8, align 4 + %9 = load ptr, ptr %5, align 8 + %10 = load i32, ptr %6, align 4 + %11 = load i32, ptr %8, align 4 + %12 = call noundef zeroext i1 @_Z9UsedInRowPA9_iii(ptr noundef %9, i32 noundef %10, i32 noundef %11) + br i1 %12, label %40, label %13 + +13: ; preds = %4 + %14 = load ptr, ptr %5, align 8 + %15 = load i32, ptr %7, align 4 + %16 = load i32, ptr %8, align 4 + %17 = call noundef zeroext i1 @_Z9UsedInColPA9_iii(ptr noundef %14, i32 noundef %15, i32 noundef %16) + br i1 %17, label %40, label %18 + +18: ; preds = %13 + %19 = load ptr, ptr %5, align 8 + %20 = load i32, ptr %6, align 4 + %21 = load i32, ptr %6, align 4 + %22 = srem i32 %21, 3 + %23 = sub nsw i32 %20, %22 + %24 = load i32, ptr %7, align 4 + %25 = load i32, ptr %7, align 4 + %26 = srem i32 %25, 3 + %27 = sub nsw i32 %24, %26 + %28 = load i32, ptr %8, align 4 + %29 = call noundef zeroext i1 @_Z9UsedInBoxPA9_iiii(ptr noundef %19, i32 noundef %23, i32 noundef %27, i32 noundef %28) + br i1 %29, label %40, label %30 + +30: ; preds = %18 + %31 = load ptr, ptr %5, align 8 + %32 = load i32, ptr %6, align 4 + %33 = sext i32 %32 to i64 + %34 = getelementptr inbounds [9 x i32], ptr %31, i64 %33 + %35 = load i32, ptr %7, align 4 + %36 = sext i32 %35 to i64 + %37 = getelementptr inbounds [9 x i32], ptr %34, i64 0, i64 %36 + %38 = load i32, ptr %37, align 4 + %39 = icmp eq i32 %38, 0 + br label %40 + +40: ; preds = %30, %18, %13, %4 + %41 = phi i1 [ false, %18 ], [ false, %13 ], [ false, %4 ], [ %39, %30 ] + ret i1 %41 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z9UsedInRowPA9_iii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #1 { + %4 = alloca i1, align 1 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store i32 %2, ptr %7, align 4 + store i32 0, ptr %8, align 4 + br label %9 + +9: ; preds = %25, %3 + %10 = load i32, ptr %8, align 4 + %11 = icmp slt i32 %10, 9 + br i1 %11, label %12, label %28 + +12: ; preds = %9 + %13 = load ptr, ptr %5, align 8 + %14 = load i32, ptr %6, align 4 + %15 = sext i32 %14 to i64 + %16 = getelementptr inbounds [9 x i32], ptr %13, i64 %15 + %17 = load i32, ptr %8, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds [9 x i32], ptr %16, i64 0, i64 %18 + %20 = load i32, ptr %19, align 4 + %21 = load i32, ptr %7, align 4 + %22 = icmp eq i32 %20, %21 + br i1 %22, label %23, label %24 + +23: ; preds = %12 + store i1 true, ptr %4, align 1 + br label %29 + +24: ; preds = %12 + br label %25 + +25: ; preds = %24 + %26 = load i32, ptr %8, align 4 + %27 = add nsw i32 %26, 1 + store i32 %27, ptr %8, align 4 + br label %9, !llvm.loop !10 + +28: ; preds = %9 + store i1 false, ptr %4, align 1 + br label %29 + +29: ; preds = %28, %23 + %30 = load i1, ptr %4, align 1 + ret i1 %30 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z9UsedInColPA9_iii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #1 { + %4 = alloca i1, align 1 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store i32 %2, ptr %7, align 4 + store i32 0, ptr %8, align 4 + br label %9 + +9: ; preds = %25, %3 + %10 = load i32, ptr %8, align 4 + %11 = icmp slt i32 %10, 9 + br i1 %11, label %12, label %28 + +12: ; preds = %9 + %13 = load ptr, ptr %5, align 8 + %14 = load i32, ptr %8, align 4 + %15 = sext i32 %14 to i64 + %16 = getelementptr inbounds [9 x i32], ptr %13, i64 %15 + %17 = load i32, ptr %6, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds [9 x i32], ptr %16, i64 0, i64 %18 + %20 = load i32, ptr %19, align 4 + %21 = load i32, ptr %7, align 4 + %22 = icmp eq i32 %20, %21 + br i1 %22, label %23, label %24 + +23: ; preds = %12 + store i1 true, ptr %4, align 1 + br label %29 + +24: ; preds = %12 + br label %25 + +25: ; preds = %24 + %26 = load i32, ptr %8, align 4 + %27 = add nsw i32 %26, 1 + store i32 %27, ptr %8, align 4 + br label %9, !llvm.loop !11 + +28: ; preds = %9 + store i1 false, ptr %4, align 1 + br label %29 + +29: ; preds = %28, %23 + %30 = load i1, ptr %4, align 1 + ret i1 %30 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z9UsedInBoxPA9_iiii(ptr noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #1 { + %5 = alloca i1, align 1 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + store ptr %0, ptr %6, align 8 + store i32 %1, ptr %7, align 4 + store i32 %2, ptr %8, align 4 + store i32 %3, ptr %9, align 4 + store i32 0, ptr %10, align 4 + br label %12 + +12: ; preds = %40, %4 + %13 = load i32, ptr %10, align 4 + %14 = icmp slt i32 %13, 3 + br i1 %14, label %15, label %43 + +15: ; preds = %12 + store i32 0, ptr %11, align 4 + br label %16 + +16: ; preds = %36, %15 + %17 = load i32, ptr %11, align 4 + %18 = icmp slt i32 %17, 3 + br i1 %18, label %19, label %39 + +19: ; preds = %16 + %20 = load ptr, ptr %6, align 8 + %21 = load i32, ptr %10, align 4 + %22 = load i32, ptr %7, align 4 + %23 = add nsw i32 %21, %22 + %24 = sext i32 %23 to i64 + %25 = getelementptr inbounds [9 x i32], ptr %20, i64 %24 + %26 = load i32, ptr %11, align 4 + %27 = load i32, ptr %8, align 4 + %28 = add nsw i32 %26, %27 + %29 = sext i32 %28 to i64 + %30 = getelementptr inbounds [9 x i32], ptr %25, i64 0, i64 %29 + %31 = load i32, ptr %30, align 4 + %32 = load i32, ptr %9, align 4 + %33 = icmp eq i32 %31, %32 + br i1 %33, label %34, label %35 + +34: ; preds = %19 + store i1 true, ptr %5, align 1 + br label %44 + +35: ; preds = %19 + br label %36 + +36: ; preds = %35 + %37 = load i32, ptr %11, align 4 + %38 = add nsw i32 %37, 1 + store i32 %38, ptr %11, align 4 + br label %16, !llvm.loop !12 + +39: ; preds = %16 + br label %40 + +40: ; preds = %39 + %41 = load i32, ptr %10, align 4 + %42 = add nsw i32 %41, 1 + store i32 %42, ptr %10, align 4 + br label %12, !llvm.loop !13 + +43: ; preds = %12 + store i1 false, ptr %5, align 1 + br label %44 + +44: ; preds = %43, %34 + %45 = load i1, ptr %5, align 1 + ret i1 %45 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9printGridPA9_i(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + store i32 0, ptr %3, align 4 + br label %5 + +5: ; preds = %28, %1 + %6 = load i32, ptr %3, align 4 + %7 = icmp slt i32 %6, 9 + br i1 %7, label %8, label %31 + +8: ; preds = %5 + store i32 0, ptr %4, align 4 + br label %9 + +9: ; preds = %23, %8 + %10 = load i32, ptr %4, align 4 + %11 = icmp slt i32 %10, 9 + br i1 %11, label %12, label %26 + +12: ; preds = %9 + %13 = load ptr, ptr %2, align 8 + %14 = load i32, ptr %3, align 4 + %15 = sext i32 %14 to i64 + %16 = getelementptr inbounds [9 x i32], ptr %13, i64 %15 + %17 = load i32, ptr %4, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds [9 x i32], ptr %16, i64 0, i64 %18 + %20 = load i32, ptr %19, align 4 + %21 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %20) + %22 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %21, ptr noundef @.str) + br label %23 + +23: ; preds = %12 + %24 = load i32, ptr %4, align 4 + %25 = add nsw i32 %24, 1 + store i32 %25, ptr %4, align 4 + br label %9, !llvm.loop !14 + +26: ; preds = %9 + %27 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %28 + +28: ; preds = %26 + %29 = load i32, ptr %3, align 4 + %30 = add nsw i32 %29, 1 + store i32 %30, ptr %3, align 4 + br label %5, !llvm.loop !15 + +31: ; preds = %5 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [9 x [9 x i32]], align 16 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.grid, i64 324, i1 false) + %3 = getelementptr inbounds [9 x [9 x i32]], ptr %2, i64 0, i64 0 + %4 = call noundef zeroext i1 @_Z11SolveSudokuPA9_i(ptr noundef %3) + %5 = zext i1 %4 to i32 + %6 = icmp eq i32 %5, 1 + br i1 %6, label %7, label %9 + +7: ; preds = %0 + %8 = getelementptr inbounds [9 x [9 x i32]], ptr %2, i64 0, i64 0 + call void @_Z9printGridPA9_i(ptr noundef %8) + br label %11 + +9: ; preds = %0 + %10 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %11 + +11: ; preds = %9, %7 + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/tarjan-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/tarjan-algorithm.ll new file mode 100644 index 000000000..7edc68a5d --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/tarjan-algorithm.ll @@ -0,0 +1,3030 @@ +; ModuleID = 'PE-benchmarks/tarjan-algorithm.cpp' +source_filename = "PE-benchmarks/tarjan-algorithm.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"struct.std::_List_iterator" = type { ptr } +%"class.std::stack" = type { %"class.std::deque" } +%"class.std::deque" = type { %"class.std::_Deque_base" } +%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } +%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } +%"struct.std::_Deque_base>::_Deque_impl_data" = type { ptr, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } +%"struct.std::_Deque_iterator" = type { ptr, ptr, ptr, ptr } +%"struct.std::__allocated_ptr" = type { ptr, ptr } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } +%"class.std::allocator.3" = type { i8 } + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZSt3minIiERKT_S2_S2_ = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any + +$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any + +$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any + +$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any + +$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any + +$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any + +$_ZSt16__deque_buf_sizem = comdat any + +$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any + +$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$_ZSt3minImERKT_S2_S2_ = comdat any + +$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any + +$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any + +$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any + +$_ZSt3maxImERKT_S2_S2_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any + +$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__miter_baseIPPiET_S2_ = comdat any + +$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any + +$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__niter_baseIPPiET_S2_ = comdat any + +$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_ = comdat any + +$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any + +$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any + +$_ZNSt15__new_allocatorIPiED2Ev = comdat any + +$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any + +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +$_ZNSt5dequeIiSaIiEE4backEv = comdat any + +$_ZNSt5dequeIiSaIiEE3endEv = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEmmEv = comdat any + +$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any + +$_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any + +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any + +$_ZNSt5dequeIiSaIiEEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any + +$_ZNSt15__new_allocatorIiED2Ev = comdat any + +@_ZZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPbE4time = internal global i32 0, align 4 +@_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 +@.str.3 = private unnamed_addr constant [24 x i8] c"\0ASCCs in second graph \0A\00", align 1 +@.str.4 = private unnamed_addr constant [23 x i8] c"\0ASCCs in third graph \0A\00", align 1 +@.str.5 = private unnamed_addr constant [24 x i8] c"\0ASCCs in fourth graph \0A\00", align 1 +@.str.6 = private unnamed_addr constant [23 x i8] c"\0ASCCs in fifth graph \0A\00", align 1 +@.str.7 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 + +@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei + +; Function Attrs: noinline uwtable +define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #0 align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + store i32 %6, ptr %7, align 8 + %8 = load i32, ptr %4, align 4 + %9 = sext i32 %8 to i64 + %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) + %11 = extractvalue { i64, i1 } %10, 1 + %12 = extractvalue { i64, i1 } %10, 0 + %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = or i1 %11, %14 + %16 = extractvalue { i64, i1 } %13, 0 + %17 = select i1 %15, i64 -1, i64 %16 + %18 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #14 + store i64 %9, ptr %18, align 16 + %19 = getelementptr inbounds i8, ptr %18, i64 8 + %20 = icmp eq i64 %9, 0 + br i1 %20, label %27, label %21 + +21: ; preds = %2 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %9 + br label %23 + +23: ; preds = %23, %21 + %24 = phi ptr [ %19, %21 ], [ %25, %23 ] + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #15 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 1 + %26 = icmp eq ptr %25, %22 + br i1 %26, label %27, label %23 + +27: ; preds = %2, %23 + %28 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + store ptr %19, ptr %28, align 8 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #4 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds %"class.std::__cxx11::list", ptr %9, i64 %11 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %6) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #15 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, ptr noundef %2, ptr noundef %3, ptr noundef %4, ptr noundef %5) #4 align 2 { + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::_List_iterator", align 8 + %14 = alloca %"struct.std::_List_iterator", align 8 + %15 = alloca %"struct.std::_List_iterator", align 8 + %16 = alloca i32, align 4 + %17 = alloca i32, align 4 + store ptr %0, ptr %7, align 8 + store i32 %1, ptr %8, align 4 + store ptr %2, ptr %9, align 8 + store ptr %3, ptr %10, align 8 + store ptr %4, ptr %11, align 8 + store ptr %5, ptr %12, align 8 + %18 = load ptr, ptr %7, align 8 + %19 = load i32, ptr @_ZZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPbE4time, align 4 + %20 = add nsw i32 %19, 1 + store i32 %20, ptr @_ZZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPbE4time, align 4 + %21 = load ptr, ptr %10, align 8 + %22 = load i32, ptr %8, align 4 + %23 = sext i32 %22 to i64 + %24 = getelementptr inbounds i32, ptr %21, i64 %23 + store i32 %20, ptr %24, align 4 + %25 = load ptr, ptr %9, align 8 + %26 = load i32, ptr %8, align 4 + %27 = sext i32 %26 to i64 + %28 = getelementptr inbounds i32, ptr %25, i64 %27 + store i32 %20, ptr %28, align 4 + %29 = load ptr, ptr %11, align 8 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %29, ptr noundef nonnull align 4 dereferenceable(4) %8) + %30 = load ptr, ptr %12, align 8 + %31 = load i32, ptr %8, align 4 + %32 = sext i32 %31 to i64 + %33 = getelementptr inbounds i8, ptr %30, i64 %32 + store i8 1, ptr %33, align 1 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %13) #15 + %34 = getelementptr inbounds %class.Graph, ptr %18, i32 0, i32 1 + %35 = load ptr, ptr %34, align 8 + %36 = load i32, ptr %8, align 4 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds %"class.std::__cxx11::list", ptr %35, i64 %37 + %39 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %38) #15 + %40 = getelementptr inbounds %"struct.std::_List_iterator", ptr %14, i32 0, i32 0 + store ptr %39, ptr %40, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %13, ptr align 8 %14, i64 8, i1 false) + br label %41 + +41: ; preds = %105, %6 + %42 = getelementptr inbounds %class.Graph, ptr %18, i32 0, i32 1 + %43 = load ptr, ptr %42, align 8 + %44 = load i32, ptr %8, align 4 + %45 = sext i32 %44 to i64 + %46 = getelementptr inbounds %"class.std::__cxx11::list", ptr %43, i64 %45 + %47 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %46) #15 + %48 = getelementptr inbounds %"struct.std::_List_iterator", ptr %15, i32 0, i32 0 + store ptr %47, ptr %48, align 8 + %49 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %13, ptr noundef nonnull align 8 dereferenceable(8) %15) #15 + br i1 %49, label %50, label %107 + +50: ; preds = %41 + %51 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %13) #15 + %52 = load i32, ptr %51, align 4 + store i32 %52, ptr %16, align 4 + %53 = load ptr, ptr %9, align 8 + %54 = load i32, ptr %16, align 4 + %55 = sext i32 %54 to i64 + %56 = getelementptr inbounds i32, ptr %53, i64 %55 + %57 = load i32, ptr %56, align 4 + %58 = icmp eq i32 %57, -1 + br i1 %58, label %59, label %79 + +59: ; preds = %50 + %60 = load i32, ptr %16, align 4 + %61 = load ptr, ptr %9, align 8 + %62 = load ptr, ptr %10, align 8 + %63 = load ptr, ptr %11, align 8 + %64 = load ptr, ptr %12, align 8 + call void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(ptr noundef nonnull align 8 dereferenceable(16) %18, i32 noundef %60, ptr noundef %61, ptr noundef %62, ptr noundef %63, ptr noundef %64) + %65 = load ptr, ptr %10, align 8 + %66 = load i32, ptr %8, align 4 + %67 = sext i32 %66 to i64 + %68 = getelementptr inbounds i32, ptr %65, i64 %67 + %69 = load ptr, ptr %10, align 8 + %70 = load i32, ptr %16, align 4 + %71 = sext i32 %70 to i64 + %72 = getelementptr inbounds i32, ptr %69, i64 %71 + %73 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %68, ptr noundef nonnull align 4 dereferenceable(4) %72) + %74 = load i32, ptr %73, align 4 + %75 = load ptr, ptr %10, align 8 + %76 = load i32, ptr %8, align 4 + %77 = sext i32 %76 to i64 + %78 = getelementptr inbounds i32, ptr %75, i64 %77 + store i32 %74, ptr %78, align 4 + br label %104 + +79: ; preds = %50 + %80 = load ptr, ptr %12, align 8 + %81 = load i32, ptr %16, align 4 + %82 = sext i32 %81 to i64 + %83 = getelementptr inbounds i8, ptr %80, i64 %82 + %84 = load i8, ptr %83, align 1 + %85 = trunc i8 %84 to i1 + %86 = zext i1 %85 to i32 + %87 = icmp eq i32 %86, 1 + br i1 %87, label %88, label %103 + +88: ; preds = %79 + %89 = load ptr, ptr %10, align 8 + %90 = load i32, ptr %8, align 4 + %91 = sext i32 %90 to i64 + %92 = getelementptr inbounds i32, ptr %89, i64 %91 + %93 = load ptr, ptr %9, align 8 + %94 = load i32, ptr %16, align 4 + %95 = sext i32 %94 to i64 + %96 = getelementptr inbounds i32, ptr %93, i64 %95 + %97 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %92, ptr noundef nonnull align 4 dereferenceable(4) %96) + %98 = load i32, ptr %97, align 4 + %99 = load ptr, ptr %10, align 8 + %100 = load i32, ptr %8, align 4 + %101 = sext i32 %100 to i64 + %102 = getelementptr inbounds i32, ptr %99, i64 %101 + store i32 %98, ptr %102, align 4 + br label %103 + +103: ; preds = %88, %79 + br label %104 + +104: ; preds = %103, %59 + br label %105 + +105: ; preds = %104 + %106 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %13) #15 + br label %41, !llvm.loop !6 + +107: ; preds = %41 + store i32 0, ptr %17, align 4 + %108 = load ptr, ptr %10, align 8 + %109 = load i32, ptr %8, align 4 + %110 = sext i32 %109 to i64 + %111 = getelementptr inbounds i32, ptr %108, i64 %110 + %112 = load i32, ptr %111, align 4 + %113 = load ptr, ptr %9, align 8 + %114 = load i32, ptr %8, align 4 + %115 = sext i32 %114 to i64 + %116 = getelementptr inbounds i32, ptr %113, i64 %115 + %117 = load i32, ptr %116, align 4 + %118 = icmp eq i32 %112, %117 + br i1 %118, label %119, label %150 + +119: ; preds = %107 + br label %120 + +120: ; preds = %126, %119 + %121 = load ptr, ptr %11, align 8 + %122 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(ptr noundef nonnull align 8 dereferenceable(80) %121) + %123 = load i32, ptr %122, align 4 + %124 = load i32, ptr %8, align 4 + %125 = icmp ne i32 %123, %124 + br i1 %125, label %126, label %138 + +126: ; preds = %120 + %127 = load ptr, ptr %11, align 8 + %128 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(ptr noundef nonnull align 8 dereferenceable(80) %127) + %129 = load i32, ptr %128, align 4 + store i32 %129, ptr %17, align 4 + %130 = load i32, ptr %17, align 4 + %131 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %130) + %132 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %131, ptr noundef @.str) + %133 = load ptr, ptr %12, align 8 + %134 = load i32, ptr %17, align 4 + %135 = sext i32 %134 to i64 + %136 = getelementptr inbounds i8, ptr %133, i64 %135 + store i8 0, ptr %136, align 1 + %137 = load ptr, ptr %11, align 8 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %137) + br label %120, !llvm.loop !8 + +138: ; preds = %120 + %139 = load ptr, ptr %11, align 8 + %140 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(ptr noundef nonnull align 8 dereferenceable(80) %139) + %141 = load i32, ptr %140, align 4 + store i32 %141, ptr %17, align 4 + %142 = load i32, ptr %17, align 4 + %143 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %142) + %144 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %143, ptr noundef @.str.1) + %145 = load ptr, ptr %12, align 8 + %146 = load i32, ptr %17, align 4 + %147 = sext i32 %146 to i64 + %148 = getelementptr inbounds i8, ptr %145, i64 %147 + store i8 0, ptr %148, align 1 + %149 = load ptr, ptr %11, align 8 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %149) + br label %150 + +150: ; preds = %138, %107 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"class.std::stack", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + call void @_ZNSt5dequeIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(80) %6, ptr noundef nonnull align 4 dereferenceable(4) %7) + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #15 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #15 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3minIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %4, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + %5 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5dequeIiSaIiEE4backEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #15 + ret ptr %5 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #7 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + call void @_ZNSt5dequeIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph3SCCEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %11 = load ptr, ptr %2, align 8 + %12 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 0 + %13 = load i32, ptr %12, align 8 + %14 = sext i32 %13 to i64 + %15 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %14, i64 4) + %16 = extractvalue { i64, i1 } %15, 1 + %17 = extractvalue { i64, i1 } %15, 0 + %18 = select i1 %16, i64 -1, i64 %17 + %19 = call noalias noundef nonnull ptr @_Znam(i64 noundef %18) #14 + store ptr %19, ptr %3, align 8 + %20 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 0 + %21 = load i32, ptr %20, align 8 + %22 = sext i32 %21 to i64 + %23 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %22, i64 4) + %24 = extractvalue { i64, i1 } %23, 1 + %25 = extractvalue { i64, i1 } %23, 0 + %26 = select i1 %24, i64 -1, i64 %25 + %27 = call noalias noundef nonnull ptr @_Znam(i64 noundef %26) #14 + store ptr %27, ptr %4, align 8 + %28 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 0 + %29 = load i32, ptr %28, align 8 + %30 = sext i32 %29 to i64 + %31 = call noalias noundef nonnull ptr @_Znam(i64 noundef %30) #14 + store ptr %31, ptr %5, align 8 + %32 = call noalias noundef nonnull ptr @_Znwm(i64 noundef 80) #14 + invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %32) + to label %33 unwind label %55 + +33: ; preds = %1 + store ptr %32, ptr %6, align 8 + store i32 0, ptr %9, align 4 + br label %34 + +34: ; preds = %52, %33 + %35 = load i32, ptr %9, align 4 + %36 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 0 + %37 = load i32, ptr %36, align 8 + %38 = icmp slt i32 %35, %37 + br i1 %38, label %39, label %59 + +39: ; preds = %34 + %40 = load ptr, ptr %3, align 8 + %41 = load i32, ptr %9, align 4 + %42 = sext i32 %41 to i64 + %43 = getelementptr inbounds i32, ptr %40, i64 %42 + store i32 -1, ptr %43, align 4 + %44 = load ptr, ptr %4, align 8 + %45 = load i32, ptr %9, align 4 + %46 = sext i32 %45 to i64 + %47 = getelementptr inbounds i32, ptr %44, i64 %46 + store i32 -1, ptr %47, align 4 + %48 = load ptr, ptr %5, align 8 + %49 = load i32, ptr %9, align 4 + %50 = sext i32 %49 to i64 + %51 = getelementptr inbounds i8, ptr %48, i64 %50 + store i8 0, ptr %51, align 1 + br label %52 + +52: ; preds = %39 + %53 = load i32, ptr %9, align 4 + %54 = add nsw i32 %53, 1 + store i32 %54, ptr %9, align 4 + br label %34, !llvm.loop !9 + +55: ; preds = %1 + %56 = landingpad { ptr, i32 } + cleanup + %57 = extractvalue { ptr, i32 } %56, 0 + store ptr %57, ptr %7, align 8 + %58 = extractvalue { ptr, i32 } %56, 1 + store i32 %58, ptr %8, align 4 + call void @_ZdlPv(ptr noundef %32) #16 + br label %83 + +59: ; preds = %34 + store i32 0, ptr %10, align 4 + br label %60 + +60: ; preds = %79, %59 + %61 = load i32, ptr %10, align 4 + %62 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 0 + %63 = load i32, ptr %62, align 8 + %64 = icmp slt i32 %61, %63 + br i1 %64, label %65, label %82 + +65: ; preds = %60 + %66 = load ptr, ptr %3, align 8 + %67 = load i32, ptr %10, align 4 + %68 = sext i32 %67 to i64 + %69 = getelementptr inbounds i32, ptr %66, i64 %68 + %70 = load i32, ptr %69, align 4 + %71 = icmp eq i32 %70, -1 + br i1 %71, label %72, label %78 + +72: ; preds = %65 + %73 = load i32, ptr %10, align 4 + %74 = load ptr, ptr %3, align 8 + %75 = load ptr, ptr %4, align 8 + %76 = load ptr, ptr %6, align 8 + %77 = load ptr, ptr %5, align 8 + call void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(ptr noundef nonnull align 8 dereferenceable(16) %11, i32 noundef %73, ptr noundef %74, ptr noundef %75, ptr noundef %76, ptr noundef %77) + br label %78 + +78: ; preds = %72, %65 + br label %79 + +79: ; preds = %78 + %80 = load i32, ptr %10, align 4 + %81 = add nsw i32 %80, 1 + store i32 %81, ptr %10, align 4 + br label %60, !llvm.loop !10 + +82: ; preds = %60 + ret void + +83: ; preds = %55 + %84 = load ptr, ptr %7, align 8 + %85 = load i32, ptr %8, align 4 + %86 = insertvalue { ptr, i32 } poison, ptr %84, 0 + %87 = insertvalue { ptr, i32 } %86, i32 %85, 1 + resume { ptr, i32 } %87 +} + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + call void @llvm.memset.p0.i64(ptr align 8 %4, i8 0, i64 80, i1 false) + call void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %4) + ret void +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #8 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #9 { + %1 = alloca i32, align 4 + %2 = alloca %class.Graph, align 8 + %3 = alloca %class.Graph, align 8 + %4 = alloca %class.Graph, align 8 + %5 = alloca %class.Graph, align 8 + %6 = alloca %class.Graph, align 8 + store i32 0, ptr %1, align 4 + %7 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4) + call void @_ZN5Graph3SCCEv(ptr noundef nonnull align 8 dereferenceable(16) %2) + %8 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.3) + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph3SCCEv(ptr noundef nonnull align 8 dereferenceable(16) %3) + %9 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.4) + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 7) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 2, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 6) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 3, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 4, i32 noundef 5) + call void @_ZN5Graph3SCCEv(ptr noundef nonnull align 8 dereferenceable(16) %4) + %10 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.5) + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 11) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 1, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 2, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 2, i32 noundef 6) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 3, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 4, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 4, i32 noundef 6) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5, i32 noundef 6) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5, i32 noundef 7) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5, i32 noundef 8) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5, i32 noundef 9) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 6, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 7, i32 noundef 9) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 8, i32 noundef 9) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 9, i32 noundef 8) + call void @_ZN5Graph3SCCEv(ptr noundef nonnull align 8 dereferenceable(16) %5) + %11 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.6) + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 2, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 3, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 4, i32 noundef 2) + call void @_ZN5Graph3SCCEv(ptr 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(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #15 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %16 = load ptr, ptr %9, align 8 + %17 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %16) + store ptr %17, ptr %11, align 8 + %18 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %16) #15 + store ptr %18, ptr %12, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %19, ptr noundef %20) #15 + %21 = load ptr, ptr %12, align 8 + %22 = load ptr, ptr %11, align 8 + %23 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %22) + to label %24 unwind label %35 + +24: ; preds = %2 + %25 = load ptr, ptr %10, align 8 + store ptr %21, ptr %6, align 8 + store ptr %23, ptr %7, align 8 + store ptr %25, ptr %8, align 8 + %26 = load ptr, ptr %6, align 8 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %8, align 8 + store ptr %26, ptr %3, align 8 + store ptr %27, ptr %4, align 8 + store ptr %28, ptr %5, align 8 + %29 = load ptr, ptr %3, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + %32 = load i32, ptr %31, align 4 + store i32 %32, ptr %30, align 4 + %33 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #15 + %34 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #15 + ret ptr %34 + +35: ; preds = %2 + %36 = landingpad { ptr, i32 } + cleanup + %37 = extractvalue { ptr, i32 } %36, 0 + store ptr %37, ptr %14, align 8 + %38 = extractvalue { ptr, i32 } %36, 1 + store i32 %38, ptr %15, align 4 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #15 + br label %39 + +39: ; preds = %35 + %40 = load ptr, ptr %14, align 8 + %41 = load i32, ptr %15, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #10 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #15 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #17 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #14 + ret ptr %20 +} + +; Function Attrs: noreturn +declare void @_ZSt28__throw_bad_array_new_lengthv() #11 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #11 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #15 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #12 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #15 + call void @_ZSt9terminatev() #17 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #16 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %16, i32 0, i32 3 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %17, i32 0, i32 2 + %19 = load ptr, ptr %18, align 8 + %20 = getelementptr inbounds i32, ptr %19, i64 -1 + %21 = icmp ne ptr %15, %20 + br i1 %21, label %22, label %41 + +22: ; preds = %2 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %34, align 4 + store i32 %35, ptr %33, align 4 + %36 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %36, i32 0, i32 3 + %38 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = getelementptr inbounds i32, ptr %39, i32 1 + store ptr %40, ptr %38, align 8 + br label %43 + +41: ; preds = %2 + %42 = load ptr, ptr %10, align 8 + call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %11, ptr noundef nonnull align 4 dereferenceable(4) %42) + br label %43 + +43: ; preds = %41, %22 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #15 + %13 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #15 + %14 = icmp eq i64 %12, %13 + br i1 %14, label %15, label %16 + +15: ; preds = %2 + call void @_ZSt20__throw_length_errorPKc(ptr noundef @.str.7) #18 + unreachable + +16: ; preds = %2 + call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) + %17 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 3 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i64 1 + store ptr %17, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %34, align 4 + store i32 %35, ptr %33, align 4 + %36 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %36, i32 0, i32 3 + %38 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %38, i32 0, i32 3 + %40 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %39, i32 0, i32 3 + %41 = load ptr, ptr %40, align 8 + %42 = getelementptr inbounds ptr, ptr %41, i64 1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %37, ptr noundef %42) #15 + %43 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %44 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %43, i32 0, i32 3 + %45 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %44, i32 0, i32 1 + %46 = load ptr, ptr %45, align 8 + %47 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %48 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %47, i32 0, i32 3 + %49 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %48, i32 0, i32 0 + store ptr %46, ptr %49, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 3 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + %8 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %7) #15 + ret i64 %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #15 + %5 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #15 + ret i64 %5 +} + +; Function Attrs: noreturn +declare void @_ZSt20__throw_length_errorPKc(ptr noundef) #11 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = add i64 %6, 1 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %11, i32 0, i32 3 + %13 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %12, i32 0, i32 3 + %14 = load ptr, ptr %13, align 8 + %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 0 + %17 = load ptr, ptr %16, align 8 + %18 = ptrtoint ptr %14 to i64 + %19 = ptrtoint ptr %17 to i64 + %20 = sub i64 %18, %19 + %21 = sdiv exact i64 %20, 8 + %22 = sub i64 %10, %21 + %23 = icmp ugt i64 %7, %22 + br i1 %23, label %24, label %26 + +24: ; preds = %2 + %25 = load i64, ptr %4, align 8 + call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %25, i1 noundef zeroext false) + br label %26 + +26: ; preds = %24, %2 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + store ptr %6, ptr %2, align 8 + store i64 %7, ptr %3, align 8 + %8 = load ptr, ptr %2, align 8 + %9 = load i64, ptr %3, align 8 + %10 = call noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %8, i64 noundef %9, ptr noundef null) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + store ptr %6, ptr %7, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + store ptr %9, ptr %10, align 8 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %12 = load ptr, ptr %11, align 8 + %13 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #15 + %14 = getelementptr inbounds i32, ptr %12, i64 %13 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + store ptr %14, ptr %15, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #15 + %6 = load ptr, ptr %3, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %6, i32 0, i32 3 + %8 = load ptr, ptr %7, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 3 + %11 = load ptr, ptr %10, align 8 + %12 = ptrtoint ptr %8 to i64 + %13 = ptrtoint ptr %11 to i64 + %14 = sub i64 %12, %13 + %15 = sdiv exact i64 %14, 8 + %16 = load ptr, ptr %3, align 8 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 3 + %18 = load ptr, ptr %17, align 8 + %19 = icmp ne ptr %18, null + %20 = zext i1 %19 to i64 + %21 = sub nsw i64 %15, %20 + %22 = mul nsw i64 %5, %21 + %23 = load ptr, ptr %3, align 8 + %24 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %23, i32 0, i32 0 + %25 = load ptr, ptr %24, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 1 + %28 = load ptr, ptr %27, align 8 + %29 = ptrtoint ptr %25 to i64 + %30 = ptrtoint ptr %28 to i64 + %31 = sub i64 %29, %30 + %32 = sdiv exact i64 %31, 4 + %33 = add nsw i64 %22, %32 + %34 = load ptr, ptr %4, align 8 + %35 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %34, i32 0, i32 2 + %36 = load ptr, ptr %35, align 8 + %37 = load ptr, ptr %4, align 8 + %38 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = ptrtoint ptr %36 to i64 + %41 = ptrtoint ptr %39 to i64 + %42 = sub i64 %40, %41 + %43 = sdiv exact i64 %42, 4 + %44 = add nsw i64 %33, %43 + ret i64 %44 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %1 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + to label %2 unwind label %3 + +2: ; preds = %0 + ret i64 %1 + +3: ; preds = %0 + %4 = landingpad { ptr, i32 } + catch ptr null + %5 = extractvalue { ptr, i32 } %4, 0 + call void @__clang_call_terminate(ptr %5) #17 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #5 comdat { + %2 = alloca i64, align 8 + store i64 %0, ptr %2, align 8 + %3 = load i64, ptr %2, align 8 + %4 = icmp ult i64 %3, 512 + br i1 %4, label %5, label %8 + +5: ; preds = %1 + %6 = load i64, ptr %2, align 8 + %7 = udiv i64 512, %6 + br label %9 + +8: ; preds = %1 + br label %9 + +9: ; preds = %8, %5 + %10 = phi i64 [ %7, %5 ], [ 1, %8 ] + ret i64 %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %0) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %5, align 8 + store i64 9223372036854775807, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + store ptr %8, ptr %4, align 8 + %9 = load ptr, ptr %4, align 8 + store ptr %9, ptr %3, align 8 + %10 = load ptr, ptr %3, align 8 + store ptr %10, ptr %2, align 8 + %11 = load ptr, ptr %2, align 8 + store i64 2305843009213693951, ptr %7, align 8 + %12 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + to label %13 unwind label %15 + +13: ; preds = %1 + %14 = load i64, ptr %12, align 8 + ret i64 %14 + +15: ; preds = %1 + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #17 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca i8, align 1 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + %12 = zext i1 %2 to i8 + store i8 %12, ptr %6, align 1 + %13 = load ptr, ptr %4, align 8 + %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %14, i32 0, i32 3 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 3 + %17 = load ptr, ptr %16, align 8 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 2 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = ptrtoint ptr %17 to i64 + %23 = ptrtoint ptr %21 to i64 + %24 = sub i64 %22, %23 + %25 = sdiv exact i64 %24, 8 + %26 = add nsw i64 %25, 1 + store i64 %26, ptr %7, align 8 + %27 = load i64, ptr %7, align 8 + %28 = load i64, ptr %5, align 8 + %29 = add i64 %27, %28 + store i64 %29, ptr %8, align 8 + %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 1 + %32 = load i64, ptr %31, align 8 + %33 = load i64, ptr %8, align 8 + %34 = mul i64 2, %33 + %35 = icmp ugt i64 %32, %34 + br i1 %35, label %36, label %88 + +36: ; preds = %3 + %37 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %41 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %40, i32 0, i32 1 + %42 = load i64, ptr %41, align 8 + %43 = load i64, ptr %8, align 8 + %44 = sub i64 %42, %43 + %45 = udiv i64 %44, 2 + %46 = getelementptr inbounds ptr, ptr %39, i64 %45 + %47 = load i8, ptr %6, align 1 + %48 = trunc i8 %47 to i1 + br i1 %48, label %49, label %51 + +49: ; preds = %36 + %50 = load i64, ptr %5, align 8 + br label %52 + +51: ; preds = %36 + br label %52 + +52: ; preds = %51, %49 + %53 = phi i64 [ %50, %49 ], [ 0, %51 ] + %54 = getelementptr inbounds ptr, ptr %46, i64 %53 + store ptr %54, ptr %9, align 8 + %55 = load ptr, ptr %9, align 8 + %56 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %57 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %56, i32 0, i32 2 + %58 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %57, i32 0, i32 3 + %59 = load ptr, ptr %58, align 8 + %60 = icmp ult ptr %55, %59 + br i1 %60, label %61, label %73 + +61: ; preds = %52 + %62 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %62, i32 0, i32 2 + %64 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %63, i32 0, i32 3 + %65 = load ptr, ptr %64, align 8 + %66 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %66, i32 0, i32 3 + %68 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %67, i32 0, i32 3 + %69 = load ptr, ptr %68, align 8 + %70 = getelementptr inbounds ptr, ptr %69, i64 1 + %71 = load ptr, ptr %9, align 8 + %72 = call noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %65, ptr noundef %70, ptr noundef %71) + br label %87 + +73: ; preds = %52 + %74 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %75 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %74, i32 0, i32 2 + %76 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %75, i32 0, i32 3 + %77 = load ptr, ptr %76, align 8 + %78 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %78, i32 0, i32 3 + %80 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %79, i32 0, i32 3 + %81 = load ptr, ptr %80, align 8 + %82 = getelementptr inbounds ptr, ptr %81, i64 1 + %83 = load ptr, ptr %9, align 8 + %84 = load i64, ptr %7, align 8 + %85 = getelementptr inbounds ptr, ptr %83, i64 %84 + %86 = call noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(ptr noundef %77, ptr noundef %82, ptr noundef %85) + br label %87 + +87: ; preds = %73, %61 + br label %137 + +88: ; preds = %3 + %89 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %90 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %89, i32 0, i32 1 + %91 = load i64, ptr %90, align 8 + %92 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %92, i32 0, i32 1 + %94 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %93, ptr noundef nonnull align 8 dereferenceable(8) %5) + %95 = load i64, ptr %94, align 8 + %96 = add i64 %91, %95 + %97 = add i64 %96, 2 + store i64 %97, ptr %10, align 8 + %98 = load i64, ptr %10, align 8 + %99 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %13, i64 noundef %98) + store ptr %99, ptr %11, align 8 + %100 = load ptr, ptr %11, align 8 + %101 = load i64, ptr %10, align 8 + %102 = load i64, ptr %8, align 8 + %103 = sub i64 %101, %102 + %104 = udiv i64 %103, 2 + %105 = getelementptr inbounds ptr, ptr %100, i64 %104 + %106 = load i8, ptr %6, align 1 + %107 = trunc i8 %106 to i1 + br i1 %107, label %108, label %110 + +108: ; preds = %88 + %109 = load i64, ptr %5, align 8 + br label %111 + +110: ; preds = %88 + br label %111 + +111: ; preds = %110, %108 + %112 = phi i64 [ %109, %108 ], [ 0, %110 ] + %113 = getelementptr inbounds ptr, ptr %105, i64 %112 + store ptr %113, ptr %9, align 8 + %114 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %115 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %114, i32 0, i32 2 + %116 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %115, i32 0, i32 3 + %117 = load ptr, ptr %116, align 8 + %118 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %119 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %118, i32 0, i32 3 + %120 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %119, i32 0, i32 3 + %121 = load ptr, ptr %120, align 8 + %122 = getelementptr inbounds ptr, ptr %121, i64 1 + %123 = load ptr, ptr %9, align 8 + %124 = call noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %117, ptr noundef %122, ptr noundef %123) + %125 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %126 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %125, i32 0, i32 0 + %127 = load ptr, ptr %126, align 8 + %128 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %129 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %128, i32 0, i32 1 + %130 = load i64, ptr %129, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %13, ptr noundef %127, i64 noundef %130) #15 + %131 = load ptr, ptr %11, align 8 + %132 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %133 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %132, i32 0, i32 0 + store ptr %131, ptr %133, align 8 + %134 = load i64, ptr %10, align 8 + %135 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %136 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %135, i32 0, i32 1 + store i64 %134, ptr %136, align 8 + br label %137 + +137: ; preds = %111, %87 + %138 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %139 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %138, i32 0, i32 2 + %140 = load ptr, ptr %9, align 8 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %139, ptr noundef %140) #15 + %141 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %141, i32 0, i32 3 + %143 = load ptr, ptr %9, align 8 + %144 = load i64, ptr %7, align 8 + %145 = getelementptr inbounds ptr, ptr %143, i64 %144 + %146 = getelementptr inbounds ptr, ptr %145, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %142, ptr noundef %146) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca %"class.std::allocator.3", align 1 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %7, align 8 + store i64 %1, ptr %8, align 8 + %12 = load ptr, ptr %7, align 8 + call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %9, ptr noundef nonnull align 8 dereferenceable(80) %12) #15 + %13 = load i64, ptr %8, align 8 + store ptr %9, ptr %5, align 8 + store i64 %13, ptr %6, align 8 + %14 = load ptr, ptr %5, align 8 + %15 = load i64, ptr %6, align 8 + %16 = invoke noundef ptr @_ZNSt15__new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %14, i64 noundef %15, ptr noundef null) + to label %17 unwind label %20 + +17: ; preds = %2 + br label %18 + +18: ; preds = %17 + store ptr %9, ptr %4, align 8 + %19 = load ptr, ptr %4, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #15 + ret ptr %16 + +20: ; preds = %2 + %21 = landingpad { ptr, i32 } + cleanup + %22 = extractvalue { ptr, i32 } %21, 0 + store ptr %22, ptr %10, align 8 + %23 = extractvalue { ptr, i32 } %21, 1 + store i32 %23, ptr %11, align 4 + store ptr %9, ptr %3, align 8 + %24 = load ptr, ptr %3, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %24) #15 + br label %25 + +25: ; preds = %20 + %26 = load ptr, ptr %10, align 8 + %27 = load i32, ptr %11, align 4 + %28 = insertvalue { ptr, i32 } poison, ptr %26, 0 + %29 = insertvalue { ptr, i32 } %28, i32 %27, 1 + resume { ptr, i32 } %29 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, i64 noundef %2) #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca %"class.std::allocator.3", align 1 + store ptr %0, ptr %8, align 8 + store ptr %1, ptr %9, align 8 + store i64 %2, ptr %10, align 8 + %12 = load ptr, ptr %8, align 8 + call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %11, ptr noundef nonnull align 8 dereferenceable(80) %12) #15 + %13 = load ptr, ptr %9, align 8 + %14 = load i64, ptr %10, align 8 + store ptr %11, ptr %4, align 8 + store ptr %13, ptr %5, align 8 + store i64 %14, ptr %6, align 8 + %15 = load ptr, ptr %4, align 8 + %16 = load ptr, ptr %5, align 8 + %17 = load i64, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %3 + store ptr %11, ptr %7, align 8 + %19 = load ptr, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #15 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #17 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %7) #15 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %9) #15 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %11) #15 + %13 = call noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %0) #5 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %0) #5 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %21 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load i64, ptr %7, align 8 + %20 = mul i64 8, %19 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %17, ptr align 8 %18, i64 %20, i1 false) + br label %28 + +21: ; preds = %3 + %22 = load i64, ptr %7, align 8 + %23 = icmp eq i64 %22, 1 + br i1 %23, label %24, label %27 + +24: ; preds = %21 + %25 = load ptr, ptr %6, align 8 + %26 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %25, ptr noundef %26) + br label %27 + +27: ; preds = %24, %21 + br label %28 + +28: ; preds = %27, %16 + %29 = load ptr, ptr %6, align 8 + %30 = load i64, ptr %7, align 8 + %31 = getelementptr inbounds ptr, ptr %29, i64 %30 + ret ptr %31 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memmove.p0.p0.i64(ptr nocapture writeonly, ptr nocapture readonly, i64, i1 immarg) #6 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %0, ptr noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load ptr, ptr %3, align 8 + store ptr %6, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %7) #15 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %9) #15 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %11) #15 + %13 = call noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %24 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load i64, ptr %7, align 8 + %19 = sub i64 0, %18 + %20 = getelementptr inbounds ptr, ptr %17, i64 %19 + %21 = load ptr, ptr %4, align 8 + %22 = load i64, ptr %7, align 8 + %23 = mul i64 8, %22 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %20, ptr align 8 %21, i64 %23, i1 false) + br label %32 + +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 + +27: ; preds = %24 + %28 = load ptr, ptr %6, align 8 + %29 = getelementptr inbounds ptr, ptr %28, i64 -1 + %30 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %29, ptr noundef %30) + br label %31 + +31: ; preds = %27, %24 + br label %32 + +32: ; preds = %31, %16 + %33 = load ptr, ptr %6, align 8 + %34 = load i64, ptr %7, align 8 + %35 = sub i64 0, %34 + %36 = getelementptr inbounds ptr, ptr %33, i64 %35 + ret ptr %36 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr noalias sret(%"class.std::allocator.3") align 1 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %7, align 8 + %9 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %8) #15 + store ptr %0, ptr %4, align 8 + store ptr %9, ptr %5, align 8 + %10 = load ptr, ptr %4, align 8 + store ptr %10, ptr %3, align 8 + %11 = load ptr, ptr %3, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 1152921504606846975 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 8 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #14 + ret ptr %20 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #16 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 2305843009213693951 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 4611686018427387903 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 4 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #14 + ret ptr %20 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5dequeIiSaIiEE4backEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_Deque_iterator", align 8 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %3, ptr noundef nonnull align 8 dereferenceable(80) %4) #15 + %5 = call noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt15_Deque_iteratorIiRiPiEmmEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #15 + %6 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #15 + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %7) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt15_Deque_iteratorIiRiPiEmmEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 1 + %7 = load ptr, ptr %6, align 8 + %8 = icmp eq ptr %5, %7 + br i1 %8, label %9, label %16 + +9: ; preds = %1 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 3 + %11 = load ptr, ptr %10, align 8 + %12 = getelementptr inbounds ptr, ptr %11, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %3, ptr noundef %12) #15 + %13 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 2 + %14 = load ptr, ptr %13, align 8 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + store ptr %14, ptr %15, align 8 + br label %16 + +16: ; preds = %9, %1 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %18 = load ptr, ptr %17, align 8 + %19 = getelementptr inbounds i32, ptr %18, i32 -1 + store ptr %19, ptr %17, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + store ptr %9, ptr %6, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 1 + %13 = load ptr, ptr %12, align 8 + store ptr %13, ptr %10, align 8 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + %15 = load ptr, ptr %4, align 8 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 2 + %17 = load ptr, ptr %16, align 8 + store ptr %17, ptr %14, align 8 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + %19 = load ptr, ptr %4, align 8 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + store ptr %21, ptr %18, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 3 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 1 + %15 = load ptr, ptr %14, align 8 + %16 = icmp ne ptr %11, %15 + br i1 %16, label %17, label %32 + +17: ; preds = %1 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 3 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 0 + %21 = load ptr, ptr %20, align 8 + %22 = getelementptr inbounds i32, ptr %21, i32 -1 + store ptr %22, ptr %20, align 8 + %23 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #15 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + store ptr %23, ptr %4, align 8 + store ptr %27, ptr %5, align 8 + %28 = load ptr, ptr %4, align 8 + %29 = load ptr, ptr %5, align 8 + store ptr %28, ptr %2, align 8 + store ptr %29, ptr %3, align 8 + %30 = load ptr, ptr %2, align 8 + %31 = load ptr, ptr %3, align 8 + br label %34 + +32: ; preds = %1 + invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %33 unwind label %35 + +33: ; preds = %32 + br label %34 + +34: ; preds = %33, %17 + ret void + +35: ; preds = %32 + %36 = landingpad { ptr, i32 } + catch ptr null + %37 = extractvalue { ptr, i32 } %36, 0 + call void @__clang_call_terminate(ptr %37) #17 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 3 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 1 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %7, ptr noundef %11) #15 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %14, i32 0, i32 3 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 3 + %17 = load ptr, ptr %16, align 8 + %18 = getelementptr inbounds ptr, ptr %17, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %13, ptr noundef %18) #15 + %19 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %20 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %19, i32 0, i32 3 + %21 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %20, i32 0, i32 2 + %22 = load ptr, ptr %21, align 8 + %23 = getelementptr inbounds i32, ptr %22, i64 -1 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + store ptr %23, ptr %26, align 8 + %27 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #15 + %28 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %28, i32 0, i32 3 + %30 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + store ptr %27, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %4, align 8 + %33 = load ptr, ptr %5, align 8 + store ptr %32, ptr %2, align 8 + store ptr %33, ptr %3, align 8 + %34 = load ptr, ptr %2, align 8 + %35 = load ptr, ptr %3, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %7, align 8 + %11 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + store ptr %9, ptr %3, align 8 + store ptr %10, ptr %4, align 8 + store i64 %11, ptr %5, align 8 + %12 = load ptr, ptr %3, align 8 + %13 = load ptr, ptr %4, align 8 + %14 = load i64, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %12, ptr noundef %13, i64 noundef %14) + br label %15 + +15: ; preds = %2 + ret void + +16: ; No predecessors! + %17 = landingpad { ptr, i32 } + catch ptr null + %18 = extractvalue { ptr, i32 } %17, 0 + call void @__clang_call_terminate(ptr %18) #17 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #16 + ret void +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #13 + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) + ret void +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #15 + invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) + to label %7 unwind label %8 + +7: ; preds = %1 + ret void + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + cleanup + %10 = extractvalue { ptr, i32 } %9, 0 + store ptr %10, ptr %3, align 8 + %11 = extractvalue { ptr, i32 } %9, 1 + store i32 %11, ptr %4, align 4 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #15 + br label %12 + +12: ; preds = %8 + %13 = load ptr, ptr %3, align 8 + %14 = load i32, ptr %4, align 4 + %15 = insertvalue { ptr, i32 } poison, ptr %13, 0 + %16 = insertvalue { ptr, i32 } %15, i32 %14, 1 + resume { ptr, i32 } %16 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i64, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %12 = load ptr, ptr %3, align 8 + %13 = load i64, ptr %4, align 8 + %14 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %15 = udiv i64 %13, %14 + %16 = add i64 %15, 1 + store i64 %16, ptr %5, align 8 + store i64 8, ptr %6, align 8 + %17 = load i64, ptr %5, align 8 + %18 = add i64 %17, 2 + store i64 %18, ptr %7, align 8 + %19 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + %20 = load i64, ptr %19, align 8 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 1 + store i64 %20, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 1 + %25 = load i64, ptr %24, align 8 + %26 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %25) + %27 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %28 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %27, i32 0, i32 0 + store ptr %26, ptr %28, align 8 + %29 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + %32 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %32, i32 0, i32 1 + %34 = load i64, ptr %33, align 8 + %35 = load i64, ptr %5, align 8 + %36 = sub i64 %34, %35 + %37 = udiv i64 %36, 2 + %38 = getelementptr inbounds ptr, ptr %31, i64 %37 + store ptr %38, ptr %8, align 8 + %39 = load ptr, ptr %8, align 8 + %40 = load i64, ptr %5, align 8 + %41 = getelementptr inbounds ptr, ptr %39, i64 %40 + store ptr %41, ptr %9, align 8 + %42 = load ptr, ptr %8, align 8 + %43 = load ptr, ptr %9, align 8 + invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %42, ptr noundef %43) + to label %44 unwind label %45 + +44: ; preds = %2 + br label %67 + +45: ; preds = %2 + %46 = landingpad { ptr, i32 } + catch ptr null + %47 = extractvalue { ptr, i32 } %46, 0 + store ptr %47, ptr %10, align 8 + %48 = extractvalue { ptr, i32 } %46, 1 + store i32 %48, ptr %11, align 4 + br label %49 + +49: ; preds = %45 + %50 = load ptr, ptr %10, align 8 + %51 = call ptr @__cxa_begin_catch(ptr %50) #15 + %52 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %53 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %52, i32 0, i32 0 + %54 = load ptr, ptr %53, align 8 + %55 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %56 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %55, i32 0, i32 1 + %57 = load i64, ptr %56, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %54, i64 noundef %57) #15 + %58 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %58, i32 0, i32 0 + store ptr null, ptr %59, align 8 + %60 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %61 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %60, i32 0, i32 1 + store i64 0, ptr %61, align 8 + invoke void @__cxa_rethrow() #18 + to label %101 unwind label %62 + +62: ; preds = %49 + %63 = landingpad { ptr, i32 } + cleanup + %64 = extractvalue { ptr, i32 } %63, 0 + store ptr %64, ptr %10, align 8 + %65 = extractvalue { ptr, i32 } %63, 1 + store i32 %65, ptr %11, align 4 + invoke void @__cxa_end_catch() + to label %66 unwind label %98 + +66: ; preds = %62 + br label %93 + +67: ; preds = %44 + %68 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %68, i32 0, i32 2 + %70 = load ptr, ptr %8, align 8 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %69, ptr noundef %70) #15 + %71 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %72 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %71, i32 0, i32 3 + %73 = load ptr, ptr %9, align 8 + %74 = getelementptr inbounds ptr, ptr %73, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %72, ptr noundef %74) #15 + %75 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %76 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %75, i32 0, i32 2 + %77 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %76, i32 0, i32 1 + %78 = load ptr, ptr %77, align 8 + %79 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %80 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %79, i32 0, i32 2 + %81 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %80, i32 0, i32 0 + store ptr %78, ptr %81, align 8 + %82 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %82, i32 0, i32 3 + %84 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %83, i32 0, i32 1 + %85 = load ptr, ptr %84, align 8 + %86 = load i64, ptr %4, align 8 + %87 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %88 = urem i64 %86, %87 + %89 = getelementptr inbounds i32, ptr %85, i64 %88 + %90 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %91 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %90, i32 0, i32 3 + %92 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %91, i32 0, i32 0 + store ptr %89, ptr %92, align 8 + ret void + +93: ; preds = %66 + %94 = load ptr, ptr %10, align 8 + %95 = load i32, ptr %11, align 4 + %96 = insertvalue { ptr, i32 } poison, ptr %94, 0 + %97 = insertvalue { ptr, i32 } %96, i32 %95, 1 + resume { ptr, i32 } %97 + +98: ; preds = %62 + %99 = landingpad { ptr, i32 } + catch ptr null + %100 = extractvalue { ptr, i32 } %99, 0 + call void @__clang_call_terminate(ptr %100) #17 + unreachable + +101: ; preds = %49 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 1 + store i64 0, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 2 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #15 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 1 + store ptr null, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 2 + store ptr null, ptr %6, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 3 + store ptr null, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = load ptr, ptr %5, align 8 + store ptr %11, ptr %7, align 8 + br label %12 + +12: ; preds = %20, %3 + %13 = load ptr, ptr %7, align 8 + %14 = load ptr, ptr %6, align 8 + %15 = icmp ult ptr %13, %14 + br i1 %15, label %16, label %32 + +16: ; preds = %12 + %17 = invoke noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %10) + to label %18 unwind label %23 + +18: ; preds = %16 + %19 = load ptr, ptr %7, align 8 + store ptr %17, ptr %19, align 8 + br label %20 + +20: ; preds = %18 + %21 = load ptr, ptr %7, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i32 1 + store ptr %22, ptr %7, align 8 + br label %12, !llvm.loop !11 + +23: ; preds = %16 + %24 = landingpad { ptr, i32 } + catch ptr null + %25 = extractvalue { ptr, i32 } %24, 0 + store ptr %25, ptr %8, align 8 + %26 = extractvalue { ptr, i32 } %24, 1 + store i32 %26, ptr %9, align 4 + br label %27 + +27: ; preds = %23 + %28 = load ptr, ptr %8, align 8 + %29 = call ptr @__cxa_begin_catch(ptr %28) #15 + %30 = load ptr, ptr %5, align 8 + %31 = load ptr, ptr %7, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %10, ptr noundef %30, ptr noundef %31) #15 + invoke void @__cxa_rethrow() #18 + to label %47 unwind label %33 + +32: ; preds = %12 + br label %38 + +33: ; preds = %27 + %34 = landingpad { ptr, i32 } + cleanup + %35 = extractvalue { ptr, i32 } %34, 0 + store ptr %35, ptr %8, align 8 + %36 = extractvalue { ptr, i32 } %34, 1 + store i32 %36, ptr %9, align 4 + invoke void @__cxa_end_catch() + to label %37 unwind label %44 + +37: ; preds = %33 + br label %39 + +38: ; preds = %32 + ret void + +39: ; preds = %37 + %40 = load ptr, ptr %8, align 8 + %41 = load i32, ptr %9, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 + +44: ; preds = %33 + %45 = landingpad { ptr, i32 } + catch ptr null + %46 = extractvalue { ptr, i32 } %45, 0 + call void @__clang_call_terminate(ptr %46) #17 + unreachable + +47: ; preds = %27 + unreachable +} + +declare void @__cxa_rethrow() + +declare void @__cxa_end_catch() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %7, align 8 + br label %10 + +10: ; preds = %17, %3 + %11 = load ptr, ptr %7, align 8 + %12 = load ptr, ptr %6, align 8 + %13 = icmp ult ptr %11, %12 + br i1 %13, label %14, label %20 + +14: ; preds = %10 + %15 = load ptr, ptr %7, align 8 + %16 = load ptr, ptr %15, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %8, ptr noundef %16) #15 + br label %17 + +17: ; preds = %14 + %18 = load ptr, ptr %7, align 8 + %19 = getelementptr inbounds ptr, ptr %18, i32 1 + store ptr %19, ptr %7, align 8 + br label %10, !llvm.loop !12 + +20: ; preds = %10 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #7 = { "frame-pointer"="all" "no-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 = { 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 = { noinline noreturn 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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +attributes #14 = { builtin allocsize(0) } +attributes #15 = { nounwind } +attributes #16 = { builtin nounwind } +attributes #17 = { noreturn nounwind } +attributes #18 = { noreturn } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm14/the-knights-tour.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/the-knights-tour.ll similarity index 52% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/the-knights-tour.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/the-knights-tour.ll index 81a0a046b..929fa372b 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/the-knights-tour.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/the-knights-tour.ll @@ -10,41 +10,41 @@ target triple = "x86_64-pc-linux-gnu" @.str.2 = private unnamed_addr constant [24 x i8] c"Solution does not exist\00", align 1 ; 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 { +define dso_local noundef zeroext i1 @_Z6isSafeiiPA8_i(i32 noundef %0, i32 noundef %1, ptr noundef %2) #0 { %4 = alloca i32, align 4 %5 = alloca i32, align 4 - %6 = alloca [8 x i32]*, align 8 - store i32 %0, i32* %4, align 4 - store i32 %1, i32* %5, align 4 - store [8 x i32]* %2, [8 x i32]** %6, align 8 - %7 = load i32, i32* %4, align 4 + %6 = alloca ptr, align 8 + store i32 %0, ptr %4, align 4 + store i32 %1, ptr %5, align 4 + store ptr %2, ptr %6, align 8 + %7 = load i32, ptr %4, align 4 %8 = icmp sge i32 %7, 0 br i1 %8, label %9, label %28 9: ; preds = %3 - %10 = load i32, i32* %4, align 4 + %10 = load i32, ptr %4, align 4 %11 = icmp slt i32 %10, 8 br i1 %11, label %12, label %28 12: ; preds = %9 - %13 = load i32, i32* %5, align 4 + %13 = load i32, ptr %5, align 4 %14 = icmp sge i32 %13, 0 br i1 %14, label %15, label %28 15: ; preds = %12 - %16 = load i32, i32* %5, align 4 + %16 = load i32, ptr %5, align 4 %17 = icmp slt i32 %16, 8 br i1 %17, label %18, label %28 18: ; preds = %15 - %19 = load [8 x i32]*, [8 x i32]** %6, align 8 - %20 = load i32, i32* %4, align 4 + %19 = load ptr, ptr %6, align 8 + %20 = load i32, ptr %4, align 4 %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds [8 x i32], [8 x i32]* %19, i64 %21 - %23 = load i32, i32* %5, align 4 + %22 = getelementptr inbounds [8 x i32], ptr %19, i64 %21 + %23 = load i32, ptr %5, align 4 %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [8 x i32], [8 x i32]* %22, i64 0, i64 %24 - %26 = load i32, i32* %25, align 4 + %25 = getelementptr inbounds [8 x i32], ptr %22, i64 0, i64 %24 + %26 = load i32, ptr %25, align 4 %27 = icmp eq i32 %26, -1 br label %28 @@ -54,61 +54,61 @@ define dso_local noundef zeroext i1 @_Z6isSafeiiPA8_i(i32 noundef %0, i32 nounde } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z13printSolutionPA8_i([8 x i32]* noundef %0) #1 { - %2 = alloca [8 x i32]*, align 8 +define dso_local void @_Z13printSolutionPA8_i(ptr noundef %0) #1 { + %2 = alloca ptr, align 8 %3 = alloca i32, align 4 %4 = alloca i32, align 4 - store [8 x i32]* %0, [8 x i32]** %2, align 8 - store i32 0, i32* %3, align 4 + store ptr %0, ptr %2, align 8 + store i32 0, ptr %3, align 4 br label %5 5: ; preds = %27, %1 - %6 = load i32, i32* %3, align 4 + %6 = load i32, ptr %3, align 4 %7 = icmp slt i32 %6, 8 br i1 %7, label %8, label %30 8: ; preds = %5 - store i32 0, i32* %4, align 4 + store i32 0, ptr %4, align 4 br label %9 9: ; preds = %22, %8 - %10 = load i32, i32* %4, align 4 + %10 = load i32, ptr %4, align 4 %11 = icmp slt i32 %10, 8 br i1 %11, label %12, label %25 12: ; preds = %9 - %13 = load [8 x i32]*, [8 x i32]** %2, align 8 - %14 = load i32, i32* %3, align 4 + %13 = load ptr, ptr %2, align 8 + %14 = load i32, ptr %3, align 4 %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [8 x i32], [8 x i32]* %13, i64 %15 - %17 = load i32, i32* %4, align 4 + %16 = getelementptr inbounds [8 x i32], ptr %13, i64 %15 + %17 = load i32, ptr %4, align 4 %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [8 x i32], [8 x i32]* %16, i64 0, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([6 x i8], [6 x i8]* @.str, i64 0, i64 0), i32 noundef %20) + %19 = getelementptr inbounds [8 x i32], ptr %16, i64 0, i64 %18 + %20 = load i32, ptr %19, align 4 + %21 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %20) br label %22 22: ; preds = %12 - %23 = load i32, i32* %4, align 4 + %23 = load i32, ptr %4, align 4 %24 = add nsw i32 %23, 1 - store i32 %24, i32* %4, align 4 + store i32 %24, ptr %4, align 4 br label %9, !llvm.loop !6 25: ; preds = %9 - %26 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) + %26 = call i32 (ptr, ...) @printf(ptr noundef @.str.1) br label %27 27: ; preds = %25 - %28 = load i32, i32* %3, align 4 + %28 = load i32, ptr %3, align 4 %29 = add nsw i32 %28, 1 - store i32 %29, i32* %3, align 4 + store i32 %29, ptr %3, align 4 br label %5, !llvm.loop !8 30: ; preds = %5 ret void } -declare i32 @printf(i8* noundef, ...) #2 +declare i32 @printf(ptr noundef, ...) #2 ; Function Attrs: mustprogress noinline uwtable define dso_local noundef zeroext i1 @_Z7solveKTv() #1 { @@ -118,177 +118,175 @@ define dso_local noundef zeroext i1 @_Z7solveKTv() #1 { %4 = alloca i32, align 4 %5 = alloca [8 x i32], align 16 %6 = alloca [8 x i32], align 16 - store i32 0, i32* %3, align 4 + store i32 0, ptr %3, align 4 br label %7 7: ; preds = %25, %0 - %8 = load i32, i32* %3, align 4 + %8 = load i32, ptr %3, align 4 %9 = icmp slt i32 %8, 8 br i1 %9, label %10, label %28 10: ; preds = %7 - store i32 0, i32* %4, align 4 + store i32 0, ptr %4, align 4 br label %11 11: ; preds = %21, %10 - %12 = load i32, i32* %4, align 4 + %12 = load i32, ptr %4, align 4 %13 = icmp slt i32 %12, 8 br i1 %13, label %14, label %24 14: ; preds = %11 - %15 = load i32, i32* %3, align 4 + %15 = load i32, ptr %3, align 4 %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds [8 x [8 x i32]], [8 x [8 x i32]]* %2, i64 0, i64 %16 - %18 = load i32, i32* %4, align 4 + %17 = getelementptr inbounds [8 x [8 x i32]], ptr %2, i64 0, i64 %16 + %18 = load i32, ptr %4, align 4 %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds [8 x i32], [8 x i32]* %17, i64 0, i64 %19 - store i32 -1, i32* %20, align 4 + %20 = getelementptr inbounds [8 x i32], ptr %17, i64 0, i64 %19 + store i32 -1, ptr %20, align 4 br label %21 21: ; preds = %14 - %22 = load i32, i32* %4, align 4 + %22 = load i32, ptr %4, align 4 %23 = add nsw i32 %22, 1 - store i32 %23, i32* %4, align 4 + store i32 %23, ptr %4, align 4 br label %11, !llvm.loop !9 24: ; preds = %11 br label %25 25: ; preds = %24 - %26 = load i32, i32* %3, align 4 + %26 = load i32, ptr %3, align 4 %27 = add nsw i32 %26, 1 - store i32 %27, i32* %3, align 4 + store i32 %27, ptr %3, align 4 br label %7, !llvm.loop !10 28: ; preds = %7 - %29 = bitcast [8 x i32]* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %29, i8* align 16 bitcast ([8 x i32]* @__const._Z7solveKTv.xMove to i8*), i64 32, i1 false) - %30 = bitcast [8 x i32]* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %30, i8* align 16 bitcast ([8 x i32]* @__const._Z7solveKTv.yMove to i8*), i64 32, i1 false) - %31 = getelementptr inbounds [8 x [8 x i32]], [8 x [8 x i32]]* %2, i64 0, i64 0 - %32 = getelementptr inbounds [8 x i32], [8 x i32]* %31, i64 0, i64 0 - store i32 0, i32* %32, align 16 - %33 = getelementptr inbounds [8 x [8 x i32]], [8 x [8 x i32]]* %2, i64 0, i64 0 - %34 = getelementptr inbounds [8 x i32], [8 x i32]* %5, i64 0, i64 0 - %35 = getelementptr inbounds [8 x i32], [8 x i32]* %6, i64 0, i64 0 - %36 = call 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 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %5, ptr align 16 @__const._Z7solveKTv.xMove, i64 32, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %6, ptr align 16 @__const._Z7solveKTv.yMove, i64 32, i1 false) + %29 = getelementptr inbounds [8 x [8 x i32]], ptr %2, i64 0, i64 0 + %30 = getelementptr inbounds [8 x i32], ptr %29, i64 0, i64 0 + store i32 0, ptr %30, align 16 + %31 = getelementptr inbounds [8 x [8 x i32]], ptr %2, i64 0, i64 0 + %32 = getelementptr inbounds [8 x i32], ptr %5, i64 0, i64 0 + %33 = getelementptr inbounds [8 x i32], ptr %6, i64 0, i64 0 + %34 = call noundef i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 noundef 0, i32 noundef 0, i32 noundef 1, ptr noundef %31, ptr noundef %32, ptr noundef %33) + %35 = icmp eq i32 %34, 0 + br i1 %35, label %36, label %38 + +36: ; preds = %28 + %37 = call i32 (ptr, ...) @printf(ptr noundef @.str.2) + store i1 false, ptr %1, align 1 + br label %41 38: ; preds = %28 - %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]* noundef %41) - br label %42 - -42: ; preds = %40 - store i1 true, i1* %1, align 1 - br label %43 - -43: ; preds = %42, %38 - %44 = load i1, i1* %1, align 1 - ret i1 %44 + %39 = getelementptr inbounds [8 x [8 x i32]], ptr %2, i64 0, i64 0 + call void @_Z13printSolutionPA8_i(ptr noundef %39) + br label %40 + +40: ; preds = %38 + store i1 true, ptr %1, align 1 + br label %41 + +41: ; preds = %40, %36 + %42 = load i1, ptr %1, align 1 + ret i1 %42 } -; 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: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 ; 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 { +define dso_local noundef i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 noundef %0, i32 noundef %1, i32 noundef %2, ptr noundef %3, ptr noundef %4, ptr noundef %5) #1 { %7 = alloca i32, align 4 %8 = alloca i32, align 4 %9 = alloca i32, align 4 %10 = alloca i32, align 4 - %11 = alloca [8 x i32]*, align 8 - %12 = alloca i32*, align 8 - %13 = alloca i32*, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 %14 = alloca i32, align 4 %15 = alloca i32, align 4 %16 = alloca i32, align 4 - store i32 %0, i32* %8, align 4 - store i32 %1, i32* %9, align 4 - store i32 %2, i32* %10, align 4 - store [8 x i32]* %3, [8 x i32]** %11, align 8 - store i32* %4, i32** %12, align 8 - store i32* %5, i32** %13, align 8 - %17 = load i32, i32* %10, align 4 + store i32 %0, ptr %8, align 4 + store i32 %1, ptr %9, align 4 + store i32 %2, ptr %10, align 4 + store ptr %3, ptr %11, align 8 + store ptr %4, ptr %12, align 8 + store ptr %5, ptr %13, align 8 + %17 = load i32, ptr %10, align 4 %18 = icmp eq i32 %17, 64 br i1 %18, label %19, label %20 19: ; preds = %6 - store i32 1, i32* %7, align 4 + store i32 1, ptr %7, align 4 br label %76 20: ; preds = %6 - store i32 0, i32* %14, align 4 + store i32 0, ptr %14, align 4 br label %21 21: ; preds = %72, %20 - %22 = load i32, i32* %14, align 4 + %22 = load i32, ptr %14, align 4 %23 = icmp slt i32 %22, 8 br i1 %23, label %24, label %75 24: ; preds = %21 - %25 = load i32, i32* %8, align 4 - %26 = load i32*, i32** %12, align 8 - %27 = load i32, i32* %14, align 4 + %25 = load i32, ptr %8, align 4 + %26 = load ptr, ptr %12, align 8 + %27 = load i32, ptr %14, align 4 %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i32, i32* %26, i64 %28 - %30 = load i32, i32* %29, align 4 + %29 = getelementptr inbounds i32, ptr %26, i64 %28 + %30 = load i32, ptr %29, align 4 %31 = add nsw i32 %25, %30 - store i32 %31, i32* %15, align 4 - %32 = load i32, i32* %9, align 4 - %33 = load i32*, i32** %13, align 8 - %34 = load i32, i32* %14, align 4 + store i32 %31, ptr %15, align 4 + %32 = load i32, ptr %9, align 4 + %33 = load ptr, ptr %13, align 8 + %34 = load i32, ptr %14, align 4 %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i32, i32* %33, i64 %35 - %37 = load i32, i32* %36, align 4 + %36 = getelementptr inbounds i32, ptr %33, i64 %35 + %37 = load i32, ptr %36, align 4 %38 = add nsw i32 %32, %37 - store i32 %38, i32* %16, align 4 - %39 = load i32, i32* %15, align 4 - %40 = load i32, i32* %16, align 4 - %41 = load [8 x i32]*, [8 x i32]** %11, align 8 - %42 = call noundef zeroext i1 @_Z6isSafeiiPA8_i(i32 noundef %39, i32 noundef %40, [8 x i32]* noundef %41) + store i32 %38, ptr %16, align 4 + %39 = load i32, ptr %15, align 4 + %40 = load i32, ptr %16, align 4 + %41 = load ptr, ptr %11, align 8 + %42 = call noundef zeroext i1 @_Z6isSafeiiPA8_i(i32 noundef %39, i32 noundef %40, ptr noundef %41) br i1 %42, label %43, label %71 43: ; preds = %24 - %44 = load i32, i32* %10, align 4 - %45 = load [8 x i32]*, [8 x i32]** %11, align 8 - %46 = load i32, i32* %15, align 4 + %44 = load i32, ptr %10, align 4 + %45 = load ptr, ptr %11, align 8 + %46 = load i32, ptr %15, align 4 %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds [8 x i32], [8 x i32]* %45, i64 %47 - %49 = load i32, i32* %16, align 4 + %48 = getelementptr inbounds [8 x i32], ptr %45, i64 %47 + %49 = load i32, ptr %16, align 4 %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds [8 x i32], [8 x i32]* %48, i64 0, i64 %50 - store i32 %44, i32* %51, align 4 - %52 = load i32, i32* %15, align 4 - %53 = load i32, i32* %16, align 4 - %54 = load i32, i32* %10, align 4 + %51 = getelementptr inbounds [8 x i32], ptr %48, i64 0, i64 %50 + store i32 %44, ptr %51, align 4 + %52 = load i32, ptr %15, align 4 + %53 = load i32, ptr %16, align 4 + %54 = load i32, ptr %10, align 4 %55 = add nsw i32 %54, 1 - %56 = load [8 x i32]*, [8 x i32]** %11, align 8 - %57 = load i32*, i32** %12, align 8 - %58 = load i32*, i32** %13, align 8 - %59 = call noundef i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 noundef %52, i32 noundef %53, i32 noundef %55, [8 x i32]* noundef %56, i32* noundef %57, i32* noundef %58) + %56 = load ptr, ptr %11, align 8 + %57 = load ptr, ptr %12, align 8 + %58 = load ptr, ptr %13, align 8 + %59 = call noundef i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 noundef %52, i32 noundef %53, i32 noundef %55, ptr noundef %56, ptr noundef %57, ptr noundef %58) %60 = icmp eq i32 %59, 1 br i1 %60, label %61, label %62 61: ; preds = %43 - store i32 1, i32* %7, align 4 + store i32 1, ptr %7, align 4 br label %76 62: ; preds = %43 - %63 = load [8 x i32]*, [8 x i32]** %11, align 8 - %64 = load i32, i32* %15, align 4 + %63 = load ptr, ptr %11, align 8 + %64 = load i32, ptr %15, align 4 %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds [8 x i32], [8 x i32]* %63, i64 %65 - %67 = load i32, i32* %16, align 4 + %66 = getelementptr inbounds [8 x i32], ptr %63, i64 %65 + %67 = load i32, ptr %16, align 4 %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds [8 x i32], [8 x i32]* %66, i64 0, i64 %68 - store i32 -1, i32* %69, align 4 + %69 = getelementptr inbounds [8 x i32], ptr %66, i64 0, i64 %68 + store i32 -1, ptr %69, align 4 br label %70 70: ; preds = %62 @@ -298,24 +296,24 @@ define dso_local noundef i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 noundef %0, i32 n br label %72 72: ; preds = %71 - %73 = load i32, i32* %14, align 4 + %73 = load i32, ptr %14, align 4 %74 = add nsw i32 %73, 1 - store i32 %74, i32* %14, align 4 + store i32 %74, ptr %14, align 4 br label %21, !llvm.loop !11 75: ; preds = %21 - store i32 0, i32* %7, align 4 + store i32 0, ptr %7, align 4 br label %76 76: ; preds = %75, %61, %19 - %77 = load i32, i32* %7, align 4 + %77 = load i32, ptr %7, align 4 ret i32 %77 } ; 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 + store i32 0, ptr %1, align 4 %2 = call noundef zeroext i1 @_Z7solveKTv() ret i32 0 } @@ -323,18 +321,18 @@ define dso_local noundef i32 @main() #4 { 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 #3 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } 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, !1, !2, !3, !4} !llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{i32 7, !"PIC Level", i32 2} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/topological-sorting.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/topological-sorting.ll new file mode 100644 index 000000000..acfa7e3c5 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/topological-sorting.ll @@ -0,0 +1,2961 @@ +; ModuleID = 'PE-benchmarks/topological-sorting.cpp' +source_filename = "PE-benchmarks/topological-sorting.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"struct.std::_List_iterator" = type { ptr } +%"class.std::stack" = type { %"class.std::deque" } +%"class.std::deque" = type { %"class.std::_Deque_base" } +%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } +%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } +%"struct.std::_Deque_base>::_Deque_impl_data" = type { ptr, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } +%"struct.std::_Deque_iterator" = type { ptr, ptr, ptr, ptr } +%"class.std::allocator.3" = type { i8 } +%"struct.std::__allocated_ptr" = type { ptr, ptr } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any + +$_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv = comdat any + +$_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt5dequeIiSaIiEED2Ev = comdat any + +$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any + +$_ZNSt5dequeIiSaIiEE5beginEv = comdat any + +$_ZNSt5dequeIiSaIiEE3endEv = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any + +$_ZSt16__deque_buf_sizem = comdat any + +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any + +$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any + +$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any + +$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any + +$_ZNSt15__new_allocatorIPiED2Ev = comdat any + +$_ZNSt15__new_allocatorIiED2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any + +$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any + +$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any + +$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any + +$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any + +$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any + +$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any + +$_ZSt3minImERKT_S2_S2_ = comdat any + +$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any + +$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any + +$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any + +$_ZSt3maxImERKT_S2_S2_ = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any + +$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__miter_baseIPPiET_S2_ = comdat any + +$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any + +$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__niter_baseIPPiET_S2_ = comdat any + +$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_ = comdat any + +$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any + +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any + +$_ZNSt5dequeIiSaIiEEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any + +$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any + +$_ZNKSt5dequeIiSaIiEE5emptyEv = comdat any + +$_ZSteqRKSt15_Deque_iteratorIiRiPiES4_ = comdat any + +$_ZNSt5dequeIiSaIiEE4backEv = comdat any + +$_ZNSt15_Deque_iteratorIiRiPiEmmEv = comdat any + +$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any + +$_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any + +$_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any + +@_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 + +@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei + +; Function Attrs: noinline uwtable +define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #0 align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + store i32 %6, ptr %7, align 8 + %8 = load i32, ptr %4, align 4 + %9 = sext i32 %8 to i64 + %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) + %11 = extractvalue { i64, i1 } %10, 1 + %12 = extractvalue { i64, i1 } %10, 0 + %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = or i1 %11, %14 + %16 = extractvalue { i64, i1 } %13, 0 + %17 = select i1 %15, i64 -1, i64 %16 + %18 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #14 + store i64 %9, ptr %18, align 16 + %19 = getelementptr inbounds i8, ptr %18, i64 8 + %20 = icmp eq i64 %9, 0 + br i1 %20, label %27, label %21 + +21: ; preds = %2 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %9 + br label %23 + +23: ; preds = %23, %21 + %24 = phi ptr [ %19, %21 ], [ %25, %23 ] + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #15 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 1 + %26 = icmp eq ptr %25, %22 + br i1 %26, label %27, label %23 + +27: ; preds = %2, %23 + %28 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + store ptr %19, ptr %28, align 8 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #4 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds %"class.std::__cxx11::list", ptr %9, i64 %11 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %6) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #15 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, ptr noundef %2, ptr noundef nonnull align 8 dereferenceable(80) %3) #4 align 2 { + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca %"struct.std::_List_iterator", align 8 + %10 = alloca %"struct.std::_List_iterator", align 8 + %11 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %5, align 8 + store i32 %1, ptr %6, align 4 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %12 = load ptr, ptr %5, align 8 + %13 = load ptr, ptr %7, align 8 + %14 = load i32, ptr %6, align 4 + %15 = sext i32 %14 to i64 + %16 = getelementptr inbounds i8, ptr %13, i64 %15 + store i8 1, ptr %16, align 1 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %9) #15 + %17 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 1 + %18 = load ptr, ptr %17, align 8 + %19 = load i32, ptr %6, align 4 + %20 = sext i32 %19 to i64 + %21 = getelementptr inbounds %"class.std::__cxx11::list", ptr %18, i64 %20 + %22 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %21) #15 + %23 = getelementptr inbounds %"struct.std::_List_iterator", ptr %10, i32 0, i32 0 + store ptr %22, ptr %23, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %10, i64 8, i1 false) + br label %24 + +24: ; preds = %47, %4 + %25 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 1 + %26 = load ptr, ptr %25, align 8 + %27 = load i32, ptr %6, align 4 + %28 = sext i32 %27 to i64 + %29 = getelementptr inbounds %"class.std::__cxx11::list", ptr %26, i64 %28 + %30 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %29) #15 + %31 = getelementptr inbounds %"struct.std::_List_iterator", ptr %11, i32 0, i32 0 + store ptr %30, ptr %31, align 8 + %32 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %9, ptr noundef nonnull align 8 dereferenceable(8) %11) #15 + br i1 %32, label %33, label %49 + +33: ; preds = %24 + %34 = load ptr, ptr %7, align 8 + %35 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #15 + %36 = load i32, ptr %35, align 4 + %37 = sext i32 %36 to i64 + %38 = getelementptr inbounds i8, ptr %34, i64 %37 + %39 = load i8, ptr %38, align 1 + %40 = trunc i8 %39 to i1 + br i1 %40, label %46, label %41 + +41: ; preds = %33 + %42 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #15 + %43 = load i32, ptr %42, align 4 + %44 = load ptr, ptr %7, align 8 + %45 = load ptr, ptr %8, align 8 + call void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr noundef nonnull align 8 dereferenceable(16) %12, i32 noundef %43, ptr noundef %44, ptr noundef nonnull align 8 dereferenceable(80) %45) + br label %46 + +46: ; preds = %41, %33 + br label %47 + +47: ; preds = %46 + %48 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #15 + br label %24, !llvm.loop !6 + +49: ; preds = %24 + %50 = load ptr, ptr %8, align 8 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %50, ptr noundef nonnull align 4 dereferenceable(4) %6) + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #15 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #15 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"class.std::stack", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + call void @_ZNSt5dequeIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(80) %6, ptr noundef nonnull align 4 dereferenceable(4) %7) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph15topologicalSortEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca %"class.std::stack", align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %9 = load ptr, ptr %2, align 8 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %3) + %10 = getelementptr inbounds %class.Graph, ptr %9, i32 0, i32 0 + %11 = load i32, ptr %10, align 8 + %12 = sext i32 %11 to i64 + %13 = invoke noalias noundef nonnull ptr @_Znam(i64 noundef %12) #14 + to label %14 unwind label %28 + +14: ; preds = %1 + store ptr %13, ptr %4, align 8 + store i32 0, ptr %7, align 4 + br label %15 + +15: ; preds = %25, %14 + %16 = load i32, ptr %7, align 4 + %17 = getelementptr inbounds %class.Graph, ptr %9, i32 0, i32 0 + %18 = load i32, ptr %17, align 8 + %19 = icmp slt i32 %16, %18 + br i1 %19, label %20, label %32 + +20: ; preds = %15 + %21 = load ptr, ptr %4, align 8 + %22 = load i32, ptr %7, align 4 + %23 = sext i32 %22 to i64 + %24 = getelementptr inbounds i8, ptr %21, i64 %23 + store i8 0, ptr %24, align 1 + br label %25 + +25: ; preds = %20 + %26 = load i32, ptr %7, align 4 + %27 = add nsw i32 %26, 1 + store i32 %27, ptr %7, align 4 + br label %15, !llvm.loop !8 + +28: ; preds = %68, %66, %63, %61, %56, %47, %1 + %29 = landingpad { ptr, i32 } + cleanup + %30 = extractvalue { ptr, i32 } %29, 0 + store ptr %30, ptr %5, align 8 + %31 = extractvalue { ptr, i32 } %29, 1 + store i32 %31, ptr %6, align 4 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #15 + br label %71 + +32: ; preds = %15 + store i32 0, ptr %8, align 4 + br label %33 + +33: ; preds = %52, %32 + %34 = load i32, ptr %8, align 4 + %35 = getelementptr inbounds %class.Graph, ptr %9, i32 0, i32 0 + %36 = load i32, ptr %35, align 8 + %37 = icmp slt i32 %34, %36 + br i1 %37, label %38, label %55 + +38: ; preds = %33 + %39 = load ptr, ptr %4, align 8 + %40 = load i32, ptr %8, align 4 + %41 = sext i32 %40 to i64 + %42 = getelementptr inbounds i8, ptr %39, i64 %41 + %43 = load i8, ptr %42, align 1 + %44 = trunc i8 %43 to i1 + %45 = zext i1 %44 to i32 + %46 = icmp eq i32 %45, 0 + br i1 %46, label %47, label %51 + +47: ; preds = %38 + %48 = load i32, ptr %8, align 4 + %49 = load ptr, ptr %4, align 8 + invoke void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr noundef nonnull align 8 dereferenceable(16) %9, i32 noundef %48, ptr noundef %49, ptr noundef nonnull align 8 dereferenceable(80) %3) + to label %50 unwind label %28 + +50: ; preds = %47 + br label %51 + +51: ; preds = %50, %38 + br label %52 + +52: ; preds = %51 + %53 = load i32, ptr %8, align 4 + %54 = add nsw i32 %53, 1 + store i32 %54, ptr %8, align 4 + br label %33, !llvm.loop !9 + +55: ; preds = %33 + br label %56 + +56: ; preds = %69, %55 + %57 = invoke noundef zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %3) + to label %58 unwind label %28 + +58: ; preds = %56 + %59 = zext i1 %57 to i32 + %60 = icmp eq i32 %59, 0 + br i1 %60, label %61, label %70 + +61: ; preds = %58 + %62 = invoke noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(ptr noundef nonnull align 8 dereferenceable(80) %3) + to label %63 unwind label %28 + +63: ; preds = %61 + %64 = load i32, ptr %62, align 4 + %65 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %64) + to label %66 unwind label %28 + +66: ; preds = %63 + %67 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %65, ptr noundef @.str) + to label %68 unwind label %28 + +68: ; preds = %66 + invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %3) + to label %69 unwind label %28 + +69: ; preds = %68 + br label %56, !llvm.loop !10 + +70: ; preds = %58 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #15 + ret void + +71: ; preds = %28 + %72 = load ptr, ptr %5, align 8 + %73 = load i32, ptr %6, align 4 + %74 = insertvalue { ptr, i32 } poison, ptr %72, 0 + %75 = insertvalue { ptr, i32 } %74, i32 %73, 1 + resume { ptr, i32 } %75 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + call void @llvm.memset.p0.i64(ptr align 8 %4, i8 0, i64 80, i1 false) + call void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %4) + ret void +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + %5 = call noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #15 + ret i1 %5 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #7 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + %5 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5dequeIiSaIiEE4backEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #15 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + call void @_ZNSt5dequeIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(80) %4) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::stack", ptr %3, i32 0, i32 0 + call void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %4) #15 + ret void +} + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 { + %1 = alloca i32, align 4 + %2 = alloca %class.Graph, align 8 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 6) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 4, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 4, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 1) + %3 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + call void @_ZN5Graph15topologicalSortEv(ptr 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(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_Deque_iterator", align 8 + %4 = alloca %"struct.std::_Deque_iterator", align 8 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt5dequeIiSaIiEE5beginEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %3, ptr noundef nonnull align 8 dereferenceable(80) %5) #15 + call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %4, ptr noundef nonnull align 8 dereferenceable(80) %5) #15 + %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #15 + invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(ptr noundef nonnull align 8 dereferenceable(80) %5, ptr noundef %3, ptr noundef %4, ptr noundef nonnull align 1 dereferenceable(1) %6) + to label %7 unwind label %8 + +7: ; preds = %1 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #15 + ret void + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + catch ptr null + %10 = extractvalue { ptr, i32 } %9, 0 + call void @__clang_call_terminate(ptr %10) #16 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #5 comdat align 2 { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store ptr %3, ptr %6, align 8 + %7 = load ptr, ptr %5, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %7) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %7) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #9 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #15 + call void @_ZSt9terminatev() #16 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 0 + %6 = load ptr, ptr %5, align 8 + %7 = icmp ne ptr %6, null + br i1 %7, label %8, label %24 + +8: ; preds = %1 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %9, i32 0, i32 2 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %10, i32 0, i32 3 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %14 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %13, i32 0, i32 3 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %14, i32 0, i32 3 + %16 = load ptr, ptr %15, align 8 + %17 = getelementptr inbounds ptr, ptr %16, i64 1 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %12, ptr noundef %17) #15 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 0 + %20 = load ptr, ptr %19, align 8 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 1 + %23 = load i64, ptr %22, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %20, i64 noundef %23) #15 + br label %24 + +24: ; preds = %8, %1 + %25 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %25) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + store ptr %9, ptr %6, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 1 + %13 = load ptr, ptr %12, align 8 + store ptr %13, ptr %10, align 8 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + %15 = load ptr, ptr %4, align 8 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 2 + %17 = load ptr, ptr %16, align 8 + store ptr %17, ptr %14, align 8 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + %19 = load ptr, ptr %4, align 8 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + store ptr %21, ptr %18, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %7, align 8 + br label %10 + +10: ; preds = %17, %3 + %11 = load ptr, ptr %7, align 8 + %12 = load ptr, ptr %6, align 8 + %13 = icmp ult ptr %11, %12 + br i1 %13, label %14, label %20 + +14: ; preds = %10 + %15 = load ptr, ptr %7, align 8 + %16 = load ptr, ptr %15, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %8, ptr noundef %16) #15 + br label %17 + +17: ; preds = %14 + %18 = load ptr, ptr %7, align 8 + %19 = getelementptr inbounds ptr, ptr %18, i32 1 + store ptr %19, ptr %7, align 8 + br label %10, !llvm.loop !11 + +20: ; preds = %10 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, i64 noundef %2) #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca %"class.std::allocator.3", align 1 + store ptr %0, ptr %8, align 8 + store ptr %1, ptr %9, align 8 + store i64 %2, ptr %10, align 8 + %12 = load ptr, ptr %8, align 8 + call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %11, ptr noundef nonnull align 8 dereferenceable(80) %12) #15 + %13 = load ptr, ptr %9, align 8 + %14 = load i64, ptr %10, align 8 + store ptr %11, ptr %5, align 8 + store ptr %13, ptr %6, align 8 + store i64 %14, ptr %7, align 8 + %15 = load ptr, ptr %5, align 8 + %16 = load ptr, ptr %6, align 8 + %17 = load i64, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %3 + store ptr %11, ptr %4, align 8 + %19 = load ptr, ptr %4, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #15 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #16 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %7, align 8 + %11 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + to label %12 unwind label %17 + +12: ; preds = %2 + store ptr %9, ptr %3, align 8 + store ptr %10, ptr %4, align 8 + store i64 %11, ptr %5, align 8 + %13 = load ptr, ptr %3, align 8 + %14 = load ptr, ptr %4, align 8 + %15 = load i64, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14, i64 noundef %15) + br label %16 + +16: ; preds = %12 + ret void + +17: ; preds = %2 + %18 = landingpad { ptr, i32 } + catch ptr null + %19 = extractvalue { ptr, i32 } %18, 0 + call void @__clang_call_terminate(ptr %19) #16 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #5 comdat { + %2 = alloca i64, align 8 + store i64 %0, ptr %2, align 8 + %3 = load i64, ptr %2, align 8 + %4 = icmp ult i64 %3, 512 + br i1 %4, label %5, label %8 + +5: ; preds = %1 + %6 = load i64, ptr %2, align 8 + %7 = udiv i64 512, %6 + br label %9 + +8: ; preds = %1 + br label %9 + +9: ; preds = %8, %5 + %10 = phi i64 [ %7, %5 ], [ 1, %8 ] + ret i64 %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #10 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr noalias sret(%"class.std::allocator.3") align 1 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + %8 = load ptr, ptr %7, align 8 + %9 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %8) #15 + store ptr %0, ptr %4, align 8 + store ptr %9, ptr %5, align 8 + %10 = load ptr, ptr %4, align 8 + store ptr %10, ptr %3, align 8 + %11 = load ptr, ptr %3, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiE10deallocateEPS0_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #15 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %16 = load ptr, ptr %9, align 8 + %17 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %16) + store ptr %17, ptr %11, align 8 + %18 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %16) #15 + store ptr %18, ptr %12, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %19, ptr noundef %20) #15 + %21 = load ptr, ptr %12, align 8 + %22 = load ptr, ptr %11, align 8 + %23 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %22) + to label %24 unwind label %35 + +24: ; preds = %2 + %25 = load ptr, ptr %10, align 8 + store ptr %21, ptr %6, align 8 + store ptr %23, ptr %7, align 8 + store ptr %25, ptr %8, align 8 + %26 = load ptr, ptr %6, align 8 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %8, align 8 + store ptr %26, ptr %3, align 8 + store ptr %27, ptr %4, align 8 + store ptr %28, ptr %5, align 8 + %29 = load ptr, ptr %3, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + %32 = load i32, ptr %31, align 4 + store i32 %32, ptr %30, align 4 + %33 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #15 + %34 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #15 + ret ptr %34 + +35: ; preds = %2 + %36 = landingpad { ptr, i32 } + cleanup + %37 = extractvalue { ptr, i32 } %36, 0 + store ptr %37, ptr %14, align 8 + %38 = extractvalue { ptr, i32 } %36, 1 + store i32 %38, ptr %15, align 4 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #15 + br label %39 + +39: ; preds = %35 + %40 = load ptr, ptr %14, align 8 + %41 = load i32, ptr %15, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #11 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #15 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #16 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #14 + ret ptr %20 +} + +; Function Attrs: noreturn +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 noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #15 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #17 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %16, i32 0, i32 3 + %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %17, i32 0, i32 2 + %19 = load ptr, ptr %18, align 8 + %20 = getelementptr inbounds i32, ptr %19, i64 -1 + %21 = icmp ne ptr %15, %20 + br i1 %21, label %22, label %41 + +22: ; preds = %2 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %34, align 4 + store i32 %35, ptr %33, align 4 + %36 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %36, i32 0, i32 3 + %38 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = getelementptr inbounds i32, ptr %39, i32 1 + store ptr %40, ptr %38, align 8 + br label %43 + +41: ; preds = %2 + %42 = load ptr, ptr %10, align 8 + call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %11, ptr noundef nonnull align 4 dereferenceable(4) %42) + br label %43 + +43: ; preds = %41, %22 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %11 = load ptr, ptr %9, align 8 + %12 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #15 + %13 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) #15 + %14 = icmp eq i64 %12, %13 + br i1 %14, label %15, label %16 + +15: ; preds = %2 + call void @_ZSt20__throw_length_errorPKc(ptr noundef @.str.2) #18 + unreachable + +16: ; preds = %2 + call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %11, i64 noundef 1) + %17 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %11) + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 3 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i64 1 + store ptr %17, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + %28 = load ptr, ptr %10, align 8 + store ptr %23, ptr %6, align 8 + store ptr %27, ptr %7, align 8 + store ptr %28, ptr %8, align 8 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + store ptr %29, ptr %3, align 8 + store ptr %30, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = load ptr, ptr %4, align 8 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %34, align 4 + store i32 %35, ptr %33, align 4 + %36 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %36, i32 0, i32 3 + %38 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %38, i32 0, i32 3 + %40 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %39, i32 0, i32 3 + %41 = load ptr, ptr %40, align 8 + %42 = getelementptr inbounds ptr, ptr %41, i64 1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %37, ptr noundef %42) #15 + %43 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %44 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %43, i32 0, i32 3 + %45 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %44, i32 0, i32 1 + %46 = load ptr, ptr %45, align 8 + %47 = getelementptr inbounds %"class.std::_Deque_base", ptr %11, i32 0, i32 0 + %48 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %47, i32 0, i32 3 + %49 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %48, i32 0, i32 0 + store ptr %46, ptr %49, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 3 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + %8 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %7) #15 + ret i64 %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #15 + %5 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #15 + ret i64 %5 +} + +; Function Attrs: noreturn +declare void @_ZSt20__throw_length_errorPKc(ptr noundef) #12 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = add i64 %6, 1 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %11, i32 0, i32 3 + %13 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %12, i32 0, i32 3 + %14 = load ptr, ptr %13, align 8 + %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 0 + %17 = load ptr, ptr %16, align 8 + %18 = ptrtoint ptr %14 to i64 + %19 = ptrtoint ptr %17 to i64 + %20 = sub i64 %18, %19 + %21 = sdiv exact i64 %20, 8 + %22 = sub i64 %10, %21 + %23 = icmp ugt i64 %7, %22 + br i1 %23, label %24, label %26 + +24: ; preds = %2 + %25 = load i64, ptr %4, align 8 + call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %25, i1 noundef zeroext false) + br label %26 + +26: ; preds = %24, %2 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + %7 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + store ptr %6, ptr %2, align 8 + store i64 %7, ptr %3, align 8 + %8 = load ptr, ptr %2, align 8 + %9 = load i64, ptr %3, align 8 + %10 = call noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %8, i64 noundef %9, ptr noundef null) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 3 + store ptr %6, ptr %7, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + store ptr %9, ptr %10, align 8 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %12 = load ptr, ptr %11, align 8 + %13 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #15 + %14 = getelementptr inbounds i32, ptr %12, i64 %13 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 2 + store ptr %14, ptr %15, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = call noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #15 + %6 = load ptr, ptr %3, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %6, i32 0, i32 3 + %8 = load ptr, ptr %7, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 3 + %11 = load ptr, ptr %10, align 8 + %12 = ptrtoint ptr %8 to i64 + %13 = ptrtoint ptr %11 to i64 + %14 = sub i64 %12, %13 + %15 = sdiv exact i64 %14, 8 + %16 = load ptr, ptr %3, align 8 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 3 + %18 = load ptr, ptr %17, align 8 + %19 = icmp ne ptr %18, null + %20 = zext i1 %19 to i64 + %21 = sub nsw i64 %15, %20 + %22 = mul nsw i64 %5, %21 + %23 = load ptr, ptr %3, align 8 + %24 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %23, i32 0, i32 0 + %25 = load ptr, ptr %24, align 8 + %26 = load ptr, ptr %3, align 8 + %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 1 + %28 = load ptr, ptr %27, align 8 + %29 = ptrtoint ptr %25 to i64 + %30 = ptrtoint ptr %28 to i64 + %31 = sub i64 %29, %30 + %32 = sdiv exact i64 %31, 4 + %33 = add nsw i64 %22, %32 + %34 = load ptr, ptr %4, align 8 + %35 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %34, i32 0, i32 2 + %36 = load ptr, ptr %35, align 8 + %37 = load ptr, ptr %4, align 8 + %38 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = ptrtoint ptr %36 to i64 + %41 = ptrtoint ptr %39 to i64 + %42 = sub i64 %40, %41 + %43 = sdiv exact i64 %42, 4 + %44 = add nsw i64 %33, %43 + ret i64 %44 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #5 comdat align 2 { + %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + ret i64 %1 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %0) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %5, align 8 + store i64 9223372036854775807, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + store ptr %8, ptr %4, align 8 + %9 = load ptr, ptr %4, align 8 + store ptr %9, ptr %3, align 8 + %10 = load ptr, ptr %3, align 8 + store ptr %10, ptr %2, align 8 + %11 = load ptr, ptr %2, align 8 + store i64 2305843009213693951, ptr %7, align 8 + %12 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + to label %13 unwind label %15 + +13: ; preds = %1 + %14 = load i64, ptr %12, align 8 + ret i64 %14 + +15: ; preds = %1 + %16 = landingpad { ptr, i32 } + catch ptr null + %17 = extractvalue { ptr, i32 } %16, 0 + call void @__clang_call_terminate(ptr %17) #16 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i64, align 8 + %6 = alloca i8, align 1 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store i64 %1, ptr %5, align 8 + %12 = zext i1 %2 to i8 + store i8 %12, ptr %6, align 1 + %13 = load ptr, ptr %4, align 8 + %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %14, i32 0, i32 3 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 3 + %17 = load ptr, ptr %16, align 8 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 2 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 + %21 = load ptr, ptr %20, align 8 + %22 = ptrtoint ptr %17 to i64 + %23 = ptrtoint ptr %21 to i64 + %24 = sub i64 %22, %23 + %25 = sdiv exact i64 %24, 8 + %26 = add nsw i64 %25, 1 + store i64 %26, ptr %7, align 8 + %27 = load i64, ptr %7, align 8 + %28 = load i64, ptr %5, align 8 + %29 = add i64 %27, %28 + store i64 %29, ptr %8, align 8 + %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 1 + %32 = load i64, ptr %31, align 8 + %33 = load i64, ptr %8, align 8 + %34 = mul i64 2, %33 + %35 = icmp ugt i64 %32, %34 + br i1 %35, label %36, label %88 + +36: ; preds = %3 + %37 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %37, i32 0, i32 0 + %39 = load ptr, ptr %38, align 8 + %40 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %41 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %40, i32 0, i32 1 + %42 = load i64, ptr %41, align 8 + %43 = load i64, ptr %8, align 8 + %44 = sub i64 %42, %43 + %45 = udiv i64 %44, 2 + %46 = getelementptr inbounds ptr, ptr %39, i64 %45 + %47 = load i8, ptr %6, align 1 + %48 = trunc i8 %47 to i1 + br i1 %48, label %49, label %51 + +49: ; preds = %36 + %50 = load i64, ptr %5, align 8 + br label %52 + +51: ; preds = %36 + br label %52 + +52: ; preds = %51, %49 + %53 = phi i64 [ %50, %49 ], [ 0, %51 ] + %54 = getelementptr inbounds ptr, ptr %46, i64 %53 + store ptr %54, ptr %9, align 8 + %55 = load ptr, ptr %9, align 8 + %56 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %57 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %56, i32 0, i32 2 + %58 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %57, i32 0, i32 3 + %59 = load ptr, ptr %58, align 8 + %60 = icmp ult ptr %55, %59 + br i1 %60, label %61, label %73 + +61: ; preds = %52 + %62 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %62, i32 0, i32 2 + %64 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %63, i32 0, i32 3 + %65 = load ptr, ptr %64, align 8 + %66 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %66, i32 0, i32 3 + %68 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %67, i32 0, i32 3 + %69 = load ptr, ptr %68, align 8 + %70 = getelementptr inbounds ptr, ptr %69, i64 1 + %71 = load ptr, ptr %9, align 8 + %72 = call noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %65, ptr noundef %70, ptr noundef %71) + br label %87 + +73: ; preds = %52 + %74 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %75 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %74, i32 0, i32 2 + %76 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %75, i32 0, i32 3 + %77 = load ptr, ptr %76, align 8 + %78 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %78, i32 0, i32 3 + %80 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %79, i32 0, i32 3 + %81 = load ptr, ptr %80, align 8 + %82 = getelementptr inbounds ptr, ptr %81, i64 1 + %83 = load ptr, ptr %9, align 8 + %84 = load i64, ptr %7, align 8 + %85 = getelementptr inbounds ptr, ptr %83, i64 %84 + %86 = call noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(ptr noundef %77, ptr noundef %82, ptr noundef %85) + br label %87 + +87: ; preds = %73, %61 + br label %137 + +88: ; preds = %3 + %89 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %90 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %89, i32 0, i32 1 + %91 = load i64, ptr %90, align 8 + %92 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %92, i32 0, i32 1 + %94 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %93, ptr noundef nonnull align 8 dereferenceable(8) %5) + %95 = load i64, ptr %94, align 8 + %96 = add i64 %91, %95 + %97 = add i64 %96, 2 + store i64 %97, ptr %10, align 8 + %98 = load i64, ptr %10, align 8 + %99 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %13, i64 noundef %98) + store ptr %99, ptr %11, align 8 + %100 = load ptr, ptr %11, align 8 + %101 = load i64, ptr %10, align 8 + %102 = load i64, ptr %8, align 8 + %103 = sub i64 %101, %102 + %104 = udiv i64 %103, 2 + %105 = getelementptr inbounds ptr, ptr %100, i64 %104 + %106 = load i8, ptr %6, align 1 + %107 = trunc i8 %106 to i1 + br i1 %107, label %108, label %110 + +108: ; preds = %88 + %109 = load i64, ptr %5, align 8 + br label %111 + +110: ; preds = %88 + br label %111 + +111: ; preds = %110, %108 + %112 = phi i64 [ %109, %108 ], [ 0, %110 ] + %113 = getelementptr inbounds ptr, ptr %105, i64 %112 + store ptr %113, ptr %9, align 8 + %114 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %115 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %114, i32 0, i32 2 + %116 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %115, i32 0, i32 3 + %117 = load ptr, ptr %116, align 8 + %118 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %119 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %118, i32 0, i32 3 + %120 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %119, i32 0, i32 3 + %121 = load ptr, ptr %120, align 8 + %122 = getelementptr inbounds ptr, ptr %121, i64 1 + %123 = load ptr, ptr %9, align 8 + %124 = call noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %117, ptr noundef %122, ptr noundef %123) + %125 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %126 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %125, i32 0, i32 0 + %127 = load ptr, ptr %126, align 8 + %128 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %129 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %128, i32 0, i32 1 + %130 = load i64, ptr %129, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %13, ptr noundef %127, i64 noundef %130) #15 + %131 = load ptr, ptr %11, align 8 + %132 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %133 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %132, i32 0, i32 0 + store ptr %131, ptr %133, align 8 + %134 = load i64, ptr %10, align 8 + %135 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %136 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %135, i32 0, i32 1 + store i64 %134, ptr %136, align 8 + br label %137 + +137: ; preds = %111, %87 + %138 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %139 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %138, i32 0, i32 2 + %140 = load ptr, ptr %9, align 8 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %139, ptr noundef %140) #15 + %141 = getelementptr inbounds %"class.std::_Deque_base", ptr %13, i32 0, i32 0 + %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %141, i32 0, i32 3 + %143 = load ptr, ptr %9, align 8 + %144 = load i64, ptr %7, align 8 + %145 = getelementptr inbounds ptr, ptr %143, i64 %144 + %146 = getelementptr inbounds ptr, ptr %145, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %142, ptr noundef %146) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i64, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %8, align 8 + %10 = icmp ult i64 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca %"class.std::allocator.3", align 1 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %7, align 8 + store i64 %1, ptr %8, align 8 + %12 = load ptr, ptr %7, align 8 + call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %9, ptr noundef nonnull align 8 dereferenceable(80) %12) #15 + %13 = load i64, ptr %8, align 8 + store ptr %9, ptr %3, align 8 + store i64 %13, ptr %4, align 8 + %14 = load ptr, ptr %3, align 8 + %15 = load i64, ptr %4, align 8 + %16 = invoke noundef ptr @_ZNSt15__new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %14, i64 noundef %15, ptr noundef null) + to label %17 unwind label %20 + +17: ; preds = %2 + br label %18 + +18: ; preds = %17 + store ptr %9, ptr %6, align 8 + %19 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %19) #15 + ret ptr %16 + +20: ; preds = %2 + %21 = landingpad { ptr, i32 } + cleanup + %22 = extractvalue { ptr, i32 } %21, 0 + store ptr %22, ptr %10, align 8 + %23 = extractvalue { ptr, i32 } %21, 1 + store i32 %23, ptr %11, align 4 + store ptr %9, ptr %5, align 8 + %24 = load ptr, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %24) #15 + br label %25 + +25: ; preds = %20 + %26 = load ptr, ptr %10, align 8 + %27 = load i32, ptr %11, align 4 + %28 = insertvalue { ptr, i32 } poison, ptr %26, 0 + %29 = insertvalue { ptr, i32 } %28, i32 %27, 1 + resume { ptr, i32 } %29 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %7) #15 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %9) #15 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %11) #15 + %13 = call noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noundef %0) #5 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %0) #5 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %21 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load i64, ptr %7, align 8 + %20 = mul i64 8, %19 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %17, ptr align 8 %18, i64 %20, i1 false) + br label %28 + +21: ; preds = %3 + %22 = load i64, ptr %7, align 8 + %23 = icmp eq i64 %22, 1 + br i1 %23, label %24, label %27 + +24: ; preds = %21 + %25 = load ptr, ptr %6, align 8 + %26 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %25, ptr noundef %26) + br label %27 + +27: ; preds = %24, %21 + br label %28 + +28: ; preds = %27, %16 + %29 = load ptr, ptr %6, align 8 + %30 = load i64, ptr %7, align 8 + %31 = getelementptr inbounds ptr, ptr %29, i64 %30 + ret ptr %31 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memmove.p0.p0.i64(ptr nocapture writeonly, ptr nocapture readonly, i64, i1 immarg) #6 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %0, ptr noundef %1) #5 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = load ptr, ptr %3, align 8 + store ptr %6, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %7) #15 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %9) #15 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %11) #15 + %13 = call noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #5 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 8 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %24 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load i64, ptr %7, align 8 + %19 = sub i64 0, %18 + %20 = getelementptr inbounds ptr, ptr %17, i64 %19 + %21 = load ptr, ptr %4, align 8 + %22 = load i64, ptr %7, align 8 + %23 = mul i64 8, %22 + call void @llvm.memmove.p0.p0.i64(ptr align 8 %20, ptr align 8 %21, i64 %23, i1 false) + br label %32 + +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 + +27: ; preds = %24 + %28 = load ptr, ptr %6, align 8 + %29 = getelementptr inbounds ptr, ptr %28, i64 -1 + %30 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb0ELb0ESt26random_access_iterator_tagE12__assign_oneIPiS3_EEvPT_PT0_(ptr noundef %29, ptr noundef %30) + br label %31 + +31: ; preds = %27, %24 + br label %32 + +32: ; preds = %31, %16 + %33 = load ptr, ptr %6, align 8 + %34 = load i64, ptr %7, align 8 + %35 = sub i64 0, %34 + %36 = getelementptr inbounds ptr, ptr %33, i64 %35 + ret ptr %36 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 1152921504606846975 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 8 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #14 + ret ptr %20 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 2305843009213693951 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 4611686018427387903 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 4 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #14 + ret ptr %20 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #13 + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) + ret void +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #15 + invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) + to label %7 unwind label %8 + +7: ; preds = %1 + ret void + +8: ; preds = %1 + %9 = landingpad { ptr, i32 } + cleanup + %10 = extractvalue { ptr, i32 } %9, 0 + store ptr %10, ptr %3, align 8 + %11 = extractvalue { ptr, i32 } %9, 1 + store i32 %11, ptr %4, align 4 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #15 + br label %12 + +12: ; preds = %8 + %13 = load ptr, ptr %3, align 8 + %14 = load i32, ptr %4, align 4 + %15 = insertvalue { ptr, i32 } poison, ptr %13, 0 + %16 = insertvalue { ptr, i32 } %15, i32 %14, 1 + resume { ptr, i32 } %16 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i64, align 8 + %6 = alloca i64, align 8 + %7 = alloca i64, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %12 = load ptr, ptr %3, align 8 + %13 = load i64, ptr %4, align 8 + %14 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %15 = udiv i64 %13, %14 + %16 = add i64 %15, 1 + store i64 %16, ptr %5, align 8 + store i64 8, ptr %6, align 8 + %17 = load i64, ptr %5, align 8 + %18 = add i64 %17, 2 + store i64 %18, ptr %7, align 8 + %19 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3maxImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %7) + %20 = load i64, ptr %19, align 8 + %21 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %21, i32 0, i32 1 + store i64 %20, ptr %22, align 8 + %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 1 + %25 = load i64, ptr %24, align 8 + %26 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(ptr noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %25) + %27 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %28 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %27, i32 0, i32 0 + store ptr %26, ptr %28, align 8 + %29 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + %32 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %32, i32 0, i32 1 + %34 = load i64, ptr %33, align 8 + %35 = load i64, ptr %5, align 8 + %36 = sub i64 %34, %35 + %37 = udiv i64 %36, 2 + %38 = getelementptr inbounds ptr, ptr %31, i64 %37 + store ptr %38, ptr %8, align 8 + %39 = load ptr, ptr %8, align 8 + %40 = load i64, ptr %5, align 8 + %41 = getelementptr inbounds ptr, ptr %39, i64 %40 + store ptr %41, ptr %9, align 8 + %42 = load ptr, ptr %8, align 8 + %43 = load ptr, ptr %9, align 8 + invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %42, ptr noundef %43) + to label %44 unwind label %45 + +44: ; preds = %2 + br label %67 + +45: ; preds = %2 + %46 = landingpad { ptr, i32 } + catch ptr null + %47 = extractvalue { ptr, i32 } %46, 0 + store ptr %47, ptr %10, align 8 + %48 = extractvalue { ptr, i32 } %46, 1 + store i32 %48, ptr %11, align 4 + br label %49 + +49: ; preds = %45 + %50 = load ptr, ptr %10, align 8 + %51 = call ptr @__cxa_begin_catch(ptr %50) #15 + %52 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %53 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %52, i32 0, i32 0 + %54 = load ptr, ptr %53, align 8 + %55 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %56 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %55, i32 0, i32 1 + %57 = load i64, ptr %56, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(ptr noundef nonnull align 8 dereferenceable(80) %12, ptr noundef %54, i64 noundef %57) #15 + %58 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %58, i32 0, i32 0 + store ptr null, ptr %59, align 8 + %60 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %61 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %60, i32 0, i32 1 + store i64 0, ptr %61, align 8 + invoke void @__cxa_rethrow() #18 + to label %101 unwind label %62 + +62: ; preds = %49 + %63 = landingpad { ptr, i32 } + cleanup + %64 = extractvalue { ptr, i32 } %63, 0 + store ptr %64, ptr %10, align 8 + %65 = extractvalue { ptr, i32 } %63, 1 + store i32 %65, ptr %11, align 4 + invoke void @__cxa_end_catch() + to label %66 unwind label %98 + +66: ; preds = %62 + br label %93 + +67: ; preds = %44 + %68 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %68, i32 0, i32 2 + %70 = load ptr, ptr %8, align 8 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %69, ptr noundef %70) #15 + %71 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %72 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %71, i32 0, i32 3 + %73 = load ptr, ptr %9, align 8 + %74 = getelementptr inbounds ptr, ptr %73, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %72, ptr noundef %74) #15 + %75 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %76 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %75, i32 0, i32 2 + %77 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %76, i32 0, i32 1 + %78 = load ptr, ptr %77, align 8 + %79 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %80 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %79, i32 0, i32 2 + %81 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %80, i32 0, i32 0 + store ptr %78, ptr %81, align 8 + %82 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %82, i32 0, i32 3 + %84 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %83, i32 0, i32 1 + %85 = load ptr, ptr %84, align 8 + %86 = load i64, ptr %4, align 8 + %87 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %88 = urem i64 %86, %87 + %89 = getelementptr inbounds i32, ptr %85, i64 %88 + %90 = getelementptr inbounds %"class.std::_Deque_base", ptr %12, i32 0, i32 0 + %91 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %90, i32 0, i32 3 + %92 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %91, i32 0, i32 0 + store ptr %89, ptr %92, align 8 + ret void + +93: ; preds = %66 + %94 = load ptr, ptr %10, align 8 + %95 = load i32, ptr %11, align 4 + %96 = insertvalue { ptr, i32 } poison, ptr %94, 0 + %97 = insertvalue { ptr, i32 } %96, i32 %95, 1 + resume { ptr, i32 } %97 + +98: ; preds = %62 + %99 = landingpad { ptr, i32 } + catch ptr null + %100 = extractvalue { ptr, i32 } %99, 0 + call void @__clang_call_terminate(ptr %100) #16 + unreachable + +101: ; preds = %49 + unreachable +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 1 + store i64 0, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 2 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #15 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %3, i32 0, i32 3 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 1 + store ptr null, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 2 + store ptr null, ptr %6, align 8 + %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 3 + store ptr null, ptr %7, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = load ptr, ptr %5, align 8 + store ptr %11, ptr %7, align 8 + br label %12 + +12: ; preds = %20, %3 + %13 = load ptr, ptr %7, align 8 + %14 = load ptr, ptr %6, align 8 + %15 = icmp ult ptr %13, %14 + br i1 %15, label %16, label %32 + +16: ; preds = %12 + %17 = invoke noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %10) + to label %18 unwind label %23 + +18: ; preds = %16 + %19 = load ptr, ptr %7, align 8 + store ptr %17, ptr %19, align 8 + br label %20 + +20: ; preds = %18 + %21 = load ptr, ptr %7, align 8 + %22 = getelementptr inbounds ptr, ptr %21, i32 1 + store ptr %22, ptr %7, align 8 + br label %12, !llvm.loop !12 + +23: ; preds = %16 + %24 = landingpad { ptr, i32 } + catch ptr null + %25 = extractvalue { ptr, i32 } %24, 0 + store ptr %25, ptr %8, align 8 + %26 = extractvalue { ptr, i32 } %24, 1 + store i32 %26, ptr %9, align 4 + br label %27 + +27: ; preds = %23 + %28 = load ptr, ptr %8, align 8 + %29 = call ptr @__cxa_begin_catch(ptr %28) #15 + %30 = load ptr, ptr %5, align 8 + %31 = load ptr, ptr %7, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(ptr noundef nonnull align 8 dereferenceable(80) %10, ptr noundef %30, ptr noundef %31) #15 + invoke void @__cxa_rethrow() #18 + to label %47 unwind label %33 + +32: ; preds = %12 + br label %38 + +33: ; preds = %27 + %34 = landingpad { ptr, i32 } + cleanup + %35 = extractvalue { ptr, i32 } %34, 0 + store ptr %35, ptr %8, align 8 + %36 = extractvalue { ptr, i32 } %34, 1 + store i32 %36, ptr %9, align 4 + invoke void @__cxa_end_catch() + to label %37 unwind label %44 + +37: ; preds = %33 + br label %39 + +38: ; preds = %32 + ret void + +39: ; preds = %37 + %40 = load ptr, ptr %8, align 8 + %41 = load i32, ptr %9, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 + +44: ; preds = %33 + %45 = landingpad { ptr, i32 } + catch ptr null + %46 = extractvalue { ptr, i32 } %45, 0 + call void @__clang_call_terminate(ptr %46) #16 + unreachable + +47: ; preds = %27 + unreachable +} + +declare void @__cxa_rethrow() + +declare void @__cxa_end_catch() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %4, i32 0, i32 3 + %6 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 2 + %8 = call noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %7) #15 + ret i1 %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %1) #5 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp eq ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt5dequeIiSaIiEE4backEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca %"struct.std::_Deque_iterator", align 8 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %3, ptr noundef nonnull align 8 dereferenceable(80) %4) #15 + %5 = call noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt15_Deque_iteratorIiRiPiEmmEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #15 + %6 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #15 + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt15_Deque_iteratorIiRiPiEmmEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 1 + %7 = load ptr, ptr %6, align 8 + %8 = icmp eq ptr %5, %7 + br i1 %8, label %9, label %16 + +9: ; preds = %1 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 3 + %11 = load ptr, ptr %10, align 8 + %12 = getelementptr inbounds ptr, ptr %11, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %3, ptr noundef %12) #15 + %13 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 2 + %14 = load ptr, ptr %13, align 8 + %15 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + store ptr %14, ptr %15, align 8 + br label %16 + +16: ; preds = %9, %1 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %18 = load ptr, ptr %17, align 8 + %19 = getelementptr inbounds i32, ptr %18, i32 -1 + store ptr %19, ptr %17, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 3 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %13, i32 0, i32 1 + %15 = load ptr, ptr %14, align 8 + %16 = icmp ne ptr %11, %15 + br i1 %16, label %17, label %32 + +17: ; preds = %1 + %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %19 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %18, i32 0, i32 3 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 0 + %21 = load ptr, ptr %20, align 8 + %22 = getelementptr inbounds i32, ptr %21, i32 -1 + store ptr %22, ptr %20, align 8 + %23 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #15 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + store ptr %23, ptr %4, align 8 + store ptr %27, ptr %5, align 8 + %28 = load ptr, ptr %4, align 8 + %29 = load ptr, ptr %5, align 8 + store ptr %28, ptr %2, align 8 + store ptr %29, ptr %3, align 8 + %30 = load ptr, ptr %2, align 8 + %31 = load ptr, ptr %3, align 8 + br label %34 + +32: ; preds = %1 + invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %33 unwind label %35 + +33: ; preds = %32 + br label %34 + +34: ; preds = %33, %17 + ret void + +35: ; preds = %32 + %36 = landingpad { ptr, i32 } + catch ptr null + %37 = extractvalue { ptr, i32 } %36, 0 + call void @__clang_call_terminate(ptr %37) #16 + unreachable +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #5 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %8, i32 0, i32 3 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 1 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %7, ptr noundef %11) #15 + %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %12, i32 0, i32 3 + %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %14, i32 0, i32 3 + %16 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %15, i32 0, i32 3 + %17 = load ptr, ptr %16, align 8 + %18 = getelementptr inbounds ptr, ptr %17, i64 -1 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %13, ptr noundef %18) #15 + %19 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %20 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %19, i32 0, i32 3 + %21 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %20, i32 0, i32 2 + %22 = load ptr, ptr %21, align 8 + %23 = getelementptr inbounds i32, ptr %22, i64 -1 + %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 3 + %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 + store ptr %23, ptr %26, align 8 + %27 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %7) #15 + %28 = getelementptr inbounds %"class.std::_Deque_base", ptr %7, i32 0, i32 0 + %29 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %28, i32 0, i32 3 + %30 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %29, i32 0, i32 0 + %31 = load ptr, ptr %30, align 8 + store ptr %27, ptr %4, align 8 + store ptr %31, ptr %5, align 8 + %32 = load ptr, ptr %4, align 8 + %33 = load ptr, ptr %5, align 8 + store ptr %32, ptr %2, align 8 + store ptr %33, ptr %3, align 8 + %34 = load ptr, ptr %2, align 8 + %35 = load ptr, ptr %3, align 8 + 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #7 = { "frame-pointer"="all" "no-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 "frame-pointer"="all" "no-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 = { 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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: write) } +attributes #14 = { builtin allocsize(0) } +attributes #15 = { nounwind } +attributes #16 = { noreturn nounwind } +attributes #17 = { builtin nounwind } +attributes #18 = { noreturn } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/total-number-of-non-decreasing-numbers-with-n-digits.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/total-number-of-non-decreasing-numbers-with-n-digits.ll new file mode 100644 index 000000000..8961abe75 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/total-number-of-non-decreasing-numbers-with-n-digits.ll @@ -0,0 +1,217 @@ +; ModuleID = 'PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp' +source_filename = "PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_ZSt4cout = external global %"class.std::basic_ostream", align 8 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i64 @_Z18countNonDecreasingi(i32 noundef %0) #0 { + %2 = alloca i32, align 4 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i64, align 8 + %10 = alloca i32, align 4 + store i32 %0, ptr %2, align 4 + %11 = load i32, ptr %2, align 4 + %12 = add nsw i32 %11, 1 + %13 = zext i32 %12 to i64 + %14 = call ptr @llvm.stacksave() + store ptr %14, ptr %3, align 8 + %15 = mul nuw i64 10, %13 + %16 = alloca i64, i64 %15, align 16 + store i64 %13, ptr %4, align 8 + %17 = mul nuw i64 10, %13 + %18 = mul nuw i64 8, %17 + call void @llvm.memset.p0.i64(ptr align 16 %16, i8 0, i64 %18, i1 false) + store i32 0, ptr %5, align 4 + br label %19 + +19: ; preds = %28, %1 + %20 = load i32, ptr %5, align 4 + %21 = icmp slt i32 %20, 10 + br i1 %21, label %22, label %31 + +22: ; preds = %19 + %23 = load i32, ptr %5, align 4 + %24 = sext i32 %23 to i64 + %25 = mul nsw i64 %24, %13 + %26 = getelementptr inbounds i64, ptr %16, i64 %25 + %27 = getelementptr inbounds i64, ptr %26, i64 1 + store i64 1, ptr %27, align 8 + br label %28 + +28: ; preds = %22 + %29 = load i32, ptr %5, align 4 + %30 = add nsw i32 %29, 1 + store i32 %30, ptr %5, align 4 + br label %19, !llvm.loop !6 + +31: ; preds = %19 + store i32 0, ptr %6, align 4 + br label %32 + +32: ; preds = %72, %31 + %33 = load i32, ptr %6, align 4 + %34 = icmp sle i32 %33, 9 + br i1 %34, label %35, label %75 + +35: ; preds = %32 + store i32 2, ptr %7, align 4 + br label %36 + +36: ; preds = %68, %35 + %37 = load i32, ptr %7, align 4 + %38 = load i32, ptr %2, align 4 + %39 = icmp sle i32 %37, %38 + br i1 %39, label %40, label %71 + +40: ; preds = %36 + store i32 0, ptr %8, align 4 + br label %41 + +41: ; preds = %64, %40 + %42 = load i32, ptr %8, align 4 + %43 = load i32, ptr %6, align 4 + %44 = icmp sle i32 %42, %43 + br i1 %44, label %45, label %67 + +45: ; preds = %41 + %46 = load i32, ptr %8, align 4 + %47 = sext i32 %46 to i64 + %48 = mul nsw i64 %47, %13 + %49 = getelementptr inbounds i64, ptr %16, i64 %48 + %50 = load i32, ptr %7, align 4 + %51 = sub nsw i32 %50, 1 + %52 = sext i32 %51 to i64 + %53 = getelementptr inbounds i64, ptr %49, i64 %52 + %54 = load i64, ptr %53, align 8 + %55 = load i32, ptr %6, align 4 + %56 = sext i32 %55 to i64 + %57 = mul nsw i64 %56, %13 + %58 = getelementptr inbounds i64, ptr %16, i64 %57 + %59 = load i32, ptr %7, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds i64, ptr %58, i64 %60 + %62 = load i64, ptr %61, align 8 + %63 = add nsw i64 %62, %54 + store i64 %63, ptr %61, align 8 + br label %64 + +64: ; preds = %45 + %65 = load i32, ptr %8, align 4 + %66 = add nsw i32 %65, 1 + store i32 %66, ptr %8, align 4 + br label %41, !llvm.loop !8 + +67: ; preds = %41 + br label %68 + +68: ; preds = %67 + %69 = load i32, ptr %7, align 4 + %70 = add nsw i32 %69, 1 + store i32 %70, ptr %7, align 4 + br label %36, !llvm.loop !9 + +71: ; preds = %36 + br label %72 + +72: ; preds = %71 + %73 = load i32, ptr %6, align 4 + %74 = add nsw i32 %73, 1 + store i32 %74, ptr %6, align 4 + br label %32, !llvm.loop !10 + +75: ; preds = %32 + store i64 0, ptr %9, align 8 + store i32 0, ptr %10, align 4 + br label %76 + +76: ; preds = %90, %75 + %77 = load i32, ptr %10, align 4 + %78 = icmp slt i32 %77, 10 + br i1 %78, label %79, label %93 + +79: ; preds = %76 + %80 = load i32, ptr %10, align 4 + %81 = sext i32 %80 to i64 + %82 = mul nsw i64 %81, %13 + %83 = getelementptr inbounds i64, ptr %16, i64 %82 + %84 = load i32, ptr %2, align 4 + %85 = sext i32 %84 to i64 + %86 = getelementptr inbounds i64, ptr %83, i64 %85 + %87 = load i64, ptr %86, align 8 + %88 = load i64, ptr %9, align 8 + %89 = add nsw i64 %88, %87 + store i64 %89, ptr %9, align 8 + br label %90 + +90: ; preds = %79 + %91 = load i32, ptr %10, align 4 + %92 = add nsw i32 %91, 1 + store i32 %92, ptr %10, align 4 + br label %76, !llvm.loop !11 + +93: ; preds = %76 + %94 = load i64, ptr %9, align 8 + %95 = load ptr, ptr %3, align 8 + call void @llvm.stackrestore(ptr %95) + ret i64 %94 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #2 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + store i32 3, ptr %2, align 4 + %3 = load i32, ptr %2, align 4 + %4 = call noundef i64 @_Z18countNonDecreasingi(i32 noundef %3) + %5 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEx(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i64 noundef %4) + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEx(ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #4 + +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 = { nocallback nofree nosync nounwind willreturn } +attributes #2 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/tower-of-hanoi.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/tower-of-hanoi.ll new file mode 100644 index 000000000..2be8dee0c --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/tower-of-hanoi.ll @@ -0,0 +1,106 @@ +; 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" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 + +; 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) #0 { + %5 = alloca i32, align 4 + %6 = alloca i8, align 1 + %7 = alloca i8, align 1 + %8 = alloca i8, align 1 + store i32 %0, ptr %5, align 4 + store i8 %1, ptr %6, align 1 + store i8 %2, ptr %7, align 1 + store i8 %3, ptr %8, align 1 + %9 = load i32, ptr %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) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %13 = load i8, ptr %6, align 1 + %14 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(ptr noundef nonnull align 8 dereferenceable(8) %12, i8 noundef signext %13) + %15 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %14, ptr noundef @.str.1) + %16 = load i8, ptr %7, align 1 + %17 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(ptr noundef nonnull align 8 dereferenceable(8) %15, i8 noundef signext %16) + %18 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %17, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %40 + +19: ; preds = %4 + %20 = load i32, ptr %5, align 4 + %21 = sub nsw i32 %20, 1 + %22 = load i8, ptr %6, align 1 + %23 = load i8, ptr %8, align 1 + %24 = load i8, ptr %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) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + %26 = load i32, ptr %5, align 4 + %27 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %25, i32 noundef %26) + %28 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %27, ptr noundef @.str.3) + %29 = load i8, ptr %6, align 1 + %30 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(ptr noundef nonnull align 8 dereferenceable(8) %28, i8 noundef signext %29) + %31 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %30, ptr noundef @.str.1) + %32 = load i8, ptr %7, align 1 + %33 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(ptr noundef nonnull align 8 dereferenceable(8) %31, i8 noundef signext %32) + %34 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %33, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %35 = load i32, ptr %5, align 4 + %36 = sub nsw i32 %35, 1 + %37 = load i8, ptr %8, align 1 + %38 = load i8, ptr %7, align 1 + %39 = load i8, ptr %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) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(ptr noundef nonnull align 8 dereferenceable(8), i8 noundef signext) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 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, ptr %1, align 4 + store i32 4, ptr %2, align 4 + %3 = load i32, ptr %2, align 4 + call void @_Z12towerOfHanoiiccc(i32 noundef %3, i8 noundef signext 65, i8 noundef signext 67, i8 noundef signext 66) + ret i32 0 +} + +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 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/transitive-closure-of-a-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/transitive-closure-of-a-graph.ll similarity index 58% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/transitive-closure-of-a-graph.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/transitive-closure-of-a-graph.ll index d98f4c904..c11caeead 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/transitive-closure-of-a-graph.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/transitive-closure-of-a-graph.ll @@ -9,120 +9,120 @@ target triple = "x86_64-pc-linux-gnu" @__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: mustprogress noinline uwtable -define dso_local void @_Z17transitiveClosurePA4_i([4 x i32]* noundef %0) #0 { - %2 = alloca [4 x i32]*, align 8 +define dso_local void @_Z17transitiveClosurePA4_i(ptr noundef %0) #0 { + %2 = alloca ptr, align 8 %3 = alloca [4 x [4 x i32]], align 16 %4 = alloca i32, align 4 %5 = alloca i32, align 4 %6 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %2, align 8 - store i32 0, i32* %4, align 4 + store ptr %0, ptr %2, align 8 + store i32 0, ptr %4, align 4 br label %7 7: ; preds = %33, %1 - %8 = load i32, i32* %4, align 4 + %8 = load i32, ptr %4, align 4 %9 = icmp slt i32 %8, 4 br i1 %9, label %10, label %36 10: ; preds = %7 - store i32 0, i32* %5, align 4 + store i32 0, ptr %5, align 4 br label %11 11: ; preds = %29, %10 - %12 = load i32, i32* %5, align 4 + %12 = load i32, ptr %5, align 4 %13 = icmp slt i32 %12, 4 br i1 %13, label %14, label %32 14: ; preds = %11 - %15 = load [4 x i32]*, [4 x i32]** %2, align 8 - %16 = load i32, i32* %4, align 4 + %15 = load ptr, ptr %2, align 8 + %16 = load i32, ptr %4, align 4 %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds [4 x i32], [4 x i32]* %15, i64 %17 - %19 = load i32, i32* %5, align 4 + %18 = getelementptr inbounds [4 x i32], ptr %15, i64 %17 + %19 = load i32, ptr %5, align 4 %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [4 x i32], [4 x i32]* %18, i64 0, i64 %20 - %22 = load i32, i32* %21, align 4 - %23 = load i32, i32* %4, align 4 + %21 = getelementptr inbounds [4 x i32], ptr %18, i64 0, i64 %20 + %22 = load i32, ptr %21, align 4 + %23 = load i32, ptr %4, align 4 %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %24 - %26 = load i32, i32* %5, align 4 + %25 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 %24 + %26 = load i32, ptr %5, align 4 %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds [4 x i32], [4 x i32]* %25, i64 0, i64 %27 - store i32 %22, i32* %28, align 4 + %28 = getelementptr inbounds [4 x i32], ptr %25, i64 0, i64 %27 + store i32 %22, ptr %28, align 4 br label %29 29: ; preds = %14 - %30 = load i32, i32* %5, align 4 + %30 = load i32, ptr %5, align 4 %31 = add nsw i32 %30, 1 - store i32 %31, i32* %5, align 4 + store i32 %31, ptr %5, align 4 br label %11, !llvm.loop !6 32: ; preds = %11 br label %33 33: ; preds = %32 - %34 = load i32, i32* %4, align 4 + %34 = load i32, ptr %4, align 4 %35 = add nsw i32 %34, 1 - store i32 %35, i32* %4, align 4 + store i32 %35, ptr %4, align 4 br label %7, !llvm.loop !8 36: ; preds = %7 - store i32 0, i32* %6, align 4 + store i32 0, ptr %6, align 4 br label %37 37: ; preds = %94, %36 - %38 = load i32, i32* %6, align 4 + %38 = load i32, ptr %6, align 4 %39 = icmp slt i32 %38, 4 br i1 %39, label %40, label %97 40: ; preds = %37 - store i32 0, i32* %4, align 4 + store i32 0, ptr %4, align 4 br label %41 41: ; preds = %90, %40 - %42 = load i32, i32* %4, align 4 + %42 = load i32, ptr %4, align 4 %43 = icmp slt i32 %42, 4 br i1 %43, label %44, label %93 44: ; preds = %41 - store i32 0, i32* %5, align 4 + store i32 0, ptr %5, align 4 br label %45 45: ; preds = %86, %44 - %46 = load i32, i32* %5, align 4 + %46 = load i32, ptr %5, align 4 %47 = icmp slt i32 %46, 4 br i1 %47, label %48, label %89 48: ; preds = %45 - %49 = load i32, i32* %4, align 4 + %49 = load i32, ptr %4, align 4 %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %50 - %52 = load i32, i32* %5, align 4 + %51 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 %50 + %52 = load i32, ptr %5, align 4 %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds [4 x i32], [4 x i32]* %51, i64 0, i64 %53 - %55 = load i32, i32* %54, align 4 + %54 = getelementptr inbounds [4 x i32], ptr %51, i64 0, i64 %53 + %55 = load i32, ptr %54, align 4 %56 = icmp ne i32 %55, 0 br i1 %56, label %77, label %57 57: ; preds = %48 - %58 = load i32, i32* %4, align 4 + %58 = load i32, ptr %4, align 4 %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %59 - %61 = load i32, i32* %6, align 4 + %60 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 %59 + %61 = load i32, ptr %6, align 4 %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds [4 x i32], [4 x i32]* %60, i64 0, i64 %62 - %64 = load i32, i32* %63, align 4 + %63 = getelementptr inbounds [4 x i32], ptr %60, i64 0, i64 %62 + %64 = load i32, ptr %63, align 4 %65 = icmp ne i32 %64, 0 br i1 %65, label %66, label %75 66: ; preds = %57 - %67 = load i32, i32* %6, align 4 + %67 = load i32, ptr %6, align 4 %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %68 - %70 = load i32, i32* %5, align 4 + %69 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 %68 + %70 = load i32, ptr %5, align 4 %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds [4 x i32], [4 x i32]* %69, i64 0, i64 %71 - %73 = load i32, i32* %72, align 4 + %72 = getelementptr inbounds [4 x i32], ptr %69, i64 0, i64 %71 + %73 = load i32, ptr %72, align 4 %74 = icmp ne i32 %73, 0 br label %75 @@ -133,132 +133,131 @@ define dso_local void @_Z17transitiveClosurePA4_i([4 x i32]* noundef %0) #0 { 77: ; preds = %75, %48 %78 = phi i1 [ true, %48 ], [ %76, %75 ] %79 = zext i1 %78 to i32 - %80 = load i32, i32* %4, align 4 + %80 = load i32, ptr %4, align 4 %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %81 - %83 = load i32, i32* %5, align 4 + %82 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 %81 + %83 = load i32, ptr %5, align 4 %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds [4 x i32], [4 x i32]* %82, i64 0, i64 %84 - store i32 %79, i32* %85, align 4 + %85 = getelementptr inbounds [4 x i32], ptr %82, i64 0, i64 %84 + store i32 %79, ptr %85, align 4 br label %86 86: ; preds = %77 - %87 = load i32, i32* %5, align 4 + %87 = load i32, ptr %5, align 4 %88 = add nsw i32 %87, 1 - store i32 %88, i32* %5, align 4 + store i32 %88, ptr %5, align 4 br label %45, !llvm.loop !9 89: ; preds = %45 br label %90 90: ; preds = %89 - %91 = load i32, i32* %4, align 4 + %91 = load i32, ptr %4, align 4 %92 = add nsw i32 %91, 1 - store i32 %92, i32* %4, align 4 + store i32 %92, ptr %4, align 4 br label %41, !llvm.loop !10 93: ; preds = %41 br label %94 94: ; preds = %93 - %95 = load i32, i32* %6, align 4 + %95 = load i32, ptr %6, align 4 %96 = add nsw i32 %95, 1 - store i32 %96, i32* %6, align 4 + store i32 %96, ptr %6, align 4 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]* noundef %98) + %98 = getelementptr inbounds [4 x [4 x i32]], ptr %3, i64 0, i64 0 + call void @_Z13printSolutionPA4_i(ptr noundef %98) ret void } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z13printSolutionPA4_i([4 x i32]* noundef %0) #0 { - %2 = alloca [4 x i32]*, align 8 +define dso_local void @_Z13printSolutionPA4_i(ptr noundef %0) #0 { + %2 = alloca ptr, 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* noundef getelementptr inbounds ([59 x i8], [59 x i8]* @.str, i64 0, i64 0)) - store i32 0, i32* %3, align 4 + store ptr %0, ptr %2, align 8 + %5 = call i32 (ptr, ...) @printf(ptr noundef @.str) + store i32 0, ptr %3, align 4 br label %6 6: ; preds = %28, %1 - %7 = load i32, i32* %3, align 4 + %7 = load i32, ptr %3, align 4 %8 = icmp slt i32 %7, 4 br i1 %8, label %9, label %31 9: ; preds = %6 - store i32 0, i32* %4, align 4 + store i32 0, ptr %4, align 4 br label %10 10: ; preds = %23, %9 - %11 = load i32, i32* %4, align 4 + %11 = load i32, ptr %4, align 4 %12 = icmp slt i32 %11, 4 br i1 %12, label %13, label %26 13: ; preds = %10 - %14 = load [4 x i32]*, [4 x i32]** %2, align 8 - %15 = load i32, i32* %3, align 4 + %14 = load ptr, ptr %2, align 8 + %15 = load i32, ptr %3, align 4 %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds [4 x i32], [4 x i32]* %14, i64 %16 - %18 = load i32, i32* %4, align 4 + %17 = getelementptr inbounds [4 x i32], ptr %14, i64 %16 + %18 = load i32, ptr %4, align 4 %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds [4 x i32], [4 x i32]* %17, i64 0, i64 %19 - %21 = load i32, i32* %20, align 4 - %22 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0), i32 noundef %21) + %20 = getelementptr inbounds [4 x i32], ptr %17, i64 0, i64 %19 + %21 = load i32, ptr %20, align 4 + %22 = call i32 (ptr, ...) @printf(ptr noundef @.str.1, i32 noundef %21) br label %23 23: ; preds = %13 - %24 = load i32, i32* %4, align 4 + %24 = load i32, ptr %4, align 4 %25 = add nsw i32 %24, 1 - store i32 %25, i32* %4, align 4 + store i32 %25, ptr %4, align 4 br label %10, !llvm.loop !12 26: ; preds = %10 - %27 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.2, i64 0, i64 0)) + %27 = call i32 (ptr, ...) @printf(ptr noundef @.str.2) br label %28 28: ; preds = %26 - %29 = load i32, i32* %3, align 4 + %29 = load i32, ptr %3, align 4 %30 = add nsw i32 %29, 1 - store i32 %30, i32* %3, align 4 + store i32 %30, ptr %3, align 4 br label %6, !llvm.loop !13 31: ; preds = %6 ret void } -declare i32 @printf(i8* noundef, ...) #1 +declare i32 @printf(ptr noundef, ...) #1 ; 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]* noundef %4) + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.graph, i64 64, i1 false) + %3 = getelementptr inbounds [4 x [4 x i32]], ptr %2, i64 0, i64 0 + call void @_Z17transitiveClosurePA4_i(ptr noundef %3) ret i32 0 } -; 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: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 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 } +attributes #3 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } !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} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/trie-suffixes.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/trie-suffixes.ll new file mode 100644 index 000000000..ed45fb4f8 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/trie-suffixes.ll @@ -0,0 +1,1556 @@ +; ModuleID = 'PE-benchmarks/trie-suffixes.cpp' +source_filename = "PE-benchmarks/trie-suffixes.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } +%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } +%union.anon = type { i64, [8 x i8] } +%class.SuffixTrieNode = type { [256 x ptr], ptr } +%"struct.std::_List_iterator" = type { ptr } +%class.SuffixTrie = type { %class.SuffixTrieNode } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"class.std::allocator.0" = type { i8 } +%"struct.std::forward_iterator_tag" = type { i8 } +%"struct.std::__allocated_ptr" = type { ptr, ptr } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } +%struct._Guard = type { ptr } + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZN14SuffixTrieNodeC2Ev = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any + +$_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE = comdat any + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt15__new_allocatorIcED2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +$_ZNSt11char_traitsIcE6lengthEPKc = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any + +@_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 +@.str.3 = private unnamed_addr constant [16 x i8] c"Search for 'ee'\00", align 1 +@.str.4 = private unnamed_addr constant [3 x i8] c"ee\00", align 1 +@.str.5 = private unnamed_addr constant [19 x i8] c"\0ASearch for 'geek'\00", align 1 +@.str.6 = private unnamed_addr constant [5 x i8] c"geek\00", align 1 +@.str.7 = private unnamed_addr constant [19 x i8] c"\0ASearch for 'quiz'\00", align 1 +@.str.8 = private unnamed_addr constant [5 x i8] c"quiz\00", align 1 +@.str.9 = private unnamed_addr constant [23 x i8] c"\0ASearch for 'forgeeks'\00", align 1 +@.str.10 = private unnamed_addr constant [9 x i8] c"forgeeks\00", align 1 +@.str.11 = private unnamed_addr constant [50 x i8] c"basic_string: construction from null is not valid\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(ptr noundef nonnull align 8 dereferenceable(2056) %0, ptr noundef %1, i32 noundef %2) #0 align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i8, align 1 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca %"class.std::__cxx11::basic_string", align 8 + store ptr %0, ptr %4, align 8 + store i32 %2, ptr %5, align 4 + %10 = load ptr, ptr %4, align 8 + %11 = getelementptr inbounds %class.SuffixTrieNode, ptr %10, i32 0, i32 1 + %12 = load ptr, ptr %11, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %5) + %13 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #12 + %14 = icmp ugt i64 %13, 0 + br i1 %14, label %15, label %48 + +15: ; preds = %3 + %16 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 0) + %17 = load i8, ptr %16, align 1 + store i8 %17, ptr %6, align 1 + %18 = getelementptr inbounds %class.SuffixTrieNode, ptr %10, i32 0, i32 0 + %19 = load i8, ptr %6, align 1 + %20 = sext i8 %19 to i64 + %21 = getelementptr inbounds [256 x ptr], ptr %18, i64 0, i64 %20 + %22 = load ptr, ptr %21, align 8 + %23 = icmp eq ptr %22, null + br i1 %23, label %24, label %35 + +24: ; preds = %15 + %25 = call noalias noundef nonnull ptr @_Znwm(i64 noundef 2056) #13 + invoke void @_ZN14SuffixTrieNodeC2Ev(ptr noundef nonnull align 8 dereferenceable(2056) %25) + to label %26 unwind label %31 + +26: ; preds = %24 + %27 = getelementptr inbounds %class.SuffixTrieNode, ptr %10, i32 0, i32 0 + %28 = load i8, ptr %6, align 1 + %29 = sext i8 %28 to i64 + %30 = getelementptr inbounds [256 x ptr], ptr %27, i64 0, i64 %29 + store ptr %25, ptr %30, align 8 + br label %35 + +31: ; preds = %24 + %32 = landingpad { ptr, i32 } + cleanup + %33 = extractvalue { ptr, i32 } %32, 0 + store ptr %33, ptr %7, align 8 + %34 = extractvalue { ptr, i32 } %32, 1 + store i32 %34, ptr %8, align 4 + call void @_ZdlPv(ptr noundef %25) #14 + br label %49 + +35: ; preds = %26, %15 + %36 = getelementptr inbounds %class.SuffixTrieNode, ptr %10, i32 0, i32 0 + %37 = load i8, ptr %6, align 1 + %38 = sext i8 %37 to i64 + %39 = getelementptr inbounds [256 x ptr], ptr %36, i64 0, i64 %38 + %40 = load ptr, ptr %39, align 8 + call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(ptr sret(%"class.std::__cxx11::basic_string") align 8 %9, ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 1, i64 noundef -1) + %41 = load i32, ptr %5, align 4 + %42 = add nsw i32 %41, 1 + invoke void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(ptr noundef nonnull align 8 dereferenceable(2056) %40, ptr noundef %9, i32 noundef %42) + to label %43 unwind label %44 + +43: ; preds = %35 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #12 + br label %48 + +44: ; preds = %35 + %45 = landingpad { ptr, i32 } + cleanup + %46 = extractvalue { ptr, i32 } %45, 0 + store ptr %46, ptr %7, align 8 + %47 = extractvalue { ptr, i32 } %45, 1 + store i32 %47, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #12 + br label %49 + +48: ; preds = %43, %3 + ret void + +49: ; preds = %44, %31 + %50 = load ptr, ptr %7, align 8 + %51 = load i32, ptr %8, align 4 + %52 = insertvalue { ptr, i32 } poison, ptr %50, 0 + %53 = insertvalue { ptr, i32 } %52, i32 %51, 1 + resume { ptr, i32 } %53 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #12 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; Function Attrs: nounwind +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 + +declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #3 + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZN14SuffixTrieNodeC2Ev(ptr noundef nonnull align 8 dereferenceable(2056) %0) unnamed_addr #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %4 = load ptr, ptr %2, align 8 + %5 = call noalias noundef nonnull ptr @_Znwm(i64 noundef 24) #13 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %5) #12 + %6 = getelementptr inbounds %class.SuffixTrieNode, ptr %4, i32 0, i32 1 + store ptr %5, ptr %6, align 8 + store i32 0, ptr %3, align 4 + br label %7 + +7: ; preds = %15, %1 + %8 = load i32, ptr %3, align 4 + %9 = icmp slt i32 %8, 256 + br i1 %9, label %10, label %18 + +10: ; preds = %7 + %11 = getelementptr inbounds %class.SuffixTrieNode, ptr %4, i32 0, i32 0 + %12 = load i32, ptr %3, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds [256 x ptr], ptr %11, i64 0, i64 %13 + store ptr null, ptr %14, align 8 + br label %15 + +15: ; preds = %10 + %16 = load i32, ptr %3, align 4 + %17 = add nsw i32 %16, 1 + store i32 %17, ptr %3, align 4 + br label %7, !llvm.loop !6 + +18: ; preds = %7 + ret void +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #5 + +declare void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(ptr sret(%"class.std::__cxx11::basic_string") align 8, ptr noundef nonnull align 8 dereferenceable(32), i64 noundef, i64 noundef) #2 + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef ptr @_ZN14SuffixTrieNode6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %0, ptr noundef %1) #0 align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"class.std::__cxx11::basic_string", align 8 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #12 + %10 = icmp eq i64 %9, 0 + br i1 %10, label %11, label %14 + +11: ; preds = %2 + %12 = getelementptr inbounds %class.SuffixTrieNode, ptr %8, i32 0, i32 1 + %13 = load ptr, ptr %12, align 8 + store ptr %13, ptr %3, align 8 + br label %36 + +14: ; preds = %2 + %15 = getelementptr inbounds %class.SuffixTrieNode, ptr %8, i32 0, i32 0 + %16 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 0) + %17 = load i8, ptr %16, align 1 + %18 = sext i8 %17 to i64 + %19 = getelementptr inbounds [256 x ptr], ptr %15, i64 0, i64 %18 + %20 = load ptr, ptr %19, align 8 + %21 = icmp ne ptr %20, null + br i1 %21, label %22, label %35 + +22: ; preds = %14 + %23 = getelementptr inbounds %class.SuffixTrieNode, ptr %8, i32 0, i32 0 + %24 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 0) + %25 = load i8, ptr %24, align 1 + %26 = sext i8 %25 to i64 + %27 = getelementptr inbounds [256 x ptr], ptr %23, i64 0, i64 %26 + %28 = load ptr, ptr %27, align 8 + call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(ptr sret(%"class.std::__cxx11::basic_string") align 8 %5, ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 1, i64 noundef -1) + %29 = invoke noundef ptr @_ZN14SuffixTrieNode6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %28, ptr noundef %5) + to label %30 unwind label %31 + +30: ; preds = %22 + store ptr %29, ptr %3, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #12 + br label %36 + +31: ; preds = %22 + %32 = landingpad { ptr, i32 } + cleanup + %33 = extractvalue { ptr, i32 } %32, 0 + store ptr %33, ptr %6, align 8 + %34 = extractvalue { ptr, i32 } %32, 1 + store i32 %34, ptr %7, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #12 + br label %38 + +35: ; preds = %14 + store ptr null, ptr %3, align 8 + br label %36 + +36: ; preds = %35, %30, %11 + %37 = load ptr, ptr %3, align 8 + ret ptr %37 + +38: ; preds = %31 + %39 = load ptr, ptr %6, align 8 + %40 = load i32, ptr %7, align 4 + %41 = insertvalue { ptr, i32 } poison, ptr %39, 0 + %42 = insertvalue { ptr, i32 } %41, i32 %40, 1 + resume { ptr, i32 } %42 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %0, ptr noundef %1) #0 align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"class.std::__cxx11::basic_string", align 8 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca %"struct.std::_List_iterator", align 8 + %9 = alloca i32, align 4 + %10 = alloca %"struct.std::_List_iterator", align 8 + %11 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + %12 = load ptr, ptr %3, align 8 + %13 = getelementptr inbounds %class.SuffixTrie, ptr %12, i32 0, i32 0 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef nonnull align 8 dereferenceable(32) %1) + %14 = invoke noundef ptr @_ZN14SuffixTrieNode6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %13, ptr noundef %5) + to label %15 unwind label %21 + +15: ; preds = %2 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #12 + store ptr %14, ptr %4, align 8 + %16 = load ptr, ptr %4, align 8 + %17 = icmp eq ptr %16, null + br i1 %17, label %18, label %25 + +18: ; preds = %15 + %19 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %20 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %19, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %47 + +21: ; preds = %2 + %22 = landingpad { ptr, i32 } + cleanup + %23 = extractvalue { ptr, i32 } %22, 0 + store ptr %23, ptr %6, align 8 + %24 = extractvalue { ptr, i32 } %22, 1 + store i32 %24, ptr %7, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #12 + br label %48 + +25: ; preds = %15 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %8) #12 + %26 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #12 + %27 = trunc i64 %26 to i32 + store i32 %27, ptr %9, align 4 + %28 = load ptr, ptr %4, align 8 + %29 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %28) #12 + %30 = getelementptr inbounds %"struct.std::_List_iterator", ptr %10, i32 0, i32 0 + store ptr %29, ptr %30, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %10, i64 8, i1 false) + br label %31 + +31: ; preds = %44, %25 + %32 = load ptr, ptr %4, align 8 + %33 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %32) #12 + %34 = getelementptr inbounds %"struct.std::_List_iterator", ptr %11, i32 0, i32 0 + store ptr %33, ptr %34, align 8 + %35 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %8, ptr noundef nonnull align 8 dereferenceable(8) %11) #12 + br i1 %35, label %36, label %46 + +36: ; preds = %31 + %37 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + %38 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %8) #12 + %39 = load i32, ptr %38, align 4 + %40 = load i32, ptr %9, align 4 + %41 = sub nsw i32 %39, %40 + %42 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %37, i32 noundef %41) + %43 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %42, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + br label %44 + +44: ; preds = %36 + %45 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %8) #12 + br label %31, !llvm.loop !8 + +46: ; preds = %31 + br label %47 + +47: ; preds = %46, %18 + ret void + +48: ; preds = %21 + %49 = load ptr, ptr %6, align 8 + %50 = load i32, ptr %7, align 4 + %51 = insertvalue { ptr, i32 } poison, ptr %49, 0 + %52 = insertvalue { ptr, i32 } %51, i32 %50, 1 + resume { ptr, i32 } %52 +} + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #7 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #12 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #8 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #7 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #7 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #12 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #7 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #7 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +; Function Attrs: noinline norecurse uwtable +define dso_local noundef i32 @main() #9 personality ptr @__gxx_personality_v0 { + %1 = alloca ptr, align 8 + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca ptr, align 8 + %15 = alloca ptr, align 8 + %16 = alloca ptr, align 8 + %17 = alloca ptr, align 8 + %18 = alloca ptr, align 8 + %19 = alloca ptr, align 8 + %20 = alloca ptr, align 8 + %21 = alloca i32, align 4 + %22 = alloca %"class.std::__cxx11::basic_string", align 8 + %23 = alloca %"class.std::allocator.0", align 1 + %24 = alloca ptr, align 8 + %25 = alloca i32, align 4 + %26 = alloca %class.SuffixTrie, align 8 + %27 = alloca %"class.std::__cxx11::basic_string", align 8 + %28 = alloca %"class.std::__cxx11::basic_string", align 8 + %29 = alloca %"class.std::allocator.0", align 1 + %30 = alloca %"class.std::__cxx11::basic_string", align 8 + %31 = alloca %"class.std::allocator.0", align 1 + %32 = alloca %"class.std::__cxx11::basic_string", align 8 + %33 = alloca %"class.std::allocator.0", align 1 + %34 = alloca %"class.std::__cxx11::basic_string", align 8 + %35 = alloca %"class.std::allocator.0", align 1 + store i32 0, ptr %21, align 4 + store ptr %23, ptr %20, align 8 + %36 = load ptr, ptr %20, align 8 + store ptr %36, ptr %1, align 8 + %37 = load ptr, ptr %1, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %22, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %23) + to label %38 unwind label %79 + +38: ; preds = %0 + store ptr %23, ptr %15, align 8 + %39 = load ptr, ptr %15, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %39) #12 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %27, ptr noundef nonnull align 8 dereferenceable(32) %22) + to label %40 unwind label %84 + +40: ; preds = %38 + invoke void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %26, ptr noundef %27) + to label %41 unwind label %88 + +41: ; preds = %40 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %27) #12 + %42 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.3) + to label %43 unwind label %84 + +43: ; preds = %41 + %44 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %42, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + to label %45 unwind label %84 + +45: ; preds = %43 + store ptr %29, ptr %19, align 8 + %46 = load ptr, ptr %19, align 8 + store ptr %46, ptr %2, align 8 + %47 = load ptr, ptr %2, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %28, ptr noundef @.str.4, ptr noundef nonnull align 1 dereferenceable(1) %29) + to label %48 unwind label %92 + +48: ; preds = %45 + invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %26, ptr noundef %28) + to label %49 unwind label %96 + +49: ; preds = %48 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %28) #12 + store ptr %29, ptr %13, align 8 + %50 = load ptr, ptr %13, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %50) #12 + %51 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.5) + to label %52 unwind label %84 + +52: ; preds = %49 + %53 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %51, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + to label %54 unwind label %84 + +54: ; preds = %52 + store ptr %31, ptr %18, align 8 + %55 = load ptr, ptr %18, align 8 + store ptr %55, ptr %3, align 8 + %56 = load ptr, ptr %3, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %30, ptr noundef @.str.6, ptr noundef nonnull align 1 dereferenceable(1) %31) + to label %57 unwind label %102 + +57: ; preds = %54 + invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %26, ptr noundef %30) + to label %58 unwind label %106 + +58: ; preds = %57 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %30) #12 + store ptr %31, ptr %11, align 8 + %59 = load ptr, ptr %11, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %59) #12 + %60 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.7) + to label %61 unwind label %84 + +61: ; preds = %58 + %62 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %60, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + to label %63 unwind label %84 + +63: ; preds = %61 + store ptr %33, ptr %17, align 8 + %64 = load ptr, ptr %17, align 8 + store ptr %64, ptr %4, align 8 + %65 = load ptr, ptr %4, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %32, ptr noundef @.str.8, ptr noundef nonnull align 1 dereferenceable(1) %33) + to label %66 unwind label %112 + +66: ; preds = %63 + invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %26, ptr noundef %32) + to label %67 unwind label %116 + +67: ; preds = %66 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %32) #12 + store ptr %33, ptr %9, align 8 + %68 = load ptr, ptr %9, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %68) #12 + %69 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.9) + to label %70 unwind label %84 + +70: ; preds = %67 + %71 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %69, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + to label %72 unwind label %84 + +72: ; preds = %70 + store ptr %35, ptr %16, align 8 + %73 = load ptr, ptr %16, align 8 + store ptr %73, ptr %5, align 8 + %74 = load ptr, ptr %5, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %34, ptr noundef @.str.10, ptr noundef nonnull align 1 dereferenceable(1) %35) + to label %75 unwind label %122 + +75: ; preds = %72 + invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %26, ptr noundef %34) + to label %76 unwind label %126 + +76: ; preds = %75 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %34) #12 + store ptr %35, ptr %7, align 8 + %77 = load ptr, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %77) #12 + store i32 0, ptr %21, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %22) #12 + %78 = load i32, ptr %21, align 4 + ret i32 %78 + +79: ; preds = %0 + %80 = landingpad { ptr, i32 } + cleanup + %81 = extractvalue { ptr, i32 } %80, 0 + store ptr %81, ptr %24, align 8 + %82 = extractvalue { ptr, i32 } %80, 1 + store i32 %82, ptr %25, align 4 + store ptr %23, ptr %14, align 8 + %83 = load ptr, ptr %14, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %83) #12 + br label %133 + +84: ; preds = %70, %67, %61, %58, %52, %49, %43, %41, %38 + %85 = landingpad { ptr, i32 } + cleanup + %86 = extractvalue { ptr, i32 } %85, 0 + store ptr %86, ptr %24, align 8 + %87 = extractvalue { ptr, i32 } %85, 1 + store i32 %87, ptr %25, align 4 + br label %132 + +88: ; preds = %40 + %89 = landingpad { ptr, i32 } + cleanup + %90 = extractvalue { ptr, i32 } %89, 0 + store ptr %90, ptr %24, align 8 + %91 = extractvalue { ptr, i32 } %89, 1 + store i32 %91, ptr %25, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %27) #12 + br label %132 + +92: ; preds = %45 + %93 = landingpad { ptr, i32 } + cleanup + %94 = extractvalue { ptr, i32 } %93, 0 + store ptr %94, ptr %24, align 8 + %95 = extractvalue { ptr, i32 } %93, 1 + store i32 %95, ptr %25, align 4 + br label %100 + +96: ; preds = %48 + %97 = landingpad { ptr, i32 } + cleanup + %98 = extractvalue { ptr, i32 } %97, 0 + store ptr %98, ptr %24, align 8 + %99 = extractvalue { ptr, i32 } %97, 1 + store i32 %99, ptr %25, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %28) #12 + br label %100 + +100: ; preds = %96, %92 + store ptr %29, ptr %12, align 8 + %101 = load ptr, ptr %12, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %101) #12 + br label %132 + +102: ; preds = %54 + %103 = landingpad { ptr, i32 } + cleanup + %104 = extractvalue { ptr, i32 } %103, 0 + store ptr %104, ptr %24, align 8 + %105 = extractvalue { ptr, i32 } %103, 1 + store i32 %105, ptr %25, align 4 + br label %110 + +106: ; preds = %57 + %107 = landingpad { ptr, i32 } + cleanup + %108 = extractvalue { ptr, i32 } %107, 0 + store ptr %108, ptr %24, align 8 + %109 = extractvalue { ptr, i32 } %107, 1 + store i32 %109, ptr %25, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %30) #12 + br label %110 + +110: ; preds = %106, %102 + store ptr %31, ptr %10, align 8 + %111 = load ptr, ptr %10, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %111) #12 + br label %132 + +112: ; preds = %63 + %113 = landingpad { ptr, i32 } + cleanup + %114 = extractvalue { ptr, i32 } %113, 0 + store ptr %114, ptr %24, align 8 + %115 = extractvalue { ptr, i32 } %113, 1 + store i32 %115, ptr %25, align 4 + br label %120 + +116: ; preds = %66 + %117 = landingpad { ptr, i32 } + cleanup + %118 = extractvalue { ptr, i32 } %117, 0 + store ptr %118, ptr %24, align 8 + %119 = extractvalue { ptr, i32 } %117, 1 + store i32 %119, ptr %25, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %32) #12 + br label %120 + +120: ; preds = %116, %112 + store ptr %33, ptr %8, align 8 + %121 = load ptr, ptr %8, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %121) #12 + br label %132 + +122: ; preds = %72 + %123 = landingpad { ptr, i32 } + cleanup + %124 = extractvalue { ptr, i32 } %123, 0 + store ptr %124, ptr %24, align 8 + %125 = extractvalue { ptr, i32 } %123, 1 + store i32 %125, ptr %25, align 4 + br label %130 + +126: ; preds = %75 + %127 = landingpad { ptr, i32 } + cleanup + %128 = extractvalue { ptr, i32 } %127, 0 + store ptr %128, ptr %24, align 8 + %129 = extractvalue { ptr, i32 } %127, 1 + store i32 %129, ptr %25, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %34) #12 + br label %130 + +130: ; preds = %126, %122 + store ptr %35, ptr %6, align 8 + %131 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %131) #12 + br label %132 + +132: ; preds = %130, %120, %110, %100, %88, %84 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %22) #12 + br label %133 + +133: ; preds = %132, %79 + %134 = load ptr, ptr %24, align 8 + %135 = load i32, ptr %25, align 4 + %136 = insertvalue { ptr, i32 } poison, ptr %134, 0 + %137 = insertvalue { ptr, i32 } %136, i32 %135, 1 + resume { ptr, i32 } %137 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) unnamed_addr #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %11, i32 0, i32 0 + %13 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) + %14 = load ptr, ptr %6, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %12, ptr noundef %13, ptr noundef nonnull align 1 dereferenceable(1) %14) + %15 = load ptr, ptr %5, align 8 + %16 = icmp eq ptr %15, null + br i1 %16, label %17, label %23 + +17: ; preds = %3 + invoke void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.11) #15 + to label %18 unwind label %19 + +18: ; preds = %17 + unreachable + +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } + cleanup + %21 = extractvalue { ptr, i32 } %20, 0 + store ptr %21, ptr %7, align 8 + %22 = extractvalue { ptr, i32 } %20, 1 + store i32 %22, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %12) #12 + br label %32 + +23: ; preds = %3 + %24 = load ptr, ptr %5, align 8 + %25 = load ptr, ptr %5, align 8 + %26 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %25) + to label %27 unwind label %19 + +27: ; preds = %23 + %28 = getelementptr inbounds i8, ptr %24, i64 %26 + store ptr %28, ptr %9, align 8 + %29 = load ptr, ptr %5, align 8 + %30 = load ptr, ptr %9, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %29, ptr noundef %30) + to label %31 unwind label %19 + +31: ; preds = %27 + ret void + +32: ; preds = %19 + %33 = load ptr, ptr %7, align 8 + %34 = load i32, ptr %8, align 4 + %35 = insertvalue { ptr, i32 } poison, ptr %33, 0 + %36 = insertvalue { ptr, i32 } %35, i32 %34, 1 + resume { ptr, i32 } %36 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %0, ptr noundef %1) unnamed_addr #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca %"class.std::__cxx11::basic_string", align 8 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + %8 = load ptr, ptr %3, align 8 + %9 = getelementptr inbounds %class.SuffixTrie, ptr %8, i32 0, i32 0 + call void @_ZN14SuffixTrieNodeC2Ev(ptr noundef nonnull align 8 dereferenceable(2056) %9) + store i32 0, ptr %4, align 4 + br label %10 + +10: ; preds = %21, %2 + %11 = load i32, ptr %4, align 4 + %12 = sext i32 %11 to i64 + %13 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #12 + %14 = icmp ult i64 %12, %13 + br i1 %14, label %15, label %28 + +15: ; preds = %10 + %16 = getelementptr inbounds %class.SuffixTrie, ptr %8, i32 0, i32 0 + %17 = load i32, ptr %4, align 4 + %18 = sext i32 %17 to i64 + call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(ptr sret(%"class.std::__cxx11::basic_string") align 8 %5, ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %18, i64 noundef -1) + %19 = load i32, ptr %4, align 4 + invoke void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(ptr noundef nonnull align 8 dereferenceable(2056) %16, ptr noundef %5, i32 noundef %19) + to label %20 unwind label %24 + +20: ; preds = %15 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #12 + br label %21 + +21: ; preds = %20 + %22 = load i32, ptr %4, align 4 + %23 = add nsw i32 %22, 1 + store i32 %23, ptr %4, align 4 + br label %10, !llvm.loop !9 + +24: ; preds = %15 + %25 = landingpad { ptr, i32 } + cleanup + %26 = extractvalue { ptr, i32 } %25, 0 + store ptr %26, ptr %6, align 8 + %27 = extractvalue { ptr, i32 } %25, 1 + store i32 %27, ptr %7, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #12 + br label %29 + +28: ; preds = %10 + ret void + +29: ; preds = %24 + %30 = load ptr, ptr %6, align 8 + %31 = load i32, ptr %7, align 4 + %32 = insertvalue { ptr, i32 } poison, ptr %30, 0 + %33 = insertvalue { ptr, i32 } %32, i32 %31, 1 + resume { ptr, i32 } %33 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #12 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #12 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #12 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #12 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #7 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #0 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #12 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %16 = load ptr, ptr %9, align 8 + %17 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %16) + store ptr %17, ptr %11, align 8 + %18 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %16) #12 + store ptr %18, ptr %12, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %19, ptr noundef %20) #12 + %21 = load ptr, ptr %12, align 8 + %22 = load ptr, ptr %11, align 8 + %23 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %22) + to label %24 unwind label %35 + +24: ; preds = %2 + %25 = load ptr, ptr %10, align 8 + store ptr %21, ptr %6, align 8 + store ptr %23, ptr %7, align 8 + store ptr %25, ptr %8, align 8 + %26 = load ptr, ptr %6, align 8 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %8, align 8 + store ptr %26, ptr %3, align 8 + store ptr %27, ptr %4, align 8 + store ptr %28, ptr %5, align 8 + %29 = load ptr, ptr %3, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + %32 = load i32, ptr %31, align 4 + store i32 %32, ptr %30, align 4 + %33 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #12 + %34 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #12 + ret ptr %34 + +35: ; preds = %2 + %36 = landingpad { ptr, i32 } + cleanup + %37 = extractvalue { ptr, i32 } %36, 0 + store ptr %37, ptr %14, align 8 + %38 = extractvalue { ptr, i32 } %36, 1 + store i32 %38, ptr %15, align 4 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #12 + br label %39 + +39: ; preds = %35 + %40 = load ptr, ptr %14, align 8 + %41 = load i32, ptr %15, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #7 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #0 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #7 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #6 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #7 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #12 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #7 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #16 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #0 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #15 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #15 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #13 + ret ptr %20 +} + +; Function Attrs: noreturn +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #10 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #7 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #12 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #7 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #12 + call void @_ZSt9terminatev() #16 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #7 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #14 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef, ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 + +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #10 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %0) #7 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call i64 @strlen(ptr noundef %3) #12 + ret i64 %4 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca i64, align 8 + %15 = alloca %struct._Guard, align 8 + %16 = alloca ptr, align 8 + %17 = alloca i32, align 4 + store ptr %0, ptr %11, align 8 + store ptr %1, ptr %12, align 8 + store ptr %2, ptr %13, align 8 + %18 = load ptr, ptr %11, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %13, align 8 + store ptr %19, ptr %8, align 8 + store ptr %20, ptr %9, align 8 + %21 = load ptr, ptr %8, align 8 + %22 = load ptr, ptr %9, align 8 + store ptr %8, ptr %4, align 8 + store ptr %21, ptr %5, align 8 + store ptr %22, ptr %6, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %5, align 8 + %25 = ptrtoint ptr %23 to i64 + %26 = ptrtoint ptr %24 to i64 + %27 = sub i64 %25, %26 + store i64 %27, ptr %14, align 8 + %28 = load i64, ptr %14, align 8 + %29 = icmp ugt i64 %28, 15 + br i1 %29, label %30, label %33 + +30: ; preds = %3 + %31 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef nonnull align 8 dereferenceable(8) %14, i64 noundef 0) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef %31) + %32 = load i64, ptr %14, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %32) + br label %40 + +33: ; preds = %3 + store ptr %18, ptr %7, align 8 + %34 = load ptr, ptr %7, align 8 + %35 = invoke noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %34) + to label %39 unwind label %36 + +36: ; preds = %33 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #16 + unreachable + +39: ; preds = %33 + br label %40 + +40: ; preds = %39, %30 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef %18) + %41 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %18) + to label %42 unwind label %48 + +42: ; preds = %40 + %43 = load ptr, ptr %12, align 8 + %44 = load ptr, ptr %13, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %41, ptr noundef %43, ptr noundef %44) #12 + %45 = getelementptr inbounds %struct._Guard, ptr %15, i32 0, i32 0 + store ptr null, ptr %45, align 8 + %46 = load i64, ptr %14, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %46) + to label %47 unwind label %48 + +47: ; preds = %42 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #12 + ret void + +48: ; preds = %42, %40 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %16, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %17, align 4 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #12 + br label %52 + +52: ; preds = %48 + %53 = load ptr, ptr %16, align 8 + %54 = load i32, ptr %17, align 4 + %55 = insertvalue { ptr, i32 } poison, ptr %53, 0 + %56 = insertvalue { ptr, i32 } %55, i32 %54, 1 + resume { ptr, i32 } %56 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #12 + ret void +} + +; Function Attrs: nounwind +declare i64 @strlen(ptr noundef) #1 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #2 + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %struct._Guard, ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #1 + +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = icmp ne ptr %5, null + br i1 %6, label %7, label %11 + +7: ; preds = %1 + %8 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %9) + to label %10 unwind label %12 + +10: ; preds = %7 + br label %11 + +11: ; preds = %10, %1 + ret void + +12: ; preds = %7 + %13 = landingpad { ptr, i32 } + catch ptr null + %14 = extractvalue { ptr, i32 } %13, 0 + call void @__clang_call_terminate(ptr %14) #16 + unreachable +} + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +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 = { 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 #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 = { 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 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 #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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #9 = { 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 = { 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 #11 = { noinline noreturn 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 = { nounwind } +attributes #13 = { builtin allocsize(0) } +attributes #14 = { builtin nounwind } +attributes #15 = { noreturn } +attributes #16 = { noreturn nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/tug-of-war.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/tug-of-war.ll new file mode 100644 index 000000000..4f45d27e5 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/tug-of-war.ll @@ -0,0 +1,378 @@ +; ModuleID = 'PE-benchmarks/tug-of-war.cpp' +source_filename = "PE-benchmarks/tug-of-war.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 +@__const.main.arr = private unnamed_addr constant [11 x i32] [i32 23, i32 45, i32 -34, i32 12, i32 0, i32 98, i32 -99, i32 4, i32 189, i32 -1, i32 4], align 16 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z7TOWUtilPiiPbiS0_S_iii(ptr noundef %0, i32 noundef %1, ptr noundef %2, i32 noundef %3, ptr noundef %4, ptr noundef %5, i32 noundef %6, i32 noundef %7, i32 noundef %8) #0 { + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + %12 = alloca ptr, align 8 + %13 = alloca i32, align 4 + %14 = alloca ptr, align 8 + %15 = alloca ptr, align 8 + %16 = alloca i32, align 4 + %17 = alloca i32, align 4 + %18 = alloca i32, align 4 + %19 = alloca i32, align 4 + store ptr %0, ptr %10, align 8 + store i32 %1, ptr %11, align 4 + store ptr %2, ptr %12, align 8 + store i32 %3, ptr %13, align 4 + store ptr %4, ptr %14, align 8 + store ptr %5, ptr %15, align 8 + store i32 %6, ptr %16, align 4 + store i32 %7, ptr %17, align 4 + store i32 %8, ptr %18, align 4 + %20 = load i32, ptr %18, align 4 + %21 = load i32, ptr %11, align 4 + %22 = icmp eq i32 %20, %21 + br i1 %22, label %23, label %24 + +23: ; preds = %9 + br label %115 + +24: ; preds = %9 + %25 = load i32, ptr %11, align 4 + %26 = sdiv i32 %25, 2 + %27 = load i32, ptr %13, align 4 + %28 = sub nsw i32 %26, %27 + %29 = load i32, ptr %11, align 4 + %30 = load i32, ptr %18, align 4 + %31 = sub nsw i32 %29, %30 + %32 = icmp sgt i32 %28, %31 + br i1 %32, label %33, label %34 + +33: ; preds = %24 + br label %115 + +34: ; preds = %24 + %35 = load ptr, ptr %10, align 8 + %36 = load i32, ptr %11, align 4 + %37 = load ptr, ptr %12, align 8 + %38 = load i32, ptr %13, align 4 + %39 = load ptr, ptr %14, align 8 + %40 = load ptr, ptr %15, align 8 + %41 = load i32, ptr %16, align 4 + %42 = load i32, ptr %17, align 4 + %43 = load i32, ptr %18, align 4 + %44 = add nsw i32 %43, 1 + call void @_Z7TOWUtilPiiPbiS0_S_iii(ptr noundef %35, i32 noundef %36, ptr noundef %37, i32 noundef %38, ptr noundef %39, ptr noundef %40, i32 noundef %41, i32 noundef %42, i32 noundef %44) + %45 = load i32, ptr %13, align 4 + %46 = add nsw i32 %45, 1 + store i32 %46, ptr %13, align 4 + %47 = load i32, ptr %17, align 4 + %48 = load ptr, ptr %10, align 8 + %49 = load i32, ptr %18, align 4 + %50 = sext i32 %49 to i64 + %51 = getelementptr inbounds i32, ptr %48, i64 %50 + %52 = load i32, ptr %51, align 4 + %53 = add nsw i32 %47, %52 + store i32 %53, ptr %17, align 4 + %54 = load ptr, ptr %12, align 8 + %55 = load i32, ptr %18, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i8, ptr %54, i64 %56 + store i8 1, ptr %57, align 1 + %58 = load i32, ptr %13, align 4 + %59 = load i32, ptr %11, align 4 + %60 = sdiv i32 %59, 2 + %61 = icmp eq i32 %58, %60 + br i1 %61, label %62, label %99 + +62: ; preds = %34 + %63 = load i32, ptr %16, align 4 + %64 = sdiv i32 %63, 2 + %65 = load i32, ptr %17, align 4 + %66 = sub nsw i32 %64, %65 + %67 = call i32 @abs(i32 noundef %66) #6 + %68 = load ptr, ptr %15, align 8 + %69 = load i32, ptr %68, align 4 + %70 = icmp slt i32 %67, %69 + br i1 %70, label %71, label %98 + +71: ; preds = %62 + %72 = load i32, ptr %16, align 4 + %73 = sdiv i32 %72, 2 + %74 = load i32, ptr %17, align 4 + %75 = sub nsw i32 %73, %74 + %76 = call i32 @abs(i32 noundef %75) #6 + %77 = load ptr, ptr %15, align 8 + store i32 %76, ptr %77, align 4 + store i32 0, ptr %19, align 4 + br label %78 + +78: ; preds = %94, %71 + %79 = load i32, ptr %19, align 4 + %80 = load i32, ptr %11, align 4 + %81 = icmp slt i32 %79, %80 + br i1 %81, label %82, label %97 + +82: ; preds = %78 + %83 = load ptr, ptr %12, align 8 + %84 = load i32, ptr %19, align 4 + %85 = sext i32 %84 to i64 + %86 = getelementptr inbounds i8, ptr %83, i64 %85 + %87 = load i8, ptr %86, align 1 + %88 = trunc i8 %87 to i1 + %89 = load ptr, ptr %14, align 8 + %90 = load i32, ptr %19, align 4 + %91 = sext i32 %90 to i64 + %92 = getelementptr inbounds i8, ptr %89, i64 %91 + %93 = zext i1 %88 to i8 + store i8 %93, ptr %92, align 1 + br label %94 + +94: ; preds = %82 + %95 = load i32, ptr %19, align 4 + %96 = add nsw i32 %95, 1 + store i32 %96, ptr %19, align 4 + br label %78, !llvm.loop !6 + +97: ; preds = %78 + br label %98 + +98: ; preds = %97, %62 + br label %110 + +99: ; preds = %34 + %100 = load ptr, ptr %10, align 8 + %101 = load i32, ptr %11, align 4 + %102 = load ptr, ptr %12, align 8 + %103 = load i32, ptr %13, align 4 + %104 = load ptr, ptr %14, align 8 + %105 = load ptr, ptr %15, align 8 + %106 = load i32, ptr %16, align 4 + %107 = load i32, ptr %17, align 4 + %108 = load i32, ptr %18, align 4 + %109 = add nsw i32 %108, 1 + call void @_Z7TOWUtilPiiPbiS0_S_iii(ptr noundef %100, i32 noundef %101, ptr noundef %102, i32 noundef %103, ptr noundef %104, ptr noundef %105, i32 noundef %106, i32 noundef %107, i32 noundef %109) + br label %110 + +110: ; preds = %99, %98 + %111 = load ptr, ptr %12, align 8 + %112 = load i32, ptr %18, align 4 + %113 = sext i32 %112 to i64 + %114 = getelementptr inbounds i8, ptr %111, i64 %113 + store i8 0, ptr %114, align 1 + br label %115 + +115: ; preds = %110, %33, %23 + ret void +} + +; Function Attrs: nounwind willreturn memory(none) +declare i32 @abs(i32 noundef) #1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z8tugOfWarPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %12 = load i32, ptr %4, align 4 + %13 = sext i32 %12 to i64 + %14 = call noalias noundef nonnull ptr @_Znam(i64 noundef %13) #7 + store ptr %14, ptr %5, align 8 + %15 = load i32, ptr %4, align 4 + %16 = sext i32 %15 to i64 + %17 = call noalias noundef nonnull ptr @_Znam(i64 noundef %16) #7 + store ptr %17, ptr %6, align 8 + store i32 2147483647, ptr %7, align 4 + store i32 0, ptr %8, align 4 + store i32 0, ptr %9, align 4 + br label %18 + +18: ; preds = %38, %2 + %19 = load i32, ptr %9, align 4 + %20 = load i32, ptr %4, align 4 + %21 = icmp slt i32 %19, %20 + br i1 %21, label %22, label %41 + +22: ; preds = %18 + %23 = load ptr, ptr %3, align 8 + %24 = load i32, ptr %9, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds i32, ptr %23, i64 %25 + %27 = load i32, ptr %26, align 4 + %28 = load i32, ptr %8, align 4 + %29 = add nsw i32 %28, %27 + store i32 %29, ptr %8, align 4 + %30 = load ptr, ptr %6, align 8 + %31 = load i32, ptr %9, align 4 + %32 = sext i32 %31 to i64 + %33 = getelementptr inbounds i8, ptr %30, i64 %32 + store i8 0, ptr %33, align 1 + %34 = load ptr, ptr %5, align 8 + %35 = load i32, ptr %9, align 4 + %36 = sext i32 %35 to i64 + %37 = getelementptr inbounds i8, ptr %34, i64 %36 + store i8 0, ptr %37, align 1 + br label %38 + +38: ; preds = %22 + %39 = load i32, ptr %9, align 4 + %40 = add nsw i32 %39, 1 + store i32 %40, ptr %9, align 4 + br label %18, !llvm.loop !8 + +41: ; preds = %18 + %42 = load ptr, ptr %3, align 8 + %43 = load i32, ptr %4, align 4 + %44 = load ptr, ptr %5, align 8 + %45 = load ptr, ptr %6, align 8 + %46 = load i32, ptr %8, align 4 + call void @_Z7TOWUtilPiiPbiS0_S_iii(ptr noundef %42, i32 noundef %43, ptr noundef %44, i32 noundef 0, ptr noundef %45, ptr noundef %7, i32 noundef %46, i32 noundef 0, i32 noundef 0) + %47 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + store i32 0, ptr %10, align 4 + br label %48 + +48: ; preds = %70, %41 + %49 = load i32, ptr %10, align 4 + %50 = load i32, ptr %4, align 4 + %51 = icmp slt i32 %49, %50 + br i1 %51, label %52, label %73 + +52: ; preds = %48 + %53 = load ptr, ptr %6, align 8 + %54 = load i32, ptr %10, align 4 + %55 = sext i32 %54 to i64 + %56 = getelementptr inbounds i8, ptr %53, i64 %55 + %57 = load i8, ptr %56, align 1 + %58 = trunc i8 %57 to i1 + %59 = zext i1 %58 to i32 + %60 = icmp eq i32 %59, 1 + br i1 %60, label %61, label %69 + +61: ; preds = %52 + %62 = load ptr, ptr %3, align 8 + %63 = load i32, ptr %10, align 4 + %64 = sext i32 %63 to i64 + %65 = getelementptr inbounds i32, ptr %62, i64 %64 + %66 = load i32, ptr %65, align 4 + %67 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %66) + %68 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %67, ptr noundef @.str.1) + br label %69 + +69: ; preds = %61, %52 + br label %70 + +70: ; preds = %69 + %71 = load i32, ptr %10, align 4 + %72 = add nsw i32 %71, 1 + store i32 %72, ptr %10, align 4 + br label %48, !llvm.loop !9 + +73: ; preds = %48 + %74 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.2) + store i32 0, ptr %11, align 4 + br label %75 + +75: ; preds = %97, %73 + %76 = load i32, ptr %11, align 4 + %77 = load i32, ptr %4, align 4 + %78 = icmp slt i32 %76, %77 + br i1 %78, label %79, label %100 + +79: ; preds = %75 + %80 = load ptr, ptr %6, align 8 + %81 = load i32, ptr %11, align 4 + %82 = sext i32 %81 to i64 + %83 = getelementptr inbounds i8, ptr %80, i64 %82 + %84 = load i8, ptr %83, align 1 + %85 = trunc i8 %84 to i1 + %86 = zext i1 %85 to i32 + %87 = icmp eq i32 %86, 0 + br i1 %87, label %88, label %96 + +88: ; preds = %79 + %89 = load ptr, ptr %3, align 8 + %90 = load i32, ptr %11, align 4 + %91 = sext i32 %90 to i64 + %92 = getelementptr inbounds i32, ptr %89, i64 %91 + %93 = load i32, ptr %92, align 4 + %94 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %93) + %95 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %94, ptr noundef @.str.1) + br label %96 + +96: ; preds = %88, %79 + br label %97 + +97: ; preds = %96 + %98 = load i32, ptr %11, align 4 + %99 = add nsw i32 %98, 1 + store i32 %99, ptr %11, align 4 + br label %75, !llvm.loop !10 + +100: ; preds = %75 + ret void +} + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { + %1 = alloca i32, align 4 + %2 = alloca [11 x i32], align 16 + %3 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 44, i1 false) + store i32 11, ptr %3, align 4 + %4 = getelementptr inbounds [11 x i32], ptr %2, i64 0, i64 0 + %5 = load i32, ptr %3, align 4 + call void @_Z8tugOfWarPii(ptr noundef %4, i32 noundef %5) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 + +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 = { nounwind willreturn memory(none) "frame-pointer"="all" "no-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 = { 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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #6 = { nounwind willreturn memory(none) } +attributes #7 = { builtin allocsize(0) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm14/ugly-numbers.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/ugly-numbers.ll similarity index 71% rename from src/test-suite/PE-benchmarks-llfiles-llvm14/ugly-numbers.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm16/ugly-numbers.ll index 2f480e918..51b89394a 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm14/ugly-numbers.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/ugly-numbers.ll @@ -9,43 +9,43 @@ target triple = "x86_64-pc-linux-gnu" 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 - store i32 %1, i32* %4, align 4 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 br label %5 5: ; preds = %10, %2 - %6 = load i32, i32* %3, align 4 - %7 = load i32, i32* %4, align 4 + %6 = load i32, ptr %3, align 4 + %7 = load i32, ptr %4, align 4 %8 = srem i32 %6, %7 %9 = icmp eq i32 %8, 0 br i1 %9, label %10, label %14 10: ; preds = %5 - %11 = load i32, i32* %3, align 4 - %12 = load i32, i32* %4, align 4 + %11 = load i32, ptr %3, align 4 + %12 = load i32, ptr %4, align 4 %13 = sdiv i32 %11, %12 - store i32 %13, i32* %3, align 4 + store i32 %13, ptr %3, align 4 br label %5, !llvm.loop !6 14: ; preds = %5 - %15 = load i32, i32* %3, align 4 + %15 = load i32, ptr %3, align 4 ret i32 %15 } ; 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 + store i32 %0, ptr %2, align 4 + %3 = load i32, ptr %2, align 4 %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 + store i32 %4, ptr %2, align 4 + %5 = load i32, ptr %2, align 4 %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 + store i32 %6, ptr %2, align 4 + %7 = load i32, ptr %2, align 4 %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 + store i32 %8, ptr %2, align 4 + %9 = load i32, ptr %2, align 4 %10 = icmp eq i32 %9, 1 %11 = zext i1 %10 to i64 %12 = select i1 %10, i32 1, i32 0 @@ -57,37 +57,37 @@ 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 - store i32 %0, i32* %2, align 4 - store i32 1, i32* %3, align 4 - store i32 1, i32* %4, align 4 + store i32 %0, ptr %2, align 4 + store i32 1, ptr %3, align 4 + store i32 1, ptr %4, align 4 br label %5 5: ; preds = %18, %1 - %6 = load i32, i32* %2, align 4 - %7 = load i32, i32* %4, align 4 + %6 = load i32, ptr %2, align 4 + %7 = load i32, ptr %4, align 4 %8 = icmp sgt i32 %6, %7 br i1 %8, label %9, label %19 9: ; preds = %5 - %10 = load i32, i32* %3, align 4 + %10 = load i32, ptr %3, align 4 %11 = add nsw i32 %10, 1 - store i32 %11, i32* %3, align 4 - %12 = load i32, i32* %3, align 4 + store i32 %11, ptr %3, align 4 + %12 = load i32, ptr %3, align 4 %13 = call noundef i32 @_Z6isUglyi(i32 noundef %12) %14 = icmp ne i32 %13, 0 br i1 %14, label %15, label %18 15: ; preds = %9 - %16 = load i32, i32* %4, align 4 + %16 = load i32, ptr %4, align 4 %17 = add nsw i32 %16, 1 - store i32 %17, i32* %4, align 4 + store i32 %17, ptr %4, align 4 br label %18 18: ; preds = %15, %9 br label %5, !llvm.loop !8 19: ; preds = %5 - %20 = load i32, i32* %3, align 4 + %20 = load i32, ptr %3, align 4 ret i32 %20 } @@ -95,16 +95,16 @@ define dso_local noundef i32 @_Z12getNthUglyNoi(i32 noundef %0) #0 { 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 0, ptr %1, align 4 %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* noundef getelementptr inbounds ([22 x i8], [22 x i8]* @.str, i64 0, i64 0), i32 noundef %4) + store i32 %3, ptr %2, align 4 + %4 = load i32, ptr %2, align 4 + %5 = call i32 (ptr, ...) @printf(ptr noundef @.str, i32 noundef %4) %6 = call i32 @getchar() ret i32 0 } -declare i32 @printf(i8* noundef, ...) #2 +declare i32 @printf(ptr noundef, ...) #2 declare i32 @getchar() #2 @@ -116,11 +116,11 @@ attributes #2 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{i32 7, !"PIC Level", i32 2} +!1 = !{i32 8, !"PIC Level", i32 2} !2 = !{i32 7, !"PIE Level", i32 2} -!3 = !{i32 7, !"uwtable", i32 1} +!3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/union-find.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/union-find.ll new file mode 100644 index 000000000..3b02cfe57 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/union-find.ll @@ -0,0 +1,317 @@ +; ModuleID = 'PE-benchmarks/union-find.cpp' +source_filename = "PE-benchmarks/union-find.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, i32, ptr } +%class.Edge = type { i32, i32 } + +@_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 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef ptr @_Z11createGraphii(i32 noundef %0, i32 noundef %1) #0 { + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + store i32 %0, ptr %3, align 4 + store i32 %1, ptr %4, align 4 + %6 = call noalias noundef nonnull ptr @_Znwm(i64 noundef 16) #6 + call void @llvm.memset.p0.i64(ptr align 16 %6, i8 0, i64 16, i1 false) + store ptr %6, ptr %5, align 8 + %7 = load i32, ptr %3, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 0 + store i32 %7, ptr %9, align 8 + %10 = load i32, ptr %4, align 4 + %11 = load ptr, ptr %5, align 8 + %12 = getelementptr inbounds %class.Graph, ptr %11, i32 0, i32 1 + store i32 %10, ptr %12, align 4 + %13 = load ptr, ptr %5, align 8 + %14 = getelementptr inbounds %class.Graph, ptr %13, i32 0, i32 1 + %15 = load i32, ptr %14, align 4 + %16 = sext i32 %15 to i64 + %17 = mul i64 %16, 8 + %18 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %17, i64 8) + %19 = extractvalue { i64, i1 } %18, 1 + %20 = extractvalue { i64, i1 } %18, 0 + %21 = select i1 %19, i64 -1, i64 %20 + %22 = call noalias noundef nonnull ptr @_Znam(i64 noundef %21) #6 + %23 = load ptr, ptr %5, align 8 + %24 = getelementptr inbounds %class.Graph, ptr %23, i32 0, i32 2 + store ptr %22, ptr %24, align 8 + %25 = load ptr, ptr %5, align 8 + ret ptr %25 +} + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #1 + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) +declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #2 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #3 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z4findPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca i32, align 4 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + %6 = load ptr, ptr %4, align 8 + %7 = load i32, ptr %5, align 4 + %8 = sext i32 %7 to i64 + %9 = getelementptr inbounds i32, ptr %6, i64 %8 + %10 = load i32, ptr %9, align 4 + %11 = icmp eq i32 %10, -1 + br i1 %11, label %12, label %14 + +12: ; preds = %2 + %13 = load i32, ptr %5, align 4 + store i32 %13, ptr %3, align 4 + br label %22 + +14: ; preds = %2 + %15 = load ptr, ptr %4, align 8 + %16 = load ptr, ptr %4, align 8 + %17 = load i32, ptr %5, align 4 + %18 = sext i32 %17 to i64 + %19 = getelementptr inbounds i32, ptr %16, i64 %18 + %20 = load i32, ptr %19, align 4 + %21 = call noundef i32 @_Z4findPii(ptr noundef %15, i32 noundef %20) + store i32 %21, ptr %3, align 4 + br label %22 + +22: ; preds = %14, %12 + %23 = load i32, ptr %3, align 4 + ret i32 %23 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z5UnionPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %9 = load ptr, ptr %4, align 8 + %10 = load i32, ptr %5, align 4 + %11 = call noundef i32 @_Z4findPii(ptr noundef %9, i32 noundef %10) + store i32 %11, ptr %7, align 4 + %12 = load ptr, ptr %4, align 8 + %13 = load i32, ptr %6, align 4 + %14 = call noundef i32 @_Z4findPii(ptr noundef %12, i32 noundef %13) + store i32 %14, ptr %8, align 4 + %15 = load i32, ptr %7, align 4 + %16 = load i32, ptr %8, align 4 + %17 = icmp ne i32 %15, %16 + br i1 %17, label %18, label %24 + +18: ; preds = %3 + %19 = load i32, ptr %8, align 4 + %20 = load ptr, ptr %4, align 8 + %21 = load i32, ptr %7, align 4 + %22 = sext i32 %21 to i64 + %23 = getelementptr inbounds i32, ptr %20, i64 %22 + store i32 %19, ptr %23, align 4 + br label %24 + +24: ; preds = %18, %3 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z7isCycleP5Graph(ptr noundef %0) #0 { + %2 = alloca i32, align 4 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + %8 = load ptr, ptr %3, align 8 + %9 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 0 + %10 = load i32, ptr %9, align 8 + %11 = sext i32 %10 to i64 + %12 = mul i64 %11, 4 + %13 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %12, i64 4) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = extractvalue { i64, i1 } %13, 0 + %16 = select i1 %14, i64 -1, i64 %15 + %17 = call noalias noundef nonnull ptr @_Znam(i64 noundef %16) #6 + store ptr %17, ptr %4, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load ptr, ptr %3, align 8 + %20 = getelementptr inbounds %class.Graph, ptr %19, i32 0, i32 0 + %21 = load i32, ptr %20, align 8 + %22 = sext i32 %21 to i64 + %23 = mul i64 4, %22 + call void @llvm.memset.p0.i64(ptr align 4 %18, i8 -1, i64 %23, i1 false) + store i32 0, ptr %5, align 4 + br label %24 + +24: ; preds = %59, %1 + %25 = load i32, ptr %5, align 4 + %26 = load ptr, ptr %3, align 8 + %27 = getelementptr inbounds %class.Graph, ptr %26, i32 0, i32 1 + %28 = load i32, ptr %27, align 4 + %29 = icmp slt i32 %25, %28 + br i1 %29, label %30, label %62 + +30: ; preds = %24 + %31 = load ptr, ptr %4, align 8 + %32 = load ptr, ptr %3, align 8 + %33 = getelementptr inbounds %class.Graph, ptr %32, i32 0, i32 2 + %34 = load ptr, ptr %33, align 8 + %35 = load i32, ptr %5, align 4 + %36 = sext i32 %35 to i64 + %37 = getelementptr inbounds %class.Edge, ptr %34, i64 %36 + %38 = getelementptr inbounds %class.Edge, ptr %37, i32 0, i32 0 + %39 = load i32, ptr %38, align 4 + %40 = call noundef i32 @_Z4findPii(ptr noundef %31, i32 noundef %39) + store i32 %40, ptr %6, align 4 + %41 = load ptr, ptr %4, align 8 + %42 = load ptr, ptr %3, align 8 + %43 = getelementptr inbounds %class.Graph, ptr %42, i32 0, i32 2 + %44 = load ptr, ptr %43, align 8 + %45 = load i32, ptr %5, align 4 + %46 = sext i32 %45 to i64 + %47 = getelementptr inbounds %class.Edge, ptr %44, i64 %46 + %48 = getelementptr inbounds %class.Edge, ptr %47, i32 0, i32 1 + %49 = load i32, ptr %48, align 4 + %50 = call noundef i32 @_Z4findPii(ptr noundef %41, i32 noundef %49) + store i32 %50, ptr %7, align 4 + %51 = load i32, ptr %6, align 4 + %52 = load i32, ptr %7, align 4 + %53 = icmp eq i32 %51, %52 + br i1 %53, label %54, label %55 + +54: ; preds = %30 + store i32 1, ptr %2, align 4 + br label %63 + +55: ; preds = %30 + %56 = load ptr, ptr %4, align 8 + %57 = load i32, ptr %6, align 4 + %58 = load i32, ptr %7, align 4 + call void @_Z5UnionPiii(ptr noundef %56, i32 noundef %57, i32 noundef %58) + br label %59 + +59: ; preds = %55 + %60 = load i32, ptr %5, align 4 + %61 = add nsw i32 %60, 1 + store i32 %61, ptr %5, align 4 + br label %24, !llvm.loop !6 + +62: ; preds = %24 + store i32 0, ptr %2, align 4 + br label %63 + +63: ; preds = %62, %54 + %64 = load i32, ptr %2, align 4 + ret i32 %64 +} + +; 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 + %4 = alloca ptr, align 8 + store i32 0, ptr %1, align 4 + store i32 3, ptr %2, align 4 + store i32 3, ptr %3, align 4 + %5 = load i32, ptr %2, align 4 + %6 = load i32, ptr %3, align 4 + %7 = call noundef ptr @_Z11createGraphii(i32 noundef %5, i32 noundef %6) + store ptr %7, ptr %4, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %class.Graph, ptr %8, i32 0, i32 2 + %10 = load ptr, ptr %9, align 8 + %11 = getelementptr inbounds %class.Edge, ptr %10, i64 0 + %12 = getelementptr inbounds %class.Edge, ptr %11, i32 0, i32 0 + store i32 0, ptr %12, align 4 + %13 = load ptr, ptr %4, align 8 + %14 = getelementptr inbounds %class.Graph, ptr %13, i32 0, i32 2 + %15 = load ptr, ptr %14, align 8 + %16 = getelementptr inbounds %class.Edge, ptr %15, i64 0 + %17 = getelementptr inbounds %class.Edge, ptr %16, i32 0, i32 1 + store i32 1, ptr %17, align 4 + %18 = load ptr, ptr %4, align 8 + %19 = getelementptr inbounds %class.Graph, ptr %18, i32 0, i32 2 + %20 = load ptr, ptr %19, align 8 + %21 = getelementptr inbounds %class.Edge, ptr %20, i64 1 + %22 = getelementptr inbounds %class.Edge, ptr %21, i32 0, i32 0 + store i32 1, ptr %22, align 4 + %23 = load ptr, ptr %4, align 8 + %24 = getelementptr inbounds %class.Graph, ptr %23, i32 0, i32 2 + %25 = load ptr, ptr %24, align 8 + %26 = getelementptr inbounds %class.Edge, ptr %25, i64 1 + %27 = getelementptr inbounds %class.Edge, ptr %26, i32 0, i32 1 + store i32 2, ptr %27, align 4 + %28 = load ptr, ptr %4, align 8 + %29 = getelementptr inbounds %class.Graph, ptr %28, i32 0, i32 2 + %30 = load ptr, ptr %29, align 8 + %31 = getelementptr inbounds %class.Edge, ptr %30, i64 2 + %32 = getelementptr inbounds %class.Edge, ptr %31, i32 0, i32 0 + store i32 0, ptr %32, align 4 + %33 = load ptr, ptr %4, align 8 + %34 = getelementptr inbounds %class.Graph, ptr %33, i32 0, i32 2 + %35 = load ptr, ptr %34, align 8 + %36 = getelementptr inbounds %class.Edge, ptr %35, i64 2 + %37 = getelementptr inbounds %class.Edge, ptr %36, i32 0, i32 1 + store i32 2, ptr %37, align 4 + %38 = load ptr, ptr %4, align 8 + %39 = call noundef i32 @_Z7isCycleP5Graph(ptr noundef %38) + %40 = icmp ne i32 %39, 0 + br i1 %40, label %41, label %43 + +41: ; preds = %0 + %42 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + br label %45 + +43: ; preds = %0 + %44 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + br label %45 + +45: ; preds = %43, %41 + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #5 + +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 = { 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 #2 = { nocallback nofree nounwind willreturn memory(argmem: write) } +attributes #3 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { "frame-pointer"="all" "no-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, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm16/vertex-cover-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/vertex-cover-problem.ll new file mode 100644 index 000000000..37e664b6a --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/vertex-cover-problem.ll @@ -0,0 +1,874 @@ +; ModuleID = 'PE-benchmarks/vertex-cover-problem.cpp' +source_filename = "PE-benchmarks/vertex-cover-problem.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%class.Graph = type { i32, ptr } +%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } +%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } +%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } +%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } +%"struct.std::__detail::_List_node_base" = type { ptr, ptr } +%"struct.std::_List_iterator" = type { ptr } +%"struct.std::__allocated_ptr" = type { ptr, ptr } +%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> +%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } + +$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any + +$_ZNSt14_List_iteratorIiEC2Ev = comdat any + +$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any + +$_ZStneRKSt14_List_iteratorIiES2_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any + +$_ZNKSt14_List_iteratorIiEdeEv = comdat any + +$_ZNSt14_List_iteratorIiEppEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any + +$_ZNSt8__detail17_List_node_headerC2Ev = comdat any + +$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any + +$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any + +$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any + +$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any + +$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any + +$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any + +$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any + +$__clang_call_terminate = comdat any + +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any + +$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any + +@_ZSt4cout = external global %"class.std::basic_ostream", align 8 +@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 + +@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei + +; Function Attrs: noinline uwtable +define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #0 align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %5 = load ptr, ptr %3, align 8 + %6 = load i32, ptr %4, align 4 + %7 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 0 + store i32 %6, ptr %7, align 8 + %8 = load i32, ptr %4, align 4 + %9 = sext i32 %8 to i64 + %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) + %11 = extractvalue { i64, i1 } %10, 1 + %12 = extractvalue { i64, i1 } %10, 0 + %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) + %14 = extractvalue { i64, i1 } %13, 1 + %15 = or i1 %11, %14 + %16 = extractvalue { i64, i1 } %13, 0 + %17 = select i1 %15, i64 -1, i64 %16 + %18 = call noalias noundef nonnull ptr @_Znam(i64 noundef %17) #14 + store i64 %9, ptr %18, align 16 + %19 = getelementptr inbounds i8, ptr %18, i64 8 + %20 = icmp eq i64 %9, 0 + br i1 %20, label %27, label %21 + +21: ; preds = %2 + %22 = getelementptr inbounds %"class.std::__cxx11::list", ptr %19, i64 %9 + br label %23 + +23: ; preds = %23, %21 + %24 = phi ptr [ %19, %21 ], [ %25, %23 ] + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #15 + %25 = getelementptr inbounds %"class.std::__cxx11::list", ptr %24, i64 1 + %26 = icmp eq ptr %25, %22 + br i1 %26, label %27, label %23 + +27: ; preds = %2, %23 + %28 = getelementptr inbounds %class.Graph, ptr %5, i32 0, i32 1 + store ptr %19, ptr %28, align 8 + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #2 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #4 align 2 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %9 = load ptr, ptr %8, align 8 + %10 = load i32, ptr %5, align 4 + %11 = sext i32 %10 to i64 + %12 = getelementptr inbounds %"class.std::__cxx11::list", ptr %9, i64 %11 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 4 dereferenceable(4) %6) + %13 = getelementptr inbounds %class.Graph, ptr %7, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + %15 = load i32, ptr %6, align 4 + %16 = sext i32 %15 to i64 + %17 = getelementptr inbounds %"class.std::__cxx11::list", ptr %14, i64 %16 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %17, ptr noundef nonnull align 4 dereferenceable(4) %5) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %"struct.std::_List_iterator", align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + %7 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #15 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %11 = load ptr, ptr %10, align 8 + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %11, ptr noundef nonnull align 4 dereferenceable(4) %9) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph16printVertexCoverEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca i32, align 4 + %6 = alloca %"struct.std::_List_iterator", align 8 + %7 = alloca i32, align 4 + %8 = alloca %"struct.std::_List_iterator", align 8 + %9 = alloca %"struct.std::_List_iterator", align 8 + %10 = alloca i32, align 4 + %11 = alloca i32, align 4 + store ptr %0, ptr %2, align 8 + %12 = load ptr, ptr %2, align 8 + %13 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 0 + %14 = load i32, ptr %13, align 8 + %15 = zext i32 %14 to i64 + %16 = call ptr @llvm.stacksave() + store ptr %16, ptr %3, align 8 + %17 = alloca i8, i64 %15, align 16 + store i64 %15, ptr %4, align 8 + store i32 0, ptr %5, align 4 + br label %18 + +18: ; preds = %27, %1 + %19 = load i32, ptr %5, align 4 + %20 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 0 + %21 = load i32, ptr %20, align 8 + %22 = icmp slt i32 %19, %21 + br i1 %22, label %23, label %30 + +23: ; preds = %18 + %24 = load i32, ptr %5, align 4 + %25 = sext i32 %24 to i64 + %26 = getelementptr inbounds i8, ptr %17, i64 %25 + store i8 0, ptr %26, align 1 + br label %27 + +27: ; preds = %23 + %28 = load i32, ptr %5, align 4 + %29 = add nsw i32 %28, 1 + store i32 %29, ptr %5, align 4 + br label %18, !llvm.loop !6 + +30: ; preds = %18 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %6) #15 + store i32 0, ptr %7, align 4 + br label %31 + +31: ; preds = %83, %30 + %32 = load i32, ptr %7, align 4 + %33 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 0 + %34 = load i32, ptr %33, align 8 + %35 = icmp slt i32 %32, %34 + br i1 %35, label %36, label %86 + +36: ; preds = %31 + %37 = load i32, ptr %7, align 4 + %38 = sext i32 %37 to i64 + %39 = getelementptr inbounds i8, ptr %17, i64 %38 + %40 = load i8, ptr %39, align 1 + %41 = trunc i8 %40 to i1 + %42 = zext i1 %41 to i32 + %43 = icmp eq i32 %42, 0 + br i1 %43, label %44, label %82 + +44: ; preds = %36 + %45 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 1 + %46 = load ptr, ptr %45, align 8 + %47 = load i32, ptr %7, align 4 + %48 = sext i32 %47 to i64 + %49 = getelementptr inbounds %"class.std::__cxx11::list", ptr %46, i64 %48 + %50 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %49) #15 + %51 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + store ptr %50, ptr %51, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %6, ptr align 8 %8, i64 8, i1 false) + br label %52 + +52: ; preds = %79, %44 + %53 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 1 + %54 = load ptr, ptr %53, align 8 + %55 = load i32, ptr %7, align 4 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds %"class.std::__cxx11::list", ptr %54, i64 %56 + %58 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %57) #15 + %59 = getelementptr inbounds %"struct.std::_List_iterator", ptr %9, i32 0, i32 0 + store ptr %58, ptr %59, align 8 + %60 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %9) #15 + br i1 %60, label %61, label %81 + +61: ; preds = %52 + %62 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %6) #15 + %63 = load i32, ptr %62, align 4 + store i32 %63, ptr %10, align 4 + %64 = load i32, ptr %10, align 4 + %65 = sext i32 %64 to i64 + %66 = getelementptr inbounds i8, ptr %17, i64 %65 + %67 = load i8, ptr %66, align 1 + %68 = trunc i8 %67 to i1 + %69 = zext i1 %68 to i32 + %70 = icmp eq i32 %69, 0 + br i1 %70, label %71, label %78 + +71: ; preds = %61 + %72 = load i32, ptr %10, align 4 + %73 = sext i32 %72 to i64 + %74 = getelementptr inbounds i8, ptr %17, i64 %73 + store i8 1, ptr %74, align 1 + %75 = load i32, ptr %7, align 4 + %76 = sext i32 %75 to i64 + %77 = getelementptr inbounds i8, ptr %17, i64 %76 + store i8 1, ptr %77, align 1 + br label %81 + +78: ; preds = %61 + br label %79 + +79: ; preds = %78 + %80 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %6) #15 + br label %52, !llvm.loop !8 + +81: ; preds = %71, %52 + br label %82 + +82: ; preds = %81, %36 + br label %83 + +83: ; preds = %82 + %84 = load i32, ptr %7, align 4 + %85 = add nsw i32 %84, 1 + store i32 %85, ptr %7, align 4 + br label %31, !llvm.loop !9 + +86: ; preds = %31 + store i32 0, ptr %11, align 4 + br label %87 + +87: ; preds = %103, %86 + %88 = load i32, ptr %11, align 4 + %89 = getelementptr inbounds %class.Graph, ptr %12, i32 0, i32 0 + %90 = load i32, ptr %89, align 8 + %91 = icmp slt i32 %88, %90 + br i1 %91, label %92, label %106 + +92: ; preds = %87 + %93 = load i32, ptr %11, align 4 + %94 = sext i32 %93 to i64 + %95 = getelementptr inbounds i8, ptr %17, i64 %94 + %96 = load i8, ptr %95, align 1 + %97 = trunc i8 %96 to i1 + br i1 %97, label %98, label %102 + +98: ; preds = %92 + %99 = load i32, ptr %11, align 4 + %100 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %99) + %101 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %100, ptr noundef @.str) + br label %102 + +102: ; preds = %98, %92 + br label %103 + +103: ; preds = %102 + %104 = load i32, ptr %11, align 4 + %105 = add nsw i32 %104, 1 + store i32 %105, ptr %11, align 4 + br label %87, !llvm.loop !10 + +106: ; preds = %87 + %107 = load ptr, ptr %3, align 8 + call void @llvm.stackrestore(ptr %107) + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #5 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr null, ptr %4, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + %7 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %6, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %8) #15 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + ret ptr %10 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #7 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #6 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %8, i32 0, i32 0 + %10 = load ptr, ptr %9, align 8 + %11 = icmp ne ptr %7, %10 + ret i1 %11 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca %"struct.std::_List_iterator", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %4, i32 0, i32 0 + %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %6) #15 + %7 = getelementptr inbounds %"struct.std::_List_iterator", ptr %2, i32 0, i32 0 + %8 = load ptr, ptr %7, align 8 + ret ptr %8 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %5) + ret ptr %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %6, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 + store ptr %7, ptr %8, align 8 + ret ptr %3 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #8 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #8 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #5 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #9 { + %1 = alloca i32, align 4 + %2 = alloca %class.Graph, align 8 + store i32 0, ptr %1, align 4 + call void @_ZN5GraphC1Ei(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 7) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 4, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5, i32 noundef 6) + call void @_ZN5Graph16printVertexCoverEv(ptr 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(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + store ptr %5, ptr %3, align 8 + %6 = load ptr, ptr %3, align 8 + store ptr %6, ptr %2, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %5, i32 0, i32 0 + call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %8) #15 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #3 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #15 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 1 + store ptr %3, ptr %4, align 8 + %5 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %3, i32 0, i32 0 + store ptr %3, ptr %5, align 8 + %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %3, i32 0, i32 1 + store i64 0, ptr %6, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { + %4 = alloca %"struct.std::_List_iterator", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + store ptr %1, ptr %8, align 8 + store ptr %0, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 4 dereferenceable(4) %10) + store ptr %11, ptr %7, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = getelementptr inbounds %"struct.std::_List_iterator", ptr %4, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16) %12, ptr noundef %14) #15 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %9, i64 noundef 1) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 personality ptr @__gxx_personality_v0 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca %"struct.std::__allocated_ptr", align 8 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + store ptr %0, ptr %9, align 8 + store ptr %1, ptr %10, align 8 + %16 = load ptr, ptr %9, align 8 + %17 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %16) + store ptr %17, ptr %11, align 8 + %18 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %16) #15 + store ptr %18, ptr %12, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr noundef nonnull align 1 dereferenceable(1) %19, ptr noundef %20) #15 + %21 = load ptr, ptr %12, align 8 + %22 = load ptr, ptr %11, align 8 + %23 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %22) + to label %24 unwind label %35 + +24: ; preds = %2 + %25 = load ptr, ptr %10, align 8 + store ptr %21, ptr %6, align 8 + store ptr %23, ptr %7, align 8 + store ptr %25, ptr %8, align 8 + %26 = load ptr, ptr %6, align 8 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %8, align 8 + store ptr %26, ptr %3, align 8 + store ptr %27, ptr %4, align 8 + store ptr %28, ptr %5, align 8 + %29 = load ptr, ptr %3, align 8 + %30 = load ptr, ptr %4, align 8 + %31 = load ptr, ptr %5, align 8 + %32 = load i32, ptr %31, align 4 + store i32 %32, ptr %30, align 4 + %33 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %13, ptr null) #15 + %34 = load ptr, ptr %11, align 8 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #15 + ret ptr %34 + +35: ; preds = %2 + %36 = landingpad { ptr, i32 } + cleanup + %37 = extractvalue { ptr, i32 } %36, 0 + store ptr %37, ptr %14, align 8 + %38 = extractvalue { ptr, i32 } %36, 1 + store i32 %38, ptr %15, align 4 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %13) #15 + br label %39 + +39: ; preds = %35 + %40 = load ptr, ptr %14, align 8 + %41 = load i32, ptr %15, align 4 + %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 + %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 + resume { ptr, i32 } %43 +} + +; Function Attrs: nounwind +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(ptr noundef nonnull align 8 dereferenceable(16), ptr noundef) #10 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + store ptr %0, ptr %3, align 8 + store i64 %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load i64, ptr %4, align 8 + %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %7, i32 0, i32 0 + %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", ptr %8, i32 0, i32 1 + %10 = load i64, ptr %9, align 8 + %11 = add i64 %10, %6 + store i64 %11, ptr %9, align 8 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca i64, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %5, i32 0, i32 0 + store ptr %6, ptr %2, align 8 + store i64 1, ptr %3, align 8 + %7 = load ptr, ptr %2, align 8 + %8 = load i64, ptr %3, align 8 + %9 = call noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %7, i64 noundef %8, ptr noundef null) + ret ptr %9 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr noundef nonnull align 1 dereferenceable(1) %1, ptr noundef %2) unnamed_addr #3 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %5, align 8 + store ptr %9, ptr %8, align 8 + %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %7, i32 0, i32 1 + %11 = load ptr, ptr %6, align 8 + store ptr %11, ptr %10, align 8 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.std::_List_node", ptr %3, i32 0, i32 1 + %5 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %4) #15 + ret ptr %5 +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %0, ptr %1) #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %5, i32 0, i32 1 + store ptr null, ptr %6, align 8 + ret ptr %5 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %0) unnamed_addr #3 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca i64, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + %6 = load ptr, ptr %5, align 8 + %7 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %8 = load ptr, ptr %7, align 8 + %9 = icmp ne ptr %8, null + br i1 %9, label %10, label %19 + +10: ; preds = %1 + %11 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 0 + %12 = load ptr, ptr %11, align 8 + %13 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %6, i32 0, i32 1 + %14 = load ptr, ptr %13, align 8 + store ptr %12, ptr %2, align 8 + store ptr %14, ptr %3, align 8 + store i64 1, ptr %4, align 8 + %15 = load ptr, ptr %2, align 8 + %16 = load ptr, ptr %3, align 8 + %17 = load i64, ptr %4, align 8 + call void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %16, i64 noundef %17) + br label %18 + +18: ; preds = %10 + br label %19 + +19: ; preds = %18, %1 + ret void + +20: ; No predecessors! + %21 = landingpad { ptr, i32 } + catch ptr null + %22 = extractvalue { ptr, i32 } %21, 0 + call void @__clang_call_terminate(ptr %22) #16 + unreachable +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + %7 = alloca ptr, align 8 + store ptr %0, ptr %5, align 8 + store i64 %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load i64, ptr %6, align 8 + store ptr %8, ptr %4, align 8 + %10 = load ptr, ptr %4, align 8 + %11 = icmp ugt i64 %9, 384307168202282325 + br i1 %11, label %12, label %17 + +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 + +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #17 + unreachable + +17: ; preds = %3 + %18 = load i64, ptr %6, align 8 + %19 = mul i64 %18, 24 + %20 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %19) #14 + ret ptr %20 +} + +; Function Attrs: noreturn +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 noundef nonnull ptr @_Znwm(i64 noundef) #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %3) #15 + ret ptr %4 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(ptr noundef nonnull align 4 dereferenceable(4) %0) #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", ptr %3, i32 0, i32 0 + ret ptr %4 +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #12 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #15 + call void @_ZSt9terminatev() #16 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #6 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store i64 %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + call void @_ZdlPv(ptr noundef %8) #18 + ret void +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdlPv(ptr noundef) #13 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #3 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + 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 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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 = { 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 #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 = { nocallback 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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #8 = { "frame-pointer"="all" "no-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 = { 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 = { noinline noreturn 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 = { 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 = { nounwind } +attributes #16 = { noreturn nounwind } +attributes #17 = { noreturn } +attributes #18 = { builtin nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/weighted-job-scheduling.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/weighted-job-scheduling.ll new file mode 100644 index 000000000..a55aad41f --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/weighted-job-scheduling.ll @@ -0,0 +1,1766 @@ +; ModuleID = 'PE-benchmarks/weighted-job-scheduling.cpp' +source_filename = "PE-benchmarks/weighted-job-scheduling.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%struct.Job = type { i32, i32, i32 } +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%"struct.__gnu_cxx::__ops::_Iter_comp_iter" = type { ptr } +%"struct.__gnu_cxx::__ops::_Iter_comp_val" = type { ptr } +%"struct.__gnu_cxx::__ops::_Val_comp_iter" = type { ptr } + +$_ZSt4sortIP3JobPFbS0_S0_EEvT_S4_T0_ = comdat any + +$_ZSt3maxIiERKT_S2_S2_ = comdat any + +$_ZSt6__sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_ = comdat any + +$_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFb3JobS2_EEENS0_15_Iter_comp_iterIT_EES6_ = comdat any + +$_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_T1_ = comdat any + +$_ZSt4__lgIlET_S0_ = comdat any + +$_ZSt22__final_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_ = comdat any + +$_ZSt14__partial_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_ = comdat any + +$_ZSt27__unguarded_partition_pivotIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_T0_ = comdat any + +$_ZSt13__heap_selectIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_ = comdat any + +$_ZSt11__sort_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_ = comdat any + +$_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_ = comdat any + +$_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_ = comdat any + +$_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_RT0_ = comdat any + +$_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_T0_S9_T1_T2_ = comdat any + +$_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE = comdat any + +$_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFbS0_S0_EEEEvT_T0_S9_T1_RT2_ = comdat any + +$_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEclIPS2_S2_EEbT_RT0_ = comdat any + +$_ZSt22__move_median_to_firstIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_S8_T0_ = comdat any + +$_ZSt21__unguarded_partitionIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_S8_T0_ = comdat any + +$_ZSt9iter_swapIP3JobS1_EvT_T0_ = comdat any + +$_ZSt4swapI3JobENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_ = comdat any + +$_ZSt11__bit_widthImEiT_ = comdat any + +$_ZSt13__countl_zeroImEiT_ = comdat any + +$_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_ = comdat any + +$_ZSt26__unguarded_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_ = comdat any + +$_ZSt13move_backwardIP3JobS1_ET0_T_S3_S2_ = comdat any + +$_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_ = comdat any + +$_ZN9__gnu_cxx5__ops15__val_comp_iterIPFb3JobS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE = comdat any + +$_ZSt22__copy_move_backward_aILb1EP3JobS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__miter_baseIP3JobET_S2_ = comdat any + +$_ZSt12__niter_wrapIP3JobET_RKS2_S2_ = comdat any + +$_ZSt23__copy_move_backward_a1ILb1EP3JobS1_ET1_T0_S3_S2_ = comdat any + +$_ZSt12__niter_baseIP3JobET_S2_ = comdat any + +$_ZSt23__copy_move_backward_a2ILb1EP3JobS1_ET1_T0_S3_S2_ = comdat any + +$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI3JobS3_EEPT0_PT_S7_S5_ = comdat any + +$_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneI3JobS3_EEvPT_PT0_ = comdat any + +$_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEclIS2_PS2_EEbRT_T0_ = comdat any + +$_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE = comdat any + +$_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEC2ES4_ = comdat any + +@__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 global %"class.std::basic_ostream", align 8 +@.str = private unnamed_addr constant [23 x i8] c"The optimal profit is \00", align 1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z14jobComparataor3JobS_(i64 %0, i32 %1, i64 %2, i32 %3) #0 { + %5 = alloca %struct.Job, align 4 + %6 = alloca { i64, i32 }, align 4 + %7 = alloca %struct.Job, align 4 + %8 = alloca { i64, i32 }, align 4 + %9 = getelementptr inbounds { i64, i32 }, ptr %6, i32 0, i32 0 + store i64 %0, ptr %9, align 4 + %10 = getelementptr inbounds { i64, i32 }, ptr %6, i32 0, i32 1 + store i32 %1, ptr %10, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %5, ptr align 4 %6, i64 12, i1 false) + %11 = getelementptr inbounds { i64, i32 }, ptr %8, i32 0, i32 0 + store i64 %2, ptr %11, align 4 + %12 = getelementptr inbounds { i64, i32 }, ptr %8, i32 0, i32 1 + store i32 %3, ptr %12, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %7, ptr align 4 %8, i64 12, i1 false) + %13 = getelementptr inbounds %struct.Job, ptr %5, i32 0, i32 1 + %14 = load i32, ptr %13, align 4 + %15 = getelementptr inbounds %struct.Job, ptr %7, i32 0, i32 1 + %16 = load i32, ptr %15, align 4 + %17 = icmp slt i32 %14, %16 + ret i1 %17 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z17latestNonConflictP3Jobi(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca i32, align 4 + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + %7 = load i32, ptr %5, align 4 + %8 = sub nsw i32 %7, 1 + store i32 %8, ptr %6, align 4 + br label %9 + +9: ; preds = %29, %2 + %10 = load i32, ptr %6, align 4 + %11 = icmp sge i32 %10, 0 + br i1 %11, label %12, label %32 + +12: ; preds = %9 + %13 = load ptr, ptr %4, align 8 + %14 = load i32, ptr %6, align 4 + %15 = sext i32 %14 to i64 + %16 = getelementptr inbounds %struct.Job, ptr %13, i64 %15 + %17 = getelementptr inbounds %struct.Job, ptr %16, i32 0, i32 1 + %18 = load i32, ptr %17, align 4 + %19 = load ptr, ptr %4, align 8 + %20 = load i32, ptr %5, align 4 + %21 = sext i32 %20 to i64 + %22 = getelementptr inbounds %struct.Job, ptr %19, i64 %21 + %23 = getelementptr inbounds %struct.Job, ptr %22, i32 0, i32 0 + %24 = load i32, ptr %23, align 4 + %25 = icmp sle i32 %18, %24 + br i1 %25, label %26, label %28 + +26: ; preds = %12 + %27 = load i32, ptr %6, align 4 + store i32 %27, ptr %3, align 4 + br label %33 + +28: ; preds = %12 + br label %29 + +29: ; preds = %28 + %30 = load i32, ptr %6, align 4 + %31 = add nsw i32 %30, -1 + store i32 %31, ptr %6, align 4 + br label %9, !llvm.loop !6 + +32: ; preds = %9 + store i32 -1, ptr %3, align 4 + br label %33 + +33: ; preds = %32, %26 + %34 = load i32, ptr %3, align 4 + ret i32 %34 +} + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z13findMaxProfitP3Jobi(ptr noundef %0, i32 noundef %1) #2 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + %9 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %10 = load ptr, ptr %3, align 8 + %11 = load ptr, ptr %3, align 8 + %12 = load i32, ptr %4, align 4 + %13 = sext i32 %12 to i64 + %14 = getelementptr inbounds %struct.Job, ptr %11, i64 %13 + call void @_ZSt4sortIP3JobPFbS0_S0_EEvT_S4_T0_(ptr noundef %10, ptr noundef %14, ptr noundef @_Z14jobComparataor3JobS_) + %15 = load i32, ptr %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 noundef nonnull ptr @_Znam(i64 noundef %20) #9 + store ptr %21, ptr %5, align 8 + %22 = load ptr, ptr %3, align 8 + %23 = getelementptr inbounds %struct.Job, ptr %22, i64 0 + %24 = getelementptr inbounds %struct.Job, ptr %23, i32 0, i32 2 + %25 = load i32, ptr %24, align 4 + %26 = load ptr, ptr %5, align 8 + %27 = getelementptr inbounds i32, ptr %26, i64 0 + store i32 %25, ptr %27, align 4 + store i32 1, ptr %6, align 4 + br label %28 + +28: ; preds = %64, %2 + %29 = load i32, ptr %6, align 4 + %30 = load i32, ptr %4, align 4 + %31 = icmp slt i32 %29, %30 + br i1 %31, label %32, label %67 + +32: ; preds = %28 + %33 = load ptr, ptr %3, align 8 + %34 = load i32, ptr %6, align 4 + %35 = sext i32 %34 to i64 + %36 = getelementptr inbounds %struct.Job, ptr %33, i64 %35 + %37 = getelementptr inbounds %struct.Job, ptr %36, i32 0, i32 2 + %38 = load i32, ptr %37, align 4 + store i32 %38, ptr %7, align 4 + %39 = load ptr, ptr %3, align 8 + %40 = load i32, ptr %6, align 4 + %41 = call noundef i32 @_Z17latestNonConflictP3Jobi(ptr noundef %39, i32 noundef %40) + store i32 %41, ptr %8, align 4 + %42 = load i32, ptr %8, align 4 + %43 = icmp ne i32 %42, -1 + br i1 %43, label %44, label %52 + +44: ; preds = %32 + %45 = load ptr, ptr %5, align 8 + %46 = load i32, ptr %8, align 4 + %47 = sext i32 %46 to i64 + %48 = getelementptr inbounds i32, ptr %45, i64 %47 + %49 = load i32, ptr %48, align 4 + %50 = load i32, ptr %7, align 4 + %51 = add nsw i32 %50, %49 + store i32 %51, ptr %7, align 4 + br label %52 + +52: ; preds = %44, %32 + %53 = load ptr, ptr %5, align 8 + %54 = load i32, ptr %6, align 4 + %55 = sub nsw i32 %54, 1 + %56 = sext i32 %55 to i64 + %57 = getelementptr inbounds i32, ptr %53, i64 %56 + %58 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %7, ptr noundef nonnull align 4 dereferenceable(4) %57) + %59 = load i32, ptr %58, align 4 + %60 = load ptr, ptr %5, align 8 + %61 = load i32, ptr %6, align 4 + %62 = sext i32 %61 to i64 + %63 = getelementptr inbounds i32, ptr %60, i64 %62 + store i32 %59, ptr %63, align 4 + br label %64 + +64: ; preds = %52 + %65 = load i32, ptr %6, align 4 + %66 = add nsw i32 %65, 1 + store i32 %66, ptr %6, align 4 + br label %28, !llvm.loop !8 + +67: ; preds = %28 + %68 = load ptr, ptr %5, align 8 + %69 = load i32, ptr %4, align 4 + %70 = sub nsw i32 %69, 1 + %71 = sext i32 %70 to i64 + %72 = getelementptr inbounds i32, ptr %68, i64 %71 + %73 = load i32, ptr %72, align 4 + store i32 %73, ptr %9, align 4 + %74 = load ptr, ptr %5, align 8 + %75 = icmp eq ptr %74, null + br i1 %75, label %77, label %76 + +76: ; preds = %67 + call void @_ZdaPv(ptr noundef %74) #10 + br label %77 + +77: ; preds = %76, %67 + %78 = load i32, ptr %9, align 4 + ret i32 %78 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt4sortIP3JobPFbS0_S0_EEvT_S4_T0_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %4, align 8 + %9 = load ptr, ptr %5, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = call ptr @_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFb3JobS2_EEENS0_15_Iter_comp_iterIT_EES6_(ptr noundef %10) + %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %7, i32 0, i32 0 + store ptr %11, ptr %12, align 8 + %13 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %7, i32 0, i32 0 + %14 = load ptr, ptr %13, align 8 + call void @_ZSt6__sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(ptr noundef %8, ptr noundef %9, ptr %14) + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #3 + +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znam(i64 noundef) #4 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_ZSt3maxIiERKT_S2_S2_(ptr noundef nonnull align 4 dereferenceable(4) %0, ptr noundef nonnull align 4 dereferenceable(4) %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + %6 = load ptr, ptr %4, align 8 + %7 = load i32, ptr %6, align 4 + %8 = load ptr, ptr %5, align 8 + %9 = load i32, ptr %8, align 4 + %10 = icmp slt i32 %7, %9 + br i1 %10, label %11, label %13 + +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 + +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 + +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 +} + +; Function Attrs: nobuiltin nounwind +declare void @_ZdaPv(ptr noundef) #5 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { + %1 = alloca i32, align 4 + %2 = alloca [4 x %struct.Job], align 16 + %3 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.arr, i64 48, i1 false) + store i32 4, ptr %3, align 4 + %4 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %5 = getelementptr inbounds [4 x %struct.Job], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + %7 = call noundef i32 @_Z13findMaxProfitP3Jobi(ptr noundef %5, i32 noundef %6) + %8 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %7) + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #7 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #7 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt6__sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(ptr noundef %0, ptr noundef %1, ptr %2) #2 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %4, i32 0, i32 0 + store ptr %2, ptr %9, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + %10 = load ptr, ptr %5, align 8 + %11 = load ptr, ptr %6, align 8 + %12 = icmp ne ptr %10, %11 + br i1 %12, label %13, label %30 + +13: ; preds = %3 + %14 = load ptr, ptr %5, align 8 + %15 = load ptr, ptr %6, align 8 + %16 = load ptr, ptr %6, align 8 + %17 = load ptr, ptr %5, align 8 + %18 = ptrtoint ptr %16 to i64 + %19 = ptrtoint ptr %17 to i64 + %20 = sub i64 %18, %19 + %21 = sdiv exact i64 %20, 12 + %22 = call noundef i64 @_ZSt4__lgIlET_S0_(i64 noundef %21) + %23 = mul nsw i64 %22, 2 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %7, ptr align 8 %4, i64 8, i1 false) + %24 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %7, i32 0, i32 0 + %25 = load ptr, ptr %24, align 8 + call void @_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_T1_(ptr noundef %14, ptr noundef %15, i64 noundef %23, ptr %25) + %26 = load ptr, ptr %5, align 8 + %27 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %4, i64 8, i1 false) + %28 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %8, i32 0, i32 0 + %29 = load ptr, ptr %28, align 8 + call void @_ZSt22__final_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(ptr noundef %26, ptr noundef %27, ptr %29) + br label %30 + +30: ; preds = %13, %3 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local ptr @_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFb3JobS2_EEENS0_15_Iter_comp_iterIT_EES6_(ptr noundef %0) #2 comdat { + %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + call void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEC2ES4_(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %4) + %5 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %2, i32 0, i32 0 + %6 = load ptr, ptr %5, align 8 + ret ptr %6 +} + +; 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_(ptr noundef %0, ptr noundef %1, i64 noundef %2, ptr %3) #2 comdat { + %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %10 = alloca ptr, align 8 + %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %13 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %5, i32 0, i32 0 + store ptr %3, ptr %13, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + store i64 %2, ptr %8, align 8 + br label %14 + +14: ; preds = %31, %4 + %15 = load ptr, ptr %7, align 8 + %16 = load ptr, ptr %6, align 8 + %17 = ptrtoint ptr %15 to i64 + %18 = ptrtoint ptr %16 to i64 + %19 = sub i64 %17, %18 + %20 = sdiv exact i64 %19, 12 + %21 = icmp sgt i64 %20, 16 + br i1 %21, label %22, label %45 + +22: ; preds = %14 + %23 = load i64, ptr %8, align 8 + %24 = icmp eq i64 %23, 0 + br i1 %24, label %25, label %31 + +25: ; preds = %22 + %26 = load ptr, ptr %6, align 8 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %5, i64 8, i1 false) + %29 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %9, i32 0, i32 0 + %30 = load ptr, ptr %29, align 8 + call void @_ZSt14__partial_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_(ptr noundef %26, ptr noundef %27, ptr noundef %28, ptr %30) + br label %45 + +31: ; preds = %22 + %32 = load i64, ptr %8, align 8 + %33 = add nsw i64 %32, -1 + store i64 %33, ptr %8, align 8 + %34 = load ptr, ptr %6, align 8 + %35 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %11, ptr align 8 %5, i64 8, i1 false) + %36 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %11, i32 0, i32 0 + %37 = load ptr, ptr %36, align 8 + %38 = call noundef ptr @_ZSt27__unguarded_partition_pivotIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_T0_(ptr noundef %34, ptr noundef %35, ptr %37) + store ptr %38, ptr %10, align 8 + %39 = load ptr, ptr %10, align 8 + %40 = load ptr, ptr %7, align 8 + %41 = load i64, ptr %8, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %12, ptr align 8 %5, i64 8, i1 false) + %42 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %12, i32 0, i32 0 + %43 = load ptr, ptr %42, align 8 + call void @_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_T1_(ptr noundef %39, ptr noundef %40, i64 noundef %41, ptr %43) + %44 = load ptr, ptr %10, align 8 + store ptr %44, ptr %7, align 8 + br label %14, !llvm.loop !9 + +45: ; preds = %25, %14 + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt4__lgIlET_S0_(i64 noundef %0) #0 comdat { + %2 = alloca i64, align 8 + store i64 %0, ptr %2, align 8 + %3 = load i64, ptr %2, align 8 + %4 = call noundef i32 @_ZSt11__bit_widthImEiT_(i64 noundef %3) #11 + %5 = sub nsw i32 %4, 1 + %6 = sext i32 %5 to i64 + ret i64 %6 +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr %2) #2 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %4, i32 0, i32 0 + store ptr %2, ptr %10, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + %11 = load ptr, ptr %6, align 8 + %12 = load ptr, ptr %5, align 8 + %13 = ptrtoint ptr %11 to i64 + %14 = ptrtoint ptr %12 to i64 + %15 = sub i64 %13, %14 + %16 = sdiv exact i64 %15, 12 + %17 = icmp sgt i64 %16, 16 + br i1 %17, label %18, label %29 + +18: ; preds = %3 + %19 = load ptr, ptr %5, align 8 + %20 = load ptr, ptr %5, align 8 + %21 = getelementptr inbounds %struct.Job, ptr %20, i64 16 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %7, ptr align 8 %4, i64 8, i1 false) + %22 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %7, i32 0, i32 0 + %23 = load ptr, ptr %22, align 8 + call void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(ptr noundef %19, ptr noundef %21, ptr %23) + %24 = load ptr, ptr %5, align 8 + %25 = getelementptr inbounds %struct.Job, ptr %24, i64 16 + %26 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %4, i64 8, i1 false) + %27 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %8, i32 0, i32 0 + %28 = load ptr, ptr %27, align 8 + call void @_ZSt26__unguarded_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(ptr noundef %25, ptr noundef %26, ptr %28) + br label %34 + +29: ; preds = %3 + %30 = load ptr, ptr %5, align 8 + %31 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %4, i64 8, i1 false) + %32 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %9, i32 0, i32 0 + %33 = load ptr, ptr %32, align 8 + call void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(ptr noundef %30, ptr noundef %31, ptr %33) + br label %34 + +34: ; preds = %29, %18 + ret void +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr %3) #2 comdat { + %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %5, i32 0, i32 0 + store ptr %3, ptr %10, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + store ptr %2, ptr %8, align 8 + %11 = load ptr, ptr %6, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = load ptr, ptr %8, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %5, i64 8, i1 false) + %14 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %9, i32 0, i32 0 + %15 = load ptr, ptr %14, align 8 + call void @_ZSt13__heap_selectIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_(ptr noundef %11, ptr noundef %12, ptr noundef %13, ptr %15) + %16 = load ptr, ptr %6, align 8 + %17 = load ptr, ptr %7, align 8 + call void @_ZSt11__sort_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_(ptr noundef %16, ptr noundef %17, ptr noundef nonnull align 8 dereferenceable(8) %5) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt27__unguarded_partition_pivotIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_T0_(ptr noundef %0, ptr noundef %1, ptr %2) #2 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %4, i32 0, i32 0 + store ptr %2, ptr %10, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + %11 = load ptr, ptr %5, align 8 + %12 = load ptr, ptr %6, align 8 + %13 = load ptr, ptr %5, align 8 + %14 = ptrtoint ptr %12 to i64 + %15 = ptrtoint ptr %13 to i64 + %16 = sub i64 %14, %15 + %17 = sdiv exact i64 %16, 12 + %18 = sdiv i64 %17, 2 + %19 = getelementptr inbounds %struct.Job, ptr %11, i64 %18 + store ptr %19, ptr %7, align 8 + %20 = load ptr, ptr %5, align 8 + %21 = load ptr, ptr %5, align 8 + %22 = getelementptr inbounds %struct.Job, ptr %21, i64 1 + %23 = load ptr, ptr %7, align 8 + %24 = load ptr, ptr %6, align 8 + %25 = getelementptr inbounds %struct.Job, ptr %24, i64 -1 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %4, i64 8, i1 false) + %26 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %8, i32 0, i32 0 + %27 = load ptr, ptr %26, align 8 + call void @_ZSt22__move_median_to_firstIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_S8_T0_(ptr noundef %20, ptr noundef %22, ptr noundef %23, ptr noundef %25, ptr %27) + %28 = load ptr, ptr %5, align 8 + %29 = getelementptr inbounds %struct.Job, ptr %28, i64 1 + %30 = load ptr, ptr %6, align 8 + %31 = load ptr, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %4, i64 8, i1 false) + %32 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %9, i32 0, i32 0 + %33 = load ptr, ptr %32, align 8 + %34 = call noundef ptr @_ZSt21__unguarded_partitionIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_S8_T0_(ptr noundef %29, ptr noundef %30, ptr noundef %31, ptr %33) + ret ptr %34 +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr %3) #2 comdat { + %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %5, i32 0, i32 0 + store ptr %3, ptr %10, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + store ptr %2, ptr %8, align 8 + %11 = load ptr, ptr %6, align 8 + %12 = load ptr, ptr %7, align 8 + call void @_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_(ptr noundef %11, ptr noundef %12, ptr noundef nonnull align 8 dereferenceable(8) %5) + %13 = load ptr, ptr %7, align 8 + store ptr %13, ptr %9, align 8 + br label %14 + +14: ; preds = %27, %4 + %15 = load ptr, ptr %9, align 8 + %16 = load ptr, ptr %8, align 8 + %17 = icmp ult ptr %15, %16 + br i1 %17, label %18, label %30 + +18: ; preds = %14 + %19 = load ptr, ptr %9, align 8 + %20 = load ptr, ptr %6, align 8 + %21 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %5, ptr noundef %19, ptr noundef %20) + br i1 %21, label %22, label %26 + +22: ; preds = %18 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %7, align 8 + %25 = load ptr, ptr %9, align 8 + call void @_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_RT0_(ptr noundef %23, ptr noundef %24, ptr noundef %25, ptr noundef nonnull align 8 dereferenceable(8) %5) + br label %26 + +26: ; preds = %22, %18 + br label %27 + +27: ; preds = %26 + %28 = load ptr, ptr %9, align 8 + %29 = getelementptr inbounds %struct.Job, ptr %28, i32 1 + store ptr %29, ptr %9, align 8 + br label %14, !llvm.loop !10 + +30: ; preds = %14 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__sort_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_(ptr noundef %0, ptr noundef %1, ptr noundef nonnull align 8 dereferenceable(8) %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + br label %7 + +7: ; preds = %15, %3 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 12 + %14 = icmp sgt i64 %13, 1 + br i1 %14, label %15, label %22 + +15: ; preds = %7 + %16 = load ptr, ptr %5, align 8 + %17 = getelementptr inbounds %struct.Job, ptr %16, i32 -1 + store ptr %17, ptr %5, align 8 + %18 = load ptr, ptr %4, align 8 + %19 = load ptr, ptr %5, align 8 + %20 = load ptr, ptr %5, align 8 + %21 = load ptr, ptr %6, align 8 + call void @_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_RT0_(ptr noundef %18, ptr noundef %19, ptr noundef %20, ptr noundef nonnull align 8 dereferenceable(8) %21) + br label %7, !llvm.loop !11 + +22: ; preds = %7 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_(ptr noundef %0, ptr noundef %1, ptr noundef nonnull align 8 dereferenceable(8) %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + %8 = alloca i64, align 8 + %9 = alloca %struct.Job, align 4 + %10 = alloca %struct.Job, align 4 + %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %12 = alloca { i64, i32 }, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %13 = load ptr, ptr %5, align 8 + %14 = load ptr, ptr %4, align 8 + %15 = ptrtoint ptr %13 to i64 + %16 = ptrtoint ptr %14 to i64 + %17 = sub i64 %15, %16 + %18 = sdiv exact i64 %17, 12 + %19 = icmp slt i64 %18, 2 + br i1 %19, label %20, label %21 + +20: ; preds = %3 + br label %51 + +21: ; preds = %3 + %22 = load ptr, ptr %5, align 8 + %23 = load ptr, ptr %4, align 8 + %24 = ptrtoint ptr %22 to i64 + %25 = ptrtoint ptr %23 to i64 + %26 = sub i64 %24, %25 + %27 = sdiv exact i64 %26, 12 + store i64 %27, ptr %7, align 8 + %28 = load i64, ptr %7, align 8 + %29 = sub nsw i64 %28, 2 + %30 = sdiv i64 %29, 2 + store i64 %30, ptr %8, align 8 + br label %31 + +31: ; preds = %21, %48 + %32 = load ptr, ptr %4, align 8 + %33 = load i64, ptr %8, align 8 + %34 = getelementptr inbounds %struct.Job, ptr %32, i64 %33 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %9, ptr align 4 %34, i64 12, i1 false) + %35 = load ptr, ptr %4, align 8 + %36 = load i64, ptr %8, align 8 + %37 = load i64, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %10, ptr align 4 %9, i64 12, i1 false) + %38 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %11, ptr align 8 %38, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %12, ptr align 4 %10, i64 12, i1 false) + %39 = getelementptr inbounds { i64, i32 }, ptr %12, i32 0, i32 0 + %40 = load i64, ptr %39, align 4 + %41 = getelementptr inbounds { i64, i32 }, ptr %12, i32 0, i32 1 + %42 = load i32, ptr %41, align 4 + %43 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %11, i32 0, i32 0 + %44 = load ptr, ptr %43, align 8 + call void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_T0_S9_T1_T2_(ptr noundef %35, i64 noundef %36, i64 noundef %37, i64 %40, i32 %42, ptr %44) + %45 = load i64, ptr %8, align 8 + %46 = icmp eq i64 %45, 0 + br i1 %46, label %47, label %48 + +47: ; preds = %31 + br label %51 + +48: ; preds = %31 + %49 = load i64, ptr %8, align 8 + %50 = add nsw i64 %49, -1 + store i64 %50, ptr %8, align 8 + br label %31, !llvm.loop !12 + +51: ; preds = %47, %20 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1, ptr noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %struct.Job, align 4 + %8 = alloca %struct.Job, align 4 + %9 = alloca { i64, i32 }, align 4 + %10 = alloca { i64, i32 }, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %11, i32 0, i32 0 + %13 = load ptr, ptr %12, align 8 + %14 = load ptr, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %7, ptr align 4 %14, i64 12, i1 false) + %15 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %8, ptr align 4 %15, i64 12, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %9, ptr align 4 %7, i64 12, i1 false) + %16 = getelementptr inbounds { i64, i32 }, ptr %9, i32 0, i32 0 + %17 = load i64, ptr %16, align 4 + %18 = getelementptr inbounds { i64, i32 }, ptr %9, i32 0, i32 1 + %19 = load i32, ptr %18, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %10, ptr align 4 %8, i64 12, i1 false) + %20 = getelementptr inbounds { i64, i32 }, ptr %10, i32 0, i32 0 + %21 = load i64, ptr %20, align 4 + %22 = getelementptr inbounds { i64, i32 }, ptr %10, i32 0, i32 1 + %23 = load i32, ptr %22, align 4 + %24 = call noundef zeroext i1 %13(i64 %17, i32 %19, i64 %21, i32 %23) + ret i1 %24 +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 8 dereferenceable(8) %3) #2 comdat { + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca %struct.Job, align 4 + %10 = alloca %struct.Job, align 4 + %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %12 = alloca { i64, i32 }, align 4 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + store ptr %2, ptr %7, align 8 + store ptr %3, ptr %8, align 8 + %13 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %9, ptr align 4 %13, i64 12, i1 false) + %14 = load ptr, ptr %5, align 8 + %15 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %15, ptr align 4 %14, i64 12, i1 false) + %16 = load ptr, ptr %5, align 8 + %17 = load ptr, ptr %6, align 8 + %18 = load ptr, ptr %5, align 8 + %19 = ptrtoint ptr %17 to i64 + %20 = ptrtoint ptr %18 to i64 + %21 = sub i64 %19, %20 + %22 = sdiv exact i64 %21, 12 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %10, ptr align 4 %9, i64 12, i1 false) + %23 = load ptr, ptr %8, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %11, ptr align 8 %23, i64 8, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %12, ptr align 4 %10, i64 12, i1 false) + %24 = getelementptr inbounds { i64, i32 }, ptr %12, i32 0, i32 0 + %25 = load i64, ptr %24, align 4 + %26 = getelementptr inbounds { i64, i32 }, ptr %12, i32 0, i32 1 + %27 = load i32, ptr %26, align 4 + %28 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %11, i32 0, i32 0 + %29 = load ptr, ptr %28, align 8 + call void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_T0_S9_T1_T2_(ptr noundef %16, i64 noundef 0, i64 noundef %22, i64 %25, i32 %27, ptr %29) + ret void +} + +; 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_(ptr noundef %0, i64 noundef %1, i64 noundef %2, i64 %3, i32 %4, ptr %5) #2 comdat { + %7 = alloca %struct.Job, align 4 + %8 = alloca { i64, i32 }, align 4 + %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %10 = alloca ptr, align 8 + %11 = alloca i64, align 8 + %12 = alloca i64, align 8 + %13 = alloca i64, align 8 + %14 = alloca i64, align 8 + %15 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val", align 8 + %16 = alloca %struct.Job, align 4 + %17 = alloca { i64, i32 }, align 4 + %18 = getelementptr inbounds { i64, i32 }, ptr %8, i32 0, i32 0 + store i64 %3, ptr %18, align 4 + %19 = getelementptr inbounds { i64, i32 }, ptr %8, i32 0, i32 1 + store i32 %4, ptr %19, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %7, ptr align 4 %8, i64 12, i1 false) + %20 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %9, i32 0, i32 0 + store ptr %5, ptr %20, align 8 + store ptr %0, ptr %10, align 8 + store i64 %1, ptr %11, align 8 + store i64 %2, ptr %12, align 8 + %21 = load i64, ptr %11, align 8 + store i64 %21, ptr %13, align 8 + %22 = load i64, ptr %11, align 8 + store i64 %22, ptr %14, align 8 + br label %23 + +23: ; preds = %44, %6 + %24 = load i64, ptr %14, align 8 + %25 = load i64, ptr %12, align 8 + %26 = sub nsw i64 %25, 1 + %27 = sdiv i64 %26, 2 + %28 = icmp slt i64 %24, %27 + br i1 %28, label %29, label %52 + +29: ; preds = %23 + %30 = load i64, ptr %14, align 8 + %31 = add nsw i64 %30, 1 + %32 = mul nsw i64 2, %31 + store i64 %32, ptr %14, align 8 + %33 = load ptr, ptr %10, align 8 + %34 = load i64, ptr %14, align 8 + %35 = getelementptr inbounds %struct.Job, ptr %33, i64 %34 + %36 = load ptr, ptr %10, align 8 + %37 = load i64, ptr %14, align 8 + %38 = sub nsw i64 %37, 1 + %39 = getelementptr inbounds %struct.Job, ptr %36, i64 %38 + %40 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %9, ptr noundef %35, ptr noundef %39) + br i1 %40, label %41, label %44 + +41: ; preds = %29 + %42 = load i64, ptr %14, align 8 + %43 = add nsw i64 %42, -1 + store i64 %43, ptr %14, align 8 + br label %44 + +44: ; preds = %41, %29 + %45 = load ptr, ptr %10, align 8 + %46 = load i64, ptr %14, align 8 + %47 = getelementptr inbounds %struct.Job, ptr %45, i64 %46 + %48 = load ptr, ptr %10, align 8 + %49 = load i64, ptr %11, align 8 + %50 = getelementptr inbounds %struct.Job, ptr %48, i64 %49 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %50, ptr align 4 %47, i64 12, i1 false) + %51 = load i64, ptr %14, align 8 + store i64 %51, ptr %11, align 8 + br label %23, !llvm.loop !13 + +52: ; preds = %23 + %53 = load i64, ptr %12, align 8 + %54 = and i64 %53, 1 + %55 = icmp eq i64 %54, 0 + br i1 %55, label %56, label %75 + +56: ; preds = %52 + %57 = load i64, ptr %14, align 8 + %58 = load i64, ptr %12, align 8 + %59 = sub nsw i64 %58, 2 + %60 = sdiv i64 %59, 2 + %61 = icmp eq i64 %57, %60 + br i1 %61, label %62, label %75 + +62: ; preds = %56 + %63 = load i64, ptr %14, align 8 + %64 = add nsw i64 %63, 1 + %65 = mul nsw i64 2, %64 + store i64 %65, ptr %14, align 8 + %66 = load ptr, ptr %10, align 8 + %67 = load i64, ptr %14, align 8 + %68 = sub nsw i64 %67, 1 + %69 = getelementptr inbounds %struct.Job, ptr %66, i64 %68 + %70 = load ptr, ptr %10, align 8 + %71 = load i64, ptr %11, align 8 + %72 = getelementptr inbounds %struct.Job, ptr %70, i64 %71 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %72, ptr align 4 %69, i64 12, i1 false) + %73 = load i64, ptr %14, align 8 + %74 = sub nsw i64 %73, 1 + store i64 %74, ptr %11, align 8 + br label %75 + +75: ; preds = %62, %56, %52 + call void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef nonnull align 8 dereferenceable(8) %9) + %76 = load ptr, ptr %10, align 8 + %77 = load i64, ptr %11, align 8 + %78 = load i64, ptr %13, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %16, ptr align 4 %7, i64 12, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %17, ptr align 4 %16, i64 12, i1 false) + %79 = getelementptr inbounds { i64, i32 }, ptr %17, i32 0, i32 0 + %80 = load i64, ptr %79, align 4 + %81 = getelementptr inbounds { i64, i32 }, ptr %17, i32 0, i32 1 + %82 = load i32, ptr %81, align 4 + call void @_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFbS0_S0_EEEEvT_T0_S9_T1_RT2_(ptr noundef %76, i64 noundef %77, i64 noundef %78, i64 %80, i32 %82, ptr noundef nonnull align 8 dereferenceable(8) %15) + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) unnamed_addr #8 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + store ptr %9, ptr %6, align 8 + ret void +} + +; 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_(ptr noundef %0, i64 noundef %1, i64 noundef %2, i64 %3, i32 %4, ptr noundef nonnull align 8 dereferenceable(8) %5) #2 comdat { + %7 = alloca %struct.Job, align 4 + %8 = alloca { i64, i32 }, align 4 + %9 = alloca ptr, align 8 + %10 = alloca i64, align 8 + %11 = alloca i64, align 8 + %12 = alloca ptr, align 8 + %13 = alloca i64, align 8 + %14 = getelementptr inbounds { i64, i32 }, ptr %8, i32 0, i32 0 + store i64 %3, ptr %14, align 4 + %15 = getelementptr inbounds { i64, i32 }, ptr %8, i32 0, i32 1 + store i32 %4, ptr %15, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %7, ptr align 4 %8, i64 12, i1 false) + store ptr %0, ptr %9, align 8 + store i64 %1, ptr %10, align 8 + store i64 %2, ptr %11, align 8 + store ptr %5, ptr %12, align 8 + %16 = load i64, ptr %10, align 8 + %17 = sub nsw i64 %16, 1 + %18 = sdiv i64 %17, 2 + store i64 %18, ptr %13, align 8 + br label %19 + +19: ; preds = %31, %6 + %20 = load i64, ptr %10, align 8 + %21 = load i64, ptr %11, align 8 + %22 = icmp sgt i64 %20, %21 + br i1 %22, label %23, label %29 + +23: ; preds = %19 + %24 = load ptr, ptr %12, align 8 + %25 = load ptr, ptr %9, align 8 + %26 = load i64, ptr %13, align 8 + %27 = getelementptr inbounds %struct.Job, ptr %25, i64 %26 + %28 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEclIPS2_S2_EEbT_RT0_(ptr noundef nonnull align 8 dereferenceable(8) %24, ptr noundef %27, ptr noundef nonnull align 4 dereferenceable(12) %7) + br label %29 + +29: ; preds = %23, %19 + %30 = phi i1 [ false, %19 ], [ %28, %23 ] + br i1 %30, label %31, label %42 + +31: ; preds = %29 + %32 = load ptr, ptr %9, align 8 + %33 = load i64, ptr %13, align 8 + %34 = getelementptr inbounds %struct.Job, ptr %32, i64 %33 + %35 = load ptr, ptr %9, align 8 + %36 = load i64, ptr %10, align 8 + %37 = getelementptr inbounds %struct.Job, ptr %35, i64 %36 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %37, ptr align 4 %34, i64 12, i1 false) + %38 = load i64, ptr %13, align 8 + store i64 %38, ptr %10, align 8 + %39 = load i64, ptr %10, align 8 + %40 = sub nsw i64 %39, 1 + %41 = sdiv i64 %40, 2 + store i64 %41, ptr %13, align 8 + br label %19, !llvm.loop !14 + +42: ; preds = %29 + %43 = load ptr, ptr %9, align 8 + %44 = load i64, ptr %10, align 8 + %45 = getelementptr inbounds %struct.Job, ptr %43, i64 %44 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %45, ptr align 4 %7, i64 12, i1 false) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEclIPS2_S2_EEbT_RT0_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(12) %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %struct.Job, align 4 + %8 = alloca %struct.Job, align 4 + %9 = alloca { i64, i32 }, align 4 + %10 = alloca { i64, i32 }, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", ptr %11, i32 0, i32 0 + %13 = load ptr, ptr %12, align 8 + %14 = load ptr, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %7, ptr align 4 %14, i64 12, i1 false) + %15 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %8, ptr align 4 %15, i64 12, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %9, ptr align 4 %7, i64 12, i1 false) + %16 = getelementptr inbounds { i64, i32 }, ptr %9, i32 0, i32 0 + %17 = load i64, ptr %16, align 4 + %18 = getelementptr inbounds { i64, i32 }, ptr %9, i32 0, i32 1 + %19 = load i32, ptr %18, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %10, ptr align 4 %8, i64 12, i1 false) + %20 = getelementptr inbounds { i64, i32 }, ptr %10, i32 0, i32 0 + %21 = load i64, ptr %20, align 4 + %22 = getelementptr inbounds { i64, i32 }, ptr %10, i32 0, i32 1 + %23 = load i32, ptr %22, align 4 + %24 = call noundef zeroext i1 %13(i64 %17, i32 %19, i64 %21, i32 %23) + ret i1 %24 +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef %3, ptr %4) #2 comdat { + %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %6, i32 0, i32 0 + store ptr %4, ptr %11, align 8 + store ptr %0, ptr %7, align 8 + store ptr %1, ptr %8, align 8 + store ptr %2, ptr %9, align 8 + store ptr %3, ptr %10, align 8 + %12 = load ptr, ptr %8, align 8 + %13 = load ptr, ptr %9, align 8 + %14 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %12, ptr noundef %13) + br i1 %14, label %15, label %34 + +15: ; preds = %5 + %16 = load ptr, ptr %9, align 8 + %17 = load ptr, ptr %10, align 8 + %18 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %16, ptr noundef %17) + br i1 %18, label %19, label %22 + +19: ; preds = %15 + %20 = load ptr, ptr %7, align 8 + %21 = load ptr, ptr %9, align 8 + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(ptr noundef %20, ptr noundef %21) + br label %33 + +22: ; preds = %15 + %23 = load ptr, ptr %8, align 8 + %24 = load ptr, ptr %10, align 8 + %25 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %23, ptr noundef %24) + br i1 %25, label %26, label %29 + +26: ; preds = %22 + %27 = load ptr, ptr %7, align 8 + %28 = load ptr, ptr %10, align 8 + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(ptr noundef %27, ptr noundef %28) + br label %32 + +29: ; preds = %22 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %8, align 8 + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(ptr noundef %30, ptr noundef %31) + br label %32 + +32: ; preds = %29, %26 + br label %33 + +33: ; preds = %32, %19 + br label %53 + +34: ; preds = %5 + %35 = load ptr, ptr %8, align 8 + %36 = load ptr, ptr %10, align 8 + %37 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %35, ptr noundef %36) + br i1 %37, label %38, label %41 + +38: ; preds = %34 + %39 = load ptr, ptr %7, align 8 + %40 = load ptr, ptr %8, align 8 + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(ptr noundef %39, ptr noundef %40) + br label %52 + +41: ; preds = %34 + %42 = load ptr, ptr %9, align 8 + %43 = load ptr, ptr %10, align 8 + %44 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %42, ptr noundef %43) + br i1 %44, label %45, label %48 + +45: ; preds = %41 + %46 = load ptr, ptr %7, align 8 + %47 = load ptr, ptr %10, align 8 + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(ptr noundef %46, ptr noundef %47) + br label %51 + +48: ; preds = %41 + %49 = load ptr, ptr %7, align 8 + %50 = load ptr, ptr %9, align 8 + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(ptr noundef %49, ptr noundef %50) + br label %51 + +51: ; preds = %48, %45 + br label %52 + +52: ; preds = %51, %38 + br label %53 + +53: ; preds = %52, %33 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt21__unguarded_partitionIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_S8_T0_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr %3) #2 comdat { + %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %5, i32 0, i32 0 + store ptr %3, ptr %9, align 8 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + store ptr %2, ptr %8, align 8 + br label %10 + +10: ; preds = %4, %34 + br label %11 + +11: ; preds = %15, %10 + %12 = load ptr, ptr %6, align 8 + %13 = load ptr, ptr %8, align 8 + %14 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %5, ptr noundef %12, ptr noundef %13) + br i1 %14, label %15, label %18 + +15: ; preds = %11 + %16 = load ptr, ptr %6, align 8 + %17 = getelementptr inbounds %struct.Job, ptr %16, i32 1 + store ptr %17, ptr %6, align 8 + br label %11, !llvm.loop !15 + +18: ; preds = %11 + %19 = load ptr, ptr %7, align 8 + %20 = getelementptr inbounds %struct.Job, ptr %19, i32 -1 + store ptr %20, ptr %7, align 8 + br label %21 + +21: ; preds = %25, %18 + %22 = load ptr, ptr %8, align 8 + %23 = load ptr, ptr %7, align 8 + %24 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %5, ptr noundef %22, ptr noundef %23) + br i1 %24, label %25, label %28 + +25: ; preds = %21 + %26 = load ptr, ptr %7, align 8 + %27 = getelementptr inbounds %struct.Job, ptr %26, i32 -1 + store ptr %27, ptr %7, align 8 + br label %21, !llvm.loop !16 + +28: ; preds = %21 + %29 = load ptr, ptr %6, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = icmp ult ptr %29, %30 + br i1 %31, label %34, label %32 + +32: ; preds = %28 + %33 = load ptr, ptr %6, align 8 + ret ptr %33 + +34: ; preds = %28 + %35 = load ptr, ptr %6, align 8 + %36 = load ptr, ptr %7, align 8 + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(ptr noundef %35, ptr noundef %36) + %37 = load ptr, ptr %6, align 8 + %38 = getelementptr inbounds %struct.Job, ptr %37, i32 1 + store ptr %38, ptr %6, align 8 + br label %10, !llvm.loop !17 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZSt9iter_swapIP3JobS1_EvT_T0_(ptr noundef %0, ptr noundef %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = load ptr, ptr %4, align 8 + call void @_ZSt4swapI3JobENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_(ptr noundef nonnull align 4 dereferenceable(12) %5, ptr noundef nonnull align 4 dereferenceable(12) %6) #11 + ret void +} + +; 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_(ptr noundef nonnull align 4 dereferenceable(12) %0, ptr noundef nonnull align 4 dereferenceable(12) %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca %struct.Job, align 4 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %5, ptr align 4 %6, i64 12, i1 false) + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %3, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %8, ptr align 4 %7, i64 12, i1 false) + %9 = load ptr, ptr %4, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %9, ptr align 4 %5, i64 12, i1 false) + ret void +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32 @_ZSt11__bit_widthImEiT_(i64 noundef %0) #0 comdat { + %2 = alloca i64, align 8 + %3 = alloca i32, align 4 + store i64 %0, ptr %2, align 8 + store i32 64, ptr %3, align 4 + %4 = load i64, ptr %2, align 8 + %5 = call noundef i32 @_ZSt13__countl_zeroImEiT_(i64 noundef %4) #11 + %6 = sub nsw i32 64, %5 + ret i32 %6 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32 @_ZSt13__countl_zeroImEiT_(i64 noundef %0) #0 comdat { + %2 = alloca i32, align 4 + %3 = alloca i64, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store i64 %0, ptr %3, align 8 + store i32 64, ptr %4, align 4 + %9 = load i64, ptr %3, align 8 + %10 = icmp eq i64 %9, 0 + br i1 %10, label %11, label %12 + +11: ; preds = %1 + store i32 64, ptr %2, align 4 + br label %17 + +12: ; preds = %1 + store i32 64, ptr %5, align 4 + store i32 64, ptr %6, align 4 + store i32 32, ptr %7, align 4 + store i32 0, ptr %8, align 4 + %13 = load i64, ptr %3, align 8 + %14 = call i64 @llvm.ctlz.i64(i64 %13, i1 true) + %15 = trunc i64 %14 to i32 + %16 = sub nsw i32 %15, 0 + store i32 %16, ptr %2, align 4 + br label %17 + +17: ; preds = %12, %11 + %18 = load i32, ptr %2, align 4 + ret i32 %18 +} + +; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) +declare i64 @llvm.ctlz.i64(i64, i1 immarg) #3 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(ptr noundef %0, ptr noundef %1, ptr %2) #2 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca %struct.Job, align 4 + %9 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 + %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %11 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %4, i32 0, i32 0 + store ptr %2, ptr %11, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + %12 = load ptr, ptr %5, align 8 + %13 = load ptr, ptr %6, align 8 + %14 = icmp eq ptr %12, %13 + br i1 %14, label %15, label %16 + +15: ; preds = %3 + br label %47 + +16: ; preds = %3 + %17 = load ptr, ptr %5, align 8 + %18 = getelementptr inbounds %struct.Job, ptr %17, i64 1 + store ptr %18, ptr %7, align 8 + br label %19 + +19: ; preds = %44, %16 + %20 = load ptr, ptr %7, align 8 + %21 = load ptr, ptr %6, align 8 + %22 = icmp ne ptr %20, %21 + br i1 %22, label %23, label %47 + +23: ; preds = %19 + %24 = load ptr, ptr %7, align 8 + %25 = load ptr, ptr %5, align 8 + %26 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %4, ptr noundef %24, ptr noundef %25) + br i1 %26, label %27, label %35 + +27: ; preds = %23 + %28 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %8, ptr align 4 %28, i64 12, i1 false) + %29 = load ptr, ptr %5, align 8 + %30 = load ptr, ptr %7, align 8 + %31 = load ptr, ptr %7, align 8 + %32 = getelementptr inbounds %struct.Job, ptr %31, i64 1 + %33 = call noundef ptr @_ZSt13move_backwardIP3JobS1_ET0_T_S3_S2_(ptr noundef %29, ptr noundef %30, ptr noundef %32) + %34 = load ptr, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %34, ptr align 4 %8, i64 12, i1 false) + br label %43 + +35: ; preds = %23 + %36 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %10, ptr align 8 %4, i64 8, i1 false) + %37 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %10, i32 0, i32 0 + %38 = load ptr, ptr %37, align 8 + %39 = call ptr @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFb3JobS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(ptr %38) + %40 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %9, i32 0, i32 0 + store ptr %39, ptr %40, align 8 + %41 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %9, i32 0, i32 0 + %42 = load ptr, ptr %41, align 8 + call void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_(ptr noundef %36, ptr %42) + br label %43 + +43: ; preds = %35, %27 + br label %44 + +44: ; preds = %43 + %45 = load ptr, ptr %7, align 8 + %46 = getelementptr inbounds %struct.Job, ptr %45, i32 1 + store ptr %46, ptr %7, align 8 + br label %19, !llvm.loop !18 + +47: ; preds = %15, %19 + ret void +} + +; 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_(ptr noundef %0, ptr noundef %1, ptr %2) #2 comdat { + %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 + %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 + %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %4, i32 0, i32 0 + store ptr %2, ptr %10, align 8 + store ptr %0, ptr %5, align 8 + store ptr %1, ptr %6, align 8 + %11 = load ptr, ptr %5, align 8 + store ptr %11, ptr %7, align 8 + br label %12 + +12: ; preds = %24, %3 + %13 = load ptr, ptr %7, align 8 + %14 = load ptr, ptr %6, align 8 + %15 = icmp ne ptr %13, %14 + br i1 %15, label %16, label %27 + +16: ; preds = %12 + %17 = load ptr, ptr %7, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %4, i64 8, i1 false) + %18 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %9, i32 0, i32 0 + %19 = load ptr, ptr %18, align 8 + %20 = call ptr @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFb3JobS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(ptr %19) + %21 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %8, i32 0, i32 0 + store ptr %20, ptr %21, align 8 + %22 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %8, i32 0, i32 0 + %23 = load ptr, ptr %22, align 8 + call void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_(ptr noundef %17, ptr %23) + br label %24 + +24: ; preds = %16 + %25 = load ptr, ptr %7, align 8 + %26 = getelementptr inbounds %struct.Job, ptr %25, i32 1 + store ptr %26, ptr %7, align 8 + br label %12, !llvm.loop !19 + +27: ; preds = %12 + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt13move_backwardIP3JobS1_ET0_T_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__miter_baseIP3JobET_S2_(ptr noundef %7) + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__miter_baseIP3JobET_S2_(ptr noundef %9) + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt22__copy_move_backward_aILb1EP3JobS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %11) + ret ptr %12 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_(ptr noundef %0, ptr %1) #2 comdat { + %3 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 + %4 = alloca ptr, align 8 + %5 = alloca %struct.Job, align 4 + %6 = alloca ptr, align 8 + %7 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %3, i32 0, i32 0 + store ptr %1, ptr %7, align 8 + store ptr %0, ptr %4, align 8 + %8 = load ptr, ptr %4, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %5, ptr align 4 %8, i64 12, i1 false) + %9 = load ptr, ptr %4, align 8 + store ptr %9, ptr %6, align 8 + %10 = load ptr, ptr %6, align 8 + %11 = getelementptr inbounds %struct.Job, ptr %10, i32 -1 + store ptr %11, ptr %6, align 8 + br label %12 + +12: ; preds = %15, %2 + %13 = load ptr, ptr %6, align 8 + %14 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEclIS2_PS2_EEbRT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 4 dereferenceable(12) %5, ptr noundef %13) + br i1 %14, label %15, label %21 + +15: ; preds = %12 + %16 = load ptr, ptr %6, align 8 + %17 = load ptr, ptr %4, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %17, ptr align 4 %16, i64 12, i1 false) + %18 = load ptr, ptr %6, align 8 + store ptr %18, ptr %4, align 8 + %19 = load ptr, ptr %6, align 8 + %20 = getelementptr inbounds %struct.Job, ptr %19, i32 -1 + store ptr %20, ptr %6, align 8 + br label %12, !llvm.loop !20 + +21: ; preds = %12 + %22 = load ptr, ptr %4, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %22, ptr align 4 %5, i64 12, i1 false) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local ptr @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFb3JobS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(ptr %0) #2 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", ptr %3, i32 0, i32 0 + store ptr %0, ptr %4, align 8 + call void @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef nonnull align 8 dereferenceable(8) %3) + %5 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %2, i32 0, i32 0 + %6 = load ptr, ptr %5, align 8 + ret ptr %6 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb1EP3JobS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = call noundef ptr @_ZSt12__niter_baseIP3JobET_S2_(ptr noundef %7) #11 + %9 = load ptr, ptr %5, align 8 + %10 = call noundef ptr @_ZSt12__niter_baseIP3JobET_S2_(ptr noundef %9) #11 + %11 = load ptr, ptr %6, align 8 + %12 = call noundef ptr @_ZSt12__niter_baseIP3JobET_S2_(ptr noundef %11) #11 + %13 = call noundef ptr @_ZSt23__copy_move_backward_a1ILb1EP3JobS1_ET1_T0_S3_S2_(ptr noundef %8, ptr noundef %10, ptr noundef %12) + %14 = call noundef ptr @_ZSt12__niter_wrapIP3JobET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef %13) + ret ptr %14 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIP3JobET_S2_(ptr noundef %0) #0 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIP3JobET_RKS2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) #0 comdat { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + ret ptr %5 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb1EP3JobS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZSt23__copy_move_backward_a2ILb1EP3JobS1_ET1_T0_S3_S2_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIP3JobET_S2_(ptr noundef %0) #0 comdat { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret ptr %3 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb1EP3JobS1_ET1_T0_S3_S2_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %4, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %6, align 8 + %10 = call noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI3JobS3_EEPT0_PT_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + ret ptr %10 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI3JobS3_EEPT0_PT_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca i64, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %8 = load ptr, ptr %5, align 8 + %9 = load ptr, ptr %4, align 8 + %10 = ptrtoint ptr %8 to i64 + %11 = ptrtoint ptr %9 to i64 + %12 = sub i64 %10, %11 + %13 = sdiv exact i64 %12, 12 + store i64 %13, ptr %7, align 8 + %14 = load i64, ptr %7, align 8 + %15 = icmp sgt i64 %14, 1 + br i1 %15, label %16, label %24 + +16: ; preds = %3 + %17 = load ptr, ptr %6, align 8 + %18 = load i64, ptr %7, align 8 + %19 = sub i64 0, %18 + %20 = getelementptr inbounds %struct.Job, ptr %17, i64 %19 + %21 = load ptr, ptr %4, align 8 + %22 = load i64, ptr %7, align 8 + %23 = mul i64 12, %22 + call void @llvm.memmove.p0.p0.i64(ptr align 4 %20, ptr align 4 %21, i64 %23, i1 false) + br label %32 + +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 + +27: ; preds = %24 + %28 = load ptr, ptr %6, align 8 + %29 = getelementptr inbounds %struct.Job, ptr %28, i64 -1 + %30 = load ptr, ptr %4, align 8 + call void @_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneI3JobS3_EEvPT_PT0_(ptr noundef %29, ptr noundef %30) + br label %31 + +31: ; preds = %27, %24 + br label %32 + +32: ; preds = %31, %16 + %33 = load ptr, ptr %6, align 8 + %34 = load i64, ptr %7, align 8 + %35 = sub i64 0, %34 + %36 = getelementptr inbounds %struct.Job, ptr %33, i64 %35 + ret ptr %36 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memmove.p0.p0.i64(ptr nocapture writeonly, ptr nocapture readonly, i64, i1 immarg) #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE12__assign_oneI3JobS3_EEvPT_PT0_(ptr noundef %0, ptr noundef %1) #0 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %4, align 8 + %6 = load ptr, ptr %3, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %6, ptr align 4 %5, i64 12, i1 false) + ret void +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEclIS2_PS2_EEbRT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 4 dereferenceable(12) %1, ptr noundef %2) #2 comdat align 2 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca %struct.Job, align 4 + %8 = alloca %struct.Job, align 4 + %9 = alloca { i64, i32 }, align 4 + %10 = alloca { i64, i32 }, align 4 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %11, i32 0, i32 0 + %13 = load ptr, ptr %12, align 8 + %14 = load ptr, ptr %5, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %7, ptr align 4 %14, i64 12, i1 false) + %15 = load ptr, ptr %6, align 8 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %8, ptr align 4 %15, i64 12, i1 false) + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %9, ptr align 4 %7, i64 12, i1 false) + %16 = getelementptr inbounds { i64, i32 }, ptr %9, i32 0, i32 0 + %17 = load i64, ptr %16, align 4 + %18 = getelementptr inbounds { i64, i32 }, ptr %9, i32 0, i32 1 + %19 = load i32, ptr %18, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 4 %10, ptr align 4 %8, i64 12, i1 false) + %20 = getelementptr inbounds { i64, i32 }, ptr %10, i32 0, i32 0 + %21 = load i64, ptr %20, align 4 + %22 = getelementptr inbounds { i64, i32 }, ptr %10, i32 0, i32 1 + %23 = load i32, ptr %22, align 4 + %24 = call noundef zeroext i1 %13(i64 %17, i32 %19, i64 %21, i32 %23) + ret i1 %24 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) unnamed_addr #8 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %7, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + store ptr %9, ptr %6, align 8 + ret void +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEC2ES4_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #8 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #2 = { 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 #3 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +attributes #4 = { 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 #5 = { 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 #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 = { "frame-pointer"="all" "no-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 = { 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 = { builtin allocsize(0) } +attributes #10 = { builtin nounwind } +attributes #11 = { nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/word-wrap.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/word-wrap.ll new file mode 100644 index 000000000..9f42a7ddc --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/word-wrap.ll @@ -0,0 +1,498 @@ +; ModuleID = 'PE-benchmarks/word-wrap.cpp' +source_filename = "PE-benchmarks/word-wrap.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } + +@_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 +@__const.main.l = private unnamed_addr constant [4 x i32] [i32 3, i32 2, i32 2, i32 5], align 16 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13solveWordWrapPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #0 { + %4 = alloca ptr, align 8 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca ptr, align 8 + %8 = alloca i64, align 8 + %9 = alloca i64, align 8 + %10 = alloca i64, align 8 + %11 = alloca i64, align 8 + %12 = alloca i64, align 8 + %13 = alloca i64, align 8 + %14 = alloca i32, align 4 + %15 = alloca i32, align 4 + store ptr %0, ptr %4, align 8 + store i32 %1, ptr %5, align 4 + store i32 %2, ptr %6, align 4 + %16 = load i32, ptr %5, align 4 + %17 = add nsw i32 %16, 1 + %18 = zext i32 %17 to i64 + %19 = load i32, ptr %5, align 4 + %20 = add nsw i32 %19, 1 + %21 = zext i32 %20 to i64 + %22 = call ptr @llvm.stacksave() + store ptr %22, ptr %7, align 8 + %23 = mul nuw i64 %18, %21 + %24 = alloca i32, i64 %23, align 16 + store i64 %18, ptr %8, align 8 + store i64 %21, ptr %9, align 8 + %25 = load i32, ptr %5, align 4 + %26 = add nsw i32 %25, 1 + %27 = zext i32 %26 to i64 + %28 = load i32, ptr %5, align 4 + %29 = add nsw i32 %28, 1 + %30 = zext i32 %29 to i64 + %31 = mul nuw i64 %27, %30 + %32 = alloca i32, i64 %31, align 16 + store i64 %27, ptr %10, align 8 + store i64 %30, ptr %11, align 8 + %33 = load i32, ptr %5, align 4 + %34 = add nsw i32 %33, 1 + %35 = zext i32 %34 to i64 + %36 = alloca i32, i64 %35, align 16 + store i64 %35, ptr %12, align 8 + %37 = load i32, ptr %5, align 4 + %38 = add nsw i32 %37, 1 + %39 = zext i32 %38 to i64 + %40 = alloca i32, i64 %39, align 16 + store i64 %39, ptr %13, align 8 + store i32 1, ptr %14, align 4 + br label %41 + +41: ; preds = %96, %3 + %42 = load i32, ptr %14, align 4 + %43 = load i32, ptr %5, align 4 + %44 = icmp sle i32 %42, %43 + br i1 %44, label %45, label %99 + +45: ; preds = %41 + %46 = load i32, ptr %6, align 4 + %47 = load ptr, ptr %4, align 8 + %48 = load i32, ptr %14, align 4 + %49 = sub nsw i32 %48, 1 + %50 = sext i32 %49 to i64 + %51 = getelementptr inbounds i32, ptr %47, i64 %50 + %52 = load i32, ptr %51, align 4 + %53 = sub nsw i32 %46, %52 + %54 = load i32, ptr %14, align 4 + %55 = sext i32 %54 to i64 + %56 = mul nsw i64 %55, %21 + %57 = getelementptr inbounds i32, ptr %24, i64 %56 + %58 = load i32, ptr %14, align 4 + %59 = sext i32 %58 to i64 + %60 = getelementptr inbounds i32, ptr %57, i64 %59 + store i32 %53, ptr %60, align 4 + %61 = load i32, ptr %14, align 4 + %62 = add nsw i32 %61, 1 + store i32 %62, ptr %15, align 4 + br label %63 + +63: ; preds = %92, %45 + %64 = load i32, ptr %15, align 4 + %65 = load i32, ptr %5, align 4 + %66 = icmp sle i32 %64, %65 + br i1 %66, label %67, label %95 + +67: ; preds = %63 + %68 = load i32, ptr %14, align 4 + %69 = sext i32 %68 to i64 + %70 = mul nsw i64 %69, %21 + %71 = getelementptr inbounds i32, ptr %24, i64 %70 + %72 = load i32, ptr %15, align 4 + %73 = sub nsw i32 %72, 1 + %74 = sext i32 %73 to i64 + %75 = getelementptr inbounds i32, ptr %71, i64 %74 + %76 = load i32, ptr %75, align 4 + %77 = load ptr, ptr %4, align 8 + %78 = load i32, ptr %15, align 4 + %79 = sub nsw i32 %78, 1 + %80 = sext i32 %79 to i64 + %81 = getelementptr inbounds i32, ptr %77, i64 %80 + %82 = load i32, ptr %81, align 4 + %83 = sub nsw i32 %76, %82 + %84 = sub nsw i32 %83, 1 + %85 = load i32, ptr %14, align 4 + %86 = sext i32 %85 to i64 + %87 = mul nsw i64 %86, %21 + %88 = getelementptr inbounds i32, ptr %24, i64 %87 + %89 = load i32, ptr %15, align 4 + %90 = sext i32 %89 to i64 + %91 = getelementptr inbounds i32, ptr %88, i64 %90 + store i32 %84, ptr %91, align 4 + br label %92 + +92: ; preds = %67 + %93 = load i32, ptr %15, align 4 + %94 = add nsw i32 %93, 1 + store i32 %94, ptr %15, align 4 + br label %63, !llvm.loop !6 + +95: ; preds = %63 + br label %96 + +96: ; preds = %95 + %97 = load i32, ptr %14, align 4 + %98 = add nsw i32 %97, 1 + store i32 %98, ptr %14, align 4 + br label %41, !llvm.loop !8 + +99: ; preds = %41 + store i32 1, ptr %14, align 4 + br label %100 + +100: ; preds = %181, %99 + %101 = load i32, ptr %14, align 4 + %102 = load i32, ptr %5, align 4 + %103 = icmp sle i32 %101, %102 + br i1 %103, label %104, label %184 + +104: ; preds = %100 + %105 = load i32, ptr %14, align 4 + store i32 %105, ptr %15, align 4 + br label %106 + +106: ; preds = %177, %104 + %107 = load i32, ptr %15, align 4 + %108 = load i32, ptr %5, align 4 + %109 = icmp sle i32 %107, %108 + br i1 %109, label %110, label %180 + +110: ; preds = %106 + %111 = load i32, ptr %14, align 4 + %112 = sext i32 %111 to i64 + %113 = mul nsw i64 %112, %21 + %114 = getelementptr inbounds i32, ptr %24, i64 %113 + %115 = load i32, ptr %15, align 4 + %116 = sext i32 %115 to i64 + %117 = getelementptr inbounds i32, ptr %114, i64 %116 + %118 = load i32, ptr %117, align 4 + %119 = icmp slt i32 %118, 0 + br i1 %119, label %120, label %128 + +120: ; preds = %110 + %121 = load i32, ptr %14, align 4 + %122 = sext i32 %121 to i64 + %123 = mul nsw i64 %122, %30 + %124 = getelementptr inbounds i32, ptr %32, i64 %123 + %125 = load i32, ptr %15, align 4 + %126 = sext i32 %125 to i64 + %127 = getelementptr inbounds i32, ptr %124, i64 %126 + store i32 2147483647, ptr %127, align 4 + br label %176 + +128: ; preds = %110 + %129 = load i32, ptr %15, align 4 + %130 = load i32, ptr %5, align 4 + %131 = icmp eq i32 %129, %130 + br i1 %131, label %132, label %150 + +132: ; preds = %128 + %133 = load i32, ptr %14, align 4 + %134 = sext i32 %133 to i64 + %135 = mul nsw i64 %134, %21 + %136 = getelementptr inbounds i32, ptr %24, i64 %135 + %137 = load i32, ptr %15, align 4 + %138 = sext i32 %137 to i64 + %139 = getelementptr inbounds i32, ptr %136, i64 %138 + %140 = load i32, ptr %139, align 4 + %141 = icmp sge i32 %140, 0 + br i1 %141, label %142, label %150 + +142: ; preds = %132 + %143 = load i32, ptr %14, align 4 + %144 = sext i32 %143 to i64 + %145 = mul nsw i64 %144, %30 + %146 = getelementptr inbounds i32, ptr %32, i64 %145 + %147 = load i32, ptr %15, align 4 + %148 = sext i32 %147 to i64 + %149 = getelementptr inbounds i32, ptr %146, i64 %148 + store i32 0, ptr %149, align 4 + br label %175 + +150: ; preds = %132, %128 + %151 = load i32, ptr %14, align 4 + %152 = sext i32 %151 to i64 + %153 = mul nsw i64 %152, %21 + %154 = getelementptr inbounds i32, ptr %24, i64 %153 + %155 = load i32, ptr %15, align 4 + %156 = sext i32 %155 to i64 + %157 = getelementptr inbounds i32, ptr %154, i64 %156 + %158 = load i32, ptr %157, align 4 + %159 = load i32, ptr %14, align 4 + %160 = sext i32 %159 to i64 + %161 = mul nsw i64 %160, %21 + %162 = getelementptr inbounds i32, ptr %24, i64 %161 + %163 = load i32, ptr %15, align 4 + %164 = sext i32 %163 to i64 + %165 = getelementptr inbounds i32, ptr %162, i64 %164 + %166 = load i32, ptr %165, align 4 + %167 = mul nsw i32 %158, %166 + %168 = load i32, ptr %14, align 4 + %169 = sext i32 %168 to i64 + %170 = mul nsw i64 %169, %30 + %171 = getelementptr inbounds i32, ptr %32, i64 %170 + %172 = load i32, ptr %15, align 4 + %173 = sext i32 %172 to i64 + %174 = getelementptr inbounds i32, ptr %171, i64 %173 + store i32 %167, ptr %174, align 4 + br label %175 + +175: ; preds = %150, %142 + br label %176 + +176: ; preds = %175, %120 + br label %177 + +177: ; preds = %176 + %178 = load i32, ptr %15, align 4 + %179 = add nsw i32 %178, 1 + store i32 %179, ptr %15, align 4 + br label %106, !llvm.loop !9 + +180: ; preds = %106 + br label %181 + +181: ; preds = %180 + %182 = load i32, ptr %14, align 4 + %183 = add nsw i32 %182, 1 + store i32 %183, ptr %14, align 4 + br label %100, !llvm.loop !10 + +184: ; preds = %100 + %185 = getelementptr inbounds i32, ptr %36, i64 0 + store i32 0, ptr %185, align 16 + store i32 1, ptr %15, align 4 + br label %186 + +186: ; preds = %262, %184 + %187 = load i32, ptr %15, align 4 + %188 = load i32, ptr %5, align 4 + %189 = icmp sle i32 %187, %188 + br i1 %189, label %190, label %265 + +190: ; preds = %186 + %191 = load i32, ptr %15, align 4 + %192 = sext i32 %191 to i64 + %193 = getelementptr inbounds i32, ptr %36, i64 %192 + store i32 2147483647, ptr %193, align 4 + store i32 1, ptr %14, align 4 + br label %194 + +194: ; preds = %258, %190 + %195 = load i32, ptr %14, align 4 + %196 = load i32, ptr %15, align 4 + %197 = icmp sle i32 %195, %196 + br i1 %197, label %198, label %261 + +198: ; preds = %194 + %199 = load i32, ptr %14, align 4 + %200 = sub nsw i32 %199, 1 + %201 = sext i32 %200 to i64 + %202 = getelementptr inbounds i32, ptr %36, i64 %201 + %203 = load i32, ptr %202, align 4 + %204 = icmp ne i32 %203, 2147483647 + br i1 %204, label %205, label %257 + +205: ; preds = %198 + %206 = load i32, ptr %14, align 4 + %207 = sext i32 %206 to i64 + %208 = mul nsw i64 %207, %30 + %209 = getelementptr inbounds i32, ptr %32, i64 %208 + %210 = load i32, ptr %15, align 4 + %211 = sext i32 %210 to i64 + %212 = getelementptr inbounds i32, ptr %209, i64 %211 + %213 = load i32, ptr %212, align 4 + %214 = icmp ne i32 %213, 2147483647 + br i1 %214, label %215, label %257 + +215: ; preds = %205 + %216 = load i32, ptr %14, align 4 + %217 = sub nsw i32 %216, 1 + %218 = sext i32 %217 to i64 + %219 = getelementptr inbounds i32, ptr %36, i64 %218 + %220 = load i32, ptr %219, align 4 + %221 = load i32, ptr %14, align 4 + %222 = sext i32 %221 to i64 + %223 = mul nsw i64 %222, %30 + %224 = getelementptr inbounds i32, ptr %32, i64 %223 + %225 = load i32, ptr %15, align 4 + %226 = sext i32 %225 to i64 + %227 = getelementptr inbounds i32, ptr %224, i64 %226 + %228 = load i32, ptr %227, align 4 + %229 = add nsw i32 %220, %228 + %230 = load i32, ptr %15, align 4 + %231 = sext i32 %230 to i64 + %232 = getelementptr inbounds i32, ptr %36, i64 %231 + %233 = load i32, ptr %232, align 4 + %234 = icmp slt i32 %229, %233 + br i1 %234, label %235, label %257 + +235: ; preds = %215 + %236 = load i32, ptr %14, align 4 + %237 = sub nsw i32 %236, 1 + %238 = sext i32 %237 to i64 + %239 = getelementptr inbounds i32, ptr %36, i64 %238 + %240 = load i32, ptr %239, align 4 + %241 = load i32, ptr %14, align 4 + %242 = sext i32 %241 to i64 + %243 = mul nsw i64 %242, %30 + %244 = getelementptr inbounds i32, ptr %32, i64 %243 + %245 = load i32, ptr %15, align 4 + %246 = sext i32 %245 to i64 + %247 = getelementptr inbounds i32, ptr %244, i64 %246 + %248 = load i32, ptr %247, align 4 + %249 = add nsw i32 %240, %248 + %250 = load i32, ptr %15, align 4 + %251 = sext i32 %250 to i64 + %252 = getelementptr inbounds i32, ptr %36, i64 %251 + store i32 %249, ptr %252, align 4 + %253 = load i32, ptr %14, align 4 + %254 = load i32, ptr %15, align 4 + %255 = sext i32 %254 to i64 + %256 = getelementptr inbounds i32, ptr %40, i64 %255 + store i32 %253, ptr %256, align 4 + br label %257 + +257: ; preds = %235, %215, %205, %198 + br label %258 + +258: ; preds = %257 + %259 = load i32, ptr %14, align 4 + %260 = add nsw i32 %259, 1 + store i32 %260, ptr %14, align 4 + br label %194, !llvm.loop !11 + +261: ; preds = %194 + br label %262 + +262: ; preds = %261 + %263 = load i32, ptr %15, align 4 + %264 = add nsw i32 %263, 1 + store i32 %264, ptr %15, align 4 + br label %186, !llvm.loop !12 + +265: ; preds = %186 + %266 = load i32, ptr %5, align 4 + %267 = call noundef i32 @_Z13printSolutionPii(ptr noundef %40, i32 noundef %266) + %268 = load ptr, ptr %7, align 8 + call void @llvm.stackrestore(ptr %268) + ret void +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z13printSolutionPii(ptr noundef %0, i32 noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + store ptr %0, ptr %3, align 8 + store i32 %1, ptr %4, align 4 + %6 = load ptr, ptr %3, align 8 + %7 = load i32, ptr %4, align 4 + %8 = sext i32 %7 to i64 + %9 = getelementptr inbounds i32, ptr %6, i64 %8 + %10 = load i32, ptr %9, align 4 + %11 = icmp eq i32 %10, 1 + br i1 %11, label %12, label %13 + +12: ; preds = %2 + store i32 1, ptr %5, align 4 + br label %23 + +13: ; preds = %2 + %14 = load ptr, ptr %3, align 8 + %15 = load ptr, ptr %3, align 8 + %16 = load i32, ptr %4, align 4 + %17 = sext i32 %16 to i64 + %18 = getelementptr inbounds i32, ptr %15, i64 %17 + %19 = load i32, ptr %18, align 4 + %20 = sub nsw i32 %19, 1 + %21 = call noundef i32 @_Z13printSolutionPii(ptr noundef %14, i32 noundef %20) + %22 = add nsw i32 %21, 1 + store i32 %22, ptr %5, align 4 + br label %23 + +23: ; preds = %13, %12 + %24 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str) + %25 = load i32, ptr %5, align 4 + %26 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %24, i32 noundef %25) + %27 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %26, ptr noundef @.str.1) + %28 = load ptr, ptr %3, align 8 + %29 = load i32, ptr %4, align 4 + %30 = sext i32 %29 to i64 + %31 = getelementptr inbounds i32, ptr %28, i64 %30 + %32 = load i32, ptr %31, align 4 + %33 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %27, i32 noundef %32) + %34 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %33, ptr noundef @.str.2) + %35 = load i32, ptr %4, align 4 + %36 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %34, i32 noundef %35) + %37 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %36, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %38 = load i32, ptr %5, align 4 + ret i32 %38 +} + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #1 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #2 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { + %1 = alloca i32, align 4 + %2 = alloca [4 x i32], align 16 + %3 = alloca i32, align 4 + %4 = alloca i32, align 4 + store i32 0, ptr %1, align 4 + call void @llvm.memcpy.p0.p0.i64(ptr align 16 %2, ptr align 16 @__const.main.l, i64 16, i1 false) + store i32 4, ptr %3, align 4 + store i32 6, ptr %4, align 4 + %5 = getelementptr inbounds [4 x i32], ptr %2, i64 0, i64 0 + %6 = load i32, ptr %3, align 4 + %7 = load i32, ptr %4, align 4 + call void @_Z13solveWordWrapPiii(ptr noundef %5, i32 noundef %6, i32 noundef %7) + ret i32 0 +} + +; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 + +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 = { nocallback nofree nosync nounwind willreturn } +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 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!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-llvm16/z-algorithm-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm16/z-algorithm-linear-time.ll new file mode 100644 index 000000000..9ee060775 --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm16/z-algorithm-linear-time.ll @@ -0,0 +1,1004 @@ +; ModuleID = 'PE-benchmarks/z-algorithm-linear-time.cpp' +source_filename = "PE-benchmarks/z-algorithm-linear-time.cpp" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-linux-gnu" + +module asm ".globl _ZSt21ios_base_library_initv" + +%"class.std::basic_ostream" = type { ptr, %"class.std::basic_ios" } +%"class.std::basic_ios" = type { %"class.std::ios_base", ptr, i8, i8, ptr, ptr, ptr, ptr } +%"class.std::ios_base" = type { ptr, i64, i64, i32, i32, i32, ptr, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, ptr, %"class.std::locale" } +%"struct.std::ios_base::_Words" = type { ptr, i64 } +%"class.std::locale" = type { ptr } +%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } +%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } +%union.anon = type { i64, [8 x i8] } +%"class.std::allocator" = type { i8 } +%"struct.std::forward_iterator_tag" = type { i8 } +%struct._Guard = type { ptr } + +$_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEOS8_RKS8_ = comdat any + +$_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EERKS8_PKS5_ = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any + +$_ZNSt15__new_allocatorIcED2Ev = comdat any + +$_ZSt12__str_concatINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEET_PKNS6_10value_typeENS6_9size_typeES9_SA_RKNS6_14allocator_typeE = comdat any + +$_ZNSt11char_traitsIcE6lengthEPKc = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any + +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any + +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any + +$__clang_call_terminate = comdat any + +@.str = private unnamed_addr constant [2 x i8] c"$\00", align 1 +@_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 +@.str.4 = private unnamed_addr constant [50 x i8] c"basic_string: construction from null is not valid\00", align 1 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %0, ptr noundef %1) #0 personality ptr @__gxx_personality_v0 { + %3 = alloca %"class.std::__cxx11::basic_string", align 8 + %4 = alloca %"class.std::__cxx11::basic_string", align 8 + %5 = alloca ptr, align 8 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca ptr, align 8 + %9 = alloca i64, align 8 + %10 = alloca %"class.std::__cxx11::basic_string", align 8 + %11 = alloca i32, align 4 + call void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EERKS8_PKS5_(ptr sret(%"class.std::__cxx11::basic_string") align 8 %4, ptr noundef nonnull align 8 dereferenceable(32) %1, ptr noundef @.str) + invoke void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEOS8_RKS8_(ptr sret(%"class.std::__cxx11::basic_string") align 8 %3, ptr noundef nonnull align 8 dereferenceable(32) %4, ptr noundef nonnull align 8 dereferenceable(32) %0) + to label %12 unwind label %45 + +12: ; preds = %2 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %4) #11 + %13 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #11 + %14 = trunc i64 %13 to i32 + store i32 %14, ptr %7, align 4 + %15 = load i32, ptr %7, align 4 + %16 = zext i32 %15 to i64 + %17 = call ptr @llvm.stacksave() + store ptr %17, ptr %8, align 8 + %18 = alloca i32, i64 %16, align 16 + store i64 %16, ptr %9, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef nonnull align 8 dereferenceable(32) %3) + to label %19 unwind label %49 + +19: ; preds = %12 + invoke void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPi(ptr noundef %10, ptr noundef %18) + to label %20 unwind label %53 + +20: ; preds = %19 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #11 + store i32 0, ptr %11, align 4 + br label %21 + +21: ; preds = %58, %20 + %22 = load i32, ptr %11, align 4 + %23 = load i32, ptr %7, align 4 + %24 = icmp slt i32 %22, %23 + br i1 %24, label %25, label %61 + +25: ; preds = %21 + %26 = load i32, ptr %11, align 4 + %27 = sext i32 %26 to i64 + %28 = getelementptr inbounds i32, ptr %18, i64 %27 + %29 = load i32, ptr %28, align 4 + %30 = sext i32 %29 to i64 + %31 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #11 + %32 = icmp eq i64 %30, %31 + br i1 %32, label %33, label %57 + +33: ; preds = %25 + %34 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, ptr noundef @.str.1) + to label %35 unwind label %49 + +35: ; preds = %33 + %36 = load i32, ptr %11, align 4 + %37 = sext i32 %36 to i64 + %38 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #11 + %39 = sub i64 %37, %38 + %40 = sub i64 %39, 1 + %41 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEm(ptr noundef nonnull align 8 dereferenceable(8) %34, i64 noundef %40) + to label %42 unwind label %49 + +42: ; preds = %35 + %43 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %41, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + to label %44 unwind label %49 + +44: ; preds = %42 + br label %57 + +45: ; preds = %2 + %46 = landingpad { ptr, i32 } + cleanup + %47 = extractvalue { ptr, i32 } %46, 0 + store ptr %47, ptr %5, align 8 + %48 = extractvalue { ptr, i32 } %46, 1 + store i32 %48, ptr %6, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %4) #11 + br label %64 + +49: ; preds = %42, %35, %33, %12 + %50 = landingpad { ptr, i32 } + cleanup + %51 = extractvalue { ptr, i32 } %50, 0 + store ptr %51, ptr %5, align 8 + %52 = extractvalue { ptr, i32 } %50, 1 + store i32 %52, ptr %6, align 4 + br label %63 + +53: ; preds = %19 + %54 = landingpad { ptr, i32 } + cleanup + %55 = extractvalue { ptr, i32 } %54, 0 + store ptr %55, ptr %5, align 8 + %56 = extractvalue { ptr, i32 } %54, 1 + store i32 %56, ptr %6, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #11 + br label %63 + +57: ; preds = %44, %25 + br label %58 + +58: ; preds = %57 + %59 = load i32, ptr %11, align 4 + %60 = add nsw i32 %59, 1 + store i32 %60, ptr %11, align 4 + br label %21, !llvm.loop !6 + +61: ; preds = %21 + %62 = load ptr, ptr %8, align 8 + call void @llvm.stackrestore(ptr %62) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %3) #11 + ret void + +63: ; preds = %53, %49 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %3) #11 + br label %64 + +64: ; preds = %63, %45 + %65 = load ptr, ptr %5, align 8 + %66 = load i32, ptr %6, align 4 + %67 = insertvalue { ptr, i32 } poison, ptr %65, 0 + %68 = insertvalue { ptr, i32 } %67, i32 %66, 1 + resume { ptr, i32 } %68 +} + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEOS8_RKS8_(ptr noalias sret(%"class.std::__cxx11::basic_string") align 8 %0, ptr noundef nonnull align 8 dereferenceable(32) %1, ptr noundef nonnull align 8 dereferenceable(32) %2) #0 comdat { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %7 = load ptr, ptr %5, align 8 + %8 = load ptr, ptr %6, align 8 + %9 = call noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %7, ptr noundef nonnull align 8 dereferenceable(32) %8) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EOS4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %9) #11 + ret void +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EERKS8_PKS5_(ptr noalias sret(%"class.std::__cxx11::basic_string") align 8 %0, ptr noundef nonnull align 8 dereferenceable(32) %1, ptr noundef %2) #1 comdat personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca %"class.std::allocator", align 1 + %10 = alloca ptr, align 8 + %11 = alloca i32, align 4 + store ptr %0, ptr %6, align 8 + store ptr %1, ptr %7, align 8 + store ptr %2, ptr %8, align 8 + %12 = load ptr, ptr %7, align 8 + %13 = call noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE5c_strEv(ptr noundef nonnull align 8 dereferenceable(32) %12) #11 + %14 = load ptr, ptr %7, align 8 + %15 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %14) #11 + %16 = load ptr, ptr %8, align 8 + %17 = load ptr, ptr %8, align 8 + %18 = call noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %17) + %19 = load ptr, ptr %7, align 8 + call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13get_allocatorEv(ptr sret(%"class.std::allocator") align 1 %9, ptr noundef nonnull align 8 dereferenceable(32) %19) #11 + invoke void @_ZSt12__str_concatINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEET_PKNS6_10value_typeENS6_9size_typeES9_SA_RKNS6_14allocator_typeE(ptr sret(%"class.std::__cxx11::basic_string") align 8 %0, ptr noundef %13, i64 noundef %15, ptr noundef %16, i64 noundef %18, ptr noundef nonnull align 1 dereferenceable(1) %9) + to label %20 unwind label %22 + +20: ; preds = %3 + store ptr %9, ptr %5, align 8 + %21 = load ptr, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %21) #11 + ret void + +22: ; preds = %3 + %23 = landingpad { ptr, i32 } + cleanup + %24 = extractvalue { ptr, i32 } %23, 0 + store ptr %24, ptr %10, align 8 + %25 = extractvalue { ptr, i32 } %23, 1 + store i32 %25, ptr %11, align 4 + store ptr %9, ptr %4, align 8 + %26 = load ptr, ptr %4, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %26) #11 + br label %27 + +27: ; preds = %22 + %28 = load ptr, ptr %10, align 8 + %29 = load i32, ptr %11, align 4 + %30 = insertvalue { ptr, i32 } poison, ptr %28, 0 + %31 = insertvalue { ptr, i32 } %30, i32 %29, 1 + resume { ptr, i32 } %31 +} + +declare i32 @__gxx_personality_v0(...) + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 + +; Function Attrs: nounwind +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare ptr @llvm.stacksave() #3 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPi(ptr noundef %0, ptr noundef %1) #0 { + %3 = alloca ptr, align 8 + %4 = alloca i32, align 4 + %5 = alloca i32, align 4 + %6 = alloca i32, align 4 + %7 = alloca i32, align 4 + %8 = alloca i32, align 4 + store ptr %1, ptr %3, align 8 + %9 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #11 + %10 = trunc i64 %9 to i32 + store i32 %10, ptr %4, align 4 + store i32 0, ptr %6, align 4 + store i32 0, ptr %5, align 4 + store i32 1, ptr %8, align 4 + br label %11 + +11: ; preds = %115, %2 + %12 = load i32, ptr %8, align 4 + %13 = load i32, ptr %4, align 4 + %14 = icmp slt i32 %12, %13 + br i1 %14, label %15, label %118 + +15: ; preds = %11 + %16 = load i32, ptr %8, align 4 + %17 = load i32, ptr %6, align 4 + %18 = icmp sgt i32 %16, %17 + br i1 %18, label %19, label %54 + +19: ; preds = %15 + %20 = load i32, ptr %8, align 4 + store i32 %20, ptr %6, align 4 + store i32 %20, ptr %5, align 4 + br label %21 + +21: ; preds = %41, %19 + %22 = load i32, ptr %6, align 4 + %23 = load i32, ptr %4, align 4 + %24 = icmp slt i32 %22, %23 + br i1 %24, label %25, label %39 + +25: ; preds = %21 + %26 = load i32, ptr %6, align 4 + %27 = load i32, ptr %5, align 4 + %28 = sub nsw i32 %26, %27 + %29 = sext i32 %28 to i64 + %30 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %29) + %31 = load i8, ptr %30, align 1 + %32 = sext i8 %31 to i32 + %33 = load i32, ptr %6, align 4 + %34 = sext i32 %33 to i64 + %35 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %34) + %36 = load i8, ptr %35, align 1 + %37 = sext i8 %36 to i32 + %38 = icmp eq i32 %32, %37 + br label %39 + +39: ; preds = %25, %21 + %40 = phi i1 [ false, %21 ], [ %38, %25 ] + br i1 %40, label %41, label %44 + +41: ; preds = %39 + %42 = load i32, ptr %6, align 4 + %43 = add nsw i32 %42, 1 + store i32 %43, ptr %6, align 4 + br label %21, !llvm.loop !8 + +44: ; preds = %39 + %45 = load i32, ptr %6, align 4 + %46 = load i32, ptr %5, align 4 + %47 = sub nsw i32 %45, %46 + %48 = load ptr, ptr %3, align 8 + %49 = load i32, ptr %8, align 4 + %50 = sext i32 %49 to i64 + %51 = getelementptr inbounds i32, ptr %48, i64 %50 + store i32 %47, ptr %51, align 4 + %52 = load i32, ptr %6, align 4 + %53 = add nsw i32 %52, -1 + store i32 %53, ptr %6, align 4 + br label %114 + +54: ; preds = %15 + %55 = load i32, ptr %8, align 4 + %56 = load i32, ptr %5, align 4 + %57 = sub nsw i32 %55, %56 + store i32 %57, ptr %7, align 4 + %58 = load ptr, ptr %3, align 8 + %59 = load i32, ptr %7, align 4 + %60 = sext i32 %59 to i64 + %61 = getelementptr inbounds i32, ptr %58, i64 %60 + %62 = load i32, ptr %61, align 4 + %63 = load i32, ptr %6, align 4 + %64 = load i32, ptr %8, align 4 + %65 = sub nsw i32 %63, %64 + %66 = add nsw i32 %65, 1 + %67 = icmp slt i32 %62, %66 + br i1 %67, label %68, label %78 + +68: ; preds = %54 + %69 = load ptr, ptr %3, align 8 + %70 = load i32, ptr %7, align 4 + %71 = sext i32 %70 to i64 + %72 = getelementptr inbounds i32, ptr %69, i64 %71 + %73 = load i32, ptr %72, align 4 + %74 = load ptr, ptr %3, align 8 + %75 = load i32, ptr %8, align 4 + %76 = sext i32 %75 to i64 + %77 = getelementptr inbounds i32, ptr %74, i64 %76 + store i32 %73, ptr %77, align 4 + br label %113 + +78: ; preds = %54 + %79 = load i32, ptr %8, align 4 + store i32 %79, ptr %5, align 4 + br label %80 + +80: ; preds = %100, %78 + %81 = load i32, ptr %6, align 4 + %82 = load i32, ptr %4, align 4 + %83 = icmp slt i32 %81, %82 + br i1 %83, label %84, label %98 + +84: ; preds = %80 + %85 = load i32, ptr %6, align 4 + %86 = load i32, ptr %5, align 4 + %87 = sub nsw i32 %85, %86 + %88 = sext i32 %87 to i64 + %89 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %88) + %90 = load i8, ptr %89, align 1 + %91 = sext i8 %90 to i32 + %92 = load i32, ptr %6, align 4 + %93 = sext i32 %92 to i64 + %94 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %93) + %95 = load i8, ptr %94, align 1 + %96 = sext i8 %95 to i32 + %97 = icmp eq i32 %91, %96 + br label %98 + +98: ; preds = %84, %80 + %99 = phi i1 [ false, %80 ], [ %97, %84 ] + br i1 %99, label %100, label %103 + +100: ; preds = %98 + %101 = load i32, ptr %6, align 4 + %102 = add nsw i32 %101, 1 + store i32 %102, ptr %6, align 4 + br label %80, !llvm.loop !9 + +103: ; preds = %98 + %104 = load i32, ptr %6, align 4 + %105 = load i32, ptr %5, align 4 + %106 = sub nsw i32 %104, %105 + %107 = load ptr, ptr %3, align 8 + %108 = load i32, ptr %8, align 4 + %109 = sext i32 %108 to i64 + %110 = getelementptr inbounds i32, ptr %107, i64 %109 + store i32 %106, ptr %110, align 4 + %111 = load i32, ptr %6, align 4 + %112 = add nsw i32 %111, -1 + store i32 %112, ptr %6, align 4 + br label %113 + +113: ; preds = %103, %68 + br label %114 + +114: ; preds = %113, %44 + br label %115 + +115: ; preds = %114 + %116 = load i32, ptr %8, align 4 + %117 = add nsw i32 %116, 1 + store i32 %117, ptr %8, align 4 + br label %11, !llvm.loop !10 + +118: ; preds = %11 + ret void +} + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEm(ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 + +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #4 + +; Function Attrs: nocallback nofree nosync nounwind willreturn +declare void @llvm.stackrestore(ptr) #3 + +declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #4 + +; Function Attrs: noinline norecurse uwtable +define dso_local noundef i32 @main() #5 personality ptr @__gxx_personality_v0 { + %1 = alloca ptr, align 8 + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca i32, align 4 + %10 = alloca %"class.std::__cxx11::basic_string", align 8 + %11 = alloca %"class.std::allocator", align 1 + %12 = alloca ptr, align 8 + %13 = alloca i32, align 4 + %14 = alloca %"class.std::__cxx11::basic_string", align 8 + %15 = alloca %"class.std::allocator", align 1 + %16 = alloca %"class.std::__cxx11::basic_string", align 8 + %17 = alloca %"class.std::__cxx11::basic_string", align 8 + store i32 0, ptr %9, align 4 + store ptr %11, ptr %8, align 8 + %18 = load ptr, ptr %8, align 8 + store ptr %18, ptr %1, align 8 + %19 = load ptr, ptr %1, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %11) + to label %20 unwind label %30 + +20: ; preds = %0 + store ptr %11, ptr %6, align 8 + %21 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %21) #11 + store ptr %15, ptr %7, align 8 + %22 = load ptr, ptr %7, align 8 + store ptr %22, ptr %2, align 8 + %23 = load ptr, ptr %2, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %14, ptr noundef @.str.3, ptr noundef nonnull align 1 dereferenceable(1) %15) + to label %24 unwind label %35 + +24: ; preds = %20 + store ptr %15, ptr %4, align 8 + %25 = load ptr, ptr %4, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %25) #11 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %16, ptr noundef nonnull align 8 dereferenceable(32) %10) + to label %26 unwind label %40 + +26: ; preds = %24 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %17, ptr noundef nonnull align 8 dereferenceable(32) %14) + to label %27 unwind label %44 + +27: ; preds = %26 + invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %16, ptr noundef %17) + to label %28 unwind label %48 + +28: ; preds = %27 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #11 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #11 + store i32 0, ptr %9, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #11 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #11 + %29 = load i32, ptr %9, align 4 + ret i32 %29 + +30: ; preds = %0 + %31 = landingpad { ptr, i32 } + cleanup + %32 = extractvalue { ptr, i32 } %31, 0 + store ptr %32, ptr %12, align 8 + %33 = extractvalue { ptr, i32 } %31, 1 + store i32 %33, ptr %13, align 4 + store ptr %11, ptr %5, align 8 + %34 = load ptr, ptr %5, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %34) #11 + br label %55 + +35: ; preds = %20 + %36 = landingpad { ptr, i32 } + cleanup + %37 = extractvalue { ptr, i32 } %36, 0 + store ptr %37, ptr %12, align 8 + %38 = extractvalue { ptr, i32 } %36, 1 + store i32 %38, ptr %13, align 4 + store ptr %15, ptr %3, align 8 + %39 = load ptr, ptr %3, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %39) #11 + br label %54 + +40: ; preds = %24 + %41 = landingpad { ptr, i32 } + cleanup + %42 = extractvalue { ptr, i32 } %41, 0 + store ptr %42, ptr %12, align 8 + %43 = extractvalue { ptr, i32 } %41, 1 + store i32 %43, ptr %13, align 4 + br label %53 + +44: ; preds = %26 + %45 = landingpad { ptr, i32 } + cleanup + %46 = extractvalue { ptr, i32 } %45, 0 + store ptr %46, ptr %12, align 8 + %47 = extractvalue { ptr, i32 } %45, 1 + store i32 %47, ptr %13, align 4 + br label %52 + +48: ; preds = %27 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %12, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %13, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #11 + br label %52 + +52: ; preds = %48, %44 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #11 + br label %53 + +53: ; preds = %52, %40 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #11 + br label %54 + +54: ; preds = %53, %35 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #11 + br label %55 + +55: ; preds = %54, %30 + %56 = load ptr, ptr %12, align 8 + %57 = load i32, ptr %13, align 4 + %58 = insertvalue { ptr, i32 } poison, ptr %56, 0 + %59 = insertvalue { ptr, i32 } %58, i32 %57, 1 + resume { ptr, i32 } %59 +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) unnamed_addr #1 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca i32, align 4 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + store ptr %0, ptr %4, align 8 + store ptr %1, ptr %5, align 8 + store ptr %2, ptr %6, align 8 + %11 = load ptr, ptr %4, align 8 + %12 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %11, i32 0, i32 0 + %13 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) + %14 = load ptr, ptr %6, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %12, ptr noundef %13, ptr noundef nonnull align 1 dereferenceable(1) %14) + %15 = load ptr, ptr %5, align 8 + %16 = icmp eq ptr %15, null + br i1 %16, label %17, label %23 + +17: ; preds = %3 + invoke void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.4) #12 + to label %18 unwind label %19 + +18: ; preds = %17 + unreachable + +19: ; preds = %23, %17 + %20 = landingpad { ptr, i32 } + cleanup + %21 = extractvalue { ptr, i32 } %20, 0 + store ptr %21, ptr %7, align 8 + %22 = extractvalue { ptr, i32 } %20, 1 + store i32 %22, ptr %8, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %12) #11 + br label %31 + +23: ; preds = %3 + %24 = load ptr, ptr %5, align 8 + %25 = load ptr, ptr %5, align 8 + %26 = call noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %25) + %27 = getelementptr inbounds i8, ptr %24, i64 %26 + store ptr %27, ptr %9, align 8 + %28 = load ptr, ptr %5, align 8 + %29 = load ptr, ptr %9, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %28, ptr noundef %29) + to label %30 unwind label %19 + +30: ; preds = %23 + ret void + +31: ; preds = %19 + %32 = load ptr, ptr %7, align 8 + %33 = load i32, ptr %8, align 4 + %34 = insertvalue { ptr, i32 } poison, ptr %32, 0 + %35 = insertvalue { ptr, i32 } %34, i32 %33, 1 + resume { ptr, i32 } %35 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + ret void +} + +; Function Attrs: noinline uwtable +define linkonce_odr dso_local void @_ZSt12__str_concatINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEET_PKNS6_10value_typeENS6_9size_typeES9_SA_RKNS6_14allocator_typeE(ptr noalias sret(%"class.std::__cxx11::basic_string") align 8 %0, ptr noundef %1, i64 noundef %2, ptr noundef %3, i64 noundef %4, ptr noundef nonnull align 1 dereferenceable(1) %5) #1 comdat personality ptr @__gxx_personality_v0 { + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca ptr, align 8 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca ptr, align 8 + %15 = alloca ptr, align 8 + %16 = alloca ptr, align 8 + %17 = alloca ptr, align 8 + %18 = alloca i64, align 8 + %19 = alloca ptr, align 8 + %20 = alloca i64, align 8 + %21 = alloca ptr, align 8 + %22 = alloca i1, align 1 + %23 = alloca %"class.std::allocator", align 1 + %24 = alloca ptr, align 8 + %25 = alloca i32, align 4 + store ptr %0, ptr %16, align 8 + store ptr %1, ptr %17, align 8 + store i64 %2, ptr %18, align 8 + store ptr %3, ptr %19, align 8 + store i64 %4, ptr %20, align 8 + store ptr %5, ptr %21, align 8 + store i1 false, ptr %22, align 1 + %26 = load ptr, ptr %21, align 8 + call void @llvm.experimental.noalias.scope.decl(metadata !11) + store ptr %23, ptr %13, align 8, !noalias !11 + store ptr %26, ptr %14, align 8, !noalias !11 + %27 = load ptr, ptr %14, align 8, !noalias !11 + call void @llvm.experimental.noalias.scope.decl(metadata !14) + store ptr %23, ptr %11, align 8, !noalias !14 + store ptr %27, ptr %12, align 8, !noalias !14 + %28 = load ptr, ptr %12, align 8, !noalias !14 + store ptr %23, ptr %9, align 8 + store ptr %28, ptr %10, align 8 + %29 = load ptr, ptr %9, align 8 + %30 = load ptr, ptr %10, align 8 + store ptr %29, ptr %7, align 8 + store ptr %30, ptr %8, align 8 + %31 = load ptr, ptr %7, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 1 dereferenceable(1) %23) #11 + store ptr %23, ptr %15, align 8 + %32 = load ptr, ptr %15, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %32) #11 + %33 = load i64, ptr %18, align 8 + %34 = load i64, ptr %20, align 8 + %35 = add i64 %33, %34 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %35) + to label %36 unwind label %46 + +36: ; preds = %6 + %37 = load ptr, ptr %17, align 8 + %38 = load i64, ptr %18, align 8 + %39 = invoke noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %37, i64 noundef %38) + to label %40 unwind label %46 + +40: ; preds = %36 + %41 = load ptr, ptr %19, align 8 + %42 = load i64, ptr %20, align 8 + %43 = invoke noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %41, i64 noundef %42) + to label %44 unwind label %46 + +44: ; preds = %40 + store i1 true, ptr %22, align 1 + %45 = load i1, ptr %22, align 1 + br i1 %45, label %51, label %50 + +46: ; preds = %40, %36, %6 + %47 = landingpad { ptr, i32 } + cleanup + %48 = extractvalue { ptr, i32 } %47, 0 + store ptr %48, ptr %24, align 8 + %49 = extractvalue { ptr, i32 } %47, 1 + store i32 %49, ptr %25, align 4 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #11 + br label %52 + +50: ; preds = %44 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #11 + br label %51 + +51: ; preds = %50, %44 + ret void + +52: ; preds = %46 + %53 = load ptr, ptr %24, align 8 + %54 = load i32, ptr %25, align 4 + %55 = insertvalue { ptr, i32 } poison, ptr %53, 0 + %56 = insertvalue { ptr, i32 } %55, i32 %54, 1 + resume { ptr, i32 } %56 +} + +; Function Attrs: nounwind +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE5c_strEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +; Function Attrs: nounwind +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %0) #7 comdat align 2 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = call i64 @strlen(ptr noundef %3) #11 + ret i64 %4 +} + +; Function Attrs: nounwind +declare void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13get_allocatorEv(ptr sret(%"class.std::allocator") align 1, ptr noundef nonnull align 8 dereferenceable(32)) #2 + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS3_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #4 + +declare noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef, i64 noundef) #4 + +; Function Attrs: nounwind +declare i64 @strlen(ptr noundef) #2 + +declare noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) #4 + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EOS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #4 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef, ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #4 + +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #8 + +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #0 comdat align 2 personality ptr @__gxx_personality_v0 { + %4 = alloca ptr, align 8 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + %7 = alloca ptr, align 8 + %8 = alloca ptr, align 8 + %9 = alloca ptr, align 8 + %10 = alloca %"struct.std::forward_iterator_tag", align 1 + %11 = alloca ptr, align 8 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca i64, align 8 + %15 = alloca %struct._Guard, align 8 + %16 = alloca ptr, align 8 + %17 = alloca i32, align 4 + store ptr %0, ptr %11, align 8 + store ptr %1, ptr %12, align 8 + store ptr %2, ptr %13, align 8 + %18 = load ptr, ptr %11, align 8 + %19 = load ptr, ptr %12, align 8 + %20 = load ptr, ptr %13, align 8 + store ptr %19, ptr %8, align 8 + store ptr %20, ptr %9, align 8 + %21 = load ptr, ptr %8, align 8 + %22 = load ptr, ptr %9, align 8 + store ptr %8, ptr %4, align 8 + store ptr %21, ptr %5, align 8 + store ptr %22, ptr %6, align 8 + %23 = load ptr, ptr %6, align 8 + %24 = load ptr, ptr %5, align 8 + %25 = ptrtoint ptr %23 to i64 + %26 = ptrtoint ptr %24 to i64 + %27 = sub i64 %25, %26 + store i64 %27, ptr %14, align 8 + %28 = load i64, ptr %14, align 8 + %29 = icmp ugt i64 %28, 15 + br i1 %29, label %30, label %33 + +30: ; preds = %3 + %31 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef nonnull align 8 dereferenceable(8) %14, i64 noundef 0) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %18, ptr noundef %31) + %32 = load i64, ptr %14, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %32) + br label %40 + +33: ; preds = %3 + store ptr %18, ptr %7, align 8 + %34 = load ptr, ptr %7, align 8 + %35 = invoke noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %34) + to label %39 unwind label %36 + +36: ; preds = %33 + %37 = landingpad { ptr, i32 } + catch ptr null + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #13 + unreachable + +39: ; preds = %33 + br label %40 + +40: ; preds = %39, %30 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef %18) + %41 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %18) + to label %42 unwind label %48 + +42: ; preds = %40 + %43 = load ptr, ptr %12, align 8 + %44 = load ptr, ptr %13, align 8 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %41, ptr noundef %43, ptr noundef %44) #11 + %45 = getelementptr inbounds %struct._Guard, ptr %15, i32 0, i32 0 + store ptr null, ptr %45, align 8 + %46 = load i64, ptr %14, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %18, i64 noundef %46) + to label %47 unwind label %48 + +47: ; preds = %42 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #11 + ret void + +48: ; preds = %42, %40 + %49 = landingpad { ptr, i32 } + cleanup + %50 = extractvalue { ptr, i32 } %49, 0 + store ptr %50, ptr %16, align 8 + %51 = extractvalue { ptr, i32 } %49, 1 + store i32 %51, ptr %17, align 4 + call void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #11 + br label %52 + +52: ; preds = %48 + %53 = load ptr, ptr %16, align 8 + %54 = load i32, ptr %17, align 4 + %55 = insertvalue { ptr, i32 } poison, ptr %53, 0 + %56 = insertvalue { ptr, i32 } %55, i32 %54, 1 + resume { ptr, i32 } %56 +} + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { + %2 = alloca ptr, align 8 + %3 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + %4 = load ptr, ptr %3, align 8 + store ptr %4, ptr %2, align 8 + %5 = load ptr, ptr %2, align 8 + call void @_ZNSt15__new_allocatorIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #11 + ret void +} + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #4 + +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #4 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #4 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef %1) unnamed_addr #6 comdat align 2 { + %3 = alloca ptr, align 8 + %4 = alloca ptr, align 8 + store ptr %0, ptr %3, align 8 + store ptr %1, ptr %4, align 8 + %5 = load ptr, ptr %3, align 8 + %6 = getelementptr inbounds %struct._Guard, ptr %5, i32 0, i32 0 + %7 = load ptr, ptr %4, align 8 + store ptr %7, ptr %6, align 8 + ret void +} + +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #2 + +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #4 + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #4 + +; Function Attrs: noinline nounwind uwtable +define linkonce_odr dso_local void @_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { + %2 = alloca ptr, align 8 + store ptr %0, ptr %2, align 8 + %3 = load ptr, ptr %2, align 8 + %4 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %5 = load ptr, ptr %4, align 8 + %6 = icmp ne ptr %5, null + br i1 %6, label %7, label %11 + +7: ; preds = %1 + %8 = getelementptr inbounds %struct._Guard, ptr %3, i32 0, i32 0 + %9 = load ptr, ptr %8, align 8 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %9) + to label %10 unwind label %12 + +10: ; preds = %7 + br label %11 + +11: ; preds = %10, %1 + ret void + +12: ; preds = %7 + %13 = landingpad { ptr, i32 } + catch ptr null + %14 = extractvalue { ptr, i32 } %13, 0 + call void @__clang_call_terminate(ptr %14) #13 + unreachable +} + +; Function Attrs: noinline noreturn nounwind +define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #9 comdat { + %2 = call ptr @__cxa_begin_catch(ptr %0) #11 + call void @_ZSt9terminatev() #13 + unreachable +} + +declare ptr @__cxa_begin_catch(ptr) + +declare void @_ZSt9terminatev() + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #4 + +; Function Attrs: nocallback nofree nosync nounwind willreturn memory(inaccessiblemem: readwrite) +declare void @llvm.experimental.noalias.scope.decl(metadata) #10 + +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 = { 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 = { nocallback nofree nosync 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" } +attributes #5 = { 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 = { 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 = { 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 #9 = { noinline noreturn 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 = { nocallback nofree nosync nounwind willreturn memory(inaccessiblemem: readwrite) } +attributes #11 = { nounwind } +attributes #12 = { noreturn } +attributes #13 = { noreturn nounwind } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 8, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 2} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 16.0.6 (++20230710042046+7cbf1a259152-1~exp1~20230710162136.105)"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = !{!12} +!12 = distinct !{!12, !13, !"_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_: argument 0"} +!13 = distinct !{!13, !"_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_"} +!14 = !{!15} +!15 = distinct !{!15, !16, !"_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_: argument 0"} +!16 = distinct !{!16, !"_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_"} diff --git a/src/test-suite/generateOracle.sh b/src/test-suite/generateOracle.sh index 7c892c4ee..c1cb391df 100644 --- a/src/test-suite/generateOracle.sh +++ b/src/test-suite/generateOracle.sh @@ -4,8 +4,8 @@ # This software is available under the BSD 4-Clause License. Please see LICENSE # file in the top-level directory for more details. # -SEED_VERSION="llvm14" -# SRC_WD="PE-benchmarks-llfiles-llvm14 +SEED_VERSION="llvm16" +# SRC_WD="PE-benchmarks-llfiles-llvm16 DEST_FOLDER_SYM_P="oracle/SYM_${SEED_VERSION}_p" DEST_FOLDER_FA_P="oracle/FA_${SEED_VERSION}_p" diff --git a/src/test-suite/generate_llfiles.sh b/src/test-suite/generate_llfiles.sh index 8f207747c..e53d8fae7 100644 --- a/src/test-suite/generate_llfiles.sh +++ b/src/test-suite/generate_llfiles.sh @@ -5,7 +5,7 @@ # file in the top-level directory for more details. # SRC_WD="PE-benchmarks" -DEST_FOLDER="PE-benchmarks-llfiles-llvm14" +DEST_FOLDER="PE-benchmarks-llfiles-llvm16" mkdir -p ${DEST_FOLDER} @@ -18,7 +18,7 @@ LLVM_BUILD="/usr" # fi for d in ${SRC_WD}/*.cpp; do - name=$(basename ${d}) && oname=${name%.*} && ${LLVM_BUILD}/bin/clang++-14 -S -emit-llvm -Xclang -disable-O0-optnone ${d} -o ${DEST_FOLDER}/${oname}.ll & + name=$(basename ${d}) && oname=${name%.*} && ${LLVM_BUILD}/bin/clang++-16 -S -emit-llvm -Xclang -disable-O0-optnone ${d} -o ${DEST_FOLDER}/${oname}.ll & done wait diff --git a/src/test-suite/get_index_file.py b/src/test-suite/get_index_file.py index 22f2b2659..131f4fed5 100644 --- a/src/test-suite/get_index_file.py +++ b/src/test-suite/get_index_file.py @@ -9,8 +9,8 @@ def get_index_file(): - index_file = open("index-llvm14.files", "w") - for root, _, files in os.walk("./PE-benchmarks-llfiles-llvm14/"): + index_file = open("index-llvm16.files", "w") + for root, _, files in os.walk("./PE-benchmarks-llfiles-llvm16/"): for file in files: if file.endswith(".ll"): index_file.write(os.path.join(root, file) + "\n") diff --git a/src/test-suite/index-llvm14.files b/src/test-suite/index-llvm14.files deleted file mode 100644 index f4169b2c9..000000000 --- a/src/test-suite/index-llvm14.files +++ /dev/null @@ -1,118 +0,0 @@ -./PE-benchmarks-llfiles-llvm14/strongly-connected-components.ll -./PE-benchmarks-llfiles-llvm14/z-algorithm-linear-time.ll -./PE-benchmarks-llfiles-llvm14/mergeSort_LinkedList.ll -./PE-benchmarks-llfiles-llvm14/longest-palindrome-substring.ll -./PE-benchmarks-llfiles-llvm14/merge-sort-for-doubly-linked-list.ll -./PE-benchmarks-llfiles-llvm14/kmp-algorithm.ll -./PE-benchmarks-llfiles-llvm14/program-wish-womens-day.ll -./PE-benchmarks-llfiles-llvm14/vertex-cover-problem.ll -./PE-benchmarks-llfiles-llvm14/maximum-length-chain-of-pairs.ll -./PE-benchmarks-llfiles-llvm14/sort-array-wave-form-2.ll -./PE-benchmarks-llfiles-llvm14/tower-of-hanoi.ll -./PE-benchmarks-llfiles-llvm14/magic-square.ll -./PE-benchmarks-llfiles-llvm14/optimized-naive-algorithm.ll -./PE-benchmarks-llfiles-llvm14/Iterative_QuickSort.ll -./PE-benchmarks-llfiles-llvm14/find-common-elements-three-sorted-arrays.ll -./PE-benchmarks-llfiles-llvm14/topological-sorting.ll -./PE-benchmarks-llfiles-llvm14/construction-of-lcp-array-from-suffix-array.ll -./PE-benchmarks-llfiles-llvm14/detect-cycle-in-a-graph.ll -./PE-benchmarks-llfiles-llvm14/boruvkas-algorithm.ll -./PE-benchmarks-llfiles-llvm14/birthday-paradox.ll -./PE-benchmarks-llfiles-llvm14/find-parity.ll -./PE-benchmarks-llfiles-llvm14/reservoir-sampling.ll -./PE-benchmarks-llfiles-llvm14/eulerian-path-and-circuit.ll -./PE-benchmarks-llfiles-llvm14/tug-of-war.ll -./PE-benchmarks-llfiles-llvm14/hamiltonian-cycle-backtracking.ll -./PE-benchmarks-llfiles-llvm14/quicksort-for-linked-list.ll -./PE-benchmarks-llfiles-llvm14/mobile-numeric-keypad-problem_space_optm.ll -./PE-benchmarks-llfiles-llvm14/rabin-karp-algorithm.ll -./PE-benchmarks-llfiles-llvm14/quicksort-on-singly-linked-list.ll -./PE-benchmarks-llfiles-llvm14/m-coloring-problem.ll -./PE-benchmarks-llfiles-llvm14/finite-automata-algorithm.ll -./PE-benchmarks-llfiles-llvm14/naive-algorithm.ll -./PE-benchmarks-llfiles-llvm14/union-find.ll -./PE-benchmarks-llfiles-llvm14/word-wrap.ll -./PE-benchmarks-llfiles-llvm14/bellman-ford-algorithm.ll -./PE-benchmarks-llfiles-llvm14/permutations-of-a-given-string.ll -./PE-benchmarks-llfiles-llvm14/find-two-non-repeating-element.ll -./PE-benchmarks-llfiles-llvm14/boyer-moore-algorithm.ll -./PE-benchmarks-llfiles-llvm14/euler-circuit-directed-graph.ll -./PE-benchmarks-llfiles-llvm14/cutting-a-rod.ll -./PE-benchmarks-llfiles-llvm14/min-cost-path.ll -./PE-benchmarks-llfiles-llvm14/edit-distance.ll -./PE-benchmarks-llfiles-llvm14/dfs.ll -./PE-benchmarks-llfiles-llvm14/trie-suffixes.ll -./PE-benchmarks-llfiles-llvm14/snake-ladder.ll -./PE-benchmarks-llfiles-llvm14/binary-insertion-sort.ll -./PE-benchmarks-llfiles-llvm14/egg-dropping-puzzle.ll -./PE-benchmarks-llfiles-llvm14/n-queen-problem.ll -./PE-benchmarks-llfiles-llvm14/sieve-of-eratosthenes.ll -./PE-benchmarks-llfiles-llvm14/total-number-of-non-decreasing-numbers-with-n-digits.ll -./PE-benchmarks-llfiles-llvm14/sudoku.ll -./PE-benchmarks-llfiles-llvm14/rotate-bits-of-an-integer.ll -./PE-benchmarks-llfiles-llvm14/channel-assignment.ll -./PE-benchmarks-llfiles-llvm14/bfs.ll -./PE-benchmarks-llfiles-llvm14/boolean-parenthesization-problem.ll -./PE-benchmarks-llfiles-llvm14/coin-change.ll -./PE-benchmarks-llfiles-llvm14/palindrome-partitioning.ll -./PE-benchmarks-llfiles-llvm14/largest-sum-contiguous-subarray.ll -./PE-benchmarks-llfiles-llvm14/biconnectivity.ll -./PE-benchmarks-llfiles-llvm14/weighted-job-scheduling.ll -./PE-benchmarks-llfiles-llvm14/karatsuba.ll -./PE-benchmarks-llfiles-llvm14/tarjan-algorithm.ll -./PE-benchmarks-llfiles-llvm14/the-knights-tour.ll -./PE-benchmarks-llfiles-llvm14/graph-coloring.ll -./PE-benchmarks-llfiles-llvm14/sort-n-numbers-range-0-n2-1-linear-time.ll -./PE-benchmarks-llfiles-llvm14/anagram-substring-search-search-permutations.ll -./PE-benchmarks-llfiles-llvm14/matrix-chain-multiplication.ll -./PE-benchmarks-llfiles-llvm14/minimum-positive-points-to-reach-destination.ll -./PE-benchmarks-llfiles-llvm14/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll -./PE-benchmarks-llfiles-llvm14/minimum-cost-polygon-triangulation.ll -./PE-benchmarks-llfiles-llvm14/Nearly_sorted_Algo.ll -./PE-benchmarks-llfiles-llvm14/subset-sum.ll -./PE-benchmarks-llfiles-llvm14/binomial-coefficient.ll -./PE-benchmarks-llfiles-llvm14/floyd-warshall.ll -./PE-benchmarks-llfiles-llvm14/subset-sum-problem.ll -./PE-benchmarks-llfiles-llvm14/maximum-sum-increasing-subsequence.ll -./PE-benchmarks-llfiles-llvm14/aho-corasick-algorithm.ll -./PE-benchmarks-llfiles-llvm14/cut-vertices.ll -./PE-benchmarks-llfiles-llvm14/box-stacking.ll -./PE-benchmarks-llfiles-llvm14/shortest-common-supersequence.ll -./PE-benchmarks-llfiles-llvm14/maximum-sum-rectangle-in-a-2d-matrix.ll -./PE-benchmarks-llfiles-llvm14/find-minimum-number-of-coins-that-make-a-change.ll -./PE-benchmarks-llfiles-llvm14/longest-even-length-substring-sum-first-second-half.ll -./PE-benchmarks-llfiles-llvm14/lexicographic-rank-of-a-string.ll -./PE-benchmarks-llfiles-llvm14/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll -./PE-benchmarks-llfiles-llvm14/overlapping-subproblems-property.ll -./PE-benchmarks-llfiles-llvm14/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll -./PE-benchmarks-llfiles-llvm14/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll -./PE-benchmarks-llfiles-llvm14/optimal-binary-search-tree.ll -./PE-benchmarks-llfiles-llvm14/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll -./PE-benchmarks-llfiles-llvm14/efficient-constructtion-of-finite-automata.ll -./PE-benchmarks-llfiles-llvm14/count-ways-reach-nth-stair.ll -./PE-benchmarks-llfiles-llvm14/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll -./PE-benchmarks-llfiles-llvm14/minimum-cut-in-a-directed-graph.ll -./PE-benchmarks-llfiles-llvm14/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll -./PE-benchmarks-llfiles-llvm14/collect-maximum-points-in-a-grid-using-two-traversals.ll -./PE-benchmarks-llfiles-llvm14/transitive-closure-of-a-graph.ll -./PE-benchmarks-llfiles-llvm14/largest-independent-set-problem.ll -./PE-benchmarks-llfiles-llvm14/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll -./PE-benchmarks-llfiles-llvm14/program-for-nth-fibonacci-number.ll -./PE-benchmarks-llfiles-llvm14/rat-in-a-maze.ll -./PE-benchmarks-llfiles-llvm14/mobile-numeric-keypad-problem.ll -./PE-benchmarks-llfiles-llvm14/little-and-big-endian-mystery.ll -./PE-benchmarks-llfiles-llvm14/partition-problem.ll -./PE-benchmarks-llfiles-llvm14/longest-palindromic-subsequence.ll -./PE-benchmarks-llfiles-llvm14/find-k-closest-elements-given-value.ll -./PE-benchmarks-llfiles-llvm14/dfa-based-division.ll -./PE-benchmarks-llfiles-llvm14/insertion-sort-for-singly-linked-list.ll -./PE-benchmarks-llfiles-llvm14/ugly-numbers.ll -./PE-benchmarks-llfiles-llvm14/longest-bitonic-subsequence.ll -./PE-benchmarks-llfiles-llvm14/longest-increasing-subsequence.ll -./PE-benchmarks-llfiles-llvm14/count-number-binary-strings-without-consecutive-1s.ll -./PE-benchmarks-llfiles-llvm14/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll -./PE-benchmarks-llfiles-llvm14/detect-cycle-undirected-graph.ll -./PE-benchmarks-llfiles-llvm14/count-1s-sorted-binary-array.ll -./PE-benchmarks-llfiles-llvm14/Find_the_closest_pair_from_two_sorted_arrays.ll -./PE-benchmarks-llfiles-llvm14/count-possible-ways-to-construct-buildings.ll -./PE-benchmarks-llfiles-llvm14/longest-path-directed-acyclic-graph.ll diff --git a/src/test-suite/index-llvm16.files b/src/test-suite/index-llvm16.files new file mode 100644 index 000000000..e78b56218 --- /dev/null +++ b/src/test-suite/index-llvm16.files @@ -0,0 +1,118 @@ +./PE-benchmarks-llfiles-llvm16/channel-assignment.ll +./PE-benchmarks-llfiles-llvm16/vertex-cover-problem.ll +./PE-benchmarks-llfiles-llvm16/lexicographic-rank-of-a-string.ll +./PE-benchmarks-llfiles-llvm16/dfs.ll +./PE-benchmarks-llfiles-llvm16/weighted-job-scheduling.ll +./PE-benchmarks-llfiles-llvm16/finite-automata-algorithm.ll +./PE-benchmarks-llfiles-llvm16/sudoku.ll +./PE-benchmarks-llfiles-llvm16/euler-circuit-directed-graph.ll +./PE-benchmarks-llfiles-llvm16/eulerian-path-and-circuit.ll +./PE-benchmarks-llfiles-llvm16/Iterative_QuickSort.ll +./PE-benchmarks-llfiles-llvm16/find-parity.ll +./PE-benchmarks-llfiles-llvm16/count-ways-reach-nth-stair.ll +./PE-benchmarks-llfiles-llvm16/min-cost-path.ll +./PE-benchmarks-llfiles-llvm16/box-stacking.ll +./PE-benchmarks-llfiles-llvm16/mobile-numeric-keypad-problem.ll +./PE-benchmarks-llfiles-llvm16/detect-cycle-undirected-graph.ll +./PE-benchmarks-llfiles-llvm16/birthday-paradox.ll +./PE-benchmarks-llfiles-llvm16/union-find.ll +./PE-benchmarks-llfiles-llvm16/naive-algorithm.ll +./PE-benchmarks-llfiles-llvm16/matrix-chain-multiplication.ll +./PE-benchmarks-llfiles-llvm16/maximum-sum-rectangle-in-a-2d-matrix.ll +./PE-benchmarks-llfiles-llvm16/hamiltonian-cycle-backtracking.ll +./PE-benchmarks-llfiles-llvm16/rabin-karp-algorithm.ll +./PE-benchmarks-llfiles-llvm16/mergeSort_LinkedList.ll +./PE-benchmarks-llfiles-llvm16/tarjan-algorithm.ll +./PE-benchmarks-llfiles-llvm16/quicksort-for-linked-list.ll +./PE-benchmarks-llfiles-llvm16/coin-change.ll +./PE-benchmarks-llfiles-llvm16/transitive-closure-of-a-graph.ll +./PE-benchmarks-llfiles-llvm16/biconnectivity.ll +./PE-benchmarks-llfiles-llvm16/bfs.ll +./PE-benchmarks-llfiles-llvm16/partition-problem.ll +./PE-benchmarks-llfiles-llvm16/topological-sorting.ll +./PE-benchmarks-llfiles-llvm16/magic-square.ll +./PE-benchmarks-llfiles-llvm16/aho-corasick-algorithm.ll +./PE-benchmarks-llfiles-llvm16/count-1s-sorted-binary-array.ll +./PE-benchmarks-llfiles-llvm16/z-algorithm-linear-time.ll +./PE-benchmarks-llfiles-llvm16/strongly-connected-components.ll +./PE-benchmarks-llfiles-llvm16/snake-ladder.ll +./PE-benchmarks-llfiles-llvm16/floyd-warshall.ll +./PE-benchmarks-llfiles-llvm16/quicksort-on-singly-linked-list.ll +./PE-benchmarks-llfiles-llvm16/largest-sum-contiguous-subarray.ll +./PE-benchmarks-llfiles-llvm16/trie-suffixes.ll +./PE-benchmarks-llfiles-llvm16/optimal-binary-search-tree.ll +./PE-benchmarks-llfiles-llvm16/n-queen-problem.ll +./PE-benchmarks-llfiles-llvm16/graph-coloring.ll +./PE-benchmarks-llfiles-llvm16/reservoir-sampling.ll +./PE-benchmarks-llfiles-llvm16/dfa-based-division.ll +./PE-benchmarks-llfiles-llvm16/word-wrap.ll +./PE-benchmarks-llfiles-llvm16/tower-of-hanoi.ll +./PE-benchmarks-llfiles-llvm16/palindrome-partitioning.ll +./PE-benchmarks-llfiles-llvm16/subset-sum.ll +./PE-benchmarks-llfiles-llvm16/rat-in-a-maze.ll +./PE-benchmarks-llfiles-llvm16/minimum-cut-in-a-directed-graph.ll +./PE-benchmarks-llfiles-llvm16/cutting-a-rod.ll +./PE-benchmarks-llfiles-llvm16/longest-palindromic-subsequence.ll +./PE-benchmarks-llfiles-llvm16/subset-sum-problem.ll +./PE-benchmarks-llfiles-llvm16/bellman-ford-algorithm.ll +./PE-benchmarks-llfiles-llvm16/Nearly_sorted_Algo.ll +./PE-benchmarks-llfiles-llvm16/karatsuba.ll +./PE-benchmarks-llfiles-llvm16/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll +./PE-benchmarks-llfiles-llvm16/cut-vertices.ll +./PE-benchmarks-llfiles-llvm16/sort-array-wave-form-2.ll +./PE-benchmarks-llfiles-llvm16/program-for-nth-fibonacci-number.ll +./PE-benchmarks-llfiles-llvm16/rotate-bits-of-an-integer.ll +./PE-benchmarks-llfiles-llvm16/edit-distance.ll +./PE-benchmarks-llfiles-llvm16/sieve-of-eratosthenes.ll +./PE-benchmarks-llfiles-llvm16/maximum-length-chain-of-pairs.ll +./PE-benchmarks-llfiles-llvm16/longest-even-length-substring-sum-first-second-half.ll +./PE-benchmarks-llfiles-llvm16/mobile-numeric-keypad-problem_space_optm.ll +./PE-benchmarks-llfiles-llvm16/tug-of-war.ll +./PE-benchmarks-llfiles-llvm16/the-knights-tour.ll +./PE-benchmarks-llfiles-llvm16/longest-bitonic-subsequence.ll +./PE-benchmarks-llfiles-llvm16/kmp-algorithm.ll +./PE-benchmarks-llfiles-llvm16/little-and-big-endian-mystery.ll +./PE-benchmarks-llfiles-llvm16/sort-n-numbers-range-0-n2-1-linear-time.ll +./PE-benchmarks-llfiles-llvm16/ugly-numbers.ll +./PE-benchmarks-llfiles-llvm16/binomial-coefficient.ll +./PE-benchmarks-llfiles-llvm16/efficient-constructtion-of-finite-automata.ll +./PE-benchmarks-llfiles-llvm16/boyer-moore-algorithm.ll +./PE-benchmarks-llfiles-llvm16/optimized-naive-algorithm.ll +./PE-benchmarks-llfiles-llvm16/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll +./PE-benchmarks-llfiles-llvm16/shortest-common-supersequence.ll +./PE-benchmarks-llfiles-llvm16/minimum-positive-points-to-reach-destination.ll +./PE-benchmarks-llfiles-llvm16/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll +./PE-benchmarks-llfiles-llvm16/detect-cycle-in-a-graph.ll +./PE-benchmarks-llfiles-llvm16/minimum-cost-polygon-triangulation.ll +./PE-benchmarks-llfiles-llvm16/merge-sort-for-doubly-linked-list.ll +./PE-benchmarks-llfiles-llvm16/total-number-of-non-decreasing-numbers-with-n-digits.ll +./PE-benchmarks-llfiles-llvm16/construction-of-lcp-array-from-suffix-array.ll +./PE-benchmarks-llfiles-llvm16/find-two-non-repeating-element.ll +./PE-benchmarks-llfiles-llvm16/collect-maximum-points-in-a-grid-using-two-traversals.ll +./PE-benchmarks-llfiles-llvm16/maximum-sum-increasing-subsequence.ll +./PE-benchmarks-llfiles-llvm16/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll +./PE-benchmarks-llfiles-llvm16/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll +./PE-benchmarks-llfiles-llvm16/permutations-of-a-given-string.ll +./PE-benchmarks-llfiles-llvm16/overlapping-subproblems-property.ll +./PE-benchmarks-llfiles-llvm16/largest-independent-set-problem.ll +./PE-benchmarks-llfiles-llvm16/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll +./PE-benchmarks-llfiles-llvm16/longest-palindrome-substring.ll +./PE-benchmarks-llfiles-llvm16/program-wish-womens-day.ll +./PE-benchmarks-llfiles-llvm16/longest-path-directed-acyclic-graph.ll +./PE-benchmarks-llfiles-llvm16/find-minimum-number-of-coins-that-make-a-change.ll +./PE-benchmarks-llfiles-llvm16/longest-increasing-subsequence.ll +./PE-benchmarks-llfiles-llvm16/binary-insertion-sort.ll +./PE-benchmarks-llfiles-llvm16/boruvkas-algorithm.ll +./PE-benchmarks-llfiles-llvm16/find-k-closest-elements-given-value.ll +./PE-benchmarks-llfiles-llvm16/m-coloring-problem.ll +./PE-benchmarks-llfiles-llvm16/egg-dropping-puzzle.ll +./PE-benchmarks-llfiles-llvm16/insertion-sort-for-singly-linked-list.ll +./PE-benchmarks-llfiles-llvm16/find-common-elements-three-sorted-arrays.ll +./PE-benchmarks-llfiles-llvm16/count-number-binary-strings-without-consecutive-1s.ll +./PE-benchmarks-llfiles-llvm16/Find_the_closest_pair_from_two_sorted_arrays.ll +./PE-benchmarks-llfiles-llvm16/boolean-parenthesization-problem.ll +./PE-benchmarks-llfiles-llvm16/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll +./PE-benchmarks-llfiles-llvm16/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll +./PE-benchmarks-llfiles-llvm16/anagram-substring-search-search-permutations.ll +./PE-benchmarks-llfiles-llvm16/count-possible-ways-to-construct-buildings.ll +./PE-benchmarks-llfiles-llvm16/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll diff --git a/src/test-suite/oracle/FA_llvm14_f/ir2vec.txt b/src/test-suite/oracle/FA_llvm14_f/ir2vec.txt deleted file mode 100644 index a5c0fedba..000000000 --- a/src/test-suite/oracle/FA_llvm14_f/ir2vec.txt +++ /dev/null @@ -1,1677 +0,0 @@ -PE-benchmarks/strongly-connected-components.cpp__Graph::Graph(int) = -0.095979 -2.267847 2.871178 1.668742 -0.457873 1.676422 1.325861 -1.355719 1.308269 0.659367 -0.858477 0.550904 -1.606519 -1.030043 0.173252 -0.236953 -2.060444 -1.519766 0.139369 -0.668738 -0.358266 -1.534393 -0.510638 1.677049 0.473040 1.010871 0.079684 -0.135427 -2.459574 -0.633033 1.197444 -0.126621 0.679388 2.309849 1.630806 -2.035246 1.498935 1.556992 -0.193315 -2.558463 -0.033952 -0.145055 -0.814214 0.534219 0.369921 0.556388 0.420222 1.918562 -0.297569 0.329314 0.147668 -1.358417 0.228806 2.444110 0.785962 1.999492 2.230763 -0.205122 1.218865 1.259539 0.726761 -0.277871 0.629516 1.454067 -0.238737 0.335689 0.547900 -1.183201 -1.380734 1.262023 0.544978 -1.607784 -0.365840 -1.337303 -1.441946 -0.213141 -2.750659 1.974262 3.084754 -1.584940 2.669416 1.127071 2.108289 -0.874479 2.153173 -0.174095 2.524667 0.810721 -1.453760 0.668404 -2.555292 -2.168911 0.113658 -0.445328 -1.104809 -0.236480 1.386814 -2.368034 -2.212793 1.802435 0.079351 -0.270351 -0.870022 0.395403 1.081694 0.369897 -1.492597 -1.979373 -1.453911 1.530042 -1.874640 -0.194909 0.129673 1.459899 -0.680228 -0.316249 -1.049916 -0.116349 1.803130 -1.138190 -0.513436 2.343131 -0.842499 1.498813 -0.385899 -0.567291 -0.042325 0.866259 0.628133 0.052305 0.975437 -0.725342 -1.542577 1.155413 0.158293 1.340636 0.407795 0.239158 1.575732 1.315169 0.146387 1.257263 -1.189025 1.186264 0.030065 -0.495734 -1.584399 -1.286546 -0.578610 -1.905091 0.297577 -1.248387 -1.072026 0.571968 1.835538 2.154456 -0.509946 0.957896 -1.507454 0.791524 -0.455455 0.371251 -0.709726 -0.036918 0.556266 -1.119017 -1.376509 0.238351 0.787280 0.453918 1.168296 -1.497879 -0.667313 -1.308698 -2.152850 0.670409 0.746882 -0.162878 1.513361 1.621516 0.909434 -1.875740 -0.270969 -0.058203 -0.078397 -0.202491 -0.402191 -2.082959 0.789955 0.174740 0.864806 1.702490 -0.223301 -0.065794 0.363358 -0.311991 0.257356 -1.245231 0.525258 -1.323600 -0.102697 -0.856490 0.794836 -1.176330 -1.158013 -1.165934 -0.685772 2.367730 -1.187357 -1.987191 2.152755 -0.819077 1.521450 -1.756593 0.972325 -0.804808 1.619240 -0.027215 -0.317000 -0.502706 0.193996 0.038368 0.504923 0.382608 -1.047864 1.097380 1.581149 0.196626 0.778798 0.910018 0.998492 -1.442644 -0.916858 -1.565437 1.420812 -0.229315 -0.913996 -0.139321 -1.052747 1.327816 -0.089551 -0.201941 1.000656 1.040354 0.053563 0.372845 0.763984 -0.833019 -1.196992 0.297533 0.833073 1.239485 -1.033632 -0.347122 -0.541320 -0.011795 0.154590 0.037242 -2.195318 -1.620386 -1.958178 -1.667918 -1.566025 -0.844904 1.066708 0.723960 0.335404 -1.829895 -1.099580 0.650770 -0.659007 -0.113656 1.323815 1.503194 2.031762 1.739120 0.078633 -0.016480 0.320542 0.788353 -1.752451 -0.416224 -1.136418 0.352538 -1.794573 1.756711 1.435500 0.893011 1.084276 -0.553660 2.232983 -1.911537 1.726873 1.809489 -1.804874 0.014147 1.607751 1.502291 -0.151153 -1.539419 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/strongly-connected-components.cpp__Graph::DFSUtil(int, bool*) = -0.597766 -4.926034 7.900773 7.017448 -0.972869 3.700298 0.165702 -5.015028 4.156542 1.797336 -1.734293 2.641148 -4.292107 1.015376 -2.335113 2.483892 -5.337598 -3.791692 -1.813490 -3.358450 -2.520894 -3.648390 -0.160246 3.658858 2.442817 3.594878 -3.318317 0.780759 -5.477320 -5.378009 2.580605 -0.502069 3.276443 2.290568 1.576541 -10.201720 5.349294 6.197671 -1.319170 -5.916340 0.939753 -2.710031 -1.867248 -0.890734 -2.048036 1.475069 -0.392113 1.877078 1.774099 0.925733 1.117316 1.257879 2.478919 8.391500 -1.131927 5.518690 4.042401 0.254577 0.317647 0.908342 1.635983 1.505705 3.194964 3.066585 -1.086026 -3.538182 -0.404136 -1.253001 -4.382436 4.176373 0.289752 -2.672943 -3.223854 -2.674223 -4.313800 -1.186601 -2.529598 3.824202 7.956770 -4.120386 5.578510 2.069161 2.120606 -0.672586 4.030868 -0.811412 6.336662 2.411129 -2.214943 0.418247 -3.206269 -1.719082 1.320718 1.209591 -4.705191 -4.956825 3.426311 -8.114169 -6.826411 2.815706 1.566539 -1.920910 -3.191524 -1.071235 2.615023 0.934498 -2.558145 -5.243688 -1.837372 3.136229 -0.735265 -2.953640 -1.058272 0.688880 -0.166541 0.068391 -6.070416 0.051701 2.333529 -2.760996 -1.050816 5.078807 -0.113771 1.311444 -1.140040 1.018979 -1.222528 3.991901 -0.421046 2.776386 -0.197992 1.515687 -2.243989 1.043230 1.743532 0.876792 -2.654008 -1.499846 0.205125 2.293343 -1.471944 2.358658 -2.919878 3.052156 3.818920 -0.858960 -3.617564 -3.501756 -2.330729 -6.937746 0.350103 -3.863962 -3.928376 1.478926 4.689011 2.919415 2.267879 4.558271 -3.726891 2.627913 0.014696 0.490368 2.632214 -0.380660 2.245197 -3.029716 -5.167372 3.634766 1.902769 2.128690 1.269173 -1.168185 -0.527977 -2.969196 -3.327380 3.510085 1.683733 0.148831 5.526672 3.892364 7.580372 -4.719982 2.115820 1.331428 -1.806432 1.281778 -0.596246 -6.343876 1.993328 1.262433 1.582230 6.905612 -0.818259 -1.841820 1.577055 -0.340015 1.518229 -4.662870 3.121992 -4.280973 -0.429627 -3.909552 0.645168 -1.949225 -2.024302 -3.177636 -2.147899 6.897376 -6.863537 -4.793028 6.470231 -0.163080 2.917940 -6.970596 2.869177 -3.022951 5.007255 -1.168833 -1.583463 0.248374 -0.926083 -2.731982 1.340243 2.985043 -3.200618 2.000254 5.445714 1.166943 0.907135 0.670512 3.594208 -1.628012 1.958716 -4.098370 5.508540 0.433549 -2.256511 -0.981021 -2.725852 0.740884 -1.958094 0.629015 3.268340 4.200303 1.506152 1.025218 3.446112 2.491924 -3.215798 3.265988 0.027406 1.616783 -3.095183 -1.185572 0.004181 1.673107 -0.789012 2.771782 -6.796394 -6.287125 -7.012343 -5.095585 -1.360116 -0.660148 2.548664 0.280524 -0.841863 -5.407590 -5.036384 5.752133 -2.462005 4.664329 3.630819 3.724558 4.445236 5.106909 -1.230253 0.032085 -0.575483 1.088150 -1.501588 -1.200527 -3.611760 4.697527 -1.849655 3.212736 5.566202 -1.089500 3.250164 -0.361750 4.357061 -3.774505 7.240242 2.957375 -4.038495 2.772088 3.468503 5.025559 -0.354838 -3.926650 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/strongly-connected-components.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator*() const = -0.107449 -0.366818 1.350405 0.841106 -0.326674 0.361028 0.046243 -0.992010 1.129336 0.241823 -0.314771 -0.552442 -0.610027 -0.045078 -0.307155 0.300972 -0.967797 -0.450190 -0.467201 -0.915820 -0.217738 -0.756600 0.413516 -0.071676 0.313783 0.398759 -0.209971 0.291571 -0.106600 -0.880247 1.026756 -0.150341 0.366915 0.301828 0.044260 -1.661320 1.099512 0.621566 -0.362651 -0.644824 0.084903 0.006337 -0.394263 0.132446 -0.420398 0.239975 -0.296965 0.575627 0.440024 0.185287 0.426322 -0.181519 0.156771 1.411744 -0.524413 0.529123 0.057913 -0.009532 -0.065399 0.635946 0.134830 0.473781 0.191048 0.732376 0.264935 -0.497566 0.403057 -0.337549 -1.004258 1.031648 -0.405745 -0.566168 -0.220706 -0.417036 -0.478541 0.013173 -0.704305 0.692949 1.156931 -0.474035 0.599203 0.242426 0.065506 -0.167402 -0.154150 -0.138102 0.832693 0.221004 -0.137729 -0.123932 -0.117306 -0.371805 0.314570 -0.283237 -0.485107 -0.869666 0.732698 -1.020645 -0.605966 0.177076 0.540485 -0.286076 -0.490475 -0.140110 0.252046 -0.015275 -0.206991 -0.588728 -0.248054 0.492997 -0.168604 0.106941 -0.111344 0.277933 -0.110309 0.038362 -0.800683 -0.082053 -0.225606 -0.266262 -0.110167 0.598709 -0.229977 -0.238879 0.145753 0.416682 -0.270878 0.672638 -0.195972 0.699153 -0.052840 0.585015 -0.229348 -0.008431 0.391323 0.190041 0.347465 -0.223890 -0.103915 0.248207 -0.743311 0.228657 -0.536864 -0.241917 0.708951 -0.320100 -0.366771 -0.071788 -0.414393 -1.347115 -0.021357 -0.731976 -0.606887 0.535833 0.622514 1.035716 0.492175 0.978609 -1.144171 0.252516 -0.374526 -0.252123 0.080901 0.027952 0.324183 -0.214338 -0.560354 -0.003046 0.040460 0.396711 0.184322 -0.544657 -0.302391 -0.748151 -0.198329 0.606753 0.242933 -0.149176 0.153532 0.783632 0.734485 -0.920006 0.373093 0.703951 -0.206722 -0.032973 0.253684 -1.009019 0.221822 0.179969 0.296684 0.553103 -0.107705 0.190171 0.000539 -0.538331 0.075723 -0.620725 -0.035864 -0.494147 0.092091 -0.677194 0.235213 -0.532453 -0.245617 -0.132624 -0.262866 0.645904 -0.871446 -0.608522 1.464462 -0.018075 0.260600 -0.554457 0.475720 -0.320401 0.800591 -0.177018 0.011149 -0.263156 -0.224126 -0.297259 -0.026389 0.028762 -0.126554 0.470324 1.170662 0.322542 0.010085 -0.068683 0.940652 -0.563640 0.509588 -0.687553 0.632293 -0.067685 -0.533555 -0.065729 -0.389892 -0.163850 -0.639384 0.302719 0.690052 0.706275 0.178015 0.527500 0.207051 0.526336 -0.155539 0.688125 0.285779 0.139578 -0.252130 -0.061160 0.545705 0.406185 -0.688573 0.345123 -0.925256 -1.129163 -1.225639 -0.765552 -0.331933 -0.638462 0.356988 -0.150985 0.012027 -0.450775 -0.697144 0.925402 -0.306673 0.582673 0.265174 0.386021 0.422377 1.106700 -0.482514 0.194737 0.153799 0.277539 -0.243839 -0.361576 -0.623216 1.003774 -0.248516 0.071747 0.949014 -0.278563 0.356854 -0.044057 0.410187 -0.771269 0.811242 0.386773 -0.061584 0.680127 0.201035 0.845905 0.679020 -0.376625 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/strongly-connected-components.cpp__Graph::getTranspose() = 0.035327 -4.267048 7.295780 6.644441 -0.865794 2.961557 0.062065 -4.807029 4.029722 2.161371 -1.620481 2.838848 -3.512434 1.275743 -1.890381 3.393662 -4.900346 -3.223463 -1.635899 -2.859104 -2.130848 -3.377190 0.587127 2.688765 2.474819 3.471704 -3.059143 0.998963 -4.014457 -6.900424 1.994665 -0.586291 3.053184 1.449127 1.253016 -9.218209 5.471246 5.611705 -1.303053 -5.701946 1.072428 -1.890746 -2.045094 -0.662409 -1.783744 1.963794 -0.430772 2.005948 1.625732 1.792461 1.315874 1.472091 3.134083 6.991431 -1.120002 4.924819 3.781911 0.252113 0.097023 0.520346 1.651534 1.685861 2.633547 3.067962 -0.340587 -3.541897 -0.853112 -0.812003 -4.351525 3.783737 -0.223363 -2.674833 -3.555917 -2.442482 -3.286745 -0.609393 -3.217092 3.343124 7.319736 -3.484413 4.998028 1.678900 1.447738 -0.962931 2.971093 -0.745582 5.029771 2.472664 -1.862553 0.197448 -1.598057 -2.466733 1.551512 0.989423 -4.245715 -4.435346 3.105393 -6.671510 -5.777808 2.469787 1.741034 -1.955419 -2.753027 -1.155605 2.309702 1.223119 -2.036548 -4.658097 -1.262099 2.349380 -0.011868 -2.837115 -1.322797 0.892244 -0.398122 0.894780 -5.778024 -0.003593 2.071310 -2.453320 -0.623604 3.858255 0.095651 0.956467 -1.273628 0.936900 -1.039277 3.812415 -0.270911 3.319710 0.129426 2.071936 -1.946049 1.876123 1.969471 -0.087549 -2.365796 -0.980611 -0.144288 2.061226 -1.280039 2.327164 -2.893507 2.538499 4.335060 -0.407852 -3.651433 -2.975497 -2.625844 -6.098914 0.946363 -3.762030 -3.050040 1.616489 4.181233 1.503180 2.226797 4.148212 -4.213439 2.046453 0.006690 0.654847 2.498044 -0.079341 1.914154 -2.539104 -4.548252 3.905503 2.004881 1.598121 1.158009 -0.805128 0.001713 -2.594991 -2.701379 3.997220 1.379185 -0.008669 4.479498 2.988749 7.517111 -2.740153 1.534431 1.393335 -1.513228 1.108229 -0.528280 -5.713867 2.110915 0.819360 2.602126 6.032379 -0.601718 -1.434887 1.605409 -0.403125 1.153432 -4.078074 3.131767 -3.738587 -0.183502 -3.091021 0.502060 -1.230111 -1.609748 -2.286218 -1.099063 6.205427 -5.590012 -4.168077 5.740355 -1.173624 2.468565 -6.038377 3.428860 -2.707829 3.943758 -0.911842 -1.214376 0.577252 -1.611912 -2.564291 0.667428 2.785773 -2.030416 1.455293 5.113886 1.027970 -0.012361 0.479545 3.005489 -1.594236 2.343103 -3.288109 4.953599 0.261748 -1.334475 -1.073946 -2.243188 0.324293 -2.453930 0.159644 3.242484 3.310152 1.080919 1.074936 2.470971 2.766000 -3.164608 3.747851 0.199571 1.311226 -2.772882 -1.133180 0.436004 1.590040 -0.944399 2.886364 -5.700595 -5.295358 -6.507594 -4.724308 -1.648023 -0.383012 3.182175 -0.594652 -0.909185 -4.405893 -4.688562 6.347689 -1.927287 3.625872 3.470145 3.144924 3.657882 4.275622 -0.804386 0.265922 -1.569385 0.776430 -0.928271 -1.167606 -2.600631 4.056679 -1.784715 2.130216 4.906704 -1.133087 2.777326 -0.967102 3.945481 -3.004825 6.240043 2.454429 -2.924844 2.705328 2.888022 4.195569 -0.682732 -3.504911 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::push_back(int const&) = -0.085380 -0.930900 1.945260 1.708822 -0.285783 0.635872 0.114133 -1.353850 1.506059 0.376899 -0.067819 0.342806 -1.073812 0.606120 -0.288856 1.040788 -1.525379 -0.990867 -0.506204 -1.076484 -0.850749 -0.992763 0.430361 0.250224 0.639610 0.451568 -0.961209 -0.003198 -0.976160 -0.939302 1.097763 -0.399690 0.817360 0.200931 0.262034 -3.368278 1.425328 0.911442 -0.497255 -1.375065 0.242036 -0.832808 0.140978 -0.606392 -0.469205 0.216984 -0.181871 0.502328 0.994854 0.292988 0.378516 0.476908 0.166876 2.616431 -0.978686 1.020922 0.483598 -0.061988 -0.396557 0.300375 0.414138 0.499471 0.851686 0.814568 -0.276556 -1.132826 -0.225280 -0.654969 -1.402194 1.259315 -0.013263 -0.400858 -1.118264 -0.509900 -0.988812 -0.506919 -1.304607 1.283676 1.975257 -1.342364 1.001074 0.235795 0.548388 0.101594 0.859904 -0.080377 1.632847 0.435025 -0.633614 0.087729 -0.567827 -0.374934 0.334082 -0.199316 -0.655744 -1.772952 0.635330 -1.275595 -1.506606 0.682215 0.590086 -0.007002 -1.311362 -0.549509 0.829100 0.467478 -0.848325 -1.421908 -0.548444 0.529557 0.165841 -0.573301 0.042518 -0.392173 -0.241964 -0.609435 -1.624381 -0.208413 0.233124 -0.674645 -0.472828 1.290256 -0.578237 -0.066416 -0.157349 0.360989 -0.540189 1.451476 -0.262172 0.941812 0.062214 0.321447 -1.111556 0.197968 0.531604 0.948342 -0.160045 -0.149014 -0.566815 0.401086 -1.015895 0.216758 -0.200599 0.611621 1.206090 -0.287405 -1.054058 -0.469611 -0.164743 -1.902214 0.358808 -1.132533 -0.371169 0.679310 1.155875 1.116064 0.938880 1.374871 -1.175703 0.788921 -0.329824 0.035881 1.127585 0.289462 0.771478 -0.686387 -1.070355 0.663894 0.309603 0.388315 0.350420 -0.476832 -0.009150 -0.986376 -0.578915 0.524856 0.697287 -0.113721 0.988533 0.767921 1.624602 -1.527722 0.579584 0.748975 -0.280602 0.339971 -0.147646 -1.480077 0.587139 0.319124 -0.025675 1.147233 -0.311938 -0.726554 0.281744 -0.217972 0.572149 -0.893849 0.133331 -0.915216 -0.249967 -1.098426 0.222797 -0.582441 -0.446288 -0.543180 -0.444482 1.624300 -1.384425 -1.052981 1.872003 -0.460754 0.860401 -1.693141 1.373654 -0.768692 1.029095 -0.698313 -0.212187 -0.136026 0.212074 -0.748054 0.410042 0.746071 -0.497975 0.208872 1.790081 0.455388 0.317170 0.072114 1.206721 -0.126156 0.768731 -0.646561 1.634709 -0.195124 -0.323301 0.059859 -0.645901 0.144965 -0.584246 0.376780 1.246090 1.042358 0.557408 0.721803 0.889218 0.908277 -0.792465 0.905686 -0.137519 0.417440 -0.672456 -0.054868 0.280606 0.553013 -0.553314 0.582048 -1.503536 -1.764982 -1.606332 -1.040347 -0.190462 0.087610 0.230735 -0.280839 -0.170860 -1.195406 -0.918588 0.996996 -0.686000 0.944969 0.665873 0.643776 1.051886 1.636094 -0.775505 -0.209932 0.022234 -0.069783 -0.154580 -0.220639 -1.131166 1.300215 -0.824532 0.501864 1.444709 -0.379206 0.465442 0.056390 1.230512 -0.768774 1.768530 0.640878 -0.505769 1.072537 1.123884 1.569292 0.479379 -0.866744 -PE-benchmarks/strongly-connected-components.cpp__Graph::addEdge(int, int) = -0.241538 -1.025787 1.547210 1.480589 -0.135560 0.633213 0.321742 -0.896814 0.953929 0.762657 -0.092302 0.406374 -1.037291 0.357683 0.017048 0.830248 -1.076271 -0.810544 -0.292457 -0.715531 -0.691206 -0.848625 0.095977 0.480223 0.538749 0.234157 -0.697822 -0.132984 -0.889856 -0.947219 0.533044 -0.265417 0.748330 0.370800 0.304791 -2.640009 1.024491 0.888718 -0.316447 -1.109648 0.127906 -0.616226 0.136086 -0.295065 -0.392839 0.279400 0.099487 0.271479 0.677363 0.297939 0.500316 0.060715 0.494568 2.150950 -0.505829 1.006538 0.606818 -0.112616 -0.063846 0.183201 0.348265 0.143492 0.755888 0.650530 -0.199558 -0.703134 -0.245276 -0.469325 -1.039066 0.921830 0.074561 -0.354870 -0.982836 -0.530526 -0.698375 -0.519695 -1.514590 0.944282 1.732957 -1.146988 1.130787 0.489290 0.547798 0.035462 0.876405 -0.080051 1.350136 0.339432 -0.658541 0.320253 -0.288969 -0.442642 0.218811 0.195265 -0.619535 -1.204143 0.516676 -0.851426 -1.409856 0.798010 0.245445 -0.025721 -1.002909 -0.391946 0.574801 0.352935 -0.775677 -1.315198 -0.677949 0.420134 0.031016 -0.540525 -0.063072 -0.213024 -0.185407 -0.304148 -1.319909 -0.225089 0.339509 -0.772590 -0.469030 1.141581 -0.232197 0.352468 -0.086752 0.198168 -0.306576 1.166315 0.062666 0.782934 0.060162 0.112887 -1.321595 0.106470 0.490523 0.542634 -0.129233 -0.152671 -0.212395 0.405085 -0.535921 0.543574 0.044002 0.908883 1.081383 -0.172549 -0.880045 -0.608874 -0.159409 -1.402583 0.394052 -0.929609 -0.212472 0.439750 0.957967 0.659518 0.550099 1.039139 -0.845872 0.734183 -0.291660 0.034480 0.700809 0.164883 0.614097 -0.620234 -0.919578 0.582030 0.606545 0.383416 0.352233 -0.450059 0.018852 -0.632692 -0.579085 0.415313 0.410058 -0.251530 0.999325 0.653619 1.989876 -1.130682 0.491772 0.424079 -0.145239 0.279967 -0.132811 -1.305133 0.579803 0.187316 -0.247961 0.961096 -0.245583 -0.605857 0.390858 -0.300617 0.387298 -0.849517 0.376703 -0.789559 -0.148689 -0.910894 0.187547 -0.499496 -0.479342 -0.356735 -0.044631 1.439246 -1.143013 -0.699085 1.288555 -0.234404 0.498541 -1.386109 1.639364 -0.594235 0.738741 -0.762027 -0.548923 -0.074980 0.513180 -0.296827 0.279910 0.649441 -0.541197 0.169466 1.387166 0.284376 0.293892 0.239298 0.945942 0.022663 0.354644 -0.549996 1.282361 -0.028399 -0.142481 -0.152800 -0.571772 0.358562 -0.205464 0.137485 0.872151 0.933636 0.099724 0.332386 0.806898 0.522772 -0.624278 0.615871 -0.067592 0.654117 -0.732140 -0.061242 -0.045504 0.336508 -0.371127 0.497730 -1.316748 -1.139596 -1.102406 -0.567018 -0.486097 0.508303 0.337677 0.011043 -0.104183 -1.069260 -0.808689 0.994921 -0.616732 0.271500 0.548329 0.609021 1.033029 1.231900 -0.163205 -0.317013 -0.164579 -0.073344 -0.238260 -0.103842 -0.677435 0.868053 -0.850833 0.666857 0.935398 -0.217105 0.431038 0.177489 1.153609 -0.786779 1.505270 0.598333 -0.530489 0.807998 1.257115 1.232536 -0.102292 -0.737349 -PE-benchmarks/strongly-connected-components.cpp__Graph::fillOrder(int, bool*, std::stack > >&) = -0.751145 -5.198800 8.301719 7.433675 -0.770016 3.869302 0.402460 -5.351599 4.794387 2.482048 -1.651290 2.657645 -4.654784 1.219437 -2.215606 3.081019 -5.493188 -4.132336 -1.766165 -3.621748 -2.783988 -4.090182 0.144375 3.434939 2.642965 3.253783 -3.553893 0.576818 -5.661646 -5.965855 2.845249 -0.801334 3.516971 2.040108 1.459644 -11.134529 5.804641 6.280688 -1.467955 -6.233555 0.936777 -2.840288 -1.639142 -0.823060 -1.965696 1.574510 -0.292581 1.910538 2.240270 1.212050 1.665165 1.220940 2.615010 9.158603 -1.635164 5.799785 3.911010 0.177092 0.113848 1.109038 1.783325 1.574405 3.582949 3.488678 -1.109615 -3.765192 -0.477659 -1.296290 -5.024945 4.526774 0.202595 -2.690591 -3.637706 -2.614755 -4.229099 -1.391114 -3.126540 3.993923 8.652803 -4.311854 5.983251 2.246842 2.352219 -0.751744 4.186278 -0.889316 6.762475 2.476329 -2.655076 0.342426 -3.106391 -1.773039 1.313433 1.434909 -4.649530 -5.172444 3.503004 -7.799317 -7.227114 3.068279 1.646832 -1.640843 -3.865572 -1.221196 2.994136 1.109559 -2.879106 -5.857560 -2.215156 3.054117 -0.720677 -3.170129 -1.035698 0.140159 -0.389306 0.005188 -6.403702 -0.432029 2.271614 -3.253686 -1.513025 5.342017 -0.335678 1.385121 -1.125045 1.221629 -1.261386 4.206627 -0.375486 3.318454 0.058816 1.518186 -3.121812 1.027109 1.931195 1.114216 -2.430652 -1.385670 -0.114112 2.346517 -1.817926 2.586320 -2.794786 3.347051 4.505623 -0.880652 -3.910116 -3.421654 -1.926969 -7.348720 0.733348 -4.308856 -3.723230 1.338933 5.021082 2.902474 2.594864 5.036185 -4.196007 3.071483 -0.200348 0.588730 3.039851 -0.323796 2.525822 -3.202924 -5.397962 3.693815 2.393064 2.000411 1.378275 -1.489579 -0.509617 -3.256386 -3.445910 3.458240 1.714606 -0.086770 5.619773 3.804270 8.628862 -5.236843 2.329862 1.647503 -1.640646 1.458876 -0.663141 -6.881916 2.267183 1.247292 1.508678 7.007800 -0.887631 -2.257548 1.694521 -0.501863 1.645474 -4.890644 3.228682 -4.583109 -0.518157 -4.098497 0.621938 -2.110089 -2.180454 -3.063335 -1.779824 7.260232 -6.794473 -5.018119 6.933545 -0.487018 2.910209 -7.464824 3.796267 -3.287006 4.877453 -1.716431 -1.687886 0.081231 -0.311678 -2.688051 1.363786 3.232366 -3.227660 2.286071 6.128583 1.243901 1.067896 0.776269 3.946984 -1.452536 2.009435 -4.043517 6.029780 0.427545 -2.198538 -1.054595 -2.957455 0.971796 -2.077790 0.562268 3.479564 4.642740 1.160681 1.231432 3.653525 2.720466 -3.425920 3.713393 0.041556 1.936238 -3.229659 -1.050423 0.069535 1.640361 -1.123865 3.134116 -7.137728 -6.581421 -6.905366 -5.257430 -1.566515 -0.196156 2.640373 0.162275 -0.726405 -5.740704 -5.124234 5.986079 -2.624692 4.624697 3.715551 3.936763 4.660888 5.540718 -1.327266 -0.226979 -0.921302 0.776002 -1.624310 -1.414773 -3.571448 4.853732 -2.239358 3.444043 5.613762 -1.114804 3.051692 -0.349880 4.613209 -3.947075 7.683404 3.192149 -3.732607 3.282890 3.697161 5.817776 -0.488466 -4.104251 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = 0.247802 -1.022171 2.463501 2.221989 -0.248550 0.729948 0.066720 -1.792920 1.630194 0.980613 -0.169901 0.594561 -1.098957 0.784875 -0.494150 1.632898 -1.711727 -0.969707 -0.714040 -1.303565 -0.992001 -0.999606 0.596474 0.144550 0.957860 0.535711 -1.174555 0.023881 -0.914915 -2.072830 0.802980 -0.345434 0.839843 -0.154246 0.302004 -3.285149 1.927330 1.356361 -0.639446 -1.655428 0.425531 -0.676201 -0.212269 -0.308282 -0.404707 0.432335 -0.324261 0.610682 1.067942 0.748356 0.742312 0.820481 0.851860 2.906977 -0.887168 1.345954 0.719001 0.057988 -0.313050 0.460921 0.522980 0.726943 0.787323 0.816584 0.128753 -1.434604 -0.449736 -0.410474 -1.369032 1.463971 -0.231400 -0.882834 -1.344268 -0.743687 -0.962786 -0.355127 -2.179656 1.429772 2.219941 -1.500781 1.021414 0.355976 0.330751 0.006984 0.851811 -0.212397 1.747334 0.661762 -0.483701 0.026070 -0.067728 -0.663513 0.634175 -0.271892 -1.102535 -2.303422 0.935209 -1.611438 -1.793270 0.885975 0.870313 -0.325898 -1.184963 -0.694876 0.813404 0.436411 -0.847050 -1.508010 -0.479563 0.646937 0.369925 -0.799842 -0.121421 -0.463641 -0.168571 0.088929 -1.958875 -0.033415 0.295687 -0.659369 -0.562378 1.316343 -0.045701 -0.136989 -0.305052 0.475605 -0.548247 1.501126 -0.361075 1.509193 -0.031820 0.987972 -1.142670 0.811308 0.840403 -0.070097 -0.257977 0.137132 -0.683219 0.566558 -1.092851 0.782744 -0.651718 0.843739 1.578562 -0.208425 -1.332880 -0.574672 -0.433445 -2.009913 0.509881 -1.237995 -0.785476 0.443776 1.341847 0.954667 1.084707 1.222870 -1.458524 0.521534 -0.247619 0.215208 1.245524 0.006682 0.777119 -0.781034 -1.350814 0.908116 0.655957 0.340905 0.351113 -0.293107 0.079757 -1.002565 -0.412794 0.855315 0.683169 -0.347473 1.224658 0.973512 2.363951 -1.166677 0.541163 0.883228 -0.507272 0.381714 -0.263955 -1.844444 0.577042 0.359069 0.602532 1.615540 -0.284337 -0.537686 0.473905 -0.333775 0.543031 -0.959627 0.392663 -1.126429 -0.329114 -1.029700 0.315040 -0.470955 -0.383314 -0.512903 -0.425496 1.902189 -1.740034 -1.004898 2.244568 -0.812256 0.503869 -1.726978 1.868872 -0.847515 0.823773 -0.562440 -0.232376 -0.067849 0.124401 -1.098220 0.414272 0.880672 -0.516024 0.292586 2.074094 0.440393 0.133691 -0.064843 1.305850 -0.478246 1.034652 -0.875004 2.052947 -0.219277 -0.289389 -0.243884 -0.673616 -0.055111 -0.979902 0.289655 1.246300 0.779433 0.442290 0.513269 0.804444 1.292196 -1.018387 1.578641 -0.095241 0.288448 -0.902024 -0.156124 0.493856 0.400862 -0.628116 0.864306 -1.782697 -1.561470 -2.137287 -1.028817 -0.260942 0.068467 0.611809 -0.566547 -0.433344 -1.216970 -1.440913 1.806205 -0.717920 0.300323 1.001265 0.783157 1.135872 1.777846 -0.482573 0.185818 -0.631857 -0.201567 -0.016179 -0.587995 -0.833673 1.545864 -0.700901 0.406730 1.599950 -0.355584 0.767168 0.012036 1.019770 -0.887884 1.835567 0.640025 -0.366073 1.143968 1.460146 1.782084 0.048074 -1.035245 -PE-benchmarks/strongly-connected-components.cpp__Graph::printSCCs() = -3.892354 -10.692083 14.127163 12.109815 2.058322 8.002413 3.249832 -7.740467 8.363148 8.807357 -4.246015 4.436008 -8.393554 -1.922411 -1.183457 4.677193 -6.419043 -8.386244 -0.560989 -3.796815 -2.435193 -8.295330 0.531280 6.136628 3.963186 5.465202 -5.051904 0.538713 -10.929171 -16.110167 4.956601 -1.081135 6.584439 4.581457 1.055484 -18.067307 11.828556 12.569730 -2.333083 -11.969773 1.815531 -1.805425 -5.031983 2.799302 -1.572692 5.550383 1.700764 3.671567 0.942980 4.910470 4.904064 -1.623340 7.438229 13.393948 0.158269 12.110719 10.014713 1.155841 2.355715 3.509757 2.942593 1.595947 6.926488 8.286479 -2.443570 -2.478644 0.709629 -1.216596 -11.304934 6.686379 -0.618062 -6.763997 -4.328430 -4.182706 -4.184312 -0.561269 -2.637205 4.272960 15.883778 -5.448073 14.566351 6.031855 7.123707 -3.147389 5.307288 -2.034112 8.720053 5.229358 -6.414130 -1.800297 -8.203156 -6.735546 0.867287 3.597140 -9.058004 -2.240361 6.735422 -9.688462 -12.494569 5.953279 0.684787 -3.178504 -8.298191 -0.138958 6.366580 2.163831 -3.076313 -10.469045 -6.588870 6.371168 -5.919488 -4.993599 -4.325663 1.645873 -2.561354 3.330128 -10.037402 -1.095568 5.882806 -7.444359 -3.873934 8.885976 -2.151523 4.871888 -2.357349 1.461189 -1.548143 4.490570 2.586252 5.416823 5.332645 -0.089374 -8.708170 3.298228 3.697299 1.117201 -4.361328 -2.294790 2.106915 4.148499 -0.396527 7.166491 -5.740689 5.232300 9.706849 -1.123816 -6.952580 -7.687769 -3.346673 -13.016887 3.462590 -7.578780 -3.789480 2.725701 9.243117 2.131332 3.354866 10.311864 -11.035991 6.349701 -1.042026 1.954835 0.653640 -0.176763 3.386244 -5.616990 -10.035193 6.517426 8.218155 1.506892 3.311958 -4.048495 -1.232232 -5.635438 -8.622338 6.677809 -0.342432 -0.120822 7.934261 5.989855 19.805661 -8.077207 1.801843 1.890888 -2.110480 1.980927 -0.951555 -13.072304 4.655945 1.180334 5.482174 14.131538 -0.271701 -4.237788 3.059816 -0.900415 0.500349 -8.720401 9.681427 -9.055395 -0.709728 -4.614512 -1.383686 -4.076963 -5.105703 -4.606805 -0.277981 13.038619 -5.631066 -10.791495 9.572333 -3.094765 1.953048 -13.819336 8.442113 -6.207193 6.500467 -2.307520 -3.894571 -1.421438 -0.672978 -0.986292 -0.792910 4.191604 -5.939293 7.505723 11.601400 1.587703 1.067402 2.600822 4.465506 -3.003446 0.651422 -7.443380 8.075976 0.008494 -3.936118 -2.578028 -5.327633 5.257373 -3.388742 -3.548246 4.253937 9.657278 -2.780083 1.030870 5.544134 3.211344 -6.782960 6.241763 3.306661 6.224342 -4.933411 -2.539307 -1.542942 0.712764 -0.931006 6.488309 -12.460755 -9.385611 -7.934826 -13.357570 -5.199607 0.268658 7.069261 0.992311 0.594997 -11.614433 -8.735177 10.212863 -4.003084 7.020606 7.205806 8.296690 8.946706 8.612529 -1.189305 -1.376725 -3.024089 0.798346 -6.415556 -3.965383 -3.582272 7.161003 -2.054259 7.197981 6.446872 -0.307372 4.692250 -3.811117 6.529900 -7.088754 14.115015 6.495402 -5.259138 4.332507 1.308176 11.684743 -5.974440 -7.270383 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::stack >, void>() = 0.060676 -0.456717 0.944534 0.770424 -0.203297 0.231036 -0.081087 -0.524392 0.737878 0.017509 -0.221921 0.184805 -0.457092 0.325151 -0.257642 0.500179 -0.871054 -0.513470 -0.126933 -0.341204 -0.389668 -0.483396 0.205974 0.095416 0.267665 0.513612 -0.431568 0.170662 -0.341672 -0.435148 0.511093 -0.300232 0.298949 0.288022 0.216337 -1.288208 0.659647 0.297138 -0.228350 -0.685815 0.033329 -0.361281 0.081712 -0.472317 -0.154313 0.171244 0.055955 0.473019 0.418505 0.161417 0.002235 0.060252 0.075861 1.079785 -0.375056 0.412956 0.324436 0.000519 -0.077563 0.027235 0.271066 0.156384 0.300155 0.503211 -0.135606 -0.478107 -0.177245 -0.415257 -0.531218 0.628259 -0.067271 0.047479 -0.621305 -0.255153 -0.499256 -0.148704 -0.966445 0.680545 1.037373 -0.676762 0.451040 0.202434 0.473076 0.092191 0.327354 0.026504 0.732174 0.285536 -0.397311 0.124043 -0.218044 -0.223354 0.154503 -0.315586 -0.220738 -0.885695 0.251281 -0.891921 -0.638479 0.327497 0.242810 0.100441 -0.276462 -0.136474 0.451138 0.229286 -0.398484 -0.591786 -0.038941 0.064110 0.076965 -0.176456 0.140277 0.000826 -0.095269 -0.178450 -0.816999 -0.166183 0.094070 -0.382804 0.106450 0.559223 -0.153437 0.011498 -0.105547 0.040483 -0.182736 0.823533 0.042695 0.407034 -0.128955 0.224519 -0.383379 0.349135 0.318246 0.298524 -0.152827 0.009316 -0.142655 0.169624 -0.476376 -0.143147 -0.238845 0.135320 0.432842 -0.227916 -0.609654 -0.337394 -0.313889 -0.904663 0.180789 -0.555335 -0.250107 0.374926 0.557501 0.619409 0.498625 0.642256 -0.628035 0.256800 -0.229421 0.121849 0.441827 0.228918 0.361730 -0.281847 -0.410708 0.390987 0.126453 0.119189 0.280164 -0.431182 0.077453 -0.519258 -0.118783 0.487677 0.446228 -0.042473 0.454804 0.258991 0.265592 -0.530623 0.188532 0.399198 0.028073 0.056088 0.016864 -0.685218 0.466850 0.055741 0.219963 0.298006 -0.102864 -0.230300 0.136212 -0.112846 0.272332 -0.381661 -0.089514 -0.356887 -0.123740 -0.523048 0.466751 -0.288587 -0.155967 -0.171546 -0.208266 0.732355 -0.746914 -0.305962 0.793901 -0.149240 0.578242 -0.550724 0.365833 -0.384267 0.724423 -0.110630 -0.057328 -0.004000 -0.224310 -0.237114 0.046062 0.380143 -0.058278 -0.033271 0.546649 0.266825 0.106382 0.176585 0.562742 -0.082163 0.345271 -0.145847 0.533693 -0.084532 -0.134811 0.122661 -0.284972 0.038384 -0.232134 0.207618 0.681385 0.433463 0.378109 0.559697 0.255261 0.403284 -0.446551 0.230914 -0.101625 0.284615 -0.414277 -0.054546 0.028311 0.308824 -0.352326 0.198221 -0.672992 -0.928349 -1.017136 -0.342433 -0.295201 -0.172755 0.090006 -0.174838 -0.014783 -0.373403 -0.377535 0.614216 -0.310947 0.383493 0.291214 0.196558 0.508402 0.735426 -0.406234 -0.255731 0.090599 0.023011 -0.076064 0.131397 -0.688417 0.587664 -0.457253 0.127516 0.772152 -0.334697 0.081929 0.082276 0.628415 -0.325027 0.822617 0.396719 -0.369397 0.414195 0.512800 0.724194 0.418215 -0.460097 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::empty() const = 0.040559 -0.493089 0.949800 0.838483 -0.255501 0.304300 -0.071798 -0.541112 0.576700 0.174246 -0.180134 0.226929 -0.408710 0.202676 -0.070496 0.466703 -0.713713 -0.348269 -0.198079 -0.419745 -0.360864 -0.353417 -0.004183 0.205368 0.288775 0.502514 -0.335178 0.119671 -0.304865 -0.549785 0.278293 -0.128232 0.310938 0.292606 0.311749 -1.228450 0.619067 0.517743 -0.188462 -0.732097 0.048634 -0.290229 0.027365 -0.215007 -0.172044 0.228149 -0.005898 0.317875 0.286258 0.214443 0.039887 0.118633 0.298232 0.992505 -0.126826 0.493077 0.410574 -0.031608 -0.056830 0.044061 0.229728 0.140288 0.264036 0.242682 -0.034619 -0.490812 -0.222107 -0.259100 -0.434480 0.457680 -0.048430 -0.313292 -0.533546 -0.466256 -0.406074 -0.198758 -1.207004 0.627030 0.851517 -0.697099 0.462828 0.225849 0.254321 0.089699 0.418295 -0.034776 0.669965 0.272417 -0.236317 0.263857 -0.012759 -0.383920 0.261393 -0.259023 -0.463341 -0.847335 0.354796 -0.750062 -0.675758 0.421335 0.276509 -0.072027 -0.299947 -0.223322 0.256899 0.228161 -0.376973 -0.513401 -0.087597 0.231432 0.155140 -0.258117 -0.059869 0.093828 -0.043349 -0.054227 -0.766546 0.055118 0.241674 -0.244873 0.039537 0.564014 0.012276 0.041083 -0.137198 0.051810 -0.178572 0.823456 0.015540 0.405728 -0.166511 0.281462 -0.371467 0.403263 0.259703 0.030077 -0.145047 -0.019979 -0.035584 0.212215 -0.291169 0.183366 -0.234536 0.286294 0.541126 -0.052199 -0.500968 -0.385485 -0.419090 -0.782783 0.143936 -0.454774 -0.227258 0.380709 0.496888 0.549135 0.318998 0.467420 -0.561687 0.082271 -0.172916 0.067589 0.352625 0.266574 0.301098 -0.310791 -0.413158 0.389503 0.192498 0.180835 0.266885 -0.222805 0.074430 -0.344926 -0.090652 0.505976 0.350749 -0.065260 0.558836 0.421529 0.625823 -0.314476 0.097466 0.194322 -0.175871 0.095194 -0.031384 -0.647472 0.286384 0.110030 0.199476 0.498862 -0.139231 -0.025529 0.168331 -0.152345 0.179428 -0.368578 0.115804 -0.413068 -0.107872 -0.424820 0.312787 -0.293838 -0.153210 -0.267222 -0.223274 0.757700 -0.721586 -0.245665 0.718040 -0.198832 0.363904 -0.480559 0.534293 -0.322896 0.554608 -0.170329 -0.164689 0.010523 -0.179968 -0.252252 0.056942 0.356194 -0.137722 -0.100814 0.591629 0.168573 -0.039077 0.109071 0.494080 -0.230548 0.362764 -0.299567 0.634980 -0.080263 0.015194 0.002509 -0.249995 -0.008518 -0.254943 0.089823 0.589661 0.283856 0.282322 0.203011 0.259965 0.299451 -0.386830 0.397480 -0.040784 0.204574 -0.428081 -0.084869 0.059369 0.308404 -0.146328 0.125559 -0.696048 -0.643792 -0.939170 -0.232268 -0.257649 0.006210 0.172507 -0.118479 -0.153987 -0.343636 -0.557212 0.749854 -0.292031 0.163676 0.272620 0.284413 0.539861 0.636119 -0.147146 -0.083879 -0.051491 -0.037472 -0.023535 0.016290 -0.447475 0.568779 -0.318233 0.127694 0.703321 -0.179538 0.297201 0.101045 0.561931 -0.374362 0.689032 0.268354 -0.379135 0.338814 0.697791 0.566288 0.057529 -0.430053 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::top() = 0.021845 -0.401381 0.815859 0.756899 -0.218413 0.228533 -0.016462 -0.510148 0.548176 0.005113 -0.071297 0.126257 -0.480698 0.251453 -0.031535 0.405280 -0.673653 -0.379722 -0.241286 -0.383038 -0.295844 -0.372167 0.211571 0.164777 0.296202 0.447297 -0.367985 0.027988 -0.359836 -0.253553 0.462857 -0.142983 0.385852 0.450887 0.164502 -1.180226 0.535000 0.405090 -0.178129 -0.572633 0.110421 -0.322313 0.082896 -0.352782 -0.203821 0.164135 -0.087768 0.172901 0.384318 0.109652 0.045554 0.114815 0.097882 0.763747 -0.308047 0.367537 0.209685 -0.050110 -0.126289 -0.035295 0.176928 0.221682 0.319491 0.287371 -0.134560 -0.501612 -0.178805 -0.348169 -0.570938 0.488828 -0.051208 -0.087684 -0.524649 -0.315286 -0.345943 -0.169042 -0.621140 0.587436 0.766469 -0.580760 0.372393 0.086638 0.140106 -0.020123 0.295418 -0.003665 0.529494 0.198746 -0.174891 0.151513 -0.174966 -0.256331 0.166331 -0.123044 -0.320071 -0.587199 0.282896 -0.531654 -0.580897 0.238360 0.270557 -0.031716 -0.431713 -0.130093 0.207418 0.249365 -0.306289 -0.500719 -0.066618 0.166044 0.220473 -0.219999 -0.104253 0.055689 -0.160278 -0.293220 -0.691716 -0.025181 0.062362 -0.272892 0.022566 0.472142 -0.224023 -0.034080 -0.081064 0.093756 -0.231875 0.761587 -0.059793 0.340571 0.029987 0.114650 -0.223884 0.093207 0.239389 0.482355 -0.139669 -0.107538 -0.202397 0.111654 -0.373772 -0.025763 -0.013412 0.162903 0.515796 -0.147508 -0.443816 -0.192333 -0.278591 -0.848664 0.109556 -0.464587 0.009001 0.449936 0.439868 0.483043 0.377910 0.692528 -0.501377 0.172638 -0.109962 -0.057733 0.438347 0.348312 0.299390 -0.269991 -0.408461 0.353512 0.016187 0.162221 0.208901 -0.134730 0.015159 -0.406209 -0.176991 0.375792 0.280674 -0.026989 0.417603 0.323358 0.372653 -0.358502 0.193579 0.298211 -0.093612 0.106868 0.019600 -0.584530 0.295454 0.059421 -0.017270 0.381422 -0.143035 -0.166557 0.149511 -0.142865 0.223550 -0.394496 0.080524 -0.357525 -0.001785 -0.553952 0.152856 -0.176342 -0.204853 -0.169152 -0.128986 0.672339 -0.467329 -0.308244 0.654782 -0.070184 0.412122 -0.559381 0.405870 -0.304194 0.534290 -0.216918 -0.131342 0.023353 -0.173152 -0.261545 0.010448 0.302110 -0.087471 -0.087853 0.615103 0.184940 -0.066884 0.056481 0.474690 -0.041939 0.439832 -0.223704 0.608369 -0.031499 -0.032539 0.111755 -0.239049 -0.034209 -0.283261 0.065975 0.665242 0.405129 0.369179 0.336929 0.214206 0.400842 -0.329527 0.315139 -0.017532 0.196052 -0.285697 -0.049337 0.140873 0.368364 -0.210687 0.178976 -0.573376 -0.828351 -0.609083 -0.396639 -0.150179 -0.034897 0.144659 -0.115503 -0.118617 -0.317794 -0.424806 0.370410 -0.280668 0.549992 0.190207 0.214267 0.438119 0.628140 -0.360588 -0.096609 0.104251 0.082673 0.017615 0.053089 -0.533024 0.532385 -0.300387 0.072029 0.699942 -0.224610 0.225127 -0.045303 0.649996 -0.323372 0.729279 0.212312 -0.299200 0.502286 0.432852 0.477368 0.308733 -0.354500 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::pop() = 0.283674 -0.729126 1.875140 1.654646 -0.312602 0.530983 -0.081447 -1.365304 1.245851 0.668123 -0.255444 0.307670 -0.778070 0.522117 -0.304707 1.189482 -1.382643 -0.646309 -0.534216 -0.947700 -0.684373 -0.781337 0.459649 0.102808 0.684549 0.686943 -0.772850 0.203025 -0.415084 -1.640777 0.643794 -0.259407 0.593430 0.195251 0.316686 -2.227903 1.497116 0.973749 -0.457002 -1.228764 0.230049 -0.346059 -0.252397 -0.203113 -0.325922 0.429924 -0.247598 0.613818 0.742376 0.584257 0.471568 0.421179 0.723989 1.917640 -0.525749 0.958854 0.519454 0.023508 -0.137741 0.332927 0.403896 0.569049 0.491603 0.692434 0.194641 -1.028163 -0.278068 -0.321059 -1.013575 1.165761 -0.265980 -0.670079 -1.000837 -0.662625 -0.629091 -0.150334 -1.841326 1.132338 1.672991 -1.068733 0.729667 0.329899 0.216092 -0.065798 0.499720 -0.189079 1.283566 0.532594 -0.349533 0.105450 0.105897 -0.702089 0.554290 -0.366151 -0.842201 -1.647522 0.699821 -1.368978 -1.244836 0.635068 0.692286 -0.264865 -0.706602 -0.466561 0.591067 0.261725 -0.538880 -1.020847 -0.191310 0.435789 0.240941 -0.499573 -0.175146 -0.058744 -0.128477 0.258875 -1.455689 -0.047819 0.164107 -0.476426 -0.164564 0.898174 0.096912 -0.128697 -0.220196 0.302607 -0.347467 1.186806 -0.214585 1.148716 -0.073870 0.865989 -0.545216 0.757605 0.652034 -0.284292 -0.108754 0.050833 -0.383869 0.428609 -0.835990 0.547602 -0.604556 0.460712 1.180523 -0.139001 -0.999708 -0.419127 -0.580467 -1.562464 0.364779 -0.951781 -0.635661 0.448862 0.980162 0.770054 0.792204 0.847660 -1.236684 0.231177 -0.261083 0.199553 0.776475 0.137526 0.535862 -0.529676 -0.927988 0.683343 0.431017 0.249119 0.329393 -0.354267 0.045284 -0.739328 -0.232229 0.877214 0.507175 -0.235965 0.816612 0.735316 1.584090 -0.625749 0.359479 0.703108 -0.302023 0.202391 -0.081817 -1.384494 0.495070 0.186951 0.655823 1.091316 -0.215448 -0.163948 0.306663 -0.313030 0.337724 -0.718568 0.237641 -0.809162 -0.131086 -0.784092 0.403237 -0.366451 -0.265643 -0.297935 -0.240307 1.351149 -1.318933 -0.622913 1.735257 -0.608132 0.430791 -1.031182 1.182345 -0.597133 0.706529 -0.307586 -0.196396 -0.031446 -0.253478 -0.721488 0.166575 0.595013 -0.212953 0.129521 1.397967 0.324635 -0.034691 -0.001990 0.970127 -0.450304 0.806202 -0.644363 1.400267 -0.125854 -0.128170 -0.196822 -0.493596 -0.124062 -0.808517 0.173990 0.971957 0.547115 0.362572 0.442545 0.403587 0.905817 -0.738077 1.164612 0.007965 0.169915 -0.701744 -0.143919 0.426719 0.361513 -0.566589 0.608166 -1.297188 -1.183433 -1.759644 -0.654274 -0.427611 -0.109077 0.568664 -0.430452 -0.314695 -0.664530 -1.101850 1.539055 -0.493870 0.170239 0.679155 0.548866 0.811739 1.328854 -0.318824 0.143380 -0.457199 -0.090768 -0.031803 -0.343149 -0.662839 1.195702 -0.449204 0.205157 1.264643 -0.326400 0.550215 -0.066784 0.792196 -0.704489 1.251198 0.484503 -0.279178 0.802427 0.993830 1.182322 0.176027 -0.770400 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::~stack() = -0.017376 -0.568191 1.060115 0.843598 -0.209515 0.333670 0.199589 -0.684995 0.869578 0.150204 -0.231596 0.028592 -0.740865 0.214217 -0.270916 0.468967 -0.877193 -0.574504 -0.166581 -0.457740 -0.296011 -0.682276 0.408594 0.150212 0.392973 0.468042 -0.346878 -0.010244 -0.520034 -0.510216 0.708195 -0.276100 0.425143 0.425875 0.092242 -1.437012 0.747869 0.496474 -0.255891 -0.785742 0.149750 -0.336044 -0.011792 -0.275277 -0.178377 0.183125 -0.009821 0.546041 0.516851 0.205100 0.175326 -0.083418 0.131808 1.117935 -0.477753 0.545520 0.258731 0.002862 -0.110222 0.181895 0.235558 0.217504 0.398552 0.640421 -0.135312 -0.460265 -0.067675 -0.428085 -0.871859 0.739452 -0.176064 -0.053692 -0.642776 -0.246990 -0.431600 -0.110301 -0.813742 0.718229 1.210452 -0.631678 0.690564 0.177921 0.307828 -0.198211 0.244042 -0.045296 0.676672 0.250407 -0.392952 -0.013755 -0.349187 -0.258833 0.149696 -0.186642 -0.287937 -0.817456 0.438632 -0.749273 -0.795198 0.261294 0.282314 -0.043391 -0.427830 0.004831 0.376648 0.285767 -0.462368 -0.794865 -0.175683 0.187259 0.030846 -0.185349 -0.002543 0.091652 -0.242644 -0.304659 -0.813993 -0.269059 0.024698 -0.561468 -0.012114 0.606661 -0.260270 0.114765 0.002922 0.154342 -0.147274 0.815035 0.018138 0.473319 0.160596 0.212773 -0.343537 0.170299 0.356891 0.551117 -0.061312 0.001508 -0.140797 0.200021 -0.496098 -0.058801 -0.196629 0.118614 0.589836 -0.319719 -0.554591 -0.187973 -0.212119 -1.117508 0.193945 -0.673977 -0.156406 0.396049 0.630598 0.567327 0.471881 0.965385 -0.816362 0.308097 -0.160435 -0.034220 0.419033 0.329383 0.433389 -0.336377 -0.579223 0.302681 0.155976 0.174692 0.185537 -0.342868 -0.085462 -0.651864 -0.258208 0.426727 0.370909 -0.132712 0.434172 0.387584 0.466633 -0.640701 0.263789 0.484371 -0.009487 0.090784 0.060182 -0.972117 0.514438 0.043698 0.169018 0.414265 -0.122334 -0.222295 0.235036 -0.280593 0.242657 -0.587786 0.036118 -0.540178 -0.067122 -0.695247 0.311927 -0.221844 -0.337749 -0.176053 -0.055352 0.811036 -0.573231 -0.422904 0.935466 -0.105904 0.519364 -0.744854 0.610789 -0.414416 0.644302 -0.228376 -0.098432 -0.030309 -0.096650 -0.188197 -0.091434 0.322292 -0.068827 0.243025 0.867260 0.252054 0.032931 0.179061 0.710252 -0.119725 0.353562 -0.311333 0.660543 -0.023487 -0.268458 0.144988 -0.378187 0.064401 -0.346947 0.124907 0.924016 0.673814 0.256512 0.639454 0.242992 0.490893 -0.390001 0.447160 0.025900 0.397916 -0.351835 -0.045737 0.131071 0.359408 -0.430605 0.398076 -0.836640 -1.207269 -0.775045 -0.662099 -0.289522 -0.326155 0.305621 -0.150640 0.030207 -0.554895 -0.518116 0.504405 -0.357300 0.630458 0.319973 0.342293 0.542579 0.876575 -0.457985 -0.090503 0.124633 0.229296 -0.183418 -0.060958 -0.575046 0.554849 -0.521872 0.232893 0.812078 -0.252956 0.140738 -0.177895 0.747443 -0.554527 0.930836 0.432672 -0.283499 0.689134 0.405205 0.789740 0.488543 -0.467655 -PE-benchmarks/strongly-connected-components.cpp__main = -0.594065 -3.994898 5.683871 4.817815 -0.361037 2.285029 1.051643 -2.629309 3.347801 1.184891 -1.579688 1.794487 -3.485901 0.434217 -0.874752 2.017185 -4.092585 -3.512626 -0.195040 -1.316943 -1.335028 -3.095962 0.887543 2.333993 1.899363 2.882088 -2.262759 -0.223269 -3.757145 -3.381212 2.892526 -1.197364 2.790802 2.854183 0.649383 -8.203109 3.882291 3.415147 -0.952180 -4.529375 0.702773 -1.549719 -0.754653 -1.448452 -1.333748 1.403423 0.938400 2.380162 1.354208 1.285029 0.271168 -0.555899 1.691412 5.850431 -0.872164 3.633307 3.199720 0.030517 0.330539 0.183107 1.488210 0.383521 2.625261 3.168962 -1.131103 -1.820731 -0.458512 -1.977491 -4.219723 2.980488 0.192282 -0.320037 -2.827166 -1.124122 -2.404016 -0.539264 -1.626994 3.168579 6.501227 -3.199936 4.864387 1.734982 2.835985 -0.879618 1.814799 -0.099817 3.287095 1.924025 -2.474260 -0.212995 -3.443814 -1.996091 0.285451 0.018829 -2.335818 -2.980380 2.130839 -4.270782 -4.600701 1.975357 0.641851 -0.537572 -2.326966 -0.268891 2.502133 1.523389 -1.984814 -3.972703 -1.669097 1.172520 -1.051548 -1.686045 -0.644567 1.001343 -1.060835 -0.661829 -4.455116 -0.872689 1.529570 -3.107688 -0.069300 3.337405 -1.371588 1.664532 -0.731800 0.412772 -0.779554 3.377438 1.119427 1.718805 1.654416 -0.149585 -2.044227 0.830045 1.686160 2.854417 -1.652743 -1.055404 0.098215 1.481859 -0.916629 0.494196 -0.868819 1.641606 2.900307 -1.158821 -3.286333 -2.722442 -1.358197 -5.361428 1.109437 -3.368639 -0.873793 2.429731 3.501145 1.713337 1.944936 4.557004 -3.851368 2.683115 -0.566901 0.587445 1.332670 1.045885 1.803603 -2.076850 -3.329350 2.599642 1.788888 1.021870 1.216719 -1.891127 0.033432 -2.803729 -2.869236 2.371246 1.194232 -0.174784 2.926349 1.815679 4.342285 -3.293909 0.835891 1.400062 -0.270990 0.510556 0.188336 -4.945837 2.650400 0.074435 0.910610 3.725506 -0.345695 -2.142620 1.539245 -0.481938 0.647090 -3.096460 1.993497 -2.996239 -0.419042 -2.902017 0.787297 -1.509685 -1.791592 -1.713574 -0.420030 5.095711 -3.273563 -3.334497 3.663949 -0.556955 2.498229 -5.229266 3.070033 -2.463681 3.552708 -0.821547 -1.528414 -0.029267 -0.959323 -0.761719 -0.413489 2.050771 -1.428356 1.507951 4.002319 1.078129 0.366447 1.328691 2.555515 -0.293711 1.221252 -1.802481 2.900185 -0.086086 -1.548422 -0.115476 -1.912395 1.407911 -1.147942 -0.151105 3.318285 3.561899 0.922954 2.352170 2.070169 1.807035 -2.742487 1.395431 0.265147 2.797903 -2.104820 -0.701126 -0.569683 1.464433 -1.123144 2.391083 -4.672487 -5.665879 -4.167804 -4.305993 -2.047427 -0.637873 2.041094 -0.252255 0.178529 -3.978525 -2.783245 2.513760 -1.743456 3.398335 2.695551 2.302663 3.552453 3.616965 -1.746601 -1.369722 0.409518 1.127706 -1.499720 -0.087957 -3.136865 2.665889 -2.141813 2.181549 3.992554 -1.063416 1.095743 -1.246725 4.161642 -2.605004 5.882216 2.583493 -3.016105 2.263187 1.470460 3.838546 0.312786 -2.923831 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::~deque() = 1.020281 -2.137489 5.285234 4.090734 -1.207896 1.545323 0.380925 -3.909147 3.590568 0.863375 -1.197912 0.433506 -2.592197 1.045117 -2.122983 2.401165 -4.192626 -2.030276 -1.391023 -2.603472 -1.482122 -2.505187 1.663199 0.667896 2.065614 2.151298 -1.699590 0.369263 -1.835553 -3.659666 2.512236 -0.737379 1.424186 0.736155 0.709319 -5.560744 3.997469 2.823553 -1.239423 -3.483617 0.853937 -0.973313 -1.288347 -0.619151 -0.965130 0.775848 -0.723092 2.890795 2.004017 1.287115 0.818545 0.741500 1.427812 5.345258 -1.559913 2.732965 1.464358 0.350803 -0.158403 1.348652 1.033941 1.525864 1.109929 2.291352 0.487732 -2.451719 -0.272936 -1.174217 -2.896281 3.459572 -0.852310 -1.527025 -2.510038 -1.416025 -2.313896 0.023462 -4.103920 3.358839 4.933391 -2.806542 2.413519 0.693885 0.665540 -0.877099 0.934338 -0.562702 3.288783 1.438390 -0.912627 -0.346433 -1.022872 -1.409409 1.284303 -1.548162 -2.268109 -4.992549 2.435726 -4.778059 -3.590635 1.197528 1.921855 -1.248691 -0.965346 -0.461659 1.483469 0.542597 -1.632113 -2.930006 -0.393574 1.378555 0.238036 -0.975643 -0.085399 0.622718 -0.298771 0.183393 -3.740932 -0.297886 0.301629 -1.579018 0.001361 2.486769 0.083079 -0.060450 -0.298800 0.870681 -0.641629 2.939833 -0.552238 2.651443 0.112113 2.479806 -0.454618 1.967207 1.764544 -0.094082 -0.373021 0.420566 -0.547824 1.376337 -2.185393 0.830370 -2.186622 0.591952 2.034601 -1.114389 -2.590903 -0.909138 -1.599434 -4.481234 0.597316 -2.646131 -2.536408 1.201230 2.762794 2.571106 1.963651 2.758721 -3.475183 0.633376 -0.310136 0.328718 1.706169 0.181909 1.534444 -1.469984 -2.800499 1.512119 0.572966 0.962020 0.479750 -0.924469 -0.355785 -2.593736 -0.860222 2.142422 1.609565 -0.686530 2.165538 2.329930 2.452556 -2.275108 1.001526 2.127945 -0.906374 0.355660 0.051524 -4.321988 1.642500 0.461988 2.183039 2.900308 -0.465082 -0.148969 1.072584 -1.074822 0.887156 -2.343963 0.261397 -2.450027 -0.558653 -2.515658 1.498816 -0.775061 -0.940252 -1.135425 -1.144250 3.585735 -3.953307 -1.895669 5.003850 -1.042250 1.683237 -2.925206 2.425302 -1.629455 2.388873 -0.057230 -0.109255 0.005330 -1.069954 -1.971479 0.099324 1.325054 -0.604283 1.218002 3.832111 0.902939 0.032392 0.167864 3.005831 -1.720307 2.037491 -2.122754 3.379237 -0.198630 -1.583091 -0.194032 -1.484002 -0.491620 -2.366825 0.898473 3.442915 1.853959 1.420517 2.026329 0.956747 2.561011 -1.827952 2.966581 0.047175 0.496867 -1.772826 -0.507186 1.264501 1.055275 -1.762748 1.947704 -3.942402 -4.556493 -5.150050 -2.718109 -0.868456 -2.371142 1.857251 -1.213254 -0.625381 -2.283491 -3.217163 3.482765 -1.339365 1.210113 2.233966 1.671568 2.155389 3.783494 -1.417872 0.973364 -0.334407 1.004282 -0.388093 -1.143680 -2.124632 2.951591 -1.498787 0.791219 3.976530 -0.864553 1.553946 -0.826596 2.198632 -2.487049 3.498985 1.610023 -1.259222 2.325173 2.162772 2.981919 1.692987 -2.178846 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.200099 -0.257827 0.369605 0.339224 0.108585 0.114140 0.250148 -0.149716 0.453760 0.315836 -0.014621 -0.044148 -0.393642 0.081980 0.131976 0.277090 -0.187645 -0.318739 0.043393 -0.176082 -0.111823 -0.322916 0.162558 -0.109022 0.143614 -0.092196 -0.114081 -0.174579 -0.333724 -0.119724 0.288126 -0.185562 0.203571 0.127894 -0.039703 -0.646967 0.237307 0.121363 -0.137087 -0.310868 0.060101 -0.249357 0.245205 -0.078414 0.183133 0.123049 0.125745 0.098322 0.291483 0.128160 0.264644 -0.147948 -0.032307 0.508355 -0.380490 0.199866 0.038194 -0.055346 -0.111109 0.117819 0.074065 -0.019968 0.268109 0.283526 -0.197044 -0.175453 -0.083406 -0.225752 -0.456146 0.228195 -0.023081 0.060678 -0.339195 -0.056731 -0.013294 -0.188983 -0.714534 0.197942 0.524601 -0.277208 0.374588 0.156710 0.270798 -0.006302 0.180996 0.041175 0.268912 0.016929 -0.292962 0.016984 -0.212616 -0.088226 -0.027658 0.064249 0.037870 -0.113680 0.094350 0.187973 -0.331264 0.165783 0.018010 0.175595 -0.404130 0.092798 0.160833 0.236636 -0.245291 -0.446020 -0.216028 0.005627 -0.015639 -0.076358 0.024149 -0.277788 -0.229425 -0.324755 -0.324988 -0.197472 -0.021000 -0.323547 -0.249646 0.315648 -0.292711 0.077529 0.052248 0.069385 -0.106537 0.381204 0.088460 0.225914 0.207610 -0.176380 -0.783989 0.005238 0.185767 0.522635 0.055403 0.105191 -0.158778 -0.013312 -0.255870 -0.004940 0.164646 0.207314 0.421380 -0.199243 -0.189029 -0.077559 0.189438 -0.365715 0.237545 -0.282232 0.280459 -0.018998 0.272489 0.243159 0.257751 0.578136 -0.375444 0.255824 -0.182882 -0.036783 0.247469 0.280261 0.260906 -0.153739 -0.164288 0.018839 0.262415 -0.060651 0.142861 -0.183142 0.013331 -0.328138 -0.057265 0.026609 0.076150 -0.161526 0.206631 0.096135 0.402277 -0.442470 0.137269 0.219859 0.082512 0.054644 0.022044 -0.369023 0.277105 0.034536 -0.155954 0.043137 -0.036424 -0.254536 0.054124 -0.160042 0.121241 -0.197321 0.005006 -0.207709 -0.114026 -0.254035 0.129442 -0.189177 -0.251453 0.053411 0.194534 0.332357 0.187861 -0.150266 0.213694 -0.120493 0.057801 -0.361115 0.620726 -0.231004 0.082099 -0.366598 -0.076878 -0.125827 0.396520 0.038103 -0.054055 0.157595 -0.057691 0.162399 0.462864 0.161191 0.081919 0.128645 0.323727 0.090893 0.035909 -0.013101 0.294041 -0.065948 0.030414 0.127960 -0.164556 0.201673 0.026374 -0.046538 0.410863 0.391832 -0.085917 0.250968 0.154809 0.181092 -0.146027 0.157040 0.026187 0.379229 -0.112644 0.046396 -0.035638 0.032092 -0.166722 0.127152 -0.320854 -0.369631 0.185892 -0.198461 -0.088451 0.218688 -0.021802 0.048503 0.131873 -0.361845 -0.079750 -0.011820 -0.183901 0.153536 -0.028817 0.096700 0.247923 0.368351 -0.182135 -0.246211 0.010664 -0.071446 -0.127717 -0.053408 -0.139368 0.203605 -0.362945 0.125268 0.154600 -0.100755 -0.093661 0.023121 0.429459 -0.199889 0.460426 0.190324 0.026144 0.396897 0.298568 0.640249 0.023390 -0.147667 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::begin() = 0.295726 -0.622543 1.810173 1.521337 -0.253843 0.482606 -0.038832 -1.327462 1.338487 0.663037 -0.192555 0.283166 -0.689816 0.567558 -0.462814 1.185311 -1.320204 -0.645736 -0.483245 -1.059625 -0.812173 -0.707763 0.309178 -0.072619 0.650915 0.376491 -0.735644 0.148127 -0.501900 -1.393332 0.572056 -0.308854 0.380276 -0.216328 0.369784 -2.143096 1.419259 0.806587 -0.505446 -1.115076 0.190093 -0.533395 -0.050498 -0.257847 -0.063629 0.294685 -0.189159 0.741880 0.844860 0.532176 0.533594 0.522610 0.522284 2.259556 -0.727697 0.919475 0.456667 0.052833 -0.184246 0.503327 0.353889 0.452015 0.408105 0.546479 0.132559 -1.046556 -0.328266 -0.339412 -0.731677 1.086446 -0.162444 -0.697033 -1.038739 -0.618393 -0.746892 -0.326799 -2.605801 1.099368 1.583218 -1.213506 0.631898 0.353540 0.421785 0.185815 0.678390 -0.146214 1.449543 0.438827 -0.441398 0.155699 0.007607 -0.449970 0.513632 -0.573642 -0.733318 -1.965155 0.618383 -1.338494 -1.273392 0.693631 0.669089 -0.138148 -0.576398 -0.442568 0.617010 0.157183 -0.671742 -1.060543 -0.190131 0.411297 0.221877 -0.429632 0.114396 -0.459184 0.016270 0.113817 -1.436561 0.019736 0.182093 -0.362110 -0.369816 1.033823 0.109219 -0.211799 -0.184403 0.293279 -0.378559 1.190652 -0.263474 1.117813 -0.318299 0.874545 -1.108619 0.969650 0.648401 -0.354345 -0.066544 0.332561 -0.425913 0.408322 -0.947582 0.550117 -0.624878 0.606370 0.906197 -0.228291 -0.969708 -0.414349 -0.397391 -1.310127 0.451770 -0.816601 -0.801420 0.069214 0.956483 1.047108 0.829962 0.589350 -1.058010 0.229473 -0.339457 0.295403 0.909466 0.017571 0.629579 -0.559296 -0.786837 0.543738 0.462117 0.159014 0.322090 -0.369508 0.120559 -0.791767 0.018782 0.607320 0.584223 -0.334194 0.945403 0.750762 1.448922 -0.934713 0.375464 0.696160 -0.348465 0.219006 -0.137192 -1.224670 0.492663 0.317539 0.580363 0.962653 -0.186728 -0.167678 0.218498 -0.272328 0.449091 -0.587933 -0.036372 -0.722080 -0.456412 -0.629339 0.655695 -0.497980 -0.213758 -0.318050 -0.438294 1.278548 -1.391847 -0.461737 1.722514 -0.673954 0.376925 -0.872416 1.380149 -0.628302 0.580932 -0.351517 -0.075681 -0.115043 0.180262 -0.778022 0.374079 0.602113 -0.328044 0.166371 1.353098 0.375544 0.241769 0.004040 1.040606 -0.543326 0.711504 -0.563260 1.425582 -0.229422 -0.180215 -0.134744 -0.460515 -0.117468 -0.644474 0.358307 0.974938 0.453984 0.367329 0.371634 0.521240 0.869718 -0.716023 1.077968 -0.160291 0.084295 -0.755679 -0.132123 0.410727 0.130324 -0.491731 0.421591 -1.315140 -0.993739 -1.726262 -0.347031 -0.190611 -0.080490 0.260857 -0.396476 -0.288668 -0.791271 -1.009740 1.459903 -0.521212 -0.338866 0.623219 0.485171 0.805887 1.351733 -0.274525 0.091673 -0.437459 -0.253412 0.033200 -0.369041 -0.686830 1.233396 -0.611063 0.232948 1.175542 -0.323287 0.465524 0.249184 0.684893 -0.651113 1.136741 0.445405 -0.240708 0.722960 1.386154 1.425592 0.151028 -0.734066 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::end() = 0.295726 -0.622543 1.810173 1.521337 -0.253843 0.482606 -0.038832 -1.327462 1.338487 0.663037 -0.192555 0.283166 -0.689816 0.567558 -0.462814 1.185311 -1.320204 -0.645736 -0.483245 -1.059625 -0.812173 -0.707763 0.309178 -0.072619 0.650915 0.376491 -0.735644 0.148127 -0.501900 -1.393332 0.572056 -0.308854 0.380276 -0.216328 0.369784 -2.143096 1.419259 0.806587 -0.505446 -1.115076 0.190093 -0.533395 -0.050498 -0.257847 -0.063629 0.294685 -0.189159 0.741880 0.844860 0.532176 0.533594 0.522610 0.522284 2.259556 -0.727697 0.919475 0.456667 0.052833 -0.184246 0.503327 0.353889 0.452015 0.408105 0.546479 0.132559 -1.046556 -0.328266 -0.339412 -0.731677 1.086446 -0.162444 -0.697033 -1.038739 -0.618393 -0.746892 -0.326799 -2.605801 1.099368 1.583218 -1.213506 0.631898 0.353540 0.421785 0.185815 0.678390 -0.146214 1.449543 0.438827 -0.441398 0.155699 0.007607 -0.449970 0.513632 -0.573642 -0.733318 -1.965155 0.618383 -1.338494 -1.273392 0.693631 0.669089 -0.138148 -0.576398 -0.442568 0.617010 0.157183 -0.671742 -1.060543 -0.190131 0.411297 0.221877 -0.429632 0.114396 -0.459184 0.016270 0.113817 -1.436561 0.019736 0.182093 -0.362110 -0.369816 1.033823 0.109219 -0.211799 -0.184403 0.293279 -0.378559 1.190652 -0.263474 1.117813 -0.318299 0.874545 -1.108619 0.969650 0.648401 -0.354345 -0.066544 0.332561 -0.425913 0.408322 -0.947582 0.550117 -0.624878 0.606370 0.906197 -0.228291 -0.969708 -0.414349 -0.397391 -1.310127 0.451770 -0.816601 -0.801420 0.069214 0.956483 1.047108 0.829962 0.589350 -1.058010 0.229473 -0.339457 0.295403 0.909466 0.017571 0.629579 -0.559296 -0.786837 0.543738 0.462117 0.159014 0.322090 -0.369508 0.120559 -0.791767 0.018782 0.607320 0.584223 -0.334194 0.945403 0.750762 1.448922 -0.934713 0.375464 0.696160 -0.348465 0.219006 -0.137192 -1.224670 0.492663 0.317539 0.580363 0.962653 -0.186728 -0.167678 0.218498 -0.272328 0.449091 -0.587933 -0.036372 -0.722080 -0.456412 -0.629339 0.655695 -0.497980 -0.213758 -0.318050 -0.438294 1.278548 -1.391847 -0.461737 1.722514 -0.673954 0.376925 -0.872416 1.380149 -0.628302 0.580932 -0.351517 -0.075681 -0.115043 0.180262 -0.778022 0.374079 0.602113 -0.328044 0.166371 1.353098 0.375544 0.241769 0.004040 1.040606 -0.543326 0.711504 -0.563260 1.425582 -0.229422 -0.180215 -0.134744 -0.460515 -0.117468 -0.644474 0.358307 0.974938 0.453984 0.367329 0.371634 0.521240 0.869718 -0.716023 1.077968 -0.160291 0.084295 -0.755679 -0.132123 0.410727 0.130324 -0.491731 0.421591 -1.315140 -0.993739 -1.726262 -0.347031 -0.190611 -0.080490 0.260857 -0.396476 -0.288668 -0.791271 -1.009740 1.459903 -0.521212 -0.338866 0.623219 0.485171 0.805887 1.351733 -0.274525 0.091673 -0.437459 -0.253412 0.033200 -0.369041 -0.686830 1.233396 -0.611063 0.232948 1.175542 -0.323287 0.465524 0.249184 0.684893 -0.651113 1.136741 0.445405 -0.240708 0.722960 1.386154 1.425592 0.151028 -0.734066 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::~_Deque_base() = 1.309507 -2.149234 6.116025 5.487561 -1.470730 1.728622 -1.281929 -4.492688 3.186482 1.951360 -0.882297 1.913236 -1.528692 1.735315 -0.724422 3.998520 -4.779347 -1.463268 -1.836240 -2.934002 -2.475600 -1.773501 0.678700 0.879680 2.084320 2.933233 -2.780922 1.399341 -0.429566 -6.387282 0.978687 -0.567154 1.766551 0.320757 1.693185 -7.448769 5.067144 3.309550 -1.285456 -3.984511 0.591429 -0.774440 -1.236054 -0.601348 -1.795195 1.509489 -0.866905 1.603009 1.861867 1.983443 0.849300 2.085346 3.155032 5.907698 -0.497798 3.105988 2.221741 -0.175802 -0.354986 0.535111 1.406143 1.764072 1.383354 1.535297 1.020650 -3.526115 -1.061304 -0.471073 -2.376618 3.340713 -0.585181 -2.928879 -2.911735 -2.583289 -2.331657 -0.423695 -5.128783 3.721730 4.818992 -3.410039 1.857158 0.938429 0.387466 0.251159 2.044159 -0.723706 4.505727 2.048391 -0.794391 0.784396 1.420481 -2.926370 2.328713 -1.180202 -3.231880 -5.654693 1.987632 -5.550156 -3.841165 2.418523 2.410588 -1.249370 -2.163403 -2.590333 2.136487 0.561076 -1.413911 -2.652189 -0.303454 1.512376 0.734806 -1.956225 -0.908108 0.269139 0.116150 2.125954 -4.725617 0.567545 1.194125 -0.742994 -0.093271 2.687539 1.310204 -0.576168 -1.262334 0.855206 -1.118087 3.600224 -0.974993 3.656215 -1.031187 3.392518 -0.391799 3.007912 1.777668 -2.937471 -0.777914 -0.442481 -0.982763 1.682560 -2.306805 2.372357 -2.537176 2.010036 3.847249 0.525206 -3.408385 -1.803008 -2.885384 -4.793890 0.952075 -2.683295 -2.932635 1.953368 2.996196 1.817681 2.246865 1.058510 -3.410004 0.313397 -0.694834 1.111642 2.537428 -0.197908 1.374667 -1.749808 -2.767024 2.819869 1.281823 1.130507 1.085943 -0.918943 0.515769 -1.542208 -0.937759 3.445040 1.799548 -0.091812 2.742198 2.381508 6.223211 -0.866054 0.677925 1.692066 -1.344955 0.625903 -0.524894 -3.832644 0.971365 0.716953 2.790011 4.342675 -0.726211 -0.260912 0.828663 -0.282813 0.920105 -1.976272 1.174568 -2.425155 0.004262 -1.774411 0.803541 -1.182873 -0.283731 -1.594373 -1.473791 4.458119 -5.584332 -2.156565 5.720604 -2.600590 1.714952 -3.251856 3.132153 -1.800745 2.422707 -0.619322 -0.813534 0.222797 -2.064923 -2.835794 1.244617 2.054255 -0.716122 -0.421275 3.776180 0.820657 -0.206343 -0.391733 2.470593 -1.717841 2.877737 -2.125678 4.657601 -0.481033 0.199843 -1.324144 -1.296933 -0.793594 -2.648210 0.610618 1.901390 0.713437 1.404394 0.539567 1.465477 2.601595 -2.649582 3.903486 -0.225529 -0.195884 -2.487811 -0.837706 1.354911 1.420749 -1.147783 1.685670 -4.059518 -2.796726 -7.302434 -1.601916 -1.667620 0.239569 2.060451 -1.567751 -1.551222 -1.519444 -3.704538 6.392061 -1.245153 0.020952 2.617766 1.788725 2.627316 3.731168 -0.216197 0.563497 -2.226918 -0.774886 0.240683 -0.864212 -2.165601 3.933700 -0.853226 0.645293 4.119267 -0.949023 2.257198 -0.013822 1.915679 -1.913628 3.453071 1.272276 -1.366254 1.568015 3.381576 2.626979 -0.356549 -2.623904 -PE-benchmarks/strongly-connected-components.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.258482 -1.033440 2.606699 2.396413 -0.214751 0.766752 -0.052412 -1.875649 1.666954 1.418339 0.220529 0.700035 -0.930495 0.851096 0.174740 1.886851 -1.731970 -0.898589 -0.836474 -1.590103 -1.321000 -0.932405 0.450929 0.009371 0.832929 0.173654 -1.466862 0.015998 -0.583474 -2.553095 0.824407 -0.370783 1.113344 -0.555198 0.299726 -4.985046 2.111307 1.272542 -0.734423 -1.674442 0.354748 -0.532428 0.016993 -0.103145 -0.915625 0.404850 -0.380428 -0.157667 1.140033 0.800695 1.047470 1.045524 0.967005 3.675080 -0.930727 1.338542 0.693529 -0.292263 -0.625508 0.434252 0.582007 0.747060 1.077256 0.789444 0.242582 -1.617846 -0.306051 -0.388660 -1.761208 1.498999 -0.066230 -1.236504 -1.127014 -0.897784 -0.900789 -0.730035 -1.498210 1.359450 2.296989 -1.534795 1.054628 0.304766 0.259678 0.369465 1.080396 -0.164189 2.123929 0.646488 -0.529932 0.258987 0.601551 -0.775509 0.763628 0.426135 -1.043860 -2.269676 0.894463 -1.031271 -1.742871 1.291944 0.980838 -0.060135 -2.349265 -1.526328 1.026411 0.555511 -0.990146 -1.636085 -1.138560 0.742727 0.288830 -0.912509 -0.284552 -0.835117 -0.268359 0.138675 -2.020442 -0.006466 0.384042 -0.549561 -1.123415 1.471437 -0.264592 -0.273439 -0.370348 0.728241 -0.865870 1.533783 -0.517236 1.754304 -0.157270 0.847893 -1.680809 0.114393 0.752090 0.125891 0.056219 -0.544453 -1.050239 0.592717 -1.257693 1.204712 -0.252373 1.243928 2.492309 0.265404 -1.418194 -0.626789 -0.176295 -2.400788 0.504189 -1.421257 -0.531221 0.913954 1.401073 0.785746 1.155177 1.174340 -1.463697 1.052596 -0.564781 0.018530 1.444042 -0.140506 0.815752 -0.807278 -1.351590 0.798688 0.852824 0.614960 0.501579 -0.554962 0.105492 -0.804754 -0.800138 0.772156 0.740311 -0.256783 0.943750 1.034760 4.175432 -1.531949 0.538294 0.876422 -0.546529 0.436946 -0.399541 -1.722525 0.166339 0.517368 -0.071198 1.926921 -0.391115 -0.995578 0.324603 -0.274679 0.527144 -0.856780 0.634894 -1.080431 0.016006 -0.949768 -0.402913 -0.862894 -0.260882 -0.670809 -0.454942 2.108877 -2.070665 -1.459268 2.561327 -1.070490 0.456662 -2.284103 2.539485 -0.828121 0.841736 -1.321896 -0.484718 -0.306160 0.550001 -1.191433 0.969267 0.923292 -0.712968 0.024483 2.678678 0.479790 0.342142 -0.364309 1.405053 -0.219127 1.094280 -0.906234 2.533887 -0.399510 -0.009095 -0.515941 -0.684508 0.085419 -0.956122 0.339798 0.617344 0.832699 0.138225 0.177005 1.223898 1.231221 -1.052678 1.766349 0.025212 0.435435 -0.864030 -0.038201 0.548170 0.750487 -0.636250 0.806800 -1.778411 -1.150271 -2.246763 -1.051908 -0.463197 1.319390 0.427797 -0.548063 -0.487119 -1.257151 -1.270354 2.242737 -0.756088 0.522872 1.005974 0.866583 1.311281 1.985188 -0.372088 -0.134501 -0.953155 -0.754703 -0.017562 -0.618470 -0.873475 1.740929 -0.746334 0.513298 1.402392 -0.218559 0.850567 0.369348 1.038575 -0.843312 2.061792 0.618914 -0.112907 1.220524 1.599675 2.023449 -0.390039 -1.007958 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.784783 -1.266670 2.341424 1.991613 0.623057 1.050090 0.666355 -1.666348 2.270726 1.520779 -0.314630 0.317123 -1.519214 0.253192 -0.036932 1.321946 -1.196350 -1.581430 -0.140037 -1.130604 -0.587029 -1.794649 0.567417 0.125945 0.618299 0.041843 -1.131724 0.102168 -1.720993 -2.536583 1.273806 -0.531248 1.030159 -0.006970 -0.052067 -3.875248 2.209827 1.618845 -0.504629 -1.849354 0.251669 -0.893027 -0.132545 0.151846 0.438926 0.775491 0.119850 0.430976 1.009644 0.623222 1.319958 0.020289 0.203200 2.472579 -1.385862 1.544819 0.555020 -0.043179 -0.389363 0.782346 0.405807 0.435175 1.423591 1.765285 -0.811655 -0.902909 0.239102 -0.254738 -2.426932 1.463322 -0.055837 -0.705503 -1.130285 -0.283799 -0.637829 -0.378996 -0.688521 0.801771 2.803214 -0.764498 2.043717 0.604952 1.237509 -0.358279 1.065201 -0.371795 2.170449 0.495350 -1.476266 -0.589683 -1.357452 -0.819576 0.130639 0.869959 -0.588076 -0.274768 0.633792 -0.794327 -1.846675 0.633930 0.247357 0.096377 -2.594728 -0.068528 1.436496 0.635951 -0.537444 -2.175706 -1.223522 0.747820 -0.799567 -0.810794 -0.261207 -0.971389 -0.791842 -0.423758 -1.790982 -0.855760 0.376600 -1.270960 -1.443780 1.465089 -1.210447 0.228046 -0.159464 0.509875 -0.385607 0.802875 -0.157509 1.209697 1.098076 -0.373503 -2.550161 0.072221 0.512868 1.317119 -0.224919 -0.066944 -0.476832 0.363825 -1.142333 0.631932 -0.566657 0.931570 2.348724 -0.447189 -1.023157 -0.525775 0.559577 -2.163949 0.908237 -1.416819 -0.025196 -0.196621 1.568597 0.582198 1.090205 2.356217 -2.096893 1.540061 -0.386174 0.192322 1.079605 0.142421 0.902464 -0.873747 -1.525490 0.735433 1.205919 -0.015360 0.450406 -0.771601 -0.187550 -1.340344 -1.300403 0.832829 0.136539 0.054209 1.117221 0.656326 3.480896 -2.346908 0.799431 0.908631 0.027488 0.440080 -0.187908 -2.024923 0.902237 0.325161 0.575670 1.967719 -0.153623 -1.357602 0.083488 -0.036985 0.524178 -1.346690 0.839733 -1.398894 -0.094630 -0.910683 -0.310357 -0.742386 -0.952129 -0.421390 0.406632 1.843145 0.019560 -2.355476 2.134074 -1.229851 0.679230 -2.852710 1.592775 -1.157081 0.591415 -1.309912 -0.000983 -0.457386 0.785162 -0.494417 0.343582 0.831777 -0.719137 1.406416 2.530262 0.506386 0.503428 0.194717 1.082248 -0.003334 0.218767 -0.817848 1.856658 -0.096032 -0.332949 -0.148323 -0.953201 0.973717 -0.422516 -0.278011 0.948298 2.029446 -0.475367 0.769142 1.201655 0.861386 -0.950231 1.476470 0.302562 0.934471 -0.475403 -0.141990 0.072685 0.077619 -0.628295 1.126136 -1.838100 -1.831723 -0.384832 -2.493916 -0.348462 0.505230 0.598394 0.152736 0.331879 -2.032521 -0.818388 1.294006 -0.563122 1.883405 0.621162 1.032818 1.039006 1.727863 -0.853377 -0.483175 -0.568288 -0.336282 -1.017194 -0.959895 -0.630127 1.364317 -0.936694 1.088072 1.013850 -0.328893 0.179207 -0.516619 1.351790 -0.988092 2.355871 1.067446 -0.104430 1.315445 0.232968 2.940618 -0.324884 -1.019902 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.300323 -2.019034 3.212042 2.896484 0.556537 1.147165 1.548102 -2.078180 2.532947 1.708586 -0.178881 0.906332 -2.613682 1.071492 -1.604562 2.020980 -1.695222 -2.261344 -0.610135 -1.442468 -1.003460 -2.021192 1.465628 0.282002 1.611841 -0.374673 -1.684714 -1.181928 -3.216682 -2.194114 1.553037 -0.653859 1.467272 -0.912761 -0.559407 -4.556549 2.212905 2.278592 -0.918532 -2.611858 1.140814 -1.597075 -0.100939 -0.413973 -0.001439 0.256722 -0.068982 0.954373 1.708332 0.983645 1.581431 0.928902 0.588418 4.627365 -2.138949 2.209403 1.028108 0.560267 -0.576574 0.861386 0.681475 0.766340 1.559901 1.654927 -0.499058 -1.577996 -0.643362 -0.762265 -2.685426 2.014700 -0.381900 -0.339130 -2.060033 -0.102054 -1.472333 -0.484860 -1.813367 1.583871 3.710829 -1.993445 2.343128 0.445779 0.861689 -0.567769 1.007954 -0.179239 1.738708 0.709021 -1.047883 -1.034742 -1.777630 0.265443 -0.006799 0.359152 -1.171440 -2.893462 1.672939 -1.311344 -3.036513 0.816696 0.625302 -0.421336 -1.785812 0.079763 1.037438 1.206986 -1.606641 -2.945507 -1.408094 0.928524 0.456142 -1.271346 0.353640 -1.353326 -0.690801 -1.204334 -2.645893 -0.741228 0.269038 -1.980413 -1.580538 2.044986 -1.053158 0.630192 -0.032385 0.836377 -0.553670 1.746167 -0.060899 1.818523 1.050883 0.475218 -2.864451 0.212207 1.295811 2.043113 -0.773525 0.873416 -1.101866 0.646398 -1.194171 0.544439 -0.487058 1.135754 2.004368 -1.220141 -1.710431 -0.712922 0.859716 -2.688709 0.814252 -1.951789 -0.412674 -0.126433 2.093237 0.996211 1.530596 3.536710 -2.109998 1.534638 0.206794 -0.174229 1.765234 -0.118419 1.348222 -1.236914 -2.606428 1.034769 1.381075 0.287581 0.020230 -0.009506 -0.189024 -2.021737 -0.955554 0.236626 0.761143 -0.946350 2.008310 1.147909 2.655733 -2.952954 1.104436 1.320381 -0.598619 0.770059 -0.528849 -3.391111 1.313431 0.454157 0.190384 2.180907 -0.217435 -1.754736 1.340984 -0.775077 0.898949 -1.861157 0.840567 -2.033821 -1.074298 -1.955683 0.169984 -0.238409 -1.109275 -0.615632 -0.121838 2.824154 -1.280432 -1.904345 2.430694 -0.409650 0.399120 -3.601529 3.337974 -1.394972 0.897224 -0.900580 -0.086507 -0.138987 1.736634 -1.172687 0.020874 1.354776 -1.165535 1.762650 3.653557 0.663606 0.463706 0.321980 2.097317 -0.111035 0.860543 -1.250046 2.681538 -0.143362 -1.512300 0.183537 -1.238081 0.674926 -0.991711 0.287025 2.579869 2.129902 0.145859 1.496489 1.567404 2.170360 -1.328827 2.026302 -0.168976 1.477996 -0.989605 0.021581 0.130903 0.214928 -1.019946 1.955893 -2.763353 -3.295089 -1.297883 -2.882691 0.455259 -0.507379 0.825504 -0.656124 -0.089449 -3.142082 -1.936280 0.854224 -1.277570 1.567759 1.602738 1.314839 1.690558 2.542093 -1.380912 0.298674 -0.304282 0.380278 -0.503464 -1.363173 -0.729771 1.447524 -1.631556 1.111793 1.956881 -0.389069 0.746165 -0.389482 1.653768 -1.495832 3.533454 1.339688 -0.475663 2.382427 1.540406 3.638468 0.137354 -1.470839 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.283062 -1.500417 2.856486 2.145194 0.114955 0.953928 1.011255 -1.681708 2.203032 1.332596 -0.637063 0.040497 -1.830501 0.257601 -0.860194 1.222267 -1.600602 -1.606136 -0.379251 -1.295519 -0.460150 -1.706460 0.944893 0.130260 1.077120 0.220939 -0.871428 -0.480685 -1.723225 -2.070379 1.611551 -0.492359 1.081844 -0.034708 -0.219369 -3.608680 2.024382 1.728966 -0.719473 -2.084776 0.617377 -0.597679 -0.529725 0.154087 -0.115226 0.541041 0.003400 1.311894 0.957858 0.794917 1.009617 -0.022033 0.545905 3.404208 -1.273822 1.631069 0.812838 0.272774 -0.187780 1.036102 0.553147 0.573378 0.985037 1.604450 -0.021292 -1.035883 0.109293 -0.617248 -2.248709 1.753678 -0.342556 -0.640203 -1.129809 -0.361297 -0.907284 -0.097692 -1.544928 1.337872 2.972480 -1.221648 2.015919 0.677327 0.799442 -0.568359 0.275893 -0.233977 1.450269 0.621180 -0.799057 -0.778278 -1.347478 -0.530541 0.200003 -0.059426 -0.997680 -1.971849 1.463400 -1.314428 -2.018979 0.618372 0.674124 -0.496800 -1.212398 0.130059 0.873325 0.723157 -0.891744 -1.946551 -1.071977 0.840197 -0.349573 -0.551625 0.026760 -0.306532 -0.552213 -0.399064 -1.926180 -0.513686 0.128594 -1.349598 -0.825567 1.471024 -0.720252 0.365463 0.092626 0.691197 -0.387832 1.211224 0.173780 1.449333 0.831163 0.532564 -1.743252 0.282752 1.021589 1.204557 -0.042630 0.185577 -0.396236 0.637230 -0.957126 0.550367 -0.781078 0.455420 1.724900 -0.907594 -1.147827 -0.695212 0.222396 -2.262841 0.514180 -1.600398 -0.612317 0.248110 1.605473 1.176352 1.074089 2.592240 -2.328454 1.148904 -0.298903 -0.050367 0.611158 0.068241 0.877717 -0.802423 -1.716839 0.406218 1.057447 0.401359 0.174512 -0.662210 -0.286045 -1.639204 -0.819037 0.707511 0.492656 -0.657578 1.112469 1.219869 2.130285 -2.243629 0.641597 1.144138 -0.450835 0.217266 0.072734 -2.726613 0.965336 0.314309 0.624760 1.674675 -0.129016 -0.742683 0.737073 -0.837444 0.257888 -1.385067 0.590335 -1.554201 -0.513299 -1.357070 0.396675 -0.749523 -0.839426 -0.462837 -0.047077 2.009633 -1.018323 -1.641677 2.242563 -0.428712 0.268805 -2.388824 2.146274 -0.986873 0.886016 -0.560503 -0.094051 -0.386340 0.657882 -0.678424 -0.233051 0.684987 -0.653999 1.541009 2.792474 0.594545 0.128432 0.287912 1.743302 -0.583344 0.565861 -1.244843 1.632567 -0.200883 -1.139544 -0.098714 -0.911231 0.448231 -0.907745 0.207938 1.742851 1.641127 -0.014321 1.208191 0.903953 1.302765 -0.849918 1.582683 0.269473 1.156870 -0.641608 -0.076370 0.263085 0.321840 -1.098842 1.409195 -2.272109 -2.525169 -1.444055 -2.309729 -0.313368 -0.770553 0.900088 -0.336470 0.118830 -2.148854 -1.520897 1.099981 -0.794428 1.187922 1.108199 1.013283 1.270686 2.053830 -1.033795 0.185348 -0.082877 0.451849 -0.717779 -1.131880 -0.704006 1.442004 -1.024954 0.763815 1.727722 -0.386577 0.538911 -0.535884 1.352559 -1.481686 2.547532 1.180468 -0.438626 1.496073 0.776503 2.732795 0.284316 -1.119075 -PE-benchmarks/strongly-connected-components.cpp__std::__deque_buf_size(unsigned long) = -0.437172 -0.830046 0.890723 0.498284 0.232919 0.467967 0.153130 0.114314 0.253118 0.786792 -0.712221 0.633781 -0.384825 -0.292051 0.539914 0.273521 -0.194882 -0.689765 0.598378 0.233060 0.203869 -0.477323 -0.406291 0.483260 0.194673 0.222339 -0.302758 -0.000851 -0.717554 -1.051809 -0.208081 -0.178305 0.411428 0.229645 0.458280 -0.521647 0.294487 0.554561 0.090137 -1.098392 0.014136 0.131542 0.006666 0.352840 0.383554 0.788529 0.663904 0.081030 -0.312196 0.256291 -0.208605 -0.547264 0.055765 0.121637 0.326691 0.539777 0.769262 -0.080173 0.253885 -0.103504 0.419483 -0.409346 0.498067 0.508194 -0.431707 -0.051916 -0.004449 0.119008 -0.394999 0.033264 0.360174 -0.206277 -0.250298 -0.386180 -0.073637 -0.015968 0.203476 0.200699 0.875934 0.109245 1.037620 0.649314 1.143405 -0.134882 0.430801 -0.212151 0.411823 0.324216 -0.710206 -0.092378 -0.692626 -0.814879 -0.234910 0.699690 -0.269402 0.821977 0.095406 -0.284400 -0.603406 0.480792 -0.075084 -0.016805 -0.649690 0.476722 0.665737 0.579570 0.016887 -0.495841 -0.513707 0.165286 -0.713664 -0.321117 -0.155584 -0.141927 -0.423774 0.246051 -0.357173 -0.231154 0.687877 -0.579545 -0.139192 0.412574 -0.377914 0.690620 -0.134374 -0.095813 0.015006 -0.010669 0.918185 0.288669 0.286034 -0.634697 -1.057089 0.178897 0.016252 0.239207 -0.275055 -0.234193 0.304464 0.193643 0.370367 0.201759 -0.445601 0.682248 0.976093 -0.053252 -0.402758 -0.899084 -0.022763 -0.242663 0.394042 -0.263884 0.266427 -0.045684 0.350944 -0.147581 -0.004604 0.791067 -0.858620 0.578832 -0.219643 0.438062 -0.227190 0.017966 0.054797 -0.370370 -0.243535 0.246868 0.933777 -0.080153 0.396039 -0.592012 0.270353 -0.151387 -0.610941 0.608816 0.131092 0.239343 0.535320 0.119799 0.803185 -0.274148 -0.429545 -0.159646 0.051799 -0.181867 0.025572 -0.795677 0.446467 0.027321 0.644802 0.776753 0.007051 -0.378655 0.320330 0.009289 -0.052306 -0.305112 0.831928 -0.701804 0.209764 0.057063 -0.081346 -0.639829 -0.202104 -0.285144 0.298003 0.808139 0.504372 -1.020951 0.052798 -0.287054 0.318968 -1.019880 0.033357 -0.236605 0.371698 -0.111879 0.052202 -0.219334 -0.045009 0.283132 -0.279184 0.324143 -0.083584 0.385932 0.245929 0.040900 -0.290521 0.484119 -0.000830 0.118046 -0.417716 -0.156243 0.022893 -0.126719 0.334707 -0.184784 -0.020827 0.585264 0.320661 -0.509081 -0.339136 0.287674 -0.379900 0.053175 0.308375 -0.309714 -0.490475 0.103466 0.070491 0.874835 -0.062480 -0.289730 -0.688230 0.276175 -0.070958 0.130797 -0.734438 -0.381823 0.025606 -1.144924 -0.725664 0.384017 0.286516 0.374219 0.139976 -0.594905 -0.092286 0.355541 0.122543 0.986864 0.130261 0.213112 0.646769 0.163714 -0.216239 -0.532223 -0.279273 -0.239342 -0.633144 -0.204917 -0.028421 0.086704 -0.352650 0.475567 0.344924 -0.206356 -0.147505 -0.292305 0.475485 -0.446986 0.914606 0.698487 -0.664551 -0.256533 -0.046484 0.938091 -0.953007 -0.549389 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.091115 -0.706025 1.452779 1.239501 0.190678 0.535548 0.497930 -1.093478 1.464415 0.729861 -0.009704 0.077879 -0.994467 0.433939 -0.479748 0.863011 -0.817450 -0.937793 -0.329482 -0.974625 -0.625850 -0.912137 0.397493 -0.141426 0.550336 -0.363312 -0.641635 -0.286855 -1.234086 -0.653493 0.875146 -0.314296 0.430106 -0.431176 0.019688 -2.091765 1.086000 0.752280 -0.466294 -1.038497 0.234548 -0.813884 0.170092 -0.208999 0.308638 0.114834 -0.111561 0.569513 0.904386 0.324362 0.760480 0.374448 -0.090157 2.308854 -1.179377 0.915235 0.262071 0.161097 -0.268748 0.714250 0.238274 0.366738 0.624913 0.687460 -0.275476 -0.790781 -0.170646 -0.416181 -1.028644 0.991258 -0.013789 -0.396849 -0.926982 -0.229457 -0.687046 -0.448351 -1.958191 0.798834 1.580970 -1.052492 0.882677 0.315687 0.660283 0.063573 0.728099 -0.118199 1.303457 0.209277 -0.632882 -0.177849 -0.883992 0.005890 0.083652 -0.240243 -0.443870 -1.404165 0.567508 -0.590449 -1.307068 0.497817 0.371532 0.065121 -0.950996 -0.020671 0.596601 0.294971 -0.730253 -1.319351 -0.590666 0.497117 0.032912 -0.405045 0.298992 -0.908543 -0.182251 -0.655700 -1.203521 -0.271645 0.112225 -0.625719 -0.884896 1.135122 -0.594401 -0.051774 0.002055 0.308310 -0.376538 0.894321 -0.196040 0.853175 0.217333 0.159033 -1.956836 0.402794 0.526244 0.819983 0.004069 0.533609 -0.495462 0.271758 -0.894591 0.363363 -0.230607 0.567377 0.728899 -0.527522 -0.717634 -0.271394 0.437867 -1.094832 0.497367 -0.803683 -0.321958 -0.309765 0.946665 1.113180 0.778191 1.205310 -0.971311 0.675996 -0.257656 0.109469 0.888807 0.041207 0.690666 -0.560227 -0.891769 0.247223 0.541680 0.003232 0.214788 -0.302529 -0.057251 -0.984020 -0.217690 -0.018857 0.382259 -0.430630 0.948052 0.644366 1.144674 -1.731292 0.580402 0.670512 -0.252042 0.328075 -0.204340 -1.273643 0.552794 0.348522 0.057200 0.829335 -0.165018 -0.608365 0.210051 -0.302721 0.523430 -0.653482 -0.042760 -0.789810 -0.670899 -0.753723 0.436775 -0.478937 -0.471455 -0.234463 -0.216245 1.171233 -0.540207 -0.761740 1.410884 -0.443530 0.203784 -1.268008 1.517103 -0.647464 0.332999 -0.611765 0.055267 -0.302430 1.055685 -0.574709 0.298569 0.557309 -0.601856 0.679375 1.631062 0.370252 0.477647 0.120362 1.051498 -0.251153 0.321980 -0.561434 1.333666 -0.211963 -0.483351 0.099602 -0.563046 0.313930 -0.376633 0.278497 1.118717 0.935145 0.130475 0.507739 0.744462 0.775539 -0.546808 0.853617 -0.101526 0.368925 -0.499957 0.047696 0.215034 -0.146775 -0.482465 0.493195 -1.242234 -1.194846 -0.600460 -0.806658 0.230600 -0.077087 -0.008123 -0.139168 -0.019789 -1.332733 -0.739911 0.403881 -0.597513 0.148759 0.456287 0.535984 0.747190 1.352767 -0.605985 0.004639 -0.084991 -0.163712 -0.250354 -0.606080 -0.527978 0.996866 -0.781003 0.483034 0.877224 -0.168089 0.267783 0.166151 0.789806 -0.641368 1.361682 0.541819 -0.093357 0.930410 1.115679 1.900879 0.199444 -0.614307 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/strongly-connected-components.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/strongly-connected-components.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.195939 -1.545373 3.052690 2.565653 -0.222743 1.190906 0.334229 -2.294599 2.559335 0.419196 -0.096315 0.555037 -1.807796 0.915758 -1.175914 1.308289 -2.225107 -1.830324 -0.908706 -1.864470 -1.379848 -1.708544 0.535658 0.546618 0.949754 0.164597 -1.600076 0.003295 -2.339877 -1.097186 1.851625 -0.512770 1.120690 -0.457766 0.344381 -5.159698 2.224571 1.682900 -0.775357 -2.251260 0.405028 -1.638737 0.057380 -0.924190 -0.607448 0.060731 -0.426337 0.918050 1.565697 0.224950 0.692256 1.056965 -0.248404 4.688773 -1.824297 1.848512 0.831476 0.219610 -0.596317 0.847207 0.582438 0.877087 1.327981 1.303707 -0.635425 -1.695891 -0.170813 -0.919600 -2.092742 2.077474 0.075046 -0.780633 -1.598580 -0.619537 -2.064658 -0.831315 -1.557968 1.893311 3.184564 -2.174021 1.676204 0.324637 1.122775 0.233795 1.585613 -0.232944 2.852497 0.630734 -1.077671 -0.195698 -1.718876 0.023791 0.293476 -0.392643 -1.176519 -3.044597 1.165553 -2.490805 -2.648010 0.964933 0.837849 -0.145180 -1.975981 -0.630637 1.390256 0.566784 -1.410374 -2.427624 -1.022115 1.229317 0.113501 -0.938835 0.454741 -0.957208 -0.135119 -1.310879 -2.566781 -0.316523 0.508385 -1.058662 -1.106134 2.317947 -1.219356 -0.080502 -0.198088 0.588792 -0.826979 2.000874 -0.555972 1.308707 -0.039816 0.392907 -2.182683 0.263087 0.682188 1.709923 -0.411118 0.154808 -0.777323 0.717219 -1.592132 0.362225 -0.689924 0.870861 1.261823 -0.694275 -1.577333 -0.788040 0.066616 -2.847332 0.419873 -1.718068 -1.177681 0.604550 1.924394 2.204836 1.416445 2.342357 -1.645768 1.435754 -0.291332 0.034613 1.788757 -0.125119 1.238705 -1.171572 -1.996886 0.994645 0.415064 0.620787 0.404480 -0.641477 -0.193718 -1.747228 -0.993526 0.418664 1.134504 -0.126331 1.894129 1.389352 2.072857 -3.236951 1.137402 1.120202 -0.648408 0.679411 -0.461642 -2.464914 0.820716 0.720631 0.017681 2.120662 -0.470442 -1.290649 0.446626 -0.254853 1.112693 -1.561930 0.135857 -1.580156 -0.767885 -1.783814 0.387532 -0.922448 -0.701311 -1.109620 -1.188045 2.606141 -2.413193 -2.059580 3.149967 -0.456979 1.406611 -2.976081 1.851027 -1.238606 1.817091 -0.833175 0.018997 -0.280575 0.781409 -1.369398 0.899447 1.206674 -1.235615 0.830483 2.984280 0.684742 0.884232 0.125495 1.978334 -0.407021 0.992307 -1.331773 2.645618 -0.292332 -1.169066 0.179615 -1.152430 0.356187 -0.880794 0.849215 1.976555 1.873846 0.957914 1.140427 1.745924 1.426653 -1.203225 1.361192 -0.336056 0.448162 -1.055942 -0.069171 0.391185 0.555625 -0.794637 0.910608 -2.567344 -3.023443 -2.648679 -2.099495 0.301449 -0.477242 0.113836 -0.360075 -0.270856 -2.426458 -1.572974 1.298652 -1.175777 1.791573 1.239297 1.212805 1.676046 2.735611 -1.478318 -0.011903 0.307326 0.008070 -0.435219 -0.681085 -1.827022 2.126966 -1.309741 1.062561 2.349287 -0.476391 0.911421 0.238857 1.549538 -1.282345 2.937442 1.147017 -0.937238 1.612231 1.758567 2.866396 0.882810 -1.442561 -PE-benchmarks/strongly-connected-components.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.561600 -3.242904 6.218073 5.399274 0.035662 2.551137 1.057692 -4.893150 5.178705 1.498221 0.072411 1.266915 -3.852132 1.886549 -2.582325 2.902998 -3.946097 -3.838627 -2.065472 -3.961261 -2.726655 -3.487522 1.386696 0.985989 2.158824 -0.325053 -3.461258 -0.441919 -5.365421 -2.890806 3.629005 -0.844222 2.455680 -1.561210 0.253677 -10.354507 4.613142 3.970003 -1.629786 -4.632069 1.125030 -3.255305 -0.145214 -1.371871 -1.054023 0.152361 -1.140689 1.108961 3.223813 0.700486 2.083466 2.590998 -0.326213 9.467332 -3.907151 4.018507 1.623625 0.631298 -1.296386 1.942406 1.152139 2.073108 2.877571 2.566919 -1.150131 -3.541560 -0.422538 -1.505640 -4.553551 4.202043 -0.061490 -1.949890 -3.107316 -1.130898 -4.097174 -1.645101 -2.392995 3.454433 6.410218 -4.181463 3.528606 0.530720 1.876628 0.139384 3.141388 -0.627805 5.491846 1.296032 -1.949336 -0.784711 -3.440409 0.298657 0.450110 0.032721 -2.703142 -5.729524 2.756588 -4.547739 -5.562900 1.904886 1.772484 -0.515791 -4.614154 -1.208108 2.556748 1.255987 -2.819508 -5.099968 -2.479330 2.743796 0.518500 -2.214168 0.689630 -2.395046 -0.430824 -2.527973 -5.146296 -0.664676 0.994052 -2.295549 -2.971015 4.629022 -2.554082 -0.161917 -0.435320 1.478987 -1.769250 3.618506 -1.358213 3.017854 0.336314 0.864956 -5.009480 0.030791 1.456203 3.576706 -0.971311 0.479793 -1.908427 1.428248 -3.105070 1.240980 -1.435146 1.900888 3.085995 -1.384851 -3.120408 -1.380178 0.708409 -5.747336 0.841085 -3.538919 -2.190097 0.823243 3.940764 4.010443 2.854934 5.298399 -3.317564 3.012681 -0.251413 -0.194993 3.743609 -0.704306 2.442291 -2.424064 -4.506922 2.046107 1.150300 1.192305 0.677539 -0.784854 -0.534398 -3.535140 -2.257565 0.608548 1.939713 -0.513389 3.892394 2.891530 4.856365 -6.783236 2.433111 2.248665 -1.580640 1.625720 -1.177364 -5.304211 1.427355 1.517790 -0.009992 4.789733 -0.930145 -2.844893 1.152431 -0.662925 2.245876 -3.315265 0.840247 -3.513186 -1.544170 -3.658518 0.063514 -1.574656 -1.494409 -2.154528 -2.216606 5.374264 -4.361071 -4.531509 6.396487 -0.839149 2.188647 -6.612204 4.070203 -2.493860 3.206275 -1.874775 0.165662 -0.620872 2.302426 -2.983526 1.742933 2.499302 -2.884792 2.205808 6.708226 1.217885 1.645953 -0.001259 3.991835 -0.831327 2.057966 -2.972267 5.794457 -0.496589 -2.655515 0.176319 -2.407290 0.778947 -2.119059 1.452191 3.846856 3.902489 1.531902 1.948810 3.703036 3.254937 -2.431011 3.355477 -0.465424 0.935313 -1.964936 -0.066442 0.969720 0.939844 -1.573154 2.217230 -5.228701 -6.018643 -4.680274 -4.926396 1.069117 -0.782154 0.439184 -0.851946 -0.729112 -5.277280 -3.493696 2.418343 -2.412889 3.867083 2.682544 2.718402 3.309283 5.515051 -3.018499 0.474583 0.143879 -0.014968 -0.863243 -2.088873 -3.057020 4.207107 -2.406700 2.181293 4.515824 -0.670881 2.129566 0.412888 2.838820 -2.617663 6.167747 2.227047 -1.489994 3.663945 3.328853 6.169199 1.252068 -2.863034 -PE-benchmarks/strongly-connected-components.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/strongly-connected-components.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::push_back(int const&) = 2.598248 -3.759290 10.314078 9.348312 -1.169308 3.040957 -0.262357 -8.142395 6.025679 4.080736 -0.850307 2.884385 -3.709032 3.421018 -3.497737 6.898016 -6.850115 -3.323196 -3.776578 -5.663336 -4.089128 -3.373477 2.297611 0.731696 4.269431 2.244941 -4.956825 0.459613 -3.538864 -9.624269 2.317061 -0.609361 2.759143 -1.983567 1.477425 -11.155908 8.259713 6.422503 -2.569406 -6.649550 1.973473 -2.174174 -2.435801 -0.608486 -1.595902 1.634995 -2.290990 2.940485 3.810939 3.411575 3.041977 4.838455 4.407131 11.679007 -2.830499 5.851430 3.337078 1.039147 -0.661227 2.349274 2.107514 3.796310 2.248671 2.504179 1.815278 -6.117446 -2.089437 -0.664423 -4.108872 6.008728 -1.152540 -4.886753 -5.157143 -3.336336 -4.319641 -0.617650 -9.554778 5.848639 8.225704 -6.088948 3.175752 1.286073 0.370840 -0.160092 3.179167 -1.362439 6.938648 3.084659 -0.766732 -0.273705 0.160852 -2.685912 3.134105 -2.125222 -5.871193 -10.818214 4.461126 -8.193840 -7.336633 3.444914 4.177082 -2.679610 -3.116251 -2.984701 2.714751 0.897772 -2.859756 -5.270522 -1.260585 3.308277 2.122866 -3.553529 -0.517741 -1.473475 0.348263 2.053893 -7.964784 0.923932 1.442449 -1.693159 -1.996824 4.903840 1.350109 -1.102032 -1.651363 1.902071 -2.034425 5.185637 -2.103801 6.636846 -0.786961 5.862021 -3.144228 4.905717 3.598855 -3.247774 -1.449069 1.527066 -2.543809 2.803059 -4.041568 4.372163 -4.234402 3.153832 5.244933 -0.595637 -5.479548 -2.394276 -2.511339 -7.197981 1.658629 -4.467934 -5.232546 0.876949 5.257000 3.871474 4.054915 3.319731 -5.534491 0.910436 -0.133579 1.425504 4.699995 -1.458710 2.476496 -3.052448 -5.988138 4.067277 2.432014 1.393328 0.959976 -0.090753 0.294537 -3.561573 -1.094749 3.688363 2.592943 -1.675579 5.461007 4.522025 8.956886 -3.708939 2.048644 3.339826 -3.129877 1.637440 -1.502108 -7.519924 1.670108 1.625463 4.276651 7.636399 -1.082594 -0.970108 2.238597 -1.249588 2.038018 -3.592650 1.822429 -4.661049 -1.872688 -3.684945 1.610649 -1.158990 -0.818829 -2.299301 -2.671586 7.551516 -8.400843 -3.728689 9.661722 -3.534960 1.026799 -6.198116 6.823143 -3.006162 2.656245 -0.682152 -0.444029 0.119247 -0.278578 -5.694680 1.869896 3.518167 -2.473981 1.290421 8.106557 1.297318 0.102461 -0.853633 4.882868 -3.311884 4.667308 -4.451397 8.687483 -0.777446 -1.798877 -1.817011 -2.506034 -1.137012 -5.073332 1.397421 4.569376 1.735010 2.272123 1.036792 2.872720 5.721179 -4.187715 7.451904 -0.478475 -0.500747 -3.922827 -0.878976 2.682198 0.762857 -2.312350 3.719977 -7.231766 -5.371225 -10.339905 -3.852427 -0.261698 -1.322057 3.098460 -3.027804 -2.845875 -4.586325 -7.130173 8.350812 -2.690642 -0.773594 5.007797 3.349506 4.179771 6.847305 -1.287505 2.790139 -3.491235 -0.642590 0.549827 -3.431184 -2.539719 6.545953 -1.624823 1.200895 6.845636 -1.023873 4.370008 -0.055777 2.640650 -3.440594 6.622282 2.158822 -1.511411 3.733637 6.226611 6.431493 -0.318754 -4.273783 -PE-benchmarks/strongly-connected-components.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.924743 -4.717575 11.712567 10.273513 -2.034640 3.698273 -0.470562 -8.713605 6.878469 3.320200 -1.466654 3.095777 -4.293137 3.504315 -4.399728 6.673284 -8.197273 -3.943390 -4.047803 -6.239055 -4.408420 -3.956190 1.550649 1.759162 4.423958 2.976860 -5.105001 0.899005 -4.463963 -8.967118 2.971364 -0.815727 2.890455 -1.760187 2.432992 -12.688348 8.890275 7.161396 -2.636988 -7.941105 1.752003 -3.040163 -2.458319 -1.436816 -2.127158 1.578377 -2.184403 4.366848 3.937201 3.071348 2.049492 4.948108 4.244028 13.784891 -2.913186 6.579907 4.136490 1.179820 -0.372538 2.495706 2.357390 3.819651 2.326145 2.662418 1.651092 -6.615175 -2.240308 -1.132178 -4.139806 6.579119 -0.952115 -5.065257 -5.843232 -3.861465 -6.021115 -0.878185 -11.563838 7.236836 9.515280 -7.446019 3.921505 1.723519 1.240596 0.348649 4.067262 -1.295376 8.268590 3.454212 -1.204828 0.219496 -1.077521 -2.801151 3.332590 -3.745254 -6.684828 -13.054956 5.019882 -10.618611 -8.350185 4.004280 4.340435 -3.029781 -2.377079 -3.299705 3.094183 1.031657 -3.591622 -5.933782 -1.199521 4.024264 2.277668 -3.745142 0.257336 -0.891358 0.968936 1.231485 -8.926112 1.157482 2.139322 -1.927112 -1.342840 6.087924 1.193916 -0.879803 -1.742321 1.756228 -2.116722 6.406253 -1.886426 6.663508 -1.507881 6.032576 -3.268705 5.809052 3.610893 -2.918106 -1.652923 1.884324 -1.898524 3.381028 -4.072911 4.179908 -4.813486 3.133166 4.322364 -0.952956 -5.896993 -3.346898 -3.330724 -7.857568 1.433855 -4.911609 -6.529722 1.639055 5.980126 5.714032 4.221004 3.565979 -6.066069 0.973653 -0.330838 1.671095 4.894213 -1.375820 2.755171 -3.484630 -6.549928 4.497727 2.227834 1.984027 1.225732 -0.662704 0.290029 -4.066076 -0.982179 4.118520 3.512063 -1.611378 6.879251 5.440128 7.842447 -4.802171 2.234871 3.330937 -3.722951 1.785751 -1.597469 -8.443693 2.217657 1.993127 4.550746 8.125043 -1.427868 -0.642724 2.602271 -1.421968 2.354531 -4.158762 1.437309 -5.282651 -2.647474 -4.467911 2.755760 -1.828980 -0.989501 -3.310362 -3.836095 8.586402 -10.455900 -3.979787 10.692079 -3.288254 2.112008 -6.600710 6.848634 -3.441373 4.157032 -0.065142 -0.380492 0.188210 -0.663287 -6.095353 1.872041 4.103981 -3.076254 1.316552 8.369030 1.525863 0.286535 -0.309087 5.741093 -4.036683 4.872845 -5.240625 9.063076 -0.901377 -2.351460 -1.611932 -2.947589 -1.034812 -5.116504 2.218856 5.588474 2.097418 3.395313 1.586939 3.628689 5.564145 -4.439737 7.319886 -1.063848 -0.547702 -4.727838 -0.912010 2.390459 1.157398 -2.318472 3.628403 -8.560450 -6.848884 -12.797785 -3.825017 -0.307565 -2.654993 2.917019 -2.962373 -2.969670 -5.537980 -8.095278 8.849762 -3.171131 -0.954263 5.600436 3.779888 5.057962 7.728937 -1.657879 2.678055 -2.539008 -0.212693 0.397868 -3.129833 -3.729233 7.322793 -2.414472 1.653809 8.425037 -1.354987 4.957425 0.349588 3.272045 -4.189609 7.664914 2.887904 -2.950681 3.631398 7.671423 6.910368 0.422974 -5.038599 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::size() const = 0.585102 -1.359354 2.933315 2.555776 -0.501565 1.222328 -0.516226 -1.833687 1.092541 1.056610 -0.370288 1.149007 -0.794177 0.614900 -0.695507 1.350612 -1.694900 -0.602429 -0.964225 -1.326981 -0.818464 -0.690480 -0.414301 0.994952 0.869387 0.847024 -1.120258 0.641081 -1.138965 -2.628753 0.051015 -0.023850 0.689661 -0.680174 1.121624 -2.520009 2.164469 2.059053 -0.421836 -2.120433 0.290671 -0.402435 -0.578860 0.052625 -0.664903 0.729625 -0.294798 0.493430 0.576045 0.860816 0.150288 1.043161 1.595141 2.753004 -0.036514 1.676637 1.384365 0.070162 0.410254 0.319509 0.352114 0.640009 0.282012 0.181110 0.516775 -1.499573 -0.530608 0.211381 -0.577760 1.112545 -0.251572 -1.591458 -1.198665 -1.286045 -1.622363 -0.196107 -2.838020 1.476276 2.060938 -1.521938 1.067546 0.502194 0.258951 0.542867 1.387379 -0.143657 1.651804 0.930334 -0.346199 0.713686 0.308899 -0.722201 0.950572 -0.671618 -1.960477 -2.893512 1.168933 -2.692615 -1.815841 1.492633 0.805948 -0.923229 -0.349907 -1.265824 0.468422 0.323242 -0.943937 -1.249155 -0.059329 1.318950 0.649819 -0.936985 0.099631 -0.119199 0.433186 0.635165 -1.825277 0.697449 1.015712 -0.241207 -0.189215 1.623884 0.744519 0.065855 -0.537638 0.414465 -0.597076 1.456585 -0.106727 1.580696 -1.144332 1.286921 -0.665252 1.450382 0.673288 -1.639032 -0.505853 0.225372 -0.146464 0.912791 -0.278959 1.541471 -1.202234 0.863729 1.044153 0.200161 -1.140762 -1.153961 -1.351341 -1.594865 0.138005 -0.803854 -2.006886 0.631605 1.307640 0.921189 0.680635 0.254845 -1.132001 -0.311223 -0.273517 0.304083 0.861279 -0.522583 0.439466 -0.808453 -1.425852 1.221450 0.717083 0.612859 0.562968 -0.269315 0.301685 -0.371462 0.295920 1.245753 0.857287 -0.349300 1.919660 1.523572 2.183349 -0.127076 -0.023564 0.325551 -1.176736 0.388401 -0.555983 -1.718148 0.220329 0.697504 0.923977 2.203691 -0.442592 0.112059 0.903020 -0.326517 0.493446 -0.905491 0.775608 -1.229590 -0.436016 -0.780602 0.389085 -0.614647 -0.163024 -1.231338 -1.072328 2.096649 -2.826076 -0.646759 2.069314 -0.527818 0.297488 -1.162006 1.408809 -0.708870 1.261944 0.456171 -0.185018 0.153277 -0.245980 -1.320422 0.385082 0.994475 -0.897224 0.127780 1.490095 0.287916 -0.298307 -0.035368 1.148994 -1.199097 0.831554 -1.446726 1.829018 -0.373256 -0.022402 -0.492147 -0.586217 -0.288197 -1.140482 0.306590 0.349510 0.009073 0.586797 -0.371722 0.904805 0.752108 -0.801047 1.512259 -0.380252 -0.179670 -1.354112 -0.323750 0.231378 0.616108 0.104174 0.590006 -2.165691 -0.878527 -3.351619 -0.446009 -0.332163 0.012482 0.523309 -0.313369 -0.828522 -1.170936 -2.120499 2.949498 -0.654996 -0.574329 1.385191 0.905725 1.297700 1.538049 0.264028 0.479029 -0.865002 -0.205484 0.118872 -0.342168 -0.657623 1.728713 -0.526022 0.303828 1.867384 -0.283691 1.438895 0.308796 0.253195 -1.224525 1.662569 0.728005 -0.903356 0.433357 2.107474 1.329115 -0.646280 -1.136467 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::max_size() const = -0.164721 -0.650105 1.140082 0.889873 -0.065289 0.492649 0.180554 -0.780042 1.033707 0.153616 -0.178458 0.030527 -0.735608 0.155692 -0.468093 0.314390 -0.706279 -0.715823 -0.280134 -0.684125 -0.394995 -0.704618 0.098874 0.202854 0.309517 0.127790 -0.414325 0.049271 -0.963388 -0.326104 0.725640 -0.161387 0.352592 0.006022 0.166075 -1.563563 0.767724 0.718408 -0.264768 -0.894249 0.078349 -0.568651 0.006645 -0.218305 -0.041734 0.114730 -0.088827 0.420939 0.479661 0.082659 0.273943 0.132651 -0.155484 1.559674 -0.599769 0.718210 0.348830 0.129734 -0.115994 0.416825 0.201600 0.255766 0.418672 0.512726 -0.261080 -0.501644 -0.014443 -0.354733 -0.768523 0.737632 -0.074329 -0.350408 -0.533218 -0.338713 -0.736177 -0.287714 -0.984815 0.636824 1.204455 -0.796002 0.755040 0.244872 0.520705 0.036376 0.528829 -0.101779 0.967491 0.222852 -0.442839 -0.003804 -0.713535 -0.028112 0.055728 -0.211799 -0.495523 -0.919349 0.555874 -0.963972 -0.976888 0.348577 0.257454 -0.050197 -0.579979 0.018404 0.388741 0.212195 -0.514855 -0.877670 -0.329243 0.498579 0.003453 -0.243136 0.161847 -0.198574 -0.069653 -0.503983 -0.906502 -0.128523 0.204741 -0.451903 -0.336245 0.888780 -0.456978 0.046358 -0.020915 0.164174 -0.243571 0.812023 -0.075624 0.419755 -0.057545 0.102033 -0.996002 0.154659 0.246854 0.655000 -0.127336 0.167249 -0.071856 0.234224 -0.504948 0.114219 -0.377625 0.175749 0.417958 -0.356134 -0.497931 -0.340444 -0.065756 -1.022358 0.129066 -0.627177 -0.408514 0.165550 0.706410 1.027635 0.438943 1.063031 -0.722856 0.393798 -0.161122 -0.060783 0.441730 0.074869 0.455849 -0.420300 -0.706060 0.294273 0.194611 0.190216 0.247817 -0.324232 -0.119044 -0.716506 -0.253750 0.268144 0.369322 -0.107466 0.741779 0.601970 0.418743 -1.216099 0.373941 0.359050 -0.225974 0.208025 -0.083641 -0.971995 0.377215 0.243492 0.101424 0.667357 -0.152044 -0.236776 0.155559 -0.246032 0.360805 -0.629035 0.039022 -0.629674 -0.320066 -0.681746 0.329213 -0.422558 -0.317482 -0.351079 -0.401771 0.907341 -0.682428 -0.658004 1.067942 0.004227 0.458483 -0.901591 0.518815 -0.453369 0.784264 -0.229837 0.052263 -0.146359 0.286004 -0.301725 0.118875 0.388225 -0.442690 0.403587 1.040129 0.242593 0.236165 0.163861 0.778939 -0.309671 0.265107 -0.536884 0.800664 -0.075987 -0.488902 0.150573 -0.454080 0.164338 -0.294769 0.238134 0.862812 0.776222 0.285453 0.430226 0.543626 0.410020 -0.376725 0.430955 -0.018051 0.273564 -0.406206 -0.032314 0.103847 0.194190 -0.297422 0.218442 -0.979839 -1.167390 -0.858551 -0.787377 0.054220 -0.388985 0.025555 -0.032895 -0.036906 -0.862690 -0.643595 0.466207 -0.446324 0.672840 0.324474 0.481005 0.639170 1.001804 -0.546328 0.000539 0.236027 0.094105 -0.262995 -0.255013 -0.615564 0.768228 -0.485609 0.350878 0.868679 -0.174167 0.326995 0.157843 0.586108 -0.577200 1.051160 0.461586 -0.392359 0.607997 0.646298 1.157931 0.353572 -0.520387 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.796507 -4.510927 9.459562 8.214862 -1.170116 4.033997 -1.598172 -6.084253 3.904942 4.447574 -1.660787 4.135592 -2.398848 1.688584 -2.058811 4.783818 -5.373432 -2.218929 -2.611906 -4.018734 -2.893741 -2.513419 -1.438549 3.130483 2.817106 2.608966 -3.789795 2.292247 -3.400187 -9.966656 -0.499054 -0.058114 2.104600 -2.888786 3.618739 -8.243300 7.302933 6.911997 -1.311117 -7.283336 0.744064 -0.937349 -2.397447 0.952334 -1.903970 2.511460 -0.661152 2.279834 1.402422 3.098224 0.923061 3.346512 5.464040 9.319958 0.524420 5.936150 5.032459 0.499293 1.118496 1.349218 1.653601 1.906975 1.303974 1.133220 1.642449 -4.481427 -1.405497 1.246593 -2.021543 3.714898 -0.349209 -5.782036 -3.648432 -4.240323 -4.751594 -0.438852 -7.950179 4.455355 7.113259 -4.581452 3.807200 2.281588 1.433343 1.430323 4.489435 -1.153037 6.201291 3.256868 -1.554827 1.608216 0.696141 -3.130352 3.072796 -1.778862 -6.420654 -9.093505 3.599708 -9.110444 -6.372282 4.820682 2.601680 -2.988489 -1.543174 -3.879879 2.645424 0.838462 -2.588391 -4.157067 -0.799468 4.102394 0.822088 -3.402106 -0.035371 -0.424314 1.396900 3.462547 -6.160216 1.749579 3.738278 -1.035290 -0.874725 5.028224 2.553243 0.678880 -2.007611 1.158109 -1.318977 3.787860 -0.052273 5.247560 -3.154251 4.353700 -1.967792 5.270987 1.915821 -6.569226 -1.630945 0.736107 -0.022847 3.241598 -0.851807 5.714819 -4.963779 3.379683 3.777186 1.030180 -4.054921 -4.206104 -4.330080 -4.974689 1.006632 -2.743605 -6.863219 1.079423 4.450446 2.312979 1.983015 0.391020 -4.100973 -0.410564 -0.663971 1.925186 2.456595 -2.381014 1.367357 -2.768057 -4.809797 4.107188 3.336748 1.720733 1.675143 -1.173800 0.913124 -1.160019 -0.049581 4.097778 2.455105 -0.718355 6.149637 4.544513 9.099887 -0.760973 -0.006621 0.886750 -3.380182 1.270119 -1.964518 -6.045891 0.654093 2.013192 4.572343 8.081315 -1.173310 0.052627 2.661526 -0.501865 1.293311 -3.003466 3.153840 -4.333072 -1.265435 -1.838483 1.367503 -2.208544 -0.293572 -4.023727 -3.091761 7.025699 -8.943841 -3.194851 7.150182 -2.604316 1.127707 -4.442208 4.630120 -2.342937 3.747207 1.147991 -0.652093 0.445944 -1.306287 -4.141755 1.610248 3.320583 -2.727700 0.840225 4.724119 0.676939 -0.552241 0.007298 3.144087 -3.904193 2.329250 -4.759616 6.175002 -1.026946 -0.193888 -2.379773 -1.943823 -0.315244 -3.425639 0.577251 0.364022 0.162832 1.026870 -1.317420 2.910190 2.212046 -3.275469 5.574401 -0.765046 -0.457328 -4.326602 -1.173275 0.465496 1.321161 0.026757 2.486765 -7.097992 -2.287809 -10.902084 -2.229711 -1.676047 0.287873 2.347013 -1.122333 -2.586494 -3.809992 -6.788744 10.424560 -1.796824 -1.673759 4.805933 3.365811 4.356116 4.858520 1.172796 1.636024 -3.664673 -1.431427 -0.357899 -2.045651 -1.525011 5.419057 -1.215232 1.718127 5.620872 -0.646546 4.455035 0.331641 0.416504 -3.738564 5.285150 2.659958 -2.878200 0.670266 6.183544 5.123516 -3.357610 -4.101984 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_node() = -0.368314 -1.310201 1.972320 1.560780 0.003995 0.882440 0.303947 -1.017193 1.425894 0.721810 -0.512052 0.557896 -1.046970 0.196276 -0.510340 0.696814 -1.125021 -1.245890 -0.142806 -0.824245 -0.513102 -1.058079 -0.160922 0.570591 0.514166 0.067163 -0.754868 0.000196 -1.631325 -1.115717 0.653673 -0.343948 0.654897 -0.275961 0.442910 -2.635236 1.256536 1.298909 -0.341347 -1.807340 0.140780 -0.846892 -0.048099 -0.139898 -0.120782 0.418306 0.203179 0.612890 0.479696 0.322720 0.316629 0.239030 0.111428 2.557845 -0.563881 1.287385 0.898597 0.083453 -0.054717 0.469511 0.486180 0.152281 0.828890 0.806996 -0.375842 -0.785492 -0.181620 -0.295593 -1.120959 0.952396 0.095333 -0.607722 -0.859089 -0.497093 -1.215608 -0.439773 -1.274160 1.030838 2.070941 -1.136795 1.463895 0.634247 1.129563 0.098840 1.053408 -0.154383 1.664104 0.511546 -0.829898 -0.045476 -1.139579 -0.387304 0.066206 -0.088898 -0.866742 -1.321499 0.801231 -1.586970 -1.623052 0.826539 0.283095 -0.160760 -0.982940 -0.123995 0.884264 0.579094 -0.766627 -1.424971 -0.788020 0.789607 -0.221722 -0.641049 0.257937 -0.414842 -0.086798 -0.444869 -1.424123 -0.198383 0.711330 -0.808362 -0.553078 1.424884 -0.564439 0.353862 -0.179414 0.217535 -0.296674 1.059530 0.183245 0.785361 0.015244 -0.061824 -1.830983 0.479472 0.345731 0.587378 -0.337816 0.206870 0.025806 0.527871 -0.442622 0.458501 -0.675294 0.731640 0.948166 -0.374625 -0.896731 -0.996531 -0.040912 -1.344478 0.294335 -0.962061 -0.668048 0.232197 1.198264 1.210119 0.629240 1.444668 -1.170678 0.837572 -0.253947 0.184620 0.631412 -0.173031 0.604131 -0.727963 -1.127756 0.611551 0.817659 0.353665 0.427389 -0.596919 -0.011617 -0.905266 -0.651884 0.585875 0.651142 -0.006759 1.423816 0.890016 1.296055 -1.742753 0.338819 0.355701 -0.406705 0.276397 -0.271621 -1.664153 0.611122 0.399259 0.409448 1.380841 -0.232038 -0.568633 0.410056 -0.208724 0.426773 -0.943821 0.445487 -1.148380 -0.421663 -0.799637 0.298666 -0.826379 -0.482983 -0.762695 -0.548542 1.673854 -1.100916 -1.359774 1.478974 -0.415790 0.662729 -1.835715 1.034684 -0.795006 1.119432 -0.373484 0.019645 -0.282041 0.487278 -0.503827 0.229356 0.813926 -0.822757 0.731703 1.533899 0.352812 0.299588 0.360083 1.043231 -0.391642 0.222029 -0.848949 1.240930 -0.192560 -0.481624 -0.046431 -0.654272 0.523958 -0.194453 0.246952 0.859919 1.000809 0.190113 0.515790 1.091295 0.456673 -0.764052 0.757826 -0.149890 0.702138 -0.703001 -0.122406 -0.242066 0.257134 -0.313598 0.454372 -1.720944 -1.533146 -1.578136 -1.333437 -0.149609 -0.240248 0.194128 0.034820 -0.010441 -1.610685 -1.038508 0.955109 -0.566936 0.850033 0.743454 0.765238 1.179731 1.337618 -0.570228 -0.223486 -0.052942 -0.104195 -0.565861 -0.519644 -0.751994 1.030595 -0.881558 0.815068 1.291607 -0.261332 0.504617 0.240837 0.852225 -0.906215 1.858393 0.973323 -0.850108 0.606590 1.069798 1.878347 -0.230147 -1.003953 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.294208 -0.892814 1.566300 1.467280 -0.159824 0.625964 0.218397 -1.033500 1.223337 0.743887 0.011670 0.297262 -0.905863 0.382639 0.193657 0.915899 -1.094448 -0.748117 -0.318331 -0.884885 -0.718670 -0.846663 0.128468 0.216161 0.444786 0.211702 -0.703329 -0.099504 -0.718125 -0.987533 0.753817 -0.286093 0.744003 0.143522 0.267930 -3.173453 1.146220 0.816210 -0.394003 -1.261377 0.122400 -0.644836 0.226119 -0.211337 -0.350390 0.272127 -0.043651 0.305642 0.719119 0.329544 0.448808 0.272847 0.344241 2.340771 -0.661653 0.939023 0.508593 -0.145183 -0.343415 0.313610 0.351380 0.291964 0.820244 0.648711 -0.222518 -0.835231 -0.178860 -0.450074 -1.274063 0.923053 0.078072 -0.556404 -0.899205 -0.550016 -0.609627 -0.556993 -1.475269 1.003648 1.666877 -1.137488 1.017286 0.341672 0.495554 0.157681 0.892364 -0.093465 1.448180 0.325556 -0.630586 0.223142 -0.288093 -0.565651 0.328216 -0.021849 -0.571759 -1.377719 0.486715 -0.610303 -1.287825 0.794152 0.380993 0.073083 -1.387692 -0.625756 0.727193 0.486813 -0.772342 -1.284520 -0.761495 0.530510 -0.010083 -0.556189 -0.073857 -0.388745 -0.254334 -0.460047 -1.301784 -0.189932 0.372529 -0.606237 -0.604523 1.158434 -0.453338 0.094121 -0.127392 0.267357 -0.423944 1.213086 -0.112396 0.816306 0.170595 0.116927 -1.338635 0.168235 0.402822 0.714858 0.047144 -0.204229 -0.374761 0.379209 -0.716088 0.510407 0.003619 0.771265 1.342384 -0.026632 -0.807027 -0.526702 0.020840 -1.496471 0.410883 -0.950043 -0.067543 0.558099 0.982622 0.792104 0.655153 1.011659 -1.077298 0.758871 -0.409789 0.070062 0.830307 0.380851 0.633180 -0.593167 -0.874036 0.454188 0.563461 0.326460 0.344198 -0.475777 -0.003236 -0.648527 -0.579235 0.396554 0.513335 -0.153560 0.850343 0.682892 2.161299 -1.299656 0.425997 0.452369 -0.256741 0.315845 -0.204728 -1.253882 0.420517 0.302045 -0.178753 1.050765 -0.309989 -0.647353 0.213699 -0.209562 0.368960 -0.696567 0.284841 -0.821091 -0.213543 -0.800169 0.044999 -0.627583 -0.448318 -0.482376 -0.149252 1.417017 -0.980114 -0.895124 1.477882 -0.625349 0.500372 -1.487658 1.646812 -0.618651 0.591994 -0.916284 -0.384275 -0.224558 0.497822 -0.456075 0.384414 0.644401 -0.496660 0.161394 1.653869 0.331391 0.278094 0.108922 0.965038 -0.045078 0.412748 -0.603186 1.458133 -0.222574 0.012174 -0.083136 -0.567654 0.371513 -0.328682 0.164998 0.889021 0.892150 0.128792 0.346560 0.855416 0.522740 -0.626207 0.848924 -0.029347 0.516607 -0.585050 0.024103 0.066737 0.390021 -0.361958 0.462650 -1.273941 -1.097474 -1.090811 -0.700689 -0.331917 0.623349 0.215184 -0.087377 -0.088941 -1.102286 -0.749262 0.946200 -0.600533 0.460481 0.485094 0.621189 0.982057 1.347205 -0.357016 -0.291606 -0.175888 -0.318534 -0.278246 -0.261286 -0.671407 1.010396 -0.722978 0.582624 0.944956 -0.141228 0.400579 0.100150 1.110336 -0.666449 1.464870 0.565041 -0.313904 0.801583 1.144716 1.442293 -0.079463 -0.706941 -PE-benchmarks/strongly-connected-components.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.672051 -4.143692 5.735081 5.140046 -0.057420 3.770182 -0.660768 -2.340341 0.452456 2.961293 -0.230466 3.632947 -2.144207 0.323533 -0.152329 1.181352 -1.872371 -1.303193 -1.604528 -1.649690 -0.084262 -1.379303 -2.392552 4.492522 1.155014 0.269130 -2.283265 1.083229 -4.756709 -5.398745 -0.739292 0.236674 2.579549 -2.573240 2.433301 -5.670181 3.953351 5.487489 -0.056606 -5.186964 0.871994 -0.584748 -0.954608 1.096995 -2.632837 1.956719 0.300989 -1.859582 0.201573 1.442198 -0.572749 1.582320 3.806186 4.391415 0.793414 3.815187 3.607039 -0.599889 1.771910 -0.418508 -0.112883 0.435762 1.099250 -0.212724 0.254336 -2.361486 -0.389770 1.683158 -1.965830 0.770357 -0.201924 -2.984281 -1.329768 -1.972603 -4.182974 -0.419975 0.852322 1.708002 4.065965 -1.428342 3.746817 0.720447 0.385266 1.661453 3.872487 0.472685 1.741155 1.807338 -1.172011 1.797426 -0.321075 -0.491971 1.147965 1.438325 -4.238392 -3.339257 2.242564 -4.137660 -3.318035 3.908075 0.089789 -2.432305 -2.132013 -3.785870 0.445496 1.907455 -2.227487 -2.997370 -1.147776 4.101660 1.068494 -2.471256 0.360850 -0.647522 0.581137 -0.002839 -2.236766 1.605005 3.389385 -1.027415 -1.264229 3.892827 0.395388 1.768353 -1.000303 1.409907 -1.632088 1.586553 0.897210 2.527708 -2.233239 -0.304210 -1.434441 -0.150881 0.284947 -1.826671 -1.488816 -1.012388 0.001502 1.992573 2.004700 3.960071 -0.896149 2.091393 2.392407 1.169024 -0.876697 -3.061532 -2.038125 -2.806838 -0.661316 -1.002704 -3.815203 2.681799 2.498703 -0.694692 0.383976 1.299744 -1.172831 -0.079758 -0.484243 -0.680457 1.074944 -2.075400 0.255765 -1.628992 -3.399540 2.560797 2.103150 2.049497 1.178446 -0.458831 0.623622 0.647293 0.123742 1.699409 1.295271 -0.246195 4.433792 3.311855 5.798260 0.716256 -0.999092 -0.689249 -3.069554 1.108706 -1.926945 -3.276400 -0.546122 2.081185 -0.722211 5.709321 -1.251553 -1.390228 3.147302 -0.444272 0.767846 -2.298112 3.850309 -2.918180 0.158058 -1.560017 -2.484177 -1.392372 -1.071278 -4.215814 -1.893260 4.647797 -5.082741 -2.586771 2.037007 0.506873 0.167238 -4.145198 2.653257 -1.331416 3.329087 1.488190 -0.668205 0.386026 0.905109 -2.092275 0.372550 2.148295 -3.180828 1.395448 2.803523 0.411205 -1.320419 0.104721 1.638855 -1.453280 0.050417 -3.770179 2.645488 -1.020087 0.477484 -0.975417 -1.237714 0.636904 -1.480636 -0.228574 -2.423166 0.302857 -0.017696 -2.085313 3.223293 -0.107101 -0.458407 1.943614 -1.064861 0.776671 -2.355039 -0.474046 -1.263245 2.585627 2.185680 1.687085 -4.872975 -1.184391 -5.232126 -2.296176 -0.531409 2.291622 0.586114 1.077147 -1.151417 -4.032666 -4.126030 5.321178 -1.148625 1.433846 3.257279 2.228843 2.876159 2.124260 1.232549 -0.038468 -1.482330 -0.040549 -0.582588 -0.085108 -0.570132 2.544275 -1.456049 1.479798 2.941885 -0.148278 3.296914 0.101987 -0.659442 -3.307409 4.501270 2.209748 -2.411101 0.581113 3.081359 2.146839 -3.438978 -2.006852 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_S_buffer_size() = -0.218478 -0.404421 0.333654 0.227742 -0.013551 0.191383 0.003816 0.074405 0.168943 0.030653 -0.279672 0.187840 -0.233518 -0.096473 0.103834 -0.012843 -0.142653 -0.313309 0.177629 0.093304 0.029220 -0.216995 -0.193204 0.269348 0.030473 0.295112 -0.077410 0.079451 -0.379280 -0.087123 0.042887 -0.091357 0.172813 0.345160 0.219322 -0.241826 0.059078 0.246296 0.037296 -0.472478 -0.058861 -0.101213 0.104244 -0.074920 0.072951 0.250996 0.259438 0.051251 -0.091875 0.018940 -0.171621 -0.275185 -0.068764 0.052817 0.130077 0.209773 0.334137 -0.023180 0.084442 -0.134843 0.164161 -0.163930 0.186370 0.190714 -0.260861 -0.014889 -0.071218 -0.116727 -0.197405 0.030427 0.058191 0.035134 -0.161212 -0.221817 -0.149368 -0.074715 -0.143167 0.144022 0.418446 -0.147395 0.436518 0.239540 0.457277 -0.002557 0.220206 -0.006842 0.157958 0.136116 -0.293983 0.138793 -0.279409 -0.217516 -0.094989 0.129119 -0.130051 0.239283 0.108881 -0.280051 -0.270494 0.191853 -0.070135 0.075032 -0.149167 0.210561 0.161908 0.268139 -0.113698 -0.214939 -0.085336 0.049276 -0.102866 -0.095219 -0.025613 0.148430 -0.145825 -0.128953 -0.222964 -0.096419 0.266909 -0.284086 0.130662 0.241231 -0.194987 0.281165 -0.059551 -0.106417 0.006511 0.307506 0.351538 -0.023088 -0.015940 -0.280253 -0.340471 0.035779 -0.010366 0.316799 -0.192416 -0.074292 0.219401 0.034452 0.139787 -0.113448 -0.123602 0.102662 0.261755 -0.079782 -0.175770 -0.372624 -0.184114 -0.252198 0.056891 -0.172897 0.143445 0.199617 0.181227 0.185831 0.007169 0.518831 -0.287821 0.127849 -0.092217 0.028207 -0.069519 0.219030 0.084485 -0.149525 -0.119525 0.186284 0.207561 0.019048 0.250457 -0.264963 0.072194 -0.139437 -0.157357 0.339123 0.134957 0.104238 0.289954 0.077836 -0.083429 -0.118048 -0.113955 -0.087890 0.060481 -0.034107 0.039233 -0.304765 0.245051 -0.023564 0.116117 0.139560 -0.029018 -0.057132 0.121369 -0.055654 0.038271 -0.203392 0.219210 -0.246642 0.066443 -0.159225 0.135168 -0.232601 -0.116190 -0.131678 0.019497 0.343222 0.072350 -0.250956 -0.028468 0.118889 0.306166 -0.284437 -0.152712 -0.139396 0.463947 -0.006682 -0.019745 -0.014287 -0.161344 0.201903 -0.192004 0.174172 -0.019063 0.002340 0.026426 0.042157 -0.128333 0.267453 0.087299 0.022702 -0.085772 -0.030736 -0.036545 0.005013 0.063651 0.108576 -0.084867 0.196691 0.129289 -0.146512 0.153999 0.237843 0.027494 0.154216 0.093497 -0.128046 -0.183874 -0.117530 0.028700 0.396507 -0.123754 -0.073896 -0.283575 0.249733 0.001015 -0.061304 -0.287045 -0.380848 -0.115790 -0.357103 -0.276749 0.004119 0.024572 0.148228 0.067226 -0.158964 -0.093125 0.131974 -0.058260 0.580381 -0.016757 0.109505 0.314159 0.119575 -0.165834 -0.290013 0.138222 0.026608 -0.212446 0.138832 -0.193566 0.050275 -0.201328 0.125471 0.256975 -0.127538 -0.024662 0.013340 0.324870 -0.186868 0.417084 0.273838 -0.393000 0.027585 0.067379 0.319785 -0.106208 -0.232574 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.685790 -1.190648 2.165852 1.621221 0.354244 0.873517 0.945493 -1.415804 2.186204 1.355817 -0.223593 -0.336300 -1.486394 0.087313 -0.324658 0.870964 -1.072410 -1.415127 -0.316788 -1.312204 -0.508945 -1.593366 0.650730 -0.153851 0.593807 -0.552835 -0.675200 -0.393974 -1.459188 -1.414530 1.693657 -0.461342 0.895332 -0.376155 -0.281987 -3.800919 1.693832 1.171244 -0.636843 -1.606315 0.243399 -0.573358 -0.175388 0.283014 -0.072640 0.301230 -0.021594 0.766653 0.915062 0.523105 1.186599 -0.121210 0.011104 3.384079 -1.413203 1.319523 0.411458 0.090441 -0.313444 1.232221 0.384337 0.481915 1.017250 1.510242 -0.135491 -0.716580 0.410846 -0.562143 -2.216428 1.557878 -0.165922 -0.644677 -0.705870 -0.187320 -0.719359 -0.388973 -1.116479 0.942003 2.537458 -1.001131 1.770549 0.611811 0.913408 -0.224184 0.424736 -0.192292 1.619424 0.339229 -0.944840 -0.587587 -1.280593 -0.319385 0.034454 0.143866 -0.547917 -1.353225 1.073702 -0.514177 -1.584082 0.664469 0.432391 0.025107 -1.818163 -0.154071 0.946531 0.532054 -0.830996 -1.825349 -1.417764 0.832819 -0.596263 -0.359454 0.150823 -0.707089 -0.505298 -0.701376 -1.474568 -0.694477 0.066463 -1.146832 -1.277849 1.439725 -1.147413 0.163980 0.169659 0.646666 -0.455273 0.883362 -0.004120 1.199829 0.821345 -0.008680 -2.453391 -0.247475 0.684590 1.565006 0.463115 0.057688 -0.433882 0.483829 -1.064075 0.641223 -0.306298 0.406709 1.591763 -0.641824 -0.813114 -0.457300 0.779836 -1.932077 0.490200 -1.448989 -0.296362 0.183392 1.394764 1.324436 0.926215 2.252901 -1.959721 1.451565 -0.595068 -0.140853 0.521606 -0.026959 0.798825 -0.624095 -1.350619 -0.013529 0.988003 0.307122 0.289653 -0.956496 -0.387048 -1.421143 -0.915195 0.164485 0.325991 -0.556210 0.701941 0.999695 2.396040 -2.751377 0.756221 1.005123 -0.225457 0.272670 -0.033638 -2.138134 0.637074 0.370178 -0.035191 1.278849 -0.182883 -0.941782 0.263304 -0.691981 0.268952 -1.052914 0.303776 -1.216388 -0.451391 -1.098487 0.085832 -0.979707 -0.770036 -0.336378 0.044166 1.575385 -0.584545 -1.667977 2.096734 -0.486038 0.128449 -2.202075 2.125754 -0.828563 0.657238 -1.044588 -0.100588 -0.694505 1.324877 -0.405664 0.135962 0.512949 -0.813074 1.447547 2.736125 0.527546 0.546230 0.190129 1.566768 -0.333366 0.169467 -1.052224 1.515061 -0.282749 -0.959711 -0.111870 -0.900301 0.761030 -0.592337 0.258829 1.184954 1.736794 -0.349461 0.912233 1.079799 0.822171 -0.560570 1.228560 0.360734 1.025288 -0.435459 0.177679 0.225810 0.096100 -1.010888 1.019473 -1.798038 -1.865099 -0.805238 -1.848655 -0.221595 -0.077268 0.344385 -0.075455 0.314957 -2.003722 -0.948595 0.617669 -0.752739 0.966247 0.700550 0.931800 1.056433 1.944935 -0.929363 -0.130757 0.007426 -0.016908 -0.878492 -1.075832 -0.598570 1.315386 -0.970836 0.852806 1.104769 -0.111747 0.297107 -0.098606 1.077442 -1.180052 2.148019 1.048170 -0.004098 1.306496 0.653055 2.740657 0.224016 -0.812774 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.447068 -12.681687 29.716365 25.506638 -4.834571 11.102321 -4.311518 -20.831250 14.094726 12.517827 -4.577457 11.468296 -7.744517 6.523405 -7.464679 16.522298 -18.568111 -7.499212 -8.662915 -14.449385 -11.157495 -8.270063 -1.370165 7.239917 9.588166 9.208126 -12.766565 5.384180 -8.747903 -30.005697 1.145387 -0.521707 6.925974 -7.135745 9.442975 -30.487420 22.620843 19.949298 -5.371047 -21.449269 3.153553 -3.639174 -7.204790 2.057103 -6.586875 6.313273 -3.911231 8.089753 6.138946 9.132201 5.054367 11.850783 15.516550 32.235115 -0.767598 17.945057 13.647551 1.850374 0.800451 5.069488 6.197062 7.454042 5.291622 4.833426 5.147646 -15.266863 -4.641482 1.737809 -8.140695 13.655036 -1.050823 -17.925055 -11.953125 -12.994889 -13.203126 -2.278284 -25.656115 15.178296 22.456325 -15.634608 10.757149 6.328318 3.731241 2.612071 12.549669 -4.421609 21.262481 9.673629 -3.843021 3.148794 2.727800 -9.335207 9.869341 -5.691891 -19.190867 -29.997292 11.857071 -27.418396 -20.858850 13.499493 10.315128 -8.608915 -6.717238 -11.073003 9.122966 2.073858 -8.190874 -13.518160 -3.650503 11.786644 2.553292 -10.416857 -1.506158 -1.858207 3.638164 10.164716 -20.720881 4.895789 9.522028 -3.147675 -3.536654 15.239392 7.238384 0.169872 -5.719762 4.225626 -4.434206 13.151689 -2.120891 16.707090 -8.341053 15.537473 -5.802496 16.429556 6.874218 -17.841617 -4.781287 1.205975 -2.077821 9.611308 -5.941945 16.034568 -15.346250 10.648490 14.124504 2.415065 -14.241154 -11.493807 -12.065764 -18.367293 3.532158 -10.287936 -19.550326 3.382248 14.053263 9.415515 7.750616 2.557624 -13.956611 0.996486 -1.469628 5.911299 9.501717 -5.752650 5.503445 -8.995373 -15.538272 12.091634 9.183272 5.550365 4.180608 -2.987781 1.780627 -5.586519 -2.204292 12.764245 8.445817 -1.668275 17.616216 14.004925 30.526688 -5.963789 1.763824 4.602971 -10.035804 3.839773 -5.424817 -19.788067 2.402029 5.870457 13.969705 24.949556 -3.571394 -0.127597 6.887820 -1.738573 4.671939 -9.844649 8.524456 -13.526915 -4.120889 -6.887162 4.393484 -6.816126 -0.494419 -11.160083 -10.191494 22.276395 -28.831692 -10.976327 25.575983 -9.827303 4.373694 -15.341283 15.769661 -7.488765 10.625228 0.367360 -2.255977 0.430132 -4.432120 -13.892408 6.559218 10.016213 -7.630130 1.974671 18.198079 2.496971 -0.282509 -0.911959 11.281534 -11.407460 9.779967 -14.181446 22.125319 -2.745635 -2.063838 -6.929140 -6.209007 -2.223467 -11.575712 2.980911 5.372674 2.166273 4.373979 -2.112634 8.843779 9.710340 -11.551805 18.966506 -1.812731 -1.783772 -12.626134 -3.718743 3.727303 3.936635 -2.713262 7.776796 -21.842611 -9.850498 -34.203095 -8.501056 -4.377816 -0.560697 8.089966 -5.374389 -8.432918 -11.648178 -20.705143 31.253561 -6.195582 -3.112724 14.584573 10.517345 13.897755 17.365802 1.109515 6.188124 -11.087684 -4.504317 -0.349707 -7.550981 -6.393490 17.804896 -3.371168 5.463010 18.452117 -2.154034 13.579484 1.073612 3.730921 -10.897282 17.121484 7.491844 -7.973535 4.338775 18.422554 16.551349 -7.544057 -13.073616 -PE-benchmarks/strongly-connected-components.cpp__int** std::copy(int**, int**, int**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/strongly-connected-components.cpp__int** std::copy_backward(int**, int**, int**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.002590 -2.236412 3.990259 2.842120 0.395314 1.402840 2.065714 -2.940371 3.384983 1.705869 -0.222157 0.189625 -3.238931 0.781844 -1.972752 1.833918 -1.767317 -2.788608 -0.883293 -2.442046 -1.241466 -2.643534 1.838462 0.269928 1.492472 -0.675727 -1.373703 -1.149955 -3.407651 -3.210155 2.409703 -0.579426 1.513872 -0.943142 -0.488274 -5.501300 2.826055 2.404866 -1.316287 -2.934907 1.298539 -1.094243 -0.694661 0.623200 0.036080 0.505180 -0.047067 1.667688 1.712579 1.508214 2.438925 0.608064 0.366787 5.480794 -2.488642 2.751874 1.472015 0.926354 -0.517440 1.862516 0.334428 0.859271 1.423547 2.276334 -0.553870 -1.262660 0.086250 -0.933734 -3.663222 2.621450 -0.535703 -1.330623 -1.849206 -0.688515 -1.636352 -0.575293 -2.186069 1.508613 4.748994 -2.422046 2.871648 0.895988 1.250136 -0.951425 0.889360 -0.552491 2.248578 0.755513 -1.424635 -1.196851 -2.464015 0.003869 -0.450127 0.313011 -1.395234 -3.336770 2.461900 -1.923536 -3.557176 1.180887 0.659040 -0.498283 -2.564121 0.203191 1.375112 0.957721 -2.046630 -3.671264 -2.241038 1.626446 0.031900 -0.733128 0.448136 -1.052654 -0.744597 -1.141396 -3.262612 -0.870506 0.431726 -2.539594 -2.166579 2.458481 -1.459643 1.085509 0.589499 1.387145 -0.809269 2.064604 0.410135 1.894155 1.414213 0.392535 -3.615964 0.414928 1.217725 2.225735 -0.353917 0.919911 -0.852215 0.687299 -1.567265 1.038126 -1.163105 0.727095 2.599739 -1.362495 -2.119948 -0.522075 0.985791 -3.711722 1.225651 -2.814027 -0.996560 -0.321871 2.063609 1.836243 1.488283 4.382126 -2.742259 2.068603 -0.166370 -0.277654 1.054208 -0.386032 1.781036 -1.349522 -3.343970 0.626425 1.568908 0.142254 0.425859 -0.957292 -0.577392 -2.992884 -1.757786 0.176405 0.726402 -1.313143 1.927932 1.751567 3.435516 -3.697294 1.027407 1.542713 -0.944833 0.805784 -0.463749 -4.191990 1.216398 0.628448 0.562254 2.862609 -0.134557 -1.562454 1.677068 -1.080284 0.977726 -2.167720 0.894175 -2.683073 -1.304732 -2.423826 0.339665 -0.787090 -1.189376 -0.407498 -0.321609 3.120899 -1.349148 -2.681129 3.466195 -0.558192 0.605895 -4.347965 3.773899 -1.321135 1.330316 -1.051910 0.332542 -0.819735 1.842464 -0.634583 0.087261 0.931776 -1.242464 2.640548 4.889611 0.442114 0.816670 0.810314 2.907347 -0.834272 0.615202 -1.920909 3.241435 -0.534315 -2.424377 0.387986 -1.326851 0.801275 -1.560397 0.490005 2.721487 2.719459 -0.615466 1.692638 1.925770 2.159838 -1.273495 2.577408 0.313841 1.740160 -1.350636 0.128767 0.381541 0.095800 -1.551347 2.105341 -3.335791 -3.985668 -1.961574 -4.208002 0.113450 -1.020697 1.152421 -0.669791 0.007553 -3.511043 -2.185859 1.464434 -1.425947 1.886255 2.167181 2.155478 2.392875 3.950999 -1.607018 0.422011 -0.074175 0.496253 -1.396587 -1.912066 -0.714010 1.441643 -1.426154 1.325207 2.055315 0.215666 1.002511 -0.799616 1.876024 -2.117487 4.106975 1.751903 -0.162672 3.092010 1.501781 4.500863 0.559621 -1.389175 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/strongly-connected-components.cpp__int** std::__miter_base(int**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_wrap(int** const&, int**) = -0.216889 -0.266459 0.395803 0.358802 0.113353 0.124916 0.245948 -0.174661 0.469585 0.329413 -0.007362 -0.032471 -0.401040 0.090013 0.115063 0.290524 -0.196848 -0.331630 0.027113 -0.200139 -0.128038 -0.330870 0.165481 -0.106598 0.150359 -0.107711 -0.137837 -0.168707 -0.356358 -0.158032 0.290792 -0.185617 0.213712 0.088776 -0.043321 -0.702062 0.261666 0.145042 -0.145935 -0.324930 0.068807 -0.258085 0.239958 -0.072157 0.163421 0.120623 0.114283 0.071114 0.303339 0.131296 0.287338 -0.121985 -0.030490 0.555408 -0.395300 0.218027 0.043743 -0.055105 -0.123191 0.127063 0.076943 -0.007923 0.280317 0.287755 -0.196732 -0.193710 -0.079493 -0.219865 -0.473803 0.243908 -0.030907 0.036258 -0.336534 -0.063083 -0.038942 -0.199795 -0.676753 0.197781 0.544326 -0.285583 0.383646 0.152019 0.268294 0.001952 0.195213 0.037562 0.294699 0.022421 -0.294056 0.011327 -0.200821 -0.072924 -0.024529 0.094550 0.022512 -0.128327 0.112014 0.162297 -0.352471 0.176669 0.028961 0.169857 -0.442496 0.072874 0.169694 0.238159 -0.255216 -0.464516 -0.234132 0.024126 -0.010357 -0.087593 0.024672 -0.299998 -0.227258 -0.320474 -0.343451 -0.193706 -0.016508 -0.325417 -0.278200 0.334512 -0.299204 0.071418 0.048823 0.086933 -0.119701 0.385644 0.071677 0.245280 0.189724 -0.164565 -0.808130 -0.016216 0.186422 0.517857 0.047057 0.096815 -0.174283 -0.009022 -0.269278 0.011859 0.148086 0.219611 0.447816 -0.194995 -0.199626 -0.079910 0.190318 -0.396993 0.232127 -0.294806 0.257395 -0.013431 0.286884 0.249883 0.268839 0.600635 -0.377012 0.270257 -0.180719 -0.050241 0.267341 0.248729 0.269126 -0.163710 -0.187158 0.028721 0.268726 -0.047430 0.144729 -0.181513 0.009020 -0.336900 -0.070138 0.030282 0.083114 -0.156346 0.217679 0.111036 0.453879 -0.472448 0.147832 0.227368 0.070123 0.064001 0.009635 -0.384964 0.263986 0.048628 -0.160819 0.076910 -0.038292 -0.271402 0.056405 -0.160563 0.133449 -0.213268 0.019920 -0.220722 -0.107197 -0.261829 0.103177 -0.197172 -0.249392 0.038858 0.171940 0.353763 0.152851 -0.182399 0.246892 -0.116255 0.064242 -0.399758 0.631279 -0.239453 0.106469 -0.377915 -0.070115 -0.129647 0.411151 0.018980 -0.030555 0.165898 -0.077239 0.173204 0.496971 0.165358 0.094412 0.114861 0.339207 0.085525 0.048982 -0.029303 0.325288 -0.067848 0.012571 0.122012 -0.172845 0.197385 0.014790 -0.036545 0.399399 0.403974 -0.088995 0.245487 0.179694 0.199252 -0.154400 0.178474 0.025816 0.378240 -0.117683 0.043544 -0.025753 0.044870 -0.168403 0.133783 -0.341205 -0.382094 0.154007 -0.229562 -0.076458 0.229987 -0.023723 0.042852 0.124349 -0.381034 -0.094659 0.022612 -0.191255 0.188176 -0.014701 0.111683 0.259365 0.390275 -0.190001 -0.239648 -0.002498 -0.080009 -0.127920 -0.068424 -0.147443 0.223762 -0.365918 0.132946 0.165409 -0.101269 -0.077372 0.040507 0.414465 -0.209244 0.484187 0.195786 0.028391 0.414686 0.305020 0.665044 0.015395 -0.157214 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_base(int**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.600533 -1.041844 1.619427 1.378216 0.272507 0.824195 0.348432 -0.969565 1.237401 0.824992 -0.097873 0.440667 -1.041300 0.234132 -0.205923 0.650773 -0.779620 -1.056540 -0.228010 -0.821215 -0.429342 -0.965398 0.074700 0.386226 0.440356 -0.250667 -0.766871 -0.077036 -1.603033 -1.143458 0.696661 -0.314285 0.750462 -0.395423 0.127330 -2.621557 1.210629 1.137690 -0.347127 -1.394591 0.259019 -0.779689 0.106371 -0.022152 -0.119568 0.375091 0.097134 -0.054510 0.690456 0.322989 0.587278 0.253894 0.071668 2.066610 -0.834538 1.101037 0.550737 -0.078823 -0.202771 0.430875 0.209935 0.203810 0.878244 0.731327 -0.495081 -0.764550 -0.009124 -0.210427 -1.337781 0.839785 -0.013782 -0.506149 -0.676640 -0.271593 -0.959093 -0.485960 -0.277710 0.616621 1.775421 -0.746316 1.313062 0.303794 0.730842 0.109496 0.998606 -0.045259 1.304664 0.330009 -0.795121 -0.079795 -0.875931 -0.099307 0.007694 0.551060 -0.581196 -0.736472 0.583724 -0.866924 -1.355223 0.707489 0.165430 -0.031934 -1.519198 -0.304246 0.737274 0.565348 -0.725766 -1.431942 -0.780584 0.742669 -0.177944 -0.582476 0.115169 -0.785590 -0.314953 -0.590908 -1.144516 -0.258714 0.451873 -0.750119 -0.949387 1.299483 -0.721874 0.232589 -0.095633 0.433281 -0.473226 0.811847 -0.071659 0.766555 0.150398 -0.288901 -1.836737 -0.212697 0.288959 0.880497 -0.271666 -0.064174 -0.364144 0.322380 -0.555130 0.486022 -0.252503 0.719263 1.224016 -0.274696 -0.640699 -0.540598 0.282768 -1.408026 0.284458 -0.847252 -0.359021 0.176949 1.059271 0.645336 0.687662 1.521575 -0.881449 0.838324 -0.281706 -0.121386 0.831636 -0.182395 0.636238 -0.649011 -1.029228 0.492739 0.691402 0.269530 0.353213 -0.414711 -0.048423 -0.801910 -0.616477 0.285439 0.393846 -0.044838 1.061487 0.723096 1.753884 -1.558723 0.402491 0.444284 -0.320849 0.359752 -0.292614 -1.328025 0.374052 0.454921 -0.143166 1.310058 -0.209046 -0.910854 0.316269 -0.131975 0.484701 -0.898665 0.527041 -0.970127 -0.156025 -0.750132 -0.304326 -0.639017 -0.596633 -0.635652 -0.295261 1.426601 -0.614980 -1.339731 1.270851 -0.297445 0.461088 -1.908107 1.123138 -0.765176 0.862263 -0.630826 -0.015004 -0.277317 0.845053 -0.487015 0.365510 0.654365 -0.814249 0.824125 1.605596 0.387941 0.354190 0.111475 0.938577 -0.094589 0.174608 -0.714513 1.243209 -0.217186 -0.331677 0.021785 -0.617787 0.484166 -0.236346 0.098818 0.485949 1.081029 -0.080485 0.339442 1.092934 0.528264 -0.541642 0.734585 -0.082111 0.671883 -0.478785 -0.083351 -0.082688 0.334054 -0.145825 0.541221 -1.456299 -1.280974 -0.790929 -1.401241 0.026195 0.395973 0.070620 0.159479 0.090045 -1.550323 -0.730583 0.763019 -0.530834 1.233923 0.573062 0.702596 0.916894 1.246004 -0.532897 -0.317028 -0.171861 -0.144957 -0.506149 -0.455557 -0.607933 0.972991 -0.782057 0.717088 0.879677 -0.201940 0.366110 0.139859 0.700485 -0.816486 1.692227 0.748005 -0.360787 0.901222 0.718540 1.786064 -0.230132 -0.709979 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.387749 -2.830341 3.437951 2.989720 1.054548 2.502771 0.428061 -1.737552 1.994820 2.561661 -0.781074 1.714182 -1.936048 -0.015437 -0.404853 0.966785 -1.069674 -2.179832 -0.046583 -1.051753 -0.247515 -2.099729 -0.914266 1.817814 0.592626 -0.462791 -1.425731 0.472712 -4.023316 -3.881001 0.419131 -0.453275 1.523534 -1.308139 0.793483 -4.193807 2.757834 3.260757 -0.292282 -3.718997 0.287465 -1.228927 -0.460464 0.950746 -0.089163 1.542769 0.738089 -0.312462 0.577840 1.032793 0.859848 0.208288 0.980983 3.287686 -0.558443 2.904885 2.012975 -0.107171 0.502293 0.828151 0.339066 0.069805 1.747007 1.570387 -1.006560 -1.047064 0.158903 0.641621 -2.445738 1.295469 -0.049696 -1.540252 -1.030660 -0.613771 -2.319734 -0.551378 0.455631 0.776670 3.923093 -0.738261 3.491029 1.060093 2.009712 0.225836 2.675305 -0.222570 2.600210 1.072201 -2.131711 -0.000464 -2.034820 -0.676603 -0.082439 1.636607 -1.820255 -0.663668 1.121304 -2.764050 -2.834291 2.012393 -0.335948 -0.499620 -2.807065 -0.750611 1.822378 1.267579 -1.296142 -2.986843 -1.572940 2.154787 -1.019851 -1.585795 0.300082 -1.355503 -0.419769 -0.184829 -1.932689 -0.542632 1.956727 -1.747634 -1.841424 2.866977 -0.804076 1.275978 -0.506167 0.684790 -0.635059 0.862693 0.439333 1.569074 0.082674 -0.979631 -3.764813 0.069747 0.234173 0.060557 -1.012436 -0.151998 0.180677 1.058194 0.001532 1.901883 -1.409834 1.636451 2.603038 -0.061355 -1.058615 -1.915866 0.308612 -2.275786 0.435339 -1.419855 -1.701201 -0.003592 2.354559 0.324189 0.921366 2.512839 -1.744781 1.337177 -0.556726 0.205015 0.972120 -1.197044 0.839838 -1.380293 -2.366403 1.480603 2.269941 0.509939 0.968731 -1.149870 0.021150 -0.928888 -1.344066 1.223838 0.656850 0.248702 2.844945 1.588133 4.040474 -2.262296 0.231799 0.181962 -0.915273 0.791330 -1.010555 -2.941728 0.679820 1.084144 0.661145 3.606004 -0.462979 -1.737975 1.044984 0.099487 0.744418 -2.016401 2.069713 -2.441320 -0.070683 -1.008320 -1.059365 -1.382750 -1.337908 -1.920117 -0.522487 3.120854 -1.184863 -3.177968 2.094293 -0.849620 0.659644 -4.156625 1.352500 -1.634279 1.904802 -0.407949 0.063399 -0.484897 1.482523 -0.716775 0.508464 1.574015 -2.171788 2.445416 2.551073 0.538284 0.363977 0.585134 1.322787 -0.518651 -0.693852 -1.980961 1.950209 -0.451639 -0.251271 -0.453120 -1.362824 1.557376 -0.267429 -0.348303 -0.485449 1.891806 -0.970915 -0.093498 2.552451 0.137811 -1.034062 1.428750 -0.256381 1.481213 -1.259119 -0.416312 -1.078382 0.480449 0.474308 1.265427 -3.381097 -1.835429 -2.166972 -3.222100 -0.422534 1.020178 0.504124 0.966949 0.350243 -3.597186 -1.831468 2.599414 -0.835913 2.400840 1.644838 1.783701 1.983429 1.985008 -0.202787 -0.708741 -1.123648 -0.451944 -1.797959 -1.042331 -0.516172 1.706456 -1.330383 2.030457 1.444460 -0.204508 0.984551 0.131883 0.642046 -1.956640 3.468964 2.116024 -1.116894 0.902719 1.026921 3.602255 -1.947186 -1.663723 -PE-benchmarks/strongly-connected-components.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.340255 -0.382649 0.604634 0.544547 0.183334 0.236679 0.296519 -0.364610 0.683350 0.509635 0.056782 0.020530 -0.522626 0.158155 0.072919 0.426760 -0.278970 -0.479441 -0.050081 -0.380909 -0.267505 -0.471550 0.193627 -0.113831 0.194867 -0.268710 -0.301676 -0.188569 -0.557367 -0.372756 0.402672 -0.219470 0.315120 -0.137270 -0.066269 -1.254217 0.453251 0.285612 -0.217806 -0.486426 0.096133 -0.365485 0.258373 -0.041080 0.100314 0.112877 0.068097 -0.015631 0.431051 0.166382 0.471358 0.009723 -0.049656 1.023234 -0.575972 0.382793 0.085176 -0.053051 -0.211805 0.245416 0.117068 0.068975 0.431050 0.400009 -0.235788 -0.312479 -0.052295 -0.227971 -0.693098 0.402077 -0.025090 -0.099500 -0.397362 -0.089969 -0.180453 -0.310758 -0.635170 0.256647 0.791343 -0.405012 0.531029 0.173461 0.353155 0.055108 0.352551 0.003844 0.562426 0.054474 -0.401403 -0.028889 -0.254238 -0.024938 -0.020728 0.238561 -0.051982 -0.289366 0.203531 0.096961 -0.556464 0.296395 0.078792 0.200798 -0.793983 -0.058538 0.312019 0.282576 -0.374943 -0.695623 -0.450012 0.154786 -0.035827 -0.187219 0.059578 -0.513654 -0.249921 -0.390890 -0.512688 -0.251143 0.033461 -0.415466 -0.536697 0.531272 -0.432402 0.060374 0.035358 0.182432 -0.209024 0.454388 -0.005632 0.401000 0.188155 -0.163670 -1.166914 -0.119471 0.215683 0.639846 0.062993 0.073775 -0.290614 0.042818 -0.404953 0.145592 0.112344 0.349773 0.674349 -0.187702 -0.304563 -0.123347 0.322151 -0.622031 0.274951 -0.440320 0.184271 -0.013400 0.442335 0.354647 0.376318 0.794309 -0.488294 0.475365 -0.224507 -0.077311 0.424808 0.128502 0.361972 -0.254280 -0.369988 0.067681 0.384793 0.005128 0.177176 -0.250614 -0.024243 -0.439870 -0.207137 -0.001388 0.138030 -0.171026 0.325690 0.208060 0.913616 -0.832615 0.258876 0.305855 0.016902 0.147802 -0.083378 -0.570798 0.251226 0.139024 -0.234100 0.302668 -0.076387 -0.464610 0.070312 -0.172776 0.224910 -0.326693 0.092331 -0.352961 -0.138562 -0.357501 -0.012488 -0.300999 -0.291140 -0.047272 0.100874 0.556584 -0.008744 -0.436360 0.523408 -0.184858 0.098791 -0.735891 0.877385 -0.327805 0.191825 -0.557119 -0.064676 -0.205600 0.647839 -0.085273 0.124445 0.260489 -0.240278 0.291899 0.837639 0.206015 0.227334 0.077740 0.488944 0.092808 0.074241 -0.148882 0.599879 -0.104865 -0.079458 0.083017 -0.274983 0.281976 -0.040020 0.019049 0.409942 0.578884 -0.144789 0.253982 0.395200 0.298714 -0.235927 0.339178 0.027718 0.431813 -0.173087 0.068349 0.000529 0.065711 -0.229948 0.219791 -0.526710 -0.505961 0.023059 -0.437420 -0.031503 0.375389 -0.047989 0.029217 0.114590 -0.618627 -0.183098 0.168627 -0.283437 0.342963 0.081672 0.238788 0.386249 0.617825 -0.272710 -0.252675 -0.076537 -0.186529 -0.197533 -0.200425 -0.207666 0.382776 -0.459919 0.260647 0.239912 -0.084395 -0.006389 0.125511 0.448602 -0.292170 0.728363 0.290638 0.059894 0.556276 0.420719 0.988053 -0.042616 -0.249778 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.597181 -1.146650 1.746159 1.506355 0.241895 0.893340 0.375586 -1.019144 1.274986 0.909717 -0.088491 0.516690 -1.098944 0.179460 -0.144874 0.692699 -0.839574 -1.078277 -0.248059 -0.852658 -0.425327 -0.997377 -0.002008 0.509052 0.473445 -0.207935 -0.792869 -0.059672 -1.654869 -1.294377 0.631837 -0.303629 0.809109 -0.412161 0.220568 -2.734624 1.305478 1.289456 -0.352821 -1.532089 0.256723 -0.765818 0.111765 -0.016040 -0.196362 0.442643 0.120080 -0.044211 0.666565 0.365272 0.543403 0.283064 0.222985 2.137264 -0.748309 1.199830 0.673460 -0.076860 -0.156784 0.400609 0.245697 0.195113 0.906930 0.688980 -0.477859 -0.805047 -0.056766 -0.165983 -1.384603 0.840180 0.016760 -0.589487 -0.745759 -0.339900 -1.102240 -0.519679 -0.339347 0.660534 1.874045 -0.825361 1.404468 0.392689 0.745113 0.159297 1.087188 -0.044429 1.368428 0.381031 -0.816821 0.036567 -0.912139 -0.223825 0.056001 0.494362 -0.692829 -0.936787 0.625841 -1.035509 -1.474868 0.818252 0.186636 -0.087598 -1.560195 -0.427767 0.773982 0.617042 -0.787555 -1.497488 -0.804339 0.807600 -0.180784 -0.640879 0.139057 -0.720349 -0.266620 -0.543218 -1.229742 -0.215275 0.562059 -0.767361 -0.916559 1.383862 -0.690643 0.315482 -0.129116 0.424818 -0.494414 0.853200 -0.025048 0.825196 0.099360 -0.280487 -1.794683 -0.227547 0.268023 0.789457 -0.258368 -0.112282 -0.335102 0.401965 -0.479598 0.634182 -0.252220 0.766730 1.240116 -0.214142 -0.645450 -0.651483 0.136302 -1.460521 0.322553 -0.840018 -0.417429 0.255251 1.117251 0.587891 0.676226 1.459325 -0.887996 0.778765 -0.305281 -0.098791 0.834741 -0.201223 0.653233 -0.660592 -1.094198 0.566565 0.765262 0.379454 0.382842 -0.430321 -0.019669 -0.746297 -0.641315 0.263718 0.398113 -0.071312 1.170669 0.804267 1.847601 -1.481135 0.368132 0.402560 -0.353592 0.407511 -0.336048 -1.413444 0.378531 0.474537 -0.120464 1.428476 -0.252044 -0.893748 0.413965 -0.135724 0.473505 -0.956016 0.591094 -1.049794 -0.152004 -0.795732 -0.282700 -0.715257 -0.625955 -0.758831 -0.333885 1.546626 -0.697973 -1.362920 1.319039 -0.292276 0.497158 -1.948506 1.210057 -0.769411 0.936682 -0.608868 -0.063707 -0.223166 0.794213 -0.518529 0.292536 0.707526 -0.885414 0.809526 1.599383 0.388734 0.300381 0.131586 0.953354 -0.141695 0.199208 -0.831106 1.317188 -0.262255 -0.307900 -0.005557 -0.634697 0.542308 -0.246005 0.084219 0.430468 1.049600 -0.075422 0.284608 1.134249 0.500340 -0.588890 0.784755 -0.045973 0.690550 -0.549938 -0.062086 -0.142568 0.379010 -0.110961 0.605634 -1.562203 -1.252972 -0.919120 -1.400158 -0.052440 0.472220 0.105754 0.181509 0.052027 -1.604886 -0.847417 0.928591 -0.550225 1.096237 0.655360 0.757282 1.024907 1.292357 -0.464435 -0.320344 -0.190875 -0.181523 -0.519860 -0.490428 -0.603661 1.024496 -0.815224 0.766165 0.943968 -0.207521 0.442905 0.062699 0.748852 -0.887941 1.782925 0.783305 -0.442272 0.874354 0.861628 1.852602 -0.365518 -0.768963 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.370988 -3.354369 4.071611 3.630417 0.901489 2.848493 0.563831 -1.985445 2.182748 2.985290 -0.734166 2.094295 -2.224268 -0.288795 -0.099608 1.176416 -1.369444 -2.288519 -0.146828 -1.208970 -0.227438 -2.259622 -1.297803 2.431941 0.758070 -0.249128 -1.555723 0.559531 -4.282496 -4.635593 0.095007 -0.399995 1.816769 -1.391828 1.259674 -4.759138 3.232078 4.019589 -0.320752 -4.406487 0.275985 -1.159572 -0.433492 0.981306 -0.473135 1.880528 0.852816 -0.260968 0.458385 1.244210 0.640473 0.354138 1.737565 3.640960 -0.127298 3.398850 2.626590 -0.097355 0.732227 0.676821 0.517880 0.026317 1.890437 1.358651 -0.920446 -1.249550 -0.079311 0.863841 -2.679848 1.297442 0.103014 -1.956943 -1.376252 -0.955309 -3.035469 -0.719971 0.147442 0.996234 4.416215 -1.133486 3.948062 1.504565 2.081067 0.474843 3.118212 -0.218422 2.919029 1.327307 -2.240212 0.581343 -2.215858 -1.299192 0.159098 1.353114 -2.378422 -1.665243 1.331885 -3.606976 -3.432519 2.566208 -0.229918 -0.777942 -3.012052 -1.368219 2.005918 1.526050 -1.605086 -3.314572 -1.691714 2.479442 -1.034050 -1.877810 0.419523 -1.029299 -0.178103 0.053621 -2.358817 -0.325434 2.507661 -1.833842 -1.677280 3.288871 -0.647925 1.690441 -0.673579 0.642475 -0.740998 1.069458 0.672392 1.862280 -0.172517 -0.937557 -3.554542 -0.004503 0.129491 -0.394645 -0.945943 -0.392539 0.325888 1.456120 0.379191 2.642686 -1.408417 1.873787 2.683535 0.241414 -1.082370 -2.470292 -0.423721 -2.538261 0.625814 -1.383685 -1.993241 0.387916 2.644460 0.036966 0.864186 2.201590 -1.777513 1.039383 -0.674597 0.317991 0.987649 -1.291185 0.924814 -1.438198 -2.691254 1.849731 2.639245 1.059560 1.116875 -1.227920 0.164919 -0.650824 -1.468260 1.115235 0.678184 0.116334 3.390857 1.993987 4.509059 -1.874353 0.060004 -0.026661 -1.078985 1.030123 -1.227721 -3.368820 0.702216 1.182228 0.774652 4.198095 -0.677967 -1.652443 1.533462 0.080743 0.688439 -2.303155 2.389981 -2.839657 -0.050581 -1.236319 -0.951235 -1.763947 -1.484520 -2.536011 -0.715609 3.720980 -1.599828 -3.293911 2.335234 -0.823776 0.839995 -4.358618 1.787094 -1.655456 2.276898 -0.298159 -0.180112 -0.214143 1.228319 -0.874346 0.143594 1.839818 -2.527613 2.372420 2.520010 0.542252 0.094931 0.685689 1.396671 -0.754179 -0.570852 -2.563929 2.320104 -0.676983 -0.132386 -0.589828 -1.447373 1.848084 -0.315722 -0.421301 -0.762855 1.734658 -0.945599 -0.367667 2.759026 -0.001810 -1.270301 1.679601 -0.075689 1.574552 -1.614885 -0.309988 -1.377783 0.705228 0.648631 1.587490 -3.910618 -1.695419 -2.807928 -3.216687 -0.815709 1.401412 0.679793 1.077099 0.160156 -3.870000 -2.415642 3.427275 -0.932869 1.712406 2.056329 2.057128 2.523494 2.216774 0.139521 -0.725317 -1.218721 -0.634774 -1.866515 -1.216690 -0.494813 1.963979 -1.496217 2.275844 1.765914 -0.232414 1.368525 -0.253918 0.883881 -2.313915 3.922453 2.292527 -1.524317 0.768382 1.742363 3.934945 -2.624112 -1.958646 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::deque() = -0.266089 -0.409759 0.768164 0.503588 -0.039957 0.269698 0.211296 -0.591278 0.818416 0.152198 -0.085703 -0.070981 -0.634515 0.170870 -0.340911 0.326032 -0.471961 -0.558811 -0.142840 -0.509122 -0.334610 -0.596477 0.300633 0.020851 0.192451 0.060396 -0.241864 0.023315 -0.541642 -0.508647 0.556962 -0.210871 0.239850 0.017991 0.041207 -1.078586 0.569514 0.314778 -0.263865 -0.547624 0.111532 -0.288301 0.048236 -0.044043 0.015272 0.129067 0.029632 0.343524 0.433597 0.200417 0.414571 -0.038359 -0.090877 1.008798 -0.557530 0.481867 0.219211 0.123182 -0.132111 0.327650 0.072480 0.130529 0.275537 0.529400 -0.244672 -0.254489 0.034662 -0.295614 -0.716893 0.588059 -0.177524 -0.185922 -0.447337 -0.249364 -0.387211 -0.212583 -0.771490 0.350249 1.011031 -0.553163 0.535293 0.210558 0.401805 -0.066857 0.277514 -0.092136 0.632232 0.130452 -0.453697 -0.021138 -0.333185 0.003461 -0.072809 -0.018915 -0.158742 -0.584717 0.384809 -0.591127 -0.692575 0.271293 0.120174 0.102726 -0.531986 0.061425 0.360127 0.144290 -0.469718 -0.769312 -0.284456 0.238921 0.013916 -0.048105 0.146588 -0.179673 -0.149040 -0.284152 -0.698627 -0.269005 0.051330 -0.531948 -0.294551 0.568178 -0.315993 0.167928 0.133775 0.210596 -0.165051 0.648238 0.086449 0.343725 0.018644 0.070891 -0.769274 0.125793 0.193969 0.429521 -0.033694 0.155954 -0.114238 0.065861 -0.464042 0.011815 -0.283518 0.064849 0.496818 -0.268651 -0.452565 -0.074160 -0.003833 -0.903583 0.270190 -0.603860 -0.203596 0.033922 0.421008 0.592912 0.358957 0.897046 -0.562439 0.340338 -0.188222 -0.053640 0.282943 0.077585 0.444770 -0.277779 -0.541356 0.156715 0.211280 -0.008612 0.240078 -0.421725 -0.092467 -0.653627 -0.223421 0.188836 0.253637 -0.167911 0.374258 0.294057 0.450016 -0.737368 0.242062 0.352961 -0.027822 0.146827 -0.042915 -0.750455 0.342526 0.119666 0.107148 0.343557 -0.054928 -0.228028 0.195541 -0.218719 0.311704 -0.466996 -0.006496 -0.474395 -0.190075 -0.536893 0.269648 -0.261350 -0.230781 -0.031491 -0.102272 0.590902 -0.357865 -0.405980 0.783481 -0.022326 0.410496 -0.657564 0.515809 -0.301076 0.570390 -0.253313 0.096394 -0.165408 0.211341 0.025136 0.033132 0.198428 -0.119461 0.345313 0.800599 0.141968 0.234141 0.252366 0.643588 -0.141914 0.128442 -0.249838 0.587085 -0.088395 -0.373318 0.222179 -0.293305 0.118213 -0.242036 0.152529 0.622567 0.637294 -0.042834 0.448032 0.328850 0.338557 -0.264432 0.348402 0.027020 0.335200 -0.336056 0.016440 0.076461 0.146206 -0.362156 0.221447 -0.645590 -0.893140 -0.540197 -0.644818 -0.134913 -0.185338 0.088456 -0.073731 0.070651 -0.494463 -0.315599 0.477357 -0.315458 0.506730 0.242225 0.395221 0.507107 0.893809 -0.375717 -0.135971 0.103278 0.030169 -0.291258 -0.116449 -0.375146 0.369903 -0.381224 0.217869 0.455864 -0.078081 0.060943 0.017567 0.436794 -0.417703 0.755497 0.376655 -0.055046 0.668508 0.377183 0.906188 0.359238 -0.289770 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_base() = -0.480470 -2.023707 4.696366 3.124186 -1.159909 1.394607 0.779359 -3.489920 3.172122 1.119198 -0.422268 0.170847 -2.411237 0.666799 -0.745624 1.983898 -2.998952 -1.850028 -1.081341 -2.891208 -1.729630 -2.288966 1.196245 0.638862 1.219071 1.056989 -1.185983 -0.031029 -0.984309 -3.949466 2.425364 -0.471359 1.513478 0.247666 0.787546 -7.082717 3.285020 1.876049 -1.322914 -3.071704 0.729005 0.041194 -0.913278 0.689554 -1.148912 0.784463 -0.285571 2.260808 1.323936 1.640198 1.401199 0.401292 1.233228 5.678747 -1.286287 2.532965 1.908359 0.365120 -0.414516 1.518787 0.601373 0.883774 1.026884 2.028535 0.237081 -1.606105 0.318188 -1.066702 -3.386459 2.768682 -0.211003 -2.273600 -1.749149 -2.005180 -1.439477 -0.662484 -3.480294 2.354230 4.702170 -2.838102 2.418369 1.090848 1.015961 -0.442131 1.028868 -0.681937 2.972010 1.093901 -1.328440 0.153829 -0.727418 -1.551791 0.572754 -0.719009 -1.764048 -4.578578 2.284884 -2.921792 -3.246569 1.999203 1.385696 -0.580502 -2.501503 -1.222228 1.701803 0.567253 -2.143225 -3.124606 -1.881324 1.673632 -0.186989 -0.452803 -0.108156 0.462634 -0.404258 0.049564 -3.560082 -0.275174 0.886734 -1.808959 -0.986519 2.373289 -0.497894 0.805645 0.365276 1.217080 -1.029932 2.839836 0.568066 2.020871 0.344938 1.318212 -1.506227 1.246048 1.088262 0.527442 0.363007 -0.474578 -0.413857 1.061731 -1.605754 1.581759 -1.423657 0.736569 3.085853 -0.182130 -2.487764 -0.883143 -0.790438 -4.490108 1.252936 -2.986248 -1.666998 1.246415 1.830993 2.098545 1.217496 2.466878 -3.099273 1.660858 -1.000419 0.261281 0.611607 0.240031 1.669160 -1.296945 -2.778020 0.707156 1.092513 0.674021 0.972283 -1.958418 -0.245239 -2.392770 -1.773573 1.187412 1.336298 -0.972450 1.373128 2.159120 4.863818 -2.263003 0.296982 1.349833 -1.041066 0.394926 -0.167119 -3.820516 0.827042 0.596842 1.059845 3.130829 -0.422696 -0.590982 1.351304 -0.969490 0.643135 -1.737645 0.715510 -2.467038 -0.641926 -2.186968 0.817359 -1.575740 -0.606734 -0.819661 -0.749210 3.332001 -3.284833 -2.274926 4.478819 -1.221119 1.465711 -3.430256 3.645475 -0.919143 2.039964 -1.074271 -0.295700 -0.820706 -0.226081 -0.698818 0.508506 0.700195 -0.471513 1.029392 4.534508 0.320459 0.442827 0.714778 2.945477 -1.423989 1.058025 -2.094753 3.532556 -0.882813 -1.395655 -0.103244 -1.022238 0.179647 -2.046361 0.752429 2.054074 1.779389 -0.127683 1.208800 1.506485 1.480274 -1.443002 2.726532 0.434804 1.071096 -1.776061 -0.058623 0.712136 1.094308 -1.688428 1.519237 -3.385320 -3.395533 -4.360353 -2.944410 -1.495478 -0.288678 1.477508 -0.872438 -0.527768 -2.087828 -2.267038 3.556524 -1.282418 0.927798 2.281272 2.189564 2.839912 4.385026 -0.927056 0.197943 -0.253064 0.029454 -1.197651 -1.054035 -1.386303 1.959401 -1.022005 0.975765 2.666571 0.307054 1.294560 -0.843977 2.228464 -2.262266 3.472469 1.606169 -0.580300 2.272562 2.210536 3.241446 0.740545 -1.482582 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.078883 -0.690940 1.384196 1.155033 0.164837 0.582740 0.247283 -1.148698 1.438094 0.709342 -0.085908 0.159324 -0.866326 0.463878 -0.762234 0.845856 -0.795896 -0.896068 -0.363101 -0.926103 -0.698844 -0.923485 0.289364 -0.071102 0.449946 -0.272257 -0.693969 0.031137 -1.154038 -0.969437 0.669652 -0.297340 0.296169 -0.697769 0.100702 -1.804595 1.138277 0.804098 -0.425315 -1.030264 0.133714 -0.750514 0.050550 -0.147112 0.184219 0.109515 -0.159708 0.495415 0.825240 0.297085 0.784491 0.458047 -0.027283 2.252951 -1.034899 0.969975 0.311513 0.263579 -0.201114 0.704028 0.267989 0.415822 0.530171 0.718021 -0.208029 -0.703609 -0.147466 -0.234174 -0.854043 1.035861 -0.185663 -0.499547 -0.857488 -0.286429 -0.852952 -0.382285 -1.817978 0.702601 1.581285 -0.984062 0.794291 0.329787 0.686583 0.132020 0.765048 -0.198450 1.419421 0.277117 -0.673575 -0.125642 -0.554722 0.133581 0.106075 -0.203314 -0.530078 -1.427157 0.584849 -1.086397 -1.306163 0.529084 0.342101 0.055921 -0.791332 -0.085858 0.668192 0.146959 -0.709967 -1.276646 -0.472112 0.537131 0.074825 -0.414654 0.393723 -0.844851 -0.013737 -0.326171 -1.179538 -0.318364 0.177761 -0.621192 -0.776331 1.116244 -0.348568 -0.031324 -0.049153 0.266280 -0.271423 0.826657 -0.228381 0.900805 -0.174230 0.419092 -1.754351 0.515480 0.440064 0.228549 -0.089757 0.592131 -0.353161 0.297479 -0.848019 0.399909 -0.620845 0.444007 0.633240 -0.408239 -0.744608 -0.298937 0.202248 -1.119058 0.406599 -0.782272 -0.701156 -0.350738 0.940982 1.088685 0.723350 1.041991 -0.881542 0.521804 -0.207591 0.150373 0.831279 -0.266805 0.622504 -0.538269 -0.951575 0.383245 0.549626 0.016452 0.251621 -0.393394 -0.082704 -0.869485 -0.122064 0.179090 0.450473 -0.310170 0.978552 0.586888 1.053703 -1.589422 0.594354 0.606390 -0.218987 0.367654 -0.318369 -1.258799 0.500969 0.360370 0.339602 0.844140 -0.160615 -0.464825 0.204310 -0.263852 0.593183 -0.713829 -0.020132 -0.787273 -0.594708 -0.691360 0.476057 -0.411868 -0.314839 -0.257660 -0.376222 1.113082 -0.908270 -0.713004 1.518656 -0.320637 0.324235 -1.105034 1.109282 -0.602907 0.594524 -0.392648 0.172523 -0.227483 0.833260 -0.511065 0.351577 0.586309 -0.585436 0.636824 1.411603 0.299326 0.523051 0.139714 0.982080 -0.337714 0.265538 -0.572930 1.265945 -0.120861 -0.557448 0.057352 -0.589187 0.236325 -0.410783 0.339988 0.910920 0.870454 0.086302 0.444829 0.727273 0.706129 -0.561004 0.834049 -0.143803 0.203296 -0.590572 0.018394 0.182390 -0.121205 -0.493067 0.421275 -1.205478 -1.098778 -1.065011 -0.731765 0.162116 -0.232354 0.000590 -0.189355 -0.060551 -1.133135 -0.785729 0.889054 -0.578949 0.161828 0.492395 0.588489 0.714904 1.332008 -0.501335 0.077854 -0.212185 -0.244156 -0.272925 -0.539012 -0.498429 0.970216 -0.679718 0.485343 0.824501 -0.186300 0.302484 0.360606 0.419452 -0.594655 1.225808 0.592736 -0.079818 0.810657 1.030696 1.807134 0.188105 -0.652693 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.036435 -8.253968 17.727777 13.486268 -4.023140 6.051152 1.181458 -11.844130 10.188145 6.416142 -2.689727 3.159235 -7.126652 2.189367 -0.940030 8.089111 -11.783489 -5.767156 -3.374261 -8.936940 -5.604130 -7.524342 1.547681 3.597161 4.975833 4.714050 -5.515754 0.678888 -3.731741 -14.831554 6.197134 -1.461095 5.832112 0.223631 4.243780 -25.880562 12.379642 9.033180 -3.723118 -12.817715 1.861832 -0.737963 -3.251409 1.645462 -4.656396 3.423152 -1.282056 7.221374 3.774679 5.104237 2.892721 2.533773 6.466071 20.912212 -2.332295 9.625463 7.300736 0.163973 -0.874318 4.008958 3.814516 3.254285 4.731425 6.152805 1.761834 -7.294521 -0.152110 -2.262228 -10.204524 9.090407 0.436849 -8.624964 -6.593811 -7.155393 -5.731930 -2.079670 -12.695541 9.794956 15.835365 -9.341336 9.197981 4.181004 3.726606 -0.359798 5.453385 -2.285626 12.121499 4.710365 -4.139687 1.114164 -1.791720 -7.359746 4.262587 -2.790845 -8.160203 -16.424617 7.140915 -11.146811 -11.774398 7.755059 5.598869 -3.414165 -8.012807 -5.638942 6.404221 2.690222 -6.256322 -10.063166 -6.082307 6.394526 -1.365868 -3.986661 -1.226804 1.288558 -0.849558 1.666068 -12.106450 0.216485 4.632731 -4.665613 -2.626157 8.976676 -0.335898 1.790511 -0.987781 2.958808 -3.205525 9.012325 0.949187 8.352998 0.136140 5.318011 -4.712443 5.477912 4.159078 -0.994031 0.649740 -2.459609 -0.994508 5.120580 -4.371834 7.336194 -5.314280 5.137053 10.997316 0.469499 -8.247830 -5.814534 -3.995746 -14.039587 3.513691 -8.785106 -6.577233 5.065909 8.034785 6.472993 4.301082 5.836465 -11.429556 5.228476 -3.202538 2.226263 3.379267 0.428864 4.467348 -5.115278 -9.086970 4.006790 5.161094 3.827031 2.898954 -5.303874 -0.002960 -5.718819 -5.494136 5.764274 5.144315 -1.915475 6.897593 8.308694 19.777001 -7.426803 0.951328 3.971472 -4.165400 1.216409 -1.155570 -13.363100 2.798586 2.500917 4.786566 12.955320 -2.170149 -2.042316 3.913195 -2.635964 1.532102 -6.215728 4.067083 -8.681828 -1.569484 -6.274529 2.140351 -6.085791 -2.228590 -5.246729 -3.111059 13.146465 -13.275496 -8.716679 15.655423 -5.936605 4.321963 -12.162445 12.918116 -3.959185 6.553961 -3.543404 -2.430635 -1.934817 -1.326984 -5.146293 2.417848 4.141793 -2.937022 2.468670 14.671460 1.768499 0.359827 1.010528 8.797463 -4.932173 4.191041 -8.178420 12.704858 -2.532843 -2.213606 -2.650538 -3.974878 1.116183 -6.155923 1.916235 5.753047 4.861478 1.109678 2.500089 5.673610 4.677021 -5.989766 10.160577 0.715199 2.882874 -6.028525 -1.034483 1.633960 4.064655 -4.517563 5.358893 -12.992466 -9.856673 -16.748173 -8.346280 -5.377193 0.518485 5.438369 -2.441335 -2.626467 -8.294748 -9.417061 14.063152 -4.240440 1.828371 7.835127 6.718453 9.619301 12.929197 -1.952822 1.134553 -2.840665 -1.097231 -3.154093 -4.154326 -4.817681 8.880298 -4.078443 4.373482 10.624138 -0.234524 5.649465 -2.091868 7.349264 -7.933627 12.291655 5.837525 -4.069300 4.842046 9.066096 10.973807 -1.047299 -6.860931 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.148457 -0.682900 1.158859 1.094313 -0.341208 0.267154 0.310256 -0.461369 1.085951 0.294865 -0.235782 -0.000858 -0.795275 0.312800 0.640233 0.784442 -1.234720 -0.600687 0.184269 -0.324120 -0.401565 -0.763743 0.302773 0.014092 0.382574 0.743875 -0.227904 -0.264115 -0.056585 -0.045031 0.981339 -0.552375 0.592948 1.300030 0.329893 -2.279881 0.729767 -0.002763 -0.271962 -0.955598 -0.071243 -0.485010 0.506780 -0.680838 0.093446 0.356691 0.392935 1.194203 0.673804 0.320316 -0.182077 -0.496924 0.216146 1.398699 -0.551432 0.410416 0.291552 -0.293855 -0.150683 0.012281 0.362765 -0.064343 0.625813 0.780537 -0.292550 -0.556014 -0.286050 -0.861112 -1.059379 0.716852 0.300977 0.365067 -1.160843 -0.271157 -0.009728 -0.330215 -2.451016 1.217387 1.484523 -1.023589 0.871540 0.466788 0.761900 -0.030229 0.453034 0.106786 0.920533 0.240733 -0.792962 0.314276 -0.666923 -0.989759 0.247912 -0.846813 0.051200 -1.179113 -0.030379 -0.040547 -0.786107 0.528350 0.200786 0.401690 -0.552125 -0.170504 0.739691 0.548284 -0.623988 -0.949249 -0.257271 -0.192137 -0.212380 -0.215185 -0.009510 0.070632 -0.450336 -0.672793 -1.035718 -0.460965 0.105618 -0.700503 0.188875 0.728692 -0.447616 0.183807 -0.035402 -0.087288 -0.182529 1.310110 0.358228 0.444028 0.694224 -0.215502 -0.778833 0.674780 0.527951 1.161464 0.289021 -0.115086 -0.194991 0.251850 -0.663075 -0.199178 0.537050 0.485184 0.830609 -0.281770 -0.757634 -0.439943 0.004475 -1.000483 0.673271 -0.831499 0.586989 0.589180 0.743073 0.692957 0.657967 0.656669 -1.223824 0.616166 -0.641024 0.465163 0.557848 1.306877 0.601422 -0.383453 -0.208551 0.234550 0.385008 -0.013854 0.366915 -0.780297 0.209756 -0.690965 -0.295512 0.372725 0.480527 -0.291622 0.458500 0.201461 0.853197 -0.708725 0.173712 0.550467 0.244511 0.001386 0.271532 -0.949073 0.969786 -0.110059 -0.097883 0.054788 -0.231772 -0.461610 0.130250 -0.185332 0.112569 -0.312454 -0.275065 -0.469560 -0.345509 -0.694374 0.853385 -0.571148 -0.540993 -0.071413 0.459127 0.998426 -0.192955 -0.163635 0.814642 -0.835799 0.627435 -0.686071 1.524102 -0.573448 0.164346 -0.748774 -0.569984 -0.163963 0.028472 -0.025750 -0.190664 0.495470 0.154395 -0.126517 0.890537 0.404130 0.060430 0.492077 0.766199 0.214116 0.261396 0.017029 0.700406 -0.248490 0.452435 0.143432 -0.375263 0.444810 -0.054638 0.023449 1.334429 0.716131 0.336364 0.876970 0.237463 0.253785 -0.562408 0.264356 -0.085395 0.742877 -0.488508 0.072161 -0.117549 0.228123 -0.531500 0.405796 -0.879960 -1.165181 -0.456711 -0.000145 -0.808796 0.371881 0.237602 -0.050893 0.223090 -0.651611 -0.234577 0.071605 -0.426604 -0.204600 0.172625 0.157763 0.763485 0.964315 -0.403947 -0.781911 0.231115 -0.071303 -0.237302 0.275229 -0.835758 0.640604 -0.907266 0.356594 0.901825 -0.354683 -0.254083 -0.386600 1.772770 -0.473332 1.088857 0.529368 -0.419653 0.552155 0.967037 1.010302 0.439314 -0.548199 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator() = -0.082253 -0.375578 0.575701 0.532890 0.048914 0.125429 0.542693 -0.137508 0.793960 0.457756 -0.069702 -0.205388 -0.601233 0.082115 0.586729 0.448957 -0.494317 -0.437815 0.273371 -0.221948 -0.145578 -0.526097 0.212835 -0.246191 0.222719 -0.019724 0.028056 -0.460068 -0.219097 0.222090 0.678092 -0.389219 0.310082 0.671632 0.050776 -1.280927 0.319863 -0.135644 -0.208061 -0.495363 -0.017800 -0.400171 0.518566 -0.269824 0.490463 0.209476 0.378728 0.784098 0.494448 0.225422 0.124128 -0.500429 -0.059890 0.913524 -0.611290 0.203754 0.034455 -0.208689 -0.136516 0.238836 0.131587 -0.188881 0.437763 0.503609 -0.318756 -0.242710 -0.124658 -0.575883 -0.723406 0.338292 0.285155 0.291443 -0.710457 -0.017200 0.219928 -0.316110 -1.983638 0.596124 0.871925 -0.570264 0.652346 0.367262 0.623083 -0.017594 0.291748 0.112537 0.500710 -0.017394 -0.611424 0.079130 -0.732987 -0.537851 0.012235 -0.467932 0.263684 -0.497424 -0.100208 0.634416 -0.452636 0.294072 0.002405 0.397087 -0.479855 0.138893 0.419541 0.396608 -0.414257 -0.700395 -0.347091 -0.160836 -0.313751 -0.043263 0.077153 -0.342398 -0.411934 -0.702354 -0.511718 -0.376278 -0.020131 -0.495055 -0.240653 0.497800 -0.518839 0.139882 0.112485 -0.026328 -0.124160 0.682287 0.288281 0.240042 0.724901 -0.457062 -1.249956 0.374068 0.370846 1.109096 0.366582 0.156111 -0.192613 0.065419 -0.472944 -0.084559 0.592492 0.442894 0.512848 -0.353572 -0.315696 -0.186005 0.476489 -0.355515 0.598058 -0.445258 0.679972 -0.044486 0.433997 0.485678 0.424474 0.526555 -0.792990 0.535105 -0.503376 0.280710 0.336100 0.924805 0.459589 -0.230773 -0.001084 -0.152038 0.431586 -0.188387 0.196078 -0.481460 0.121027 -0.549256 -0.119570 -0.125393 0.145985 -0.372285 0.260031 0.101426 0.617565 -0.780395 0.141985 0.384412 0.212171 -0.017861 0.208971 -0.541892 0.659983 -0.027769 -0.283122 -0.133148 -0.089988 -0.421543 -0.002297 -0.182837 0.044892 -0.100524 -0.277155 -0.262707 -0.424321 -0.326254 0.577897 -0.461591 -0.506861 0.104900 0.529697 0.505260 0.508071 -0.073934 0.300001 -0.639152 0.095545 -0.436940 1.397835 -0.393119 -0.304357 -0.730850 -0.328391 -0.288332 0.666362 0.099617 -0.144158 0.229388 0.026180 0.199716 0.698318 0.310906 0.183045 0.352144 0.520374 0.194587 -0.062623 0.084034 0.385099 -0.243392 0.309430 0.159818 -0.226041 0.490570 0.173444 -0.060202 0.891319 0.569440 -0.057955 0.534507 0.183482 0.104978 -0.243174 0.141385 -0.012485 0.657339 -0.187069 0.118862 -0.130190 -0.157846 -0.319295 0.239941 -0.518514 -0.554816 0.485051 0.044226 -0.345638 0.429261 -0.018090 0.133058 0.327196 -0.666426 0.033858 -0.435139 -0.269345 -0.409493 -0.069558 0.041684 0.419139 0.578494 -0.242853 -0.596792 0.161357 -0.130644 -0.262548 -0.013023 -0.318683 0.320427 -0.726204 0.296058 0.294637 -0.145163 -0.352148 -0.234263 1.190917 -0.308184 0.653617 0.319778 -0.042871 0.424657 0.703699 1.001813 0.122255 -0.225734 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.773770 -2.083121 4.718104 2.621161 0.196897 1.840636 2.257898 -3.775498 5.027498 1.910072 -0.881666 -1.613758 -3.444297 -0.577474 -0.307403 1.070160 -2.526979 -2.841972 -0.467223 -3.131876 -0.727879 -4.082535 1.968679 -0.082442 0.896593 0.276846 -0.576118 -0.030892 -2.221150 -4.431319 4.507449 -0.758017 1.687953 1.112007 -0.167499 -7.756559 4.076684 2.246203 -1.316168 -3.169397 0.488732 -0.036671 -1.420895 1.770494 0.458647 1.336125 0.066220 2.904918 1.590118 1.407277 2.651127 -1.445473 -0.299279 4.918598 -2.597160 2.715937 0.996090 0.126351 -0.356616 3.066182 0.193561 0.838828 1.793793 4.327926 -0.841086 -0.657163 2.207667 -1.234360 -5.750908 3.557155 -0.202650 -2.165909 -1.048108 -1.006516 -0.768263 -0.190784 -1.388646 1.588128 5.820606 -1.248524 4.264606 1.385154 2.203839 -1.843124 0.528141 -1.037458 3.671212 0.650214 -2.557391 -1.444972 -3.655023 -2.034776 -0.163828 0.848303 -0.734295 -1.065534 2.248307 -1.630938 -3.049824 0.968178 0.756722 -0.156745 -4.586654 0.455926 2.425760 0.558017 -1.272026 -4.046599 -3.146807 1.901925 -2.664533 0.162188 -0.445587 0.106623 -1.723221 -0.878955 -2.989451 -1.840258 0.145722 -2.718015 -2.427484 2.485301 -2.730412 0.852753 0.955769 1.517198 -0.699256 1.359713 0.420046 1.742134 3.016099 -0.530778 -3.733766 -0.246412 0.974078 3.593173 1.261360 -0.581229 -0.130669 0.829030 -2.491790 1.132079 -1.627691 0.182783 4.047013 -1.369411 -1.760570 -0.119438 1.165786 -4.958702 1.724670 -3.466411 -0.817754 -0.030242 2.394922 2.320960 1.448820 4.832199 -5.021512 3.188517 -1.367230 -0.060728 -0.021058 0.757048 1.891989 -1.229684 -2.947570 -0.440749 1.488228 0.175740 0.875918 -2.884753 -1.318273 -3.660325 -3.263876 1.091414 0.193175 -0.736824 0.553881 2.145390 5.838726 -5.096416 1.071801 2.236955 -0.096900 0.113290 0.610590 -4.513791 1.489501 0.428276 1.289129 3.288637 -0.134207 -1.379245 0.322254 -1.027477 0.369505 -2.437062 0.732007 -2.864768 -0.249454 -2.329562 0.073631 -2.028605 -1.897198 -0.293936 0.655972 2.847873 0.213130 -4.548448 5.089867 -1.916683 1.334476 -4.928922 3.217025 -1.442435 1.318584 -2.220364 0.335936 -1.780824 0.913595 0.089298 0.219030 0.104869 -0.728920 3.697546 5.969300 0.680298 1.018003 0.845899 3.156001 -1.224337 -0.160253 -2.379678 3.046285 -0.641981 -2.066132 0.019406 -1.666475 1.693484 -1.671334 -0.016168 2.511106 4.339666 -1.498308 2.255542 1.580153 1.167038 -0.949810 2.908249 1.685560 2.004041 -0.745819 0.019034 0.871431 0.242517 -2.401108 2.269376 -3.621805 -4.492542 -1.042817 -5.779660 -1.591790 -0.942812 1.825504 0.303274 1.017325 -3.607089 -1.449543 2.113361 -0.934875 3.584471 1.491439 2.470024 2.183179 4.652805 -1.990199 -0.228851 0.228027 0.672818 -3.020436 -2.340898 -1.151462 2.090865 -1.362105 1.892748 2.061579 0.275140 0.387515 -2.248187 3.024743 -2.982928 4.215932 2.293395 0.292363 2.967982 -0.339600 5.494434 1.414741 -1.289503 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::empty() const = 0.663470 -0.657884 2.060408 1.774975 -0.503129 0.558211 -0.404430 -1.545010 1.155823 0.600777 -0.334407 0.508296 -0.459472 0.592234 -0.629226 1.271621 -1.477626 -0.450386 -0.723851 -1.146081 -0.887371 -0.506497 0.077723 0.148445 0.719487 0.769763 -0.806207 0.454632 -0.300804 -1.808638 0.237430 -0.102906 0.288631 -0.230270 0.685499 -1.794952 1.584686 1.121011 -0.473378 -1.276422 0.156504 -0.350909 -0.387565 -0.172484 -0.251528 0.403380 -0.376819 0.770557 0.629949 0.652060 0.356507 0.811729 0.928035 2.179937 -0.254742 1.062620 0.763123 0.149001 0.015613 0.441624 0.432382 0.608603 0.171904 0.289625 0.472707 -1.186175 -0.492332 -0.144921 -0.352333 1.093375 -0.267135 -1.143006 -1.030923 -1.001798 -0.933922 -0.188711 -3.076870 1.271950 1.472756 -1.395303 0.446950 0.396509 0.220600 0.249986 0.736411 -0.248024 1.505894 0.638355 -0.164395 0.395014 0.427048 -0.727149 0.786117 -0.899680 -1.231589 -2.344031 0.827936 -2.053247 -1.345410 0.852412 0.877706 -0.458382 -0.164486 -0.634897 0.462407 0.019872 -0.574235 -0.810130 0.082789 0.605596 0.476171 -0.537585 -0.024924 -0.054498 0.292486 0.658118 -1.586707 0.396036 0.403554 -0.094848 -0.039232 1.010757 0.609522 -0.295376 -0.377398 0.200954 -0.355836 1.307336 -0.333837 1.250991 -0.725888 1.388015 -0.581694 1.482533 0.668256 -1.294883 -0.229948 0.413158 -0.213146 0.567686 -0.778828 0.882611 -1.067573 0.576799 0.778904 -0.010683 -1.102069 -0.629551 -1.028627 -1.285436 0.304704 -0.738764 -1.308553 0.242712 0.949587 1.164371 0.703798 0.165242 -1.020782 -0.232098 -0.221082 0.406689 0.777260 -0.178248 0.471022 -0.573350 -0.885955 0.814982 0.388440 0.263867 0.405457 -0.223392 0.192305 -0.592197 0.186994 1.012002 0.671967 -0.284070 1.157909 0.986016 1.349194 -0.395538 0.218820 0.527353 -0.614136 0.205741 -0.230711 -1.242108 0.343046 0.339226 1.089633 1.262702 -0.229455 0.314249 0.297148 -0.277667 0.402682 -0.549539 0.090990 -0.766344 -0.425638 -0.557813 0.795908 -0.427364 0.003448 -0.466463 -0.755973 1.391163 -1.988713 -0.296800 1.905686 -0.697964 0.333407 -0.569693 1.085365 -0.534127 0.777951 0.061686 -0.086989 0.044153 -0.400894 -1.007057 0.385017 0.662046 -0.345178 -0.137524 1.161376 0.255875 -0.012565 -0.080520 0.953460 -0.947271 0.936567 -0.792875 1.526651 -0.210574 -0.122082 -0.335590 -0.407997 -0.400458 -0.921960 0.369415 0.870653 0.034349 0.601954 0.054180 0.401227 0.881540 -0.815764 1.290196 -0.168427 -0.267817 -0.975655 -0.251492 0.521958 0.189607 -0.361682 0.297278 -1.388298 -0.763765 -2.572549 -0.117258 -0.275493 -0.358111 0.444014 -0.566251 -0.645848 -0.496086 -1.440096 2.097400 -0.493942 -0.767897 0.822572 0.556810 0.870918 1.303867 -0.004075 0.465825 -0.664948 -0.259380 0.215070 -0.381746 -0.638535 1.390193 -0.316847 0.057982 1.427412 -0.272702 0.880093 0.372374 0.406854 -0.668085 0.964906 0.359216 -0.465308 0.445371 1.645324 1.043286 -0.031550 -0.851655 -PE-benchmarks/strongly-connected-components.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::back() = 0.111311 -0.882248 1.850200 1.686652 -0.361224 0.560231 0.011072 -1.275656 1.185385 0.193790 -0.183527 0.424406 -1.036559 0.575193 -0.398764 0.977059 -1.444192 -0.864114 -0.568342 -0.874325 -0.635510 -0.833789 0.541731 0.398824 0.730249 0.774764 -0.903671 0.047947 -0.929256 -1.001728 0.869704 -0.279987 0.812323 0.494096 0.236484 -2.514441 1.323906 1.066988 -0.416972 -1.300578 0.363330 -0.683499 -0.071340 -0.605291 -0.522685 0.309532 -0.257638 0.383534 0.834312 0.334883 0.242921 0.481155 0.378606 1.859482 -0.685465 0.957729 0.523429 0.010644 -0.266536 0.062184 0.389272 0.567119 0.696559 0.663274 -0.180722 -1.109071 -0.353650 -0.549340 -1.223369 1.129127 -0.207654 -0.346636 -1.080886 -0.554769 -0.901881 -0.259043 -0.920141 1.212024 1.727173 -1.179387 0.845537 0.145996 0.217819 -0.127887 0.616259 -0.089431 1.188565 0.493681 -0.341293 0.059808 -0.385909 -0.437599 0.370575 -0.169357 -0.810860 -1.458660 0.720442 -1.447040 -1.390313 0.490010 0.617232 -0.265501 -0.897252 -0.339953 0.531538 0.473410 -0.640317 -1.154818 -0.193923 0.478498 0.422070 -0.587614 -0.184013 -0.005717 -0.251623 -0.372548 -1.533088 -0.058750 0.175451 -0.614108 -0.110251 1.019748 -0.339723 -0.040582 -0.203233 0.308755 -0.449823 1.400611 -0.243096 0.881502 0.071744 0.472529 -0.396288 0.263280 0.542831 0.646488 -0.407633 -0.104324 -0.469021 0.340286 -0.787884 0.134228 -0.319131 0.414742 1.066378 -0.301999 -0.994235 -0.407742 -0.540504 -1.822819 0.222267 -1.011418 -0.349811 0.793312 1.019673 0.841726 0.831085 1.424115 -1.058290 0.391554 -0.076217 -0.066215 0.992775 0.306404 0.627048 -0.621442 -1.081385 0.841333 0.154577 0.372003 0.297481 -0.155840 -0.005390 -0.881596 -0.464250 0.765326 0.585807 -0.057382 0.971011 0.727073 1.046908 -0.842053 0.471030 0.669816 -0.314186 0.297260 -0.092871 -1.426935 0.563271 0.192267 0.230204 1.115374 -0.262622 -0.446161 0.407674 -0.256944 0.493116 -0.930722 0.309295 -0.886097 -0.054535 -1.112366 0.161006 -0.259440 -0.415326 -0.455623 -0.383809 1.509577 -1.247867 -0.848010 1.588931 -0.225456 0.799985 -1.436874 0.923128 -0.686285 1.099327 -0.321897 -0.186685 0.081583 -0.312388 -0.744419 0.114856 0.686162 -0.315014 0.095138 1.444708 0.368920 -0.053383 0.042443 1.014030 -0.190309 0.943286 -0.627704 1.423748 -0.051044 -0.304322 0.092069 -0.550200 -0.094664 -0.723878 0.202515 1.282280 0.836581 0.686243 0.682528 0.583591 1.008135 -0.763941 0.915773 -0.086221 0.324391 -0.624225 -0.155703 0.341304 0.659617 -0.451470 0.610196 -1.360200 -1.785295 -1.586882 -1.091769 -0.180791 -0.261467 0.468796 -0.361474 -0.295875 -0.885314 -1.061636 1.001432 -0.591295 1.129168 0.664230 0.582534 0.917484 1.369833 -0.709261 0.025417 -0.006262 0.201083 -0.000698 -0.148929 -0.999934 1.148133 -0.579807 0.271366 1.492352 -0.419487 0.581802 -0.150665 1.070698 -0.729288 1.594455 0.507165 -0.585191 1.069023 0.843687 1.065515 0.497346 -0.825796 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator--() = -0.032090 -1.277857 3.040221 2.918938 -0.521525 1.057183 -0.577086 -2.261984 1.755360 1.431734 -0.177213 0.923561 -0.990149 0.771115 0.510576 2.062726 -2.266353 -0.904636 -0.888323 -1.539557 -1.281627 -1.127724 0.303676 0.504150 0.888437 1.115972 -1.547020 0.673542 -0.365225 -3.387374 0.667625 -0.339268 1.310002 0.352265 0.769101 -4.906866 2.641966 1.709718 -0.647609 -2.174060 0.224433 -0.478150 -0.319909 -0.143666 -1.172573 0.917517 -0.393062 0.014421 1.038951 0.945961 0.717538 0.884554 1.456195 3.090397 -0.383943 1.665718 1.036087 -0.404277 -0.424843 0.224691 0.708651 0.889550 1.233085 1.009665 0.174081 -1.788269 -0.338253 -0.267600 -1.933241 1.753460 -0.207899 -1.586639 -1.374270 -1.351861 -1.021180 -0.518603 -1.423011 1.756258 2.655573 -1.589416 1.273784 0.499384 0.250868 0.164873 1.349151 -0.376466 2.606674 0.951353 -0.664842 0.491366 0.749533 -1.744777 1.078181 0.256596 -1.470750 -1.976083 0.842729 -2.133727 -2.024539 1.431914 1.072739 -0.319169 -2.427487 -1.609148 1.359849 0.565436 -0.733310 -1.688383 -0.743450 0.929240 0.114797 -1.153653 -0.790950 -0.134125 -0.320022 0.774499 -2.404948 0.012130 0.688408 -0.603056 -0.564776 1.582546 0.053616 -0.218996 -0.622532 0.548947 -0.763527 1.876102 -0.551504 1.927798 -0.119967 1.035177 -0.853576 0.686191 0.727614 -0.751940 -0.165801 -0.761887 -0.700598 0.766371 -1.305257 1.401047 -0.782687 1.338813 2.797161 0.532125 -1.684865 -0.912873 -1.087703 -2.884783 0.567351 -1.612213 -0.801295 1.416770 1.667635 0.712624 1.204637 1.090303 -1.871265 0.715438 -0.594328 0.327856 1.457000 0.057594 0.789728 -0.971731 -1.497025 1.402795 0.901093 0.654524 0.739157 -0.699243 0.153007 -0.747338 -1.100516 1.674084 0.781746 0.190282 1.264344 1.170651 4.415199 -0.866240 0.516357 0.856791 -0.502019 0.444737 -0.376463 -2.006804 0.346358 0.414980 0.770010 2.431435 -0.497181 -0.715996 0.224581 -0.078266 0.510562 -1.169514 0.966685 -1.364187 0.484970 -1.042563 -0.395780 -0.848068 -0.414607 -0.840155 -0.391219 2.494352 -2.331068 -1.728264 3.019364 -1.466248 0.972857 -2.391648 1.956923 -1.018017 1.328720 -1.104673 -0.655435 -0.128866 -0.630843 -1.239286 0.835645 1.113929 -0.531464 -0.183622 2.396736 0.460474 0.006291 -0.252022 1.263834 -0.376514 1.315587 -1.113308 2.681527 -0.276879 0.463592 -0.717213 -0.812513 0.025896 -1.152655 0.044303 0.639896 0.871883 0.306610 0.173451 1.107133 1.156195 -1.350835 2.027001 0.101066 0.273188 -1.109489 -0.309256 0.562843 0.971559 -0.568449 0.898916 -2.095343 -1.400622 -3.118190 -1.219067 -1.081012 1.172805 0.987901 -0.493602 -0.589993 -0.992914 -1.617943 3.120963 -0.706920 0.940463 1.105808 1.072061 1.506428 2.108350 -0.184912 -0.179713 -1.227924 -0.753066 -0.210978 -0.461429 -1.121881 2.081330 -0.521801 0.634235 1.832703 -0.371136 1.063698 -0.018089 1.229815 -1.011330 2.105677 0.766634 -0.470693 1.080424 1.481475 1.602627 -0.526482 -1.341168 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator*() const = -0.180866 -0.285402 0.652897 0.593353 -0.028429 0.182790 -0.047684 -0.425778 0.435811 0.361553 0.014434 0.154957 -0.293826 0.201712 0.025709 0.470486 -0.386291 -0.266066 -0.204488 -0.369844 -0.303980 -0.260147 0.134089 -0.013222 0.206987 0.095538 -0.366304 0.072483 -0.218571 -0.696406 0.151578 -0.117801 0.282258 -0.080635 0.068756 -1.038701 0.514610 0.369771 -0.188426 -0.424825 0.101918 -0.156821 0.071414 -0.026110 -0.188699 0.167859 -0.065103 -0.196757 0.298577 0.204575 0.343301 0.177264 0.225554 0.737440 -0.241575 0.330891 0.163384 -0.077523 -0.157785 0.048234 0.140114 0.165020 0.267372 0.213671 -0.008598 -0.400474 -0.116177 -0.103836 -0.461399 0.361954 -0.151245 -0.279984 -0.300069 -0.288580 -0.225952 -0.199148 -0.407801 0.265497 0.595722 -0.360306 0.286120 0.094231 0.071241 0.091587 0.259297 -0.017465 0.469242 0.158405 -0.147584 0.127792 0.295825 -0.133389 0.162958 0.257453 -0.255214 -0.337505 0.268678 -0.287594 -0.439834 0.313882 0.221206 0.023153 -0.595181 -0.263382 0.179236 0.184538 -0.251194 -0.424132 -0.208768 0.155706 0.171179 -0.200809 -0.101849 -0.206411 -0.123819 0.037175 -0.517090 -0.019575 0.056553 -0.198221 -0.249925 0.373659 -0.068717 -0.046552 -0.075136 0.186430 -0.218205 0.486344 -0.093868 0.457356 -0.158548 0.193551 -0.511718 -0.035792 0.194008 0.019427 -0.065580 -0.101082 -0.248664 0.063768 -0.315510 0.228470 -0.110400 0.265612 0.713743 0.015540 -0.348165 -0.142103 -0.163379 -0.691570 0.108767 -0.365846 -0.060501 0.243899 0.349077 0.216172 0.311509 0.520295 -0.363052 0.166700 -0.142570 -0.119223 0.370870 -0.004285 0.234111 -0.206087 -0.338557 0.247700 0.229373 0.129405 0.206085 -0.139868 0.023845 -0.243172 -0.106329 0.323456 0.178181 -0.044745 0.264024 0.247972 0.911681 -0.277796 0.135122 0.233408 -0.075758 0.104023 -0.082667 -0.433068 0.073868 0.117597 -0.020019 0.396975 -0.077748 -0.191946 0.088736 -0.141961 0.180626 -0.292314 0.201450 -0.271453 0.101057 -0.286838 -0.097151 -0.199203 -0.090414 -0.095427 -0.081026 0.520178 -0.418331 -0.307250 0.558523 -0.102566 0.151234 -0.502706 0.514793 -0.232982 0.393646 -0.319710 -0.077728 -0.052644 0.094493 -0.195683 0.156033 0.232545 -0.119250 -0.023860 0.598365 0.143289 0.019909 -0.063968 0.373858 -0.043904 0.307424 -0.169953 0.578076 -0.051634 0.016054 -0.028127 -0.178693 -0.022015 -0.213304 0.023364 0.190575 0.268307 0.001842 0.077247 0.241778 0.343222 -0.258051 0.405548 0.038316 0.201878 -0.228229 -0.032212 0.127459 0.287746 -0.155920 0.129652 -0.435287 -0.337790 -0.490481 -0.296342 -0.142709 0.329431 0.080163 -0.103369 -0.093647 -0.219241 -0.321709 0.669092 -0.201213 0.350595 0.142455 0.202637 0.335526 0.493523 -0.113613 -0.094771 -0.234634 -0.171779 0.005179 -0.072164 -0.225039 0.425726 -0.216887 0.051241 0.334151 -0.127910 0.185073 0.187039 0.215986 -0.235568 0.538457 0.160003 -0.010554 0.429484 0.364522 0.544982 -0.079014 -0.249021 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::pop_back() = 2.384445 -2.519814 8.273977 7.182090 -1.349488 2.266722 -0.718874 -6.683756 4.948144 3.202254 -1.027248 1.506786 -2.501730 2.379813 -2.502092 5.337296 -5.744583 -2.141235 -3.077862 -4.684972 -3.087303 -2.691552 1.848787 0.208730 3.185326 2.430684 -3.450842 1.110050 -1.424085 -8.240318 2.021951 -0.446870 1.875877 -0.970678 1.430538 -8.187854 6.882982 4.748436 -2.049782 -4.944420 1.206542 -0.911365 -2.407235 -0.038230 -1.338883 1.590901 -1.964653 2.906876 2.840648 2.816977 2.362163 3.217734 3.780416 8.626472 -1.872706 4.340943 2.337586 0.668616 -0.241134 2.198751 1.602472 3.147082 1.273506 2.231502 2.071266 -4.691035 -1.123093 -0.428614 -3.111092 5.077015 -1.208211 -4.248670 -3.740165 -2.975061 -3.001433 -0.085175 -8.331778 4.697806 6.351347 -4.415864 2.181534 1.214551 0.054522 -0.247447 1.869951 -1.234658 5.582360 2.471705 -0.456032 -0.035547 0.938344 -2.819549 2.872822 -2.235493 -4.604879 -8.436017 3.516119 -6.919661 -5.238124 2.612924 3.601756 -2.231675 -1.964963 -2.399028 2.124255 0.195468 -1.798441 -3.640293 -0.543603 2.516674 1.268211 -2.258859 -0.649492 -0.403888 0.388755 2.620717 -6.106974 0.754098 0.772458 -0.964243 -0.997143 3.504169 1.652995 -1.256103 -1.185562 1.524247 -1.465210 3.969936 -1.694335 5.475037 -0.948290 5.331896 -1.556369 4.370657 2.935251 -3.832342 -0.473840 0.930275 -1.690569 2.269494 -3.499360 3.615825 -3.907417 1.910803 4.186696 -0.326199 -4.199890 -1.669799 -2.713129 -5.764480 1.237105 -3.528257 -4.657921 0.838879 3.984748 3.335826 3.154487 1.923823 -4.894456 0.233350 -0.552368 1.289726 3.087296 -1.046534 1.758693 -2.124293 -4.252441 2.874633 1.716626 1.133567 0.893035 -0.665277 0.123565 -2.747033 -0.527143 3.576418 1.948556 -1.301756 3.660786 3.721929 7.018921 -2.307228 1.474190 2.932305 -2.292125 0.903764 -0.718801 -5.766390 1.254699 1.141172 4.138968 5.683222 -0.811772 0.165998 1.353325 -1.208386 1.275081 -2.650181 1.064047 -3.410081 -1.074890 -2.666567 1.770618 -1.188146 -0.433538 -1.484120 -1.961067 5.484085 -6.861585 -2.577923 8.149579 -3.048874 0.730013 -3.849393 4.809365 -2.155540 2.108788 -0.276687 -0.324387 -0.055503 -1.183927 -4.317775 1.304478 2.331526 -1.398094 0.879846 6.037747 1.050740 -0.163043 -0.775443 3.903332 -3.170191 3.774499 -3.577971 6.440646 -0.612941 -1.179174 -1.730595 -1.864095 -1.317472 -4.347931 1.143692 3.317500 1.073697 1.691140 0.817172 1.602385 4.294153 -3.067720 6.024553 -0.024345 -0.820529 -3.081746 -0.788691 2.598715 0.629945 -2.274878 2.768044 -5.532990 -3.863420 -8.820337 -2.482630 -0.963835 -1.474215 2.755864 -2.428633 -2.200587 -2.715107 -5.615416 7.514394 -1.852429 -1.280416 3.701192 2.462546 2.985493 5.461047 -0.718502 2.361658 -2.923679 -0.490547 0.373747 -2.657981 -2.031038 5.495071 -0.897192 0.562870 5.473355 -0.948105 3.368264 -0.184142 1.856039 -2.873029 4.507891 1.615292 -0.867426 2.619631 4.567166 4.658584 0.176384 -3.210648 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_pop_back_aux() = 2.729597 -2.516737 8.591829 7.502661 -1.884893 2.359721 -1.396105 -7.014525 5.069942 2.944328 -0.754868 2.023293 -2.075588 2.930289 -2.757762 5.751794 -6.316302 -1.925436 -3.358248 -5.151424 -4.079422 -2.417441 1.103366 0.278508 3.091830 2.672376 -3.883115 1.514171 -1.047317 -8.128104 1.671066 -0.464229 1.574833 -1.684767 2.193065 -9.455750 7.034253 4.556922 -2.151316 -5.061763 0.884698 -1.329584 -1.896052 -0.555569 -1.632767 1.284523 -2.107161 3.091093 3.092636 2.678966 2.091522 4.038688 3.858036 10.238084 -1.839892 4.488655 2.643175 0.673088 -0.400768 2.124713 1.774533 3.140332 1.136364 1.689283 2.192035 -5.132658 -1.597786 -0.526244 -2.324031 5.135932 -0.899770 -4.728495 -4.198716 -3.571385 -3.722871 -0.722753 -10.792334 5.261103 6.408760 -5.476518 1.756727 1.244372 0.432239 0.790190 2.844175 -1.227448 6.644174 2.586791 -0.634664 0.887419 1.726461 -2.629379 3.280327 -3.087405 -4.951563 -10.416278 3.363134 -7.860882 -5.640936 3.349558 3.856426 -1.940397 -1.821576 -3.385109 2.440345 -0.094405 -2.451351 -3.791892 -0.484669 2.638353 1.736808 -2.451889 -0.071247 -0.862460 1.073685 2.652554 -6.612344 1.206064 1.267986 -0.519994 -0.993728 4.132642 2.207432 -1.515917 -1.472531 1.332731 -1.695638 4.780310 -1.937786 5.633865 -2.392430 6.050810 -2.071527 5.233261 2.872357 -4.744574 -0.540343 1.040421 -1.769014 2.510751 -3.783657 3.904072 -4.130337 2.449114 3.976702 0.149546 -4.664440 -2.072034 -3.185363 -5.853537 1.316988 -3.439760 -5.473375 0.911833 4.116126 4.188871 3.259064 0.680425 -4.485666 0.054391 -0.835228 1.711807 3.699659 -1.166392 1.951759 -2.354430 -4.193404 3.188459 1.600893 1.336488 1.157357 -0.894893 0.471351 -2.450636 0.010122 3.579002 2.686021 -1.284009 4.267709 3.943626 7.577401 -2.585718 1.447843 2.706038 -2.632786 1.120984 -1.128356 -5.476705 1.136252 1.508422 3.987973 5.825011 -1.056857 0.332351 1.302730 -0.972481 1.729236 -2.418568 0.549783 -3.311151 -1.682477 -2.579482 2.441976 -1.585425 0.088858 -1.969507 -2.983893 5.885944 -8.714248 -2.067440 8.804364 -3.346670 1.197343 -3.470356 5.286831 -2.169383 2.474012 -0.389488 -0.427421 0.031345 -1.019039 -4.708484 2.201492 2.725498 -1.687654 -0.109453 6.007346 1.050399 0.364882 -0.817013 4.141847 -3.417448 3.983875 -3.566355 7.151278 -0.861379 -0.888470 -1.790650 -1.866228 -1.551633 -4.288141 1.795294 3.337307 0.562914 2.261255 0.357051 2.098112 4.167993 -3.384128 5.956256 -0.621115 -1.417801 -3.733626 -0.795818 2.573469 0.732638 -2.052420 2.109291 -5.773290 -3.413351 -10.546259 -1.237483 -0.893404 -0.919297 2.111755 -2.655739 -2.695551 -2.564114 -5.829030 8.654460 -2.143814 -2.674329 3.887024 2.499119 3.444068 5.887849 -0.418365 2.249819 -3.051049 -1.248604 0.845375 -2.180797 -2.594102 5.980786 -1.181304 0.616681 5.802506 -0.982105 3.689041 0.960700 1.852357 -2.695417 4.442913 1.529251 -1.226389 2.210955 6.229221 4.815083 0.113837 -3.464046 -PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.901395 -7.303971 8.783434 6.333126 1.159821 4.885260 5.877902 -4.395947 5.709300 3.251127 -2.954984 1.347356 -7.375668 -2.749939 -1.932924 0.105749 -3.986806 -6.077119 0.096738 -2.303443 0.281625 -6.562238 1.084475 4.916304 2.609416 2.560185 -1.598004 -1.510094 -9.350447 -6.323383 5.492797 -0.236337 4.155442 3.826001 -0.047472 -11.305298 5.782887 7.740918 -1.712258 -7.862967 2.081801 -1.085243 -3.634769 1.615561 -0.109000 2.700381 1.688642 4.928636 0.218998 2.388867 1.877848 -2.851021 2.843813 8.770147 -1.153512 7.731228 7.480434 1.647751 2.328528 3.419715 1.200411 0.111794 3.658027 6.419319 -2.520522 -0.115929 1.573522 -2.214088 -8.564134 4.358601 0.359043 -2.701317 -2.961304 -1.695704 -3.981483 0.018401 -0.743717 2.655547 11.220219 -3.791636 11.192788 3.891469 5.462714 -3.272020 2.476997 -0.794826 3.731254 2.572682 -4.783866 -1.672573 -10.798961 -3.496937 -0.641865 1.061831 -4.535132 -2.890930 5.101656 -6.189143 -8.489191 2.974228 -0.153069 -2.617284 -3.715098 2.202920 3.131416 1.968691 -2.928610 -7.919895 -5.200435 4.655454 -5.211710 -1.580469 -1.305101 2.968356 -1.907581 -1.670085 -6.092770 -0.885896 3.601211 -5.680624 -2.073577 5.963897 -3.767030 5.074622 0.185478 0.708062 -0.877072 2.526933 2.967612 1.198007 5.492548 -2.634733 -5.764296 0.246007 2.262675 6.117472 -2.077959 -1.006415 2.377883 2.889885 0.610501 3.177504 -1.986497 1.868866 3.032555 -2.816820 -3.415366 -4.905072 -0.900918 -8.312988 2.592710 -4.607229 -2.130336 1.600396 5.384526 1.974243 1.337709 8.263559 -6.661102 4.457996 -0.352219 0.203400 -1.449415 0.538724 2.925309 -3.054191 -7.106458 2.192230 3.887855 1.761608 1.423079 -2.693160 -1.660642 -5.136275 -6.421862 1.489705 -0.008398 -1.393457 4.661622 4.956123 7.950626 -6.877194 0.949309 1.232427 -1.074604 0.674048 0.008165 -9.389574 4.053427 0.719376 2.222198 8.226350 0.083698 -2.795155 3.052897 -1.496636 0.184083 -5.738971 4.749773 -6.103261 -1.881159 -4.670309 0.561463 -2.634467 -4.710186 -3.341304 0.247264 8.026256 -1.669082 -7.030761 5.311899 0.015914 1.862234 -9.353753 6.292002 -3.066122 4.815658 -0.944049 -2.022059 -0.811706 0.788195 0.106828 -2.143651 1.438212 -4.228757 6.720022 7.980820 1.234818 1.063976 2.865638 3.974336 -2.339582 -1.181862 -5.979463 3.668294 -0.801184 -5.447931 0.220896 -3.266627 4.988036 -1.649081 -1.278654 5.091623 7.659015 -1.279204 2.652240 3.574054 1.627482 -3.341528 2.392079 2.786693 5.596589 -2.711871 -1.060610 -2.053341 0.171689 -1.059788 4.775288 -8.465795 -8.338608 -2.892818 -10.821286 -2.732113 -3.145282 4.336601 1.671809 1.287251 -10.005185 -5.221853 2.507022 -2.987887 4.916776 5.207253 5.500604 6.257683 6.548121 -1.995240 -0.060575 1.602320 3.775459 -5.607695 -2.953931 -2.614523 3.302858 -2.883885 5.168484 4.461195 0.552301 2.726410 -4.608852 6.151311 -6.058223 10.181863 4.773052 -4.523581 3.301964 0.809495 8.076528 -1.161655 -4.031859 -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.141249 -0.547585 1.162919 0.924308 -0.141102 0.379177 0.233386 -0.789979 1.060605 -0.107317 -0.095012 0.014159 -0.866676 0.332803 -0.412842 0.354008 -1.009104 -0.790467 -0.296183 -0.686224 -0.426188 -0.735074 0.313439 0.155372 0.350648 0.218364 -0.526215 -0.037078 -0.999239 0.009218 0.969461 -0.269584 0.448375 0.252877 0.091199 -1.937676 0.763487 0.513595 -0.347001 -0.813250 0.218966 -0.836443 0.172408 -0.609116 -0.080243 0.039704 -0.110824 0.534863 0.690912 -0.060771 0.127592 0.199460 -0.351975 1.673462 -0.918466 0.598604 0.252195 0.053715 -0.245486 0.310754 0.155197 0.287370 0.528487 0.601528 -0.492862 -0.657481 -0.037589 -0.629959 -0.874121 0.856386 0.041783 -0.011246 -0.715711 -0.181085 -0.838829 -0.338688 -0.803568 0.838381 1.261146 -0.897413 0.670619 0.102913 0.540691 0.082775 0.592096 0.030116 1.085885 0.150259 -0.451969 -0.095182 -1.032326 0.002205 0.047108 -0.296279 -0.251122 -1.083387 0.358591 -0.954113 -0.986588 0.223578 0.265792 0.001412 -0.686898 0.018906 0.502428 0.289848 -0.529405 -0.975534 -0.274864 0.420395 -0.040376 -0.203312 0.244807 -0.318848 -0.176631 -0.886919 -1.028591 -0.114617 0.049935 -0.424533 -0.318010 0.969868 -0.679473 -0.074325 0.039014 0.174233 -0.387775 0.966616 -0.216643 0.339931 0.121087 -0.061264 -0.919118 0.054420 0.331281 1.176620 -0.181808 0.073353 -0.327348 0.169355 -0.782269 -0.232989 -0.105192 0.255021 0.356163 -0.545072 -0.551209 -0.280960 0.034454 -1.200357 0.171750 -0.644444 -0.239383 0.275461 0.761707 1.094441 0.669892 1.149517 -0.702666 0.552299 -0.180908 -0.068286 0.736212 0.262071 0.578221 -0.447184 -0.689069 0.291127 -0.016722 0.224492 0.160644 -0.258145 -0.103196 -0.869365 -0.353967 0.157667 0.486723 -0.024610 0.756499 0.584974 0.260817 -1.402198 0.521742 0.570531 -0.165123 0.177650 -0.037249 -0.897867 0.502459 0.291715 -0.141734 0.593880 -0.163105 -0.527106 0.072482 -0.121563 0.494133 -0.643542 -0.185286 -0.546023 -0.333139 -0.851310 0.333111 -0.392892 -0.464609 -0.352163 -0.432278 0.973720 -0.677640 -0.746038 1.140874 -0.104367 0.697902 -1.124436 0.628085 -0.545652 0.810434 -0.345042 0.045506 -0.133327 0.270740 -0.494428 0.247568 0.405732 -0.423550 0.338624 1.078880 0.426116 0.382206 0.114766 0.865048 -0.067994 0.386367 -0.459038 0.881096 -0.156730 -0.456824 0.320431 -0.446836 0.168011 -0.194334 0.385997 1.111459 0.888970 0.561419 0.731541 0.642863 0.614436 -0.417933 0.295627 -0.158461 0.300668 -0.349478 -0.057005 0.116377 0.235594 -0.351110 0.273555 -1.010937 -1.459422 -0.790259 -0.861602 0.168113 -0.375745 -0.055931 -0.001579 0.059302 -1.044024 -0.464791 0.136286 -0.503494 0.906962 0.311397 0.331071 0.646317 1.143258 -0.792148 -0.157012 0.457373 0.203789 -0.212404 -0.109012 -0.974787 0.903004 -0.660104 0.374990 1.007369 -0.356360 0.228141 0.018174 0.931691 -0.542450 1.241327 0.470788 -0.453459 0.741559 0.688796 1.152667 0.706258 -0.529961 -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*) = -1.198294 -2.461157 4.943481 3.341826 0.030856 1.602952 2.178105 -3.730338 3.937997 0.938334 -0.119415 0.219832 -3.836739 1.061772 -2.808557 1.785542 -2.712083 -3.292610 -1.415982 -3.196442 -1.716186 -2.996072 2.201244 0.554671 1.718159 -0.391670 -1.911991 -1.118811 -4.098433 -3.107104 3.351661 -0.575170 1.838755 -1.118400 -0.585132 -7.648113 3.397969 2.772368 -1.719045 -3.316169 1.740206 -1.627148 -0.864247 0.089001 -0.651371 0.156932 -0.396146 2.045390 2.140203 1.315314 2.368665 1.160688 -0.003122 7.322628 -3.187211 3.210308 1.936700 1.176363 -0.853650 2.176256 0.306438 1.213756 1.605329 2.572760 -0.879318 -1.737765 0.306053 -1.570309 -4.263840 3.328634 -0.560158 -1.551677 -2.031808 -0.879562 -2.687651 -0.818749 -1.622047 2.109925 5.556988 -3.327068 3.153505 0.627848 1.371501 -0.735005 1.174314 -0.486815 2.901269 0.867293 -1.461584 -1.429964 -3.254794 0.437564 -0.395105 0.044903 -1.692316 -4.897563 2.983819 -3.217590 -4.349505 1.276673 0.987467 -0.775030 -3.023368 -0.124743 1.653151 0.987118 -2.594539 -4.301934 -2.495766 2.220766 0.029294 -0.697577 0.724899 -1.022634 -0.667259 -1.896932 -4.189455 -0.557291 0.474416 -2.620576 -2.413401 3.234180 -1.996070 1.018645 0.723252 1.713751 -1.332182 2.834026 0.051472 1.852875 1.163973 0.677253 -3.499671 0.078083 1.391609 3.244265 -0.691768 0.660087 -1.168221 0.851583 -2.184689 0.740779 -1.440459 0.673548 2.543858 -1.715323 -2.587559 -0.660842 0.745664 -5.081995 1.079940 -3.312071 -1.748199 0.328832 2.502823 2.750193 1.908324 5.209737 -2.969749 2.516706 -0.134174 -0.610745 1.495894 -0.609699 2.265562 -1.685263 -4.143193 0.807057 1.055261 0.606300 0.368713 -0.998096 -0.770038 -3.757812 -2.232139 0.086715 1.275522 -1.278160 2.281971 2.431269 3.602620 -4.884792 1.396592 1.931848 -1.398286 0.942552 -0.575875 -4.772978 1.191653 1.052626 0.256565 3.667978 -0.171171 -2.050051 1.807781 -1.104043 1.432553 -2.647111 0.703125 -3.026078 -1.604200 -3.170656 0.341344 -0.998633 -1.342036 -0.951488 -1.340071 3.871700 -2.807650 -3.421969 4.598750 -0.180918 1.400058 -5.433877 4.068826 -1.563328 2.473652 -1.004614 0.459065 -0.826314 1.684089 -1.226024 0.634786 1.009076 -1.658921 2.816605 5.918328 0.756665 1.358894 0.712406 3.684455 -1.072780 1.059986 -2.535868 3.991420 -0.809017 -3.455754 0.749456 -1.569931 0.642397 -1.958613 1.203638 3.490006 3.298764 0.087176 2.265218 2.634161 2.819183 -1.556475 2.708857 0.164783 1.764004 -1.603702 0.002177 0.630429 0.578310 -1.729748 2.295519 -4.128621 -5.363773 -3.387579 -5.311423 0.544535 -1.661295 1.065867 -0.882136 -0.121580 -4.373543 -2.576400 1.770979 -1.918174 3.061198 2.796169 2.584873 2.998710 5.103774 -2.400012 0.621955 0.671300 0.985619 -1.498723 -1.910068 -1.783920 2.191992 -1.669362 1.524870 2.962001 0.106734 1.479770 -0.774411 2.264330 -2.537919 5.101377 1.986168 -0.663897 3.674777 1.937283 5.002776 1.530774 -1.712044 -PE-benchmarks/z-algorithm-linear-time.cpp__getZarr(std::__cxx11::basic_string, std::allocator >, int*) = -7.709125 -10.861434 8.013175 6.738330 3.655775 7.100610 6.042934 -1.363827 5.278050 7.447200 -4.012157 7.248370 -4.864395 -4.894494 -0.319091 -1.077180 0.081226 -6.710175 2.061462 -0.742117 0.690234 -6.937200 -7.753342 9.084792 0.761278 -2.227810 -2.373622 1.043840 -14.209340 -10.417526 -0.737369 0.005032 3.897039 -4.154626 2.681294 -15.607184 4.597635 11.731285 0.046410 -11.020686 -0.155684 -2.654376 -2.862813 3.610397 0.257092 3.880243 4.772020 -0.896433 -3.284700 1.413793 2.306233 -1.936617 4.079614 11.949282 1.096285 10.468244 11.797240 -0.004459 3.522063 1.629333 2.205407 -3.313562 5.264285 5.749327 -3.918282 0.266335 0.704186 2.733707 -7.184756 0.004875 2.969067 -5.903294 -2.717193 -2.584011 -7.681327 -2.840959 0.448561 -1.876870 13.127945 -1.824331 16.891860 6.842414 11.054523 0.146666 8.278242 -0.752176 7.545396 3.205132 -9.319650 1.593577 -10.660932 -2.441587 -1.296696 9.742342 -6.487946 3.856956 4.495423 -6.699262 -9.836165 6.425442 -2.642952 -2.037293 -6.105051 0.300002 3.893292 2.557264 -2.700631 -10.259377 -10.042167 5.989679 -6.622977 -4.945970 -1.118325 0.013809 0.672267 -0.460349 -5.087205 -0.402129 9.267472 -5.410035 -5.285113 7.389593 -5.180002 7.691190 -2.039974 0.171561 0.177899 -0.848775 4.614376 1.016076 2.262594 -8.800261 -18.151479 -2.320567 -0.956545 4.263258 -4.571323 -1.832166 5.777692 3.786008 6.452007 7.935827 -1.446738 7.578985 3.177605 0.714105 -1.692653 -10.366601 -0.131520 -3.902545 3.861540 -2.738415 -3.279244 -0.814642 5.729907 -1.351576 -1.187858 6.236556 -3.402546 7.869063 0.004651 0.554864 -1.184556 -5.685408 1.951131 -3.798301 -6.518214 4.590055 8.537765 3.277365 3.173732 -3.099593 -0.214214 -1.357247 -7.599048 2.115872 -1.110162 1.420194 9.296751 4.567311 19.115614 -9.128436 0.577516 -3.946427 -1.168215 1.946274 -2.616864 -7.704035 3.632916 2.272842 1.761875 11.716394 0.151500 -4.348133 2.409444 0.741202 0.095561 -6.405178 10.749935 -6.413001 -1.804424 -0.806768 -3.170107 -5.305731 -4.057292 -7.025851 0.875254 9.874896 -2.921427 -10.971897 1.884789 -0.071343 2.069329 -12.426433 9.368458 -3.799016 7.634691 -4.486166 -2.435854 -0.204423 6.551760 0.795125 0.704688 4.093037 -8.900857 6.953260 5.851448 0.338519 2.648475 3.382627 1.151727 -2.178350 -4.299565 -6.268924 3.039711 0.461029 -3.649040 -2.711004 -3.367494 10.010566 3.244467 -2.070024 -2.805881 9.012151 -4.996725 -3.505965 8.028581 -3.246135 -3.628833 1.062779 1.839443 6.925437 -3.665417 -1.352492 -6.688230 -0.241062 3.724567 2.853700 -9.435249 -1.779197 -2.030083 -9.868943 -3.136480 4.039806 2.564986 5.491522 1.541251 -14.456097 -5.547105 7.283281 -1.991509 4.241418 4.918981 7.145207 7.126345 2.089760 3.324150 -3.505783 -2.671724 -0.041490 -6.590850 -3.066733 -0.016787 1.989752 -5.928865 8.499170 1.482587 1.229850 3.436658 1.409187 3.491206 -5.505819 12.699375 6.036228 -7.642884 -0.381846 3.395908 11.300827 -11.793966 -5.252992 -PE-benchmarks/z-algorithm-linear-time.cpp__main = 0.065690 -5.748221 10.336776 6.970167 0.742591 3.846152 7.453570 -7.802362 8.590388 3.311076 -2.042848 -1.148134 -9.014788 -0.189206 -4.090522 2.826796 -6.028230 -6.292275 -1.202671 -4.722503 -1.181284 -7.881862 6.708244 0.794776 4.570008 1.870258 -1.874769 -3.578132 -7.931430 -6.281935 9.416515 -0.862329 3.935159 3.263778 -1.727053 -12.403510 7.087784 5.759474 -3.131470 -7.645313 3.234076 -0.251968 -3.974066 1.855891 1.572904 1.562895 -0.234357 8.577885 3.819041 4.146102 4.066413 -2.209038 1.376110 11.004714 -5.028096 7.000676 4.615237 2.368494 0.634031 6.126287 1.341445 2.259057 3.005274 8.376404 -0.638209 -1.529904 1.900204 -4.175381 -10.745798 7.876314 -0.914670 -2.113199 -4.512213 -1.201698 -1.864308 0.986386 -5.787990 4.975936 12.819220 -4.886813 9.317784 1.950713 3.405211 -5.638978 0.142168 -1.496057 3.310262 2.257149 -4.007345 -3.750474 -9.671172 -2.865626 -0.034774 -1.604531 -2.927133 -7.874714 6.316801 -3.865179 -8.622582 1.935419 2.268716 -2.058905 -4.237101 3.314099 3.204319 2.171198 -4.521011 -8.944721 -4.647811 3.541833 -3.731965 -0.490212 -0.435556 1.853826 -3.743535 -2.875023 -7.059507 -2.933806 0.407566 -6.752399 -3.038614 5.394228 -3.909206 3.467571 1.365124 1.819349 -1.118887 3.923022 1.539396 3.468374 7.404285 1.129767 -4.888992 1.714406 4.588904 8.100876 0.494106 1.351895 -0.620723 2.839648 -3.766387 1.920368 -2.349959 0.149729 4.894131 -4.807945 -5.329537 -1.056740 1.830053 -10.298960 3.250422 -6.767426 -1.890919 0.143980 5.858038 3.705980 3.139507 10.444034 -9.507710 4.429026 -0.649366 0.071220 0.017870 2.411662 4.318404 -2.990258 -7.999937 0.128900 2.579122 0.402366 0.585573 -2.955382 -2.392674 -8.206314 -5.441037 0.530040 1.514159 -4.366005 2.057100 5.034868 5.983684 -8.282816 1.500291 4.922945 -0.646716 0.163356 0.758278 -11.851276 5.016368 0.052514 3.256735 6.652241 0.031901 -2.915410 3.626623 -3.487647 0.990585 -5.209893 1.199959 -6.613912 -2.796536 -6.613748 2.930200 -1.215176 -4.630114 -0.941747 1.287230 7.592089 -0.913744 -5.984948 9.207402 -1.807071 1.316497 -9.278407 8.788084 -2.765133 2.014649 -1.436874 -0.638930 -1.568302 1.872674 -1.277415 -2.083853 0.778219 -1.793160 7.671524 12.324816 1.548268 1.015210 2.125975 7.025352 -3.008930 0.167285 -5.545901 6.267765 -1.498554 -6.893295 1.069306 -3.668514 2.844965 -5.240006 -0.134698 9.848012 7.686808 -0.625761 6.165672 1.657191 5.143900 -3.508617 5.751770 3.215288 5.274358 -2.492310 -0.295862 1.355702 -0.072468 -4.963850 6.565745 -8.525238 -11.736361 -2.496143 -12.047595 -2.061990 -6.031142 5.221815 -1.337739 0.772507 -8.932503 -5.492184 1.143376 -3.577157 4.515024 5.762248 5.114500 5.460835 9.896309 -4.795200 2.878682 1.463631 4.892973 -5.030370 -4.943296 -2.262501 3.705651 -3.631952 3.515499 5.927830 0.995989 2.012781 -6.587019 7.765356 -6.919577 9.551860 4.624834 -1.134300 6.682867 1.254303 10.314729 4.347079 -3.594045 -PE-benchmarks/z-algorithm-linear-time.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator > std::__str_concat, std::allocator > >(std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::allocator_type const&) = -1.589094 -3.224098 5.731181 4.141596 1.076588 2.270373 2.989226 -3.863635 5.311374 2.822910 -0.293299 0.156991 -4.561247 0.969207 -2.176411 2.521915 -2.997145 -4.282932 -0.821962 -3.242259 -2.218398 -4.116457 2.066783 0.174713 1.854171 -1.227018 -2.333842 -1.490333 -4.849310 -3.748374 3.990286 -1.062681 2.127616 -1.643345 -0.685318 -10.071015 4.480821 3.051153 -1.875954 -4.124599 1.424724 -2.166378 -0.426450 0.309650 0.112367 0.446608 0.379181 3.357703 2.605275 1.775974 3.168370 0.493344 0.046329 9.918845 -3.811109 4.114740 2.297710 1.246875 -0.914349 3.045540 0.601226 0.884314 2.491182 3.662472 -1.375082 -1.481534 0.612435 -1.846325 -5.277828 3.944375 0.070591 -1.666234 -2.674075 -0.603638 -2.408350 -1.147491 -3.441499 2.516278 7.084986 -3.923218 4.547986 1.522416 3.043854 -0.304821 1.804696 -0.664130 4.183849 0.994587 -2.865273 -1.929300 -4.861744 -0.142064 -0.526929 -0.454229 -1.685679 -5.774864 2.623917 -2.372784 -5.303389 1.901388 0.527229 -0.191979 -4.045357 -0.195612 3.128418 1.123470 -2.966442 -5.561238 -3.722138 2.375058 -1.473388 -1.009951 1.134446 -2.314438 -1.041632 -2.273507 -4.909923 -1.337223 0.862811 -3.440661 -3.499790 4.347833 -2.876405 1.440090 0.586180 1.549744 -1.300572 2.985680 0.571399 2.323833 2.037836 0.036446 -6.192018 0.738289 1.809563 4.007915 -0.175579 0.998750 -1.211402 1.241528 -2.836244 1.496599 -1.323968 1.601810 3.320726 -2.003159 -3.196183 -1.413777 1.872936 -5.353345 2.130487 -3.797827 -1.574374 -0.452406 3.599980 3.300844 2.456879 5.699163 -4.390312 3.873478 -0.947727 0.265149 1.656289 -0.321589 2.673956 -2.192310 -4.461948 0.784083 2.616652 0.225694 0.571527 -2.032890 -0.671584 -4.308054 -2.705434 -0.431861 1.146836 -1.624017 2.785608 2.445694 6.182393 -7.027393 1.794325 2.422124 -1.066720 1.132936 -0.609615 -5.735612 1.901604 1.159942 0.213061 4.373605 -0.145496 -3.288876 1.687621 -1.009701 1.401045 -2.940078 0.798923 -3.532506 -2.518486 -3.082399 0.933287 -1.918271 -1.850985 -1.104755 -0.823838 4.776220 -2.339206 -4.350731 5.206268 -1.385220 1.093725 -6.532838 6.382730 -2.329102 1.815353 -1.922533 -0.090224 -1.396451 3.315759 -0.964384 1.021077 1.419764 -2.166859 3.792420 7.150665 1.135180 2.259894 1.129633 4.018961 -0.765636 0.307352 -2.658743 4.503015 -1.119387 -3.362196 0.345522 -2.187797 2.058750 -1.419392 0.864097 3.818715 4.483645 -0.754676 2.634666 3.427267 2.702881 -2.172737 2.901094 0.254366 2.679484 -1.962151 0.074950 0.105197 -0.300564 -2.070408 2.894105 -5.114629 -5.487860 -2.977294 -5.724976 0.144797 -0.579327 0.914712 -0.584008 0.507303 -5.937367 -2.543821 1.953097 -2.363550 2.376453 3.069985 2.941354 3.680826 5.853204 -2.613479 -0.245000 0.484739 0.048039 -2.474511 -2.451613 -1.976866 3.011976 -2.532698 2.710780 2.874841 -0.022740 1.022292 -0.907815 3.062103 -2.892097 6.214158 2.753414 -0.551154 3.488080 2.490978 7.546562 0.582643 -2.328232 -PE-benchmarks/z-algorithm-linear-time.cpp__std::char_traits::length(char const*) = -0.268037 -0.320837 0.358827 0.304608 -0.002413 0.177790 0.104251 -0.124461 0.315939 0.039354 -0.077564 0.048911 -0.356286 0.033742 -0.040476 0.045194 -0.238903 -0.316805 -0.024047 -0.128567 -0.100528 -0.281809 -0.021995 0.139262 0.046611 0.108394 -0.148476 0.012753 -0.449753 -0.029474 0.237655 -0.085278 0.198566 0.156332 0.052384 -0.682557 0.170243 0.262694 -0.088239 -0.386475 0.043006 -0.306648 0.133240 -0.145033 -0.033519 0.082503 0.068153 0.026995 0.120556 -0.030560 0.051886 -0.063741 -0.098846 0.504467 -0.192116 0.247660 0.215995 0.006213 -0.060262 0.028159 0.076250 -0.000627 0.230993 0.226364 -0.265526 -0.122367 -0.036007 -0.212925 -0.352359 0.206587 -0.026697 0.001313 -0.209129 -0.142969 -0.276131 -0.165595 -0.245735 0.202016 0.483940 -0.308458 0.371562 0.111255 0.276742 0.065896 0.275456 0.042150 0.325052 0.058601 -0.221804 0.069085 -0.279224 -0.019207 -0.031202 0.077130 -0.098513 -0.140070 0.158530 -0.260000 -0.355407 0.160047 -0.025660 0.061364 -0.312022 0.050609 0.135612 0.216962 -0.222386 -0.371212 -0.179340 0.171925 -0.021268 -0.085602 0.055860 -0.031419 -0.113703 -0.344409 -0.335978 -0.062120 0.119988 -0.242373 -0.096380 0.381399 -0.266312 0.123674 0.013847 0.003560 -0.106697 0.417409 0.057550 0.045645 -0.005103 -0.167593 -0.481894 -0.083689 0.069550 0.477717 -0.123468 -0.018499 0.015914 0.024732 -0.125782 -0.086523 -0.018051 0.106563 0.258195 -0.153916 -0.159744 -0.228632 -0.034994 -0.453252 0.028005 -0.236769 0.062338 0.191941 0.275414 0.345229 0.155579 0.582658 -0.255530 0.192806 -0.086289 -0.119888 0.146328 0.164300 0.192023 -0.160456 -0.267642 0.126452 0.104242 0.099152 0.146850 -0.146179 -0.044319 -0.252276 -0.153442 0.163510 0.173252 0.026686 0.314580 0.204577 0.160328 -0.442455 0.131973 0.076854 -0.015923 0.059643 -0.044126 -0.330745 0.181819 0.094294 -0.128423 0.182655 -0.057951 -0.184828 0.053580 -0.088168 0.153549 -0.274533 0.063847 -0.219229 -0.038848 -0.315347 0.063574 -0.177712 -0.205644 -0.134502 -0.086921 0.376516 -0.137730 -0.269809 0.224439 0.086146 0.253068 -0.422340 0.186209 -0.189394 0.435860 -0.171733 -0.030872 -0.048020 0.112688 0.010993 0.004407 0.168478 -0.164104 0.080225 0.330497 0.138306 0.083155 0.126970 0.272676 0.031894 0.013399 -0.153679 0.217844 -0.033608 -0.098011 0.167955 -0.180537 0.177234 0.059740 0.040165 0.354631 0.386241 0.079963 0.224157 0.250686 0.093449 -0.134866 0.003671 0.000000 0.304120 -0.143936 -0.005094 -0.132699 0.178798 -0.053281 0.017133 -0.347489 -0.466906 -0.183199 -0.340761 -0.038738 0.016223 -0.044649 0.103868 0.081942 -0.367049 -0.147249 0.121034 -0.205330 0.502923 0.029724 0.147318 0.304604 0.354174 -0.219848 -0.177260 0.184616 0.042462 -0.171911 0.049772 -0.277701 0.222845 -0.266599 0.163499 0.257360 -0.108587 0.074551 0.101962 0.340132 -0.207678 0.507729 0.231187 -0.216347 0.256255 0.231802 0.452692 0.092837 -0.198375 -PE-benchmarks/z-algorithm-linear-time.cpp__std::remove_reference, std::allocator >&>::type&& std::move, std::allocator >&>(std::__cxx11::basic_string, std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/mergeSort_LinkedList.cpp__MergeSort(Node**) = -1.135779 -3.043029 5.668330 5.079421 0.688769 2.452612 0.462151 -4.197414 4.120641 2.549813 -0.765693 1.744432 -3.184418 0.863256 -0.506547 2.956951 -3.285562 -3.423874 -1.034070 -2.579975 -1.337143 -3.249949 1.313220 1.361618 1.873308 0.468037 -3.130316 0.526884 -4.226676 -5.863155 2.121634 -0.884707 2.725365 -0.309248 0.226441 -8.183360 5.028930 4.243394 -1.112893 -4.568384 1.047287 -2.047748 -0.878404 -0.299117 -0.991422 1.646335 -0.251386 -0.259671 2.155001 1.435170 2.047109 1.334592 0.989390 5.280269 -2.129527 3.756513 1.855540 -0.151309 -0.827803 1.038279 1.092711 1.462941 3.166252 3.026993 -1.380091 -2.833385 -0.049231 -0.432249 -4.876017 3.360747 -0.514971 -2.123825 -2.374058 -1.015290 -2.767175 -0.685011 1.727908 2.368550 5.867777 -2.100967 3.940307 0.833053 1.620147 -0.791742 2.533723 -0.794320 4.649288 1.589931 -2.177716 -1.140244 -2.432767 -1.891065 0.543582 2.076469 -2.265179 -1.166681 1.882934 -4.204817 -4.573342 1.575255 1.146112 -0.721068 -5.460961 -0.937748 2.928613 1.588944 -1.123529 -4.295656 -1.915292 2.137905 -0.762658 -2.374260 -1.106602 -1.336201 -1.358713 -0.226336 -4.403254 -1.045718 1.214603 -2.406140 -2.421996 3.325940 -2.089988 0.331538 -0.838028 1.295197 -1.191482 2.297582 -0.904089 2.955560 1.571918 -0.116643 -3.467860 -0.204179 1.081419 1.580365 -1.376204 -0.408410 -1.226269 1.112448 -2.303310 1.634874 -1.907847 2.226312 4.577781 -0.553901 -2.769023 -1.475034 -0.268598 -5.496760 1.185237 -3.211337 -1.263871 1.260868 3.607406 1.154588 2.467442 5.158394 -3.635437 2.562110 -0.213267 0.124082 2.895101 -0.934015 1.847906 -2.174441 -3.859826 2.682821 2.028847 0.645228 0.974678 -0.841333 -0.243908 -2.778817 -3.245767 2.220790 0.777413 0.702673 2.991072 1.901664 6.512345 -4.052602 1.636931 1.856469 -0.592836 1.144236 -0.819002 -4.709121 1.330675 0.821826 1.635833 5.274776 -0.491860 -2.875137 0.567421 0.099926 1.358166 -3.240022 2.403347 -3.370843 0.590904 -2.341869 -1.729759 -1.164506 -1.890446 -1.658451 -0.495998 4.820415 -1.922503 -5.441674 5.198947 -1.916761 2.159059 -6.869086 2.494090 -2.619767 3.026496 -1.781839 -0.113267 -0.445773 0.171123 -2.118224 1.083043 2.191185 -1.835110 2.407653 5.165358 1.041967 0.605719 -0.017935 2.339824 -0.278428 1.669738 -2.269129 4.608628 -0.169500 -0.986215 -0.577330 -2.023829 1.168440 -1.653111 -0.335177 1.735460 3.592275 0.056632 1.495237 2.922517 2.571376 -2.558853 3.592121 0.294453 1.545335 -1.342090 -0.720743 0.518426 1.074409 -0.933584 2.592614 -4.494355 -4.715807 -3.466580 -5.831372 -0.545143 0.407932 1.799978 -0.282532 -0.111460 -4.116667 -2.718275 3.486500 -1.320416 5.405074 2.215654 2.536594 2.650654 3.889404 -1.879329 -0.403950 -1.424938 -0.269480 -1.621003 -1.961895 -2.025522 3.401461 -1.488947 2.151996 3.330312 -0.748040 1.409086 -0.863334 1.955189 -2.260855 5.251422 2.178055 -1.135139 2.969629 0.739976 4.612179 -0.694520 -2.709179 -PE-benchmarks/mergeSort_LinkedList.cpp__FrontBackSplit(Node*, Node**, Node**) = -0.722404 -1.486317 3.885558 2.945619 0.663408 1.248085 1.051700 -2.717861 3.041029 2.168689 -0.309463 0.550103 -1.584947 0.299995 0.784540 2.160206 -1.862829 -1.715184 -0.140227 -2.094945 -0.757776 -2.334661 0.492038 0.112715 0.809976 0.151571 -2.025214 0.073632 -1.396240 -4.653215 1.718427 -0.638700 1.319678 -0.804438 0.232604 -7.392354 3.706082 2.427224 -0.635553 -2.338825 0.228016 -0.975494 -0.036730 0.184510 0.346348 1.119331 0.233275 0.303686 1.216395 0.994448 2.088009 0.639735 0.835022 4.134529 -1.822115 1.846048 0.796045 -0.357775 -0.438667 0.922333 0.547680 0.453952 1.788680 2.300389 -0.789799 -1.327937 0.092724 -0.309231 -3.210854 1.676192 0.168676 -1.663802 -1.901015 -0.555935 -1.148245 -0.593725 -2.037732 1.528664 3.674094 -1.394999 2.760583 0.850797 1.880613 -0.231659 1.529002 -0.415550 3.495804 0.660764 -2.141044 -0.409346 -1.588011 -1.980735 0.656962 1.036054 -0.739139 -0.682525 0.523499 -0.844856 -2.205939 1.115746 0.441644 0.168274 -4.052026 -1.302403 1.870768 0.852640 -0.577273 -2.919338 -1.914831 0.876796 -1.040488 -1.108387 -0.576696 -1.234279 -0.967053 -0.661142 -2.523687 -0.814701 0.644110 -1.283076 -2.432201 1.815808 -1.773639 0.129036 -0.365936 0.545727 -0.616703 1.114117 -0.229423 1.678097 1.394301 -0.712234 -3.903531 0.211956 0.695176 1.997173 -0.010120 -0.101889 -0.682777 0.555693 -1.472389 1.220797 -0.479428 1.633867 3.909982 -0.222446 -1.392765 -0.821488 0.724049 -3.106763 1.741525 -1.673597 0.025167 0.037882 1.917656 0.677820 1.368898 2.230247 -3.205682 2.218786 -0.739399 0.554761 1.427666 0.157638 1.078873 -1.102247 -2.230950 0.909547 1.647082 -0.075991 0.716041 -0.982192 0.030235 -1.451602 -1.652845 1.222613 0.181795 0.055254 1.379388 0.856244 6.810656 -3.366602 0.776685 1.057086 -0.016489 0.467381 -0.267025 -2.287882 1.409489 0.397166 0.726969 3.166607 -0.261192 -1.661702 -0.076754 0.090099 0.513323 -1.286876 0.990414 -1.637466 -0.483544 -0.829884 -0.992957 -1.120016 -1.185640 -0.541076 0.495289 2.398612 -0.294876 -3.431142 3.329976 -2.814861 0.663473 -4.086032 3.408977 -1.438471 0.524545 -2.243833 -0.309646 -0.682037 1.121573 -0.813808 1.153692 1.086628 -0.867259 1.339246 4.122193 0.640103 0.559628 0.143489 1.207652 -0.017209 0.382023 -0.938120 3.160765 -0.366700 0.220174 -0.490233 -1.041644 1.658363 -0.490376 -0.443738 1.292434 2.451938 -0.578514 0.611079 2.172414 0.942763 -1.308866 2.643174 0.320547 1.081040 -0.678013 -0.208755 0.128342 -0.035510 -0.602961 1.265309 -2.255195 -1.676278 -1.029762 -3.102286 -0.703422 1.271309 0.747494 0.166622 0.271055 -2.783331 -0.988304 2.596419 -0.627009 1.238003 0.783191 1.175404 1.378300 2.066923 -0.654577 -0.758899 -1.075721 -0.807550 -1.146166 -1.186257 -0.742559 1.837355 -1.540538 1.303625 1.231589 -0.262323 0.268285 -0.029187 1.612728 -1.113112 3.081815 1.183632 -0.128544 1.326505 0.818944 3.696671 -0.892755 -1.287631 -PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -1.907849 -4.118640 7.545162 7.012420 1.263796 3.550663 0.577506 -5.612938 5.959430 4.931507 -0.675717 2.225691 -3.955946 1.097192 0.596564 4.437771 -4.147022 -4.435585 -1.183133 -3.791061 -2.476751 -4.276869 1.018157 1.122053 2.212893 0.015460 -3.948802 0.673181 -5.147985 -8.421908 2.647592 -1.208038 3.612408 -0.625028 0.689146 -12.106491 6.850694 5.332298 -1.646195 -6.411463 0.876594 -2.546754 -0.888431 0.481782 -0.594319 2.507566 -0.125597 -0.053533 2.889703 2.313111 3.200216 1.585708 1.435218 8.075477 -2.737119 5.274949 2.626962 -0.563867 -1.302669 2.084251 1.556924 1.738219 4.556928 4.021471 -1.715875 -3.837350 0.282406 -0.413618 -6.625097 4.533507 0.248836 -3.708909 -2.929944 -1.806871 -2.736938 -1.484939 0.334280 2.910644 8.034547 -2.801662 5.463813 1.710543 2.668613 -0.449132 4.176980 -1.267890 7.257408 2.080464 -3.374137 -1.128512 -2.943041 -3.263986 0.916236 2.979661 -3.017374 -1.868836 2.209181 -4.183787 -6.178994 2.967348 1.543725 -0.367958 -8.510078 -1.777926 4.658069 2.013956 -1.696109 -5.933853 -3.546464 3.019656 -2.041741 -3.315076 -1.478625 -2.726170 -1.907910 0.265203 -5.890002 -1.467375 2.095674 -2.998101 -4.173905 4.899994 -2.546399 0.273659 -1.252116 1.753503 -1.777725 2.874603 -1.132204 4.355619 2.268024 -0.279431 -6.517859 0.248906 1.524326 1.399988 -0.917517 -0.978704 -1.752724 1.760444 -3.437504 3.411093 -2.422610 4.004141 7.160549 -0.146698 -3.820990 -2.381379 0.590929 -6.774450 2.055375 -4.439254 -1.503524 0.765119 5.095262 1.684879 3.334187 5.891347 -5.241191 4.128380 -1.171391 0.902493 3.865377 -0.867174 2.592506 -3.023534 -4.661679 3.059436 3.722571 0.696721 1.597468 -1.969059 -0.162369 -3.463495 -4.656591 2.649846 0.864346 0.599306 3.969376 2.762082 11.531570 -6.168173 2.097285 2.384105 -0.887699 1.525590 -1.143567 -6.199958 1.337745 1.386533 1.989873 7.443650 -0.787968 -4.228202 0.276134 0.395040 1.556167 -3.870099 3.295417 -4.549438 0.596277 -2.495088 -1.977219 -2.619913 -2.465935 -2.341089 -0.324359 6.717608 -2.217876 -7.575050 7.284017 -3.868515 2.215443 -9.321073 4.610139 -3.577832 2.677436 -3.641598 -0.551614 -1.288083 1.501589 -2.871924 2.206023 3.032872 -2.837514 3.260735 7.477352 1.417658 1.389227 -0.144178 3.220729 -0.485158 1.594270 -3.219812 6.734607 -0.700408 -0.414225 -1.492756 -2.806579 2.076077 -1.927115 -0.626149 1.383835 4.641955 -0.881123 1.166632 4.106418 2.841294 -3.536058 5.132235 0.714171 2.142110 -1.964128 -0.727804 0.572216 0.782306 -1.298750 3.393526 -6.199126 -4.866739 -3.848464 -7.019909 -1.240086 2.711599 2.152454 -0.006430 -0.052598 -5.733631 -3.424001 5.250983 -1.751592 5.941630 2.868403 3.565028 3.807458 5.538360 -1.900373 -1.052179 -2.775397 -1.746813 -2.590906 -3.194401 -2.219017 5.030231 -1.881217 3.401232 3.876084 -0.627705 1.821506 -1.144261 3.324094 -3.001843 6.920863 3.023946 -0.964143 3.420328 1.920270 7.627121 -2.238406 -3.623140 -PE-benchmarks/mergeSort_LinkedList.cpp__printList(Node*) = -0.349089 -0.644728 1.604904 1.185853 0.020018 0.548129 0.044093 -1.023684 1.031017 0.308010 -0.398268 0.286102 -0.662164 0.010723 0.177059 0.515743 -1.014631 -0.732102 -0.104952 -0.688445 -0.189419 -0.845646 0.035281 0.391191 0.262187 0.734381 -0.627505 0.457680 -0.719480 -1.635158 0.621336 -0.189134 0.561427 0.376523 0.305204 -2.436274 1.429105 1.017761 -0.205911 -1.077047 0.115630 -0.523085 -0.179394 -0.163885 0.000853 0.604095 0.084738 0.179301 0.307273 0.196467 0.356790 0.077178 0.189208 1.043009 -0.393806 0.761997 0.553381 -0.159618 -0.086653 0.135481 0.196516 0.172657 0.674835 0.858878 -0.580765 -0.570017 0.117248 -0.230713 -1.127751 0.690847 0.030875 -0.579467 -0.611625 -0.429280 -0.686644 -0.126719 -0.097856 0.660985 1.411793 -0.504035 1.072938 0.304805 0.721674 -0.094936 0.702466 -0.132462 1.433750 0.352504 -0.715901 -0.083529 -0.814022 -0.911756 0.276095 0.375431 -0.447745 0.038584 0.243871 -1.165382 -0.905611 0.311453 0.161369 -0.143295 -1.376909 -0.217175 0.730864 0.351124 -0.050626 -0.952476 -0.349027 0.484373 -0.519371 -0.383247 -0.352213 0.021920 -0.381880 -0.182497 -1.106676 -0.091566 0.366751 -0.381820 -0.468012 0.797986 -0.602822 0.039744 -0.206591 0.112253 -0.272839 0.664119 -0.134938 0.385676 0.346632 -0.293902 -0.815963 0.138732 0.188024 0.617426 -0.392244 -0.292114 -0.011103 0.194769 -0.553790 0.153334 -0.533031 0.493547 1.326203 -0.185999 -0.555166 -0.529623 -0.355445 -1.465207 0.382570 -0.615316 -0.205993 0.345512 0.816447 0.455294 0.538554 1.088349 -1.160166 0.588020 -0.202261 0.113917 0.498155 0.180529 0.415289 -0.489449 -0.859259 0.627268 0.335261 0.140929 0.367305 -0.346478 -0.018080 -0.644042 -0.775077 0.963290 0.173891 0.417160 0.744045 0.523656 1.891396 -1.012878 0.279380 0.362343 -0.051835 0.085663 0.010256 -0.837406 0.513425 0.196225 0.546187 1.260940 -0.083812 -0.475799 -0.137721 0.187329 0.255880 -0.721004 0.454564 -0.660671 0.158779 -0.456059 -0.273148 -0.459388 -0.544997 -0.425716 -0.121533 1.051793 -0.289378 -1.519092 1.276472 -0.793878 0.757838 -1.612364 0.303736 -0.649956 0.850506 -0.497019 -0.023535 -0.111878 -0.415199 -0.382668 0.344328 0.421562 -0.303679 0.396308 1.142551 0.349188 0.091894 0.070097 0.416637 -0.129158 0.294823 -0.492370 0.993198 -0.081691 0.056707 -0.033652 -0.414596 0.426634 -0.141493 -0.165805 0.531823 0.963687 0.147775 0.391275 0.759788 0.357152 -0.571431 0.749343 0.133051 0.376540 -0.302084 -0.314551 -0.001618 0.297436 -0.077225 0.334921 -1.012358 -1.043947 -0.801068 -1.525009 -0.334640 0.082043 0.378404 0.224386 0.111211 -0.935204 -0.470915 1.206158 -0.209448 1.400356 0.276486 0.454811 0.608723 0.800883 -0.421699 -0.348120 -0.119481 -0.010744 -0.514508 -0.197864 -0.716707 0.915824 -0.417770 0.471680 0.832204 -0.349883 0.264364 -0.206415 0.788869 -0.531585 1.256981 0.516317 -0.514088 0.428928 0.097394 1.104572 -0.083701 -0.626088 -PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.193645 -0.929825 1.623968 1.380831 0.215881 0.618408 0.445841 -1.045495 1.523365 0.698492 -0.037694 0.306988 -1.003046 0.530179 -0.517453 0.858437 -1.033449 -1.143278 -0.306970 -0.878749 -0.802750 -1.033157 0.274706 0.015626 0.457257 -0.268567 -0.882549 -0.180918 -1.360122 -0.721445 1.003554 -0.352256 0.543907 -0.519667 0.123568 -2.913191 1.140251 0.757943 -0.458302 -1.319482 0.132043 -0.845792 0.143853 -0.380905 0.090861 0.092141 0.002724 0.650918 0.797139 0.287418 0.576514 0.432000 -0.169800 2.891893 -1.093379 1.018729 0.582785 0.183785 -0.219830 0.629733 0.389572 0.330059 0.737496 0.909185 -0.322592 -0.735300 -0.118720 -0.557751 -1.148421 1.163833 0.179287 -0.289080 -0.943317 -0.251645 -0.947658 -0.472678 -1.608423 0.967011 1.920759 -1.245589 1.046831 0.397601 1.033453 0.253103 0.888048 -0.086001 1.579526 0.342480 -0.816325 -0.162287 -1.110255 -0.046270 0.012235 -0.236009 -0.446589 -1.683706 0.562695 -0.875256 -1.397175 0.701725 0.284319 0.196955 -1.166930 -0.259160 0.901206 0.407074 -0.823675 -1.431144 -0.901308 0.554149 -0.141668 -0.462449 0.502309 -0.807097 -0.160387 -0.727732 -1.388891 -0.356539 0.314754 -0.735269 -0.864399 1.313819 -0.761817 0.090618 -0.089674 0.211995 -0.421345 0.989363 -0.038927 0.796336 0.188262 0.029890 -2.105254 0.314695 0.522913 1.095417 -0.050179 0.336473 -0.441267 0.397429 -0.882360 0.298448 -0.266785 0.599362 0.831758 -0.489801 -0.973012 -0.624251 0.489185 -1.284079 0.437169 -0.970847 -0.416926 -0.012078 1.110252 1.251834 0.801955 1.308516 -1.109139 1.036306 -0.348554 0.193267 0.795228 -0.041534 0.657913 -0.592791 -1.070749 0.348165 0.615288 0.151129 0.327408 -0.629398 -0.032914 -0.983923 -0.543986 0.084153 0.601432 -0.336058 0.993217 0.660872 1.383894 -2.126542 0.560733 0.650209 -0.205977 0.292869 -0.293888 -1.398212 0.617312 0.342377 0.004389 0.999019 -0.204201 -0.907239 0.270455 -0.193851 0.548864 -0.645714 -0.032999 -0.835508 -0.686195 -0.871410 0.461790 -0.648995 -0.390346 -0.403087 -0.370932 1.419962 -0.951891 -1.107394 1.565478 -0.492807 0.447022 -1.671896 1.484173 -0.655475 0.645907 -0.618064 0.000000 -0.347937 0.983512 -0.590631 0.458409 0.694971 -0.766906 0.576819 1.783378 0.398513 0.633393 0.195558 1.089578 -0.120134 0.186765 -0.621077 1.370577 -0.297394 -0.596475 0.026035 -0.645410 0.577568 -0.300039 0.395000 1.030112 1.051974 0.221392 0.680832 1.011333 0.702228 -0.703202 0.664249 -0.117247 0.563168 -0.642092 0.091101 -0.031307 -0.021680 -0.590158 0.519560 -1.336151 -1.351210 -1.085934 -1.034933 0.040495 0.037362 -0.087861 -0.157184 -0.014025 -1.516420 -0.706960 0.535494 -0.670826 0.385567 0.664945 0.565698 0.970303 1.513239 -0.763391 -0.176741 0.041998 -0.254984 -0.432935 -0.511243 -0.774946 1.064301 -0.894319 0.645434 1.024785 -0.194106 0.332620 0.270977 0.962518 -0.634527 1.741655 0.794781 -0.355338 0.725223 1.136939 2.160658 0.225044 -0.780911 -PE-benchmarks/mergeSort_LinkedList.cpp__main = -0.502443 -2.884805 4.753047 3.848042 -0.223283 1.705943 0.946973 -2.669222 4.279516 0.229448 -0.854601 0.917877 -3.135124 1.163499 -0.956775 1.847238 -4.065129 -3.509823 -0.171175 -1.815518 -1.633153 -3.233947 1.029769 1.030253 1.307719 1.203773 -2.238611 -0.167245 -3.540515 -1.126543 3.674393 -1.565955 2.109374 1.175992 0.552676 -8.811621 3.303672 1.784275 -1.021076 -3.983608 0.304607 -2.646196 0.545718 -2.363153 -0.521251 0.544270 0.637362 2.642228 2.292204 0.393344 0.019140 0.115318 -0.772926 6.650425 -2.751536 2.550731 1.614877 -0.063440 -0.706291 0.711074 1.225406 0.497126 2.577787 3.177068 -1.798273 -2.092850 -0.170447 -2.318139 -4.025853 3.235529 0.655163 0.494877 -2.988042 -0.314907 -2.863256 -1.063307 -2.006245 3.425299 5.917472 -3.263968 3.588974 0.971340 3.215091 0.019719 2.232223 0.006892 4.309011 1.141901 -2.839901 -0.519926 -4.281333 -0.993456 -0.035753 -0.953353 -0.678914 -3.779672 1.029838 -3.545662 -3.858068 1.392571 0.621201 0.607263 -3.148648 -0.428564 3.114542 1.613249 -2.131699 -4.037305 -1.648690 0.895183 -0.981525 -1.240716 0.862452 -0.766457 -0.996026 -2.701451 -4.079864 -1.541946 0.857156 -2.588691 -0.876597 3.460540 -2.740452 0.636112 -0.304837 0.384299 -0.961129 3.388961 0.249690 1.378400 1.404847 -0.841847 -3.416854 0.443935 1.185263 4.598479 -0.637249 -0.198632 -0.784517 1.070805 -2.390694 -0.815589 -0.356033 1.262520 2.137091 -1.563707 -2.811365 -1.781792 0.458378 -4.566237 1.195191 -3.097045 -0.554445 1.594792 3.241864 3.063741 2.432067 4.350234 -3.456747 3.141586 -0.999217 0.690445 2.396224 1.123635 2.104124 -1.789000 -2.644785 1.579429 0.937143 0.633981 0.935183 -2.193007 0.023430 -3.166735 -2.351637 1.039313 1.914235 0.044212 2.552724 1.335094 2.362303 -5.331272 1.436419 1.933466 0.100746 0.593897 -0.058461 -4.045167 2.573146 0.454776 0.141288 2.447131 -0.590458 -2.844242 0.620859 -0.059836 1.368441 -2.306247 -0.135138 -2.424375 -1.096744 -2.869687 1.235117 -1.788867 -1.652239 -1.505544 -0.784142 4.170159 -2.475261 -3.578544 4.195093 -1.306324 3.177411 -5.225368 2.645573 -2.324956 3.032803 -1.500800 -0.344468 -0.533490 0.506272 -1.230351 0.603227 2.044106 -1.298239 1.420240 4.125648 1.391456 1.385287 1.120291 2.895611 0.285587 0.900655 -1.178666 3.068529 -0.579540 -1.356777 0.595805 -1.857420 1.606445 -0.561442 0.953970 3.656248 3.624389 1.506054 3.258893 2.632054 1.691296 -2.223791 1.065126 -0.505899 2.109760 -1.568802 -0.108718 -0.368056 0.995908 -1.601533 1.762197 -3.959306 -5.773052 -3.440849 -3.758768 -0.781389 -0.719617 0.359556 -0.230312 0.557880 -4.075614 -1.441545 0.828825 -1.663909 3.565194 1.780308 1.520316 2.829637 3.996345 -2.877123 -1.653219 1.247533 0.375338 -1.464204 -0.227777 -3.586166 2.786300 -2.849192 2.048241 3.811570 -1.227529 0.163061 -0.514138 4.023160 -1.942896 5.233173 2.508799 -2.176999 2.239728 1.897622 4.720334 1.908391 -2.476260 -PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -1.180334 -1.582835 1.242135 1.141160 0.557850 1.031583 0.666262 -0.433876 1.071450 1.039342 -0.596490 0.633462 -1.153733 -0.331990 0.077419 0.106649 -0.419240 -1.271938 0.318852 -0.154287 -0.174610 -1.260347 -0.551674 0.940264 0.155786 0.077576 -0.446736 0.199255 -2.110064 -1.330874 0.341451 -0.183338 0.718561 0.124307 0.316031 -2.366833 0.862247 1.568146 -0.062461 -1.871981 -0.038878 -0.799058 -0.169207 0.233854 0.277314 0.697328 0.658433 0.293779 0.006510 0.203260 0.405105 -0.524740 0.065441 1.663162 -0.179126 1.503771 1.435233 -0.018833 0.199101 0.321316 0.309571 -0.332750 1.065882 1.176886 -1.004019 -0.056883 0.222862 -0.096941 -1.343603 0.560300 0.463236 -0.498507 -0.577241 -0.376887 -0.733065 -0.372149 0.208629 0.184342 2.080461 -0.438964 2.260414 0.859237 1.532747 -0.149923 1.283921 -0.222357 1.497592 0.394839 -1.392191 -0.114745 -1.701080 -0.618004 -0.290456 1.123589 -0.597447 0.610690 0.422423 -0.819829 -1.514147 0.707422 -0.449942 -0.024385 -1.410592 0.395552 0.982456 0.541816 -0.383027 -1.586649 -1.267079 0.869451 -1.109311 -0.655769 -0.146990 -0.138573 -0.423110 -0.345427 -1.040471 -0.487471 1.085747 -1.078652 -0.863981 1.286775 -0.917925 0.941580 -0.173041 -0.047855 0.007197 0.465580 0.580969 0.177686 0.707281 -1.112338 -2.480396 0.017068 0.089288 0.973632 -0.612248 -0.176943 0.587921 0.397161 0.156957 0.556847 -0.478571 1.051961 1.059288 -0.280083 -0.586054 -1.302088 0.186522 -1.015011 0.510062 -0.798719 -0.090060 -0.159410 1.128225 0.309366 0.201092 1.638322 -1.063369 1.241477 -0.168068 0.180059 0.125350 0.013458 0.506984 -0.731344 -1.022348 0.691449 1.159192 0.175805 0.471945 -0.672455 -0.104997 -0.670694 -1.328332 0.652973 0.017871 0.291718 1.338467 0.588150 2.546621 -1.740311 0.373293 -0.069570 0.028936 0.235966 -0.195178 -1.371068 0.748450 0.227473 0.335466 1.663795 -0.043796 -0.953222 0.147637 0.153710 0.219721 -1.119404 1.160201 -1.075969 -0.069799 -0.505722 -0.163094 -0.714409 -0.856664 -0.652785 0.256197 1.604127 0.010313 -1.898258 0.696653 -0.402769 0.666969 -2.258317 0.887816 -0.808513 0.951297 -0.798236 -0.270700 -0.224300 0.673562 0.173044 0.173714 0.680469 -1.037165 1.070313 1.127413 0.231108 0.471187 0.573741 0.437867 0.024101 -0.570185 -0.730420 0.655139 0.063464 -0.265714 -0.182342 -0.726722 1.282159 0.451251 -0.392819 0.370091 1.609754 -0.576316 0.245530 1.190608 -0.145587 -0.650519 0.229870 0.217321 1.172507 -0.540144 -0.258029 -0.800285 -0.019071 0.099826 0.515242 -1.453441 -1.071451 -0.054286 -1.889740 -0.522242 0.479312 0.420359 0.740466 0.421487 -1.961812 -0.555296 0.830413 -0.392243 1.596700 0.461187 0.902999 1.061063 0.798041 -0.140389 -0.697012 -0.136119 -0.052720 -1.199752 -0.402566 -0.348267 0.562865 -0.821298 1.303965 0.491751 -0.103910 0.260529 -0.177069 1.151660 -0.848238 1.859809 1.038953 -0.908502 0.306745 0.326244 1.945180 -1.070770 -0.867155 -PE-benchmarks/longest-palindrome-substring.cpp__longestPalSubstr(std::__cxx11::basic_string, std::allocator >) = -9.243930 -16.468736 12.871613 11.269739 4.838690 10.864236 7.668121 -3.428335 5.594606 10.710077 -5.319003 9.529130 -9.385060 -5.523522 -1.420682 -0.150103 -1.496170 -10.995464 3.226538 -1.531724 0.735181 -8.509872 -7.752419 13.655818 1.834167 -2.778676 -3.172868 -1.589804 -21.463514 -11.042406 0.020263 -0.564453 6.996989 -1.426986 3.527672 -15.843759 6.825601 15.963363 -0.455781 -16.414982 0.600431 -4.230497 -3.610069 5.415834 -1.940922 5.129324 6.254262 0.904841 -3.122291 3.494529 4.861075 -2.873216 6.790941 15.341353 3.007242 15.167819 14.486557 0.654135 5.808725 2.391068 3.390037 -3.680343 8.457118 7.055703 -5.312594 -0.202028 -0.557363 2.249029 -10.293772 1.600179 4.372494 -5.909995 -3.532621 -2.199065 -7.797117 -3.847751 2.115903 -0.258319 18.387303 -3.900190 21.307727 10.240887 12.964357 -2.375684 11.662828 -0.694805 9.909836 4.697739 -10.068582 1.248212 -15.188153 -2.406854 -1.777364 8.410380 -9.432796 0.964670 6.981540 -8.446143 -15.663208 9.830428 -3.333887 -3.262931 -6.542422 1.775935 6.063421 4.914825 -6.174442 -13.451154 -10.546867 9.221606 -8.696274 -7.401183 -1.697771 -0.052620 0.320996 -0.688628 -7.974237 -1.483526 12.278959 -9.585326 -5.869075 11.802837 -4.602966 11.509439 -1.910863 -0.052186 0.242593 1.170921 7.657194 1.420109 3.658879 -10.304246 -18.056385 1.165002 0.139445 3.465026 -5.957726 -1.805550 7.462970 6.089235 8.445109 10.965637 -1.899696 9.381251 4.912942 -0.601123 -4.066017 -13.963203 -0.745918 -7.017917 2.954898 -5.927125 -5.192973 -0.731289 9.236638 -0.294073 -0.196250 9.405520 -4.385098 10.543517 0.007881 1.565169 -1.438103 -5.190917 3.838355 -5.715877 -11.023359 6.436199 12.610777 4.124973 4.038138 -4.736661 -0.971484 -3.421423 -10.328176 2.031953 0.059093 1.166152 14.374317 6.964595 21.367583 -9.242568 0.378677 -4.034624 -1.708586 2.631652 -3.956024 -13.923468 4.413606 2.576652 0.627306 16.440975 -0.798992 -6.411828 5.539204 0.110502 0.847806 -10.300200 13.688152 -10.122973 -1.745662 -3.927345 -2.131883 -7.212126 -6.984320 -9.461646 -0.608438 15.382601 -5.347481 -13.761836 3.249325 -0.393308 1.874932 -17.334205 10.645310 -6.009033 9.486500 -3.111033 -4.832759 -1.658506 6.322399 0.908089 -0.180410 6.316223 -11.478018 11.019153 9.010197 0.935400 2.818776 6.268839 3.575593 -2.603512 -5.585752 -9.603628 6.023373 0.045101 -5.135433 -1.909616 -5.796346 10.898939 3.237685 -3.277533 -0.751804 10.928434 -6.469575 -2.487992 9.638545 -3.110555 -5.785155 1.924950 2.224623 10.656138 -6.095176 -1.242122 -9.468177 -1.345536 3.410948 5.196225 -14.950501 -5.876383 -4.426623 -13.539885 -4.083239 3.149898 4.458713 7.150018 2.494482 -18.695056 -9.003415 7.842237 -4.347781 6.912608 8.759828 10.148719 12.034433 6.017912 3.195364 -3.953987 -2.678439 0.886657 -9.902915 -4.174747 -0.650623 2.967471 -6.096475 13.109848 3.887276 2.068794 4.954559 -1.501554 5.851328 -8.976063 17.692107 9.871186 -10.492852 1.446631 3.970229 14.259824 -14.113530 -8.129856 -PE-benchmarks/longest-palindrome-substring.cpp__main = -1.986175 -5.539366 7.503547 5.248298 1.392078 3.815204 5.104617 -4.468465 5.353865 3.673191 -1.819007 0.424800 -6.015314 -1.377572 -1.987260 1.279847 -2.998718 -5.138980 -0.133493 -2.917603 -0.615135 -5.324261 2.023760 2.391412 2.417730 0.205087 -1.448697 -2.174206 -7.191647 -5.215471 5.115383 -0.449065 3.135116 1.418032 -0.491993 -9.632737 5.125909 5.494108 -1.816169 -6.143971 1.705966 -0.434988 -2.683890 2.342853 0.255310 1.750049 1.025036 4.518411 1.200994 2.958208 3.383136 -1.852690 1.864605 8.743994 -1.874868 6.176473 4.885892 1.513285 1.257667 3.924319 1.039679 0.504571 2.839904 5.312719 -1.125788 -0.376494 1.222515 -1.881905 -7.339212 4.172435 0.157352 -2.603088 -2.380591 -1.176038 -2.005413 -0.283644 -2.618443 2.219745 9.449472 -3.416985 8.288519 2.952232 4.135242 -2.900034 1.617814 -0.909215 3.096711 1.924996 -3.661358 -1.684076 -7.546845 -2.032450 -0.480599 0.263561 -3.359670 -4.079252 4.511667 -3.018826 -6.909673 2.829424 0.471241 -1.489986 -3.566750 1.657188 2.744673 1.557147 -3.334444 -6.651661 -4.515622 3.587063 -3.661586 -1.110773 -0.608743 0.818414 -1.787821 -1.410792 -5.068484 -1.399883 2.290922 -4.950766 -2.801780 4.895796 -3.009762 3.653999 0.484325 1.075868 -0.886095 2.345989 2.290139 1.895483 4.293588 -1.131462 -5.932163 0.950795 2.310186 4.740952 -0.491685 0.056565 0.982043 2.368787 -0.630176 3.264447 -1.511904 1.349207 3.682046 -2.353047 -3.479388 -2.893922 0.714977 -6.801308 2.323853 -4.499093 -1.822126 0.185006 4.444525 2.338525 1.568739 7.022520 -5.764648 4.166011 -0.797039 0.210040 -0.811333 0.250503 2.821849 -2.466333 -5.915818 0.976421 3.645832 0.788436 1.282873 -2.719998 -1.398198 -4.923035 -4.598497 0.343353 0.443323 -2.176477 3.064319 3.886734 7.166237 -6.007182 0.679857 1.812454 -0.877551 0.589589 -0.108722 -8.219148 2.894715 0.578443 1.391963 6.358050 0.028519 -2.467974 2.724223 -1.888754 0.416258 -4.245057 3.002040 -5.009750 -1.898655 -3.864900 1.016139 -2.305699 -3.312191 -1.904659 0.163445 6.333075 -1.240941 -5.377856 5.192807 -0.826823 0.538853 -7.446999 6.666690 -2.408288 2.695592 -1.244760 -1.306081 -1.435536 2.117351 -0.015713 -0.965927 1.059319 -2.881498 5.838879 8.180873 0.890780 1.161083 2.167168 4.226856 -2.195481 -0.884816 -4.534345 4.110880 -1.051228 -4.640283 0.230501 -2.757369 3.303367 -2.248188 -0.720985 4.572325 5.794230 -1.818939 2.384394 2.656816 1.960522 -2.745333 3.095529 2.309097 4.559588 -2.322194 -0.373085 -0.771293 -0.325839 -1.898028 3.889380 -6.827718 -6.630478 -2.352827 -8.569635 -1.774096 -2.167081 3.179054 0.455521 0.857326 -7.578858 -4.210617 2.076275 -2.704714 3.161191 4.508997 4.546752 5.093620 6.371545 -2.007405 0.568474 0.564728 2.320218 -4.437232 -3.185653 -1.429029 2.678308 -2.388240 3.928962 3.374696 1.053413 1.917078 -3.306916 4.708351 -4.958018 7.874523 3.857364 -2.070297 3.605945 1.110236 7.857368 -0.403033 -3.020398 -PE-benchmarks/longest-palindrome-substring.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__merge(Node*, Node*) = -1.933578 -4.245824 8.004686 7.363784 1.042166 3.585889 0.671658 -5.880387 6.118508 4.986981 -0.408285 2.325921 -3.977612 1.268416 0.582467 4.674627 -4.484498 -4.460709 -1.474104 -4.269891 -2.780405 -4.244972 0.980913 1.147466 2.356280 -0.495346 -4.215172 0.389716 -5.138709 -8.254438 2.847243 -1.224827 3.759038 -1.275794 0.728705 -13.643544 7.019638 5.313346 -1.838774 -6.563300 0.985439 -2.683637 -0.673369 0.317887 -1.199573 2.191411 -0.276097 -0.255811 3.125471 2.337182 3.268935 2.035356 1.575607 9.607119 -3.000142 5.397148 2.732651 -0.652737 -1.482453 2.248067 1.644017 1.839006 4.615299 3.828780 -1.397913 -4.189575 0.097660 -0.608064 -6.733584 4.708383 0.199700 -3.954030 -3.073038 -1.933799 -3.268179 -1.857808 -0.299463 3.401232 8.241359 -3.508104 5.463117 1.621991 2.604420 -0.050412 4.364001 -1.132032 7.536853 2.094957 -3.256696 -0.898983 -2.646599 -3.116085 1.105176 2.628933 -3.170078 -3.054754 2.469873 -4.293825 -6.464393 3.385064 1.826240 -0.370417 -8.784548 -2.504845 4.610092 2.124394 -2.155840 -6.179367 -3.946426 3.255187 -1.657983 -3.392812 -1.277835 -2.991359 -1.680292 -0.080150 -6.223854 -1.225004 2.163632 -2.899718 -4.492614 5.288902 -2.718967 0.164659 -1.239577 1.961567 -2.096952 3.323250 -1.311324 4.658889 1.964769 -0.059752 -7.063578 0.103140 1.624944 1.667445 -0.680705 -0.947978 -2.057201 1.931405 -3.619182 3.713914 -2.030134 4.267760 7.207684 -0.009531 -4.028834 -2.503110 0.617231 -7.153872 2.015833 -4.611899 -1.676318 1.384991 5.227209 2.196511 3.459966 5.818709 -5.193317 4.334732 -1.333655 0.692668 4.148727 -1.152891 2.741546 -3.125176 -4.859973 2.960336 3.695953 1.044914 1.635643 -1.980662 -0.116302 -3.523854 -4.616100 2.313406 1.263204 0.387438 4.084826 3.105974 12.076630 -6.731128 2.153475 2.456699 -1.196437 1.627197 -1.381416 -6.383406 1.185876 1.619028 1.407719 7.581122 -0.928943 -4.372877 0.401401 0.152640 1.696218 -3.788958 3.106992 -4.614266 0.309650 -2.685662 -2.146730 -2.877570 -2.377326 -2.594424 -0.748314 7.075873 -3.194480 -7.532518 7.800087 -3.867234 2.173719 -9.622244 5.737907 -3.579372 2.969112 -3.902404 -0.732751 -1.423517 2.057637 -3.204735 2.561055 3.156901 -3.174630 3.031065 8.167444 1.510613 1.631534 -0.298887 3.672138 -0.573214 1.872543 -3.428711 7.284914 -0.956951 -0.634257 -1.562294 -2.850299 2.067561 -2.074546 -0.155081 1.540051 4.559345 -0.658314 1.086869 4.631402 3.052281 -3.607539 5.338001 0.498424 2.183699 -2.165197 -0.608848 0.703532 1.014299 -1.350191 3.302656 -6.505366 -4.953338 -4.787390 -6.716181 -1.076839 2.922136 1.880895 -0.262413 -0.276827 -6.105700 -3.674632 5.273510 -2.035808 5.216571 3.143849 3.673242 4.159708 5.997008 -1.889827 -0.967321 -2.729143 -1.897667 -2.368662 -3.243619 -2.482759 5.310456 -2.248616 3.420852 4.155036 -0.473331 2.109647 -0.486947 3.204309 -3.139344 7.233742 3.034202 -1.034734 3.610033 2.787497 7.671020 -2.205263 -3.736177 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -1.224803 -3.614279 7.176444 6.486517 0.697423 3.056456 0.549691 -5.397278 5.207779 3.102212 -0.448571 1.953734 -3.732823 1.200145 -0.307472 3.662852 -4.118098 -4.089101 -1.710573 -3.807400 -2.110281 -3.711846 1.308342 1.427682 2.301409 0.063936 -3.943360 0.352652 -5.152050 -6.315145 2.963961 -0.855475 3.337147 -0.631340 0.525056 -11.100185 6.128035 5.027084 -1.505698 -5.557575 1.166049 -2.603255 -0.887554 -0.410818 -1.203240 1.736291 -0.675129 -0.309982 2.814394 1.619089 2.496284 2.126506 0.832533 7.654639 -2.871844 4.607039 2.206838 -0.257624 -1.162397 1.689641 1.306816 2.016906 3.835858 3.243317 -1.462866 -3.838461 -0.014616 -0.755754 -5.804818 4.252254 -0.044353 -3.089391 -2.807655 -1.549080 -3.472480 -1.271173 1.043783 3.236295 6.971400 -3.148740 4.495128 0.973978 1.945486 -0.492090 3.472645 -0.993096 6.181748 1.827761 -2.382923 -1.072733 -3.230100 -2.307230 0.814491 2.028976 -3.021890 -2.431371 2.412535 -4.646592 -5.694404 2.260922 1.764497 -0.787090 -7.143846 -1.629302 3.526790 1.796181 -1.596146 -5.201717 -2.795481 2.984505 -0.833283 -2.901642 -1.185275 -2.089548 -1.430665 -0.761440 -5.554956 -0.828173 1.586942 -2.435243 -3.476607 4.453470 -2.864139 -0.065852 -1.056123 1.680916 -1.902794 2.995533 -1.399641 3.701760 1.814642 -0.098690 -5.028673 -0.223387 1.351075 2.456696 -1.181915 -0.589998 -1.860441 1.522680 -3.146676 2.479545 -1.874228 3.013856 5.515890 -0.557773 -3.461848 -1.866883 0.082564 -6.562160 1.368159 -3.915400 -1.602008 1.529309 4.427790 2.338271 3.056288 5.887632 -4.328495 3.418375 -0.537409 0.196720 3.740379 -1.047832 2.298428 -2.715159 -4.649144 2.899908 2.269244 0.978018 1.271160 -1.052191 -0.297777 -3.414538 -4.004075 2.106076 1.087429 0.576802 3.759621 2.824709 8.402296 -5.797166 2.085985 2.272501 -1.202251 1.464099 -1.084654 -5.599863 1.202919 1.308087 1.313637 6.680353 -0.809302 -3.562400 0.541263 0.090138 1.741901 -3.603611 2.601385 -4.061786 0.310783 -2.941893 -1.952788 -1.919636 -2.129833 -2.266468 -1.111433 6.103188 -2.770294 -6.753087 6.840596 -2.567415 2.322071 -8.455216 3.735419 -3.068177 3.288511 -2.602585 -0.228456 -0.876186 0.966364 -3.116830 1.902057 2.671213 -2.752878 2.638083 6.985303 1.273489 1.026024 -0.315686 3.180464 -0.590313 2.203838 -3.120570 6.267233 -0.549207 -1.217867 -0.867252 -2.445720 1.364418 -2.205313 -0.050394 2.119043 4.167258 0.421592 1.360869 3.903014 3.125467 -3.084526 4.502783 0.349742 1.496583 -1.719924 -0.677500 0.953217 1.139477 -1.138911 2.862163 -5.618247 -5.446172 -4.309384 -6.720130 -0.258369 0.977862 1.689768 -0.365432 -0.524357 -5.271319 -3.498653 3.820727 -1.795350 5.822732 2.765399 3.137358 3.434780 5.195564 -2.446814 -0.257698 -1.555481 -0.691250 -1.748486 -2.700924 -2.702375 4.706074 -1.759252 2.616615 4.336840 -0.636586 2.170625 -0.720320 2.765250 -2.782951 6.513175 2.464492 -1.398245 3.499653 1.835678 6.041853 -0.802424 -3.277672 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__split(Node*) = -0.434341 -1.530814 4.566808 3.571287 0.268962 1.192096 0.225773 -2.845948 2.391265 2.097465 -0.407578 1.220573 -1.267679 0.578646 0.441780 2.669167 -2.375258 -1.610246 -0.651702 -2.162308 -1.018046 -1.586789 0.549688 0.346134 1.263421 0.836089 -2.549665 0.269860 -1.087826 -5.561210 0.986644 -0.456110 1.550315 -0.902305 0.432412 -7.029841 4.015919 2.792379 -0.759786 -2.568849 0.597577 -0.506250 -0.570767 0.138638 -0.646550 1.300750 0.051511 -0.329694 1.107059 1.316129 1.806974 1.204479 1.590477 4.040160 -1.026430 2.017058 1.268792 -0.409915 -0.416700 0.564944 0.740046 0.712644 1.520569 1.688012 -0.159391 -1.882976 -0.161048 -0.114578 -2.711575 1.832729 -0.042017 -2.052433 -1.588471 -1.031604 -1.417837 -0.392741 -0.694848 1.789768 3.458015 -1.600865 2.203696 0.666398 1.097083 -0.182330 1.249722 -0.452495 3.159714 1.057264 -1.228113 -0.244118 -0.182536 -2.162612 1.048620 1.286260 -1.441741 -1.312532 1.115026 -1.917382 -2.354607 1.334704 1.038823 -0.349509 -3.803048 -1.754484 1.671449 0.944043 -0.458418 -2.294829 -1.474672 0.936604 -0.442810 -1.323241 -0.894755 -0.838248 -0.728049 0.533765 -2.963448 -0.159996 0.753670 -0.940867 -1.954053 1.620564 -0.954877 -0.027313 -0.679315 0.889122 -0.848005 1.329808 -0.301440 2.142438 0.604647 0.481718 -2.317635 0.339691 0.900979 0.529905 -0.441191 -0.511315 -0.983174 0.727590 -1.352519 1.569961 -1.057687 1.766886 4.290808 0.107313 -1.908189 -1.081108 -0.495054 -3.447689 1.078072 -1.766753 -0.770704 0.806417 1.881970 0.388773 1.441813 2.262714 -2.850298 1.614272 -0.482020 0.320754 1.569456 -0.609130 0.926941 -1.138582 -2.381435 1.400234 1.486978 0.411929 0.776204 -0.672655 0.190586 -1.307709 -1.662824 1.950304 0.449090 0.195154 1.370600 1.174858 6.740984 -2.111265 0.448380 1.035511 -0.467144 0.365118 -0.294454 -2.464371 0.748424 0.463311 1.123622 3.685343 -0.228747 -1.424228 0.363020 0.016677 0.470925 -1.275578 1.504115 -1.695566 0.291275 -0.834721 -1.241847 -1.022757 -0.651237 -0.843230 -0.253309 2.826629 -1.766082 -3.519598 3.532049 -2.288341 0.741059 -4.107706 2.654206 -1.318354 1.257285 -1.564132 -0.283463 -0.372044 -0.130606 -1.389048 1.197489 1.149996 -0.811623 0.742156 3.879318 0.566081 0.092067 -0.227663 1.296828 -0.392002 1.221822 -1.093927 3.318666 -0.384110 0.079179 -0.796440 -0.778976 0.665558 -1.102324 -0.308770 0.596664 1.567761 -0.132512 0.268353 1.965203 1.453133 -1.596133 2.957536 0.331922 0.908794 -0.926253 -0.435772 0.463508 0.657192 -0.527298 1.364279 -2.499793 -1.697394 -2.632425 -3.333828 -0.815785 1.222631 1.123159 -0.362248 -0.433283 -2.050963 -1.694743 3.746510 -0.546045 1.737747 1.318439 1.259235 1.556208 2.083363 -0.595761 -0.320701 -1.560376 -0.660799 -0.544496 -1.160239 -0.966229 2.168391 -0.935493 0.842172 1.864904 -0.375537 0.973615 -0.020138 1.120455 -1.238794 3.095046 1.027919 -0.526755 1.362115 0.901106 2.959769 -1.124216 -1.521971 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__insert(Node**, int) = -0.637441 -1.605410 2.809108 2.480889 0.636719 1.268384 0.676845 -1.956998 2.768711 1.756351 -0.181305 0.517073 -1.725361 0.593884 -0.105527 1.590020 -1.659256 -2.004051 -0.286206 -1.496489 -1.162012 -1.925768 0.412819 0.055305 0.738268 -0.499597 -1.427187 -0.078937 -2.282154 -2.092204 1.590648 -0.668240 1.127075 -0.520399 0.236772 -4.972456 2.348351 1.487099 -0.729178 -2.412428 0.153798 -1.356899 0.116895 -0.223166 0.355686 0.622345 0.155442 0.831439 1.361682 0.687600 1.202608 0.419810 -0.146713 4.187531 -1.732068 1.911775 0.911265 -0.000634 -0.447960 1.184303 0.613505 0.498489 1.658503 1.806951 -0.838534 -1.276377 0.098315 -0.651965 -2.432527 1.960489 0.398618 -0.856677 -1.460270 -0.425930 -1.220946 -0.778779 -1.710493 1.397166 3.393929 -1.582867 2.147392 0.829929 1.803861 0.153801 1.717597 -0.340171 3.048566 0.613124 -1.704463 -0.458440 -2.038623 -0.795713 0.059074 0.278311 -0.704701 -1.629578 0.692584 -1.272773 -2.432474 1.193945 0.403580 0.349469 -2.900852 -0.391609 1.972655 0.741484 -1.038456 -2.585787 -1.629707 1.014491 -0.926818 -0.977983 0.278209 -1.527150 -0.632057 -0.790384 -2.327873 -0.846767 0.671505 -1.342553 -1.794675 2.219849 -1.443940 0.150525 -0.253093 0.463510 -0.683186 1.324027 -0.177746 1.501451 0.924254 -0.384691 -3.746998 0.431750 0.753669 1.548861 -0.001496 0.235004 -0.715688 0.673449 -1.628966 0.886884 -0.591269 1.419805 2.093684 -0.588400 -1.567409 -1.004991 0.940957 -2.290667 1.019354 -1.745084 -0.483718 -0.197557 2.043395 1.572359 1.433090 2.300380 -2.167286 1.982492 -0.743541 0.561816 1.460695 -0.055040 1.178309 -1.130544 -1.708139 0.712938 1.440518 0.065768 0.643485 -1.207276 -0.057038 -1.686898 -1.484629 0.380401 0.619396 -0.210199 1.631864 1.025240 3.546594 -3.521857 0.981811 1.133513 -0.166848 0.528498 -0.422158 -2.432181 0.980842 0.569163 0.378912 2.205692 -0.318454 -1.826096 0.100422 -0.006415 0.794524 -1.258496 0.421874 -1.622199 -0.644321 -1.164622 0.198698 -1.277227 -0.989713 -0.714072 -0.161293 2.512379 -0.781604 -2.587655 2.818879 -1.495615 0.822957 -3.369988 2.388075 -1.370980 0.817802 -1.494314 -0.083346 -0.758284 1.539537 -0.948820 0.876367 1.191273 -1.259202 1.392575 3.078678 0.700185 1.069744 0.276477 1.601188 -0.097100 0.192683 -1.080977 2.465187 -0.482482 -0.501339 -0.248973 -1.173936 1.216968 -0.422519 0.176116 1.202989 2.051844 -0.168234 0.953119 1.759269 1.010598 -1.302342 1.486866 0.050724 1.035294 -0.898415 -0.009290 -0.019437 -0.179276 -0.854187 1.128977 -2.407908 -2.102019 -1.230865 -2.263883 -0.263267 0.711241 0.212463 0.049262 0.221837 -2.677587 -1.035885 1.159309 -0.917165 1.335810 1.004607 1.162092 1.581129 2.486982 -1.108255 -0.623059 -0.455998 -0.723265 -1.140891 -1.161811 -1.128205 1.947186 -1.321884 1.430624 1.509035 -0.289070 0.370908 -0.075777 1.712726 -1.143353 2.895208 1.406921 -0.385123 1.248489 1.379648 3.791966 -0.248205 -1.380883 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__print(Node*) = -0.694602 -1.430836 3.857987 2.829457 -0.115572 1.277342 0.200572 -2.593308 2.464265 0.368760 -0.692337 0.673939 -1.582038 0.205377 0.062463 1.103713 -2.662905 -1.765355 -0.522527 -1.899401 -0.654072 -1.916188 0.186126 0.950392 0.705981 1.435788 -1.774409 0.835083 -1.896478 -3.222328 1.841086 -0.390314 1.386824 0.556574 0.609511 -6.829210 3.302903 2.434157 -0.614859 -2.477809 0.445129 -1.450275 -0.483672 -0.643998 -0.347348 1.025429 -0.077391 0.609546 0.916948 0.253924 0.631772 0.641017 0.153556 3.369744 -1.274533 1.809541 1.256731 -0.324218 -0.390246 0.505397 0.423876 0.600331 1.614609 1.890810 -1.293265 -1.590157 0.383190 -0.742570 -2.666288 1.827929 0.307687 -1.354445 -1.365839 -0.838235 -2.016007 -0.425699 -0.071161 1.799114 3.313169 -1.442165 2.368421 0.458663 1.552518 -0.066369 1.720231 -0.253810 3.539781 0.772201 -1.465386 -0.404515 -2.379985 -1.753423 0.642344 0.613238 -1.094374 -0.840889 0.677608 -2.937707 -2.274172 0.691948 0.584542 -0.499982 -3.275346 -0.785848 1.777545 0.740438 -0.302279 -2.308177 -1.034210 1.373854 -1.207997 -0.907375 -0.567800 -0.154685 -0.709594 -0.854006 -2.713443 0.001542 0.807597 -0.681344 -1.270623 2.094428 -1.626852 -0.124622 -0.429992 0.448888 -0.884855 1.555800 -0.645727 0.863906 0.822503 -0.579494 -2.109033 0.068150 0.468542 1.943279 -0.862400 -0.828080 -0.330934 0.605126 -1.536340 0.312220 -1.076143 1.206946 2.700547 -0.531263 -1.350459 -1.197130 -0.532105 -3.530485 0.709870 -1.480924 -0.815306 0.964725 1.991368 1.419484 1.387993 2.420064 -2.515817 1.684698 -0.400621 0.197218 1.428244 0.181458 1.051916 -1.204926 -2.130521 1.330322 0.450971 0.627962 0.605375 -0.654577 -0.129658 -1.646446 -2.014129 1.760265 0.628226 0.940740 1.784108 1.494664 4.299004 -3.036381 0.843568 0.990508 -0.445909 0.265625 -0.061838 -2.008434 1.001710 0.686998 0.878549 3.326775 -0.263447 -1.398713 -0.302436 0.513994 0.717846 -1.667326 0.820441 -1.552270 0.113296 -1.250843 -0.732100 -1.158989 -1.225858 -1.313405 -0.802216 2.625200 -1.333036 -3.768767 3.369967 -1.805274 1.873611 -4.145370 1.281852 -1.513919 1.987244 -1.185380 -0.014172 -0.319982 -0.672033 -1.411550 1.194009 0.986190 -1.056709 1.014353 3.065428 0.914945 0.550249 -0.067974 1.240890 -0.346996 0.879413 -1.429456 2.607497 -0.355769 -0.319284 -0.097993 -0.997663 0.887070 -0.470639 0.096781 1.375711 2.251574 0.748186 1.012935 2.110640 1.084483 -1.329567 1.726412 0.121965 0.640187 -0.674620 -0.694331 0.184878 0.714125 -0.236748 0.892476 -2.569207 -2.774731 -2.301048 -3.697271 -0.326099 -0.027116 0.717499 0.382540 0.126403 -2.642698 -1.183995 2.358036 -0.625452 3.295658 0.972296 1.108448 1.507598 2.191929 -1.293318 -0.566079 0.029732 0.126267 -1.071949 -0.640408 -2.043471 2.415310 -1.039986 1.229017 2.269731 -0.772632 0.858702 -0.476683 1.959677 -1.300080 3.176821 1.182027 -1.343342 1.043673 0.486159 2.615159 0.189144 -1.499922 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.976014 -0.931270 1.009113 0.830547 0.420009 0.609852 0.586880 -0.468395 1.012128 1.046002 0.023285 0.343935 -0.819909 0.046959 -0.068260 0.486487 -0.248227 -0.884097 0.067933 -0.569611 -0.449697 -0.778581 -0.136807 0.136316 0.190312 -0.711440 -0.506900 -0.319548 -1.278454 -0.936241 0.364526 -0.291029 0.535375 -0.862275 -0.093378 -2.602595 0.677018 0.785269 -0.303197 -1.105250 0.130073 -0.654223 0.327795 0.244860 -0.081597 0.103019 0.300870 -0.203044 0.408574 0.259887 0.763869 0.093221 0.024094 2.248451 -0.647009 0.903029 0.541337 -0.038627 -0.353252 0.484797 0.253284 -0.114744 0.816820 0.598762 -0.432725 -0.309582 0.014916 -0.143950 -1.130269 0.462851 0.021377 -0.469254 -0.360042 -0.152869 -0.605018 -0.644299 -0.430808 0.217937 1.430843 -0.676733 1.251897 0.382960 0.790953 0.248809 0.844484 -0.019942 1.052085 0.152167 -0.807070 -0.094696 -0.443260 0.133318 -0.124343 0.734485 -0.256613 -0.579930 0.518845 -0.090841 -1.115926 0.735581 -0.068458 0.254322 -1.476729 -0.323457 0.635681 0.566898 -0.801764 -1.277359 -1.155590 0.524322 -0.308357 -0.464540 0.226646 -0.872622 -0.249857 -0.545613 -0.799664 -0.384044 0.486823 -0.778138 -1.137658 1.076810 -0.658681 0.457824 0.009524 0.332539 -0.250563 0.575207 0.125495 0.516477 0.107518 -0.371744 -2.219969 -0.405816 0.152143 0.854548 -0.049187 0.016611 -0.162858 0.235993 -0.272107 0.515589 -0.072887 0.793085 1.161660 -0.092892 -0.436887 -0.561535 0.643866 -0.967439 0.306001 -0.721951 -0.022023 0.022222 0.812615 0.432996 0.360484 1.283061 -0.665812 1.002443 -0.297793 -0.180402 0.498202 -0.242647 0.567367 -0.507340 -0.808569 0.134029 0.942100 0.221191 0.248644 -0.475827 -0.078710 -0.562609 -0.607182 -0.059711 0.311516 -0.166775 0.726182 0.454701 2.130481 -1.711865 0.318041 0.130537 -0.154140 0.328154 -0.372903 -1.076560 0.204147 0.387140 -0.423407 0.894837 -0.109134 -0.927075 0.225248 -0.207955 0.296671 -0.629584 0.484628 -0.757449 -0.290929 -0.400226 -0.338466 -0.666511 -0.438273 -0.479822 -0.111546 1.083920 -0.439066 -1.071576 0.793754 -0.209547 0.177449 -1.653428 1.509596 -0.552013 0.545196 -0.940015 -0.129625 -0.379266 1.335769 -0.031499 0.391378 0.524000 -0.747621 0.731115 1.505539 0.253856 0.588241 0.199999 0.766029 0.067007 -0.225878 -0.463510 0.965194 -0.206537 -0.373096 -0.015011 -0.530702 0.736945 0.161786 0.105993 0.282609 1.005791 -0.553188 0.184758 1.081680 0.196094 -0.398062 0.528541 0.011022 0.933488 -0.350158 0.106928 -0.358091 0.155022 -0.121610 0.368011 -1.067641 -0.687640 -0.316807 -1.001293 -0.006075 0.789454 -0.108739 0.161755 0.245147 -1.418540 -0.387089 0.595236 -0.499506 0.728832 0.368544 0.665403 0.841897 0.940090 -0.226631 -0.451235 -0.204822 -0.409080 -0.586988 -0.473056 -0.141524 0.443467 -0.801914 0.790745 0.223139 0.081982 0.124715 0.471539 0.403886 -0.562580 1.344470 0.669677 -0.122062 0.677903 0.753580 1.770901 -0.631237 -0.515422 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = -1.159452 -3.962282 7.029438 5.892609 0.245903 2.853233 1.040160 -4.550910 6.251562 1.590881 -0.915630 1.397478 -4.203144 1.408037 -0.623316 2.980511 -5.278206 -4.864358 -0.647329 -3.241965 -2.457786 -4.553787 1.133140 1.301939 1.795890 0.939521 -3.496072 0.212590 -5.190892 -3.428926 4.709115 -1.821390 3.109988 0.828126 0.874895 -12.882042 5.481711 3.360001 -1.509633 -5.805660 0.419574 -3.530198 0.280530 -2.199341 -0.538828 1.249160 0.435179 2.532360 3.185615 0.865935 1.036608 0.735166 -0.803074 9.275966 -3.783822 4.120360 2.271052 -0.271941 -1.130651 1.608468 1.584353 1.119577 3.991985 4.389007 -2.493559 -3.270859 0.192716 -2.435905 -6.016167 4.683320 1.001622 -0.885762 -3.691765 -0.884732 -3.837471 -1.634161 -1.730039 4.268318 8.221892 -4.074864 5.152550 1.452381 4.213835 0.060105 3.746740 -0.460067 6.983848 1.660709 -3.937602 -0.875596 -5.655813 -2.004394 0.205690 -0.053075 -1.558416 -4.142871 1.543305 -4.821319 -5.674060 2.255404 1.098104 0.578693 -6.186537 -1.041775 4.682754 2.020030 -2.488633 -5.835720 -2.893070 2.053907 -1.909639 -2.171588 0.474551 -1.850939 -1.511015 -2.859092 -5.824663 -1.900176 1.531474 -3.223101 -2.507299 5.107798 -3.886725 0.445069 -0.684804 0.909566 -1.651620 4.054561 -0.345320 2.568946 2.119046 -1.207266 -5.893577 0.388932 1.477283 5.325734 -0.745929 -0.566446 -1.360804 1.599311 -3.671060 0.310119 -1.102299 2.515006 4.204496 -1.599181 -3.856478 -2.456278 0.886489 -6.567557 1.809473 -4.342804 -1.132905 1.629836 4.784071 3.982761 3.450131 5.978783 -5.005115 4.623514 -1.469478 1.029692 3.613962 0.732350 2.869675 -2.715275 -4.023602 2.343909 1.893628 0.829220 1.468020 -2.880516 -0.111509 -4.254295 -3.962060 1.631210 2.100781 0.403638 3.767244 2.309601 6.037131 -7.826783 2.214000 2.666998 -0.238076 1.074188 -0.438273 -5.683577 2.810721 1.036962 0.626880 4.931645 -0.876639 -4.222787 0.361078 0.269275 1.938084 -3.387236 0.695927 -3.739520 -0.972127 -3.548315 0.511002 -2.816187 -2.405121 -2.314455 -1.111942 6.140771 -3.019052 -6.305824 6.710828 -2.690147 3.901860 -8.228770 3.859672 -3.391803 3.771299 -2.783036 -0.353308 -1.130377 1.193526 -2.274274 1.669407 2.881876 -2.420369 2.494214 6.562684 1.837670 2.084131 0.934202 3.832058 0.075392 1.276580 -2.303156 5.280211 -0.888548 -1.500436 0.099840 -2.723572 2.361038 -1.081781 0.856271 3.863497 5.154547 1.312142 3.433246 4.123004 2.396810 -3.220814 2.580308 -0.252286 2.452299 -2.059291 -0.323464 -0.081492 1.022493 -1.930955 2.577987 -5.807929 -7.101693 -4.448424 -6.044040 -0.923005 0.187892 0.726740 -0.021892 0.540140 -5.976242 -2.327048 2.234982 -2.158606 5.499333 2.526115 2.610888 3.917771 5.796337 -3.609550 -1.957635 0.544702 -0.330429 -2.381706 -1.360643 -4.431692 4.586403 -3.320253 3.195778 4.968656 -1.344329 0.790823 -0.760474 5.025252 -2.801925 7.295803 3.379348 -2.434521 3.093975 2.452878 7.246451 1.312396 -3.523500 -PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -5.864338 -9.409373 7.470392 6.998957 2.512628 6.325533 4.212200 -3.356116 5.453436 6.682169 -3.014708 5.915080 -4.903797 -2.715105 -0.176336 0.784495 -1.763422 -5.595563 1.018882 -1.617929 -0.508113 -6.834168 -5.190863 7.117580 0.897014 -0.379500 -2.466591 0.916492 -12.029450 -9.378419 1.370997 -0.314806 3.791106 -1.553472 2.187688 -14.761257 5.077187 9.757190 -0.422581 -10.377733 -0.057895 -3.172998 -2.165543 2.654623 0.350008 3.023445 2.605661 -0.219244 -1.056914 1.224926 2.672839 -1.182136 4.142768 11.662799 -0.775681 9.848312 9.626366 -0.154711 2.887255 2.032258 1.906722 -1.271962 5.403267 6.192243 -3.312072 -0.864651 0.433064 1.383459 -7.034056 2.012640 1.370708 -5.298077 -3.660618 -2.334437 -5.848143 -2.364560 -2.982910 0.827865 11.659838 -2.639142 14.431582 5.674320 8.301716 -0.626547 7.420520 -1.048187 7.857933 2.669549 -7.811039 0.748954 -8.322879 -2.802035 -0.126660 7.179788 -5.789442 2.383156 3.582198 -5.885138 -9.167271 5.278698 -1.563770 -1.389837 -6.624461 0.007463 3.688712 1.951863 -2.420471 -9.495231 -8.675997 5.698233 -5.053706 -4.556341 -1.594971 -0.596912 -0.231230 -0.525651 -5.263201 -1.146658 7.289879 -4.990588 -5.502007 6.973072 -3.310443 5.448491 -1.559818 0.359762 -0.040270 1.108785 2.336789 2.071024 3.097061 -5.614928 -15.382308 0.088440 0.144994 3.174275 -3.570533 -1.024857 4.024218 3.011614 3.582919 6.366534 -1.766638 6.726071 4.147677 0.246840 -2.344707 -8.126203 0.395605 -5.583220 3.290091 -3.647436 -2.466829 -0.455181 5.720438 0.264227 0.272614 5.473363 -5.039108 7.053224 -0.147492 0.968992 0.440240 -2.139558 2.121583 -3.869177 -6.171678 3.915859 6.902417 2.056039 2.440782 -2.653133 -0.773532 -1.914771 -6.447858 3.305764 -0.483616 1.036611 8.299452 4.039487 18.548505 -9.511092 1.717456 -1.816805 -1.042333 1.822518 -2.495322 -7.539598 3.891980 1.895625 1.586275 10.123930 -0.455057 -3.821192 1.420664 0.427179 0.872346 -5.887824 8.667721 -6.002994 -1.943029 -1.729003 -2.981496 -3.823557 -4.128791 -5.231555 1.317022 8.893615 -3.253362 -9.399433 4.571096 -1.781220 1.706937 -11.614299 8.845076 -3.924294 4.711481 -4.911260 -2.849692 -1.121171 5.690862 -0.061821 0.849481 3.919605 -8.102523 5.938885 6.847341 0.658462 2.690246 2.553435 1.926167 -1.292570 -2.834508 -5.406226 4.715839 0.636046 -2.524136 -2.350090 -3.773667 7.896511 1.593698 -1.728546 0.275101 8.613709 -3.685391 -2.154353 7.395343 -1.319028 -3.452594 2.656876 1.008228 5.074391 -3.311142 -1.302539 -4.293228 -0.849703 1.844022 2.830851 -8.467834 -3.250681 -2.094784 -7.919277 -2.739487 2.713612 2.920854 4.210773 1.299678 -13.147790 -5.102139 5.948382 -2.380895 2.351591 3.789306 6.114369 6.368904 4.007549 2.351740 -2.442878 -2.804354 -0.246335 -5.658935 -2.774628 -0.749195 2.955817 -4.660929 7.648280 2.068626 0.928739 2.920601 1.423635 3.425472 -4.734529 10.755667 5.296432 -5.487285 1.053223 3.389803 9.667686 -8.618828 -4.855744 -PE-benchmarks/kmp-algorithm.cpp__computeLPSArray(char*, int, int*) = -2.328320 -4.239127 3.262932 3.183484 1.399209 2.550309 2.469811 -1.394433 2.562736 3.680030 -1.496546 2.503430 -2.226745 -1.100629 0.674698 0.917212 -0.528211 -2.572270 0.822712 -0.597666 -0.163703 -3.210976 -2.071859 2.444691 0.568901 -0.551704 -0.945697 0.160945 -4.966036 -4.647037 0.851916 -0.388415 1.599651 -0.463049 0.847143 -7.048553 2.483220 3.946590 -0.172248 -4.538350 -0.269203 -1.101149 -0.996917 1.241853 1.047105 1.824327 1.575696 0.583166 -0.304306 1.054732 1.783020 -1.316797 1.815258 5.096634 -0.680036 4.455089 4.437184 -0.198373 1.463417 1.009188 0.883023 -0.790706 2.375912 3.283209 -1.362107 -0.207708 0.097733 0.418032 -3.200235 0.824366 1.188389 -2.045206 -2.123497 -1.013519 -1.503379 -0.965858 -2.965720 -0.011282 5.623110 -0.921850 6.976483 2.946366 4.308535 -0.700448 2.999211 -0.524955 3.603011 1.144375 -4.006347 0.503251 -3.616169 -2.067813 -0.124450 3.575437 -2.218505 1.960768 1.173418 -0.717301 -3.772425 2.290636 -0.848944 -0.218649 -3.082198 0.443088 1.624967 0.664856 -0.897830 -4.372618 -4.209365 1.739885 -2.499454 -1.921935 -0.969508 -0.398340 -0.560763 -0.095440 -2.401506 -1.037219 3.161089 -2.577456 -2.832890 2.625604 -1.833717 2.425312 -0.691129 -0.118012 0.100583 0.362385 1.554184 1.201903 2.307390 -2.942065 -8.688815 0.427326 0.570532 2.076037 -1.124298 -0.280182 1.777586 1.236755 1.540309 3.046448 -0.020751 3.401268 2.458483 -0.061128 -1.264156 -3.568115 0.664908 -1.919404 2.411183 -1.829138 -0.105615 -1.165884 2.504478 -0.390537 0.271404 2.511003 -2.797767 3.780894 -0.510246 0.925380 0.084391 -0.482906 1.000681 -1.612373 -2.352309 1.716182 3.523890 0.335754 1.392562 -1.572340 -0.000149 -1.123480 -2.918805 1.463992 -0.883330 -0.218817 3.336435 1.260784 9.995854 -4.124078 0.868425 -0.492991 0.133361 0.655386 -0.490152 -3.255203 2.460049 0.389689 0.765653 3.955005 0.031822 -1.857775 0.460635 0.036524 0.091259 -2.395863 4.030735 -2.400771 -0.810787 -0.598273 -0.629195 -1.628224 -1.994868 -1.361932 1.943879 3.830477 -0.065095 -4.217903 1.599371 -1.598715 0.279000 -5.133763 5.326496 -1.827952 1.125211 -2.889162 -1.569296 -0.456576 3.091281 0.402971 0.187577 1.682425 -3.294958 2.625657 3.121914 0.260053 1.023033 1.383303 0.767762 -0.337454 -1.504735 -1.763510 2.024415 0.444662 -0.431354 -1.310988 -1.601237 3.758706 0.787556 -1.236074 0.298865 3.985112 -2.186064 -0.908699 3.047433 -0.615775 -1.601061 1.276114 0.750711 2.624643 -1.452815 -0.524752 -1.834417 -0.981876 0.457211 1.399969 -3.414975 -0.939386 0.501414 -3.320389 -1.834412 2.120131 1.709043 1.963389 0.829502 -5.838699 -1.871335 2.758582 -0.953377 -0.125538 1.431851 2.512464 2.521062 1.408587 1.340125 -1.594206 -1.749604 -0.131949 -2.496499 -1.154266 0.105355 1.240348 -2.498906 3.271285 0.469993 0.330365 0.666074 0.290877 2.876726 -1.935221 4.793841 2.222357 -2.006163 0.595373 1.756706 4.894030 -4.031921 -1.930548 -PE-benchmarks/kmp-algorithm.cpp__main = -0.443789 -2.465075 3.001054 2.679476 0.099526 1.343891 0.944750 -1.366067 1.731011 1.207461 -1.037016 1.656436 -1.641401 0.083844 -0.741550 1.090777 -1.729365 -1.719347 -0.077693 -0.610349 -0.407639 -1.757636 -0.268964 1.555333 0.978296 0.996948 -1.117784 -0.024090 -2.798120 -2.528035 0.898144 -0.400145 1.238588 0.329334 0.517543 -4.065752 1.887456 2.498093 -0.454998 -2.998950 0.453130 -0.917917 -0.696165 -0.277792 -0.152301 0.828879 0.517928 0.987814 0.289879 0.757997 0.322038 0.071479 1.451529 3.486672 -0.508400 2.456655 2.534809 0.136065 0.622085 0.208256 0.812066 0.092450 1.233287 1.744656 -0.433905 -1.019492 -0.517797 -0.378125 -1.927883 1.197359 0.084092 -0.717774 -1.772878 -0.677131 -1.688303 -0.264233 -2.090665 1.323645 3.608727 -1.526704 3.306867 1.267324 1.830220 -0.368724 1.377083 -0.057106 1.785159 1.077008 -1.568618 0.036030 -1.987917 -0.955137 0.325062 0.600637 -1.660334 -1.277003 1.319398 -2.370712 -2.641844 1.271003 0.255300 -0.617088 -0.837127 0.003230 0.923797 0.835891 -0.920558 -2.398193 -1.416405 1.011523 -0.470699 -1.205263 -0.275624 0.301279 -0.194535 -0.148950 -2.256127 -0.150942 1.394594 -1.458514 -0.488957 1.767729 -0.491265 1.108468 -0.511882 0.148488 -0.228370 1.331478 0.612863 1.065128 0.797505 -0.375263 -2.650764 0.869422 0.838770 0.929826 -1.203253 0.024664 0.457908 0.892782 0.296261 0.967648 -0.597083 1.378108 1.176002 -0.502171 -1.437914 -2.068627 -0.580710 -2.175912 0.854918 -1.418592 -0.809273 0.507638 1.808292 0.514619 0.781075 1.951551 -1.899820 1.396617 0.023916 0.379340 0.613793 -0.011631 0.794340 -1.077904 -1.903923 1.443730 1.406779 0.572110 0.608660 -0.562800 0.072300 -1.138379 -1.236652 1.400761 0.478530 -0.182757 2.241919 1.183837 3.391194 -1.853520 0.391797 0.293385 -0.371821 0.304593 -0.326847 -2.608070 1.535864 0.264874 0.936195 2.426137 -0.115480 -0.874542 0.888024 -0.225028 0.331964 -1.574959 1.687536 -1.661185 -0.708095 -1.138670 0.241461 -0.690650 -0.994910 -1.158127 0.082223 2.787620 -1.699683 -1.898192 1.682543 -0.502484 0.771615 -2.892608 2.488088 -1.236726 1.602464 -0.590813 -0.719613 0.062893 0.358650 -0.691012 -0.204355 1.271877 -1.471675 1.081933 2.037669 0.490300 0.188993 0.664003 1.109720 -0.521096 0.316814 -1.281560 1.561841 0.021585 -0.876233 -0.335473 -0.963020 1.272747 -0.374807 -0.110638 1.406000 1.854678 0.145074 0.512676 1.424630 0.794432 -1.389558 1.071915 0.036727 1.407835 -1.215566 -0.416699 -0.659949 0.239333 -0.156130 1.214369 -2.578069 -2.110179 -1.898071 -2.091514 -0.813960 -0.319027 1.140494 0.192667 -0.006497 -3.068487 -1.887564 1.713025 -0.851683 0.538964 1.527133 1.322504 1.856111 1.552864 -0.096425 -0.360990 -0.486899 0.518073 -0.835239 -0.474647 -0.931067 1.241704 -1.408494 1.320136 1.774707 -0.329442 0.882022 -0.094367 1.648681 -1.376230 3.298483 1.436503 -1.755763 0.831377 1.335466 2.463611 -1.030378 -1.597121 -PE-benchmarks/program-wish-womens-day.cpp__main = -6.886396 -12.271535 8.322575 8.357111 5.922815 8.369608 4.706137 -2.327229 6.877079 7.959371 -4.203463 8.252747 -5.353647 -3.697246 0.576262 0.717634 -1.400542 -9.849315 4.406844 0.545812 0.471921 -7.021057 -6.840538 8.736594 0.102330 0.688413 -2.982038 2.578028 -16.873395 -12.695219 0.260847 -1.164919 4.370879 -3.040588 2.324725 -13.518617 7.126153 13.741820 0.130302 -14.641498 -0.724998 -4.357042 -2.271302 4.264674 0.339322 7.039802 5.497354 0.725084 -2.510482 3.930397 2.411204 -0.735906 4.398578 6.704050 3.228567 11.243076 10.943897 0.972614 1.854162 1.646175 2.995185 -2.053121 7.724544 5.911918 -5.997453 0.717440 0.245925 2.375209 -9.951340 1.455639 3.997542 -6.842638 -1.907298 -0.696998 -6.550782 -1.597763 8.376103 -0.908098 13.184181 -1.544751 16.174045 5.314838 11.199835 -2.448740 8.418760 -1.900757 9.458887 4.151009 -8.865307 -0.510523 -12.097292 -5.811667 -1.536334 6.834560 -6.369827 4.248697 2.169257 -8.100916 -10.225318 5.338947 -2.931667 -0.132868 -8.689415 0.768325 8.314331 4.089578 -2.061402 -8.539597 -6.701300 6.793433 -9.298674 -5.778051 -2.650549 -0.464053 -1.958136 0.377612 -5.529030 -3.235226 10.674768 -6.172283 -3.049737 9.293993 -5.228968 7.764219 -3.355598 -1.858718 1.784844 0.782608 4.634444 2.329645 3.201421 -8.760515 -12.200555 -0.101959 -2.727596 2.637943 -5.629579 -3.136773 6.080344 4.734870 4.611590 7.114038 -4.676483 4.820364 7.507077 0.249907 -3.300100 -10.044246 -1.022908 -6.130038 3.312218 -4.456302 -2.026569 -0.695979 8.941380 -1.215879 1.436330 7.953952 -5.978993 5.335717 1.169967 1.904911 0.789129 -2.516618 1.539721 -4.752314 -7.677086 6.724784 8.707182 0.913951 3.023861 -5.244514 -0.053236 -2.245839 -8.672565 4.114836 -0.717180 4.153988 10.242474 3.825289 14.952123 -6.162570 -0.107232 -3.804208 -1.448275 3.297582 -3.233430 -9.138223 3.180459 2.592893 6.764476 13.674160 -1.247083 -5.029741 2.479266 4.218951 -0.446120 -7.918595 11.060601 -7.590258 0.729809 -0.074413 -3.291807 -6.032868 -3.623735 -8.268907 -1.366614 12.643894 0.877060 -14.700906 4.081408 -5.201866 3.902673 -15.424380 2.672381 -5.823706 7.208485 -2.106207 -1.127132 -0.233498 -0.266621 0.242550 1.004395 5.306360 -7.098122 7.886737 5.827724 1.719311 1.081846 5.273218 0.558427 -0.965267 -3.255889 -5.429166 3.480133 -0.141516 -0.663951 -1.482642 -5.600280 8.476426 2.912859 -4.585570 -0.421232 7.850549 -3.475041 -0.620387 7.354365 -2.620589 -6.762806 2.662780 2.945131 7.017631 -2.928829 -1.472150 -6.376112 -0.451677 2.953918 4.137019 -10.491897 -4.457835 -3.654801 -16.520805 -3.726410 2.704364 4.110611 5.028293 3.651348 -13.256093 -5.168709 7.903162 -1.471803 13.300975 5.219021 7.133891 7.443304 2.367703 0.751682 -3.425379 -4.949379 -2.810974 -8.315392 -2.857749 -0.110116 3.373397 -2.953353 9.888835 2.824985 -0.423071 1.635770 -3.470663 4.679225 -5.905237 11.579143 7.069454 -5.942353 -1.842992 -2.068552 12.609375 -11.174074 -7.850145 -PE-benchmarks/program-wish-womens-day.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.206415 -0.454435 0.155443 0.239473 0.326729 0.060126 0.171315 -0.009966 0.288307 0.014791 0.083822 0.139020 -0.356706 0.144291 -0.178834 0.001468 -0.103957 -0.468169 0.117394 0.103574 -0.345276 -0.306590 -0.194586 0.232087 -0.213990 0.133391 -0.184918 0.158288 -0.597714 -0.154497 0.267832 -0.098025 0.234532 0.119604 -0.036852 -0.772151 -0.088405 0.307135 -0.074006 -0.215898 -0.098947 -0.500767 0.235103 -0.331454 -0.007739 -0.066342 0.223476 -0.174181 0.073885 0.084401 0.114543 0.007236 0.135390 0.559698 -0.070506 0.249754 0.264856 0.207906 0.013644 0.046511 0.123224 0.064182 0.424504 0.057734 -0.334217 0.121961 -0.128757 -0.325470 -0.341645 0.187932 -0.023350 -0.115971 -0.148511 -0.109018 -0.221246 -0.235943 -0.393307 0.053209 0.325935 -0.500652 0.444409 -0.039922 0.337542 -0.064896 0.299880 -0.038296 0.430192 0.122590 -0.281419 0.190149 -0.104095 -0.051124 -0.108494 0.057624 0.073902 -0.191245 -0.120775 -0.294922 -0.306528 0.243248 -0.151504 0.359764 -0.414428 0.030072 0.228179 0.002216 -0.435340 -0.326090 -0.175351 0.091510 -0.059103 -0.067103 0.038162 -0.067561 -0.286113 -0.411770 -0.282665 -0.355396 0.242084 -0.353986 0.032239 0.560270 -0.325980 0.324924 -0.068626 -0.299106 0.204926 0.554738 0.132150 0.185089 -0.278533 -0.004395 -0.411009 -0.233582 -0.240679 0.413086 -0.156372 -0.170995 0.126984 0.143933 -0.114032 0.057757 0.129600 0.011921 0.200827 -0.181300 -0.288534 -0.277419 0.013512 -0.588937 0.199821 -0.294813 0.188250 0.089073 0.439702 0.232406 0.167114 0.486717 -0.237232 -0.107426 0.149766 -0.240810 0.253623 0.147915 0.177153 -0.233087 -0.351715 0.299312 0.166342 -0.210040 0.232976 -0.416805 -0.018063 -0.100047 -0.205736 -0.060101 0.137526 -0.006377 0.348217 0.091629 0.066840 -0.637072 0.292282 -0.217982 -0.105927 0.282630 -0.180854 -0.207930 0.286127 0.222282 0.013093 0.033814 -0.219269 -0.119186 0.115487 0.049587 0.001464 -0.334764 -0.064652 -0.099710 -0.024139 -0.112810 -0.067348 -0.098660 0.004843 -0.024890 -0.167723 0.533680 -0.308862 -0.255639 0.363406 0.016979 0.095615 -0.481848 0.165592 -0.190895 0.409061 -0.160787 -0.138668 -0.090606 0.144613 0.174703 0.041615 0.226716 -0.193051 -0.083287 0.328948 0.223364 0.229172 0.458897 0.199187 0.208180 0.038498 0.097212 0.186124 0.086131 0.043512 0.174395 -0.377507 0.237377 0.189987 -0.144754 0.548527 0.458156 0.200153 0.252495 0.341884 0.045916 -0.301542 -0.194375 0.192929 0.248973 -0.094513 0.138613 -0.134254 -0.029676 -0.134296 0.149989 -0.259574 -0.405448 -0.239442 -0.539195 -0.125350 0.161065 -0.135169 0.182170 0.236204 -0.476945 -0.068386 0.086718 -0.242925 0.545718 -0.004676 0.211434 0.111114 0.190283 -0.142643 -0.093159 0.068094 -0.216584 -0.085992 0.365275 -0.078412 0.085664 -0.296124 0.329184 0.050168 -0.221822 -0.087967 0.245230 0.442674 -0.230696 0.268533 0.122962 0.067875 -0.004894 0.177411 0.510692 0.004850 -0.344699 -PE-benchmarks/vertex-cover-problem.cpp__Graph::Graph(int) = -0.095979 -2.267847 2.871178 1.668742 -0.457873 1.676422 1.325861 -1.355719 1.308269 0.659367 -0.858477 0.550904 -1.606519 -1.030043 0.173252 -0.236953 -2.060444 -1.519766 0.139369 -0.668738 -0.358266 -1.534393 -0.510638 1.677049 0.473040 1.010871 0.079684 -0.135427 -2.459574 -0.633033 1.197444 -0.126621 0.679388 2.309849 1.630806 -2.035246 1.498935 1.556992 -0.193315 -2.558463 -0.033952 -0.145055 -0.814214 0.534219 0.369921 0.556388 0.420222 1.918562 -0.297569 0.329314 0.147668 -1.358417 0.228806 2.444110 0.785962 1.999492 2.230763 -0.205122 1.218865 1.259539 0.726761 -0.277871 0.629516 1.454067 -0.238737 0.335689 0.547900 -1.183201 -1.380734 1.262023 0.544978 -1.607784 -0.365840 -1.337303 -1.441946 -0.213141 -2.750659 1.974262 3.084754 -1.584940 2.669416 1.127071 2.108289 -0.874479 2.153173 -0.174095 2.524667 0.810721 -1.453760 0.668404 -2.555292 -2.168911 0.113658 -0.445328 -1.104809 -0.236480 1.386814 -2.368034 -2.212793 1.802435 0.079351 -0.270351 -0.870022 0.395403 1.081694 0.369897 -1.492597 -1.979373 -1.453911 1.530042 -1.874640 -0.194909 0.129673 1.459899 -0.680228 -0.316249 -1.049916 -0.116349 1.803130 -1.138190 -0.513436 2.343131 -0.842499 1.498813 -0.385899 -0.567291 -0.042325 0.866259 0.628133 0.052305 0.975437 -0.725342 -1.542577 1.155413 0.158293 1.340636 0.407795 0.239158 1.575732 1.315169 0.146387 1.257263 -1.189025 1.186264 0.030065 -0.495734 -1.584399 -1.286546 -0.578610 -1.905091 0.297577 -1.248387 -1.072026 0.571968 1.835538 2.154456 -0.509946 0.957896 -1.507454 0.791524 -0.455455 0.371251 -0.709726 -0.036918 0.556266 -1.119017 -1.376509 0.238351 0.787280 0.453918 1.168296 -1.497879 -0.667313 -1.308698 -2.152850 0.670409 0.746882 -0.162878 1.513361 1.621516 0.909434 -1.875740 -0.270969 -0.058203 -0.078397 -0.202491 -0.402191 -2.082959 0.789955 0.174740 0.864806 1.702490 -0.223301 -0.065794 0.363358 -0.311991 0.257356 -1.245231 0.525258 -1.323600 -0.102697 -0.856490 0.794836 -1.176330 -1.158013 -1.165934 -0.685772 2.367730 -1.187357 -1.987191 2.152755 -0.819077 1.521450 -1.756593 0.972325 -0.804808 1.619240 -0.027215 -0.317000 -0.502706 0.193996 0.038368 0.504923 0.382608 -1.047864 1.097380 1.581149 0.196626 0.778798 0.910018 0.998492 -1.442644 -0.916858 -1.565437 1.420812 -0.229315 -0.913996 -0.139321 -1.052747 1.327816 -0.089551 -0.201941 1.000656 1.040354 0.053563 0.372845 0.763984 -0.833019 -1.196992 0.297533 0.833073 1.239485 -1.033632 -0.347122 -0.541320 -0.011795 0.154590 0.037242 -2.195318 -1.620386 -1.958178 -1.667918 -1.566025 -0.844904 1.066708 0.723960 0.335404 -1.829895 -1.099580 0.650770 -0.659007 -0.113656 1.323815 1.503194 2.031762 1.739120 0.078633 -0.016480 0.320542 0.788353 -1.752451 -0.416224 -1.136418 0.352538 -1.794573 1.756711 1.435500 0.893011 1.084276 -0.553660 2.232983 -1.911537 1.726873 1.809489 -1.804874 0.014147 1.607751 1.502291 -0.151153 -1.539419 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/vertex-cover-problem.cpp__Graph::addEdge(int, int) = -0.391477 -1.595272 2.386586 2.273744 -0.389854 1.052234 0.253968 -1.435890 1.178782 1.040368 -0.194706 0.780020 -1.411738 0.458828 -0.071988 1.140260 -1.696976 -1.092001 -0.535362 -1.126902 -1.062540 -1.120823 -0.114413 1.034326 0.759696 0.523892 -1.086790 0.007597 -1.247854 -1.675270 0.576147 -0.301473 1.144160 0.551017 0.571997 -4.044982 1.599099 1.532973 -0.447090 -1.641110 0.168941 -0.852852 -0.027713 -0.383929 -1.005720 0.392624 0.056417 0.181632 0.841520 0.371575 0.656160 0.234291 0.983472 3.247461 -0.447331 1.626829 1.093533 -0.198096 -0.013006 0.198140 0.545223 0.248492 1.111771 0.837644 -0.181876 -1.091700 -0.338866 -0.555324 -1.387767 1.314340 0.092106 -0.767077 -1.283149 -0.909196 -1.269378 -0.805875 -1.771514 1.363017 2.535959 -1.697089 1.713359 0.741277 0.673722 0.092427 1.439893 -0.140477 2.157554 0.597887 -0.878739 0.645213 -0.123011 -0.669925 0.474033 0.490460 -1.182434 -1.868862 0.872341 -1.792628 -2.190635 1.310991 0.420220 -0.237823 -1.427837 -0.843944 0.814790 0.381989 -1.167762 -1.883941 -0.963635 0.780783 0.032797 -0.911327 -0.231123 -0.070260 -0.065063 -0.124700 -1.996707 -0.149351 0.681237 -1.037228 -0.585530 1.738084 -0.039503 0.557912 -0.222897 0.315248 -0.467591 1.675644 -0.025152 1.157150 -0.240859 0.372127 -1.538627 0.061562 0.645457 0.291289 -0.332603 -0.511201 -0.140938 0.731711 -0.604820 1.031461 -0.122429 1.458729 1.556507 -0.016223 -1.286167 -1.049629 -0.583435 -2.213539 0.402455 -1.368800 -0.741399 0.868219 1.436681 0.849865 0.707507 1.263746 -1.021489 1.033588 -0.360245 0.032896 1.009469 -0.098995 0.854514 -0.954543 -1.461431 1.040743 0.842672 0.810925 0.525054 -0.627545 0.005367 -0.763580 -0.989353 0.788071 0.630969 -0.226654 1.597204 1.105550 3.308220 -1.481254 0.743254 0.451038 -0.359599 0.462709 -0.270985 -1.927392 0.650262 0.366017 -0.338810 1.719338 -0.387155 -0.798279 0.571445 -0.378448 0.550892 -1.372429 0.787191 -1.194277 -0.021609 -1.315267 0.091511 -0.759393 -0.638758 -0.761218 -0.332871 2.235763 -2.339864 -1.107181 2.048907 -0.168930 0.852054 -2.108171 2.203702 -0.862151 1.409091 -1.034692 -0.940651 0.004269 0.477041 -0.544002 0.589656 1.002645 -0.945846 0.158389 1.936795 0.370692 0.466268 0.289398 1.358940 -0.096479 0.573999 -1.008985 1.974017 0.038806 -0.287832 -0.391316 -0.860308 0.400573 -0.351452 0.306966 0.985043 1.276207 0.192732 0.223034 1.314050 0.677615 -0.949370 0.930173 -0.123805 0.815629 -1.167082 -0.175564 -0.090388 0.644040 -0.388588 0.706578 -2.068536 -1.585935 -2.225983 -0.787647 -0.808334 0.807895 0.632613 0.057625 -0.260480 -1.549967 -1.364561 1.963673 -0.936309 0.461055 0.992239 1.069906 1.610446 1.782161 0.004629 -0.402133 -0.362307 -0.040987 -0.311392 -0.069428 -1.074455 1.349491 -1.117362 1.097441 1.447282 -0.267817 0.861947 0.398096 1.536528 -1.214302 2.203501 0.879373 -1.005924 1.073923 1.930331 1.447905 -0.321063 -1.160070 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::push_back(int const&) = -0.077529 -0.917212 1.926129 1.690331 -0.291034 0.629247 0.100363 -1.345253 1.481807 0.359404 -0.067820 0.345084 -1.053998 0.601394 -0.297854 1.025625 -1.514553 -0.974832 -0.508815 -1.067197 -0.843968 -0.975442 0.422656 0.255730 0.632583 0.456758 -0.955443 0.007034 -0.960840 -0.934492 1.081055 -0.390250 0.806590 0.193464 0.263220 -3.329660 1.412603 0.906599 -0.490407 -1.358132 0.240322 -0.820300 0.128790 -0.602182 -0.478886 0.211199 -0.188216 0.492971 0.979868 0.286153 0.366317 0.484081 0.168066 2.586149 -0.959138 1.010112 0.481178 -0.059223 -0.391253 0.293020 0.409690 0.500026 0.837138 0.799006 -0.267402 -1.124092 -0.221362 -0.642902 -1.378018 1.246603 -0.015182 -0.403871 -1.099677 -0.507587 -0.989252 -0.497219 -1.263619 1.271060 1.947137 -1.326708 0.981342 0.226904 0.533105 0.101900 0.849460 -0.081755 1.616537 0.433907 -0.617319 0.086968 -0.553645 -0.367427 0.334869 -0.198445 -0.657727 -1.762485 0.632030 -1.287231 -1.489152 0.672496 0.589161 -0.016680 -1.289897 -0.552017 0.818272 0.455756 -0.835267 -1.398146 -0.535145 0.528918 0.168919 -0.568503 0.040671 -0.378039 -0.230716 -0.592107 -1.607283 -0.197249 0.232984 -0.657977 -0.459639 1.273472 -0.562691 -0.070521 -0.159556 0.358538 -0.535055 1.432644 -0.267029 0.930079 0.048071 0.330961 -1.071000 0.194983 0.521846 0.920253 -0.165585 -0.154143 -0.558813 0.399922 -1.002412 0.215261 -0.210901 0.599859 1.185029 -0.278406 -1.043524 -0.464671 -0.177392 -1.884918 0.345044 -1.117295 -0.385883 0.680549 1.141151 1.103125 0.925839 1.349332 -1.154538 0.773225 -0.319310 0.034166 1.115236 0.273336 0.758473 -0.678450 -1.061748 0.663747 0.295291 0.391765 0.343633 -0.465736 -0.009963 -0.970315 -0.573925 0.525547 0.693097 -0.104452 0.978030 0.763155 1.600164 -1.502391 0.572225 0.737847 -0.284610 0.336849 -0.148355 -1.460224 0.572121 0.317679 -0.017740 1.144079 -0.309094 -0.712182 0.279165 -0.210863 0.566819 -0.885238 0.134186 -0.904089 -0.241678 -1.085549 0.214592 -0.571869 -0.433315 -0.545250 -0.455696 1.606379 -1.393390 -1.044610 1.858997 -0.450001 0.858132 -1.673572 1.337762 -0.757155 1.029203 -0.678022 -0.206450 -0.128654 0.190236 -0.749185 0.411867 0.737312 -0.494163 0.200572 1.764319 0.447669 0.311833 0.064806 1.190299 -0.131339 0.768503 -0.644971 1.617946 -0.190769 -0.326104 0.055199 -0.636931 0.132174 -0.585328 0.378784 1.224358 1.022349 0.561673 0.709134 0.880237 0.900543 -0.784405 0.896935 -0.138609 0.399007 -0.666183 -0.058427 0.283081 0.553908 -0.543808 0.574059 -1.486717 -1.747025 -1.615354 -1.032023 -0.184657 0.074947 0.231250 -0.283068 -0.177470 -1.174959 -0.914647 0.999809 -0.676181 0.942986 0.665798 0.638332 1.038536 1.616170 -0.766642 -0.197364 0.021847 -0.064648 -0.146893 -0.216749 -1.124218 1.289367 -0.805793 0.493335 1.436548 -0.375614 0.470281 0.057361 1.205382 -0.758962 1.744571 0.630357 -0.507026 1.054603 1.106764 1.535516 0.478665 -0.858644 -PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -2.694359 -9.536182 11.230525 10.653700 0.935040 6.836749 1.238017 -5.971911 5.845416 6.690734 -3.819360 6.413098 -6.240133 -0.839147 -1.487668 3.792799 -5.281477 -6.122315 -0.207186 -2.580783 -1.821032 -6.144858 -1.999751 7.098414 3.131639 5.222798 -4.105492 1.361031 -10.500106 -12.644089 1.644961 -0.594891 5.230317 3.260332 2.628449 -13.060052 7.896701 11.166087 -1.162105 -11.553490 1.056049 -3.109304 -3.648150 1.340437 -0.912653 4.427811 1.478485 1.850775 0.333548 2.838167 2.231918 0.141495 6.650135 9.756054 0.705265 9.988657 8.710326 0.104344 2.456989 1.078145 2.849324 0.662910 5.875464 5.778658 -2.551477 -3.617918 -0.949930 0.454313 -7.389441 4.415141 0.737498 -5.155607 -4.700761 -3.706082 -4.421301 -0.967411 -3.998922 3.551323 12.876673 -3.884578 12.027594 5.079443 5.703638 -2.345022 7.083484 -1.572188 8.720687 4.319607 -5.302033 -0.346548 -5.952876 -4.599124 1.429203 4.424822 -7.643424 -0.509537 5.049021 -9.387590 -10.700921 5.260382 0.606036 -3.013257 -5.573963 0.047291 4.605283 2.594085 -2.360838 -8.571531 -4.292212 5.313471 -3.777552 -5.802418 -3.578722 1.193976 -1.027629 2.829947 -7.858890 -0.623742 6.080520 -5.379700 -2.655673 7.157694 -0.326530 4.164528 -2.535085 0.701433 -0.289303 3.297562 1.852017 4.103130 3.040690 -0.740917 -7.276686 3.950182 2.371374 -0.526720 -5.181773 -1.412643 2.472598 3.696212 1.434795 5.667074 -4.738386 6.325204 6.599793 -0.449487 -4.875585 -7.716722 -3.184413 -8.333313 1.835658 -5.382045 -3.747697 1.081863 7.281531 0.632074 2.146932 6.323898 -7.451641 5.104801 0.529392 2.225877 2.078285 -0.225954 2.590459 -4.783094 -7.829318 6.213594 6.655813 1.779256 2.209921 -1.955202 -0.463352 -2.976253 -6.349730 6.743602 0.597420 1.094836 9.308741 4.947321 16.431672 -5.537578 1.518871 -0.001864 -1.878405 1.631359 -1.779907 -10.156860 4.344992 1.294404 5.071418 11.957983 -0.847810 -3.128537 2.372692 0.378360 1.053171 -7.167945 8.709795 -7.474341 -0.604627 -3.311534 -1.052209 -2.909366 -4.333146 -5.177840 -0.133489 11.262488 -6.494842 -8.717432 7.032999 -3.193987 2.444404 -11.578011 5.509827 -5.046213 5.454605 -2.070800 -3.048958 -0.423636 -0.671963 -2.349576 -0.081128 5.030962 -5.879759 5.181667 7.481582 1.132462 0.559986 2.227984 2.928993 -2.263363 0.390710 -6.139715 6.949307 0.890619 -1.604492 -2.631383 -4.294344 4.125065 -1.387310 -2.512131 2.816418 7.139534 -1.303857 -0.327663 4.823879 1.789070 -5.376756 5.210857 1.177493 4.335965 -4.486024 -2.207492 -2.524699 0.435092 0.528463 5.052570 -10.442742 -6.674146 -6.245206 -8.883622 -3.771746 0.611379 5.634709 2.020708 -0.182339 -10.080629 -7.875416 8.839408 -2.684024 5.451714 5.373944 6.382443 6.951697 5.471238 0.821575 -1.080309 -3.871168 0.378156 -4.386013 -2.994571 -2.131643 5.226939 -2.396294 6.448613 5.887984 -0.517434 4.338023 -2.319400 5.516585 -5.678847 11.679329 5.512266 -6.173213 2.417085 2.853042 8.724306 -6.511141 -6.468014 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/vertex-cover-problem.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/vertex-cover-problem.cpp__main = -0.556580 -4.759288 6.404955 5.789294 -0.858658 2.696403 0.649080 -3.031119 3.341415 1.342067 -1.678992 2.816892 -3.706353 0.873923 -1.045026 2.472786 -4.785298 -3.628599 -0.361228 -1.581667 -1.810788 -3.217460 0.177561 3.298876 2.111646 3.238018 -2.705959 0.044778 -4.263308 -3.842637 2.374631 -1.280294 3.173290 2.863658 1.332266 -9.427542 3.985807 4.039011 -0.900600 -5.387855 0.553521 -2.134607 -0.630420 -1.918056 -2.017079 1.390801 0.980691 2.010360 1.545591 1.111106 0.016598 -0.059460 2.286212 6.870012 -0.732769 4.175302 3.687413 -0.290913 0.430121 -0.321674 1.871011 0.299323 3.038116 3.128913 -1.126193 -2.587840 -1.011956 -1.822994 -4.131428 3.173366 0.497083 -0.431227 -3.519387 -1.523414 -3.198277 -1.035378 -2.493284 3.707266 7.343573 -3.760897 5.377000 2.015487 2.936537 -0.698729 2.970258 -0.106480 4.455930 2.190930 -2.778235 0.529617 -2.801905 -1.944147 0.694483 0.595422 -2.814122 -3.648092 2.316224 -5.435638 -5.465632 2.674173 0.836476 -0.646879 -2.474093 -0.866772 2.647525 1.779495 -2.528492 -4.579949 -1.734058 1.340159 -0.598036 -2.460223 -0.680570 1.067132 -0.678300 -0.528242 -5.090151 -0.922938 2.090260 -3.345179 0.008603 3.871677 -0.811678 1.968424 -0.996128 0.400417 -0.693203 3.961672 1.045230 2.106660 0.915753 0.031776 -2.290598 0.959903 1.712726 2.338141 -2.078859 -1.321760 0.255467 1.892458 -0.639998 0.870151 -0.842110 2.668967 3.133120 -0.822874 -3.627291 -3.423296 -1.805151 -5.650148 0.937661 -3.737403 -1.466527 2.729751 3.896751 1.629173 1.988075 4.289482 -3.585057 3.028405 -0.410586 0.739662 2.080047 0.772087 2.040496 -2.425226 -3.733291 3.265447 2.017528 1.599957 1.325096 -1.923906 0.223191 -2.537737 -3.053608 2.947380 1.738441 -0.006031 4.062645 2.115125 5.667989 -3.376142 1.118606 1.112994 -0.390733 0.729895 -0.174735 -5.473961 2.892597 0.236581 0.737816 4.306095 -0.676793 -2.345376 1.796295 -0.395991 0.986599 -3.567144 2.427727 -3.362277 -0.282210 -3.297501 0.836845 -1.667885 -1.875219 -2.338436 -0.598925 6.007802 -5.080238 -3.516089 4.247975 -0.548838 3.138900 -5.937108 3.518306 -2.680703 4.288354 -1.243610 -1.985649 0.269565 -0.912993 -1.256249 0.037036 2.847930 -1.936556 1.062927 4.092136 1.092549 0.489395 1.477709 2.899209 -0.203890 1.434467 -2.086662 3.702228 0.204047 -1.273218 -0.477908 -2.191428 1.395631 -0.977054 0.217502 3.316803 3.680632 1.256155 2.091085 2.651542 1.756420 -3.045488 1.671494 -0.230408 2.876098 -2.724062 -0.726475 -0.928174 1.858439 -1.002676 2.544777 -5.404264 -5.921658 -5.404034 -3.777481 -2.409239 -0.055390 2.227504 -0.064891 -0.156271 -4.409398 -3.413465 3.611277 -1.978755 3.332594 3.027633 2.624209 4.081338 3.842625 -1.171072 -1.584791 -0.097552 1.020803 -1.267927 0.171312 -3.389473 2.889017 -2.747793 2.707913 4.649759 -1.188081 1.513170 -0.676443 4.666619 -2.954899 6.580460 2.929215 -3.877519 2.350398 2.752511 3.813591 -0.134050 -3.458679 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/vertex-cover-problem.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.197217 -1.643680 3.364608 2.740497 -0.229750 1.188232 0.623731 -2.539664 2.675320 0.491208 -0.076797 0.526287 -2.100922 0.989685 -1.411578 1.480065 -2.296461 -1.982242 -1.050079 -2.059564 -1.395553 -1.821714 0.930406 0.521837 1.165437 0.157683 -1.652877 -0.259496 -2.498904 -1.456158 2.051302 -0.491221 1.263210 -0.460181 0.161313 -5.360150 2.403322 1.860522 -0.925574 -2.362925 0.686496 -1.519070 -0.154445 -0.762420 -0.642190 0.092719 -0.484321 1.065720 1.658174 0.483935 0.956695 1.131702 -0.062911 4.905769 -1.983262 2.011556 0.973257 0.373709 -0.620048 0.973054 0.545103 0.996032 1.309800 1.425086 -0.536053 -1.766751 -0.188983 -1.008257 -2.408092 2.245183 -0.072602 -0.883159 -1.702413 -0.672964 -2.039756 -0.746987 -1.586103 1.950118 3.466941 -2.336400 1.803086 0.322161 0.964933 -0.025605 1.370466 -0.269027 2.649614 0.694654 -0.983091 -0.392417 -1.810917 0.032882 0.238403 -0.354231 -1.313079 -3.351133 1.501806 -2.490741 -2.857759 0.969470 0.950236 -0.327403 -2.022749 -0.552342 1.294278 0.645918 -1.551765 -2.620385 -1.154934 1.313934 0.277167 -0.919750 0.381948 -0.867840 -0.241673 -1.307916 -2.811860 -0.293959 0.429969 -1.273996 -1.210426 2.318287 -1.243130 0.054008 -0.072287 0.790467 -0.910981 2.127813 -0.460945 1.459666 0.225161 0.552904 -2.126361 0.275229 0.857070 1.881379 -0.468913 0.240858 -0.912135 0.725716 -1.637367 0.448576 -0.736580 0.791716 1.493497 -0.837830 -1.757749 -0.688505 0.097296 -3.170072 0.522782 -1.962602 -1.186008 0.615855 1.948612 2.152849 1.489769 2.768998 -1.843506 1.489487 -0.194032 -0.086320 1.739145 -0.143766 1.356504 -1.216707 -2.328645 0.997572 0.466114 0.597916 0.369722 -0.565086 -0.254737 -2.032436 -1.124676 0.396274 1.106529 -0.386679 1.883177 1.526428 2.239478 -3.204871 1.120996 1.267961 -0.796275 0.705542 -0.440833 -2.827540 0.862895 0.702615 0.094753 2.334760 -0.416500 -1.322559 0.747176 -0.442620 1.108414 -1.686630 0.276497 -1.786543 -0.858070 -2.016784 0.361141 -0.807905 -0.761226 -1.005519 -1.126979 2.773429 -2.420797 -2.140816 3.308420 -0.400394 1.294080 -3.256957 2.248360 -1.241831 1.805442 -0.789560 0.050177 -0.300075 0.791822 -1.402116 0.748312 1.153893 -1.199414 1.055220 3.431007 0.655780 0.785393 0.170475 2.214055 -0.528886 1.146736 -1.490925 2.872177 -0.349064 -1.489373 0.242937 -1.159777 0.271539 -1.191528 0.842336 2.258762 1.965283 0.873309 1.287501 1.737226 1.752639 -1.261497 1.673310 -0.226871 0.609366 -1.123742 -0.057018 0.529803 0.593589 -0.959633 1.193807 -2.742619 -3.366562 -2.716159 -2.554427 0.330703 -0.703596 0.376562 -0.555365 -0.345643 -2.590215 -1.805092 1.330081 -1.260971 1.886835 1.520559 1.392458 1.830891 3.037335 -1.593817 0.203397 0.291985 0.234142 -0.465140 -0.885024 -1.737374 2.087346 -1.277984 0.993179 2.480806 -0.370037 1.046807 -0.035265 1.665858 -1.452587 3.218765 1.185927 -0.850880 1.992754 1.747601 3.026402 0.994867 -1.449368 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.592846 -4.006603 8.322105 6.783790 0.043351 2.724177 2.552574 -6.490439 6.081957 2.177849 0.110406 1.324856 -5.582094 2.390964 -3.832957 4.135394 -4.606801 -4.859233 -2.893483 -5.163775 -2.961563 -4.283977 3.518078 0.927603 3.463395 -0.282391 -4.013577 -1.768087 -6.458651 -5.317348 4.745494 -0.807738 3.410700 -1.635077 -0.653878 -12.040709 5.956545 5.247331 -2.508413 -5.607268 2.666387 -2.773742 -1.312912 -0.551397 -1.315652 0.466267 -1.466058 1.858131 3.873695 2.212529 3.621099 3.133894 0.836187 11.069281 -4.847330 5.172950 2.537917 1.406843 -1.481138 2.646659 1.090671 2.816613 3.020945 3.393971 -0.654402 -4.190348 -0.593841 -1.975956 -6.513299 5.334166 -0.866291 -2.671659 -3.868565 -1.524834 -4.144711 -1.261170 -2.625270 3.963291 8.336340 -5.217819 4.467757 0.603046 1.150728 -1.227073 2.234617 -0.867111 4.802182 1.788995 -1.590902 -1.849107 -3.941923 0.165302 0.277373 0.372850 -3.642380 -7.537312 4.665333 -4.853569 -7.016052 2.110976 2.490900 -1.527831 -5.227839 -0.935925 2.275899 1.806360 -3.657631 -6.406589 -3.301204 3.319180 1.363711 -2.348819 0.217892 -2.056399 -1.069275 -2.418726 -6.787515 -0.592683 0.697240 -3.572702 -3.672688 4.884956 -2.714468 0.536409 0.101958 2.617831 -2.298090 4.485896 -0.938916 4.118773 1.765139 1.805071 -4.987030 0.171494 2.506289 4.418312 -1.382249 0.898351 -2.732097 1.589193 -3.508952 1.889529 -1.840995 1.726366 4.708987 -2.132755 -4.314421 -1.031580 0.804930 -7.815237 1.466778 -5.052635 -2.354047 0.971575 4.375901 3.790980 3.449911 7.826887 -4.643015 3.445434 0.226303 -0.775893 3.746337 -0.867368 3.182507 -2.830747 -6.512558 2.305454 1.636096 1.140012 0.578084 -0.435665 -0.826987 -5.177888 -3.118352 0.723040 1.880586 -1.853593 4.094907 3.760470 6.352292 -6.840039 2.450705 3.161754 -2.415056 1.844932 -1.145705 -7.566939 1.739413 1.488070 0.555164 6.320464 -0.695701 -3.210436 2.780436 -1.646667 2.309293 -4.187586 1.782742 -4.837721 -1.972146 -5.018615 -0.156224 -1.074426 -1.912828 -1.751825 -1.932415 6.657524 -4.646216 -5.300054 7.620846 -0.740541 1.703497 -8.548789 6.422035 -2.720213 3.326154 -1.790268 0.273420 -0.731088 2.368439 -3.377641 1.048985 2.440810 -2.834055 3.487168 9.420082 1.157966 1.141772 0.196972 5.398776 -1.506668 3.032384 -3.969603 7.366027 -0.808576 -4.325735 0.399235 -2.599075 0.392256 -3.885885 1.385072 5.424056 4.567010 1.104575 2.780152 3.849352 5.183498 -2.971282 5.309390 0.113827 1.887014 -2.461789 -0.059750 1.734064 1.226552 -2.505960 3.904236 -6.502864 -8.072828 -5.374468 -7.618133 1.142893 -1.832972 1.963694 -1.935055 -1.173254 -6.408654 -4.971564 2.980884 -2.964596 4.622980 4.341374 3.825691 4.326740 7.357578 -3.696038 1.578754 -0.156560 1.076288 -1.076181 -3.305013 -2.711156 4.303314 -2.357926 1.957515 5.474638 -0.199011 2.974050 -1.037928 3.598524 -3.665389 8.030932 2.589041 -1.125931 5.836319 3.435246 7.385593 1.684032 -3.137071 -PE-benchmarks/vertex-cover-problem.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/vertex-cover-problem.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/vertex-cover-problem.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/vertex-cover-problem.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__maxChainLength(Pair*, int) = -5.623930 -9.478746 8.369954 7.505145 2.801918 6.830817 3.431085 -3.944116 4.655966 8.262605 -3.512852 5.524019 -4.622086 -2.799265 0.412799 1.357786 -1.707153 -5.940905 1.223673 -1.976419 -1.040323 -5.822247 -4.974104 6.453387 0.999756 -0.903714 -2.587728 1.461078 -10.974360 -11.770338 -0.172982 -0.357050 3.770135 -1.735918 2.698613 -13.239888 6.289613 10.144228 -0.435230 -10.489609 -0.491055 -2.190833 -3.199139 4.335269 -0.433620 4.103201 2.967947 -0.102004 -1.431721 2.537476 4.172312 -1.681085 4.006677 10.694106 1.566537 9.806555 9.342042 -0.434371 2.572854 2.590702 2.316643 -1.415905 5.413042 5.569725 -2.680665 -0.396430 0.832526 1.767574 -6.663945 2.210306 1.959093 -6.759259 -2.068325 -3.275712 -4.668070 -2.098149 -0.559659 -0.008542 12.043747 -2.026317 13.208719 5.603541 7.824946 -1.178311 7.995857 -1.581396 9.203721 3.260704 -7.116013 1.026539 -5.696530 -4.047597 -0.024781 7.774866 -6.095864 3.198429 3.871711 -5.869428 -9.109488 6.306538 -1.470520 -1.554856 -7.237348 0.033554 4.752494 1.907304 -2.815382 -8.591152 -7.577128 5.575228 -5.982151 -4.772708 -2.138910 -0.269880 -0.851101 2.291470 -5.482008 -1.432394 7.718134 -5.280970 -5.442417 7.143943 -2.427510 5.520675 -2.104372 0.028984 0.064516 0.831816 2.681682 2.749200 2.235203 -4.283425 -13.874202 0.750238 0.224719 0.054423 -2.983182 -1.464131 4.518196 3.712711 3.019097 7.873194 -3.561545 7.349219 6.347011 1.040458 -3.419393 -8.003422 -0.561228 -5.550458 2.586618 -4.351036 -3.433933 -0.739376 6.407795 0.022477 -0.002726 5.622943 -4.764710 6.677148 -0.772111 1.611930 -0.068583 -4.183453 2.104701 -4.119988 -6.418188 4.484028 7.995549 1.816782 3.285791 -3.590375 -0.598058 -2.088340 -7.472416 3.989656 -0.238391 1.294014 7.845324 4.189505 19.651009 -7.043412 1.093812 -1.855583 -0.940784 1.631544 -2.416061 -8.024707 2.523776 1.794594 3.016341 11.253188 -0.277322 -3.699424 1.117617 0.503807 0.564651 -6.125559 9.121799 -6.111052 0.182079 -1.104200 -2.514105 -4.268102 -3.766099 -4.831299 0.403174 9.607104 -3.868106 -10.351105 4.987479 -2.874526 1.907775 -11.707913 7.562263 -4.144722 5.609851 -3.971054 -2.509005 -1.225943 3.924326 0.169271 2.405578 4.006331 -6.836334 5.992806 6.843534 0.411274 2.448124 2.496886 1.935757 -2.110048 -3.275990 -5.558090 5.445625 0.608183 -1.688706 -3.164252 -3.944169 6.574390 1.180365 -2.176481 -1.530590 6.869320 -4.960521 -2.442761 6.741124 -1.771645 -4.091639 3.420546 1.833624 5.379519 -3.716257 -1.602363 -4.115377 -0.484698 1.909527 2.683189 -8.716394 -2.259964 -4.043167 -8.588264 -3.973062 4.137729 3.975359 3.784690 1.298040 -10.381259 -5.276659 8.902160 -2.196875 4.274026 4.572039 6.697656 6.435831 3.752432 2.767635 -2.354823 -4.602187 -1.042934 -6.328188 -3.150861 0.010420 2.859866 -3.854919 7.789845 1.712072 1.370733 3.172590 0.806645 3.783224 -5.090817 9.625418 5.691481 -4.867905 0.690099 3.352804 9.462092 -9.349857 -5.226448 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = -0.879922 -2.609537 3.042935 2.590849 0.168158 1.610128 0.852688 -1.300430 1.537216 1.217399 -1.078644 1.516622 -1.613511 -0.220149 -0.437014 0.632486 -1.577302 -1.891666 0.031782 -0.727588 -0.471226 -1.571776 -0.717628 1.716657 0.719434 0.709790 -1.039636 0.127572 -3.004978 -2.349161 0.744692 -0.290410 1.280826 0.335735 0.736689 -4.369312 1.880945 2.643287 -0.375716 -3.125943 0.237856 -0.994766 -0.753652 0.049309 -0.391748 0.932528 0.661416 0.828307 0.012041 0.646848 0.369666 -0.123122 0.905813 3.552660 0.014072 2.492328 2.621488 -0.002430 0.496664 0.394929 0.807414 -0.120024 1.393920 1.527310 -0.712950 -0.759316 -0.166652 -0.398339 -1.920109 1.073686 0.522317 -1.137495 -1.133583 -0.912920 -1.743215 -0.475029 -0.894711 1.055535 3.614057 -1.440399 3.298998 1.252320 2.021473 -0.250371 1.874442 -0.126172 2.337644 1.065417 -1.561178 0.174498 -2.108331 -1.102141 0.165898 0.903918 -1.694529 -0.821535 1.326914 -2.379805 -2.676148 1.531225 0.058704 -0.575954 -1.387394 -0.015671 1.214615 0.888732 -1.048028 -2.281079 -1.539118 1.319400 -1.030521 -1.208836 -0.297973 0.373098 -0.289683 -0.148692 -2.197273 -0.095742 1.768369 -1.411642 -0.705338 2.110735 -0.791879 1.221479 -0.573363 0.020897 -0.306389 1.262759 0.669813 0.728540 0.624134 -0.717689 -2.756908 0.523825 0.537390 1.032380 -1.097230 -0.355526 0.798449 1.045696 0.311845 1.190604 -0.822272 1.595349 1.454839 -0.312928 -1.426911 -2.268649 -0.560261 -2.166220 0.518067 -1.477234 -0.942312 0.623565 1.964359 0.830488 0.527480 2.124946 -1.662285 1.642221 -0.169513 0.345802 0.384257 -0.390372 0.809132 -1.196322 -1.944260 1.403067 1.495998 0.728426 0.820701 -0.844288 -0.012886 -1.155266 -1.817838 1.311810 0.568357 0.151322 2.299828 1.423645 3.629340 -2.047137 0.305788 0.000807 -0.474177 0.294115 -0.368486 -2.537894 1.071445 0.441455 0.750138 2.852138 -0.142381 -1.040358 0.620788 -0.040215 0.301807 -1.671853 1.797963 -1.708777 -0.290740 -1.026743 0.076277 -1.108253 -1.050308 -1.443776 -0.428386 2.994481 -1.778390 -2.557677 1.696864 -0.567653 1.060041 -3.302978 1.946893 -1.288229 2.068819 -0.614330 -0.640689 -0.115818 0.257200 -0.554582 0.373367 1.257294 -1.595671 1.182219 2.112611 0.462366 0.413145 0.689925 1.094171 -0.637449 -0.075274 -1.516446 1.640063 -0.070156 -0.816399 -0.392255 -1.061889 1.312306 -0.094257 -0.100549 0.903345 1.777448 -0.072507 0.336757 1.716424 0.303540 -1.392085 0.848613 0.211271 1.567025 -1.199257 -0.466722 -0.876894 0.394081 0.137791 0.897277 -2.710117 -1.986266 -2.113629 -2.530808 -0.863827 0.118804 1.023352 0.499105 0.126402 -2.904315 -1.748379 1.923976 -0.861694 1.570121 1.560778 1.554595 2.019844 1.537691 -0.155152 -0.546705 -0.379722 0.359281 -1.259286 -0.512371 -1.002286 1.261277 -1.296234 1.659260 1.670495 -0.121715 1.023972 -0.053428 1.869640 -1.505828 3.232048 1.598974 -1.951346 0.562278 1.335231 2.522344 -1.225397 -1.668607 -PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.976014 -0.931270 1.009113 0.830547 0.420009 0.609852 0.586880 -0.468395 1.012128 1.046002 0.023285 0.343935 -0.819909 0.046959 -0.068260 0.486487 -0.248227 -0.884097 0.067933 -0.569611 -0.449697 -0.778581 -0.136807 0.136316 0.190312 -0.711440 -0.506900 -0.319548 -1.278454 -0.936241 0.364526 -0.291029 0.535375 -0.862275 -0.093378 -2.602595 0.677018 0.785269 -0.303197 -1.105250 0.130073 -0.654223 0.327795 0.244860 -0.081597 0.103019 0.300870 -0.203044 0.408574 0.259887 0.763869 0.093221 0.024094 2.248451 -0.647009 0.903029 0.541337 -0.038627 -0.353252 0.484797 0.253284 -0.114744 0.816820 0.598762 -0.432725 -0.309582 0.014916 -0.143950 -1.130269 0.462851 0.021377 -0.469254 -0.360042 -0.152869 -0.605018 -0.644299 -0.430808 0.217937 1.430843 -0.676733 1.251897 0.382960 0.790953 0.248809 0.844484 -0.019942 1.052085 0.152167 -0.807070 -0.094696 -0.443260 0.133318 -0.124343 0.734485 -0.256613 -0.579930 0.518845 -0.090841 -1.115926 0.735581 -0.068458 0.254322 -1.476729 -0.323457 0.635681 0.566898 -0.801764 -1.277359 -1.155590 0.524322 -0.308357 -0.464540 0.226646 -0.872622 -0.249857 -0.545613 -0.799664 -0.384044 0.486823 -0.778138 -1.137658 1.076810 -0.658681 0.457824 0.009524 0.332539 -0.250563 0.575207 0.125495 0.516477 0.107518 -0.371744 -2.219969 -0.405816 0.152143 0.854548 -0.049187 0.016611 -0.162858 0.235993 -0.272107 0.515589 -0.072887 0.793085 1.161660 -0.092892 -0.436887 -0.561535 0.643866 -0.967439 0.306001 -0.721951 -0.022023 0.022222 0.812615 0.432996 0.360484 1.283061 -0.665812 1.002443 -0.297793 -0.180402 0.498202 -0.242647 0.567367 -0.507340 -0.808569 0.134029 0.942100 0.221191 0.248644 -0.475827 -0.078710 -0.562609 -0.607182 -0.059711 0.311516 -0.166775 0.726182 0.454701 2.130481 -1.711865 0.318041 0.130537 -0.154140 0.328154 -0.372903 -1.076560 0.204147 0.387140 -0.423407 0.894837 -0.109134 -0.927075 0.225248 -0.207955 0.296671 -0.629584 0.484628 -0.757449 -0.290929 -0.400226 -0.338466 -0.666511 -0.438273 -0.479822 -0.111546 1.083920 -0.439066 -1.071576 0.793754 -0.209547 0.177449 -1.653428 1.509596 -0.552013 0.545196 -0.940015 -0.129625 -0.379266 1.335769 -0.031499 0.391378 0.524000 -0.747621 0.731115 1.505539 0.253856 0.588241 0.199999 0.766029 0.067007 -0.225878 -0.463510 0.965194 -0.206537 -0.373096 -0.015011 -0.530702 0.736945 0.161786 0.105993 0.282609 1.005791 -0.553188 0.184758 1.081680 0.196094 -0.398062 0.528541 0.011022 0.933488 -0.350158 0.106928 -0.358091 0.155022 -0.121610 0.368011 -1.067641 -0.687640 -0.316807 -1.001293 -0.006075 0.789454 -0.108739 0.161755 0.245147 -1.418540 -0.387089 0.595236 -0.499506 0.728832 0.368544 0.665403 0.841897 0.940090 -0.226631 -0.451235 -0.204822 -0.409080 -0.586988 -0.473056 -0.141524 0.443467 -0.801914 0.790745 0.223139 0.081982 0.124715 0.471539 0.403886 -0.562580 1.344470 0.669677 -0.122062 0.677903 0.753580 1.770901 -0.631237 -0.515422 -PE-benchmarks/sort-array-wave-form-2.cpp__sortInWave(int*, int) = -4.358102 -6.980442 6.546439 6.187305 1.700900 5.202957 1.548822 -3.113570 2.829388 6.247664 -1.954969 4.394767 -3.828588 -2.104817 0.338447 1.321524 -1.392792 -4.295183 0.050541 -2.075565 -0.906401 -3.571478 -4.119895 5.880370 1.043079 -2.007259 -2.496996 1.323252 -8.040824 -8.537733 -1.843470 -0.099304 3.195532 -2.523241 2.154971 -8.616849 4.948944 8.122189 -0.461985 -7.057119 -0.057105 -2.118893 -1.739364 2.494831 -2.419146 2.503283 1.892804 -2.334390 -0.731417 1.585097 2.958004 -0.068771 3.843937 8.002094 1.516147 7.409167 6.547214 -0.232794 1.547980 1.445216 1.683988 -0.911837 4.115148 2.482657 -1.760990 -1.252894 -0.007042 1.855257 -4.085000 1.389956 0.724080 -5.087522 -1.223496 -2.562560 -5.002186 -2.508372 1.957666 0.130835 8.002735 -2.554313 8.785167 4.335855 4.331502 0.454584 6.357117 -0.929154 6.734329 2.359412 -4.340359 1.684912 -2.702097 -2.246569 0.497130 5.582324 -5.118939 0.153138 3.267030 -6.459692 -7.726468 5.258839 -0.713301 -1.663315 -5.498373 -1.723456 3.026272 1.453531 -2.625928 -6.241836 -4.701237 4.538930 -3.098292 -4.059300 -1.436198 -0.590055 0.561186 1.881852 -4.776687 -0.318197 5.605792 -3.695086 -3.672352 5.891685 -0.968164 4.281087 -1.499880 0.561198 -0.420168 1.186838 1.380881 2.638769 -0.740139 -2.395534 -8.281655 -0.869140 -0.126653 -2.292064 -2.249398 -1.080071 2.884487 2.929665 2.307453 6.877803 -2.480478 5.860137 3.666160 1.376863 -2.117712 -5.940513 -2.037949 -4.561394 1.365517 -2.993237 -4.154007 0.707929 4.728319 -0.213705 0.053762 4.039316 -1.577179 3.694701 -0.445483 0.273149 0.777816 -4.732245 1.868038 -3.102022 -5.209512 3.933291 5.931693 2.517718 2.324657 -2.052313 -0.157714 -1.085427 -4.876196 1.908111 -0.167673 0.745505 6.716383 3.667296 13.363952 -4.290654 1.339230 -1.650676 -1.154359 1.993816 -2.438176 -6.154101 0.387853 1.863339 0.926021 8.618249 -0.508068 -3.008088 1.487950 -0.046017 0.802032 -5.070661 6.593930 -4.786623 0.937650 -1.403319 -2.352710 -3.418217 -2.746087 -4.370608 -0.819761 7.362508 -4.755216 -6.800051 3.863027 0.377622 1.631926 -8.360263 5.035865 -2.946703 5.872824 -2.426515 -2.361224 -0.136412 2.754707 -0.430696 1.647245 3.352939 -5.350883 3.769296 4.172329 0.370445 1.847797 1.606109 1.850643 -1.560543 -1.442848 -4.842285 4.478136 0.312735 -1.704377 -2.379269 -2.937951 4.140553 0.888202 -1.010953 -2.409788 4.476690 -3.249767 -2.535177 5.376977 -0.975158 -2.936186 2.684105 0.947182 3.728845 -3.240026 -0.845518 -3.120528 0.453700 1.788150 2.242566 -7.203760 -1.445003 -4.923073 -5.182249 -2.469815 3.914153 2.163724 2.716534 0.289240 -7.245390 -4.655446 7.697077 -2.123533 3.093241 3.760772 5.399170 5.401611 3.217172 2.726297 -1.750806 -3.068587 -1.084861 -3.861791 -2.194218 -0.278722 2.801850 -2.593373 5.750505 1.747546 0.886899 3.106068 1.246676 0.627235 -4.084053 6.900766 3.907322 -4.051402 1.025383 3.971881 5.664741 -7.479770 -4.029113 -PE-benchmarks/sort-array-wave-form-2.cpp__main = -1.317363 -3.294968 3.579066 3.236659 0.477743 2.092739 0.845462 -1.547933 1.933858 2.080774 -1.308537 2.035738 -2.082521 -0.367744 -0.230006 1.025442 -1.692427 -2.370196 0.154253 -0.774256 -0.517131 -2.011854 -0.953263 2.214634 0.850233 0.558582 -1.343123 0.380499 -3.656750 -3.581412 0.368106 -0.435995 1.679927 0.094612 0.822919 -4.960183 2.489702 3.369302 -0.420201 -3.867356 0.226700 -1.237118 -0.847674 0.197956 -0.573178 1.330748 0.970525 0.486424 0.045125 0.908537 0.662851 -0.191351 1.419280 3.956985 0.087686 3.246611 3.223937 -0.024134 0.520701 0.415890 1.002895 -0.221785 1.954489 1.912590 -1.013401 -0.966003 -0.198769 -0.102606 -2.433858 1.239330 0.543432 -1.358157 -1.339534 -1.006574 -2.012769 -0.695858 -0.098069 0.976543 4.398627 -1.535372 4.202394 1.777069 2.398163 -0.201943 2.412737 -0.259259 2.927567 1.326023 -2.141634 0.211395 -2.242960 -1.477959 0.219594 1.605944 -2.025172 -0.645105 1.480005 -2.954444 -3.452558 1.962525 -0.073121 -0.623553 -2.127673 -0.223672 1.721395 1.099978 -1.166470 -2.949877 -1.905137 1.518026 -1.401699 -1.721158 -0.544638 0.194218 -0.314596 0.244724 -2.740687 -0.374876 2.245088 -1.955753 -1.017664 2.565821 -0.827239 1.682173 -0.734943 0.121876 -0.271998 1.324328 0.878566 1.142950 0.645701 -0.956389 -3.381591 0.463431 0.578253 0.450724 -1.351572 -0.487911 0.958934 1.259183 0.468726 1.806403 -1.144541 2.201280 2.026870 -0.134344 -1.619764 -2.839282 -0.781477 -2.609961 0.840539 -1.844990 -1.258800 0.590482 2.468212 0.396408 0.687816 2.662882 -1.903861 1.952811 -0.260583 0.486660 0.608201 -0.715514 1.047899 -1.487004 -2.412518 1.939910 2.295310 0.850242 1.022652 -1.133837 0.074491 -1.261348 -2.315012 1.606567 0.381225 0.227890 2.920936 1.544098 5.155167 -2.289687 0.544474 -0.060226 -0.384867 0.568617 -0.549412 -3.234692 1.148762 0.533283 1.027011 3.608060 -0.164465 -1.569557 0.761985 0.035715 0.337189 -2.238591 2.520165 -2.268944 0.001929 -1.143137 -0.145545 -1.397562 -1.408623 -1.729610 -0.128647 3.712631 -1.888377 -3.256394 1.990241 -0.529573 1.261463 -4.230812 2.220612 -1.672108 2.551503 -0.962896 -0.914656 -0.030627 0.392063 -0.518482 0.308299 1.680906 -1.958625 1.624030 2.309677 0.528612 0.536026 0.915159 1.192520 -0.570319 -0.193129 -1.852357 1.958269 -0.000348 -0.785163 -0.684191 -1.380574 1.786425 0.031996 -0.385745 0.537677 2.339863 -0.559836 0.221870 2.159363 0.284681 -1.744214 1.195644 0.321107 2.038150 -1.494303 -0.515914 -1.259284 0.413118 0.188399 1.409252 -3.424734 -2.153290 -2.316733 -3.129230 -1.278234 0.790154 1.300890 0.757507 0.255421 -3.573739 -2.069874 2.842767 -1.016959 2.145648 1.858641 2.085615 2.479433 1.807778 0.130987 -0.973574 -0.819804 0.093004 -1.682636 -0.744302 -0.943295 1.570085 -1.453115 2.241461 1.774478 -0.190427 1.095372 -0.240498 1.856850 -1.825943 3.881231 2.014410 -2.209826 0.758794 1.465974 3.131994 -2.060976 -2.075512 -PE-benchmarks/tower-of-hanoi.cpp__towerOfHanoi(int, char, char, char) = -2.966815 -4.369397 5.160789 3.780392 -0.583318 2.949920 0.710360 -1.981065 2.455373 -1.376527 -1.095921 2.607594 -3.543350 -0.472530 -2.166973 -1.374599 -3.985424 -3.988640 -0.859887 -1.521471 -1.191415 -2.886065 -2.028203 4.721301 0.437343 1.746858 -2.683891 1.216472 -6.864762 -1.117844 2.023960 0.069406 2.622577 -0.189378 1.668008 -10.748702 2.553050 4.946597 -0.521822 -5.748388 0.770477 -3.690046 -0.464378 -2.013959 -3.068288 0.406939 0.675141 0.793720 -0.043101 -1.287739 -1.969798 1.101701 -1.130687 7.810118 -0.213688 3.959751 4.675958 0.368716 -0.149336 0.044749 0.907474 -0.222396 2.707018 1.755238 -3.234243 -1.314601 0.837247 -1.629696 -3.312255 2.472957 1.356931 -1.424889 -0.982771 -1.506580 -7.031792 -1.503716 5.489235 2.732982 5.679095 -3.634540 4.816147 0.926125 3.418021 1.505288 4.300510 0.121820 5.195352 1.348825 -2.032754 -0.090253 -6.507121 -0.364980 -0.559116 0.814941 -2.623757 -4.094948 2.190172 -8.478453 -5.121060 1.955532 -0.413941 -1.478499 -3.837382 -1.301397 2.878291 2.122169 -2.072603 -3.922758 -2.885408 3.981556 -2.174082 -1.556959 1.544866 1.201429 0.213453 -3.326455 -4.361814 0.812245 3.427878 -1.549087 -0.896017 5.312165 -3.138880 2.244694 -0.471111 0.203530 -1.375984 3.207492 0.186729 -0.865235 -0.796880 -2.069711 -2.126905 -2.366905 -0.549544 4.628607 -2.815427 -2.084390 1.185819 1.839044 -0.279626 -0.173064 -2.121254 1.697201 0.790167 -1.113044 -1.939918 -4.458901 -1.702262 -5.302311 -1.156945 -1.982860 -3.051324 3.667194 3.607894 3.498699 0.756116 4.891730 -1.518154 2.871281 0.182131 -1.103646 1.010149 -1.299122 1.589176 -2.215943 -4.283624 2.506840 0.271329 3.595355 0.651112 -1.113066 -0.650407 -2.056232 -4.522944 1.252280 2.555490 2.206208 4.708056 3.761139 2.064812 -6.516549 1.124002 -0.239948 -1.742924 0.829394 -1.261024 -3.846321 0.743642 1.886709 -0.646859 5.841060 -0.770869 -3.038998 1.214152 0.932388 1.585890 -3.719946 1.561030 -3.180905 -0.174373 -3.340917 -1.043166 -2.657626 -1.839633 -4.935318 -4.511752 5.557736 -5.490022 -6.593499 3.894204 1.148577 4.942903 -7.987559 -0.615607 -1.946273 6.987496 0.006887 0.058277 0.136047 -0.866653 -1.787414 1.625163 2.074943 -4.102902 1.680462 3.407735 1.342049 1.856282 0.696778 2.400376 -0.441698 0.108704 -3.976470 2.566871 -0.892468 -3.186315 0.636416 -2.037614 2.411567 0.929823 1.712964 1.619940 3.788426 2.288280 2.077716 5.205311 0.496925 -1.955424 -0.561745 -0.420218 2.343473 -1.920407 -0.879501 -2.230390 2.668689 0.677346 0.931566 -5.277099 -6.130511 -6.504879 -6.947386 0.372921 -1.450430 -0.154179 1.429243 0.099959 -6.100594 -2.564622 2.503476 -1.800080 7.838753 2.879195 2.450721 4.313659 3.935614 -2.720070 -0.901597 3.177262 1.313275 -2.690844 -0.387472 -4.484896 3.145345 -2.332161 3.579528 4.521394 -1.082683 2.888892 0.076189 2.873673 -2.983933 6.775740 3.143597 -5.375571 0.431923 2.051050 4.070278 0.269685 -3.171555 -PE-benchmarks/tower-of-hanoi.cpp__main = -0.758248 -1.356436 1.535491 1.172892 -0.014638 0.710695 0.345215 -0.365813 0.927350 -0.095212 -0.382021 0.740259 -1.015283 0.005670 -0.357306 0.010280 -1.096959 -1.280329 0.036096 -0.271685 -0.377194 -0.878007 -0.332076 0.968670 0.222809 0.458886 -0.749716 0.052381 -1.762879 -0.303420 0.752796 -0.280506 0.805150 0.163427 0.371248 -3.102353 0.715736 1.066387 -0.196731 -1.701892 0.113740 -0.886716 0.119330 -0.670261 -0.543398 0.216918 0.494090 0.399446 0.114883 -0.045468 -0.425008 0.008609 -0.251090 2.237393 -0.203303 1.006053 1.267553 0.011183 -0.057262 -0.071165 0.453547 -0.200941 0.845020 0.744287 -0.796723 -0.391418 0.002011 -0.673006 -1.142744 0.681637 0.402522 0.012352 -0.533508 -0.313106 -1.494908 -0.448009 0.630182 0.836115 1.889497 -1.101023 1.509433 0.446596 1.283271 0.339520 0.997061 0.146712 1.219456 0.469349 -0.836412 0.034077 -1.669934 -0.222613 -0.214114 0.158041 -0.483607 -1.051401 0.584526 -1.642032 -1.341969 0.702543 -0.102489 0.015679 -1.081402 -0.254310 0.887493 0.829087 -0.754552 -1.174480 -0.874834 0.629554 -0.496875 -0.447046 0.430315 0.189391 -0.192171 -0.962578 -1.277539 -0.137744 0.846822 -0.785587 -0.185909 1.342363 -0.978984 0.705934 -0.184101 0.007107 -0.345621 1.079438 0.429382 -0.036509 0.082282 -0.707538 -1.120134 -0.451835 0.090550 1.669367 -0.619235 -0.446849 0.206586 0.449360 -0.094393 -0.191641 -0.252987 0.479356 0.576463 -0.390361 -0.793032 -1.267804 -0.184627 -1.433821 -0.029237 -0.816061 -0.316379 0.996383 1.056790 0.906359 0.385584 1.661656 -0.757642 1.036372 -0.195715 -0.131091 0.296041 0.051753 0.532795 -0.589366 -1.027599 0.640417 0.396880 0.696727 0.409654 -0.685902 0.012210 -0.755772 -1.119842 0.411446 0.726563 0.277027 1.105450 0.719649 0.635590 -1.760219 0.156147 0.077909 -0.172785 0.144119 -0.184015 -1.239814 0.538532 0.277529 -0.213934 1.186556 -0.167352 -1.005547 0.434037 0.076172 0.329849 -0.847041 0.378585 -0.861260 -0.165972 -0.914581 0.073295 -0.833648 -0.498282 -1.043216 -0.749356 1.584346 -1.102220 -1.569878 0.844910 0.168999 1.221811 -2.108135 0.333870 -0.644878 1.729150 -0.226006 -0.130890 -0.065539 -0.021056 -0.245942 0.164711 0.703442 -0.852286 0.384047 1.074747 0.411008 0.397593 0.422300 0.767727 0.044426 0.004513 -0.687713 0.642607 -0.283269 -0.696329 0.218824 -0.570280 0.812125 0.221524 0.302632 0.676114 1.104014 0.470993 0.843683 1.212356 0.177101 -0.707257 -0.152754 -0.053183 1.113194 -0.587877 -0.093585 -0.707335 0.724241 -0.076501 0.357550 -1.391675 -1.766094 -1.421833 -1.704356 -0.250575 -0.088314 -0.058011 0.223454 0.159065 -1.577382 -0.569709 0.459968 -0.531727 1.877016 0.743886 0.595924 1.253313 1.065510 -0.842855 -0.657148 0.746984 0.227864 -0.716071 0.030483 -1.178580 0.710170 -0.898543 0.843354 1.222805 -0.335301 0.410144 0.043662 1.158721 -0.741703 2.042304 0.992998 -1.364878 0.306582 0.616984 1.520147 0.074005 -0.907191 -PE-benchmarks/magic-square.cpp__generateSquare(int) = -6.516472 -12.485417 9.199860 8.518238 3.281949 8.953620 7.851231 -2.560520 8.194814 7.410069 -4.132215 7.400309 -5.072518 -4.241415 -0.198551 -0.141016 -1.849846 -7.746049 2.997923 -0.659504 1.161385 -9.817153 -6.955470 10.521842 0.480816 -0.071270 -2.663204 0.634712 -15.779171 -9.910863 2.579401 -0.110697 4.986067 -1.535407 4.307721 -20.408188 5.846484 12.671260 0.598206 -14.762625 -0.422443 -3.243524 -2.221511 4.663015 1.752207 6.068972 4.071365 3.560620 -2.245901 2.548567 2.176791 -1.369936 4.989053 13.275868 0.456967 11.228080 10.523955 -0.168463 4.742615 1.022855 2.555028 -2.238741 6.089184 8.638843 -3.927969 -0.385277 -1.046638 2.751508 -11.049198 1.604889 3.592913 -5.171622 -6.836759 -1.082871 -7.242159 -2.570232 -7.474423 0.729803 16.253085 -1.610224 19.861830 6.473500 14.176530 -1.792294 9.743999 -0.938929 8.648791 3.714350 -11.562235 1.681849 -15.026603 -3.818948 -0.972603 5.118986 -7.490446 1.365264 3.287585 -5.187068 -10.632231 7.224846 -2.478040 -2.478903 -5.704744 0.741709 6.124296 4.043889 -3.392581 -12.396788 -11.307619 8.509718 -7.126204 -5.629736 -0.961709 0.176451 0.449814 -3.765080 -4.887786 -0.709858 10.155753 -5.311077 -3.889252 9.141840 -7.026904 7.033782 -2.126761 -0.857438 -0.079980 1.301991 5.078621 1.111801 5.022204 -12.207596 -21.437723 2.823246 -1.117560 7.467816 -5.085493 -3.127713 5.474240 4.863484 6.204757 7.752299 1.009653 5.979225 6.064504 0.474646 -2.765063 -11.080986 1.182395 -5.089109 5.517212 -3.389065 -0.059523 0.818831 7.181178 -0.141344 0.453809 4.839135 -7.211878 10.172273 -0.437825 1.774033 -0.533847 1.633824 1.681942 -4.040509 -7.209123 5.811902 8.269276 4.444162 3.018781 -3.373816 -0.474112 -0.588734 -7.579562 4.334425 1.347831 3.934924 10.961750 5.454163 17.309832 -9.607813 -1.076235 -3.042188 -1.849007 1.713357 -3.283557 -9.153900 7.163000 2.286589 2.019866 13.159285 -1.811444 -3.070440 3.540035 1.806239 1.294615 -7.930166 10.213835 -7.713865 -3.605830 -2.473104 -3.381320 -6.040543 -4.812974 -8.369410 2.063883 11.710798 0.466081 -11.798213 3.244198 -7.083653 2.238450 -13.319347 11.394513 -4.643834 3.244243 -4.800753 -2.268102 -1.597203 6.432589 0.008032 0.231061 4.893866 -9.759739 7.674972 9.417529 0.920033 0.572687 3.739004 1.797746 -1.624247 -3.920737 -7.201451 4.267910 -0.659402 -0.820049 -1.487785 -4.217351 11.810720 2.776832 -2.699089 1.785153 9.814622 -3.837035 -2.308804 8.213155 -2.983214 -4.473703 0.878890 0.645431 6.356704 -4.435349 -2.146228 -7.211116 -0.383874 3.304456 1.605730 -10.846836 -3.711790 -2.690360 -11.335490 -3.041409 1.626708 3.222374 5.835839 1.739809 -17.951571 -6.383585 4.276888 -2.199696 1.758567 5.568529 5.851375 8.824392 3.876977 1.908275 -2.473741 -3.173356 -0.690729 -7.546376 -2.842171 -1.228531 3.375438 -8.501691 9.695147 3.547057 0.400746 4.011029 -0.570615 8.183240 -6.322108 15.764789 7.385129 -7.681306 -0.832756 1.123729 12.758827 -10.326738 -6.402763 -PE-benchmarks/magic-square.cpp__main = -1.534051 -2.972911 2.256504 2.077271 0.756506 1.971977 1.805503 -0.532655 2.101109 1.706684 -0.958858 1.613586 -1.406760 -0.779884 0.031679 0.194260 -0.615972 -2.005327 0.782533 -0.133544 0.104977 -2.345419 -1.349206 2.173100 0.187240 0.045017 -0.690963 -0.028266 -3.594426 -2.042099 0.846513 -0.275311 1.259815 -0.106675 0.891900 -4.976569 1.359338 2.664406 0.040457 -3.482086 -0.129623 -0.886658 -0.208923 0.736138 0.431760 1.337320 1.112905 0.942564 -0.291784 0.643781 0.478947 -0.508439 0.949993 3.314332 -0.121968 2.510304 2.372731 -0.062273 0.905037 0.197273 0.720884 -0.573666 1.550658 2.133171 -1.019124 -0.152796 -0.327774 0.258470 -2.721040 0.531671 0.790183 -0.810550 -1.722503 -0.244946 -1.559703 -0.689187 -2.025092 0.412168 3.987493 -0.680657 4.540161 1.547590 3.379017 -0.344989 2.173864 -0.119621 2.005772 0.876655 -2.772213 0.389483 -3.384605 -0.884742 -0.298985 1.031117 -1.470398 0.080032 0.774658 -1.014552 -2.508437 1.722585 -0.572528 -0.217231 -1.492290 0.197477 1.535781 1.164676 -1.024374 -2.962296 -2.569452 1.646092 -1.513927 -1.267909 -0.074102 -0.050857 -0.127036 -1.112305 -1.354340 -0.471812 2.192699 -1.558826 -0.854107 2.177231 -1.756137 1.687726 -0.455150 -0.212725 -0.047383 0.700610 1.333598 0.341266 1.235985 -2.738952 -5.016598 0.578620 -0.077431 2.187205 -1.045769 -0.601107 1.109947 1.043264 1.171866 1.432698 0.340251 1.349294 1.602557 -0.064984 -0.866159 -2.529788 0.412944 -1.412551 1.312738 -1.072364 0.264470 0.346210 1.780280 0.205240 0.291407 1.640121 -1.886059 2.450860 -0.291460 0.415331 0.012451 0.646368 0.571595 -0.975786 -1.666460 1.285188 1.995163 0.865338 0.832682 -1.080859 -0.035089 -0.436190 -1.725221 0.988689 0.460081 0.662541 2.432876 1.097852 3.741357 -2.439541 -0.175137 -0.503430 -0.211192 0.386246 -0.648447 -2.323481 1.821996 0.407800 0.294361 2.670329 -0.409927 -0.974689 0.866275 0.241910 0.329002 -1.786191 2.109092 -1.812991 -0.864838 -0.786126 -0.440458 -1.464676 -1.169423 -1.733173 0.586684 2.794056 0.120822 -2.602188 0.778179 -1.473453 0.688283 -3.162450 2.757314 -1.181320 0.950916 -1.239658 -0.589465 -0.414875 1.533791 0.166751 -0.097439 1.252408 -2.025613 1.656728 2.291495 0.310670 0.192769 1.050510 0.656230 -0.175171 -0.874827 -1.411669 1.028095 -0.192105 -0.204341 -0.170962 -1.057026 2.731717 0.640440 -0.583907 0.771666 2.414565 -0.816966 -0.075434 1.862298 -0.564369 -1.145670 0.162346 0.143078 1.847150 -1.083159 -0.342339 -1.710999 0.055567 0.474848 0.481794 -2.533296 -1.279292 -0.589297 -2.565761 -0.879249 0.501457 0.630306 1.191779 0.521952 -4.008047 -1.346065 0.836506 -0.649653 0.667191 1.211128 1.328005 2.146440 1.112170 0.131763 -0.912328 -0.508899 -0.182155 -1.754339 -0.491637 -0.475409 0.760912 -2.135724 2.162678 0.952927 -0.010089 0.656495 -0.089018 2.184178 -1.449646 3.792653 1.841998 -1.757159 0.097726 0.460398 3.245946 -2.047623 -1.539585 -PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -3.624312 -5.776784 4.009642 3.547112 1.715601 3.951840 2.526119 -1.138293 3.533745 2.943518 -2.772244 3.525195 -2.891968 -2.262796 0.134628 -1.035908 -0.843120 -3.645794 1.156552 -0.048695 0.499681 -4.373905 -3.768433 5.178679 0.047212 0.422374 -1.096289 1.400035 -8.040269 -4.251932 0.954102 -0.100617 2.173275 -0.602154 1.564894 -8.153412 2.469651 5.818032 0.155177 -6.903527 -0.183275 -2.132326 -1.566721 1.609444 0.832302 2.242147 2.099713 1.319793 -1.505122 0.281983 0.291599 -1.498668 1.233251 5.776126 0.225591 5.862512 6.336109 -0.092957 1.569030 0.763493 1.046803 -1.219771 3.273077 4.169053 -3.136180 -0.028519 0.942385 0.917580 -4.903769 0.800454 1.305068 -2.456199 -1.877426 -1.520629 -3.214840 -0.823029 1.308490 0.040990 7.477947 -0.517528 8.752880 3.222602 5.896166 -0.454869 4.556083 -0.638060 4.548863 1.704351 -5.132048 -0.136449 -7.225714 -2.015423 -0.634604 3.860561 -2.941233 3.303553 1.647141 -3.903001 -5.373606 2.528628 -1.503947 -0.976482 -3.464341 1.127121 2.912426 1.475711 -0.548675 -5.306698 -4.511170 3.804616 -4.277136 -2.549115 -1.308409 0.490219 -0.469444 -0.719557 -2.680159 -0.575451 5.080171 -2.834056 -2.140871 4.112858 -3.604368 3.853209 -1.099278 -0.214996 0.339531 0.030753 2.282687 -0.089492 3.027602 -5.403981 -8.101493 0.207010 -0.711675 3.623358 -2.975666 -0.908841 3.598398 1.588984 2.650349 3.067248 -1.295448 3.206248 1.729912 -0.231264 -1.014244 -5.530621 0.096965 -2.959074 1.757686 -1.708991 -1.211104 -0.380892 3.437930 0.465030 -0.124349 3.786583 -3.535038 4.362340 0.210803 0.800721 -0.423199 -0.487131 1.067502 -2.334778 -3.419097 2.508134 3.852481 0.693102 1.640376 -1.731238 -0.608984 -1.362117 -4.241648 2.452575 -0.170835 2.063745 5.453328 2.379746 9.772260 -5.444827 0.644815 -1.500386 -0.347930 0.707754 -1.230903 -4.182995 2.508136 1.061652 2.348088 6.793159 -0.040291 -2.215469 0.247062 1.154053 0.321021 -3.618416 5.514363 -3.606199 -1.198477 -0.771148 -1.379548 -2.525320 -2.723573 -3.945899 0.901239 5.559565 -0.306381 -6.541506 1.716583 -1.414604 2.061882 -6.994832 4.130155 -2.574039 3.979070 -2.163915 -1.025346 -0.514255 1.426210 0.158689 0.860278 2.209897 -4.161832 3.937296 3.231888 0.543626 1.370960 1.868171 0.313845 -0.891341 -2.179340 -3.329900 1.396125 0.425408 -1.224904 -0.978549 -2.175710 5.329753 1.604199 -1.603248 0.264580 5.583995 -1.885855 -0.622059 3.969777 -1.932594 -2.139933 0.640373 0.815288 3.248978 -1.655198 -1.192488 -3.254544 -0.180375 2.106161 1.512519 -5.045254 -2.425770 -0.370557 -6.174131 -1.714145 0.601007 1.439009 3.169279 1.294862 -7.692504 -2.461859 2.069146 -0.902094 4.917063 1.970661 3.558582 3.521730 1.643152 0.642489 -1.882061 -0.769056 0.063005 -4.359004 -1.431459 -0.987755 1.694163 -2.264743 4.580684 1.531146 0.178913 1.551114 -0.323701 2.253957 -2.792531 6.992004 3.593586 -4.114086 -0.262868 -0.076739 6.293484 -5.164730 -3.121784 -PE-benchmarks/optimized-naive-algorithm.cpp__main = -0.078893 -5.442783 9.382018 6.412964 0.853747 3.659468 6.783213 -7.150832 8.155277 3.249554 -2.006300 -0.712566 -8.118048 -0.091778 -3.677012 2.598465 -5.399493 -5.806010 -0.990709 -4.271553 -1.137672 -7.444195 5.737662 0.847251 4.057567 1.442696 -1.774426 -2.996107 -7.669395 -5.867645 8.508776 -0.835185 3.538726 2.378147 -1.404579 -11.773133 6.425137 5.374897 -2.757983 -7.453425 2.781060 -0.461384 -3.560456 1.854667 1.761164 1.471248 -0.152143 7.856117 3.474217 3.724725 3.749164 -1.938567 1.053998 10.405910 -4.752275 6.626933 4.386372 2.020352 0.482131 5.595043 1.310723 1.992744 2.928284 7.926351 -0.761341 -1.512422 1.773976 -3.549048 -10.013725 7.164685 -0.725465 -2.064175 -4.295437 -1.166683 -1.710979 0.818100 -5.377549 4.453024 12.070766 -4.231992 8.829802 1.816939 3.491901 -5.075548 0.557985 -1.464704 3.473784 2.083483 -4.076981 -3.443249 -8.956522 -2.569324 -0.033322 -1.044785 -2.608354 -6.635817 5.625897 -3.407951 -7.999465 1.846299 1.998541 -1.730745 -4.186950 3.098940 3.160521 2.072602 -4.045024 -8.422082 -4.509958 3.371665 -3.545050 -0.683941 -0.436217 1.358199 -3.455907 -2.684917 -6.376985 -2.871717 0.703358 -6.183086 -3.052072 5.024021 -3.876673 3.223288 1.108173 1.634737 -0.875567 3.423786 1.402411 3.210874 6.911295 0.575917 -5.356432 1.706607 3.994034 7.602054 0.314564 1.371410 -0.376620 2.579467 -3.358418 1.898317 -2.211749 0.417206 4.633602 -4.290834 -4.849313 -1.181850 2.029630 -9.228177 3.083417 -6.187778 -1.707072 -0.252278 5.468719 3.404138 2.847095 9.548639 -8.882497 4.409894 -0.536762 0.190684 0.223113 2.206491 3.946843 -2.846375 -7.262464 0.192081 2.572048 0.188665 0.629032 -2.762997 -2.182342 -7.451483 -5.004994 0.722614 1.481672 -3.674565 2.215441 4.519593 6.348011 -7.996343 1.439392 4.376382 -0.501381 0.170097 0.510464 -10.809960 4.707310 0.120969 3.281913 6.365603 0.007104 -2.799473 3.065456 -2.957509 1.017973 -4.785782 1.352877 -6.114500 -2.659999 -5.833915 2.541998 -1.193346 -4.232791 -1.062666 1.418025 7.098750 -0.641204 -5.887097 8.488339 -2.093174 1.356426 -8.806623 8.355715 -2.666717 1.847331 -1.680848 -0.439588 -1.508812 2.000277 -1.267042 -1.483067 0.932556 -1.779775 7.114979 11.375029 1.410030 1.076607 1.926482 6.293254 -2.719282 -0.032210 -5.015988 5.813331 -1.253236 -6.048689 0.829417 -3.450331 2.913308 -4.589350 -0.199617 8.882603 7.271804 -0.747091 5.510812 1.736335 4.431884 -3.268298 5.401429 2.821007 4.804836 -2.280976 -0.322237 1.115461 -0.142881 -4.330660 5.913191 -7.841130 -10.553794 -1.991691 -11.118164 -1.858396 -5.281884 4.642297 -1.038245 0.774030 -8.469966 -4.940186 1.055801 -3.159998 4.515081 5.114929 4.726095 4.913644 8.915315 -4.267654 2.514385 0.989355 4.150483 -4.780632 -4.638802 -1.937147 3.383912 -3.508123 3.397940 5.341820 0.921311 1.777722 -5.729989 6.985885 -6.266438 8.913888 4.388941 -1.052401 5.969900 1.077056 9.958121 3.546464 -3.412030 -PE-benchmarks/optimized-naive-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.976014 -0.931270 1.009113 0.830547 0.420009 0.609852 0.586880 -0.468395 1.012128 1.046002 0.023285 0.343935 -0.819909 0.046959 -0.068260 0.486487 -0.248227 -0.884097 0.067933 -0.569611 -0.449697 -0.778581 -0.136807 0.136316 0.190312 -0.711440 -0.506900 -0.319548 -1.278454 -0.936241 0.364526 -0.291029 0.535375 -0.862275 -0.093378 -2.602595 0.677018 0.785269 -0.303197 -1.105250 0.130073 -0.654223 0.327795 0.244860 -0.081597 0.103019 0.300870 -0.203044 0.408574 0.259887 0.763869 0.093221 0.024094 2.248451 -0.647009 0.903029 0.541337 -0.038627 -0.353252 0.484797 0.253284 -0.114744 0.816820 0.598762 -0.432725 -0.309582 0.014916 -0.143950 -1.130269 0.462851 0.021377 -0.469254 -0.360042 -0.152869 -0.605018 -0.644299 -0.430808 0.217937 1.430843 -0.676733 1.251897 0.382960 0.790953 0.248809 0.844484 -0.019942 1.052085 0.152167 -0.807070 -0.094696 -0.443260 0.133318 -0.124343 0.734485 -0.256613 -0.579930 0.518845 -0.090841 -1.115926 0.735581 -0.068458 0.254322 -1.476729 -0.323457 0.635681 0.566898 -0.801764 -1.277359 -1.155590 0.524322 -0.308357 -0.464540 0.226646 -0.872622 -0.249857 -0.545613 -0.799664 -0.384044 0.486823 -0.778138 -1.137658 1.076810 -0.658681 0.457824 0.009524 0.332539 -0.250563 0.575207 0.125495 0.516477 0.107518 -0.371744 -2.219969 -0.405816 0.152143 0.854548 -0.049187 0.016611 -0.162858 0.235993 -0.272107 0.515589 -0.072887 0.793085 1.161660 -0.092892 -0.436887 -0.561535 0.643866 -0.967439 0.306001 -0.721951 -0.022023 0.022222 0.812615 0.432996 0.360484 1.283061 -0.665812 1.002443 -0.297793 -0.180402 0.498202 -0.242647 0.567367 -0.507340 -0.808569 0.134029 0.942100 0.221191 0.248644 -0.475827 -0.078710 -0.562609 -0.607182 -0.059711 0.311516 -0.166775 0.726182 0.454701 2.130481 -1.711865 0.318041 0.130537 -0.154140 0.328154 -0.372903 -1.076560 0.204147 0.387140 -0.423407 0.894837 -0.109134 -0.927075 0.225248 -0.207955 0.296671 -0.629584 0.484628 -0.757449 -0.290929 -0.400226 -0.338466 -0.666511 -0.438273 -0.479822 -0.111546 1.083920 -0.439066 -1.071576 0.793754 -0.209547 0.177449 -1.653428 1.509596 -0.552013 0.545196 -0.940015 -0.129625 -0.379266 1.335769 -0.031499 0.391378 0.524000 -0.747621 0.731115 1.505539 0.253856 0.588241 0.199999 0.766029 0.067007 -0.225878 -0.463510 0.965194 -0.206537 -0.373096 -0.015011 -0.530702 0.736945 0.161786 0.105993 0.282609 1.005791 -0.553188 0.184758 1.081680 0.196094 -0.398062 0.528541 0.011022 0.933488 -0.350158 0.106928 -0.358091 0.155022 -0.121610 0.368011 -1.067641 -0.687640 -0.316807 -1.001293 -0.006075 0.789454 -0.108739 0.161755 0.245147 -1.418540 -0.387089 0.595236 -0.499506 0.728832 0.368544 0.665403 0.841897 0.940090 -0.226631 -0.451235 -0.204822 -0.409080 -0.586988 -0.473056 -0.141524 0.443467 -0.801914 0.790745 0.223139 0.081982 0.124715 0.471539 0.403886 -0.562580 1.344470 0.669677 -0.122062 0.677903 0.753580 1.770901 -0.631237 -0.515422 -PE-benchmarks/Iterative_QuickSort.cpp__partition(int*, int, int) = -3.735686 -5.771702 5.198680 4.883692 1.283529 4.035217 1.905346 -2.413263 2.713859 5.018889 -1.175672 3.186076 -3.549475 -1.178845 -0.071734 1.246975 -1.252738 -3.564074 0.006710 -1.845536 -1.256041 -3.255903 -2.944672 4.315389 0.925891 -1.739432 -2.081297 0.405247 -6.665390 -6.033304 -0.821282 -0.242675 2.627879 -2.610571 1.433516 -8.810370 3.682721 6.415930 -0.508708 -5.886627 0.080471 -2.090864 -0.812813 1.792541 -1.883829 1.498210 1.507671 -1.067683 -0.070662 1.110876 2.667347 -0.008794 2.734300 8.253536 0.338448 5.978249 5.210352 -0.061976 0.777496 1.232704 1.321566 -0.788371 3.383427 2.245798 -1.536055 -0.999479 -0.022178 1.000662 -3.708071 1.337965 0.970771 -3.642870 -1.491566 -1.889032 -3.716420 -2.301026 0.438582 0.346309 6.831343 -2.499421 7.301677 3.298250 3.598004 0.500871 5.061113 -0.656486 5.445436 1.610988 -3.718514 1.184942 -2.353010 -1.009775 0.270201 4.211762 -3.757680 -1.198958 2.648063 -3.856502 -6.346781 4.160561 -0.630372 -1.027295 -4.417409 -1.400928 2.445390 1.315999 -2.728892 -5.573909 -4.515644 3.734994 -2.230071 -3.141038 -0.606273 -1.003870 0.327513 0.377597 -3.935231 -0.524428 4.334525 -3.265769 -3.440032 4.955236 -1.281394 3.543860 -0.853509 0.582479 -0.324935 1.431050 1.403889 2.014147 -0.481994 -1.913959 -7.442807 -0.688705 0.096144 -0.394480 -1.550311 -0.797001 1.906454 2.274958 1.664432 5.060513 -1.356036 4.710181 3.179961 0.756773 -1.809093 -4.657262 -0.838230 -3.792155 1.296188 -2.636784 -2.811129 0.265484 3.840373 0.187330 0.172785 3.583629 -1.611058 3.602944 -0.392316 0.033991 0.916412 -2.978680 1.786264 -2.557854 -4.332940 2.737217 4.716289 2.046658 1.524279 -1.683385 -0.254134 -1.107623 -3.623686 0.978484 0.202546 0.141425 5.331064 2.895871 11.813155 -4.422477 1.325190 -1.071230 -0.966812 1.671266 -1.917084 -5.157097 0.640562 1.559100 -0.184417 6.769210 -0.498130 -2.801928 1.517792 -0.309030 0.829177 -4.129525 5.000872 -3.796896 0.005805 -1.564614 -1.449777 -2.727378 -2.155085 -3.547938 -0.499876 6.108240 -4.170125 -5.322055 3.150950 0.236428 1.267746 -6.991270 5.616909 -2.333937 4.241131 -2.602285 -2.010868 -0.193572 3.266444 -0.218470 1.534866 2.712624 -4.345449 2.976053 4.232335 0.394011 1.815396 1.398797 2.010865 -0.872046 -1.224363 -3.725192 3.899299 0.214586 -1.581655 -1.565301 -2.483848 3.480898 0.856535 -0.460903 -0.892977 4.116168 -2.552001 -1.536060 4.624126 -0.543573 -2.205879 2.094915 0.529568 3.274714 -2.658065 -0.381200 -2.509497 0.432852 1.038126 1.954367 -5.831928 -1.635596 -3.339853 -4.182008 -1.662704 3.341663 1.436396 2.017567 0.314206 -6.433842 -3.596673 5.877439 -2.002542 2.364505 2.957306 4.215082 4.462009 3.031843 1.780243 -1.443625 -1.963844 -0.881003 -2.950599 -1.648723 -0.310694 2.126518 -2.734035 4.724614 1.418778 0.637987 2.322600 1.019641 1.299996 -3.367121 6.022453 3.191420 -3.002783 1.274977 3.679332 5.478133 -5.663257 -3.154063 -PE-benchmarks/Iterative_QuickSort.cpp__quickSortIterative(int*, int, int) = -5.308804 -7.492788 5.120598 5.019371 2.235294 4.231754 4.230778 -1.488269 3.607055 5.157088 -1.756797 5.167141 -3.830394 -2.112725 0.594584 0.722445 -0.599213 -4.259902 1.004388 -0.594015 -0.146502 -4.776915 -5.354295 5.385543 0.760835 -2.725239 -1.466401 -0.026125 -10.001337 -5.597041 0.455644 -0.252490 2.579116 -5.545211 1.822219 -12.075779 3.280592 7.861230 -0.010539 -8.716989 -0.290645 -1.995515 -0.911916 1.590174 -1.944056 1.660404 2.526154 -0.561705 -0.979665 1.112304 2.227599 -1.253018 2.846956 10.614892 -0.536627 7.738488 8.492261 0.120789 2.185538 1.023718 1.441317 -1.587662 3.376286 3.843127 -2.169786 -0.113148 -0.158857 0.949564 -4.870787 0.453685 2.825560 -4.308254 -3.254994 -1.513986 -4.762580 -1.914973 0.269551 0.059716 8.326460 -2.431989 11.531200 4.444317 6.346706 0.042326 5.101014 -0.397622 4.961374 1.641003 -5.625654 0.892989 -6.804152 -1.430179 -0.339416 5.289862 -3.923924 0.379860 2.307544 -2.059304 -6.385295 4.151528 -1.443742 -0.937580 -3.881029 0.329641 2.328941 1.569773 -2.257094 -6.902258 -7.281617 5.248876 -3.257033 -3.206075 -0.669821 -0.625139 0.258244 -1.671955 -3.793651 -0.790583 6.682541 -3.782370 -4.486854 4.737734 -4.288941 4.461389 -0.974621 -0.356214 0.246009 0.731035 3.704860 0.996275 0.664428 -5.699279 -12.572932 -0.428685 0.062892 3.635152 -1.624503 0.248381 3.047128 2.383437 4.049529 5.149552 -0.574595 4.749823 0.849878 0.045741 -1.601152 -6.578231 -0.177825 -2.081854 3.062061 -2.385572 -2.421253 -0.144648 3.754952 0.006918 -0.372366 3.830805 -3.009109 5.640512 -0.229751 0.738770 -0.204232 -3.096867 1.500844 -2.437215 -4.026813 2.697611 5.359811 1.411685 1.767734 -2.002223 -0.039709 -1.305341 -3.787637 0.073256 -0.673678 -0.014119 5.987398 2.387416 15.876878 -6.260362 0.872840 -1.623697 -0.196807 1.277569 -1.735798 -5.159714 2.623894 0.987597 -0.210973 8.089041 -0.233010 -3.206550 1.732094 -0.165596 0.421148 -3.905057 7.959429 -3.524173 -1.928146 -1.173926 -2.219234 -2.792745 -2.726887 -5.350652 0.231682 6.843072 -3.815180 -7.051004 1.437779 -0.618770 0.932233 -8.071313 9.622273 -2.391710 5.009997 -3.048544 -2.414057 -0.298497 4.785341 0.468211 0.401609 2.736546 -5.969912 3.525583 4.432702 0.295737 1.580279 2.436422 1.135847 -0.750807 -2.249596 -3.464181 2.919125 0.331223 -1.748663 -1.320635 -2.465391 5.911757 1.712372 -1.472977 -1.112384 5.788628 -2.795785 -1.495712 5.359899 -1.527804 -2.277975 0.832448 0.901080 4.112825 -2.562739 -0.174561 -3.635945 -0.827223 1.522081 2.059593 -5.880777 -1.417632 -1.413502 -5.590523 -1.863708 2.813789 1.727234 2.861368 0.858549 -10.311538 -3.765787 6.015900 -1.857334 2.133452 3.000123 4.156164 4.692680 2.362954 1.998664 -2.099471 -1.289010 -0.350472 -3.611276 -1.434212 -0.088379 1.761264 -4.484026 5.150558 1.266710 0.975195 1.844966 1.399807 1.096838 -3.346947 7.742079 3.666600 -4.088639 0.371537 3.311208 6.950937 -8.120099 -3.319218 -PE-benchmarks/Iterative_QuickSort.cpp__printArr(int*, int) = -0.853254 -1.519738 1.514024 1.410282 0.369970 1.025630 0.528611 -0.730774 1.203611 1.044242 -0.580596 0.724402 -1.162053 -0.197218 0.169670 0.376658 -0.735390 -1.205747 0.156313 -0.375054 -0.266393 -1.252683 -0.388940 0.854905 0.278503 0.319297 -0.543107 0.256291 -1.865704 -1.561791 0.481324 -0.222666 0.804523 0.344882 0.359815 -2.650214 1.143172 1.476371 -0.174825 -1.901555 0.027744 -0.788414 -0.228698 0.141276 0.159856 0.764775 0.480388 0.371396 0.173912 0.293145 0.433967 -0.372859 0.262453 1.767252 -0.285412 1.533304 1.383169 -0.083250 0.129176 0.334188 0.342631 -0.126937 1.093668 1.200279 -0.877398 -0.350054 0.146154 -0.165371 -1.456008 0.728987 0.406114 -0.607711 -0.734839 -0.487905 -0.707266 -0.370367 -0.151825 0.413230 2.173376 -0.563754 2.169507 0.823323 1.347113 -0.178355 1.280912 -0.222548 1.658867 0.462619 -1.295786 -0.036844 -1.483149 -0.841773 -0.051209 0.955518 -0.712808 0.299434 0.458137 -0.952872 -1.584071 0.749249 -0.203430 -0.102952 -1.478614 0.214635 1.006678 0.513621 -0.394887 -1.612746 -1.124391 0.751441 -0.992647 -0.712206 -0.308218 -0.103120 -0.433942 -0.227065 -1.242303 -0.387688 0.996138 -0.988531 -0.782151 1.313469 -0.799540 0.716050 -0.225762 0.023973 -0.121193 0.658177 0.388302 0.413627 0.704562 -0.842406 -2.230654 0.198441 0.230824 0.799888 -0.550670 -0.272697 0.406416 0.439037 -0.068044 0.637137 -0.472558 1.090403 1.254956 -0.226332 -0.693393 -1.234885 -0.009482 -1.283810 0.571412 -0.903952 -0.154839 -0.012063 1.215549 0.368981 0.400340 1.541540 -1.219164 1.158858 -0.238840 0.247330 0.351989 0.136667 0.576224 -0.761799 -1.056442 0.781411 1.076200 0.209547 0.495389 -0.640285 -0.078080 -0.739479 -1.280479 0.815318 0.071210 0.259771 1.351048 0.696017 2.803692 -1.577720 0.438715 0.107385 -0.041421 0.249693 -0.151833 -1.456150 0.750842 0.262332 0.431944 1.650623 -0.095595 -0.885070 0.093538 0.130499 0.246646 -1.144687 1.128556 -1.102309 -0.009252 -0.597730 -0.111675 -0.723791 -0.881190 -0.649302 0.236052 1.731824 -0.217053 -1.854679 1.023227 -0.600642 0.697009 -2.236877 1.064846 -0.878407 0.941034 -0.867223 -0.343322 -0.199322 0.449631 -0.078826 0.228621 0.723061 -0.953767 0.938935 1.280696 0.311868 0.389156 0.461835 0.563099 -0.064792 -0.278115 -0.806001 0.934790 0.023371 -0.136373 -0.220275 -0.737585 1.086414 0.208536 -0.342738 0.515508 1.545429 -0.399710 0.255734 1.117815 0.067535 -0.745045 0.495824 0.218902 1.008211 -0.583952 -0.284708 -0.572232 0.056682 0.011030 0.597776 -1.570677 -1.154270 -0.346392 -1.789108 -0.592329 0.522877 0.554760 0.618758 0.324867 -1.892470 -0.706396 1.077465 -0.445236 1.472316 0.528852 0.921125 1.086856 0.981825 -0.152635 -0.632395 -0.269623 -0.061691 -1.051822 -0.402056 -0.503506 0.838963 -0.774048 1.201211 0.712790 -0.177857 0.344466 -0.277209 1.317353 -0.881757 1.905684 0.980730 -0.856121 0.455925 0.478621 1.884197 -0.813649 -0.921720 -PE-benchmarks/Iterative_QuickSort.cpp__main = -1.070176 -2.857208 2.902506 2.620125 0.288785 1.429242 1.244372 -0.930031 1.745941 1.453493 -0.841542 1.902284 -1.761741 -0.211082 -0.159379 0.969399 -1.440071 -1.923471 0.222337 -0.405268 -0.371615 -1.767841 -0.948653 1.790080 0.812640 0.274222 -1.017522 -0.166182 -3.164027 -2.253241 0.646038 -0.492634 1.345043 -0.722534 0.732245 -4.895499 1.763879 2.686413 -0.316161 -3.504023 0.175716 -0.862848 -0.232217 -0.298264 -0.782826 0.810990 0.981413 0.731755 0.109621 0.781572 0.216558 -0.205446 1.286896 4.052282 -0.233287 2.618861 2.973297 0.059183 0.539952 0.026023 0.918416 -0.347432 1.359119 1.511542 -0.615034 -0.733282 -0.522083 -0.344998 -2.098670 0.812686 0.745211 -0.802423 -1.731178 -0.655334 -1.978763 -0.581427 -0.901003 1.062950 3.725507 -1.656703 3.754350 1.535117 2.200017 0.017565 1.620663 0.053468 1.822672 1.027587 -1.838673 0.373598 -2.310658 -1.000242 0.114041 0.736392 -1.479353 -1.598137 1.160671 -1.839722 -2.676248 1.648616 -0.020988 -0.325518 -1.226689 -0.276694 1.192047 1.138240 -1.264517 -2.518188 -1.907848 1.238709 -0.693701 -1.248704 0.037153 0.222752 -0.135448 -0.562637 -2.222839 -0.338665 2.014076 -1.672566 -0.685460 1.926815 -1.163930 1.549938 -0.514169 -0.035762 -0.186071 1.313093 1.322844 0.818807 0.385465 -1.137726 -3.129386 0.272911 0.536810 1.462945 -0.795801 -0.110830 0.618663 1.045283 0.792986 1.217691 -0.293317 1.454714 0.956406 -0.281097 -1.331374 -2.462854 -0.616341 -1.756619 1.013604 -1.386776 -0.747105 0.794466 1.817282 0.331371 0.517506 1.976424 -1.662469 1.688692 -0.261044 0.394442 0.400936 -0.316570 0.853759 -0.999112 -1.766763 1.392577 1.768985 0.772742 0.769560 -0.973539 0.256681 -0.961759 -1.362634 0.635032 0.448571 -0.266079 2.239981 1.027805 4.084816 -1.891288 0.158009 -0.020966 -0.130223 0.409041 -0.391876 -2.580250 1.366468 0.207260 0.337129 2.618466 -0.195703 -1.259000 1.121294 -0.220916 0.209540 -1.527327 2.075597 -1.620916 -0.658074 -1.094577 0.144478 -1.129904 -0.985944 -1.781915 -0.133844 3.021570 -1.829213 -2.226924 1.143005 -0.301525 0.971815 -3.105919 3.050953 -1.147415 2.166251 -0.685389 -0.861469 0.125478 0.618811 -0.292093 -0.299910 1.359575 -1.606882 0.927653 1.868293 0.426932 0.193711 0.953867 1.024154 -0.318282 -0.024564 -1.233058 1.404327 -0.177047 -0.711655 -0.248133 -0.966915 1.688449 0.056742 -0.218612 0.702077 1.812937 -0.138975 0.497301 1.678697 0.232384 -1.374488 0.621423 0.199288 1.843523 -1.278916 -0.079308 -1.166928 0.410553 -0.009386 1.219723 -2.602419 -1.803392 -1.793231 -2.180377 -1.047475 0.496836 0.828168 0.354347 0.129680 -3.257089 -1.718880 2.142485 -0.870126 0.898137 1.575056 1.387095 2.122476 1.437117 -0.036136 -0.884269 -0.170000 0.151285 -1.018236 -0.334497 -0.819973 1.038907 -1.774907 1.519896 1.591878 -0.202767 0.691375 -0.106553 1.532240 -1.413787 3.422233 1.584433 -1.908640 0.585364 1.596138 2.779251 -1.764371 -1.609412 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__findCommon(int*, int*, int*, int, int, int) = -5.243522 -8.550597 7.829412 7.227585 2.161307 5.938734 3.166559 -3.752489 4.909472 7.404076 -2.808065 5.522586 -4.340716 -2.089075 0.342727 1.843781 -2.047859 -5.207811 0.337070 -2.437930 -1.272707 -5.740560 -4.225454 5.904093 1.417497 -1.323132 -3.080017 1.383903 -9.673937 -11.116148 -0.016485 -0.198204 3.790429 -3.044823 2.024006 -15.216041 5.900929 9.047848 -0.714547 -9.638483 0.208641 -2.660253 -2.565364 3.068299 -1.069415 3.444609 2.389497 -0.883742 -0.570681 2.044777 3.547220 -0.466591 3.947108 11.982695 -0.136752 9.142552 8.784916 -0.540600 1.489968 2.260774 1.848913 -1.048828 5.060493 5.207451 -2.368873 -1.522881 0.474336 1.637510 -6.489198 2.333977 1.492011 -5.987437 -2.782230 -2.980885 -5.055797 -2.538336 -0.459130 0.592685 10.986646 -2.657641 12.467678 4.627724 6.791763 -0.254538 7.129296 -1.407371 8.276403 2.752412 -6.666385 0.821350 -4.663396 -3.477518 0.308407 7.460371 -5.518665 1.707265 3.720656 -5.124808 -8.712461 5.567356 -0.850994 -1.752884 -7.246423 -1.140258 4.022073 1.717445 -2.338960 -8.707113 -7.909963 5.014793 -4.475704 -4.572034 -2.240873 -0.890812 -0.252700 1.216610 -5.722778 -0.657133 6.698609 -4.373557 -5.548585 6.661465 -3.145456 4.484465 -1.701083 0.906093 -0.506492 1.508064 1.927162 3.159589 1.987826 -3.887475 -14.336720 0.288835 0.526978 0.781753 -3.037966 -1.450681 3.024704 3.127323 2.260969 7.132184 -2.246706 7.391266 6.040311 1.107653 -3.098826 -7.446029 -0.435549 -5.628951 2.996229 -3.986973 -2.792945 0.327107 5.673944 0.111773 0.513418 5.583938 -4.565236 6.430645 -0.611977 0.651492 1.035166 -3.423755 2.217506 -3.948770 -5.946940 4.334563 6.907650 2.290413 2.589246 -2.496993 -0.300396 -1.954782 -6.662325 3.666148 -0.098288 1.221941 7.373109 4.246801 19.910285 -7.705454 1.723034 -1.391657 -1.486053 1.818838 -2.247074 -7.316884 2.468476 2.123931 1.995108 10.253303 -0.302980 -3.837449 1.018635 0.245092 0.820274 -5.702926 8.320091 -5.789834 -0.246279 -1.330082 -3.211658 -3.823142 -3.427300 -4.366075 0.897044 9.307500 -4.063248 -9.512160 5.166193 -2.541682 1.785361 -11.591738 9.018444 -3.829811 5.046560 -5.075215 -2.453279 -0.856909 4.767060 -0.572927 2.463100 3.742718 -6.785613 4.984753 7.365202 0.590339 2.495492 1.714358 2.362001 -1.606898 -1.847087 -5.153472 5.235913 0.420306 -1.663567 -3.154569 -3.415502 6.179256 0.983419 -1.323135 -0.522439 7.145631 -3.942909 -2.408958 7.235531 -0.613188 -3.587862 3.470027 0.971554 4.706071 -3.511062 -1.644701 -3.245437 0.164821 1.687665 2.617544 -8.465224 -2.504307 -3.918522 -7.946706 -2.947118 4.276773 3.140602 3.097900 0.584413 -10.877906 -4.968208 7.565004 -2.244894 3.322577 4.055945 6.118503 5.937972 3.896800 2.538638 -2.138603 -4.097922 -1.036666 -4.891533 -2.938371 -0.572950 3.535947 -4.243525 6.800816 2.146021 0.869818 3.363331 1.605045 3.312196 -4.723814 9.639429 4.637847 -4.521967 1.381825 3.856477 8.324973 -8.226453 -4.725163 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = -0.363274 -3.096104 4.445856 3.781089 -0.023933 1.582182 1.150914 -1.925506 2.240322 1.611118 -1.261938 2.193155 -2.124684 0.478467 -1.162418 1.869637 -2.689450 -2.376258 -0.283604 -1.162819 -0.885047 -1.924775 0.102705 1.595924 1.618922 1.009306 -1.822045 -0.347845 -3.237089 -3.550469 1.097400 -0.627735 1.761256 -0.236174 0.479663 -6.332851 2.755466 3.071978 -0.851039 -3.957001 0.897649 -1.243139 -0.926279 -0.523450 -0.746058 0.963409 0.694847 1.440209 0.633723 1.313669 0.463650 0.573081 1.781300 5.550081 -0.681027 3.013331 3.210485 0.126546 0.223956 0.368969 1.183969 0.152122 1.585139 1.948624 -0.238457 -1.745347 -0.786360 -0.769297 -2.490268 1.755524 0.252429 -0.938140 -2.114691 -0.904736 -2.258167 -0.470841 -2.127140 2.028905 4.758804 -2.433952 3.791416 1.270837 2.040997 -0.228186 1.640437 0.022781 2.376344 1.513274 -1.597510 -0.182420 -1.942034 -1.218480 0.533437 0.474775 -2.066393 -2.944002 2.006663 -3.002092 -3.487498 1.831108 0.682459 -0.914136 -1.269923 -0.530098 1.381710 1.353118 -1.530173 -2.963315 -1.780629 1.124700 -0.374665 -1.607559 -0.201098 0.174668 -0.286899 -0.104392 -3.350494 0.032918 1.652526 -1.796497 -0.700134 2.409198 -0.673862 1.207841 -0.703170 0.476600 -0.600328 2.120913 0.719307 1.687319 0.784719 0.141421 -3.099391 1.121238 1.397731 1.127608 -1.482618 -0.072116 0.075596 1.317077 -0.104340 1.233195 -0.854509 1.988681 2.089457 -0.645866 -2.311352 -2.662757 -0.724301 -3.047142 0.907620 -2.118279 -1.247705 1.120332 2.520306 0.890125 1.278320 2.847150 -2.472627 1.882070 -0.107178 0.367653 1.106321 -0.347067 1.211780 -1.497433 -2.603092 1.886644 1.828351 0.981456 0.706291 -0.694119 0.305606 -1.771576 -1.721763 1.703607 1.078761 -0.418084 2.714913 1.756025 4.531886 -2.417352 0.398381 0.637961 -0.825048 0.349127 -0.360412 -3.616518 1.602560 0.496785 1.109406 3.322012 -0.099226 -1.476157 1.298202 -0.409555 0.397968 -1.906928 1.873433 -2.203079 -0.798640 -1.524546 0.393757 -1.064324 -1.080656 -1.548785 -0.428183 3.986103 -2.911962 -2.630833 2.482115 -0.864865 1.068364 -4.216490 3.641816 -1.691700 2.264734 -0.722644 -0.809145 0.087869 0.353741 -1.365930 0.229036 1.731593 -1.659862 1.239841 3.250431 0.793683 0.305043 0.608540 1.899361 -0.806003 0.840414 -1.671980 2.371434 -0.305055 -1.288800 -0.551727 -1.177034 1.146548 -0.744735 0.288236 1.937360 1.912905 0.416901 0.998291 2.049190 1.539893 -2.003010 1.693751 -0.101875 2.036038 -1.687233 -0.560155 -0.621286 0.741474 -0.368507 1.733122 -3.622374 -3.037253 -3.450177 -3.007033 -0.870363 -0.180456 1.418935 -0.337277 -0.223249 -3.767603 -2.540754 2.428796 -1.214821 1.059905 2.432475 1.705218 2.538206 2.242358 -0.460632 -0.383742 -0.696554 0.596065 -0.798111 -0.779414 -1.419850 1.863660 -1.919452 1.480803 2.718086 -0.483355 1.314980 -0.073260 2.313856 -1.861952 4.401752 1.835510 -2.257760 1.276421 2.162803 3.210289 -1.023614 -2.176782 -PE-benchmarks/topological-sorting.cpp__Graph::Graph(int) = -0.095979 -2.267847 2.871178 1.668742 -0.457873 1.676422 1.325861 -1.355719 1.308269 0.659367 -0.858477 0.550904 -1.606519 -1.030043 0.173252 -0.236953 -2.060444 -1.519766 0.139369 -0.668738 -0.358266 -1.534393 -0.510638 1.677049 0.473040 1.010871 0.079684 -0.135427 -2.459574 -0.633033 1.197444 -0.126621 0.679388 2.309849 1.630806 -2.035246 1.498935 1.556992 -0.193315 -2.558463 -0.033952 -0.145055 -0.814214 0.534219 0.369921 0.556388 0.420222 1.918562 -0.297569 0.329314 0.147668 -1.358417 0.228806 2.444110 0.785962 1.999492 2.230763 -0.205122 1.218865 1.259539 0.726761 -0.277871 0.629516 1.454067 -0.238737 0.335689 0.547900 -1.183201 -1.380734 1.262023 0.544978 -1.607784 -0.365840 -1.337303 -1.441946 -0.213141 -2.750659 1.974262 3.084754 -1.584940 2.669416 1.127071 2.108289 -0.874479 2.153173 -0.174095 2.524667 0.810721 -1.453760 0.668404 -2.555292 -2.168911 0.113658 -0.445328 -1.104809 -0.236480 1.386814 -2.368034 -2.212793 1.802435 0.079351 -0.270351 -0.870022 0.395403 1.081694 0.369897 -1.492597 -1.979373 -1.453911 1.530042 -1.874640 -0.194909 0.129673 1.459899 -0.680228 -0.316249 -1.049916 -0.116349 1.803130 -1.138190 -0.513436 2.343131 -0.842499 1.498813 -0.385899 -0.567291 -0.042325 0.866259 0.628133 0.052305 0.975437 -0.725342 -1.542577 1.155413 0.158293 1.340636 0.407795 0.239158 1.575732 1.315169 0.146387 1.257263 -1.189025 1.186264 0.030065 -0.495734 -1.584399 -1.286546 -0.578610 -1.905091 0.297577 -1.248387 -1.072026 0.571968 1.835538 2.154456 -0.509946 0.957896 -1.507454 0.791524 -0.455455 0.371251 -0.709726 -0.036918 0.556266 -1.119017 -1.376509 0.238351 0.787280 0.453918 1.168296 -1.497879 -0.667313 -1.308698 -2.152850 0.670409 0.746882 -0.162878 1.513361 1.621516 0.909434 -1.875740 -0.270969 -0.058203 -0.078397 -0.202491 -0.402191 -2.082959 0.789955 0.174740 0.864806 1.702490 -0.223301 -0.065794 0.363358 -0.311991 0.257356 -1.245231 0.525258 -1.323600 -0.102697 -0.856490 0.794836 -1.176330 -1.158013 -1.165934 -0.685772 2.367730 -1.187357 -1.987191 2.152755 -0.819077 1.521450 -1.756593 0.972325 -0.804808 1.619240 -0.027215 -0.317000 -0.502706 0.193996 0.038368 0.504923 0.382608 -1.047864 1.097380 1.581149 0.196626 0.778798 0.910018 0.998492 -1.442644 -0.916858 -1.565437 1.420812 -0.229315 -0.913996 -0.139321 -1.052747 1.327816 -0.089551 -0.201941 1.000656 1.040354 0.053563 0.372845 0.763984 -0.833019 -1.196992 0.297533 0.833073 1.239485 -1.033632 -0.347122 -0.541320 -0.011795 0.154590 0.037242 -2.195318 -1.620386 -1.958178 -1.667918 -1.566025 -0.844904 1.066708 0.723960 0.335404 -1.829895 -1.099580 0.650770 -0.659007 -0.113656 1.323815 1.503194 2.031762 1.739120 0.078633 -0.016480 0.320542 0.788353 -1.752451 -0.416224 -1.136418 0.352538 -1.794573 1.756711 1.435500 0.893011 1.084276 -0.553660 2.232983 -1.911537 1.726873 1.809489 -1.804874 0.014147 1.607751 1.502291 -0.151153 -1.539419 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/topological-sorting.cpp__Graph::addEdge(int, int) = -0.258164 -0.966530 1.402509 1.356168 -0.111844 0.591160 0.321503 -0.791154 0.852417 0.736917 -0.080499 0.377124 -0.969210 0.308942 0.065420 0.749355 -0.964887 -0.747126 -0.247233 -0.636087 -0.630080 -0.786537 0.062012 0.465807 0.485829 0.194883 -0.627980 -0.139727 -0.824982 -0.861468 0.469134 -0.243021 0.702528 0.373364 0.283721 -2.443143 0.917024 0.815264 -0.278928 -1.014704 0.105191 -0.563513 0.143731 -0.255990 -0.364790 0.264155 0.121523 0.224052 0.610165 0.269643 0.471699 0.011544 0.468333 1.969904 -0.443143 0.931172 0.567182 -0.120201 -0.044617 0.157004 0.318704 0.099564 0.712443 0.601160 -0.196897 -0.618008 -0.221698 -0.432294 -0.962783 0.830064 0.085698 -0.316032 -0.902026 -0.489891 -0.621929 -0.495900 -1.391068 0.851789 1.600205 -1.049344 1.074038 0.473511 0.519079 0.029668 0.823495 -0.070996 1.240718 0.302842 -0.627961 0.317687 -0.262081 -0.420410 0.187088 0.227474 -0.558532 -1.054133 0.461774 -0.732134 -1.302373 0.752900 0.194427 -0.009119 -0.944944 -0.357731 0.526131 0.330875 -0.720587 -1.225492 -0.657543 0.380327 0.006760 -0.500415 -0.070170 -0.190342 -0.181391 -0.285875 -1.201592 -0.223725 0.324913 -0.735267 -0.445724 1.056513 -0.217620 0.364073 -0.072029 0.173302 -0.271837 1.067994 0.086755 0.707139 0.073153 0.058526 -1.261722 0.063432 0.444981 0.521354 -0.108910 -0.161878 -0.174766 0.373024 -0.465483 0.520480 0.084001 0.872291 1.013396 -0.148661 -0.801606 -0.575545 -0.129898 -1.277607 0.372223 -0.856798 -0.156548 0.406839 0.878311 0.577722 0.483525 0.959517 -0.766298 0.701868 -0.278309 0.025970 0.623970 0.162084 0.564719 -0.573551 -0.839666 0.528932 0.587672 0.358395 0.331782 -0.429067 0.017307 -0.564380 -0.557397 0.369241 0.359225 -0.236684 0.922370 0.593242 1.898003 -1.043008 0.453904 0.369166 -0.115379 0.257672 -0.119805 -1.199191 0.540459 0.163515 -0.275741 0.875235 -0.227318 -0.575116 0.365232 -0.282237 0.346391 -0.789162 0.370569 -0.725954 -0.122032 -0.838614 0.155562 -0.469480 -0.457500 -0.320676 -0.000626 1.327974 -1.024817 -0.640141 1.151101 -0.203602 0.448507 -1.286788 1.552844 -0.543454 0.667904 -0.739143 -0.543343 -0.072984 0.512735 -0.230243 0.253307 0.597750 -0.507784 0.154885 1.270978 0.254582 0.277814 0.239251 0.861857 0.051771 0.291121 -0.498282 1.167258 -0.016090 -0.109729 -0.152244 -0.530079 0.365593 -0.150335 0.105636 0.782600 0.879970 0.051954 0.287137 0.755133 0.446460 -0.566038 0.540588 -0.054296 0.642354 -0.677953 -0.051890 -0.074621 0.306929 -0.331738 0.455695 -1.209450 -1.022991 -0.961488 -0.503015 -0.480983 0.530951 0.314333 0.043105 -0.080158 -0.993980 -0.727009 0.903402 -0.570104 0.235258 0.490945 0.565342 0.964334 1.119673 -0.116354 -0.326248 -0.154565 -0.074043 -0.238698 -0.080629 -0.604863 0.772023 -0.803028 0.643210 0.826492 -0.188800 0.386573 0.170153 1.087286 -0.733251 1.391742 0.557994 -0.494656 0.739254 1.169613 1.129390 -0.136641 -0.674677 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::push_back(int const&) = -0.077529 -0.917212 1.926129 1.690331 -0.291034 0.629247 0.100363 -1.345253 1.481807 0.359404 -0.067820 0.345084 -1.053998 0.601394 -0.297854 1.025625 -1.514553 -0.974832 -0.508815 -1.067197 -0.843968 -0.975442 0.422656 0.255730 0.632583 0.456758 -0.955443 0.007034 -0.960840 -0.934492 1.081055 -0.390250 0.806590 0.193464 0.263220 -3.329660 1.412603 0.906599 -0.490407 -1.358132 0.240322 -0.820300 0.128790 -0.602182 -0.478886 0.211199 -0.188216 0.492971 0.979868 0.286153 0.366317 0.484081 0.168066 2.586149 -0.959138 1.010112 0.481178 -0.059223 -0.391253 0.293020 0.409690 0.500026 0.837138 0.799006 -0.267402 -1.124092 -0.221362 -0.642902 -1.378018 1.246603 -0.015182 -0.403871 -1.099677 -0.507587 -0.989252 -0.497219 -1.263619 1.271060 1.947137 -1.326708 0.981342 0.226904 0.533105 0.101900 0.849460 -0.081755 1.616537 0.433907 -0.617319 0.086968 -0.553645 -0.367427 0.334869 -0.198445 -0.657727 -1.762485 0.632030 -1.287231 -1.489152 0.672496 0.589161 -0.016680 -1.289897 -0.552017 0.818272 0.455756 -0.835267 -1.398146 -0.535145 0.528918 0.168919 -0.568503 0.040671 -0.378039 -0.230716 -0.592107 -1.607283 -0.197249 0.232984 -0.657977 -0.459639 1.273472 -0.562691 -0.070521 -0.159556 0.358538 -0.535055 1.432644 -0.267029 0.930079 0.048071 0.330961 -1.071000 0.194983 0.521846 0.920253 -0.165585 -0.154143 -0.558813 0.399922 -1.002412 0.215261 -0.210901 0.599859 1.185029 -0.278406 -1.043524 -0.464671 -0.177392 -1.884918 0.345044 -1.117295 -0.385883 0.680549 1.141151 1.103125 0.925839 1.349332 -1.154538 0.773225 -0.319310 0.034166 1.115236 0.273336 0.758473 -0.678450 -1.061748 0.663747 0.295291 0.391765 0.343633 -0.465736 -0.009963 -0.970315 -0.573925 0.525547 0.693097 -0.104452 0.978030 0.763155 1.600164 -1.502391 0.572225 0.737847 -0.284610 0.336849 -0.148355 -1.460224 0.572121 0.317679 -0.017740 1.144079 -0.309094 -0.712182 0.279165 -0.210863 0.566819 -0.885238 0.134186 -0.904089 -0.241678 -1.085549 0.214592 -0.571869 -0.433315 -0.545250 -0.455696 1.606379 -1.393390 -1.044610 1.858997 -0.450001 0.858132 -1.673572 1.337762 -0.757155 1.029203 -0.678022 -0.206450 -0.128654 0.190236 -0.749185 0.411867 0.737312 -0.494163 0.200572 1.764319 0.447669 0.311833 0.064806 1.190299 -0.131339 0.768503 -0.644971 1.617946 -0.190769 -0.326104 0.055199 -0.636931 0.132174 -0.585328 0.378784 1.224358 1.022349 0.561673 0.709134 0.880237 0.900543 -0.784405 0.896935 -0.138609 0.399007 -0.666183 -0.058427 0.283081 0.553908 -0.543808 0.574059 -1.486717 -1.747025 -1.615354 -1.032023 -0.184657 0.074947 0.231250 -0.283068 -0.177470 -1.174959 -0.914647 0.999809 -0.676181 0.942986 0.665798 0.638332 1.038536 1.616170 -0.766642 -0.197364 0.021847 -0.064648 -0.146893 -0.216749 -1.124218 1.289367 -0.805793 0.493335 1.436548 -0.375614 0.470281 0.057361 1.205382 -0.758962 1.744571 0.630357 -0.507026 1.054603 1.106764 1.535516 0.478665 -0.858644 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -0.694859 -5.165832 8.093886 7.377582 -0.701351 3.831952 0.302887 -5.230121 4.552187 2.425843 -1.539855 2.957557 -4.523573 1.345405 -2.241050 3.127582 -5.331130 -4.073069 -1.740333 -3.475482 -2.859312 -3.896474 0.016390 3.509798 2.621770 3.185556 -3.656324 0.557814 -5.771792 -5.876222 2.523043 -0.755140 3.454203 1.842888 1.517552 -10.855634 5.626889 6.251733 -1.403710 -6.174072 0.946294 -2.945862 -1.526602 -0.930078 -1.899832 1.517895 -0.276974 1.664613 2.198924 1.186613 1.592658 1.466059 2.606160 8.963531 -1.533085 5.768639 3.976445 0.203743 0.094638 0.911056 1.786477 1.518826 3.579912 3.258521 -1.205250 -3.779393 -0.682114 -1.193686 -4.750973 4.318539 0.299083 -2.645383 -3.679320 -2.598816 -4.258893 -1.459077 -3.025051 3.879501 8.442480 -4.324017 5.823771 2.165329 2.346536 -0.638998 4.390058 -0.874395 6.702533 2.478171 -2.625952 0.433519 -3.013437 -1.633817 1.274857 1.551220 -4.654496 -5.107157 3.369346 -7.758072 -7.223414 3.107001 1.572216 -1.589732 -3.831761 -1.269400 2.968899 1.127238 -2.897562 -5.789864 -2.137757 2.994309 -0.549369 -3.307528 -0.996974 -0.025729 -0.319924 0.015484 -6.347460 -0.350492 2.406463 -3.177858 -1.538490 5.298829 -0.242083 1.412485 -1.235303 1.129810 -1.251447 4.151896 -0.402733 3.226851 -0.074710 1.459897 -3.147179 1.090593 1.845127 0.966618 -2.650337 -1.293287 -0.154506 2.308233 -1.679638 2.590321 -2.754561 3.510460 4.391942 -0.768340 -3.931387 -3.458372 -1.906076 -7.119415 0.740114 -4.159847 -3.686433 1.206702 4.938368 2.698638 2.532965 4.822673 -3.864505 2.988177 -0.060723 0.660196 3.187023 -0.415860 2.489210 -3.223863 -5.368462 3.847288 2.388934 1.922549 1.375507 -1.292244 -0.395970 -3.084305 -3.394147 3.369631 1.728143 -0.017943 5.745995 3.659556 8.555050 -5.032355 2.267843 1.468625 -1.658860 1.535515 -0.819407 -6.680782 2.194358 1.256231 1.475109 7.030957 -0.888171 -2.351438 1.732714 -0.324393 1.733680 -4.796422 3.293065 -4.524280 -0.559228 -3.979006 0.543724 -1.964361 -2.087542 -3.110324 -1.855055 7.245931 -6.784219 -4.929804 6.692663 -0.487257 2.927438 -7.444303 3.678121 -3.258214 4.802352 -1.667475 -1.664446 0.192268 -0.265806 -2.744083 1.481036 3.331101 -3.275750 2.097093 5.902391 1.165214 1.089159 0.756151 3.748284 -1.339532 1.988041 -3.913964 6.061435 0.444883 -2.073093 -1.040397 -2.890172 0.959984 -1.978821 0.517677 3.325079 4.453051 1.205254 1.047895 3.691268 2.688689 -3.487760 3.628387 -0.090575 1.839632 -3.257350 -1.067157 -0.041461 1.585850 -0.907149 3.035240 -6.999431 -6.349311 -6.811706 -5.111496 -1.413631 0.009216 2.528576 0.148723 -0.833618 -5.666017 -5.064248 5.946607 -2.597950 4.557117 3.725503 3.897184 4.636946 5.349115 -1.226132 -0.237805 -1.039143 0.641321 -1.497647 -1.327168 -3.484916 4.704250 -2.189345 3.434318 5.483100 -1.066782 3.070825 -0.238986 4.493138 -3.755021 7.583426 3.099398 -3.782186 3.164709 3.802175 5.683189 -0.703387 -4.091407 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/topological-sorting.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = 0.247802 -1.022171 2.463501 2.221989 -0.248550 0.729948 0.066720 -1.792920 1.630194 0.980613 -0.169901 0.594561 -1.098957 0.784875 -0.494150 1.632898 -1.711727 -0.969707 -0.714040 -1.303565 -0.992001 -0.999606 0.596474 0.144550 0.957860 0.535711 -1.174555 0.023881 -0.914915 -2.072830 0.802980 -0.345434 0.839843 -0.154246 0.302004 -3.285149 1.927330 1.356361 -0.639446 -1.655428 0.425531 -0.676201 -0.212269 -0.308282 -0.404707 0.432335 -0.324261 0.610682 1.067942 0.748356 0.742312 0.820481 0.851860 2.906977 -0.887168 1.345954 0.719001 0.057988 -0.313050 0.460921 0.522980 0.726943 0.787323 0.816584 0.128753 -1.434604 -0.449736 -0.410474 -1.369032 1.463971 -0.231400 -0.882834 -1.344268 -0.743687 -0.962786 -0.355127 -2.179656 1.429772 2.219941 -1.500781 1.021414 0.355976 0.330751 0.006984 0.851811 -0.212397 1.747334 0.661762 -0.483701 0.026070 -0.067728 -0.663513 0.634175 -0.271892 -1.102535 -2.303422 0.935209 -1.611438 -1.793270 0.885975 0.870313 -0.325898 -1.184963 -0.694876 0.813404 0.436411 -0.847050 -1.508010 -0.479563 0.646937 0.369925 -0.799842 -0.121421 -0.463641 -0.168571 0.088929 -1.958875 -0.033415 0.295687 -0.659369 -0.562378 1.316343 -0.045701 -0.136989 -0.305052 0.475605 -0.548247 1.501126 -0.361075 1.509193 -0.031820 0.987972 -1.142670 0.811308 0.840403 -0.070097 -0.257977 0.137132 -0.683219 0.566558 -1.092851 0.782744 -0.651718 0.843739 1.578562 -0.208425 -1.332880 -0.574672 -0.433445 -2.009913 0.509881 -1.237995 -0.785476 0.443776 1.341847 0.954667 1.084707 1.222870 -1.458524 0.521534 -0.247619 0.215208 1.245524 0.006682 0.777119 -0.781034 -1.350814 0.908116 0.655957 0.340905 0.351113 -0.293107 0.079757 -1.002565 -0.412794 0.855315 0.683169 -0.347473 1.224658 0.973512 2.363951 -1.166677 0.541163 0.883228 -0.507272 0.381714 -0.263955 -1.844444 0.577042 0.359069 0.602532 1.615540 -0.284337 -0.537686 0.473905 -0.333775 0.543031 -0.959627 0.392663 -1.126429 -0.329114 -1.029700 0.315040 -0.470955 -0.383314 -0.512903 -0.425496 1.902189 -1.740034 -1.004898 2.244568 -0.812256 0.503869 -1.726978 1.868872 -0.847515 0.823773 -0.562440 -0.232376 -0.067849 0.124401 -1.098220 0.414272 0.880672 -0.516024 0.292586 2.074094 0.440393 0.133691 -0.064843 1.305850 -0.478246 1.034652 -0.875004 2.052947 -0.219277 -0.289389 -0.243884 -0.673616 -0.055111 -0.979902 0.289655 1.246300 0.779433 0.442290 0.513269 0.804444 1.292196 -1.018387 1.578641 -0.095241 0.288448 -0.902024 -0.156124 0.493856 0.400862 -0.628116 0.864306 -1.782697 -1.561470 -2.137287 -1.028817 -0.260942 0.068467 0.611809 -0.566547 -0.433344 -1.216970 -1.440913 1.806205 -0.717920 0.300323 1.001265 0.783157 1.135872 1.777846 -0.482573 0.185818 -0.631857 -0.201567 -0.016179 -0.587995 -0.833673 1.545864 -0.700901 0.406730 1.599950 -0.355584 0.767168 0.012036 1.019770 -0.887884 1.835567 0.640025 -0.366073 1.143968 1.460146 1.782084 0.048074 -1.035245 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -2.583755 -6.098163 8.248472 7.006539 1.582231 4.601939 1.906421 -4.353091 5.116698 5.177000 -2.599296 1.967894 -5.064361 -1.390339 -0.328212 2.847259 -3.539572 -5.210499 -0.147005 -2.040512 -1.205753 -5.046568 0.684356 3.280119 2.271699 3.565069 -3.019163 0.327389 -5.961995 -9.865605 3.347127 -0.727552 3.982847 3.451611 0.118525 -10.595163 7.418746 7.220501 -1.457280 -6.628195 1.168670 -0.817256 -2.997206 1.594710 -0.897228 3.693282 1.293858 2.300290 0.548289 3.191758 3.060098 -1.496463 4.401802 7.368852 0.003142 7.100544 5.880130 1.026757 1.310554 2.099359 1.505655 0.922309 4.110864 5.168577 -1.785687 -1.043486 0.645913 -0.911001 -7.131729 3.952734 -0.645359 -3.788116 -2.529411 -2.244739 -1.935277 -0.055542 -0.839746 2.258526 9.234854 -3.214937 8.666579 3.765136 4.386172 -1.827855 2.272607 -1.292029 4.462142 3.102696 -3.957246 -1.543297 -5.388390 -4.367629 0.244746 1.694745 -5.346986 -0.925777 3.783623 -5.391501 -7.223053 3.160948 0.161083 -1.735416 -5.095627 0.090710 4.060573 1.106970 -1.363588 -6.052183 -3.784067 3.631579 -3.850901 -2.626917 -2.866955 1.020896 -1.768272 2.079830 -6.239014 -0.685170 3.203669 -4.607987 -2.121767 5.033575 -1.671953 2.851924 -1.219883 0.931008 -1.079856 2.930820 1.912196 3.007701 3.631299 -0.278167 -4.889966 1.912019 2.305443 0.970301 -2.621624 -1.681668 1.155953 2.139679 -0.502220 3.961950 -3.399223 2.482447 6.111071 -0.747845 -4.172121 -4.473594 -2.122482 -8.119032 2.522736 -4.598229 -1.693095 1.959111 5.338460 1.206749 2.329466 6.799959 -7.086305 3.719628 -0.948068 1.268454 -0.025229 0.368640 2.051767 -3.230680 -5.878150 4.036129 5.011674 0.505537 2.058006 -2.724894 -0.577818 -3.666035 -5.211156 4.024238 -0.800208 -0.085000 4.212326 3.264823 11.399904 -4.625582 1.052340 1.382763 -1.120574 1.235903 -0.100172 -7.761297 2.845124 0.524071 3.269549 8.317242 0.040168 -2.626322 1.795070 -0.528922 0.016603 -5.130106 5.864708 -5.380559 -0.529112 -2.750484 -0.848688 -2.471193 -3.070658 -2.261560 0.048325 7.501391 -2.370924 -6.430094 5.308725 -1.747032 0.946669 -8.055877 4.790515 -3.798213 3.801258 -1.172668 -2.413872 -0.966180 -0.906468 0.023346 -1.047846 2.139902 -3.145918 4.639062 6.883778 0.973101 0.423641 1.800927 2.496108 -1.556693 0.552385 -4.156027 4.250295 -0.156045 -2.418224 -1.269064 -3.062559 3.172932 -2.112628 -2.509137 2.718806 6.107714 -1.856620 0.946539 3.152381 2.086344 -4.066140 3.431813 2.178679 3.919067 -2.774656 -1.586087 -0.896699 0.343056 -0.719595 3.973732 -7.234300 -5.851283 -4.469589 -8.487777 -3.216284 0.122966 4.259466 0.455875 0.543301 -6.711562 -4.890116 5.918061 -2.414359 4.655603 4.174990 4.947603 5.348183 5.273851 -1.235102 -1.316893 -1.338845 0.423544 -4.019944 -2.144150 -2.398273 4.556022 -0.615926 4.073471 3.714877 -0.417490 2.338408 -2.761965 3.950311 -4.002801 8.500498 3.640586 -2.861008 2.714221 -0.192315 6.970095 -3.407618 -4.116786 -PE-benchmarks/topological-sorting.cpp__std::stack > >::stack >, void>() = 0.060676 -0.456717 0.944534 0.770424 -0.203297 0.231036 -0.081087 -0.524392 0.737878 0.017509 -0.221921 0.184805 -0.457092 0.325151 -0.257642 0.500179 -0.871054 -0.513470 -0.126933 -0.341204 -0.389668 -0.483396 0.205974 0.095416 0.267665 0.513612 -0.431568 0.170662 -0.341672 -0.435148 0.511093 -0.300232 0.298949 0.288022 0.216337 -1.288208 0.659647 0.297138 -0.228350 -0.685815 0.033329 -0.361281 0.081712 -0.472317 -0.154313 0.171244 0.055955 0.473019 0.418505 0.161417 0.002235 0.060252 0.075861 1.079785 -0.375056 0.412956 0.324436 0.000519 -0.077563 0.027235 0.271066 0.156384 0.300155 0.503211 -0.135606 -0.478107 -0.177245 -0.415257 -0.531218 0.628259 -0.067271 0.047479 -0.621305 -0.255153 -0.499256 -0.148704 -0.966445 0.680545 1.037373 -0.676762 0.451040 0.202434 0.473076 0.092191 0.327354 0.026504 0.732174 0.285536 -0.397311 0.124043 -0.218044 -0.223354 0.154503 -0.315586 -0.220738 -0.885695 0.251281 -0.891921 -0.638479 0.327497 0.242810 0.100441 -0.276462 -0.136474 0.451138 0.229286 -0.398484 -0.591786 -0.038941 0.064110 0.076965 -0.176456 0.140277 0.000826 -0.095269 -0.178450 -0.816999 -0.166183 0.094070 -0.382804 0.106450 0.559223 -0.153437 0.011498 -0.105547 0.040483 -0.182736 0.823533 0.042695 0.407034 -0.128955 0.224519 -0.383379 0.349135 0.318246 0.298524 -0.152827 0.009316 -0.142655 0.169624 -0.476376 -0.143147 -0.238845 0.135320 0.432842 -0.227916 -0.609654 -0.337394 -0.313889 -0.904663 0.180789 -0.555335 -0.250107 0.374926 0.557501 0.619409 0.498625 0.642256 -0.628035 0.256800 -0.229421 0.121849 0.441827 0.228918 0.361730 -0.281847 -0.410708 0.390987 0.126453 0.119189 0.280164 -0.431182 0.077453 -0.519258 -0.118783 0.487677 0.446228 -0.042473 0.454804 0.258991 0.265592 -0.530623 0.188532 0.399198 0.028073 0.056088 0.016864 -0.685218 0.466850 0.055741 0.219963 0.298006 -0.102864 -0.230300 0.136212 -0.112846 0.272332 -0.381661 -0.089514 -0.356887 -0.123740 -0.523048 0.466751 -0.288587 -0.155967 -0.171546 -0.208266 0.732355 -0.746914 -0.305962 0.793901 -0.149240 0.578242 -0.550724 0.365833 -0.384267 0.724423 -0.110630 -0.057328 -0.004000 -0.224310 -0.237114 0.046062 0.380143 -0.058278 -0.033271 0.546649 0.266825 0.106382 0.176585 0.562742 -0.082163 0.345271 -0.145847 0.533693 -0.084532 -0.134811 0.122661 -0.284972 0.038384 -0.232134 0.207618 0.681385 0.433463 0.378109 0.559697 0.255261 0.403284 -0.446551 0.230914 -0.101625 0.284615 -0.414277 -0.054546 0.028311 0.308824 -0.352326 0.198221 -0.672992 -0.928349 -1.017136 -0.342433 -0.295201 -0.172755 0.090006 -0.174838 -0.014783 -0.373403 -0.377535 0.614216 -0.310947 0.383493 0.291214 0.196558 0.508402 0.735426 -0.406234 -0.255731 0.090599 0.023011 -0.076064 0.131397 -0.688417 0.587664 -0.457253 0.127516 0.772152 -0.334697 0.081929 0.082276 0.628415 -0.325027 0.822617 0.396719 -0.369397 0.414195 0.512800 0.724194 0.418215 -0.460097 -PE-benchmarks/topological-sorting.cpp__std::stack > >::empty() const = 0.040559 -0.493089 0.949800 0.838483 -0.255501 0.304300 -0.071798 -0.541112 0.576700 0.174246 -0.180134 0.226929 -0.408710 0.202676 -0.070496 0.466703 -0.713713 -0.348269 -0.198079 -0.419745 -0.360864 -0.353417 -0.004183 0.205368 0.288775 0.502514 -0.335178 0.119671 -0.304865 -0.549785 0.278293 -0.128232 0.310938 0.292606 0.311749 -1.228450 0.619067 0.517743 -0.188462 -0.732097 0.048634 -0.290229 0.027365 -0.215007 -0.172044 0.228149 -0.005898 0.317875 0.286258 0.214443 0.039887 0.118633 0.298232 0.992505 -0.126826 0.493077 0.410574 -0.031608 -0.056830 0.044061 0.229728 0.140288 0.264036 0.242682 -0.034619 -0.490812 -0.222107 -0.259100 -0.434480 0.457680 -0.048430 -0.313292 -0.533546 -0.466256 -0.406074 -0.198758 -1.207004 0.627030 0.851517 -0.697099 0.462828 0.225849 0.254321 0.089699 0.418295 -0.034776 0.669965 0.272417 -0.236317 0.263857 -0.012759 -0.383920 0.261393 -0.259023 -0.463341 -0.847335 0.354796 -0.750062 -0.675758 0.421335 0.276509 -0.072027 -0.299947 -0.223322 0.256899 0.228161 -0.376973 -0.513401 -0.087597 0.231432 0.155140 -0.258117 -0.059869 0.093828 -0.043349 -0.054227 -0.766546 0.055118 0.241674 -0.244873 0.039537 0.564014 0.012276 0.041083 -0.137198 0.051810 -0.178572 0.823456 0.015540 0.405728 -0.166511 0.281462 -0.371467 0.403263 0.259703 0.030077 -0.145047 -0.019979 -0.035584 0.212215 -0.291169 0.183366 -0.234536 0.286294 0.541126 -0.052199 -0.500968 -0.385485 -0.419090 -0.782783 0.143936 -0.454774 -0.227258 0.380709 0.496888 0.549135 0.318998 0.467420 -0.561687 0.082271 -0.172916 0.067589 0.352625 0.266574 0.301098 -0.310791 -0.413158 0.389503 0.192498 0.180835 0.266885 -0.222805 0.074430 -0.344926 -0.090652 0.505976 0.350749 -0.065260 0.558836 0.421529 0.625823 -0.314476 0.097466 0.194322 -0.175871 0.095194 -0.031384 -0.647472 0.286384 0.110030 0.199476 0.498862 -0.139231 -0.025529 0.168331 -0.152345 0.179428 -0.368578 0.115804 -0.413068 -0.107872 -0.424820 0.312787 -0.293838 -0.153210 -0.267222 -0.223274 0.757700 -0.721586 -0.245665 0.718040 -0.198832 0.363904 -0.480559 0.534293 -0.322896 0.554608 -0.170329 -0.164689 0.010523 -0.179968 -0.252252 0.056942 0.356194 -0.137722 -0.100814 0.591629 0.168573 -0.039077 0.109071 0.494080 -0.230548 0.362764 -0.299567 0.634980 -0.080263 0.015194 0.002509 -0.249995 -0.008518 -0.254943 0.089823 0.589661 0.283856 0.282322 0.203011 0.259965 0.299451 -0.386830 0.397480 -0.040784 0.204574 -0.428081 -0.084869 0.059369 0.308404 -0.146328 0.125559 -0.696048 -0.643792 -0.939170 -0.232268 -0.257649 0.006210 0.172507 -0.118479 -0.153987 -0.343636 -0.557212 0.749854 -0.292031 0.163676 0.272620 0.284413 0.539861 0.636119 -0.147146 -0.083879 -0.051491 -0.037472 -0.023535 0.016290 -0.447475 0.568779 -0.318233 0.127694 0.703321 -0.179538 0.297201 0.101045 0.561931 -0.374362 0.689032 0.268354 -0.379135 0.338814 0.697791 0.566288 0.057529 -0.430053 -PE-benchmarks/topological-sorting.cpp__std::stack > >::top() = 0.021845 -0.401381 0.815859 0.756899 -0.218413 0.228533 -0.016462 -0.510148 0.548176 0.005113 -0.071297 0.126257 -0.480698 0.251453 -0.031535 0.405280 -0.673653 -0.379722 -0.241286 -0.383038 -0.295844 -0.372167 0.211571 0.164777 0.296202 0.447297 -0.367985 0.027988 -0.359836 -0.253553 0.462857 -0.142983 0.385852 0.450887 0.164502 -1.180226 0.535000 0.405090 -0.178129 -0.572633 0.110421 -0.322313 0.082896 -0.352782 -0.203821 0.164135 -0.087768 0.172901 0.384318 0.109652 0.045554 0.114815 0.097882 0.763747 -0.308047 0.367537 0.209685 -0.050110 -0.126289 -0.035295 0.176928 0.221682 0.319491 0.287371 -0.134560 -0.501612 -0.178805 -0.348169 -0.570938 0.488828 -0.051208 -0.087684 -0.524649 -0.315286 -0.345943 -0.169042 -0.621140 0.587436 0.766469 -0.580760 0.372393 0.086638 0.140106 -0.020123 0.295418 -0.003665 0.529494 0.198746 -0.174891 0.151513 -0.174966 -0.256331 0.166331 -0.123044 -0.320071 -0.587199 0.282896 -0.531654 -0.580897 0.238360 0.270557 -0.031716 -0.431713 -0.130093 0.207418 0.249365 -0.306289 -0.500719 -0.066618 0.166044 0.220473 -0.219999 -0.104253 0.055689 -0.160278 -0.293220 -0.691716 -0.025181 0.062362 -0.272892 0.022566 0.472142 -0.224023 -0.034080 -0.081064 0.093756 -0.231875 0.761587 -0.059793 0.340571 0.029987 0.114650 -0.223884 0.093207 0.239389 0.482355 -0.139669 -0.107538 -0.202397 0.111654 -0.373772 -0.025763 -0.013412 0.162903 0.515796 -0.147508 -0.443816 -0.192333 -0.278591 -0.848664 0.109556 -0.464587 0.009001 0.449936 0.439868 0.483043 0.377910 0.692528 -0.501377 0.172638 -0.109962 -0.057733 0.438347 0.348312 0.299390 -0.269991 -0.408461 0.353512 0.016187 0.162221 0.208901 -0.134730 0.015159 -0.406209 -0.176991 0.375792 0.280674 -0.026989 0.417603 0.323358 0.372653 -0.358502 0.193579 0.298211 -0.093612 0.106868 0.019600 -0.584530 0.295454 0.059421 -0.017270 0.381422 -0.143035 -0.166557 0.149511 -0.142865 0.223550 -0.394496 0.080524 -0.357525 -0.001785 -0.553952 0.152856 -0.176342 -0.204853 -0.169152 -0.128986 0.672339 -0.467329 -0.308244 0.654782 -0.070184 0.412122 -0.559381 0.405870 -0.304194 0.534290 -0.216918 -0.131342 0.023353 -0.173152 -0.261545 0.010448 0.302110 -0.087471 -0.087853 0.615103 0.184940 -0.066884 0.056481 0.474690 -0.041939 0.439832 -0.223704 0.608369 -0.031499 -0.032539 0.111755 -0.239049 -0.034209 -0.283261 0.065975 0.665242 0.405129 0.369179 0.336929 0.214206 0.400842 -0.329527 0.315139 -0.017532 0.196052 -0.285697 -0.049337 0.140873 0.368364 -0.210687 0.178976 -0.573376 -0.828351 -0.609083 -0.396639 -0.150179 -0.034897 0.144659 -0.115503 -0.118617 -0.317794 -0.424806 0.370410 -0.280668 0.549992 0.190207 0.214267 0.438119 0.628140 -0.360588 -0.096609 0.104251 0.082673 0.017615 0.053089 -0.533024 0.532385 -0.300387 0.072029 0.699942 -0.224610 0.225127 -0.045303 0.649996 -0.323372 0.729279 0.212312 -0.299200 0.502286 0.432852 0.477368 0.308733 -0.354500 -PE-benchmarks/topological-sorting.cpp__std::stack > >::pop() = 0.283674 -0.729126 1.875140 1.654646 -0.312602 0.530983 -0.081447 -1.365304 1.245851 0.668123 -0.255444 0.307670 -0.778070 0.522117 -0.304707 1.189482 -1.382643 -0.646309 -0.534216 -0.947700 -0.684373 -0.781337 0.459649 0.102808 0.684549 0.686943 -0.772850 0.203025 -0.415084 -1.640777 0.643794 -0.259407 0.593430 0.195251 0.316686 -2.227903 1.497116 0.973749 -0.457002 -1.228764 0.230049 -0.346059 -0.252397 -0.203113 -0.325922 0.429924 -0.247598 0.613818 0.742376 0.584257 0.471568 0.421179 0.723989 1.917640 -0.525749 0.958854 0.519454 0.023508 -0.137741 0.332927 0.403896 0.569049 0.491603 0.692434 0.194641 -1.028163 -0.278068 -0.321059 -1.013575 1.165761 -0.265980 -0.670079 -1.000837 -0.662625 -0.629091 -0.150334 -1.841326 1.132338 1.672991 -1.068733 0.729667 0.329899 0.216092 -0.065798 0.499720 -0.189079 1.283566 0.532594 -0.349533 0.105450 0.105897 -0.702089 0.554290 -0.366151 -0.842201 -1.647522 0.699821 -1.368978 -1.244836 0.635068 0.692286 -0.264865 -0.706602 -0.466561 0.591067 0.261725 -0.538880 -1.020847 -0.191310 0.435789 0.240941 -0.499573 -0.175146 -0.058744 -0.128477 0.258875 -1.455689 -0.047819 0.164107 -0.476426 -0.164564 0.898174 0.096912 -0.128697 -0.220196 0.302607 -0.347467 1.186806 -0.214585 1.148716 -0.073870 0.865989 -0.545216 0.757605 0.652034 -0.284292 -0.108754 0.050833 -0.383869 0.428609 -0.835990 0.547602 -0.604556 0.460712 1.180523 -0.139001 -0.999708 -0.419127 -0.580467 -1.562464 0.364779 -0.951781 -0.635661 0.448862 0.980162 0.770054 0.792204 0.847660 -1.236684 0.231177 -0.261083 0.199553 0.776475 0.137526 0.535862 -0.529676 -0.927988 0.683343 0.431017 0.249119 0.329393 -0.354267 0.045284 -0.739328 -0.232229 0.877214 0.507175 -0.235965 0.816612 0.735316 1.584090 -0.625749 0.359479 0.703108 -0.302023 0.202391 -0.081817 -1.384494 0.495070 0.186951 0.655823 1.091316 -0.215448 -0.163948 0.306663 -0.313030 0.337724 -0.718568 0.237641 -0.809162 -0.131086 -0.784092 0.403237 -0.366451 -0.265643 -0.297935 -0.240307 1.351149 -1.318933 -0.622913 1.735257 -0.608132 0.430791 -1.031182 1.182345 -0.597133 0.706529 -0.307586 -0.196396 -0.031446 -0.253478 -0.721488 0.166575 0.595013 -0.212953 0.129521 1.397967 0.324635 -0.034691 -0.001990 0.970127 -0.450304 0.806202 -0.644363 1.400267 -0.125854 -0.128170 -0.196822 -0.493596 -0.124062 -0.808517 0.173990 0.971957 0.547115 0.362572 0.442545 0.403587 0.905817 -0.738077 1.164612 0.007965 0.169915 -0.701744 -0.143919 0.426719 0.361513 -0.566589 0.608166 -1.297188 -1.183433 -1.759644 -0.654274 -0.427611 -0.109077 0.568664 -0.430452 -0.314695 -0.664530 -1.101850 1.539055 -0.493870 0.170239 0.679155 0.548866 0.811739 1.328854 -0.318824 0.143380 -0.457199 -0.090768 -0.031803 -0.343149 -0.662839 1.195702 -0.449204 0.205157 1.264643 -0.326400 0.550215 -0.066784 0.792196 -0.704489 1.251198 0.484503 -0.279178 0.802427 0.993830 1.182322 0.176027 -0.770400 -PE-benchmarks/topological-sorting.cpp__std::stack > >::~stack() = -0.017376 -0.568191 1.060115 0.843598 -0.209515 0.333670 0.199589 -0.684995 0.869578 0.150204 -0.231596 0.028592 -0.740865 0.214217 -0.270916 0.468967 -0.877193 -0.574504 -0.166581 -0.457740 -0.296011 -0.682276 0.408594 0.150212 0.392973 0.468042 -0.346878 -0.010244 -0.520034 -0.510216 0.708195 -0.276100 0.425143 0.425875 0.092242 -1.437012 0.747869 0.496474 -0.255891 -0.785742 0.149750 -0.336044 -0.011792 -0.275277 -0.178377 0.183125 -0.009821 0.546041 0.516851 0.205100 0.175326 -0.083418 0.131808 1.117935 -0.477753 0.545520 0.258731 0.002862 -0.110222 0.181895 0.235558 0.217504 0.398552 0.640421 -0.135312 -0.460265 -0.067675 -0.428085 -0.871859 0.739452 -0.176064 -0.053692 -0.642776 -0.246990 -0.431600 -0.110301 -0.813742 0.718229 1.210452 -0.631678 0.690564 0.177921 0.307828 -0.198211 0.244042 -0.045296 0.676672 0.250407 -0.392952 -0.013755 -0.349187 -0.258833 0.149696 -0.186642 -0.287937 -0.817456 0.438632 -0.749273 -0.795198 0.261294 0.282314 -0.043391 -0.427830 0.004831 0.376648 0.285767 -0.462368 -0.794865 -0.175683 0.187259 0.030846 -0.185349 -0.002543 0.091652 -0.242644 -0.304659 -0.813993 -0.269059 0.024698 -0.561468 -0.012114 0.606661 -0.260270 0.114765 0.002922 0.154342 -0.147274 0.815035 0.018138 0.473319 0.160596 0.212773 -0.343537 0.170299 0.356891 0.551117 -0.061312 0.001508 -0.140797 0.200021 -0.496098 -0.058801 -0.196629 0.118614 0.589836 -0.319719 -0.554591 -0.187973 -0.212119 -1.117508 0.193945 -0.673977 -0.156406 0.396049 0.630598 0.567327 0.471881 0.965385 -0.816362 0.308097 -0.160435 -0.034220 0.419033 0.329383 0.433389 -0.336377 -0.579223 0.302681 0.155976 0.174692 0.185537 -0.342868 -0.085462 -0.651864 -0.258208 0.426727 0.370909 -0.132712 0.434172 0.387584 0.466633 -0.640701 0.263789 0.484371 -0.009487 0.090784 0.060182 -0.972117 0.514438 0.043698 0.169018 0.414265 -0.122334 -0.222295 0.235036 -0.280593 0.242657 -0.587786 0.036118 -0.540178 -0.067122 -0.695247 0.311927 -0.221844 -0.337749 -0.176053 -0.055352 0.811036 -0.573231 -0.422904 0.935466 -0.105904 0.519364 -0.744854 0.610789 -0.414416 0.644302 -0.228376 -0.098432 -0.030309 -0.096650 -0.188197 -0.091434 0.322292 -0.068827 0.243025 0.867260 0.252054 0.032931 0.179061 0.710252 -0.119725 0.353562 -0.311333 0.660543 -0.023487 -0.268458 0.144988 -0.378187 0.064401 -0.346947 0.124907 0.924016 0.673814 0.256512 0.639454 0.242992 0.490893 -0.390001 0.447160 0.025900 0.397916 -0.351835 -0.045737 0.131071 0.359408 -0.430605 0.398076 -0.836640 -1.207269 -0.775045 -0.662099 -0.289522 -0.326155 0.305621 -0.150640 0.030207 -0.554895 -0.518116 0.504405 -0.357300 0.630458 0.319973 0.342293 0.542579 0.876575 -0.457985 -0.090503 0.124633 0.229296 -0.183418 -0.060958 -0.575046 0.554849 -0.521872 0.232893 0.812078 -0.252956 0.140738 -0.177895 0.747443 -0.554527 0.930836 0.432672 -0.283499 0.689134 0.405205 0.789740 0.488543 -0.467655 -PE-benchmarks/topological-sorting.cpp__main = -0.337621 -3.301124 4.774890 4.024604 -0.536113 1.682861 0.828329 -2.008066 2.832511 0.395133 -1.333915 1.424275 -2.993474 0.603557 -0.726481 1.732904 -3.797966 -3.073780 -0.076147 -0.972609 -1.176810 -2.593216 0.954280 1.927493 1.653100 2.691413 -1.977137 -0.304183 -2.911566 -2.117922 2.751921 -1.240336 2.438012 2.870040 0.524992 -7.233095 3.121765 2.407645 -0.800334 -3.679697 0.571183 -1.453190 -0.310270 -1.910023 -1.342856 1.058050 0.973532 2.271564 1.363881 0.961215 -0.211190 -0.608352 1.109203 4.971563 -0.941571 2.751527 2.521109 -0.040700 0.129847 -0.190723 1.309867 0.203973 2.209080 2.714112 -1.072923 -1.626349 -0.521781 -2.102734 -3.585089 2.578994 0.263900 0.425298 -2.655059 -0.749528 -2.109435 -0.494043 -1.290537 2.995448 5.530953 -2.960122 3.925899 1.362906 2.482291 -0.639498 1.296749 0.086193 2.594700 1.595693 -2.148691 -0.120301 -3.079574 -1.604529 0.147871 -0.397054 -1.622789 -2.936023 1.592539 -3.635447 -3.755132 1.523826 0.549518 -0.206296 -1.764038 -0.270590 2.197504 1.428805 -1.794351 -3.283368 -1.180756 0.581844 -0.667738 -1.288793 -0.327645 0.984006 -0.958092 -1.042537 -3.928413 -0.896148 1.061338 -2.740951 0.376622 2.720480 -1.378026 1.389332 -0.538583 0.298421 -0.711648 3.301760 1.101402 1.266066 1.389074 -0.258716 -1.302214 0.525579 1.483293 3.127920 -1.379333 -1.051660 -0.084509 1.162840 -0.973084 -0.247374 -0.327957 1.177733 2.273237 -1.151658 -2.935028 -2.237471 -1.172659 -4.646005 0.964805 -2.974673 -0.445704 2.510712 2.884817 1.615231 1.837144 4.086946 -3.207600 2.360104 -0.600094 0.490270 1.282821 1.265091 1.642336 -1.696456 -2.613707 2.242749 1.183525 0.912193 1.035994 -1.794112 0.205626 -2.553504 -2.359290 1.937901 1.229948 -0.170319 2.301747 1.296807 2.744703 -2.780956 0.717285 1.368149 -0.020612 0.366173 0.407803 -4.115940 2.478600 -0.100519 0.406232 2.637100 -0.314294 -1.990552 1.392428 -0.421010 0.583796 -2.511600 1.256380 -2.375044 -0.388548 -2.722498 0.994227 -1.281399 -1.456789 -1.338477 -0.364923 4.248762 -2.861668 -2.594523 2.949545 -0.264509 2.546810 -4.352604 2.478834 -2.101543 3.260808 -0.650996 -1.357616 0.091329 -1.094948 -0.562977 -0.491340 1.774259 -0.896972 0.917457 3.196754 1.017625 0.269873 1.286876 2.308652 0.071962 1.267614 -1.147848 2.225678 -0.115846 -1.311835 0.161719 -1.547751 1.073217 -0.895734 0.105557 3.214762 3.032632 1.234865 2.555764 1.709450 1.637831 -2.346205 0.784733 -0.002445 2.544371 -1.797453 -0.523931 -0.521905 1.542368 -1.171949 2.002419 -3.840751 -5.340436 -3.741437 -3.481695 -1.821882 -0.680000 1.546777 -0.383838 0.193228 -3.163916 -2.082341 1.686804 -1.514136 3.134650 2.228369 1.704041 3.033475 3.111275 -1.885535 -1.537071 0.865010 1.149807 -1.068112 0.393567 -3.158689 2.223684 -2.054776 1.675188 3.703831 -1.178573 0.612502 -1.084554 3.972377 -2.106320 5.083204 2.167359 -2.783283 2.042101 1.278507 3.017093 0.953068 -2.450004 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/topological-sorting.cpp__std::deque >::~deque() = 1.020281 -2.137489 5.285234 4.090734 -1.207896 1.545323 0.380925 -3.909147 3.590568 0.863375 -1.197912 0.433506 -2.592197 1.045117 -2.122983 2.401165 -4.192626 -2.030276 -1.391023 -2.603472 -1.482122 -2.505187 1.663199 0.667896 2.065614 2.151298 -1.699590 0.369263 -1.835553 -3.659666 2.512236 -0.737379 1.424186 0.736155 0.709319 -5.560744 3.997469 2.823553 -1.239423 -3.483617 0.853937 -0.973313 -1.288347 -0.619151 -0.965130 0.775848 -0.723092 2.890795 2.004017 1.287115 0.818545 0.741500 1.427812 5.345258 -1.559913 2.732965 1.464358 0.350803 -0.158403 1.348652 1.033941 1.525864 1.109929 2.291352 0.487732 -2.451719 -0.272936 -1.174217 -2.896281 3.459572 -0.852310 -1.527025 -2.510038 -1.416025 -2.313896 0.023462 -4.103920 3.358839 4.933391 -2.806542 2.413519 0.693885 0.665540 -0.877099 0.934338 -0.562702 3.288783 1.438390 -0.912627 -0.346433 -1.022872 -1.409409 1.284303 -1.548162 -2.268109 -4.992549 2.435726 -4.778059 -3.590635 1.197528 1.921855 -1.248691 -0.965346 -0.461659 1.483469 0.542597 -1.632113 -2.930006 -0.393574 1.378555 0.238036 -0.975643 -0.085399 0.622718 -0.298771 0.183393 -3.740932 -0.297886 0.301629 -1.579018 0.001361 2.486769 0.083079 -0.060450 -0.298800 0.870681 -0.641629 2.939833 -0.552238 2.651443 0.112113 2.479806 -0.454618 1.967207 1.764544 -0.094082 -0.373021 0.420566 -0.547824 1.376337 -2.185393 0.830370 -2.186622 0.591952 2.034601 -1.114389 -2.590903 -0.909138 -1.599434 -4.481234 0.597316 -2.646131 -2.536408 1.201230 2.762794 2.571106 1.963651 2.758721 -3.475183 0.633376 -0.310136 0.328718 1.706169 0.181909 1.534444 -1.469984 -2.800499 1.512119 0.572966 0.962020 0.479750 -0.924469 -0.355785 -2.593736 -0.860222 2.142422 1.609565 -0.686530 2.165538 2.329930 2.452556 -2.275108 1.001526 2.127945 -0.906374 0.355660 0.051524 -4.321988 1.642500 0.461988 2.183039 2.900308 -0.465082 -0.148969 1.072584 -1.074822 0.887156 -2.343963 0.261397 -2.450027 -0.558653 -2.515658 1.498816 -0.775061 -0.940252 -1.135425 -1.144250 3.585735 -3.953307 -1.895669 5.003850 -1.042250 1.683237 -2.925206 2.425302 -1.629455 2.388873 -0.057230 -0.109255 0.005330 -1.069954 -1.971479 0.099324 1.325054 -0.604283 1.218002 3.832111 0.902939 0.032392 0.167864 3.005831 -1.720307 2.037491 -2.122754 3.379237 -0.198630 -1.583091 -0.194032 -1.484002 -0.491620 -2.366825 0.898473 3.442915 1.853959 1.420517 2.026329 0.956747 2.561011 -1.827952 2.966581 0.047175 0.496867 -1.772826 -0.507186 1.264501 1.055275 -1.762748 1.947704 -3.942402 -4.556493 -5.150050 -2.718109 -0.868456 -2.371142 1.857251 -1.213254 -0.625381 -2.283491 -3.217163 3.482765 -1.339365 1.210113 2.233966 1.671568 2.155389 3.783494 -1.417872 0.973364 -0.334407 1.004282 -0.388093 -1.143680 -2.124632 2.951591 -1.498787 0.791219 3.976530 -0.864553 1.553946 -0.826596 2.198632 -2.487049 3.498985 1.610023 -1.259222 2.325173 2.162772 2.981919 1.692987 -2.178846 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.200099 -0.257827 0.369605 0.339224 0.108585 0.114140 0.250148 -0.149716 0.453760 0.315836 -0.014621 -0.044148 -0.393642 0.081980 0.131976 0.277090 -0.187645 -0.318739 0.043393 -0.176082 -0.111823 -0.322916 0.162558 -0.109022 0.143614 -0.092196 -0.114081 -0.174579 -0.333724 -0.119724 0.288126 -0.185562 0.203571 0.127894 -0.039703 -0.646967 0.237307 0.121363 -0.137087 -0.310868 0.060101 -0.249357 0.245205 -0.078414 0.183133 0.123049 0.125745 0.098322 0.291483 0.128160 0.264644 -0.147948 -0.032307 0.508355 -0.380490 0.199866 0.038194 -0.055346 -0.111109 0.117819 0.074065 -0.019968 0.268109 0.283526 -0.197044 -0.175453 -0.083406 -0.225752 -0.456146 0.228195 -0.023081 0.060678 -0.339195 -0.056731 -0.013294 -0.188983 -0.714534 0.197942 0.524601 -0.277208 0.374588 0.156710 0.270798 -0.006302 0.180996 0.041175 0.268912 0.016929 -0.292962 0.016984 -0.212616 -0.088226 -0.027658 0.064249 0.037870 -0.113680 0.094350 0.187973 -0.331264 0.165783 0.018010 0.175595 -0.404130 0.092798 0.160833 0.236636 -0.245291 -0.446020 -0.216028 0.005627 -0.015639 -0.076358 0.024149 -0.277788 -0.229425 -0.324755 -0.324988 -0.197472 -0.021000 -0.323547 -0.249646 0.315648 -0.292711 0.077529 0.052248 0.069385 -0.106537 0.381204 0.088460 0.225914 0.207610 -0.176380 -0.783989 0.005238 0.185767 0.522635 0.055403 0.105191 -0.158778 -0.013312 -0.255870 -0.004940 0.164646 0.207314 0.421380 -0.199243 -0.189029 -0.077559 0.189438 -0.365715 0.237545 -0.282232 0.280459 -0.018998 0.272489 0.243159 0.257751 0.578136 -0.375444 0.255824 -0.182882 -0.036783 0.247469 0.280261 0.260906 -0.153739 -0.164288 0.018839 0.262415 -0.060651 0.142861 -0.183142 0.013331 -0.328138 -0.057265 0.026609 0.076150 -0.161526 0.206631 0.096135 0.402277 -0.442470 0.137269 0.219859 0.082512 0.054644 0.022044 -0.369023 0.277105 0.034536 -0.155954 0.043137 -0.036424 -0.254536 0.054124 -0.160042 0.121241 -0.197321 0.005006 -0.207709 -0.114026 -0.254035 0.129442 -0.189177 -0.251453 0.053411 0.194534 0.332357 0.187861 -0.150266 0.213694 -0.120493 0.057801 -0.361115 0.620726 -0.231004 0.082099 -0.366598 -0.076878 -0.125827 0.396520 0.038103 -0.054055 0.157595 -0.057691 0.162399 0.462864 0.161191 0.081919 0.128645 0.323727 0.090893 0.035909 -0.013101 0.294041 -0.065948 0.030414 0.127960 -0.164556 0.201673 0.026374 -0.046538 0.410863 0.391832 -0.085917 0.250968 0.154809 0.181092 -0.146027 0.157040 0.026187 0.379229 -0.112644 0.046396 -0.035638 0.032092 -0.166722 0.127152 -0.320854 -0.369631 0.185892 -0.198461 -0.088451 0.218688 -0.021802 0.048503 0.131873 -0.361845 -0.079750 -0.011820 -0.183901 0.153536 -0.028817 0.096700 0.247923 0.368351 -0.182135 -0.246211 0.010664 -0.071446 -0.127717 -0.053408 -0.139368 0.203605 -0.362945 0.125268 0.154600 -0.100755 -0.093661 0.023121 0.429459 -0.199889 0.460426 0.190324 0.026144 0.396897 0.298568 0.640249 0.023390 -0.147667 -PE-benchmarks/topological-sorting.cpp__std::deque >::begin() = 0.295726 -0.622543 1.810173 1.521337 -0.253843 0.482606 -0.038832 -1.327462 1.338487 0.663037 -0.192555 0.283166 -0.689816 0.567558 -0.462814 1.185311 -1.320204 -0.645736 -0.483245 -1.059625 -0.812173 -0.707763 0.309178 -0.072619 0.650915 0.376491 -0.735644 0.148127 -0.501900 -1.393332 0.572056 -0.308854 0.380276 -0.216328 0.369784 -2.143096 1.419259 0.806587 -0.505446 -1.115076 0.190093 -0.533395 -0.050498 -0.257847 -0.063629 0.294685 -0.189159 0.741880 0.844860 0.532176 0.533594 0.522610 0.522284 2.259556 -0.727697 0.919475 0.456667 0.052833 -0.184246 0.503327 0.353889 0.452015 0.408105 0.546479 0.132559 -1.046556 -0.328266 -0.339412 -0.731677 1.086446 -0.162444 -0.697033 -1.038739 -0.618393 -0.746892 -0.326799 -2.605801 1.099368 1.583218 -1.213506 0.631898 0.353540 0.421785 0.185815 0.678390 -0.146214 1.449543 0.438827 -0.441398 0.155699 0.007607 -0.449970 0.513632 -0.573642 -0.733318 -1.965155 0.618383 -1.338494 -1.273392 0.693631 0.669089 -0.138148 -0.576398 -0.442568 0.617010 0.157183 -0.671742 -1.060543 -0.190131 0.411297 0.221877 -0.429632 0.114396 -0.459184 0.016270 0.113817 -1.436561 0.019736 0.182093 -0.362110 -0.369816 1.033823 0.109219 -0.211799 -0.184403 0.293279 -0.378559 1.190652 -0.263474 1.117813 -0.318299 0.874545 -1.108619 0.969650 0.648401 -0.354345 -0.066544 0.332561 -0.425913 0.408322 -0.947582 0.550117 -0.624878 0.606370 0.906197 -0.228291 -0.969708 -0.414349 -0.397391 -1.310127 0.451770 -0.816601 -0.801420 0.069214 0.956483 1.047108 0.829962 0.589350 -1.058010 0.229473 -0.339457 0.295403 0.909466 0.017571 0.629579 -0.559296 -0.786837 0.543738 0.462117 0.159014 0.322090 -0.369508 0.120559 -0.791767 0.018782 0.607320 0.584223 -0.334194 0.945403 0.750762 1.448922 -0.934713 0.375464 0.696160 -0.348465 0.219006 -0.137192 -1.224670 0.492663 0.317539 0.580363 0.962653 -0.186728 -0.167678 0.218498 -0.272328 0.449091 -0.587933 -0.036372 -0.722080 -0.456412 -0.629339 0.655695 -0.497980 -0.213758 -0.318050 -0.438294 1.278548 -1.391847 -0.461737 1.722514 -0.673954 0.376925 -0.872416 1.380149 -0.628302 0.580932 -0.351517 -0.075681 -0.115043 0.180262 -0.778022 0.374079 0.602113 -0.328044 0.166371 1.353098 0.375544 0.241769 0.004040 1.040606 -0.543326 0.711504 -0.563260 1.425582 -0.229422 -0.180215 -0.134744 -0.460515 -0.117468 -0.644474 0.358307 0.974938 0.453984 0.367329 0.371634 0.521240 0.869718 -0.716023 1.077968 -0.160291 0.084295 -0.755679 -0.132123 0.410727 0.130324 -0.491731 0.421591 -1.315140 -0.993739 -1.726262 -0.347031 -0.190611 -0.080490 0.260857 -0.396476 -0.288668 -0.791271 -1.009740 1.459903 -0.521212 -0.338866 0.623219 0.485171 0.805887 1.351733 -0.274525 0.091673 -0.437459 -0.253412 0.033200 -0.369041 -0.686830 1.233396 -0.611063 0.232948 1.175542 -0.323287 0.465524 0.249184 0.684893 -0.651113 1.136741 0.445405 -0.240708 0.722960 1.386154 1.425592 0.151028 -0.734066 -PE-benchmarks/topological-sorting.cpp__std::deque >::end() = 0.295726 -0.622543 1.810173 1.521337 -0.253843 0.482606 -0.038832 -1.327462 1.338487 0.663037 -0.192555 0.283166 -0.689816 0.567558 -0.462814 1.185311 -1.320204 -0.645736 -0.483245 -1.059625 -0.812173 -0.707763 0.309178 -0.072619 0.650915 0.376491 -0.735644 0.148127 -0.501900 -1.393332 0.572056 -0.308854 0.380276 -0.216328 0.369784 -2.143096 1.419259 0.806587 -0.505446 -1.115076 0.190093 -0.533395 -0.050498 -0.257847 -0.063629 0.294685 -0.189159 0.741880 0.844860 0.532176 0.533594 0.522610 0.522284 2.259556 -0.727697 0.919475 0.456667 0.052833 -0.184246 0.503327 0.353889 0.452015 0.408105 0.546479 0.132559 -1.046556 -0.328266 -0.339412 -0.731677 1.086446 -0.162444 -0.697033 -1.038739 -0.618393 -0.746892 -0.326799 -2.605801 1.099368 1.583218 -1.213506 0.631898 0.353540 0.421785 0.185815 0.678390 -0.146214 1.449543 0.438827 -0.441398 0.155699 0.007607 -0.449970 0.513632 -0.573642 -0.733318 -1.965155 0.618383 -1.338494 -1.273392 0.693631 0.669089 -0.138148 -0.576398 -0.442568 0.617010 0.157183 -0.671742 -1.060543 -0.190131 0.411297 0.221877 -0.429632 0.114396 -0.459184 0.016270 0.113817 -1.436561 0.019736 0.182093 -0.362110 -0.369816 1.033823 0.109219 -0.211799 -0.184403 0.293279 -0.378559 1.190652 -0.263474 1.117813 -0.318299 0.874545 -1.108619 0.969650 0.648401 -0.354345 -0.066544 0.332561 -0.425913 0.408322 -0.947582 0.550117 -0.624878 0.606370 0.906197 -0.228291 -0.969708 -0.414349 -0.397391 -1.310127 0.451770 -0.816601 -0.801420 0.069214 0.956483 1.047108 0.829962 0.589350 -1.058010 0.229473 -0.339457 0.295403 0.909466 0.017571 0.629579 -0.559296 -0.786837 0.543738 0.462117 0.159014 0.322090 -0.369508 0.120559 -0.791767 0.018782 0.607320 0.584223 -0.334194 0.945403 0.750762 1.448922 -0.934713 0.375464 0.696160 -0.348465 0.219006 -0.137192 -1.224670 0.492663 0.317539 0.580363 0.962653 -0.186728 -0.167678 0.218498 -0.272328 0.449091 -0.587933 -0.036372 -0.722080 -0.456412 -0.629339 0.655695 -0.497980 -0.213758 -0.318050 -0.438294 1.278548 -1.391847 -0.461737 1.722514 -0.673954 0.376925 -0.872416 1.380149 -0.628302 0.580932 -0.351517 -0.075681 -0.115043 0.180262 -0.778022 0.374079 0.602113 -0.328044 0.166371 1.353098 0.375544 0.241769 0.004040 1.040606 -0.543326 0.711504 -0.563260 1.425582 -0.229422 -0.180215 -0.134744 -0.460515 -0.117468 -0.644474 0.358307 0.974938 0.453984 0.367329 0.371634 0.521240 0.869718 -0.716023 1.077968 -0.160291 0.084295 -0.755679 -0.132123 0.410727 0.130324 -0.491731 0.421591 -1.315140 -0.993739 -1.726262 -0.347031 -0.190611 -0.080490 0.260857 -0.396476 -0.288668 -0.791271 -1.009740 1.459903 -0.521212 -0.338866 0.623219 0.485171 0.805887 1.351733 -0.274525 0.091673 -0.437459 -0.253412 0.033200 -0.369041 -0.686830 1.233396 -0.611063 0.232948 1.175542 -0.323287 0.465524 0.249184 0.684893 -0.651113 1.136741 0.445405 -0.240708 0.722960 1.386154 1.425592 0.151028 -0.734066 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::~_Deque_base() = 1.309507 -2.149234 6.116025 5.487561 -1.470730 1.728622 -1.281929 -4.492688 3.186482 1.951360 -0.882297 1.913236 -1.528692 1.735315 -0.724422 3.998520 -4.779347 -1.463268 -1.836240 -2.934002 -2.475600 -1.773501 0.678700 0.879680 2.084320 2.933233 -2.780922 1.399341 -0.429566 -6.387282 0.978687 -0.567154 1.766551 0.320757 1.693185 -7.448769 5.067144 3.309550 -1.285456 -3.984511 0.591429 -0.774440 -1.236054 -0.601348 -1.795195 1.509489 -0.866905 1.603009 1.861867 1.983443 0.849300 2.085346 3.155032 5.907698 -0.497798 3.105988 2.221741 -0.175802 -0.354986 0.535111 1.406143 1.764072 1.383354 1.535297 1.020650 -3.526115 -1.061304 -0.471073 -2.376618 3.340713 -0.585181 -2.928879 -2.911735 -2.583289 -2.331657 -0.423695 -5.128783 3.721730 4.818992 -3.410039 1.857158 0.938429 0.387466 0.251159 2.044159 -0.723706 4.505727 2.048391 -0.794391 0.784396 1.420481 -2.926370 2.328713 -1.180202 -3.231880 -5.654693 1.987632 -5.550156 -3.841165 2.418523 2.410588 -1.249370 -2.163403 -2.590333 2.136487 0.561076 -1.413911 -2.652189 -0.303454 1.512376 0.734806 -1.956225 -0.908108 0.269139 0.116150 2.125954 -4.725617 0.567545 1.194125 -0.742994 -0.093271 2.687539 1.310204 -0.576168 -1.262334 0.855206 -1.118087 3.600224 -0.974993 3.656215 -1.031187 3.392518 -0.391799 3.007912 1.777668 -2.937471 -0.777914 -0.442481 -0.982763 1.682560 -2.306805 2.372357 -2.537176 2.010036 3.847249 0.525206 -3.408385 -1.803008 -2.885384 -4.793890 0.952075 -2.683295 -2.932635 1.953368 2.996196 1.817681 2.246865 1.058510 -3.410004 0.313397 -0.694834 1.111642 2.537428 -0.197908 1.374667 -1.749808 -2.767024 2.819869 1.281823 1.130507 1.085943 -0.918943 0.515769 -1.542208 -0.937759 3.445040 1.799548 -0.091812 2.742198 2.381508 6.223211 -0.866054 0.677925 1.692066 -1.344955 0.625903 -0.524894 -3.832644 0.971365 0.716953 2.790011 4.342675 -0.726211 -0.260912 0.828663 -0.282813 0.920105 -1.976272 1.174568 -2.425155 0.004262 -1.774411 0.803541 -1.182873 -0.283731 -1.594373 -1.473791 4.458119 -5.584332 -2.156565 5.720604 -2.600590 1.714952 -3.251856 3.132153 -1.800745 2.422707 -0.619322 -0.813534 0.222797 -2.064923 -2.835794 1.244617 2.054255 -0.716122 -0.421275 3.776180 0.820657 -0.206343 -0.391733 2.470593 -1.717841 2.877737 -2.125678 4.657601 -0.481033 0.199843 -1.324144 -1.296933 -0.793594 -2.648210 0.610618 1.901390 0.713437 1.404394 0.539567 1.465477 2.601595 -2.649582 3.903486 -0.225529 -0.195884 -2.487811 -0.837706 1.354911 1.420749 -1.147783 1.685670 -4.059518 -2.796726 -7.302434 -1.601916 -1.667620 0.239569 2.060451 -1.567751 -1.551222 -1.519444 -3.704538 6.392061 -1.245153 0.020952 2.617766 1.788725 2.627316 3.731168 -0.216197 0.563497 -2.226918 -0.774886 0.240683 -0.864212 -2.165601 3.933700 -0.853226 0.645293 4.119267 -0.949023 2.257198 -0.013822 1.915679 -1.913628 3.453071 1.272276 -1.366254 1.568015 3.381576 2.626979 -0.356549 -2.623904 -PE-benchmarks/topological-sorting.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.258482 -1.033440 2.606699 2.396413 -0.214751 0.766752 -0.052412 -1.875649 1.666954 1.418339 0.220529 0.700035 -0.930495 0.851096 0.174740 1.886851 -1.731970 -0.898589 -0.836474 -1.590103 -1.321000 -0.932405 0.450929 0.009371 0.832929 0.173654 -1.466862 0.015998 -0.583474 -2.553095 0.824407 -0.370783 1.113344 -0.555198 0.299726 -4.985046 2.111307 1.272542 -0.734423 -1.674442 0.354748 -0.532428 0.016993 -0.103145 -0.915625 0.404850 -0.380428 -0.157667 1.140033 0.800695 1.047470 1.045524 0.967005 3.675080 -0.930727 1.338542 0.693529 -0.292263 -0.625508 0.434252 0.582007 0.747060 1.077256 0.789444 0.242582 -1.617846 -0.306051 -0.388660 -1.761208 1.498999 -0.066230 -1.236504 -1.127014 -0.897784 -0.900789 -0.730035 -1.498210 1.359450 2.296989 -1.534795 1.054628 0.304766 0.259678 0.369465 1.080396 -0.164189 2.123929 0.646488 -0.529932 0.258987 0.601551 -0.775509 0.763628 0.426135 -1.043860 -2.269676 0.894463 -1.031271 -1.742871 1.291944 0.980838 -0.060135 -2.349265 -1.526328 1.026411 0.555511 -0.990146 -1.636085 -1.138560 0.742727 0.288830 -0.912509 -0.284552 -0.835117 -0.268359 0.138675 -2.020442 -0.006466 0.384042 -0.549561 -1.123415 1.471437 -0.264592 -0.273439 -0.370348 0.728241 -0.865870 1.533783 -0.517236 1.754304 -0.157270 0.847893 -1.680809 0.114393 0.752090 0.125891 0.056219 -0.544453 -1.050239 0.592717 -1.257693 1.204712 -0.252373 1.243928 2.492309 0.265404 -1.418194 -0.626789 -0.176295 -2.400788 0.504189 -1.421257 -0.531221 0.913954 1.401073 0.785746 1.155177 1.174340 -1.463697 1.052596 -0.564781 0.018530 1.444042 -0.140506 0.815752 -0.807278 -1.351590 0.798688 0.852824 0.614960 0.501579 -0.554962 0.105492 -0.804754 -0.800138 0.772156 0.740311 -0.256783 0.943750 1.034760 4.175432 -1.531949 0.538294 0.876422 -0.546529 0.436946 -0.399541 -1.722525 0.166339 0.517368 -0.071198 1.926921 -0.391115 -0.995578 0.324603 -0.274679 0.527144 -0.856780 0.634894 -1.080431 0.016006 -0.949768 -0.402913 -0.862894 -0.260882 -0.670809 -0.454942 2.108877 -2.070665 -1.459268 2.561327 -1.070490 0.456662 -2.284103 2.539485 -0.828121 0.841736 -1.321896 -0.484718 -0.306160 0.550001 -1.191433 0.969267 0.923292 -0.712968 0.024483 2.678678 0.479790 0.342142 -0.364309 1.405053 -0.219127 1.094280 -0.906234 2.533887 -0.399510 -0.009095 -0.515941 -0.684508 0.085419 -0.956122 0.339798 0.617344 0.832699 0.138225 0.177005 1.223898 1.231221 -1.052678 1.766349 0.025212 0.435435 -0.864030 -0.038201 0.548170 0.750487 -0.636250 0.806800 -1.778411 -1.150271 -2.246763 -1.051908 -0.463197 1.319390 0.427797 -0.548063 -0.487119 -1.257151 -1.270354 2.242737 -0.756088 0.522872 1.005974 0.866583 1.311281 1.985188 -0.372088 -0.134501 -0.953155 -0.754703 -0.017562 -0.618470 -0.873475 1.740929 -0.746334 0.513298 1.402392 -0.218559 0.850567 0.369348 1.038575 -0.843312 2.061792 0.618914 -0.112907 1.220524 1.599675 2.023449 -0.390039 -1.007958 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.784783 -1.266670 2.341424 1.991613 0.623057 1.050090 0.666355 -1.666348 2.270726 1.520779 -0.314630 0.317123 -1.519214 0.253192 -0.036932 1.321946 -1.196350 -1.581430 -0.140037 -1.130604 -0.587029 -1.794649 0.567417 0.125945 0.618299 0.041843 -1.131724 0.102168 -1.720993 -2.536583 1.273806 -0.531248 1.030159 -0.006970 -0.052067 -3.875248 2.209827 1.618845 -0.504629 -1.849354 0.251669 -0.893027 -0.132545 0.151846 0.438926 0.775491 0.119850 0.430976 1.009644 0.623222 1.319958 0.020289 0.203200 2.472579 -1.385862 1.544819 0.555020 -0.043179 -0.389363 0.782346 0.405807 0.435175 1.423591 1.765285 -0.811655 -0.902909 0.239102 -0.254738 -2.426932 1.463322 -0.055837 -0.705503 -1.130285 -0.283799 -0.637829 -0.378996 -0.688521 0.801771 2.803214 -0.764498 2.043717 0.604952 1.237509 -0.358279 1.065201 -0.371795 2.170449 0.495350 -1.476266 -0.589683 -1.357452 -0.819576 0.130639 0.869959 -0.588076 -0.274768 0.633792 -0.794327 -1.846675 0.633930 0.247357 0.096377 -2.594728 -0.068528 1.436496 0.635951 -0.537444 -2.175706 -1.223522 0.747820 -0.799567 -0.810794 -0.261207 -0.971389 -0.791842 -0.423758 -1.790982 -0.855760 0.376600 -1.270960 -1.443780 1.465089 -1.210447 0.228046 -0.159464 0.509875 -0.385607 0.802875 -0.157509 1.209697 1.098076 -0.373503 -2.550161 0.072221 0.512868 1.317119 -0.224919 -0.066944 -0.476832 0.363825 -1.142333 0.631932 -0.566657 0.931570 2.348724 -0.447189 -1.023157 -0.525775 0.559577 -2.163949 0.908237 -1.416819 -0.025196 -0.196621 1.568597 0.582198 1.090205 2.356217 -2.096893 1.540061 -0.386174 0.192322 1.079605 0.142421 0.902464 -0.873747 -1.525490 0.735433 1.205919 -0.015360 0.450406 -0.771601 -0.187550 -1.340344 -1.300403 0.832829 0.136539 0.054209 1.117221 0.656326 3.480896 -2.346908 0.799431 0.908631 0.027488 0.440080 -0.187908 -2.024923 0.902237 0.325161 0.575670 1.967719 -0.153623 -1.357602 0.083488 -0.036985 0.524178 -1.346690 0.839733 -1.398894 -0.094630 -0.910683 -0.310357 -0.742386 -0.952129 -0.421390 0.406632 1.843145 0.019560 -2.355476 2.134074 -1.229851 0.679230 -2.852710 1.592775 -1.157081 0.591415 -1.309912 -0.000983 -0.457386 0.785162 -0.494417 0.343582 0.831777 -0.719137 1.406416 2.530262 0.506386 0.503428 0.194717 1.082248 -0.003334 0.218767 -0.817848 1.856658 -0.096032 -0.332949 -0.148323 -0.953201 0.973717 -0.422516 -0.278011 0.948298 2.029446 -0.475367 0.769142 1.201655 0.861386 -0.950231 1.476470 0.302562 0.934471 -0.475403 -0.141990 0.072685 0.077619 -0.628295 1.126136 -1.838100 -1.831723 -0.384832 -2.493916 -0.348462 0.505230 0.598394 0.152736 0.331879 -2.032521 -0.818388 1.294006 -0.563122 1.883405 0.621162 1.032818 1.039006 1.727863 -0.853377 -0.483175 -0.568288 -0.336282 -1.017194 -0.959895 -0.630127 1.364317 -0.936694 1.088072 1.013850 -0.328893 0.179207 -0.516619 1.351790 -0.988092 2.355871 1.067446 -0.104430 1.315445 0.232968 2.940618 -0.324884 -1.019902 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.300323 -2.019034 3.212042 2.896484 0.556537 1.147165 1.548102 -2.078180 2.532947 1.708586 -0.178881 0.906332 -2.613682 1.071492 -1.604562 2.020980 -1.695222 -2.261344 -0.610135 -1.442468 -1.003460 -2.021192 1.465628 0.282002 1.611841 -0.374673 -1.684714 -1.181928 -3.216682 -2.194114 1.553037 -0.653859 1.467272 -0.912761 -0.559407 -4.556549 2.212905 2.278592 -0.918532 -2.611858 1.140814 -1.597075 -0.100939 -0.413973 -0.001439 0.256722 -0.068982 0.954373 1.708332 0.983645 1.581431 0.928902 0.588418 4.627365 -2.138949 2.209403 1.028108 0.560267 -0.576574 0.861386 0.681475 0.766340 1.559901 1.654927 -0.499058 -1.577996 -0.643362 -0.762265 -2.685426 2.014700 -0.381900 -0.339130 -2.060033 -0.102054 -1.472333 -0.484860 -1.813367 1.583871 3.710829 -1.993445 2.343128 0.445779 0.861689 -0.567769 1.007954 -0.179239 1.738708 0.709021 -1.047883 -1.034742 -1.777630 0.265443 -0.006799 0.359152 -1.171440 -2.893462 1.672939 -1.311344 -3.036513 0.816696 0.625302 -0.421336 -1.785812 0.079763 1.037438 1.206986 -1.606641 -2.945507 -1.408094 0.928524 0.456142 -1.271346 0.353640 -1.353326 -0.690801 -1.204334 -2.645893 -0.741228 0.269038 -1.980413 -1.580538 2.044986 -1.053158 0.630192 -0.032385 0.836377 -0.553670 1.746167 -0.060899 1.818523 1.050883 0.475218 -2.864451 0.212207 1.295811 2.043113 -0.773525 0.873416 -1.101866 0.646398 -1.194171 0.544439 -0.487058 1.135754 2.004368 -1.220141 -1.710431 -0.712922 0.859716 -2.688709 0.814252 -1.951789 -0.412674 -0.126433 2.093237 0.996211 1.530596 3.536710 -2.109998 1.534638 0.206794 -0.174229 1.765234 -0.118419 1.348222 -1.236914 -2.606428 1.034769 1.381075 0.287581 0.020230 -0.009506 -0.189024 -2.021737 -0.955554 0.236626 0.761143 -0.946350 2.008310 1.147909 2.655733 -2.952954 1.104436 1.320381 -0.598619 0.770059 -0.528849 -3.391111 1.313431 0.454157 0.190384 2.180907 -0.217435 -1.754736 1.340984 -0.775077 0.898949 -1.861157 0.840567 -2.033821 -1.074298 -1.955683 0.169984 -0.238409 -1.109275 -0.615632 -0.121838 2.824154 -1.280432 -1.904345 2.430694 -0.409650 0.399120 -3.601529 3.337974 -1.394972 0.897224 -0.900580 -0.086507 -0.138987 1.736634 -1.172687 0.020874 1.354776 -1.165535 1.762650 3.653557 0.663606 0.463706 0.321980 2.097317 -0.111035 0.860543 -1.250046 2.681538 -0.143362 -1.512300 0.183537 -1.238081 0.674926 -0.991711 0.287025 2.579869 2.129902 0.145859 1.496489 1.567404 2.170360 -1.328827 2.026302 -0.168976 1.477996 -0.989605 0.021581 0.130903 0.214928 -1.019946 1.955893 -2.763353 -3.295089 -1.297883 -2.882691 0.455259 -0.507379 0.825504 -0.656124 -0.089449 -3.142082 -1.936280 0.854224 -1.277570 1.567759 1.602738 1.314839 1.690558 2.542093 -1.380912 0.298674 -0.304282 0.380278 -0.503464 -1.363173 -0.729771 1.447524 -1.631556 1.111793 1.956881 -0.389069 0.746165 -0.389482 1.653768 -1.495832 3.533454 1.339688 -0.475663 2.382427 1.540406 3.638468 0.137354 -1.470839 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.283062 -1.500417 2.856486 2.145194 0.114955 0.953928 1.011255 -1.681708 2.203032 1.332596 -0.637063 0.040497 -1.830501 0.257601 -0.860194 1.222267 -1.600602 -1.606136 -0.379251 -1.295519 -0.460150 -1.706460 0.944893 0.130260 1.077120 0.220939 -0.871428 -0.480685 -1.723225 -2.070379 1.611551 -0.492359 1.081844 -0.034708 -0.219369 -3.608680 2.024382 1.728966 -0.719473 -2.084776 0.617377 -0.597679 -0.529725 0.154087 -0.115226 0.541041 0.003400 1.311894 0.957858 0.794917 1.009617 -0.022033 0.545905 3.404208 -1.273822 1.631069 0.812838 0.272774 -0.187780 1.036102 0.553147 0.573378 0.985037 1.604450 -0.021292 -1.035883 0.109293 -0.617248 -2.248709 1.753678 -0.342556 -0.640203 -1.129809 -0.361297 -0.907284 -0.097692 -1.544928 1.337872 2.972480 -1.221648 2.015919 0.677327 0.799442 -0.568359 0.275893 -0.233977 1.450269 0.621180 -0.799057 -0.778278 -1.347478 -0.530541 0.200003 -0.059426 -0.997680 -1.971849 1.463400 -1.314428 -2.018979 0.618372 0.674124 -0.496800 -1.212398 0.130059 0.873325 0.723157 -0.891744 -1.946551 -1.071977 0.840197 -0.349573 -0.551625 0.026760 -0.306532 -0.552213 -0.399064 -1.926180 -0.513686 0.128594 -1.349598 -0.825567 1.471024 -0.720252 0.365463 0.092626 0.691197 -0.387832 1.211224 0.173780 1.449333 0.831163 0.532564 -1.743252 0.282752 1.021589 1.204557 -0.042630 0.185577 -0.396236 0.637230 -0.957126 0.550367 -0.781078 0.455420 1.724900 -0.907594 -1.147827 -0.695212 0.222396 -2.262841 0.514180 -1.600398 -0.612317 0.248110 1.605473 1.176352 1.074089 2.592240 -2.328454 1.148904 -0.298903 -0.050367 0.611158 0.068241 0.877717 -0.802423 -1.716839 0.406218 1.057447 0.401359 0.174512 -0.662210 -0.286045 -1.639204 -0.819037 0.707511 0.492656 -0.657578 1.112469 1.219869 2.130285 -2.243629 0.641597 1.144138 -0.450835 0.217266 0.072734 -2.726613 0.965336 0.314309 0.624760 1.674675 -0.129016 -0.742683 0.737073 -0.837444 0.257888 -1.385067 0.590335 -1.554201 -0.513299 -1.357070 0.396675 -0.749523 -0.839426 -0.462837 -0.047077 2.009633 -1.018323 -1.641677 2.242563 -0.428712 0.268805 -2.388824 2.146274 -0.986873 0.886016 -0.560503 -0.094051 -0.386340 0.657882 -0.678424 -0.233051 0.684987 -0.653999 1.541009 2.792474 0.594545 0.128432 0.287912 1.743302 -0.583344 0.565861 -1.244843 1.632567 -0.200883 -1.139544 -0.098714 -0.911231 0.448231 -0.907745 0.207938 1.742851 1.641127 -0.014321 1.208191 0.903953 1.302765 -0.849918 1.582683 0.269473 1.156870 -0.641608 -0.076370 0.263085 0.321840 -1.098842 1.409195 -2.272109 -2.525169 -1.444055 -2.309729 -0.313368 -0.770553 0.900088 -0.336470 0.118830 -2.148854 -1.520897 1.099981 -0.794428 1.187922 1.108199 1.013283 1.270686 2.053830 -1.033795 0.185348 -0.082877 0.451849 -0.717779 -1.131880 -0.704006 1.442004 -1.024954 0.763815 1.727722 -0.386577 0.538911 -0.535884 1.352559 -1.481686 2.547532 1.180468 -0.438626 1.496073 0.776503 2.732795 0.284316 -1.119075 -PE-benchmarks/topological-sorting.cpp__std::__deque_buf_size(unsigned long) = -0.437172 -0.830046 0.890723 0.498284 0.232919 0.467967 0.153130 0.114314 0.253118 0.786792 -0.712221 0.633781 -0.384825 -0.292051 0.539914 0.273521 -0.194882 -0.689765 0.598378 0.233060 0.203869 -0.477323 -0.406291 0.483260 0.194673 0.222339 -0.302758 -0.000851 -0.717554 -1.051809 -0.208081 -0.178305 0.411428 0.229645 0.458280 -0.521647 0.294487 0.554561 0.090137 -1.098392 0.014136 0.131542 0.006666 0.352840 0.383554 0.788529 0.663904 0.081030 -0.312196 0.256291 -0.208605 -0.547264 0.055765 0.121637 0.326691 0.539777 0.769262 -0.080173 0.253885 -0.103504 0.419483 -0.409346 0.498067 0.508194 -0.431707 -0.051916 -0.004449 0.119008 -0.394999 0.033264 0.360174 -0.206277 -0.250298 -0.386180 -0.073637 -0.015968 0.203476 0.200699 0.875934 0.109245 1.037620 0.649314 1.143405 -0.134882 0.430801 -0.212151 0.411823 0.324216 -0.710206 -0.092378 -0.692626 -0.814879 -0.234910 0.699690 -0.269402 0.821977 0.095406 -0.284400 -0.603406 0.480792 -0.075084 -0.016805 -0.649690 0.476722 0.665737 0.579570 0.016887 -0.495841 -0.513707 0.165286 -0.713664 -0.321117 -0.155584 -0.141927 -0.423774 0.246051 -0.357173 -0.231154 0.687877 -0.579545 -0.139192 0.412574 -0.377914 0.690620 -0.134374 -0.095813 0.015006 -0.010669 0.918185 0.288669 0.286034 -0.634697 -1.057089 0.178897 0.016252 0.239207 -0.275055 -0.234193 0.304464 0.193643 0.370367 0.201759 -0.445601 0.682248 0.976093 -0.053252 -0.402758 -0.899084 -0.022763 -0.242663 0.394042 -0.263884 0.266427 -0.045684 0.350944 -0.147581 -0.004604 0.791067 -0.858620 0.578832 -0.219643 0.438062 -0.227190 0.017966 0.054797 -0.370370 -0.243535 0.246868 0.933777 -0.080153 0.396039 -0.592012 0.270353 -0.151387 -0.610941 0.608816 0.131092 0.239343 0.535320 0.119799 0.803185 -0.274148 -0.429545 -0.159646 0.051799 -0.181867 0.025572 -0.795677 0.446467 0.027321 0.644802 0.776753 0.007051 -0.378655 0.320330 0.009289 -0.052306 -0.305112 0.831928 -0.701804 0.209764 0.057063 -0.081346 -0.639829 -0.202104 -0.285144 0.298003 0.808139 0.504372 -1.020951 0.052798 -0.287054 0.318968 -1.019880 0.033357 -0.236605 0.371698 -0.111879 0.052202 -0.219334 -0.045009 0.283132 -0.279184 0.324143 -0.083584 0.385932 0.245929 0.040900 -0.290521 0.484119 -0.000830 0.118046 -0.417716 -0.156243 0.022893 -0.126719 0.334707 -0.184784 -0.020827 0.585264 0.320661 -0.509081 -0.339136 0.287674 -0.379900 0.053175 0.308375 -0.309714 -0.490475 0.103466 0.070491 0.874835 -0.062480 -0.289730 -0.688230 0.276175 -0.070958 0.130797 -0.734438 -0.381823 0.025606 -1.144924 -0.725664 0.384017 0.286516 0.374219 0.139976 -0.594905 -0.092286 0.355541 0.122543 0.986864 0.130261 0.213112 0.646769 0.163714 -0.216239 -0.532223 -0.279273 -0.239342 -0.633144 -0.204917 -0.028421 0.086704 -0.352650 0.475567 0.344924 -0.206356 -0.147505 -0.292305 0.475485 -0.446986 0.914606 0.698487 -0.664551 -0.256533 -0.046484 0.938091 -0.953007 -0.549389 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.091115 -0.706025 1.452779 1.239501 0.190678 0.535548 0.497930 -1.093478 1.464415 0.729861 -0.009704 0.077879 -0.994467 0.433939 -0.479748 0.863011 -0.817450 -0.937793 -0.329482 -0.974625 -0.625850 -0.912137 0.397493 -0.141426 0.550336 -0.363312 -0.641635 -0.286855 -1.234086 -0.653493 0.875146 -0.314296 0.430106 -0.431176 0.019688 -2.091765 1.086000 0.752280 -0.466294 -1.038497 0.234548 -0.813884 0.170092 -0.208999 0.308638 0.114834 -0.111561 0.569513 0.904386 0.324362 0.760480 0.374448 -0.090157 2.308854 -1.179377 0.915235 0.262071 0.161097 -0.268748 0.714250 0.238274 0.366738 0.624913 0.687460 -0.275476 -0.790781 -0.170646 -0.416181 -1.028644 0.991258 -0.013789 -0.396849 -0.926982 -0.229457 -0.687046 -0.448351 -1.958191 0.798834 1.580970 -1.052492 0.882677 0.315687 0.660283 0.063573 0.728099 -0.118199 1.303457 0.209277 -0.632882 -0.177849 -0.883992 0.005890 0.083652 -0.240243 -0.443870 -1.404165 0.567508 -0.590449 -1.307068 0.497817 0.371532 0.065121 -0.950996 -0.020671 0.596601 0.294971 -0.730253 -1.319351 -0.590666 0.497117 0.032912 -0.405045 0.298992 -0.908543 -0.182251 -0.655700 -1.203521 -0.271645 0.112225 -0.625719 -0.884896 1.135122 -0.594401 -0.051774 0.002055 0.308310 -0.376538 0.894321 -0.196040 0.853175 0.217333 0.159033 -1.956836 0.402794 0.526244 0.819983 0.004069 0.533609 -0.495462 0.271758 -0.894591 0.363363 -0.230607 0.567377 0.728899 -0.527522 -0.717634 -0.271394 0.437867 -1.094832 0.497367 -0.803683 -0.321958 -0.309765 0.946665 1.113180 0.778191 1.205310 -0.971311 0.675996 -0.257656 0.109469 0.888807 0.041207 0.690666 -0.560227 -0.891769 0.247223 0.541680 0.003232 0.214788 -0.302529 -0.057251 -0.984020 -0.217690 -0.018857 0.382259 -0.430630 0.948052 0.644366 1.144674 -1.731292 0.580402 0.670512 -0.252042 0.328075 -0.204340 -1.273643 0.552794 0.348522 0.057200 0.829335 -0.165018 -0.608365 0.210051 -0.302721 0.523430 -0.653482 -0.042760 -0.789810 -0.670899 -0.753723 0.436775 -0.478937 -0.471455 -0.234463 -0.216245 1.171233 -0.540207 -0.761740 1.410884 -0.443530 0.203784 -1.268008 1.517103 -0.647464 0.332999 -0.611765 0.055267 -0.302430 1.055685 -0.574709 0.298569 0.557309 -0.601856 0.679375 1.631062 0.370252 0.477647 0.120362 1.051498 -0.251153 0.321980 -0.561434 1.333666 -0.211963 -0.483351 0.099602 -0.563046 0.313930 -0.376633 0.278497 1.118717 0.935145 0.130475 0.507739 0.744462 0.775539 -0.546808 0.853617 -0.101526 0.368925 -0.499957 0.047696 0.215034 -0.146775 -0.482465 0.493195 -1.242234 -1.194846 -0.600460 -0.806658 0.230600 -0.077087 -0.008123 -0.139168 -0.019789 -1.332733 -0.739911 0.403881 -0.597513 0.148759 0.456287 0.535984 0.747190 1.352767 -0.605985 0.004639 -0.084991 -0.163712 -0.250354 -0.606080 -0.527978 0.996866 -0.781003 0.483034 0.877224 -0.168089 0.267783 0.166151 0.789806 -0.641368 1.361682 0.541819 -0.093357 0.930410 1.115679 1.900879 0.199444 -0.614307 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/topological-sorting.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.197217 -1.643680 3.364608 2.740497 -0.229750 1.188232 0.623731 -2.539664 2.675320 0.491208 -0.076797 0.526287 -2.100922 0.989685 -1.411578 1.480065 -2.296461 -1.982242 -1.050079 -2.059564 -1.395553 -1.821714 0.930406 0.521837 1.165437 0.157683 -1.652877 -0.259496 -2.498904 -1.456158 2.051302 -0.491221 1.263210 -0.460181 0.161313 -5.360150 2.403322 1.860522 -0.925574 -2.362925 0.686496 -1.519070 -0.154445 -0.762420 -0.642190 0.092719 -0.484321 1.065720 1.658174 0.483935 0.956695 1.131702 -0.062911 4.905769 -1.983262 2.011556 0.973257 0.373709 -0.620048 0.973054 0.545103 0.996032 1.309800 1.425086 -0.536053 -1.766751 -0.188983 -1.008257 -2.408092 2.245183 -0.072602 -0.883159 -1.702413 -0.672964 -2.039756 -0.746987 -1.586103 1.950118 3.466941 -2.336400 1.803086 0.322161 0.964933 -0.025605 1.370466 -0.269027 2.649614 0.694654 -0.983091 -0.392417 -1.810917 0.032882 0.238403 -0.354231 -1.313079 -3.351133 1.501806 -2.490741 -2.857759 0.969470 0.950236 -0.327403 -2.022749 -0.552342 1.294278 0.645918 -1.551765 -2.620385 -1.154934 1.313934 0.277167 -0.919750 0.381948 -0.867840 -0.241673 -1.307916 -2.811860 -0.293959 0.429969 -1.273996 -1.210426 2.318287 -1.243130 0.054008 -0.072287 0.790467 -0.910981 2.127813 -0.460945 1.459666 0.225161 0.552904 -2.126361 0.275229 0.857070 1.881379 -0.468913 0.240858 -0.912135 0.725716 -1.637367 0.448576 -0.736580 0.791716 1.493497 -0.837830 -1.757749 -0.688505 0.097296 -3.170072 0.522782 -1.962602 -1.186008 0.615855 1.948612 2.152849 1.489769 2.768998 -1.843506 1.489487 -0.194032 -0.086320 1.739145 -0.143766 1.356504 -1.216707 -2.328645 0.997572 0.466114 0.597916 0.369722 -0.565086 -0.254737 -2.032436 -1.124676 0.396274 1.106529 -0.386679 1.883177 1.526428 2.239478 -3.204871 1.120996 1.267961 -0.796275 0.705542 -0.440833 -2.827540 0.862895 0.702615 0.094753 2.334760 -0.416500 -1.322559 0.747176 -0.442620 1.108414 -1.686630 0.276497 -1.786543 -0.858070 -2.016784 0.361141 -0.807905 -0.761226 -1.005519 -1.126979 2.773429 -2.420797 -2.140816 3.308420 -0.400394 1.294080 -3.256957 2.248360 -1.241831 1.805442 -0.789560 0.050177 -0.300075 0.791822 -1.402116 0.748312 1.153893 -1.199414 1.055220 3.431007 0.655780 0.785393 0.170475 2.214055 -0.528886 1.146736 -1.490925 2.872177 -0.349064 -1.489373 0.242937 -1.159777 0.271539 -1.191528 0.842336 2.258762 1.965283 0.873309 1.287501 1.737226 1.752639 -1.261497 1.673310 -0.226871 0.609366 -1.123742 -0.057018 0.529803 0.593589 -0.959633 1.193807 -2.742619 -3.366562 -2.716159 -2.554427 0.330703 -0.703596 0.376562 -0.555365 -0.345643 -2.590215 -1.805092 1.330081 -1.260971 1.886835 1.520559 1.392458 1.830891 3.037335 -1.593817 0.203397 0.291985 0.234142 -0.465140 -0.885024 -1.737374 2.087346 -1.277984 0.993179 2.480806 -0.370037 1.046807 -0.035265 1.665858 -1.452587 3.218765 1.185927 -0.850880 1.992754 1.747601 3.026402 0.994867 -1.449368 -PE-benchmarks/topological-sorting.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.592846 -4.006603 8.322105 6.783790 0.043351 2.724177 2.552574 -6.490439 6.081957 2.177849 0.110406 1.324856 -5.582094 2.390964 -3.832957 4.135394 -4.606801 -4.859233 -2.893483 -5.163775 -2.961563 -4.283977 3.518078 0.927603 3.463395 -0.282391 -4.013577 -1.768087 -6.458651 -5.317348 4.745494 -0.807738 3.410700 -1.635077 -0.653878 -12.040709 5.956545 5.247331 -2.508413 -5.607268 2.666387 -2.773742 -1.312912 -0.551397 -1.315652 0.466267 -1.466058 1.858131 3.873695 2.212529 3.621099 3.133894 0.836187 11.069281 -4.847330 5.172950 2.537917 1.406843 -1.481138 2.646659 1.090671 2.816613 3.020945 3.393971 -0.654402 -4.190348 -0.593841 -1.975956 -6.513299 5.334166 -0.866291 -2.671659 -3.868565 -1.524834 -4.144711 -1.261170 -2.625270 3.963291 8.336340 -5.217819 4.467757 0.603046 1.150728 -1.227073 2.234617 -0.867111 4.802182 1.788995 -1.590902 -1.849107 -3.941923 0.165302 0.277373 0.372850 -3.642380 -7.537312 4.665333 -4.853569 -7.016052 2.110976 2.490900 -1.527831 -5.227839 -0.935925 2.275899 1.806360 -3.657631 -6.406589 -3.301204 3.319180 1.363711 -2.348819 0.217892 -2.056399 -1.069275 -2.418726 -6.787515 -0.592683 0.697240 -3.572702 -3.672688 4.884956 -2.714468 0.536409 0.101958 2.617831 -2.298090 4.485896 -0.938916 4.118773 1.765139 1.805071 -4.987030 0.171494 2.506289 4.418312 -1.382249 0.898351 -2.732097 1.589193 -3.508952 1.889529 -1.840995 1.726366 4.708987 -2.132755 -4.314421 -1.031580 0.804930 -7.815237 1.466778 -5.052635 -2.354047 0.971575 4.375901 3.790980 3.449911 7.826887 -4.643015 3.445434 0.226303 -0.775893 3.746337 -0.867368 3.182507 -2.830747 -6.512558 2.305454 1.636096 1.140012 0.578084 -0.435665 -0.826987 -5.177888 -3.118352 0.723040 1.880586 -1.853593 4.094907 3.760470 6.352292 -6.840039 2.450705 3.161754 -2.415056 1.844932 -1.145705 -7.566939 1.739413 1.488070 0.555164 6.320464 -0.695701 -3.210436 2.780436 -1.646667 2.309293 -4.187586 1.782742 -4.837721 -1.972146 -5.018615 -0.156224 -1.074426 -1.912828 -1.751825 -1.932415 6.657524 -4.646216 -5.300054 7.620846 -0.740541 1.703497 -8.548789 6.422035 -2.720213 3.326154 -1.790268 0.273420 -0.731088 2.368439 -3.377641 1.048985 2.440810 -2.834055 3.487168 9.420082 1.157966 1.141772 0.196972 5.398776 -1.506668 3.032384 -3.969603 7.366027 -0.808576 -4.325735 0.399235 -2.599075 0.392256 -3.885885 1.385072 5.424056 4.567010 1.104575 2.780152 3.849352 5.183498 -2.971282 5.309390 0.113827 1.887014 -2.461789 -0.059750 1.734064 1.226552 -2.505960 3.904236 -6.502864 -8.072828 -5.374468 -7.618133 1.142893 -1.832972 1.963694 -1.935055 -1.173254 -6.408654 -4.971564 2.980884 -2.964596 4.622980 4.341374 3.825691 4.326740 7.357578 -3.696038 1.578754 -0.156560 1.076288 -1.076181 -3.305013 -2.711156 4.303314 -2.357926 1.957515 5.474638 -0.199011 2.974050 -1.037928 3.598524 -3.665389 8.030932 2.589041 -1.125931 5.836319 3.435246 7.385593 1.684032 -3.137071 -PE-benchmarks/topological-sorting.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/topological-sorting.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/topological-sorting.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/topological-sorting.cpp__std::deque >::push_back(int const&) = 2.598248 -3.759290 10.314078 9.348312 -1.169308 3.040957 -0.262357 -8.142395 6.025679 4.080736 -0.850307 2.884385 -3.709032 3.421018 -3.497737 6.898016 -6.850115 -3.323196 -3.776578 -5.663336 -4.089128 -3.373477 2.297611 0.731696 4.269431 2.244941 -4.956825 0.459613 -3.538864 -9.624269 2.317061 -0.609361 2.759143 -1.983567 1.477425 -11.155908 8.259713 6.422503 -2.569406 -6.649550 1.973473 -2.174174 -2.435801 -0.608486 -1.595902 1.634995 -2.290990 2.940485 3.810939 3.411575 3.041977 4.838455 4.407131 11.679007 -2.830499 5.851430 3.337078 1.039147 -0.661227 2.349274 2.107514 3.796310 2.248671 2.504179 1.815278 -6.117446 -2.089437 -0.664423 -4.108872 6.008728 -1.152540 -4.886753 -5.157143 -3.336336 -4.319641 -0.617650 -9.554778 5.848639 8.225704 -6.088948 3.175752 1.286073 0.370840 -0.160092 3.179167 -1.362439 6.938648 3.084659 -0.766732 -0.273705 0.160852 -2.685912 3.134105 -2.125222 -5.871193 -10.818214 4.461126 -8.193840 -7.336633 3.444914 4.177082 -2.679610 -3.116251 -2.984701 2.714751 0.897772 -2.859756 -5.270522 -1.260585 3.308277 2.122866 -3.553529 -0.517741 -1.473475 0.348263 2.053893 -7.964784 0.923932 1.442449 -1.693159 -1.996824 4.903840 1.350109 -1.102032 -1.651363 1.902071 -2.034425 5.185637 -2.103801 6.636846 -0.786961 5.862021 -3.144228 4.905717 3.598855 -3.247774 -1.449069 1.527066 -2.543809 2.803059 -4.041568 4.372163 -4.234402 3.153832 5.244933 -0.595637 -5.479548 -2.394276 -2.511339 -7.197981 1.658629 -4.467934 -5.232546 0.876949 5.257000 3.871474 4.054915 3.319731 -5.534491 0.910436 -0.133579 1.425504 4.699995 -1.458710 2.476496 -3.052448 -5.988138 4.067277 2.432014 1.393328 0.959976 -0.090753 0.294537 -3.561573 -1.094749 3.688363 2.592943 -1.675579 5.461007 4.522025 8.956886 -3.708939 2.048644 3.339826 -3.129877 1.637440 -1.502108 -7.519924 1.670108 1.625463 4.276651 7.636399 -1.082594 -0.970108 2.238597 -1.249588 2.038018 -3.592650 1.822429 -4.661049 -1.872688 -3.684945 1.610649 -1.158990 -0.818829 -2.299301 -2.671586 7.551516 -8.400843 -3.728689 9.661722 -3.534960 1.026799 -6.198116 6.823143 -3.006162 2.656245 -0.682152 -0.444029 0.119247 -0.278578 -5.694680 1.869896 3.518167 -2.473981 1.290421 8.106557 1.297318 0.102461 -0.853633 4.882868 -3.311884 4.667308 -4.451397 8.687483 -0.777446 -1.798877 -1.817011 -2.506034 -1.137012 -5.073332 1.397421 4.569376 1.735010 2.272123 1.036792 2.872720 5.721179 -4.187715 7.451904 -0.478475 -0.500747 -3.922827 -0.878976 2.682198 0.762857 -2.312350 3.719977 -7.231766 -5.371225 -10.339905 -3.852427 -0.261698 -1.322057 3.098460 -3.027804 -2.845875 -4.586325 -7.130173 8.350812 -2.690642 -0.773594 5.007797 3.349506 4.179771 6.847305 -1.287505 2.790139 -3.491235 -0.642590 0.549827 -3.431184 -2.539719 6.545953 -1.624823 1.200895 6.845636 -1.023873 4.370008 -0.055777 2.640650 -3.440594 6.622282 2.158822 -1.511411 3.733637 6.226611 6.431493 -0.318754 -4.273783 -PE-benchmarks/topological-sorting.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.924743 -4.717575 11.712567 10.273513 -2.034640 3.698273 -0.470562 -8.713605 6.878469 3.320200 -1.466654 3.095777 -4.293137 3.504315 -4.399728 6.673284 -8.197273 -3.943390 -4.047803 -6.239055 -4.408420 -3.956190 1.550649 1.759162 4.423958 2.976860 -5.105001 0.899005 -4.463963 -8.967118 2.971364 -0.815727 2.890455 -1.760187 2.432992 -12.688348 8.890275 7.161396 -2.636988 -7.941105 1.752003 -3.040163 -2.458319 -1.436816 -2.127158 1.578377 -2.184403 4.366848 3.937201 3.071348 2.049492 4.948108 4.244028 13.784891 -2.913186 6.579907 4.136490 1.179820 -0.372538 2.495706 2.357390 3.819651 2.326145 2.662418 1.651092 -6.615175 -2.240308 -1.132178 -4.139806 6.579119 -0.952115 -5.065257 -5.843232 -3.861465 -6.021115 -0.878185 -11.563838 7.236836 9.515280 -7.446019 3.921505 1.723519 1.240596 0.348649 4.067262 -1.295376 8.268590 3.454212 -1.204828 0.219496 -1.077521 -2.801151 3.332590 -3.745254 -6.684828 -13.054956 5.019882 -10.618611 -8.350185 4.004280 4.340435 -3.029781 -2.377079 -3.299705 3.094183 1.031657 -3.591622 -5.933782 -1.199521 4.024264 2.277668 -3.745142 0.257336 -0.891358 0.968936 1.231485 -8.926112 1.157482 2.139322 -1.927112 -1.342840 6.087924 1.193916 -0.879803 -1.742321 1.756228 -2.116722 6.406253 -1.886426 6.663508 -1.507881 6.032576 -3.268705 5.809052 3.610893 -2.918106 -1.652923 1.884324 -1.898524 3.381028 -4.072911 4.179908 -4.813486 3.133166 4.322364 -0.952956 -5.896993 -3.346898 -3.330724 -7.857568 1.433855 -4.911609 -6.529722 1.639055 5.980126 5.714032 4.221004 3.565979 -6.066069 0.973653 -0.330838 1.671095 4.894213 -1.375820 2.755171 -3.484630 -6.549928 4.497727 2.227834 1.984027 1.225732 -0.662704 0.290029 -4.066076 -0.982179 4.118520 3.512063 -1.611378 6.879251 5.440128 7.842447 -4.802171 2.234871 3.330937 -3.722951 1.785751 -1.597469 -8.443693 2.217657 1.993127 4.550746 8.125043 -1.427868 -0.642724 2.602271 -1.421968 2.354531 -4.158762 1.437309 -5.282651 -2.647474 -4.467911 2.755760 -1.828980 -0.989501 -3.310362 -3.836095 8.586402 -10.455900 -3.979787 10.692079 -3.288254 2.112008 -6.600710 6.848634 -3.441373 4.157032 -0.065142 -0.380492 0.188210 -0.663287 -6.095353 1.872041 4.103981 -3.076254 1.316552 8.369030 1.525863 0.286535 -0.309087 5.741093 -4.036683 4.872845 -5.240625 9.063076 -0.901377 -2.351460 -1.611932 -2.947589 -1.034812 -5.116504 2.218856 5.588474 2.097418 3.395313 1.586939 3.628689 5.564145 -4.439737 7.319886 -1.063848 -0.547702 -4.727838 -0.912010 2.390459 1.157398 -2.318472 3.628403 -8.560450 -6.848884 -12.797785 -3.825017 -0.307565 -2.654993 2.917019 -2.962373 -2.969670 -5.537980 -8.095278 8.849762 -3.171131 -0.954263 5.600436 3.779888 5.057962 7.728937 -1.657879 2.678055 -2.539008 -0.212693 0.397868 -3.129833 -3.729233 7.322793 -2.414472 1.653809 8.425037 -1.354987 4.957425 0.349588 3.272045 -4.189609 7.664914 2.887904 -2.950681 3.631398 7.671423 6.910368 0.422974 -5.038599 -PE-benchmarks/topological-sorting.cpp__std::deque >::size() const = 0.585102 -1.359354 2.933315 2.555776 -0.501565 1.222328 -0.516226 -1.833687 1.092541 1.056610 -0.370288 1.149007 -0.794177 0.614900 -0.695507 1.350612 -1.694900 -0.602429 -0.964225 -1.326981 -0.818464 -0.690480 -0.414301 0.994952 0.869387 0.847024 -1.120258 0.641081 -1.138965 -2.628753 0.051015 -0.023850 0.689661 -0.680174 1.121624 -2.520009 2.164469 2.059053 -0.421836 -2.120433 0.290671 -0.402435 -0.578860 0.052625 -0.664903 0.729625 -0.294798 0.493430 0.576045 0.860816 0.150288 1.043161 1.595141 2.753004 -0.036514 1.676637 1.384365 0.070162 0.410254 0.319509 0.352114 0.640009 0.282012 0.181110 0.516775 -1.499573 -0.530608 0.211381 -0.577760 1.112545 -0.251572 -1.591458 -1.198665 -1.286045 -1.622363 -0.196107 -2.838020 1.476276 2.060938 -1.521938 1.067546 0.502194 0.258951 0.542867 1.387379 -0.143657 1.651804 0.930334 -0.346199 0.713686 0.308899 -0.722201 0.950572 -0.671618 -1.960477 -2.893512 1.168933 -2.692615 -1.815841 1.492633 0.805948 -0.923229 -0.349907 -1.265824 0.468422 0.323242 -0.943937 -1.249155 -0.059329 1.318950 0.649819 -0.936985 0.099631 -0.119199 0.433186 0.635165 -1.825277 0.697449 1.015712 -0.241207 -0.189215 1.623884 0.744519 0.065855 -0.537638 0.414465 -0.597076 1.456585 -0.106727 1.580696 -1.144332 1.286921 -0.665252 1.450382 0.673288 -1.639032 -0.505853 0.225372 -0.146464 0.912791 -0.278959 1.541471 -1.202234 0.863729 1.044153 0.200161 -1.140762 -1.153961 -1.351341 -1.594865 0.138005 -0.803854 -2.006886 0.631605 1.307640 0.921189 0.680635 0.254845 -1.132001 -0.311223 -0.273517 0.304083 0.861279 -0.522583 0.439466 -0.808453 -1.425852 1.221450 0.717083 0.612859 0.562968 -0.269315 0.301685 -0.371462 0.295920 1.245753 0.857287 -0.349300 1.919660 1.523572 2.183349 -0.127076 -0.023564 0.325551 -1.176736 0.388401 -0.555983 -1.718148 0.220329 0.697504 0.923977 2.203691 -0.442592 0.112059 0.903020 -0.326517 0.493446 -0.905491 0.775608 -1.229590 -0.436016 -0.780602 0.389085 -0.614647 -0.163024 -1.231338 -1.072328 2.096649 -2.826076 -0.646759 2.069314 -0.527818 0.297488 -1.162006 1.408809 -0.708870 1.261944 0.456171 -0.185018 0.153277 -0.245980 -1.320422 0.385082 0.994475 -0.897224 0.127780 1.490095 0.287916 -0.298307 -0.035368 1.148994 -1.199097 0.831554 -1.446726 1.829018 -0.373256 -0.022402 -0.492147 -0.586217 -0.288197 -1.140482 0.306590 0.349510 0.009073 0.586797 -0.371722 0.904805 0.752108 -0.801047 1.512259 -0.380252 -0.179670 -1.354112 -0.323750 0.231378 0.616108 0.104174 0.590006 -2.165691 -0.878527 -3.351619 -0.446009 -0.332163 0.012482 0.523309 -0.313369 -0.828522 -1.170936 -2.120499 2.949498 -0.654996 -0.574329 1.385191 0.905725 1.297700 1.538049 0.264028 0.479029 -0.865002 -0.205484 0.118872 -0.342168 -0.657623 1.728713 -0.526022 0.303828 1.867384 -0.283691 1.438895 0.308796 0.253195 -1.224525 1.662569 0.728005 -0.903356 0.433357 2.107474 1.329115 -0.646280 -1.136467 -PE-benchmarks/topological-sorting.cpp__std::deque >::max_size() const = -0.164721 -0.650105 1.140082 0.889873 -0.065289 0.492649 0.180554 -0.780042 1.033707 0.153616 -0.178458 0.030527 -0.735608 0.155692 -0.468093 0.314390 -0.706279 -0.715823 -0.280134 -0.684125 -0.394995 -0.704618 0.098874 0.202854 0.309517 0.127790 -0.414325 0.049271 -0.963388 -0.326104 0.725640 -0.161387 0.352592 0.006022 0.166075 -1.563563 0.767724 0.718408 -0.264768 -0.894249 0.078349 -0.568651 0.006645 -0.218305 -0.041734 0.114730 -0.088827 0.420939 0.479661 0.082659 0.273943 0.132651 -0.155484 1.559674 -0.599769 0.718210 0.348830 0.129734 -0.115994 0.416825 0.201600 0.255766 0.418672 0.512726 -0.261080 -0.501644 -0.014443 -0.354733 -0.768523 0.737632 -0.074329 -0.350408 -0.533218 -0.338713 -0.736177 -0.287714 -0.984815 0.636824 1.204455 -0.796002 0.755040 0.244872 0.520705 0.036376 0.528829 -0.101779 0.967491 0.222852 -0.442839 -0.003804 -0.713535 -0.028112 0.055728 -0.211799 -0.495523 -0.919349 0.555874 -0.963972 -0.976888 0.348577 0.257454 -0.050197 -0.579979 0.018404 0.388741 0.212195 -0.514855 -0.877670 -0.329243 0.498579 0.003453 -0.243136 0.161847 -0.198574 -0.069653 -0.503983 -0.906502 -0.128523 0.204741 -0.451903 -0.336245 0.888780 -0.456978 0.046358 -0.020915 0.164174 -0.243571 0.812023 -0.075624 0.419755 -0.057545 0.102033 -0.996002 0.154659 0.246854 0.655000 -0.127336 0.167249 -0.071856 0.234224 -0.504948 0.114219 -0.377625 0.175749 0.417958 -0.356134 -0.497931 -0.340444 -0.065756 -1.022358 0.129066 -0.627177 -0.408514 0.165550 0.706410 1.027635 0.438943 1.063031 -0.722856 0.393798 -0.161122 -0.060783 0.441730 0.074869 0.455849 -0.420300 -0.706060 0.294273 0.194611 0.190216 0.247817 -0.324232 -0.119044 -0.716506 -0.253750 0.268144 0.369322 -0.107466 0.741779 0.601970 0.418743 -1.216099 0.373941 0.359050 -0.225974 0.208025 -0.083641 -0.971995 0.377215 0.243492 0.101424 0.667357 -0.152044 -0.236776 0.155559 -0.246032 0.360805 -0.629035 0.039022 -0.629674 -0.320066 -0.681746 0.329213 -0.422558 -0.317482 -0.351079 -0.401771 0.907341 -0.682428 -0.658004 1.067942 0.004227 0.458483 -0.901591 0.518815 -0.453369 0.784264 -0.229837 0.052263 -0.146359 0.286004 -0.301725 0.118875 0.388225 -0.442690 0.403587 1.040129 0.242593 0.236165 0.163861 0.778939 -0.309671 0.265107 -0.536884 0.800664 -0.075987 -0.488902 0.150573 -0.454080 0.164338 -0.294769 0.238134 0.862812 0.776222 0.285453 0.430226 0.543626 0.410020 -0.376725 0.430955 -0.018051 0.273564 -0.406206 -0.032314 0.103847 0.194190 -0.297422 0.218442 -0.979839 -1.167390 -0.858551 -0.787377 0.054220 -0.388985 0.025555 -0.032895 -0.036906 -0.862690 -0.643595 0.466207 -0.446324 0.672840 0.324474 0.481005 0.639170 1.001804 -0.546328 0.000539 0.236027 0.094105 -0.262995 -0.255013 -0.615564 0.768228 -0.485609 0.350878 0.868679 -0.174167 0.326995 0.157843 0.586108 -0.577200 1.051160 0.461586 -0.392359 0.607997 0.646298 1.157931 0.353572 -0.520387 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.796507 -4.510927 9.459562 8.214862 -1.170116 4.033997 -1.598172 -6.084253 3.904942 4.447574 -1.660787 4.135592 -2.398848 1.688584 -2.058811 4.783818 -5.373432 -2.218929 -2.611906 -4.018734 -2.893741 -2.513419 -1.438549 3.130483 2.817106 2.608966 -3.789795 2.292247 -3.400187 -9.966656 -0.499054 -0.058114 2.104600 -2.888786 3.618739 -8.243300 7.302933 6.911997 -1.311117 -7.283336 0.744064 -0.937349 -2.397447 0.952334 -1.903970 2.511460 -0.661152 2.279834 1.402422 3.098224 0.923061 3.346512 5.464040 9.319958 0.524420 5.936150 5.032459 0.499293 1.118496 1.349218 1.653601 1.906975 1.303974 1.133220 1.642449 -4.481427 -1.405497 1.246593 -2.021543 3.714898 -0.349209 -5.782036 -3.648432 -4.240323 -4.751594 -0.438852 -7.950179 4.455355 7.113259 -4.581452 3.807200 2.281588 1.433343 1.430323 4.489435 -1.153037 6.201291 3.256868 -1.554827 1.608216 0.696141 -3.130352 3.072796 -1.778862 -6.420654 -9.093505 3.599708 -9.110444 -6.372282 4.820682 2.601680 -2.988489 -1.543174 -3.879879 2.645424 0.838462 -2.588391 -4.157067 -0.799468 4.102394 0.822088 -3.402106 -0.035371 -0.424314 1.396900 3.462547 -6.160216 1.749579 3.738278 -1.035290 -0.874725 5.028224 2.553243 0.678880 -2.007611 1.158109 -1.318977 3.787860 -0.052273 5.247560 -3.154251 4.353700 -1.967792 5.270987 1.915821 -6.569226 -1.630945 0.736107 -0.022847 3.241598 -0.851807 5.714819 -4.963779 3.379683 3.777186 1.030180 -4.054921 -4.206104 -4.330080 -4.974689 1.006632 -2.743605 -6.863219 1.079423 4.450446 2.312979 1.983015 0.391020 -4.100973 -0.410564 -0.663971 1.925186 2.456595 -2.381014 1.367357 -2.768057 -4.809797 4.107188 3.336748 1.720733 1.675143 -1.173800 0.913124 -1.160019 -0.049581 4.097778 2.455105 -0.718355 6.149637 4.544513 9.099887 -0.760973 -0.006621 0.886750 -3.380182 1.270119 -1.964518 -6.045891 0.654093 2.013192 4.572343 8.081315 -1.173310 0.052627 2.661526 -0.501865 1.293311 -3.003466 3.153840 -4.333072 -1.265435 -1.838483 1.367503 -2.208544 -0.293572 -4.023727 -3.091761 7.025699 -8.943841 -3.194851 7.150182 -2.604316 1.127707 -4.442208 4.630120 -2.342937 3.747207 1.147991 -0.652093 0.445944 -1.306287 -4.141755 1.610248 3.320583 -2.727700 0.840225 4.724119 0.676939 -0.552241 0.007298 3.144087 -3.904193 2.329250 -4.759616 6.175002 -1.026946 -0.193888 -2.379773 -1.943823 -0.315244 -3.425639 0.577251 0.364022 0.162832 1.026870 -1.317420 2.910190 2.212046 -3.275469 5.574401 -0.765046 -0.457328 -4.326602 -1.173275 0.465496 1.321161 0.026757 2.486765 -7.097992 -2.287809 -10.902084 -2.229711 -1.676047 0.287873 2.347013 -1.122333 -2.586494 -3.809992 -6.788744 10.424560 -1.796824 -1.673759 4.805933 3.365811 4.356116 4.858520 1.172796 1.636024 -3.664673 -1.431427 -0.357899 -2.045651 -1.525011 5.419057 -1.215232 1.718127 5.620872 -0.646546 4.455035 0.331641 0.416504 -3.738564 5.285150 2.659958 -2.878200 0.670266 6.183544 5.123516 -3.357610 -4.101984 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_node() = -0.368314 -1.310201 1.972320 1.560780 0.003995 0.882440 0.303947 -1.017193 1.425894 0.721810 -0.512052 0.557896 -1.046970 0.196276 -0.510340 0.696814 -1.125021 -1.245890 -0.142806 -0.824245 -0.513102 -1.058079 -0.160922 0.570591 0.514166 0.067163 -0.754868 0.000196 -1.631325 -1.115717 0.653673 -0.343948 0.654897 -0.275961 0.442910 -2.635236 1.256536 1.298909 -0.341347 -1.807340 0.140780 -0.846892 -0.048099 -0.139898 -0.120782 0.418306 0.203179 0.612890 0.479696 0.322720 0.316629 0.239030 0.111428 2.557845 -0.563881 1.287385 0.898597 0.083453 -0.054717 0.469511 0.486180 0.152281 0.828890 0.806996 -0.375842 -0.785492 -0.181620 -0.295593 -1.120959 0.952396 0.095333 -0.607722 -0.859089 -0.497093 -1.215608 -0.439773 -1.274160 1.030838 2.070941 -1.136795 1.463895 0.634247 1.129563 0.098840 1.053408 -0.154383 1.664104 0.511546 -0.829898 -0.045476 -1.139579 -0.387304 0.066206 -0.088898 -0.866742 -1.321499 0.801231 -1.586970 -1.623052 0.826539 0.283095 -0.160760 -0.982940 -0.123995 0.884264 0.579094 -0.766627 -1.424971 -0.788020 0.789607 -0.221722 -0.641049 0.257937 -0.414842 -0.086798 -0.444869 -1.424123 -0.198383 0.711330 -0.808362 -0.553078 1.424884 -0.564439 0.353862 -0.179414 0.217535 -0.296674 1.059530 0.183245 0.785361 0.015244 -0.061824 -1.830983 0.479472 0.345731 0.587378 -0.337816 0.206870 0.025806 0.527871 -0.442622 0.458501 -0.675294 0.731640 0.948166 -0.374625 -0.896731 -0.996531 -0.040912 -1.344478 0.294335 -0.962061 -0.668048 0.232197 1.198264 1.210119 0.629240 1.444668 -1.170678 0.837572 -0.253947 0.184620 0.631412 -0.173031 0.604131 -0.727963 -1.127756 0.611551 0.817659 0.353665 0.427389 -0.596919 -0.011617 -0.905266 -0.651884 0.585875 0.651142 -0.006759 1.423816 0.890016 1.296055 -1.742753 0.338819 0.355701 -0.406705 0.276397 -0.271621 -1.664153 0.611122 0.399259 0.409448 1.380841 -0.232038 -0.568633 0.410056 -0.208724 0.426773 -0.943821 0.445487 -1.148380 -0.421663 -0.799637 0.298666 -0.826379 -0.482983 -0.762695 -0.548542 1.673854 -1.100916 -1.359774 1.478974 -0.415790 0.662729 -1.835715 1.034684 -0.795006 1.119432 -0.373484 0.019645 -0.282041 0.487278 -0.503827 0.229356 0.813926 -0.822757 0.731703 1.533899 0.352812 0.299588 0.360083 1.043231 -0.391642 0.222029 -0.848949 1.240930 -0.192560 -0.481624 -0.046431 -0.654272 0.523958 -0.194453 0.246952 0.859919 1.000809 0.190113 0.515790 1.091295 0.456673 -0.764052 0.757826 -0.149890 0.702138 -0.703001 -0.122406 -0.242066 0.257134 -0.313598 0.454372 -1.720944 -1.533146 -1.578136 -1.333437 -0.149609 -0.240248 0.194128 0.034820 -0.010441 -1.610685 -1.038508 0.955109 -0.566936 0.850033 0.743454 0.765238 1.179731 1.337618 -0.570228 -0.223486 -0.052942 -0.104195 -0.565861 -0.519644 -0.751994 1.030595 -0.881558 0.815068 1.291607 -0.261332 0.504617 0.240837 0.852225 -0.906215 1.858393 0.973323 -0.850108 0.606590 1.069798 1.878347 -0.230147 -1.003953 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.294208 -0.892814 1.566300 1.467280 -0.159824 0.625964 0.218397 -1.033500 1.223337 0.743887 0.011670 0.297262 -0.905863 0.382639 0.193657 0.915899 -1.094448 -0.748117 -0.318331 -0.884885 -0.718670 -0.846663 0.128468 0.216161 0.444786 0.211702 -0.703329 -0.099504 -0.718125 -0.987533 0.753817 -0.286093 0.744003 0.143522 0.267930 -3.173453 1.146220 0.816210 -0.394003 -1.261377 0.122400 -0.644836 0.226119 -0.211337 -0.350390 0.272127 -0.043651 0.305642 0.719119 0.329544 0.448808 0.272847 0.344241 2.340771 -0.661653 0.939023 0.508593 -0.145183 -0.343415 0.313610 0.351380 0.291964 0.820244 0.648711 -0.222518 -0.835231 -0.178860 -0.450074 -1.274063 0.923053 0.078072 -0.556404 -0.899205 -0.550016 -0.609627 -0.556993 -1.475269 1.003648 1.666877 -1.137488 1.017286 0.341672 0.495554 0.157681 0.892364 -0.093465 1.448180 0.325556 -0.630586 0.223142 -0.288093 -0.565651 0.328216 -0.021849 -0.571759 -1.377719 0.486715 -0.610303 -1.287825 0.794152 0.380993 0.073083 -1.387692 -0.625756 0.727193 0.486813 -0.772342 -1.284520 -0.761495 0.530510 -0.010083 -0.556189 -0.073857 -0.388745 -0.254334 -0.460047 -1.301784 -0.189932 0.372529 -0.606237 -0.604523 1.158434 -0.453338 0.094121 -0.127392 0.267357 -0.423944 1.213086 -0.112396 0.816306 0.170595 0.116927 -1.338635 0.168235 0.402822 0.714858 0.047144 -0.204229 -0.374761 0.379209 -0.716088 0.510407 0.003619 0.771265 1.342384 -0.026632 -0.807027 -0.526702 0.020840 -1.496471 0.410883 -0.950043 -0.067543 0.558099 0.982622 0.792104 0.655153 1.011659 -1.077298 0.758871 -0.409789 0.070062 0.830307 0.380851 0.633180 -0.593167 -0.874036 0.454188 0.563461 0.326460 0.344198 -0.475777 -0.003236 -0.648527 -0.579235 0.396554 0.513335 -0.153560 0.850343 0.682892 2.161299 -1.299656 0.425997 0.452369 -0.256741 0.315845 -0.204728 -1.253882 0.420517 0.302045 -0.178753 1.050765 -0.309989 -0.647353 0.213699 -0.209562 0.368960 -0.696567 0.284841 -0.821091 -0.213543 -0.800169 0.044999 -0.627583 -0.448318 -0.482376 -0.149252 1.417017 -0.980114 -0.895124 1.477882 -0.625349 0.500372 -1.487658 1.646812 -0.618651 0.591994 -0.916284 -0.384275 -0.224558 0.497822 -0.456075 0.384414 0.644401 -0.496660 0.161394 1.653869 0.331391 0.278094 0.108922 0.965038 -0.045078 0.412748 -0.603186 1.458133 -0.222574 0.012174 -0.083136 -0.567654 0.371513 -0.328682 0.164998 0.889021 0.892150 0.128792 0.346560 0.855416 0.522740 -0.626207 0.848924 -0.029347 0.516607 -0.585050 0.024103 0.066737 0.390021 -0.361958 0.462650 -1.273941 -1.097474 -1.090811 -0.700689 -0.331917 0.623349 0.215184 -0.087377 -0.088941 -1.102286 -0.749262 0.946200 -0.600533 0.460481 0.485094 0.621189 0.982057 1.347205 -0.357016 -0.291606 -0.175888 -0.318534 -0.278246 -0.261286 -0.671407 1.010396 -0.722978 0.582624 0.944956 -0.141228 0.400579 0.100150 1.110336 -0.666449 1.464870 0.565041 -0.313904 0.801583 1.144716 1.442293 -0.079463 -0.706941 -PE-benchmarks/topological-sorting.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.672051 -4.143692 5.735081 5.140046 -0.057420 3.770182 -0.660768 -2.340341 0.452456 2.961293 -0.230466 3.632947 -2.144207 0.323533 -0.152329 1.181352 -1.872371 -1.303193 -1.604528 -1.649690 -0.084262 -1.379303 -2.392552 4.492522 1.155014 0.269130 -2.283265 1.083229 -4.756709 -5.398745 -0.739292 0.236674 2.579549 -2.573240 2.433301 -5.670181 3.953351 5.487489 -0.056606 -5.186964 0.871994 -0.584748 -0.954608 1.096995 -2.632837 1.956719 0.300989 -1.859582 0.201573 1.442198 -0.572749 1.582320 3.806186 4.391415 0.793414 3.815187 3.607039 -0.599889 1.771910 -0.418508 -0.112883 0.435762 1.099250 -0.212724 0.254336 -2.361486 -0.389770 1.683158 -1.965830 0.770357 -0.201924 -2.984281 -1.329768 -1.972603 -4.182974 -0.419975 0.852322 1.708002 4.065965 -1.428342 3.746817 0.720447 0.385266 1.661453 3.872487 0.472685 1.741155 1.807338 -1.172011 1.797426 -0.321075 -0.491971 1.147965 1.438325 -4.238392 -3.339257 2.242564 -4.137660 -3.318035 3.908075 0.089789 -2.432305 -2.132013 -3.785870 0.445496 1.907455 -2.227487 -2.997370 -1.147776 4.101660 1.068494 -2.471256 0.360850 -0.647522 0.581137 -0.002839 -2.236766 1.605005 3.389385 -1.027415 -1.264229 3.892827 0.395388 1.768353 -1.000303 1.409907 -1.632088 1.586553 0.897210 2.527708 -2.233239 -0.304210 -1.434441 -0.150881 0.284947 -1.826671 -1.488816 -1.012388 0.001502 1.992573 2.004700 3.960071 -0.896149 2.091393 2.392407 1.169024 -0.876697 -3.061532 -2.038125 -2.806838 -0.661316 -1.002704 -3.815203 2.681799 2.498703 -0.694692 0.383976 1.299744 -1.172831 -0.079758 -0.484243 -0.680457 1.074944 -2.075400 0.255765 -1.628992 -3.399540 2.560797 2.103150 2.049497 1.178446 -0.458831 0.623622 0.647293 0.123742 1.699409 1.295271 -0.246195 4.433792 3.311855 5.798260 0.716256 -0.999092 -0.689249 -3.069554 1.108706 -1.926945 -3.276400 -0.546122 2.081185 -0.722211 5.709321 -1.251553 -1.390228 3.147302 -0.444272 0.767846 -2.298112 3.850309 -2.918180 0.158058 -1.560017 -2.484177 -1.392372 -1.071278 -4.215814 -1.893260 4.647797 -5.082741 -2.586771 2.037007 0.506873 0.167238 -4.145198 2.653257 -1.331416 3.329087 1.488190 -0.668205 0.386026 0.905109 -2.092275 0.372550 2.148295 -3.180828 1.395448 2.803523 0.411205 -1.320419 0.104721 1.638855 -1.453280 0.050417 -3.770179 2.645488 -1.020087 0.477484 -0.975417 -1.237714 0.636904 -1.480636 -0.228574 -2.423166 0.302857 -0.017696 -2.085313 3.223293 -0.107101 -0.458407 1.943614 -1.064861 0.776671 -2.355039 -0.474046 -1.263245 2.585627 2.185680 1.687085 -4.872975 -1.184391 -5.232126 -2.296176 -0.531409 2.291622 0.586114 1.077147 -1.151417 -4.032666 -4.126030 5.321178 -1.148625 1.433846 3.257279 2.228843 2.876159 2.124260 1.232549 -0.038468 -1.482330 -0.040549 -0.582588 -0.085108 -0.570132 2.544275 -1.456049 1.479798 2.941885 -0.148278 3.296914 0.101987 -0.659442 -3.307409 4.501270 2.209748 -2.411101 0.581113 3.081359 2.146839 -3.438978 -2.006852 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_S_buffer_size() = -0.218478 -0.404421 0.333654 0.227742 -0.013551 0.191383 0.003816 0.074405 0.168943 0.030653 -0.279672 0.187840 -0.233518 -0.096473 0.103834 -0.012843 -0.142653 -0.313309 0.177629 0.093304 0.029220 -0.216995 -0.193204 0.269348 0.030473 0.295112 -0.077410 0.079451 -0.379280 -0.087123 0.042887 -0.091357 0.172813 0.345160 0.219322 -0.241826 0.059078 0.246296 0.037296 -0.472478 -0.058861 -0.101213 0.104244 -0.074920 0.072951 0.250996 0.259438 0.051251 -0.091875 0.018940 -0.171621 -0.275185 -0.068764 0.052817 0.130077 0.209773 0.334137 -0.023180 0.084442 -0.134843 0.164161 -0.163930 0.186370 0.190714 -0.260861 -0.014889 -0.071218 -0.116727 -0.197405 0.030427 0.058191 0.035134 -0.161212 -0.221817 -0.149368 -0.074715 -0.143167 0.144022 0.418446 -0.147395 0.436518 0.239540 0.457277 -0.002557 0.220206 -0.006842 0.157958 0.136116 -0.293983 0.138793 -0.279409 -0.217516 -0.094989 0.129119 -0.130051 0.239283 0.108881 -0.280051 -0.270494 0.191853 -0.070135 0.075032 -0.149167 0.210561 0.161908 0.268139 -0.113698 -0.214939 -0.085336 0.049276 -0.102866 -0.095219 -0.025613 0.148430 -0.145825 -0.128953 -0.222964 -0.096419 0.266909 -0.284086 0.130662 0.241231 -0.194987 0.281165 -0.059551 -0.106417 0.006511 0.307506 0.351538 -0.023088 -0.015940 -0.280253 -0.340471 0.035779 -0.010366 0.316799 -0.192416 -0.074292 0.219401 0.034452 0.139787 -0.113448 -0.123602 0.102662 0.261755 -0.079782 -0.175770 -0.372624 -0.184114 -0.252198 0.056891 -0.172897 0.143445 0.199617 0.181227 0.185831 0.007169 0.518831 -0.287821 0.127849 -0.092217 0.028207 -0.069519 0.219030 0.084485 -0.149525 -0.119525 0.186284 0.207561 0.019048 0.250457 -0.264963 0.072194 -0.139437 -0.157357 0.339123 0.134957 0.104238 0.289954 0.077836 -0.083429 -0.118048 -0.113955 -0.087890 0.060481 -0.034107 0.039233 -0.304765 0.245051 -0.023564 0.116117 0.139560 -0.029018 -0.057132 0.121369 -0.055654 0.038271 -0.203392 0.219210 -0.246642 0.066443 -0.159225 0.135168 -0.232601 -0.116190 -0.131678 0.019497 0.343222 0.072350 -0.250956 -0.028468 0.118889 0.306166 -0.284437 -0.152712 -0.139396 0.463947 -0.006682 -0.019745 -0.014287 -0.161344 0.201903 -0.192004 0.174172 -0.019063 0.002340 0.026426 0.042157 -0.128333 0.267453 0.087299 0.022702 -0.085772 -0.030736 -0.036545 0.005013 0.063651 0.108576 -0.084867 0.196691 0.129289 -0.146512 0.153999 0.237843 0.027494 0.154216 0.093497 -0.128046 -0.183874 -0.117530 0.028700 0.396507 -0.123754 -0.073896 -0.283575 0.249733 0.001015 -0.061304 -0.287045 -0.380848 -0.115790 -0.357103 -0.276749 0.004119 0.024572 0.148228 0.067226 -0.158964 -0.093125 0.131974 -0.058260 0.580381 -0.016757 0.109505 0.314159 0.119575 -0.165834 -0.290013 0.138222 0.026608 -0.212446 0.138832 -0.193566 0.050275 -0.201328 0.125471 0.256975 -0.127538 -0.024662 0.013340 0.324870 -0.186868 0.417084 0.273838 -0.393000 0.027585 0.067379 0.319785 -0.106208 -0.232574 -PE-benchmarks/topological-sorting.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.685790 -1.190648 2.165852 1.621221 0.354244 0.873517 0.945493 -1.415804 2.186204 1.355817 -0.223593 -0.336300 -1.486394 0.087313 -0.324658 0.870964 -1.072410 -1.415127 -0.316788 -1.312204 -0.508945 -1.593366 0.650730 -0.153851 0.593807 -0.552835 -0.675200 -0.393974 -1.459188 -1.414530 1.693657 -0.461342 0.895332 -0.376155 -0.281987 -3.800919 1.693832 1.171244 -0.636843 -1.606315 0.243399 -0.573358 -0.175388 0.283014 -0.072640 0.301230 -0.021594 0.766653 0.915062 0.523105 1.186599 -0.121210 0.011104 3.384079 -1.413203 1.319523 0.411458 0.090441 -0.313444 1.232221 0.384337 0.481915 1.017250 1.510242 -0.135491 -0.716580 0.410846 -0.562143 -2.216428 1.557878 -0.165922 -0.644677 -0.705870 -0.187320 -0.719359 -0.388973 -1.116479 0.942003 2.537458 -1.001131 1.770549 0.611811 0.913408 -0.224184 0.424736 -0.192292 1.619424 0.339229 -0.944840 -0.587587 -1.280593 -0.319385 0.034454 0.143866 -0.547917 -1.353225 1.073702 -0.514177 -1.584082 0.664469 0.432391 0.025107 -1.818163 -0.154071 0.946531 0.532054 -0.830996 -1.825349 -1.417764 0.832819 -0.596263 -0.359454 0.150823 -0.707089 -0.505298 -0.701376 -1.474568 -0.694477 0.066463 -1.146832 -1.277849 1.439725 -1.147413 0.163980 0.169659 0.646666 -0.455273 0.883362 -0.004120 1.199829 0.821345 -0.008680 -2.453391 -0.247475 0.684590 1.565006 0.463115 0.057688 -0.433882 0.483829 -1.064075 0.641223 -0.306298 0.406709 1.591763 -0.641824 -0.813114 -0.457300 0.779836 -1.932077 0.490200 -1.448989 -0.296362 0.183392 1.394764 1.324436 0.926215 2.252901 -1.959721 1.451565 -0.595068 -0.140853 0.521606 -0.026959 0.798825 -0.624095 -1.350619 -0.013529 0.988003 0.307122 0.289653 -0.956496 -0.387048 -1.421143 -0.915195 0.164485 0.325991 -0.556210 0.701941 0.999695 2.396040 -2.751377 0.756221 1.005123 -0.225457 0.272670 -0.033638 -2.138134 0.637074 0.370178 -0.035191 1.278849 -0.182883 -0.941782 0.263304 -0.691981 0.268952 -1.052914 0.303776 -1.216388 -0.451391 -1.098487 0.085832 -0.979707 -0.770036 -0.336378 0.044166 1.575385 -0.584545 -1.667977 2.096734 -0.486038 0.128449 -2.202075 2.125754 -0.828563 0.657238 -1.044588 -0.100588 -0.694505 1.324877 -0.405664 0.135962 0.512949 -0.813074 1.447547 2.736125 0.527546 0.546230 0.190129 1.566768 -0.333366 0.169467 -1.052224 1.515061 -0.282749 -0.959711 -0.111870 -0.900301 0.761030 -0.592337 0.258829 1.184954 1.736794 -0.349461 0.912233 1.079799 0.822171 -0.560570 1.228560 0.360734 1.025288 -0.435459 0.177679 0.225810 0.096100 -1.010888 1.019473 -1.798038 -1.865099 -0.805238 -1.848655 -0.221595 -0.077268 0.344385 -0.075455 0.314957 -2.003722 -0.948595 0.617669 -0.752739 0.966247 0.700550 0.931800 1.056433 1.944935 -0.929363 -0.130757 0.007426 -0.016908 -0.878492 -1.075832 -0.598570 1.315386 -0.970836 0.852806 1.104769 -0.111747 0.297107 -0.098606 1.077442 -1.180052 2.148019 1.048170 -0.004098 1.306496 0.653055 2.740657 0.224016 -0.812774 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.447068 -12.681687 29.716365 25.506638 -4.834571 11.102321 -4.311518 -20.831250 14.094726 12.517827 -4.577457 11.468296 -7.744517 6.523405 -7.464679 16.522298 -18.568111 -7.499212 -8.662915 -14.449385 -11.157495 -8.270063 -1.370165 7.239917 9.588166 9.208126 -12.766565 5.384180 -8.747903 -30.005697 1.145387 -0.521707 6.925974 -7.135745 9.442975 -30.487420 22.620843 19.949298 -5.371047 -21.449269 3.153553 -3.639174 -7.204790 2.057103 -6.586875 6.313273 -3.911231 8.089753 6.138946 9.132201 5.054367 11.850783 15.516550 32.235115 -0.767598 17.945057 13.647551 1.850374 0.800451 5.069488 6.197062 7.454042 5.291622 4.833426 5.147646 -15.266863 -4.641482 1.737809 -8.140695 13.655036 -1.050823 -17.925055 -11.953125 -12.994889 -13.203126 -2.278284 -25.656115 15.178296 22.456325 -15.634608 10.757149 6.328318 3.731241 2.612071 12.549669 -4.421609 21.262481 9.673629 -3.843021 3.148794 2.727800 -9.335207 9.869341 -5.691891 -19.190867 -29.997292 11.857071 -27.418396 -20.858850 13.499493 10.315128 -8.608915 -6.717238 -11.073003 9.122966 2.073858 -8.190874 -13.518160 -3.650503 11.786644 2.553292 -10.416857 -1.506158 -1.858207 3.638164 10.164716 -20.720881 4.895789 9.522028 -3.147675 -3.536654 15.239392 7.238384 0.169872 -5.719762 4.225626 -4.434206 13.151689 -2.120891 16.707090 -8.341053 15.537473 -5.802496 16.429556 6.874218 -17.841617 -4.781287 1.205975 -2.077821 9.611308 -5.941945 16.034568 -15.346250 10.648490 14.124504 2.415065 -14.241154 -11.493807 -12.065764 -18.367293 3.532158 -10.287936 -19.550326 3.382248 14.053263 9.415515 7.750616 2.557624 -13.956611 0.996486 -1.469628 5.911299 9.501717 -5.752650 5.503445 -8.995373 -15.538272 12.091634 9.183272 5.550365 4.180608 -2.987781 1.780627 -5.586519 -2.204292 12.764245 8.445817 -1.668275 17.616216 14.004925 30.526688 -5.963789 1.763824 4.602971 -10.035804 3.839773 -5.424817 -19.788067 2.402029 5.870457 13.969705 24.949556 -3.571394 -0.127597 6.887820 -1.738573 4.671939 -9.844649 8.524456 -13.526915 -4.120889 -6.887162 4.393484 -6.816126 -0.494419 -11.160083 -10.191494 22.276395 -28.831692 -10.976327 25.575983 -9.827303 4.373694 -15.341283 15.769661 -7.488765 10.625228 0.367360 -2.255977 0.430132 -4.432120 -13.892408 6.559218 10.016213 -7.630130 1.974671 18.198079 2.496971 -0.282509 -0.911959 11.281534 -11.407460 9.779967 -14.181446 22.125319 -2.745635 -2.063838 -6.929140 -6.209007 -2.223467 -11.575712 2.980911 5.372674 2.166273 4.373979 -2.112634 8.843779 9.710340 -11.551805 18.966506 -1.812731 -1.783772 -12.626134 -3.718743 3.727303 3.936635 -2.713262 7.776796 -21.842611 -9.850498 -34.203095 -8.501056 -4.377816 -0.560697 8.089966 -5.374389 -8.432918 -11.648178 -20.705143 31.253561 -6.195582 -3.112724 14.584573 10.517345 13.897755 17.365802 1.109515 6.188124 -11.087684 -4.504317 -0.349707 -7.550981 -6.393490 17.804896 -3.371168 5.463010 18.452117 -2.154034 13.579484 1.073612 3.730921 -10.897282 17.121484 7.491844 -7.973535 4.338775 18.422554 16.551349 -7.544057 -13.073616 -PE-benchmarks/topological-sorting.cpp__int** std::copy(int**, int**, int**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/topological-sorting.cpp__int** std::copy_backward(int**, int**, int**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.002590 -2.236412 3.990259 2.842120 0.395314 1.402840 2.065714 -2.940371 3.384983 1.705869 -0.222157 0.189625 -3.238931 0.781844 -1.972752 1.833918 -1.767317 -2.788608 -0.883293 -2.442046 -1.241466 -2.643534 1.838462 0.269928 1.492472 -0.675727 -1.373703 -1.149955 -3.407651 -3.210155 2.409703 -0.579426 1.513872 -0.943142 -0.488274 -5.501300 2.826055 2.404866 -1.316287 -2.934907 1.298539 -1.094243 -0.694661 0.623200 0.036080 0.505180 -0.047067 1.667688 1.712579 1.508214 2.438925 0.608064 0.366787 5.480794 -2.488642 2.751874 1.472015 0.926354 -0.517440 1.862516 0.334428 0.859271 1.423547 2.276334 -0.553870 -1.262660 0.086250 -0.933734 -3.663222 2.621450 -0.535703 -1.330623 -1.849206 -0.688515 -1.636352 -0.575293 -2.186069 1.508613 4.748994 -2.422046 2.871648 0.895988 1.250136 -0.951425 0.889360 -0.552491 2.248578 0.755513 -1.424635 -1.196851 -2.464015 0.003869 -0.450127 0.313011 -1.395234 -3.336770 2.461900 -1.923536 -3.557176 1.180887 0.659040 -0.498283 -2.564121 0.203191 1.375112 0.957721 -2.046630 -3.671264 -2.241038 1.626446 0.031900 -0.733128 0.448136 -1.052654 -0.744597 -1.141396 -3.262612 -0.870506 0.431726 -2.539594 -2.166579 2.458481 -1.459643 1.085509 0.589499 1.387145 -0.809269 2.064604 0.410135 1.894155 1.414213 0.392535 -3.615964 0.414928 1.217725 2.225735 -0.353917 0.919911 -0.852215 0.687299 -1.567265 1.038126 -1.163105 0.727095 2.599739 -1.362495 -2.119948 -0.522075 0.985791 -3.711722 1.225651 -2.814027 -0.996560 -0.321871 2.063609 1.836243 1.488283 4.382126 -2.742259 2.068603 -0.166370 -0.277654 1.054208 -0.386032 1.781036 -1.349522 -3.343970 0.626425 1.568908 0.142254 0.425859 -0.957292 -0.577392 -2.992884 -1.757786 0.176405 0.726402 -1.313143 1.927932 1.751567 3.435516 -3.697294 1.027407 1.542713 -0.944833 0.805784 -0.463749 -4.191990 1.216398 0.628448 0.562254 2.862609 -0.134557 -1.562454 1.677068 -1.080284 0.977726 -2.167720 0.894175 -2.683073 -1.304732 -2.423826 0.339665 -0.787090 -1.189376 -0.407498 -0.321609 3.120899 -1.349148 -2.681129 3.466195 -0.558192 0.605895 -4.347965 3.773899 -1.321135 1.330316 -1.051910 0.332542 -0.819735 1.842464 -0.634583 0.087261 0.931776 -1.242464 2.640548 4.889611 0.442114 0.816670 0.810314 2.907347 -0.834272 0.615202 -1.920909 3.241435 -0.534315 -2.424377 0.387986 -1.326851 0.801275 -1.560397 0.490005 2.721487 2.719459 -0.615466 1.692638 1.925770 2.159838 -1.273495 2.577408 0.313841 1.740160 -1.350636 0.128767 0.381541 0.095800 -1.551347 2.105341 -3.335791 -3.985668 -1.961574 -4.208002 0.113450 -1.020697 1.152421 -0.669791 0.007553 -3.511043 -2.185859 1.464434 -1.425947 1.886255 2.167181 2.155478 2.392875 3.950999 -1.607018 0.422011 -0.074175 0.496253 -1.396587 -1.912066 -0.714010 1.441643 -1.426154 1.325207 2.055315 0.215666 1.002511 -0.799616 1.876024 -2.117487 4.106975 1.751903 -0.162672 3.092010 1.501781 4.500863 0.559621 -1.389175 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/topological-sorting.cpp__int** std::__miter_base(int**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/topological-sorting.cpp__int** std::__niter_wrap(int** const&, int**) = -0.216889 -0.266459 0.395803 0.358802 0.113353 0.124916 0.245948 -0.174661 0.469585 0.329413 -0.007362 -0.032471 -0.401040 0.090013 0.115063 0.290524 -0.196848 -0.331630 0.027113 -0.200139 -0.128038 -0.330870 0.165481 -0.106598 0.150359 -0.107711 -0.137837 -0.168707 -0.356358 -0.158032 0.290792 -0.185617 0.213712 0.088776 -0.043321 -0.702062 0.261666 0.145042 -0.145935 -0.324930 0.068807 -0.258085 0.239958 -0.072157 0.163421 0.120623 0.114283 0.071114 0.303339 0.131296 0.287338 -0.121985 -0.030490 0.555408 -0.395300 0.218027 0.043743 -0.055105 -0.123191 0.127063 0.076943 -0.007923 0.280317 0.287755 -0.196732 -0.193710 -0.079493 -0.219865 -0.473803 0.243908 -0.030907 0.036258 -0.336534 -0.063083 -0.038942 -0.199795 -0.676753 0.197781 0.544326 -0.285583 0.383646 0.152019 0.268294 0.001952 0.195213 0.037562 0.294699 0.022421 -0.294056 0.011327 -0.200821 -0.072924 -0.024529 0.094550 0.022512 -0.128327 0.112014 0.162297 -0.352471 0.176669 0.028961 0.169857 -0.442496 0.072874 0.169694 0.238159 -0.255216 -0.464516 -0.234132 0.024126 -0.010357 -0.087593 0.024672 -0.299998 -0.227258 -0.320474 -0.343451 -0.193706 -0.016508 -0.325417 -0.278200 0.334512 -0.299204 0.071418 0.048823 0.086933 -0.119701 0.385644 0.071677 0.245280 0.189724 -0.164565 -0.808130 -0.016216 0.186422 0.517857 0.047057 0.096815 -0.174283 -0.009022 -0.269278 0.011859 0.148086 0.219611 0.447816 -0.194995 -0.199626 -0.079910 0.190318 -0.396993 0.232127 -0.294806 0.257395 -0.013431 0.286884 0.249883 0.268839 0.600635 -0.377012 0.270257 -0.180719 -0.050241 0.267341 0.248729 0.269126 -0.163710 -0.187158 0.028721 0.268726 -0.047430 0.144729 -0.181513 0.009020 -0.336900 -0.070138 0.030282 0.083114 -0.156346 0.217679 0.111036 0.453879 -0.472448 0.147832 0.227368 0.070123 0.064001 0.009635 -0.384964 0.263986 0.048628 -0.160819 0.076910 -0.038292 -0.271402 0.056405 -0.160563 0.133449 -0.213268 0.019920 -0.220722 -0.107197 -0.261829 0.103177 -0.197172 -0.249392 0.038858 0.171940 0.353763 0.152851 -0.182399 0.246892 -0.116255 0.064242 -0.399758 0.631279 -0.239453 0.106469 -0.377915 -0.070115 -0.129647 0.411151 0.018980 -0.030555 0.165898 -0.077239 0.173204 0.496971 0.165358 0.094412 0.114861 0.339207 0.085525 0.048982 -0.029303 0.325288 -0.067848 0.012571 0.122012 -0.172845 0.197385 0.014790 -0.036545 0.399399 0.403974 -0.088995 0.245487 0.179694 0.199252 -0.154400 0.178474 0.025816 0.378240 -0.117683 0.043544 -0.025753 0.044870 -0.168403 0.133783 -0.341205 -0.382094 0.154007 -0.229562 -0.076458 0.229987 -0.023723 0.042852 0.124349 -0.381034 -0.094659 0.022612 -0.191255 0.188176 -0.014701 0.111683 0.259365 0.390275 -0.190001 -0.239648 -0.002498 -0.080009 -0.127920 -0.068424 -0.147443 0.223762 -0.365918 0.132946 0.165409 -0.101269 -0.077372 0.040507 0.414465 -0.209244 0.484187 0.195786 0.028391 0.414686 0.305020 0.665044 0.015395 -0.157214 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/topological-sorting.cpp__int** std::__niter_base(int**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.600533 -1.041844 1.619427 1.378216 0.272507 0.824195 0.348432 -0.969565 1.237401 0.824992 -0.097873 0.440667 -1.041300 0.234132 -0.205923 0.650773 -0.779620 -1.056540 -0.228010 -0.821215 -0.429342 -0.965398 0.074700 0.386226 0.440356 -0.250667 -0.766871 -0.077036 -1.603033 -1.143458 0.696661 -0.314285 0.750462 -0.395423 0.127330 -2.621557 1.210629 1.137690 -0.347127 -1.394591 0.259019 -0.779689 0.106371 -0.022152 -0.119568 0.375091 0.097134 -0.054510 0.690456 0.322989 0.587278 0.253894 0.071668 2.066610 -0.834538 1.101037 0.550737 -0.078823 -0.202771 0.430875 0.209935 0.203810 0.878244 0.731327 -0.495081 -0.764550 -0.009124 -0.210427 -1.337781 0.839785 -0.013782 -0.506149 -0.676640 -0.271593 -0.959093 -0.485960 -0.277710 0.616621 1.775421 -0.746316 1.313062 0.303794 0.730842 0.109496 0.998606 -0.045259 1.304664 0.330009 -0.795121 -0.079795 -0.875931 -0.099307 0.007694 0.551060 -0.581196 -0.736472 0.583724 -0.866924 -1.355223 0.707489 0.165430 -0.031934 -1.519198 -0.304246 0.737274 0.565348 -0.725766 -1.431942 -0.780584 0.742669 -0.177944 -0.582476 0.115169 -0.785590 -0.314953 -0.590908 -1.144516 -0.258714 0.451873 -0.750119 -0.949387 1.299483 -0.721874 0.232589 -0.095633 0.433281 -0.473226 0.811847 -0.071659 0.766555 0.150398 -0.288901 -1.836737 -0.212697 0.288959 0.880497 -0.271666 -0.064174 -0.364144 0.322380 -0.555130 0.486022 -0.252503 0.719263 1.224016 -0.274696 -0.640699 -0.540598 0.282768 -1.408026 0.284458 -0.847252 -0.359021 0.176949 1.059271 0.645336 0.687662 1.521575 -0.881449 0.838324 -0.281706 -0.121386 0.831636 -0.182395 0.636238 -0.649011 -1.029228 0.492739 0.691402 0.269530 0.353213 -0.414711 -0.048423 -0.801910 -0.616477 0.285439 0.393846 -0.044838 1.061487 0.723096 1.753884 -1.558723 0.402491 0.444284 -0.320849 0.359752 -0.292614 -1.328025 0.374052 0.454921 -0.143166 1.310058 -0.209046 -0.910854 0.316269 -0.131975 0.484701 -0.898665 0.527041 -0.970127 -0.156025 -0.750132 -0.304326 -0.639017 -0.596633 -0.635652 -0.295261 1.426601 -0.614980 -1.339731 1.270851 -0.297445 0.461088 -1.908107 1.123138 -0.765176 0.862263 -0.630826 -0.015004 -0.277317 0.845053 -0.487015 0.365510 0.654365 -0.814249 0.824125 1.605596 0.387941 0.354190 0.111475 0.938577 -0.094589 0.174608 -0.714513 1.243209 -0.217186 -0.331677 0.021785 -0.617787 0.484166 -0.236346 0.098818 0.485949 1.081029 -0.080485 0.339442 1.092934 0.528264 -0.541642 0.734585 -0.082111 0.671883 -0.478785 -0.083351 -0.082688 0.334054 -0.145825 0.541221 -1.456299 -1.280974 -0.790929 -1.401241 0.026195 0.395973 0.070620 0.159479 0.090045 -1.550323 -0.730583 0.763019 -0.530834 1.233923 0.573062 0.702596 0.916894 1.246004 -0.532897 -0.317028 -0.171861 -0.144957 -0.506149 -0.455557 -0.607933 0.972991 -0.782057 0.717088 0.879677 -0.201940 0.366110 0.139859 0.700485 -0.816486 1.692227 0.748005 -0.360787 0.901222 0.718540 1.786064 -0.230132 -0.709979 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.387749 -2.830341 3.437951 2.989720 1.054548 2.502771 0.428061 -1.737552 1.994820 2.561661 -0.781074 1.714182 -1.936048 -0.015437 -0.404853 0.966785 -1.069674 -2.179832 -0.046583 -1.051753 -0.247515 -2.099729 -0.914266 1.817814 0.592626 -0.462791 -1.425731 0.472712 -4.023316 -3.881001 0.419131 -0.453275 1.523534 -1.308139 0.793483 -4.193807 2.757834 3.260757 -0.292282 -3.718997 0.287465 -1.228927 -0.460464 0.950746 -0.089163 1.542769 0.738089 -0.312462 0.577840 1.032793 0.859848 0.208288 0.980983 3.287686 -0.558443 2.904885 2.012975 -0.107171 0.502293 0.828151 0.339066 0.069805 1.747007 1.570387 -1.006560 -1.047064 0.158903 0.641621 -2.445738 1.295469 -0.049696 -1.540252 -1.030660 -0.613771 -2.319734 -0.551378 0.455631 0.776670 3.923093 -0.738261 3.491029 1.060093 2.009712 0.225836 2.675305 -0.222570 2.600210 1.072201 -2.131711 -0.000464 -2.034820 -0.676603 -0.082439 1.636607 -1.820255 -0.663668 1.121304 -2.764050 -2.834291 2.012393 -0.335948 -0.499620 -2.807065 -0.750611 1.822378 1.267579 -1.296142 -2.986843 -1.572940 2.154787 -1.019851 -1.585795 0.300082 -1.355503 -0.419769 -0.184829 -1.932689 -0.542632 1.956727 -1.747634 -1.841424 2.866977 -0.804076 1.275978 -0.506167 0.684790 -0.635059 0.862693 0.439333 1.569074 0.082674 -0.979631 -3.764813 0.069747 0.234173 0.060557 -1.012436 -0.151998 0.180677 1.058194 0.001532 1.901883 -1.409834 1.636451 2.603038 -0.061355 -1.058615 -1.915866 0.308612 -2.275786 0.435339 -1.419855 -1.701201 -0.003592 2.354559 0.324189 0.921366 2.512839 -1.744781 1.337177 -0.556726 0.205015 0.972120 -1.197044 0.839838 -1.380293 -2.366403 1.480603 2.269941 0.509939 0.968731 -1.149870 0.021150 -0.928888 -1.344066 1.223838 0.656850 0.248702 2.844945 1.588133 4.040474 -2.262296 0.231799 0.181962 -0.915273 0.791330 -1.010555 -2.941728 0.679820 1.084144 0.661145 3.606004 -0.462979 -1.737975 1.044984 0.099487 0.744418 -2.016401 2.069713 -2.441320 -0.070683 -1.008320 -1.059365 -1.382750 -1.337908 -1.920117 -0.522487 3.120854 -1.184863 -3.177968 2.094293 -0.849620 0.659644 -4.156625 1.352500 -1.634279 1.904802 -0.407949 0.063399 -0.484897 1.482523 -0.716775 0.508464 1.574015 -2.171788 2.445416 2.551073 0.538284 0.363977 0.585134 1.322787 -0.518651 -0.693852 -1.980961 1.950209 -0.451639 -0.251271 -0.453120 -1.362824 1.557376 -0.267429 -0.348303 -0.485449 1.891806 -0.970915 -0.093498 2.552451 0.137811 -1.034062 1.428750 -0.256381 1.481213 -1.259119 -0.416312 -1.078382 0.480449 0.474308 1.265427 -3.381097 -1.835429 -2.166972 -3.222100 -0.422534 1.020178 0.504124 0.966949 0.350243 -3.597186 -1.831468 2.599414 -0.835913 2.400840 1.644838 1.783701 1.983429 1.985008 -0.202787 -0.708741 -1.123648 -0.451944 -1.797959 -1.042331 -0.516172 1.706456 -1.330383 2.030457 1.444460 -0.204508 0.984551 0.131883 0.642046 -1.956640 3.468964 2.116024 -1.116894 0.902719 1.026921 3.602255 -1.947186 -1.663723 -PE-benchmarks/topological-sorting.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.340255 -0.382649 0.604634 0.544547 0.183334 0.236679 0.296519 -0.364610 0.683350 0.509635 0.056782 0.020530 -0.522626 0.158155 0.072919 0.426760 -0.278970 -0.479441 -0.050081 -0.380909 -0.267505 -0.471550 0.193627 -0.113831 0.194867 -0.268710 -0.301676 -0.188569 -0.557367 -0.372756 0.402672 -0.219470 0.315120 -0.137270 -0.066269 -1.254217 0.453251 0.285612 -0.217806 -0.486426 0.096133 -0.365485 0.258373 -0.041080 0.100314 0.112877 0.068097 -0.015631 0.431051 0.166382 0.471358 0.009723 -0.049656 1.023234 -0.575972 0.382793 0.085176 -0.053051 -0.211805 0.245416 0.117068 0.068975 0.431050 0.400009 -0.235788 -0.312479 -0.052295 -0.227971 -0.693098 0.402077 -0.025090 -0.099500 -0.397362 -0.089969 -0.180453 -0.310758 -0.635170 0.256647 0.791343 -0.405012 0.531029 0.173461 0.353155 0.055108 0.352551 0.003844 0.562426 0.054474 -0.401403 -0.028889 -0.254238 -0.024938 -0.020728 0.238561 -0.051982 -0.289366 0.203531 0.096961 -0.556464 0.296395 0.078792 0.200798 -0.793983 -0.058538 0.312019 0.282576 -0.374943 -0.695623 -0.450012 0.154786 -0.035827 -0.187219 0.059578 -0.513654 -0.249921 -0.390890 -0.512688 -0.251143 0.033461 -0.415466 -0.536697 0.531272 -0.432402 0.060374 0.035358 0.182432 -0.209024 0.454388 -0.005632 0.401000 0.188155 -0.163670 -1.166914 -0.119471 0.215683 0.639846 0.062993 0.073775 -0.290614 0.042818 -0.404953 0.145592 0.112344 0.349773 0.674349 -0.187702 -0.304563 -0.123347 0.322151 -0.622031 0.274951 -0.440320 0.184271 -0.013400 0.442335 0.354647 0.376318 0.794309 -0.488294 0.475365 -0.224507 -0.077311 0.424808 0.128502 0.361972 -0.254280 -0.369988 0.067681 0.384793 0.005128 0.177176 -0.250614 -0.024243 -0.439870 -0.207137 -0.001388 0.138030 -0.171026 0.325690 0.208060 0.913616 -0.832615 0.258876 0.305855 0.016902 0.147802 -0.083378 -0.570798 0.251226 0.139024 -0.234100 0.302668 -0.076387 -0.464610 0.070312 -0.172776 0.224910 -0.326693 0.092331 -0.352961 -0.138562 -0.357501 -0.012488 -0.300999 -0.291140 -0.047272 0.100874 0.556584 -0.008744 -0.436360 0.523408 -0.184858 0.098791 -0.735891 0.877385 -0.327805 0.191825 -0.557119 -0.064676 -0.205600 0.647839 -0.085273 0.124445 0.260489 -0.240278 0.291899 0.837639 0.206015 0.227334 0.077740 0.488944 0.092808 0.074241 -0.148882 0.599879 -0.104865 -0.079458 0.083017 -0.274983 0.281976 -0.040020 0.019049 0.409942 0.578884 -0.144789 0.253982 0.395200 0.298714 -0.235927 0.339178 0.027718 0.431813 -0.173087 0.068349 0.000529 0.065711 -0.229948 0.219791 -0.526710 -0.505961 0.023059 -0.437420 -0.031503 0.375389 -0.047989 0.029217 0.114590 -0.618627 -0.183098 0.168627 -0.283437 0.342963 0.081672 0.238788 0.386249 0.617825 -0.272710 -0.252675 -0.076537 -0.186529 -0.197533 -0.200425 -0.207666 0.382776 -0.459919 0.260647 0.239912 -0.084395 -0.006389 0.125511 0.448602 -0.292170 0.728363 0.290638 0.059894 0.556276 0.420719 0.988053 -0.042616 -0.249778 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.597181 -1.146650 1.746159 1.506355 0.241895 0.893340 0.375586 -1.019144 1.274986 0.909717 -0.088491 0.516690 -1.098944 0.179460 -0.144874 0.692699 -0.839574 -1.078277 -0.248059 -0.852658 -0.425327 -0.997377 -0.002008 0.509052 0.473445 -0.207935 -0.792869 -0.059672 -1.654869 -1.294377 0.631837 -0.303629 0.809109 -0.412161 0.220568 -2.734624 1.305478 1.289456 -0.352821 -1.532089 0.256723 -0.765818 0.111765 -0.016040 -0.196362 0.442643 0.120080 -0.044211 0.666565 0.365272 0.543403 0.283064 0.222985 2.137264 -0.748309 1.199830 0.673460 -0.076860 -0.156784 0.400609 0.245697 0.195113 0.906930 0.688980 -0.477859 -0.805047 -0.056766 -0.165983 -1.384603 0.840180 0.016760 -0.589487 -0.745759 -0.339900 -1.102240 -0.519679 -0.339347 0.660534 1.874045 -0.825361 1.404468 0.392689 0.745113 0.159297 1.087188 -0.044429 1.368428 0.381031 -0.816821 0.036567 -0.912139 -0.223825 0.056001 0.494362 -0.692829 -0.936787 0.625841 -1.035509 -1.474868 0.818252 0.186636 -0.087598 -1.560195 -0.427767 0.773982 0.617042 -0.787555 -1.497488 -0.804339 0.807600 -0.180784 -0.640879 0.139057 -0.720349 -0.266620 -0.543218 -1.229742 -0.215275 0.562059 -0.767361 -0.916559 1.383862 -0.690643 0.315482 -0.129116 0.424818 -0.494414 0.853200 -0.025048 0.825196 0.099360 -0.280487 -1.794683 -0.227547 0.268023 0.789457 -0.258368 -0.112282 -0.335102 0.401965 -0.479598 0.634182 -0.252220 0.766730 1.240116 -0.214142 -0.645450 -0.651483 0.136302 -1.460521 0.322553 -0.840018 -0.417429 0.255251 1.117251 0.587891 0.676226 1.459325 -0.887996 0.778765 -0.305281 -0.098791 0.834741 -0.201223 0.653233 -0.660592 -1.094198 0.566565 0.765262 0.379454 0.382842 -0.430321 -0.019669 -0.746297 -0.641315 0.263718 0.398113 -0.071312 1.170669 0.804267 1.847601 -1.481135 0.368132 0.402560 -0.353592 0.407511 -0.336048 -1.413444 0.378531 0.474537 -0.120464 1.428476 -0.252044 -0.893748 0.413965 -0.135724 0.473505 -0.956016 0.591094 -1.049794 -0.152004 -0.795732 -0.282700 -0.715257 -0.625955 -0.758831 -0.333885 1.546626 -0.697973 -1.362920 1.319039 -0.292276 0.497158 -1.948506 1.210057 -0.769411 0.936682 -0.608868 -0.063707 -0.223166 0.794213 -0.518529 0.292536 0.707526 -0.885414 0.809526 1.599383 0.388734 0.300381 0.131586 0.953354 -0.141695 0.199208 -0.831106 1.317188 -0.262255 -0.307900 -0.005557 -0.634697 0.542308 -0.246005 0.084219 0.430468 1.049600 -0.075422 0.284608 1.134249 0.500340 -0.588890 0.784755 -0.045973 0.690550 -0.549938 -0.062086 -0.142568 0.379010 -0.110961 0.605634 -1.562203 -1.252972 -0.919120 -1.400158 -0.052440 0.472220 0.105754 0.181509 0.052027 -1.604886 -0.847417 0.928591 -0.550225 1.096237 0.655360 0.757282 1.024907 1.292357 -0.464435 -0.320344 -0.190875 -0.181523 -0.519860 -0.490428 -0.603661 1.024496 -0.815224 0.766165 0.943968 -0.207521 0.442905 0.062699 0.748852 -0.887941 1.782925 0.783305 -0.442272 0.874354 0.861628 1.852602 -0.365518 -0.768963 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.370988 -3.354369 4.071611 3.630417 0.901489 2.848493 0.563831 -1.985445 2.182748 2.985290 -0.734166 2.094295 -2.224268 -0.288795 -0.099608 1.176416 -1.369444 -2.288519 -0.146828 -1.208970 -0.227438 -2.259622 -1.297803 2.431941 0.758070 -0.249128 -1.555723 0.559531 -4.282496 -4.635593 0.095007 -0.399995 1.816769 -1.391828 1.259674 -4.759138 3.232078 4.019589 -0.320752 -4.406487 0.275985 -1.159572 -0.433492 0.981306 -0.473135 1.880528 0.852816 -0.260968 0.458385 1.244210 0.640473 0.354138 1.737565 3.640960 -0.127298 3.398850 2.626590 -0.097355 0.732227 0.676821 0.517880 0.026317 1.890437 1.358651 -0.920446 -1.249550 -0.079311 0.863841 -2.679848 1.297442 0.103014 -1.956943 -1.376252 -0.955309 -3.035469 -0.719971 0.147442 0.996234 4.416215 -1.133486 3.948062 1.504565 2.081067 0.474843 3.118212 -0.218422 2.919029 1.327307 -2.240212 0.581343 -2.215858 -1.299192 0.159098 1.353114 -2.378422 -1.665243 1.331885 -3.606976 -3.432519 2.566208 -0.229918 -0.777942 -3.012052 -1.368219 2.005918 1.526050 -1.605086 -3.314572 -1.691714 2.479442 -1.034050 -1.877810 0.419523 -1.029299 -0.178103 0.053621 -2.358817 -0.325434 2.507661 -1.833842 -1.677280 3.288871 -0.647925 1.690441 -0.673579 0.642475 -0.740998 1.069458 0.672392 1.862280 -0.172517 -0.937557 -3.554542 -0.004503 0.129491 -0.394645 -0.945943 -0.392539 0.325888 1.456120 0.379191 2.642686 -1.408417 1.873787 2.683535 0.241414 -1.082370 -2.470292 -0.423721 -2.538261 0.625814 -1.383685 -1.993241 0.387916 2.644460 0.036966 0.864186 2.201590 -1.777513 1.039383 -0.674597 0.317991 0.987649 -1.291185 0.924814 -1.438198 -2.691254 1.849731 2.639245 1.059560 1.116875 -1.227920 0.164919 -0.650824 -1.468260 1.115235 0.678184 0.116334 3.390857 1.993987 4.509059 -1.874353 0.060004 -0.026661 -1.078985 1.030123 -1.227721 -3.368820 0.702216 1.182228 0.774652 4.198095 -0.677967 -1.652443 1.533462 0.080743 0.688439 -2.303155 2.389981 -2.839657 -0.050581 -1.236319 -0.951235 -1.763947 -1.484520 -2.536011 -0.715609 3.720980 -1.599828 -3.293911 2.335234 -0.823776 0.839995 -4.358618 1.787094 -1.655456 2.276898 -0.298159 -0.180112 -0.214143 1.228319 -0.874346 0.143594 1.839818 -2.527613 2.372420 2.520010 0.542252 0.094931 0.685689 1.396671 -0.754179 -0.570852 -2.563929 2.320104 -0.676983 -0.132386 -0.589828 -1.447373 1.848084 -0.315722 -0.421301 -0.762855 1.734658 -0.945599 -0.367667 2.759026 -0.001810 -1.270301 1.679601 -0.075689 1.574552 -1.614885 -0.309988 -1.377783 0.705228 0.648631 1.587490 -3.910618 -1.695419 -2.807928 -3.216687 -0.815709 1.401412 0.679793 1.077099 0.160156 -3.870000 -2.415642 3.427275 -0.932869 1.712406 2.056329 2.057128 2.523494 2.216774 0.139521 -0.725317 -1.218721 -0.634774 -1.866515 -1.216690 -0.494813 1.963979 -1.496217 2.275844 1.765914 -0.232414 1.368525 -0.253918 0.883881 -2.313915 3.922453 2.292527 -1.524317 0.768382 1.742363 3.934945 -2.624112 -1.958646 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/topological-sorting.cpp__std::deque >::deque() = -0.266089 -0.409759 0.768164 0.503588 -0.039957 0.269698 0.211296 -0.591278 0.818416 0.152198 -0.085703 -0.070981 -0.634515 0.170870 -0.340911 0.326032 -0.471961 -0.558811 -0.142840 -0.509122 -0.334610 -0.596477 0.300633 0.020851 0.192451 0.060396 -0.241864 0.023315 -0.541642 -0.508647 0.556962 -0.210871 0.239850 0.017991 0.041207 -1.078586 0.569514 0.314778 -0.263865 -0.547624 0.111532 -0.288301 0.048236 -0.044043 0.015272 0.129067 0.029632 0.343524 0.433597 0.200417 0.414571 -0.038359 -0.090877 1.008798 -0.557530 0.481867 0.219211 0.123182 -0.132111 0.327650 0.072480 0.130529 0.275537 0.529400 -0.244672 -0.254489 0.034662 -0.295614 -0.716893 0.588059 -0.177524 -0.185922 -0.447337 -0.249364 -0.387211 -0.212583 -0.771490 0.350249 1.011031 -0.553163 0.535293 0.210558 0.401805 -0.066857 0.277514 -0.092136 0.632232 0.130452 -0.453697 -0.021138 -0.333185 0.003461 -0.072809 -0.018915 -0.158742 -0.584717 0.384809 -0.591127 -0.692575 0.271293 0.120174 0.102726 -0.531986 0.061425 0.360127 0.144290 -0.469718 -0.769312 -0.284456 0.238921 0.013916 -0.048105 0.146588 -0.179673 -0.149040 -0.284152 -0.698627 -0.269005 0.051330 -0.531948 -0.294551 0.568178 -0.315993 0.167928 0.133775 0.210596 -0.165051 0.648238 0.086449 0.343725 0.018644 0.070891 -0.769274 0.125793 0.193969 0.429521 -0.033694 0.155954 -0.114238 0.065861 -0.464042 0.011815 -0.283518 0.064849 0.496818 -0.268651 -0.452565 -0.074160 -0.003833 -0.903583 0.270190 -0.603860 -0.203596 0.033922 0.421008 0.592912 0.358957 0.897046 -0.562439 0.340338 -0.188222 -0.053640 0.282943 0.077585 0.444770 -0.277779 -0.541356 0.156715 0.211280 -0.008612 0.240078 -0.421725 -0.092467 -0.653627 -0.223421 0.188836 0.253637 -0.167911 0.374258 0.294057 0.450016 -0.737368 0.242062 0.352961 -0.027822 0.146827 -0.042915 -0.750455 0.342526 0.119666 0.107148 0.343557 -0.054928 -0.228028 0.195541 -0.218719 0.311704 -0.466996 -0.006496 -0.474395 -0.190075 -0.536893 0.269648 -0.261350 -0.230781 -0.031491 -0.102272 0.590902 -0.357865 -0.405980 0.783481 -0.022326 0.410496 -0.657564 0.515809 -0.301076 0.570390 -0.253313 0.096394 -0.165408 0.211341 0.025136 0.033132 0.198428 -0.119461 0.345313 0.800599 0.141968 0.234141 0.252366 0.643588 -0.141914 0.128442 -0.249838 0.587085 -0.088395 -0.373318 0.222179 -0.293305 0.118213 -0.242036 0.152529 0.622567 0.637294 -0.042834 0.448032 0.328850 0.338557 -0.264432 0.348402 0.027020 0.335200 -0.336056 0.016440 0.076461 0.146206 -0.362156 0.221447 -0.645590 -0.893140 -0.540197 -0.644818 -0.134913 -0.185338 0.088456 -0.073731 0.070651 -0.494463 -0.315599 0.477357 -0.315458 0.506730 0.242225 0.395221 0.507107 0.893809 -0.375717 -0.135971 0.103278 0.030169 -0.291258 -0.116449 -0.375146 0.369903 -0.381224 0.217869 0.455864 -0.078081 0.060943 0.017567 0.436794 -0.417703 0.755497 0.376655 -0.055046 0.668508 0.377183 0.906188 0.359238 -0.289770 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_base() = -0.480470 -2.023707 4.696366 3.124186 -1.159909 1.394607 0.779359 -3.489920 3.172122 1.119198 -0.422268 0.170847 -2.411237 0.666799 -0.745624 1.983898 -2.998952 -1.850028 -1.081341 -2.891208 -1.729630 -2.288966 1.196245 0.638862 1.219071 1.056989 -1.185983 -0.031029 -0.984309 -3.949466 2.425364 -0.471359 1.513478 0.247666 0.787546 -7.082717 3.285020 1.876049 -1.322914 -3.071704 0.729005 0.041194 -0.913278 0.689554 -1.148912 0.784463 -0.285571 2.260808 1.323936 1.640198 1.401199 0.401292 1.233228 5.678747 -1.286287 2.532965 1.908359 0.365120 -0.414516 1.518787 0.601373 0.883774 1.026884 2.028535 0.237081 -1.606105 0.318188 -1.066702 -3.386459 2.768682 -0.211003 -2.273600 -1.749149 -2.005180 -1.439477 -0.662484 -3.480294 2.354230 4.702170 -2.838102 2.418369 1.090848 1.015961 -0.442131 1.028868 -0.681937 2.972010 1.093901 -1.328440 0.153829 -0.727418 -1.551791 0.572754 -0.719009 -1.764048 -4.578578 2.284884 -2.921792 -3.246569 1.999203 1.385696 -0.580502 -2.501503 -1.222228 1.701803 0.567253 -2.143225 -3.124606 -1.881324 1.673632 -0.186989 -0.452803 -0.108156 0.462634 -0.404258 0.049564 -3.560082 -0.275174 0.886734 -1.808959 -0.986519 2.373289 -0.497894 0.805645 0.365276 1.217080 -1.029932 2.839836 0.568066 2.020871 0.344938 1.318212 -1.506227 1.246048 1.088262 0.527442 0.363007 -0.474578 -0.413857 1.061731 -1.605754 1.581759 -1.423657 0.736569 3.085853 -0.182130 -2.487764 -0.883143 -0.790438 -4.490108 1.252936 -2.986248 -1.666998 1.246415 1.830993 2.098545 1.217496 2.466878 -3.099273 1.660858 -1.000419 0.261281 0.611607 0.240031 1.669160 -1.296945 -2.778020 0.707156 1.092513 0.674021 0.972283 -1.958418 -0.245239 -2.392770 -1.773573 1.187412 1.336298 -0.972450 1.373128 2.159120 4.863818 -2.263003 0.296982 1.349833 -1.041066 0.394926 -0.167119 -3.820516 0.827042 0.596842 1.059845 3.130829 -0.422696 -0.590982 1.351304 -0.969490 0.643135 -1.737645 0.715510 -2.467038 -0.641926 -2.186968 0.817359 -1.575740 -0.606734 -0.819661 -0.749210 3.332001 -3.284833 -2.274926 4.478819 -1.221119 1.465711 -3.430256 3.645475 -0.919143 2.039964 -1.074271 -0.295700 -0.820706 -0.226081 -0.698818 0.508506 0.700195 -0.471513 1.029392 4.534508 0.320459 0.442827 0.714778 2.945477 -1.423989 1.058025 -2.094753 3.532556 -0.882813 -1.395655 -0.103244 -1.022238 0.179647 -2.046361 0.752429 2.054074 1.779389 -0.127683 1.208800 1.506485 1.480274 -1.443002 2.726532 0.434804 1.071096 -1.776061 -0.058623 0.712136 1.094308 -1.688428 1.519237 -3.385320 -3.395533 -4.360353 -2.944410 -1.495478 -0.288678 1.477508 -0.872438 -0.527768 -2.087828 -2.267038 3.556524 -1.282418 0.927798 2.281272 2.189564 2.839912 4.385026 -0.927056 0.197943 -0.253064 0.029454 -1.197651 -1.054035 -1.386303 1.959401 -1.022005 0.975765 2.666571 0.307054 1.294560 -0.843977 2.228464 -2.262266 3.472469 1.606169 -0.580300 2.272562 2.210536 3.241446 0.740545 -1.482582 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.078883 -0.690940 1.384196 1.155033 0.164837 0.582740 0.247283 -1.148698 1.438094 0.709342 -0.085908 0.159324 -0.866326 0.463878 -0.762234 0.845856 -0.795896 -0.896068 -0.363101 -0.926103 -0.698844 -0.923485 0.289364 -0.071102 0.449946 -0.272257 -0.693969 0.031137 -1.154038 -0.969437 0.669652 -0.297340 0.296169 -0.697769 0.100702 -1.804595 1.138277 0.804098 -0.425315 -1.030264 0.133714 -0.750514 0.050550 -0.147112 0.184219 0.109515 -0.159708 0.495415 0.825240 0.297085 0.784491 0.458047 -0.027283 2.252951 -1.034899 0.969975 0.311513 0.263579 -0.201114 0.704028 0.267989 0.415822 0.530171 0.718021 -0.208029 -0.703609 -0.147466 -0.234174 -0.854043 1.035861 -0.185663 -0.499547 -0.857488 -0.286429 -0.852952 -0.382285 -1.817978 0.702601 1.581285 -0.984062 0.794291 0.329787 0.686583 0.132020 0.765048 -0.198450 1.419421 0.277117 -0.673575 -0.125642 -0.554722 0.133581 0.106075 -0.203314 -0.530078 -1.427157 0.584849 -1.086397 -1.306163 0.529084 0.342101 0.055921 -0.791332 -0.085858 0.668192 0.146959 -0.709967 -1.276646 -0.472112 0.537131 0.074825 -0.414654 0.393723 -0.844851 -0.013737 -0.326171 -1.179538 -0.318364 0.177761 -0.621192 -0.776331 1.116244 -0.348568 -0.031324 -0.049153 0.266280 -0.271423 0.826657 -0.228381 0.900805 -0.174230 0.419092 -1.754351 0.515480 0.440064 0.228549 -0.089757 0.592131 -0.353161 0.297479 -0.848019 0.399909 -0.620845 0.444007 0.633240 -0.408239 -0.744608 -0.298937 0.202248 -1.119058 0.406599 -0.782272 -0.701156 -0.350738 0.940982 1.088685 0.723350 1.041991 -0.881542 0.521804 -0.207591 0.150373 0.831279 -0.266805 0.622504 -0.538269 -0.951575 0.383245 0.549626 0.016452 0.251621 -0.393394 -0.082704 -0.869485 -0.122064 0.179090 0.450473 -0.310170 0.978552 0.586888 1.053703 -1.589422 0.594354 0.606390 -0.218987 0.367654 -0.318369 -1.258799 0.500969 0.360370 0.339602 0.844140 -0.160615 -0.464825 0.204310 -0.263852 0.593183 -0.713829 -0.020132 -0.787273 -0.594708 -0.691360 0.476057 -0.411868 -0.314839 -0.257660 -0.376222 1.113082 -0.908270 -0.713004 1.518656 -0.320637 0.324235 -1.105034 1.109282 -0.602907 0.594524 -0.392648 0.172523 -0.227483 0.833260 -0.511065 0.351577 0.586309 -0.585436 0.636824 1.411603 0.299326 0.523051 0.139714 0.982080 -0.337714 0.265538 -0.572930 1.265945 -0.120861 -0.557448 0.057352 -0.589187 0.236325 -0.410783 0.339988 0.910920 0.870454 0.086302 0.444829 0.727273 0.706129 -0.561004 0.834049 -0.143803 0.203296 -0.590572 0.018394 0.182390 -0.121205 -0.493067 0.421275 -1.205478 -1.098778 -1.065011 -0.731765 0.162116 -0.232354 0.000590 -0.189355 -0.060551 -1.133135 -0.785729 0.889054 -0.578949 0.161828 0.492395 0.588489 0.714904 1.332008 -0.501335 0.077854 -0.212185 -0.244156 -0.272925 -0.539012 -0.498429 0.970216 -0.679718 0.485343 0.824501 -0.186300 0.302484 0.360606 0.419452 -0.594655 1.225808 0.592736 -0.079818 0.810657 1.030696 1.807134 0.188105 -0.652693 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.036435 -8.253968 17.727777 13.486268 -4.023140 6.051152 1.181458 -11.844130 10.188145 6.416142 -2.689727 3.159235 -7.126652 2.189367 -0.940030 8.089111 -11.783489 -5.767156 -3.374261 -8.936940 -5.604130 -7.524342 1.547681 3.597161 4.975833 4.714050 -5.515754 0.678888 -3.731741 -14.831554 6.197134 -1.461095 5.832112 0.223631 4.243780 -25.880562 12.379642 9.033180 -3.723118 -12.817715 1.861832 -0.737963 -3.251409 1.645462 -4.656396 3.423152 -1.282056 7.221374 3.774679 5.104237 2.892721 2.533773 6.466071 20.912212 -2.332295 9.625463 7.300736 0.163973 -0.874318 4.008958 3.814516 3.254285 4.731425 6.152805 1.761834 -7.294521 -0.152110 -2.262228 -10.204524 9.090407 0.436849 -8.624964 -6.593811 -7.155393 -5.731930 -2.079670 -12.695541 9.794956 15.835365 -9.341336 9.197981 4.181004 3.726606 -0.359798 5.453385 -2.285626 12.121499 4.710365 -4.139687 1.114164 -1.791720 -7.359746 4.262587 -2.790845 -8.160203 -16.424617 7.140915 -11.146811 -11.774398 7.755059 5.598869 -3.414165 -8.012807 -5.638942 6.404221 2.690222 -6.256322 -10.063166 -6.082307 6.394526 -1.365868 -3.986661 -1.226804 1.288558 -0.849558 1.666068 -12.106450 0.216485 4.632731 -4.665613 -2.626157 8.976676 -0.335898 1.790511 -0.987781 2.958808 -3.205525 9.012325 0.949187 8.352998 0.136140 5.318011 -4.712443 5.477912 4.159078 -0.994031 0.649740 -2.459609 -0.994508 5.120580 -4.371834 7.336194 -5.314280 5.137053 10.997316 0.469499 -8.247830 -5.814534 -3.995746 -14.039587 3.513691 -8.785106 -6.577233 5.065909 8.034785 6.472993 4.301082 5.836465 -11.429556 5.228476 -3.202538 2.226263 3.379267 0.428864 4.467348 -5.115278 -9.086970 4.006790 5.161094 3.827031 2.898954 -5.303874 -0.002960 -5.718819 -5.494136 5.764274 5.144315 -1.915475 6.897593 8.308694 19.777001 -7.426803 0.951328 3.971472 -4.165400 1.216409 -1.155570 -13.363100 2.798586 2.500917 4.786566 12.955320 -2.170149 -2.042316 3.913195 -2.635964 1.532102 -6.215728 4.067083 -8.681828 -1.569484 -6.274529 2.140351 -6.085791 -2.228590 -5.246729 -3.111059 13.146465 -13.275496 -8.716679 15.655423 -5.936605 4.321963 -12.162445 12.918116 -3.959185 6.553961 -3.543404 -2.430635 -1.934817 -1.326984 -5.146293 2.417848 4.141793 -2.937022 2.468670 14.671460 1.768499 0.359827 1.010528 8.797463 -4.932173 4.191041 -8.178420 12.704858 -2.532843 -2.213606 -2.650538 -3.974878 1.116183 -6.155923 1.916235 5.753047 4.861478 1.109678 2.500089 5.673610 4.677021 -5.989766 10.160577 0.715199 2.882874 -6.028525 -1.034483 1.633960 4.064655 -4.517563 5.358893 -12.992466 -9.856673 -16.748173 -8.346280 -5.377193 0.518485 5.438369 -2.441335 -2.626467 -8.294748 -9.417061 14.063152 -4.240440 1.828371 7.835127 6.718453 9.619301 12.929197 -1.952822 1.134553 -2.840665 -1.097231 -3.154093 -4.154326 -4.817681 8.880298 -4.078443 4.373482 10.624138 -0.234524 5.649465 -2.091868 7.349264 -7.933627 12.291655 5.837525 -4.069300 4.842046 9.066096 10.973807 -1.047299 -6.860931 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.148457 -0.682900 1.158859 1.094313 -0.341208 0.267154 0.310256 -0.461369 1.085951 0.294865 -0.235782 -0.000858 -0.795275 0.312800 0.640233 0.784442 -1.234720 -0.600687 0.184269 -0.324120 -0.401565 -0.763743 0.302773 0.014092 0.382574 0.743875 -0.227904 -0.264115 -0.056585 -0.045031 0.981339 -0.552375 0.592948 1.300030 0.329893 -2.279881 0.729767 -0.002763 -0.271962 -0.955598 -0.071243 -0.485010 0.506780 -0.680838 0.093446 0.356691 0.392935 1.194203 0.673804 0.320316 -0.182077 -0.496924 0.216146 1.398699 -0.551432 0.410416 0.291552 -0.293855 -0.150683 0.012281 0.362765 -0.064343 0.625813 0.780537 -0.292550 -0.556014 -0.286050 -0.861112 -1.059379 0.716852 0.300977 0.365067 -1.160843 -0.271157 -0.009728 -0.330215 -2.451016 1.217387 1.484523 -1.023589 0.871540 0.466788 0.761900 -0.030229 0.453034 0.106786 0.920533 0.240733 -0.792962 0.314276 -0.666923 -0.989759 0.247912 -0.846813 0.051200 -1.179113 -0.030379 -0.040547 -0.786107 0.528350 0.200786 0.401690 -0.552125 -0.170504 0.739691 0.548284 -0.623988 -0.949249 -0.257271 -0.192137 -0.212380 -0.215185 -0.009510 0.070632 -0.450336 -0.672793 -1.035718 -0.460965 0.105618 -0.700503 0.188875 0.728692 -0.447616 0.183807 -0.035402 -0.087288 -0.182529 1.310110 0.358228 0.444028 0.694224 -0.215502 -0.778833 0.674780 0.527951 1.161464 0.289021 -0.115086 -0.194991 0.251850 -0.663075 -0.199178 0.537050 0.485184 0.830609 -0.281770 -0.757634 -0.439943 0.004475 -1.000483 0.673271 -0.831499 0.586989 0.589180 0.743073 0.692957 0.657967 0.656669 -1.223824 0.616166 -0.641024 0.465163 0.557848 1.306877 0.601422 -0.383453 -0.208551 0.234550 0.385008 -0.013854 0.366915 -0.780297 0.209756 -0.690965 -0.295512 0.372725 0.480527 -0.291622 0.458500 0.201461 0.853197 -0.708725 0.173712 0.550467 0.244511 0.001386 0.271532 -0.949073 0.969786 -0.110059 -0.097883 0.054788 -0.231772 -0.461610 0.130250 -0.185332 0.112569 -0.312454 -0.275065 -0.469560 -0.345509 -0.694374 0.853385 -0.571148 -0.540993 -0.071413 0.459127 0.998426 -0.192955 -0.163635 0.814642 -0.835799 0.627435 -0.686071 1.524102 -0.573448 0.164346 -0.748774 -0.569984 -0.163963 0.028472 -0.025750 -0.190664 0.495470 0.154395 -0.126517 0.890537 0.404130 0.060430 0.492077 0.766199 0.214116 0.261396 0.017029 0.700406 -0.248490 0.452435 0.143432 -0.375263 0.444810 -0.054638 0.023449 1.334429 0.716131 0.336364 0.876970 0.237463 0.253785 -0.562408 0.264356 -0.085395 0.742877 -0.488508 0.072161 -0.117549 0.228123 -0.531500 0.405796 -0.879960 -1.165181 -0.456711 -0.000145 -0.808796 0.371881 0.237602 -0.050893 0.223090 -0.651611 -0.234577 0.071605 -0.426604 -0.204600 0.172625 0.157763 0.763485 0.964315 -0.403947 -0.781911 0.231115 -0.071303 -0.237302 0.275229 -0.835758 0.640604 -0.907266 0.356594 0.901825 -0.354683 -0.254083 -0.386600 1.772770 -0.473332 1.088857 0.529368 -0.419653 0.552155 0.967037 1.010302 0.439314 -0.548199 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator() = -0.082253 -0.375578 0.575701 0.532890 0.048914 0.125429 0.542693 -0.137508 0.793960 0.457756 -0.069702 -0.205388 -0.601233 0.082115 0.586729 0.448957 -0.494317 -0.437815 0.273371 -0.221948 -0.145578 -0.526097 0.212835 -0.246191 0.222719 -0.019724 0.028056 -0.460068 -0.219097 0.222090 0.678092 -0.389219 0.310082 0.671632 0.050776 -1.280927 0.319863 -0.135644 -0.208061 -0.495363 -0.017800 -0.400171 0.518566 -0.269824 0.490463 0.209476 0.378728 0.784098 0.494448 0.225422 0.124128 -0.500429 -0.059890 0.913524 -0.611290 0.203754 0.034455 -0.208689 -0.136516 0.238836 0.131587 -0.188881 0.437763 0.503609 -0.318756 -0.242710 -0.124658 -0.575883 -0.723406 0.338292 0.285155 0.291443 -0.710457 -0.017200 0.219928 -0.316110 -1.983638 0.596124 0.871925 -0.570264 0.652346 0.367262 0.623083 -0.017594 0.291748 0.112537 0.500710 -0.017394 -0.611424 0.079130 -0.732987 -0.537851 0.012235 -0.467932 0.263684 -0.497424 -0.100208 0.634416 -0.452636 0.294072 0.002405 0.397087 -0.479855 0.138893 0.419541 0.396608 -0.414257 -0.700395 -0.347091 -0.160836 -0.313751 -0.043263 0.077153 -0.342398 -0.411934 -0.702354 -0.511718 -0.376278 -0.020131 -0.495055 -0.240653 0.497800 -0.518839 0.139882 0.112485 -0.026328 -0.124160 0.682287 0.288281 0.240042 0.724901 -0.457062 -1.249956 0.374068 0.370846 1.109096 0.366582 0.156111 -0.192613 0.065419 -0.472944 -0.084559 0.592492 0.442894 0.512848 -0.353572 -0.315696 -0.186005 0.476489 -0.355515 0.598058 -0.445258 0.679972 -0.044486 0.433997 0.485678 0.424474 0.526555 -0.792990 0.535105 -0.503376 0.280710 0.336100 0.924805 0.459589 -0.230773 -0.001084 -0.152038 0.431586 -0.188387 0.196078 -0.481460 0.121027 -0.549256 -0.119570 -0.125393 0.145985 -0.372285 0.260031 0.101426 0.617565 -0.780395 0.141985 0.384412 0.212171 -0.017861 0.208971 -0.541892 0.659983 -0.027769 -0.283122 -0.133148 -0.089988 -0.421543 -0.002297 -0.182837 0.044892 -0.100524 -0.277155 -0.262707 -0.424321 -0.326254 0.577897 -0.461591 -0.506861 0.104900 0.529697 0.505260 0.508071 -0.073934 0.300001 -0.639152 0.095545 -0.436940 1.397835 -0.393119 -0.304357 -0.730850 -0.328391 -0.288332 0.666362 0.099617 -0.144158 0.229388 0.026180 0.199716 0.698318 0.310906 0.183045 0.352144 0.520374 0.194587 -0.062623 0.084034 0.385099 -0.243392 0.309430 0.159818 -0.226041 0.490570 0.173444 -0.060202 0.891319 0.569440 -0.057955 0.534507 0.183482 0.104978 -0.243174 0.141385 -0.012485 0.657339 -0.187069 0.118862 -0.130190 -0.157846 -0.319295 0.239941 -0.518514 -0.554816 0.485051 0.044226 -0.345638 0.429261 -0.018090 0.133058 0.327196 -0.666426 0.033858 -0.435139 -0.269345 -0.409493 -0.069558 0.041684 0.419139 0.578494 -0.242853 -0.596792 0.161357 -0.130644 -0.262548 -0.013023 -0.318683 0.320427 -0.726204 0.296058 0.294637 -0.145163 -0.352148 -0.234263 1.190917 -0.308184 0.653617 0.319778 -0.042871 0.424657 0.703699 1.001813 0.122255 -0.225734 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.773770 -2.083121 4.718104 2.621161 0.196897 1.840636 2.257898 -3.775498 5.027498 1.910072 -0.881666 -1.613758 -3.444297 -0.577474 -0.307403 1.070160 -2.526979 -2.841972 -0.467223 -3.131876 -0.727879 -4.082535 1.968679 -0.082442 0.896593 0.276846 -0.576118 -0.030892 -2.221150 -4.431319 4.507449 -0.758017 1.687953 1.112007 -0.167499 -7.756559 4.076684 2.246203 -1.316168 -3.169397 0.488732 -0.036671 -1.420895 1.770494 0.458647 1.336125 0.066220 2.904918 1.590118 1.407277 2.651127 -1.445473 -0.299279 4.918598 -2.597160 2.715937 0.996090 0.126351 -0.356616 3.066182 0.193561 0.838828 1.793793 4.327926 -0.841086 -0.657163 2.207667 -1.234360 -5.750908 3.557155 -0.202650 -2.165909 -1.048108 -1.006516 -0.768263 -0.190784 -1.388646 1.588128 5.820606 -1.248524 4.264606 1.385154 2.203839 -1.843124 0.528141 -1.037458 3.671212 0.650214 -2.557391 -1.444972 -3.655023 -2.034776 -0.163828 0.848303 -0.734295 -1.065534 2.248307 -1.630938 -3.049824 0.968178 0.756722 -0.156745 -4.586654 0.455926 2.425760 0.558017 -1.272026 -4.046599 -3.146807 1.901925 -2.664533 0.162188 -0.445587 0.106623 -1.723221 -0.878955 -2.989451 -1.840258 0.145722 -2.718015 -2.427484 2.485301 -2.730412 0.852753 0.955769 1.517198 -0.699256 1.359713 0.420046 1.742134 3.016099 -0.530778 -3.733766 -0.246412 0.974078 3.593173 1.261360 -0.581229 -0.130669 0.829030 -2.491790 1.132079 -1.627691 0.182783 4.047013 -1.369411 -1.760570 -0.119438 1.165786 -4.958702 1.724670 -3.466411 -0.817754 -0.030242 2.394922 2.320960 1.448820 4.832199 -5.021512 3.188517 -1.367230 -0.060728 -0.021058 0.757048 1.891989 -1.229684 -2.947570 -0.440749 1.488228 0.175740 0.875918 -2.884753 -1.318273 -3.660325 -3.263876 1.091414 0.193175 -0.736824 0.553881 2.145390 5.838726 -5.096416 1.071801 2.236955 -0.096900 0.113290 0.610590 -4.513791 1.489501 0.428276 1.289129 3.288637 -0.134207 -1.379245 0.322254 -1.027477 0.369505 -2.437062 0.732007 -2.864768 -0.249454 -2.329562 0.073631 -2.028605 -1.897198 -0.293936 0.655972 2.847873 0.213130 -4.548448 5.089867 -1.916683 1.334476 -4.928922 3.217025 -1.442435 1.318584 -2.220364 0.335936 -1.780824 0.913595 0.089298 0.219030 0.104869 -0.728920 3.697546 5.969300 0.680298 1.018003 0.845899 3.156001 -1.224337 -0.160253 -2.379678 3.046285 -0.641981 -2.066132 0.019406 -1.666475 1.693484 -1.671334 -0.016168 2.511106 4.339666 -1.498308 2.255542 1.580153 1.167038 -0.949810 2.908249 1.685560 2.004041 -0.745819 0.019034 0.871431 0.242517 -2.401108 2.269376 -3.621805 -4.492542 -1.042817 -5.779660 -1.591790 -0.942812 1.825504 0.303274 1.017325 -3.607089 -1.449543 2.113361 -0.934875 3.584471 1.491439 2.470024 2.183179 4.652805 -1.990199 -0.228851 0.228027 0.672818 -3.020436 -2.340898 -1.151462 2.090865 -1.362105 1.892748 2.061579 0.275140 0.387515 -2.248187 3.024743 -2.982928 4.215932 2.293395 0.292363 2.967982 -0.339600 5.494434 1.414741 -1.289503 -PE-benchmarks/topological-sorting.cpp__std::deque >::empty() const = 0.663470 -0.657884 2.060408 1.774975 -0.503129 0.558211 -0.404430 -1.545010 1.155823 0.600777 -0.334407 0.508296 -0.459472 0.592234 -0.629226 1.271621 -1.477626 -0.450386 -0.723851 -1.146081 -0.887371 -0.506497 0.077723 0.148445 0.719487 0.769763 -0.806207 0.454632 -0.300804 -1.808638 0.237430 -0.102906 0.288631 -0.230270 0.685499 -1.794952 1.584686 1.121011 -0.473378 -1.276422 0.156504 -0.350909 -0.387565 -0.172484 -0.251528 0.403380 -0.376819 0.770557 0.629949 0.652060 0.356507 0.811729 0.928035 2.179937 -0.254742 1.062620 0.763123 0.149001 0.015613 0.441624 0.432382 0.608603 0.171904 0.289625 0.472707 -1.186175 -0.492332 -0.144921 -0.352333 1.093375 -0.267135 -1.143006 -1.030923 -1.001798 -0.933922 -0.188711 -3.076870 1.271950 1.472756 -1.395303 0.446950 0.396509 0.220600 0.249986 0.736411 -0.248024 1.505894 0.638355 -0.164395 0.395014 0.427048 -0.727149 0.786117 -0.899680 -1.231589 -2.344031 0.827936 -2.053247 -1.345410 0.852412 0.877706 -0.458382 -0.164486 -0.634897 0.462407 0.019872 -0.574235 -0.810130 0.082789 0.605596 0.476171 -0.537585 -0.024924 -0.054498 0.292486 0.658118 -1.586707 0.396036 0.403554 -0.094848 -0.039232 1.010757 0.609522 -0.295376 -0.377398 0.200954 -0.355836 1.307336 -0.333837 1.250991 -0.725888 1.388015 -0.581694 1.482533 0.668256 -1.294883 -0.229948 0.413158 -0.213146 0.567686 -0.778828 0.882611 -1.067573 0.576799 0.778904 -0.010683 -1.102069 -0.629551 -1.028627 -1.285436 0.304704 -0.738764 -1.308553 0.242712 0.949587 1.164371 0.703798 0.165242 -1.020782 -0.232098 -0.221082 0.406689 0.777260 -0.178248 0.471022 -0.573350 -0.885955 0.814982 0.388440 0.263867 0.405457 -0.223392 0.192305 -0.592197 0.186994 1.012002 0.671967 -0.284070 1.157909 0.986016 1.349194 -0.395538 0.218820 0.527353 -0.614136 0.205741 -0.230711 -1.242108 0.343046 0.339226 1.089633 1.262702 -0.229455 0.314249 0.297148 -0.277667 0.402682 -0.549539 0.090990 -0.766344 -0.425638 -0.557813 0.795908 -0.427364 0.003448 -0.466463 -0.755973 1.391163 -1.988713 -0.296800 1.905686 -0.697964 0.333407 -0.569693 1.085365 -0.534127 0.777951 0.061686 -0.086989 0.044153 -0.400894 -1.007057 0.385017 0.662046 -0.345178 -0.137524 1.161376 0.255875 -0.012565 -0.080520 0.953460 -0.947271 0.936567 -0.792875 1.526651 -0.210574 -0.122082 -0.335590 -0.407997 -0.400458 -0.921960 0.369415 0.870653 0.034349 0.601954 0.054180 0.401227 0.881540 -0.815764 1.290196 -0.168427 -0.267817 -0.975655 -0.251492 0.521958 0.189607 -0.361682 0.297278 -1.388298 -0.763765 -2.572549 -0.117258 -0.275493 -0.358111 0.444014 -0.566251 -0.645848 -0.496086 -1.440096 2.097400 -0.493942 -0.767897 0.822572 0.556810 0.870918 1.303867 -0.004075 0.465825 -0.664948 -0.259380 0.215070 -0.381746 -0.638535 1.390193 -0.316847 0.057982 1.427412 -0.272702 0.880093 0.372374 0.406854 -0.668085 0.964906 0.359216 -0.465308 0.445371 1.645324 1.043286 -0.031550 -0.851655 -PE-benchmarks/topological-sorting.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/topological-sorting.cpp__std::deque >::back() = 0.111311 -0.882248 1.850200 1.686652 -0.361224 0.560231 0.011072 -1.275656 1.185385 0.193790 -0.183527 0.424406 -1.036559 0.575193 -0.398764 0.977059 -1.444192 -0.864114 -0.568342 -0.874325 -0.635510 -0.833789 0.541731 0.398824 0.730249 0.774764 -0.903671 0.047947 -0.929256 -1.001728 0.869704 -0.279987 0.812323 0.494096 0.236484 -2.514441 1.323906 1.066988 -0.416972 -1.300578 0.363330 -0.683499 -0.071340 -0.605291 -0.522685 0.309532 -0.257638 0.383534 0.834312 0.334883 0.242921 0.481155 0.378606 1.859482 -0.685465 0.957729 0.523429 0.010644 -0.266536 0.062184 0.389272 0.567119 0.696559 0.663274 -0.180722 -1.109071 -0.353650 -0.549340 -1.223369 1.129127 -0.207654 -0.346636 -1.080886 -0.554769 -0.901881 -0.259043 -0.920141 1.212024 1.727173 -1.179387 0.845537 0.145996 0.217819 -0.127887 0.616259 -0.089431 1.188565 0.493681 -0.341293 0.059808 -0.385909 -0.437599 0.370575 -0.169357 -0.810860 -1.458660 0.720442 -1.447040 -1.390313 0.490010 0.617232 -0.265501 -0.897252 -0.339953 0.531538 0.473410 -0.640317 -1.154818 -0.193923 0.478498 0.422070 -0.587614 -0.184013 -0.005717 -0.251623 -0.372548 -1.533088 -0.058750 0.175451 -0.614108 -0.110251 1.019748 -0.339723 -0.040582 -0.203233 0.308755 -0.449823 1.400611 -0.243096 0.881502 0.071744 0.472529 -0.396288 0.263280 0.542831 0.646488 -0.407633 -0.104324 -0.469021 0.340286 -0.787884 0.134228 -0.319131 0.414742 1.066378 -0.301999 -0.994235 -0.407742 -0.540504 -1.822819 0.222267 -1.011418 -0.349811 0.793312 1.019673 0.841726 0.831085 1.424115 -1.058290 0.391554 -0.076217 -0.066215 0.992775 0.306404 0.627048 -0.621442 -1.081385 0.841333 0.154577 0.372003 0.297481 -0.155840 -0.005390 -0.881596 -0.464250 0.765326 0.585807 -0.057382 0.971011 0.727073 1.046908 -0.842053 0.471030 0.669816 -0.314186 0.297260 -0.092871 -1.426935 0.563271 0.192267 0.230204 1.115374 -0.262622 -0.446161 0.407674 -0.256944 0.493116 -0.930722 0.309295 -0.886097 -0.054535 -1.112366 0.161006 -0.259440 -0.415326 -0.455623 -0.383809 1.509577 -1.247867 -0.848010 1.588931 -0.225456 0.799985 -1.436874 0.923128 -0.686285 1.099327 -0.321897 -0.186685 0.081583 -0.312388 -0.744419 0.114856 0.686162 -0.315014 0.095138 1.444708 0.368920 -0.053383 0.042443 1.014030 -0.190309 0.943286 -0.627704 1.423748 -0.051044 -0.304322 0.092069 -0.550200 -0.094664 -0.723878 0.202515 1.282280 0.836581 0.686243 0.682528 0.583591 1.008135 -0.763941 0.915773 -0.086221 0.324391 -0.624225 -0.155703 0.341304 0.659617 -0.451470 0.610196 -1.360200 -1.785295 -1.586882 -1.091769 -0.180791 -0.261467 0.468796 -0.361474 -0.295875 -0.885314 -1.061636 1.001432 -0.591295 1.129168 0.664230 0.582534 0.917484 1.369833 -0.709261 0.025417 -0.006262 0.201083 -0.000698 -0.148929 -0.999934 1.148133 -0.579807 0.271366 1.492352 -0.419487 0.581802 -0.150665 1.070698 -0.729288 1.594455 0.507165 -0.585191 1.069023 0.843687 1.065515 0.497346 -0.825796 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator--() = -0.032090 -1.277857 3.040221 2.918938 -0.521525 1.057183 -0.577086 -2.261984 1.755360 1.431734 -0.177213 0.923561 -0.990149 0.771115 0.510576 2.062726 -2.266353 -0.904636 -0.888323 -1.539557 -1.281627 -1.127724 0.303676 0.504150 0.888437 1.115972 -1.547020 0.673542 -0.365225 -3.387374 0.667625 -0.339268 1.310002 0.352265 0.769101 -4.906866 2.641966 1.709718 -0.647609 -2.174060 0.224433 -0.478150 -0.319909 -0.143666 -1.172573 0.917517 -0.393062 0.014421 1.038951 0.945961 0.717538 0.884554 1.456195 3.090397 -0.383943 1.665718 1.036087 -0.404277 -0.424843 0.224691 0.708651 0.889550 1.233085 1.009665 0.174081 -1.788269 -0.338253 -0.267600 -1.933241 1.753460 -0.207899 -1.586639 -1.374270 -1.351861 -1.021180 -0.518603 -1.423011 1.756258 2.655573 -1.589416 1.273784 0.499384 0.250868 0.164873 1.349151 -0.376466 2.606674 0.951353 -0.664842 0.491366 0.749533 -1.744777 1.078181 0.256596 -1.470750 -1.976083 0.842729 -2.133727 -2.024539 1.431914 1.072739 -0.319169 -2.427487 -1.609148 1.359849 0.565436 -0.733310 -1.688383 -0.743450 0.929240 0.114797 -1.153653 -0.790950 -0.134125 -0.320022 0.774499 -2.404948 0.012130 0.688408 -0.603056 -0.564776 1.582546 0.053616 -0.218996 -0.622532 0.548947 -0.763527 1.876102 -0.551504 1.927798 -0.119967 1.035177 -0.853576 0.686191 0.727614 -0.751940 -0.165801 -0.761887 -0.700598 0.766371 -1.305257 1.401047 -0.782687 1.338813 2.797161 0.532125 -1.684865 -0.912873 -1.087703 -2.884783 0.567351 -1.612213 -0.801295 1.416770 1.667635 0.712624 1.204637 1.090303 -1.871265 0.715438 -0.594328 0.327856 1.457000 0.057594 0.789728 -0.971731 -1.497025 1.402795 0.901093 0.654524 0.739157 -0.699243 0.153007 -0.747338 -1.100516 1.674084 0.781746 0.190282 1.264344 1.170651 4.415199 -0.866240 0.516357 0.856791 -0.502019 0.444737 -0.376463 -2.006804 0.346358 0.414980 0.770010 2.431435 -0.497181 -0.715996 0.224581 -0.078266 0.510562 -1.169514 0.966685 -1.364187 0.484970 -1.042563 -0.395780 -0.848068 -0.414607 -0.840155 -0.391219 2.494352 -2.331068 -1.728264 3.019364 -1.466248 0.972857 -2.391648 1.956923 -1.018017 1.328720 -1.104673 -0.655435 -0.128866 -0.630843 -1.239286 0.835645 1.113929 -0.531464 -0.183622 2.396736 0.460474 0.006291 -0.252022 1.263834 -0.376514 1.315587 -1.113308 2.681527 -0.276879 0.463592 -0.717213 -0.812513 0.025896 -1.152655 0.044303 0.639896 0.871883 0.306610 0.173451 1.107133 1.156195 -1.350835 2.027001 0.101066 0.273188 -1.109489 -0.309256 0.562843 0.971559 -0.568449 0.898916 -2.095343 -1.400622 -3.118190 -1.219067 -1.081012 1.172805 0.987901 -0.493602 -0.589993 -0.992914 -1.617943 3.120963 -0.706920 0.940463 1.105808 1.072061 1.506428 2.108350 -0.184912 -0.179713 -1.227924 -0.753066 -0.210978 -0.461429 -1.121881 2.081330 -0.521801 0.634235 1.832703 -0.371136 1.063698 -0.018089 1.229815 -1.011330 2.105677 0.766634 -0.470693 1.080424 1.481475 1.602627 -0.526482 -1.341168 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator*() const = -0.180866 -0.285402 0.652897 0.593353 -0.028429 0.182790 -0.047684 -0.425778 0.435811 0.361553 0.014434 0.154957 -0.293826 0.201712 0.025709 0.470486 -0.386291 -0.266066 -0.204488 -0.369844 -0.303980 -0.260147 0.134089 -0.013222 0.206987 0.095538 -0.366304 0.072483 -0.218571 -0.696406 0.151578 -0.117801 0.282258 -0.080635 0.068756 -1.038701 0.514610 0.369771 -0.188426 -0.424825 0.101918 -0.156821 0.071414 -0.026110 -0.188699 0.167859 -0.065103 -0.196757 0.298577 0.204575 0.343301 0.177264 0.225554 0.737440 -0.241575 0.330891 0.163384 -0.077523 -0.157785 0.048234 0.140114 0.165020 0.267372 0.213671 -0.008598 -0.400474 -0.116177 -0.103836 -0.461399 0.361954 -0.151245 -0.279984 -0.300069 -0.288580 -0.225952 -0.199148 -0.407801 0.265497 0.595722 -0.360306 0.286120 0.094231 0.071241 0.091587 0.259297 -0.017465 0.469242 0.158405 -0.147584 0.127792 0.295825 -0.133389 0.162958 0.257453 -0.255214 -0.337505 0.268678 -0.287594 -0.439834 0.313882 0.221206 0.023153 -0.595181 -0.263382 0.179236 0.184538 -0.251194 -0.424132 -0.208768 0.155706 0.171179 -0.200809 -0.101849 -0.206411 -0.123819 0.037175 -0.517090 -0.019575 0.056553 -0.198221 -0.249925 0.373659 -0.068717 -0.046552 -0.075136 0.186430 -0.218205 0.486344 -0.093868 0.457356 -0.158548 0.193551 -0.511718 -0.035792 0.194008 0.019427 -0.065580 -0.101082 -0.248664 0.063768 -0.315510 0.228470 -0.110400 0.265612 0.713743 0.015540 -0.348165 -0.142103 -0.163379 -0.691570 0.108767 -0.365846 -0.060501 0.243899 0.349077 0.216172 0.311509 0.520295 -0.363052 0.166700 -0.142570 -0.119223 0.370870 -0.004285 0.234111 -0.206087 -0.338557 0.247700 0.229373 0.129405 0.206085 -0.139868 0.023845 -0.243172 -0.106329 0.323456 0.178181 -0.044745 0.264024 0.247972 0.911681 -0.277796 0.135122 0.233408 -0.075758 0.104023 -0.082667 -0.433068 0.073868 0.117597 -0.020019 0.396975 -0.077748 -0.191946 0.088736 -0.141961 0.180626 -0.292314 0.201450 -0.271453 0.101057 -0.286838 -0.097151 -0.199203 -0.090414 -0.095427 -0.081026 0.520178 -0.418331 -0.307250 0.558523 -0.102566 0.151234 -0.502706 0.514793 -0.232982 0.393646 -0.319710 -0.077728 -0.052644 0.094493 -0.195683 0.156033 0.232545 -0.119250 -0.023860 0.598365 0.143289 0.019909 -0.063968 0.373858 -0.043904 0.307424 -0.169953 0.578076 -0.051634 0.016054 -0.028127 -0.178693 -0.022015 -0.213304 0.023364 0.190575 0.268307 0.001842 0.077247 0.241778 0.343222 -0.258051 0.405548 0.038316 0.201878 -0.228229 -0.032212 0.127459 0.287746 -0.155920 0.129652 -0.435287 -0.337790 -0.490481 -0.296342 -0.142709 0.329431 0.080163 -0.103369 -0.093647 -0.219241 -0.321709 0.669092 -0.201213 0.350595 0.142455 0.202637 0.335526 0.493523 -0.113613 -0.094771 -0.234634 -0.171779 0.005179 -0.072164 -0.225039 0.425726 -0.216887 0.051241 0.334151 -0.127910 0.185073 0.187039 0.215986 -0.235568 0.538457 0.160003 -0.010554 0.429484 0.364522 0.544982 -0.079014 -0.249021 -PE-benchmarks/topological-sorting.cpp__std::deque >::pop_back() = 2.384445 -2.519814 8.273977 7.182090 -1.349488 2.266722 -0.718874 -6.683756 4.948144 3.202254 -1.027248 1.506786 -2.501730 2.379813 -2.502092 5.337296 -5.744583 -2.141235 -3.077862 -4.684972 -3.087303 -2.691552 1.848787 0.208730 3.185326 2.430684 -3.450842 1.110050 -1.424085 -8.240318 2.021951 -0.446870 1.875877 -0.970678 1.430538 -8.187854 6.882982 4.748436 -2.049782 -4.944420 1.206542 -0.911365 -2.407235 -0.038230 -1.338883 1.590901 -1.964653 2.906876 2.840648 2.816977 2.362163 3.217734 3.780416 8.626472 -1.872706 4.340943 2.337586 0.668616 -0.241134 2.198751 1.602472 3.147082 1.273506 2.231502 2.071266 -4.691035 -1.123093 -0.428614 -3.111092 5.077015 -1.208211 -4.248670 -3.740165 -2.975061 -3.001433 -0.085175 -8.331778 4.697806 6.351347 -4.415864 2.181534 1.214551 0.054522 -0.247447 1.869951 -1.234658 5.582360 2.471705 -0.456032 -0.035547 0.938344 -2.819549 2.872822 -2.235493 -4.604879 -8.436017 3.516119 -6.919661 -5.238124 2.612924 3.601756 -2.231675 -1.964963 -2.399028 2.124255 0.195468 -1.798441 -3.640293 -0.543603 2.516674 1.268211 -2.258859 -0.649492 -0.403888 0.388755 2.620717 -6.106974 0.754098 0.772458 -0.964243 -0.997143 3.504169 1.652995 -1.256103 -1.185562 1.524247 -1.465210 3.969936 -1.694335 5.475037 -0.948290 5.331896 -1.556369 4.370657 2.935251 -3.832342 -0.473840 0.930275 -1.690569 2.269494 -3.499360 3.615825 -3.907417 1.910803 4.186696 -0.326199 -4.199890 -1.669799 -2.713129 -5.764480 1.237105 -3.528257 -4.657921 0.838879 3.984748 3.335826 3.154487 1.923823 -4.894456 0.233350 -0.552368 1.289726 3.087296 -1.046534 1.758693 -2.124293 -4.252441 2.874633 1.716626 1.133567 0.893035 -0.665277 0.123565 -2.747033 -0.527143 3.576418 1.948556 -1.301756 3.660786 3.721929 7.018921 -2.307228 1.474190 2.932305 -2.292125 0.903764 -0.718801 -5.766390 1.254699 1.141172 4.138968 5.683222 -0.811772 0.165998 1.353325 -1.208386 1.275081 -2.650181 1.064047 -3.410081 -1.074890 -2.666567 1.770618 -1.188146 -0.433538 -1.484120 -1.961067 5.484085 -6.861585 -2.577923 8.149579 -3.048874 0.730013 -3.849393 4.809365 -2.155540 2.108788 -0.276687 -0.324387 -0.055503 -1.183927 -4.317775 1.304478 2.331526 -1.398094 0.879846 6.037747 1.050740 -0.163043 -0.775443 3.903332 -3.170191 3.774499 -3.577971 6.440646 -0.612941 -1.179174 -1.730595 -1.864095 -1.317472 -4.347931 1.143692 3.317500 1.073697 1.691140 0.817172 1.602385 4.294153 -3.067720 6.024553 -0.024345 -0.820529 -3.081746 -0.788691 2.598715 0.629945 -2.274878 2.768044 -5.532990 -3.863420 -8.820337 -2.482630 -0.963835 -1.474215 2.755864 -2.428633 -2.200587 -2.715107 -5.615416 7.514394 -1.852429 -1.280416 3.701192 2.462546 2.985493 5.461047 -0.718502 2.361658 -2.923679 -0.490547 0.373747 -2.657981 -2.031038 5.495071 -0.897192 0.562870 5.473355 -0.948105 3.368264 -0.184142 1.856039 -2.873029 4.507891 1.615292 -0.867426 2.619631 4.567166 4.658584 0.176384 -3.210648 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_pop_back_aux() = 2.729597 -2.516737 8.591829 7.502661 -1.884893 2.359721 -1.396105 -7.014525 5.069942 2.944328 -0.754868 2.023293 -2.075588 2.930289 -2.757762 5.751794 -6.316302 -1.925436 -3.358248 -5.151424 -4.079422 -2.417441 1.103366 0.278508 3.091830 2.672376 -3.883115 1.514171 -1.047317 -8.128104 1.671066 -0.464229 1.574833 -1.684767 2.193065 -9.455750 7.034253 4.556922 -2.151316 -5.061763 0.884698 -1.329584 -1.896052 -0.555569 -1.632767 1.284523 -2.107161 3.091093 3.092636 2.678966 2.091522 4.038688 3.858036 10.238084 -1.839892 4.488655 2.643175 0.673088 -0.400768 2.124713 1.774533 3.140332 1.136364 1.689283 2.192035 -5.132658 -1.597786 -0.526244 -2.324031 5.135932 -0.899770 -4.728495 -4.198716 -3.571385 -3.722871 -0.722753 -10.792334 5.261103 6.408760 -5.476518 1.756727 1.244372 0.432239 0.790190 2.844175 -1.227448 6.644174 2.586791 -0.634664 0.887419 1.726461 -2.629379 3.280327 -3.087405 -4.951563 -10.416278 3.363134 -7.860882 -5.640936 3.349558 3.856426 -1.940397 -1.821576 -3.385109 2.440345 -0.094405 -2.451351 -3.791892 -0.484669 2.638353 1.736808 -2.451889 -0.071247 -0.862460 1.073685 2.652554 -6.612344 1.206064 1.267986 -0.519994 -0.993728 4.132642 2.207432 -1.515917 -1.472531 1.332731 -1.695638 4.780310 -1.937786 5.633865 -2.392430 6.050810 -2.071527 5.233261 2.872357 -4.744574 -0.540343 1.040421 -1.769014 2.510751 -3.783657 3.904072 -4.130337 2.449114 3.976702 0.149546 -4.664440 -2.072034 -3.185363 -5.853537 1.316988 -3.439760 -5.473375 0.911833 4.116126 4.188871 3.259064 0.680425 -4.485666 0.054391 -0.835228 1.711807 3.699659 -1.166392 1.951759 -2.354430 -4.193404 3.188459 1.600893 1.336488 1.157357 -0.894893 0.471351 -2.450636 0.010122 3.579002 2.686021 -1.284009 4.267709 3.943626 7.577401 -2.585718 1.447843 2.706038 -2.632786 1.120984 -1.128356 -5.476705 1.136252 1.508422 3.987973 5.825011 -1.056857 0.332351 1.302730 -0.972481 1.729236 -2.418568 0.549783 -3.311151 -1.682477 -2.579482 2.441976 -1.585425 0.088858 -1.969507 -2.983893 5.885944 -8.714248 -2.067440 8.804364 -3.346670 1.197343 -3.470356 5.286831 -2.169383 2.474012 -0.389488 -0.427421 0.031345 -1.019039 -4.708484 2.201492 2.725498 -1.687654 -0.109453 6.007346 1.050399 0.364882 -0.817013 4.141847 -3.417448 3.983875 -3.566355 7.151278 -0.861379 -0.888470 -1.790650 -1.866228 -1.551633 -4.288141 1.795294 3.337307 0.562914 2.261255 0.357051 2.098112 4.167993 -3.384128 5.956256 -0.621115 -1.417801 -3.733626 -0.795818 2.573469 0.732638 -2.052420 2.109291 -5.773290 -3.413351 -10.546259 -1.237483 -0.893404 -0.919297 2.111755 -2.655739 -2.695551 -2.564114 -5.829030 8.654460 -2.143814 -2.674329 3.887024 2.499119 3.444068 5.887849 -0.418365 2.249819 -3.051049 -1.248604 0.845375 -2.180797 -2.594102 5.980786 -1.181304 0.616681 5.802506 -0.982105 3.689041 0.960700 1.852357 -2.695417 4.442913 1.529251 -1.226389 2.210955 6.229221 4.815083 0.113837 -3.464046 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__cmp(suffix, suffix) = 1.164589 -2.942484 5.599474 5.072778 -0.976952 1.629373 -0.565772 -2.354355 1.480332 2.347510 -1.248768 2.886610 -0.995675 0.390646 0.466218 3.118781 -3.653597 -1.547332 -0.565128 -1.128254 -1.157073 -0.926699 -0.533585 1.972311 1.983229 3.162034 -1.995444 0.224284 -1.064628 -5.432674 -0.615459 -0.282022 1.853395 1.627788 2.220906 -4.352444 3.670694 3.101136 -0.677218 -4.562740 0.526862 0.063774 -1.224048 -0.375772 -1.333054 2.117666 0.777704 1.235489 0.221254 2.154297 -0.469750 0.663801 3.730504 4.210492 1.555986 2.790436 3.549758 -0.394640 1.304129 -0.265962 1.618284 0.163301 0.864860 0.839376 1.033058 -1.882970 -1.475257 -0.451057 -1.359009 1.934079 -0.123582 -2.560238 -2.481201 -2.264492 -2.052071 0.441305 -4.874651 3.483354 3.978390 -3.016816 2.608401 1.624217 1.047324 -0.035619 1.655276 -0.302097 2.615485 2.191268 -0.613186 0.692506 0.288740 -3.753028 1.631846 -1.880510 -3.152548 -3.041466 2.074183 -4.497307 -3.465257 2.920388 1.507018 -1.442214 -0.710125 -1.746039 1.587325 1.704322 -0.922692 -1.702663 -0.452483 1.435683 0.046123 -1.842270 -0.840533 1.407638 -0.256504 2.574682 -3.846763 1.068218 2.295485 -0.880587 0.439892 2.148376 0.921998 0.949697 -1.363898 0.024687 -0.452589 3.197834 0.978579 2.545018 0.079140 1.760078 -0.203618 3.372217 1.544302 -2.365836 -0.889610 -0.134912 0.446675 2.003801 -0.015407 2.500684 -1.896392 2.579541 2.449346 0.493269 -3.314958 -3.322963 -2.742107 -2.853348 0.625130 -2.108777 -1.548502 3.388063 2.373763 1.037724 0.959525 0.722504 -3.047079 -0.057369 -0.379384 1.658762 0.622359 -0.259970 0.645856 -1.500208 -2.133406 2.597305 2.163154 1.055075 0.985468 -0.900359 1.065960 -0.697488 -1.345232 3.319284 1.422277 -0.078884 2.829273 2.156003 3.774116 0.410520 -0.982362 0.278130 -1.236082 -0.165597 -0.634049 -3.610257 0.993330 0.206420 2.642736 3.733071 -0.596869 0.143717 1.585747 -0.397290 -0.070046 -0.947754 2.004369 -1.921545 -0.507371 -0.666352 0.609600 -1.235351 -0.329676 -1.656954 -1.083641 4.499925 -4.588065 -1.983250 3.214180 -2.884218 0.935719 -2.570406 3.180281 -1.313185 1.741769 0.725055 -1.384728 -0.208716 -2.189323 -1.723036 0.093629 1.908487 -1.055968 -0.599464 2.549851 0.475002 -0.998928 0.624554 1.354507 -1.553065 1.893477 -1.689754 2.810040 -0.736656 0.398595 -1.387140 -0.726383 0.167945 -1.418951 -0.130090 1.210086 -0.298868 0.976371 0.150452 1.150129 1.238628 -2.536743 2.556613 -0.133083 1.295876 -2.400596 -0.808101 -0.276402 0.922348 0.008078 1.410055 -3.497166 -1.645244 -6.383971 -1.243116 -2.469318 -0.116708 2.461430 -1.204337 -1.447614 -1.524536 -3.710503 4.475802 -0.714424 -2.004190 2.762967 1.370451 3.045667 2.172214 0.525640 0.016776 -2.276419 -0.374502 -0.100559 -0.501990 -1.238731 2.338647 -1.278710 0.825959 3.544673 -0.313170 2.040939 -0.543420 1.834749 -2.022268 3.085354 1.487727 -2.676007 -0.069989 3.344340 1.300771 -2.382870 -2.752495 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -8.085993 -18.883214 22.217077 19.831183 1.897493 12.327938 8.908912 -9.928197 10.401847 13.973395 -6.701528 12.558379 -11.196638 -2.956886 -2.624065 7.815837 -9.218448 -11.629740 0.042661 -5.498228 -2.925422 -12.682770 -7.124151 13.922004 5.725416 4.762615 -6.704143 0.939624 -19.201137 -27.462418 1.280947 -0.849330 9.001048 -0.056132 4.719157 -33.278662 15.782018 22.260133 -2.348909 -21.202423 2.089936 -3.874541 -7.286264 5.276919 -4.466131 8.093431 4.587981 2.353881 -0.563078 6.714847 6.241501 -0.399139 13.986659 25.022769 1.960471 20.496356 19.323011 0.618199 5.141045 3.377550 4.864277 -1.014094 9.139879 10.572401 -2.922848 -4.773745 -1.452752 1.693849 -15.177606 6.311326 2.294907 -12.796446 -9.012852 -6.956737 -10.803693 -3.297370 -14.094684 5.284703 27.166225 -9.448857 27.201908 10.905347 13.354758 -3.251055 12.447750 -2.593573 15.237059 7.536475 -12.493750 1.850066 -8.299220 -9.207960 3.356998 10.748917 -14.912739 -5.209149 10.382303 -15.663215 -20.609342 11.834851 0.263066 -5.922920 -10.026964 -2.773525 7.035765 4.380653 -6.659641 -18.643393 -14.224022 10.909748 -7.087350 -9.734524 -4.769164 2.201424 -0.442791 4.925802 -16.142956 -0.572314 13.472054 -10.588049 -7.185947 13.215354 -0.798229 10.890449 -3.539249 1.786545 -0.883569 5.796870 5.537840 7.596169 2.960160 -3.168495 -22.897820 4.549043 3.710272 2.259886 -7.565747 -2.917386 6.619922 7.788861 5.275052 14.663685 -6.990365 13.420778 13.136168 0.440556 -8.809418 -15.510699 -5.816662 -13.775987 5.400962 -10.143855 -9.541175 1.312540 12.374218 -0.521255 2.165940 11.715278 -13.435617 13.099499 -0.188253 2.660618 1.683198 -6.689309 5.119370 -8.183385 -14.505808 10.541964 13.821427 5.436227 4.630195 -4.800980 -0.137766 -5.520463 -12.440697 10.671257 0.166286 -0.834482 16.944981 9.690086 38.995890 -10.027756 1.674726 -1.398035 -4.029623 3.184548 -3.208930 -18.798580 6.799900 3.050033 6.198218 23.236487 -0.852608 -6.076913 6.424258 -0.857126 1.152471 -12.891737 18.103348 -13.359882 -2.448368 -5.526080 -3.181596 -6.834186 -6.955753 -10.619674 -1.172455 20.325228 -15.603535 -17.120855 11.373126 -4.346675 3.548391 -22.594193 22.304588 -8.090153 11.586052 -6.845574 -6.282186 -0.157095 4.104031 -2.479053 1.370945 8.308566 -12.633926 9.950603 17.321860 1.332339 1.714323 4.817855 6.588560 -5.215403 -1.078250 -11.710157 12.408670 0.622186 -5.323230 -5.483515 -7.020582 10.439127 -1.523395 -2.938630 2.351630 13.578692 -5.407329 -2.847215 11.392806 1.544517 -8.975714 9.211904 2.585775 10.247268 -9.035793 -3.264718 -5.978840 0.616703 1.723163 8.586614 -19.496346 -9.262153 -15.423451 -16.874935 -7.500727 4.265299 10.554933 4.337649 -0.242766 -22.831340 -14.546228 21.917062 -5.283779 5.555357 11.813359 12.945193 14.068219 10.043248 4.713504 -2.388922 -7.675222 1.535485 -8.403826 -5.775675 -1.879867 7.760155 -9.165038 12.926640 8.685061 0.934884 8.152155 -1.408520 8.966714 -11.334959 23.887485 10.207975 -11.825870 4.443861 9.621588 18.693035 -15.771004 -10.906748 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::sort(suffix*, suffix*, int (*)(suffix, suffix)) = -0.251092 -1.334721 2.511810 2.177017 -0.135794 0.961095 0.258586 -1.613293 1.703201 0.667232 -0.119858 0.652884 -1.393489 0.668577 -0.481256 1.184826 -1.704841 -1.316866 -0.588081 -1.257786 -0.842258 -1.240183 0.425879 0.541696 0.823314 0.309543 -1.239380 -0.095003 -1.673920 -1.428148 1.217004 -0.459723 1.109630 -0.102376 0.268253 -4.080586 1.812622 1.422281 -0.569172 -1.880025 0.433394 -1.013893 0.041244 -0.525530 -0.601585 0.363200 -0.121013 0.369492 1.127482 0.451133 0.491311 0.633671 0.336097 3.173890 -1.149749 1.415071 0.749082 -0.079002 -0.345240 0.367093 0.430935 0.549842 1.091233 0.972560 -0.363036 -1.374319 -0.234860 -0.586000 -1.788334 1.433627 -0.043492 -0.535201 -1.257216 -0.498758 -1.410434 -0.560227 -0.900574 1.410267 2.514149 -1.438965 1.478113 0.270917 0.694205 0.103453 1.150129 -0.038408 1.817393 0.587588 -0.811487 -0.002066 -0.909498 -0.302337 0.304049 0.103384 -0.934254 -2.014392 0.883305 -1.631481 -1.904645 0.924247 0.593717 -0.188383 -1.678714 -0.711511 0.973949 0.709402 -1.080255 -1.844358 -0.782772 0.850652 0.160982 -0.813429 0.116690 -0.637652 -0.310568 -0.757032 -1.895124 -0.205312 0.448127 -0.910184 -0.772750 1.680119 -0.736104 0.100374 -0.207502 0.569763 -0.713267 1.546586 -0.238372 1.186311 0.101338 0.200800 -1.529713 0.024117 0.614300 1.150746 -0.374672 -0.214943 -0.688803 0.551859 -0.981686 0.444312 -0.283175 0.821462 1.560664 -0.360765 -1.196531 -0.690572 -0.059974 -2.270640 0.342330 -1.320830 -0.629357 0.759491 1.475312 1.070897 1.112166 1.836642 -1.336824 0.995566 -0.324982 -0.067544 1.336498 0.023045 0.894333 -0.877424 -1.477333 0.870016 0.552757 0.544601 0.405666 -0.489117 -0.004499 -1.147834 -0.753768 0.590630 0.818446 -0.134830 1.376908 1.036915 2.117898 -1.832639 0.597037 0.823868 -0.509229 0.457661 -0.293280 -1.926004 0.638781 0.504900 -0.099107 1.709957 -0.366890 -1.064316 0.561774 -0.246314 0.685182 -1.193022 0.462176 -1.263983 -0.271166 -1.314895 -0.072453 -0.704351 -0.636445 -0.869605 -0.595082 2.097352 -1.639681 -1.522043 2.128366 -0.458484 0.895569 -2.412508 1.660260 -0.996916 1.313189 -0.686013 -0.184596 -0.164994 0.491477 -0.987495 0.474358 0.959920 -0.858254 0.613472 2.262723 0.560806 0.322006 0.071747 1.454943 -0.179855 0.779844 -0.962337 1.937982 -0.282690 -0.491870 0.026059 -0.808217 0.279250 -0.706427 0.395176 1.191752 1.271857 0.509643 0.746150 1.307152 1.080732 -0.908774 1.131402 -0.225176 0.648111 -0.808561 -0.118562 0.182239 0.719019 -0.466976 0.856373 -2.018523 -2.153774 -1.931252 -1.630457 -0.092882 0.163114 0.301009 -0.209997 -0.168282 -1.818434 -1.229944 1.218054 -0.820007 1.389576 1.014681 0.873606 1.320061 1.913723 -0.891885 -0.222616 -0.085989 0.013781 -0.300895 -0.394153 -1.237423 1.533885 -1.045979 0.735823 1.731790 -0.429579 0.668206 0.046808 1.300228 -1.084187 2.371398 0.910549 -0.687269 1.313828 1.236535 2.022700 0.272779 -1.078277 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::push_back(int const&) = 1.961349 -4.462667 11.221566 10.018590 -0.727797 3.790603 0.107223 -9.004419 6.998832 4.275793 -0.585465 3.166553 -4.527642 3.638751 -4.489890 6.882754 -7.010797 -4.261411 -4.231127 -6.522261 -4.573733 -4.126620 2.241608 1.117866 4.439966 1.340330 -5.698364 0.362867 -5.543672 -9.783598 3.061690 -0.623243 3.141235 -3.298520 1.354191 -13.192101 8.920553 7.397007 -2.797650 -7.477021 2.186133 -3.068359 -2.412805 -0.661444 -1.711076 1.377235 -2.568930 2.560946 4.386897 3.202179 3.609505 5.551175 3.674663 13.822618 -3.901953 6.770440 3.622419 1.334604 -0.935338 3.010489 2.100453 4.144067 2.864053 2.897828 1.220874 -6.561157 -1.818304 -0.711204 -4.969579 6.671561 -1.097941 -5.393887 -5.310162 -3.307541 -5.622963 -1.125907 -8.640096 5.975605 9.343517 -6.643752 4.029765 1.196000 0.949252 0.106589 4.135139 -1.497225 8.034405 3.159152 -1.329197 -0.631353 -1.120734 -1.699289 2.799323 -1.469404 -6.375491 -11.557579 5.074685 -9.098942 -8.486853 3.780450 4.205881 -2.730505 -4.443609 -3.163559 3.180969 1.057437 -3.557936 -6.471363 -2.115844 4.283469 2.075113 -3.981707 0.039906 -2.551751 0.388858 1.024528 -8.649029 0.748115 1.815838 -2.162629 -3.287748 6.104218 0.367128 -0.999877 -1.628235 2.344509 -2.474543 5.401027 -2.487036 6.923907 -0.994140 5.562531 -4.901927 4.098128 3.523321 -1.984365 -1.791823 1.682348 -2.894153 3.027245 -4.452763 4.645892 -4.633909 3.457376 5.494227 -0.935720 -5.738593 -2.591392 -1.753527 -8.143319 1.553196 -4.968372 -6.005637 0.624370 5.988740 4.747091 4.410813 4.681815 -5.699041 1.784994 -0.037379 1.054218 5.408942 -2.282576 2.939031 -3.573756 -7.092058 4.283436 2.605525 1.677905 1.010284 -0.176449 0.000977 -4.234693 -1.645977 3.217490 2.899236 -1.687277 6.371314 5.171072 9.731275 -5.910929 2.657917 3.536455 -3.635163 2.163877 -2.032839 -8.425371 1.623716 2.239908 3.769163 8.828801 -1.255108 -1.919565 2.479161 -1.270744 2.708755 -4.364373 2.105458 -5.429084 -2.341126 -4.368577 1.108820 -1.527355 -1.120981 -3.034550 -3.531003 8.494580 -9.196033 -5.092406 10.791275 -3.105935 1.422707 -7.945148 7.164087 -3.445114 3.519477 -0.986074 -0.033014 -0.125281 1.056155 -6.232442 2.533209 3.961825 -3.637764 2.287382 9.585025 1.458266 0.852549 -0.910689 5.645537 -3.446918 4.576482 -5.267960 9.737576 -0.882124 -2.879224 -1.639648 -3.077003 -0.734231 -5.287646 1.838317 4.815050 2.808588 2.340413 1.158914 4.137952 6.108576 -4.390451 7.809767 -0.664386 -0.373695 -4.147141 -0.824675 2.680463 0.866970 -2.310117 4.022843 -8.283645 -6.552845 -10.844650 -5.388535 0.611946 -1.471971 2.669276 -2.869893 -2.885423 -6.178176 -7.654697 8.443088 -3.216661 0.746955 5.535538 4.086361 4.767786 7.929202 -2.090648 2.964609 -3.177662 -0.635593 0.122519 -4.044329 -3.038870 7.256475 -2.113728 1.920452 7.428778 -0.951913 4.862992 0.398847 2.634192 -4.000433 7.955291 2.685296 -1.768408 4.443013 6.658495 8.059587 -0.157930 -4.709261 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::~vector() = 0.992689 -2.515697 6.320914 4.841313 -0.909663 2.207380 0.519021 -4.882021 4.415472 2.069594 -1.070508 0.396050 -2.891285 1.159484 -2.367029 2.861759 -4.362476 -2.237189 -1.863204 -3.505209 -1.930579 -3.026768 1.507595 0.487083 2.207878 1.597575 -2.030543 0.574988 -2.386400 -5.159292 2.849155 -0.649053 1.484581 -0.392497 0.959458 -6.836371 5.020857 3.593837 -1.483869 -4.163804 0.790353 -0.825036 -1.716026 0.229469 -0.626279 1.009508 -1.022526 3.052410 2.295861 1.696874 1.601859 1.089412 1.710931 6.923320 -2.012163 3.485884 1.746217 0.448211 0.024833 2.314632 0.995949 1.926005 1.192971 2.667446 0.859892 -2.769930 0.147747 -0.821358 -3.364292 4.115437 -0.803842 -2.654206 -2.551774 -1.838408 -2.649021 -0.062768 -5.379128 3.475113 5.835022 -2.962998 2.942714 0.950602 0.925586 -0.632564 1.536107 -0.831747 4.277520 1.636678 -1.285634 -0.315510 -1.044035 -1.469736 1.522901 -1.295031 -2.911947 -5.887207 2.966093 -5.020582 -4.132400 1.884687 2.175101 -1.410624 -1.840331 -0.988744 1.808769 0.344063 -2.000256 -3.641776 -1.142517 2.177701 -0.061221 -1.159625 0.209731 -0.109637 -0.222041 0.520861 -4.079505 -0.305696 0.596734 -1.669546 -1.059239 3.227731 0.179703 -0.189954 -0.347099 1.249796 -0.936809 2.749867 -0.754028 3.532137 -0.129424 2.953877 -1.940742 2.206809 2.027826 -0.675219 0.083484 0.592673 -0.750315 1.775642 -2.558769 2.015849 -2.838234 0.945042 2.802965 -1.028769 -2.806614 -1.064336 -1.109558 -4.864144 0.751327 -2.966432 -3.536003 0.505712 3.309432 3.030791 2.158721 2.755374 -4.194587 0.961873 -0.696329 0.487484 1.802519 -0.411359 1.636352 -1.706701 -3.425282 1.329054 1.180242 1.016124 0.693406 -1.409173 -0.519003 -2.771909 -0.866908 2.149578 1.653960 -1.210947 2.578237 3.067862 4.466482 -3.286757 1.135741 2.419179 -1.422317 0.525951 -0.239796 -5.029433 1.457788 0.931827 2.454279 3.955893 -0.618975 -0.297097 1.216285 -1.299499 1.026948 -2.537911 0.515449 -2.985190 -0.899064 -2.612632 1.498081 -1.277188 -0.981078 -1.464110 -1.355720 4.157160 -4.576517 -2.547127 6.216035 -1.520349 1.147155 -3.547855 3.338871 -1.766617 2.110173 -0.315928 0.085066 -0.401403 0.028472 -2.460287 0.625776 1.481017 -1.313379 1.961439 5.101203 0.928097 0.324891 -0.053970 3.585188 -2.374574 1.740014 -2.979554 4.317452 -0.465645 -1.794075 -0.682143 -1.830301 -0.279959 -2.928386 1.007263 2.999966 2.078332 0.922844 1.528793 1.466087 2.655263 -1.849833 3.884161 0.225428 0.289228 -2.124517 -0.411292 1.525349 0.790895 -1.957652 2.291156 -4.745048 -4.315032 -5.617692 -3.124198 -0.869035 -1.896582 1.858439 -1.121462 -0.800105 -3.050740 -3.878361 4.654710 -1.552951 0.625980 2.710167 2.177262 2.433919 4.619426 -1.267709 1.387255 -0.997931 0.552364 -0.740975 -1.965915 -1.831434 3.703113 -1.619825 1.113075 4.158453 -0.619483 2.093914 -0.658931 2.085841 -3.085511 4.054383 1.994520 -0.868445 2.440778 2.871867 4.529308 1.228310 -2.388990 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__kasai(std::__cxx11::basic_string, std::allocator >, std::vector >) = -5.094436 -17.902771 23.901385 18.932029 3.358288 12.454553 10.074189 -13.897141 16.135535 13.111199 -6.245771 7.428973 -15.029547 -1.270254 -7.070917 6.857005 -9.580929 -14.560436 -2.016657 -9.624141 -4.338935 -14.040768 0.231978 9.367796 7.759702 -1.131816 -7.439858 -2.019167 -22.940701 -19.698286 8.452763 -1.781281 8.737315 -3.997332 2.087011 -30.079926 16.556730 19.647032 -4.406300 -21.023282 3.704692 -5.072825 -7.210629 4.998873 -0.162886 5.046856 2.763245 8.557339 3.781915 7.491125 9.109474 -0.076450 7.022544 30.372271 -5.501638 19.963897 16.047513 2.625896 2.544868 8.927701 4.481848 1.426114 9.205186 13.256840 -2.712683 -5.920134 0.895196 -1.452538 -17.487784 10.808191 1.062605 -10.678959 -8.722329 -5.667273 -10.344270 -2.948023 -9.989689 6.857312 28.361062 -10.730856 24.544585 8.962331 12.606876 -4.168477 10.392094 -3.070561 15.133123 6.916823 -11.943312 -2.481312 -16.267984 -4.297736 0.837125 5.501807 -12.876417 -11.289723 13.150071 -13.915748 -22.055986 10.469709 2.397065 -5.200284 -10.753243 0.914804 8.231800 4.396847 -9.310140 -19.765598 -13.168847 10.774654 -6.666753 -7.903927 -1.766962 -1.553380 -2.027922 -1.350772 -16.507001 -2.636540 9.632338 -12.603205 -9.621771 15.547894 -6.763878 8.998192 -1.703185 3.879713 -2.114590 7.035757 4.343872 9.007169 6.393431 -2.106941 -22.563454 4.305104 5.506388 6.646383 -4.750658 1.958529 3.023871 7.651130 -0.552938 12.452070 -7.131833 9.901440 10.468608 -4.026733 -10.536338 -11.543881 0.276686 -17.197367 6.433824 -12.586909 -9.892247 -0.840949 14.245621 6.633795 4.615353 18.325896 -14.424260 12.338363 -0.784100 1.483988 2.947409 -4.601414 7.625155 -9.042454 -17.036085 7.120147 12.478900 3.145136 4.369772 -5.994554 -1.959237 -11.941924 -11.179091 4.668551 2.325140 -3.931513 15.090888 11.476231 28.672409 -18.421370 3.746789 3.120746 -4.516352 3.444548 -2.922197 -23.041872 7.166076 3.679248 6.391236 21.769450 -0.471537 -7.735309 6.879870 -3.715334 2.777320 -13.138285 12.217572 -14.926401 -5.244048 -8.740158 1.383629 -7.069494 -7.683123 -8.353661 -0.772190 21.096500 -10.709822 -17.598629 16.421874 -2.801029 3.403802 -23.665143 20.592278 -8.872309 10.649226 -5.294935 -3.194913 -2.186365 7.739313 -4.177023 1.879387 7.400263 -10.931422 14.322323 21.923122 2.396330 4.152792 4.742387 11.424578 -7.297838 -0.230042 -13.080253 14.736650 -0.838621 -11.032682 -3.043190 -8.486336 8.955878 -5.243913 -0.652455 8.635699 15.158920 -4.117515 2.533426 11.129077 5.434295 -9.110593 11.718880 2.931767 10.582996 -8.774793 -2.030615 -2.438787 0.195614 -2.300109 10.504388 -21.910177 -16.097465 -12.284369 -21.065047 -3.852844 -2.044031 8.006716 1.358652 0.088239 -23.254705 -14.979386 12.789309 -7.241848 8.568830 13.170556 14.107512 14.400182 15.676512 -1.944404 0.592712 -3.853346 3.045416 -9.673447 -9.129376 -3.802322 9.770651 -9.137380 11.857743 11.642952 1.632082 7.806901 -3.004364 9.472550 -13.597884 23.566449 11.335583 -8.794524 8.982830 9.137934 23.477127 -7.078359 -11.178183 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::size() const = 0.591324 -1.130559 2.431262 2.119935 -0.202143 1.157815 -0.461539 -1.485649 0.729250 1.175822 -0.261994 0.992868 -0.718262 0.660655 -0.775426 1.103587 -1.150355 -0.361789 -0.929658 -1.043415 -0.531253 -0.572704 -0.389572 0.782600 0.722552 0.578080 -0.924733 0.616689 -1.144727 -2.620475 -0.064040 0.020219 0.502402 -0.949279 0.892257 -1.607096 1.868339 1.863364 -0.309236 -1.729062 0.319233 -0.238705 -0.612736 0.254866 -0.207722 0.740669 -0.241666 0.240538 0.488173 0.799134 0.110609 0.874421 1.465532 2.032865 -0.184665 1.415122 1.185957 0.127940 0.580336 0.342871 0.039353 0.587750 0.028863 0.091166 0.521209 -1.207779 -0.329516 0.436940 -0.297106 0.868974 -0.411850 -1.295949 -0.966441 -1.053246 -1.461566 0.045421 -2.574152 1.041024 1.687718 -0.980704 0.856171 0.304389 0.080534 0.601101 1.197236 -0.054333 1.042059 0.780671 -0.335755 0.600449 0.419398 -0.367982 0.712967 -0.247046 -1.689151 -2.321226 0.979865 -2.192360 -1.289922 1.288709 0.469675 -0.874391 -0.161021 -1.152775 0.153130 0.218084 -0.801751 -1.058966 0.027064 1.198163 0.758155 -0.755732 0.360828 -0.378531 0.335686 0.619947 -1.284163 0.590386 0.807478 -0.247374 -0.375408 1.351014 0.867339 0.104419 -0.408117 0.493399 -0.574902 0.942616 -0.067172 1.529285 -1.075116 1.221179 -0.802132 1.077693 0.656607 -1.571496 -0.474357 0.385549 -0.233559 0.704828 -0.103216 1.390393 -1.131573 0.648160 0.916770 0.125404 -0.736521 -0.844447 -0.874283 -1.075182 0.051463 -0.494609 -1.913965 0.120509 1.034787 0.450354 0.535007 0.195489 -0.959797 -0.538558 -0.262907 0.192867 0.657156 -0.684878 0.211019 -0.632224 -1.254598 0.946347 0.687494 0.329930 0.485242 -0.186842 0.299981 -0.155633 0.658985 1.066252 0.604051 -0.631886 1.683094 1.300010 1.754375 0.094668 -0.071425 0.279616 -1.205346 0.381341 -0.535541 -1.372450 0.178901 0.726490 0.788014 1.837381 -0.346651 0.056942 0.991092 -0.372287 0.419457 -0.671122 0.753658 -1.074116 -0.500733 -0.614525 0.239360 -0.309207 -0.158012 -0.950477 -0.720831 1.582640 -2.224192 -0.303364 1.520777 -0.193446 -0.144305 -0.869373 1.138912 -0.544235 0.829418 0.696902 0.055499 0.190014 0.245189 -1.120813 0.199926 0.817353 -0.891486 0.393052 1.157398 0.200785 -0.380010 -0.064485 0.941896 -1.059947 0.375799 -1.304802 1.332415 -0.324510 0.047712 -0.491419 -0.469422 -0.245070 -1.094031 0.208929 -0.124868 -0.161570 0.289105 -0.537435 0.831686 0.585985 -0.380463 1.303928 -0.470063 -0.239047 -1.150008 -0.260807 0.141696 0.493365 0.246451 0.650992 -1.802773 -0.500686 -2.557057 -0.284073 -0.166778 0.181037 0.352809 -0.135804 -0.678989 -1.083826 -1.804569 2.536163 -0.519647 -0.793200 1.188882 0.723447 0.845795 1.149103 0.377941 0.480587 -0.910235 -0.103043 0.112992 -0.297581 -0.227294 1.384991 -0.421364 0.093993 1.378478 -0.259228 1.232661 0.357746 -0.033368 -1.109166 1.366623 0.657581 -0.519400 0.364745 1.856958 1.313040 -0.645740 -0.777520 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(unsigned long, int const&, std::allocator const&) = -1.402123 -2.426002 4.680046 2.989135 -0.217215 1.756719 1.568919 -3.481868 3.695387 1.372544 -0.217604 0.244476 -3.130734 0.634642 -1.995846 1.574160 -2.394880 -2.707356 -1.145238 -3.143508 -1.763667 -2.770757 1.205323 0.709370 1.275242 -0.373158 -1.438079 -0.423050 -3.118660 -3.838568 2.596259 -0.543167 1.528232 -1.329736 0.181104 -7.425273 3.308632 2.507517 -1.414072 -3.335578 1.041865 -0.957937 -0.769384 0.812150 -0.738566 0.460513 -0.037835 1.712647 1.730998 1.424747 2.140575 0.645081 0.355900 6.777238 -2.276778 3.054418 1.931234 0.659758 -0.593211 2.151891 0.267906 0.723153 1.360324 2.260866 -0.488196 -1.405143 0.606276 -0.979856 -3.789447 2.920561 -0.461757 -2.250665 -1.590057 -1.400805 -2.476566 -0.969211 -2.239759 1.838981 5.258315 -2.897973 3.127938 0.930986 1.489700 -0.362787 1.496529 -0.649896 3.226867 0.881069 -1.776049 -0.627449 -1.976715 -0.146686 -0.228283 0.326501 -1.656036 -4.225897 2.729452 -3.219567 -3.870034 1.841348 0.832698 -0.502430 -3.233779 -0.760090 1.770287 0.752808 -2.523764 -3.966108 -2.592450 2.162358 -0.277545 -0.570245 0.655327 -0.780602 -0.433477 -0.937741 -3.630777 -0.645279 0.920880 -2.374852 -2.342347 3.085617 -1.340487 1.178955 0.624611 1.672213 -1.063957 2.544237 0.347308 1.921125 0.451607 0.697992 -3.648902 0.247362 0.930227 1.722181 -0.134722 0.307238 -0.581645 0.978084 -1.778840 1.406613 -1.718976 0.936335 2.851598 -0.887024 -2.348817 -0.775624 0.397408 -4.524231 1.043073 -3.109677 -2.061691 0.410408 2.207049 2.469670 1.332647 3.998612 -2.818752 2.246714 -0.628097 -0.372208 0.989584 -0.784799 2.010395 -1.575285 -3.452981 0.593587 1.386135 0.655050 0.740229 -1.719849 -0.591914 -3.037905 -2.043367 0.477001 1.249733 -1.082312 2.013008 2.327619 4.626606 -4.238869 0.851324 1.406781 -1.291574 0.799273 -0.562834 -4.273345 0.863249 1.022545 0.495696 3.480437 -0.281711 -1.470473 1.580090 -1.009464 1.135343 -2.283368 0.811018 -2.890204 -1.169295 -2.432411 0.197777 -1.511107 -0.976777 -1.098336 -1.191674 3.534587 -3.027889 -3.157917 4.520331 -0.560099 1.421307 -4.756827 3.758700 -1.324260 2.364065 -1.204016 0.345978 -1.015885 1.584635 -0.657079 0.822771 0.911716 -1.509363 2.440645 5.308446 0.442848 1.285035 0.786385 3.385086 -1.332890 0.568453 -2.351047 3.652617 -0.829093 -2.587160 0.191863 -1.421713 0.685069 -1.686125 1.036167 2.183262 2.756124 -0.595776 1.454646 2.573666 1.758095 -1.270405 2.640527 0.215042 1.592088 -1.768562 -0.002233 0.481072 0.757035 -1.445230 1.784047 -3.901459 -4.161264 -3.722738 -4.298573 -0.330159 -0.705388 0.963943 -0.581812 -0.140787 -3.558897 -2.340837 2.855650 -1.500813 2.123072 2.465495 2.596716 2.910344 4.663075 -1.415771 0.205594 0.045102 0.275981 -1.640305 -1.683325 -1.291575 1.863360 -1.597492 1.573156 2.461170 0.367242 1.354605 -0.259708 1.722297 -2.581251 4.238366 1.962911 -0.528926 2.958699 2.179233 4.563233 0.700942 -1.554203 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::operator[](unsigned long) = 0.088570 -0.578969 1.437473 1.287683 -0.175353 0.473522 -0.094209 -1.078857 0.896451 0.805136 -0.080197 0.380738 -0.529989 0.436205 -0.307342 0.984640 -0.911761 -0.419096 -0.496839 -0.847189 -0.725453 -0.535862 0.093946 0.081783 0.497297 0.260495 -0.666281 0.208691 -0.383351 -1.555551 0.131316 -0.090944 0.346762 -0.416514 0.354427 -1.836283 1.143088 0.892439 -0.356031 -0.969052 0.162137 -0.327313 -0.115290 0.065353 -0.243545 0.287729 -0.209736 0.249599 0.550776 0.477198 0.585811 0.535084 0.684577 1.865042 -0.327466 0.859671 0.496782 0.053426 -0.128863 0.348992 0.276949 0.375448 0.325990 0.317694 0.209496 -0.779086 -0.271490 -0.056203 -0.550024 0.828580 -0.226285 -0.882433 -0.745766 -0.698715 -0.625044 -0.281245 -1.899488 0.773854 1.210528 -0.957669 0.513344 0.289563 0.157137 0.204962 0.644025 -0.205721 1.181770 0.375856 -0.256651 0.224071 0.444420 -0.398712 0.462137 -0.149290 -0.799134 -1.502053 0.595077 -1.114910 -1.080908 0.692537 0.495524 -0.233011 -0.628702 -0.550225 0.415940 0.127125 -0.520953 -0.854280 -0.318687 0.506874 0.280803 -0.446379 -0.016686 -0.316208 0.066457 0.352549 -1.140772 0.119387 0.285472 -0.257292 -0.418368 0.854177 0.279906 -0.057686 -0.181289 0.265475 -0.273355 0.933316 -0.221690 0.976996 -0.454551 0.834718 -0.891895 0.671482 0.446784 -0.695628 -0.113781 0.185478 -0.277389 0.360545 -0.611319 0.759115 -0.627207 0.618479 0.995355 0.036065 -0.775539 -0.413510 -0.455144 -1.087868 0.277357 -0.622016 -0.711831 0.139208 0.749209 0.653816 0.503382 0.414973 -0.786044 0.090872 -0.186714 0.106952 0.635699 -0.174057 0.412494 -0.472362 -0.774979 0.532055 0.509926 0.248010 0.261915 -0.181714 0.059718 -0.404581 -0.040704 0.615733 0.441163 -0.208927 0.824165 0.691801 1.754417 -0.580344 0.267730 0.396556 -0.394663 0.235892 -0.267318 -0.996447 0.212174 0.296469 0.456914 1.013665 -0.183795 -0.066118 0.273115 -0.246959 0.349984 -0.545494 0.247465 -0.644724 -0.219844 -0.470355 0.226062 -0.342202 -0.088671 -0.320109 -0.379270 1.093362 -1.310764 -0.429883 1.394089 -0.505296 0.181928 -0.780187 1.203349 -0.413829 0.499868 -0.327352 -0.131868 -0.052293 0.167416 -0.573996 0.390090 0.496901 -0.360426 0.038030 1.158210 0.188317 0.119343 -0.080337 0.757955 -0.443978 0.542736 -0.584628 1.259407 -0.129891 -0.060688 -0.265843 -0.378656 -0.084754 -0.518901 0.191934 0.534812 0.297389 0.099595 0.009433 0.516800 0.647851 -0.549266 1.000663 -0.075464 0.050417 -0.679474 -0.131963 0.290069 0.207154 -0.288958 0.309622 -1.050384 -0.524048 -1.543084 -0.299873 -0.207330 0.198864 0.297519 -0.306053 -0.370604 -0.557824 -0.956416 1.610798 -0.413998 -0.267561 0.529783 0.477954 0.709456 1.051950 0.025876 0.221188 -0.584319 -0.353812 0.016752 -0.367970 -0.312815 0.938715 -0.381992 0.230265 0.803544 -0.154956 0.603916 0.345874 0.304962 -0.557350 0.883868 0.326606 -0.139106 0.519431 1.173192 1.065609 -0.257359 -0.600219 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__printArr(std::vector >, int) = -0.728183 -1.507980 1.679102 1.453302 0.164813 1.004513 0.373654 -0.790212 1.187180 0.433328 -0.685169 0.735384 -1.183177 -0.155128 -0.133515 0.132377 -1.051832 -1.300274 0.010957 -0.422187 -0.272312 -1.216479 -0.404202 1.037292 0.287798 0.677725 -0.631014 0.425677 -2.061142 -1.124731 0.714677 -0.175629 0.801554 0.617626 0.477276 -2.678735 1.136930 1.526687 -0.187213 -1.947515 0.076716 -0.958291 -0.327921 -0.235660 0.035919 0.695903 0.378454 0.548913 0.147596 0.076430 0.061933 -0.263199 -0.027739 1.797582 -0.304134 1.499361 1.502231 -0.024009 0.177342 0.242448 0.334606 -0.046760 1.008745 1.172174 -1.007854 -0.466477 0.180394 -0.394746 -1.334659 0.846157 0.483370 -0.486030 -0.724536 -0.542418 -1.091079 -0.315613 0.160478 0.622650 2.182780 -0.726955 2.076252 0.716459 1.418216 -0.109207 1.307059 -0.153442 1.745674 0.507869 -1.170737 -0.044664 -1.922357 -0.750993 -0.063247 0.692780 -0.797307 0.082732 0.522224 -1.586784 -1.614328 0.617199 -0.123641 -0.240354 -1.246260 0.319732 0.973121 0.480188 -0.344557 -1.502796 -0.909571 0.854856 -0.963787 -0.622640 -0.201472 0.166285 -0.350312 -0.478499 -1.392213 -0.169808 0.995029 -0.828937 -0.502476 1.418087 -0.928922 0.591744 -0.249469 -0.035386 -0.234785 0.844324 0.296213 0.192534 0.549680 -0.848890 -1.850331 0.188592 0.224109 1.112055 -0.781180 -0.352912 0.451996 0.449786 -0.155989 0.288478 -0.610639 0.893592 0.882288 -0.433876 -0.761585 -1.346190 -0.292675 -1.460999 0.356063 -0.877004 -0.403720 0.230830 1.254231 0.783968 0.466999 1.679047 -1.149224 1.097769 -0.157633 0.172508 0.372051 0.157066 0.580300 -0.785820 -1.113382 0.886848 0.672715 0.363939 0.506429 -0.588392 -0.100491 -0.897661 -1.329139 0.939760 0.244125 0.431746 1.486572 0.878503 2.000678 -1.720173 0.472035 0.164933 -0.146429 0.174992 -0.071485 -1.401490 0.779535 0.316711 0.466642 1.719918 -0.097919 -0.820962 0.052941 0.214447 0.349954 -1.205093 0.945899 -1.061718 -0.021553 -0.796357 0.059365 -0.745700 -0.868308 -0.817927 -0.186998 1.813707 -0.551637 -1.987667 1.140259 -0.366389 1.048207 -2.292876 0.494240 -0.901618 1.403221 -0.554872 -0.207642 -0.115009 0.013015 -0.300664 0.284161 0.715196 -1.022794 0.823435 1.152025 0.408924 0.398496 0.427126 0.633059 -0.178308 -0.091112 -0.915672 0.859010 0.000000 -0.384884 -0.053824 -0.728101 0.927260 0.161232 -0.133857 0.744397 1.555141 0.117119 0.477249 1.156320 0.179460 -0.785370 0.256288 0.139525 0.877143 -0.615125 -0.391744 -0.522422 0.224851 0.032291 0.468327 -1.658648 -1.586609 -0.779784 -2.019715 -0.426188 -0.006988 0.456582 0.620096 0.250292 -1.933640 -0.775375 0.944592 -0.477408 1.950925 0.601582 0.855287 1.137572 1.080900 -0.478073 -0.559666 0.157576 0.243537 -0.989194 -0.241869 -0.975030 1.053259 -0.748669 1.113324 1.124051 -0.353121 0.506536 -0.287351 1.471103 -0.922880 2.065699 0.998012 -1.246874 0.394860 0.454585 1.741890 -0.326301 -1.001813 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 0.661118 -21.183907 39.281107 28.596304 -0.803260 16.342525 15.232684 -28.122915 28.878940 13.617614 -8.512862 1.711684 -24.412994 0.249023 -12.423753 11.908202 -23.617828 -18.867693 -6.331799 -18.626063 -8.025303 -24.235032 11.387072 7.036082 14.051783 9.061326 -9.435787 -3.544229 -24.060981 -28.119339 24.570128 -2.875492 12.274304 5.472231 1.998373 -48.287107 28.682430 24.099588 -9.082518 -29.045116 6.554120 -2.861636 -12.932309 5.928817 0.032220 6.845951 -1.408331 24.123507 11.494651 12.423406 11.229837 -2.560228 9.282466 43.957369 -11.656401 26.315837 17.811783 4.713843 2.852145 18.195576 6.065708 7.660952 10.473266 23.544826 0.249828 -9.934409 4.842140 -8.852624 -30.274707 25.206695 -1.964987 -14.945697 -14.961719 -9.537522 -12.555692 0.194293 -26.424608 19.061907 43.223276 -18.350913 30.979543 8.898056 13.046090 -11.199261 8.108154 -5.801324 21.356032 9.965063 -14.282241 -5.829865 -23.064728 -11.667593 4.753114 -4.876138 -16.698923 -29.425947 20.486405 -24.252003 -30.485960 11.821522 9.349216 -8.079438 -14.519197 1.951729 12.814549 4.542921 -14.401027 -28.649288 -14.697683 14.997860 -10.653075 -5.781370 -1.942910 4.027604 -6.614928 -2.272024 -25.750019 -5.533680 6.777592 -17.617299 -9.605058 21.795639 -7.176898 8.311450 0.032644 6.314845 -4.327340 14.792386 2.421047 15.416770 12.653665 7.860674 -18.742396 10.139099 12.678923 12.567459 -0.258067 1.919574 0.329307 11.878785 -11.305526 12.977049 -13.369178 6.060980 17.619927 -9.812417 -18.299886 -9.142576 -1.682449 -33.617577 8.492238 -21.068281 -15.824740 2.352426 21.682839 16.018969 10.337229 25.827035 -30.156721 13.308307 -3.811080 2.742983 3.746288 2.027843 12.693967 -12.036989 -24.977691 5.556381 10.613602 4.505253 4.727365 -11.307798 -5.664949 -22.166790 -14.881612 8.637779 7.065559 -9.660042 13.926301 19.499846 32.054044 -26.703713 5.152765 13.199202 -5.844571 2.109395 0.201983 -37.125095 13.469119 3.430196 13.487974 28.070528 -1.829464 -6.464976 9.611163 -8.832980 4.142198 -18.063781 7.633125 -22.190033 -8.068356 -18.223185 8.388889 -8.857193 -11.701774 -9.359423 -2.682577 28.763009 -17.747036 -21.409785 35.194823 -8.146105 6.701404 -29.738195 27.881569 -11.343552 12.551113 -5.012412 -3.326860 -4.457722 3.597155 -8.366515 -0.312787 6.685906 -10.076855 20.513574 37.911302 5.065212 4.072093 4.834903 22.282352 -13.563636 3.459684 -20.361060 24.150797 -3.781882 -17.633717 -2.011547 -12.867253 7.448271 -16.401090 1.401801 23.970340 22.062313 -0.039058 12.439963 10.008900 13.643015 -13.070437 20.980247 6.958903 11.815402 -12.114721 -2.967692 4.697006 2.152298 -11.993869 17.685930 -32.040238 -32.776271 -23.443826 -32.174297 -8.379598 -14.107078 15.170445 -3.152862 -0.800615 -28.641172 -22.570141 18.491042 -11.242431 10.533836 19.394131 18.236343 19.608197 31.212912 -10.024480 7.409268 -0.944797 9.510470 -13.683038 -14.476053 -10.261481 18.533936 -11.875893 13.078965 23.140242 1.110404 10.977006 -12.178252 20.237995 -22.987510 31.585364 15.543058 -8.338100 16.788124 11.493410 33.603081 6.320233 -15.296337 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(std::vector > const&) = 1.359748 -5.099124 12.611351 9.774068 -0.862319 4.130016 2.627980 -10.276429 9.057106 3.591701 -0.598941 1.277357 -6.807695 3.214908 -5.770503 6.107282 -7.720362 -5.604101 -4.357421 -7.905983 -4.753938 -6.066020 4.186051 0.772697 4.807931 0.926453 -4.975944 -0.909131 -6.834983 -9.038163 6.462446 -0.819018 3.415204 -2.450661 0.731924 -15.635370 9.435408 6.982902 -3.588523 -8.031317 2.766190 -2.531988 -2.900503 0.113349 -0.959488 1.051820 -2.333115 5.477882 5.298723 3.780602 4.556727 3.928438 2.359046 16.305851 -5.798514 7.501348 4.050850 2.142295 -0.776496 5.154034 1.587612 4.120702 2.690420 4.915363 0.827556 -5.698692 -0.368519 -2.421582 -7.480605 8.388780 -1.232431 -5.328965 -5.720249 -3.415312 -5.798140 -1.067022 -10.459254 6.668230 11.931089 -7.822874 5.705891 1.476298 2.060989 -1.193485 3.332730 -1.737322 7.941877 2.927231 -2.496218 -1.472993 -4.226286 -1.319991 1.739185 -2.575081 -5.784009 -13.576711 6.495895 -8.946376 -9.641223 3.880706 4.202565 -2.511817 -5.047930 -1.833925 3.543642 1.064974 -5.146875 -8.487114 -3.617231 4.927899 1.016074 -2.520933 0.982414 -1.897860 -0.481691 -1.054639 -9.553269 -0.316502 1.288077 -3.975324 -4.163198 7.112782 -1.430657 0.238863 -0.097049 3.034797 -2.790912 6.315354 -1.348652 6.592158 0.826435 5.072496 -6.397351 3.804382 4.137177 1.798882 -0.621647 2.215450 -2.818445 3.173473 -5.537542 4.080808 -4.531505 2.205285 5.529878 -2.609813 -6.539618 -1.768305 -0.407487 -10.314406 2.384980 -6.615457 -6.137552 0.386948 6.303724 6.664747 4.578505 7.328581 -7.510957 3.150276 -0.709571 0.528868 4.222052 -1.292211 4.180546 -3.815383 -8.453225 2.724739 2.297158 1.411581 1.213305 -1.893300 -0.942225 -6.806068 -2.736287 1.936551 3.307100 -3.376226 5.631018 6.171625 8.944126 -8.617851 2.710502 4.756645 -3.589345 1.895127 -1.386841 -10.568493 2.752356 2.180173 3.337620 8.782887 -1.079613 -2.259985 3.481781 -2.557317 2.998025 -5.004622 0.971163 -6.525099 -3.646562 -6.197735 2.511217 -2.099688 -1.980255 -2.498246 -3.262430 9.047175 -8.645643 -5.733887 12.507423 -2.601034 1.951116 -9.209298 9.117844 -3.348365 3.917428 -1.244607 0.422349 -1.160355 2.319700 -5.103933 1.849566 3.024098 -3.558428 4.385449 12.524483 1.532873 1.724789 0.250531 7.846333 -4.198551 3.715894 -6.160669 10.240314 -1.650614 -5.465870 -0.425019 -3.563336 -0.035436 -6.300239 2.471380 7.422088 4.854171 1.762313 3.232584 4.384787 6.588305 -4.184975 7.994907 0.178557 1.080907 -4.532311 -0.420503 3.076071 0.766455 -3.987986 4.876158 -9.522462 -9.683146 -10.471950 -8.089030 0.221556 -3.701850 3.017101 -2.990065 -2.210418 -7.814266 -7.760009 7.034026 -3.987807 1.416150 6.456418 5.148869 5.957148 10.875757 -3.746630 3.361707 -1.149824 1.040246 -1.548243 -4.733724 -3.668106 7.043799 -3.160732 2.406143 8.123075 -0.135818 4.623669 -1.111549 4.557376 -5.737098 9.559635 3.684772 -1.412414 6.370622 6.705911 10.369725 2.719508 -4.563157 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base() = -0.105222 -0.438220 0.796903 0.707465 -0.084313 0.273594 0.041874 -0.514671 0.712804 0.267968 -0.095207 0.107504 -0.510343 0.249295 -0.088253 0.491104 -0.613612 -0.454561 -0.130752 -0.387147 -0.352216 -0.500674 0.180577 0.055306 0.243057 0.235412 -0.361775 0.062257 -0.393647 -0.491834 0.410972 -0.237640 0.317156 0.154320 0.131368 -1.240962 0.600634 0.358445 -0.208599 -0.612862 0.049817 -0.361859 0.153106 -0.237594 -0.089470 0.172900 0.017297 0.227013 0.440817 0.165055 0.237417 0.040548 0.101252 0.998821 -0.419714 0.440291 0.200257 -0.024477 -0.140424 0.111593 0.194077 0.150384 0.366110 0.434060 -0.168393 -0.417723 -0.138345 -0.280625 -0.615013 0.539520 -0.107657 -0.104739 -0.558226 -0.254556 -0.351316 -0.226204 -0.905071 0.510906 0.925353 -0.566121 0.486279 0.190540 0.335853 0.045917 0.375682 -0.028832 0.694898 0.185061 -0.389527 0.114306 -0.104812 -0.183370 0.123128 -0.065908 -0.218081 -0.620083 0.242808 -0.518587 -0.647970 0.326778 0.183785 0.103899 -0.511887 -0.128278 0.370887 0.229724 -0.393382 -0.664419 -0.182220 0.146398 0.083153 -0.215900 0.039482 -0.178843 -0.148538 -0.213235 -0.696138 -0.201254 0.083915 -0.404848 -0.152193 0.559280 -0.201133 0.042920 -0.045441 0.104364 -0.167728 0.710786 -0.010942 0.442048 -0.038239 0.126891 -0.635877 0.178068 0.249936 0.305963 -0.058592 0.033235 -0.177957 0.121327 -0.439278 0.048883 -0.125715 0.242609 0.589332 -0.149418 -0.462783 -0.212647 -0.126803 -0.828376 0.224870 -0.511701 -0.077727 0.229157 0.510089 0.478796 0.418948 0.677598 -0.575009 0.270683 -0.206712 0.024169 0.457050 0.212719 0.363819 -0.289411 -0.420939 0.300337 0.242315 0.081175 0.233855 -0.313745 0.012519 -0.440225 -0.133930 0.334710 0.301544 -0.075170 0.441110 0.257506 0.639423 -0.562898 0.243906 0.333554 0.002686 0.137088 -0.050465 -0.664935 0.364351 0.094356 0.055230 0.335016 -0.121830 -0.255179 0.119826 -0.158193 0.267058 -0.418804 0.040317 -0.395172 -0.089711 -0.475349 0.225909 -0.256229 -0.223656 -0.123585 -0.055167 0.671901 -0.469452 -0.320012 0.728411 -0.167291 0.383600 -0.587507 0.594297 -0.356464 0.500122 -0.320283 -0.090587 -0.059945 0.103328 -0.145606 0.064817 0.339189 -0.118024 0.076255 0.668681 0.207847 0.113862 0.136152 0.528503 -0.022499 0.256967 -0.182205 0.618795 -0.049137 -0.047741 0.091157 -0.300912 0.108533 -0.179771 0.091401 0.587489 0.507169 0.130355 0.365861 0.300705 0.344262 -0.345723 0.346696 -0.044284 0.291355 -0.335129 -0.012359 0.047011 0.232869 -0.279950 0.206072 -0.630344 -0.733871 -0.613387 -0.337774 -0.212415 0.080077 0.090277 -0.081517 0.006783 -0.424877 -0.356029 0.548404 -0.309292 0.356043 0.176583 0.258662 0.464288 0.702754 -0.281343 -0.208146 -0.033663 -0.085571 -0.116676 -0.006133 -0.440305 0.507334 -0.430446 0.199478 0.540498 -0.213077 0.087495 0.094172 0.528578 -0.338819 0.737069 0.327843 -0.159286 0.511243 0.505468 0.766133 0.183330 -0.377806 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = -0.133726 -0.648565 1.292002 1.066638 0.247547 0.560502 0.316626 -1.088220 1.415986 0.764499 -0.057084 0.108747 -0.857789 0.421581 -0.748031 0.799218 -0.665770 -0.885339 -0.333380 -0.913242 -0.653158 -0.901739 0.282036 -0.134389 0.427234 -0.424248 -0.642173 -0.025335 -1.200837 -0.909469 0.636400 -0.282476 0.253782 -0.791452 0.046506 -1.650667 1.069498 0.774873 -0.421442 -0.961316 0.143439 -0.752039 0.078453 -0.076046 0.287798 0.092579 -0.145182 0.440120 0.811348 0.288473 0.856300 0.431789 -0.085578 2.187751 -1.074155 0.938543 0.261596 0.272720 -0.203552 0.757223 0.227891 0.382862 0.512356 0.686903 -0.230385 -0.650314 -0.123121 -0.202018 -0.820732 0.975223 -0.182861 -0.499834 -0.800453 -0.239409 -0.796526 -0.393601 -1.814364 0.600879 1.499256 -0.917568 0.780745 0.327567 0.687058 0.132906 0.745671 -0.192160 1.354792 0.224953 -0.665625 -0.166195 -0.593734 0.203054 0.057610 -0.140936 -0.476596 -1.301418 0.568731 -0.923477 -1.260264 0.495301 0.300546 0.074982 -0.799027 -0.012005 0.619385 0.136413 -0.686639 -1.259539 -0.503182 0.535575 0.046231 -0.382073 0.413178 -0.942362 -0.026951 -0.362992 -1.097796 -0.320587 0.150491 -0.606488 -0.871822 1.092311 -0.386232 -0.031911 -0.014142 0.276389 -0.264503 0.735451 -0.227307 0.872164 -0.140403 0.349540 -1.909230 0.469289 0.425225 0.266796 -0.061443 0.656214 -0.360073 0.259406 -0.829986 0.416827 -0.585782 0.452113 0.597156 -0.440002 -0.670258 -0.256002 0.313588 -1.009685 0.417541 -0.725958 -0.648075 -0.479497 0.898693 1.069085 0.695910 1.050813 -0.831222 0.525225 -0.201759 0.120748 0.801426 -0.300738 0.614982 -0.517904 -0.912172 0.302134 0.580037 -0.028849 0.230287 -0.355312 -0.095944 -0.866505 -0.088420 0.079951 0.389197 -0.342610 0.952200 0.570063 1.028152 -1.633606 0.595158 0.590248 -0.212737 0.363809 -0.322296 -1.202926 0.470280 0.374333 0.290426 0.796846 -0.135936 -0.473134 0.179048 -0.275330 0.584179 -0.679936 -0.029663 -0.758506 -0.625201 -0.635687 0.446832 -0.408200 -0.331496 -0.213415 -0.335317 1.036785 -0.739756 -0.695618 1.425147 -0.301629 0.222520 -1.071472 1.140361 -0.584740 0.494859 -0.420792 0.208113 -0.263877 0.989460 -0.475757 0.349341 0.544165 -0.607748 0.709632 1.401551 0.294311 0.551977 0.129508 0.956302 -0.331563 0.198016 -0.553852 1.218077 -0.127487 -0.571480 0.072162 -0.570611 0.266934 -0.357010 0.316489 0.863897 0.870158 0.002301 0.401063 0.721393 0.682121 -0.507854 0.814533 -0.127573 0.219490 -0.539558 0.033196 0.172608 -0.201888 -0.465489 0.396172 -1.154980 -1.003044 -0.850653 -0.722697 0.237744 -0.201664 -0.052040 -0.145287 -0.024345 -1.161170 -0.731492 0.773126 -0.560738 0.112383 0.436006 0.567316 0.665097 1.280686 -0.480795 0.086701 -0.219549 -0.261875 -0.290169 -0.594100 -0.407459 0.918975 -0.676286 0.483365 0.714267 -0.153067 0.266560 0.384744 0.353620 -0.575825 1.169529 0.566075 -0.004527 0.809646 1.006848 1.852868 0.130202 -0.598337 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.092856 -0.320797 0.467611 0.439183 0.052774 0.105791 0.439893 -0.103973 0.657829 0.387545 -0.063785 -0.171587 -0.512098 0.068467 0.476556 0.371669 -0.386365 -0.371919 0.223523 -0.171036 -0.114906 -0.444574 0.181000 -0.203869 0.179924 -0.008188 0.019855 -0.362448 -0.202943 0.165973 0.543842 -0.322370 0.256982 0.562960 0.038604 -0.997866 0.257926 -0.094629 -0.169373 -0.412708 -0.015497 -0.332567 0.438872 -0.217577 0.415155 0.188220 0.314075 0.604091 0.406567 0.187090 0.127314 -0.428043 -0.051371 0.707289 -0.503198 0.171752 0.028188 -0.164672 -0.108264 0.182722 0.109638 -0.153592 0.361629 0.423504 -0.276826 -0.192454 -0.114461 -0.469982 -0.603465 0.278345 0.200924 0.247057 -0.591486 -0.029177 0.184430 -0.260351 -1.639492 0.470329 0.725607 -0.463013 0.542873 0.308784 0.515045 -0.018763 0.239450 0.093220 0.397105 -0.013126 -0.508643 0.079857 -0.568786 -0.427253 0.000698 -0.347754 0.213136 -0.351452 -0.070889 0.520289 -0.375556 0.241808 -0.007954 0.338157 -0.398657 0.143206 0.327843 0.336911 -0.341644 -0.583553 -0.273784 -0.135583 -0.229848 -0.034972 0.056903 -0.279962 -0.351632 -0.575958 -0.422321 -0.321569 -0.022676 -0.428962 -0.192319 0.409904 -0.428397 0.124920 0.094655 -0.026213 -0.098267 0.581167 0.248285 0.204808 0.573396 -0.380440 -1.053243 0.294195 0.305417 0.909062 0.283962 0.142885 -0.152507 0.035322 -0.383730 -0.080763 0.475372 0.348555 0.445049 -0.299154 -0.259609 -0.150866 0.370580 -0.311414 0.488757 -0.371823 0.580404 -0.036825 0.358031 0.400685 0.350977 0.490157 -0.655030 0.419230 -0.410516 0.204758 0.274144 0.767290 0.379974 -0.189315 -0.011101 -0.110194 0.364428 -0.165000 0.181816 -0.397300 0.095142 -0.456365 -0.079461 -0.072811 0.115757 -0.304911 0.222729 0.076767 0.478414 -0.617492 0.120939 0.315989 0.190898 -0.010698 0.168307 -0.452952 0.552343 -0.029133 -0.230512 -0.128423 -0.072380 -0.334532 0.004861 -0.169586 0.049592 -0.102780 -0.211857 -0.220642 -0.328245 -0.285505 0.476100 -0.368168 -0.421538 0.107853 0.451775 0.414833 0.446386 -0.047131 0.227098 -0.485098 0.080642 -0.343483 1.120362 -0.325369 -0.212236 -0.597158 -0.260679 -0.230605 0.542928 0.110941 -0.144180 0.192993 0.032366 0.157635 0.560953 0.254693 0.131844 0.300188 0.429161 0.167036 -0.051167 0.078809 0.307031 -0.184263 0.258507 0.153558 -0.191966 0.401628 0.144846 -0.069964 0.742785 0.486876 -0.060459 0.444337 0.134670 0.091755 -0.199388 0.110221 0.000750 0.560912 -0.158610 0.098628 -0.114383 -0.112153 -0.265891 0.184306 -0.420066 -0.464584 0.421058 0.027507 -0.292402 0.353625 -0.018313 0.116223 0.273245 -0.525217 0.023068 -0.333982 -0.227811 -0.288032 -0.081496 0.035229 0.346795 0.476305 -0.204108 -0.498961 0.129753 -0.107639 -0.218503 0.004995 -0.253434 0.256232 -0.599626 0.228278 0.232804 -0.130455 -0.292845 -0.172207 0.967246 -0.255907 0.546015 0.268150 -0.026046 0.377239 0.566314 0.838247 0.100893 -0.186126 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.010209 -3.796369 6.666341 5.584794 0.244894 3.059861 0.290136 -4.001834 3.133031 2.238819 -1.013074 2.810345 -3.060251 1.392685 -2.663582 2.522374 -3.552939 -3.080802 -1.590487 -2.544733 -1.183038 -2.797149 0.234665 2.505081 2.131095 0.766653 -3.161389 0.491884 -5.414274 -5.690033 1.560310 -0.618357 2.375747 -1.972201 1.055275 -7.222893 4.903604 5.074550 -1.032803 -5.323234 1.366312 -1.880620 -1.395762 -0.253250 -1.234330 1.549639 -0.148957 0.625673 1.751648 1.664399 0.882103 2.073089 2.084883 6.602220 -1.674073 4.219965 3.043258 0.376736 0.554722 0.844465 0.773473 1.358840 1.873005 1.982773 -0.283390 -3.098844 -0.627734 0.087736 -3.252566 3.016239 -0.601758 -1.997147 -2.665427 -1.221396 -4.539723 -0.322565 -0.965486 2.762108 6.117351 -2.591459 4.003156 0.791866 1.638508 0.240414 2.994493 -0.137420 3.581161 2.046436 -1.760007 -0.185586 -2.350785 -0.395625 0.705239 0.696363 -3.546495 -4.760959 2.710772 -6.097013 -4.636991 2.547648 1.041523 -1.806421 -2.467522 -1.685839 1.873981 1.550761 -2.253923 -4.173439 -1.254110 2.942891 0.566541 -2.355779 0.692527 -1.261513 -0.062563 -0.272008 -4.197250 0.212952 1.972071 -2.035278 -1.643000 4.033508 -0.448041 0.861602 -0.906784 1.425978 -1.493229 2.520047 -0.185522 3.179038 -0.648416 1.023246 -3.099223 0.848412 1.446308 0.079884 -2.066917 0.172297 -0.901578 1.792411 -0.869503 2.143379 -2.350759 1.750874 3.014530 -0.754598 -2.616812 -2.450162 -0.944768 -4.605334 0.296012 -2.447415 -3.713094 1.008757 3.605197 1.426750 2.198226 3.738895 -2.774616 1.167473 -0.116788 0.020736 2.429674 -1.922848 1.419714 -2.080318 -4.288607 2.864438 1.875579 1.352120 0.968491 -0.636907 0.187241 -2.051950 -1.105981 2.150031 1.794786 -0.369681 4.355889 2.969442 4.367734 -2.847355 0.688456 1.349618 -2.120558 1.136718 -1.272730 -4.904038 1.301611 1.552584 1.408545 5.456652 -0.700826 -1.967583 2.352871 -0.432371 1.497665 -3.058929 2.279921 -3.492304 -0.778369 -2.661392 -0.517728 -1.128904 -1.327837 -2.810001 -2.010200 5.179401 -4.681315 -3.788784 4.560874 -0.559771 1.371695 -5.753407 2.607898 -2.311315 3.567015 0.594898 0.243602 0.136051 0.711982 -2.871995 0.714490 2.482780 -2.830525 2.528491 4.526233 1.045039 0.024827 0.160438 2.898898 -1.494669 1.260814 -3.230296 3.945415 -0.628563 -1.611509 -0.486895 -1.835417 0.529178 -2.154557 0.661008 1.223873 2.044673 0.900335 0.777240 3.312872 2.383709 -2.010460 2.981355 -0.848333 1.088493 -2.357944 -0.769797 -0.117871 1.475951 -0.140487 2.464204 -5.380267 -4.454947 -6.004903 -4.610544 0.094885 -0.672943 1.203137 -0.284675 -0.778216 -4.908230 -4.055426 4.401311 -1.651560 2.773796 3.539507 2.366853 2.980617 3.778578 -1.241509 0.469113 -1.180677 0.554671 -0.886355 -1.373753 -2.034844 3.532902 -1.993092 1.716646 4.264559 -0.978963 2.498865 0.099148 1.326404 -3.016921 5.780897 2.585457 -2.195749 2.203534 2.609521 4.589814 -0.717718 -2.767444 -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.020347 -0.621611 1.209425 1.105746 -0.211799 0.332774 0.105439 -0.767423 0.768812 0.104632 -0.084130 0.279651 -0.777080 0.408395 -0.284570 0.646259 -0.918754 -0.625629 -0.365894 -0.544051 -0.398464 -0.565866 0.452996 0.247572 0.515229 0.480541 -0.620348 -0.090134 -0.710163 -0.557854 0.628791 -0.218037 0.603002 0.348702 0.057038 -1.739630 0.803245 0.700684 -0.291858 -0.848435 0.308061 -0.485738 0.034937 -0.452957 -0.375681 0.170457 -0.144755 0.153893 0.588557 0.210810 0.202942 0.291003 0.215361 1.242369 -0.534549 0.601381 0.321276 0.003125 -0.226169 -0.030498 0.260477 0.354768 0.497236 0.452327 -0.161869 -0.735868 -0.275649 -0.435799 -0.903124 0.724667 -0.178770 -0.095424 -0.737229 -0.316060 -0.578217 -0.199224 -0.474550 0.771401 1.169587 -0.789072 0.597512 0.058195 0.114895 -0.112852 0.343384 0.001010 0.644864 0.302756 -0.207700 0.017723 -0.246409 -0.162855 0.187738 0.013848 -0.479902 -0.913171 0.524191 -0.790086 -0.918211 0.294580 0.388292 -0.140315 -0.632862 -0.177597 0.272644 0.409333 -0.485853 -0.803656 -0.172922 0.262546 0.381051 -0.380830 -0.113556 -0.029870 -0.240377 -0.401251 -1.009668 -0.073183 0.052710 -0.491530 -0.092825 0.661378 -0.318544 0.020562 -0.094308 0.241225 -0.323586 0.986638 -0.114776 0.564387 0.087801 0.239927 -0.310150 -0.011804 0.385722 0.705427 -0.309000 -0.096320 -0.380732 0.169548 -0.495100 -0.021451 -0.074248 0.243693 0.777387 -0.267973 -0.650737 -0.236948 -0.291586 -1.276107 0.125768 -0.704179 -0.064534 0.594149 0.664420 0.511297 0.572403 1.173838 -0.685239 0.309912 -0.021941 -0.177049 0.685364 0.269267 0.446214 -0.405243 -0.748468 0.538451 0.092151 0.266963 0.186849 -0.061275 -0.014752 -0.629549 -0.299888 0.464171 0.394617 -0.086107 0.609185 0.450402 0.632369 -0.576714 0.320072 0.466290 -0.179926 0.200834 -0.043825 -0.976050 0.400794 0.107367 -0.026587 0.653020 -0.163485 -0.374626 0.345020 -0.243637 0.340016 -0.653603 0.233318 -0.583441 -0.016681 -0.826509 0.048908 -0.133393 -0.305248 -0.263116 -0.201923 1.008023 -0.746710 -0.537168 0.940086 0.000000 0.521284 -1.014210 0.694905 -0.458946 0.779566 -0.263917 -0.137239 0.070769 -0.120842 -0.441707 0.003338 0.455843 -0.189126 0.062712 1.021258 0.267222 -0.070024 0.039986 0.720295 -0.030795 0.654159 -0.363759 0.921657 -0.016917 -0.258480 0.153417 -0.365598 -0.057924 -0.460130 0.125235 0.943789 0.628243 0.454169 0.538205 0.385514 0.737216 -0.488305 0.560451 -0.047874 0.356121 -0.379581 -0.070997 0.200996 0.535187 -0.322978 0.430831 -0.882162 -1.298906 -0.894152 -0.806235 -0.080796 -0.141839 0.283615 -0.251623 -0.165998 -0.619328 -0.675978 0.531472 -0.426000 0.935027 0.413134 0.364923 0.622650 0.907145 -0.554817 -0.030015 0.076249 0.205922 0.032874 -0.051341 -0.670637 0.691931 -0.457242 0.141455 0.979391 -0.305145 0.349412 -0.089296 0.772468 -0.493136 1.160305 0.339230 -0.377892 0.851196 0.518173 0.745839 0.390675 -0.524971 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__introsort_loop >(suffix*, suffix*, long, __gnu_cxx::__ops::_Iter_comp_iter) = 0.147860 -4.469640 8.616589 6.961985 0.491136 3.435257 0.932844 -5.518110 4.567439 3.250948 -1.220165 3.328203 -3.825716 1.930528 -3.193667 3.794777 -4.573346 -3.812360 -2.037178 -3.448236 -1.744593 -3.965251 0.977510 2.451695 2.902288 0.993471 -4.203613 0.650356 -6.255704 -8.424622 2.485150 -0.818873 2.839850 -3.312682 0.884313 -10.737805 6.632200 6.273021 -1.471492 -6.658266 1.870191 -2.197268 -1.932627 -0.290198 -1.002881 1.914994 -0.335859 1.316129 2.354900 2.343524 1.736869 2.852455 2.692641 9.289901 -2.845910 5.261488 4.021730 0.631390 0.248139 1.275908 1.099064 1.887468 2.292517 3.101206 -0.225885 -3.933788 -0.726692 -0.031019 -4.617924 4.015496 -0.826972 -2.838984 -3.857241 -1.566808 -5.272341 -0.158827 -2.094073 3.545918 8.071672 -3.440972 5.278692 0.867955 2.137243 0.135468 3.226848 -0.407260 4.882333 2.566412 -2.412356 -0.923211 -2.729749 -0.806732 0.995032 1.268999 -4.174976 -5.647477 3.410372 -6.804855 -5.733573 2.821155 1.524406 -2.149967 -3.651466 -2.012321 2.449601 1.816731 -2.368266 -5.558567 -2.103062 3.264974 0.621664 -2.922888 0.462644 -1.647557 -0.412088 -0.018824 -5.633512 0.079367 1.997936 -2.572448 -2.713675 4.552269 -0.958263 0.801812 -1.164948 1.861376 -1.719400 3.103098 -0.313701 4.345492 0.193546 1.462773 -4.865584 1.312523 2.142939 0.838979 -2.532724 0.657741 -1.427760 2.033806 -1.506024 2.600846 -2.979690 2.376594 4.293119 -1.085388 -3.538907 -2.840980 -0.804454 -6.166296 1.094542 -3.334891 -3.918045 1.093893 4.475533 1.671610 2.867957 5.037068 -4.621519 2.008095 0.028189 0.238063 3.127234 -2.106999 1.767402 -2.639946 -5.594677 3.479887 2.493089 1.198200 0.972994 -0.635753 0.267717 -2.885720 -1.578324 2.926486 1.835616 -0.745687 4.968233 3.389297 7.562342 -4.494449 1.079882 2.052160 -2.454047 1.312329 -1.457600 -6.188650 2.147865 1.719071 2.587753 6.923590 -0.606278 -2.649652 2.583980 -0.541310 1.727080 -3.611457 3.029102 -4.286336 -1.483960 -3.128716 -0.747215 -1.069006 -1.571256 -2.894577 -1.689317 6.432139 -5.467931 -5.254421 6.322435 -1.437075 1.635691 -7.661696 4.916433 -2.917938 3.759979 0.078522 0.376819 0.156904 1.112619 -3.679927 1.080739 3.008352 -3.200254 3.101785 6.691375 1.287194 0.144631 -0.013211 3.487566 -1.814006 1.856760 -3.728520 5.418422 -0.689321 -2.138229 -0.943258 -2.255944 0.916308 -2.909022 0.598756 2.233081 2.917875 0.872750 1.210016 4.089208 3.544433 -2.763370 4.641459 -0.781387 1.415015 -2.794236 -0.990467 0.277034 1.508431 -0.561376 3.496283 -6.438542 -5.672300 -6.842606 -6.479969 -0.029590 -0.741148 1.935069 -0.878891 -1.004934 -6.403482 -4.966935 5.659211 -1.899719 3.356673 4.288080 2.938198 3.433479 4.678707 -1.683861 0.719370 -1.971156 0.460986 -1.019417 -2.175598 -2.262396 4.511395 -2.721854 1.789636 5.356824 -1.143966 2.939630 -0.143583 1.776220 -3.464239 7.587293 3.030078 -2.189309 2.913225 3.103442 6.375884 -0.938930 -3.458602 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__long std::__lg(long) = -0.388714 -0.887646 0.559691 0.540103 0.125697 0.459569 0.452763 0.070822 0.222892 0.324300 -0.160885 0.359949 -0.624987 -0.340939 0.050345 -0.132923 -0.068852 -0.563584 0.138614 0.016990 0.030929 -0.370239 -0.512510 0.770176 0.117541 -0.061064 -0.081946 -0.134781 -1.079301 -0.028637 -0.103941 -0.045057 0.337590 0.232382 0.348617 -0.425540 0.124149 0.752669 0.036928 -0.715983 -0.096965 -0.279772 0.168148 -0.126160 -0.049559 0.241120 0.444709 -0.007531 -0.135496 0.021531 -0.060101 -0.326641 0.204879 0.530303 0.230217 0.621549 0.728174 0.055216 0.370629 -0.089364 0.204481 -0.340486 0.329589 0.075930 -0.334465 0.054058 -0.196289 -0.091434 -0.284734 -0.011118 0.257085 -0.008429 -0.336612 -0.230145 -0.711259 -0.341899 -0.414437 0.080546 0.815084 -0.496579 0.958289 0.633958 0.672877 0.119029 0.616850 0.073708 0.349125 0.186202 -0.485993 0.504529 -0.818511 -0.163706 -0.187105 0.180999 -0.412052 -0.257616 0.321852 -0.625274 -0.803748 0.546915 -0.241480 -0.014260 -0.174037 0.067492 0.107035 0.323289 -0.480382 -0.609413 -0.371073 0.255944 -0.152042 -0.260649 0.216610 0.204160 0.071076 -0.316725 -0.447828 -0.080669 0.585026 -0.548955 -0.031473 0.652168 -0.244928 0.747106 -0.062558 -0.163307 -0.013177 0.337299 0.546594 -0.017053 -0.090407 -0.557083 -0.864517 -0.311526 -0.036085 0.484205 -0.193340 -0.035034 0.425884 0.281687 0.494610 0.391663 0.152252 0.382272 -0.080276 -0.126207 -0.127952 -0.742164 -0.286642 -0.236892 0.150178 -0.172237 -0.063368 0.135649 0.398804 0.141765 -0.117509 0.558297 0.012230 0.203227 -0.096506 -0.044974 -0.123426 -0.060107 0.219270 -0.217225 -0.424655 0.326479 0.503293 0.370699 0.328844 -0.298511 0.068895 -0.101002 -0.321622 -0.137390 -0.005056 -0.203714 0.800716 0.344999 0.095726 -0.383491 0.012622 -0.277341 0.031500 0.192791 -0.107553 -0.606803 0.334770 0.028732 -0.284601 0.377786 -0.106258 -0.199017 0.477255 -0.171001 0.059436 -0.494821 0.384163 -0.456498 -0.125338 -0.440063 0.302329 -0.443115 -0.357891 -0.436588 -0.050814 0.704703 -0.139573 -0.257239 -0.092203 0.559917 0.264182 -0.511194 0.378429 -0.186954 0.708693 -0.053149 -0.305747 0.130773 0.344829 0.255536 -0.379295 0.353888 -0.559558 0.221087 0.068594 0.030244 0.018322 0.457836 0.232105 -0.048170 -0.252288 -0.406515 0.123055 -0.008382 -0.254780 0.067098 -0.256931 0.594479 0.313319 -0.111565 0.090044 0.439711 -0.086561 -0.031530 0.404955 -0.272424 -0.234497 -0.245527 0.137292 0.666643 -0.417201 0.082174 -0.613337 0.115151 0.152003 0.150785 -0.658521 -0.356541 -0.100278 -0.282480 -0.329410 0.223133 -0.018905 0.407379 0.067203 -0.680912 -0.429651 0.204371 -0.273866 -0.022418 0.266710 0.381370 0.697557 0.246820 0.112241 -0.371074 0.284780 0.115373 -0.337571 0.021230 -0.146265 0.062275 -0.523314 0.513447 0.290240 -0.033160 0.208202 0.014377 0.571906 -0.486760 0.843235 0.431572 -0.742412 0.079150 0.713955 0.693001 -0.509672 -0.369161 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__final_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.716588 -4.020553 8.750951 7.551479 -0.151112 3.346365 -0.136934 -6.115560 5.052656 2.636071 -1.270386 2.991187 -3.941530 2.368990 -3.304152 4.399026 -5.598715 -3.853976 -2.472903 -3.759299 -2.362323 -3.814799 1.546857 2.034245 3.068432 2.317332 -4.415900 1.161450 -5.305412 -8.192027 2.661076 -0.903966 2.955674 -1.228002 1.078326 -9.850963 7.123711 6.118241 -1.709304 -6.330014 1.763333 -2.445364 -2.133015 -0.933907 -1.215874 1.920276 -0.962032 1.832522 2.877681 2.195401 1.542381 2.995829 2.611771 8.449696 -2.774711 5.187304 3.337962 0.652864 -0.129692 1.312801 1.319607 2.574599 2.573209 3.281987 -0.335250 -4.533495 -0.702466 -0.471718 -4.633975 4.844824 -0.895902 -2.809549 -3.956271 -1.926735 -4.814533 -0.139577 -2.613236 4.155152 8.008157 -3.759097 4.342609 0.846223 1.660830 -0.191185 3.273419 -0.736477 5.565454 2.702248 -2.023109 -0.911405 -2.393647 -1.518246 1.573351 0.326570 -4.376565 -6.308061 3.344320 -7.903898 -6.076876 2.522349 2.166925 -2.168326 -3.717299 -1.942329 2.965933 1.456128 -2.227310 -5.259357 -1.197775 3.170654 0.582382 -3.010111 0.050666 -1.247233 -0.465032 0.374643 -6.308735 -0.017346 1.693559 -2.414263 -1.823977 4.626743 -0.466575 0.092652 -1.313679 1.766329 -1.806061 3.618480 -1.153339 4.559246 -0.084543 2.648768 -2.741926 2.021369 2.358591 -0.135230 -2.440100 0.282920 -1.705076 2.102604 -2.704111 2.275527 -3.743155 2.212161 4.483285 -1.087429 -4.057780 -2.421104 -1.647250 -6.729681 0.936578 -3.774474 -4.422828 1.113833 4.802641 2.194346 3.427413 4.955323 -4.827018 1.784177 -0.030716 0.625524 3.778372 -1.518973 2.073513 -2.769552 -5.496227 3.911215 1.950086 1.257171 1.008264 -0.733284 0.099284 -3.311077 -1.954064 3.588144 2.040529 -0.365472 4.965198 3.481704 6.564336 -3.926371 1.664361 2.638937 -2.260129 1.396942 -1.193155 -6.432934 1.950883 1.591472 3.153374 7.073373 -0.751067 -2.457681 2.106021 -0.319485 1.973962 -3.943393 2.461334 -4.357594 -0.838489 -3.469313 0.026138 -1.037582 -1.560830 -2.792408 -2.114682 6.579474 -6.012572 -5.118830 7.220978 -1.811642 2.307062 -7.268277 3.287971 -3.119998 3.975636 0.084920 0.310745 0.260472 -0.530350 -4.189830 1.199094 3.121468 -2.625694 2.602884 6.310792 1.426567 0.223916 -0.193201 3.749473 -1.911792 2.715138 -3.814708 5.973138 -0.498614 -2.001152 -0.868969 -2.448262 0.091671 -3.467198 0.784487 2.805433 3.048559 1.671579 1.736268 3.358034 4.114744 -3.213076 4.867989 -0.608679 0.676982 -2.879006 -1.091523 1.013086 1.597369 -1.195120 3.625830 -6.586362 -6.216755 -7.724340 -6.039935 -0.217175 -1.225952 2.355066 -1.224910 -1.245498 -5.338395 -5.183380 6.360880 -2.054549 3.949703 4.269680 3.039955 3.482490 5.399034 -2.118319 0.931059 -1.835461 0.464711 -0.827509 -2.125004 -2.977681 5.196007 -1.902826 1.790198 5.838275 -1.518627 3.057006 -0.867473 2.505831 -3.386267 7.093288 2.879781 -2.235175 3.257309 3.026093 6.067321 0.089582 -3.726936 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__partial_sort >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.550751 -1.626412 3.264829 2.682992 0.197211 1.222983 0.511352 -2.185531 2.506265 1.183013 -0.229807 0.807271 -1.855675 0.830627 -0.950450 1.669948 -2.060129 -1.884169 -0.634330 -1.663549 -1.098075 -1.809970 0.714738 0.409303 1.059054 0.120254 -1.669897 -0.016455 -2.341663 -2.534774 1.543808 -0.690580 1.286962 -0.705241 0.080277 -5.233357 2.599938 1.917310 -0.811518 -2.366358 0.627740 -1.377530 -0.074799 -0.480016 -0.351975 0.473928 -0.079401 0.532433 1.515002 0.652029 1.069999 0.814646 0.332513 4.235316 -1.818934 1.919974 0.926109 0.030563 -0.554136 0.751700 0.529573 0.681519 1.468567 1.583630 -0.633361 -1.665044 -0.098089 -0.598415 -2.435795 1.928315 -0.175721 -0.755098 -1.552108 -0.433639 -1.785924 -0.646009 -1.002938 1.509825 3.432474 -1.637732 2.076619 0.388416 1.141311 0.084750 1.429975 -0.148059 2.536809 0.736243 -1.318299 -0.458787 -1.289202 -0.189670 0.293924 0.534198 -1.027414 -2.252830 1.151757 -2.078423 -2.514388 1.027497 0.664808 -0.183358 -2.420154 -0.696237 1.468359 0.812480 -1.271239 -2.582658 -1.180612 1.043800 -0.120760 -1.030246 0.255304 -1.234567 -0.487750 -0.777202 -2.486088 -0.499669 0.475290 -1.313885 -1.442078 2.128605 -1.050605 0.133732 -0.228434 0.852401 -0.820290 1.610239 -0.390985 1.638769 0.274652 0.292693 -2.520543 0.027877 0.832865 1.387864 -0.579581 -0.019841 -0.937969 0.628339 -1.448012 0.563509 -0.758466 1.135305 2.162178 -0.634596 -1.525511 -0.783944 0.237062 -2.919491 0.638512 -1.733313 -0.956734 0.381078 1.983931 1.198334 1.531756 2.632192 -1.950390 1.541409 -0.353885 -0.024960 1.779237 -0.336324 1.227083 -1.169053 -2.025256 1.068689 0.976511 0.488666 0.424856 -0.675571 -0.062530 -1.688359 -1.065138 0.776638 0.868040 -0.182656 1.727724 1.190824 3.268320 -2.829743 0.925857 1.210047 -0.522708 0.609408 -0.412137 -2.557148 0.893681 0.701023 0.253519 2.348611 -0.286956 -1.631726 0.575111 -0.225040 0.930597 -1.625008 0.672087 -1.680125 -0.451762 -1.469342 -0.154852 -0.867129 -0.865263 -0.992600 -0.610070 2.605467 -1.843219 -2.338661 2.868597 -0.754475 1.103257 -3.411709 2.162587 -1.409291 1.538895 -0.996687 0.044644 -0.293077 0.937699 -1.252633 0.723550 1.208645 -1.138755 1.282561 3.091051 0.773152 0.716237 0.054707 1.838220 -0.254620 0.822732 -1.180640 2.508813 -0.312144 -0.924846 -0.026448 -1.102105 0.531731 -0.828217 0.473071 1.380568 1.918966 0.281416 1.070281 1.770302 1.538335 -1.220686 1.664414 -0.217119 0.914565 -0.937904 -0.204617 0.246755 0.638395 -0.691342 1.311662 -2.625396 -2.746997 -2.145823 -2.567108 0.021671 0.162260 0.418057 -0.263556 -0.011577 -2.596046 -1.447789 1.804941 -0.981347 1.988940 1.306496 1.209716 1.549372 2.450850 -1.199380 -0.313553 -0.355103 -0.085485 -0.594113 -0.828458 -1.389564 1.950001 -1.403595 1.063331 1.968553 -0.582722 0.656861 0.016737 1.386520 -1.356332 3.117420 1.266940 -0.616653 1.770185 1.293933 3.199170 0.189938 -1.389902 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition_pivot >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.409682 -3.469671 7.016902 6.065351 -0.156005 3.158459 0.178993 -4.604915 3.993240 2.467039 -0.412110 2.382372 -3.273720 1.763390 -1.937512 3.343528 -4.236782 -2.975870 -1.926443 -3.350926 -2.124850 -3.191454 0.596441 1.911135 2.115775 1.704458 -3.500589 0.827299 -4.363665 -6.720354 2.181998 -0.672992 2.666952 -1.438111 0.911800 -10.070737 5.763652 5.015772 -1.248634 -5.165167 1.272153 -2.032137 -1.080156 -0.178711 -1.309469 1.587253 -0.798471 0.694981 2.413931 1.449436 1.345237 2.448347 2.103832 7.784209 -2.365788 4.198399 2.613849 0.240250 -0.476521 0.978127 0.861902 1.876782 2.196952 2.469961 -0.471056 -3.584612 -0.323520 -0.328624 -4.046996 3.614370 -0.356323 -2.653955 -2.847489 -1.531403 -3.998649 -0.774578 -1.678239 3.113660 6.525804 -3.035570 3.897398 0.367549 1.443482 0.357763 3.256056 -0.497256 4.864600 1.938519 -1.996202 -0.232319 -1.386503 -0.692702 1.264660 1.359330 -3.551927 -5.062953 2.461636 -5.260280 -4.940050 2.475250 1.462254 -1.414747 -4.093875 -2.443336 2.483544 1.259915 -2.288914 -4.646572 -1.838430 2.959742 0.284764 -2.479406 0.044713 -1.433147 -0.385917 -0.246769 -4.791301 0.008846 1.478087 -1.916032 -2.296242 4.154323 -0.590667 0.272034 -0.888993 1.740301 -1.790752 2.883428 -0.857013 3.562319 -0.414845 1.440471 -2.985409 0.446539 1.382325 0.740974 -1.879309 -0.886710 -1.534353 1.670196 -1.946676 2.155023 -2.287354 2.114274 4.602454 -0.462572 -2.750003 -1.811627 -0.686906 -5.778958 0.678372 -3.128365 -3.169184 1.194489 3.829381 1.486217 2.546092 4.003086 -3.791594 2.220728 -0.282399 0.123293 3.171915 -0.835543 1.571283 -2.364781 -4.473467 2.739729 1.525535 1.497165 0.707930 -0.801191 -0.043228 -2.182753 -1.682138 2.768975 1.586387 -0.321225 4.049987 3.005255 7.538874 -3.804892 1.238253 1.796773 -2.275856 1.340633 -1.121597 -4.961501 1.120997 1.739605 1.269803 5.974952 -0.912076 -2.360027 1.744989 -0.128239 1.717320 -3.386926 2.480758 -3.614264 -0.507549 -2.871246 -0.913513 -1.411623 -1.266595 -2.728730 -1.683917 5.408643 -5.186493 -4.501256 5.747241 -1.397159 1.776572 -6.473966 3.448662 -2.514922 2.973897 -0.915851 -0.009659 0.038233 0.612837 -3.111252 1.653446 2.506663 -2.738857 2.095685 5.657031 1.144151 0.361082 -0.279329 3.183246 -1.129277 1.742818 -3.328902 5.240146 -0.520225 -1.376385 -0.825960 -2.082870 0.442022 -2.386255 0.713698 1.572618 2.684173 0.831523 0.657265 3.400300 2.750270 -2.274335 3.815795 -0.649611 0.885652 -2.304667 -0.777591 0.474299 1.836966 -0.456686 2.655245 -5.505377 -4.553299 -5.779899 -5.028389 -0.269798 0.601767 1.528481 -0.410088 -0.787190 -4.820397 -3.953760 5.464545 -1.727515 3.683154 3.190839 2.610092 3.084365 4.427761 -1.391664 0.232975 -1.541316 -0.075570 -0.818328 -1.489679 -2.281799 4.178207 -1.910090 1.693611 4.318063 -0.979096 2.552008 -0.363388 2.185234 -2.924985 6.067085 2.429173 -1.621780 2.694631 2.749605 5.360866 -0.222113 -2.889724 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__heap_select >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.767024 -3.618758 6.477102 5.445853 0.666506 2.895802 0.812221 -4.163385 4.391961 2.585748 -0.992329 2.216217 -3.441070 1.206394 -2.124340 2.947911 -3.599034 -3.631807 -1.113415 -2.720270 -1.622665 -3.470769 0.738827 1.606271 2.004585 0.903019 -3.203088 0.496846 -5.172586 -6.106510 2.234187 -0.909514 2.412114 -1.352506 0.529493 -8.660702 5.275232 4.892296 -1.215610 -5.293783 1.147797 -2.303689 -1.106106 -0.266963 -0.255194 1.543828 -0.042090 1.220681 2.061092 1.530999 1.628084 1.606110 1.299754 7.042432 -2.431851 4.270069 2.745283 0.425852 -0.350955 1.326139 1.043225 1.315051 2.601405 3.019427 -1.167038 -2.893945 -0.166324 -0.390003 -4.300431 3.384185 -0.224623 -2.030393 -2.737180 -1.050022 -3.579990 -0.605683 -1.174145 2.563281 6.671843 -2.656890 4.493942 1.006445 2.388331 -0.147117 2.989202 -0.571980 4.660682 1.854111 -2.564921 -1.012123 -3.032902 -0.914687 0.591346 1.244425 -2.866837 -3.628690 2.414531 -4.921396 -4.967407 2.047572 0.980923 -1.045407 -4.057820 -1.028958 2.813758 1.524711 -1.956962 -4.733880 -2.051613 2.533227 -0.597344 -2.369421 0.204723 -1.613538 -0.757736 -0.525583 -4.665072 -0.687735 1.685684 -2.498011 -2.426649 3.959032 -1.449637 0.729012 -0.839172 1.335636 -1.243229 2.392595 -0.374635 3.005944 0.697332 0.523523 -4.194761 0.758675 1.400567 1.448352 -1.849406 0.069932 -0.969758 1.511824 -1.790625 1.690022 -2.491481 2.092689 3.980307 -1.012025 -2.801859 -2.154253 -0.070576 -5.076693 1.096700 -3.065182 -2.542981 0.309181 3.904292 1.586364 2.456258 4.800414 -3.922067 2.516096 -0.223027 0.400321 2.714414 -0.998520 1.833521 -2.300468 -4.295191 2.627024 2.223573 0.845838 0.853675 -1.050444 -0.077169 -2.799620 -2.257260 2.270082 1.276803 -0.145781 3.940069 2.465071 6.270252 -4.557795 1.337636 1.712190 -1.400835 1.193813 -0.969036 -5.140651 1.668044 1.310828 1.866695 5.627574 -0.488741 -2.728410 1.420483 -0.062490 1.483998 -3.296308 2.309940 -3.645467 -0.790244 -2.479809 -0.373599 -1.406926 -1.663689 -2.329265 -1.127430 5.193445 -3.313914 -4.983603 5.093312 -1.566932 1.862844 -6.716007 2.968612 -2.693735 2.898957 -0.931971 0.272905 -0.238342 0.933138 -2.468760 0.988724 2.471126 -2.531892 2.926253 5.333187 1.152046 0.759244 0.267460 2.852674 -1.032095 1.123690 -2.845550 4.454901 -0.428865 -1.760812 -0.500796 -2.142500 1.256443 -1.750067 0.299281 1.961379 3.353251 0.322312 1.426710 3.267804 2.527303 -2.467349 3.394211 -0.234779 1.568016 -1.963858 -0.693295 0.010542 0.953329 -0.709774 2.786464 -5.253273 -4.870891 -4.315999 -5.694098 -0.129389 -0.178379 1.445363 -0.237198 -0.197130 -5.181308 -3.398339 4.182320 -1.603480 4.032534 2.966961 2.653166 2.951747 4.084759 -1.807567 -0.129188 -1.172197 0.044257 -1.549807 -1.945026 -2.010315 3.580814 -2.053771 2.186469 3.823771 -0.923471 1.784550 -0.660516 2.280317 -2.703218 6.014398 2.672415 -1.727910 2.572057 1.931194 6.041599 -0.603607 -2.909288 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.453403 -2.070583 3.374663 2.810555 0.527312 1.819431 0.392427 -1.789860 1.746628 1.514594 -0.453480 1.313983 -1.820991 0.504639 -0.794814 1.114137 -1.449799 -1.611462 -0.596090 -1.152000 -0.293041 -1.758118 -0.152882 1.346790 0.852467 0.269816 -1.385447 0.384602 -3.022547 -3.175751 0.969992 -0.374797 1.307650 -0.856242 0.534728 -4.036550 2.683145 2.618318 -0.364192 -2.773855 0.575029 -1.033433 -0.508334 0.072033 0.093599 1.045497 0.236247 0.159702 0.836980 0.743830 0.403686 0.505715 0.928837 2.977463 -1.165645 2.134524 1.544693 0.028664 0.392296 0.470801 0.096376 0.449541 1.102248 1.307669 -0.647309 -1.303782 0.081080 0.185761 -2.041576 1.298177 -0.232500 -0.887482 -1.338282 -0.557228 -2.098373 -0.133003 -0.637367 1.161973 3.299367 -0.974197 2.537254 0.425891 1.209708 0.280890 1.811937 -0.005935 1.758763 0.906993 -1.525676 -0.143004 -1.633459 -0.353829 0.211632 0.894594 -1.535779 -1.363525 1.112292 -2.210775 -2.138874 1.326329 0.016095 -0.700115 -1.955759 -0.880245 0.990906 0.961687 -1.055885 -2.458967 -0.974559 1.612751 -0.055621 -1.178779 0.412817 -0.965799 -0.401106 -0.650338 -1.905809 -0.185075 1.118411 -1.306478 -1.347563 2.158585 -0.786671 0.697624 -0.366671 0.782104 -0.777691 0.939470 0.139034 1.495230 0.238824 -0.265698 -2.396053 0.040276 0.584238 0.956518 -0.950953 0.074844 -0.378694 0.741078 -0.261526 1.040898 -0.850783 1.007754 1.921732 -0.412783 -0.926418 -1.182057 0.086113 -2.172942 0.407114 -1.173375 -1.345052 0.245775 1.825180 0.326560 0.965966 2.337655 -1.914695 0.940104 -0.277500 -0.039885 1.104558 -0.599316 0.662601 -1.101177 -2.170521 1.261067 1.208363 0.355071 0.604482 -0.586067 0.108172 -0.981047 -0.597890 1.132789 0.550373 -0.293192 2.242686 1.376577 3.013134 -1.752670 0.329770 0.554507 -1.018513 0.629953 -0.629561 -2.368751 0.840401 0.891822 0.432920 2.745452 -0.350363 -1.457437 1.143417 -0.151435 0.699929 -1.547169 1.447420 -1.871885 -0.477744 -1.213546 -0.606212 -0.635921 -1.029359 -1.431702 -0.287489 2.490195 -1.372970 -2.267911 1.939726 -0.415238 0.577803 -3.280226 1.526318 -1.268230 1.419343 0.000959 0.205189 -0.055372 0.998783 -1.074131 0.170266 1.247194 -1.539461 1.717662 2.454026 0.528786 0.014477 0.262957 1.300195 -0.489744 -0.021751 -1.618271 1.753363 -0.340599 -0.480811 -0.225214 -1.019866 0.897285 -0.807405 -0.051502 0.219719 1.540193 -0.039321 0.253496 1.923185 0.735344 -0.686565 1.403614 -0.404339 0.856083 -1.026838 -0.314682 -0.388128 0.742437 0.241813 1.406647 -2.731322 -2.098171 -1.771695 -2.655110 -0.060892 0.368895 0.435799 0.397343 -0.022197 -2.928053 -1.718321 1.932877 -0.746519 1.676745 1.483516 1.275466 1.346656 1.727152 -0.559416 -0.289250 -0.522906 0.202254 -0.856605 -0.617793 -0.737811 1.616573 -1.261476 1.015614 1.744302 -0.452900 0.985207 -0.238773 0.868730 -1.650907 3.156283 1.501458 -0.939935 1.122001 1.105358 2.932628 -0.685365 -1.242705 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__make_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.431975 -6.900606 9.525098 8.291317 0.876611 5.221726 1.680680 -4.574703 4.405015 4.339602 -1.838478 4.887949 -4.976770 1.050864 -3.443464 3.268846 -4.190950 -4.803768 -1.489635 -2.675802 -0.995615 -4.399304 -0.797752 4.713136 3.037338 1.258424 -4.003801 0.331495 -9.256697 -9.123427 1.189573 -0.595682 3.498652 -3.612847 1.795269 -9.894384 6.845458 8.808887 -1.038057 -9.378080 1.914013 -2.550889 -2.190460 0.599540 -0.991316 2.910696 0.581182 1.693580 1.438764 2.729811 0.347036 2.468745 3.972083 9.804461 -1.257194 7.015049 6.493067 1.218254 1.361151 1.116632 1.357379 1.204187 2.443277 2.908415 -0.628087 -3.598474 -1.235196 0.626177 -4.523445 3.479026 -0.243662 -3.315171 -3.883227 -1.714880 -6.743331 -0.259552 -1.902552 3.602786 9.474887 -3.942715 7.408444 1.751585 3.459087 0.399326 4.765722 -0.304460 4.496638 3.272454 -3.210511 -0.290608 -4.679619 -1.000776 0.714279 1.149430 -5.867928 -6.657058 4.146146 -8.210913 -7.413924 4.211846 0.654417 -2.929265 -2.713147 -1.997976 2.756477 2.823000 -3.377011 -6.396883 -2.654321 4.918392 0.091903 -3.870879 1.087029 -0.928628 0.052244 -0.143765 -5.918649 0.333319 4.119279 -3.582745 -2.387879 5.963692 -0.667589 2.880008 -1.464745 1.542146 -1.555872 2.951839 1.304738 4.218913 -0.003846 0.383984 -5.266119 1.725720 1.624833 0.209270 -3.644972 0.618687 0.014636 3.036569 0.775441 3.885050 -3.583694 2.808184 3.747283 -1.104948 -3.245672 -4.792571 -1.401348 -5.558476 0.879373 -3.438081 -5.082329 1.054231 5.354951 0.936769 2.157107 5.645912 -4.656050 1.978290 0.325065 0.578197 2.323427 -2.202179 1.507759 -3.183403 -6.656354 4.181623 3.747076 2.000411 1.096835 -0.837997 0.440927 -2.428068 -1.817073 3.168698 1.901864 -1.208697 7.265743 4.446208 7.056173 -3.788399 0.191093 0.781236 -3.583570 1.786872 -2.202900 -7.797101 2.186392 2.236021 3.093915 8.788443 -1.023507 -2.790230 4.294350 -0.500158 1.605169 -4.624322 4.949402 -5.822607 -1.877813 -3.449752 -0.498857 -1.837105 -2.266892 -4.763459 -2.034253 8.061081 -5.874516 -5.793990 5.092575 -0.681673 1.364718 -8.774753 4.786431 -3.323838 4.662618 1.303056 0.128650 0.579609 1.434319 -3.460576 -0.024490 3.903780 -4.994450 4.442787 6.009214 1.123159 -0.551657 1.070628 3.552737 -2.404855 0.552344 -5.401483 5.066032 -1.015393 -2.656951 -1.123001 -2.811265 2.199179 -2.450675 0.120600 1.344272 2.895894 0.398652 0.447616 4.919177 2.410764 -3.060488 4.264006 -1.013940 2.752808 -3.767990 -1.013947 -1.716772 1.652782 0.773759 4.159286 -8.325861 -5.619934 -7.625915 -7.413133 -0.454017 -0.785612 2.400741 0.114968 -0.820671 -8.465956 -6.540229 6.234614 -2.207999 3.083566 5.547062 3.967336 4.941216 4.646907 -0.761773 0.555219 -1.904238 0.825474 -2.150992 -2.522681 -1.465388 4.133804 -3.105612 2.899825 5.671828 -0.726127 3.879827 -0.992755 1.904700 -4.689876 8.924209 4.430815 -3.954999 2.178178 4.249299 7.490027 -2.813190 -4.431438 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(suffix*, suffix*) = 0.810317 -2.059359 4.734496 3.815156 -0.455497 1.193063 0.080147 -2.935641 2.022495 1.012691 -0.920825 2.006392 -1.562174 1.272395 -2.977606 2.397380 -2.955963 -1.860755 -1.433833 -1.981693 -1.343286 -1.126576 0.794013 0.950043 1.988898 0.829721 -2.311192 0.024440 -2.626291 -4.030211 0.517084 -0.290952 1.101464 -1.947741 0.383721 -4.308260 3.158502 3.209418 -1.134515 -3.245335 1.355383 -1.111736 -1.392395 -0.573456 -1.284074 0.374767 -0.550702 1.028422 1.076139 1.441520 0.746469 2.330066 1.920520 5.510906 -0.789373 2.656438 2.401170 0.781478 -0.064132 0.705052 1.082358 1.179231 0.645027 0.848797 0.823594 -2.462391 -1.165128 -0.344599 -1.230311 2.209654 -0.936002 -1.702929 -1.800445 -1.136609 -3.071273 -0.090885 -2.460654 2.376725 3.648658 -2.868182 1.698492 0.418378 0.469246 0.117063 1.051749 -0.140840 2.097852 1.586596 -0.039982 -0.498214 -0.242395 -0.183624 1.015669 -0.780366 -2.683060 -5.097180 2.662231 -5.009424 -3.345665 1.475105 1.641336 -1.611279 -0.198053 -1.006678 0.730653 0.815333 -1.485223 -2.031098 -0.372964 1.509605 1.213756 -1.468430 0.339887 -0.210472 0.501412 0.822687 -3.527537 0.862403 0.965570 -0.864432 -0.435501 2.164866 0.677486 0.132291 -0.738705 0.877519 -0.809409 2.252274 -0.494911 2.421087 -1.037120 2.598017 -1.035520 1.781716 1.555876 -1.392608 -1.659291 1.020912 -0.638190 1.288675 -0.896407 1.311720 -2.413605 1.078171 1.292787 -0.710452 -2.466214 -1.732468 -1.652076 -3.117353 0.042423 -1.780531 -3.118978 0.961675 2.255442 1.681768 1.531778 2.175645 -1.766986 0.165228 0.507953 0.021204 1.607404 -1.798955 1.032189 -1.330211 -2.953012 1.997032 0.960779 1.038886 0.284868 0.283535 0.248730 -1.762916 -0.345643 1.725066 1.612139 -0.613125 2.662333 2.154096 2.045004 -1.563970 0.440752 1.065567 -1.629916 0.493330 -0.842449 -3.464569 0.657150 0.831689 2.039385 3.367325 -0.136686 -0.446836 1.539322 -0.718405 0.864765 -1.659805 0.962503 -2.030270 -0.961400 -1.543415 0.579225 -0.356045 -0.179569 -1.525652 -2.159215 3.431964 -4.680754 -1.698357 3.468290 -0.266638 0.732779 -3.055215 2.233781 -1.314645 2.648785 0.886359 0.187384 0.368607 -0.508732 -2.542387 0.538055 1.596267 -1.378848 0.869739 3.064580 0.692695 0.089308 -0.215171 2.199235 -1.769884 2.006034 -1.995013 2.952538 -0.425949 -2.063525 -0.441651 -0.953052 -0.627525 -1.957070 1.097080 1.887389 0.451773 1.342376 0.886881 1.601910 2.696415 -1.910709 2.632487 -0.527975 0.486338 -1.818412 -0.608484 0.565799 0.806438 -0.625389 1.512867 -3.409060 -2.957025 -5.817904 -2.451950 0.372746 -1.916344 1.172407 -1.566875 -1.208852 -2.513393 -3.368937 3.524587 -1.205488 0.387014 2.812760 1.463922 2.079177 2.595619 -0.739645 1.348288 -0.999168 0.585684 0.291310 -1.285436 -1.333204 2.334068 -0.979388 0.384891 3.288527 -0.553469 2.112441 0.668101 0.117103 -1.632546 3.314642 1.248182 -1.633029 1.470416 2.555293 2.372092 -0.138482 -2.064249 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__pop_heap >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 0.521786 -4.502561 8.117062 6.623410 -0.227663 3.294159 0.714745 -4.872393 4.202855 1.818271 -1.208017 3.382808 -3.751713 1.931419 -4.698227 3.074173 -4.693569 -3.864830 -2.263187 -3.358053 -2.062228 -3.202165 0.462087 2.717037 2.855056 1.123853 -3.885095 0.271432 -6.595185 -6.005639 1.968788 -0.595998 2.338286 -3.299348 1.195600 -8.797984 5.618691 6.148901 -1.517784 -6.465146 1.825483 -2.635444 -1.751967 -0.945369 -1.538733 1.003794 -0.589094 2.005775 2.131460 1.730737 0.732007 3.288285 2.204416 9.817134 -2.219418 5.140739 4.180800 1.307091 0.320376 1.321181 1.291411 1.817922 1.682444 2.112010 -0.023717 -3.834062 -1.196913 -0.456581 -3.160518 3.871196 -0.629512 -2.536361 -3.420317 -1.572181 -6.131238 -0.489173 -3.162999 3.802949 7.364820 -4.404183 4.349670 0.906443 2.144829 0.624786 3.269604 -0.245082 4.416105 2.499816 -1.653754 -0.510727 -3.140588 0.359552 0.960580 -0.618954 -4.576927 -8.149886 3.926810 -8.217297 -6.140144 2.846202 1.745256 -2.383370 -1.511201 -1.744479 2.017937 1.547242 -3.099723 -4.863954 -1.509254 3.547239 1.168531 -2.660214 1.523848 -1.121849 0.634268 -0.583433 -5.663220 0.706136 2.283181 -2.188830 -1.605995 4.904458 -0.361265 0.929145 -1.037501 1.510896 -1.633560 3.471362 -0.299101 3.609686 -1.360895 2.297225 -3.412130 1.773972 1.911694 0.180076 -2.745503 1.045797 -0.925940 2.334358 -1.157216 2.149455 -3.422625 1.742413 2.149150 -1.457134 -3.474100 -3.149133 -1.542582 -5.389092 0.272242 -3.014040 -5.207557 1.006242 4.330971 2.918379 2.551472 4.434908 -3.336486 1.356859 0.398692 0.106929 2.894870 -2.375759 1.821646 -2.546125 -5.467863 3.311286 1.751786 1.939937 0.679615 -0.354518 0.158678 -2.932696 -0.946935 2.149667 2.566062 -0.994872 5.514317 3.879917 3.777977 -4.225929 1.007252 1.648454 -2.922924 1.388150 -1.621863 -6.150848 1.587775 1.914526 2.238495 6.384272 -0.716115 -1.893511 3.031708 -0.769791 1.966071 -3.585351 2.070334 -4.140401 -2.090385 -3.387193 0.748172 -1.293992 -1.086271 -3.536082 -3.401281 6.344092 -7.071155 -4.039804 5.812031 -0.143575 1.836962 -6.405311 3.564959 -2.583634 4.632240 1.198440 0.570920 0.443930 0.705940 -3.895868 0.909264 3.010144 -3.557470 2.667208 5.534455 1.228274 0.427719 0.207028 3.880073 -2.443767 2.047858 -4.104097 4.968392 -0.793764 -3.400081 -0.359135 -2.199450 0.304638 -2.778241 1.642302 2.732328 2.236470 2.000622 1.417886 3.824007 3.465625 -2.747787 3.615577 -1.145919 1.052205 -3.151576 -0.791454 0.090507 1.492517 -0.526269 2.889416 -6.578569 -5.802945 -8.380162 -5.279492 0.785912 -2.434783 1.301716 -1.176417 -1.373203 -6.019022 -5.445278 5.179472 -2.258481 2.282283 4.648369 2.909065 3.887614 4.880558 -1.861908 1.378268 -0.667190 0.979603 -0.576243 -1.956621 -2.674923 4.273898 -2.509323 1.737801 5.687302 -1.076352 3.421663 0.413712 1.472644 -3.479085 6.973969 2.972315 -3.145707 2.505732 4.244608 5.849789 -0.051523 -3.591162 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference::type&& std::move(suffix&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -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.413837 -9.722952 12.378796 10.710083 0.657689 6.802282 3.244189 -6.174479 7.999926 5.874337 -2.331789 6.399229 -6.372603 0.389837 -3.185545 4.309814 -6.164364 -7.301515 -1.108472 -4.216159 -2.931538 -6.974765 -2.238792 6.212286 3.366377 0.792522 -5.288760 0.169474 -11.575030 -11.285021 1.860055 -0.971246 4.478279 -5.324091 3.310395 -18.333570 8.812836 11.077716 -1.563252 -13.280639 1.294192 -4.056582 -1.461556 0.856610 -2.312077 3.198904 1.261163 3.369628 1.847646 3.123973 1.401494 2.966615 4.354871 17.065449 -1.239373 9.884625 8.917382 1.488265 0.584943 2.060833 3.079309 0.703066 4.444935 4.698281 -1.557577 -4.175497 -1.877325 0.136779 -7.192115 5.086020 1.096523 -5.760295 -5.673364 -2.819945 -9.324339 -2.327013 -4.760744 5.230842 13.854401 -7.069362 11.011325 3.974782 7.189449 1.030573 7.360862 -1.220166 9.405012 4.065858 -5.680568 0.431766 -7.210894 -2.395049 0.925883 0.474544 -7.399377 -10.303147 5.182107 -11.218602 -11.526104 6.491570 1.201837 -2.479293 -5.366760 -2.846160 5.886070 3.547137 -5.134751 -9.777195 -6.041703 6.520697 -1.911243 -5.165567 1.430036 -1.071778 0.736041 -0.745795 -9.105534 -0.250538 6.484277 -4.808821 -3.671608 8.961599 -2.502158 4.275237 -1.960436 1.192887 -1.456288 5.070043 1.933699 4.760714 -0.092237 -0.752682 -9.951792 2.551812 0.979466 1.212233 -3.703134 -0.148982 1.049944 4.590858 0.293611 5.899563 -4.197472 4.832618 5.562454 -0.691353 -5.261474 -7.540067 -1.992044 -8.261252 2.385493 -5.258753 -5.771551 1.867512 7.675808 3.414098 2.639453 6.796957 -6.507948 4.928510 -0.217758 1.400923 3.131540 -2.201770 2.958296 -4.550040 -8.628856 5.410332 5.938237 3.978369 1.802722 -2.479918 0.236061 -3.610949 -4.608521 3.161695 3.290297 -0.177773 9.654487 5.920259 12.155729 -8.155625 0.659697 0.571194 -3.445172 2.554642 -3.194753 -10.619239 3.155309 2.680157 3.816504 11.878643 -1.613600 -3.806689 4.520925 -0.098289 2.391004 -6.570322 5.752314 -7.852032 -2.882380 -4.408118 0.181589 -4.780319 -2.647492 -7.019299 -3.460182 11.666494 -8.328526 -9.299267 8.464664 -3.125448 3.663205 -12.437074 8.608242 -4.516277 7.006895 -1.422200 -0.732696 -0.138030 2.263784 -3.628635 1.398671 5.369771 -7.079226 4.891197 9.083044 1.424192 1.092416 1.888319 5.004811 -2.915468 0.945000 -6.980072 8.093743 -1.536347 -3.832089 -1.512947 -4.140098 4.661704 -1.574884 0.650048 2.950079 5.530203 0.053477 1.003329 7.606055 2.265955 -5.433969 5.361967 -0.487617 4.416290 -5.449442 -1.047575 -2.668212 1.634368 0.126093 4.248643 -11.315112 -7.193637 -11.515888 -9.764516 -1.513143 -0.356776 2.736007 0.158702 -0.851101 -11.699478 -8.131042 8.870020 -3.215490 3.434764 6.896010 5.863841 8.488649 7.426386 -1.169370 -0.183478 -1.955518 -0.984985 -3.912455 -3.912909 -2.929895 5.798425 -5.320736 5.764498 7.315932 -0.428160 4.829064 -0.072490 4.093343 -5.944285 12.365380 6.112103 -5.903606 2.231317 6.766639 11.426983 -4.732335 -6.801575 -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.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -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.109863 -0.520881 1.031658 0.953835 -0.101503 0.320326 0.150940 -0.649509 0.840841 0.346129 -0.002910 0.115539 -0.628969 0.299147 0.117886 0.617249 -0.755395 -0.533307 -0.217442 -0.560718 -0.430030 -0.546712 0.245055 0.042200 0.346790 0.201833 -0.461563 -0.103916 -0.485062 -0.441997 0.620261 -0.238213 0.488987 0.289352 0.136659 -1.843931 0.726691 0.436590 -0.275256 -0.745060 0.111748 -0.431480 0.203225 -0.290500 -0.113088 0.194321 -0.031076 0.229426 0.554074 0.212367 0.271070 0.119419 0.102403 1.320024 -0.553302 0.510823 0.228415 -0.105030 -0.223046 0.149331 0.221212 0.215933 0.505405 0.449330 -0.182238 -0.603700 -0.159834 -0.414797 -0.844176 0.633400 0.034495 -0.178772 -0.658293 -0.315848 -0.337437 -0.325854 -1.023784 0.684268 1.068819 -0.733467 0.588654 0.190124 0.326495 0.047668 0.464751 -0.011100 0.823162 0.198424 -0.378647 0.125340 -0.292365 -0.335700 0.174879 -0.068508 -0.286745 -0.781296 0.298632 -0.313778 -0.773177 0.413232 0.292647 0.096551 -0.830413 -0.246240 0.406965 0.338615 -0.461573 -0.788884 -0.359530 0.221455 0.085253 -0.293905 -0.054830 -0.255439 -0.249349 -0.416962 -0.861743 -0.143906 0.099054 -0.405409 -0.305979 0.689340 -0.396971 -0.023044 -0.064657 0.171984 -0.317799 0.853929 -0.060856 0.527257 0.184368 0.021781 -0.850057 0.096258 0.330258 0.701645 0.012238 -0.084032 -0.341882 0.165549 -0.558501 0.145887 0.097396 0.398249 0.819932 -0.165887 -0.553963 -0.251997 0.002097 -0.993332 0.289173 -0.627623 0.096937 0.357028 0.614104 0.593665 0.519767 0.830157 -0.722369 0.458885 -0.273502 0.007909 0.593298 0.384757 0.439444 -0.361613 -0.500866 0.287456 0.257817 0.139220 0.259792 -0.296254 0.024653 -0.542911 -0.294906 0.263873 0.313537 -0.142451 0.496846 0.393277 1.016248 -0.793030 0.282809 0.414798 -0.088945 0.157824 -0.026730 -0.780553 0.366240 0.133465 -0.140117 0.519660 -0.176320 -0.412461 0.130301 -0.176268 0.267284 -0.432572 0.082821 -0.477095 -0.125396 -0.597021 0.143990 -0.370851 -0.313778 -0.189938 -0.035729 0.875072 -0.435029 -0.504019 0.892914 -0.326137 0.353205 -0.874803 0.970491 -0.423557 0.408228 -0.550945 -0.200249 -0.132618 0.253288 -0.310090 0.144801 0.393794 -0.218118 0.064717 1.020974 0.264487 0.107575 0.072370 0.656946 0.003900 0.384097 -0.281577 0.886311 -0.135450 -0.001222 0.055780 -0.338481 0.160644 -0.259945 0.084495 0.730815 0.597877 0.211215 0.371379 0.421165 0.456296 -0.415479 0.489168 -0.004762 0.361668 -0.342734 0.011278 0.126298 0.279282 -0.309167 0.287101 -0.771781 -0.862959 -0.529957 -0.473626 -0.188010 0.283388 0.101806 -0.089705 -0.047276 -0.627500 -0.438492 0.404864 -0.377735 0.418784 0.239618 0.304944 0.584697 0.873415 -0.391340 -0.229345 -0.007987 -0.108646 -0.099488 -0.103184 -0.544340 0.684673 -0.498067 0.238192 0.703325 -0.192714 0.183173 0.002486 0.841581 -0.414554 0.975128 0.328993 -0.198139 0.636707 0.671866 0.949688 0.171242 -0.432057 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__push_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_val&) = -0.563966 -3.935105 6.029376 5.210493 0.103530 2.906348 1.135869 -3.111507 4.048254 2.402699 -1.110693 2.498803 -2.980107 0.806859 -1.834503 2.550106 -3.520636 -3.331980 -0.849191 -2.314628 -1.896780 -3.199678 -0.350986 1.987536 1.927860 1.181514 -2.770163 0.354025 -4.827027 -5.333581 1.436477 -0.521163 1.918726 -1.891375 1.389427 -8.780743 4.349267 4.760717 -0.961310 -5.847036 0.787615 -1.973999 -0.842658 -0.140114 -0.408228 1.636387 0.340186 2.190949 1.487659 1.415023 0.652807 1.485059 1.666160 8.123005 -1.380143 4.434983 3.877729 0.697521 0.081321 1.257985 1.316776 0.690519 1.671390 2.480483 -0.654383 -2.321244 -0.745860 -0.490776 -3.025651 3.084801 0.261207 -2.562595 -2.983820 -1.379935 -4.141119 -0.821619 -3.584547 2.947022 6.443272 -3.514739 4.606467 1.488501 3.169302 0.259047 2.995744 -0.749394 4.654508 1.814002 -2.431668 -0.252283 -3.079814 -1.348505 0.550725 0.154242 -3.175052 -5.140494 2.350739 -5.414910 -5.192328 2.421909 0.939673 -1.036994 -2.655528 -0.952302 2.780304 1.343571 -2.044500 -4.393772 -2.505890 2.708649 -0.719654 -2.089754 0.699050 -0.698588 0.051964 -0.209386 -4.578405 -0.138852 2.348727 -2.064085 -1.841362 3.931099 -0.880336 1.295079 -0.805487 0.760385 -0.796974 2.761146 0.503859 2.528370 -0.015430 0.570942 -4.637049 1.520900 1.099695 0.831987 -1.861794 0.203514 -0.151926 1.854271 -0.978558 2.035581 -2.516735 2.280898 2.805908 -0.834689 -2.956863 -2.911160 -0.704174 -4.135546 1.201237 -2.708246 -2.801308 0.569176 3.515956 2.111979 1.697920 3.500444 -3.610453 2.423919 -0.138016 0.814147 1.882643 -0.703008 1.367185 -2.210462 -3.832637 2.352948 2.141924 1.444817 0.711202 -1.125579 0.081809 -2.213423 -1.944932 2.243310 1.603867 -0.243818 4.174172 2.709995 5.672226 -4.723665 0.618235 1.004324 -1.766429 0.932245 -1.011936 -4.935382 1.875323 1.188709 2.235052 5.340602 -0.614311 -1.651644 1.861840 -0.101576 1.307351 -2.883828 2.206064 -3.453719 -1.445460 -2.201828 0.532420 -1.824911 -1.054027 -2.646842 -1.613351 5.117941 -4.098786 -4.323162 4.622869 -1.641616 1.851031 -5.751379 3.696683 -2.152949 2.675333 -0.788400 -0.044531 -0.083688 0.808235 -1.984830 0.874026 2.315561 -3.001128 1.972414 4.520086 0.822849 0.595871 0.686702 2.702621 -1.382501 0.927198 -2.839636 3.982539 -0.602466 -1.767449 -0.736231 -1.811556 1.516107 -1.119217 0.589461 1.954098 2.480078 0.562129 0.941252 3.245005 1.818661 -2.586968 2.756879 -0.396006 1.804620 -2.555822 -0.697148 -0.549808 0.663587 -0.512811 2.010963 -5.178977 -3.967377 -5.285972 -4.850831 -0.760847 -0.586959 1.369269 -0.310501 -0.609758 -5.110622 -3.725277 4.413461 -1.493827 1.637758 2.933852 2.412669 3.734014 3.828946 -1.051567 0.141249 -1.099582 -0.214413 -1.395888 -1.762440 -1.850511 3.199138 -2.354797 2.156685 3.856889 -0.601095 2.181389 -0.080267 2.228647 -2.716390 5.638720 2.598590 -2.470879 1.420612 3.181980 5.754253 -1.048561 -3.110046 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference::type&& std::move(int (*&)(suffix, suffix)) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(suffix*, suffix&) = 0.810317 -2.059359 4.734496 3.815156 -0.455497 1.193063 0.080147 -2.935641 2.022495 1.012691 -0.920825 2.006392 -1.562174 1.272395 -2.977606 2.397380 -2.955963 -1.860755 -1.433833 -1.981693 -1.343286 -1.126576 0.794013 0.950043 1.988898 0.829721 -2.311192 0.024440 -2.626291 -4.030211 0.517084 -0.290952 1.101464 -1.947741 0.383721 -4.308260 3.158502 3.209418 -1.134515 -3.245335 1.355383 -1.111736 -1.392395 -0.573456 -1.284074 0.374767 -0.550702 1.028422 1.076139 1.441520 0.746469 2.330066 1.920520 5.510906 -0.789373 2.656438 2.401170 0.781478 -0.064132 0.705052 1.082358 1.179231 0.645027 0.848797 0.823594 -2.462391 -1.165128 -0.344599 -1.230311 2.209654 -0.936002 -1.702929 -1.800445 -1.136609 -3.071273 -0.090885 -2.460654 2.376725 3.648658 -2.868182 1.698492 0.418378 0.469246 0.117063 1.051749 -0.140840 2.097852 1.586596 -0.039982 -0.498214 -0.242395 -0.183624 1.015669 -0.780366 -2.683060 -5.097180 2.662231 -5.009424 -3.345665 1.475105 1.641336 -1.611279 -0.198053 -1.006678 0.730653 0.815333 -1.485223 -2.031098 -0.372964 1.509605 1.213756 -1.468430 0.339887 -0.210472 0.501412 0.822687 -3.527537 0.862403 0.965570 -0.864432 -0.435501 2.164866 0.677486 0.132291 -0.738705 0.877519 -0.809409 2.252274 -0.494911 2.421087 -1.037120 2.598017 -1.035520 1.781716 1.555876 -1.392608 -1.659291 1.020912 -0.638190 1.288675 -0.896407 1.311720 -2.413605 1.078171 1.292787 -0.710452 -2.466214 -1.732468 -1.652076 -3.117353 0.042423 -1.780531 -3.118978 0.961675 2.255442 1.681768 1.531778 2.175645 -1.766986 0.165228 0.507953 0.021204 1.607404 -1.798955 1.032189 -1.330211 -2.953012 1.997032 0.960779 1.038886 0.284868 0.283535 0.248730 -1.762916 -0.345643 1.725066 1.612139 -0.613125 2.662333 2.154096 2.045004 -1.563970 0.440752 1.065567 -1.629916 0.493330 -0.842449 -3.464569 0.657150 0.831689 2.039385 3.367325 -0.136686 -0.446836 1.539322 -0.718405 0.864765 -1.659805 0.962503 -2.030270 -0.961400 -1.543415 0.579225 -0.356045 -0.179569 -1.525652 -2.159215 3.431964 -4.680754 -1.698357 3.468290 -0.266638 0.732779 -3.055215 2.233781 -1.314645 2.648785 0.886359 0.187384 0.368607 -0.508732 -2.542387 0.538055 1.596267 -1.378848 0.869739 3.064580 0.692695 0.089308 -0.215171 2.199235 -1.769884 2.006034 -1.995013 2.952538 -0.425949 -2.063525 -0.441651 -0.953052 -0.627525 -1.957070 1.097080 1.887389 0.451773 1.342376 0.886881 1.601910 2.696415 -1.910709 2.632487 -0.527975 0.486338 -1.818412 -0.608484 0.565799 0.806438 -0.625389 1.512867 -3.409060 -2.957025 -5.817904 -2.451950 0.372746 -1.916344 1.172407 -1.566875 -1.208852 -2.513393 -3.368937 3.524587 -1.205488 0.387014 2.812760 1.463922 2.079177 2.595619 -0.739645 1.348288 -0.999168 0.585684 0.291310 -1.285436 -1.333204 2.334068 -0.979388 0.384891 3.288527 -0.553469 2.112441 0.668101 0.117103 -1.632546 3.314642 1.248182 -1.633029 1.470416 2.555293 2.372092 -0.138482 -2.064249 -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.107247 -5.896217 10.736508 8.856075 0.528700 4.657892 0.301453 -7.540453 8.045424 3.248636 -1.957354 3.620492 -5.893318 2.302350 -4.439976 4.910182 -6.965154 -6.682250 -1.835633 -4.870046 -3.936867 -5.871629 1.702394 2.335054 3.317766 2.910114 -5.696123 1.605763 -8.461803 -10.309277 4.153229 -1.881341 4.229688 -1.309832 0.727536 -15.547641 8.877918 7.982507 -2.382649 -8.908049 1.761628 -4.456002 -1.894576 -1.121170 -1.536372 2.249687 -0.266857 2.158241 3.847794 2.136908 2.965426 2.864411 1.077422 12.155945 -3.945908 7.333245 4.245112 0.643305 -1.788371 2.082136 2.275180 2.408093 5.212248 5.492727 -2.754184 -5.209526 0.154078 -1.342935 -7.761339 6.475310 -0.206324 -3.587512 -4.102182 -2.062285 -6.013914 -1.458101 1.041883 4.057343 11.590480 -4.418885 7.284468 1.702061 3.922612 -0.548223 5.109712 -1.408100 9.306762 3.278376 -4.260406 -2.147152 -4.668228 -1.091917 0.878198 3.129813 -4.682800 -6.085051 4.257434 -10.096039 -8.953772 2.940112 2.137259 -1.385510 -7.831991 -1.324029 5.869931 2.296482 -3.434583 -7.904006 -3.242404 3.775231 -1.738927 -4.039607 -0.077459 -2.349177 -1.520624 -0.277225 -8.528879 -1.688790 2.617765 -4.363748 -3.621387 6.821943 -2.142428 0.782164 -1.586938 2.370859 -1.997171 4.839988 -1.336130 4.642698 0.183461 1.748446 -5.513748 0.524363 2.250953 2.027273 -3.634001 -1.219168 -1.686698 2.435289 -4.294063 1.785343 -5.813732 3.522460 7.482459 -1.648805 -5.508094 -3.521356 -0.702213 -10.099986 1.321155 -5.976799 -4.925666 0.795441 7.088532 3.319152 4.699822 9.007580 -6.343194 4.830700 -0.349758 0.625543 5.320375 -1.707176 3.785257 -4.222405 -7.194780 5.014281 3.335804 1.944105 1.457753 -2.230136 -0.504106 -5.507935 -5.112334 4.522796 2.636745 0.911271 6.344012 3.932576 10.766313 -8.681190 2.958818 3.356140 -1.775413 2.079590 -1.154248 -8.909742 2.406943 2.061918 3.500919 9.750122 -0.639639 -5.008984 1.565598 0.464021 2.811535 -6.403331 3.716077 -6.258358 -0.230888 -4.486817 -0.400590 -2.765882 -2.530312 -4.162085 -3.233659 9.166705 -7.045263 -9.489358 9.752947 -2.207800 5.051913 -12.143250 2.673272 -5.055778 6.544880 -2.223125 0.556712 -0.373606 -0.115983 -4.181718 2.635470 4.285910 -3.725047 4.532590 8.911278 2.182727 2.089020 0.222452 5.182498 -1.592805 2.784602 -4.450818 8.028565 -0.220311 -3.574537 -0.613910 -3.942709 1.215910 -2.926345 0.944226 3.844810 6.451071 0.988662 3.462691 5.329772 4.881072 -4.974149 5.583809 0.014943 2.601768 -3.217810 -1.525962 0.586841 2.413326 -1.962196 4.654223 -9.042828 -9.874200 -8.539966 -10.744938 -0.376615 -0.543457 2.719961 -0.759997 -0.191584 -7.788174 -5.404856 8.626172 -2.842731 10.908952 4.885785 4.884744 5.271607 7.603891 -4.188632 -0.645661 -1.539365 -0.031368 -2.749709 -3.084688 -4.748064 6.670500 -2.873348 4.186406 7.107835 -2.169867 2.750213 -1.177534 4.575839 -4.345510 10.199042 4.495224 -3.312680 4.907171 2.305110 10.497299 0.041395 -5.344554 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.886128 -2.523568 5.588637 4.461181 0.643493 2.064825 1.400970 -3.623596 4.695056 2.049059 -1.044547 1.424996 -2.525081 0.703283 -1.128556 2.857581 -3.255593 -2.872432 -0.470033 -2.324464 -1.345319 -3.804045 0.689819 0.824708 1.362849 1.830399 -2.302834 0.774328 -2.934023 -6.163744 2.739551 -0.795672 1.786737 -0.006865 0.384656 -9.632751 5.051961 3.583232 -0.910504 -3.904636 0.597182 -1.708970 -0.897503 -0.070872 1.194039 1.503345 0.132983 2.035159 1.474290 1.211945 1.985004 0.834383 1.235099 5.772327 -2.644751 3.178012 1.820222 0.179900 -0.521839 1.006875 0.941782 0.909562 2.336914 3.758087 -1.345250 -2.017374 0.126514 -0.357557 -4.615247 2.646889 0.007257 -1.765561 -2.974611 -0.930602 -2.006088 -0.413983 -4.128752 2.126341 6.112685 -2.093201 4.505461 1.065448 3.087827 -0.533968 2.208630 -0.749823 4.465500 1.413668 -3.252735 -0.988248 -2.844717 -1.903873 0.963816 0.996300 -1.906073 -1.975585 1.524357 -2.649613 -3.690654 1.229365 0.708098 -0.480423 -4.100622 -0.829823 2.659977 1.038786 -1.013418 -4.512547 -2.497567 1.511916 -1.233942 -1.771306 -0.446106 -1.019203 -0.998975 -0.901414 -4.133469 -0.939127 1.191154 -1.977052 -2.141711 2.731294 -2.146176 0.406135 -0.754357 0.800346 -0.680303 1.742526 -0.357920 2.063148 1.860803 -0.270650 -4.584141 1.188735 1.006323 2.921032 -1.406057 -0.291796 -0.517820 0.959905 -1.790740 1.068703 -1.460053 1.691522 4.669781 -0.701617 -2.274686 -1.552809 0.398103 -4.424802 2.143963 -2.487709 -0.539818 -0.186971 3.047955 1.071696 1.972563 3.856802 -4.905171 3.164525 -0.300776 0.646482 2.024526 0.665827 1.524936 -1.779677 -3.375176 2.137494 1.902990 0.330069 0.821693 -1.078766 -0.139617 -2.332949 -2.325062 2.790364 0.648169 0.403867 2.692696 1.495437 7.742626 -4.391633 1.157008 1.414501 -0.462970 0.786497 -0.365936 -3.781316 2.406955 0.681238 2.065390 4.322877 -0.198005 -2.087065 0.422207 0.323003 0.985366 -2.630559 1.832558 -2.732976 -1.101562 -1.601187 -0.240402 -1.199486 -1.369721 -1.421341 0.460090 3.802210 -1.194230 -4.704074 4.375673 -3.371367 1.801394 -5.584784 3.444773 -2.248591 1.112417 -2.285012 0.182701 -0.314179 0.475641 -1.519194 0.940213 1.792988 -1.404922 2.194070 5.259117 0.884387 0.652174 0.249509 1.843424 -0.643194 0.864549 -1.784663 3.757793 -0.077506 -0.913681 -0.438062 -1.675582 2.055996 -1.110507 -0.263393 2.604285 3.990381 -0.089016 1.309336 2.449994 1.835040 -2.176614 3.065590 0.320722 1.267638 -1.269365 -0.707991 0.128857 0.524351 -0.779694 2.074123 -3.732191 -3.721677 -2.150364 -5.149828 -0.536304 0.129209 1.432129 -0.021397 0.129861 -4.400173 -2.162431 3.621288 -1.000269 2.767355 1.798130 2.047562 2.096576 2.979538 -1.522944 -0.472215 -1.101169 -0.268021 -1.539521 -1.562925 -1.558479 2.784532 -2.209098 1.850551 2.668087 -0.857322 0.929773 -0.878163 3.182185 -1.799561 5.319225 1.959132 -1.153427 1.904394 0.637444 5.893768 -0.586204 -2.250968 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::iter_swap(suffix*, suffix*) = -0.215622 -0.575555 1.106209 0.877786 0.006776 0.388547 0.180510 -0.759987 1.022831 0.181675 -0.091083 0.153850 -0.751593 0.336784 -0.514537 0.499528 -0.782652 -0.774712 -0.246737 -0.630017 -0.459435 -0.695808 0.302337 0.092941 0.357919 0.026475 -0.577627 -0.006623 -0.962698 -0.452680 0.696438 -0.295581 0.399143 -0.177254 0.030672 -1.723287 0.798249 0.572721 -0.322053 -0.804652 0.188470 -0.658925 0.125924 -0.380140 -0.106620 0.062815 -0.054248 0.265842 0.643745 0.101203 0.360751 0.253389 -0.167163 1.615666 -0.805309 0.643881 0.254137 0.078160 -0.243715 0.299312 0.209823 0.252843 0.506938 0.582065 -0.336024 -0.595597 -0.083139 -0.394463 -0.829404 0.773259 -0.109719 -0.122670 -0.625541 -0.160762 -0.763043 -0.320529 -0.615903 0.608082 1.252237 -0.749531 0.678837 0.140060 0.510380 0.073235 0.520098 -0.023496 0.967328 0.209753 -0.486479 -0.110407 -0.590015 0.136586 0.020382 0.007859 -0.291865 -0.915564 0.439467 -0.892102 -0.962378 0.309876 0.251598 0.050823 -0.730043 -0.060092 0.496504 0.274883 -0.552162 -0.957518 -0.329373 0.338034 0.061513 -0.277202 0.232073 -0.456870 -0.143356 -0.530694 -0.943047 -0.225543 0.084918 -0.516629 -0.430154 0.852281 -0.497897 0.008371 -0.016608 0.245864 -0.299454 0.791290 -0.146671 0.506882 -0.052982 0.089972 -1.029351 0.007690 0.301331 0.733405 -0.209893 0.137732 -0.323422 0.163715 -0.644362 -0.038017 -0.273592 0.275693 0.534305 -0.394824 -0.578963 -0.247164 0.049636 -1.118361 0.186872 -0.660298 -0.334069 0.149609 0.722950 0.804950 0.607222 1.134489 -0.631120 0.519248 -0.140753 -0.083475 0.695278 -0.039640 0.529431 -0.425840 -0.706090 0.348852 0.210087 0.164852 0.196251 -0.294448 -0.062856 -0.761635 -0.275625 0.206985 0.421413 -0.074765 0.672446 0.437633 0.566958 -1.222009 0.435522 0.499262 -0.114150 0.223843 -0.124406 -0.930035 0.411847 0.247244 -0.006581 0.603355 -0.115888 -0.519929 0.166026 -0.166398 0.459788 -0.632332 0.008419 -0.569940 -0.249934 -0.685572 0.190064 -0.339032 -0.317744 -0.291398 -0.358564 0.919569 -0.713123 -0.704311 1.059158 -0.035109 0.553114 -1.079470 0.634725 -0.517927 0.797268 -0.324119 0.087303 -0.116180 0.369882 -0.382995 0.227141 0.438631 -0.388571 0.392774 1.049972 0.324582 0.348430 0.101494 0.790233 -0.088360 0.343386 -0.363863 0.863177 -0.089306 -0.478880 0.197675 -0.433494 0.140434 -0.247776 0.296533 0.796023 0.796540 0.275070 0.577459 0.604004 0.598363 -0.441810 0.426190 -0.120761 0.346577 -0.370557 -0.035336 0.103228 0.243327 -0.351167 0.321135 -0.939987 -1.225559 -0.823337 -0.839521 0.099144 -0.206877 -0.013970 -0.108120 0.024036 -0.891908 -0.489691 0.464914 -0.443062 0.831018 0.356653 0.396880 0.601873 1.012717 -0.622175 -0.142481 0.134977 0.039658 -0.186050 -0.187612 -0.696808 0.736755 -0.604178 0.342318 0.808586 -0.282157 0.182713 0.177379 0.554997 -0.488946 1.138510 0.471585 -0.283233 0.754500 0.577972 1.204316 0.402568 -0.515263 -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.374268 -1.034916 2.713839 2.055079 -0.199695 0.836591 -0.046922 -2.146000 2.066224 -0.166589 -0.354299 0.558048 -1.290348 0.970036 -2.308748 1.044917 -1.955330 -1.562380 -1.078417 -1.625626 -1.137724 -1.207244 0.653965 0.321209 0.953853 0.353550 -1.503632 0.367270 -2.239246 -1.149453 1.351535 -0.313051 0.493981 -0.978212 0.256300 -2.740693 1.962397 1.627791 -0.740039 -1.714045 0.536050 -1.349469 -0.477549 -0.955648 -0.282958 -0.046685 -0.661483 0.938616 1.237567 0.195699 0.553114 1.392763 -0.310542 3.633123 -1.569226 1.537391 0.802491 0.653424 -0.235372 0.829799 0.472506 1.031954 0.556667 0.937736 -0.258376 -1.554164 -0.288700 -0.637363 -1.000751 1.896089 -0.343815 -0.674269 -1.248863 -0.501487 -2.287310 -0.306638 -1.500282 1.490842 2.451979 -1.816797 0.903046 0.121371 0.849359 0.209475 1.016443 -0.204406 2.153925 0.693336 -0.486448 -0.415289 -1.399678 0.618480 0.247266 -0.691186 -1.288086 -2.981393 1.341443 -3.399342 -2.168448 0.498508 0.941454 -0.509127 -0.566254 -0.089141 0.830899 0.116595 -0.987136 -1.644994 -0.158913 1.066168 0.517960 -0.620969 0.746575 -0.718637 0.277334 -0.609956 -2.232689 0.102138 0.232524 -0.582073 -0.586889 1.778856 -0.505578 -0.384634 -0.245413 0.486989 -0.680762 1.510010 -0.702536 1.194332 -0.770137 1.141775 -1.367635 0.747180 0.760259 0.498972 -0.873049 0.764026 -0.623189 0.565262 -1.399392 0.051528 -1.552556 0.206375 0.242629 -0.990728 -1.428355 -0.616230 -0.474801 -2.221491 0.034412 -1.198015 -2.018804 0.024544 1.540495 2.234069 1.307277 1.910981 -1.097207 0.535704 0.133516 -0.004314 1.446740 -0.867253 0.904006 -0.890807 -1.830341 1.040201 -0.029553 0.454363 0.276818 -0.201780 -0.152582 -1.654940 -0.249663 0.644509 1.069507 -0.173832 1.781471 1.310076 0.036405 -2.438305 0.941618 1.105369 -0.758592 0.476689 -0.416859 -1.999256 0.657672 0.672242 0.876681 1.755379 -0.198080 -0.548627 0.470900 -0.268933 1.122275 -1.296696 -0.160711 -1.215128 -0.864746 -1.467148 0.855709 -0.427994 -0.258503 -0.835281 -1.690250 1.975280 -2.606515 -1.428290 2.740075 0.154440 1.128058 -1.955112 0.420878 -0.965851 1.992397 0.358627 0.649199 0.002299 0.122328 -1.584696 0.672319 0.946229 -1.063763 0.802334 2.023117 0.594520 0.671537 -0.062997 1.670346 -0.938092 1.141375 -1.215099 1.973251 -0.161114 -1.692732 0.282019 -0.849829 -0.307928 -1.125014 1.033677 1.734244 1.123623 1.305261 1.069639 1.163048 1.690754 -1.061439 1.140281 -0.417125 -0.139433 -0.997922 -0.263921 0.610111 0.295890 -0.730631 0.633017 -2.112240 -2.691057 -3.076798 -1.864905 0.771333 -1.742609 0.035249 -0.644446 -0.504316 -1.766905 -1.675642 1.464591 -0.929210 1.354794 1.275832 0.873974 1.154905 2.206830 -1.444866 0.654164 0.268642 0.404609 -0.030152 -0.687736 -1.641769 1.948885 -0.798773 0.406618 2.305380 -0.636318 1.036378 0.508276 0.551401 -0.996088 2.261552 0.872064 -0.927332 1.247033 1.389957 2.293993 1.242548 -1.234866 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int std::__bit_width(unsigned long) = -0.276302 -1.097143 0.935193 0.909508 0.277643 0.498663 0.719534 -0.050768 0.689768 0.628882 -0.206106 0.484478 -0.898023 -0.157507 0.178171 0.265976 -0.304127 -0.834172 0.241876 0.030490 -0.001338 -0.672098 -0.118398 0.575736 0.341309 0.059489 -0.249989 -0.472375 -1.268262 -0.232725 0.278712 -0.211844 0.578085 0.276028 0.221444 -1.184446 0.359075 0.812294 -0.064766 -1.253429 0.061307 -0.361464 0.266890 -0.163569 0.211873 0.359885 0.567335 0.459365 0.064488 0.324457 -0.078161 -0.304827 0.306080 0.997972 -0.032660 0.743737 0.843576 0.067670 0.199289 -0.054012 0.353590 -0.281280 0.573412 0.412010 -0.384039 -0.126846 -0.307431 -0.265660 -0.861825 0.225371 0.300884 0.144232 -0.699722 -0.164542 -0.525540 -0.235848 -0.752263 0.466141 1.305105 -0.686621 1.215202 0.653290 0.851201 -0.024569 0.532781 0.073088 0.326032 0.306647 -0.657187 0.156772 -1.291788 -0.469284 -0.208292 -0.140275 -0.346757 -0.626934 0.378645 -0.295525 -0.979739 0.582946 -0.161444 0.079821 -0.471217 0.078233 0.415688 0.748853 -0.566247 -0.891108 -0.599373 0.194180 -0.195842 -0.409324 0.222412 0.040980 -0.257122 -0.560077 -0.713774 -0.300448 0.586403 -0.829901 -0.133434 0.739385 -0.574146 0.816005 -0.103592 -0.095246 -0.029317 0.549344 0.728494 0.187007 0.591920 -0.659599 -1.070018 -0.008952 0.157295 1.085083 -0.167428 0.130653 0.161992 0.318971 0.304676 0.270181 0.249905 0.393712 0.391590 -0.297494 -0.408028 -0.832216 0.062719 -0.466111 0.396816 -0.436878 0.361063 0.198500 0.642164 0.155334 0.136162 0.999780 -0.640129 0.427763 -0.132837 0.122683 0.029657 0.436338 0.338295 -0.317058 -0.618754 0.322736 0.779716 0.173841 0.304141 -0.368757 0.116594 -0.369629 -0.450025 -0.087997 0.143428 -0.327047 0.816671 0.310064 0.370843 -0.669963 -0.075878 -0.040218 0.049995 0.177111 -0.115465 -1.053399 0.655503 -0.062138 -0.045240 0.533627 -0.136330 -0.512740 0.662723 -0.185399 0.011861 -0.466491 0.407732 -0.721398 -0.395522 -0.572514 0.371567 -0.474733 -0.501177 -0.446616 0.243608 1.023443 0.254887 -0.520960 0.071733 -0.003319 0.220866 -1.003047 0.979841 -0.368857 0.417345 -0.207400 -0.305275 0.000452 0.410788 0.126702 -0.585693 0.520044 -0.461562 0.423879 0.614024 0.131790 -0.108002 0.537290 0.377785 0.065361 -0.160301 -0.387866 0.365754 -0.184288 -0.160707 0.103277 -0.346491 0.859136 0.154498 -0.274687 0.563939 0.631497 -0.084130 0.398208 0.449539 0.003339 -0.470792 0.114806 0.163676 1.006813 -0.430529 0.150110 -0.637687 0.103652 -0.072862 0.546804 -0.866742 -0.787423 0.084287 -0.731065 -0.387682 0.180607 0.117964 0.186036 0.121947 -1.045970 -0.530310 -0.140128 -0.312898 0.112076 0.424127 0.387203 0.852195 0.498975 -0.238415 -0.416083 0.241529 0.014785 -0.487209 -0.242547 -0.138551 0.135313 -0.674383 0.536725 0.538827 -0.067690 0.106869 -0.394696 0.946341 -0.548819 1.296026 0.639666 -0.672553 0.268782 0.621069 1.334960 -0.518091 -0.548420 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int std::__countl_zero(unsigned long) = -0.006650 -2.098136 2.214941 2.261064 0.835156 0.894706 1.606335 -0.425752 1.416187 1.792442 -0.613443 1.145947 -1.867897 0.103124 0.205386 1.185963 -0.763789 -1.698552 0.429168 0.083123 0.107221 -1.339966 0.652794 0.721403 1.154611 0.295055 -0.726796 -1.511990 -2.518723 -1.058536 0.840799 -0.495835 1.361973 0.839807 -0.134091 -2.122885 0.984557 1.653591 -0.319633 -2.568952 0.619201 -0.562194 -0.016278 -0.063802 0.848257 0.774654 0.927141 1.205845 0.330395 1.144744 0.248054 -0.370181 1.161758 1.942299 -0.377426 1.561941 1.634194 0.183097 0.367339 0.055288 0.788308 -0.168984 1.277821 1.249201 -0.408268 -0.626563 -0.753313 -0.542960 -2.055387 0.748364 0.398190 0.469497 -1.548723 -0.057170 -0.208053 0.035215 -1.466862 1.194025 2.800659 -1.122828 2.397505 1.132560 1.315895 -0.766786 0.542519 0.098448 0.256316 0.786812 -1.035632 -0.565114 -2.660266 -1.112444 -0.262391 -0.170605 -0.737843 -0.984853 0.919563 -0.011620 -1.952939 0.880673 -0.020518 -0.101861 -0.744369 0.519199 0.791294 1.584203 -0.790771 -1.757861 -1.132539 0.203568 -0.347603 -1.077693 -0.167138 -0.165092 -0.918441 -0.637271 -1.535281 -0.666240 0.750034 -1.810008 -0.448746 1.103357 -0.899574 1.370877 -0.299614 0.073844 -0.024380 0.754645 1.285634 0.852342 2.321267 -0.929804 -1.796525 0.687408 0.890078 2.047412 -0.600611 0.563920 -0.155155 0.583388 0.375583 0.566913 0.440109 0.929830 1.308512 -0.893874 -1.139171 -1.438982 0.667371 -1.043315 0.925192 -1.148534 0.909125 -0.077045 1.411024 -0.102542 0.665397 2.240625 -1.852380 1.023094 0.083109 0.533843 0.268932 1.004342 0.626046 -0.732932 -1.510237 0.612326 1.813758 -0.241537 0.338713 -0.301207 0.170422 -1.088893 -0.963887 0.161261 0.132478 -0.884282 1.476745 0.507889 1.524221 -1.171307 -0.074110 0.367777 -0.004881 0.188231 -0.153119 -2.559754 1.509917 -0.283687 0.579199 1.423919 -0.088761 -1.248550 1.346844 -0.393569 -0.151086 -0.798095 1.177468 -1.575038 -0.947565 -1.062949 0.545086 -0.431462 -1.136711 -0.460066 1.127136 2.172155 0.886213 -1.135261 0.319836 -0.694545 -0.299472 -2.408440 2.604920 -0.955635 -0.029952 -0.430060 -0.733895 -0.151756 0.770308 -0.285394 -1.197759 1.085990 -0.711124 1.336277 1.819812 0.342676 -0.395071 0.873493 0.739537 0.152732 -0.030973 -0.713358 1.050260 -0.260868 -0.351321 -0.098910 -0.690136 1.555188 -0.247522 -0.854511 1.492677 1.253006 -0.267424 0.986394 0.609699 0.756463 -1.187534 1.048922 0.333981 2.088757 -0.693679 0.148065 -0.896482 -0.234404 -0.418869 1.780156 -1.823093 -1.787096 0.591245 -1.867753 -0.659232 0.014637 0.869527 -0.024553 0.203819 -2.390803 -1.293214 -0.852752 -0.581472 0.176215 1.173043 0.770494 1.454814 0.990426 -0.574174 -0.398765 -0.219694 0.253194 -0.900979 -0.999532 0.025339 0.331993 -0.970604 0.913143 1.184725 -0.054164 0.213746 -1.278264 1.872011 -1.023264 2.793339 1.301198 -0.976292 0.876997 0.635036 2.758996 -1.121237 -1.182432 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.375478 -3.888123 8.941861 7.683843 -0.076108 3.224468 0.112695 -6.801975 6.260050 2.177346 -1.313428 2.585102 -4.146056 2.310814 -3.575706 4.585983 -5.951964 -4.501356 -2.539044 -4.328149 -2.919415 -4.421205 1.998879 1.596073 3.097236 2.505155 -4.750418 1.234305 -5.552599 -7.907483 3.552731 -0.894297 2.968984 -0.673481 0.836224 -11.221388 7.457230 6.246696 -1.917625 -6.362964 1.635397 -2.992976 -2.147489 -1.221014 -0.837204 1.711221 -1.366470 2.273246 3.160587 1.909739 2.298545 3.237723 1.640885 9.195165 -3.447973 5.402772 3.025799 0.888957 -0.815151 1.722908 1.698728 2.942420 3.156158 4.019203 -0.933861 -4.699965 -0.583465 -0.947199 -5.477576 5.437942 -0.631325 -3.118420 -4.187443 -2.005141 -4.670417 -0.475555 -2.748765 4.277302 8.524284 -4.210436 4.616226 0.971408 2.283146 -0.682336 3.347777 -1.217683 6.822579 2.651727 -2.275542 -1.435947 -3.411292 -1.713647 1.533716 0.323430 -4.378463 -5.932675 3.495928 -8.089177 -6.702395 2.028575 2.562304 -1.864116 -4.768882 -1.253322 3.578718 1.251996 -1.996615 -5.743182 -1.673191 3.157314 0.059883 -3.099208 -0.411904 -1.295695 -0.671116 -0.108990 -7.047008 -0.351122 1.507067 -2.469048 -2.207931 4.782023 -1.487989 -0.374538 -1.389350 1.609885 -1.755788 3.910584 -1.716677 4.324221 0.550449 2.462335 -3.527766 2.099178 2.249675 1.163174 -2.563231 0.232777 -1.746654 1.987511 -3.635870 1.926651 -4.080197 2.206544 4.938686 -1.400658 -4.512980 -2.279292 -1.413468 -7.539664 1.282494 -4.275133 -3.915471 0.806914 5.138085 3.273618 3.763750 5.923423 -5.437720 2.745004 0.181295 0.709801 4.187644 -1.050028 2.474107 -2.997285 -5.835743 4.080145 1.736008 1.212804 1.042208 -0.715357 -0.286308 -4.119008 -3.020132 3.737833 1.960645 0.230909 4.971573 3.475308 7.061674 -5.644108 2.364890 2.972307 -1.862295 1.517513 -1.051780 -6.737636 2.243006 1.427217 3.580218 7.503648 -0.681750 -2.616307 1.331625 -0.038690 2.266622 -4.395147 2.263346 -4.541999 -0.915908 -3.760666 0.247759 -1.264395 -1.624800 -2.597886 -2.292973 6.852652 -5.541007 -6.304248 8.246264 -2.434241 3.032141 -8.068597 2.988585 -3.394155 4.139231 -0.894374 0.510486 0.006335 -0.842974 -4.336805 1.673406 3.170108 -2.637990 2.674384 7.252500 1.483490 0.780912 -0.306751 3.901788 -1.912291 3.258226 -3.806957 6.812196 -0.232243 -2.607853 -0.669243 -2.731068 0.297327 -3.478610 0.805974 4.080217 4.207506 1.957710 2.290225 3.422872 4.610356 -3.828204 5.232734 -0.090917 0.558974 -2.685582 -1.163599 1.494853 1.267609 -1.775085 3.456881 -6.615261 -7.123915 -7.405878 -7.226379 0.125360 -1.869379 2.450420 -1.404250 -1.241120 -5.585897 -5.131204 6.142517 -2.185501 5.419178 4.003366 3.342144 3.677273 5.989544 -3.058424 1.099241 -1.514811 0.298656 -1.108757 -2.705461 -3.548962 5.682564 -1.804211 2.138692 6.175274 -1.542214 3.045378 -1.024308 3.363449 -3.155695 7.581860 2.800082 -2.298889 3.671787 2.479291 6.966549 0.687512 -4.042941 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.158112 -1.778358 4.067978 3.539206 0.099322 1.348701 0.440036 -2.903323 3.125002 1.295960 -0.589732 0.956345 -2.047345 1.031318 -1.020599 2.348089 -2.730589 -2.083299 -0.827606 -1.822444 -1.204644 -2.299828 1.102565 0.451696 1.406007 1.196198 -2.028793 0.246126 -2.197560 -3.514772 1.944664 -0.617729 1.432446 0.266618 0.285573 -5.600604 3.430409 2.519339 -0.865636 -2.837261 0.663187 -1.327643 -0.641996 -0.601073 0.110236 0.927930 -0.325980 1.481608 1.566056 0.999801 1.179536 0.955680 0.838843 4.109824 -1.882045 2.279713 1.193178 0.249128 -0.378187 0.739866 0.790418 1.133256 1.571056 2.214295 -0.551891 -2.001675 -0.322088 -0.647682 -2.903741 2.424538 -0.146478 -0.978087 -2.329577 -0.753471 -1.537276 -0.236773 -2.508182 2.088462 4.142204 -1.942968 2.399343 0.614115 1.385848 -0.459912 1.397379 -0.466642 3.011419 1.099502 -1.378954 -0.627173 -1.776314 -1.215632 0.708983 -0.063067 -1.584566 -2.463031 1.295015 -2.659110 -2.905819 0.914253 1.008687 -0.498214 -2.346036 -0.445131 1.729107 0.765220 -0.920005 -2.874617 -0.909478 1.065287 -0.159865 -1.326744 -0.246488 -0.685464 -0.636295 -0.435669 -3.209875 -0.505505 0.523545 -1.398455 -1.061722 2.059292 -1.009041 -0.040281 -0.522682 0.616677 -0.710101 1.868442 -0.478603 1.970356 0.930144 0.741461 -2.116630 1.166022 1.166113 1.356680 -0.848041 0.161125 -0.864543 0.801065 -1.724248 0.715255 -1.230221 1.095988 2.661704 -0.761211 -2.042674 -0.955841 -0.285433 -3.350495 1.017390 -2.033640 -0.944049 0.226187 2.319482 1.304388 1.798300 2.793517 -3.019281 1.579854 -0.165427 0.505091 1.872352 0.332463 1.217018 -1.306030 -2.472430 1.643041 1.036559 0.263441 0.530293 -0.569097 -0.043062 -1.955857 -1.348637 1.660659 0.754058 -0.117421 2.051936 1.301688 3.662189 -2.630217 1.043605 1.480489 -0.492760 0.596219 -0.278021 -3.084905 1.521803 0.440247 1.436727 3.016564 -0.307183 -1.357207 0.574359 -0.101044 0.898767 -1.859265 0.882780 -1.993732 -0.625427 -1.712843 0.368808 -0.630308 -0.965463 -0.835570 -0.265652 3.019679 -1.675467 -2.702358 3.512956 -1.594730 1.225870 -3.604850 2.176958 -1.593423 1.269615 -0.863791 0.001715 -0.116468 -0.115983 -1.632840 0.454404 1.424867 -0.907899 1.227033 3.524461 0.743069 0.291270 0.096786 1.764498 -0.533970 1.278820 -1.402128 3.020122 -0.155874 -0.763629 -0.213807 -1.236004 0.506011 -1.369563 0.104802 2.272992 2.223323 0.644338 1.289381 1.412276 1.977272 -1.720936 2.374096 0.043170 0.643552 -1.146263 -0.387994 0.527377 0.387823 -0.989492 1.689911 -2.871139 -3.173551 -2.480687 -3.073880 -0.285340 -0.438641 1.165753 -0.526613 -0.286505 -2.673152 -2.030301 2.363021 -0.974710 1.935703 1.563281 1.347286 1.639972 2.672537 -1.375763 0.083903 -0.678956 0.037654 -0.626053 -1.117237 -1.488507 2.390994 -1.140020 0.998546 2.578464 -0.739533 0.943329 -0.782998 2.238319 -1.397078 3.597994 1.330748 -0.822386 1.781541 1.120463 3.468935 0.295970 -1.752777 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::move_backward(suffix*, suffix*, suffix*) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_linear_insert >(suffix*, __gnu_cxx::__ops::_Val_comp_iter) = 0.252238 -2.209320 5.116971 4.145072 -0.081675 1.782014 0.324356 -3.828529 3.879343 0.908174 -0.655439 1.225217 -2.422552 1.486186 -2.745588 2.434752 -3.457479 -2.725090 -1.444868 -2.724197 -1.975311 -2.572263 0.977858 0.639235 1.637175 1.061920 -2.684848 0.517809 -3.427066 -3.579722 2.362442 -0.615611 1.345734 -1.008748 0.492178 -6.730050 4.039047 3.137884 -1.213239 -3.538138 0.786854 -2.069689 -0.874311 -1.009756 -0.161161 0.507397 -0.751405 1.869503 1.970627 0.815600 1.333963 1.943104 0.360512 6.469018 -2.456241 3.023686 1.680725 0.783325 -0.486677 1.348805 0.971520 1.585236 1.581186 2.234980 -0.574990 -2.578548 -0.369904 -0.877686 -2.747015 3.207966 -0.205247 -1.512749 -2.458928 -1.022178 -3.071849 -0.552792 -3.177328 2.615371 4.954528 -2.956797 2.512151 0.617579 1.790414 0.058466 2.065867 -0.561145 4.184683 1.362845 -1.526763 -0.715050 -2.316591 -0.224204 0.729353 -0.588271 -2.294557 -4.614587 2.072544 -4.663649 -3.919019 1.252523 1.403382 -0.747670 -2.232370 -0.759754 2.030439 0.561278 -1.643978 -3.415749 -1.139082 1.800841 0.133898 -1.507210 0.616744 -1.153417 -0.044786 -0.724102 -4.084764 -0.239927 0.809355 -1.417551 -1.453480 3.083114 -0.978635 -0.247715 -0.610185 0.816927 -1.037919 2.467967 -0.889186 2.288444 -0.179410 1.504118 -2.880328 1.462002 1.350676 1.121287 -1.275360 0.633985 -0.970638 1.159825 -2.247428 0.772928 -2.266631 1.064771 2.167792 -1.163106 -2.581732 -1.378351 -0.377975 -4.109049 0.743199 -2.400841 -2.542070 0.042607 2.957768 2.828716 2.205876 3.264667 -2.964733 1.691516 -0.070783 0.444361 2.403543 -0.659642 1.571950 -1.689652 -3.352797 1.942872 0.855854 0.692046 0.586311 -0.690577 -0.197668 -2.584614 -1.239148 1.618521 1.500344 -0.250513 3.025293 2.094357 3.311061 -4.190755 1.488939 1.753509 -1.133424 0.888599 -0.668729 -3.826115 1.412881 0.998210 1.658501 3.823132 -0.409491 -1.453351 0.795461 -0.215119 1.530185 -2.353981 0.558367 -2.470195 -1.308848 -2.298891 0.998933 -0.978300 -0.781605 -1.512538 -1.754431 3.824659 -3.709670 -3.217983 4.843422 -1.141691 1.740049 -4.299070 1.997451 -1.884499 2.428175 -0.474149 0.509259 -0.148439 0.336134 -2.432197 1.128344 1.828526 -1.760780 1.565219 4.281492 0.945916 0.966276 0.023876 2.634198 -1.255887 1.587075 -2.156303 3.881494 -0.286705 -2.022173 -0.055774 -1.628094 0.308108 -1.792211 1.055418 2.796053 2.444000 1.376109 1.560679 2.219991 2.564389 -2.079103 2.607563 -0.328565 0.303110 -1.712120 -0.443505 0.719131 0.462382 -1.204557 1.657982 -3.846141 -4.232310 -4.479597 -3.559506 0.475716 -1.507898 0.724075 -0.829935 -0.628145 -3.483460 -2.831799 3.179060 -1.521269 2.213500 2.265678 1.823185 2.218334 3.738845 -2.015989 0.618894 -0.293169 0.158566 -0.589622 -1.446017 -2.293451 3.292918 -1.500825 1.256321 3.600918 -0.889864 1.627708 0.069566 1.958205 -1.799723 4.391620 1.730836 -1.401493 2.037645 2.162761 4.662178 0.971198 -2.282284 -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.100108 -0.593174 1.156467 1.082656 -0.286860 0.287869 0.094329 -0.685040 0.727274 0.066094 -0.128482 0.231940 -0.732446 0.388475 -0.120510 0.645702 -0.965604 -0.548926 -0.290069 -0.458248 -0.360995 -0.534229 0.426243 0.230439 0.496830 0.633384 -0.516628 -0.099768 -0.509359 -0.428845 0.637234 -0.235819 0.576538 0.618000 0.128985 -1.625193 0.744173 0.571743 -0.263184 -0.822000 0.244676 -0.429778 0.071845 -0.503395 -0.302395 0.214114 -0.079361 0.352895 0.550824 0.228601 0.064624 0.155478 0.268358 1.089095 -0.442794 0.524297 0.318777 -0.035843 -0.170379 -0.081866 0.270218 0.297610 0.451885 0.445765 -0.133708 -0.692709 -0.310335 -0.495021 -0.839882 0.681644 -0.110247 -0.005252 -0.801251 -0.336427 -0.435565 -0.162894 -0.847059 0.853898 1.125702 -0.807100 0.564715 0.110010 0.143066 -0.129952 0.302469 0.018533 0.591450 0.299887 -0.223091 0.099852 -0.258135 -0.350044 0.228424 -0.205811 -0.421400 -0.943282 0.423061 -0.680779 -0.833909 0.296605 0.370886 -0.099975 -0.473193 -0.152439 0.274827 0.409624 -0.455197 -0.727451 -0.087764 0.160721 0.339072 -0.337592 -0.140355 0.107976 -0.254685 -0.386598 -0.976863 -0.081201 0.049419 -0.472216 0.077584 0.594588 -0.254941 0.033488 -0.097927 0.148418 -0.276170 1.036655 -0.027082 0.511895 0.178610 0.217356 -0.181846 0.171704 0.411363 0.686554 -0.229179 -0.097075 -0.313572 0.177392 -0.469066 -0.068309 0.024411 0.229655 0.717180 -0.253939 -0.648895 -0.260165 -0.341693 -1.168415 0.188405 -0.676387 0.051245 0.624437 0.623702 0.504955 0.546115 0.999390 -0.743103 0.248663 -0.088490 -0.058871 0.610449 0.492665 0.422486 -0.370532 -0.620077 0.506359 0.079330 0.214704 0.206428 -0.121933 0.034304 -0.585443 -0.245089 0.496826 0.391598 -0.118723 0.561754 0.398907 0.512120 -0.410067 0.254136 0.449729 -0.120644 0.143538 0.034552 -0.917879 0.487355 0.035109 0.016809 0.509770 -0.172902 -0.283505 0.322351 -0.236037 0.267691 -0.560530 0.144688 -0.526716 -0.050007 -0.791185 0.223622 -0.143157 -0.315034 -0.205398 -0.080057 0.953998 -0.642829 -0.371087 0.847642 -0.117855 0.514160 -0.825033 0.736234 -0.434749 0.647223 -0.253400 -0.223030 0.080621 -0.240450 -0.371796 -0.090380 0.436392 -0.071838 -0.050803 0.886665 0.262503 -0.138797 0.110064 0.670595 -0.015787 0.623392 -0.287189 0.822139 -0.034439 -0.096173 0.148567 -0.328761 -0.038441 -0.422294 0.080902 1.021682 0.549552 0.491799 0.566162 0.264690 0.646811 -0.482659 0.491539 -0.047975 0.361011 -0.393425 -0.061473 0.165978 0.491891 -0.334974 0.403029 -0.819361 -1.230003 -0.832203 -0.590237 -0.220661 -0.127152 0.317538 -0.238852 -0.144067 -0.510367 -0.622812 0.444973 -0.398148 0.671190 0.360432 0.291911 0.605459 0.842559 -0.490705 -0.098426 0.109453 0.207263 0.042650 0.044550 -0.673469 0.649914 -0.462139 0.106814 0.976316 -0.315300 0.276106 -0.185913 0.931764 -0.461529 1.062157 0.320430 -0.407553 0.748704 0.568880 0.634339 0.419923 -0.505568 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a(suffix*, suffix*, suffix*) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__miter_base(suffix*) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_wrap(suffix* const&, suffix*) = -0.216889 -0.266459 0.395803 0.358802 0.113353 0.124916 0.245948 -0.174661 0.469585 0.329413 -0.007362 -0.032471 -0.401040 0.090013 0.115063 0.290524 -0.196848 -0.331630 0.027113 -0.200139 -0.128038 -0.330870 0.165481 -0.106598 0.150359 -0.107711 -0.137837 -0.168707 -0.356358 -0.158032 0.290792 -0.185617 0.213712 0.088776 -0.043321 -0.702062 0.261666 0.145042 -0.145935 -0.324930 0.068807 -0.258085 0.239958 -0.072157 0.163421 0.120623 0.114283 0.071114 0.303339 0.131296 0.287338 -0.121985 -0.030490 0.555408 -0.395300 0.218027 0.043743 -0.055105 -0.123191 0.127063 0.076943 -0.007923 0.280317 0.287755 -0.196732 -0.193710 -0.079493 -0.219865 -0.473803 0.243908 -0.030907 0.036258 -0.336534 -0.063083 -0.038942 -0.199795 -0.676753 0.197781 0.544326 -0.285583 0.383646 0.152019 0.268294 0.001952 0.195213 0.037562 0.294699 0.022421 -0.294056 0.011327 -0.200821 -0.072924 -0.024529 0.094550 0.022512 -0.128327 0.112014 0.162297 -0.352471 0.176669 0.028961 0.169857 -0.442496 0.072874 0.169694 0.238159 -0.255216 -0.464516 -0.234132 0.024126 -0.010357 -0.087593 0.024672 -0.299998 -0.227258 -0.320474 -0.343451 -0.193706 -0.016508 -0.325417 -0.278200 0.334512 -0.299204 0.071418 0.048823 0.086933 -0.119701 0.385644 0.071677 0.245280 0.189724 -0.164565 -0.808130 -0.016216 0.186422 0.517857 0.047057 0.096815 -0.174283 -0.009022 -0.269278 0.011859 0.148086 0.219611 0.447816 -0.194995 -0.199626 -0.079910 0.190318 -0.396993 0.232127 -0.294806 0.257395 -0.013431 0.286884 0.249883 0.268839 0.600635 -0.377012 0.270257 -0.180719 -0.050241 0.267341 0.248729 0.269126 -0.163710 -0.187158 0.028721 0.268726 -0.047430 0.144729 -0.181513 0.009020 -0.336900 -0.070138 0.030282 0.083114 -0.156346 0.217679 0.111036 0.453879 -0.472448 0.147832 0.227368 0.070123 0.064001 0.009635 -0.384964 0.263986 0.048628 -0.160819 0.076910 -0.038292 -0.271402 0.056405 -0.160563 0.133449 -0.213268 0.019920 -0.220722 -0.107197 -0.261829 0.103177 -0.197172 -0.249392 0.038858 0.171940 0.353763 0.152851 -0.182399 0.246892 -0.116255 0.064242 -0.399758 0.631279 -0.239453 0.106469 -0.377915 -0.070115 -0.129647 0.411151 0.018980 -0.030555 0.165898 -0.077239 0.173204 0.496971 0.165358 0.094412 0.114861 0.339207 0.085525 0.048982 -0.029303 0.325288 -0.067848 0.012571 0.122012 -0.172845 0.197385 0.014790 -0.036545 0.399399 0.403974 -0.088995 0.245487 0.179694 0.199252 -0.154400 0.178474 0.025816 0.378240 -0.117683 0.043544 -0.025753 0.044870 -0.168403 0.133783 -0.341205 -0.382094 0.154007 -0.229562 -0.076458 0.229987 -0.023723 0.042852 0.124349 -0.381034 -0.094659 0.022612 -0.191255 0.188176 -0.014701 0.111683 0.259365 0.390275 -0.190001 -0.239648 -0.002498 -0.080009 -0.127920 -0.068424 -0.147443 0.223762 -0.365918 0.132946 0.165409 -0.101269 -0.077372 0.040507 0.414465 -0.209244 0.484187 0.195786 0.028391 0.414686 0.305020 0.665044 0.015395 -0.157214 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a1(suffix*, suffix*, suffix*) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_base(suffix*) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a2(suffix*, suffix*, suffix*) = -0.597181 -1.146650 1.746159 1.506355 0.241895 0.893340 0.375586 -1.019144 1.274986 0.909717 -0.088491 0.516690 -1.098944 0.179460 -0.144874 0.692699 -0.839574 -1.078277 -0.248059 -0.852658 -0.425327 -0.997377 -0.002008 0.509052 0.473445 -0.207935 -0.792869 -0.059672 -1.654869 -1.294377 0.631837 -0.303629 0.809109 -0.412161 0.220568 -2.734624 1.305478 1.289456 -0.352821 -1.532089 0.256723 -0.765818 0.111765 -0.016040 -0.196362 0.442643 0.120080 -0.044211 0.666565 0.365272 0.543403 0.283064 0.222985 2.137264 -0.748309 1.199830 0.673460 -0.076860 -0.156784 0.400609 0.245697 0.195113 0.906930 0.688980 -0.477859 -0.805047 -0.056766 -0.165983 -1.384603 0.840180 0.016760 -0.589487 -0.745759 -0.339900 -1.102240 -0.519679 -0.339347 0.660534 1.874045 -0.825361 1.404468 0.392689 0.745113 0.159297 1.087188 -0.044429 1.368428 0.381031 -0.816821 0.036567 -0.912139 -0.223825 0.056001 0.494362 -0.692829 -0.936787 0.625841 -1.035509 -1.474868 0.818252 0.186636 -0.087598 -1.560195 -0.427767 0.773982 0.617042 -0.787555 -1.497488 -0.804339 0.807600 -0.180784 -0.640879 0.139057 -0.720349 -0.266620 -0.543218 -1.229742 -0.215275 0.562059 -0.767361 -0.916559 1.383862 -0.690643 0.315482 -0.129116 0.424818 -0.494414 0.853200 -0.025048 0.825196 0.099360 -0.280487 -1.794683 -0.227547 0.268023 0.789457 -0.258368 -0.112282 -0.335102 0.401965 -0.479598 0.634182 -0.252220 0.766730 1.240116 -0.214142 -0.645450 -0.651483 0.136302 -1.460521 0.322553 -0.840018 -0.417429 0.255251 1.117251 0.587891 0.676226 1.459325 -0.887996 0.778765 -0.305281 -0.098791 0.834741 -0.201223 0.653233 -0.660592 -1.094198 0.566565 0.765262 0.379454 0.382842 -0.430321 -0.019669 -0.746297 -0.641315 0.263718 0.398113 -0.071312 1.170669 0.804267 1.847601 -1.481135 0.368132 0.402560 -0.353592 0.407511 -0.336048 -1.413444 0.378531 0.474537 -0.120464 1.428476 -0.252044 -0.893748 0.413965 -0.135724 0.473505 -0.956016 0.591094 -1.049794 -0.152004 -0.795732 -0.282700 -0.715257 -0.625955 -0.758831 -0.333885 1.546626 -0.697973 -1.362920 1.319039 -0.292276 0.497158 -1.948506 1.210057 -0.769411 0.936682 -0.608868 -0.063707 -0.223166 0.794213 -0.518529 0.292536 0.707526 -0.885414 0.809526 1.599383 0.388734 0.300381 0.131586 0.953354 -0.141695 0.199208 -0.831106 1.317188 -0.262255 -0.307900 -0.005557 -0.634697 0.542308 -0.246005 0.084219 0.430468 1.049600 -0.075422 0.284608 1.134249 0.500340 -0.588890 0.784755 -0.045973 0.690550 -0.549938 -0.062086 -0.142568 0.379010 -0.110961 0.605634 -1.562203 -1.252972 -0.919120 -1.400158 -0.052440 0.472220 0.105754 0.181509 0.052027 -1.604886 -0.847417 0.928591 -0.550225 1.096237 0.655360 0.757282 1.024907 1.292357 -0.464435 -0.320344 -0.190875 -0.181523 -0.519860 -0.490428 -0.603661 1.024496 -0.815224 0.766165 0.943968 -0.207521 0.442905 0.062699 0.748852 -0.887941 1.782925 0.783305 -0.442272 0.874354 0.861628 1.852602 -0.365518 -0.768963 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward::__copy_move_b(suffix*, suffix*, suffix*) = -1.307787 -3.368746 4.159946 3.681884 0.862243 2.870895 0.519494 -2.067137 2.235160 2.901645 -0.768682 2.115577 -2.237000 -0.254009 -0.241980 1.178619 -1.460791 -2.326762 -0.198124 -1.261028 -0.265473 -2.280024 -1.292599 2.463315 0.783917 -0.187727 -1.601593 0.615381 -4.345634 -4.639158 0.136351 -0.397667 1.801195 -1.418692 1.294649 -4.769951 3.293524 4.070495 -0.337786 -4.450746 0.284894 -1.203733 -0.483628 0.919293 -0.491082 1.865867 0.812317 -0.184145 0.482482 1.228307 0.605639 0.422094 1.708668 3.735853 -0.155083 3.441278 2.662465 -0.054975 0.746063 0.701255 0.531398 0.072438 1.870541 1.371531 -0.918179 -1.301384 -0.085354 0.844278 -2.651265 1.364850 0.092619 -1.980022 -1.406760 -0.977668 -3.154490 -0.706026 0.099857 1.060922 4.471793 -1.198842 3.940093 1.497778 2.109083 0.488967 3.145414 -0.230187 2.996334 1.359756 -2.234565 0.568802 -2.284689 -1.264765 0.174718 1.264054 -2.440621 -1.809605 1.377701 -3.833135 -3.494111 2.561651 -0.187017 -0.821517 -2.945058 -1.359586 2.027858 1.494558 -1.620429 -3.330685 -1.640544 2.521720 -1.011710 -1.884219 0.465980 -1.009336 -0.129487 0.054699 -2.431949 -0.293244 2.519573 -1.817321 -1.640460 3.339291 -0.631877 1.658049 -0.690824 0.641916 -0.755188 1.114168 0.634775 1.876778 -0.247367 -0.858520 -3.508269 0.067500 0.145834 -0.435870 -0.999832 -0.352881 0.332838 1.484123 0.335836 2.616969 -1.517436 1.841903 2.603942 0.199654 -1.130982 -2.496327 -0.494226 -2.593972 0.598919 -1.401477 -2.139078 0.387297 2.685277 0.150595 0.899089 2.213312 -1.788199 1.014994 -0.651552 0.336130 1.021849 -1.346149 0.939942 -1.461843 -2.744607 1.899682 2.586863 1.082048 1.119430 -1.226768 0.160581 -0.702751 -1.453805 1.155930 0.730990 0.131224 3.461812 2.047289 4.379426 -1.932780 0.085997 0.004011 -1.119139 1.037209 -1.236683 -3.413695 0.720526 1.206487 0.858188 4.254686 -0.681668 -1.624494 1.541803 0.089424 0.731802 -2.339109 2.351911 -2.866308 -0.091861 -1.279861 -0.876820 -1.766255 -1.467550 -2.580839 -0.832925 3.769692 -1.752715 -3.323283 2.439924 -0.797118 0.910373 -4.375621 1.694606 -1.677386 2.380766 -0.210669 -0.131004 -0.194031 1.154429 -0.951606 0.171010 1.864653 -2.559749 2.382228 2.528748 0.557406 0.116886 0.681260 1.440597 -0.824103 -0.518756 -2.613657 2.357877 -0.677001 -0.218564 -0.576406 -1.466630 1.800378 -0.367894 -0.356796 -0.701435 1.737466 -0.843857 -0.326454 2.780818 0.051386 -1.305248 1.692535 -0.107465 1.513223 -1.657321 -0.334936 -1.345422 0.710884 0.631212 1.586466 -3.975582 -1.799970 -2.998213 -3.263402 -0.772347 1.246340 0.676735 1.043784 0.123934 -3.899627 -2.484729 3.491397 -0.954555 1.746639 2.113143 2.077128 2.548307 2.279185 0.081798 -0.669997 -1.180199 -0.591256 -1.851147 -1.223174 -0.583180 2.040820 -1.496447 2.272293 1.879306 -0.266213 1.421666 -0.233212 0.874394 -2.339252 3.966228 2.314005 -1.594444 0.768431 1.783240 3.960042 -2.531348 -2.003973 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__copy_move::__assign_one(suffix*, suffix*) = -0.069333 -0.496184 1.106413 0.856990 0.005696 0.370995 0.096092 -0.803678 1.014288 0.143085 -0.116291 0.126917 -0.644100 0.347230 -0.630029 0.481859 -0.759251 -0.720973 -0.311297 -0.673728 -0.481718 -0.623107 0.240253 0.030566 0.342500 0.024958 -0.560481 0.083811 -0.931117 -0.437026 0.640809 -0.232261 0.268959 -0.271140 0.104678 -1.404134 0.804134 0.574241 -0.324253 -0.757543 0.149406 -0.622714 0.041358 -0.355805 0.024767 0.061551 -0.124130 0.348649 0.594351 0.105050 0.351790 0.338482 -0.197129 1.571879 -0.768452 0.631873 0.273090 0.152617 -0.161826 0.381556 0.196871 0.304489 0.372863 0.506121 -0.254284 -0.601898 -0.094584 -0.349176 -0.620097 0.777676 -0.096808 -0.221420 -0.593626 -0.222410 -0.790751 -0.272622 -0.949171 0.598482 1.150234 -0.770097 0.544944 0.160567 0.528413 0.131177 0.522135 -0.052264 0.997152 0.223245 -0.414540 -0.081975 -0.599473 0.146464 0.054340 -0.167824 -0.369112 -1.011461 0.457221 -1.029064 -0.918739 0.303677 0.298633 0.008309 -0.536066 -0.008052 0.442902 0.158509 -0.488330 -0.844989 -0.226663 0.376413 0.086587 -0.234768 0.291722 -0.459021 -0.038388 -0.419718 -0.931331 -0.117162 0.092352 -0.381243 -0.396322 0.835254 -0.391365 -0.092912 -0.046747 0.195519 -0.299889 0.738829 -0.188196 0.516550 -0.183785 0.215581 -1.057137 0.225719 0.320009 0.489776 -0.209251 0.282653 -0.280907 0.176990 -0.661033 0.023291 -0.427820 0.218217 0.356440 -0.418587 -0.578609 -0.265435 -0.018746 -0.973944 0.166141 -0.574675 -0.516250 -0.012584 0.689721 0.960001 0.590235 0.956108 -0.591831 0.385061 -0.133068 -0.007381 0.637306 -0.125207 0.475704 -0.397458 -0.672430 0.332365 0.163048 0.114464 0.219998 -0.271862 -0.047608 -0.745558 -0.142138 0.223481 0.415431 -0.110918 0.715887 0.493009 0.339564 -1.186479 0.413077 0.490368 -0.173320 0.196617 -0.133818 -0.851526 0.372919 0.270585 0.163204 0.603304 -0.101046 -0.359802 0.120022 -0.155965 0.469111 -0.547509 -0.083314 -0.520720 -0.344771 -0.617214 0.362212 -0.339709 -0.236931 -0.265536 -0.469219 0.854544 -0.762924 -0.615125 1.088374 -0.051068 0.465594 -0.879900 0.485196 -0.472019 0.753234 -0.172465 0.177466 -0.121109 0.330470 -0.465534 0.260875 0.411387 -0.414231 0.360187 0.952029 0.303996 0.347751 0.067918 0.758254 -0.246375 0.347048 -0.404333 0.840809 -0.108605 -0.510607 0.169947 -0.399161 0.065265 -0.302968 0.333714 0.762720 0.655333 0.346633 0.488235 0.531666 0.596908 -0.434316 0.432915 -0.123518 0.178309 -0.405959 -0.052230 0.160801 0.114311 -0.340193 0.226112 -0.900895 -1.082451 -0.920812 -0.712847 0.173164 -0.361065 -0.069379 -0.130992 -0.053270 -0.810107 -0.548286 0.524454 -0.421335 0.570965 0.359222 0.359939 0.549997 0.990138 -0.588338 -0.009295 0.107268 0.013063 -0.138211 -0.239053 -0.670728 0.803899 -0.508615 0.257096 0.829305 -0.271277 0.255878 0.252696 0.442421 -0.449894 1.020392 0.427239 -0.283157 0.624867 0.663682 1.212799 0.418970 -0.501328 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(suffix&, suffix*) = 0.810317 -2.059359 4.734496 3.815156 -0.455497 1.193063 0.080147 -2.935641 2.022495 1.012691 -0.920825 2.006392 -1.562174 1.272395 -2.977606 2.397380 -2.955963 -1.860755 -1.433833 -1.981693 -1.343286 -1.126576 0.794013 0.950043 1.988898 0.829721 -2.311192 0.024440 -2.626291 -4.030211 0.517084 -0.290952 1.101464 -1.947741 0.383721 -4.308260 3.158502 3.209418 -1.134515 -3.245335 1.355383 -1.111736 -1.392395 -0.573456 -1.284074 0.374767 -0.550702 1.028422 1.076139 1.441520 0.746469 2.330066 1.920520 5.510906 -0.789373 2.656438 2.401170 0.781478 -0.064132 0.705052 1.082358 1.179231 0.645027 0.848797 0.823594 -2.462391 -1.165128 -0.344599 -1.230311 2.209654 -0.936002 -1.702929 -1.800445 -1.136609 -3.071273 -0.090885 -2.460654 2.376725 3.648658 -2.868182 1.698492 0.418378 0.469246 0.117063 1.051749 -0.140840 2.097852 1.586596 -0.039982 -0.498214 -0.242395 -0.183624 1.015669 -0.780366 -2.683060 -5.097180 2.662231 -5.009424 -3.345665 1.475105 1.641336 -1.611279 -0.198053 -1.006678 0.730653 0.815333 -1.485223 -2.031098 -0.372964 1.509605 1.213756 -1.468430 0.339887 -0.210472 0.501412 0.822687 -3.527537 0.862403 0.965570 -0.864432 -0.435501 2.164866 0.677486 0.132291 -0.738705 0.877519 -0.809409 2.252274 -0.494911 2.421087 -1.037120 2.598017 -1.035520 1.781716 1.555876 -1.392608 -1.659291 1.020912 -0.638190 1.288675 -0.896407 1.311720 -2.413605 1.078171 1.292787 -0.710452 -2.466214 -1.732468 -1.652076 -3.117353 0.042423 -1.780531 -3.118978 0.961675 2.255442 1.681768 1.531778 2.175645 -1.766986 0.165228 0.507953 0.021204 1.607404 -1.798955 1.032189 -1.330211 -2.953012 1.997032 0.960779 1.038886 0.284868 0.283535 0.248730 -1.762916 -0.345643 1.725066 1.612139 -0.613125 2.662333 2.154096 2.045004 -1.563970 0.440752 1.065567 -1.629916 0.493330 -0.842449 -3.464569 0.657150 0.831689 2.039385 3.367325 -0.136686 -0.446836 1.539322 -0.718405 0.864765 -1.659805 0.962503 -2.030270 -0.961400 -1.543415 0.579225 -0.356045 -0.179569 -1.525652 -2.159215 3.431964 -4.680754 -1.698357 3.468290 -0.266638 0.732779 -3.055215 2.233781 -1.314645 2.648785 0.886359 0.187384 0.368607 -0.508732 -2.542387 0.538055 1.596267 -1.378848 0.869739 3.064580 0.692695 0.089308 -0.215171 2.199235 -1.769884 2.006034 -1.995013 2.952538 -0.425949 -2.063525 -0.441651 -0.953052 -0.627525 -1.957070 1.097080 1.887389 0.451773 1.342376 0.886881 1.601910 2.696415 -1.910709 2.632487 -0.527975 0.486338 -1.818412 -0.608484 0.565799 0.806438 -0.625389 1.512867 -3.409060 -2.957025 -5.817904 -2.451950 0.372746 -1.916344 1.172407 -1.566875 -1.208852 -2.513393 -3.368937 3.524587 -1.205488 0.387014 2.812760 1.463922 2.079177 2.595619 -0.739645 1.348288 -0.999168 0.585684 0.291310 -1.285436 -1.333204 2.334068 -0.979388 0.384891 3.288527 -0.553469 2.112441 0.668101 0.117103 -1.632546 3.314642 1.248182 -1.633029 1.470416 2.555293 2.372092 -0.138482 -2.064249 -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.109863 -0.520881 1.031658 0.953835 -0.101503 0.320326 0.150940 -0.649509 0.840841 0.346129 -0.002910 0.115539 -0.628969 0.299147 0.117886 0.617249 -0.755395 -0.533307 -0.217442 -0.560718 -0.430030 -0.546712 0.245055 0.042200 0.346790 0.201833 -0.461563 -0.103916 -0.485062 -0.441997 0.620261 -0.238213 0.488987 0.289352 0.136659 -1.843931 0.726691 0.436590 -0.275256 -0.745060 0.111748 -0.431480 0.203225 -0.290500 -0.113088 0.194321 -0.031076 0.229426 0.554074 0.212367 0.271070 0.119419 0.102403 1.320024 -0.553302 0.510823 0.228415 -0.105030 -0.223046 0.149331 0.221212 0.215933 0.505405 0.449330 -0.182238 -0.603700 -0.159834 -0.414797 -0.844176 0.633400 0.034495 -0.178772 -0.658293 -0.315848 -0.337437 -0.325854 -1.023784 0.684268 1.068819 -0.733467 0.588654 0.190124 0.326495 0.047668 0.464751 -0.011100 0.823162 0.198424 -0.378647 0.125340 -0.292365 -0.335700 0.174879 -0.068508 -0.286745 -0.781296 0.298632 -0.313778 -0.773177 0.413232 0.292647 0.096551 -0.830413 -0.246240 0.406965 0.338615 -0.461573 -0.788884 -0.359530 0.221455 0.085253 -0.293905 -0.054830 -0.255439 -0.249349 -0.416962 -0.861743 -0.143906 0.099054 -0.405409 -0.305979 0.689340 -0.396971 -0.023044 -0.064657 0.171984 -0.317799 0.853929 -0.060856 0.527257 0.184368 0.021781 -0.850057 0.096258 0.330258 0.701645 0.012238 -0.084032 -0.341882 0.165549 -0.558501 0.145887 0.097396 0.398249 0.819932 -0.165887 -0.553963 -0.251997 0.002097 -0.993332 0.289173 -0.627623 0.096937 0.357028 0.614104 0.593665 0.519767 0.830157 -0.722369 0.458885 -0.273502 0.007909 0.593298 0.384757 0.439444 -0.361613 -0.500866 0.287456 0.257817 0.139220 0.259792 -0.296254 0.024653 -0.542911 -0.294906 0.263873 0.313537 -0.142451 0.496846 0.393277 1.016248 -0.793030 0.282809 0.414798 -0.088945 0.157824 -0.026730 -0.780553 0.366240 0.133465 -0.140117 0.519660 -0.176320 -0.412461 0.130301 -0.176268 0.267284 -0.432572 0.082821 -0.477095 -0.125396 -0.597021 0.143990 -0.370851 -0.313778 -0.189938 -0.035729 0.875072 -0.435029 -0.504019 0.892914 -0.326137 0.353205 -0.874803 0.970491 -0.423557 0.408228 -0.550945 -0.200249 -0.132618 0.253288 -0.310090 0.144801 0.393794 -0.218118 0.064717 1.020974 0.264487 0.107575 0.072370 0.656946 0.003900 0.384097 -0.281577 0.886311 -0.135450 -0.001222 0.055780 -0.338481 0.160644 -0.259945 0.084495 0.730815 0.597877 0.211215 0.371379 0.421165 0.456296 -0.415479 0.489168 -0.004762 0.361668 -0.342734 0.011278 0.126298 0.279282 -0.309167 0.287101 -0.771781 -0.862959 -0.529957 -0.473626 -0.188010 0.283388 0.101806 -0.089705 -0.047276 -0.627500 -0.438492 0.404864 -0.377735 0.418784 0.239618 0.304944 0.584697 0.873415 -0.391340 -0.229345 -0.007987 -0.108646 -0.099488 -0.103184 -0.544340 0.684673 -0.498067 0.238192 0.703325 -0.192714 0.183173 0.002486 0.841581 -0.414554 0.975128 0.328993 -0.198139 0.636707 0.671866 0.949688 0.171242 -0.432057 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(int (*)(suffix, suffix)) = -0.155175 -0.443881 0.678477 0.635123 0.020957 0.249042 0.306676 -0.375949 0.750143 0.243181 -0.019730 -0.040370 -0.625151 0.172694 0.136767 0.366445 -0.485907 -0.519661 -0.035684 -0.353196 -0.245620 -0.535007 0.214298 -0.007457 0.231663 0.037811 -0.241834 -0.212123 -0.558394 0.024420 0.626753 -0.243006 0.365147 0.372051 0.047444 -1.284088 0.429500 0.236621 -0.193239 -0.569155 0.053542 -0.457717 0.301039 -0.287782 0.148209 0.135978 0.086156 0.327855 0.469969 0.098328 0.201174 -0.114044 -0.139658 0.953829 -0.580974 0.364501 0.107117 -0.058528 -0.161427 0.171744 0.141842 0.074731 0.444981 0.444840 -0.324006 -0.353711 -0.103680 -0.428473 -0.733011 0.463976 0.087539 0.069842 -0.576984 -0.129243 -0.187054 -0.285006 -0.996864 0.510310 0.878403 -0.564458 0.572255 0.201324 0.432349 -0.016980 0.373357 0.020197 0.594638 0.071947 -0.438908 0.044713 -0.596429 -0.205074 -0.004328 -0.131453 -0.060894 -0.444336 0.152567 -0.000260 -0.605022 0.249152 0.097233 0.201096 -0.620743 0.055266 0.333867 0.321430 -0.394082 -0.709613 -0.313999 0.116669 -0.033376 -0.170236 0.047144 -0.276261 -0.283846 -0.627391 -0.609035 -0.260175 0.038811 -0.449975 -0.275798 0.575440 -0.525975 0.067436 0.031785 0.064900 -0.198955 0.671529 0.061134 0.284463 0.356152 -0.253384 -0.948982 0.057341 0.249281 0.965575 0.064297 0.071005 -0.218460 0.072216 -0.439658 -0.052020 0.233585 0.272058 0.505595 -0.293065 -0.360109 -0.169128 0.225920 -0.667657 0.309369 -0.488689 0.302064 0.131206 0.481592 0.563973 0.405352 0.827060 -0.610013 0.451528 -0.250061 0.023303 0.429909 0.495208 0.396272 -0.280345 -0.340442 0.113296 0.229721 -0.006414 0.203610 -0.291649 -0.007802 -0.530887 -0.225137 0.045621 0.201829 -0.169972 0.409986 0.237097 0.473857 -0.826105 0.269295 0.337369 0.040099 0.120783 0.027992 -0.629466 0.443879 0.067207 -0.223036 0.210094 -0.129142 -0.396272 0.081451 -0.167405 0.223683 -0.345492 -0.045800 -0.378259 -0.226624 -0.520296 0.254704 -0.307760 -0.377523 -0.064720 0.128637 0.626497 0.037134 -0.356522 0.541033 -0.221032 0.276195 -0.667647 0.808053 -0.363706 0.223862 -0.495957 -0.139220 -0.160939 0.421724 -0.083465 -0.014924 0.294711 -0.165596 0.186416 0.776552 0.232534 0.141755 0.198665 0.531763 0.100635 0.137063 -0.145314 0.567924 -0.102254 -0.019193 0.183775 -0.299494 0.293009 -0.055993 0.021772 0.769611 0.642870 0.122249 0.435984 0.317328 0.273776 -0.275296 0.228179 -0.004944 0.426591 -0.217420 0.064700 -0.009484 0.091974 -0.269143 0.214879 -0.583374 -0.794527 0.001418 -0.387117 -0.105217 0.148191 -0.009596 0.046238 0.113783 -0.626644 -0.214560 -0.091205 -0.324027 0.352452 0.063994 0.207963 0.447463 0.681213 -0.413541 -0.301391 0.183693 -0.026555 -0.193121 -0.062529 -0.425193 0.442878 -0.519964 0.258733 0.480589 -0.154068 -0.020264 -0.066656 0.832659 -0.334319 0.802860 0.315436 -0.149344 0.549426 0.500042 0.902601 0.239438 -0.307337 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::~_Vector_base() = 0.788666 -2.452615 5.360329 4.313660 -0.970046 1.995677 0.156500 -3.437606 2.668213 1.863986 -0.893352 0.963765 -2.301164 0.921073 -1.085909 2.280870 -3.587025 -1.435322 -1.459168 -2.344990 -1.138124 -2.125545 0.734710 1.170877 1.807877 1.873839 -1.638742 0.491603 -1.727137 -4.645350 1.796394 -0.480965 1.670500 0.171244 1.130025 -5.900841 4.028189 3.196256 -0.971492 -3.742851 0.762264 -0.329338 -1.342675 0.191795 -1.106152 1.245388 -0.431617 1.899855 1.469113 1.584202 0.461836 0.650008 2.377836 4.986705 -0.856217 2.781228 1.967720 -0.075674 0.418603 1.042925 0.662802 1.251068 0.907473 1.737824 0.885174 -2.314990 -0.085640 -0.461601 -2.661508 2.801797 -0.665214 -1.972995 -2.104251 -1.731408 -2.218946 0.108321 -3.783208 2.974501 4.652084 -2.241890 2.616432 0.707854 0.369241 -0.218562 1.393041 -0.289595 2.656003 1.532184 -0.930223 0.343098 -0.195423 -1.706656 1.426542 -0.695006 -2.606886 -4.607968 2.298935 -3.852626 -3.017769 2.014587 1.476044 -1.441441 -1.376985 -1.631830 1.094985 0.805889 -1.701851 -2.742967 -0.802933 1.826119 0.350018 -1.154471 -0.040659 0.454491 -0.292667 0.546874 -3.107712 0.128464 0.901272 -1.363921 -0.377264 2.557199 0.539691 0.315951 -0.440375 1.075549 -0.931776 2.420588 -0.108264 2.882845 -0.178235 2.099651 -0.743893 1.442347 1.629354 -0.708716 -0.149440 -0.168817 -0.521728 1.533711 -1.213431 1.850201 -1.677395 1.001348 2.720037 -0.340589 -2.099624 -1.301932 -1.414112 -3.878335 0.390078 -2.223280 -2.588535 1.472915 2.563166 1.420965 1.486455 1.965452 -3.316573 0.394241 -0.704420 0.205645 1.226581 -0.054758 1.022987 -1.348737 -2.684205 1.375824 1.096783 1.103424 0.729700 -1.087388 -0.058140 -1.558881 -0.499081 2.190106 1.401027 -1.035475 2.218492 2.550896 4.149986 -1.239770 0.301368 1.526689 -1.470744 0.357405 -0.220645 -3.915742 1.077417 0.778967 1.477761 3.380165 -0.639391 -0.335863 1.571673 -1.082803 0.510086 -1.914000 1.093429 -2.440354 -0.332486 -2.087540 0.577575 -0.958102 -0.888530 -1.582699 -0.777762 3.586815 -3.963277 -1.723559 4.232022 -1.022899 0.781986 -2.938736 3.023957 -1.367409 1.883805 0.084616 -0.422998 -0.019046 -0.373595 -1.888534 0.108627 1.342116 -1.033529 1.135210 3.722327 0.719294 -0.495255 0.029204 2.654123 -1.675491 1.295137 -2.463471 3.097606 -0.518599 -0.618479 -0.753846 -1.303479 -0.175424 -2.330028 0.494332 1.660922 1.143061 0.725157 0.802482 1.315496 1.750402 -1.273932 2.921741 -0.051066 0.613304 -1.870841 -0.405625 0.749814 1.443836 -0.943460 2.013018 -3.934638 -3.138587 -4.826852 -2.152049 -1.275324 -0.546860 1.694786 -0.671874 -0.740492 -2.402303 -3.279846 4.076991 -1.169305 0.355902 2.403613 1.659813 2.105678 3.249268 -0.426002 0.680873 -0.968195 0.597515 -0.430929 -0.919955 -1.342500 2.755338 -1.389942 0.714503 3.422002 -0.565153 1.899318 -0.689063 1.799577 -2.684819 3.493530 1.685956 -1.115990 1.721703 2.538747 2.848434 0.289850 -1.887124 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*) = -0.340755 -0.436494 0.647227 0.548101 0.074819 0.246665 0.256879 -0.354150 0.725840 0.295588 -0.030704 0.021719 -0.599543 0.160226 -0.004132 0.358977 -0.434039 -0.543282 -0.008939 -0.335569 -0.252461 -0.540716 0.213496 -0.003012 0.200167 -0.055159 -0.293635 -0.124987 -0.593794 -0.236293 0.499942 -0.284686 0.349943 0.083354 -0.027265 -1.306957 0.455065 0.268215 -0.205382 -0.539848 0.089812 -0.452029 0.295918 -0.213746 0.014825 0.112375 0.120821 0.113089 0.468360 0.095469 0.313128 -0.087329 -0.115123 0.988167 -0.584886 0.380380 0.100850 -0.067577 -0.218301 0.156053 0.134583 0.033358 0.461796 0.472021 -0.341969 -0.319745 -0.053240 -0.332063 -0.744776 0.447101 -0.049594 0.044825 -0.472502 -0.077845 -0.291705 -0.305140 -0.542179 0.360701 0.895637 -0.456219 0.596345 0.164443 0.418280 0.025096 0.358934 0.030864 0.593460 0.072896 -0.471511 -0.012524 -0.365047 -0.020494 -0.039548 0.151995 -0.014994 -0.327544 0.187151 -0.146100 -0.606321 0.250485 0.059159 0.208738 -0.705483 0.000611 0.366340 0.317403 -0.415871 -0.740508 -0.342190 0.113567 -0.044063 -0.166346 0.086980 -0.373600 -0.265801 -0.498464 -0.574833 -0.305413 0.029318 -0.492082 -0.360389 0.571903 -0.472354 0.112119 0.048823 0.154326 -0.183394 0.597622 0.031623 0.319669 0.161841 -0.195036 -0.961434 -0.128142 0.199345 0.776550 -0.017534 0.020695 -0.230061 0.040203 -0.425834 -0.062339 0.089366 0.280302 0.591652 -0.254024 -0.339093 -0.144226 0.188580 -0.759942 0.248318 -0.491802 0.166045 0.137682 0.480934 0.422369 0.409871 0.907336 -0.515267 0.467823 -0.220471 -0.088973 0.460453 0.234061 0.415445 -0.283428 -0.371414 0.143653 0.286268 0.046766 0.185619 -0.308555 -0.026368 -0.515145 -0.228637 0.092568 0.223800 -0.086089 0.367683 0.191008 0.632999 -0.829903 0.278631 0.333344 0.072789 0.138109 -0.027593 -0.621861 0.366938 0.111770 -0.220467 0.237741 -0.085380 -0.465208 0.085193 -0.160054 0.263807 -0.421137 0.035470 -0.376146 -0.106503 -0.460358 0.072650 -0.299578 -0.336779 -0.095580 0.050880 0.602217 -0.113085 -0.435715 0.545593 -0.094035 0.341571 -0.757425 0.706293 -0.383246 0.416080 -0.489525 -0.066711 -0.147627 0.441338 -0.035691 0.057976 0.288636 -0.175772 0.265530 0.746235 0.247076 0.224397 0.161000 0.535238 0.129066 0.116616 -0.111350 0.527324 -0.070566 -0.116566 0.184703 -0.304887 0.259731 -0.007168 0.065782 0.570219 0.675484 -0.010461 0.436118 0.393977 0.297595 -0.264547 0.225548 -0.027141 0.483182 -0.200878 0.032077 -0.036724 0.189980 -0.250596 0.220194 -0.590978 -0.781050 -0.134382 -0.500242 -0.092094 0.197425 -0.027120 0.039938 0.166748 -0.617714 -0.167454 0.156329 -0.304326 0.590230 0.077694 0.239133 0.432844 0.659251 -0.377971 -0.349050 0.091259 -0.057791 -0.215870 -0.049457 -0.400989 0.389693 -0.542567 0.286891 0.381080 -0.185259 -0.061648 0.077155 0.570355 -0.338975 0.798417 0.347299 -0.090236 0.607690 0.376387 0.908331 0.165392 -0.303226 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy_aux::__destroy(int*, int*) = -0.116151 -0.214664 0.238613 0.241338 0.084743 0.060262 0.271148 -0.024995 0.374635 0.247949 -0.050915 -0.102536 -0.356653 0.041816 0.216541 0.209918 -0.141628 -0.254283 0.124791 -0.055799 -0.030747 -0.283146 0.147942 -0.121145 0.109888 -0.014618 0.004697 -0.203938 -0.220554 0.071819 0.274800 -0.185285 0.152863 0.323486 -0.021613 -0.371491 0.115514 0.002969 -0.092844 -0.240563 0.016573 -0.205718 0.271439 -0.109698 0.281690 0.135177 0.183056 0.234362 0.232204 0.112482 0.151177 -0.277766 -0.041392 0.273090 -0.306443 0.109061 0.010451 -0.056555 -0.050700 0.071600 0.059674 -0.080194 0.207073 0.262380 -0.198603 -0.084165 -0.102974 -0.255189 -0.367860 0.149626 0.016048 0.182779 -0.352497 -0.024969 0.114945 -0.134923 -0.903442 0.198745 0.425977 -0.235332 0.329301 0.180162 0.283319 -0.047568 0.109910 0.059239 0.139975 -0.010528 -0.287490 0.045265 -0.271588 -0.164735 -0.043301 -0.087253 0.114662 -0.040441 0.006029 0.316358 -0.225229 0.111352 -0.036748 0.204287 -0.212300 0.192419 0.116528 0.229022 -0.195667 -0.353541 -0.125504 -0.086869 -0.042050 -0.020184 0.021536 -0.166740 -0.240262 -0.346158 -0.232675 -0.216303 -0.043458 -0.314194 -0.106877 0.221326 -0.260248 0.108086 0.069372 -0.018357 -0.040717 0.359001 0.172376 0.129081 0.297041 -0.235456 -0.663282 0.112504 0.182492 0.546523 0.097136 0.147074 -0.081251 -0.034759 -0.188833 -0.088932 0.247442 0.145828 0.289200 -0.220480 -0.136044 -0.065800 0.185038 -0.209322 0.264636 -0.219359 0.395776 -0.046828 0.200512 0.209541 0.202313 0.465644 -0.367605 0.183655 -0.193701 0.030504 0.148110 0.437921 0.219807 -0.103883 -0.049938 -0.030574 0.230862 -0.126756 0.133518 -0.191287 0.034884 -0.284331 0.007104 0.008241 0.041327 -0.187422 0.151393 0.021632 0.144262 -0.292582 0.084451 0.182312 0.144457 0.007856 0.084089 -0.289318 0.342704 -0.035926 -0.131629 -0.125725 -0.027084 -0.170202 0.042719 -0.157434 0.060205 -0.117585 -0.069564 -0.142645 -0.148166 -0.215063 0.260767 -0.149204 -0.261759 0.126175 0.307509 0.225328 0.362906 0.010402 0.047701 -0.141682 0.025598 -0.167903 0.567960 -0.188757 -0.039750 -0.310017 -0.110694 -0.106725 0.323363 0.133720 -0.171557 0.116080 0.040053 0.108377 0.292331 0.140355 0.019451 0.197564 0.246330 0.117737 -0.029455 0.067908 0.137803 -0.056450 0.119629 0.157700 -0.123111 0.223112 0.084295 -0.096503 0.468187 0.331123 -0.070528 0.278370 0.030388 0.090290 -0.104164 0.049870 0.028044 0.384175 -0.087452 0.060657 -0.085062 -0.031798 -0.158321 0.093996 -0.219098 -0.307313 0.345319 -0.042953 -0.148419 0.162194 -0.012198 0.076758 0.169494 -0.265901 -0.005201 -0.183983 -0.147130 -0.019664 -0.099399 0.021788 0.190715 0.258731 -0.142805 -0.279024 0.076471 -0.028632 -0.126700 0.021673 -0.098994 0.102824 -0.348082 0.086878 0.100556 -0.098181 -0.175109 -0.063812 0.504430 -0.153117 0.341625 0.163013 0.014904 0.307947 0.266307 0.516274 0.063368 -0.099931 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -0.406894 -1.625864 2.728024 2.454015 0.573420 1.086662 0.934294 -1.790256 2.085017 1.805447 -0.269428 0.814358 -1.827855 0.591602 -0.750118 1.676052 -1.308231 -1.753458 -0.429711 -1.256053 -0.776771 -1.577265 0.772348 0.272590 1.168162 -0.479665 -1.333326 -0.530105 -2.420884 -2.468829 0.895755 -0.458926 1.128726 -0.879469 -0.138010 -3.637079 2.081675 1.967351 -0.700911 -2.273546 0.718986 -1.125987 -0.194621 0.038508 0.058397 0.533400 0.051829 0.446097 1.192162 0.961035 1.353704 0.661606 0.649597 3.543875 -1.358820 1.928635 1.004854 0.238725 -0.353997 0.868058 0.550415 0.522308 1.317350 1.295147 -0.377427 -1.278987 -0.369554 -0.321050 -2.084627 1.575229 -0.276069 -0.868675 -1.446861 -0.371746 -1.194980 -0.451294 -1.410205 1.190505 2.957465 -1.483405 1.980817 0.575831 0.878238 -0.274687 1.113234 -0.272213 1.833971 0.656941 -0.988846 -0.662184 -1.216913 -0.382406 0.127652 0.476649 -1.077896 -1.736949 1.227674 -1.319469 -2.446899 0.939887 0.500984 -0.330452 -1.905331 -0.146540 1.085090 0.892766 -1.039112 -2.299708 -1.206139 0.951096 -0.034485 -1.086459 0.022456 -1.157466 -0.534864 -0.391859 -2.160542 -0.484749 0.507923 -1.389187 -1.478189 1.761030 -0.772003 0.430418 -0.189260 0.652181 -0.483428 1.260467 -0.115047 1.627669 0.756398 0.253229 -2.767429 0.406078 0.911529 0.829339 -0.508279 0.651975 -0.697135 0.595300 -1.008591 0.985814 -0.698842 1.258623 1.886371 -0.659096 -1.402360 -0.794939 0.444873 -2.105380 0.762328 -1.511743 -0.546161 -0.090408 1.760209 0.815980 1.171564 2.515162 -1.773382 1.175699 -0.072868 0.054882 1.316805 -0.414361 1.026800 -1.062284 -1.940110 0.911029 1.420151 0.172299 0.282157 -0.232338 -0.054810 -1.494427 -0.962697 0.463413 0.493467 -0.493509 1.686144 1.045244 2.892314 -2.297393 0.753010 0.941568 -0.478462 0.568674 -0.505614 -2.597940 0.850090 0.455113 0.558574 2.143061 -0.165854 -1.330015 0.742906 -0.431280 0.649332 -1.404798 0.878733 -1.685116 -0.590795 -1.171819 -0.126847 -0.518138 -0.908057 -0.594498 -0.105993 2.357773 -0.905636 -1.885640 2.171421 -0.798910 0.291658 -2.990366 2.584218 -1.200540 0.800405 -0.850404 -0.083653 -0.304282 1.290025 -0.960427 0.276765 1.096420 -1.053194 1.433163 2.838498 0.519840 0.436538 0.169691 1.504306 -0.296801 0.580625 -1.102661 2.237858 -0.232856 -0.832068 -0.192946 -0.982662 0.681480 -0.708651 0.030970 1.413120 1.570943 -0.205136 0.782547 1.395806 1.472978 -1.167409 1.814595 -0.014634 1.111536 -0.860361 -0.137538 0.101286 0.046804 -0.611803 1.376318 -2.318017 -2.094193 -1.298160 -2.265001 0.082102 0.050159 0.684298 -0.336512 -0.075001 -2.443847 -1.557755 1.235575 -0.877379 1.068211 1.224365 1.160321 1.420307 2.003151 -0.737927 0.089684 -0.716520 -0.135814 -0.641759 -1.268634 -0.476891 1.398920 -1.152934 1.014679 1.431202 -0.204345 0.676497 -0.119936 0.979292 -1.224164 2.634755 1.103790 -0.347032 1.585738 1.297174 2.930337 -0.539905 -1.264071 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 0.269766 -8.057682 16.378081 14.052782 -1.031954 7.078253 0.359096 -12.260356 10.795293 5.060956 -0.729071 4.655584 -7.402151 4.194723 -6.115234 7.363639 -9.959306 -7.287511 -5.582563 -9.723574 -6.644796 -7.007548 0.451459 3.770925 5.090426 0.843390 -8.060074 1.092841 -10.924193 -11.297431 5.574900 -1.050043 5.029401 -5.428975 3.068407 -23.339686 12.360584 11.158444 -3.538312 -12.210759 2.181161 -6.158117 -2.128141 -1.419549 -3.226967 1.566175 -2.639154 3.218887 6.059742 2.821152 3.663039 7.049586 2.823529 22.765889 -6.051588 10.560660 6.072433 1.374360 -1.349453 4.688977 2.591327 4.743741 5.173799 4.358320 -0.501308 -8.747699 -1.211406 -1.410248 -8.068952 9.295226 -0.286713 -7.871396 -6.957283 -4.884261 -10.765790 -3.192247 -9.877249 8.703871 14.748430 -10.149869 7.995384 2.019830 3.796760 1.848501 8.622387 -1.828643 13.622046 4.144110 -3.982581 0.020277 -4.910755 -1.287233 2.885082 -1.334935 -9.018480 -16.390897 7.074163 -14.268522 -13.132415 6.533360 4.577431 -3.091871 -8.624559 -5.388327 5.710113 2.125762 -6.480965 -10.923381 -4.884851 7.905585 1.420278 -5.749252 1.667110 -4.365330 0.864452 -1.909432 -12.288005 0.667931 4.412920 -3.752935 -5.972407 11.287287 -2.077630 -0.172054 -2.010431 3.389445 -4.005113 8.321939 -2.915585 8.283737 -2.272354 4.852073 -10.041387 3.422221 3.454903 1.011265 -2.483796 1.277501 -2.970005 4.717401 -5.731102 6.193465 -6.062671 5.496365 7.117147 -1.243223 -7.452641 -5.067896 -1.377703 -12.317849 1.498868 -7.302020 -9.232938 2.024581 9.287757 8.808121 5.663864 7.995825 -7.753534 4.496404 -0.979309 0.848561 7.675726 -3.485367 4.708258 -5.822658 -10.555094 5.734389 3.662564 3.475668 2.067455 -1.981848 -0.390372 -6.216421 -3.620509 3.533984 5.055585 -1.368351 10.651281 8.373349 14.150511 -12.537569 4.080549 3.894164 -5.723149 3.643287 -3.482027 -12.242895 2.196044 4.427226 2.716856 13.517294 -2.431692 -4.330810 3.428417 -1.314958 4.567947 -7.104327 3.065534 -8.567041 -3.838577 -6.928509 0.722505 -4.238601 -2.385950 -6.713207 -6.702527 13.232508 -14.336924 -9.556775 15.736602 -3.140473 4.127161 -13.792937 9.578739 -5.443885 7.588551 -2.211024 0.114734 -0.905587 3.661939 -8.029403 4.728895 6.174381 -7.351871 4.254165 14.414210 2.312188 2.869761 -0.323830 8.832317 -4.532149 4.564321 -8.560791 13.697870 -1.718205 -4.738927 -1.629111 -5.220173 0.903284 -5.780230 3.531664 6.063156 6.089901 3.373121 1.586751 8.849490 6.389857 -5.642201 9.142227 -1.698347 0.458462 -6.221744 -0.905387 2.042659 2.280554 -2.077313 4.814611 -13.390381 -10.885156 -16.016952 -9.071481 1.268478 -1.143715 1.823296 -2.013595 -3.167725 -11.556193 -10.386650 11.105778 -5.219333 4.193244 7.740848 6.858560 8.156580 12.319833 -3.820382 2.290696 -2.092677 -1.016334 -1.555511 -4.940928 -6.036440 10.748005 -4.622612 4.844762 11.085952 -1.165429 7.037312 1.904574 4.496149 -6.831330 13.217187 5.242841 -4.437983 5.934310 10.452493 13.181048 -0.132214 -7.196666 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() = 0.384725 -0.607427 1.697646 1.522725 -0.308722 0.379924 -0.094536 -1.204167 0.942973 0.560842 -0.175344 0.447422 -0.645586 0.616692 -0.508755 1.196945 -1.214214 -0.513408 -0.578376 -0.841362 -0.665188 -0.522874 0.481554 0.063552 0.733342 0.612777 -0.792484 0.081571 -0.400622 -1.524430 0.367058 -0.196497 0.486226 -0.063351 0.238792 -1.760008 1.283227 0.932136 -0.443634 -1.030807 0.351792 -0.323002 -0.227173 -0.248437 -0.332741 0.309143 -0.289008 0.418816 0.680743 0.585839 0.460677 0.633147 0.803365 1.735190 -0.451676 0.832033 0.508656 0.094524 -0.138668 0.177591 0.369975 0.547241 0.323779 0.407419 0.300541 -1.031606 -0.468567 -0.250229 -0.683536 0.953029 -0.336719 -0.588314 -0.957355 -0.610279 -0.629281 -0.123901 -1.835990 0.998782 1.360911 -1.053305 0.475448 0.199416 0.010988 -0.007236 0.391959 -0.111179 0.935158 0.504609 -0.106321 0.119823 0.374508 -0.422672 0.545311 -0.331496 -0.855389 -1.737178 0.732396 -1.271029 -1.123045 0.566846 0.701614 -0.343812 -0.375458 -0.454949 0.320846 0.246839 -0.541057 -0.821328 -0.044571 0.336057 0.555644 -0.495891 -0.115503 -0.117194 -0.026867 0.307405 -1.333580 0.137824 0.112938 -0.345612 -0.103377 0.732494 0.294182 -0.152500 -0.235858 0.305819 -0.345510 1.118094 -0.235650 1.098257 -0.282203 1.016126 -0.374052 0.756872 0.664225 -0.467176 -0.278937 0.187275 -0.459039 0.354573 -0.672709 0.496949 -0.561403 0.437766 0.984590 -0.141392 -0.942742 -0.356355 -0.638351 -1.331321 0.270750 -0.764741 -0.648963 0.364588 0.812173 0.599962 0.723020 0.701580 -0.915756 0.009282 -0.082342 0.094662 0.798013 -0.005820 0.460999 -0.467607 -0.875672 0.701266 0.340485 0.241379 0.241047 -0.056897 0.113112 -0.608609 0.017210 0.777185 0.505412 -0.312227 0.803569 0.662438 1.259370 -0.297885 0.265027 0.606111 -0.387089 0.202330 -0.140284 -1.188872 0.381236 0.186551 0.583007 0.959545 -0.160160 -0.070143 0.426615 -0.333900 0.346948 -0.600349 0.238233 -0.675916 -0.192721 -0.692842 0.375975 -0.160993 -0.123317 -0.250885 -0.345308 1.207226 -1.385429 -0.327243 1.423378 -0.396330 0.265300 -0.797835 1.144528 -0.496623 0.634514 -0.118136 -0.138534 0.098290 -0.229512 -0.784028 0.144881 0.564632 -0.179963 -0.024267 1.190646 0.274071 -0.119573 -0.087745 0.864611 -0.454292 0.897250 -0.533426 1.302420 -0.101055 -0.183353 -0.144867 -0.364175 -0.310938 -0.807121 0.211214 0.908782 0.261750 0.438732 0.318293 0.306560 1.009508 -0.688813 1.105728 -0.087071 0.090131 -0.677714 -0.153623 0.436164 0.369672 -0.434507 0.526691 -1.117982 -0.979156 -1.712222 -0.456887 -0.205581 -0.161029 0.491174 -0.545640 -0.437626 -0.509059 -1.113233 1.469569 -0.461378 -0.051417 0.693526 0.432745 0.706365 1.101063 -0.226096 0.291604 -0.503804 -0.037528 0.222469 -0.283083 -0.521629 1.014448 -0.382280 0.010257 1.156499 -0.313938 0.603607 0.081295 0.540510 -0.566947 1.088086 0.321181 -0.256730 0.775367 1.060093 0.937226 0.108889 -0.673299 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -1.321189 -4.886196 5.821139 4.912429 -0.006687 3.571186 0.710916 -2.391128 3.072382 1.814811 -1.921837 2.600437 -3.482498 -0.401316 -1.052405 0.737637 -2.870745 -3.573061 -0.341117 -1.501686 -0.447868 -2.963238 -1.864913 4.021422 1.350557 0.875148 -1.882962 0.612898 -6.132978 -3.348677 0.954040 -0.435647 2.415480 -0.398756 1.987956 -6.700106 3.686356 5.374816 -0.313736 -6.369194 0.434542 -2.509953 -0.863733 -0.210592 -1.183950 1.705372 1.234268 1.549142 0.309142 0.755474 -0.696712 0.205235 1.132259 6.061821 0.063171 4.578284 4.128884 0.191493 0.680861 0.712183 1.014887 -0.096539 2.417821 1.817333 -1.725165 -1.693065 -0.145958 -0.058284 -3.255450 1.910553 0.497422 -2.227897 -2.051647 -1.736096 -4.466657 -0.761732 -0.219332 2.789116 6.120352 -2.955400 5.361565 1.957588 3.028234 0.262968 3.804613 -0.440509 4.159500 1.810996 -2.546652 0.167822 -4.592499 -1.793467 0.129914 0.092327 -3.506895 -2.885044 2.495826 -5.928091 -5.120392 2.650021 -0.095119 -1.521809 -2.451944 -0.693899 2.376862 2.207839 -1.975406 -4.091891 -1.964963 3.329253 -1.080890 -2.448401 0.354422 0.342778 -0.033544 -1.324842 -3.922372 -0.121207 3.489717 -2.583202 -0.848517 4.402144 -1.769442 2.409695 -0.849436 0.417377 -0.458036 2.704337 1.236696 1.318453 0.401273 -1.314796 -3.242700 0.907308 0.209715 1.451124 -1.786849 0.333644 1.460030 1.994866 0.572319 1.936033 -2.187058 2.227708 1.598526 -0.525023 -1.968006 -3.848185 -1.317564 -3.538708 0.255278 -2.404484 -2.727414 1.820631 3.565305 2.231881 0.731287 4.385348 -2.952705 1.766273 -0.161162 0.363593 1.021197 -0.858982 1.324968 -2.311052 -3.811554 2.622036 2.442881 1.479641 1.186902 -1.312662 -0.072892 -1.932939 -2.488465 1.952408 1.466821 0.581720 5.139669 2.990648 3.343566 -3.645168 0.479637 -0.287651 -1.750278 1.089929 -1.135373 -5.077152 1.406086 1.283195 1.450453 5.353477 -0.793240 -1.772851 1.931781 -0.140360 0.814111 -3.257292 2.795032 -3.904083 -0.699717 -2.259146 -0.084863 -2.051653 -1.970870 -3.675995 -1.695869 5.383339 -3.389279 -4.732855 3.181960 -0.236088 2.497098 -5.968224 1.842557 -2.352853 4.346930 0.228694 -0.291765 -0.044382 0.164261 -1.129207 -0.026375 2.558312 -2.903991 2.503279 3.348024 0.625611 0.144535 1.600800 2.213504 -1.413160 -0.076619 -3.376111 2.696705 -0.392244 -1.293018 -0.297157 -2.035047 2.145374 -0.264603 -0.007633 1.356031 2.957815 0.508634 0.755713 3.544253 0.065451 -1.888911 1.747987 -0.433132 2.265017 -2.293154 -0.530397 -1.774356 1.279194 0.747638 1.905382 -5.652461 -4.592281 -4.802462 -4.826110 -0.681558 -0.830169 1.186739 0.987687 -0.060300 -5.298057 -3.814559 2.981357 -1.508135 4.021872 2.772836 3.041677 3.709837 3.069480 -0.854274 -0.732916 0.357492 0.579567 -2.323668 -1.138808 -1.878942 2.524637 -2.185909 3.031037 3.982887 -0.323441 2.279014 -0.609478 1.929217 -3.266393 5.650903 3.188859 -3.925039 0.987022 2.653180 4.262978 -1.907845 -3.206384 -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.335331 -1.268300 1.758780 1.536544 0.052953 1.140024 0.022972 -0.816511 0.595470 0.540028 -0.026406 0.738729 -1.107929 0.329554 -0.327812 0.248811 -0.699339 -0.719913 -0.572712 -0.659761 -0.139742 -0.770445 -0.359610 1.083853 0.403559 0.159378 -0.757179 0.192290 -1.897967 -1.063837 0.534718 -0.089843 0.865769 -0.375331 0.478771 -2.206094 1.161944 1.549223 -0.122066 -1.539287 0.326351 -0.640623 -0.065679 -0.095754 -0.365181 0.488168 0.034365 -0.368489 0.467136 0.175891 -0.170904 0.324891 0.399699 1.575207 -0.539965 1.118224 0.867908 -0.098634 0.289167 0.039549 -0.129832 0.254993 0.525983 0.279142 -0.380508 -0.803767 0.043039 0.045927 -0.977214 0.566492 -0.116783 -0.467484 -0.620555 -0.501347 -1.454953 -0.220508 0.054769 0.671200 1.580789 -0.592199 1.262254 0.050271 0.323370 0.441096 1.210396 0.168869 0.685435 0.424211 -0.614656 0.344642 -0.753139 0.145064 0.054545 0.612499 -1.007741 -0.913327 0.686861 -1.232024 -1.093725 0.894899 -0.055771 -0.466479 -1.029976 -0.772019 0.178380 0.629659 -0.829664 -1.258681 -0.444408 1.134561 0.402561 -0.628238 0.359593 -0.451085 -0.147272 -0.791396 -0.851081 0.151741 0.706127 -0.623901 -0.633249 1.390374 -0.422453 0.430355 -0.137258 0.516457 -0.648072 0.786446 0.103158 0.701177 -0.323437 -0.260389 -1.055182 -0.527202 0.204504 0.817958 -0.514934 -0.215239 -0.259692 0.389288 0.089089 0.533163 -0.166646 0.470336 0.846470 -0.125963 -0.293186 -0.651566 -0.075841 -1.222936 -0.155236 -0.534269 -0.798577 0.592914 0.907750 0.303912 0.389701 1.329171 -0.651738 0.252567 -0.209780 -0.388115 0.629856 -0.249191 0.307756 -0.608456 -1.162182 0.653048 0.367660 0.444562 0.398518 -0.236879 0.054508 -0.324663 -0.074253 0.438693 0.442036 -0.249139 1.382323 0.993324 1.144652 -0.743357 0.109188 0.126998 -0.861151 0.432544 -0.404450 -1.159044 0.207786 0.663387 -0.494617 1.469704 -0.366471 -0.754709 0.868858 -0.238000 0.465244 -0.875102 0.838928 -1.019437 -0.170248 -0.942890 -0.544038 -0.375071 -0.574394 -1.046099 -0.469985 1.421516 -1.128757 -0.943799 0.832971 0.461458 0.342753 -1.658639 0.684601 -0.587072 1.154225 0.182873 0.025540 0.057456 0.713642 -0.586175 0.070701 0.692534 -1.033486 0.684931 1.216149 0.268000 -0.174688 0.117923 0.845196 -0.225169 -0.013584 -1.062384 0.883274 -0.229556 -0.157559 0.034051 -0.548468 0.299202 -0.476166 0.088317 -0.042979 0.690784 0.230335 -0.084760 1.189472 0.225305 -0.088239 0.461740 -0.389904 0.411227 -0.619589 -0.096069 -0.266013 0.871036 0.400109 0.594237 -1.558940 -1.234606 -1.073462 -1.167686 0.094908 0.446930 -0.037418 0.393953 -0.148915 -1.552339 -1.046255 0.892858 -0.533282 1.229615 0.757797 0.694810 0.820306 0.991242 -0.310925 -0.191439 0.081865 0.270284 -0.284620 0.011338 -0.562574 0.921230 -0.704968 0.445092 1.110485 -0.250001 0.786790 0.093596 0.480612 -1.072474 1.773317 0.770065 -0.699616 0.710070 0.957326 1.272924 -0.212645 -0.577196 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() = 0.384725 -0.607427 1.697646 1.522725 -0.308722 0.379924 -0.094536 -1.204167 0.942973 0.560842 -0.175344 0.447422 -0.645586 0.616692 -0.508755 1.196945 -1.214214 -0.513408 -0.578376 -0.841362 -0.665188 -0.522874 0.481554 0.063552 0.733342 0.612777 -0.792484 0.081571 -0.400622 -1.524430 0.367058 -0.196497 0.486226 -0.063351 0.238792 -1.760008 1.283227 0.932136 -0.443634 -1.030807 0.351792 -0.323002 -0.227173 -0.248437 -0.332741 0.309143 -0.289008 0.418816 0.680743 0.585839 0.460677 0.633147 0.803365 1.735190 -0.451676 0.832033 0.508656 0.094524 -0.138668 0.177591 0.369975 0.547241 0.323779 0.407419 0.300541 -1.031606 -0.468567 -0.250229 -0.683536 0.953029 -0.336719 -0.588314 -0.957355 -0.610279 -0.629281 -0.123901 -1.835990 0.998782 1.360911 -1.053305 0.475448 0.199416 0.010988 -0.007236 0.391959 -0.111179 0.935158 0.504609 -0.106321 0.119823 0.374508 -0.422672 0.545311 -0.331496 -0.855389 -1.737178 0.732396 -1.271029 -1.123045 0.566846 0.701614 -0.343812 -0.375458 -0.454949 0.320846 0.246839 -0.541057 -0.821328 -0.044571 0.336057 0.555644 -0.495891 -0.115503 -0.117194 -0.026867 0.307405 -1.333580 0.137824 0.112938 -0.345612 -0.103377 0.732494 0.294182 -0.152500 -0.235858 0.305819 -0.345510 1.118094 -0.235650 1.098257 -0.282203 1.016126 -0.374052 0.756872 0.664225 -0.467176 -0.278937 0.187275 -0.459039 0.354573 -0.672709 0.496949 -0.561403 0.437766 0.984590 -0.141392 -0.942742 -0.356355 -0.638351 -1.331321 0.270750 -0.764741 -0.648963 0.364588 0.812173 0.599962 0.723020 0.701580 -0.915756 0.009282 -0.082342 0.094662 0.798013 -0.005820 0.460999 -0.467607 -0.875672 0.701266 0.340485 0.241379 0.241047 -0.056897 0.113112 -0.608609 0.017210 0.777185 0.505412 -0.312227 0.803569 0.662438 1.259370 -0.297885 0.265027 0.606111 -0.387089 0.202330 -0.140284 -1.188872 0.381236 0.186551 0.583007 0.959545 -0.160160 -0.070143 0.426615 -0.333900 0.346948 -0.600349 0.238233 -0.675916 -0.192721 -0.692842 0.375975 -0.160993 -0.123317 -0.250885 -0.345308 1.207226 -1.385429 -0.327243 1.423378 -0.396330 0.265300 -0.797835 1.144528 -0.496623 0.634514 -0.118136 -0.138534 0.098290 -0.229512 -0.784028 0.144881 0.564632 -0.179963 -0.024267 1.190646 0.274071 -0.119573 -0.087745 0.864611 -0.454292 0.897250 -0.533426 1.302420 -0.101055 -0.183353 -0.144867 -0.364175 -0.310938 -0.807121 0.211214 0.908782 0.261750 0.438732 0.318293 0.306560 1.009508 -0.688813 1.105728 -0.087071 0.090131 -0.677714 -0.153623 0.436164 0.369672 -0.434507 0.526691 -1.117982 -0.979156 -1.712222 -0.456887 -0.205581 -0.161029 0.491174 -0.545640 -0.437626 -0.509059 -1.113233 1.469569 -0.461378 -0.051417 0.693526 0.432745 0.706365 1.101063 -0.226096 0.291604 -0.503804 -0.037528 0.222469 -0.283083 -0.521629 1.014448 -0.382280 0.010257 1.156499 -0.313938 0.603607 0.081295 0.540510 -0.566947 1.088086 0.321181 -0.256730 0.775367 1.060093 0.937226 0.108889 -0.673299 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -0.343090 -1.583919 2.698850 2.256351 0.380270 1.007731 0.602050 -1.257130 1.708862 1.451554 -0.688291 0.897616 -1.424979 0.282953 -0.469683 1.319302 -1.344148 -1.691075 -0.175650 -0.878306 -0.494881 -1.242158 0.276407 0.512827 1.061581 0.088784 -1.179596 -0.279352 -2.132495 -2.279949 0.591139 -0.415628 1.015990 -0.347943 0.277946 -2.836706 1.869582 1.832477 -0.492111 -2.290346 0.535880 -0.812924 -0.372157 -0.002399 0.092771 0.870180 0.465577 0.677564 0.720908 0.865901 0.711317 0.263866 0.549102 2.700665 -0.679294 1.716779 1.176241 0.044637 -0.029852 0.606914 0.559994 0.180703 1.050080 1.146715 -0.390089 -1.066842 -0.243014 -0.228835 -1.630793 1.301076 0.067599 -0.785159 -1.189831 -0.483634 -1.136821 -0.217437 -0.921929 1.175315 2.712057 -1.153745 1.910359 0.777648 1.185607 -0.318009 0.929248 -0.281881 1.687644 0.730584 -0.892701 -0.485533 -1.425309 -0.878745 0.050434 0.422188 -1.084214 -1.103471 1.094939 -1.606763 -2.084499 0.848007 0.418756 -0.375925 -1.439119 0.106136 1.142823 0.914139 -0.579884 -1.753395 -0.962592 0.760539 -0.399312 -0.911420 -0.046657 -0.626523 -0.428358 -0.052416 -1.918679 -0.281637 0.704532 -1.137656 -0.872249 1.450341 -0.707881 0.514072 -0.290342 0.500750 -0.317797 1.051807 0.316405 1.257139 0.721288 -0.042881 -2.209389 0.635684 0.730861 0.611740 -0.557946 0.400263 -0.297860 0.612389 -0.653672 0.788332 -0.845999 1.186997 1.656879 -0.608055 -1.369018 -1.129531 0.048782 -1.606201 0.540441 -1.269943 -0.625417 0.053672 1.507075 0.809299 0.934602 2.251353 -1.677014 1.038784 -0.132206 0.254508 0.873244 -0.357727 0.756990 -0.919796 -1.501134 0.893055 1.309061 0.250435 0.423652 -0.459110 0.045765 -1.314062 -1.053143 0.877898 0.470843 -0.098959 1.602234 0.991874 2.087918 -1.772605 0.345555 0.658900 -0.424812 0.247908 -0.186636 -2.288709 0.839856 0.325289 0.917349 2.003436 -0.100641 -0.972377 0.715455 -0.221537 0.376719 -1.151396 0.923709 -1.505227 -0.245872 -0.853468 0.067275 -0.751172 -0.697622 -0.701363 -0.215162 2.186874 -0.722129 -2.047191 1.692206 -0.821328 0.497986 -2.629214 1.578820 -1.075786 0.907460 -0.503488 0.027045 -0.290215 0.497534 -0.750791 0.118895 0.941413 -0.854516 1.173101 2.107049 0.431091 0.139127 0.355570 1.187401 -0.430558 0.500189 -0.896894 1.546010 -0.221534 -0.529308 -0.253501 -0.684482 0.607165 -0.430263 -0.098780 0.953501 1.230294 -0.025255 0.658834 1.126234 0.974877 -1.101261 1.351585 0.032007 1.140631 -0.828404 -0.265003 -0.138560 0.114974 -0.407320 1.086968 -2.198595 -1.882529 -1.356372 -2.282833 -0.244547 -0.166509 0.724932 -0.097392 -0.095475 -2.006214 -1.468211 1.150650 -0.527628 1.310206 1.084152 0.950772 1.331543 1.511705 -0.689830 -0.164292 -0.572005 0.004538 -0.655740 -1.007218 -0.652361 1.272573 -0.956506 0.912948 1.575657 -0.337245 0.662200 -0.310807 1.111692 -1.210931 2.457679 1.131880 -0.881236 0.997864 0.906415 2.499410 -0.672841 -1.278729 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.404818 -0.790380 1.615932 1.377672 0.152358 0.478365 0.590833 -1.052330 1.282302 0.641525 0.107211 0.261193 -1.131149 0.459418 -0.345718 0.903713 -0.916375 -1.014826 -0.403581 -0.987641 -0.563057 -0.838675 0.629119 0.000696 0.701270 -0.321806 -0.845309 -0.509088 -1.368428 -0.792726 0.944576 -0.345395 0.787661 -0.357922 -0.213898 -2.841884 1.113717 0.907772 -0.520979 -1.078493 0.526312 -0.815395 0.197487 -0.292846 -0.184493 0.087215 -0.119939 0.029241 0.959455 0.336046 0.773454 0.484815 0.020966 2.351007 -1.207457 0.886750 0.283408 -0.029406 -0.497843 0.421809 0.246516 0.368835 0.838031 0.643767 -0.328970 -0.984042 -0.176221 -0.518890 -1.409345 0.940994 -0.078342 -0.299782 -0.818206 -0.152355 -0.752656 -0.510204 -0.539315 0.764925 1.620415 -0.978648 1.000367 0.092672 0.342262 -0.031470 0.588167 0.022078 1.033868 0.227051 -0.438625 -0.303560 -0.719854 0.104967 0.069523 0.397206 -0.428434 -1.169084 0.721865 -0.396259 -1.329642 0.448965 0.454479 -0.058725 -1.428619 -0.234402 0.480182 0.579742 -0.767710 -1.355166 -0.765302 0.481278 0.185514 -0.501114 0.039664 -0.856943 -0.405760 -0.822743 -1.273636 -0.180161 0.030938 -0.687364 -0.980293 1.087304 -0.811909 -0.008416 0.009499 0.570059 -0.568787 0.973295 -0.265270 0.858531 0.373605 0.004609 -1.633712 -0.345106 0.533620 1.373318 -0.193730 0.038822 -0.778080 0.205737 -0.841354 0.245566 0.081625 0.672057 1.195178 -0.493079 -0.739647 -0.221248 0.415614 -1.528879 0.332569 -0.927791 -0.020498 0.244935 0.960300 0.724759 0.854626 1.734640 -0.887481 0.891169 -0.134332 -0.305812 1.067795 0.005309 0.750000 -0.605049 -1.024808 0.342217 0.449169 0.279046 0.132237 -0.074535 -0.070394 -1.030977 -0.538584 0.013269 0.386873 -0.306899 0.797213 0.678147 1.620896 -1.655587 0.552530 0.720371 -0.319603 0.330263 -0.160886 -1.336163 0.385376 0.364912 -0.397603 1.050707 -0.144038 -0.955427 0.349899 -0.326249 0.490099 -0.809183 0.296173 -0.830583 -0.289624 -0.910476 -0.228022 -0.426592 -0.545695 -0.374816 -0.243370 1.350725 -0.614741 -1.101673 1.328253 -0.210769 0.324435 -1.847104 1.667309 -0.710688 0.608232 -0.813824 -0.066282 -0.229466 0.946564 -0.700057 0.334725 0.558802 -0.613110 0.647647 1.922505 0.454556 0.347927 -0.076343 1.121598 -0.008913 0.626166 -0.558652 1.455912 -0.208171 -0.573428 0.133083 -0.530534 0.205449 -0.431788 0.251577 1.032650 1.048197 0.172891 0.602040 0.903939 1.043342 -0.576010 0.921795 -0.049376 0.665065 -0.349427 -0.008027 0.276396 0.354681 -0.413917 0.679149 -1.307425 -1.521868 -0.542103 -1.345563 0.285726 0.218147 0.112632 -0.203773 -0.036700 -1.453063 -0.734734 0.332842 -0.598500 1.090480 0.564461 0.564515 0.824188 1.339828 -0.779401 -0.096066 -0.039887 0.036460 -0.131593 -0.554661 -0.667209 0.968211 -0.822093 0.440223 0.988198 -0.235710 0.349434 0.048273 0.883782 -0.714317 1.696477 0.491400 -0.172925 1.280484 0.828070 1.710359 0.171920 -0.614784 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.082294 -0.246031 0.510695 0.488137 -0.047618 0.120684 0.014242 -0.276361 0.369542 0.295450 -0.029628 0.074259 -0.276483 0.154065 0.141442 0.400264 -0.342268 -0.208923 -0.091803 -0.231410 -0.205199 -0.232616 0.130523 -0.039239 0.177448 0.171365 -0.218343 0.003549 -0.104077 -0.440528 0.167248 -0.132359 0.231869 0.170539 0.081525 -0.750718 0.372907 0.219179 -0.143299 -0.354668 0.055053 -0.124320 0.121816 -0.073899 -0.043758 0.182643 0.020196 0.004802 0.247364 0.191981 0.211856 0.002641 0.203569 0.493740 -0.185570 0.227877 0.127340 -0.082997 -0.091565 0.008249 0.124448 0.082619 0.211284 0.207205 -0.026001 -0.295701 -0.141665 -0.162536 -0.383548 0.276624 -0.088107 -0.113423 -0.340364 -0.236187 -0.062768 -0.144410 -0.696350 0.285410 0.506761 -0.327810 0.259352 0.132843 0.110696 0.035447 0.179691 0.010198 0.323784 0.119914 -0.163357 0.149706 0.171858 -0.234637 0.136765 0.055276 -0.145948 -0.270614 0.158281 -0.095473 -0.329377 0.251161 0.151518 0.069974 -0.377696 -0.128948 0.139948 0.191616 -0.207747 -0.341545 -0.118207 0.038041 0.121701 -0.133577 -0.095743 -0.094572 -0.153718 -0.029233 -0.419400 -0.058955 0.025342 -0.208105 -0.096031 0.277274 -0.058879 -0.001453 -0.045500 0.082264 -0.142193 0.473408 0.018281 0.343434 -0.007250 0.096038 -0.420362 0.101685 0.204612 0.110912 -0.001006 -0.037017 -0.165546 0.040418 -0.250285 0.119489 0.019310 0.208386 0.560322 -0.032966 -0.290440 -0.130436 -0.130672 -0.505482 0.165139 -0.303704 0.107229 0.196501 0.277097 0.190770 0.259761 0.408460 -0.379639 0.108175 -0.168787 -0.027704 0.263471 0.216618 0.202983 -0.154289 -0.201899 0.173752 0.207378 0.040124 0.192094 -0.160016 0.052015 -0.216368 -0.036747 0.277211 0.137702 -0.095511 0.206139 0.160323 0.612279 -0.141804 0.079184 0.203687 0.004760 0.047508 0.000318 -0.359079 0.179259 0.032551 -0.007944 0.187168 -0.067074 -0.115369 0.077652 -0.145036 0.107132 -0.198260 0.097796 -0.203478 0.032842 -0.250883 0.080677 -0.164719 -0.126816 -0.004232 0.076959 0.406183 -0.175182 -0.120179 0.362496 -0.151500 0.108756 -0.294721 0.512937 -0.197185 0.221318 -0.278301 -0.127600 -0.042682 0.049427 -0.079342 0.007341 0.188371 -0.005930 -0.065190 0.424651 0.130530 -0.042393 0.032929 0.300521 -0.001711 0.220228 -0.069864 0.400471 -0.050980 0.122900 0.016029 -0.136781 0.027761 -0.133262 -0.036365 0.298451 0.220178 0.016371 0.135582 0.102914 0.240186 -0.213049 0.279704 0.037598 0.235852 -0.198088 -0.008569 0.061182 0.193960 -0.157040 0.106386 -0.332303 -0.289133 -0.260274 -0.116655 -0.213745 0.267348 0.089384 -0.063450 -0.031064 -0.145285 -0.226512 0.416502 -0.166738 0.123899 0.058546 0.113409 0.278454 0.379983 -0.081137 -0.152472 -0.141994 -0.116823 -0.005993 0.008157 -0.183652 0.309360 -0.229977 0.021435 0.276249 -0.126416 0.069461 0.065243 0.351575 -0.190909 0.421660 0.139215 -0.024328 0.339729 0.347359 0.437828 -0.023971 -0.196841 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::max_size() const = -0.164721 -0.650105 1.140082 0.889873 -0.065289 0.492649 0.180554 -0.780042 1.033707 0.153616 -0.178458 0.030527 -0.735608 0.155692 -0.468093 0.314390 -0.706279 -0.715823 -0.280134 -0.684125 -0.394995 -0.704618 0.098874 0.202854 0.309517 0.127790 -0.414325 0.049271 -0.963388 -0.326104 0.725640 -0.161387 0.352592 0.006022 0.166075 -1.563563 0.767724 0.718408 -0.264768 -0.894249 0.078349 -0.568651 0.006645 -0.218305 -0.041734 0.114730 -0.088827 0.420939 0.479661 0.082659 0.273943 0.132651 -0.155484 1.559674 -0.599769 0.718210 0.348830 0.129734 -0.115994 0.416825 0.201600 0.255766 0.418672 0.512726 -0.261080 -0.501644 -0.014443 -0.354733 -0.768523 0.737632 -0.074329 -0.350408 -0.533218 -0.338713 -0.736177 -0.287714 -0.984815 0.636824 1.204455 -0.796002 0.755040 0.244872 0.520705 0.036376 0.528829 -0.101779 0.967491 0.222852 -0.442839 -0.003804 -0.713535 -0.028112 0.055728 -0.211799 -0.495523 -0.919349 0.555874 -0.963972 -0.976888 0.348577 0.257454 -0.050197 -0.579979 0.018404 0.388741 0.212195 -0.514855 -0.877670 -0.329243 0.498579 0.003453 -0.243136 0.161847 -0.198574 -0.069653 -0.503983 -0.906502 -0.128523 0.204741 -0.451903 -0.336245 0.888780 -0.456978 0.046358 -0.020915 0.164174 -0.243571 0.812023 -0.075624 0.419755 -0.057545 0.102033 -0.996002 0.154659 0.246854 0.655000 -0.127336 0.167249 -0.071856 0.234224 -0.504948 0.114219 -0.377625 0.175749 0.417958 -0.356134 -0.497931 -0.340444 -0.065756 -1.022358 0.129066 -0.627177 -0.408514 0.165550 0.706410 1.027635 0.438943 1.063031 -0.722856 0.393798 -0.161122 -0.060783 0.441730 0.074869 0.455849 -0.420300 -0.706060 0.294273 0.194611 0.190216 0.247817 -0.324232 -0.119044 -0.716506 -0.253750 0.268144 0.369322 -0.107466 0.741779 0.601970 0.418743 -1.216099 0.373941 0.359050 -0.225974 0.208025 -0.083641 -0.971995 0.377215 0.243492 0.101424 0.667357 -0.152044 -0.236776 0.155559 -0.246032 0.360805 -0.629035 0.039022 -0.629674 -0.320066 -0.681746 0.329213 -0.422558 -0.317482 -0.351079 -0.401771 0.907341 -0.682428 -0.658004 1.067942 0.004227 0.458483 -0.901591 0.518815 -0.453369 0.784264 -0.229837 0.052263 -0.146359 0.286004 -0.301725 0.118875 0.388225 -0.442690 0.403587 1.040129 0.242593 0.236165 0.163861 0.778939 -0.309671 0.265107 -0.536884 0.800664 -0.075987 -0.488902 0.150573 -0.454080 0.164338 -0.294769 0.238134 0.862812 0.776222 0.285453 0.430226 0.543626 0.410020 -0.376725 0.430955 -0.018051 0.273564 -0.406206 -0.032314 0.103847 0.194190 -0.297422 0.218442 -0.979839 -1.167390 -0.858551 -0.787377 0.054220 -0.388985 0.025555 -0.032895 -0.036906 -0.862690 -0.643595 0.466207 -0.446324 0.672840 0.324474 0.481005 0.639170 1.001804 -0.546328 0.000539 0.236027 0.094105 -0.262995 -0.255013 -0.615564 0.768228 -0.485609 0.350878 0.868679 -0.174167 0.326995 0.157843 0.586108 -0.577200 1.051160 0.461586 -0.392359 0.607997 0.646298 1.157931 0.353572 -0.520387 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_max_size(std::allocator const&) = -0.685790 -1.190648 2.165852 1.621221 0.354244 0.873517 0.945493 -1.415804 2.186204 1.355817 -0.223593 -0.336300 -1.486394 0.087313 -0.324658 0.870964 -1.072410 -1.415127 -0.316788 -1.312204 -0.508945 -1.593366 0.650730 -0.153851 0.593807 -0.552835 -0.675200 -0.393974 -1.459188 -1.414530 1.693657 -0.461342 0.895332 -0.376155 -0.281987 -3.800919 1.693832 1.171244 -0.636843 -1.606315 0.243399 -0.573358 -0.175388 0.283014 -0.072640 0.301230 -0.021594 0.766653 0.915062 0.523105 1.186599 -0.121210 0.011104 3.384079 -1.413203 1.319523 0.411458 0.090441 -0.313444 1.232221 0.384337 0.481915 1.017250 1.510242 -0.135491 -0.716580 0.410846 -0.562143 -2.216428 1.557878 -0.165922 -0.644677 -0.705870 -0.187320 -0.719359 -0.388973 -1.116479 0.942003 2.537458 -1.001131 1.770549 0.611811 0.913408 -0.224184 0.424736 -0.192292 1.619424 0.339229 -0.944840 -0.587587 -1.280593 -0.319385 0.034454 0.143866 -0.547917 -1.353225 1.073702 -0.514177 -1.584082 0.664469 0.432391 0.025107 -1.818163 -0.154071 0.946531 0.532054 -0.830996 -1.825349 -1.417764 0.832819 -0.596263 -0.359454 0.150823 -0.707089 -0.505298 -0.701376 -1.474568 -0.694477 0.066463 -1.146832 -1.277849 1.439725 -1.147413 0.163980 0.169659 0.646666 -0.455273 0.883362 -0.004120 1.199829 0.821345 -0.008680 -2.453391 -0.247475 0.684590 1.565006 0.463115 0.057688 -0.433882 0.483829 -1.064075 0.641223 -0.306298 0.406709 1.591763 -0.641824 -0.813114 -0.457300 0.779836 -1.932077 0.490200 -1.448989 -0.296362 0.183392 1.394764 1.324436 0.926215 2.252901 -1.959721 1.451565 -0.595068 -0.140853 0.521606 -0.026959 0.798825 -0.624095 -1.350619 -0.013529 0.988003 0.307122 0.289653 -0.956496 -0.387048 -1.421143 -0.915195 0.164485 0.325991 -0.556210 0.701941 0.999695 2.396040 -2.751377 0.756221 1.005123 -0.225457 0.272670 -0.033638 -2.138134 0.637074 0.370178 -0.035191 1.278849 -0.182883 -0.941782 0.263304 -0.691981 0.268952 -1.052914 0.303776 -1.216388 -0.451391 -1.098487 0.085832 -0.979707 -0.770036 -0.336378 0.044166 1.575385 -0.584545 -1.667977 2.096734 -0.486038 0.128449 -2.202075 2.125754 -0.828563 0.657238 -1.044588 -0.100588 -0.694505 1.324877 -0.405664 0.135962 0.512949 -0.813074 1.447547 2.736125 0.527546 0.546230 0.190129 1.566768 -0.333366 0.169467 -1.052224 1.515061 -0.282749 -0.959711 -0.111870 -0.900301 0.761030 -0.592337 0.258829 1.184954 1.736794 -0.349461 0.912233 1.079799 0.822171 -0.560570 1.228560 0.360734 1.025288 -0.435459 0.177679 0.225810 0.096100 -1.010888 1.019473 -1.798038 -1.865099 -0.805238 -1.848655 -0.221595 -0.077268 0.344385 -0.075455 0.314957 -2.003722 -0.948595 0.617669 -0.752739 0.966247 0.700550 0.931800 1.056433 1.944935 -0.929363 -0.130757 0.007426 -0.016908 -0.878492 -1.075832 -0.598570 1.315386 -0.970836 0.852806 1.104769 -0.111747 0.297107 -0.098606 1.077442 -1.180052 2.148019 1.048170 -0.004098 1.306496 0.653055 2.740657 0.224016 -0.812774 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.302412 -0.381753 0.617830 0.563668 0.155930 0.229224 0.284677 -0.364377 0.674355 0.504500 0.046208 0.023195 -0.514362 0.164518 0.103160 0.445541 -0.308723 -0.461588 -0.047865 -0.372323 -0.268161 -0.462403 0.195772 -0.111999 0.203486 -0.216108 -0.293723 -0.187144 -0.507471 -0.375549 0.402145 -0.221125 0.318892 -0.076621 -0.046397 -1.253548 0.458726 0.273995 -0.216582 -0.492301 0.090780 -0.348578 0.254996 -0.054728 0.097620 0.127023 0.072458 0.024373 0.426722 0.180615 0.442250 -0.002288 -0.014757 1.004496 -0.549930 0.374853 0.094662 -0.061890 -0.200998 0.227448 0.125234 0.068616 0.421680 0.396257 -0.215521 -0.321343 -0.069103 -0.240474 -0.684044 0.402956 -0.016799 -0.092617 -0.419871 -0.106836 -0.156883 -0.299492 -0.719319 0.289019 0.791866 -0.420750 0.521906 0.181976 0.344373 0.049596 0.342675 0.006289 0.554732 0.064446 -0.393239 -0.007241 -0.234521 -0.076188 0.001983 0.190093 -0.058398 -0.322025 0.194681 0.098471 -0.548428 0.304128 0.090472 0.196086 -0.760751 -0.069525 0.310307 0.285417 -0.370738 -0.679800 -0.427545 0.137182 -0.028870 -0.187201 0.043303 -0.473256 -0.251060 -0.370815 -0.523051 -0.241633 0.034503 -0.408274 -0.492467 0.518530 -0.404134 0.057997 0.027192 0.168282 -0.205158 0.478847 0.006802 0.406216 0.199924 -0.144229 -1.115531 -0.072289 0.230396 0.615597 0.072111 0.065761 -0.284414 0.050852 -0.402738 0.146272 0.125252 0.351036 0.678995 -0.178333 -0.318318 -0.133200 0.289950 -0.619082 0.285599 -0.442631 0.197475 0.011452 0.440437 0.349831 0.377537 0.757645 -0.508501 0.454998 -0.234615 -0.053407 0.417575 0.173290 0.357211 -0.250891 -0.354851 0.075965 0.380627 0.003384 0.182595 -0.256133 -0.010586 -0.430253 -0.196470 0.023923 0.144032 -0.179308 0.321323 0.206998 0.910897 -0.779826 0.243073 0.307583 0.019229 0.136765 -0.068294 -0.570398 0.266919 0.124151 -0.214391 0.290989 -0.080882 -0.440666 0.074684 -0.174354 0.209770 -0.312242 0.083949 -0.347276 -0.138937 -0.357816 0.020659 -0.299145 -0.288460 -0.040749 0.118790 0.561112 -0.017313 -0.403025 0.521562 -0.214054 0.099120 -0.703648 0.895537 -0.324826 0.173345 -0.550076 -0.088751 -0.196139 0.600481 -0.087589 0.106626 0.262694 -0.213914 0.255994 0.821076 0.205788 0.200990 0.084444 0.484731 0.088302 0.089779 -0.141345 0.597200 -0.108733 -0.043885 0.074130 -0.267627 0.271997 -0.050835 0.011210 0.431173 0.553457 -0.125089 0.257656 0.368692 0.296771 -0.244747 0.343712 0.027923 0.427664 -0.184659 0.065829 0.003764 0.070457 -0.235428 0.222465 -0.523997 -0.498985 0.000000 -0.396067 -0.067000 0.378112 -0.026406 0.018049 0.104642 -0.590730 -0.191965 0.180003 -0.280543 0.287381 0.085102 0.227578 0.390055 0.612672 -0.257166 -0.255874 -0.081897 -0.183863 -0.183764 -0.181377 -0.213857 0.386775 -0.456150 0.245987 0.258253 -0.090132 -0.005521 0.102182 0.485315 -0.290326 0.717877 0.284949 0.047646 0.541118 0.441089 0.957642 -0.038087 -0.253864 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = -0.372520 -0.815159 1.673589 1.420118 0.073422 0.518157 0.533958 -1.118278 1.331168 0.484724 0.098128 0.255811 -1.152011 0.468145 -0.378372 0.844632 -1.021118 -1.046641 -0.448841 -1.039079 -0.600595 -0.869493 0.593843 0.084228 0.692788 -0.221022 -0.872289 -0.448542 -1.416401 -0.656321 1.048979 -0.336305 0.810156 -0.247725 -0.145638 -2.981646 1.143434 0.929699 -0.512977 -1.122975 0.496765 -0.880218 0.191278 -0.395182 -0.244959 0.067534 -0.161348 0.092944 0.981893 0.262070 0.667804 0.512075 -0.072723 2.418224 -1.222225 0.909876 0.296544 -0.030670 -0.503555 0.413717 0.252587 0.404978 0.861403 0.652377 -0.382855 -1.028005 -0.150423 -0.576673 -1.431519 0.997929 -0.027336 -0.307028 -0.839931 -0.188112 -0.862610 -0.531178 -0.476033 0.858102 1.663602 -1.048315 1.009835 0.074973 0.377750 -0.016295 0.656194 0.008215 1.149277 0.240191 -0.454984 -0.273811 -0.863422 0.090299 0.075749 0.307280 -0.472515 -1.250016 0.722513 -0.575249 -1.381368 0.442089 0.481441 -0.072362 -1.452335 -0.253590 0.526062 0.560554 -0.781214 -1.376745 -0.740827 0.537013 0.173438 -0.509187 0.050854 -0.790306 -0.379837 -0.919265 -1.332901 -0.161367 0.062856 -0.665835 -0.926549 1.156438 -0.879486 -0.039615 -0.006024 0.552059 -0.595874 1.047940 -0.305111 0.808368 0.351940 -0.017454 -1.545203 -0.351156 0.499618 1.487931 -0.216259 -0.016523 -0.755972 0.232678 -0.884571 0.186909 0.060642 0.642535 1.124177 -0.503637 -0.766192 -0.244017 0.358892 -1.612186 0.295990 -0.955881 -0.082916 0.335097 0.995523 0.865841 0.867862 1.751892 -0.895101 0.917230 -0.135183 -0.293781 1.105273 0.047515 0.767129 -0.635223 -1.052540 0.385393 0.345155 0.326331 0.147119 -0.100429 -0.087305 -1.067768 -0.598736 0.033744 0.438191 -0.240346 0.854533 0.730106 1.501973 -1.756094 0.588943 0.724605 -0.348424 0.345565 -0.151604 -1.352332 0.399277 0.382596 -0.408516 1.104373 -0.178892 -0.953973 0.325065 -0.287519 0.529956 -0.851225 0.255084 -0.856560 -0.295071 -0.985069 -0.196050 -0.462245 -0.552591 -0.453007 -0.352168 1.408009 -0.730726 -1.176660 1.435710 -0.192068 0.465852 -1.901460 1.539263 -0.730640 0.725864 -0.790576 -0.058548 -0.219738 0.845832 -0.749825 0.375883 0.581874 -0.649858 0.613547 1.936064 0.462771 0.370489 -0.068942 1.153591 -0.028767 0.670556 -0.609196 1.498954 -0.205612 -0.608022 0.159474 -0.558759 0.190671 -0.454999 0.304494 1.107700 1.100088 0.308963 0.643482 0.951792 1.031328 -0.596579 0.882408 -0.073885 0.601109 -0.371046 -0.022387 0.298241 0.405187 -0.412315 0.650900 -1.362019 -1.668059 -0.679695 -1.401734 0.303322 0.120015 0.091956 -0.190862 -0.062658 -1.481603 -0.762406 0.307244 -0.621060 1.234897 0.582378 0.592027 0.864737 1.410063 -0.869784 -0.095569 0.077890 0.080997 -0.138735 -0.514959 -0.815034 1.050221 -0.823093 0.471702 1.120115 -0.260111 0.396308 0.031104 0.974072 -0.739794 1.750825 0.507322 -0.283135 1.272034 0.846182 1.685960 0.304152 -0.656153 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = -0.487597 -1.356394 2.366642 2.000162 -0.067464 1.050871 0.388467 -1.544199 1.792762 0.308588 -0.052017 0.456364 -1.532008 0.490953 -0.508647 0.736554 -1.520246 -1.463953 -0.599614 -1.355125 -0.755206 -1.305077 0.254887 0.666843 0.707547 0.083242 -1.129865 -0.147304 -2.190499 -0.634473 1.475933 -0.379366 1.096277 0.008241 0.277647 -4.027846 1.601357 1.463431 -0.510295 -1.841396 0.387101 -1.305602 0.194146 -0.622789 -0.425214 0.252628 -0.158778 0.270461 1.140769 0.132842 0.395330 0.554672 -0.268449 3.113847 -1.351694 1.404016 0.640042 -0.062959 -0.394657 0.485012 0.302586 0.501643 1.168674 0.893656 -0.740968 -1.304774 -0.067535 -0.703641 -1.834988 1.358565 0.128011 -0.517643 -1.112948 -0.454643 -1.601653 -0.722935 -0.504734 1.313260 2.402306 -1.437589 1.575144 0.206236 0.855696 0.134836 1.344549 -0.036474 1.916004 0.425753 -0.872387 -0.033650 -1.632637 -0.042763 0.077337 0.167384 -0.889425 -1.646686 0.870432 -1.572649 -1.958474 0.774905 0.477256 -0.140354 -1.879483 -0.421812 0.905882 0.700467 -1.080649 -1.911898 -0.860850 1.057430 0.038474 -0.736452 0.196603 -0.753631 -0.338496 -1.374358 -1.796072 -0.174444 0.483679 -0.866773 -0.966125 1.873821 -1.229652 0.073444 -0.112312 0.549788 -0.790203 1.530103 -0.310408 0.844074 0.191140 -0.290079 -1.906437 -0.328376 0.406929 1.932658 -0.413894 -0.201886 -0.607242 0.465252 -0.997248 0.242644 -0.156000 0.749399 1.242542 -0.556633 -0.982409 -0.635747 0.177408 -2.215778 0.230501 -1.237720 -0.510106 0.662655 1.454518 1.490797 1.032859 2.175327 -1.170833 1.139511 -0.285870 -0.246634 1.347430 0.116407 0.952788 -0.932999 -1.463346 0.732146 0.320272 0.559021 0.409446 -0.421403 -0.130899 -1.302148 -0.883417 0.301074 0.754699 -0.006225 1.524114 1.164325 1.554379 -2.394134 0.722630 0.735106 -0.575126 0.513409 -0.269776 -1.816504 0.593124 0.615536 -0.438940 1.715173 -0.399161 -1.137300 0.419650 -0.192221 0.803033 -1.289054 0.368082 -1.293111 -0.360561 -1.435411 -0.146173 -0.828955 -0.787857 -0.997200 -0.791796 2.056151 -1.289759 -1.774338 2.048522 -0.188306 1.047485 -2.575662 1.308128 -1.028247 1.463026 -0.757971 -0.035418 -0.263786 0.774056 -0.942604 0.540985 0.901274 -1.097788 0.798286 2.301628 0.576832 0.471111 0.105915 1.489489 -0.172448 0.661514 -1.064199 1.881340 -0.273891 -0.689181 0.251678 -0.862883 0.395121 -0.527794 0.436070 1.334431 1.561363 0.645345 0.756073 1.486753 0.927828 -0.773254 0.864297 -0.224859 0.628781 -0.676484 -0.109446 0.154494 0.683276 -0.313349 0.646177 -2.050221 -2.417801 -1.460367 -1.928308 0.264833 -0.033313 0.010887 0.063087 -0.082582 -2.087057 -1.122364 0.599516 -0.855675 1.984704 0.817121 0.922242 1.326553 1.959760 -1.186140 -0.259090 0.382441 0.155803 -0.431477 -0.426177 -1.421179 1.580383 -1.089567 0.859231 1.781808 -0.394895 0.689771 0.086925 1.429237 -1.144353 2.453268 0.896892 -0.848141 1.373333 1.170047 2.155313 0.502669 -1.029741 -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.882458 -2.244518 2.757149 2.372794 0.722390 1.931756 0.583523 -1.228487 1.366084 2.014819 -0.472286 1.328432 -1.558138 0.095204 -0.420060 0.733102 -0.811235 -1.541211 -0.113898 -0.886582 -0.130971 -1.517280 -0.774108 1.430082 0.551809 -0.562516 -1.010845 -0.025902 -3.180539 -2.582794 0.362595 -0.318453 1.161498 -1.229074 0.631849 -3.366243 1.968565 2.475139 -0.261578 -2.853863 0.350282 -0.963593 -0.201840 0.734544 -0.058574 1.062061 0.587061 -0.064575 0.502978 0.840694 0.576056 0.237112 0.957370 2.980243 -0.554877 2.193002 1.562909 -0.067146 0.531851 0.660281 0.150832 -0.005809 1.147860 0.944966 -0.539523 -0.870919 -0.067201 0.439286 -1.699573 0.870288 -0.012489 -1.060101 -0.956600 -0.434790 -1.895522 -0.490635 -0.717487 0.773744 2.965128 -0.794038 2.664439 0.771898 1.437461 0.344183 2.067792 0.031437 1.663990 0.756341 -1.504767 0.208560 -1.558352 -0.273540 -0.013221 0.846294 -1.467966 -1.334663 0.959029 -1.808979 -2.144386 1.724709 -0.261456 -0.496968 -1.696153 -0.762474 1.063911 1.065575 -1.316781 -2.341463 -1.239901 1.734940 -0.439357 -1.159934 0.540122 -1.185754 -0.176746 -0.517413 -1.397202 -0.186861 1.501615 -1.282352 -1.433752 2.332125 -0.487810 1.052160 -0.274913 0.585426 -0.605180 0.815658 0.466491 1.251323 -0.094076 -0.678981 -3.113926 0.169744 0.322112 0.234923 -0.657097 0.053590 0.028762 0.883199 0.189421 1.562202 -0.669483 1.266839 1.807009 -0.133480 -0.701781 -1.508963 0.398977 -1.525538 0.296262 -0.939660 -1.334631 -0.019993 1.741252 0.348960 0.681408 1.669792 -1.214150 0.858213 -0.491484 0.051787 0.728509 -0.811899 0.639378 -1.015316 -1.818298 0.931548 1.727708 0.496836 0.673469 -0.743959 0.086709 -0.604438 -0.560056 0.617269 0.677987 -0.201058 2.334520 1.420444 2.879492 -1.633752 0.037064 0.100810 -0.981649 0.607589 -0.826155 -2.265628 0.560246 0.961117 0.040408 2.591113 -0.431997 -1.217818 1.141144 -0.171107 0.565854 -1.406944 1.413017 -1.837809 -0.462709 -0.888512 -0.619427 -1.068388 -1.033554 -1.557664 -0.472292 2.404692 -1.141590 -1.928149 1.399043 -0.538316 0.126474 -2.938248 1.740880 -1.162796 1.208978 -0.188176 -0.043355 -0.364986 1.663313 -0.642439 0.291023 1.200358 -1.816511 1.856736 2.098243 0.451613 0.182200 0.477776 1.229101 -0.485239 -0.596107 -1.627446 1.483410 -0.511222 -0.187823 -0.253160 -0.979792 1.161806 -0.228218 -0.072932 -0.191991 1.205939 -0.636120 -0.187019 2.058415 0.109114 -0.597205 1.029355 -0.420519 1.174629 -1.075584 -0.217224 -0.902340 0.371130 0.465140 0.935736 -2.698170 -1.287094 -1.716564 -2.002970 -0.124068 0.794249 0.193563 0.746290 0.190212 -3.017190 -1.562342 1.722434 -0.778624 0.916836 1.383588 1.254001 1.589688 1.556466 -0.018411 -0.409311 -0.733928 -0.216319 -1.167770 -0.719213 -0.311837 1.263690 -1.284264 1.461898 1.157146 -0.114072 0.872610 0.307874 0.587715 -1.642902 2.741645 1.600791 -0.878682 0.717391 1.368519 2.771076 -1.475282 -1.179133 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_base(int*) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = -0.817115 -2.073224 2.928439 2.471438 0.484527 1.390778 1.188126 -1.820860 2.727337 1.836618 -0.490917 0.432928 -2.261343 0.468260 -1.110063 1.355054 -1.504811 -2.228756 -0.386989 -1.442395 -0.767105 -2.167388 0.499939 0.493627 0.945218 -0.857287 -1.208806 -0.471553 -2.974524 -1.988398 1.434561 -0.677277 1.164352 -1.081275 -0.066917 -4.460862 2.177151 2.131445 -0.706989 -2.722085 0.475324 -1.607950 -0.115734 -0.046620 -0.100167 0.379418 0.132771 0.953902 1.199385 0.567409 1.339502 0.423205 0.149427 4.689660 -1.755614 2.176667 0.987566 0.343938 -0.335695 1.220904 0.621637 0.538456 1.568126 1.766992 -0.596286 -1.114445 -0.098169 -0.455905 -2.484811 1.899475 -0.254558 -0.735325 -1.489580 -0.225100 -1.800969 -0.603009 -1.671297 1.511660 3.633144 -1.735049 2.494776 0.895210 1.448853 -0.169111 1.362324 -0.292937 2.615313 0.605197 -1.375013 -0.802210 -2.025602 -0.146855 -0.107646 0.167601 -1.078818 -2.079245 1.429976 -1.774801 -2.721459 1.002568 0.275373 -0.222169 -1.989494 -0.085276 1.387217 0.946806 -1.276798 -2.794166 -1.762419 1.315165 -0.270405 -1.064959 0.558703 -1.190826 -0.358621 -1.074758 -2.250258 -0.890771 0.615763 -1.803621 -1.598638 2.251913 -1.297523 0.592351 0.024562 0.654875 -0.363674 1.386423 0.013512 1.621766 0.836522 -0.107047 -3.522813 0.266739 0.765687 1.552687 -0.200454 0.884500 -0.352779 0.735002 -1.068537 0.786600 -0.810418 1.072162 1.571989 -0.948395 -1.270676 -1.059170 0.851412 -2.266962 0.632291 -1.847954 -0.777893 -0.015416 2.085997 1.730142 1.201526 3.080023 -2.193020 1.767654 -0.231259 0.010727 1.209290 -0.535910 1.068536 -1.124633 -2.248215 0.683116 1.579186 0.388038 0.289363 -0.764282 -0.395654 -1.777032 -1.203930 0.363536 0.706178 -0.452366 2.119847 1.281464 2.622032 -3.612851 1.191144 1.013342 -0.524497 0.698555 -0.595011 -3.118543 1.102233 0.613409 0.359539 2.042465 -0.329432 -1.431187 0.741078 -0.642030 0.733254 -1.763828 0.696553 -1.982191 -0.901552 -1.585256 0.127997 -0.897394 -1.123588 -0.801108 -0.258778 2.551557 -1.279889 -2.326100 2.577637 -0.625013 0.572619 -3.418225 2.698379 -1.365846 1.247366 -0.984218 0.081758 -0.593566 1.855780 -0.758430 0.215173 1.272879 -1.466594 1.955676 3.210501 0.598469 0.790372 0.522961 1.935971 -0.312292 0.222640 -1.464515 2.254121 -0.143628 -1.277206 -0.077703 -1.341221 1.175030 -0.411154 0.416748 1.754548 2.259365 -0.209281 1.219467 1.912632 1.185676 -0.999432 1.670273 -0.136380 1.322503 -0.948572 0.140706 -0.211779 -0.036407 -0.916540 1.440802 -2.758203 -2.745603 -1.675886 -2.457795 0.117756 -0.486517 0.492285 -0.083563 0.288669 -3.151567 -1.666638 0.941194 -1.101163 1.269856 1.217905 1.387330 1.650365 2.410072 -1.036691 -0.146618 -0.181130 -0.072048 -1.103889 -1.406964 -0.720834 1.480713 -1.630611 1.509340 1.670420 -0.249576 0.662882 0.136471 1.139333 -1.518071 3.208307 1.671727 -0.580370 1.673121 1.477128 3.566021 -0.198873 -1.479435 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base(unsigned long, std::allocator const&) = -0.883222 -1.425079 3.008787 1.974939 -0.269699 0.912867 1.111892 -2.316600 2.546428 0.946123 0.040666 -0.070651 -2.113615 0.577430 -0.743673 1.376425 -1.686187 -1.706325 -0.705715 -2.110339 -1.338131 -1.849799 1.170692 0.127241 0.841404 -0.032839 -0.879756 -0.453881 -1.382716 -2.530307 1.942529 -0.457024 1.108209 -0.221044 0.073132 -5.242326 2.153534 1.154470 -1.042448 -1.987969 0.664721 -0.410441 -0.274346 0.476307 -0.409641 0.401065 0.025000 1.319168 1.317610 1.155866 1.593269 0.213697 0.339250 4.315129 -1.624293 1.808133 1.123263 0.347025 -0.539344 1.326728 0.185131 0.480194 0.927882 1.642635 -0.296706 -0.926419 0.301823 -0.947511 -2.788555 2.032991 -0.238891 -1.312773 -1.322081 -1.049629 -1.042368 -0.719160 -2.264853 1.335221 3.533517 -2.096815 1.889680 0.693020 0.930867 -0.363197 0.774868 -0.436204 2.051129 0.523766 -1.236264 -0.241037 -1.001488 -0.519932 -0.120241 0.029151 -0.794765 -2.835929 1.602070 -1.441038 -2.444575 1.266281 0.623893 -0.005334 -2.388649 -0.558493 1.269451 0.538654 -1.720330 -2.658657 -1.758523 1.083452 -0.116298 -0.231486 0.212323 -0.412260 -0.524584 -0.620402 -2.568438 -0.591868 0.385678 -1.693126 -1.448608 1.847739 -0.943306 0.760942 0.531260 1.078302 -0.768134 2.026606 0.397716 1.329838 0.670200 0.426742 -2.368098 0.344100 0.753465 1.406078 0.214910 0.046788 -0.611380 0.509756 -1.457651 0.844242 -0.679058 0.611635 2.351572 -0.500457 -1.780850 -0.299855 0.306396 -3.201726 1.069917 -2.295362 -0.703298 0.413360 1.318290 1.545767 1.011267 2.611598 -2.093961 1.603635 -0.661351 -0.108198 0.663790 0.124846 1.472141 -0.966838 -2.131560 0.295394 0.926654 0.213501 0.626824 -1.379868 -0.303518 -2.120278 -1.441608 0.311062 0.779345 -0.897266 0.955517 1.307801 3.465330 -2.496862 0.525188 1.108368 -0.586424 0.466648 -0.200525 -2.772215 0.737714 0.456397 0.177432 1.958911 -0.198451 -1.000953 1.014650 -0.722478 0.707613 -1.327945 0.351516 -1.799632 -0.729277 -1.720722 0.351679 -1.013372 -0.642214 -0.282132 -0.300024 2.282221 -1.601184 -1.804037 3.013389 -0.740593 0.947530 -2.958832 3.053062 -0.795304 1.213725 -1.226036 -0.021726 -0.770181 0.903523 -0.172284 0.443410 0.503386 -0.560518 1.232296 3.669629 0.275029 0.781483 0.649244 2.301687 -0.624995 0.510382 -1.247826 2.573699 -0.648562 -1.343355 0.217619 -0.843722 0.460227 -1.204191 0.547123 1.756244 1.843514 -0.511636 1.134249 1.430658 1.244764 -0.929961 1.810235 0.297278 1.201987 -1.204576 0.117601 0.439110 0.490145 -1.267095 1.195494 -2.332540 -2.688285 -2.127478 -2.561542 -0.638252 -0.001350 0.757221 -0.531913 -0.074997 -1.963253 -1.294349 1.799467 -1.015870 1.050243 1.489377 1.626279 2.008713 3.319900 -0.944115 -0.119802 -0.014365 -0.011018 -1.051122 -0.920915 -0.879360 1.148544 -1.031649 0.866864 1.496599 0.292782 0.643350 -0.437667 1.700647 -1.560554 2.748892 1.179757 -0.033983 2.197204 1.502409 2.991260 0.661327 -0.902042 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_fill_initialize(unsigned long, int const&) = 0.287755 -1.098682 2.732154 2.311800 -0.255948 0.913139 0.019862 -2.083930 1.961980 0.861829 -0.149754 0.581343 -1.124649 0.819490 -1.009753 1.498511 -1.798081 -1.132760 -0.930624 -1.704207 -1.307712 -1.111891 0.286913 0.195579 0.949231 0.267876 -1.286100 0.189140 -1.369003 -1.867020 0.894365 -0.239278 0.635236 -0.745110 0.558514 -3.541859 2.053760 1.557978 -0.681288 -1.817675 0.311504 -0.953647 -0.210534 -0.327154 -0.247520 0.270504 -0.446792 0.834327 1.175735 0.605145 0.811614 1.100103 0.486414 3.770924 -1.086428 1.581631 0.822952 0.232733 -0.280704 0.836688 0.500615 0.772599 0.689411 0.707647 0.082854 -1.528337 -0.368002 -0.412693 -1.123436 1.665778 -0.107653 -1.290781 -1.369438 -0.954835 -1.517369 -0.557895 -2.986121 1.569601 2.370018 -1.891268 1.040240 0.423341 0.652013 0.323456 1.236438 -0.332261 2.317215 0.651793 -0.589628 0.096418 -0.458399 -0.340515 0.581413 -0.606042 -1.367028 -2.956194 1.127056 -2.264795 -2.118414 1.033690 0.944762 -0.368482 -1.146470 -0.695975 0.900408 0.213333 -1.033243 -1.687811 -0.602683 1.004319 0.361667 -0.773175 0.275287 -0.760776 0.137929 -0.105685 -2.173438 0.132755 0.477484 -0.510612 -0.862793 1.754345 -0.127562 -0.239358 -0.302973 0.486728 -0.623550 1.637364 -0.496608 1.514037 -0.526635 1.142136 -1.856478 1.056568 0.776063 -0.155557 -0.285698 0.472787 -0.592691 0.689997 -1.291168 0.953501 -1.063485 0.915679 1.199676 -0.349603 -1.437758 -0.716458 -0.404204 -1.983637 0.444564 -1.210682 -1.422892 0.110506 1.481873 1.774343 1.072583 1.149656 -1.395457 0.550144 -0.269292 0.251093 1.323246 -0.334557 0.872731 -0.931231 -1.509007 0.879698 0.588978 0.419969 0.411599 -0.371144 0.036007 -1.170789 -0.287443 0.690990 0.877782 -0.376004 1.638531 1.325403 2.163926 -1.960490 0.667922 0.869781 -0.775130 0.469752 -0.407938 -1.920369 0.528534 0.601292 0.679032 1.878660 -0.335201 -0.416615 0.436102 -0.332358 0.786274 -1.032280 0.137959 -1.244504 -0.756316 -1.085133 0.637832 -0.732775 -0.265479 -0.758577 -1.035561 2.071800 -2.297688 -1.170027 2.706291 -0.737459 0.616721 -1.791932 1.815341 -0.883918 1.072348 -0.454366 0.017406 -0.185238 0.515110 -1.307257 0.777743 0.950081 -0.921827 0.420111 2.309913 0.438498 0.486005 -0.084649 1.554324 -0.854560 1.005838 -1.151477 2.312994 -0.297992 -0.667954 -0.246711 -0.780819 -0.067505 -0.991477 0.614125 1.362312 0.850160 0.638575 0.399136 1.146395 1.281411 -1.045565 1.585476 -0.242089 0.018849 -1.129903 -0.193269 0.585135 0.224226 -0.603216 0.612899 -2.075064 -1.672010 -2.672655 -1.053545 0.099271 -0.300351 0.268056 -0.539019 -0.603380 -1.518324 -1.681662 2.004594 -0.835309 0.061766 1.096683 0.917770 1.309587 2.109579 -0.608434 0.416980 -0.451635 -0.314842 -0.046051 -0.791049 -1.040159 1.876861 -0.823918 0.543710 1.866196 -0.326514 1.046053 0.482475 0.857625 -1.044298 1.940124 0.704226 -0.564337 1.030477 2.014299 2.274558 0.172381 -1.165371 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = -0.203073 -0.985435 1.973557 1.660438 0.440916 0.836679 0.648933 -1.645645 2.120285 1.292177 0.016002 0.188464 -1.314664 0.646610 -0.992448 1.273757 -0.981818 -1.340327 -0.493609 -1.413629 -0.981256 -1.342710 0.492440 -0.248810 0.696510 -0.829107 -0.996365 -0.266373 -1.823856 -1.356162 1.037653 -0.419278 0.471060 -1.277502 -0.031812 -2.855051 1.618401 1.145915 -0.663912 -1.457259 0.285355 -1.115338 0.112921 -0.062863 0.417495 0.090459 -0.219071 0.673487 1.248084 0.488428 1.336106 0.720060 -0.084895 3.519821 -1.692397 1.421003 0.387810 0.372416 -0.364527 1.194518 0.344904 0.580793 0.852213 1.032305 -0.298835 -1.014756 -0.167993 -0.325578 -1.359190 1.457000 -0.144947 -0.755484 -1.192951 -0.259304 -1.108710 -0.618265 -2.590400 0.930808 2.269303 -1.388375 1.227335 0.466394 0.989125 0.167579 1.101941 -0.272467 2.007844 0.317900 -0.974133 -0.362687 -1.035077 0.258669 0.083686 -0.169975 -0.682731 -2.069482 0.849488 -1.061995 -1.907313 0.769045 0.472268 0.097756 -1.383292 -0.129035 0.963029 0.269672 -1.057359 -1.944134 -0.959859 0.818526 -0.003760 -0.628598 0.592007 -1.533067 -0.096516 -0.639775 -1.647420 -0.481984 0.224871 -0.915408 -1.489847 1.639891 -0.688506 -0.044016 -0.012630 0.479889 -0.451209 1.005451 -0.356778 1.344643 0.054054 0.435241 -2.988664 0.602247 0.682168 0.641066 0.002462 0.920838 -0.667421 0.435918 -1.249958 0.734988 -0.671245 0.807016 1.003351 -0.642483 -1.009410 -0.377682 0.733794 -1.473756 0.683817 -1.121271 -0.840835 -0.726262 1.368024 1.490228 1.061616 1.555590 -1.290182 0.985642 -0.308989 0.207684 1.238440 -0.441511 0.930072 -0.785385 -1.404176 0.361944 0.945154 -0.022903 0.261650 -0.481670 -0.141415 -1.303795 -0.280792 -0.078971 0.540695 -0.603190 1.370666 0.869179 1.913834 -2.616905 0.897423 0.908214 -0.376598 0.557463 -0.497345 -1.853552 0.664035 0.576697 0.277208 1.304745 -0.210827 -0.898230 0.301389 -0.396923 0.811660 -0.956602 0.003074 -1.162686 -1.007051 -0.934840 0.525805 -0.637208 -0.540426 -0.351725 -0.418736 1.609972 -1.023011 -1.167803 2.153492 -0.618741 0.186173 -1.833618 2.086383 -0.879175 0.479472 -0.794446 0.226410 -0.460259 1.723410 -0.813828 0.588762 0.818072 -0.994884 1.156436 2.345413 0.448793 0.872063 0.136437 1.454412 -0.426527 0.280136 -0.874877 1.949288 -0.263499 -0.865041 0.018967 -0.852093 0.498381 -0.549924 0.472478 1.274445 1.313876 -0.061873 0.574726 1.183689 1.068058 -0.768264 1.324238 -0.174183 0.392996 -0.750375 0.099150 0.266247 -0.375849 -0.709429 0.735493 -1.758974 -1.462472 -1.094184 -1.166545 0.413102 -0.117055 -0.045905 -0.242348 -0.034082 -1.941620 -1.080242 0.938622 -0.850338 0.048561 0.751020 0.869004 1.013997 1.940068 -0.727584 0.147150 -0.376414 -0.421142 -0.447672 -1.040046 -0.536380 1.368661 -1.041982 0.800785 1.033789 -0.139468 0.410141 0.458433 0.641541 -0.863266 1.848171 0.842213 0.052440 1.228731 1.537709 2.868031 0.077810 -0.882295 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_create_storage(unsigned long) = 0.455557 -1.565665 3.668035 3.365694 -0.716587 1.105285 -0.209789 -2.411258 1.997988 1.589734 -0.284661 1.098688 -1.194763 1.008756 -0.021801 2.383268 -2.659046 -1.033861 -0.991783 -1.801847 -1.606844 -1.176888 0.238005 0.475708 1.257988 1.221184 -1.625036 0.230400 -0.564652 -3.298457 0.745734 -0.328902 1.236659 0.050307 0.973307 -5.451384 2.748979 1.914386 -0.789829 -2.579045 0.343204 -0.619672 -0.334509 -0.253260 -0.943766 0.800410 -0.285017 1.018584 1.164004 1.182521 0.649775 1.095783 1.756058 4.428210 -0.474822 1.935060 1.413736 -0.178578 -0.296237 0.457995 0.854331 0.812081 1.018402 0.884114 0.520301 -1.992671 -0.669642 -0.497003 -1.676325 1.937403 0.011570 -1.716282 -1.868875 -1.559902 -1.263290 -0.581248 -3.830576 2.335669 3.078734 -2.372616 1.433719 0.720892 0.488554 0.304836 1.426749 -0.361777 2.736788 1.069191 -0.625428 0.571736 0.482971 -1.726752 1.206996 -0.669565 -1.829972 -3.709563 1.230872 -2.347275 -2.463020 1.721894 1.271573 -0.515585 -1.695063 -1.633763 1.274741 0.631112 -1.172496 -1.898848 -0.888333 0.982676 0.366540 -1.198537 -0.346992 -0.161615 -0.053260 0.616929 -2.838155 0.265233 0.846532 -0.645570 -0.518948 1.891282 0.364121 -0.064774 -0.609200 0.521298 -0.738561 2.341386 -0.274832 2.117641 -0.269460 1.551775 -1.328644 1.539055 1.108977 -0.780811 -0.147100 -0.240383 -0.673285 1.054329 -1.297338 1.600291 -0.861177 1.563840 2.564707 0.250389 -2.049528 -1.277024 -1.047334 -2.704479 0.702994 -1.699251 -1.178145 1.146206 1.846448 1.310629 1.240729 0.883058 -2.166028 0.669418 -0.597019 0.568312 1.448914 0.234459 0.917084 -1.110046 -1.708694 1.339112 1.086521 0.753670 0.652137 -0.663247 0.290500 -0.937752 -0.719009 1.550089 1.127450 -0.374558 1.739915 1.554172 4.364233 -1.230234 0.404034 0.901668 -0.884960 0.408295 -0.367528 -2.456617 0.652011 0.485447 0.904524 2.527362 -0.531572 -0.482831 0.693283 -0.360926 0.498921 -1.089459 0.686352 -1.543958 -0.349186 -1.204603 0.475753 -0.993768 -0.301032 -0.993896 -0.676628 2.873419 -3.063828 -1.352232 3.236409 -1.656134 0.717806 -2.287329 3.004698 -1.037704 1.030408 -0.945537 -0.748425 -0.112207 -0.225543 -1.494977 0.795446 1.278284 -0.711304 -0.209670 2.845855 0.487166 0.033454 -0.083529 1.703647 -0.792433 1.424564 -1.319002 2.959313 -0.455878 0.187838 -0.778582 -0.831979 -0.008336 -1.278920 0.361738 1.376505 0.658042 0.608134 0.269835 1.219182 1.378147 -1.504053 2.240732 -0.119436 0.370445 -1.540553 -0.266558 0.535468 0.750418 -0.710617 1.006470 -2.550839 -1.588827 -3.738150 -0.883579 -0.957734 0.742273 0.991119 -0.771570 -0.864777 -1.417005 -2.171634 3.225148 -0.918795 -0.385461 1.510481 1.096250 1.853662 2.409177 -0.140067 0.143564 -1.134717 -0.650613 0.006081 -0.649596 -1.140739 2.237160 -0.903809 0.644535 2.318857 -0.362279 1.365144 0.134457 1.657763 -1.283151 2.443135 0.874087 -0.821694 1.004789 2.571426 2.159563 -0.509742 -1.559356 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n_a(int*, unsigned long, int const&, std::allocator&) = -0.470683 -0.779080 1.150402 0.983463 0.164361 0.454440 0.558312 -0.596897 1.064665 0.553793 0.026384 0.185219 -0.942191 0.234920 -0.045281 0.535812 -0.651628 -0.874908 -0.097832 -0.616169 -0.466887 -0.794209 0.220754 0.110800 0.403963 -0.266549 -0.530363 -0.385865 -1.131364 -0.347117 0.745297 -0.304026 0.593663 -0.116378 0.000844 -2.414091 0.706634 0.596360 -0.305162 -0.978619 0.200277 -0.708641 0.356460 -0.234204 0.005337 0.106485 0.172725 0.244031 0.662287 0.192160 0.457753 0.051738 -0.135921 1.962070 -0.826886 0.715125 0.326320 -0.070379 -0.314885 0.329284 0.215633 0.029896 0.723004 0.591202 -0.440604 -0.530070 -0.072216 -0.487817 -1.113693 0.682269 0.135446 -0.150094 -0.694601 -0.171097 -0.561836 -0.504154 -0.826439 0.642709 1.396812 -0.857036 1.000789 0.254560 0.644597 0.079504 0.649206 0.001089 0.964253 0.134618 -0.639965 -0.103572 -0.842280 -0.055509 -0.083793 0.190189 -0.207994 -0.824414 0.413061 -0.184251 -1.070938 0.476926 0.119550 0.162326 -1.169901 -0.115006 0.549510 0.518354 -0.677842 -1.171424 -0.786246 0.353004 -0.106995 -0.346070 0.171255 -0.618362 -0.348351 -0.838010 -0.957946 -0.308706 0.202491 -0.679512 -0.758992 0.988730 -0.781804 0.237202 0.041280 0.278860 -0.326033 0.855790 0.063999 0.471096 0.366827 -0.327583 -1.673506 -0.200000 0.313257 1.325192 -0.047602 0.045552 -0.364055 0.191029 -0.569799 0.144227 0.167329 0.621033 0.887781 -0.382797 -0.589209 -0.364496 0.453001 -1.050281 0.354237 -0.737396 0.161519 0.179393 0.779405 0.720596 0.528225 1.330591 -0.785504 0.858896 -0.256267 -0.121113 0.651846 0.244457 0.604091 -0.507588 -0.699936 0.193321 0.500917 0.179938 0.202993 -0.343511 -0.028686 -0.767775 -0.518512 -0.040152 0.348596 -0.207928 0.695674 0.474822 1.287683 -1.554782 0.375499 0.423633 -0.116542 0.228877 -0.107835 -1.038503 0.468710 0.231786 -0.412840 0.688430 -0.148527 -0.803219 0.255052 -0.216249 0.354649 -0.606510 0.147779 -0.672950 -0.344750 -0.688996 0.009122 -0.522856 -0.483337 -0.327011 -0.072326 1.084557 -0.311769 -0.879091 0.904250 -0.259747 0.381709 -1.455996 1.395777 -0.559197 0.459870 -0.773080 -0.151960 -0.268354 0.911139 -0.232583 0.230933 0.471081 -0.512949 0.485499 1.426561 0.323629 0.386745 0.172783 0.847148 0.105950 0.174691 -0.358091 0.977994 -0.188739 -0.308505 0.116152 -0.467885 0.481172 -0.037453 0.136513 0.852640 0.974864 0.009140 0.526327 0.816273 0.478031 -0.436540 0.451592 -0.053560 0.740643 -0.359992 0.035163 -0.058462 0.213754 -0.302510 0.407772 -1.034924 -1.162481 -0.267099 -0.936915 0.014809 0.327782 -0.034231 0.029671 0.105109 -1.224072 -0.420089 0.121894 -0.474290 0.734014 0.321745 0.437984 0.775040 1.042310 -0.561323 -0.348681 0.142400 -0.096700 -0.334707 -0.313379 -0.537854 0.635160 -0.834846 0.551747 0.681933 -0.150968 0.140140 0.098328 0.922488 -0.597797 1.361780 0.524444 -0.278600 0.804681 0.782608 1.521145 0.038216 -0.519306 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_fill_n(int*, unsigned long, int const&) = -0.446809 -0.786002 1.133993 0.986139 0.178204 0.452477 0.518207 -0.584359 1.033183 0.557893 0.029896 0.221855 -0.901113 0.252122 -0.058364 0.547529 -0.622850 -0.868640 -0.110652 -0.584433 -0.477053 -0.772449 0.212967 0.116846 0.390109 -0.253354 -0.558445 -0.360089 -1.113560 -0.381920 0.717323 -0.289162 0.589392 -0.142059 0.008725 -2.369158 0.697589 0.600934 -0.290039 -0.982084 0.177591 -0.659256 0.324008 -0.228039 -0.013469 0.109747 0.160006 0.198958 0.622132 0.205877 0.451654 0.083218 -0.119311 1.925815 -0.775561 0.711150 0.351691 -0.050663 -0.290095 0.298976 0.238883 0.051729 0.706260 0.589066 -0.400949 -0.515144 -0.087536 -0.462691 -1.089118 0.676894 0.133497 -0.148514 -0.673495 -0.180072 -0.551610 -0.477908 -0.753524 0.621230 1.383319 -0.841209 0.972217 0.256894 0.645633 0.082615 0.631105 -0.007206 0.935559 0.162043 -0.622985 -0.089759 -0.791944 -0.052628 -0.086676 0.210004 -0.233821 -0.799431 0.422951 -0.192151 -1.043077 0.491896 0.121393 0.173038 -1.158817 -0.138452 0.544426 0.513281 -0.660813 -1.132671 -0.789243 0.342536 -0.073271 -0.361637 0.167992 -0.586868 -0.334108 -0.780668 -0.945478 -0.313584 0.219009 -0.677420 -0.731087 0.953077 -0.760486 0.238190 0.010451 0.258969 -0.318640 0.826177 0.082771 0.480062 0.343771 -0.306919 -1.631567 -0.200791 0.306759 1.278488 -0.060072 0.036817 -0.354957 0.196342 -0.529948 0.161160 0.145296 0.585456 0.894656 -0.348414 -0.610880 -0.383839 0.437053 -1.031590 0.333712 -0.740646 0.152080 0.199552 0.767155 0.691529 0.509808 1.317747 -0.774293 0.853690 -0.242866 -0.110323 0.616703 0.211206 0.564068 -0.488662 -0.714263 0.220272 0.505216 0.174284 0.226120 -0.358838 -0.021821 -0.730792 -0.524952 -0.010332 0.345127 -0.208015 0.673175 0.447247 1.270223 -1.504077 0.353243 0.400819 -0.108381 0.229006 -0.125482 -1.029899 0.449221 0.207824 -0.382326 0.690686 -0.149998 -0.794494 0.272741 -0.211465 0.343638 -0.582436 0.177711 -0.663575 -0.322929 -0.682082 0.003524 -0.501699 -0.435394 -0.315391 -0.071406 1.076843 -0.332901 -0.876886 0.883811 -0.235878 0.363864 -1.435049 1.324909 -0.531672 0.474913 -0.732915 -0.147606 -0.255306 0.864745 -0.228132 0.219872 0.481912 -0.509102 0.444186 1.401693 0.294148 0.354911 0.169557 0.810684 0.107983 0.171341 -0.350525 0.965486 -0.176205 -0.311014 0.092809 -0.461525 0.479667 -0.068780 0.118421 0.798059 0.939356 0.010319 0.501422 0.791759 0.467203 -0.449369 0.445079 -0.034847 0.725363 -0.367756 0.049545 -0.069082 0.223362 -0.311566 0.403529 -0.993323 -1.121897 -0.302881 -0.933392 -0.008849 0.336291 -0.030550 0.001100 0.073727 -1.166246 -0.429297 0.153345 -0.465531 0.737844 0.340709 0.437322 0.766883 1.013450 -0.557656 -0.331158 0.114748 -0.116529 -0.324905 -0.306233 -0.512244 0.612666 -0.789126 0.523724 0.672707 -0.135251 0.158901 0.112583 0.882659 -0.563261 1.356509 0.526798 -0.279174 0.767316 0.740955 1.503214 0.018411 -0.521017 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n::__uninit_fill_n(int*, unsigned long, int const&) = -0.450589 -0.773673 1.121456 0.964678 0.126289 0.458181 0.466847 -0.602483 0.938941 0.462872 0.011179 0.255743 -0.896390 0.235874 -0.182934 0.480819 -0.612689 -0.829377 -0.169355 -0.583767 -0.445069 -0.728387 0.199364 0.207144 0.402816 -0.181769 -0.561029 -0.307332 -1.151224 -0.420397 0.633349 -0.233031 0.579963 -0.170386 0.004333 -2.224068 0.679467 0.701045 -0.275366 -0.962714 0.231289 -0.664709 0.252571 -0.212158 -0.113202 0.092537 0.100087 0.114195 0.582257 0.167370 0.425232 0.147044 -0.079416 1.821785 -0.704673 0.726217 0.371071 -0.019029 -0.285459 0.255298 0.211916 0.080752 0.663323 0.513040 -0.392284 -0.521174 -0.091572 -0.406775 -1.024685 0.647359 0.051385 -0.206998 -0.620483 -0.210403 -0.638391 -0.443713 -0.521958 0.586139 1.307041 -0.811559 0.931333 0.197494 0.520662 0.057127 0.611357 -0.018038 0.872364 0.166368 -0.523525 -0.100296 -0.709389 0.020280 -0.070170 0.266733 -0.316923 -0.781849 0.486358 -0.375918 -1.054892 0.439772 0.135014 0.054991 -1.066858 -0.125116 0.454902 0.488091 -0.633242 -1.083124 -0.707238 0.404016 0.005293 -0.369845 0.132416 -0.499134 -0.287009 -0.728124 -0.930013 -0.228367 0.225302 -0.631067 -0.673270 0.931865 -0.678159 0.242028 0.011294 0.281496 -0.307132 0.819497 0.027403 0.447357 0.232326 -0.218809 -1.411514 -0.248649 0.271037 1.147430 -0.167074 0.022066 -0.317305 0.189576 -0.471343 0.150954 0.041831 0.541208 0.833291 -0.337127 -0.568567 -0.365296 0.298398 -1.064780 0.238707 -0.694715 0.042512 0.248459 0.737679 0.652401 0.464997 1.329331 -0.683371 0.735966 -0.141911 -0.197254 0.608338 0.118988 0.538956 -0.491849 -0.760703 0.278861 0.426145 0.236683 0.181308 -0.232756 -0.052292 -0.695157 -0.499755 0.048913 0.347969 -0.146000 0.711491 0.493241 1.156858 -1.383362 0.354634 0.356832 -0.176111 0.244236 -0.148312 -1.015406 0.384420 0.232610 -0.342839 0.751363 -0.142810 -0.711136 0.304646 -0.214757 0.359344 -0.645439 0.239016 -0.672871 -0.263052 -0.696535 -0.079505 -0.421487 -0.415982 -0.365577 -0.176338 1.062422 -0.451076 -0.867097 0.869870 -0.107741 0.396374 -1.414618 1.158161 -0.511094 0.589467 -0.620361 -0.110754 -0.185532 0.733930 -0.258669 0.212495 0.462679 -0.517965 0.436297 1.332688 0.273628 0.305863 0.129482 0.787805 0.057541 0.231003 -0.404773 0.943295 -0.129487 -0.377452 0.109939 -0.448983 0.379487 -0.099245 0.135424 0.781887 0.901438 0.060078 0.460125 0.784441 0.500389 -0.422363 0.454563 -0.050768 0.657357 -0.360793 0.001814 -0.040740 0.295933 -0.246701 0.387352 -0.998447 -1.156812 -0.422308 -0.994768 0.063014 0.203866 0.012176 -0.009255 0.025005 -1.125595 -0.499580 0.246923 -0.456393 0.879889 0.360250 0.458457 0.747010 0.974063 -0.536769 -0.224650 0.128873 -0.028099 -0.279795 -0.295653 -0.506505 0.598272 -0.722058 0.495089 0.700806 -0.144500 0.246168 0.125250 0.758800 -0.581416 1.316095 0.487279 -0.325436 0.780395 0.689664 1.347018 0.030904 -0.517500 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::fill_n(int*, unsigned long, int const&) = -0.461447 -1.330600 1.832035 1.670996 0.192450 0.738515 0.856989 -0.953800 1.296893 0.824128 -0.125690 0.572968 -1.498081 0.373900 -0.392510 0.868389 -0.973653 -1.281354 -0.240134 -0.737694 -0.512241 -1.111861 0.467501 0.474267 0.803606 -0.050066 -0.854888 -0.645850 -1.860097 -0.919152 0.862704 -0.307101 0.996959 -0.063128 -0.087386 -3.102345 1.094338 1.339198 -0.410503 -1.659578 0.532158 -0.948125 0.125251 -0.267891 -0.178948 0.240884 0.156432 0.371379 0.785827 0.440840 0.581327 0.263358 0.260278 2.564096 -0.891337 1.249733 0.770417 0.087877 -0.327459 0.295976 0.387221 0.188441 1.018286 0.812292 -0.482966 -0.817828 -0.305415 -0.552726 -1.620106 0.962498 -0.003786 -0.275095 -1.071258 -0.277827 -0.873715 -0.450112 -0.753463 0.982190 2.082575 -1.231070 1.549515 0.323101 0.611947 -0.207150 0.786542 -0.051760 1.043698 0.379964 -0.665397 -0.320449 -1.165754 -0.166359 -0.039675 0.316079 -0.686508 -1.301572 0.887746 -0.641030 -1.726576 0.614757 0.228867 -0.188740 -1.322425 -0.066758 0.593924 0.872685 -0.919849 -1.646102 -0.973648 0.620493 0.101647 -0.726458 0.028340 -0.480937 -0.487043 -0.930801 -1.495155 -0.313101 0.402311 -1.092512 -0.820379 1.296954 -0.829238 0.532632 -0.043683 0.392290 -0.360023 1.216883 0.134578 0.748696 0.672208 -0.185119 -1.697751 -0.140802 0.551614 1.583972 -0.440422 0.142501 -0.408730 0.378597 -0.494948 0.304150 -0.006304 0.819227 1.284635 -0.548811 -0.925080 -0.645609 0.346663 -1.596599 0.388399 -1.100235 0.087342 0.407914 1.177538 0.660715 0.679450 2.105977 -1.179226 0.978268 -0.000354 -0.217284 0.850099 0.246478 0.761697 -0.767938 -1.357320 0.597674 0.758723 0.336286 0.156842 -0.106783 -0.069364 -1.045846 -0.816864 0.216897 0.464923 -0.323403 1.197269 0.762724 1.698885 -1.716326 0.476082 0.504926 -0.357393 0.384200 -0.234651 -1.815660 0.694670 0.253528 -0.217604 1.322937 -0.191087 -1.026935 0.701878 -0.375298 0.419486 -1.064127 0.612258 -1.177646 -0.429408 -1.119572 -0.113517 -0.382892 -0.725991 -0.562911 -0.091412 1.738344 -0.620296 -1.270673 1.201702 -0.221266 0.450494 -2.240523 1.874849 -0.801063 0.741625 -0.720043 -0.264423 -0.125952 0.861300 -0.473647 0.032336 0.773474 -0.728721 0.779956 2.035620 0.366305 0.193990 0.258992 1.129471 0.035580 0.417118 -0.726368 1.434439 -0.133169 -0.609415 0.103363 -0.693380 0.564644 -0.310106 0.047961 1.395591 1.292763 0.110359 0.750113 1.059010 0.910184 -0.734227 0.903664 -0.044402 1.080084 -0.572704 -0.036914 -0.116912 0.401634 -0.351054 0.893882 -1.615303 -1.893548 -0.668541 -1.693527 0.057530 0.051438 0.396331 -0.135031 -0.023727 -1.813515 -1.019136 0.348552 -0.703448 1.262517 0.776647 0.774410 1.156679 1.377211 -0.735620 -0.121305 0.067113 0.193398 -0.414007 -0.571509 -0.568781 0.792904 -1.000974 0.752875 1.167068 -0.178227 0.486444 -0.182573 1.232959 -0.934591 2.098785 0.776004 -0.597841 1.213529 0.954161 1.884150 -0.105204 -0.870946 -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.984871 -1.789153 2.655663 2.476089 0.511389 1.287186 0.722699 -1.749822 2.024772 1.983610 -0.211013 0.917812 -1.853399 0.435263 -0.173838 1.570388 -1.313605 -1.718942 -0.339049 -1.200046 -0.863984 -1.703407 0.456438 0.566349 0.928620 -0.216965 -1.381157 -0.215389 -2.266846 -2.939440 0.770148 -0.450238 1.387066 -0.587181 -0.002368 -4.556252 2.157632 2.114451 -0.604113 -2.443272 0.561778 -1.117789 -0.090250 0.242053 -0.357243 0.713898 0.145319 -0.027204 1.077782 0.843215 1.349311 0.465687 0.741646 3.445033 -1.067586 2.034381 1.087403 -0.036739 -0.518628 0.659443 0.554758 0.405223 1.659047 1.419194 -0.653731 -1.177035 -0.115888 -0.203005 -2.480064 1.535537 -0.191893 -1.115568 -1.260406 -0.573108 -1.134787 -0.633507 -0.302199 1.036857 3.088463 -1.268091 2.262568 0.612378 0.878269 -0.205039 1.440497 -0.353347 2.214905 0.655663 -1.224781 -0.462669 -0.868075 -0.685886 0.161661 1.207326 -1.073189 -1.121156 1.068345 -1.292559 -2.488876 1.116914 0.326045 -0.213777 -2.755249 -0.512081 1.389574 1.001734 -1.014601 -2.460350 -1.529171 1.100522 -0.380149 -1.220932 -0.280087 -1.015350 -0.697287 -0.272099 -2.138237 -0.619989 0.754168 -1.480497 -1.597648 1.894833 -0.849269 0.608054 -0.231081 0.689630 -0.483597 1.310064 -0.123118 1.525232 0.714665 -0.043572 -2.635577 -0.133482 0.629571 0.820582 -0.499803 -0.067674 -0.563869 0.603304 -0.945856 1.123421 -0.684888 1.506102 2.600217 -0.241609 -1.338454 -0.919683 0.342377 -2.502225 0.699917 -1.639947 -0.342213 0.327065 1.844098 0.458701 1.052532 2.596472 -1.832531 1.452868 -0.208590 -0.057187 1.323250 -0.289688 1.041115 -1.147081 -1.969606 1.053038 1.563293 0.397026 0.382838 -0.469317 -0.135715 -1.249725 -1.472994 0.767751 0.464448 -0.058918 1.629173 1.025968 4.142788 -2.305587 0.782789 0.743457 -0.382603 0.643350 -0.560768 -2.559788 0.666745 0.507703 0.307771 2.477698 -0.268150 -1.579282 0.588848 -0.223915 0.619414 -1.637519 1.293877 -1.786164 -0.049289 -1.157511 -0.736222 -0.723223 -0.993453 -0.834651 -0.017514 2.522409 -0.981567 -2.389222 2.281368 -0.926491 0.656437 -3.465491 2.413281 -1.254358 1.063283 -1.334075 -0.311333 -0.339132 1.082838 -0.706124 0.517783 1.147026 -1.087306 1.312893 2.909441 0.489441 0.492268 0.155846 1.384823 -0.003605 0.425000 -1.164858 2.350960 -0.163550 -0.445542 -0.320390 -1.087019 0.893055 -0.476202 -0.156628 0.966383 1.872716 -0.521622 0.601669 1.656183 1.132890 -1.166706 1.779399 0.115029 1.275862 -0.825876 -0.179913 -0.089825 0.437118 -0.464437 1.349524 -2.369623 -2.009348 -1.303578 -2.551125 -0.312750 0.853760 0.796838 -0.045514 0.052053 -2.399776 -1.386820 1.810127 -0.838806 2.000362 1.089261 1.342068 1.569471 2.035171 -0.585862 -0.299573 -0.835714 -0.406021 -0.926062 -1.094410 -0.532165 1.408041 -1.095874 1.342157 1.249961 -0.189938 0.678881 -0.179601 1.139068 -1.280885 2.752683 1.202917 -0.377883 1.557040 1.018369 2.872765 -0.909135 -1.316556 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__size_to_integer(unsigned long) = -0.291573 -0.301570 0.209608 0.208227 0.136056 0.142599 0.158017 0.001377 0.244425 0.310996 -0.034790 0.079825 -0.291446 0.012620 0.057713 0.120476 -0.010495 -0.258664 0.061484 -0.021144 -0.110050 -0.263429 -0.036840 0.053669 0.042926 -0.079526 -0.102033 -0.041604 -0.345503 -0.210129 0.019370 -0.080409 0.138989 -0.039192 0.037236 -0.436258 0.090120 0.195247 -0.026837 -0.312591 -0.015086 -0.155335 0.188003 0.042872 0.080431 0.115577 0.175937 -0.072114 0.093197 0.083266 0.208977 -0.158018 0.010276 0.371294 -0.093476 0.210578 0.153018 -0.009593 -0.024878 0.016677 0.072224 -0.109365 0.189539 0.186703 -0.170581 0.011619 -0.054700 -0.074718 -0.278683 0.116099 -0.052220 -0.027772 -0.194471 -0.133211 -0.082221 -0.151310 -0.381241 0.052226 0.404269 -0.196485 0.349416 0.167347 0.270457 0.051831 0.205226 -0.008521 0.189241 0.032018 -0.266023 0.077267 -0.034051 -0.013259 -0.096284 0.219051 -0.035053 0.052104 0.109039 0.037549 -0.274828 0.198789 -0.108583 0.138866 -0.315651 0.063417 0.113155 0.201068 -0.194292 -0.340457 -0.256378 0.057599 0.002062 -0.079339 0.057457 -0.137816 -0.138179 -0.156223 -0.207454 -0.169087 0.110030 -0.302807 -0.193132 0.264752 -0.167099 0.226760 0.024876 0.006188 0.000252 0.282416 0.186653 0.109560 -0.004359 -0.166055 -0.670242 -0.069675 0.050142 0.253652 -0.046899 0.077676 0.027413 -0.005330 -0.037516 0.056708 0.006789 0.173495 0.360105 -0.079526 -0.155083 -0.172030 0.067069 -0.240020 0.111879 -0.190354 0.172070 0.021959 0.189705 0.133156 0.051460 0.489233 -0.224739 0.168128 -0.091724 -0.097541 0.045747 0.104911 0.138155 -0.127910 -0.179478 0.079203 0.290851 0.000549 0.153674 -0.173677 0.001439 -0.134987 -0.075291 0.106600 0.072871 -0.055926 0.212557 0.060688 0.377968 -0.304775 0.046976 0.023204 0.072756 0.053757 -0.059273 -0.279061 0.178947 0.008873 -0.105927 0.073096 -0.027387 -0.163671 0.120519 -0.126807 0.095376 -0.199057 0.127709 -0.188578 -0.029777 -0.171125 0.020774 -0.136422 -0.124827 0.000000 0.115172 0.267755 0.067883 -0.147533 0.056541 0.038486 0.074019 -0.297204 0.349825 -0.124111 0.208858 -0.226998 -0.057778 -0.066811 0.296691 0.189782 -0.047402 0.140166 -0.092935 0.081521 0.271840 0.042796 0.048312 0.150419 0.175388 0.092360 -0.090438 -0.015043 0.137193 0.004510 0.012200 0.061334 -0.139748 0.231015 0.118714 -0.092946 0.174499 0.310280 -0.181160 0.108545 0.179306 0.014044 -0.098151 0.029305 0.032560 0.372012 -0.152543 0.020841 -0.163214 0.096296 -0.063901 0.022349 -0.218347 -0.195635 0.057519 -0.195736 -0.134873 0.221097 -0.034426 0.081560 0.073536 -0.220447 -0.080418 0.181066 -0.124035 0.228668 -0.034390 0.108516 0.245419 0.212424 -0.046102 -0.196146 -0.013664 -0.114772 -0.169323 -0.000675 -0.006218 0.034935 -0.273806 0.148149 0.029230 -0.043234 -0.009747 0.158374 0.177380 -0.166998 0.351274 0.192725 -0.046384 0.204627 0.206439 0.487126 -0.155687 -0.135555 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__fill_a(int*, int*, int const&) = -0.577398 -0.709236 1.155571 0.958565 0.243187 0.475686 0.464392 -0.701543 1.203332 0.676563 -0.051416 0.145026 -0.894040 0.201628 -0.008674 0.636966 -0.648596 -0.879927 -0.028967 -0.620937 -0.400664 -0.899016 0.279259 0.021173 0.333982 -0.196585 -0.553817 -0.170414 -1.015405 -0.830861 0.712569 -0.390763 0.573044 -0.144556 -0.061575 -2.358201 0.916843 0.623570 -0.328877 -0.938992 0.174465 -0.669167 0.287404 -0.134228 0.042088 0.231077 0.164845 0.099047 0.677311 0.233829 0.630182 0.017454 -0.072712 1.712141 -0.883997 0.727644 0.246120 -0.100905 -0.346407 0.358576 0.212585 0.084850 0.789749 0.807474 -0.511138 -0.529196 0.008118 -0.357461 -1.267198 0.708534 -0.010848 -0.196517 -0.646759 -0.110890 -0.496310 -0.448518 -0.583862 0.491598 1.489502 -0.628005 1.073877 0.276283 0.705925 0.010433 0.639438 -0.031795 1.086996 0.162388 -0.799525 -0.165570 -0.652199 -0.133747 -0.022298 0.444281 -0.135664 -0.447793 0.335184 -0.289061 -1.021761 0.430042 0.108942 0.220729 -1.354355 -0.121246 0.683974 0.469790 -0.570229 -1.243312 -0.725799 0.309442 -0.250312 -0.364308 0.060285 -0.695661 -0.410928 -0.598199 -0.942617 -0.442483 0.155347 -0.727658 -0.804929 0.921897 -0.768123 0.168884 0.013648 0.311745 -0.297981 0.715825 -0.028063 0.574435 0.345080 -0.327437 -1.685618 -0.210614 0.289257 1.078531 -0.064826 -0.014127 -0.366173 0.137328 -0.648881 0.146298 -0.037240 0.584547 1.115251 -0.316155 -0.540188 -0.282271 0.425646 -1.186960 0.425048 -0.771145 0.091650 0.068319 0.816104 0.514106 0.627532 1.360477 -0.881182 0.890322 -0.300964 -0.065609 0.722738 0.122857 0.622570 -0.488650 -0.703571 0.260853 0.589452 0.081925 0.248309 -0.439169 -0.053168 -0.782736 -0.546353 0.166473 0.261201 -0.079516 0.619239 0.359851 1.605284 -1.468137 0.433467 0.489825 0.019227 0.245323 -0.110339 -1.030774 0.471908 0.238668 -0.182887 0.736439 -0.109221 -0.836852 0.101709 -0.139121 0.370109 -0.679665 0.243505 -0.677068 -0.152667 -0.588595 -0.121626 -0.506932 -0.530475 -0.257492 0.035871 1.018811 -0.200275 -1.014462 1.002002 -0.378434 0.442871 -1.483859 1.221735 -0.637134 0.534019 -0.856125 -0.070479 -0.278299 0.786958 -0.193307 0.261044 0.471035 -0.415328 0.610419 1.388445 0.361540 0.410454 0.158082 0.775074 0.125125 0.138361 -0.308961 0.978633 -0.136294 -0.220535 0.111825 -0.496524 0.514716 -0.053343 0.049494 0.663085 1.099991 -0.163939 0.529921 0.764206 0.474546 -0.463788 0.569961 0.009851 0.704378 -0.288972 0.002134 -0.040081 0.189708 -0.324780 0.461999 -1.012521 -1.096007 -0.248590 -1.059874 -0.090748 0.418948 0.053149 0.080373 0.235425 -1.179171 -0.329224 0.459143 -0.423427 0.986055 0.255454 0.481026 0.675610 1.017628 -0.521082 -0.458060 -0.070662 -0.179745 -0.431467 -0.317181 -0.501693 0.671986 -0.789103 0.570183 0.551165 -0.208356 -0.002867 0.058416 0.763363 -0.548185 1.337703 0.566589 -0.109496 0.866296 0.493928 1.599971 -0.025096 -0.514701 -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.838250 -1.028337 1.518016 1.289946 0.681571 0.815175 0.736439 -0.905496 1.661342 1.390314 -0.347841 0.325430 -1.047392 -0.063627 0.348705 0.846263 -0.542712 -1.150526 0.258984 -0.573454 -0.246017 -1.420323 0.076829 0.148261 0.284853 -0.051087 -0.630768 0.064526 -1.319220 -2.122737 0.589443 -0.396700 0.688218 -0.075225 0.033884 -2.860811 1.476648 1.196610 -0.247175 -1.435357 0.052857 -0.649757 0.028035 0.344493 0.547054 0.747833 0.432334 0.128924 0.474887 0.508274 0.984128 -0.198362 0.194027 1.558831 -0.720101 1.133974 0.565022 -0.110788 -0.192821 0.520791 0.283917 -0.021756 1.111386 1.416820 -0.815949 -0.371303 0.181941 -0.044243 -1.829163 0.729767 0.105459 -0.635723 -0.713985 -0.200320 -0.323678 -0.318216 -0.763365 0.329053 2.106930 -0.372636 1.871009 0.646020 1.334717 -0.241991 0.949137 -0.265513 1.565602 0.323228 -1.458766 -0.366418 -1.084157 -0.843666 -0.003970 0.965315 -0.293797 0.432275 0.271471 -0.320372 -1.261660 0.550883 -0.127791 0.221794 -2.019493 -0.000522 1.119971 0.589263 -0.310413 -1.710121 -1.142191 0.472753 -0.912216 -0.622529 -0.254523 -0.740333 -0.683225 -0.226299 -1.124996 -0.720329 0.517664 -1.018402 -1.175165 1.029820 -1.028419 0.434983 -0.144790 0.204740 -0.118085 0.410834 0.157041 0.672048 0.859028 -0.827519 -2.559070 0.054106 0.245591 1.011943 -0.194107 0.004930 -0.051351 0.221124 -0.538118 0.548096 -0.505965 0.896689 1.876385 -0.235663 -0.600118 -0.583726 0.683039 -1.255018 0.791905 -0.899628 0.145317 -0.395683 1.092596 0.147330 0.598859 1.632990 -1.517857 1.302897 -0.352247 0.283049 0.564212 0.111971 0.615454 -0.636158 -0.980698 0.488510 1.217933 -0.188013 0.418466 -0.660890 -0.056773 -0.826257 -1.026460 0.651032 -0.061867 0.113229 0.874878 0.324622 3.041098 -1.765423 0.408486 0.381478 0.161427 0.277882 -0.146242 -1.339720 0.694736 0.189296 0.496963 1.411968 -0.052608 -1.038905 -0.025051 0.100892 0.242930 -0.891609 0.791181 -1.015887 -0.043079 -0.363384 -0.372950 -0.639610 -0.811120 -0.294122 0.462794 1.257240 0.469366 -1.804939 1.137231 -1.097079 0.390558 -2.116851 1.428491 -0.871531 0.338236 -1.233862 -0.066678 -0.398967 0.858829 -0.024684 0.275320 0.617615 -0.516911 1.123767 1.762814 0.316158 0.368892 0.330273 0.527086 0.092316 -0.249645 -0.457951 1.132032 -0.080223 0.065625 -0.142854 -0.665788 1.185120 0.074743 -0.491480 0.421430 1.629696 -0.732806 0.389079 0.924231 0.239196 -0.668523 0.963202 0.286191 0.957101 -0.305673 -0.117140 -0.307890 -0.132886 -0.215627 0.721109 -1.244404 -0.941072 0.149626 -1.806553 -0.422861 0.753474 0.412857 0.393259 0.448105 -1.675966 -0.387267 1.064461 -0.302397 1.400348 0.276356 0.752156 0.756534 0.947918 -0.347716 -0.653178 -0.545941 -0.431486 -0.996923 -0.679584 -0.153726 0.713718 -0.850630 0.963299 0.360451 -0.138974 -0.069021 -0.290233 0.878305 -0.648317 1.733177 0.846862 -0.101199 0.702471 0.099715 2.387002 -0.782025 -0.707741 -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.867891 -1.134875 3.126904 2.629402 -0.345555 0.618155 0.364035 -2.080219 1.930701 0.563679 -0.379908 0.710618 -1.413064 1.147195 -1.470572 1.880353 -2.310588 -1.341813 -0.910319 -1.489270 -1.053642 -1.081339 1.123739 0.041565 1.429322 0.737457 -1.429185 -0.339279 -1.464028 -1.746413 1.291963 -0.465478 0.837540 -0.236530 0.154446 -3.268942 2.154469 1.506900 -0.883342 -1.901074 0.812463 -0.964259 -0.439138 -0.883512 -0.203791 0.256990 -0.413236 1.478065 1.341660 0.879296 0.567467 1.176491 0.781025 3.680075 -1.378120 1.473773 0.951291 0.394693 -0.222095 0.589919 0.646510 0.935707 0.611695 0.949026 0.269797 -1.831059 -0.754217 -0.852355 -1.285792 1.839278 -0.247806 -0.485569 -1.795795 -0.557404 -1.428791 -0.151486 -3.132255 1.978329 2.655575 -2.061316 1.027515 0.297129 0.482118 -0.099607 0.608273 -0.048476 1.612562 0.836652 -0.298777 -0.346815 -0.873325 -0.345735 0.645398 -1.099287 -1.266075 -3.605192 1.331496 -2.271459 -2.130432 0.730782 1.179854 -0.616961 -0.360159 -0.346923 0.697276 0.527981 -1.064852 -1.626049 -0.199664 0.589362 0.697107 -0.771810 0.286735 -0.453188 -0.076703 -0.274259 -2.465155 0.163178 0.095694 -0.735322 -0.317169 1.466763 -0.075083 -0.256261 -0.299527 0.515176 -0.685970 1.835146 -0.357717 1.656169 0.071842 1.405615 -1.072015 1.360041 1.339954 0.407997 -0.581387 0.693852 -0.929712 0.688191 -1.332990 0.375403 -0.818725 0.640896 1.004360 -0.899579 -1.720773 -0.705074 -0.471233 -2.165844 0.513087 -1.385289 -1.211847 0.304909 1.578384 1.529856 1.476174 1.627860 -1.688181 0.474323 -0.042643 0.296491 1.465682 -0.023882 0.946970 -0.864278 -1.683626 1.005814 0.424289 0.347422 0.204161 -0.070778 0.159947 -1.589785 -0.143141 0.787223 0.993358 -0.757733 1.561801 1.233554 1.136489 -1.518683 0.610810 1.304372 -0.735303 0.291357 -0.152689 -2.302620 0.978488 0.376940 0.912913 1.644505 -0.187825 -0.554528 0.821280 -0.525985 0.679801 -1.005696 0.001232 -1.234790 -0.953170 -1.420488 1.071983 -0.324020 -0.420661 -0.534229 -0.810722 2.207643 -2.233997 -0.871261 2.493573 -0.654760 0.524480 -1.851909 2.111977 -1.010189 0.997706 0.008089 -0.011992 0.062723 0.046570 -1.676524 0.220737 1.010646 -0.594221 0.505699 2.363400 0.673513 0.126447 -0.030000 1.740804 -0.798658 1.448393 -1.013148 2.181288 -0.347713 -1.004304 -0.009552 -0.699266 -0.305649 -1.343039 0.687360 2.170502 0.721769 1.158618 1.149357 0.759468 2.012018 -1.265420 1.680353 -0.311792 0.331664 -1.091257 -0.213839 0.664178 0.272491 -0.915710 1.163986 -2.173609 -2.427729 -2.735392 -1.326540 0.165841 -1.077063 0.651888 -0.976156 -0.578629 -1.698239 -1.869553 1.405691 -0.921298 0.004657 1.492032 0.690987 1.270251 2.106653 -1.023977 0.561691 -0.260971 0.386795 0.251721 -0.730558 -1.269493 1.840611 -0.971332 0.183143 2.361460 -0.615974 0.930081 -0.129796 1.349178 -1.052299 2.364620 0.768452 -0.754633 1.389081 1.854449 2.165055 0.772804 -1.254764 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() const = 0.384725 -0.607427 1.697646 1.522725 -0.308722 0.379924 -0.094536 -1.204167 0.942973 0.560842 -0.175344 0.447422 -0.645586 0.616692 -0.508755 1.196945 -1.214214 -0.513408 -0.578376 -0.841362 -0.665188 -0.522874 0.481554 0.063552 0.733342 0.612777 -0.792484 0.081571 -0.400622 -1.524430 0.367058 -0.196497 0.486226 -0.063351 0.238792 -1.760008 1.283227 0.932136 -0.443634 -1.030807 0.351792 -0.323002 -0.227173 -0.248437 -0.332741 0.309143 -0.289008 0.418816 0.680743 0.585839 0.460677 0.633147 0.803365 1.735190 -0.451676 0.832033 0.508656 0.094524 -0.138668 0.177591 0.369975 0.547241 0.323779 0.407419 0.300541 -1.031606 -0.468567 -0.250229 -0.683536 0.953029 -0.336719 -0.588314 -0.957355 -0.610279 -0.629281 -0.123901 -1.835990 0.998782 1.360911 -1.053305 0.475448 0.199416 0.010988 -0.007236 0.391959 -0.111179 0.935158 0.504609 -0.106321 0.119823 0.374508 -0.422672 0.545311 -0.331496 -0.855389 -1.737178 0.732396 -1.271029 -1.123045 0.566846 0.701614 -0.343812 -0.375458 -0.454949 0.320846 0.246839 -0.541057 -0.821328 -0.044571 0.336057 0.555644 -0.495891 -0.115503 -0.117194 -0.026867 0.307405 -1.333580 0.137824 0.112938 -0.345612 -0.103377 0.732494 0.294182 -0.152500 -0.235858 0.305819 -0.345510 1.118094 -0.235650 1.098257 -0.282203 1.016126 -0.374052 0.756872 0.664225 -0.467176 -0.278937 0.187275 -0.459039 0.354573 -0.672709 0.496949 -0.561403 0.437766 0.984590 -0.141392 -0.942742 -0.356355 -0.638351 -1.331321 0.270750 -0.764741 -0.648963 0.364588 0.812173 0.599962 0.723020 0.701580 -0.915756 0.009282 -0.082342 0.094662 0.798013 -0.005820 0.460999 -0.467607 -0.875672 0.701266 0.340485 0.241379 0.241047 -0.056897 0.113112 -0.608609 0.017210 0.777185 0.505412 -0.312227 0.803569 0.662438 1.259370 -0.297885 0.265027 0.606111 -0.387089 0.202330 -0.140284 -1.188872 0.381236 0.186551 0.583007 0.959545 -0.160160 -0.070143 0.426615 -0.333900 0.346948 -0.600349 0.238233 -0.675916 -0.192721 -0.692842 0.375975 -0.160993 -0.123317 -0.250885 -0.345308 1.207226 -1.385429 -0.327243 1.423378 -0.396330 0.265300 -0.797835 1.144528 -0.496623 0.634514 -0.118136 -0.138534 0.098290 -0.229512 -0.784028 0.144881 0.564632 -0.179963 -0.024267 1.190646 0.274071 -0.119573 -0.087745 0.864611 -0.454292 0.897250 -0.533426 1.302420 -0.101055 -0.183353 -0.144867 -0.364175 -0.310938 -0.807121 0.211214 0.908782 0.261750 0.438732 0.318293 0.306560 1.009508 -0.688813 1.105728 -0.087071 0.090131 -0.677714 -0.153623 0.436164 0.369672 -0.434507 0.526691 -1.117982 -0.979156 -1.712222 -0.456887 -0.205581 -0.161029 0.491174 -0.545640 -0.437626 -0.509059 -1.113233 1.469569 -0.461378 -0.051417 0.693526 0.432745 0.706365 1.101063 -0.226096 0.291604 -0.503804 -0.037528 0.222469 -0.283083 -0.521629 1.014448 -0.382280 0.010257 1.156499 -0.313938 0.603607 0.081295 0.540510 -0.566947 1.088086 0.321181 -0.256730 0.775367 1.060093 0.937226 0.108889 -0.673299 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() const = 0.384725 -0.607427 1.697646 1.522725 -0.308722 0.379924 -0.094536 -1.204167 0.942973 0.560842 -0.175344 0.447422 -0.645586 0.616692 -0.508755 1.196945 -1.214214 -0.513408 -0.578376 -0.841362 -0.665188 -0.522874 0.481554 0.063552 0.733342 0.612777 -0.792484 0.081571 -0.400622 -1.524430 0.367058 -0.196497 0.486226 -0.063351 0.238792 -1.760008 1.283227 0.932136 -0.443634 -1.030807 0.351792 -0.323002 -0.227173 -0.248437 -0.332741 0.309143 -0.289008 0.418816 0.680743 0.585839 0.460677 0.633147 0.803365 1.735190 -0.451676 0.832033 0.508656 0.094524 -0.138668 0.177591 0.369975 0.547241 0.323779 0.407419 0.300541 -1.031606 -0.468567 -0.250229 -0.683536 0.953029 -0.336719 -0.588314 -0.957355 -0.610279 -0.629281 -0.123901 -1.835990 0.998782 1.360911 -1.053305 0.475448 0.199416 0.010988 -0.007236 0.391959 -0.111179 0.935158 0.504609 -0.106321 0.119823 0.374508 -0.422672 0.545311 -0.331496 -0.855389 -1.737178 0.732396 -1.271029 -1.123045 0.566846 0.701614 -0.343812 -0.375458 -0.454949 0.320846 0.246839 -0.541057 -0.821328 -0.044571 0.336057 0.555644 -0.495891 -0.115503 -0.117194 -0.026867 0.307405 -1.333580 0.137824 0.112938 -0.345612 -0.103377 0.732494 0.294182 -0.152500 -0.235858 0.305819 -0.345510 1.118094 -0.235650 1.098257 -0.282203 1.016126 -0.374052 0.756872 0.664225 -0.467176 -0.278937 0.187275 -0.459039 0.354573 -0.672709 0.496949 -0.561403 0.437766 0.984590 -0.141392 -0.942742 -0.356355 -0.638351 -1.331321 0.270750 -0.764741 -0.648963 0.364588 0.812173 0.599962 0.723020 0.701580 -0.915756 0.009282 -0.082342 0.094662 0.798013 -0.005820 0.460999 -0.467607 -0.875672 0.701266 0.340485 0.241379 0.241047 -0.056897 0.113112 -0.608609 0.017210 0.777185 0.505412 -0.312227 0.803569 0.662438 1.259370 -0.297885 0.265027 0.606111 -0.387089 0.202330 -0.140284 -1.188872 0.381236 0.186551 0.583007 0.959545 -0.160160 -0.070143 0.426615 -0.333900 0.346948 -0.600349 0.238233 -0.675916 -0.192721 -0.692842 0.375975 -0.160993 -0.123317 -0.250885 -0.345308 1.207226 -1.385429 -0.327243 1.423378 -0.396330 0.265300 -0.797835 1.144528 -0.496623 0.634514 -0.118136 -0.138534 0.098290 -0.229512 -0.784028 0.144881 0.564632 -0.179963 -0.024267 1.190646 0.274071 -0.119573 -0.087745 0.864611 -0.454292 0.897250 -0.533426 1.302420 -0.101055 -0.183353 -0.144867 -0.364175 -0.310938 -0.807121 0.211214 0.908782 0.261750 0.438732 0.318293 0.306560 1.009508 -0.688813 1.105728 -0.087071 0.090131 -0.677714 -0.153623 0.436164 0.369672 -0.434507 0.526691 -1.117982 -0.979156 -1.712222 -0.456887 -0.205581 -0.161029 0.491174 -0.545640 -0.437626 -0.509059 -1.113233 1.469569 -0.461378 -0.051417 0.693526 0.432745 0.706365 1.101063 -0.226096 0.291604 -0.503804 -0.037528 0.222469 -0.283083 -0.521629 1.014448 -0.382280 0.010257 1.156499 -0.313938 0.603607 0.081295 0.540510 -0.566947 1.088086 0.321181 -0.256730 0.775367 1.060093 0.937226 0.108889 -0.673299 -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.924154 -1.206931 3.189360 2.718031 -0.297476 0.627612 0.423480 -2.076771 1.992937 0.642918 -0.377766 0.751540 -1.442869 1.195891 -1.426236 1.973901 -2.332151 -1.409325 -0.885147 -1.463295 -1.081831 -1.120959 1.170611 0.009416 1.459964 0.722809 -1.475902 -0.422078 -1.494493 -1.741826 1.369720 -0.499212 0.884179 -0.201350 0.146505 -3.401884 2.179780 1.490602 -0.892634 -1.983821 0.792252 -0.941451 -0.432393 -0.920043 -0.148945 0.274238 -0.375732 1.558212 1.350629 0.947119 0.569573 1.172572 0.798669 3.792073 -1.402994 1.499139 1.003097 0.410194 -0.199707 0.586524 0.708895 0.946906 0.652052 1.023944 0.301537 -1.843686 -0.803962 -0.905014 -1.360861 1.879651 -0.183886 -0.413529 -1.871505 -0.535213 -1.371333 -0.140842 -3.282811 2.041169 2.767914 -2.123735 1.085217 0.348609 0.576579 -0.118684 0.599428 -0.041097 1.608859 0.881296 -0.352011 -0.355961 -0.968057 -0.409251 0.630243 -1.159689 -1.264558 -3.682131 1.340236 -2.148812 -2.155621 0.787054 1.185823 -0.552616 -0.395227 -0.357539 0.750887 0.589036 -1.102653 -1.669056 -0.277302 0.541380 0.700647 -0.813026 0.305591 -0.464283 -0.117755 -0.308966 -2.518763 0.094558 0.115586 -0.814650 -0.320919 1.470568 -0.135625 -0.226230 -0.332980 0.482903 -0.691312 1.857113 -0.276093 1.704075 0.203889 1.362064 -1.188315 1.416386 1.400319 0.552150 -0.545292 0.720247 -0.960577 0.719029 -1.326034 0.389710 -0.739358 0.650032 1.065657 -0.915391 -1.808814 -0.764110 -0.370945 -2.158668 0.575821 -1.459632 -1.116650 0.312239 1.624265 1.535560 1.511166 1.686854 -1.792216 0.575959 -0.077606 0.371672 1.455230 0.052795 0.945602 -0.865367 -1.721066 1.013805 0.500795 0.304198 0.244905 -0.147899 0.191072 -1.622456 -0.189781 0.770169 1.002675 -0.842540 1.557378 1.197245 1.184871 -1.581072 0.592947 1.330336 -0.701601 0.288678 -0.150208 -2.388599 1.052791 0.326314 0.914993 1.637542 -0.198295 -0.633780 0.873042 -0.544018 0.654292 -0.965586 0.007495 -1.264237 -1.017680 -1.458467 1.150845 -0.343011 -0.420967 -0.501524 -0.719380 2.273990 -2.174687 -0.889727 2.492008 -0.725767 0.478453 -1.914805 2.250258 -1.021777 0.923915 -0.025515 -0.056433 0.039518 0.104520 -1.678816 0.171305 1.064583 -0.597397 0.500058 2.457138 0.668850 0.103986 0.016788 1.758684 -0.761236 1.429037 -0.993245 2.221249 -0.372220 -0.995433 -0.033318 -0.719914 -0.220349 -1.380451 0.653924 2.232344 0.742694 1.158420 1.204092 0.752594 2.028569 -1.327212 1.700470 -0.286777 0.413650 -1.121003 -0.162345 0.624838 0.234985 -0.986463 1.232094 -2.184783 -2.459983 -2.690713 -1.339797 0.102797 -1.024571 0.666032 -1.022261 -0.583293 -1.746899 -1.883867 1.315124 -0.947702 -0.083700 1.547871 0.695587 1.314889 2.137930 -1.071577 0.523181 -0.274745 0.357130 0.230994 -0.753642 -1.259583 1.834801 -1.008083 0.189037 2.396261 -0.596391 0.907429 -0.179059 1.477718 -1.037271 2.472491 0.822907 -0.765306 1.387313 1.883288 2.297916 0.759758 -1.290815 -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.909998 -1.137017 3.231012 2.730535 -0.475555 0.671148 0.139615 -2.234988 1.891008 0.450404 -0.372636 0.798259 -1.344372 1.198398 -1.562756 1.892067 -2.428217 -1.291846 -1.072505 -1.581306 -1.150079 -1.043302 1.063337 0.166958 1.424850 0.922575 -1.547064 -0.133492 -1.404758 -1.929877 1.237216 -0.393535 0.860515 -0.259496 0.259789 -3.395834 2.266940 1.644197 -0.877180 -1.943556 0.799309 -0.934403 -0.553673 -0.903511 -0.440875 0.262625 -0.559400 1.335438 1.317658 0.842222 0.520729 1.356249 0.853181 3.713469 -1.262515 1.532779 1.009753 0.403104 -0.225646 0.526192 0.667555 1.061180 0.589819 0.888629 0.337385 -1.929558 -0.749589 -0.788233 -1.244226 1.912448 -0.307528 -0.666382 -1.755455 -0.704733 -1.595984 -0.141225 -2.869552 2.030864 2.645759 -2.102930 0.940228 0.238959 0.360752 -0.051217 0.673916 -0.100588 1.744283 0.907226 -0.202277 -0.257232 -0.657925 -0.360442 0.742763 -1.054527 -1.452496 -3.703354 1.406158 -2.653696 -2.177613 0.771081 1.278939 -0.721494 -0.407668 -0.518551 0.697594 0.457185 -1.039904 -1.578280 -0.134793 0.707651 0.806549 -0.828760 0.219412 -0.323596 0.018212 -0.115113 -2.548258 0.277072 0.154361 -0.633487 -0.236628 1.499096 0.038420 -0.336186 -0.372854 0.538262 -0.730770 1.900318 -0.482230 1.706911 -0.167458 1.597802 -0.775074 1.335924 1.289384 0.145431 -0.672118 0.560797 -0.920373 0.731133 -1.348615 0.448261 -1.002856 0.604285 1.052341 -0.774263 -1.778965 -0.732878 -0.730485 -2.341444 0.391326 -1.405136 -1.440889 0.489897 1.599860 1.576399 1.467814 1.562636 -1.637940 0.381029 0.009958 0.251539 1.510555 -0.157890 0.906683 -0.887439 -1.777962 1.157222 0.307601 0.469563 0.235980 -0.034623 0.138871 -1.519012 -0.180197 0.968167 1.059150 -0.628969 1.614291 1.325025 1.224572 -1.412398 0.628918 1.276314 -0.830798 0.328693 -0.210888 -2.300254 0.860101 0.419730 1.000385 1.829479 -0.231423 -0.463226 0.817826 -0.485718 0.731906 -1.077032 0.082282 -1.261765 -0.820048 -1.470986 0.967099 -0.304357 -0.321815 -0.645382 -1.022236 2.284783 -2.606016 -0.953160 2.691421 -0.586812 0.655991 -1.878458 1.862101 -0.988180 1.236983 0.101237 0.006754 0.132082 -0.230171 -1.795723 0.331829 1.042468 -0.630628 0.362577 2.355291 0.639968 0.081575 -0.122842 1.736626 -0.882305 1.595844 -1.122984 2.301620 -0.308509 -1.023986 -0.066452 -0.711836 -0.450206 -1.474958 0.741254 2.074270 0.662047 1.289439 1.052865 0.795265 2.051866 -1.304687 1.751151 -0.317654 0.151298 -1.151572 -0.265370 0.754865 0.431669 -0.886497 1.116680 -2.212631 -2.457554 -3.159845 -1.376495 0.154989 -1.124598 0.696524 -1.034587 -0.721057 -1.573995 -2.003120 1.746230 -0.927966 0.200517 1.562852 0.752696 1.303885 2.165779 -1.016640 0.675812 -0.306105 0.376541 0.321313 -0.692109 -1.372069 1.965695 -0.845267 0.146443 2.497950 -0.634751 1.112861 -0.055245 1.234384 -1.061808 2.368257 0.740081 -0.834501 1.364032 1.849920 2.009636 0.807909 -1.309352 -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.363776 -1.718768 4.731066 4.105470 -0.988260 1.087349 -0.024788 -3.341224 2.744388 0.350100 -0.456744 1.143771 -1.913765 1.723487 -1.829602 2.628656 -3.772713 -1.795565 -1.646119 -2.365629 -1.788578 -1.540022 1.344849 0.516840 1.957757 1.725046 -2.271369 -0.033038 -1.807681 -2.455109 2.034520 -0.510904 1.426976 0.237347 0.648501 -5.658349 3.316710 2.340669 -1.183698 -2.919206 0.962532 -1.371975 -0.736548 -1.511269 -0.962737 0.401285 -0.909299 1.960854 1.895256 1.039434 0.395338 1.941557 1.146495 5.417961 -1.659897 2.213139 1.474266 0.414715 -0.371045 0.595415 1.005904 1.611517 1.005883 1.268166 0.401292 -2.877907 -1.006965 -1.281973 -1.977055 2.842121 -0.189587 -1.040801 -2.581123 -1.223128 -2.346562 -0.312298 -3.906325 3.226503 3.864206 -3.189564 1.373799 0.319890 0.506944 -0.028885 1.196982 -0.202329 2.843132 1.341975 -0.336760 -0.095261 -1.077504 -0.893718 1.183682 -1.687415 -2.203081 -5.408208 1.894317 -3.941005 -3.175696 1.213043 1.907513 -0.990921 -0.931179 -1.063846 1.174190 0.662886 -1.503455 -2.285433 -0.257276 1.132430 1.097718 -1.278032 0.128065 -0.135647 0.017890 -0.363175 -3.776557 0.424385 0.375783 -0.829811 -0.148462 2.278136 -0.119150 -0.548130 -0.627001 0.683521 -1.136692 2.983003 -0.758915 2.327637 -0.148602 2.136921 -0.713739 1.813909 1.704007 0.550221 -0.852089 0.354372 -1.267486 1.150034 -1.993837 0.635017 -1.223533 0.896335 1.633614 -0.874238 -2.625674 -1.134975 -1.215768 -3.625916 0.512659 -2.139626 -1.933090 1.227586 2.355250 2.450848 2.068643 2.104732 -2.443864 0.694081 -0.101128 0.444369 2.230299 0.153614 1.288918 -1.332782 -2.544063 1.782295 0.207942 0.847456 0.439580 -0.205211 0.181046 -2.080444 -0.578819 1.503701 1.615892 -0.677709 2.336517 1.987218 1.998516 -2.094438 0.939566 1.753446 -1.227506 0.519029 -0.264203 -3.278101 1.209605 0.581128 1.231773 2.788502 -0.513660 -0.689760 1.070844 -0.554765 1.049235 -1.582946 0.128448 -1.859571 -1.016953 -2.293894 1.298000 -0.587144 -0.473237 -1.138186 -1.548633 3.464223 -3.981337 -1.567524 4.136272 -1.000000 1.303183 -2.854155 2.535819 -1.413602 1.922681 -0.048067 -0.214049 0.196365 -0.696505 -2.621755 0.604425 1.568931 -0.926069 0.178596 3.466483 0.876886 0.062852 -0.169157 2.484764 -1.166249 2.404381 -1.717572 3.506098 -0.445715 -1.210308 -0.152960 -1.082670 -0.602728 -2.172658 1.067455 3.053406 1.052789 2.134671 1.472196 1.250958 2.748135 -1.925388 2.444076 -0.439905 0.065387 -1.698596 -0.362946 1.116883 0.871844 -1.247615 1.523598 -3.228220 -3.716380 -4.808764 -1.948408 -0.000946 -1.402375 1.031468 -1.415197 -1.141139 -2.175442 -2.885533 2.489626 -1.369429 0.595046 2.227753 1.160148 2.019559 3.258716 -1.555504 0.841066 -0.223277 0.492357 0.435708 -0.791916 -2.309272 3.009770 -1.149478 0.324958 3.857364 -0.891174 1.729602 -0.230776 2.224947 -1.543655 3.499295 1.057385 -1.445081 1.861360 2.708748 2.637349 1.336797 -1.965910 -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.842032 -1.423644 3.593755 3.030444 -0.804644 0.933851 0.065244 -2.555362 2.301931 -0.404060 -0.389452 0.699046 -1.775435 1.222008 -1.680840 1.530698 -2.943896 -1.679190 -1.287285 -1.877164 -1.283280 -1.382080 1.015652 0.655142 1.449181 1.371748 -1.708681 -0.004095 -2.064290 -0.935053 2.012212 -0.409096 1.156487 0.541361 0.497077 -4.321738 2.383793 1.867365 -0.857833 -2.282025 0.739811 -1.491229 -0.399768 -1.547014 -0.690632 0.175966 -0.727112 1.535617 1.581851 0.390725 0.061703 1.360051 0.154761 4.068250 -1.587905 1.711192 1.018080 0.369524 -0.355079 0.450251 0.679157 1.226888 0.907030 1.041094 -0.215241 -2.202398 -0.632721 -1.255592 -1.691129 2.247070 -0.074777 -0.538288 -1.983581 -0.846457 -2.197557 -0.359878 -2.336856 2.527859 3.052434 -2.524995 1.222789 0.130187 0.603919 -0.081992 1.079853 -0.123552 2.300552 0.914143 -0.386581 -0.154247 -1.731093 -0.320382 0.632283 -1.303037 -1.623139 -3.851542 1.482155 -3.371103 -2.604185 0.671610 1.359372 -0.726146 -0.805353 -0.397945 0.888936 0.553896 -1.214901 -1.923203 -0.106835 1.024141 0.807775 -0.899508 0.230829 -0.069595 -0.053884 -1.071525 -2.937662 0.254187 0.259755 -0.745637 -0.084179 1.996621 -0.682866 -0.407330 -0.370070 0.499398 -0.936142 2.477590 -0.646799 1.393409 -0.054574 1.160273 -0.625942 0.979217 1.120306 1.458968 -0.862762 0.266799 -0.888486 0.775228 -1.625533 -0.044253 -0.882283 0.460961 0.826880 -1.024330 -1.897934 -0.798832 -0.869229 -3.001792 0.228358 -1.673478 -1.415345 1.038096 1.869921 2.408079 1.617382 2.270631 -1.758632 0.670032 0.028588 0.095853 1.837588 0.289268 1.135360 -1.125616 -2.036881 1.388090 -0.237748 0.711853 0.344577 -0.119271 -0.014241 -1.923952 -0.603102 0.998767 1.299897 -0.294491 2.014283 1.624451 0.473567 -2.200381 0.933498 1.368515 -0.928562 0.468474 -0.121835 -2.549305 1.064654 0.510234 0.644657 2.078747 -0.432178 -0.645016 0.748453 -0.386474 1.030828 -1.497912 -0.060048 -1.518209 -0.821345 -2.111346 1.023346 -0.496364 -0.574575 -1.032416 -1.472540 2.712070 -2.867670 -1.491936 3.182883 -0.287950 1.494680 -2.446258 1.309187 -1.206821 2.000705 0.035376 0.039552 0.157947 -0.539534 -1.958767 0.413846 1.207194 -0.868593 0.325219 2.641302 0.752193 0.177000 -0.005653 2.044765 -0.828127 1.862294 -1.381546 2.589414 -0.253120 -1.282834 0.285835 -0.949974 -0.421117 -1.532379 0.936168 2.779577 1.282950 2.011393 1.462490 1.129119 2.086187 -1.409111 1.500097 -0.408897 0.085578 -1.207851 -0.313651 0.834876 0.823058 -0.895503 1.021600 -2.612890 -3.627662 -3.456617 -2.003501 0.347517 -1.632112 0.546308 -0.862085 -0.750386 -1.954012 -2.137240 1.258722 -1.143867 1.540484 1.547386 0.952125 1.610271 2.659148 -1.739003 0.547607 0.534898 0.753134 0.212302 -0.467594 -2.250283 2.396339 -1.033870 0.372994 3.267019 -0.821226 1.301507 -0.215615 1.977032 -1.313953 2.946692 0.884909 -1.453644 1.669045 1.889591 2.103796 1.638660 -1.552439 -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.293158 -0.397882 1.068451 0.916522 -0.100020 0.194671 0.043264 -0.689848 0.645153 0.281732 -0.188594 0.258367 -0.479753 0.418912 -0.548394 0.719565 -0.747665 -0.442938 -0.320794 -0.453152 -0.356467 -0.369472 0.401240 -0.028223 0.488823 0.345934 -0.495299 -0.008647 -0.453995 -0.805820 0.304187 -0.163785 0.244568 -0.075894 0.074202 -0.795028 0.751383 0.564115 -0.304219 -0.657810 0.268376 -0.273450 -0.156074 -0.255214 -0.017439 0.173658 -0.132883 0.416568 0.430021 0.367135 0.285192 0.362986 0.378229 1.072168 -0.401563 0.511014 0.356698 0.173950 -0.021120 0.149602 0.241933 0.333114 0.146206 0.338972 0.135003 -0.606160 -0.337444 -0.239565 -0.375323 0.629740 -0.240947 -0.176281 -0.654330 -0.281315 -0.445177 -0.006877 -1.318524 0.618319 0.916352 -0.687228 0.314008 0.150160 0.148701 -0.032412 0.169480 -0.019380 0.481945 0.322292 -0.089150 -0.036692 -0.020824 -0.121549 0.247443 -0.321551 -0.475105 -1.120831 0.498366 -0.850489 -0.709315 0.276430 0.397672 -0.196271 -0.007799 -0.046219 0.165464 0.182219 -0.345299 -0.524032 0.040776 0.156775 0.363417 -0.252767 0.075735 -0.109034 -0.029202 0.078707 -0.855799 0.050026 0.010141 -0.288724 -0.019466 0.457929 0.120092 -0.070577 -0.118227 0.141695 -0.196931 0.695232 -0.072643 0.649641 -0.134378 0.602476 -0.376100 0.571446 0.501290 -0.132488 -0.257886 0.332696 -0.277880 0.187230 -0.429248 0.140063 -0.405034 0.160813 0.421674 -0.305631 -0.618250 -0.255126 -0.332114 -0.764604 0.177925 -0.470616 -0.424158 0.072977 0.529824 0.492943 0.511895 0.619741 -0.601321 -0.006726 -0.011583 0.066689 0.461079 -0.017664 0.303346 -0.273025 -0.585764 0.416012 0.208351 0.065865 0.150435 -0.035396 0.072501 -0.517719 0.104078 0.454618 0.337002 -0.284161 0.554490 0.392900 0.303702 -0.282476 0.180931 0.449372 -0.197081 0.086544 -0.064677 -0.797340 0.368231 0.093403 0.450201 0.478987 -0.044110 -0.057381 0.312894 -0.256484 0.252453 -0.370071 0.042183 -0.410950 -0.260462 -0.489569 0.451408 -0.050231 -0.108889 -0.074532 -0.217464 0.729637 -0.747152 -0.148441 0.789137 -0.133626 0.136579 -0.453107 0.628066 -0.332445 0.442534 0.087035 0.025828 0.067402 -0.089284 -0.487987 -0.026382 0.357161 -0.113750 0.095688 0.689841 0.219924 -0.057302 0.018381 0.578100 -0.307652 0.514205 -0.298312 0.692098 -0.069465 -0.286223 0.028499 -0.233490 -0.163784 -0.485857 0.164591 0.738172 0.201188 0.342915 0.376304 0.134286 0.720910 -0.447728 0.594096 -0.073067 0.141285 -0.430180 -0.086414 0.215431 0.127179 -0.337674 0.346783 -0.701713 -0.751284 -0.985977 -0.363479 -0.030794 -0.381662 0.251212 -0.358598 -0.215702 -0.407560 -0.691472 0.723481 -0.318262 -0.038079 0.449610 0.212392 0.423399 0.692772 -0.277274 0.202068 -0.196829 0.100091 0.116685 -0.186480 -0.358005 0.607717 -0.305741 -0.045330 0.763727 -0.259558 0.318399 0.050514 0.352215 -0.348787 0.764750 0.266899 -0.202569 0.511622 0.639018 0.745919 0.219829 -0.432780 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_wrap(int* const&, int*) = -0.216889 -0.266459 0.395803 0.358802 0.113353 0.124916 0.245948 -0.174661 0.469585 0.329413 -0.007362 -0.032471 -0.401040 0.090013 0.115063 0.290524 -0.196848 -0.331630 0.027113 -0.200139 -0.128038 -0.330870 0.165481 -0.106598 0.150359 -0.107711 -0.137837 -0.168707 -0.356358 -0.158032 0.290792 -0.185617 0.213712 0.088776 -0.043321 -0.702062 0.261666 0.145042 -0.145935 -0.324930 0.068807 -0.258085 0.239958 -0.072157 0.163421 0.120623 0.114283 0.071114 0.303339 0.131296 0.287338 -0.121985 -0.030490 0.555408 -0.395300 0.218027 0.043743 -0.055105 -0.123191 0.127063 0.076943 -0.007923 0.280317 0.287755 -0.196732 -0.193710 -0.079493 -0.219865 -0.473803 0.243908 -0.030907 0.036258 -0.336534 -0.063083 -0.038942 -0.199795 -0.676753 0.197781 0.544326 -0.285583 0.383646 0.152019 0.268294 0.001952 0.195213 0.037562 0.294699 0.022421 -0.294056 0.011327 -0.200821 -0.072924 -0.024529 0.094550 0.022512 -0.128327 0.112014 0.162297 -0.352471 0.176669 0.028961 0.169857 -0.442496 0.072874 0.169694 0.238159 -0.255216 -0.464516 -0.234132 0.024126 -0.010357 -0.087593 0.024672 -0.299998 -0.227258 -0.320474 -0.343451 -0.193706 -0.016508 -0.325417 -0.278200 0.334512 -0.299204 0.071418 0.048823 0.086933 -0.119701 0.385644 0.071677 0.245280 0.189724 -0.164565 -0.808130 -0.016216 0.186422 0.517857 0.047057 0.096815 -0.174283 -0.009022 -0.269278 0.011859 0.148086 0.219611 0.447816 -0.194995 -0.199626 -0.079910 0.190318 -0.396993 0.232127 -0.294806 0.257395 -0.013431 0.286884 0.249883 0.268839 0.600635 -0.377012 0.270257 -0.180719 -0.050241 0.267341 0.248729 0.269126 -0.163710 -0.187158 0.028721 0.268726 -0.047430 0.144729 -0.181513 0.009020 -0.336900 -0.070138 0.030282 0.083114 -0.156346 0.217679 0.111036 0.453879 -0.472448 0.147832 0.227368 0.070123 0.064001 0.009635 -0.384964 0.263986 0.048628 -0.160819 0.076910 -0.038292 -0.271402 0.056405 -0.160563 0.133449 -0.213268 0.019920 -0.220722 -0.107197 -0.261829 0.103177 -0.197172 -0.249392 0.038858 0.171940 0.353763 0.152851 -0.182399 0.246892 -0.116255 0.064242 -0.399758 0.631279 -0.239453 0.106469 -0.377915 -0.070115 -0.129647 0.411151 0.018980 -0.030555 0.165898 -0.077239 0.173204 0.496971 0.165358 0.094412 0.114861 0.339207 0.085525 0.048982 -0.029303 0.325288 -0.067848 0.012571 0.122012 -0.172845 0.197385 0.014790 -0.036545 0.399399 0.403974 -0.088995 0.245487 0.179694 0.199252 -0.154400 0.178474 0.025816 0.378240 -0.117683 0.043544 -0.025753 0.044870 -0.168403 0.133783 -0.341205 -0.382094 0.154007 -0.229562 -0.076458 0.229987 -0.023723 0.042852 0.124349 -0.381034 -0.094659 0.022612 -0.191255 0.188176 -0.014701 0.111683 0.259365 0.390275 -0.190001 -0.239648 -0.002498 -0.080009 -0.127920 -0.068424 -0.147443 0.223762 -0.365918 0.132946 0.165409 -0.101269 -0.077372 0.040507 0.414465 -0.209244 0.484187 0.195786 0.028391 0.414686 0.305020 0.665044 0.015395 -0.157214 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a1(int const*, int const*, int*) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = -0.144156 -0.313833 0.558863 0.506077 -0.076510 0.201162 0.010572 -0.350565 0.501939 0.069496 -0.031345 0.030574 -0.391492 0.146884 0.022916 0.255602 -0.414106 -0.343249 -0.138677 -0.308668 -0.236236 -0.342771 0.100169 0.074835 0.151711 0.191092 -0.258414 0.053924 -0.366146 -0.147983 0.368572 -0.134983 0.267953 0.258495 0.118484 -0.912191 0.380450 0.277325 -0.134654 -0.424352 0.027868 -0.303017 0.162516 -0.222740 -0.063592 0.129835 -0.024563 0.035223 0.313569 0.040082 0.132262 0.013217 -0.065357 0.609266 -0.317694 0.284301 0.113775 -0.053193 -0.122284 0.039807 0.112471 0.121839 0.288643 0.264071 -0.208976 -0.325470 -0.077672 -0.258975 -0.478475 0.364757 -0.038605 -0.076998 -0.361941 -0.233571 -0.267007 -0.208823 -0.484414 0.353615 0.607860 -0.408911 0.338211 0.103543 0.226572 0.044605 0.304928 -0.005364 0.492390 0.102501 -0.243217 0.135522 -0.175771 -0.121279 0.057139 0.024834 -0.168418 -0.265117 0.179694 -0.315074 -0.445948 0.204518 0.136736 0.089484 -0.483498 -0.047223 0.203358 0.189479 -0.255570 -0.451461 -0.131196 0.146614 0.092537 -0.137200 -0.027912 -0.100856 -0.150643 -0.308928 -0.490829 -0.094209 0.053613 -0.249214 -0.117943 0.428406 -0.286158 -0.014447 -0.028413 0.072461 -0.183469 0.564966 -0.035543 0.238610 -0.013296 -0.046972 -0.489233 -0.022575 0.132459 0.466239 -0.061770 -0.054852 -0.141202 0.039680 -0.325761 -0.024508 -0.003451 0.145473 0.432751 -0.130575 -0.293599 -0.136582 -0.104196 -0.642912 0.109138 -0.356210 0.059130 0.248615 0.347239 0.447418 0.290854 0.625682 -0.373781 0.206068 -0.149696 -0.079921 0.340192 0.245316 0.263844 -0.214271 -0.285802 0.210207 0.072265 0.083527 0.213627 -0.193316 -0.012532 -0.340718 -0.140510 0.234296 0.193555 0.000449 0.325980 0.229323 0.336904 -0.454038 0.188567 0.221786 -0.012497 0.098817 -0.005516 -0.416050 0.223130 0.078998 -0.096501 0.243214 -0.107246 -0.184153 0.042110 -0.111101 0.216418 -0.320144 0.040183 -0.271271 -0.000104 -0.405606 0.096211 -0.216712 -0.189601 -0.104571 -0.077470 0.487065 -0.222966 -0.294487 0.487507 -0.023051 0.326181 -0.453988 0.296330 -0.253330 0.446206 -0.273513 -0.055423 -0.055517 0.054916 -0.104190 0.052417 0.224988 -0.113298 -0.000939 0.489995 0.156356 0.045821 0.072253 0.379388 0.005513 0.229802 -0.144465 0.449609 -0.028719 -0.019890 0.130894 -0.213056 0.064183 -0.117398 0.038196 0.451586 0.420581 0.172962 0.245696 0.223447 0.231875 -0.220854 0.180768 0.005138 0.208382 -0.200083 -0.012452 0.061593 0.246616 -0.157644 0.061915 -0.430217 -0.593461 -0.303901 -0.322462 -0.097725 0.081473 -0.004419 0.006262 -0.011293 -0.287855 -0.235865 0.258343 -0.226644 0.515741 0.042629 0.176875 0.340464 0.512018 -0.296201 -0.175580 0.099153 -0.025828 -0.072478 0.035593 -0.398569 0.407186 -0.285106 0.108748 0.434689 -0.165387 0.101918 0.075167 0.464352 -0.249141 0.567416 0.197543 -0.165643 0.413133 0.326095 0.530076 0.203785 -0.251860 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a2(int const*, int const*, int*) = -0.600533 -1.041844 1.619427 1.378216 0.272507 0.824195 0.348432 -0.969565 1.237401 0.824992 -0.097873 0.440667 -1.041300 0.234132 -0.205923 0.650773 -0.779620 -1.056540 -0.228010 -0.821215 -0.429342 -0.965398 0.074700 0.386226 0.440356 -0.250667 -0.766871 -0.077036 -1.603033 -1.143458 0.696661 -0.314285 0.750462 -0.395423 0.127330 -2.621557 1.210629 1.137690 -0.347127 -1.394591 0.259019 -0.779689 0.106371 -0.022152 -0.119568 0.375091 0.097134 -0.054510 0.690456 0.322989 0.587278 0.253894 0.071668 2.066610 -0.834538 1.101037 0.550737 -0.078823 -0.202771 0.430875 0.209935 0.203810 0.878244 0.731327 -0.495081 -0.764550 -0.009124 -0.210427 -1.337781 0.839785 -0.013782 -0.506149 -0.676640 -0.271593 -0.959093 -0.485960 -0.277710 0.616621 1.775421 -0.746316 1.313062 0.303794 0.730842 0.109496 0.998606 -0.045259 1.304664 0.330009 -0.795121 -0.079795 -0.875931 -0.099307 0.007694 0.551060 -0.581196 -0.736472 0.583724 -0.866924 -1.355223 0.707489 0.165430 -0.031934 -1.519198 -0.304246 0.737274 0.565348 -0.725766 -1.431942 -0.780584 0.742669 -0.177944 -0.582476 0.115169 -0.785590 -0.314953 -0.590908 -1.144516 -0.258714 0.451873 -0.750119 -0.949387 1.299483 -0.721874 0.232589 -0.095633 0.433281 -0.473226 0.811847 -0.071659 0.766555 0.150398 -0.288901 -1.836737 -0.212697 0.288959 0.880497 -0.271666 -0.064174 -0.364144 0.322380 -0.555130 0.486022 -0.252503 0.719263 1.224016 -0.274696 -0.640699 -0.540598 0.282768 -1.408026 0.284458 -0.847252 -0.359021 0.176949 1.059271 0.645336 0.687662 1.521575 -0.881449 0.838324 -0.281706 -0.121386 0.831636 -0.182395 0.636238 -0.649011 -1.029228 0.492739 0.691402 0.269530 0.353213 -0.414711 -0.048423 -0.801910 -0.616477 0.285439 0.393846 -0.044838 1.061487 0.723096 1.753884 -1.558723 0.402491 0.444284 -0.320849 0.359752 -0.292614 -1.328025 0.374052 0.454921 -0.143166 1.310058 -0.209046 -0.910854 0.316269 -0.131975 0.484701 -0.898665 0.527041 -0.970127 -0.156025 -0.750132 -0.304326 -0.639017 -0.596633 -0.635652 -0.295261 1.426601 -0.614980 -1.339731 1.270851 -0.297445 0.461088 -1.908107 1.123138 -0.765176 0.862263 -0.630826 -0.015004 -0.277317 0.845053 -0.487015 0.365510 0.654365 -0.814249 0.824125 1.605596 0.387941 0.354190 0.111475 0.938577 -0.094589 0.174608 -0.714513 1.243209 -0.217186 -0.331677 0.021785 -0.617787 0.484166 -0.236346 0.098818 0.485949 1.081029 -0.080485 0.339442 1.092934 0.528264 -0.541642 0.734585 -0.082111 0.671883 -0.478785 -0.083351 -0.082688 0.334054 -0.145825 0.541221 -1.456299 -1.280974 -0.790929 -1.401241 0.026195 0.395973 0.070620 0.159479 0.090045 -1.550323 -0.730583 0.763019 -0.530834 1.233923 0.573062 0.702596 0.916894 1.246004 -0.532897 -0.317028 -0.171861 -0.144957 -0.506149 -0.455557 -0.607933 0.972991 -0.782057 0.717088 0.879677 -0.201940 0.366110 0.139859 0.700485 -0.816486 1.692227 0.748005 -0.360787 0.901222 0.718540 1.786064 -0.230132 -0.709979 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = -1.409257 -2.846309 3.425526 2.974266 1.058556 2.508666 0.438501 -1.709761 1.981389 2.566407 -0.794134 1.723880 -1.933908 -0.035842 -0.402266 0.945403 -1.052439 -2.180819 -0.022936 -1.031924 -0.235824 -2.097141 -0.943907 1.834750 0.581569 -0.465251 -1.408679 0.468549 -4.034073 -3.876317 0.398992 -0.452918 1.519359 -1.314102 0.797556 -4.188739 2.737879 3.265506 -0.284536 -3.731493 0.281153 -1.229911 -0.456317 0.964076 -0.087337 1.543667 0.763263 -0.306783 0.553910 1.031368 0.846008 0.187256 0.985888 3.287829 -0.532146 2.909769 2.034848 -0.107440 0.508820 0.824856 0.341021 0.042643 1.747197 1.565771 -1.014898 -1.023622 0.160291 0.647663 -2.436836 1.271889 -0.044680 -1.539958 -1.017922 -0.613073 -2.321213 -0.555619 0.455419 0.764153 3.922882 -0.735496 3.513937 1.072245 2.028468 0.230937 2.682934 -0.218728 2.589696 1.071946 -2.143911 0.004135 -2.041399 -0.676865 -0.090878 1.641468 -1.817950 -0.653109 1.122482 -2.761551 -2.834705 2.021749 -0.356594 -0.497367 -2.793059 -0.745173 1.822232 1.277883 -1.303752 -2.986071 -1.583809 2.155913 -1.037623 -1.585781 0.306600 -1.343023 -0.416015 -0.185217 -1.920833 -0.544302 1.979066 -1.756560 -1.836730 2.870008 -0.798310 1.304640 -0.505115 0.675790 -0.621366 0.858540 0.462945 1.547771 0.079315 -0.997672 -3.777191 0.070376 0.223403 0.056317 -1.018815 -0.151813 0.211298 1.062053 0.033029 1.902726 -1.413699 1.643503 2.594836 -0.055514 -1.048315 -1.937920 0.310149 -2.257159 0.431964 -1.413187 -1.699638 -0.002795 2.352043 0.313787 0.900939 2.508428 -1.738476 1.338879 -0.557266 0.205999 0.948303 -1.197137 0.837397 -1.380936 -2.361065 1.476037 2.287656 0.513346 0.969274 -1.157475 0.023297 -0.918463 -1.347581 1.223701 0.658662 0.251928 2.851994 1.586053 4.041679 -2.261708 0.216878 0.155963 -0.914860 0.788579 -1.013255 -2.941336 0.680475 1.084435 0.660057 3.603012 -0.459386 -1.735681 1.050108 0.100517 0.733114 -2.015101 2.080236 -2.444317 -0.076794 -0.993581 -1.057847 -1.391655 -1.341087 -1.933052 -0.521840 3.119258 -1.181641 -3.175576 2.064049 -0.842540 0.659843 -4.157134 1.352058 -1.633576 1.910891 -0.405132 0.057221 -0.485277 1.489634 -0.691873 0.499841 1.574953 -2.176957 2.453389 2.534888 0.534182 0.367186 0.602000 1.314356 -0.520008 -0.722405 -1.979728 1.925402 -0.452605 -0.251552 -0.452729 -1.362640 1.576727 -0.241493 -0.352597 -0.496015 1.891460 -0.989816 -0.099448 2.560897 0.108906 -1.029971 1.410403 -0.257692 1.505291 -1.261252 -0.416636 -1.108860 0.480078 0.491565 1.258327 -3.383444 -1.823675 -2.163130 -3.219442 -0.431231 1.025514 0.501967 0.980737 0.362837 -3.608863 -1.826088 2.599366 -0.834220 2.395694 1.644413 1.789441 1.991671 1.967257 -0.184960 -0.723358 -1.117697 -0.451237 -1.814560 -1.036127 -0.501819 1.682506 -1.337901 2.045666 1.428142 -0.195621 0.977976 0.140291 0.636221 -1.959214 3.465922 2.125790 -1.133754 0.883393 1.029859 3.600180 -1.975820 -1.664802 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__copy_move::__assign_one(int*, int const*) = -0.447798 -0.462488 0.542510 0.467277 0.203372 0.266157 0.348717 -0.225653 0.616194 0.533368 -0.008517 0.069023 -0.511925 0.056128 0.085856 0.319853 -0.192795 -0.484376 0.068154 -0.281763 -0.209050 -0.458611 0.045422 -0.029150 0.139585 -0.281011 -0.216415 -0.209382 -0.611153 -0.349335 0.301978 -0.217686 0.294247 -0.167085 -0.045902 -1.228875 0.353475 0.309355 -0.179077 -0.548908 0.064573 -0.370408 0.279107 0.025570 0.109444 0.117369 0.193968 0.012763 0.311399 0.159261 0.402159 -0.095436 -0.025134 1.023946 -0.444487 0.407213 0.194540 -0.054395 -0.179169 0.228939 0.126847 -0.066839 0.431999 0.376929 -0.277479 -0.195271 -0.045357 -0.197763 -0.648587 0.284180 0.000000 -0.098032 -0.333675 -0.086479 -0.187846 -0.331962 -0.636232 0.194063 0.790285 -0.391191 0.645569 0.234220 0.446934 0.080613 0.390696 0.023058 0.509858 0.053199 -0.462404 -0.005891 -0.287132 -0.026248 -0.062927 0.262863 -0.040458 -0.236574 0.209419 0.109457 -0.558534 0.343179 -0.024441 0.212063 -0.723951 -0.031351 0.311287 0.334095 -0.412995 -0.691761 -0.504358 0.160415 -0.124684 -0.187151 0.092168 -0.451255 -0.231151 -0.392828 -0.453409 -0.259492 0.145160 -0.460094 -0.513226 0.546426 -0.403572 0.203686 0.040617 0.137431 -0.140562 0.433627 0.112428 0.294485 0.171365 -0.253874 -1.228802 -0.116327 0.161834 0.618647 0.031100 0.074701 -0.137511 0.062110 -0.247467 0.149803 0.093018 0.385031 0.633342 -0.158499 -0.253063 -0.233615 0.329836 -0.528898 0.258077 -0.406981 0.192086 -0.009413 0.429753 0.302637 0.274187 0.772256 -0.456771 0.483873 -0.227208 -0.072392 0.305724 0.128033 0.349768 -0.257495 -0.343301 0.044850 0.473367 0.022163 0.179892 -0.288636 -0.013510 -0.387746 -0.224712 -0.002074 0.147090 -0.154894 0.360934 0.197662 0.919638 -0.829675 0.184272 0.175861 0.018965 0.134045 -0.096875 -0.568838 0.254503 0.140477 -0.239538 0.287708 -0.058422 -0.453138 0.095934 -0.167627 0.168387 -0.320190 0.144946 -0.367943 -0.169119 -0.283810 -0.004902 -0.345521 -0.307037 -0.111948 0.104108 0.548602 0.007368 -0.424398 0.372189 -0.149461 0.099786 -0.738437 0.875176 -0.324288 0.222269 -0.543037 -0.095563 -0.207498 0.683390 0.039239 0.081330 0.265180 -0.266124 0.331763 0.756714 0.185504 0.243377 0.162066 0.446785 0.086022 -0.068525 -0.142716 0.475843 -0.109696 -0.080863 0.084972 -0.274061 0.378728 0.089660 -0.002421 0.357110 0.577156 -0.239293 0.224232 0.437430 0.154189 -0.215473 0.247443 0.021162 0.552201 -0.183750 0.066729 -0.151859 0.063857 -0.143664 0.184290 -0.538443 -0.447189 0.042272 -0.424130 -0.074984 0.402070 -0.058772 0.098158 0.177560 -0.677013 -0.156194 0.168389 -0.274974 0.317234 0.079548 0.267490 0.427459 0.529069 -0.183577 -0.325758 -0.046784 -0.182996 -0.280536 -0.169404 -0.135903 0.263027 -0.497511 0.336692 0.158320 -0.039959 -0.039263 0.167548 0.419476 -0.305041 0.713154 0.339468 -0.024405 0.459648 0.435412 0.977680 -0.185786 -0.255174 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.082294 -0.246031 0.510695 0.488137 -0.047618 0.120684 0.014242 -0.276361 0.369542 0.295450 -0.029628 0.074259 -0.276483 0.154065 0.141442 0.400264 -0.342268 -0.208923 -0.091803 -0.231410 -0.205199 -0.232616 0.130523 -0.039239 0.177448 0.171365 -0.218343 0.003549 -0.104077 -0.440528 0.167248 -0.132359 0.231869 0.170539 0.081525 -0.750718 0.372907 0.219179 -0.143299 -0.354668 0.055053 -0.124320 0.121816 -0.073899 -0.043758 0.182643 0.020196 0.004802 0.247364 0.191981 0.211856 0.002641 0.203569 0.493740 -0.185570 0.227877 0.127340 -0.082997 -0.091565 0.008249 0.124448 0.082619 0.211284 0.207205 -0.026001 -0.295701 -0.141665 -0.162536 -0.383548 0.276624 -0.088107 -0.113423 -0.340364 -0.236187 -0.062768 -0.144410 -0.696350 0.285410 0.506761 -0.327810 0.259352 0.132843 0.110696 0.035447 0.179691 0.010198 0.323784 0.119914 -0.163357 0.149706 0.171858 -0.234637 0.136765 0.055276 -0.145948 -0.270614 0.158281 -0.095473 -0.329377 0.251161 0.151518 0.069974 -0.377696 -0.128948 0.139948 0.191616 -0.207747 -0.341545 -0.118207 0.038041 0.121701 -0.133577 -0.095743 -0.094572 -0.153718 -0.029233 -0.419400 -0.058955 0.025342 -0.208105 -0.096031 0.277274 -0.058879 -0.001453 -0.045500 0.082264 -0.142193 0.473408 0.018281 0.343434 -0.007250 0.096038 -0.420362 0.101685 0.204612 0.110912 -0.001006 -0.037017 -0.165546 0.040418 -0.250285 0.119489 0.019310 0.208386 0.560322 -0.032966 -0.290440 -0.130436 -0.130672 -0.505482 0.165139 -0.303704 0.107229 0.196501 0.277097 0.190770 0.259761 0.408460 -0.379639 0.108175 -0.168787 -0.027704 0.263471 0.216618 0.202983 -0.154289 -0.201899 0.173752 0.207378 0.040124 0.192094 -0.160016 0.052015 -0.216368 -0.036747 0.277211 0.137702 -0.095511 0.206139 0.160323 0.612279 -0.141804 0.079184 0.203687 0.004760 0.047508 0.000318 -0.359079 0.179259 0.032551 -0.007944 0.187168 -0.067074 -0.115369 0.077652 -0.145036 0.107132 -0.198260 0.097796 -0.203478 0.032842 -0.250883 0.080677 -0.164719 -0.126816 -0.004232 0.076959 0.406183 -0.175182 -0.120179 0.362496 -0.151500 0.108756 -0.294721 0.512937 -0.197185 0.221318 -0.278301 -0.127600 -0.042682 0.049427 -0.079342 0.007341 0.188371 -0.005930 -0.065190 0.424651 0.130530 -0.042393 0.032929 0.300521 -0.001711 0.220228 -0.069864 0.400471 -0.050980 0.122900 0.016029 -0.136781 0.027761 -0.133262 -0.036365 0.298451 0.220178 0.016371 0.135582 0.102914 0.240186 -0.213049 0.279704 0.037598 0.235852 -0.198088 -0.008569 0.061182 0.193960 -0.157040 0.106386 -0.332303 -0.289133 -0.260274 -0.116655 -0.213745 0.267348 0.089384 -0.063450 -0.031064 -0.145285 -0.226512 0.416502 -0.166738 0.123899 0.058546 0.113409 0.278454 0.379983 -0.081137 -0.152472 -0.141994 -0.116823 -0.005993 0.008157 -0.183652 0.309360 -0.229977 0.021435 0.276249 -0.126416 0.069461 0.065243 0.351575 -0.190909 0.421660 0.139215 -0.024328 0.339729 0.347359 0.437828 -0.023971 -0.196841 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.302412 -0.381753 0.617830 0.563668 0.155930 0.229224 0.284677 -0.364377 0.674355 0.504500 0.046208 0.023195 -0.514362 0.164518 0.103160 0.445541 -0.308723 -0.461588 -0.047865 -0.372323 -0.268161 -0.462403 0.195772 -0.111999 0.203486 -0.216108 -0.293723 -0.187144 -0.507471 -0.375549 0.402145 -0.221125 0.318892 -0.076621 -0.046397 -1.253548 0.458726 0.273995 -0.216582 -0.492301 0.090780 -0.348578 0.254996 -0.054728 0.097620 0.127023 0.072458 0.024373 0.426722 0.180615 0.442250 -0.002288 -0.014757 1.004496 -0.549930 0.374853 0.094662 -0.061890 -0.200998 0.227448 0.125234 0.068616 0.421680 0.396257 -0.215521 -0.321343 -0.069103 -0.240474 -0.684044 0.402956 -0.016799 -0.092617 -0.419871 -0.106836 -0.156883 -0.299492 -0.719319 0.289019 0.791866 -0.420750 0.521906 0.181976 0.344373 0.049596 0.342675 0.006289 0.554732 0.064446 -0.393239 -0.007241 -0.234521 -0.076188 0.001983 0.190093 -0.058398 -0.322025 0.194681 0.098471 -0.548428 0.304128 0.090472 0.196086 -0.760751 -0.069525 0.310307 0.285417 -0.370738 -0.679800 -0.427545 0.137182 -0.028870 -0.187201 0.043303 -0.473256 -0.251060 -0.370815 -0.523051 -0.241633 0.034503 -0.408274 -0.492467 0.518530 -0.404134 0.057997 0.027192 0.168282 -0.205158 0.478847 0.006802 0.406216 0.199924 -0.144229 -1.115531 -0.072289 0.230396 0.615597 0.072111 0.065761 -0.284414 0.050852 -0.402738 0.146272 0.125252 0.351036 0.678995 -0.178333 -0.318318 -0.133200 0.289950 -0.619082 0.285599 -0.442631 0.197475 0.011452 0.440437 0.349831 0.377537 0.757645 -0.508501 0.454998 -0.234615 -0.053407 0.417575 0.173290 0.357211 -0.250891 -0.354851 0.075965 0.380627 0.003384 0.182595 -0.256133 -0.010586 -0.430253 -0.196470 0.023923 0.144032 -0.179308 0.321323 0.206998 0.910897 -0.779826 0.243073 0.307583 0.019229 0.136765 -0.068294 -0.570398 0.266919 0.124151 -0.214391 0.290989 -0.080882 -0.440666 0.074684 -0.174354 0.209770 -0.312242 0.083949 -0.347276 -0.138937 -0.357816 0.020659 -0.299145 -0.288460 -0.040749 0.118790 0.561112 -0.017313 -0.403025 0.521562 -0.214054 0.099120 -0.703648 0.895537 -0.324826 0.173345 -0.550076 -0.088751 -0.196139 0.600481 -0.087589 0.106626 0.262694 -0.213914 0.255994 0.821076 0.205788 0.200990 0.084444 0.484731 0.088302 0.089779 -0.141345 0.597200 -0.108733 -0.043885 0.074130 -0.267627 0.271997 -0.050835 0.011210 0.431173 0.553457 -0.125089 0.257656 0.368692 0.296771 -0.244747 0.343712 0.027923 0.427664 -0.184659 0.065829 0.003764 0.070457 -0.235428 0.222465 -0.523997 -0.498985 0.000000 -0.396067 -0.067000 0.378112 -0.026406 0.018049 0.104642 -0.590730 -0.191965 0.180003 -0.280543 0.287381 0.085102 0.227578 0.390055 0.612672 -0.257166 -0.255874 -0.081897 -0.183863 -0.183764 -0.181377 -0.213857 0.386775 -0.456150 0.245987 0.258253 -0.090132 -0.005521 0.102182 0.485315 -0.290326 0.717877 0.284949 0.047646 0.541118 0.441089 0.957642 -0.038087 -0.253864 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::Graph(int) = -0.095979 -2.267847 2.871178 1.668742 -0.457873 1.676422 1.325861 -1.355719 1.308269 0.659367 -0.858477 0.550904 -1.606519 -1.030043 0.173252 -0.236953 -2.060444 -1.519766 0.139369 -0.668738 -0.358266 -1.534393 -0.510638 1.677049 0.473040 1.010871 0.079684 -0.135427 -2.459574 -0.633033 1.197444 -0.126621 0.679388 2.309849 1.630806 -2.035246 1.498935 1.556992 -0.193315 -2.558463 -0.033952 -0.145055 -0.814214 0.534219 0.369921 0.556388 0.420222 1.918562 -0.297569 0.329314 0.147668 -1.358417 0.228806 2.444110 0.785962 1.999492 2.230763 -0.205122 1.218865 1.259539 0.726761 -0.277871 0.629516 1.454067 -0.238737 0.335689 0.547900 -1.183201 -1.380734 1.262023 0.544978 -1.607784 -0.365840 -1.337303 -1.441946 -0.213141 -2.750659 1.974262 3.084754 -1.584940 2.669416 1.127071 2.108289 -0.874479 2.153173 -0.174095 2.524667 0.810721 -1.453760 0.668404 -2.555292 -2.168911 0.113658 -0.445328 -1.104809 -0.236480 1.386814 -2.368034 -2.212793 1.802435 0.079351 -0.270351 -0.870022 0.395403 1.081694 0.369897 -1.492597 -1.979373 -1.453911 1.530042 -1.874640 -0.194909 0.129673 1.459899 -0.680228 -0.316249 -1.049916 -0.116349 1.803130 -1.138190 -0.513436 2.343131 -0.842499 1.498813 -0.385899 -0.567291 -0.042325 0.866259 0.628133 0.052305 0.975437 -0.725342 -1.542577 1.155413 0.158293 1.340636 0.407795 0.239158 1.575732 1.315169 0.146387 1.257263 -1.189025 1.186264 0.030065 -0.495734 -1.584399 -1.286546 -0.578610 -1.905091 0.297577 -1.248387 -1.072026 0.571968 1.835538 2.154456 -0.509946 0.957896 -1.507454 0.791524 -0.455455 0.371251 -0.709726 -0.036918 0.556266 -1.119017 -1.376509 0.238351 0.787280 0.453918 1.168296 -1.497879 -0.667313 -1.308698 -2.152850 0.670409 0.746882 -0.162878 1.513361 1.621516 0.909434 -1.875740 -0.270969 -0.058203 -0.078397 -0.202491 -0.402191 -2.082959 0.789955 0.174740 0.864806 1.702490 -0.223301 -0.065794 0.363358 -0.311991 0.257356 -1.245231 0.525258 -1.323600 -0.102697 -0.856490 0.794836 -1.176330 -1.158013 -1.165934 -0.685772 2.367730 -1.187357 -1.987191 2.152755 -0.819077 1.521450 -1.756593 0.972325 -0.804808 1.619240 -0.027215 -0.317000 -0.502706 0.193996 0.038368 0.504923 0.382608 -1.047864 1.097380 1.581149 0.196626 0.778798 0.910018 0.998492 -1.442644 -0.916858 -1.565437 1.420812 -0.229315 -0.913996 -0.139321 -1.052747 1.327816 -0.089551 -0.201941 1.000656 1.040354 0.053563 0.372845 0.763984 -0.833019 -1.196992 0.297533 0.833073 1.239485 -1.033632 -0.347122 -0.541320 -0.011795 0.154590 0.037242 -2.195318 -1.620386 -1.958178 -1.667918 -1.566025 -0.844904 1.066708 0.723960 0.335404 -1.829895 -1.099580 0.650770 -0.659007 -0.113656 1.323815 1.503194 2.031762 1.739120 0.078633 -0.016480 0.320542 0.788353 -1.752451 -0.416224 -1.136418 0.352538 -1.794573 1.756711 1.435500 0.893011 1.084276 -0.553660 2.232983 -1.911537 1.726873 1.809489 -1.804874 0.014147 1.607751 1.502291 -0.151153 -1.539419 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::addEdge(int, int) = -0.258164 -0.966530 1.402509 1.356168 -0.111844 0.591160 0.321503 -0.791154 0.852417 0.736917 -0.080499 0.377124 -0.969210 0.308942 0.065420 0.749355 -0.964887 -0.747126 -0.247233 -0.636087 -0.630080 -0.786537 0.062012 0.465807 0.485829 0.194883 -0.627980 -0.139727 -0.824982 -0.861468 0.469134 -0.243021 0.702528 0.373364 0.283721 -2.443143 0.917024 0.815264 -0.278928 -1.014704 0.105191 -0.563513 0.143731 -0.255990 -0.364790 0.264155 0.121523 0.224052 0.610165 0.269643 0.471699 0.011544 0.468333 1.969904 -0.443143 0.931172 0.567182 -0.120201 -0.044617 0.157004 0.318704 0.099564 0.712443 0.601160 -0.196897 -0.618008 -0.221698 -0.432294 -0.962783 0.830064 0.085698 -0.316032 -0.902026 -0.489891 -0.621929 -0.495900 -1.391068 0.851789 1.600205 -1.049344 1.074038 0.473511 0.519079 0.029668 0.823495 -0.070996 1.240718 0.302842 -0.627961 0.317687 -0.262081 -0.420410 0.187088 0.227474 -0.558532 -1.054133 0.461774 -0.732134 -1.302373 0.752900 0.194427 -0.009119 -0.944944 -0.357731 0.526131 0.330875 -0.720587 -1.225492 -0.657543 0.380327 0.006760 -0.500415 -0.070170 -0.190342 -0.181391 -0.285875 -1.201592 -0.223725 0.324913 -0.735267 -0.445724 1.056513 -0.217620 0.364073 -0.072029 0.173302 -0.271837 1.067994 0.086755 0.707139 0.073153 0.058526 -1.261722 0.063432 0.444981 0.521354 -0.108910 -0.161878 -0.174766 0.373024 -0.465483 0.520480 0.084001 0.872291 1.013396 -0.148661 -0.801606 -0.575545 -0.129898 -1.277607 0.372223 -0.856798 -0.156548 0.406839 0.878311 0.577722 0.483525 0.959517 -0.766298 0.701868 -0.278309 0.025970 0.623970 0.162084 0.564719 -0.573551 -0.839666 0.528932 0.587672 0.358395 0.331782 -0.429067 0.017307 -0.564380 -0.557397 0.369241 0.359225 -0.236684 0.922370 0.593242 1.898003 -1.043008 0.453904 0.369166 -0.115379 0.257672 -0.119805 -1.199191 0.540459 0.163515 -0.275741 0.875235 -0.227318 -0.575116 0.365232 -0.282237 0.346391 -0.789162 0.370569 -0.725954 -0.122032 -0.838614 0.155562 -0.469480 -0.457500 -0.320676 -0.000626 1.327974 -1.024817 -0.640141 1.151101 -0.203602 0.448507 -1.286788 1.552844 -0.543454 0.667904 -0.739143 -0.543343 -0.072984 0.512735 -0.230243 0.253307 0.597750 -0.507784 0.154885 1.270978 0.254582 0.277814 0.239251 0.861857 0.051771 0.291121 -0.498282 1.167258 -0.016090 -0.109729 -0.152244 -0.530079 0.365593 -0.150335 0.105636 0.782600 0.879970 0.051954 0.287137 0.755133 0.446460 -0.566038 0.540588 -0.054296 0.642354 -0.677953 -0.051890 -0.074621 0.306929 -0.331738 0.455695 -1.209450 -1.022991 -0.961488 -0.503015 -0.480983 0.530951 0.314333 0.043105 -0.080158 -0.993980 -0.727009 0.903402 -0.570104 0.235258 0.490945 0.565342 0.964334 1.119673 -0.116354 -0.326248 -0.154565 -0.074043 -0.238698 -0.080629 -0.604863 0.772023 -0.803028 0.643210 0.826492 -0.188800 0.386573 0.170153 1.087286 -0.733251 1.391742 0.557994 -0.494656 0.739254 1.169613 1.129390 -0.136641 -0.674677 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.077529 -0.917212 1.926129 1.690331 -0.291034 0.629247 0.100363 -1.345253 1.481807 0.359404 -0.067820 0.345084 -1.053998 0.601394 -0.297854 1.025625 -1.514553 -0.974832 -0.508815 -1.067197 -0.843968 -0.975442 0.422656 0.255730 0.632583 0.456758 -0.955443 0.007034 -0.960840 -0.934492 1.081055 -0.390250 0.806590 0.193464 0.263220 -3.329660 1.412603 0.906599 -0.490407 -1.358132 0.240322 -0.820300 0.128790 -0.602182 -0.478886 0.211199 -0.188216 0.492971 0.979868 0.286153 0.366317 0.484081 0.168066 2.586149 -0.959138 1.010112 0.481178 -0.059223 -0.391253 0.293020 0.409690 0.500026 0.837138 0.799006 -0.267402 -1.124092 -0.221362 -0.642902 -1.378018 1.246603 -0.015182 -0.403871 -1.099677 -0.507587 -0.989252 -0.497219 -1.263619 1.271060 1.947137 -1.326708 0.981342 0.226904 0.533105 0.101900 0.849460 -0.081755 1.616537 0.433907 -0.617319 0.086968 -0.553645 -0.367427 0.334869 -0.198445 -0.657727 -1.762485 0.632030 -1.287231 -1.489152 0.672496 0.589161 -0.016680 -1.289897 -0.552017 0.818272 0.455756 -0.835267 -1.398146 -0.535145 0.528918 0.168919 -0.568503 0.040671 -0.378039 -0.230716 -0.592107 -1.607283 -0.197249 0.232984 -0.657977 -0.459639 1.273472 -0.562691 -0.070521 -0.159556 0.358538 -0.535055 1.432644 -0.267029 0.930079 0.048071 0.330961 -1.071000 0.194983 0.521846 0.920253 -0.165585 -0.154143 -0.558813 0.399922 -1.002412 0.215261 -0.210901 0.599859 1.185029 -0.278406 -1.043524 -0.464671 -0.177392 -1.884918 0.345044 -1.117295 -0.385883 0.680549 1.141151 1.103125 0.925839 1.349332 -1.154538 0.773225 -0.319310 0.034166 1.115236 0.273336 0.758473 -0.678450 -1.061748 0.663747 0.295291 0.391765 0.343633 -0.465736 -0.009963 -0.970315 -0.573925 0.525547 0.693097 -0.104452 0.978030 0.763155 1.600164 -1.502391 0.572225 0.737847 -0.284610 0.336849 -0.148355 -1.460224 0.572121 0.317679 -0.017740 1.144079 -0.309094 -0.712182 0.279165 -0.210863 0.566819 -0.885238 0.134186 -0.904089 -0.241678 -1.085549 0.214592 -0.571869 -0.433315 -0.545250 -0.455696 1.606379 -1.393390 -1.044610 1.858997 -0.450001 0.858132 -1.673572 1.337762 -0.757155 1.029203 -0.678022 -0.206450 -0.128654 0.190236 -0.749185 0.411867 0.737312 -0.494163 0.200572 1.764319 0.447669 0.311833 0.064806 1.190299 -0.131339 0.768503 -0.644971 1.617946 -0.190769 -0.326104 0.055199 -0.636931 0.132174 -0.585328 0.378784 1.224358 1.022349 0.561673 0.709134 0.880237 0.900543 -0.784405 0.896935 -0.138609 0.399007 -0.666183 -0.058427 0.283081 0.553908 -0.543808 0.574059 -1.486717 -1.747025 -1.615354 -1.032023 -0.184657 0.074947 0.231250 -0.283068 -0.177470 -1.174959 -0.914647 0.999809 -0.676181 0.942986 0.665798 0.638332 1.038536 1.616170 -0.766642 -0.197364 0.021847 -0.064648 -0.146893 -0.216749 -1.124218 1.289367 -0.805793 0.493335 1.436548 -0.375614 0.470281 0.057361 1.205382 -0.758962 1.744571 0.630357 -0.507026 1.054603 1.106764 1.535516 0.478665 -0.858644 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclicUtil(int, bool*, bool*) = -2.133594 -8.813086 11.466843 10.751459 0.503949 6.538845 1.166369 -6.464958 5.874815 5.919697 -2.896901 5.298091 -6.637314 0.454810 -2.304569 3.908305 -5.856034 -6.192312 -1.211215 -3.958017 -3.255783 -5.560686 -1.454737 6.190015 3.511741 4.232159 -4.628774 0.192566 -10.097107 -9.705004 2.161179 -0.804005 5.204747 3.249186 2.296848 -13.138941 7.509512 10.265284 -1.585716 -9.808017 1.024625 -3.686941 -2.738544 0.555954 -1.246266 2.977226 0.842481 1.476267 1.659845 2.236055 2.881749 0.860755 5.254351 11.508261 -0.480138 9.371937 7.100788 0.188536 1.597025 1.549284 2.781667 1.109610 5.803184 4.826015 -2.088832 -4.398052 -0.921872 -0.616029 -6.723583 5.114186 1.048964 -4.338024 -4.425738 -3.746767 -4.942141 -2.014173 -4.070938 4.245115 12.344187 -5.083524 10.292479 4.735618 4.582458 -1.598373 7.157758 -1.408567 9.365705 3.893138 -4.653426 0.415875 -5.531100 -2.825990 1.275558 4.022557 -7.307196 -4.002717 5.128347 -10.107223 -10.984253 5.350977 1.194714 -2.304753 -5.575370 -0.758390 4.320762 1.888877 -3.779708 -8.499470 -4.099071 4.745972 -2.576301 -5.504599 -2.438082 -0.143135 -0.663569 1.632739 -8.274572 -0.773604 4.742523 -5.385758 -3.117536 7.783678 0.431178 3.604929 -2.156419 1.310093 -1.032406 4.083976 0.882875 4.345267 1.217114 0.465905 -6.344745 2.206933 2.539187 -0.045444 -4.463330 -1.722987 1.199385 3.606809 -0.230246 5.430815 -4.262197 6.356699 6.540952 -0.896986 -5.170988 -6.476035 -1.937979 -8.894397 1.288202 -5.689523 -5.035724 0.107119 7.299828 2.416739 2.701331 6.476525 -5.490562 4.801297 0.158109 1.770520 3.159548 -0.905098 3.167823 -4.904531 -7.938419 5.367975 5.775834 2.066953 2.297871 -2.131729 -0.668101 -3.715390 -5.642122 4.971775 1.254637 -0.173760 9.250579 5.231407 14.990478 -7.183198 2.575580 0.778029 -2.204221 2.077567 -1.514193 -10.158843 3.196309 1.599794 2.806714 11.310325 -1.007557 -3.591338 2.668166 -0.190729 1.670729 -6.987222 6.967981 -7.190576 -1.043351 -4.563682 0.255889 -3.347258 -3.734553 -4.829654 -1.292537 10.907699 -8.142392 -7.550530 8.060283 -0.907018 2.442235 -11.229159 5.444775 -4.954832 5.773099 -2.652775 -3.318784 -0.375627 0.843459 -2.961518 1.328627 5.069059 -5.899784 4.639476 8.021602 1.270081 1.607751 1.882323 4.305579 -2.074740 0.981709 -6.074110 8.107667 0.988405 -2.680888 -2.466041 -4.379739 3.136228 -1.832809 -0.989129 2.988023 6.785613 -0.423698 -0.123981 5.305084 2.448461 -5.227669 5.127177 0.640313 4.012268 -4.780305 -1.662986 -1.644099 0.785393 -0.290621 4.886891 -10.566420 -7.439622 -7.159587 -7.498483 -2.898248 1.191006 4.177861 1.663325 -0.602300 -9.348224 -7.615785 8.145637 -3.474582 5.593826 5.473146 6.391372 7.135450 6.560094 -0.082571 -0.920953 -2.841962 0.420981 -3.525478 -2.817232 -3.225282 5.865561 -2.493575 6.270593 6.522497 -0.605579 4.411936 -0.706966 5.794009 -5.739358 11.231686 5.204414 -5.966283 3.501275 4.740396 9.205906 -4.568833 -6.206069 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -2.096825 -5.946146 6.697954 6.414381 1.225115 4.028753 1.540543 -3.352351 3.846293 4.587191 -2.165217 3.575612 -4.043380 -0.182217 -0.351328 2.522625 -2.933777 -4.310385 0.128990 -1.674700 -1.447125 -3.874476 -1.120621 3.446758 1.816584 1.842218 -2.658848 0.289700 -6.618426 -7.268685 1.469607 -0.723888 3.322262 1.437464 1.159493 -9.600233 4.799968 6.366287 -0.844033 -6.912583 0.396231 -2.067843 -1.890625 0.827106 -0.026776 2.660901 1.370274 1.300013 0.443637 1.917683 2.030245 -0.277866 2.902144 7.032036 -0.215148 6.095902 5.352114 0.006372 0.919507 0.994753 1.855932 0.140423 3.965451 3.929232 -1.800794 -2.029873 -0.258710 -0.191963 -4.932914 2.722851 1.302117 -2.620987 -2.624258 -1.952138 -2.330919 -1.069014 -1.728559 1.659229 8.480501 -2.385093 7.678381 3.313891 4.299206 -1.169312 4.393826 -0.894244 5.695180 2.505979 -3.922514 -0.064168 -4.114503 -2.816079 0.411633 3.751042 -4.006741 -0.508192 2.727960 -4.116263 -6.381206 3.368703 0.049699 -0.985772 -4.584897 0.002505 3.287731 1.699383 -1.926862 -5.569971 -3.711363 2.567026 -2.734452 -3.484886 -1.671982 -0.076187 -1.122251 0.979113 -5.028760 -1.135576 3.654717 -3.831639 -2.468473 4.463524 -1.159208 2.706631 -1.482936 0.414580 -0.473421 1.992494 1.344743 2.511350 2.380046 -1.271858 -6.509496 1.136829 1.530963 1.414215 -2.547328 -1.277338 1.203539 2.199669 0.382972 3.516459 -2.037051 4.262737 5.082937 -0.345110 -3.191704 -4.697783 -0.409519 -4.898843 1.711992 -3.735178 -1.556438 -0.220835 4.681051 0.352562 1.563787 4.953358 -4.429442 4.297610 -0.363605 1.403666 1.395433 -0.405020 1.863466 -2.883488 -4.669816 3.469065 4.503026 0.949545 1.774819 -1.974619 -0.108397 -2.387857 -4.559140 3.320177 0.161501 0.005111 5.259538 2.638062 11.294976 -4.607778 1.340215 0.266426 -0.740508 1.144535 -0.718433 -6.243118 2.551648 0.739447 2.129320 7.076008 -0.323520 -3.082395 1.317029 0.202765 0.522660 -4.184950 5.098649 -4.448472 -0.147818 -2.230890 -0.198303 -2.280864 -2.654150 -2.616359 0.563322 6.853692 -2.822560 -6.091927 4.062328 -1.882506 1.492091 -8.073630 4.333049 -3.226022 3.073357 -2.470653 -1.925685 -0.330360 1.091594 -1.142007 0.642223 3.165759 -3.616098 3.363355 5.068988 0.789549 0.866735 1.479084 2.137375 -0.847994 -0.339442 -3.378446 4.401668 0.420071 -1.102846 -1.716836 -2.725119 3.157686 -0.529895 -1.330276 1.316822 4.699366 -1.389017 0.122720 3.542207 0.943493 -3.365698 2.958433 0.962371 3.484092 -2.606519 -0.958518 -1.789608 0.198083 -0.098624 3.214944 -6.201684 -4.004524 -2.711366 -6.022529 -2.421861 2.035823 2.988847 1.396507 0.342397 -6.471031 -3.968807 4.968046 -1.856030 3.960268 3.288485 3.987876 4.257326 3.436197 0.044904 -1.500412 -2.223603 -0.047355 -3.073711 -1.936317 -1.282948 3.114896 -1.966358 4.202771 3.150309 -0.268502 2.015479 -1.149704 4.718384 -3.241647 7.560575 3.570957 -3.430564 1.777932 2.167657 6.913050 -3.847672 -3.748930 -PE-benchmarks/detect-cycle-in-a-graph.cpp__main = -0.245135 -3.442230 4.735995 4.165787 -0.530684 1.778282 0.714319 -1.971582 2.857161 0.277471 -1.540113 1.766370 -3.049429 0.771449 -0.627329 1.671782 -3.930632 -3.142491 0.119627 -0.840457 -1.189957 -2.617927 0.614395 2.054089 1.614114 3.068073 -1.894527 -0.071766 -3.335101 -1.951650 2.619558 -1.272686 2.455366 3.307259 0.858400 -7.006506 2.918024 2.587296 -0.665020 -4.109382 0.383358 -1.842400 -0.315815 -2.080691 -0.717087 1.244249 1.106830 2.586536 1.308098 0.762275 -0.543503 -0.637086 0.722125 4.435098 -0.922976 2.786030 2.591765 -0.245825 0.107301 -0.414104 1.401631 0.070315 2.418150 2.818804 -1.494030 -1.881471 -0.526285 -2.052065 -3.458172 2.495875 0.947813 0.630280 -2.789193 -0.788661 -1.987131 -0.528081 -1.319915 2.890043 5.756790 -2.600863 4.101624 1.464125 2.747956 -0.784950 1.917889 0.021072 3.195317 1.618160 -2.407984 -0.014076 -3.571877 -1.769629 0.175385 0.161067 -1.490323 -2.417451 1.295714 -3.623324 -3.769326 1.425742 0.456376 -0.145970 -1.887887 0.124274 2.401206 1.593485 -1.707656 -3.327029 -1.065815 0.403491 -0.991437 -1.565992 -0.333756 0.993938 -1.121829 -1.184323 -3.904809 -1.113634 1.277964 -2.717332 0.431510 2.709261 -1.333834 1.386248 -0.712104 0.086806 -0.553821 3.131900 1.051202 1.039414 1.575425 -0.677460 -1.470539 0.631516 1.403646 3.399345 -1.616387 -1.217825 0.078512 1.209305 -0.946119 -0.469782 -0.434803 1.605058 2.415152 -1.243107 -2.843904 -2.458965 -0.864307 -4.187230 0.948979 -2.933191 -0.373815 1.763591 3.026779 1.393136 1.838890 4.042873 -3.140036 2.629638 -0.523579 0.829580 1.584399 1.591082 1.677033 -1.774785 -2.451889 2.368444 1.175158 0.881836 1.060371 -1.765384 0.274167 -2.529369 -2.622786 2.241476 1.258998 0.039650 2.760253 1.225727 2.946290 -2.867925 0.824759 1.260010 0.119587 0.310817 0.534352 -4.016709 2.657261 -0.117992 0.683245 2.842447 -0.341823 -2.214030 1.158869 0.016824 0.629837 -2.582316 1.339433 -2.424519 -0.193116 -2.689315 1.366519 -1.343563 -1.650040 -1.498987 -0.099196 4.362661 -2.487588 -3.060871 2.810010 -0.651232 2.935187 -4.755861 1.816502 -2.264104 3.046684 -0.941377 -1.225861 0.235593 -1.186789 -0.848916 -0.232395 2.061511 -0.951164 0.932309 2.806982 1.074012 0.247612 1.322979 2.152895 0.159501 1.036494 -1.113784 2.290345 0.074416 -0.883054 0.049810 -1.608623 1.195414 -0.582734 0.030145 3.133206 3.082990 1.368064 2.589158 1.663167 1.421889 -2.420044 0.760086 -0.045835 2.531001 -1.754246 -0.596838 -0.744231 1.438490 -1.041085 2.096194 -3.887292 -5.386486 -3.022093 -3.650989 -1.846441 -0.349546 1.614971 0.058039 0.313197 -3.288390 -1.945762 1.704473 -1.344813 3.924667 2.056689 1.629738 2.860971 2.796659 -1.869807 -1.737603 0.727039 1.173416 -1.198696 0.341338 -3.117045 2.219231 -2.178272 1.906439 3.859191 -1.358606 0.506827 -1.473754 4.862882 -2.067930 5.187120 2.314587 -3.147385 1.807039 1.385437 3.488205 0.882908 -2.552579 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.197217 -1.643680 3.364608 2.740497 -0.229750 1.188232 0.623731 -2.539664 2.675320 0.491208 -0.076797 0.526287 -2.100922 0.989685 -1.411578 1.480065 -2.296461 -1.982242 -1.050079 -2.059564 -1.395553 -1.821714 0.930406 0.521837 1.165437 0.157683 -1.652877 -0.259496 -2.498904 -1.456158 2.051302 -0.491221 1.263210 -0.460181 0.161313 -5.360150 2.403322 1.860522 -0.925574 -2.362925 0.686496 -1.519070 -0.154445 -0.762420 -0.642190 0.092719 -0.484321 1.065720 1.658174 0.483935 0.956695 1.131702 -0.062911 4.905769 -1.983262 2.011556 0.973257 0.373709 -0.620048 0.973054 0.545103 0.996032 1.309800 1.425086 -0.536053 -1.766751 -0.188983 -1.008257 -2.408092 2.245183 -0.072602 -0.883159 -1.702413 -0.672964 -2.039756 -0.746987 -1.586103 1.950118 3.466941 -2.336400 1.803086 0.322161 0.964933 -0.025605 1.370466 -0.269027 2.649614 0.694654 -0.983091 -0.392417 -1.810917 0.032882 0.238403 -0.354231 -1.313079 -3.351133 1.501806 -2.490741 -2.857759 0.969470 0.950236 -0.327403 -2.022749 -0.552342 1.294278 0.645918 -1.551765 -2.620385 -1.154934 1.313934 0.277167 -0.919750 0.381948 -0.867840 -0.241673 -1.307916 -2.811860 -0.293959 0.429969 -1.273996 -1.210426 2.318287 -1.243130 0.054008 -0.072287 0.790467 -0.910981 2.127813 -0.460945 1.459666 0.225161 0.552904 -2.126361 0.275229 0.857070 1.881379 -0.468913 0.240858 -0.912135 0.725716 -1.637367 0.448576 -0.736580 0.791716 1.493497 -0.837830 -1.757749 -0.688505 0.097296 -3.170072 0.522782 -1.962602 -1.186008 0.615855 1.948612 2.152849 1.489769 2.768998 -1.843506 1.489487 -0.194032 -0.086320 1.739145 -0.143766 1.356504 -1.216707 -2.328645 0.997572 0.466114 0.597916 0.369722 -0.565086 -0.254737 -2.032436 -1.124676 0.396274 1.106529 -0.386679 1.883177 1.526428 2.239478 -3.204871 1.120996 1.267961 -0.796275 0.705542 -0.440833 -2.827540 0.862895 0.702615 0.094753 2.334760 -0.416500 -1.322559 0.747176 -0.442620 1.108414 -1.686630 0.276497 -1.786543 -0.858070 -2.016784 0.361141 -0.807905 -0.761226 -1.005519 -1.126979 2.773429 -2.420797 -2.140816 3.308420 -0.400394 1.294080 -3.256957 2.248360 -1.241831 1.805442 -0.789560 0.050177 -0.300075 0.791822 -1.402116 0.748312 1.153893 -1.199414 1.055220 3.431007 0.655780 0.785393 0.170475 2.214055 -0.528886 1.146736 -1.490925 2.872177 -0.349064 -1.489373 0.242937 -1.159777 0.271539 -1.191528 0.842336 2.258762 1.965283 0.873309 1.287501 1.737226 1.752639 -1.261497 1.673310 -0.226871 0.609366 -1.123742 -0.057018 0.529803 0.593589 -0.959633 1.193807 -2.742619 -3.366562 -2.716159 -2.554427 0.330703 -0.703596 0.376562 -0.555365 -0.345643 -2.590215 -1.805092 1.330081 -1.260971 1.886835 1.520559 1.392458 1.830891 3.037335 -1.593817 0.203397 0.291985 0.234142 -0.465140 -0.885024 -1.737374 2.087346 -1.277984 0.993179 2.480806 -0.370037 1.046807 -0.035265 1.665858 -1.452587 3.218765 1.185927 -0.850880 1.992754 1.747601 3.026402 0.994867 -1.449368 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.592846 -4.006603 8.322105 6.783790 0.043351 2.724177 2.552574 -6.490439 6.081957 2.177849 0.110406 1.324856 -5.582094 2.390964 -3.832957 4.135394 -4.606801 -4.859233 -2.893483 -5.163775 -2.961563 -4.283977 3.518078 0.927603 3.463395 -0.282391 -4.013577 -1.768087 -6.458651 -5.317348 4.745494 -0.807738 3.410700 -1.635077 -0.653878 -12.040709 5.956545 5.247331 -2.508413 -5.607268 2.666387 -2.773742 -1.312912 -0.551397 -1.315652 0.466267 -1.466058 1.858131 3.873695 2.212529 3.621099 3.133894 0.836187 11.069281 -4.847330 5.172950 2.537917 1.406843 -1.481138 2.646659 1.090671 2.816613 3.020945 3.393971 -0.654402 -4.190348 -0.593841 -1.975956 -6.513299 5.334166 -0.866291 -2.671659 -3.868565 -1.524834 -4.144711 -1.261170 -2.625270 3.963291 8.336340 -5.217819 4.467757 0.603046 1.150728 -1.227073 2.234617 -0.867111 4.802182 1.788995 -1.590902 -1.849107 -3.941923 0.165302 0.277373 0.372850 -3.642380 -7.537312 4.665333 -4.853569 -7.016052 2.110976 2.490900 -1.527831 -5.227839 -0.935925 2.275899 1.806360 -3.657631 -6.406589 -3.301204 3.319180 1.363711 -2.348819 0.217892 -2.056399 -1.069275 -2.418726 -6.787515 -0.592683 0.697240 -3.572702 -3.672688 4.884956 -2.714468 0.536409 0.101958 2.617831 -2.298090 4.485896 -0.938916 4.118773 1.765139 1.805071 -4.987030 0.171494 2.506289 4.418312 -1.382249 0.898351 -2.732097 1.589193 -3.508952 1.889529 -1.840995 1.726366 4.708987 -2.132755 -4.314421 -1.031580 0.804930 -7.815237 1.466778 -5.052635 -2.354047 0.971575 4.375901 3.790980 3.449911 7.826887 -4.643015 3.445434 0.226303 -0.775893 3.746337 -0.867368 3.182507 -2.830747 -6.512558 2.305454 1.636096 1.140012 0.578084 -0.435665 -0.826987 -5.177888 -3.118352 0.723040 1.880586 -1.853593 4.094907 3.760470 6.352292 -6.840039 2.450705 3.161754 -2.415056 1.844932 -1.145705 -7.566939 1.739413 1.488070 0.555164 6.320464 -0.695701 -3.210436 2.780436 -1.646667 2.309293 -4.187586 1.782742 -4.837721 -1.972146 -5.018615 -0.156224 -1.074426 -1.912828 -1.751825 -1.932415 6.657524 -4.646216 -5.300054 7.620846 -0.740541 1.703497 -8.548789 6.422035 -2.720213 3.326154 -1.790268 0.273420 -0.731088 2.368439 -3.377641 1.048985 2.440810 -2.834055 3.487168 9.420082 1.157966 1.141772 0.196972 5.398776 -1.506668 3.032384 -3.969603 7.366027 -0.808576 -4.325735 0.399235 -2.599075 0.392256 -3.885885 1.385072 5.424056 4.567010 1.104575 2.780152 3.849352 5.183498 -2.971282 5.309390 0.113827 1.887014 -2.461789 -0.059750 1.734064 1.226552 -2.505960 3.904236 -6.502864 -8.072828 -5.374468 -7.618133 1.142893 -1.832972 1.963694 -1.935055 -1.173254 -6.408654 -4.971564 2.980884 -2.964596 4.622980 4.341374 3.825691 4.326740 7.357578 -3.696038 1.578754 -0.156560 1.076288 -1.076181 -3.305013 -2.711156 4.303314 -2.357926 1.957515 5.474638 -0.199011 2.974050 -1.037928 3.598524 -3.665389 8.030932 2.589041 -1.125931 5.836319 3.435246 7.385593 1.684032 -3.137071 -PE-benchmarks/detect-cycle-in-a-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/detect-cycle-in-a-graph.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -15.025351 -25.767357 28.004506 25.084810 2.396715 19.178802 6.167821 -15.287978 9.351776 20.688638 -7.606207 17.703413 -13.209029 -4.731865 -4.944116 6.176994 -9.356389 -14.447451 -3.154491 -10.709142 -6.930940 -12.430092 -13.789448 21.012768 5.591704 -0.514667 -11.063934 4.398175 -28.306187 -37.195180 -3.569303 0.879332 12.168095 -7.373558 7.189947 -44.683266 19.584508 32.452574 -3.326188 -26.488957 2.034478 -7.184297 -10.979794 9.912145 -11.919005 8.031133 3.327508 -6.905144 -2.553793 6.082186 11.782547 3.430863 16.568330 38.014142 6.122937 28.568359 26.215080 -0.514928 5.160641 6.142238 6.808643 -0.564010 14.021476 9.951615 -2.955000 -6.562359 -0.060977 4.751572 -15.688515 7.911881 0.524410 -22.906381 -4.222542 -12.437373 -20.187289 -8.173481 -1.880179 3.139448 32.925625 -11.624211 32.456867 12.805662 13.874701 -0.344000 22.960161 -3.755181 26.372719 10.219866 -13.172889 5.430870 -3.178561 -7.181323 3.947567 23.379101 -22.644795 -3.978237 16.651738 -27.668800 -29.271498 19.701871 0.363924 -9.182592 -19.551987 -7.903077 8.766951 3.895992 -11.265769 -23.198072 -19.219966 18.660152 -8.738601 -15.181294 -6.579854 0.983182 1.935590 10.465473 -19.553453 1.915605 20.340472 -12.180343 -14.164733 21.999946 0.667251 13.755678 -6.238000 3.628212 -2.873599 6.916397 1.414894 11.272070 -3.518197 -0.901471 -30.484014 -2.759850 2.342485 -5.935807 -11.289998 -6.875287 10.003647 11.816186 6.906403 24.849783 -12.430306 22.441568 18.403864 5.170672 -10.885868 -21.583699 -7.605105 -21.753100 1.347143 -13.236515 -17.796788 4.725378 18.322894 1.354203 0.477292 14.908457 -9.727626 15.931185 0.305801 -0.364012 3.484258 -19.018439 6.517680 -12.748090 -22.152715 15.187912 18.930535 11.443584 7.504894 -5.292524 -1.968217 -4.690086 -19.516829 12.893847 2.292662 2.102348 24.575528 16.771165 56.389215 -18.275085 5.206712 -5.358293 -8.579642 6.486244 -8.789400 -24.123353 1.793506 8.033693 4.777942 35.525626 -1.639913 -8.751768 5.878676 -1.317751 3.207257 -19.454627 25.774193 -18.038560 1.712597 -6.409925 -10.357822 -10.516921 -8.201601 -16.890951 -7.912946 29.095148 -28.891175 -25.509941 19.511689 -0.132484 5.788068 -33.398221 22.977180 -10.829405 22.566229 -9.497345 -8.794100 -0.489564 8.792934 -5.042485 10.220293 12.317867 -21.285145 12.609022 22.376021 1.270642 7.177583 3.151150 9.527824 -8.497811 -2.586823 -19.763025 20.671611 2.239874 -9.434613 -10.422026 -11.144651 11.337952 -0.909138 -0.564215 -4.791895 15.746479 -9.279404 -9.848306 21.292837 0.202963 -11.671605 12.977633 2.863895 12.033581 -12.939748 -5.241976 -8.081487 4.419789 6.058025 7.878339 -27.756627 -8.391355 -27.493723 -21.557431 -8.375270 11.217277 11.697151 6.784882 -1.542629 -27.435651 -20.638865 33.067387 -8.979255 11.705014 16.823201 21.026706 20.323168 13.705884 9.588624 -1.834508 -13.527322 -0.692901 -11.811848 -8.187835 -2.518749 11.630567 -9.224914 19.973201 9.273984 3.733555 15.725887 8.328600 6.101876 -15.964779 28.880326 13.764552 -15.984314 5.371246 16.962998 20.896320 -24.885373 -15.581308 -PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -1.840121 -3.274611 3.809966 3.556535 0.005982 2.400398 0.318026 -1.962672 1.015130 2.832666 -0.805069 2.138815 -1.824306 -0.349290 -0.172595 1.176407 -1.548480 -1.744110 -0.513768 -1.611290 -1.254772 -1.343161 -1.837359 2.666169 0.840826 -0.026314 -1.540974 0.447026 -3.023585 -4.554229 -0.826286 0.017826 1.724039 -0.499418 1.120668 -5.664694 2.528029 3.883994 -0.495150 -3.160209 0.171094 -1.092267 -0.885639 0.937163 -1.887777 0.996356 0.528849 -1.228045 0.024207 0.815472 1.509423 0.405903 2.425529 4.982404 0.813371 3.523554 3.051796 -0.282378 0.506385 0.622165 0.914782 -0.192763 1.885759 0.836131 -0.244363 -1.181975 -0.306859 0.357223 -1.616114 1.149260 0.063670 -2.765726 -0.755923 -1.844150 -2.513047 -1.487058 -0.945898 0.883382 3.867475 -2.115516 3.742746 1.808121 1.356905 0.347838 3.108706 -0.398472 3.618615 1.235200 -1.486114 1.225598 0.360852 -1.111616 0.720307 2.642489 -2.860656 -1.431594 2.019564 -3.734295 -3.928560 2.858116 0.160134 -0.969971 -2.614816 -1.511484 1.104637 0.540376 -1.735475 -2.898369 -2.188929 2.157984 -0.752935 -1.982338 -0.850811 -0.004775 0.382906 1.296063 -2.857539 0.303510 2.399093 -1.582717 -1.669315 3.062189 0.725405 1.727263 -0.710241 0.521723 -0.504337 1.625630 0.167298 1.695569 -1.141373 0.311804 -3.486956 -0.272239 0.510708 -1.717535 -1.208035 -1.012873 1.024282 1.526883 0.513670 3.293005 -1.350110 3.260438 2.701783 0.783545 -1.588295 -2.772873 -1.311909 -2.985988 0.211211 -1.839912 -2.375193 0.962426 2.381916 0.472973 0.230933 1.711614 -0.835308 1.603695 -0.300243 -0.093459 0.742178 -2.071319 1.042642 -1.718800 -2.710191 1.970697 2.513263 1.654130 1.076944 -0.850676 -0.037225 -0.535338 -2.211374 1.642323 0.504726 0.034118 3.293891 2.261535 7.325159 -2.148351 0.792315 -0.575889 -1.102581 0.883984 -1.027285 -3.140538 0.051197 1.037823 -0.007198 4.234681 -0.375551 -1.131107 0.856126 -0.395079 0.485028 -2.475158 2.896997 -2.308011 0.476164 -1.087609 -1.023626 -1.613542 -1.047066 -2.030718 -1.016131 3.847391 -4.209500 -2.658167 2.690161 0.223030 0.737761 -4.052843 2.971169 -1.412538 2.905059 -1.480716 -1.620441 -0.050290 1.171912 -0.592774 1.347659 1.723134 -2.574832 1.055574 2.719946 0.252280 0.957386 0.472422 1.582255 -0.873266 -0.054615 -2.399068 2.915393 0.198129 -0.771681 -1.413294 -1.441747 1.128731 0.000467 0.086053 -0.493133 1.773453 -1.045820 -1.287503 2.825891 0.121101 -1.515143 1.651685 0.127097 1.693120 -1.990812 -0.601346 -1.010850 0.777957 0.572907 0.885531 -3.758625 -1.051380 -4.024368 -1.812268 -1.354123 2.112510 1.270251 0.833419 -0.362605 -3.104400 -2.682633 4.688833 -1.361992 0.945398 2.014067 2.585410 2.900309 2.076026 1.451228 -0.566478 -1.666867 -0.378481 -1.210879 -0.719807 -0.588917 1.771710 -1.247973 2.540822 1.411250 0.309271 2.030356 1.489064 0.881537 -2.159475 3.385677 1.669768 -2.116554 0.879495 3.075410 2.171907 -3.093132 -2.034564 -PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -4.337167 -7.181495 7.385113 6.867245 0.802968 5.218161 1.310275 -3.441707 2.395845 6.154274 -1.888928 4.466137 -3.997298 -1.146102 -0.299054 1.907823 -2.436381 -4.169817 -0.267524 -2.776195 -2.210349 -3.116642 -4.152923 5.608239 1.378789 -0.898761 -2.858555 0.564156 -7.312086 -8.593293 -1.525203 -0.143672 3.500985 -1.528536 2.064984 -11.381875 4.841925 7.981622 -0.823378 -6.935099 0.117615 -2.526036 -1.704730 2.253460 -3.135797 1.956474 1.723838 -1.933667 -0.322464 1.605551 3.106675 0.289588 4.252134 10.364500 1.578859 7.473745 6.557401 -0.379347 1.058321 1.564288 1.947398 -0.897363 4.247933 2.211941 -1.213740 -1.763773 -0.274539 0.851184 -3.719051 1.940095 0.785505 -5.286408 -1.239768 -3.155144 -4.731713 -3.061981 -0.826156 1.209970 8.316912 -3.896407 8.536122 4.089384 3.834957 0.581900 6.628263 -0.836113 7.404720 2.451330 -3.837282 1.907537 -1.009858 -1.924103 0.909355 5.613303 -5.488576 -2.136948 3.932414 -6.631911 -8.174890 5.817823 -0.342094 -1.595379 -5.527899 -2.398090 2.816669 1.434455 -3.647063 -6.295973 -5.079223 4.475614 -2.579558 -4.210653 -1.439397 -0.460784 0.570700 1.936627 -5.512391 -0.026220 5.413152 -3.833622 -3.835296 6.412564 0.559948 4.193205 -1.419528 0.810131 -0.647369 2.622011 1.034444 2.828174 -1.480655 -0.698077 -8.117498 -0.589034 0.715562 -2.399770 -2.440222 -1.756067 2.652708 3.188043 1.639707 6.633494 -2.683882 6.705535 5.104824 1.374565 -2.989521 -6.077861 -1.553410 -5.422367 0.680683 -3.837228 -4.580366 1.137334 5.050868 0.768719 0.220540 4.067480 -1.860301 4.217886 -0.610321 0.190789 1.111600 -4.188720 2.184427 -3.572361 -5.613650 3.751587 5.826148 2.936132 2.148270 -2.187005 -0.177076 -1.336662 -5.004226 2.688679 0.763987 0.120671 6.909239 4.249852 15.081046 -5.324631 1.565360 -1.555864 -1.942966 1.859986 -2.203879 -6.699948 0.234680 2.089550 -0.040698 8.807752 -0.633031 -3.092391 1.707599 -0.514218 0.807413 -5.084820 6.249731 -4.911087 0.559478 -1.913128 -1.931575 -3.577942 -2.456014 -4.409437 -1.664868 7.887711 -7.444660 -6.241703 4.754044 0.357503 1.468256 -8.921948 6.054764 -3.092354 5.640163 -3.157012 -3.202519 -0.373590 3.192967 -0.698362 2.660388 3.649524 -5.473916 3.128872 5.569547 0.470116 2.359471 1.547512 2.951801 -1.565281 -1.189350 -4.871234 5.478613 0.374208 -1.885646 -2.719505 -3.169889 3.310670 0.653435 -0.164949 -1.239855 4.298333 -2.824583 -2.408862 5.974602 -0.476768 -3.102886 2.987680 0.404668 4.146195 -3.827522 -0.966575 -2.906381 0.957303 1.370451 2.095523 -7.789916 -2.202114 -6.787529 -4.513101 -2.601139 4.430192 2.385009 2.207984 -0.079882 -7.283168 -5.074556 8.624097 -2.765429 2.857233 4.175810 5.590621 6.000564 3.976347 2.746514 -1.685179 -3.072498 -0.865145 -3.366915 -1.774378 -0.807769 3.091159 -2.740943 5.936173 2.390258 0.960027 3.609092 2.459086 1.868814 -4.361523 7.273365 3.965621 -4.484851 1.450916 5.601818 5.529484 -6.896592 -4.252514 -PE-benchmarks/boruvkas-algorithm.cpp__createGraph(int, int) = -0.375013 -1.579460 1.891109 1.256419 -0.071736 1.067785 1.081263 -1.030667 1.175557 0.538490 -0.196566 0.478574 -1.236682 -0.142653 -0.680489 -0.050768 -1.153112 -1.299281 -0.256140 -0.868569 -0.811240 -1.090322 -0.251055 0.771527 0.356708 0.031052 -0.415567 -0.397492 -2.236737 -0.173277 0.948478 -0.092727 0.520195 0.207263 0.731594 -2.571238 0.937609 1.199081 -0.370864 -1.731007 -0.011469 -0.562147 -0.294077 0.157701 0.175702 0.021619 0.153004 1.045285 0.167897 0.083184 0.441144 -0.199781 -0.372325 3.251829 -0.261124 1.437385 1.464421 0.115977 0.550507 0.958160 0.481064 -0.017013 0.572214 0.888848 -0.288483 0.062910 0.260678 -0.910314 -0.972998 1.081498 0.460989 -0.934723 -0.437943 -0.752647 -1.557546 -0.401111 -1.787121 1.048655 2.309757 -1.385269 1.803840 0.620869 1.436018 -0.069645 1.506050 -0.044494 1.885142 0.473139 -0.905377 0.335325 -1.809624 -0.206731 -0.153572 -0.221172 -0.855076 -1.334397 1.149058 -1.489722 -1.790343 1.280636 0.060705 -0.129814 -0.830800 0.083635 0.662147 0.383735 -1.407333 -1.639020 -1.468274 1.109834 -0.727149 -0.244174 0.766908 0.144834 -0.292965 -0.797714 -1.103537 -0.088730 1.045107 -0.897486 -0.934719 1.886312 -0.885588 0.843708 -0.135638 -0.159334 -0.335889 0.920260 0.272427 0.302579 0.162805 -0.224681 -2.167418 0.103212 0.279121 1.512581 0.055458 0.224692 0.570781 0.873124 -0.212718 0.778182 -0.586593 0.910133 0.219062 -0.578923 -1.124318 -1.075665 0.395218 -1.453292 0.048508 -1.016859 -0.870924 0.324229 1.336249 1.830780 0.001265 1.210811 -0.791245 1.028756 -0.258809 0.132442 -0.057829 -0.474555 0.558345 -0.800755 -1.358159 0.094900 0.573031 0.562573 0.577792 -0.868718 -0.418202 -1.008038 -1.225599 -0.055776 0.810597 -0.439819 1.284644 1.301647 1.043060 -2.421250 0.170040 0.133268 -0.428431 0.068977 -0.484227 -1.611987 0.380216 0.429896 -0.128775 1.321385 -0.212937 -0.485603 0.472457 -0.395407 0.487216 -0.849315 0.195707 -0.863594 -0.732319 -0.923338 0.697274 -0.899743 -0.515253 -0.806814 -0.916089 1.841068 -1.601281 -1.427549 1.662497 -0.174139 0.766732 -1.719040 1.449520 -0.527981 1.137019 -0.227862 -0.148394 -0.521456 1.114372 -0.249850 0.813157 0.545765 -1.342214 0.742807 1.842828 0.243862 0.891435 0.442687 1.165243 -0.715382 -0.489825 -1.217053 1.399177 -0.242707 -1.265962 0.021240 -0.799770 0.952295 -0.121170 0.529835 0.962774 1.001870 0.111512 0.371631 1.163816 -0.006136 -0.743406 0.271568 0.278193 0.914961 -0.863373 -0.004246 -0.345479 0.073061 -0.107049 0.155988 -1.611656 -1.367998 -1.471543 -1.377210 -0.383028 -0.439504 0.194031 0.225908 0.082238 -1.768172 -1.022741 0.505705 -0.799140 0.006908 1.091692 0.997406 1.521762 1.596642 -0.457659 0.120622 0.266733 0.358946 -0.967560 -0.457699 -0.794937 0.563308 -1.446254 1.165567 0.981486 0.391777 0.882276 0.278306 1.439478 -1.245940 1.711684 1.194042 -1.084017 0.337677 1.780401 2.040660 0.081612 -1.038489 -PE-benchmarks/boruvkas-algorithm.cpp__main = -2.732054 -7.531560 8.658076 7.950787 0.801934 4.802956 3.152611 -3.970073 4.902166 6.028315 -1.750721 4.035428 -4.595197 -0.202059 0.571019 3.334878 -4.120776 -5.123208 0.112877 -2.900076 -2.600427 -4.510988 -2.200998 3.931211 2.051448 -0.067594 -3.103783 -0.974935 -7.129394 -7.254821 2.143360 -1.141839 4.021927 0.238843 1.941840 -15.882021 5.578809 6.572482 -1.377981 -8.313755 0.039425 -2.414862 -1.155411 0.830068 -1.311002 2.177970 1.978011 1.776125 0.762183 2.444922 2.398471 -0.174484 3.373621 13.028856 -0.372359 7.180797 6.679220 -0.485909 0.944292 2.009290 2.664608 -0.398337 4.674762 4.267405 -1.028614 -2.279413 -0.651072 -1.220085 -6.110243 3.308008 1.904067 -3.734014 -3.404573 -2.622554 -3.913297 -2.568976 -6.450124 3.388937 10.898776 -5.085026 9.406828 4.153973 5.864216 -0.052392 5.997237 -0.495036 7.634572 2.844853 -5.061942 1.311465 -4.034490 -3.616851 0.792598 2.744832 -4.450898 -4.094164 3.607041 -4.003852 -8.040840 5.928201 0.320027 -0.346134 -6.099499 -2.118395 4.017145 2.497145 -4.237764 -7.391322 -6.235087 3.448177 -2.901971 -3.932977 -0.663081 -0.559373 -0.839205 -0.082369 -6.387237 -1.167203 4.972220 -4.628036 -3.720989 6.493814 -1.991758 3.660899 -1.592540 0.372463 -1.136668 3.643942 1.796120 3.435507 2.242517 -1.644659 -10.604824 0.913951 1.924584 3.300085 -1.080713 -1.193266 1.438137 3.447902 0.267149 5.346397 -0.641512 6.127961 5.776875 0.238741 -4.452420 -6.105652 0.635888 -5.934744 2.231878 -5.025627 -1.789504 1.577942 5.828664 2.144269 1.506237 4.905340 -5.250750 6.271520 -1.650791 1.632828 1.534733 -1.212386 2.586162 -3.517183 -5.466578 3.059549 5.770686 1.960755 2.555159 -3.534376 0.164110 -2.805804 -5.548965 2.216933 1.478691 -1.186260 6.048189 3.798945 14.483032 -7.394966 1.232114 0.017395 -1.257414 1.361330 -1.520912 -7.719118 2.655370 1.301419 0.304278 7.805819 -0.851850 -4.038472 1.866999 -0.702841 0.611629 -4.034407 4.771144 -5.029377 -1.568502 -2.739612 0.087191 -4.008114 -2.834442 -3.682586 -0.212340 8.730278 -5.595382 -6.520813 5.719357 -2.622221 1.609999 -9.621120 9.795616 -3.491520 3.775652 -4.149097 -3.198999 -1.176035 3.966337 -1.236075 1.885920 3.990329 -4.942058 3.064153 8.032805 1.010617 2.143192 2.020344 3.791573 -1.142873 -0.894622 -4.203532 6.269831 -0.597683 -1.562711 -2.264700 -3.338827 4.681260 -0.309072 -0.128790 1.837930 5.047749 -1.707202 -0.064599 5.537741 0.358836 -4.026812 3.351511 0.715654 4.969110 -3.792626 -0.271209 -2.518159 0.431445 -0.269552 3.041509 -7.787435 -4.020481 -5.581185 -5.045812 -3.376656 3.851156 2.538262 1.124508 0.269818 -8.464777 -4.699584 5.329957 -3.016585 0.776185 4.600286 4.942231 6.312714 5.180281 0.643310 -2.246493 -2.361555 -0.818123 -3.571342 -2.070354 -1.818001 3.520340 -4.351885 5.462118 3.672286 0.775277 2.599483 0.760875 5.899798 -4.201273 9.354324 4.623826 -4.207586 1.883681 6.060342 8.568579 -4.911673 -4.631324 -PE-benchmarks/birthday-paradox.cpp__find(double) = 0.150745 -0.765095 -0.055139 0.454722 0.761235 -0.376798 0.306489 0.115924 0.613826 -0.629472 0.093747 0.297406 -0.268946 0.389975 -0.633646 -0.365489 -0.316123 -1.129324 0.171848 0.353676 -1.030993 0.135635 -0.487442 -0.246800 -0.618744 0.736298 -0.537157 0.028522 -1.209050 0.472856 0.641029 -0.593668 0.148935 0.139042 -0.461308 -0.801844 0.090692 0.755996 -0.203319 -0.328821 -0.311116 -1.019493 0.094065 -1.049218 -0.534951 -0.179604 0.489491 0.267312 -0.153090 0.142564 0.133380 0.597145 0.120011 0.841271 -0.111100 0.425001 0.661151 0.574487 -0.194677 0.227743 0.320811 0.445933 0.804440 -0.320341 -0.589996 0.590704 0.069821 -1.015995 -1.389453 0.271115 0.106887 -0.376577 0.315160 0.438769 -0.687639 -0.481727 0.111958 -0.263479 0.143909 -1.384197 0.826073 0.163453 0.499421 0.087803 0.210978 -0.141754 0.974462 0.385767 -0.105022 0.203885 -0.430654 0.006442 0.246983 -0.669380 -0.471682 -0.692947 -0.174792 -1.088412 -0.321941 0.248051 -0.196815 0.836445 0.042812 -0.077586 0.524598 -0.008093 -0.596895 0.298407 0.066455 0.113529 -0.013990 0.098592 0.157990 0.147123 0.131409 -0.956328 -0.842900 -0.810498 0.695106 -0.409903 0.311871 1.119993 -0.528359 0.607968 -0.380146 -0.911004 0.469234 0.775690 0.148680 0.524232 -0.495727 -0.265863 -0.212452 -0.151594 -0.686027 1.072839 -0.100541 0.170479 0.592118 0.412578 -0.387302 -0.382981 -0.320381 -0.429163 0.262141 -0.029438 -0.741975 -0.265936 -0.182868 -0.923189 -0.169674 -0.625354 -0.052915 0.756421 1.097260 0.863744 0.597888 1.159174 -0.054814 -0.494859 0.473489 -0.084471 0.700355 0.059036 0.207694 -0.159389 -0.738615 0.809351 -0.295763 -0.649751 -0.048994 -1.169480 -0.001060 -0.471752 -0.265634 -0.296921 -0.001648 -0.021056 0.008772 -0.066399 -0.307290 -0.924635 0.748518 -0.709623 -0.504648 0.787329 -0.215814 0.055355 -0.068264 0.027212 -0.268641 -0.074361 -0.239415 -0.371457 0.072508 0.255420 -0.248605 -0.110334 -0.524913 0.450652 -0.472939 0.171202 0.728936 -0.171157 0.497464 -0.440954 -1.111307 1.167550 -0.620100 -0.306839 0.837655 0.221966 0.527268 -0.326818 0.120748 0.083907 0.910528 -0.300836 -0.185486 0.504120 -0.500768 0.417455 -0.041299 0.502994 0.136618 -0.717350 -0.032681 0.694981 0.504798 0.996117 0.517602 0.550596 0.256403 0.400871 0.292312 0.108099 -0.045287 0.472378 -0.662723 0.233691 0.322037 0.360951 1.303394 0.598007 0.907174 0.601491 0.446321 -0.046494 -0.759129 -0.600424 -0.039605 -0.241595 -0.355156 0.552246 0.170422 0.098846 -0.397800 0.244184 0.234521 -1.093078 -1.110398 -0.590364 -0.051577 -0.194071 0.288492 -0.500348 0.598743 -0.347581 -0.079522 -0.077565 -0.424596 1.036225 0.332106 0.631620 0.808467 0.030826 -0.438271 -0.036675 -0.076232 -0.393547 0.300659 0.857531 -0.233339 0.254027 -0.079666 0.837187 0.261239 -0.557982 -0.388872 -0.357520 0.937931 -0.191672 -0.032202 -0.140501 -0.223403 -0.538412 0.210739 0.286140 0.493785 -0.900374 -PE-benchmarks/birthday-paradox.cpp__main = -0.032061 -0.398566 0.295027 0.309027 -0.025989 0.010030 -0.016204 0.010599 0.261510 -0.509761 -0.151292 0.138170 -0.240294 0.084743 -0.207842 -0.190159 -0.390264 -0.454791 0.016290 0.059749 -0.240453 -0.084545 -0.175370 0.194333 -0.092858 0.583891 -0.196045 0.118514 -0.535169 0.385310 0.376440 -0.175368 0.172945 0.497884 0.079972 -0.518139 0.067900 0.304941 -0.054870 -0.370439 -0.074341 -0.412878 0.083300 -0.556189 -0.209120 0.032445 0.176032 0.195135 -0.034960 -0.074852 -0.279342 0.022323 -0.148222 0.309613 0.001390 0.178814 0.375852 0.098670 -0.014134 -0.116103 0.156873 0.057783 0.248254 0.033130 -0.336705 -0.000152 -0.049884 -0.492361 -0.411816 0.163301 0.073131 0.062042 -0.078506 -0.079560 -0.435437 -0.158530 -0.030045 0.211001 0.328654 -0.560264 0.375492 0.088588 0.347692 0.070653 0.188799 0.056125 0.338722 0.182355 -0.113868 0.188581 -0.436628 -0.073070 0.030051 -0.275811 -0.206135 -0.246557 0.086518 -0.687736 -0.250590 0.109849 -0.018623 0.180372 0.023796 0.083503 0.148582 0.170135 -0.235052 -0.035205 0.093401 0.077687 0.039460 0.009979 0.056798 0.322676 -0.026439 -0.505960 -0.440535 -0.104777 0.259754 -0.180888 0.334335 0.448438 -0.307747 0.188920 -0.126729 -0.270018 0.006327 0.590675 0.141969 -0.038771 -0.178187 -0.208596 0.009589 -0.045761 -0.116280 0.698832 -0.238776 -0.088592 0.239986 0.102046 -0.093007 -0.377444 -0.096637 -0.162974 0.029038 -0.163373 -0.311782 -0.306962 -0.327163 -0.534322 -0.129555 -0.274650 0.004377 0.536157 0.379497 0.565417 0.203943 0.664894 -0.146499 -0.058585 0.055379 -0.099008 0.173096 0.282266 0.142037 -0.132310 -0.255414 0.347959 -0.215172 0.000000 0.162191 -0.365672 0.021841 -0.300790 -0.156530 0.213068 0.205262 0.114605 0.234849 0.143790 -0.531195 -0.338823 0.139706 -0.132030 -0.110771 0.120574 0.043516 -0.144533 0.163804 0.005756 -0.090060 0.041365 -0.088933 -0.082376 0.057125 0.033637 0.034288 -0.188297 -0.130527 -0.009992 -0.070794 -0.249897 0.352558 -0.176792 0.008026 -0.257896 -0.439893 0.508431 -0.337835 -0.207446 0.236574 0.257388 0.514649 -0.251421 -0.268395 -0.110424 0.757096 0.035578 -0.050881 0.157366 -0.450690 0.073710 -0.096496 0.221965 -0.005790 -0.283456 -0.001352 0.245977 0.035132 0.333885 0.260627 0.076711 0.181966 0.020569 0.049310 0.010565 -0.101605 0.296836 -0.212593 0.056562 0.081758 0.134618 0.617443 0.312358 0.543939 0.391799 0.163890 0.019957 -0.285513 -0.321611 -0.028717 0.141840 -0.198169 0.048015 -0.067896 0.318966 -0.076716 -0.050313 -0.173924 -0.759608 -0.568578 -0.371804 -0.091992 -0.286590 0.007521 -0.048197 0.122261 -0.173810 -0.132055 -0.021579 -0.196480 0.803271 0.093875 0.166137 0.399714 0.182286 -0.377338 -0.183414 0.361454 0.133072 0.015853 0.416521 -0.492264 0.227229 -0.161887 0.165632 0.475660 -0.286480 0.005177 -0.047393 0.577727 -0.170038 0.363358 0.119555 -0.489595 -0.023378 0.142722 0.145724 0.410141 -0.357109 -PE-benchmarks/find-parity.cpp__getParity(unsigned int) = -0.603350 -1.281313 0.603804 0.770878 0.385987 0.769067 0.592304 -0.148385 0.902086 0.915096 -0.395903 0.807278 -0.585589 -0.309791 0.719101 0.338925 -0.096652 -0.734300 0.393436 0.114467 0.005825 -1.027287 -0.245864 0.480650 0.094244 0.040068 -0.175687 -0.030804 -1.502509 -1.516172 0.286179 -0.236912 0.389274 0.002252 0.555005 -1.877875 0.555616 0.726313 0.004146 -2.017412 -0.137456 -0.247604 0.023070 0.359662 0.724703 0.507717 0.542459 0.374462 0.041132 0.394530 0.169153 -0.545327 0.347222 0.754548 0.073280 1.037396 1.418987 -0.074770 0.368696 0.153453 0.242444 -0.224378 0.639987 1.075296 -0.540966 0.035543 0.052095 -0.005819 -1.159631 0.302767 0.134715 -0.415453 -0.701670 -0.172183 -0.062810 -0.064316 -1.194116 0.215975 1.437055 -0.074810 1.914896 0.974137 1.222679 -0.212654 0.671993 -0.177350 0.666598 0.265147 -1.181143 -0.130791 -1.370462 -1.124429 -0.197497 0.501763 -0.263295 1.458133 0.174156 0.090708 -0.784423 0.510477 -0.287335 0.243862 -1.313763 0.503031 0.718351 0.459584 -0.054478 -1.068949 -1.310922 0.405096 -0.805871 -0.365023 -0.075144 -0.159720 -0.497249 -0.248020 -0.510153 -0.567431 0.856829 -0.752200 -0.733066 0.502644 -0.630907 0.512273 -0.158238 -0.113492 0.110445 0.220550 0.580770 0.259954 1.287617 -1.135421 -2.604364 0.506542 -0.028936 0.427775 -0.152582 0.103077 0.399655 0.128934 0.189225 0.427414 -0.105337 0.505276 0.765707 -0.125799 -0.415170 -1.070150 0.294656 -0.400632 0.798207 -0.509851 0.650178 -0.079147 0.615823 -0.151350 0.192477 0.999869 -1.443208 0.872895 -0.250847 0.454785 0.013782 0.722874 0.248334 -0.343566 -0.507526 0.367878 1.173218 -0.140998 0.411265 -0.576859 0.060976 -0.398710 -0.795213 0.491941 -0.112412 0.101315 0.785298 0.023018 1.751114 -1.294364 -0.084697 -0.068115 0.297211 0.067476 -0.028480 -0.782110 0.711957 -0.094460 0.653591 0.609540 -0.000946 -0.542827 0.157616 0.091090 0.009469 -0.440376 0.945428 -0.604743 -0.220782 -0.118646 -0.104341 -0.505073 -0.498525 -0.194398 0.886802 0.977728 0.971368 -1.413400 0.223340 -0.878082 0.235495 -1.398137 0.953773 -0.487718 -0.136939 -0.750874 -0.118023 -0.487583 0.530555 0.304989 -0.451424 0.396785 -0.823437 0.587940 0.654504 0.096413 0.040058 0.428492 0.090300 0.128148 -0.376099 -0.112830 0.247998 -0.008305 0.127297 -0.127503 -0.372743 1.093403 0.207890 -0.832643 0.181600 1.089028 -0.559561 0.266157 0.808331 -0.259050 -0.449211 0.260494 0.254621 0.801891 -0.242376 -0.081161 -0.447665 -0.147450 -0.089416 0.370387 -0.883287 -0.440648 0.430826 -1.293317 -0.575671 0.328448 0.449559 0.325232 0.333704 -1.492899 -0.276519 0.263525 -0.083664 0.253722 0.080151 0.386398 0.867066 0.331451 -0.098900 -0.576157 -0.324491 -0.291593 -0.766997 -0.282793 0.044666 0.195485 -0.655756 0.847158 0.119049 0.073014 -0.162205 -0.217098 0.806164 -0.338073 1.125860 0.605374 -0.211016 0.160003 0.052654 1.506478 -0.938590 -0.458825 -PE-benchmarks/find-parity.cpp__main = -0.452798 -1.328753 1.641051 1.278484 -0.365201 0.803365 0.133698 -0.515720 0.737489 -0.682571 -0.415421 0.707244 -0.820821 -0.331531 -0.132005 -0.333358 -1.294579 -1.148454 -0.089449 -0.383572 -0.029987 -0.692719 -0.565179 1.345136 0.201107 0.951517 -0.499935 0.077097 -2.003053 0.336906 0.807782 -0.100051 0.759348 1.188866 0.774007 -2.136348 0.702409 1.059888 -0.170900 -1.859639 0.158023 -1.015756 -0.038655 -0.926312 -0.460873 0.295064 0.262792 0.310303 -0.003629 -0.368994 -0.900191 -0.063290 -0.374256 1.680658 -0.051593 0.945564 1.417592 -0.085435 0.448969 -0.049256 0.332246 -0.103549 0.637401 0.522888 -0.914818 -0.370563 -0.027541 -0.862784 -0.857724 0.633020 0.275047 -0.316976 -0.540697 -0.381379 -1.764089 -0.149376 0.094475 1.211808 1.449375 -1.139399 1.502674 0.397877 1.094459 0.183817 1.127149 0.213721 1.260562 0.433523 -0.551062 -0.011870 -2.296003 -0.542641 -0.060024 -0.715529 -0.737530 -0.076872 0.659243 -2.114258 -1.379214 0.624167 0.074504 -0.355642 -0.689129 0.090876 0.596399 0.798463 -0.433316 -0.919524 -0.449554 1.139121 -0.557107 -0.350502 0.212533 0.553630 -0.217550 -1.095149 -1.232404 0.410694 1.001318 -0.331988 -0.054523 1.431498 -1.232141 0.366579 -0.190140 -0.187711 -0.438351 1.329099 0.177967 -0.287451 0.341772 -0.947203 -0.741515 0.068110 0.003675 1.752533 -0.651393 -0.316476 0.521838 0.517584 0.007721 -0.293433 -0.311149 0.480406 -0.333451 -0.535649 -0.669310 -1.448654 -0.514427 -1.368981 -0.250893 -0.670597 -0.248803 1.743313 0.966419 1.548919 0.326117 1.382279 -0.779961 0.624167 -0.047261 0.078302 0.226041 0.179742 0.444051 -0.635835 -0.901187 0.680818 -0.025094 0.695002 0.299945 -0.368171 -0.005028 -0.781243 -1.120924 0.609790 0.694474 0.608286 1.442404 1.086137 -0.701628 -1.677589 0.038949 -0.053344 -0.439333 -0.034824 -0.230686 -1.051386 0.417891 0.417455 -0.103256 1.196598 -0.288808 -0.457921 0.128892 0.107720 0.371066 -0.711400 0.364040 -0.626768 -0.427289 -0.795550 -0.015720 -0.790041 -0.693850 -1.138232 -1.140613 1.687461 -1.289583 -1.667412 0.972307 -0.205603 1.307255 -1.730781 -0.090797 -0.660318 1.731193 0.313568 -0.113261 -0.369609 -0.462910 -0.542627 0.148705 0.603291 -1.191978 0.262895 0.865675 0.506367 0.262720 0.435254 0.645973 -0.272773 0.290019 -0.899806 0.581764 -0.319291 -0.736283 0.420898 -0.509386 0.585400 0.186713 0.369235 1.017723 0.941422 1.069250 0.737642 1.195875 0.080468 -0.626723 -0.294742 -0.201274 0.688256 -0.467438 -0.276796 -0.526599 0.526371 0.334580 -0.002152 -1.438408 -1.865953 -1.769501 -1.544466 -0.050530 -1.015530 0.109269 0.317416 0.041343 -1.704845 -0.841068 -0.155796 -0.501747 1.322682 0.649684 0.515330 1.332518 1.049722 -0.923173 -0.431940 0.888832 0.589788 -0.582753 0.184300 -1.532415 0.971862 -0.894168 0.810587 1.590684 -0.246564 0.609253 -0.071766 1.174809 -0.853048 1.751675 0.814533 -1.754593 0.079976 0.784886 0.621939 0.223594 -0.992356 -PE-benchmarks/reservoir-sampling.cpp__printArray(int*, int) = -0.818930 -1.502449 1.619248 1.476833 0.258341 1.013070 0.492458 -0.794670 1.202624 0.796116 -0.597128 0.698489 -1.226926 -0.145986 0.091063 0.293256 -0.957959 -1.243879 0.053715 -0.423240 -0.272912 -1.266011 -0.347058 0.922382 0.280274 0.501104 -0.609678 0.315378 -1.929610 -1.385453 0.647489 -0.195085 0.848804 0.526636 0.380092 -2.854372 1.172454 1.499686 -0.219223 -1.928996 0.098612 -0.910747 -0.274446 -0.050811 0.061479 0.734458 0.389882 0.469979 0.188344 0.173706 0.280167 -0.297652 0.157964 1.879904 -0.357802 1.525241 1.446709 -0.062505 0.127121 0.309818 0.323624 -0.043596 1.089864 1.234968 -0.959393 -0.432330 0.176937 -0.318994 -1.471745 0.842844 0.444918 -0.540535 -0.762349 -0.509924 -0.886770 -0.348689 -0.020176 0.567487 2.212539 -0.672280 2.127096 0.756085 1.342394 -0.136678 1.315059 -0.169501 1.757011 0.466122 -1.216611 -0.059928 -1.706147 -0.853474 -0.016885 0.824499 -0.732013 0.118882 0.465025 -1.213152 -1.614793 0.689230 -0.161507 -0.188571 -1.442225 0.217310 1.011690 0.519894 -0.370082 -1.608739 -1.072398 0.846917 -1.015236 -0.670005 -0.270410 0.016272 -0.422703 -0.399759 -1.355592 -0.260527 0.967496 -0.901835 -0.683930 1.404705 -0.885105 0.632393 -0.210827 0.002164 -0.219274 0.783278 0.290655 0.331182 0.699316 -0.846726 -2.052009 0.175829 0.270151 1.015876 -0.628057 -0.353746 0.371636 0.448014 -0.178990 0.475660 -0.474247 1.033564 1.148537 -0.336801 -0.723332 -1.296597 -0.114737 -1.451039 0.480819 -0.909117 -0.229126 0.148777 1.268509 0.566602 0.482382 1.612206 -1.241316 1.169817 -0.221245 0.199084 0.398570 0.192676 0.593912 -0.773650 -1.131852 0.809074 0.879712 0.316198 0.470734 -0.594877 -0.118410 -0.821891 -1.352626 0.870468 0.172295 0.341250 1.420105 0.832107 2.578984 -1.693043 0.513329 0.185462 -0.106893 0.212447 -0.131842 -1.452035 0.767643 0.323882 0.386398 1.723092 -0.113228 -0.913547 0.050317 0.170714 0.309105 -1.189590 1.026981 -1.082878 -0.007883 -0.748378 -0.068907 -0.730221 -0.935607 -0.726934 0.061663 1.808842 -0.397112 -1.954772 1.146568 -0.562016 0.848081 -2.340395 0.931806 -0.895451 1.125615 -0.789948 -0.318145 -0.176202 0.271085 -0.237654 0.295037 0.714570 -1.009271 0.883045 1.307243 0.405032 0.422487 0.416333 0.631433 -0.070016 -0.189176 -0.914880 0.966974 -0.020218 -0.223951 -0.133132 -0.749494 1.046490 0.195034 -0.218819 0.677846 1.590137 -0.142241 0.391996 1.179309 0.170185 -0.760490 0.412404 0.183571 0.956971 -0.589182 -0.326351 -0.553246 0.129546 -0.005856 0.575163 -1.640333 -1.367215 -0.556014 -1.914313 -0.513852 0.333937 0.531655 0.642647 0.314199 -1.993267 -0.734748 1.010664 -0.501564 1.686305 0.571699 0.878739 1.129995 1.106461 -0.314366 -0.592260 -0.061490 0.084848 -1.047367 -0.336495 -0.759926 1.003923 -0.780188 1.188712 0.905796 -0.272541 0.446654 -0.324783 1.473656 -0.914461 2.047852 1.005438 -1.008170 0.456425 0.504999 1.838920 -0.560447 -0.962606 -PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -3.522249 -5.915544 4.948155 4.520615 1.400783 3.964235 2.030118 -1.639456 3.244863 3.622779 -1.992889 3.377215 -3.705413 -1.364064 -0.434863 0.388451 -1.661128 -4.158903 0.818029 -0.726416 -0.459174 -3.973665 -2.464129 4.578204 0.659307 0.454735 -1.741055 0.450662 -7.593437 -4.837685 0.681313 -0.390183 2.716485 -0.004960 1.275837 -8.555707 3.194813 5.881141 -0.180200 -6.721855 0.187903 -2.583055 -1.009052 1.216819 -0.594501 1.751107 1.948924 0.346588 -0.473901 0.517566 0.973523 -0.870510 1.674711 7.023807 0.220662 5.674919 5.374473 0.026762 1.197849 0.937211 1.290946 -0.954720 3.654246 3.432435 -2.698138 -0.528964 0.179704 0.063826 -4.617094 1.584369 1.084533 -2.336995 -1.631746 -1.238208 -3.175602 -1.400702 0.296475 1.043544 7.286607 -1.986421 8.171472 3.106037 4.726800 -0.423253 4.738765 -0.579910 4.937977 1.686774 -4.213902 -0.325222 -5.140565 -1.445868 -0.399382 3.428424 -3.130685 0.797608 2.205159 -4.083347 -5.941628 3.127311 -1.379402 -0.898130 -3.909993 0.550340 3.095351 1.955355 -1.799245 -5.631953 -4.439320 3.217538 -3.329827 -2.942961 -0.867851 -0.011835 -0.688410 -0.600891 -3.689211 -0.928572 4.082868 -3.489013 -2.601373 4.679222 -2.035582 3.670998 -0.802454 0.029114 0.041601 1.406300 2.026824 0.535599 1.557264 -3.224692 -7.048293 0.526655 0.160492 1.871217 -2.548992 -0.704342 2.305349 1.905750 1.631078 2.586598 -1.894050 4.024529 2.744869 -0.398452 -1.817621 -5.002608 -0.230352 -3.908911 0.963862 -2.815094 -1.882937 0.490331 3.938355 0.733119 0.442076 4.574800 -2.976337 4.108874 0.047178 0.592501 0.398652 -0.920237 1.609608 -2.510076 -4.128726 2.522336 4.133499 1.335816 1.059725 -1.775588 -0.759862 -1.710993 -4.451471 2.169082 0.381773 1.309602 5.129543 2.403630 9.512041 -5.576336 1.006326 -0.885780 -0.778734 0.968544 -1.311392 -5.250437 1.872895 1.029115 0.835490 6.064680 -0.457273 -2.920172 1.080291 0.377752 0.710550 -4.144139 4.814646 -4.011807 -0.567231 -1.680670 -1.359763 -2.314715 -2.857970 -3.560709 -0.091256 6.057979 -2.484027 -6.193518 2.581644 -0.891004 1.863062 -7.431429 3.701309 -2.736681 3.839861 -2.222577 -1.515357 -0.510140 2.127700 0.156384 0.530732 2.633631 -4.007058 3.788011 4.131167 0.697455 1.550107 1.963762 1.517353 -0.463975 -1.721809 -3.400397 2.866669 0.124155 -1.610592 -0.911167 -2.523292 4.319717 1.270617 -1.025327 0.670781 5.204725 -1.746664 -0.058333 4.225795 -0.597871 -2.359410 1.133871 0.260260 3.855448 -1.889461 -0.767328 -3.058373 0.095242 0.973720 2.156326 -5.705387 -3.554502 -2.079331 -6.008940 -1.674357 1.066802 1.737990 2.460232 1.105868 -7.528996 -3.100258 3.503381 -1.630064 4.714566 2.539376 3.579684 4.238467 2.770250 0.414874 -1.744041 -0.538334 0.122430 -3.700030 -1.436401 -1.165177 1.928993 -2.735127 4.887251 2.057933 0.201664 1.753292 -0.357107 2.317475 -3.250731 6.938984 3.545866 -3.824581 0.841068 1.447858 5.911975 -4.165527 -3.408752 -PE-benchmarks/reservoir-sampling.cpp__main = -0.695472 -2.040552 2.243044 1.960930 0.273943 1.085799 0.796481 -0.714999 1.414724 1.079323 -0.715867 1.178360 -1.442559 0.062155 -0.429108 0.781425 -1.185697 -1.626103 0.215219 -0.357173 -0.405823 -1.346084 -0.178674 1.091878 0.637077 0.448954 -0.872243 -0.273610 -2.306924 -1.568446 0.684190 -0.461180 1.073244 0.132786 0.280086 -3.506551 1.303808 1.723990 -0.324947 -2.448164 0.275076 -0.897627 -0.166432 -0.184621 -0.215143 0.537643 0.717254 0.727920 0.243848 0.555847 0.224605 -0.119667 0.683671 3.014208 -0.306491 1.767126 1.788694 0.073541 0.184568 0.185147 0.704331 -0.188832 1.191043 1.296376 -0.603145 -0.604218 -0.353019 -0.506063 -1.718656 0.872173 0.253606 -0.263148 -1.087473 -0.360876 -1.095520 -0.413695 -1.027280 0.983483 2.882479 -1.278729 2.541038 0.960217 1.604238 -0.129565 1.203616 0.018484 1.424401 0.767013 -1.309077 -0.151920 -1.589555 -0.540697 -0.017204 0.430350 -0.940018 -1.057730 0.970191 -1.360747 -2.071700 1.126601 -0.077828 -0.135414 -1.040732 0.013736 1.059714 1.010879 -0.999023 -1.924811 -1.274640 0.648973 -0.573206 -0.963589 0.003112 -0.013748 -0.376192 -0.446347 -1.730573 -0.417076 1.086206 -1.419318 -0.526615 1.554042 -0.665452 1.101459 -0.314536 0.082416 -0.155678 1.155744 0.793357 0.586305 0.626586 -0.567507 -2.167283 0.461808 0.564194 1.151975 -0.800724 -0.021947 0.310006 0.681275 0.146781 0.464048 -0.418233 1.136692 1.202862 -0.439641 -1.160926 -1.650538 -0.045642 -1.666488 0.478012 -1.308875 -0.389989 0.526748 1.512299 0.534623 0.596924 1.985489 -1.452359 1.373700 -0.140595 0.258205 0.438301 0.103440 0.741757 -0.864970 -1.489231 0.923291 1.343591 0.404549 0.450492 -0.743567 0.018845 -1.003356 -1.192026 0.815184 0.559384 -0.091036 1.616897 0.763625 2.479402 -1.819274 0.229258 0.163950 -0.213402 0.243654 -0.270767 -2.169799 1.012134 0.191930 0.324931 1.697055 -0.135584 -1.123814 0.729420 -0.179435 0.248525 -1.221198 1.150505 -1.380262 -0.491192 -0.923659 0.203774 -0.764207 -0.842429 -0.980071 -0.042379 2.265426 -1.147961 -1.680214 1.066847 -0.366285 0.705680 -2.529263 1.816134 -1.037262 1.344942 -0.599768 -0.525608 -0.109953 0.532759 -0.222465 -0.085355 1.077886 -0.990954 0.977804 1.774010 0.427021 0.318074 0.720319 0.983790 -0.137474 -0.076993 -0.875527 1.163700 -0.150710 -0.669222 -0.111496 -0.839577 1.172021 0.016914 -0.088506 1.043657 1.537525 -0.104773 0.706847 1.240916 0.422240 -1.092368 0.595614 -0.017466 1.612777 -0.859936 -0.138107 -0.846591 0.312957 -0.170935 0.982761 -2.054777 -1.861922 -1.293961 -1.896632 -0.646575 0.101743 0.607098 0.187424 0.242894 -2.382835 -1.195472 1.034007 -0.738057 1.228371 1.144369 1.032614 1.595235 1.270075 -0.361871 -0.648162 -0.064301 0.187919 -0.897061 -0.354187 -0.725160 0.780449 -1.231610 1.224242 1.271918 -0.187104 0.449427 -0.148564 1.356924 -1.086816 2.692777 1.305897 -1.330788 0.682383 0.939785 2.291970 -0.758114 -1.286366 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::addEdge(int, int) = -0.391477 -1.595272 2.386586 2.273744 -0.389854 1.052234 0.253968 -1.435890 1.178782 1.040368 -0.194706 0.780020 -1.411738 0.458828 -0.071988 1.140260 -1.696976 -1.092001 -0.535362 -1.126902 -1.062540 -1.120823 -0.114413 1.034326 0.759696 0.523892 -1.086790 0.007597 -1.247854 -1.675270 0.576147 -0.301473 1.144160 0.551017 0.571997 -4.044982 1.599099 1.532973 -0.447090 -1.641110 0.168941 -0.852852 -0.027713 -0.383929 -1.005720 0.392624 0.056417 0.181632 0.841520 0.371575 0.656160 0.234291 0.983472 3.247461 -0.447331 1.626829 1.093533 -0.198096 -0.013006 0.198140 0.545223 0.248492 1.111771 0.837644 -0.181876 -1.091700 -0.338866 -0.555324 -1.387767 1.314340 0.092106 -0.767077 -1.283149 -0.909196 -1.269378 -0.805875 -1.771514 1.363017 2.535959 -1.697089 1.713359 0.741277 0.673722 0.092427 1.439893 -0.140477 2.157554 0.597887 -0.878739 0.645213 -0.123011 -0.669925 0.474033 0.490460 -1.182434 -1.868862 0.872341 -1.792628 -2.190635 1.310991 0.420220 -0.237823 -1.427837 -0.843944 0.814790 0.381989 -1.167762 -1.883941 -0.963635 0.780783 0.032797 -0.911327 -0.231123 -0.070260 -0.065063 -0.124700 -1.996707 -0.149351 0.681237 -1.037228 -0.585530 1.738084 -0.039503 0.557912 -0.222897 0.315248 -0.467591 1.675644 -0.025152 1.157150 -0.240859 0.372127 -1.538627 0.061562 0.645457 0.291289 -0.332603 -0.511201 -0.140938 0.731711 -0.604820 1.031461 -0.122429 1.458729 1.556507 -0.016223 -1.286167 -1.049629 -0.583435 -2.213539 0.402455 -1.368800 -0.741399 0.868219 1.436681 0.849865 0.707507 1.263746 -1.021489 1.033588 -0.360245 0.032896 1.009469 -0.098995 0.854514 -0.954543 -1.461431 1.040743 0.842672 0.810925 0.525054 -0.627545 0.005367 -0.763580 -0.989353 0.788071 0.630969 -0.226654 1.597204 1.105550 3.308220 -1.481254 0.743254 0.451038 -0.359599 0.462709 -0.270985 -1.927392 0.650262 0.366017 -0.338810 1.719338 -0.387155 -0.798279 0.571445 -0.378448 0.550892 -1.372429 0.787191 -1.194277 -0.021609 -1.315267 0.091511 -0.759393 -0.638758 -0.761218 -0.332871 2.235763 -2.339864 -1.107181 2.048907 -0.168930 0.852054 -2.108171 2.203702 -0.862151 1.409091 -1.034692 -0.940651 0.004269 0.477041 -0.544002 0.589656 1.002645 -0.945846 0.158389 1.936795 0.370692 0.466268 0.289398 1.358940 -0.096479 0.573999 -1.008985 1.974017 0.038806 -0.287832 -0.391316 -0.860308 0.400573 -0.351452 0.306966 0.985043 1.276207 0.192732 0.223034 1.314050 0.677615 -0.949370 0.930173 -0.123805 0.815629 -1.167082 -0.175564 -0.090388 0.644040 -0.388588 0.706578 -2.068536 -1.585935 -2.225983 -0.787647 -0.808334 0.807895 0.632613 0.057625 -0.260480 -1.549967 -1.364561 1.963673 -0.936309 0.461055 0.992239 1.069906 1.610446 1.782161 0.004629 -0.402133 -0.362307 -0.040987 -0.311392 -0.069428 -1.074455 1.349491 -1.117362 1.097441 1.447282 -0.267817 0.861947 0.398096 1.536528 -1.214302 2.203501 0.879373 -1.005924 1.073923 1.930331 1.447905 -0.321063 -1.160070 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::push_back(int const&) = -0.077529 -0.917212 1.926129 1.690331 -0.291034 0.629247 0.100363 -1.345253 1.481807 0.359404 -0.067820 0.345084 -1.053998 0.601394 -0.297854 1.025625 -1.514553 -0.974832 -0.508815 -1.067197 -0.843968 -0.975442 0.422656 0.255730 0.632583 0.456758 -0.955443 0.007034 -0.960840 -0.934492 1.081055 -0.390250 0.806590 0.193464 0.263220 -3.329660 1.412603 0.906599 -0.490407 -1.358132 0.240322 -0.820300 0.128790 -0.602182 -0.478886 0.211199 -0.188216 0.492971 0.979868 0.286153 0.366317 0.484081 0.168066 2.586149 -0.959138 1.010112 0.481178 -0.059223 -0.391253 0.293020 0.409690 0.500026 0.837138 0.799006 -0.267402 -1.124092 -0.221362 -0.642902 -1.378018 1.246603 -0.015182 -0.403871 -1.099677 -0.507587 -0.989252 -0.497219 -1.263619 1.271060 1.947137 -1.326708 0.981342 0.226904 0.533105 0.101900 0.849460 -0.081755 1.616537 0.433907 -0.617319 0.086968 -0.553645 -0.367427 0.334869 -0.198445 -0.657727 -1.762485 0.632030 -1.287231 -1.489152 0.672496 0.589161 -0.016680 -1.289897 -0.552017 0.818272 0.455756 -0.835267 -1.398146 -0.535145 0.528918 0.168919 -0.568503 0.040671 -0.378039 -0.230716 -0.592107 -1.607283 -0.197249 0.232984 -0.657977 -0.459639 1.273472 -0.562691 -0.070521 -0.159556 0.358538 -0.535055 1.432644 -0.267029 0.930079 0.048071 0.330961 -1.071000 0.194983 0.521846 0.920253 -0.165585 -0.154143 -0.558813 0.399922 -1.002412 0.215261 -0.210901 0.599859 1.185029 -0.278406 -1.043524 -0.464671 -0.177392 -1.884918 0.345044 -1.117295 -0.385883 0.680549 1.141151 1.103125 0.925839 1.349332 -1.154538 0.773225 -0.319310 0.034166 1.115236 0.273336 0.758473 -0.678450 -1.061748 0.663747 0.295291 0.391765 0.343633 -0.465736 -0.009963 -0.970315 -0.573925 0.525547 0.693097 -0.104452 0.978030 0.763155 1.600164 -1.502391 0.572225 0.737847 -0.284610 0.336849 -0.148355 -1.460224 0.572121 0.317679 -0.017740 1.144079 -0.309094 -0.712182 0.279165 -0.210863 0.566819 -0.885238 0.134186 -0.904089 -0.241678 -1.085549 0.214592 -0.571869 -0.433315 -0.545250 -0.455696 1.606379 -1.393390 -1.044610 1.858997 -0.450001 0.858132 -1.673572 1.337762 -0.757155 1.029203 -0.678022 -0.206450 -0.128654 0.190236 -0.749185 0.411867 0.737312 -0.494163 0.200572 1.764319 0.447669 0.311833 0.064806 1.190299 -0.131339 0.768503 -0.644971 1.617946 -0.190769 -0.326104 0.055199 -0.636931 0.132174 -0.585328 0.378784 1.224358 1.022349 0.561673 0.709134 0.880237 0.900543 -0.784405 0.896935 -0.138609 0.399007 -0.666183 -0.058427 0.283081 0.553908 -0.543808 0.574059 -1.486717 -1.747025 -1.615354 -1.032023 -0.184657 0.074947 0.231250 -0.283068 -0.177470 -1.174959 -0.914647 0.999809 -0.676181 0.942986 0.665798 0.638332 1.038536 1.616170 -0.766642 -0.197364 0.021847 -0.064648 -0.146893 -0.216749 -1.124218 1.289367 -0.805793 0.493335 1.436548 -0.375614 0.470281 0.057361 1.205382 -0.758962 1.744571 0.630357 -0.507026 1.054603 1.106764 1.535516 0.478665 -0.858644 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::DFSUtil(int, bool*) = -0.438597 -4.778451 7.367262 6.803046 -0.686389 3.554398 0.161955 -4.718486 3.911499 2.263684 -1.566152 2.801020 -4.050824 1.139190 -2.035728 2.797408 -4.778321 -3.581659 -1.596279 -3.028715 -2.513701 -3.436284 -0.160582 3.387741 2.401859 3.252739 -3.229928 0.614226 -5.208718 -5.504043 2.042425 -0.545110 3.096135 2.048917 1.530575 -9.203980 5.072826 5.907333 -1.197173 -5.643835 0.811828 -2.525795 -1.632831 -0.712613 -1.613949 1.530410 -0.259360 1.587382 1.751893 1.141157 1.368664 1.261547 2.684674 7.694074 -1.008877 5.340629 3.832069 0.255040 0.356043 0.735569 1.650558 1.388206 3.136026 2.872018 -0.980480 -3.375084 -0.715968 -0.951497 -4.072161 3.815684 0.288337 -2.521306 -3.337700 -2.551516 -3.736530 -1.179403 -3.113135 3.473208 7.597991 -3.867237 5.319332 2.128548 2.060106 -0.709564 4.008610 -0.855767 5.984835 2.357648 -2.274822 0.549482 -2.659217 -1.701368 1.256813 1.381165 -4.514234 -4.472007 3.128963 -7.261054 -6.579594 2.862714 1.412951 -1.630162 -3.077297 -1.004534 2.528292 0.917734 -2.501823 -5.103286 -1.742474 2.748165 -0.478748 -3.078414 -1.109365 0.325975 -0.204204 0.384521 -5.742698 -0.168446 2.313960 -2.837304 -1.131275 4.715893 0.155175 1.376293 -1.228185 0.880667 -1.023516 3.696082 -0.261436 2.901418 -0.114619 1.470813 -2.532012 1.317661 1.713935 0.381141 -2.572315 -1.154371 0.126130 2.156579 -1.247736 2.552448 -2.690413 3.204642 3.891005 -0.633039 -3.556536 -3.309934 -2.049059 -6.300564 0.627241 -3.683568 -3.494253 0.957063 4.451102 2.324741 2.150994 4.142017 -3.478166 2.453418 0.054375 0.737226 2.672498 -0.323779 2.124858 -2.918849 -4.899655 3.641911 2.230456 1.704497 1.312672 -1.071348 -0.344376 -2.641484 -3.010722 3.328565 1.439006 -0.048105 5.391028 3.387487 7.713801 -4.101192 1.972698 1.159589 -1.565871 1.361792 -0.712999 -6.074464 2.014178 1.062726 1.654784 6.508877 -0.787797 -1.824574 1.634928 -0.291351 1.461539 -4.370609 3.212473 -4.132989 -0.480017 -3.563290 0.684741 -1.680234 -1.878784 -2.803515 -1.604672 6.590988 -6.189868 -4.279338 5.911803 -0.363621 2.495473 -6.481616 3.094183 -2.908945 4.314579 -1.278469 -1.634294 0.301468 -0.580107 -2.464980 1.183374 3.041027 -2.966686 1.817734 5.069620 0.954189 0.767623 0.751348 3.228303 -1.392322 1.769490 -3.659773 5.405352 0.532715 -1.780583 -1.074292 -2.597792 0.810786 -1.855714 0.284442 2.959635 3.883415 1.098678 0.700359 3.130987 2.335318 -3.200502 3.316530 0.006750 1.578383 -3.058714 -1.049465 -0.103027 1.336690 -0.699907 2.745819 -6.351116 -5.546001 -6.220385 -4.464058 -1.445176 -0.092763 2.513417 0.213281 -0.869640 -4.983009 -4.816209 5.627354 -2.325388 3.877784 3.425532 3.589604 4.208322 4.665210 -0.839975 -0.067224 -1.094057 0.676303 -1.341432 -1.179747 -3.000503 4.235277 -1.762162 3.081759 4.989165 -0.928602 2.959487 -0.318467 4.112284 -3.422313 6.789416 2.784582 -3.607630 2.672872 3.477198 4.944119 -0.876582 -3.752272 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -2.895204 -8.701194 9.569796 9.142456 1.545421 6.038827 1.873311 -4.698169 6.244175 6.978777 -3.571197 4.759067 -5.409996 -1.292732 1.265797 3.638642 -4.488798 -5.997314 1.075153 -1.809526 -1.265967 -6.141257 -1.946572 5.360295 2.233742 3.211914 -3.112552 1.096490 -8.518223 -11.112381 1.954027 -1.213430 4.809279 2.979266 2.482506 -13.137058 7.287797 8.623944 -0.878071 -11.039406 0.000191 -2.504879 -2.446250 1.356762 0.073973 4.669245 2.568359 2.341315 0.300907 3.159986 1.706778 -1.430502 4.765323 8.704876 0.514068 8.619751 7.714377 -0.538036 1.774288 1.505250 2.803803 -0.200254 5.888307 6.181440 -2.710656 -2.484026 -0.282616 -0.037131 -7.801309 3.934076 1.528132 -4.181868 -4.207977 -2.836006 -2.913849 -1.072110 -3.169659 3.372039 11.921184 -3.309995 11.542342 5.093806 6.621697 -1.877825 6.297621 -1.471855 8.257563 3.741230 -6.359387 -0.362488 -6.424584 -6.261929 0.823866 3.317772 -5.310211 0.635713 3.337816 -6.029176 -8.907409 5.125795 -0.076715 -1.216901 -6.956934 -0.132778 5.662220 3.124846 -1.989988 -7.953873 -5.127830 4.065144 -4.990935 -4.915362 -2.981125 0.756649 -1.906527 1.805669 -6.887951 -1.986953 5.858093 -5.467214 -2.816428 6.360312 -2.012203 4.016083 -2.244641 0.100120 -0.140055 3.066252 2.565767 3.609478 4.567988 -2.775240 -8.914279 3.558677 1.906139 0.792927 -2.849786 -1.246543 2.456139 3.387318 0.725511 5.057561 -3.244012 5.897629 6.973827 -0.015219 -4.609232 -7.166717 -1.168588 -6.796341 3.051356 -5.421200 -1.499385 1.484559 6.774549 0.635538 2.001426 6.198803 -7.786646 5.622207 -1.082351 2.891453 1.333430 0.800186 2.468520 -4.107308 -6.011604 4.938788 6.961702 0.899283 2.672487 -3.648065 0.069909 -3.049266 -6.823545 5.517357 0.384343 0.948679 7.195406 3.558530 15.514185 -6.021069 0.967796 0.177829 -0.568093 1.209948 -1.179290 -9.094233 4.147596 0.671954 4.512014 9.836110 -0.803234 -3.881793 1.358139 0.564925 0.322445 -5.563392 7.109423 -6.663756 -0.286041 -2.343365 -0.743797 -3.692835 -4.292372 -4.080858 1.599212 9.929572 -2.748982 -8.895764 6.085064 -4.845924 2.530940 -11.126666 6.013795 -4.719083 3.825609 -3.339568 -2.872923 -1.220933 0.412495 -0.970833 -0.247553 4.505087 -4.619846 4.823319 7.105531 1.105663 0.709514 2.683197 2.489167 -1.266723 -0.800517 -4.629821 5.634896 -0.005955 -0.082841 -2.568503 -3.938037 5.453905 -0.496146 -2.790372 2.220987 6.789551 -2.264237 0.580522 4.649519 0.417531 -4.948436 4.323287 1.473990 5.100889 -3.687733 -1.465342 -2.900823 -0.030403 -0.063115 4.473575 -8.949682 -5.598551 -4.114763 -7.949437 -4.684747 2.258989 4.710490 1.999543 0.851466 -9.160281 -5.492013 6.744503 -2.122553 4.706424 4.276847 5.508939 6.288866 4.923476 0.404560 -2.681165 -3.388374 -0.796002 -5.216059 -2.804790 -1.685572 4.362603 -2.954639 6.247504 4.580234 -0.141706 2.386467 -2.689570 5.901053 -4.764535 9.986093 5.477761 -4.884271 1.595899 2.275601 8.747220 -6.196830 -5.708937 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::size() const = -0.387284 -0.371532 0.773938 0.320844 -0.170659 0.278168 0.304016 -0.388084 0.845203 0.109574 -0.377403 -0.674361 -0.581922 -0.351238 -0.090474 -0.174647 -0.514516 -0.412745 -0.060106 -0.466888 0.119298 -0.694522 0.201610 0.006166 0.073665 0.224108 0.171625 0.096355 -0.184544 -0.217252 0.924207 -0.165262 0.268995 0.507762 -0.070079 -1.102257 0.544832 0.345438 -0.190286 -0.474045 -0.022809 0.008320 -0.194323 0.193505 -0.198771 0.180420 0.039382 0.604261 0.157127 0.011181 0.197205 -0.662300 -0.104642 0.853201 -0.341903 0.311429 0.025167 -0.037450 0.010715 0.528309 0.049191 0.091831 0.172190 0.694340 0.007461 -0.021280 0.499042 -0.353382 -0.897220 0.619520 -0.278284 -0.177902 0.004529 -0.160366 -0.226917 0.020631 -0.325202 0.376634 0.879210 -0.187863 0.731604 0.295841 0.261921 -0.229672 -0.257323 -0.036049 0.400128 0.047389 -0.272438 -0.169507 -0.476949 -0.262876 0.028064 -0.193320 -0.120759 -0.220614 0.508317 -0.446565 -0.325055 0.025297 0.141524 -0.103042 -0.276205 0.199323 0.153623 0.097530 -0.151520 -0.452379 -0.310074 0.318857 -0.438797 0.260761 -0.027672 0.397500 -0.204026 -0.276378 -0.365191 -0.255067 -0.173217 -0.389377 -0.013988 0.421900 -0.424025 0.079814 0.274469 0.238546 -0.060081 0.424507 0.131487 0.208812 0.222969 0.011344 -0.311236 -0.246688 0.188378 0.665641 0.387714 -0.211335 0.211024 0.126845 -0.355811 -0.066634 -0.230441 -0.344719 0.386590 -0.381711 -0.036715 -0.096324 -0.115211 -0.877881 -0.042425 -0.531654 -0.159542 0.439033 0.406826 0.800886 0.201875 0.998469 -0.943993 0.323400 -0.366399 -0.292067 -0.283544 0.256198 0.239240 -0.096360 -0.284096 -0.255688 0.089640 0.283204 0.122196 -0.596341 -0.325240 -0.617242 -0.233762 0.340488 0.098164 -0.108592 -0.014545 0.522851 0.187918 -0.882506 0.231805 0.419972 0.002259 -0.114155 0.336482 -0.763430 0.290500 0.064624 0.030259 0.116605 -0.035670 0.144008 -0.034099 -0.501431 -0.092232 -0.490596 -0.068407 -0.354817 0.057755 -0.500961 0.229172 -0.512994 -0.359403 -0.060509 0.021754 0.316336 -0.189064 -0.452110 0.745957 0.175365 0.206653 -0.370625 0.277183 -0.225293 0.624548 -0.184371 -0.029728 -0.295166 -0.030133 0.194810 -0.291975 -0.106003 -0.047832 0.591802 0.759136 0.258728 0.026962 0.178812 0.689983 -0.327113 0.034322 -0.455066 0.043418 -0.029940 -0.473285 0.099675 -0.317965 0.147392 -0.181735 0.151018 0.609262 0.780065 -0.068114 0.581816 0.132211 0.081024 0.062176 0.187535 0.309027 0.455097 -0.052651 0.015776 0.154396 0.291914 -0.512121 0.217045 -0.641822 -0.972409 -0.433522 -0.677075 -0.358757 -0.602080 0.219461 0.129638 0.319419 -0.474353 -0.296567 0.231000 -0.207644 0.657884 0.005963 0.274767 0.302301 0.703464 -0.408911 -0.089583 0.462744 0.390665 -0.463596 -0.190555 -0.408415 0.494100 -0.318914 0.187442 0.530321 -0.176170 0.024752 -0.131805 0.442067 -0.661660 0.599815 0.413625 -0.111701 0.469397 -0.106205 0.662546 0.569911 -0.198385 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isEulerian() = -1.798213 -5.940476 6.072799 5.854220 1.444427 3.920860 1.688515 -2.493857 3.935011 4.811578 -2.551060 3.485189 -3.404603 -1.333738 1.613796 2.234408 -2.309646 -4.292765 1.247390 -0.484513 -0.003976 -3.964657 -1.265902 3.580458 1.464368 1.736447 -1.666129 0.207132 -6.223292 -7.393541 0.826198 -0.868199 3.131075 2.126141 1.761623 -6.708616 4.650751 5.537530 -0.373332 -7.777058 -0.013211 -1.375304 -1.542646 0.871971 0.654465 3.371152 2.187273 1.213362 -0.204251 2.407384 0.767473 -1.560148 2.793354 4.289516 0.688451 5.492258 5.356938 -0.303334 1.596782 0.814284 1.910545 -0.543487 3.750124 4.053990 -2.022576 -1.064748 -0.403893 0.067220 -5.100542 2.119376 1.003815 -2.700309 -2.727882 -1.429323 -1.537020 -0.110180 -1.716202 2.044695 7.441100 -1.727253 7.890156 3.534434 4.680507 -1.529105 3.794677 -0.901311 4.586447 2.533868 -4.266180 -0.678371 -5.152970 -4.520428 0.104867 1.597302 -3.320747 2.622358 2.203255 -3.166068 -5.582727 3.286332 -0.288481 -0.801558 -4.353067 0.831730 3.671511 2.601160 -0.860903 -4.902791 -3.371434 2.704297 -3.536274 -3.194798 -1.949798 0.630392 -1.722665 1.227440 -4.215584 -1.382219 4.232200 -3.711100 -1.906850 3.819511 -2.024078 2.875786 -1.552616 -0.318496 0.154320 1.791272 2.327634 2.123773 4.107238 -2.916608 -6.347229 2.668269 1.069594 0.778195 -1.749857 -0.252536 2.058467 2.232758 1.067602 3.206824 -2.060446 3.711930 4.108502 -0.240612 -2.996700 -4.862845 -0.510945 -3.564601 2.105174 -3.457583 0.030106 1.274722 4.314604 0.238443 1.104846 4.611591 -5.470445 3.456972 -0.634126 2.244862 0.330969 0.742989 1.378776 -2.579383 -3.711583 3.294536 4.970850 0.154953 1.793109 -2.381445 0.362162 -2.145925 -4.637658 3.449250 -0.241566 0.652422 4.611967 2.029528 8.125993 -3.393600 -0.040798 -0.134418 -0.104175 0.507719 -0.801634 -5.862101 2.602962 0.134506 3.419273 6.080390 -0.431510 -2.570347 0.887801 0.334155 -0.088080 -3.195245 5.026246 -4.276942 -0.416237 -0.957858 -0.550391 -2.351562 -3.010480 -2.392418 1.491757 6.504316 -0.022497 -6.250765 3.043323 -3.872003 1.463283 -7.115279 3.701006 -3.128283 2.135474 -1.525071 -1.615201 -1.319546 0.244185 -0.308515 -0.928089 2.915136 -3.148447 3.524342 4.275077 0.604741 -0.052739 2.119420 1.070789 -0.829494 -0.687985 -2.683099 2.955715 -0.208943 0.059164 -1.408263 -2.428968 3.937957 -0.159775 -2.537632 1.364551 4.253134 -1.715034 0.628036 2.880219 -0.061630 -3.293228 2.600829 1.164034 3.893448 -2.099330 -0.955932 -2.111724 -0.497856 0.306271 2.883861 -5.526167 -3.437829 -1.846681 -5.818802 -3.075871 0.797940 3.413409 1.215837 0.761165 -6.035153 -3.461273 3.097987 -0.985067 3.037311 2.705707 3.415966 4.064170 2.609130 -0.068387 -2.010324 -2.252213 -0.529532 -3.687992 -2.027036 -0.603326 2.325189 -2.190975 3.983644 2.830342 0.175223 1.155576 -2.302158 3.859840 -3.029879 6.240250 3.678957 -3.308629 0.655524 1.056339 5.160604 -4.712006 -3.810763 -PE-benchmarks/eulerian-path-and-circuit.cpp__test(Graph&) = -0.943005 -2.338810 2.690329 2.433391 0.574525 1.694010 0.441366 -1.182085 2.041065 1.288613 -1.415032 1.085833 -1.736870 -0.639245 0.767423 0.554245 -1.490519 -2.160592 0.633815 -0.254447 0.119337 -1.915352 -0.456652 1.513116 0.517011 1.231625 -0.680682 0.589083 -2.905528 -2.512415 0.909682 -0.518212 1.392548 1.881684 0.835904 -2.788794 2.149278 2.308406 -0.171041 -3.320762 -0.024016 -1.146411 -0.574039 -0.079505 0.621490 1.692048 1.029490 0.987373 0.111326 0.691787 -0.124808 -0.996104 0.279270 1.135984 0.026704 2.228026 2.054001 -0.266749 0.414466 0.394336 0.673058 -0.246418 1.855943 2.021334 -1.684583 -0.609870 0.245237 -0.376954 -2.437330 1.171277 0.603439 -0.822701 -1.100594 -0.630156 -0.924047 -0.076699 0.363594 1.057596 3.363257 -0.647169 3.334956 1.398945 2.323849 -0.684167 1.845653 -0.388936 2.496818 0.998028 -2.045307 -0.486690 -3.331971 -2.310115 -0.103521 0.673745 -1.073972 1.490093 0.547135 -2.199626 -2.393838 0.957375 -0.239251 -0.234008 -2.296001 0.837050 2.038107 1.172236 -0.092334 -2.118469 -0.941021 1.141618 -2.116588 -1.169176 -0.850684 0.368408 -1.066763 -0.055884 -2.041281 -0.717430 1.635271 -1.561343 -0.519703 1.888737 -1.379893 1.020068 -0.607413 -0.201092 -0.081728 1.027908 0.696918 0.474989 1.959611 -1.717813 -2.331684 0.924863 0.324671 1.116727 -0.977478 -0.322605 0.893893 0.758224 -0.254682 0.586411 -1.205179 1.427813 1.736832 -0.529284 -1.251266 -1.982469 -0.339595 -1.960764 0.866920 -1.514280 -0.056665 0.458181 2.067458 0.639632 0.794905 2.637991 -2.457324 1.516323 -0.430300 0.956565 0.409791 0.674229 0.843584 -1.239985 -1.426612 1.485235 1.662850 -0.035871 0.904497 -1.202677 0.067336 -1.470195 -2.375527 1.762282 0.010427 0.849250 2.093650 0.949392 2.430125 -1.932897 0.261467 0.264517 0.141139 0.134919 0.011658 -2.420393 1.333158 0.137578 1.722024 2.728140 -0.126095 -1.352979 -0.106527 0.560956 0.152107 -1.641827 1.676224 -1.903182 0.232468 -0.676151 -0.047661 -1.233341 -1.674668 -1.144982 0.389453 2.734858 0.626714 -3.312380 1.557480 -1.636109 1.521274 -3.509508 0.228178 -1.675011 1.512281 -0.646936 -0.346415 -0.504800 -0.631768 -0.234071 -0.228137 1.198844 -1.076584 1.711588 1.494108 0.586107 0.160131 0.943902 0.539718 -0.259039 -0.268926 -1.135041 1.100079 -0.146177 0.118547 -0.251401 -1.130499 1.665973 0.174764 -1.028914 0.866552 2.239792 -0.286594 0.920765 1.258322 0.012918 -1.486791 0.804225 0.483278 1.664957 -0.733984 -0.661140 -0.887135 -0.034147 0.105531 1.124729 -2.564318 -2.375107 -0.641367 -3.297506 -1.219859 -0.008049 1.269736 0.917918 0.684752 -2.632492 -1.092779 1.027447 -0.369157 3.134876 0.856676 1.369851 1.677620 1.362665 -0.718053 -1.245474 -0.286864 0.063655 -1.969955 -0.709326 -1.083366 1.454993 -0.854816 1.820313 1.647117 -0.398816 0.259323 -1.433799 2.205983 -1.367286 2.814158 1.715420 -1.739195 0.397177 -0.051879 2.501956 -1.187355 -1.707828 -PE-benchmarks/eulerian-path-and-circuit.cpp__main = -1.497849 -15.785769 26.617273 20.690142 1.344093 11.881013 6.836421 -13.414487 16.785595 11.036331 -8.506256 0.052359 -15.291834 -3.613558 2.169141 8.800004 -18.585829 -15.074059 0.026802 -5.682275 -4.368695 -16.267059 5.911729 6.395226 7.839050 13.341556 -8.175630 -0.009916 -9.903085 -20.220242 16.617186 -4.290639 11.080560 18.727209 1.446777 -35.314227 23.497545 14.304109 -4.752090 -16.464824 1.904569 -0.788144 -7.053487 -0.285230 -3.791513 9.110681 4.193522 15.457475 4.690216 8.857735 5.042622 -9.984245 9.415606 24.689159 -0.809548 17.579963 14.335131 1.592102 3.828501 8.102082 5.828734 2.644293 10.620753 18.061962 -2.517822 -1.986887 3.633650 -9.806536 -21.436779 15.974864 -1.746578 -6.423122 -9.040389 -5.924543 -5.926702 0.689180 -10.852415 14.844982 28.904701 -13.783293 23.204579 9.818620 14.422946 -5.243009 3.839898 -2.591254 13.713032 8.863911 -12.276563 -2.085853 -17.158718 -18.390780 2.894797 -5.737931 -11.426717 -12.212243 8.486050 -17.365843 -19.409786 9.275412 2.396637 -2.177374 -12.157258 -0.941387 14.203800 2.339356 -6.337146 -17.126104 -8.717598 6.956839 -13.862670 -3.531926 -5.399242 7.175335 -7.245913 2.265386 -19.345841 -4.084925 5.902428 -13.478020 -1.024884 15.775537 -6.787894 7.253523 -3.205723 0.211126 -3.740442 13.047752 4.723432 8.375314 11.502426 1.862229 -8.159582 5.824427 8.802699 8.898149 -0.934917 -5.606173 2.840491 7.806223 -7.870315 7.866877 -6.683174 4.579688 15.460270 -4.195439 -15.661167 -10.479303 -7.539638 -27.217296 8.118948 -14.621065 -4.558242 11.357484 17.423586 9.846440 8.282553 18.707551 -23.656170 9.605845 -7.397254 4.800432 -0.945790 4.958573 7.026031 -8.851839 -14.045702 9.042927 10.492305 2.326169 7.530614 -13.107457 -1.630976 -13.799711 -14.975303 10.089610 1.352783 -2.518521 6.732238 9.369526 22.019610 -14.687552 3.153220 8.700093 0.600293 1.182982 3.098394 -23.016794 10.974252 -0.568274 7.752828 17.618623 -0.237573 -7.235352 3.883911 -3.781653 -0.284515 -12.923064 7.500110 -13.175998 -0.817579 -10.858964 4.662157 -8.673549 -9.211973 -4.580389 -0.388032 20.655224 -8.440592 -14.952291 19.732271 -5.868878 7.085650 -18.773168 15.550328 -10.827172 12.854148 -2.614050 -9.034234 -2.443878 -6.202595 0.516094 -2.545293 4.443678 -4.405074 9.730119 19.643305 4.874096 2.505464 5.721592 10.282862 -4.173124 2.159087 -9.907906 10.895638 -2.214993 -7.088714 -2.469081 -9.406778 8.584886 -7.200433 -4.395287 13.753008 16.953889 -0.239443 9.600156 6.763267 5.892978 -12.889877 6.735382 6.746325 12.589205 -8.432464 -4.233994 -0.569350 3.004624 -6.516012 10.118656 -20.665309 -21.484453 -19.659977 -20.422967 -14.041674 -2.822513 11.598878 -0.763198 2.668688 -15.697134 -11.107591 13.336324 -8.463405 8.573340 11.963590 11.768912 15.991902 18.599104 -7.369415 -4.975354 1.730127 4.093705 -11.724679 -2.431243 -14.008342 15.212293 -6.535037 11.017002 14.889216 -2.543720 3.956864 -8.383916 18.236387 -13.006295 22.526140 11.355459 -9.251081 7.259417 2.566962 17.854974 0.763278 -12.505911 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::Graph(int) = -0.095979 -2.267847 2.871178 1.668742 -0.457873 1.676422 1.325861 -1.355719 1.308269 0.659367 -0.858477 0.550904 -1.606519 -1.030043 0.173252 -0.236953 -2.060444 -1.519766 0.139369 -0.668738 -0.358266 -1.534393 -0.510638 1.677049 0.473040 1.010871 0.079684 -0.135427 -2.459574 -0.633033 1.197444 -0.126621 0.679388 2.309849 1.630806 -2.035246 1.498935 1.556992 -0.193315 -2.558463 -0.033952 -0.145055 -0.814214 0.534219 0.369921 0.556388 0.420222 1.918562 -0.297569 0.329314 0.147668 -1.358417 0.228806 2.444110 0.785962 1.999492 2.230763 -0.205122 1.218865 1.259539 0.726761 -0.277871 0.629516 1.454067 -0.238737 0.335689 0.547900 -1.183201 -1.380734 1.262023 0.544978 -1.607784 -0.365840 -1.337303 -1.441946 -0.213141 -2.750659 1.974262 3.084754 -1.584940 2.669416 1.127071 2.108289 -0.874479 2.153173 -0.174095 2.524667 0.810721 -1.453760 0.668404 -2.555292 -2.168911 0.113658 -0.445328 -1.104809 -0.236480 1.386814 -2.368034 -2.212793 1.802435 0.079351 -0.270351 -0.870022 0.395403 1.081694 0.369897 -1.492597 -1.979373 -1.453911 1.530042 -1.874640 -0.194909 0.129673 1.459899 -0.680228 -0.316249 -1.049916 -0.116349 1.803130 -1.138190 -0.513436 2.343131 -0.842499 1.498813 -0.385899 -0.567291 -0.042325 0.866259 0.628133 0.052305 0.975437 -0.725342 -1.542577 1.155413 0.158293 1.340636 0.407795 0.239158 1.575732 1.315169 0.146387 1.257263 -1.189025 1.186264 0.030065 -0.495734 -1.584399 -1.286546 -0.578610 -1.905091 0.297577 -1.248387 -1.072026 0.571968 1.835538 2.154456 -0.509946 0.957896 -1.507454 0.791524 -0.455455 0.371251 -0.709726 -0.036918 0.556266 -1.119017 -1.376509 0.238351 0.787280 0.453918 1.168296 -1.497879 -0.667313 -1.308698 -2.152850 0.670409 0.746882 -0.162878 1.513361 1.621516 0.909434 -1.875740 -0.270969 -0.058203 -0.078397 -0.202491 -0.402191 -2.082959 0.789955 0.174740 0.864806 1.702490 -0.223301 -0.065794 0.363358 -0.311991 0.257356 -1.245231 0.525258 -1.323600 -0.102697 -0.856490 0.794836 -1.176330 -1.158013 -1.165934 -0.685772 2.367730 -1.187357 -1.987191 2.152755 -0.819077 1.521450 -1.756593 0.972325 -0.804808 1.619240 -0.027215 -0.317000 -0.502706 0.193996 0.038368 0.504923 0.382608 -1.047864 1.097380 1.581149 0.196626 0.778798 0.910018 0.998492 -1.442644 -0.916858 -1.565437 1.420812 -0.229315 -0.913996 -0.139321 -1.052747 1.327816 -0.089551 -0.201941 1.000656 1.040354 0.053563 0.372845 0.763984 -0.833019 -1.196992 0.297533 0.833073 1.239485 -1.033632 -0.347122 -0.541320 -0.011795 0.154590 0.037242 -2.195318 -1.620386 -1.958178 -1.667918 -1.566025 -0.844904 1.066708 0.723960 0.335404 -1.829895 -1.099580 0.650770 -0.659007 -0.113656 1.323815 1.503194 2.031762 1.739120 0.078633 -0.016480 0.320542 0.788353 -1.752451 -0.416224 -1.136418 0.352538 -1.794573 1.756711 1.435500 0.893011 1.084276 -0.553660 2.232983 -1.911537 1.726873 1.809489 -1.804874 0.014147 1.607751 1.502291 -0.151153 -1.539419 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::~Graph() = -0.043418 -1.187605 2.458048 2.080119 0.073135 1.175191 -0.415112 -1.591647 1.528990 1.124546 -0.817160 0.576719 -0.922131 -0.091460 0.256163 1.219478 -1.637719 -1.060861 -0.193233 -0.743601 -0.271489 -1.255576 -0.194848 0.845211 0.557044 0.788088 -0.853761 1.044937 -0.875609 -2.655139 0.210514 -0.228541 0.669653 0.579397 0.788370 -1.828338 2.174605 1.590417 -0.247309 -1.983250 0.075290 -0.699262 -0.498502 0.107284 -0.160631 1.084921 0.093634 0.288011 0.447790 0.599725 0.337307 -0.010163 0.850098 1.209032 -0.031647 1.616387 1.033168 -0.084672 0.188000 0.590009 0.406293 0.397403 0.987699 1.109226 -0.390516 -0.936550 -0.023680 0.149261 -1.268829 1.243432 -0.411060 -1.273050 -0.937019 -0.880686 -1.159865 -0.120372 -1.094846 1.435923 2.121199 -1.045012 1.486013 0.768356 0.940613 -0.148776 1.374086 -0.511056 2.245868 0.721091 -0.928237 0.059819 -0.567811 -1.877209 0.616902 -0.269342 -1.078206 -0.354222 0.404291 -2.715842 -1.776269 0.871786 0.393987 -0.345788 -1.451656 -0.347051 1.354657 0.338982 -0.100949 -1.429084 -0.152009 1.059872 -0.703944 -0.842890 -0.569275 0.042947 -0.222535 0.711617 -1.842093 -0.171998 0.899983 -0.594009 -0.318312 1.422337 -0.256263 0.214924 -0.462296 0.145705 -0.148031 1.037549 -0.249805 1.121989 0.284006 0.228206 -0.933490 1.356980 0.237273 -1.120763 -0.390869 0.354543 0.223216 0.573933 -0.798899 1.028074 -1.381637 0.930353 1.305923 0.083398 -1.148255 -0.955772 -1.204375 -1.739186 0.585035 -1.004445 -0.999069 0.660655 1.424557 0.846276 0.709473 1.089286 -1.649407 0.196742 -0.356450 0.603441 0.692611 -0.401815 0.565068 -0.853999 -1.124816 1.238505 0.985959 0.013803 0.733808 -0.672451 0.003469 -0.803476 -1.007583 1.606522 0.334360 0.623079 1.525897 0.851633 1.928242 -0.665014 0.479658 0.427652 -0.095795 0.343500 -0.421435 -1.674825 0.645954 0.296405 1.694839 1.914994 -0.245052 -0.316338 -0.064145 0.174114 0.474695 -1.155289 0.746866 -1.330105 0.319064 -0.510209 -0.096534 -0.612837 -0.834577 -0.628446 -0.273305 1.772766 -1.025025 -1.671963 2.095387 -1.342952 1.014645 -1.772960 0.338911 -1.022056 1.455751 -0.199207 -0.081459 -0.206989 -0.972709 -0.631171 0.224112 0.852269 -0.579615 0.596086 0.993551 0.319181 0.168092 0.322085 0.585808 -0.549933 0.421184 -0.980339 1.369065 -0.082749 0.249341 -0.411921 -0.798515 0.452857 -0.399451 -0.321111 0.408430 1.040123 0.048231 0.256369 0.895159 0.342346 -1.033761 1.228991 0.058851 0.269065 -0.831081 -0.496504 -0.032342 0.023182 -0.101554 0.518414 -1.809193 -1.213617 -2.336685 -1.340801 -0.809158 -0.184341 0.823330 0.197010 -0.110031 -1.144494 -1.159198 2.092555 -0.410144 0.773762 0.612530 1.022666 1.083085 1.397168 -0.020676 -0.223233 -0.829747 -0.405816 -0.865994 -0.574483 -0.843070 1.458515 -0.382418 0.958984 1.463256 -0.217815 0.558201 -0.129812 0.434614 -0.907613 1.439091 0.958803 -0.776248 0.426360 0.664041 1.150831 -0.672274 -1.204822 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::~list() = -0.156841 -0.373990 0.605491 0.492285 -0.008479 0.257556 0.057895 -0.419974 0.675973 0.152770 -0.117451 0.036386 -0.480467 0.178459 -0.264086 0.301693 -0.445860 -0.462191 -0.080958 -0.321325 -0.275480 -0.491239 0.128752 0.052131 0.162067 0.104419 -0.274481 0.102934 -0.520161 -0.294780 0.368516 -0.217715 0.191694 0.016587 0.088622 -0.825867 0.464210 0.310798 -0.165362 -0.499170 0.021029 -0.407057 0.155385 -0.216825 0.023280 0.106142 0.030593 0.212402 0.393277 0.059536 0.235212 -0.004130 -0.091630 0.825784 -0.450350 0.392744 0.131117 0.049736 -0.107945 0.167087 0.132771 0.104358 0.297186 0.408253 -0.256212 -0.284533 -0.072140 -0.224455 -0.483488 0.466431 -0.140545 -0.045468 -0.450870 -0.159473 -0.405820 -0.203914 -0.729158 0.355682 0.799856 -0.450621 0.442653 0.166519 0.391895 0.046070 0.355192 -0.038229 0.628335 0.119479 -0.408329 0.042570 -0.244773 0.028870 0.008579 -0.046692 -0.143297 -0.439353 0.211300 -0.576930 -0.585116 0.213356 0.086901 0.119895 -0.368528 0.050466 0.326825 0.151385 -0.350336 -0.616034 -0.117501 0.155643 0.037309 -0.141237 0.150572 -0.235944 -0.094748 -0.276047 -0.556212 -0.235275 0.060743 -0.392349 -0.171285 0.528066 -0.239574 0.061983 0.004776 0.074905 -0.101635 0.566879 -0.013566 0.309716 -0.114132 0.054045 -0.685833 0.131195 0.162217 0.306094 -0.100189 0.161233 -0.089004 0.067607 -0.388631 -0.056329 -0.222900 0.132424 0.331242 -0.228471 -0.341392 -0.150799 -0.061527 -0.670798 0.169650 -0.408171 -0.161795 0.044125 0.439527 0.524808 0.349922 0.684088 -0.432808 0.220053 -0.144414 -0.009458 0.386495 0.087137 0.338399 -0.256095 -0.375248 0.236555 0.185305 0.025913 0.194163 -0.285289 -0.034002 -0.445226 -0.062849 0.232027 0.259426 -0.034556 0.439749 0.205289 0.243722 -0.639105 0.268875 0.282998 0.034496 0.141440 -0.065111 -0.568934 0.348320 0.109767 0.079150 0.222957 -0.082443 -0.209549 0.076209 -0.136457 0.302217 -0.419798 -0.031045 -0.349812 -0.138153 -0.418786 0.259045 -0.211152 -0.213471 -0.099740 -0.116221 0.519502 -0.351342 -0.287406 0.604397 -0.007890 0.390823 -0.474240 0.315739 -0.324658 0.535402 -0.199324 0.045340 -0.061471 0.179040 -0.059512 0.044953 0.280465 -0.144766 0.194551 0.499734 0.182905 0.189663 0.170869 0.467800 -0.042566 0.132955 -0.150748 0.446699 -0.005651 -0.176198 0.172020 -0.290161 0.118435 -0.086471 0.119504 0.538529 0.532280 0.098212 0.371655 0.285553 0.264459 -0.259255 0.204670 -0.071001 0.239471 -0.276172 -0.014479 0.004503 0.135824 -0.233964 0.123873 -0.549479 -0.715878 -0.471948 -0.357133 -0.071809 -0.120492 -0.012805 -0.012193 0.071118 -0.422657 -0.267720 0.401426 -0.276688 0.431809 0.098480 0.237926 0.371084 0.612820 -0.311722 -0.176998 0.068780 -0.031391 -0.163340 -0.011408 -0.397625 0.407618 -0.407886 0.212941 0.432140 -0.204004 0.023427 0.158135 0.345745 -0.302635 0.615752 0.320473 -0.142256 0.461041 0.382560 0.746402 0.250179 -0.318471 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::~_List_base() = -0.004984 -0.904429 1.973330 1.618572 -0.209072 0.603763 0.201538 -1.396566 1.469698 0.501547 -0.244918 0.271430 -1.067414 0.488523 -0.486438 1.034986 -1.397893 -0.927786 -0.419509 -0.986434 -0.616738 -1.082559 0.569320 0.242105 0.653518 0.607510 -0.892435 0.057362 -0.824527 -1.459718 1.015086 -0.373701 0.759491 0.163555 0.145670 -2.880176 1.563232 1.051976 -0.440097 -1.318876 0.269490 -0.591721 -0.094475 -0.397289 -0.419265 0.342477 -0.139827 0.589168 0.843475 0.414687 0.511497 0.365398 0.415681 2.246290 -0.841372 1.004545 0.478362 0.034207 -0.241665 0.338974 0.404962 0.505059 0.731533 0.951502 -0.147094 -0.937893 -0.188662 -0.496795 -1.438538 1.224606 -0.246542 -0.444955 -1.103665 -0.441297 -0.880993 -0.230217 -1.279965 1.149148 1.976621 -1.090304 1.077059 0.285918 0.444680 -0.158553 0.544861 -0.135835 1.418942 0.476229 -0.596500 -0.062665 -0.412990 -0.491859 0.343206 -0.130050 -0.718884 -1.504347 0.683830 -1.398315 -1.429776 0.530249 0.524041 -0.135414 -1.051187 -0.380059 0.721473 0.430740 -0.662059 -1.349062 -0.396235 0.443008 0.133453 -0.517730 -0.080199 -0.128172 -0.287966 -0.281088 -1.502187 -0.308063 0.142186 -0.775262 -0.333811 1.037325 -0.385804 0.049778 -0.130334 0.325126 -0.350303 1.245689 -0.140022 0.971628 0.138788 0.510257 -0.830206 0.336291 0.572875 0.573629 -0.193921 0.010122 -0.401967 0.374198 -0.848717 0.218615 -0.448187 0.390508 1.270912 -0.317601 -0.975391 -0.401049 -0.309743 -1.869107 0.375935 -1.095324 -0.482810 0.537327 1.082156 0.856399 0.847438 1.416873 -1.361921 0.589311 -0.224683 0.044440 0.859065 0.160209 0.651455 -0.591819 -1.145166 0.686178 0.398248 0.285697 0.296982 -0.434298 -0.056363 -0.932422 -0.496079 0.740311 0.538624 -0.145191 0.897491 0.651755 1.566058 -1.216267 0.509991 0.746406 -0.174877 0.275945 -0.078403 -1.552108 0.715128 0.174357 0.388486 1.114045 -0.228577 -0.516806 0.356741 -0.309873 0.431736 -0.930374 0.262212 -0.918251 -0.234711 -1.025338 0.250578 -0.371639 -0.454090 -0.359981 -0.230122 1.447151 -1.226574 -0.977316 1.808060 -0.424934 0.698542 -1.523116 1.248035 -0.706695 0.943467 -0.463656 -0.180742 -0.053289 -0.067572 -0.564000 0.137628 0.649070 -0.297578 0.357565 1.691953 0.385616 0.097281 0.139195 1.064569 -0.233334 0.693308 -0.613830 1.421500 -0.072988 -0.400393 0.019972 -0.618543 0.131848 -0.657704 0.190657 1.259910 1.017487 0.373369 0.766657 0.678646 0.900468 -0.736137 1.079955 -0.015319 0.404223 -0.614416 -0.090118 0.264435 0.485462 -0.616298 0.716886 -1.389978 -1.702533 -1.591611 -1.173756 -0.344450 -0.251842 0.495608 -0.318109 -0.108835 -1.054209 -1.007943 1.235430 -0.589159 0.864291 0.653187 0.626581 0.900936 1.441795 -0.652783 -0.024064 -0.108316 0.085418 -0.222950 -0.319386 -0.865069 1.108697 -0.726092 0.412926 1.307515 -0.380715 0.395448 -0.111046 0.970715 -0.774407 1.647716 0.650404 -0.390340 1.039321 0.797140 1.450560 0.420479 -0.817781 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_clear() = 0.519774 -2.398489 6.529442 5.200102 -0.176310 1.755511 1.064042 -4.937431 4.192507 2.448623 -0.566055 0.869050 -2.914074 1.413298 -2.027777 3.535988 -3.716084 -2.467614 -1.834369 -3.613644 -1.591665 -2.929154 2.124557 0.334889 2.407592 1.090071 -2.955908 -0.296764 -2.458998 -6.106283 2.763316 -0.565456 2.214701 -0.975051 -0.051338 -8.323586 5.387294 4.058273 -1.469809 -3.789794 1.356490 -1.074305 -1.414928 -0.120233 -1.105258 1.074037 -1.058242 1.463794 2.221446 1.830095 2.460996 2.177118 2.082622 7.062833 -2.472768 3.218931 1.491302 0.428512 -0.535446 1.704315 1.095372 2.106650 1.820875 2.506990 0.565472 -3.047376 -0.477649 -0.778595 -4.204150 3.649490 -0.862975 -2.540281 -2.875166 -1.256502 -2.457379 -0.122968 -3.537207 3.087226 5.493398 -2.842200 2.980775 0.701672 0.378307 -0.911129 0.970092 -0.650081 3.883403 1.545539 -0.816680 -0.971691 -1.018511 -1.603745 1.334591 0.004534 -2.999803 -4.792579 2.711268 -3.866867 -4.235858 1.390041 2.058473 -1.375185 -3.151350 -1.359673 1.538837 1.018828 -1.404576 -3.672024 -1.497110 1.796070 0.567545 -1.734280 -0.689015 -0.584159 -0.719032 0.142521 -4.374652 -0.249582 0.251501 -1.760515 -1.811046 2.608579 -0.687467 -0.270208 -0.491876 1.410893 -1.178086 2.619987 -0.862324 3.538142 0.838130 2.420505 -2.505464 1.211551 2.066227 0.633401 -0.515322 0.464950 -1.578986 1.314474 -2.330218 1.860099 -1.866885 1.223550 4.199488 -0.898593 -2.762632 -0.991558 -0.578242 -5.165596 1.025958 -3.024077 -2.183908 0.752942 3.096909 2.067209 2.412458 3.901770 -4.303493 1.561092 -0.157424 0.066643 2.240697 -0.701158 1.500076 -1.616629 -3.987186 1.836355 1.458891 0.852162 0.431310 -0.348855 -0.309770 -2.619074 -1.510424 2.018676 0.980780 -0.944680 2.612354 2.411371 6.111370 -3.538671 1.421072 2.321915 -1.280289 0.791727 -0.366565 -4.806973 1.531185 0.647228 1.915315 4.474466 -0.494605 -1.260802 1.297259 -1.102237 0.863159 -2.520676 1.423189 -2.844515 -1.015318 -2.649627 0.092213 -0.705608 -1.136810 -0.959932 -0.764469 4.188333 -3.634743 -3.395259 5.815201 -1.714699 0.555732 -4.878070 4.520926 -1.839651 1.595858 -1.058322 -0.337800 -0.233312 0.158865 -2.591595 0.583960 1.663053 -1.258070 1.723305 6.027404 0.935839 -0.129231 -0.330644 2.990630 -1.503762 2.394869 -2.531986 4.821576 -0.288177 -1.767518 -0.699566 -1.643143 0.056291 -2.787615 0.357448 3.238331 2.377950 0.753950 1.472026 1.971356 3.342816 -2.085318 4.656109 0.362958 0.544818 -1.565848 -0.322995 1.442570 0.812791 -1.809999 2.738783 -4.109711 -4.194013 -4.650979 -4.197750 -0.360523 -1.124906 2.073474 -1.369358 -0.870973 -3.482883 -3.853500 4.090871 -1.527286 1.566039 2.552962 1.986179 2.273990 4.023544 -1.575806 1.407879 -1.280842 0.350276 -0.377948 -2.415017 -1.481854 3.462681 -1.431325 0.891297 3.734526 -0.672415 1.974132 -0.687922 1.919208 -2.327454 4.820600 1.559716 -0.572998 2.963621 2.182619 4.512253 0.357732 -2.259564 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/eulerian-path-and-circuit.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.351616 -1.075508 1.912380 1.659036 0.305984 0.788265 0.483425 -1.350759 1.814974 1.205004 -0.103514 0.376660 -1.206879 0.540920 -0.504145 1.220381 -1.068831 -1.244437 -0.288781 -1.074939 -0.874827 -1.225376 0.384812 -0.043965 0.620208 -0.233546 -0.952840 -0.155338 -1.472003 -1.572047 0.899134 -0.457618 0.674147 -0.615272 0.061759 -3.087803 1.529991 1.107659 -0.551355 -1.545767 0.226318 -0.888916 0.099049 -0.092267 0.168619 0.305499 0.013699 0.561328 0.993967 0.537045 0.998280 0.427532 0.155831 2.945548 -1.206307 1.299592 0.568391 0.134739 -0.357099 0.747392 0.426305 0.382976 0.953065 1.064199 -0.357098 -0.921042 -0.139067 -0.371116 -1.487269 1.265320 -0.008696 -0.597058 -1.081076 -0.342430 -0.822960 -0.532346 -1.784740 0.877430 2.246270 -1.162118 1.341934 0.500429 0.948630 0.084560 1.007544 -0.203424 1.796781 0.417565 -0.985928 -0.228764 -0.789231 -0.163834 0.129050 0.168479 -0.610311 -1.566899 0.710526 -0.900405 -1.697879 0.801102 0.374106 0.136420 -1.532337 -0.259693 1.037114 0.469121 -0.917327 -1.742569 -0.939912 0.602973 -0.179151 -0.663420 0.274491 -1.043262 -0.298959 -0.414786 -1.573666 -0.500837 0.345758 -0.955561 -1.116225 1.422282 -0.586683 0.136607 -0.117275 0.402237 -0.394472 1.044646 -0.116110 1.151097 0.215317 0.227795 -2.326376 0.384554 0.609176 0.683520 -0.108371 0.325595 -0.521296 0.422485 -0.992795 0.591629 -0.530744 0.846788 1.419752 -0.413886 -1.038002 -0.555364 0.469751 -1.574189 0.621441 -1.161593 -0.483093 -0.249959 1.309103 0.979329 0.949575 1.551303 -1.355943 1.044598 -0.361372 0.215862 1.051304 -0.080771 0.834245 -0.742987 -1.236059 0.511613 0.967780 0.088514 0.340668 -0.614824 -0.043319 -1.097497 -0.570998 0.311645 0.498251 -0.368727 1.149036 0.701644 2.293151 -2.061118 0.647973 0.748388 -0.221536 0.422413 -0.319245 -1.731765 0.650346 0.400609 0.251359 1.322984 -0.196323 -0.969582 0.312719 -0.245873 0.577534 -0.930717 0.299509 -1.096112 -0.560023 -0.852299 0.304430 -0.673105 -0.532193 -0.420134 -0.194915 1.637318 -0.896430 -1.283301 1.822664 -0.689768 0.407348 -1.935456 1.784985 -0.869492 0.580376 -0.877005 -0.027441 -0.350015 1.089350 -0.606873 0.457332 0.815523 -0.738190 0.860649 2.070675 0.430436 0.602250 0.183461 1.218332 -0.198497 0.282874 -0.701534 1.697711 -0.223169 -0.488895 -0.064758 -0.770910 0.531253 -0.425873 0.220258 1.022821 1.248076 -0.112263 0.602703 1.033741 0.863232 -0.825829 1.144131 -0.040681 0.660261 -0.693832 0.025942 0.073181 -0.001994 -0.609055 0.777321 -1.626602 -1.421050 -1.015832 -1.281019 -0.063195 0.311523 0.187839 -0.164085 0.033984 -1.643040 -0.911891 1.140346 -0.699036 0.625819 0.713458 0.802688 1.045412 1.659797 -0.628683 -0.204458 -0.397999 -0.389877 -0.498486 -0.724544 -0.587580 1.188565 -0.925526 0.782056 1.007764 -0.224706 0.312639 0.142325 0.965790 -0.803902 1.870092 0.855774 -0.156211 1.065372 1.150586 2.514405 -0.114639 -0.889306 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.195939 -1.545373 3.052690 2.565653 -0.222743 1.190906 0.334229 -2.294599 2.559335 0.419196 -0.096315 0.555037 -1.807796 0.915758 -1.175914 1.308289 -2.225107 -1.830324 -0.908706 -1.864470 -1.379848 -1.708544 0.535658 0.546618 0.949754 0.164597 -1.600076 0.003295 -2.339877 -1.097186 1.851625 -0.512770 1.120690 -0.457766 0.344381 -5.159698 2.224571 1.682900 -0.775357 -2.251260 0.405028 -1.638737 0.057380 -0.924190 -0.607448 0.060731 -0.426337 0.918050 1.565697 0.224950 0.692256 1.056965 -0.248404 4.688773 -1.824297 1.848512 0.831476 0.219610 -0.596317 0.847207 0.582438 0.877087 1.327981 1.303707 -0.635425 -1.695891 -0.170813 -0.919600 -2.092742 2.077474 0.075046 -0.780633 -1.598580 -0.619537 -2.064658 -0.831315 -1.557968 1.893311 3.184564 -2.174021 1.676204 0.324637 1.122775 0.233795 1.585613 -0.232944 2.852497 0.630734 -1.077671 -0.195698 -1.718876 0.023791 0.293476 -0.392643 -1.176519 -3.044597 1.165553 -2.490805 -2.648010 0.964933 0.837849 -0.145180 -1.975981 -0.630637 1.390256 0.566784 -1.410374 -2.427624 -1.022115 1.229317 0.113501 -0.938835 0.454741 -0.957208 -0.135119 -1.310879 -2.566781 -0.316523 0.508385 -1.058662 -1.106134 2.317947 -1.219356 -0.080502 -0.198088 0.588792 -0.826979 2.000874 -0.555972 1.308707 -0.039816 0.392907 -2.182683 0.263087 0.682188 1.709923 -0.411118 0.154808 -0.777323 0.717219 -1.592132 0.362225 -0.689924 0.870861 1.261823 -0.694275 -1.577333 -0.788040 0.066616 -2.847332 0.419873 -1.718068 -1.177681 0.604550 1.924394 2.204836 1.416445 2.342357 -1.645768 1.435754 -0.291332 0.034613 1.788757 -0.125119 1.238705 -1.171572 -1.996886 0.994645 0.415064 0.620787 0.404480 -0.641477 -0.193718 -1.747228 -0.993526 0.418664 1.134504 -0.126331 1.894129 1.389352 2.072857 -3.236951 1.137402 1.120202 -0.648408 0.679411 -0.461642 -2.464914 0.820716 0.720631 0.017681 2.120662 -0.470442 -1.290649 0.446626 -0.254853 1.112693 -1.561930 0.135857 -1.580156 -0.767885 -1.783814 0.387532 -0.922448 -0.701311 -1.109620 -1.188045 2.606141 -2.413193 -2.059580 3.149967 -0.456979 1.406611 -2.976081 1.851027 -1.238606 1.817091 -0.833175 0.018997 -0.280575 0.781409 -1.369398 0.899447 1.206674 -1.235615 0.830483 2.984280 0.684742 0.884232 0.125495 1.978334 -0.407021 0.992307 -1.331773 2.645618 -0.292332 -1.169066 0.179615 -1.152430 0.356187 -0.880794 0.849215 1.976555 1.873846 0.957914 1.140427 1.745924 1.426653 -1.203225 1.361192 -0.336056 0.448162 -1.055942 -0.069171 0.391185 0.555625 -0.794637 0.910608 -2.567344 -3.023443 -2.648679 -2.099495 0.301449 -0.477242 0.113836 -0.360075 -0.270856 -2.426458 -1.572974 1.298652 -1.175777 1.791573 1.239297 1.212805 1.676046 2.735611 -1.478318 -0.011903 0.307326 0.008070 -0.435219 -0.681085 -1.827022 2.126966 -1.309741 1.062561 2.349287 -0.476391 0.911421 0.238857 1.549538 -1.282345 2.937442 1.147017 -0.937238 1.612231 1.758567 2.866396 0.882810 -1.442561 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.561600 -3.242904 6.218073 5.399274 0.035662 2.551137 1.057692 -4.893150 5.178705 1.498221 0.072411 1.266915 -3.852132 1.886549 -2.582325 2.902998 -3.946097 -3.838627 -2.065472 -3.961261 -2.726655 -3.487522 1.386696 0.985989 2.158824 -0.325053 -3.461258 -0.441919 -5.365421 -2.890806 3.629005 -0.844222 2.455680 -1.561210 0.253677 -10.354507 4.613142 3.970003 -1.629786 -4.632069 1.125030 -3.255305 -0.145214 -1.371871 -1.054023 0.152361 -1.140689 1.108961 3.223813 0.700486 2.083466 2.590998 -0.326213 9.467332 -3.907151 4.018507 1.623625 0.631298 -1.296386 1.942406 1.152139 2.073108 2.877571 2.566919 -1.150131 -3.541560 -0.422538 -1.505640 -4.553551 4.202043 -0.061490 -1.949890 -3.107316 -1.130898 -4.097174 -1.645101 -2.392995 3.454433 6.410218 -4.181463 3.528606 0.530720 1.876628 0.139384 3.141388 -0.627805 5.491846 1.296032 -1.949336 -0.784711 -3.440409 0.298657 0.450110 0.032721 -2.703142 -5.729524 2.756588 -4.547739 -5.562900 1.904886 1.772484 -0.515791 -4.614154 -1.208108 2.556748 1.255987 -2.819508 -5.099968 -2.479330 2.743796 0.518500 -2.214168 0.689630 -2.395046 -0.430824 -2.527973 -5.146296 -0.664676 0.994052 -2.295549 -2.971015 4.629022 -2.554082 -0.161917 -0.435320 1.478987 -1.769250 3.618506 -1.358213 3.017854 0.336314 0.864956 -5.009480 0.030791 1.456203 3.576706 -0.971311 0.479793 -1.908427 1.428248 -3.105070 1.240980 -1.435146 1.900888 3.085995 -1.384851 -3.120408 -1.380178 0.708409 -5.747336 0.841085 -3.538919 -2.190097 0.823243 3.940764 4.010443 2.854934 5.298399 -3.317564 3.012681 -0.251413 -0.194993 3.743609 -0.704306 2.442291 -2.424064 -4.506922 2.046107 1.150300 1.192305 0.677539 -0.784854 -0.534398 -3.535140 -2.257565 0.608548 1.939713 -0.513389 3.892394 2.891530 4.856365 -6.783236 2.433111 2.248665 -1.580640 1.625720 -1.177364 -5.304211 1.427355 1.517790 -0.009992 4.789733 -0.930145 -2.844893 1.152431 -0.662925 2.245876 -3.315265 0.840247 -3.513186 -1.544170 -3.658518 0.063514 -1.574656 -1.494409 -2.154528 -2.216606 5.374264 -4.361071 -4.531509 6.396487 -0.839149 2.188647 -6.612204 4.070203 -2.493860 3.206275 -1.874775 0.165662 -0.620872 2.302426 -2.983526 1.742933 2.499302 -2.884792 2.205808 6.708226 1.217885 1.645953 -0.001259 3.991835 -0.831327 2.057966 -2.972267 5.794457 -0.496589 -2.655515 0.176319 -2.407290 0.778947 -2.119059 1.452191 3.846856 3.902489 1.531902 1.948810 3.703036 3.254937 -2.431011 3.355477 -0.465424 0.935313 -1.964936 -0.066442 0.969720 0.939844 -1.573154 2.217230 -5.228701 -6.018643 -4.680274 -4.926396 1.069117 -0.782154 0.439184 -0.851946 -0.729112 -5.277280 -3.493696 2.418343 -2.412889 3.867083 2.682544 2.718402 3.309283 5.515051 -3.018499 0.474583 0.143879 -0.014968 -0.863243 -2.088873 -3.057020 4.207107 -2.406700 2.181293 4.515824 -0.670881 2.129566 0.412888 2.838820 -2.617663 6.167747 2.227047 -1.489994 3.663945 3.328853 6.169199 1.252068 -2.863034 -PE-benchmarks/eulerian-path-and-circuit.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::_M_node_count() const = -0.155743 -0.443782 0.714515 0.587298 -0.046633 0.304352 0.037372 -0.425290 0.570302 0.201000 -0.140344 0.149062 -0.417522 0.116794 -0.244518 0.281829 -0.413677 -0.409051 -0.133657 -0.370668 -0.280137 -0.376938 -0.038440 0.146577 0.190850 0.142550 -0.273607 0.089245 -0.561126 -0.408115 0.224968 -0.112600 0.201089 -0.049883 0.174305 -0.883098 0.466979 0.494077 -0.160117 -0.607576 0.045624 -0.359061 0.066266 -0.100264 -0.018646 0.138387 0.017161 0.146419 0.256599 0.115943 0.194538 0.092921 0.051651 0.904996 -0.250035 0.470932 0.310890 0.051093 -0.067926 0.163823 0.151428 0.083937 0.251495 0.244552 -0.162442 -0.324698 -0.120505 -0.159133 -0.380740 0.369681 -0.096870 -0.275105 -0.370883 -0.310255 -0.446855 -0.223216 -0.846147 0.354459 0.740000 -0.525203 0.472955 0.197988 0.333647 0.099887 0.417537 -0.044123 0.598924 0.170619 -0.291372 0.122700 -0.167931 -0.056132 0.079699 -0.039575 -0.345451 -0.536661 0.342931 -0.635525 -0.628653 0.318285 0.134414 -0.010303 -0.332380 -0.033612 0.218451 0.179300 -0.356247 -0.536863 -0.162735 0.272762 0.080994 -0.199313 0.075973 -0.138465 -0.028459 -0.169593 -0.587844 -0.033153 0.208840 -0.283755 -0.178274 0.559652 -0.124591 0.085153 -0.058233 0.075334 -0.130974 0.589795 0.002680 0.301284 -0.202057 0.118822 -0.691566 0.197725 0.156201 0.134360 -0.167204 0.132076 -0.003027 0.129469 -0.241594 0.134110 -0.294528 0.222428 0.373557 -0.141689 -0.342021 -0.295404 -0.176750 -0.616225 0.101961 -0.360784 -0.251807 0.099709 0.435616 0.543454 0.253199 0.600697 -0.397304 0.137148 -0.107306 -0.034637 0.300136 0.036377 0.291330 -0.281661 -0.412787 0.269592 0.228070 0.107439 0.216837 -0.186362 -0.003573 -0.365996 -0.065602 0.297605 0.261372 -0.051003 0.541035 0.353677 0.415474 -0.549105 0.160570 0.145031 -0.134707 0.132646 -0.098551 -0.569548 0.224310 0.159588 0.118920 0.416819 -0.085013 -0.098991 0.124012 -0.148566 0.234201 -0.387610 0.104378 -0.387986 -0.157221 -0.351456 0.211436 -0.262575 -0.168482 -0.223958 -0.243091 0.599682 -0.484066 -0.310246 0.567249 -0.009808 0.283077 -0.494307 0.364347 -0.298150 0.545570 -0.153323 0.002933 -0.047683 0.141227 -0.138657 0.079759 0.294529 -0.241511 0.136394 0.539067 0.144335 0.106707 0.121572 0.445503 -0.197261 0.165079 -0.275452 0.499304 -0.042533 -0.169337 0.083846 -0.260429 0.081396 -0.119607 0.097804 0.456301 0.389709 0.109030 0.174754 0.325153 0.229657 -0.276016 0.283438 -0.039735 0.227867 -0.324716 -0.052085 -0.009599 0.170629 -0.099002 0.068973 -0.610270 -0.574918 -0.610889 -0.358185 -0.041183 -0.069664 0.016530 -0.014766 -0.044729 -0.448386 -0.426781 0.546790 -0.272809 0.327020 0.177434 0.294228 0.440958 0.558295 -0.189019 -0.068878 0.002093 -0.043269 -0.124011 -0.081115 -0.312936 0.434134 -0.324309 0.191022 0.476626 -0.125405 0.209139 0.223461 0.296849 -0.336648 0.619681 0.281337 -0.259750 0.354822 0.531629 0.701730 0.021268 -0.345820 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_size() const = 0.016278 -0.440372 1.017543 0.950642 -0.302924 0.226932 -0.185365 -0.533364 0.414583 0.456928 -0.110321 0.353506 -0.253902 0.259481 0.247169 0.732452 -0.763715 -0.176973 -0.221380 -0.404047 -0.415879 -0.212518 0.041907 0.118586 0.326790 0.584982 -0.419284 0.128176 0.124407 -1.090950 0.070950 -0.137233 0.409899 0.255759 0.301109 -1.555963 0.726789 0.485227 -0.222902 -0.701286 0.090560 -0.037889 -0.002486 -0.067325 -0.410323 0.324741 0.000606 0.059121 0.243424 0.406547 0.137542 0.181736 0.704074 0.974686 0.067034 0.437769 0.446698 -0.186827 -0.111006 -0.100195 0.280657 0.145181 0.273374 0.186037 0.205923 -0.576533 -0.279999 -0.170893 -0.480396 0.412162 -0.100878 -0.436758 -0.490873 -0.559247 -0.195482 -0.187779 -1.081898 0.605567 0.798438 -0.626767 0.377312 0.214413 0.030318 0.130795 0.316287 -0.003849 0.578460 0.336567 -0.117589 0.364567 0.627102 -0.621690 0.435654 -0.020509 -0.477397 -0.839036 0.340700 -0.513006 -0.553620 0.566091 0.373354 -0.081805 -0.493807 -0.572648 0.245737 0.286760 -0.335974 -0.407631 -0.163583 0.126481 0.222015 -0.312868 -0.267270 0.138386 -0.097603 0.328736 -0.771855 0.128490 0.226172 -0.171739 0.040349 0.418339 0.248202 0.005965 -0.206095 0.140207 -0.233098 0.815435 0.011628 0.609642 -0.207225 0.464279 -0.173351 0.342035 0.330445 -0.352371 -0.067079 -0.284001 -0.173185 0.226285 -0.264449 0.409155 -0.134118 0.439615 0.995110 0.204217 -0.574403 -0.398933 -0.549020 -0.874391 0.170682 -0.487115 -0.118422 0.613902 0.456758 0.171260 0.335471 0.265361 -0.599561 0.065200 -0.249872 0.049635 0.360185 0.239236 0.244653 -0.266686 -0.351539 0.427150 0.329033 0.256865 0.295154 -0.230522 0.162023 -0.158569 -0.119436 0.675591 0.331852 -0.080249 0.355202 0.373312 1.399779 0.084593 -0.031195 0.200081 -0.168528 0.046021 -0.031887 -0.585518 0.141913 0.074235 0.172018 0.573882 -0.134598 -0.050126 0.191754 -0.161732 0.057109 -0.264821 0.298530 -0.345566 0.134094 -0.295020 0.061728 -0.300525 -0.052235 -0.224172 -0.080004 0.782801 -0.859320 -0.200335 0.716233 -0.389398 0.220745 -0.489024 0.844791 -0.276748 0.437016 -0.330829 -0.341630 0.025400 -0.315040 -0.291335 0.125395 0.347807 -0.011353 -0.324336 0.651666 0.161610 -0.168099 -0.033749 0.433887 -0.160648 0.489426 -0.231689 0.733052 -0.123768 0.280446 -0.196633 -0.168790 -0.092758 -0.334525 0.003927 0.288217 0.070460 0.122570 0.038567 0.201821 0.356029 -0.431464 0.584768 0.030605 0.260554 -0.433784 -0.093827 0.114319 0.472943 -0.154868 0.193850 -0.616641 -0.316540 -1.078619 -0.077661 -0.509542 0.503113 0.319693 -0.230405 -0.230155 -0.121139 -0.554633 1.155244 -0.230149 -0.022848 0.324318 0.241170 0.538674 0.559660 0.090969 -0.142173 -0.403429 -0.220586 0.092084 0.046562 -0.311336 0.557478 -0.237139 0.020988 0.589696 -0.160266 0.325937 0.111616 0.495392 -0.318956 0.629906 0.192410 -0.225320 0.321468 0.698127 0.402784 -0.245578 -0.400923 -PE-benchmarks/tug-of-war.cpp__TOWUtil(int*, int, bool*, int, bool*, int*, int, int, int) = -11.516017 -15.395514 12.714393 11.126468 5.513586 11.645497 5.274880 -2.844772 6.918802 12.980993 -2.858119 9.930606 -8.400398 -4.508206 0.069100 1.440953 -1.085520 -10.769804 2.502557 -2.858937 -1.883116 -8.384430 -8.991466 11.922739 1.204143 -5.479178 -5.330940 0.554083 -20.141072 -15.033793 -3.329263 -0.719142 6.552631 -10.455858 3.480512 -21.269027 8.665024 15.969036 0.013957 -17.171852 0.013455 -5.141108 -0.634048 6.762443 -3.575876 4.690261 5.475361 -3.617722 -1.386763 2.833549 4.214338 0.151054 5.070404 20.360914 2.536062 14.441964 13.781502 0.481350 1.337471 2.896539 3.568018 -3.693047 7.951812 5.266986 -5.208323 -0.870110 0.501777 3.205117 -9.045434 2.066495 3.196614 -9.218751 -1.204136 -2.602404 -10.623631 -5.622455 8.719540 0.319260 16.811473 -5.498639 18.902891 6.831120 12.044819 2.353726 13.154130 -1.509479 12.719252 4.224312 -10.154337 0.551354 -9.350021 -0.445181 -1.618169 11.311559 -8.848676 -0.806674 5.789388 -9.618173 -15.757890 10.634696 -3.374454 -1.322248 -12.425910 -3.157085 8.452043 5.531096 -6.522287 -13.339783 -12.081270 10.109846 -8.103644 -7.874008 -0.075175 -3.730895 0.375445 0.414461 -8.206440 -1.910462 11.707646 -8.520945 -9.885359 12.939198 -4.593978 10.693414 -2.209731 1.669431 -0.507319 1.362519 5.763621 3.353595 -0.660501 -8.679234 -18.885426 -3.024921 -2.492903 0.755616 -5.901592 -2.279646 5.426418 5.633827 5.825353 11.485446 -5.198997 10.507311 7.959204 1.084744 -3.559624 -12.111877 0.208591 -8.323695 1.681708 -6.531134 -7.107473 1.174526 9.592241 0.062372 -0.648027 10.970418 -4.502895 10.929503 -0.099286 0.352749 0.660803 -7.381437 2.925086 -6.802939 -11.031001 5.438358 12.303957 4.806181 2.804601 -5.099749 -0.502421 -2.266941 -9.732882 2.578756 0.756530 1.685639 13.560453 6.766413 26.442795 -13.528237 0.249390 -4.094707 -3.680333 3.654972 -5.971765 -13.053408 0.537371 4.566127 1.050608 17.769747 -1.538390 -8.576949 4.609039 1.238879 2.111667 -9.900952 13.560287 -10.650388 -0.276104 -2.336027 -6.340351 -8.681537 -4.844019 -10.941791 -2.911479 14.998709 -8.353082 -16.676602 5.600697 0.213493 3.313968 -20.371043 10.094043 -6.217239 10.551228 -4.418036 -2.841535 -1.726798 8.350397 0.263497 4.114600 6.971954 -12.491700 10.105517 10.072728 0.877175 4.395792 4.119471 3.779659 -1.474543 -5.569776 -9.483822 8.254104 -1.028785 -5.213993 -3.901377 -6.230002 10.625973 4.043094 -2.060294 -5.461994 9.359339 -7.833919 -3.783228 12.719382 -3.273218 -5.810332 4.259562 0.466228 10.972247 -6.223833 -1.217662 -9.212782 1.326505 4.630265 4.439360 -15.135381 -3.997096 -7.761029 -15.245366 -3.535134 7.774247 2.243229 5.785364 2.165669 -18.014950 -8.210893 12.367697 -3.422102 11.197362 7.550810 10.124816 12.018258 6.324604 3.193513 -4.757192 -4.604016 -3.660151 -9.849020 -5.422141 0.363138 3.672847 -6.553626 12.012802 3.141930 2.561305 5.248883 1.521841 -0.897933 -8.412482 15.862562 10.115223 -8.206917 0.785563 5.848445 15.830600 -14.780119 -8.756982 -PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -7.029824 -11.429342 10.696844 9.538889 2.931355 8.227182 3.139386 -4.246982 5.581038 8.101175 -3.349500 7.325610 -6.599316 -2.715032 -1.040882 1.315129 -3.016589 -7.810938 0.822103 -2.755667 -1.628197 -6.573903 -5.402517 8.952191 1.712561 -0.387835 -4.261638 1.032745 -14.900923 -11.608179 0.111327 -0.497620 5.376729 -2.323446 2.554756 -16.679009 6.980906 12.117326 -0.770692 -12.631310 0.477974 -4.323563 -2.556435 2.949865 -1.894433 3.741775 3.064438 -1.371072 -0.696068 1.734430 3.188770 -0.275999 4.419306 14.157916 0.791707 11.513381 10.714302 -0.124620 2.226192 2.222615 2.674575 -1.410793 6.817393 5.559454 -4.161373 -2.046090 0.447909 1.140076 -7.515139 3.174097 2.076315 -6.214375 -2.250521 -2.962444 -7.251077 -3.254738 2.937908 1.362682 13.612856 -3.914378 14.832361 5.757527 8.731599 -0.229904 9.586662 -1.184659 10.509538 3.684499 -7.407074 0.036479 -8.187495 -2.155985 -0.432551 8.397571 -7.182722 1.285668 5.128724 -9.026733 -12.093945 6.953769 -1.372320 -2.045598 -8.826837 -0.689828 5.542213 3.021559 -3.641270 -10.162442 -8.287733 7.251438 -6.148255 -5.970998 -1.960481 -1.143499 -0.337142 0.963512 -7.289282 -0.894883 8.387500 -6.119318 -6.402000 9.454221 -2.976495 6.443036 -2.074608 1.069429 -0.699718 1.783533 2.757853 2.852383 1.777425 -5.049233 -14.044278 -0.372129 0.368016 1.510805 -5.249012 -2.142687 3.940136 4.089276 3.179613 7.513638 -3.980581 8.294989 6.062620 -0.128252 -3.806870 -9.621050 -0.898555 -7.783144 1.518665 -5.308495 -4.926060 0.720702 7.747754 1.157732 0.850743 8.046300 -4.982330 8.123874 0.050367 0.840889 1.271516 -4.145342 2.845890 -5.349659 -8.503358 5.233138 8.264576 3.124314 2.632895 -3.293574 -0.774962 -2.907494 -8.400210 4.154466 0.423279 1.705591 10.615005 5.733659 20.601965 -10.582288 1.757382 -1.782175 -2.225071 2.183239 -3.160694 -10.090304 2.455092 2.837499 1.911898 13.683489 -0.756758 -5.705128 2.144531 0.790127 1.521727 -7.887645 10.155617 -7.884372 -0.347783 -2.694731 -3.621816 -5.387216 -4.740040 -7.227326 -1.418540 12.176482 -6.884563 -12.305230 6.170727 -1.106121 2.838913 -15.350969 7.088625 -5.282160 7.936637 -3.884589 -2.929607 -1.395647 4.396083 -1.173754 2.518999 5.261206 -9.341208 7.325884 8.281928 1.205607 3.383055 2.701416 3.212542 -1.688588 -2.575235 -7.211929 6.684870 0.297331 -3.686900 -2.950904 -4.883811 7.127023 1.587177 -1.636618 -0.997956 8.653064 -3.806894 -1.855968 8.872865 -0.761485 -4.889648 3.345711 0.934852 6.777431 -4.565873 -1.870309 -5.143870 0.369868 2.385999 3.898562 -11.648601 -5.349349 -5.638484 -11.247926 -2.963015 3.527750 3.283880 4.321587 1.153080 -13.831829 -6.786942 8.618824 -3.054476 7.841805 5.670953 7.663984 8.444045 5.480785 1.574905 -2.980096 -3.253241 -0.661139 -6.671235 -3.613640 -1.852847 4.527825 -4.166857 9.050972 4.047332 0.736778 4.430466 0.694576 3.111794 -6.457929 13.094993 6.981846 -7.193707 1.646734 3.847695 11.100978 -9.442481 -6.727879 -PE-benchmarks/tug-of-war.cpp__main = -1.236865 -2.924692 3.198342 2.811149 0.483239 1.829766 0.870552 -1.216897 1.738948 1.770390 -0.964493 1.835076 -1.904655 -0.199596 -0.533853 0.883051 -1.428703 -2.179079 0.148784 -0.717898 -0.574741 -1.756161 -0.705421 1.916034 0.807574 0.419142 -1.287934 -0.035564 -3.519871 -2.759365 0.523100 -0.424024 1.499651 -0.139952 0.556045 -4.603749 1.971816 2.831655 -0.400329 -3.378514 0.314618 -1.165475 -0.508720 0.112251 -0.457962 0.926734 0.820520 0.366021 0.193215 0.713357 0.591407 -0.012570 1.191823 3.972489 -0.147408 2.763951 2.673286 0.043948 0.427287 0.375260 0.897162 -0.207813 1.678695 1.619057 -0.855120 -0.882794 -0.281024 -0.260477 -2.112198 1.155094 0.388013 -0.986253 -1.169114 -0.709772 -1.813664 -0.684286 -0.449373 1.005554 3.868835 -1.529187 3.598169 1.392959 2.203808 -0.137600 2.041968 -0.118544 2.410705 1.105747 -1.792239 -0.041879 -2.058855 -0.686932 0.016357 1.318402 -1.699423 -0.797502 1.442165 -2.376980 -3.110040 1.722093 -0.044735 -0.414572 -1.806137 -0.153119 1.420982 1.078053 -1.202086 -2.625990 -1.782850 1.390784 -1.048279 -1.464518 -0.279332 -0.120989 -0.268694 -0.050390 -2.315523 -0.339914 1.800100 -1.783371 -1.104118 2.337569 -0.741388 1.510940 -0.542842 0.251183 -0.278511 1.164845 0.835361 0.986815 0.597075 -0.833940 -3.162516 0.332968 0.569586 0.890942 -1.319383 -0.304207 0.627060 1.038239 0.412975 1.343830 -0.844402 1.831707 1.675861 -0.382785 -1.454547 -2.393208 -0.340690 -2.336196 0.534211 -1.671536 -1.002857 0.547407 2.127176 0.592640 0.648717 2.475827 -1.727390 1.942876 -0.090097 0.296768 0.588815 -0.487945 0.910867 -1.348168 -2.219908 1.447357 1.947747 0.716461 0.722571 -0.934288 -0.002474 -1.159840 -1.832749 1.245153 0.500922 0.051958 2.594182 1.368685 4.299686 -2.507553 0.390279 0.011185 -0.465814 0.447851 -0.574808 -2.922249 1.085824 0.508279 0.604767 3.044678 -0.190097 -1.477920 0.854080 -0.070237 0.415675 -1.907503 2.100421 -2.013110 -0.349859 -1.096246 -0.207932 -1.238700 -1.163613 -1.591811 -0.294175 3.273505 -1.934433 -2.695166 1.716873 -0.351573 0.902412 -3.773962 2.175511 -1.454548 2.100396 -0.791358 -0.755273 -0.217874 0.737540 -0.490499 0.267332 1.489824 -1.906368 1.543874 2.331041 0.498722 0.589020 0.801480 1.209670 -0.390245 -0.161578 -1.564766 1.798158 -0.054331 -0.990327 -0.479555 -1.229016 1.549103 0.035541 -0.224810 0.692114 2.090665 -0.402328 0.311602 1.961568 0.391812 -1.501414 0.967791 0.113489 1.958971 -1.323665 -0.392037 -1.130439 0.352482 0.118314 1.233160 -3.050430 -2.119203 -1.930508 -2.749974 -0.875514 0.439799 0.923994 0.554484 0.207042 -3.344265 -1.861357 2.003034 -0.943316 1.791555 1.635253 1.724143 2.259287 1.697541 -0.105523 -0.792468 -0.569612 0.096693 -1.369437 -0.692671 -0.871588 1.282570 -1.365464 1.897168 1.631076 -0.130266 0.969746 -0.004795 1.423874 -1.641992 3.649674 1.842673 -1.920434 0.795740 1.283996 2.998139 -1.626462 -1.842116 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -2.007965 -4.387509 4.114749 4.092036 1.456780 3.006683 1.611812 -1.671101 2.311944 4.441379 -1.373210 2.534663 -2.875934 -1.031395 0.646117 1.467929 -0.999115 -2.890078 0.682429 -0.733033 -0.398029 -2.640706 -1.405189 2.829810 1.101426 0.039010 -1.285386 -0.224480 -4.960603 -5.189783 -0.255621 -0.413453 2.211251 0.541125 0.962498 -4.546768 2.849301 4.467552 -0.337114 -4.759966 0.117006 -1.212456 -0.834033 1.333945 0.346245 2.059210 1.585339 -0.098177 -0.025636 1.503689 1.695033 -0.875343 2.657078 3.868894 0.461481 4.315959 3.689130 -0.187716 1.241928 0.888769 1.161378 -0.635248 2.828408 2.294773 -1.304504 -0.755374 -0.301882 0.487041 -3.148161 1.281509 0.706119 -2.039289 -1.656927 -1.184679 -1.488860 -0.952368 -1.344662 0.732955 5.241222 -1.384063 5.699413 2.904113 3.005658 -0.762388 3.330501 -0.586411 3.547551 1.489152 -2.981803 0.125456 -2.900956 -2.201488 -0.037869 2.658433 -2.533516 0.836685 1.741841 -2.378518 -4.593125 2.792967 -0.519317 -0.573963 -3.231367 0.181103 2.122861 1.407266 -1.251038 -3.961189 -2.820917 2.027618 -2.327879 -2.437657 -1.175679 -0.456961 -0.682651 1.062130 -2.836351 -0.913705 2.880924 -2.904724 -2.212585 3.230531 -0.490709 2.656173 -0.826497 0.177943 0.061688 0.728161 1.519719 1.778544 1.751324 -1.708906 -5.422613 0.876193 0.788988 -0.312202 -1.364261 -0.158684 1.290673 1.574518 1.061825 3.343088 -1.183933 3.541116 2.961893 -0.096635 -1.698321 -3.477911 -0.098141 -2.441840 1.448209 -2.125552 -0.868239 -0.403368 3.030310 -0.311336 0.501224 2.795162 -2.491956 2.449146 -0.306867 1.019856 0.414938 -0.667004 1.209534 -1.955160 -2.972006 2.007903 4.125879 0.469264 1.205737 -1.379818 -0.011276 -1.098015 -2.976487 1.547692 -0.366792 -0.140915 3.879872 1.763399 7.832772 -2.890881 0.553474 -0.377379 -0.249611 0.799516 -0.909695 -4.297396 1.584883 0.460471 1.278735 4.629590 -0.275404 -1.999228 1.100145 -0.060640 0.168253 -2.775192 3.802062 -3.200071 -0.255933 -0.950413 -0.637768 -1.816308 -2.244216 -1.853740 0.994740 4.571797 -0.858861 -3.724498 2.042472 -1.205668 0.225244 -5.135972 3.575188 -2.079313 1.499598 -1.775023 -1.667248 -0.594868 1.861808 -0.030000 -0.233643 2.114355 -2.864604 2.872787 3.059120 0.359890 0.683807 1.413754 1.087240 -0.457577 -1.035406 -2.348890 2.582680 0.142008 -0.345312 -1.374358 -1.844837 2.988796 0.421986 -1.540017 0.079231 3.118931 -2.073371 -0.600049 2.487644 -0.118347 -2.060493 1.864413 0.772214 2.946613 -1.841765 -0.508085 -1.908933 -0.604301 0.377533 2.170511 -4.309531 -1.592902 -0.724695 -3.317688 -1.978564 1.923437 1.893276 1.535248 0.510220 -4.725094 -2.654151 2.976156 -1.092815 1.099987 1.963231 2.777100 3.136371 1.968301 1.088534 -1.294286 -1.995681 -0.561853 -2.556576 -1.717070 0.130355 1.484457 -1.578648 3.405426 1.211652 0.290213 1.191577 -0.656664 1.956099 -2.496449 4.551378 2.585424 -2.132329 0.867378 1.764910 4.420380 -4.291862 -2.513288 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycleUtil(bool (*) [5], int*, int) = -4.189340 -8.035355 7.793939 7.346665 2.675673 5.685968 2.294296 -3.139634 4.352590 7.313634 -2.595639 5.097285 -4.810264 -2.040387 0.473072 2.298372 -1.840960 -5.596769 1.231454 -1.413384 -0.884356 -4.695946 -2.984322 5.562498 1.737306 0.104790 -2.736473 0.388029 -9.582831 -9.697796 -0.423166 -0.693392 4.006626 0.021553 1.932434 -9.229084 5.527114 8.537043 -0.530049 -8.979277 0.112798 -2.259104 -1.851882 2.302830 -0.135676 3.557973 2.818787 -0.621238 -0.426164 2.540019 2.780939 -0.996481 4.285705 7.503468 1.230681 7.952003 6.870717 -0.290992 2.029031 1.449413 2.226444 -1.103644 5.210022 4.190041 -2.684949 -1.461131 -0.219517 1.098553 -5.826237 2.142236 1.450464 -4.302415 -2.191288 -2.129333 -3.199692 -1.717083 -0.283165 0.896099 9.657024 -2.324142 10.472198 4.989289 6.008678 -1.044805 6.278573 -1.113785 6.823304 2.965758 -5.499886 -0.229642 -5.407256 -3.229653 -0.116235 5.293373 -4.997073 1.965760 3.485896 -5.013475 -8.346127 5.072872 -0.850028 -1.206746 -6.351344 0.071826 4.231616 2.632870 -2.193292 -7.023920 -5.204248 4.166142 -4.521185 -4.590757 -2.138003 -0.788340 -1.019945 1.990491 -5.230731 -1.431119 5.705224 -4.954472 -3.995003 5.962867 -1.492470 4.591651 -1.850915 0.427876 -0.008296 1.104167 2.641475 2.780181 2.419467 -3.483368 -9.594333 1.249971 1.019468 -0.426047 -3.026906 -0.703819 2.559625 2.948944 2.136051 5.842068 -2.986175 6.131432 5.121564 0.086982 -3.217780 -6.589993 -0.441329 -4.712946 2.003429 -3.987723 -2.373060 0.003015 5.625061 -0.402950 0.830781 5.541736 -4.590872 5.240999 -0.382824 1.663851 0.747899 -2.024773 2.086024 -3.664504 -5.573567 4.070388 7.210120 1.191761 2.233147 -2.661868 -0.019158 -2.061028 -5.868586 3.133766 -0.444210 0.583300 7.069661 3.206155 14.291107 -5.719677 0.672181 -0.954168 -0.684392 1.430648 -1.826850 -7.623146 2.211749 1.068309 2.491495 9.265792 -0.412966 -4.039119 1.760141 0.393522 0.425449 -5.200969 7.360526 -5.815414 -0.183032 -1.330537 -1.834825 -3.560136 -3.668736 -4.245671 0.539670 8.489770 -2.676137 -7.992271 3.815960 -1.996395 1.182721 -9.986448 5.215582 -3.935397 3.881713 -2.755004 -2.464899 -1.146768 2.679252 -0.356826 0.159773 3.921643 -5.326906 5.220156 5.719389 0.643962 1.363196 2.328568 1.766662 -1.161815 -1.692732 -4.368968 4.691359 0.204121 -1.229577 -2.410719 -3.398165 5.214681 0.662573 -2.648240 -0.644055 5.835049 -3.476505 -1.110259 4.655412 -0.309231 -3.945062 3.156179 1.436642 5.122203 -3.197119 -1.119069 -3.452813 -0.515756 1.086414 3.698839 -7.966298 -3.328063 -2.322857 -7.208612 -3.102243 3.165218 3.251927 2.649908 0.824365 -8.620122 -4.935001 6.320388 -1.846422 4.381696 3.913723 5.332300 5.771023 3.449495 1.430214 -2.427062 -3.358683 -1.069605 -4.716929 -3.027323 -0.216134 2.921533 -2.648668 6.221239 2.598381 0.539696 2.409726 -1.229888 2.687548 -4.392135 8.692885 4.819144 -4.402348 1.206559 2.300897 8.249406 -7.822055 -4.804155 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycle(bool (*) [5]) = -1.705712 -4.311465 4.739797 4.338131 1.252803 2.911052 1.315671 -2.144907 3.440065 2.978015 -1.633408 2.384207 -3.031602 -0.616996 0.128902 1.523305 -2.110101 -3.664791 0.689150 -0.890088 -0.584384 -3.167727 -0.723792 2.457474 1.111306 1.015615 -1.715702 0.324221 -5.413851 -4.534374 1.501576 -0.790467 2.353026 1.237535 1.012104 -6.247581 3.493953 4.157105 -0.513125 -5.428828 0.096785 -1.807814 -0.914964 0.037497 0.613651 2.163213 1.432107 1.226665 0.407150 1.287523 0.869225 -0.676197 1.203651 4.356250 -0.475315 4.172233 3.617642 -0.089484 0.826691 0.876413 1.321088 -0.197299 3.070061 3.219968 -2.081516 -1.235870 -0.043067 -0.455879 -3.945593 2.021512 1.184358 -1.480245 -2.039556 -0.868320 -1.758211 -0.654732 -0.922116 1.413209 6.035380 -1.647558 5.817479 2.465520 4.008408 -0.843247 3.252101 -0.539002 4.207890 1.704161 -3.387162 -0.687175 -4.708406 -2.325048 -0.167116 1.757535 -2.223539 0.708758 1.601059 -2.701127 -4.512079 2.215619 -0.215196 -0.322947 -3.758306 0.681980 2.974341 1.716471 -1.034276 -4.111429 -2.593016 1.983462 -2.760622 -2.272985 -0.904087 -0.277330 -1.145566 -0.116299 -3.486676 -1.165693 2.759868 -2.848118 -1.797358 3.391035 -1.978404 1.867390 -0.999873 -0.001154 -0.286768 1.377312 1.334077 1.407202 2.507031 -2.245559 -5.476638 1.329738 1.019153 1.946678 -1.609385 -0.287568 0.929922 1.505441 0.076645 1.787605 -1.458003 2.778562 2.833845 -0.795036 -2.307868 -3.516577 0.104436 -3.159717 1.502144 -2.696254 -0.535277 0.276738 3.489326 0.817742 1.300008 4.023604 -3.767557 3.433040 -0.521767 1.336559 0.915472 0.309453 1.446239 -2.069383 -3.013977 2.330391 3.247290 0.320679 1.291155 -1.883461 0.057388 -2.121993 -3.583791 2.103886 0.110312 0.433208 3.728294 1.666981 6.320569 -4.113312 0.640479 0.382707 -0.090654 0.562261 -0.464291 -4.432805 2.234604 0.403942 1.789544 4.716312 -0.281433 -2.635940 0.594321 0.446594 0.466015 -2.838432 3.139591 -3.230718 -0.422580 -1.355678 -0.121770 -1.992206 -2.361950 -2.054774 0.430044 4.936934 -0.680985 -5.015741 2.749104 -2.074462 1.537341 -6.028554 2.404106 -2.540034 2.055010 -1.526852 -0.894401 -0.782397 0.818071 -0.621984 -0.136059 2.253439 -2.584548 2.877019 3.631320 0.805001 0.725560 1.413524 1.376870 -0.429341 -0.512625 -2.134379 2.650253 -0.163537 -0.656235 -0.725430 -2.020521 2.881529 0.040184 -1.257750 1.366148 3.814253 -0.799391 0.903494 2.414514 0.460259 -2.494232 1.541770 0.720163 2.778212 -1.617650 -0.647879 -1.556434 -0.296326 -0.122495 2.205419 -4.481013 -3.487221 -1.058631 -4.921280 -1.613703 0.705452 1.792382 1.177639 0.702804 -5.103743 -2.386029 2.362402 -1.097856 3.450719 2.049445 2.543662 3.094003 2.553602 -0.730201 -1.633848 -0.925776 -0.138882 -2.697859 -1.479891 -1.293936 2.282355 -1.808567 3.166177 2.459591 -0.335983 0.889521 -1.621542 3.279416 -2.324677 5.486435 2.867023 -2.617555 0.997589 0.877558 5.266499 -2.471846 -2.829316 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -0.684838 -1.502248 2.319535 1.933689 -0.309473 1.074166 0.074613 -1.315811 1.293937 -0.013446 -0.694007 0.809868 -1.289009 0.021503 -0.249619 0.229299 -1.860111 -1.314719 -0.404402 -0.876422 -0.450099 -1.201462 -0.307738 1.248639 0.426298 1.257994 -0.954538 0.678607 -2.015252 -1.348848 1.057014 -0.141883 1.062575 0.925577 0.589514 -3.871290 1.602610 1.823249 -0.409057 -2.153818 0.336114 -1.210744 -0.525801 -0.589215 -0.598722 0.685372 0.010601 0.549883 0.317959 -0.065169 -0.173018 0.180377 0.085545 2.410137 -0.449149 1.645727 1.688386 -0.130408 -0.010652 0.193221 0.345919 0.293973 1.120740 1.177026 -1.032215 -1.018400 0.221024 -0.654428 -1.557741 1.204295 0.453278 -0.740648 -0.793706 -0.786963 -1.636808 -0.389064 0.605755 1.107010 2.413906 -1.078323 2.026083 0.503618 1.138528 0.029660 1.501870 -0.062959 2.243506 0.629672 -0.903797 0.013640 -1.903871 -0.934686 0.306945 0.577165 -1.100114 -0.647035 0.711932 -2.504164 -1.880007 0.661200 0.260857 -0.594416 -1.511534 -0.119348 1.050395 0.497896 -0.396204 -1.588357 -0.791799 1.204939 -0.908789 -0.696408 -0.365070 0.410644 -0.279758 -0.574538 -1.887954 0.283300 0.994520 -0.533071 -0.365638 1.741121 -0.918077 0.240945 -0.315636 0.145612 -0.615807 1.307058 -0.184872 0.310367 0.306340 -0.504775 -1.200957 0.086904 0.346459 1.170366 -0.979240 -0.840632 0.214638 0.572754 -0.541232 0.214507 -0.757193 0.976363 1.084674 -0.425433 -0.931506 -1.475946 -0.824936 -2.279442 0.125640 -1.038062 -0.839880 0.895488 1.506107 1.141293 0.792554 1.753765 -1.258337 1.098521 -0.164485 0.007332 0.775677 0.127071 0.730598 -0.926032 -1.393692 1.124559 0.249264 0.812811 0.468693 -0.431462 -0.164644 -1.082029 -1.564567 1.293934 0.562327 0.704650 1.702285 1.380341 2.358087 -1.855468 0.660210 0.399598 -0.490689 0.176068 -0.070686 -1.534171 0.616766 0.599243 0.409535 2.290083 -0.194286 -0.876872 -0.070311 0.310802 0.511672 -1.445499 0.932779 -1.146227 0.189783 -1.130967 -0.142761 -0.874604 -0.963642 -1.220603 -0.797843 2.244048 -1.539411 -2.387785 1.867915 -0.428710 1.501229 -2.771942 0.421967 -1.062009 2.024221 -0.558666 -0.250684 -0.033831 -0.591549 -0.947193 0.669643 0.785279 -1.182187 0.618507 1.504647 0.675693 0.450632 0.122728 0.949358 -0.349598 0.457518 -1.331059 1.355087 -0.134039 -0.506812 -0.012514 -0.789490 0.586653 -0.116667 0.235173 0.973230 1.593375 0.730432 0.608518 1.434783 0.592069 -0.943547 0.482193 0.049068 0.632738 -0.693394 -0.573132 -0.243367 0.670665 0.045757 0.510950 -2.082133 -2.113490 -1.858212 -2.369895 -0.316141 -0.165264 0.576987 0.544296 0.084449 -2.167136 -1.085839 1.456197 -0.646860 2.584171 0.872803 0.947560 1.358933 1.553066 -0.725950 -0.425120 0.323936 0.476005 -0.834251 -0.153434 -1.673578 1.717662 -0.707680 1.093835 1.771984 -0.579981 0.927661 -0.329381 1.757732 -1.111142 2.476448 0.999790 -1.584175 0.590292 0.687957 1.547657 0.088881 -1.202299 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.006338 -2.461612 3.477586 3.051418 0.007451 1.345683 0.637004 -1.506477 1.937363 0.869198 -1.170567 1.530521 -1.887298 0.259743 -0.729632 1.326784 -2.231642 -2.100332 -0.001249 -0.639876 -0.505248 -1.614307 0.232694 1.373346 1.223798 1.602338 -1.264573 -0.078412 -2.778299 -2.257031 1.203322 -0.559771 1.444787 1.217905 0.607693 -3.726761 2.187843 2.400252 -0.524094 -3.270514 0.488217 -1.088389 -0.688799 -0.811714 -0.050356 1.068137 0.606457 1.592586 0.500806 0.946443 -0.095258 0.051647 1.060322 2.997339 -0.345585 2.257013 2.278523 0.159053 0.427034 0.122875 0.976538 0.191900 1.378934 1.671009 -0.670907 -1.314913 -0.622952 -0.855796 -2.026760 1.500874 0.395188 -0.365544 -1.778113 -0.662523 -1.407859 -0.092133 -1.781855 1.778240 3.691833 -1.777678 2.885084 1.147038 1.844348 -0.544863 1.327530 -0.061844 1.916093 1.263575 -1.332549 -0.324907 -2.466721 -1.346474 0.268093 -0.223269 -1.573355 -1.571432 1.358687 -2.514785 -2.718496 1.154417 0.448982 -0.589396 -0.919174 0.286758 1.321326 1.184645 -0.900631 -2.116843 -0.751496 0.825041 -0.601472 -1.251719 -0.317316 0.518871 -0.524253 -0.215209 -2.631726 -0.235960 1.257370 -1.555944 -0.020611 1.841558 -0.647283 0.877727 -0.642547 0.015413 -0.325819 1.737004 0.742999 1.019752 1.131018 -0.244818 -1.688906 1.389869 1.126380 1.191518 -1.268092 0.061493 0.238043 0.973046 -0.189973 0.419452 -0.898502 1.163870 1.320825 -0.853593 -1.863130 -2.050863 -0.727322 -2.295252 0.675105 -1.734044 -0.638673 0.844630 2.083732 0.939027 1.105749 2.487619 -2.339157 1.342023 -0.085999 0.693658 0.776942 0.564925 0.927434 -1.189459 -1.938056 1.646238 1.267094 0.411524 0.644836 -0.729214 0.241477 -1.581530 -1.476946 1.609325 0.678641 -0.142740 2.258768 1.199436 2.037371 -1.681993 0.227808 0.612963 -0.358483 0.173055 -0.031227 -2.909127 1.603936 0.097577 1.323672 2.462927 -0.160218 -1.089023 0.892024 -0.098445 0.306355 -1.576942 1.295131 -1.834195 -0.559004 -1.355109 0.801372 -0.797923 -1.128167 -1.166622 -0.229240 3.094481 -1.485533 -2.127791 1.806668 -0.864342 1.143345 -3.084473 1.518044 -1.471475 1.660445 -0.109268 -0.530914 0.008924 -0.557071 -0.943084 -0.431450 1.426099 -1.030614 1.039569 2.097527 0.645046 -0.087478 0.775156 1.265282 -0.561803 0.637806 -1.204708 1.640351 -0.181883 -0.733972 -0.142972 -1.033218 0.884361 -0.622913 -0.236941 1.952558 1.650523 0.690844 1.233060 1.027621 1.107427 -1.703959 1.063721 0.104467 1.528497 -1.246858 -0.457710 -0.537400 0.365254 -0.402459 1.448366 -2.794522 -2.963546 -2.079581 -2.599497 -0.841920 -0.737096 1.259767 -0.104892 -0.039114 -2.623546 -1.949733 1.415476 -0.839601 1.605990 1.668408 1.213436 1.940555 1.736187 -0.863421 -0.479574 -0.109833 0.631482 -0.832284 -0.498212 -1.364751 1.556310 -1.177882 1.142847 2.487338 -0.588941 0.814648 -1.008240 2.342313 -1.430485 3.422548 1.556053 -2.014399 0.885928 1.106159 2.559705 -0.358622 -1.826429 -PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.976014 -0.931270 1.009113 0.830547 0.420009 0.609852 0.586880 -0.468395 1.012128 1.046002 0.023285 0.343935 -0.819909 0.046959 -0.068260 0.486487 -0.248227 -0.884097 0.067933 -0.569611 -0.449697 -0.778581 -0.136807 0.136316 0.190312 -0.711440 -0.506900 -0.319548 -1.278454 -0.936241 0.364526 -0.291029 0.535375 -0.862275 -0.093378 -2.602595 0.677018 0.785269 -0.303197 -1.105250 0.130073 -0.654223 0.327795 0.244860 -0.081597 0.103019 0.300870 -0.203044 0.408574 0.259887 0.763869 0.093221 0.024094 2.248451 -0.647009 0.903029 0.541337 -0.038627 -0.353252 0.484797 0.253284 -0.114744 0.816820 0.598762 -0.432725 -0.309582 0.014916 -0.143950 -1.130269 0.462851 0.021377 -0.469254 -0.360042 -0.152869 -0.605018 -0.644299 -0.430808 0.217937 1.430843 -0.676733 1.251897 0.382960 0.790953 0.248809 0.844484 -0.019942 1.052085 0.152167 -0.807070 -0.094696 -0.443260 0.133318 -0.124343 0.734485 -0.256613 -0.579930 0.518845 -0.090841 -1.115926 0.735581 -0.068458 0.254322 -1.476729 -0.323457 0.635681 0.566898 -0.801764 -1.277359 -1.155590 0.524322 -0.308357 -0.464540 0.226646 -0.872622 -0.249857 -0.545613 -0.799664 -0.384044 0.486823 -0.778138 -1.137658 1.076810 -0.658681 0.457824 0.009524 0.332539 -0.250563 0.575207 0.125495 0.516477 0.107518 -0.371744 -2.219969 -0.405816 0.152143 0.854548 -0.049187 0.016611 -0.162858 0.235993 -0.272107 0.515589 -0.072887 0.793085 1.161660 -0.092892 -0.436887 -0.561535 0.643866 -0.967439 0.306001 -0.721951 -0.022023 0.022222 0.812615 0.432996 0.360484 1.283061 -0.665812 1.002443 -0.297793 -0.180402 0.498202 -0.242647 0.567367 -0.507340 -0.808569 0.134029 0.942100 0.221191 0.248644 -0.475827 -0.078710 -0.562609 -0.607182 -0.059711 0.311516 -0.166775 0.726182 0.454701 2.130481 -1.711865 0.318041 0.130537 -0.154140 0.328154 -0.372903 -1.076560 0.204147 0.387140 -0.423407 0.894837 -0.109134 -0.927075 0.225248 -0.207955 0.296671 -0.629584 0.484628 -0.757449 -0.290929 -0.400226 -0.338466 -0.666511 -0.438273 -0.479822 -0.111546 1.083920 -0.439066 -1.071576 0.793754 -0.209547 0.177449 -1.653428 1.509596 -0.552013 0.545196 -0.940015 -0.129625 -0.379266 1.335769 -0.031499 0.391378 0.524000 -0.747621 0.731115 1.505539 0.253856 0.588241 0.199999 0.766029 0.067007 -0.225878 -0.463510 0.965194 -0.206537 -0.373096 -0.015011 -0.530702 0.736945 0.161786 0.105993 0.282609 1.005791 -0.553188 0.184758 1.081680 0.196094 -0.398062 0.528541 0.011022 0.933488 -0.350158 0.106928 -0.358091 0.155022 -0.121610 0.368011 -1.067641 -0.687640 -0.316807 -1.001293 -0.006075 0.789454 -0.108739 0.161755 0.245147 -1.418540 -0.387089 0.595236 -0.499506 0.728832 0.368544 0.665403 0.841897 0.940090 -0.226631 -0.451235 -0.204822 -0.409080 -0.586988 -0.473056 -0.141524 0.443467 -0.801914 0.790745 0.223139 0.081982 0.124715 0.471539 0.403886 -0.562580 1.344470 0.669677 -0.122062 0.677903 0.753580 1.770901 -0.631237 -0.515422 -PE-benchmarks/quicksort-for-linked-list.cpp__lastNode(Node*) = -0.422666 -0.766830 1.959271 1.468732 0.393816 0.644146 0.038854 -0.986303 1.198419 1.050222 -0.617159 0.545331 -0.560529 -0.143164 0.630949 0.953191 -0.881973 -0.959384 0.113266 -0.608944 -0.088777 -0.858337 0.023159 0.269175 0.487291 0.526579 -0.843480 0.438809 -0.759126 -2.647182 0.314978 -0.286560 0.677690 0.142653 0.384177 -2.204984 1.808944 1.152340 -0.199593 -1.335405 0.124926 -0.175119 -0.328847 0.170146 0.296834 1.101242 0.493090 -0.030842 0.295616 0.652698 0.612522 -0.124902 0.448883 0.771165 -0.228865 0.962539 0.698602 -0.336454 0.033242 0.264474 0.303405 0.002665 0.778132 1.067386 -0.520360 -0.613849 0.142785 0.068742 -1.316471 0.717910 0.079368 -0.855841 -0.664855 -0.480833 -0.429967 -0.007662 0.164322 0.548982 1.705258 -0.246059 1.374594 0.582362 1.062352 -0.296810 0.619815 -0.308799 1.465459 0.521296 -0.968409 -0.201239 -0.736315 -1.502669 0.219647 0.916108 -0.492293 0.844560 0.268744 -0.952318 -1.015236 0.484646 0.218901 -0.034588 -1.859414 -0.099336 1.067605 0.530251 0.239959 -1.018263 -0.509299 0.313108 -0.854200 -0.538767 -0.646609 -0.263749 -0.588513 0.460242 -1.210932 -0.272397 0.505324 -0.561523 -0.728603 0.651972 -0.741619 0.173417 -0.375184 0.258999 -0.206194 0.372260 0.173674 0.772762 0.746379 -0.489391 -1.438733 0.314458 0.275184 0.267361 -0.323207 -0.175373 -0.097060 0.230917 -0.545904 0.593217 -0.680233 0.901487 1.911490 -0.062324 -0.839528 -0.670602 -0.273184 -1.328456 0.685061 -0.736799 -0.101267 0.143213 0.868410 0.037512 0.610992 1.359761 -1.481130 0.763303 -0.333353 0.376682 0.489933 -0.123863 0.407619 -0.553763 -0.789116 0.731444 0.910043 -0.110380 0.593950 -0.588520 0.150971 -0.741318 -1.030337 1.212962 -0.058135 0.469052 0.661076 0.367966 2.579103 -0.853367 0.044184 0.385718 0.116722 -0.005305 0.082923 -1.071265 0.600192 0.083207 1.093545 1.549406 0.030769 -0.661967 -0.080771 0.247142 0.114013 -0.613425 0.873614 -0.836459 0.448728 -0.087169 -0.508002 -0.639424 -0.519062 -0.301647 0.290455 1.236565 0.304393 -2.021187 1.268751 -1.223818 0.585662 -1.896461 0.485028 -0.764016 0.618022 -0.676917 0.034598 -0.261754 -0.372843 -0.276556 0.271387 0.463145 -0.207130 0.611859 1.271076 0.276219 -0.049210 0.167254 0.288812 -0.172813 0.271440 -0.288467 0.981008 -0.132041 0.341593 -0.336229 -0.300073 0.604652 -0.180103 -0.587357 0.000191 0.952091 -0.313411 0.175746 0.687750 0.303047 -0.803177 1.084763 0.326931 0.689303 -0.328640 -0.395893 -0.034773 0.121566 -0.068730 0.543760 -1.175262 -0.775248 -0.486306 -1.949161 -0.702775 0.507112 0.630931 0.232200 0.083946 -0.895727 -0.551364 1.414529 0.013030 1.462539 0.321318 0.571329 0.644471 0.680669 -0.295815 -0.574546 -0.770335 -0.292803 -0.662441 -0.503225 -0.470326 0.949335 -0.399031 0.518723 0.759423 -0.287237 0.148881 -0.394236 0.662808 -0.624505 1.388077 0.630920 -0.443409 0.410391 -0.161184 1.490641 -0.801756 -0.772831 -PE-benchmarks/quicksort-for-linked-list.cpp__partition(Node*, Node*) = -1.799804 -3.502695 7.790797 6.334504 0.786418 3.046950 -0.005352 -5.149007 5.034667 4.353136 -0.936138 2.493123 -2.717998 0.828398 0.673177 4.389558 -4.145833 -3.515286 -1.004968 -3.517925 -2.235372 -3.667927 0.333259 1.262780 1.965968 1.112111 -4.369330 1.427663 -3.326921 -9.860850 1.741669 -0.953737 3.054083 -1.324017 1.067060 -12.392458 6.918218 5.273739 -1.302494 -5.613784 0.776690 -1.508987 -1.151244 0.694928 -1.077881 2.605596 0.157293 -0.492461 1.990880 2.198598 2.999626 1.665225 2.208767 7.376208 -1.718291 4.562963 2.737848 -0.722003 -0.945292 1.352103 1.491654 1.304974 3.625237 3.725464 -0.954713 -3.406309 0.293311 0.157832 -5.670982 3.754632 -0.019573 -4.014605 -2.594321 -2.084822 -2.777076 -1.074506 0.320211 2.564763 7.235414 -2.342858 4.948677 1.572404 2.669041 -0.165256 3.488024 -1.216965 6.791303 2.122808 -3.198384 -0.525945 -1.125025 -3.572882 1.342547 3.277874 -2.922741 -1.564291 1.983970 -4.468752 -5.102880 2.868001 1.603907 -0.436601 -7.792167 -2.607380 4.184764 1.672703 -1.101301 -5.028354 -3.237953 2.473093 -1.819433 -2.893392 -1.593074 -1.782863 -1.379241 1.268839 -5.332524 -0.804500 2.153356 -2.289634 -3.577256 3.878249 -1.842590 0.351165 -1.397886 1.728678 -1.402178 2.397438 -0.753378 3.916426 1.144862 0.178158 -5.227306 0.294445 1.132649 0.301446 -1.067344 -1.439760 -1.366179 1.598400 -2.613036 3.259935 -2.705892 3.584701 7.517655 0.581191 -3.706022 -2.450070 -0.461001 -6.509982 1.889726 -3.727355 -1.808042 1.439404 4.194134 0.815826 2.642872 4.573247 -5.040260 3.568213 -1.054346 0.808115 3.045314 -1.248047 1.950548 -2.521426 -4.354975 3.073330 3.342204 0.908704 1.657417 -1.983673 0.052644 -2.451732 -4.042897 3.617244 0.903042 1.097431 3.182659 2.300247 12.392417 -4.810400 1.300388 1.690165 -0.743891 1.102943 -0.994195 -5.096911 1.204401 1.167141 2.446784 7.243287 -0.591846 -3.240409 0.437423 0.537671 1.170514 -3.221621 3.374642 -3.790060 0.962602 -1.629229 -2.351403 -2.377993 -1.387187 -2.238106 -0.600369 5.820192 -3.155181 -7.218292 6.784251 -3.946156 2.263726 -8.253503 3.879108 -2.903797 2.882122 -3.240809 -0.452545 -0.882471 0.185167 -2.453762 2.368663 2.568882 -2.124613 2.131883 6.730179 1.048362 0.890925 -0.204854 2.423254 -0.635821 1.699430 -2.591290 5.978460 -0.528125 0.051007 -1.673080 -2.118213 1.678094 -1.689317 -0.650441 0.443594 3.836223 -0.914234 0.475271 3.879125 2.135129 -3.201605 4.936421 0.693874 1.771922 -1.913759 -0.902843 0.372443 1.281925 -0.870304 2.659662 -5.269288 -3.536921 -4.750741 -6.675615 -1.815949 2.766213 2.147924 -0.106257 -0.503132 -4.421127 -3.104763 6.883221 -1.179642 5.084328 2.564783 3.101939 3.319545 4.394191 -1.241530 -1.073473 -3.080107 -1.789149 -2.080794 -2.349610 -2.086912 4.320512 -1.646595 2.700914 3.622368 -0.650880 1.800820 -0.374882 2.307356 -2.539785 6.263922 2.590049 -1.123152 2.429973 1.322455 6.328121 -2.601504 -3.259711 -PE-benchmarks/quicksort-for-linked-list.cpp___quickSort(Node*, Node*) = -1.781991 -3.293870 6.940522 6.039241 0.552054 2.997766 -0.559832 -5.279832 4.495790 3.263030 -0.559648 2.430438 -2.755087 0.933605 -0.379643 3.566931 -3.883254 -3.533503 -1.815428 -3.672213 -2.115442 -3.173103 0.677581 1.692666 1.940774 -0.108584 -4.119402 1.495911 -4.283880 -7.977818 1.632620 -0.716296 3.033260 -1.972729 0.768306 -10.640352 6.246133 5.083389 -1.395122 -5.246835 1.051302 -1.966982 -1.215247 0.196465 -2.363504 1.817459 -0.705288 -1.863846 2.276467 1.683082 2.597677 2.442211 1.503705 7.183534 -1.872727 4.518663 2.401426 -0.519260 -1.134096 1.402463 1.291068 1.891405 3.504990 2.815165 -0.914828 -3.713199 0.153125 0.128963 -5.131063 3.903736 -0.834405 -3.916806 -1.936418 -1.899682 -4.009248 -1.259464 3.108346 2.571386 6.373559 -2.581375 4.028901 0.816005 1.515257 0.069695 3.449968 -1.035671 6.186960 1.999848 -2.109259 -0.682038 -0.959466 -2.152347 1.085902 3.061807 -3.201694 -1.670915 2.453040 -5.948674 -5.272503 2.599196 1.824986 -0.963515 -7.269612 -2.553030 3.488085 1.463342 -1.281501 -4.620688 -2.581755 3.131141 -0.702891 -2.860834 -1.411852 -1.907216 -0.919494 0.891682 -5.195759 -0.422979 1.850367 -1.908770 -3.353570 4.165027 -1.961395 -0.138020 -1.286738 1.951605 -1.856246 2.586173 -1.706959 3.957050 0.227149 0.577585 -4.321468 -0.653161 0.866248 -0.104061 -1.431403 -1.055530 -1.604189 1.490144 -2.810846 3.065540 -2.796797 3.068599 5.734381 0.407594 -3.365824 -1.961947 -1.099829 -6.737726 0.855257 -3.595112 -2.669586 2.301534 4.123319 1.625848 2.722150 5.048755 -3.526510 2.803658 -0.525056 -0.197631 3.503798 -2.654677 1.965501 -2.566681 -4.399568 3.241970 2.357588 1.399611 1.483997 -1.142547 -0.203940 -2.650116 -3.850636 2.837488 1.223432 1.343309 3.379283 2.730808 9.254597 -4.686329 1.721541 1.849389 -1.215504 1.407859 -1.485836 -4.965309 0.316031 1.510245 1.800262 6.923044 -0.679153 -3.133454 0.293488 0.274579 1.730788 -3.526682 3.089973 -3.768352 1.343446 -2.143387 -3.049240 -1.956170 -1.457078 -2.520572 -1.775881 5.786449 -4.102759 -6.767889 6.911599 -2.179067 2.554438 -8.080591 2.728772 -2.841876 4.441428 -2.210221 -0.037239 -0.738599 0.135919 -3.019542 2.444561 2.521291 -2.681187 2.154414 6.146543 1.112081 1.084226 -0.763151 2.738027 -0.846233 2.336265 -3.025307 5.929169 -0.465705 -1.073702 -1.342117 -2.199328 0.856958 -2.143032 0.097042 0.257266 3.435840 -0.097417 0.542187 4.047004 2.821627 -3.011678 4.508682 0.291784 1.140568 -1.786049 -0.997071 0.980068 1.794826 -0.693707 2.309235 -5.317120 -4.299084 -6.078288 -6.355298 -0.641887 1.487953 1.652821 -0.485527 -0.747356 -4.297540 -3.418325 5.787584 -1.458963 5.980475 2.783206 3.196181 3.281489 4.723429 -1.563196 -0.275761 -2.492790 -1.242543 -1.611576 -2.406038 -2.502893 4.569300 -1.309253 2.390280 3.841705 -0.574214 2.384833 0.435055 0.747505 -2.570620 5.743089 2.300330 -1.208939 3.011119 1.435550 4.870410 -1.687674 -3.204721 -PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.764276 -1.345578 2.651614 2.253689 0.173936 1.117848 0.006295 -1.897656 1.963792 0.992262 -0.213375 0.738867 -1.315526 0.417645 -0.201496 1.261279 -1.566226 -1.543967 -0.587787 -1.396301 -0.854207 -1.417764 0.337075 0.586649 0.721630 0.103790 -1.522321 0.404444 -1.830268 -2.445987 1.019758 -0.410083 1.192110 -0.419701 0.268539 -4.343992 2.256185 1.766031 -0.544844 -2.011572 0.348576 -0.986412 -0.156646 -0.234266 -0.683369 0.626421 -0.138808 -0.390909 1.041989 0.469625 0.932999 0.689898 0.199014 2.934684 -1.056172 1.650763 0.804764 -0.171573 -0.489928 0.507012 0.493210 0.624349 1.401920 1.262284 -0.640537 -1.356079 0.047287 -0.278073 -2.142314 1.564876 -0.200189 -1.104941 -0.985083 -0.648398 -1.529213 -0.593597 0.631355 1.110686 2.658659 -1.160057 1.692435 0.350747 0.883060 0.012727 1.335559 -0.317539 2.407925 0.663485 -1.038846 -0.206664 -0.803984 -0.644316 0.260053 1.010376 -1.007241 -0.743121 0.886267 -2.031003 -2.074205 0.906152 0.592826 -0.118282 -2.751223 -0.715238 1.362813 0.668259 -0.675929 -1.974984 -1.027586 1.047846 -0.259015 -0.977198 -0.323290 -0.778288 -0.468275 -0.274956 -2.047095 -0.369084 0.595186 -0.950352 -1.239045 1.709445 -1.098158 0.035170 -0.360980 0.665690 -0.699465 1.265544 -0.468865 1.324206 0.199527 -0.051261 -1.953559 -0.341762 0.367443 0.857347 -0.501450 -0.353288 -0.626087 0.477236 -1.179729 0.732377 -0.798563 1.046490 2.139664 -0.129654 -1.294470 -0.716518 -0.196389 -2.678665 0.411290 -1.470839 -0.693860 0.818076 1.605701 0.945089 1.124692 2.323534 -1.500576 1.269201 -0.289278 -0.121285 1.407943 -0.539826 0.900820 -0.997696 -1.679315 1.122700 0.790352 0.477164 0.603387 -0.607654 -0.115716 -1.239246 -1.398114 0.972583 0.565570 0.413568 1.336301 0.979015 3.102279 -2.194679 0.760870 0.796627 -0.313592 0.531375 -0.427228 -1.975164 0.442035 0.529473 0.369051 2.291041 -0.292324 -1.298002 0.161224 0.005037 0.766059 -1.420251 0.926095 -1.434577 0.300482 -1.093103 -0.808337 -0.822097 -0.675822 -0.879752 -0.581079 2.224469 -1.351524 -2.512376 2.561366 -0.669402 1.182866 -3.075099 1.124416 -1.136625 1.753568 -1.004834 -0.001715 -0.306324 0.256128 -0.934010 0.795363 0.983933 -0.955618 0.813750 2.457481 0.504266 0.487798 -0.060886 1.234681 -0.151268 0.806166 -1.007773 2.193409 -0.157501 -0.479926 -0.186687 -0.900809 0.472511 -0.662970 0.100768 0.631116 1.659699 0.125054 0.557129 1.550769 1.042441 -1.113285 1.459456 0.066866 0.660129 -0.691100 -0.274029 0.260334 0.727822 -0.409532 0.829331 -2.062513 -2.076149 -1.940339 -2.478873 -0.223027 0.439266 0.442632 -0.082337 -0.128630 -1.780626 -1.168622 1.803655 -0.674816 2.526341 0.881369 1.155154 1.327928 1.955227 -0.927042 -0.346524 -0.499320 -0.323570 -0.654662 -0.701370 -1.209355 1.713331 -0.806334 0.945802 1.575281 -0.355254 0.706674 0.137494 0.808119 -1.043627 2.444314 0.977384 -0.574508 1.356849 0.633231 2.209100 -0.193516 -1.225616 -PE-benchmarks/quicksort-for-linked-list.cpp__printList(Node*) = -0.314765 -0.627439 1.710129 1.252404 -0.091612 0.535569 0.007940 -1.087580 1.030030 0.059884 -0.414800 0.260190 -0.727037 0.061956 0.098452 0.432342 -1.237200 -0.770234 -0.207551 -0.736632 -0.195938 -0.858975 0.077162 0.458668 0.263957 0.916188 -0.694076 0.516766 -0.783386 -1.458821 0.787501 -0.161553 0.605708 0.558278 0.325481 -2.640432 1.458387 1.041076 -0.250310 -1.104488 0.186498 -0.645419 -0.225142 -0.355972 -0.097524 0.573778 -0.005768 0.277884 0.321704 0.077028 0.202990 0.152384 0.084719 1.155662 -0.466196 0.753934 0.616921 -0.138872 -0.088709 0.111112 0.177508 0.255998 0.671031 0.893567 -0.662760 -0.652293 0.148031 -0.384336 -1.143489 0.804705 0.069679 -0.512291 -0.639135 -0.451300 -0.866147 -0.105041 0.033794 0.815242 1.450956 -0.612560 1.030526 0.237567 0.716954 -0.053259 0.736613 -0.079415 1.531894 0.356007 -0.636726 -0.106612 -1.037020 -0.923457 0.310420 0.244412 -0.466950 -0.141968 0.250759 -1.425663 -0.936332 0.251434 0.203292 -0.228914 -1.340519 -0.214500 0.735877 0.357397 -0.025820 -0.948469 -0.297033 0.579849 -0.541960 -0.341046 -0.314405 0.141312 -0.370641 -0.355191 -1.219965 0.035595 0.338109 -0.295124 -0.369791 0.889222 -0.688387 -0.043913 -0.191656 0.090444 -0.370920 0.789220 -0.232585 0.303230 0.341386 -0.298223 -0.637317 0.116120 0.227351 0.833415 -0.469631 -0.373163 -0.045883 0.203745 -0.664737 -0.008142 -0.534721 0.436708 1.219784 -0.296468 -0.585104 -0.591336 -0.460700 -1.632436 0.291976 -0.620480 -0.280280 0.506352 0.869407 0.652915 0.620597 1.159015 -1.182317 0.598979 -0.184666 0.065671 0.544736 0.236537 0.432976 -0.501300 -0.934669 0.654931 0.138773 0.247581 0.342650 -0.301070 -0.058411 -0.726455 -0.847224 1.018440 0.274977 0.498639 0.813102 0.659746 1.666687 -1.128201 0.353993 0.440420 -0.117307 0.048418 0.030247 -0.833292 0.530226 0.257775 0.500641 1.333410 -0.101445 -0.504276 -0.180942 0.227544 0.318339 -0.765907 0.352990 -0.641240 0.160148 -0.606706 -0.230380 -0.465818 -0.599413 -0.503348 -0.295923 1.128811 -0.469437 -1.619185 1.399813 -0.755252 0.908910 -1.715882 0.170696 -0.667000 1.035087 -0.419743 0.001642 -0.088758 -0.593746 -0.541496 0.410744 0.413072 -0.359183 0.340417 1.169098 0.442351 0.125225 0.024594 0.484972 -0.134382 0.383762 -0.601248 1.025382 -0.125279 -0.030871 0.053491 -0.426505 0.386711 -0.154995 -0.041885 0.694161 1.008394 0.405244 0.527537 0.821282 0.459802 -0.586876 0.665923 0.097720 0.325299 -0.307314 -0.356194 0.017368 0.370300 -0.094111 0.312308 -1.082014 -1.256892 -1.010690 -1.650214 -0.256163 -0.106897 0.355299 0.248274 0.100543 -1.036001 -0.499266 1.139357 -0.265776 1.614345 0.319333 0.412425 0.651863 0.925518 -0.583430 -0.307985 0.088652 0.135796 -0.510052 -0.132302 -0.973127 1.080784 -0.423910 0.459182 1.025211 -0.444567 0.366551 -0.253989 0.945173 -0.564289 1.399149 0.541026 -0.666137 0.429428 0.123772 1.059295 0.169501 -0.666973 -PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -0.691626 -1.311213 2.165828 1.969329 0.554893 1.049355 0.584322 -1.526975 2.094435 1.538062 -0.042529 0.424300 -1.396486 0.387980 0.081975 1.221578 -1.139341 -1.544954 -0.281071 -1.220453 -0.871068 -1.501911 0.263672 0.126489 0.573484 -0.641888 -1.128519 -0.124196 -1.881784 -1.698753 1.126575 -0.447408 0.960939 -0.558311 0.153153 -4.027655 1.806400 1.283494 -0.554208 -1.905039 0.161480 -1.066863 0.151993 -0.024559 0.138284 0.486232 0.087113 0.272203 1.049846 0.538283 1.082057 0.362154 -0.045585 3.316127 -1.315439 1.553970 0.706401 -0.051066 -0.392545 0.933538 0.442254 0.387715 1.369475 1.313374 -0.656860 -0.990260 0.064372 -0.414828 -1.990856 1.467169 0.212256 -0.841184 -1.077564 -0.401348 -0.992303 -0.704639 -1.090046 1.029155 2.590040 -1.248675 1.732959 0.620579 1.277330 0.138187 1.414567 -0.281123 2.348035 0.434671 -1.278403 -0.302899 -1.423516 -0.615896 0.036273 0.452952 -0.619111 -1.066524 0.603938 -0.848794 -1.957312 1.007653 0.289276 0.235727 -2.524325 -0.408041 1.440056 0.647185 -0.832019 -2.083898 -1.424953 0.930230 -0.625391 -0.826522 0.101463 -1.263920 -0.517886 -0.661679 -1.788369 -0.618959 0.573366 -1.060281 -1.592040 1.792392 -1.217377 0.171352 -0.176629 0.429870 -0.575388 1.047942 -0.185471 1.222214 0.720950 -0.400132 -3.132817 0.103238 0.514385 1.236041 0.022614 0.170303 -0.581198 0.502538 -1.205394 0.883015 -0.340211 1.221409 1.785158 -0.351669 -1.154745 -0.763820 0.748342 -1.854066 0.765639 -1.355953 -0.254021 -0.008976 1.580192 1.167997 1.042267 1.925460 -1.615854 1.543351 -0.552451 0.254688 1.152277 -0.151478 0.914345 -0.912672 -1.405515 0.552392 1.199271 0.115199 0.520549 -0.828545 -0.086725 -1.242511 -1.225384 0.229229 0.436506 -0.134512 1.305545 0.867718 3.064244 -2.763154 0.785509 0.799967 -0.192032 0.482596 -0.438887 -1.914113 0.641449 0.494147 0.099698 1.820329 -0.282698 -1.455569 0.099795 -0.076447 0.639177 -1.040331 0.493669 -1.326306 -0.402756 -0.922865 -0.173857 -0.990008 -0.822145 -0.585314 -0.092686 2.007279 -0.546795 -2.087276 2.183770 -1.093086 0.546434 -2.762828 2.077921 -1.049274 0.691499 -1.306087 -0.122530 -0.626486 1.404071 -0.691618 0.714091 0.927440 -1.088188 1.093643 2.543822 0.504420 0.809701 0.161578 1.250531 -0.029481 0.151795 -0.917162 2.031420 -0.366356 -0.351663 -0.225447 -0.933317 1.007209 -0.302312 0.069906 0.833915 1.649874 -0.273562 0.571840 1.505668 0.765858 -0.966674 1.246063 0.070742 0.871113 -0.678444 0.004827 -0.016295 -0.061721 -0.566233 0.839743 -1.896611 -1.540906 -0.881835 -1.812394 -0.155628 0.760722 0.150893 0.088989 0.137154 -2.149290 -0.858399 0.895448 -0.747756 1.109731 0.735522 0.985390 1.286016 1.952961 -0.762777 -0.448765 -0.436257 -0.636879 -0.909731 -0.977331 -0.751927 1.486079 -1.042369 1.159346 1.068094 -0.115822 0.389582 0.083049 1.167770 -0.938496 2.273421 1.060710 -0.226656 1.075006 1.130440 2.884407 -0.415843 -1.059030 -PE-benchmarks/quicksort-for-linked-list.cpp__main = -1.141976 -2.866546 5.029143 4.028792 -0.183531 1.968319 0.628785 -3.072377 4.372074 0.378450 -0.759601 0.956448 -3.126443 0.934307 -0.570340 1.729797 -4.133691 -3.543728 -0.404235 -2.237276 -1.672569 -3.306765 0.757657 1.268532 1.181883 1.065187 -2.457704 0.321355 -3.738983 -1.897102 3.571338 -1.424255 2.323580 0.957630 0.663097 -9.695212 3.761307 2.232112 -1.059583 -4.103919 0.358653 -2.791726 0.443943 -2.056463 -0.929842 0.744836 0.430300 1.734444 2.311651 0.241923 0.301501 0.319268 -0.849966 6.693809 -2.738152 2.787039 1.622851 -0.342739 -0.930949 0.831186 1.082962 0.620579 2.898763 3.167066 -2.108470 -2.316061 0.211236 -2.061599 -4.387176 3.334752 0.579306 -0.256878 -2.625494 -0.595069 -3.232367 -1.292580 -0.390553 3.238766 5.933493 -3.048049 3.757174 0.859355 3.064080 0.169994 2.685675 -0.122655 4.996197 1.112661 -2.863829 -0.500908 -4.110965 -1.207443 0.082656 -0.030867 -0.887622 -2.972874 1.050455 -4.030407 -4.045960 1.484360 0.689813 0.434973 -4.349350 -0.794923 3.330215 1.570953 -1.908348 -4.210253 -1.899525 1.432921 -1.328902 -1.372225 0.449620 -0.977098 -1.077994 -2.536168 -4.215483 -1.319134 1.037267 -2.342120 -1.438061 3.784851 -3.016907 0.425350 -0.360888 0.667543 -1.238313 3.309111 -0.246054 1.465957 1.203590 -1.072663 -3.654366 -0.209274 0.894042 4.393007 -0.746257 -0.750989 -0.870496 1.043559 -2.649817 -0.426405 -0.645420 1.625421 2.789856 -1.262349 -2.690450 -1.786036 0.229193 -5.177729 1.039787 -3.121049 -0.799289 1.890499 3.397766 3.055715 2.486561 4.599524 -3.395724 3.312675 -1.052508 0.371794 2.664234 0.643977 2.182259 -1.968815 -2.828141 1.742939 0.919872 0.918025 1.038693 -2.121446 -0.130509 -3.146398 -2.895567 1.308018 1.811495 0.648780 2.681403 1.682986 3.669119 -5.683574 1.624473 1.904307 -0.078058 0.704307 -0.212874 -3.949614 2.107071 0.793091 0.042283 3.253186 -0.642287 -3.070298 0.222603 0.201271 1.527137 -2.634354 0.304566 -2.582417 -0.473623 -2.793808 0.237053 -2.070019 -1.811476 -1.868489 -1.133314 4.413400 -2.631466 -4.541989 4.765631 -1.446921 3.490102 -6.005575 2.303257 -2.487794 3.559116 -1.913638 -0.257366 -0.682431 0.410995 -1.470198 1.199501 2.016974 -1.639391 1.573547 4.463474 1.482179 1.586465 0.755826 2.882433 0.248910 1.040530 -1.538481 3.514183 -0.603623 -1.232011 0.433868 -1.947962 1.598897 -0.512177 0.897214 3.008726 3.921936 1.316924 2.865722 3.144957 1.669814 -2.228949 1.360409 -0.375890 1.950094 -1.449656 -0.338100 -0.187928 1.299748 -1.302670 1.627033 -4.226893 -5.707175 -3.690451 -4.478159 -0.689276 -0.173856 0.358896 0.098949 0.554398 -4.281253 -1.467030 1.527077 -1.610161 4.786574 1.686335 1.785678 2.922879 4.217686 -2.841524 -1.726527 1.000833 0.129864 -1.691259 -0.425508 -3.791996 3.257156 -2.665420 2.306031 3.806349 -1.225095 0.463498 -0.346059 3.701333 -2.109836 5.379596 2.483048 -2.147221 2.367800 1.650393 4.728058 1.518426 -2.551369 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -11.478463 -14.282513 16.009734 16.304789 4.011806 4.402784 7.824033 -2.314888 10.010014 7.624943 -3.698393 12.572726 -4.675386 -1.517593 2.709393 13.148373 -11.337335 -5.869153 2.769522 0.512490 0.636297 -10.151501 -16.659643 9.767300 1.844112 3.332024 -1.736737 -0.057062 -14.799440 -21.568028 -1.178961 -1.594247 3.671919 -25.159638 0.932188 -44.895148 15.348673 15.355998 -0.286790 -26.007316 -0.069938 -1.643118 -2.060780 2.115790 -7.904291 5.186234 3.770996 -1.687192 -0.079706 3.859383 2.240712 -3.148364 12.521854 24.555614 -4.595540 23.352847 23.027481 -0.306917 1.616462 1.534577 2.189455 -1.079630 5.263711 11.031849 -3.316838 -0.684470 0.124424 0.426601 -11.741035 2.385381 8.932124 -10.840654 -17.064196 -0.733169 -8.897089 0.237896 -5.271276 10.766681 14.509617 -10.203857 24.447212 4.883247 11.499779 -2.995861 4.033588 -1.458053 5.018314 2.862021 -11.093381 -2.056316 -9.806559 -16.555706 9.035796 3.476847 -11.553009 -4.699473 1.269442 1.530496 -13.219708 2.977435 -1.448581 0.066352 -9.007044 -7.060782 5.438073 3.342309 -0.149582 -10.979505 -18.629526 17.769974 -5.809079 -3.936963 -2.587863 -0.546002 -3.542731 -9.961398 -14.492738 -3.612365 21.185197 -5.783455 -12.636201 3.667164 -10.512406 11.143618 -1.837867 -0.512415 0.717560 9.499142 10.640166 2.675187 3.210616 -6.610697 -19.014694 10.739839 1.650895 11.736203 -2.059037 7.289256 9.218021 2.000597 8.089447 10.817947 -6.577713 4.855683 9.533233 -0.953780 -3.496979 -12.764372 -10.860363 -12.176004 8.891329 -4.238268 -9.961256 -2.012117 5.370730 -1.908715 1.747656 7.091746 -21.714829 9.939375 -1.026505 3.459380 0.328530 -3.287564 1.816941 -2.975867 -3.946830 3.654046 7.437377 -1.583169 2.471150 -3.301584 0.543092 -3.344451 -6.403434 6.850944 -1.572995 0.307146 11.947514 0.871532 59.531008 -1.797166 0.484223 0.506315 1.281319 0.657600 -0.166543 -7.302394 1.981470 -0.604903 5.404798 23.296530 0.259333 -4.593124 0.862710 1.058798 -0.623374 -3.800967 22.569239 -5.399972 -4.444862 -0.748076 -9.354550 -2.403834 -4.371470 -17.484115 0.358628 14.198231 -16.485601 -18.016529 2.305243 -15.421153 0.931605 -19.381376 37.348063 -4.252735 12.213114 -7.763333 -1.561674 -1.217193 -3.784689 0.494638 5.482522 3.452899 -12.191034 5.935695 9.213495 0.766068 0.007773 2.940720 0.580582 0.058104 -2.330818 -2.182969 2.823142 0.058112 0.944212 -2.166578 -2.963818 10.775220 0.455031 -4.451523 -3.508075 10.589858 -4.050632 1.432935 12.357631 -7.165115 -4.181658 12.584799 2.127367 5.833083 -1.854669 -1.067219 -3.187991 -1.993590 6.837275 4.706833 -6.021976 -3.740578 -11.825022 -17.542180 -4.165970 2.750386 13.440498 2.173625 2.178075 -21.866704 -11.697676 33.483433 -0.703117 11.013088 2.700388 3.934080 3.963358 2.260096 -0.131777 -3.304420 -3.692498 -0.931899 -5.766431 -3.492126 0.688532 1.978439 -6.945526 5.134857 1.806086 -0.047136 -0.286133 -2.249640 -5.838779 -3.009316 12.304751 4.776383 -2.561823 1.137780 -0.765234 13.899408 -22.545975 -4.104064 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = -10.537481 -15.902678 18.845590 18.436635 2.286915 4.830237 7.531837 -2.770299 10.267247 5.575051 -4.960658 13.968882 -5.336154 -1.241963 2.017943 13.223021 -14.318715 -6.776913 2.600681 0.356196 0.309514 -10.230073 -17.056199 11.569560 2.744805 6.656142 -2.435646 -0.067445 -15.600491 -20.996791 -0.030649 -1.816442 4.739163 -22.603502 2.098798 -48.545570 16.180984 16.563742 -0.532041 -28.358267 0.336181 -2.312423 -2.628757 0.115296 -9.323839 5.479266 4.285073 0.605459 -0.415879 4.027758 -0.390984 -2.939349 13.225699 26.827090 -3.580191 24.192748 25.382269 -0.436722 1.917095 0.474020 3.090765 -1.260230 5.523634 11.188306 -3.353948 -1.924074 -0.668652 -1.221135 -12.150937 2.983966 9.748123 -10.463920 -18.122265 -1.702622 -10.693272 0.312371 -6.401591 13.322963 16.461371 -12.480946 25.721586 5.202384 12.380330 -2.852096 4.520953 -0.906661 5.584421 4.028421 -10.992830 -1.500218 -11.662455 -18.003922 9.708971 1.348597 -12.912481 -8.125605 2.364070 -1.821616 -14.568145 3.729925 -0.695061 -0.865962 -7.824807 -7.619299 5.803329 4.466829 -0.991453 -11.175604 -18.204093 18.037318 -5.629179 -4.432930 -2.635479 2.005373 -3.408895 -10.737348 -16.594315 -2.508454 22.353190 -5.951072 -10.434493 4.717704 -10.462849 11.680512 -2.521423 -0.887557 0.246657 11.980682 11.399426 2.203088 3.229039 -6.269213 -16.850812 11.925917 2.337125 13.274718 -3.417949 6.271336 9.908634 2.963570 8.470082 9.834548 -6.867414 5.021599 9.319305 -1.440362 -5.026986 -14.898579 -12.975644 -13.956867 8.393925 -5.180750 -10.789682 0.841974 6.457883 -0.409625 2.170608 7.971706 -22.825068 10.119707 -1.013517 3.803274 0.390667 -1.903583 2.224814 -3.650819 -4.761854 4.979254 6.726897 -0.306195 2.880581 -3.627638 1.107853 -4.230181 -7.257909 8.541359 -0.008193 0.551914 13.368048 2.180135 58.189326 -1.858852 -0.215300 0.443597 0.400760 0.227231 0.398504 -8.720548 2.911616 -0.649201 5.998178 24.637921 0.055030 -4.529008 1.769132 1.135364 -0.846512 -4.293030 22.663497 -6.162922 -4.867030 -1.982376 -7.931012 -3.149497 -4.583557 -19.196810 -1.277873 16.406077 -19.554612 -18.725659 3.106582 -15.378893 2.897697 -20.858417 37.199197 -4.963936 14.648796 -6.679897 -2.318793 -0.567198 -6.685394 -0.654024 5.099391 4.349047 -12.391957 4.928663 9.677018 1.343556 -0.702017 3.478475 1.525580 -0.745294 -1.020066 -2.979232 3.201678 -0.418586 0.339515 -1.954256 -3.173234 10.481173 -0.075057 -3.712460 -1.384692 10.488931 -1.453617 2.844370 12.889242 -6.594704 -5.428427 12.278717 1.711633 6.752683 -2.945081 -1.641389 -3.670972 -0.318568 6.961979 5.037488 -7.874134 -6.701537 -15.831973 -18.696253 -4.944428 1.042742 14.170126 1.610869 1.598225 -22.913780 -13.221720 34.039145 -1.251481 12.312685 4.328610 4.271453 5.651082 3.095783 -1.139344 -3.640849 -2.131000 0.630810 -5.528890 -2.498404 -1.751073 3.072968 -7.633134 5.187284 5.042679 -0.801234 0.809901 -2.911760 -3.235790 -3.904834 14.552910 5.566750 -5.844572 0.858255 0.634337 13.592917 -21.411019 -5.484460 -PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -8.717022 -14.230569 9.932273 9.746954 4.401648 9.228590 5.310162 -3.777675 6.395909 10.516211 -4.509973 8.697954 -6.466159 -4.436509 0.392328 0.500166 -1.120544 -8.070928 1.905471 -1.873196 -0.560350 -8.005272 -8.881901 11.032099 0.833817 -2.689359 -3.454249 1.305619 -17.598054 -13.571417 -1.277635 -0.325167 5.218027 -4.731758 3.734119 -17.837511 6.937621 14.413459 -0.265454 -15.482558 -0.399448 -4.012311 -3.129169 6.311089 -0.988817 5.246961 4.427801 -1.348312 -2.338328 2.308764 4.226074 -1.707991 5.598129 15.331818 2.121390 14.426121 13.909811 -0.263212 3.580951 2.728950 2.789204 -2.502185 7.673635 6.900163 -4.780494 -0.677851 0.583122 3.179737 -9.125648 1.944683 2.775150 -7.617174 -2.590507 -3.483610 -7.583504 -3.462625 3.451753 -0.627445 15.391456 -2.365099 18.990640 8.869316 11.193503 -0.257248 10.867181 -1.715594 11.070939 3.912683 -9.876896 1.107943 -10.424981 -3.795438 -0.700347 10.488076 -8.133403 3.260370 4.806354 -8.813887 -13.068596 9.004316 -3.232025 -1.971591 -9.207530 -0.407252 6.319306 3.112220 -3.421675 -11.724442 -10.751814 8.358603 -7.973862 -7.243438 -2.243344 -1.305234 -0.227980 1.415672 -6.753030 -1.629690 11.519895 -6.968101 -7.497169 9.852186 -4.158228 9.265006 -2.491874 0.491446 0.201284 0.347025 4.787460 2.608153 2.644041 -8.777448 -18.596711 -0.283858 -0.820560 1.238995 -4.946757 -2.497133 6.469511 4.483488 6.542082 10.535461 -3.519953 10.412612 6.861058 1.261937 -3.047254 -12.776641 -0.397693 -6.689077 3.244996 -4.737066 -5.674230 -1.179222 8.119918 -0.520076 -0.189963 7.683224 -5.171877 8.612443 -0.392079 1.372735 0.050815 -5.400706 2.850919 -5.352914 -8.560815 5.763525 11.361018 3.904571 3.809510 -4.132002 -1.387609 -2.202297 -9.867875 3.428612 0.029346 2.977085 12.008777 5.559452 25.382751 -10.059597 1.232983 -3.359110 -1.946378 2.726681 -3.815937 -10.437330 3.015958 2.879320 2.502943 15.564129 -0.458358 -5.735063 2.497633 1.179678 0.849336 -8.324169 13.180404 -8.536961 -0.625542 -1.586081 -4.722479 -6.642553 -5.304753 -8.933146 0.467694 12.812176 -4.333490 -14.030388 5.107465 -2.400903 2.045560 -16.352203 9.907610 -5.471115 8.549491 -5.384948 -3.280775 -1.310424 5.937814 0.794837 2.860770 5.570434 -10.447606 8.653013 7.957224 0.689452 3.114462 3.571223 2.071315 -2.080291 -4.705333 -8.491893 5.835892 0.643038 -2.776803 -3.670989 -5.167830 10.207056 2.851685 -2.905474 -3.501907 10.123524 -6.512680 -3.969163 10.176775 -3.954934 -4.946960 3.495721 1.325916 8.106949 -4.648915 -1.771704 -7.489612 -0.499986 3.836091 3.905055 -11.918874 -3.053779 -4.515387 -12.375010 -4.027133 5.489287 3.422690 6.523036 1.978180 -16.415652 -7.103754 10.193160 -2.890451 6.649956 5.668187 8.943404 9.905095 4.572575 4.026459 -3.764229 -4.626923 -1.777948 -8.733397 -4.370810 -0.112928 3.754845 -4.776366 10.841857 2.131162 1.519822 4.112227 1.412035 3.467270 -6.608493 14.265869 7.730787 -7.810334 0.594953 3.367271 13.718434 -14.699506 -6.876542 -PE-benchmarks/rabin-karp-algorithm.cpp__main = -1.174448 -3.647934 3.687869 3.382511 0.574149 2.033125 1.312125 -1.469985 2.062516 2.178882 -1.358765 2.345975 -2.070558 -0.268880 -0.644277 1.117621 -1.628876 -2.391851 0.166874 -0.706526 -0.482973 -2.101827 -1.068103 2.388879 1.005810 0.396274 -1.403741 -0.067894 -4.160391 -3.529815 0.415510 -0.460861 1.629614 -0.497283 0.806655 -5.208466 2.348753 3.568918 -0.466288 -4.271455 0.403291 -1.166034 -0.856079 0.503238 -0.437233 1.282624 1.002193 0.780368 0.039796 1.060627 0.708933 -0.021887 1.783367 4.689016 0.026140 3.543085 3.574873 0.113682 0.723773 0.414562 1.072457 -0.225828 1.832338 1.988963 -0.768260 -1.006982 -0.506140 -0.049206 -2.532269 1.218793 0.428930 -1.233965 -1.600970 -0.902917 -2.132326 -0.584061 -0.853352 1.074340 4.633944 -1.607029 4.493726 2.003879 2.609967 -0.248158 2.197643 -0.174508 2.555769 1.386446 -2.137262 0.070127 -2.548424 -1.149606 0.170130 1.368072 -2.180129 -1.264176 1.676969 -2.928906 -3.614231 2.185926 -0.110027 -0.683774 -1.571705 -0.160892 1.578019 1.214029 -1.286140 -3.048953 -2.093041 1.608566 -1.143342 -1.847361 -0.341381 0.040522 -0.231129 0.156238 -2.689157 -0.317973 2.387630 -2.016025 -1.070613 2.515024 -0.773068 2.016698 -0.724418 0.214121 -0.205491 1.245471 1.207199 1.235401 0.780445 -1.106243 -3.697608 0.744046 0.681772 0.731720 -1.499843 -0.275201 0.956870 1.266898 0.931606 1.907059 -0.938882 2.274493 1.909230 -0.301968 -1.682651 -3.179733 -0.577962 -2.502221 0.900660 -1.772537 -1.446510 0.388245 2.435190 0.384664 0.718500 2.597485 -2.052541 1.942286 -0.074862 0.471203 0.559966 -0.717497 1.018354 -1.459370 -2.526000 1.831357 2.520558 0.987604 0.924960 -0.971450 -0.032218 -1.278699 -2.069681 1.392438 0.647886 0.141541 3.103591 1.548776 5.155745 -2.276133 0.284092 -0.041590 -0.589485 0.524168 -0.656789 -3.403141 1.403408 0.506941 1.054975 3.690315 -0.121524 -1.460201 1.191606 -0.101252 0.322447 -2.124624 2.708351 -2.309644 -0.542041 -1.140311 -0.147440 -1.394457 -1.285332 -2.020029 -0.101303 3.786955 -2.009344 -3.031773 1.857608 -0.684156 0.837778 -4.179397 3.018682 -1.637901 2.433968 -0.826363 -0.859014 -0.044139 0.656937 -0.517674 0.242869 1.715619 -2.092108 1.766264 2.532767 0.526428 0.369480 0.933930 1.251907 -0.670792 -0.143450 -1.971760 1.915033 -0.038761 -1.020924 -0.639541 -1.324518 1.919235 -0.078525 -0.331978 0.668393 2.293169 -0.534875 0.185432 2.189678 0.264956 -1.785433 1.309875 0.104228 2.252550 -1.554675 -0.477198 -1.432478 0.324677 0.235490 1.527258 -3.461266 -2.172487 -2.457475 -3.177116 -1.100282 0.390241 1.233144 0.660330 0.174498 -4.021196 -2.359340 2.616042 -1.033217 1.460901 2.038341 2.013643 2.740413 1.780509 0.214176 -0.728164 -0.889083 0.146262 -1.571996 -0.890847 -0.794920 1.419155 -1.584073 2.118669 1.825936 -0.161040 1.135462 -0.030118 1.748954 -1.837287 4.274829 2.073793 -2.304553 0.787500 1.466716 3.605392 -2.433557 -2.109356 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.360765 -0.859438 1.348374 1.224363 0.266893 0.588412 0.523943 -0.885112 1.335381 0.851458 0.083296 0.218363 -0.977165 0.405371 -0.163663 0.778672 -0.750616 -0.981015 -0.245896 -0.795064 -0.686782 -0.956881 0.225715 0.005678 0.387931 -0.410405 -0.731597 -0.288877 -1.214532 -0.666615 0.852128 -0.285629 0.576763 -0.422606 0.052486 -2.769469 0.960796 0.704411 -0.388415 -1.158325 0.124171 -0.753023 0.249407 -0.175670 0.088499 0.115675 0.017997 0.362860 0.734842 0.267917 0.672679 0.298444 -0.101664 2.525679 -0.990620 0.920888 0.435014 0.079591 -0.270498 0.567913 0.301469 0.253927 0.773617 0.781927 -0.345327 -0.611772 -0.082410 -0.445927 -1.190192 0.961312 0.166129 -0.338959 -0.825629 -0.246013 -0.668975 -0.517121 -1.368370 0.770601 1.670241 -1.046779 1.021068 0.360910 0.821430 0.184336 0.846203 -0.098647 1.377603 0.223618 -0.753704 -0.106750 -0.890402 -0.107378 -0.008611 0.031000 -0.363785 -1.241984 0.465613 -0.354038 -1.254838 0.662737 0.189302 0.220553 -1.342343 -0.270588 0.763181 0.436548 -0.751370 -1.367215 -0.979562 0.532428 -0.140655 -0.457615 0.312099 -0.821162 -0.253961 -0.738766 -1.162968 -0.373139 0.284828 -0.715880 -0.965620 1.184761 -0.775246 0.145667 -0.030124 0.234622 -0.380735 0.865949 -0.030105 0.727317 0.327947 -0.141733 -2.091322 0.075800 0.416074 1.132923 0.062189 0.218095 -0.435699 0.312337 -0.752686 0.406020 -0.019091 0.669383 0.994298 -0.345859 -0.769202 -0.485067 0.598018 -1.147006 0.451584 -0.874164 -0.079141 -0.005347 0.967208 0.963283 0.655679 1.252564 -1.001826 1.000200 -0.338897 0.078305 0.725693 0.083758 0.605221 -0.544545 -0.948673 0.238987 0.666846 0.127709 0.281228 -0.508262 -0.068274 -0.805669 -0.567630 -0.026559 0.426640 -0.317569 0.849786 0.577176 1.684173 -1.911912 0.528799 0.524269 -0.171126 0.316567 -0.289816 -1.246226 0.496955 0.311263 -0.230827 0.909953 -0.217592 -0.888384 0.235818 -0.214758 0.460199 -0.610843 0.108035 -0.784058 -0.533953 -0.775415 0.172777 -0.588948 -0.442692 -0.323138 -0.125071 1.265446 -0.569319 -1.023701 1.317057 -0.496026 0.274181 -1.589913 1.621061 -0.575487 0.390444 -0.826214 -0.112656 -0.365969 1.132885 -0.406874 0.403429 0.601135 -0.705488 0.544944 1.736078 0.321563 0.540873 0.163339 0.953453 0.022102 0.098160 -0.557419 1.307048 -0.249412 -0.369704 -0.000776 -0.594990 0.625354 -0.190696 0.216122 0.873026 1.043305 -0.015951 0.478694 0.954356 0.553453 -0.558754 0.666918 -0.037203 0.604360 -0.508023 0.127921 -0.048884 -0.008915 -0.473867 0.484047 -1.164472 -1.077837 -0.577681 -0.924723 0.010928 0.382172 -0.058058 -0.039853 0.028440 -1.401448 -0.580877 0.388863 -0.607162 0.387441 0.476870 0.549102 0.876163 1.337322 -0.583386 -0.215445 -0.041069 -0.330426 -0.438802 -0.513390 -0.520709 0.875937 -0.821214 0.655028 0.733389 -0.081754 0.277059 0.207696 0.919134 -0.591549 1.547889 0.668400 -0.168791 0.752983 1.017333 1.958661 -0.011488 -0.638925 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__printList(Node*) = -0.531535 -0.772581 1.473051 1.039726 0.076608 0.592539 0.139915 -0.774689 0.913051 0.392749 -0.501746 0.364298 -0.632438 -0.164832 0.217310 0.351797 -0.830031 -0.729476 0.109270 -0.507551 -0.086321 -0.820160 -0.211775 0.511340 0.165477 0.681732 -0.472070 0.412126 -0.789662 -1.621817 0.425700 -0.189208 0.515866 0.301384 0.329927 -2.343181 1.251501 1.043903 -0.135079 -1.167232 0.052812 -0.508074 -0.137421 -0.020932 0.040255 0.617319 0.307142 0.211303 0.102605 0.203247 0.269840 -0.113086 0.247290 1.013574 -0.165777 0.796337 0.721933 -0.162157 -0.028252 0.112174 0.213254 -0.064476 0.672352 0.818482 -0.635712 -0.354942 0.123732 -0.157065 -1.046972 0.476247 0.064782 -0.578216 -0.500962 -0.415407 -0.659035 -0.159551 -0.129692 0.527945 1.396190 -0.457770 1.261402 0.416525 0.876394 -0.059309 0.753587 -0.106283 1.322408 0.346223 -0.826088 -0.043941 -0.830260 -0.914019 0.199847 0.434391 -0.416533 0.162565 0.245136 -1.086358 -0.893311 0.394501 -0.021679 -0.107735 -1.259495 -0.166890 0.725201 0.434705 -0.111031 -0.941270 -0.446748 0.474467 -0.665265 -0.384351 -0.301986 0.106023 -0.355114 -0.157216 -0.983443 -0.126485 0.549667 -0.467683 -0.443117 0.801582 -0.539594 0.289150 -0.197027 0.035789 -0.142570 0.603485 0.077854 0.220819 0.326282 -0.444819 -0.948787 0.151191 0.096629 0.547025 -0.427788 -0.272501 0.246390 0.221061 -0.275723 0.182790 -0.558365 0.556544 1.272971 -0.123223 -0.460807 -0.700901 -0.319959 -1.275308 0.370947 -0.554065 -0.171128 0.319572 0.782691 0.332177 0.356598 1.035318 -1.105273 0.597518 -0.210959 0.131136 0.286548 0.175121 0.387458 -0.486323 -0.799892 0.578154 0.514580 0.146478 0.374249 -0.415893 0.004795 -0.540323 -0.788138 0.951255 0.169201 0.426780 0.784304 0.480010 1.930926 -0.982060 0.144976 0.136943 -0.032308 0.064842 -0.015629 -0.827749 0.517859 0.186568 0.543580 1.213021 -0.049479 -0.451885 -0.091331 0.188296 0.150324 -0.695951 0.552507 -0.680854 0.107390 -0.308520 -0.263045 -0.526206 -0.564096 -0.508825 -0.076743 1.016820 -0.218592 -1.474064 0.996063 -0.744434 0.723967 -1.589054 0.324250 -0.636015 0.859213 -0.484997 -0.078796 -0.120048 -0.324267 -0.147269 0.258056 0.425985 -0.333394 0.468986 0.997385 0.301592 0.112143 0.217171 0.330427 -0.133134 0.036092 -0.461387 0.774313 -0.084055 0.073985 -0.042195 -0.408405 0.598077 0.079993 -0.224086 0.417613 0.950160 -0.054265 0.321892 0.812397 0.101078 -0.530717 0.605304 0.130529 0.585332 -0.315279 -0.307240 -0.261455 0.273636 0.064652 0.278893 -1.009522 -0.899051 -0.719730 -1.473608 -0.420844 0.159813 0.363065 0.337382 0.221746 -1.011467 -0.413871 1.207770 -0.186034 1.308482 0.260291 0.500542 0.663580 0.629821 -0.245132 -0.474972 -0.104652 -0.029793 -0.654735 -0.155615 -0.549556 0.686537 -0.476352 0.595145 0.653952 -0.261225 0.189161 -0.131863 0.715424 -0.541335 1.203811 0.592638 -0.619528 0.264002 0.113223 1.093741 -0.360837 -0.622764 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__getTail(Node*) = -0.422666 -0.766830 1.959271 1.468732 0.393816 0.644146 0.038854 -0.986303 1.198419 1.050222 -0.617159 0.545331 -0.560529 -0.143164 0.630949 0.953191 -0.881973 -0.959384 0.113266 -0.608944 -0.088777 -0.858337 0.023159 0.269175 0.487291 0.526579 -0.843480 0.438809 -0.759126 -2.647182 0.314978 -0.286560 0.677690 0.142653 0.384177 -2.204984 1.808944 1.152340 -0.199593 -1.335405 0.124926 -0.175119 -0.328847 0.170146 0.296834 1.101242 0.493090 -0.030842 0.295616 0.652698 0.612522 -0.124902 0.448883 0.771165 -0.228865 0.962539 0.698602 -0.336454 0.033242 0.264474 0.303405 0.002665 0.778132 1.067386 -0.520360 -0.613849 0.142785 0.068742 -1.316471 0.717910 0.079368 -0.855841 -0.664855 -0.480833 -0.429967 -0.007662 0.164322 0.548982 1.705258 -0.246059 1.374594 0.582362 1.062352 -0.296810 0.619815 -0.308799 1.465459 0.521296 -0.968409 -0.201239 -0.736315 -1.502669 0.219647 0.916108 -0.492293 0.844560 0.268744 -0.952318 -1.015236 0.484646 0.218901 -0.034588 -1.859414 -0.099336 1.067605 0.530251 0.239959 -1.018263 -0.509299 0.313108 -0.854200 -0.538767 -0.646609 -0.263749 -0.588513 0.460242 -1.210932 -0.272397 0.505324 -0.561523 -0.728603 0.651972 -0.741619 0.173417 -0.375184 0.258999 -0.206194 0.372260 0.173674 0.772762 0.746379 -0.489391 -1.438733 0.314458 0.275184 0.267361 -0.323207 -0.175373 -0.097060 0.230917 -0.545904 0.593217 -0.680233 0.901487 1.911490 -0.062324 -0.839528 -0.670602 -0.273184 -1.328456 0.685061 -0.736799 -0.101267 0.143213 0.868410 0.037512 0.610992 1.359761 -1.481130 0.763303 -0.333353 0.376682 0.489933 -0.123863 0.407619 -0.553763 -0.789116 0.731444 0.910043 -0.110380 0.593950 -0.588520 0.150971 -0.741318 -1.030337 1.212962 -0.058135 0.469052 0.661076 0.367966 2.579103 -0.853367 0.044184 0.385718 0.116722 -0.005305 0.082923 -1.071265 0.600192 0.083207 1.093545 1.549406 0.030769 -0.661967 -0.080771 0.247142 0.114013 -0.613425 0.873614 -0.836459 0.448728 -0.087169 -0.508002 -0.639424 -0.519062 -0.301647 0.290455 1.236565 0.304393 -2.021187 1.268751 -1.223818 0.585662 -1.896461 0.485028 -0.764016 0.618022 -0.676917 0.034598 -0.261754 -0.372843 -0.276556 0.271387 0.463145 -0.207130 0.611859 1.271076 0.276219 -0.049210 0.167254 0.288812 -0.172813 0.271440 -0.288467 0.981008 -0.132041 0.341593 -0.336229 -0.300073 0.604652 -0.180103 -0.587357 0.000191 0.952091 -0.313411 0.175746 0.687750 0.303047 -0.803177 1.084763 0.326931 0.689303 -0.328640 -0.395893 -0.034773 0.121566 -0.068730 0.543760 -1.175262 -0.775248 -0.486306 -1.949161 -0.702775 0.507112 0.630931 0.232200 0.083946 -0.895727 -0.551364 1.414529 0.013030 1.462539 0.321318 0.571329 0.644471 0.680669 -0.295815 -0.574546 -0.770335 -0.292803 -0.662441 -0.503225 -0.470326 0.949335 -0.399031 0.518723 0.759423 -0.287237 0.148881 -0.394236 0.662808 -0.624505 1.388077 0.630920 -0.443409 0.410391 -0.161184 1.490641 -0.801756 -0.772831 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__partition(Node*, Node*, Node**, Node**) = -2.279744 -3.240852 6.808811 5.620632 1.800788 3.018554 1.535545 -5.169312 5.882541 4.680243 -0.649723 1.953646 -2.953787 0.416971 0.433427 3.705941 -2.802987 -3.690915 -0.812883 -3.632099 -1.573411 -4.814911 0.607924 0.928857 1.561119 -0.729482 -3.914114 0.967468 -4.370942 -9.474859 2.773914 -0.844815 2.734934 -2.581231 0.301253 -13.520017 6.716533 5.397629 -1.224695 -5.075814 0.754963 -1.888532 -1.017460 1.208350 -0.098376 2.259078 -0.003556 -0.784907 2.002773 1.989441 4.003495 1.736950 1.470076 8.000348 -3.585148 4.446419 2.130142 -0.433188 -0.955144 1.958524 1.094833 1.302269 3.749524 4.521272 -1.546750 -2.755594 0.534070 0.476662 -6.662326 3.382200 -0.319285 -3.990085 -2.648569 -1.291313 -2.823256 -1.098525 -0.945161 1.741560 7.570775 -1.790876 5.934872 1.404962 3.045094 -0.390434 3.433812 -1.188000 6.511468 1.648926 -3.666745 -1.308435 -2.612051 -2.733913 0.797889 3.811179 -2.419358 0.015739 1.819096 -3.232836 -4.887285 2.337117 0.937264 -0.386629 -8.240707 -1.988447 3.787116 1.538023 -0.887350 -6.121289 -4.268858 2.752356 -1.997856 -2.749305 -1.408862 -2.744085 -1.571765 -0.087526 -4.702483 -1.285290 1.838976 -2.420471 -4.826414 3.841675 -3.472499 0.323588 -1.057461 1.611699 -1.333963 1.414530 -1.094849 3.661486 2.050347 -1.130044 -8.581373 -0.430513 0.876465 2.891335 -0.993982 -0.490159 -1.242996 1.235717 -2.547580 3.289279 -2.036919 3.373019 7.011055 0.073287 -2.759314 -1.848475 1.052422 -5.982008 2.414858 -3.332960 -1.168020 0.166552 4.036035 0.766299 2.501044 5.107043 -5.322962 4.490577 -0.753906 0.431335 2.919219 -1.599657 1.919739 -2.421444 -4.580230 2.542662 3.507855 0.362840 1.391082 -1.439293 -0.245183 -2.656545 -3.989428 2.544218 0.245644 0.921299 3.155254 2.091985 12.794778 -6.788221 1.680417 1.712436 -0.594908 1.308623 -1.286237 -4.822951 1.432411 1.269597 2.088268 7.131367 -0.401709 -3.567340 -0.064997 0.476629 1.302462 -3.257693 3.286094 -3.749443 0.061301 -1.413777 -3.116011 -2.029892 -2.037134 -1.817985 0.176844 5.157260 -1.300813 -7.527902 6.389602 -4.329660 1.489704 -8.623425 6.179640 -2.925928 2.113031 -4.264205 0.021080 -1.209760 2.466000 -2.119520 2.384597 2.323016 -2.580789 3.344172 7.889550 1.031911 1.289858 -0.319557 2.159134 -0.465704 0.898285 -2.647017 5.911973 -0.450121 -0.510235 -1.429228 -2.252534 2.741628 -1.333873 -0.870653 0.866632 5.067307 -1.627454 0.417259 4.281839 2.141588 -2.755418 5.049221 0.778309 1.793786 -1.323299 -0.777100 0.349763 0.383794 -0.676098 2.638772 -4.865802 -3.237985 -2.964089 -7.091293 -0.769700 2.381332 1.698267 0.276392 0.160074 -6.275865 -2.599036 5.132020 -1.143456 5.061137 2.171420 3.078688 2.808933 4.077977 -1.174572 -0.789872 -2.961053 -1.738434 -2.519190 -3.085509 -1.134935 3.840490 -2.643259 2.896141 2.356294 -0.287745 1.430178 -0.051500 1.741090 -2.343031 6.648857 2.487314 -0.332218 2.684913 0.717317 7.428362 -2.802559 -2.831665 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSortRecur(Node*, Node*) = -2.182008 -5.850058 11.760413 10.492687 2.134653 4.891188 2.169223 -8.848642 8.936260 6.478212 -0.697891 3.111943 -6.314948 1.840862 -0.252179 6.552559 -6.007509 -6.804523 -2.266540 -6.149488 -3.020498 -6.671766 2.648954 1.681046 3.876355 -0.809848 -6.512068 -0.144100 -8.525045 -11.844920 4.942950 -1.537944 5.392675 -2.034709 0.128929 -18.854939 10.431890 8.465412 -2.502584 -8.939315 2.145643 -4.039942 -1.529622 0.132017 -0.822967 3.043174 -0.743396 -0.275742 4.592343 3.204303 5.341769 3.296554 1.854947 12.785194 -5.469680 7.568466 3.409360 -0.279254 -1.847323 3.153427 2.055727 3.093526 6.432470 6.081307 -2.373921 -5.850876 0.001712 -0.838969 -10.202014 6.721046 -0.138653 -4.973264 -4.917231 -1.860857 -4.844146 -1.800477 0.612943 4.727453 11.833520 -4.575129 8.097245 1.819293 3.559270 -1.303532 5.295348 -1.672008 9.844628 2.842362 -4.457250 -2.541188 -5.693978 -3.933198 1.178173 3.983411 -4.461125 -3.199508 3.761204 -5.802128 -9.153142 3.513163 2.496050 -1.159584 -12.186962 -2.373815 5.823054 3.110238 -2.398278 -9.147580 -5.380881 4.557734 -1.845144 -4.822788 -1.995028 -4.215674 -2.793418 -1.257989 -8.809637 -1.911508 2.359188 -4.460075 -6.795093 6.884523 -5.076809 0.220220 -1.560195 2.829000 -2.806576 3.953727 -2.003488 6.355474 4.239182 -0.687278 -10.034480 -0.266077 2.495663 4.729882 -1.705826 -0.339041 -3.234161 2.357369 -4.987286 4.451901 -2.686366 5.231516 9.946158 -1.147992 -5.430203 -2.805166 1.491442 -10.299511 3.128104 -6.325730 -1.811009 1.198766 7.211864 2.700859 5.025534 9.809945 -7.886065 6.282203 -0.803567 0.584416 5.920171 -1.709755 3.724208 -4.321101 -7.936832 4.351788 4.694042 0.943169 1.790616 -1.557762 -0.487239 -5.619404 -6.574370 3.071154 1.123301 0.401620 5.864682 4.131329 15.924289 -10.087616 3.410093 3.860495 -1.634800 2.381926 -1.818448 -9.364037 2.472916 1.957535 2.422718 11.104073 -1.050568 -6.316115 0.991130 0.072040 2.548818 -5.732702 4.588958 -6.706440 -0.063069 -4.336278 -3.562147 -2.824258 -3.819624 -3.087931 -0.478301 9.647508 -2.859355 -11.389234 10.856030 -5.292481 2.691795 -14.368514 8.088342 -5.072961 3.774619 -5.032899 -0.355964 -1.658864 3.013701 -4.793964 2.898039 4.268579 -4.412810 5.311151 12.408802 2.049263 1.720516 -0.421638 4.917300 -0.651867 2.944686 -4.861847 10.389258 -0.901759 -1.873748 -1.638717 -3.991782 3.119925 -3.378489 -0.677240 3.531285 7.329219 -0.501797 2.204105 6.498163 5.217398 -4.961775 8.130850 0.829407 2.995287 -2.484900 -0.951660 1.311113 0.920471 -2.001938 5.354460 -8.950963 -8.193507 -5.194452 -11.558382 -0.373199 2.130117 3.090413 -0.506103 -0.386143 -9.542391 -5.400119 5.975426 -2.768654 8.524269 4.486479 5.068869 5.253028 8.091445 -3.639497 -0.430878 -3.336466 -1.371997 -3.244971 -5.170372 -3.217617 7.102870 -3.349860 4.487494 6.077670 -0.787691 2.990276 -1.589833 4.478239 -4.414903 10.938043 4.124925 -1.376459 5.842629 2.490844 11.055404 -2.265149 -5.124822 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -0.916158 -1.859899 3.836397 3.311654 0.470120 1.584104 0.391110 -2.878200 2.899820 1.613885 -0.145531 0.974522 -1.990933 0.659278 -0.347410 1.898031 -2.050498 -2.229104 -0.941956 -2.165178 -1.188207 -2.076087 0.687819 0.644131 1.153119 -0.114612 -2.221386 0.215639 -2.849048 -3.477216 1.667451 -0.469952 1.714307 -0.759900 0.179913 -6.322165 3.289464 2.703209 -0.821995 -2.812730 0.632888 -1.436548 -0.344824 -0.188811 -0.586061 0.836944 -0.370815 -0.416245 1.549193 0.747748 1.621123 1.209798 0.243692 4.339703 -1.817953 2.390492 1.050941 -0.109511 -0.712685 0.922445 0.641566 1.047521 2.013165 1.810459 -0.878600 -1.990569 0.063237 -0.379520 -3.178892 2.236540 -0.106251 -1.661792 -1.464733 -0.790198 -1.968705 -0.778196 0.583031 1.522494 3.758492 -1.621224 2.443994 0.451825 1.157669 -0.156790 1.836554 -0.502200 3.357234 0.883834 -1.370065 -0.570881 -1.615196 -0.861915 0.346754 1.439115 -1.511181 -1.144083 1.337826 -2.339336 -2.982038 1.154018 0.893599 -0.296101 -4.032613 -0.882009 1.804379 0.929506 -0.902354 -2.902772 -1.666927 1.576812 -0.362406 -1.458105 -0.492190 -1.357316 -0.753338 -0.620502 -2.904871 -0.474705 0.751077 -1.307488 -2.136867 2.387607 -1.740436 -0.060706 -0.485402 0.989681 -1.053201 1.547876 -0.770860 1.932781 0.731270 -0.139738 -3.146936 -0.461447 0.650781 1.683867 -0.667296 -0.325006 -1.078672 0.685664 -1.714133 1.204958 -0.985760 1.532528 3.123146 -0.358555 -1.765908 -0.888855 0.208128 -3.625843 0.717619 -2.049164 -0.822839 0.679279 2.290158 1.306652 1.631834 3.374815 -2.281214 1.979590 -0.273717 -0.122313 2.040353 -0.682269 1.257812 -1.418695 -2.571390 1.454909 1.168405 0.543800 0.692513 -0.574890 -0.220547 -1.851672 -2.032156 1.081483 0.583717 0.326543 1.940181 1.469417 4.749415 -3.451765 1.170449 1.214623 -0.605575 0.803726 -0.605216 -2.880448 0.629958 0.770932 0.473855 3.501310 -0.396626 -1.955769 0.278209 -0.007758 1.041350 -1.964078 1.365937 -2.094863 0.124650 -1.583122 -1.183082 -1.049498 -1.054544 -1.163220 -0.669241 3.145871 -1.482794 -3.725249 3.663936 -1.189907 1.251965 -4.582321 2.055947 -1.597998 1.875796 -1.571914 0.039785 -0.498013 0.823380 -1.560300 1.153914 1.367884 -1.511404 1.436671 3.946643 0.689128 0.663604 -0.209171 1.752316 -0.260451 1.134220 -1.585553 3.379395 -0.252502 -0.805817 -0.323497 -1.289548 0.764268 -1.090604 0.046685 1.108016 2.430469 0.140625 0.706280 2.223916 1.680186 -1.548128 2.374223 0.191676 0.840939 -0.860324 -0.322352 0.510745 0.694021 -0.614861 1.393603 -2.914225 -2.888227 -2.122830 -3.778823 0.028432 0.593591 0.681639 -0.142751 -0.242916 -2.883144 -1.757816 2.169886 -0.968797 3.387639 1.335160 1.649751 1.779451 2.779721 -1.414516 -0.185970 -0.758541 -0.405428 -0.897623 -1.398142 -1.448518 2.465041 -1.092042 1.342301 2.177176 -0.382143 1.110311 -0.080910 1.341911 -1.464391 3.602456 1.293642 -0.633964 2.004847 0.891829 3.517196 -0.351189 -1.666535 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = -0.825758 -2.535540 4.215679 3.309539 -0.369538 1.561437 0.751290 -2.356127 3.683524 -0.117941 -0.699517 0.762750 -2.782369 0.863971 -0.682039 1.315440 -3.639556 -3.039174 -0.205324 -1.737190 -1.415515 -2.846779 0.669223 1.156891 1.014435 1.244093 -1.967369 0.014955 -3.155408 -0.891718 3.292459 -1.297873 1.958094 1.174555 0.563451 -8.427751 2.902133 1.694432 -0.857944 -3.473330 0.277530 -2.475801 0.584621 -2.111779 -0.768293 0.450500 0.521308 1.990708 1.957169 0.066933 -0.076812 0.084193 -0.846098 5.882112 -2.382169 2.216561 1.409625 -0.215220 -0.762218 0.505054 0.972054 0.364472 2.367207 2.705682 -1.845116 -1.844481 0.030622 -2.077986 -3.674121 2.747787 0.610527 0.267905 -2.453768 -0.407594 -2.752805 -1.107284 -1.029903 2.969778 5.121269 -2.845033 3.256569 0.728990 2.760380 0.125240 2.144466 0.038612 3.987845 0.906775 -2.491992 -0.325951 -3.767237 -0.844337 -0.009768 -0.492889 -0.610133 -3.044208 0.891999 -3.279845 -3.396785 1.186194 0.494753 0.475722 -3.172488 -0.544980 2.696974 1.448592 -1.861890 -3.589374 -1.547589 0.982355 -0.958640 -1.051428 0.633385 -0.545820 -0.891782 -2.658736 -3.571962 -1.193641 0.834952 -2.143650 -0.861124 3.179631 -2.625394 0.555994 -0.215227 0.411443 -0.948110 3.098886 0.082603 0.949607 1.053843 -0.978466 -2.871322 -0.106315 0.810853 4.416816 -0.660828 -0.598245 -0.615386 0.880276 -2.082488 -0.837214 -0.247156 1.160812 2.067861 -1.275421 -2.294833 -1.575537 0.237226 -4.335623 0.871852 -2.666481 -0.445349 1.751663 2.814692 2.767444 2.043642 3.969349 -2.922892 2.846825 -0.871695 0.312856 2.153592 1.043985 1.892742 -1.626857 -2.360342 1.396786 0.589099 0.817713 0.817524 -1.859607 -0.078399 -2.726348 -2.270496 1.009756 1.724412 0.371573 2.276729 1.332994 2.431214 -4.878186 1.308021 1.560080 -0.003740 0.542586 -0.035742 -3.385559 2.096590 0.544922 -0.232704 2.331778 -0.567552 -2.531850 0.407458 0.042312 1.262070 -2.191573 -0.013496 -2.119633 -0.723689 -2.588681 0.671274 -1.702887 -1.525246 -1.575986 -0.942189 3.698972 -2.349536 -3.474715 3.766603 -0.998811 3.116980 -4.872476 2.086808 -2.056519 3.045162 -1.528171 -0.322576 -0.459705 0.303410 -1.040520 0.753011 1.729262 -1.242414 1.151431 3.708933 1.265847 1.280846 0.898312 2.552349 0.318040 0.832471 -1.140185 2.752091 -0.487707 -1.163453 0.633174 -1.637083 1.403329 -0.317539 0.900326 3.135588 3.391765 1.411801 2.773940 2.583845 1.340146 -1.842525 0.817995 -0.446005 1.851961 -1.288877 -0.183430 -0.344893 1.219116 -1.188311 1.346357 -3.532868 -5.211289 -3.091851 -3.597286 -0.613408 -0.475554 0.213735 0.029781 0.528073 -3.661830 -1.182911 0.883815 -1.461126 3.887154 1.413708 1.394846 2.551558 3.534921 -2.588099 -1.581977 1.354130 0.407086 -1.333641 -0.027625 -3.398996 2.526553 -2.530186 1.901718 3.389317 -1.122350 0.250973 -0.336117 3.599161 -1.792541 4.688678 2.151811 -2.097995 2.017060 1.568502 3.962684 1.732397 -2.151007 -PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -1.520307 -3.262220 3.037271 3.056426 1.207911 2.231150 1.232679 -1.248258 2.046274 3.426658 -1.230035 1.756175 -2.208945 -0.525819 0.655367 1.193385 -0.840714 -2.231778 0.627294 -0.510390 -0.456336 -2.246406 -0.885512 1.739647 0.783693 0.239992 -0.951241 -0.157342 -3.556549 -3.787942 0.219246 -0.459766 1.656002 0.700981 0.589190 -4.063704 2.152293 3.102020 -0.275952 -3.634710 -0.002400 -0.982777 -0.592308 1.130058 0.705381 1.594750 1.301287 0.439883 0.110834 1.174616 1.428255 -0.956390 1.702753 3.205171 0.056548 3.238655 2.760218 -0.214222 0.683851 0.758308 0.875526 -0.485427 2.266070 2.193200 -1.127523 -0.546388 -0.017198 0.201575 -2.670423 1.122791 0.684994 -1.316397 -1.338204 -0.953174 -0.639074 -0.682170 -1.256175 0.583695 4.334839 -0.897482 4.442408 2.196018 2.545721 -0.674631 2.461926 -0.533323 2.870070 1.102091 -2.589853 -0.006697 -2.332030 -1.800409 -0.069344 2.233242 -1.663977 0.826684 1.057049 -1.356166 -3.316656 1.965398 -0.483749 -0.136210 -2.581331 0.333051 1.873544 0.995639 -0.905398 -3.145026 -2.329413 1.214568 -1.985548 -1.791810 -0.989142 -0.509649 -0.826718 0.680226 -2.188444 -1.025808 2.015530 -2.367276 -1.770669 2.380615 -0.601949 1.944945 -0.616024 0.153806 0.096712 0.629621 1.183446 1.307626 1.724046 -1.389472 -4.464616 0.771583 0.628728 0.310536 -1.011759 -0.259092 0.919716 1.029934 0.452006 2.277342 -0.842677 2.701596 2.818422 -0.145359 -1.403854 -2.527036 0.358053 -2.003822 1.318846 -1.778487 -0.354015 -0.803868 2.371936 -0.121472 0.550553 2.392565 -2.248628 2.168992 -0.391548 0.934391 0.389523 -0.087765 0.989817 -1.545601 -2.129601 1.395777 3.189721 -0.009323 1.053122 -1.291521 -0.067494 -1.091490 -2.313617 1.414258 -0.241040 -0.088116 2.768397 1.131367 6.644045 -2.513674 0.599935 -0.077833 -0.005543 0.552272 -0.465195 -3.260027 1.446124 0.269445 1.127624 3.423311 -0.101901 -1.681020 0.584070 0.060711 0.102942 -2.041645 2.838054 -2.401536 -0.223830 -0.743524 -0.199665 -1.401390 -1.695488 -1.067379 1.219140 3.407737 -0.227470 -2.975436 1.618598 -1.238530 0.246881 -4.081965 2.962718 -1.734369 0.985069 -1.796368 -1.284327 -0.523151 1.487558 0.104895 0.140132 1.592834 -1.913002 2.229490 2.442683 0.328047 0.657333 1.116310 0.862594 -0.180875 -0.927673 -1.528083 1.958529 0.240529 -0.066628 -1.096914 -1.445486 2.421060 0.349785 -1.223278 0.250179 2.679273 -1.733465 -0.232031 1.924473 -0.094019 -1.625668 1.505805 0.583504 2.388313 -1.337292 -0.446313 -1.379018 -0.468972 0.096210 1.670133 -3.180365 -1.346963 -0.181748 -2.681118 -1.667526 1.727766 1.430258 1.231797 0.598988 -3.603525 -1.694204 2.082965 -0.832148 1.282139 1.295374 2.095212 2.240561 1.547230 0.639106 -1.217581 -1.580219 -0.526362 -2.156529 -1.237273 0.003469 1.175328 -1.218640 2.602835 0.838225 0.131718 0.601320 -0.414626 2.033739 -1.777491 3.557061 2.043088 -1.426462 0.768396 1.111465 3.902030 -2.991906 -1.874567 -PE-benchmarks/m-coloring-problem.cpp__graphColoringUtil(bool (*) [4], int, int*, int) = -3.463545 -5.804288 5.221646 4.819350 2.646211 3.895423 2.394290 -1.830413 3.930780 5.274139 -2.027819 3.434544 -3.814338 -1.221746 0.330849 1.680181 -1.030335 -4.713768 1.493778 -0.575447 -0.595984 -4.086762 -1.566486 3.157791 1.151473 -0.546938 -1.939278 -0.025868 -7.424976 -6.587013 0.509938 -0.860055 2.864429 -0.622742 0.818706 -7.967087 3.862283 5.660973 -0.328991 -6.929074 0.098976 -2.039013 -0.977544 1.643178 0.832731 2.590295 2.591483 0.575091 -0.065793 1.999206 2.129102 -1.206426 1.714189 5.954199 0.058247 5.570097 4.782392 -0.073058 0.709592 1.246339 1.582491 -1.109449 4.070843 3.936873 -2.695191 -0.601852 0.248039 0.411756 -5.118381 1.627332 1.382730 -2.481580 -1.705836 -0.965139 -1.672524 -1.068648 0.468922 0.423693 7.602086 -1.402835 8.049210 3.302416 5.256088 -0.929583 4.191592 -0.909140 4.736652 1.950699 -4.739845 -1.211213 -5.128442 -2.199537 -0.746813 4.044884 -2.710053 1.979791 2.122624 -2.007578 -5.685502 3.090844 -1.129848 -0.262904 -5.344706 0.823569 3.748024 2.480006 -1.551345 -5.506963 -4.478331 2.551247 -3.804271 -3.132898 -1.088522 -1.173094 -1.584525 0.222900 -3.758743 -1.954837 4.002397 -4.165050 -3.379022 4.147833 -2.609905 3.482060 -1.146604 0.247940 0.191390 0.887831 2.317961 1.560351 2.954171 -3.524510 -8.425766 0.693485 0.676954 1.982069 -2.086434 -0.134276 1.685611 1.797188 1.021034 3.192182 -2.028473 4.143697 4.397774 -0.446670 -2.524763 -4.523465 1.179595 -3.197858 1.919859 -3.235624 -0.537241 -0.523514 4.210534 -0.234601 0.792941 5.630731 -4.316059 4.869163 -0.426582 1.216106 0.536172 -0.768959 1.689375 -2.695422 -3.906732 2.672662 5.422287 0.240220 1.527613 -2.280735 0.005727 -2.230950 -4.711318 2.074085 -0.246188 0.515201 4.587554 1.655388 10.263898 -5.376320 0.500287 -0.341498 -0.068031 0.942223 -1.044073 -5.641278 2.106653 0.563140 1.892239 6.340272 -0.048066 -3.894999 1.123427 0.488389 0.278644 -3.649568 5.034794 -4.270186 -0.414800 -0.893599 -1.234208 -2.498501 -2.769594 -2.650691 1.038584 5.941945 -0.128851 -6.805486 2.301109 -2.213700 1.241424 -8.252713 4.168528 -3.106802 2.339606 -2.526973 -1.152722 -1.072175 2.616332 0.237801 0.215921 2.790735 -3.344486 4.355713 4.786594 0.564478 1.157176 1.933009 1.309118 -0.268194 -1.732729 -2.483182 2.990349 0.014517 -0.945324 -1.343507 -2.559484 4.426320 0.840491 -2.102329 0.268164 5.032927 -2.909069 0.373613 3.571541 -0.154242 -2.879904 2.131932 1.046799 4.489674 -1.887889 -0.724063 -2.701395 -0.412913 0.430045 2.869044 -5.461480 -3.247311 -0.282440 -6.747057 -1.905894 2.284841 2.174597 1.774969 1.211532 -6.774523 -2.717331 3.545301 -1.206768 5.055219 2.550544 3.668012 3.897349 2.466209 -0.059706 -2.242076 -1.942722 -0.849966 -4.044222 -2.396817 -0.033869 1.686270 -2.490347 4.591950 1.630150 0.273553 0.889985 -1.413620 2.726302 -2.906073 6.712512 3.773699 -2.756375 1.089350 0.746237 7.406730 -5.106310 -3.375637 -PE-benchmarks/m-coloring-problem.cpp__graphColoring(bool (*) [4], int) = -1.462217 -4.006027 3.953325 3.739636 1.188233 2.420160 1.529283 -1.324536 2.754072 2.942593 -1.689636 2.298690 -2.743054 -0.641736 0.527786 1.517820 -1.667206 -3.162474 1.100676 -0.146368 -0.226684 -2.803052 -0.532724 2.148159 1.095506 1.242605 -1.206287 -0.074789 -4.487074 -4.267919 1.083228 -0.776865 2.166586 1.516020 0.790341 -5.410667 2.818036 3.575800 -0.285459 -5.042174 0.137173 -1.326624 -0.740412 0.229581 0.783096 2.168830 1.792892 1.597625 0.101391 1.524155 0.555806 -1.158784 1.511625 3.333647 0.055203 3.584319 3.418855 -0.145411 0.750097 0.405415 1.254036 -0.601091 2.692839 2.920306 -1.776103 -0.736506 -0.248474 -0.400824 -3.596734 1.412237 1.068155 -0.966290 -2.019427 -0.683353 -0.839064 -0.318324 -1.340462 1.232592 5.424507 -1.306148 5.441520 2.277300 3.607198 -1.082812 2.478603 -0.451194 2.916572 1.554585 -3.086562 -0.724927 -3.955901 -2.553337 -0.197745 1.534201 -1.786931 0.929428 1.313459 -1.410654 -3.756928 1.896158 -0.472614 -0.268869 -2.950222 0.876264 2.539228 1.937720 -0.861847 -3.523582 -2.343730 1.293239 -2.448034 -2.038356 -1.010917 0.206298 -1.366059 0.019967 -2.921620 -1.265751 2.545949 -2.858561 -1.206156 2.568245 -1.655920 2.161220 -0.878557 -0.178318 0.112753 1.310327 1.814414 1.080233 2.903775 -2.148186 -4.681110 1.480200 1.000724 1.992617 -1.466058 -0.182427 1.087218 1.285732 0.535202 1.422374 -0.959599 2.505331 2.894747 -0.650940 -2.088349 -3.231453 0.154999 -2.419509 1.578989 -2.401153 0.397013 0.357507 2.949987 -0.031937 0.892536 3.726175 -3.761651 3.022650 -0.408324 1.290850 0.408963 0.952668 1.175995 -1.770674 -2.441182 2.093118 3.250674 0.072598 1.067570 -1.613312 0.247854 -1.723780 -3.157956 2.135393 -0.013734 0.223327 3.053397 1.087369 5.755394 -2.824391 0.135348 0.135135 0.124209 0.337149 -0.193861 -4.014055 2.371061 -0.023796 1.801285 3.830603 -0.134340 -2.283728 0.850332 0.297641 0.006807 -2.364729 3.045859 -2.878850 -0.351920 -0.988770 -0.013714 -1.502610 -2.143329 -1.570343 1.146776 4.265738 0.194778 -4.128904 1.599789 -2.228551 1.165704 -5.218439 2.715439 -2.209990 1.272447 -1.372011 -1.044237 -0.540328 0.480662 -0.009664 -0.702560 1.976522 -1.768269 2.450704 2.998124 0.577994 0.136211 1.550079 0.955633 -0.138956 -0.655636 -1.473839 1.855670 -0.092536 -0.127782 -0.688750 -1.665410 2.756380 0.234715 -1.586580 1.481050 3.236352 -1.076323 1.011776 1.784483 0.236360 -2.217508 1.359613 0.714879 3.060704 -1.390711 -0.590068 -1.705733 -0.176091 -0.060814 2.171506 -3.735179 -2.989745 -0.320421 -4.346850 -1.873423 0.826324 2.030394 0.927095 0.765684 -4.322722 -1.990596 1.830167 -0.794590 2.800684 1.753703 2.105280 2.687075 1.745717 -0.393072 -1.651402 -0.958818 -0.024024 -2.460358 -1.169271 -0.601637 1.359018 -1.738962 2.716452 1.908978 -0.251893 0.468479 -1.931190 3.343628 -1.993359 4.786705 2.542863 -2.309245 0.763914 0.549104 4.523397 -2.599722 -2.443732 -PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -0.886597 -1.513700 1.322568 1.157881 0.231367 0.965452 0.447744 -0.409328 0.927556 0.679420 -0.779256 0.744828 -0.987156 -0.408422 0.164930 0.028762 -0.680358 -1.095373 0.356048 -0.125162 -0.041528 -1.052869 -0.658742 1.023300 0.128930 0.596661 -0.302319 0.329894 -1.771030 -1.222438 0.358020 -0.203457 0.697616 0.614111 0.434933 -2.240317 0.870356 1.389689 -0.092865 -1.868811 -0.030619 -0.749257 -0.268886 0.075451 0.127734 0.756152 0.642778 0.505027 -0.145631 0.176644 0.019031 -0.568068 0.228447 1.375769 0.055098 1.403527 1.561156 -0.097702 0.236436 0.183771 0.339180 -0.332490 0.957921 1.065161 -0.936954 -0.166298 0.150507 -0.196085 -1.190480 0.431603 0.463941 -0.461363 -0.524822 -0.463312 -0.718813 -0.306640 0.014500 0.326554 1.953753 -0.470573 2.177678 0.850360 1.428572 -0.142229 1.215713 -0.107434 1.404932 0.470703 -1.240384 0.054048 -1.583586 -0.882990 -0.060987 0.789284 -0.660288 0.443971 0.413424 -1.101283 -1.389275 0.694239 -0.323727 -0.140510 -1.042689 0.327662 0.889545 0.546952 -0.339657 -1.339141 -0.924074 0.682673 -1.122847 -0.609867 -0.298872 0.273336 -0.348667 -0.227672 -1.058481 -0.249772 1.131566 -0.883078 -0.408881 1.192461 -0.681636 0.828650 -0.245542 -0.131353 -0.028275 0.620084 0.545789 0.057707 0.614384 -0.969282 -1.816951 0.269231 0.120269 0.750354 -0.671206 -0.368278 0.738514 0.434521 0.253550 0.409781 -0.512026 0.946301 0.909964 -0.201721 -0.521728 -1.412212 -0.226859 -1.066789 0.418384 -0.738081 -0.187383 0.143363 1.087286 0.327047 0.220724 1.346666 -1.049120 0.995194 -0.221869 0.271398 0.079487 0.238630 0.487033 -0.680709 -0.856744 0.744183 0.952419 0.257571 0.499277 -0.654434 -0.037217 -0.627803 -1.223526 0.914996 0.107152 0.378774 1.319384 0.664684 2.207457 -1.285028 0.236789 -0.140087 -0.039648 0.132064 -0.061237 -1.253882 0.719292 0.237603 0.496636 1.478561 -0.039241 -0.691070 0.036671 0.201074 0.096286 -1.030396 1.096921 -0.980092 0.011622 -0.439956 0.028193 -0.756236 -0.868330 -0.769096 0.122052 1.574863 -0.221835 -1.689951 0.631348 -0.430408 0.801336 -1.975416 0.604790 -0.826936 1.115908 -0.613175 -0.355047 -0.122554 0.086002 0.067151 0.080343 0.653948 -0.872983 0.844003 0.824498 0.310468 0.309151 0.582257 0.398537 -0.148412 -0.428985 -0.747808 0.509772 0.010776 -0.127501 -0.120860 -0.641239 1.078703 0.399722 -0.321624 0.443609 1.369852 -0.297334 0.255577 1.005242 -0.209229 -0.672615 0.163426 0.197291 1.074105 -0.527194 -0.330564 -0.796943 0.123249 0.219029 0.419538 -1.463906 -1.081601 -0.418586 -1.654379 -0.651487 0.316526 0.521335 0.733291 0.428157 -1.788553 -0.598198 0.945267 -0.374863 1.509625 0.482518 0.857428 1.049470 0.688816 -0.060918 -0.751791 -0.039616 0.127920 -1.088727 -0.167471 -0.549134 0.642723 -0.694884 1.159527 0.672783 -0.175543 0.270848 -0.286758 1.297176 -0.809160 1.728031 0.979217 -1.138638 0.170014 0.362031 1.509059 -0.810385 -0.875157 -PE-benchmarks/m-coloring-problem.cpp__main = -0.143623 -1.479288 1.863728 1.657755 0.131326 0.697080 0.561793 -0.596831 1.090873 0.724596 -0.645728 0.879085 -1.099017 0.148076 -0.227061 0.842449 -1.087465 -1.224753 0.188445 -0.204612 -0.266687 -0.927452 0.144596 0.627863 0.680675 0.732567 -0.646676 -0.282066 -1.518605 -1.255391 0.637755 -0.402233 0.846823 0.587077 0.243541 -2.307182 1.086291 1.228475 -0.283570 -1.907257 0.256126 -0.556843 -0.191971 -0.362209 0.084120 0.611840 0.565270 0.915713 0.247326 0.669082 0.019908 -0.149231 0.631859 1.810087 -0.176086 1.212914 1.314299 0.055015 0.164170 0.017469 0.607527 -0.076409 0.819512 0.976427 -0.357778 -0.608049 -0.432641 -0.529728 -1.246513 0.711948 0.229599 -0.053546 -1.042948 -0.320603 -0.563279 -0.109720 -1.308797 0.944912 2.157744 -1.030771 1.742525 0.708831 1.160309 -0.281826 0.658993 0.027196 0.843774 0.689354 -0.857078 -0.162814 -1.252207 -0.774048 0.068156 -0.046299 -0.726867 -0.867780 0.752791 -0.865285 -1.454493 0.743910 0.132789 -0.136002 -0.587456 0.161814 0.733066 0.875404 -0.640444 -1.237626 -0.623427 0.281125 -0.298374 -0.698600 -0.116378 0.207040 -0.431598 -0.234313 -1.421739 -0.292602 0.726407 -1.063068 -0.076760 0.976419 -0.449574 0.682701 -0.328309 -0.011584 -0.123132 1.051616 0.665520 0.569172 0.787388 -0.273753 -1.313957 0.709407 0.664354 0.957216 -0.613419 0.088925 0.136230 0.502515 0.003111 0.209213 -0.271552 0.704680 0.999007 -0.459133 -1.072011 -1.197189 -0.162599 -1.182812 0.487063 -1.034448 0.023493 0.478857 1.145734 0.384666 0.569651 1.583161 -1.425659 0.876932 -0.140192 0.355550 0.336679 0.500619 0.539826 -0.641633 -1.020387 0.815240 0.949155 0.147182 0.411953 -0.520784 0.206098 -0.877347 -0.791134 0.836121 0.397834 -0.245800 1.147851 0.524658 1.323872 -0.939121 0.002264 0.283985 -0.099446 0.074468 -0.000509 -1.683232 0.988767 -0.031741 0.579168 1.169956 -0.061970 -0.726529 0.617163 -0.169607 0.071381 -0.780674 0.751131 -1.028256 -0.380607 -0.710663 0.482393 -0.487032 -0.627687 -0.540684 0.132346 1.709284 -0.536397 -1.080198 0.727052 -0.532783 0.500078 -1.752992 1.270486 -0.814238 0.771023 -0.242971 -0.382421 -0.042576 -0.036796 -0.282165 -0.369288 0.826419 -0.469967 0.563229 1.269600 0.341096 -0.100238 0.554764 0.726369 -0.170164 0.204367 -0.493260 0.819611 -0.147711 -0.305537 -0.054216 -0.564853 0.672401 -0.223015 -0.230093 1.142490 0.937548 0.152458 0.765289 0.572569 0.538262 -0.951061 0.569561 0.088323 1.210732 -0.694126 -0.153930 -0.472939 0.243145 -0.265088 0.832837 -1.484630 -1.570233 -0.872333 -1.393682 -0.593827 -0.112852 0.661258 -0.095464 0.075838 -1.479820 -0.975032 0.636927 -0.484057 0.762786 0.877695 0.643973 1.134861 0.889381 -0.445296 -0.457054 -0.096190 0.244303 -0.521412 -0.249430 -0.561670 0.633008 -0.824360 0.627961 1.209311 -0.267046 0.281314 -0.492759 1.431236 -0.763232 1.976656 0.927821 -1.030529 0.539918 0.683397 1.648508 -0.382194 -0.985280 -PE-benchmarks/finite-automata-algorithm.cpp__getNextState(char*, int, int, int) = -5.256110 -8.461309 6.612152 6.524283 3.491673 5.963277 3.358547 -2.346819 3.376213 8.137902 -2.848597 5.084379 -4.874480 -3.110615 1.052015 1.172851 -0.194200 -5.574693 1.380728 -0.802117 0.155131 -4.644761 -4.580526 6.576340 1.187627 -2.751219 -2.137312 0.837178 -10.543976 -9.662795 -2.057232 -0.201044 3.578201 -2.671656 2.079742 -7.650774 5.069293 9.665288 -0.024208 -8.841252 -0.120042 -2.191992 -2.104629 3.530593 -0.615974 3.644854 3.365947 -1.270508 -1.502095 2.395497 3.306239 -1.487629 3.994899 7.149592 2.054360 8.583760 7.961244 0.069883 2.305159 1.601932 1.900485 -1.851218 4.903559 3.603408 -2.892198 -0.263179 0.170421 2.479814 -5.432961 0.893650 1.612014 -5.014841 -1.816942 -2.093610 -4.271734 -1.967950 2.821928 -0.805815 9.612996 -1.634487 11.133334 5.602441 6.071606 -0.507238 6.749827 -1.256813 6.394795 2.653429 -5.787200 0.692905 -5.837917 -3.267715 -0.426760 6.675983 -5.189186 2.763637 3.163947 -4.983547 -8.492660 5.321634 -1.896645 -1.693236 -5.893302 0.129399 3.841518 2.366326 -2.140295 -7.156704 -5.648114 4.887570 -4.847091 -4.678883 -1.736790 -0.708378 -0.343733 1.865021 -4.734266 -1.335484 6.771155 -5.112773 -4.263856 6.017580 -2.195367 5.957681 -1.689707 0.026266 0.419370 0.039694 3.121740 2.271309 1.812924 -4.738133 -10.717690 -0.371242 -0.231384 -0.801527 -2.747704 -0.205030 3.974395 3.123681 3.651996 7.555743 -2.544833 6.496180 3.871759 0.792967 -2.110205 -7.144721 -1.088114 -3.450253 2.446423 -3.107508 -2.987266 -0.938048 5.324040 -1.561000 -0.364368 5.605647 -2.905968 4.864443 -0.183451 1.075615 -0.173429 -4.516957 1.851881 -3.390484 -5.664756 4.303067 7.939265 1.599055 2.520919 -2.363628 -0.046726 -1.464078 -5.990449 1.766728 -1.288990 0.691741 7.596608 3.238620 14.405555 -4.547796 0.953748 -2.141948 -0.480747 1.992123 -2.434228 -7.273798 1.635732 1.355844 2.245447 9.878862 -0.156835 -3.979382 1.993319 0.331161 0.249030 -5.590439 8.355409 -5.703093 0.413668 -0.982976 -2.335784 -3.536834 -3.776241 -4.554327 0.887520 8.086417 -1.495172 -8.462358 2.379685 -0.372625 1.166356 -9.853517 6.078396 -3.492140 5.199314 -2.426699 -2.390243 -0.245371 3.459217 0.504582 0.438699 3.728148 -5.708033 5.677467 4.317769 0.196243 1.478818 2.668150 1.024449 -1.331133 -2.923598 -4.992728 3.710756 0.439203 -1.561924 -2.595221 -3.297733 6.130722 1.759944 -2.773922 -2.537547 5.618825 -4.856886 -2.325003 5.346909 -1.718480 -3.391423 2.726108 1.711431 5.381528 -3.183140 -0.885812 -4.555170 -0.761935 2.182557 3.380078 -7.764746 -1.433118 -1.936676 -7.364272 -3.005538 4.160892 2.952385 3.670161 1.135306 -8.907420 -4.729705 6.693633 -1.783542 4.341213 4.003850 5.927112 5.728842 2.516012 2.904419 -2.383964 -3.489336 -1.113621 -5.530444 -3.248390 1.068193 2.001324 -2.908615 6.903618 1.124925 1.142376 2.577192 -0.599265 1.415890 -4.485421 8.223220 4.880390 -4.479522 0.570027 2.752756 8.058777 -9.912525 -4.512872 -PE-benchmarks/finite-automata-algorithm.cpp__computeTF(char*, int, int (*) [256]) = -2.993199 -4.427632 3.331104 3.169749 1.988628 2.939951 2.271499 -1.115456 2.622687 4.023322 -1.711409 2.592248 -2.600727 -1.356088 0.406838 0.739893 -0.250980 -3.169438 1.099355 -0.242889 -0.046829 -3.096098 -1.975970 2.701334 0.558575 -0.703732 -1.086087 0.421107 -5.566951 -5.328062 0.150152 -0.429271 1.858408 -1.061971 0.743118 -5.837828 2.615865 4.639908 -0.076362 -5.053221 -0.085857 -1.340779 -0.970466 1.688074 0.509416 2.109587 1.963111 0.266377 -0.516371 1.294700 1.689429 -1.178811 1.421316 4.221163 0.288030 4.364133 4.157676 -0.041184 0.812077 0.896677 1.010354 -1.025791 2.785390 2.909595 -1.969429 -0.073893 0.332760 0.858683 -3.830541 0.754091 0.996879 -2.215386 -1.442472 -0.884835 -1.725755 -0.855895 0.527248 -0.400189 5.799786 -0.548118 6.454022 2.691607 3.939971 -0.601275 3.260195 -0.708431 3.378669 1.356205 -3.780293 -0.252413 -3.708558 -1.784982 -0.541835 3.910807 -2.139861 2.240970 1.454331 -1.633915 -4.093153 2.329902 -1.117069 -0.378447 -3.584796 0.691293 2.418080 1.435205 -0.946046 -4.171085 -3.536106 2.123192 -2.911987 -2.250937 -0.899757 -0.564831 -0.846338 0.380465 -2.452257 -1.256803 3.344737 -2.957910 -2.506092 2.955723 -1.891363 2.879517 -0.815463 0.054105 0.287570 0.198174 1.806776 1.034396 1.967772 -2.926586 -7.117902 -0.005820 0.090822 1.574449 -1.618355 -0.267431 1.853360 1.308938 1.458974 2.899105 -1.340335 3.159476 2.945916 0.005998 -1.323859 -3.627502 0.302590 -2.023848 1.639584 -1.946967 -0.507121 -0.862179 2.878364 -0.662758 0.164157 3.727709 -2.745054 3.482940 -0.249172 0.710421 0.043976 -1.267188 1.106622 -1.839661 -2.739160 2.085609 4.086336 0.340208 1.317131 -1.581779 -0.049926 -1.245986 -3.387517 1.582418 -0.571631 0.512865 3.534664 1.305891 8.271656 -3.433594 0.515150 -0.735245 0.026308 0.825185 -0.848883 -3.816785 1.782375 0.530869 1.547354 4.831764 0.057613 -2.381618 0.705281 0.356886 0.115344 -2.858625 4.348629 -3.023890 -0.344943 -0.479524 -1.173818 -1.820534 -2.067714 -2.042538 0.997466 4.214549 0.117856 -4.941421 1.288758 -1.089607 0.878885 -5.748395 3.653987 -2.097348 2.269267 -1.942398 -0.892099 -0.424632 2.007374 0.506526 0.180213 1.921982 -2.771563 3.266858 3.118833 0.259414 0.866769 1.473168 0.633380 -0.377987 -1.664498 -2.052792 1.719083 0.262384 -0.639215 -1.136364 -1.793629 3.604791 0.960564 -1.596968 -0.210106 3.783694 -2.593201 -0.424885 2.854488 -0.680516 -1.854813 1.353601 0.904015 3.161264 -1.402613 -0.604697 -2.284593 -0.367954 0.742118 1.807658 -3.862772 -1.507321 -0.097066 -4.769797 -1.632613 2.004137 1.622011 1.830852 0.985204 -5.174603 -1.927148 2.932905 -0.781768 3.335816 1.704598 2.868420 2.722668 1.359755 0.751236 -1.659264 -1.706733 -0.549389 -3.142869 -1.654775 0.341769 0.987684 -1.909214 3.512375 0.609147 0.278691 0.744021 -0.430635 2.009434 -2.160708 4.962012 2.681542 -2.080520 0.564736 0.655081 5.404783 -4.536803 -2.298106 -PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -3.568542 -5.715894 4.948990 4.444864 1.499856 3.892120 1.908549 -1.718617 3.211776 3.656338 -1.674955 3.559444 -3.512221 -1.388970 -0.235019 0.473464 -1.506895 -3.835953 0.790742 -0.821864 -0.498797 -3.647843 -2.746620 4.426952 0.551469 -0.055223 -1.698009 0.123350 -7.681973 -4.124536 0.643651 -0.428797 2.572172 -1.039953 1.226775 -8.057862 2.980057 5.675752 -0.271815 -6.734222 0.147076 -2.402982 -0.502059 1.247468 -0.631034 1.327242 1.793594 0.243311 -0.424742 0.599366 1.028173 -0.537416 1.972740 7.236309 0.108481 5.630382 5.360609 0.044786 0.990699 0.926283 1.320680 -0.905363 3.512658 2.990370 -2.540803 -0.633411 0.257718 0.443348 -4.277350 1.281774 1.127452 -2.535153 -1.623211 -1.271859 -3.155152 -1.457549 0.747061 1.086358 6.697258 -2.166427 7.625727 3.074850 4.454418 0.016073 4.522293 -0.428488 4.588542 1.565513 -3.987101 -0.148646 -5.316051 -0.823426 -0.248426 2.813633 -3.272184 0.097263 2.210868 -3.902290 -5.796558 3.178675 -0.958950 -0.613858 -3.803183 -0.069899 2.814981 2.095151 -1.949262 -5.154902 -4.290682 3.584500 -3.060357 -2.816907 -0.558077 -0.696123 -0.324515 -0.924536 -3.438321 -0.817647 4.348654 -3.269049 -2.843437 4.647809 -2.042989 3.570232 -0.817651 0.267392 0.085168 1.162685 1.979003 0.720720 1.327336 -3.197134 -6.361873 0.400023 -0.195055 1.735917 -2.144648 -0.334559 2.159354 1.815794 1.914139 3.022345 -1.567666 3.470597 2.107399 -0.238052 -1.554160 -4.853245 -0.229988 -3.641253 0.954690 -2.371357 -1.884234 0.289035 3.685553 0.947849 0.287862 3.965318 -2.736179 3.766701 0.060227 0.510664 0.442862 -0.991102 1.537119 -2.464124 -4.016895 2.089112 4.184535 1.000226 1.161802 -1.727112 -0.580590 -1.491256 -3.524779 1.495520 0.497179 0.916545 5.169337 2.436735 9.529767 -5.173919 0.688462 -1.025823 -0.663876 1.058490 -1.780197 -5.029775 1.547872 1.218563 0.644548 6.137287 -0.473622 -2.885517 1.187705 0.356553 0.693731 -3.559820 4.736150 -3.804037 -1.081652 -1.382935 -1.314374 -2.597526 -2.459939 -3.867988 -0.417867 5.735169 -2.885254 -5.803593 2.544575 -0.369336 1.582698 -7.136412 4.071099 -2.502385 3.878435 -1.779851 -1.518440 -0.836004 2.088848 -0.130816 0.538336 2.566840 -4.258768 3.559487 3.957071 0.632310 1.597222 1.839562 1.386613 -0.542043 -1.603097 -3.302066 2.873579 -0.023229 -1.674118 -0.646542 -2.416635 4.223702 1.135540 -1.013998 0.327520 4.715355 -1.742336 -0.292582 4.185647 -0.767233 -2.224222 1.473920 0.418557 3.533202 -1.993888 -0.416668 -2.963271 -0.027870 1.032123 2.042419 -5.462407 -2.948580 -2.010037 -5.223612 -1.215234 1.123908 1.257504 2.280897 0.906909 -7.274335 -3.245010 3.520098 -1.572728 3.980400 2.436071 3.606034 4.145517 2.891653 0.382695 -1.627779 -0.624114 -0.404025 -3.638459 -1.602183 -0.890836 1.756812 -2.221996 4.663249 1.878070 0.446937 1.659859 -0.100635 1.209848 -3.003957 6.401784 3.658588 -3.570417 0.687227 1.703447 5.984241 -4.663932 -3.276824 -PE-benchmarks/finite-automata-algorithm.cpp__main = -0.968789 -1.620400 1.716817 1.510646 0.401273 1.007131 0.698092 -0.687253 1.401793 1.056330 -0.367364 0.787877 -1.290713 -0.075971 -0.021103 0.534887 -0.787976 -1.360670 0.180116 -0.484566 -0.372470 -1.263316 -0.286534 0.844088 0.358858 -0.081336 -0.675676 -0.207150 -2.130193 -1.032967 0.711667 -0.407875 0.903453 -0.112959 0.205066 -3.085802 1.075946 1.358986 -0.276089 -1.945235 0.120601 -0.894955 0.182490 -0.019350 -0.079340 0.372272 0.525850 0.274825 0.387078 0.286482 0.473904 -0.175934 0.296618 2.571530 -0.579550 1.504459 1.225399 -0.063904 -0.007659 0.336359 0.456427 -0.155150 1.184555 1.109882 -0.792418 -0.481621 -0.039798 -0.307999 -1.640926 0.722833 0.274869 -0.386168 -0.841600 -0.282740 -0.879110 -0.579875 -0.470571 0.651394 2.312784 -0.945414 2.156275 0.807639 1.387934 0.018421 1.223611 -0.029028 1.482536 0.431560 -1.289232 -0.080334 -1.551684 -0.244784 -0.095187 0.627813 -0.653698 -0.440536 0.636464 -0.816381 -1.765489 0.926852 -0.101051 0.123093 -1.468879 -0.050204 0.979704 0.789540 -0.833186 -1.771977 -1.265135 0.763980 -0.676578 -0.755650 -0.000260 -0.520963 -0.357725 -0.708533 -1.308022 -0.495476 0.911857 -1.177881 -0.924086 1.483543 -0.931378 0.832860 -0.151888 0.198546 -0.187149 0.822077 0.496234 0.492549 0.565150 -0.866362 -2.287518 0.003308 0.225542 1.269670 -0.414343 -0.049854 0.152881 0.445881 -0.036152 0.543545 -0.135926 0.996636 1.032910 -0.322896 -0.736312 -1.172143 0.243990 -1.453599 0.488022 -1.019380 -0.153324 0.215652 1.247661 0.604531 0.504980 1.700740 -1.136482 1.333222 -0.239556 0.097251 0.541864 0.082990 0.720477 -0.773325 -1.175776 0.549303 1.167696 0.225583 0.430132 -0.712027 -0.091618 -0.852292 -0.987245 0.344494 0.339268 0.015547 1.368303 0.649912 2.573480 -1.927182 0.368669 0.159653 -0.051222 0.322948 -0.355315 -1.680797 0.725348 0.312574 -0.092424 1.472110 -0.174450 -1.130625 0.367761 -0.082768 0.353254 -1.057171 0.967047 -1.141906 -0.396922 -0.735013 -0.121428 -0.854612 -0.811235 -0.867011 0.011862 1.803731 -0.672772 -1.627231 1.047470 -0.259492 0.615310 -2.259945 1.661217 -0.895886 1.098536 -0.858328 -0.411488 -0.337904 0.893199 -0.114895 0.146435 0.837610 -1.030329 0.975748 1.622511 0.381802 0.534370 0.545331 0.828215 0.035708 -0.193634 -0.743603 1.124973 -0.125073 -0.467335 0.011641 -0.780420 1.155103 0.178968 -0.135520 0.666779 1.587768 -0.325579 0.435415 1.230955 0.175462 -0.771510 0.534654 0.064464 1.257467 -0.612212 -0.018528 -0.645760 0.151260 -0.098271 0.703847 -1.696383 -1.401372 -0.528088 -1.562753 -0.372753 0.453299 0.235565 0.429849 0.335989 -2.132352 -0.817611 0.737337 -0.620732 1.272938 0.654423 0.945244 1.292805 1.241543 -0.353270 -0.708590 -0.036257 -0.142091 -0.933996 -0.401623 -0.596281 0.739770 -1.019346 1.212495 0.816620 -0.080911 0.246271 -0.008501 0.934052 -0.920091 2.167697 1.111310 -0.842880 0.713349 0.742305 2.194385 -0.770838 -0.986146 -PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -3.341373 -5.208150 4.360760 4.044744 1.516793 3.890361 1.487925 -1.802729 2.720911 3.615165 -2.123607 3.109683 -3.063130 -1.641059 0.098571 -0.119090 -1.073188 -3.405888 0.559821 -0.777242 -0.132344 -3.317361 -2.867753 4.308126 0.387683 0.293806 -1.477542 0.962106 -6.856995 -4.735161 0.295797 -0.110302 2.317203 -0.279172 1.364818 -6.557721 2.853801 5.769186 -0.147056 -5.998691 0.019685 -2.088021 -1.312164 1.719818 -0.297036 1.930068 1.530350 -0.100548 -0.807732 0.530965 1.124591 -0.792100 1.787568 5.322400 0.685907 5.295853 5.172154 -0.066326 1.195085 1.010946 1.074924 -0.700400 3.298175 2.894624 -2.487870 -0.563117 0.618973 0.912533 -3.991944 1.237769 0.953509 -2.823824 -1.190922 -1.687717 -3.115337 -1.136575 2.017643 0.429026 6.446636 -1.096611 6.962688 3.021625 4.062987 -0.303411 4.531687 -0.704036 4.794711 1.621567 -3.720296 0.088020 -4.837932 -1.731981 -0.229107 3.692058 -3.145657 1.766787 1.901865 -4.509519 -5.284477 2.845909 -0.996197 -0.959090 -3.627519 0.304031 2.723366 1.363673 -1.069974 -4.584143 -3.445434 3.495665 -3.404329 -2.718755 -1.248612 -0.170701 -0.333944 0.395958 -3.009433 -0.545700 4.041259 -2.826203 -2.423412 4.271294 -1.761671 3.124334 -0.985207 0.172648 0.067448 0.457188 1.415819 0.788527 1.519184 -2.967235 -5.886207 0.151826 -0.357395 0.992895 -2.449355 -0.767446 2.414156 1.664758 1.691102 3.302157 -2.023448 3.458491 2.401415 0.010052 -1.251925 -4.626377 -0.719890 -3.412997 0.839489 -1.986613 -1.996916 -0.335412 3.511369 0.559369 0.184383 3.536587 -2.487628 3.199522 0.113247 0.616990 0.217005 -1.663620 1.252413 -2.374901 -3.748189 2.384163 3.943449 0.843054 1.487713 -1.507315 -0.656104 -1.299385 -3.805893 2.073948 0.018233 1.441395 5.004221 2.555055 8.759445 -4.235728 0.985924 -1.102717 -0.621123 1.005011 -1.499968 -4.494248 1.548312 1.216920 1.742026 6.414875 -0.266403 -2.237007 0.538971 0.679822 0.557201 -3.630535 4.929265 -3.671445 -0.301730 -1.128707 -1.484073 -2.384586 -2.524957 -3.350735 -0.161164 5.341267 -1.868970 -5.730266 2.519042 -0.495973 1.536951 -6.624655 2.748336 -2.462687 4.134612 -1.642289 -1.282155 -0.556290 1.188954 -0.226115 0.812976 2.313510 -3.919793 3.613394 3.099214 0.521662 1.442315 1.524400 0.877669 -0.842370 -1.651912 -3.471803 2.459454 0.364436 -1.163056 -1.141913 -2.258517 3.866985 1.040564 -1.281009 -0.533457 4.353605 -1.934650 -0.860728 3.830307 -0.940929 -2.131040 1.470642 0.690042 2.928432 -1.860300 -0.903125 -2.671996 -0.111895 1.305928 1.748520 -5.162683 -2.219281 -1.915737 -5.188807 -1.553339 1.229468 1.443822 2.638103 0.876987 -6.245404 -2.860137 3.137578 -1.245527 4.387466 2.129713 3.638937 3.629690 2.283306 0.815189 -1.420309 -1.280507 -0.347590 -3.794675 -1.681234 -0.772818 2.005850 -1.356134 4.403435 1.556027 0.323360 1.836714 0.088154 1.412425 -2.867423 5.904027 3.354329 -3.370959 0.408817 0.894908 5.388439 -4.715398 -3.066910 -PE-benchmarks/naive-algorithm.cpp__main = 0.060804 -1.624830 2.379127 2.088634 -0.099641 0.856857 0.399895 -1.055389 1.184506 0.594060 -0.858795 1.095357 -1.273268 0.298653 -0.686568 0.910060 -1.591318 -1.281412 -0.169505 -0.442211 -0.332485 -1.054274 0.195658 0.993443 0.876429 1.131609 -0.919974 -0.014968 -1.763629 -1.599384 0.683104 -0.359244 0.943807 0.584194 0.352969 -2.425045 1.442779 1.700492 -0.399893 -2.123141 0.468646 -0.700922 -0.525489 -0.464753 -0.281710 0.610203 0.302865 1.011554 0.339716 0.619204 0.012389 0.149487 0.980489 2.218592 -0.216083 1.546163 1.643967 0.153742 0.283651 0.003993 0.645706 0.206762 0.812269 1.085132 -0.269064 -0.959186 -0.480615 -0.472310 -1.319461 1.042385 0.000652 -0.222924 -1.278939 -0.547787 -1.141742 -0.018636 -1.090554 1.243877 2.566086 -1.218198 1.813088 0.736785 0.982474 -0.304096 0.799316 0.011724 1.172515 0.867412 -0.750470 -0.096157 -1.290928 -0.741126 0.304572 -0.096909 -1.131577 -1.400276 0.983332 -2.095588 -1.865285 0.784445 0.368815 -0.530939 -0.237739 0.062543 0.730728 0.718253 -0.650458 -1.415975 -0.370293 0.571009 -0.140824 -0.837746 -0.206352 0.386521 -0.215078 0.035372 -1.805373 -0.030751 0.744870 -1.025637 0.126762 1.227373 -0.181511 0.643637 -0.396960 0.111065 -0.206827 1.201158 0.428669 0.808628 0.481930 0.154275 -0.751544 0.882100 0.738292 0.493549 -0.979018 0.076146 0.135895 0.623411 -0.082103 0.354772 -0.648445 0.724592 0.826750 -0.549529 -1.219357 -1.368662 -0.803809 -1.741867 0.364797 -1.086428 -0.715291 0.531592 1.366478 0.573647 0.763429 1.564195 -1.389524 0.625877 0.076064 0.308939 0.569146 0.083556 0.620506 -0.779049 -1.419226 1.137391 0.814985 0.329513 0.418046 -0.333636 0.095786 -1.015302 -0.708259 1.154398 0.578900 -0.101800 1.582872 0.886950 1.433382 -0.798448 0.245490 0.436202 -0.287579 0.141091 -0.127776 -1.999000 1.067130 0.129133 0.967345 1.684326 -0.077749 -0.557705 0.711686 -0.174500 0.268935 -1.123501 0.939845 -1.194875 -0.379835 -1.018610 0.540946 -0.402856 -0.674143 -0.781963 -0.213414 2.077151 -1.422805 -1.164358 1.272132 -0.245435 0.737618 -1.894679 1.268740 -0.944405 1.487090 0.062981 -0.406105 0.175869 -0.541732 -0.723871 -0.211656 0.950658 -0.635129 0.616835 1.288044 0.462940 -0.060593 0.458196 0.900020 -0.431056 0.553333 -0.894675 1.110564 -0.032737 -0.604017 -0.093837 -0.659990 0.466842 -0.485434 -0.021131 1.244288 1.002657 0.495222 0.771401 0.711623 0.870052 -1.125247 0.834668 -0.026910 0.978643 -0.925398 -0.336817 -0.335703 0.386895 -0.263749 0.997902 -1.917038 -1.903899 -1.862262 -1.545420 -0.576731 -0.615856 0.845088 -0.121867 -0.091035 -1.688010 -1.439164 1.150864 -0.624609 0.946139 1.195214 0.827418 1.308268 1.208015 -0.403736 -0.156476 -0.182130 0.497822 -0.462387 -0.255968 -0.935792 1.051710 -0.747535 0.671167 1.672187 -0.450518 0.665244 -0.361463 1.246071 -1.002809 2.328155 1.048082 -1.332498 0.702496 0.836487 1.607761 -0.249692 -1.239354 -PE-benchmarks/union-find.cpp__createGraph(int, int) = -0.157193 -1.914136 2.644508 1.855448 -0.191859 1.314135 0.905729 -1.440732 1.362087 0.566948 -0.400046 0.908774 -1.149925 0.049408 -1.063001 0.246913 -1.683282 -1.555870 -0.360767 -1.118717 -0.971583 -1.207196 -0.336766 1.047862 0.517225 0.284301 -0.788535 -0.358794 -2.533605 -0.598058 1.042348 -0.155803 0.691270 0.114638 1.029580 -3.251079 1.385925 1.564654 -0.464589 -2.270355 0.020629 -0.545270 -0.497366 0.186765 -0.177616 0.228374 0.117794 1.224471 0.226497 0.370989 0.524416 0.162019 -0.026536 3.879494 -0.116829 1.778026 1.697898 0.098227 0.761470 0.909103 0.711083 0.139238 0.656326 1.008633 -0.006437 -0.319823 -0.019979 -0.851583 -1.104041 1.376229 0.536292 -1.079904 -0.689357 -0.839659 -2.010045 -0.451163 -2.066781 1.405003 2.858354 -1.612123 2.041872 0.784555 1.736024 -0.090518 1.750688 -0.008997 2.269116 0.791585 -0.932482 0.591073 -1.911159 -0.314318 0.032720 -0.557392 -1.330362 -2.276677 1.375767 -2.392808 -2.145312 1.682964 0.348613 -0.306320 -0.691783 -0.190620 0.938207 0.488308 -1.680413 -1.838806 -1.448826 1.334483 -0.644598 -0.453554 0.882405 0.139554 -0.067282 -0.608113 -1.483718 0.095168 1.331812 -0.863340 -0.732289 2.245232 -0.662743 0.787324 -0.342606 -0.130826 -0.518680 1.233219 0.291676 0.584872 -0.280926 0.000590 -2.202939 0.581405 0.394097 1.041276 -0.157201 -0.032360 0.515067 1.186518 -0.231554 1.086423 -0.801428 0.918087 0.623449 -0.511247 -1.559063 -1.490363 0.078051 -1.860077 -0.040046 -1.169863 -1.460459 0.493966 1.667842 2.115170 0.317539 1.019256 -0.788710 1.031946 -0.353066 0.269373 0.120099 -0.710979 0.636196 -0.885295 -1.649489 0.474714 0.693092 0.905407 0.807796 -1.036936 -0.334451 -1.048919 -1.234744 0.295767 1.286464 -0.245415 1.677209 1.631046 1.144536 -2.304713 -0.013011 0.241336 -0.614414 0.064399 -0.591537 -1.990271 0.466826 0.529484 0.051368 1.824034 -0.350057 -0.354955 0.747776 -0.343991 0.627879 -1.046855 0.242055 -1.073807 -0.706866 -1.153599 0.857628 -1.204977 -0.383395 -1.176043 -1.472343 2.369546 -2.385805 -1.657522 2.149469 -0.540084 0.888066 -1.995528 1.358685 -0.688424 1.554832 -0.020466 -0.158609 -0.549487 0.785342 -0.676342 1.014098 0.798872 -1.599060 0.747173 2.114954 0.361922 0.773033 0.406250 1.443811 -0.992277 -0.194583 -1.491328 1.775976 -0.395306 -1.288900 -0.014925 -0.870557 0.810903 -0.395492 0.735153 1.025959 0.857757 0.402624 0.381957 1.398398 0.195252 -1.083401 0.419991 0.156823 0.862068 -1.198504 -0.134067 -0.360423 0.239884 -0.194820 0.085981 -2.083748 -1.611713 -2.767810 -1.580939 -0.438488 -0.684766 0.246764 0.111797 -0.126537 -2.015323 -1.471819 1.173329 -0.927316 -0.091419 1.599564 1.050102 1.915707 1.948295 -0.567976 0.274151 0.034430 0.322968 -0.925497 -0.472604 -1.202322 0.998559 -1.557858 1.302221 1.550843 0.214486 1.202775 0.532268 1.661247 -1.453295 2.211323 1.437518 -1.445555 0.302207 1.933461 2.256106 0.052202 -1.358301 -PE-benchmarks/union-find.cpp__find(int*, int) = -1.694252 -2.614550 2.640396 2.474432 0.670160 1.857326 0.855068 -1.281123 1.313594 2.363206 -0.666927 1.447124 -1.870920 -0.315939 -0.258626 0.819892 -0.754289 -1.868960 0.003961 -0.919396 -0.656572 -1.526867 -0.925032 1.700049 0.650178 -0.448130 -1.095170 -0.053668 -3.169547 -3.162937 -0.171286 -0.183295 1.374945 -0.516352 0.389676 -3.969632 1.802797 2.938808 -0.350136 -2.703102 0.253352 -1.153314 -0.464045 0.768375 -0.564729 0.846076 0.674259 -0.586515 0.191343 0.676846 1.345430 -0.015346 1.158870 3.464653 0.016238 2.702653 2.114878 -0.006094 0.188578 0.677163 0.650436 -0.240314 1.747516 1.168595 -0.809008 -0.621819 -0.074480 0.186035 -1.881731 0.931161 0.083607 -1.597102 -0.708256 -0.879826 -1.604448 -0.959449 -0.076938 0.424835 3.255192 -1.265552 3.246048 1.347625 1.489720 -0.104105 2.214186 -0.357706 2.487721 0.811529 -1.560109 0.151418 -0.999561 -0.622006 0.002735 2.172322 -1.711500 -0.327036 1.420530 -2.061384 -3.019436 1.755227 -0.232486 -0.452491 -2.401214 -0.328102 1.152903 0.823853 -1.236465 -2.576235 -1.912734 1.539115 -0.935694 -1.501032 -0.421047 -0.511729 -0.244171 0.255213 -2.036838 -0.395778 1.693070 -1.739492 -1.668725 2.316404 -0.306326 1.533347 -0.379375 0.385772 -0.214006 0.973684 0.382861 1.094839 0.129524 -0.522144 -3.429788 -0.370212 0.362362 -0.010906 -0.978274 -0.288759 0.652263 0.941812 0.257397 1.961897 -1.003457 2.218756 2.174260 0.052408 -1.115674 -1.917224 -0.031151 -2.100515 0.432226 -1.515339 -1.079893 0.105069 1.950142 0.265440 0.327288 2.391245 -1.120716 1.621952 -0.116361 -0.050211 0.587396 -1.169226 0.923861 -1.338933 -2.196591 1.310215 2.197936 0.763405 0.684068 -0.671726 -0.156432 -0.867825 -1.913263 0.919498 0.193514 -0.005248 2.453824 1.381262 4.906168 -2.365180 0.694494 -0.234079 -0.542771 0.720749 -0.749540 -2.703592 0.452545 0.659918 0.149578 3.065667 -0.182037 -1.420077 0.705265 -0.235156 0.414463 -2.004432 2.181510 -2.003947 0.085399 -0.914148 -0.794048 -1.093170 -1.161578 -1.333513 -0.249257 2.847410 -1.642765 -2.547822 1.693480 -0.039119 0.531755 -3.655449 2.137562 -1.278288 1.783005 -1.237492 -0.813272 -0.236994 1.448123 -0.169002 0.605251 1.332615 -1.895595 1.620953 2.364570 0.257481 0.770321 0.614911 1.161777 -0.324200 -0.437115 -1.634391 1.985317 0.130351 -0.779064 -0.695437 -1.248219 1.397260 0.197680 -0.288764 0.103032 1.994530 -1.121921 -0.323584 2.138627 0.190097 -1.153782 1.231234 0.218371 1.781774 -1.193408 -0.330279 -0.994504 0.247996 0.254774 1.047015 -2.817658 -1.404446 -1.606629 -2.405004 -0.682247 1.263001 0.900038 0.742636 0.173073 -2.923017 -1.714237 2.475503 -0.981532 1.769322 1.339643 1.943660 2.061755 1.591895 0.419235 -0.590874 -0.980077 -0.220410 -1.417398 -0.950913 -0.200975 1.058245 -1.135187 2.118817 0.874671 0.195071 1.052139 0.502235 0.919604 -1.612889 2.919864 1.539348 -1.319815 0.975895 1.556996 2.641093 -2.203036 -1.531020 -PE-benchmarks/union-find.cpp__Union(int*, int, int) = -2.244080 -3.140608 2.774454 2.487178 0.922961 2.160382 1.280529 -1.082182 1.816657 2.430880 -0.746150 1.547737 -2.218922 -0.530128 -0.193662 0.525438 -0.710320 -2.408260 0.369700 -0.866980 -0.697185 -1.986998 -1.276867 1.942294 0.503202 -0.887973 -1.084744 -0.275659 -3.994144 -2.654450 0.196710 -0.331095 1.522164 -0.832351 0.465139 -5.237935 1.708808 3.017582 -0.296379 -3.374141 0.092341 -1.607239 -0.082051 0.707231 -0.416125 0.772631 1.131294 -0.260421 0.178473 0.563491 1.139826 -0.298639 0.603995 4.508657 -0.168356 2.988710 2.436362 -0.007336 0.056368 0.888897 0.753530 -0.620924 2.142293 1.472986 -1.335736 -0.383484 0.081232 -0.033047 -2.374386 0.960703 0.391304 -1.519425 -0.784523 -0.782006 -1.998888 -1.269446 -0.026052 0.614403 3.854747 -1.622090 3.976200 1.542406 2.341242 0.105867 2.676297 -0.348019 2.901940 0.785577 -2.199344 0.004623 -2.110286 -0.578274 -0.379641 2.035092 -1.542328 -0.467947 1.429465 -2.005493 -3.403827 2.003806 -0.590134 -0.117392 -2.985551 -0.277508 1.654030 1.246252 -1.605966 -3.123753 -2.589374 1.773744 -1.418011 -1.581694 -0.007147 -0.768185 -0.379567 -0.590243 -2.190141 -0.755720 2.140436 -2.169513 -2.063224 2.874091 -1.119243 1.997717 -0.321461 0.301161 -0.162510 1.211240 0.759762 0.781348 0.485973 -1.322964 -4.616844 -0.555759 0.142299 1.172565 -0.929795 -0.155399 0.910139 1.056621 0.319273 1.792403 -0.886022 2.399203 2.190164 -0.094694 -1.206045 -2.342727 0.566955 -2.184496 0.550248 -1.743253 -0.827765 0.248578 2.253197 0.771841 0.249156 3.017749 -1.446345 2.275591 -0.303215 -0.015667 0.509475 -0.981884 1.131595 -1.553679 -2.372608 1.182969 2.540258 0.789529 0.790128 -1.117286 -0.188787 -1.138551 -2.372890 0.601666 0.458090 0.100757 2.758007 1.447992 4.969707 -3.629958 0.672865 -0.409393 -0.502525 0.805643 -0.899045 -3.072356 0.717496 0.755336 -0.135391 3.214264 -0.255343 -1.953751 0.759457 -0.165431 0.484455 -2.124680 2.124847 -2.344272 -0.327135 -1.015567 -0.795333 -1.554905 -1.404887 -1.723680 -0.350203 3.222759 -1.426906 -3.187572 1.727598 -0.201716 0.904753 -4.484590 2.512463 -1.491409 2.059403 -1.555652 -0.771008 -0.529523 2.125307 0.140415 0.654024 1.542312 -2.277758 2.037282 2.847371 0.314994 1.164709 0.991978 1.367048 -0.163099 -0.945934 -1.714931 1.985987 -0.070700 -0.993930 -0.533006 -1.492349 2.151751 0.650887 -0.225971 0.382184 2.593773 -1.289341 0.032189 2.795597 -0.183549 -1.253158 0.958935 0.126569 2.400280 -1.274028 -0.216049 -1.513420 0.242604 0.309171 1.028751 -3.194253 -1.939377 -1.508778 -2.989094 -0.632701 1.303177 0.561878 0.977285 0.483522 -3.771290 -1.572533 1.905512 -1.134980 2.280093 1.383220 2.171943 2.488332 1.879743 0.061607 -1.036094 -0.491960 -0.372587 -2.002630 -1.064533 -0.382493 0.970813 -1.667000 2.679189 0.956380 0.325249 0.882726 0.647412 1.235525 -1.806132 3.495105 1.993165 -1.675906 0.909338 1.730855 3.477146 -2.327687 -1.764444 -PE-benchmarks/union-find.cpp__isCycle(Graph*) = -3.336260 -7.588228 9.210875 7.854558 0.598232 5.357296 1.764221 -4.897487 3.892391 5.277066 -2.075298 5.104455 -4.215141 -0.404496 -1.917159 2.591426 -4.070097 -5.164194 -0.753134 -3.362050 -2.415915 -4.019487 -2.291897 5.100502 2.154627 0.564846 -3.761914 0.099789 -8.633247 -9.304006 0.423703 -0.460930 3.985604 -1.475722 2.105880 -13.244671 6.128153 8.534638 -1.317825 -8.791288 0.868257 -2.244050 -2.442867 2.124219 -2.832605 2.391105 1.064146 -0.509589 0.287564 2.397924 3.082962 1.279389 3.702645 11.385645 0.749218 7.832168 6.842708 -0.200073 1.046899 1.703899 2.446716 0.189020 4.340335 3.344550 -0.802608 -2.526274 -0.458311 0.167626 -5.393694 3.323887 0.583845 -5.273017 -1.957339 -2.980178 -5.743798 -2.147433 0.133563 2.422355 9.920496 -3.885924 8.965585 3.278766 4.230983 -0.485960 6.203019 -0.765657 7.441608 3.231177 -3.655600 1.073083 -2.735398 -2.147175 0.857135 4.401725 -5.943701 -3.683906 4.876470 -7.985400 -8.450937 5.713401 0.749984 -2.046337 -5.875071 -2.142173 3.526567 2.357135 -4.136980 -6.881724 -5.315532 4.802508 -2.227924 -4.162300 -0.784168 -0.247995 -0.270925 1.302159 -6.076239 0.019045 5.449057 -3.893101 -3.653839 6.797636 -0.615621 3.523613 -1.815127 1.108622 -1.307392 3.240548 0.744611 3.432913 -0.648163 -0.162701 -7.520713 0.076231 1.091962 -0.573846 -2.856616 -1.993525 1.650241 3.584539 0.775340 5.820847 -3.575249 5.423619 6.393782 0.578831 -4.321744 -5.974276 -1.252456 -7.181283 0.472992 -4.485202 -4.657743 1.900602 5.920619 1.717836 1.284652 5.321172 -3.129706 4.175624 -0.362757 0.162569 1.666960 -3.747133 2.341967 -3.678168 -6.552069 4.153818 5.127098 3.269257 2.330569 -2.144161 -0.460979 -2.396325 -5.544149 3.475918 2.128607 0.523998 6.685724 4.828176 13.231793 -5.756757 0.798577 -0.367161 -2.342605 1.555538 -2.289233 -7.811880 0.812084 2.045760 1.229187 9.620008 -0.814291 -2.979013 2.459827 -0.425896 1.259670 -5.375415 5.883302 -5.455738 0.340142 -2.805257 -1.825975 -3.538237 -2.210379 -4.843704 -2.825336 9.023359 -7.516994 -7.781366 6.379823 -1.326609 2.299184 -10.285709 5.234522 -3.471071 6.047854 -2.239758 -1.875118 -0.692437 1.940691 -2.104060 2.690115 3.823053 -5.596235 3.695889 7.323842 0.892785 1.616018 0.983116 3.721128 -2.263436 0.014032 -5.330960 6.502090 -0.227197 -2.711386 -1.985699 -3.286374 2.911766 -1.000661 0.218305 0.402136 4.269199 -1.504856 -0.811660 5.972000 1.063059 -4.028219 3.884643 0.676632 3.999923 -3.770583 -1.236278 -1.987579 1.816751 0.623836 2.490584 -8.309433 -4.484407 -8.476926 -7.452166 -2.109065 2.021067 2.883906 1.011735 -0.416295 -7.906801 -5.835308 8.372747 -2.735727 4.493937 5.389870 5.364793 6.376815 5.138185 0.486190 -0.468211 -3.054869 -0.157855 -3.369648 -2.494124 -1.925123 3.729417 -3.263630 5.413075 4.164467 0.485212 4.141685 1.424070 3.218601 -4.775772 8.661544 4.534791 -4.585109 2.171927 4.390892 6.951090 -5.093964 -4.894485 -PE-benchmarks/union-find.cpp__main = -0.765684 -3.539172 4.558987 3.965096 0.285008 2.181585 1.370142 -2.003935 3.003852 1.900262 -1.083072 1.670204 -2.454793 0.124064 0.280279 1.526742 -2.784068 -3.022808 0.258017 -1.311322 -1.129049 -2.440359 -0.362925 1.581685 1.114966 0.788107 -1.549774 -0.626687 -3.753496 -2.188779 2.070191 -0.872070 2.092313 1.367691 1.094049 -7.274767 2.835457 2.675604 -0.717562 -4.486701 0.049516 -1.494036 -0.277067 -0.400112 0.030194 1.263844 1.092160 1.981579 0.739171 1.166688 0.363676 -0.330970 0.557899 5.596543 -0.643282 3.097776 2.877703 -0.288045 0.325401 0.864130 1.380833 -0.091900 2.392313 2.429103 -1.024413 -1.341647 -0.278250 -1.393377 -3.332283 2.071345 1.319175 -0.914435 -1.978390 -0.973473 -1.868637 -0.948250 -2.518220 2.438218 5.382907 -2.568362 4.331670 1.807835 3.244468 -0.281846 2.696675 -0.101374 3.698213 1.446266 -2.499882 0.217260 -3.811255 -2.183375 0.129020 -0.048960 -1.675398 -2.325977 1.444373 -2.277545 -3.716885 2.433929 0.313302 0.100947 -2.938042 -0.386971 2.525231 1.721715 -1.956186 -3.442399 -2.452831 1.381308 -1.710484 -1.619712 0.037448 -0.123314 -0.951681 -1.132911 -3.306513 -0.787406 2.148244 -2.265097 -1.179117 3.270172 -1.771850 1.412308 -0.777484 -0.028239 -0.737166 2.328711 0.991764 1.264597 1.757670 -1.300989 -4.247885 0.966609 1.021078 2.824474 -0.512262 -0.550558 0.369898 1.591131 -0.611740 1.352514 -0.373954 2.254984 2.710504 -0.631746 -2.544006 -2.856032 0.525843 -3.163984 1.119375 -2.606475 -0.436212 1.033544 3.075554 1.970325 1.294692 3.071381 -2.945796 2.850687 -1.010877 1.086215 0.952733 0.658912 1.444503 -1.705694 -2.443087 1.425926 2.220723 0.708512 1.351464 -2.027330 0.141813 -2.093815 -2.844602 1.165526 1.207578 -0.251262 2.791771 1.789099 4.414462 -3.905273 0.354290 0.613148 -0.375733 0.353349 -0.306175 -3.863727 1.708629 0.416258 0.459088 3.406253 -0.495100 -2.139703 0.830486 -0.049111 0.425327 -1.822482 1.366113 -2.471623 -0.784583 -1.762602 0.819666 -2.179228 -1.573902 -1.765542 -0.312996 4.340279 -1.628390 -3.605063 2.950703 -1.900088 1.543090 -4.898946 3.206677 -1.967549 1.833895 -1.538025 -1.060515 -0.785794 0.965611 -0.887468 0.587616 1.945653 -1.958537 1.546573 3.779782 0.849327 0.781174 1.134143 2.040085 -0.447945 -0.104723 -1.779328 2.832431 -0.672506 -0.640232 -0.423147 -1.615729 2.178537 -0.296807 -0.041011 1.956324 2.539517 0.139744 1.258249 2.387440 0.491783 -2.228351 1.282980 0.308861 2.529228 -1.668172 -0.185690 -1.078513 0.344374 -0.542234 1.460428 -3.830472 -3.322007 -2.517641 -3.311958 -1.473494 0.751014 0.982804 0.401514 0.340691 -4.058542 -1.956743 1.350576 -1.359014 1.699554 2.158232 1.914194 3.101323 2.903317 -1.111108 -1.299171 -0.176024 -0.062648 -1.917692 -0.886905 -1.873528 2.063227 -2.213831 2.425120 2.726735 -0.140555 0.889557 -0.587475 3.909556 -2.040225 4.673759 2.478766 -2.387776 0.975691 2.255343 4.433237 -0.941910 -2.422678 -PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -16.425489 -28.301738 20.626127 19.975828 7.358097 20.043935 11.502615 -5.788164 5.891089 22.076137 -8.548466 18.887986 -11.579545 -11.181703 -1.765524 0.348860 0.074372 -14.829275 5.028224 -2.473741 1.229441 -13.903616 -19.869446 26.587141 2.196197 -6.045140 -5.126915 0.256199 -34.301870 -25.578423 -7.900301 1.270837 10.620662 -5.271361 9.221170 -25.304225 11.600827 30.823922 0.908593 -26.313011 -0.832973 -5.484250 -7.163217 12.765342 -6.217999 10.328094 9.378841 -5.370804 -7.426089 6.121099 10.947348 -3.034629 18.420879 24.061882 9.598676 26.976907 23.614758 -0.376504 12.924614 2.631186 5.810118 -6.603649 13.257114 9.052434 -5.384336 -0.120164 -3.471703 9.357272 -13.574433 -0.232069 5.803350 -16.034548 -6.850786 -5.527924 -14.678295 -7.924041 -7.595501 -3.476318 28.096702 -4.747843 38.080624 18.355243 21.028902 -3.274907 22.819441 -1.949197 18.478981 8.159988 -17.072877 7.414918 -16.947022 -4.339053 -0.108577 18.217307 -20.993673 3.932754 11.824090 -16.046567 -26.635747 19.558168 -5.479462 -8.175853 -9.313802 0.108610 7.464373 5.742276 -9.886794 -23.355541 -18.909963 18.307152 -12.834747 -14.570222 -4.894566 0.185163 4.515387 3.364907 -11.167616 0.593021 23.757405 -12.786222 -9.716753 19.887784 -1.438115 18.997723 -4.981527 -1.205074 1.336695 0.608978 10.714124 4.289225 -1.640715 -16.579483 -35.582755 2.919285 -0.650381 -5.569585 -10.653437 -4.946745 15.279912 11.958253 18.491739 25.860201 -3.393758 19.379781 9.741862 4.145563 -5.218889 -25.224080 -4.945799 -8.405682 5.199147 -6.854723 -12.272007 -0.655712 14.821186 -4.484145 -2.780702 6.988191 -3.534565 15.357830 0.393732 2.060383 -2.619812 -13.079733 4.352103 -9.333085 -17.215673 13.904473 22.993433 10.897727 7.039192 -5.388916 -0.884804 1.092835 -15.028524 6.352807 -0.626014 4.308847 26.822347 12.883987 46.023060 -9.976064 -0.489881 -10.541353 -4.311520 5.255561 -8.626253 -20.688940 5.214136 5.330381 -0.096516 29.729381 -2.539652 -5.943484 9.326484 0.039298 1.403541 -18.652231 26.878477 -16.005708 -1.044927 -3.432698 -8.016518 -11.859559 -10.101640 -18.332727 -1.906745 25.450434 -14.105885 -19.953937 4.389746 -2.918641 -0.038379 -24.486942 21.338006 -8.971381 13.738409 -6.770195 -10.298392 -1.622883 13.530310 1.664228 1.435643 11.171159 -21.998022 15.764747 13.951465 0.026276 3.041183 8.610119 3.778809 -5.917205 -9.340030 -17.255292 11.086833 1.866367 -4.212074 -6.420868 -9.424270 17.976133 6.635654 -6.334565 -5.949365 16.490098 -13.067718 -12.478526 16.305300 -7.993567 -8.772936 3.093609 2.985519 14.181241 -11.604245 -3.687152 -16.331168 -2.395531 9.537516 4.677687 -24.773694 -1.314422 -11.819357 -15.627794 -7.455804 9.544565 9.206750 13.613376 1.763652 -30.922306 -18.310344 24.196040 -6.846946 2.336143 14.150591 16.965560 20.126857 6.286779 13.136033 -4.496005 -10.923454 -0.988855 -13.816803 -5.942455 2.382721 5.382937 -12.075726 23.308741 3.654506 3.981324 11.485106 3.590211 5.508919 -15.194081 27.417467 14.390910 -17.621923 -0.814862 10.140082 18.526469 -32.102105 -13.510634 -PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -1.939745 -3.893583 4.843502 4.198175 -0.230790 2.767649 0.650424 -2.387090 1.673113 0.962166 -0.973612 2.339951 -2.952050 -0.274633 -1.192915 0.226512 -2.779888 -2.919452 -1.023808 -1.854981 -1.078321 -1.973393 -1.637643 3.780189 0.965005 0.546981 -2.195586 0.559548 -5.319154 -2.518179 0.680393 0.118385 2.323666 -0.092757 1.236358 -7.253682 2.841743 4.796330 -0.657407 -4.281436 0.724409 -2.423775 -1.053462 -0.512399 -2.441370 0.646948 0.196671 -0.219020 0.116089 -0.095766 0.295548 1.009664 0.966516 6.267892 0.051914 4.011012 3.869895 0.192321 0.370962 0.460796 0.923956 0.238702 2.301836 1.271178 -1.540337 -1.678241 0.016840 -0.600914 -2.478344 1.815366 0.801217 -2.145050 -1.010761 -1.623638 -4.313545 -1.409793 2.047719 1.744275 4.833638 -2.901501 4.290163 1.509289 2.009376 0.549712 3.663549 -0.097159 4.293983 1.354411 -1.431278 0.558773 -3.283141 -0.564811 0.427079 1.700528 -3.204410 -2.749525 2.364030 -5.610365 -4.841727 2.377781 0.216967 -1.607483 -2.712490 -1.050086 1.557040 1.140201 -1.880372 -3.457925 -2.186418 3.215092 -1.159028 -2.051692 -0.187625 0.492563 0.370795 -1.032739 -3.831655 0.814354 2.750923 -1.570229 -1.245747 4.139558 -1.207070 1.752870 -0.665409 0.385883 -1.066822 2.270515 0.017390 0.713363 -0.734439 -0.848964 -2.518446 -0.935371 0.320521 1.322508 -2.044331 -1.240889 0.979824 1.747053 0.253254 2.072853 -1.398502 2.607528 1.336261 -0.346144 -1.748823 -3.526486 -1.659000 -4.143722 -0.349940 -2.036821 -2.946444 1.903035 3.103898 1.943548 0.705550 3.470842 -1.014402 2.254452 0.170269 -0.524677 1.134625 -1.847674 1.376990 -2.011998 -3.799544 2.394109 1.409092 2.415256 0.849466 -0.546386 -0.416850 -1.573466 -3.125866 1.225593 1.145476 0.747752 4.359586 3.199431 4.975755 -3.778626 1.285033 -0.237709 -1.548183 0.953500 -1.130758 -3.791637 0.232732 1.498840 -0.406210 5.380965 -0.536716 -2.054263 1.064930 0.044786 1.064373 -3.281686 2.639873 -2.719729 0.159900 -2.448332 -0.766351 -1.860831 -1.662390 -3.319292 -2.499000 4.917086 -4.854080 -4.470641 3.272234 1.027742 2.310500 -5.781587 1.747804 -1.795667 4.817293 -0.606871 -1.065338 0.203769 0.202679 -1.684841 1.488160 1.974982 -3.319489 1.491324 3.183168 0.855076 1.197036 0.532611 2.069594 -0.914982 0.379805 -3.496641 3.166749 -0.142332 -2.169979 -0.374385 -1.808419 1.452595 0.023696 0.739887 0.749332 2.811284 0.783668 0.088931 3.570362 0.684834 -1.822362 0.992360 0.002238 1.773547 -1.949680 -0.658806 -1.320597 1.338976 0.662766 1.223051 -4.761332 -3.521104 -4.797195 -4.220716 -0.221516 0.241166 0.865422 1.150282 -0.286483 -4.772067 -3.144891 3.474283 -1.823965 4.293082 2.701925 2.759648 3.569643 3.082436 -0.472800 -0.361695 0.524414 0.834897 -1.673713 -0.697370 -2.439379 2.777172 -1.568047 2.957865 3.166583 -0.262603 2.739803 0.330182 1.893767 -2.661736 5.251122 2.303455 -3.720377 1.062077 2.718146 3.023581 -1.476234 -2.668922 -PE-benchmarks/word-wrap.cpp__main = -3.276120 -6.517791 5.378638 5.051972 1.465406 4.301739 2.690981 -1.544740 1.943969 4.769995 -2.026982 4.280515 -3.017385 -1.901373 -0.695240 0.773507 -0.838597 -3.760178 1.057257 -0.706638 -0.068100 -3.332075 -3.659738 5.493666 0.944455 -0.851021 -1.549415 -0.312503 -7.648610 -5.716594 -1.032133 -0.128976 2.654080 -0.920495 1.869153 -6.856255 2.985010 6.712546 -0.107188 -6.366395 0.070900 -1.477866 -1.397265 2.125084 -1.339842 2.253040 2.203237 -0.415558 -1.146590 1.676553 2.219370 -0.552491 4.032905 6.421823 1.569112 6.027524 5.436751 -0.007112 2.529921 0.523942 1.608165 -1.318618 3.111617 2.420375 -1.140384 -0.522458 -1.083301 1.352626 -3.510124 0.508886 1.197369 -3.002659 -2.131281 -1.218820 -3.396059 -1.718362 -2.605675 0.079511 7.044498 -1.831014 8.522869 4.010059 4.864659 -0.699895 4.819751 -0.255373 4.132602 2.061656 -3.880872 1.396108 -3.950846 -1.119334 0.040958 3.388127 -4.512616 -0.430701 2.893978 -3.753391 -6.210523 4.412773 -0.897840 -1.590958 -2.121494 -0.074610 1.933518 1.768263 -2.616533 -5.469528 -4.168769 3.666896 -2.474190 -3.289041 -0.802231 0.025652 0.664568 0.346813 -3.226254 -0.112758 5.021113 -3.278760 -1.949691 4.595755 -0.545958 4.166804 -1.150351 -0.164422 0.103341 0.996280 2.530817 1.337031 -0.013009 -3.238465 -7.874175 0.940334 0.402019 -0.336186 -2.421613 -0.870428 2.904919 2.691776 3.518913 5.118768 -0.718174 4.207742 2.602261 0.469162 -1.841179 -5.694833 -0.988732 -2.565842 1.325069 -2.116801 -2.467803 0.297540 3.688865 -0.508830 -0.047631 2.468167 -1.564004 3.623492 -0.071285 0.551781 -0.165392 -2.328459 1.290256 -2.229572 -4.106620 3.199719 5.115578 2.316931 1.646385 -1.466233 -0.006144 -0.442590 -3.307437 1.651929 0.357826 0.508813 5.955458 2.859697 9.781606 -2.699220 -0.069984 -1.767165 -0.919959 1.101058 -1.733739 -5.257500 1.680382 1.052183 0.138530 6.429995 -0.552060 -1.728476 2.378659 -0.247126 0.387123 -4.122817 5.563271 -3.779043 -0.586732 -1.274064 -1.127577 -2.673176 -2.291163 -3.934475 -0.405477 6.143917 -3.472333 -4.432298 1.428468 -0.771812 0.325392 -5.940365 5.343474 -2.284202 3.324652 -1.509292 -2.282215 -0.332502 2.813281 0.079104 0.095627 2.785391 -4.589147 3.373152 3.738069 0.292785 0.616289 2.049591 1.436081 -1.228120 -1.600637 -3.646506 2.807732 0.197732 -1.189519 -1.213436 -2.219773 3.903304 1.089921 -1.150353 -0.280373 3.794600 -2.368984 -1.777192 3.656817 -1.056899 -2.375074 0.987562 0.527586 3.677936 -2.802893 -0.722071 -3.501151 -0.185198 1.541824 1.487034 -5.868439 -1.413906 -3.241966 -3.820403 -1.802864 1.797296 2.100850 2.418053 0.374450 -7.061497 -4.237490 5.172539 -1.781433 0.752687 3.466612 3.709790 4.772913 1.973380 2.182360 -1.198555 -2.141325 -0.034338 -2.920416 -1.255398 -0.015580 1.471238 -3.099729 4.908540 1.591233 0.568828 2.395789 0.640900 1.995212 -3.475486 6.788474 3.474905 -4.090256 0.351197 2.678229 4.814869 -6.345429 -3.306743 -PE-benchmarks/bellman-ford-algorithm.cpp__createGraph(int, int) = -0.375013 -1.579460 1.891109 1.256419 -0.071736 1.067785 1.081263 -1.030667 1.175557 0.538490 -0.196566 0.478574 -1.236682 -0.142653 -0.680489 -0.050768 -1.153112 -1.299281 -0.256140 -0.868569 -0.811240 -1.090322 -0.251055 0.771527 0.356708 0.031052 -0.415567 -0.397492 -2.236737 -0.173277 0.948478 -0.092727 0.520195 0.207263 0.731594 -2.571238 0.937609 1.199081 -0.370864 -1.731007 -0.011469 -0.562147 -0.294077 0.157701 0.175702 0.021619 0.153004 1.045285 0.167897 0.083184 0.441144 -0.199781 -0.372325 3.251829 -0.261124 1.437385 1.464421 0.115977 0.550507 0.958160 0.481064 -0.017013 0.572214 0.888848 -0.288483 0.062910 0.260678 -0.910314 -0.972998 1.081498 0.460989 -0.934723 -0.437943 -0.752647 -1.557546 -0.401111 -1.787121 1.048655 2.309757 -1.385269 1.803840 0.620869 1.436018 -0.069645 1.506050 -0.044494 1.885142 0.473139 -0.905377 0.335325 -1.809624 -0.206731 -0.153572 -0.221172 -0.855076 -1.334397 1.149058 -1.489722 -1.790343 1.280636 0.060705 -0.129814 -0.830800 0.083635 0.662147 0.383735 -1.407333 -1.639020 -1.468274 1.109834 -0.727149 -0.244174 0.766908 0.144834 -0.292965 -0.797714 -1.103537 -0.088730 1.045107 -0.897486 -0.934719 1.886312 -0.885588 0.843708 -0.135638 -0.159334 -0.335889 0.920260 0.272427 0.302579 0.162805 -0.224681 -2.167418 0.103212 0.279121 1.512581 0.055458 0.224692 0.570781 0.873124 -0.212718 0.778182 -0.586593 0.910133 0.219062 -0.578923 -1.124318 -1.075665 0.395218 -1.453292 0.048508 -1.016859 -0.870924 0.324229 1.336249 1.830780 0.001265 1.210811 -0.791245 1.028756 -0.258809 0.132442 -0.057829 -0.474555 0.558345 -0.800755 -1.358159 0.094900 0.573031 0.562573 0.577792 -0.868718 -0.418202 -1.008038 -1.225599 -0.055776 0.810597 -0.439819 1.284644 1.301647 1.043060 -2.421250 0.170040 0.133268 -0.428431 0.068977 -0.484227 -1.611987 0.380216 0.429896 -0.128775 1.321385 -0.212937 -0.485603 0.472457 -0.395407 0.487216 -0.849315 0.195707 -0.863594 -0.732319 -0.923338 0.697274 -0.899743 -0.515253 -0.806814 -0.916089 1.841068 -1.601281 -1.427549 1.662497 -0.174139 0.766732 -1.719040 1.449520 -0.527981 1.137019 -0.227862 -0.148394 -0.521456 1.114372 -0.249850 0.813157 0.545765 -1.342214 0.742807 1.842828 0.243862 0.891435 0.442687 1.165243 -0.715382 -0.489825 -1.217053 1.399177 -0.242707 -1.265962 0.021240 -0.799770 0.952295 -0.121170 0.529835 0.962774 1.001870 0.111512 0.371631 1.163816 -0.006136 -0.743406 0.271568 0.278193 0.914961 -0.863373 -0.004246 -0.345479 0.073061 -0.107049 0.155988 -1.611656 -1.367998 -1.471543 -1.377210 -0.383028 -0.439504 0.194031 0.225908 0.082238 -1.768172 -1.022741 0.505705 -0.799140 0.006908 1.091692 0.997406 1.521762 1.596642 -0.457659 0.120622 0.266733 0.358946 -0.967560 -0.457699 -0.794937 0.563308 -1.446254 1.165567 0.981486 0.391777 0.882276 0.278306 1.439478 -1.245940 1.711684 1.194042 -1.084017 0.337677 1.780401 2.040660 0.081612 -1.038489 -PE-benchmarks/bellman-ford-algorithm.cpp__printArr(int*, int) = -1.235879 -1.789431 1.478390 1.310240 0.480534 1.163922 0.671693 -0.489779 1.135781 1.239280 -0.705132 0.931519 -1.159835 -0.420293 0.121795 0.194558 -0.516314 -1.288366 0.390426 -0.231886 -0.205747 -1.284270 -0.764860 1.072916 0.166514 0.163175 -0.453110 0.224721 -2.124470 -1.760995 0.225085 -0.220895 0.801010 -0.003276 0.384144 -2.913202 1.011950 1.667665 -0.116266 -2.150166 -0.019651 -0.819926 -0.202884 0.386926 0.109379 0.769612 0.760097 0.289696 -0.086035 0.318602 0.412454 -0.506831 0.359970 2.051102 -0.031065 1.702317 1.707982 -0.081401 0.153341 0.343776 0.394646 -0.423085 1.164585 1.190466 -0.962695 -0.125699 0.177123 -0.025136 -1.460956 0.492161 0.426701 -0.746509 -0.569429 -0.508833 -0.835411 -0.483651 -0.015478 0.216804 2.303553 -0.554839 2.549966 0.970968 1.610830 -0.068086 1.451037 -0.199629 1.643696 0.495931 -1.497679 -0.006456 -1.482206 -0.757078 -0.152274 1.220127 -0.766505 0.387814 0.573592 -0.980090 -1.696994 0.950477 -0.422934 -0.084500 -1.517574 0.167334 1.055912 0.661006 -0.551964 -1.727871 -1.415350 0.852745 -1.189218 -0.785796 -0.221624 -0.084745 -0.375521 -0.193815 -1.171625 -0.413250 1.322719 -1.134383 -0.900848 1.438715 -0.775460 1.073754 -0.239342 0.002367 -0.000643 0.599500 0.631886 0.263017 0.588240 -1.035636 -2.618528 0.093547 0.092163 0.728702 -0.668288 -0.302668 0.723317 0.513122 0.299405 0.775003 -0.591467 1.256234 1.324593 -0.103623 -0.620788 -1.542523 0.061448 -1.184597 0.534673 -0.889955 -0.221992 0.004053 1.256015 0.229196 0.181821 1.602718 -1.170912 1.292967 -0.237128 0.195329 0.133527 -0.035294 0.578091 -0.818191 -1.112027 0.774089 1.387173 0.307759 0.523044 -0.745624 -0.066786 -0.631635 -1.392237 0.829246 0.117592 0.311440 1.487831 0.723896 3.189100 -1.738421 0.287310 -0.205265 -0.090567 0.270738 -0.268381 -1.543548 0.704990 0.331040 0.400636 1.790129 -0.055251 -0.954251 0.185633 0.133410 0.153998 -1.201395 1.378965 -1.215347 -0.074347 -0.423984 -0.247694 -0.880621 -0.894685 -0.880325 0.178232 1.824698 -0.321020 -1.992268 0.786775 -0.514961 0.696901 -2.448961 1.195037 -0.907359 1.105308 -0.927726 -0.390577 -0.231396 0.682483 0.166684 0.235176 0.787184 -1.126584 1.108007 1.284610 0.263283 0.492941 0.612544 0.522022 -0.105178 -0.602413 -0.862941 0.779245 0.005187 -0.227375 -0.268246 -0.779961 1.357662 0.481957 -0.367775 0.297587 1.621456 -0.714084 0.122988 1.357758 -0.224730 -0.740449 0.388670 0.212522 1.333855 -0.641130 -0.290449 -0.929230 0.107632 0.222999 0.549401 -1.694524 -1.020117 -0.417082 -1.912372 -0.658295 0.699827 0.518476 0.758204 0.447103 -2.159410 -0.714197 1.262234 -0.457170 1.533942 0.602239 1.085159 1.252688 0.849963 0.063141 -0.792370 -0.309815 -0.134066 -1.275364 -0.418849 -0.308127 0.606442 -0.906158 1.441382 0.518656 -0.044065 0.335908 -0.056850 1.149674 -0.953029 2.009701 1.142264 -1.033229 0.294023 0.541651 2.040836 -1.286022 -0.983556 -PE-benchmarks/bellman-ford-algorithm.cpp__BellmanFord(Graph*, int) = -7.359459 -15.799554 17.258893 16.564964 2.273740 10.708631 4.302895 -8.733617 6.790900 14.220681 -4.617164 10.957992 -9.079452 -1.735076 -0.664902 6.792145 -6.302354 -9.160345 -0.720868 -5.104940 -3.461433 -8.101106 -6.022022 11.284291 4.539021 0.208865 -6.842216 0.895960 -16.089471 -22.653304 -1.663650 -0.506758 8.349764 -3.399993 3.399720 -25.964981 12.478726 18.490239 -2.144855 -17.512153 1.826520 -4.351077 -5.351119 4.738082 -5.555665 5.871637 3.064708 -1.846079 -0.374547 5.496108 6.602067 1.473982 11.599994 21.284865 2.208805 16.904277 15.431359 -0.275119 2.435265 2.607098 4.567173 -0.327257 9.217571 6.937731 -1.928687 -4.953528 -1.601852 2.266883 -10.982207 4.973489 1.121139 -11.064309 -5.642670 -6.210785 -8.704760 -4.059497 -2.596469 3.435142 19.698638 -7.366706 19.647538 8.246634 7.777217 -1.062745 12.084868 -2.021118 13.934774 6.292651 -8.197005 1.707407 -3.713127 -6.615186 2.683379 11.373404 -12.452053 -3.939221 8.779966 -12.071713 -17.424540 11.152660 0.368112 -4.834725 -11.509881 -4.108829 6.229597 4.322222 -6.107653 -14.097046 -10.938691 9.431195 -4.927454 -9.785857 -4.719542 -0.013799 -0.251572 4.957571 -12.674297 -0.183918 11.518134 -8.509952 -7.502401 11.974735 -0.009504 8.386093 -3.704690 1.915778 -1.257264 5.228701 2.825071 7.682341 1.316599 -1.557660 -16.849970 1.447594 3.012710 -3.380559 -6.092630 -2.899424 4.384962 6.751448 3.862587 13.970341 -5.514493 13.205663 12.398134 2.299743 -7.228601 -13.141433 -3.592216 -12.147209 3.410521 -8.617097 -7.439291 2.743914 11.241187 -1.141396 1.825839 9.874265 -8.036488 9.203287 -0.239211 1.316098 2.891341 -6.721438 4.263991 -7.356110 -12.839583 9.357637 12.857708 5.203210 3.893721 -3.110599 -0.042696 -3.346197 -10.851165 7.548659 0.852050 0.090253 14.342484 8.439562 34.786723 -9.036478 2.639457 -1.829128 -3.979027 3.668325 -4.397407 -15.724796 2.810507 3.437579 3.628617 20.257461 -1.088950 -6.637433 4.513605 -0.872473 1.082540 -10.938670 15.502677 -11.250622 0.410982 -4.167448 -4.836906 -5.660378 -5.846769 -9.038518 -0.822721 18.039769 -13.125941 -14.507905 10.383812 -2.865645 2.213185 -20.225539 16.287701 -7.039782 9.946158 -6.182575 -6.185153 -0.169400 4.649948 -3.047493 3.292923 8.003978 -10.714217 7.429768 13.660078 1.232844 2.350248 2.753035 5.494289 -3.433955 -0.685364 -10.402282 12.249588 0.635039 -3.196749 -5.894235 -6.536297 7.450896 -0.867441 -2.242216 0.015805 9.568477 -5.530792 -3.667079 11.083862 1.413600 -7.710754 8.899105 1.742326 8.622603 -7.553842 -2.425923 -5.164560 1.725547 2.248409 7.157451 -16.552858 -5.872535 -12.528525 -12.749570 -5.815946 7.576499 8.040840 3.028610 -0.566028 -16.798845 -12.245967 18.256766 -5.196921 6.134429 9.907899 11.447100 11.987173 8.346159 4.891204 -2.138402 -8.273661 -1.099330 -6.743770 -5.239299 -0.685853 7.097183 -5.593264 11.231900 6.168605 1.355427 7.731493 1.102410 5.347269 -9.007974 17.549738 8.348103 -8.562301 3.882127 9.265926 13.182428 -15.258787 -9.485179 -PE-benchmarks/bellman-ford-algorithm.cpp__main = -0.732118 -6.239432 7.555274 7.352905 0.893383 3.267405 3.536504 -2.858808 5.519685 5.553435 -1.203331 2.746002 -4.326436 0.764885 2.485271 4.491598 -4.402529 -4.740435 1.025937 -1.942578 -2.319403 -4.286087 -0.298033 1.567880 2.226713 0.138090 -2.478918 -2.568844 -4.676658 -4.079333 3.719847 -2.007251 3.823114 2.027088 1.367532 -14.693581 4.725589 3.374077 -1.409324 -7.487625 -0.230267 -2.020802 0.471008 -0.755097 0.625736 2.026919 2.525186 4.356759 1.722308 2.960835 1.228273 -1.028454 2.525690 11.515520 -1.776728 5.141415 4.898605 -0.689565 0.385855 1.545728 2.739716 -0.501857 4.353011 4.529276 -0.805118 -2.366157 -1.307302 -2.652300 -6.227414 3.311419 2.938862 -0.767547 -4.823584 -1.309186 -1.052408 -2.020031 -9.674488 4.640686 9.735920 -5.264423 7.744492 3.916806 5.830601 -0.211558 4.114133 0.001761 5.843704 2.339832 -4.974139 0.673357 -5.449688 -4.722468 0.633383 -0.829802 -2.139356 -5.473367 1.846355 0.370890 -6.205383 4.938506 0.474802 1.268071 -5.157698 -1.612275 4.417992 3.237597 -3.820320 -6.407999 -5.389572 1.141582 -2.639249 -3.125613 -0.118504 -1.050424 -1.820368 -1.959253 -5.878100 -2.241581 3.389338 -4.634186 -2.547151 5.009452 -2.879558 2.785477 -1.237560 -0.201665 -1.010300 4.110474 2.785758 3.217476 4.734829 -2.384699 -9.522355 2.683320 2.777587 5.582013 0.709126 -0.306497 -0.053126 2.828493 -0.849127 3.277232 1.853815 4.909447 5.386315 -0.611274 -4.615635 -5.028509 2.443108 -4.259888 3.647407 -4.961463 1.353742 1.329863 5.111152 2.211540 2.401070 4.206213 -6.350915 6.133416 -2.607668 2.943653 1.694659 2.690542 2.564935 -2.675826 -3.656459 1.737158 5.353666 0.365169 2.230231 -4.154196 0.941176 -3.183550 -4.306972 0.894714 1.477004 -2.408852 4.151151 2.077077 11.391244 -6.699421 0.665231 1.250650 -0.008021 0.694237 -0.350491 -6.969427 3.890050 0.081285 -0.145678 4.685668 -0.934715 -4.481050 1.780566 -0.741985 -0.027006 -2.011412 2.331467 -4.033317 -2.687336 -2.687426 2.315925 -3.783487 -2.785572 -1.974955 2.144911 7.443564 -1.923204 -4.529722 4.393309 -4.607499 0.804787 -7.771294 10.813874 -3.178339 0.333033 -4.468729 -3.402481 -1.576962 3.955807 -0.931089 0.279938 3.657021 -2.807664 2.032149 7.535182 1.301964 1.313015 2.498396 3.589866 0.202876 -0.637717 -2.158790 5.280170 -1.437520 0.207327 -1.538742 -2.702865 4.857363 -0.371013 -0.587002 3.930097 4.292097 -0.877314 1.952110 3.695553 0.690925 -3.884875 2.821385 0.558967 5.241278 -3.114390 0.680827 -2.228612 -0.515139 -1.747600 3.529284 -6.166156 -4.114261 -2.215315 -3.067784 -3.722428 3.990164 1.903068 0.188122 0.700901 -7.261316 -3.033303 1.487300 -2.620582 -1.705565 3.600568 3.059212 5.350990 4.881812 -0.708345 -3.173227 -1.258665 -1.300880 -2.893931 -1.604737 -1.866154 3.033886 -4.529434 4.099670 3.674094 0.300744 0.541539 -1.298073 7.854727 -3.001306 8.254256 4.132491 -2.939824 1.718847 5.571944 8.620764 -2.949123 -3.872066 -PE-benchmarks/permutations-of-a-given-string.cpp__permute(std::__cxx11::basic_string, std::allocator >, int, int) = -3.517764 -5.121956 5.581499 3.973288 0.300920 3.245749 2.526495 -2.748494 3.156592 0.869285 -1.829408 1.725585 -4.885475 -0.731389 -1.972231 -0.320014 -2.901652 -4.704672 -0.185619 -1.936314 -0.853009 -3.882456 -0.530928 4.177703 1.005259 0.626705 -1.667695 0.033376 -7.226321 -3.311729 2.584214 -0.401865 2.850623 1.140111 0.631050 -8.760968 3.207375 5.010522 -0.982149 -5.453143 1.124659 -2.517278 -1.732851 0.177832 -1.415817 1.184131 1.369143 1.806440 0.288285 0.512515 1.150712 -0.880346 0.049463 7.062220 -1.073575 5.116414 5.066493 0.702829 0.572004 1.432905 0.633678 -0.412604 2.935532 3.719707 -2.974272 -0.646579 1.109699 -1.522536 -4.855557 2.727869 0.970576 -1.641111 -1.468754 -1.395052 -4.009298 -1.206772 2.850356 1.505795 7.583452 -2.997188 6.851364 2.315611 3.924686 -1.042439 3.458628 -0.455365 4.587471 1.438020 -3.390491 -0.744257 -6.422314 -0.734657 -1.044419 2.682502 -2.544817 -1.387007 3.016504 -5.595037 -5.988756 2.248232 -0.708205 -1.279362 -3.638608 0.916545 2.627702 1.456153 -2.470596 -5.475068 -3.695419 3.511962 -2.803513 -1.518159 -0.157542 1.041992 -0.751533 -2.008831 -4.744785 -0.718084 3.013508 -3.870541 -1.997129 4.677834 -2.883793 3.503617 0.315445 0.764956 -0.767421 2.613088 1.649199 0.102991 1.744936 -2.581990 -4.624167 -0.801485 0.555896 4.135050 -2.394958 -1.024493 1.754876 1.604673 0.104714 1.241140 -1.841046 2.388944 2.114669 -1.620714 -2.593958 -3.679478 -0.422630 -5.622673 0.815213 -3.751920 -2.454475 1.124147 3.534375 2.217588 0.836425 6.553863 -2.674953 4.309270 -0.006525 -0.387667 0.184063 -1.187658 2.361027 -2.522884 -4.980902 2.165100 2.151881 1.566108 1.198252 -2.124032 -0.944115 -3.750527 -5.155658 1.432786 0.885055 0.395850 4.447735 3.144225 5.994989 -5.776551 1.503775 0.268073 -0.991404 0.811899 -0.570855 -5.650888 1.735867 1.164545 0.248193 6.060544 -0.048117 -3.136956 1.631229 -0.137516 1.163039 -4.367451 3.233486 -3.924801 -0.340850 -3.421227 -0.282603 -2.106101 -2.763928 -2.653786 -1.217584 5.763930 -3.328500 -6.318216 3.707304 0.840883 3.348189 -8.235553 2.617550 -2.382724 5.431128 -1.226982 -0.764037 -0.552096 0.716830 -0.090302 0.866422 1.725657 -3.270414 3.807544 4.821802 0.828042 1.990258 2.151523 3.040886 -0.788703 -0.825542 -3.638234 2.988542 -0.147882 -3.748460 0.334255 -2.334760 2.795116 0.116217 0.413919 2.283254 5.335679 -0.592811 1.887581 4.194924 0.689880 -2.091122 0.877157 0.534123 3.771323 -2.246517 -0.781449 -1.958829 0.926539 -0.250145 2.280479 -5.835324 -6.240239 -3.631993 -7.644220 -1.109393 -0.965403 1.906533 1.634611 0.933089 -6.726268 -2.763251 2.682225 -2.086265 6.846814 3.392284 3.953169 4.560734 4.646475 -1.455108 -1.292099 1.394444 2.030379 -3.794289 -1.004566 -2.703963 1.989185 -2.353657 4.108093 3.236145 0.123186 1.937178 -1.264800 3.774307 -3.697226 7.169588 3.644679 -3.964295 2.499151 1.451245 4.982350 -0.625285 -2.893754 -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.853076 -1.236537 1.610324 1.349617 0.088171 0.861114 0.471269 -0.953304 1.442945 0.461320 -0.035693 0.395119 -1.208403 0.211070 -0.335542 0.447614 -0.894304 -1.240369 -0.237261 -0.933695 -0.679126 -1.084076 -0.072923 0.529081 0.357760 -0.207480 -0.801776 -0.185579 -1.805786 -0.504006 0.990826 -0.310698 0.823150 -0.308188 0.138811 -3.559255 1.012034 1.134314 -0.368923 -1.543198 0.161974 -1.089246 0.314916 -0.302816 -0.366361 0.076533 0.081190 0.075385 0.693808 0.041038 0.452148 0.292012 -0.305999 2.839064 -0.922448 1.186793 0.681936 -0.006040 -0.439723 0.447721 0.345348 0.152871 1.060391 0.765323 -0.717834 -0.716385 -0.001766 -0.522959 -1.515497 0.902139 0.138964 -0.488068 -0.695460 -0.368577 -1.202471 -0.771682 -0.339765 0.802172 1.956580 -1.195828 1.487649 0.318897 0.940438 0.221462 1.182327 -0.063535 1.614319 0.284978 -0.900365 -0.017017 -1.167012 0.082885 -0.077978 0.407486 -0.590697 -1.127876 0.730437 -0.970090 -1.622607 0.754272 0.154669 0.130316 -1.730145 -0.347511 0.825059 0.650897 -1.004267 -1.623470 -1.099714 0.828576 -0.176019 -0.616221 0.229288 -0.640157 -0.256282 -1.126671 -1.345009 -0.325972 0.593771 -0.876766 -0.975535 1.544879 -1.070052 0.351476 -0.061642 0.343777 -0.462816 1.177239 -0.057264 0.489875 0.111509 -0.416444 -2.021811 -0.459616 0.166714 1.641948 -0.273783 -0.156575 -0.217670 0.365681 -0.579473 0.247881 -0.147929 0.725860 1.098702 -0.295726 -0.727497 -0.698674 0.370205 -1.675364 0.199355 -1.045234 -0.223049 0.510774 1.153311 1.155273 0.597873 1.849212 -0.906781 1.178994 -0.257922 -0.240570 0.862064 0.030148 0.779972 -0.753395 -1.186379 0.465000 0.556015 0.462436 0.350715 -0.517821 -0.163877 -0.949753 -0.909301 0.130743 0.603436 0.020712 1.169338 0.809668 1.718868 -2.290193 0.574603 0.307134 -0.335876 0.457275 -0.343442 -1.475866 0.407269 0.481178 -0.496588 1.291397 -0.283720 -1.037255 0.276250 -0.176238 0.569104 -1.021566 0.412942 -1.058265 -0.347234 -0.996190 -0.192103 -0.796295 -0.596306 -0.831052 -0.570402 1.620082 -1.004920 -1.515416 1.443605 -0.063567 0.837861 -2.189866 1.236391 -0.777333 1.229116 -0.904244 -0.115788 -0.308274 0.960098 -0.368141 0.485189 0.751663 -0.959829 0.666861 1.902862 0.371708 0.613100 0.246658 1.129304 -0.020877 0.169607 -0.782000 1.413018 -0.185801 -0.642679 0.186406 -0.756836 0.654990 -0.088924 0.322446 0.959521 1.433521 0.134991 0.541086 1.361185 0.437705 -0.619654 0.557075 -0.085574 0.828295 -0.532358 0.033580 -0.200089 0.500228 -0.215405 0.412588 -1.556592 -1.725258 -0.994450 -1.540574 0.114771 0.282754 -0.098982 0.132736 0.088924 -1.763720 -0.736809 0.536407 -0.735250 1.642583 0.555885 0.882204 1.183289 1.489968 -0.803149 -0.410771 0.317254 -0.103453 -0.589292 -0.368757 -0.897140 0.959626 -0.954289 0.927016 1.054255 -0.110800 0.429515 0.346058 1.014148 -0.829575 1.956432 0.826745 -0.665555 0.980902 0.968362 1.943742 0.034107 -0.830560 -PE-benchmarks/permutations-of-a-given-string.cpp__main = -1.005851 -4.071248 6.385807 4.159184 0.359379 2.563462 4.362859 -4.333432 5.066941 1.823950 -1.159751 -0.167249 -5.566404 -0.256664 -2.397876 1.185841 -3.352092 -4.129614 -0.651405 -2.974030 -0.902576 -4.667274 3.106233 1.345944 2.345041 0.782117 -1.148490 -2.165008 -5.520750 -3.440753 5.255731 -0.525144 2.575433 1.467032 -0.610606 -8.320919 3.818421 3.684111 -1.846965 -5.151834 1.860035 -0.466597 -1.991446 1.300590 0.473275 0.807409 0.342912 4.590596 1.856716 2.264233 2.262339 -1.192356 0.749022 7.509146 -2.700340 4.504552 3.574013 1.353851 0.378869 3.377737 0.757467 0.828784 2.032081 4.692573 -0.858537 -0.838456 1.152216 -2.381741 -6.500125 4.348133 -0.199399 -1.436525 -2.433483 -1.153209 -1.907831 -0.042013 -2.546956 2.838465 8.102570 -3.376114 5.963821 1.657716 2.594778 -2.764764 0.853702 -0.756860 2.465948 1.375957 -2.720228 -1.771918 -6.242390 -1.314052 -0.509911 -0.485966 -1.872961 -4.840280 3.999844 -3.086212 -5.613617 1.814208 0.945869 -1.004704 -2.992369 1.465121 2.120878 1.618034 -3.202727 -5.683517 -3.465783 2.570669 -2.174398 -0.436822 0.087806 0.967549 -1.881679 -2.037242 -4.493261 -1.599625 0.984801 -4.339144 -2.149395 3.799309 -2.638144 2.852415 0.974065 1.339393 -0.786890 2.587698 1.577935 1.661728 3.990252 -0.150769 -3.496882 0.599511 2.098882 5.143452 -0.081798 0.538637 0.006622 1.686798 -1.584274 1.336894 -1.354040 0.424457 2.911847 -2.633164 -3.167875 -1.364973 1.012249 -6.358500 1.764266 -4.239765 -1.401856 0.258859 3.405036 2.566351 1.545228 6.448843 -5.060449 3.093428 -0.392731 -0.150804 -0.187302 1.002392 2.759476 -1.963076 -5.145679 0.080009 1.922634 0.445428 0.703287 -2.218494 -1.429824 -4.886215 -3.656642 0.100949 1.185131 -2.349300 1.981853 3.256496 4.267154 -5.482329 0.759221 2.257964 -0.684841 0.306815 0.010884 -7.185433 2.705076 0.338751 1.397045 4.495418 -0.075224 -2.043807 2.560057 -1.884017 0.748465 -3.243576 1.185864 -4.276419 -1.873441 -4.106206 1.500402 -1.407596 -2.694575 -1.138389 0.277119 5.030923 -1.291838 -4.084113 5.308103 -0.516936 1.256183 -6.379581 5.338511 -1.668535 2.287568 -1.056723 -0.429753 -1.181705 1.394525 -0.411050 -0.946442 0.729541 -1.686105 4.635078 7.328664 0.790765 1.051508 1.766928 4.342069 -1.739430 -0.253677 -3.621017 3.900098 -1.052844 -4.401879 0.755096 -2.195914 2.223507 -2.564040 0.171918 5.080386 4.776448 -0.711054 3.354723 1.952301 2.447845 -2.088942 3.127413 1.695844 3.696631 -1.890255 0.008170 0.041015 0.242772 -2.563108 3.719379 -5.479330 -7.011388 -2.073472 -7.409397 -1.324658 -3.036199 2.588016 -0.342537 0.521013 -5.885702 -3.310747 0.734477 -2.229362 3.124833 3.693880 3.533642 4.046594 6.245154 -2.626825 1.046646 1.187513 2.529214 -3.460384 -2.796715 -1.512386 1.879173 -2.209033 2.567076 3.515158 0.882945 1.436882 -3.269503 4.368003 -4.279774 6.433368 3.228072 -1.336898 3.970141 1.241156 6.612087 1.846129 -2.303599 -PE-benchmarks/permutations-of-a-given-string.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/permutations-of-a-given-string.cpp__std::remove_reference::type&& std::move(char&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/find-two-non-repeating-element.cpp__get2NonRepeatingNos(int*, int, int*, int*) = -3.742190 -6.106650 5.514240 5.414087 1.491196 4.507812 2.879551 -2.565859 3.548916 5.704305 -1.672128 3.986866 -3.359189 -1.014085 1.098426 1.648091 -1.098246 -3.808454 0.672978 -1.548815 -0.968024 -4.081224 -3.032611 3.926993 0.908620 -0.916407 -2.210768 -0.083423 -7.236797 -8.229139 0.151537 -0.600274 2.682642 -2.591146 1.799513 -11.107863 4.363781 6.141079 -0.455089 -7.325846 0.002063 -1.718720 -0.832834 2.984941 -0.053668 1.931644 1.769040 -0.766139 -0.125519 1.813890 2.524145 -0.551055 2.275020 7.871239 0.243217 6.607057 5.961136 -0.057696 0.456883 1.344855 1.588372 -0.903768 3.641266 3.508093 -1.778032 -0.926744 -0.045186 0.973956 -4.778989 1.538836 1.043791 -4.308923 -2.155070 -1.522208 -3.087324 -1.713849 -1.379364 0.493292 7.645163 -1.795807 8.779255 3.952758 4.774400 -0.118037 5.092298 -0.893969 5.594017 1.855918 -4.715523 0.913037 -4.118859 -2.221457 -0.108054 4.357982 -3.808963 1.493130 2.303507 -2.735232 -5.834941 4.326289 -1.195181 -0.586357 -5.867166 -0.554761 3.235643 1.695022 -2.615703 -5.903481 -6.262321 3.893795 -3.187084 -3.140067 -0.988801 -1.209930 -0.505768 0.538363 -3.918175 -1.093096 5.129439 -3.505880 -4.168418 4.495538 -1.510556 3.801074 -1.045865 0.337349 -0.172520 1.068248 1.728951 1.980190 1.404351 -2.987863 -10.643107 -0.134889 0.215892 0.728245 -1.574869 -1.005983 2.330995 2.177156 1.134366 4.546184 -1.522717 5.065984 5.157286 1.119867 -2.025129 -4.756547 0.658045 -3.677857 2.145708 -2.769774 -1.128651 -0.812963 3.993189 -0.151403 0.606234 3.916829 -3.271412 4.421972 -0.783918 1.145915 0.725123 -1.103445 1.653887 -2.501341 -4.418356 2.605611 5.174336 1.105814 1.697273 -2.165404 -0.008181 -1.020563 -4.189874 1.710018 -0.281141 0.704153 4.703311 2.429173 13.029781 -5.670653 0.826498 -0.823206 -0.473716 1.179641 -1.353261 -5.169782 1.481333 1.114966 1.405302 7.067829 -0.354402 -3.214831 1.037564 0.100100 0.440789 -3.626420 5.874477 -4.222259 -0.531607 -0.926210 -1.369161 -3.339802 -2.539940 -3.692096 0.832213 5.817443 -1.042326 -6.633982 3.280014 -2.359719 1.076596 -8.005491 6.039058 -2.718656 2.555685 -3.525371 -1.679809 -1.097926 4.069947 -0.096669 1.455458 2.725337 -5.044522 3.793391 5.180374 0.251858 2.038760 1.564562 1.526087 -0.716127 -1.581690 -3.108762 3.874749 -0.130201 -1.281770 -1.594618 -2.421654 4.373531 0.627110 -1.732397 -0.983989 4.798709 -3.082497 -1.354420 5.032616 -1.060461 -2.550986 2.824764 0.892926 3.775593 -2.332639 -0.632407 -2.792676 -0.251890 0.701454 1.749802 -6.046255 -1.585837 -1.986989 -5.566350 -2.143858 3.187282 2.161434 2.325589 0.799393 -7.309896 -3.071580 5.034091 -1.313059 2.787402 2.671614 3.959150 4.606930 2.772900 0.950343 -1.944162 -2.306409 -1.453435 -3.623760 -2.137297 0.060339 1.992831 -2.811093 5.158803 1.235911 1.177413 1.582008 1.063937 3.050497 -3.079111 6.593141 3.535714 -2.565683 1.006597 2.795082 6.355148 -6.585039 -3.228626 -PE-benchmarks/find-two-non-repeating-element.cpp__main = -0.603998 -2.323346 3.934320 3.239997 -0.358353 1.678409 0.302137 -2.443539 2.169885 0.223954 -0.662012 1.612688 -1.862138 0.702985 -1.740663 0.938418 -2.645820 -2.189434 -1.110960 -1.779552 -1.231814 -1.724438 -0.169469 1.661794 0.996787 0.900526 -2.110831 0.461152 -3.519427 -2.429527 1.521477 -0.231344 1.404363 -0.790841 0.714447 -6.206314 2.651585 2.957092 -0.802206 -3.298393 0.713072 -1.709567 -0.809612 -0.737434 -1.208322 0.275785 -0.406516 0.489264 0.807103 0.217334 0.275310 1.451469 0.189361 5.270860 -1.033165 2.717357 2.445580 0.422792 -0.203760 0.564954 0.802465 0.859810 1.367802 1.464760 -0.726485 -1.829116 -0.176801 -0.766067 -2.049337 2.102839 0.145272 -1.431861 -1.349143 -0.957644 -3.249091 -0.628551 0.043997 1.852043 3.808966 -2.277622 2.612919 0.639571 1.533469 0.357768 2.072243 -0.135960 3.182823 1.140142 -1.007153 -0.103745 -2.364355 -0.123685 0.377420 0.361956 -2.156372 -2.779693 1.804448 -4.317115 -3.160116 1.363590 0.723637 -0.926510 -1.967704 -0.706947 1.390353 0.710756 -1.376533 -2.505035 -1.543060 2.083501 -0.236718 -1.247901 0.295613 -0.149721 0.151630 -0.792370 -3.104972 0.422700 1.462068 -0.926022 -0.979338 2.704449 -0.971964 0.378363 -0.542223 0.508266 -1.004267 1.955929 -0.452195 1.091984 -0.455036 0.281868 -2.332113 0.053304 0.675765 1.308640 -1.473638 -0.431174 -0.101114 1.077719 -0.942774 0.642398 -1.528023 1.202679 1.386770 -0.570812 -1.811181 -1.975857 -0.803290 -3.428893 -0.045338 -1.713301 -2.118308 1.078528 2.308794 2.105570 1.318203 2.711989 -1.579562 1.589423 0.061359 -0.105487 1.432169 -0.888072 1.072073 -1.352866 -2.812758 1.697102 0.470994 1.307461 0.550570 -0.464362 -0.199789 -1.629797 -1.709038 1.277379 1.263930 0.448484 2.620785 2.100677 2.794834 -3.394223 0.969833 0.728323 -1.107263 0.541275 -0.635915 -2.785193 0.626891 0.994231 0.634244 3.566532 -0.342741 -1.394407 0.637975 -0.001911 1.067933 -2.012049 1.220244 -1.918513 -0.491348 -1.876034 0.001557 -1.172579 -0.783620 -2.073009 -1.987573 3.372023 -3.480903 -3.229719 3.308062 -0.135316 1.799350 -4.109863 1.184764 -1.400449 3.127273 -0.289294 0.033386 -0.068276 0.052276 -1.894929 1.194305 1.433155 -2.206344 1.029783 3.019894 0.769721 0.930375 0.023471 1.862430 -0.872146 1.036097 -2.106058 2.663135 -0.321781 -1.920116 -0.017616 -1.227836 0.522111 -0.895287 0.867714 1.390335 1.971234 1.266642 0.857333 2.443367 1.427398 -1.569345 1.311513 -0.214766 0.716577 -1.356501 -0.514240 -0.138285 0.946722 -0.323609 0.879391 -3.314435 -3.267333 -4.131043 -3.411405 0.253751 -0.941895 0.540439 -0.061951 -0.440666 -3.304012 -2.244173 2.400135 -1.208602 2.974325 2.006674 1.577148 2.271546 2.706762 -1.429756 0.164248 0.328304 0.482361 -0.727185 -0.710471 -2.214012 2.479899 -1.171434 1.431646 2.906841 -0.484126 1.754310 0.531769 1.584553 -1.595724 3.943786 1.564095 -2.092501 1.166032 1.716797 2.801859 0.110252 -1.931078 -PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -1.512844 -2.741100 1.903656 1.898641 1.261160 1.725756 1.401769 -0.485610 1.629714 2.296035 -1.238442 1.220696 -1.634903 -0.846073 0.509317 0.297968 -0.215254 -2.031579 0.898163 0.019458 0.034243 -1.998017 -1.117449 1.521580 0.259367 -0.138584 -0.441086 0.181991 -3.397216 -2.487178 0.382664 -0.397222 1.081014 0.661169 0.485479 -3.057691 1.381360 2.293987 -0.024839 -2.810824 -0.308795 -0.856430 -0.623134 0.682420 1.024385 1.423355 1.376731 0.547235 -0.307911 0.640755 0.974439 -1.326934 0.580347 2.122039 -0.029553 2.570593 2.562676 -0.110356 0.877962 0.598152 0.622793 -0.737266 1.724913 2.202579 -1.387341 0.090310 0.246458 0.093407 -2.052788 0.542186 1.052418 -0.666103 -0.877002 -0.433172 -0.522392 -0.512570 -0.769918 -0.244648 3.640266 -0.270560 4.230667 1.955203 3.087839 -0.616975 2.015440 -0.343051 2.255231 0.782311 -2.686172 0.026194 -2.851253 -1.326364 -0.468240 2.316963 -1.047540 2.073463 0.583666 -0.556471 -2.353257 1.331679 -0.840698 0.091201 -1.897853 1.042729 1.466885 0.591239 -0.436058 -2.598300 -2.161656 0.788542 -2.176254 -1.201796 -0.645902 -0.185924 -0.670783 0.039149 -1.472468 -0.999432 1.886054 -1.957575 -1.399394 1.729296 -1.366246 1.697731 -0.469141 -0.274071 0.191332 0.044077 1.312712 0.451884 1.728774 -2.262734 -5.008312 0.357679 0.345795 1.459945 -0.902083 -0.250618 1.295119 0.735814 0.830990 1.473254 -0.377024 2.041967 1.555831 -0.349476 -0.864393 -2.326187 0.561796 -0.980389 1.251708 -1.272083 0.070254 -1.009053 1.761143 -0.165480 0.223915 2.191909 -1.791402 2.461013 -0.403111 0.816997 -0.114225 -0.165067 0.696831 -1.083352 -1.380287 1.146990 2.423394 -0.096197 1.022878 -1.353152 0.012910 -0.980124 -2.208852 1.027965 -0.616366 0.080091 2.139860 0.633934 4.966908 -2.431791 0.528794 -0.297870 0.383989 0.309324 -0.095926 -2.186330 1.514748 0.108240 0.811525 2.356147 0.111322 -1.485062 0.121078 0.242346 0.001545 -1.641597 2.358447 -1.627700 -0.174769 -0.403257 0.068334 -1.200641 -1.502399 -0.667141 1.258921 2.488983 0.678556 -2.815482 0.581118 -0.793350 0.454314 -3.270547 2.080250 -1.359844 0.959290 -1.545028 -0.819020 -0.362629 1.524879 0.516041 -0.000386 1.140869 -1.730063 2.007798 1.499797 0.247130 0.696193 1.177955 0.367239 -0.056740 -1.312101 -0.995431 0.803842 0.318953 -0.260044 -0.694043 -1.123379 2.457523 0.785865 -1.067022 0.051000 2.639566 -1.488039 -0.120903 1.538714 -0.592415 -1.142705 0.320301 0.634208 2.068277 -0.867077 -0.379554 -1.505336 -0.691847 0.244951 0.998053 -2.237230 -0.963296 0.865910 -2.428903 -1.357501 1.285520 1.036118 1.475447 0.864074 -3.300199 -0.867059 1.177885 -0.521986 1.355547 0.807402 1.593322 1.562634 0.734623 0.435505 -1.448584 -0.856287 -0.064152 -2.021244 -0.694835 -0.075775 0.669074 -1.345582 2.227395 0.332718 0.035104 0.116164 -0.447715 2.187821 -1.257420 3.073556 1.704856 -1.454767 0.270902 0.481530 3.333856 -2.257799 -1.335424 -PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -5.310293 -8.868748 8.190186 6.045595 1.542891 4.887166 4.320381 -2.489710 4.059657 3.688516 -3.296575 5.586353 -5.125116 -2.453694 -1.141983 0.220881 -2.737686 -5.752299 0.762823 -1.199956 0.165337 -5.500319 -4.346791 7.476311 1.565591 0.717809 -2.307782 -0.101296 -12.556993 -7.122301 1.423255 -0.304762 3.773236 -2.185461 1.481516 -12.383942 4.438247 9.457773 -0.755608 -10.632398 1.357043 -2.032055 -2.650782 1.863971 -1.467485 2.716552 2.938822 0.982324 -1.246175 1.784246 0.960175 -1.207854 3.052868 10.213008 0.215672 9.615397 10.648896 0.535434 2.094770 1.374893 1.449502 -1.382999 3.920553 4.982133 -3.259913 -0.705673 0.825782 0.299960 -6.540419 1.959929 1.548569 -3.986667 -2.668239 -2.157319 -5.969261 -0.977579 3.962986 1.546803 10.764395 -2.976405 12.966734 4.843601 6.240795 -1.343705 4.569733 -0.690760 4.839828 2.622197 -5.258704 -0.397276 -9.624732 -2.523691 -0.733417 5.199907 -5.095718 0.235373 4.087027 -7.434235 -9.110401 3.765708 -1.095034 -1.985834 -4.585417 0.766566 2.983367 2.850973 -2.144807 -7.461864 -7.018949 5.673781 -4.304801 -3.194423 -1.136435 0.964571 -0.907602 -1.383719 -5.834577 -0.395609 7.343494 -4.857981 -3.794400 5.508033 -3.809642 6.771790 -0.762980 0.925807 -0.215158 1.994792 4.063072 0.765471 3.253311 -5.644094 -9.178472 -0.430764 0.129373 5.212103 -3.829746 -0.526603 4.203605 2.356804 3.863861 5.102752 -2.726107 4.453496 2.805935 -0.949109 -2.875525 -7.806017 -1.057519 -6.196385 2.196594 -3.757313 -4.125870 0.478521 4.486775 0.644422 0.357509 7.283159 -4.109378 5.152875 0.503334 0.244886 -0.516562 -2.915548 2.210820 -3.225896 -6.170270 3.200639 4.958242 1.648932 1.931265 -2.210009 -0.794851 -3.350379 -6.093084 2.522111 -0.128605 0.572078 7.749581 3.813595 13.907800 -6.908089 0.325227 -1.129384 -1.284838 0.839254 -1.392329 -7.516978 2.433629 1.372135 2.107578 10.383116 0.138625 -3.542843 2.827533 0.288654 0.454004 -4.945819 8.498219 -5.605703 -1.323756 -2.777840 -2.257148 -3.076247 -3.309222 -5.980647 -0.684035 8.404959 -4.006213 -9.595853 3.097002 0.811336 2.815560 -11.451307 7.145247 -3.248311 7.162174 -1.800588 -1.774178 -0.659302 1.091868 -0.120668 0.692894 2.764830 -6.492895 5.458535 6.106557 0.703311 1.383617 2.774394 2.171336 -1.637433 -1.693901 -5.021047 3.252298 -0.159387 -4.002644 -0.755540 -2.554014 6.092569 0.550260 -1.428332 0.505326 6.416201 -2.025926 -0.129527 6.081854 -0.820010 -3.237790 2.473257 1.304586 5.683932 -2.771277 -1.175884 -3.975569 0.122795 1.803759 3.466538 -7.723914 -6.023522 -3.977139 -10.704236 -2.141419 -0.266690 3.119651 3.123354 0.949025 -11.666285 -4.734576 5.905152 -1.820610 7.392385 4.473059 5.431053 6.090785 4.007528 0.071505 -1.687118 -0.292784 1.731956 -5.236477 -2.506881 -1.869664 2.373249 -3.166652 5.973762 4.077020 0.696454 2.717950 -1.309691 2.587394 -4.618801 10.634951 5.028366 -6.489118 1.697759 1.507748 8.476977 -6.939687 -4.275842 -PE-benchmarks/boyer-moore-algorithm.cpp__int const& std::max(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/boyer-moore-algorithm.cpp__main = -0.416090 -6.061176 10.218126 6.912660 0.819205 3.846533 7.142066 -7.421115 8.260459 3.398554 -2.111166 -0.300335 -8.564677 -0.129957 -3.932334 2.849823 -5.778406 -6.227311 -1.069454 -4.501805 -1.204541 -7.669478 5.621991 1.306777 4.361243 1.501783 -2.016725 -3.296373 -8.572740 -6.441719 8.602607 -0.876014 3.858718 2.061485 -1.421255 -12.619239 6.818856 6.102845 -2.940140 -8.199199 3.089124 -0.441330 -3.777268 1.905573 1.301207 1.566129 0.015679 7.788623 3.526007 4.025177 3.882879 -1.880404 1.417921 11.293286 -4.754259 7.377510 5.248930 2.146030 0.587279 5.717323 1.391263 1.960098 3.057779 8.088967 -0.786088 -1.647853 1.750656 -3.672572 -10.341055 7.396580 -0.676764 -2.370269 -4.453600 -1.294021 -2.261863 0.787190 -4.846649 4.754187 12.728056 -4.723767 9.672573 2.141139 3.560827 -5.253315 0.560715 -1.475244 3.531977 2.267052 -4.102313 -3.495414 -9.436326 -2.670977 -0.053084 -0.776916 -3.039251 -7.249453 6.113875 -4.114198 -8.746824 2.093715 2.080323 -1.932615 -4.411165 3.026829 3.174709 2.347654 -4.364251 -8.853115 -5.011514 3.745499 -3.550583 -0.813002 -0.401822 1.453069 -3.543539 -2.817750 -7.007869 -2.835749 1.156022 -6.587870 -3.382778 5.303056 -3.917728 3.807005 1.175432 1.862898 -0.986504 3.816594 1.758488 3.381867 6.956437 0.527895 -5.571827 1.579052 4.162244 7.919802 0.143748 1.447858 -0.255578 2.733031 -3.115715 2.305417 -2.497881 0.666655 4.848807 -4.434402 -5.221569 -1.636929 1.798733 -9.875639 3.171199 -6.597443 -2.290026 -0.080396 5.678488 3.440016 2.943467 10.247954 -8.997365 4.568001 -0.478255 0.079517 0.204441 1.720807 4.175507 -3.024599 -7.812699 0.330582 2.793200 0.379831 0.687210 -2.858751 -2.219516 -7.849135 -5.375281 0.736522 1.490118 -3.972898 2.674692 4.806363 7.175119 -8.288995 1.375475 4.450583 -0.688763 0.196397 0.478179 -11.476757 4.692409 0.183066 3.233811 7.083594 0.042887 -3.064948 3.581550 -3.130589 1.044569 -5.051262 1.949648 -6.514401 -2.685055 -6.235254 2.366478 -1.303532 -4.349921 -1.469615 1.100970 7.667829 -1.381171 -6.497967 8.764423 -1.647986 1.507162 -9.697918 8.958733 -2.801571 2.483952 -1.608182 -0.589354 -1.537821 1.933408 -1.322914 -1.516544 1.043543 -2.245987 7.419227 11.949963 1.441967 1.079139 2.107727 6.664752 -2.868500 0.064877 -5.354218 6.184565 -1.370195 -6.604237 0.874019 -3.525992 3.065872 -4.800137 -0.164633 8.930752 7.438246 -0.775106 5.609319 2.158751 4.654401 -3.487870 5.768006 2.918867 5.291827 -2.504192 -0.318917 0.971256 -0.082247 -4.391140 6.303995 -8.376862 -11.273344 -2.713007 -12.024185 -1.943851 -5.455423 4.978425 -1.047430 0.704862 -9.264723 -5.394729 1.823002 -3.343701 5.010146 5.615409 5.100590 5.427455 9.388190 -4.381851 2.553374 1.084610 4.484273 -4.956126 -4.853886 -2.113529 3.519729 -3.688505 3.676555 5.850995 1.024819 2.011089 -5.927187 7.052573 -6.631692 9.642477 4.675897 -1.527408 6.362026 1.393953 10.394819 3.191473 -3.642841 -PE-benchmarks/boyer-moore-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::Graph(int) = -0.685697 -4.189167 4.585016 2.860823 -0.149588 2.959980 2.503857 -2.155263 2.245138 1.658729 -1.562922 1.463141 -2.712354 -1.710908 -0.164083 -0.445949 -2.763135 -2.860169 0.367578 -1.017107 -0.592369 -2.677432 -1.042645 2.828470 0.764031 1.297636 -0.073619 -0.288747 -5.030563 -1.820083 1.696937 -0.203131 1.278886 2.836239 2.317786 -3.750978 2.536615 3.220701 -0.363592 -4.659710 -0.097963 -0.376068 -1.704016 1.240007 0.879149 1.134266 0.943875 2.833723 -0.692354 0.677330 0.613984 -2.057838 0.312667 4.481459 1.111561 3.803309 4.305689 -0.190073 2.128589 2.080231 1.247699 -0.548580 1.391205 2.686136 -0.709875 0.697108 0.971676 -1.569724 -2.520941 1.908653 1.194171 -2.670438 -0.537510 -1.943513 -2.509989 -0.273182 -3.054335 2.320919 5.519197 -2.070426 5.297781 2.094890 3.813657 -1.508898 3.640920 -0.347595 4.157922 1.495550 -2.720405 0.786610 -4.705679 -2.949988 -0.103586 0.320391 -2.111923 0.210715 2.452937 -3.642075 -3.947834 2.994917 -0.149966 -0.627312 -1.715443 0.982782 1.859156 0.744453 -2.385846 -3.582796 -3.001374 2.543108 -3.329073 -0.699177 0.211829 1.995824 -1.186341 -0.299490 -1.869743 -0.367070 3.307155 -2.246820 -1.411749 3.856988 -1.658687 2.710658 -0.755466 -0.841811 -0.060771 0.984621 1.270232 0.233492 1.838212 -1.521862 -3.743889 1.408357 0.320227 2.300616 0.071927 0.174019 2.714851 2.237012 0.709600 2.393201 -2.068296 2.339139 0.468379 -0.863653 -2.494503 -2.742288 -0.329040 -3.004403 0.589733 -2.187621 -1.831298 0.465619 3.187598 2.858261 -0.743031 2.168123 -2.400667 1.962926 -0.543097 0.829296 -1.161571 -0.658571 0.932244 -1.927882 -2.646947 0.662928 1.879886 0.779073 1.823120 -2.361129 -1.036148 -2.143978 -3.897569 1.110417 0.915831 -0.304241 2.836265 2.662256 3.016636 -3.620103 -0.302596 -0.280104 -0.281342 -0.198839 -0.739118 -3.739009 1.272481 0.412608 1.529630 3.500187 -0.211816 -0.584571 0.691446 -0.375378 0.343893 -2.269013 1.751451 -2.336423 -0.371487 -1.261524 1.101338 -1.970028 -1.935538 -1.980284 -0.883055 4.275879 -1.875636 -3.998886 3.229819 -1.253692 2.144144 -3.809560 1.977460 -1.505314 2.583889 -0.249071 -0.586688 -0.900935 0.882761 0.050667 0.997147 0.940947 -2.443743 2.393749 2.917836 0.309212 1.396914 1.512655 1.547384 -2.217795 -1.797070 -2.782750 2.344642 -0.202401 -1.937570 -0.471393 -1.838672 2.638871 -0.049241 -0.369284 1.273731 2.213387 -0.489858 0.371332 1.748846 -1.229232 -2.054162 0.634577 1.464762 2.392199 -1.703381 -0.599976 -1.224932 -0.210898 0.435102 0.517519 -3.809243 -2.587168 -2.558513 -3.710042 -2.400979 -1.036027 1.919298 1.348768 0.706416 -3.844401 -2.074682 1.437938 -1.127781 0.431620 2.491416 2.763849 3.372826 2.632985 0.129291 -0.141724 -0.031590 1.292473 -3.147370 -1.041652 -1.408253 0.585127 -2.924481 3.216144 2.007424 1.382535 1.782832 -0.954298 3.683234 -3.131999 3.411032 3.119846 -3.044094 0.046482 2.443666 3.389968 -1.038931 -2.623009 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isEulerianCycle() = -1.976933 -5.919266 6.420325 6.140851 1.126840 4.014280 1.539627 -3.145048 3.659385 4.869625 -2.450391 3.385249 -3.830254 -1.060188 0.731765 2.478738 -2.656438 -4.054540 0.698214 -1.177217 -0.577171 -3.845185 -1.128461 3.773937 1.711761 1.968412 -1.908314 0.497524 -5.923441 -7.974382 0.819812 -0.669188 3.286410 2.288695 1.498100 -7.414782 4.865366 6.109430 -0.612252 -7.147528 0.252702 -1.389679 -2.053417 1.197367 0.050224 3.344255 1.767069 1.132641 0.025090 2.424693 1.551352 -1.103743 3.577587 4.849189 0.662431 5.921247 5.315719 -0.220546 1.490384 0.998758 1.775756 -0.181761 3.799259 3.920157 -1.681731 -1.542196 -0.340795 0.098502 -5.024795 2.415568 0.853228 -2.941412 -2.657170 -1.900260 -1.707841 -0.590065 -1.750921 1.823730 7.762356 -2.068438 7.816473 3.559087 4.026079 -1.746655 3.979084 -1.010878 4.982360 2.548129 -3.965168 -0.250499 -4.010541 -4.233185 0.455218 2.789632 -3.797805 1.042142 2.591797 -3.906987 -6.088602 3.411835 -0.084812 -1.172824 -4.414198 0.353017 3.288842 2.021286 -1.294912 -5.203473 -3.250884 2.712883 -3.146910 -3.308734 -2.359208 0.837702 -1.325979 1.678459 -4.624694 -1.199111 3.909431 -3.867639 -1.865276 3.995397 -0.897949 2.969697 -1.408517 0.114215 -0.060400 1.886638 1.887897 2.489373 3.141556 -1.786044 -5.778888 2.287329 1.490780 -0.067692 -2.094831 -0.702734 1.812603 2.256836 0.869195 3.737379 -2.255991 4.070436 4.645855 -0.088883 -3.079557 -4.694372 -1.007613 -4.386783 2.084188 -3.708071 -1.071368 0.816207 4.374536 -0.135214 1.159817 4.478243 -4.869857 3.520156 -0.506869 1.780458 0.616060 0.153329 1.647595 -2.722274 -4.205401 3.471065 4.803374 0.572506 1.791967 -2.154161 0.084121 -2.127277 -4.713695 3.711321 -0.206792 0.280004 4.869578 2.419587 10.243683 -3.245734 0.567982 0.003604 -0.446757 0.814291 -0.669138 -6.246006 2.592080 0.319387 3.063293 6.692061 -0.380149 -2.434068 1.214760 0.127813 0.074248 -3.905607 5.207912 -4.540043 0.123485 -1.603853 -0.614294 -2.154480 -3.021517 -2.434571 1.302097 6.602506 -1.522151 -5.788982 3.658669 -2.737648 1.319794 -7.379462 3.917575 -3.078317 2.452219 -1.984558 -2.025620 -0.662487 0.230835 -0.462296 -0.551630 2.894127 -3.044000 3.443937 4.617614 0.573047 0.166992 1.912788 1.631854 -1.014510 -0.506224 -3.176158 3.689439 0.143436 -0.284014 -1.753242 -2.550316 3.369855 -0.504917 -2.140993 1.361092 4.355772 -1.835158 0.134871 2.802990 0.430280 -3.262077 3.004162 1.229874 3.594749 -2.496918 -1.046506 -1.909394 -0.173863 0.051552 3.179131 -5.995989 -3.644159 -2.368833 -5.708068 -3.199749 1.462204 3.647459 1.347367 0.489866 -5.953588 -3.913791 4.751466 -1.409340 3.136457 3.066092 3.883297 4.222181 3.103979 0.628289 -1.596059 -2.521380 -0.085262 -3.406836 -1.978201 -0.664860 2.589640 -1.760270 4.087097 2.875244 0.097911 1.742584 -2.159232 3.859063 -3.329345 6.516327 3.530507 -3.254150 1.368008 1.499814 5.320228 -4.456848 -3.695381 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -4.589819 -14.673273 17.410090 15.676150 1.943403 10.149002 3.735241 -9.420843 10.576829 10.735951 -6.232828 8.061888 -10.388751 -1.927196 -0.016053 6.199946 -8.180393 -10.491163 0.801293 -4.102170 -2.101756 -10.680014 -1.517889 9.546098 4.627873 6.209607 -5.215723 1.469441 -14.845204 -20.050358 4.073343 -1.710427 8.335852 5.510527 3.569109 -21.395777 13.014719 15.348321 -2.037929 -18.456603 1.375700 -3.646719 -5.681656 3.022210 -0.557115 7.769848 3.668586 4.865811 0.849855 5.960637 3.810285 -2.087525 8.650896 14.548668 0.428850 15.233340 13.488915 0.045499 3.073088 3.073663 4.144880 0.372236 9.335218 10.718747 -4.231982 -4.401020 -0.118450 -0.215271 -13.877757 7.462405 1.530404 -7.638578 -7.150444 -5.224686 -5.388490 -1.162815 -4.132733 5.812227 21.057736 -6.035107 19.458842 8.332201 9.898480 -4.679107 9.537893 -2.896585 13.094923 6.491256 -9.860281 -1.411683 -11.073498 -9.994203 1.166333 5.725863 -9.762360 -0.262613 7.170327 -12.252054 -15.965677 8.077432 0.439996 -3.420118 -10.883403 0.503030 8.853744 4.763390 -3.778710 -13.936843 -8.161972 7.418733 -7.560425 -7.843773 -5.393949 2.408772 -3.196253 3.559788 -12.671037 -2.989871 9.324803 -9.912954 -4.550925 10.529291 -2.904331 7.389798 -2.952608 1.262398 -0.391078 5.527319 4.379306 6.264005 8.022259 -3.190065 -12.543712 6.104616 3.521245 1.096838 -5.576333 -1.801188 3.977844 5.617206 1.008676 8.521394 -6.645369 8.974549 11.735735 -0.764022 -8.340286 -11.080898 -3.089721 -13.218076 5.042129 -10.010675 -3.969298 2.233391 11.134509 0.988441 3.433499 11.960344 -13.243731 8.984150 -0.874757 4.150112 1.899231 0.464988 4.704337 -7.106060 -11.697127 8.538772 11.003038 1.487662 4.191869 -5.549668 -0.510966 -6.545369 -11.921404 9.520119 0.511455 0.940350 12.220757 6.728964 25.448029 -9.117428 1.854313 0.887274 -1.728154 2.219088 -1.790735 -16.679826 6.987813 1.140387 8.566082 17.603572 -0.993259 -5.903999 3.612972 0.319349 0.837942 -10.386952 12.453391 -12.085380 -0.435296 -5.212056 -1.154383 -5.257876 -7.330944 -6.435663 2.135144 17.026570 -5.844651 -15.137765 11.291346 -6.943107 4.603765 -19.425182 9.974497 -7.799297 7.565670 -4.416921 -4.275840 -1.718182 -0.814030 -1.778718 -0.883113 6.994138 -7.392739 9.189835 12.835765 1.531657 0.908654 4.782635 5.178561 -3.136272 -0.421568 -8.739548 10.196404 0.211854 -2.242695 -3.798101 -6.563857 7.832506 -2.439719 -4.323731 4.745809 11.733279 -3.765187 1.598346 7.587298 2.083737 -8.311662 8.476708 2.768909 8.426300 -6.576952 -2.773211 -3.895649 0.290070 -0.694211 8.593221 -15.832214 -11.474580 -8.422300 -16.028039 -7.573674 1.361249 9.360995 2.667604 0.940513 -15.483458 -10.391111 12.160700 -3.811134 9.192501 8.511151 10.328842 11.032276 9.722472 0.255024 -3.040910 -5.369425 0.451424 -8.845015 -5.277419 -2.912462 7.058730 -4.196277 10.162818 8.624361 0.141974 4.836759 -5.836772 9.891197 -8.942353 17.531148 9.224055 -8.187804 4.506138 3.277309 14.253095 -8.937869 -9.494629 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::size() const = -0.387284 -0.371532 0.773938 0.320844 -0.170659 0.278168 0.304016 -0.388084 0.845203 0.109574 -0.377403 -0.674361 -0.581922 -0.351238 -0.090474 -0.174647 -0.514516 -0.412745 -0.060106 -0.466888 0.119298 -0.694522 0.201610 0.006166 0.073665 0.224108 0.171625 0.096355 -0.184544 -0.217252 0.924207 -0.165262 0.268995 0.507762 -0.070079 -1.102257 0.544832 0.345438 -0.190286 -0.474045 -0.022809 0.008320 -0.194323 0.193505 -0.198771 0.180420 0.039382 0.604261 0.157127 0.011181 0.197205 -0.662300 -0.104642 0.853201 -0.341903 0.311429 0.025167 -0.037450 0.010715 0.528309 0.049191 0.091831 0.172190 0.694340 0.007461 -0.021280 0.499042 -0.353382 -0.897220 0.619520 -0.278284 -0.177902 0.004529 -0.160366 -0.226917 0.020631 -0.325202 0.376634 0.879210 -0.187863 0.731604 0.295841 0.261921 -0.229672 -0.257323 -0.036049 0.400128 0.047389 -0.272438 -0.169507 -0.476949 -0.262876 0.028064 -0.193320 -0.120759 -0.220614 0.508317 -0.446565 -0.325055 0.025297 0.141524 -0.103042 -0.276205 0.199323 0.153623 0.097530 -0.151520 -0.452379 -0.310074 0.318857 -0.438797 0.260761 -0.027672 0.397500 -0.204026 -0.276378 -0.365191 -0.255067 -0.173217 -0.389377 -0.013988 0.421900 -0.424025 0.079814 0.274469 0.238546 -0.060081 0.424507 0.131487 0.208812 0.222969 0.011344 -0.311236 -0.246688 0.188378 0.665641 0.387714 -0.211335 0.211024 0.126845 -0.355811 -0.066634 -0.230441 -0.344719 0.386590 -0.381711 -0.036715 -0.096324 -0.115211 -0.877881 -0.042425 -0.531654 -0.159542 0.439033 0.406826 0.800886 0.201875 0.998469 -0.943993 0.323400 -0.366399 -0.292067 -0.283544 0.256198 0.239240 -0.096360 -0.284096 -0.255688 0.089640 0.283204 0.122196 -0.596341 -0.325240 -0.617242 -0.233762 0.340488 0.098164 -0.108592 -0.014545 0.522851 0.187918 -0.882506 0.231805 0.419972 0.002259 -0.114155 0.336482 -0.763430 0.290500 0.064624 0.030259 0.116605 -0.035670 0.144008 -0.034099 -0.501431 -0.092232 -0.490596 -0.068407 -0.354817 0.057755 -0.500961 0.229172 -0.512994 -0.359403 -0.060509 0.021754 0.316336 -0.189064 -0.452110 0.745957 0.175365 0.206653 -0.370625 0.277183 -0.225293 0.624548 -0.184371 -0.029728 -0.295166 -0.030133 0.194810 -0.291975 -0.106003 -0.047832 0.591802 0.759136 0.258728 0.026962 0.178812 0.689983 -0.327113 0.034322 -0.455066 0.043418 -0.029940 -0.473285 0.099675 -0.317965 0.147392 -0.181735 0.151018 0.609262 0.780065 -0.068114 0.581816 0.132211 0.081024 0.062176 0.187535 0.309027 0.455097 -0.052651 0.015776 0.154396 0.291914 -0.512121 0.217045 -0.641822 -0.972409 -0.433522 -0.677075 -0.358757 -0.602080 0.219461 0.129638 0.319419 -0.474353 -0.296567 0.231000 -0.207644 0.657884 0.005963 0.274767 0.302301 0.703464 -0.408911 -0.089583 0.462744 0.390665 -0.463596 -0.190555 -0.408415 0.494100 -0.318914 0.187442 0.530321 -0.176170 0.024752 -0.131805 0.442067 -0.661660 0.599815 0.413625 -0.111701 0.469397 -0.106205 0.662546 0.569911 -0.198385 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::DFSUtil(int, bool*) = -0.438597 -4.778451 7.367262 6.803046 -0.686389 3.554398 0.161955 -4.718486 3.911499 2.263684 -1.566152 2.801020 -4.050824 1.139190 -2.035728 2.797408 -4.778321 -3.581659 -1.596279 -3.028715 -2.513701 -3.436284 -0.160582 3.387741 2.401859 3.252739 -3.229928 0.614226 -5.208718 -5.504043 2.042425 -0.545110 3.096135 2.048917 1.530575 -9.203980 5.072826 5.907333 -1.197173 -5.643835 0.811828 -2.525795 -1.632831 -0.712613 -1.613949 1.530410 -0.259360 1.587382 1.751893 1.141157 1.368664 1.261547 2.684674 7.694074 -1.008877 5.340629 3.832069 0.255040 0.356043 0.735569 1.650558 1.388206 3.136026 2.872018 -0.980480 -3.375084 -0.715968 -0.951497 -4.072161 3.815684 0.288337 -2.521306 -3.337700 -2.551516 -3.736530 -1.179403 -3.113135 3.473208 7.597991 -3.867237 5.319332 2.128548 2.060106 -0.709564 4.008610 -0.855767 5.984835 2.357648 -2.274822 0.549482 -2.659217 -1.701368 1.256813 1.381165 -4.514234 -4.472007 3.128963 -7.261054 -6.579594 2.862714 1.412951 -1.630162 -3.077297 -1.004534 2.528292 0.917734 -2.501823 -5.103286 -1.742474 2.748165 -0.478748 -3.078414 -1.109365 0.325975 -0.204204 0.384521 -5.742698 -0.168446 2.313960 -2.837304 -1.131275 4.715893 0.155175 1.376293 -1.228185 0.880667 -1.023516 3.696082 -0.261436 2.901418 -0.114619 1.470813 -2.532012 1.317661 1.713935 0.381141 -2.572315 -1.154371 0.126130 2.156579 -1.247736 2.552448 -2.690413 3.204642 3.891005 -0.633039 -3.556536 -3.309934 -2.049059 -6.300564 0.627241 -3.683568 -3.494253 0.957063 4.451102 2.324741 2.150994 4.142017 -3.478166 2.453418 0.054375 0.737226 2.672498 -0.323779 2.124858 -2.918849 -4.899655 3.641911 2.230456 1.704497 1.312672 -1.071348 -0.344376 -2.641484 -3.010722 3.328565 1.439006 -0.048105 5.391028 3.387487 7.713801 -4.101192 1.972698 1.159589 -1.565871 1.361792 -0.712999 -6.074464 2.014178 1.062726 1.654784 6.508877 -0.787797 -1.824574 1.634928 -0.291351 1.461539 -4.370609 3.212473 -4.132989 -0.480017 -3.563290 0.684741 -1.680234 -1.878784 -2.803515 -1.604672 6.590988 -6.189868 -4.279338 5.911803 -0.363621 2.495473 -6.481616 3.094183 -2.908945 4.314579 -1.278469 -1.634294 0.301468 -0.580107 -2.464980 1.183374 3.041027 -2.966686 1.817734 5.069620 0.954189 0.767623 0.751348 3.228303 -1.392322 1.769490 -3.659773 5.405352 0.532715 -1.780583 -1.074292 -2.597792 0.810786 -1.855714 0.284442 2.959635 3.883415 1.098678 0.700359 3.130987 2.335318 -3.200502 3.316530 0.006750 1.578383 -3.058714 -1.049465 -0.103027 1.336690 -0.699907 2.745819 -6.351116 -5.546001 -6.220385 -4.464058 -1.445176 -0.092763 2.513417 0.213281 -0.869640 -4.983009 -4.816209 5.627354 -2.325388 3.877784 3.425532 3.589604 4.208322 4.665210 -0.839975 -0.067224 -1.094057 0.676303 -1.341432 -1.179747 -3.000503 4.235277 -1.762162 3.081759 4.989165 -0.928602 2.959487 -0.318467 4.112284 -3.422313 6.789416 2.784582 -3.607630 2.672872 3.477198 4.944119 -0.876582 -3.752272 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::getTranspose() = -1.080406 -5.945078 9.969224 8.304392 -0.678037 4.237685 1.026622 -6.424715 6.173177 3.396911 -2.388713 2.896579 -5.345965 0.871982 -1.579758 4.204410 -6.222841 -4.986785 -1.361336 -4.113289 -2.720336 -5.138897 0.639283 3.459767 2.960830 3.483797 -3.407568 1.064435 -5.591915 -9.277304 3.255260 -1.077300 3.838802 2.077078 1.857494 -12.832786 7.573258 6.824423 -1.907989 -7.886952 1.261690 -2.236529 -2.556709 0.234520 -1.522388 2.888968 0.477236 3.602136 2.134638 2.886735 2.342326 0.585898 3.393800 9.686990 -1.665770 6.958418 5.486768 0.336842 0.134035 1.835309 1.801281 1.346505 3.790550 4.911524 -1.337523 -3.767963 -0.190556 -1.270604 -6.725495 4.980619 0.300372 -4.018618 -4.411437 -3.320491 -3.746726 -1.116347 -4.463181 4.209554 10.745961 -4.837988 7.660579 3.086117 3.400510 -1.436234 4.313955 -1.368344 7.399367 3.072111 -3.783105 -0.004432 -3.833422 -3.966130 1.453738 1.204031 -4.969825 -5.220617 3.984615 -7.957140 -8.118887 3.807756 1.737051 -1.863057 -4.974979 -1.069874 4.157630 1.564900 -3.073966 -7.110131 -2.907820 3.412878 -1.760403 -3.199587 -1.665987 0.792149 -1.012541 0.739794 -7.887873 -0.730928 3.256277 -4.144975 -1.742694 5.580446 -1.032021 2.188195 -1.030402 1.444545 -1.300076 4.942196 0.676929 3.842165 1.428969 1.088011 -4.356070 2.910951 2.250826 0.682894 -2.254301 -0.980228 0.389272 2.657880 -2.015976 3.547182 -3.745841 3.750012 6.032112 -0.662832 -5.084610 -3.978646 -2.534454 -8.371734 2.332275 -5.590014 -3.824896 1.500689 5.501877 2.506576 2.848167 6.146809 -6.185568 3.887171 -0.837770 1.402257 2.541454 0.006538 3.195092 -3.569606 -6.056644 4.277861 3.545853 1.368487 2.098983 -2.658525 -0.167551 -4.485114 -4.738080 4.470918 1.518619 -0.261160 5.764019 4.014666 11.231674 -4.676589 1.708098 1.911905 -1.585370 1.361221 -0.510335 -8.185363 2.858787 1.129014 3.493993 8.410060 -0.590663 -2.542397 2.002142 -0.379061 1.408938 -5.220808 4.085378 -5.554577 -0.517028 -3.926549 0.952841 -2.577468 -2.679613 -2.876268 -0.972352 8.349149 -6.018019 -6.585108 7.768669 -2.481615 3.564422 -8.929450 5.474789 -3.776955 5.082124 -1.988131 -1.450961 -0.303011 -1.308357 -2.268157 1.135100 3.247964 -2.605028 3.059195 7.415615 1.176200 0.850195 1.596545 4.363031 -2.263951 1.911035 -4.378433 6.659198 -0.261485 -2.044488 -1.143332 -3.057745 1.464621 -2.696765 -0.067048 3.877522 5.258798 0.020992 1.736559 3.693472 2.821696 -4.192471 5.003569 0.696210 2.798192 -3.814907 -1.294229 -0.001352 1.411900 -1.399041 3.881108 -8.118292 -7.133665 -7.681128 -7.300726 -2.845626 0.041848 4.052027 -0.108040 -0.489832 -6.493871 -5.538382 7.988096 -2.559343 5.014501 4.734837 4.973764 5.592770 6.692846 -1.073941 -0.704799 -1.784834 0.592818 -2.819731 -1.981250 -3.259858 4.915764 -2.556705 3.753705 5.953602 -0.606503 2.912077 -2.075294 5.618158 -4.517845 8.659260 3.863164 -3.635270 3.768091 3.662967 6.914474 -1.222735 -4.508826 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.085380 -0.930900 1.945260 1.708822 -0.285783 0.635872 0.114133 -1.353850 1.506059 0.376899 -0.067819 0.342806 -1.073812 0.606120 -0.288856 1.040788 -1.525379 -0.990867 -0.506204 -1.076484 -0.850749 -0.992763 0.430361 0.250224 0.639610 0.451568 -0.961209 -0.003198 -0.976160 -0.939302 1.097763 -0.399690 0.817360 0.200931 0.262034 -3.368278 1.425328 0.911442 -0.497255 -1.375065 0.242036 -0.832808 0.140978 -0.606392 -0.469205 0.216984 -0.181871 0.502328 0.994854 0.292988 0.378516 0.476908 0.166876 2.616431 -0.978686 1.020922 0.483598 -0.061988 -0.396557 0.300375 0.414138 0.499471 0.851686 0.814568 -0.276556 -1.132826 -0.225280 -0.654969 -1.402194 1.259315 -0.013263 -0.400858 -1.118264 -0.509900 -0.988812 -0.506919 -1.304607 1.283676 1.975257 -1.342364 1.001074 0.235795 0.548388 0.101594 0.859904 -0.080377 1.632847 0.435025 -0.633614 0.087729 -0.567827 -0.374934 0.334082 -0.199316 -0.655744 -1.772952 0.635330 -1.275595 -1.506606 0.682215 0.590086 -0.007002 -1.311362 -0.549509 0.829100 0.467478 -0.848325 -1.421908 -0.548444 0.529557 0.165841 -0.573301 0.042518 -0.392173 -0.241964 -0.609435 -1.624381 -0.208413 0.233124 -0.674645 -0.472828 1.290256 -0.578237 -0.066416 -0.157349 0.360989 -0.540189 1.451476 -0.262172 0.941812 0.062214 0.321447 -1.111556 0.197968 0.531604 0.948342 -0.160045 -0.149014 -0.566815 0.401086 -1.015895 0.216758 -0.200599 0.611621 1.206090 -0.287405 -1.054058 -0.469611 -0.164743 -1.902214 0.358808 -1.132533 -0.371169 0.679310 1.155875 1.116064 0.938880 1.374871 -1.175703 0.788921 -0.329824 0.035881 1.127585 0.289462 0.771478 -0.686387 -1.070355 0.663894 0.309603 0.388315 0.350420 -0.476832 -0.009150 -0.986376 -0.578915 0.524856 0.697287 -0.113721 0.988533 0.767921 1.624602 -1.527722 0.579584 0.748975 -0.280602 0.339971 -0.147646 -1.480077 0.587139 0.319124 -0.025675 1.147233 -0.311938 -0.726554 0.281744 -0.217972 0.572149 -0.893849 0.133331 -0.915216 -0.249967 -1.098426 0.222797 -0.582441 -0.446288 -0.543180 -0.444482 1.624300 -1.384425 -1.052981 1.872003 -0.460754 0.860401 -1.693141 1.373654 -0.768692 1.029095 -0.698313 -0.212187 -0.136026 0.212074 -0.748054 0.410042 0.746071 -0.497975 0.208872 1.790081 0.455388 0.317170 0.072114 1.206721 -0.126156 0.768731 -0.646561 1.634709 -0.195124 -0.323301 0.059859 -0.645901 0.144965 -0.584246 0.376780 1.246090 1.042358 0.557408 0.721803 0.889218 0.908277 -0.792465 0.905686 -0.137519 0.417440 -0.672456 -0.054868 0.280606 0.553013 -0.553314 0.582048 -1.503536 -1.764982 -1.606332 -1.040347 -0.190462 0.087610 0.230735 -0.280839 -0.170860 -1.195406 -0.918588 0.996996 -0.686000 0.944969 0.665873 0.643776 1.051886 1.636094 -0.775505 -0.209932 0.022234 -0.069783 -0.154580 -0.220639 -1.131166 1.300215 -0.824532 0.501864 1.444709 -0.379206 0.465442 0.056390 1.230512 -0.768774 1.768530 0.640878 -0.505769 1.072537 1.123884 1.569292 0.479379 -0.866744 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::~Graph() = -0.002400 -1.512357 3.195399 2.736500 0.092490 1.544931 -0.648093 -2.202884 2.053539 1.407492 -1.134983 0.800778 -1.171725 -0.073622 0.238834 1.546366 -2.199402 -1.431694 -0.287010 -1.000429 -0.384777 -1.655026 -0.194105 1.096493 0.716516 1.100914 -1.161483 1.498869 -1.239268 -3.617058 0.329595 -0.312307 0.878150 0.754719 1.055284 -2.334019 2.946963 2.126089 -0.345775 -2.629630 0.075713 -0.906592 -0.803067 0.090246 -0.187501 1.476822 0.081803 0.491479 0.599935 0.803826 0.394398 0.059922 1.039796 1.524430 -0.051418 2.142308 1.384873 -0.099650 0.258544 0.783906 0.546846 0.592508 1.297952 1.538881 -0.568194 -1.262544 0.038913 0.197220 -1.666281 1.734704 -0.481837 -1.687004 -1.213419 -1.135536 -1.562648 -0.065522 -1.059220 1.809889 2.841549 -1.244884 1.918974 0.991782 1.263763 -0.229317 1.792569 -0.701563 3.065571 1.008996 -1.257889 -0.032965 -0.927707 -2.475377 0.785095 -0.288199 -1.442487 -0.375425 0.510509 -3.811109 -2.334194 1.081934 0.535069 -0.516343 -1.921060 -0.383474 1.900595 0.384414 -0.028043 -1.839237 -0.120118 1.393248 -1.049702 -1.115263 -0.762872 0.081770 -0.298715 1.074202 -2.435826 -0.247353 1.168139 -0.764041 -0.373980 1.849450 -0.299453 0.189645 -0.659883 0.164343 -0.217671 1.281836 -0.402044 1.495926 0.396846 0.320598 -1.129903 1.802904 0.346006 -1.585296 -0.591716 0.389458 0.298138 0.783978 -1.151027 1.310451 -2.002601 1.202420 1.668266 0.070322 -1.539356 -1.270927 -1.583419 -2.340788 0.756761 -1.338077 -1.489241 0.757286 1.924924 1.093760 1.017530 1.395091 -2.170116 0.290664 -0.448547 0.892010 0.953643 -0.602250 0.734837 -1.133809 -1.500208 1.703506 1.241266 0.015176 0.946446 -0.906895 0.013534 -1.116214 -1.416556 2.171086 0.432653 0.902128 2.001616 1.130958 2.488781 -0.938810 0.647952 0.651939 -0.129996 0.415342 -0.507531 -2.206022 0.847352 0.394876 2.437795 2.666980 -0.292784 -0.461888 -0.182968 0.348883 0.628600 -1.535728 0.982461 -1.749513 0.477530 -0.648676 -0.099255 -0.808637 -1.075912 -0.863095 -0.401245 2.362801 -1.324125 -2.374268 2.890435 -1.816492 1.429839 -2.430533 0.193609 -1.388235 1.938372 -0.169960 -0.032437 -0.254481 -1.404732 -0.940688 0.374185 1.124741 -0.752568 0.878853 1.277256 0.457902 0.243146 0.360502 0.743020 -0.772620 0.579723 -1.321525 1.821514 -0.115509 0.285326 -0.595073 -1.048015 0.568939 -0.602240 -0.403758 0.470045 1.351231 0.110443 0.402019 1.151098 0.537254 -1.429649 1.658375 0.090390 0.251965 -1.084711 -0.721971 0.025449 0.005829 -0.173247 0.759240 -2.417551 -1.675085 -3.149585 -1.942962 -1.066089 -0.348488 1.155359 0.231372 -0.115671 -1.502124 -1.533168 2.825930 -0.486154 1.272734 0.893316 1.333562 1.384982 1.858025 -0.116438 -0.264483 -1.128863 -0.499416 -1.193467 -0.801247 -1.177509 2.041397 -0.410761 1.258826 1.954043 -0.369115 0.754273 -0.319818 0.566546 -1.182792 1.887149 1.280987 -1.025899 0.502340 0.724531 1.558079 -0.804578 -1.627906 -PE-benchmarks/euler-circuit-directed-graph.cpp__main = -1.461178 -4.335350 6.755061 5.346684 1.221301 3.005123 1.917618 -2.797513 4.140976 3.732511 -2.302997 0.239934 -4.147274 -0.969813 0.533787 2.635243 -3.626848 -4.440009 0.272620 -1.205940 -1.054819 -3.990609 1.398688 1.592257 1.935532 2.808462 -2.302204 -0.292419 -2.885958 -6.425226 3.666182 -1.189952 3.101878 3.975568 -0.360236 -9.026434 6.338627 4.210310 -1.367776 -4.027113 0.819767 -0.153167 -1.941287 0.494365 -0.988307 2.790111 1.795897 3.647896 0.708562 2.977424 2.251295 -2.500391 3.109340 6.557136 -0.111701 4.943119 4.317518 0.964426 0.842075 1.773912 1.230984 0.371044 2.928999 4.499840 -1.078541 -0.196695 0.746750 -2.073880 -5.752028 3.365908 -0.413083 -1.694652 -2.149658 -1.350970 -0.779950 0.111761 -1.691738 2.545408 7.529208 -3.480635 6.406743 3.277723 4.039434 -1.013250 0.382166 -0.645363 2.649566 2.421938 -3.260270 -1.129196 -4.691376 -4.240446 0.166807 -0.703625 -3.442392 -2.763707 2.352837 -3.427312 -5.162206 2.396499 -0.035174 -0.676858 -3.132344 -0.149399 3.701678 0.641348 -1.381580 -4.427404 -2.699686 1.712684 -3.454400 -1.131069 -1.755334 1.195666 -1.734926 1.053082 -5.510354 -0.850686 1.713670 -4.020283 -0.604421 3.803574 -1.846657 2.391576 -0.703206 0.460585 -1.108370 3.278062 2.254925 2.125917 3.162468 -0.068602 -2.956243 1.558546 2.363708 1.928447 -1.063869 -1.486516 0.722091 1.599808 -1.338135 2.490893 -1.691404 1.230773 4.694008 -0.993715 -4.016662 -3.270019 -1.824889 -6.844715 2.713827 -3.996282 -0.861344 2.352162 4.261704 1.663149 2.328466 5.855581 -6.137801 3.114902 -1.881853 1.323967 -0.672072 0.928624 1.825843 -2.307045 -4.014001 2.841212 3.886007 0.071276 2.046240 -3.362479 -0.064177 -3.746049 -3.859260 2.498995 -0.617371 -0.909980 2.085048 2.012667 7.485388 -3.369165 0.762533 1.939784 -0.200948 0.663120 0.922599 -6.077221 2.552024 -0.112764 1.847456 5.265924 0.391074 -2.451624 1.557587 -0.883282 -0.461445 -3.491612 3.303256 -3.601590 -0.620737 -2.487836 0.944298 -2.351496 -2.221649 -0.832513 0.292723 5.436872 -1.506323 -4.102694 3.732260 -0.977946 0.879694 -5.373008 4.936988 -3.077319 3.209892 -0.629358 -2.573516 -0.691699 -1.328706 0.853618 -1.065433 1.180188 -1.138227 3.023266 5.160406 1.110936 0.465354 1.945003 2.349769 -0.830939 0.560965 -2.405180 2.464771 -0.576334 -2.111831 -0.660461 -2.235559 2.480065 -1.651434 -1.731822 2.834535 4.714504 -1.191533 2.038498 1.984602 1.743206 -3.428261 1.790494 1.839120 3.945029 -2.311787 -1.055687 -0.673502 0.422959 -1.379007 3.115597 -5.421518 -5.114006 -4.323631 -6.018369 -3.392432 0.286122 3.083266 -0.204920 0.893064 -4.473540 -2.997104 4.067314 -2.277717 2.822474 3.470078 3.482924 4.451506 4.562143 -1.703364 -2.075422 0.196253 0.582110 -3.200281 -0.680342 -3.002127 3.804024 -0.870389 2.804453 3.154003 -0.723865 0.857133 -2.406084 4.128113 -2.945249 6.617131 2.878288 -2.184234 2.152924 0.004138 5.470309 -1.346532 -3.071283 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::addEdge(int, int) = -0.567255 -1.598679 1.849780 1.774650 -0.000190 0.984173 0.517325 -0.813353 0.896731 1.190453 -0.269053 0.770475 -1.272174 0.144137 0.090893 0.742620 -0.984146 -1.073392 -0.159821 -0.696510 -0.719095 -0.944353 -0.439487 1.048037 0.530559 -0.179077 -0.730443 -0.190408 -1.508839 -0.942241 0.213900 -0.243024 0.897659 0.030183 0.501204 -2.962406 1.091190 1.348828 -0.261729 -1.516463 0.053679 -0.752990 0.090973 -0.055815 -0.647218 0.248623 0.390508 0.259453 0.440152 0.349754 0.675954 -0.083355 0.748388 2.898711 -0.194278 1.496932 1.175433 -0.105626 0.123542 0.223259 0.475112 -0.135597 0.945220 0.679501 -0.294998 -0.601809 -0.271347 -0.342929 -1.079846 0.742982 0.341895 -0.609338 -0.935041 -0.666421 -0.807072 -0.752445 -1.437509 0.845220 2.172392 -1.377635 1.767652 0.901112 0.937541 0.159982 1.332711 -0.065822 1.640573 0.439211 -0.944081 0.514168 -0.531779 -0.332870 0.245868 0.435221 -0.958690 -1.290014 0.722892 -0.859466 -1.921632 1.252557 0.057324 -0.125804 -0.933742 -0.426924 0.650229 0.448604 -1.072213 -1.646344 -1.029550 0.715727 -0.213505 -0.815891 -0.127047 -0.225740 -0.017259 -0.349074 -1.520159 -0.190864 0.851790 -1.052246 -0.618893 1.527313 -0.322792 0.864797 -0.155792 0.116134 -0.198261 1.191594 0.446986 0.708258 -0.122364 -0.277165 -1.816007 0.189742 0.416073 0.401585 -0.235407 -0.098708 0.241007 0.642825 -0.027255 1.102134 0.099320 1.384912 0.917728 -0.064333 -0.955777 -1.170082 -0.277055 -1.387349 0.437358 -1.077045 -0.569750 0.421871 1.188594 0.667120 0.333157 1.185365 -0.709499 1.108758 -0.282990 0.069448 0.539182 -0.198901 0.703734 -0.818226 -1.202824 0.737499 1.105974 0.512402 0.483931 -0.614841 0.026997 -0.643581 -0.750522 0.289077 0.393673 -0.280005 1.526168 0.850022 2.953562 -1.276332 0.496219 0.087504 -0.206040 0.360779 -0.324603 -1.659956 0.471728 0.299160 -0.466355 1.453511 -0.240887 -0.827227 0.560474 -0.361872 0.360930 -1.106782 0.897711 -0.966836 -0.201423 -0.900749 0.229889 -0.760399 -0.601437 -0.718520 -0.084505 1.894909 -1.633474 -0.983123 1.143569 0.043643 0.487870 -1.720241 2.268920 -0.727304 1.166187 -0.836073 -0.904197 -0.061172 0.842767 -0.159061 0.478064 0.861187 -0.838543 0.331227 1.481752 0.255667 0.478356 0.516042 0.999615 -0.084703 0.051012 -0.822318 1.393971 0.033954 -0.319753 -0.285225 -0.744374 0.697123 0.073749 0.069234 0.603429 1.171714 -0.206129 0.037421 1.090643 0.188449 -0.745915 0.576009 -0.056954 1.051564 -0.996274 -0.032334 -0.479507 0.275893 -0.098805 0.550471 -1.776481 -1.004345 -1.294489 -0.611174 -0.634408 0.868872 0.369716 0.293556 -0.043747 -1.572131 -1.104204 1.398842 -0.811065 0.360448 0.840359 1.001572 1.460429 1.278605 0.233305 -0.514034 -0.231523 -0.108907 -0.511243 -0.079222 -0.582447 0.834896 -1.091324 1.142008 0.918627 -0.004464 0.622148 0.316009 1.021037 -1.053857 1.882178 0.900664 -0.965014 0.692440 1.660126 1.498559 -0.801297 -0.998733 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::~list() = -0.156841 -0.373990 0.605491 0.492285 -0.008479 0.257556 0.057895 -0.419974 0.675973 0.152770 -0.117451 0.036386 -0.480467 0.178459 -0.264086 0.301693 -0.445860 -0.462191 -0.080958 -0.321325 -0.275480 -0.491239 0.128752 0.052131 0.162067 0.104419 -0.274481 0.102934 -0.520161 -0.294780 0.368516 -0.217715 0.191694 0.016587 0.088622 -0.825867 0.464210 0.310798 -0.165362 -0.499170 0.021029 -0.407057 0.155385 -0.216825 0.023280 0.106142 0.030593 0.212402 0.393277 0.059536 0.235212 -0.004130 -0.091630 0.825784 -0.450350 0.392744 0.131117 0.049736 -0.107945 0.167087 0.132771 0.104358 0.297186 0.408253 -0.256212 -0.284533 -0.072140 -0.224455 -0.483488 0.466431 -0.140545 -0.045468 -0.450870 -0.159473 -0.405820 -0.203914 -0.729158 0.355682 0.799856 -0.450621 0.442653 0.166519 0.391895 0.046070 0.355192 -0.038229 0.628335 0.119479 -0.408329 0.042570 -0.244773 0.028870 0.008579 -0.046692 -0.143297 -0.439353 0.211300 -0.576930 -0.585116 0.213356 0.086901 0.119895 -0.368528 0.050466 0.326825 0.151385 -0.350336 -0.616034 -0.117501 0.155643 0.037309 -0.141237 0.150572 -0.235944 -0.094748 -0.276047 -0.556212 -0.235275 0.060743 -0.392349 -0.171285 0.528066 -0.239574 0.061983 0.004776 0.074905 -0.101635 0.566879 -0.013566 0.309716 -0.114132 0.054045 -0.685833 0.131195 0.162217 0.306094 -0.100189 0.161233 -0.089004 0.067607 -0.388631 -0.056329 -0.222900 0.132424 0.331242 -0.228471 -0.341392 -0.150799 -0.061527 -0.670798 0.169650 -0.408171 -0.161795 0.044125 0.439527 0.524808 0.349922 0.684088 -0.432808 0.220053 -0.144414 -0.009458 0.386495 0.087137 0.338399 -0.256095 -0.375248 0.236555 0.185305 0.025913 0.194163 -0.285289 -0.034002 -0.445226 -0.062849 0.232027 0.259426 -0.034556 0.439749 0.205289 0.243722 -0.639105 0.268875 0.282998 0.034496 0.141440 -0.065111 -0.568934 0.348320 0.109767 0.079150 0.222957 -0.082443 -0.209549 0.076209 -0.136457 0.302217 -0.419798 -0.031045 -0.349812 -0.138153 -0.418786 0.259045 -0.211152 -0.213471 -0.099740 -0.116221 0.519502 -0.351342 -0.287406 0.604397 -0.007890 0.390823 -0.474240 0.315739 -0.324658 0.535402 -0.199324 0.045340 -0.061471 0.179040 -0.059512 0.044953 0.280465 -0.144766 0.194551 0.499734 0.182905 0.189663 0.170869 0.467800 -0.042566 0.132955 -0.150748 0.446699 -0.005651 -0.176198 0.172020 -0.290161 0.118435 -0.086471 0.119504 0.538529 0.532280 0.098212 0.371655 0.285553 0.264459 -0.259255 0.204670 -0.071001 0.239471 -0.276172 -0.014479 0.004503 0.135824 -0.233964 0.123873 -0.549479 -0.715878 -0.471948 -0.357133 -0.071809 -0.120492 -0.012805 -0.012193 0.071118 -0.422657 -0.267720 0.401426 -0.276688 0.431809 0.098480 0.237926 0.371084 0.612820 -0.311722 -0.176998 0.068780 -0.031391 -0.163340 -0.011408 -0.397625 0.407618 -0.407886 0.212941 0.432140 -0.204004 0.023427 0.158135 0.345745 -0.302635 0.615752 0.320473 -0.142256 0.461041 0.382560 0.746402 0.250179 -0.318471 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::~_List_base() = -0.004984 -0.904429 1.973330 1.618572 -0.209072 0.603763 0.201538 -1.396566 1.469698 0.501547 -0.244918 0.271430 -1.067414 0.488523 -0.486438 1.034986 -1.397893 -0.927786 -0.419509 -0.986434 -0.616738 -1.082559 0.569320 0.242105 0.653518 0.607510 -0.892435 0.057362 -0.824527 -1.459718 1.015086 -0.373701 0.759491 0.163555 0.145670 -2.880176 1.563232 1.051976 -0.440097 -1.318876 0.269490 -0.591721 -0.094475 -0.397289 -0.419265 0.342477 -0.139827 0.589168 0.843475 0.414687 0.511497 0.365398 0.415681 2.246290 -0.841372 1.004545 0.478362 0.034207 -0.241665 0.338974 0.404962 0.505059 0.731533 0.951502 -0.147094 -0.937893 -0.188662 -0.496795 -1.438538 1.224606 -0.246542 -0.444955 -1.103665 -0.441297 -0.880993 -0.230217 -1.279965 1.149148 1.976621 -1.090304 1.077059 0.285918 0.444680 -0.158553 0.544861 -0.135835 1.418942 0.476229 -0.596500 -0.062665 -0.412990 -0.491859 0.343206 -0.130050 -0.718884 -1.504347 0.683830 -1.398315 -1.429776 0.530249 0.524041 -0.135414 -1.051187 -0.380059 0.721473 0.430740 -0.662059 -1.349062 -0.396235 0.443008 0.133453 -0.517730 -0.080199 -0.128172 -0.287966 -0.281088 -1.502187 -0.308063 0.142186 -0.775262 -0.333811 1.037325 -0.385804 0.049778 -0.130334 0.325126 -0.350303 1.245689 -0.140022 0.971628 0.138788 0.510257 -0.830206 0.336291 0.572875 0.573629 -0.193921 0.010122 -0.401967 0.374198 -0.848717 0.218615 -0.448187 0.390508 1.270912 -0.317601 -0.975391 -0.401049 -0.309743 -1.869107 0.375935 -1.095324 -0.482810 0.537327 1.082156 0.856399 0.847438 1.416873 -1.361921 0.589311 -0.224683 0.044440 0.859065 0.160209 0.651455 -0.591819 -1.145166 0.686178 0.398248 0.285697 0.296982 -0.434298 -0.056363 -0.932422 -0.496079 0.740311 0.538624 -0.145191 0.897491 0.651755 1.566058 -1.216267 0.509991 0.746406 -0.174877 0.275945 -0.078403 -1.552108 0.715128 0.174357 0.388486 1.114045 -0.228577 -0.516806 0.356741 -0.309873 0.431736 -0.930374 0.262212 -0.918251 -0.234711 -1.025338 0.250578 -0.371639 -0.454090 -0.359981 -0.230122 1.447151 -1.226574 -0.977316 1.808060 -0.424934 0.698542 -1.523116 1.248035 -0.706695 0.943467 -0.463656 -0.180742 -0.053289 -0.067572 -0.564000 0.137628 0.649070 -0.297578 0.357565 1.691953 0.385616 0.097281 0.139195 1.064569 -0.233334 0.693308 -0.613830 1.421500 -0.072988 -0.400393 0.019972 -0.618543 0.131848 -0.657704 0.190657 1.259910 1.017487 0.373369 0.766657 0.678646 0.900468 -0.736137 1.079955 -0.015319 0.404223 -0.614416 -0.090118 0.264435 0.485462 -0.616298 0.716886 -1.389978 -1.702533 -1.591611 -1.173756 -0.344450 -0.251842 0.495608 -0.318109 -0.108835 -1.054209 -1.007943 1.235430 -0.589159 0.864291 0.653187 0.626581 0.900936 1.441795 -0.652783 -0.024064 -0.108316 0.085418 -0.222950 -0.319386 -0.865069 1.108697 -0.726092 0.412926 1.307515 -0.380715 0.395448 -0.111046 0.970715 -0.774407 1.647716 0.650404 -0.390340 1.039321 0.797140 1.450560 0.420479 -0.817781 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_clear() = 0.519774 -2.398489 6.529442 5.200102 -0.176310 1.755511 1.064042 -4.937431 4.192507 2.448623 -0.566055 0.869050 -2.914074 1.413298 -2.027777 3.535988 -3.716084 -2.467614 -1.834369 -3.613644 -1.591665 -2.929154 2.124557 0.334889 2.407592 1.090071 -2.955908 -0.296764 -2.458998 -6.106283 2.763316 -0.565456 2.214701 -0.975051 -0.051338 -8.323586 5.387294 4.058273 -1.469809 -3.789794 1.356490 -1.074305 -1.414928 -0.120233 -1.105258 1.074037 -1.058242 1.463794 2.221446 1.830095 2.460996 2.177118 2.082622 7.062833 -2.472768 3.218931 1.491302 0.428512 -0.535446 1.704315 1.095372 2.106650 1.820875 2.506990 0.565472 -3.047376 -0.477649 -0.778595 -4.204150 3.649490 -0.862975 -2.540281 -2.875166 -1.256502 -2.457379 -0.122968 -3.537207 3.087226 5.493398 -2.842200 2.980775 0.701672 0.378307 -0.911129 0.970092 -0.650081 3.883403 1.545539 -0.816680 -0.971691 -1.018511 -1.603745 1.334591 0.004534 -2.999803 -4.792579 2.711268 -3.866867 -4.235858 1.390041 2.058473 -1.375185 -3.151350 -1.359673 1.538837 1.018828 -1.404576 -3.672024 -1.497110 1.796070 0.567545 -1.734280 -0.689015 -0.584159 -0.719032 0.142521 -4.374652 -0.249582 0.251501 -1.760515 -1.811046 2.608579 -0.687467 -0.270208 -0.491876 1.410893 -1.178086 2.619987 -0.862324 3.538142 0.838130 2.420505 -2.505464 1.211551 2.066227 0.633401 -0.515322 0.464950 -1.578986 1.314474 -2.330218 1.860099 -1.866885 1.223550 4.199488 -0.898593 -2.762632 -0.991558 -0.578242 -5.165596 1.025958 -3.024077 -2.183908 0.752942 3.096909 2.067209 2.412458 3.901770 -4.303493 1.561092 -0.157424 0.066643 2.240697 -0.701158 1.500076 -1.616629 -3.987186 1.836355 1.458891 0.852162 0.431310 -0.348855 -0.309770 -2.619074 -1.510424 2.018676 0.980780 -0.944680 2.612354 2.411371 6.111370 -3.538671 1.421072 2.321915 -1.280289 0.791727 -0.366565 -4.806973 1.531185 0.647228 1.915315 4.474466 -0.494605 -1.260802 1.297259 -1.102237 0.863159 -2.520676 1.423189 -2.844515 -1.015318 -2.649627 0.092213 -0.705608 -1.136810 -0.959932 -0.764469 4.188333 -3.634743 -3.395259 5.815201 -1.714699 0.555732 -4.878070 4.520926 -1.839651 1.595858 -1.058322 -0.337800 -0.233312 0.158865 -2.591595 0.583960 1.663053 -1.258070 1.723305 6.027404 0.935839 -0.129231 -0.330644 2.990630 -1.503762 2.394869 -2.531986 4.821576 -0.288177 -1.767518 -0.699566 -1.643143 0.056291 -2.787615 0.357448 3.238331 2.377950 0.753950 1.472026 1.971356 3.342816 -2.085318 4.656109 0.362958 0.544818 -1.565848 -0.322995 1.442570 0.812791 -1.809999 2.738783 -4.109711 -4.194013 -4.650979 -4.197750 -0.360523 -1.124906 2.073474 -1.369358 -0.870973 -3.482883 -3.853500 4.090871 -1.527286 1.566039 2.552962 1.986179 2.273990 4.023544 -1.575806 1.407879 -1.280842 0.350276 -0.377948 -2.415017 -1.481854 3.462681 -1.431325 0.891297 3.734526 -0.672415 1.974132 -0.687922 1.919208 -2.327454 4.820600 1.559716 -0.572998 2.963621 2.182619 4.512253 0.357732 -2.259564 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/euler-circuit-directed-graph.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.351616 -1.075508 1.912380 1.659036 0.305984 0.788265 0.483425 -1.350759 1.814974 1.205004 -0.103514 0.376660 -1.206879 0.540920 -0.504145 1.220381 -1.068831 -1.244437 -0.288781 -1.074939 -0.874827 -1.225376 0.384812 -0.043965 0.620208 -0.233546 -0.952840 -0.155338 -1.472003 -1.572047 0.899134 -0.457618 0.674147 -0.615272 0.061759 -3.087803 1.529991 1.107659 -0.551355 -1.545767 0.226318 -0.888916 0.099049 -0.092267 0.168619 0.305499 0.013699 0.561328 0.993967 0.537045 0.998280 0.427532 0.155831 2.945548 -1.206307 1.299592 0.568391 0.134739 -0.357099 0.747392 0.426305 0.382976 0.953065 1.064199 -0.357098 -0.921042 -0.139067 -0.371116 -1.487269 1.265320 -0.008696 -0.597058 -1.081076 -0.342430 -0.822960 -0.532346 -1.784740 0.877430 2.246270 -1.162118 1.341934 0.500429 0.948630 0.084560 1.007544 -0.203424 1.796781 0.417565 -0.985928 -0.228764 -0.789231 -0.163834 0.129050 0.168479 -0.610311 -1.566899 0.710526 -0.900405 -1.697879 0.801102 0.374106 0.136420 -1.532337 -0.259693 1.037114 0.469121 -0.917327 -1.742569 -0.939912 0.602973 -0.179151 -0.663420 0.274491 -1.043262 -0.298959 -0.414786 -1.573666 -0.500837 0.345758 -0.955561 -1.116225 1.422282 -0.586683 0.136607 -0.117275 0.402237 -0.394472 1.044646 -0.116110 1.151097 0.215317 0.227795 -2.326376 0.384554 0.609176 0.683520 -0.108371 0.325595 -0.521296 0.422485 -0.992795 0.591629 -0.530744 0.846788 1.419752 -0.413886 -1.038002 -0.555364 0.469751 -1.574189 0.621441 -1.161593 -0.483093 -0.249959 1.309103 0.979329 0.949575 1.551303 -1.355943 1.044598 -0.361372 0.215862 1.051304 -0.080771 0.834245 -0.742987 -1.236059 0.511613 0.967780 0.088514 0.340668 -0.614824 -0.043319 -1.097497 -0.570998 0.311645 0.498251 -0.368727 1.149036 0.701644 2.293151 -2.061118 0.647973 0.748388 -0.221536 0.422413 -0.319245 -1.731765 0.650346 0.400609 0.251359 1.322984 -0.196323 -0.969582 0.312719 -0.245873 0.577534 -0.930717 0.299509 -1.096112 -0.560023 -0.852299 0.304430 -0.673105 -0.532193 -0.420134 -0.194915 1.637318 -0.896430 -1.283301 1.822664 -0.689768 0.407348 -1.935456 1.784985 -0.869492 0.580376 -0.877005 -0.027441 -0.350015 1.089350 -0.606873 0.457332 0.815523 -0.738190 0.860649 2.070675 0.430436 0.602250 0.183461 1.218332 -0.198497 0.282874 -0.701534 1.697711 -0.223169 -0.488895 -0.064758 -0.770910 0.531253 -0.425873 0.220258 1.022821 1.248076 -0.112263 0.602703 1.033741 0.863232 -0.825829 1.144131 -0.040681 0.660261 -0.693832 0.025942 0.073181 -0.001994 -0.609055 0.777321 -1.626602 -1.421050 -1.015832 -1.281019 -0.063195 0.311523 0.187839 -0.164085 0.033984 -1.643040 -0.911891 1.140346 -0.699036 0.625819 0.713458 0.802688 1.045412 1.659797 -0.628683 -0.204458 -0.397999 -0.389877 -0.498486 -0.724544 -0.587580 1.188565 -0.925526 0.782056 1.007764 -0.224706 0.312639 0.142325 0.965790 -0.803902 1.870092 0.855774 -0.156211 1.065372 1.150586 2.514405 -0.114639 -0.889306 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.195939 -1.545373 3.052690 2.565653 -0.222743 1.190906 0.334229 -2.294599 2.559335 0.419196 -0.096315 0.555037 -1.807796 0.915758 -1.175914 1.308289 -2.225107 -1.830324 -0.908706 -1.864470 -1.379848 -1.708544 0.535658 0.546618 0.949754 0.164597 -1.600076 0.003295 -2.339877 -1.097186 1.851625 -0.512770 1.120690 -0.457766 0.344381 -5.159698 2.224571 1.682900 -0.775357 -2.251260 0.405028 -1.638737 0.057380 -0.924190 -0.607448 0.060731 -0.426337 0.918050 1.565697 0.224950 0.692256 1.056965 -0.248404 4.688773 -1.824297 1.848512 0.831476 0.219610 -0.596317 0.847207 0.582438 0.877087 1.327981 1.303707 -0.635425 -1.695891 -0.170813 -0.919600 -2.092742 2.077474 0.075046 -0.780633 -1.598580 -0.619537 -2.064658 -0.831315 -1.557968 1.893311 3.184564 -2.174021 1.676204 0.324637 1.122775 0.233795 1.585613 -0.232944 2.852497 0.630734 -1.077671 -0.195698 -1.718876 0.023791 0.293476 -0.392643 -1.176519 -3.044597 1.165553 -2.490805 -2.648010 0.964933 0.837849 -0.145180 -1.975981 -0.630637 1.390256 0.566784 -1.410374 -2.427624 -1.022115 1.229317 0.113501 -0.938835 0.454741 -0.957208 -0.135119 -1.310879 -2.566781 -0.316523 0.508385 -1.058662 -1.106134 2.317947 -1.219356 -0.080502 -0.198088 0.588792 -0.826979 2.000874 -0.555972 1.308707 -0.039816 0.392907 -2.182683 0.263087 0.682188 1.709923 -0.411118 0.154808 -0.777323 0.717219 -1.592132 0.362225 -0.689924 0.870861 1.261823 -0.694275 -1.577333 -0.788040 0.066616 -2.847332 0.419873 -1.718068 -1.177681 0.604550 1.924394 2.204836 1.416445 2.342357 -1.645768 1.435754 -0.291332 0.034613 1.788757 -0.125119 1.238705 -1.171572 -1.996886 0.994645 0.415064 0.620787 0.404480 -0.641477 -0.193718 -1.747228 -0.993526 0.418664 1.134504 -0.126331 1.894129 1.389352 2.072857 -3.236951 1.137402 1.120202 -0.648408 0.679411 -0.461642 -2.464914 0.820716 0.720631 0.017681 2.120662 -0.470442 -1.290649 0.446626 -0.254853 1.112693 -1.561930 0.135857 -1.580156 -0.767885 -1.783814 0.387532 -0.922448 -0.701311 -1.109620 -1.188045 2.606141 -2.413193 -2.059580 3.149967 -0.456979 1.406611 -2.976081 1.851027 -1.238606 1.817091 -0.833175 0.018997 -0.280575 0.781409 -1.369398 0.899447 1.206674 -1.235615 0.830483 2.984280 0.684742 0.884232 0.125495 1.978334 -0.407021 0.992307 -1.331773 2.645618 -0.292332 -1.169066 0.179615 -1.152430 0.356187 -0.880794 0.849215 1.976555 1.873846 0.957914 1.140427 1.745924 1.426653 -1.203225 1.361192 -0.336056 0.448162 -1.055942 -0.069171 0.391185 0.555625 -0.794637 0.910608 -2.567344 -3.023443 -2.648679 -2.099495 0.301449 -0.477242 0.113836 -0.360075 -0.270856 -2.426458 -1.572974 1.298652 -1.175777 1.791573 1.239297 1.212805 1.676046 2.735611 -1.478318 -0.011903 0.307326 0.008070 -0.435219 -0.681085 -1.827022 2.126966 -1.309741 1.062561 2.349287 -0.476391 0.911421 0.238857 1.549538 -1.282345 2.937442 1.147017 -0.937238 1.612231 1.758567 2.866396 0.882810 -1.442561 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.561600 -3.242904 6.218073 5.399274 0.035662 2.551137 1.057692 -4.893150 5.178705 1.498221 0.072411 1.266915 -3.852132 1.886549 -2.582325 2.902998 -3.946097 -3.838627 -2.065472 -3.961261 -2.726655 -3.487522 1.386696 0.985989 2.158824 -0.325053 -3.461258 -0.441919 -5.365421 -2.890806 3.629005 -0.844222 2.455680 -1.561210 0.253677 -10.354507 4.613142 3.970003 -1.629786 -4.632069 1.125030 -3.255305 -0.145214 -1.371871 -1.054023 0.152361 -1.140689 1.108961 3.223813 0.700486 2.083466 2.590998 -0.326213 9.467332 -3.907151 4.018507 1.623625 0.631298 -1.296386 1.942406 1.152139 2.073108 2.877571 2.566919 -1.150131 -3.541560 -0.422538 -1.505640 -4.553551 4.202043 -0.061490 -1.949890 -3.107316 -1.130898 -4.097174 -1.645101 -2.392995 3.454433 6.410218 -4.181463 3.528606 0.530720 1.876628 0.139384 3.141388 -0.627805 5.491846 1.296032 -1.949336 -0.784711 -3.440409 0.298657 0.450110 0.032721 -2.703142 -5.729524 2.756588 -4.547739 -5.562900 1.904886 1.772484 -0.515791 -4.614154 -1.208108 2.556748 1.255987 -2.819508 -5.099968 -2.479330 2.743796 0.518500 -2.214168 0.689630 -2.395046 -0.430824 -2.527973 -5.146296 -0.664676 0.994052 -2.295549 -2.971015 4.629022 -2.554082 -0.161917 -0.435320 1.478987 -1.769250 3.618506 -1.358213 3.017854 0.336314 0.864956 -5.009480 0.030791 1.456203 3.576706 -0.971311 0.479793 -1.908427 1.428248 -3.105070 1.240980 -1.435146 1.900888 3.085995 -1.384851 -3.120408 -1.380178 0.708409 -5.747336 0.841085 -3.538919 -2.190097 0.823243 3.940764 4.010443 2.854934 5.298399 -3.317564 3.012681 -0.251413 -0.194993 3.743609 -0.704306 2.442291 -2.424064 -4.506922 2.046107 1.150300 1.192305 0.677539 -0.784854 -0.534398 -3.535140 -2.257565 0.608548 1.939713 -0.513389 3.892394 2.891530 4.856365 -6.783236 2.433111 2.248665 -1.580640 1.625720 -1.177364 -5.304211 1.427355 1.517790 -0.009992 4.789733 -0.930145 -2.844893 1.152431 -0.662925 2.245876 -3.315265 0.840247 -3.513186 -1.544170 -3.658518 0.063514 -1.574656 -1.494409 -2.154528 -2.216606 5.374264 -4.361071 -4.531509 6.396487 -0.839149 2.188647 -6.612204 4.070203 -2.493860 3.206275 -1.874775 0.165662 -0.620872 2.302426 -2.983526 1.742933 2.499302 -2.884792 2.205808 6.708226 1.217885 1.645953 -0.001259 3.991835 -0.831327 2.057966 -2.972267 5.794457 -0.496589 -2.655515 0.176319 -2.407290 0.778947 -2.119059 1.452191 3.846856 3.902489 1.531902 1.948810 3.703036 3.254937 -2.431011 3.355477 -0.465424 0.935313 -1.964936 -0.066442 0.969720 0.939844 -1.573154 2.217230 -5.228701 -6.018643 -4.680274 -4.926396 1.069117 -0.782154 0.439184 -0.851946 -0.729112 -5.277280 -3.493696 2.418343 -2.412889 3.867083 2.682544 2.718402 3.309283 5.515051 -3.018499 0.474583 0.143879 -0.014968 -0.863243 -2.088873 -3.057020 4.207107 -2.406700 2.181293 4.515824 -0.670881 2.129566 0.412888 2.838820 -2.617663 6.167747 2.227047 -1.489994 3.663945 3.328853 6.169199 1.252068 -2.863034 -PE-benchmarks/euler-circuit-directed-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::_M_node_count() const = -0.155743 -0.443782 0.714515 0.587298 -0.046633 0.304352 0.037372 -0.425290 0.570302 0.201000 -0.140344 0.149062 -0.417522 0.116794 -0.244518 0.281829 -0.413677 -0.409051 -0.133657 -0.370668 -0.280137 -0.376938 -0.038440 0.146577 0.190850 0.142550 -0.273607 0.089245 -0.561126 -0.408115 0.224968 -0.112600 0.201089 -0.049883 0.174305 -0.883098 0.466979 0.494077 -0.160117 -0.607576 0.045624 -0.359061 0.066266 -0.100264 -0.018646 0.138387 0.017161 0.146419 0.256599 0.115943 0.194538 0.092921 0.051651 0.904996 -0.250035 0.470932 0.310890 0.051093 -0.067926 0.163823 0.151428 0.083937 0.251495 0.244552 -0.162442 -0.324698 -0.120505 -0.159133 -0.380740 0.369681 -0.096870 -0.275105 -0.370883 -0.310255 -0.446855 -0.223216 -0.846147 0.354459 0.740000 -0.525203 0.472955 0.197988 0.333647 0.099887 0.417537 -0.044123 0.598924 0.170619 -0.291372 0.122700 -0.167931 -0.056132 0.079699 -0.039575 -0.345451 -0.536661 0.342931 -0.635525 -0.628653 0.318285 0.134414 -0.010303 -0.332380 -0.033612 0.218451 0.179300 -0.356247 -0.536863 -0.162735 0.272762 0.080994 -0.199313 0.075973 -0.138465 -0.028459 -0.169593 -0.587844 -0.033153 0.208840 -0.283755 -0.178274 0.559652 -0.124591 0.085153 -0.058233 0.075334 -0.130974 0.589795 0.002680 0.301284 -0.202057 0.118822 -0.691566 0.197725 0.156201 0.134360 -0.167204 0.132076 -0.003027 0.129469 -0.241594 0.134110 -0.294528 0.222428 0.373557 -0.141689 -0.342021 -0.295404 -0.176750 -0.616225 0.101961 -0.360784 -0.251807 0.099709 0.435616 0.543454 0.253199 0.600697 -0.397304 0.137148 -0.107306 -0.034637 0.300136 0.036377 0.291330 -0.281661 -0.412787 0.269592 0.228070 0.107439 0.216837 -0.186362 -0.003573 -0.365996 -0.065602 0.297605 0.261372 -0.051003 0.541035 0.353677 0.415474 -0.549105 0.160570 0.145031 -0.134707 0.132646 -0.098551 -0.569548 0.224310 0.159588 0.118920 0.416819 -0.085013 -0.098991 0.124012 -0.148566 0.234201 -0.387610 0.104378 -0.387986 -0.157221 -0.351456 0.211436 -0.262575 -0.168482 -0.223958 -0.243091 0.599682 -0.484066 -0.310246 0.567249 -0.009808 0.283077 -0.494307 0.364347 -0.298150 0.545570 -0.153323 0.002933 -0.047683 0.141227 -0.138657 0.079759 0.294529 -0.241511 0.136394 0.539067 0.144335 0.106707 0.121572 0.445503 -0.197261 0.165079 -0.275452 0.499304 -0.042533 -0.169337 0.083846 -0.260429 0.081396 -0.119607 0.097804 0.456301 0.389709 0.109030 0.174754 0.325153 0.229657 -0.276016 0.283438 -0.039735 0.227867 -0.324716 -0.052085 -0.009599 0.170629 -0.099002 0.068973 -0.610270 -0.574918 -0.610889 -0.358185 -0.041183 -0.069664 0.016530 -0.014766 -0.044729 -0.448386 -0.426781 0.546790 -0.272809 0.327020 0.177434 0.294228 0.440958 0.558295 -0.189019 -0.068878 0.002093 -0.043269 -0.124011 -0.081115 -0.312936 0.434134 -0.324309 0.191022 0.476626 -0.125405 0.209139 0.223461 0.296849 -0.336648 0.619681 0.281337 -0.259750 0.354822 0.531629 0.701730 0.021268 -0.345820 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_size() const = 0.016278 -0.440372 1.017543 0.950642 -0.302924 0.226932 -0.185365 -0.533364 0.414583 0.456928 -0.110321 0.353506 -0.253902 0.259481 0.247169 0.732452 -0.763715 -0.176973 -0.221380 -0.404047 -0.415879 -0.212518 0.041907 0.118586 0.326790 0.584982 -0.419284 0.128176 0.124407 -1.090950 0.070950 -0.137233 0.409899 0.255759 0.301109 -1.555963 0.726789 0.485227 -0.222902 -0.701286 0.090560 -0.037889 -0.002486 -0.067325 -0.410323 0.324741 0.000606 0.059121 0.243424 0.406547 0.137542 0.181736 0.704074 0.974686 0.067034 0.437769 0.446698 -0.186827 -0.111006 -0.100195 0.280657 0.145181 0.273374 0.186037 0.205923 -0.576533 -0.279999 -0.170893 -0.480396 0.412162 -0.100878 -0.436758 -0.490873 -0.559247 -0.195482 -0.187779 -1.081898 0.605567 0.798438 -0.626767 0.377312 0.214413 0.030318 0.130795 0.316287 -0.003849 0.578460 0.336567 -0.117589 0.364567 0.627102 -0.621690 0.435654 -0.020509 -0.477397 -0.839036 0.340700 -0.513006 -0.553620 0.566091 0.373354 -0.081805 -0.493807 -0.572648 0.245737 0.286760 -0.335974 -0.407631 -0.163583 0.126481 0.222015 -0.312868 -0.267270 0.138386 -0.097603 0.328736 -0.771855 0.128490 0.226172 -0.171739 0.040349 0.418339 0.248202 0.005965 -0.206095 0.140207 -0.233098 0.815435 0.011628 0.609642 -0.207225 0.464279 -0.173351 0.342035 0.330445 -0.352371 -0.067079 -0.284001 -0.173185 0.226285 -0.264449 0.409155 -0.134118 0.439615 0.995110 0.204217 -0.574403 -0.398933 -0.549020 -0.874391 0.170682 -0.487115 -0.118422 0.613902 0.456758 0.171260 0.335471 0.265361 -0.599561 0.065200 -0.249872 0.049635 0.360185 0.239236 0.244653 -0.266686 -0.351539 0.427150 0.329033 0.256865 0.295154 -0.230522 0.162023 -0.158569 -0.119436 0.675591 0.331852 -0.080249 0.355202 0.373312 1.399779 0.084593 -0.031195 0.200081 -0.168528 0.046021 -0.031887 -0.585518 0.141913 0.074235 0.172018 0.573882 -0.134598 -0.050126 0.191754 -0.161732 0.057109 -0.264821 0.298530 -0.345566 0.134094 -0.295020 0.061728 -0.300525 -0.052235 -0.224172 -0.080004 0.782801 -0.859320 -0.200335 0.716233 -0.389398 0.220745 -0.489024 0.844791 -0.276748 0.437016 -0.330829 -0.341630 0.025400 -0.315040 -0.291335 0.125395 0.347807 -0.011353 -0.324336 0.651666 0.161610 -0.168099 -0.033749 0.433887 -0.160648 0.489426 -0.231689 0.733052 -0.123768 0.280446 -0.196633 -0.168790 -0.092758 -0.334525 0.003927 0.288217 0.070460 0.122570 0.038567 0.201821 0.356029 -0.431464 0.584768 0.030605 0.260554 -0.433784 -0.093827 0.114319 0.472943 -0.154868 0.193850 -0.616641 -0.316540 -1.078619 -0.077661 -0.509542 0.503113 0.319693 -0.230405 -0.230155 -0.121139 -0.554633 1.155244 -0.230149 -0.022848 0.324318 0.241170 0.538674 0.559660 0.090969 -0.142173 -0.403429 -0.220586 0.092084 0.046562 -0.311336 0.557478 -0.237139 0.020988 0.589696 -0.160266 0.325937 0.111616 0.495392 -0.318956 0.629906 0.192410 -0.225320 0.321468 0.698127 0.402784 -0.245578 -0.400923 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/cutting-a-rod.cpp__max(int, int) = -0.876546 -1.017857 0.920345 0.733667 0.540435 0.634457 0.349080 0.054689 0.575886 1.075504 -0.482711 0.647732 -0.617249 -0.310051 0.309333 0.261322 -0.099229 -0.917265 0.427901 0.094490 -0.105550 -0.629093 -0.480552 0.505801 0.207840 -0.060184 -0.421066 0.010796 -1.198241 -1.359901 -0.239417 -0.154084 0.488102 -0.232424 0.288753 -1.258429 0.546521 0.885417 0.013814 -1.278893 -0.001211 -0.244405 0.007511 0.385625 0.224524 0.685832 0.871230 -0.018112 -0.083856 0.394849 0.250419 -0.505317 0.157575 0.882624 0.243397 0.901965 0.910628 -0.124758 0.099807 0.182085 0.262892 -0.534486 0.628328 0.627047 -0.593548 0.099238 0.142365 0.113560 -0.776396 0.257336 0.236275 -0.468616 -0.258291 -0.340096 -0.356253 -0.197586 0.334992 0.086172 1.315188 -0.224730 1.378366 0.650891 1.120715 -0.051378 0.672135 -0.228331 0.757463 0.301083 -0.894862 -0.117378 -0.707972 -0.652606 -0.317413 0.977627 -0.309534 0.627693 0.320387 -0.433120 -0.944672 0.597427 -0.342818 0.136083 -1.137775 0.227690 0.819613 0.648739 -0.156808 -0.867718 -0.865081 0.311885 -0.820306 -0.418219 -0.060853 -0.252549 -0.374887 0.158720 -0.645066 -0.389715 0.773221 -0.795804 -0.598152 0.698699 -0.522503 0.869122 -0.148464 0.081978 0.124101 0.262258 0.723168 0.203108 0.404337 -0.703788 -1.667565 -0.031233 0.014589 0.327468 -0.324789 -0.009506 0.346830 0.238617 0.142104 0.474740 -0.480003 0.882375 1.111386 -0.054432 -0.570777 -0.911159 0.156410 -0.454639 0.296768 -0.509938 0.027176 -0.024485 0.622288 -0.041281 0.013055 1.270420 -0.760157 0.735198 -0.185199 0.131808 -0.063869 -0.200309 0.284458 -0.472218 -0.536370 0.379917 1.116387 0.049888 0.392223 -0.602545 0.067598 -0.375680 -0.889321 0.540617 0.071221 0.250507 0.693322 0.238863 1.559131 -0.910453 -0.124031 -0.179867 0.079236 0.033529 -0.114321 -0.959997 0.388546 0.075028 0.412720 0.982195 0.040215 -0.691371 0.320857 0.071276 0.022864 -0.520505 0.839346 -0.761240 0.170610 -0.025514 -0.275242 -0.611615 -0.353060 -0.423655 0.186350 1.005685 0.233040 -1.368476 0.218383 -0.342689 0.373080 -1.479810 0.475673 -0.457548 0.531062 -0.488313 -0.067321 -0.243542 0.393334 0.394941 0.028747 0.404037 -0.434995 0.630826 0.692641 0.043356 0.173270 0.498106 0.215413 0.055145 -0.453214 -0.197265 0.217410 -0.076804 0.032518 -0.209420 -0.287772 0.850699 0.432973 -0.453469 -0.190238 0.800423 -0.683796 0.074924 0.703494 -0.251559 -0.481173 0.201267 0.179463 1.137624 -0.390972 -0.170233 -0.688082 0.085727 0.113834 0.326521 -0.948621 -0.483225 -0.046913 -1.389273 -0.550010 0.599495 0.269538 0.402483 0.205758 -0.935223 -0.347364 0.685197 -0.071232 1.194389 0.252868 0.552567 0.763083 0.371555 -0.050175 -0.623348 -0.339203 -0.288030 -0.823880 -0.346608 -0.009102 0.162929 -0.518892 0.797086 0.211504 -0.005110 0.085286 -0.063716 0.431694 -0.601983 1.131673 0.738474 -0.590292 0.081315 0.116269 1.402078 -1.105141 -0.616264 -PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -3.221684 -4.974300 3.944234 3.748928 1.529166 3.070215 2.759009 -1.444992 2.714137 3.760831 -1.289754 3.210639 -2.940473 -1.282837 0.052510 0.876907 -0.824284 -3.168459 0.733192 -0.516812 -0.311138 -3.226427 -2.713310 3.534789 0.730584 -0.461470 -1.353976 0.191161 -6.395721 -5.323470 0.329030 -0.304389 2.096217 -1.846963 0.985535 -8.151281 2.833395 5.341501 -0.218278 -5.796860 0.079962 -1.450075 -0.804196 1.200992 -0.470599 1.828490 1.713564 0.339515 -0.434697 1.108022 1.379452 -0.666580 2.148905 5.991747 0.010675 5.051150 4.953897 0.133625 1.068521 0.696368 1.114477 -0.853205 2.711412 2.737701 -1.756332 -0.326586 -0.070093 0.670063 -4.088091 0.890838 1.058224 -2.613006 -2.426335 -0.973196 -2.885155 -1.093688 -0.883323 0.180261 6.225672 -1.429301 7.131137 2.798124 3.885317 -0.295531 3.518567 -0.501728 3.645001 1.412956 -3.656188 0.159973 -4.056324 -1.532014 -0.276129 3.606411 -2.731914 0.295838 1.878669 -2.237891 -4.756614 2.743162 -0.875113 -0.691384 -3.614984 0.104191 2.157272 1.548849 -1.496786 -4.598663 -4.151923 3.002579 -2.434452 -2.372727 -0.543407 -0.184748 -0.350283 -0.300507 -2.904058 -0.814250 4.120029 -2.887399 -2.641465 3.370539 -1.648661 3.152739 -0.763931 0.033872 0.089965 0.783709 1.868789 1.012685 1.366064 -2.772183 -7.325436 -0.249864 0.295055 2.341228 -1.546201 -0.351268 1.966119 1.637862 1.862946 3.270216 -0.906179 3.191302 2.230399 0.014430 -1.397345 -4.192547 0.006513 -2.315428 1.735336 -1.959676 -0.928707 0.049473 2.982557 -0.341683 0.158508 3.329414 -3.007565 3.749581 -0.166099 0.536822 0.182658 -1.281598 1.177053 -1.824121 -3.197731 2.207263 3.931960 1.070804 1.103509 -1.410673 -0.076467 -0.968146 -3.168234 1.155101 -0.270247 0.186698 4.256272 1.764909 9.418291 -4.121564 0.515739 -0.813583 -0.298857 0.972397 -1.137620 -4.114507 2.012325 0.710468 0.785923 5.427406 -0.234357 -2.320240 1.303429 0.061262 0.301177 -3.084222 4.746566 -3.093227 -1.049612 -0.996447 -1.330546 -1.899075 -2.057573 -3.228380 0.176523 4.796618 -1.775217 -4.860597 1.530679 -0.882325 1.019020 -5.901695 5.285560 -1.903993 2.802310 -1.980434 -1.217075 -0.251591 2.263502 0.210264 0.054618 2.076435 -3.535769 2.845735 3.778099 0.317114 0.812425 1.509631 0.992870 -0.456549 -1.353947 -2.553544 2.310964 0.093157 -0.976219 -0.928664 -1.861796 3.691997 0.843388 -1.220678 0.461597 3.872598 -1.904256 -0.523232 3.256243 -0.617770 -1.870447 1.214565 0.818153 3.037461 -1.751924 -0.342903 -2.424210 -0.150764 0.841431 1.957171 -4.396213 -1.816188 -1.046074 -4.603285 -1.525342 1.749163 1.686979 1.713668 0.628110 -6.129146 -2.696295 3.889987 -1.160364 2.643122 2.123253 2.931720 3.233447 1.960654 0.842258 -1.391726 -1.164864 -0.382139 -2.715003 -1.463103 -0.076045 1.381571 -2.408228 3.586922 1.202023 0.261956 1.299114 -0.212022 2.104031 -2.461908 5.787836 2.718720 -2.777273 0.630315 1.707243 5.599451 -4.918265 -2.483121 -PE-benchmarks/cutting-a-rod.cpp__main = -0.576069 -1.865888 1.999176 1.707422 -0.003129 0.930869 0.807852 -0.560850 1.031801 0.450352 -0.722349 1.148089 -1.253882 -0.076371 -0.472156 0.385732 -1.175043 -1.340473 0.133588 -0.233950 -0.237160 -1.052385 -0.522795 1.270444 0.547562 0.731274 -0.657516 -0.157478 -2.176713 -1.077557 0.636885 -0.259721 0.904864 0.216808 0.421387 -3.245515 1.007916 1.735565 -0.245864 -2.301544 0.261470 -0.816987 -0.251881 -0.408036 -0.361038 0.494165 0.609691 0.922667 -0.015144 0.369986 -0.248990 -0.089630 0.606212 2.586368 -0.048602 1.604441 1.930366 0.144469 0.275627 -0.005922 0.599706 -0.210781 0.861826 0.945422 -0.571404 -0.500012 -0.349955 -0.512540 -1.338355 0.611393 0.368407 -0.319476 -1.102745 -0.449001 -1.347433 -0.293821 -0.987888 0.948777 2.453314 -1.274438 2.276919 0.817976 1.396621 -0.048295 1.050473 0.088695 1.129579 0.703098 -0.993356 0.051424 -1.779899 -0.604152 0.031698 0.140755 -1.022681 -1.264962 0.933523 -1.563875 -1.805639 0.922694 -0.025065 -0.353419 -0.566110 0.037108 0.702572 0.896499 -0.845966 -1.489349 -0.986575 0.819651 -0.447016 -0.761454 0.073192 0.484101 -0.153449 -0.622483 -1.554197 -0.042391 1.257568 -1.050023 -0.127916 1.360199 -0.570349 1.019778 -0.310660 -0.083144 -0.150926 1.174053 0.731796 0.232835 0.438994 -0.561105 -1.595106 0.345799 0.448936 1.395891 -0.837971 -0.094171 0.564748 0.668491 0.387089 0.339057 -0.330793 0.806433 0.596143 -0.422977 -0.938317 -1.692369 -0.389086 -1.322936 0.337158 -0.954421 -0.398976 0.746264 1.254224 0.620022 0.356937 1.617463 -1.272109 1.075795 -0.043620 0.166081 0.198250 0.173967 0.568185 -0.727973 -1.290363 0.921066 0.892655 0.570190 0.404825 -0.492541 0.096531 -0.792719 -0.990452 0.741398 0.549073 -0.068008 1.634703 0.878246 1.655689 -1.433172 0.073090 -0.040328 -0.318635 0.168280 -0.180919 -1.776026 0.974890 0.201195 0.319425 1.654292 -0.117673 -0.743605 0.724058 -0.132269 0.149425 -1.046643 1.055081 -1.146858 -0.591773 -0.879880 0.317811 -0.672538 -0.714393 -1.192751 -0.397619 2.006409 -1.286519 -1.420453 0.734084 -0.116044 0.823169 -2.120861 1.499346 -0.804876 1.502516 -0.200053 -0.444242 0.074383 0.031224 -0.286666 -0.197498 0.897718 -0.983959 0.617991 1.369730 0.361506 0.093772 0.657932 0.796956 -0.292865 0.011303 -0.906776 0.815833 -0.154151 -0.651744 0.030302 -0.661411 0.948532 0.041130 0.005713 1.177007 1.182158 0.309470 0.625564 1.073270 0.254441 -0.912510 0.276350 0.023052 1.293483 -0.834329 -0.178311 -0.825298 0.414846 0.049718 0.708326 -1.824637 -1.724388 -1.432660 -1.681942 -0.478881 -0.264571 0.563084 0.193559 0.086706 -2.121051 -1.195938 0.942953 -0.647233 1.137465 1.063706 0.872759 1.440450 1.016424 -0.352916 -0.453421 0.296535 0.440047 -0.703079 -0.147045 -0.805110 0.716925 -1.037488 0.960464 1.362547 -0.222159 0.596263 -0.180617 1.443749 -0.972497 2.423855 1.101787 -1.617515 0.368727 1.006619 1.761011 -0.645614 -1.125807 -PE-benchmarks/min-cost-path.cpp__minCost(int (*) [3], int, int) = -6.342295 -10.240166 9.118807 8.061376 2.672813 7.045597 2.882286 -2.787565 3.677597 7.527237 -2.786385 6.682096 -5.539434 -3.527814 0.110481 0.795219 -1.673863 -6.810220 1.027703 -1.829114 -0.739404 -4.599193 -6.077097 8.634347 1.565245 -2.645973 -3.327750 0.593188 -12.444152 -10.169414 -2.624148 -0.163132 4.624111 -4.006599 3.152791 -12.292579 5.784002 11.311008 -0.254091 -11.090624 0.084240 -3.123310 -1.573693 2.778719 -3.167036 3.343712 4.041256 -2.344652 -1.714760 2.251451 1.810005 -0.312374 4.226713 11.015892 3.223459 9.809720 9.701753 -0.061914 1.907675 1.422883 2.620465 -2.522904 5.676550 2.436227 -3.085083 -0.993551 -0.131147 2.013099 -5.550407 1.247297 1.683261 -6.165595 -1.240350 -3.096736 -8.238167 -3.325110 5.025993 0.780673 10.800507 -4.212995 12.188361 5.849141 6.759441 1.116592 8.414001 -0.969326 7.881834 3.390512 -5.738249 1.605491 -6.383398 -3.282168 -0.573180 6.173623 -6.598862 -1.385391 4.786411 -9.740799 -10.587778 7.160511 -1.625807 -2.088751 -7.730443 -2.347235 4.672581 3.810266 -4.069298 -7.958920 -6.779233 6.120918 -4.599591 -5.371949 -0.329050 -0.236803 0.449819 1.136100 -6.458656 -0.505828 8.577079 -5.439881 -4.538583 8.304635 -2.269022 7.240275 -2.072508 0.548214 -0.382536 1.939364 3.290446 2.227881 -0.419018 -4.272914 -10.466933 -2.189473 -0.832039 -0.763748 -3.441079 -1.264379 4.285660 4.274302 3.970142 8.103876 -3.646171 7.344559 4.451897 1.319176 -3.024705 -9.024909 -2.262640 -5.411127 1.149738 -3.735044 -4.997456 2.112529 6.437916 -0.035128 -0.612054 6.693598 -2.168261 4.797396 -0.410937 0.178330 0.105813 -5.984455 2.460824 -4.206409 -7.109479 5.043670 8.231860 4.020872 2.923912 -2.944289 0.214328 -1.563343 -7.377188 1.595559 0.583785 1.062774 9.195191 4.997687 13.894079 -6.840878 0.308656 -3.027848 -1.894312 2.527743 -3.327225 -8.773293 0.629184 2.263513 1.184596 11.686297 -0.725322 -4.773463 3.406689 0.221284 0.583330 -6.365465 8.293418 -7.180831 0.548491 -1.909334 -3.092358 -5.353204 -3.606801 -7.323236 -2.468787 10.233052 -5.478764 -10.126945 3.926489 0.904626 3.041550 -12.705739 5.200642 -3.849205 8.473839 -1.971145 -2.469108 -0.217450 3.293639 -0.114203 0.918733 4.735432 -7.568659 5.529844 5.432363 0.378787 2.042183 2.815196 2.407125 -1.969491 -2.492710 -6.505766 4.958411 -0.582664 -3.046284 -2.646310 -3.742204 6.471848 1.982341 -1.365249 -3.105755 5.405109 -3.854549 -2.128311 8.032268 -1.887638 -4.189672 2.631948 1.202121 6.647284 -4.332962 -0.904236 -5.577305 1.364409 2.798158 3.304246 -9.966451 -3.401733 -6.962668 -8.963099 -2.876856 4.165797 2.185710 3.380562 0.443892 -10.380217 -6.175377 8.431122 -2.494382 5.610957 5.642291 7.020624 8.099216 3.970929 2.218338 -2.717110 -2.233474 -1.219818 -5.861752 -3.477618 -0.475788 2.741821 -3.848065 7.997615 3.147877 1.238701 4.090035 0.872359 1.130180 -5.742244 9.998710 5.872532 -7.005066 0.444190 5.185625 8.556529 -10.352112 -5.776439 -PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -2.189798 -2.755330 2.463948 2.049523 1.544472 1.847294 1.029842 -0.187072 1.576079 2.993956 -1.322693 1.801899 -1.663280 -0.884433 0.645514 0.721841 -0.237204 -2.435466 1.135738 0.176427 -0.115643 -1.736592 -1.176529 1.450901 0.563642 -0.303778 -1.058237 -0.023072 -3.388387 -3.947343 -0.559796 -0.371649 1.350040 -0.738493 0.562472 -3.354362 1.680083 2.650035 0.000673 -3.541680 0.098051 -0.720704 -0.367950 1.231178 0.583795 1.772094 2.085736 0.076647 -0.305625 1.141837 0.727768 -1.071451 0.617597 2.324589 0.628798 2.613156 2.504252 -0.204417 0.241703 0.670154 0.719006 -1.188168 1.848894 1.762485 -1.530506 0.184419 0.432375 0.503794 -2.247161 0.671599 0.619436 -1.418337 -0.549853 -0.662700 -0.938830 -0.386977 1.521984 0.149051 3.533804 -0.415686 3.823225 1.681819 2.790946 -0.372362 1.858727 -0.671505 2.098299 0.897086 -2.343775 -0.681613 -2.257242 -1.803124 -0.733582 2.554407 -1.004282 1.587829 0.903274 -1.316508 -2.635287 1.513990 -0.873262 0.076879 -3.083074 0.535359 2.282110 1.662159 -0.373891 -2.387265 -2.313867 1.068716 -2.394842 -1.357583 -0.333966 -0.662919 -0.973808 0.583096 -1.705016 -1.056310 2.176869 -2.124718 -1.720374 1.860985 -1.273541 2.251289 -0.490398 0.239352 0.353474 0.325876 1.630229 0.608693 1.469975 -1.796543 -4.106291 0.038139 0.034896 0.589636 -0.956130 -0.021087 0.985068 0.798073 0.474327 1.510405 -1.499542 2.349215 2.862658 -0.059637 -1.380537 -2.406709 0.615021 -1.205923 0.822817 -1.398401 -0.189852 -0.259370 1.823915 -0.421042 0.072455 3.178139 -2.075456 2.038249 -0.313711 0.560896 -0.113653 -0.763859 0.725792 -1.300749 -1.667705 1.112999 3.070154 0.088462 0.834802 -1.380276 0.094091 -0.998120 -2.636740 1.332580 0.029782 0.675003 1.957665 0.686316 4.511614 -2.478024 -0.206309 -0.494651 0.042677 0.233780 -0.451463 -2.752785 0.910964 0.270980 1.427631 3.087610 0.113215 -1.976669 0.761806 0.363503 -0.042783 -1.495549 2.469913 -2.214152 0.362816 0.021581 -0.972136 -1.471756 -1.125519 -1.311580 0.507519 2.740265 0.646162 -3.909585 0.777793 -1.213266 0.829024 -4.305850 1.247290 -1.344127 1.156920 -1.196090 -0.191897 -0.631026 1.018321 0.714997 0.108805 1.167116 -1.350780 2.156305 1.996000 0.110607 0.508620 1.209387 0.459531 0.013259 -1.274904 -0.861371 0.803128 -0.195094 -0.087308 -0.744365 -0.907708 2.342465 0.946196 -1.238835 -0.582331 2.145547 -1.921574 0.136702 1.973263 -0.575878 -1.352395 0.908065 0.512313 2.809309 -0.906103 -0.472945 -1.788971 -0.045081 0.387477 1.240150 -2.653700 -1.309190 -0.180890 -3.983422 -1.265717 1.408787 1.020988 1.025965 0.626850 -2.895450 -1.058307 1.781571 -0.207404 3.181833 1.001066 1.705427 1.949008 0.956323 -0.046168 -1.388831 -1.125894 -0.683014 -2.365026 -1.312019 0.203871 0.463307 -1.129831 2.353133 0.523508 0.164157 0.299245 -0.557495 1.000771 -1.550376 2.999492 2.015491 -1.481532 0.162819 0.056649 3.657805 -3.147053 -1.688100 -PE-benchmarks/min-cost-path.cpp__main = -0.947957 -2.608865 2.861682 2.428521 0.208781 1.512325 0.659256 -0.796690 1.086264 1.144450 -0.958837 1.734424 -1.532765 -0.453588 -0.369358 0.484746 -1.261685 -1.857536 0.142260 -0.455025 -0.284884 -1.123828 -1.000292 2.033367 0.749222 0.328259 -1.008331 -0.022756 -2.963525 -2.067769 -0.050808 -0.236608 1.286156 -0.149477 0.820252 -3.422049 1.563432 2.669012 -0.237058 -3.009672 0.249149 -0.896099 -0.428241 -0.099978 -0.804583 0.820478 0.985914 0.270601 -0.222735 0.676357 -0.112964 -0.002762 1.068229 3.022723 0.613867 2.290916 2.599584 0.047593 0.462722 0.049325 0.853402 -0.471974 1.265658 0.758335 -0.631512 -0.678178 -0.401891 -0.179059 -1.418606 0.620598 0.416377 -0.946445 -0.818965 -0.831266 -2.135163 -0.610328 0.180077 0.956151 3.036281 -1.611139 2.906345 1.330383 1.727553 0.174107 1.736564 -0.001839 1.703474 1.068399 -1.215847 0.359308 -1.867844 -0.968715 0.028955 0.634665 -1.677482 -1.355831 1.395387 -2.830592 -2.657829 1.653204 -0.051083 -0.602029 -1.203389 -0.418288 1.053166 1.198190 -1.156368 -1.859059 -1.225793 1.188353 -0.705203 -1.244283 0.006365 0.457399 -0.007857 -0.058399 -2.094870 0.053153 1.894899 -1.379753 -0.370951 2.017808 -0.524716 1.601616 -0.588483 0.050857 -0.247164 1.243565 0.942643 0.571272 0.031446 -0.683872 -1.894200 0.023312 0.268855 0.462288 -1.125001 -0.255120 0.860019 1.078974 0.725496 1.266204 -0.824541 1.493091 0.991627 -0.130523 -1.230126 -2.382887 -0.943619 -1.749975 0.243918 -1.185779 -1.135101 1.053753 1.742056 0.501936 0.237460 2.039508 -0.983054 1.058335 -0.092536 0.120002 0.193177 -0.767234 0.729658 -1.072440 -1.811029 1.440317 1.608760 1.018892 0.769207 -0.721407 0.232073 -0.833065 -1.589273 0.846375 0.583885 0.056647 2.325368 1.338611 2.281030 -1.503042 -0.051214 -0.370018 -0.529668 0.394570 -0.490794 -2.433146 0.630206 0.390163 0.506036 2.634644 -0.160764 -1.052356 1.070432 -0.103790 0.152593 -1.504967 1.651834 -1.746746 -0.130693 -0.910539 0.001504 -1.223269 -0.863953 -1.748541 -0.788162 2.807152 -1.800906 -2.180637 1.084850 0.224851 1.074556 -3.044579 1.284554 -1.090728 2.406890 -0.092823 -0.634368 0.125762 0.033951 -0.384000 -0.088536 1.298145 -1.522611 0.966184 1.436319 0.334683 0.176891 0.779979 0.940268 -0.599619 -0.027010 -1.461065 1.218394 -0.250233 -0.905372 -0.358448 -0.879723 1.228270 0.122458 -0.099602 0.292883 1.205867 -0.051203 0.234151 1.684650 0.099690 -1.317918 0.588450 0.141326 1.796124 -1.250792 -0.306036 -1.207552 0.684325 0.372425 0.922396 -2.638832 -1.778779 -2.411717 -2.262239 -0.780755 0.232301 0.672302 0.390231 -0.038095 -2.496145 -1.770160 1.824360 -0.755716 1.481379 1.636011 1.487554 2.153469 1.215388 -0.024503 -0.651497 -0.081805 0.235332 -1.083810 -0.495922 -0.794794 0.939133 -1.145133 1.526113 1.654346 -0.085440 1.045822 -0.016022 1.076128 -1.465820 2.910928 1.508686 -2.219340 0.322542 1.510484 2.066042 -1.624954 -1.625402 -PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.403162 -1.074072 1.327324 1.274460 0.261317 0.671129 0.589947 -0.718184 1.219328 0.678328 -0.092405 0.332188 -1.214686 0.253991 0.006637 0.578402 -0.751350 -1.120671 -0.107181 -0.508323 -0.506526 -1.097772 0.226759 0.391938 0.474253 -0.034062 -0.657345 -0.274056 -1.487209 -0.512660 0.806731 -0.253579 0.755045 0.246091 0.164407 -2.453065 0.857952 0.894207 -0.202412 -1.350121 0.126550 -0.794943 0.250758 -0.273668 0.122451 0.316996 0.236997 0.424554 0.664578 0.240069 0.401798 -0.071495 -0.137223 1.870258 -0.713012 0.974358 0.520225 0.006991 -0.170270 0.272553 0.290915 0.070167 0.898620 0.835842 -0.626007 -0.481448 -0.067619 -0.496758 -1.344567 0.907320 0.220453 -0.177803 -0.937178 -0.308153 -0.624788 -0.396203 -0.743786 0.826988 1.756584 -0.947524 1.276718 0.398753 0.856775 -0.102777 0.837871 -0.170552 1.199508 0.252723 -0.848157 -0.155843 -1.301812 -0.371141 -0.187183 0.190758 -0.397533 -0.614881 0.415318 -0.478549 -1.348694 0.509017 0.007477 0.112969 -1.345756 0.078586 0.774271 0.606840 -0.598787 -1.396668 -0.866270 0.483637 -0.216654 -0.510385 0.086525 -0.420887 -0.479791 -0.853186 -1.176349 -0.493379 0.375748 -0.933372 -0.696944 1.141062 -0.933176 0.448837 -0.036523 0.139423 -0.219623 0.973896 0.216027 0.485397 0.667652 -0.507660 -1.731745 -0.045774 0.309619 1.474973 -0.191025 0.112095 -0.216395 0.275390 -0.574804 0.193540 0.008997 0.677113 1.015364 -0.454225 -0.810523 -0.542501 0.392728 -1.187097 0.447181 -0.903476 0.232228 0.200650 0.976870 0.781167 0.506314 1.668475 -1.083917 0.951031 -0.179406 0.017077 0.597945 0.413003 0.591981 -0.639805 -0.955386 0.468441 0.631592 0.119289 0.296773 -0.427802 -0.059205 -0.843580 -0.829991 0.187828 0.315272 -0.100125 0.961944 0.501778 1.302383 -1.674281 0.447458 0.431448 -0.049180 0.284528 -0.137779 -1.350341 0.721232 0.108589 -0.133278 0.968941 -0.213854 -0.897613 0.377871 -0.146883 0.407646 -0.836229 0.337627 -0.929121 -0.305415 -0.912638 0.060564 -0.465469 -0.611042 -0.350513 0.090000 1.365061 -0.120842 -1.203479 1.051891 -0.389788 0.577825 -1.790011 1.239199 -0.643863 0.547175 -0.719931 -0.197484 -0.227890 0.715830 -0.155061 0.095869 0.622926 -0.574876 0.567883 1.516017 0.248329 0.276289 0.338218 0.801814 0.185566 0.118731 -0.475816 1.080596 -0.084291 -0.248283 0.049427 -0.621071 0.711153 -0.067062 -0.101810 1.063534 1.254824 0.033471 0.660247 0.870236 0.461575 -0.597783 0.495525 0.014738 0.835598 -0.507563 -0.020857 -0.166652 0.182162 -0.372027 0.567632 -1.209770 -1.495403 -0.265322 -1.335024 -0.173586 0.187446 0.180793 0.095557 0.057589 -1.348026 -0.590816 0.151235 -0.495906 1.130718 0.395339 0.561106 0.938272 1.176150 -0.686452 -0.332177 0.170947 -0.073011 -0.570374 -0.384810 -0.580611 0.701145 -0.848939 0.751699 0.893269 -0.186441 0.257820 -0.193081 1.218205 -0.729537 1.645177 0.709079 -0.485343 0.785767 0.682444 1.732694 -0.001821 -0.723195 -PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = -4.873775 -16.400885 20.731843 12.588879 3.640607 11.641611 17.689278 -10.856377 15.231611 8.314284 -7.675728 -2.407227 -19.034253 -10.668418 -0.986446 -2.302061 -10.436161 -14.300968 2.866581 -4.756595 2.391517 -17.205644 5.690212 8.789336 6.296148 5.703235 -0.115055 -4.878283 -19.167121 -12.593769 17.203455 -0.616585 9.019263 12.981590 0.036407 -24.086151 14.303397 15.527345 -3.899315 -18.610226 3.066097 2.744635 -9.282764 6.941034 2.353506 6.940048 5.866764 19.068283 0.713264 7.850051 3.017700 -14.128126 3.871887 16.982967 -0.206518 17.130131 16.546030 3.610843 6.359703 12.626351 3.368191 -1.566610 7.535425 17.751428 -4.723778 4.111289 8.470429 -7.839479 -22.882190 12.407392 2.392126 -5.831191 -4.248163 -3.399141 -6.006822 2.000788 0.182158 6.857758 27.692591 -7.481344 27.357223 9.703083 13.819027 -10.425800 2.654722 -2.747591 6.454659 5.673276 -12.536904 -4.045326 -29.488206 -13.494639 -1.448539 -2.406460 -7.086343 -9.868495 11.533017 -11.778248 -18.780467 7.078495 -0.177546 -4.484567 -10.200791 7.427435 9.725620 5.202043 -8.314388 -17.792883 -11.819461 9.305590 -19.827746 0.323254 -1.481438 11.356176 -8.080782 -4.103113 -12.355035 -5.896776 7.505435 -15.042636 -3.337479 13.745740 -10.235953 14.472077 1.658967 -0.195387 -0.832230 4.350080 9.081406 1.089885 16.508803 -5.919981 -8.575387 -1.481830 5.746566 17.132540 2.242706 -3.468935 7.600811 8.746384 -0.858429 8.045903 -5.007498 1.068385 7.136447 -7.882543 -8.174519 -9.288723 -1.135141 -20.144494 6.691079 -11.084734 -4.661992 3.763981 13.536507 4.452073 1.534682 19.533547 -18.923303 9.266312 -4.524702 1.362372 -8.741455 4.835612 7.844862 -5.906074 -14.713124 0.198685 8.970643 4.489468 3.942374 -11.520921 -4.847291 -14.129346 -17.267686 -0.461487 0.070608 -6.546675 4.161887 12.098988 12.175560 -16.000920 -0.886377 5.067824 1.378197 -0.950959 3.151977 -24.167877 9.846585 -0.650550 6.652028 16.965726 0.583826 -6.271773 6.999085 -5.251508 -2.084253 -11.945359 5.739751 -14.557053 -2.046821 -11.234967 6.076816 -8.612387 -12.490743 -7.407394 2.328724 16.806241 3.158202 -16.606533 14.053256 -0.697963 5.258407 -19.741863 12.274079 -5.533544 9.025839 -0.987148 -5.003540 -2.731502 -0.334465 3.383887 -7.715851 0.083645 -6.230770 18.320728 19.033737 3.093138 2.133070 7.512198 10.525400 -7.155454 -6.979291 -14.531432 5.915923 -4.621130 -13.865587 0.949178 -8.083341 13.084619 -4.973100 -4.357450 12.770408 17.300968 -5.138201 10.442902 4.166006 1.256081 -7.627968 4.883539 11.609188 16.347661 -5.156279 -1.513902 -4.451688 0.499226 -5.918144 12.681720 -19.572970 -20.851252 -3.107152 -28.327275 -11.145200 -8.971833 11.095697 4.147623 5.213703 -20.324084 -9.779815 3.695488 -6.291095 11.578087 12.357160 12.545380 14.731732 17.333878 -6.802407 0.876731 7.192043 10.927061 -17.767418 -9.030665 -5.208964 6.648877 -7.373772 12.893676 9.869933 3.026843 3.541420 -18.181713 18.052325 -17.292821 20.093820 12.282478 -8.821948 6.077618 -0.356921 21.520124 1.760352 -8.592659 -PE-benchmarks/edit-distance.cpp__main = -0.384716 -8.082452 13.178401 8.548680 1.163221 5.670585 9.663604 -8.916810 10.466908 4.113507 -3.418555 -1.662189 -11.479589 -2.194869 -3.996678 1.592909 -7.495564 -7.986041 -0.690378 -5.058249 -0.613486 -10.116932 7.121912 2.416743 5.270507 3.604758 -1.630021 -4.417145 -10.533963 -6.690533 12.093558 -0.705428 5.123349 6.041030 -1.549104 -15.240768 8.619539 7.893375 -3.485247 -10.270068 3.515746 0.423050 -5.266526 3.109673 1.985230 2.302131 0.652389 11.748812 3.430734 4.928663 3.674932 -4.682655 2.085703 13.240755 -4.218137 9.303007 7.247564 2.863464 1.863959 7.916142 1.833569 1.860659 3.927960 10.609466 -1.234028 -0.561560 3.435213 -5.386545 -13.698889 9.473121 -0.520808 -2.815766 -4.520259 -1.977066 -2.601756 1.494728 -5.266071 6.334014 16.340318 -5.906507 13.036178 3.423765 5.399155 -6.961722 0.321515 -1.807207 3.773070 3.084153 -5.510064 -4.239977 -14.655292 -4.925521 -0.213821 -2.964461 -4.116366 -9.519861 7.886724 -6.166565 -11.113529 2.900539 2.163912 -2.737350 -4.873082 4.392147 4.527666 2.792022 -5.477661 -10.880000 -6.031792 5.041166 -7.073946 -0.200592 -0.772861 3.990082 -4.801696 -3.353708 -8.350921 -3.378523 1.557613 -8.570866 -2.968021 7.494982 -5.160626 5.714083 1.508929 1.628229 -1.083923 4.278522 3.072483 2.986452 9.846891 0.336830 -4.561229 1.723182 5.065718 10.514070 0.701186 0.550612 0.908904 4.119506 -3.503018 2.946328 -3.188243 -0.192339 5.281242 -5.986522 -6.190559 -2.689690 1.230943 -13.225403 3.623185 -7.804870 -2.799038 0.815686 7.700367 4.919073 3.005107 12.466893 -12.098042 5.054656 -1.195973 0.342394 -1.928557 3.666847 5.161979 -3.823082 -9.892540 -0.314578 3.671614 0.945974 1.150145 -4.612120 -3.353227 -9.929837 -7.541772 0.378474 1.693755 -5.026472 2.534710 7.059522 6.818561 -10.499025 0.999795 5.319798 -0.571996 -0.227563 1.261324 -15.129257 6.299359 -0.070783 4.375246 9.119131 0.089304 -3.238859 4.548647 -4.135726 0.391222 -6.604688 1.870859 -8.623023 -3.380777 -8.088752 4.068381 -2.739668 -6.309626 -2.439705 1.211300 9.835597 -0.560737 -7.874786 10.999787 -1.501045 1.829216 -11.400151 9.727066 -3.425326 3.538478 -0.970700 -1.715162 -2.076460 1.024200 -0.680660 -3.362537 0.536788 -2.757791 10.265482 14.429227 1.992167 1.305914 3.212813 8.181357 -4.263216 -1.082680 -7.878352 6.551936 -2.209765 -8.937488 1.196693 -4.757670 4.892436 -5.819069 -0.953784 11.462453 9.930839 -1.053315 7.462791 2.098873 4.788265 -4.542233 6.039402 4.974812 7.582429 -3.168737 -0.634859 0.511287 0.041914 -5.497099 8.116503 -11.314929 -14.560158 -3.098761 -15.715139 -3.781126 -7.992485 6.428942 -0.462696 1.514336 -11.667591 -6.939196 0.690676 -4.402620 5.902343 7.382998 6.807108 7.668439 12.203614 -5.823389 3.200422 3.121799 6.527972 -7.852584 -6.132389 -3.334737 4.735608 -3.970788 5.402740 7.463692 1.516615 2.702318 -9.059286 9.858364 -9.489545 12.146891 6.423645 -2.876267 6.821734 0.680027 13.169632 4.584573 -4.896169 -PE-benchmarks/edit-distance.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/dfs.cpp__Graph::Graph(int) = -0.095979 -2.267847 2.871178 1.668742 -0.457873 1.676422 1.325861 -1.355719 1.308269 0.659367 -0.858477 0.550904 -1.606519 -1.030043 0.173252 -0.236953 -2.060444 -1.519766 0.139369 -0.668738 -0.358266 -1.534393 -0.510638 1.677049 0.473040 1.010871 0.079684 -0.135427 -2.459574 -0.633033 1.197444 -0.126621 0.679388 2.309849 1.630806 -2.035246 1.498935 1.556992 -0.193315 -2.558463 -0.033952 -0.145055 -0.814214 0.534219 0.369921 0.556388 0.420222 1.918562 -0.297569 0.329314 0.147668 -1.358417 0.228806 2.444110 0.785962 1.999492 2.230763 -0.205122 1.218865 1.259539 0.726761 -0.277871 0.629516 1.454067 -0.238737 0.335689 0.547900 -1.183201 -1.380734 1.262023 0.544978 -1.607784 -0.365840 -1.337303 -1.441946 -0.213141 -2.750659 1.974262 3.084754 -1.584940 2.669416 1.127071 2.108289 -0.874479 2.153173 -0.174095 2.524667 0.810721 -1.453760 0.668404 -2.555292 -2.168911 0.113658 -0.445328 -1.104809 -0.236480 1.386814 -2.368034 -2.212793 1.802435 0.079351 -0.270351 -0.870022 0.395403 1.081694 0.369897 -1.492597 -1.979373 -1.453911 1.530042 -1.874640 -0.194909 0.129673 1.459899 -0.680228 -0.316249 -1.049916 -0.116349 1.803130 -1.138190 -0.513436 2.343131 -0.842499 1.498813 -0.385899 -0.567291 -0.042325 0.866259 0.628133 0.052305 0.975437 -0.725342 -1.542577 1.155413 0.158293 1.340636 0.407795 0.239158 1.575732 1.315169 0.146387 1.257263 -1.189025 1.186264 0.030065 -0.495734 -1.584399 -1.286546 -0.578610 -1.905091 0.297577 -1.248387 -1.072026 0.571968 1.835538 2.154456 -0.509946 0.957896 -1.507454 0.791524 -0.455455 0.371251 -0.709726 -0.036918 0.556266 -1.119017 -1.376509 0.238351 0.787280 0.453918 1.168296 -1.497879 -0.667313 -1.308698 -2.152850 0.670409 0.746882 -0.162878 1.513361 1.621516 0.909434 -1.875740 -0.270969 -0.058203 -0.078397 -0.202491 -0.402191 -2.082959 0.789955 0.174740 0.864806 1.702490 -0.223301 -0.065794 0.363358 -0.311991 0.257356 -1.245231 0.525258 -1.323600 -0.102697 -0.856490 0.794836 -1.176330 -1.158013 -1.165934 -0.685772 2.367730 -1.187357 -1.987191 2.152755 -0.819077 1.521450 -1.756593 0.972325 -0.804808 1.619240 -0.027215 -0.317000 -0.502706 0.193996 0.038368 0.504923 0.382608 -1.047864 1.097380 1.581149 0.196626 0.778798 0.910018 0.998492 -1.442644 -0.916858 -1.565437 1.420812 -0.229315 -0.913996 -0.139321 -1.052747 1.327816 -0.089551 -0.201941 1.000656 1.040354 0.053563 0.372845 0.763984 -0.833019 -1.196992 0.297533 0.833073 1.239485 -1.033632 -0.347122 -0.541320 -0.011795 0.154590 0.037242 -2.195318 -1.620386 -1.958178 -1.667918 -1.566025 -0.844904 1.066708 0.723960 0.335404 -1.829895 -1.099580 0.650770 -0.659007 -0.113656 1.323815 1.503194 2.031762 1.739120 0.078633 -0.016480 0.320542 0.788353 -1.752451 -0.416224 -1.136418 0.352538 -1.794573 1.756711 1.435500 0.893011 1.084276 -0.553660 2.232983 -1.911537 1.726873 1.809489 -1.804874 0.014147 1.607751 1.502291 -0.151153 -1.539419 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/dfs.cpp__Graph::addEdge(int, int) = -0.258164 -0.966530 1.402509 1.356168 -0.111844 0.591160 0.321503 -0.791154 0.852417 0.736917 -0.080499 0.377124 -0.969210 0.308942 0.065420 0.749355 -0.964887 -0.747126 -0.247233 -0.636087 -0.630080 -0.786537 0.062012 0.465807 0.485829 0.194883 -0.627980 -0.139727 -0.824982 -0.861468 0.469134 -0.243021 0.702528 0.373364 0.283721 -2.443143 0.917024 0.815264 -0.278928 -1.014704 0.105191 -0.563513 0.143731 -0.255990 -0.364790 0.264155 0.121523 0.224052 0.610165 0.269643 0.471699 0.011544 0.468333 1.969904 -0.443143 0.931172 0.567182 -0.120201 -0.044617 0.157004 0.318704 0.099564 0.712443 0.601160 -0.196897 -0.618008 -0.221698 -0.432294 -0.962783 0.830064 0.085698 -0.316032 -0.902026 -0.489891 -0.621929 -0.495900 -1.391068 0.851789 1.600205 -1.049344 1.074038 0.473511 0.519079 0.029668 0.823495 -0.070996 1.240718 0.302842 -0.627961 0.317687 -0.262081 -0.420410 0.187088 0.227474 -0.558532 -1.054133 0.461774 -0.732134 -1.302373 0.752900 0.194427 -0.009119 -0.944944 -0.357731 0.526131 0.330875 -0.720587 -1.225492 -0.657543 0.380327 0.006760 -0.500415 -0.070170 -0.190342 -0.181391 -0.285875 -1.201592 -0.223725 0.324913 -0.735267 -0.445724 1.056513 -0.217620 0.364073 -0.072029 0.173302 -0.271837 1.067994 0.086755 0.707139 0.073153 0.058526 -1.261722 0.063432 0.444981 0.521354 -0.108910 -0.161878 -0.174766 0.373024 -0.465483 0.520480 0.084001 0.872291 1.013396 -0.148661 -0.801606 -0.575545 -0.129898 -1.277607 0.372223 -0.856798 -0.156548 0.406839 0.878311 0.577722 0.483525 0.959517 -0.766298 0.701868 -0.278309 0.025970 0.623970 0.162084 0.564719 -0.573551 -0.839666 0.528932 0.587672 0.358395 0.331782 -0.429067 0.017307 -0.564380 -0.557397 0.369241 0.359225 -0.236684 0.922370 0.593242 1.898003 -1.043008 0.453904 0.369166 -0.115379 0.257672 -0.119805 -1.199191 0.540459 0.163515 -0.275741 0.875235 -0.227318 -0.575116 0.365232 -0.282237 0.346391 -0.789162 0.370569 -0.725954 -0.122032 -0.838614 0.155562 -0.469480 -0.457500 -0.320676 -0.000626 1.327974 -1.024817 -0.640141 1.151101 -0.203602 0.448507 -1.286788 1.552844 -0.543454 0.667904 -0.739143 -0.543343 -0.072984 0.512735 -0.230243 0.253307 0.597750 -0.507784 0.154885 1.270978 0.254582 0.277814 0.239251 0.861857 0.051771 0.291121 -0.498282 1.167258 -0.016090 -0.109729 -0.152244 -0.530079 0.365593 -0.150335 0.105636 0.782600 0.879970 0.051954 0.287137 0.755133 0.446460 -0.566038 0.540588 -0.054296 0.642354 -0.677953 -0.051890 -0.074621 0.306929 -0.331738 0.455695 -1.209450 -1.022991 -0.961488 -0.503015 -0.480983 0.530951 0.314333 0.043105 -0.080158 -0.993980 -0.727009 0.903402 -0.570104 0.235258 0.490945 0.565342 0.964334 1.119673 -0.116354 -0.326248 -0.154565 -0.074043 -0.238698 -0.080629 -0.604863 0.772023 -0.803028 0.643210 0.826492 -0.188800 0.386573 0.170153 1.087286 -0.733251 1.391742 0.557994 -0.494656 0.739254 1.169613 1.129390 -0.136641 -0.674677 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::push_back(int const&) = -0.077529 -0.917212 1.926129 1.690331 -0.291034 0.629247 0.100363 -1.345253 1.481807 0.359404 -0.067820 0.345084 -1.053998 0.601394 -0.297854 1.025625 -1.514553 -0.974832 -0.508815 -1.067197 -0.843968 -0.975442 0.422656 0.255730 0.632583 0.456758 -0.955443 0.007034 -0.960840 -0.934492 1.081055 -0.390250 0.806590 0.193464 0.263220 -3.329660 1.412603 0.906599 -0.490407 -1.358132 0.240322 -0.820300 0.128790 -0.602182 -0.478886 0.211199 -0.188216 0.492971 0.979868 0.286153 0.366317 0.484081 0.168066 2.586149 -0.959138 1.010112 0.481178 -0.059223 -0.391253 0.293020 0.409690 0.500026 0.837138 0.799006 -0.267402 -1.124092 -0.221362 -0.642902 -1.378018 1.246603 -0.015182 -0.403871 -1.099677 -0.507587 -0.989252 -0.497219 -1.263619 1.271060 1.947137 -1.326708 0.981342 0.226904 0.533105 0.101900 0.849460 -0.081755 1.616537 0.433907 -0.617319 0.086968 -0.553645 -0.367427 0.334869 -0.198445 -0.657727 -1.762485 0.632030 -1.287231 -1.489152 0.672496 0.589161 -0.016680 -1.289897 -0.552017 0.818272 0.455756 -0.835267 -1.398146 -0.535145 0.528918 0.168919 -0.568503 0.040671 -0.378039 -0.230716 -0.592107 -1.607283 -0.197249 0.232984 -0.657977 -0.459639 1.273472 -0.562691 -0.070521 -0.159556 0.358538 -0.535055 1.432644 -0.267029 0.930079 0.048071 0.330961 -1.071000 0.194983 0.521846 0.920253 -0.165585 -0.154143 -0.558813 0.399922 -1.002412 0.215261 -0.210901 0.599859 1.185029 -0.278406 -1.043524 -0.464671 -0.177392 -1.884918 0.345044 -1.117295 -0.385883 0.680549 1.141151 1.103125 0.925839 1.349332 -1.154538 0.773225 -0.319310 0.034166 1.115236 0.273336 0.758473 -0.678450 -1.061748 0.663747 0.295291 0.391765 0.343633 -0.465736 -0.009963 -0.970315 -0.573925 0.525547 0.693097 -0.104452 0.978030 0.763155 1.600164 -1.502391 0.572225 0.737847 -0.284610 0.336849 -0.148355 -1.460224 0.572121 0.317679 -0.017740 1.144079 -0.309094 -0.712182 0.279165 -0.210863 0.566819 -0.885238 0.134186 -0.904089 -0.241678 -1.085549 0.214592 -0.571869 -0.433315 -0.545250 -0.455696 1.606379 -1.393390 -1.044610 1.858997 -0.450001 0.858132 -1.673572 1.337762 -0.757155 1.029203 -0.678022 -0.206450 -0.128654 0.190236 -0.749185 0.411867 0.737312 -0.494163 0.200572 1.764319 0.447669 0.311833 0.064806 1.190299 -0.131339 0.768503 -0.644971 1.617946 -0.190769 -0.326104 0.055199 -0.636931 0.132174 -0.585328 0.378784 1.224358 1.022349 0.561673 0.709134 0.880237 0.900543 -0.784405 0.896935 -0.138609 0.399007 -0.666183 -0.058427 0.283081 0.553908 -0.543808 0.574059 -1.486717 -1.747025 -1.615354 -1.032023 -0.184657 0.074947 0.231250 -0.283068 -0.177470 -1.174959 -0.914647 0.999809 -0.676181 0.942986 0.665798 0.638332 1.038536 1.616170 -0.766642 -0.197364 0.021847 -0.064648 -0.146893 -0.216749 -1.124218 1.289367 -0.805793 0.493335 1.436548 -0.375614 0.470281 0.057361 1.205382 -0.758962 1.744571 0.630357 -0.507026 1.054603 1.106764 1.535516 0.478665 -0.858644 -PE-benchmarks/dfs.cpp__Graph::DFSUtil(int, bool*) = -0.563183 -4.957827 7.799287 7.054864 -0.934000 3.692045 0.089752 -4.942191 4.014782 1.761383 -1.645057 2.927067 -4.250171 1.172120 -2.352788 2.580545 -5.277158 -3.802325 -1.801559 -3.257004 -2.623168 -3.531717 -0.258553 3.744740 2.449918 3.568708 -3.451924 0.754398 -5.639017 -5.300601 2.345472 -0.499925 3.269101 2.168361 1.648912 -10.108991 5.241144 6.208371 -1.281955 -5.943182 0.957603 -2.882810 -1.727455 -1.051314 -1.999165 1.441855 -0.370143 1.692312 1.787514 0.899317 1.053660 1.486038 2.464951 8.328662 -1.100783 5.529761 4.119714 0.266600 0.278298 0.713761 1.662575 1.470484 3.251042 2.907305 -1.215260 -3.608600 -0.620089 -1.211135 -4.210175 4.042302 0.387143 -2.604134 -3.344657 -2.677091 -4.387273 -1.279336 -2.541385 3.801286 7.878182 -4.204715 5.490198 2.019882 2.159425 -0.563053 4.272183 -0.787360 6.375996 2.428750 -2.228514 0.513278 -3.174094 -1.618233 1.292170 1.301423 -4.723926 -4.963423 3.320707 -8.115174 -6.892824 2.878754 1.508648 -1.860034 -3.217947 -1.123921 2.633758 0.997420 -2.617763 -5.262895 -1.797466 3.092903 -0.557785 -3.111808 -1.009659 0.520645 -0.126857 0.002992 -6.099930 0.100747 2.463849 -2.745933 -1.075792 5.106853 -0.075209 1.339361 -1.242093 0.940440 -1.235003 4.037439 -0.442297 2.732314 -0.292768 1.438841 -2.340455 1.114832 1.693195 0.842410 -2.864560 -1.413373 0.143164 2.266707 -1.393309 2.334058 -2.861147 3.237047 3.774316 -0.791176 -3.683005 -3.570705 -2.307632 -6.814015 0.377817 -3.790824 -3.865065 1.397151 4.676343 2.801853 2.268119 4.462493 -3.494344 2.606191 0.122843 0.557964 2.835382 -0.406679 2.250285 -3.081880 -5.188041 3.809241 1.919620 2.073458 1.287621 -1.017162 -0.425634 -2.865547 -3.308325 3.466080 1.735060 0.210208 5.717001 3.787668 7.559705 -4.613484 2.102237 1.209123 -1.824609 1.368608 -0.740267 -6.236278 1.983548 1.280559 1.528123 6.949379 -0.841285 -1.973701 1.629099 -0.190783 1.629513 -4.629717 3.182111 -4.272104 -0.480050 -3.877587 0.604245 -1.844405 -1.981274 -3.237218 -2.211960 6.969238 -6.891404 -4.758160 6.312317 -0.187666 2.991141 -7.040375 2.837449 -3.046645 4.989356 -1.174236 -1.575461 0.343210 -0.866626 -2.806622 1.445712 3.127763 -3.262501 1.827411 5.309638 1.127006 0.932731 0.676872 3.475590 -1.500325 1.973745 -3.997778 5.608499 0.449095 -2.130650 -0.944779 -2.701580 0.755581 -1.863854 0.603615 3.219815 4.097139 1.587034 0.922971 3.523953 2.502384 -3.306577 3.213031 -0.112221 1.573635 -3.153782 -1.190980 -0.109796 1.653855 -0.623497 2.711122 -6.744751 -6.184122 -6.967933 -4.996267 -1.237690 -0.460456 2.452789 0.271893 -0.927110 -5.408047 -5.016401 5.727024 -2.475502 4.664284 3.651352 3.704689 4.478490 5.005345 -1.186078 -0.026784 -0.660278 0.964557 -1.395005 -1.108467 -3.599532 4.612543 -1.873423 3.233187 5.523593 -1.085758 3.275104 -0.266276 4.355955 -3.633458 7.263818 2.921541 -4.122774 2.728779 3.631657 4.990242 -0.516729 -3.962600 -PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/dfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/dfs.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/dfs.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/dfs.cpp__Graph::DFS(int) = -1.127293 -3.043907 3.689108 3.417224 0.250983 2.073605 0.608295 -1.987739 2.194400 1.898379 -0.984480 1.725786 -2.211445 0.116878 -0.389217 1.255388 -2.004961 -2.285798 -0.240492 -1.214175 -1.065628 -2.142485 -0.591706 1.896695 0.931566 0.946819 -1.579269 0.354856 -3.366322 -3.347186 1.024868 -0.423267 1.744488 0.595552 0.779922 -5.907246 2.587043 3.167432 -0.516902 -3.543869 0.190318 -1.388581 -0.705757 -0.004512 -0.557887 1.139276 0.526050 0.652172 0.567733 0.706208 0.927756 0.046290 1.189464 4.463717 -0.430733 3.129378 2.651470 -0.048908 0.270990 0.511526 0.934511 0.168165 2.040668 1.996655 -0.992756 -1.264470 -0.113821 -0.382401 -2.584022 1.736697 0.536885 -1.374707 -1.563101 -1.194342 -1.861023 -0.828938 -1.103825 1.298084 4.561575 -1.754798 3.813357 1.527341 2.195696 -0.260052 2.475309 -0.410427 3.404098 1.215394 -2.022748 0.239188 -1.954712 -1.233135 0.282489 1.628895 -2.053547 -1.047434 1.443005 -2.836848 -3.500877 1.827333 0.168162 -0.460244 -2.508762 -0.346205 1.760501 0.816120 -1.272157 -3.095191 -1.891329 1.490740 -1.110657 -1.684580 -0.565066 -0.071305 -0.402842 0.041649 -2.917471 -0.491738 1.806814 -1.904501 -1.235516 2.679867 -0.804565 1.258164 -0.647509 0.294535 -0.434994 1.633089 0.438026 1.335384 0.647906 -0.450779 -3.377909 0.349210 0.722198 1.023824 -1.240701 -0.722389 0.479446 1.154044 -0.221597 1.589963 -1.004890 2.166177 2.481390 -0.224757 -1.806696 -2.358287 -0.528482 -3.063596 0.733651 -2.057519 -1.102778 0.418668 2.509146 0.869158 0.944232 2.692097 -2.189161 2.219695 -0.294338 0.443275 1.041306 -0.311116 1.155844 -1.585460 -2.514919 1.851411 1.923431 0.813054 0.961972 -1.129576 -0.099905 -1.392777 -2.274851 1.684597 0.508594 0.146572 2.838795 1.604061 5.532222 -2.828166 0.934548 0.309812 -0.464319 0.664672 -0.450692 -3.244552 1.332550 0.560997 0.697461 3.554380 -0.312131 -1.585356 0.657093 -0.005575 0.603406 -2.336206 2.202801 -2.272341 -0.080139 -1.539697 -0.058885 -1.316624 -1.301364 -1.508773 -0.246328 3.706319 -2.326345 -3.139765 2.660238 -0.701386 1.331845 -4.252554 2.349377 -1.675345 2.297274 -1.335469 -0.948488 -0.134597 0.532050 -0.714227 0.668383 1.680982 -1.938447 1.410347 2.823746 0.531004 0.709667 0.707093 1.503467 -0.408753 0.116956 -1.823134 2.539498 0.153226 -0.746119 -0.683541 -1.490822 1.432375 -0.279897 -0.196570 1.019539 2.583429 -0.268203 0.312901 2.188398 0.628627 -1.716501 1.396825 0.229532 1.653277 -1.536223 -0.498108 -0.761097 0.499865 -0.184326 1.390134 -3.398902 -2.540529 -2.364739 -2.986702 -1.150239 0.858663 1.253858 0.625212 0.058317 -3.362247 -2.097841 2.799990 -1.155575 2.232143 1.681668 2.042441 2.411942 2.264781 -0.226600 -0.799134 -0.743648 0.014161 -1.438080 -0.706585 -1.275388 1.925407 -1.364612 2.171366 2.017723 -0.317549 1.194861 -0.084784 2.471787 -1.831236 4.069034 1.861976 -1.938342 1.154763 1.636216 3.437893 -1.352482 -2.027940 -PE-benchmarks/dfs.cpp__main = -0.024371 -2.692516 3.891951 3.321137 -0.801726 1.157014 0.557999 -1.518013 2.239428 -0.275450 -1.021092 1.404258 -2.394342 0.915592 -0.737115 1.435442 -3.509001 -2.497667 -0.086469 -0.795925 -1.152655 -1.985335 0.709626 1.636034 1.399828 2.184511 -1.707363 -0.310591 -2.376210 -0.820879 2.293260 -1.193218 1.996351 2.299127 0.659702 -6.314738 2.160452 1.579335 -0.616653 -3.070383 0.377106 -1.537706 0.140296 -2.253536 -1.278674 0.551251 0.840114 1.945361 1.356472 0.490109 -0.662537 -0.292228 0.474357 4.395940 -1.010747 1.940432 1.896851 -0.267159 -0.072702 -0.532562 1.216362 0.042963 1.785306 2.075674 -0.886452 -1.688132 -0.689392 -2.015425 -2.665246 2.127904 0.520194 0.932499 -2.455731 -0.533921 -2.087010 -0.639430 -1.322505 2.811130 4.601897 -2.673262 2.948057 0.918174 2.062848 -0.317607 1.307921 0.280575 2.351215 1.240166 -1.751823 0.235867 -2.389247 -0.987185 0.156144 -0.414313 -0.959617 -2.973484 1.134199 -3.114251 -2.989285 1.268377 0.570007 0.059681 -1.234194 -0.372362 1.737794 1.386887 -1.774123 -2.660966 -0.798816 0.116707 -0.110814 -1.098224 0.133767 0.777316 -0.690960 -1.429506 -3.273569 -0.847579 0.781866 -2.193306 0.577056 2.226760 -1.204699 1.062589 -0.444136 0.173673 -0.595688 3.041456 0.831289 0.937480 0.795767 -0.291960 -0.988369 0.215543 1.184769 3.155292 -1.112308 -0.877939 -0.235036 0.969374 -0.906753 -0.734860 0.161890 1.109968 1.556892 -1.049654 -2.492577 -1.835220 -0.860739 -3.627794 0.604607 -2.474844 -0.321804 2.229457 2.316010 1.538749 1.571336 3.269045 -2.231614 2.075355 -0.478764 0.334939 1.487725 1.126464 1.456402 -1.360243 -1.923141 1.811219 0.566311 0.974080 0.833622 -1.494113 0.328727 -2.107546 -1.774010 1.483035 1.500025 -0.137261 2.001478 0.951455 1.552246 -2.401117 0.657473 1.160523 0.116370 0.230149 0.357674 -3.205207 2.176221 -0.109899 -0.099836 1.677818 -0.373267 -1.794741 1.175812 -0.313330 0.682021 -1.920451 0.524016 -1.738354 -0.294562 -2.465305 1.167562 -1.065670 -1.077439 -1.186874 -0.430824 3.496715 -2.863359 -1.939335 2.398757 -0.056711 2.621391 -3.595953 1.983467 -1.677993 2.969873 -0.666181 -1.066772 0.258541 -0.838910 -0.728359 -0.153651 1.687415 -0.641492 0.247121 2.379818 0.934517 0.309780 1.061521 2.107115 0.295912 1.205012 -0.654950 1.868425 -0.068842 -0.983658 0.267138 -1.216470 0.711852 -0.545693 0.569447 2.854072 2.292671 1.573513 2.442974 1.500529 1.361434 -1.898025 0.368745 -0.386651 2.114110 -1.552335 -0.307866 -0.492278 1.593117 -1.073538 1.489229 -3.064447 -4.679305 -3.343678 -2.386885 -1.426736 -0.524308 0.941320 -0.378972 0.084591 -2.473897 -1.519698 1.055905 -1.249712 2.647887 1.753246 1.105692 2.449233 2.489998 -1.700150 -1.453268 0.979303 1.071003 -0.529352 0.691473 -2.951411 1.695987 -2.203422 1.262700 3.389404 -1.168093 0.376485 -0.548011 3.688825 -1.658571 4.212732 1.811406 -2.621705 1.715516 1.634587 2.314623 1.364877 -2.036851 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/dfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.197217 -1.643680 3.364608 2.740497 -0.229750 1.188232 0.623731 -2.539664 2.675320 0.491208 -0.076797 0.526287 -2.100922 0.989685 -1.411578 1.480065 -2.296461 -1.982242 -1.050079 -2.059564 -1.395553 -1.821714 0.930406 0.521837 1.165437 0.157683 -1.652877 -0.259496 -2.498904 -1.456158 2.051302 -0.491221 1.263210 -0.460181 0.161313 -5.360150 2.403322 1.860522 -0.925574 -2.362925 0.686496 -1.519070 -0.154445 -0.762420 -0.642190 0.092719 -0.484321 1.065720 1.658174 0.483935 0.956695 1.131702 -0.062911 4.905769 -1.983262 2.011556 0.973257 0.373709 -0.620048 0.973054 0.545103 0.996032 1.309800 1.425086 -0.536053 -1.766751 -0.188983 -1.008257 -2.408092 2.245183 -0.072602 -0.883159 -1.702413 -0.672964 -2.039756 -0.746987 -1.586103 1.950118 3.466941 -2.336400 1.803086 0.322161 0.964933 -0.025605 1.370466 -0.269027 2.649614 0.694654 -0.983091 -0.392417 -1.810917 0.032882 0.238403 -0.354231 -1.313079 -3.351133 1.501806 -2.490741 -2.857759 0.969470 0.950236 -0.327403 -2.022749 -0.552342 1.294278 0.645918 -1.551765 -2.620385 -1.154934 1.313934 0.277167 -0.919750 0.381948 -0.867840 -0.241673 -1.307916 -2.811860 -0.293959 0.429969 -1.273996 -1.210426 2.318287 -1.243130 0.054008 -0.072287 0.790467 -0.910981 2.127813 -0.460945 1.459666 0.225161 0.552904 -2.126361 0.275229 0.857070 1.881379 -0.468913 0.240858 -0.912135 0.725716 -1.637367 0.448576 -0.736580 0.791716 1.493497 -0.837830 -1.757749 -0.688505 0.097296 -3.170072 0.522782 -1.962602 -1.186008 0.615855 1.948612 2.152849 1.489769 2.768998 -1.843506 1.489487 -0.194032 -0.086320 1.739145 -0.143766 1.356504 -1.216707 -2.328645 0.997572 0.466114 0.597916 0.369722 -0.565086 -0.254737 -2.032436 -1.124676 0.396274 1.106529 -0.386679 1.883177 1.526428 2.239478 -3.204871 1.120996 1.267961 -0.796275 0.705542 -0.440833 -2.827540 0.862895 0.702615 0.094753 2.334760 -0.416500 -1.322559 0.747176 -0.442620 1.108414 -1.686630 0.276497 -1.786543 -0.858070 -2.016784 0.361141 -0.807905 -0.761226 -1.005519 -1.126979 2.773429 -2.420797 -2.140816 3.308420 -0.400394 1.294080 -3.256957 2.248360 -1.241831 1.805442 -0.789560 0.050177 -0.300075 0.791822 -1.402116 0.748312 1.153893 -1.199414 1.055220 3.431007 0.655780 0.785393 0.170475 2.214055 -0.528886 1.146736 -1.490925 2.872177 -0.349064 -1.489373 0.242937 -1.159777 0.271539 -1.191528 0.842336 2.258762 1.965283 0.873309 1.287501 1.737226 1.752639 -1.261497 1.673310 -0.226871 0.609366 -1.123742 -0.057018 0.529803 0.593589 -0.959633 1.193807 -2.742619 -3.366562 -2.716159 -2.554427 0.330703 -0.703596 0.376562 -0.555365 -0.345643 -2.590215 -1.805092 1.330081 -1.260971 1.886835 1.520559 1.392458 1.830891 3.037335 -1.593817 0.203397 0.291985 0.234142 -0.465140 -0.885024 -1.737374 2.087346 -1.277984 0.993179 2.480806 -0.370037 1.046807 -0.035265 1.665858 -1.452587 3.218765 1.185927 -0.850880 1.992754 1.747601 3.026402 0.994867 -1.449368 -PE-benchmarks/dfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.592846 -4.006603 8.322105 6.783790 0.043351 2.724177 2.552574 -6.490439 6.081957 2.177849 0.110406 1.324856 -5.582094 2.390964 -3.832957 4.135394 -4.606801 -4.859233 -2.893483 -5.163775 -2.961563 -4.283977 3.518078 0.927603 3.463395 -0.282391 -4.013577 -1.768087 -6.458651 -5.317348 4.745494 -0.807738 3.410700 -1.635077 -0.653878 -12.040709 5.956545 5.247331 -2.508413 -5.607268 2.666387 -2.773742 -1.312912 -0.551397 -1.315652 0.466267 -1.466058 1.858131 3.873695 2.212529 3.621099 3.133894 0.836187 11.069281 -4.847330 5.172950 2.537917 1.406843 -1.481138 2.646659 1.090671 2.816613 3.020945 3.393971 -0.654402 -4.190348 -0.593841 -1.975956 -6.513299 5.334166 -0.866291 -2.671659 -3.868565 -1.524834 -4.144711 -1.261170 -2.625270 3.963291 8.336340 -5.217819 4.467757 0.603046 1.150728 -1.227073 2.234617 -0.867111 4.802182 1.788995 -1.590902 -1.849107 -3.941923 0.165302 0.277373 0.372850 -3.642380 -7.537312 4.665333 -4.853569 -7.016052 2.110976 2.490900 -1.527831 -5.227839 -0.935925 2.275899 1.806360 -3.657631 -6.406589 -3.301204 3.319180 1.363711 -2.348819 0.217892 -2.056399 -1.069275 -2.418726 -6.787515 -0.592683 0.697240 -3.572702 -3.672688 4.884956 -2.714468 0.536409 0.101958 2.617831 -2.298090 4.485896 -0.938916 4.118773 1.765139 1.805071 -4.987030 0.171494 2.506289 4.418312 -1.382249 0.898351 -2.732097 1.589193 -3.508952 1.889529 -1.840995 1.726366 4.708987 -2.132755 -4.314421 -1.031580 0.804930 -7.815237 1.466778 -5.052635 -2.354047 0.971575 4.375901 3.790980 3.449911 7.826887 -4.643015 3.445434 0.226303 -0.775893 3.746337 -0.867368 3.182507 -2.830747 -6.512558 2.305454 1.636096 1.140012 0.578084 -0.435665 -0.826987 -5.177888 -3.118352 0.723040 1.880586 -1.853593 4.094907 3.760470 6.352292 -6.840039 2.450705 3.161754 -2.415056 1.844932 -1.145705 -7.566939 1.739413 1.488070 0.555164 6.320464 -0.695701 -3.210436 2.780436 -1.646667 2.309293 -4.187586 1.782742 -4.837721 -1.972146 -5.018615 -0.156224 -1.074426 -1.912828 -1.751825 -1.932415 6.657524 -4.646216 -5.300054 7.620846 -0.740541 1.703497 -8.548789 6.422035 -2.720213 3.326154 -1.790268 0.273420 -0.731088 2.368439 -3.377641 1.048985 2.440810 -2.834055 3.487168 9.420082 1.157966 1.141772 0.196972 5.398776 -1.506668 3.032384 -3.969603 7.366027 -0.808576 -4.325735 0.399235 -2.599075 0.392256 -3.885885 1.385072 5.424056 4.567010 1.104575 2.780152 3.849352 5.183498 -2.971282 5.309390 0.113827 1.887014 -2.461789 -0.059750 1.734064 1.226552 -2.505960 3.904236 -6.502864 -8.072828 -5.374468 -7.618133 1.142893 -1.832972 1.963694 -1.935055 -1.173254 -6.408654 -4.971564 2.980884 -2.964596 4.622980 4.341374 3.825691 4.326740 7.357578 -3.696038 1.578754 -0.156560 1.076288 -1.076181 -3.305013 -2.711156 4.303314 -2.357926 1.957515 5.474638 -0.199011 2.974050 -1.037928 3.598524 -3.665389 8.030932 2.589041 -1.125931 5.836319 3.435246 7.385593 1.684032 -3.137071 -PE-benchmarks/dfs.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/dfs.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/dfs.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/dfs.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/dfs.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/dfs.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -1.284876 -4.362930 7.126069 5.134241 -0.523377 2.933760 2.189340 -4.436178 4.060636 1.581688 -1.742824 0.950548 -4.489909 -0.335771 -0.915055 1.424788 -4.440784 -3.916357 -0.813515 -3.060068 -1.367592 -3.798604 1.075931 2.701958 1.881376 1.586364 -1.686960 -0.119050 -4.468035 -4.778257 3.707498 -0.495901 2.855180 2.353626 0.973482 -9.386256 4.735274 4.084682 -1.585884 -5.343173 1.093524 -0.726570 -2.326771 0.624240 -1.352431 1.576161 0.628124 3.267336 1.139191 2.037677 1.459603 -0.930295 1.443877 7.336487 -0.990352 4.835811 4.496093 0.387368 0.669494 2.364650 1.032722 0.542820 2.333409 4.069698 -0.952192 -1.540337 0.973922 -2.083514 -5.384861 3.997621 0.451715 -2.541475 -2.082918 -2.235858 -2.682123 -0.627568 -1.413394 3.120930 7.975862 -3.769098 5.903834 2.245529 2.958123 -1.620830 2.335198 -0.719610 4.487407 1.924755 -2.787286 -0.273614 -4.580718 -2.894249 0.385163 0.327835 -2.777966 -3.796472 3.398181 -5.230585 -5.764149 2.857934 1.003287 -1.267216 -3.598349 -0.007037 2.740708 1.195292 -2.637348 -5.072043 -2.947122 2.873954 -2.542892 -1.093500 -0.938451 1.808962 -1.159521 -0.465098 -5.384796 -0.639192 2.155599 -3.452282 -1.311569 4.234767 -1.814814 2.447198 0.089253 0.927428 -1.154816 3.362489 1.223143 1.745267 2.244766 -0.349756 -3.050211 1.048947 1.754071 2.488831 -0.638331 -0.880411 0.865272 2.095522 -1.411785 2.305790 -1.834630 1.975291 3.269763 -1.240157 -3.718389 -2.779202 -1.224516 -6.650328 1.480408 -4.413786 -2.661305 1.966067 3.723946 2.697673 1.514190 5.254905 -4.324194 3.357202 -1.005319 0.403093 0.157924 -0.134242 2.529247 -2.329113 -4.649732 1.642729 1.975740 1.217878 1.640734 -2.855255 -0.693615 -4.182211 -4.521744 1.911939 1.280649 -0.848132 2.963821 3.548794 6.555919 -4.307272 0.798218 1.571180 -0.858087 0.244451 0.004699 -6.331046 1.858438 0.655548 1.557513 5.706330 -0.211479 -2.053082 1.540024 -0.938855 0.728332 -3.421105 2.093833 -3.899293 -0.230985 -3.454911 0.910594 -2.287511 -2.407112 -1.909735 -0.680289 5.836084 -3.730790 -5.056365 5.724697 -0.926115 2.593149 -6.766059 4.238666 -2.120376 4.221749 -1.196216 -1.269634 -0.891316 -0.539940 -0.866323 0.586181 1.335887 -1.893697 2.943658 6.026223 0.909245 1.170144 1.609151 3.806536 -1.863422 0.325084 -3.662768 4.167967 -0.888713 -2.988079 -0.286112 -2.146504 1.741189 -1.978125 0.312176 3.105950 4.104269 -0.219784 2.126002 2.636900 1.626195 -2.642704 2.677220 1.280057 3.167557 -2.584504 -0.689680 -0.249340 0.979203 -1.568886 2.701005 -5.935223 -5.969070 -5.165450 -6.372961 -2.515393 -1.101369 2.806520 0.213989 0.164514 -5.077161 -3.458623 3.714256 -2.106531 3.844754 3.869456 3.774871 4.589430 5.810916 -1.336771 -0.292624 0.334005 1.760413 -3.219103 -1.493368 -2.716879 2.988725 -1.956838 2.940044 4.115227 0.466407 2.075707 -2.150983 4.282884 -4.047641 6.297976 3.231613 -2.829111 2.799265 2.247122 4.730805 0.524356 -2.922295 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::push_back(int const&) = -0.077529 -0.917212 1.926129 1.690331 -0.291034 0.629247 0.100363 -1.345253 1.481807 0.359404 -0.067820 0.345084 -1.053998 0.601394 -0.297854 1.025625 -1.514553 -0.974832 -0.508815 -1.067197 -0.843968 -0.975442 0.422656 0.255730 0.632583 0.456758 -0.955443 0.007034 -0.960840 -0.934492 1.081055 -0.390250 0.806590 0.193464 0.263220 -3.329660 1.412603 0.906599 -0.490407 -1.358132 0.240322 -0.820300 0.128790 -0.602182 -0.478886 0.211199 -0.188216 0.492971 0.979868 0.286153 0.366317 0.484081 0.168066 2.586149 -0.959138 1.010112 0.481178 -0.059223 -0.391253 0.293020 0.409690 0.500026 0.837138 0.799006 -0.267402 -1.124092 -0.221362 -0.642902 -1.378018 1.246603 -0.015182 -0.403871 -1.099677 -0.507587 -0.989252 -0.497219 -1.263619 1.271060 1.947137 -1.326708 0.981342 0.226904 0.533105 0.101900 0.849460 -0.081755 1.616537 0.433907 -0.617319 0.086968 -0.553645 -0.367427 0.334869 -0.198445 -0.657727 -1.762485 0.632030 -1.287231 -1.489152 0.672496 0.589161 -0.016680 -1.289897 -0.552017 0.818272 0.455756 -0.835267 -1.398146 -0.535145 0.528918 0.168919 -0.568503 0.040671 -0.378039 -0.230716 -0.592107 -1.607283 -0.197249 0.232984 -0.657977 -0.459639 1.273472 -0.562691 -0.070521 -0.159556 0.358538 -0.535055 1.432644 -0.267029 0.930079 0.048071 0.330961 -1.071000 0.194983 0.521846 0.920253 -0.165585 -0.154143 -0.558813 0.399922 -1.002412 0.215261 -0.210901 0.599859 1.185029 -0.278406 -1.043524 -0.464671 -0.177392 -1.884918 0.345044 -1.117295 -0.385883 0.680549 1.141151 1.103125 0.925839 1.349332 -1.154538 0.773225 -0.319310 0.034166 1.115236 0.273336 0.758473 -0.678450 -1.061748 0.663747 0.295291 0.391765 0.343633 -0.465736 -0.009963 -0.970315 -0.573925 0.525547 0.693097 -0.104452 0.978030 0.763155 1.600164 -1.502391 0.572225 0.737847 -0.284610 0.336849 -0.148355 -1.460224 0.572121 0.317679 -0.017740 1.144079 -0.309094 -0.712182 0.279165 -0.210863 0.566819 -0.885238 0.134186 -0.904089 -0.241678 -1.085549 0.214592 -0.571869 -0.433315 -0.545250 -0.455696 1.606379 -1.393390 -1.044610 1.858997 -0.450001 0.858132 -1.673572 1.337762 -0.757155 1.029203 -0.678022 -0.206450 -0.128654 0.190236 -0.749185 0.411867 0.737312 -0.494163 0.200572 1.764319 0.447669 0.311833 0.064806 1.190299 -0.131339 0.768503 -0.644971 1.617946 -0.190769 -0.326104 0.055199 -0.636931 0.132174 -0.585328 0.378784 1.224358 1.022349 0.561673 0.709134 0.880237 0.900543 -0.784405 0.896935 -0.138609 0.399007 -0.666183 -0.058427 0.283081 0.553908 -0.543808 0.574059 -1.486717 -1.747025 -1.615354 -1.032023 -0.184657 0.074947 0.231250 -0.283068 -0.177470 -1.174959 -0.914647 0.999809 -0.676181 0.942986 0.665798 0.638332 1.038536 1.616170 -0.766642 -0.197364 0.021847 -0.064648 -0.146893 -0.216749 -1.124218 1.289367 -0.805793 0.493335 1.436548 -0.375614 0.470281 0.057361 1.205382 -0.758962 1.744571 0.630357 -0.507026 1.054603 1.106764 1.535516 0.478665 -0.858644 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::SuffixTrieNode() = -0.315200 -1.373956 1.361182 1.300880 0.439521 0.859879 0.615938 -0.647848 1.542852 0.918523 -0.692935 0.430147 -1.127657 -0.069585 0.217727 0.541022 -0.786809 -1.278288 0.393021 -0.203794 -0.193662 -1.364625 -0.091291 0.439725 0.289523 0.398336 -0.349708 0.122414 -1.627682 -0.954406 0.894963 -0.461088 0.609368 0.802722 0.353925 -1.909603 1.082593 0.932397 -0.173118 -1.779971 -0.181553 -0.739512 -0.082007 -0.179702 0.818063 0.794222 0.605837 1.159089 0.345921 0.391112 0.274314 -0.673185 -0.021895 1.417386 -0.587523 1.295033 1.114831 0.012890 0.257562 0.434894 0.420623 -0.107098 0.982839 1.469932 -0.862645 -0.285336 0.021634 -0.413103 -1.403702 0.824974 0.547194 -0.033808 -1.076759 -0.226073 -0.292460 -0.198039 -1.435882 0.608082 2.250221 -0.583649 2.029281 0.965496 1.719275 -0.335734 1.031229 -0.198713 1.528457 0.459414 -1.538444 -0.097307 -2.000990 -1.005479 -0.131483 0.133244 -0.361379 0.191991 0.174696 -0.539815 -1.371104 0.589597 -0.196155 0.263682 -0.986205 0.627995 1.161047 0.460731 -0.358238 -1.548651 -0.806454 0.298994 -1.044024 -0.558887 -0.099473 -0.161539 -0.531611 -0.420042 -1.179832 -0.760742 0.756009 -1.142801 -0.464646 1.103825 -0.944049 0.580269 -0.219759 -0.224363 0.012073 0.654228 0.609421 0.426099 1.151006 -0.943225 -2.350699 0.849998 0.417634 1.143183 -0.255065 0.183097 0.368774 0.385083 -0.265644 0.260376 -0.270960 0.766182 0.842874 -0.509970 -0.788114 -1.071952 0.290201 -0.905554 0.914481 -0.953876 0.160019 -0.409382 1.183743 0.613912 0.593203 1.399941 -1.522151 1.153492 -0.438166 0.733186 0.330015 0.679165 0.598960 -0.634863 -0.753474 0.619894 1.052236 -0.274807 0.586793 -0.965663 0.042427 -0.968524 -0.972861 0.658509 0.032853 -0.041974 1.170150 0.334975 1.732983 -1.560189 0.418656 0.357127 0.310743 0.152128 0.075065 -1.453752 1.228144 -0.007952 0.738069 0.991384 -0.076373 -0.802144 0.010791 0.102281 0.199863 -0.848615 0.602439 -0.973976 -0.397286 -0.592725 0.732110 -0.687046 -0.903230 -0.239347 0.672299 1.490940 0.454203 -1.401654 0.886151 -0.896448 0.626880 -1.669533 1.038948 -0.904350 0.457469 -0.733283 -0.265650 -0.271206 0.449612 0.054313 -0.157039 0.732306 -0.600156 0.946279 1.033160 0.339415 0.332953 0.745338 0.543505 -0.022652 -0.381462 -0.438921 0.683509 -0.016214 0.007003 -0.054323 -0.715776 1.186994 0.133389 -0.411502 0.990459 1.521207 -0.242247 0.669143 0.663266 0.034135 -0.805827 0.344655 0.204089 0.969083 -0.561958 -0.117460 -0.546732 -0.376929 -0.325827 0.654100 -1.354604 -1.271135 0.154531 -1.345600 -0.741704 0.153436 0.473050 0.495113 0.483459 -1.698754 -0.473384 0.370769 -0.414824 0.754090 0.381409 0.693908 0.901535 0.950814 -0.401328 -0.803196 -0.107437 -0.056269 -1.046033 -0.311971 -0.559068 0.765250 -0.873411 1.021800 0.762484 -0.262678 -0.126981 -0.587318 1.726870 -0.691341 1.737673 1.030390 -0.706573 0.396455 0.431630 2.121289 -0.314522 -0.872232 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -0.709330 -2.808490 5.632995 4.351078 -0.654729 1.765043 1.099136 -3.590963 2.732891 0.945712 -1.053491 0.897050 -3.268198 0.422429 -0.581699 1.885317 -3.663821 -2.835809 -1.144235 -2.519810 -1.089660 -2.336047 1.464533 1.716695 1.757366 1.898889 -1.746434 -0.140355 -2.792217 -4.536242 2.589952 -0.419244 2.498026 2.436257 0.462871 -6.894019 3.946199 3.191802 -1.439612 -3.645682 1.419404 -0.692511 -1.861375 -0.048786 -1.248374 1.568886 0.060681 1.731842 1.098998 1.761033 1.154265 0.205904 1.585022 4.562536 -1.008672 3.306767 3.065983 0.240835 0.143033 1.090206 0.623343 0.964978 1.797228 2.583180 -0.648731 -2.010893 0.192010 -1.593050 -4.021736 3.027799 0.016054 -1.792189 -1.866149 -1.754713 -2.002080 -0.322276 -0.548486 2.489823 5.550000 -2.865201 3.556921 1.365183 1.259938 -1.258358 1.366530 -0.408272 3.066902 1.577573 -1.262573 -0.397045 -2.770636 -2.535760 0.412097 0.588310 -2.322397 -2.765944 2.540107 -4.216743 -4.080719 1.768810 1.137688 -1.308513 -3.017349 -0.390122 1.781202 1.020646 -1.499138 -3.389124 -1.660909 1.928678 -0.898015 -1.042609 -1.178253 1.237957 -0.999111 0.089933 -4.539247 0.085888 1.127536 -2.234565 -0.778978 2.736816 -0.949484 1.142458 -0.033924 1.131823 -1.397350 2.896308 0.389304 1.809462 1.898154 0.271181 -1.347902 0.696967 1.607853 1.583783 -1.078185 -1.018893 -0.287797 1.213327 -1.505250 1.430337 -1.323348 1.488640 3.317327 -0.901790 -2.963984 -1.757528 -1.293495 -5.342527 1.119553 -3.389756 -1.525938 1.775099 2.607323 1.556832 1.748091 4.219064 -3.189244 2.131582 -0.501124 0.190526 0.844397 0.013239 1.831409 -1.697905 -3.590300 1.825731 1.164043 0.867267 1.141816 -1.382216 -0.245698 -3.172505 -3.405246 2.044561 0.714373 -0.527848 2.326051 2.586444 4.830486 -2.285988 0.767098 1.532223 -1.086603 0.342577 0.138836 -4.474912 1.223495 0.518586 1.305997 4.523506 -0.137721 -1.580778 1.305894 -0.486158 0.581108 -2.549653 1.847851 -2.893738 0.162508 -2.798862 0.120595 -1.290852 -1.713605 -1.055049 -0.560070 4.404498 -2.653945 -3.768904 4.281334 -0.948911 1.818419 -5.380637 2.872658 -1.738037 2.924864 -0.840064 -0.796886 -0.447536 -1.226316 -1.350309 0.298458 1.117698 -1.194074 1.756994 4.507641 0.791308 0.288410 0.771976 2.777582 -1.154759 1.421715 -2.612599 3.586438 -0.672310 -1.807547 -0.224468 -1.304898 0.525694 -1.995101 0.176716 2.342553 2.571026 0.350668 1.584196 1.904242 2.215151 -2.130209 2.557029 0.771928 1.949175 -1.831935 -0.676750 0.358795 1.017447 -1.186948 2.328778 -4.242646 -4.653459 -4.115749 -4.964651 -1.561764 -0.544178 2.466193 -0.298905 -0.255434 -3.361746 -2.770166 2.932310 -1.442139 3.243145 2.991097 2.568206 3.245698 4.299420 -1.263412 -0.208295 -0.152325 1.288891 -1.641839 -1.104116 -2.255279 2.611581 -0.831782 1.490301 3.467219 -0.131622 1.807363 -1.903898 3.529180 -2.601810 4.978762 1.964073 -1.912894 2.684111 1.523437 2.993913 0.440471 -2.070853 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 0.010941 -4.008740 8.121145 6.432519 -1.235832 2.621429 1.450106 -5.447433 4.905857 -0.299411 -1.494305 1.332134 -5.394814 1.344667 -2.734199 2.289246 -6.001481 -4.391025 -2.155427 -3.460064 -1.621527 -4.106923 2.781673 2.688255 2.819844 4.247710 -2.975550 -0.234714 -5.396891 -4.285063 4.967388 -0.555809 3.527816 3.642876 0.540654 -9.731998 5.403320 5.112636 -1.967039 -5.905030 2.395820 -2.323950 -2.273068 -1.495760 -1.327152 1.603463 -0.728495 4.025189 2.205254 1.506697 0.446552 1.241583 1.254142 6.979292 -2.590721 4.672693 3.936964 1.115314 -0.171402 1.150497 0.946293 2.201603 2.600162 3.871551 -1.692200 -3.414095 -0.029192 -2.661852 -6.055320 4.956955 -0.102985 -1.470561 -3.720960 -2.130633 -3.978177 0.027453 -0.858767 4.591412 8.169634 -4.458406 4.702638 1.155130 1.715872 -1.835077 1.973163 -0.585214 4.343140 2.203881 -1.462755 -1.362515 -6.248425 -2.376658 0.490352 -1.043924 -3.579215 -5.905424 3.661151 -7.615360 -6.219898 1.355764 1.854276 -2.265706 -3.074081 0.149123 2.596181 1.785261 -2.168785 -5.144615 -1.396382 3.073718 -0.472415 -1.671006 -0.702382 1.705418 -1.300964 -1.818295 -6.647635 0.153978 1.206151 -3.049347 -0.283902 4.304796 -2.101590 1.164515 -0.098789 1.414056 -1.840184 4.638343 0.015302 2.060816 2.665414 0.853258 -0.030973 1.368233 2.120825 4.313143 -2.456511 -0.758137 -0.887187 1.613688 -2.584588 0.214044 -2.459467 0.738470 3.357787 -2.408711 -3.993471 -2.274634 -1.954676 -8.009501 0.949141 -4.388627 -2.394931 2.275182 4.099732 3.391933 2.983684 6.681051 -5.027027 2.334314 0.288015 0.119023 2.118407 1.339712 2.634973 -2.530347 -5.751605 2.909100 0.426179 1.334221 0.841546 -0.869056 -0.812072 -4.815573 -3.943021 2.784009 1.818940 -0.292246 4.197070 3.891576 3.209998 -4.237081 1.641370 2.634319 -1.885402 0.816599 -0.029388 -6.784923 2.621928 0.866283 2.327873 6.341176 -0.538319 -2.069119 2.296011 -0.456136 1.534079 -4.199579 1.795136 -4.459878 -1.000893 -5.120369 1.083813 -1.112205 -2.528821 -2.246637 -1.812256 6.470262 -4.097787 -5.258312 6.489872 -0.797589 3.477807 -7.574501 2.524224 -2.662385 4.628967 0.002188 -0.227138 -0.030089 -2.653194 -2.892261 -0.193359 1.959738 -1.838192 2.653718 6.359299 1.421415 0.102477 0.974347 4.104150 -1.576378 2.732982 -4.133629 5.174902 -0.709318 -3.310652 0.785666 -2.177624 0.509740 -3.168895 0.678315 5.581991 4.333226 2.497549 3.603500 2.573561 4.012360 -3.099268 3.500422 0.512524 1.900720 -2.437893 -0.920074 0.705686 1.741634 -1.878872 3.698358 -6.292716 -8.771839 -5.984812 -7.916894 -0.665428 -3.504412 3.027380 -0.734962 -0.608239 -5.502916 -4.552667 2.619293 -2.293357 6.322874 4.137326 3.249727 4.370472 6.475240 -3.658240 0.755525 1.416788 2.596352 -1.948926 -1.654771 -4.230659 4.292537 -1.307931 1.908524 6.385225 -1.089456 2.895620 -3.478737 5.515637 -3.713615 7.913170 2.910220 -3.350528 4.056045 1.615565 5.105712 2.603286 -3.348003 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/trie-suffixes.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/trie-suffixes.cpp__main = 2.875306 -12.127715 27.097414 19.201351 1.283017 8.976715 15.367099 -20.464183 20.680837 7.201356 -4.919066 -3.653808 -20.730362 0.603612 -9.999012 8.512128 -17.085074 -14.674734 -5.301065 -12.502121 -3.672686 -17.775334 17.650358 0.521304 12.437938 7.360600 -6.856541 -7.877944 -16.993738 -15.634598 23.975060 -1.645398 9.874592 9.626487 -4.796987 -31.233020 20.388111 15.081049 -8.226942 -16.743827 8.822416 -0.900406 -10.565269 2.563292 2.206390 4.076963 -2.859850 20.871307 10.170430 10.145397 9.443139 -3.014747 4.475282 27.576103 -12.141019 16.693249 10.242998 6.143792 0.807583 14.567571 3.265951 8.069352 6.974845 18.812250 -0.279955 -5.871463 4.146009 -10.948354 -25.033038 20.275206 -3.353711 -6.108414 -10.895469 -3.468711 -5.041464 3.357774 -13.462287 14.150798 29.184145 -13.170772 19.801847 3.457869 6.071563 -12.257947 -1.421538 -3.482883 7.680363 6.223134 -6.597262 -9.815662 -22.854746 -8.318474 1.897042 -7.160485 -9.730783 -22.474958 15.252135 -12.020652 -20.540698 3.455955 7.543085 -6.791374 -9.399186 6.272256 7.501540 3.790789 -9.014423 -19.464455 -8.630601 9.007585 -7.822857 -1.320286 -2.452779 4.269480 -8.723791 -5.626760 -18.804620 -3.981584 -0.619187 -13.528203 -5.997145 13.329874 -8.681746 4.652240 1.852665 4.726890 -4.679140 10.930239 0.778739 9.782383 16.702032 6.612768 -7.465248 4.984869 12.474767 18.020645 0.143486 2.096756 -3.748527 6.792371 -11.863964 4.828789 -6.790899 -0.644675 12.394695 -11.809178 -13.781397 -2.182020 1.317072 -27.191280 6.945963 -15.424037 -5.925331 2.385954 15.174515 11.154033 9.815754 24.799576 -24.068229 8.396754 -1.614162 0.122220 1.595210 6.016589 9.731942 -7.572938 -19.344165 2.070581 4.506545 1.455962 1.204463 -4.962795 -5.388475 -20.062605 -11.703274 2.633282 3.276285 -9.887790 4.773739 13.457106 12.978176 -19.171689 4.462939 13.864073 -3.375670 0.600689 2.753109 -27.838381 11.040926 0.678140 8.594759 17.865793 0.191795 -6.158569 7.792196 -8.164673 2.239016 -12.553570 2.443563 -15.286191 -6.608583 -16.246496 6.846165 -2.633040 -10.331566 -2.476371 0.028680 18.740750 -4.271284 -14.030962 24.112852 -4.308792 2.183355 -21.172650 20.032944 -7.632733 5.406925 -1.384933 -2.037258 -2.950338 0.904519 -6.314871 -4.173389 1.615752 -4.157358 16.864665 30.083094 4.854244 1.353307 2.465067 16.749398 -8.212910 4.540564 -14.098924 16.190211 -3.864673 -16.566903 1.964218 -8.662606 3.975192 -15.025879 -0.226155 24.799108 17.179417 2.041938 14.587518 3.570038 15.595064 -9.623492 14.950950 7.605736 9.960966 -5.771908 -2.109130 6.239169 0.639361 -11.775915 15.621589 -21.021074 -28.985099 -10.193497 -29.001126 -3.256272 -15.840302 12.626168 -5.085789 0.194467 -20.337589 -14.920379 3.772290 -9.144696 11.130092 14.409370 11.446954 12.678620 24.250201 -13.570935 8.532765 3.960236 11.845907 -9.680498 -11.840774 -8.524356 13.551040 -6.311163 6.533341 17.002285 0.294013 6.700361 -15.521818 18.274185 -15.978637 23.136162 9.328510 -2.938687 15.905470 2.568630 23.598496 11.797011 -9.267157 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::SuffixTrie(std::__cxx11::basic_string, std::allocator >) = -1.433067 -3.241683 4.424914 3.117825 -0.148228 1.879673 1.958481 -2.582501 2.951574 1.072475 -1.306351 0.700040 -3.397404 -0.200683 -0.681815 0.926162 -2.588324 -2.993497 -0.123848 -1.704258 -0.743921 -2.957272 0.873217 1.813345 1.075036 1.300560 -0.874367 -0.231031 -3.359618 -3.559618 2.662817 -0.601099 2.015161 1.989216 0.386191 -6.351827 2.916932 2.599106 -1.072559 -3.803486 0.798648 -0.641127 -1.457736 0.438177 -0.351380 1.385099 0.903343 2.502062 0.653276 1.452718 1.186907 -1.100147 0.850424 4.516862 -1.065728 3.355870 3.366106 0.420524 0.454868 1.335694 0.550362 0.072707 1.752637 3.285203 -1.237215 -0.680308 0.625057 -1.460513 -4.126006 2.488769 0.424328 -1.122709 -1.755430 -1.278934 -1.488944 -0.415351 -0.997356 1.594989 5.869431 -2.256977 4.622579 1.839821 2.546051 -1.426509 1.474918 -0.460167 2.795046 1.245727 -2.508358 -0.368652 -3.667027 -1.898705 -0.328187 0.876786 -1.495298 -1.630694 2.158158 -2.920279 -3.848521 1.733419 0.133408 -0.543991 -2.518397 0.566053 1.990855 0.961303 -1.794005 -3.880134 -2.412414 1.577563 -1.794302 -0.678300 -0.561699 1.221909 -1.047442 -0.572005 -3.655808 -0.925200 1.545653 -3.002551 -0.991482 2.639156 -1.591806 2.156738 0.334329 0.662025 -0.616505 2.262809 1.509652 0.937611 2.260967 -0.976814 -2.936612 0.725175 1.131916 2.530943 -0.760977 -0.624816 0.733384 1.098137 -0.591264 1.027278 -1.040461 1.226377 2.587741 -1.054267 -2.442261 -1.980584 -0.352249 -4.398055 1.539765 -3.254310 -0.971818 0.771541 2.344653 1.297968 1.059410 4.226219 -3.183108 2.778974 -0.660369 0.396746 -0.049545 0.450832 1.844412 -1.526304 -3.213508 1.210302 1.672092 0.415903 1.188551 -2.214072 -0.442424 -3.058334 -3.365955 1.469806 0.521179 -0.657923 2.104797 1.915738 4.846281 -2.976906 0.635033 0.959417 -0.320455 0.279174 0.168232 -4.370951 1.864929 0.261526 1.111456 3.508517 0.001391 -1.647198 1.278114 -0.529033 0.450186 -2.518042 1.823934 -2.797342 -0.389606 -2.471114 0.759922 -1.421574 -1.862154 -0.811970 0.380521 3.926154 -1.510899 -3.571819 3.214854 -0.694294 1.891287 -4.986336 3.083509 -1.549751 2.628642 -1.196624 -0.729277 -0.636199 -0.089275 0.141572 -0.132772 0.942463 -1.217936 2.396801 3.990172 0.523130 0.789261 1.684341 2.493341 -0.831771 -0.165985 -2.142520 2.443947 -0.436823 -1.988203 0.122299 -1.435643 1.681132 -0.993174 -0.047674 2.386986 3.398373 -0.694420 1.772775 1.898803 0.955692 -1.717843 1.531251 0.882921 2.669269 -1.726230 -0.358074 -0.643487 0.459930 -1.169424 2.088055 -3.848703 -4.335343 -2.356157 -4.844403 -1.949458 -0.552240 2.114092 0.394565 0.571423 -3.848953 -1.935043 2.178870 -1.361210 2.933668 2.483996 2.661917 3.134188 3.836970 -0.965128 -0.875894 0.304325 1.276753 -2.528326 -0.811515 -1.604394 1.410871 -1.492777 2.125068 2.360827 0.219504 0.876424 -1.859777 3.693929 -2.575203 4.771345 2.412767 -1.811159 2.279426 1.055120 3.714134 0.291308 -1.814741 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/trie-suffixes.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.197217 -1.643680 3.364608 2.740497 -0.229750 1.188232 0.623731 -2.539664 2.675320 0.491208 -0.076797 0.526287 -2.100922 0.989685 -1.411578 1.480065 -2.296461 -1.982242 -1.050079 -2.059564 -1.395553 -1.821714 0.930406 0.521837 1.165437 0.157683 -1.652877 -0.259496 -2.498904 -1.456158 2.051302 -0.491221 1.263210 -0.460181 0.161313 -5.360150 2.403322 1.860522 -0.925574 -2.362925 0.686496 -1.519070 -0.154445 -0.762420 -0.642190 0.092719 -0.484321 1.065720 1.658174 0.483935 0.956695 1.131702 -0.062911 4.905769 -1.983262 2.011556 0.973257 0.373709 -0.620048 0.973054 0.545103 0.996032 1.309800 1.425086 -0.536053 -1.766751 -0.188983 -1.008257 -2.408092 2.245183 -0.072602 -0.883159 -1.702413 -0.672964 -2.039756 -0.746987 -1.586103 1.950118 3.466941 -2.336400 1.803086 0.322161 0.964933 -0.025605 1.370466 -0.269027 2.649614 0.694654 -0.983091 -0.392417 -1.810917 0.032882 0.238403 -0.354231 -1.313079 -3.351133 1.501806 -2.490741 -2.857759 0.969470 0.950236 -0.327403 -2.022749 -0.552342 1.294278 0.645918 -1.551765 -2.620385 -1.154934 1.313934 0.277167 -0.919750 0.381948 -0.867840 -0.241673 -1.307916 -2.811860 -0.293959 0.429969 -1.273996 -1.210426 2.318287 -1.243130 0.054008 -0.072287 0.790467 -0.910981 2.127813 -0.460945 1.459666 0.225161 0.552904 -2.126361 0.275229 0.857070 1.881379 -0.468913 0.240858 -0.912135 0.725716 -1.637367 0.448576 -0.736580 0.791716 1.493497 -0.837830 -1.757749 -0.688505 0.097296 -3.170072 0.522782 -1.962602 -1.186008 0.615855 1.948612 2.152849 1.489769 2.768998 -1.843506 1.489487 -0.194032 -0.086320 1.739145 -0.143766 1.356504 -1.216707 -2.328645 0.997572 0.466114 0.597916 0.369722 -0.565086 -0.254737 -2.032436 -1.124676 0.396274 1.106529 -0.386679 1.883177 1.526428 2.239478 -3.204871 1.120996 1.267961 -0.796275 0.705542 -0.440833 -2.827540 0.862895 0.702615 0.094753 2.334760 -0.416500 -1.322559 0.747176 -0.442620 1.108414 -1.686630 0.276497 -1.786543 -0.858070 -2.016784 0.361141 -0.807905 -0.761226 -1.005519 -1.126979 2.773429 -2.420797 -2.140816 3.308420 -0.400394 1.294080 -3.256957 2.248360 -1.241831 1.805442 -0.789560 0.050177 -0.300075 0.791822 -1.402116 0.748312 1.153893 -1.199414 1.055220 3.431007 0.655780 0.785393 0.170475 2.214055 -0.528886 1.146736 -1.490925 2.872177 -0.349064 -1.489373 0.242937 -1.159777 0.271539 -1.191528 0.842336 2.258762 1.965283 0.873309 1.287501 1.737226 1.752639 -1.261497 1.673310 -0.226871 0.609366 -1.123742 -0.057018 0.529803 0.593589 -0.959633 1.193807 -2.742619 -3.366562 -2.716159 -2.554427 0.330703 -0.703596 0.376562 -0.555365 -0.345643 -2.590215 -1.805092 1.330081 -1.260971 1.886835 1.520559 1.392458 1.830891 3.037335 -1.593817 0.203397 0.291985 0.234142 -0.465140 -0.885024 -1.737374 2.087346 -1.277984 0.993179 2.480806 -0.370037 1.046807 -0.035265 1.665858 -1.452587 3.218765 1.185927 -0.850880 1.992754 1.747601 3.026402 0.994867 -1.449368 -PE-benchmarks/trie-suffixes.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.592846 -4.006603 8.322105 6.783790 0.043351 2.724177 2.552574 -6.490439 6.081957 2.177849 0.110406 1.324856 -5.582094 2.390964 -3.832957 4.135394 -4.606801 -4.859233 -2.893483 -5.163775 -2.961563 -4.283977 3.518078 0.927603 3.463395 -0.282391 -4.013577 -1.768087 -6.458651 -5.317348 4.745494 -0.807738 3.410700 -1.635077 -0.653878 -12.040709 5.956545 5.247331 -2.508413 -5.607268 2.666387 -2.773742 -1.312912 -0.551397 -1.315652 0.466267 -1.466058 1.858131 3.873695 2.212529 3.621099 3.133894 0.836187 11.069281 -4.847330 5.172950 2.537917 1.406843 -1.481138 2.646659 1.090671 2.816613 3.020945 3.393971 -0.654402 -4.190348 -0.593841 -1.975956 -6.513299 5.334166 -0.866291 -2.671659 -3.868565 -1.524834 -4.144711 -1.261170 -2.625270 3.963291 8.336340 -5.217819 4.467757 0.603046 1.150728 -1.227073 2.234617 -0.867111 4.802182 1.788995 -1.590902 -1.849107 -3.941923 0.165302 0.277373 0.372850 -3.642380 -7.537312 4.665333 -4.853569 -7.016052 2.110976 2.490900 -1.527831 -5.227839 -0.935925 2.275899 1.806360 -3.657631 -6.406589 -3.301204 3.319180 1.363711 -2.348819 0.217892 -2.056399 -1.069275 -2.418726 -6.787515 -0.592683 0.697240 -3.572702 -3.672688 4.884956 -2.714468 0.536409 0.101958 2.617831 -2.298090 4.485896 -0.938916 4.118773 1.765139 1.805071 -4.987030 0.171494 2.506289 4.418312 -1.382249 0.898351 -2.732097 1.589193 -3.508952 1.889529 -1.840995 1.726366 4.708987 -2.132755 -4.314421 -1.031580 0.804930 -7.815237 1.466778 -5.052635 -2.354047 0.971575 4.375901 3.790980 3.449911 7.826887 -4.643015 3.445434 0.226303 -0.775893 3.746337 -0.867368 3.182507 -2.830747 -6.512558 2.305454 1.636096 1.140012 0.578084 -0.435665 -0.826987 -5.177888 -3.118352 0.723040 1.880586 -1.853593 4.094907 3.760470 6.352292 -6.840039 2.450705 3.161754 -2.415056 1.844932 -1.145705 -7.566939 1.739413 1.488070 0.555164 6.320464 -0.695701 -3.210436 2.780436 -1.646667 2.309293 -4.187586 1.782742 -4.837721 -1.972146 -5.018615 -0.156224 -1.074426 -1.912828 -1.751825 -1.932415 6.657524 -4.646216 -5.300054 7.620846 -0.740541 1.703497 -8.548789 6.422035 -2.720213 3.326154 -1.790268 0.273420 -0.731088 2.368439 -3.377641 1.048985 2.440810 -2.834055 3.487168 9.420082 1.157966 1.141772 0.196972 5.398776 -1.506668 3.032384 -3.969603 7.366027 -0.808576 -4.325735 0.399235 -2.599075 0.392256 -3.885885 1.385072 5.424056 4.567010 1.104575 2.780152 3.849352 5.183498 -2.971282 5.309390 0.113827 1.887014 -2.461789 -0.059750 1.734064 1.226552 -2.505960 3.904236 -6.502864 -8.072828 -5.374468 -7.618133 1.142893 -1.832972 1.963694 -1.935055 -1.173254 -6.408654 -4.971564 2.980884 -2.964596 4.622980 4.341374 3.825691 4.326740 7.357578 -3.696038 1.578754 -0.156560 1.076288 -1.076181 -3.305013 -2.711156 4.303314 -2.357926 1.957515 5.474638 -0.199011 2.974050 -1.037928 3.598524 -3.665389 8.030932 2.589041 -1.125931 5.836319 3.435246 7.385593 1.684032 -3.137071 -PE-benchmarks/trie-suffixes.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/trie-suffixes.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/trie-suffixes.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/trie-suffixes.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/trie-suffixes.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/trie-suffixes.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -3.985427 -8.668414 10.196952 8.689978 2.312040 6.011688 3.418401 -4.397154 5.600643 7.038306 -3.914218 4.503418 -6.137603 -1.643690 -0.931902 3.108330 -3.584466 -6.787660 0.426827 -1.829937 -1.224148 -6.518350 -1.192265 5.413962 2.655913 2.246494 -3.758878 0.571668 -9.270040 -12.102665 1.772377 -0.873074 4.666270 0.561119 1.045422 -13.423289 8.181395 9.865660 -1.265484 -9.714181 1.324498 -1.389909 -3.682593 3.005060 -1.149270 4.210215 2.770491 2.841862 -0.356427 3.913329 3.445615 -1.359343 4.967461 10.783423 0.996582 9.524769 8.909847 1.146038 1.575899 2.065137 2.353572 -0.236919 4.868568 6.058077 -2.294952 -1.234687 0.481043 0.225203 -8.501358 3.660865 0.283295 -4.979892 -3.135049 -2.841503 -3.632475 -0.541356 -0.208910 1.725590 13.193881 -3.576015 12.278395 5.327182 6.775317 -1.794968 4.271742 -1.537843 6.022734 3.948830 -5.930663 -1.097911 -7.105263 -4.449099 0.088465 4.276294 -6.575107 -1.066385 4.747694 -6.760103 -9.457635 4.817519 -0.570610 -2.287616 -5.533935 0.289048 5.072588 2.349245 -2.571003 -8.528860 -6.196625 4.553521 -4.739462 -4.061296 -2.674372 0.711221 -1.432814 1.887708 -7.711428 -1.088905 5.557972 -6.158136 -2.702148 6.284849 -2.759456 5.388558 -1.682543 0.973053 -0.553287 2.744636 3.581509 3.067069 3.365422 -2.333503 -8.345364 1.816283 1.766319 1.398469 -3.906470 -1.358889 2.749900 3.095832 1.224118 5.811970 -4.010038 4.663980 6.935318 -0.255177 -4.834046 -6.929822 -2.307755 -8.235017 3.378304 -5.312605 -3.580126 0.815136 6.444745 0.236429 1.800878 8.542625 -7.256410 5.975191 -0.564488 1.633408 -0.138615 -2.161313 2.576811 -3.988118 -7.480929 5.153089 7.113676 0.987004 2.787200 -3.344617 -0.373164 -4.002919 -6.519934 4.635373 -0.344632 0.348865 6.577738 3.909931 15.945937 -5.276825 0.917945 0.221843 -1.154706 1.474744 -0.884124 -9.844450 2.913855 0.953144 4.469762 11.151239 0.271444 -3.952245 2.995535 -0.258927 0.175618 -6.418131 8.457339 -6.817579 -0.465826 -2.782644 -0.812041 -3.375633 -3.534238 -4.018423 0.438839 9.486711 -3.717848 -9.075754 5.122220 -1.311299 1.957424 -11.006122 7.691031 -4.509294 6.302281 -1.730137 -2.476453 -0.417659 0.113080 -0.015249 0.046073 3.401856 -4.208176 5.940999 7.677011 0.764726 0.972688 2.886057 2.776547 -2.168393 -0.649351 -5.178603 4.876048 0.020908 -3.395614 -1.894267 -3.559368 5.025023 -1.212838 -2.746254 1.164803 7.626939 -3.267600 0.421847 4.530507 1.218978 -4.985833 4.233295 2.148523 5.851483 -3.950822 -1.711045 -2.950106 0.653814 0.127085 4.803827 -9.385122 -5.952670 -5.968186 -10.747283 -3.959776 1.305933 4.843110 1.464833 0.765545 -9.656843 -6.221754 8.538695 -2.591052 6.918972 5.796139 6.590348 6.924141 5.434396 -0.145601 -1.887418 -2.452737 0.329655 -5.535539 -2.766724 -1.713510 4.106669 -2.461107 5.877743 4.058698 0.152855 3.014978 -2.333698 3.792524 -5.208421 11.579481 5.466042 -4.750020 2.551033 1.056229 10.360780 -6.476055 -5.452666 -PE-benchmarks/snake-ladder.cpp__std::queue > >::queue >, void>() = 0.060676 -0.456717 0.944534 0.770424 -0.203297 0.231036 -0.081087 -0.524392 0.737878 0.017509 -0.221921 0.184805 -0.457092 0.325151 -0.257642 0.500179 -0.871054 -0.513470 -0.126933 -0.341204 -0.389668 -0.483396 0.205974 0.095416 0.267665 0.513612 -0.431568 0.170662 -0.341672 -0.435148 0.511093 -0.300232 0.298949 0.288022 0.216337 -1.288208 0.659647 0.297138 -0.228350 -0.685815 0.033329 -0.361281 0.081712 -0.472317 -0.154313 0.171244 0.055955 0.473019 0.418505 0.161417 0.002235 0.060252 0.075861 1.079785 -0.375056 0.412956 0.324436 0.000519 -0.077563 0.027235 0.271066 0.156384 0.300155 0.503211 -0.135606 -0.478107 -0.177245 -0.415257 -0.531218 0.628259 -0.067271 0.047479 -0.621305 -0.255153 -0.499256 -0.148704 -0.966445 0.680545 1.037373 -0.676762 0.451040 0.202434 0.473076 0.092191 0.327354 0.026504 0.732174 0.285536 -0.397311 0.124043 -0.218044 -0.223354 0.154503 -0.315586 -0.220738 -0.885695 0.251281 -0.891921 -0.638479 0.327497 0.242810 0.100441 -0.276462 -0.136474 0.451138 0.229286 -0.398484 -0.591786 -0.038941 0.064110 0.076965 -0.176456 0.140277 0.000826 -0.095269 -0.178450 -0.816999 -0.166183 0.094070 -0.382804 0.106450 0.559223 -0.153437 0.011498 -0.105547 0.040483 -0.182736 0.823533 0.042695 0.407034 -0.128955 0.224519 -0.383379 0.349135 0.318246 0.298524 -0.152827 0.009316 -0.142655 0.169624 -0.476376 -0.143147 -0.238845 0.135320 0.432842 -0.227916 -0.609654 -0.337394 -0.313889 -0.904663 0.180789 -0.555335 -0.250107 0.374926 0.557501 0.619409 0.498625 0.642256 -0.628035 0.256800 -0.229421 0.121849 0.441827 0.228918 0.361730 -0.281847 -0.410708 0.390987 0.126453 0.119189 0.280164 -0.431182 0.077453 -0.519258 -0.118783 0.487677 0.446228 -0.042473 0.454804 0.258991 0.265592 -0.530623 0.188532 0.399198 0.028073 0.056088 0.016864 -0.685218 0.466850 0.055741 0.219963 0.298006 -0.102864 -0.230300 0.136212 -0.112846 0.272332 -0.381661 -0.089514 -0.356887 -0.123740 -0.523048 0.466751 -0.288587 -0.155967 -0.171546 -0.208266 0.732355 -0.746914 -0.305962 0.793901 -0.149240 0.578242 -0.550724 0.365833 -0.384267 0.724423 -0.110630 -0.057328 -0.004000 -0.224310 -0.237114 0.046062 0.380143 -0.058278 -0.033271 0.546649 0.266825 0.106382 0.176585 0.562742 -0.082163 0.345271 -0.145847 0.533693 -0.084532 -0.134811 0.122661 -0.284972 0.038384 -0.232134 0.207618 0.681385 0.433463 0.378109 0.559697 0.255261 0.403284 -0.446551 0.230914 -0.101625 0.284615 -0.414277 -0.054546 0.028311 0.308824 -0.352326 0.198221 -0.672992 -0.928349 -1.017136 -0.342433 -0.295201 -0.172755 0.090006 -0.174838 -0.014783 -0.373403 -0.377535 0.614216 -0.310947 0.383493 0.291214 0.196558 0.508402 0.735426 -0.406234 -0.255731 0.090599 0.023011 -0.076064 0.131397 -0.688417 0.587664 -0.457253 0.127516 0.772152 -0.334697 0.081929 0.082276 0.628415 -0.325027 0.822617 0.396719 -0.369397 0.414195 0.512800 0.724194 0.418215 -0.460097 -PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = 0.315140 -1.009878 2.536215 2.266617 -0.264892 0.735546 0.023571 -1.877530 1.681818 0.943617 -0.186681 0.603589 -1.100091 0.833122 -0.620187 1.668906 -1.780951 -0.993988 -0.770747 -1.357847 -1.032370 -1.013413 0.631106 0.130961 0.986821 0.562341 -1.225292 0.074245 -0.945169 -2.121341 0.828920 -0.346338 0.816161 -0.213832 0.316608 -3.257919 1.995884 1.387766 -0.663871 -1.669288 0.439680 -0.697517 -0.259807 -0.347079 -0.403298 0.422958 -0.374575 0.657641 1.105308 0.752254 0.754719 0.895679 0.839895 2.978959 -0.933587 1.373605 0.726048 0.098535 -0.303472 0.494309 0.531520 0.785140 0.760101 0.832450 0.152789 -1.488465 -0.458690 -0.414308 -1.338884 1.534677 -0.259070 -0.907407 -1.374287 -0.757050 -1.043974 -0.334637 -2.247120 1.471491 2.258303 -1.542338 0.986004 0.345858 0.337288 0.018750 0.856778 -0.225675 1.808818 0.687580 -0.468448 0.005826 -0.081238 -0.625255 0.654378 -0.335023 -1.147653 -2.422049 0.971359 -1.780987 -1.832750 0.877872 0.919802 -0.358046 -1.132560 -0.689638 0.827903 0.395578 -0.848992 -1.516929 -0.429551 0.671353 0.404304 -0.800768 -0.081603 -0.481103 -0.129241 0.122910 -2.018687 -0.010016 0.278959 -0.638230 -0.551011 1.343600 -0.016127 -0.188744 -0.318421 0.486026 -0.565748 1.521623 -0.409242 1.556674 -0.103189 1.085412 -1.122858 0.882993 0.870770 -0.149033 -0.291023 0.190719 -0.708222 0.581447 -1.154707 0.777170 -0.751821 0.814478 1.528849 -0.245740 -1.379418 -0.572396 -0.484016 -2.052654 0.498526 -1.251089 -0.914157 0.410435 1.371984 1.037880 1.131853 1.222902 -1.470230 0.490895 -0.230907 0.232485 1.287511 -0.063397 0.787467 -0.792762 -1.394052 0.944706 0.620785 0.343152 0.352873 -0.287422 0.077808 -1.047504 -0.377336 0.888091 0.717326 -0.351325 1.266946 1.008832 2.278094 -1.200679 0.570924 0.933914 -0.533738 0.386922 -0.275188 -1.876050 0.586918 0.378767 0.688408 1.653877 -0.281993 -0.512401 0.476094 -0.333742 0.585707 -0.979811 0.353378 -1.138165 -0.360460 -1.057900 0.377769 -0.460338 -0.358277 -0.520142 -0.509158 1.928738 -1.857374 -1.014766 2.346105 -0.802115 0.532376 -1.720934 1.809045 -0.861596 0.884621 -0.490972 -0.178706 -0.055314 0.079886 -1.176630 0.444175 0.895831 -0.532806 0.302635 2.088504 0.455176 0.152869 -0.086589 1.343730 -0.538360 1.090567 -0.907459 2.098058 -0.219740 -0.357799 -0.241032 -0.684678 -0.111025 -1.042905 0.341859 1.281821 0.767699 0.512725 0.541365 0.805498 1.364530 -1.047899 1.615065 -0.117137 0.220049 -0.935017 -0.174040 0.545359 0.387519 -0.661950 0.870442 -1.822645 -1.619006 -2.285718 -1.051676 -0.219576 -0.049552 0.609444 -0.610838 -0.469968 -1.220945 -1.497290 1.882948 -0.732362 0.290813 1.045509 0.788592 1.138226 1.834597 -0.525181 0.247672 -0.637099 -0.184104 0.011535 -0.609920 -0.889008 1.619759 -0.692088 0.382618 1.678302 -0.387897 0.807225 0.037913 0.982849 -0.898764 1.857573 0.648041 -0.380751 1.156936 1.491178 1.819281 0.123650 -1.064146 -PE-benchmarks/snake-ladder.cpp__std::queue > >::empty() const = 0.040559 -0.493089 0.949800 0.838483 -0.255501 0.304300 -0.071798 -0.541112 0.576700 0.174246 -0.180134 0.226929 -0.408710 0.202676 -0.070496 0.466703 -0.713713 -0.348269 -0.198079 -0.419745 -0.360864 -0.353417 -0.004183 0.205368 0.288775 0.502514 -0.335178 0.119671 -0.304865 -0.549785 0.278293 -0.128232 0.310938 0.292606 0.311749 -1.228450 0.619067 0.517743 -0.188462 -0.732097 0.048634 -0.290229 0.027365 -0.215007 -0.172044 0.228149 -0.005898 0.317875 0.286258 0.214443 0.039887 0.118633 0.298232 0.992505 -0.126826 0.493077 0.410574 -0.031608 -0.056830 0.044061 0.229728 0.140288 0.264036 0.242682 -0.034619 -0.490812 -0.222107 -0.259100 -0.434480 0.457680 -0.048430 -0.313292 -0.533546 -0.466256 -0.406074 -0.198758 -1.207004 0.627030 0.851517 -0.697099 0.462828 0.225849 0.254321 0.089699 0.418295 -0.034776 0.669965 0.272417 -0.236317 0.263857 -0.012759 -0.383920 0.261393 -0.259023 -0.463341 -0.847335 0.354796 -0.750062 -0.675758 0.421335 0.276509 -0.072027 -0.299947 -0.223322 0.256899 0.228161 -0.376973 -0.513401 -0.087597 0.231432 0.155140 -0.258117 -0.059869 0.093828 -0.043349 -0.054227 -0.766546 0.055118 0.241674 -0.244873 0.039537 0.564014 0.012276 0.041083 -0.137198 0.051810 -0.178572 0.823456 0.015540 0.405728 -0.166511 0.281462 -0.371467 0.403263 0.259703 0.030077 -0.145047 -0.019979 -0.035584 0.212215 -0.291169 0.183366 -0.234536 0.286294 0.541126 -0.052199 -0.500968 -0.385485 -0.419090 -0.782783 0.143936 -0.454774 -0.227258 0.380709 0.496888 0.549135 0.318998 0.467420 -0.561687 0.082271 -0.172916 0.067589 0.352625 0.266574 0.301098 -0.310791 -0.413158 0.389503 0.192498 0.180835 0.266885 -0.222805 0.074430 -0.344926 -0.090652 0.505976 0.350749 -0.065260 0.558836 0.421529 0.625823 -0.314476 0.097466 0.194322 -0.175871 0.095194 -0.031384 -0.647472 0.286384 0.110030 0.199476 0.498862 -0.139231 -0.025529 0.168331 -0.152345 0.179428 -0.368578 0.115804 -0.413068 -0.107872 -0.424820 0.312787 -0.293838 -0.153210 -0.267222 -0.223274 0.757700 -0.721586 -0.245665 0.718040 -0.198832 0.363904 -0.480559 0.534293 -0.322896 0.554608 -0.170329 -0.164689 0.010523 -0.179968 -0.252252 0.056942 0.356194 -0.137722 -0.100814 0.591629 0.168573 -0.039077 0.109071 0.494080 -0.230548 0.362764 -0.299567 0.634980 -0.080263 0.015194 0.002509 -0.249995 -0.008518 -0.254943 0.089823 0.589661 0.283856 0.282322 0.203011 0.259965 0.299451 -0.386830 0.397480 -0.040784 0.204574 -0.428081 -0.084869 0.059369 0.308404 -0.146328 0.125559 -0.696048 -0.643792 -0.939170 -0.232268 -0.257649 0.006210 0.172507 -0.118479 -0.153987 -0.343636 -0.557212 0.749854 -0.292031 0.163676 0.272620 0.284413 0.539861 0.636119 -0.147146 -0.083879 -0.051491 -0.037472 -0.023535 0.016290 -0.447475 0.568779 -0.318233 0.127694 0.703321 -0.179538 0.297201 0.101045 0.561931 -0.374362 0.689032 0.268354 -0.379135 0.338814 0.697791 0.566288 0.057529 -0.430053 -PE-benchmarks/snake-ladder.cpp__std::queue > >::front() = 0.004164 -0.389540 0.788069 0.732362 -0.197920 0.219280 -0.010957 -0.486578 0.537064 0.043006 -0.067740 0.120376 -0.464843 0.242107 -0.010516 0.409510 -0.640809 -0.366944 -0.223083 -0.368402 -0.288645 -0.363734 0.204346 0.141243 0.284031 0.416548 -0.354060 0.025549 -0.336464 -0.279675 0.434062 -0.146213 0.372373 0.421292 0.155327 -1.145742 0.521872 0.386394 -0.176365 -0.554625 0.103973 -0.304859 0.092346 -0.323354 -0.185231 0.168853 -0.072578 0.154157 0.374178 0.120452 0.068908 0.098532 0.109174 0.742893 -0.300330 0.356030 0.201581 -0.055154 -0.124731 -0.029489 0.172980 0.205242 0.313030 0.285288 -0.127076 -0.480843 -0.175493 -0.330898 -0.559053 0.469983 -0.057493 -0.089155 -0.509978 -0.308032 -0.316285 -0.170208 -0.638560 0.556661 0.748773 -0.556960 0.367418 0.095043 0.143177 -0.013026 0.286882 -0.001595 0.513557 0.190784 -0.181123 0.152881 -0.136440 -0.254808 0.162373 -0.099602 -0.299342 -0.552297 0.270133 -0.483776 -0.559158 0.243706 0.256556 -0.015682 -0.434411 -0.129600 0.204879 0.247094 -0.300395 -0.492063 -0.076140 0.151602 0.208643 -0.211802 -0.102278 0.034567 -0.163385 -0.267884 -0.667477 -0.034486 0.058572 -0.273020 0.005848 0.456804 -0.210137 -0.027891 -0.076344 0.093539 -0.223022 0.737343 -0.049067 0.345121 0.026068 0.109875 -0.258979 0.092921 0.237609 0.447529 -0.123909 -0.099394 -0.199879 0.103297 -0.364714 -0.010691 -0.009125 0.171148 0.529976 -0.136886 -0.430671 -0.187439 -0.260972 -0.819703 0.119489 -0.452760 0.023452 0.423348 0.427252 0.454185 0.369437 0.672041 -0.494523 0.170301 -0.120572 -0.055473 0.423470 0.337270 0.293656 -0.260039 -0.388714 0.335359 0.042831 0.148214 0.210766 -0.143606 0.019275 -0.390331 -0.162846 0.368028 0.267396 -0.035300 0.397601 0.305726 0.408220 -0.341951 0.183689 0.291305 -0.079401 0.101621 0.017125 -0.566321 0.287782 0.057030 -0.018356 0.360020 -0.135420 -0.165831 0.142046 -0.145567 0.213720 -0.377769 0.083119 -0.344316 0.002359 -0.524965 0.146368 -0.178989 -0.200114 -0.150284 -0.103121 0.648976 -0.434647 -0.290698 0.627159 -0.080036 0.382807 -0.536705 0.425709 -0.296842 0.505576 -0.230500 -0.132089 0.014119 -0.143437 -0.238299 0.009686 0.292967 -0.078717 -0.083213 0.600589 0.181808 -0.061690 0.057117 0.461097 -0.034728 0.415132 -0.205947 0.589744 -0.033974 -0.014305 0.103766 -0.231409 -0.023279 -0.265021 0.054093 0.629881 0.393090 0.327161 0.319862 0.205386 0.384874 -0.319579 0.312763 -0.011254 0.208091 -0.278807 -0.044147 0.129989 0.351825 -0.208130 0.172424 -0.552472 -0.775687 -0.571017 -0.369190 -0.161398 0.003810 0.137912 -0.108408 -0.105442 -0.303497 -0.403180 0.380563 -0.271440 0.509283 0.174456 0.205448 0.425486 0.607725 -0.332353 -0.109658 0.076535 0.057940 0.011433 0.049505 -0.497874 0.510874 -0.299755 0.069628 0.654906 -0.216463 0.204996 -0.030421 0.622700 -0.312235 0.703530 0.209055 -0.268293 0.491463 0.427282 0.484301 0.272322 -0.340321 -PE-benchmarks/snake-ladder.cpp__std::queue > >::pop() = 0.308409 -0.736084 1.910562 1.694404 -0.342024 0.537519 -0.097750 -1.394206 1.252630 0.679007 -0.258790 0.315642 -0.782260 0.535435 -0.284503 1.221054 -1.424334 -0.634835 -0.549863 -0.963952 -0.700468 -0.784629 0.462603 0.111190 0.698332 0.732591 -0.782254 0.213670 -0.379789 -1.680992 0.644330 -0.258090 0.606762 0.231291 0.337148 -2.277412 1.527052 0.987434 -0.463243 -1.248247 0.231716 -0.341158 -0.259953 -0.207910 -0.348124 0.444066 -0.258678 0.635348 0.751648 0.598612 0.464314 0.430409 0.767267 1.940098 -0.512563 0.971354 0.531467 0.015591 -0.137741 0.325872 0.411776 0.583204 0.494581 0.692992 0.213224 -1.053083 -0.291132 -0.326091 -1.022530 1.184530 -0.268465 -0.692093 -1.027595 -0.691319 -0.627398 -0.149462 -1.913073 1.170421 1.691962 -1.095355 0.729157 0.335060 0.198023 -0.066435 0.508969 -0.194149 1.307727 0.545042 -0.342935 0.126763 0.141369 -0.748020 0.585452 -0.394953 -0.866682 -1.699459 0.704101 -1.395412 -1.261381 0.652770 0.713030 -0.279192 -0.706829 -0.496604 0.597720 0.262724 -0.544057 -1.027372 -0.182358 0.441631 0.252690 -0.511321 -0.195098 -0.033708 -0.126221 0.283017 -1.484679 -0.034669 0.169929 -0.471063 -0.143963 0.906919 0.125588 -0.135797 -0.228810 0.301976 -0.352615 1.221792 -0.222098 1.173124 -0.078062 0.901679 -0.508354 0.794073 0.666444 -0.323405 -0.103539 0.036977 -0.387907 0.441969 -0.849177 0.568524 -0.607874 0.475690 1.210375 -0.122437 -1.019793 -0.428552 -0.617913 -1.591885 0.373134 -0.965162 -0.643848 0.478656 0.992932 0.773012 0.802012 0.823720 -1.262457 0.216523 -0.269115 0.213339 0.789461 0.162185 0.539831 -0.537219 -0.936537 0.702202 0.432035 0.260109 0.333821 -0.354747 0.051098 -0.733971 -0.231372 0.909113 0.519538 -0.237750 0.828581 0.752189 1.637061 -0.595210 0.359416 0.711025 -0.312969 0.203459 -0.080479 -1.401761 0.501349 0.186753 0.673378 1.112304 -0.225748 -0.148002 0.311648 -0.316250 0.335895 -0.724618 0.242180 -0.818851 -0.125720 -0.796002 0.414258 -0.368371 -0.266542 -0.304672 -0.238988 1.376458 -1.362042 -0.612975 1.771434 -0.639780 0.438262 -1.028811 1.217138 -0.601620 0.705574 -0.314443 -0.218950 -0.023729 -0.289833 -0.739084 0.169369 0.604833 -0.203256 0.101826 1.412734 0.327191 -0.050618 -0.005852 0.981117 -0.459891 0.832524 -0.657760 1.431959 -0.128862 -0.100319 -0.210926 -0.496951 -0.137492 -0.829467 0.173921 0.991955 0.536373 0.378757 0.438128 0.399575 0.917824 -0.752011 1.193930 0.006456 0.158055 -0.720521 -0.149533 0.440022 0.375414 -0.572917 0.617228 -1.316459 -1.186964 -1.814553 -0.632720 -0.455198 -0.096513 0.594617 -0.442793 -0.331719 -0.654050 -1.128837 1.589527 -0.500769 0.136446 0.691709 0.554243 0.827160 1.349212 -0.303334 0.150903 -0.475874 -0.096799 -0.020446 -0.337100 -0.674311 1.221235 -0.447731 0.202572 1.292031 -0.331678 0.569440 -0.078592 0.819692 -0.714883 1.258011 0.482950 -0.286441 0.805040 1.027944 1.168350 0.173442 -0.783883 -PE-benchmarks/snake-ladder.cpp__std::queue > >::~queue() = -0.017376 -0.568191 1.060115 0.843598 -0.209515 0.333670 0.199589 -0.684995 0.869578 0.150204 -0.231596 0.028592 -0.740865 0.214217 -0.270916 0.468967 -0.877193 -0.574504 -0.166581 -0.457740 -0.296011 -0.682276 0.408594 0.150212 0.392973 0.468042 -0.346878 -0.010244 -0.520034 -0.510216 0.708195 -0.276100 0.425143 0.425875 0.092242 -1.437012 0.747869 0.496474 -0.255891 -0.785742 0.149750 -0.336044 -0.011792 -0.275277 -0.178377 0.183125 -0.009821 0.546041 0.516851 0.205100 0.175326 -0.083418 0.131808 1.117935 -0.477753 0.545520 0.258731 0.002862 -0.110222 0.181895 0.235558 0.217504 0.398552 0.640421 -0.135312 -0.460265 -0.067675 -0.428085 -0.871859 0.739452 -0.176064 -0.053692 -0.642776 -0.246990 -0.431600 -0.110301 -0.813742 0.718229 1.210452 -0.631678 0.690564 0.177921 0.307828 -0.198211 0.244042 -0.045296 0.676672 0.250407 -0.392952 -0.013755 -0.349187 -0.258833 0.149696 -0.186642 -0.287937 -0.817456 0.438632 -0.749273 -0.795198 0.261294 0.282314 -0.043391 -0.427830 0.004831 0.376648 0.285767 -0.462368 -0.794865 -0.175683 0.187259 0.030846 -0.185349 -0.002543 0.091652 -0.242644 -0.304659 -0.813993 -0.269059 0.024698 -0.561468 -0.012114 0.606661 -0.260270 0.114765 0.002922 0.154342 -0.147274 0.815035 0.018138 0.473319 0.160596 0.212773 -0.343537 0.170299 0.356891 0.551117 -0.061312 0.001508 -0.140797 0.200021 -0.496098 -0.058801 -0.196629 0.118614 0.589836 -0.319719 -0.554591 -0.187973 -0.212119 -1.117508 0.193945 -0.673977 -0.156406 0.396049 0.630598 0.567327 0.471881 0.965385 -0.816362 0.308097 -0.160435 -0.034220 0.419033 0.329383 0.433389 -0.336377 -0.579223 0.302681 0.155976 0.174692 0.185537 -0.342868 -0.085462 -0.651864 -0.258208 0.426727 0.370909 -0.132712 0.434172 0.387584 0.466633 -0.640701 0.263789 0.484371 -0.009487 0.090784 0.060182 -0.972117 0.514438 0.043698 0.169018 0.414265 -0.122334 -0.222295 0.235036 -0.280593 0.242657 -0.587786 0.036118 -0.540178 -0.067122 -0.695247 0.311927 -0.221844 -0.337749 -0.176053 -0.055352 0.811036 -0.573231 -0.422904 0.935466 -0.105904 0.519364 -0.744854 0.610789 -0.414416 0.644302 -0.228376 -0.098432 -0.030309 -0.096650 -0.188197 -0.091434 0.322292 -0.068827 0.243025 0.867260 0.252054 0.032931 0.179061 0.710252 -0.119725 0.353562 -0.311333 0.660543 -0.023487 -0.268458 0.144988 -0.378187 0.064401 -0.346947 0.124907 0.924016 0.673814 0.256512 0.639454 0.242992 0.490893 -0.390001 0.447160 0.025900 0.397916 -0.351835 -0.045737 0.131071 0.359408 -0.430605 0.398076 -0.836640 -1.207269 -0.775045 -0.662099 -0.289522 -0.326155 0.305621 -0.150640 0.030207 -0.554895 -0.518116 0.504405 -0.357300 0.630458 0.319973 0.342293 0.542579 0.876575 -0.457985 -0.090503 0.124633 0.229296 -0.183418 -0.060958 -0.575046 0.554849 -0.521872 0.232893 0.812078 -0.252956 0.140738 -0.177895 0.747443 -0.554527 0.930836 0.432672 -0.283499 0.689134 0.405205 0.789740 0.488543 -0.467655 -PE-benchmarks/snake-ladder.cpp__main = -1.760781 -4.875896 5.169515 4.695589 1.125551 2.939409 2.523733 -1.896306 3.988520 3.292046 -1.498439 2.085657 -3.682691 -0.369503 0.491165 1.890909 -2.560549 -4.061180 0.955816 -0.881051 -0.928159 -3.783663 -0.448010 2.206432 1.218757 0.902629 -1.724651 -0.848323 -5.205381 -3.627725 2.677589 -1.105048 2.731860 1.512703 0.712092 -9.347672 3.508340 3.699108 -0.766518 -5.844617 0.159047 -1.893772 -0.402279 -0.165275 0.485823 1.831457 1.883979 2.876384 0.585379 1.562140 0.773612 -1.085501 1.281421 7.013378 -0.962940 4.375262 4.113123 0.142985 0.583868 1.136661 1.573536 -0.422453 3.288931 3.774062 -1.954220 -0.947605 -0.199982 -1.389999 -4.947459 2.284958 1.586266 -0.891985 -2.804867 -0.700251 -1.495749 -0.936753 -3.508962 2.271303 7.260792 -2.861616 6.628569 2.810709 4.798616 -0.662142 3.025942 -0.293290 4.017462 1.710854 -3.928409 -0.603301 -5.659997 -2.616897 -0.223952 0.471343 -2.020195 -1.614585 1.698962 -1.291152 -4.877756 2.731037 -0.417131 0.167278 -3.695430 0.244190 3.346667 2.223892 -2.036848 -4.966464 -3.806975 1.819388 -2.874442 -2.155336 -0.361449 -0.240566 -1.326435 -1.510597 -4.065466 -1.510684 2.859689 -3.603247 -1.769578 3.851552 -2.783201 2.522915 -0.726228 -0.139237 -0.417317 2.312799 2.183338 1.292882 3.455616 -2.561835 -6.489496 1.543727 1.432604 4.222184 -0.944225 -0.306618 0.852279 1.760688 0.003313 1.645991 -0.165063 2.786427 3.256164 -0.931977 -2.772505 -3.940940 0.978042 -3.638475 2.189824 -3.299579 0.347175 0.812314 3.785662 1.389158 1.463458 4.479514 -4.789404 4.512710 -1.095575 1.603238 0.623721 1.436193 1.761448 -2.111032 -3.366770 1.851941 3.657805 0.328519 1.336100 -2.599069 0.081153 -2.519218 -3.764680 1.401637 0.573155 -0.448313 3.552059 1.716867 7.205236 -5.147031 0.627978 0.528790 -0.097994 0.592800 -0.341272 -5.242263 2.883196 0.301685 0.837490 4.364119 -0.397912 -3.217126 1.209533 -0.058807 0.236050 -2.637697 2.752300 -3.447219 -1.557488 -1.979145 0.758090 -2.398612 -2.529666 -2.029058 0.919895 5.394662 -0.895728 -4.663179 2.752239 -2.408491 1.326532 -6.390539 5.262079 -2.567086 1.631488 -2.194820 -1.606636 -1.011540 1.811544 -0.138408 -0.339747 2.357267 -2.518955 2.811757 4.947634 0.906888 1.006795 2.068947 2.071504 -0.072169 -0.917440 -2.143266 2.882289 -0.633491 -0.932544 -0.449848 -2.197535 3.769408 0.118263 -0.978392 2.731830 4.446938 -0.845395 1.634476 2.795096 0.382959 -2.664601 1.417901 0.674530 3.789650 -1.942571 -0.115895 -2.107592 -0.292241 -0.664547 2.564923 -4.854827 -4.087414 -1.259758 -4.717570 -2.036330 1.127135 1.685117 0.904758 0.975894 -6.124106 -2.366239 1.467419 -1.726946 2.197251 2.510154 2.715761 3.855642 3.380054 -1.119209 -2.095911 -0.125096 -0.122962 -3.032248 -1.247514 -1.566639 2.151413 -2.693550 3.509118 2.604116 -0.052699 0.632970 -1.725940 4.756693 -2.502511 6.654633 3.332852 -2.724666 1.232082 1.824762 6.460470 -2.139168 -2.966867 -PE-benchmarks/snake-ladder.cpp__std::deque >::~deque() = 1.020281 -2.137489 5.285234 4.090734 -1.207896 1.545323 0.380925 -3.909147 3.590568 0.863375 -1.197912 0.433506 -2.592197 1.045117 -2.122983 2.401165 -4.192626 -2.030276 -1.391023 -2.603472 -1.482122 -2.505187 1.663199 0.667896 2.065614 2.151298 -1.699590 0.369263 -1.835553 -3.659666 2.512236 -0.737379 1.424186 0.736155 0.709319 -5.560744 3.997469 2.823553 -1.239423 -3.483617 0.853937 -0.973313 -1.288347 -0.619151 -0.965130 0.775848 -0.723092 2.890795 2.004017 1.287115 0.818545 0.741500 1.427812 5.345258 -1.559913 2.732965 1.464358 0.350803 -0.158403 1.348652 1.033941 1.525864 1.109929 2.291352 0.487732 -2.451719 -0.272936 -1.174217 -2.896281 3.459572 -0.852310 -1.527025 -2.510038 -1.416025 -2.313896 0.023462 -4.103920 3.358839 4.933391 -2.806542 2.413519 0.693885 0.665540 -0.877099 0.934338 -0.562702 3.288783 1.438390 -0.912627 -0.346433 -1.022872 -1.409409 1.284303 -1.548162 -2.268109 -4.992549 2.435726 -4.778059 -3.590635 1.197528 1.921855 -1.248691 -0.965346 -0.461659 1.483469 0.542597 -1.632113 -2.930006 -0.393574 1.378555 0.238036 -0.975643 -0.085399 0.622718 -0.298771 0.183393 -3.740932 -0.297886 0.301629 -1.579018 0.001361 2.486769 0.083079 -0.060450 -0.298800 0.870681 -0.641629 2.939833 -0.552238 2.651443 0.112113 2.479806 -0.454618 1.967207 1.764544 -0.094082 -0.373021 0.420566 -0.547824 1.376337 -2.185393 0.830370 -2.186622 0.591952 2.034601 -1.114389 -2.590903 -0.909138 -1.599434 -4.481234 0.597316 -2.646131 -2.536408 1.201230 2.762794 2.571106 1.963651 2.758721 -3.475183 0.633376 -0.310136 0.328718 1.706169 0.181909 1.534444 -1.469984 -2.800499 1.512119 0.572966 0.962020 0.479750 -0.924469 -0.355785 -2.593736 -0.860222 2.142422 1.609565 -0.686530 2.165538 2.329930 2.452556 -2.275108 1.001526 2.127945 -0.906374 0.355660 0.051524 -4.321988 1.642500 0.461988 2.183039 2.900308 -0.465082 -0.148969 1.072584 -1.074822 0.887156 -2.343963 0.261397 -2.450027 -0.558653 -2.515658 1.498816 -0.775061 -0.940252 -1.135425 -1.144250 3.585735 -3.953307 -1.895669 5.003850 -1.042250 1.683237 -2.925206 2.425302 -1.629455 2.388873 -0.057230 -0.109255 0.005330 -1.069954 -1.971479 0.099324 1.325054 -0.604283 1.218002 3.832111 0.902939 0.032392 0.167864 3.005831 -1.720307 2.037491 -2.122754 3.379237 -0.198630 -1.583091 -0.194032 -1.484002 -0.491620 -2.366825 0.898473 3.442915 1.853959 1.420517 2.026329 0.956747 2.561011 -1.827952 2.966581 0.047175 0.496867 -1.772826 -0.507186 1.264501 1.055275 -1.762748 1.947704 -3.942402 -4.556493 -5.150050 -2.718109 -0.868456 -2.371142 1.857251 -1.213254 -0.625381 -2.283491 -3.217163 3.482765 -1.339365 1.210113 2.233966 1.671568 2.155389 3.783494 -1.417872 0.973364 -0.334407 1.004282 -0.388093 -1.143680 -2.124632 2.951591 -1.498787 0.791219 3.976530 -0.864553 1.553946 -0.826596 2.198632 -2.487049 3.498985 1.610023 -1.259222 2.325173 2.162772 2.981919 1.692987 -2.178846 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.200099 -0.257827 0.369605 0.339224 0.108585 0.114140 0.250148 -0.149716 0.453760 0.315836 -0.014621 -0.044148 -0.393642 0.081980 0.131976 0.277090 -0.187645 -0.318739 0.043393 -0.176082 -0.111823 -0.322916 0.162558 -0.109022 0.143614 -0.092196 -0.114081 -0.174579 -0.333724 -0.119724 0.288126 -0.185562 0.203571 0.127894 -0.039703 -0.646967 0.237307 0.121363 -0.137087 -0.310868 0.060101 -0.249357 0.245205 -0.078414 0.183133 0.123049 0.125745 0.098322 0.291483 0.128160 0.264644 -0.147948 -0.032307 0.508355 -0.380490 0.199866 0.038194 -0.055346 -0.111109 0.117819 0.074065 -0.019968 0.268109 0.283526 -0.197044 -0.175453 -0.083406 -0.225752 -0.456146 0.228195 -0.023081 0.060678 -0.339195 -0.056731 -0.013294 -0.188983 -0.714534 0.197942 0.524601 -0.277208 0.374588 0.156710 0.270798 -0.006302 0.180996 0.041175 0.268912 0.016929 -0.292962 0.016984 -0.212616 -0.088226 -0.027658 0.064249 0.037870 -0.113680 0.094350 0.187973 -0.331264 0.165783 0.018010 0.175595 -0.404130 0.092798 0.160833 0.236636 -0.245291 -0.446020 -0.216028 0.005627 -0.015639 -0.076358 0.024149 -0.277788 -0.229425 -0.324755 -0.324988 -0.197472 -0.021000 -0.323547 -0.249646 0.315648 -0.292711 0.077529 0.052248 0.069385 -0.106537 0.381204 0.088460 0.225914 0.207610 -0.176380 -0.783989 0.005238 0.185767 0.522635 0.055403 0.105191 -0.158778 -0.013312 -0.255870 -0.004940 0.164646 0.207314 0.421380 -0.199243 -0.189029 -0.077559 0.189438 -0.365715 0.237545 -0.282232 0.280459 -0.018998 0.272489 0.243159 0.257751 0.578136 -0.375444 0.255824 -0.182882 -0.036783 0.247469 0.280261 0.260906 -0.153739 -0.164288 0.018839 0.262415 -0.060651 0.142861 -0.183142 0.013331 -0.328138 -0.057265 0.026609 0.076150 -0.161526 0.206631 0.096135 0.402277 -0.442470 0.137269 0.219859 0.082512 0.054644 0.022044 -0.369023 0.277105 0.034536 -0.155954 0.043137 -0.036424 -0.254536 0.054124 -0.160042 0.121241 -0.197321 0.005006 -0.207709 -0.114026 -0.254035 0.129442 -0.189177 -0.251453 0.053411 0.194534 0.332357 0.187861 -0.150266 0.213694 -0.120493 0.057801 -0.361115 0.620726 -0.231004 0.082099 -0.366598 -0.076878 -0.125827 0.396520 0.038103 -0.054055 0.157595 -0.057691 0.162399 0.462864 0.161191 0.081919 0.128645 0.323727 0.090893 0.035909 -0.013101 0.294041 -0.065948 0.030414 0.127960 -0.164556 0.201673 0.026374 -0.046538 0.410863 0.391832 -0.085917 0.250968 0.154809 0.181092 -0.146027 0.157040 0.026187 0.379229 -0.112644 0.046396 -0.035638 0.032092 -0.166722 0.127152 -0.320854 -0.369631 0.185892 -0.198461 -0.088451 0.218688 -0.021802 0.048503 0.131873 -0.361845 -0.079750 -0.011820 -0.183901 0.153536 -0.028817 0.096700 0.247923 0.368351 -0.182135 -0.246211 0.010664 -0.071446 -0.127717 -0.053408 -0.139368 0.203605 -0.362945 0.125268 0.154600 -0.100755 -0.093661 0.023121 0.429459 -0.199889 0.460426 0.190324 0.026144 0.396897 0.298568 0.640249 0.023390 -0.147667 -PE-benchmarks/snake-ladder.cpp__std::deque >::begin() = 0.295726 -0.622543 1.810173 1.521337 -0.253843 0.482606 -0.038832 -1.327462 1.338487 0.663037 -0.192555 0.283166 -0.689816 0.567558 -0.462814 1.185311 -1.320204 -0.645736 -0.483245 -1.059625 -0.812173 -0.707763 0.309178 -0.072619 0.650915 0.376491 -0.735644 0.148127 -0.501900 -1.393332 0.572056 -0.308854 0.380276 -0.216328 0.369784 -2.143096 1.419259 0.806587 -0.505446 -1.115076 0.190093 -0.533395 -0.050498 -0.257847 -0.063629 0.294685 -0.189159 0.741880 0.844860 0.532176 0.533594 0.522610 0.522284 2.259556 -0.727697 0.919475 0.456667 0.052833 -0.184246 0.503327 0.353889 0.452015 0.408105 0.546479 0.132559 -1.046556 -0.328266 -0.339412 -0.731677 1.086446 -0.162444 -0.697033 -1.038739 -0.618393 -0.746892 -0.326799 -2.605801 1.099368 1.583218 -1.213506 0.631898 0.353540 0.421785 0.185815 0.678390 -0.146214 1.449543 0.438827 -0.441398 0.155699 0.007607 -0.449970 0.513632 -0.573642 -0.733318 -1.965155 0.618383 -1.338494 -1.273392 0.693631 0.669089 -0.138148 -0.576398 -0.442568 0.617010 0.157183 -0.671742 -1.060543 -0.190131 0.411297 0.221877 -0.429632 0.114396 -0.459184 0.016270 0.113817 -1.436561 0.019736 0.182093 -0.362110 -0.369816 1.033823 0.109219 -0.211799 -0.184403 0.293279 -0.378559 1.190652 -0.263474 1.117813 -0.318299 0.874545 -1.108619 0.969650 0.648401 -0.354345 -0.066544 0.332561 -0.425913 0.408322 -0.947582 0.550117 -0.624878 0.606370 0.906197 -0.228291 -0.969708 -0.414349 -0.397391 -1.310127 0.451770 -0.816601 -0.801420 0.069214 0.956483 1.047108 0.829962 0.589350 -1.058010 0.229473 -0.339457 0.295403 0.909466 0.017571 0.629579 -0.559296 -0.786837 0.543738 0.462117 0.159014 0.322090 -0.369508 0.120559 -0.791767 0.018782 0.607320 0.584223 -0.334194 0.945403 0.750762 1.448922 -0.934713 0.375464 0.696160 -0.348465 0.219006 -0.137192 -1.224670 0.492663 0.317539 0.580363 0.962653 -0.186728 -0.167678 0.218498 -0.272328 0.449091 -0.587933 -0.036372 -0.722080 -0.456412 -0.629339 0.655695 -0.497980 -0.213758 -0.318050 -0.438294 1.278548 -1.391847 -0.461737 1.722514 -0.673954 0.376925 -0.872416 1.380149 -0.628302 0.580932 -0.351517 -0.075681 -0.115043 0.180262 -0.778022 0.374079 0.602113 -0.328044 0.166371 1.353098 0.375544 0.241769 0.004040 1.040606 -0.543326 0.711504 -0.563260 1.425582 -0.229422 -0.180215 -0.134744 -0.460515 -0.117468 -0.644474 0.358307 0.974938 0.453984 0.367329 0.371634 0.521240 0.869718 -0.716023 1.077968 -0.160291 0.084295 -0.755679 -0.132123 0.410727 0.130324 -0.491731 0.421591 -1.315140 -0.993739 -1.726262 -0.347031 -0.190611 -0.080490 0.260857 -0.396476 -0.288668 -0.791271 -1.009740 1.459903 -0.521212 -0.338866 0.623219 0.485171 0.805887 1.351733 -0.274525 0.091673 -0.437459 -0.253412 0.033200 -0.369041 -0.686830 1.233396 -0.611063 0.232948 1.175542 -0.323287 0.465524 0.249184 0.684893 -0.651113 1.136741 0.445405 -0.240708 0.722960 1.386154 1.425592 0.151028 -0.734066 -PE-benchmarks/snake-ladder.cpp__std::deque >::end() = 0.295726 -0.622543 1.810173 1.521337 -0.253843 0.482606 -0.038832 -1.327462 1.338487 0.663037 -0.192555 0.283166 -0.689816 0.567558 -0.462814 1.185311 -1.320204 -0.645736 -0.483245 -1.059625 -0.812173 -0.707763 0.309178 -0.072619 0.650915 0.376491 -0.735644 0.148127 -0.501900 -1.393332 0.572056 -0.308854 0.380276 -0.216328 0.369784 -2.143096 1.419259 0.806587 -0.505446 -1.115076 0.190093 -0.533395 -0.050498 -0.257847 -0.063629 0.294685 -0.189159 0.741880 0.844860 0.532176 0.533594 0.522610 0.522284 2.259556 -0.727697 0.919475 0.456667 0.052833 -0.184246 0.503327 0.353889 0.452015 0.408105 0.546479 0.132559 -1.046556 -0.328266 -0.339412 -0.731677 1.086446 -0.162444 -0.697033 -1.038739 -0.618393 -0.746892 -0.326799 -2.605801 1.099368 1.583218 -1.213506 0.631898 0.353540 0.421785 0.185815 0.678390 -0.146214 1.449543 0.438827 -0.441398 0.155699 0.007607 -0.449970 0.513632 -0.573642 -0.733318 -1.965155 0.618383 -1.338494 -1.273392 0.693631 0.669089 -0.138148 -0.576398 -0.442568 0.617010 0.157183 -0.671742 -1.060543 -0.190131 0.411297 0.221877 -0.429632 0.114396 -0.459184 0.016270 0.113817 -1.436561 0.019736 0.182093 -0.362110 -0.369816 1.033823 0.109219 -0.211799 -0.184403 0.293279 -0.378559 1.190652 -0.263474 1.117813 -0.318299 0.874545 -1.108619 0.969650 0.648401 -0.354345 -0.066544 0.332561 -0.425913 0.408322 -0.947582 0.550117 -0.624878 0.606370 0.906197 -0.228291 -0.969708 -0.414349 -0.397391 -1.310127 0.451770 -0.816601 -0.801420 0.069214 0.956483 1.047108 0.829962 0.589350 -1.058010 0.229473 -0.339457 0.295403 0.909466 0.017571 0.629579 -0.559296 -0.786837 0.543738 0.462117 0.159014 0.322090 -0.369508 0.120559 -0.791767 0.018782 0.607320 0.584223 -0.334194 0.945403 0.750762 1.448922 -0.934713 0.375464 0.696160 -0.348465 0.219006 -0.137192 -1.224670 0.492663 0.317539 0.580363 0.962653 -0.186728 -0.167678 0.218498 -0.272328 0.449091 -0.587933 -0.036372 -0.722080 -0.456412 -0.629339 0.655695 -0.497980 -0.213758 -0.318050 -0.438294 1.278548 -1.391847 -0.461737 1.722514 -0.673954 0.376925 -0.872416 1.380149 -0.628302 0.580932 -0.351517 -0.075681 -0.115043 0.180262 -0.778022 0.374079 0.602113 -0.328044 0.166371 1.353098 0.375544 0.241769 0.004040 1.040606 -0.543326 0.711504 -0.563260 1.425582 -0.229422 -0.180215 -0.134744 -0.460515 -0.117468 -0.644474 0.358307 0.974938 0.453984 0.367329 0.371634 0.521240 0.869718 -0.716023 1.077968 -0.160291 0.084295 -0.755679 -0.132123 0.410727 0.130324 -0.491731 0.421591 -1.315140 -0.993739 -1.726262 -0.347031 -0.190611 -0.080490 0.260857 -0.396476 -0.288668 -0.791271 -1.009740 1.459903 -0.521212 -0.338866 0.623219 0.485171 0.805887 1.351733 -0.274525 0.091673 -0.437459 -0.253412 0.033200 -0.369041 -0.686830 1.233396 -0.611063 0.232948 1.175542 -0.323287 0.465524 0.249184 0.684893 -0.651113 1.136741 0.445405 -0.240708 0.722960 1.386154 1.425592 0.151028 -0.734066 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::~_Deque_base() = 1.309507 -2.149234 6.116025 5.487561 -1.470730 1.728622 -1.281929 -4.492688 3.186482 1.951360 -0.882297 1.913236 -1.528692 1.735315 -0.724422 3.998520 -4.779347 -1.463268 -1.836240 -2.934002 -2.475600 -1.773501 0.678700 0.879680 2.084320 2.933233 -2.780922 1.399341 -0.429566 -6.387282 0.978687 -0.567154 1.766551 0.320757 1.693185 -7.448769 5.067144 3.309550 -1.285456 -3.984511 0.591429 -0.774440 -1.236054 -0.601348 -1.795195 1.509489 -0.866905 1.603009 1.861867 1.983443 0.849300 2.085346 3.155032 5.907698 -0.497798 3.105988 2.221741 -0.175802 -0.354986 0.535111 1.406143 1.764072 1.383354 1.535297 1.020650 -3.526115 -1.061304 -0.471073 -2.376618 3.340713 -0.585181 -2.928879 -2.911735 -2.583289 -2.331657 -0.423695 -5.128783 3.721730 4.818992 -3.410039 1.857158 0.938429 0.387466 0.251159 2.044159 -0.723706 4.505727 2.048391 -0.794391 0.784396 1.420481 -2.926370 2.328713 -1.180202 -3.231880 -5.654693 1.987632 -5.550156 -3.841165 2.418523 2.410588 -1.249370 -2.163403 -2.590333 2.136487 0.561076 -1.413911 -2.652189 -0.303454 1.512376 0.734806 -1.956225 -0.908108 0.269139 0.116150 2.125954 -4.725617 0.567545 1.194125 -0.742994 -0.093271 2.687539 1.310204 -0.576168 -1.262334 0.855206 -1.118087 3.600224 -0.974993 3.656215 -1.031187 3.392518 -0.391799 3.007912 1.777668 -2.937471 -0.777914 -0.442481 -0.982763 1.682560 -2.306805 2.372357 -2.537176 2.010036 3.847249 0.525206 -3.408385 -1.803008 -2.885384 -4.793890 0.952075 -2.683295 -2.932635 1.953368 2.996196 1.817681 2.246865 1.058510 -3.410004 0.313397 -0.694834 1.111642 2.537428 -0.197908 1.374667 -1.749808 -2.767024 2.819869 1.281823 1.130507 1.085943 -0.918943 0.515769 -1.542208 -0.937759 3.445040 1.799548 -0.091812 2.742198 2.381508 6.223211 -0.866054 0.677925 1.692066 -1.344955 0.625903 -0.524894 -3.832644 0.971365 0.716953 2.790011 4.342675 -0.726211 -0.260912 0.828663 -0.282813 0.920105 -1.976272 1.174568 -2.425155 0.004262 -1.774411 0.803541 -1.182873 -0.283731 -1.594373 -1.473791 4.458119 -5.584332 -2.156565 5.720604 -2.600590 1.714952 -3.251856 3.132153 -1.800745 2.422707 -0.619322 -0.813534 0.222797 -2.064923 -2.835794 1.244617 2.054255 -0.716122 -0.421275 3.776180 0.820657 -0.206343 -0.391733 2.470593 -1.717841 2.877737 -2.125678 4.657601 -0.481033 0.199843 -1.324144 -1.296933 -0.793594 -2.648210 0.610618 1.901390 0.713437 1.404394 0.539567 1.465477 2.601595 -2.649582 3.903486 -0.225529 -0.195884 -2.487811 -0.837706 1.354911 1.420749 -1.147783 1.685670 -4.059518 -2.796726 -7.302434 -1.601916 -1.667620 0.239569 2.060451 -1.567751 -1.551222 -1.519444 -3.704538 6.392061 -1.245153 0.020952 2.617766 1.788725 2.627316 3.731168 -0.216197 0.563497 -2.226918 -0.774886 0.240683 -0.864212 -2.165601 3.933700 -0.853226 0.645293 4.119267 -0.949023 2.257198 -0.013822 1.915679 -1.913628 3.453071 1.272276 -1.366254 1.568015 3.381576 2.626979 -0.356549 -2.623904 -PE-benchmarks/snake-ladder.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.258482 -1.033440 2.606699 2.396413 -0.214751 0.766752 -0.052412 -1.875649 1.666954 1.418339 0.220529 0.700035 -0.930495 0.851096 0.174740 1.886851 -1.731970 -0.898589 -0.836474 -1.590103 -1.321000 -0.932405 0.450929 0.009371 0.832929 0.173654 -1.466862 0.015998 -0.583474 -2.553095 0.824407 -0.370783 1.113344 -0.555198 0.299726 -4.985046 2.111307 1.272542 -0.734423 -1.674442 0.354748 -0.532428 0.016993 -0.103145 -0.915625 0.404850 -0.380428 -0.157667 1.140033 0.800695 1.047470 1.045524 0.967005 3.675080 -0.930727 1.338542 0.693529 -0.292263 -0.625508 0.434252 0.582007 0.747060 1.077256 0.789444 0.242582 -1.617846 -0.306051 -0.388660 -1.761208 1.498999 -0.066230 -1.236504 -1.127014 -0.897784 -0.900789 -0.730035 -1.498210 1.359450 2.296989 -1.534795 1.054628 0.304766 0.259678 0.369465 1.080396 -0.164189 2.123929 0.646488 -0.529932 0.258987 0.601551 -0.775509 0.763628 0.426135 -1.043860 -2.269676 0.894463 -1.031271 -1.742871 1.291944 0.980838 -0.060135 -2.349265 -1.526328 1.026411 0.555511 -0.990146 -1.636085 -1.138560 0.742727 0.288830 -0.912509 -0.284552 -0.835117 -0.268359 0.138675 -2.020442 -0.006466 0.384042 -0.549561 -1.123415 1.471437 -0.264592 -0.273439 -0.370348 0.728241 -0.865870 1.533783 -0.517236 1.754304 -0.157270 0.847893 -1.680809 0.114393 0.752090 0.125891 0.056219 -0.544453 -1.050239 0.592717 -1.257693 1.204712 -0.252373 1.243928 2.492309 0.265404 -1.418194 -0.626789 -0.176295 -2.400788 0.504189 -1.421257 -0.531221 0.913954 1.401073 0.785746 1.155177 1.174340 -1.463697 1.052596 -0.564781 0.018530 1.444042 -0.140506 0.815752 -0.807278 -1.351590 0.798688 0.852824 0.614960 0.501579 -0.554962 0.105492 -0.804754 -0.800138 0.772156 0.740311 -0.256783 0.943750 1.034760 4.175432 -1.531949 0.538294 0.876422 -0.546529 0.436946 -0.399541 -1.722525 0.166339 0.517368 -0.071198 1.926921 -0.391115 -0.995578 0.324603 -0.274679 0.527144 -0.856780 0.634894 -1.080431 0.016006 -0.949768 -0.402913 -0.862894 -0.260882 -0.670809 -0.454942 2.108877 -2.070665 -1.459268 2.561327 -1.070490 0.456662 -2.284103 2.539485 -0.828121 0.841736 -1.321896 -0.484718 -0.306160 0.550001 -1.191433 0.969267 0.923292 -0.712968 0.024483 2.678678 0.479790 0.342142 -0.364309 1.405053 -0.219127 1.094280 -0.906234 2.533887 -0.399510 -0.009095 -0.515941 -0.684508 0.085419 -0.956122 0.339798 0.617344 0.832699 0.138225 0.177005 1.223898 1.231221 -1.052678 1.766349 0.025212 0.435435 -0.864030 -0.038201 0.548170 0.750487 -0.636250 0.806800 -1.778411 -1.150271 -2.246763 -1.051908 -0.463197 1.319390 0.427797 -0.548063 -0.487119 -1.257151 -1.270354 2.242737 -0.756088 0.522872 1.005974 0.866583 1.311281 1.985188 -0.372088 -0.134501 -0.953155 -0.754703 -0.017562 -0.618470 -0.873475 1.740929 -0.746334 0.513298 1.402392 -0.218559 0.850567 0.369348 1.038575 -0.843312 2.061792 0.618914 -0.112907 1.220524 1.599675 2.023449 -0.390039 -1.007958 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_destroy_nodes(queueEntry**, queueEntry**) = -0.784783 -1.266670 2.341424 1.991613 0.623057 1.050090 0.666355 -1.666348 2.270726 1.520779 -0.314630 0.317123 -1.519214 0.253192 -0.036932 1.321946 -1.196350 -1.581430 -0.140037 -1.130604 -0.587029 -1.794649 0.567417 0.125945 0.618299 0.041843 -1.131724 0.102168 -1.720993 -2.536583 1.273806 -0.531248 1.030159 -0.006970 -0.052067 -3.875248 2.209827 1.618845 -0.504629 -1.849354 0.251669 -0.893027 -0.132545 0.151846 0.438926 0.775491 0.119850 0.430976 1.009644 0.623222 1.319958 0.020289 0.203200 2.472579 -1.385862 1.544819 0.555020 -0.043179 -0.389363 0.782346 0.405807 0.435175 1.423591 1.765285 -0.811655 -0.902909 0.239102 -0.254738 -2.426932 1.463322 -0.055837 -0.705503 -1.130285 -0.283799 -0.637829 -0.378996 -0.688521 0.801771 2.803214 -0.764498 2.043717 0.604952 1.237509 -0.358279 1.065201 -0.371795 2.170449 0.495350 -1.476266 -0.589683 -1.357452 -0.819576 0.130639 0.869959 -0.588076 -0.274768 0.633792 -0.794327 -1.846675 0.633930 0.247357 0.096377 -2.594728 -0.068528 1.436496 0.635951 -0.537444 -2.175706 -1.223522 0.747820 -0.799567 -0.810794 -0.261207 -0.971389 -0.791842 -0.423758 -1.790982 -0.855760 0.376600 -1.270960 -1.443780 1.465089 -1.210447 0.228046 -0.159464 0.509875 -0.385607 0.802875 -0.157509 1.209697 1.098076 -0.373503 -2.550161 0.072221 0.512868 1.317119 -0.224919 -0.066944 -0.476832 0.363825 -1.142333 0.631932 -0.566657 0.931570 2.348724 -0.447189 -1.023157 -0.525775 0.559577 -2.163949 0.908237 -1.416819 -0.025196 -0.196621 1.568597 0.582198 1.090205 2.356217 -2.096893 1.540061 -0.386174 0.192322 1.079605 0.142421 0.902464 -0.873747 -1.525490 0.735433 1.205919 -0.015360 0.450406 -0.771601 -0.187550 -1.340344 -1.300403 0.832829 0.136539 0.054209 1.117221 0.656326 3.480896 -2.346908 0.799431 0.908631 0.027488 0.440080 -0.187908 -2.024923 0.902237 0.325161 0.575670 1.967719 -0.153623 -1.357602 0.083488 -0.036985 0.524178 -1.346690 0.839733 -1.398894 -0.094630 -0.910683 -0.310357 -0.742386 -0.952129 -0.421390 0.406632 1.843145 0.019560 -2.355476 2.134074 -1.229851 0.679230 -2.852710 1.592775 -1.157081 0.591415 -1.309912 -0.000983 -0.457386 0.785162 -0.494417 0.343582 0.831777 -0.719137 1.406416 2.530262 0.506386 0.503428 0.194717 1.082248 -0.003334 0.218767 -0.817848 1.856658 -0.096032 -0.332949 -0.148323 -0.953201 0.973717 -0.422516 -0.278011 0.948298 2.029446 -0.475367 0.769142 1.201655 0.861386 -0.950231 1.476470 0.302562 0.934471 -0.475403 -0.141990 0.072685 0.077619 -0.628295 1.126136 -1.838100 -1.831723 -0.384832 -2.493916 -0.348462 0.505230 0.598394 0.152736 0.331879 -2.032521 -0.818388 1.294006 -0.563122 1.883405 0.621162 1.032818 1.039006 1.727863 -0.853377 -0.483175 -0.568288 -0.336282 -1.017194 -0.959895 -0.630127 1.364317 -0.936694 1.088072 1.013850 -0.328893 0.179207 -0.516619 1.351790 -0.988092 2.355871 1.067446 -0.104430 1.315445 0.232968 2.940618 -0.324884 -1.019902 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_map(queueEntry**, unsigned long) = -0.300323 -2.019034 3.212042 2.896484 0.556537 1.147165 1.548102 -2.078180 2.532947 1.708586 -0.178881 0.906332 -2.613682 1.071492 -1.604562 2.020980 -1.695222 -2.261344 -0.610135 -1.442468 -1.003460 -2.021192 1.465628 0.282002 1.611841 -0.374673 -1.684714 -1.181928 -3.216682 -2.194114 1.553037 -0.653859 1.467272 -0.912761 -0.559407 -4.556549 2.212905 2.278592 -0.918532 -2.611858 1.140814 -1.597075 -0.100939 -0.413973 -0.001439 0.256722 -0.068982 0.954373 1.708332 0.983645 1.581431 0.928902 0.588418 4.627365 -2.138949 2.209403 1.028108 0.560267 -0.576574 0.861386 0.681475 0.766340 1.559901 1.654927 -0.499058 -1.577996 -0.643362 -0.762265 -2.685426 2.014700 -0.381900 -0.339130 -2.060033 -0.102054 -1.472333 -0.484860 -1.813367 1.583871 3.710829 -1.993445 2.343128 0.445779 0.861689 -0.567769 1.007954 -0.179239 1.738708 0.709021 -1.047883 -1.034742 -1.777630 0.265443 -0.006799 0.359152 -1.171440 -2.893462 1.672939 -1.311344 -3.036513 0.816696 0.625302 -0.421336 -1.785812 0.079763 1.037438 1.206986 -1.606641 -2.945507 -1.408094 0.928524 0.456142 -1.271346 0.353640 -1.353326 -0.690801 -1.204334 -2.645893 -0.741228 0.269038 -1.980413 -1.580538 2.044986 -1.053158 0.630192 -0.032385 0.836377 -0.553670 1.746167 -0.060899 1.818523 1.050883 0.475218 -2.864451 0.212207 1.295811 2.043113 -0.773525 0.873416 -1.101866 0.646398 -1.194171 0.544439 -0.487058 1.135754 2.004368 -1.220141 -1.710431 -0.712922 0.859716 -2.688709 0.814252 -1.951789 -0.412674 -0.126433 2.093237 0.996211 1.530596 3.536710 -2.109998 1.534638 0.206794 -0.174229 1.765234 -0.118419 1.348222 -1.236914 -2.606428 1.034769 1.381075 0.287581 0.020230 -0.009506 -0.189024 -2.021737 -0.955554 0.236626 0.761143 -0.946350 2.008310 1.147909 2.655733 -2.952954 1.104436 1.320381 -0.598619 0.770059 -0.528849 -3.391111 1.313431 0.454157 0.190384 2.180907 -0.217435 -1.754736 1.340984 -0.775077 0.898949 -1.861157 0.840567 -2.033821 -1.074298 -1.955683 0.169984 -0.238409 -1.109275 -0.615632 -0.121838 2.824154 -1.280432 -1.904345 2.430694 -0.409650 0.399120 -3.601529 3.337974 -1.394972 0.897224 -0.900580 -0.086507 -0.138987 1.736634 -1.172687 0.020874 1.354776 -1.165535 1.762650 3.653557 0.663606 0.463706 0.321980 2.097317 -0.111035 0.860543 -1.250046 2.681538 -0.143362 -1.512300 0.183537 -1.238081 0.674926 -0.991711 0.287025 2.579869 2.129902 0.145859 1.496489 1.567404 2.170360 -1.328827 2.026302 -0.168976 1.477996 -0.989605 0.021581 0.130903 0.214928 -1.019946 1.955893 -2.763353 -3.295089 -1.297883 -2.882691 0.455259 -0.507379 0.825504 -0.656124 -0.089449 -3.142082 -1.936280 0.854224 -1.277570 1.567759 1.602738 1.314839 1.690558 2.542093 -1.380912 0.298674 -0.304282 0.380278 -0.503464 -1.363173 -0.729771 1.447524 -1.631556 1.111793 1.956881 -0.389069 0.746165 -0.389482 1.653768 -1.495832 3.533454 1.339688 -0.475663 2.382427 1.540406 3.638468 0.137354 -1.470839 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_node(queueEntry*) = -0.283062 -1.500417 2.856486 2.145194 0.114955 0.953928 1.011255 -1.681708 2.203032 1.332596 -0.637063 0.040497 -1.830501 0.257601 -0.860194 1.222267 -1.600602 -1.606136 -0.379251 -1.295519 -0.460150 -1.706460 0.944893 0.130260 1.077120 0.220939 -0.871428 -0.480685 -1.723225 -2.070379 1.611551 -0.492359 1.081844 -0.034708 -0.219369 -3.608680 2.024382 1.728966 -0.719473 -2.084776 0.617377 -0.597679 -0.529725 0.154087 -0.115226 0.541041 0.003400 1.311894 0.957858 0.794917 1.009617 -0.022033 0.545905 3.404208 -1.273822 1.631069 0.812838 0.272774 -0.187780 1.036102 0.553147 0.573378 0.985037 1.604450 -0.021292 -1.035883 0.109293 -0.617248 -2.248709 1.753678 -0.342556 -0.640203 -1.129809 -0.361297 -0.907284 -0.097692 -1.544928 1.337872 2.972480 -1.221648 2.015919 0.677327 0.799442 -0.568359 0.275893 -0.233977 1.450269 0.621180 -0.799057 -0.778278 -1.347478 -0.530541 0.200003 -0.059426 -0.997680 -1.971849 1.463400 -1.314428 -2.018979 0.618372 0.674124 -0.496800 -1.212398 0.130059 0.873325 0.723157 -0.891744 -1.946551 -1.071977 0.840197 -0.349573 -0.551625 0.026760 -0.306532 -0.552213 -0.399064 -1.926180 -0.513686 0.128594 -1.349598 -0.825567 1.471024 -0.720252 0.365463 0.092626 0.691197 -0.387832 1.211224 0.173780 1.449333 0.831163 0.532564 -1.743252 0.282752 1.021589 1.204557 -0.042630 0.185577 -0.396236 0.637230 -0.957126 0.550367 -0.781078 0.455420 1.724900 -0.907594 -1.147827 -0.695212 0.222396 -2.262841 0.514180 -1.600398 -0.612317 0.248110 1.605473 1.176352 1.074089 2.592240 -2.328454 1.148904 -0.298903 -0.050367 0.611158 0.068241 0.877717 -0.802423 -1.716839 0.406218 1.057447 0.401359 0.174512 -0.662210 -0.286045 -1.639204 -0.819037 0.707511 0.492656 -0.657578 1.112469 1.219869 2.130285 -2.243629 0.641597 1.144138 -0.450835 0.217266 0.072734 -2.726613 0.965336 0.314309 0.624760 1.674675 -0.129016 -0.742683 0.737073 -0.837444 0.257888 -1.385067 0.590335 -1.554201 -0.513299 -1.357070 0.396675 -0.749523 -0.839426 -0.462837 -0.047077 2.009633 -1.018323 -1.641677 2.242563 -0.428712 0.268805 -2.388824 2.146274 -0.986873 0.886016 -0.560503 -0.094051 -0.386340 0.657882 -0.678424 -0.233051 0.684987 -0.653999 1.541009 2.792474 0.594545 0.128432 0.287912 1.743302 -0.583344 0.565861 -1.244843 1.632567 -0.200883 -1.139544 -0.098714 -0.911231 0.448231 -0.907745 0.207938 1.742851 1.641127 -0.014321 1.208191 0.903953 1.302765 -0.849918 1.582683 0.269473 1.156870 -0.641608 -0.076370 0.263085 0.321840 -1.098842 1.409195 -2.272109 -2.525169 -1.444055 -2.309729 -0.313368 -0.770553 0.900088 -0.336470 0.118830 -2.148854 -1.520897 1.099981 -0.794428 1.187922 1.108199 1.013283 1.270686 2.053830 -1.033795 0.185348 -0.082877 0.451849 -0.717779 -1.131880 -0.704006 1.442004 -1.024954 0.763815 1.727722 -0.386577 0.538911 -0.535884 1.352559 -1.481686 2.547532 1.180468 -0.438626 1.496073 0.776503 2.732795 0.284316 -1.119075 -PE-benchmarks/snake-ladder.cpp__std::__deque_buf_size(unsigned long) = -0.437172 -0.830046 0.890723 0.498284 0.232919 0.467967 0.153130 0.114314 0.253118 0.786792 -0.712221 0.633781 -0.384825 -0.292051 0.539914 0.273521 -0.194882 -0.689765 0.598378 0.233060 0.203869 -0.477323 -0.406291 0.483260 0.194673 0.222339 -0.302758 -0.000851 -0.717554 -1.051809 -0.208081 -0.178305 0.411428 0.229645 0.458280 -0.521647 0.294487 0.554561 0.090137 -1.098392 0.014136 0.131542 0.006666 0.352840 0.383554 0.788529 0.663904 0.081030 -0.312196 0.256291 -0.208605 -0.547264 0.055765 0.121637 0.326691 0.539777 0.769262 -0.080173 0.253885 -0.103504 0.419483 -0.409346 0.498067 0.508194 -0.431707 -0.051916 -0.004449 0.119008 -0.394999 0.033264 0.360174 -0.206277 -0.250298 -0.386180 -0.073637 -0.015968 0.203476 0.200699 0.875934 0.109245 1.037620 0.649314 1.143405 -0.134882 0.430801 -0.212151 0.411823 0.324216 -0.710206 -0.092378 -0.692626 -0.814879 -0.234910 0.699690 -0.269402 0.821977 0.095406 -0.284400 -0.603406 0.480792 -0.075084 -0.016805 -0.649690 0.476722 0.665737 0.579570 0.016887 -0.495841 -0.513707 0.165286 -0.713664 -0.321117 -0.155584 -0.141927 -0.423774 0.246051 -0.357173 -0.231154 0.687877 -0.579545 -0.139192 0.412574 -0.377914 0.690620 -0.134374 -0.095813 0.015006 -0.010669 0.918185 0.288669 0.286034 -0.634697 -1.057089 0.178897 0.016252 0.239207 -0.275055 -0.234193 0.304464 0.193643 0.370367 0.201759 -0.445601 0.682248 0.976093 -0.053252 -0.402758 -0.899084 -0.022763 -0.242663 0.394042 -0.263884 0.266427 -0.045684 0.350944 -0.147581 -0.004604 0.791067 -0.858620 0.578832 -0.219643 0.438062 -0.227190 0.017966 0.054797 -0.370370 -0.243535 0.246868 0.933777 -0.080153 0.396039 -0.592012 0.270353 -0.151387 -0.610941 0.608816 0.131092 0.239343 0.535320 0.119799 0.803185 -0.274148 -0.429545 -0.159646 0.051799 -0.181867 0.025572 -0.795677 0.446467 0.027321 0.644802 0.776753 0.007051 -0.378655 0.320330 0.009289 -0.052306 -0.305112 0.831928 -0.701804 0.209764 0.057063 -0.081346 -0.639829 -0.202104 -0.285144 0.298003 0.808139 0.504372 -1.020951 0.052798 -0.287054 0.318968 -1.019880 0.033357 -0.236605 0.371698 -0.111879 0.052202 -0.219334 -0.045009 0.283132 -0.279184 0.324143 -0.083584 0.385932 0.245929 0.040900 -0.290521 0.484119 -0.000830 0.118046 -0.417716 -0.156243 0.022893 -0.126719 0.334707 -0.184784 -0.020827 0.585264 0.320661 -0.509081 -0.339136 0.287674 -0.379900 0.053175 0.308375 -0.309714 -0.490475 0.103466 0.070491 0.874835 -0.062480 -0.289730 -0.688230 0.276175 -0.070958 0.130797 -0.734438 -0.381823 0.025606 -1.144924 -0.725664 0.384017 0.286516 0.374219 0.139976 -0.594905 -0.092286 0.355541 0.122543 0.986864 0.130261 0.213112 0.646769 0.163714 -0.216239 -0.532223 -0.279273 -0.239342 -0.633144 -0.204917 -0.028421 0.086704 -0.352650 0.475567 0.344924 -0.206356 -0.147505 -0.292305 0.475485 -0.446986 0.914606 0.698487 -0.664551 -0.256533 -0.046484 0.938091 -0.953007 -0.549389 -PE-benchmarks/snake-ladder.cpp__std::__new_allocator::deallocate(queueEntry*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.091115 -0.706025 1.452779 1.239501 0.190678 0.535548 0.497930 -1.093478 1.464415 0.729861 -0.009704 0.077879 -0.994467 0.433939 -0.479748 0.863011 -0.817450 -0.937793 -0.329482 -0.974625 -0.625850 -0.912137 0.397493 -0.141426 0.550336 -0.363312 -0.641635 -0.286855 -1.234086 -0.653493 0.875146 -0.314296 0.430106 -0.431176 0.019688 -2.091765 1.086000 0.752280 -0.466294 -1.038497 0.234548 -0.813884 0.170092 -0.208999 0.308638 0.114834 -0.111561 0.569513 0.904386 0.324362 0.760480 0.374448 -0.090157 2.308854 -1.179377 0.915235 0.262071 0.161097 -0.268748 0.714250 0.238274 0.366738 0.624913 0.687460 -0.275476 -0.790781 -0.170646 -0.416181 -1.028644 0.991258 -0.013789 -0.396849 -0.926982 -0.229457 -0.687046 -0.448351 -1.958191 0.798834 1.580970 -1.052492 0.882677 0.315687 0.660283 0.063573 0.728099 -0.118199 1.303457 0.209277 -0.632882 -0.177849 -0.883992 0.005890 0.083652 -0.240243 -0.443870 -1.404165 0.567508 -0.590449 -1.307068 0.497817 0.371532 0.065121 -0.950996 -0.020671 0.596601 0.294971 -0.730253 -1.319351 -0.590666 0.497117 0.032912 -0.405045 0.298992 -0.908543 -0.182251 -0.655700 -1.203521 -0.271645 0.112225 -0.625719 -0.884896 1.135122 -0.594401 -0.051774 0.002055 0.308310 -0.376538 0.894321 -0.196040 0.853175 0.217333 0.159033 -1.956836 0.402794 0.526244 0.819983 0.004069 0.533609 -0.495462 0.271758 -0.894591 0.363363 -0.230607 0.567377 0.728899 -0.527522 -0.717634 -0.271394 0.437867 -1.094832 0.497367 -0.803683 -0.321958 -0.309765 0.946665 1.113180 0.778191 1.205310 -0.971311 0.675996 -0.257656 0.109469 0.888807 0.041207 0.690666 -0.560227 -0.891769 0.247223 0.541680 0.003232 0.214788 -0.302529 -0.057251 -0.984020 -0.217690 -0.018857 0.382259 -0.430630 0.948052 0.644366 1.144674 -1.731292 0.580402 0.670512 -0.252042 0.328075 -0.204340 -1.273643 0.552794 0.348522 0.057200 0.829335 -0.165018 -0.608365 0.210051 -0.302721 0.523430 -0.653482 -0.042760 -0.789810 -0.670899 -0.753723 0.436775 -0.478937 -0.471455 -0.234463 -0.216245 1.171233 -0.540207 -0.761740 1.410884 -0.443530 0.203784 -1.268008 1.517103 -0.647464 0.332999 -0.611765 0.055267 -0.302430 1.055685 -0.574709 0.298569 0.557309 -0.601856 0.679375 1.631062 0.370252 0.477647 0.120362 1.051498 -0.251153 0.321980 -0.561434 1.333666 -0.211963 -0.483351 0.099602 -0.563046 0.313930 -0.376633 0.278497 1.118717 0.935145 0.130475 0.507739 0.744462 0.775539 -0.546808 0.853617 -0.101526 0.368925 -0.499957 0.047696 0.215034 -0.146775 -0.482465 0.493195 -1.242234 -1.194846 -0.600460 -0.806658 0.230600 -0.077087 -0.008123 -0.139168 -0.019789 -1.332733 -0.739911 0.403881 -0.597513 0.148759 0.456287 0.535984 0.747190 1.352767 -0.605985 0.004639 -0.084991 -0.163712 -0.250354 -0.606080 -0.527978 0.996866 -0.781003 0.483034 0.877224 -0.168089 0.267783 0.166151 0.789806 -0.641368 1.361682 0.541819 -0.093357 0.930410 1.115679 1.900879 0.199444 -0.614307 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/snake-ladder.cpp__std::__new_allocator::deallocate(queueEntry**, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/snake-ladder.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/snake-ladder.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/snake-ladder.cpp__std::deque >::deque() = -0.266089 -0.409759 0.768164 0.503588 -0.039957 0.269698 0.211296 -0.591278 0.818416 0.152198 -0.085703 -0.070981 -0.634515 0.170870 -0.340911 0.326032 -0.471961 -0.558811 -0.142840 -0.509122 -0.334610 -0.596477 0.300633 0.020851 0.192451 0.060396 -0.241864 0.023315 -0.541642 -0.508647 0.556962 -0.210871 0.239850 0.017991 0.041207 -1.078586 0.569514 0.314778 -0.263865 -0.547624 0.111532 -0.288301 0.048236 -0.044043 0.015272 0.129067 0.029632 0.343524 0.433597 0.200417 0.414571 -0.038359 -0.090877 1.008798 -0.557530 0.481867 0.219211 0.123182 -0.132111 0.327650 0.072480 0.130529 0.275537 0.529400 -0.244672 -0.254489 0.034662 -0.295614 -0.716893 0.588059 -0.177524 -0.185922 -0.447337 -0.249364 -0.387211 -0.212583 -0.771490 0.350249 1.011031 -0.553163 0.535293 0.210558 0.401805 -0.066857 0.277514 -0.092136 0.632232 0.130452 -0.453697 -0.021138 -0.333185 0.003461 -0.072809 -0.018915 -0.158742 -0.584717 0.384809 -0.591127 -0.692575 0.271293 0.120174 0.102726 -0.531986 0.061425 0.360127 0.144290 -0.469718 -0.769312 -0.284456 0.238921 0.013916 -0.048105 0.146588 -0.179673 -0.149040 -0.284152 -0.698627 -0.269005 0.051330 -0.531948 -0.294551 0.568178 -0.315993 0.167928 0.133775 0.210596 -0.165051 0.648238 0.086449 0.343725 0.018644 0.070891 -0.769274 0.125793 0.193969 0.429521 -0.033694 0.155954 -0.114238 0.065861 -0.464042 0.011815 -0.283518 0.064849 0.496818 -0.268651 -0.452565 -0.074160 -0.003833 -0.903583 0.270190 -0.603860 -0.203596 0.033922 0.421008 0.592912 0.358957 0.897046 -0.562439 0.340338 -0.188222 -0.053640 0.282943 0.077585 0.444770 -0.277779 -0.541356 0.156715 0.211280 -0.008612 0.240078 -0.421725 -0.092467 -0.653627 -0.223421 0.188836 0.253637 -0.167911 0.374258 0.294057 0.450016 -0.737368 0.242062 0.352961 -0.027822 0.146827 -0.042915 -0.750455 0.342526 0.119666 0.107148 0.343557 -0.054928 -0.228028 0.195541 -0.218719 0.311704 -0.466996 -0.006496 -0.474395 -0.190075 -0.536893 0.269648 -0.261350 -0.230781 -0.031491 -0.102272 0.590902 -0.357865 -0.405980 0.783481 -0.022326 0.410496 -0.657564 0.515809 -0.301076 0.570390 -0.253313 0.096394 -0.165408 0.211341 0.025136 0.033132 0.198428 -0.119461 0.345313 0.800599 0.141968 0.234141 0.252366 0.643588 -0.141914 0.128442 -0.249838 0.587085 -0.088395 -0.373318 0.222179 -0.293305 0.118213 -0.242036 0.152529 0.622567 0.637294 -0.042834 0.448032 0.328850 0.338557 -0.264432 0.348402 0.027020 0.335200 -0.336056 0.016440 0.076461 0.146206 -0.362156 0.221447 -0.645590 -0.893140 -0.540197 -0.644818 -0.134913 -0.185338 0.088456 -0.073731 0.070651 -0.494463 -0.315599 0.477357 -0.315458 0.506730 0.242225 0.395221 0.507107 0.893809 -0.375717 -0.135971 0.103278 0.030169 -0.291258 -0.116449 -0.375146 0.369903 -0.381224 0.217869 0.455864 -0.078081 0.060943 0.017567 0.436794 -0.417703 0.755497 0.376655 -0.055046 0.668508 0.377183 0.906188 0.359238 -0.289770 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_base() = -0.480470 -2.023707 4.696366 3.124186 -1.159909 1.394607 0.779359 -3.489920 3.172122 1.119198 -0.422268 0.170847 -2.411237 0.666799 -0.745624 1.983898 -2.998952 -1.850028 -1.081341 -2.891208 -1.729630 -2.288966 1.196245 0.638862 1.219071 1.056989 -1.185983 -0.031029 -0.984309 -3.949466 2.425364 -0.471359 1.513478 0.247666 0.787546 -7.082717 3.285020 1.876049 -1.322914 -3.071704 0.729005 0.041194 -0.913278 0.689554 -1.148912 0.784463 -0.285571 2.260808 1.323936 1.640198 1.401199 0.401292 1.233228 5.678747 -1.286287 2.532965 1.908359 0.365120 -0.414516 1.518787 0.601373 0.883774 1.026884 2.028535 0.237081 -1.606105 0.318188 -1.066702 -3.386459 2.768682 -0.211003 -2.273600 -1.749149 -2.005180 -1.439477 -0.662484 -3.480294 2.354230 4.702170 -2.838102 2.418369 1.090848 1.015961 -0.442131 1.028868 -0.681937 2.972010 1.093901 -1.328440 0.153829 -0.727418 -1.551791 0.572754 -0.719009 -1.764048 -4.578578 2.284884 -2.921792 -3.246569 1.999203 1.385696 -0.580502 -2.501503 -1.222228 1.701803 0.567253 -2.143225 -3.124606 -1.881324 1.673632 -0.186989 -0.452803 -0.108156 0.462634 -0.404258 0.049564 -3.560082 -0.275174 0.886734 -1.808959 -0.986519 2.373289 -0.497894 0.805645 0.365276 1.217080 -1.029932 2.839836 0.568066 2.020871 0.344938 1.318212 -1.506227 1.246048 1.088262 0.527442 0.363007 -0.474578 -0.413857 1.061731 -1.605754 1.581759 -1.423657 0.736569 3.085853 -0.182130 -2.487764 -0.883143 -0.790438 -4.490108 1.252936 -2.986248 -1.666998 1.246415 1.830993 2.098545 1.217496 2.466878 -3.099273 1.660858 -1.000419 0.261281 0.611607 0.240031 1.669160 -1.296945 -2.778020 0.707156 1.092513 0.674021 0.972283 -1.958418 -0.245239 -2.392770 -1.773573 1.187412 1.336298 -0.972450 1.373128 2.159120 4.863818 -2.263003 0.296982 1.349833 -1.041066 0.394926 -0.167119 -3.820516 0.827042 0.596842 1.059845 3.130829 -0.422696 -0.590982 1.351304 -0.969490 0.643135 -1.737645 0.715510 -2.467038 -0.641926 -2.186968 0.817359 -1.575740 -0.606734 -0.819661 -0.749210 3.332001 -3.284833 -2.274926 4.478819 -1.221119 1.465711 -3.430256 3.645475 -0.919143 2.039964 -1.074271 -0.295700 -0.820706 -0.226081 -0.698818 0.508506 0.700195 -0.471513 1.029392 4.534508 0.320459 0.442827 0.714778 2.945477 -1.423989 1.058025 -2.094753 3.532556 -0.882813 -1.395655 -0.103244 -1.022238 0.179647 -2.046361 0.752429 2.054074 1.779389 -0.127683 1.208800 1.506485 1.480274 -1.443002 2.726532 0.434804 1.071096 -1.776061 -0.058623 0.712136 1.094308 -1.688428 1.519237 -3.385320 -3.395533 -4.360353 -2.944410 -1.495478 -0.288678 1.477508 -0.872438 -0.527768 -2.087828 -2.267038 3.556524 -1.282418 0.927798 2.281272 2.189564 2.839912 4.385026 -0.927056 0.197943 -0.253064 0.029454 -1.197651 -1.054035 -1.386303 1.959401 -1.022005 0.975765 2.666571 0.307054 1.294560 -0.843977 2.228464 -2.262266 3.472469 1.606169 -0.580300 2.272562 2.210536 3.241446 0.740545 -1.482582 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.078883 -0.690940 1.384196 1.155033 0.164837 0.582740 0.247283 -1.148698 1.438094 0.709342 -0.085908 0.159324 -0.866326 0.463878 -0.762234 0.845856 -0.795896 -0.896068 -0.363101 -0.926103 -0.698844 -0.923485 0.289364 -0.071102 0.449946 -0.272257 -0.693969 0.031137 -1.154038 -0.969437 0.669652 -0.297340 0.296169 -0.697769 0.100702 -1.804595 1.138277 0.804098 -0.425315 -1.030264 0.133714 -0.750514 0.050550 -0.147112 0.184219 0.109515 -0.159708 0.495415 0.825240 0.297085 0.784491 0.458047 -0.027283 2.252951 -1.034899 0.969975 0.311513 0.263579 -0.201114 0.704028 0.267989 0.415822 0.530171 0.718021 -0.208029 -0.703609 -0.147466 -0.234174 -0.854043 1.035861 -0.185663 -0.499547 -0.857488 -0.286429 -0.852952 -0.382285 -1.817978 0.702601 1.581285 -0.984062 0.794291 0.329787 0.686583 0.132020 0.765048 -0.198450 1.419421 0.277117 -0.673575 -0.125642 -0.554722 0.133581 0.106075 -0.203314 -0.530078 -1.427157 0.584849 -1.086397 -1.306163 0.529084 0.342101 0.055921 -0.791332 -0.085858 0.668192 0.146959 -0.709967 -1.276646 -0.472112 0.537131 0.074825 -0.414654 0.393723 -0.844851 -0.013737 -0.326171 -1.179538 -0.318364 0.177761 -0.621192 -0.776331 1.116244 -0.348568 -0.031324 -0.049153 0.266280 -0.271423 0.826657 -0.228381 0.900805 -0.174230 0.419092 -1.754351 0.515480 0.440064 0.228549 -0.089757 0.592131 -0.353161 0.297479 -0.848019 0.399909 -0.620845 0.444007 0.633240 -0.408239 -0.744608 -0.298937 0.202248 -1.119058 0.406599 -0.782272 -0.701156 -0.350738 0.940982 1.088685 0.723350 1.041991 -0.881542 0.521804 -0.207591 0.150373 0.831279 -0.266805 0.622504 -0.538269 -0.951575 0.383245 0.549626 0.016452 0.251621 -0.393394 -0.082704 -0.869485 -0.122064 0.179090 0.450473 -0.310170 0.978552 0.586888 1.053703 -1.589422 0.594354 0.606390 -0.218987 0.367654 -0.318369 -1.258799 0.500969 0.360370 0.339602 0.844140 -0.160615 -0.464825 0.204310 -0.263852 0.593183 -0.713829 -0.020132 -0.787273 -0.594708 -0.691360 0.476057 -0.411868 -0.314839 -0.257660 -0.376222 1.113082 -0.908270 -0.713004 1.518656 -0.320637 0.324235 -1.105034 1.109282 -0.602907 0.594524 -0.392648 0.172523 -0.227483 0.833260 -0.511065 0.351577 0.586309 -0.585436 0.636824 1.411603 0.299326 0.523051 0.139714 0.982080 -0.337714 0.265538 -0.572930 1.265945 -0.120861 -0.557448 0.057352 -0.589187 0.236325 -0.410783 0.339988 0.910920 0.870454 0.086302 0.444829 0.727273 0.706129 -0.561004 0.834049 -0.143803 0.203296 -0.590572 0.018394 0.182390 -0.121205 -0.493067 0.421275 -1.205478 -1.098778 -1.065011 -0.731765 0.162116 -0.232354 0.000590 -0.189355 -0.060551 -1.133135 -0.785729 0.889054 -0.578949 0.161828 0.492395 0.588489 0.714904 1.332008 -0.501335 0.077854 -0.212185 -0.244156 -0.272925 -0.539012 -0.498429 0.970216 -0.679718 0.485343 0.824501 -0.186300 0.302484 0.360606 0.419452 -0.594655 1.225808 0.592736 -0.079818 0.810657 1.030696 1.807134 0.188105 -0.652693 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.105150 -8.122040 17.566496 13.348147 -4.042076 5.971925 1.131718 -11.774056 10.035946 6.330075 -2.640923 3.138292 -7.001262 2.176116 -0.921144 8.029042 -11.693886 -5.631924 -3.376669 -8.878606 -5.577047 -7.398750 1.546257 3.555530 4.940458 4.730189 -5.462170 0.687672 -3.563456 -14.758674 6.118274 -1.408881 5.761106 0.210854 4.218278 -25.657524 12.273282 8.925631 -3.693121 -12.650552 1.856432 -0.640379 -3.276955 1.663487 -4.659902 3.372526 -1.318253 7.178238 3.719316 5.078992 2.837714 2.555156 6.472143 20.708621 -2.255740 9.515857 7.245458 0.167780 -0.869807 3.972353 3.774504 3.247274 4.635068 6.047790 1.820881 -7.238237 -0.133207 -2.222376 -10.061907 8.998430 0.445072 -8.613196 -6.500379 -7.129330 -5.637561 -2.034154 -12.571130 9.706701 15.623563 -9.249014 9.043386 4.108541 3.608408 -0.355932 5.360963 -2.283837 11.970503 4.675221 -4.043480 1.115489 -1.671510 -7.323810 4.275378 -2.798185 -8.111868 -16.368632 7.079804 -11.048645 -11.635367 7.686896 5.598985 -3.427928 -7.903772 -5.655512 6.323320 2.616431 -6.186493 -9.911313 -5.999851 6.335194 -1.347489 -3.935225 -1.252168 1.334513 -0.817150 1.747101 -11.985519 0.272429 4.587886 -4.556982 -2.574840 8.843154 -0.248390 1.750071 -0.986453 2.943189 -3.184419 8.900060 0.919975 8.280961 0.100735 5.375705 -4.492506 5.455973 4.126660 -1.103890 0.664837 -2.490768 -0.996872 5.091079 -4.322149 7.318455 -5.292017 5.083663 10.891570 0.525340 -8.177626 -5.732551 -4.016251 -13.908582 3.478762 -8.682984 -6.574585 5.041249 7.917088 6.354023 4.229305 5.645564 -11.308140 5.137309 -3.164981 2.229463 3.319801 0.412160 4.405622 -5.055933 -8.987878 3.959270 5.070263 3.805509 2.846288 -5.230618 0.010840 -5.621297 -5.433785 5.708679 5.093866 -1.916325 6.767011 8.243077 19.684007 -7.255584 0.900636 3.922772 -4.161809 1.189326 -1.137151 -13.203203 2.715930 2.476535 4.781658 12.875052 -2.145471 -1.978751 3.881287 -2.601179 1.489436 -6.113064 4.033273 -8.578455 -1.546253 -6.176677 2.113280 -6.009654 -2.154638 -5.207047 -3.108235 13.001189 -13.245663 -8.596903 15.545810 -5.902890 4.263443 -11.993572 12.810166 -3.873509 6.446039 -3.481175 -2.428787 -1.896107 -1.400604 -5.136547 2.426517 4.064495 -2.869482 2.386369 14.533096 1.725609 0.336434 0.958347 8.693398 -4.928677 4.183974 -8.118652 12.607823 -2.525704 -2.187717 -2.671237 -3.901531 1.039389 -6.163953 1.909961 5.649394 4.726997 1.114352 2.420521 5.578282 4.639858 -5.932038 10.109176 0.720561 2.780233 -5.969664 -1.039619 1.672323 4.044594 -4.473316 5.316983 -12.842428 -9.698788 -16.666918 -8.228343 -5.350693 0.529013 5.428017 -2.466918 -2.660831 -8.140972 -9.341490 14.016592 -4.181396 1.724772 7.799876 6.658314 9.514237 12.804152 -1.890897 1.193109 -2.848824 -1.087509 -3.082189 -4.119858 -4.750482 8.798913 -3.969834 4.292713 10.525014 -0.198206 5.631066 -2.115984 7.246695 -7.847915 12.103016 5.731617 -4.012341 4.751945 8.989937 10.780227 -1.039752 -6.774319 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.148457 -0.682900 1.158859 1.094313 -0.341208 0.267154 0.310256 -0.461369 1.085951 0.294865 -0.235782 -0.000858 -0.795275 0.312800 0.640233 0.784442 -1.234720 -0.600687 0.184269 -0.324120 -0.401565 -0.763743 0.302773 0.014092 0.382574 0.743875 -0.227904 -0.264115 -0.056585 -0.045031 0.981339 -0.552375 0.592948 1.300030 0.329893 -2.279881 0.729767 -0.002763 -0.271962 -0.955598 -0.071243 -0.485010 0.506780 -0.680838 0.093446 0.356691 0.392935 1.194203 0.673804 0.320316 -0.182077 -0.496924 0.216146 1.398699 -0.551432 0.410416 0.291552 -0.293855 -0.150683 0.012281 0.362765 -0.064343 0.625813 0.780537 -0.292550 -0.556014 -0.286050 -0.861112 -1.059379 0.716852 0.300977 0.365067 -1.160843 -0.271157 -0.009728 -0.330215 -2.451016 1.217387 1.484523 -1.023589 0.871540 0.466788 0.761900 -0.030229 0.453034 0.106786 0.920533 0.240733 -0.792962 0.314276 -0.666923 -0.989759 0.247912 -0.846813 0.051200 -1.179113 -0.030379 -0.040547 -0.786107 0.528350 0.200786 0.401690 -0.552125 -0.170504 0.739691 0.548284 -0.623988 -0.949249 -0.257271 -0.192137 -0.212380 -0.215185 -0.009510 0.070632 -0.450336 -0.672793 -1.035718 -0.460965 0.105618 -0.700503 0.188875 0.728692 -0.447616 0.183807 -0.035402 -0.087288 -0.182529 1.310110 0.358228 0.444028 0.694224 -0.215502 -0.778833 0.674780 0.527951 1.161464 0.289021 -0.115086 -0.194991 0.251850 -0.663075 -0.199178 0.537050 0.485184 0.830609 -0.281770 -0.757634 -0.439943 0.004475 -1.000483 0.673271 -0.831499 0.586989 0.589180 0.743073 0.692957 0.657967 0.656669 -1.223824 0.616166 -0.641024 0.465163 0.557848 1.306877 0.601422 -0.383453 -0.208551 0.234550 0.385008 -0.013854 0.366915 -0.780297 0.209756 -0.690965 -0.295512 0.372725 0.480527 -0.291622 0.458500 0.201461 0.853197 -0.708725 0.173712 0.550467 0.244511 0.001386 0.271532 -0.949073 0.969786 -0.110059 -0.097883 0.054788 -0.231772 -0.461610 0.130250 -0.185332 0.112569 -0.312454 -0.275065 -0.469560 -0.345509 -0.694374 0.853385 -0.571148 -0.540993 -0.071413 0.459127 0.998426 -0.192955 -0.163635 0.814642 -0.835799 0.627435 -0.686071 1.524102 -0.573448 0.164346 -0.748774 -0.569984 -0.163963 0.028472 -0.025750 -0.190664 0.495470 0.154395 -0.126517 0.890537 0.404130 0.060430 0.492077 0.766199 0.214116 0.261396 0.017029 0.700406 -0.248490 0.452435 0.143432 -0.375263 0.444810 -0.054638 0.023449 1.334429 0.716131 0.336364 0.876970 0.237463 0.253785 -0.562408 0.264356 -0.085395 0.742877 -0.488508 0.072161 -0.117549 0.228123 -0.531500 0.405796 -0.879960 -1.165181 -0.456711 -0.000145 -0.808796 0.371881 0.237602 -0.050893 0.223090 -0.651611 -0.234577 0.071605 -0.426604 -0.204600 0.172625 0.157763 0.763485 0.964315 -0.403947 -0.781911 0.231115 -0.071303 -0.237302 0.275229 -0.835758 0.640604 -0.907266 0.356594 0.901825 -0.354683 -0.254083 -0.386600 1.772770 -0.473332 1.088857 0.529368 -0.419653 0.552155 0.967037 1.010302 0.439314 -0.548199 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator() = -0.082253 -0.375578 0.575701 0.532890 0.048914 0.125429 0.542693 -0.137508 0.793960 0.457756 -0.069702 -0.205388 -0.601233 0.082115 0.586729 0.448957 -0.494317 -0.437815 0.273371 -0.221948 -0.145578 -0.526097 0.212835 -0.246191 0.222719 -0.019724 0.028056 -0.460068 -0.219097 0.222090 0.678092 -0.389219 0.310082 0.671632 0.050776 -1.280927 0.319863 -0.135644 -0.208061 -0.495363 -0.017800 -0.400171 0.518566 -0.269824 0.490463 0.209476 0.378728 0.784098 0.494448 0.225422 0.124128 -0.500429 -0.059890 0.913524 -0.611290 0.203754 0.034455 -0.208689 -0.136516 0.238836 0.131587 -0.188881 0.437763 0.503609 -0.318756 -0.242710 -0.124658 -0.575883 -0.723406 0.338292 0.285155 0.291443 -0.710457 -0.017200 0.219928 -0.316110 -1.983638 0.596124 0.871925 -0.570264 0.652346 0.367262 0.623083 -0.017594 0.291748 0.112537 0.500710 -0.017394 -0.611424 0.079130 -0.732987 -0.537851 0.012235 -0.467932 0.263684 -0.497424 -0.100208 0.634416 -0.452636 0.294072 0.002405 0.397087 -0.479855 0.138893 0.419541 0.396608 -0.414257 -0.700395 -0.347091 -0.160836 -0.313751 -0.043263 0.077153 -0.342398 -0.411934 -0.702354 -0.511718 -0.376278 -0.020131 -0.495055 -0.240653 0.497800 -0.518839 0.139882 0.112485 -0.026328 -0.124160 0.682287 0.288281 0.240042 0.724901 -0.457062 -1.249956 0.374068 0.370846 1.109096 0.366582 0.156111 -0.192613 0.065419 -0.472944 -0.084559 0.592492 0.442894 0.512848 -0.353572 -0.315696 -0.186005 0.476489 -0.355515 0.598058 -0.445258 0.679972 -0.044486 0.433997 0.485678 0.424474 0.526555 -0.792990 0.535105 -0.503376 0.280710 0.336100 0.924805 0.459589 -0.230773 -0.001084 -0.152038 0.431586 -0.188387 0.196078 -0.481460 0.121027 -0.549256 -0.119570 -0.125393 0.145985 -0.372285 0.260031 0.101426 0.617565 -0.780395 0.141985 0.384412 0.212171 -0.017861 0.208971 -0.541892 0.659983 -0.027769 -0.283122 -0.133148 -0.089988 -0.421543 -0.002297 -0.182837 0.044892 -0.100524 -0.277155 -0.262707 -0.424321 -0.326254 0.577897 -0.461591 -0.506861 0.104900 0.529697 0.505260 0.508071 -0.073934 0.300001 -0.639152 0.095545 -0.436940 1.397835 -0.393119 -0.304357 -0.730850 -0.328391 -0.288332 0.666362 0.099617 -0.144158 0.229388 0.026180 0.199716 0.698318 0.310906 0.183045 0.352144 0.520374 0.194587 -0.062623 0.084034 0.385099 -0.243392 0.309430 0.159818 -0.226041 0.490570 0.173444 -0.060202 0.891319 0.569440 -0.057955 0.534507 0.183482 0.104978 -0.243174 0.141385 -0.012485 0.657339 -0.187069 0.118862 -0.130190 -0.157846 -0.319295 0.239941 -0.518514 -0.554816 0.485051 0.044226 -0.345638 0.429261 -0.018090 0.133058 0.327196 -0.666426 0.033858 -0.435139 -0.269345 -0.409493 -0.069558 0.041684 0.419139 0.578494 -0.242853 -0.596792 0.161357 -0.130644 -0.262548 -0.013023 -0.318683 0.320427 -0.726204 0.296058 0.294637 -0.145163 -0.352148 -0.234263 1.190917 -0.308184 0.653617 0.319778 -0.042871 0.424657 0.703699 1.001813 0.122255 -0.225734 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.002590 -2.236412 3.990259 2.842120 0.395314 1.402840 2.065714 -2.940371 3.384983 1.705869 -0.222157 0.189625 -3.238931 0.781844 -1.972752 1.833918 -1.767317 -2.788608 -0.883293 -2.442046 -1.241466 -2.643534 1.838462 0.269928 1.492472 -0.675727 -1.373703 -1.149955 -3.407651 -3.210155 2.409703 -0.579426 1.513872 -0.943142 -0.488274 -5.501300 2.826055 2.404866 -1.316287 -2.934907 1.298539 -1.094243 -0.694661 0.623200 0.036080 0.505180 -0.047067 1.667688 1.712579 1.508214 2.438925 0.608064 0.366787 5.480794 -2.488642 2.751874 1.472015 0.926354 -0.517440 1.862516 0.334428 0.859271 1.423547 2.276334 -0.553870 -1.262660 0.086250 -0.933734 -3.663222 2.621450 -0.535703 -1.330623 -1.849206 -0.688515 -1.636352 -0.575293 -2.186069 1.508613 4.748994 -2.422046 2.871648 0.895988 1.250136 -0.951425 0.889360 -0.552491 2.248578 0.755513 -1.424635 -1.196851 -2.464015 0.003869 -0.450127 0.313011 -1.395234 -3.336770 2.461900 -1.923536 -3.557176 1.180887 0.659040 -0.498283 -2.564121 0.203191 1.375112 0.957721 -2.046630 -3.671264 -2.241038 1.626446 0.031900 -0.733128 0.448136 -1.052654 -0.744597 -1.141396 -3.262612 -0.870506 0.431726 -2.539594 -2.166579 2.458481 -1.459643 1.085509 0.589499 1.387145 -0.809269 2.064604 0.410135 1.894155 1.414213 0.392535 -3.615964 0.414928 1.217725 2.225735 -0.353917 0.919911 -0.852215 0.687299 -1.567265 1.038126 -1.163105 0.727095 2.599739 -1.362495 -2.119948 -0.522075 0.985791 -3.711722 1.225651 -2.814027 -0.996560 -0.321871 2.063609 1.836243 1.488283 4.382126 -2.742259 2.068603 -0.166370 -0.277654 1.054208 -0.386032 1.781036 -1.349522 -3.343970 0.626425 1.568908 0.142254 0.425859 -0.957292 -0.577392 -2.992884 -1.757786 0.176405 0.726402 -1.313143 1.927932 1.751567 3.435516 -3.697294 1.027407 1.542713 -0.944833 0.805784 -0.463749 -4.191990 1.216398 0.628448 0.562254 2.862609 -0.134557 -1.562454 1.677068 -1.080284 0.977726 -2.167720 0.894175 -2.683073 -1.304732 -2.423826 0.339665 -0.787090 -1.189376 -0.407498 -0.321609 3.120899 -1.349148 -2.681129 3.466195 -0.558192 0.605895 -4.347965 3.773899 -1.321135 1.330316 -1.051910 0.332542 -0.819735 1.842464 -0.634583 0.087261 0.931776 -1.242464 2.640548 4.889611 0.442114 0.816670 0.810314 2.907347 -0.834272 0.615202 -1.920909 3.241435 -0.534315 -2.424377 0.387986 -1.326851 0.801275 -1.560397 0.490005 2.721487 2.719459 -0.615466 1.692638 1.925770 2.159838 -1.273495 2.577408 0.313841 1.740160 -1.350636 0.128767 0.381541 0.095800 -1.551347 2.105341 -3.335791 -3.985668 -1.961574 -4.208002 0.113450 -1.020697 1.152421 -0.669791 0.007553 -3.511043 -2.185859 1.464434 -1.425947 1.886255 2.167181 2.155478 2.392875 3.950999 -1.607018 0.422011 -0.074175 0.496253 -1.396587 -1.912066 -0.714010 1.441643 -1.426154 1.325207 2.055315 0.215666 1.002511 -0.799616 1.876024 -2.117487 4.106975 1.751903 -0.162672 3.092010 1.501781 4.500863 0.559621 -1.389175 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_create_nodes(queueEntry**, queueEntry**) = -1.718386 -1.981274 4.613693 2.543411 0.178516 1.779997 2.228645 -3.759860 4.959501 1.831174 -0.816519 -1.652994 -3.378352 -0.559315 -0.324717 1.044826 -2.479254 -2.749786 -0.502703 -3.129201 -0.743226 -4.003239 1.998460 -0.140427 0.881589 0.285518 -0.547320 -0.030396 -2.113799 -4.348160 4.491031 -0.725467 1.636807 1.100044 -0.201611 -7.641259 4.017511 2.169138 -1.314691 -3.038867 0.490008 -0.000978 -1.417786 1.752041 0.459097 1.275002 0.014162 2.878368 1.597240 1.389191 2.644519 -1.406966 -0.306776 4.830683 -2.595905 2.642819 0.937917 0.136724 -0.377029 3.058003 0.157376 0.857296 1.724991 4.253554 -0.801709 -0.641433 2.209152 -1.236985 -5.669664 3.519565 -0.217766 -2.156310 -1.008336 -0.993500 -0.713226 -0.180056 -1.398863 1.539481 5.687287 -1.230862 4.142913 1.316913 2.098876 -1.827847 0.470626 -1.027687 3.579147 0.618344 -2.486708 -1.430184 -3.555115 -1.971889 -0.143596 0.815641 -0.700257 -1.091546 2.221695 -1.558905 -2.970952 0.919507 0.771551 -0.150347 -4.518961 0.433200 2.352159 0.498256 -1.255323 -3.962988 -3.077588 1.859778 -2.609240 0.202486 -0.452426 0.119762 -1.698828 -0.862273 -2.934213 -1.801037 0.087570 -2.643888 -2.408523 2.412621 -2.676279 0.798019 0.961864 1.515713 -0.700444 1.332419 0.363248 1.701887 2.974451 -0.460920 -3.606848 -0.263610 0.969962 3.550867 1.276179 -0.578966 -0.161126 0.799631 -2.502097 1.109669 -1.596290 0.132257 3.966609 -1.347245 -1.722125 -0.032349 1.153921 -4.904918 1.702822 -3.412641 -0.818118 -0.047646 2.326105 2.283994 1.423877 4.726193 -4.933809 3.113705 -1.344745 -0.082655 -0.022800 0.769476 1.876158 -1.193154 -2.892513 -0.472122 1.398938 0.158060 0.841571 -2.822576 -1.316452 -3.622561 -3.192489 1.036365 0.166263 -0.766115 0.467724 2.111250 5.765384 -5.010835 1.068113 2.228846 -0.096242 0.111392 0.621284 -4.405931 1.436665 0.417399 1.251928 3.213579 -0.121158 -1.336007 0.293539 -1.020369 0.363744 -2.374864 0.672123 -2.786178 -0.259960 -2.293970 0.082550 -1.964634 -1.852502 -0.254683 0.643421 2.751695 0.205800 -4.432235 5.045406 -1.875263 1.296189 -4.796918 3.182930 -1.393710 1.255160 -2.197088 0.333594 -1.749194 0.891478 0.080297 0.237776 0.055671 -0.686044 3.627828 5.910072 0.661852 1.022975 0.798850 3.119660 -1.231078 -0.134025 -2.337506 3.016716 -0.637133 -2.071906 0.030129 -1.631768 1.621277 -1.701953 0.001543 2.502702 4.269500 -1.471610 2.217357 1.513826 1.179428 -0.909989 2.885709 1.688297 1.920221 -0.721232 0.028012 0.932846 0.228203 -2.381231 2.239010 -3.521410 -4.412032 -0.990706 -5.672694 -1.543386 -0.941887 1.798461 0.266023 0.985610 -3.501827 -1.412558 2.084936 -0.922453 3.497953 1.462066 2.435412 2.111874 4.604617 -1.963846 -0.177318 0.240696 0.685008 -2.947076 -2.309373 -1.127121 2.061675 -1.299874 1.819772 2.006895 0.298976 0.383436 -2.240148 2.970830 -2.924457 4.091270 2.203197 0.354217 2.957585 -0.348224 5.387660 1.474883 -1.224506 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_M_set_node(queueEntry**) = -0.294208 -0.892814 1.566300 1.467280 -0.159824 0.625964 0.218397 -1.033500 1.223337 0.743887 0.011670 0.297262 -0.905863 0.382639 0.193657 0.915899 -1.094448 -0.748117 -0.318331 -0.884885 -0.718670 -0.846663 0.128468 0.216161 0.444786 0.211702 -0.703329 -0.099504 -0.718125 -0.987533 0.753817 -0.286093 0.744003 0.143522 0.267930 -3.173453 1.146220 0.816210 -0.394003 -1.261377 0.122400 -0.644836 0.226119 -0.211337 -0.350390 0.272127 -0.043651 0.305642 0.719119 0.329544 0.448808 0.272847 0.344241 2.340771 -0.661653 0.939023 0.508593 -0.145183 -0.343415 0.313610 0.351380 0.291964 0.820244 0.648711 -0.222518 -0.835231 -0.178860 -0.450074 -1.274063 0.923053 0.078072 -0.556404 -0.899205 -0.550016 -0.609627 -0.556993 -1.475269 1.003648 1.666877 -1.137488 1.017286 0.341672 0.495554 0.157681 0.892364 -0.093465 1.448180 0.325556 -0.630586 0.223142 -0.288093 -0.565651 0.328216 -0.021849 -0.571759 -1.377719 0.486715 -0.610303 -1.287825 0.794152 0.380993 0.073083 -1.387692 -0.625756 0.727193 0.486813 -0.772342 -1.284520 -0.761495 0.530510 -0.010083 -0.556189 -0.073857 -0.388745 -0.254334 -0.460047 -1.301784 -0.189932 0.372529 -0.606237 -0.604523 1.158434 -0.453338 0.094121 -0.127392 0.267357 -0.423944 1.213086 -0.112396 0.816306 0.170595 0.116927 -1.338635 0.168235 0.402822 0.714858 0.047144 -0.204229 -0.374761 0.379209 -0.716088 0.510407 0.003619 0.771265 1.342384 -0.026632 -0.807027 -0.526702 0.020840 -1.496471 0.410883 -0.950043 -0.067543 0.558099 0.982622 0.792104 0.655153 1.011659 -1.077298 0.758871 -0.409789 0.070062 0.830307 0.380851 0.633180 -0.593167 -0.874036 0.454188 0.563461 0.326460 0.344198 -0.475777 -0.003236 -0.648527 -0.579235 0.396554 0.513335 -0.153560 0.850343 0.682892 2.161299 -1.299656 0.425997 0.452369 -0.256741 0.315845 -0.204728 -1.253882 0.420517 0.302045 -0.178753 1.050765 -0.309989 -0.647353 0.213699 -0.209562 0.368960 -0.696567 0.284841 -0.821091 -0.213543 -0.800169 0.044999 -0.627583 -0.448318 -0.482376 -0.149252 1.417017 -0.980114 -0.895124 1.477882 -0.625349 0.500372 -1.487658 1.646812 -0.618651 0.591994 -0.916284 -0.384275 -0.224558 0.497822 -0.456075 0.384414 0.644401 -0.496660 0.161394 1.653869 0.331391 0.278094 0.108922 0.965038 -0.045078 0.412748 -0.603186 1.458133 -0.222574 0.012174 -0.083136 -0.567654 0.371513 -0.328682 0.164998 0.889021 0.892150 0.128792 0.346560 0.855416 0.522740 -0.626207 0.848924 -0.029347 0.516607 -0.585050 0.024103 0.066737 0.390021 -0.361958 0.462650 -1.273941 -1.097474 -1.090811 -0.700689 -0.331917 0.623349 0.215184 -0.087377 -0.088941 -1.102286 -0.749262 0.946200 -0.600533 0.460481 0.485094 0.621189 0.982057 1.347205 -0.357016 -0.291606 -0.175888 -0.318534 -0.278246 -0.261286 -0.671407 1.010396 -0.722978 0.582624 0.944956 -0.141228 0.400579 0.100150 1.110336 -0.666449 1.464870 0.565041 -0.313904 0.801583 1.144716 1.442293 -0.079463 -0.706941 -PE-benchmarks/snake-ladder.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_node() = -0.368314 -1.310201 1.972320 1.560780 0.003995 0.882440 0.303947 -1.017193 1.425894 0.721810 -0.512052 0.557896 -1.046970 0.196276 -0.510340 0.696814 -1.125021 -1.245890 -0.142806 -0.824245 -0.513102 -1.058079 -0.160922 0.570591 0.514166 0.067163 -0.754868 0.000196 -1.631325 -1.115717 0.653673 -0.343948 0.654897 -0.275961 0.442910 -2.635236 1.256536 1.298909 -0.341347 -1.807340 0.140780 -0.846892 -0.048099 -0.139898 -0.120782 0.418306 0.203179 0.612890 0.479696 0.322720 0.316629 0.239030 0.111428 2.557845 -0.563881 1.287385 0.898597 0.083453 -0.054717 0.469511 0.486180 0.152281 0.828890 0.806996 -0.375842 -0.785492 -0.181620 -0.295593 -1.120959 0.952396 0.095333 -0.607722 -0.859089 -0.497093 -1.215608 -0.439773 -1.274160 1.030838 2.070941 -1.136795 1.463895 0.634247 1.129563 0.098840 1.053408 -0.154383 1.664104 0.511546 -0.829898 -0.045476 -1.139579 -0.387304 0.066206 -0.088898 -0.866742 -1.321499 0.801231 -1.586970 -1.623052 0.826539 0.283095 -0.160760 -0.982940 -0.123995 0.884264 0.579094 -0.766627 -1.424971 -0.788020 0.789607 -0.221722 -0.641049 0.257937 -0.414842 -0.086798 -0.444869 -1.424123 -0.198383 0.711330 -0.808362 -0.553078 1.424884 -0.564439 0.353862 -0.179414 0.217535 -0.296674 1.059530 0.183245 0.785361 0.015244 -0.061824 -1.830983 0.479472 0.345731 0.587378 -0.337816 0.206870 0.025806 0.527871 -0.442622 0.458501 -0.675294 0.731640 0.948166 -0.374625 -0.896731 -0.996531 -0.040912 -1.344478 0.294335 -0.962061 -0.668048 0.232197 1.198264 1.210119 0.629240 1.444668 -1.170678 0.837572 -0.253947 0.184620 0.631412 -0.173031 0.604131 -0.727963 -1.127756 0.611551 0.817659 0.353665 0.427389 -0.596919 -0.011617 -0.905266 -0.651884 0.585875 0.651142 -0.006759 1.423816 0.890016 1.296055 -1.742753 0.338819 0.355701 -0.406705 0.276397 -0.271621 -1.664153 0.611122 0.399259 0.409448 1.380841 -0.232038 -0.568633 0.410056 -0.208724 0.426773 -0.943821 0.445487 -1.148380 -0.421663 -0.799637 0.298666 -0.826379 -0.482983 -0.762695 -0.548542 1.673854 -1.100916 -1.359774 1.478974 -0.415790 0.662729 -1.835715 1.034684 -0.795006 1.119432 -0.373484 0.019645 -0.282041 0.487278 -0.503827 0.229356 0.813926 -0.822757 0.731703 1.533899 0.352812 0.299588 0.360083 1.043231 -0.391642 0.222029 -0.848949 1.240930 -0.192560 -0.481624 -0.046431 -0.654272 0.523958 -0.194453 0.246952 0.859919 1.000809 0.190113 0.515790 1.091295 0.456673 -0.764052 0.757826 -0.149890 0.702138 -0.703001 -0.122406 -0.242066 0.257134 -0.313598 0.454372 -1.720944 -1.533146 -1.578136 -1.333437 -0.149609 -0.240248 0.194128 0.034820 -0.010441 -1.610685 -1.038508 0.955109 -0.566936 0.850033 0.743454 0.765238 1.179731 1.337618 -0.570228 -0.223486 -0.052942 -0.104195 -0.565861 -0.519644 -0.751994 1.030595 -0.881558 0.815068 1.291607 -0.261332 0.504617 0.240837 0.852225 -0.906215 1.858393 0.973323 -0.850108 0.606590 1.069798 1.878347 -0.230147 -1.003953 -PE-benchmarks/snake-ladder.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_S_buffer_size() = -0.218478 -0.404421 0.333654 0.227742 -0.013551 0.191383 0.003816 0.074405 0.168943 0.030653 -0.279672 0.187840 -0.233518 -0.096473 0.103834 -0.012843 -0.142653 -0.313309 0.177629 0.093304 0.029220 -0.216995 -0.193204 0.269348 0.030473 0.295112 -0.077410 0.079451 -0.379280 -0.087123 0.042887 -0.091357 0.172813 0.345160 0.219322 -0.241826 0.059078 0.246296 0.037296 -0.472478 -0.058861 -0.101213 0.104244 -0.074920 0.072951 0.250996 0.259438 0.051251 -0.091875 0.018940 -0.171621 -0.275185 -0.068764 0.052817 0.130077 0.209773 0.334137 -0.023180 0.084442 -0.134843 0.164161 -0.163930 0.186370 0.190714 -0.260861 -0.014889 -0.071218 -0.116727 -0.197405 0.030427 0.058191 0.035134 -0.161212 -0.221817 -0.149368 -0.074715 -0.143167 0.144022 0.418446 -0.147395 0.436518 0.239540 0.457277 -0.002557 0.220206 -0.006842 0.157958 0.136116 -0.293983 0.138793 -0.279409 -0.217516 -0.094989 0.129119 -0.130051 0.239283 0.108881 -0.280051 -0.270494 0.191853 -0.070135 0.075032 -0.149167 0.210561 0.161908 0.268139 -0.113698 -0.214939 -0.085336 0.049276 -0.102866 -0.095219 -0.025613 0.148430 -0.145825 -0.128953 -0.222964 -0.096419 0.266909 -0.284086 0.130662 0.241231 -0.194987 0.281165 -0.059551 -0.106417 0.006511 0.307506 0.351538 -0.023088 -0.015940 -0.280253 -0.340471 0.035779 -0.010366 0.316799 -0.192416 -0.074292 0.219401 0.034452 0.139787 -0.113448 -0.123602 0.102662 0.261755 -0.079782 -0.175770 -0.372624 -0.184114 -0.252198 0.056891 -0.172897 0.143445 0.199617 0.181227 0.185831 0.007169 0.518831 -0.287821 0.127849 -0.092217 0.028207 -0.069519 0.219030 0.084485 -0.149525 -0.119525 0.186284 0.207561 0.019048 0.250457 -0.264963 0.072194 -0.139437 -0.157357 0.339123 0.134957 0.104238 0.289954 0.077836 -0.083429 -0.118048 -0.113955 -0.087890 0.060481 -0.034107 0.039233 -0.304765 0.245051 -0.023564 0.116117 0.139560 -0.029018 -0.057132 0.121369 -0.055654 0.038271 -0.203392 0.219210 -0.246642 0.066443 -0.159225 0.135168 -0.232601 -0.116190 -0.131678 0.019497 0.343222 0.072350 -0.250956 -0.028468 0.118889 0.306166 -0.284437 -0.152712 -0.139396 0.463947 -0.006682 -0.019745 -0.014287 -0.161344 0.201903 -0.192004 0.174172 -0.019063 0.002340 0.026426 0.042157 -0.128333 0.267453 0.087299 0.022702 -0.085772 -0.030736 -0.036545 0.005013 0.063651 0.108576 -0.084867 0.196691 0.129289 -0.146512 0.153999 0.237843 0.027494 0.154216 0.093497 -0.128046 -0.183874 -0.117530 0.028700 0.396507 -0.123754 -0.073896 -0.283575 0.249733 0.001015 -0.061304 -0.287045 -0.380848 -0.115790 -0.357103 -0.276749 0.004119 0.024572 0.148228 0.067226 -0.158964 -0.093125 0.131974 -0.058260 0.580381 -0.016757 0.109505 0.314159 0.119575 -0.165834 -0.290013 0.138222 0.026608 -0.212446 0.138832 -0.193566 0.050275 -0.201328 0.125471 0.256975 -0.127538 -0.024662 0.013340 0.324870 -0.186868 0.417084 0.273838 -0.393000 0.027585 0.067379 0.319785 -0.106208 -0.232574 -PE-benchmarks/snake-ladder.cpp__std::deque >::push_back(queueEntry const&) = 3.002275 -3.685529 10.750361 9.616081 -1.267364 3.074542 -0.521249 -8.650053 6.335424 3.858760 -0.950988 2.938556 -3.715837 3.710502 -4.253960 7.114062 -7.265455 -3.468884 -4.116823 -5.989027 -4.331342 -3.456317 2.505401 0.650167 4.443197 2.404724 -5.261250 0.761795 -3.720387 -9.915337 2.472701 -0.614789 2.617046 -2.341083 1.565049 -10.992530 8.671037 6.610938 -2.715952 -6.732708 2.058370 -2.302067 -2.721024 -0.841265 -1.587448 1.578733 -2.592871 3.222234 4.035130 3.434967 3.116421 5.289643 4.335342 12.110898 -3.109012 6.017337 3.379362 1.282433 -0.603760 2.549603 2.158749 4.145494 2.085339 2.599373 1.959494 -6.440614 -2.143161 -0.687425 -3.927981 6.432961 -1.318561 -5.034193 -5.337256 -3.416514 -4.806770 -0.494712 -9.959559 6.098954 8.455874 -6.338288 2.963289 1.225361 0.410067 -0.089492 3.208967 -1.442104 7.307547 3.239563 -0.675215 -0.395172 0.079793 -2.456365 3.255322 -2.504007 -6.141904 -11.529974 4.678028 -9.211131 -7.573511 3.396299 4.474020 -2.872495 -2.801833 -2.953272 2.801747 0.652770 -2.871411 -5.324034 -0.960512 3.454771 2.329142 -3.559087 -0.278836 -1.578250 0.584245 2.257780 -8.323654 1.064323 1.342081 -1.566328 -1.928622 5.067381 1.527551 -1.412565 -1.731574 1.964592 -2.139433 5.308619 -2.392802 6.921726 -1.215178 6.446658 -3.025354 5.335829 3.781058 -3.721390 -1.647343 1.848588 -2.693825 2.892393 -4.412709 4.338717 -4.835018 2.978265 4.946658 -0.819526 -5.758774 -2.380619 -2.814766 -7.454427 1.590498 -4.546496 -6.004631 0.676904 5.437819 4.370753 4.337788 3.319922 -5.604727 0.726598 -0.033307 1.529164 4.951917 -1.879180 2.538589 -3.122816 -6.247561 4.286818 2.220977 1.406808 0.970534 -0.056640 0.282847 -3.831208 -0.882002 3.885019 2.797884 -1.698692 5.714737 4.733944 8.441741 -3.912953 2.227207 3.643942 -3.288675 1.668689 -1.569507 -7.709560 1.729362 1.743650 4.791910 7.866424 -1.068529 -0.818402 2.251732 -1.249392 2.294073 -3.713758 1.586718 -4.731466 -2.060762 -3.854147 1.987020 -1.095290 -0.668605 -2.342735 -3.173556 7.710808 -9.104884 -3.787893 10.270947 -3.474117 1.197840 -6.161851 6.464180 -3.090649 3.021338 -0.253345 -0.122014 0.194455 -0.545673 -6.165141 2.049309 3.609119 -2.574678 1.350715 8.193017 1.386016 0.217526 -0.984109 5.110152 -3.672573 5.002797 -4.646125 8.958146 -0.780222 -2.209338 -1.799895 -2.572411 -1.472491 -5.451352 1.710644 4.782502 1.664605 2.694733 1.205369 2.879045 6.155184 -4.364786 7.670451 -0.609850 -0.911142 -4.120783 -0.986471 2.991214 0.682798 -2.515355 3.756793 -7.471452 -5.716441 -11.230494 -3.989579 -0.013500 -2.030174 3.084269 -3.293547 -3.065615 -4.610173 -7.468438 8.811269 -2.777294 -0.830651 5.273260 3.382111 4.193895 7.187808 -1.543153 3.161263 -3.522687 -0.537816 0.716114 -3.562735 -2.871726 6.989324 -1.571945 1.056224 7.315749 -1.217750 4.610350 0.099485 2.419123 -3.505872 6.754319 2.206916 -1.599474 3.811444 6.412806 6.654679 0.134704 -4.447190 -PE-benchmarks/snake-ladder.cpp__void std::deque >::_M_push_back_aux(queueEntry const&) = 3.200807 -4.767492 12.186768 10.579527 -2.100377 3.790811 -0.658124 -9.150229 7.209320 3.209049 -1.621191 3.182599 -4.371015 3.725871 -5.012766 6.875955 -8.595260 -4.163998 -4.293542 -6.511273 -4.595379 -4.109380 1.689549 1.756113 4.583429 3.111366 -5.388160 1.153511 -4.732015 -9.287904 3.120861 -0.855029 2.826809 -2.034185 2.545231 -12.673001 9.292225 7.400906 -2.759816 -8.151045 1.819007 -3.187534 -2.694998 -1.618165 -2.120713 1.596347 -2.378845 4.629591 4.115728 3.107635 2.112940 5.278962 4.188504 14.233855 -3.143945 6.795354 4.237111 1.371899 -0.302888 2.666260 2.439482 4.088887 2.262308 2.819681 1.724914 -6.900392 -2.289377 -1.154344 -4.075045 6.971187 -1.075904 -5.194667 -6.037544 -3.947079 -6.487479 -0.789326 -11.898294 7.498235 9.850138 -7.678235 3.875306 1.745553 1.387391 0.393182 4.154972 -1.370111 8.671095 3.618020 -1.205324 0.109777 -1.250614 -2.674931 3.411452 -4.028680 -6.947506 -13.619082 5.230837 -11.547313 -8.632448 4.016267 4.570849 -3.193781 -2.183526 -3.246179 3.241431 0.893340 -3.622720 -6.066617 -1.017984 4.189139 2.395866 -3.791310 0.463483 -0.984737 1.138753 1.377583 -9.286471 1.233246 2.119008 -1.902273 -1.298626 6.303237 1.282875 -1.078124 -1.816566 1.806323 -2.202901 6.548417 -2.063745 6.937922 -1.826006 6.443783 -3.301723 6.184677 3.766299 -3.259722 -1.838466 2.148898 -1.986740 3.484702 -4.369260 4.168294 -5.346780 3.036035 4.156866 -1.164462 -6.171935 -3.430319 -3.578898 -8.133204 1.398052 -5.035652 -7.169155 1.498105 6.204066 6.175678 4.481999 3.686569 -6.216945 0.895750 -0.271694 1.777030 5.104927 -1.730022 2.825688 -3.582819 -6.824004 4.717528 2.142091 2.014343 1.275727 -0.702315 0.279192 -4.332902 -0.877683 4.346143 3.714108 -1.599093 7.184165 5.653022 7.476737 -5.060292 2.386241 3.590239 -3.853936 1.813780 -1.662963 -8.715409 2.326102 2.101332 5.016816 8.391158 -1.430414 -0.558796 2.644225 -1.431213 2.575620 -4.327578 1.302880 -5.424174 -2.792717 -4.651330 3.066541 -1.844053 -0.912041 -3.388795 -4.243456 8.822587 -11.036412 -4.147207 11.242667 -3.271919 2.302524 -6.705712 6.577217 -3.564188 4.540285 0.269549 -0.111011 0.220436 -0.869842 -6.472592 1.997360 4.233346 -3.203138 1.433522 8.499398 1.619583 0.374641 -0.363943 5.970336 -4.330552 5.126103 -5.445050 9.316554 -0.907325 -2.687868 -1.602570 -3.040839 -1.238985 -5.398295 2.460377 5.783356 2.116126 3.724929 1.771349 3.701560 5.910782 -4.630547 7.519020 -1.175481 -0.797017 -4.921839 -1.011206 2.580719 1.112776 -2.506911 3.685951 -8.866190 -7.229252 -13.596889 -4.051400 -0.154400 -3.248923 2.930927 -3.143638 -3.119502 -5.664714 -8.417138 9.264336 -3.259074 -0.899972 5.849316 3.844346 5.148429 8.064351 -1.902175 2.928449 -2.570124 -0.134592 0.459648 -3.263791 -4.037762 7.722776 -2.437869 1.607440 8.879002 -1.543836 5.161983 0.473807 3.150544 -4.306377 7.908972 3.023546 -3.096325 3.709790 7.838277 7.208416 0.744091 -5.253010 -PE-benchmarks/snake-ladder.cpp__queueEntry const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/snake-ladder.cpp__std::deque >::size() const = 0.585102 -1.359354 2.933315 2.555776 -0.501565 1.222328 -0.516226 -1.833687 1.092541 1.056610 -0.370288 1.149007 -0.794177 0.614900 -0.695507 1.350612 -1.694900 -0.602429 -0.964225 -1.326981 -0.818464 -0.690480 -0.414301 0.994952 0.869387 0.847024 -1.120258 0.641081 -1.138965 -2.628753 0.051015 -0.023850 0.689661 -0.680174 1.121624 -2.520009 2.164469 2.059053 -0.421836 -2.120433 0.290671 -0.402435 -0.578860 0.052625 -0.664903 0.729625 -0.294798 0.493430 0.576045 0.860816 0.150288 1.043161 1.595141 2.753004 -0.036514 1.676637 1.384365 0.070162 0.410254 0.319509 0.352114 0.640009 0.282012 0.181110 0.516775 -1.499573 -0.530608 0.211381 -0.577760 1.112545 -0.251572 -1.591458 -1.198665 -1.286045 -1.622363 -0.196107 -2.838020 1.476276 2.060938 -1.521938 1.067546 0.502194 0.258951 0.542867 1.387379 -0.143657 1.651804 0.930334 -0.346199 0.713686 0.308899 -0.722201 0.950572 -0.671618 -1.960477 -2.893512 1.168933 -2.692615 -1.815841 1.492633 0.805948 -0.923229 -0.349907 -1.265824 0.468422 0.323242 -0.943937 -1.249155 -0.059329 1.318950 0.649819 -0.936985 0.099631 -0.119199 0.433186 0.635165 -1.825277 0.697449 1.015712 -0.241207 -0.189215 1.623884 0.744519 0.065855 -0.537638 0.414465 -0.597076 1.456585 -0.106727 1.580696 -1.144332 1.286921 -0.665252 1.450382 0.673288 -1.639032 -0.505853 0.225372 -0.146464 0.912791 -0.278959 1.541471 -1.202234 0.863729 1.044153 0.200161 -1.140762 -1.153961 -1.351341 -1.594865 0.138005 -0.803854 -2.006886 0.631605 1.307640 0.921189 0.680635 0.254845 -1.132001 -0.311223 -0.273517 0.304083 0.861279 -0.522583 0.439466 -0.808453 -1.425852 1.221450 0.717083 0.612859 0.562968 -0.269315 0.301685 -0.371462 0.295920 1.245753 0.857287 -0.349300 1.919660 1.523572 2.183349 -0.127076 -0.023564 0.325551 -1.176736 0.388401 -0.555983 -1.718148 0.220329 0.697504 0.923977 2.203691 -0.442592 0.112059 0.903020 -0.326517 0.493446 -0.905491 0.775608 -1.229590 -0.436016 -0.780602 0.389085 -0.614647 -0.163024 -1.231338 -1.072328 2.096649 -2.826076 -0.646759 2.069314 -0.527818 0.297488 -1.162006 1.408809 -0.708870 1.261944 0.456171 -0.185018 0.153277 -0.245980 -1.320422 0.385082 0.994475 -0.897224 0.127780 1.490095 0.287916 -0.298307 -0.035368 1.148994 -1.199097 0.831554 -1.446726 1.829018 -0.373256 -0.022402 -0.492147 -0.586217 -0.288197 -1.140482 0.306590 0.349510 0.009073 0.586797 -0.371722 0.904805 0.752108 -0.801047 1.512259 -0.380252 -0.179670 -1.354112 -0.323750 0.231378 0.616108 0.104174 0.590006 -2.165691 -0.878527 -3.351619 -0.446009 -0.332163 0.012482 0.523309 -0.313369 -0.828522 -1.170936 -2.120499 2.949498 -0.654996 -0.574329 1.385191 0.905725 1.297700 1.538049 0.264028 0.479029 -0.865002 -0.205484 0.118872 -0.342168 -0.657623 1.728713 -0.526022 0.303828 1.867384 -0.283691 1.438895 0.308796 0.253195 -1.224525 1.662569 0.728005 -0.903356 0.433357 2.107474 1.329115 -0.646280 -1.136467 -PE-benchmarks/snake-ladder.cpp__std::deque >::max_size() const = -0.164721 -0.650105 1.140082 0.889873 -0.065289 0.492649 0.180554 -0.780042 1.033707 0.153616 -0.178458 0.030527 -0.735608 0.155692 -0.468093 0.314390 -0.706279 -0.715823 -0.280134 -0.684125 -0.394995 -0.704618 0.098874 0.202854 0.309517 0.127790 -0.414325 0.049271 -0.963388 -0.326104 0.725640 -0.161387 0.352592 0.006022 0.166075 -1.563563 0.767724 0.718408 -0.264768 -0.894249 0.078349 -0.568651 0.006645 -0.218305 -0.041734 0.114730 -0.088827 0.420939 0.479661 0.082659 0.273943 0.132651 -0.155484 1.559674 -0.599769 0.718210 0.348830 0.129734 -0.115994 0.416825 0.201600 0.255766 0.418672 0.512726 -0.261080 -0.501644 -0.014443 -0.354733 -0.768523 0.737632 -0.074329 -0.350408 -0.533218 -0.338713 -0.736177 -0.287714 -0.984815 0.636824 1.204455 -0.796002 0.755040 0.244872 0.520705 0.036376 0.528829 -0.101779 0.967491 0.222852 -0.442839 -0.003804 -0.713535 -0.028112 0.055728 -0.211799 -0.495523 -0.919349 0.555874 -0.963972 -0.976888 0.348577 0.257454 -0.050197 -0.579979 0.018404 0.388741 0.212195 -0.514855 -0.877670 -0.329243 0.498579 0.003453 -0.243136 0.161847 -0.198574 -0.069653 -0.503983 -0.906502 -0.128523 0.204741 -0.451903 -0.336245 0.888780 -0.456978 0.046358 -0.020915 0.164174 -0.243571 0.812023 -0.075624 0.419755 -0.057545 0.102033 -0.996002 0.154659 0.246854 0.655000 -0.127336 0.167249 -0.071856 0.234224 -0.504948 0.114219 -0.377625 0.175749 0.417958 -0.356134 -0.497931 -0.340444 -0.065756 -1.022358 0.129066 -0.627177 -0.408514 0.165550 0.706410 1.027635 0.438943 1.063031 -0.722856 0.393798 -0.161122 -0.060783 0.441730 0.074869 0.455849 -0.420300 -0.706060 0.294273 0.194611 0.190216 0.247817 -0.324232 -0.119044 -0.716506 -0.253750 0.268144 0.369322 -0.107466 0.741779 0.601970 0.418743 -1.216099 0.373941 0.359050 -0.225974 0.208025 -0.083641 -0.971995 0.377215 0.243492 0.101424 0.667357 -0.152044 -0.236776 0.155559 -0.246032 0.360805 -0.629035 0.039022 -0.629674 -0.320066 -0.681746 0.329213 -0.422558 -0.317482 -0.351079 -0.401771 0.907341 -0.682428 -0.658004 1.067942 0.004227 0.458483 -0.901591 0.518815 -0.453369 0.784264 -0.229837 0.052263 -0.146359 0.286004 -0.301725 0.118875 0.388225 -0.442690 0.403587 1.040129 0.242593 0.236165 0.163861 0.778939 -0.309671 0.265107 -0.536884 0.800664 -0.075987 -0.488902 0.150573 -0.454080 0.164338 -0.294769 0.238134 0.862812 0.776222 0.285453 0.430226 0.543626 0.410020 -0.376725 0.430955 -0.018051 0.273564 -0.406206 -0.032314 0.103847 0.194190 -0.297422 0.218442 -0.979839 -1.167390 -0.858551 -0.787377 0.054220 -0.388985 0.025555 -0.032895 -0.036906 -0.862690 -0.643595 0.466207 -0.446324 0.672840 0.324474 0.481005 0.639170 1.001804 -0.546328 0.000539 0.236027 0.094105 -0.262995 -0.255013 -0.615564 0.768228 -0.485609 0.350878 0.868679 -0.174167 0.326995 0.157843 0.586108 -0.577200 1.051160 0.461586 -0.392359 0.607997 0.646298 1.157931 0.353572 -0.520387 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.796507 -4.510927 9.459562 8.214862 -1.170116 4.033997 -1.598172 -6.084253 3.904942 4.447574 -1.660787 4.135592 -2.398848 1.688584 -2.058811 4.783818 -5.373432 -2.218929 -2.611906 -4.018734 -2.893741 -2.513419 -1.438549 3.130483 2.817106 2.608966 -3.789795 2.292247 -3.400187 -9.966656 -0.499054 -0.058114 2.104600 -2.888786 3.618739 -8.243300 7.302933 6.911997 -1.311117 -7.283336 0.744064 -0.937349 -2.397447 0.952334 -1.903970 2.511460 -0.661152 2.279834 1.402422 3.098224 0.923061 3.346512 5.464040 9.319958 0.524420 5.936150 5.032459 0.499293 1.118496 1.349218 1.653601 1.906975 1.303974 1.133220 1.642449 -4.481427 -1.405497 1.246593 -2.021543 3.714898 -0.349209 -5.782036 -3.648432 -4.240323 -4.751594 -0.438852 -7.950179 4.455355 7.113259 -4.581452 3.807200 2.281588 1.433343 1.430323 4.489435 -1.153037 6.201291 3.256868 -1.554827 1.608216 0.696141 -3.130352 3.072796 -1.778862 -6.420654 -9.093505 3.599708 -9.110444 -6.372282 4.820682 2.601680 -2.988489 -1.543174 -3.879879 2.645424 0.838462 -2.588391 -4.157067 -0.799468 4.102394 0.822088 -3.402106 -0.035371 -0.424314 1.396900 3.462547 -6.160216 1.749579 3.738278 -1.035290 -0.874725 5.028224 2.553243 0.678880 -2.007611 1.158109 -1.318977 3.787860 -0.052273 5.247560 -3.154251 4.353700 -1.967792 5.270987 1.915821 -6.569226 -1.630945 0.736107 -0.022847 3.241598 -0.851807 5.714819 -4.963779 3.379683 3.777186 1.030180 -4.054921 -4.206104 -4.330080 -4.974689 1.006632 -2.743605 -6.863219 1.079423 4.450446 2.312979 1.983015 0.391020 -4.100973 -0.410564 -0.663971 1.925186 2.456595 -2.381014 1.367357 -2.768057 -4.809797 4.107188 3.336748 1.720733 1.675143 -1.173800 0.913124 -1.160019 -0.049581 4.097778 2.455105 -0.718355 6.149637 4.544513 9.099887 -0.760973 -0.006621 0.886750 -3.380182 1.270119 -1.964518 -6.045891 0.654093 2.013192 4.572343 8.081315 -1.173310 0.052627 2.661526 -0.501865 1.293311 -3.003466 3.153840 -4.333072 -1.265435 -1.838483 1.367503 -2.208544 -0.293572 -4.023727 -3.091761 7.025699 -8.943841 -3.194851 7.150182 -2.604316 1.127707 -4.442208 4.630120 -2.342937 3.747207 1.147991 -0.652093 0.445944 -1.306287 -4.141755 1.610248 3.320583 -2.727700 0.840225 4.724119 0.676939 -0.552241 0.007298 3.144087 -3.904193 2.329250 -4.759616 6.175002 -1.026946 -0.193888 -2.379773 -1.943823 -0.315244 -3.425639 0.577251 0.364022 0.162832 1.026870 -1.317420 2.910190 2.212046 -3.275469 5.574401 -0.765046 -0.457328 -4.326602 -1.173275 0.465496 1.321161 0.026757 2.486765 -7.097992 -2.287809 -10.902084 -2.229711 -1.676047 0.287873 2.347013 -1.122333 -2.586494 -3.809992 -6.788744 10.424560 -1.796824 -1.673759 4.805933 3.365811 4.356116 4.858520 1.172796 1.636024 -3.664673 -1.431427 -0.357899 -2.045651 -1.525011 5.419057 -1.215232 1.718127 5.620872 -0.646546 4.455035 0.331641 0.416504 -3.738564 5.285150 2.659958 -2.878200 0.670266 6.183544 5.123516 -3.357610 -4.101984 -PE-benchmarks/snake-ladder.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.689538 -4.176894 5.770710 5.159977 -0.048103 3.788901 -0.654642 -2.335769 0.462580 2.992765 -0.258955 3.658298 -2.159600 0.311851 -0.130732 1.192293 -1.880166 -1.330784 -1.580593 -1.640367 -0.076107 -1.398396 -2.408804 4.511852 1.162801 0.278023 -2.295375 1.083195 -4.785411 -5.440817 -0.747615 0.229542 2.596006 -2.564054 2.451633 -5.691047 3.965130 5.509671 -0.053001 -5.230899 0.872559 -0.579486 -0.954341 1.111109 -2.617494 1.988260 0.327546 -1.856341 0.189085 1.452450 -0.581094 1.560429 3.808417 4.396281 0.806482 3.836778 3.637810 -0.603096 1.782066 -0.422648 -0.096104 0.419388 1.119173 -0.192397 0.237068 -2.363563 -0.389948 1.687919 -1.981630 0.771687 -0.187517 -2.992533 -1.339780 -1.988050 -4.185920 -0.420614 0.860462 1.716030 4.101002 -1.423973 3.788322 0.746419 0.431002 1.656058 3.889719 0.464199 1.757628 1.820307 -1.200419 1.793731 -0.348780 -0.524566 1.138569 1.466313 -4.249168 -3.306378 2.246381 -4.149036 -3.342171 3.927306 0.086786 -2.432977 -2.158000 -3.766801 0.472125 1.930638 -2.226811 -3.017204 -1.168324 4.108271 1.039947 -2.484101 0.354627 -0.653199 0.564186 0.007003 -2.251052 1.595759 3.416900 -1.050597 -1.269796 3.909330 0.380271 1.795978 -1.005678 1.406075 -1.631487 1.586126 0.933938 2.539255 -2.221798 -0.329597 -1.476724 -0.143725 0.285597 -1.817103 -1.499819 -1.021756 0.013681 2.000319 2.019515 3.968141 -0.913974 2.118683 2.431451 1.166894 -0.892807 -3.097495 -2.039036 -2.816544 -0.645554 -1.013259 -3.804546 2.679972 2.512741 -0.700595 0.383792 1.331387 -1.207175 -0.056605 -0.493029 -0.662934 1.065857 -2.074682 0.257956 -1.643807 -3.409281 2.570672 2.140501 2.046291 1.194287 -0.482512 0.634436 0.641237 0.099304 1.723762 1.300515 -0.236622 4.455205 3.316647 5.830387 0.705290 -1.016274 -0.695634 -3.067482 1.101432 -1.925922 -3.308227 -0.528263 2.082278 -0.696419 5.740391 -1.251271 -1.405374 3.160115 -0.443900 0.765754 -2.310317 3.883586 -2.946252 0.166449 -1.557734 -2.487431 -1.417965 -1.079362 -4.227220 -1.881340 4.680123 -5.062567 -2.627609 2.039119 0.495391 0.179996 -4.185993 2.654592 -1.340881 3.343954 1.483715 -0.666116 0.377253 0.903309 -2.080950 0.361382 2.161261 -3.184171 1.410885 2.813360 0.412841 -1.332039 0.124086 1.638822 -1.448558 0.033708 -3.776429 2.646404 -1.025156 0.490873 -0.982809 -1.238547 0.660314 -1.467809 -0.248938 -2.436732 0.314364 -0.032892 -2.083186 3.235628 -0.119489 -0.478026 1.947753 -1.062042 0.811665 -2.357538 -0.485635 -1.290774 2.596674 2.182842 1.692317 -4.902352 -1.199664 -5.231102 -2.341973 -0.560436 2.306983 0.597575 1.092115 -1.145818 -4.056462 -4.129722 5.335400 -1.143723 1.473320 3.262489 2.237368 2.902030 2.130809 1.223900 -0.059757 -1.493501 -0.050123 -0.607914 -0.093305 -0.571269 2.547743 -1.470155 1.498820 2.955682 -0.156533 3.291014 0.090295 -0.640423 -3.325288 4.537854 2.237687 -2.437683 0.570852 3.079499 2.184362 -3.477099 -2.028827 -PE-benchmarks/snake-ladder.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.685790 -1.190648 2.165852 1.621221 0.354244 0.873517 0.945493 -1.415804 2.186204 1.355817 -0.223593 -0.336300 -1.486394 0.087313 -0.324658 0.870964 -1.072410 -1.415127 -0.316788 -1.312204 -0.508945 -1.593366 0.650730 -0.153851 0.593807 -0.552835 -0.675200 -0.393974 -1.459188 -1.414530 1.693657 -0.461342 0.895332 -0.376155 -0.281987 -3.800919 1.693832 1.171244 -0.636843 -1.606315 0.243399 -0.573358 -0.175388 0.283014 -0.072640 0.301230 -0.021594 0.766653 0.915062 0.523105 1.186599 -0.121210 0.011104 3.384079 -1.413203 1.319523 0.411458 0.090441 -0.313444 1.232221 0.384337 0.481915 1.017250 1.510242 -0.135491 -0.716580 0.410846 -0.562143 -2.216428 1.557878 -0.165922 -0.644677 -0.705870 -0.187320 -0.719359 -0.388973 -1.116479 0.942003 2.537458 -1.001131 1.770549 0.611811 0.913408 -0.224184 0.424736 -0.192292 1.619424 0.339229 -0.944840 -0.587587 -1.280593 -0.319385 0.034454 0.143866 -0.547917 -1.353225 1.073702 -0.514177 -1.584082 0.664469 0.432391 0.025107 -1.818163 -0.154071 0.946531 0.532054 -0.830996 -1.825349 -1.417764 0.832819 -0.596263 -0.359454 0.150823 -0.707089 -0.505298 -0.701376 -1.474568 -0.694477 0.066463 -1.146832 -1.277849 1.439725 -1.147413 0.163980 0.169659 0.646666 -0.455273 0.883362 -0.004120 1.199829 0.821345 -0.008680 -2.453391 -0.247475 0.684590 1.565006 0.463115 0.057688 -0.433882 0.483829 -1.064075 0.641223 -0.306298 0.406709 1.591763 -0.641824 -0.813114 -0.457300 0.779836 -1.932077 0.490200 -1.448989 -0.296362 0.183392 1.394764 1.324436 0.926215 2.252901 -1.959721 1.451565 -0.595068 -0.140853 0.521606 -0.026959 0.798825 -0.624095 -1.350619 -0.013529 0.988003 0.307122 0.289653 -0.956496 -0.387048 -1.421143 -0.915195 0.164485 0.325991 -0.556210 0.701941 0.999695 2.396040 -2.751377 0.756221 1.005123 -0.225457 0.272670 -0.033638 -2.138134 0.637074 0.370178 -0.035191 1.278849 -0.182883 -0.941782 0.263304 -0.691981 0.268952 -1.052914 0.303776 -1.216388 -0.451391 -1.098487 0.085832 -0.979707 -0.770036 -0.336378 0.044166 1.575385 -0.584545 -1.667977 2.096734 -0.486038 0.128449 -2.202075 2.125754 -0.828563 0.657238 -1.044588 -0.100588 -0.694505 1.324877 -0.405664 0.135962 0.512949 -0.813074 1.447547 2.736125 0.527546 0.546230 0.190129 1.566768 -0.333366 0.169467 -1.052224 1.515061 -0.282749 -0.959711 -0.111870 -0.900301 0.761030 -0.592337 0.258829 1.184954 1.736794 -0.349461 0.912233 1.079799 0.822171 -0.560570 1.228560 0.360734 1.025288 -0.435459 0.177679 0.225810 0.096100 -1.010888 1.019473 -1.798038 -1.865099 -0.805238 -1.848655 -0.221595 -0.077268 0.344385 -0.075455 0.314957 -2.003722 -0.948595 0.617669 -0.752739 0.966247 0.700550 0.931800 1.056433 1.944935 -0.929363 -0.130757 0.007426 -0.016908 -0.878492 -1.075832 -0.598570 1.315386 -0.970836 0.852806 1.104769 -0.111747 0.297107 -0.098606 1.077442 -1.180052 2.148019 1.048170 -0.004098 1.306496 0.653055 2.740657 0.224016 -0.812774 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.388837 -12.794543 29.865205 25.634512 -4.810824 11.173724 -4.259633 -20.905447 14.237460 12.614031 -4.615283 11.484353 -7.857382 6.539700 -7.483233 16.587771 -18.649420 -7.620415 -8.665144 -14.511454 -11.183654 -8.385933 -1.359786 7.267732 9.624219 9.171936 -12.818800 5.369026 -8.897327 -30.088437 1.217487 -0.569465 6.989738 -7.146907 9.458264 -30.699458 22.727189 20.046016 -5.402586 -21.596207 3.163888 -3.726556 -7.187478 2.050717 -6.583068 6.356435 -3.885167 8.130085 6.196664 9.160032 5.119766 11.842658 15.516872 32.436428 -0.849332 18.046518 13.688406 1.847138 0.793246 5.115225 6.230653 7.467617 5.381039 4.931315 5.102561 -15.322786 -4.654759 1.709199 -8.273840 13.745112 -1.057938 -17.942934 -12.037666 -13.009386 -13.286724 -2.318078 -25.765817 15.258240 22.648667 -15.713391 10.893424 6.392006 3.831151 2.606252 12.631368 -4.426246 21.407429 9.703071 -3.927073 3.134888 2.618861 -9.366779 9.860390 -5.683685 -19.233109 -30.059267 11.910999 -27.498708 -20.985897 13.560001 10.319421 -8.601422 -6.824735 -11.065651 9.201566 2.135470 -8.251338 -13.660752 -3.734351 11.844679 2.531723 -10.465813 -1.481234 -1.918307 3.610642 10.097935 -20.829689 4.843859 9.556527 -3.242852 -3.600651 15.360217 7.160428 0.198870 -5.718477 4.248225 -4.455593 13.239183 -2.105111 16.785592 -8.299796 15.492044 -6.012108 16.451494 6.907725 -17.753275 -4.785391 1.239330 -2.088138 9.641150 -5.996887 16.064612 -15.365754 10.704582 14.224927 2.364755 -14.303741 -11.560365 -12.030894 -18.482004 3.568840 -10.380449 -19.560186 3.390208 14.162077 9.517257 7.821746 2.719677 -14.068740 1.086687 -1.503322 5.912852 9.563110 -5.753182 5.559289 -9.048682 -15.631699 12.128201 9.272438 5.569081 4.219574 -3.049313 1.765377 -5.675308 -2.261829 12.802451 8.487567 -1.671935 17.732167 14.066232 30.639207 -6.129950 1.816760 4.656148 -10.043406 3.866675 -5.445965 -19.936312 2.472224 5.897162 13.975641 25.031087 -3.593638 -0.192650 6.915143 -1.768757 4.710707 -9.935924 8.554040 -13.621787 -4.146079 -6.971364 4.408441 -6.883891 -0.562310 -11.193793 -10.191111 22.407143 -28.859242 -11.092362 25.688718 -9.875121 4.412824 -15.503718 15.890362 -7.567075 10.701982 0.303875 -2.255410 0.389056 -4.346313 -13.913777 6.561442 10.084763 -7.697482 2.062960 18.338264 2.537142 -0.253498 -0.873428 11.378602 -11.410884 9.787212 -14.241256 22.225644 -2.755203 -2.089464 -6.920084 -6.275898 -2.153044 -11.572895 2.990760 5.458581 2.286330 4.361027 -2.044552 8.936562 9.752791 -11.602670 19.028964 -1.819261 -1.698853 -12.676094 -3.712331 3.700615 3.941136 -2.758725 7.825702 -21.981436 -9.984024 -34.274677 -8.608743 -4.393786 -0.565409 8.102937 -5.354676 -8.401692 -11.798756 -20.774741 31.295252 -6.248004 -3.039765 14.623249 10.572133 13.988035 17.483900 1.057397 6.144253 -11.095051 -4.519997 -0.414746 -7.599834 -6.445658 17.883646 -3.469313 5.541351 18.536201 -2.183451 13.597496 1.091984 3.815108 -10.975196 17.291389 7.587021 -8.009688 4.422564 18.492578 16.734356 -7.558354 -13.150412 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy(queueEntry**, queueEntry**, queueEntry**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy_backward(queueEntry**, queueEntry**, queueEntry**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a(queueEntry**, queueEntry**, queueEntry**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__miter_base(queueEntry**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_wrap(queueEntry** const&, queueEntry**) = -0.216889 -0.266459 0.395803 0.358802 0.113353 0.124916 0.245948 -0.174661 0.469585 0.329413 -0.007362 -0.032471 -0.401040 0.090013 0.115063 0.290524 -0.196848 -0.331630 0.027113 -0.200139 -0.128038 -0.330870 0.165481 -0.106598 0.150359 -0.107711 -0.137837 -0.168707 -0.356358 -0.158032 0.290792 -0.185617 0.213712 0.088776 -0.043321 -0.702062 0.261666 0.145042 -0.145935 -0.324930 0.068807 -0.258085 0.239958 -0.072157 0.163421 0.120623 0.114283 0.071114 0.303339 0.131296 0.287338 -0.121985 -0.030490 0.555408 -0.395300 0.218027 0.043743 -0.055105 -0.123191 0.127063 0.076943 -0.007923 0.280317 0.287755 -0.196732 -0.193710 -0.079493 -0.219865 -0.473803 0.243908 -0.030907 0.036258 -0.336534 -0.063083 -0.038942 -0.199795 -0.676753 0.197781 0.544326 -0.285583 0.383646 0.152019 0.268294 0.001952 0.195213 0.037562 0.294699 0.022421 -0.294056 0.011327 -0.200821 -0.072924 -0.024529 0.094550 0.022512 -0.128327 0.112014 0.162297 -0.352471 0.176669 0.028961 0.169857 -0.442496 0.072874 0.169694 0.238159 -0.255216 -0.464516 -0.234132 0.024126 -0.010357 -0.087593 0.024672 -0.299998 -0.227258 -0.320474 -0.343451 -0.193706 -0.016508 -0.325417 -0.278200 0.334512 -0.299204 0.071418 0.048823 0.086933 -0.119701 0.385644 0.071677 0.245280 0.189724 -0.164565 -0.808130 -0.016216 0.186422 0.517857 0.047057 0.096815 -0.174283 -0.009022 -0.269278 0.011859 0.148086 0.219611 0.447816 -0.194995 -0.199626 -0.079910 0.190318 -0.396993 0.232127 -0.294806 0.257395 -0.013431 0.286884 0.249883 0.268839 0.600635 -0.377012 0.270257 -0.180719 -0.050241 0.267341 0.248729 0.269126 -0.163710 -0.187158 0.028721 0.268726 -0.047430 0.144729 -0.181513 0.009020 -0.336900 -0.070138 0.030282 0.083114 -0.156346 0.217679 0.111036 0.453879 -0.472448 0.147832 0.227368 0.070123 0.064001 0.009635 -0.384964 0.263986 0.048628 -0.160819 0.076910 -0.038292 -0.271402 0.056405 -0.160563 0.133449 -0.213268 0.019920 -0.220722 -0.107197 -0.261829 0.103177 -0.197172 -0.249392 0.038858 0.171940 0.353763 0.152851 -0.182399 0.246892 -0.116255 0.064242 -0.399758 0.631279 -0.239453 0.106469 -0.377915 -0.070115 -0.129647 0.411151 0.018980 -0.030555 0.165898 -0.077239 0.173204 0.496971 0.165358 0.094412 0.114861 0.339207 0.085525 0.048982 -0.029303 0.325288 -0.067848 0.012571 0.122012 -0.172845 0.197385 0.014790 -0.036545 0.399399 0.403974 -0.088995 0.245487 0.179694 0.199252 -0.154400 0.178474 0.025816 0.378240 -0.117683 0.043544 -0.025753 0.044870 -0.168403 0.133783 -0.341205 -0.382094 0.154007 -0.229562 -0.076458 0.229987 -0.023723 0.042852 0.124349 -0.381034 -0.094659 0.022612 -0.191255 0.188176 -0.014701 0.111683 0.259365 0.390275 -0.190001 -0.239648 -0.002498 -0.080009 -0.127920 -0.068424 -0.147443 0.223762 -0.365918 0.132946 0.165409 -0.101269 -0.077372 0.040507 0.414465 -0.209244 0.484187 0.195786 0.028391 0.414686 0.305020 0.665044 0.015395 -0.157214 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a1(queueEntry**, queueEntry**, queueEntry**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_base(queueEntry**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a2(queueEntry**, queueEntry**, queueEntry**) = -0.600533 -1.041844 1.619427 1.378216 0.272507 0.824195 0.348432 -0.969565 1.237401 0.824992 -0.097873 0.440667 -1.041300 0.234132 -0.205923 0.650773 -0.779620 -1.056540 -0.228010 -0.821215 -0.429342 -0.965398 0.074700 0.386226 0.440356 -0.250667 -0.766871 -0.077036 -1.603033 -1.143458 0.696661 -0.314285 0.750462 -0.395423 0.127330 -2.621557 1.210629 1.137690 -0.347127 -1.394591 0.259019 -0.779689 0.106371 -0.022152 -0.119568 0.375091 0.097134 -0.054510 0.690456 0.322989 0.587278 0.253894 0.071668 2.066610 -0.834538 1.101037 0.550737 -0.078823 -0.202771 0.430875 0.209935 0.203810 0.878244 0.731327 -0.495081 -0.764550 -0.009124 -0.210427 -1.337781 0.839785 -0.013782 -0.506149 -0.676640 -0.271593 -0.959093 -0.485960 -0.277710 0.616621 1.775421 -0.746316 1.313062 0.303794 0.730842 0.109496 0.998606 -0.045259 1.304664 0.330009 -0.795121 -0.079795 -0.875931 -0.099307 0.007694 0.551060 -0.581196 -0.736472 0.583724 -0.866924 -1.355223 0.707489 0.165430 -0.031934 -1.519198 -0.304246 0.737274 0.565348 -0.725766 -1.431942 -0.780584 0.742669 -0.177944 -0.582476 0.115169 -0.785590 -0.314953 -0.590908 -1.144516 -0.258714 0.451873 -0.750119 -0.949387 1.299483 -0.721874 0.232589 -0.095633 0.433281 -0.473226 0.811847 -0.071659 0.766555 0.150398 -0.288901 -1.836737 -0.212697 0.288959 0.880497 -0.271666 -0.064174 -0.364144 0.322380 -0.555130 0.486022 -0.252503 0.719263 1.224016 -0.274696 -0.640699 -0.540598 0.282768 -1.408026 0.284458 -0.847252 -0.359021 0.176949 1.059271 0.645336 0.687662 1.521575 -0.881449 0.838324 -0.281706 -0.121386 0.831636 -0.182395 0.636238 -0.649011 -1.029228 0.492739 0.691402 0.269530 0.353213 -0.414711 -0.048423 -0.801910 -0.616477 0.285439 0.393846 -0.044838 1.061487 0.723096 1.753884 -1.558723 0.402491 0.444284 -0.320849 0.359752 -0.292614 -1.328025 0.374052 0.454921 -0.143166 1.310058 -0.209046 -0.910854 0.316269 -0.131975 0.484701 -0.898665 0.527041 -0.970127 -0.156025 -0.750132 -0.304326 -0.639017 -0.596633 -0.635652 -0.295261 1.426601 -0.614980 -1.339731 1.270851 -0.297445 0.461088 -1.908107 1.123138 -0.765176 0.862263 -0.630826 -0.015004 -0.277317 0.845053 -0.487015 0.365510 0.654365 -0.814249 0.824125 1.605596 0.387941 0.354190 0.111475 0.938577 -0.094589 0.174608 -0.714513 1.243209 -0.217186 -0.331677 0.021785 -0.617787 0.484166 -0.236346 0.098818 0.485949 1.081029 -0.080485 0.339442 1.092934 0.528264 -0.541642 0.734585 -0.082111 0.671883 -0.478785 -0.083351 -0.082688 0.334054 -0.145825 0.541221 -1.456299 -1.280974 -0.790929 -1.401241 0.026195 0.395973 0.070620 0.159479 0.090045 -1.550323 -0.730583 0.763019 -0.530834 1.233923 0.573062 0.702596 0.916894 1.246004 -0.532897 -0.317028 -0.171861 -0.144957 -0.506149 -0.455557 -0.607933 0.972991 -0.782057 0.717088 0.879677 -0.201940 0.366110 0.139859 0.700485 -0.816486 1.692227 0.748005 -0.360787 0.901222 0.718540 1.786064 -0.230132 -0.709979 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move::__copy_m(queueEntry**, queueEntry**, queueEntry**) = -1.387749 -2.830341 3.437951 2.989720 1.054548 2.502771 0.428061 -1.737552 1.994820 2.561661 -0.781074 1.714182 -1.936048 -0.015437 -0.404853 0.966785 -1.069674 -2.179832 -0.046583 -1.051753 -0.247515 -2.099729 -0.914266 1.817814 0.592626 -0.462791 -1.425731 0.472712 -4.023316 -3.881001 0.419131 -0.453275 1.523534 -1.308139 0.793483 -4.193807 2.757834 3.260757 -0.292282 -3.718997 0.287465 -1.228927 -0.460464 0.950746 -0.089163 1.542769 0.738089 -0.312462 0.577840 1.032793 0.859848 0.208288 0.980983 3.287686 -0.558443 2.904885 2.012975 -0.107171 0.502293 0.828151 0.339066 0.069805 1.747007 1.570387 -1.006560 -1.047064 0.158903 0.641621 -2.445738 1.295469 -0.049696 -1.540252 -1.030660 -0.613771 -2.319734 -0.551378 0.455631 0.776670 3.923093 -0.738261 3.491029 1.060093 2.009712 0.225836 2.675305 -0.222570 2.600210 1.072201 -2.131711 -0.000464 -2.034820 -0.676603 -0.082439 1.636607 -1.820255 -0.663668 1.121304 -2.764050 -2.834291 2.012393 -0.335948 -0.499620 -2.807065 -0.750611 1.822378 1.267579 -1.296142 -2.986843 -1.572940 2.154787 -1.019851 -1.585795 0.300082 -1.355503 -0.419769 -0.184829 -1.932689 -0.542632 1.956727 -1.747634 -1.841424 2.866977 -0.804076 1.275978 -0.506167 0.684790 -0.635059 0.862693 0.439333 1.569074 0.082674 -0.979631 -3.764813 0.069747 0.234173 0.060557 -1.012436 -0.151998 0.180677 1.058194 0.001532 1.901883 -1.409834 1.636451 2.603038 -0.061355 -1.058615 -1.915866 0.308612 -2.275786 0.435339 -1.419855 -1.701201 -0.003592 2.354559 0.324189 0.921366 2.512839 -1.744781 1.337177 -0.556726 0.205015 0.972120 -1.197044 0.839838 -1.380293 -2.366403 1.480603 2.269941 0.509939 0.968731 -1.149870 0.021150 -0.928888 -1.344066 1.223838 0.656850 0.248702 2.844945 1.588133 4.040474 -2.262296 0.231799 0.181962 -0.915273 0.791330 -1.010555 -2.941728 0.679820 1.084144 0.661145 3.606004 -0.462979 -1.737975 1.044984 0.099487 0.744418 -2.016401 2.069713 -2.441320 -0.070683 -1.008320 -1.059365 -1.382750 -1.337908 -1.920117 -0.522487 3.120854 -1.184863 -3.177968 2.094293 -0.849620 0.659644 -4.156625 1.352500 -1.634279 1.904802 -0.407949 0.063399 -0.484897 1.482523 -0.716775 0.508464 1.574015 -2.171788 2.445416 2.551073 0.538284 0.363977 0.585134 1.322787 -0.518651 -0.693852 -1.980961 1.950209 -0.451639 -0.251271 -0.453120 -1.362824 1.557376 -0.267429 -0.348303 -0.485449 1.891806 -0.970915 -0.093498 2.552451 0.137811 -1.034062 1.428750 -0.256381 1.481213 -1.259119 -0.416312 -1.078382 0.480449 0.474308 1.265427 -3.381097 -1.835429 -2.166972 -3.222100 -0.422534 1.020178 0.504124 0.966949 0.350243 -3.597186 -1.831468 2.599414 -0.835913 2.400840 1.644838 1.783701 1.983429 1.985008 -0.202787 -0.708741 -1.123648 -0.451944 -1.797959 -1.042331 -0.516172 1.706456 -1.330383 2.030457 1.444460 -0.204508 0.984551 0.131883 0.642046 -1.956640 3.468964 2.116024 -1.116894 0.902719 1.026921 3.602255 -1.947186 -1.663723 -PE-benchmarks/snake-ladder.cpp__void std::__copy_move::__assign_one(queueEntry**, queueEntry**) = -0.340255 -0.382649 0.604634 0.544547 0.183334 0.236679 0.296519 -0.364610 0.683350 0.509635 0.056782 0.020530 -0.522626 0.158155 0.072919 0.426760 -0.278970 -0.479441 -0.050081 -0.380909 -0.267505 -0.471550 0.193627 -0.113831 0.194867 -0.268710 -0.301676 -0.188569 -0.557367 -0.372756 0.402672 -0.219470 0.315120 -0.137270 -0.066269 -1.254217 0.453251 0.285612 -0.217806 -0.486426 0.096133 -0.365485 0.258373 -0.041080 0.100314 0.112877 0.068097 -0.015631 0.431051 0.166382 0.471358 0.009723 -0.049656 1.023234 -0.575972 0.382793 0.085176 -0.053051 -0.211805 0.245416 0.117068 0.068975 0.431050 0.400009 -0.235788 -0.312479 -0.052295 -0.227971 -0.693098 0.402077 -0.025090 -0.099500 -0.397362 -0.089969 -0.180453 -0.310758 -0.635170 0.256647 0.791343 -0.405012 0.531029 0.173461 0.353155 0.055108 0.352551 0.003844 0.562426 0.054474 -0.401403 -0.028889 -0.254238 -0.024938 -0.020728 0.238561 -0.051982 -0.289366 0.203531 0.096961 -0.556464 0.296395 0.078792 0.200798 -0.793983 -0.058538 0.312019 0.282576 -0.374943 -0.695623 -0.450012 0.154786 -0.035827 -0.187219 0.059578 -0.513654 -0.249921 -0.390890 -0.512688 -0.251143 0.033461 -0.415466 -0.536697 0.531272 -0.432402 0.060374 0.035358 0.182432 -0.209024 0.454388 -0.005632 0.401000 0.188155 -0.163670 -1.166914 -0.119471 0.215683 0.639846 0.062993 0.073775 -0.290614 0.042818 -0.404953 0.145592 0.112344 0.349773 0.674349 -0.187702 -0.304563 -0.123347 0.322151 -0.622031 0.274951 -0.440320 0.184271 -0.013400 0.442335 0.354647 0.376318 0.794309 -0.488294 0.475365 -0.224507 -0.077311 0.424808 0.128502 0.361972 -0.254280 -0.369988 0.067681 0.384793 0.005128 0.177176 -0.250614 -0.024243 -0.439870 -0.207137 -0.001388 0.138030 -0.171026 0.325690 0.208060 0.913616 -0.832615 0.258876 0.305855 0.016902 0.147802 -0.083378 -0.570798 0.251226 0.139024 -0.234100 0.302668 -0.076387 -0.464610 0.070312 -0.172776 0.224910 -0.326693 0.092331 -0.352961 -0.138562 -0.357501 -0.012488 -0.300999 -0.291140 -0.047272 0.100874 0.556584 -0.008744 -0.436360 0.523408 -0.184858 0.098791 -0.735891 0.877385 -0.327805 0.191825 -0.557119 -0.064676 -0.205600 0.647839 -0.085273 0.124445 0.260489 -0.240278 0.291899 0.837639 0.206015 0.227334 0.077740 0.488944 0.092808 0.074241 -0.148882 0.599879 -0.104865 -0.079458 0.083017 -0.274983 0.281976 -0.040020 0.019049 0.409942 0.578884 -0.144789 0.253982 0.395200 0.298714 -0.235927 0.339178 0.027718 0.431813 -0.173087 0.068349 0.000529 0.065711 -0.229948 0.219791 -0.526710 -0.505961 0.023059 -0.437420 -0.031503 0.375389 -0.047989 0.029217 0.114590 -0.618627 -0.183098 0.168627 -0.283437 0.342963 0.081672 0.238788 0.386249 0.617825 -0.272710 -0.252675 -0.076537 -0.186529 -0.197533 -0.200425 -0.207666 0.382776 -0.459919 0.260647 0.239912 -0.084395 -0.006389 0.125511 0.448602 -0.292170 0.728363 0.290638 0.059894 0.556276 0.420719 0.988053 -0.042616 -0.249778 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a(queueEntry**, queueEntry**, queueEntry**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a1(queueEntry**, queueEntry**, queueEntry**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a2(queueEntry**, queueEntry**, queueEntry**) = -0.597181 -1.146650 1.746159 1.506355 0.241895 0.893340 0.375586 -1.019144 1.274986 0.909717 -0.088491 0.516690 -1.098944 0.179460 -0.144874 0.692699 -0.839574 -1.078277 -0.248059 -0.852658 -0.425327 -0.997377 -0.002008 0.509052 0.473445 -0.207935 -0.792869 -0.059672 -1.654869 -1.294377 0.631837 -0.303629 0.809109 -0.412161 0.220568 -2.734624 1.305478 1.289456 -0.352821 -1.532089 0.256723 -0.765818 0.111765 -0.016040 -0.196362 0.442643 0.120080 -0.044211 0.666565 0.365272 0.543403 0.283064 0.222985 2.137264 -0.748309 1.199830 0.673460 -0.076860 -0.156784 0.400609 0.245697 0.195113 0.906930 0.688980 -0.477859 -0.805047 -0.056766 -0.165983 -1.384603 0.840180 0.016760 -0.589487 -0.745759 -0.339900 -1.102240 -0.519679 -0.339347 0.660534 1.874045 -0.825361 1.404468 0.392689 0.745113 0.159297 1.087188 -0.044429 1.368428 0.381031 -0.816821 0.036567 -0.912139 -0.223825 0.056001 0.494362 -0.692829 -0.936787 0.625841 -1.035509 -1.474868 0.818252 0.186636 -0.087598 -1.560195 -0.427767 0.773982 0.617042 -0.787555 -1.497488 -0.804339 0.807600 -0.180784 -0.640879 0.139057 -0.720349 -0.266620 -0.543218 -1.229742 -0.215275 0.562059 -0.767361 -0.916559 1.383862 -0.690643 0.315482 -0.129116 0.424818 -0.494414 0.853200 -0.025048 0.825196 0.099360 -0.280487 -1.794683 -0.227547 0.268023 0.789457 -0.258368 -0.112282 -0.335102 0.401965 -0.479598 0.634182 -0.252220 0.766730 1.240116 -0.214142 -0.645450 -0.651483 0.136302 -1.460521 0.322553 -0.840018 -0.417429 0.255251 1.117251 0.587891 0.676226 1.459325 -0.887996 0.778765 -0.305281 -0.098791 0.834741 -0.201223 0.653233 -0.660592 -1.094198 0.566565 0.765262 0.379454 0.382842 -0.430321 -0.019669 -0.746297 -0.641315 0.263718 0.398113 -0.071312 1.170669 0.804267 1.847601 -1.481135 0.368132 0.402560 -0.353592 0.407511 -0.336048 -1.413444 0.378531 0.474537 -0.120464 1.428476 -0.252044 -0.893748 0.413965 -0.135724 0.473505 -0.956016 0.591094 -1.049794 -0.152004 -0.795732 -0.282700 -0.715257 -0.625955 -0.758831 -0.333885 1.546626 -0.697973 -1.362920 1.319039 -0.292276 0.497158 -1.948506 1.210057 -0.769411 0.936682 -0.608868 -0.063707 -0.223166 0.794213 -0.518529 0.292536 0.707526 -0.885414 0.809526 1.599383 0.388734 0.300381 0.131586 0.953354 -0.141695 0.199208 -0.831106 1.317188 -0.262255 -0.307900 -0.005557 -0.634697 0.542308 -0.246005 0.084219 0.430468 1.049600 -0.075422 0.284608 1.134249 0.500340 -0.588890 0.784755 -0.045973 0.690550 -0.549938 -0.062086 -0.142568 0.379010 -0.110961 0.605634 -1.562203 -1.252972 -0.919120 -1.400158 -0.052440 0.472220 0.105754 0.181509 0.052027 -1.604886 -0.847417 0.928591 -0.550225 1.096237 0.655360 0.757282 1.024907 1.292357 -0.464435 -0.320344 -0.190875 -0.181523 -0.519860 -0.490428 -0.603661 1.024496 -0.815224 0.766165 0.943968 -0.207521 0.442905 0.062699 0.748852 -0.887941 1.782925 0.783305 -0.442272 0.874354 0.861628 1.852602 -0.365518 -0.768963 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward::__copy_move_b(queueEntry**, queueEntry**, queueEntry**) = -1.370988 -3.354369 4.071611 3.630417 0.901489 2.848493 0.563831 -1.985445 2.182748 2.985290 -0.734166 2.094295 -2.224268 -0.288795 -0.099608 1.176416 -1.369444 -2.288519 -0.146828 -1.208970 -0.227438 -2.259622 -1.297803 2.431941 0.758070 -0.249128 -1.555723 0.559531 -4.282496 -4.635593 0.095007 -0.399995 1.816769 -1.391828 1.259674 -4.759138 3.232078 4.019589 -0.320752 -4.406487 0.275985 -1.159572 -0.433492 0.981306 -0.473135 1.880528 0.852816 -0.260968 0.458385 1.244210 0.640473 0.354138 1.737565 3.640960 -0.127298 3.398850 2.626590 -0.097355 0.732227 0.676821 0.517880 0.026317 1.890437 1.358651 -0.920446 -1.249550 -0.079311 0.863841 -2.679848 1.297442 0.103014 -1.956943 -1.376252 -0.955309 -3.035469 -0.719971 0.147442 0.996234 4.416215 -1.133486 3.948062 1.504565 2.081067 0.474843 3.118212 -0.218422 2.919029 1.327307 -2.240212 0.581343 -2.215858 -1.299192 0.159098 1.353114 -2.378422 -1.665243 1.331885 -3.606976 -3.432519 2.566208 -0.229918 -0.777942 -3.012052 -1.368219 2.005918 1.526050 -1.605086 -3.314572 -1.691714 2.479442 -1.034050 -1.877810 0.419523 -1.029299 -0.178103 0.053621 -2.358817 -0.325434 2.507661 -1.833842 -1.677280 3.288871 -0.647925 1.690441 -0.673579 0.642475 -0.740998 1.069458 0.672392 1.862280 -0.172517 -0.937557 -3.554542 -0.004503 0.129491 -0.394645 -0.945943 -0.392539 0.325888 1.456120 0.379191 2.642686 -1.408417 1.873787 2.683535 0.241414 -1.082370 -2.470292 -0.423721 -2.538261 0.625814 -1.383685 -1.993241 0.387916 2.644460 0.036966 0.864186 2.201590 -1.777513 1.039383 -0.674597 0.317991 0.987649 -1.291185 0.924814 -1.438198 -2.691254 1.849731 2.639245 1.059560 1.116875 -1.227920 0.164919 -0.650824 -1.468260 1.115235 0.678184 0.116334 3.390857 1.993987 4.509059 -1.874353 0.060004 -0.026661 -1.078985 1.030123 -1.227721 -3.368820 0.702216 1.182228 0.774652 4.198095 -0.677967 -1.652443 1.533462 0.080743 0.688439 -2.303155 2.389981 -2.839657 -0.050581 -1.236319 -0.951235 -1.763947 -1.484520 -2.536011 -0.715609 3.720980 -1.599828 -3.293911 2.335234 -0.823776 0.839995 -4.358618 1.787094 -1.655456 2.276898 -0.298159 -0.180112 -0.214143 1.228319 -0.874346 0.143594 1.839818 -2.527613 2.372420 2.520010 0.542252 0.094931 0.685689 1.396671 -0.754179 -0.570852 -2.563929 2.320104 -0.676983 -0.132386 -0.589828 -1.447373 1.848084 -0.315722 -0.421301 -0.762855 1.734658 -0.945599 -0.367667 2.759026 -0.001810 -1.270301 1.679601 -0.075689 1.574552 -1.614885 -0.309988 -1.377783 0.705228 0.648631 1.587490 -3.910618 -1.695419 -2.807928 -3.216687 -0.815709 1.401412 0.679793 1.077099 0.160156 -3.870000 -2.415642 3.427275 -0.932869 1.712406 2.056329 2.057128 2.523494 2.216774 0.139521 -0.725317 -1.218721 -0.634774 -1.866515 -1.216690 -0.494813 1.963979 -1.496217 2.275844 1.765914 -0.232414 1.368525 -0.253918 0.883881 -2.313915 3.922453 2.292527 -1.524317 0.768382 1.742363 3.934945 -2.624112 -1.958646 -PE-benchmarks/snake-ladder.cpp__std::deque >::empty() const = 0.663470 -0.657884 2.060408 1.774975 -0.503129 0.558211 -0.404430 -1.545010 1.155823 0.600777 -0.334407 0.508296 -0.459472 0.592234 -0.629226 1.271621 -1.477626 -0.450386 -0.723851 -1.146081 -0.887371 -0.506497 0.077723 0.148445 0.719487 0.769763 -0.806207 0.454632 -0.300804 -1.808638 0.237430 -0.102906 0.288631 -0.230270 0.685499 -1.794952 1.584686 1.121011 -0.473378 -1.276422 0.156504 -0.350909 -0.387565 -0.172484 -0.251528 0.403380 -0.376819 0.770557 0.629949 0.652060 0.356507 0.811729 0.928035 2.179937 -0.254742 1.062620 0.763123 0.149001 0.015613 0.441624 0.432382 0.608603 0.171904 0.289625 0.472707 -1.186175 -0.492332 -0.144921 -0.352333 1.093375 -0.267135 -1.143006 -1.030923 -1.001798 -0.933922 -0.188711 -3.076870 1.271950 1.472756 -1.395303 0.446950 0.396509 0.220600 0.249986 0.736411 -0.248024 1.505894 0.638355 -0.164395 0.395014 0.427048 -0.727149 0.786117 -0.899680 -1.231589 -2.344031 0.827936 -2.053247 -1.345410 0.852412 0.877706 -0.458382 -0.164486 -0.634897 0.462407 0.019872 -0.574235 -0.810130 0.082789 0.605596 0.476171 -0.537585 -0.024924 -0.054498 0.292486 0.658118 -1.586707 0.396036 0.403554 -0.094848 -0.039232 1.010757 0.609522 -0.295376 -0.377398 0.200954 -0.355836 1.307336 -0.333837 1.250991 -0.725888 1.388015 -0.581694 1.482533 0.668256 -1.294883 -0.229948 0.413158 -0.213146 0.567686 -0.778828 0.882611 -1.067573 0.576799 0.778904 -0.010683 -1.102069 -0.629551 -1.028627 -1.285436 0.304704 -0.738764 -1.308553 0.242712 0.949587 1.164371 0.703798 0.165242 -1.020782 -0.232098 -0.221082 0.406689 0.777260 -0.178248 0.471022 -0.573350 -0.885955 0.814982 0.388440 0.263867 0.405457 -0.223392 0.192305 -0.592197 0.186994 1.012002 0.671967 -0.284070 1.157909 0.986016 1.349194 -0.395538 0.218820 0.527353 -0.614136 0.205741 -0.230711 -1.242108 0.343046 0.339226 1.089633 1.262702 -0.229455 0.314249 0.297148 -0.277667 0.402682 -0.549539 0.090990 -0.766344 -0.425638 -0.557813 0.795908 -0.427364 0.003448 -0.466463 -0.755973 1.391163 -1.988713 -0.296800 1.905686 -0.697964 0.333407 -0.569693 1.085365 -0.534127 0.777951 0.061686 -0.086989 0.044153 -0.400894 -1.007057 0.385017 0.662046 -0.345178 -0.137524 1.161376 0.255875 -0.012565 -0.080520 0.953460 -0.947271 0.936567 -0.792875 1.526651 -0.210574 -0.122082 -0.335590 -0.407997 -0.400458 -0.921960 0.369415 0.870653 0.034349 0.601954 0.054180 0.401227 0.881540 -0.815764 1.290196 -0.168427 -0.267817 -0.975655 -0.251492 0.521958 0.189607 -0.361682 0.297278 -1.388298 -0.763765 -2.572549 -0.117258 -0.275493 -0.358111 0.444014 -0.566251 -0.645848 -0.496086 -1.440096 2.097400 -0.493942 -0.767897 0.822572 0.556810 0.870918 1.303867 -0.004075 0.465825 -0.664948 -0.259380 0.215070 -0.381746 -0.638535 1.390193 -0.316847 0.057982 1.427412 -0.272702 0.880093 0.372374 0.406854 -0.668085 0.964906 0.359216 -0.465308 0.445371 1.645324 1.043286 -0.031550 -0.851655 -PE-benchmarks/snake-ladder.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/snake-ladder.cpp__std::deque >::front() = 0.017553 -0.603187 1.165858 1.038870 -0.160848 0.327571 0.162746 -0.746750 0.827689 0.126665 -0.129833 0.222177 -0.795486 0.389548 -0.388043 0.622297 -0.870480 -0.649217 -0.312396 -0.528626 -0.371933 -0.599949 0.450007 0.188969 0.509494 0.406297 -0.552776 -0.102934 -0.768075 -0.494362 0.622352 -0.239726 0.512685 0.281410 0.047507 -1.487587 0.775725 0.664218 -0.294387 -0.826179 0.291097 -0.526396 0.048936 -0.437873 -0.209234 0.160502 -0.104825 0.299152 0.604587 0.212871 0.234136 0.233743 0.157598 1.230766 -0.596557 0.604610 0.296032 0.060471 -0.187515 0.058820 0.241858 0.318689 0.450445 0.476879 -0.187022 -0.680979 -0.276595 -0.427468 -0.828256 0.721131 -0.194378 -0.058921 -0.768642 -0.270130 -0.573740 -0.183434 -0.781648 0.747040 1.174254 -0.788002 0.606596 0.101809 0.202824 -0.119069 0.339440 -0.007527 0.645474 0.276623 -0.264709 -0.022700 -0.354712 -0.103655 0.148280 -0.104343 -0.435935 -0.944046 0.507552 -0.805318 -0.928221 0.262123 0.347918 -0.118574 -0.480755 -0.040689 0.275960 0.368439 -0.495078 -0.825244 -0.123302 0.241659 0.339554 -0.338146 -0.018905 -0.100055 -0.213327 -0.419171 -0.982978 -0.115295 0.033724 -0.518387 -0.105067 0.672885 -0.299149 0.037929 -0.060222 0.208579 -0.269810 0.952693 -0.083658 0.551348 0.082962 0.246297 -0.454594 0.131341 0.404524 0.651337 -0.293786 0.080602 -0.331303 0.160394 -0.510188 -0.050205 -0.141014 0.219054 0.631539 -0.356381 -0.623821 -0.221763 -0.234035 -1.160919 0.174898 -0.667845 -0.120000 0.399342 0.662367 0.586596 0.574000 1.144086 -0.692856 0.267137 -0.026793 -0.117683 0.660200 0.254909 0.465760 -0.401061 -0.718203 0.488180 0.130120 0.184119 0.172744 -0.079404 -0.015542 -0.678680 -0.196589 0.407549 0.383600 -0.143138 0.652145 0.432099 0.428155 -0.638038 0.335347 0.482022 -0.152997 0.194708 -0.038141 -0.984688 0.472458 0.109398 0.063622 0.564112 -0.137511 -0.325228 0.333981 -0.263184 0.356614 -0.641050 0.140326 -0.580059 -0.139351 -0.790925 0.209525 -0.128160 -0.326639 -0.212545 -0.182207 0.950569 -0.657447 -0.450429 0.906060 -0.006478 0.478853 -0.904672 0.696811 -0.470670 0.713692 -0.205527 -0.074701 0.052204 -0.017732 -0.398577 -0.040709 0.443438 -0.184819 0.161521 0.958947 0.274422 -0.017549 0.100388 0.731903 -0.080756 0.573181 -0.340384 0.852644 -0.016946 -0.305383 0.192243 -0.372203 -0.030336 -0.415295 0.140843 1.013054 0.637699 0.419981 0.576364 0.352278 0.717964 -0.469084 0.532454 -0.076221 0.350613 -0.391278 -0.066937 0.176983 0.398211 -0.339470 0.416159 -0.887571 -1.285750 -0.816549 -0.738735 -0.033960 -0.277561 0.246085 -0.230774 -0.115558 -0.659339 -0.659892 0.465852 -0.427794 0.755950 0.383716 0.348877 0.592313 0.899972 -0.545382 -0.015551 0.093708 0.215289 -0.000541 -0.085015 -0.626662 0.664727 -0.501204 0.155818 0.938432 -0.310172 0.284432 -0.068632 0.732666 -0.497995 1.103170 0.360156 -0.349074 0.830886 0.565329 0.837349 0.417408 -0.514946 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::operator*() const = -0.180866 -0.285402 0.652897 0.593353 -0.028429 0.182790 -0.047684 -0.425778 0.435811 0.361553 0.014434 0.154957 -0.293826 0.201712 0.025709 0.470486 -0.386291 -0.266066 -0.204488 -0.369844 -0.303980 -0.260147 0.134089 -0.013222 0.206987 0.095538 -0.366304 0.072483 -0.218571 -0.696406 0.151578 -0.117801 0.282258 -0.080635 0.068756 -1.038701 0.514610 0.369771 -0.188426 -0.424825 0.101918 -0.156821 0.071414 -0.026110 -0.188699 0.167859 -0.065103 -0.196757 0.298577 0.204575 0.343301 0.177264 0.225554 0.737440 -0.241575 0.330891 0.163384 -0.077523 -0.157785 0.048234 0.140114 0.165020 0.267372 0.213671 -0.008598 -0.400474 -0.116177 -0.103836 -0.461399 0.361954 -0.151245 -0.279984 -0.300069 -0.288580 -0.225952 -0.199148 -0.407801 0.265497 0.595722 -0.360306 0.286120 0.094231 0.071241 0.091587 0.259297 -0.017465 0.469242 0.158405 -0.147584 0.127792 0.295825 -0.133389 0.162958 0.257453 -0.255214 -0.337505 0.268678 -0.287594 -0.439834 0.313882 0.221206 0.023153 -0.595181 -0.263382 0.179236 0.184538 -0.251194 -0.424132 -0.208768 0.155706 0.171179 -0.200809 -0.101849 -0.206411 -0.123819 0.037175 -0.517090 -0.019575 0.056553 -0.198221 -0.249925 0.373659 -0.068717 -0.046552 -0.075136 0.186430 -0.218205 0.486344 -0.093868 0.457356 -0.158548 0.193551 -0.511718 -0.035792 0.194008 0.019427 -0.065580 -0.101082 -0.248664 0.063768 -0.315510 0.228470 -0.110400 0.265612 0.713743 0.015540 -0.348165 -0.142103 -0.163379 -0.691570 0.108767 -0.365846 -0.060501 0.243899 0.349077 0.216172 0.311509 0.520295 -0.363052 0.166700 -0.142570 -0.119223 0.370870 -0.004285 0.234111 -0.206087 -0.338557 0.247700 0.229373 0.129405 0.206085 -0.139868 0.023845 -0.243172 -0.106329 0.323456 0.178181 -0.044745 0.264024 0.247972 0.911681 -0.277796 0.135122 0.233408 -0.075758 0.104023 -0.082667 -0.433068 0.073868 0.117597 -0.020019 0.396975 -0.077748 -0.191946 0.088736 -0.141961 0.180626 -0.292314 0.201450 -0.271453 0.101057 -0.286838 -0.097151 -0.199203 -0.090414 -0.095427 -0.081026 0.520178 -0.418331 -0.307250 0.558523 -0.102566 0.151234 -0.502706 0.514793 -0.232982 0.393646 -0.319710 -0.077728 -0.052644 0.094493 -0.195683 0.156033 0.232545 -0.119250 -0.023860 0.598365 0.143289 0.019909 -0.063968 0.373858 -0.043904 0.307424 -0.169953 0.578076 -0.051634 0.016054 -0.028127 -0.178693 -0.022015 -0.213304 0.023364 0.190575 0.268307 0.001842 0.077247 0.241778 0.343222 -0.258051 0.405548 0.038316 0.201878 -0.228229 -0.032212 0.127459 0.287746 -0.155920 0.129652 -0.435287 -0.337790 -0.490481 -0.296342 -0.142709 0.329431 0.080163 -0.103369 -0.093647 -0.219241 -0.321709 0.669092 -0.201213 0.350595 0.142455 0.202637 0.335526 0.493523 -0.113613 -0.094771 -0.234634 -0.171779 0.005179 -0.072164 -0.225039 0.425726 -0.216887 0.051241 0.334151 -0.127910 0.185073 0.187039 0.215986 -0.235568 0.538457 0.160003 -0.010554 0.429484 0.364522 0.544982 -0.079014 -0.249021 -PE-benchmarks/snake-ladder.cpp__std::deque >::pop_front() = 2.484545 -2.547620 8.415814 7.341609 -1.468069 2.292733 -0.784179 -6.799355 4.975096 3.245745 -1.040940 1.538416 -2.518549 2.433170 -2.420105 5.464023 -5.912208 -2.094710 -3.140277 -4.749687 -3.151577 -2.704697 1.860648 0.242364 3.240647 2.614886 -3.487895 1.152561 -1.281361 -8.400876 2.024185 -0.441626 1.929290 -0.824202 1.512997 -8.385666 7.002762 4.802761 -2.074664 -5.022489 1.213004 -0.891491 -2.437380 -0.057774 -1.427511 1.647923 -2.008840 2.994640 2.877724 2.874678 2.332278 3.253955 3.954561 8.715592 -1.819330 4.390749 2.385738 0.636716 -0.240788 2.170156 1.634092 3.203651 1.285217 2.233717 2.145963 -4.790798 -1.175813 -0.449168 -3.146754 5.152144 -1.217903 -4.336453 -3.848135 -3.090333 -2.993748 -0.081383 -8.622244 4.851252 6.427259 -4.522885 2.179348 1.235535 -0.018053 -0.250323 1.906810 -1.254946 5.678913 2.521595 -0.429563 0.050397 1.080516 -3.005036 2.998164 -2.352542 -4.702877 -8.644773 3.532746 -7.025083 -5.304183 2.683857 3.684891 -2.289130 -1.964738 -2.519273 2.150835 0.199512 -1.819054 -3.666165 -0.507075 2.539617 1.315246 -2.305812 -0.729809 -0.302485 0.397683 2.717546 -6.223177 0.806827 0.795732 -0.942712 -0.913393 3.538895 1.768516 -1.284441 -1.220062 1.521143 -1.485521 4.110752 -1.724022 5.572705 -0.964359 5.475083 -1.407454 4.518232 2.993311 -3.989366 -0.452479 0.874834 -1.706363 2.323161 -3.552126 3.699507 -3.920093 1.970817 4.306076 -0.259752 -4.280418 -1.707660 -2.863733 -5.881971 1.271053 -3.581799 -4.689989 0.958572 4.035789 3.347605 3.193692 1.826823 -4.998323 0.174013 -0.584841 1.345712 3.139023 -0.946047 1.774518 -2.154400 -4.286157 2.950171 1.720605 1.177345 0.910767 -0.667292 0.147090 -2.725301 -0.523324 3.704606 1.998112 -1.309194 3.708701 3.789419 7.230660 -2.183550 1.473683 2.964016 -2.335777 0.907791 -0.712993 -5.835536 1.280545 1.139939 4.209702 5.766622 -0.853206 0.230634 1.373326 -1.221373 1.267346 -2.674085 1.081775 -3.448752 -1.053645 -2.714353 1.815920 -1.195672 -0.437385 -1.510762 -1.954895 5.585381 -7.033860 -2.536904 8.294232 -3.176574 0.759875 -3.838733 4.949475 -2.173416 2.104009 -0.304109 -0.415475 -0.024375 -1.330522 -4.387984 1.314940 2.370825 -1.358456 0.768130 6.096288 1.060960 -0.227492 -0.790466 3.947197 -3.208558 3.879997 -3.631415 6.567332 -0.625031 -1.066440 -1.787138 -1.877401 -1.371264 -4.431839 1.143091 3.398629 1.030232 1.756362 0.799680 1.585507 4.341930 -3.123561 6.141948 -0.030429 -0.868131 -3.157190 -0.811170 2.651924 0.685401 -2.300355 2.804406 -5.610050 -3.877376 -9.040177 -2.394870 -1.075283 -1.423953 2.860428 -2.478075 -2.268787 -2.672534 -5.723578 7.716290 -1.880042 -1.417697 3.751262 2.483741 3.047280 5.542441 -0.655932 2.391665 -2.998377 -0.514543 0.419389 -2.633201 -2.076992 5.597265 -0.891329 0.552347 5.583294 -0.969341 3.445071 -0.232345 1.967476 -2.914663 4.534683 1.608927 -0.896716 2.629696 4.704454 4.601738 0.166267 -3.264654 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_pop_front_aux() = 2.611699 -2.481817 8.415460 7.306287 -1.742254 2.326388 -1.315041 -6.869990 5.035223 2.889698 -0.739688 1.982159 -2.054930 2.864136 -2.852940 5.596148 -6.112140 -1.979680 -3.279142 -5.068702 -3.998432 -2.400862 1.088833 0.237137 3.023872 2.452185 -3.833276 1.460595 -1.216089 -7.925520 1.668849 -0.470941 1.508598 -1.853375 2.093817 -9.207071 6.884751 4.486407 -2.119709 -4.965031 0.875322 -1.352759 -1.857866 -0.533352 -1.520863 1.216080 -2.051087 2.991670 3.046222 2.608601 2.123459 3.989034 3.646816 10.122236 -1.902663 4.425172 2.583610 0.711518 -0.399046 2.158105 1.735633 3.069309 1.120455 1.686429 2.100951 -5.008478 -1.534791 -0.503219 -2.278475 5.042365 -0.886115 -4.617069 -4.069628 -3.430394 -3.726777 -0.725604 -10.451001 5.076278 6.314026 -5.346062 1.758551 1.220266 0.521078 0.791727 2.797229 -1.202150 6.522915 2.525039 -0.667255 0.784306 1.550531 -2.408546 3.127989 -2.952604 -4.829531 -10.161647 3.339278 -7.727140 -5.557605 3.261669 3.753486 -1.869492 -1.814779 -3.235249 2.406921 -0.099164 -2.425015 -3.758142 -0.525851 2.607014 1.678248 -2.392940 0.025971 -0.981355 1.061926 2.533149 -6.468595 1.140949 1.238824 -0.546407 -1.090005 4.087658 2.068141 -1.480098 -1.429690 1.333005 -1.668471 4.609737 -1.898384 5.511997 -2.367981 5.874497 -2.248504 5.059419 2.802392 -4.551866 -0.563927 1.109633 -1.747053 2.445088 -3.717805 3.799427 -4.110746 2.374740 3.827316 0.067682 -4.564956 -2.025722 -3.002225 -5.705466 1.277856 -3.372938 -5.429039 0.765462 4.052078 4.173826 3.209875 0.793913 -4.360679 0.124051 -0.796790 1.647094 3.633655 -1.280421 1.931659 -2.316386 -4.148262 3.094677 1.595348 1.280636 1.135326 -0.892974 0.443633 -2.475921 0.007798 3.422460 2.624721 -1.276582 4.208070 3.859258 7.311810 -2.730803 1.446891 2.666668 -2.577397 1.114417 -1.132774 -5.390745 1.108513 1.507216 3.902777 5.717313 -1.006534 0.256862 1.278102 -0.956911 1.736287 -2.386828 0.524940 -3.262283 -1.710409 -2.520676 2.392964 -1.575065 0.092076 -1.934296 -2.986018 5.759701 -8.497889 -2.110785 8.623209 -3.193975 1.159882 -3.476329 5.117544 -2.146584 2.473985 -0.355160 -0.319020 -0.005945 -0.843144 -4.619616 2.183954 2.676498 -1.731890 0.024350 5.930886 1.037585 0.440822 -0.795589 4.086424 -3.369596 3.853298 -3.498653 6.992416 -0.846626 -1.021065 -1.720761 -1.848894 -1.484855 -4.183939 1.794009 3.243017 0.614142 2.182743 0.380017 2.114035 4.106702 -3.314972 5.810279 -0.613824 -1.359309 -3.641422 -0.767852 2.506938 0.662390 -2.021595 2.064555 -5.676816 -3.394869 -10.272736 -1.337531 -0.760971 -0.982103 1.985751 -2.594418 -2.610953 -2.613264 -5.695176 8.402140 -2.109404 -2.515894 3.823528 2.470682 3.367491 5.785874 -0.492762 2.211770 -2.957658 -1.217807 0.789662 -2.208134 -2.537064 5.853430 -1.188838 0.628678 5.667518 -0.956316 3.592437 1.014873 1.722138 -2.643733 4.406543 1.536252 -1.191265 2.195944 6.062807 4.880154 0.127877 -3.397008 -PE-benchmarks/binary-insertion-sort.cpp__binarySearch(int*, int, int, int) = -7.003725 -9.793014 8.561675 7.528525 3.370344 7.073103 2.953365 -2.135734 3.759167 8.550921 -2.685380 6.575338 -5.442260 -2.583066 0.095993 1.440280 -0.899348 -6.866864 1.395281 -1.664811 -1.217859 -4.719573 -5.524082 7.518250 1.356115 -3.758560 -3.581271 0.223824 -12.332572 -9.863439 -2.757654 -0.301785 4.354445 -6.418520 2.188899 -12.827828 5.656038 10.500668 -0.143288 -10.930765 0.447612 -3.255565 -1.236719 4.331167 -2.827501 2.870361 3.894188 -1.911583 -1.197910 2.429719 3.206059 -0.125727 3.537619 12.775807 2.318344 9.541476 8.996191 0.147772 0.627325 1.868833 2.375476 -2.466666 5.318377 3.224952 -3.164348 -0.699285 0.316633 2.212107 -5.734788 1.169524 1.745412 -6.406392 -0.666988 -2.435451 -5.666068 -3.136748 6.096777 0.330068 10.723853 -3.608868 11.824739 4.704757 6.777513 0.918700 7.906449 -1.256494 7.642886 2.867472 -5.814249 -0.036854 -5.005268 -1.263442 -0.538317 7.198878 -6.016449 -0.386287 4.358913 -5.846291 -10.189878 6.658727 -1.881251 -1.577871 -7.513902 -1.548857 5.043734 3.892249 -3.888477 -8.072618 -7.280782 6.238904 -4.806890 -5.404306 -0.941191 -1.972232 -0.067026 0.652517 -5.876451 -0.971951 7.822403 -5.619391 -5.697329 7.830995 -2.893176 6.995581 -1.627536 1.045596 0.108298 1.592812 3.695402 2.119523 -0.190417 -4.696540 -10.899987 -1.015524 -0.975182 -0.479449 -3.631968 -0.594796 3.861576 3.644543 3.623675 7.719160 -3.735986 7.435828 5.504540 1.051890 -3.101839 -8.039316 -0.462641 -5.181084 1.053684 -4.436954 -4.749171 1.010957 6.172360 -0.080943 -0.570538 7.948103 -2.960563 6.451056 0.115448 0.071681 0.361491 -5.486221 2.215331 -4.522017 -7.204742 4.113332 8.471179 2.675287 2.051776 -2.754071 -0.221002 -2.035467 -6.504844 2.073288 0.687375 1.366267 8.611935 4.281189 17.170034 -7.229630 0.297306 -2.764892 -2.205426 2.165484 -3.583591 -8.831561 -0.136431 2.623557 1.102793 11.837209 -0.503077 -5.547636 2.996290 0.326266 0.912356 -6.220371 9.087389 -6.753165 0.517195 -1.186718 -3.858440 -4.820447 -3.020827 -6.690767 -1.692661 9.817496 -5.466352 -10.884753 3.365644 0.110524 2.180306 -13.008325 6.889682 -4.044210 7.246301 -2.670283 -2.153711 -0.848047 4.324404 0.206301 2.801674 4.447931 -6.593803 5.913333 6.601302 0.365569 2.426702 2.790089 2.425580 -1.363936 -3.015684 -5.693348 5.160932 -0.297437 -2.957709 -2.534683 -3.792902 6.034096 2.242370 -1.651787 -3.074372 5.866395 -5.033474 -2.199340 7.642063 -1.768123 -3.895411 3.410921 0.537456 7.151011 -3.959940 -0.947822 -5.470393 1.030056 2.917884 3.105709 -9.781179 -2.901551 -5.584057 -9.889849 -2.132255 4.800558 2.190205 3.146561 0.915335 -10.587996 -5.717616 8.584169 -2.394337 8.501714 5.161128 6.949540 7.581386 3.907173 2.139254 -2.618103 -3.169067 -1.849669 -6.090020 -3.418020 0.437589 2.261232 -3.766257 7.754418 2.252462 1.812507 3.640008 0.834479 -0.613567 -5.429428 9.710795 6.162971 -5.570160 0.837262 3.735710 9.299486 -10.232273 -5.728261 -PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -4.143850 -5.905297 5.263054 4.557773 2.233352 3.745445 3.156182 -1.370905 2.838220 4.793288 -1.899491 4.416340 -3.285321 -1.537952 -0.394482 0.798030 -0.179306 -4.013026 0.908112 -0.758600 -0.197700 -3.722100 -3.165029 4.222537 1.034801 -1.871697 -1.823018 -0.120028 -8.051124 -6.380716 -0.721910 -0.243448 2.489637 -3.983679 0.852595 -8.845232 3.251382 6.737863 -0.121128 -6.748915 0.455085 -1.673987 -1.236339 2.221078 -1.027828 1.758230 2.308747 -0.747151 -0.945308 1.603473 2.371371 -0.434905 2.575114 7.925463 0.491699 6.037000 6.100992 0.250915 0.867817 0.770913 1.413830 -1.363928 3.054732 2.715366 -1.798997 -0.348550 -0.074958 1.241856 -4.367503 0.397372 1.141388 -3.748724 -1.643387 -1.439176 -3.203104 -1.345669 1.502482 -0.443359 7.215803 -1.777801 8.738406 3.043136 4.407839 -0.192232 3.976300 -0.537558 4.010878 1.789557 -3.885103 -0.203311 -4.328022 -0.661472 -0.444923 5.092648 -3.754431 0.861690 2.742524 -2.803097 -5.622666 3.384940 -1.112037 -1.156502 -4.067738 0.121806 2.221307 2.127036 -1.948953 -5.541128 -5.280564 3.504855 -2.531404 -3.120200 -0.872052 -0.725318 -0.287984 -0.041179 -3.535581 -0.650632 4.852295 -3.513844 -3.643754 3.903217 -2.337389 4.073772 -1.032280 0.407354 0.218406 0.465214 2.526507 1.158856 1.080962 -3.735027 -8.437838 -0.849758 -0.065527 1.810618 -2.475215 -0.112433 2.347387 1.921752 2.794388 4.184180 -1.398386 4.015300 3.007977 0.156966 -1.704741 -4.867308 -0.238755 -2.834286 1.775285 -2.401457 -2.056144 -0.146270 3.452530 -0.758024 -0.238491 4.929632 -2.330877 4.075989 0.366536 0.044470 -0.014635 -2.948842 1.272011 -2.387968 -4.347704 2.665802 4.976024 1.185838 1.291242 -1.221326 -0.046685 -1.388201 -3.630137 1.232686 -0.209838 0.368706 4.887114 2.130031 12.158743 -4.499358 0.275650 -1.474091 -0.821290 1.143935 -1.643513 -5.072309 1.477735 1.050966 0.904131 6.937698 0.063257 -3.051078 1.854486 -0.026425 0.234812 -3.653340 6.286878 -3.704668 -0.782195 -0.762882 -2.205830 -2.175279 -1.996537 -3.771454 0.056217 5.645652 -2.155609 -6.588751 1.349928 -0.006198 0.816438 -7.864677 6.289942 -2.362658 3.896983 -1.821842 -1.333170 -0.127091 2.890456 0.160946 0.709473 2.523527 -4.095732 3.666522 4.592295 0.213864 0.956116 1.698095 1.098851 -0.847717 -1.608727 -3.032554 2.980668 0.245053 -1.943324 -1.305920 -2.102094 4.323467 1.060364 -1.393013 -1.151056 4.145337 -2.865223 -1.035613 4.460390 -0.632115 -2.278486 2.034397 0.731983 4.220969 -2.054986 -0.574799 -3.071860 0.261560 1.515355 2.202890 -5.272303 -1.805420 -1.744023 -6.540657 -1.219549 2.261466 1.989935 1.812318 0.622323 -7.631685 -3.605668 5.586097 -1.329103 4.034676 3.025227 3.897089 3.953863 1.646285 1.221435 -1.417315 -1.836098 -0.298785 -3.271316 -1.924308 0.529051 1.017539 -3.081914 4.178513 1.162118 0.792020 1.845290 0.449366 0.790172 -2.954996 6.754366 3.350260 -3.278814 0.774758 1.864273 6.187885 -6.400633 -3.091120 -PE-benchmarks/binary-insertion-sort.cpp__main = -1.456991 -3.207553 3.190661 2.764534 0.640793 1.845453 1.262363 -0.950393 1.817967 1.874401 -1.400835 2.118336 -1.943680 -0.429776 -0.336169 0.756962 -1.265343 -2.311137 0.540029 -0.330040 -0.272533 -2.016405 -1.009302 2.002810 0.751744 0.533151 -1.053128 0.046561 -3.728524 -3.136863 0.397020 -0.465061 1.493135 -0.273100 0.587280 -4.913740 1.972766 3.118179 -0.281241 -3.896031 0.266176 -1.132923 -0.704917 0.286019 -0.255599 1.194954 1.276181 0.835867 -0.202281 0.919099 0.458312 -0.454612 1.223274 3.912565 0.110769 3.006217 3.303162 0.069872 0.442744 0.257620 0.965719 -0.549349 1.739893 1.918789 -1.075862 -0.570222 -0.205730 -0.151724 -2.409721 0.826275 0.660936 -1.089196 -1.312692 -0.768051 -1.625368 -0.496165 -0.220419 0.728760 4.225628 -1.333766 4.381222 1.630048 2.568391 -0.295288 1.987552 -0.154709 2.271653 1.205868 -2.160845 -0.126741 -2.584195 -1.163296 -0.045046 1.566830 -1.720789 -0.379588 1.376227 -2.144036 -3.019116 1.670857 -0.335720 -0.486285 -1.724662 0.195174 1.555136 1.318414 -1.091403 -2.798294 -2.118848 1.301105 -1.434298 -1.534314 -0.381404 0.251073 -0.457754 -0.114565 -2.369247 -0.476300 2.277305 -2.005096 -0.987068 2.171610 -1.038174 1.889769 -0.632015 0.014760 -0.014194 1.119426 1.320468 0.682138 0.989406 -1.375218 -3.545657 0.479690 0.498958 1.201071 -1.432129 -0.275068 1.108702 1.083835 0.843860 1.296861 -0.953582 1.895096 1.842394 -0.315355 -1.443035 -2.795912 -0.386073 -2.074774 0.910850 -1.665444 -0.804289 0.394096 2.179264 0.164597 0.447583 2.787836 -1.999949 2.038783 -0.107155 0.458206 0.238196 -0.364166 0.900831 -1.340990 -2.180497 1.637217 2.283371 0.589408 0.823070 -1.037449 0.119757 -1.218210 -2.078905 1.459596 0.368390 0.162407 2.594863 1.192821 4.953785 -2.300841 0.197025 -0.250167 -0.298652 0.377663 -0.416306 -3.008384 1.371012 0.361145 1.020163 3.223995 -0.015857 -1.554437 0.881479 0.040848 0.118154 -1.929686 2.556436 -2.072569 -0.393344 -0.867223 -0.106201 -1.216132 -1.277428 -1.693023 0.091044 3.334227 -1.297755 -3.169481 1.207421 -0.557360 1.064812 -4.108542 2.491633 -1.541356 2.165182 -0.830023 -0.764016 -0.037122 0.509818 -0.164918 0.034776 1.519429 -1.737093 1.675837 2.248651 0.449779 0.377978 1.080403 0.955919 -0.431717 -0.484820 -1.459128 1.439882 -0.016551 -0.815510 -0.478100 -1.207073 1.994382 0.287803 -0.520311 0.674861 2.259848 -0.684816 0.452613 2.028704 0.097238 -1.572096 0.921664 0.275549 2.345318 -1.270397 -0.454442 -1.509224 0.351242 0.275588 1.345115 -3.035396 -2.080442 -1.599994 -3.349717 -1.114459 0.537644 1.250456 0.689352 0.432517 -3.726947 -1.802559 2.422367 -0.834444 2.242514 1.695318 1.830711 2.244683 1.322572 0.006186 -1.033997 -0.558479 0.230728 -1.704699 -0.648019 -0.614885 0.984092 -1.609363 2.050233 1.479293 -0.120864 0.767835 -0.325265 1.815846 -1.609632 3.798768 1.979301 -2.160638 0.543522 1.059959 3.226097 -2.122115 -1.884584 -PE-benchmarks/egg-dropping-puzzle.cpp__max(int, int) = -0.876546 -1.017857 0.920345 0.733667 0.540435 0.634457 0.349080 0.054689 0.575886 1.075504 -0.482711 0.647732 -0.617249 -0.310051 0.309333 0.261322 -0.099229 -0.917265 0.427901 0.094490 -0.105550 -0.629093 -0.480552 0.505801 0.207840 -0.060184 -0.421066 0.010796 -1.198241 -1.359901 -0.239417 -0.154084 0.488102 -0.232424 0.288753 -1.258429 0.546521 0.885417 0.013814 -1.278893 -0.001211 -0.244405 0.007511 0.385625 0.224524 0.685832 0.871230 -0.018112 -0.083856 0.394849 0.250419 -0.505317 0.157575 0.882624 0.243397 0.901965 0.910628 -0.124758 0.099807 0.182085 0.262892 -0.534486 0.628328 0.627047 -0.593548 0.099238 0.142365 0.113560 -0.776396 0.257336 0.236275 -0.468616 -0.258291 -0.340096 -0.356253 -0.197586 0.334992 0.086172 1.315188 -0.224730 1.378366 0.650891 1.120715 -0.051378 0.672135 -0.228331 0.757463 0.301083 -0.894862 -0.117378 -0.707972 -0.652606 -0.317413 0.977627 -0.309534 0.627693 0.320387 -0.433120 -0.944672 0.597427 -0.342818 0.136083 -1.137775 0.227690 0.819613 0.648739 -0.156808 -0.867718 -0.865081 0.311885 -0.820306 -0.418219 -0.060853 -0.252549 -0.374887 0.158720 -0.645066 -0.389715 0.773221 -0.795804 -0.598152 0.698699 -0.522503 0.869122 -0.148464 0.081978 0.124101 0.262258 0.723168 0.203108 0.404337 -0.703788 -1.667565 -0.031233 0.014589 0.327468 -0.324789 -0.009506 0.346830 0.238617 0.142104 0.474740 -0.480003 0.882375 1.111386 -0.054432 -0.570777 -0.911159 0.156410 -0.454639 0.296768 -0.509938 0.027176 -0.024485 0.622288 -0.041281 0.013055 1.270420 -0.760157 0.735198 -0.185199 0.131808 -0.063869 -0.200309 0.284458 -0.472218 -0.536370 0.379917 1.116387 0.049888 0.392223 -0.602545 0.067598 -0.375680 -0.889321 0.540617 0.071221 0.250507 0.693322 0.238863 1.559131 -0.910453 -0.124031 -0.179867 0.079236 0.033529 -0.114321 -0.959997 0.388546 0.075028 0.412720 0.982195 0.040215 -0.691371 0.320857 0.071276 0.022864 -0.520505 0.839346 -0.761240 0.170610 -0.025514 -0.275242 -0.611615 -0.353060 -0.423655 0.186350 1.005685 0.233040 -1.368476 0.218383 -0.342689 0.373080 -1.479810 0.475673 -0.457548 0.531062 -0.488313 -0.067321 -0.243542 0.393334 0.394941 0.028747 0.404037 -0.434995 0.630826 0.692641 0.043356 0.173270 0.498106 0.215413 0.055145 -0.453214 -0.197265 0.217410 -0.076804 0.032518 -0.209420 -0.287772 0.850699 0.432973 -0.453469 -0.190238 0.800423 -0.683796 0.074924 0.703494 -0.251559 -0.481173 0.201267 0.179463 1.137624 -0.390972 -0.170233 -0.688082 0.085727 0.113834 0.326521 -0.948621 -0.483225 -0.046913 -1.389273 -0.550010 0.599495 0.269538 0.402483 0.205758 -0.935223 -0.347364 0.685197 -0.071232 1.194389 0.252868 0.552567 0.763083 0.371555 -0.050175 -0.623348 -0.339203 -0.288030 -0.823880 -0.346608 -0.009102 0.162929 -0.518892 0.797086 0.211504 -0.005110 0.085286 -0.063716 0.431694 -0.601983 1.131673 0.738474 -0.590292 0.081315 0.116269 1.402078 -1.105141 -0.616264 -PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -7.949815 -13.352667 9.302185 9.134783 4.657457 9.132947 6.273982 -2.067548 3.593688 10.419068 -4.419270 8.859212 -5.513804 -5.023890 -0.565737 0.132525 0.546796 -7.711164 3.452902 -0.173107 1.213041 -7.283145 -8.578278 11.262256 0.911239 -2.204785 -2.191830 -0.451775 -17.038132 -12.031965 -1.912990 0.038488 4.968488 -1.684984 3.625252 -12.511959 5.122585 13.891619 0.629355 -13.343150 -0.574070 -2.419696 -3.089558 6.158605 -1.138903 5.816857 5.149477 -1.208459 -3.194188 3.348454 5.213116 -2.551035 7.586888 9.865388 3.529737 12.538999 10.952426 -0.187973 6.066509 1.201658 2.731473 -3.316353 6.609249 5.737472 -3.306032 0.516363 -1.431014 4.189623 -7.569721 0.179860 3.486494 -6.308926 -4.082571 -1.633589 -5.879853 -3.042474 -2.961775 -2.078602 14.015999 -0.866992 18.740167 8.570573 11.250413 -2.711961 9.975040 -1.032783 8.305550 3.756401 -8.884782 2.498821 -9.906843 -2.603548 -1.108050 8.924108 -8.882986 3.682303 4.580369 -6.091450 -11.491519 8.257378 -3.156906 -2.819004 -5.071653 1.803141 4.454065 3.234862 -3.976104 -11.022987 -9.185894 7.745663 -7.010422 -6.474282 -2.078381 -0.437442 0.840871 1.251695 -4.740990 -1.161594 11.079938 -6.731498 -5.066292 8.687692 -1.758668 8.768520 -2.226877 -0.845343 0.910205 -0.394402 6.014956 1.582893 1.444452 -8.881722 -18.587040 1.843504 -0.215614 -0.108918 -4.992433 -2.390128 6.776093 5.104842 8.226741 10.624243 -1.449081 8.200629 6.119112 1.034244 -2.590159 -11.631068 -0.773285 -3.301884 2.905905 -3.210363 -3.476258 -1.918404 6.981051 -2.377136 -0.639444 4.018118 -3.166223 8.044052 -0.122472 1.604371 -1.389863 -4.626527 2.020627 -4.049048 -7.498528 6.236948 11.152538 3.887923 3.542577 -3.179918 -0.381307 -0.031774 -7.474735 3.356585 -0.556924 2.275837 11.781539 4.942902 20.914162 -5.091100 -0.531077 -4.232174 -0.918433 2.120133 -3.305252 -9.701217 4.430494 1.754694 0.756991 13.233031 -1.016969 -3.260383 4.186524 0.534534 0.516135 -8.515949 12.665122 -7.596033 -0.684588 -1.653850 -3.582194 -5.522156 -5.063695 -7.843343 0.146514 11.600434 -3.253371 -10.485000 1.230362 -3.354682 -0.024144 -12.390790 8.794605 -4.467424 5.357184 -3.654225 -3.998340 -1.231902 6.257033 1.457939 -0.253569 5.106464 -10.174785 8.518970 6.478037 0.138000 0.979716 4.450553 1.384075 -1.888220 -5.075443 -6.971813 4.525252 0.814094 -1.011246 -2.480627 -4.339770 9.108719 3.369038 -3.897546 -1.942841 8.008490 -6.514146 -4.511952 7.602933 -3.648579 -4.248615 0.943432 1.756163 7.367153 -4.806085 -1.741880 -7.895026 -1.838505 3.593802 2.452006 -11.004566 -1.426003 -3.126235 -9.329274 -3.680705 3.951159 4.622176 6.681657 1.695655 -15.116419 -7.634251 10.070655 -2.620269 2.379913 5.974101 7.117841 8.653414 2.540148 4.724303 -2.736452 -4.962302 -0.528971 -7.309526 -3.153733 1.146581 2.137914 -5.641851 10.930106 1.439791 1.231416 3.961950 0.839639 4.832631 -6.712276 13.260774 7.123984 -7.778032 -0.259611 2.460359 10.494562 -14.538434 -6.054743 -PE-benchmarks/egg-dropping-puzzle.cpp__main = -2.462491 -3.782128 2.765568 2.472735 1.117273 2.387264 1.701890 -0.398294 1.268488 2.469461 -1.186616 2.391859 -1.694613 -1.172090 -0.328854 0.026571 -0.171417 -2.387858 0.983802 -0.152511 0.021869 -1.955369 -2.250376 2.841312 0.253330 -0.561604 -0.768832 -0.330467 -4.711686 -2.804287 -0.174690 -0.204650 1.473980 -0.749843 0.850391 -4.723818 1.302079 3.568508 0.008054 -3.933531 -0.083325 -1.023650 -0.445706 1.228513 -0.485895 1.248803 1.609124 -0.172728 -0.769622 0.806221 1.007928 -0.608830 1.520848 3.816274 0.737122 3.297942 3.209950 -0.038507 1.111393 0.330527 0.911276 -1.075205 1.935129 1.545325 -1.102960 0.039440 -0.354215 0.576378 -2.246957 0.137697 0.918375 -1.459551 -0.954433 -0.522846 -1.946374 -1.086240 -0.574519 -0.156116 4.061859 -0.884322 5.065892 2.148455 3.248076 -0.258524 2.729962 -0.083253 2.286630 1.053438 -2.471254 0.544422 -2.739847 -0.479035 -0.424087 2.205159 -2.128045 0.162833 1.490726 -1.752250 -3.222488 2.372622 -0.853875 -0.424000 -1.780552 0.152336 1.376194 1.347987 -1.544217 -3.057790 -2.770228 1.967392 -1.764636 -1.698555 -0.134117 -0.183861 0.060508 -0.305884 -1.620557 -0.395216 3.023357 -2.041006 -1.450020 2.646893 -0.876922 2.500690 -0.570402 -0.121131 0.080749 0.541296 1.723894 0.280805 0.284084 -2.323319 -5.162424 0.069603 -0.031116 0.938733 -1.384295 -0.647018 1.716194 1.342431 1.969605 2.276263 -0.450814 2.185074 1.857097 0.132309 -0.937108 -3.330123 0.070823 -1.353205 0.586041 -1.212248 -0.803043 0.092775 2.069606 -0.052291 -0.091574 1.947561 -1.097798 2.446433 -0.193047 0.190559 -0.269184 -1.016716 0.768810 -1.239359 -2.162458 1.506820 2.954545 1.157666 1.012132 -1.153208 -0.036223 -0.402834 -2.163052 0.856259 0.346235 0.456854 3.112567 1.412319 5.270350 -2.315807 -0.184695 -1.126085 -0.382616 0.563100 -0.904091 -2.853428 1.114911 0.592465 -0.124092 3.427016 -0.253154 -1.343504 1.201306 0.011888 0.162439 -2.177969 3.063859 -2.174215 -0.424782 -0.634599 -0.799942 -1.781704 -1.308313 -2.316079 -0.353385 3.358111 -1.326375 -3.045481 0.464928 -0.535135 0.439364 -3.929177 2.487792 -1.337744 2.038276 -1.118492 -0.987736 -0.425494 1.841548 0.424159 0.065812 1.545044 -2.712789 2.154430 2.191819 0.199737 0.540695 1.306165 0.790116 -0.425210 -1.361552 -1.794005 1.266026 -0.036148 -0.686552 -0.439765 -1.267714 2.562166 1.008863 -0.659049 -0.133691 2.315109 -1.508000 -0.633340 2.475198 -0.884911 -1.269457 0.171440 0.325943 2.575443 -1.355833 -0.324247 -2.314579 0.032133 0.858515 0.659694 -3.157047 -1.092410 -1.341316 -2.870440 -0.896949 1.122592 0.825136 1.525022 0.556656 -4.274929 -1.909371 2.399151 -0.920680 1.429177 1.693842 2.010744 2.649103 1.019565 0.718397 -1.104340 -0.756967 -0.147962 -2.057096 -0.726362 -0.078614 0.555619 -1.817132 2.890772 0.712139 0.318770 0.973403 0.581144 1.467103 -1.825805 3.954947 2.155658 -2.372088 0.116319 1.074526 3.321580 -3.486200 -1.780662 -PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -1.229420 -2.359743 2.009075 1.970218 0.676944 1.536005 0.950415 -0.820042 1.454629 1.787114 -1.250308 1.350367 -1.420528 -0.604362 0.428967 0.513855 -0.736167 -1.596103 0.547915 -0.085981 0.016522 -1.713797 -0.915393 1.438750 0.368935 0.835193 -0.522918 0.576854 -2.602144 -3.081274 0.459689 -0.276043 1.083243 0.682921 0.584749 -3.210852 1.634491 2.492990 -0.087443 -2.908560 -0.056802 -0.728428 -0.789878 0.574059 0.405865 1.501483 0.936411 0.704370 -0.245935 0.699878 0.541141 -0.874325 0.907499 1.735813 0.184470 2.360254 2.441290 -0.123502 0.563439 0.299607 0.571354 -0.346938 1.489501 1.858492 -1.144674 -0.268440 0.149453 0.158063 -2.169682 0.666917 0.630190 -1.069973 -1.175849 -0.704029 -0.688337 -0.193889 -0.309691 0.164405 3.315537 -0.259310 3.509821 1.471773 2.067577 -0.628017 1.692494 -0.396559 2.004046 0.872500 -2.007165 -0.033498 -2.052408 -1.689568 -0.008049 1.857179 -1.213347 1.432293 0.627929 -1.147012 -2.114152 1.061546 -0.432490 -0.325493 -1.663033 0.646829 1.364731 0.673627 -0.204343 -2.109197 -1.463497 1.014307 -1.707586 -1.166442 -0.904039 0.331874 -0.653005 0.451678 -1.547677 -0.579021 1.730168 -1.487976 -0.789362 1.470412 -0.800120 1.267394 -0.540526 -0.160877 0.125614 0.459260 0.909249 0.554614 1.432354 -1.354836 -3.213752 0.614637 0.322884 0.836168 -1.041394 -0.439738 1.075386 0.681647 0.562377 1.194674 -0.824048 1.607536 1.806925 -0.114850 -0.885174 -2.064403 -0.319536 -1.412856 1.009739 -1.171049 -0.087761 -0.306531 1.654534 -0.250623 0.342250 1.917812 -2.044949 1.713234 -0.220446 0.684020 0.092310 0.075241 0.601340 -1.015646 -1.358890 1.378364 1.886203 0.074438 0.813521 -0.904556 0.005780 -0.812450 -1.903919 1.645758 -0.303955 0.444224 1.931837 0.769183 4.420776 -1.372323 0.348070 -0.158419 0.092264 0.258537 -0.093886 -2.053890 1.425904 0.149733 1.368683 2.620683 0.021992 -0.981134 0.115576 0.325184 0.000914 -1.610826 2.373559 -1.594076 -0.019042 -0.432644 -0.255963 -0.871364 -1.294784 -0.955200 0.764328 2.419251 0.099404 -2.632310 0.924849 -1.040846 0.761560 -2.961187 1.666717 -1.273201 1.253304 -1.038448 -0.614825 -0.109213 0.150475 0.113368 -0.059341 1.039306 -1.230059 1.483535 1.490752 0.285322 0.182328 0.822944 0.315325 -0.264601 -0.621281 -1.077226 0.890909 0.236979 0.074165 -0.585811 -0.968108 1.693771 0.313103 -0.989398 0.430091 2.066882 -0.945767 0.032947 1.216696 -0.204386 -1.150739 0.750279 0.546584 1.511860 -0.798079 -0.557836 -1.046330 -0.136681 0.265416 0.994149 -2.124828 -1.165096 -0.201302 -2.597339 -1.283815 0.793600 1.293039 1.027772 0.546832 -2.583010 -1.076268 1.758173 -0.391075 2.023028 0.814373 1.417148 1.389202 0.792605 0.300066 -0.969336 -0.897112 0.007068 -1.643733 -0.579930 -0.244939 0.886632 -0.828985 1.718916 0.742789 -0.173451 0.394411 -0.665216 1.931685 -1.165119 2.749408 1.415369 -1.342075 0.299472 0.185579 2.626722 -1.969950 -1.326946 -PE-benchmarks/n-queen-problem.cpp__solveNQUtil(int (*) [4], int) = -6.063701 -11.802468 9.241067 8.615018 4.134517 7.378506 4.674381 -1.238238 3.082134 9.691496 -3.731009 7.532979 -5.939215 -4.497616 1.692410 0.893353 -0.296503 -7.453295 2.421761 -0.592502 0.270209 -4.461595 -7.305447 9.644644 1.654818 -5.022472 -2.437151 -0.450363 -14.057111 -8.173890 -3.269734 -0.574677 4.647374 -3.885370 3.403549 -9.480281 5.455927 11.515104 0.050726 -11.043093 -0.497706 -2.418951 -1.918787 3.525517 -1.804314 3.407002 5.718541 -0.621148 -2.971851 3.060545 3.112622 -2.274794 5.474422 11.402764 3.889196 10.732639 11.492888 -0.111599 3.770004 1.195061 3.087671 -3.890904 5.682259 3.140698 -2.939813 -0.251461 -0.640610 2.329671 -5.100196 -0.603499 4.136368 -5.014419 -1.490341 -2.350136 -5.392697 -3.449716 2.452958 -1.056924 12.232452 -3.583857 14.602113 8.409199 9.255316 0.738922 8.703564 -0.291943 6.996194 3.607390 -7.170255 2.430974 -8.679994 -2.786793 -0.385699 6.718876 -6.898084 0.501026 4.494199 -4.852123 -11.095544 8.270891 -2.431023 -1.912584 -4.755501 -0.547564 4.064871 3.467862 -4.347279 -8.405454 -7.278782 5.204375 -5.992197 -5.947523 -1.280018 -0.481813 0.755320 1.028726 -6.197425 -0.749616 9.560455 -6.504400 -4.184588 7.948195 -3.359284 8.859036 -2.408660 -0.488408 0.361370 0.186047 6.119650 1.751274 0.997386 -7.508310 -13.141948 -0.464209 -0.263465 0.117882 -3.063639 -0.383597 5.973303 4.741913 6.969111 10.338629 -0.726840 8.838425 1.926176 0.951054 -2.785157 -10.864238 -2.020702 -2.862574 2.911390 -3.720729 -4.518963 -0.397692 6.533205 -1.561317 -1.198716 6.149251 -1.617260 7.113628 -0.696877 1.540606 -1.180359 -6.184823 2.463048 -4.089132 -6.585807 4.981829 10.527728 2.866841 3.694951 -3.806267 0.841844 -1.797804 -6.697108 -0.074570 -1.312993 -0.519267 10.231523 4.247322 17.355603 -4.946503 0.040767 -3.828761 -0.597967 2.114561 -2.826813 -9.037230 1.265449 1.618181 0.244807 11.682329 -0.002160 -5.571825 3.671962 -0.111912 -0.394512 -6.182831 10.401489 -6.307703 -0.092887 -1.027751 -0.641901 -5.937344 -4.215390 -6.842424 0.394276 10.794827 -3.965977 -9.429496 0.628362 1.676444 1.124929 -11.270960 9.564853 -4.190728 7.699651 -2.216160 -4.554074 0.092436 5.047840 0.718610 0.594134 5.020673 -7.361949 6.058045 3.986014 0.398321 2.052598 4.304836 1.518543 -2.155849 -3.982121 -6.163869 3.849865 0.011494 -3.080463 -3.112054 -3.743664 8.040169 3.155383 -2.786928 -4.486508 5.930826 -5.504383 -3.469789 6.416555 -3.386552 -4.516841 1.676074 2.037695 8.302892 -4.721334 -0.312837 -7.213823 -0.739364 3.560337 3.971626 -10.332668 -0.878511 -2.830393 -7.066265 -4.078948 6.341441 2.505575 4.884431 1.336940 -11.611195 -6.373492 7.572817 -2.767491 2.884732 6.327286 7.567441 8.497770 2.407206 4.492509 -4.281623 -2.919410 -0.894842 -6.297812 -2.832529 0.772971 1.894642 -4.795616 8.818903 1.958995 1.931031 3.281243 -0.512711 2.004958 -5.879330 11.063699 6.516881 -7.947127 -0.383108 5.835502 10.112026 -13.207771 -5.980396 -PE-benchmarks/n-queen-problem.cpp__solveNQ() = -1.216516 -4.231883 4.138376 3.837024 0.843339 2.468151 1.375006 -1.044890 1.853561 2.637365 -1.778634 2.673955 -2.516837 -0.957445 0.230463 1.110523 -1.580295 -2.959376 0.860493 -0.106852 -0.027030 -2.071214 -1.372245 3.081809 1.119323 0.706927 -1.153530 -0.027999 -4.602592 -3.530313 0.060202 -0.547197 2.028208 0.883980 1.241182 -3.881002 2.577250 4.009913 -0.206086 -4.720664 0.114079 -1.080072 -0.920988 0.111070 -0.219017 1.797597 1.845438 1.152291 -0.493793 1.410511 0.229973 -0.866063 2.110643 3.394199 0.973835 3.691674 3.992124 0.014504 1.310820 0.071463 1.377704 -0.816225 2.187253 1.966866 -1.219847 -0.735020 -0.648119 -0.124280 -2.575052 0.789786 1.143451 -1.113984 -1.699288 -0.882722 -1.652323 -0.506889 -0.858650 1.039097 4.989632 -1.725595 5.163156 2.664324 3.245009 -0.538605 2.612102 -0.129283 2.516943 1.712189 -2.520599 0.184840 -3.590939 -2.070098 0.090734 1.077638 -2.410516 -0.223216 1.694768 -2.504495 -4.011530 2.434219 -0.364113 -0.769388 -1.503637 0.386148 1.865394 1.735708 -1.252176 -3.044711 -1.786771 1.526278 -1.924725 -2.119568 -0.777425 0.762346 -0.436314 0.302274 -2.941986 -0.490994 2.951798 -2.556740 -0.433304 2.669316 -0.945410 2.593369 -1.023599 -0.365005 0.086037 1.230374 2.096282 0.907408 1.436503 -1.960079 -3.428560 1.297375 0.790905 0.681528 -1.564722 -0.074884 1.671536 1.646864 1.551554 2.200681 -0.843168 2.538691 1.377978 -0.358111 -1.880452 -3.790728 -1.075035 -1.985403 1.180083 -1.993524 -0.916178 0.785587 2.761838 -0.063295 0.421033 2.917163 -2.337155 2.304683 -0.227603 1.088282 0.015364 -0.263482 1.022117 -1.615880 -2.521864 2.317360 3.180914 0.700555 1.219166 -1.412248 0.430363 -1.303946 -2.565771 1.531040 0.050471 -0.048919 3.575161 1.453692 4.634236 -1.623315 -0.113965 -0.477802 -0.130973 0.403583 -0.458596 -3.879922 1.658898 0.121615 1.357685 3.966481 -0.125162 -1.795896 1.349196 0.025756 -0.083053 -2.330456 3.221571 -2.602518 -0.302825 -0.990362 0.436936 -1.653864 -1.822519 -2.162884 0.332423 4.320944 -1.276904 -3.329958 1.015041 -0.625944 1.071783 -4.266263 2.602990 -1.904636 2.420083 -0.376713 -1.430192 0.010574 0.079819 -0.176588 -0.731008 2.032599 -1.938279 1.901812 1.995071 0.472922 -0.001132 1.669991 0.872360 -0.689283 -0.532454 -1.901259 1.553931 -0.089955 -0.679630 -0.722288 -1.474572 2.413560 0.322777 -1.194731 0.624834 2.364356 -0.733451 0.296334 1.610787 -0.146157 -2.172740 0.911613 0.633832 2.935965 -1.782492 -0.440420 -2.082356 0.022681 0.481338 1.911919 -3.924392 -2.260932 -1.620586 -3.243000 -1.861629 0.713689 1.744012 1.002779 0.392560 -3.962828 -2.560410 2.472503 -0.987290 1.860947 2.317511 2.290083 3.049367 1.411749 0.411895 -1.440882 -0.724525 0.298206 -2.029772 -0.754826 -0.633339 1.234454 -1.688521 2.616489 2.064194 -0.050989 1.027495 -1.409612 2.288122 -2.136045 4.504408 2.485131 -3.128708 0.294271 1.495756 3.505612 -3.158451 -2.535966 -PE-benchmarks/n-queen-problem.cpp__main = -0.334217 -1.142844 1.063858 0.994049 0.168676 0.594979 0.375737 -0.174345 0.607166 0.533453 -0.478654 0.584744 -0.744554 -0.181634 0.126999 0.279718 -0.462614 -0.845928 0.271744 0.013537 -0.040068 -0.611721 -0.295572 0.707087 0.271298 0.326695 -0.270415 -0.064174 -1.192064 -0.566887 0.215855 -0.226328 0.551802 0.527298 0.339146 -1.100771 0.563330 0.897689 -0.057973 -1.268724 -0.031122 -0.364469 -0.028086 -0.154392 0.061258 0.473698 0.546942 0.398483 -0.052942 0.328087 -0.031570 -0.379573 0.355117 0.871910 0.144902 0.866930 0.983093 -0.009771 0.287830 -0.054325 0.395997 -0.247465 0.591022 0.581253 -0.416540 -0.185068 -0.242056 -0.247422 -0.758140 0.242851 0.279559 -0.063561 -0.572947 -0.275613 -0.376802 -0.189019 -0.656066 0.397645 1.382487 -0.591828 1.347904 0.700117 0.972703 -0.114601 0.654894 0.025276 0.603057 0.425002 -0.737356 0.159128 -0.997056 -0.546829 -0.041286 0.125043 -0.510012 -0.074078 0.417034 -0.517114 -1.004031 0.627998 -0.120483 -0.001768 -0.390747 0.209259 0.468577 0.571092 -0.425194 -0.826371 -0.433187 0.266416 -0.375158 -0.481809 -0.128122 0.243483 -0.224138 -0.210971 -0.809864 -0.236129 0.699493 -0.777799 0.007895 0.727299 -0.399893 0.682841 -0.233069 -0.166752 0.004136 0.601353 0.651775 0.174328 0.410344 -0.610996 -1.034876 0.330336 0.236376 0.610909 -0.370897 0.015948 0.419256 0.345184 0.316731 0.300384 -0.070523 0.533015 0.431421 -0.200530 -0.546176 -0.972618 -0.232568 -0.606014 0.331337 -0.601616 0.050631 0.318234 0.727521 0.223904 0.167486 1.023124 -0.727352 0.597818 -0.157911 0.235857 0.018609 0.289504 0.324422 -0.415404 -0.597674 0.564071 0.759620 0.111893 0.432652 -0.498218 0.131517 -0.450666 -0.580274 0.455687 0.118161 -0.071736 0.901741 0.322043 0.802037 -0.512877 -0.035482 -0.074701 0.065782 0.081384 -0.036704 -1.029395 0.598175 -0.038283 0.223002 0.751485 -0.063643 -0.449784 0.361842 -0.088336 0.017074 -0.581607 0.665023 -0.665307 -0.136714 -0.414961 0.332602 -0.472586 -0.499519 -0.450554 0.167511 1.118391 -0.151972 -0.721444 0.188923 -0.080899 0.388819 -1.018161 0.650536 -0.515794 0.725648 -0.168167 -0.372920 -0.019905 0.023090 0.103336 -0.327127 0.560110 -0.388092 0.354981 0.529203 0.159215 -0.057528 0.553888 0.326075 -0.085872 -0.129045 -0.354675 0.343411 -0.031878 -0.109134 -0.005066 -0.405323 0.665333 0.116881 -0.312372 0.476381 0.718210 -0.073086 0.290014 0.361739 -0.047781 -0.572550 0.097688 0.155623 0.919906 -0.486527 -0.052453 -0.582122 0.121333 0.022978 0.390071 -0.972702 -0.810383 -0.305495 -0.776731 -0.550732 0.152353 0.330312 0.248907 0.153484 -0.948538 -0.582922 0.413192 -0.320267 0.604857 0.451384 0.521987 0.841340 0.443337 -0.089349 -0.533176 0.033075 0.101307 -0.523303 -0.022837 -0.305590 0.299269 -0.565074 0.584825 0.623539 -0.089667 0.148638 -0.286197 0.874236 -0.540324 1.254912 0.684524 -0.849448 0.196097 0.458166 1.029556 -0.551207 -0.658144 -PE-benchmarks/sieve-of-eratosthenes.cpp__SieveOfEratosthenes(int) = -3.683431 -6.360670 4.980046 4.679760 2.127152 4.527407 1.952236 -1.755207 3.293329 4.725963 -2.575559 4.197859 -3.434399 -1.821137 -0.204094 0.610427 -1.032517 -4.186612 1.595544 -0.064087 0.050230 -4.463533 -2.789832 4.948423 0.611442 1.211772 -1.619812 0.655961 -8.163909 -6.611857 0.061719 -0.385523 2.843862 0.164376 1.498879 -7.071604 3.346658 6.536907 0.042484 -7.687854 0.021708 -1.880076 -1.490397 2.280107 0.278586 2.927540 2.278124 0.405616 -0.936530 1.454993 1.568249 -1.279271 2.870942 4.962882 1.078247 6.197922 5.463928 -0.082661 1.866836 0.642010 1.475884 -1.006723 3.962593 3.985948 -2.785414 -0.326410 0.094107 1.240225 -5.096249 1.372169 1.085219 -2.715567 -2.023695 -1.163872 -2.120765 -0.703978 0.904748 0.342824 7.577844 -0.504594 8.856343 3.571516 5.501333 -1.453464 4.723716 -0.892591 4.669157 2.122396 -4.642104 -0.680834 -5.824633 -2.031698 -0.470853 3.806841 -3.532722 2.780764 2.136022 -3.795378 -5.959223 3.180278 -1.315921 -1.029543 -3.936617 1.171087 3.526475 2.223146 -1.145078 -5.633894 -4.218776 3.793715 -4.137720 -3.293076 -1.627690 -0.127089 -0.876137 0.516027 -2.974737 -1.250176 4.912021 -3.704796 -2.396155 4.376431 -1.723603 3.906753 -1.249813 -0.067381 0.601454 0.445402 2.617655 0.914611 2.312061 -4.082066 -7.156127 1.736988 0.107097 0.610694 -3.090222 -0.871228 2.810524 1.986732 2.476948 3.465277 -2.334499 3.568310 3.800821 -0.147066 -1.926400 -5.413816 0.132023 -3.417962 1.314611 -2.481070 -1.466626 -0.346130 4.078916 -0.427690 0.428772 3.923515 -3.744554 3.879969 0.202466 1.276310 -0.019056 -0.305649 1.251491 -2.598331 -4.151581 3.084922 5.189380 0.705931 1.425660 -1.853931 -0.544342 -1.134971 -4.296794 3.180891 0.130898 1.899514 5.613185 2.197610 10.322168 -4.068398 0.099943 -1.120538 -0.314335 0.800388 -1.510222 -5.509136 2.538635 0.747566 2.486456 7.167719 -0.403650 -2.481042 1.245660 0.920557 0.425517 -4.255070 6.059830 -4.400693 -0.287057 -0.949899 -1.736585 -2.396523 -2.891082 -3.825729 0.536054 6.278206 -1.115504 -6.461641 2.123920 -2.744406 1.242291 -7.473129 3.019651 -2.953388 2.751613 -1.679613 -1.387923 -1.036211 1.322544 0.271584 -0.062800 2.755876 -4.047121 4.471307 3.931116 0.485928 0.705947 2.103313 0.687330 -0.600540 -1.981030 -3.253771 2.439441 0.388964 -0.504320 -1.069135 -2.579206 4.512108 1.096939 -2.416373 0.378958 5.125748 -2.627302 -0.423966 3.467590 -1.019104 -2.709344 1.567495 0.894431 3.762177 -2.070847 -1.181531 -3.316162 -0.423676 1.287483 2.303720 -5.721038 -2.889579 -1.099312 -6.464208 -2.078760 0.920290 2.435010 2.685956 1.159517 -7.355069 -3.320201 4.208968 -1.090327 4.813692 2.524491 3.653536 4.113023 2.216433 0.663203 -1.655597 -2.068769 -0.525377 -4.328018 -1.893213 -0.267518 1.702827 -2.010556 5.105796 1.714288 0.122630 1.588079 -1.252357 2.220539 -3.206996 6.977908 4.032959 -3.550590 0.316444 -0.498633 6.393255 -5.878250 -3.611347 -PE-benchmarks/sieve-of-eratosthenes.cpp__main = -0.958000 -1.910446 2.040928 1.711763 0.052559 1.220424 0.461907 -0.749544 1.254228 0.178438 -0.756692 1.048069 -1.393715 -0.154017 -0.429115 -0.007059 -1.364103 -1.587815 0.097443 -0.338686 -0.247272 -1.405496 -0.525528 1.554613 0.273223 0.990214 -0.827491 0.225949 -2.611965 -0.800664 0.996738 -0.237651 1.093323 0.757824 0.506823 -3.551413 1.095553 1.781234 -0.222169 -2.430538 0.200381 -1.182663 -0.252604 -0.461223 -0.420273 0.565942 0.450139 0.631648 0.045906 -0.032277 -0.266310 -0.117680 0.102938 2.449007 -0.220664 1.686796 1.743999 0.017200 0.258091 0.046132 0.503377 -0.052508 1.242655 1.308976 -1.160888 -0.543782 0.030459 -0.585606 -1.715113 0.933030 0.472112 -0.267934 -0.849020 -0.429849 -1.492423 -0.365068 0.423965 0.976228 2.617166 -1.007302 2.427133 0.739749 1.734215 -0.093855 1.495153 0.031387 1.786174 0.655931 -1.207894 -0.141133 -2.500910 -0.490690 -0.093319 0.385772 -0.956362 -0.467729 0.749786 -2.071225 -1.954215 0.816772 -0.142239 -0.299609 -1.199094 0.173334 1.140460 0.879843 -0.650774 -1.761252 -1.078569 1.209557 -0.998842 -0.785701 -0.062011 0.334513 -0.289229 -0.962469 -1.543309 -0.112322 1.248162 -1.007270 -0.275189 1.766062 -1.094669 0.856603 -0.291950 -0.055701 -0.290339 1.108232 0.483069 -0.007031 0.541947 -1.146304 -1.577438 0.156521 0.210790 1.698167 -1.066398 -0.548855 0.537815 0.608268 0.085875 0.060272 -0.492795 0.754710 0.813356 -0.530807 -0.896029 -1.749995 -0.250802 -1.895834 0.070177 -1.034744 -0.510509 0.858048 1.486177 1.004636 0.554729 1.900635 -1.268732 1.361131 -0.056843 0.092677 0.376975 0.326910 0.635905 -0.873035 -1.487845 0.988037 0.686018 0.654328 0.461446 -0.654613 -0.202780 -0.923256 -1.501038 0.999495 0.688600 0.652014 1.819324 1.070386 1.699599 -2.031757 0.332509 0.069029 -0.274685 0.166155 -0.278654 -1.776317 0.920112 0.399668 0.209068 2.035124 -0.235953 -1.034887 0.331161 0.239761 0.436248 -1.392716 1.063259 -1.274588 -0.210686 -1.097833 -0.072393 -0.893943 -0.976224 -1.394283 -0.624167 2.233845 -1.211324 -2.178300 1.204595 -0.362434 1.277841 -2.709768 0.532183 -1.012543 1.848863 -0.353085 -0.316798 -0.205141 -0.147693 -0.414898 0.189123 0.919997 -1.262362 0.903285 1.480270 0.538314 0.407896 0.588598 0.798241 -0.096601 -0.096658 -1.156153 0.948822 -0.122683 -0.640654 0.200713 -0.868371 1.133720 0.213997 -0.001302 1.090852 1.778103 0.424740 0.774177 1.381154 0.170974 -0.944877 0.063172 0.016181 1.184142 -0.720300 -0.346343 -0.880106 0.491346 0.098443 0.560344 -2.022323 -2.185003 -1.401614 -2.334793 -0.351026 -0.393155 0.390006 0.637583 0.302590 -2.462105 -1.011379 0.757453 -0.685960 2.452544 0.914212 0.949902 1.549184 1.351921 -0.787180 -0.619920 0.535820 0.413394 -1.141321 -0.105589 -1.359694 1.107085 -0.931751 1.365212 1.516440 -0.380352 0.673194 -0.304672 1.562642 -1.083628 2.763479 1.349963 -1.735079 0.392495 0.321456 1.914804 -0.290459 -1.278294 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__countNonDecreasing(int) = -3.683265 -8.697927 6.632196 6.690548 3.245007 5.551344 4.378233 -2.094571 3.439050 6.673995 -3.465763 5.981014 -3.956099 -2.271299 -0.222923 1.581337 -0.730646 -5.552073 2.427517 0.270774 1.063316 -5.351380 -3.755240 6.338979 1.313203 -0.141147 -1.764043 -0.648059 -11.237553 -8.331792 0.191444 -0.528231 3.622615 -0.243178 1.933264 -8.406701 4.290518 8.689023 0.213885 -9.996694 0.031733 -1.471916 -2.383262 3.388021 0.353861 4.661960 3.248032 1.248957 -1.300742 3.121873 3.234195 -1.845497 4.651911 5.679305 1.441916 8.427334 7.197770 -0.016799 3.723485 0.522602 2.064762 -1.373751 4.562230 5.104622 -2.211574 -0.360403 -1.285067 2.037030 -6.403150 1.134475 2.523977 -2.799823 -4.141326 -0.523491 -2.426512 -0.797034 -1.402365 -0.174754 10.089173 -0.126461 12.141801 5.283473 7.305714 -3.112164 5.401316 -0.796292 4.662070 2.869416 -5.878612 0.452744 -7.981372 -3.125350 -0.532890 4.624035 -5.241461 2.577554 2.515075 -2.645648 -7.345095 4.429701 -1.537321 -1.701874 -3.198002 2.346922 3.669783 2.744289 -1.877547 -7.079619 -5.415612 4.438686 -4.545489 -4.276363 -1.815919 -0.155621 -0.720517 0.494189 -3.598858 -1.517076 6.853910 -4.819423 -2.659030 4.940521 -1.859808 5.234346 -1.677497 -0.712536 0.599587 0.336542 4.218238 1.630227 3.332453 -5.819902 -11.436666 2.971592 0.742393 1.191188 -3.416187 -1.103462 3.636923 3.090428 4.477823 5.864124 -0.935365 4.402802 5.161361 -0.250696 -2.629023 -7.314594 -0.237187 -2.748718 2.738170 -2.709459 -1.109499 -1.770068 4.983586 -1.758044 0.850127 3.815254 -4.030683 5.330861 -0.085192 1.964239 -0.354628 -0.955707 1.410495 -2.572485 -4.876035 4.471338 7.065529 1.394428 2.338651 -2.087625 -0.043932 -1.071787 -4.952938 3.184686 -0.236669 1.474303 7.318310 2.583019 13.246320 -2.651176 -0.463410 -1.350460 -0.038803 0.990728 -1.375573 -7.034601 4.127842 0.351384 2.267153 8.705488 -0.583268 -2.332744 2.777626 0.629686 0.208118 -5.371998 8.183383 -5.186884 -0.682840 -1.626109 -1.423098 -2.927344 -3.611459 -4.369797 1.372732 8.063680 -0.091426 -7.487039 1.146223 -4.090403 0.027360 -8.732775 6.273059 -3.426476 2.621593 -2.083876 -2.157800 -0.801231 2.533231 0.302627 -0.817387 3.493491 -5.614383 5.814324 4.847526 0.453359 -0.475538 2.942616 0.914647 -0.890522 -2.433571 -3.888899 2.960635 0.410521 0.105911 -1.262117 -2.823873 5.701697 1.111592 -3.276690 0.898443 5.619537 -3.525603 -1.096635 4.114734 -1.316420 -3.475689 1.574508 1.324898 4.860439 -2.838044 -1.316781 -4.448197 -1.446271 1.470256 2.586762 -6.916686 -2.467536 -1.019018 -7.826888 -2.682073 1.386243 3.867273 3.527574 1.245718 -9.710520 -4.771595 5.534022 -1.425541 3.144525 3.989098 3.956538 5.151501 2.082672 1.475867 -1.608399 -3.476908 0.062672 -4.792621 -2.350712 0.384047 1.811890 -3.307206 6.376511 1.927441 -0.004241 1.888763 -1.601314 4.793188 -4.071424 9.249625 4.818311 -4.416460 0.426124 -0.089263 7.821092 -8.293206 -4.163936 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -0.951535 -2.287051 1.893989 1.801327 0.611416 1.345918 1.083989 -0.483124 1.097925 1.270988 -0.876133 1.383378 -1.218207 -0.430891 -0.075203 0.359490 -0.541472 -1.601244 0.572771 -0.024123 0.094226 -1.402231 -0.838516 1.535394 0.371085 0.211335 -0.533468 -0.259399 -2.875497 -1.488673 0.455996 -0.265116 1.031147 0.297297 0.516005 -2.776016 1.035528 2.031785 -0.039797 -2.650677 0.014396 -0.654105 -0.321629 0.359464 0.044324 1.022200 0.888085 0.557647 -0.185169 0.643908 0.459379 -0.505869 0.792387 1.934032 0.152433 2.011532 1.878836 -0.011795 0.721874 0.073716 0.614772 -0.381428 1.230302 1.322241 -0.746073 -0.228241 -0.362629 0.015001 -1.739591 0.436903 0.678409 -0.421008 -1.137587 -0.236803 -0.835411 -0.355150 -0.679229 0.364457 2.751222 -0.536702 3.035738 1.269392 2.007559 -0.557885 1.408893 -0.060903 1.276968 0.736408 -1.526044 0.172047 -2.271129 -0.763839 -0.183155 0.800153 -1.185133 0.132106 0.727859 -0.825283 -1.943544 1.158018 -0.337359 -0.224297 -0.920330 0.517289 0.980551 0.931949 -0.730619 -1.858556 -1.367462 1.008887 -1.005529 -1.006697 -0.246450 0.073502 -0.294979 -0.437728 -1.199777 -0.407744 1.647646 -1.336919 -0.514625 1.464982 -0.788757 1.308635 -0.392332 -0.207735 0.006345 0.634638 1.109837 0.287370 0.846814 -1.500290 -2.857609 0.592271 0.265764 1.128369 -0.854286 -0.284759 0.829162 0.746464 0.872987 0.993657 -0.101129 1.027239 1.260035 -0.268052 -0.840330 -1.926736 -0.022531 -1.030533 0.612063 -0.907952 -0.083123 0.009420 1.382440 0.121632 0.336379 1.489268 -1.207171 1.458995 -0.155022 0.388378 0.026878 0.159932 0.518156 -0.735259 -1.281388 1.069646 1.573274 0.410390 0.684777 -0.717731 0.028467 -0.580107 -1.294181 0.803086 0.232715 0.261291 1.873073 0.741938 2.692749 -1.168555 -0.065038 -0.237011 -0.031701 0.224029 -0.256098 -1.908380 1.160368 0.105329 0.306015 1.976256 -0.187925 -0.775729 0.717273 0.049692 0.125999 -1.324573 1.704733 -1.348853 -0.322811 -0.712880 -0.036303 -0.902994 -0.959720 -1.145080 0.160424 2.191598 -0.218928 -1.879315 0.416453 -0.777790 0.381946 -2.379621 1.552046 -0.953404 1.046166 -0.576522 -0.556582 -0.220071 0.577384 0.066112 -0.244944 0.983585 -1.337725 1.241715 1.406146 0.252195 -0.030020 0.860107 0.526243 -0.153875 -0.493717 -0.929565 0.797974 -0.019691 -0.147415 -0.077770 -0.783198 1.461483 0.298295 -0.598588 0.720524 1.568058 -0.487747 0.168588 1.153958 -0.221494 -0.962126 0.228872 0.249148 1.498443 -0.792164 -0.244665 -1.167023 -0.054338 0.225695 0.602708 -1.878426 -1.226369 -0.503020 -2.033835 -0.673758 0.231627 0.733149 0.776389 0.344711 -2.508363 -1.155499 1.017905 -0.536637 1.180363 0.981526 0.987768 1.511472 0.807136 -0.062032 -0.648100 -0.335141 0.141073 -1.192484 -0.374323 -0.357807 0.579084 -1.065931 1.518105 0.872108 -0.107792 0.435051 -0.305444 1.632619 -1.074822 2.620902 1.329984 -1.399850 0.279543 0.319733 2.172844 -1.533305 -1.157455 -PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -3.267908 -6.027616 5.688125 5.245631 2.380723 3.839365 2.536027 -2.032626 3.181338 4.790572 -2.349441 3.811446 -4.073951 -0.848111 -1.202951 1.851957 -1.259416 -4.741753 0.953912 -0.680096 -0.527296 -3.632480 -1.194272 3.382318 1.722490 0.729826 -2.269141 -0.260628 -7.925454 -7.762711 0.450123 -0.672252 3.097415 -0.068946 0.234433 -7.574012 4.093074 6.934744 -0.528083 -6.720637 0.770099 -1.870507 -2.014700 1.668002 0.446869 2.642809 2.200187 0.248425 -0.328256 2.048230 2.351842 -0.657528 2.349520 5.536699 0.263430 5.983856 5.360502 0.397385 0.823151 0.813094 1.662255 -0.636030 3.863765 3.737576 -2.266917 -1.009795 -0.141422 0.414160 -4.873863 1.536684 1.013963 -2.242393 -1.511906 -0.967985 -2.194185 -0.783847 1.693463 -0.140934 7.917426 -1.144075 8.225353 3.202530 4.369251 -1.564199 3.714131 -0.830228 3.889389 2.357211 -3.910254 -1.031095 -4.411625 -1.606150 -0.587952 5.673863 -3.653940 1.341458 3.000747 -3.267862 -5.934107 2.740374 -0.891210 -1.100651 -4.473186 1.116130 2.861052 2.218726 -1.817621 -5.313447 -4.081621 2.173838 -2.924325 -3.433106 -1.366614 -0.328977 -1.518152 0.969895 -4.120933 -1.531877 3.700922 -4.319005 -2.905790 3.721248 -1.425925 3.645048 -1.338130 0.547662 -0.051240 0.804066 2.032290 1.659097 2.331616 -2.237802 -7.013943 -0.402791 1.093306 1.798993 -3.263817 -1.013014 1.577216 1.809444 1.491468 3.048067 -2.630070 3.981887 5.082457 -0.601147 -2.456326 -4.517314 0.562559 -3.861072 1.380117 -3.294885 -1.350797 -1.111130 4.252526 -1.253006 0.972021 6.400563 -3.696920 4.322561 0.254526 0.706446 0.666443 -1.497756 1.636635 -2.596045 -4.593053 3.292867 5.040272 0.886925 1.386135 -1.397699 -0.211874 -2.320923 -4.793043 2.834997 -0.524902 0.013246 4.831697 1.870927 10.188210 -4.382691 0.810373 -0.347901 -0.636919 1.192771 -0.612987 -6.031807 2.009736 0.530305 2.012116 6.895970 0.226312 -3.542322 1.852538 0.212666 0.144161 -4.325753 5.964526 -4.522107 0.045747 -1.588178 -1.115265 -1.790763 -2.650091 -2.660142 0.676375 6.088192 -1.078170 -6.611170 2.015742 -0.619136 1.023719 -8.469696 3.168816 -3.150277 3.068169 -2.042588 -1.146830 -0.011335 1.801584 -0.190357 -0.075201 2.873956 -3.521496 4.518529 4.479166 0.517360 0.539494 1.639160 1.510392 -0.674632 -1.157368 -2.945404 3.100306 0.612655 -1.982938 -1.422268 -2.461517 3.509003 0.111319 -1.851786 0.261206 4.736560 -2.523242 0.107131 3.416986 0.699785 -3.034764 2.427608 1.218928 4.526921 -1.822436 -0.966006 -2.504504 0.253928 0.509464 3.494284 -5.649989 -3.892041 -0.941584 -7.711997 -1.676721 1.902608 2.952274 1.636304 0.907759 -6.717235 -3.482293 4.601391 -1.447673 6.134231 3.210271 3.998992 3.772029 2.080790 -0.067143 -1.559460 -2.036564 0.453841 -3.388477 -2.384836 -0.028211 1.696860 -1.974042 4.214691 2.041269 -0.063796 1.464624 -1.393463 3.549549 -3.015540 7.388649 3.465637 -3.260494 1.803508 0.671514 7.372034 -4.815052 -3.327478 -PE-benchmarks/sudoku.cpp__FindUnassignedLocation(int (*) [9], int&, int&) = -1.864098 -3.037067 3.286445 3.078212 1.462021 2.154128 0.919570 -1.867653 2.598350 3.369483 -1.269007 1.760424 -1.999899 -0.442032 0.717023 1.567176 -0.941972 -2.495241 0.549179 -0.808828 -0.401711 -2.463594 -0.743282 1.246184 0.722958 0.127564 -1.375053 0.565206 -3.581943 -5.425379 0.638717 -0.603663 1.654002 -0.360825 0.482392 -5.049928 3.053314 3.494822 -0.362092 -3.936285 -0.009171 -0.937697 -0.910403 1.064997 0.490964 2.045926 1.080237 0.042577 0.294335 1.395563 1.806614 -0.612204 1.138252 3.000577 -0.372121 3.291610 2.710030 -0.232475 0.323998 0.865159 0.887387 -0.108355 2.402351 2.683103 -1.374524 -0.788046 0.263789 0.375285 -3.191361 1.390322 0.656961 -1.931909 -1.277344 -0.780636 -0.939762 -0.445556 0.613508 0.217660 4.645144 -0.363829 4.489012 1.913262 2.852170 -0.781226 2.331564 -0.711753 3.342911 1.231983 -2.788233 -0.452447 -2.371721 -2.176901 -0.046265 3.111826 -1.529363 1.804447 0.924481 -1.452831 -3.074594 1.653103 -0.275024 -0.073885 -3.777549 0.305883 2.362170 1.029532 -0.412338 -3.162187 -2.316974 1.467028 -2.243284 -1.818924 -1.167036 -0.740124 -1.156876 0.887531 -2.370902 -1.229290 2.042035 -2.228154 -2.189665 2.151582 -1.466904 1.353406 -0.801672 0.237165 -0.105687 0.444716 0.825259 1.594886 1.800123 -1.547386 -5.032520 0.339211 0.595475 0.689465 -1.003485 -0.407490 0.607022 0.913678 -0.046628 2.111031 -1.542021 2.434647 3.576429 -0.062324 -1.564979 -2.326057 0.320711 -2.428545 1.567405 -2.001113 -0.426738 -0.744783 2.529318 -0.369657 0.955812 3.066957 -2.910406 2.611281 -0.526084 0.982152 0.736663 -0.653536 1.016852 -1.489700 -2.247854 1.783762 3.053070 -0.155451 1.189099 -1.461653 0.034272 -1.412590 -2.779831 1.890412 -0.459202 0.375115 2.376248 0.904724 7.287533 -2.702794 0.674591 0.311377 0.193848 0.566766 -0.365169 -3.153010 1.503912 0.288481 1.831954 4.112249 -0.014050 -2.025453 0.118447 0.408183 0.200117 -2.138715 3.259134 -2.400442 0.407151 -0.545031 -0.994564 -1.368601 -1.666716 -1.194606 0.919684 3.430191 0.197941 -4.283316 2.187823 -2.041238 0.727213 -4.855825 2.296669 -1.919037 1.483291 -1.873161 -0.607223 -0.541306 0.975325 -0.201419 0.385642 1.583616 -1.725611 2.407285 2.806231 0.437854 0.525672 0.793361 0.723999 -0.212551 -0.617313 -1.404711 2.216110 0.122546 0.072240 -1.053490 -1.464512 2.249706 -0.004439 -1.388912 -0.266953 2.870470 -1.745831 0.075123 2.033315 0.237925 -1.803372 1.994403 0.848219 2.069434 -1.022257 -0.558541 -0.976356 -0.348408 -0.079274 1.750690 -3.020982 -1.549893 -0.369468 -4.075615 -1.569234 1.796052 1.620004 1.009534 0.671819 -3.505618 -1.450238 3.066246 -0.565068 2.979584 1.253167 2.073248 1.894098 1.599711 0.071589 -1.309694 -1.905942 -0.716677 -2.259731 -1.481780 -0.127120 1.557655 -1.059645 2.363385 0.925324 -0.122524 0.409469 -0.644025 1.871914 -1.537740 3.756499 1.997236 -1.004574 0.932612 0.196106 4.385029 -3.004072 -1.870860 -PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -3.490669 -5.675679 5.210039 4.604937 1.624743 3.571389 2.008185 -0.947471 2.236300 4.379441 -1.536064 3.652452 -2.919158 -1.438870 0.086054 1.034941 -1.120437 -4.031152 0.732176 -0.861930 -0.675401 -2.513002 -2.912811 4.110371 1.049312 -0.519725 -2.031125 0.000124 -6.791657 -5.994437 -0.491351 -0.310443 2.631489 -1.556295 1.576509 -7.957361 3.375963 6.102158 -0.080758 -6.363584 0.096163 -1.473739 -0.715349 1.854195 -1.095786 1.945110 2.583679 -0.732250 -0.739505 1.247663 1.017810 -0.470186 1.985682 6.819541 1.290179 5.410890 5.273127 -0.191084 1.101134 0.721073 1.483614 -1.472280 3.160657 2.030723 -1.583406 -0.597473 -0.309561 0.455924 -3.607212 0.906218 1.156828 -2.923542 -1.011693 -1.506842 -3.565363 -1.789362 1.608745 0.594808 6.540962 -2.127044 7.194812 3.394086 3.915140 0.311765 4.320818 -0.596854 4.070707 1.889789 -3.100058 0.596357 -3.295416 -1.873636 -0.496461 4.159780 -3.357502 -0.433344 2.443809 -3.855617 -5.625496 3.852202 -1.270905 -0.709009 -4.457800 -0.541623 2.946862 2.245983 -2.204261 -4.532497 -4.341773 2.338430 -2.554895 -2.985827 -0.394355 -0.248692 -0.558634 0.502281 -3.709408 -0.653820 4.096850 -3.161260 -2.778879 4.166251 -1.350405 4.044482 -1.083264 0.359976 -0.315176 1.296243 2.514178 0.901975 0.279342 -2.569355 -6.547928 -0.744939 -0.054690 0.644512 -1.982293 -1.105687 1.812501 2.073694 1.854503 3.568402 -1.797693 4.594558 3.777220 0.437331 -1.968193 -4.929605 -0.462989 -3.170336 0.820917 -2.575695 -2.254598 0.565438 3.500632 -0.194718 0.162398 4.292697 -2.030044 3.145768 -0.390854 0.375440 0.170536 -2.317382 1.441753 -2.073458 -3.536062 2.380538 4.651352 2.024945 1.373434 -1.925616 -0.262819 -1.173290 -4.343181 1.541275 0.202293 0.678807 4.384292 2.088503 8.912506 -4.273700 0.094418 -1.236331 -1.098235 1.059671 -1.043628 -4.887213 0.931047 0.787788 0.290650 5.870721 -0.406833 -2.778635 1.952592 0.091118 0.247559 -3.484207 4.852411 -3.943165 -0.015881 -1.169084 -1.588956 -2.830712 -1.931435 -3.753459 -0.639890 5.740021 -2.443950 -5.963307 1.895757 -0.305723 1.299925 -6.920323 3.114575 -2.293441 3.785961 -1.833487 -1.391384 -0.028353 2.114073 0.431342 0.457640 2.550564 -3.710395 3.118334 3.420643 0.318441 0.916452 1.652916 1.484698 -0.794922 -1.394612 -3.066831 2.895022 -0.412783 -1.507370 -1.575628 -1.835427 3.477830 1.104613 -0.954923 -1.349542 3.161760 -2.251001 -1.040580 4.213068 -0.772804 -2.465266 1.279159 0.412075 4.312564 -1.827064 -0.461041 -3.009994 0.744607 1.176159 2.121708 -5.342931 -2.296490 -2.822841 -5.773093 -2.046088 2.727263 1.290228 2.012255 0.503942 -5.988050 -3.173786 4.469939 -1.264709 3.755648 2.866205 3.353571 4.376616 2.053817 0.943100 -1.813334 -0.981639 -0.518876 -2.899559 -1.805173 -0.479666 1.594940 -2.381371 4.276670 1.812672 0.428816 1.870180 0.327240 1.844865 -3.143851 6.262102 2.863857 -3.677136 0.575327 2.385949 6.021920 -5.399548 -3.147873 -PE-benchmarks/sudoku.cpp__UsedInRow(int (*) [9], int, int) = -1.047256 -2.523172 2.301476 2.387396 1.058271 1.606438 1.168976 -0.923873 1.722507 2.700757 -0.982087 1.260935 -1.811689 -0.360736 0.737958 1.145160 -0.682780 -1.912420 0.625640 -0.236421 -0.249416 -1.874359 -0.443680 1.114948 0.659432 0.039263 -0.714320 -0.134298 -2.710346 -3.062370 0.291961 -0.459472 1.308123 0.659122 0.415821 -3.109566 1.801180 2.261833 -0.197426 -2.916826 -0.034099 -0.771135 -0.439675 0.670391 0.776312 1.466197 1.143310 0.630321 0.176301 1.095295 1.084024 -0.918104 1.068899 2.170993 -0.103708 2.440255 2.102282 -0.131110 0.485020 0.575898 0.717894 -0.400048 1.777541 1.921156 -0.980437 -0.345552 -0.064570 -0.001819 -2.240640 0.939250 0.642558 -0.830038 -1.280470 -0.571100 -0.293385 -0.403123 -1.132209 0.475603 3.461636 -0.700688 3.522743 1.695439 2.149471 -0.663969 1.754502 -0.433732 2.127033 0.855841 -2.143830 -0.143049 -2.052429 -1.790860 -0.138993 1.586138 -1.078009 0.848546 0.670358 -0.570495 -2.463563 1.405132 -0.440377 0.000907 -2.182409 0.506978 1.589578 0.945764 -0.591172 -2.479022 -1.805113 0.748614 -1.605750 -1.344195 -0.711369 -0.321026 -0.886239 0.319844 -1.812630 -1.018360 1.544981 -1.982567 -1.294613 1.700762 -0.814313 1.490900 -0.467072 -0.063630 0.099638 0.626322 1.051287 1.047295 1.759081 -1.317631 -3.820629 0.717159 0.635979 0.649230 -0.602307 -0.014653 0.676894 0.787638 0.196526 1.586457 -0.513544 2.035751 2.295208 -0.238868 -1.244619 -1.917716 0.436788 -1.377938 1.312854 -1.523802 0.174014 -0.548754 1.885754 -0.197406 0.521091 2.243727 -2.086584 1.838201 -0.435421 0.849849 0.284699 0.194385 0.792497 -1.138464 -1.562195 1.189638 2.505571 -0.138564 0.852713 -1.127237 0.103836 -1.026780 -1.981378 1.118382 -0.300831 -0.161859 1.973255 0.674951 4.785490 -1.879823 0.439835 0.102909 0.207567 0.375666 -0.201934 -2.575380 1.356218 0.032482 0.998957 2.424693 -0.055342 -1.482203 0.442627 0.033486 0.020499 -1.533471 2.047723 -1.832320 -0.082902 -0.611717 0.000646 -0.991741 -1.421269 -0.565771 1.271316 2.611269 0.534067 -2.492323 1.114479 -1.303183 0.300369 -3.272280 2.383794 -1.365051 0.495432 -1.425501 -0.884250 -0.371823 1.129025 0.195171 -0.124556 1.244971 -1.237800 1.707127 1.955142 0.273939 0.330989 0.979809 0.649023 0.012356 -0.735379 -0.976035 1.391637 0.088609 0.132768 -0.758136 -1.120509 1.968288 0.270614 -1.094853 0.517955 2.130152 -1.336179 0.187327 1.338373 0.001838 -1.313053 1.120142 0.543135 1.999927 -0.974630 -0.286667 -1.084058 -0.461640 -0.114673 1.378939 -2.330948 -1.200454 0.231119 -2.357621 -1.402613 1.360947 1.266698 0.830920 0.554300 -2.750364 -1.145309 1.473337 -0.587387 1.126542 0.964038 1.481762 1.654273 1.166200 0.272724 -1.085340 -1.160898 -0.357690 -1.725641 -0.956661 0.059762 0.840375 -1.152867 1.930872 0.662671 0.013660 0.243372 -0.762629 2.032803 -1.298083 2.767906 1.596235 -0.994341 0.633958 0.781971 3.096056 -2.137964 -1.428097 -PE-benchmarks/sudoku.cpp__UsedInCol(int (*) [9], int, int) = -1.047256 -2.523172 2.301476 2.387396 1.058271 1.606438 1.168977 -0.923873 1.722508 2.700757 -0.982087 1.260935 -1.811689 -0.360736 0.737958 1.145160 -0.682780 -1.912420 0.625641 -0.236421 -0.249416 -1.874360 -0.443680 1.114948 0.659432 0.039264 -0.714320 -0.134298 -2.710346 -3.062371 0.291962 -0.459473 1.308123 0.659121 0.415820 -3.109568 1.801180 2.261833 -0.197426 -2.916827 -0.034099 -0.771135 -0.439675 0.670391 0.776313 1.466197 1.143310 0.630322 0.176301 1.095296 1.084024 -0.918103 1.068899 2.170995 -0.103710 2.440255 2.102283 -0.131110 0.485020 0.575898 0.717895 -0.400048 1.777541 1.921158 -0.980436 -0.345552 -0.064570 -0.001819 -2.240641 0.939249 0.642558 -0.830038 -1.280471 -0.571100 -0.293384 -0.403123 -1.132212 0.475603 3.461638 -0.700688 3.522745 1.695439 2.149473 -0.663969 1.754502 -0.433731 2.127033 0.855842 -2.143831 -0.143049 -2.052430 -1.790860 -0.138993 1.586138 -1.078009 0.848546 0.670358 -0.570493 -2.463563 1.405132 -0.440377 0.000907 -2.182409 0.506978 1.589578 0.945764 -0.591173 -2.479023 -1.805114 0.748614 -1.605750 -1.344195 -0.711369 -0.321026 -0.886239 0.319843 -1.812630 -1.018360 1.544982 -1.982567 -1.294613 1.700762 -0.814315 1.490899 -0.467072 -0.063630 0.099638 0.626321 1.051288 1.047296 1.759082 -1.317632 -3.820631 0.717159 0.635979 0.649232 -0.602307 -0.014653 0.676894 0.787638 0.196527 1.586457 -0.513543 2.035751 2.295208 -0.238867 -1.244619 -1.917717 0.436789 -1.377939 1.312855 -1.523803 0.174015 -0.548754 1.885755 -0.197406 0.521091 2.243727 -2.086586 1.838203 -0.435421 0.849850 0.284699 0.194386 0.792497 -1.138464 -1.562195 1.189638 2.505571 -0.138564 0.852713 -1.127238 0.103836 -1.026780 -1.981378 1.118382 -0.300831 -0.161859 1.973255 0.674951 4.785492 -1.879824 0.439835 0.102909 0.207567 0.375666 -0.201934 -2.575380 1.356219 0.032482 0.998958 2.424693 -0.055341 -1.482203 0.442627 0.033486 0.020498 -1.533471 2.047724 -1.832320 -0.082904 -0.611717 0.000646 -0.991741 -1.421269 -0.565771 1.271318 2.611270 0.534068 -2.492323 1.114478 -1.303184 0.300368 -3.272280 2.383797 -1.365051 0.495431 -1.425502 -0.884250 -0.371823 1.129026 0.195171 -0.124556 1.244971 -1.237800 1.707127 1.955143 0.273939 0.330989 0.979809 0.649023 0.012356 -0.735379 -0.976035 1.391637 0.088609 0.132767 -0.758136 -1.120509 1.968289 0.270613 -1.094853 0.517956 2.130153 -1.336179 0.187327 1.338373 0.001838 -1.313053 1.120143 0.543136 1.999927 -0.974630 -0.286666 -1.084058 -0.461640 -0.114673 1.378939 -2.330948 -1.200454 0.231120 -2.357621 -1.402614 1.360948 1.266698 0.830920 0.554300 -2.750366 -1.145309 1.473336 -0.587388 1.126541 0.964038 1.481762 1.654273 1.166200 0.272724 -1.085340 -1.160898 -0.357690 -1.725641 -0.956661 0.059762 0.840375 -1.152868 1.930872 0.662671 0.013660 0.243371 -0.762629 2.032804 -1.298082 2.767907 1.596236 -0.994341 0.633958 0.781971 3.096058 -2.137964 -1.428098 -PE-benchmarks/sudoku.cpp__UsedInBox(int (*) [9], int, int, int) = -1.763076 -3.742547 3.122731 3.223382 1.692018 2.401150 1.817044 -1.139616 2.459042 3.842959 -1.537834 2.154820 -2.499133 -0.681037 1.069901 1.366443 -0.649966 -2.751187 0.969450 -0.075317 -0.183222 -2.763617 -1.042797 1.968117 0.783082 -0.326109 -1.001720 0.143816 -4.255228 -4.233630 0.309199 -0.524322 1.778422 -0.238500 0.731481 -4.666734 2.553537 3.598081 -0.069355 -4.561287 -0.058014 -1.063392 -0.727434 1.317851 0.758402 1.962620 1.708868 1.193627 -0.070109 1.539020 1.523229 -1.240598 1.420064 3.489086 0.117036 3.669657 3.356245 -0.096535 0.596048 0.658894 0.979484 -0.692663 2.461410 2.770203 -1.582281 -0.288756 0.113247 0.441343 -3.512201 0.974944 1.168893 -1.604538 -1.836040 -0.818777 -0.287888 -0.398362 -0.347173 0.310521 5.128520 -0.660379 5.230634 2.383691 3.180622 -0.839094 2.531687 -0.721555 2.874327 1.208323 -3.164279 -0.488529 -3.287997 -2.207625 -0.162253 2.361035 -1.676279 1.565063 0.895453 -0.252859 -3.500738 1.909738 -0.780034 -0.241949 -2.803078 0.840230 2.379980 1.437304 -0.636103 -3.508154 -2.667921 1.493608 -2.469667 -2.044824 -1.162553 -0.478879 -1.150724 0.266979 -2.405933 -1.343384 2.616788 -2.721558 -1.780777 2.332514 -1.769204 2.335907 -0.733410 -0.143450 0.416796 0.567049 1.866914 1.119202 2.499839 -2.464680 -5.244956 1.221285 0.463707 1.242429 -1.009404 0.196830 1.326051 1.120997 0.836480 2.455067 -0.783175 2.759952 2.757996 -0.167279 -1.621301 -2.956251 0.336858 -1.685058 1.890258 -2.017241 0.087129 -0.802449 2.611165 -0.513893 0.430910 3.280944 -3.119560 2.988822 -0.317065 1.151326 0.200492 -0.049919 1.005592 -1.644482 -2.278302 1.832302 3.680148 -0.322692 1.097394 -1.445385 0.089155 -1.372032 -2.695706 1.460470 -0.491189 0.259813 2.919658 0.844535 7.426786 -2.252767 0.424998 -0.156402 0.300355 0.525320 -0.516155 -3.584650 1.808961 0.098518 1.664427 4.034132 -0.000509 -2.203573 0.638269 0.284147 0.007457 -2.267296 3.607849 -2.528290 -0.266739 -0.539992 -0.359440 -1.323515 -1.857669 -1.320142 1.668843 3.797222 0.678567 -4.104150 1.163936 -1.858657 0.615948 -4.703747 3.909935 -1.923227 1.190180 -1.721352 -1.109083 -0.404751 1.249048 0.328252 0.069415 1.728850 -1.550870 2.465983 2.766677 0.281949 0.359964 1.433305 0.528230 -0.095409 -1.134275 -1.450576 1.740588 0.198095 0.152814 -0.999600 -1.569086 2.934930 0.544520 -1.815472 0.407366 3.159470 -2.083831 0.117235 1.788171 -0.303419 -1.830830 1.619399 0.799760 2.753932 -1.289971 -0.429100 -1.705484 -0.583790 0.230049 1.956687 -3.301417 -1.458514 0.435784 -3.849365 -1.760883 1.822672 1.761762 1.262302 0.791183 -4.028481 -1.698088 2.304155 -0.671323 2.797611 1.459249 2.251374 2.306800 1.383508 0.485496 -1.432117 -1.607578 -0.635885 -2.649244 -1.357637 0.318896 1.016279 -1.542453 2.834969 0.832319 0.167618 0.439634 -1.386723 2.140551 -1.809017 4.105488 2.339703 -1.510410 0.579325 0.465724 4.682290 -3.640922 -2.123050 -PE-benchmarks/sudoku.cpp__printGrid(int (*) [9]) = -1.012689 -2.214849 2.246053 2.183046 0.508568 1.479370 0.818603 -1.133090 1.571371 1.454551 -1.163440 1.246091 -1.515514 -0.377791 0.310228 0.594200 -1.143277 -1.636737 0.231018 -0.315139 -0.093017 -1.752762 -0.626827 1.386607 0.467374 1.069697 -0.744637 0.681547 -2.596051 -2.918208 0.821208 -0.248197 1.173108 0.940505 0.580477 -3.507503 1.841321 2.490542 -0.202606 -2.845697 0.076799 -0.866008 -0.877722 0.239217 0.268036 1.458022 0.623399 0.770988 -0.026876 0.573442 0.474525 -0.609171 0.745315 1.877728 -0.115768 2.318236 2.336376 -0.100141 0.503337 0.298722 0.535476 -0.026457 1.488263 1.933537 -1.171849 -0.565626 0.173726 -0.069078 -2.266026 0.995392 0.635033 -1.004281 -1.314203 -0.740143 -0.895491 -0.139526 -0.147210 0.451709 3.370378 -0.414233 3.279262 1.293142 1.907984 -0.622186 1.675993 -0.369832 2.213932 0.882172 -1.817893 -0.095760 -2.259129 -1.699188 0.102666 1.667266 -1.264111 1.127867 0.633545 -1.486643 -2.157637 0.918618 -0.207726 -0.446947 -1.743723 0.599457 1.375195 0.595989 -0.119237 -2.116720 -1.313692 1.120037 -1.584397 -1.123275 -0.916697 0.367430 -0.668320 0.253814 -1.784250 -0.416906 1.518759 -1.315591 -0.716013 1.558364 -0.948456 0.934636 -0.535022 -0.106418 -0.102560 0.645076 0.598723 0.637021 1.447378 -1.208180 -2.902356 0.579783 0.453622 1.121973 -1.083214 -0.540297 0.783582 0.664475 0.173571 1.004241 -0.800346 1.488093 1.753436 -0.288044 -1.009236 -1.954935 -0.460564 -1.769972 0.930832 -1.237423 -0.197164 -0.120062 1.741347 0.070133 0.606033 2.041188 -2.121784 1.714487 -0.194083 0.618636 0.350431 0.136634 0.646920 -1.030756 -1.493889 1.455257 1.510538 0.175637 0.781887 -0.789578 -0.057634 -0.998415 -1.963026 1.712938 -0.198414 0.515982 1.961223 0.949211 4.156959 -1.518295 0.557513 0.144840 0.007199 0.242313 -0.048110 -2.059651 1.438392 0.221038 1.325599 2.741211 -0.030094 -1.033208 0.025956 0.364272 0.169016 -1.681224 2.174259 -1.554633 0.033715 -0.731088 -0.223108 -0.810852 -1.330500 -0.949695 0.545373 2.531373 -0.151692 -2.777069 1.328707 -1.051394 0.946370 -3.087758 1.513507 -1.304199 1.429136 -0.973327 -0.534829 -0.077790 -0.118749 -0.280632 0.093287 1.026439 -1.256128 1.355105 1.662271 0.425995 0.195528 0.630624 0.469921 -0.265907 -0.273920 -1.217498 1.142138 0.196059 -0.030580 -0.490209 -0.986417 1.482531 0.078325 -0.807271 0.706852 2.125388 -0.486455 0.238164 1.225653 0.154049 -1.206755 0.810884 0.513754 1.251693 -0.790338 -0.606830 -0.767688 -0.040369 0.106827 1.027556 -2.197627 -1.522761 -0.492198 -2.773399 -1.119317 0.526946 1.285587 0.939156 0.425688 -2.607775 -1.161971 1.690032 -0.471076 2.328195 0.873335 1.329344 1.377648 1.088425 -0.037597 -0.802217 -0.703887 0.172861 -1.499225 -0.556539 -0.668346 1.280927 -0.776587 1.583435 1.113874 -0.356654 0.572038 -0.787321 2.161681 -1.188379 2.944656 1.363800 -1.388829 0.464964 0.196735 2.591906 -1.439875 -1.371212 -PE-benchmarks/sudoku.cpp__main = -0.516244 -2.642684 3.191114 2.912033 0.282712 1.610086 0.618145 -1.303579 1.811707 1.240450 -1.409993 1.601119 -1.949195 -0.215604 -0.253565 1.125319 -1.878191 -2.157838 0.404811 -0.247693 -0.190142 -1.785933 -0.106472 1.693378 1.007070 2.023797 -1.016724 0.343391 -2.953178 -3.123583 0.881041 -0.513550 1.540310 1.920477 0.706527 -3.043886 2.277888 2.790085 -0.306089 -3.409816 0.292695 -0.967782 -0.896747 -0.408627 0.215400 1.602636 0.898907 1.274636 0.160135 0.954545 -0.022544 -0.539988 1.215411 1.705270 0.136466 2.456420 2.365253 0.020758 0.676727 0.000578 0.906282 -0.031099 1.655281 1.959529 -1.141995 -0.943260 -0.375441 -0.531388 -2.297362 1.276124 0.480950 -0.571169 -1.608421 -0.648017 -1.000641 0.050193 -0.885880 1.210418 3.723846 -1.063275 3.427366 1.436432 2.028226 -0.929600 1.557622 -0.263473 2.025914 1.304588 -1.708021 -0.410728 -2.594567 -1.825706 0.139341 0.716201 -1.601535 0.165508 1.132580 -2.375226 -2.706256 1.072797 0.041083 -0.614145 -1.373711 0.745360 1.566516 1.171480 -0.496075 -2.183179 -0.772495 0.899292 -1.321642 -1.385146 -0.845642 0.814337 -0.820160 0.303315 -2.377664 -0.515070 1.512471 -1.759326 -0.035115 1.713195 -0.522645 1.165431 -0.731881 -0.152211 -0.070457 1.314620 0.946216 0.790090 1.468682 -0.806984 -1.752710 1.289837 0.953796 0.814374 -1.481932 -0.311757 0.690096 0.920637 0.131424 0.545161 -1.253929 1.389475 1.737935 -0.672562 -1.639970 -2.184667 -0.795438 -2.179631 0.791437 -1.709808 -0.398867 0.616120 2.127765 0.198773 0.912488 2.606912 -2.550006 1.491001 -0.090878 0.886890 0.503155 0.722194 0.829410 -1.229013 -1.835001 1.890720 1.631912 0.291743 0.721001 -0.866240 0.162960 -1.366704 -2.010265 2.123174 0.162883 0.282079 2.313459 0.974244 2.748120 -1.334487 0.166745 0.363674 -0.083303 0.161571 0.105677 -2.853152 1.687751 -0.047359 1.697081 2.790751 -0.099277 -1.150395 0.652496 0.214124 0.138146 -1.893825 2.000128 -1.992440 -0.084956 -1.064097 0.362687 -0.786836 -1.455605 -1.211103 0.242092 3.068071 -0.680975 -2.613497 1.452625 -1.083518 1.237970 -3.279170 0.789699 -1.616610 1.517408 -0.285576 -0.611425 0.000117 -0.889189 -0.453342 -0.686495 1.398830 -1.004656 1.380078 1.755201 0.544994 -0.247747 0.952198 0.796506 -0.411761 0.207896 -1.177312 1.322753 0.062330 -0.298010 -0.297843 -1.117157 1.198162 -0.301852 -0.893637 1.495135 2.021134 0.104588 0.975580 0.832908 0.670674 -1.711399 0.925528 0.423482 1.705281 -1.077696 -0.658060 -0.832555 0.227328 -0.132707 1.556606 -2.765871 -2.762723 -1.238296 -3.087812 -1.288047 -0.318856 1.698462 0.435202 0.283976 -2.584530 -1.772302 1.872484 -0.612376 2.573080 1.404922 1.377468 1.847567 1.342042 -0.553542 -0.842489 -0.412828 0.577977 -1.292706 -0.495155 -1.046994 1.390673 -0.950471 1.514272 2.083322 -0.598516 0.620658 -1.580349 2.498269 -1.467933 3.358308 1.637432 -2.040837 0.691760 0.328939 2.548167 -1.041426 -1.840967 -PE-benchmarks/rotate-bits-of-an-integer.cpp__main = -1.378847 -2.581057 3.530581 2.467510 -1.171110 1.544258 0.290839 -1.286470 1.135729 -2.124253 -0.839522 1.589835 -1.970098 -0.067886 -2.037363 -1.091848 -2.954421 -2.222796 -0.857504 -1.222681 -0.655595 -1.191794 -1.081923 3.000991 0.496602 1.754753 -1.629825 0.251541 -4.246940 0.702952 1.864673 0.075995 1.656897 0.468270 0.882907 -6.861875 1.208165 2.978125 -0.472168 -3.391318 0.908314 -2.468595 -0.405312 -1.897995 -2.377074 -0.290248 -0.035574 0.788657 -0.027952 -1.091823 -1.795242 1.180268 -0.720100 5.239661 -0.298780 2.174737 2.950174 0.337182 -0.290257 -0.185979 0.506892 0.136087 1.290257 0.644375 -1.663012 -1.371907 0.053219 -1.603232 -1.704164 1.355184 0.716538 -0.567710 -0.514353 -0.928447 -4.278644 -0.893869 2.709211 2.275103 3.152222 -2.756380 2.569478 0.059328 1.484101 0.869983 2.262264 0.527513 2.509597 0.874532 -0.457439 -0.071524 -4.039343 0.221920 -0.041010 -0.156710 -1.917187 -3.356332 2.008393 -5.271771 -3.040520 1.012252 0.276081 -1.274010 -1.259381 -0.833820 1.016818 1.334302 -1.557298 -1.959223 -1.279729 2.508906 -0.473876 -0.878361 0.761072 1.170559 0.294657 -2.689742 -2.816140 1.275164 1.760638 -0.503049 -0.068637 3.037660 -1.809281 0.814964 -0.283043 0.322034 -1.124729 2.708599 -0.136363 -0.958444 -0.656768 -0.695664 -0.149923 -1.176942 -0.075072 3.644317 -2.122415 -1.406829 0.572700 1.061800 -0.047984 -0.857155 -1.131323 0.679463 -0.129202 -1.040803 -1.136563 -2.651045 -1.436941 -3.561058 -1.339436 -1.145379 -2.034036 2.910194 2.050308 2.857851 0.593119 3.236267 -0.780187 1.616372 0.448869 -1.082888 0.817285 -0.350908 1.029653 -1.325009 -2.637305 1.470290 -0.726173 2.451003 0.245449 -0.082218 -0.351294 -1.603868 -2.383050 1.060979 1.907232 1.201106 2.969013 2.678359 -0.070615 -3.821657 0.624408 -0.141571 -1.707576 0.329942 -0.516832 -2.262734 0.200574 1.318536 -0.840869 3.377229 -0.434639 -1.366082 0.769859 0.347162 0.964314 -2.087652 0.799557 -1.775245 -0.443935 -2.379757 -0.442091 -1.429959 -1.100057 -3.166349 -3.454140 3.421231 -4.295168 -3.593736 2.236972 1.344381 2.973855 -4.548326 -0.563957 -1.234269 4.717126 0.425555 0.017922 0.290124 -0.879540 -1.723091 0.942347 1.178699 -2.468435 0.648547 2.272080 1.018144 0.861720 0.298861 1.845884 -0.730905 0.788612 -2.484138 1.541370 -0.515610 -2.483752 0.790210 -1.070014 0.572183 0.151248 1.561279 1.893973 1.939553 2.521450 1.433855 3.072771 0.773978 -1.185835 -0.479966 -0.663209 1.302523 -1.099734 -0.619703 -1.030361 2.134530 0.599059 0.210458 -3.354898 -4.420569 -4.940831 -3.961260 0.843600 -1.798309 -0.158873 0.573975 -0.212708 -3.850493 -1.916686 0.664620 -1.328618 5.064122 2.000655 1.411554 2.696427 2.361573 -2.035654 -0.233320 2.730233 1.672969 -0.944519 0.158523 -3.443097 2.116631 -1.358962 1.577528 3.551591 -0.590769 2.138851 0.462483 2.143232 -1.820318 4.325311 1.670948 -3.839863 0.552038 1.488150 1.514123 1.126793 -1.929709 -PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::leftRotate(int, unsigned int) = -1.051586 -1.533096 1.125391 1.019754 0.311528 0.884354 0.729252 -0.120442 0.537474 1.243254 -0.199600 0.934368 -0.746365 -0.577289 -0.026912 0.011634 0.060646 -0.848456 0.241440 -0.140234 -0.082362 -0.701079 -0.901373 1.202101 0.137492 -0.632724 -0.417773 -0.440508 -2.038622 -0.864479 -0.252312 -0.115819 0.622071 -0.977047 0.489875 -1.770741 0.324778 1.495060 0.122207 -1.656608 0.078917 -0.385451 0.389237 0.363385 -0.322024 0.214542 0.622640 -0.187276 -0.120418 0.140727 0.349652 -0.032813 0.814407 1.863871 0.232660 1.247344 1.236172 0.200819 0.159264 0.088931 0.130214 -0.533532 0.566832 0.220593 -0.351706 -0.019597 -0.392302 0.249915 -0.838176 0.050995 0.186679 -0.577096 -0.380788 -0.304755 -0.703278 -0.537921 -0.474837 0.273769 1.502709 -0.703536 1.590992 0.794433 0.776395 0.407614 1.112256 0.146809 0.601265 0.307488 -0.819828 0.252095 -1.128240 -0.341857 -0.315127 0.768809 -0.761339 -0.294697 0.993311 -0.525479 -1.472930 1.189747 -0.362214 -0.028149 -0.848270 -0.597232 0.635597 0.639783 -0.904278 -1.260650 -1.272529 0.941195 -0.213237 -0.636896 0.340560 -0.554395 -0.019563 -0.257906 -0.715903 -0.087516 0.856368 -0.791038 -1.153650 0.938927 -0.511465 0.990308 -0.058180 0.332335 0.078294 0.653827 0.858527 -0.026093 0.004549 -0.493837 -1.633666 -0.267330 -0.263955 0.470342 -0.260055 -0.045980 0.343312 0.448001 0.725838 0.908825 -0.415677 0.947834 0.479413 -0.094850 -0.140873 -1.083107 -0.196440 -0.586385 0.066160 -0.083616 -0.311030 0.025146 0.728984 0.000529 -0.207153 1.073261 -0.479447 0.812344 0.040700 -0.264487 -0.016061 -0.414418 0.404980 -0.393743 -0.928333 0.432890 1.307007 0.633970 0.375409 -0.366722 0.188013 -0.140406 -0.758570 0.081713 -0.075680 -0.117348 1.328739 0.592171 1.632048 -1.120400 -0.036576 -0.444701 -0.338630 0.362066 -0.516264 -1.121479 -0.023389 0.334153 -0.354514 1.176085 -0.144400 -0.455897 0.757245 -0.035186 0.173069 -0.708884 1.179521 -1.057125 -0.341507 -0.432437 -0.519069 -0.826039 -0.669206 -0.846397 -0.130499 1.265984 -0.265389 -1.264538 0.110874 0.355158 0.043991 -1.423600 1.111758 -0.452146 0.894381 -0.375297 -0.209947 0.029103 1.524208 0.181129 -0.330085 0.507756 -1.178723 0.875514 0.889424 0.071652 0.195326 0.595649 0.406323 -0.234454 -0.445055 -0.716306 0.469573 -0.060863 -0.420812 -0.181514 -0.416973 0.881891 0.543476 -0.315576 -0.454225 0.664684 -0.659420 -0.335782 1.262737 -0.343318 -0.509331 0.104436 -0.135122 1.285956 -0.647694 0.115944 -1.015889 0.286126 0.399539 0.210407 -1.314473 -0.091319 -0.935526 -0.692594 -0.331937 0.961924 -0.013227 0.680850 0.110118 -1.660230 -0.727395 0.393107 -0.294504 0.186920 0.672109 0.757161 1.328122 0.437010 0.400032 -0.603251 0.168745 -0.423022 -0.732177 -0.538553 0.018785 0.157777 -0.936693 0.919924 0.235864 0.461370 0.491527 0.555900 0.391550 -0.892399 1.570535 0.866427 -0.673296 0.098160 0.796985 1.346625 -1.556573 -0.718281 -PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::rightRotate(int, unsigned int) = -1.051586 -1.533096 1.125391 1.019754 0.311528 0.884354 0.729252 -0.120442 0.537474 1.243254 -0.199600 0.934368 -0.746365 -0.577289 -0.026912 0.011634 0.060646 -0.848456 0.241440 -0.140234 -0.082362 -0.701079 -0.901373 1.202101 0.137492 -0.632724 -0.417773 -0.440508 -2.038622 -0.864479 -0.252312 -0.115819 0.622071 -0.977047 0.489875 -1.770741 0.324778 1.495060 0.122207 -1.656608 0.078917 -0.385451 0.389237 0.363385 -0.322024 0.214542 0.622640 -0.187276 -0.120418 0.140727 0.349652 -0.032813 0.814407 1.863871 0.232660 1.247344 1.236172 0.200819 0.159264 0.088931 0.130214 -0.533532 0.566832 0.220593 -0.351706 -0.019597 -0.392302 0.249915 -0.838176 0.050995 0.186679 -0.577096 -0.380788 -0.304755 -0.703278 -0.537921 -0.474837 0.273769 1.502709 -0.703536 1.590992 0.794433 0.776395 0.407614 1.112256 0.146809 0.601265 0.307488 -0.819828 0.252095 -1.128240 -0.341857 -0.315127 0.768809 -0.761339 -0.294697 0.993311 -0.525479 -1.472930 1.189747 -0.362214 -0.028149 -0.848270 -0.597232 0.635597 0.639783 -0.904278 -1.260650 -1.272529 0.941195 -0.213237 -0.636896 0.340560 -0.554395 -0.019563 -0.257906 -0.715903 -0.087516 0.856368 -0.791038 -1.153650 0.938927 -0.511465 0.990308 -0.058180 0.332335 0.078294 0.653827 0.858527 -0.026093 0.004549 -0.493837 -1.633666 -0.267330 -0.263955 0.470342 -0.260055 -0.045980 0.343312 0.448001 0.725838 0.908825 -0.415677 0.947834 0.479413 -0.094850 -0.140873 -1.083107 -0.196440 -0.586385 0.066160 -0.083616 -0.311030 0.025146 0.728984 0.000529 -0.207153 1.073261 -0.479447 0.812344 0.040700 -0.264487 -0.016061 -0.414418 0.404980 -0.393743 -0.928333 0.432890 1.307007 0.633970 0.375409 -0.366722 0.188013 -0.140406 -0.758570 0.081713 -0.075680 -0.117348 1.328739 0.592171 1.632048 -1.120400 -0.036576 -0.444701 -0.338630 0.362066 -0.516264 -1.121479 -0.023389 0.334153 -0.354514 1.176085 -0.144400 -0.455897 0.757245 -0.035186 0.173069 -0.708884 1.179521 -1.057125 -0.341507 -0.432437 -0.519069 -0.826039 -0.669206 -0.846397 -0.130499 1.265984 -0.265389 -1.264538 0.110874 0.355158 0.043991 -1.423600 1.111758 -0.452146 0.894381 -0.375297 -0.209947 0.029103 1.524208 0.181129 -0.330085 0.507756 -1.178723 0.875514 0.889424 0.071652 0.195326 0.595649 0.406323 -0.234454 -0.445055 -0.716306 0.469573 -0.060863 -0.420812 -0.181514 -0.416973 0.881891 0.543476 -0.315576 -0.454225 0.664684 -0.659420 -0.335782 1.262737 -0.343318 -0.509331 0.104436 -0.135122 1.285956 -0.647694 0.115944 -1.015889 0.286126 0.399539 0.210407 -1.314473 -0.091319 -0.935526 -0.692594 -0.331937 0.961924 -0.013227 0.680850 0.110118 -1.660230 -0.727395 0.393107 -0.294504 0.186920 0.672109 0.757161 1.328122 0.437010 0.400032 -0.603251 0.168745 -0.423022 -0.732177 -0.538553 0.018785 0.157777 -0.936693 0.919924 0.235864 0.461370 0.491527 0.555900 0.391550 -0.892399 1.570535 0.866427 -0.673296 0.098160 0.796985 1.346625 -1.556573 -0.718281 -PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -3.846100 -6.482415 6.377302 6.053614 2.047458 4.745001 1.802708 -2.981775 3.246178 6.252791 -2.205163 3.880370 -3.900043 -1.259907 0.014539 1.835951 -1.561289 -4.338638 0.479643 -1.856913 -1.242020 -3.733645 -2.716131 4.267599 1.365579 -0.443970 -2.386247 0.356832 -7.557089 -8.301630 -0.202251 -0.491070 3.197530 -0.332337 1.199013 -9.094208 4.548999 7.099854 -0.696205 -6.635512 0.144057 -2.085698 -1.849106 2.408049 -0.409479 2.580434 1.948056 -0.950019 -0.171898 1.836980 3.255570 -0.655877 3.435999 7.629425 0.509868 6.830659 5.751291 -0.307492 1.284828 1.686422 1.674087 -0.703260 4.327084 3.469520 -1.864454 -1.382084 0.126225 0.930419 -4.490117 1.968616 0.914982 -3.882939 -1.482821 -2.142819 -3.029342 -1.969222 -0.501907 0.414924 8.348783 -2.016277 8.615361 4.036737 4.667031 -0.642596 5.486543 -0.987995 6.331758 2.310945 -4.486670 0.484062 -3.200022 -2.216925 0.120055 5.945627 -4.311132 1.130058 2.997167 -4.584044 -7.014802 4.370905 -0.660304 -0.972100 -5.465415 -0.422975 3.151598 1.354791 -2.255417 -6.082097 -4.758676 3.348076 -3.467459 -3.784840 -1.849442 -1.047536 -0.592009 1.922776 -4.536271 -1.099344 4.411150 -4.083018 -3.994715 5.199245 -0.682403 3.644659 -1.400092 0.759814 -0.333112 1.024478 1.330308 2.657651 1.327821 -1.953568 -8.933001 -0.078333 0.874093 -0.447467 -2.569682 -1.234433 2.056235 2.353235 1.253710 5.390518 -2.302010 5.703856 5.183895 0.391951 -2.559152 -5.200080 -0.108044 -4.565720 1.572121 -3.434940 -2.584602 -0.870390 4.716687 -0.097920 0.788406 4.611922 -3.049064 4.549861 -0.481901 0.908436 0.968942 -2.781782 1.911187 -3.179993 -4.825655 3.224040 5.871769 1.250752 2.115591 -2.159481 -0.305433 -1.838834 -4.933966 2.726740 -0.301718 0.173325 5.927897 3.015432 13.810466 -5.364320 1.503049 -0.729644 -0.874533 1.487679 -1.474905 -6.213198 1.604238 1.335985 1.422383 7.875774 -0.165709 -3.303328 1.075446 0.063497 0.543256 -4.563393 6.181294 -4.725106 0.243629 -1.406791 -1.611886 -2.983785 -2.884409 -3.051981 0.436562 6.919621 -3.288486 -6.444154 3.825568 -0.948796 0.792405 -8.606111 5.111595 -3.316910 3.777571 -3.227037 -2.354250 -0.754387 3.162076 -0.417934 1.503877 3.197425 -4.840740 4.334626 4.970704 0.557936 1.925604 1.561553 2.005966 -1.050279 -1.542477 -3.869944 4.434338 0.632397 -1.449647 -2.470484 -2.919610 3.999342 0.516729 -1.395457 -0.938261 4.966291 -3.284290 -1.610389 4.772330 -0.143348 -3.089569 2.917735 0.979665 4.131573 -2.804230 -1.094034 -2.560805 -0.205436 0.878006 2.730415 -6.731467 -2.355525 -2.804264 -5.541811 -2.510649 3.604886 2.565277 2.466897 0.705759 -7.258092 -3.967414 5.847631 -1.977836 3.226743 3.246478 4.867181 4.701285 3.133988 1.759555 -1.921593 -3.303235 -0.774993 -3.854052 -2.409094 -0.312421 2.716827 -2.187656 5.375307 1.723648 0.558277 2.231176 0.838896 2.679984 -3.676111 7.250766 3.851851 -3.379074 1.555887 2.890464 6.941142 -6.312994 -3.758500 -PE-benchmarks/channel-assignment.cpp__maxBPM(int (*) [4]) = -1.178204 -5.930354 7.289830 6.607101 0.307716 3.608617 1.028886 -3.104598 3.593951 2.482871 -2.897672 4.125116 -3.738057 -0.168879 -0.140154 1.961245 -4.336907 -4.334041 -0.025011 -1.194913 -0.873163 -3.597007 -1.103429 4.263117 1.913094 2.836785 -2.753811 1.015946 -6.486405 -5.440601 1.733105 -0.660740 3.410635 1.589998 1.814755 -9.802988 4.969963 6.146373 -0.729488 -7.788318 0.732779 -2.203261 -2.246837 -0.407714 -1.135851 2.531486 1.442686 2.697350 -0.066681 1.707612 0.047249 -0.108154 2.423343 7.147262 0.331365 5.836876 6.481016 -0.114659 0.867918 0.089185 1.929228 0.106015 3.444403 3.895738 -1.966181 -2.439130 -0.273034 -0.828043 -4.803067 2.523911 1.993949 -2.122868 -2.779185 -2.051142 -2.756755 -0.400294 1.093532 2.706244 8.253023 -2.808807 7.483723 2.856621 4.279077 -0.795766 3.918297 -0.446429 5.141427 2.775013 -3.429647 -0.298387 -5.664518 -3.454819 0.951623 1.647950 -4.027997 -1.463243 2.483340 -4.972764 -5.998060 2.919220 0.419331 -1.812432 -2.983729 0.002471 3.354863 2.192479 -1.336569 -4.797400 -2.874269 2.722570 -2.772116 -3.226563 -1.873168 1.462074 -0.968401 -0.071150 -5.508700 -0.041948 4.103910 -2.952616 -0.634052 4.246529 -2.350070 2.411651 -1.738684 -0.016500 -0.630217 2.777555 1.806693 1.493964 2.338170 -2.126084 -3.764243 2.299880 1.338121 2.034505 -3.002389 -1.321582 1.618101 2.326056 0.720738 2.476595 -1.915872 3.530953 3.314364 -0.624233 -3.521707 -5.540345 -2.197900 -5.090943 1.508236 -3.536412 -2.094995 1.787217 4.632744 1.075032 1.632246 5.063850 -4.422087 3.890472 -0.124509 1.386957 1.165872 0.177477 1.701085 -2.803025 -4.361054 3.990304 3.237959 1.280894 1.720037 -1.665661 0.225780 -2.817687 -4.464524 3.753108 0.885739 1.063713 5.283111 2.920005 9.396247 -3.304573 0.701537 0.348700 -0.896073 0.486869 -0.402771 -5.829646 2.259649 0.685435 2.707851 7.390116 -0.200346 -2.942872 1.148484 0.702097 0.381909 -3.871097 4.884533 -3.875620 0.072661 -2.273343 0.311518 -2.228068 -2.489836 -3.430280 -0.202055 7.304031 -3.528720 -6.813991 3.643603 -1.932815 2.919315 -8.026759 3.685539 -3.279626 4.748827 -1.073905 -1.764766 0.217813 -1.647841 -2.007572 0.809947 3.009271 -2.779479 2.256747 4.173569 1.223743 0.182569 1.413391 1.820244 -1.233071 0.664430 -3.396119 3.566525 -0.033736 -1.123114 -1.150888 -2.326307 2.752569 -0.605908 -1.005894 1.923610 4.201547 0.467192 1.147724 3.144640 1.104308 -3.641268 2.326513 0.657135 3.245476 -2.552775 -1.352887 -1.751921 1.117458 0.359086 2.915020 -6.306408 -4.953676 -4.324311 -6.769212 -2.254249 0.416579 2.955958 1.036043 0.126950 -6.445358 -4.055655 4.683057 -1.635358 5.931725 3.793152 3.479143 4.370508 3.237053 -0.698608 -1.456490 -0.844960 0.887796 -2.815504 -0.996253 -2.749859 3.598251 -2.068836 3.515693 4.655418 -0.766647 2.370284 -2.298306 4.498604 -3.162221 7.611918 3.568021 -4.882015 0.970453 1.545518 5.381600 -2.728811 -4.119969 -PE-benchmarks/channel-assignment.cpp__main = 0.381890 -2.162356 2.999208 2.818247 -0.034195 0.970441 0.860170 -1.066841 1.868193 0.986511 -0.894267 1.160006 -1.606589 0.497508 0.308596 1.508480 -2.136566 -1.760533 0.172219 -0.448759 -0.591761 -1.446821 0.324119 0.772229 1.052372 1.209180 -1.016342 -0.559958 -1.761751 -1.108366 1.524155 -0.685985 1.376781 1.449928 0.571401 -4.310144 1.775654 1.388561 -0.488549 -2.886215 0.203156 -0.795204 -0.212839 -0.893314 0.171899 0.849463 0.754700 2.166350 0.537852 1.021047 -0.235183 -0.249292 0.856155 3.323894 -0.491236 1.731726 2.015605 -0.047865 0.237851 0.057113 1.011151 0.063442 1.268501 1.669241 -0.368598 -1.153645 -0.661491 -1.188824 -2.032299 1.301758 0.947602 0.178946 -1.925995 -0.539565 -0.489278 -0.191041 -2.790407 1.983859 3.456779 -1.890153 2.511348 1.181881 1.888906 -0.321817 1.030782 0.087621 1.612891 1.060453 -1.386340 0.008577 -2.401147 -1.735678 0.367980 -0.912062 -0.978441 -2.097844 0.772005 -0.773935 -2.107975 1.247367 0.407065 -0.012175 -0.803862 -0.054762 1.363882 1.227212 -0.992133 -1.885850 -1.036603 0.239600 -0.585087 -1.045849 -0.224315 0.403097 -0.672042 -0.735274 -2.375549 -0.449745 1.038062 -1.467812 0.108737 1.503179 -1.003746 0.771100 -0.571145 -0.202441 -0.345790 1.800695 1.046979 0.903022 1.660073 -0.599587 -1.828666 1.536134 1.159272 2.010144 -0.422421 -0.022581 0.024590 0.902142 -0.293870 0.389624 0.259913 1.137453 1.396576 -0.645703 -1.838956 -1.895686 -0.085063 -1.766343 1.076878 -1.709507 0.248487 0.814831 1.814020 0.954928 1.073645 1.912860 -2.397116 1.627372 -0.549562 1.009115 0.624566 1.362221 0.836727 -0.925896 -1.370462 1.092882 1.269790 0.100760 0.749952 -1.095085 0.408543 -1.434846 -1.256496 1.002874 0.691287 -0.570304 1.621129 0.790598 2.410508 -1.524021 0.124695 0.672924 -0.054657 0.033600 0.175720 -2.507501 1.632841 -0.144261 0.681940 1.678699 -0.214086 -1.239147 0.754500 -0.161663 0.022924 -0.847170 0.779443 -1.369880 -0.802552 -1.253310 1.334899 -0.936517 -0.943506 -0.700793 0.525262 2.731426 -0.811775 -1.560386 1.385419 -1.328898 0.776689 -2.526209 2.695500 -1.220486 0.786380 -0.670594 -0.952585 -0.116232 -0.130726 -0.716657 -0.303584 1.293350 -0.543544 0.425953 2.081287 0.607470 -0.108328 0.870427 1.177823 -0.156943 0.423002 -0.731340 1.501693 -0.387008 -0.104497 -0.208171 -0.837447 1.173660 -0.486994 -0.231884 2.021295 1.367172 0.619152 1.280530 0.782822 0.758718 -1.565478 0.880968 0.123329 1.648254 -1.125790 -0.055486 -0.586406 0.184618 -0.653142 1.332701 -2.222621 -2.299983 -1.309229 -1.589063 -1.183054 0.166928 0.937406 -0.191550 0.057554 -2.268724 -1.359661 0.509478 -0.841649 0.452292 1.418617 0.853144 1.775092 1.597280 -0.772950 -0.842998 0.027024 0.250972 -0.733351 -0.225413 -1.231867 1.304800 -1.329643 0.924808 2.122292 -0.386348 0.367543 -1.067849 2.973145 -1.042293 3.079153 1.405194 -1.613222 0.630858 1.424317 2.570393 -0.196927 -1.531184 -PE-benchmarks/bfs.cpp__Graph::Graph(int) = -0.095979 -2.267847 2.871178 1.668742 -0.457873 1.676422 1.325861 -1.355719 1.308269 0.659367 -0.858477 0.550904 -1.606519 -1.030043 0.173252 -0.236953 -2.060444 -1.519766 0.139369 -0.668738 -0.358266 -1.534393 -0.510638 1.677049 0.473040 1.010871 0.079684 -0.135427 -2.459574 -0.633033 1.197444 -0.126621 0.679388 2.309849 1.630806 -2.035246 1.498935 1.556992 -0.193315 -2.558463 -0.033952 -0.145055 -0.814214 0.534219 0.369921 0.556388 0.420222 1.918562 -0.297569 0.329314 0.147668 -1.358417 0.228806 2.444110 0.785962 1.999492 2.230763 -0.205122 1.218865 1.259539 0.726761 -0.277871 0.629516 1.454067 -0.238737 0.335689 0.547900 -1.183201 -1.380734 1.262023 0.544978 -1.607784 -0.365840 -1.337303 -1.441946 -0.213141 -2.750659 1.974262 3.084754 -1.584940 2.669416 1.127071 2.108289 -0.874479 2.153173 -0.174095 2.524667 0.810721 -1.453760 0.668404 -2.555292 -2.168911 0.113658 -0.445328 -1.104809 -0.236480 1.386814 -2.368034 -2.212793 1.802435 0.079351 -0.270351 -0.870022 0.395403 1.081694 0.369897 -1.492597 -1.979373 -1.453911 1.530042 -1.874640 -0.194909 0.129673 1.459899 -0.680228 -0.316249 -1.049916 -0.116349 1.803130 -1.138190 -0.513436 2.343131 -0.842499 1.498813 -0.385899 -0.567291 -0.042325 0.866259 0.628133 0.052305 0.975437 -0.725342 -1.542577 1.155413 0.158293 1.340636 0.407795 0.239158 1.575732 1.315169 0.146387 1.257263 -1.189025 1.186264 0.030065 -0.495734 -1.584399 -1.286546 -0.578610 -1.905091 0.297577 -1.248387 -1.072026 0.571968 1.835538 2.154456 -0.509946 0.957896 -1.507454 0.791524 -0.455455 0.371251 -0.709726 -0.036918 0.556266 -1.119017 -1.376509 0.238351 0.787280 0.453918 1.168296 -1.497879 -0.667313 -1.308698 -2.152850 0.670409 0.746882 -0.162878 1.513361 1.621516 0.909434 -1.875740 -0.270969 -0.058203 -0.078397 -0.202491 -0.402191 -2.082959 0.789955 0.174740 0.864806 1.702490 -0.223301 -0.065794 0.363358 -0.311991 0.257356 -1.245231 0.525258 -1.323600 -0.102697 -0.856490 0.794836 -1.176330 -1.158013 -1.165934 -0.685772 2.367730 -1.187357 -1.987191 2.152755 -0.819077 1.521450 -1.756593 0.972325 -0.804808 1.619240 -0.027215 -0.317000 -0.502706 0.193996 0.038368 0.504923 0.382608 -1.047864 1.097380 1.581149 0.196626 0.778798 0.910018 0.998492 -1.442644 -0.916858 -1.565437 1.420812 -0.229315 -0.913996 -0.139321 -1.052747 1.327816 -0.089551 -0.201941 1.000656 1.040354 0.053563 0.372845 0.763984 -0.833019 -1.196992 0.297533 0.833073 1.239485 -1.033632 -0.347122 -0.541320 -0.011795 0.154590 0.037242 -2.195318 -1.620386 -1.958178 -1.667918 -1.566025 -0.844904 1.066708 0.723960 0.335404 -1.829895 -1.099580 0.650770 -0.659007 -0.113656 1.323815 1.503194 2.031762 1.739120 0.078633 -0.016480 0.320542 0.788353 -1.752451 -0.416224 -1.136418 0.352538 -1.794573 1.756711 1.435500 0.893011 1.084276 -0.553660 2.232983 -1.911537 1.726873 1.809489 -1.804874 0.014147 1.607751 1.502291 -0.151153 -1.539419 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/bfs.cpp__Graph::addEdge(int, int) = -0.258164 -0.966530 1.402509 1.356168 -0.111844 0.591160 0.321503 -0.791154 0.852417 0.736917 -0.080499 0.377124 -0.969210 0.308942 0.065420 0.749355 -0.964887 -0.747126 -0.247233 -0.636087 -0.630080 -0.786537 0.062012 0.465807 0.485829 0.194883 -0.627980 -0.139727 -0.824982 -0.861468 0.469134 -0.243021 0.702528 0.373364 0.283721 -2.443143 0.917024 0.815264 -0.278928 -1.014704 0.105191 -0.563513 0.143731 -0.255990 -0.364790 0.264155 0.121523 0.224052 0.610165 0.269643 0.471699 0.011544 0.468333 1.969904 -0.443143 0.931172 0.567182 -0.120201 -0.044617 0.157004 0.318704 0.099564 0.712443 0.601160 -0.196897 -0.618008 -0.221698 -0.432294 -0.962783 0.830064 0.085698 -0.316032 -0.902026 -0.489891 -0.621929 -0.495900 -1.391068 0.851789 1.600205 -1.049344 1.074038 0.473511 0.519079 0.029668 0.823495 -0.070996 1.240718 0.302842 -0.627961 0.317687 -0.262081 -0.420410 0.187088 0.227474 -0.558532 -1.054133 0.461774 -0.732134 -1.302373 0.752900 0.194427 -0.009119 -0.944944 -0.357731 0.526131 0.330875 -0.720587 -1.225492 -0.657543 0.380327 0.006760 -0.500415 -0.070170 -0.190342 -0.181391 -0.285875 -1.201592 -0.223725 0.324913 -0.735267 -0.445724 1.056513 -0.217620 0.364073 -0.072029 0.173302 -0.271837 1.067994 0.086755 0.707139 0.073153 0.058526 -1.261722 0.063432 0.444981 0.521354 -0.108910 -0.161878 -0.174766 0.373024 -0.465483 0.520480 0.084001 0.872291 1.013396 -0.148661 -0.801606 -0.575545 -0.129898 -1.277607 0.372223 -0.856798 -0.156548 0.406839 0.878311 0.577722 0.483525 0.959517 -0.766298 0.701868 -0.278309 0.025970 0.623970 0.162084 0.564719 -0.573551 -0.839666 0.528932 0.587672 0.358395 0.331782 -0.429067 0.017307 -0.564380 -0.557397 0.369241 0.359225 -0.236684 0.922370 0.593242 1.898003 -1.043008 0.453904 0.369166 -0.115379 0.257672 -0.119805 -1.199191 0.540459 0.163515 -0.275741 0.875235 -0.227318 -0.575116 0.365232 -0.282237 0.346391 -0.789162 0.370569 -0.725954 -0.122032 -0.838614 0.155562 -0.469480 -0.457500 -0.320676 -0.000626 1.327974 -1.024817 -0.640141 1.151101 -0.203602 0.448507 -1.286788 1.552844 -0.543454 0.667904 -0.739143 -0.543343 -0.072984 0.512735 -0.230243 0.253307 0.597750 -0.507784 0.154885 1.270978 0.254582 0.277814 0.239251 0.861857 0.051771 0.291121 -0.498282 1.167258 -0.016090 -0.109729 -0.152244 -0.530079 0.365593 -0.150335 0.105636 0.782600 0.879970 0.051954 0.287137 0.755133 0.446460 -0.566038 0.540588 -0.054296 0.642354 -0.677953 -0.051890 -0.074621 0.306929 -0.331738 0.455695 -1.209450 -1.022991 -0.961488 -0.503015 -0.480983 0.530951 0.314333 0.043105 -0.080158 -0.993980 -0.727009 0.903402 -0.570104 0.235258 0.490945 0.565342 0.964334 1.119673 -0.116354 -0.326248 -0.154565 -0.074043 -0.238698 -0.080629 -0.604863 0.772023 -0.803028 0.643210 0.826492 -0.188800 0.386573 0.170153 1.087286 -0.733251 1.391742 0.557994 -0.494656 0.739254 1.169613 1.129390 -0.136641 -0.674677 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::push_back(int const&) = -0.077529 -0.917212 1.926129 1.690331 -0.291034 0.629247 0.100363 -1.345253 1.481807 0.359404 -0.067820 0.345084 -1.053998 0.601394 -0.297854 1.025625 -1.514553 -0.974832 -0.508815 -1.067197 -0.843968 -0.975442 0.422656 0.255730 0.632583 0.456758 -0.955443 0.007034 -0.960840 -0.934492 1.081055 -0.390250 0.806590 0.193464 0.263220 -3.329660 1.412603 0.906599 -0.490407 -1.358132 0.240322 -0.820300 0.128790 -0.602182 -0.478886 0.211199 -0.188216 0.492971 0.979868 0.286153 0.366317 0.484081 0.168066 2.586149 -0.959138 1.010112 0.481178 -0.059223 -0.391253 0.293020 0.409690 0.500026 0.837138 0.799006 -0.267402 -1.124092 -0.221362 -0.642902 -1.378018 1.246603 -0.015182 -0.403871 -1.099677 -0.507587 -0.989252 -0.497219 -1.263619 1.271060 1.947137 -1.326708 0.981342 0.226904 0.533105 0.101900 0.849460 -0.081755 1.616537 0.433907 -0.617319 0.086968 -0.553645 -0.367427 0.334869 -0.198445 -0.657727 -1.762485 0.632030 -1.287231 -1.489152 0.672496 0.589161 -0.016680 -1.289897 -0.552017 0.818272 0.455756 -0.835267 -1.398146 -0.535145 0.528918 0.168919 -0.568503 0.040671 -0.378039 -0.230716 -0.592107 -1.607283 -0.197249 0.232984 -0.657977 -0.459639 1.273472 -0.562691 -0.070521 -0.159556 0.358538 -0.535055 1.432644 -0.267029 0.930079 0.048071 0.330961 -1.071000 0.194983 0.521846 0.920253 -0.165585 -0.154143 -0.558813 0.399922 -1.002412 0.215261 -0.210901 0.599859 1.185029 -0.278406 -1.043524 -0.464671 -0.177392 -1.884918 0.345044 -1.117295 -0.385883 0.680549 1.141151 1.103125 0.925839 1.349332 -1.154538 0.773225 -0.319310 0.034166 1.115236 0.273336 0.758473 -0.678450 -1.061748 0.663747 0.295291 0.391765 0.343633 -0.465736 -0.009963 -0.970315 -0.573925 0.525547 0.693097 -0.104452 0.978030 0.763155 1.600164 -1.502391 0.572225 0.737847 -0.284610 0.336849 -0.148355 -1.460224 0.572121 0.317679 -0.017740 1.144079 -0.309094 -0.712182 0.279165 -0.210863 0.566819 -0.885238 0.134186 -0.904089 -0.241678 -1.085549 0.214592 -0.571869 -0.433315 -0.545250 -0.455696 1.606379 -1.393390 -1.044610 1.858997 -0.450001 0.858132 -1.673572 1.337762 -0.757155 1.029203 -0.678022 -0.206450 -0.128654 0.190236 -0.749185 0.411867 0.737312 -0.494163 0.200572 1.764319 0.447669 0.311833 0.064806 1.190299 -0.131339 0.768503 -0.644971 1.617946 -0.190769 -0.326104 0.055199 -0.636931 0.132174 -0.585328 0.378784 1.224358 1.022349 0.561673 0.709134 0.880237 0.900543 -0.784405 0.896935 -0.138609 0.399007 -0.666183 -0.058427 0.283081 0.553908 -0.543808 0.574059 -1.486717 -1.747025 -1.615354 -1.032023 -0.184657 0.074947 0.231250 -0.283068 -0.177470 -1.174959 -0.914647 0.999809 -0.676181 0.942986 0.665798 0.638332 1.038536 1.616170 -0.766642 -0.197364 0.021847 -0.064648 -0.146893 -0.216749 -1.124218 1.289367 -0.805793 0.493335 1.436548 -0.375614 0.470281 0.057361 1.205382 -0.758962 1.744571 0.630357 -0.507026 1.054603 1.106764 1.535516 0.478665 -0.858644 -PE-benchmarks/bfs.cpp__Graph::BFS(int) = -1.300888 -7.769061 12.004080 10.383480 -0.738025 5.688642 1.675505 -7.487906 6.898229 3.361663 -2.833700 3.209044 -7.121467 0.891470 -2.943592 4.012552 -7.366804 -6.516380 -2.102424 -4.658961 -3.423030 -6.373805 0.867114 4.992574 3.689166 5.324394 -4.709999 0.612437 -8.219366 -9.138277 5.325236 -1.026772 5.121282 4.294266 1.657024 -16.121258 8.994276 9.071915 -2.136803 -8.954038 1.603964 -3.058097 -3.232683 -0.378133 -2.170085 3.009704 0.077948 4.276472 2.453508 2.612591 2.464507 0.684355 3.697062 12.444401 -1.852318 8.941509 6.873257 1.166735 0.645535 2.024765 2.351476 2.097487 4.824947 5.814509 -1.905950 -4.102938 -0.261458 -2.307835 -8.094842 6.386974 0.104438 -4.127937 -5.104744 -3.725817 -5.371134 -1.264471 -4.466918 5.200426 13.217155 -6.368835 9.595515 3.836625 4.494061 -1.906381 4.841907 -1.503702 8.370754 3.869279 -4.263239 -0.057434 -6.583771 -3.785369 1.143556 1.244223 -7.142196 -6.531466 5.241971 -10.555581 -10.390744 4.240650 1.651571 -2.547553 -5.371975 -0.651016 4.587825 1.412993 -3.941415 -8.527225 -3.682555 4.519807 -1.998956 -3.860572 -2.065901 1.356285 -1.022799 0.114307 -9.706626 -0.552087 3.678794 -5.412087 -1.594474 7.390737 -1.483402 2.904007 -1.380245 1.400263 -1.958869 6.119620 0.842376 3.920499 1.839115 1.388245 -4.822224 2.168553 2.910040 3.158816 -3.758927 -2.081866 0.666984 3.253634 -2.188004 3.702775 -4.060209 3.850110 6.638592 -1.328947 -5.990889 -5.157582 -3.179987 -11.149011 2.065309 -6.490743 -4.420830 2.179706 7.024683 4.001595 3.580845 8.372239 -7.221203 4.868236 -0.621882 1.393853 2.692285 0.303696 3.597057 -4.459146 -8.183345 5.538895 3.553376 2.047777 2.479001 -2.804410 -0.724073 -5.337054 -5.926917 5.091549 1.495928 -0.324292 7.308682 5.298003 11.843058 -7.010837 2.756333 2.295796 -2.196470 1.921897 -0.236199 -10.364222 3.961244 1.287432 3.176254 10.397779 -0.800187 -3.108403 2.893502 -0.774755 1.783951 -7.139018 5.315333 -6.987576 -1.003328 -5.945490 1.326953 -2.976206 -3.497065 -3.813107 -2.024424 10.223402 -7.732054 -7.586424 9.206704 -0.890969 3.984638 -10.752362 5.668817 -4.722575 6.952517 -1.690557 -2.454306 -0.002178 -1.374134 -2.519432 0.905232 3.907106 -4.227671 4.079995 9.008044 1.382078 1.228520 2.031879 5.298638 -2.450752 2.361180 -5.840641 7.830830 0.184903 -4.032649 -1.005162 -4.084750 1.954091 -3.460614 -0.265493 5.537213 7.277534 1.005626 2.174232 4.668121 3.720362 -5.212130 4.920927 0.965301 3.383165 -4.704432 -1.709110 -0.279585 1.939032 -1.674093 4.626184 -10.203334 -9.984124 -9.502755 -9.392961 -2.971277 -1.104001 4.661471 0.142932 -0.655501 -8.466162 -7.314501 8.089147 -3.765036 6.713684 5.959386 6.225597 7.219954 8.314376 -2.469251 -0.548645 -0.480243 1.760543 -3.375601 -1.851221 -5.149542 6.603578 -2.351860 4.906449 7.701800 -1.079797 4.141697 -2.045481 7.679293 -5.691534 11.767484 4.741041 -5.361096 4.742290 3.922575 8.684629 -0.636604 -5.717333 -PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::empty() const = 0.766066 -0.592721 2.143786 1.906314 -0.464765 0.547868 -0.540161 -1.675591 1.084874 0.861797 -0.325924 0.579516 -0.300027 0.563138 -0.388045 1.448253 -1.468602 -0.356801 -0.820920 -1.201008 -0.820514 -0.423058 0.082693 0.147568 0.756650 0.520585 -0.883084 0.556398 -0.116469 -2.205470 0.006717 -0.059097 0.291417 -0.435518 0.747057 -1.607693 1.748466 1.136795 -0.481522 -1.264451 0.174096 -0.193445 -0.495154 -0.033397 -0.384780 0.511934 -0.452880 0.452520 0.617333 0.806977 0.461452 0.930403 1.176184 2.053973 -0.133442 1.081355 0.789046 0.069175 0.088308 0.489706 0.448869 0.688790 0.138781 0.229725 0.686921 -1.277229 -0.543767 0.035158 -0.295056 1.129366 -0.435751 -1.381362 -1.005115 -1.084911 -0.964637 -0.141650 -2.965819 1.329090 1.383817 -1.381498 0.328800 0.402538 0.083650 0.272439 0.716502 -0.278361 1.532736 0.686671 -0.058109 0.440520 0.753251 -1.014016 0.905998 -0.895301 -1.303398 -2.149864 0.821691 -2.178792 -1.324833 0.969609 0.988619 -0.533022 -0.289682 -0.816487 0.451167 -0.002428 -0.404683 -0.729463 0.131621 0.688600 0.545047 -0.595534 -0.196845 -0.098245 0.335429 1.015886 -1.619600 0.499990 0.426743 0.018224 -0.099625 0.961608 0.684005 -0.391054 -0.441068 0.238445 -0.393870 1.221954 -0.446558 1.512631 -0.711161 1.477591 -0.625885 1.607422 0.678925 -1.824620 -0.134689 0.533672 -0.266833 0.604340 -0.807637 1.210789 -1.096025 0.697113 0.830493 0.148793 -1.161540 -0.630618 -1.222449 -1.274952 0.345577 -0.721157 -1.399942 0.397200 0.932060 1.078875 0.712311 -0.021343 -1.000659 -0.386699 -0.234891 0.429929 0.789065 -0.495050 0.405634 -0.556937 -0.879452 0.881363 0.490218 0.221849 0.471935 -0.182857 0.253084 -0.506130 0.185741 1.091980 0.620711 -0.224228 1.109244 1.028088 1.564029 -0.127652 0.178835 0.542794 -0.622403 0.185126 -0.352356 -1.226027 0.231318 0.347661 1.295388 1.370295 -0.244155 0.394491 0.228707 -0.296854 0.384933 -0.458168 0.165004 -0.749454 -0.249814 -0.421908 0.536581 -0.404143 0.034010 -0.404684 -0.699667 1.408287 -1.982716 -0.321617 2.058273 -0.891585 0.190953 -0.530330 1.239105 -0.496587 0.785100 0.099952 -0.116228 0.001708 -0.476568 -1.131336 0.436203 0.663689 -0.343122 -0.194850 1.154504 0.231469 -0.070835 -0.192106 0.878190 -1.011387 1.046691 -0.834207 1.627307 -0.273425 0.036491 -0.517476 -0.362184 -0.440081 -1.031476 0.298359 0.574705 -0.164938 0.509447 -0.136466 0.410598 0.924133 -0.852492 1.513637 -0.153757 -0.376247 -1.004412 -0.281880 0.623989 0.118799 -0.338820 0.274479 -1.373632 -0.450014 -2.837100 0.018740 -0.380930 -0.257336 0.529343 -0.652952 -0.758378 -0.382378 -1.527494 2.251481 -0.424393 -1.149021 0.869614 0.550296 0.853471 1.299935 0.218602 0.564264 -1.010035 -0.421662 0.250954 -0.500640 -0.520026 1.461605 -0.220344 -0.014989 1.371241 -0.190507 0.982997 0.494922 0.006247 -0.654573 0.818482 0.314691 -0.328994 0.394382 1.686446 0.773874 -0.306399 -0.873067 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::front() = 0.073802 -0.614649 1.255730 1.147167 -0.258643 0.422558 0.026534 -0.890393 0.967460 0.058146 -0.073244 0.163582 -0.737058 0.392895 -0.191977 0.594555 -0.998069 -0.636247 -0.398102 -0.690705 -0.519905 -0.636589 0.267846 0.226695 0.425533 0.472472 -0.582583 0.036133 -0.694185 -0.333815 0.780528 -0.194858 0.519231 0.433297 0.257795 -1.885361 0.865707 0.638220 -0.284359 -0.900774 0.124099 -0.571848 0.083965 -0.495692 -0.211293 0.173859 -0.189232 0.392547 0.625033 0.129669 0.132899 0.281970 0.019409 1.455955 -0.595204 0.646275 0.310348 0.008350 -0.185646 0.142847 0.259102 0.387716 0.498440 0.474011 -0.219512 -0.752526 -0.204406 -0.488499 -0.847700 0.821317 0.003373 -0.232216 -0.791466 -0.429848 -0.634319 -0.289655 -1.081752 0.906265 1.222207 -0.934994 0.590968 0.154269 0.331310 0.012406 0.563328 -0.070689 1.009264 0.286246 -0.343496 0.147809 -0.513994 -0.298733 0.217148 -0.304495 -0.520252 -1.087263 0.433465 -0.895476 -0.977010 0.381949 0.406730 -0.041329 -0.697559 -0.201529 0.422827 0.286917 -0.503305 -0.856523 -0.205109 0.370906 0.229904 -0.357775 -0.021705 -0.087927 -0.155611 -0.509395 -1.072071 -0.072935 0.145857 -0.402588 -0.140521 0.830199 -0.409442 -0.084781 -0.118183 0.140907 -0.349589 1.055131 -0.160414 0.534557 0.056415 0.180451 -0.593310 0.231509 0.340529 0.737002 -0.151019 -0.028650 -0.301503 0.234571 -0.638208 0.057109 -0.118750 0.275646 0.638858 -0.253633 -0.676010 -0.299825 -0.235372 -1.211579 0.198534 -0.708290 -0.173092 0.470151 0.725502 0.902991 0.581226 0.961882 -0.771109 0.368397 -0.169774 0.016587 0.695052 0.382471 0.470448 -0.441517 -0.694540 0.483256 0.057485 0.215188 0.280439 -0.243375 -0.019269 -0.662670 -0.307039 0.407776 0.435876 -0.073771 0.725165 0.544881 0.602869 -0.885423 0.382493 0.463085 -0.203424 0.219656 -0.049508 -0.943517 0.438839 0.162496 0.023616 0.685644 -0.235899 -0.308505 0.189056 -0.172756 0.394342 -0.596391 0.043879 -0.597146 -0.185062 -0.825332 0.300141 -0.320811 -0.306693 -0.316278 -0.299502 1.045568 -0.783224 -0.581777 1.167067 -0.196642 0.592037 -0.935647 0.668183 -0.473368 0.717389 -0.335595 -0.121937 -0.036954 -0.029815 -0.480886 0.142125 0.483470 -0.290431 0.027341 1.061555 0.265067 0.068484 0.088546 0.762957 -0.137566 0.567190 -0.446488 1.029512 -0.079103 -0.181585 0.126813 -0.419129 0.034107 -0.439722 0.190250 1.009418 0.673831 0.545679 0.477734 0.454507 0.582014 -0.503925 0.526470 -0.064657 0.182392 -0.455462 -0.041207 0.222444 0.367785 -0.343543 0.291189 -0.944065 -1.250071 -0.972064 -0.638836 -0.091724 -0.147270 0.145370 -0.161544 -0.183837 -0.671927 -0.674735 0.499348 -0.461931 0.673592 0.357588 0.395935 0.675892 1.056359 -0.585694 -0.055859 0.165540 0.059820 -0.051620 -0.078276 -0.798357 0.881361 -0.468116 0.233661 1.064994 -0.269904 0.376877 -0.026155 0.931302 -0.501614 1.129269 0.370750 -0.430107 0.698896 0.749811 0.927904 0.472835 -0.566269 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::pop_front() = 0.108188 -1.001143 2.249072 1.951510 -0.353604 0.693702 0.110198 -1.636365 1.606119 0.455216 -0.143233 0.364861 -1.171483 0.687851 -0.602998 1.205180 -1.691566 -1.025590 -0.707514 -1.230139 -0.880622 -1.072731 0.625319 0.275189 0.811254 0.587355 -1.071393 0.020509 -1.015581 -1.328515 1.160903 -0.344307 0.867810 0.111335 0.219804 -3.374702 1.667512 1.181320 -0.568969 -1.515422 0.362322 -0.735670 -0.138458 -0.527785 -0.597319 0.245487 -0.357441 0.616905 1.037252 0.428329 0.498656 0.641265 0.410850 2.814232 -0.989525 1.181718 0.567250 0.071223 -0.338286 0.393555 0.467349 0.717108 0.783671 0.890994 -0.039043 -1.271437 -0.262140 -0.606428 -1.483575 1.476899 -0.207322 -0.567253 -1.192312 -0.595534 -1.099099 -0.356661 -1.421771 1.419717 2.151253 -1.434377 1.017620 0.228046 0.362867 -0.043188 0.714250 -0.150964 1.616076 0.554004 -0.483679 -0.015149 -0.435491 -0.388754 0.452256 -0.302714 -0.923476 -2.130870 0.912914 -1.633778 -1.658239 0.678441 0.775547 -0.248214 -1.147543 -0.565859 0.747501 0.432980 -0.858417 -1.462037 -0.487205 0.650280 0.340303 -0.629546 -0.010866 -0.238737 -0.185838 -0.387084 -1.803570 -0.143255 0.179686 -0.707696 -0.406093 1.294884 -0.400677 -0.105572 -0.177223 0.449568 -0.545277 1.508964 -0.332397 1.178709 0.010863 0.714508 -0.846499 0.343245 0.681139 0.665370 -0.216919 -0.057182 -0.603192 0.494566 -1.056594 0.357158 -0.459665 0.491590 1.269360 -0.339220 -1.177475 -0.465142 -0.358803 -2.113403 0.301700 -1.251759 -0.657963 0.732241 1.251750 1.164741 1.003588 1.502957 -1.357742 0.659709 -0.219536 -0.005453 1.116066 0.135747 0.756551 -0.707287 -1.321685 0.772777 0.304820 0.463607 0.305456 -0.380111 -0.068611 -1.073578 -0.530328 0.705170 0.734001 -0.226462 1.056305 0.933250 1.645245 -1.437440 0.624330 0.871801 -0.419704 0.358429 -0.167207 -1.765604 0.599193 0.319117 0.248309 1.352092 -0.315196 -0.573321 0.439697 -0.369729 0.572700 -1.022628 0.224451 -1.049115 -0.265561 -1.247038 0.275114 -0.469146 -0.409043 -0.545269 -0.524580 1.755823 -1.712599 -1.062707 2.156064 -0.399754 0.770715 -1.727728 1.424870 -0.767458 1.128605 -0.497364 -0.175627 -0.067653 0.027296 -0.929284 0.318512 0.771377 -0.508388 0.297648 2.000564 0.443934 0.177670 0.008238 1.346043 -0.336941 0.969112 -0.853803 1.799314 -0.152378 -0.540353 -0.015480 -0.697654 -0.022069 -0.900200 0.422110 1.409452 1.017929 0.645248 0.766914 0.826506 1.164356 -0.854981 1.198008 -0.087517 0.325475 -0.760387 -0.084193 0.453122 0.597989 -0.697038 0.766297 -1.665934 -1.959560 -2.026895 -1.213096 -0.177911 -0.266436 0.457580 -0.473752 -0.320068 -1.214224 -1.251022 1.300524 -0.743002 0.901077 0.876333 0.742789 1.088679 1.794406 -0.806534 0.114597 -0.087478 0.083256 -0.086060 -0.389075 -1.098050 1.441825 -0.740762 0.416919 1.676261 -0.391404 0.682413 -0.018797 1.131978 -0.900141 1.885152 0.670376 -0.503935 1.201600 1.139739 1.594404 0.573017 -0.956042 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/bfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/bfs.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/bfs.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::~list() = -0.156841 -0.373990 0.605491 0.492285 -0.008479 0.257556 0.057895 -0.419974 0.675973 0.152770 -0.117451 0.036386 -0.480467 0.178459 -0.264086 0.301693 -0.445860 -0.462191 -0.080958 -0.321325 -0.275480 -0.491239 0.128752 0.052131 0.162067 0.104419 -0.274481 0.102934 -0.520161 -0.294780 0.368516 -0.217715 0.191694 0.016587 0.088622 -0.825867 0.464210 0.310798 -0.165362 -0.499170 0.021029 -0.407057 0.155385 -0.216825 0.023280 0.106142 0.030593 0.212402 0.393277 0.059536 0.235212 -0.004130 -0.091630 0.825784 -0.450350 0.392744 0.131117 0.049736 -0.107945 0.167087 0.132771 0.104358 0.297186 0.408253 -0.256212 -0.284533 -0.072140 -0.224455 -0.483488 0.466431 -0.140545 -0.045468 -0.450870 -0.159473 -0.405820 -0.203914 -0.729158 0.355682 0.799856 -0.450621 0.442653 0.166519 0.391895 0.046070 0.355192 -0.038229 0.628335 0.119479 -0.408329 0.042570 -0.244773 0.028870 0.008579 -0.046692 -0.143297 -0.439353 0.211300 -0.576930 -0.585116 0.213356 0.086901 0.119895 -0.368528 0.050466 0.326825 0.151385 -0.350336 -0.616034 -0.117501 0.155643 0.037309 -0.141237 0.150572 -0.235944 -0.094748 -0.276047 -0.556212 -0.235275 0.060743 -0.392349 -0.171285 0.528066 -0.239574 0.061983 0.004776 0.074905 -0.101635 0.566879 -0.013566 0.309716 -0.114132 0.054045 -0.685833 0.131195 0.162217 0.306094 -0.100189 0.161233 -0.089004 0.067607 -0.388631 -0.056329 -0.222900 0.132424 0.331242 -0.228471 -0.341392 -0.150799 -0.061527 -0.670798 0.169650 -0.408171 -0.161795 0.044125 0.439527 0.524808 0.349922 0.684088 -0.432808 0.220053 -0.144414 -0.009458 0.386495 0.087137 0.338399 -0.256095 -0.375248 0.236555 0.185305 0.025913 0.194163 -0.285289 -0.034002 -0.445226 -0.062849 0.232027 0.259426 -0.034556 0.439749 0.205289 0.243722 -0.639105 0.268875 0.282998 0.034496 0.141440 -0.065111 -0.568934 0.348320 0.109767 0.079150 0.222957 -0.082443 -0.209549 0.076209 -0.136457 0.302217 -0.419798 -0.031045 -0.349812 -0.138153 -0.418786 0.259045 -0.211152 -0.213471 -0.099740 -0.116221 0.519502 -0.351342 -0.287406 0.604397 -0.007890 0.390823 -0.474240 0.315739 -0.324658 0.535402 -0.199324 0.045340 -0.061471 0.179040 -0.059512 0.044953 0.280465 -0.144766 0.194551 0.499734 0.182905 0.189663 0.170869 0.467800 -0.042566 0.132955 -0.150748 0.446699 -0.005651 -0.176198 0.172020 -0.290161 0.118435 -0.086471 0.119504 0.538529 0.532280 0.098212 0.371655 0.285553 0.264459 -0.259255 0.204670 -0.071001 0.239471 -0.276172 -0.014479 0.004503 0.135824 -0.233964 0.123873 -0.549479 -0.715878 -0.471948 -0.357133 -0.071809 -0.120492 -0.012805 -0.012193 0.071118 -0.422657 -0.267720 0.401426 -0.276688 0.431809 0.098480 0.237926 0.371084 0.612820 -0.311722 -0.176998 0.068780 -0.031391 -0.163340 -0.011408 -0.397625 0.407618 -0.407886 0.212941 0.432140 -0.204004 0.023427 0.158135 0.345745 -0.302635 0.615752 0.320473 -0.142256 0.461041 0.382560 0.746402 0.250179 -0.318471 -PE-benchmarks/bfs.cpp__main = -0.004841 -3.639224 5.706005 4.803156 -1.146366 1.885144 0.724359 -2.714036 3.214939 -0.281105 -1.420807 1.686089 -3.445509 1.108676 -1.342169 1.900111 -4.834688 -3.396805 -0.557806 -1.571573 -1.644571 -2.848118 1.030533 2.355881 1.984361 3.265215 -2.394864 -0.207074 -3.433295 -1.766465 3.344328 -1.301849 2.727164 3.245678 0.885388 -8.602735 3.496460 2.800086 -0.978212 -4.202459 0.722140 -2.007655 -0.398944 -2.544719 -1.715393 0.890074 0.672155 2.797508 1.780612 0.754677 -0.540841 -0.094363 0.854113 6.121953 -1.368473 3.109444 2.789342 -0.027335 -0.018632 -0.257937 1.487359 0.495962 2.353121 2.849621 -1.157534 -2.376392 -0.690695 -2.561596 -3.796269 3.166993 0.489672 0.426657 -3.205969 -1.072786 -2.996936 -0.729093 -1.861670 3.775686 6.391755 -3.727171 4.090627 1.309744 2.522045 -0.620309 1.828834 0.103398 3.462795 1.783378 -2.138881 0.163899 -3.573001 -1.509114 0.363217 -0.644450 -2.020786 -4.276488 1.920301 -4.969469 -4.435257 1.692161 0.938072 -0.451920 -1.777863 -0.434324 2.318918 1.511152 -2.308897 -3.756977 -1.080876 0.809974 -0.299716 -1.505621 -0.144253 1.186636 -0.799062 -1.606345 -4.765636 -0.736355 1.142569 -2.814995 0.614235 3.275938 -1.439691 1.307241 -0.585987 0.396193 -0.997529 4.093940 0.813740 1.369530 1.020419 0.071113 -1.071782 0.555658 1.643618 3.823789 -1.704243 -1.245990 -0.226460 1.411861 -1.414078 -0.478921 -0.458513 1.404120 2.266733 -1.378269 -3.372930 -2.441577 -1.520015 -5.430386 0.784819 -3.384323 -1.084834 2.762783 3.280414 2.391060 2.179963 4.487309 -3.254387 2.619490 -0.524355 0.482723 1.900645 1.319282 1.989833 -1.974912 -3.114973 2.597874 0.675205 1.337613 1.115575 -1.786120 0.178505 -3.008358 -2.581025 2.213854 1.805452 -0.138987 2.984860 1.833228 2.562730 -3.371306 1.083974 1.631907 -0.310656 0.456496 0.446193 -4.645485 2.727071 0.093488 0.354706 3.139650 -0.494367 -2.116336 1.589258 -0.421915 0.982525 -2.947632 1.047658 -2.688992 -0.484274 -3.496837 1.492653 -1.430136 -1.568083 -1.766233 -0.997212 4.902996 -4.156038 -2.944371 3.861969 -0.049292 3.359568 -5.018613 2.498417 -2.332122 4.114953 -0.662856 -1.344451 0.315687 -1.422253 -1.258155 -0.039076 2.137806 -1.150662 0.733954 3.654184 1.191680 0.442029 1.288049 2.957304 -0.148027 1.790341 -1.559043 2.980028 -0.098006 -1.741896 0.287382 -1.751326 0.741632 -1.216129 0.687220 3.945463 3.285813 2.117983 2.955805 2.067984 2.079861 -2.627879 1.006563 -0.291655 2.397727 -2.199811 -0.609049 -0.342183 1.987636 -1.372787 2.116117 -4.537045 -6.455289 -5.015642 -3.813333 -1.706252 -1.139403 1.604983 -0.465649 -0.085655 -3.598250 -2.614900 2.040514 -1.818816 3.805731 2.663928 1.927025 3.470679 3.829290 -2.331052 -1.375137 1.260716 1.586431 -0.889830 0.530475 -4.022537 2.809048 -2.425171 1.807096 4.783366 -1.420712 1.065212 -0.998160 4.910161 -2.491078 5.894762 2.400591 -3.504472 2.459903 2.134969 3.303642 1.783284 -2.833260 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::~_List_base() = -0.004984 -0.904429 1.973330 1.618572 -0.209072 0.603763 0.201538 -1.396566 1.469698 0.501547 -0.244918 0.271430 -1.067414 0.488523 -0.486438 1.034986 -1.397893 -0.927786 -0.419509 -0.986434 -0.616738 -1.082559 0.569320 0.242105 0.653518 0.607510 -0.892435 0.057362 -0.824527 -1.459718 1.015086 -0.373701 0.759491 0.163555 0.145670 -2.880176 1.563232 1.051976 -0.440097 -1.318876 0.269490 -0.591721 -0.094475 -0.397289 -0.419265 0.342477 -0.139827 0.589168 0.843475 0.414687 0.511497 0.365398 0.415681 2.246290 -0.841372 1.004545 0.478362 0.034207 -0.241665 0.338974 0.404962 0.505059 0.731533 0.951502 -0.147094 -0.937893 -0.188662 -0.496795 -1.438538 1.224606 -0.246542 -0.444955 -1.103665 -0.441297 -0.880993 -0.230217 -1.279965 1.149148 1.976621 -1.090304 1.077059 0.285918 0.444680 -0.158553 0.544861 -0.135835 1.418942 0.476229 -0.596500 -0.062665 -0.412990 -0.491859 0.343206 -0.130050 -0.718884 -1.504347 0.683830 -1.398315 -1.429776 0.530249 0.524041 -0.135414 -1.051187 -0.380059 0.721473 0.430740 -0.662059 -1.349062 -0.396235 0.443008 0.133453 -0.517730 -0.080199 -0.128172 -0.287966 -0.281088 -1.502187 -0.308063 0.142186 -0.775262 -0.333811 1.037325 -0.385804 0.049778 -0.130334 0.325126 -0.350303 1.245689 -0.140022 0.971628 0.138788 0.510257 -0.830206 0.336291 0.572875 0.573629 -0.193921 0.010122 -0.401967 0.374198 -0.848717 0.218615 -0.448187 0.390508 1.270912 -0.317601 -0.975391 -0.401049 -0.309743 -1.869107 0.375935 -1.095324 -0.482810 0.537327 1.082156 0.856399 0.847438 1.416873 -1.361921 0.589311 -0.224683 0.044440 0.859065 0.160209 0.651455 -0.591819 -1.145166 0.686178 0.398248 0.285697 0.296982 -0.434298 -0.056363 -0.932422 -0.496079 0.740311 0.538624 -0.145191 0.897491 0.651755 1.566058 -1.216267 0.509991 0.746406 -0.174877 0.275945 -0.078403 -1.552108 0.715128 0.174357 0.388486 1.114045 -0.228577 -0.516806 0.356741 -0.309873 0.431736 -0.930374 0.262212 -0.918251 -0.234711 -1.025338 0.250578 -0.371639 -0.454090 -0.359981 -0.230122 1.447151 -1.226574 -0.977316 1.808060 -0.424934 0.698542 -1.523116 1.248035 -0.706695 0.943467 -0.463656 -0.180742 -0.053289 -0.067572 -0.564000 0.137628 0.649070 -0.297578 0.357565 1.691953 0.385616 0.097281 0.139195 1.064569 -0.233334 0.693308 -0.613830 1.421500 -0.072988 -0.400393 0.019972 -0.618543 0.131848 -0.657704 0.190657 1.259910 1.017487 0.373369 0.766657 0.678646 0.900468 -0.736137 1.079955 -0.015319 0.404223 -0.614416 -0.090118 0.264435 0.485462 -0.616298 0.716886 -1.389978 -1.702533 -1.591611 -1.173756 -0.344450 -0.251842 0.495608 -0.318109 -0.108835 -1.054209 -1.007943 1.235430 -0.589159 0.864291 0.653187 0.626581 0.900936 1.441795 -0.652783 -0.024064 -0.108316 0.085418 -0.222950 -0.319386 -0.865069 1.108697 -0.726092 0.412926 1.307515 -0.380715 0.395448 -0.111046 0.970715 -0.774407 1.647716 0.650404 -0.390340 1.039321 0.797140 1.450560 0.420479 -0.817781 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_clear() = 0.519774 -2.398489 6.529442 5.200102 -0.176310 1.755511 1.064042 -4.937431 4.192507 2.448623 -0.566055 0.869050 -2.914074 1.413298 -2.027777 3.535988 -3.716084 -2.467614 -1.834369 -3.613644 -1.591665 -2.929154 2.124557 0.334889 2.407592 1.090071 -2.955908 -0.296764 -2.458998 -6.106283 2.763316 -0.565456 2.214701 -0.975051 -0.051338 -8.323586 5.387294 4.058273 -1.469809 -3.789794 1.356490 -1.074305 -1.414928 -0.120233 -1.105258 1.074037 -1.058242 1.463794 2.221446 1.830095 2.460996 2.177118 2.082622 7.062833 -2.472768 3.218931 1.491302 0.428512 -0.535446 1.704315 1.095372 2.106650 1.820875 2.506990 0.565472 -3.047376 -0.477649 -0.778595 -4.204150 3.649490 -0.862975 -2.540281 -2.875166 -1.256502 -2.457379 -0.122968 -3.537207 3.087226 5.493398 -2.842200 2.980775 0.701672 0.378307 -0.911129 0.970092 -0.650081 3.883403 1.545539 -0.816680 -0.971691 -1.018511 -1.603745 1.334591 0.004534 -2.999803 -4.792579 2.711268 -3.866867 -4.235858 1.390041 2.058473 -1.375185 -3.151350 -1.359673 1.538837 1.018828 -1.404576 -3.672024 -1.497110 1.796070 0.567545 -1.734280 -0.689015 -0.584159 -0.719032 0.142521 -4.374652 -0.249582 0.251501 -1.760515 -1.811046 2.608579 -0.687467 -0.270208 -0.491876 1.410893 -1.178086 2.619987 -0.862324 3.538142 0.838130 2.420505 -2.505464 1.211551 2.066227 0.633401 -0.515322 0.464950 -1.578986 1.314474 -2.330218 1.860099 -1.866885 1.223550 4.199488 -0.898593 -2.762632 -0.991558 -0.578242 -5.165596 1.025958 -3.024077 -2.183908 0.752942 3.096909 2.067209 2.412458 3.901770 -4.303493 1.561092 -0.157424 0.066643 2.240697 -0.701158 1.500076 -1.616629 -3.987186 1.836355 1.458891 0.852162 0.431310 -0.348855 -0.309770 -2.619074 -1.510424 2.018676 0.980780 -0.944680 2.612354 2.411371 6.111370 -3.538671 1.421072 2.321915 -1.280289 0.791727 -0.366565 -4.806973 1.531185 0.647228 1.915315 4.474466 -0.494605 -1.260802 1.297259 -1.102237 0.863159 -2.520676 1.423189 -2.844515 -1.015318 -2.649627 0.092213 -0.705608 -1.136810 -0.959932 -0.764469 4.188333 -3.634743 -3.395259 5.815201 -1.714699 0.555732 -4.878070 4.520926 -1.839651 1.595858 -1.058322 -0.337800 -0.233312 0.158865 -2.591595 0.583960 1.663053 -1.258070 1.723305 6.027404 0.935839 -0.129231 -0.330644 2.990630 -1.503762 2.394869 -2.531986 4.821576 -0.288177 -1.767518 -0.699566 -1.643143 0.056291 -2.787615 0.357448 3.238331 2.377950 0.753950 1.472026 1.971356 3.342816 -2.085318 4.656109 0.362958 0.544818 -1.565848 -0.322995 1.442570 0.812791 -1.809999 2.738783 -4.109711 -4.194013 -4.650979 -4.197750 -0.360523 -1.124906 2.073474 -1.369358 -0.870973 -3.482883 -3.853500 4.090871 -1.527286 1.566039 2.552962 1.986179 2.273990 4.023544 -1.575806 1.407879 -1.280842 0.350276 -0.377948 -2.415017 -1.481854 3.462681 -1.431325 0.891297 3.734526 -0.672415 1.974132 -0.687922 1.919208 -2.327454 4.820600 1.559716 -0.572998 2.963621 2.182619 4.512253 0.357732 -2.259564 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/bfs.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/bfs.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.351616 -1.075508 1.912380 1.659036 0.305984 0.788265 0.483425 -1.350759 1.814974 1.205004 -0.103514 0.376660 -1.206879 0.540920 -0.504145 1.220381 -1.068831 -1.244437 -0.288781 -1.074939 -0.874827 -1.225376 0.384812 -0.043965 0.620208 -0.233546 -0.952840 -0.155338 -1.472003 -1.572047 0.899134 -0.457618 0.674147 -0.615272 0.061759 -3.087803 1.529991 1.107659 -0.551355 -1.545767 0.226318 -0.888916 0.099049 -0.092267 0.168619 0.305499 0.013699 0.561328 0.993967 0.537045 0.998280 0.427532 0.155831 2.945548 -1.206307 1.299592 0.568391 0.134739 -0.357099 0.747392 0.426305 0.382976 0.953065 1.064199 -0.357098 -0.921042 -0.139067 -0.371116 -1.487269 1.265320 -0.008696 -0.597058 -1.081076 -0.342430 -0.822960 -0.532346 -1.784740 0.877430 2.246270 -1.162118 1.341934 0.500429 0.948630 0.084560 1.007544 -0.203424 1.796781 0.417565 -0.985928 -0.228764 -0.789231 -0.163834 0.129050 0.168479 -0.610311 -1.566899 0.710526 -0.900405 -1.697879 0.801102 0.374106 0.136420 -1.532337 -0.259693 1.037114 0.469121 -0.917327 -1.742569 -0.939912 0.602973 -0.179151 -0.663420 0.274491 -1.043262 -0.298959 -0.414786 -1.573666 -0.500837 0.345758 -0.955561 -1.116225 1.422282 -0.586683 0.136607 -0.117275 0.402237 -0.394472 1.044646 -0.116110 1.151097 0.215317 0.227795 -2.326376 0.384554 0.609176 0.683520 -0.108371 0.325595 -0.521296 0.422485 -0.992795 0.591629 -0.530744 0.846788 1.419752 -0.413886 -1.038002 -0.555364 0.469751 -1.574189 0.621441 -1.161593 -0.483093 -0.249959 1.309103 0.979329 0.949575 1.551303 -1.355943 1.044598 -0.361372 0.215862 1.051304 -0.080771 0.834245 -0.742987 -1.236059 0.511613 0.967780 0.088514 0.340668 -0.614824 -0.043319 -1.097497 -0.570998 0.311645 0.498251 -0.368727 1.149036 0.701644 2.293151 -2.061118 0.647973 0.748388 -0.221536 0.422413 -0.319245 -1.731765 0.650346 0.400609 0.251359 1.322984 -0.196323 -0.969582 0.312719 -0.245873 0.577534 -0.930717 0.299509 -1.096112 -0.560023 -0.852299 0.304430 -0.673105 -0.532193 -0.420134 -0.194915 1.637318 -0.896430 -1.283301 1.822664 -0.689768 0.407348 -1.935456 1.784985 -0.869492 0.580376 -0.877005 -0.027441 -0.350015 1.089350 -0.606873 0.457332 0.815523 -0.738190 0.860649 2.070675 0.430436 0.602250 0.183461 1.218332 -0.198497 0.282874 -0.701534 1.697711 -0.223169 -0.488895 -0.064758 -0.770910 0.531253 -0.425873 0.220258 1.022821 1.248076 -0.112263 0.602703 1.033741 0.863232 -0.825829 1.144131 -0.040681 0.660261 -0.693832 0.025942 0.073181 -0.001994 -0.609055 0.777321 -1.626602 -1.421050 -1.015832 -1.281019 -0.063195 0.311523 0.187839 -0.164085 0.033984 -1.643040 -0.911891 1.140346 -0.699036 0.625819 0.713458 0.802688 1.045412 1.659797 -0.628683 -0.204458 -0.397999 -0.389877 -0.498486 -0.724544 -0.587580 1.188565 -0.925526 0.782056 1.007764 -0.224706 0.312639 0.142325 0.965790 -0.803902 1.870092 0.855774 -0.156211 1.065372 1.150586 2.514405 -0.114639 -0.889306 -PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/bfs.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/bfs.cpp__std::__new_allocator >::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/bfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.195939 -1.545373 3.052690 2.565653 -0.222743 1.190906 0.334229 -2.294599 2.559335 0.419196 -0.096315 0.555037 -1.807796 0.915758 -1.175914 1.308289 -2.225107 -1.830324 -0.908706 -1.864470 -1.379848 -1.708544 0.535658 0.546618 0.949754 0.164597 -1.600076 0.003295 -2.339877 -1.097186 1.851625 -0.512770 1.120690 -0.457766 0.344381 -5.159698 2.224571 1.682900 -0.775357 -2.251260 0.405028 -1.638737 0.057380 -0.924190 -0.607448 0.060731 -0.426337 0.918050 1.565697 0.224950 0.692256 1.056965 -0.248404 4.688773 -1.824297 1.848512 0.831476 0.219610 -0.596317 0.847207 0.582438 0.877087 1.327981 1.303707 -0.635425 -1.695891 -0.170813 -0.919600 -2.092742 2.077474 0.075046 -0.780633 -1.598580 -0.619537 -2.064658 -0.831315 -1.557968 1.893311 3.184564 -2.174021 1.676204 0.324637 1.122775 0.233795 1.585613 -0.232944 2.852497 0.630734 -1.077671 -0.195698 -1.718876 0.023791 0.293476 -0.392643 -1.176519 -3.044597 1.165553 -2.490805 -2.648010 0.964933 0.837849 -0.145180 -1.975981 -0.630637 1.390256 0.566784 -1.410374 -2.427624 -1.022115 1.229317 0.113501 -0.938835 0.454741 -0.957208 -0.135119 -1.310879 -2.566781 -0.316523 0.508385 -1.058662 -1.106134 2.317947 -1.219356 -0.080502 -0.198088 0.588792 -0.826979 2.000874 -0.555972 1.308707 -0.039816 0.392907 -2.182683 0.263087 0.682188 1.709923 -0.411118 0.154808 -0.777323 0.717219 -1.592132 0.362225 -0.689924 0.870861 1.261823 -0.694275 -1.577333 -0.788040 0.066616 -2.847332 0.419873 -1.718068 -1.177681 0.604550 1.924394 2.204836 1.416445 2.342357 -1.645768 1.435754 -0.291332 0.034613 1.788757 -0.125119 1.238705 -1.171572 -1.996886 0.994645 0.415064 0.620787 0.404480 -0.641477 -0.193718 -1.747228 -0.993526 0.418664 1.134504 -0.126331 1.894129 1.389352 2.072857 -3.236951 1.137402 1.120202 -0.648408 0.679411 -0.461642 -2.464914 0.820716 0.720631 0.017681 2.120662 -0.470442 -1.290649 0.446626 -0.254853 1.112693 -1.561930 0.135857 -1.580156 -0.767885 -1.783814 0.387532 -0.922448 -0.701311 -1.109620 -1.188045 2.606141 -2.413193 -2.059580 3.149967 -0.456979 1.406611 -2.976081 1.851027 -1.238606 1.817091 -0.833175 0.018997 -0.280575 0.781409 -1.369398 0.899447 1.206674 -1.235615 0.830483 2.984280 0.684742 0.884232 0.125495 1.978334 -0.407021 0.992307 -1.331773 2.645618 -0.292332 -1.169066 0.179615 -1.152430 0.356187 -0.880794 0.849215 1.976555 1.873846 0.957914 1.140427 1.745924 1.426653 -1.203225 1.361192 -0.336056 0.448162 -1.055942 -0.069171 0.391185 0.555625 -0.794637 0.910608 -2.567344 -3.023443 -2.648679 -2.099495 0.301449 -0.477242 0.113836 -0.360075 -0.270856 -2.426458 -1.572974 1.298652 -1.175777 1.791573 1.239297 1.212805 1.676046 2.735611 -1.478318 -0.011903 0.307326 0.008070 -0.435219 -0.681085 -1.827022 2.126966 -1.309741 1.062561 2.349287 -0.476391 0.911421 0.238857 1.549538 -1.282345 2.937442 1.147017 -0.937238 1.612231 1.758567 2.866396 0.882810 -1.442561 -PE-benchmarks/bfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.561600 -3.242904 6.218073 5.399274 0.035662 2.551137 1.057692 -4.893150 5.178705 1.498221 0.072411 1.266915 -3.852132 1.886549 -2.582325 2.902998 -3.946097 -3.838627 -2.065472 -3.961261 -2.726655 -3.487522 1.386696 0.985989 2.158824 -0.325053 -3.461258 -0.441919 -5.365421 -2.890806 3.629005 -0.844222 2.455680 -1.561210 0.253677 -10.354507 4.613142 3.970003 -1.629786 -4.632069 1.125030 -3.255305 -0.145214 -1.371871 -1.054023 0.152361 -1.140689 1.108961 3.223813 0.700486 2.083466 2.590998 -0.326213 9.467332 -3.907151 4.018507 1.623625 0.631298 -1.296386 1.942406 1.152139 2.073108 2.877571 2.566919 -1.150131 -3.541560 -0.422538 -1.505640 -4.553551 4.202043 -0.061490 -1.949890 -3.107316 -1.130898 -4.097174 -1.645101 -2.392995 3.454433 6.410218 -4.181463 3.528606 0.530720 1.876628 0.139384 3.141388 -0.627805 5.491846 1.296032 -1.949336 -0.784711 -3.440409 0.298657 0.450110 0.032721 -2.703142 -5.729524 2.756588 -4.547739 -5.562900 1.904886 1.772484 -0.515791 -4.614154 -1.208108 2.556748 1.255987 -2.819508 -5.099968 -2.479330 2.743796 0.518500 -2.214168 0.689630 -2.395046 -0.430824 -2.527973 -5.146296 -0.664676 0.994052 -2.295549 -2.971015 4.629022 -2.554082 -0.161917 -0.435320 1.478987 -1.769250 3.618506 -1.358213 3.017854 0.336314 0.864956 -5.009480 0.030791 1.456203 3.576706 -0.971311 0.479793 -1.908427 1.428248 -3.105070 1.240980 -1.435146 1.900888 3.085995 -1.384851 -3.120408 -1.380178 0.708409 -5.747336 0.841085 -3.538919 -2.190097 0.823243 3.940764 4.010443 2.854934 5.298399 -3.317564 3.012681 -0.251413 -0.194993 3.743609 -0.704306 2.442291 -2.424064 -4.506922 2.046107 1.150300 1.192305 0.677539 -0.784854 -0.534398 -3.535140 -2.257565 0.608548 1.939713 -0.513389 3.892394 2.891530 4.856365 -6.783236 2.433111 2.248665 -1.580640 1.625720 -1.177364 -5.304211 1.427355 1.517790 -0.009992 4.789733 -0.930145 -2.844893 1.152431 -0.662925 2.245876 -3.315265 0.840247 -3.513186 -1.544170 -3.658518 0.063514 -1.574656 -1.494409 -2.154528 -2.216606 5.374264 -4.361071 -4.531509 6.396487 -0.839149 2.188647 -6.612204 4.070203 -2.493860 3.206275 -1.874775 0.165662 -0.620872 2.302426 -2.983526 1.742933 2.499302 -2.884792 2.205808 6.708226 1.217885 1.645953 -0.001259 3.991835 -0.831327 2.057966 -2.972267 5.794457 -0.496589 -2.655515 0.176319 -2.407290 0.778947 -2.119059 1.452191 3.846856 3.902489 1.531902 1.948810 3.703036 3.254937 -2.431011 3.355477 -0.465424 0.935313 -1.964936 -0.066442 0.969720 0.939844 -1.573154 2.217230 -5.228701 -6.018643 -4.680274 -4.926396 1.069117 -0.782154 0.439184 -0.851946 -0.729112 -5.277280 -3.493696 2.418343 -2.412889 3.867083 2.682544 2.718402 3.309283 5.515051 -3.018499 0.474583 0.143879 -0.014968 -0.863243 -2.088873 -3.057020 4.207107 -2.406700 2.181293 4.515824 -0.670881 2.129566 0.412888 2.838820 -2.617663 6.167747 2.227047 -1.489994 3.663945 3.328853 6.169199 1.252068 -2.863034 -PE-benchmarks/bfs.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/bfs.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/bfs.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::_M_erase(std::_List_iterator) = 0.245525 -2.288629 5.292129 4.314216 -0.221122 1.645998 1.051677 -3.980107 3.968123 1.653253 -0.401028 0.550513 -2.989815 1.405745 -2.501378 2.680438 -3.390650 -2.627760 -1.741147 -3.086371 -1.706229 -2.689608 1.846393 0.296486 2.105172 0.219250 -2.348458 -0.458585 -3.177615 -3.492716 2.746423 -0.665729 1.757460 -1.158630 -0.133653 -6.926321 3.955640 3.185474 -1.481742 -3.467815 1.235017 -1.640935 -0.906133 -0.529679 -0.894214 0.338008 -0.989125 1.730701 2.374156 1.172929 1.906040 1.703721 0.906137 7.080868 -2.804280 3.003118 1.234859 0.692614 -0.635692 1.756432 0.933539 1.832745 1.576573 2.219992 0.233750 -2.740389 -0.335985 -1.036987 -3.439316 3.564829 -0.773778 -1.540114 -2.442260 -0.862424 -2.724840 -0.501019 -3.098331 2.849955 5.052642 -3.013774 2.542076 0.565104 0.722432 -0.441064 1.159371 -0.456928 3.380739 1.180067 -0.893678 -0.973413 -1.684242 -0.138531 0.772902 -0.611971 -2.258012 -5.255841 2.698839 -3.712933 -3.990333 1.240126 1.793162 -1.058524 -2.190503 -0.735972 1.435234 0.837313 -1.931500 -3.537590 -1.456573 1.851089 0.629908 -1.338150 0.403286 -1.079618 -0.273945 -0.809928 -3.980949 -0.371113 0.156920 -1.767793 -1.649037 2.953452 -0.948914 -0.168092 -0.117601 1.379030 -1.123743 2.638647 -0.848050 2.990837 0.318784 1.956927 -2.664666 0.741455 1.795538 1.381048 -0.420376 0.711185 -1.448596 1.230157 -2.360421 1.187910 -1.588562 0.889812 2.434208 -1.359400 -2.429466 -0.874488 -0.081100 -4.431053 0.635244 -2.794162 -2.172941 0.597678 2.937075 2.711915 2.287065 3.874970 -3.231855 1.595500 -0.143057 -0.197985 2.269354 -0.683900 1.692444 -1.548858 -3.507104 1.313022 1.045062 0.994019 0.232434 -0.498494 -0.473898 -2.822976 -1.057625 0.997492 1.391593 -1.072473 2.509514 2.433531 3.501399 -4.087062 1.649371 2.233950 -1.284221 0.863710 -0.516463 -4.566690 1.284369 0.919472 0.945526 3.368260 -0.497510 -1.304421 1.298535 -1.218856 1.239683 -2.483825 0.556591 -2.639388 -1.177148 -2.800592 0.641010 -0.885637 -1.037935 -1.138723 -1.267267 3.848068 -3.676219 -2.674846 5.057454 -0.654684 0.886550 -4.207400 3.698491 -1.711069 2.089527 -0.745750 0.109536 -0.335996 1.102777 -2.391190 0.544014 1.568556 -1.613215 1.963009 5.165664 1.017466 0.618847 -0.101902 3.347313 -1.262934 1.954006 -2.461561 4.088678 -0.359954 -2.343316 -0.134717 -1.684380 0.032539 -2.283690 1.157908 3.263248 2.461585 1.015988 1.822841 2.002209 3.091478 -1.725128 3.237824 -0.074407 0.763034 -1.563734 -0.095662 1.186353 0.651543 -1.838908 2.289083 -4.068065 -4.540209 -4.237464 -3.483731 0.362946 -1.619579 1.169215 -1.205103 -0.626068 -3.606229 -3.241671 2.615536 -1.725479 1.572980 2.385675 1.873797 2.266210 4.198431 -1.935863 1.095439 -0.341490 0.554966 -0.398759 -1.956803 -1.816323 3.208893 -1.686214 1.063730 3.640802 -0.680004 1.727837 -0.156828 1.816399 -2.338496 4.444831 1.678367 -0.732932 2.953698 2.411413 4.445909 1.170728 -2.101660 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_dec_size(unsigned long) = -0.457206 -0.715100 0.591446 0.560965 0.215764 0.385727 0.497440 -0.086018 0.558215 0.693257 -0.011275 0.240924 -0.617652 -0.159237 0.252500 0.233452 -0.130714 -0.516878 0.154202 -0.128141 -0.112470 -0.515447 -0.229971 0.310185 0.134722 -0.240187 -0.152610 -0.213607 -0.761598 -0.447794 0.041853 -0.154922 0.350029 -0.171062 0.188123 -1.131059 0.325581 0.558568 -0.083237 -0.805548 -0.021198 -0.289790 0.342018 0.060213 0.060740 0.252634 0.391975 0.105632 0.118041 0.206210 0.195404 -0.208601 0.234415 0.951857 -0.098907 0.555256 0.494633 -0.013087 0.031444 0.093424 0.185792 -0.246858 0.431400 0.242883 -0.290358 -0.049484 -0.135231 -0.073233 -0.619730 0.151674 0.142888 -0.145288 -0.446095 -0.189113 -0.438945 -0.358009 -0.751666 0.190879 0.898038 -0.490625 0.858351 0.489830 0.582990 0.183593 0.543327 0.021726 0.474415 0.120111 -0.556876 0.258990 -0.521596 -0.280937 -0.098132 0.093168 -0.192032 -0.501008 0.216068 -0.126370 -0.722202 0.545811 -0.155733 0.140089 -0.635471 -0.159356 0.353665 0.459891 -0.502520 -0.757667 -0.581052 0.231159 -0.195287 -0.252616 0.241279 -0.211755 -0.118944 -0.341316 -0.483260 -0.230565 0.440677 -0.545098 -0.359220 0.652031 -0.359439 0.561041 -0.000908 -0.000225 -0.057245 0.418357 0.409286 0.236876 0.117408 -0.410522 -1.157937 -0.158470 0.035870 0.496355 0.066891 0.052004 0.086811 0.216420 0.102301 0.407684 0.154645 0.435619 0.470292 -0.053186 -0.195524 -0.529357 0.069709 -0.374958 0.340753 -0.281078 0.185757 0.082204 0.458554 0.103478 0.079650 0.575726 -0.386645 0.321666 -0.245343 -0.000655 0.097320 0.139842 0.308112 -0.229120 -0.396876 0.150815 0.673809 0.217265 0.234511 -0.349829 0.062428 -0.164855 -0.267949 -0.152465 0.103412 -0.220692 0.566878 0.266613 0.814981 -0.600995 0.022845 -0.046350 0.038549 0.201285 -0.178002 -0.662351 0.326138 0.090575 -0.214559 0.377316 -0.129683 -0.379887 0.373544 -0.163567 0.081046 -0.377115 0.253998 -0.490486 -0.215699 -0.323636 0.126456 -0.473073 -0.349529 -0.335490 0.122754 0.686908 0.061121 -0.372172 0.186676 -0.055110 0.147212 -0.690018 0.954717 -0.243835 0.297305 -0.401401 -0.208679 -0.067937 0.613804 0.185734 -0.216179 0.336934 -0.394307 0.290576 0.525522 0.108042 0.098228 0.321954 0.341768 0.058403 -0.210112 -0.306824 0.381873 -0.177866 -0.008926 0.042301 -0.272692 0.643440 0.237989 -0.117230 0.191354 0.483064 -0.306935 0.110452 0.473216 -0.093546 -0.248190 0.134987 0.111747 0.679980 -0.329028 0.141496 -0.449361 0.084777 -0.025205 0.270612 -0.630425 -0.279152 0.007730 -0.343610 -0.291639 0.521546 -0.032969 0.222691 0.137787 -0.733911 -0.301070 0.313254 -0.255746 -0.105331 0.187299 0.316317 0.629448 0.455353 0.020529 -0.375793 0.027598 -0.246451 -0.383688 -0.192948 -0.001910 0.149519 -0.589592 0.476524 0.154923 -0.015708 0.053455 -0.031922 0.510247 -0.420913 0.808300 0.426403 -0.257556 0.228263 0.676102 1.068059 -0.554546 -0.331509 -PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -25.407351 -38.017121 27.687276 26.377306 10.647408 25.595965 17.173791 -2.743924 -1.894364 25.271393 -10.626362 29.723251 -11.059551 -15.045176 -8.881753 -4.790577 5.971889 -18.079643 6.301981 -2.614485 4.557480 -11.382672 -34.770400 38.841446 2.111734 -17.105714 -5.469625 -6.355410 -54.087289 -23.777191 -14.345473 2.932098 11.469600 -13.463768 10.670362 -26.882837 7.457674 42.246514 1.775945 -30.803177 -0.487223 -5.618176 -10.563835 20.461998 -15.166734 10.073157 11.930197 -17.997987 -12.197530 5.571041 19.690268 -3.328319 28.455622 34.400485 14.381909 37.225607 32.727444 -0.223551 22.503920 2.862943 6.632519 -10.496984 13.569940 7.053895 -2.929337 2.017516 -7.762458 13.951071 -9.323651 -5.045143 8.867821 -24.589659 -6.036958 -5.905864 -23.068349 -12.068744 -11.770042 -10.472488 31.110291 -4.892337 51.589435 24.715811 26.626591 -6.318530 28.912955 0.531909 22.533271 9.009712 -16.930958 14.031756 -20.613337 6.344124 -2.440710 30.069524 -33.905811 4.751512 17.549766 -25.276403 -33.476986 27.028744 -7.819927 -11.328985 -2.834411 3.320965 1.438248 3.520799 -14.975663 -25.906211 -26.272971 28.454182 -12.554634 -17.224071 -4.940324 -1.964003 10.132024 3.883267 -11.787535 4.147293 34.949239 -14.823804 -16.511514 25.333797 6.571476 26.409048 -5.253792 -1.184915 1.005609 -3.516318 15.268427 2.687468 -11.855517 -24.027375 -54.247301 0.003716 -0.744516 -13.847631 -16.038102 -7.047048 22.533628 14.994106 32.070892 37.439672 -1.816154 25.268877 7.728458 3.936129 -4.485326 -34.458255 -7.876628 -5.335350 0.413355 -5.834345 -23.728115 -4.795578 15.351809 -5.002257 -5.856491 2.741678 9.105255 20.534032 2.783717 -1.416013 -5.997900 -29.709759 4.129403 -10.319401 -20.810961 15.615240 28.946339 17.286254 9.237725 -4.222546 -1.637777 4.278305 -15.654327 4.002776 -0.013739 4.661785 37.407643 16.944769 65.297506 -8.575606 -2.078555 -16.544789 -6.657050 5.730432 -11.021542 -22.668721 2.220574 7.613048 -11.322484 38.761081 -1.844293 -3.775240 14.708064 -2.830906 2.142086 -22.866549 39.296768 -15.886963 -2.214246 -3.949974 -14.074886 -15.695100 -10.257275 -27.677356 -10.497423 30.148308 -30.628150 -22.724458 -1.551451 3.932614 -7.634819 -29.245667 30.816812 -9.240050 24.173488 -5.538317 -14.890087 -2.159108 24.397042 2.689432 6.375952 12.668167 -36.955106 20.667527 14.141820 -0.789198 4.687725 10.662890 5.244135 -8.360125 -13.541663 -21.054074 15.321826 4.957583 -8.042183 -7.646573 -10.217567 19.377300 10.502884 -4.262308 -14.358996 17.515859 -17.079355 -22.810663 24.790532 -14.081129 -8.334846 -2.639168 1.805099 18.616136 -14.607333 -4.823301 -23.497026 -4.835793 16.044677 -0.782726 -29.358468 3.218979 -22.324038 -17.304457 -4.936768 10.549874 13.053889 20.761618 1.552161 -43.589429 -27.875864 42.609538 -9.984802 -4.285622 19.303236 20.667891 26.051873 3.443885 20.211500 -4.024633 -13.888353 3.582651 -13.858711 -4.569784 3.600210 2.603807 -15.731846 30.842779 1.243716 6.852912 15.846426 17.189821 0.092446 -18.980633 33.070835 16.708106 -24.785889 -1.061386 16.914223 17.000041 -47.537614 -14.659684 -PE-benchmarks/boolean-parenthesization-problem.cpp__main = -4.397468 -8.783498 7.744809 7.137233 1.441933 5.596288 3.485907 -1.387368 0.402697 4.768420 -2.830479 6.864215 -3.129933 -2.465648 -2.576854 -0.281421 -0.678875 -4.382071 0.881030 -0.946461 0.507723 -2.824020 -6.603869 8.633413 1.315338 -1.601882 -1.876786 -1.585007 -11.818751 -5.097213 -2.016293 0.352508 3.088905 -1.551467 2.550067 -7.546384 2.385102 9.555696 -0.038727 -7.883528 0.460610 -1.686993 -2.455223 3.243231 -3.494787 2.192872 2.429678 -2.235572 -2.134668 1.489245 3.209649 -0.263380 6.673185 8.996821 2.837879 8.389937 7.912656 0.081319 4.706988 0.293091 1.923810 -1.801776 3.102993 1.938154 -0.475719 -0.693238 -2.209058 1.973663 -2.610708 -0.073684 1.772189 -4.765568 -2.355182 -1.836192 -5.642789 -2.317118 -4.039652 -0.298370 8.056031 -2.496813 11.261633 5.292282 5.758429 -1.403522 6.156578 0.319825 5.119535 2.570758 -3.457402 2.838408 -5.191867 0.687930 -0.018057 4.803109 -7.805367 -1.488689 4.454070 -7.245484 -8.089801 5.977636 -0.918178 -2.855264 0.056629 0.459917 0.594228 1.400751 -3.653601 -5.938041 -5.153775 6.044791 -2.119646 -4.002514 -1.057394 0.392336 2.002464 0.548544 -3.935041 1.261421 7.400525 -3.477532 -2.540388 6.019085 1.501414 5.615000 -1.383193 -0.137366 -0.071987 0.769726 3.379250 1.024078 -2.100516 -4.142612 -10.105462 1.167012 0.593427 -2.197163 -4.130241 -1.416463 4.446128 3.538943 6.295484 7.279811 -0.743420 5.304879 1.855387 0.182831 -2.031217 -8.039366 -2.586123 -2.661280 0.014944 -1.961421 -5.415767 0.024442 4.055446 0.016829 -0.496642 1.388076 0.729710 4.120423 0.762335 -0.044472 -0.722109 -5.231865 1.275538 -2.663422 -5.266344 3.895744 5.891131 3.856289 2.038900 -0.869155 -0.225138 0.046018 -3.274155 1.839277 0.981511 0.753631 8.748766 4.348286 13.179626 -2.114922 -0.443684 -2.901131 -1.889520 1.073832 -2.208699 -6.117856 1.338694 1.594763 -1.537063 8.879719 -0.537606 -0.799567 3.747676 -0.803250 0.598669 -5.179714 8.129699 -4.034743 -1.110074 -1.877392 -1.903679 -3.401496 -2.379066 -6.335248 -2.705825 7.749635 -8.057593 -4.840928 0.822575 0.666888 -0.877951 -6.960341 7.065982 -2.485452 6.099149 -0.640731 -3.452850 -0.203446 3.760824 -0.434040 0.979821 3.288584 -7.724055 4.088399 3.782802 0.295506 0.660277 2.428520 1.957049 -2.171534 -1.781817 -4.966892 3.989782 0.822873 -2.156275 -1.446039 -2.419765 3.853872 1.429819 -0.536345 -1.250862 3.854041 -2.154646 -3.669476 5.362658 -1.859804 -2.608638 0.097428 0.078714 4.338160 -3.787363 -1.246387 -4.796895 -0.333482 2.920534 0.571646 -7.431443 -1.309079 -6.749081 -4.212291 -1.346380 0.900769 3.179793 3.698343 -0.083982 -9.855137 -6.989460 8.942773 -2.570166 -0.615671 4.969895 4.537755 6.374480 1.795749 3.448677 -0.622105 -2.428784 1.426036 -2.712597 -0.856308 -0.513708 1.484512 -3.593734 6.312817 2.241804 0.895102 3.970563 3.187200 1.222843 -4.600906 8.479685 4.070005 -6.439079 0.260304 4.379008 4.198518 -9.025692 -3.988108 -PE-benchmarks/coin-change.cpp__count(int*, int, int) = -6.092379 -10.325883 8.228360 7.829699 3.519647 7.127992 4.803037 -2.213819 2.795000 8.435486 -3.146172 7.198795 -4.706100 -3.769747 -0.237191 1.025806 -0.142658 -6.237793 2.257767 -0.518502 0.682179 -5.362408 -6.302197 8.719559 1.376991 -1.496413 -2.326931 -0.423641 -13.512742 -10.456217 -1.610758 -0.072299 4.188505 -1.790797 2.833370 -9.585757 5.000475 11.403513 0.224690 -10.759848 -0.204014 -1.846552 -2.336955 4.192541 -1.397557 4.572633 4.031912 -1.217559 -2.055110 2.711451 3.690012 -1.625046 6.165285 7.919508 2.782422 10.253859 9.016151 -0.001661 4.391674 0.989919 2.233619 -2.471379 5.114012 4.062854 -2.751250 -0.114968 -1.099538 2.985446 -6.039105 0.624837 2.812679 -5.542441 -3.578417 -1.577905 -5.101665 -2.324129 -1.299680 -0.897206 11.023857 -1.320833 14.234705 6.684610 7.760377 -1.828574 7.581980 -0.864915 6.439027 3.081262 -6.439392 1.695082 -7.603652 -2.475797 -0.673867 6.749754 -7.125723 1.881976 3.801660 -5.577266 -9.624256 6.436731 -2.122050 -2.343287 -4.640683 0.976339 3.715186 2.761758 -3.137784 -8.330939 -6.765788 6.154513 -5.299329 -5.225915 -1.571968 -0.385821 0.440027 1.261543 -4.463683 -0.677904 8.667106 -5.414981 -4.204637 6.997061 -0.885852 6.883297 -1.808115 -0.479540 0.474365 0.273921 4.911009 1.872284 1.111373 -6.235738 -13.420481 0.980510 0.083260 -0.554662 -3.727559 -1.447931 4.832703 4.062446 5.827729 8.471532 -1.727404 6.511328 4.630812 0.644425 -2.480768 -9.095933 -1.492374 -3.214930 2.243247 -2.825728 -3.221152 -0.860518 5.549101 -1.968623 -0.207639 3.757315 -2.789961 5.714292 -0.098184 1.310962 -0.604393 -3.951747 1.820916 -3.324520 -6.269098 5.086937 8.698866 3.088241 2.637611 -2.413038 -0.194431 -0.397470 -6.046556 2.396939 -0.628512 1.337128 9.376205 4.039929 16.343527 -3.973041 -0.359288 -2.857312 -0.772989 1.634456 -2.392448 -8.057971 3.128277 1.398365 0.964635 11.016084 -0.847839 -3.030853 3.656589 0.344185 0.476104 -6.566593 9.938992 -6.266814 -0.523865 -1.643379 -2.805769 -4.272605 -3.966164 -6.467804 -0.078784 9.463712 -3.549741 -8.638362 1.431200 -1.929640 0.292911 -10.293172 7.397017 -3.642344 4.614539 -2.348767 -3.067291 -0.717292 4.011506 0.657207 -0.419328 4.191276 -7.982636 6.326936 5.337009 0.268612 0.720148 3.331329 1.307786 -1.518010 -3.404685 -5.538371 4.014410 0.428480 -0.981844 -1.990978 -3.307979 6.694694 2.194553 -3.074728 -1.269788 5.968622 -4.579322 -3.075134 5.993700 -2.364063 -3.605513 1.665034 1.606075 5.967862 -3.843468 -1.176511 -5.837445 -1.227060 2.670660 2.755239 -8.864335 -1.609903 -2.882911 -7.776296 -2.983717 3.299463 3.911846 4.819139 0.897094 -11.594545 -6.424776 8.709628 -2.151966 2.730798 4.887600 5.777754 6.941890 2.787344 3.339262 -2.121305 -3.787993 -0.493447 -5.345184 -2.849001 0.573106 2.108088 -4.135240 8.333727 1.830360 0.802986 3.260574 -0.289883 3.277353 -5.414133 10.433951 5.577772 -6.331005 0.203026 2.529627 8.368241 -11.442936 -4.977883 -PE-benchmarks/coin-change.cpp__main = -1.194669 -3.000480 3.061191 2.721962 0.557162 1.776207 1.322721 -0.878262 1.274151 1.758589 -0.998833 2.003614 -1.678773 -0.462446 -0.492235 0.735944 -1.038010 -2.078293 0.405459 -0.395703 -0.172589 -1.574368 -1.077629 2.123143 0.801506 0.243896 -1.016719 -0.422533 -3.681002 -2.469230 0.310399 -0.304104 1.416087 -0.081910 0.693187 -3.930925 1.659309 3.000384 -0.249275 -3.386570 0.251944 -0.871685 -0.515089 0.290397 -0.491065 1.070437 1.074286 0.491672 -0.155263 0.884822 0.537307 -0.168494 1.501381 3.345846 0.287462 2.750544 2.696561 0.086886 0.843081 0.170874 0.888266 -0.472452 1.470586 1.318496 -0.680320 -0.606986 -0.598822 -0.021787 -1.954399 0.681844 0.700403 -0.995989 -1.433176 -0.537904 -1.724182 -0.620574 -1.218132 0.733350 3.634285 -1.304578 3.798678 1.637581 2.213246 -0.357800 1.879289 -0.008392 1.797691 1.079214 -1.644623 0.282849 -2.370525 -0.769179 -0.039802 0.964744 -1.910904 -1.042419 1.403141 -1.986866 -2.907419 1.789882 -0.175889 -0.590415 -1.120340 0.089466 1.121422 1.202912 -1.280154 -2.427774 -1.720113 1.416501 -0.973022 -1.434376 -0.141605 0.104820 -0.083529 -0.245317 -1.996185 -0.138253 2.123650 -1.682288 -0.754144 2.149900 -0.496899 1.727067 -0.545695 -0.041061 -0.153102 1.062410 1.319155 0.701449 0.482490 -1.202501 -3.282450 0.538638 0.522349 0.856360 -1.181895 -0.263184 0.902180 1.174410 1.033949 1.586151 -0.441170 1.632922 1.427834 -0.285176 -1.300608 -2.626053 -0.455570 -1.621769 0.588630 -1.286929 -0.800311 0.445015 1.880804 0.232797 0.433905 1.877352 -1.376542 1.672390 -0.104152 0.336742 0.218202 -0.473890 0.786327 -1.084006 -2.004389 1.493978 2.080210 0.915009 0.755758 -0.765846 0.111126 -0.787809 -1.608381 0.911802 0.450828 0.005104 2.639648 1.314088 3.627741 -1.618037 -0.058330 -0.303156 -0.399170 0.359945 -0.478235 -2.746970 1.207499 0.352058 0.315494 2.893959 -0.238185 -1.095641 1.252127 -0.144053 0.215228 -1.758586 2.183473 -1.877110 -0.523949 -1.013568 -0.075559 -1.219606 -1.093877 -1.779100 -0.331893 3.082662 -1.603288 -2.312866 0.900953 -0.479718 0.529010 -3.244353 2.382756 -1.236311 1.725458 -0.506648 -0.828755 -0.114726 0.729586 -0.285886 -0.210755 1.404682 -1.929777 1.440877 2.051083 0.376779 0.137513 0.961740 0.992086 -0.476866 -0.325799 -1.487927 1.431785 -0.132857 -0.671864 -0.283368 -1.002877 1.597838 0.189301 -0.396603 0.781186 1.681715 -0.404222 0.103307 1.710414 0.081465 -1.362326 0.635934 0.221752 1.989145 -1.283888 -0.289669 -1.411598 0.156800 0.286864 1.030312 -2.825217 -1.671031 -1.718362 -2.423457 -0.778761 0.331151 1.020097 0.702330 0.119386 -3.348073 -1.999754 2.019639 -0.886312 1.068121 1.707161 1.515202 2.241978 1.331257 0.118528 -0.632034 -0.485120 0.235765 -1.214366 -0.618864 -0.583609 0.951034 -1.482137 1.934389 1.475184 -0.083399 0.959553 -0.143289 1.676593 -1.598371 3.530149 1.716122 -2.132315 0.485867 1.264830 2.700306 -2.112803 -1.670610 -PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.876546 -1.017857 0.920345 0.733667 0.540435 0.634457 0.349080 0.054689 0.575886 1.075504 -0.482711 0.647732 -0.617249 -0.310051 0.309333 0.261322 -0.099229 -0.917265 0.427901 0.094490 -0.105550 -0.629093 -0.480552 0.505801 0.207840 -0.060184 -0.421066 0.010796 -1.198241 -1.359901 -0.239417 -0.154084 0.488102 -0.232424 0.288753 -1.258429 0.546521 0.885417 0.013814 -1.278893 -0.001211 -0.244405 0.007511 0.385625 0.224524 0.685832 0.871230 -0.018112 -0.083856 0.394849 0.250419 -0.505317 0.157575 0.882624 0.243397 0.901965 0.910628 -0.124758 0.099807 0.182085 0.262892 -0.534486 0.628328 0.627047 -0.593548 0.099238 0.142365 0.113560 -0.776396 0.257336 0.236275 -0.468616 -0.258291 -0.340096 -0.356253 -0.197586 0.334992 0.086172 1.315188 -0.224730 1.378366 0.650891 1.120715 -0.051378 0.672135 -0.228331 0.757463 0.301083 -0.894862 -0.117378 -0.707972 -0.652606 -0.317413 0.977627 -0.309534 0.627693 0.320387 -0.433120 -0.944672 0.597427 -0.342818 0.136083 -1.137775 0.227690 0.819613 0.648739 -0.156808 -0.867718 -0.865081 0.311885 -0.820306 -0.418219 -0.060853 -0.252549 -0.374887 0.158720 -0.645066 -0.389715 0.773221 -0.795804 -0.598152 0.698699 -0.522503 0.869122 -0.148464 0.081978 0.124101 0.262258 0.723168 0.203108 0.404337 -0.703788 -1.667565 -0.031233 0.014589 0.327468 -0.324789 -0.009506 0.346830 0.238617 0.142104 0.474740 -0.480003 0.882375 1.111386 -0.054432 -0.570777 -0.911159 0.156410 -0.454639 0.296768 -0.509938 0.027176 -0.024485 0.622288 -0.041281 0.013055 1.270420 -0.760157 0.735198 -0.185199 0.131808 -0.063869 -0.200309 0.284458 -0.472218 -0.536370 0.379917 1.116387 0.049888 0.392223 -0.602545 0.067598 -0.375680 -0.889321 0.540617 0.071221 0.250507 0.693322 0.238863 1.559131 -0.910453 -0.124031 -0.179867 0.079236 0.033529 -0.114321 -0.959997 0.388546 0.075028 0.412720 0.982195 0.040215 -0.691371 0.320857 0.071276 0.022864 -0.520505 0.839346 -0.761240 0.170610 -0.025514 -0.275242 -0.611615 -0.353060 -0.423655 0.186350 1.005685 0.233040 -1.368476 0.218383 -0.342689 0.373080 -1.479810 0.475673 -0.457548 0.531062 -0.488313 -0.067321 -0.243542 0.393334 0.394941 0.028747 0.404037 -0.434995 0.630826 0.692641 0.043356 0.173270 0.498106 0.215413 0.055145 -0.453214 -0.197265 0.217410 -0.076804 0.032518 -0.209420 -0.287772 0.850699 0.432973 -0.453469 -0.190238 0.800423 -0.683796 0.074924 0.703494 -0.251559 -0.481173 0.201267 0.179463 1.137624 -0.390972 -0.170233 -0.688082 0.085727 0.113834 0.326521 -0.948621 -0.483225 -0.046913 -1.389273 -0.550010 0.599495 0.269538 0.402483 0.205758 -0.935223 -0.347364 0.685197 -0.071232 1.194389 0.252868 0.552567 0.763083 0.371555 -0.050175 -0.623348 -0.339203 -0.288030 -0.823880 -0.346608 -0.009102 0.162929 -0.518892 0.797086 0.211504 -0.005110 0.085286 -0.063716 0.431694 -0.601983 1.131673 0.738474 -0.590292 0.081315 0.116269 1.402078 -1.105141 -0.616264 -PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -12.058056 -20.108961 14.852267 14.296978 5.952898 14.596628 7.112750 -4.363769 5.336146 16.213428 -6.525583 13.555507 -8.658599 -8.225504 -0.809408 0.215601 0.255448 -10.803715 3.651762 -1.566871 0.859540 -9.549092 -13.352031 18.350098 1.711925 -2.389563 -3.820560 0.770418 -25.003253 -19.182769 -4.498967 0.555627 7.547145 -2.180301 5.747780 -15.762018 8.476349 21.820067 0.459360 -19.070097 -0.644995 -4.059531 -5.410565 8.802330 -2.378118 7.323613 6.728045 -4.433655 -5.088350 3.854718 7.219042 -2.907136 12.869727 15.374800 6.111862 19.299564 17.586457 -0.255220 9.241550 2.534913 4.162631 -4.509302 9.916373 7.639168 -4.949355 -0.209050 -1.431118 6.281623 -9.561201 0.554261 3.791361 -11.664608 -4.065897 -4.486115 -9.437663 -4.983066 -4.209059 -2.083500 19.888786 -3.014938 27.051035 13.190544 15.287540 -2.619256 16.123817 -1.724215 13.570973 5.931566 -12.539517 3.486395 -12.874638 -3.366634 -0.435942 14.153391 -14.289133 7.182393 8.553742 -12.239693 -19.050437 13.119690 -3.996391 -5.023218 -7.590590 1.244174 5.819394 3.775039 -5.615949 -16.129002 -13.012826 12.632777 -10.402569 -10.458525 -4.795327 -0.224677 2.122861 4.239513 -8.126831 -0.355184 16.247253 -9.801031 -7.989925 13.874641 -1.100635 13.165635 -3.714583 -0.498795 1.322841 -0.794022 7.915705 3.432762 1.122517 -11.165839 -24.955932 2.867065 -0.295259 -4.295900 -8.295198 -2.451672 10.634906 7.725826 12.547868 17.158385 -4.419320 14.040257 6.190588 2.041780 -3.759826 -17.916517 -3.041781 -6.661634 3.605820 -5.437654 -8.069184 -1.338445 10.641807 -2.543600 -1.749156 6.065426 -4.389245 11.159147 0.711728 2.235327 -1.719874 -8.059083 3.148626 -7.167902 -12.381420 9.222849 16.984047 5.295573 5.014290 -4.292688 -1.041834 -0.290015 -11.151163 5.457945 -1.635188 2.912174 18.949713 8.637391 33.086110 -8.948612 0.288733 -7.120050 -2.422303 3.409421 -5.885592 -15.113904 4.734940 3.538745 2.342401 21.407712 -1.302879 -4.929660 5.186953 0.400649 0.895244 -12.874050 20.163686 -11.824257 -1.108126 -1.890285 -6.054505 -8.098556 -7.828237 -12.390824 0.008340 18.273019 -9.148755 -15.062017 3.807074 -2.027313 0.013479 -18.241065 12.790067 -7.012082 9.509860 -4.810835 -7.263906 -1.918196 8.773098 1.227019 0.294748 8.072228 -15.931027 12.243086 9.361591 0.146172 3.126709 6.316659 2.113781 -4.031104 -7.039611 -11.806125 7.779520 1.904928 -3.491181 -5.097065 -6.993157 13.540489 4.513391 -5.687784 -4.389777 12.183716 -9.586139 -8.507746 11.290770 -5.423692 -6.580429 3.198989 2.645545 10.499348 -7.792527 -2.734366 -11.190819 -2.698427 6.353358 4.582864 -17.935859 -1.702905 -5.576262 -11.966731 -5.954918 6.116635 6.925516 10.011412 1.737003 -22.298522 -12.886095 15.335976 -4.494996 2.651203 9.173213 12.645613 13.522914 4.734183 8.889622 -3.947439 -8.061399 -0.904393 -10.594684 -5.007235 1.576766 3.993296 -6.880977 16.567702 2.564955 2.956045 7.469832 1.849452 2.521869 -10.607322 19.031671 10.672029 -12.581825 -0.196067 5.851642 14.134538 -22.945723 -9.936153 -PE-benchmarks/palindrome-partitioning.cpp__main = -2.143806 -4.577241 3.938933 3.641089 0.863271 3.070966 1.531040 -1.152691 1.438672 2.917350 -1.682339 3.040933 -2.225114 -1.418547 -0.557095 0.318633 -0.832726 -2.635048 0.646971 -0.429978 0.044193 -2.178764 -2.480620 4.011975 0.743147 0.339346 -1.063201 0.041254 -5.514277 -3.854501 -0.439668 -0.059884 1.856337 0.215066 1.333418 -4.069792 2.089833 4.813293 -0.083822 -4.587444 0.099478 -1.154740 -1.177076 1.161547 -0.637952 1.606854 1.474928 -0.155410 -0.870338 0.934600 1.028553 -0.539891 2.778540 3.881535 1.149311 4.229353 4.124988 0.036115 1.916624 0.329984 1.112097 -0.844818 2.136986 1.808653 -1.071290 -0.479071 -0.624292 0.718834 -2.245490 0.500909 0.790369 -2.105093 -1.398632 -1.122407 -2.393240 -0.964220 -1.716967 0.364667 4.840495 -1.359125 5.896153 2.791879 3.388407 -0.593056 3.349011 -0.196164 2.917805 1.523971 -2.600025 0.736278 -3.174711 -0.962677 0.054663 2.240432 -3.226298 0.389238 2.125373 -3.355008 -4.401749 2.817983 -0.570976 -1.215185 -1.205350 0.334527 1.281797 1.152141 -1.470360 -3.567484 -2.480652 2.579449 -1.887101 -2.266644 -0.889372 0.431623 0.341043 0.512682 -2.405790 0.059564 3.429175 -2.268656 -1.116860 3.186956 -0.290677 2.805867 -0.868833 -0.164656 0.125141 0.698706 1.808364 0.798142 0.331662 -2.065527 -4.819441 1.028559 0.332709 -0.284146 -2.073841 -0.449054 2.166409 1.760492 2.416546 3.108519 -1.005526 2.843057 1.316346 0.020269 -1.303629 -4.111262 -1.082936 -2.017173 0.740848 -1.506351 -1.763455 0.299157 2.589901 0.021753 -0.016933 1.905061 -1.418989 2.294117 0.154594 0.508110 -0.151794 -1.175739 0.883417 -1.681944 -2.908426 2.263160 3.358152 1.272912 1.146878 -0.945332 -0.085205 -0.557534 -2.339313 1.587503 0.120131 0.458344 4.337623 2.098231 6.164847 -1.973444 0.031812 -1.205172 -0.649018 0.623173 -1.050408 -3.718989 1.451031 0.685446 0.717557 4.595030 -0.303844 -1.053878 1.400134 -0.075143 0.260902 -2.884369 4.025844 -2.711543 -0.472076 -0.942815 -0.627824 -1.735895 -1.769418 -2.764570 -0.276006 4.398424 -2.509447 -3.160745 1.111583 -0.358341 0.474832 -4.142010 2.819575 -1.720847 2.590427 -0.702461 -1.587968 -0.216536 1.205842 -0.072873 -0.199998 1.953649 -3.228652 2.367855 2.233996 0.275412 0.435312 1.496082 0.888822 -0.998411 -0.995151 -2.584305 1.818840 0.282926 -0.979364 -0.820555 -1.570553 2.673807 0.668280 -0.967413 0.086086 2.645838 -1.247837 -1.075187 2.375049 -0.643874 -1.743874 0.723437 0.416516 2.511584 -1.936540 -0.668389 -2.336270 -0.174772 1.104206 1.169648 -4.254852 -1.436568 -2.078730 -2.849993 -1.353014 0.601942 1.630668 1.786006 0.248461 -4.928181 -3.122355 3.222815 -1.186241 0.894398 2.285696 2.654112 3.230993 1.414749 1.348912 -0.850164 -1.235997 0.291043 -2.084125 -0.826789 -0.342764 1.193207 -1.754336 3.317090 1.477754 0.280849 1.739320 0.176741 1.325300 -2.471082 4.679551 2.469140 -3.279599 0.229754 1.666790 3.172115 -4.145551 -2.446267 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__maxSubArraySum(int*, int) = -2.333281 -4.519776 4.523880 3.914252 0.710409 2.815724 1.944320 -1.675819 3.666984 1.863838 -1.602586 1.999574 -3.310867 -0.379457 0.123366 0.451157 -2.825702 -3.897557 0.476148 -0.968055 -0.605406 -3.623844 -1.380870 2.877743 0.470737 0.026703 -1.708831 0.081660 -5.822613 -2.092271 2.630542 -0.798492 2.466540 0.008480 0.877869 -10.455922 2.904876 3.661080 -0.588793 -5.971100 0.177871 -2.865777 -0.550336 -0.521141 -0.469354 1.188926 1.370910 2.541643 0.128980 0.205660 -0.139932 -0.400751 -0.256549 7.775271 -1.233080 4.186981 4.232830 -0.029808 0.049700 1.037849 1.207818 -0.268431 3.232281 3.611407 -2.528536 -0.966447 0.602026 -1.213149 -4.499187 2.174044 1.752437 -0.894516 -1.853455 -0.603701 -2.977674 -1.019327 0.501222 2.292193 6.692116 -2.448261 6.064886 2.047265 4.636808 0.145315 3.560719 -0.140770 4.946749 1.309316 -3.469464 -0.864076 -6.426344 -1.983470 -0.309524 0.794684 -1.659326 -1.461598 1.325938 -2.705616 -4.466543 2.113052 -0.644535 -0.295783 -4.013310 -0.181449 3.377568 2.128545 -1.472774 -4.541237 -4.027168 2.777778 -3.118501 -1.970909 0.240014 -0.104058 -0.853632 -2.630324 -3.629664 -0.939647 3.227148 -2.640821 -1.858763 4.122753 -3.747733 2.145452 -0.552070 -0.083229 -0.577350 1.967845 1.089298 0.427729 2.930513 -3.274111 -5.958550 0.246531 0.438752 5.102239 -1.119690 -0.661336 1.291488 1.647700 -0.109596 1.071598 -0.371440 2.509515 2.176858 -0.963801 -1.967161 -4.178370 0.981143 -3.523481 1.103220 -2.772873 -0.510028 1.333018 3.677048 2.305235 1.202454 4.508105 -3.936642 4.698044 -0.705342 0.795377 0.775791 0.388546 1.433789 -1.998481 -3.353771 1.595845 2.550116 1.142454 0.957298 -2.127093 -0.426021 -2.377156 -4.252822 1.259382 1.168950 0.911846 4.008377 2.250227 6.529346 -6.441582 1.242952 0.279989 -0.588407 0.573887 -0.774576 -4.382455 2.008063 1.033015 0.400852 4.851452 -0.488787 -3.407815 0.378414 0.569129 0.551834 -2.707601 2.349866 -3.047571 -0.998888 -2.066362 -0.178264 -2.484035 -2.435682 -2.942147 -0.275888 5.155320 -1.657155 -6.088721 3.029103 -2.158026 2.424377 -7.337884 3.907480 -2.417163 3.029521 -2.053224 -0.788915 -0.937195 1.485527 -0.914232 1.130674 2.219588 -3.127820 2.732607 4.353933 1.171550 1.597419 1.453445 1.922577 0.017823 -1.039692 -2.765205 2.535958 -0.611986 -1.294365 -0.299547 -2.176351 3.843162 0.883189 0.122412 1.996366 4.447379 -0.046257 1.802485 4.015626 -0.146032 -2.044027 0.835617 0.121206 3.097386 -1.443583 -0.216437 -2.259099 0.248436 0.000143 1.891562 -4.685931 -4.233034 -2.233114 -5.478788 -0.932727 0.437517 0.871801 1.464552 1.172122 -6.675168 -1.845329 0.919321 -1.568216 4.374260 2.259604 2.467221 3.432636 3.172746 -1.515177 -1.862679 0.807567 0.134790 -3.326824 -1.221017 -2.288029 2.377599 -2.686112 3.746407 2.783350 -0.267765 1.132347 -0.971858 3.921025 -2.312361 6.561692 3.451088 -3.258745 0.596804 1.430279 5.718163 -1.543522 -2.879722 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = -0.304388 -1.690348 2.070696 1.801350 0.057590 0.828662 0.777546 -0.698014 1.401398 0.587041 -0.635618 0.814304 -1.340757 0.220206 -0.251983 0.689726 -1.387257 -1.468630 0.104751 -0.388748 -0.363635 -1.202160 0.006135 0.782116 0.596885 0.469894 -0.754041 -0.369220 -1.890899 -0.744441 1.082836 -0.450578 0.975658 0.383039 0.257931 -3.569395 1.142800 1.262355 -0.365893 -2.219427 0.262860 -0.945472 -0.102618 -0.558026 -0.094180 0.427341 0.531648 1.279647 0.313508 0.435872 -0.120754 -0.050183 0.268532 2.911464 -0.526562 1.406506 1.521218 0.085599 0.018734 0.193532 0.634517 -0.021614 1.017576 1.213464 -0.559788 -0.673407 -0.290489 -0.781998 -1.567332 0.929282 0.441758 0.017756 -1.139335 -0.284259 -0.974923 -0.285547 -1.226754 1.277179 2.585667 -1.377313 2.010652 0.726562 1.481891 -0.068616 0.938832 0.091180 1.331005 0.650298 -1.039753 -0.210216 -1.968074 -0.741012 0.030090 -0.308070 -0.693973 -1.491891 0.758336 -1.025506 -1.709485 0.838492 0.081817 -0.097650 -0.863713 -0.025438 0.982438 0.991222 -0.848524 -1.584576 -1.061316 0.586801 -0.486669 -0.729595 0.163617 0.112788 -0.383548 -0.920210 -1.654737 -0.307674 0.896683 -1.134485 -0.250607 1.383091 -0.976354 0.742968 -0.252856 -0.017833 -0.262587 1.273366 0.583989 0.460689 0.976559 -0.589254 -1.758159 0.533699 0.607956 1.823710 -0.494271 0.040335 0.169031 0.618224 -0.159708 0.140673 -0.050083 0.769288 0.900361 -0.580393 -1.107744 -1.445791 0.133512 -1.443692 0.485284 -1.198173 -0.052116 0.664770 1.380570 0.927357 0.677697 1.837097 -1.604926 1.337222 -0.245502 0.328018 0.444165 0.536560 0.651106 -0.732127 -1.265248 0.703393 0.891090 0.335041 0.397737 -0.686618 0.073307 -1.090860 -1.079332 0.602642 0.660992 -0.185906 1.415422 0.778695 1.564663 -1.843807 0.260913 0.348851 -0.231218 0.143330 -0.113210 -1.901354 1.038732 0.168368 0.256204 1.395087 -0.161813 -1.048339 0.564055 -0.140989 0.181449 -0.877738 0.591226 -1.143176 -0.629076 -1.011419 0.545764 -0.731150 -0.777334 -0.826041 -0.062873 2.000510 -0.838819 -1.516024 1.066790 -0.624979 0.753694 -2.305482 1.759471 -0.911794 1.042296 -0.477369 -0.397551 -0.161009 0.300170 -0.455899 -0.044712 0.936637 -0.780655 0.687005 1.697498 0.485493 0.221841 0.618153 0.998667 -0.099598 0.082582 -0.781737 1.038408 -0.283580 -0.533116 0.038763 -0.726670 1.018945 -0.079202 0.101370 1.431471 1.296831 0.359891 1.016871 1.079060 0.467449 -0.965129 0.495220 -0.035780 1.325922 -0.742487 -0.037679 -0.639281 0.270431 -0.307550 0.861400 -1.777609 -1.948155 -1.181094 -1.659078 -0.439623 -0.168607 0.451025 0.024893 0.198817 -2.128323 -0.975143 0.315038 -0.703912 1.000380 1.018983 0.757453 1.372140 1.278263 -0.726327 -0.553839 0.308220 0.279075 -0.765740 -0.297319 -0.927592 0.864762 -1.126106 0.927752 1.447215 -0.255795 0.386684 -0.382826 1.767460 -0.879841 2.482756 1.189135 -1.259098 0.555821 0.971834 2.066049 -0.157904 -1.129317 -PE-benchmarks/biconnectivity.cpp__Graph::Graph(int) = -0.095979 -2.267847 2.871178 1.668742 -0.457873 1.676422 1.325861 -1.355719 1.308269 0.659367 -0.858477 0.550904 -1.606519 -1.030043 0.173252 -0.236953 -2.060444 -1.519766 0.139369 -0.668738 -0.358266 -1.534393 -0.510638 1.677049 0.473040 1.010871 0.079684 -0.135427 -2.459574 -0.633033 1.197444 -0.126621 0.679388 2.309849 1.630806 -2.035246 1.498935 1.556992 -0.193315 -2.558463 -0.033952 -0.145055 -0.814214 0.534219 0.369921 0.556388 0.420222 1.918562 -0.297569 0.329314 0.147668 -1.358417 0.228806 2.444110 0.785962 1.999492 2.230763 -0.205122 1.218865 1.259539 0.726761 -0.277871 0.629516 1.454067 -0.238737 0.335689 0.547900 -1.183201 -1.380734 1.262023 0.544978 -1.607784 -0.365840 -1.337303 -1.441946 -0.213141 -2.750659 1.974262 3.084754 -1.584940 2.669416 1.127071 2.108289 -0.874479 2.153173 -0.174095 2.524667 0.810721 -1.453760 0.668404 -2.555292 -2.168911 0.113658 -0.445328 -1.104809 -0.236480 1.386814 -2.368034 -2.212793 1.802435 0.079351 -0.270351 -0.870022 0.395403 1.081694 0.369897 -1.492597 -1.979373 -1.453911 1.530042 -1.874640 -0.194909 0.129673 1.459899 -0.680228 -0.316249 -1.049916 -0.116349 1.803130 -1.138190 -0.513436 2.343131 -0.842499 1.498813 -0.385899 -0.567291 -0.042325 0.866259 0.628133 0.052305 0.975437 -0.725342 -1.542577 1.155413 0.158293 1.340636 0.407795 0.239158 1.575732 1.315169 0.146387 1.257263 -1.189025 1.186264 0.030065 -0.495734 -1.584399 -1.286546 -0.578610 -1.905091 0.297577 -1.248387 -1.072026 0.571968 1.835538 2.154456 -0.509946 0.957896 -1.507454 0.791524 -0.455455 0.371251 -0.709726 -0.036918 0.556266 -1.119017 -1.376509 0.238351 0.787280 0.453918 1.168296 -1.497879 -0.667313 -1.308698 -2.152850 0.670409 0.746882 -0.162878 1.513361 1.621516 0.909434 -1.875740 -0.270969 -0.058203 -0.078397 -0.202491 -0.402191 -2.082959 0.789955 0.174740 0.864806 1.702490 -0.223301 -0.065794 0.363358 -0.311991 0.257356 -1.245231 0.525258 -1.323600 -0.102697 -0.856490 0.794836 -1.176330 -1.158013 -1.165934 -0.685772 2.367730 -1.187357 -1.987191 2.152755 -0.819077 1.521450 -1.756593 0.972325 -0.804808 1.619240 -0.027215 -0.317000 -0.502706 0.193996 0.038368 0.504923 0.382608 -1.047864 1.097380 1.581149 0.196626 0.778798 0.910018 0.998492 -1.442644 -0.916858 -1.565437 1.420812 -0.229315 -0.913996 -0.139321 -1.052747 1.327816 -0.089551 -0.201941 1.000656 1.040354 0.053563 0.372845 0.763984 -0.833019 -1.196992 0.297533 0.833073 1.239485 -1.033632 -0.347122 -0.541320 -0.011795 0.154590 0.037242 -2.195318 -1.620386 -1.958178 -1.667918 -1.566025 -0.844904 1.066708 0.723960 0.335404 -1.829895 -1.099580 0.650770 -0.659007 -0.113656 1.323815 1.503194 2.031762 1.739120 0.078633 -0.016480 0.320542 0.788353 -1.752451 -0.416224 -1.136418 0.352538 -1.794573 1.756711 1.435500 0.893011 1.084276 -0.553660 2.232983 -1.911537 1.726873 1.809489 -1.804874 0.014147 1.607751 1.502291 -0.151153 -1.539419 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/biconnectivity.cpp__Graph::addEdge(int, int) = -0.391477 -1.595272 2.386586 2.273744 -0.389854 1.052234 0.253968 -1.435890 1.178782 1.040368 -0.194706 0.780020 -1.411738 0.458828 -0.071988 1.140260 -1.696976 -1.092001 -0.535362 -1.126902 -1.062540 -1.120823 -0.114413 1.034326 0.759696 0.523892 -1.086790 0.007597 -1.247854 -1.675270 0.576147 -0.301473 1.144160 0.551017 0.571997 -4.044982 1.599099 1.532973 -0.447090 -1.641110 0.168941 -0.852852 -0.027713 -0.383929 -1.005720 0.392624 0.056417 0.181632 0.841520 0.371575 0.656160 0.234291 0.983472 3.247461 -0.447331 1.626829 1.093533 -0.198096 -0.013006 0.198140 0.545223 0.248492 1.111771 0.837644 -0.181876 -1.091700 -0.338866 -0.555324 -1.387767 1.314340 0.092106 -0.767077 -1.283149 -0.909196 -1.269378 -0.805875 -1.771514 1.363017 2.535959 -1.697089 1.713359 0.741277 0.673722 0.092427 1.439893 -0.140477 2.157554 0.597887 -0.878739 0.645213 -0.123011 -0.669925 0.474033 0.490460 -1.182434 -1.868862 0.872341 -1.792628 -2.190635 1.310991 0.420220 -0.237823 -1.427837 -0.843944 0.814790 0.381989 -1.167762 -1.883941 -0.963635 0.780783 0.032797 -0.911327 -0.231123 -0.070260 -0.065063 -0.124700 -1.996707 -0.149351 0.681237 -1.037228 -0.585530 1.738084 -0.039503 0.557912 -0.222897 0.315248 -0.467591 1.675644 -0.025152 1.157150 -0.240859 0.372127 -1.538627 0.061562 0.645457 0.291289 -0.332603 -0.511201 -0.140938 0.731711 -0.604820 1.031461 -0.122429 1.458729 1.556507 -0.016223 -1.286167 -1.049629 -0.583435 -2.213539 0.402455 -1.368800 -0.741399 0.868219 1.436681 0.849865 0.707507 1.263746 -1.021489 1.033588 -0.360245 0.032896 1.009469 -0.098995 0.854514 -0.954543 -1.461431 1.040743 0.842672 0.810925 0.525054 -0.627545 0.005367 -0.763580 -0.989353 0.788071 0.630969 -0.226654 1.597204 1.105550 3.308220 -1.481254 0.743254 0.451038 -0.359599 0.462709 -0.270985 -1.927392 0.650262 0.366017 -0.338810 1.719338 -0.387155 -0.798279 0.571445 -0.378448 0.550892 -1.372429 0.787191 -1.194277 -0.021609 -1.315267 0.091511 -0.759393 -0.638758 -0.761218 -0.332871 2.235763 -2.339864 -1.107181 2.048907 -0.168930 0.852054 -2.108171 2.203702 -0.862151 1.409091 -1.034692 -0.940651 0.004269 0.477041 -0.544002 0.589656 1.002645 -0.945846 0.158389 1.936795 0.370692 0.466268 0.289398 1.358940 -0.096479 0.573999 -1.008985 1.974017 0.038806 -0.287832 -0.391316 -0.860308 0.400573 -0.351452 0.306966 0.985043 1.276207 0.192732 0.223034 1.314050 0.677615 -0.949370 0.930173 -0.123805 0.815629 -1.167082 -0.175564 -0.090388 0.644040 -0.388588 0.706578 -2.068536 -1.585935 -2.225983 -0.787647 -0.808334 0.807895 0.632613 0.057625 -0.260480 -1.549967 -1.364561 1.963673 -0.936309 0.461055 0.992239 1.069906 1.610446 1.782161 0.004629 -0.402133 -0.362307 -0.040987 -0.311392 -0.069428 -1.074455 1.349491 -1.117362 1.097441 1.447282 -0.267817 0.861947 0.398096 1.536528 -1.214302 2.203501 0.879373 -1.005924 1.073923 1.930331 1.447905 -0.321063 -1.160070 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::push_back(int const&) = -0.077529 -0.917212 1.926129 1.690331 -0.291034 0.629247 0.100363 -1.345253 1.481807 0.359404 -0.067820 0.345084 -1.053998 0.601394 -0.297854 1.025625 -1.514553 -0.974832 -0.508815 -1.067197 -0.843968 -0.975442 0.422656 0.255730 0.632583 0.456758 -0.955443 0.007034 -0.960840 -0.934492 1.081055 -0.390250 0.806590 0.193464 0.263220 -3.329660 1.412603 0.906599 -0.490407 -1.358132 0.240322 -0.820300 0.128790 -0.602182 -0.478886 0.211199 -0.188216 0.492971 0.979868 0.286153 0.366317 0.484081 0.168066 2.586149 -0.959138 1.010112 0.481178 -0.059223 -0.391253 0.293020 0.409690 0.500026 0.837138 0.799006 -0.267402 -1.124092 -0.221362 -0.642902 -1.378018 1.246603 -0.015182 -0.403871 -1.099677 -0.507587 -0.989252 -0.497219 -1.263619 1.271060 1.947137 -1.326708 0.981342 0.226904 0.533105 0.101900 0.849460 -0.081755 1.616537 0.433907 -0.617319 0.086968 -0.553645 -0.367427 0.334869 -0.198445 -0.657727 -1.762485 0.632030 -1.287231 -1.489152 0.672496 0.589161 -0.016680 -1.289897 -0.552017 0.818272 0.455756 -0.835267 -1.398146 -0.535145 0.528918 0.168919 -0.568503 0.040671 -0.378039 -0.230716 -0.592107 -1.607283 -0.197249 0.232984 -0.657977 -0.459639 1.273472 -0.562691 -0.070521 -0.159556 0.358538 -0.535055 1.432644 -0.267029 0.930079 0.048071 0.330961 -1.071000 0.194983 0.521846 0.920253 -0.165585 -0.154143 -0.558813 0.399922 -1.002412 0.215261 -0.210901 0.599859 1.185029 -0.278406 -1.043524 -0.464671 -0.177392 -1.884918 0.345044 -1.117295 -0.385883 0.680549 1.141151 1.103125 0.925839 1.349332 -1.154538 0.773225 -0.319310 0.034166 1.115236 0.273336 0.758473 -0.678450 -1.061748 0.663747 0.295291 0.391765 0.343633 -0.465736 -0.009963 -0.970315 -0.573925 0.525547 0.693097 -0.104452 0.978030 0.763155 1.600164 -1.502391 0.572225 0.737847 -0.284610 0.336849 -0.148355 -1.460224 0.572121 0.317679 -0.017740 1.144079 -0.309094 -0.712182 0.279165 -0.210863 0.566819 -0.885238 0.134186 -0.904089 -0.241678 -1.085549 0.214592 -0.571869 -0.433315 -0.545250 -0.455696 1.606379 -1.393390 -1.044610 1.858997 -0.450001 0.858132 -1.673572 1.337762 -0.757155 1.029203 -0.678022 -0.206450 -0.128654 0.190236 -0.749185 0.411867 0.737312 -0.494163 0.200572 1.764319 0.447669 0.311833 0.064806 1.190299 -0.131339 0.768503 -0.644971 1.617946 -0.190769 -0.326104 0.055199 -0.636931 0.132174 -0.585328 0.378784 1.224358 1.022349 0.561673 0.709134 0.880237 0.900543 -0.784405 0.896935 -0.138609 0.399007 -0.666183 -0.058427 0.283081 0.553908 -0.543808 0.574059 -1.486717 -1.747025 -1.615354 -1.032023 -0.184657 0.074947 0.231250 -0.283068 -0.177470 -1.174959 -0.914647 0.999809 -0.676181 0.942986 0.665798 0.638332 1.038536 1.616170 -0.766642 -0.197364 0.021847 -0.064648 -0.146893 -0.216749 -1.124218 1.289367 -0.805793 0.493335 1.436548 -0.375614 0.470281 0.057361 1.205382 -0.758962 1.744571 0.630357 -0.507026 1.054603 1.106764 1.535516 0.478665 -0.858644 -PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -7.974456 -15.179957 18.165345 16.192102 2.860629 11.056572 4.378862 -9.457852 7.920651 12.598770 -4.585327 9.638775 -9.881097 -1.574780 -2.592927 4.961513 -6.017610 -10.512616 -0.892232 -6.527133 -4.082291 -8.797159 -6.051667 11.177569 4.317141 -1.067292 -7.373145 0.509838 -18.600827 -18.786406 0.020299 -0.846300 7.800995 -2.307903 3.011929 -25.182621 12.035403 18.356697 -2.210176 -15.499001 1.290467 -5.898960 -4.748777 3.654427 -3.807598 4.626231 3.038575 -2.350736 0.695298 3.892051 7.789309 0.887527 8.520170 22.155162 0.074513 16.709094 13.630993 0.045024 2.565006 3.912671 4.115946 -0.429312 9.548228 7.528387 -3.392346 -4.855076 -0.595059 1.254814 -10.318505 5.678913 1.623095 -10.399288 -4.548541 -5.873457 -10.236655 -5.060447 -2.989007 3.057705 19.986250 -8.202761 19.845083 8.502857 9.400180 -0.906986 12.962058 -2.046811 16.674008 5.618015 -9.210351 1.485677 -7.244581 -3.464694 1.167873 12.045475 -12.156424 -3.172793 8.585180 -15.401161 -17.919327 10.461064 -0.106970 -3.728305 -12.249613 -2.657441 6.397337 2.914644 -6.702115 -15.020207 -10.945035 9.208856 -5.614828 -9.163524 -3.409222 -2.079368 -0.051974 2.711625 -13.320667 -1.128512 10.306749 -9.073648 -9.392512 13.170131 -0.690539 7.893179 -3.169443 2.183891 -1.629068 4.767643 1.787462 6.807080 0.069509 -2.656383 -19.200316 -0.809849 2.718783 -1.360226 -6.394941 -2.332122 4.037983 6.239410 2.069225 12.639288 -6.123355 13.145044 10.874784 0.418513 -7.004653 -11.868905 -1.871568 -12.959286 2.776252 -8.696907 -9.210890 0.131229 11.497898 2.090868 2.337856 11.455588 -6.033679 10.396087 -0.355532 1.072145 3.583215 -8.155045 4.988937 -7.817608 -13.311757 8.446343 11.855473 4.571491 4.350451 -3.867430 -0.727991 -5.124572 -10.902946 5.724469 0.649133 -0.249288 15.025277 8.531709 32.759894 -14.362477 4.347019 -1.110413 -3.536991 3.966687 -3.909565 -15.546150 2.870856 3.827034 2.007631 20.026376 -0.791340 -7.564278 3.695556 -0.799725 2.270640 -11.509082 13.755791 -11.144542 -0.180289 -5.437923 -3.476751 -6.436185 -6.169587 -8.476826 -2.427849 17.173704 -13.551806 -15.397211 11.567732 0.063164 3.126758 -21.104166 13.606048 -7.628434 11.386231 -6.535752 -5.475477 -0.797538 6.928841 -2.965113 4.948186 7.920892 -11.985231 9.036200 13.917223 1.539961 4.624968 3.107673 6.440567 -3.349022 -1.449949 -10.239368 13.122840 1.359631 -5.536259 -5.216989 -7.064559 7.659654 -0.207349 -1.139595 -0.071605 11.549766 -4.731883 -3.172089 12.490928 1.514268 -7.456375 7.833975 1.296978 8.546530 -7.477549 -2.439540 -4.859056 0.670433 1.674642 6.441817 -17.008303 -8.271116 -11.692022 -13.293538 -4.239118 6.188901 6.468578 4.278900 0.129316 -18.047757 -11.779711 17.357485 -5.771650 8.009009 9.270681 11.764764 11.871906 8.968138 3.071931 -2.740032 -6.259179 -0.341675 -7.260937 -5.258168 -2.721474 7.906616 -6.311085 12.090319 7.119357 1.041643 7.090963 3.044710 5.821920 -9.320440 18.285646 8.722724 -9.432598 4.797973 9.904790 14.933806 -12.699658 -9.379839 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/biconnectivity.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/biconnectivity.cpp__Graph::isBC() = -3.838847 -10.483761 12.074816 9.745603 0.910248 7.518096 3.397156 -6.233245 5.291830 6.652608 -3.327871 6.241169 -6.038735 -2.300823 -1.849795 1.656322 -5.182365 -7.017162 -0.298242 -3.734603 -2.532587 -5.664379 -3.381573 7.406755 2.512922 2.212870 -3.456138 0.380894 -12.760051 -10.676352 1.621896 -0.381397 4.668092 1.753622 3.728289 -13.775252 7.730960 11.152144 -1.459209 -11.557332 0.351834 -2.235913 -4.315479 2.789693 -0.891566 3.384278 1.808900 1.329496 -0.795305 2.435111 3.293115 -0.770704 4.173548 13.167081 1.682981 10.616804 10.372393 -0.266161 3.718058 3.238742 3.173067 -0.246089 5.299310 5.466047 -1.882311 -1.551303 0.581416 -0.838456 -6.558771 4.307600 1.844994 -7.292526 -2.026979 -4.449071 -6.888941 -1.738230 -2.932512 3.079469 13.540124 -4.679094 13.235591 5.367286 7.463388 -1.897380 8.773648 -1.090653 10.603469 4.352290 -5.806608 1.137234 -7.182293 -3.869243 0.561011 5.221789 -7.730958 -0.458598 6.535978 -10.120140 -11.179560 7.463083 0.318747 -2.665529 -6.667563 -0.216654 4.361832 2.227329 -4.726125 -9.017254 -7.183105 6.546576 -5.434442 -4.699925 -1.449910 1.511619 -1.216400 2.058808 -7.183328 -0.211793 7.733691 -5.481436 -4.916952 8.984242 -1.759245 5.312383 -2.567011 0.141215 -1.050488 2.631544 1.915462 3.411880 1.842291 -1.891254 -10.737356 1.374182 1.668356 1.024240 -3.328502 -1.454770 4.160405 4.993556 1.989881 7.591892 -5.064205 7.507780 5.101465 -0.507962 -5.558798 -8.310820 -1.470057 -8.539379 1.019071 -5.827067 -5.674071 1.660758 7.903488 3.283457 0.452909 6.444249 -5.195169 6.253598 -0.364686 1.715395 0.271938 -4.187103 2.623332 -5.054228 -8.265621 4.508415 6.606175 2.978912 3.448996 -3.721095 -1.218546 -3.759637 -8.455483 4.342133 1.373492 0.011346 8.921521 6.466288 16.368741 -8.769692 0.771668 -0.821879 -2.277189 1.102472 -2.547518 -10.049384 2.125042 2.082266 3.078780 12.386725 -0.637871 -3.352460 2.192742 -0.412749 1.188893 -6.714000 8.076064 -6.734092 -0.483530 -2.996272 -0.718090 -4.642708 -3.958046 -5.871964 -2.581677 11.840951 -8.549679 -10.580556 8.114070 -1.960409 3.101707 -12.442432 6.466535 -4.559242 7.122117 -2.042150 -2.712026 -1.659792 2.477270 -1.879579 2.897754 4.443774 -7.943036 5.741940 8.717268 0.981715 2.797009 2.249325 3.899521 -3.891810 -1.749968 -7.303778 7.811659 0.195269 -4.426692 -2.790687 -4.576446 5.276613 -0.894966 -0.787720 0.748737 6.390515 -2.097319 -1.259387 6.429844 -0.043974 -5.392745 4.055849 2.255537 5.418860 -4.768303 -1.763498 -2.913997 0.420598 1.331708 3.357425 -10.696779 -5.773026 -7.822444 -9.740549 -4.151464 0.996269 4.812644 2.565986 0.305947 -10.784579 -7.631433 8.941669 -3.253681 3.841298 6.778228 7.460657 8.269158 6.167471 1.072568 -0.846093 -3.451443 1.055559 -5.718386 -3.327561 -2.447953 4.185873 -4.639598 7.646356 5.106824 1.578031 5.248721 -0.235716 5.618797 -6.791717 11.104082 6.554717 -7.050633 1.600286 5.802748 9.609449 -6.591963 -6.705740 -PE-benchmarks/biconnectivity.cpp__main = -2.587929 -19.058806 27.722363 22.529296 -3.642181 11.742343 3.867146 -12.662353 12.516567 3.201621 -7.998619 11.256493 -14.484924 0.891889 -4.818361 6.355122 -20.278475 -15.633549 -1.462117 -7.213212 -6.601376 -11.730196 -0.796721 14.074937 8.500164 14.713535 -10.107385 0.473678 -20.492303 -14.485927 10.172629 -3.890367 12.205584 13.705326 7.048385 -35.406849 16.818857 17.951062 -3.821510 -22.301497 2.653667 -7.664649 -5.889962 -6.231219 -5.727832 6.537103 4.319261 10.263800 3.962444 3.553026 -1.158330 -1.430088 5.742462 26.375915 -0.997915 17.665630 17.292754 -1.527391 3.582505 1.070196 6.936174 0.567691 11.170976 12.417181 -5.815347 -8.870854 -0.785228 -8.404659 -15.372758 12.660386 5.177023 -4.907816 -10.502098 -7.162187 -14.648812 -2.822484 -4.260161 14.039169 29.402605 -13.461423 22.938644 8.095783 13.651833 -4.134087 13.207227 -0.748625 19.987503 9.142226 -10.617595 1.339936 -17.508326 -9.394616 2.067498 3.809064 -12.426359 -11.393576 10.552227 -24.651854 -22.101923 10.424753 3.533580 -4.608397 -10.427067 -0.728884 11.124022 6.423375 -9.240225 -17.232612 -8.014699 7.359913 -7.540306 -8.449811 -2.369172 6.281591 -3.686830 -1.806494 -19.793452 -1.327424 10.288976 -11.499187 -1.108537 16.515591 -5.031118 7.907889 -4.556589 1.192045 -3.661663 13.384871 3.846745 5.850193 4.875577 -1.716889 -8.628608 2.843962 6.238757 11.454883 -8.567746 -6.830746 3.078745 8.784491 -2.402506 4.129068 -6.450723 11.812803 10.742322 -4.699774 -14.776383 -14.864192 -6.649289 -22.264846 2.276026 -14.157868 -8.905479 9.607892 16.169056 8.663196 6.604932 17.563125 -13.362095 12.841914 -1.493580 3.699488 6.191549 0.499885 7.734774 -10.239993 -14.963982 11.809261 6.492650 7.472507 5.678976 -7.877584 -0.261739 -11.819340 -16.131205 11.574050 6.517859 1.150566 16.530518 11.155966 20.894106 -16.004447 3.128181 3.846222 -3.086344 1.258034 0.380112 -21.158038 9.310455 2.105315 4.662352 20.878069 -1.732248 -9.126110 5.949867 0.029906 3.410210 -14.086809 10.272116 -13.058291 -0.060644 -11.886248 3.838011 -8.448183 -7.877487 -11.331947 -5.915976 24.841856 -20.042624 -19.601635 17.932525 -2.753362 14.198629 -25.877218 9.288037 -10.860126 17.715569 -3.287811 -5.983922 0.082176 -5.073155 -6.487057 3.184947 9.749081 -9.729406 6.248463 16.334477 4.689686 3.099451 5.253636 11.179618 -3.991353 4.302331 -10.533056 14.516021 0.095015 -7.708285 -2.069820 -8.164554 5.696603 -3.653615 1.377342 11.096474 13.991864 6.011919 7.360856 10.884388 5.587689 -12.541789 5.629526 1.088362 11.172546 -9.996746 -4.389298 -3.379215 6.677954 -1.840113 9.267514 -22.749753 -24.223493 -20.900779 -20.841287 -8.924706 -2.595880 9.841984 1.774798 -0.231927 -18.937657 -13.995307 14.074927 -7.001543 17.453646 13.538611 11.395266 16.613751 15.056290 -6.139641 -5.115827 0.774122 6.846888 -6.985844 -0.838802 -15.253382 12.432058 -10.722441 11.995036 19.782210 -3.811761 7.933709 -5.562887 21.232801 -13.420836 26.248003 12.322785 -18.518215 7.071679 10.352737 16.518269 -0.251197 -14.403612 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/biconnectivity.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.197217 -1.643680 3.364608 2.740497 -0.229750 1.188232 0.623731 -2.539664 2.675320 0.491208 -0.076797 0.526287 -2.100922 0.989685 -1.411578 1.480065 -2.296461 -1.982242 -1.050079 -2.059564 -1.395553 -1.821714 0.930406 0.521837 1.165437 0.157683 -1.652877 -0.259496 -2.498904 -1.456158 2.051302 -0.491221 1.263210 -0.460181 0.161313 -5.360150 2.403322 1.860522 -0.925574 -2.362925 0.686496 -1.519070 -0.154445 -0.762420 -0.642190 0.092719 -0.484321 1.065720 1.658174 0.483935 0.956695 1.131702 -0.062911 4.905769 -1.983262 2.011556 0.973257 0.373709 -0.620048 0.973054 0.545103 0.996032 1.309800 1.425086 -0.536053 -1.766751 -0.188983 -1.008257 -2.408092 2.245183 -0.072602 -0.883159 -1.702413 -0.672964 -2.039756 -0.746987 -1.586103 1.950118 3.466941 -2.336400 1.803086 0.322161 0.964933 -0.025605 1.370466 -0.269027 2.649614 0.694654 -0.983091 -0.392417 -1.810917 0.032882 0.238403 -0.354231 -1.313079 -3.351133 1.501806 -2.490741 -2.857759 0.969470 0.950236 -0.327403 -2.022749 -0.552342 1.294278 0.645918 -1.551765 -2.620385 -1.154934 1.313934 0.277167 -0.919750 0.381948 -0.867840 -0.241673 -1.307916 -2.811860 -0.293959 0.429969 -1.273996 -1.210426 2.318287 -1.243130 0.054008 -0.072287 0.790467 -0.910981 2.127813 -0.460945 1.459666 0.225161 0.552904 -2.126361 0.275229 0.857070 1.881379 -0.468913 0.240858 -0.912135 0.725716 -1.637367 0.448576 -0.736580 0.791716 1.493497 -0.837830 -1.757749 -0.688505 0.097296 -3.170072 0.522782 -1.962602 -1.186008 0.615855 1.948612 2.152849 1.489769 2.768998 -1.843506 1.489487 -0.194032 -0.086320 1.739145 -0.143766 1.356504 -1.216707 -2.328645 0.997572 0.466114 0.597916 0.369722 -0.565086 -0.254737 -2.032436 -1.124676 0.396274 1.106529 -0.386679 1.883177 1.526428 2.239478 -3.204871 1.120996 1.267961 -0.796275 0.705542 -0.440833 -2.827540 0.862895 0.702615 0.094753 2.334760 -0.416500 -1.322559 0.747176 -0.442620 1.108414 -1.686630 0.276497 -1.786543 -0.858070 -2.016784 0.361141 -0.807905 -0.761226 -1.005519 -1.126979 2.773429 -2.420797 -2.140816 3.308420 -0.400394 1.294080 -3.256957 2.248360 -1.241831 1.805442 -0.789560 0.050177 -0.300075 0.791822 -1.402116 0.748312 1.153893 -1.199414 1.055220 3.431007 0.655780 0.785393 0.170475 2.214055 -0.528886 1.146736 -1.490925 2.872177 -0.349064 -1.489373 0.242937 -1.159777 0.271539 -1.191528 0.842336 2.258762 1.965283 0.873309 1.287501 1.737226 1.752639 -1.261497 1.673310 -0.226871 0.609366 -1.123742 -0.057018 0.529803 0.593589 -0.959633 1.193807 -2.742619 -3.366562 -2.716159 -2.554427 0.330703 -0.703596 0.376562 -0.555365 -0.345643 -2.590215 -1.805092 1.330081 -1.260971 1.886835 1.520559 1.392458 1.830891 3.037335 -1.593817 0.203397 0.291985 0.234142 -0.465140 -0.885024 -1.737374 2.087346 -1.277984 0.993179 2.480806 -0.370037 1.046807 -0.035265 1.665858 -1.452587 3.218765 1.185927 -0.850880 1.992754 1.747601 3.026402 0.994867 -1.449368 -PE-benchmarks/biconnectivity.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.592846 -4.006603 8.322105 6.783790 0.043351 2.724177 2.552574 -6.490439 6.081957 2.177849 0.110406 1.324856 -5.582094 2.390964 -3.832957 4.135394 -4.606801 -4.859233 -2.893483 -5.163775 -2.961563 -4.283977 3.518078 0.927603 3.463395 -0.282391 -4.013577 -1.768087 -6.458651 -5.317348 4.745494 -0.807738 3.410700 -1.635077 -0.653878 -12.040709 5.956545 5.247331 -2.508413 -5.607268 2.666387 -2.773742 -1.312912 -0.551397 -1.315652 0.466267 -1.466058 1.858131 3.873695 2.212529 3.621099 3.133894 0.836187 11.069281 -4.847330 5.172950 2.537917 1.406843 -1.481138 2.646659 1.090671 2.816613 3.020945 3.393971 -0.654402 -4.190348 -0.593841 -1.975956 -6.513299 5.334166 -0.866291 -2.671659 -3.868565 -1.524834 -4.144711 -1.261170 -2.625270 3.963291 8.336340 -5.217819 4.467757 0.603046 1.150728 -1.227073 2.234617 -0.867111 4.802182 1.788995 -1.590902 -1.849107 -3.941923 0.165302 0.277373 0.372850 -3.642380 -7.537312 4.665333 -4.853569 -7.016052 2.110976 2.490900 -1.527831 -5.227839 -0.935925 2.275899 1.806360 -3.657631 -6.406589 -3.301204 3.319180 1.363711 -2.348819 0.217892 -2.056399 -1.069275 -2.418726 -6.787515 -0.592683 0.697240 -3.572702 -3.672688 4.884956 -2.714468 0.536409 0.101958 2.617831 -2.298090 4.485896 -0.938916 4.118773 1.765139 1.805071 -4.987030 0.171494 2.506289 4.418312 -1.382249 0.898351 -2.732097 1.589193 -3.508952 1.889529 -1.840995 1.726366 4.708987 -2.132755 -4.314421 -1.031580 0.804930 -7.815237 1.466778 -5.052635 -2.354047 0.971575 4.375901 3.790980 3.449911 7.826887 -4.643015 3.445434 0.226303 -0.775893 3.746337 -0.867368 3.182507 -2.830747 -6.512558 2.305454 1.636096 1.140012 0.578084 -0.435665 -0.826987 -5.177888 -3.118352 0.723040 1.880586 -1.853593 4.094907 3.760470 6.352292 -6.840039 2.450705 3.161754 -2.415056 1.844932 -1.145705 -7.566939 1.739413 1.488070 0.555164 6.320464 -0.695701 -3.210436 2.780436 -1.646667 2.309293 -4.187586 1.782742 -4.837721 -1.972146 -5.018615 -0.156224 -1.074426 -1.912828 -1.751825 -1.932415 6.657524 -4.646216 -5.300054 7.620846 -0.740541 1.703497 -8.548789 6.422035 -2.720213 3.326154 -1.790268 0.273420 -0.731088 2.368439 -3.377641 1.048985 2.440810 -2.834055 3.487168 9.420082 1.157966 1.141772 0.196972 5.398776 -1.506668 3.032384 -3.969603 7.366027 -0.808576 -4.325735 0.399235 -2.599075 0.392256 -3.885885 1.385072 5.424056 4.567010 1.104575 2.780152 3.849352 5.183498 -2.971282 5.309390 0.113827 1.887014 -2.461789 -0.059750 1.734064 1.226552 -2.505960 3.904236 -6.502864 -8.072828 -5.374468 -7.618133 1.142893 -1.832972 1.963694 -1.935055 -1.173254 -6.408654 -4.971564 2.980884 -2.964596 4.622980 4.341374 3.825691 4.326740 7.357578 -3.696038 1.578754 -0.156560 1.076288 -1.076181 -3.305013 -2.711156 4.303314 -2.357926 1.957515 5.474638 -0.199011 2.974050 -1.037928 3.598524 -3.665389 8.030932 2.589041 -1.125931 5.836319 3.435246 7.385593 1.684032 -3.137071 -PE-benchmarks/biconnectivity.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/biconnectivity.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/biconnectivity.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/biconnectivity.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/biconnectivity.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/biconnectivity.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/weighted-job-scheduling.cpp__jobComparataor(Job, Job) = 0.653015 -1.138979 2.149702 1.920388 -0.080114 0.557290 0.407972 -1.149916 1.183074 0.844462 -0.458244 0.763369 -1.019939 0.609355 -0.700528 1.257758 -1.454143 -1.011938 -0.412038 -0.656111 -0.646783 -0.900397 0.412136 0.396161 0.964557 0.288114 -0.910734 -0.225830 -1.128734 -1.362246 0.416843 -0.228579 0.548769 -0.233368 0.443176 -1.983027 1.335697 1.113631 -0.395778 -1.681724 0.370371 -0.566046 -0.264103 -0.433856 -0.035573 0.377702 0.126663 1.189013 0.666894 0.791296 0.226835 0.456282 0.824673 2.602155 -0.420764 1.199360 1.091168 0.287359 0.220841 0.362322 0.545891 0.277488 0.379425 0.685768 0.255744 -0.890566 -0.638942 -0.459512 -0.696730 1.232383 -0.144238 -0.430967 -1.441548 -0.596722 -1.077703 -0.038350 -2.867090 1.589602 2.014439 -1.676848 0.990788 0.537880 0.728882 -0.006251 0.591993 -0.131092 1.124354 0.648858 -0.451647 -0.083895 -0.737549 -0.754653 0.295796 -1.072591 -0.939505 -2.360013 0.846784 -1.740952 -1.635128 0.821182 0.497006 -0.409067 -0.037990 -0.166075 0.599931 0.521408 -0.670073 -1.208908 -0.346284 0.487347 0.350744 -0.590568 0.296866 -0.062544 -0.006314 0.021374 -1.753795 0.017264 0.451002 -0.732521 -0.118345 1.135790 -0.005735 0.363539 -0.232583 0.064512 -0.175140 1.358346 0.257208 1.126988 0.215047 0.710134 -1.252841 1.412525 0.867962 -0.105974 -0.357800 0.919953 -0.183694 0.632885 -0.585892 0.590868 -0.586851 0.715465 0.517231 -0.562214 -1.401027 -0.935879 -0.483370 -1.126427 0.513345 -0.929905 -0.756630 0.337312 1.122000 1.097603 0.676332 0.980227 -1.314295 0.226934 -0.042756 0.397564 0.557143 -0.080704 0.527437 -0.661067 -1.195197 0.798711 0.740221 0.147029 0.283486 -0.251195 0.245361 -0.906968 -0.186993 0.636950 0.732499 -0.520546 1.315881 0.848503 0.747876 -0.943466 0.196888 0.624325 -0.387779 0.114422 -0.273664 -1.766735 0.955190 0.085073 0.934113 1.113866 -0.165621 -0.266945 0.792571 -0.429815 0.371293 -0.620779 0.068005 -0.976425 -0.786102 -0.874592 0.858136 -0.260916 -0.309725 -0.338022 -0.287703 1.679782 -1.367774 -0.527751 1.514751 -0.691734 0.294957 -1.250733 1.868734 -0.602344 0.670320 0.163144 -0.210318 0.007292 0.122671 -0.766335 -0.067213 0.802442 -0.469797 0.286924 1.449558 0.294804 0.027227 0.315744 1.035188 -0.501585 0.628677 -0.678918 1.266304 -0.279941 -0.456766 -0.235478 -0.510481 0.258582 -0.613433 0.230165 1.435134 0.423539 0.529334 0.733249 0.661742 1.018189 -0.940865 1.013141 -0.269344 0.569472 -1.065710 -0.171345 0.029992 -0.025334 -0.569942 0.716348 -1.563546 -1.384793 -2.113484 -0.682476 -0.318820 -0.758785 0.541074 -0.601638 -0.448155 -1.233062 -1.393636 0.949120 -0.572202 -0.821491 1.081433 0.460728 1.134247 1.355429 -0.304568 0.323886 -0.308924 0.075415 -0.121688 -0.516233 -0.584810 0.977195 -0.898185 0.352280 1.513885 -0.271533 0.716990 0.075620 0.751740 -0.859892 1.603966 0.751897 -0.763237 0.530622 1.615956 1.408628 -0.037156 -1.036089 -PE-benchmarks/weighted-job-scheduling.cpp__latestNonConflict(Job*, int) = -1.402982 -3.011697 2.991989 2.977067 0.897267 2.029704 1.038169 -1.368109 1.899658 3.128053 -0.973035 1.620163 -1.957570 -0.533800 0.667980 1.340571 -0.951318 -2.011225 0.382364 -0.609596 -0.424948 -2.000782 -0.909505 1.691879 0.740944 0.149578 -1.027775 0.189619 -3.038378 -4.296988 -0.109550 -0.362539 1.577182 0.037125 0.737739 -4.224361 2.380643 3.307543 -0.299163 -3.593367 0.039074 -0.806546 -0.594807 0.940425 0.083628 1.663358 1.074314 0.197933 0.050768 1.242917 1.177482 -0.483623 1.759311 2.983230 0.251283 3.055033 2.726680 -0.139338 0.473536 0.556241 0.873772 -0.329429 1.992731 1.770296 -0.885531 -0.638849 -0.144945 0.367358 -2.515955 1.001330 0.516391 -1.639817 -1.308938 -1.015459 -1.124005 -0.663441 -0.776491 0.516751 3.963711 -1.008463 3.994571 1.924472 2.097809 -0.343836 2.303366 -0.496433 2.688018 1.128659 -2.207881 0.260951 -1.638277 -2.015927 0.164633 1.923187 -1.768939 0.087879 1.107225 -1.676187 -3.106975 1.981598 -0.268738 -0.350251 -2.713064 -0.265262 1.768699 1.102888 -0.924923 -2.865036 -2.098604 1.433593 -1.568326 -1.718708 -0.735906 -0.208262 -0.592877 0.756826 -2.265175 -0.712543 2.128333 -1.991537 -1.456259 2.213004 -0.552583 1.745952 -0.661708 0.118286 -0.064175 0.840218 0.959338 1.411658 1.103752 -1.001288 -3.807316 0.457424 0.478357 -0.145849 -0.779729 -0.390280 0.808420 1.128865 0.457978 2.369123 -0.952782 2.380383 2.754640 0.223636 -1.316561 -2.428437 -0.249363 -1.988821 1.245677 -1.619552 -0.499381 -0.087358 2.230148 -0.386854 0.484845 2.166518 -2.063125 1.710426 -0.447836 0.702202 0.441708 -0.377016 0.905720 -1.318169 -2.071205 1.628598 2.860689 0.476144 0.981849 -1.131436 0.113416 -0.798920 -2.211535 1.346810 -0.134457 -0.019500 2.514999 1.186849 6.032679 -1.814595 0.396411 -0.149822 -0.153038 0.655507 -0.575267 -3.007514 1.066814 0.350889 1.126387 3.483866 -0.208834 -1.471109 0.729279 0.037023 0.088886 -1.966192 2.619350 -2.266217 0.116657 -0.718385 -0.401336 -1.337794 -1.433294 -1.417058 0.731403 3.263542 -0.500176 -2.950165 1.663940 -1.198594 0.549589 -3.829831 2.651333 -1.470847 1.237301 -1.468581 -0.991148 -0.202275 0.960839 -0.071891 0.021450 1.524027 -1.716317 1.727500 2.259592 0.283542 0.307490 0.869885 0.824919 -0.326251 -0.560621 -1.629532 1.961128 -0.028526 0.032027 -0.973164 -1.280174 2.053202 0.146714 -0.995394 0.040073 2.122453 -1.453248 -0.248066 1.836708 -0.018027 -1.539881 1.568805 0.633408 2.009933 -1.297075 -0.326275 -1.239469 -0.027295 0.149716 1.546667 -2.953702 -1.110974 -0.931153 -2.675001 -1.568817 1.788647 1.428298 0.873626 0.331405 -3.106480 -1.776062 2.856680 -0.742055 1.202820 1.415710 1.958220 2.171304 1.494540 0.627179 -0.992809 -1.503796 -0.605979 -1.809468 -1.168047 0.049406 1.200258 -1.201962 2.237048 0.916185 0.056089 0.789304 -0.597985 1.776722 -1.643790 3.246712 1.780262 -1.308514 0.652229 1.317282 3.385557 -3.021632 -1.754887 -PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -3.777195 -7.284016 8.457105 7.027479 1.012181 5.020371 3.047398 -4.392952 4.041265 5.278843 -1.905352 4.580821 -4.583369 -1.315004 -1.124741 1.752066 -3.064870 -4.913523 -0.348614 -2.908508 -1.586084 -4.556796 -2.952245 5.246494 1.852726 -0.318514 -3.029536 0.203768 -9.177833 -8.935097 0.385516 -0.383047 3.440150 -1.972574 1.895010 -12.611513 5.640964 8.703277 -1.060031 -8.251889 0.579077 -2.220082 -2.155970 1.700136 -1.699396 2.332129 1.455971 -0.444114 -0.011136 1.821462 2.884032 0.130004 3.442851 10.723555 0.176687 7.939737 7.257195 0.037227 1.511479 1.952605 1.989660 -0.315346 4.012477 3.561007 -1.494522 -1.547807 -0.017013 0.235164 -5.321913 2.682683 0.860669 -5.208253 -2.501911 -2.877891 -6.011159 -1.956054 -1.121359 1.655339 9.657541 -3.788416 9.831787 3.715433 4.736035 -0.423649 5.957176 -0.760058 7.504971 2.679978 -4.389614 0.994484 -4.518043 -2.310180 0.326257 4.768582 -5.349865 -1.878342 4.198007 -7.498280 -8.178475 5.047815 -0.034297 -1.786072 -5.906688 -1.375873 3.065003 1.870637 -3.466130 -7.211306 -5.946087 4.872543 -2.867479 -3.642775 -0.582840 -0.096027 -0.355998 0.473567 -5.778597 -0.398522 5.621207 -4.075639 -4.393802 6.264769 -1.357715 4.111110 -1.433484 0.657285 -0.859249 2.221461 1.218460 2.914887 0.282747 -1.669388 -9.173054 -0.833953 0.859980 0.750927 -2.291624 -0.844158 2.301180 3.195952 1.319687 5.784345 -3.045664 5.399337 4.389508 0.105468 -3.239182 -5.702747 -1.150480 -6.150749 1.499422 -3.777399 -4.075943 0.999561 5.359019 1.218598 0.654397 5.009491 -3.334562 4.204320 -0.331947 0.382027 1.034401 -3.768990 2.190506 -3.347858 -6.131296 3.541195 5.025888 2.602479 2.126201 -2.076526 -0.471202 -2.302741 -5.380962 2.066828 0.744394 -0.159725 6.575383 4.241825 14.235857 -6.610019 1.222770 -0.583360 -1.579622 1.610075 -2.044768 -7.105133 1.383972 1.743653 1.300562 9.258355 -0.507357 -3.019490 2.049450 -0.478404 0.994611 -5.083827 6.109654 -5.056365 -0.328705 -2.531110 -1.626327 -3.183086 -2.828628 -4.655324 -1.629120 8.137749 -5.884896 -7.695034 5.541573 -0.644860 2.153699 -9.803833 6.750389 -3.146506 5.648176 -2.450462 -1.829284 -0.423103 3.114020 -1.196204 2.004856 3.354446 -5.857684 4.098198 6.624332 0.727361 1.888162 1.443217 2.961391 -1.971542 -0.923914 -5.054925 5.870811 0.006959 -2.846151 -1.889743 -3.136946 4.099995 -0.175784 -0.300509 0.219622 5.063974 -1.942865 -0.931089 5.947558 0.208261 -3.435423 3.374947 1.102629 4.036477 -3.328071 -0.900675 -2.368947 0.730756 0.980005 2.777146 -7.570266 -3.882629 -5.688839 -7.380110 -2.287631 1.968805 2.995019 1.749428 0.185018 -8.674346 -5.352913 8.148365 -2.441588 3.086795 4.515141 5.216523 5.698344 4.311795 0.920826 -0.930713 -2.328613 0.083975 -3.696394 -2.581297 -1.275329 3.233697 -3.877476 5.380006 3.275843 0.665636 3.373330 0.765565 2.897768 -4.560638 8.439596 4.256414 -4.374701 1.835981 4.794709 7.379941 -5.720312 -4.350743 -PE-benchmarks/weighted-job-scheduling.cpp__void std::sort(Job*, Job*, bool (*)(Job, Job)) = -0.251092 -1.334721 2.511810 2.177017 -0.135794 0.961095 0.258586 -1.613293 1.703201 0.667232 -0.119858 0.652884 -1.393489 0.668577 -0.481256 1.184826 -1.704841 -1.316866 -0.588081 -1.257786 -0.842258 -1.240183 0.425879 0.541696 0.823314 0.309543 -1.239380 -0.095003 -1.673920 -1.428148 1.217004 -0.459723 1.109630 -0.102376 0.268253 -4.080586 1.812622 1.422281 -0.569172 -1.880025 0.433394 -1.013893 0.041244 -0.525530 -0.601585 0.363200 -0.121013 0.369492 1.127482 0.451133 0.491311 0.633671 0.336097 3.173890 -1.149749 1.415071 0.749082 -0.079002 -0.345240 0.367093 0.430935 0.549842 1.091233 0.972560 -0.363036 -1.374319 -0.234860 -0.586000 -1.788334 1.433627 -0.043492 -0.535201 -1.257216 -0.498758 -1.410434 -0.560227 -0.900574 1.410267 2.514149 -1.438965 1.478113 0.270917 0.694205 0.103453 1.150129 -0.038408 1.817393 0.587588 -0.811487 -0.002066 -0.909498 -0.302337 0.304049 0.103384 -0.934254 -2.014392 0.883305 -1.631481 -1.904645 0.924247 0.593717 -0.188383 -1.678714 -0.711511 0.973949 0.709402 -1.080255 -1.844358 -0.782772 0.850652 0.160982 -0.813429 0.116690 -0.637652 -0.310568 -0.757032 -1.895124 -0.205312 0.448127 -0.910184 -0.772750 1.680119 -0.736104 0.100374 -0.207502 0.569763 -0.713267 1.546586 -0.238372 1.186311 0.101338 0.200800 -1.529713 0.024117 0.614300 1.150746 -0.374672 -0.214943 -0.688803 0.551859 -0.981686 0.444312 -0.283175 0.821462 1.560664 -0.360765 -1.196531 -0.690572 -0.059974 -2.270640 0.342330 -1.320830 -0.629357 0.759491 1.475312 1.070897 1.112166 1.836642 -1.336824 0.995566 -0.324982 -0.067544 1.336498 0.023045 0.894333 -0.877424 -1.477333 0.870016 0.552757 0.544601 0.405666 -0.489117 -0.004499 -1.147834 -0.753768 0.590630 0.818446 -0.134830 1.376908 1.036915 2.117898 -1.832639 0.597037 0.823868 -0.509229 0.457661 -0.293280 -1.926004 0.638781 0.504900 -0.099107 1.709957 -0.366890 -1.064316 0.561774 -0.246314 0.685182 -1.193022 0.462176 -1.263983 -0.271166 -1.314895 -0.072453 -0.704351 -0.636445 -0.869605 -0.595082 2.097352 -1.639681 -1.522043 2.128366 -0.458484 0.895569 -2.412508 1.660260 -0.996916 1.313189 -0.686013 -0.184596 -0.164994 0.491477 -0.987495 0.474358 0.959920 -0.858254 0.613472 2.262723 0.560806 0.322006 0.071747 1.454943 -0.179855 0.779844 -0.962337 1.937982 -0.282690 -0.491870 0.026059 -0.808217 0.279250 -0.706427 0.395176 1.191752 1.271857 0.509643 0.746150 1.307152 1.080732 -0.908774 1.131402 -0.225176 0.648111 -0.808561 -0.118562 0.182239 0.719019 -0.466976 0.856373 -2.018523 -2.153774 -1.931252 -1.630457 -0.092882 0.163114 0.301009 -0.209997 -0.168282 -1.818434 -1.229944 1.218054 -0.820007 1.389576 1.014681 0.873606 1.320061 1.913723 -0.891885 -0.222616 -0.085989 0.013781 -0.300895 -0.394153 -1.237423 1.533885 -1.045979 0.735823 1.731790 -0.429579 0.668206 0.046808 1.300228 -1.084187 2.371398 0.910549 -0.687269 1.313828 1.236535 2.022700 0.272779 -1.078277 -PE-benchmarks/weighted-job-scheduling.cpp__int const& std::max(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/weighted-job-scheduling.cpp__main = -0.510575 -2.170592 3.060365 2.495316 -0.189789 1.248039 0.775950 -1.390197 1.414276 0.620646 -0.757144 1.327982 -1.605767 0.076704 -0.744522 0.711342 -1.848845 -1.686189 -0.282675 -0.914006 -0.580379 -1.318686 -0.313256 1.475279 0.890028 0.826830 -1.127997 -0.123890 -2.645673 -1.782113 0.856392 -0.295610 1.214829 0.288404 0.575969 -4.243637 1.751216 2.355097 -0.500676 -2.678398 0.451882 -1.000616 -0.545018 -0.477718 -0.644903 0.578313 0.359021 0.759885 0.296158 0.503645 0.112010 0.239095 0.793048 3.558550 -0.263898 2.118964 2.204519 0.091890 0.284389 0.267310 0.742017 0.100087 1.113807 1.125567 -0.475722 -0.989591 -0.336560 -0.704821 -1.651703 1.168161 0.302633 -0.827294 -1.220301 -0.833356 -2.011833 -0.446609 -1.007051 1.388312 3.136816 -1.792819 2.623612 0.874699 1.403691 -0.099439 1.466706 0.038096 1.997894 0.949272 -1.015898 0.168087 -1.872633 -0.754657 0.236105 0.302661 -1.545329 -1.836889 1.392173 -2.705575 -2.489945 1.279481 0.345948 -0.622197 -1.121262 -0.297557 0.877117 0.881399 -1.178177 -2.005109 -1.212909 1.178863 -0.407586 -0.982849 0.013241 0.407868 -0.190662 -0.512273 -2.256591 0.111032 1.348984 -1.170575 -0.495615 1.934900 -0.577920 0.939566 -0.439186 0.146557 -0.491142 1.540688 0.377169 0.761677 0.233643 -0.194881 -1.816678 0.206987 0.664443 1.171681 -0.958918 -0.231531 0.355046 0.942345 -0.028037 0.772834 -0.719096 1.205373 1.063339 -0.499926 -1.390868 -1.808514 -0.678111 -2.286278 0.300628 -1.362506 -1.070714 0.971352 1.754604 1.069712 0.658904 2.002256 -1.376256 1.147655 -0.081480 0.099821 0.604854 -0.307479 0.826293 -1.041896 -1.886882 1.214500 0.902066 0.885566 0.588783 -0.541519 0.012486 -1.198147 -1.399547 0.927244 0.764914 -0.139426 2.045839 1.434109 2.546309 -1.960459 0.331579 0.255252 -0.601944 0.289821 -0.294227 -2.353979 0.843484 0.431267 0.406983 2.453171 -0.188388 -0.904371 0.807154 -0.236657 0.387799 -1.463506 1.195534 -1.497840 -0.392896 -1.312125 0.253832 -0.891250 -0.862814 -1.408581 -0.834845 2.700610 -2.181748 -2.026463 1.807683 -0.121719 1.109226 -2.922162 1.784518 -1.088586 2.076484 -0.310212 -0.504745 0.044750 0.095139 -0.827677 0.293223 1.126917 -1.399941 0.803298 2.068771 0.525584 0.301152 0.479191 1.299298 -0.609748 0.395141 -1.415813 1.725100 -0.190401 -1.047888 -0.137353 -0.900444 0.817427 -0.365487 0.274646 1.253387 1.416379 0.531024 0.639091 1.557711 0.699522 -1.260842 0.839493 0.065072 1.298416 -1.121620 -0.326385 -0.527608 0.637172 -0.048114 0.916069 -2.480891 -2.310799 -2.442763 -2.289177 -0.526741 -0.314981 0.827284 0.092052 -0.096202 -2.562932 -1.763630 1.773217 -0.910637 1.332675 1.549398 1.258368 1.872346 1.649564 -0.524514 -0.261883 0.074993 0.584662 -0.732927 -0.398458 -1.259436 1.336043 -1.300746 1.177292 1.983250 -0.262735 1.064120 -0.061644 1.692549 -1.399792 2.994884 1.311960 -1.852705 0.791455 1.623612 2.105914 -0.499488 -1.493466 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.010209 -3.796369 6.666341 5.584794 0.244894 3.059861 0.290136 -4.001834 3.133031 2.238819 -1.013074 2.810345 -3.060251 1.392685 -2.663582 2.522374 -3.552939 -3.080802 -1.590487 -2.544733 -1.183038 -2.797149 0.234665 2.505081 2.131095 0.766653 -3.161389 0.491884 -5.414274 -5.690033 1.560310 -0.618357 2.375747 -1.972201 1.055275 -7.222893 4.903604 5.074550 -1.032803 -5.323234 1.366312 -1.880620 -1.395762 -0.253250 -1.234330 1.549639 -0.148957 0.625673 1.751648 1.664399 0.882103 2.073089 2.084883 6.602220 -1.674073 4.219965 3.043258 0.376736 0.554722 0.844465 0.773473 1.358840 1.873005 1.982773 -0.283390 -3.098844 -0.627734 0.087736 -3.252566 3.016239 -0.601758 -1.997147 -2.665427 -1.221396 -4.539723 -0.322565 -0.965486 2.762108 6.117351 -2.591459 4.003156 0.791866 1.638508 0.240414 2.994493 -0.137420 3.581161 2.046436 -1.760007 -0.185586 -2.350785 -0.395625 0.705239 0.696363 -3.546495 -4.760959 2.710772 -6.097013 -4.636991 2.547648 1.041523 -1.806421 -2.467522 -1.685839 1.873981 1.550761 -2.253923 -4.173439 -1.254110 2.942891 0.566541 -2.355779 0.692527 -1.261513 -0.062563 -0.272008 -4.197250 0.212952 1.972071 -2.035278 -1.643000 4.033508 -0.448041 0.861602 -0.906784 1.425978 -1.493229 2.520047 -0.185522 3.179038 -0.648416 1.023246 -3.099223 0.848412 1.446308 0.079884 -2.066917 0.172297 -0.901578 1.792411 -0.869503 2.143379 -2.350759 1.750874 3.014530 -0.754598 -2.616812 -2.450162 -0.944768 -4.605334 0.296012 -2.447415 -3.713094 1.008757 3.605197 1.426750 2.198226 3.738895 -2.774616 1.167473 -0.116788 0.020736 2.429674 -1.922848 1.419714 -2.080318 -4.288607 2.864438 1.875579 1.352120 0.968491 -0.636907 0.187241 -2.051950 -1.105981 2.150031 1.794786 -0.369681 4.355889 2.969442 4.367734 -2.847355 0.688456 1.349618 -2.120558 1.136718 -1.272730 -4.904038 1.301611 1.552584 1.408545 5.456652 -0.700826 -1.967583 2.352871 -0.432371 1.497665 -3.058929 2.279921 -3.492304 -0.778369 -2.661392 -0.517728 -1.128904 -1.327837 -2.810001 -2.010200 5.179401 -4.681315 -3.788784 4.560874 -0.559771 1.371695 -5.753407 2.607898 -2.311315 3.567015 0.594898 0.243602 0.136051 0.711982 -2.871995 0.714490 2.482780 -2.830525 2.528491 4.526233 1.045039 0.024827 0.160438 2.898898 -1.494669 1.260814 -3.230296 3.945415 -0.628563 -1.611509 -0.486895 -1.835417 0.529178 -2.154557 0.661008 1.223873 2.044673 0.900335 0.777240 3.312872 2.383709 -2.010460 2.981355 -0.848333 1.088493 -2.357944 -0.769797 -0.117871 1.475951 -0.140487 2.464204 -5.380267 -4.454947 -6.004903 -4.610544 0.094885 -0.672943 1.203137 -0.284675 -0.778216 -4.908230 -4.055426 4.401311 -1.651560 2.773796 3.539507 2.366853 2.980617 3.778578 -1.241509 0.469113 -1.180677 0.554671 -0.886355 -1.373753 -2.034844 3.532902 -1.993092 1.716646 4.264559 -0.978963 2.498865 0.099148 1.326404 -3.016921 5.780897 2.585457 -2.195749 2.203534 2.609521 4.589814 -0.717718 -2.767444 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(bool (*)(Job, Job)) = -0.020347 -0.621611 1.209425 1.105746 -0.211799 0.332774 0.105439 -0.767423 0.768812 0.104632 -0.084130 0.279651 -0.777080 0.408395 -0.284570 0.646259 -0.918754 -0.625629 -0.365894 -0.544051 -0.398464 -0.565866 0.452996 0.247572 0.515229 0.480541 -0.620348 -0.090134 -0.710163 -0.557854 0.628791 -0.218037 0.603002 0.348702 0.057038 -1.739630 0.803245 0.700684 -0.291858 -0.848435 0.308061 -0.485738 0.034937 -0.452957 -0.375681 0.170457 -0.144755 0.153893 0.588557 0.210810 0.202942 0.291003 0.215361 1.242369 -0.534549 0.601381 0.321276 0.003125 -0.226169 -0.030498 0.260477 0.354768 0.497236 0.452327 -0.161869 -0.735868 -0.275649 -0.435799 -0.903124 0.724667 -0.178770 -0.095424 -0.737229 -0.316060 -0.578217 -0.199224 -0.474550 0.771401 1.169587 -0.789072 0.597512 0.058195 0.114895 -0.112852 0.343384 0.001010 0.644864 0.302756 -0.207700 0.017723 -0.246409 -0.162855 0.187738 0.013848 -0.479902 -0.913171 0.524191 -0.790086 -0.918211 0.294580 0.388292 -0.140315 -0.632862 -0.177597 0.272644 0.409333 -0.485853 -0.803656 -0.172922 0.262546 0.381051 -0.380830 -0.113556 -0.029870 -0.240377 -0.401251 -1.009668 -0.073183 0.052710 -0.491530 -0.092825 0.661378 -0.318544 0.020562 -0.094308 0.241225 -0.323586 0.986638 -0.114776 0.564387 0.087801 0.239927 -0.310150 -0.011804 0.385722 0.705427 -0.309000 -0.096320 -0.380732 0.169548 -0.495100 -0.021451 -0.074248 0.243693 0.777387 -0.267973 -0.650737 -0.236948 -0.291586 -1.276107 0.125768 -0.704179 -0.064534 0.594149 0.664420 0.511297 0.572403 1.173838 -0.685239 0.309912 -0.021941 -0.177049 0.685364 0.269267 0.446214 -0.405243 -0.748468 0.538451 0.092151 0.266963 0.186849 -0.061275 -0.014752 -0.629549 -0.299888 0.464171 0.394617 -0.086107 0.609185 0.450402 0.632369 -0.576714 0.320072 0.466290 -0.179926 0.200834 -0.043825 -0.976050 0.400794 0.107367 -0.026587 0.653020 -0.163485 -0.374626 0.345020 -0.243637 0.340016 -0.653603 0.233318 -0.583441 -0.016681 -0.826509 0.048908 -0.133393 -0.305248 -0.263116 -0.201923 1.008023 -0.746710 -0.537168 0.940086 0.000000 0.521284 -1.014210 0.694905 -0.458946 0.779566 -0.263917 -0.137239 0.070769 -0.120842 -0.441707 0.003338 0.455843 -0.189126 0.062712 1.021258 0.267222 -0.070024 0.039986 0.720295 -0.030795 0.654159 -0.363759 0.921657 -0.016917 -0.258480 0.153417 -0.365598 -0.057924 -0.460130 0.125235 0.943789 0.628243 0.454169 0.538205 0.385514 0.737216 -0.488305 0.560451 -0.047874 0.356121 -0.379581 -0.070997 0.200996 0.535187 -0.322978 0.430831 -0.882162 -1.298906 -0.894152 -0.806235 -0.080796 -0.141839 0.283615 -0.251623 -0.165998 -0.619328 -0.675978 0.531472 -0.426000 0.935027 0.413134 0.364923 0.622650 0.907145 -0.554817 -0.030015 0.076249 0.205922 0.032874 -0.051341 -0.670637 0.691931 -0.457242 0.141455 0.979391 -0.305145 0.349412 -0.089296 0.772468 -0.493136 1.160305 0.339230 -0.377892 0.851196 0.518173 0.745839 0.390675 -0.524971 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__introsort_loop >(Job*, Job*, long, __gnu_cxx::__ops::_Iter_comp_iter) = 0.147860 -4.469640 8.616589 6.961985 0.491136 3.435257 0.932844 -5.518110 4.567439 3.250948 -1.220165 3.328203 -3.825716 1.930528 -3.193667 3.794777 -4.573346 -3.812360 -2.037178 -3.448236 -1.744593 -3.965251 0.977510 2.451695 2.902288 0.993471 -4.203613 0.650356 -6.255704 -8.424622 2.485150 -0.818873 2.839850 -3.312682 0.884313 -10.737805 6.632200 6.273021 -1.471492 -6.658266 1.870191 -2.197268 -1.932627 -0.290198 -1.002881 1.914994 -0.335859 1.316129 2.354900 2.343524 1.736869 2.852455 2.692641 9.289901 -2.845910 5.261488 4.021730 0.631390 0.248139 1.275908 1.099064 1.887468 2.292517 3.101206 -0.225885 -3.933788 -0.726692 -0.031019 -4.617924 4.015496 -0.826972 -2.838984 -3.857241 -1.566808 -5.272341 -0.158827 -2.094073 3.545918 8.071672 -3.440972 5.278692 0.867955 2.137243 0.135468 3.226848 -0.407260 4.882333 2.566412 -2.412356 -0.923211 -2.729749 -0.806732 0.995032 1.268999 -4.174976 -5.647477 3.410372 -6.804855 -5.733573 2.821155 1.524406 -2.149967 -3.651466 -2.012321 2.449601 1.816731 -2.368266 -5.558567 -2.103062 3.264974 0.621664 -2.922888 0.462644 -1.647557 -0.412088 -0.018824 -5.633512 0.079367 1.997936 -2.572448 -2.713675 4.552269 -0.958263 0.801812 -1.164948 1.861376 -1.719400 3.103098 -0.313701 4.345492 0.193546 1.462773 -4.865584 1.312523 2.142939 0.838979 -2.532724 0.657741 -1.427760 2.033806 -1.506024 2.600846 -2.979690 2.376594 4.293119 -1.085388 -3.538907 -2.840980 -0.804454 -6.166296 1.094542 -3.334891 -3.918045 1.093893 4.475533 1.671610 2.867957 5.037068 -4.621519 2.008095 0.028189 0.238063 3.127234 -2.106999 1.767402 -2.639946 -5.594677 3.479887 2.493089 1.198200 0.972994 -0.635753 0.267717 -2.885720 -1.578324 2.926486 1.835616 -0.745687 4.968233 3.389297 7.562342 -4.494449 1.079882 2.052160 -2.454047 1.312329 -1.457600 -6.188650 2.147865 1.719071 2.587753 6.923590 -0.606278 -2.649652 2.583980 -0.541310 1.727080 -3.611457 3.029102 -4.286336 -1.483960 -3.128716 -0.747215 -1.069006 -1.571256 -2.894577 -1.689317 6.432139 -5.467931 -5.254421 6.322435 -1.437075 1.635691 -7.661696 4.916433 -2.917938 3.759979 0.078522 0.376819 0.156904 1.112619 -3.679927 1.080739 3.008352 -3.200254 3.101785 6.691375 1.287194 0.144631 -0.013211 3.487566 -1.814006 1.856760 -3.728520 5.418422 -0.689321 -2.138229 -0.943258 -2.255944 0.916308 -2.909022 0.598756 2.233081 2.917875 0.872750 1.210016 4.089208 3.544433 -2.763370 4.641459 -0.781387 1.415015 -2.794236 -0.990467 0.277034 1.508431 -0.561376 3.496283 -6.438542 -5.672300 -6.842606 -6.479969 -0.029590 -0.741148 1.935069 -0.878891 -1.004934 -6.403482 -4.966935 5.659211 -1.899719 3.356673 4.288080 2.938198 3.433479 4.678707 -1.683861 0.719370 -1.971156 0.460986 -1.019417 -2.175598 -2.262396 4.511395 -2.721854 1.789636 5.356824 -1.143966 2.939630 -0.143583 1.776220 -3.464239 7.587293 3.030078 -2.189309 2.913225 3.103442 6.375884 -0.938930 -3.458602 -PE-benchmarks/weighted-job-scheduling.cpp__long std::__lg(long) = -0.388714 -0.887646 0.559691 0.540103 0.125697 0.459569 0.452763 0.070822 0.222892 0.324300 -0.160885 0.359949 -0.624987 -0.340939 0.050345 -0.132923 -0.068852 -0.563584 0.138614 0.016990 0.030929 -0.370239 -0.512510 0.770176 0.117541 -0.061064 -0.081946 -0.134781 -1.079301 -0.028637 -0.103941 -0.045057 0.337590 0.232382 0.348617 -0.425540 0.124149 0.752669 0.036928 -0.715983 -0.096965 -0.279772 0.168148 -0.126160 -0.049559 0.241120 0.444709 -0.007531 -0.135496 0.021531 -0.060101 -0.326641 0.204879 0.530303 0.230217 0.621549 0.728174 0.055216 0.370629 -0.089364 0.204481 -0.340486 0.329589 0.075930 -0.334465 0.054058 -0.196289 -0.091434 -0.284734 -0.011118 0.257085 -0.008429 -0.336612 -0.230145 -0.711259 -0.341899 -0.414437 0.080546 0.815084 -0.496579 0.958289 0.633958 0.672877 0.119029 0.616850 0.073708 0.349125 0.186202 -0.485993 0.504529 -0.818511 -0.163706 -0.187105 0.180999 -0.412052 -0.257616 0.321852 -0.625274 -0.803748 0.546915 -0.241480 -0.014260 -0.174037 0.067492 0.107035 0.323289 -0.480382 -0.609413 -0.371073 0.255944 -0.152042 -0.260649 0.216610 0.204160 0.071076 -0.316725 -0.447828 -0.080669 0.585026 -0.548955 -0.031473 0.652168 -0.244928 0.747106 -0.062558 -0.163307 -0.013177 0.337299 0.546594 -0.017053 -0.090407 -0.557083 -0.864517 -0.311526 -0.036085 0.484205 -0.193340 -0.035034 0.425884 0.281687 0.494610 0.391663 0.152252 0.382272 -0.080276 -0.126207 -0.127952 -0.742164 -0.286642 -0.236892 0.150178 -0.172237 -0.063368 0.135649 0.398804 0.141765 -0.117509 0.558297 0.012230 0.203227 -0.096506 -0.044974 -0.123426 -0.060107 0.219270 -0.217225 -0.424655 0.326479 0.503293 0.370699 0.328844 -0.298511 0.068895 -0.101002 -0.321622 -0.137390 -0.005056 -0.203714 0.800716 0.344999 0.095726 -0.383491 0.012622 -0.277341 0.031500 0.192791 -0.107553 -0.606803 0.334770 0.028732 -0.284601 0.377786 -0.106258 -0.199017 0.477255 -0.171001 0.059436 -0.494821 0.384163 -0.456498 -0.125338 -0.440063 0.302329 -0.443115 -0.357891 -0.436588 -0.050814 0.704703 -0.139573 -0.257239 -0.092203 0.559917 0.264182 -0.511194 0.378429 -0.186954 0.708693 -0.053149 -0.305747 0.130773 0.344829 0.255536 -0.379295 0.353888 -0.559558 0.221087 0.068594 0.030244 0.018322 0.457836 0.232105 -0.048170 -0.252288 -0.406515 0.123055 -0.008382 -0.254780 0.067098 -0.256931 0.594479 0.313319 -0.111565 0.090044 0.439711 -0.086561 -0.031530 0.404955 -0.272424 -0.234497 -0.245527 0.137292 0.666643 -0.417201 0.082174 -0.613337 0.115151 0.152003 0.150785 -0.658521 -0.356541 -0.100278 -0.282480 -0.329410 0.223133 -0.018905 0.407379 0.067203 -0.680912 -0.429651 0.204371 -0.273866 -0.022418 0.266710 0.381370 0.697557 0.246820 0.112241 -0.371074 0.284780 0.115373 -0.337571 0.021230 -0.146265 0.062275 -0.523314 0.513447 0.290240 -0.033160 0.208202 0.014377 0.571906 -0.486760 0.843235 0.431572 -0.742412 0.079150 0.713955 0.693001 -0.509672 -0.369161 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__final_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.716588 -4.020553 8.750951 7.551479 -0.151112 3.346365 -0.136934 -6.115560 5.052656 2.636071 -1.270386 2.991187 -3.941530 2.368990 -3.304152 4.399026 -5.598715 -3.853976 -2.472903 -3.759299 -2.362323 -3.814799 1.546857 2.034245 3.068432 2.317332 -4.415900 1.161450 -5.305412 -8.192027 2.661076 -0.903966 2.955674 -1.228002 1.078326 -9.850963 7.123711 6.118241 -1.709304 -6.330014 1.763333 -2.445364 -2.133015 -0.933907 -1.215874 1.920276 -0.962032 1.832522 2.877681 2.195401 1.542381 2.995829 2.611771 8.449696 -2.774711 5.187304 3.337962 0.652864 -0.129692 1.312801 1.319607 2.574599 2.573209 3.281987 -0.335250 -4.533495 -0.702466 -0.471718 -4.633975 4.844824 -0.895902 -2.809549 -3.956271 -1.926735 -4.814533 -0.139577 -2.613236 4.155152 8.008157 -3.759097 4.342609 0.846223 1.660830 -0.191185 3.273419 -0.736477 5.565454 2.702248 -2.023109 -0.911405 -2.393647 -1.518246 1.573351 0.326570 -4.376565 -6.308061 3.344320 -7.903898 -6.076876 2.522349 2.166925 -2.168326 -3.717299 -1.942329 2.965933 1.456128 -2.227310 -5.259357 -1.197775 3.170654 0.582382 -3.010111 0.050666 -1.247233 -0.465032 0.374643 -6.308735 -0.017346 1.693559 -2.414263 -1.823977 4.626743 -0.466575 0.092652 -1.313679 1.766329 -1.806061 3.618480 -1.153339 4.559246 -0.084543 2.648768 -2.741926 2.021369 2.358591 -0.135230 -2.440100 0.282920 -1.705076 2.102604 -2.704111 2.275527 -3.743155 2.212161 4.483285 -1.087429 -4.057780 -2.421104 -1.647250 -6.729681 0.936578 -3.774474 -4.422828 1.113833 4.802641 2.194346 3.427413 4.955323 -4.827018 1.784177 -0.030716 0.625524 3.778372 -1.518973 2.073513 -2.769552 -5.496227 3.911215 1.950086 1.257171 1.008264 -0.733284 0.099284 -3.311077 -1.954064 3.588144 2.040529 -0.365472 4.965198 3.481704 6.564336 -3.926371 1.664361 2.638937 -2.260129 1.396942 -1.193155 -6.432934 1.950883 1.591472 3.153374 7.073373 -0.751067 -2.457681 2.106021 -0.319485 1.973962 -3.943393 2.461334 -4.357594 -0.838489 -3.469313 0.026138 -1.037582 -1.560830 -2.792408 -2.114682 6.579474 -6.012572 -5.118830 7.220978 -1.811642 2.307062 -7.268277 3.287971 -3.119998 3.975636 0.084920 0.310745 0.260472 -0.530350 -4.189830 1.199094 3.121468 -2.625694 2.602884 6.310792 1.426567 0.223916 -0.193201 3.749473 -1.911792 2.715138 -3.814708 5.973138 -0.498614 -2.001152 -0.868969 -2.448262 0.091671 -3.467198 0.784487 2.805433 3.048559 1.671579 1.736268 3.358034 4.114744 -3.213076 4.867989 -0.608679 0.676982 -2.879006 -1.091523 1.013086 1.597369 -1.195120 3.625830 -6.586362 -6.216755 -7.724340 -6.039935 -0.217175 -1.225952 2.355066 -1.224910 -1.245498 -5.338395 -5.183380 6.360880 -2.054549 3.949703 4.269680 3.039955 3.482490 5.399034 -2.118319 0.931059 -1.835461 0.464711 -0.827509 -2.125004 -2.977681 5.196007 -1.902826 1.790198 5.838275 -1.518627 3.057006 -0.867473 2.505831 -3.386267 7.093288 2.879781 -2.235175 3.257309 3.026093 6.067321 0.089582 -3.726936 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__partial_sort >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.550751 -1.626412 3.264829 2.682992 0.197211 1.222983 0.511352 -2.185531 2.506265 1.183013 -0.229807 0.807271 -1.855675 0.830627 -0.950450 1.669948 -2.060129 -1.884169 -0.634330 -1.663549 -1.098075 -1.809970 0.714738 0.409303 1.059054 0.120254 -1.669897 -0.016455 -2.341663 -2.534774 1.543808 -0.690580 1.286962 -0.705241 0.080277 -5.233357 2.599938 1.917310 -0.811518 -2.366358 0.627740 -1.377530 -0.074799 -0.480016 -0.351975 0.473928 -0.079401 0.532433 1.515002 0.652029 1.069999 0.814646 0.332513 4.235316 -1.818934 1.919974 0.926109 0.030563 -0.554136 0.751700 0.529573 0.681519 1.468567 1.583630 -0.633361 -1.665044 -0.098089 -0.598415 -2.435795 1.928315 -0.175721 -0.755098 -1.552108 -0.433639 -1.785924 -0.646009 -1.002938 1.509825 3.432474 -1.637732 2.076619 0.388416 1.141311 0.084750 1.429975 -0.148059 2.536809 0.736243 -1.318299 -0.458787 -1.289202 -0.189670 0.293924 0.534198 -1.027414 -2.252830 1.151757 -2.078423 -2.514388 1.027497 0.664808 -0.183358 -2.420154 -0.696237 1.468359 0.812480 -1.271239 -2.582658 -1.180612 1.043800 -0.120760 -1.030246 0.255304 -1.234567 -0.487750 -0.777202 -2.486088 -0.499669 0.475290 -1.313885 -1.442078 2.128605 -1.050605 0.133732 -0.228434 0.852401 -0.820290 1.610239 -0.390985 1.638769 0.274652 0.292693 -2.520543 0.027877 0.832865 1.387864 -0.579581 -0.019841 -0.937969 0.628339 -1.448012 0.563509 -0.758466 1.135305 2.162178 -0.634596 -1.525511 -0.783944 0.237062 -2.919491 0.638512 -1.733313 -0.956734 0.381078 1.983931 1.198334 1.531756 2.632192 -1.950390 1.541409 -0.353885 -0.024960 1.779237 -0.336324 1.227083 -1.169053 -2.025256 1.068689 0.976511 0.488666 0.424856 -0.675571 -0.062530 -1.688359 -1.065138 0.776638 0.868040 -0.182656 1.727724 1.190824 3.268320 -2.829743 0.925857 1.210047 -0.522708 0.609408 -0.412137 -2.557148 0.893681 0.701023 0.253519 2.348611 -0.286956 -1.631726 0.575111 -0.225040 0.930597 -1.625008 0.672087 -1.680125 -0.451762 -1.469342 -0.154852 -0.867129 -0.865263 -0.992600 -0.610070 2.605467 -1.843219 -2.338661 2.868597 -0.754475 1.103257 -3.411709 2.162587 -1.409291 1.538895 -0.996687 0.044644 -0.293077 0.937699 -1.252633 0.723550 1.208645 -1.138755 1.282561 3.091051 0.773152 0.716237 0.054707 1.838220 -0.254620 0.822732 -1.180640 2.508813 -0.312144 -0.924846 -0.026448 -1.102105 0.531731 -0.828217 0.473071 1.380568 1.918966 0.281416 1.070281 1.770302 1.538335 -1.220686 1.664414 -0.217119 0.914565 -0.937904 -0.204617 0.246755 0.638395 -0.691342 1.311662 -2.625396 -2.746997 -2.145823 -2.567108 0.021671 0.162260 0.418057 -0.263556 -0.011577 -2.596046 -1.447789 1.804941 -0.981347 1.988940 1.306496 1.209716 1.549372 2.450850 -1.199380 -0.313553 -0.355103 -0.085485 -0.594113 -0.828458 -1.389564 1.950001 -1.403595 1.063331 1.968553 -0.582722 0.656861 0.016737 1.386520 -1.356332 3.117420 1.266940 -0.616653 1.770185 1.293933 3.199170 0.189938 -1.389902 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition_pivot >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.409682 -3.469671 7.016902 6.065351 -0.156005 3.158459 0.178993 -4.604915 3.993240 2.467039 -0.412110 2.382372 -3.273720 1.763390 -1.937512 3.343528 -4.236782 -2.975870 -1.926443 -3.350926 -2.124850 -3.191454 0.596441 1.911135 2.115775 1.704458 -3.500589 0.827299 -4.363665 -6.720354 2.181998 -0.672992 2.666952 -1.438111 0.911800 -10.070737 5.763652 5.015772 -1.248634 -5.165167 1.272153 -2.032137 -1.080156 -0.178711 -1.309469 1.587253 -0.798471 0.694981 2.413931 1.449436 1.345237 2.448347 2.103832 7.784209 -2.365788 4.198399 2.613849 0.240250 -0.476521 0.978127 0.861902 1.876782 2.196952 2.469961 -0.471056 -3.584612 -0.323520 -0.328624 -4.046996 3.614370 -0.356323 -2.653955 -2.847489 -1.531403 -3.998649 -0.774578 -1.678239 3.113660 6.525804 -3.035570 3.897398 0.367549 1.443482 0.357763 3.256056 -0.497256 4.864600 1.938519 -1.996202 -0.232319 -1.386503 -0.692702 1.264660 1.359330 -3.551927 -5.062953 2.461636 -5.260280 -4.940050 2.475250 1.462254 -1.414747 -4.093875 -2.443336 2.483544 1.259915 -2.288914 -4.646572 -1.838430 2.959742 0.284764 -2.479406 0.044713 -1.433147 -0.385917 -0.246769 -4.791301 0.008846 1.478087 -1.916032 -2.296242 4.154323 -0.590667 0.272034 -0.888993 1.740301 -1.790752 2.883428 -0.857013 3.562319 -0.414845 1.440471 -2.985409 0.446539 1.382325 0.740974 -1.879309 -0.886710 -1.534353 1.670196 -1.946676 2.155023 -2.287354 2.114274 4.602454 -0.462572 -2.750003 -1.811627 -0.686906 -5.778958 0.678372 -3.128365 -3.169184 1.194489 3.829381 1.486217 2.546092 4.003086 -3.791594 2.220728 -0.282399 0.123293 3.171915 -0.835543 1.571283 -2.364781 -4.473467 2.739729 1.525535 1.497165 0.707930 -0.801191 -0.043228 -2.182753 -1.682138 2.768975 1.586387 -0.321225 4.049987 3.005255 7.538874 -3.804892 1.238253 1.796773 -2.275856 1.340633 -1.121597 -4.961501 1.120997 1.739605 1.269803 5.974952 -0.912076 -2.360027 1.744989 -0.128239 1.717320 -3.386926 2.480758 -3.614264 -0.507549 -2.871246 -0.913513 -1.411623 -1.266595 -2.728730 -1.683917 5.408643 -5.186493 -4.501256 5.747241 -1.397159 1.776572 -6.473966 3.448662 -2.514922 2.973897 -0.915851 -0.009659 0.038233 0.612837 -3.111252 1.653446 2.506663 -2.738857 2.095685 5.657031 1.144151 0.361082 -0.279329 3.183246 -1.129277 1.742818 -3.328902 5.240146 -0.520225 -1.376385 -0.825960 -2.082870 0.442022 -2.386255 0.713698 1.572618 2.684173 0.831523 0.657265 3.400300 2.750270 -2.274335 3.815795 -0.649611 0.885652 -2.304667 -0.777591 0.474299 1.836966 -0.456686 2.655245 -5.505377 -4.553299 -5.779899 -5.028389 -0.269798 0.601767 1.528481 -0.410088 -0.787190 -4.820397 -3.953760 5.464545 -1.727515 3.683154 3.190839 2.610092 3.084365 4.427761 -1.391664 0.232975 -1.541316 -0.075570 -0.818328 -1.489679 -2.281799 4.178207 -1.910090 1.693611 4.318063 -0.979096 2.552008 -0.363388 2.185234 -2.924985 6.067085 2.429173 -1.621780 2.694631 2.749605 5.360866 -0.222113 -2.889724 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__heap_select >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.767031 -3.593970 6.454872 5.423817 0.657405 2.880761 0.815843 -4.161975 4.395310 2.573075 -0.969976 2.195451 -3.450792 1.239703 -2.165717 2.959487 -3.599863 -3.615552 -1.120648 -2.725556 -1.656190 -3.470941 0.769117 1.564233 2.004452 0.955874 -3.202160 0.489201 -5.141658 -6.107111 2.256755 -0.912226 2.404076 -1.340610 0.505102 -8.684153 5.265169 4.879906 -1.224352 -5.260082 1.152906 -2.301892 -1.097955 -0.268814 -0.236643 1.526018 -0.059104 1.256230 2.078606 1.520122 1.652698 1.614370 1.293618 7.052295 -2.461931 4.253141 2.709640 0.440024 -0.375283 1.317446 1.034175 1.329237 2.592684 3.022904 -1.169103 -2.892962 -0.159226 -0.402537 -4.301319 3.388845 -0.211659 -2.007104 -2.741731 -1.041471 -3.537470 -0.603661 -1.218116 2.536750 6.664189 -2.637747 4.469239 0.991449 2.361560 -0.151299 2.970402 -0.574630 4.651114 1.843722 -2.556420 -1.019615 -2.995858 -0.858785 0.594934 1.267715 -2.856250 -3.682056 2.410527 -4.867262 -4.948686 2.021276 0.982576 -1.037772 -4.041464 -1.025343 2.805741 1.504651 -1.976086 -4.732987 -2.051643 2.504771 -0.585384 -2.356932 0.221657 -1.625535 -0.763763 -0.534053 -4.652527 -0.699672 1.649908 -2.496587 -2.427307 3.940566 -1.414825 0.713389 -0.828660 1.345657 -1.243055 2.391940 -0.382362 2.997117 0.669347 0.569310 -4.152399 0.741653 1.414929 1.467894 -1.851653 0.035440 -0.998716 1.497603 -1.811071 1.656636 -2.495692 2.070658 4.016506 -1.020261 -2.792345 -2.119521 -0.040529 -5.082982 1.094303 -3.062664 -2.534491 0.256803 3.895708 1.562512 2.468198 4.792828 -3.925029 2.524624 -0.221391 0.396144 2.728888 -0.952411 1.836702 -2.291738 -4.291964 2.612609 2.205244 0.850532 0.831935 -1.041725 -0.088963 -2.793943 -2.231160 2.266804 1.274649 -0.170941 3.919361 2.448147 6.312365 -4.558139 1.351320 1.731501 -1.401308 1.199262 -0.947613 -5.125760 1.666075 1.309309 1.837794 5.608038 -0.484238 -2.730868 1.429773 -0.062123 1.487310 -3.302871 2.300007 -3.632170 -0.804462 -2.493631 -0.337766 -1.390317 -1.646728 -2.312954 -1.123247 5.170916 -3.333476 -4.952208 5.084886 -1.551561 1.854029 -6.691614 2.962322 -2.687792 2.853874 -0.951047 0.278181 -0.225175 0.942783 -2.464717 0.997368 2.459792 -2.511342 2.914845 5.341612 1.153146 0.759678 0.254536 2.861877 -1.019726 1.128125 -2.831486 4.462070 -0.412007 -1.767211 -0.487998 -2.140674 1.228329 -1.759676 0.309974 1.988505 3.360676 0.323162 1.436662 3.239392 2.549717 -2.456339 3.391915 -0.229306 1.551978 -1.954559 -0.686928 0.028936 0.964763 -0.731150 2.801722 -5.231880 -4.878901 -4.267337 -5.685919 -0.113898 -0.155973 1.444487 -0.243213 -0.194137 -5.155586 -3.384006 4.219809 -1.609836 4.061040 2.955035 2.642176 2.929939 4.084664 -1.825992 -0.121463 -1.161700 0.048250 -1.525985 -1.933025 -2.005252 3.579103 -2.045086 2.172229 3.811645 -0.942522 1.771501 -0.684677 2.332129 -2.690344 6.012012 2.655385 -1.697387 2.591447 1.919769 6.085729 -0.561134 -2.889066 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.453403 -2.070583 3.374663 2.810555 0.527312 1.819431 0.392427 -1.789860 1.746628 1.514594 -0.453480 1.313983 -1.820991 0.504639 -0.794814 1.114137 -1.449799 -1.611462 -0.596090 -1.152000 -0.293041 -1.758118 -0.152882 1.346790 0.852467 0.269816 -1.385447 0.384602 -3.022547 -3.175751 0.969992 -0.374797 1.307650 -0.856242 0.534728 -4.036550 2.683145 2.618318 -0.364192 -2.773855 0.575029 -1.033433 -0.508334 0.072033 0.093599 1.045497 0.236247 0.159702 0.836980 0.743830 0.403686 0.505715 0.928837 2.977463 -1.165645 2.134524 1.544693 0.028664 0.392296 0.470801 0.096376 0.449541 1.102248 1.307669 -0.647309 -1.303782 0.081080 0.185761 -2.041576 1.298177 -0.232500 -0.887482 -1.338282 -0.557228 -2.098373 -0.133003 -0.637367 1.161973 3.299367 -0.974197 2.537254 0.425891 1.209708 0.280890 1.811937 -0.005935 1.758763 0.906993 -1.525676 -0.143004 -1.633459 -0.353829 0.211632 0.894594 -1.535779 -1.363525 1.112292 -2.210775 -2.138874 1.326329 0.016095 -0.700115 -1.955759 -0.880245 0.990906 0.961687 -1.055885 -2.458967 -0.974559 1.612751 -0.055621 -1.178779 0.412817 -0.965799 -0.401106 -0.650338 -1.905809 -0.185075 1.118411 -1.306478 -1.347563 2.158585 -0.786671 0.697624 -0.366671 0.782104 -0.777691 0.939470 0.139034 1.495230 0.238824 -0.265698 -2.396053 0.040276 0.584238 0.956518 -0.950953 0.074844 -0.378694 0.741078 -0.261526 1.040898 -0.850783 1.007754 1.921732 -0.412783 -0.926418 -1.182057 0.086113 -2.172942 0.407114 -1.173375 -1.345052 0.245775 1.825180 0.326560 0.965966 2.337655 -1.914695 0.940104 -0.277500 -0.039885 1.104558 -0.599316 0.662601 -1.101177 -2.170521 1.261067 1.208363 0.355071 0.604482 -0.586067 0.108172 -0.981047 -0.597890 1.132789 0.550373 -0.293192 2.242686 1.376577 3.013134 -1.752670 0.329770 0.554507 -1.018513 0.629953 -0.629561 -2.368751 0.840401 0.891822 0.432920 2.745452 -0.350363 -1.457437 1.143417 -0.151435 0.699929 -1.547169 1.447420 -1.871885 -0.477744 -1.213546 -0.606212 -0.635921 -1.029359 -1.431702 -0.287489 2.490195 -1.372970 -2.267911 1.939726 -0.415238 0.577803 -3.280226 1.526318 -1.268230 1.419343 0.000959 0.205189 -0.055372 0.998783 -1.074131 0.170266 1.247194 -1.539461 1.717662 2.454026 0.528786 0.014477 0.262957 1.300195 -0.489744 -0.021751 -1.618271 1.753363 -0.340599 -0.480811 -0.225214 -1.019866 0.897285 -0.807405 -0.051502 0.219719 1.540193 -0.039321 0.253496 1.923185 0.735344 -0.686565 1.403614 -0.404339 0.856083 -1.026838 -0.314682 -0.388128 0.742437 0.241813 1.406647 -2.731322 -2.098171 -1.771695 -2.655110 -0.060892 0.368895 0.435799 0.397343 -0.022197 -2.928053 -1.718321 1.932877 -0.746519 1.676745 1.483516 1.275466 1.346656 1.727152 -0.559416 -0.289250 -0.522906 0.202254 -0.856605 -0.617793 -0.737811 1.616573 -1.261476 1.015614 1.744302 -0.452900 0.985207 -0.238773 0.868730 -1.650907 3.156283 1.501458 -0.939935 1.122001 1.105358 2.932628 -0.685365 -1.242705 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__make_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.431975 -6.900606 9.525098 8.291317 0.876611 5.221726 1.680680 -4.574703 4.405015 4.339602 -1.838478 4.887949 -4.976770 1.050864 -3.443464 3.268846 -4.190950 -4.803768 -1.489635 -2.675802 -0.995615 -4.399304 -0.797752 4.713136 3.037338 1.258424 -4.003801 0.331495 -9.256697 -9.123427 1.189573 -0.595682 3.498652 -3.612847 1.795269 -9.894384 6.845458 8.808887 -1.038057 -9.378080 1.914013 -2.550889 -2.190460 0.599540 -0.991316 2.910696 0.581182 1.693580 1.438764 2.729811 0.347036 2.468745 3.972083 9.804461 -1.257194 7.015049 6.493067 1.218254 1.361151 1.116632 1.357379 1.204187 2.443277 2.908415 -0.628087 -3.598474 -1.235196 0.626177 -4.523445 3.479026 -0.243662 -3.315171 -3.883227 -1.714880 -6.743331 -0.259552 -1.902552 3.602786 9.474887 -3.942715 7.408444 1.751585 3.459087 0.399326 4.765722 -0.304460 4.496638 3.272454 -3.210511 -0.290608 -4.679619 -1.000776 0.714279 1.149430 -5.867928 -6.657058 4.146146 -8.210913 -7.413924 4.211846 0.654417 -2.929265 -2.713147 -1.997976 2.756477 2.823000 -3.377011 -6.396883 -2.654321 4.918392 0.091903 -3.870879 1.087029 -0.928628 0.052244 -0.143765 -5.918649 0.333319 4.119279 -3.582745 -2.387879 5.963692 -0.667589 2.880008 -1.464745 1.542146 -1.555872 2.951839 1.304738 4.218913 -0.003846 0.383984 -5.266119 1.725720 1.624833 0.209270 -3.644972 0.618687 0.014636 3.036569 0.775441 3.885050 -3.583694 2.808184 3.747283 -1.104948 -3.245672 -4.792571 -1.401348 -5.558476 0.879373 -3.438081 -5.082329 1.054231 5.354951 0.936769 2.157107 5.645912 -4.656050 1.978290 0.325065 0.578197 2.323427 -2.202179 1.507759 -3.183403 -6.656354 4.181623 3.747076 2.000411 1.096835 -0.837997 0.440927 -2.428068 -1.817073 3.168698 1.901864 -1.208697 7.265743 4.446208 7.056173 -3.788399 0.191093 0.781236 -3.583570 1.786872 -2.202900 -7.797101 2.186392 2.236021 3.093915 8.788443 -1.023507 -2.790230 4.294350 -0.500158 1.605169 -4.624322 4.949402 -5.822607 -1.877813 -3.449752 -0.498857 -1.837105 -2.266892 -4.763459 -2.034253 8.061081 -5.874516 -5.793990 5.092575 -0.681673 1.364718 -8.774753 4.786431 -3.323838 4.662618 1.303056 0.128650 0.579609 1.434319 -3.460576 -0.024490 3.903780 -4.994450 4.442787 6.009214 1.123159 -0.551657 1.070628 3.552737 -2.404855 0.552344 -5.401483 5.066032 -1.015393 -2.656951 -1.123001 -2.811265 2.199179 -2.450675 0.120600 1.344272 2.895894 0.398652 0.447616 4.919177 2.410764 -3.060488 4.264006 -1.013940 2.752808 -3.767990 -1.013947 -1.716772 1.652782 0.773759 4.159286 -8.325861 -5.619934 -7.625915 -7.413133 -0.454017 -0.785612 2.400741 0.114968 -0.820671 -8.465956 -6.540229 6.234614 -2.207999 3.083566 5.547062 3.967336 4.941216 4.646907 -0.761773 0.555219 -1.904238 0.825474 -2.150992 -2.522681 -1.465388 4.133804 -3.105612 2.899825 5.671828 -0.726127 3.879827 -0.992755 1.904700 -4.689876 8.924209 4.430815 -3.954999 2.178178 4.249299 7.490027 -2.813190 -4.431438 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(Job*, Job*) = 0.810283 -1.935416 4.623344 3.704978 -0.501001 1.117860 0.098253 -2.928588 2.039240 0.949326 -0.809062 1.902564 -1.610786 1.438939 -3.184492 2.455262 -2.960108 -1.779478 -1.470000 -2.008126 -1.510909 -1.127437 0.945466 0.739854 1.988235 1.093997 -2.306554 -0.013785 -2.471653 -4.033219 0.629925 -0.304509 1.061274 -1.888258 0.261764 -4.425513 3.108188 3.147467 -1.178226 -3.076832 1.380927 -1.102755 -1.351636 -0.582709 -1.191322 0.285715 -0.635770 1.206169 1.163708 1.387139 0.869540 2.371366 1.889838 5.560221 -0.939773 2.571800 2.222957 0.852337 -0.185772 0.661591 1.037109 1.250162 0.601424 0.866180 0.813269 -2.457475 -1.129643 -0.407269 -1.234754 2.232954 -0.871183 -1.586482 -1.823201 -1.093856 -2.858673 -0.080774 -2.680511 2.244072 3.610387 -2.772467 1.574981 0.343399 0.335391 0.096153 0.957747 -0.154086 2.050014 1.534651 0.002526 -0.535673 -0.057178 0.095887 1.033607 -0.663915 -2.630123 -5.364012 2.642211 -4.738754 -3.252061 1.343625 1.649601 -1.573104 -0.116270 -0.988608 0.690568 0.715033 -1.580839 -2.026634 -0.373112 1.367326 1.273553 -1.405983 0.424556 -0.270456 0.471276 0.780338 -3.464809 0.802719 0.786690 -0.857312 -0.438793 2.072537 0.851548 0.054176 -0.686144 0.927626 -0.808540 2.249000 -0.533546 2.376956 -1.177046 2.826952 -0.823708 1.696602 1.627686 -1.294894 -1.670529 0.848451 -0.782983 1.217570 -0.998637 1.144792 -2.434657 0.968017 1.473782 -0.751631 -2.418646 -1.558811 -1.501840 -3.148799 0.030437 -1.767937 -3.076529 0.699786 2.212521 1.562507 1.591478 2.137717 -1.781797 0.207871 0.516133 0.000321 1.679771 -1.568410 1.048093 -1.286560 -2.936876 1.924956 0.869135 1.062355 0.176165 0.327127 0.189764 -1.734531 -0.215147 1.708677 1.601371 -0.738923 2.558793 2.069479 2.255568 -1.565688 0.509176 1.162126 -1.632279 0.520576 -0.735333 -3.390112 0.647306 0.824096 1.894880 3.269648 -0.114168 -0.459126 1.585773 -0.716565 0.881323 -1.692623 0.912839 -1.963789 -1.032492 -1.612527 0.758390 -0.273000 -0.094766 -1.444094 -2.138298 3.319323 -4.778563 -1.541379 3.426156 -0.189783 0.688702 -2.933252 2.202332 -1.284928 2.423369 0.790980 0.213766 0.434444 -0.460509 -2.522169 0.581276 1.539596 -1.276098 0.812701 3.106704 0.698199 0.091481 -0.279792 2.245251 -1.708039 2.028210 -1.924691 2.988385 -0.341655 -2.095519 -0.377662 -0.943920 -0.768093 -2.005115 1.150540 2.023017 0.488899 1.346628 0.936641 1.459853 2.808484 -1.855661 2.621009 -0.500611 0.406146 -1.771919 -0.576650 0.657770 0.863612 -0.732271 1.589158 -3.302094 -2.997073 -5.574594 -2.411055 0.450202 -1.804314 1.168029 -1.596953 -1.193890 -2.384782 -3.297273 3.712034 -1.237264 0.529545 2.753134 1.408969 1.970137 2.595144 -0.831770 1.386912 -0.946682 0.605651 0.410420 -1.225431 -1.307889 2.325515 -0.935963 0.313689 3.227898 -0.648725 2.047198 0.547298 0.376164 -1.568173 3.302714 1.163037 -1.480419 1.567362 2.498166 2.592741 0.073884 -1.963143 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__pop_heap >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 0.521786 -4.502561 8.117062 6.623410 -0.227663 3.294159 0.714745 -4.872393 4.202855 1.818271 -1.208017 3.382808 -3.751713 1.931419 -4.698227 3.074173 -4.693569 -3.864830 -2.263187 -3.358053 -2.062228 -3.202165 0.462087 2.717037 2.855056 1.123853 -3.885095 0.271432 -6.595185 -6.005639 1.968788 -0.595998 2.338286 -3.299348 1.195600 -8.797984 5.618691 6.148901 -1.517784 -6.465146 1.825483 -2.635444 -1.751967 -0.945369 -1.538733 1.003794 -0.589094 2.005775 2.131460 1.730737 0.732007 3.288285 2.204416 9.817134 -2.219418 5.140739 4.180800 1.307091 0.320376 1.321181 1.291411 1.817922 1.682444 2.112010 -0.023717 -3.834062 -1.196913 -0.456581 -3.160518 3.871196 -0.629512 -2.536361 -3.420317 -1.572181 -6.131238 -0.489173 -3.162999 3.802949 7.364820 -4.404183 4.349670 0.906443 2.144829 0.624786 3.269604 -0.245082 4.416105 2.499816 -1.653754 -0.510727 -3.140588 0.359552 0.960580 -0.618954 -4.576927 -8.149886 3.926810 -8.217297 -6.140144 2.846202 1.745256 -2.383370 -1.511201 -1.744479 2.017937 1.547242 -3.099723 -4.863954 -1.509254 3.547239 1.168531 -2.660214 1.523848 -1.121849 0.634268 -0.583433 -5.663220 0.706136 2.283181 -2.188830 -1.605995 4.904458 -0.361265 0.929145 -1.037501 1.510896 -1.633560 3.471362 -0.299101 3.609686 -1.360895 2.297225 -3.412130 1.773972 1.911694 0.180076 -2.745503 1.045797 -0.925940 2.334358 -1.157216 2.149455 -3.422625 1.742413 2.149150 -1.457134 -3.474100 -3.149133 -1.542582 -5.389092 0.272242 -3.014040 -5.207557 1.006242 4.330971 2.918379 2.551472 4.434908 -3.336486 1.356859 0.398692 0.106929 2.894870 -2.375759 1.821646 -2.546125 -5.467863 3.311286 1.751786 1.939937 0.679615 -0.354518 0.158678 -2.932696 -0.946935 2.149667 2.566062 -0.994872 5.514317 3.879917 3.777977 -4.225929 1.007252 1.648454 -2.922924 1.388150 -1.621863 -6.150848 1.587775 1.914526 2.238495 6.384272 -0.716115 -1.893511 3.031708 -0.769791 1.966071 -3.585351 2.070334 -4.140401 -2.090385 -3.387193 0.748172 -1.293992 -1.086271 -3.536082 -3.401281 6.344092 -7.071155 -4.039804 5.812031 -0.143575 1.836962 -6.405311 3.564959 -2.583634 4.632240 1.198440 0.570920 0.443930 0.705940 -3.895868 0.909264 3.010144 -3.557470 2.667208 5.534455 1.228274 0.427719 0.207028 3.880073 -2.443767 2.047858 -4.104097 4.968392 -0.793764 -3.400081 -0.359135 -2.199450 0.304638 -2.778241 1.642302 2.732328 2.236470 2.000622 1.417886 3.824007 3.465625 -2.747787 3.615577 -1.145919 1.052205 -3.151576 -0.791454 0.090507 1.492517 -0.526269 2.889416 -6.578569 -5.802945 -8.380162 -5.279492 0.785912 -2.434783 1.301716 -1.176417 -1.373203 -6.019022 -5.445278 5.179472 -2.258481 2.282283 4.648369 2.909065 3.887614 4.880558 -1.861908 1.378268 -0.667190 0.979603 -0.576243 -1.956621 -2.674923 4.273898 -2.509323 1.737801 5.687302 -1.076352 3.421663 0.413712 1.472644 -3.479085 6.973969 2.972315 -3.145707 2.505732 4.244608 5.849789 -0.051523 -3.591162 -PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference::type&& std::move(Job&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__adjust_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_iter) = -2.413844 -9.698164 12.356565 10.688048 0.648589 6.787241 3.247811 -6.173069 8.003275 5.861663 -2.309437 6.378464 -6.382326 0.423146 -3.226923 4.321391 -6.165193 -7.285260 -1.115705 -4.221446 -2.965062 -6.974937 -2.208502 6.170248 3.366245 0.845377 -5.287833 0.161829 -11.544102 -11.285622 1.882623 -0.973957 4.470241 -5.312195 3.286003 -18.357021 8.802773 11.065326 -1.571994 -13.246938 1.299300 -4.054786 -1.453404 0.854759 -2.293527 3.181094 1.244150 3.405177 1.865160 3.113097 1.426108 2.974875 4.348735 17.075312 -1.269453 9.867697 8.881739 1.502437 0.560615 2.052141 3.070259 0.717252 4.436215 4.701757 -1.559642 -4.174514 -1.870228 0.124245 -7.193003 5.090680 1.109487 -5.737006 -5.677915 -2.811394 -9.281819 -2.324991 -4.804716 5.204312 13.846747 -7.050219 10.986623 3.959786 7.162678 1.026391 7.342062 -1.222815 9.395445 4.055469 -5.672067 0.424274 -7.173851 -2.339146 0.929471 0.497834 -7.388790 -10.356514 5.178103 -11.164468 -11.507384 6.465274 1.203490 -2.471658 -5.350404 -2.842545 5.878053 3.527077 -5.153874 -9.776302 -6.041733 6.492242 -1.899284 -5.153078 1.446969 -1.083775 0.730014 -0.754264 -9.092989 -0.262475 6.448501 -4.807397 -3.672266 8.943134 -2.467345 4.259614 -1.949924 1.202908 -1.456114 5.069388 1.925972 4.751888 -0.120223 -0.706895 -9.909429 2.534790 0.993829 1.231776 -3.705381 -0.183474 1.020986 4.576637 0.273165 5.866178 -4.201682 4.810588 5.598653 -0.699589 -5.251960 -7.505336 -1.961997 -8.267541 2.383096 -5.256234 -5.763061 1.815134 7.667224 3.390246 2.651393 6.789372 -6.510910 4.937039 -0.216122 1.396746 3.146013 -2.155661 2.961477 -4.541310 -8.625629 5.395917 5.919908 3.983063 1.780982 -2.471200 0.224268 -3.605272 -4.582422 3.158417 3.288144 -0.202933 9.633779 5.903336 12.197842 -8.155968 0.673382 0.590506 -3.445645 2.560091 -3.173330 -10.604347 3.153340 2.678639 3.787603 11.859108 -1.609096 -3.809147 4.530216 -0.097921 2.394316 -6.576885 5.742381 -7.838735 -2.896598 -4.421941 0.217422 -4.763710 -2.630532 -7.002988 -3.455999 11.643966 -8.348088 -9.267872 8.456237 -3.110077 3.654390 -12.412681 8.601952 -4.510333 6.961812 -1.441276 -0.727419 -0.124862 2.273429 -3.624592 1.407315 5.358437 -7.058676 4.879789 9.091469 1.425292 1.092851 1.875395 5.014015 -2.903099 0.949436 -6.966007 8.100913 -1.519488 -3.838488 -1.500149 -4.138271 4.633591 -1.584493 0.660740 2.977205 5.537628 0.054327 1.013282 7.577644 2.288368 -5.422959 5.359671 -0.482144 4.400252 -5.440143 -1.041208 -2.649818 1.645803 0.104716 4.263901 -11.293718 -7.201647 -11.467226 -9.756337 -1.497652 -0.334370 2.735131 0.152687 -0.848108 -11.673755 -8.116709 8.907510 -3.221846 3.463270 6.884085 5.852850 8.466841 7.426291 -1.187795 -0.175753 -1.945020 -0.980991 -3.888633 -3.900908 -2.924831 5.796715 -5.312051 5.750258 7.303806 -0.447211 4.816016 -0.096651 4.145155 -5.931411 12.362995 6.095074 -5.873084 2.250706 6.755214 11.471112 -4.689862 -6.781354 -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.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.109863 -0.520881 1.031658 0.953835 -0.101503 0.320326 0.150940 -0.649509 0.840841 0.346129 -0.002910 0.115539 -0.628969 0.299147 0.117886 0.617249 -0.755395 -0.533307 -0.217442 -0.560718 -0.430030 -0.546712 0.245055 0.042200 0.346790 0.201833 -0.461563 -0.103916 -0.485062 -0.441997 0.620261 -0.238213 0.488987 0.289352 0.136659 -1.843931 0.726691 0.436590 -0.275256 -0.745060 0.111748 -0.431480 0.203225 -0.290500 -0.113088 0.194321 -0.031076 0.229426 0.554074 0.212367 0.271070 0.119419 0.102403 1.320024 -0.553302 0.510823 0.228415 -0.105030 -0.223046 0.149331 0.221212 0.215933 0.505405 0.449330 -0.182238 -0.603700 -0.159834 -0.414797 -0.844176 0.633400 0.034495 -0.178772 -0.658293 -0.315848 -0.337437 -0.325854 -1.023784 0.684268 1.068819 -0.733467 0.588654 0.190124 0.326495 0.047668 0.464751 -0.011100 0.823162 0.198424 -0.378647 0.125340 -0.292365 -0.335700 0.174879 -0.068508 -0.286745 -0.781296 0.298632 -0.313778 -0.773177 0.413232 0.292647 0.096551 -0.830413 -0.246240 0.406965 0.338615 -0.461573 -0.788884 -0.359530 0.221455 0.085253 -0.293905 -0.054830 -0.255439 -0.249349 -0.416962 -0.861743 -0.143906 0.099054 -0.405409 -0.305979 0.689340 -0.396971 -0.023044 -0.064657 0.171984 -0.317799 0.853929 -0.060856 0.527257 0.184368 0.021781 -0.850057 0.096258 0.330258 0.701645 0.012238 -0.084032 -0.341882 0.165549 -0.558501 0.145887 0.097396 0.398249 0.819932 -0.165887 -0.553963 -0.251997 0.002097 -0.993332 0.289173 -0.627623 0.096937 0.357028 0.614104 0.593665 0.519767 0.830157 -0.722369 0.458885 -0.273502 0.007909 0.593298 0.384757 0.439444 -0.361613 -0.500866 0.287456 0.257817 0.139220 0.259792 -0.296254 0.024653 -0.542911 -0.294906 0.263873 0.313537 -0.142451 0.496846 0.393277 1.016248 -0.793030 0.282809 0.414798 -0.088945 0.157824 -0.026730 -0.780553 0.366240 0.133465 -0.140117 0.519660 -0.176320 -0.412461 0.130301 -0.176268 0.267284 -0.432572 0.082821 -0.477095 -0.125396 -0.597021 0.143990 -0.370851 -0.313778 -0.189938 -0.035729 0.875072 -0.435029 -0.504019 0.892914 -0.326137 0.353205 -0.874803 0.970491 -0.423557 0.408228 -0.550945 -0.200249 -0.132618 0.253288 -0.310090 0.144801 0.393794 -0.218118 0.064717 1.020974 0.264487 0.107575 0.072370 0.656946 0.003900 0.384097 -0.281577 0.886311 -0.135450 -0.001222 0.055780 -0.338481 0.160644 -0.259945 0.084495 0.730815 0.597877 0.211215 0.371379 0.421165 0.456296 -0.415479 0.489168 -0.004762 0.361668 -0.342734 0.011278 0.126298 0.279282 -0.309167 0.287101 -0.771781 -0.862959 -0.529957 -0.473626 -0.188010 0.283388 0.101806 -0.089705 -0.047276 -0.627500 -0.438492 0.404864 -0.377735 0.418784 0.239618 0.304944 0.584697 0.873415 -0.391340 -0.229345 -0.007987 -0.108646 -0.099488 -0.103184 -0.544340 0.684673 -0.498067 0.238192 0.703325 -0.192714 0.183173 0.002486 0.841581 -0.414554 0.975128 0.328993 -0.198139 0.636707 0.671866 0.949688 0.171242 -0.432057 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__push_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_val&) = -0.563973 -3.910316 6.007145 5.188458 0.094429 2.891307 1.139491 -3.110097 4.051603 2.390026 -1.088341 2.478037 -2.989830 0.840167 -1.875880 2.561682 -3.521465 -3.315725 -0.856424 -2.319914 -1.930304 -3.199850 -0.320695 1.945499 1.927727 1.234369 -2.769235 0.346380 -4.796100 -5.334183 1.459045 -0.523874 1.910688 -1.879479 1.365035 -8.804194 4.339204 4.748327 -0.970052 -5.813335 0.792724 -1.972203 -0.834506 -0.141964 -0.389678 1.618577 0.323172 2.226498 1.505172 1.404147 0.677421 1.493320 1.660024 8.132868 -1.410223 4.418055 3.842086 0.711693 0.056993 1.249293 1.307726 0.704705 1.662670 2.483960 -0.656448 -2.320261 -0.738763 -0.503310 -3.026539 3.089461 0.274171 -2.539306 -2.988371 -1.371384 -4.098599 -0.819596 -3.628519 2.920491 6.435617 -3.495596 4.581765 1.473505 3.142531 0.254865 2.976944 -0.752043 4.644940 1.803613 -2.423166 -0.259775 -3.042770 -1.292603 0.554313 0.177533 -3.164464 -5.193860 2.346735 -5.360776 -5.173607 2.395613 0.941326 -1.029359 -2.639172 -0.948688 2.772287 1.323511 -2.063623 -4.392879 -2.505919 2.680193 -0.707694 -2.077264 0.715984 -0.710584 0.045937 -0.217856 -4.565860 -0.150789 2.312951 -2.062661 -1.842020 3.912633 -0.845524 1.279456 -0.794974 0.770407 -0.796800 2.760491 0.496132 2.519544 -0.043416 0.616729 -4.594686 1.503877 1.114057 0.851530 -1.864042 0.169022 -0.180885 1.840050 -0.999004 2.002196 -2.520946 2.258868 2.842107 -0.842925 -2.947350 -2.876429 -0.674126 -4.141836 1.198840 -2.705727 -2.792818 0.516798 3.507372 2.088127 1.709860 3.492859 -3.613415 2.432448 -0.136380 0.809970 1.897116 -0.656899 1.370366 -2.201732 -3.829410 2.338533 2.123595 1.449511 0.689461 -1.116861 0.070016 -2.207746 -1.918833 2.240033 1.601714 -0.268977 4.153464 2.693071 5.714338 -4.724009 0.631919 1.023636 -1.766902 0.937695 -0.990513 -4.920490 1.873354 1.187191 2.206151 5.321067 -0.609807 -1.654102 1.871130 -0.101208 1.310662 -2.890391 2.196131 -3.440423 -1.459678 -2.215650 0.568253 -1.808302 -1.037067 -2.630531 -1.609168 5.095413 -4.118348 -4.291767 4.614442 -1.626245 1.842215 -5.726986 3.690393 -2.147005 2.630249 -0.807475 -0.039255 -0.070520 0.817880 -1.980786 0.882671 2.304226 -2.980578 1.961006 4.528511 0.823950 0.596305 0.673778 2.711824 -1.370132 0.931634 -2.825572 3.989709 -0.585607 -1.773848 -0.723433 -1.809729 1.487993 -1.128827 0.600154 1.981224 2.487503 0.562979 0.951204 3.216594 1.841074 -2.575958 2.754584 -0.390534 1.788582 -2.546524 -0.690781 -0.531414 0.675022 -0.534187 2.026221 -5.157584 -3.975387 -5.237310 -4.842652 -0.745355 -0.564553 1.368393 -0.316517 -0.606765 -5.084900 -3.710944 4.450951 -1.500183 1.666264 2.921927 2.401678 3.712206 3.828851 -1.069992 0.148974 -1.089085 -0.210419 -1.372066 -1.750439 -1.845448 3.197428 -2.346112 2.142444 3.844763 -0.620146 2.168340 -0.104428 2.280460 -2.703515 5.636335 2.581561 -2.440357 1.440002 3.170555 5.798382 -1.006088 -3.089824 -PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference::type&& std::move(bool (*&)(Job, Job)) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(Job*, Job&) = 0.810283 -1.935416 4.623344 3.704978 -0.501001 1.117860 0.098253 -2.928588 2.039240 0.949326 -0.809062 1.902564 -1.610786 1.438939 -3.184492 2.455262 -2.960108 -1.779478 -1.470000 -2.008126 -1.510909 -1.127437 0.945466 0.739854 1.988235 1.093997 -2.306554 -0.013785 -2.471653 -4.033219 0.629925 -0.304509 1.061274 -1.888258 0.261764 -4.425513 3.108188 3.147467 -1.178226 -3.076832 1.380927 -1.102755 -1.351636 -0.582709 -1.191322 0.285715 -0.635770 1.206169 1.163708 1.387139 0.869540 2.371366 1.889838 5.560221 -0.939773 2.571800 2.222957 0.852337 -0.185772 0.661591 1.037109 1.250162 0.601424 0.866180 0.813269 -2.457475 -1.129643 -0.407269 -1.234754 2.232954 -0.871183 -1.586482 -1.823201 -1.093856 -2.858673 -0.080774 -2.680511 2.244072 3.610387 -2.772467 1.574981 0.343399 0.335391 0.096153 0.957747 -0.154086 2.050014 1.534651 0.002526 -0.535673 -0.057178 0.095887 1.033607 -0.663915 -2.630123 -5.364012 2.642211 -4.738754 -3.252061 1.343625 1.649601 -1.573104 -0.116270 -0.988608 0.690568 0.715033 -1.580839 -2.026634 -0.373112 1.367326 1.273553 -1.405983 0.424556 -0.270456 0.471276 0.780338 -3.464809 0.802719 0.786690 -0.857312 -0.438793 2.072537 0.851548 0.054176 -0.686144 0.927626 -0.808540 2.249000 -0.533546 2.376956 -1.177046 2.826952 -0.823708 1.696602 1.627686 -1.294894 -1.670529 0.848451 -0.782983 1.217570 -0.998637 1.144792 -2.434657 0.968017 1.473782 -0.751631 -2.418646 -1.558811 -1.501840 -3.148799 0.030437 -1.767937 -3.076529 0.699786 2.212521 1.562507 1.591478 2.137717 -1.781797 0.207871 0.516133 0.000321 1.679771 -1.568410 1.048093 -1.286560 -2.936876 1.924956 0.869135 1.062355 0.176165 0.327127 0.189764 -1.734531 -0.215147 1.708677 1.601371 -0.738923 2.558793 2.069479 2.255568 -1.565688 0.509176 1.162126 -1.632279 0.520576 -0.735333 -3.390112 0.647306 0.824096 1.894880 3.269648 -0.114168 -0.459126 1.585773 -0.716565 0.881323 -1.692623 0.912839 -1.963789 -1.032492 -1.612527 0.758390 -0.273000 -0.094766 -1.444094 -2.138298 3.319323 -4.778563 -1.541379 3.426156 -0.189783 0.688702 -2.933252 2.202332 -1.284928 2.423369 0.790980 0.213766 0.434444 -0.460509 -2.522169 0.581276 1.539596 -1.276098 0.812701 3.106704 0.698199 0.091481 -0.279792 2.245251 -1.708039 2.028210 -1.924691 2.988385 -0.341655 -2.095519 -0.377662 -0.943920 -0.768093 -2.005115 1.150540 2.023017 0.488899 1.346628 0.936641 1.459853 2.808484 -1.855661 2.621009 -0.500611 0.406146 -1.771919 -0.576650 0.657770 0.863612 -0.732271 1.589158 -3.302094 -2.997073 -5.574594 -2.411055 0.450202 -1.804314 1.168029 -1.596953 -1.193890 -2.384782 -3.297273 3.712034 -1.237264 0.529545 2.753134 1.408969 1.970137 2.595144 -0.831770 1.386912 -0.946682 0.605651 0.410420 -1.225431 -1.307889 2.325515 -0.935963 0.313689 3.227898 -0.648725 2.047198 0.547298 0.376164 -1.568173 3.302714 1.163037 -1.480419 1.567362 2.498166 2.592741 0.073884 -1.963143 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__move_median_to_first >(Job*, Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.107281 -5.772274 10.625356 8.745897 0.483197 4.582689 0.319560 -7.533401 8.062169 3.185270 -1.845591 3.516664 -5.941930 2.468893 -4.646861 4.968064 -6.969299 -6.600973 -1.871800 -4.896479 -4.104489 -5.872489 1.853847 2.124866 3.317103 3.174389 -5.691485 1.567538 -8.307165 -10.312285 4.266069 -1.894898 4.189498 -1.250350 0.605580 -15.664894 8.827604 7.920556 -2.426360 -8.739546 1.787172 -4.447020 -1.853818 -1.130423 -1.443619 2.160636 -0.351925 2.335988 3.935363 2.082527 3.088497 2.905711 1.046741 12.205260 -4.096308 7.248608 4.066899 0.714164 -1.910011 2.038675 2.229931 2.479025 5.168645 5.510110 -2.764509 -5.204610 0.189563 -1.405606 -7.765782 6.498610 -0.141505 -3.471066 -4.124937 -2.019531 -5.801314 -1.447990 0.822025 3.924690 11.552208 -4.323170 7.160957 1.627082 3.788757 -0.569134 5.015710 -1.421346 9.258924 3.226432 -4.217897 -2.184612 -4.483011 -0.812406 0.896137 3.246264 -4.629863 -6.351883 4.237413 -9.825369 -8.860168 2.808632 2.145524 -1.347335 -7.750209 -1.305958 5.829847 2.196181 -3.530199 -7.899541 -3.242552 3.632952 -1.679130 -3.977159 0.007210 -2.409161 -1.550760 -0.319573 -8.466152 -1.748475 2.438885 -4.356628 -3.624679 6.729614 -1.968366 0.704050 -1.534377 2.420967 -1.996302 4.836714 -1.374765 4.598567 0.043535 1.977381 -5.301935 0.439250 2.322764 2.124988 -3.645239 -1.391629 -1.831491 2.364185 -4.396293 1.618415 -5.834784 3.412306 7.663454 -1.689984 -5.460527 -3.347699 -0.551977 -10.131432 1.309169 -5.964205 -4.883217 0.533553 7.045612 3.199891 4.759521 8.969651 -6.358005 4.873344 -0.341578 0.604660 5.392743 -1.476631 3.801161 -4.178754 -7.178643 4.942204 3.244159 1.967574 1.349051 -2.186544 -0.563072 -5.479550 -4.981838 4.506408 2.625977 0.785473 6.240471 3.847959 10.976878 -8.682909 3.027242 3.452699 -1.777776 2.106836 -1.047132 -8.835285 2.397099 2.054325 3.356414 9.652445 -0.617121 -5.021274 1.612049 0.465860 2.828094 -6.436148 3.666412 -6.191877 -0.301979 -4.555929 -0.221424 -2.682838 -2.445508 -4.080527 -3.212742 9.054063 -7.143072 -9.332380 9.710814 -2.130945 5.007836 -12.021286 2.641823 -5.026060 6.319464 -2.318504 0.583094 -0.307769 -0.067760 -4.161501 2.678691 4.229239 -3.622297 4.475552 8.953403 2.188231 2.091193 0.157831 5.228514 -1.530960 2.806778 -4.380496 8.064412 -0.136017 -3.606531 -0.549921 -3.933577 1.075342 -2.974391 0.997687 3.980438 6.488197 0.992914 3.512452 5.187714 4.993142 -4.919100 5.572331 0.042308 2.521577 -3.171318 -1.494127 0.678812 2.470499 -2.069077 4.730514 -8.935861 -9.914249 -8.296657 -10.704043 -0.299159 -0.431426 2.715583 -0.790075 -0.176622 -7.659564 -5.333191 8.813619 -2.874507 11.051483 4.826159 4.829791 5.162567 7.603416 -4.280757 -0.607037 -1.486879 -0.011401 -2.630599 -3.024683 -4.722749 6.661948 -2.829923 4.115204 7.047206 -2.265122 2.684970 -1.298337 4.834900 -4.281137 10.187114 4.410078 -3.160069 5.004118 2.247983 10.717949 0.253762 -5.243448 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.886141 -2.473991 5.544176 4.417110 0.625291 2.034744 1.408213 -3.620775 4.701755 2.023713 -0.999842 1.383465 -2.544526 0.769900 -1.211310 2.880733 -3.257251 -2.839922 -0.484499 -2.335037 -1.412368 -3.804389 0.750400 0.740633 1.362584 1.936109 -2.300979 0.759038 -2.872168 -6.164947 2.784687 -0.801095 1.770661 0.016927 0.335874 -9.679652 5.031835 3.558452 -0.927988 -3.837235 0.607400 -1.705378 -0.881199 -0.074574 1.231140 1.467725 0.098956 2.106258 1.509318 1.190192 2.034233 0.850903 1.222827 5.792053 -2.704911 3.144157 1.748937 0.208243 -0.570495 0.989490 0.923683 0.937935 2.319473 3.765040 -1.349380 -2.015407 0.140708 -0.382625 -4.617024 2.656209 0.033185 -1.718983 -2.983714 -0.913500 -1.921048 -0.409938 -4.216695 2.073280 6.097376 -2.054915 4.456057 1.035456 3.034285 -0.542332 2.171029 -0.755122 4.446365 1.392890 -3.235732 -1.003232 -2.770631 -1.792068 0.970992 1.042880 -1.884898 -2.082318 1.516349 -2.541345 -3.653212 1.176773 0.711405 -0.465153 -4.067909 -0.822595 2.643944 0.998666 -1.051665 -4.510762 -2.497626 1.455004 -1.210023 -1.746328 -0.412238 -1.043196 -1.011029 -0.918354 -4.108378 -0.963001 1.119603 -1.974204 -2.143028 2.694362 -2.076552 0.374890 -0.733332 0.820389 -0.679956 1.741217 -0.373374 2.045496 1.804832 -0.179076 -4.499416 1.154689 1.035047 2.960118 -1.410552 -0.360780 -0.575738 0.931463 -1.831632 1.001932 -1.468474 1.647461 4.742179 -0.718088 -2.255659 -1.483346 0.458197 -4.437380 2.139169 -2.482672 -0.522839 -0.291726 3.030786 1.023991 1.996442 3.841630 -4.911096 3.181582 -0.297504 0.638129 2.053473 0.758045 1.531298 -1.762217 -3.368721 2.108664 1.866332 0.339456 0.778212 -1.061329 -0.163203 -2.321595 -2.272864 2.783808 0.643862 0.353547 2.651280 1.461591 7.826852 -4.392320 1.184377 1.453125 -0.463915 0.797395 -0.323089 -3.751534 2.403018 0.678201 2.007588 4.283806 -0.188998 -2.091982 0.440788 0.323739 0.991989 -2.643686 1.812692 -2.706383 -1.129999 -1.628832 -0.168735 -1.166268 -1.335800 -1.388717 0.468457 3.757154 -1.233354 -4.641283 4.358819 -3.340625 1.783763 -5.535998 3.432193 -2.236704 1.022251 -2.323163 0.193254 -0.287844 0.494930 -1.511107 0.957501 1.770320 -1.363822 2.171254 5.275967 0.886589 0.653043 0.223660 1.861831 -0.618456 0.873420 -1.756534 3.772132 -0.043789 -0.926479 -0.412466 -1.671929 1.999769 -1.129725 -0.242009 2.658536 4.005231 -0.087315 1.329240 2.393171 1.879867 -2.154595 3.060999 0.331668 1.235561 -1.250768 -0.695257 0.165645 0.547220 -0.822446 2.104639 -3.689404 -3.737697 -2.053040 -5.133470 -0.505322 0.174022 1.430378 -0.033428 0.135846 -4.348728 -2.133765 3.696266 -1.012979 2.824367 1.774279 2.025581 2.052960 2.979348 -1.559794 -0.456765 -1.080175 -0.260034 -1.491877 -1.538923 -1.548353 2.781111 -2.191728 1.822070 2.643835 -0.895425 0.903676 -0.926484 3.285810 -1.773811 5.314454 1.925073 -1.092383 1.943172 0.614593 5.982028 -0.501257 -2.210526 -PE-benchmarks/weighted-job-scheduling.cpp__void std::iter_swap(Job*, Job*) = -0.215622 -0.575555 1.106209 0.877786 0.006776 0.388547 0.180510 -0.759987 1.022831 0.181675 -0.091083 0.153850 -0.751593 0.336784 -0.514537 0.499528 -0.782652 -0.774712 -0.246737 -0.630017 -0.459435 -0.695808 0.302337 0.092941 0.357919 0.026475 -0.577627 -0.006623 -0.962698 -0.452680 0.696438 -0.295581 0.399143 -0.177254 0.030672 -1.723287 0.798249 0.572721 -0.322053 -0.804652 0.188470 -0.658925 0.125924 -0.380140 -0.106620 0.062815 -0.054248 0.265842 0.643745 0.101203 0.360751 0.253389 -0.167163 1.615666 -0.805309 0.643881 0.254137 0.078160 -0.243715 0.299312 0.209823 0.252843 0.506938 0.582065 -0.336024 -0.595597 -0.083139 -0.394463 -0.829404 0.773259 -0.109719 -0.122670 -0.625541 -0.160762 -0.763043 -0.320529 -0.615903 0.608082 1.252237 -0.749531 0.678837 0.140060 0.510380 0.073235 0.520098 -0.023496 0.967328 0.209753 -0.486479 -0.110407 -0.590015 0.136586 0.020382 0.007859 -0.291865 -0.915564 0.439467 -0.892102 -0.962378 0.309876 0.251598 0.050823 -0.730043 -0.060092 0.496504 0.274883 -0.552162 -0.957518 -0.329373 0.338034 0.061513 -0.277202 0.232073 -0.456870 -0.143356 -0.530694 -0.943047 -0.225543 0.084918 -0.516629 -0.430154 0.852281 -0.497897 0.008371 -0.016608 0.245864 -0.299454 0.791290 -0.146671 0.506882 -0.052982 0.089972 -1.029351 0.007690 0.301331 0.733405 -0.209893 0.137732 -0.323422 0.163715 -0.644362 -0.038017 -0.273592 0.275693 0.534305 -0.394824 -0.578963 -0.247164 0.049636 -1.118361 0.186872 -0.660298 -0.334069 0.149609 0.722950 0.804950 0.607222 1.134489 -0.631120 0.519248 -0.140753 -0.083475 0.695278 -0.039640 0.529431 -0.425840 -0.706090 0.348852 0.210087 0.164852 0.196251 -0.294448 -0.062856 -0.761635 -0.275625 0.206985 0.421413 -0.074765 0.672446 0.437633 0.566958 -1.222009 0.435522 0.499262 -0.114150 0.223843 -0.124406 -0.930035 0.411847 0.247244 -0.006581 0.603355 -0.115888 -0.519929 0.166026 -0.166398 0.459788 -0.632332 0.008419 -0.569940 -0.249934 -0.685572 0.190064 -0.339032 -0.317744 -0.291398 -0.358564 0.919569 -0.713123 -0.704311 1.059158 -0.035109 0.553114 -1.079470 0.634725 -0.517927 0.797268 -0.324119 0.087303 -0.116180 0.369882 -0.382995 0.227141 0.438631 -0.388571 0.392774 1.049972 0.324582 0.348430 0.101494 0.790233 -0.088360 0.343386 -0.363863 0.863177 -0.089306 -0.478880 0.197675 -0.433494 0.140434 -0.247776 0.296533 0.796023 0.796540 0.275070 0.577459 0.604004 0.598363 -0.441810 0.426190 -0.120761 0.346577 -0.370557 -0.035336 0.103228 0.243327 -0.351167 0.321135 -0.939987 -1.225559 -0.823337 -0.839521 0.099144 -0.206877 -0.013970 -0.108120 0.024036 -0.891908 -0.489691 0.464914 -0.443062 0.831018 0.356653 0.396880 0.601873 1.012717 -0.622175 -0.142481 0.134977 0.039658 -0.186050 -0.187612 -0.696808 0.736755 -0.604178 0.342318 0.808586 -0.282157 0.182713 0.177379 0.554997 -0.488946 1.138510 0.471585 -0.283233 0.754500 0.577972 1.204316 0.402568 -0.515263 -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.374268 -1.034916 2.713839 2.055079 -0.199695 0.836591 -0.046922 -2.146000 2.066224 -0.166589 -0.354299 0.558048 -1.290348 0.970036 -2.308748 1.044917 -1.955330 -1.562380 -1.078417 -1.625626 -1.137724 -1.207244 0.653965 0.321209 0.953853 0.353550 -1.503632 0.367270 -2.239246 -1.149453 1.351535 -0.313051 0.493981 -0.978212 0.256300 -2.740693 1.962397 1.627791 -0.740039 -1.714045 0.536050 -1.349469 -0.477549 -0.955648 -0.282958 -0.046685 -0.661483 0.938616 1.237567 0.195699 0.553114 1.392763 -0.310542 3.633123 -1.569226 1.537391 0.802491 0.653424 -0.235372 0.829799 0.472506 1.031954 0.556667 0.937736 -0.258376 -1.554164 -0.288700 -0.637363 -1.000751 1.896089 -0.343815 -0.674269 -1.248863 -0.501487 -2.287310 -0.306638 -1.500282 1.490842 2.451979 -1.816797 0.903046 0.121371 0.849359 0.209475 1.016443 -0.204406 2.153925 0.693336 -0.486448 -0.415289 -1.399678 0.618480 0.247266 -0.691186 -1.288086 -2.981393 1.341443 -3.399342 -2.168448 0.498508 0.941454 -0.509127 -0.566254 -0.089141 0.830899 0.116595 -0.987136 -1.644994 -0.158913 1.066168 0.517960 -0.620969 0.746575 -0.718637 0.277334 -0.609956 -2.232689 0.102138 0.232524 -0.582073 -0.586889 1.778856 -0.505578 -0.384634 -0.245413 0.486989 -0.680762 1.510010 -0.702536 1.194332 -0.770137 1.141775 -1.367635 0.747180 0.760259 0.498972 -0.873049 0.764026 -0.623189 0.565262 -1.399392 0.051528 -1.552556 0.206375 0.242629 -0.990728 -1.428355 -0.616230 -0.474801 -2.221491 0.034412 -1.198015 -2.018804 0.024544 1.540495 2.234069 1.307277 1.910981 -1.097207 0.535704 0.133516 -0.004314 1.446740 -0.867253 0.904006 -0.890807 -1.830341 1.040201 -0.029553 0.454363 0.276818 -0.201780 -0.152582 -1.654940 -0.249663 0.644509 1.069507 -0.173832 1.781471 1.310076 0.036405 -2.438305 0.941618 1.105369 -0.758592 0.476689 -0.416859 -1.999256 0.657672 0.672242 0.876681 1.755379 -0.198080 -0.548627 0.470900 -0.268933 1.122275 -1.296696 -0.160711 -1.215128 -0.864746 -1.467148 0.855709 -0.427994 -0.258503 -0.835281 -1.690250 1.975280 -2.606515 -1.428290 2.740075 0.154440 1.128058 -1.955112 0.420878 -0.965851 1.992397 0.358627 0.649199 0.002299 0.122328 -1.584696 0.672319 0.946229 -1.063763 0.802334 2.023117 0.594520 0.671537 -0.062997 1.670346 -0.938092 1.141375 -1.215099 1.973251 -0.161114 -1.692732 0.282019 -0.849829 -0.307928 -1.125014 1.033677 1.734244 1.123623 1.305261 1.069639 1.163048 1.690754 -1.061439 1.140281 -0.417125 -0.139433 -0.997922 -0.263921 0.610111 0.295890 -0.730631 0.633017 -2.112240 -2.691057 -3.076798 -1.864905 0.771333 -1.742609 0.035249 -0.644446 -0.504316 -1.766905 -1.675642 1.464591 -0.929210 1.354794 1.275832 0.873974 1.154905 2.206830 -1.444866 0.654164 0.268642 0.404609 -0.030152 -0.687736 -1.641769 1.948885 -0.798773 0.406618 2.305380 -0.636318 1.036378 0.508276 0.551401 -0.996088 2.261552 0.872064 -0.927332 1.247033 1.389957 2.293993 1.242548 -1.234866 -PE-benchmarks/weighted-job-scheduling.cpp__int std::__bit_width(unsigned long) = -0.276302 -1.097143 0.935193 0.909508 0.277643 0.498663 0.719534 -0.050768 0.689768 0.628882 -0.206106 0.484478 -0.898023 -0.157507 0.178171 0.265976 -0.304127 -0.834172 0.241876 0.030490 -0.001338 -0.672098 -0.118398 0.575736 0.341309 0.059489 -0.249989 -0.472375 -1.268262 -0.232725 0.278712 -0.211844 0.578085 0.276028 0.221444 -1.184446 0.359075 0.812294 -0.064766 -1.253429 0.061307 -0.361464 0.266890 -0.163569 0.211873 0.359885 0.567335 0.459365 0.064488 0.324457 -0.078161 -0.304827 0.306080 0.997972 -0.032660 0.743737 0.843576 0.067670 0.199289 -0.054012 0.353590 -0.281280 0.573412 0.412010 -0.384039 -0.126846 -0.307431 -0.265660 -0.861825 0.225371 0.300884 0.144232 -0.699722 -0.164542 -0.525540 -0.235848 -0.752263 0.466141 1.305105 -0.686621 1.215202 0.653290 0.851201 -0.024569 0.532781 0.073088 0.326032 0.306647 -0.657187 0.156772 -1.291788 -0.469284 -0.208292 -0.140275 -0.346757 -0.626934 0.378645 -0.295525 -0.979739 0.582946 -0.161444 0.079821 -0.471217 0.078233 0.415688 0.748853 -0.566247 -0.891108 -0.599373 0.194180 -0.195842 -0.409324 0.222412 0.040980 -0.257122 -0.560077 -0.713774 -0.300448 0.586403 -0.829901 -0.133434 0.739385 -0.574146 0.816005 -0.103592 -0.095246 -0.029317 0.549344 0.728494 0.187007 0.591920 -0.659599 -1.070018 -0.008952 0.157295 1.085083 -0.167428 0.130653 0.161992 0.318971 0.304676 0.270181 0.249905 0.393712 0.391590 -0.297494 -0.408028 -0.832216 0.062719 -0.466111 0.396816 -0.436878 0.361063 0.198500 0.642164 0.155334 0.136162 0.999780 -0.640129 0.427763 -0.132837 0.122683 0.029657 0.436338 0.338295 -0.317058 -0.618754 0.322736 0.779716 0.173841 0.304141 -0.368757 0.116594 -0.369629 -0.450025 -0.087997 0.143428 -0.327047 0.816671 0.310064 0.370843 -0.669963 -0.075878 -0.040218 0.049995 0.177111 -0.115465 -1.053399 0.655503 -0.062138 -0.045240 0.533627 -0.136330 -0.512740 0.662723 -0.185399 0.011861 -0.466491 0.407732 -0.721398 -0.395522 -0.572514 0.371567 -0.474733 -0.501177 -0.446616 0.243608 1.023443 0.254887 -0.520960 0.071733 -0.003319 0.220866 -1.003047 0.979841 -0.368857 0.417345 -0.207400 -0.305275 0.000452 0.410788 0.126702 -0.585693 0.520044 -0.461562 0.423879 0.614024 0.131790 -0.108002 0.537290 0.377785 0.065361 -0.160301 -0.387866 0.365754 -0.184288 -0.160707 0.103277 -0.346491 0.859136 0.154498 -0.274687 0.563939 0.631497 -0.084130 0.398208 0.449539 0.003339 -0.470792 0.114806 0.163676 1.006813 -0.430529 0.150110 -0.637687 0.103652 -0.072862 0.546804 -0.866742 -0.787423 0.084287 -0.731065 -0.387682 0.180607 0.117964 0.186036 0.121947 -1.045970 -0.530310 -0.140128 -0.312898 0.112076 0.424127 0.387203 0.852195 0.498975 -0.238415 -0.416083 0.241529 0.014785 -0.487209 -0.242547 -0.138551 0.135313 -0.674383 0.536725 0.538827 -0.067690 0.106869 -0.394696 0.946341 -0.548819 1.296026 0.639666 -0.672553 0.268782 0.621069 1.334960 -0.518091 -0.548420 -PE-benchmarks/weighted-job-scheduling.cpp__int std::__countl_zero(unsigned long) = -0.006650 -2.098136 2.214941 2.261064 0.835156 0.894706 1.606335 -0.425752 1.416187 1.792442 -0.613443 1.145947 -1.867897 0.103124 0.205386 1.185963 -0.763789 -1.698552 0.429168 0.083123 0.107221 -1.339966 0.652794 0.721403 1.154611 0.295055 -0.726796 -1.511990 -2.518723 -1.058536 0.840799 -0.495835 1.361973 0.839807 -0.134091 -2.122885 0.984557 1.653591 -0.319633 -2.568952 0.619201 -0.562194 -0.016278 -0.063802 0.848257 0.774654 0.927141 1.205845 0.330395 1.144744 0.248054 -0.370181 1.161758 1.942299 -0.377426 1.561941 1.634194 0.183097 0.367339 0.055288 0.788308 -0.168984 1.277821 1.249201 -0.408268 -0.626563 -0.753313 -0.542960 -2.055387 0.748364 0.398190 0.469497 -1.548723 -0.057170 -0.208053 0.035215 -1.466862 1.194025 2.800659 -1.122828 2.397505 1.132560 1.315895 -0.766786 0.542519 0.098448 0.256316 0.786812 -1.035632 -0.565114 -2.660266 -1.112444 -0.262391 -0.170605 -0.737843 -0.984853 0.919563 -0.011620 -1.952939 0.880673 -0.020518 -0.101861 -0.744369 0.519199 0.791294 1.584203 -0.790771 -1.757861 -1.132539 0.203568 -0.347603 -1.077693 -0.167138 -0.165092 -0.918441 -0.637271 -1.535281 -0.666240 0.750034 -1.810008 -0.448746 1.103357 -0.899574 1.370877 -0.299614 0.073844 -0.024380 0.754645 1.285634 0.852342 2.321267 -0.929804 -1.796525 0.687408 0.890078 2.047412 -0.600611 0.563920 -0.155155 0.583388 0.375583 0.566913 0.440109 0.929830 1.308512 -0.893874 -1.139171 -1.438982 0.667371 -1.043315 0.925192 -1.148534 0.909125 -0.077045 1.411024 -0.102542 0.665397 2.240625 -1.852380 1.023094 0.083109 0.533843 0.268932 1.004342 0.626046 -0.732932 -1.510237 0.612326 1.813758 -0.241537 0.338713 -0.301207 0.170422 -1.088893 -0.963887 0.161261 0.132478 -0.884282 1.476745 0.507889 1.524221 -1.171307 -0.074110 0.367777 -0.004881 0.188231 -0.153119 -2.559754 1.509917 -0.283687 0.579199 1.423919 -0.088761 -1.248550 1.346844 -0.393569 -0.151086 -0.798095 1.177468 -1.575038 -0.947565 -1.062949 0.545086 -0.431462 -1.136711 -0.460066 1.127136 2.172155 0.886213 -1.135261 0.319836 -0.694545 -0.299472 -2.408440 2.604920 -0.955635 -0.029952 -0.430060 -0.733895 -0.151756 0.770308 -0.285394 -1.197759 1.085990 -0.711124 1.336277 1.819812 0.342676 -0.395071 0.873493 0.739537 0.152732 -0.030973 -0.713358 1.050260 -0.260868 -0.351321 -0.098910 -0.690136 1.555188 -0.247522 -0.854511 1.492677 1.253006 -0.267424 0.986394 0.609699 0.756463 -1.187534 1.048922 0.333981 2.088757 -0.693679 0.148065 -0.896482 -0.234404 -0.418869 1.780156 -1.823093 -1.787096 0.591245 -1.867753 -0.659232 0.014637 0.869527 -0.024553 0.203819 -2.390803 -1.293214 -0.852752 -0.581472 0.176215 1.173043 0.770494 1.454814 0.990426 -0.574174 -0.398765 -0.219694 0.253194 -0.900979 -0.999532 0.025339 0.331993 -0.970604 0.913143 1.184725 -0.054164 0.213746 -1.278264 1.872011 -1.023264 2.793339 1.301198 -0.976292 0.876997 0.635036 2.758996 -1.121237 -1.182432 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.375471 -3.863335 8.919630 7.661808 -0.085208 3.209428 0.116316 -6.800564 6.263399 2.164673 -1.291075 2.564337 -4.155779 2.344123 -3.617083 4.597559 -5.952793 -4.485100 -2.546277 -4.333436 -2.952940 -4.421377 2.029169 1.554035 3.097104 2.558010 -4.749490 1.226660 -5.521671 -7.908085 3.575299 -0.897008 2.960946 -0.661585 0.811833 -11.244838 7.447168 6.234305 -1.926367 -6.329263 1.640506 -2.991179 -2.139338 -1.222864 -0.818653 1.693411 -1.383484 2.308795 3.178101 1.898863 2.323159 3.245983 1.634748 9.205028 -3.478053 5.385845 2.990157 0.903129 -0.839479 1.714215 1.689678 2.956606 3.147437 4.022680 -0.935926 -4.698982 -0.576368 -0.959733 -5.478465 5.442602 -0.618361 -3.095131 -4.191994 -1.996591 -4.627897 -0.473532 -2.792736 4.250771 8.516629 -4.191293 4.591524 0.956413 2.256375 -0.686518 3.328976 -1.220332 6.813011 2.641338 -2.267040 -1.443439 -3.374249 -1.657745 1.537304 0.346720 -4.367875 -5.986042 3.491924 -8.035043 -6.683674 2.002279 2.563957 -1.856481 -4.752526 -1.249708 3.570702 1.231936 -2.015738 -5.742289 -1.673221 3.128858 0.071843 -3.086718 -0.394970 -1.307691 -0.677143 -0.117459 -7.034462 -0.363059 1.471291 -2.467624 -2.208589 4.763557 -1.453177 -0.390161 -1.378838 1.619906 -1.755615 3.909929 -1.724404 4.315395 0.522463 2.508122 -3.485404 2.082155 2.264037 1.182717 -2.565479 0.198285 -1.775613 1.973290 -3.656316 1.893265 -4.084407 2.184513 4.974885 -1.408893 -4.503467 -2.244561 -1.383421 -7.545953 1.280096 -4.272614 -3.906981 0.754537 5.129501 3.249766 3.775689 5.915838 -5.440682 2.753533 0.182931 0.705625 4.202117 -1.003919 2.477288 -2.988555 -5.832516 4.065730 1.717679 1.217498 1.020468 -0.706639 -0.298101 -4.113331 -2.994032 3.734556 1.958491 0.205749 4.950865 3.458385 7.103787 -5.644452 2.378575 2.991618 -1.862767 1.522962 -1.030356 -6.722745 2.241037 1.425699 3.551317 7.484113 -0.677247 -2.618765 1.340915 -0.038322 2.269934 -4.401711 2.253413 -4.528703 -0.930127 -3.774488 0.283592 -1.247786 -1.607839 -2.581574 -2.288789 6.830124 -5.560569 -6.272852 8.237837 -2.418870 3.023325 -8.044204 2.982295 -3.388211 4.094148 -0.913450 0.515762 0.019502 -0.833330 -4.332762 1.682050 3.158774 -2.617440 2.662977 7.260925 1.484591 0.781346 -0.319676 3.910991 -1.899922 3.262661 -3.792893 6.819366 -0.215384 -2.614252 -0.656445 -2.729241 0.269214 -3.488219 0.816667 4.107343 4.214931 1.958561 2.300177 3.394461 4.632769 -3.817195 5.230439 -0.085444 0.542936 -2.676283 -1.157233 1.513247 1.279044 -1.796461 3.472140 -6.593868 -7.131925 -7.357216 -7.218200 0.140851 -1.846973 2.449545 -1.410266 -1.238128 -5.560174 -5.116871 6.180006 -2.191856 5.447684 3.991440 3.331153 3.655465 5.989449 -3.076849 1.106965 -1.504314 0.302649 -1.084935 -2.693460 -3.543899 5.680854 -1.795526 2.124451 6.163148 -1.561265 3.032329 -1.048468 3.415262 -3.142820 7.579474 2.783053 -2.268367 3.691176 2.467866 7.010679 0.729985 -4.022720 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.158112 -1.778358 4.067978 3.539206 0.099322 1.348701 0.440036 -2.903323 3.125002 1.295960 -0.589732 0.956345 -2.047345 1.031318 -1.020599 2.348089 -2.730589 -2.083299 -0.827606 -1.822444 -1.204644 -2.299828 1.102565 0.451696 1.406007 1.196198 -2.028793 0.246126 -2.197560 -3.514772 1.944664 -0.617729 1.432446 0.266618 0.285573 -5.600604 3.430409 2.519339 -0.865636 -2.837261 0.663187 -1.327643 -0.641996 -0.601073 0.110236 0.927930 -0.325980 1.481608 1.566056 0.999801 1.179536 0.955680 0.838843 4.109824 -1.882045 2.279713 1.193178 0.249128 -0.378187 0.739866 0.790418 1.133256 1.571056 2.214295 -0.551891 -2.001675 -0.322088 -0.647682 -2.903741 2.424538 -0.146478 -0.978087 -2.329577 -0.753471 -1.537276 -0.236773 -2.508182 2.088462 4.142204 -1.942968 2.399343 0.614115 1.385848 -0.459912 1.397379 -0.466642 3.011419 1.099502 -1.378954 -0.627173 -1.776314 -1.215632 0.708983 -0.063067 -1.584566 -2.463031 1.295015 -2.659110 -2.905819 0.914253 1.008687 -0.498214 -2.346036 -0.445131 1.729107 0.765220 -0.920005 -2.874617 -0.909478 1.065287 -0.159865 -1.326744 -0.246488 -0.685464 -0.636295 -0.435669 -3.209875 -0.505505 0.523545 -1.398455 -1.061722 2.059292 -1.009041 -0.040281 -0.522682 0.616677 -0.710101 1.868442 -0.478603 1.970356 0.930144 0.741461 -2.116630 1.166022 1.166113 1.356680 -0.848041 0.161125 -0.864543 0.801065 -1.724248 0.715255 -1.230221 1.095988 2.661704 -0.761211 -2.042674 -0.955841 -0.285433 -3.350495 1.017390 -2.033640 -0.944049 0.226187 2.319482 1.304388 1.798300 2.793517 -3.019281 1.579854 -0.165427 0.505091 1.872352 0.332463 1.217018 -1.306030 -2.472430 1.643041 1.036559 0.263441 0.530293 -0.569097 -0.043062 -1.955857 -1.348637 1.660659 0.754058 -0.117421 2.051936 1.301688 3.662189 -2.630217 1.043605 1.480489 -0.492760 0.596219 -0.278021 -3.084905 1.521803 0.440247 1.436727 3.016564 -0.307183 -1.357207 0.574359 -0.101044 0.898767 -1.859265 0.882780 -1.993732 -0.625427 -1.712843 0.368808 -0.630308 -0.965463 -0.835570 -0.265652 3.019679 -1.675467 -2.702358 3.512956 -1.594730 1.225870 -3.604850 2.176958 -1.593423 1.269615 -0.863791 0.001715 -0.116468 -0.115983 -1.632840 0.454404 1.424867 -0.907899 1.227033 3.524461 0.743069 0.291270 0.096786 1.764498 -0.533970 1.278820 -1.402128 3.020122 -0.155874 -0.763629 -0.213807 -1.236004 0.506011 -1.369563 0.104802 2.272992 2.223323 0.644338 1.289381 1.412276 1.977272 -1.720936 2.374096 0.043170 0.643552 -1.146263 -0.387994 0.527377 0.387823 -0.989492 1.689911 -2.871139 -3.173551 -2.480687 -3.073880 -0.285340 -0.438641 1.165753 -0.526613 -0.286505 -2.673152 -2.030301 2.363021 -0.974710 1.935703 1.563281 1.347286 1.639972 2.672537 -1.375763 0.083903 -0.678956 0.037654 -0.626053 -1.117237 -1.488507 2.390994 -1.140020 0.998546 2.578464 -0.739533 0.943329 -0.782998 2.238319 -1.397078 3.597994 1.330748 -0.822386 1.781541 1.120463 3.468935 0.295970 -1.752777 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::move_backward(Job*, Job*, Job*) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_linear_insert >(Job*, __gnu_cxx::__ops::_Val_comp_iter) = 0.252231 -2.184532 5.094740 4.123036 -0.090776 1.766974 0.327977 -3.827118 3.882692 0.895501 -0.633086 1.204452 -2.432274 1.519494 -2.786965 2.446328 -3.458308 -2.708835 -1.452101 -2.729484 -2.008835 -2.572435 1.008149 0.597197 1.637043 1.114775 -2.683920 0.510164 -3.396138 -3.580323 2.385010 -0.618322 1.337696 -0.996852 0.467787 -6.753501 4.028984 3.125494 -1.221981 -3.504438 0.791963 -2.067892 -0.866160 -1.011606 -0.142611 0.489587 -0.768419 1.905052 1.988141 0.804723 1.358577 1.951364 0.354376 6.478881 -2.486321 3.006759 1.645083 0.797497 -0.511005 1.340113 0.962470 1.599422 1.572465 2.238456 -0.577055 -2.577565 -0.362807 -0.890220 -2.747904 3.212626 -0.192283 -1.489459 -2.463479 -1.013627 -3.029329 -0.550770 -3.221300 2.588840 4.946874 -2.937653 2.487449 0.602583 1.763643 0.054284 2.047066 -0.563794 4.175116 1.352456 -1.518262 -0.722542 -2.279548 -0.168302 0.732941 -0.564981 -2.283969 -4.667953 2.068540 -4.609515 -3.900298 1.226227 1.405035 -0.740035 -2.216014 -0.756140 2.022422 0.541218 -1.663101 -3.414857 -1.139112 1.772385 0.145858 -1.494721 0.633678 -1.165413 -0.050813 -0.732572 -4.072218 -0.251864 0.773579 -1.416127 -1.454139 3.064648 -0.943822 -0.263338 -0.599672 0.826949 -1.037745 2.467312 -0.896913 2.279618 -0.207395 1.549905 -2.837966 1.444979 1.365038 1.140830 -1.277607 0.599493 -0.999597 1.145605 -2.267874 0.739543 -2.270841 1.042740 2.203991 -1.171341 -2.572219 -1.343620 -0.347928 -4.115338 0.740802 -2.398322 -2.533580 -0.009771 2.949184 2.804864 2.217816 3.257081 -2.967695 1.700044 -0.069147 0.440185 2.418016 -0.613533 1.575131 -1.680922 -3.349569 1.928457 0.837525 0.696740 0.564571 -0.681859 -0.209462 -2.578937 -1.213049 1.615243 1.498191 -0.275673 3.004584 2.077434 3.353174 -4.191098 1.502624 1.772821 -1.133897 0.894049 -0.647306 -3.811223 1.410912 0.996692 1.629600 3.803597 -0.404987 -1.455810 0.804751 -0.214751 1.533497 -2.360544 0.548434 -2.456899 -1.323066 -2.312713 1.034766 -0.961691 -0.764644 -1.496226 -1.750248 3.802131 -3.729232 -3.186588 4.834995 -1.126320 1.731234 -4.274677 1.991162 -1.878555 2.383092 -0.493225 0.514536 -0.135272 0.345778 -2.428154 1.136988 1.817192 -1.740230 1.553811 4.289917 0.947017 0.966710 0.010952 2.643401 -1.243518 1.591510 -2.142239 3.888664 -0.269846 -2.028572 -0.042976 -1.626267 0.279994 -1.801820 1.066110 2.823179 2.451426 1.376959 1.570631 2.191579 2.586803 -2.068093 2.605268 -0.323092 0.287071 -1.702822 -0.437138 0.737525 0.473817 -1.225933 1.673241 -3.824748 -4.240319 -4.430936 -3.551327 0.491207 -1.485491 0.723200 -0.835950 -0.625152 -3.457737 -2.817466 3.216549 -1.527624 2.242006 2.253753 1.812194 2.196526 3.738750 -2.034414 0.626619 -0.282672 0.162559 -0.565800 -1.434016 -2.288388 3.291207 -1.492140 1.242081 3.588792 -0.908915 1.614660 0.045405 2.010017 -1.786848 4.389234 1.713807 -1.370971 2.057034 2.151336 4.706308 1.013672 -2.262063 -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.100108 -0.593174 1.156467 1.082656 -0.286860 0.287869 0.094329 -0.685040 0.727274 0.066094 -0.128482 0.231940 -0.732446 0.388475 -0.120510 0.645702 -0.965604 -0.548926 -0.290069 -0.458248 -0.360995 -0.534229 0.426243 0.230439 0.496830 0.633384 -0.516628 -0.099768 -0.509359 -0.428845 0.637234 -0.235819 0.576538 0.618000 0.128985 -1.625193 0.744173 0.571743 -0.263184 -0.822000 0.244676 -0.429778 0.071845 -0.503395 -0.302395 0.214114 -0.079361 0.352895 0.550824 0.228601 0.064624 0.155478 0.268358 1.089095 -0.442794 0.524297 0.318777 -0.035843 -0.170379 -0.081866 0.270218 0.297610 0.451885 0.445765 -0.133708 -0.692709 -0.310335 -0.495021 -0.839882 0.681644 -0.110247 -0.005252 -0.801251 -0.336427 -0.435565 -0.162894 -0.847059 0.853898 1.125702 -0.807100 0.564715 0.110010 0.143066 -0.129952 0.302469 0.018533 0.591450 0.299887 -0.223091 0.099852 -0.258135 -0.350044 0.228424 -0.205811 -0.421400 -0.943282 0.423061 -0.680779 -0.833909 0.296605 0.370886 -0.099975 -0.473193 -0.152439 0.274827 0.409624 -0.455197 -0.727451 -0.087764 0.160721 0.339072 -0.337592 -0.140355 0.107976 -0.254685 -0.386598 -0.976863 -0.081201 0.049419 -0.472216 0.077584 0.594588 -0.254941 0.033488 -0.097927 0.148418 -0.276170 1.036655 -0.027082 0.511895 0.178610 0.217356 -0.181846 0.171704 0.411363 0.686554 -0.229179 -0.097075 -0.313572 0.177392 -0.469066 -0.068309 0.024411 0.229655 0.717180 -0.253939 -0.648895 -0.260165 -0.341693 -1.168415 0.188405 -0.676387 0.051245 0.624437 0.623702 0.504955 0.546115 0.999390 -0.743103 0.248663 -0.088490 -0.058871 0.610449 0.492665 0.422486 -0.370532 -0.620077 0.506359 0.079330 0.214704 0.206428 -0.121933 0.034304 -0.585443 -0.245089 0.496826 0.391598 -0.118723 0.561754 0.398907 0.512120 -0.410067 0.254136 0.449729 -0.120644 0.143538 0.034552 -0.917879 0.487355 0.035109 0.016809 0.509770 -0.172902 -0.283505 0.322351 -0.236037 0.267691 -0.560530 0.144688 -0.526716 -0.050007 -0.791185 0.223622 -0.143157 -0.315034 -0.205398 -0.080057 0.953998 -0.642829 -0.371087 0.847642 -0.117855 0.514160 -0.825033 0.736234 -0.434749 0.647223 -0.253400 -0.223030 0.080621 -0.240450 -0.371796 -0.090380 0.436392 -0.071838 -0.050803 0.886665 0.262503 -0.138797 0.110064 0.670595 -0.015787 0.623392 -0.287189 0.822139 -0.034439 -0.096173 0.148567 -0.328761 -0.038441 -0.422294 0.080902 1.021682 0.549552 0.491799 0.566162 0.264690 0.646811 -0.482659 0.491539 -0.047975 0.361011 -0.393425 -0.061473 0.165978 0.491891 -0.334974 0.403029 -0.819361 -1.230003 -0.832203 -0.590237 -0.220661 -0.127152 0.317538 -0.238852 -0.144067 -0.510367 -0.622812 0.444973 -0.398148 0.671190 0.360432 0.291911 0.605459 0.842559 -0.490705 -0.098426 0.109453 0.207263 0.042650 0.044550 -0.673469 0.649914 -0.462139 0.106814 0.976316 -0.315300 0.276106 -0.185913 0.931764 -0.461529 1.062157 0.320430 -0.407553 0.748704 0.568880 0.634339 0.419923 -0.505568 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a(Job*, Job*, Job*) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__miter_base(Job*) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_wrap(Job* const&, Job*) = -0.216889 -0.266459 0.395803 0.358802 0.113353 0.124916 0.245948 -0.174661 0.469585 0.329413 -0.007362 -0.032471 -0.401040 0.090013 0.115063 0.290524 -0.196848 -0.331630 0.027113 -0.200139 -0.128038 -0.330870 0.165481 -0.106598 0.150359 -0.107711 -0.137837 -0.168707 -0.356358 -0.158032 0.290792 -0.185617 0.213712 0.088776 -0.043321 -0.702062 0.261666 0.145042 -0.145935 -0.324930 0.068807 -0.258085 0.239958 -0.072157 0.163421 0.120623 0.114283 0.071114 0.303339 0.131296 0.287338 -0.121985 -0.030490 0.555408 -0.395300 0.218027 0.043743 -0.055105 -0.123191 0.127063 0.076943 -0.007923 0.280317 0.287755 -0.196732 -0.193710 -0.079493 -0.219865 -0.473803 0.243908 -0.030907 0.036258 -0.336534 -0.063083 -0.038942 -0.199795 -0.676753 0.197781 0.544326 -0.285583 0.383646 0.152019 0.268294 0.001952 0.195213 0.037562 0.294699 0.022421 -0.294056 0.011327 -0.200821 -0.072924 -0.024529 0.094550 0.022512 -0.128327 0.112014 0.162297 -0.352471 0.176669 0.028961 0.169857 -0.442496 0.072874 0.169694 0.238159 -0.255216 -0.464516 -0.234132 0.024126 -0.010357 -0.087593 0.024672 -0.299998 -0.227258 -0.320474 -0.343451 -0.193706 -0.016508 -0.325417 -0.278200 0.334512 -0.299204 0.071418 0.048823 0.086933 -0.119701 0.385644 0.071677 0.245280 0.189724 -0.164565 -0.808130 -0.016216 0.186422 0.517857 0.047057 0.096815 -0.174283 -0.009022 -0.269278 0.011859 0.148086 0.219611 0.447816 -0.194995 -0.199626 -0.079910 0.190318 -0.396993 0.232127 -0.294806 0.257395 -0.013431 0.286884 0.249883 0.268839 0.600635 -0.377012 0.270257 -0.180719 -0.050241 0.267341 0.248729 0.269126 -0.163710 -0.187158 0.028721 0.268726 -0.047430 0.144729 -0.181513 0.009020 -0.336900 -0.070138 0.030282 0.083114 -0.156346 0.217679 0.111036 0.453879 -0.472448 0.147832 0.227368 0.070123 0.064001 0.009635 -0.384964 0.263986 0.048628 -0.160819 0.076910 -0.038292 -0.271402 0.056405 -0.160563 0.133449 -0.213268 0.019920 -0.220722 -0.107197 -0.261829 0.103177 -0.197172 -0.249392 0.038858 0.171940 0.353763 0.152851 -0.182399 0.246892 -0.116255 0.064242 -0.399758 0.631279 -0.239453 0.106469 -0.377915 -0.070115 -0.129647 0.411151 0.018980 -0.030555 0.165898 -0.077239 0.173204 0.496971 0.165358 0.094412 0.114861 0.339207 0.085525 0.048982 -0.029303 0.325288 -0.067848 0.012571 0.122012 -0.172845 0.197385 0.014790 -0.036545 0.399399 0.403974 -0.088995 0.245487 0.179694 0.199252 -0.154400 0.178474 0.025816 0.378240 -0.117683 0.043544 -0.025753 0.044870 -0.168403 0.133783 -0.341205 -0.382094 0.154007 -0.229562 -0.076458 0.229987 -0.023723 0.042852 0.124349 -0.381034 -0.094659 0.022612 -0.191255 0.188176 -0.014701 0.111683 0.259365 0.390275 -0.190001 -0.239648 -0.002498 -0.080009 -0.127920 -0.068424 -0.147443 0.223762 -0.365918 0.132946 0.165409 -0.101269 -0.077372 0.040507 0.414465 -0.209244 0.484187 0.195786 0.028391 0.414686 0.305020 0.665044 0.015395 -0.157214 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a1(Job*, Job*, Job*) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_base(Job*) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a2(Job*, Job*, Job*) = -0.597181 -1.146650 1.746159 1.506355 0.241895 0.893340 0.375586 -1.019144 1.274986 0.909717 -0.088491 0.516690 -1.098944 0.179460 -0.144874 0.692699 -0.839574 -1.078277 -0.248059 -0.852658 -0.425327 -0.997377 -0.002008 0.509052 0.473445 -0.207935 -0.792869 -0.059672 -1.654869 -1.294377 0.631837 -0.303629 0.809109 -0.412161 0.220568 -2.734624 1.305478 1.289456 -0.352821 -1.532089 0.256723 -0.765818 0.111765 -0.016040 -0.196362 0.442643 0.120080 -0.044211 0.666565 0.365272 0.543403 0.283064 0.222985 2.137264 -0.748309 1.199830 0.673460 -0.076860 -0.156784 0.400609 0.245697 0.195113 0.906930 0.688980 -0.477859 -0.805047 -0.056766 -0.165983 -1.384603 0.840180 0.016760 -0.589487 -0.745759 -0.339900 -1.102240 -0.519679 -0.339347 0.660534 1.874045 -0.825361 1.404468 0.392689 0.745113 0.159297 1.087188 -0.044429 1.368428 0.381031 -0.816821 0.036567 -0.912139 -0.223825 0.056001 0.494362 -0.692829 -0.936787 0.625841 -1.035509 -1.474868 0.818252 0.186636 -0.087598 -1.560195 -0.427767 0.773982 0.617042 -0.787555 -1.497488 -0.804339 0.807600 -0.180784 -0.640879 0.139057 -0.720349 -0.266620 -0.543218 -1.229742 -0.215275 0.562059 -0.767361 -0.916559 1.383862 -0.690643 0.315482 -0.129116 0.424818 -0.494414 0.853200 -0.025048 0.825196 0.099360 -0.280487 -1.794683 -0.227547 0.268023 0.789457 -0.258368 -0.112282 -0.335102 0.401965 -0.479598 0.634182 -0.252220 0.766730 1.240116 -0.214142 -0.645450 -0.651483 0.136302 -1.460521 0.322553 -0.840018 -0.417429 0.255251 1.117251 0.587891 0.676226 1.459325 -0.887996 0.778765 -0.305281 -0.098791 0.834741 -0.201223 0.653233 -0.660592 -1.094198 0.566565 0.765262 0.379454 0.382842 -0.430321 -0.019669 -0.746297 -0.641315 0.263718 0.398113 -0.071312 1.170669 0.804267 1.847601 -1.481135 0.368132 0.402560 -0.353592 0.407511 -0.336048 -1.413444 0.378531 0.474537 -0.120464 1.428476 -0.252044 -0.893748 0.413965 -0.135724 0.473505 -0.956016 0.591094 -1.049794 -0.152004 -0.795732 -0.282700 -0.715257 -0.625955 -0.758831 -0.333885 1.546626 -0.697973 -1.362920 1.319039 -0.292276 0.497158 -1.948506 1.210057 -0.769411 0.936682 -0.608868 -0.063707 -0.223166 0.794213 -0.518529 0.292536 0.707526 -0.885414 0.809526 1.599383 0.388734 0.300381 0.131586 0.953354 -0.141695 0.199208 -0.831106 1.317188 -0.262255 -0.307900 -0.005557 -0.634697 0.542308 -0.246005 0.084219 0.430468 1.049600 -0.075422 0.284608 1.134249 0.500340 -0.588890 0.784755 -0.045973 0.690550 -0.549938 -0.062086 -0.142568 0.379010 -0.110961 0.605634 -1.562203 -1.252972 -0.919120 -1.400158 -0.052440 0.472220 0.105754 0.181509 0.052027 -1.604886 -0.847417 0.928591 -0.550225 1.096237 0.655360 0.757282 1.024907 1.292357 -0.464435 -0.320344 -0.190875 -0.181523 -0.519860 -0.490428 -0.603661 1.024496 -0.815224 0.766165 0.943968 -0.207521 0.442905 0.062699 0.748852 -0.887941 1.782925 0.783305 -0.442272 0.874354 0.861628 1.852602 -0.365518 -0.768963 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward::__copy_move_b(Job*, Job*, Job*) = -1.307787 -3.368746 4.159946 3.681884 0.862243 2.870895 0.519494 -2.067137 2.235160 2.901645 -0.768682 2.115577 -2.237000 -0.254009 -0.241980 1.178619 -1.460791 -2.326762 -0.198124 -1.261028 -0.265473 -2.280024 -1.292599 2.463315 0.783917 -0.187727 -1.601593 0.615381 -4.345634 -4.639158 0.136351 -0.397667 1.801195 -1.418692 1.294649 -4.769951 3.293524 4.070495 -0.337786 -4.450746 0.284894 -1.203733 -0.483628 0.919293 -0.491082 1.865867 0.812317 -0.184145 0.482482 1.228307 0.605639 0.422094 1.708668 3.735853 -0.155083 3.441278 2.662465 -0.054975 0.746063 0.701255 0.531398 0.072438 1.870541 1.371531 -0.918179 -1.301384 -0.085354 0.844278 -2.651265 1.364850 0.092619 -1.980022 -1.406760 -0.977668 -3.154490 -0.706026 0.099857 1.060922 4.471793 -1.198842 3.940093 1.497778 2.109083 0.488967 3.145414 -0.230187 2.996334 1.359756 -2.234565 0.568802 -2.284689 -1.264765 0.174718 1.264054 -2.440621 -1.809605 1.377701 -3.833135 -3.494111 2.561651 -0.187017 -0.821517 -2.945058 -1.359586 2.027858 1.494558 -1.620429 -3.330685 -1.640544 2.521720 -1.011710 -1.884219 0.465980 -1.009336 -0.129487 0.054699 -2.431949 -0.293244 2.519573 -1.817321 -1.640460 3.339291 -0.631877 1.658049 -0.690824 0.641916 -0.755188 1.114168 0.634775 1.876778 -0.247367 -0.858520 -3.508269 0.067500 0.145834 -0.435870 -0.999832 -0.352881 0.332838 1.484123 0.335836 2.616969 -1.517436 1.841903 2.603942 0.199654 -1.130982 -2.496327 -0.494226 -2.593972 0.598919 -1.401477 -2.139078 0.387297 2.685277 0.150595 0.899089 2.213312 -1.788199 1.014994 -0.651552 0.336130 1.021849 -1.346149 0.939942 -1.461843 -2.744607 1.899682 2.586863 1.082048 1.119430 -1.226768 0.160581 -0.702751 -1.453805 1.155930 0.730990 0.131224 3.461812 2.047289 4.379426 -1.932780 0.085997 0.004011 -1.119139 1.037209 -1.236683 -3.413695 0.720526 1.206487 0.858188 4.254686 -0.681668 -1.624494 1.541803 0.089424 0.731802 -2.339109 2.351911 -2.866308 -0.091861 -1.279861 -0.876820 -1.766255 -1.467550 -2.580839 -0.832925 3.769692 -1.752715 -3.323283 2.439924 -0.797118 0.910373 -4.375621 1.694606 -1.677386 2.380766 -0.210669 -0.131004 -0.194031 1.154429 -0.951606 0.171010 1.864653 -2.559749 2.382228 2.528748 0.557406 0.116886 0.681260 1.440597 -0.824103 -0.518756 -2.613657 2.357877 -0.677001 -0.218564 -0.576406 -1.466630 1.800378 -0.367894 -0.356796 -0.701435 1.737466 -0.843857 -0.326454 2.780818 0.051386 -1.305248 1.692535 -0.107465 1.513223 -1.657321 -0.334936 -1.345422 0.710884 0.631212 1.586466 -3.975582 -1.799970 -2.998213 -3.263402 -0.772347 1.246340 0.676735 1.043784 0.123934 -3.899627 -2.484729 3.491397 -0.954555 1.746639 2.113143 2.077128 2.548307 2.279185 0.081798 -0.669997 -1.180199 -0.591256 -1.851147 -1.223174 -0.583180 2.040820 -1.496447 2.272293 1.879306 -0.266213 1.421666 -0.233212 0.874394 -2.339252 3.966228 2.314005 -1.594444 0.768431 1.783240 3.960042 -2.531348 -2.003973 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__copy_move::__assign_one(Job*, Job*) = -0.069333 -0.496184 1.106413 0.856990 0.005696 0.370995 0.096092 -0.803678 1.014288 0.143085 -0.116291 0.126917 -0.644100 0.347230 -0.630029 0.481859 -0.759251 -0.720973 -0.311297 -0.673728 -0.481718 -0.623107 0.240253 0.030566 0.342500 0.024958 -0.560481 0.083811 -0.931117 -0.437026 0.640809 -0.232261 0.268959 -0.271140 0.104678 -1.404134 0.804134 0.574241 -0.324253 -0.757543 0.149406 -0.622714 0.041358 -0.355805 0.024767 0.061551 -0.124130 0.348649 0.594351 0.105050 0.351790 0.338482 -0.197129 1.571879 -0.768452 0.631873 0.273090 0.152617 -0.161826 0.381556 0.196871 0.304489 0.372863 0.506121 -0.254284 -0.601898 -0.094584 -0.349176 -0.620097 0.777676 -0.096808 -0.221420 -0.593626 -0.222410 -0.790751 -0.272622 -0.949171 0.598482 1.150234 -0.770097 0.544944 0.160567 0.528413 0.131177 0.522135 -0.052264 0.997152 0.223245 -0.414540 -0.081975 -0.599473 0.146464 0.054340 -0.167824 -0.369112 -1.011461 0.457221 -1.029064 -0.918739 0.303677 0.298633 0.008309 -0.536066 -0.008052 0.442902 0.158509 -0.488330 -0.844989 -0.226663 0.376413 0.086587 -0.234768 0.291722 -0.459021 -0.038388 -0.419718 -0.931331 -0.117162 0.092352 -0.381243 -0.396322 0.835254 -0.391365 -0.092912 -0.046747 0.195519 -0.299889 0.738829 -0.188196 0.516550 -0.183785 0.215581 -1.057137 0.225719 0.320009 0.489776 -0.209251 0.282653 -0.280907 0.176990 -0.661033 0.023291 -0.427820 0.218217 0.356440 -0.418587 -0.578609 -0.265435 -0.018746 -0.973944 0.166141 -0.574675 -0.516250 -0.012584 0.689721 0.960001 0.590235 0.956108 -0.591831 0.385061 -0.133068 -0.007381 0.637306 -0.125207 0.475704 -0.397458 -0.672430 0.332365 0.163048 0.114464 0.219998 -0.271862 -0.047608 -0.745558 -0.142138 0.223481 0.415431 -0.110918 0.715887 0.493009 0.339564 -1.186479 0.413077 0.490368 -0.173320 0.196617 -0.133818 -0.851526 0.372919 0.270585 0.163204 0.603304 -0.101046 -0.359802 0.120022 -0.155965 0.469111 -0.547509 -0.083314 -0.520720 -0.344771 -0.617214 0.362212 -0.339709 -0.236931 -0.265536 -0.469219 0.854544 -0.762924 -0.615125 1.088374 -0.051068 0.465594 -0.879900 0.485196 -0.472019 0.753234 -0.172465 0.177466 -0.121109 0.330470 -0.465534 0.260875 0.411387 -0.414231 0.360187 0.952029 0.303996 0.347751 0.067918 0.758254 -0.246375 0.347048 -0.404333 0.840809 -0.108605 -0.510607 0.169947 -0.399161 0.065265 -0.302968 0.333714 0.762720 0.655333 0.346633 0.488235 0.531666 0.596908 -0.434316 0.432915 -0.123518 0.178309 -0.405959 -0.052230 0.160801 0.114311 -0.340193 0.226112 -0.900895 -1.082451 -0.920812 -0.712847 0.173164 -0.361065 -0.069379 -0.130992 -0.053270 -0.810107 -0.548286 0.524454 -0.421335 0.570965 0.359222 0.359939 0.549997 0.990138 -0.588338 -0.009295 0.107268 0.013063 -0.138211 -0.239053 -0.670728 0.803899 -0.508615 0.257096 0.829305 -0.271277 0.255878 0.252696 0.442421 -0.449894 1.020392 0.427239 -0.283157 0.624867 0.663682 1.212799 0.418970 -0.501328 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(Job&, Job*) = 0.810283 -1.935416 4.623344 3.704978 -0.501001 1.117860 0.098253 -2.928588 2.039240 0.949326 -0.809062 1.902564 -1.610786 1.438939 -3.184492 2.455262 -2.960108 -1.779478 -1.470000 -2.008126 -1.510909 -1.127437 0.945466 0.739854 1.988235 1.093997 -2.306554 -0.013785 -2.471653 -4.033219 0.629925 -0.304509 1.061274 -1.888258 0.261764 -4.425513 3.108188 3.147467 -1.178226 -3.076832 1.380927 -1.102755 -1.351636 -0.582709 -1.191322 0.285715 -0.635770 1.206169 1.163708 1.387139 0.869540 2.371366 1.889838 5.560221 -0.939773 2.571800 2.222957 0.852337 -0.185772 0.661591 1.037109 1.250162 0.601424 0.866180 0.813269 -2.457475 -1.129643 -0.407269 -1.234754 2.232954 -0.871183 -1.586482 -1.823201 -1.093856 -2.858673 -0.080774 -2.680511 2.244072 3.610387 -2.772467 1.574981 0.343399 0.335391 0.096153 0.957747 -0.154086 2.050014 1.534651 0.002526 -0.535673 -0.057178 0.095887 1.033607 -0.663915 -2.630123 -5.364012 2.642211 -4.738754 -3.252061 1.343625 1.649601 -1.573104 -0.116270 -0.988608 0.690568 0.715033 -1.580839 -2.026634 -0.373112 1.367326 1.273553 -1.405983 0.424556 -0.270456 0.471276 0.780338 -3.464809 0.802719 0.786690 -0.857312 -0.438793 2.072537 0.851548 0.054176 -0.686144 0.927626 -0.808540 2.249000 -0.533546 2.376956 -1.177046 2.826952 -0.823708 1.696602 1.627686 -1.294894 -1.670529 0.848451 -0.782983 1.217570 -0.998637 1.144792 -2.434657 0.968017 1.473782 -0.751631 -2.418646 -1.558811 -1.501840 -3.148799 0.030437 -1.767937 -3.076529 0.699786 2.212521 1.562507 1.591478 2.137717 -1.781797 0.207871 0.516133 0.000321 1.679771 -1.568410 1.048093 -1.286560 -2.936876 1.924956 0.869135 1.062355 0.176165 0.327127 0.189764 -1.734531 -0.215147 1.708677 1.601371 -0.738923 2.558793 2.069479 2.255568 -1.565688 0.509176 1.162126 -1.632279 0.520576 -0.735333 -3.390112 0.647306 0.824096 1.894880 3.269648 -0.114168 -0.459126 1.585773 -0.716565 0.881323 -1.692623 0.912839 -1.963789 -1.032492 -1.612527 0.758390 -0.273000 -0.094766 -1.444094 -2.138298 3.319323 -4.778563 -1.541379 3.426156 -0.189783 0.688702 -2.933252 2.202332 -1.284928 2.423369 0.790980 0.213766 0.434444 -0.460509 -2.522169 0.581276 1.539596 -1.276098 0.812701 3.106704 0.698199 0.091481 -0.279792 2.245251 -1.708039 2.028210 -1.924691 2.988385 -0.341655 -2.095519 -0.377662 -0.943920 -0.768093 -2.005115 1.150540 2.023017 0.488899 1.346628 0.936641 1.459853 2.808484 -1.855661 2.621009 -0.500611 0.406146 -1.771919 -0.576650 0.657770 0.863612 -0.732271 1.589158 -3.302094 -2.997073 -5.574594 -2.411055 0.450202 -1.804314 1.168029 -1.596953 -1.193890 -2.384782 -3.297273 3.712034 -1.237264 0.529545 2.753134 1.408969 1.970137 2.595144 -0.831770 1.386912 -0.946682 0.605651 0.410420 -1.225431 -1.307889 2.325515 -0.935963 0.313689 3.227898 -0.648725 2.047198 0.547298 0.376164 -1.568173 3.302714 1.163037 -1.480419 1.567362 2.498166 2.592741 0.073884 -1.963143 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.109863 -0.520881 1.031658 0.953835 -0.101503 0.320326 0.150940 -0.649509 0.840841 0.346129 -0.002910 0.115539 -0.628969 0.299147 0.117886 0.617249 -0.755395 -0.533307 -0.217442 -0.560718 -0.430030 -0.546712 0.245055 0.042200 0.346790 0.201833 -0.461563 -0.103916 -0.485062 -0.441997 0.620261 -0.238213 0.488987 0.289352 0.136659 -1.843931 0.726691 0.436590 -0.275256 -0.745060 0.111748 -0.431480 0.203225 -0.290500 -0.113088 0.194321 -0.031076 0.229426 0.554074 0.212367 0.271070 0.119419 0.102403 1.320024 -0.553302 0.510823 0.228415 -0.105030 -0.223046 0.149331 0.221212 0.215933 0.505405 0.449330 -0.182238 -0.603700 -0.159834 -0.414797 -0.844176 0.633400 0.034495 -0.178772 -0.658293 -0.315848 -0.337437 -0.325854 -1.023784 0.684268 1.068819 -0.733467 0.588654 0.190124 0.326495 0.047668 0.464751 -0.011100 0.823162 0.198424 -0.378647 0.125340 -0.292365 -0.335700 0.174879 -0.068508 -0.286745 -0.781296 0.298632 -0.313778 -0.773177 0.413232 0.292647 0.096551 -0.830413 -0.246240 0.406965 0.338615 -0.461573 -0.788884 -0.359530 0.221455 0.085253 -0.293905 -0.054830 -0.255439 -0.249349 -0.416962 -0.861743 -0.143906 0.099054 -0.405409 -0.305979 0.689340 -0.396971 -0.023044 -0.064657 0.171984 -0.317799 0.853929 -0.060856 0.527257 0.184368 0.021781 -0.850057 0.096258 0.330258 0.701645 0.012238 -0.084032 -0.341882 0.165549 -0.558501 0.145887 0.097396 0.398249 0.819932 -0.165887 -0.553963 -0.251997 0.002097 -0.993332 0.289173 -0.627623 0.096937 0.357028 0.614104 0.593665 0.519767 0.830157 -0.722369 0.458885 -0.273502 0.007909 0.593298 0.384757 0.439444 -0.361613 -0.500866 0.287456 0.257817 0.139220 0.259792 -0.296254 0.024653 -0.542911 -0.294906 0.263873 0.313537 -0.142451 0.496846 0.393277 1.016248 -0.793030 0.282809 0.414798 -0.088945 0.157824 -0.026730 -0.780553 0.366240 0.133465 -0.140117 0.519660 -0.176320 -0.412461 0.130301 -0.176268 0.267284 -0.432572 0.082821 -0.477095 -0.125396 -0.597021 0.143990 -0.370851 -0.313778 -0.189938 -0.035729 0.875072 -0.435029 -0.504019 0.892914 -0.326137 0.353205 -0.874803 0.970491 -0.423557 0.408228 -0.550945 -0.200249 -0.132618 0.253288 -0.310090 0.144801 0.393794 -0.218118 0.064717 1.020974 0.264487 0.107575 0.072370 0.656946 0.003900 0.384097 -0.281577 0.886311 -0.135450 -0.001222 0.055780 -0.338481 0.160644 -0.259945 0.084495 0.730815 0.597877 0.211215 0.371379 0.421165 0.456296 -0.415479 0.489168 -0.004762 0.361668 -0.342734 0.011278 0.126298 0.279282 -0.309167 0.287101 -0.771781 -0.862959 -0.529957 -0.473626 -0.188010 0.283388 0.101806 -0.089705 -0.047276 -0.627500 -0.438492 0.404864 -0.377735 0.418784 0.239618 0.304944 0.584697 0.873415 -0.391340 -0.229345 -0.007987 -0.108646 -0.099488 -0.103184 -0.544340 0.684673 -0.498067 0.238192 0.703325 -0.192714 0.183173 0.002486 0.841581 -0.414554 0.975128 0.328993 -0.198139 0.636707 0.671866 0.949688 0.171242 -0.432057 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(bool (*)(Job, Job)) = -0.155175 -0.443881 0.678477 0.635123 0.020957 0.249042 0.306676 -0.375949 0.750143 0.243181 -0.019730 -0.040370 -0.625151 0.172694 0.136767 0.366445 -0.485907 -0.519661 -0.035684 -0.353196 -0.245620 -0.535007 0.214298 -0.007457 0.231663 0.037811 -0.241834 -0.212123 -0.558394 0.024420 0.626753 -0.243006 0.365147 0.372051 0.047444 -1.284088 0.429500 0.236621 -0.193239 -0.569155 0.053542 -0.457717 0.301039 -0.287782 0.148209 0.135978 0.086156 0.327855 0.469969 0.098328 0.201174 -0.114044 -0.139658 0.953829 -0.580974 0.364501 0.107117 -0.058528 -0.161427 0.171744 0.141842 0.074731 0.444981 0.444840 -0.324006 -0.353711 -0.103680 -0.428473 -0.733011 0.463976 0.087539 0.069842 -0.576984 -0.129243 -0.187054 -0.285006 -0.996864 0.510310 0.878403 -0.564458 0.572255 0.201324 0.432349 -0.016980 0.373357 0.020197 0.594638 0.071947 -0.438908 0.044713 -0.596429 -0.205074 -0.004328 -0.131453 -0.060894 -0.444336 0.152567 -0.000260 -0.605022 0.249152 0.097233 0.201096 -0.620743 0.055266 0.333867 0.321430 -0.394082 -0.709613 -0.313999 0.116669 -0.033376 -0.170236 0.047144 -0.276261 -0.283846 -0.627391 -0.609035 -0.260175 0.038811 -0.449975 -0.275798 0.575440 -0.525975 0.067436 0.031785 0.064900 -0.198955 0.671529 0.061134 0.284463 0.356152 -0.253384 -0.948982 0.057341 0.249281 0.965575 0.064297 0.071005 -0.218460 0.072216 -0.439658 -0.052020 0.233585 0.272058 0.505595 -0.293065 -0.360109 -0.169128 0.225920 -0.667657 0.309369 -0.488689 0.302064 0.131206 0.481592 0.563973 0.405352 0.827060 -0.610013 0.451528 -0.250061 0.023303 0.429909 0.495208 0.396272 -0.280345 -0.340442 0.113296 0.229721 -0.006414 0.203610 -0.291649 -0.007802 -0.530887 -0.225137 0.045621 0.201829 -0.169972 0.409986 0.237097 0.473857 -0.826105 0.269295 0.337369 0.040099 0.120783 0.027992 -0.629466 0.443879 0.067207 -0.223036 0.210094 -0.129142 -0.396272 0.081451 -0.167405 0.223683 -0.345492 -0.045800 -0.378259 -0.226624 -0.520296 0.254704 -0.307760 -0.377523 -0.064720 0.128637 0.626497 0.037134 -0.356522 0.541033 -0.221032 0.276195 -0.667647 0.808053 -0.363706 0.223862 -0.495957 -0.139220 -0.160939 0.421724 -0.083465 -0.014924 0.294711 -0.165596 0.186416 0.776552 0.232534 0.141755 0.198665 0.531763 0.100635 0.137063 -0.145314 0.567924 -0.102254 -0.019193 0.183775 -0.299494 0.293009 -0.055993 0.021772 0.769611 0.642870 0.122249 0.435984 0.317328 0.273776 -0.275296 0.228179 -0.004944 0.426591 -0.217420 0.064700 -0.009484 0.091974 -0.269143 0.214879 -0.583374 -0.794527 0.001418 -0.387117 -0.105217 0.148191 -0.009596 0.046238 0.113783 -0.626644 -0.214560 -0.091205 -0.324027 0.352452 0.063994 0.207963 0.447463 0.681213 -0.413541 -0.301391 0.183693 -0.026555 -0.193121 -0.062529 -0.425193 0.442878 -0.519964 0.258733 0.480589 -0.154068 -0.020264 -0.066656 0.832659 -0.334319 0.802860 0.315436 -0.149344 0.549426 0.500042 0.902601 0.239438 -0.307337 -PE-benchmarks/karatsuba.cpp__makeEqualLength(std::__cxx11::basic_string, std::allocator >&, std::__cxx11::basic_string, std::allocator >&) = -3.133723 -6.263321 6.573145 5.701394 1.906269 4.212902 2.598562 -3.336924 5.271683 4.052483 -2.070173 3.389912 -5.247892 -0.537219 -1.284071 1.558775 -2.617720 -5.331401 0.376971 -1.493464 -0.632490 -5.162619 -0.103835 3.704707 1.647612 0.985351 -2.665144 -0.358831 -8.706039 -6.350066 2.313375 -0.925383 3.574829 -0.410636 0.384943 -9.798390 4.490236 6.553614 -0.965585 -8.366999 1.242511 -2.843163 -1.251203 1.126268 0.183206 2.257499 1.580783 1.611321 0.736421 1.666048 1.529644 -0.132090 1.659412 7.553195 -1.339362 6.297585 5.552207 0.651682 0.154177 1.459325 1.545095 0.100681 4.431378 4.632854 -3.096944 -1.537606 0.384221 -0.121717 -6.829745 3.166556 0.450810 -2.022034 -2.610759 -1.228339 -3.765251 -0.750536 2.877851 2.027305 9.050946 -2.313834 8.149011 2.762240 4.456263 -1.282495 4.074417 -0.879293 5.052353 2.204579 -4.380620 -1.802180 -7.171000 -2.000724 -0.792480 2.738389 -3.091873 -1.069805 2.982388 -5.475013 -6.900407 2.668251 -0.473394 -0.907739 -5.505858 0.455366 4.181720 3.054434 -2.133081 -6.554525 -4.349530 3.507155 -3.087895 -3.191186 -0.459422 -0.789046 -1.647958 -0.989058 -4.921593 -1.811811 3.734832 -4.700389 -3.131725 5.116923 -3.214336 3.622027 -0.716864 1.031718 -0.324079 1.841579 1.745613 1.890638 3.579634 -2.517852 -5.837117 0.318902 0.525746 3.445514 -2.793043 -0.199961 0.857341 1.850006 0.211545 2.188737 -2.791033 2.797678 4.529635 -1.284605 -2.742218 -4.419600 0.487727 -5.875460 1.582592 -3.746489 -1.393917 0.053475 4.836951 0.870557 1.681954 6.971409 -4.807933 3.859043 0.293240 0.626930 1.357032 -0.371238 2.306054 -2.942718 -5.735130 2.784295 4.515476 0.645685 1.166054 -1.800988 -0.847350 -3.289174 -4.911797 2.138684 0.911157 0.717425 5.305065 2.768992 8.603927 -6.288306 1.234139 0.487111 -0.793391 1.434017 -1.618813 -7.302244 2.678915 1.069472 2.688951 7.340482 -0.423138 -3.883347 2.057192 0.340806 1.026699 -4.596953 4.659403 -5.469275 -0.981690 -2.913818 -1.169354 -2.235883 -3.259391 -3.419486 0.118790 7.047231 -1.199254 -7.510652 4.386091 -1.591774 2.407192 -9.816618 3.555436 -3.322443 4.132054 -1.779511 -0.469730 -0.806607 1.231999 -0.901866 -0.274899 3.033259 -3.859190 5.253694 5.844617 0.997209 1.215907 1.918313 2.447092 -0.501556 -0.801355 -3.980314 4.111440 -0.309912 -2.391298 -0.322966 -2.958316 4.396080 -0.306418 -1.213485 2.018246 5.830936 -1.565708 1.912148 4.562029 1.192199 -3.189400 3.204555 0.805797 4.285913 -2.106815 -0.582910 -2.400791 0.448759 -0.287167 4.025104 -6.658272 -6.045472 -2.332523 -8.918449 -1.258302 -0.253951 2.278409 1.308432 1.043845 -8.143434 -3.704203 2.744691 -1.794396 6.722063 3.447826 4.220074 4.648272 4.556983 -1.754517 -1.138286 -0.735145 0.092206 -4.501149 -3.043491 -1.378557 2.513713 -2.129973 4.639798 3.308746 -0.128700 1.687103 -2.111423 3.044514 -3.665936 8.348504 4.487249 -3.099259 2.532915 0.385489 8.286682 -3.105913 -3.920712 -PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char, std::__cxx11::basic_string, std::allocator > const&) = -0.851940 -2.181129 4.499494 3.046738 0.105050 1.331451 2.231066 -3.386415 3.661980 1.006872 -0.087748 0.055128 -3.623638 1.072145 -2.496686 1.816619 -2.466682 -3.028313 -1.250744 -2.846130 -1.558583 -2.822808 2.348754 0.280866 1.678325 -0.379141 -1.666695 -1.247781 -3.563897 -2.834708 3.198151 -0.564350 1.652837 -0.814523 -0.617429 -6.697594 3.087567 2.306388 -1.604543 -2.936197 1.635577 -1.304667 -0.805322 0.112881 -0.292946 0.202559 -0.283753 2.270958 2.046361 1.411980 2.286999 0.883865 0.078453 6.571753 -3.029602 2.850792 1.702245 1.163105 -0.680578 2.051690 0.253826 1.106683 1.358873 2.498913 -0.687509 -1.488268 0.231583 -1.557837 -3.955608 3.151981 -0.487135 -1.214392 -2.076451 -0.746347 -2.118801 -0.594413 -2.173875 2.015092 5.164125 -3.089513 2.813612 0.656601 1.276908 -0.857892 0.807036 -0.470922 2.420040 0.774047 -1.358760 -1.415342 -3.109793 0.240174 -0.441523 -0.245401 -1.395657 -4.605923 2.674974 -2.538260 -3.903528 1.106527 0.884219 -0.643940 -2.555917 0.088105 1.499275 0.892688 -2.347707 -3.954987 -2.283778 1.825726 0.057915 -0.511640 0.704724 -0.904876 -0.737336 -1.717640 -3.859371 -0.654294 0.247909 -2.545444 -2.150962 2.795129 -1.818958 1.004227 0.768514 1.532607 -1.156513 2.596684 0.263908 1.777099 1.440963 0.643792 -3.257910 0.371624 1.464867 3.088363 -0.461715 0.844685 -1.167640 0.739960 -2.095631 0.644820 -1.149506 0.526330 2.328696 -1.739579 -2.504078 -0.470704 0.854667 -4.512810 1.235341 -3.103555 -1.345913 0.083835 2.214667 2.457836 1.789580 4.774885 -2.936496 2.306824 -0.169295 -0.406468 1.228896 -0.299157 2.077895 -1.474020 -3.761429 0.614783 1.047617 0.320690 0.326469 -0.992351 -0.663483 -3.561060 -1.966358 -0.032838 1.074581 -1.467633 1.923708 2.092941 3.139083 -4.319409 1.226478 1.947097 -1.150924 0.779981 -0.406805 -4.453326 1.322850 0.780427 0.348632 3.115066 -0.108744 -1.849718 1.802422 -1.122689 1.243047 -2.287502 0.484058 -2.741021 -1.648665 -2.964261 0.630180 -0.790632 -1.239977 -0.526757 -0.847310 3.450741 -2.167252 -2.883935 4.118583 -0.356437 1.065796 -4.785322 4.111186 -1.357624 1.837582 -0.892453 0.383371 -0.800757 1.618463 -0.991670 0.347737 0.835386 -1.295564 2.606492 5.481412 0.652275 1.147032 0.776108 3.400003 -0.921997 0.938227 -2.178309 3.596282 -0.782637 -3.119846 0.695202 -1.378950 0.638994 -1.892339 0.988820 3.450632 2.981453 -0.014757 2.261958 2.167202 2.697483 -1.428874 2.531775 0.218331 1.712058 -1.506873 0.071914 0.632265 0.301783 -1.829692 2.263185 -3.660695 -4.905440 -2.755484 -4.753786 0.348053 -1.612638 1.103661 -0.932844 -0.099983 -3.898945 -2.302040 1.347118 -1.730464 2.274774 2.581301 2.253661 2.706620 4.734259 -2.217473 0.612481 0.592733 0.939867 -1.379665 -1.805452 -1.477438 1.868487 -1.562451 1.274044 2.649089 0.124918 1.217437 -1.001986 2.306099 -2.310029 4.639763 1.810039 -0.406416 3.432724 1.777704 4.700018 1.541328 -1.489944 -PE-benchmarks/karatsuba.cpp__addBitStrings(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -3.988284 -8.772863 9.777414 7.586638 2.073695 5.518252 6.045188 -4.009561 5.667255 5.285706 -2.588918 3.718839 -7.559870 -1.608179 -2.277144 1.788015 -3.294563 -7.307533 0.089062 -2.460621 -0.641356 -6.196697 0.151621 5.403106 2.970957 0.289771 -3.185869 -2.780466 -11.730663 -8.285235 3.771822 -1.042871 4.742177 -0.218672 0.099962 -13.602768 6.825757 8.783297 -1.927286 -9.603485 2.816493 -2.155449 -2.425686 2.087541 -0.819067 2.044922 2.305430 3.221144 0.466290 3.229707 3.085858 -0.822774 3.569967 12.317640 -1.236404 8.998635 8.955722 2.074920 0.974539 2.786509 1.799542 -0.259432 4.445016 5.392339 -2.551074 -1.097253 0.281800 -1.418175 -8.515227 3.738262 0.090729 -3.553504 -3.066379 -1.160775 -5.020221 -1.031696 0.174533 2.211467 12.067460 -4.792252 11.413038 4.931086 5.894704 -1.660433 3.132389 -0.464575 4.040437 3.008657 -4.827584 -1.924515 -10.425313 -2.202027 -1.284768 2.164698 -5.606693 -3.400162 5.664584 -6.258000 -9.516786 4.090628 -0.696222 -2.321393 -5.114758 0.980347 3.932414 2.985593 -4.186149 -8.414566 -6.977211 5.348482 -3.881461 -2.793483 -0.546255 -0.179411 -1.327309 -1.467067 -7.510968 -0.687482 5.145055 -6.416061 -3.836257 6.825444 -3.661273 6.013316 -0.177530 1.557840 -1.532825 3.009237 3.656925 1.712987 4.219228 -3.319334 -8.547463 -0.048118 1.646932 5.163441 -3.322148 -0.639772 2.051335 2.808153 1.041992 4.354905 -2.486785 3.290077 4.644307 -2.044320 -3.880087 -5.779226 -0.212244 -8.331958 2.802015 -4.866776 -2.376464 0.442602 5.923682 1.702651 2.189970 9.623204 -5.732035 5.344574 -0.397711 0.347361 -0.161474 -1.178706 3.275252 -3.473557 -8.310553 3.185642 5.912852 1.493441 1.733059 -2.511336 -0.827946 -5.106419 -6.050755 0.881333 0.019518 -1.288893 6.584745 4.615816 10.510330 -7.899684 1.136088 0.662605 -1.665199 1.516885 -0.753662 -10.049907 2.760878 1.325125 1.806517 9.546780 0.215474 -4.649465 4.208350 -1.278804 0.545539 -6.105809 6.720478 -6.876033 -2.316671 -4.320129 -0.122303 -3.486629 -4.628782 -4.383704 -0.599304 8.965997 -2.098040 -8.417623 4.593009 0.459465 1.409334 -11.453292 8.287501 -4.054988 5.545125 -1.255251 -1.861581 -1.064747 3.049808 -0.351303 -1.006100 2.650326 -5.732823 7.354646 8.447241 1.168229 1.865658 3.024952 4.159012 -2.169478 -0.647638 -5.667417 4.716628 -1.224272 -6.151441 0.077235 -3.324448 5.088329 -1.220792 -1.704442 3.177562 7.331303 -2.255562 2.190705 5.717453 1.723606 -4.124679 3.319644 1.818850 6.554419 -3.397697 -0.798347 -2.953592 0.355942 -0.533980 5.122268 -9.673514 -7.809417 -4.883901 -11.438862 -1.761787 -0.968158 3.386250 1.157508 1.263429 -11.300842 -5.714508 3.577352 -3.165500 5.679106 6.233392 6.047070 7.851809 6.689335 -2.065982 -1.240770 0.758015 1.800907 -5.335789 -3.312729 -2.343160 3.430081 -2.791823 5.871862 4.283365 1.045374 2.729110 -2.378389 5.112098 -5.598113 11.788779 5.420682 -4.481161 3.976818 2.346122 10.175920 -4.545629 -4.647154 -PE-benchmarks/karatsuba.cpp__multiplyiSingleBit(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.428691 -1.146125 1.001217 0.847371 0.044413 0.664632 0.377931 -0.043360 -0.146601 0.096302 -0.291750 0.725387 -0.496657 -0.563928 -0.251276 -0.387338 -0.242130 -0.688809 0.003622 -0.124037 0.267459 -0.149106 -0.895959 1.400076 0.151855 -0.041208 -0.249574 -0.101713 -1.647585 -0.050762 -0.323086 0.071759 0.485548 0.300383 0.588156 -0.161643 0.253928 1.287124 0.005323 -0.822298 0.013790 -0.214230 -0.140437 -0.100029 -0.566723 0.399846 0.382315 -0.458075 -0.406869 0.001606 -0.073918 -0.046729 0.518090 0.371056 0.614778 0.872211 1.038897 0.013225 0.832460 -0.267306 0.263821 -0.303351 0.305619 -0.189251 -0.181278 -0.176243 -0.387742 0.096021 -0.074117 -0.131740 0.418490 -0.077847 -0.159958 -0.194569 -1.423654 -0.458509 0.474237 -0.079897 0.884622 -0.399776 1.169094 0.852948 0.761920 0.130471 0.873817 0.285332 0.405457 0.378171 -0.241248 0.977668 -1.141758 -0.038305 -0.088151 0.364059 -0.923639 -0.559495 0.560180 -1.645456 -1.041121 0.835078 -0.087186 -0.419038 0.152249 -0.072190 -0.061805 0.271472 -0.600557 -0.543245 -0.199890 0.581334 -0.169435 -0.368414 0.245702 0.401708 0.469744 -0.142422 -0.523529 0.436536 0.891671 -0.297151 0.218428 0.917262 -0.006019 0.785009 -0.207968 -0.153118 -0.299744 0.193678 0.496551 -0.054287 -0.720663 -0.689391 -0.618860 -0.575999 -0.107406 0.039980 -0.531882 -0.570811 0.550432 0.541686 0.930223 0.820859 0.192510 0.397133 -0.270152 -0.074644 -0.068585 -1.199951 -0.865887 -0.387622 -0.174784 0.057217 -0.762694 0.266377 0.507052 0.091954 -0.034227 0.223544 0.754688 0.021926 -0.048425 -0.206813 -0.149047 -0.741741 0.192270 -0.155074 -0.614178 0.637951 0.418797 0.995405 0.516584 -0.172800 0.087224 0.068861 -0.400987 -0.150528 0.101953 0.020089 1.245709 0.801134 -0.296673 0.063058 -0.129713 -0.439847 -0.182627 0.200360 -0.180294 -0.615051 0.101594 0.227753 -0.541489 0.872129 -0.167574 0.007613 0.706789 -0.093050 0.123453 -0.757220 0.628117 -0.473679 0.198440 -0.631411 0.200372 -0.750130 -0.370843 -0.929674 -0.747303 1.012138 -0.746055 -0.418104 -0.119322 0.980592 0.271522 -0.592519 -0.226068 -0.201015 1.397844 0.341035 -0.373047 0.280576 0.021585 -0.160024 -0.299700 0.420807 -1.095672 0.301385 -0.235038 0.153111 -0.107486 0.333445 0.281747 -0.352329 -0.068069 -0.876823 0.160697 -0.086062 -0.510356 0.104477 -0.195902 0.425850 0.286881 0.091452 -0.415352 0.170521 0.203441 -0.412245 0.600971 -0.281024 -0.337737 -0.506611 0.172323 0.565828 -0.559801 -0.055452 -0.787020 0.267327 0.434557 -0.034763 -1.000694 -0.242396 -0.914605 -0.425328 -0.210106 0.068865 -0.074123 0.705167 -0.072656 -0.946301 -0.801591 0.602942 -0.349497 -0.032453 0.700910 0.431218 0.987184 0.230312 0.250503 -0.233616 0.279691 0.416229 -0.237798 0.086391 -0.511949 0.371117 -0.465786 0.663477 0.605072 -0.178543 0.642772 0.230615 0.597507 -0.706943 1.210528 0.507324 -1.320688 -0.058846 0.775705 0.418374 -0.748054 -0.493708 -PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -4.334459 -27.892097 36.065534 23.001360 4.198811 19.880301 31.940856 -21.078120 25.173613 13.861209 -14.540023 -4.342256 -32.837713 -13.785094 -5.502247 -1.336394 -19.405148 -23.513842 4.334147 -9.252297 3.707895 -29.972607 14.659994 13.061357 12.804014 10.813750 -0.017490 -12.577947 -33.441400 -17.412904 33.229488 -1.640316 15.585192 25.102784 -2.357622 -39.939096 22.331470 24.479715 -7.213607 -31.574563 7.052831 4.817200 -17.343640 13.414324 6.121566 10.039589 6.766147 35.714619 4.391731 14.248196 8.273304 -23.344371 6.911088 29.994164 -4.184006 29.052160 25.064023 6.068467 10.584062 23.132853 6.298360 0.205173 12.121819 33.834228 -4.922798 4.543954 12.276408 -15.060880 -39.949858 23.820241 2.589301 -7.052480 -9.482903 -3.525506 -3.123010 5.026682 -9.216655 14.396844 48.859375 -11.398451 46.465957 13.536682 20.859718 -24.563182 2.734086 -4.643048 9.377054 9.326444 -20.054148 -8.428329 -47.781671 -19.505999 -0.898180 -4.479856 -11.694079 -16.397408 21.463186 -13.488440 -31.969459 10.746302 2.187826 -8.064128 -11.952130 17.181242 13.930130 8.661394 -15.845997 -31.566016 -19.127481 15.140013 -30.779499 -0.238214 -5.731015 18.511983 -15.300501 -8.796323 -20.049534 -11.660057 8.883305 -26.783938 -6.349321 21.690548 -14.353643 22.676177 3.911221 0.271928 -0.477585 8.698891 13.940465 3.473983 31.616865 -6.693741 -14.461505 3.601398 13.005886 30.121159 2.902158 -4.475036 11.186827 14.628676 -3.120485 11.646960 -7.085238 2.037629 14.472905 -16.243023 -15.533486 -12.104364 2.606269 -35.319165 10.244500 -21.534492 -6.873577 3.123231 23.066609 8.666724 4.603842 34.712811 -34.164742 18.184949 -5.589132 3.042021 -12.678237 12.324040 13.843310 -10.287981 -26.305614 -1.600468 13.220068 5.385356 4.837527 -17.259250 -9.962518 -26.153284 -26.852402 2.386688 2.097854 -12.790616 6.366030 20.402642 22.486657 -26.400736 -0.160920 11.300009 2.082283 -3.429883 6.070792 -43.990338 19.110506 -1.943319 11.295858 26.740736 0.551444 -9.119233 11.700434 -11.337489 -2.053540 -20.856268 9.618824 -24.687497 -4.381557 -21.328783 11.790548 -11.059235 -22.139257 -9.269616 7.785270 28.434334 4.587593 -25.378284 25.568588 -3.693382 4.917066 -32.496271 24.837171 -9.905175 10.416721 -3.790923 -9.482877 -6.299719 2.387607 3.508515 -11.765501 0.230670 -9.526859 32.644407 36.970307 5.486583 2.756135 12.574740 20.729740 -12.248720 -10.949628 -23.418957 12.106983 -5.439593 -24.142653 2.398487 -14.322149 18.674499 -11.916980 -6.891696 29.259902 30.395485 -7.695751 19.310018 4.894520 5.308525 -12.750728 11.143025 17.776054 27.528442 -8.592032 -2.895617 -4.923121 -0.535667 -12.874722 21.495921 -33.826401 -38.430529 -4.724670 -47.000615 -17.770266 -19.828143 22.081577 5.882468 8.743179 -35.978925 -18.163796 1.493564 -12.026863 19.225374 21.143531 20.557235 23.821018 30.832631 -12.159985 5.657588 9.617677 22.538363 -28.490341 -15.019517 -8.139832 10.442350 -13.595608 21.167580 18.088854 6.897776 5.824055 -29.885182 34.078694 -30.311714 34.240454 21.250960 -12.598156 14.087525 -1.912071 33.713360 8.606515 -14.511063 -PE-benchmarks/karatsuba.cpp__main = 1.870574 -61.799823 97.719064 66.898587 10.752952 43.816179 75.861261 -66.105835 71.943306 36.940237 -28.557408 -9.637058 -83.657659 -16.262118 -30.826390 16.195307 -54.547778 -58.921528 -2.732048 -34.625903 -0.971943 -73.515115 53.475892 17.573925 42.952596 21.743267 -12.473121 -36.041191 -81.903558 -52.618314 85.581114 -5.356209 38.206097 42.775715 -13.978319 -105.518523 65.355200 63.036161 -24.410554 -75.820943 26.829411 3.763868 -42.643272 24.722247 15.690736 18.922718 3.828800 86.265411 26.184264 39.366979 31.283319 -35.073029 18.766088 93.284742 -29.581795 71.221517 51.490263 20.512765 15.845653 59.604048 16.096095 14.681758 29.122137 79.728751 -4.585444 -5.325823 21.169185 -37.834658 -98.460021 68.651349 -3.679043 -19.898719 -34.482326 -8.113288 -12.834754 13.319990 -42.886434 44.481864 120.031716 -38.525843 100.686202 23.636315 37.793287 -58.413735 1.548457 -12.962789 24.349499 23.752956 -39.167643 -31.540465 -104.298565 -36.652487 2.424448 -17.391973 -33.458281 -65.579441 59.349107 -35.662467 -82.783047 20.907045 17.360678 -24.186963 -30.087535 37.680811 30.008389 20.825171 -40.568405 -80.135955 -42.316091 36.064255 -52.991868 -5.449581 -10.190810 28.948758 -36.609758 -22.714182 -59.420258 -25.696564 10.784343 -63.198127 -22.603032 53.016162 -33.073534 40.877987 8.419239 8.975208 -6.309342 28.918739 20.035912 25.292283 73.755149 5.202294 -38.399166 15.187313 42.122734 71.929714 4.207381 4.346350 7.765438 33.528555 -23.536786 26.418452 -22.055294 3.862549 40.630585 -45.174664 -45.600205 -19.367160 11.192859 -92.371774 26.405613 -56.784131 -20.617825 2.889322 59.811482 28.736267 23.150816 93.073567 -89.152534 39.319675 -7.313645 3.963817 -12.294042 24.846506 36.735793 -28.044968 -72.323875 0.573528 29.074717 9.437898 5.939194 -28.536934 -23.379152 -71.477515 -54.446218 5.115442 9.625073 -39.195998 19.062898 51.418450 53.385398 -71.609622 7.967428 40.239954 -3.205707 -2.944800 11.086706 -113.848306 47.219944 -1.819229 31.946822 67.560267 1.086210 -24.078198 32.850196 -32.874077 1.739802 -51.483696 17.863629 -62.687883 -20.509400 -57.812357 29.153424 -16.487903 -49.317673 -17.083620 13.127087 72.809887 -0.519300 -57.680321 77.161586 -12.719954 6.401815 -82.803500 75.354256 -27.142544 19.011651 -7.698433 -15.561498 -12.845982 13.048226 -8.403568 -24.996891 5.236995 -21.674563 78.508547 106.991098 15.567650 5.655931 21.249316 59.601296 -32.172480 -8.179534 -57.183915 47.107431 -13.037002 -64.825280 6.022135 -36.190127 32.888920 -43.892648 -9.736071 87.330210 71.477372 -8.617391 52.722762 12.332750 37.341813 -34.573536 45.801743 36.817473 56.870669 -21.952729 -6.603955 4.226067 -2.105659 -39.367218 60.308757 -84.920943 -104.278183 -20.322815 -115.505846 -26.678808 -57.991920 53.765105 -2.951752 11.591541 -88.726507 -54.293643 6.943838 -33.287649 41.442624 55.853343 48.723352 53.787257 83.679876 -39.431962 27.781902 16.355298 53.227754 -54.764315 -46.159778 -20.156255 35.295183 -33.546903 41.399343 54.240552 11.565354 19.873624 -67.827265 76.545618 -71.295230 87.437959 46.328057 -20.678490 49.466103 5.123187 91.510161 30.626606 -37.048849 -PE-benchmarks/karatsuba.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::__str_concat, std::allocator > >(std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::allocator_type const&) = -1.589094 -3.224098 5.731181 4.141596 1.076588 2.270373 2.989226 -3.863635 5.311374 2.822910 -0.293299 0.156991 -4.561247 0.969207 -2.176411 2.521915 -2.997145 -4.282932 -0.821962 -3.242259 -2.218398 -4.116457 2.066783 0.174713 1.854171 -1.227018 -2.333842 -1.490333 -4.849310 -3.748374 3.990286 -1.062681 2.127616 -1.643345 -0.685318 -10.071015 4.480821 3.051153 -1.875954 -4.124599 1.424724 -2.166378 -0.426450 0.309650 0.112367 0.446608 0.379181 3.357703 2.605275 1.775974 3.168370 0.493344 0.046329 9.918845 -3.811109 4.114740 2.297710 1.246875 -0.914349 3.045540 0.601226 0.884314 2.491182 3.662472 -1.375082 -1.481534 0.612435 -1.846325 -5.277828 3.944375 0.070591 -1.666234 -2.674075 -0.603638 -2.408350 -1.147491 -3.441499 2.516278 7.084986 -3.923218 4.547986 1.522416 3.043854 -0.304821 1.804696 -0.664130 4.183849 0.994587 -2.865273 -1.929300 -4.861744 -0.142064 -0.526929 -0.454229 -1.685679 -5.774864 2.623917 -2.372784 -5.303389 1.901388 0.527229 -0.191979 -4.045357 -0.195612 3.128418 1.123470 -2.966442 -5.561238 -3.722138 2.375058 -1.473388 -1.009951 1.134446 -2.314438 -1.041632 -2.273507 -4.909923 -1.337223 0.862811 -3.440661 -3.499790 4.347833 -2.876405 1.440090 0.586180 1.549744 -1.300572 2.985680 0.571399 2.323833 2.037836 0.036446 -6.192018 0.738289 1.809563 4.007915 -0.175579 0.998750 -1.211402 1.241528 -2.836244 1.496599 -1.323968 1.601810 3.320726 -2.003159 -3.196183 -1.413777 1.872936 -5.353345 2.130487 -3.797827 -1.574374 -0.452406 3.599980 3.300844 2.456879 5.699163 -4.390312 3.873478 -0.947727 0.265149 1.656289 -0.321589 2.673956 -2.192310 -4.461948 0.784083 2.616652 0.225694 0.571527 -2.032890 -0.671584 -4.308054 -2.705434 -0.431861 1.146836 -1.624017 2.785608 2.445694 6.182393 -7.027393 1.794325 2.422124 -1.066720 1.132936 -0.609615 -5.735612 1.901604 1.159942 0.213061 4.373605 -0.145496 -3.288876 1.687621 -1.009701 1.401045 -2.940078 0.798923 -3.532506 -2.518486 -3.082399 0.933287 -1.918271 -1.850985 -1.104755 -0.823838 4.776220 -2.339206 -4.350731 5.206268 -1.385220 1.093725 -6.532838 6.382730 -2.329102 1.815353 -1.922533 -0.090224 -1.396451 3.315759 -0.964384 1.021077 1.419764 -2.166859 3.792420 7.150665 1.135180 2.259894 1.129633 4.018961 -0.765636 0.307352 -2.658743 4.503015 -1.119387 -3.362196 0.345522 -2.187797 2.058750 -1.419392 0.864097 3.818715 4.483645 -0.754676 2.634666 3.427267 2.702881 -2.172737 2.901094 0.254366 2.679484 -1.962151 0.074950 0.105197 -0.300564 -2.070408 2.894105 -5.114629 -5.487860 -2.977294 -5.724976 0.144797 -0.579327 0.914712 -0.584008 0.507303 -5.937367 -2.543821 1.953097 -2.363550 2.376453 3.069985 2.941354 3.680826 5.853204 -2.613479 -0.245000 0.484739 0.048039 -2.474511 -2.451613 -1.976866 3.011976 -2.532698 2.710780 2.874841 -0.022740 1.022292 -0.907815 3.062103 -2.892097 6.214158 2.753414 -0.551154 3.488080 2.490978 7.546562 0.582643 -2.328232 -PE-benchmarks/tarjan-algorithm.cpp__Graph::Graph(int) = -0.095979 -2.267847 2.871178 1.668742 -0.457873 1.676422 1.325861 -1.355719 1.308269 0.659367 -0.858477 0.550904 -1.606519 -1.030043 0.173252 -0.236953 -2.060444 -1.519766 0.139369 -0.668738 -0.358266 -1.534393 -0.510638 1.677049 0.473040 1.010871 0.079684 -0.135427 -2.459574 -0.633033 1.197444 -0.126621 0.679388 2.309849 1.630806 -2.035246 1.498935 1.556992 -0.193315 -2.558463 -0.033952 -0.145055 -0.814214 0.534219 0.369921 0.556388 0.420222 1.918562 -0.297569 0.329314 0.147668 -1.358417 0.228806 2.444110 0.785962 1.999492 2.230763 -0.205122 1.218865 1.259539 0.726761 -0.277871 0.629516 1.454067 -0.238737 0.335689 0.547900 -1.183201 -1.380734 1.262023 0.544978 -1.607784 -0.365840 -1.337303 -1.441946 -0.213141 -2.750659 1.974262 3.084754 -1.584940 2.669416 1.127071 2.108289 -0.874479 2.153173 -0.174095 2.524667 0.810721 -1.453760 0.668404 -2.555292 -2.168911 0.113658 -0.445328 -1.104809 -0.236480 1.386814 -2.368034 -2.212793 1.802435 0.079351 -0.270351 -0.870022 0.395403 1.081694 0.369897 -1.492597 -1.979373 -1.453911 1.530042 -1.874640 -0.194909 0.129673 1.459899 -0.680228 -0.316249 -1.049916 -0.116349 1.803130 -1.138190 -0.513436 2.343131 -0.842499 1.498813 -0.385899 -0.567291 -0.042325 0.866259 0.628133 0.052305 0.975437 -0.725342 -1.542577 1.155413 0.158293 1.340636 0.407795 0.239158 1.575732 1.315169 0.146387 1.257263 -1.189025 1.186264 0.030065 -0.495734 -1.584399 -1.286546 -0.578610 -1.905091 0.297577 -1.248387 -1.072026 0.571968 1.835538 2.154456 -0.509946 0.957896 -1.507454 0.791524 -0.455455 0.371251 -0.709726 -0.036918 0.556266 -1.119017 -1.376509 0.238351 0.787280 0.453918 1.168296 -1.497879 -0.667313 -1.308698 -2.152850 0.670409 0.746882 -0.162878 1.513361 1.621516 0.909434 -1.875740 -0.270969 -0.058203 -0.078397 -0.202491 -0.402191 -2.082959 0.789955 0.174740 0.864806 1.702490 -0.223301 -0.065794 0.363358 -0.311991 0.257356 -1.245231 0.525258 -1.323600 -0.102697 -0.856490 0.794836 -1.176330 -1.158013 -1.165934 -0.685772 2.367730 -1.187357 -1.987191 2.152755 -0.819077 1.521450 -1.756593 0.972325 -0.804808 1.619240 -0.027215 -0.317000 -0.502706 0.193996 0.038368 0.504923 0.382608 -1.047864 1.097380 1.581149 0.196626 0.778798 0.910018 0.998492 -1.442644 -0.916858 -1.565437 1.420812 -0.229315 -0.913996 -0.139321 -1.052747 1.327816 -0.089551 -0.201941 1.000656 1.040354 0.053563 0.372845 0.763984 -0.833019 -1.196992 0.297533 0.833073 1.239485 -1.033632 -0.347122 -0.541320 -0.011795 0.154590 0.037242 -2.195318 -1.620386 -1.958178 -1.667918 -1.566025 -0.844904 1.066708 0.723960 0.335404 -1.829895 -1.099580 0.650770 -0.659007 -0.113656 1.323815 1.503194 2.031762 1.739120 0.078633 -0.016480 0.320542 0.788353 -1.752451 -0.416224 -1.136418 0.352538 -1.794573 1.756711 1.435500 0.893011 1.084276 -0.553660 2.232983 -1.911537 1.726873 1.809489 -1.804874 0.014147 1.607751 1.502291 -0.151153 -1.539419 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/tarjan-algorithm.cpp__Graph::addEdge(int, int) = -0.258164 -0.966530 1.402509 1.356168 -0.111844 0.591160 0.321503 -0.791154 0.852417 0.736917 -0.080499 0.377124 -0.969210 0.308942 0.065420 0.749355 -0.964887 -0.747126 -0.247233 -0.636087 -0.630080 -0.786537 0.062012 0.465807 0.485829 0.194883 -0.627980 -0.139727 -0.824982 -0.861468 0.469134 -0.243021 0.702528 0.373364 0.283721 -2.443143 0.917024 0.815264 -0.278928 -1.014704 0.105191 -0.563513 0.143731 -0.255990 -0.364790 0.264155 0.121523 0.224052 0.610165 0.269643 0.471699 0.011544 0.468333 1.969904 -0.443143 0.931172 0.567182 -0.120201 -0.044617 0.157004 0.318704 0.099564 0.712443 0.601160 -0.196897 -0.618008 -0.221698 -0.432294 -0.962783 0.830064 0.085698 -0.316032 -0.902026 -0.489891 -0.621929 -0.495900 -1.391068 0.851789 1.600205 -1.049344 1.074038 0.473511 0.519079 0.029668 0.823495 -0.070996 1.240718 0.302842 -0.627961 0.317687 -0.262081 -0.420410 0.187088 0.227474 -0.558532 -1.054133 0.461774 -0.732134 -1.302373 0.752900 0.194427 -0.009119 -0.944944 -0.357731 0.526131 0.330875 -0.720587 -1.225492 -0.657543 0.380327 0.006760 -0.500415 -0.070170 -0.190342 -0.181391 -0.285875 -1.201592 -0.223725 0.324913 -0.735267 -0.445724 1.056513 -0.217620 0.364073 -0.072029 0.173302 -0.271837 1.067994 0.086755 0.707139 0.073153 0.058526 -1.261722 0.063432 0.444981 0.521354 -0.108910 -0.161878 -0.174766 0.373024 -0.465483 0.520480 0.084001 0.872291 1.013396 -0.148661 -0.801606 -0.575545 -0.129898 -1.277607 0.372223 -0.856798 -0.156548 0.406839 0.878311 0.577722 0.483525 0.959517 -0.766298 0.701868 -0.278309 0.025970 0.623970 0.162084 0.564719 -0.573551 -0.839666 0.528932 0.587672 0.358395 0.331782 -0.429067 0.017307 -0.564380 -0.557397 0.369241 0.359225 -0.236684 0.922370 0.593242 1.898003 -1.043008 0.453904 0.369166 -0.115379 0.257672 -0.119805 -1.199191 0.540459 0.163515 -0.275741 0.875235 -0.227318 -0.575116 0.365232 -0.282237 0.346391 -0.789162 0.370569 -0.725954 -0.122032 -0.838614 0.155562 -0.469480 -0.457500 -0.320676 -0.000626 1.327974 -1.024817 -0.640141 1.151101 -0.203602 0.448507 -1.286788 1.552844 -0.543454 0.667904 -0.739143 -0.543343 -0.072984 0.512735 -0.230243 0.253307 0.597750 -0.507784 0.154885 1.270978 0.254582 0.277814 0.239251 0.861857 0.051771 0.291121 -0.498282 1.167258 -0.016090 -0.109729 -0.152244 -0.530079 0.365593 -0.150335 0.105636 0.782600 0.879970 0.051954 0.287137 0.755133 0.446460 -0.566038 0.540588 -0.054296 0.642354 -0.677953 -0.051890 -0.074621 0.306929 -0.331738 0.455695 -1.209450 -1.022991 -0.961488 -0.503015 -0.480983 0.530951 0.314333 0.043105 -0.080158 -0.993980 -0.727009 0.903402 -0.570104 0.235258 0.490945 0.565342 0.964334 1.119673 -0.116354 -0.326248 -0.154565 -0.074043 -0.238698 -0.080629 -0.604863 0.772023 -0.803028 0.643210 0.826492 -0.188800 0.386573 0.170153 1.087286 -0.733251 1.391742 0.557994 -0.494656 0.739254 1.169613 1.129390 -0.136641 -0.674677 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::push_back(int const&) = -0.077529 -0.917212 1.926129 1.690331 -0.291034 0.629247 0.100363 -1.345253 1.481807 0.359404 -0.067820 0.345084 -1.053998 0.601394 -0.297854 1.025625 -1.514553 -0.974832 -0.508815 -1.067197 -0.843968 -0.975442 0.422656 0.255730 0.632583 0.456758 -0.955443 0.007034 -0.960840 -0.934492 1.081055 -0.390250 0.806590 0.193464 0.263220 -3.329660 1.412603 0.906599 -0.490407 -1.358132 0.240322 -0.820300 0.128790 -0.602182 -0.478886 0.211199 -0.188216 0.492971 0.979868 0.286153 0.366317 0.484081 0.168066 2.586149 -0.959138 1.010112 0.481178 -0.059223 -0.391253 0.293020 0.409690 0.500026 0.837138 0.799006 -0.267402 -1.124092 -0.221362 -0.642902 -1.378018 1.246603 -0.015182 -0.403871 -1.099677 -0.507587 -0.989252 -0.497219 -1.263619 1.271060 1.947137 -1.326708 0.981342 0.226904 0.533105 0.101900 0.849460 -0.081755 1.616537 0.433907 -0.617319 0.086968 -0.553645 -0.367427 0.334869 -0.198445 -0.657727 -1.762485 0.632030 -1.287231 -1.489152 0.672496 0.589161 -0.016680 -1.289897 -0.552017 0.818272 0.455756 -0.835267 -1.398146 -0.535145 0.528918 0.168919 -0.568503 0.040671 -0.378039 -0.230716 -0.592107 -1.607283 -0.197249 0.232984 -0.657977 -0.459639 1.273472 -0.562691 -0.070521 -0.159556 0.358538 -0.535055 1.432644 -0.267029 0.930079 0.048071 0.330961 -1.071000 0.194983 0.521846 0.920253 -0.165585 -0.154143 -0.558813 0.399922 -1.002412 0.215261 -0.210901 0.599859 1.185029 -0.278406 -1.043524 -0.464671 -0.177392 -1.884918 0.345044 -1.117295 -0.385883 0.680549 1.141151 1.103125 0.925839 1.349332 -1.154538 0.773225 -0.319310 0.034166 1.115236 0.273336 0.758473 -0.678450 -1.061748 0.663747 0.295291 0.391765 0.343633 -0.465736 -0.009963 -0.970315 -0.573925 0.525547 0.693097 -0.104452 0.978030 0.763155 1.600164 -1.502391 0.572225 0.737847 -0.284610 0.336849 -0.148355 -1.460224 0.572121 0.317679 -0.017740 1.144079 -0.309094 -0.712182 0.279165 -0.210863 0.566819 -0.885238 0.134186 -0.904089 -0.241678 -1.085549 0.214592 -0.571869 -0.433315 -0.545250 -0.455696 1.606379 -1.393390 -1.044610 1.858997 -0.450001 0.858132 -1.673572 1.337762 -0.757155 1.029203 -0.678022 -0.206450 -0.128654 0.190236 -0.749185 0.411867 0.737312 -0.494163 0.200572 1.764319 0.447669 0.311833 0.064806 1.190299 -0.131339 0.768503 -0.644971 1.617946 -0.190769 -0.326104 0.055199 -0.636931 0.132174 -0.585328 0.378784 1.224358 1.022349 0.561673 0.709134 0.880237 0.900543 -0.784405 0.896935 -0.138609 0.399007 -0.666183 -0.058427 0.283081 0.553908 -0.543808 0.574059 -1.486717 -1.747025 -1.615354 -1.032023 -0.184657 0.074947 0.231250 -0.283068 -0.177470 -1.174959 -0.914647 0.999809 -0.676181 0.942986 0.665798 0.638332 1.038536 1.616170 -0.766642 -0.197364 0.021847 -0.064648 -0.146893 -0.216749 -1.124218 1.289367 -0.805793 0.493335 1.436548 -0.375614 0.470281 0.057361 1.205382 -0.758962 1.744571 0.630357 -0.507026 1.054603 1.106764 1.535516 0.478665 -0.858644 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCCUtil(int, int*, int*, std::stack > >*, bool*) = -8.276430 -15.537003 20.103936 17.257780 1.177647 11.503115 3.403857 -11.122792 9.124055 9.595635 -4.075803 9.570361 -10.991526 -0.709933 -4.529383 4.533829 -8.810359 -11.627115 -2.212396 -8.242817 -5.350400 -9.338249 -5.645912 12.356830 4.577672 0.249100 -8.798291 1.053419 -20.023567 -16.784966 2.522769 -1.145453 8.647636 -1.850866 3.502884 -29.692757 12.962220 18.785897 -2.757715 -16.248188 1.752281 -7.889249 -4.116529 1.048635 -6.154635 3.526110 1.909921 -1.977359 2.195744 2.388927 6.506187 2.440633 6.792136 25.512670 -1.669045 16.962708 13.249855 0.051686 1.602959 3.786427 4.257816 0.502416 10.233361 7.523218 -4.467899 -6.448444 -0.384440 -0.432627 -11.244872 7.473613 1.492207 -10.219806 -5.272719 -6.062873 -13.458505 -5.961508 -1.188967 5.301834 21.124898 -10.342567 19.474381 7.418113 9.394309 -0.074921 14.049184 -1.707272 18.869681 5.670867 -8.857864 1.342192 -8.908892 -1.957975 1.292073 10.635585 -12.541838 -6.574361 9.425869 -19.113676 -19.494117 10.435840 0.882259 -3.996287 -13.466613 -3.718777 7.154119 3.276270 -7.887360 -15.927845 -10.488267 10.624693 -4.931254 -9.187100 -2.351818 -2.021865 0.402943 -0.061889 -15.046661 -0.570904 10.129557 -8.906309 -9.101319 15.169171 -2.006849 7.056824 -2.932509 2.759968 -2.738891 7.125690 0.428611 6.514222 -1.261250 -2.037145 -17.410489 -2.025843 2.616232 1.530819 -7.033652 -3.239544 3.108357 6.582224 0.328209 10.731534 -6.357980 12.572173 10.034901 -0.445804 -7.862630 -11.870245 -2.908737 -16.073570 1.565576 -9.733716 -10.568954 2.979289 12.497180 5.203764 3.426397 13.094871 -6.365554 11.141159 -0.204404 0.033388 5.422575 -7.956325 5.997381 -8.551503 -14.632649 9.049017 9.704623 6.230161 4.011950 -4.030266 -1.210297 -6.436466 -11.616312 5.769116 2.612578 0.861891 16.067146 9.961171 30.190157 -17.206053 5.333942 -0.202514 -4.399375 4.301563 -4.231519 -16.469700 3.071141 4.778260 0.477829 20.940146 -1.542844 -8.416207 3.780806 -0.709650 3.773033 -12.822310 12.410789 -11.697443 -0.489478 -7.567323 -3.788570 -7.116402 -6.358553 -10.380453 -5.693537 18.714710 -17.587238 -16.854147 14.482944 0.931838 6.108800 -23.031564 11.949975 -8.202098 14.497987 -6.050332 -4.947160 -0.857180 5.712959 -4.540830 6.022843 8.484030 -12.844950 8.604285 15.522468 2.388045 5.686011 2.795904 8.312690 -3.342231 0.245707 -11.284502 14.739865 0.925819 -7.270217 -3.876933 -7.776151 6.546902 -0.761629 0.897532 2.182765 12.714337 -1.770311 -1.304336 14.011306 2.760780 -7.831896 7.377047 0.302921 7.932732 -7.935469 -2.530158 -4.177199 2.524195 1.149668 6.213034 -18.695660 -12.341108 -15.555577 -14.924788 -2.978322 3.993718 5.556841 3.794353 -0.328650 -19.086732 -12.532793 17.213610 -6.714756 11.654874 9.968998 12.088277 13.119804 11.513229 0.483333 -2.655178 -3.664743 0.654046 -6.817094 -4.482520 -6.245670 9.857657 -7.055954 12.506116 10.096779 0.078608 8.121048 3.475552 6.773976 -10.245296 20.250845 9.251989 -11.122943 6.083856 10.709316 14.943377 -9.363221 -10.325249 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = 0.247802 -1.022171 2.463501 2.221989 -0.248550 0.729948 0.066720 -1.792920 1.630194 0.980613 -0.169901 0.594561 -1.098957 0.784875 -0.494150 1.632898 -1.711727 -0.969707 -0.714040 -1.303565 -0.992001 -0.999606 0.596474 0.144550 0.957860 0.535711 -1.174555 0.023881 -0.914915 -2.072830 0.802980 -0.345434 0.839843 -0.154246 0.302004 -3.285149 1.927330 1.356361 -0.639446 -1.655428 0.425531 -0.676201 -0.212269 -0.308282 -0.404707 0.432335 -0.324261 0.610682 1.067942 0.748356 0.742312 0.820481 0.851860 2.906977 -0.887168 1.345954 0.719001 0.057988 -0.313050 0.460921 0.522980 0.726943 0.787323 0.816584 0.128753 -1.434604 -0.449736 -0.410474 -1.369032 1.463971 -0.231400 -0.882834 -1.344268 -0.743687 -0.962786 -0.355127 -2.179656 1.429772 2.219941 -1.500781 1.021414 0.355976 0.330751 0.006984 0.851811 -0.212397 1.747334 0.661762 -0.483701 0.026070 -0.067728 -0.663513 0.634175 -0.271892 -1.102535 -2.303422 0.935209 -1.611438 -1.793270 0.885975 0.870313 -0.325898 -1.184963 -0.694876 0.813404 0.436411 -0.847050 -1.508010 -0.479563 0.646937 0.369925 -0.799842 -0.121421 -0.463641 -0.168571 0.088929 -1.958875 -0.033415 0.295687 -0.659369 -0.562378 1.316343 -0.045701 -0.136989 -0.305052 0.475605 -0.548247 1.501126 -0.361075 1.509193 -0.031820 0.987972 -1.142670 0.811308 0.840403 -0.070097 -0.257977 0.137132 -0.683219 0.566558 -1.092851 0.782744 -0.651718 0.843739 1.578562 -0.208425 -1.332880 -0.574672 -0.433445 -2.009913 0.509881 -1.237995 -0.785476 0.443776 1.341847 0.954667 1.084707 1.222870 -1.458524 0.521534 -0.247619 0.215208 1.245524 0.006682 0.777119 -0.781034 -1.350814 0.908116 0.655957 0.340905 0.351113 -0.293107 0.079757 -1.002565 -0.412794 0.855315 0.683169 -0.347473 1.224658 0.973512 2.363951 -1.166677 0.541163 0.883228 -0.507272 0.381714 -0.263955 -1.844444 0.577042 0.359069 0.602532 1.615540 -0.284337 -0.537686 0.473905 -0.333775 0.543031 -0.959627 0.392663 -1.126429 -0.329114 -1.029700 0.315040 -0.470955 -0.383314 -0.512903 -0.425496 1.902189 -1.740034 -1.004898 2.244568 -0.812256 0.503869 -1.726978 1.868872 -0.847515 0.823773 -0.562440 -0.232376 -0.067849 0.124401 -1.098220 0.414272 0.880672 -0.516024 0.292586 2.074094 0.440393 0.133691 -0.064843 1.305850 -0.478246 1.034652 -0.875004 2.052947 -0.219277 -0.289389 -0.243884 -0.673616 -0.055111 -0.979902 0.289655 1.246300 0.779433 0.442290 0.513269 0.804444 1.292196 -1.018387 1.578641 -0.095241 0.288448 -0.902024 -0.156124 0.493856 0.400862 -0.628116 0.864306 -1.782697 -1.561470 -2.137287 -1.028817 -0.260942 0.068467 0.611809 -0.566547 -0.433344 -1.216970 -1.440913 1.806205 -0.717920 0.300323 1.001265 0.783157 1.135872 1.777846 -0.482573 0.185818 -0.631857 -0.201567 -0.016179 -0.587995 -0.833673 1.545864 -0.700901 0.406730 1.599950 -0.355584 0.767168 0.012036 1.019770 -0.887884 1.835567 0.640025 -0.366073 1.143968 1.460146 1.782084 0.048074 -1.035245 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/tarjan-algorithm.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::top() = 0.021845 -0.401381 0.815859 0.756899 -0.218413 0.228533 -0.016462 -0.510148 0.548176 0.005113 -0.071297 0.126257 -0.480698 0.251453 -0.031535 0.405280 -0.673653 -0.379722 -0.241286 -0.383038 -0.295844 -0.372167 0.211571 0.164777 0.296202 0.447297 -0.367985 0.027988 -0.359836 -0.253553 0.462857 -0.142983 0.385852 0.450887 0.164502 -1.180226 0.535000 0.405090 -0.178129 -0.572633 0.110421 -0.322313 0.082896 -0.352782 -0.203821 0.164135 -0.087768 0.172901 0.384318 0.109652 0.045554 0.114815 0.097882 0.763747 -0.308047 0.367537 0.209685 -0.050110 -0.126289 -0.035295 0.176928 0.221682 0.319491 0.287371 -0.134560 -0.501612 -0.178805 -0.348169 -0.570938 0.488828 -0.051208 -0.087684 -0.524649 -0.315286 -0.345943 -0.169042 -0.621140 0.587436 0.766469 -0.580760 0.372393 0.086638 0.140106 -0.020123 0.295418 -0.003665 0.529494 0.198746 -0.174891 0.151513 -0.174966 -0.256331 0.166331 -0.123044 -0.320071 -0.587199 0.282896 -0.531654 -0.580897 0.238360 0.270557 -0.031716 -0.431713 -0.130093 0.207418 0.249365 -0.306289 -0.500719 -0.066618 0.166044 0.220473 -0.219999 -0.104253 0.055689 -0.160278 -0.293220 -0.691716 -0.025181 0.062362 -0.272892 0.022566 0.472142 -0.224023 -0.034080 -0.081064 0.093756 -0.231875 0.761587 -0.059793 0.340571 0.029987 0.114650 -0.223884 0.093207 0.239389 0.482355 -0.139669 -0.107538 -0.202397 0.111654 -0.373772 -0.025763 -0.013412 0.162903 0.515796 -0.147508 -0.443816 -0.192333 -0.278591 -0.848664 0.109556 -0.464587 0.009001 0.449936 0.439868 0.483043 0.377910 0.692528 -0.501377 0.172638 -0.109962 -0.057733 0.438347 0.348312 0.299390 -0.269991 -0.408461 0.353512 0.016187 0.162221 0.208901 -0.134730 0.015159 -0.406209 -0.176991 0.375792 0.280674 -0.026989 0.417603 0.323358 0.372653 -0.358502 0.193579 0.298211 -0.093612 0.106868 0.019600 -0.584530 0.295454 0.059421 -0.017270 0.381422 -0.143035 -0.166557 0.149511 -0.142865 0.223550 -0.394496 0.080524 -0.357525 -0.001785 -0.553952 0.152856 -0.176342 -0.204853 -0.169152 -0.128986 0.672339 -0.467329 -0.308244 0.654782 -0.070184 0.412122 -0.559381 0.405870 -0.304194 0.534290 -0.216918 -0.131342 0.023353 -0.173152 -0.261545 0.010448 0.302110 -0.087471 -0.087853 0.615103 0.184940 -0.066884 0.056481 0.474690 -0.041939 0.439832 -0.223704 0.608369 -0.031499 -0.032539 0.111755 -0.239049 -0.034209 -0.283261 0.065975 0.665242 0.405129 0.369179 0.336929 0.214206 0.400842 -0.329527 0.315139 -0.017532 0.196052 -0.285697 -0.049337 0.140873 0.368364 -0.210687 0.178976 -0.573376 -0.828351 -0.609083 -0.396639 -0.150179 -0.034897 0.144659 -0.115503 -0.118617 -0.317794 -0.424806 0.370410 -0.280668 0.549992 0.190207 0.214267 0.438119 0.628140 -0.360588 -0.096609 0.104251 0.082673 0.017615 0.053089 -0.533024 0.532385 -0.300387 0.072029 0.699942 -0.224610 0.225127 -0.045303 0.649996 -0.323372 0.729279 0.212312 -0.299200 0.502286 0.432852 0.477368 0.308733 -0.354500 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::pop() = 0.283674 -0.729126 1.875140 1.654646 -0.312602 0.530983 -0.081447 -1.365304 1.245851 0.668123 -0.255444 0.307670 -0.778070 0.522117 -0.304707 1.189482 -1.382643 -0.646309 -0.534216 -0.947700 -0.684373 -0.781337 0.459649 0.102808 0.684549 0.686943 -0.772850 0.203025 -0.415084 -1.640777 0.643794 -0.259407 0.593430 0.195251 0.316686 -2.227903 1.497116 0.973749 -0.457002 -1.228764 0.230049 -0.346059 -0.252397 -0.203113 -0.325922 0.429924 -0.247598 0.613818 0.742376 0.584257 0.471568 0.421179 0.723989 1.917640 -0.525749 0.958854 0.519454 0.023508 -0.137741 0.332927 0.403896 0.569049 0.491603 0.692434 0.194641 -1.028163 -0.278068 -0.321059 -1.013575 1.165761 -0.265980 -0.670079 -1.000837 -0.662625 -0.629091 -0.150334 -1.841326 1.132338 1.672991 -1.068733 0.729667 0.329899 0.216092 -0.065798 0.499720 -0.189079 1.283566 0.532594 -0.349533 0.105450 0.105897 -0.702089 0.554290 -0.366151 -0.842201 -1.647522 0.699821 -1.368978 -1.244836 0.635068 0.692286 -0.264865 -0.706602 -0.466561 0.591067 0.261725 -0.538880 -1.020847 -0.191310 0.435789 0.240941 -0.499573 -0.175146 -0.058744 -0.128477 0.258875 -1.455689 -0.047819 0.164107 -0.476426 -0.164564 0.898174 0.096912 -0.128697 -0.220196 0.302607 -0.347467 1.186806 -0.214585 1.148716 -0.073870 0.865989 -0.545216 0.757605 0.652034 -0.284292 -0.108754 0.050833 -0.383869 0.428609 -0.835990 0.547602 -0.604556 0.460712 1.180523 -0.139001 -0.999708 -0.419127 -0.580467 -1.562464 0.364779 -0.951781 -0.635661 0.448862 0.980162 0.770054 0.792204 0.847660 -1.236684 0.231177 -0.261083 0.199553 0.776475 0.137526 0.535862 -0.529676 -0.927988 0.683343 0.431017 0.249119 0.329393 -0.354267 0.045284 -0.739328 -0.232229 0.877214 0.507175 -0.235965 0.816612 0.735316 1.584090 -0.625749 0.359479 0.703108 -0.302023 0.202391 -0.081817 -1.384494 0.495070 0.186951 0.655823 1.091316 -0.215448 -0.163948 0.306663 -0.313030 0.337724 -0.718568 0.237641 -0.809162 -0.131086 -0.784092 0.403237 -0.366451 -0.265643 -0.297935 -0.240307 1.351149 -1.318933 -0.622913 1.735257 -0.608132 0.430791 -1.031182 1.182345 -0.597133 0.706529 -0.307586 -0.196396 -0.031446 -0.253478 -0.721488 0.166575 0.595013 -0.212953 0.129521 1.397967 0.324635 -0.034691 -0.001990 0.970127 -0.450304 0.806202 -0.644363 1.400267 -0.125854 -0.128170 -0.196822 -0.493596 -0.124062 -0.808517 0.173990 0.971957 0.547115 0.362572 0.442545 0.403587 0.905817 -0.738077 1.164612 0.007965 0.169915 -0.701744 -0.143919 0.426719 0.361513 -0.566589 0.608166 -1.297188 -1.183433 -1.759644 -0.654274 -0.427611 -0.109077 0.568664 -0.430452 -0.314695 -0.664530 -1.101850 1.539055 -0.493870 0.170239 0.679155 0.548866 0.811739 1.328854 -0.318824 0.143380 -0.457199 -0.090768 -0.031803 -0.343149 -0.662839 1.195702 -0.449204 0.205157 1.264643 -0.326400 0.550215 -0.066784 0.792196 -0.704489 1.251198 0.484503 -0.279178 0.802427 0.993830 1.182322 0.176027 -0.770400 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -4.160928 -9.476035 12.205504 9.390889 0.324044 6.686770 3.506921 -7.204499 5.778586 5.168049 -2.726600 5.003198 -6.706545 -1.067045 -3.261100 2.009728 -5.573574 -7.156175 -1.508163 -5.076190 -3.086206 -5.895000 -1.801028 6.527188 2.684705 1.197856 -3.961752 0.313802 -11.831295 -10.724386 3.083396 -0.410428 4.698046 0.250409 2.534964 -16.526881 7.994336 10.467326 -2.133070 -10.408946 1.283506 -2.530720 -4.355792 2.372063 -2.217164 2.640214 0.990528 1.686879 0.354320 2.474054 4.153027 0.335673 3.265895 14.895901 -0.347769 10.253123 9.602942 0.516222 2.150984 3.579514 2.456456 0.554695 4.864593 5.610148 -1.824880 -2.252108 0.917767 -1.271301 -7.350730 5.158971 1.014426 -6.966868 -2.331041 -4.382242 -7.519822 -2.126627 -1.840414 3.044018 14.028331 -5.603853 12.038502 4.469106 6.459045 -1.649348 7.511333 -1.218954 10.224103 3.880327 -5.233735 0.690868 -6.445073 -2.599163 0.286038 5.418767 -7.292495 -3.319345 6.900379 -10.566616 -11.160294 6.609530 0.780946 -2.751416 -7.194130 -0.867348 4.111930 1.775638 -5.211995 -9.448729 -7.172679 6.450692 -3.892037 -4.014461 -0.907784 1.079146 -0.849676 0.858856 -8.404958 -0.241332 6.424677 -5.678166 -5.129055 8.707489 -2.421602 4.869021 -1.443929 1.353895 -1.788130 3.785918 1.254840 3.620075 1.386409 -0.829070 -10.253160 -0.045237 1.751863 2.546984 -3.224654 -1.628472 2.824573 4.335061 0.425314 6.668465 -4.612032 6.271718 5.797028 -0.797090 -5.718468 -6.859047 -1.485412 -10.093176 1.261399 -6.588513 -5.993263 1.697788 7.302969 3.760242 1.249815 8.167025 -5.138748 6.675601 -0.349938 0.430990 0.980902 -4.747939 3.381328 -4.808913 -9.073323 4.357098 5.351574 3.219954 3.135031 -3.568014 -1.405949 -5.010560 -8.300853 3.699527 1.720238 -0.511004 8.167037 6.574421 16.062839 -9.230448 1.818007 0.186804 -2.741669 1.629335 -2.264747 -10.327398 2.050310 2.435919 2.183419 12.174227 -0.480405 -3.763141 2.717770 -0.929864 1.808592 -7.054003 7.073213 -6.892260 -0.437135 -4.453676 -0.834444 -4.154957 -3.531731 -5.086743 -3.079991 11.318874 -9.346803 -10.558669 9.165206 -0.827053 3.770823 -13.234940 7.291075 -4.205263 8.239010 -2.404758 -1.922931 -1.264290 2.429267 -2.073123 3.335514 3.917719 -7.168842 5.719469 9.907749 1.003503 3.145034 2.050608 5.281562 -3.681619 -0.644931 -7.379764 8.473007 -0.069279 -5.797215 -1.956264 -4.348420 4.069896 -1.882830 0.598870 1.729409 6.858485 -1.718449 -0.132506 7.115083 1.443909 -4.880295 4.644334 1.799390 5.034203 -4.800328 -1.463949 -1.892082 1.306108 0.124990 3.680545 -10.645834 -7.399236 -9.304085 -10.916240 -3.092767 0.436967 4.516894 1.622368 -0.025714 -10.623362 -7.394497 9.180451 -3.720423 5.406243 7.133517 7.700148 8.200155 7.807821 -0.103175 -0.381248 -2.317443 1.648182 -5.267548 -3.272670 -3.137270 4.525969 -4.268669 6.826615 5.566447 1.344323 5.256222 0.130056 5.786048 -6.702492 11.863470 6.078395 -6.067909 3.571002 5.828892 9.771443 -4.125334 -5.968523 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::stack >, void>() = 0.060676 -0.456717 0.944534 0.770424 -0.203297 0.231036 -0.081087 -0.524392 0.737878 0.017509 -0.221921 0.184805 -0.457092 0.325151 -0.257642 0.500179 -0.871054 -0.513470 -0.126933 -0.341204 -0.389668 -0.483396 0.205974 0.095416 0.267665 0.513612 -0.431568 0.170662 -0.341672 -0.435148 0.511093 -0.300232 0.298949 0.288022 0.216337 -1.288208 0.659647 0.297138 -0.228350 -0.685815 0.033329 -0.361281 0.081712 -0.472317 -0.154313 0.171244 0.055955 0.473019 0.418505 0.161417 0.002235 0.060252 0.075861 1.079785 -0.375056 0.412956 0.324436 0.000519 -0.077563 0.027235 0.271066 0.156384 0.300155 0.503211 -0.135606 -0.478107 -0.177245 -0.415257 -0.531218 0.628259 -0.067271 0.047479 -0.621305 -0.255153 -0.499256 -0.148704 -0.966445 0.680545 1.037373 -0.676762 0.451040 0.202434 0.473076 0.092191 0.327354 0.026504 0.732174 0.285536 -0.397311 0.124043 -0.218044 -0.223354 0.154503 -0.315586 -0.220738 -0.885695 0.251281 -0.891921 -0.638479 0.327497 0.242810 0.100441 -0.276462 -0.136474 0.451138 0.229286 -0.398484 -0.591786 -0.038941 0.064110 0.076965 -0.176456 0.140277 0.000826 -0.095269 -0.178450 -0.816999 -0.166183 0.094070 -0.382804 0.106450 0.559223 -0.153437 0.011498 -0.105547 0.040483 -0.182736 0.823533 0.042695 0.407034 -0.128955 0.224519 -0.383379 0.349135 0.318246 0.298524 -0.152827 0.009316 -0.142655 0.169624 -0.476376 -0.143147 -0.238845 0.135320 0.432842 -0.227916 -0.609654 -0.337394 -0.313889 -0.904663 0.180789 -0.555335 -0.250107 0.374926 0.557501 0.619409 0.498625 0.642256 -0.628035 0.256800 -0.229421 0.121849 0.441827 0.228918 0.361730 -0.281847 -0.410708 0.390987 0.126453 0.119189 0.280164 -0.431182 0.077453 -0.519258 -0.118783 0.487677 0.446228 -0.042473 0.454804 0.258991 0.265592 -0.530623 0.188532 0.399198 0.028073 0.056088 0.016864 -0.685218 0.466850 0.055741 0.219963 0.298006 -0.102864 -0.230300 0.136212 -0.112846 0.272332 -0.381661 -0.089514 -0.356887 -0.123740 -0.523048 0.466751 -0.288587 -0.155967 -0.171546 -0.208266 0.732355 -0.746914 -0.305962 0.793901 -0.149240 0.578242 -0.550724 0.365833 -0.384267 0.724423 -0.110630 -0.057328 -0.004000 -0.224310 -0.237114 0.046062 0.380143 -0.058278 -0.033271 0.546649 0.266825 0.106382 0.176585 0.562742 -0.082163 0.345271 -0.145847 0.533693 -0.084532 -0.134811 0.122661 -0.284972 0.038384 -0.232134 0.207618 0.681385 0.433463 0.378109 0.559697 0.255261 0.403284 -0.446551 0.230914 -0.101625 0.284615 -0.414277 -0.054546 0.028311 0.308824 -0.352326 0.198221 -0.672992 -0.928349 -1.017136 -0.342433 -0.295201 -0.172755 0.090006 -0.174838 -0.014783 -0.373403 -0.377535 0.614216 -0.310947 0.383493 0.291214 0.196558 0.508402 0.735426 -0.406234 -0.255731 0.090599 0.023011 -0.076064 0.131397 -0.688417 0.587664 -0.457253 0.127516 0.772152 -0.334697 0.081929 0.082276 0.628415 -0.325027 0.822617 0.396719 -0.369397 0.414195 0.512800 0.724194 0.418215 -0.460097 -PE-benchmarks/tarjan-algorithm.cpp__main = -2.880180 -21.714286 30.832287 24.887674 -5.220475 11.468594 5.730321 -14.444301 16.013031 0.885453 -7.443212 11.546900 -18.011837 4.093312 -7.801142 8.518816 -24.300682 -18.871111 -2.140181 -8.769707 -8.937928 -15.030273 2.509065 14.878205 9.728840 12.949872 -12.322414 -1.490229 -21.811621 -11.954863 15.121307 -6.577933 14.376627 12.395258 5.764267 -47.918952 17.937790 16.466932 -5.030246 -24.219151 3.271487 -10.134713 -3.319541 -10.754253 -10.325067 4.067973 4.854256 12.447284 7.612706 4.021027 -1.159347 -0.744816 4.877220 36.570462 -5.452197 18.421830 17.768465 -0.953235 1.367484 0.070455 8.357394 0.799151 13.028530 15.189982 -5.746440 -10.735415 -2.510160 -12.224461 -19.696364 15.847480 3.642378 -0.680822 -14.567060 -6.124783 -18.646947 -5.013010 -6.495716 18.261703 35.637727 -19.329003 24.884330 7.788722 15.551231 -3.115417 12.849031 0.565065 21.025049 9.745041 -13.023825 1.668267 -18.250875 -6.717538 1.105065 1.096447 -11.058980 -20.682155 11.896284 -27.294149 -25.125632 11.949770 4.006624 -2.598696 -11.566471 -3.533697 12.635477 8.320201 -14.210527 -21.632233 -9.841116 6.168330 -3.658345 -8.757358 0.613630 5.983296 -3.705835 -7.206862 -24.299055 -4.325535 9.319629 -15.947675 -0.457959 19.034116 -8.066683 9.697284 -3.316579 2.249186 -4.693372 19.333910 4.933920 7.391871 4.706015 -1.418837 -10.810607 0.530586 7.402396 18.827194 -8.459824 -6.532641 1.167862 9.201287 -4.592652 1.036276 -3.112712 10.635624 11.405889 -6.168094 -18.129558 -14.911439 -6.261861 -28.081570 3.514162 -18.614836 -8.169718 14.577334 18.069070 11.681634 9.034182 23.050297 -15.073380 16.440978 -2.430210 1.997397 8.681500 1.080001 10.520208 -11.177055 -17.851460 13.095038 6.007806 8.753927 6.338063 -10.733315 0.353957 -15.352478 -16.721521 10.191364 10.140647 -0.886256 16.964982 10.732910 19.801274 -20.551084 4.972992 6.338154 -2.110741 2.512787 -0.014600 -25.414862 12.731489 1.552618 0.802077 18.969328 -2.488015 -12.501676 8.816583 -2.280790 5.260538 -16.027507 7.749378 -14.664377 -1.998994 -17.095661 5.366214 -8.828868 -8.174666 -11.226264 -6.378595 27.761926 -25.508000 -18.932205 21.199822 -0.377231 18.222856 -30.051667 15.876606 -12.027141 23.343515 -4.572843 -7.204933 0.616635 -3.417944 -6.058522 2.606137 11.877380 -9.322129 5.746831 20.700225 5.676057 4.779251 7.159915 15.890091 -1.698674 6.306667 -9.854373 16.969323 -0.501119 -11.235183 -0.143581 -9.902377 6.372556 -4.810988 4.841215 16.718415 17.292019 8.072078 13.360081 14.226496 8.482710 -13.933677 5.343845 -1.154604 14.596310 -12.263833 -2.942945 -3.747069 10.139433 -5.634247 10.986380 -25.154596 -32.042255 -27.970863 -21.644997 -9.834944 -4.025833 8.878271 -1.274961 0.106031 -21.701675 -14.201781 12.955523 -9.729942 18.413647 16.130008 12.309814 19.892888 20.013001 -9.432021 -7.393621 4.298270 8.084881 -6.764603 1.409769 -19.300005 12.486762 -15.387750 12.515460 23.373626 -4.907362 6.723595 -2.947441 23.991830 -14.555691 31.667587 14.517460 -19.660562 11.841814 13.692547 18.423265 5.421141 -15.748980 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/tarjan-algorithm.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.197217 -1.643680 3.364608 2.740497 -0.229750 1.188232 0.623731 -2.539664 2.675320 0.491208 -0.076797 0.526287 -2.100922 0.989685 -1.411578 1.480065 -2.296461 -1.982242 -1.050079 -2.059564 -1.395553 -1.821714 0.930406 0.521837 1.165437 0.157683 -1.652877 -0.259496 -2.498904 -1.456158 2.051302 -0.491221 1.263210 -0.460181 0.161313 -5.360150 2.403322 1.860522 -0.925574 -2.362925 0.686496 -1.519070 -0.154445 -0.762420 -0.642190 0.092719 -0.484321 1.065720 1.658174 0.483935 0.956695 1.131702 -0.062911 4.905769 -1.983262 2.011556 0.973257 0.373709 -0.620048 0.973054 0.545103 0.996032 1.309800 1.425086 -0.536053 -1.766751 -0.188983 -1.008257 -2.408092 2.245183 -0.072602 -0.883159 -1.702413 -0.672964 -2.039756 -0.746987 -1.586103 1.950118 3.466941 -2.336400 1.803086 0.322161 0.964933 -0.025605 1.370466 -0.269027 2.649614 0.694654 -0.983091 -0.392417 -1.810917 0.032882 0.238403 -0.354231 -1.313079 -3.351133 1.501806 -2.490741 -2.857759 0.969470 0.950236 -0.327403 -2.022749 -0.552342 1.294278 0.645918 -1.551765 -2.620385 -1.154934 1.313934 0.277167 -0.919750 0.381948 -0.867840 -0.241673 -1.307916 -2.811860 -0.293959 0.429969 -1.273996 -1.210426 2.318287 -1.243130 0.054008 -0.072287 0.790467 -0.910981 2.127813 -0.460945 1.459666 0.225161 0.552904 -2.126361 0.275229 0.857070 1.881379 -0.468913 0.240858 -0.912135 0.725716 -1.637367 0.448576 -0.736580 0.791716 1.493497 -0.837830 -1.757749 -0.688505 0.097296 -3.170072 0.522782 -1.962602 -1.186008 0.615855 1.948612 2.152849 1.489769 2.768998 -1.843506 1.489487 -0.194032 -0.086320 1.739145 -0.143766 1.356504 -1.216707 -2.328645 0.997572 0.466114 0.597916 0.369722 -0.565086 -0.254737 -2.032436 -1.124676 0.396274 1.106529 -0.386679 1.883177 1.526428 2.239478 -3.204871 1.120996 1.267961 -0.796275 0.705542 -0.440833 -2.827540 0.862895 0.702615 0.094753 2.334760 -0.416500 -1.322559 0.747176 -0.442620 1.108414 -1.686630 0.276497 -1.786543 -0.858070 -2.016784 0.361141 -0.807905 -0.761226 -1.005519 -1.126979 2.773429 -2.420797 -2.140816 3.308420 -0.400394 1.294080 -3.256957 2.248360 -1.241831 1.805442 -0.789560 0.050177 -0.300075 0.791822 -1.402116 0.748312 1.153893 -1.199414 1.055220 3.431007 0.655780 0.785393 0.170475 2.214055 -0.528886 1.146736 -1.490925 2.872177 -0.349064 -1.489373 0.242937 -1.159777 0.271539 -1.191528 0.842336 2.258762 1.965283 0.873309 1.287501 1.737226 1.752639 -1.261497 1.673310 -0.226871 0.609366 -1.123742 -0.057018 0.529803 0.593589 -0.959633 1.193807 -2.742619 -3.366562 -2.716159 -2.554427 0.330703 -0.703596 0.376562 -0.555365 -0.345643 -2.590215 -1.805092 1.330081 -1.260971 1.886835 1.520559 1.392458 1.830891 3.037335 -1.593817 0.203397 0.291985 0.234142 -0.465140 -0.885024 -1.737374 2.087346 -1.277984 0.993179 2.480806 -0.370037 1.046807 -0.035265 1.665858 -1.452587 3.218765 1.185927 -0.850880 1.992754 1.747601 3.026402 0.994867 -1.449368 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.592846 -4.006603 8.322105 6.783790 0.043351 2.724177 2.552574 -6.490439 6.081957 2.177849 0.110406 1.324856 -5.582094 2.390964 -3.832957 4.135394 -4.606801 -4.859233 -2.893483 -5.163775 -2.961563 -4.283977 3.518078 0.927603 3.463395 -0.282391 -4.013577 -1.768087 -6.458651 -5.317348 4.745494 -0.807738 3.410700 -1.635077 -0.653878 -12.040709 5.956545 5.247331 -2.508413 -5.607268 2.666387 -2.773742 -1.312912 -0.551397 -1.315652 0.466267 -1.466058 1.858131 3.873695 2.212529 3.621099 3.133894 0.836187 11.069281 -4.847330 5.172950 2.537917 1.406843 -1.481138 2.646659 1.090671 2.816613 3.020945 3.393971 -0.654402 -4.190348 -0.593841 -1.975956 -6.513299 5.334166 -0.866291 -2.671659 -3.868565 -1.524834 -4.144711 -1.261170 -2.625270 3.963291 8.336340 -5.217819 4.467757 0.603046 1.150728 -1.227073 2.234617 -0.867111 4.802182 1.788995 -1.590902 -1.849107 -3.941923 0.165302 0.277373 0.372850 -3.642380 -7.537312 4.665333 -4.853569 -7.016052 2.110976 2.490900 -1.527831 -5.227839 -0.935925 2.275899 1.806360 -3.657631 -6.406589 -3.301204 3.319180 1.363711 -2.348819 0.217892 -2.056399 -1.069275 -2.418726 -6.787515 -0.592683 0.697240 -3.572702 -3.672688 4.884956 -2.714468 0.536409 0.101958 2.617831 -2.298090 4.485896 -0.938916 4.118773 1.765139 1.805071 -4.987030 0.171494 2.506289 4.418312 -1.382249 0.898351 -2.732097 1.589193 -3.508952 1.889529 -1.840995 1.726366 4.708987 -2.132755 -4.314421 -1.031580 0.804930 -7.815237 1.466778 -5.052635 -2.354047 0.971575 4.375901 3.790980 3.449911 7.826887 -4.643015 3.445434 0.226303 -0.775893 3.746337 -0.867368 3.182507 -2.830747 -6.512558 2.305454 1.636096 1.140012 0.578084 -0.435665 -0.826987 -5.177888 -3.118352 0.723040 1.880586 -1.853593 4.094907 3.760470 6.352292 -6.840039 2.450705 3.161754 -2.415056 1.844932 -1.145705 -7.566939 1.739413 1.488070 0.555164 6.320464 -0.695701 -3.210436 2.780436 -1.646667 2.309293 -4.187586 1.782742 -4.837721 -1.972146 -5.018615 -0.156224 -1.074426 -1.912828 -1.751825 -1.932415 6.657524 -4.646216 -5.300054 7.620846 -0.740541 1.703497 -8.548789 6.422035 -2.720213 3.326154 -1.790268 0.273420 -0.731088 2.368439 -3.377641 1.048985 2.440810 -2.834055 3.487168 9.420082 1.157966 1.141772 0.196972 5.398776 -1.506668 3.032384 -3.969603 7.366027 -0.808576 -4.325735 0.399235 -2.599075 0.392256 -3.885885 1.385072 5.424056 4.567010 1.104575 2.780152 3.849352 5.183498 -2.971282 5.309390 0.113827 1.887014 -2.461789 -0.059750 1.734064 1.226552 -2.505960 3.904236 -6.502864 -8.072828 -5.374468 -7.618133 1.142893 -1.832972 1.963694 -1.935055 -1.173254 -6.408654 -4.971564 2.980884 -2.964596 4.622980 4.341374 3.825691 4.326740 7.357578 -3.696038 1.578754 -0.156560 1.076288 -1.076181 -3.305013 -2.711156 4.303314 -2.357926 1.957515 5.474638 -0.199011 2.974050 -1.037928 3.598524 -3.665389 8.030932 2.589041 -1.125931 5.836319 3.435246 7.385593 1.684032 -3.137071 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/tarjan-algorithm.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::push_back(int const&) = 2.598248 -3.759290 10.314078 9.348312 -1.169308 3.040957 -0.262357 -8.142395 6.025679 4.080736 -0.850307 2.884385 -3.709032 3.421018 -3.497737 6.898016 -6.850115 -3.323196 -3.776578 -5.663336 -4.089128 -3.373477 2.297611 0.731696 4.269431 2.244941 -4.956825 0.459613 -3.538864 -9.624269 2.317061 -0.609361 2.759143 -1.983567 1.477425 -11.155908 8.259713 6.422503 -2.569406 -6.649550 1.973473 -2.174174 -2.435801 -0.608486 -1.595902 1.634995 -2.290990 2.940485 3.810939 3.411575 3.041977 4.838455 4.407131 11.679007 -2.830499 5.851430 3.337078 1.039147 -0.661227 2.349274 2.107514 3.796310 2.248671 2.504179 1.815278 -6.117446 -2.089437 -0.664423 -4.108872 6.008728 -1.152540 -4.886753 -5.157143 -3.336336 -4.319641 -0.617650 -9.554778 5.848639 8.225704 -6.088948 3.175752 1.286073 0.370840 -0.160092 3.179167 -1.362439 6.938648 3.084659 -0.766732 -0.273705 0.160852 -2.685912 3.134105 -2.125222 -5.871193 -10.818214 4.461126 -8.193840 -7.336633 3.444914 4.177082 -2.679610 -3.116251 -2.984701 2.714751 0.897772 -2.859756 -5.270522 -1.260585 3.308277 2.122866 -3.553529 -0.517741 -1.473475 0.348263 2.053893 -7.964784 0.923932 1.442449 -1.693159 -1.996824 4.903840 1.350109 -1.102032 -1.651363 1.902071 -2.034425 5.185637 -2.103801 6.636846 -0.786961 5.862021 -3.144228 4.905717 3.598855 -3.247774 -1.449069 1.527066 -2.543809 2.803059 -4.041568 4.372163 -4.234402 3.153832 5.244933 -0.595637 -5.479548 -2.394276 -2.511339 -7.197981 1.658629 -4.467934 -5.232546 0.876949 5.257000 3.871474 4.054915 3.319731 -5.534491 0.910436 -0.133579 1.425504 4.699995 -1.458710 2.476496 -3.052448 -5.988138 4.067277 2.432014 1.393328 0.959976 -0.090753 0.294537 -3.561573 -1.094749 3.688363 2.592943 -1.675579 5.461007 4.522025 8.956886 -3.708939 2.048644 3.339826 -3.129877 1.637440 -1.502108 -7.519924 1.670108 1.625463 4.276651 7.636399 -1.082594 -0.970108 2.238597 -1.249588 2.038018 -3.592650 1.822429 -4.661049 -1.872688 -3.684945 1.610649 -1.158990 -0.818829 -2.299301 -2.671586 7.551516 -8.400843 -3.728689 9.661722 -3.534960 1.026799 -6.198116 6.823143 -3.006162 2.656245 -0.682152 -0.444029 0.119247 -0.278578 -5.694680 1.869896 3.518167 -2.473981 1.290421 8.106557 1.297318 0.102461 -0.853633 4.882868 -3.311884 4.667308 -4.451397 8.687483 -0.777446 -1.798877 -1.817011 -2.506034 -1.137012 -5.073332 1.397421 4.569376 1.735010 2.272123 1.036792 2.872720 5.721179 -4.187715 7.451904 -0.478475 -0.500747 -3.922827 -0.878976 2.682198 0.762857 -2.312350 3.719977 -7.231766 -5.371225 -10.339905 -3.852427 -0.261698 -1.322057 3.098460 -3.027804 -2.845875 -4.586325 -7.130173 8.350812 -2.690642 -0.773594 5.007797 3.349506 4.179771 6.847305 -1.287505 2.790139 -3.491235 -0.642590 0.549827 -3.431184 -2.539719 6.545953 -1.624823 1.200895 6.845636 -1.023873 4.370008 -0.055777 2.640650 -3.440594 6.622282 2.158822 -1.511411 3.733637 6.226611 6.431493 -0.318754 -4.273783 -PE-benchmarks/tarjan-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.924743 -4.717575 11.712567 10.273513 -2.034640 3.698273 -0.470562 -8.713605 6.878469 3.320200 -1.466654 3.095777 -4.293137 3.504315 -4.399728 6.673284 -8.197273 -3.943390 -4.047803 -6.239055 -4.408420 -3.956190 1.550649 1.759162 4.423958 2.976860 -5.105001 0.899005 -4.463963 -8.967118 2.971364 -0.815727 2.890455 -1.760187 2.432992 -12.688348 8.890275 7.161396 -2.636988 -7.941105 1.752003 -3.040163 -2.458319 -1.436816 -2.127158 1.578377 -2.184403 4.366848 3.937201 3.071348 2.049492 4.948108 4.244028 13.784891 -2.913186 6.579907 4.136490 1.179820 -0.372538 2.495706 2.357390 3.819651 2.326145 2.662418 1.651092 -6.615175 -2.240308 -1.132178 -4.139806 6.579119 -0.952115 -5.065257 -5.843232 -3.861465 -6.021115 -0.878185 -11.563838 7.236836 9.515280 -7.446019 3.921505 1.723519 1.240596 0.348649 4.067262 -1.295376 8.268590 3.454212 -1.204828 0.219496 -1.077521 -2.801151 3.332590 -3.745254 -6.684828 -13.054956 5.019882 -10.618611 -8.350185 4.004280 4.340435 -3.029781 -2.377079 -3.299705 3.094183 1.031657 -3.591622 -5.933782 -1.199521 4.024264 2.277668 -3.745142 0.257336 -0.891358 0.968936 1.231485 -8.926112 1.157482 2.139322 -1.927112 -1.342840 6.087924 1.193916 -0.879803 -1.742321 1.756228 -2.116722 6.406253 -1.886426 6.663508 -1.507881 6.032576 -3.268705 5.809052 3.610893 -2.918106 -1.652923 1.884324 -1.898524 3.381028 -4.072911 4.179908 -4.813486 3.133166 4.322364 -0.952956 -5.896993 -3.346898 -3.330724 -7.857568 1.433855 -4.911609 -6.529722 1.639055 5.980126 5.714032 4.221004 3.565979 -6.066069 0.973653 -0.330838 1.671095 4.894213 -1.375820 2.755171 -3.484630 -6.549928 4.497727 2.227834 1.984027 1.225732 -0.662704 0.290029 -4.066076 -0.982179 4.118520 3.512063 -1.611378 6.879251 5.440128 7.842447 -4.802171 2.234871 3.330937 -3.722951 1.785751 -1.597469 -8.443693 2.217657 1.993127 4.550746 8.125043 -1.427868 -0.642724 2.602271 -1.421968 2.354531 -4.158762 1.437309 -5.282651 -2.647474 -4.467911 2.755760 -1.828980 -0.989501 -3.310362 -3.836095 8.586402 -10.455900 -3.979787 10.692079 -3.288254 2.112008 -6.600710 6.848634 -3.441373 4.157032 -0.065142 -0.380492 0.188210 -0.663287 -6.095353 1.872041 4.103981 -3.076254 1.316552 8.369030 1.525863 0.286535 -0.309087 5.741093 -4.036683 4.872845 -5.240625 9.063076 -0.901377 -2.351460 -1.611932 -2.947589 -1.034812 -5.116504 2.218856 5.588474 2.097418 3.395313 1.586939 3.628689 5.564145 -4.439737 7.319886 -1.063848 -0.547702 -4.727838 -0.912010 2.390459 1.157398 -2.318472 3.628403 -8.560450 -6.848884 -12.797785 -3.825017 -0.307565 -2.654993 2.917019 -2.962373 -2.969670 -5.537980 -8.095278 8.849762 -3.171131 -0.954263 5.600436 3.779888 5.057962 7.728937 -1.657879 2.678055 -2.539008 -0.212693 0.397868 -3.129833 -3.729233 7.322793 -2.414472 1.653809 8.425037 -1.354987 4.957425 0.349588 3.272045 -4.189609 7.664914 2.887904 -2.950681 3.631398 7.671423 6.910368 0.422974 -5.038599 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::size() const = 0.585102 -1.359354 2.933315 2.555776 -0.501565 1.222328 -0.516226 -1.833687 1.092541 1.056610 -0.370288 1.149007 -0.794177 0.614900 -0.695507 1.350612 -1.694900 -0.602429 -0.964225 -1.326981 -0.818464 -0.690480 -0.414301 0.994952 0.869387 0.847024 -1.120258 0.641081 -1.138965 -2.628753 0.051015 -0.023850 0.689661 -0.680174 1.121624 -2.520009 2.164469 2.059053 -0.421836 -2.120433 0.290671 -0.402435 -0.578860 0.052625 -0.664903 0.729625 -0.294798 0.493430 0.576045 0.860816 0.150288 1.043161 1.595141 2.753004 -0.036514 1.676637 1.384365 0.070162 0.410254 0.319509 0.352114 0.640009 0.282012 0.181110 0.516775 -1.499573 -0.530608 0.211381 -0.577760 1.112545 -0.251572 -1.591458 -1.198665 -1.286045 -1.622363 -0.196107 -2.838020 1.476276 2.060938 -1.521938 1.067546 0.502194 0.258951 0.542867 1.387379 -0.143657 1.651804 0.930334 -0.346199 0.713686 0.308899 -0.722201 0.950572 -0.671618 -1.960477 -2.893512 1.168933 -2.692615 -1.815841 1.492633 0.805948 -0.923229 -0.349907 -1.265824 0.468422 0.323242 -0.943937 -1.249155 -0.059329 1.318950 0.649819 -0.936985 0.099631 -0.119199 0.433186 0.635165 -1.825277 0.697449 1.015712 -0.241207 -0.189215 1.623884 0.744519 0.065855 -0.537638 0.414465 -0.597076 1.456585 -0.106727 1.580696 -1.144332 1.286921 -0.665252 1.450382 0.673288 -1.639032 -0.505853 0.225372 -0.146464 0.912791 -0.278959 1.541471 -1.202234 0.863729 1.044153 0.200161 -1.140762 -1.153961 -1.351341 -1.594865 0.138005 -0.803854 -2.006886 0.631605 1.307640 0.921189 0.680635 0.254845 -1.132001 -0.311223 -0.273517 0.304083 0.861279 -0.522583 0.439466 -0.808453 -1.425852 1.221450 0.717083 0.612859 0.562968 -0.269315 0.301685 -0.371462 0.295920 1.245753 0.857287 -0.349300 1.919660 1.523572 2.183349 -0.127076 -0.023564 0.325551 -1.176736 0.388401 -0.555983 -1.718148 0.220329 0.697504 0.923977 2.203691 -0.442592 0.112059 0.903020 -0.326517 0.493446 -0.905491 0.775608 -1.229590 -0.436016 -0.780602 0.389085 -0.614647 -0.163024 -1.231338 -1.072328 2.096649 -2.826076 -0.646759 2.069314 -0.527818 0.297488 -1.162006 1.408809 -0.708870 1.261944 0.456171 -0.185018 0.153277 -0.245980 -1.320422 0.385082 0.994475 -0.897224 0.127780 1.490095 0.287916 -0.298307 -0.035368 1.148994 -1.199097 0.831554 -1.446726 1.829018 -0.373256 -0.022402 -0.492147 -0.586217 -0.288197 -1.140482 0.306590 0.349510 0.009073 0.586797 -0.371722 0.904805 0.752108 -0.801047 1.512259 -0.380252 -0.179670 -1.354112 -0.323750 0.231378 0.616108 0.104174 0.590006 -2.165691 -0.878527 -3.351619 -0.446009 -0.332163 0.012482 0.523309 -0.313369 -0.828522 -1.170936 -2.120499 2.949498 -0.654996 -0.574329 1.385191 0.905725 1.297700 1.538049 0.264028 0.479029 -0.865002 -0.205484 0.118872 -0.342168 -0.657623 1.728713 -0.526022 0.303828 1.867384 -0.283691 1.438895 0.308796 0.253195 -1.224525 1.662569 0.728005 -0.903356 0.433357 2.107474 1.329115 -0.646280 -1.136467 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::max_size() const = -0.164721 -0.650105 1.140082 0.889873 -0.065289 0.492649 0.180554 -0.780042 1.033707 0.153616 -0.178458 0.030527 -0.735608 0.155692 -0.468093 0.314390 -0.706279 -0.715823 -0.280134 -0.684125 -0.394995 -0.704618 0.098874 0.202854 0.309517 0.127790 -0.414325 0.049271 -0.963388 -0.326104 0.725640 -0.161387 0.352592 0.006022 0.166075 -1.563563 0.767724 0.718408 -0.264768 -0.894249 0.078349 -0.568651 0.006645 -0.218305 -0.041734 0.114730 -0.088827 0.420939 0.479661 0.082659 0.273943 0.132651 -0.155484 1.559674 -0.599769 0.718210 0.348830 0.129734 -0.115994 0.416825 0.201600 0.255766 0.418672 0.512726 -0.261080 -0.501644 -0.014443 -0.354733 -0.768523 0.737632 -0.074329 -0.350408 -0.533218 -0.338713 -0.736177 -0.287714 -0.984815 0.636824 1.204455 -0.796002 0.755040 0.244872 0.520705 0.036376 0.528829 -0.101779 0.967491 0.222852 -0.442839 -0.003804 -0.713535 -0.028112 0.055728 -0.211799 -0.495523 -0.919349 0.555874 -0.963972 -0.976888 0.348577 0.257454 -0.050197 -0.579979 0.018404 0.388741 0.212195 -0.514855 -0.877670 -0.329243 0.498579 0.003453 -0.243136 0.161847 -0.198574 -0.069653 -0.503983 -0.906502 -0.128523 0.204741 -0.451903 -0.336245 0.888780 -0.456978 0.046358 -0.020915 0.164174 -0.243571 0.812023 -0.075624 0.419755 -0.057545 0.102033 -0.996002 0.154659 0.246854 0.655000 -0.127336 0.167249 -0.071856 0.234224 -0.504948 0.114219 -0.377625 0.175749 0.417958 -0.356134 -0.497931 -0.340444 -0.065756 -1.022358 0.129066 -0.627177 -0.408514 0.165550 0.706410 1.027635 0.438943 1.063031 -0.722856 0.393798 -0.161122 -0.060783 0.441730 0.074869 0.455849 -0.420300 -0.706060 0.294273 0.194611 0.190216 0.247817 -0.324232 -0.119044 -0.716506 -0.253750 0.268144 0.369322 -0.107466 0.741779 0.601970 0.418743 -1.216099 0.373941 0.359050 -0.225974 0.208025 -0.083641 -0.971995 0.377215 0.243492 0.101424 0.667357 -0.152044 -0.236776 0.155559 -0.246032 0.360805 -0.629035 0.039022 -0.629674 -0.320066 -0.681746 0.329213 -0.422558 -0.317482 -0.351079 -0.401771 0.907341 -0.682428 -0.658004 1.067942 0.004227 0.458483 -0.901591 0.518815 -0.453369 0.784264 -0.229837 0.052263 -0.146359 0.286004 -0.301725 0.118875 0.388225 -0.442690 0.403587 1.040129 0.242593 0.236165 0.163861 0.778939 -0.309671 0.265107 -0.536884 0.800664 -0.075987 -0.488902 0.150573 -0.454080 0.164338 -0.294769 0.238134 0.862812 0.776222 0.285453 0.430226 0.543626 0.410020 -0.376725 0.430955 -0.018051 0.273564 -0.406206 -0.032314 0.103847 0.194190 -0.297422 0.218442 -0.979839 -1.167390 -0.858551 -0.787377 0.054220 -0.388985 0.025555 -0.032895 -0.036906 -0.862690 -0.643595 0.466207 -0.446324 0.672840 0.324474 0.481005 0.639170 1.001804 -0.546328 0.000539 0.236027 0.094105 -0.262995 -0.255013 -0.615564 0.768228 -0.485609 0.350878 0.868679 -0.174167 0.326995 0.157843 0.586108 -0.577200 1.051160 0.461586 -0.392359 0.607997 0.646298 1.157931 0.353572 -0.520387 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.796507 -4.510927 9.459562 8.214862 -1.170116 4.033997 -1.598172 -6.084253 3.904942 4.447574 -1.660787 4.135592 -2.398848 1.688584 -2.058811 4.783818 -5.373432 -2.218929 -2.611906 -4.018734 -2.893741 -2.513419 -1.438549 3.130483 2.817106 2.608966 -3.789795 2.292247 -3.400187 -9.966656 -0.499054 -0.058114 2.104600 -2.888786 3.618739 -8.243300 7.302933 6.911997 -1.311117 -7.283336 0.744064 -0.937349 -2.397447 0.952334 -1.903970 2.511460 -0.661152 2.279834 1.402422 3.098224 0.923061 3.346512 5.464040 9.319958 0.524420 5.936150 5.032459 0.499293 1.118496 1.349218 1.653601 1.906975 1.303974 1.133220 1.642449 -4.481427 -1.405497 1.246593 -2.021543 3.714898 -0.349209 -5.782036 -3.648432 -4.240323 -4.751594 -0.438852 -7.950179 4.455355 7.113259 -4.581452 3.807200 2.281588 1.433343 1.430323 4.489435 -1.153037 6.201291 3.256868 -1.554827 1.608216 0.696141 -3.130352 3.072796 -1.778862 -6.420654 -9.093505 3.599708 -9.110444 -6.372282 4.820682 2.601680 -2.988489 -1.543174 -3.879879 2.645424 0.838462 -2.588391 -4.157067 -0.799468 4.102394 0.822088 -3.402106 -0.035371 -0.424314 1.396900 3.462547 -6.160216 1.749579 3.738278 -1.035290 -0.874725 5.028224 2.553243 0.678880 -2.007611 1.158109 -1.318977 3.787860 -0.052273 5.247560 -3.154251 4.353700 -1.967792 5.270987 1.915821 -6.569226 -1.630945 0.736107 -0.022847 3.241598 -0.851807 5.714819 -4.963779 3.379683 3.777186 1.030180 -4.054921 -4.206104 -4.330080 -4.974689 1.006632 -2.743605 -6.863219 1.079423 4.450446 2.312979 1.983015 0.391020 -4.100973 -0.410564 -0.663971 1.925186 2.456595 -2.381014 1.367357 -2.768057 -4.809797 4.107188 3.336748 1.720733 1.675143 -1.173800 0.913124 -1.160019 -0.049581 4.097778 2.455105 -0.718355 6.149637 4.544513 9.099887 -0.760973 -0.006621 0.886750 -3.380182 1.270119 -1.964518 -6.045891 0.654093 2.013192 4.572343 8.081315 -1.173310 0.052627 2.661526 -0.501865 1.293311 -3.003466 3.153840 -4.333072 -1.265435 -1.838483 1.367503 -2.208544 -0.293572 -4.023727 -3.091761 7.025699 -8.943841 -3.194851 7.150182 -2.604316 1.127707 -4.442208 4.630120 -2.342937 3.747207 1.147991 -0.652093 0.445944 -1.306287 -4.141755 1.610248 3.320583 -2.727700 0.840225 4.724119 0.676939 -0.552241 0.007298 3.144087 -3.904193 2.329250 -4.759616 6.175002 -1.026946 -0.193888 -2.379773 -1.943823 -0.315244 -3.425639 0.577251 0.364022 0.162832 1.026870 -1.317420 2.910190 2.212046 -3.275469 5.574401 -0.765046 -0.457328 -4.326602 -1.173275 0.465496 1.321161 0.026757 2.486765 -7.097992 -2.287809 -10.902084 -2.229711 -1.676047 0.287873 2.347013 -1.122333 -2.586494 -3.809992 -6.788744 10.424560 -1.796824 -1.673759 4.805933 3.365811 4.356116 4.858520 1.172796 1.636024 -3.664673 -1.431427 -0.357899 -2.045651 -1.525011 5.419057 -1.215232 1.718127 5.620872 -0.646546 4.455035 0.331641 0.416504 -3.738564 5.285150 2.659958 -2.878200 0.670266 6.183544 5.123516 -3.357610 -4.101984 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.368314 -1.310201 1.972320 1.560780 0.003995 0.882440 0.303947 -1.017193 1.425894 0.721810 -0.512052 0.557896 -1.046970 0.196276 -0.510340 0.696814 -1.125021 -1.245890 -0.142806 -0.824245 -0.513102 -1.058079 -0.160922 0.570591 0.514166 0.067163 -0.754868 0.000196 -1.631325 -1.115717 0.653673 -0.343948 0.654897 -0.275961 0.442910 -2.635236 1.256536 1.298909 -0.341347 -1.807340 0.140780 -0.846892 -0.048099 -0.139898 -0.120782 0.418306 0.203179 0.612890 0.479696 0.322720 0.316629 0.239030 0.111428 2.557845 -0.563881 1.287385 0.898597 0.083453 -0.054717 0.469511 0.486180 0.152281 0.828890 0.806996 -0.375842 -0.785492 -0.181620 -0.295593 -1.120959 0.952396 0.095333 -0.607722 -0.859089 -0.497093 -1.215608 -0.439773 -1.274160 1.030838 2.070941 -1.136795 1.463895 0.634247 1.129563 0.098840 1.053408 -0.154383 1.664104 0.511546 -0.829898 -0.045476 -1.139579 -0.387304 0.066206 -0.088898 -0.866742 -1.321499 0.801231 -1.586970 -1.623052 0.826539 0.283095 -0.160760 -0.982940 -0.123995 0.884264 0.579094 -0.766627 -1.424971 -0.788020 0.789607 -0.221722 -0.641049 0.257937 -0.414842 -0.086798 -0.444869 -1.424123 -0.198383 0.711330 -0.808362 -0.553078 1.424884 -0.564439 0.353862 -0.179414 0.217535 -0.296674 1.059530 0.183245 0.785361 0.015244 -0.061824 -1.830983 0.479472 0.345731 0.587378 -0.337816 0.206870 0.025806 0.527871 -0.442622 0.458501 -0.675294 0.731640 0.948166 -0.374625 -0.896731 -0.996531 -0.040912 -1.344478 0.294335 -0.962061 -0.668048 0.232197 1.198264 1.210119 0.629240 1.444668 -1.170678 0.837572 -0.253947 0.184620 0.631412 -0.173031 0.604131 -0.727963 -1.127756 0.611551 0.817659 0.353665 0.427389 -0.596919 -0.011617 -0.905266 -0.651884 0.585875 0.651142 -0.006759 1.423816 0.890016 1.296055 -1.742753 0.338819 0.355701 -0.406705 0.276397 -0.271621 -1.664153 0.611122 0.399259 0.409448 1.380841 -0.232038 -0.568633 0.410056 -0.208724 0.426773 -0.943821 0.445487 -1.148380 -0.421663 -0.799637 0.298666 -0.826379 -0.482983 -0.762695 -0.548542 1.673854 -1.100916 -1.359774 1.478974 -0.415790 0.662729 -1.835715 1.034684 -0.795006 1.119432 -0.373484 0.019645 -0.282041 0.487278 -0.503827 0.229356 0.813926 -0.822757 0.731703 1.533899 0.352812 0.299588 0.360083 1.043231 -0.391642 0.222029 -0.848949 1.240930 -0.192560 -0.481624 -0.046431 -0.654272 0.523958 -0.194453 0.246952 0.859919 1.000809 0.190113 0.515790 1.091295 0.456673 -0.764052 0.757826 -0.149890 0.702138 -0.703001 -0.122406 -0.242066 0.257134 -0.313598 0.454372 -1.720944 -1.533146 -1.578136 -1.333437 -0.149609 -0.240248 0.194128 0.034820 -0.010441 -1.610685 -1.038508 0.955109 -0.566936 0.850033 0.743454 0.765238 1.179731 1.337618 -0.570228 -0.223486 -0.052942 -0.104195 -0.565861 -0.519644 -0.751994 1.030595 -0.881558 0.815068 1.291607 -0.261332 0.504617 0.240837 0.852225 -0.906215 1.858393 0.973323 -0.850108 0.606590 1.069798 1.878347 -0.230147 -1.003953 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.311500 -0.876917 1.617043 1.448572 -0.179259 0.630090 0.256372 -1.069919 1.294216 0.761863 -0.032949 0.154303 -0.926830 0.304267 0.202494 0.867573 -1.124668 -0.742800 -0.324297 -0.935608 -0.667533 -0.905000 0.177621 0.173220 0.441236 0.224787 -0.636526 -0.086324 -0.637276 -1.026237 0.871384 -0.287165 0.747674 0.204625 0.231744 -3.219818 1.200295 0.810860 -0.412611 -1.247956 0.113475 -0.558446 0.156222 -0.131047 -0.374825 0.288734 -0.054636 0.398025 0.712411 0.342752 0.480636 0.158768 0.351225 2.372190 -0.677225 0.933488 0.469937 -0.151195 -0.323741 0.410901 0.338084 0.309574 0.792205 0.728351 -0.157901 -0.800022 -0.070884 -0.471007 -1.360193 0.990088 0.029376 -0.590808 -0.838804 -0.548582 -0.572891 -0.510626 -1.469375 1.015106 1.706171 -1.095323 1.061442 0.366312 0.476145 0.102915 0.771706 -0.105491 1.428514 0.316746 -0.623801 0.175626 -0.304180 -0.616075 0.342490 -0.067765 -0.562391 -1.374420 0.539517 -0.609800 -1.254618 0.762628 0.409938 0.042646 -1.374481 -0.599414 0.717826 0.455352 -0.742533 -1.274916 -0.781448 0.552173 -0.098823 -0.477105 -0.098163 -0.304628 -0.274176 -0.427348 -1.287027 -0.214455 0.307369 -0.613769 -0.592034 1.144411 -0.472619 0.080162 -0.076365 0.306626 -0.417707 1.190317 -0.101770 0.838343 0.217983 0.155351 -1.290402 0.132434 0.427990 0.732049 0.152420 -0.247466 -0.343781 0.392527 -0.755406 0.522707 -0.025747 0.678820 1.364686 -0.060525 -0.774307 -0.492228 0.009291 -1.558336 0.397025 -0.986612 -0.099198 0.598986 0.988956 0.850885 0.655033 1.059548 -1.193572 0.769732 -0.463863 0.036264 0.728722 0.393860 0.630636 -0.567085 -0.863702 0.366951 0.555035 0.354076 0.334973 -0.551288 -0.054407 -0.700351 -0.588763 0.418557 0.487671 -0.184248 0.755178 0.735240 2.171633 -1.352905 0.432789 0.513521 -0.247652 0.272430 -0.132717 -1.307681 0.425407 0.292982 -0.151699 1.028882 -0.298476 -0.581413 0.187677 -0.284178 0.313318 -0.713143 0.254781 -0.825526 -0.188331 -0.816152 0.065460 -0.679994 -0.469832 -0.452585 -0.117221 1.381086 -0.966180 -0.912558 1.556839 -0.613056 0.463771 -1.452769 1.662675 -0.606804 0.600943 -0.913583 -0.388276 -0.271976 0.468094 -0.418755 0.331679 0.573040 -0.465719 0.247815 1.721907 0.351359 0.265297 0.105742 1.024347 -0.108921 0.405234 -0.653482 1.408153 -0.230347 -0.050757 -0.101258 -0.579789 0.364165 -0.375802 0.177697 0.913284 0.943732 0.088351 0.397683 0.816496 0.517510 -0.580817 0.875403 0.040467 0.538181 -0.555751 0.026807 0.123726 0.399647 -0.444715 0.492980 -1.299763 -1.148976 -1.113016 -0.750348 -0.393131 0.523503 0.263121 -0.083061 -0.046318 -1.102058 -0.759253 0.958755 -0.593784 0.460503 0.474828 0.631124 0.965430 1.397987 -0.379103 -0.262172 -0.133490 -0.256738 -0.331538 -0.307316 -0.677522 1.052888 -0.711094 0.572398 0.966260 -0.143099 0.388109 0.052413 1.110889 -0.736972 1.453082 0.582958 -0.271765 0.823238 1.063139 1.459951 0.001482 -0.688966 -PE-benchmarks/tarjan-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.689343 -4.127795 5.785824 5.121338 -0.076855 3.774308 -0.622793 -2.376760 0.523335 2.979270 -0.275085 3.489987 -2.165175 0.245161 -0.143491 1.133026 -1.902591 -1.297877 -1.610494 -1.700413 -0.033125 -1.437639 -2.343399 4.449581 1.151464 0.282215 -2.216461 1.096409 -4.675861 -5.437449 -0.621725 0.235602 2.583220 -2.512136 2.397116 -5.716546 4.007426 5.482139 -0.075214 -5.173543 0.863068 -0.498358 -1.024504 1.177285 -2.657272 1.973326 0.290005 -1.767199 0.194865 1.455406 -0.540921 1.468241 3.813170 4.422834 0.777842 3.809652 3.568383 -0.605900 1.791585 -0.321217 -0.126179 0.453372 1.071211 -0.133084 0.318953 -2.326278 -0.281793 1.662226 -2.051961 0.837392 -0.250620 -3.018686 -1.269366 -1.971169 -4.146238 -0.373608 0.858216 1.719460 4.105259 -1.386178 3.790973 0.745086 0.365856 1.606687 3.751830 0.460659 1.721488 1.798528 -1.165225 1.749910 -0.337162 -0.542395 1.162239 1.392409 -4.229025 -3.335958 2.295366 -4.137157 -3.284829 3.876551 0.118735 -2.462743 -2.118801 -3.759527 0.436128 1.875994 -2.197677 -2.987766 -1.167729 4.123323 0.979754 -2.392172 0.336543 -0.563404 0.561295 0.029860 -2.222008 1.580483 3.324224 -1.034946 -1.251741 3.878805 0.376107 1.754394 -0.949276 1.449177 -1.625850 1.563784 0.907835 2.549745 -2.185851 -0.265786 -1.386208 -0.186682 0.310115 -1.809480 -1.383541 -1.055625 0.032483 2.005891 1.965382 3.972371 -0.925515 1.998948 2.414709 1.135132 -0.843977 -3.027058 -2.049673 -2.868703 -0.675173 -1.039273 -3.846859 2.722687 2.505037 -0.635911 0.383856 1.347633 -1.289104 -0.068897 -0.538317 -0.714255 0.973360 -2.062391 0.253220 -1.602910 -3.389205 2.473560 2.094725 2.077113 1.169221 -0.534342 0.572451 0.595468 0.114214 1.721412 1.269608 -0.276884 4.338628 3.364203 5.808594 0.663007 -0.992301 -0.628096 -3.060465 1.065291 -1.854934 -3.330200 -0.541232 2.072122 -0.695158 5.687437 -1.240040 -1.324287 3.121280 -0.518888 0.712204 -2.314688 3.820250 -2.922614 0.183270 -1.576000 -2.463716 -1.444782 -1.092792 -4.186023 -1.861230 4.611866 -5.068808 -2.604205 2.115964 0.519166 0.130637 -4.110309 2.669121 -1.319569 3.338036 1.490892 -0.672205 0.338608 0.875381 -2.054956 0.319815 2.076935 -3.149887 1.481869 2.871561 0.431174 -1.333216 0.101541 1.698164 -1.517123 0.042903 -3.820475 2.595509 -1.027860 0.414554 -0.993538 -1.249850 0.629555 -1.527756 -0.215875 -2.398903 0.354439 -0.058137 -2.034189 3.184373 -0.112331 -0.413018 1.970092 -0.995048 0.798245 -2.325739 -0.471342 -1.206256 2.595253 2.102923 1.717414 -4.898796 -1.235893 -5.254331 -2.345835 -0.592622 2.191777 0.634052 1.081462 -1.108794 -4.032437 -4.136022 5.333732 -1.141876 1.433868 3.247012 2.238777 2.859532 2.175042 1.210462 -0.009034 -1.439933 0.021247 -0.635880 -0.131139 -0.576247 2.586766 -1.444165 1.469572 2.963190 -0.150149 3.284444 0.054251 -0.658889 -3.377932 4.489482 2.227664 -2.368961 0.602768 2.999782 2.164498 -3.358033 -1.988877 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.320989 -0.357358 0.626899 0.153685 -0.176057 0.215558 0.193293 -0.104837 0.564685 0.071962 -0.548484 -0.569240 -0.393453 -0.474014 0.112535 -0.275323 -0.386673 -0.326585 0.137618 -0.161954 0.303212 -0.558166 0.061817 0.089728 0.005037 0.420798 0.265017 0.167126 0.015018 -0.234281 0.697152 -0.136573 0.216615 0.730247 0.047809 -0.550878 0.351016 0.234346 -0.060026 -0.446323 -0.102709 0.270699 -0.254729 0.263101 -0.109416 0.332554 0.201051 0.596050 -0.123238 0.026888 -0.062780 -0.868074 -0.062200 0.265765 0.016583 0.176562 0.125012 -0.062334 0.179172 0.327176 0.105168 -0.055449 0.071226 0.644234 0.040943 0.144787 0.487099 -0.260275 -0.673232 0.410716 -0.186395 -0.069658 0.117718 -0.192043 -0.028994 0.174602 -0.071394 0.274626 0.683436 0.053755 0.679991 0.380345 0.370605 -0.287269 -0.392763 -0.049704 0.134026 0.094051 -0.254969 -0.126494 -0.430215 -0.476552 -0.026572 -0.139026 -0.077214 0.219518 0.385702 -0.363792 -0.104061 0.000142 0.067265 -0.101825 -0.049348 0.348471 0.134558 0.127912 0.045392 -0.188088 -0.198849 0.170409 -0.547037 0.306148 -0.112055 0.628227 -0.238038 -0.032449 -0.168277 -0.242157 -0.083187 -0.351959 0.259856 0.189576 -0.321509 0.201394 0.219992 0.096671 0.045922 0.227397 0.404694 0.087681 0.249080 -0.107628 -0.027700 -0.158659 0.117934 0.484575 0.343182 -0.309642 0.392518 0.106319 -0.075878 -0.137036 -0.273606 -0.397116 0.346961 -0.300746 0.001801 -0.223059 -0.252271 -0.605462 -0.050230 -0.395930 -0.024711 0.465189 0.244996 0.553250 0.036651 0.827393 -0.928191 0.231091 -0.361809 -0.154059 -0.567724 0.311196 0.063980 -0.015406 -0.092224 -0.252011 0.137433 0.206366 0.183971 -0.673202 -0.221620 -0.430137 -0.236407 0.499347 0.035929 -0.017120 -0.141223 0.363942 -0.104493 -0.450043 -0.023112 0.257247 0.099129 -0.256431 0.423163 -0.621196 0.308832 -0.063650 0.241447 0.005582 0.010253 0.272488 -0.004516 -0.441880 -0.242411 -0.338935 0.050198 -0.284471 0.207361 -0.312883 0.264319 -0.507815 -0.254215 0.000306 0.168992 0.183208 0.077005 -0.383612 0.401265 0.195214 0.190120 -0.155744 -0.109238 -0.106259 0.571872 0.015628 -0.025002 -0.254417 -0.359434 0.375832 -0.483809 -0.163992 0.132156 0.455252 0.365724 0.170742 -0.198633 0.274283 0.427679 -0.277312 -0.101677 -0.313228 -0.299366 -0.008195 -0.272015 0.038019 -0.171718 0.166824 -0.080287 -0.033257 0.336775 0.553131 -0.114201 0.505203 -0.078858 -0.145234 0.063972 -0.001891 0.353756 0.515977 0.024819 -0.042389 -0.016936 0.332704 -0.460019 0.123691 -0.459700 -0.756976 -0.295774 -0.630883 -0.596345 -0.586484 0.286170 0.187412 0.321737 -0.201033 -0.158489 0.170206 -0.033060 0.667704 -0.067682 0.148595 0.236728 0.398655 -0.326593 -0.178771 0.424708 0.389410 -0.493281 -0.070505 -0.293351 0.280878 -0.186137 0.097167 0.437305 -0.195141 -0.083129 -0.259188 0.396958 -0.568322 0.437253 0.420862 -0.233631 0.159094 -0.357604 0.408241 0.389179 -0.168853 -PE-benchmarks/tarjan-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.437172 -0.830046 0.890723 0.498284 0.232919 0.467967 0.153130 0.114314 0.253118 0.786792 -0.712221 0.633781 -0.384825 -0.292051 0.539914 0.273521 -0.194882 -0.689765 0.598378 0.233060 0.203869 -0.477323 -0.406291 0.483260 0.194673 0.222339 -0.302758 -0.000851 -0.717554 -1.051809 -0.208081 -0.178305 0.411428 0.229645 0.458280 -0.521647 0.294487 0.554561 0.090137 -1.098392 0.014136 0.131542 0.006666 0.352840 0.383554 0.788529 0.663904 0.081030 -0.312196 0.256291 -0.208605 -0.547264 0.055765 0.121637 0.326691 0.539777 0.769262 -0.080173 0.253885 -0.103504 0.419483 -0.409346 0.498067 0.508194 -0.431707 -0.051916 -0.004449 0.119008 -0.394999 0.033264 0.360174 -0.206277 -0.250298 -0.386180 -0.073637 -0.015968 0.203476 0.200699 0.875934 0.109245 1.037620 0.649314 1.143405 -0.134882 0.430801 -0.212151 0.411823 0.324216 -0.710206 -0.092378 -0.692626 -0.814879 -0.234910 0.699690 -0.269402 0.821977 0.095406 -0.284400 -0.603406 0.480792 -0.075084 -0.016805 -0.649690 0.476722 0.665737 0.579570 0.016887 -0.495841 -0.513707 0.165286 -0.713664 -0.321117 -0.155584 -0.141927 -0.423774 0.246051 -0.357173 -0.231154 0.687877 -0.579545 -0.139192 0.412574 -0.377914 0.690620 -0.134374 -0.095813 0.015006 -0.010669 0.918185 0.288669 0.286034 -0.634697 -1.057089 0.178897 0.016252 0.239207 -0.275055 -0.234193 0.304464 0.193643 0.370367 0.201759 -0.445601 0.682248 0.976093 -0.053252 -0.402758 -0.899084 -0.022763 -0.242663 0.394042 -0.263884 0.266427 -0.045684 0.350944 -0.147581 -0.004604 0.791067 -0.858620 0.578832 -0.219643 0.438062 -0.227190 0.017966 0.054797 -0.370370 -0.243535 0.246868 0.933777 -0.080153 0.396039 -0.592012 0.270353 -0.151387 -0.610941 0.608816 0.131092 0.239343 0.535320 0.119799 0.803185 -0.274148 -0.429545 -0.159646 0.051799 -0.181867 0.025572 -0.795677 0.446467 0.027321 0.644802 0.776753 0.007051 -0.378655 0.320330 0.009289 -0.052306 -0.305112 0.831928 -0.701804 0.209764 0.057063 -0.081346 -0.639829 -0.202104 -0.285144 0.298003 0.808139 0.504372 -1.020951 0.052798 -0.287054 0.318968 -1.019880 0.033357 -0.236605 0.371698 -0.111879 0.052202 -0.219334 -0.045009 0.283132 -0.279184 0.324143 -0.083584 0.385932 0.245929 0.040900 -0.290521 0.484119 -0.000830 0.118046 -0.417716 -0.156243 0.022893 -0.126719 0.334707 -0.184784 -0.020827 0.585264 0.320661 -0.509081 -0.339136 0.287674 -0.379900 0.053175 0.308375 -0.309714 -0.490475 0.103466 0.070491 0.874835 -0.062480 -0.289730 -0.688230 0.276175 -0.070958 0.130797 -0.734438 -0.381823 0.025606 -1.144924 -0.725664 0.384017 0.286516 0.374219 0.139976 -0.594905 -0.092286 0.355541 0.122543 0.986864 0.130261 0.213112 0.646769 0.163714 -0.216239 -0.532223 -0.279273 -0.239342 -0.633144 -0.204917 -0.028421 0.086704 -0.352650 0.475567 0.344924 -0.206356 -0.147505 -0.292305 0.475485 -0.446986 0.914606 0.698487 -0.664551 -0.256533 -0.046484 0.938091 -0.953007 -0.549389 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.685790 -1.190648 2.165852 1.621221 0.354244 0.873517 0.945493 -1.415804 2.186204 1.355817 -0.223593 -0.336300 -1.486394 0.087313 -0.324658 0.870964 -1.072410 -1.415127 -0.316788 -1.312204 -0.508945 -1.593366 0.650730 -0.153851 0.593807 -0.552835 -0.675200 -0.393974 -1.459188 -1.414530 1.693657 -0.461342 0.895332 -0.376155 -0.281987 -3.800919 1.693832 1.171244 -0.636843 -1.606315 0.243399 -0.573358 -0.175388 0.283014 -0.072640 0.301230 -0.021594 0.766653 0.915062 0.523105 1.186599 -0.121210 0.011104 3.384079 -1.413203 1.319523 0.411458 0.090441 -0.313444 1.232221 0.384337 0.481915 1.017250 1.510242 -0.135491 -0.716580 0.410846 -0.562143 -2.216428 1.557878 -0.165922 -0.644677 -0.705870 -0.187320 -0.719359 -0.388973 -1.116479 0.942003 2.537458 -1.001131 1.770549 0.611811 0.913408 -0.224184 0.424736 -0.192292 1.619424 0.339229 -0.944840 -0.587587 -1.280593 -0.319385 0.034454 0.143866 -0.547917 -1.353225 1.073702 -0.514177 -1.584082 0.664469 0.432391 0.025107 -1.818163 -0.154071 0.946531 0.532054 -0.830996 -1.825349 -1.417764 0.832819 -0.596263 -0.359454 0.150823 -0.707089 -0.505298 -0.701376 -1.474568 -0.694477 0.066463 -1.146832 -1.277849 1.439725 -1.147413 0.163980 0.169659 0.646666 -0.455273 0.883362 -0.004120 1.199829 0.821345 -0.008680 -2.453391 -0.247475 0.684590 1.565006 0.463115 0.057688 -0.433882 0.483829 -1.064075 0.641223 -0.306298 0.406709 1.591763 -0.641824 -0.813114 -0.457300 0.779836 -1.932077 0.490200 -1.448989 -0.296362 0.183392 1.394764 1.324436 0.926215 2.252901 -1.959721 1.451565 -0.595068 -0.140853 0.521606 -0.026959 0.798825 -0.624095 -1.350619 -0.013529 0.988003 0.307122 0.289653 -0.956496 -0.387048 -1.421143 -0.915195 0.164485 0.325991 -0.556210 0.701941 0.999695 2.396040 -2.751377 0.756221 1.005123 -0.225457 0.272670 -0.033638 -2.138134 0.637074 0.370178 -0.035191 1.278849 -0.182883 -0.941782 0.263304 -0.691981 0.268952 -1.052914 0.303776 -1.216388 -0.451391 -1.098487 0.085832 -0.979707 -0.770036 -0.336378 0.044166 1.575385 -0.584545 -1.667977 2.096734 -0.486038 0.128449 -2.202075 2.125754 -0.828563 0.657238 -1.044588 -0.100588 -0.694505 1.324877 -0.405664 0.135962 0.512949 -0.813074 1.447547 2.736125 0.527546 0.546230 0.190129 1.566768 -0.333366 0.169467 -1.052224 1.515061 -0.282749 -0.959711 -0.111870 -0.900301 0.761030 -0.592337 0.258829 1.184954 1.736794 -0.349461 0.912233 1.079799 0.822171 -0.560570 1.228560 0.360734 1.025288 -0.435459 0.177679 0.225810 0.096100 -1.010888 1.019473 -1.798038 -1.865099 -0.805238 -1.848655 -0.221595 -0.077268 0.344385 -0.075455 0.314957 -2.003722 -0.948595 0.617669 -0.752739 0.966247 0.700550 0.931800 1.056433 1.944935 -0.929363 -0.130757 0.007426 -0.016908 -0.878492 -1.075832 -0.598570 1.315386 -0.970836 0.852806 1.104769 -0.111747 0.297107 -0.098606 1.077442 -1.180052 2.148019 1.048170 -0.004098 1.306496 0.653055 2.740657 0.224016 -0.812774 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.459576 -12.623496 29.642287 25.418140 -4.858688 11.068933 -4.333766 -20.781017 14.021874 12.473519 -4.593789 11.408319 -7.677470 6.463334 -7.436896 16.446369 -18.525546 -7.427899 -8.649307 -14.411330 -11.096293 -8.224501 -1.380030 7.232591 9.552648 9.236198 -12.696820 5.408420 -8.628904 -29.980245 1.130905 -0.495733 6.894133 -7.092340 9.429376 -30.358791 22.573509 19.900857 -5.347625 -21.372360 3.135062 -3.545701 -7.254987 2.107355 -6.618428 6.308736 -3.916483 8.093566 6.072965 9.117857 5.013682 11.793378 15.530295 32.096455 -0.690565 17.883395 13.615479 1.840606 0.828074 5.066260 6.175646 7.442802 5.232698 4.810272 5.202514 -15.204882 -4.587591 1.763933 -8.096303 13.613725 -1.066285 -17.924073 -11.862349 -12.979777 -13.144480 -2.226577 -25.526517 15.130622 22.358063 -15.547729 10.708352 6.314473 3.671362 2.585192 12.451666 -4.421873 21.167805 9.658472 -3.788997 3.139595 2.780532 -9.356335 9.875313 -5.704786 -19.167485 -29.917311 11.844347 -27.386722 -20.757962 13.453189 10.309612 -8.634667 -6.639058 -11.066852 9.076065 2.034008 -8.127626 -13.418738 -3.614760 11.766994 2.517945 -10.361069 -1.537467 -1.762754 3.651216 10.231406 -20.633463 4.913360 9.491305 -3.098403 -3.472302 15.154693 7.279696 0.160577 -5.703428 4.222152 -4.407124 13.074382 -2.110861 16.661314 -8.339378 15.554619 -5.639798 16.398801 6.848862 -17.907166 -4.738981 1.155992 -2.032025 9.603767 -5.895195 16.025621 -15.350239 10.573134 14.074568 2.441615 -14.178871 -11.460626 -12.101570 -18.310389 3.490793 -10.244597 -19.556930 3.413496 13.990362 9.365384 7.695964 2.477956 -13.933368 0.949894 -1.469459 5.896867 9.401492 -5.759879 5.452378 -8.946919 -15.475022 12.040425 9.139646 5.562037 4.158164 -2.990035 1.764600 -5.537781 -2.190945 12.770494 8.408404 -1.654043 17.516192 13.987433 30.453579 -5.865250 1.725682 4.579567 -10.025495 3.801864 -5.384321 -19.722660 2.358981 5.846142 13.986459 24.894840 -3.556012 -0.052791 6.863077 -1.745355 4.611835 -9.802463 8.515588 -13.476021 -4.071814 -6.836711 4.373568 -6.803079 -0.465551 -11.137806 -10.173847 22.182132 -28.801431 -10.931043 25.519457 -9.797814 4.338120 -15.237521 15.671518 -7.438055 10.597473 0.417583 -2.259101 0.432763 -4.518268 -13.851456 6.522980 9.949648 -7.581527 1.964807 18.116675 2.476519 -0.320770 -0.927199 11.232410 -11.428099 9.760126 -14.171045 22.021459 -2.735804 -2.061038 -6.950481 -6.173788 -2.255281 -11.578951 2.971229 5.302320 2.112150 4.354299 -2.136716 8.777133 9.657688 -11.497314 18.929027 -1.779242 -1.815282 -12.580826 -3.721830 3.743281 3.943477 -2.710381 7.757289 -21.770433 -9.783287 -34.183381 -8.462563 -4.409739 -0.604174 8.112644 -5.369142 -8.423011 -11.558243 -20.667881 31.234080 -6.150882 -3.140112 14.558152 10.488331 13.837616 17.292688 1.145742 6.213674 -11.070862 -4.468086 -0.348133 -7.537756 -6.356265 17.758631 -3.304187 5.424422 18.405791 -2.137768 13.564977 1.041337 3.669718 -10.880528 17.017552 7.457294 -7.951207 4.277571 18.319091 16.423444 -7.528508 -13.024950 -PE-benchmarks/tarjan-algorithm.cpp__int** std::copy(int**, int**, int**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/tarjan-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.003130 -2.226203 3.964427 2.819152 0.396444 1.395806 2.066242 -2.922441 3.364930 1.691555 -0.219643 0.186120 -3.227189 0.773582 -1.968727 1.814784 -1.751679 -2.778417 -0.876160 -2.427431 -1.229987 -2.632395 1.833313 0.272952 1.483268 -0.680279 -1.362677 -1.152765 -3.398927 -3.186155 2.403659 -0.574809 1.507686 -0.940755 -0.493043 -5.475059 2.805788 2.391431 -1.308739 -2.918237 1.295860 -1.087097 -0.696200 0.624663 0.034398 0.498192 -0.044842 1.663401 1.700281 1.498917 2.426199 0.602572 0.358191 5.452691 -2.477936 2.738237 1.465587 0.925700 -0.514914 1.856296 0.329127 0.852696 1.417072 2.267739 -0.554930 -1.247921 0.092728 -0.929488 -3.650928 2.606194 -0.529937 -1.320092 -1.833383 -0.677035 -1.628367 -0.569765 -2.143899 1.495623 4.725412 -2.405239 2.861720 0.889433 1.244072 -0.954146 0.879469 -0.550618 2.229490 0.749265 -1.417773 -1.201581 -2.470121 0.010249 -0.457017 0.315537 -1.384354 -3.316230 2.451722 -1.908854 -3.538895 1.169583 0.650200 -0.498431 -2.552735 0.207184 1.368611 0.953563 -2.036886 -3.655009 -2.237942 1.621105 0.025451 -0.726803 0.448355 -1.044519 -0.742366 -1.143917 -3.241752 -0.869747 0.429922 -2.532175 -2.159794 2.443591 -1.460895 1.087903 0.592001 1.383030 -0.803460 2.045156 0.412428 1.875714 1.420357 0.381013 -3.593046 0.402592 1.207558 2.231281 -0.352477 0.913666 -0.845543 0.683807 -1.553845 1.029137 -1.154552 0.718425 2.580677 -1.359022 -2.105895 -0.516266 0.992558 -3.691131 1.218349 -2.801492 -0.989876 -0.322179 2.049735 1.821733 1.475840 4.367204 -2.725770 2.067103 -0.160636 -0.278831 1.041313 -0.387970 1.771697 -1.341629 -3.332013 0.617859 1.559253 0.141685 0.418093 -0.951624 -0.579099 -2.981362 -1.760369 0.164521 0.719376 -1.307172 1.913946 1.741270 3.412508 -3.686868 1.022006 1.532522 -0.941679 0.802365 -0.461358 -4.173814 1.208862 0.624504 0.554840 2.850668 -0.132028 -1.560974 1.673486 -1.073528 0.970430 -2.158002 0.892053 -2.672353 -1.300757 -2.413597 0.330966 -0.780264 -1.185567 -0.406417 -0.319081 3.102333 -1.334842 -2.676197 3.444041 -0.551254 0.602894 -4.337095 3.753139 -1.311942 1.320170 -1.044713 0.333537 -0.817758 1.837786 -0.626725 0.084412 0.922707 -1.238904 2.639400 4.869803 0.436702 0.815742 0.809729 2.892129 -0.827512 0.605007 -1.914108 3.220707 -0.532054 -2.424319 0.388322 -1.319802 0.802491 -1.551379 0.488413 2.707444 2.711320 -0.617336 1.688397 1.920265 2.146571 -1.263222 2.561095 0.313847 1.735594 -1.339323 0.130088 0.376167 0.092477 -1.543829 2.100860 -3.317931 -3.973395 -1.942231 -4.203161 0.117870 -1.024020 1.149256 -0.665080 0.011376 -3.502362 -2.170910 1.440257 -1.417732 1.888203 2.161694 2.148631 2.380853 3.931393 -1.603827 0.422198 -0.065390 0.501999 -1.396915 -1.907520 -0.706865 1.424320 -1.417038 1.324091 2.040935 0.220906 0.996155 -0.806047 1.866899 -2.107977 4.089544 1.745384 -0.162135 3.078012 1.481813 4.476802 0.560211 -1.379014 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.300323 -2.019034 3.212042 2.896484 0.556537 1.147165 1.548102 -2.078180 2.532947 1.708586 -0.178881 0.906332 -2.613682 1.071492 -1.604562 2.020980 -1.695222 -2.261344 -0.610135 -1.442468 -1.003460 -2.021192 1.465628 0.282002 1.611841 -0.374673 -1.684714 -1.181928 -3.216682 -2.194114 1.553037 -0.653859 1.467272 -0.912761 -0.559407 -4.556549 2.212905 2.278592 -0.918532 -2.611858 1.140814 -1.597075 -0.100939 -0.413973 -0.001439 0.256722 -0.068982 0.954373 1.708332 0.983645 1.581431 0.928902 0.588418 4.627365 -2.138949 2.209403 1.028108 0.560267 -0.576574 0.861386 0.681475 0.766340 1.559901 1.654927 -0.499058 -1.577996 -0.643362 -0.762265 -2.685426 2.014700 -0.381900 -0.339130 -2.060033 -0.102054 -1.472333 -0.484860 -1.813367 1.583871 3.710829 -1.993445 2.343128 0.445779 0.861689 -0.567769 1.007954 -0.179239 1.738708 0.709021 -1.047883 -1.034742 -1.777630 0.265443 -0.006799 0.359152 -1.171440 -2.893462 1.672939 -1.311344 -3.036513 0.816696 0.625302 -0.421336 -1.785812 0.079763 1.037438 1.206986 -1.606641 -2.945507 -1.408094 0.928524 0.456142 -1.271346 0.353640 -1.353326 -0.690801 -1.204334 -2.645893 -0.741228 0.269038 -1.980413 -1.580538 2.044986 -1.053158 0.630192 -0.032385 0.836377 -0.553670 1.746167 -0.060899 1.818523 1.050883 0.475218 -2.864451 0.212207 1.295811 2.043113 -0.773525 0.873416 -1.101866 0.646398 -1.194171 0.544439 -0.487058 1.135754 2.004368 -1.220141 -1.710431 -0.712922 0.859716 -2.688709 0.814252 -1.951789 -0.412674 -0.126433 2.093237 0.996211 1.530596 3.536710 -2.109998 1.534638 0.206794 -0.174229 1.765234 -0.118419 1.348222 -1.236914 -2.606428 1.034769 1.381075 0.287581 0.020230 -0.009506 -0.189024 -2.021737 -0.955554 0.236626 0.761143 -0.946350 2.008310 1.147909 2.655733 -2.952954 1.104436 1.320381 -0.598619 0.770059 -0.528849 -3.391111 1.313431 0.454157 0.190384 2.180907 -0.217435 -1.754736 1.340984 -0.775077 0.898949 -1.861157 0.840567 -2.033821 -1.074298 -1.955683 0.169984 -0.238409 -1.109275 -0.615632 -0.121838 2.824154 -1.280432 -1.904345 2.430694 -0.409650 0.399120 -3.601529 3.337974 -1.394972 0.897224 -0.900580 -0.086507 -0.138987 1.736634 -1.172687 0.020874 1.354776 -1.165535 1.762650 3.653557 0.663606 0.463706 0.321980 2.097317 -0.111035 0.860543 -1.250046 2.681538 -0.143362 -1.512300 0.183537 -1.238081 0.674926 -0.991711 0.287025 2.579869 2.129902 0.145859 1.496489 1.567404 2.170360 -1.328827 2.026302 -0.168976 1.477996 -0.989605 0.021581 0.130903 0.214928 -1.019946 1.955893 -2.763353 -3.295089 -1.297883 -2.882691 0.455259 -0.507379 0.825504 -0.656124 -0.089449 -3.142082 -1.936280 0.854224 -1.277570 1.567759 1.602738 1.314839 1.690558 2.542093 -1.380912 0.298674 -0.304282 0.380278 -0.503464 -1.363173 -0.729771 1.447524 -1.631556 1.111793 1.956881 -0.389069 0.746165 -0.389482 1.653768 -1.495832 3.533454 1.339688 -0.475663 2.382427 1.540406 3.638468 0.137354 -1.470839 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__miter_base(int**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.216889 -0.266459 0.395803 0.358802 0.113353 0.124916 0.245948 -0.174661 0.469585 0.329413 -0.007362 -0.032471 -0.401040 0.090013 0.115063 0.290524 -0.196848 -0.331630 0.027113 -0.200139 -0.128038 -0.330870 0.165481 -0.106598 0.150359 -0.107711 -0.137837 -0.168707 -0.356358 -0.158032 0.290792 -0.185617 0.213712 0.088776 -0.043321 -0.702062 0.261666 0.145042 -0.145935 -0.324930 0.068807 -0.258085 0.239958 -0.072157 0.163421 0.120623 0.114283 0.071114 0.303339 0.131296 0.287338 -0.121985 -0.030490 0.555408 -0.395300 0.218027 0.043743 -0.055105 -0.123191 0.127063 0.076943 -0.007923 0.280317 0.287755 -0.196732 -0.193710 -0.079493 -0.219865 -0.473803 0.243908 -0.030907 0.036258 -0.336534 -0.063083 -0.038942 -0.199795 -0.676753 0.197781 0.544326 -0.285583 0.383646 0.152019 0.268294 0.001952 0.195213 0.037562 0.294699 0.022421 -0.294056 0.011327 -0.200821 -0.072924 -0.024529 0.094550 0.022512 -0.128327 0.112014 0.162297 -0.352471 0.176669 0.028961 0.169857 -0.442496 0.072874 0.169694 0.238159 -0.255216 -0.464516 -0.234132 0.024126 -0.010357 -0.087593 0.024672 -0.299998 -0.227258 -0.320474 -0.343451 -0.193706 -0.016508 -0.325417 -0.278200 0.334512 -0.299204 0.071418 0.048823 0.086933 -0.119701 0.385644 0.071677 0.245280 0.189724 -0.164565 -0.808130 -0.016216 0.186422 0.517857 0.047057 0.096815 -0.174283 -0.009022 -0.269278 0.011859 0.148086 0.219611 0.447816 -0.194995 -0.199626 -0.079910 0.190318 -0.396993 0.232127 -0.294806 0.257395 -0.013431 0.286884 0.249883 0.268839 0.600635 -0.377012 0.270257 -0.180719 -0.050241 0.267341 0.248729 0.269126 -0.163710 -0.187158 0.028721 0.268726 -0.047430 0.144729 -0.181513 0.009020 -0.336900 -0.070138 0.030282 0.083114 -0.156346 0.217679 0.111036 0.453879 -0.472448 0.147832 0.227368 0.070123 0.064001 0.009635 -0.384964 0.263986 0.048628 -0.160819 0.076910 -0.038292 -0.271402 0.056405 -0.160563 0.133449 -0.213268 0.019920 -0.220722 -0.107197 -0.261829 0.103177 -0.197172 -0.249392 0.038858 0.171940 0.353763 0.152851 -0.182399 0.246892 -0.116255 0.064242 -0.399758 0.631279 -0.239453 0.106469 -0.377915 -0.070115 -0.129647 0.411151 0.018980 -0.030555 0.165898 -0.077239 0.173204 0.496971 0.165358 0.094412 0.114861 0.339207 0.085525 0.048982 -0.029303 0.325288 -0.067848 0.012571 0.122012 -0.172845 0.197385 0.014790 -0.036545 0.399399 0.403974 -0.088995 0.245487 0.179694 0.199252 -0.154400 0.178474 0.025816 0.378240 -0.117683 0.043544 -0.025753 0.044870 -0.168403 0.133783 -0.341205 -0.382094 0.154007 -0.229562 -0.076458 0.229987 -0.023723 0.042852 0.124349 -0.381034 -0.094659 0.022612 -0.191255 0.188176 -0.014701 0.111683 0.259365 0.390275 -0.190001 -0.239648 -0.002498 -0.080009 -0.127920 -0.068424 -0.147443 0.223762 -0.365918 0.132946 0.165409 -0.101269 -0.077372 0.040507 0.414465 -0.209244 0.484187 0.195786 0.028391 0.414686 0.305020 0.665044 0.015395 -0.157214 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_base(int**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.600533 -1.041844 1.619427 1.378216 0.272507 0.824195 0.348432 -0.969565 1.237401 0.824992 -0.097873 0.440667 -1.041300 0.234132 -0.205923 0.650773 -0.779620 -1.056540 -0.228010 -0.821215 -0.429342 -0.965398 0.074700 0.386226 0.440356 -0.250667 -0.766871 -0.077036 -1.603033 -1.143458 0.696661 -0.314285 0.750462 -0.395423 0.127330 -2.621557 1.210629 1.137690 -0.347127 -1.394591 0.259019 -0.779689 0.106371 -0.022152 -0.119568 0.375091 0.097134 -0.054510 0.690456 0.322989 0.587278 0.253894 0.071668 2.066610 -0.834538 1.101037 0.550737 -0.078823 -0.202771 0.430875 0.209935 0.203810 0.878244 0.731327 -0.495081 -0.764550 -0.009124 -0.210427 -1.337781 0.839785 -0.013782 -0.506149 -0.676640 -0.271593 -0.959093 -0.485960 -0.277710 0.616621 1.775421 -0.746316 1.313062 0.303794 0.730842 0.109496 0.998606 -0.045259 1.304664 0.330009 -0.795121 -0.079795 -0.875931 -0.099307 0.007694 0.551060 -0.581196 -0.736472 0.583724 -0.866924 -1.355223 0.707489 0.165430 -0.031934 -1.519198 -0.304246 0.737274 0.565348 -0.725766 -1.431942 -0.780584 0.742669 -0.177944 -0.582476 0.115169 -0.785590 -0.314953 -0.590908 -1.144516 -0.258714 0.451873 -0.750119 -0.949387 1.299483 -0.721874 0.232589 -0.095633 0.433281 -0.473226 0.811847 -0.071659 0.766555 0.150398 -0.288901 -1.836737 -0.212697 0.288959 0.880497 -0.271666 -0.064174 -0.364144 0.322380 -0.555130 0.486022 -0.252503 0.719263 1.224016 -0.274696 -0.640699 -0.540598 0.282768 -1.408026 0.284458 -0.847252 -0.359021 0.176949 1.059271 0.645336 0.687662 1.521575 -0.881449 0.838324 -0.281706 -0.121386 0.831636 -0.182395 0.636238 -0.649011 -1.029228 0.492739 0.691402 0.269530 0.353213 -0.414711 -0.048423 -0.801910 -0.616477 0.285439 0.393846 -0.044838 1.061487 0.723096 1.753884 -1.558723 0.402491 0.444284 -0.320849 0.359752 -0.292614 -1.328025 0.374052 0.454921 -0.143166 1.310058 -0.209046 -0.910854 0.316269 -0.131975 0.484701 -0.898665 0.527041 -0.970127 -0.156025 -0.750132 -0.304326 -0.639017 -0.596633 -0.635652 -0.295261 1.426601 -0.614980 -1.339731 1.270851 -0.297445 0.461088 -1.908107 1.123138 -0.765176 0.862263 -0.630826 -0.015004 -0.277317 0.845053 -0.487015 0.365510 0.654365 -0.814249 0.824125 1.605596 0.387941 0.354190 0.111475 0.938577 -0.094589 0.174608 -0.714513 1.243209 -0.217186 -0.331677 0.021785 -0.617787 0.484166 -0.236346 0.098818 0.485949 1.081029 -0.080485 0.339442 1.092934 0.528264 -0.541642 0.734585 -0.082111 0.671883 -0.478785 -0.083351 -0.082688 0.334054 -0.145825 0.541221 -1.456299 -1.280974 -0.790929 -1.401241 0.026195 0.395973 0.070620 0.159479 0.090045 -1.550323 -0.730583 0.763019 -0.530834 1.233923 0.573062 0.702596 0.916894 1.246004 -0.532897 -0.317028 -0.171861 -0.144957 -0.506149 -0.455557 -0.607933 0.972991 -0.782057 0.717088 0.879677 -0.201940 0.366110 0.139859 0.700485 -0.816486 1.692227 0.748005 -0.360787 0.901222 0.718540 1.786064 -0.230132 -0.709979 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.387749 -2.830341 3.437951 2.989720 1.054548 2.502771 0.428061 -1.737552 1.994820 2.561661 -0.781074 1.714182 -1.936048 -0.015437 -0.404853 0.966785 -1.069674 -2.179832 -0.046583 -1.051753 -0.247515 -2.099729 -0.914266 1.817814 0.592626 -0.462791 -1.425731 0.472712 -4.023316 -3.881001 0.419131 -0.453275 1.523534 -1.308139 0.793483 -4.193807 2.757834 3.260757 -0.292282 -3.718997 0.287465 -1.228927 -0.460464 0.950746 -0.089163 1.542769 0.738089 -0.312462 0.577840 1.032793 0.859848 0.208288 0.980983 3.287686 -0.558443 2.904885 2.012975 -0.107171 0.502293 0.828151 0.339066 0.069805 1.747007 1.570387 -1.006560 -1.047064 0.158903 0.641621 -2.445738 1.295469 -0.049696 -1.540252 -1.030660 -0.613771 -2.319734 -0.551378 0.455631 0.776670 3.923093 -0.738261 3.491029 1.060093 2.009712 0.225836 2.675305 -0.222570 2.600210 1.072201 -2.131711 -0.000464 -2.034820 -0.676603 -0.082439 1.636607 -1.820255 -0.663668 1.121304 -2.764050 -2.834291 2.012393 -0.335948 -0.499620 -2.807065 -0.750611 1.822378 1.267579 -1.296142 -2.986843 -1.572940 2.154787 -1.019851 -1.585795 0.300082 -1.355503 -0.419769 -0.184829 -1.932689 -0.542632 1.956727 -1.747634 -1.841424 2.866977 -0.804076 1.275978 -0.506167 0.684790 -0.635059 0.862693 0.439333 1.569074 0.082674 -0.979631 -3.764813 0.069747 0.234173 0.060557 -1.012436 -0.151998 0.180677 1.058194 0.001532 1.901883 -1.409834 1.636451 2.603038 -0.061355 -1.058615 -1.915866 0.308612 -2.275786 0.435339 -1.419855 -1.701201 -0.003592 2.354559 0.324189 0.921366 2.512839 -1.744781 1.337177 -0.556726 0.205015 0.972120 -1.197044 0.839838 -1.380293 -2.366403 1.480603 2.269941 0.509939 0.968731 -1.149870 0.021150 -0.928888 -1.344066 1.223838 0.656850 0.248702 2.844945 1.588133 4.040474 -2.262296 0.231799 0.181962 -0.915273 0.791330 -1.010555 -2.941728 0.679820 1.084144 0.661145 3.606004 -0.462979 -1.737975 1.044984 0.099487 0.744418 -2.016401 2.069713 -2.441320 -0.070683 -1.008320 -1.059365 -1.382750 -1.337908 -1.920117 -0.522487 3.120854 -1.184863 -3.177968 2.094293 -0.849620 0.659644 -4.156625 1.352500 -1.634279 1.904802 -0.407949 0.063399 -0.484897 1.482523 -0.716775 0.508464 1.574015 -2.171788 2.445416 2.551073 0.538284 0.363977 0.585134 1.322787 -0.518651 -0.693852 -1.980961 1.950209 -0.451639 -0.251271 -0.453120 -1.362824 1.557376 -0.267429 -0.348303 -0.485449 1.891806 -0.970915 -0.093498 2.552451 0.137811 -1.034062 1.428750 -0.256381 1.481213 -1.259119 -0.416312 -1.078382 0.480449 0.474308 1.265427 -3.381097 -1.835429 -2.166972 -3.222100 -0.422534 1.020178 0.504124 0.966949 0.350243 -3.597186 -1.831468 2.599414 -0.835913 2.400840 1.644838 1.783701 1.983429 1.985008 -0.202787 -0.708741 -1.123648 -0.451944 -1.797959 -1.042331 -0.516172 1.706456 -1.330383 2.030457 1.444460 -0.204508 0.984551 0.131883 0.642046 -1.956640 3.468964 2.116024 -1.116894 0.902719 1.026921 3.602255 -1.947186 -1.663723 -PE-benchmarks/tarjan-algorithm.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.340255 -0.382649 0.604634 0.544547 0.183334 0.236679 0.296519 -0.364610 0.683350 0.509635 0.056782 0.020530 -0.522626 0.158155 0.072919 0.426760 -0.278970 -0.479441 -0.050081 -0.380909 -0.267505 -0.471550 0.193627 -0.113831 0.194867 -0.268710 -0.301676 -0.188569 -0.557367 -0.372756 0.402672 -0.219470 0.315120 -0.137270 -0.066269 -1.254217 0.453251 0.285612 -0.217806 -0.486426 0.096133 -0.365485 0.258373 -0.041080 0.100314 0.112877 0.068097 -0.015631 0.431051 0.166382 0.471358 0.009723 -0.049656 1.023234 -0.575972 0.382793 0.085176 -0.053051 -0.211805 0.245416 0.117068 0.068975 0.431050 0.400009 -0.235788 -0.312479 -0.052295 -0.227971 -0.693098 0.402077 -0.025090 -0.099500 -0.397362 -0.089969 -0.180453 -0.310758 -0.635170 0.256647 0.791343 -0.405012 0.531029 0.173461 0.353155 0.055108 0.352551 0.003844 0.562426 0.054474 -0.401403 -0.028889 -0.254238 -0.024938 -0.020728 0.238561 -0.051982 -0.289366 0.203531 0.096961 -0.556464 0.296395 0.078792 0.200798 -0.793983 -0.058538 0.312019 0.282576 -0.374943 -0.695623 -0.450012 0.154786 -0.035827 -0.187219 0.059578 -0.513654 -0.249921 -0.390890 -0.512688 -0.251143 0.033461 -0.415466 -0.536697 0.531272 -0.432402 0.060374 0.035358 0.182432 -0.209024 0.454388 -0.005632 0.401000 0.188155 -0.163670 -1.166914 -0.119471 0.215683 0.639846 0.062993 0.073775 -0.290614 0.042818 -0.404953 0.145592 0.112344 0.349773 0.674349 -0.187702 -0.304563 -0.123347 0.322151 -0.622031 0.274951 -0.440320 0.184271 -0.013400 0.442335 0.354647 0.376318 0.794309 -0.488294 0.475365 -0.224507 -0.077311 0.424808 0.128502 0.361972 -0.254280 -0.369988 0.067681 0.384793 0.005128 0.177176 -0.250614 -0.024243 -0.439870 -0.207137 -0.001388 0.138030 -0.171026 0.325690 0.208060 0.913616 -0.832615 0.258876 0.305855 0.016902 0.147802 -0.083378 -0.570798 0.251226 0.139024 -0.234100 0.302668 -0.076387 -0.464610 0.070312 -0.172776 0.224910 -0.326693 0.092331 -0.352961 -0.138562 -0.357501 -0.012488 -0.300999 -0.291140 -0.047272 0.100874 0.556584 -0.008744 -0.436360 0.523408 -0.184858 0.098791 -0.735891 0.877385 -0.327805 0.191825 -0.557119 -0.064676 -0.205600 0.647839 -0.085273 0.124445 0.260489 -0.240278 0.291899 0.837639 0.206015 0.227334 0.077740 0.488944 0.092808 0.074241 -0.148882 0.599879 -0.104865 -0.079458 0.083017 -0.274983 0.281976 -0.040020 0.019049 0.409942 0.578884 -0.144789 0.253982 0.395200 0.298714 -0.235927 0.339178 0.027718 0.431813 -0.173087 0.068349 0.000529 0.065711 -0.229948 0.219791 -0.526710 -0.505961 0.023059 -0.437420 -0.031503 0.375389 -0.047989 0.029217 0.114590 -0.618627 -0.183098 0.168627 -0.283437 0.342963 0.081672 0.238788 0.386249 0.617825 -0.272710 -0.252675 -0.076537 -0.186529 -0.197533 -0.200425 -0.207666 0.382776 -0.459919 0.260647 0.239912 -0.084395 -0.006389 0.125511 0.448602 -0.292170 0.728363 0.290638 0.059894 0.556276 0.420719 0.988053 -0.042616 -0.249778 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.597181 -1.146650 1.746159 1.506355 0.241895 0.893340 0.375586 -1.019144 1.274986 0.909717 -0.088491 0.516690 -1.098944 0.179460 -0.144874 0.692699 -0.839574 -1.078277 -0.248059 -0.852658 -0.425327 -0.997377 -0.002008 0.509052 0.473445 -0.207935 -0.792869 -0.059672 -1.654869 -1.294377 0.631837 -0.303629 0.809109 -0.412161 0.220568 -2.734624 1.305478 1.289456 -0.352821 -1.532089 0.256723 -0.765818 0.111765 -0.016040 -0.196362 0.442643 0.120080 -0.044211 0.666565 0.365272 0.543403 0.283064 0.222985 2.137264 -0.748309 1.199830 0.673460 -0.076860 -0.156784 0.400609 0.245697 0.195113 0.906930 0.688980 -0.477859 -0.805047 -0.056766 -0.165983 -1.384603 0.840180 0.016760 -0.589487 -0.745759 -0.339900 -1.102240 -0.519679 -0.339347 0.660534 1.874045 -0.825361 1.404468 0.392689 0.745113 0.159297 1.087188 -0.044429 1.368428 0.381031 -0.816821 0.036567 -0.912139 -0.223825 0.056001 0.494362 -0.692829 -0.936787 0.625841 -1.035509 -1.474868 0.818252 0.186636 -0.087598 -1.560195 -0.427767 0.773982 0.617042 -0.787555 -1.497488 -0.804339 0.807600 -0.180784 -0.640879 0.139057 -0.720349 -0.266620 -0.543218 -1.229742 -0.215275 0.562059 -0.767361 -0.916559 1.383862 -0.690643 0.315482 -0.129116 0.424818 -0.494414 0.853200 -0.025048 0.825196 0.099360 -0.280487 -1.794683 -0.227547 0.268023 0.789457 -0.258368 -0.112282 -0.335102 0.401965 -0.479598 0.634182 -0.252220 0.766730 1.240116 -0.214142 -0.645450 -0.651483 0.136302 -1.460521 0.322553 -0.840018 -0.417429 0.255251 1.117251 0.587891 0.676226 1.459325 -0.887996 0.778765 -0.305281 -0.098791 0.834741 -0.201223 0.653233 -0.660592 -1.094198 0.566565 0.765262 0.379454 0.382842 -0.430321 -0.019669 -0.746297 -0.641315 0.263718 0.398113 -0.071312 1.170669 0.804267 1.847601 -1.481135 0.368132 0.402560 -0.353592 0.407511 -0.336048 -1.413444 0.378531 0.474537 -0.120464 1.428476 -0.252044 -0.893748 0.413965 -0.135724 0.473505 -0.956016 0.591094 -1.049794 -0.152004 -0.795732 -0.282700 -0.715257 -0.625955 -0.758831 -0.333885 1.546626 -0.697973 -1.362920 1.319039 -0.292276 0.497158 -1.948506 1.210057 -0.769411 0.936682 -0.608868 -0.063707 -0.223166 0.794213 -0.518529 0.292536 0.707526 -0.885414 0.809526 1.599383 0.388734 0.300381 0.131586 0.953354 -0.141695 0.199208 -0.831106 1.317188 -0.262255 -0.307900 -0.005557 -0.634697 0.542308 -0.246005 0.084219 0.430468 1.049600 -0.075422 0.284608 1.134249 0.500340 -0.588890 0.784755 -0.045973 0.690550 -0.549938 -0.062086 -0.142568 0.379010 -0.110961 0.605634 -1.562203 -1.252972 -0.919120 -1.400158 -0.052440 0.472220 0.105754 0.181509 0.052027 -1.604886 -0.847417 0.928591 -0.550225 1.096237 0.655360 0.757282 1.024907 1.292357 -0.464435 -0.320344 -0.190875 -0.181523 -0.519860 -0.490428 -0.603661 1.024496 -0.815224 0.766165 0.943968 -0.207521 0.442905 0.062699 0.748852 -0.887941 1.782925 0.783305 -0.442272 0.874354 0.861628 1.852602 -0.365518 -0.768963 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.370988 -3.354369 4.071611 3.630417 0.901489 2.848493 0.563831 -1.985445 2.182748 2.985290 -0.734166 2.094295 -2.224268 -0.288795 -0.099608 1.176416 -1.369444 -2.288519 -0.146828 -1.208970 -0.227438 -2.259622 -1.297803 2.431941 0.758070 -0.249128 -1.555723 0.559531 -4.282496 -4.635593 0.095007 -0.399995 1.816769 -1.391828 1.259674 -4.759138 3.232078 4.019589 -0.320752 -4.406487 0.275985 -1.159572 -0.433492 0.981306 -0.473135 1.880528 0.852816 -0.260968 0.458385 1.244210 0.640473 0.354138 1.737565 3.640960 -0.127298 3.398850 2.626590 -0.097355 0.732227 0.676821 0.517880 0.026317 1.890437 1.358651 -0.920446 -1.249550 -0.079311 0.863841 -2.679848 1.297442 0.103014 -1.956943 -1.376252 -0.955309 -3.035469 -0.719971 0.147442 0.996234 4.416215 -1.133486 3.948062 1.504565 2.081067 0.474843 3.118212 -0.218422 2.919029 1.327307 -2.240212 0.581343 -2.215858 -1.299192 0.159098 1.353114 -2.378422 -1.665243 1.331885 -3.606976 -3.432519 2.566208 -0.229918 -0.777942 -3.012052 -1.368219 2.005918 1.526050 -1.605086 -3.314572 -1.691714 2.479442 -1.034050 -1.877810 0.419523 -1.029299 -0.178103 0.053621 -2.358817 -0.325434 2.507661 -1.833842 -1.677280 3.288871 -0.647925 1.690441 -0.673579 0.642475 -0.740998 1.069458 0.672392 1.862280 -0.172517 -0.937557 -3.554542 -0.004503 0.129491 -0.394645 -0.945943 -0.392539 0.325888 1.456120 0.379191 2.642686 -1.408417 1.873787 2.683535 0.241414 -1.082370 -2.470292 -0.423721 -2.538261 0.625814 -1.383685 -1.993241 0.387916 2.644460 0.036966 0.864186 2.201590 -1.777513 1.039383 -0.674597 0.317991 0.987649 -1.291185 0.924814 -1.438198 -2.691254 1.849731 2.639245 1.059560 1.116875 -1.227920 0.164919 -0.650824 -1.468260 1.115235 0.678184 0.116334 3.390857 1.993987 4.509059 -1.874353 0.060004 -0.026661 -1.078985 1.030123 -1.227721 -3.368820 0.702216 1.182228 0.774652 4.198095 -0.677967 -1.652443 1.533462 0.080743 0.688439 -2.303155 2.389981 -2.839657 -0.050581 -1.236319 -0.951235 -1.763947 -1.484520 -2.536011 -0.715609 3.720980 -1.599828 -3.293911 2.335234 -0.823776 0.839995 -4.358618 1.787094 -1.655456 2.276898 -0.298159 -0.180112 -0.214143 1.228319 -0.874346 0.143594 1.839818 -2.527613 2.372420 2.520010 0.542252 0.094931 0.685689 1.396671 -0.754179 -0.570852 -2.563929 2.320104 -0.676983 -0.132386 -0.589828 -1.447373 1.848084 -0.315722 -0.421301 -0.762855 1.734658 -0.945599 -0.367667 2.759026 -0.001810 -1.270301 1.679601 -0.075689 1.574552 -1.614885 -0.309988 -1.377783 0.705228 0.648631 1.587490 -3.910618 -1.695419 -2.807928 -3.216687 -0.815709 1.401412 0.679793 1.077099 0.160156 -3.870000 -2.415642 3.427275 -0.932869 1.712406 2.056329 2.057128 2.523494 2.216774 0.139521 -0.725317 -1.218721 -0.634774 -1.866515 -1.216690 -0.494813 1.963979 -1.496217 2.275844 1.765914 -0.232414 1.368525 -0.253918 0.883881 -2.313915 3.922453 2.292527 -1.524317 0.768382 1.742363 3.934945 -2.624112 -1.958646 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.091115 -0.706025 1.452779 1.239501 0.190678 0.535548 0.497930 -1.093478 1.464415 0.729861 -0.009704 0.077879 -0.994467 0.433939 -0.479748 0.863011 -0.817450 -0.937793 -0.329482 -0.974625 -0.625850 -0.912137 0.397493 -0.141426 0.550336 -0.363312 -0.641635 -0.286855 -1.234086 -0.653493 0.875146 -0.314296 0.430106 -0.431176 0.019688 -2.091765 1.086000 0.752280 -0.466294 -1.038497 0.234548 -0.813884 0.170092 -0.208999 0.308638 0.114834 -0.111561 0.569513 0.904386 0.324362 0.760480 0.374448 -0.090157 2.308854 -1.179377 0.915235 0.262071 0.161097 -0.268748 0.714250 0.238274 0.366738 0.624913 0.687460 -0.275476 -0.790781 -0.170646 -0.416181 -1.028644 0.991258 -0.013789 -0.396849 -0.926982 -0.229457 -0.687046 -0.448351 -1.958191 0.798834 1.580970 -1.052492 0.882677 0.315687 0.660283 0.063573 0.728099 -0.118199 1.303457 0.209277 -0.632882 -0.177849 -0.883992 0.005890 0.083652 -0.240243 -0.443870 -1.404165 0.567508 -0.590449 -1.307068 0.497817 0.371532 0.065121 -0.950996 -0.020671 0.596601 0.294971 -0.730253 -1.319351 -0.590666 0.497117 0.032912 -0.405045 0.298992 -0.908543 -0.182251 -0.655700 -1.203521 -0.271645 0.112225 -0.625719 -0.884896 1.135122 -0.594401 -0.051774 0.002055 0.308310 -0.376538 0.894321 -0.196040 0.853175 0.217333 0.159033 -1.956836 0.402794 0.526244 0.819983 0.004069 0.533609 -0.495462 0.271758 -0.894591 0.363363 -0.230607 0.567377 0.728899 -0.527522 -0.717634 -0.271394 0.437867 -1.094832 0.497367 -0.803683 -0.321958 -0.309765 0.946665 1.113180 0.778191 1.205310 -0.971311 0.675996 -0.257656 0.109469 0.888807 0.041207 0.690666 -0.560227 -0.891769 0.247223 0.541680 0.003232 0.214788 -0.302529 -0.057251 -0.984020 -0.217690 -0.018857 0.382259 -0.430630 0.948052 0.644366 1.144674 -1.731292 0.580402 0.670512 -0.252042 0.328075 -0.204340 -1.273643 0.552794 0.348522 0.057200 0.829335 -0.165018 -0.608365 0.210051 -0.302721 0.523430 -0.653482 -0.042760 -0.789810 -0.670899 -0.753723 0.436775 -0.478937 -0.471455 -0.234463 -0.216245 1.171233 -0.540207 -0.761740 1.410884 -0.443530 0.203784 -1.268008 1.517103 -0.647464 0.332999 -0.611765 0.055267 -0.302430 1.055685 -0.574709 0.298569 0.557309 -0.601856 0.679375 1.631062 0.370252 0.477647 0.120362 1.051498 -0.251153 0.321980 -0.561434 1.333666 -0.211963 -0.483351 0.099602 -0.563046 0.313930 -0.376633 0.278497 1.118717 0.935145 0.130475 0.507739 0.744462 0.775539 -0.546808 0.853617 -0.101526 0.368925 -0.499957 0.047696 0.215034 -0.146775 -0.482465 0.493195 -1.242234 -1.194846 -0.600460 -0.806658 0.230600 -0.077087 -0.008123 -0.139168 -0.019789 -1.332733 -0.739911 0.403881 -0.597513 0.148759 0.456287 0.535984 0.747190 1.352767 -0.605985 0.004639 -0.084991 -0.163712 -0.250354 -0.606080 -0.527978 0.996866 -0.781003 0.483034 0.877224 -0.168089 0.267783 0.166151 0.789806 -0.641368 1.361682 0.541819 -0.093357 0.930410 1.115679 1.900879 0.199444 -0.614307 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::back() = 0.121650 -0.840910 1.745932 1.590796 -0.352634 0.529561 0.013168 -1.200630 1.118707 0.137057 -0.192348 0.396404 -0.999340 0.541149 -0.405754 0.901585 -1.374913 -0.828170 -0.534883 -0.810721 -0.582670 -0.796493 0.523694 0.398449 0.696931 0.767818 -0.844996 0.047307 -0.905917 -0.899605 0.836727 -0.265156 0.767789 0.516304 0.224495 -2.315039 1.239454 1.016087 -0.387595 -1.233600 0.349140 -0.662202 -0.072019 -0.601165 -0.486060 0.293338 -0.242421 0.389840 0.788711 0.302855 0.201022 0.439334 0.339926 1.712479 -0.648236 0.904187 0.495688 0.022335 -0.241515 0.044814 0.365992 0.537237 0.653468 0.631696 -0.190426 -1.044357 -0.341408 -0.533794 -1.152921 1.069167 -0.205005 -0.297176 -1.035805 -0.518858 -0.865850 -0.229841 -0.860213 1.157646 1.635293 -1.117995 0.803351 0.133805 0.207432 -0.142666 0.573043 -0.082863 1.103608 0.467821 -0.320096 0.049448 -0.409971 -0.406579 0.340030 -0.186403 -0.769106 -1.367873 0.684664 -1.405789 -1.320598 0.438332 0.577998 -0.263095 -0.803281 -0.278900 0.490482 0.451190 -0.600711 -1.089375 -0.148381 0.448789 0.410517 -0.551113 -0.172630 0.027688 -0.240889 -0.378095 -1.452270 -0.058491 0.160089 -0.592126 -0.065314 0.960891 -0.329139 -0.029644 -0.188419 0.279626 -0.415189 1.339259 -0.222406 0.811330 0.078035 0.438613 -0.329056 0.258705 0.512748 0.641452 -0.409882 -0.082546 -0.427011 0.316578 -0.737577 0.086039 -0.309036 0.364985 0.966686 -0.312615 -0.937507 -0.382670 -0.533452 -1.726787 0.202099 -0.954567 -0.328562 0.756754 0.963630 0.810296 0.784878 1.377142 -0.999742 0.349450 -0.053625 -0.066957 0.935013 0.312024 0.594418 -0.589151 -1.027321 0.809385 0.120464 0.347404 0.277418 -0.133642 -0.009609 -0.849406 -0.432244 0.734440 0.556194 -0.047111 0.933261 0.685682 0.879891 -0.780775 0.449499 0.634759 -0.292325 0.279782 -0.076889 -1.358034 0.556618 0.171572 0.233052 1.038297 -0.246977 -0.406338 0.394690 -0.245957 0.472030 -0.896451 0.283900 -0.842880 -0.055175 -1.074375 0.177123 -0.224925 -0.404891 -0.428791 -0.365611 1.425221 -1.165041 -0.789639 1.486478 -0.182636 0.781719 -1.345510 0.821549 -0.653160 1.065657 -0.269022 -0.167296 0.093829 -0.334388 -0.696762 0.076085 0.649230 -0.286495 0.094159 1.337561 0.349729 -0.067069 0.057015 0.957828 -0.181544 0.899515 -0.591454 1.322393 -0.035063 -0.303958 0.112707 -0.522819 -0.098081 -0.685633 0.188923 1.257586 0.803273 0.680714 0.675448 0.534635 0.958886 -0.721834 0.845119 -0.087229 0.306974 -0.589664 -0.154175 0.319377 0.629598 -0.426020 0.577924 -1.289064 -1.739284 -1.497011 -1.049692 -0.162263 -0.314242 0.451684 -0.339552 -0.276390 -0.835028 -1.010822 0.911723 -0.561052 1.108253 0.623991 0.547870 0.865033 1.290426 -0.694377 0.030797 0.031864 0.231271 0.000000 -0.124190 -0.964995 1.078496 -0.549953 0.250834 1.436256 -0.410744 0.547779 -0.165439 1.029155 -0.695555 1.511984 0.482409 -0.580674 1.020202 0.779700 0.984577 0.512948 -0.785478 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::end() = 0.295726 -0.622543 1.810173 1.521337 -0.253843 0.482606 -0.038832 -1.327462 1.338487 0.663037 -0.192555 0.283166 -0.689816 0.567558 -0.462814 1.185311 -1.320204 -0.645736 -0.483245 -1.059625 -0.812173 -0.707763 0.309178 -0.072619 0.650915 0.376491 -0.735644 0.148127 -0.501900 -1.393332 0.572056 -0.308854 0.380276 -0.216328 0.369784 -2.143096 1.419259 0.806587 -0.505446 -1.115076 0.190093 -0.533395 -0.050498 -0.257847 -0.063629 0.294685 -0.189159 0.741880 0.844860 0.532176 0.533594 0.522610 0.522284 2.259556 -0.727697 0.919475 0.456667 0.052833 -0.184246 0.503327 0.353889 0.452015 0.408105 0.546479 0.132559 -1.046556 -0.328266 -0.339412 -0.731677 1.086446 -0.162444 -0.697033 -1.038739 -0.618393 -0.746892 -0.326799 -2.605801 1.099368 1.583218 -1.213506 0.631898 0.353540 0.421785 0.185815 0.678390 -0.146214 1.449543 0.438827 -0.441398 0.155699 0.007607 -0.449970 0.513632 -0.573642 -0.733318 -1.965155 0.618383 -1.338494 -1.273392 0.693631 0.669089 -0.138148 -0.576398 -0.442568 0.617010 0.157183 -0.671742 -1.060543 -0.190131 0.411297 0.221877 -0.429632 0.114396 -0.459184 0.016270 0.113817 -1.436561 0.019736 0.182093 -0.362110 -0.369816 1.033823 0.109219 -0.211799 -0.184403 0.293279 -0.378559 1.190652 -0.263474 1.117813 -0.318299 0.874545 -1.108619 0.969650 0.648401 -0.354345 -0.066544 0.332561 -0.425913 0.408322 -0.947582 0.550117 -0.624878 0.606370 0.906197 -0.228291 -0.969708 -0.414349 -0.397391 -1.310127 0.451770 -0.816601 -0.801420 0.069214 0.956483 1.047108 0.829962 0.589350 -1.058010 0.229473 -0.339457 0.295403 0.909466 0.017571 0.629579 -0.559296 -0.786837 0.543738 0.462117 0.159014 0.322090 -0.369508 0.120559 -0.791767 0.018782 0.607320 0.584223 -0.334194 0.945403 0.750762 1.448922 -0.934713 0.375464 0.696160 -0.348465 0.219006 -0.137192 -1.224670 0.492663 0.317539 0.580363 0.962653 -0.186728 -0.167678 0.218498 -0.272328 0.449091 -0.587933 -0.036372 -0.722080 -0.456412 -0.629339 0.655695 -0.497980 -0.213758 -0.318050 -0.438294 1.278548 -1.391847 -0.461737 1.722514 -0.673954 0.376925 -0.872416 1.380149 -0.628302 0.580932 -0.351517 -0.075681 -0.115043 0.180262 -0.778022 0.374079 0.602113 -0.328044 0.166371 1.353098 0.375544 0.241769 0.004040 1.040606 -0.543326 0.711504 -0.563260 1.425582 -0.229422 -0.180215 -0.134744 -0.460515 -0.117468 -0.644474 0.358307 0.974938 0.453984 0.367329 0.371634 0.521240 0.869718 -0.716023 1.077968 -0.160291 0.084295 -0.755679 -0.132123 0.410727 0.130324 -0.491731 0.421591 -1.315140 -0.993739 -1.726262 -0.347031 -0.190611 -0.080490 0.260857 -0.396476 -0.288668 -0.791271 -1.009740 1.459903 -0.521212 -0.338866 0.623219 0.485171 0.805887 1.351733 -0.274525 0.091673 -0.437459 -0.253412 0.033200 -0.369041 -0.686830 1.233396 -0.611063 0.232948 1.175542 -0.323287 0.465524 0.249184 0.684893 -0.651113 1.136741 0.445405 -0.240708 0.722960 1.386154 1.425592 0.151028 -0.734066 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator--() = -0.035548 -1.274677 3.050369 2.915196 -0.525412 1.058008 -0.569491 -2.269268 1.769536 1.435329 -0.186136 0.894969 -0.994342 0.755440 0.512344 2.053061 -2.272398 -0.903573 -0.889516 -1.549702 -1.271399 -1.139392 0.313506 0.495562 0.887727 1.118589 -1.533660 0.676179 -0.349056 -3.395115 0.691138 -0.339482 1.310736 0.364485 0.761864 -4.916139 2.652781 1.708648 -0.651331 -2.171376 0.222648 -0.460872 -0.333888 -0.127607 -1.177460 0.920839 -0.395259 0.032898 1.037610 0.948602 0.723903 0.861738 1.457592 3.096681 -0.387057 1.664610 1.028356 -0.405479 -0.420908 0.244149 0.705992 0.893072 1.227477 1.025593 0.187004 -1.781228 -0.316657 -0.271787 -1.950467 1.766867 -0.217638 -1.593520 -1.362190 -1.351574 -1.013833 -0.509329 -1.421833 1.758549 2.663432 -1.580983 1.282615 0.504311 0.246986 0.153920 1.325019 -0.378871 2.602741 0.949591 -0.663485 0.481863 0.746315 -1.754862 1.081036 0.247413 -1.468877 -1.975424 0.853290 -2.133627 -2.017898 1.425609 1.078528 -0.325257 -2.424845 -1.603879 1.357975 0.559144 -0.727348 -1.686462 -0.747441 0.933572 0.097049 -1.137836 -0.795811 -0.117302 -0.323990 0.781039 -2.401997 0.007226 0.675376 -0.604563 -0.562279 1.579741 0.049759 -0.221788 -0.612327 0.556801 -0.762279 1.871548 -0.549379 1.932205 -0.110489 1.042862 -0.843929 0.679031 0.732647 -0.748502 -0.144746 -0.770534 -0.694402 0.769034 -1.313120 1.403507 -0.788560 1.320324 2.801621 0.525346 -1.678321 -0.905978 -1.090012 -2.897156 0.564580 -1.619527 -0.807626 1.424947 1.668902 0.724380 1.204613 1.099881 -1.894520 0.717610 -0.605143 0.321097 1.436683 0.060195 0.789219 -0.966515 -1.494958 1.385347 0.899408 0.660047 0.737312 -0.714345 0.142773 -0.757703 -1.102422 1.678484 0.776614 0.184144 1.245311 1.181120 4.417266 -0.876890 0.517715 0.869022 -0.500201 0.436054 -0.362061 -2.017564 0.347336 0.413167 0.775421 2.427059 -0.494879 -0.702808 0.219377 -0.093189 0.499434 -1.172829 0.960673 -1.365073 0.490012 -1.045760 -0.391688 -0.858550 -0.418910 -0.834196 -0.384813 2.487165 -2.328281 -1.731751 3.035155 -1.463789 0.965537 -2.384670 1.960095 -1.015648 1.330510 -1.104133 -0.656235 -0.138349 -0.636788 -1.231822 0.825098 1.099657 -0.525276 -0.166338 2.410343 0.464467 0.003731 -0.252658 1.275696 -0.389283 1.314085 -1.123367 2.671531 -0.278434 0.451006 -0.720837 -0.814940 0.024426 -1.162079 0.046843 0.644748 0.882200 0.298521 0.183676 1.099349 1.155149 -1.341757 2.032297 0.115029 0.277503 -1.103629 -0.308716 0.574240 0.973484 -0.585001 0.904982 -2.100507 -1.410922 -3.122631 -1.228998 -1.093255 1.152835 0.997488 -0.492739 -0.581468 -0.992868 -1.619942 3.123474 -0.705570 0.940468 1.103755 1.074047 1.503103 2.118506 -0.189329 -0.173826 -1.219444 -0.740707 -0.221636 -0.470635 -1.123104 2.089829 -0.519425 0.632189 1.836964 -0.371510 1.061204 -0.027637 1.229926 -1.025435 2.103319 0.770217 -0.462265 1.084755 1.465160 1.606159 -0.510293 -1.337573 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.180866 -0.285402 0.652897 0.593353 -0.028429 0.182790 -0.047684 -0.425778 0.435811 0.361553 0.014434 0.154957 -0.293826 0.201712 0.025709 0.470486 -0.386291 -0.266066 -0.204488 -0.369844 -0.303980 -0.260147 0.134089 -0.013222 0.206987 0.095538 -0.366304 0.072483 -0.218571 -0.696406 0.151578 -0.117801 0.282258 -0.080635 0.068756 -1.038701 0.514610 0.369771 -0.188426 -0.424825 0.101918 -0.156821 0.071414 -0.026110 -0.188699 0.167859 -0.065103 -0.196757 0.298577 0.204575 0.343301 0.177264 0.225554 0.737440 -0.241575 0.330891 0.163384 -0.077523 -0.157785 0.048234 0.140114 0.165020 0.267372 0.213671 -0.008598 -0.400474 -0.116177 -0.103836 -0.461399 0.361954 -0.151245 -0.279984 -0.300069 -0.288580 -0.225952 -0.199148 -0.407801 0.265497 0.595722 -0.360306 0.286120 0.094231 0.071241 0.091587 0.259297 -0.017465 0.469242 0.158405 -0.147584 0.127792 0.295825 -0.133389 0.162958 0.257453 -0.255214 -0.337505 0.268678 -0.287594 -0.439834 0.313882 0.221206 0.023153 -0.595181 -0.263382 0.179236 0.184538 -0.251194 -0.424132 -0.208768 0.155706 0.171179 -0.200809 -0.101849 -0.206411 -0.123819 0.037175 -0.517090 -0.019575 0.056553 -0.198221 -0.249925 0.373659 -0.068717 -0.046552 -0.075136 0.186430 -0.218205 0.486344 -0.093868 0.457356 -0.158548 0.193551 -0.511718 -0.035792 0.194008 0.019427 -0.065580 -0.101082 -0.248664 0.063768 -0.315510 0.228470 -0.110400 0.265612 0.713743 0.015540 -0.348165 -0.142103 -0.163379 -0.691570 0.108767 -0.365846 -0.060501 0.243899 0.349077 0.216172 0.311509 0.520295 -0.363052 0.166700 -0.142570 -0.119223 0.370870 -0.004285 0.234111 -0.206087 -0.338557 0.247700 0.229373 0.129405 0.206085 -0.139868 0.023845 -0.243172 -0.106329 0.323456 0.178181 -0.044745 0.264024 0.247972 0.911681 -0.277796 0.135122 0.233408 -0.075758 0.104023 -0.082667 -0.433068 0.073868 0.117597 -0.020019 0.396975 -0.077748 -0.191946 0.088736 -0.141961 0.180626 -0.292314 0.201450 -0.271453 0.101057 -0.286838 -0.097151 -0.199203 -0.090414 -0.095427 -0.081026 0.520178 -0.418331 -0.307250 0.558523 -0.102566 0.151234 -0.502706 0.514793 -0.232982 0.393646 -0.319710 -0.077728 -0.052644 0.094493 -0.195683 0.156033 0.232545 -0.119250 -0.023860 0.598365 0.143289 0.019909 -0.063968 0.373858 -0.043904 0.307424 -0.169953 0.578076 -0.051634 0.016054 -0.028127 -0.178693 -0.022015 -0.213304 0.023364 0.190575 0.268307 0.001842 0.077247 0.241778 0.343222 -0.258051 0.405548 0.038316 0.201878 -0.228229 -0.032212 0.127459 0.287746 -0.155920 0.129652 -0.435287 -0.337790 -0.490481 -0.296342 -0.142709 0.329431 0.080163 -0.103369 -0.093647 -0.219241 -0.321709 0.669092 -0.201213 0.350595 0.142455 0.202637 0.335526 0.493523 -0.113613 -0.094771 -0.234634 -0.171779 0.005179 -0.072164 -0.225039 0.425726 -0.216887 0.051241 0.334151 -0.127910 0.185073 0.187039 0.215986 -0.235568 0.538457 0.160003 -0.010554 0.429484 0.364522 0.544982 -0.079014 -0.249021 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.258482 -1.033440 2.606699 2.396413 -0.214751 0.766752 -0.052412 -1.875649 1.666954 1.418339 0.220529 0.700035 -0.930495 0.851096 0.174740 1.886851 -1.731970 -0.898589 -0.836474 -1.590103 -1.321000 -0.932405 0.450929 0.009371 0.832929 0.173654 -1.466862 0.015998 -0.583474 -2.553095 0.824407 -0.370783 1.113344 -0.555198 0.299726 -4.985046 2.111307 1.272542 -0.734423 -1.674442 0.354748 -0.532428 0.016993 -0.103145 -0.915625 0.404850 -0.380428 -0.157667 1.140033 0.800695 1.047470 1.045524 0.967005 3.675080 -0.930727 1.338542 0.693529 -0.292263 -0.625508 0.434252 0.582007 0.747060 1.077256 0.789444 0.242582 -1.617846 -0.306051 -0.388660 -1.761208 1.498999 -0.066230 -1.236504 -1.127014 -0.897784 -0.900789 -0.730035 -1.498210 1.359450 2.296989 -1.534795 1.054628 0.304766 0.259678 0.369465 1.080396 -0.164189 2.123929 0.646488 -0.529932 0.258987 0.601551 -0.775509 0.763628 0.426135 -1.043860 -2.269676 0.894463 -1.031271 -1.742871 1.291944 0.980838 -0.060135 -2.349265 -1.526328 1.026411 0.555511 -0.990146 -1.636085 -1.138560 0.742727 0.288830 -0.912509 -0.284552 -0.835117 -0.268359 0.138675 -2.020442 -0.006466 0.384042 -0.549561 -1.123415 1.471437 -0.264592 -0.273439 -0.370348 0.728241 -0.865870 1.533783 -0.517236 1.754304 -0.157270 0.847893 -1.680809 0.114393 0.752090 0.125891 0.056219 -0.544453 -1.050239 0.592717 -1.257693 1.204712 -0.252373 1.243928 2.492309 0.265404 -1.418194 -0.626789 -0.176295 -2.400788 0.504189 -1.421257 -0.531221 0.913954 1.401073 0.785746 1.155177 1.174340 -1.463697 1.052596 -0.564781 0.018530 1.444042 -0.140506 0.815752 -0.807278 -1.351590 0.798688 0.852824 0.614960 0.501579 -0.554962 0.105492 -0.804754 -0.800138 0.772156 0.740311 -0.256783 0.943750 1.034760 4.175432 -1.531949 0.538294 0.876422 -0.546529 0.436946 -0.399541 -1.722525 0.166339 0.517368 -0.071198 1.926921 -0.391115 -0.995578 0.324603 -0.274679 0.527144 -0.856780 0.634894 -1.080431 0.016006 -0.949768 -0.402913 -0.862894 -0.260882 -0.670809 -0.454942 2.108877 -2.070665 -1.459268 2.561327 -1.070490 0.456662 -2.284103 2.539485 -0.828121 0.841736 -1.321896 -0.484718 -0.306160 0.550001 -1.191433 0.969267 0.923292 -0.712968 0.024483 2.678678 0.479790 0.342142 -0.364309 1.405053 -0.219127 1.094280 -0.906234 2.533887 -0.399510 -0.009095 -0.515941 -0.684508 0.085419 -0.956122 0.339798 0.617344 0.832699 0.138225 0.177005 1.223898 1.231221 -1.052678 1.766349 0.025212 0.435435 -0.864030 -0.038201 0.548170 0.750487 -0.636250 0.806800 -1.778411 -1.150271 -2.246763 -1.051908 -0.463197 1.319390 0.427797 -0.548063 -0.487119 -1.257151 -1.270354 2.242737 -0.756088 0.522872 1.005974 0.866583 1.311281 1.985188 -0.372088 -0.134501 -0.953155 -0.754703 -0.017562 -0.618470 -0.873475 1.740929 -0.746334 0.513298 1.402392 -0.218559 0.850567 0.369348 1.038575 -0.843312 2.061792 0.618914 -0.112907 1.220524 1.599675 2.023449 -0.390039 -1.007958 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::pop_back() = 2.384445 -2.519814 8.273977 7.182090 -1.349488 2.266722 -0.718874 -6.683756 4.948144 3.202254 -1.027248 1.506786 -2.501730 2.379813 -2.502092 5.337296 -5.744583 -2.141235 -3.077862 -4.684972 -3.087303 -2.691552 1.848787 0.208730 3.185326 2.430684 -3.450842 1.110050 -1.424085 -8.240318 2.021951 -0.446870 1.875877 -0.970678 1.430538 -8.187854 6.882982 4.748436 -2.049782 -4.944420 1.206542 -0.911365 -2.407235 -0.038230 -1.338883 1.590901 -1.964653 2.906876 2.840648 2.816977 2.362163 3.217734 3.780416 8.626472 -1.872706 4.340943 2.337586 0.668616 -0.241134 2.198751 1.602472 3.147082 1.273506 2.231502 2.071266 -4.691035 -1.123093 -0.428614 -3.111092 5.077015 -1.208211 -4.248670 -3.740165 -2.975061 -3.001433 -0.085175 -8.331778 4.697806 6.351347 -4.415864 2.181534 1.214551 0.054522 -0.247447 1.869951 -1.234658 5.582360 2.471705 -0.456032 -0.035547 0.938344 -2.819549 2.872822 -2.235493 -4.604879 -8.436017 3.516119 -6.919661 -5.238124 2.612924 3.601756 -2.231675 -1.964963 -2.399028 2.124255 0.195468 -1.798441 -3.640293 -0.543603 2.516674 1.268211 -2.258859 -0.649492 -0.403888 0.388755 2.620717 -6.106974 0.754098 0.772458 -0.964243 -0.997143 3.504169 1.652995 -1.256103 -1.185562 1.524247 -1.465210 3.969936 -1.694335 5.475037 -0.948290 5.331896 -1.556369 4.370657 2.935251 -3.832342 -0.473840 0.930275 -1.690569 2.269494 -3.499360 3.615825 -3.907417 1.910803 4.186696 -0.326199 -4.199890 -1.669799 -2.713129 -5.764480 1.237105 -3.528257 -4.657921 0.838879 3.984748 3.335826 3.154487 1.923823 -4.894456 0.233350 -0.552368 1.289726 3.087296 -1.046534 1.758693 -2.124293 -4.252441 2.874633 1.716626 1.133567 0.893035 -0.665277 0.123565 -2.747033 -0.527143 3.576418 1.948556 -1.301756 3.660786 3.721929 7.018921 -2.307228 1.474190 2.932305 -2.292125 0.903764 -0.718801 -5.766390 1.254699 1.141172 4.138968 5.683222 -0.811772 0.165998 1.353325 -1.208386 1.275081 -2.650181 1.064047 -3.410081 -1.074890 -2.666567 1.770618 -1.188146 -0.433538 -1.484120 -1.961067 5.484085 -6.861585 -2.577923 8.149579 -3.048874 0.730013 -3.849393 4.809365 -2.155540 2.108788 -0.276687 -0.324387 -0.055503 -1.183927 -4.317775 1.304478 2.331526 -1.398094 0.879846 6.037747 1.050740 -0.163043 -0.775443 3.903332 -3.170191 3.774499 -3.577971 6.440646 -0.612941 -1.179174 -1.730595 -1.864095 -1.317472 -4.347931 1.143692 3.317500 1.073697 1.691140 0.817172 1.602385 4.294153 -3.067720 6.024553 -0.024345 -0.820529 -3.081746 -0.788691 2.598715 0.629945 -2.274878 2.768044 -5.532990 -3.863420 -8.820337 -2.482630 -0.963835 -1.474215 2.755864 -2.428633 -2.200587 -2.715107 -5.615416 7.514394 -1.852429 -1.280416 3.701192 2.462546 2.985493 5.461047 -0.718502 2.361658 -2.923679 -0.490547 0.373747 -2.657981 -2.031038 5.495071 -0.897192 0.562870 5.473355 -0.948105 3.368264 -0.184142 1.856039 -2.873029 4.507891 1.615292 -0.867426 2.619631 4.567166 4.658584 0.176384 -3.210648 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_pop_back_aux() = 2.714754 -2.439526 8.397871 7.383415 -1.877346 2.334798 -1.508295 -6.933384 4.973920 2.862339 -0.673309 2.074613 -1.940356 2.947673 -2.693425 5.690394 -6.215817 -1.842563 -3.332243 -5.097826 -4.136597 -2.315526 0.959831 0.283660 2.985220 2.623394 -3.867454 1.593241 -0.987242 -7.981134 1.545166 -0.443663 1.491120 -1.753929 2.262709 -9.348311 6.917186 4.439911 -2.103632 -4.959557 0.793817 -1.372411 -1.796408 -0.601796 -1.607024 1.232001 -2.100204 2.973896 3.062543 2.605267 2.033749 4.098252 3.769991 10.125634 -1.781602 4.418883 2.611070 0.645102 -0.419638 2.065224 1.746958 3.089975 1.116233 1.574005 2.127912 -5.085493 -1.620538 -0.481815 -2.164432 5.024268 -0.824682 -4.725655 -4.153399 -3.573094 -3.721001 -0.796491 -10.777291 5.174444 6.249896 -5.456335 1.636710 1.210042 0.460840 0.909990 2.973608 -1.222289 6.696511 2.548209 -0.662096 0.999798 1.801797 -2.569857 3.265428 -3.072769 -4.887457 -10.333045 3.224560 -7.822379 -5.564393 3.374237 3.791238 -1.836581 -1.846409 -3.457344 2.462723 -0.151569 -2.447408 -3.724503 -0.448225 2.606408 1.743502 -2.458830 -0.029228 -0.936313 1.137937 2.643485 -6.524650 1.222466 1.328038 -0.429648 -1.006975 4.116969 2.234118 -1.546882 -1.511364 1.265758 -1.684435 4.741822 -1.982192 5.529663 -2.516023 5.981173 -2.107133 5.241634 2.768230 -4.835498 -0.553138 1.036081 -1.744062 2.480270 -3.756449 3.895855 -4.094268 2.493722 3.872660 0.253566 -4.620911 -2.059483 -3.167372 -5.712782 1.307794 -3.345080 -5.470249 0.856179 4.047258 4.166364 3.202303 0.460428 -4.289620 0.024403 -0.843856 1.759098 3.739418 -1.185332 1.929532 -2.336790 -4.088006 3.200937 1.552985 1.299223 1.184343 -0.894300 0.508236 -2.334878 0.042473 3.511031 2.689861 -1.206187 4.265567 3.856645 7.547317 -2.543821 1.432856 2.600460 -2.599093 1.150546 -1.188616 -5.274383 1.064592 1.522289 3.919676 5.757060 -1.071165 0.320351 1.214643 -0.853526 1.769566 -2.330491 0.492127 -3.219798 -1.684182 -2.477111 2.427736 -1.581987 0.151517 -1.990146 -3.039504 5.800759 -8.714224 -2.002267 8.710591 -3.371202 1.248472 -3.366108 5.150388 -2.135559 2.445717 -0.420201 -0.419773 0.043582 -0.990211 -4.677953 2.321560 2.735603 -1.704122 -0.242297 5.837399 1.010280 0.447271 -0.826613 4.029679 -3.364145 3.916049 -3.477605 7.122364 -0.862016 -0.779855 -1.783420 -1.836136 -1.537857 -4.188185 1.805964 3.194690 0.483221 2.261515 0.238963 2.120225 4.042171 -3.363925 5.838503 -0.675489 -1.521124 -3.736524 -0.781964 2.526082 0.688471 -1.941050 1.971441 -5.647151 -3.216947 -10.496686 -1.046560 -0.854419 -0.759028 1.979919 -2.608921 -2.708252 -2.458898 -5.711710 8.646418 -2.117269 -2.753494 3.812377 2.465838 3.400543 5.793230 -0.339988 2.178991 -3.065692 -1.376892 0.874065 -2.086107 -2.587365 5.920473 -1.144024 0.627381 5.678334 -0.942417 3.654083 1.078589 1.778776 -2.572828 4.293497 1.466918 -1.213675 2.093006 6.274577 4.719362 0.056605 -3.417327 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.464055 -1.384514 2.166387 1.796279 0.243520 0.973749 0.507930 -1.314342 1.870140 1.138905 -0.333301 0.571067 -1.344019 0.416031 -0.480974 1.106427 -1.210639 -1.455861 -0.143312 -1.013889 -0.825635 -1.359254 0.150065 0.284576 0.639132 -0.019333 -0.993588 -0.125299 -1.788886 -1.566372 0.930538 -0.473472 0.798925 -0.414930 0.256352 -3.388380 1.552978 1.325297 -0.493520 -1.926510 0.198114 -0.976174 0.083721 -0.131203 0.145349 0.436987 0.193765 0.720212 0.859134 0.489474 0.724841 0.286095 0.085070 3.092566 -1.042008 1.490219 0.874456 0.134356 -0.281791 0.682638 0.538957 0.244258 1.093221 1.155341 -0.551916 -0.915129 -0.126323 -0.419291 -1.577986 1.257197 0.148707 -0.636092 -1.132939 -0.467423 -1.029673 -0.568167 -1.638018 1.029339 2.514282 -1.260803 1.692942 0.650847 1.289441 0.069499 1.212120 -0.242991 1.963384 0.519053 -1.180721 -0.206834 -1.202719 -0.344458 0.056749 0.184914 -0.757620 -1.530244 0.781634 -1.243155 -1.934975 0.921771 0.321081 0.077834 -1.595999 -0.151342 1.211267 0.633114 -0.984090 -1.883567 -1.047251 0.732828 -0.380627 -0.762469 0.278211 -0.883015 -0.334610 -0.527221 -1.712344 -0.508998 0.635820 -1.101930 -1.020702 1.624402 -0.730213 0.379346 -0.166778 0.323886 -0.371208 1.161000 0.123906 1.045590 0.253918 0.008146 -2.412745 0.420686 0.538592 0.916155 -0.268992 0.210976 -0.294221 0.530414 -0.817959 0.540065 -0.669946 0.969033 1.470405 -0.439818 -1.131083 -0.883791 0.369490 -1.688503 0.621058 -1.241964 -0.517608 -0.095180 1.436284 1.099746 0.882125 1.771872 -1.524863 1.196096 -0.370870 0.309421 0.961662 -0.007434 0.865090 -0.877376 -1.346977 0.632961 1.076782 0.173931 0.426778 -0.759721 -0.004619 -1.156623 -0.804914 0.475169 0.618071 -0.226914 1.404945 0.814696 2.246655 -2.243354 0.545449 0.608932 -0.280244 0.401124 -0.312297 -1.965249 0.780673 0.428418 0.370891 1.577118 -0.228292 -1.034747 0.412418 -0.201243 0.571617 -1.074375 0.481671 -1.317559 -0.568658 -0.921086 0.342715 -0.863404 -0.610872 -0.667632 -0.302021 1.914919 -0.978217 -1.590963 1.850946 -0.661818 0.678132 -2.261479 1.626508 -0.953599 0.872954 -0.819167 -0.041052 -0.355783 0.938416 -0.539356 0.388388 0.934350 -0.838957 0.937906 2.096706 0.434340 0.558040 0.371186 1.245558 -0.221907 0.170966 -0.825585 1.670075 -0.242936 -0.513155 -0.052205 -0.821372 0.699214 -0.308678 0.176333 1.080307 1.383530 -0.038594 0.673326 1.204582 0.699329 -0.952993 1.049292 -0.073348 0.871789 -0.757475 -0.062499 -0.168524 0.146567 -0.541555 0.769702 -1.899128 -1.729131 -1.225025 -1.634102 -0.201165 0.207234 0.243272 -0.033826 0.061787 -1.893828 -0.999255 1.155913 -0.714659 1.044821 0.806426 0.926004 1.291671 1.723008 -0.744932 -0.340134 -0.239275 -0.313535 -0.694248 -0.691690 -0.750180 1.216661 -1.038070 0.986985 1.247443 -0.266443 0.354182 0.061760 1.193228 -0.964496 2.167936 1.069205 -0.566465 0.945828 1.189274 2.648574 -0.229090 -1.085004 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::deque() = -0.266089 -0.409759 0.768164 0.503588 -0.039957 0.269698 0.211296 -0.591278 0.818416 0.152198 -0.085703 -0.070981 -0.634515 0.170870 -0.340911 0.326032 -0.471961 -0.558811 -0.142840 -0.509122 -0.334610 -0.596477 0.300633 0.020851 0.192451 0.060396 -0.241864 0.023315 -0.541642 -0.508647 0.556962 -0.210871 0.239850 0.017991 0.041207 -1.078586 0.569514 0.314778 -0.263865 -0.547624 0.111532 -0.288301 0.048236 -0.044043 0.015272 0.129067 0.029632 0.343524 0.433597 0.200417 0.414571 -0.038359 -0.090877 1.008798 -0.557530 0.481867 0.219211 0.123182 -0.132111 0.327650 0.072480 0.130529 0.275537 0.529400 -0.244672 -0.254489 0.034662 -0.295614 -0.716893 0.588059 -0.177524 -0.185922 -0.447337 -0.249364 -0.387211 -0.212583 -0.771490 0.350249 1.011031 -0.553163 0.535293 0.210558 0.401805 -0.066857 0.277514 -0.092136 0.632232 0.130452 -0.453697 -0.021138 -0.333185 0.003461 -0.072809 -0.018915 -0.158742 -0.584717 0.384809 -0.591127 -0.692575 0.271293 0.120174 0.102726 -0.531986 0.061425 0.360127 0.144290 -0.469718 -0.769312 -0.284456 0.238921 0.013916 -0.048105 0.146588 -0.179673 -0.149040 -0.284152 -0.698627 -0.269005 0.051330 -0.531948 -0.294551 0.568178 -0.315993 0.167928 0.133775 0.210596 -0.165051 0.648238 0.086449 0.343725 0.018644 0.070891 -0.769274 0.125793 0.193969 0.429521 -0.033694 0.155954 -0.114238 0.065861 -0.464042 0.011815 -0.283518 0.064849 0.496818 -0.268651 -0.452565 -0.074160 -0.003833 -0.903583 0.270190 -0.603860 -0.203596 0.033922 0.421008 0.592912 0.358957 0.897046 -0.562439 0.340338 -0.188222 -0.053640 0.282943 0.077585 0.444770 -0.277779 -0.541356 0.156715 0.211280 -0.008612 0.240078 -0.421725 -0.092467 -0.653627 -0.223421 0.188836 0.253637 -0.167911 0.374258 0.294057 0.450016 -0.737368 0.242062 0.352961 -0.027822 0.146827 -0.042915 -0.750455 0.342526 0.119666 0.107148 0.343557 -0.054928 -0.228028 0.195541 -0.218719 0.311704 -0.466996 -0.006496 -0.474395 -0.190075 -0.536893 0.269648 -0.261350 -0.230781 -0.031491 -0.102272 0.590902 -0.357865 -0.405980 0.783481 -0.022326 0.410496 -0.657564 0.515809 -0.301076 0.570390 -0.253313 0.096394 -0.165408 0.211341 0.025136 0.033132 0.198428 -0.119461 0.345313 0.800599 0.141968 0.234141 0.252366 0.643588 -0.141914 0.128442 -0.249838 0.587085 -0.088395 -0.373318 0.222179 -0.293305 0.118213 -0.242036 0.152529 0.622567 0.637294 -0.042834 0.448032 0.328850 0.338557 -0.264432 0.348402 0.027020 0.335200 -0.336056 0.016440 0.076461 0.146206 -0.362156 0.221447 -0.645590 -0.893140 -0.540197 -0.644818 -0.134913 -0.185338 0.088456 -0.073731 0.070651 -0.494463 -0.315599 0.477357 -0.315458 0.506730 0.242225 0.395221 0.507107 0.893809 -0.375717 -0.135971 0.103278 0.030169 -0.291258 -0.116449 -0.375146 0.369903 -0.381224 0.217869 0.455864 -0.078081 0.060943 0.017567 0.436794 -0.417703 0.755497 0.376655 -0.055046 0.668508 0.377183 0.906188 0.359238 -0.289770 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_base() = -0.472125 -2.015723 4.685392 3.113948 -1.163437 1.390577 0.774940 -3.484797 3.158980 1.109406 -0.421878 0.171319 -2.399970 0.664092 -0.748083 1.975619 -2.994611 -1.840481 -1.081044 -2.885664 -1.725472 -2.279375 1.192240 0.641453 1.215661 1.059035 -1.181042 -0.029420 -0.973603 -3.941710 2.419187 -0.466475 1.507542 0.246012 0.788186 -7.065751 3.277264 1.870177 -1.319012 -3.062302 0.727607 0.048130 -0.920220 0.690736 -1.152539 0.779970 -0.288083 2.263687 1.315848 1.636687 1.391186 0.404534 1.233897 5.665793 -1.276168 2.526303 1.906874 0.366376 -0.411160 1.516363 0.599046 0.883274 1.019114 2.020362 0.243060 -1.600786 0.320760 -1.061788 -3.373182 2.761599 -0.207367 -2.273272 -1.740298 -2.001305 -1.437465 -0.656598 -3.463568 2.350544 4.686759 -2.830776 2.407979 1.086452 1.008825 -0.442891 1.022722 -0.682625 2.963401 1.092815 -1.320209 0.151678 -0.726730 -1.551033 0.573485 -0.725580 -1.763436 -4.579107 2.280669 -2.923773 -3.236555 1.993625 1.385067 -0.585809 -2.487627 -1.224489 1.697921 0.560636 -2.136288 -3.111586 -1.875549 1.672325 -0.188920 -0.450152 -0.108106 0.470782 -0.397863 0.056579 -3.550224 -0.269629 0.887048 -1.799357 -0.978915 2.363668 -0.490313 0.803666 0.364314 1.214606 -1.026475 2.827836 0.566291 2.013033 0.343760 1.321872 -1.482875 1.248155 1.083766 0.516039 0.363232 -0.477031 -0.409468 1.063072 -1.598429 1.581174 -1.425306 0.731488 3.070900 -0.177543 -2.481991 -0.880854 -0.792728 -4.476688 1.247586 -2.977672 -1.673653 1.245856 1.822909 2.091372 1.210059 2.447140 -3.089313 1.655107 -0.995574 0.264897 0.604102 0.234548 1.661870 -1.292353 -2.771800 0.704566 1.084732 0.675170 0.966348 -1.952951 -0.245077 -2.383910 -1.772633 1.183279 1.333902 -0.969374 1.366486 2.156028 4.851059 -2.251856 0.292557 1.343903 -1.043671 0.392623 -0.166489 -3.809882 0.820489 0.595353 1.063726 3.128645 -0.421540 -0.584669 1.349794 -0.964192 0.638146 -1.730073 0.713166 -2.460658 -0.641691 -2.178879 0.815784 -1.570625 -0.600523 -0.821419 -0.753411 3.321978 -3.288284 -2.269831 4.471844 -1.221049 1.462986 -3.420003 3.631847 -0.912568 2.032525 -1.064165 -0.294750 -0.817645 -0.235913 -0.700789 0.509576 0.695182 -0.469641 1.025975 4.521732 0.316183 0.441198 0.711762 2.936160 -1.426290 1.056083 -2.094038 3.523393 -0.882158 -1.396316 -0.107446 -1.016990 0.175113 -2.046406 0.754400 2.044480 1.767394 -0.124349 1.202943 1.501979 1.474559 -1.438606 2.721577 0.433260 1.060429 -1.772124 -0.059569 0.712838 1.090755 -1.683865 1.517215 -3.376261 -3.385285 -4.363139 -2.937284 -1.492569 -0.296007 1.478651 -0.873936 -0.530719 -2.079927 -2.263684 3.550858 -1.276819 0.917815 2.283141 2.185933 2.832433 4.373851 -0.921968 0.204849 -0.251829 0.032712 -1.194155 -1.053394 -1.382381 1.952824 -1.012615 0.973232 2.662517 0.310610 1.295899 -0.848013 2.219614 -2.256433 3.458788 1.600546 -0.581727 2.259605 2.203079 3.222585 0.740672 -1.477981 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.078883 -0.690940 1.384196 1.155033 0.164837 0.582740 0.247283 -1.148698 1.438094 0.709342 -0.085908 0.159324 -0.866326 0.463878 -0.762234 0.845856 -0.795896 -0.896068 -0.363101 -0.926103 -0.698844 -0.923485 0.289364 -0.071102 0.449946 -0.272257 -0.693969 0.031137 -1.154038 -0.969437 0.669652 -0.297340 0.296169 -0.697769 0.100702 -1.804595 1.138277 0.804098 -0.425315 -1.030264 0.133714 -0.750514 0.050550 -0.147112 0.184219 0.109515 -0.159708 0.495415 0.825240 0.297085 0.784491 0.458047 -0.027283 2.252951 -1.034899 0.969975 0.311513 0.263579 -0.201114 0.704028 0.267989 0.415822 0.530171 0.718021 -0.208029 -0.703609 -0.147466 -0.234174 -0.854043 1.035861 -0.185663 -0.499547 -0.857488 -0.286429 -0.852952 -0.382285 -1.817978 0.702601 1.581285 -0.984062 0.794291 0.329787 0.686583 0.132020 0.765048 -0.198450 1.419421 0.277117 -0.673575 -0.125642 -0.554722 0.133581 0.106075 -0.203314 -0.530078 -1.427157 0.584849 -1.086397 -1.306163 0.529084 0.342101 0.055921 -0.791332 -0.085858 0.668192 0.146959 -0.709967 -1.276646 -0.472112 0.537131 0.074825 -0.414654 0.393723 -0.844851 -0.013737 -0.326171 -1.179538 -0.318364 0.177761 -0.621192 -0.776331 1.116244 -0.348568 -0.031324 -0.049153 0.266280 -0.271423 0.826657 -0.228381 0.900805 -0.174230 0.419092 -1.754351 0.515480 0.440064 0.228549 -0.089757 0.592131 -0.353161 0.297479 -0.848019 0.399909 -0.620845 0.444007 0.633240 -0.408239 -0.744608 -0.298937 0.202248 -1.119058 0.406599 -0.782272 -0.701156 -0.350738 0.940982 1.088685 0.723350 1.041991 -0.881542 0.521804 -0.207591 0.150373 0.831279 -0.266805 0.622504 -0.538269 -0.951575 0.383245 0.549626 0.016452 0.251621 -0.393394 -0.082704 -0.869485 -0.122064 0.179090 0.450473 -0.310170 0.978552 0.586888 1.053703 -1.589422 0.594354 0.606390 -0.218987 0.367654 -0.318369 -1.258799 0.500969 0.360370 0.339602 0.844140 -0.160615 -0.464825 0.204310 -0.263852 0.593183 -0.713829 -0.020132 -0.787273 -0.594708 -0.691360 0.476057 -0.411868 -0.314839 -0.257660 -0.376222 1.113082 -0.908270 -0.713004 1.518656 -0.320637 0.324235 -1.105034 1.109282 -0.602907 0.594524 -0.392648 0.172523 -0.227483 0.833260 -0.511065 0.351577 0.586309 -0.585436 0.636824 1.411603 0.299326 0.523051 0.139714 0.982080 -0.337714 0.265538 -0.572930 1.265945 -0.120861 -0.557448 0.057352 -0.589187 0.236325 -0.410783 0.339988 0.910920 0.870454 0.086302 0.444829 0.727273 0.706129 -0.561004 0.834049 -0.143803 0.203296 -0.590572 0.018394 0.182390 -0.121205 -0.493067 0.421275 -1.205478 -1.098778 -1.065011 -0.731765 0.162116 -0.232354 0.000590 -0.189355 -0.060551 -1.133135 -0.785729 0.889054 -0.578949 0.161828 0.492395 0.588489 0.714904 1.332008 -0.501335 0.077854 -0.212185 -0.244156 -0.272925 -0.539012 -0.498429 0.970216 -0.679718 0.485343 0.824501 -0.186300 0.302484 0.360606 0.419452 -0.594655 1.225808 0.592736 -0.079818 0.810657 1.030696 1.807134 0.188105 -0.652693 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.029410 -8.245568 17.742908 13.474191 -4.030688 6.051395 1.196753 -11.855111 10.212486 6.420470 -2.707071 3.101350 -7.132691 2.156366 -0.935690 8.065953 -11.792450 -5.762991 -3.375221 -8.954306 -5.581380 -7.545449 1.566312 3.580589 4.972572 4.718374 -5.486828 0.683598 -3.697657 -14.842236 6.242952 -1.460600 5.832344 0.248550 4.228352 -25.893860 12.397219 9.028353 -3.729051 -12.809012 1.857726 -0.701978 -3.279676 1.677871 -4.666506 3.428397 -1.286005 7.257469 3.769537 5.107661 2.902907 2.487043 6.467146 20.919159 -2.336383 9.620522 7.283988 0.161437 -0.865944 4.046631 3.808137 3.260014 4.718914 6.182942 1.787469 -7.277490 -0.107624 -2.269752 -10.236517 9.114170 0.418524 -8.636620 -6.566486 -7.152523 -5.715638 -2.060017 -12.684750 9.796941 15.846367 -9.321109 9.213657 4.189548 3.717629 -0.382248 5.403144 -2.290062 12.109814 4.705592 -4.135601 1.094212 -1.799377 -7.378640 4.266918 -2.808706 -8.154280 -16.419190 7.160001 -11.143673 -11.757460 7.740189 5.608679 -3.426369 -8.005246 -5.627607 6.399173 2.676806 -6.242450 -10.056074 -6.089669 6.402123 -1.402654 -3.953762 -1.236483 1.323832 -0.857049 1.678643 -12.096375 0.206827 4.606306 -4.667142 -2.619804 8.968089 -0.343861 1.785407 -0.966871 2.973693 -3.201869 8.999328 0.953896 8.358125 0.156324 5.331076 -4.688566 5.461124 4.167112 -0.986046 0.692139 -2.478153 -0.980782 5.125208 -4.384877 7.339316 -5.324316 5.098341 11.002425 0.456637 -8.231932 -5.799582 -3.999012 -14.060215 3.506688 -8.797227 -6.588558 5.082203 8.034544 6.493604 4.298545 5.852636 -11.472768 5.232521 -3.223021 2.212509 3.336054 0.433680 4.464463 -5.103267 -9.080445 3.970182 5.155793 3.837964 2.893711 -5.332945 -0.023769 -5.737244 -5.498463 5.770698 5.132644 -1.926556 6.856730 8.327573 19.776532 -7.446017 0.952964 3.993895 -4.161134 1.198359 -1.126287 -13.380984 2.799034 2.496503 4.795905 12.944178 -2.165038 -2.015644 3.902070 -2.664459 1.508386 -6.220415 4.054635 -8.681458 -1.558604 -6.278877 2.146796 -6.105389 -2.236434 -5.234597 -3.097742 13.128379 -13.267061 -8.722666 15.682575 -5.930300 4.306722 -12.146315 12.920309 -3.952607 6.555512 -3.540884 -2.432036 -1.953389 -1.339811 -5.129794 2.396184 4.111435 -2.923934 2.503009 14.694714 1.775404 0.354522 1.009139 8.818143 -4.956358 4.185996 -8.197179 12.680721 -2.535500 -2.238767 -2.657719 -3.978323 1.113487 -6.172967 1.920996 5.759943 4.880483 1.093128 2.519690 5.656941 4.672275 -5.969556 10.167906 0.743126 2.890590 -6.014543 -1.033137 1.655681 4.067841 -4.549162 5.370128 -12.999223 -9.874819 -16.753186 -8.365175 -5.400794 0.477883 5.456911 -2.438666 -2.608653 -8.292920 -9.418068 14.063338 -4.236098 1.828770 7.829923 6.721057 9.610246 12.945589 -1.961019 1.146364 -2.821949 -1.071364 -3.175475 -4.171829 -4.818697 8.893830 -4.071866 4.369169 10.629783 -0.234225 5.643206 -2.112249 7.347660 -7.959934 12.283453 5.843388 -4.052337 4.847908 9.029472 10.976059 -1.014803 -6.851709 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.148457 -0.682900 1.158859 1.094313 -0.341208 0.267154 0.310256 -0.461369 1.085951 0.294865 -0.235782 -0.000858 -0.795275 0.312800 0.640233 0.784442 -1.234720 -0.600687 0.184269 -0.324120 -0.401565 -0.763743 0.302773 0.014092 0.382574 0.743875 -0.227904 -0.264115 -0.056585 -0.045031 0.981339 -0.552375 0.592948 1.300030 0.329893 -2.279881 0.729767 -0.002763 -0.271962 -0.955598 -0.071243 -0.485010 0.506780 -0.680838 0.093446 0.356691 0.392935 1.194203 0.673804 0.320316 -0.182077 -0.496924 0.216146 1.398699 -0.551432 0.410416 0.291552 -0.293855 -0.150683 0.012281 0.362765 -0.064343 0.625813 0.780537 -0.292550 -0.556014 -0.286050 -0.861112 -1.059379 0.716852 0.300977 0.365067 -1.160843 -0.271157 -0.009728 -0.330215 -2.451016 1.217387 1.484523 -1.023589 0.871540 0.466788 0.761900 -0.030229 0.453034 0.106786 0.920533 0.240733 -0.792962 0.314276 -0.666923 -0.989759 0.247912 -0.846813 0.051200 -1.179113 -0.030379 -0.040547 -0.786107 0.528350 0.200786 0.401690 -0.552125 -0.170504 0.739691 0.548284 -0.623988 -0.949249 -0.257271 -0.192137 -0.212380 -0.215185 -0.009510 0.070632 -0.450336 -0.672793 -1.035718 -0.460965 0.105618 -0.700503 0.188875 0.728692 -0.447616 0.183807 -0.035402 -0.087288 -0.182529 1.310110 0.358228 0.444028 0.694224 -0.215502 -0.778833 0.674780 0.527951 1.161464 0.289021 -0.115086 -0.194991 0.251850 -0.663075 -0.199178 0.537050 0.485184 0.830609 -0.281770 -0.757634 -0.439943 0.004475 -1.000483 0.673271 -0.831499 0.586989 0.589180 0.743073 0.692957 0.657967 0.656669 -1.223824 0.616166 -0.641024 0.465163 0.557848 1.306877 0.601422 -0.383453 -0.208551 0.234550 0.385008 -0.013854 0.366915 -0.780297 0.209756 -0.690965 -0.295512 0.372725 0.480527 -0.291622 0.458500 0.201461 0.853197 -0.708725 0.173712 0.550467 0.244511 0.001386 0.271532 -0.949073 0.969786 -0.110059 -0.097883 0.054788 -0.231772 -0.461610 0.130250 -0.185332 0.112569 -0.312454 -0.275065 -0.469560 -0.345509 -0.694374 0.853385 -0.571148 -0.540993 -0.071413 0.459127 0.998426 -0.192955 -0.163635 0.814642 -0.835799 0.627435 -0.686071 1.524102 -0.573448 0.164346 -0.748774 -0.569984 -0.163963 0.028472 -0.025750 -0.190664 0.495470 0.154395 -0.126517 0.890537 0.404130 0.060430 0.492077 0.766199 0.214116 0.261396 0.017029 0.700406 -0.248490 0.452435 0.143432 -0.375263 0.444810 -0.054638 0.023449 1.334429 0.716131 0.336364 0.876970 0.237463 0.253785 -0.562408 0.264356 -0.085395 0.742877 -0.488508 0.072161 -0.117549 0.228123 -0.531500 0.405796 -0.879960 -1.165181 -0.456711 -0.000145 -0.808796 0.371881 0.237602 -0.050893 0.223090 -0.651611 -0.234577 0.071605 -0.426604 -0.204600 0.172625 0.157763 0.763485 0.964315 -0.403947 -0.781911 0.231115 -0.071303 -0.237302 0.275229 -0.835758 0.640604 -0.907266 0.356594 0.901825 -0.354683 -0.254083 -0.386600 1.772770 -0.473332 1.088857 0.529368 -0.419653 0.552155 0.967037 1.010302 0.439314 -0.548199 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.082253 -0.375578 0.575701 0.532890 0.048914 0.125429 0.542693 -0.137508 0.793960 0.457756 -0.069702 -0.205388 -0.601233 0.082115 0.586729 0.448957 -0.494317 -0.437815 0.273371 -0.221948 -0.145578 -0.526097 0.212835 -0.246191 0.222719 -0.019724 0.028056 -0.460068 -0.219097 0.222090 0.678092 -0.389219 0.310082 0.671632 0.050776 -1.280927 0.319863 -0.135644 -0.208061 -0.495363 -0.017800 -0.400171 0.518566 -0.269824 0.490463 0.209476 0.378728 0.784098 0.494448 0.225422 0.124128 -0.500429 -0.059890 0.913524 -0.611290 0.203754 0.034455 -0.208689 -0.136516 0.238836 0.131587 -0.188881 0.437763 0.503609 -0.318756 -0.242710 -0.124658 -0.575883 -0.723406 0.338292 0.285155 0.291443 -0.710457 -0.017200 0.219928 -0.316110 -1.983638 0.596124 0.871925 -0.570264 0.652346 0.367262 0.623083 -0.017594 0.291748 0.112537 0.500710 -0.017394 -0.611424 0.079130 -0.732987 -0.537851 0.012235 -0.467932 0.263684 -0.497424 -0.100208 0.634416 -0.452636 0.294072 0.002405 0.397087 -0.479855 0.138893 0.419541 0.396608 -0.414257 -0.700395 -0.347091 -0.160836 -0.313751 -0.043263 0.077153 -0.342398 -0.411934 -0.702354 -0.511718 -0.376278 -0.020131 -0.495055 -0.240653 0.497800 -0.518839 0.139882 0.112485 -0.026328 -0.124160 0.682287 0.288281 0.240042 0.724901 -0.457062 -1.249956 0.374068 0.370846 1.109096 0.366582 0.156111 -0.192613 0.065419 -0.472944 -0.084559 0.592492 0.442894 0.512848 -0.353572 -0.315696 -0.186005 0.476489 -0.355515 0.598058 -0.445258 0.679972 -0.044486 0.433997 0.485678 0.424474 0.526555 -0.792990 0.535105 -0.503376 0.280710 0.336100 0.924805 0.459589 -0.230773 -0.001084 -0.152038 0.431586 -0.188387 0.196078 -0.481460 0.121027 -0.549256 -0.119570 -0.125393 0.145985 -0.372285 0.260031 0.101426 0.617565 -0.780395 0.141985 0.384412 0.212171 -0.017861 0.208971 -0.541892 0.659983 -0.027769 -0.283122 -0.133148 -0.089988 -0.421543 -0.002297 -0.182837 0.044892 -0.100524 -0.277155 -0.262707 -0.424321 -0.326254 0.577897 -0.461591 -0.506861 0.104900 0.529697 0.505260 0.508071 -0.073934 0.300001 -0.639152 0.095545 -0.436940 1.397835 -0.393119 -0.304357 -0.730850 -0.328391 -0.288332 0.666362 0.099617 -0.144158 0.229388 0.026180 0.199716 0.698318 0.310906 0.183045 0.352144 0.520374 0.194587 -0.062623 0.084034 0.385099 -0.243392 0.309430 0.159818 -0.226041 0.490570 0.173444 -0.060202 0.891319 0.569440 -0.057955 0.534507 0.183482 0.104978 -0.243174 0.141385 -0.012485 0.657339 -0.187069 0.118862 -0.130190 -0.157846 -0.319295 0.239941 -0.518514 -0.554816 0.485051 0.044226 -0.345638 0.429261 -0.018090 0.133058 0.327196 -0.666426 0.033858 -0.435139 -0.269345 -0.409493 -0.069558 0.041684 0.419139 0.578494 -0.242853 -0.596792 0.161357 -0.130644 -0.262548 -0.013023 -0.318683 0.320427 -0.726204 0.296058 0.294637 -0.145163 -0.352148 -0.234263 1.190917 -0.308184 0.653617 0.319778 -0.042871 0.424657 0.703699 1.001813 0.122255 -0.225734 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.768053 -2.034571 4.618643 2.545277 0.192542 1.808563 2.221256 -3.711106 4.949754 1.864194 -0.863958 -1.611828 -3.381707 -0.587479 -0.271760 1.026149 -2.472379 -2.789672 -0.448462 -3.081605 -0.709879 -4.025084 1.930134 -0.082825 0.856861 0.271128 -0.546271 -0.011865 -2.164026 -4.357431 4.448286 -0.743318 1.651270 1.117646 -0.154695 -7.629832 4.003291 2.184677 -1.288804 -3.101218 0.465116 -0.018284 -1.398273 1.762838 0.465145 1.321431 0.071730 2.859225 1.553692 1.376207 2.610168 -1.449643 -0.322794 4.795945 -2.550640 2.658572 0.970282 0.114896 -0.348449 3.025411 0.176150 0.814321 1.762626 4.274237 -0.846901 -0.619577 2.203478 -1.213030 -5.671303 3.493967 -0.186308 -2.139392 -1.010611 -0.995006 -0.738304 -0.188394 -1.331653 1.542995 5.719464 -1.203962 4.197728 1.365557 2.185379 -1.821461 0.523455 -1.029282 3.625448 0.628725 -2.534734 -1.416468 -3.613859 -2.020309 -0.174126 0.854147 -0.696992 -0.986961 2.192839 -1.586640 -2.979669 0.948019 0.729537 -0.136855 -4.546656 0.455216 2.400274 0.536347 -1.239244 -3.980158 -3.111575 1.871791 -2.656700 0.180609 -0.444572 0.116329 -1.705792 -0.867676 -2.921563 -1.824709 0.145279 -2.673704 -2.396448 2.435907 -2.709313 0.843926 0.952472 1.490092 -0.684740 1.317391 0.420407 1.689756 2.987500 -0.558373 -3.678900 -0.255929 0.935825 3.555600 1.261149 -0.589264 -0.113761 0.806109 -2.455716 1.108384 -1.600518 0.170989 3.988485 -1.338616 -1.720826 -0.101216 1.158297 -4.877598 1.708149 -3.410063 -0.791759 -0.038686 2.339246 2.280635 1.410729 4.744375 -4.942450 3.152838 -1.358559 -0.055663 -0.043111 0.756685 1.860408 -1.202922 -2.885743 -0.453997 1.454828 0.161115 0.872447 -2.866531 -1.306516 -3.601941 -3.238657 1.070302 0.177862 -0.708803 0.519489 2.100853 5.761690 -5.019800 1.047836 2.194918 -0.078690 0.104094 0.608167 -4.418786 1.459602 0.417341 1.268328 3.229481 -0.130427 -1.356186 0.296531 -0.995833 0.361348 -2.389616 0.713627 -2.812209 -0.229192 -2.281902 0.060346 -2.006490 -1.869089 -0.278974 0.659635 2.780085 0.253419 -4.496303 5.007811 -1.902866 1.331085 -4.849560 3.136872 -1.408964 1.291165 -2.201688 0.340718 -1.768614 0.889569 0.116877 0.225961 0.083314 -0.705767 3.642639 5.866446 0.660080 1.012808 0.840415 3.092918 -1.198992 -0.184552 -2.334116 2.985750 -0.634785 -2.020575 0.023846 -1.633983 1.682820 -1.631896 -0.025386 2.446842 4.284014 -1.497955 2.215297 1.550931 1.116103 -0.921325 2.847546 1.673775 1.968355 -0.722955 0.020701 0.854668 0.233245 -2.362337 2.217546 -3.544004 -4.405779 -0.989855 -5.701436 -1.585554 -0.912581 1.792388 0.320352 1.016191 -3.533696 -1.392321 2.072728 -0.905288 3.550552 1.449575 2.432632 2.141459 4.579381 -1.955864 -0.243379 0.232691 0.654411 -2.999228 -2.297962 -1.129510 2.038659 -1.330381 1.869486 2.001898 0.285066 0.365218 -2.229686 2.981779 -2.931465 4.131423 2.257206 0.301884 2.911514 -0.367167 5.401610 1.401143 -1.253048 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.849005 -1.300824 2.277396 1.971448 0.649983 1.084475 0.584731 -1.607255 2.256037 1.519172 -0.292751 0.440984 -1.475066 0.286369 0.045090 1.323176 -1.165479 -1.611103 -0.074896 -1.082024 -0.662160 -1.779247 0.404703 0.180947 0.547466 0.009386 -1.181206 0.172243 -1.793151 -2.480419 1.164101 -0.552444 1.006528 -0.061762 0.063223 -3.919286 2.153460 1.576278 -0.466511 -1.893759 0.173215 -0.996327 -0.002688 0.087329 0.500488 0.789417 0.186150 0.346554 0.999341 0.565767 1.260127 0.056661 0.102637 2.477827 -1.361667 1.556037 0.600873 -0.073582 -0.404890 0.715020 0.426545 0.361492 1.486397 1.727912 -0.951116 -0.898004 0.192889 -0.231948 -2.344503 1.398822 0.055619 -0.700133 -1.169389 -0.319732 -0.693969 -0.480679 -0.731160 0.781971 2.800361 -0.793843 2.047914 0.637139 1.403101 -0.236065 1.284191 -0.379512 2.334304 0.491716 -1.599125 -0.488529 -1.392177 -0.816132 0.090501 0.936164 -0.553084 -0.187952 0.512782 -0.821471 -1.882895 0.717487 0.175652 0.211393 -2.713940 -0.102347 1.551320 0.654221 -0.570355 -2.220214 -1.256815 0.743713 -0.836525 -0.871186 -0.200489 -1.099463 -0.771622 -0.472810 -1.794010 -0.879816 0.501547 -1.269789 -1.492739 1.543000 -1.250997 0.259777 -0.209306 0.439125 -0.387269 0.823467 -0.130922 1.156926 1.005864 -0.509847 -2.758384 0.108775 0.429321 1.312485 -0.279770 -0.064925 -0.451139 0.355299 -1.125553 0.621471 -0.564782 1.066408 2.350168 -0.381178 -1.050651 -0.611425 0.596031 -2.096130 0.949845 -1.383476 0.001255 -0.257880 1.577476 0.600521 1.076173 2.271467 -2.006558 1.600885 -0.416992 0.279531 1.161673 0.139117 0.917575 -0.915410 -1.485750 0.795783 1.254277 -0.053696 0.518409 -0.832436 -0.129690 -1.279751 -1.335292 0.822306 0.183590 0.148932 1.226249 0.596581 3.545049 -2.412495 0.788695 0.820232 0.062491 0.474329 -0.262483 -1.942947 0.908877 0.356170 0.545843 1.987358 -0.180381 -1.449256 0.037354 0.080988 0.597718 -1.324338 0.844170 -1.399609 -0.107054 -0.856605 -0.308240 -0.804492 -0.933760 -0.480106 0.364540 1.887187 0.025362 -2.412947 2.093980 -1.293131 0.797902 -2.908193 1.517316 -1.180447 0.628911 -1.380363 0.014717 -0.467492 0.852712 -0.464392 0.455917 0.910872 -0.771160 1.319464 2.435331 0.492166 0.589060 0.241537 1.015947 0.079010 0.131465 -0.755157 1.887995 -0.108639 -0.207797 -0.136564 -0.955011 1.060240 -0.287065 -0.288832 0.843041 2.027892 -0.481322 0.702583 1.296460 0.746579 -0.998406 1.382812 0.228968 0.930397 -0.512576 -0.146157 -0.044835 0.060571 -0.542752 1.020924 -1.828920 -1.743736 -0.365026 -2.429617 -0.357515 0.697832 0.481473 0.231360 0.338567 -2.044324 -0.732131 1.322024 -0.558119 1.922777 0.573128 1.031058 1.088740 1.705344 -0.830691 -0.623840 -0.592825 -0.491024 -1.050004 -0.883551 -0.670400 1.346620 -0.985691 1.169161 0.964933 -0.332552 0.138555 -0.411766 1.375614 -0.923678 2.366913 1.100345 -0.170118 1.222273 0.332984 3.006214 -0.438693 -1.054628 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -1.291203 -2.454296 2.527072 2.246486 0.948398 1.589696 0.378769 -0.405776 0.704267 2.274531 -1.322378 1.773207 -0.869962 -1.093176 1.084351 0.520639 -0.500481 -1.818981 0.634261 -0.074439 0.262585 -0.891170 -1.457949 1.923081 0.565186 -0.877419 -0.857116 0.231414 -2.635045 -2.951407 -0.875833 -0.174985 1.163585 -0.252845 0.973347 -2.088003 1.597864 2.251381 0.017649 -2.780462 -0.079449 -0.321948 -0.660608 0.703888 -0.375018 1.491390 1.576676 -0.903015 -0.587713 1.081480 0.255623 -0.743886 1.147179 1.766123 1.232098 2.265658 2.566800 -0.495056 0.915702 0.471136 0.771966 -0.912480 1.360016 0.924192 -0.548116 -0.245369 -0.115542 0.415498 -1.156273 0.388726 0.249080 -1.488749 -0.294221 -0.868316 -1.533191 -0.485210 1.016757 0.621826 2.650882 -0.940318 3.061055 1.674174 2.209862 -0.061490 1.755664 -0.272251 1.790792 1.040910 -1.545776 0.264837 -1.489377 -2.181938 -0.193116 1.555710 -1.350507 1.577846 0.923276 -2.278973 -2.287955 1.894720 -0.357907 -0.271208 -2.044864 -0.106422 1.353790 1.111563 -0.193065 -1.549041 -1.451724 1.121333 -1.533358 -1.257223 -0.810350 0.084269 -0.290290 1.094354 -1.676326 -0.197619 2.089693 -1.346027 -0.974072 1.683800 -0.794393 1.654615 -0.749579 -0.003413 -0.053147 0.437222 1.107235 0.874552 0.855827 -1.547557 -3.483504 0.308719 0.120540 -0.603985 -0.756911 0.185632 1.178674 0.954686 0.759767 2.109797 -0.796749 2.312930 1.349629 0.286920 -1.315085 -2.471128 -0.687450 -1.026007 0.550854 -1.104864 -0.765824 0.966609 1.519268 0.154930 -0.028506 1.900262 -1.009118 1.234644 -0.421478 0.477264 -0.268036 -1.680252 0.429997 -1.091782 -1.228759 1.297083 2.387170 0.308212 1.273016 -1.135224 0.411970 -0.693564 -2.183810 1.183865 0.003197 0.533819 1.934214 0.987776 3.044016 -1.315554 -0.304140 -0.607174 -0.077710 0.084589 -0.537304 -2.100737 0.507708 0.202292 1.179359 2.654704 0.045956 -1.133471 0.353956 0.081224 -0.118378 -0.982675 2.090910 -1.648653 0.626578 0.122641 -0.995756 -1.418114 -0.988538 -1.139492 0.111434 2.526533 -0.344007 -2.759623 0.848524 -0.616551 0.524932 -3.150519 1.281872 -1.111607 2.012790 -0.466373 -0.722399 -0.493035 0.411838 0.141094 0.128544 1.106801 -1.514621 1.255078 1.112784 0.111619 0.305732 0.878686 0.316149 -0.477683 -0.603719 -0.973169 0.756218 -0.261832 -0.083970 -1.092183 -0.666006 1.746809 0.527912 -0.847132 -1.099852 1.056363 -1.131494 -0.524938 1.789140 -0.563434 -1.330387 0.660397 0.316744 2.108937 -1.087097 -0.578311 -1.332530 -0.044978 0.672729 0.513309 -2.374847 -0.555130 -1.800742 -2.143499 -1.439467 1.000783 0.835662 0.789780 0.151653 -2.219817 -1.298804 1.346963 -0.279547 0.904108 1.189723 1.501997 1.912139 0.664207 0.752405 -1.126810 -1.235996 -0.392612 -1.647300 -0.818849 -0.201037 0.718443 -0.910439 1.728694 0.811924 0.405682 0.726169 0.549709 0.028438 -1.336440 2.206137 1.542767 -1.856591 -0.180004 0.962110 1.392101 -2.974408 -1.578632 -PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -1.229420 -2.359743 2.009075 1.970218 0.676944 1.536005 0.950415 -0.820042 1.454629 1.787114 -1.250308 1.350367 -1.420528 -0.604362 0.428967 0.513855 -0.736167 -1.596103 0.547915 -0.085981 0.016522 -1.713797 -0.915393 1.438750 0.368935 0.835193 -0.522918 0.576854 -2.602144 -3.081274 0.459689 -0.276043 1.083243 0.682921 0.584749 -3.210852 1.634491 2.492990 -0.087443 -2.908560 -0.056802 -0.728428 -0.789878 0.574059 0.405865 1.501483 0.936411 0.704370 -0.245935 0.699878 0.541141 -0.874325 0.907499 1.735813 0.184470 2.360254 2.441290 -0.123502 0.563439 0.299607 0.571354 -0.346938 1.489501 1.858492 -1.144674 -0.268440 0.149453 0.158063 -2.169682 0.666917 0.630190 -1.069973 -1.175849 -0.704029 -0.688337 -0.193889 -0.309691 0.164405 3.315537 -0.259310 3.509821 1.471773 2.067577 -0.628017 1.692494 -0.396559 2.004046 0.872500 -2.007165 -0.033498 -2.052408 -1.689568 -0.008049 1.857179 -1.213347 1.432293 0.627929 -1.147012 -2.114152 1.061546 -0.432490 -0.325493 -1.663033 0.646829 1.364731 0.673627 -0.204343 -2.109197 -1.463497 1.014307 -1.707586 -1.166442 -0.904039 0.331874 -0.653005 0.451678 -1.547677 -0.579021 1.730168 -1.487976 -0.789362 1.470412 -0.800120 1.267394 -0.540526 -0.160877 0.125614 0.459260 0.909249 0.554614 1.432354 -1.354836 -3.213752 0.614637 0.322884 0.836168 -1.041394 -0.439738 1.075386 0.681647 0.562377 1.194674 -0.824048 1.607536 1.806925 -0.114850 -0.885174 -2.064403 -0.319536 -1.412856 1.009739 -1.171049 -0.087761 -0.306531 1.654534 -0.250623 0.342250 1.917812 -2.044949 1.713234 -0.220446 0.684020 0.092310 0.075241 0.601340 -1.015646 -1.358890 1.378364 1.886203 0.074438 0.813521 -0.904556 0.005780 -0.812450 -1.903919 1.645758 -0.303955 0.444224 1.931837 0.769183 4.420776 -1.372323 0.348070 -0.158419 0.092264 0.258537 -0.093886 -2.053890 1.425904 0.149733 1.368683 2.620683 0.021992 -0.981134 0.115576 0.325184 0.000914 -1.610826 2.373559 -1.594076 -0.019042 -0.432644 -0.255963 -0.871364 -1.294784 -0.955200 0.764328 2.419251 0.099404 -2.632310 0.924849 -1.040846 0.761560 -2.961187 1.666717 -1.273201 1.253304 -1.038448 -0.614825 -0.109213 0.150475 0.113368 -0.059341 1.039306 -1.230059 1.483535 1.490752 0.285322 0.182328 0.822944 0.315325 -0.264601 -0.621281 -1.077226 0.890909 0.236979 0.074165 -0.585811 -0.968108 1.693771 0.313103 -0.989398 0.430091 2.066882 -0.945767 0.032947 1.216696 -0.204386 -1.150739 0.750279 0.546584 1.511860 -0.798079 -0.557836 -1.046330 -0.136681 0.265416 0.994149 -2.124828 -1.165096 -0.201302 -2.597339 -1.283815 0.793600 1.293039 1.027772 0.546832 -2.583010 -1.076268 1.758173 -0.391075 2.023028 0.814373 1.417148 1.389202 0.792605 0.300066 -0.969336 -0.897112 0.007068 -1.643733 -0.579930 -0.244939 0.886632 -0.828985 1.718916 0.742789 -0.173451 0.394411 -0.665216 1.931685 -1.165119 2.749408 1.415369 -1.342075 0.299472 0.185579 2.626722 -1.969950 -1.326946 -PE-benchmarks/the-knights-tour.cpp__solveKT() = -0.830378 -5.197736 5.844408 5.576984 1.270348 2.909208 2.060444 -2.232782 3.492032 3.703556 -2.836070 3.358237 -3.444643 -0.215915 0.226223 2.644765 -2.917285 -4.023756 0.987016 -0.224769 -0.279736 -3.505556 -0.269998 2.621919 2.002299 2.363300 -1.907460 0.060981 -5.406481 -6.431626 1.611084 -1.074052 2.833885 2.071987 0.971704 -7.001747 4.261677 5.119792 -0.557936 -6.689325 0.522970 -1.362343 -1.908196 0.173346 0.890373 3.069042 2.081349 3.046021 0.128380 2.529072 0.712712 -1.173706 2.609977 4.502723 0.139244 4.899395 5.162055 0.014085 1.080364 0.291200 1.868880 -0.310416 3.140242 4.090096 -1.576557 -1.564962 -0.615470 -0.512316 -4.746125 2.116433 1.369771 -1.192225 -3.269113 -1.130266 -1.136006 0.172229 -1.960078 1.848270 7.832599 -1.692685 6.967006 3.017052 4.285945 -1.778862 2.643147 -0.589099 3.491267 2.504642 -3.682677 -0.811463 -4.885565 -3.904861 0.253347 2.019777 -2.823638 0.280021 1.897810 -2.658368 -4.896588 2.296583 -0.055146 -0.901299 -2.618631 1.220144 3.103794 2.226393 -0.895184 -4.342773 -2.429243 1.290149 -2.683805 -2.831396 -1.676933 0.875819 -1.711438 0.903836 -4.421635 -1.336449 3.134108 -3.651579 -0.738276 2.865054 -1.536400 2.594623 -1.472507 -0.204188 0.086737 1.776340 2.278804 1.957735 3.914246 -1.856838 -5.067303 2.467469 1.781115 2.215489 -2.344606 -0.277282 1.320815 1.815243 0.642277 2.063832 -1.527459 3.129565 3.931474 -0.939994 -3.213667 -4.364833 -0.638543 -3.387038 2.309255 -3.266800 -0.166468 -0.041461 3.980638 -0.424482 1.558134 4.814206 -5.132209 3.614582 -0.283558 2.009670 0.690692 0.740799 1.471388 -2.257608 -3.383384 3.312629 4.065719 -0.065706 1.568705 -1.818885 0.545780 -2.603377 -3.804984 3.501985 -0.043022 -0.050198 4.039649 1.477345 7.711326 -2.362136 0.315344 0.584172 0.075520 0.335364 0.104366 -5.552226 3.495188 -0.228227 3.525267 5.507261 0.097949 -2.593798 1.340883 0.335671 -0.189594 -3.069679 4.390509 -3.669507 -0.445033 -1.531646 0.713297 -1.500561 -2.511808 -1.792206 1.667151 5.788091 -0.301208 -5.189153 2.293263 -2.717130 1.481700 -6.602180 4.199506 -2.983285 2.181475 -1.263304 -1.457132 0.027758 -0.585392 -0.781184 -0.809840 2.700315 -1.793091 2.920283 3.746051 0.832749 -0.346261 1.831315 1.275887 -0.660921 -0.113078 -2.009256 2.485702 0.122534 -0.323890 -1.244002 -2.001186 2.977814 -0.519462 -1.952732 2.146184 3.680334 -0.883456 1.451036 1.879341 1.026498 -3.313644 2.417410 0.964662 3.704983 -2.057543 -1.010736 -1.786360 -0.105724 -0.334156 3.327631 -4.991017 -3.981730 -1.569002 -5.795349 -2.764413 0.627062 3.347964 0.692697 0.632070 -5.323340 -3.109413 3.094238 -1.018880 3.612541 2.955286 2.762288 3.307735 2.153383 -0.391577 -1.669531 -1.811541 0.555986 -2.769851 -1.487452 -0.972734 2.125081 -1.948054 2.961935 3.129509 -0.674048 0.873523 -2.649262 4.879357 -2.530328 6.623373 3.234776 -3.247383 1.133258 0.789813 5.936152 -3.190012 -3.351603 -PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -5.129821 -8.577544 7.862008 7.253497 3.355369 5.667921 3.482181 -2.695172 4.177081 7.745808 -2.720047 5.356677 -5.437926 -1.541637 -0.220854 2.255570 -1.347139 -6.400729 1.198281 -1.516712 -1.142428 -4.821969 -3.115681 5.435035 1.894214 -2.727859 -3.115079 -0.567083 -10.917413 -8.685241 -0.623522 -0.780641 4.118556 -3.048359 1.077544 -11.574613 5.308455 8.831501 -0.634047 -9.173091 0.626324 -3.019098 -1.735033 2.873128 -0.875341 2.600604 3.297617 -0.395511 -0.391112 2.659018 3.851803 -0.735546 3.178382 10.788790 0.594960 8.466773 7.535601 0.072366 0.898632 1.847386 2.247305 -1.611818 5.374792 4.296291 -2.824073 -1.167709 0.054908 1.019408 -6.150440 1.746612 1.764982 -4.253806 -1.702169 -1.762560 -3.409005 -2.281685 2.057470 0.318738 10.575360 -2.900804 11.139424 4.713749 6.339937 -0.557113 6.293985 -0.988652 6.528749 2.696611 -5.673758 -0.687000 -5.587556 -1.706511 -0.480497 6.539509 -4.893825 0.566823 3.937734 -3.622042 -8.847732 5.220953 -1.323657 -1.243641 -6.467224 0.045098 4.126112 3.097990 -3.217471 -7.745904 -6.546018 4.256020 -4.198882 -4.829282 -1.463133 -1.859857 -1.060123 0.380383 -5.739906 -1.638960 6.024663 -5.683380 -5.040851 6.384871 -2.930570 5.497639 -1.521944 0.782842 -0.003790 1.436311 2.967632 2.431539 2.094359 -4.091357 -11.348222 -0.170249 0.763705 1.465334 -3.088307 -0.194245 2.716406 2.969324 2.332711 6.187067 -2.391032 6.760395 5.408039 -0.059733 -3.421424 -6.792171 0.763359 -4.704692 1.978373 -4.488378 -2.750498 -0.559724 5.869037 -0.242703 0.557942 7.765715 -3.777071 6.611034 -0.125443 0.660220 0.838899 -3.702189 2.496189 -3.967585 -6.305730 3.877256 7.755902 1.351351 2.110920 -2.438898 -0.110222 -2.947758 -6.125896 1.987409 -0.065220 0.172535 7.281572 3.257086 15.954223 -6.869933 1.195721 -1.190031 -1.014002 1.745461 -2.149140 -8.237878 1.471508 1.523541 1.108734 9.797317 0.009472 -5.419690 2.262508 -0.084166 0.540780 -5.505769 7.789598 -5.826146 -0.069004 -1.603902 -2.070533 -3.514817 -3.437331 -4.337878 0.309505 8.787071 -3.171632 -9.114207 3.157506 -0.756175 1.255126 -11.613193 7.663710 -4.088210 5.009348 -3.338558 -2.418017 -0.826611 4.542683 -0.195186 1.699941 4.062668 -5.317977 5.715930 6.740838 0.662361 2.134075 2.472504 2.445997 -0.943201 -2.194894 -4.407532 4.822347 0.276602 -2.561493 -2.247209 -3.575719 5.514206 1.198547 -1.897088 -0.790622 6.375037 -4.210752 -0.819962 5.921773 -0.233391 -3.831575 3.326830 1.050709 6.397654 -3.217049 -0.846409 -3.958865 -0.053896 1.309400 3.787666 -8.380054 -3.651030 -2.689004 -8.581423 -2.062159 3.984740 2.783610 2.490208 1.082940 -9.834074 -4.830512 6.265351 -2.430158 6.492574 4.594239 5.969854 6.108491 3.610827 1.215694 -2.457734 -2.968503 -0.762425 -5.089507 -3.193550 0.138362 2.339442 -3.653644 6.733697 2.213398 1.030200 2.464186 -0.125797 2.289920 -4.550011 9.511151 5.204225 -4.477294 1.871667 3.051265 9.402597 -8.126647 -4.848085 -PE-benchmarks/the-knights-tour.cpp__main = -0.256989 -1.336014 1.405064 1.342041 0.254078 0.683191 0.512824 -0.411923 0.934860 0.746692 -0.690141 0.721601 -0.930115 -0.033328 0.126151 0.586567 -0.730012 -1.058804 0.297049 -0.010046 -0.090609 -0.898590 -0.075123 0.615109 0.447894 0.657970 -0.421201 -0.046378 -1.352842 -1.147149 0.526032 -0.331699 0.712937 0.764900 0.285251 -1.724920 0.900215 1.119665 -0.128343 -1.662456 0.050656 -0.420923 -0.225527 -0.141937 0.283136 0.727988 0.594124 0.777229 0.071493 0.551799 0.064977 -0.441102 0.454984 1.093614 -0.022016 1.108474 1.217079 -0.009855 0.241739 -0.010378 0.494232 -0.146303 0.781619 1.005899 -0.487882 -0.351056 -0.235527 -0.325030 -1.192355 0.508181 0.324823 -0.079209 -0.886912 -0.325122 -0.273539 -0.053196 -0.876352 0.559480 1.951080 -0.585246 1.708674 0.770662 1.180890 -0.362652 0.661103 -0.066687 0.797921 0.583493 -0.969771 -0.040133 -1.255982 -0.913782 -0.008763 0.313471 -0.592636 0.026569 0.457642 -0.547889 -1.181042 0.600471 -0.058689 -0.028151 -0.613746 0.376058 0.716257 0.669229 -0.353796 -1.085983 -0.561682 0.219190 -0.526974 -0.624174 -0.308023 0.266178 -0.479163 -0.090659 -1.105794 -0.405220 0.735955 -0.996766 -0.053099 0.766446 -0.518091 0.683092 -0.322851 -0.134589 0.004276 0.710546 0.688279 0.384393 0.905893 -0.590348 -1.362625 0.564355 0.434418 0.917701 -0.526874 -0.024531 0.349111 0.378860 0.134875 0.273015 -0.207381 0.651189 0.942120 -0.316907 -0.812819 -1.087439 -0.145270 -0.886341 0.557172 -0.856271 0.200573 0.152825 0.971281 0.151667 0.394907 1.402533 -1.286363 0.859798 -0.169102 0.420134 0.153675 0.490360 0.414276 -0.543750 -0.769978 0.763125 0.936581 -0.041359 0.502560 -0.579545 0.154600 -0.710552 -0.828117 0.849876 0.099463 -0.071992 0.994639 0.326774 1.417455 -0.660641 0.050380 0.137694 0.107080 0.067740 0.075888 -1.363856 0.965433 -0.108252 0.656519 1.059640 -0.019021 -0.609365 0.360179 -0.026353 -0.004235 -0.729451 0.898810 -0.878705 -0.165155 -0.523218 0.387875 -0.441925 -0.637377 -0.376419 0.434456 1.411820 0.043167 -1.093283 0.444568 -0.499136 0.470802 -1.485345 0.969839 -0.731524 0.677926 -0.345485 -0.378308 -0.016468 -0.109952 -0.017583 -0.342893 0.693653 -0.359054 0.558675 0.879399 0.231180 -0.126554 0.586153 0.406780 -0.080199 -0.045170 -0.376275 0.529765 0.010620 -0.037986 -0.109408 -0.510645 0.778183 -0.051567 -0.463973 0.780651 0.981405 -0.103087 0.520954 0.415450 0.186750 -0.800731 0.398848 0.221789 1.073709 -0.541537 -0.166516 -0.522923 0.095652 -0.140120 0.673214 -1.186027 -1.154542 -0.295179 -1.287200 -0.731289 0.135028 0.651103 0.186890 0.201386 -1.220640 -0.692722 0.537539 -0.326585 0.955176 0.578940 0.616427 0.893013 0.591664 -0.250043 -0.578906 -0.184328 0.152863 -0.671319 -0.169362 -0.373469 0.477394 -0.616981 0.653914 0.836602 -0.214279 0.117844 -0.534127 1.392483 -0.619180 1.678705 0.834453 -0.873183 0.363895 0.316978 1.515664 -0.557520 -0.821271 -PE-benchmarks/graph-coloring.cpp__Graph::addEdge(int, int) = -0.391477 -1.595272 2.386586 2.273744 -0.389854 1.052234 0.253968 -1.435890 1.178782 1.040368 -0.194706 0.780020 -1.411738 0.458828 -0.071988 1.140260 -1.696976 -1.092001 -0.535362 -1.126902 -1.062540 -1.120823 -0.114413 1.034326 0.759696 0.523892 -1.086790 0.007597 -1.247854 -1.675270 0.576147 -0.301473 1.144160 0.551017 0.571997 -4.044982 1.599099 1.532973 -0.447090 -1.641110 0.168941 -0.852852 -0.027713 -0.383929 -1.005720 0.392624 0.056417 0.181632 0.841520 0.371575 0.656160 0.234291 0.983472 3.247461 -0.447331 1.626829 1.093533 -0.198096 -0.013006 0.198140 0.545223 0.248492 1.111771 0.837644 -0.181876 -1.091700 -0.338866 -0.555324 -1.387767 1.314340 0.092106 -0.767077 -1.283149 -0.909196 -1.269378 -0.805875 -1.771514 1.363017 2.535959 -1.697089 1.713359 0.741277 0.673722 0.092427 1.439893 -0.140477 2.157554 0.597887 -0.878739 0.645213 -0.123011 -0.669925 0.474033 0.490460 -1.182434 -1.868862 0.872341 -1.792628 -2.190635 1.310991 0.420220 -0.237823 -1.427837 -0.843944 0.814790 0.381989 -1.167762 -1.883941 -0.963635 0.780783 0.032797 -0.911327 -0.231123 -0.070260 -0.065063 -0.124700 -1.996707 -0.149351 0.681237 -1.037228 -0.585530 1.738084 -0.039503 0.557912 -0.222897 0.315248 -0.467591 1.675644 -0.025152 1.157150 -0.240859 0.372127 -1.538627 0.061562 0.645457 0.291289 -0.332603 -0.511201 -0.140938 0.731711 -0.604820 1.031461 -0.122429 1.458729 1.556507 -0.016223 -1.286167 -1.049629 -0.583435 -2.213539 0.402455 -1.368800 -0.741399 0.868219 1.436681 0.849865 0.707507 1.263746 -1.021489 1.033588 -0.360245 0.032896 1.009469 -0.098995 0.854514 -0.954543 -1.461431 1.040743 0.842672 0.810925 0.525054 -0.627545 0.005367 -0.763580 -0.989353 0.788071 0.630969 -0.226654 1.597204 1.105550 3.308220 -1.481254 0.743254 0.451038 -0.359599 0.462709 -0.270985 -1.927392 0.650262 0.366017 -0.338810 1.719338 -0.387155 -0.798279 0.571445 -0.378448 0.550892 -1.372429 0.787191 -1.194277 -0.021609 -1.315267 0.091511 -0.759393 -0.638758 -0.761218 -0.332871 2.235763 -2.339864 -1.107181 2.048907 -0.168930 0.852054 -2.108171 2.203702 -0.862151 1.409091 -1.034692 -0.940651 0.004269 0.477041 -0.544002 0.589656 1.002645 -0.945846 0.158389 1.936795 0.370692 0.466268 0.289398 1.358940 -0.096479 0.573999 -1.008985 1.974017 0.038806 -0.287832 -0.391316 -0.860308 0.400573 -0.351452 0.306966 0.985043 1.276207 0.192732 0.223034 1.314050 0.677615 -0.949370 0.930173 -0.123805 0.815629 -1.167082 -0.175564 -0.090388 0.644040 -0.388588 0.706578 -2.068536 -1.585935 -2.225983 -0.787647 -0.808334 0.807895 0.632613 0.057625 -0.260480 -1.549967 -1.364561 1.963673 -0.936309 0.461055 0.992239 1.069906 1.610446 1.782161 0.004629 -0.402133 -0.362307 -0.040987 -0.311392 -0.069428 -1.074455 1.349491 -1.117362 1.097441 1.447282 -0.267817 0.861947 0.398096 1.536528 -1.214302 2.203501 0.879373 -1.005924 1.073923 1.930331 1.447905 -0.321063 -1.160070 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::push_back(int const&) = -0.077529 -0.917212 1.926129 1.690331 -0.291034 0.629247 0.100363 -1.345253 1.481807 0.359404 -0.067820 0.345084 -1.053998 0.601394 -0.297854 1.025625 -1.514553 -0.974832 -0.508815 -1.067197 -0.843968 -0.975442 0.422656 0.255730 0.632583 0.456758 -0.955443 0.007034 -0.960840 -0.934492 1.081055 -0.390250 0.806590 0.193464 0.263220 -3.329660 1.412603 0.906599 -0.490407 -1.358132 0.240322 -0.820300 0.128790 -0.602182 -0.478886 0.211199 -0.188216 0.492971 0.979868 0.286153 0.366317 0.484081 0.168066 2.586149 -0.959138 1.010112 0.481178 -0.059223 -0.391253 0.293020 0.409690 0.500026 0.837138 0.799006 -0.267402 -1.124092 -0.221362 -0.642902 -1.378018 1.246603 -0.015182 -0.403871 -1.099677 -0.507587 -0.989252 -0.497219 -1.263619 1.271060 1.947137 -1.326708 0.981342 0.226904 0.533105 0.101900 0.849460 -0.081755 1.616537 0.433907 -0.617319 0.086968 -0.553645 -0.367427 0.334869 -0.198445 -0.657727 -1.762485 0.632030 -1.287231 -1.489152 0.672496 0.589161 -0.016680 -1.289897 -0.552017 0.818272 0.455756 -0.835267 -1.398146 -0.535145 0.528918 0.168919 -0.568503 0.040671 -0.378039 -0.230716 -0.592107 -1.607283 -0.197249 0.232984 -0.657977 -0.459639 1.273472 -0.562691 -0.070521 -0.159556 0.358538 -0.535055 1.432644 -0.267029 0.930079 0.048071 0.330961 -1.071000 0.194983 0.521846 0.920253 -0.165585 -0.154143 -0.558813 0.399922 -1.002412 0.215261 -0.210901 0.599859 1.185029 -0.278406 -1.043524 -0.464671 -0.177392 -1.884918 0.345044 -1.117295 -0.385883 0.680549 1.141151 1.103125 0.925839 1.349332 -1.154538 0.773225 -0.319310 0.034166 1.115236 0.273336 0.758473 -0.678450 -1.061748 0.663747 0.295291 0.391765 0.343633 -0.465736 -0.009963 -0.970315 -0.573925 0.525547 0.693097 -0.104452 0.978030 0.763155 1.600164 -1.502391 0.572225 0.737847 -0.284610 0.336849 -0.148355 -1.460224 0.572121 0.317679 -0.017740 1.144079 -0.309094 -0.712182 0.279165 -0.210863 0.566819 -0.885238 0.134186 -0.904089 -0.241678 -1.085549 0.214592 -0.571869 -0.433315 -0.545250 -0.455696 1.606379 -1.393390 -1.044610 1.858997 -0.450001 0.858132 -1.673572 1.337762 -0.757155 1.029203 -0.678022 -0.206450 -0.128654 0.190236 -0.749185 0.411867 0.737312 -0.494163 0.200572 1.764319 0.447669 0.311833 0.064806 1.190299 -0.131339 0.768503 -0.644971 1.617946 -0.190769 -0.326104 0.055199 -0.636931 0.132174 -0.585328 0.378784 1.224358 1.022349 0.561673 0.709134 0.880237 0.900543 -0.784405 0.896935 -0.138609 0.399007 -0.666183 -0.058427 0.283081 0.553908 -0.543808 0.574059 -1.486717 -1.747025 -1.615354 -1.032023 -0.184657 0.074947 0.231250 -0.283068 -0.177470 -1.174959 -0.914647 0.999809 -0.676181 0.942986 0.665798 0.638332 1.038536 1.616170 -0.766642 -0.197364 0.021847 -0.064648 -0.146893 -0.216749 -1.124218 1.289367 -0.805793 0.493335 1.436548 -0.375614 0.470281 0.057361 1.205382 -0.758962 1.744571 0.630357 -0.507026 1.054603 1.106764 1.535516 0.478665 -0.858644 -PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -3.263263 -15.159454 19.670480 18.606600 0.025751 10.817806 1.934398 -11.497663 9.531238 9.201138 -6.124602 10.235926 -10.127007 -0.242072 -3.262295 7.076745 -10.740559 -10.024185 -2.097907 -5.650803 -3.858709 -9.889535 -3.097131 11.563544 5.722435 8.519429 -7.679248 3.238207 -16.153080 -21.401095 3.258633 -0.659664 8.673731 4.898378 4.724407 -24.942310 14.506358 18.930940 -2.354360 -18.389558 2.019683 -5.483086 -7.063703 0.660658 -3.726096 7.171469 1.154051 3.442435 1.135762 4.610605 3.439822 1.828969 10.198681 18.024598 0.648926 16.540461 14.576402 0.462545 3.347522 1.738790 4.745009 2.253705 9.018656 9.285950 -3.328670 -7.199223 -1.798150 -0.054567 -12.039913 8.144326 1.344328 -9.345363 -8.568931 -6.701843 -9.279161 -1.817936 -7.213065 6.805712 21.822431 -7.985436 19.066851 7.489505 8.368691 -3.286241 11.637888 -2.640269 15.406251 7.399152 -7.813931 0.535547 -8.495574 -8.397096 3.402176 7.005114 -13.633190 -4.318559 8.748679 -17.617730 -17.839642 8.618849 2.157778 -6.017626 -9.187012 -1.229265 7.119079 3.521215 -4.289041 -14.174060 -6.657986 9.044551 -4.722604 -9.506278 -5.577551 3.165833 -0.989757 4.205938 -14.769056 0.120239 9.864421 -7.898540 -3.476552 11.946614 -0.667794 5.638247 -4.412580 1.055284 -1.595342 7.328102 1.404831 7.351602 3.187158 0.393366 -11.647812 5.540522 4.427780 0.022740 -8.318736 -3.078286 3.636389 6.633222 0.947709 9.584935 -7.974010 10.420623 10.922862 -0.367412 -8.947759 -12.444932 -6.583860 -14.842278 2.830527 -9.435950 -7.801456 3.347885 12.297652 2.063637 4.082917 10.969098 -12.192942 8.613196 0.599884 3.084146 4.362414 -1.903782 4.469646 -7.855277 -13.377767 11.521313 9.078899 4.482991 3.895735 -2.781935 -0.323989 -5.532123 -11.018499 11.600118 1.524212 1.512771 15.378768 9.095101 26.436867 -8.914608 3.434281 0.681036 -3.970819 3.018607 -2.487203 -16.591642 6.563991 2.543294 7.886204 20.406042 -1.492893 -4.947020 3.830913 0.334571 2.144387 -12.188602 13.526283 -11.915352 -0.426884 -6.676631 -1.280605 -4.460244 -6.533163 -8.603077 -2.107905 18.934951 -13.471045 -14.888204 13.243125 -4.388243 5.503256 -19.499078 9.928761 -8.123149 10.864290 -3.291268 -4.773024 0.593672 -2.229426 -5.452878 1.350605 8.364245 -9.451121 6.811725 13.324139 2.030200 0.672551 2.779565 5.873911 -4.449710 2.429553 -10.768118 12.614829 1.328205 -3.334977 -4.474722 -6.984237 5.172654 -3.566045 -2.389485 5.697150 11.165799 -0.086132 -0.247935 8.478345 4.188161 -9.082472 8.942590 1.647384 5.783377 -7.874965 -3.855114 -2.833961 2.013030 0.473430 7.845022 -17.440375 -11.918013 -14.440509 -15.011661 -5.755624 0.851057 9.769872 2.238821 -1.445721 -16.147035 -13.696483 16.942184 -5.010186 9.932588 9.900497 10.620556 11.514854 9.920113 0.797684 -0.872957 -5.821311 1.733627 -5.907190 -4.305672 -5.039519 10.192570 -4.662640 9.799712 11.373342 -1.382085 8.388359 -3.181015 10.718505 -9.345030 19.746439 8.343451 -10.839732 4.488913 6.892250 13.103254 -8.671244 -10.691468 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/graph-coloring.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/graph-coloring.cpp__main = -2.147669 -12.803726 20.336047 17.045731 0.427713 9.204710 3.785643 -10.553224 11.082505 8.649794 -5.712079 3.533671 -10.953037 -1.138924 -0.802666 7.559898 -12.991170 -10.876983 -1.593569 -5.270127 -4.331697 -10.859945 2.223206 6.876446 6.136790 9.471417 -7.635057 0.631761 -9.594415 -17.999701 9.348426 -2.376841 8.775862 10.128492 1.552384 -28.250550 17.171221 13.738546 -3.635915 -13.260887 2.226404 -2.192954 -5.844293 -0.390613 -4.864729 6.555137 2.129842 8.098327 2.918129 6.193562 4.515086 -3.196312 9.267809 20.670438 -0.477326 14.417937 12.214366 1.437218 2.636672 4.117734 4.382545 2.541212 8.147861 11.380717 -1.686342 -3.816403 0.614732 -5.151067 -14.511078 10.661973 -1.032587 -6.404668 -7.532588 -5.331205 -6.594980 -0.697083 -8.108584 9.591266 21.615952 -10.700109 17.376104 7.372223 9.311813 -2.728330 4.985337 -1.825130 11.338109 7.077296 -7.878806 -0.645107 -9.878597 -10.940099 2.696034 -0.447442 -11.237361 -9.983829 7.752820 -14.807484 -15.888899 7.765618 2.156039 -3.455450 -8.773739 -2.369500 8.908640 1.817725 -5.023045 -13.190524 -6.869507 6.444839 -6.963469 -4.989660 -4.493740 4.173865 -3.194016 2.876759 -15.522437 -0.991607 5.782362 -9.243190 -1.709441 11.976308 -3.023151 5.200633 -3.038920 1.145327 -3.245492 9.867095 2.720367 7.265136 5.487198 2.448852 -7.772841 4.018189 6.387686 4.199386 -3.863311 -4.543311 1.711520 5.930245 -3.698305 7.520130 -5.506763 5.663534 11.980481 -1.917053 -11.227106 -9.517108 -6.683883 -19.631362 4.939814 -10.653893 -5.284737 7.688151 12.671870 5.673668 6.050712 13.219799 -15.478032 7.839178 -3.491012 2.776713 1.314101 1.028427 4.999191 -7.063760 -12.103662 8.997138 8.287853 3.238745 5.009073 -7.034716 -0.658260 -8.634740 -10.573694 8.720741 1.060046 -1.355238 8.547353 7.903014 21.376846 -10.176645 3.120432 4.775596 -1.942887 2.124362 0.709555 -16.991641 7.201554 0.887976 5.117423 15.953690 -0.483248 -5.406451 4.025545 -2.266021 0.594607 -10.723303 8.762289 -10.356470 -1.051350 -8.152763 1.506574 -5.751341 -5.996971 -4.993604 -1.906980 16.924829 -11.001191 -11.572687 14.231925 -2.986999 4.624968 -15.811846 12.890823 -8.131436 10.719657 -2.299147 -6.762411 -0.644465 -3.611409 -1.729150 -0.549723 5.022571 -5.627498 6.364123 15.018462 3.168713 1.531061 3.417547 7.573874 -3.396966 3.135308 -8.622479 10.194807 -0.671121 -5.475053 -2.822117 -6.824152 5.223602 -5.337257 -2.357033 8.737898 11.978007 0.136479 4.213271 6.843084 5.479219 -9.614661 6.399261 3.539273 8.073693 -7.312832 -3.365516 -0.852143 2.834745 -3.173958 7.760046 -16.295784 -14.651240 -16.623624 -14.679551 -8.459189 -0.327166 8.837291 -0.520615 0.236120 -13.195665 -10.749196 13.538539 -6.551573 6.654438 10.034705 9.590193 12.348430 13.047625 -3.412327 -2.861594 -0.975561 2.461589 -6.674759 -2.063799 -9.278279 11.675189 -4.399013 8.195895 11.367535 -2.144798 5.436386 -3.973880 12.230893 -9.280814 18.804636 7.909650 -8.138876 5.843401 4.339146 13.111800 -2.702302 -9.710822 -PE-benchmarks/graph-coloring.cpp__Graph::Graph(int) = -0.095979 -2.267847 2.871178 1.668742 -0.457873 1.676422 1.325861 -1.355719 1.308269 0.659367 -0.858477 0.550904 -1.606519 -1.030043 0.173252 -0.236953 -2.060444 -1.519766 0.139369 -0.668738 -0.358266 -1.534393 -0.510638 1.677049 0.473040 1.010871 0.079684 -0.135427 -2.459574 -0.633033 1.197444 -0.126621 0.679388 2.309849 1.630806 -2.035246 1.498935 1.556992 -0.193315 -2.558463 -0.033952 -0.145055 -0.814214 0.534219 0.369921 0.556388 0.420222 1.918562 -0.297569 0.329314 0.147668 -1.358417 0.228806 2.444110 0.785962 1.999492 2.230763 -0.205122 1.218865 1.259539 0.726761 -0.277871 0.629516 1.454067 -0.238737 0.335689 0.547900 -1.183201 -1.380734 1.262023 0.544978 -1.607784 -0.365840 -1.337303 -1.441946 -0.213141 -2.750659 1.974262 3.084754 -1.584940 2.669416 1.127071 2.108289 -0.874479 2.153173 -0.174095 2.524667 0.810721 -1.453760 0.668404 -2.555292 -2.168911 0.113658 -0.445328 -1.104809 -0.236480 1.386814 -2.368034 -2.212793 1.802435 0.079351 -0.270351 -0.870022 0.395403 1.081694 0.369897 -1.492597 -1.979373 -1.453911 1.530042 -1.874640 -0.194909 0.129673 1.459899 -0.680228 -0.316249 -1.049916 -0.116349 1.803130 -1.138190 -0.513436 2.343131 -0.842499 1.498813 -0.385899 -0.567291 -0.042325 0.866259 0.628133 0.052305 0.975437 -0.725342 -1.542577 1.155413 0.158293 1.340636 0.407795 0.239158 1.575732 1.315169 0.146387 1.257263 -1.189025 1.186264 0.030065 -0.495734 -1.584399 -1.286546 -0.578610 -1.905091 0.297577 -1.248387 -1.072026 0.571968 1.835538 2.154456 -0.509946 0.957896 -1.507454 0.791524 -0.455455 0.371251 -0.709726 -0.036918 0.556266 -1.119017 -1.376509 0.238351 0.787280 0.453918 1.168296 -1.497879 -0.667313 -1.308698 -2.152850 0.670409 0.746882 -0.162878 1.513361 1.621516 0.909434 -1.875740 -0.270969 -0.058203 -0.078397 -0.202491 -0.402191 -2.082959 0.789955 0.174740 0.864806 1.702490 -0.223301 -0.065794 0.363358 -0.311991 0.257356 -1.245231 0.525258 -1.323600 -0.102697 -0.856490 0.794836 -1.176330 -1.158013 -1.165934 -0.685772 2.367730 -1.187357 -1.987191 2.152755 -0.819077 1.521450 -1.756593 0.972325 -0.804808 1.619240 -0.027215 -0.317000 -0.502706 0.193996 0.038368 0.504923 0.382608 -1.047864 1.097380 1.581149 0.196626 0.778798 0.910018 0.998492 -1.442644 -0.916858 -1.565437 1.420812 -0.229315 -0.913996 -0.139321 -1.052747 1.327816 -0.089551 -0.201941 1.000656 1.040354 0.053563 0.372845 0.763984 -0.833019 -1.196992 0.297533 0.833073 1.239485 -1.033632 -0.347122 -0.541320 -0.011795 0.154590 0.037242 -2.195318 -1.620386 -1.958178 -1.667918 -1.566025 -0.844904 1.066708 0.723960 0.335404 -1.829895 -1.099580 0.650770 -0.659007 -0.113656 1.323815 1.503194 2.031762 1.739120 0.078633 -0.016480 0.320542 0.788353 -1.752451 -0.416224 -1.136418 0.352538 -1.794573 1.756711 1.435500 0.893011 1.084276 -0.553660 2.232983 -1.911537 1.726873 1.809489 -1.804874 0.014147 1.607751 1.502291 -0.151153 -1.539419 -PE-benchmarks/graph-coloring.cpp__Graph::~Graph() = -0.043418 -1.187605 2.458048 2.080119 0.073135 1.175191 -0.415112 -1.591647 1.528990 1.124546 -0.817160 0.576719 -0.922131 -0.091460 0.256163 1.219478 -1.637719 -1.060861 -0.193233 -0.743601 -0.271489 -1.255576 -0.194848 0.845211 0.557044 0.788088 -0.853761 1.044937 -0.875609 -2.655139 0.210514 -0.228541 0.669653 0.579397 0.788370 -1.828338 2.174605 1.590417 -0.247309 -1.983250 0.075290 -0.699262 -0.498502 0.107284 -0.160631 1.084921 0.093634 0.288011 0.447790 0.599725 0.337307 -0.010163 0.850098 1.209032 -0.031647 1.616387 1.033168 -0.084672 0.188000 0.590009 0.406293 0.397403 0.987699 1.109226 -0.390516 -0.936550 -0.023680 0.149261 -1.268829 1.243432 -0.411060 -1.273050 -0.937019 -0.880686 -1.159865 -0.120372 -1.094846 1.435923 2.121199 -1.045012 1.486013 0.768356 0.940613 -0.148776 1.374086 -0.511056 2.245868 0.721091 -0.928237 0.059819 -0.567811 -1.877209 0.616902 -0.269342 -1.078206 -0.354222 0.404291 -2.715842 -1.776269 0.871786 0.393987 -0.345788 -1.451656 -0.347051 1.354657 0.338982 -0.100949 -1.429084 -0.152009 1.059872 -0.703944 -0.842890 -0.569275 0.042947 -0.222535 0.711617 -1.842093 -0.171998 0.899983 -0.594009 -0.318312 1.422337 -0.256263 0.214924 -0.462296 0.145705 -0.148031 1.037549 -0.249805 1.121989 0.284006 0.228206 -0.933490 1.356980 0.237273 -1.120763 -0.390869 0.354543 0.223216 0.573933 -0.798899 1.028074 -1.381637 0.930353 1.305923 0.083398 -1.148255 -0.955772 -1.204375 -1.739186 0.585035 -1.004445 -0.999069 0.660655 1.424557 0.846276 0.709473 1.089286 -1.649407 0.196742 -0.356450 0.603441 0.692611 -0.401815 0.565068 -0.853999 -1.124816 1.238505 0.985959 0.013803 0.733808 -0.672451 0.003469 -0.803476 -1.007583 1.606522 0.334360 0.623079 1.525897 0.851633 1.928242 -0.665014 0.479658 0.427652 -0.095795 0.343500 -0.421435 -1.674825 0.645954 0.296405 1.694839 1.914994 -0.245052 -0.316338 -0.064145 0.174114 0.474695 -1.155289 0.746866 -1.330105 0.319064 -0.510209 -0.096534 -0.612837 -0.834577 -0.628446 -0.273305 1.772766 -1.025025 -1.671963 2.095387 -1.342952 1.014645 -1.772960 0.338911 -1.022056 1.455751 -0.199207 -0.081459 -0.206989 -0.972709 -0.631171 0.224112 0.852269 -0.579615 0.596086 0.993551 0.319181 0.168092 0.322085 0.585808 -0.549933 0.421184 -0.980339 1.369065 -0.082749 0.249341 -0.411921 -0.798515 0.452857 -0.399451 -0.321111 0.408430 1.040123 0.048231 0.256369 0.895159 0.342346 -1.033761 1.228991 0.058851 0.269065 -0.831081 -0.496504 -0.032342 0.023182 -0.101554 0.518414 -1.809193 -1.213617 -2.336685 -1.340801 -0.809158 -0.184341 0.823330 0.197010 -0.110031 -1.144494 -1.159198 2.092555 -0.410144 0.773762 0.612530 1.022666 1.083085 1.397168 -0.020676 -0.223233 -0.829747 -0.405816 -0.865994 -0.574483 -0.843070 1.458515 -0.382418 0.958984 1.463256 -0.217815 0.558201 -0.129812 0.434614 -0.907613 1.439091 0.958803 -0.776248 0.426360 0.664041 1.150831 -0.672274 -1.204822 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::~list() = -0.156841 -0.373990 0.605491 0.492285 -0.008479 0.257556 0.057895 -0.419974 0.675973 0.152770 -0.117451 0.036386 -0.480467 0.178459 -0.264086 0.301693 -0.445860 -0.462191 -0.080958 -0.321325 -0.275480 -0.491239 0.128752 0.052131 0.162067 0.104419 -0.274481 0.102934 -0.520161 -0.294780 0.368516 -0.217715 0.191694 0.016587 0.088622 -0.825867 0.464210 0.310798 -0.165362 -0.499170 0.021029 -0.407057 0.155385 -0.216825 0.023280 0.106142 0.030593 0.212402 0.393277 0.059536 0.235212 -0.004130 -0.091630 0.825784 -0.450350 0.392744 0.131117 0.049736 -0.107945 0.167087 0.132771 0.104358 0.297186 0.408253 -0.256212 -0.284533 -0.072140 -0.224455 -0.483488 0.466431 -0.140545 -0.045468 -0.450870 -0.159473 -0.405820 -0.203914 -0.729158 0.355682 0.799856 -0.450621 0.442653 0.166519 0.391895 0.046070 0.355192 -0.038229 0.628335 0.119479 -0.408329 0.042570 -0.244773 0.028870 0.008579 -0.046692 -0.143297 -0.439353 0.211300 -0.576930 -0.585116 0.213356 0.086901 0.119895 -0.368528 0.050466 0.326825 0.151385 -0.350336 -0.616034 -0.117501 0.155643 0.037309 -0.141237 0.150572 -0.235944 -0.094748 -0.276047 -0.556212 -0.235275 0.060743 -0.392349 -0.171285 0.528066 -0.239574 0.061983 0.004776 0.074905 -0.101635 0.566879 -0.013566 0.309716 -0.114132 0.054045 -0.685833 0.131195 0.162217 0.306094 -0.100189 0.161233 -0.089004 0.067607 -0.388631 -0.056329 -0.222900 0.132424 0.331242 -0.228471 -0.341392 -0.150799 -0.061527 -0.670798 0.169650 -0.408171 -0.161795 0.044125 0.439527 0.524808 0.349922 0.684088 -0.432808 0.220053 -0.144414 -0.009458 0.386495 0.087137 0.338399 -0.256095 -0.375248 0.236555 0.185305 0.025913 0.194163 -0.285289 -0.034002 -0.445226 -0.062849 0.232027 0.259426 -0.034556 0.439749 0.205289 0.243722 -0.639105 0.268875 0.282998 0.034496 0.141440 -0.065111 -0.568934 0.348320 0.109767 0.079150 0.222957 -0.082443 -0.209549 0.076209 -0.136457 0.302217 -0.419798 -0.031045 -0.349812 -0.138153 -0.418786 0.259045 -0.211152 -0.213471 -0.099740 -0.116221 0.519502 -0.351342 -0.287406 0.604397 -0.007890 0.390823 -0.474240 0.315739 -0.324658 0.535402 -0.199324 0.045340 -0.061471 0.179040 -0.059512 0.044953 0.280465 -0.144766 0.194551 0.499734 0.182905 0.189663 0.170869 0.467800 -0.042566 0.132955 -0.150748 0.446699 -0.005651 -0.176198 0.172020 -0.290161 0.118435 -0.086471 0.119504 0.538529 0.532280 0.098212 0.371655 0.285553 0.264459 -0.259255 0.204670 -0.071001 0.239471 -0.276172 -0.014479 0.004503 0.135824 -0.233964 0.123873 -0.549479 -0.715878 -0.471948 -0.357133 -0.071809 -0.120492 -0.012805 -0.012193 0.071118 -0.422657 -0.267720 0.401426 -0.276688 0.431809 0.098480 0.237926 0.371084 0.612820 -0.311722 -0.176998 0.068780 -0.031391 -0.163340 -0.011408 -0.397625 0.407618 -0.407886 0.212941 0.432140 -0.204004 0.023427 0.158135 0.345745 -0.302635 0.615752 0.320473 -0.142256 0.461041 0.382560 0.746402 0.250179 -0.318471 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::~_List_base() = -0.004984 -0.904429 1.973330 1.618572 -0.209072 0.603763 0.201538 -1.396566 1.469698 0.501547 -0.244918 0.271430 -1.067414 0.488523 -0.486438 1.034986 -1.397893 -0.927786 -0.419509 -0.986434 -0.616738 -1.082559 0.569320 0.242105 0.653518 0.607510 -0.892435 0.057362 -0.824527 -1.459718 1.015086 -0.373701 0.759491 0.163555 0.145670 -2.880176 1.563232 1.051976 -0.440097 -1.318876 0.269490 -0.591721 -0.094475 -0.397289 -0.419265 0.342477 -0.139827 0.589168 0.843475 0.414687 0.511497 0.365398 0.415681 2.246290 -0.841372 1.004545 0.478362 0.034207 -0.241665 0.338974 0.404962 0.505059 0.731533 0.951502 -0.147094 -0.937893 -0.188662 -0.496795 -1.438538 1.224606 -0.246542 -0.444955 -1.103665 -0.441297 -0.880993 -0.230217 -1.279965 1.149148 1.976621 -1.090304 1.077059 0.285918 0.444680 -0.158553 0.544861 -0.135835 1.418942 0.476229 -0.596500 -0.062665 -0.412990 -0.491859 0.343206 -0.130050 -0.718884 -1.504347 0.683830 -1.398315 -1.429776 0.530249 0.524041 -0.135414 -1.051187 -0.380059 0.721473 0.430740 -0.662059 -1.349062 -0.396235 0.443008 0.133453 -0.517730 -0.080199 -0.128172 -0.287966 -0.281088 -1.502187 -0.308063 0.142186 -0.775262 -0.333811 1.037325 -0.385804 0.049778 -0.130334 0.325126 -0.350303 1.245689 -0.140022 0.971628 0.138788 0.510257 -0.830206 0.336291 0.572875 0.573629 -0.193921 0.010122 -0.401967 0.374198 -0.848717 0.218615 -0.448187 0.390508 1.270912 -0.317601 -0.975391 -0.401049 -0.309743 -1.869107 0.375935 -1.095324 -0.482810 0.537327 1.082156 0.856399 0.847438 1.416873 -1.361921 0.589311 -0.224683 0.044440 0.859065 0.160209 0.651455 -0.591819 -1.145166 0.686178 0.398248 0.285697 0.296982 -0.434298 -0.056363 -0.932422 -0.496079 0.740311 0.538624 -0.145191 0.897491 0.651755 1.566058 -1.216267 0.509991 0.746406 -0.174877 0.275945 -0.078403 -1.552108 0.715128 0.174357 0.388486 1.114045 -0.228577 -0.516806 0.356741 -0.309873 0.431736 -0.930374 0.262212 -0.918251 -0.234711 -1.025338 0.250578 -0.371639 -0.454090 -0.359981 -0.230122 1.447151 -1.226574 -0.977316 1.808060 -0.424934 0.698542 -1.523116 1.248035 -0.706695 0.943467 -0.463656 -0.180742 -0.053289 -0.067572 -0.564000 0.137628 0.649070 -0.297578 0.357565 1.691953 0.385616 0.097281 0.139195 1.064569 -0.233334 0.693308 -0.613830 1.421500 -0.072988 -0.400393 0.019972 -0.618543 0.131848 -0.657704 0.190657 1.259910 1.017487 0.373369 0.766657 0.678646 0.900468 -0.736137 1.079955 -0.015319 0.404223 -0.614416 -0.090118 0.264435 0.485462 -0.616298 0.716886 -1.389978 -1.702533 -1.591611 -1.173756 -0.344450 -0.251842 0.495608 -0.318109 -0.108835 -1.054209 -1.007943 1.235430 -0.589159 0.864291 0.653187 0.626581 0.900936 1.441795 -0.652783 -0.024064 -0.108316 0.085418 -0.222950 -0.319386 -0.865069 1.108697 -0.726092 0.412926 1.307515 -0.380715 0.395448 -0.111046 0.970715 -0.774407 1.647716 0.650404 -0.390340 1.039321 0.797140 1.450560 0.420479 -0.817781 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_clear() = 0.519774 -2.398489 6.529442 5.200102 -0.176310 1.755511 1.064042 -4.937431 4.192507 2.448623 -0.566055 0.869050 -2.914074 1.413298 -2.027777 3.535988 -3.716084 -2.467614 -1.834369 -3.613644 -1.591665 -2.929154 2.124557 0.334889 2.407592 1.090071 -2.955908 -0.296764 -2.458998 -6.106283 2.763316 -0.565456 2.214701 -0.975051 -0.051338 -8.323586 5.387294 4.058273 -1.469809 -3.789794 1.356490 -1.074305 -1.414928 -0.120233 -1.105258 1.074037 -1.058242 1.463794 2.221446 1.830095 2.460996 2.177118 2.082622 7.062833 -2.472768 3.218931 1.491302 0.428512 -0.535446 1.704315 1.095372 2.106650 1.820875 2.506990 0.565472 -3.047376 -0.477649 -0.778595 -4.204150 3.649490 -0.862975 -2.540281 -2.875166 -1.256502 -2.457379 -0.122968 -3.537207 3.087226 5.493398 -2.842200 2.980775 0.701672 0.378307 -0.911129 0.970092 -0.650081 3.883403 1.545539 -0.816680 -0.971691 -1.018511 -1.603745 1.334591 0.004534 -2.999803 -4.792579 2.711268 -3.866867 -4.235858 1.390041 2.058473 -1.375185 -3.151350 -1.359673 1.538837 1.018828 -1.404576 -3.672024 -1.497110 1.796070 0.567545 -1.734280 -0.689015 -0.584159 -0.719032 0.142521 -4.374652 -0.249582 0.251501 -1.760515 -1.811046 2.608579 -0.687467 -0.270208 -0.491876 1.410893 -1.178086 2.619987 -0.862324 3.538142 0.838130 2.420505 -2.505464 1.211551 2.066227 0.633401 -0.515322 0.464950 -1.578986 1.314474 -2.330218 1.860099 -1.866885 1.223550 4.199488 -0.898593 -2.762632 -0.991558 -0.578242 -5.165596 1.025958 -3.024077 -2.183908 0.752942 3.096909 2.067209 2.412458 3.901770 -4.303493 1.561092 -0.157424 0.066643 2.240697 -0.701158 1.500076 -1.616629 -3.987186 1.836355 1.458891 0.852162 0.431310 -0.348855 -0.309770 -2.619074 -1.510424 2.018676 0.980780 -0.944680 2.612354 2.411371 6.111370 -3.538671 1.421072 2.321915 -1.280289 0.791727 -0.366565 -4.806973 1.531185 0.647228 1.915315 4.474466 -0.494605 -1.260802 1.297259 -1.102237 0.863159 -2.520676 1.423189 -2.844515 -1.015318 -2.649627 0.092213 -0.705608 -1.136810 -0.959932 -0.764469 4.188333 -3.634743 -3.395259 5.815201 -1.714699 0.555732 -4.878070 4.520926 -1.839651 1.595858 -1.058322 -0.337800 -0.233312 0.158865 -2.591595 0.583960 1.663053 -1.258070 1.723305 6.027404 0.935839 -0.129231 -0.330644 2.990630 -1.503762 2.394869 -2.531986 4.821576 -0.288177 -1.767518 -0.699566 -1.643143 0.056291 -2.787615 0.357448 3.238331 2.377950 0.753950 1.472026 1.971356 3.342816 -2.085318 4.656109 0.362958 0.544818 -1.565848 -0.322995 1.442570 0.812791 -1.809999 2.738783 -4.109711 -4.194013 -4.650979 -4.197750 -0.360523 -1.124906 2.073474 -1.369358 -0.870973 -3.482883 -3.853500 4.090871 -1.527286 1.566039 2.552962 1.986179 2.273990 4.023544 -1.575806 1.407879 -1.280842 0.350276 -0.377948 -2.415017 -1.481854 3.462681 -1.431325 0.891297 3.734526 -0.672415 1.974132 -0.687922 1.919208 -2.327454 4.820600 1.559716 -0.572998 2.963621 2.182619 4.512253 0.357732 -2.259564 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/graph-coloring.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/graph-coloring.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.351616 -1.075508 1.912380 1.659036 0.305984 0.788265 0.483425 -1.350759 1.814974 1.205004 -0.103514 0.376660 -1.206879 0.540920 -0.504145 1.220381 -1.068831 -1.244437 -0.288781 -1.074939 -0.874827 -1.225376 0.384812 -0.043965 0.620208 -0.233546 -0.952840 -0.155338 -1.472003 -1.572047 0.899134 -0.457618 0.674147 -0.615272 0.061759 -3.087803 1.529991 1.107659 -0.551355 -1.545767 0.226318 -0.888916 0.099049 -0.092267 0.168619 0.305499 0.013699 0.561328 0.993967 0.537045 0.998280 0.427532 0.155831 2.945548 -1.206307 1.299592 0.568391 0.134739 -0.357099 0.747392 0.426305 0.382976 0.953065 1.064199 -0.357098 -0.921042 -0.139067 -0.371116 -1.487269 1.265320 -0.008696 -0.597058 -1.081076 -0.342430 -0.822960 -0.532346 -1.784740 0.877430 2.246270 -1.162118 1.341934 0.500429 0.948630 0.084560 1.007544 -0.203424 1.796781 0.417565 -0.985928 -0.228764 -0.789231 -0.163834 0.129050 0.168479 -0.610311 -1.566899 0.710526 -0.900405 -1.697879 0.801102 0.374106 0.136420 -1.532337 -0.259693 1.037114 0.469121 -0.917327 -1.742569 -0.939912 0.602973 -0.179151 -0.663420 0.274491 -1.043262 -0.298959 -0.414786 -1.573666 -0.500837 0.345758 -0.955561 -1.116225 1.422282 -0.586683 0.136607 -0.117275 0.402237 -0.394472 1.044646 -0.116110 1.151097 0.215317 0.227795 -2.326376 0.384554 0.609176 0.683520 -0.108371 0.325595 -0.521296 0.422485 -0.992795 0.591629 -0.530744 0.846788 1.419752 -0.413886 -1.038002 -0.555364 0.469751 -1.574189 0.621441 -1.161593 -0.483093 -0.249959 1.309103 0.979329 0.949575 1.551303 -1.355943 1.044598 -0.361372 0.215862 1.051304 -0.080771 0.834245 -0.742987 -1.236059 0.511613 0.967780 0.088514 0.340668 -0.614824 -0.043319 -1.097497 -0.570998 0.311645 0.498251 -0.368727 1.149036 0.701644 2.293151 -2.061118 0.647973 0.748388 -0.221536 0.422413 -0.319245 -1.731765 0.650346 0.400609 0.251359 1.322984 -0.196323 -0.969582 0.312719 -0.245873 0.577534 -0.930717 0.299509 -1.096112 -0.560023 -0.852299 0.304430 -0.673105 -0.532193 -0.420134 -0.194915 1.637318 -0.896430 -1.283301 1.822664 -0.689768 0.407348 -1.935456 1.784985 -0.869492 0.580376 -0.877005 -0.027441 -0.350015 1.089350 -0.606873 0.457332 0.815523 -0.738190 0.860649 2.070675 0.430436 0.602250 0.183461 1.218332 -0.198497 0.282874 -0.701534 1.697711 -0.223169 -0.488895 -0.064758 -0.770910 0.531253 -0.425873 0.220258 1.022821 1.248076 -0.112263 0.602703 1.033741 0.863232 -0.825829 1.144131 -0.040681 0.660261 -0.693832 0.025942 0.073181 -0.001994 -0.609055 0.777321 -1.626602 -1.421050 -1.015832 -1.281019 -0.063195 0.311523 0.187839 -0.164085 0.033984 -1.643040 -0.911891 1.140346 -0.699036 0.625819 0.713458 0.802688 1.045412 1.659797 -0.628683 -0.204458 -0.397999 -0.389877 -0.498486 -0.724544 -0.587580 1.188565 -0.925526 0.782056 1.007764 -0.224706 0.312639 0.142325 0.965790 -0.803902 1.870092 0.855774 -0.156211 1.065372 1.150586 2.514405 -0.114639 -0.889306 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/graph-coloring.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.195939 -1.545373 3.052690 2.565653 -0.222743 1.190906 0.334229 -2.294599 2.559335 0.419196 -0.096315 0.555037 -1.807796 0.915758 -1.175914 1.308289 -2.225107 -1.830324 -0.908706 -1.864470 -1.379848 -1.708544 0.535658 0.546618 0.949754 0.164597 -1.600076 0.003295 -2.339877 -1.097186 1.851625 -0.512770 1.120690 -0.457766 0.344381 -5.159698 2.224571 1.682900 -0.775357 -2.251260 0.405028 -1.638737 0.057380 -0.924190 -0.607448 0.060731 -0.426337 0.918050 1.565697 0.224950 0.692256 1.056965 -0.248404 4.688773 -1.824297 1.848512 0.831476 0.219610 -0.596317 0.847207 0.582438 0.877087 1.327981 1.303707 -0.635425 -1.695891 -0.170813 -0.919600 -2.092742 2.077474 0.075046 -0.780633 -1.598580 -0.619537 -2.064658 -0.831315 -1.557968 1.893311 3.184564 -2.174021 1.676204 0.324637 1.122775 0.233795 1.585613 -0.232944 2.852497 0.630734 -1.077671 -0.195698 -1.718876 0.023791 0.293476 -0.392643 -1.176519 -3.044597 1.165553 -2.490805 -2.648010 0.964933 0.837849 -0.145180 -1.975981 -0.630637 1.390256 0.566784 -1.410374 -2.427624 -1.022115 1.229317 0.113501 -0.938835 0.454741 -0.957208 -0.135119 -1.310879 -2.566781 -0.316523 0.508385 -1.058662 -1.106134 2.317947 -1.219356 -0.080502 -0.198088 0.588792 -0.826979 2.000874 -0.555972 1.308707 -0.039816 0.392907 -2.182683 0.263087 0.682188 1.709923 -0.411118 0.154808 -0.777323 0.717219 -1.592132 0.362225 -0.689924 0.870861 1.261823 -0.694275 -1.577333 -0.788040 0.066616 -2.847332 0.419873 -1.718068 -1.177681 0.604550 1.924394 2.204836 1.416445 2.342357 -1.645768 1.435754 -0.291332 0.034613 1.788757 -0.125119 1.238705 -1.171572 -1.996886 0.994645 0.415064 0.620787 0.404480 -0.641477 -0.193718 -1.747228 -0.993526 0.418664 1.134504 -0.126331 1.894129 1.389352 2.072857 -3.236951 1.137402 1.120202 -0.648408 0.679411 -0.461642 -2.464914 0.820716 0.720631 0.017681 2.120662 -0.470442 -1.290649 0.446626 -0.254853 1.112693 -1.561930 0.135857 -1.580156 -0.767885 -1.783814 0.387532 -0.922448 -0.701311 -1.109620 -1.188045 2.606141 -2.413193 -2.059580 3.149967 -0.456979 1.406611 -2.976081 1.851027 -1.238606 1.817091 -0.833175 0.018997 -0.280575 0.781409 -1.369398 0.899447 1.206674 -1.235615 0.830483 2.984280 0.684742 0.884232 0.125495 1.978334 -0.407021 0.992307 -1.331773 2.645618 -0.292332 -1.169066 0.179615 -1.152430 0.356187 -0.880794 0.849215 1.976555 1.873846 0.957914 1.140427 1.745924 1.426653 -1.203225 1.361192 -0.336056 0.448162 -1.055942 -0.069171 0.391185 0.555625 -0.794637 0.910608 -2.567344 -3.023443 -2.648679 -2.099495 0.301449 -0.477242 0.113836 -0.360075 -0.270856 -2.426458 -1.572974 1.298652 -1.175777 1.791573 1.239297 1.212805 1.676046 2.735611 -1.478318 -0.011903 0.307326 0.008070 -0.435219 -0.681085 -1.827022 2.126966 -1.309741 1.062561 2.349287 -0.476391 0.911421 0.238857 1.549538 -1.282345 2.937442 1.147017 -0.937238 1.612231 1.758567 2.866396 0.882810 -1.442561 -PE-benchmarks/graph-coloring.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.561600 -3.242904 6.218073 5.399274 0.035662 2.551137 1.057692 -4.893150 5.178705 1.498221 0.072411 1.266915 -3.852132 1.886549 -2.582325 2.902998 -3.946097 -3.838627 -2.065472 -3.961261 -2.726655 -3.487522 1.386696 0.985989 2.158824 -0.325053 -3.461258 -0.441919 -5.365421 -2.890806 3.629005 -0.844222 2.455680 -1.561210 0.253677 -10.354507 4.613142 3.970003 -1.629786 -4.632069 1.125030 -3.255305 -0.145214 -1.371871 -1.054023 0.152361 -1.140689 1.108961 3.223813 0.700486 2.083466 2.590998 -0.326213 9.467332 -3.907151 4.018507 1.623625 0.631298 -1.296386 1.942406 1.152139 2.073108 2.877571 2.566919 -1.150131 -3.541560 -0.422538 -1.505640 -4.553551 4.202043 -0.061490 -1.949890 -3.107316 -1.130898 -4.097174 -1.645101 -2.392995 3.454433 6.410218 -4.181463 3.528606 0.530720 1.876628 0.139384 3.141388 -0.627805 5.491846 1.296032 -1.949336 -0.784711 -3.440409 0.298657 0.450110 0.032721 -2.703142 -5.729524 2.756588 -4.547739 -5.562900 1.904886 1.772484 -0.515791 -4.614154 -1.208108 2.556748 1.255987 -2.819508 -5.099968 -2.479330 2.743796 0.518500 -2.214168 0.689630 -2.395046 -0.430824 -2.527973 -5.146296 -0.664676 0.994052 -2.295549 -2.971015 4.629022 -2.554082 -0.161917 -0.435320 1.478987 -1.769250 3.618506 -1.358213 3.017854 0.336314 0.864956 -5.009480 0.030791 1.456203 3.576706 -0.971311 0.479793 -1.908427 1.428248 -3.105070 1.240980 -1.435146 1.900888 3.085995 -1.384851 -3.120408 -1.380178 0.708409 -5.747336 0.841085 -3.538919 -2.190097 0.823243 3.940764 4.010443 2.854934 5.298399 -3.317564 3.012681 -0.251413 -0.194993 3.743609 -0.704306 2.442291 -2.424064 -4.506922 2.046107 1.150300 1.192305 0.677539 -0.784854 -0.534398 -3.535140 -2.257565 0.608548 1.939713 -0.513389 3.892394 2.891530 4.856365 -6.783236 2.433111 2.248665 -1.580640 1.625720 -1.177364 -5.304211 1.427355 1.517790 -0.009992 4.789733 -0.930145 -2.844893 1.152431 -0.662925 2.245876 -3.315265 0.840247 -3.513186 -1.544170 -3.658518 0.063514 -1.574656 -1.494409 -2.154528 -2.216606 5.374264 -4.361071 -4.531509 6.396487 -0.839149 2.188647 -6.612204 4.070203 -2.493860 3.206275 -1.874775 0.165662 -0.620872 2.302426 -2.983526 1.742933 2.499302 -2.884792 2.205808 6.708226 1.217885 1.645953 -0.001259 3.991835 -0.831327 2.057966 -2.972267 5.794457 -0.496589 -2.655515 0.176319 -2.407290 0.778947 -2.119059 1.452191 3.846856 3.902489 1.531902 1.948810 3.703036 3.254937 -2.431011 3.355477 -0.465424 0.935313 -1.964936 -0.066442 0.969720 0.939844 -1.573154 2.217230 -5.228701 -6.018643 -4.680274 -4.926396 1.069117 -0.782154 0.439184 -0.851946 -0.729112 -5.277280 -3.493696 2.418343 -2.412889 3.867083 2.682544 2.718402 3.309283 5.515051 -3.018499 0.474583 0.143879 -0.014968 -0.863243 -2.088873 -3.057020 4.207107 -2.406700 2.181293 4.515824 -0.670881 2.129566 0.412888 2.838820 -2.617663 6.167747 2.227047 -1.489994 3.663945 3.328853 6.169199 1.252068 -2.863034 -PE-benchmarks/graph-coloring.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/graph-coloring.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -7.575563 -12.268539 9.032028 8.844212 3.602690 8.203855 5.720215 -2.014401 4.714862 10.228521 -2.897768 6.957514 -6.101157 -3.844886 0.116480 1.820190 -0.621082 -7.340696 2.072677 -1.316374 -0.125281 -6.657484 -7.050393 9.191126 1.189111 -1.467475 -2.563550 0.218902 -15.026709 -13.589198 -1.241802 -0.366368 4.710891 -3.679681 2.534873 -15.228155 6.692984 13.041691 0.246398 -13.012602 -0.255313 -2.928144 -2.302317 5.102242 -1.243468 4.635018 3.975546 -1.714755 -1.895151 1.920130 3.227188 -1.458823 5.826770 13.404165 1.513519 11.924814 11.604321 0.352633 3.704339 2.008005 2.544749 -2.339977 5.753607 5.571939 -3.003881 -0.229569 -0.764614 2.000008 -7.033893 1.302858 2.784002 -6.590821 -2.885175 -1.484600 -6.527917 -3.279068 -0.843749 -0.330687 13.367599 -3.081184 17.018176 6.838755 9.152202 -0.744251 9.191969 -1.206797 8.521936 3.364826 -7.818545 1.136218 -7.320656 -2.544856 -0.554385 10.012428 -7.504229 2.446070 4.310711 -5.200110 -11.384704 7.398668 -3.229623 -1.816885 -7.136762 0.338784 4.811924 2.806328 -3.717591 -10.537553 -10.037302 6.422493 -6.014973 -6.116888 -1.750212 -0.251938 -0.207029 1.350690 -5.980873 -1.590576 8.693676 -6.613136 -6.770903 8.007878 -2.232660 8.130523 -1.669600 0.088786 0.091309 0.132715 5.319592 2.407662 1.809262 -6.727036 -17.062555 0.019738 -0.092461 0.856595 -4.397188 -1.864621 5.044982 4.267423 6.090831 8.465451 -2.939034 8.890346 5.667118 0.428374 -1.964179 -9.893383 -0.197261 -5.166836 2.766365 -4.921006 -4.243940 -0.910091 6.756833 -1.831144 -0.291616 6.628936 -4.936687 8.158199 0.015480 1.625891 -0.372713 -3.834424 1.753992 -4.060450 -7.423868 4.367481 9.401208 3.457550 1.750907 -3.361283 -1.036810 -1.077482 -7.985667 3.449977 -1.682569 0.403525 10.030154 4.275038 23.406840 -8.810607 1.019355 -2.989059 -2.394750 2.379995 -2.638954 -9.647409 3.015398 1.976286 1.182580 11.993113 -1.145087 -4.414455 3.222967 0.223303 0.529680 -7.895247 12.147343 -7.759132 -0.956412 -2.083761 -3.964822 -4.886150 -4.949449 -7.204604 1.022096 11.214635 -4.786479 -11.194577 2.975342 -1.414027 0.390555 -13.266850 9.938612 -4.501106 5.205162 -4.716393 -3.408306 -0.342829 6.980927 1.216966 0.412591 5.017093 -9.885913 8.017836 6.861270 0.374497 1.951322 3.746276 2.169541 -1.349758 -4.576912 -7.113199 5.778681 0.314312 -3.009999 -3.713636 -4.394191 8.578316 2.762811 -2.609394 -2.331949 7.857357 -5.994129 -3.849101 8.291394 -2.606251 -3.981323 2.810552 0.826696 7.752525 -3.773524 -0.905274 -6.841101 -1.073568 3.062472 4.238676 -10.575949 -2.345908 -2.511165 -10.071121 -4.434347 5.220837 4.359096 5.493311 2.056367 -15.044379 -6.916241 9.606944 -2.469755 3.451432 5.186792 6.965474 7.972777 3.430164 4.333537 -3.300046 -3.882020 -0.608097 -6.370318 -3.746596 1.129060 2.348215 -5.447485 9.120179 1.689027 1.554884 3.662967 0.058297 3.180837 -6.259664 12.741470 6.318584 -6.262239 0.733179 4.662817 11.381074 -12.168044 -5.936256 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__sort(int*, int) = -3.933703 -5.870650 4.561193 4.222810 1.586838 3.883053 2.568794 -1.102290 2.487130 4.485173 -1.292375 3.356354 -3.073329 -1.603315 -0.339513 0.780335 -0.560951 -3.721541 0.823932 -0.913456 -0.449313 -3.220508 -3.253130 4.282591 0.613138 -0.816183 -1.519345 0.052818 -7.335433 -6.105032 -0.372660 -0.254526 2.354720 -2.179733 1.162873 -8.348577 3.132201 6.156215 -0.027459 -6.321837 -0.004906 -1.762226 -0.780463 2.119329 -0.943047 1.893469 1.900915 -0.952411 -0.657986 0.819807 1.526489 -0.438530 2.294574 7.249996 0.484488 5.614924 5.413212 0.133417 1.264481 0.957237 1.261721 -1.160784 2.908143 2.529654 -1.634068 -0.300030 -0.265950 0.695220 -3.549600 0.814191 1.156234 -3.149296 -1.287447 -0.916426 -3.586474 -1.839020 0.080073 0.092355 6.516330 -1.901937 7.927699 2.994872 4.349595 0.004882 4.487348 -0.509131 4.269300 1.577620 -3.702887 0.472044 -3.375890 -0.776783 -0.391672 4.697913 -3.480584 0.440276 2.343328 -2.942826 -5.588621 3.590481 -1.396260 -0.737599 -3.889952 -0.182104 2.382002 1.620740 -2.167479 -5.148720 -4.905473 3.173731 -2.589694 -2.860147 -0.472774 -0.397065 -0.127860 0.101379 -3.120704 -0.729746 4.150478 -3.213974 -3.378033 4.191262 -1.370508 3.822251 -0.742853 0.277101 -0.130598 0.670390 2.322517 1.098861 0.408499 -2.984418 -8.187081 -0.508874 -0.109400 0.987284 -2.187530 -0.940804 2.181531 1.979679 2.491409 3.682853 -1.550321 4.147935 3.005067 0.141173 -1.207098 -4.686264 -0.002845 -2.986750 1.029325 -2.512868 -2.076160 0.055057 3.366070 -0.247028 -0.043852 3.823091 -2.301569 3.979732 -0.043303 0.312917 0.099597 -1.934323 1.100983 -2.126320 -3.746080 2.103098 4.324232 1.865608 0.926760 -1.663121 -0.475702 -0.816751 -3.836704 1.576630 -0.241603 0.314749 4.814202 2.247940 10.724428 -4.890123 0.523420 -1.347034 -1.259056 1.202785 -1.386061 -4.731440 1.265625 1.140071 0.174188 5.791040 -0.549651 -2.403476 1.621261 0.004599 0.477873 -3.835526 5.422125 -3.798207 -0.494731 -1.223270 -1.987655 -2.530969 -2.202134 -3.641474 -0.184915 5.527346 -2.856138 -5.564174 1.787968 -0.337657 0.705161 -6.840676 4.582735 -2.229410 3.179926 -2.316350 -1.418299 -0.280818 3.403621 0.468838 0.541208 2.480058 -4.700200 3.659388 3.774274 0.285794 1.199066 1.680917 1.450187 -0.619342 -1.930531 -3.349824 2.949341 0.030371 -1.755497 -1.487605 -2.185821 3.919500 1.298964 -0.855387 -0.788249 3.923319 -2.583807 -1.408714 4.378552 -0.992852 -1.955034 1.314189 0.259758 3.878349 -1.917795 -0.439978 -3.150810 0.080478 1.349748 1.832172 -5.231663 -1.795828 -1.923684 -5.168467 -1.741676 2.387633 1.643707 2.344932 0.866191 -7.149985 -3.256444 4.602100 -1.361498 2.634722 2.523392 3.419792 4.045062 2.051727 1.488701 -1.628068 -1.441882 -0.355327 -3.016870 -1.706697 0.096182 1.261758 -2.793183 4.339277 1.152036 0.633933 1.842716 0.570184 1.463976 -3.075577 6.306170 3.115760 -3.142577 0.665038 2.434913 5.701335 -5.352288 -2.926858 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__printArr(int*, int) = -0.853254 -1.519738 1.514024 1.410282 0.369970 1.025630 0.528611 -0.730774 1.203611 1.044242 -0.580596 0.724402 -1.162053 -0.197218 0.169670 0.376658 -0.735390 -1.205747 0.156313 -0.375054 -0.266393 -1.252683 -0.388940 0.854905 0.278503 0.319297 -0.543107 0.256291 -1.865704 -1.561791 0.481324 -0.222666 0.804523 0.344882 0.359815 -2.650214 1.143172 1.476371 -0.174825 -1.901555 0.027744 -0.788414 -0.228698 0.141276 0.159856 0.764775 0.480388 0.371396 0.173912 0.293145 0.433967 -0.372859 0.262453 1.767252 -0.285412 1.533304 1.383169 -0.083250 0.129176 0.334188 0.342631 -0.126937 1.093668 1.200279 -0.877398 -0.350054 0.146154 -0.165371 -1.456008 0.728987 0.406114 -0.607711 -0.734839 -0.487905 -0.707266 -0.370367 -0.151825 0.413230 2.173376 -0.563754 2.169507 0.823323 1.347113 -0.178355 1.280912 -0.222548 1.658867 0.462619 -1.295786 -0.036844 -1.483149 -0.841773 -0.051209 0.955518 -0.712808 0.299434 0.458137 -0.952872 -1.584071 0.749249 -0.203430 -0.102952 -1.478614 0.214635 1.006678 0.513621 -0.394887 -1.612746 -1.124391 0.751441 -0.992647 -0.712206 -0.308218 -0.103120 -0.433942 -0.227065 -1.242303 -0.387688 0.996138 -0.988531 -0.782151 1.313469 -0.799540 0.716050 -0.225762 0.023973 -0.121193 0.658177 0.388302 0.413627 0.704562 -0.842406 -2.230654 0.198441 0.230824 0.799888 -0.550670 -0.272697 0.406416 0.439037 -0.068044 0.637137 -0.472558 1.090403 1.254956 -0.226332 -0.693393 -1.234885 -0.009482 -1.283810 0.571412 -0.903952 -0.154839 -0.012063 1.215549 0.368981 0.400340 1.541540 -1.219164 1.158858 -0.238840 0.247330 0.351989 0.136667 0.576224 -0.761799 -1.056442 0.781411 1.076200 0.209547 0.495389 -0.640285 -0.078080 -0.739479 -1.280479 0.815318 0.071210 0.259771 1.351048 0.696017 2.803692 -1.577720 0.438715 0.107385 -0.041421 0.249693 -0.151833 -1.456150 0.750842 0.262332 0.431944 1.650623 -0.095595 -0.885070 0.093538 0.130499 0.246646 -1.144687 1.128556 -1.102309 -0.009252 -0.597730 -0.111675 -0.723791 -0.881190 -0.649302 0.236052 1.731824 -0.217053 -1.854679 1.023227 -0.600642 0.697009 -2.236877 1.064846 -0.878407 0.941034 -0.867223 -0.343322 -0.199322 0.449631 -0.078826 0.228621 0.723061 -0.953767 0.938935 1.280696 0.311868 0.389156 0.461835 0.563099 -0.064792 -0.278115 -0.806001 0.934790 0.023371 -0.136373 -0.220275 -0.737585 1.086414 0.208536 -0.342738 0.515508 1.545429 -0.399710 0.255734 1.117815 0.067535 -0.745045 0.495824 0.218902 1.008211 -0.583952 -0.284708 -0.572232 0.056682 0.011030 0.597776 -1.570677 -1.154270 -0.346392 -1.789108 -0.592329 0.522877 0.554760 0.618758 0.324867 -1.892470 -0.706396 1.077465 -0.445236 1.472316 0.528852 0.921125 1.086856 0.981825 -0.152635 -0.632395 -0.269623 -0.061691 -1.051822 -0.402056 -0.503506 0.838963 -0.774048 1.201211 0.712790 -0.177857 0.344466 -0.277209 1.317353 -0.881757 1.905684 0.980730 -0.856121 0.455925 0.478621 1.884197 -0.813649 -0.921720 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = -0.947777 -2.912644 3.629677 3.068078 -0.258011 1.630338 0.774956 -1.362603 1.917193 0.887375 -1.075337 1.737245 -2.017186 0.104589 -0.643392 1.032378 -2.418147 -2.195181 0.017971 -0.843986 -0.737542 -1.824758 -0.492043 1.947253 0.969428 1.410520 -1.360979 0.069631 -3.044086 -2.505462 1.078715 -0.607291 1.660037 0.535296 0.742903 -5.956422 2.226892 2.714545 -0.497168 -3.641100 0.427377 -1.393238 -0.373500 -0.611524 -1.025657 0.890589 0.795913 1.105731 0.444100 0.580810 -0.165687 0.030542 1.065363 4.522684 -0.297291 2.613141 2.763860 -0.065458 0.140640 0.047906 0.974872 -0.147253 1.627369 1.695377 -0.858624 -1.225450 -0.424884 -0.885621 -2.329581 1.426873 0.468037 -0.711739 -1.619754 -0.803473 -2.254713 -0.697830 -0.860076 1.774431 4.162352 -2.089878 3.571229 1.152596 2.047746 -0.028462 1.911880 0.036321 2.512032 1.186889 -1.670775 0.136829 -2.065442 -1.053660 0.287659 0.611221 -1.654731 -2.088738 1.405148 -3.019061 -3.107285 1.616185 0.165317 -0.517991 -1.565927 -0.434367 1.566733 1.281684 -1.443400 -2.660163 -1.562156 1.172582 -0.785397 -1.339471 -0.103717 0.519785 -0.340357 -0.575022 -2.809297 -0.196734 1.671227 -1.689008 -0.423013 2.409775 -0.792599 1.357884 -0.505993 0.213367 -0.464254 2.079206 0.814366 0.826544 0.380081 -0.514422 -2.247861 0.440358 0.703904 1.475202 -1.341872 -0.715053 0.474248 1.116150 0.025433 0.582834 -0.801328 1.654437 1.780853 -0.487291 -1.709538 -2.435115 -0.859518 -2.961945 0.484913 -1.911279 -1.047802 1.428737 2.246357 0.962591 0.933648 2.625840 -2.039650 1.810931 -0.240819 0.253078 0.871508 0.154448 1.100608 -1.348458 -2.130974 1.623064 1.339962 1.147574 0.625931 -1.011040 0.075653 -1.399951 -1.884283 1.608978 1.009987 0.184131 2.489646 1.481610 3.754458 -2.409380 0.378483 0.290655 -0.604050 0.355263 -0.230038 -3.003887 1.343097 0.467700 0.480149 2.833478 -0.312867 -1.382269 0.956197 -0.082748 0.453335 -2.009040 1.662404 -1.996739 -0.337607 -1.549744 0.145090 -1.276056 -1.159069 -1.849748 -0.687854 3.498772 -2.677179 -2.665972 2.056709 -0.477905 1.693807 -3.857698 2.174742 -1.553460 2.601253 -0.755510 -0.786872 0.086776 -0.085329 -0.684165 0.209745 1.543950 -1.555355 1.022524 2.395586 0.729307 0.392373 0.812216 1.589829 -0.372817 0.372385 -1.517077 1.893828 -0.234260 -0.937312 -0.218861 -1.187381 1.204123 -0.105448 0.232431 1.519624 2.029478 0.430065 0.998821 2.027789 0.690740 -1.617050 0.850955 -0.165371 1.969991 -1.384887 -0.463752 -0.978762 1.024414 -0.097768 1.247171 -3.230568 -3.039448 -3.019842 -2.864127 -1.053452 0.042880 1.053403 0.272534 0.163075 -3.308705 -1.917200 2.287378 -1.043019 2.231182 1.768382 1.509299 2.430848 2.018220 -0.554071 -0.927792 0.091952 0.519450 -1.066001 -0.202140 -1.684132 1.570421 -1.743334 1.692933 2.406438 -0.546340 0.975056 -0.215587 2.301907 -1.745666 3.911945 1.779992 -2.361281 0.961952 1.653001 2.685818 -0.682300 -1.963136 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__compare(char*, char*) = -1.305750 -2.797101 2.501456 2.570804 1.093968 1.860833 1.200869 -1.067514 1.456892 2.855015 -1.114679 1.401477 -1.889367 -0.583759 0.448087 0.978441 -0.554327 -2.004794 0.511590 -0.448840 -0.176259 -1.739516 -0.823545 1.547843 0.679051 -0.223613 -0.738595 -0.078379 -3.232571 -3.295903 0.023339 -0.383121 1.361348 0.690555 0.401124 -2.701621 1.889838 2.755568 -0.264363 -2.748837 -0.000815 -0.853133 -0.780647 0.808017 0.546415 1.451636 1.065403 0.031131 0.005262 0.985722 1.453537 -0.873734 1.328309 2.233953 0.000828 2.816450 2.400184 -0.103137 0.803365 0.712638 0.730209 -0.383160 1.848741 1.842179 -0.945000 -0.430730 -0.100765 0.159409 -2.013123 0.815014 0.593542 -1.062992 -1.042893 -0.615437 -0.634988 -0.622975 -0.913220 0.107657 3.588862 -0.670199 3.907296 1.971639 2.191633 -0.726188 2.083970 -0.369140 2.360759 0.937114 -2.149862 0.158923 -1.928156 -1.470781 -0.062073 2.346785 -1.498524 1.217818 1.002501 -1.094709 -2.843812 1.649405 -0.430355 -0.233228 -2.042833 0.593428 1.283608 0.644610 -0.737098 -2.632316 -1.820609 0.986263 -1.649221 -1.527680 -0.931298 -0.308604 -0.599581 0.640450 -1.899352 -0.806524 1.715200 -2.052740 -1.474184 1.924340 -0.490858 1.612203 -0.529368 -0.007597 -0.001275 0.397356 0.903532 1.151979 1.346323 -1.303037 -4.224747 0.388899 0.701995 0.177797 -0.876892 -0.170467 0.954495 0.917040 0.554092 2.097068 -0.593277 2.406510 2.059218 -0.198889 -1.116108 -2.162773 0.203917 -1.494040 1.172117 -1.551927 -0.436273 -0.786727 1.999720 -0.272473 0.463980 2.262446 -1.562161 1.948098 -0.344743 0.721555 0.296371 -0.576691 0.851384 -1.238580 -1.814989 1.376127 2.649713 0.088310 0.990961 -1.050870 0.021735 -1.037767 -2.107190 1.132439 -0.545415 -0.274078 2.417194 0.964642 5.281234 -1.919210 0.707372 -0.104314 0.072234 0.504319 -0.276785 -2.711576 1.162992 0.230654 0.773230 2.794177 0.011424 -1.441071 0.404163 -0.090025 0.075177 -1.873026 2.519222 -1.900072 0.095997 -0.673233 -0.108065 -1.078761 -1.581362 -0.691565 1.085494 2.813609 -0.059579 -2.518608 1.140602 -0.586493 0.125720 -3.361010 2.344433 -1.468809 0.985029 -1.450626 -1.118174 -0.273021 1.440994 0.097359 0.053665 1.339934 -1.737045 1.970667 1.862985 0.286094 0.555938 0.999493 0.745509 -0.238451 -0.831372 -1.329127 1.529026 0.323472 -0.289432 -0.904969 -1.234025 1.909943 0.303189 -0.987898 0.117175 2.269874 -1.487873 -0.345906 1.528126 -0.065294 -1.328139 1.074893 0.605758 2.019955 -1.102216 -0.367200 -1.194844 -0.587294 0.137454 1.340560 -2.671385 -1.020046 0.019212 -2.261283 -1.374540 1.513816 1.368231 1.165994 0.563594 -3.087366 -1.453735 1.886777 -0.794157 1.037659 1.175881 1.863695 1.812327 1.133639 0.714350 -1.088145 -1.388374 -0.074231 -1.719585 -0.940378 0.044347 0.975712 -1.133853 2.201374 0.594744 0.122042 0.511035 -0.328373 1.880409 -1.497723 2.975576 1.658897 -1.304702 0.777690 1.112510 2.933611 -2.519400 -1.507044 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -4.116730 -9.055910 9.231621 8.453164 0.870730 5.881674 2.664027 -4.062178 4.511386 4.844007 -3.058139 5.709750 -5.549743 -1.312099 -1.647518 1.499326 -4.223414 -5.471106 -0.349831 -2.314728 -1.304607 -5.242173 -3.805096 6.919630 2.023361 2.668912 -3.317918 0.705664 -10.803915 -8.997642 1.171196 -0.235249 4.310843 -0.209862 2.182948 -13.761992 5.760398 10.436022 -1.026236 -10.413036 0.879382 -3.342545 -2.741645 0.985382 -2.124877 2.835123 1.669025 0.687185 -0.539564 1.269241 1.434985 0.174029 4.551335 11.530544 0.296123 9.197420 9.654084 0.348871 2.041866 1.075665 2.218016 -0.221493 4.832896 4.485850 -2.599923 -2.443973 -0.287908 0.173238 -5.947855 2.949274 2.071240 -4.367130 -3.402428 -3.019660 -6.641949 -1.904277 0.354822 2.330739 11.157786 -3.961832 11.589394 4.689193 5.807153 -0.499844 6.826578 -0.662802 7.608694 3.274082 -5.140713 1.005114 -7.033880 -2.702515 0.758524 5.132207 -6.504426 -2.594840 4.338280 -9.109481 -9.361128 4.961833 -0.237233 -2.557026 -4.467428 -0.703607 3.490101 2.051590 -3.069469 -7.881133 -5.854065 5.543213 -3.603592 -4.551397 -1.384651 0.955468 0.075613 0.378414 -6.756728 0.137725 6.378129 -4.404813 -3.173309 7.065644 -1.612703 4.585022 -1.784862 0.515966 -0.808383 2.458765 2.192733 2.307517 0.915733 -2.250588 -8.470153 0.317632 1.075567 1.550191 -4.320811 -2.099554 2.793430 3.418383 2.614305 5.197742 -3.265250 5.618844 4.188080 -0.396965 -3.149189 -8.076600 -2.562056 -6.924965 1.558475 -3.799413 -4.531457 0.533480 6.121725 1.072450 1.181044 5.428860 -4.037731 4.710260 0.229216 0.877346 1.230858 -2.303186 2.363784 -3.829623 -6.923787 4.665822 5.359400 2.987407 2.112440 -1.809898 -0.597925 -2.385312 -5.792805 3.846176 0.778799 0.562690 8.541526 5.068291 15.644143 -6.415421 1.830126 -0.902979 -1.987732 1.779592 -1.816566 -8.139167 2.873762 1.949168 2.068420 10.920361 -0.609495 -3.251542 2.343189 0.253114 0.962714 -6.206904 8.004504 -6.052777 -1.010355 -3.448878 -1.026645 -3.508854 -3.701497 -6.000357 -1.378641 10.049293 -7.066264 -8.270991 5.191418 -0.271655 2.558354 -11.032235 6.287680 -3.890243 7.164119 -2.507102 -2.707135 0.219823 1.419315 -1.935362 0.929576 4.151696 -6.973517 4.573594 5.933291 1.173947 1.676105 1.997848 2.877430 -1.941080 -0.772368 -6.228116 5.467655 0.439982 -2.945132 -1.916594 -3.570753 5.045321 0.147883 -0.648331 0.838520 6.415898 -1.022428 -0.785363 6.415882 0.473276 -4.037340 2.996670 0.877849 4.379738 -3.909694 -1.417830 -3.469350 0.827933 1.201131 3.696046 -9.141670 -5.086401 -6.159114 -8.102238 -2.518952 1.417460 3.374122 2.888337 0.240789 -10.807998 -6.362470 7.721786 -2.861758 4.603571 5.013278 5.756920 6.524753 4.595315 0.912738 -1.365586 -1.643996 0.864782 -4.235492 -2.281629 -2.409494 4.238441 -3.165567 6.267145 4.550237 -0.261187 4.084073 0.186534 4.552281 -5.066508 10.732979 5.003916 -6.444198 1.557531 4.292623 8.350963 -6.295721 -5.237324 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = -0.094267 -2.394382 3.353300 2.970318 -0.228853 1.255119 0.635115 -1.507279 1.542601 0.839828 -1.045702 1.615371 -1.770590 0.364445 -1.035786 1.233743 -2.221363 -1.694456 -0.351435 -0.749708 -0.566937 -1.439237 0.008189 1.515743 1.203565 1.606631 -1.288049 -0.066256 -2.553013 -2.451880 0.858184 -0.384233 1.342535 0.598056 0.516595 -3.865899 2.024098 2.633859 -0.575729 -3.006010 0.640585 -0.951827 -0.811385 -0.611641 -0.647278 0.791214 0.330600 1.169100 0.393349 0.766860 0.074467 0.342712 1.533242 3.460221 -0.294040 2.326477 2.540353 0.236781 0.453007 0.016937 0.874325 0.302543 1.119213 1.403377 -0.291475 -1.335357 -0.661991 -0.620169 -1.710643 1.384686 0.224199 -0.531585 -1.721241 -0.814175 -1.847064 -0.172176 -1.423118 1.624220 3.508317 -1.791242 2.738429 1.070298 1.331307 -0.343383 1.258295 0.019971 1.735311 1.197915 -1.034553 0.087262 -1.730117 -0.935233 0.502098 0.191121 -1.803331 -2.272602 1.470615 -3.015580 -2.680615 1.207630 0.520608 -0.850526 -0.405721 -0.138984 0.884075 0.855836 -1.050357 -2.075373 -0.852019 0.980519 -0.180676 -1.204275 -0.233560 0.611755 -0.133167 0.031863 -2.554832 0.105934 1.212244 -1.341359 -0.023217 1.786243 -0.151717 0.935775 -0.556891 0.179729 -0.381993 1.601474 0.584051 1.112426 0.361240 0.297605 -1.268333 0.915261 1.024884 0.605009 -1.353309 -0.190276 0.211750 0.974136 0.102538 0.733889 -0.896805 1.156662 1.184083 -0.630932 -1.598810 -2.058706 -1.172242 -2.444261 0.508595 -1.448988 -1.222199 0.705371 1.888549 0.676263 0.962761 1.942650 -1.699545 0.928024 0.099258 0.361010 0.771916 -0.044357 0.842780 -1.069993 -2.054345 1.593723 1.098175 0.758383 0.542992 -0.394153 0.107421 -1.232487 -1.105642 1.508843 0.731013 -0.277541 2.290333 1.389598 2.810322 -1.234386 0.414331 0.476150 -0.560900 0.296008 -0.191096 -2.727984 1.332220 0.275583 1.032624 2.585423 -0.146367 -0.760612 1.072529 -0.259841 0.350037 -1.638775 1.554892 -1.671142 -0.521560 -1.482645 0.632431 -0.627710 -0.909451 -1.311888 -0.456909 3.018756 -2.462263 -1.672504 1.806607 -0.200571 0.941899 -2.776195 1.976609 -1.229916 2.092992 -0.109982 -0.691101 0.331092 -0.495659 -1.065720 -0.188336 1.318295 -1.245874 0.808875 1.854859 0.593397 -0.013835 0.552886 1.299972 -0.650798 0.729242 -1.445938 1.712204 -0.017628 -0.960433 -0.248773 -0.922437 0.702509 -0.663970 0.105405 1.518683 1.415115 0.677667 0.786474 1.228738 1.152893 -1.506507 1.139874 0.010651 1.268904 -1.335277 -0.439758 -0.495174 0.574860 -0.284708 1.387408 -2.712836 -2.477323 -2.710937 -2.128106 -0.769853 -0.578258 1.231148 -0.071820 -0.218275 -2.600528 -2.139631 2.067706 -0.947855 0.989360 1.771928 1.251015 1.887281 1.670417 -0.384226 -0.145532 -0.254828 0.740296 -0.550550 -0.376047 -1.263127 1.498228 -1.109422 1.043909 2.271029 -0.567427 1.114716 -0.341787 1.874043 -1.442626 3.293945 1.377999 -1.947146 0.932239 1.516030 2.200266 -0.565757 -1.673437 -PE-benchmarks/matrix-chain-multiplication.cpp__MatrixChainOrder(int*, int) = -8.622671 -14.071156 10.513345 10.086454 4.143027 9.766363 6.120948 -2.904236 3.277108 11.005277 -3.950824 9.839504 -5.880626 -5.140335 -1.583608 0.329725 0.309000 -7.696443 2.417305 -1.298611 0.790388 -7.036607 -9.566169 12.728494 1.267903 -3.511061 -2.908473 -0.512026 -18.129958 -13.102441 -3.694425 0.456247 5.420893 -4.298198 3.868750 -13.622264 5.723514 15.783526 0.293035 -13.760007 0.016687 -2.658574 -3.306787 6.626468 -3.549353 5.303720 4.559965 -3.327682 -3.330508 3.335648 5.924764 -0.977895 8.943462 11.991448 3.829980 13.814783 11.652554 0.029374 5.936606 1.166399 2.881605 -3.038545 6.679320 4.638475 -2.613278 -0.237816 -1.880509 4.901717 -7.286474 0.023445 3.007031 -8.078493 -3.482050 -2.315471 -7.978078 -3.899157 -0.996846 -2.192549 14.157789 -1.864096 18.959854 8.662545 9.969270 -1.799887 10.867775 -0.838996 8.802925 4.040697 -7.924315 3.501880 -8.448774 -1.537393 -0.510724 9.665900 -10.480157 0.979582 5.946408 -8.590101 -13.153000 9.409780 -2.612272 -3.936966 -5.163038 -0.015767 3.826142 3.329438 -5.228203 -11.678055 -9.674542 9.323153 -5.902139 -7.153808 -1.751664 -0.662890 2.006995 1.535708 -5.472397 0.033412 11.969404 -6.507617 -5.492260 9.794270 -0.563657 9.530550 -2.341509 -0.166909 0.339453 0.047486 5.520547 2.384364 -1.032782 -7.822367 -17.990324 0.468260 -0.526848 -2.162571 -5.413667 -2.797479 6.886618 5.784983 9.072722 12.664616 -2.207530 8.828335 6.087364 1.823334 -2.434345 -12.239125 -1.856646 -4.449486 2.096377 -3.140070 -6.179290 -1.069193 7.382285 -2.659631 -0.879670 4.044447 -1.490995 7.233621 0.285841 0.483873 -0.909729 -6.916238 2.282791 -4.317170 -8.808365 6.841649 11.410856 5.631993 3.448300 -2.398410 -0.520467 0.489828 -7.289021 2.727122 -0.036315 2.063781 13.137793 6.313991 22.878514 -4.997612 -0.366985 -4.846794 -2.134981 2.871601 -4.333828 -10.440635 2.893419 2.701356 -0.277839 15.169392 -1.308770 -3.123445 5.228285 0.009401 0.869600 -9.432791 13.658838 -8.176440 -0.314507 -2.232359 -4.550517 -5.913529 -4.831828 -9.544289 -1.694414 12.747223 -6.426377 -10.553165 2.073682 -1.438441 -0.136544 -13.068082 9.833858 -4.377436 7.322534 -3.176843 -4.337183 -0.618686 6.939906 0.556983 0.656964 5.530196 -11.381036 8.413934 6.974657 0.140247 1.138860 3.928114 2.130821 -2.695558 -4.393663 -8.552261 5.865295 0.666659 -2.175421 -2.690159 -4.543217 8.720185 3.017434 -2.964589 -3.140686 7.564658 -6.558286 -5.724298 8.766889 -3.561912 -4.341049 1.731946 1.599162 7.208788 -5.468916 -1.629621 -8.007499 -0.761990 4.551312 2.610392 -12.112784 -1.004928 -5.952088 -9.404034 -3.070934 4.640413 4.484223 6.553981 0.915286 -15.784596 -9.208351 13.068377 -3.298185 2.221525 7.196596 8.089728 9.719160 3.225882 5.609769 -1.888633 -5.396951 -0.523387 -6.796750 -3.504794 1.292962 2.415348 -5.918973 11.337910 1.781764 1.533253 5.530462 1.945550 2.774541 -7.487129 13.818458 7.166369 -8.174805 0.208493 4.320579 10.118720 -16.026877 -6.467852 -PE-benchmarks/matrix-chain-multiplication.cpp__main = -1.512399 -3.620406 3.515828 3.128086 0.356106 2.250656 1.389659 -1.064487 1.235103 1.581152 -1.230018 2.418631 -1.919992 -0.724684 -0.904340 0.278621 -1.273516 -2.294977 0.272932 -0.559622 -0.086003 -1.841722 -1.740720 3.139288 0.734108 0.336795 -1.100820 -0.228770 -4.565216 -2.440237 0.107101 -0.097011 1.642648 -0.041786 1.031322 -4.606024 1.723647 3.844039 -0.213455 -3.892149 0.337421 -1.190631 -0.803531 0.405059 -1.098677 1.150206 0.995740 0.292852 -0.447612 0.704737 0.532084 0.005992 1.822924 3.915592 0.532280 3.343403 3.227095 0.121434 1.201209 0.073792 0.932586 -0.467536 1.665576 1.355187 -0.796495 -0.700497 -0.689595 0.147533 -2.043984 0.645196 0.793233 -1.368993 -1.408871 -0.752934 -2.567761 -0.839801 -0.876254 0.710456 4.099360 -1.504016 4.533350 1.869941 2.534787 -0.343857 2.536121 0.046708 2.323220 1.242145 -1.735106 0.687997 -2.888919 -0.615618 0.054804 1.179198 -2.625372 -1.378404 1.768472 -3.156202 -3.551189 2.158152 -0.215087 -1.106063 -0.905107 -0.010538 1.052616 1.214576 -1.561462 -2.918050 -1.969625 2.166530 -1.077748 -1.689927 -0.173470 0.460276 0.318255 -0.444996 -2.251500 0.257393 2.720668 -1.657048 -0.608664 2.739320 -0.476598 2.091397 -0.625862 -0.084425 -0.255146 1.199286 1.265344 0.510961 -0.040372 -1.500704 -3.471060 0.463051 0.350710 0.754296 -1.673176 -0.680340 1.392331 1.504407 1.583763 2.047804 -0.584298 1.861824 1.280109 -0.193310 -1.232148 -3.256291 -0.897097 -2.012867 0.337307 -1.241116 -1.555025 0.700327 2.205951 0.425598 0.315715 1.861083 -1.011428 1.779941 0.068937 0.109061 0.161733 -0.882716 0.844692 -1.263835 -2.492876 1.916126 2.097527 1.584820 0.850067 -0.615443 -0.026602 -0.656518 -1.876566 1.105802 0.696270 0.386412 3.471042 1.939712 4.091032 -1.744486 0.020858 -0.664454 -0.768173 0.534487 -0.763293 -3.059229 1.173489 0.656262 0.069987 3.708308 -0.371015 -0.930791 1.453841 -0.101682 0.374607 -2.388394 2.694825 -2.158606 -0.424362 -1.338846 -0.284582 -1.470876 -1.307501 -2.520529 -0.985270 3.706046 -2.441716 -2.684640 1.122620 -0.211429 0.798846 -3.674715 2.261908 -1.347178 2.595222 -0.376727 -1.019040 0.033209 0.734772 -0.489837 0.026106 1.589729 -2.582799 1.651316 2.113986 0.430173 0.174168 1.032928 1.150834 -0.770551 -0.341185 -2.212250 1.683400 -0.070924 -0.991345 -0.239059 -1.214534 1.798980 0.333579 -0.193620 0.688434 1.976332 -0.252879 -0.249293 2.211718 -0.113870 -1.454404 0.389269 0.132560 1.965064 -1.582676 -0.493288 -1.761172 0.400831 0.718494 0.848233 -3.469886 -1.898378 -2.674235 -2.798362 -0.667074 0.068884 1.113660 1.113951 0.064183 -4.107056 -2.572640 2.705607 -1.129062 1.336122 2.135282 1.865145 2.763095 1.472806 0.343936 -0.463866 -0.345945 0.575005 -1.423233 -0.513305 -0.887406 1.200898 -1.732609 2.444670 1.803636 -0.105098 1.569287 0.157857 1.781958 -2.027262 4.184992 1.963998 -2.824988 0.391768 1.560151 2.613181 -2.472797 -1.976787 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__minInitialPoints(int (*) [3]) = -8.315069 -17.727510 17.029288 15.800866 4.636245 10.480459 8.807943 -4.626300 4.655569 14.257639 -4.359753 12.366553 -9.613494 -5.886912 -0.495458 4.377068 -3.282626 -10.212910 0.865697 -2.454830 0.145314 -7.340355 -9.851191 14.661735 4.572509 -4.004034 -5.168931 -1.536086 -21.948312 -18.397012 -3.982868 -0.123013 7.785427 -5.254200 4.375595 -18.087867 10.441193 21.633897 -1.073874 -17.253088 1.440926 -2.663396 -4.669871 3.908478 -4.386294 5.926241 5.980098 -3.516688 -3.440730 5.115939 5.303717 -0.359705 13.017569 17.752936 3.960508 17.514835 18.789555 0.841353 6.190039 1.053773 4.635224 -3.289366 7.686194 4.045319 -2.187380 -2.586018 -2.702286 3.843390 -8.833631 0.510306 4.082985 -8.824247 -5.606216 -3.995000 -12.780622 -4.462917 -0.915507 -0.332771 19.078129 -7.187090 23.560063 12.051363 10.370069 -0.195560 11.572571 -0.302564 9.400780 6.140995 -8.412061 4.996634 -11.368747 -4.946495 0.880726 12.414888 -13.596704 -4.315314 9.120523 -13.165596 -17.787141 11.822268 -1.434761 -5.161240 -7.649293 -2.220723 3.553272 4.660945 -6.755924 -13.896147 -11.674167 9.066267 -5.306628 -9.284987 -1.523318 0.618012 1.795343 3.125446 -11.920480 0.647881 14.169350 -9.151825 -6.824558 11.118862 -1.390668 12.570532 -3.682265 0.639131 -0.861678 1.486931 7.044908 5.473413 0.236378 -6.900597 -19.015369 -3.874357 1.402403 0.583387 -5.928945 -2.139870 6.340418 7.379168 10.615755 16.475488 -1.933526 12.427064 4.920924 1.196250 -4.158889 -15.676301 -5.724906 -6.932760 4.482981 -5.135280 -7.965455 -0.320022 9.630581 -4.653562 -0.634816 8.675143 -2.791435 7.625038 0.385241 0.845949 -0.232385 -10.342245 3.553689 -5.505428 -11.828698 8.811439 14.168944 7.069540 4.624359 -2.788652 1.069092 -1.808124 -9.435352 1.498000 -2.423577 -2.830909 15.910454 7.922150 29.522255 -6.334627 0.846079 -4.639956 -2.568082 4.085291 -4.138059 -14.553936 3.250894 2.640633 0.886340 19.472354 -0.371739 -6.457283 8.337482 -1.507565 -0.296053 -10.465758 17.209213 -10.306665 -0.899109 -4.412154 -2.664644 -6.993794 -6.094199 -11.599710 -0.476828 16.786967 -9.584067 -13.125240 3.304839 4.586048 0.476204 -17.581145 17.260704 -5.420079 11.157722 -3.023188 -6.409228 2.152248 6.475397 -1.372775 -1.411352 7.574304 -13.771507 8.693367 8.219620 0.552722 1.043986 4.622757 3.410856 -4.025247 -2.878823 -11.424788 7.844626 0.384299 -5.971007 -4.845955 -5.146475 10.746509 1.646412 -3.288768 -4.977751 7.846458 -6.282406 -5.927053 10.179789 -1.424648 -6.853553 4.619340 3.665461 10.669995 -7.394726 -0.547318 -9.289179 0.130401 4.282208 7.841960 -15.756833 -3.123185 -7.401502 -12.615008 -5.538168 8.097062 6.808196 5.724525 -0.144872 -19.191409 -13.289651 16.559345 -4.513607 0.111694 10.827501 11.177128 12.795709 4.270044 6.171611 -3.283983 -5.229944 0.670016 -6.496670 -5.414878 0.911259 4.893023 -7.491770 11.315874 5.345488 1.668538 7.231810 -0.297719 5.515240 -9.403258 19.514559 8.347213 -11.878684 1.849632 11.600767 15.035332 -19.872184 -8.568833 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::max(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = -1.251340 -4.036097 4.577168 4.095025 0.436404 2.228289 1.779498 -1.416985 1.393264 2.208104 -1.224628 2.747912 -2.494171 -0.827641 -0.599265 1.153252 -1.865471 -2.565795 -0.107721 -0.776882 -0.167800 -1.764319 -1.627805 3.304405 1.394346 0.231891 -1.465280 -0.350701 -4.944944 -3.504235 -0.061542 -0.185029 1.976842 -0.168061 1.092274 -4.801275 2.620509 4.796127 -0.460322 -4.222017 0.605268 -1.007457 -1.080070 -0.089224 -1.161475 1.288375 1.142107 0.131608 -0.394120 1.076070 0.517500 0.127480 2.665910 4.486445 0.536061 3.858642 4.322605 0.253245 1.258286 0.019464 1.186070 -0.420518 1.701119 1.119493 -0.572596 -1.172704 -0.856082 0.044930 -2.165928 0.699400 0.883760 -1.493440 -1.801678 -1.059663 -3.263575 -0.845076 -0.923918 0.951054 4.737987 -2.336175 5.088646 2.443124 2.326288 -0.103008 2.454569 0.113633 2.245822 1.579355 -1.662659 1.006517 -3.104063 -1.289040 0.388022 1.719277 -3.140855 -2.160494 2.260130 -3.862073 -4.215363 2.460632 0.098760 -1.346317 -1.246477 -0.382108 0.844842 1.291281 -1.667568 -3.133736 -2.091447 1.948910 -0.805108 -2.004192 -0.239981 0.671963 0.275787 0.100113 -3.348154 0.390429 2.906820 -2.021797 -0.794375 2.730174 -0.471934 2.482904 -0.862056 0.101805 -0.465880 1.327374 1.437402 1.210063 0.154837 -1.142041 -3.374305 -0.346099 0.738396 0.950876 -1.662303 -0.483620 1.150995 1.697652 1.784842 2.801807 -0.501602 2.448402 0.974987 -0.280951 -1.469873 -3.617826 -1.754941 -2.334517 0.844222 -1.496492 -1.848642 0.680638 2.459436 -0.131074 0.372349 2.527619 -1.142060 1.594632 0.111465 0.183804 0.327665 -1.562126 1.019788 -1.386702 -2.878268 2.249061 2.504224 1.730098 1.045176 -0.569879 0.302648 -1.016550 -2.058108 0.845514 0.062864 -0.611269 3.789805 2.106832 5.195374 -1.586751 0.267594 -0.526637 -0.760488 0.744713 -0.644034 -3.624973 1.176602 0.562713 0.389659 4.313577 -0.156075 -1.385948 1.975052 -0.415826 0.134141 -2.474748 3.292239 -2.403129 -0.409883 -1.658972 0.091749 -1.510390 -1.460867 -2.670943 -0.586503 4.210730 -2.821474 -2.899062 1.291071 0.980169 0.774167 -4.130602 3.566606 -1.450059 3.108661 -0.282325 -1.367809 0.629797 0.514569 -0.865346 -0.438083 1.855323 -2.826535 1.577596 2.110546 0.460763 0.033876 1.048601 1.274525 -1.027124 0.092462 -2.613768 1.988561 -0.052673 -1.575089 -0.687395 -1.218055 1.959822 -0.047476 -0.338159 0.200375 1.834148 -0.218633 -0.393692 2.189171 0.376452 -1.846273 1.016950 0.573805 2.383029 -1.861928 -0.288612 -1.775158 0.499224 0.616776 1.830729 -3.920981 -2.056866 -2.704150 -3.135919 -1.148738 0.753232 1.598331 0.880957 -0.207871 -4.361674 -3.277356 3.394465 -1.244228 0.669473 2.673461 2.321199 3.111053 1.525257 0.548661 -0.628537 -0.465769 0.769132 -1.168328 -0.866239 -0.831964 1.650369 -1.869467 2.200734 2.359000 -0.113851 1.818471 -0.345734 2.128081 -2.279990 4.931142 1.976857 -3.266937 0.746299 2.847480 3.300589 -3.136304 -2.226837 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -5.281502 -8.406655 7.883914 7.170531 1.392410 5.940457 2.573933 -3.547683 3.119165 6.069251 -1.838088 5.239242 -5.108436 -1.882029 -1.130464 0.954693 -2.120201 -5.108059 -0.541733 -2.765047 -1.495603 -4.155480 -4.644396 7.164211 1.368187 -2.068419 -3.225343 0.657570 -10.396107 -8.252326 -1.394625 0.243022 3.911312 -4.053160 2.063888 -12.801186 5.121296 9.996060 -0.783733 -8.739978 0.742122 -3.374614 -1.878368 2.379486 -3.700990 1.788313 1.682939 -1.829566 -0.795107 1.144138 2.960532 0.969463 3.949373 12.187898 1.109497 8.776652 8.233486 0.294052 1.143609 1.580174 1.824260 -0.871199 4.613532 2.513421 -2.240127 -1.639469 -0.038322 1.447182 -4.889082 1.702034 1.241813 -5.715406 -1.474369 -2.911934 -6.661132 -3.119897 2.737216 0.698804 9.394899 -3.973107 10.249832 4.255086 4.556576 0.956353 7.396403 -0.735961 7.516586 2.480831 -4.305523 1.433318 -4.019784 -1.012971 0.553757 5.805565 -6.248262 -2.761544 4.546852 -7.361459 -9.386393 5.822623 -0.739647 -2.602306 -5.737890 -2.279925 2.950390 2.124704 -3.889264 -7.549429 -6.231361 6.145583 -2.939696 -4.645865 -0.786387 -0.575773 0.973170 0.191856 -5.872665 0.474764 6.649764 -4.038040 -4.462549 7.420338 -1.677192 5.125175 -1.332306 0.887383 -0.770324 2.165818 1.531675 2.245355 -1.281447 -2.447452 -8.997415 -1.487097 -0.081502 -0.528337 -3.140039 -1.404559 3.070875 3.517040 2.914743 7.128435 -2.578945 6.460219 3.719378 1.009840 -2.364846 -7.239808 -1.984012 -5.796923 0.796537 -3.441403 -5.100360 1.363396 5.555677 0.637206 -0.053262 5.363005 -1.697971 4.690995 0.174499 -0.606831 1.066484 -5.058273 2.334381 -3.732470 -6.951186 4.215017 6.021290 3.838644 1.794784 -1.416087 -0.606011 -1.482356 -5.518952 1.523631 0.732246 0.688095 8.265827 5.106433 15.514143 -6.294720 1.764970 -2.039690 -2.427827 2.404330 -3.123142 -7.452991 0.155852 2.756416 -0.278984 10.580127 -0.718229 -3.818428 2.465385 -0.302737 1.209316 -6.165561 7.438394 -5.612316 0.033866 -2.523552 -2.684868 -3.723039 -3.058270 -6.133223 -2.320444 9.066493 -7.392069 -8.174533 4.522315 1.214160 2.102767 -10.629540 6.882045 -3.207961 7.247285 -2.634184 -2.601568 0.084415 3.708533 -1.189490 2.426234 3.864874 -6.841446 4.262684 6.046176 0.647885 2.432239 1.627417 2.887631 -1.839954 -1.416599 -6.376488 5.596372 0.123159 -3.264657 -2.029029 -3.493296 4.598697 1.078285 -0.104125 -1.271817 5.474344 -2.684593 -2.341004 7.095514 -0.515874 -3.116200 2.890266 0.604424 4.417886 -3.771623 -0.807934 -3.776079 1.198828 2.186014 2.691184 -8.784208 -2.899669 -6.424566 -6.976560 -1.398338 3.537181 2.080585 2.852778 0.037705 -9.774080 -5.909081 8.430605 -3.048442 4.681047 4.948201 6.270359 6.684207 4.344467 2.271432 -1.147758 -2.043732 -0.386514 -4.127566 -2.515418 -0.864267 3.293776 -3.423665 6.744773 2.758985 1.013420 4.474290 1.497606 1.249774 -5.014396 9.053577 4.567603 -5.380522 1.467796 5.290152 7.013312 -7.781898 -4.729187 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = -1.047322 -2.538774 2.830195 2.490913 0.272269 1.481043 0.905244 -1.096644 1.389584 1.568617 -0.684907 1.550766 -1.723164 -0.041438 -0.568229 0.894674 -1.277512 -1.815934 -0.056734 -0.764899 -0.613109 -1.382447 -0.614728 1.609079 0.778853 -0.055677 -1.169101 -0.232229 -2.867458 -2.251375 0.269003 -0.334539 1.312210 -0.676854 0.437696 -4.355647 1.689104 2.546974 -0.445653 -2.851788 0.385919 -1.055939 -0.340295 0.047913 -0.836441 0.545084 0.664057 0.292689 0.179606 0.681161 0.622007 0.248327 1.138603 4.047026 -0.128724 2.387473 2.360497 0.126999 0.173720 0.313739 0.810994 -0.172128 1.382900 1.112573 -0.511542 -0.826319 -0.396624 -0.229392 -1.773054 0.895706 0.285062 -0.938831 -1.055998 -0.695622 -1.792626 -0.757534 -0.539132 0.914536 3.304137 -1.676067 2.956710 1.190027 1.570193 0.146357 1.735144 -0.012726 1.940123 0.925824 -1.327401 0.199788 -1.365399 -0.454117 0.173424 0.905778 -1.563534 -1.769560 1.438530 -2.016369 -2.760653 1.665664 0.050123 -0.476249 -1.406311 -0.552317 1.030722 1.044748 -1.417027 -2.308306 -1.633048 1.234582 -0.495180 -1.304169 0.019405 -0.126536 -0.043876 -0.287798 -2.167264 -0.136409 1.599585 -1.529124 -0.898850 2.102266 -0.593774 1.392294 -0.420507 0.254070 -0.318063 1.307648 0.694327 0.928257 0.058844 -0.412059 -2.557107 0.059057 0.515795 0.672064 -0.918933 -0.161991 0.463111 1.003533 0.403514 1.372415 -0.555212 1.623830 1.397764 -0.157983 -1.270371 -2.097978 -0.396374 -2.044090 0.444547 -1.434137 -1.033473 0.701361 1.835763 0.515440 0.497857 2.143130 -1.196685 1.490125 -0.115131 0.018338 0.571867 -0.724167 0.886712 -1.109449 -2.053723 1.261828 1.721149 0.905115 0.597504 -0.671667 0.049615 -0.957628 -1.405522 0.686094 0.629478 -0.215338 2.244154 1.304186 3.679823 -1.962951 0.380987 -0.066832 -0.543220 0.530811 -0.633117 -2.610310 0.668725 0.537390 0.102037 2.600144 -0.187776 -1.303465 1.006439 -0.315533 0.348278 -1.625483 1.675254 -1.700364 -0.370973 -1.092235 -0.061247 -1.045872 -0.882489 -1.494574 -0.488216 2.867129 -2.129570 -2.076417 1.454982 0.054748 0.753621 -3.168885 2.452281 -1.131518 2.026427 -0.682089 -0.742851 0.008958 0.848926 -0.491640 0.293745 1.324135 -1.557832 1.072739 2.157011 0.417107 0.494501 0.653050 1.257846 -0.412670 -0.015951 -1.470746 1.709640 -0.150910 -1.000035 -0.335069 -1.033578 1.227817 -0.021553 0.095734 0.655137 1.591449 -0.292359 0.250313 1.814860 0.438639 -1.243726 0.946893 0.051367 1.725265 -1.236369 -0.146228 -0.990133 0.533674 0.071523 1.089733 -2.670541 -1.730956 -2.163008 -2.090156 -0.591371 0.595819 0.675617 0.265933 0.029261 -2.831852 -1.757237 2.019452 -1.021733 1.221668 1.626134 1.570749 2.084383 1.584918 0.009440 -0.528905 -0.365381 0.086130 -0.982568 -0.569990 -0.664978 1.053406 -1.369317 1.595746 1.412128 -0.024753 0.993626 0.222379 1.143383 -1.439549 3.115695 1.510244 -1.641976 0.807728 1.708243 2.512238 -1.481388 -1.550453 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.484798 -0.812237 0.574717 0.614306 0.958620 0.036962 0.390664 -0.150593 0.992737 0.635068 0.015953 0.485790 -0.678480 0.386057 -0.081710 0.419595 -0.153674 -1.144299 0.448122 0.155870 -0.897351 -0.363192 -0.212880 -0.226322 -0.164083 0.220302 -0.686270 0.290147 -0.957331 -1.277813 0.248959 -0.663987 0.340189 -0.409581 -0.109540 -1.612876 0.562120 0.825810 -0.217280 -0.775243 -0.133268 -0.708343 0.094552 -0.119337 0.320504 0.460887 0.788765 0.057447 -0.004002 0.542429 0.684938 -0.032819 0.161340 0.838571 -0.401576 0.682916 0.415359 0.044226 -0.537918 0.283028 0.292198 0.096770 0.882833 0.468247 -0.551105 0.202419 0.402968 -0.334290 -1.192457 0.439766 0.226580 -0.476868 -0.010313 0.064237 -0.265064 -0.349947 0.034314 -0.334091 1.056443 -0.422651 1.112648 0.317354 0.564064 -0.216932 0.328794 -0.375912 1.029353 0.271593 -0.789710 -0.179992 -0.302502 -0.428345 -0.296477 0.908351 -0.002679 0.357764 0.088455 -0.273466 -0.450102 0.207562 -0.244028 0.717758 -1.265492 0.089064 0.706774 0.319017 -0.514597 -0.594059 -0.817966 -0.048989 -0.548138 -0.155232 -0.078941 -0.523013 -0.711483 0.039854 -0.787403 -1.137436 0.496046 -0.862859 -0.524294 0.769934 -0.374849 0.742798 -0.260454 -0.353234 0.547056 0.364221 0.331149 0.773147 -0.019499 -0.212087 -1.334799 -0.384050 -0.106182 0.602032 -0.037025 0.002674 0.054575 0.290200 -0.473597 0.071354 -0.512784 0.422996 1.353513 -0.204110 -0.873126 -0.290733 0.442272 -0.766541 0.422945 -0.750149 -0.016898 -0.346458 0.952316 -0.062635 0.563414 1.352138 -0.726154 0.284459 0.216636 -0.108824 0.651819 -0.043681 0.309996 -0.465741 -0.613226 0.342255 0.697446 -0.489163 0.228814 -1.167700 0.052266 -0.551800 -0.710578 0.150950 -0.149861 0.030817 0.245468 -0.107909 1.698997 -1.182108 0.500711 -0.304589 0.066627 0.417443 0.165112 -0.416528 0.327348 0.051329 0.474296 0.408457 -0.057312 -0.918112 0.227716 0.256359 -0.214758 -0.523282 0.455106 -0.456161 -0.017436 0.166834 0.293760 -0.365329 0.127011 -0.178094 0.097484 1.078165 0.101273 -1.057067 0.838455 -0.410360 0.393698 -1.305065 0.438764 -0.526595 0.223488 -0.659306 0.121495 -0.054564 0.402894 0.409653 0.499255 0.440733 0.119377 0.159554 0.942375 0.315478 0.680494 0.671750 0.389328 0.547013 -0.076166 0.375220 0.459119 0.162830 -0.067843 -0.117226 -0.557965 0.485949 0.299885 -0.279892 0.271355 0.741047 -0.184927 0.397261 0.439084 0.122047 -0.761870 0.250485 0.258025 0.424166 -0.288832 0.149133 -0.044777 -0.039547 -0.463496 0.670455 -0.339545 -0.759014 0.087125 -1.493352 -0.438141 0.692862 0.373151 -0.122745 0.559239 -0.506893 -0.005906 0.920285 -0.152270 1.296372 0.175156 0.540465 0.557147 0.155553 -0.248995 -0.370013 -0.680146 -0.834486 -0.168472 0.089827 0.089798 0.189426 -0.285463 0.764335 0.016259 -0.402022 -0.591509 -0.289338 0.729846 -0.446797 0.493232 0.302615 0.120411 0.043153 0.079384 1.617989 -0.382650 -0.749659 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__dist(Point, Point) = -0.300158 -3.010811 3.605099 3.406744 -0.273284 1.625571 0.564888 -1.276100 0.613471 1.902476 -0.449813 2.627370 -1.283580 -0.265317 -0.102527 1.300281 -1.553263 -1.230641 -0.319268 -0.694745 -0.446390 -0.803046 -1.354317 2.778355 0.997024 0.828417 -1.333929 -0.218184 -2.280659 -3.541154 -1.177490 0.044727 1.720805 -0.903718 1.484260 -4.067967 2.005468 3.768123 -0.262356 -3.662587 0.496065 -0.175110 -0.372402 0.664776 -2.308746 1.213516 0.670079 -0.097235 -0.441686 1.582564 0.219101 1.067563 3.504093 3.254247 1.808855 2.649226 2.809254 -0.011748 0.685678 -0.751488 1.093790 -0.083742 1.102043 -0.398069 0.667293 -1.199673 -1.415958 0.746854 -1.581834 0.291240 0.233339 -1.914164 -1.342866 -1.381842 -2.510558 -0.777540 -0.730830 1.129726 2.896850 -1.908971 2.721236 1.478964 0.453339 0.292680 1.795391 0.042698 1.236290 1.461812 -0.308212 1.796495 -0.005678 -1.571713 0.992255 -0.307262 -2.929572 -4.283653 1.689903 -3.375873 -2.928955 2.635957 0.607692 -1.415074 -0.607187 -2.102796 0.689088 1.542405 -1.935792 -1.760661 -0.970159 1.658643 0.532399 -1.709010 -0.068267 0.904375 0.663352 0.773493 -2.257544 0.861457 2.555864 -0.880314 0.443613 2.203264 0.775406 1.927351 -0.881598 0.063061 -0.289925 1.789713 1.136366 1.463537 -1.517017 0.461436 0.061580 0.449996 -0.037479 -1.878409 -0.877825 -1.091902 0.601143 1.763595 1.618670 2.995944 -0.378095 1.304134 2.044330 0.998565 -1.285268 -2.755764 -2.556701 -2.114571 0.204260 -0.707660 -1.616583 1.879611 1.803478 -0.695331 0.206030 0.245287 -0.322907 -0.538954 0.089712 -0.213451 0.414828 -0.785801 0.556376 -0.806006 -2.215834 2.163205 1.974771 2.153455 0.768602 -0.175330 0.480062 0.523752 -0.666137 0.759112 1.100672 0.008500 2.741711 1.951023 3.465031 1.262631 -0.850560 -0.901097 -1.218087 0.816341 -1.058446 -2.613874 0.070123 0.564944 0.271965 3.309685 -0.781857 0.095485 2.475531 -0.340913 -0.080797 -1.765333 2.143504 -1.923891 0.238863 -1.124585 -0.259394 -1.326715 -0.266627 -2.620057 -1.440636 3.479475 -3.146176 -1.225832 1.255125 -0.311661 0.441308 -2.231789 2.436536 -0.648416 2.292485 0.310815 -1.171422 0.765579 -0.903997 -0.894620 -0.468832 1.518759 -1.446698 -0.049041 1.424116 0.228288 -1.091921 0.489207 1.000569 -0.961457 0.968508 -2.163912 2.077273 -0.581526 0.117762 -0.511614 -0.668188 0.614644 -0.468003 -0.202891 -0.182503 -0.206763 0.117027 -0.794760 1.466143 0.246038 -1.516588 1.414253 0.264295 1.160331 -1.796824 -0.085099 -1.119556 1.471351 0.624428 1.076573 -2.856975 -0.600705 -4.287093 -1.377099 -1.097485 1.038961 1.093966 -0.039498 -0.883514 -1.899669 -3.000526 4.097276 -0.806452 -0.531986 2.443082 1.426124 2.743347 1.208502 1.037411 0.386031 -1.081586 -0.456608 -0.171575 -0.456999 -0.123136 1.068424 -0.992140 1.345000 1.904876 -0.206844 1.982097 -0.275316 0.888228 -1.837800 2.784423 1.125987 -1.998616 0.078710 2.345413 1.478543 -2.905020 -1.809263 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.206415 -0.454435 0.155443 0.239473 0.326729 0.060126 0.171315 -0.009966 0.288307 0.014791 0.083822 0.139020 -0.356706 0.144291 -0.178834 0.001468 -0.103957 -0.468169 0.117394 0.103574 -0.345276 -0.306590 -0.194586 0.232087 -0.213990 0.133391 -0.184918 0.158288 -0.597714 -0.154497 0.267832 -0.098025 0.234532 0.119604 -0.036852 -0.772151 -0.088405 0.307135 -0.074006 -0.215898 -0.098947 -0.500767 0.235103 -0.331454 -0.007739 -0.066342 0.223476 -0.174181 0.073885 0.084401 0.114543 0.007236 0.135390 0.559698 -0.070506 0.249754 0.264856 0.207906 0.013644 0.046511 0.123224 0.064182 0.424504 0.057734 -0.334217 0.121961 -0.128757 -0.325470 -0.341645 0.187932 -0.023350 -0.115971 -0.148511 -0.109018 -0.221246 -0.235943 -0.393307 0.053209 0.325935 -0.500652 0.444409 -0.039922 0.337542 -0.064896 0.299880 -0.038296 0.430192 0.122590 -0.281419 0.190149 -0.104095 -0.051124 -0.108494 0.057624 0.073902 -0.191245 -0.120775 -0.294922 -0.306528 0.243248 -0.151504 0.359764 -0.414428 0.030072 0.228179 0.002216 -0.435340 -0.326090 -0.175351 0.091510 -0.059103 -0.067103 0.038162 -0.067561 -0.286113 -0.411770 -0.282665 -0.355396 0.242084 -0.353986 0.032239 0.560270 -0.325980 0.324924 -0.068626 -0.299106 0.204926 0.554738 0.132150 0.185089 -0.278533 -0.004395 -0.411009 -0.233582 -0.240679 0.413086 -0.156372 -0.170995 0.126984 0.143933 -0.114032 0.057757 0.129600 0.011921 0.200827 -0.181300 -0.288534 -0.277419 0.013512 -0.588937 0.199821 -0.294813 0.188250 0.089073 0.439702 0.232406 0.167114 0.486717 -0.237232 -0.107426 0.149766 -0.240810 0.253623 0.147915 0.177153 -0.233087 -0.351715 0.299312 0.166342 -0.210040 0.232976 -0.416805 -0.018063 -0.100047 -0.205736 -0.060101 0.137526 -0.006377 0.348217 0.091629 0.066840 -0.637072 0.292282 -0.217982 -0.105927 0.282630 -0.180854 -0.207930 0.286127 0.222282 0.013093 0.033814 -0.219269 -0.119186 0.115487 0.049587 0.001464 -0.334764 -0.064652 -0.099710 -0.024139 -0.112810 -0.067348 -0.098660 0.004843 -0.024890 -0.167723 0.533680 -0.308862 -0.255639 0.363406 0.016979 0.095615 -0.481848 0.165592 -0.190895 0.409061 -0.160787 -0.138668 -0.090606 0.144613 0.174703 0.041615 0.226716 -0.193051 -0.083287 0.328948 0.223364 0.229172 0.458897 0.199187 0.208180 0.038498 0.097212 0.186124 0.086131 0.043512 0.174395 -0.377507 0.237377 0.189987 -0.144754 0.548527 0.458156 0.200153 0.252495 0.341884 0.045916 -0.301542 -0.194375 0.192929 0.248973 -0.094513 0.138613 -0.134254 -0.029676 -0.134296 0.149989 -0.259574 -0.405448 -0.239442 -0.539195 -0.125350 0.161065 -0.135169 0.182170 0.236204 -0.476945 -0.068386 0.086718 -0.242925 0.545718 -0.004676 0.211434 0.111114 0.190283 -0.142643 -0.093159 0.068094 -0.216584 -0.085992 0.365275 -0.078412 0.085664 -0.296124 0.329184 0.050168 -0.221822 -0.087967 0.245230 0.442674 -0.230696 0.268533 0.122962 0.067875 -0.004894 0.177411 0.510692 0.004850 -0.344699 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__cost(Point*, int, int, int) = 1.994181 -5.915267 10.096555 7.920646 0.585064 3.408956 1.726764 -6.619658 4.559986 2.621721 -2.108058 5.091902 -4.495999 2.748346 -9.653372 4.183894 -5.157578 -5.250530 -2.967655 -4.193420 -3.483573 -2.895324 0.219224 3.431208 3.764961 0.615783 -4.965325 -0.089012 -9.238501 -8.723207 0.271175 -0.443709 1.560973 -6.160018 0.725594 -6.456972 6.364318 9.258995 -2.326561 -7.315860 2.719105 -3.704389 -3.728961 -0.634531 -1.995958 0.875748 -0.892917 2.780068 1.560305 2.689787 3.422442 5.774552 5.020870 12.584374 -1.433977 7.460874 6.062749 3.144500 0.760297 2.260710 2.312094 2.763340 1.618805 1.330852 1.515127 -3.854352 -2.558981 0.000487 -1.830902 4.594826 -1.997361 -4.633153 -3.561769 -2.249815 -8.157641 -0.707792 -7.127543 3.761187 8.041424 -6.922944 5.430462 1.804319 1.736181 -0.270718 3.465423 -0.974854 5.481313 3.290556 -0.549762 -0.633370 -2.468954 1.520435 1.456810 -2.035737 -7.581270 -13.229568 6.399983 -13.409369 -8.755724 3.586213 2.682225 -3.985869 1.532390 -1.041262 1.289618 0.254297 -4.652198 -5.345801 -0.806682 4.465587 2.560008 -3.538634 2.026574 -1.056253 2.701954 1.133675 -7.745790 1.295412 3.441319 -2.729233 -1.222552 6.361766 2.200430 2.101899 -1.643414 0.777342 -0.447320 4.445108 -0.659846 5.350982 -4.155793 5.945837 -3.176480 4.230502 2.949613 -4.526460 -4.536805 3.543323 0.283552 3.884520 -0.706627 4.290326 -6.459881 1.960171 0.741018 -2.220639 -5.151699 -4.619675 -3.699745 -5.918816 0.027797 -3.340938 -9.008667 -0.639952 5.858040 4.088940 2.917013 4.202418 -2.063736 -0.822213 2.575672 0.015953 3.394946 -6.043210 2.309872 -3.233209 -8.038679 5.237541 2.774578 2.199144 0.187311 0.384974 0.019479 -3.712039 -0.258790 1.905087 3.069151 -2.173006 8.406198 5.405049 3.010791 -3.747071 1.961957 0.755208 -4.243136 2.427728 -2.475468 -8.201549 1.766263 2.392673 4.767030 8.050547 -0.493289 -0.276237 4.772253 -1.767547 2.113839 -4.862089 2.313213 -4.823174 -3.648196 -3.574743 3.035235 -0.538055 -0.116336 -3.930910 -6.249789 8.388255 -11.371301 -3.497778 7.757503 1.212639 0.861114 -6.186626 4.495059 -2.855003 6.000549 3.276098 0.439580 1.473455 0.251574 -5.005108 1.198641 3.987615 -4.486400 3.184591 6.436651 1.444013 1.344923 0.921204 5.182601 -4.426178 3.268328 -5.438292 6.575153 0.001035 -6.265175 -0.596316 -3.076009 -0.926627 -3.577775 2.992815 4.520905 1.461950 2.747573 1.005688 3.967734 5.451238 -4.445997 5.178827 -1.279882 0.298187 -4.929729 -1.207105 0.644650 0.185852 -1.255335 3.528054 -8.262422 -6.342657 -12.887210 -5.958866 2.125594 -5.766765 2.762776 -2.804535 -2.327948 -6.907549 -8.615100 8.577685 -3.445979 -0.356906 6.953195 4.401999 5.340970 5.437297 -1.007105 4.396866 -2.467383 1.212889 0.422491 -2.936742 -1.723141 4.700671 -2.261621 2.755866 6.628242 -1.201163 5.056175 1.923237 -0.155282 -4.489578 7.117369 2.963435 -4.117075 2.416020 6.888636 6.463113 -1.138866 -5.265182 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -6.892360 -13.084526 11.075350 10.320912 5.204180 8.417412 6.927007 -4.167019 4.529339 9.613189 -4.086696 9.329628 -6.420990 -2.512952 -4.917717 1.758572 -0.938034 -8.466942 1.790017 -1.432778 -1.212750 -7.213579 -6.261466 10.190333 2.019871 -1.499492 -4.015165 -0.415277 -17.761460 -14.652059 -1.433545 -0.352108 4.973575 -4.353551 2.001648 -14.512414 6.453192 15.884185 -0.536119 -12.945097 1.120519 -4.140748 -4.337636 5.091935 -2.623283 4.974927 3.733572 -1.483291 -2.322940 3.779677 7.174254 1.254844 8.752089 12.969366 1.751765 12.816712 10.573064 1.014929 3.668563 1.637218 3.055971 -1.202276 7.316301 5.346950 -2.281914 -0.718961 -1.830962 3.429808 -9.015502 1.594492 1.309374 -8.258683 -3.823116 -1.763393 -7.559260 -2.748519 -3.631125 -1.736927 14.770013 -3.074684 18.062236 6.897233 8.334308 -3.036308 8.957473 -1.294023 9.046334 4.258203 -6.820862 0.901939 -7.296265 -0.506679 -0.466765 8.869436 -10.182435 -0.284347 6.652313 -9.133124 -12.352475 7.536947 -1.663942 -3.636057 -4.738742 0.689650 3.485075 2.825888 -5.459763 -11.411186 -8.551199 7.941078 -4.393921 -6.857993 -2.040977 -0.874784 1.085338 1.443499 -6.699642 -0.926507 9.760505 -6.874300 -5.204502 9.875763 -0.206459 8.132766 -2.544733 -0.444006 1.175032 1.362739 3.995930 3.795467 0.308855 -4.889270 -16.623724 1.301247 0.791724 -0.400378 -6.449933 -1.171301 5.307952 5.401525 6.476961 9.951498 -3.782139 7.517746 7.232341 0.168952 -4.093408 -10.451616 -1.011048 -6.201959 2.137946 -4.377081 -5.861553 -1.428214 8.396180 -1.518218 0.749657 6.503565 -4.085040 6.921677 2.114372 -0.214848 0.680482 -6.700773 2.435972 -4.764868 -10.139423 7.252111 10.097006 3.661905 2.499620 -2.654109 -0.589187 -1.469358 -6.861262 3.933159 0.238367 1.372753 12.103155 5.786518 21.036419 -6.089477 0.757003 -3.869453 -2.728162 3.234916 -3.615709 -10.849165 3.769860 2.411006 2.222196 14.097632 -0.852449 -3.486433 5.157939 -0.134936 0.824108 -9.342986 12.255594 -8.040189 -2.015395 -2.210154 -3.679269 -3.912568 -3.835296 -7.676085 -2.229158 13.022249 -7.200410 -10.761297 4.584576 -1.860476 -0.032280 -13.787321 10.376372 -4.995085 6.834788 -2.097435 -3.156067 -0.295663 5.449295 -0.581028 1.364450 5.689333 -9.390344 8.328293 10.013446 0.744523 2.090057 3.984689 2.996827 -2.541713 -2.546299 -7.257711 6.523690 1.226174 -3.550447 -2.385573 -5.246643 6.930575 1.255691 -2.168355 0.921426 8.304887 -4.713411 -3.326391 7.932533 -0.282950 -5.533103 3.258410 1.169696 6.250486 -5.224294 -1.953017 -5.653041 -0.827648 2.444851 3.971132 -11.584852 -4.029722 -7.154984 -11.809006 -1.840950 1.604073 5.830277 3.963302 0.901787 -15.195630 -9.455362 11.941579 -3.448177 4.872738 7.561331 7.921165 8.816949 3.486170 3.566797 -0.236824 -6.044277 -0.587875 -5.415306 -3.346548 1.079791 2.796049 -5.498967 10.301577 2.983808 0.574421 4.877243 1.553160 3.110168 -7.103295 13.945183 6.551693 -7.042250 1.334160 3.455121 11.166037 -12.489130 -7.250838 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -0.758258 -3.783593 4.063821 3.790532 1.010014 1.919859 2.088489 -1.429296 2.305856 2.272612 -1.123989 2.323197 -2.266577 0.180546 -0.744995 1.516991 -1.752206 -2.842526 0.536432 -0.599115 -0.887671 -2.256054 -0.723251 1.979805 1.048743 0.430366 -1.486822 -0.843611 -4.219703 -2.976836 1.196136 -0.783851 1.857565 0.268611 0.604066 -6.090384 2.231917 3.437131 -0.560105 -4.141275 0.294050 -1.420207 -0.638928 -0.037142 -0.269146 1.293748 1.277462 1.453244 0.129881 1.493982 1.148824 0.162083 2.097209 5.097466 -0.393073 3.235786 2.986980 0.149925 0.652377 0.399402 1.346915 -0.098828 2.256361 2.053034 -0.499477 -0.946670 -0.932152 -0.588460 -3.187345 1.280167 0.922557 -1.061678 -2.164641 -0.453619 -1.702508 -0.799687 -3.705915 1.269053 5.044153 -2.238015 4.857216 1.975231 2.833368 -0.698206 2.144829 -0.044567 2.685132 1.470655 -2.158086 0.240376 -2.974508 -1.197055 0.112413 0.452170 -2.250124 -2.270729 1.646809 -1.857476 -3.501741 2.299870 0.066873 -0.291028 -1.413846 -0.086583 1.585859 1.432792 -2.054246 -3.348254 -2.317607 1.352130 -0.960769 -1.811441 -0.178583 -0.104081 -0.333238 -0.663009 -2.909615 -0.726119 2.281214 -2.339549 -0.872624 2.900004 -0.784903 1.939621 -0.811802 -0.343948 -0.039276 1.751856 1.460843 1.485477 1.253621 -1.164212 -4.569380 1.265808 1.079963 1.918428 -1.130247 -0.114241 0.685945 1.641202 0.688529 1.801113 -0.109365 1.969636 2.341851 -0.570068 -2.199148 -3.036034 0.201944 -2.349585 1.207504 -2.085281 -0.601472 0.399431 2.830505 0.655652 1.109948 2.443044 -2.493191 2.424518 -0.122573 0.657046 0.737343 0.009376 1.088600 -1.428917 -2.701872 1.859200 2.616775 0.622785 0.966432 -1.541405 0.284812 -1.362385 -1.947384 1.056022 0.725112 -0.520103 3.077433 1.482057 4.955164 -2.518306 0.228942 -0.154484 -0.519163 0.634167 -0.450295 -3.619960 1.983862 0.291072 0.513748 3.173524 -0.393043 -1.585729 1.580335 -0.277668 0.089230 -2.007246 2.180861 -2.270837 -1.318158 -1.344020 0.601046 -1.437827 -1.219749 -1.699471 -0.093686 4.203187 -1.880856 -2.634113 1.909690 -1.422520 0.361145 -4.092915 4.228594 -1.700531 1.438330 -0.989025 -1.245030 -0.249206 1.279805 -0.590164 -0.027161 1.969223 -1.937732 1.612807 3.595122 0.686903 0.463723 1.446839 1.637186 -0.352131 -0.104378 -1.555397 2.325446 -0.218965 -0.704631 -0.457338 -1.539179 2.061448 -0.136554 -0.302016 1.990297 2.293647 -0.175570 0.595576 1.970380 0.617580 -2.139018 1.075014 0.187132 2.310928 -1.746666 -0.151702 -1.333074 -0.102890 -0.345954 1.642440 -3.440160 -2.489327 -2.235335 -2.892223 -1.103975 0.451321 1.502467 0.288375 0.285993 -4.293121 -2.464035 2.003155 -1.310950 0.519865 2.376877 1.828755 2.873628 1.822803 -0.136504 -0.669480 -0.930126 -0.101728 -1.236773 -0.644120 -0.723581 1.336597 -2.163755 2.403745 2.050841 -0.238484 0.853914 -0.287106 2.999252 -1.925081 4.622657 2.104789 -2.174980 0.719968 1.972368 4.013932 -1.975147 -2.349194 -PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -1.365938 -5.299723 7.912435 6.613722 0.234201 3.504298 2.680283 -4.559588 5.157155 4.041590 -1.666046 1.084725 -5.180185 -0.210912 -0.442552 3.224296 -4.340840 -4.474480 -1.017604 -2.797708 -1.695366 -4.982680 1.746553 2.422707 2.527236 2.429386 -2.675450 -0.670413 -4.355555 -7.421004 4.113662 -0.805275 3.743794 2.507345 -0.024215 -12.669891 6.748664 5.682193 -1.727622 -5.829318 1.416454 -0.738214 -2.481485 0.768561 -1.956122 2.437190 0.542965 3.596442 1.414079 2.874339 2.941880 -0.867399 3.757864 9.615707 -1.270836 6.142747 5.003368 0.997824 0.599926 2.083278 1.251442 1.354680 3.248646 4.720356 -0.642670 -1.468010 0.402144 -1.793398 -7.087912 4.279713 -0.140118 -2.905244 -3.238679 -1.996447 -1.755764 -0.258289 -3.268117 3.303142 8.974900 -4.227290 7.537264 2.966712 3.196289 -1.658805 1.375154 -0.989629 4.122157 2.442495 -3.234894 -1.099667 -4.441924 -3.718491 0.628783 -0.036527 -4.489719 -4.364336 3.658936 -3.607666 -6.475625 2.828930 0.816839 -1.759590 -4.031842 -0.749086 3.184634 0.926325 -2.163943 -6.130303 -4.385068 3.146702 -2.179535 -1.940825 -1.886170 1.216334 -1.352416 0.293340 -6.257261 -0.603501 2.247022 -4.217392 -1.809477 4.447082 -2.004569 2.279140 -0.384776 1.160915 -1.307819 3.772727 1.721906 3.149010 3.409930 0.384602 -4.465168 1.788578 2.598627 2.537920 -0.980030 -1.272928 0.229535 2.140811 -1.153837 3.395717 -1.517453 1.987835 5.165741 -0.946431 -4.153379 -3.368567 -1.565719 -7.684628 2.648374 -4.838173 -1.370846 2.510008 4.604395 1.950662 2.355644 6.100280 -6.743862 4.079050 -1.092090 0.782020 0.382303 0.853977 2.163744 -2.675623 -5.545774 2.973479 3.615954 1.024666 1.414504 -2.462753 -0.641337 -3.865710 -4.412627 2.500099 -0.073982 -1.251509 3.340778 3.261981 11.196381 -4.710614 1.482436 2.086958 -1.334880 1.141646 0.158763 -7.420754 2.574270 0.441865 1.499514 6.752602 -0.254929 -2.368929 2.290439 -1.373280 0.138839 -4.418875 4.291961 -4.554401 -1.039555 -3.699341 0.184594 -1.961432 -2.524661 -1.650602 0.272109 6.910450 -3.535303 -5.204982 5.637757 -1.559654 0.968309 -7.244919 7.858563 -2.949233 2.987310 -1.649419 -2.466018 -0.712008 0.165873 -0.441352 -0.586781 1.724536 -2.397983 3.345231 7.764544 0.913184 0.371080 1.578583 3.520874 -1.281061 1.305616 -3.870922 4.774047 -0.396063 -2.595341 -0.898336 -2.664572 2.551773 -2.563181 -0.995069 4.087848 5.571249 -0.839269 1.747155 3.032523 2.632055 -3.257207 3.575168 1.592445 3.275016 -2.751878 -0.724409 -0.030230 0.691980 -1.760095 3.957762 -6.539151 -6.049638 -4.871186 -6.927122 -2.767253 -0.117802 3.962762 -0.476044 0.093867 -6.448450 -4.622189 5.073566 -2.670614 2.589239 4.278383 4.236533 4.966864 5.845443 -1.427084 -0.623414 -0.396515 0.984707 -2.818236 -1.732472 -2.519014 4.116212 -1.607707 3.215659 4.063370 -0.234955 2.351394 -2.822542 4.800860 -3.879070 8.088994 3.085941 -2.159929 3.384209 1.554468 6.087968 -1.287222 -3.421576 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::priority_queue(int*, int*, std::greater const&) = 0.940247 -3.790563 9.608435 7.446012 -1.036874 2.454631 2.830580 -7.418273 6.513641 2.767133 -0.451153 0.673484 -5.521318 2.286372 -2.973295 5.151243 -6.154461 -4.057400 -2.839278 -5.594788 -3.136858 -4.462340 4.543105 0.192712 4.118823 1.579872 -3.344726 -1.843206 -3.870357 -7.098972 5.450397 -0.913160 3.339298 0.261367 -0.125740 -12.639157 6.922191 4.623616 -2.928716 -5.884756 2.656578 -0.954828 -2.169918 0.213318 -1.117389 1.093784 -1.365642 4.419587 4.045990 3.626309 3.498425 2.008722 2.668866 11.172301 -4.115708 5.146434 2.964775 1.092119 -0.939094 3.276122 1.359565 2.860959 2.271252 4.130004 0.962263 -4.285475 -0.454605 -2.575524 -6.915028 6.181520 -0.987473 -3.251583 -4.513953 -2.427605 -2.697485 -0.526674 -7.169956 5.215947 9.205215 -5.695894 4.582675 1.041119 0.752142 -2.095321 1.173083 -1.044937 4.513997 2.234395 -1.533854 -1.315600 -2.558125 -2.174176 1.454325 -1.541046 -3.687500 -9.617349 5.017753 -4.644258 -6.871165 2.704689 3.468681 -1.808763 -4.185367 -1.224116 2.363313 1.569214 -3.896939 -6.257009 -2.900261 2.689642 0.774658 -1.665333 -0.460093 -0.270847 -1.454503 -0.723592 -7.252107 -0.562092 0.349282 -3.584611 -2.497459 4.386936 -1.199505 0.590559 0.204298 2.540905 -2.113778 5.158216 -0.375506 4.964911 2.447962 3.549952 -3.297981 2.348933 3.635234 2.677835 -0.063026 0.677557 -2.542773 2.175603 -4.074001 2.651380 -2.009622 1.592895 5.625887 -1.951562 -5.222835 -0.855305 -0.308766 -8.521289 2.270986 -5.622981 -2.620956 1.473648 4.436629 3.596285 3.556074 6.315468 -6.357739 2.716877 -0.653273 0.118342 2.856209 0.624785 3.385921 -2.657070 -6.103256 1.739020 1.777666 1.024896 0.819215 -1.424326 -0.625802 -5.473724 -2.787157 1.655842 2.208147 -3.003568 2.905844 4.191818 7.749413 -5.012693 1.492563 3.957130 -2.142882 0.972700 -0.245438 -8.325710 2.402288 0.872692 2.079574 6.053589 -0.624612 -1.914993 2.999532 -2.353338 1.523720 -3.583472 1.095943 -4.844732 -1.954203 -4.937460 1.521698 -1.294201 -1.848802 -1.152208 -0.931841 6.803496 -5.171973 -4.005911 8.794344 -2.406605 1.307500 -7.184303 8.288935 -2.428025 2.207233 -1.753243 -0.551236 -0.842025 0.815767 -3.304810 0.437076 1.884852 -1.421550 2.946923 9.975285 1.208722 0.418346 0.318152 6.021795 -2.549571 3.357956 -4.012136 7.614824 -1.345438 -3.627588 -0.187895 -2.363415 -0.165482 -5.103116 1.206937 6.386758 3.686471 0.955478 3.208610 2.355933 5.447375 -3.315822 6.408890 0.848415 2.043138 -3.016539 -0.217415 2.541446 1.267365 -3.563874 4.446194 -6.810859 -7.832607 -6.577659 -6.563391 -0.968794 -2.121502 3.410576 -2.711497 -1.417450 -5.289079 -5.484146 4.528043 -2.840566 1.565732 4.914686 3.722600 4.586709 8.112578 -2.874351 2.101381 -0.932501 1.429585 -1.062724 -3.324152 -2.510949 4.529403 -2.396037 1.349558 6.010703 0.041216 2.912524 -2.421390 4.896103 -4.390230 7.374852 2.545722 -0.702054 5.709198 4.183162 7.008171 2.301882 -3.160424 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::top() const = 0.000220 -0.389726 0.790313 0.737571 -0.204885 0.236725 -0.023966 -0.500012 0.574283 0.040264 -0.055265 0.094815 -0.455452 0.233349 0.045907 0.395954 -0.652769 -0.368299 -0.222189 -0.395253 -0.313466 -0.377801 0.161405 0.136428 0.257319 0.407302 -0.346292 0.045412 -0.323577 -0.227387 0.471219 -0.145094 0.367779 0.450570 0.193925 -1.223643 0.528901 0.362368 -0.173381 -0.563528 0.061951 -0.319804 0.117320 -0.330280 -0.162989 0.171118 -0.073823 0.181205 0.380389 0.100359 0.054095 0.085839 0.064073 0.788959 -0.311797 0.358111 0.195386 -0.070655 -0.126166 -0.001995 0.172549 0.203485 0.327513 0.292441 -0.147409 -0.481215 -0.153121 -0.347498 -0.566853 0.483291 -0.008938 -0.112748 -0.512944 -0.329556 -0.315604 -0.200205 -0.723106 0.579379 0.758921 -0.580309 0.373620 0.113938 0.190064 0.018019 0.336373 -0.011292 0.590466 0.182546 -0.215931 0.185759 -0.187013 -0.292694 0.165484 -0.139570 -0.293432 -0.561960 0.240721 -0.468366 -0.562896 0.268218 0.254342 0.019095 -0.487196 -0.150365 0.243118 0.232661 -0.304878 -0.505724 -0.103669 0.169918 0.165427 -0.207262 -0.092970 0.018373 -0.158723 -0.302806 -0.674264 -0.040806 0.079408 -0.257143 -0.015468 0.491988 -0.248044 -0.046576 -0.079998 0.076214 -0.235113 0.751295 -0.054910 0.333196 0.033909 0.070796 -0.330043 0.110742 0.221382 0.487163 -0.079976 -0.114081 -0.190167 0.113097 -0.393814 0.005467 0.010078 0.188577 0.528557 -0.122358 -0.431884 -0.201185 -0.234657 -0.814269 0.136179 -0.458108 0.031610 0.418412 0.438281 0.521969 0.369944 0.635326 -0.512890 0.204669 -0.162867 -0.022855 0.426201 0.373733 0.299957 -0.266577 -0.369376 0.316329 0.040221 0.143191 0.234510 -0.192030 0.018833 -0.391269 -0.184301 0.350218 0.272859 -0.025563 0.406689 0.319337 0.446080 -0.414618 0.194295 0.287294 -0.076407 0.104195 0.018486 -0.551135 0.288903 0.067707 -0.039440 0.365380 -0.153064 -0.172536 0.102533 -0.126501 0.219743 -0.362077 0.051744 -0.343209 -0.016273 -0.522862 0.172728 -0.230015 -0.205083 -0.163358 -0.110432 0.658174 -0.426017 -0.315154 0.666722 -0.127578 0.401099 -0.539662 0.436058 -0.299949 0.489695 -0.274681 -0.141826 -0.016232 -0.113746 -0.236717 0.046037 0.297122 -0.099769 -0.097745 0.619155 0.183514 -0.029622 0.064775 0.467164 -0.036565 0.391248 -0.216062 0.613462 -0.051258 0.018059 0.096009 -0.241783 0.009176 -0.248643 0.061200 0.627637 0.411913 0.334046 0.304651 0.229314 0.341505 -0.320216 0.298192 -0.008546 0.188728 -0.286134 -0.033345 0.127514 0.330176 -0.209912 0.141758 -0.559202 -0.758410 -0.563062 -0.339127 -0.175816 0.046403 0.103907 -0.080108 -0.100624 -0.316339 -0.384709 0.362731 -0.277271 0.478701 0.154140 0.210556 0.440039 0.636941 -0.339023 -0.138601 0.096752 0.016502 -0.012848 0.051020 -0.527062 0.546016 -0.306803 0.095469 0.660810 -0.205963 0.201999 -0.018558 0.670547 -0.311267 0.703963 0.216023 -0.274665 0.462170 0.466255 0.522629 0.278470 -0.344586 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::pop() = 1.327249 -1.842940 4.735988 4.358743 -1.350276 1.151165 -0.385010 -3.280541 2.526298 0.714372 -0.487749 1.285693 -1.771198 1.655347 -0.761440 2.950222 -3.987517 -1.435133 -1.502833 -2.162959 -1.838032 -1.510283 1.149897 0.746226 1.882252 2.440052 -2.178552 0.219117 -0.824604 -3.153408 1.717033 -0.558416 1.710602 1.128183 0.977179 -6.274723 3.459608 2.269812 -1.055867 -3.074630 0.726226 -0.984692 -0.616230 -1.347661 -1.456218 0.777187 -0.747094 1.782504 1.770963 1.261371 0.204309 1.569922 1.921704 4.929777 -0.992233 2.186224 1.554765 0.001680 -0.388157 0.138739 1.136078 1.495025 1.193409 1.282027 0.582996 -2.872763 -1.108438 -1.177596 -2.239882 2.737599 -0.217089 -1.221432 -2.735869 -1.621266 -1.828627 -0.343287 -4.102353 3.430848 3.921174 -3.136018 1.472065 0.478866 0.238743 -0.094511 1.267735 -0.272460 2.916897 1.470021 -0.441019 0.451861 -0.012963 -1.867540 1.546254 -1.547469 -2.265014 -5.099296 1.633828 -3.661084 -3.064587 1.550149 1.912174 -0.882815 -1.305378 -1.645092 1.349508 0.816135 -1.453168 -2.226570 -0.245111 0.935287 1.075568 -1.453481 -0.475063 0.445573 -0.155810 0.222133 -3.800660 0.308320 0.566395 -0.912064 0.281076 2.106543 0.293946 -0.370004 -0.778145 0.580270 -1.019282 3.312763 -0.569476 2.498661 -0.060084 2.212922 0.029088 1.927232 1.628043 -0.089290 -0.613885 -0.298608 -1.106472 1.227475 -1.829974 0.953901 -0.941986 1.166220 2.488392 -0.204528 -2.728658 -1.243764 -1.761333 -3.906406 0.679751 -2.304702 -1.441123 1.989605 2.334530 1.815173 1.933202 1.646973 -2.721262 0.562642 -0.369029 0.617667 2.154438 0.758535 1.215053 -1.331500 -2.323602 2.035251 0.444023 0.946952 0.642276 -0.478077 0.321635 -1.615275 -0.771828 2.096347 1.597191 -0.472441 2.111401 1.806209 3.298041 -1.105604 0.714496 1.565589 -1.022202 0.500933 -0.184960 -3.256898 1.223427 0.355756 1.260889 2.791908 -0.673920 -0.531219 1.049937 -0.509850 0.792781 -1.573167 0.500724 -1.882114 -0.435348 -2.198667 1.023553 -0.651019 -0.470695 -1.122779 -1.001248 3.595108 -4.059089 -1.365028 4.134606 -1.488509 1.473661 -2.691747 2.874177 -1.384845 1.832136 -0.464659 -0.810333 0.298939 -1.393782 -2.267508 0.470415 1.652199 -0.493564 -0.453362 3.289403 0.758119 -0.338869 -0.082003 2.274462 -0.903875 2.489846 -1.548914 3.591225 -0.374255 -0.250529 -0.456403 -1.060684 -0.562632 -2.162772 0.676069 2.791240 0.911762 1.871785 1.222961 1.052659 2.395821 -2.019910 2.618001 -0.303464 0.194865 -1.819266 -0.380902 1.026920 1.307132 -1.198722 1.556680 -3.140178 -3.333232 -5.059919 -1.422212 -0.948797 -0.437965 1.481495 -1.392889 -1.180667 -1.569564 -2.852437 3.261556 -1.276846 0.399932 2.090691 1.205742 2.159113 3.131929 -1.002202 0.440099 -0.673235 0.141014 0.428872 -0.388886 -2.187431 2.909942 -1.053834 0.362578 3.737070 -0.857522 1.661281 -0.467380 2.574157 -1.530050 3.293905 1.013036 -1.400078 1.746830 2.724102 2.019544 0.846948 -2.017524 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 1.309759 -2.363648 5.744442 5.259955 -1.397314 1.521256 -0.149424 -3.995903 3.175719 1.007257 -0.451986 1.579510 -2.334373 1.892648 -1.016679 3.442318 -4.603809 -1.936632 -1.810991 -2.742404 -2.192900 -1.936073 1.354302 0.974554 2.297639 2.459843 -2.683963 0.013852 -1.550872 -3.707702 2.172300 -0.645802 2.167124 0.952556 1.017980 -7.953643 4.168260 2.958424 -1.297491 -3.818215 0.975570 -1.372060 -0.695967 -1.500593 -1.716086 0.833712 -0.894123 1.962068 2.191184 1.460110 0.437151 2.003329 2.109270 6.316740 -1.425807 2.802478 1.885363 0.044204 -0.577423 0.344476 1.326040 1.773027 1.629998 1.543089 0.518738 -3.458326 -1.227027 -1.365764 -2.941381 3.270130 -0.147485 -1.573796 -3.197665 -1.802468 -2.389672 -0.565629 -4.345784 3.975032 4.835807 -3.760170 2.034125 0.561204 0.366678 -0.121609 1.682686 -0.343866 3.594383 1.700521 -0.617583 0.347174 -0.495878 -1.980858 1.687097 -1.541005 -2.755752 -6.100507 2.091449 -4.235375 -3.906567 1.873254 2.232936 -1.092401 -1.984226 -1.957697 1.669947 1.080095 -1.874832 -2.932232 -0.646029 1.335013 1.167283 -1.849050 -0.477687 0.202541 -0.228090 -0.069522 -4.576692 0.321609 0.773434 -1.209576 -0.118264 2.734250 0.003849 -0.336331 -0.878251 0.841500 -1.299925 3.813969 -0.732820 2.967915 0.108720 2.372117 -0.475491 1.894594 1.867734 0.402278 -0.759034 -0.358705 -1.416602 1.508870 -2.157719 1.277357 -1.042374 1.544552 3.029342 -0.327451 -3.180583 -1.500259 -1.713776 -4.721469 0.816746 -2.800366 -1.709408 2.220381 2.902243 2.177806 2.308817 2.312802 -3.201072 0.978685 -0.365361 0.597979 2.687693 0.698384 1.554042 -1.687710 -2.994863 2.362082 0.657149 1.223090 0.676054 -0.472896 0.293324 -2.052948 -1.170960 2.143114 1.838230 -0.604048 2.675991 2.282511 4.257685 -1.904088 0.969909 1.840539 -1.347230 0.737389 -0.335050 -4.073477 1.376816 0.562559 1.231008 3.636741 -0.817344 -0.955839 1.336013 -0.601034 1.007686 -2.035514 0.755689 -2.434128 -0.637371 -2.704079 0.931925 -0.880160 -0.700130 -1.539783 -1.296760 4.457903 -4.719876 -2.038650 5.010321 -1.688698 1.708929 -3.743773 3.683784 -1.734470 2.163595 -0.752143 -0.904806 0.268051 -1.129515 -2.795954 0.666456 2.024305 -0.923685 -0.156257 4.323731 0.919415 -0.222675 -0.133133 2.828817 -1.049132 2.879731 -2.051288 4.496632 -0.490884 -0.584121 -0.527122 -1.366357 -0.469435 -2.524618 0.837951 3.300741 1.356123 2.097814 1.422484 1.587067 2.901505 -2.402092 3.221708 -0.334739 0.367749 -2.099784 -0.398758 1.172720 1.502173 -1.359107 2.012643 -3.952570 -4.152082 -5.738097 -2.168380 -0.831703 -0.430026 1.679396 -1.561299 -1.358408 -2.382770 -3.462440 3.633616 -1.597287 0.831782 2.607728 1.622980 2.684939 3.867172 -1.345809 0.562098 -0.722140 0.178164 0.371952 -0.764512 -2.552473 3.497365 -1.372420 0.681335 4.442684 -0.916136 2.056944 -0.593907 3.083009 -1.950313 4.230117 1.286868 -1.681236 2.254087 3.265463 2.821965 0.843803 -2.444306 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::empty() const = -0.108803 -0.518586 0.770821 0.699392 -0.201344 0.296483 0.051176 -0.375090 0.545451 0.049087 -0.134322 0.153447 -0.482879 0.128155 0.064337 0.282026 -0.608467 -0.408082 -0.094199 -0.306888 -0.267023 -0.399641 -0.007240 0.259733 0.207613 0.420827 -0.264768 0.008944 -0.423890 -0.160363 0.418014 -0.151767 0.372159 0.468304 0.236406 -1.313768 0.442165 0.407459 -0.135452 -0.685573 0.021265 -0.362747 0.148754 -0.293179 -0.158632 0.175852 0.068735 0.272993 0.267731 0.084891 -0.051389 -0.032948 0.074019 0.873939 -0.188136 0.416053 0.340040 -0.071700 -0.093658 -0.011554 0.197287 0.059062 0.359731 0.293395 -0.217674 -0.372378 -0.148364 -0.351188 -0.561613 0.385247 0.050198 -0.105738 -0.482314 -0.335373 -0.354116 -0.239821 -0.781652 0.569382 0.820384 -0.619157 0.545225 0.194417 0.331869 0.043783 0.416104 0.006988 0.586828 0.191516 -0.314211 0.216432 -0.310391 -0.322642 0.120632 -0.162848 -0.298001 -0.572515 0.254512 -0.486396 -0.614157 0.337765 0.145767 0.034631 -0.434571 -0.126797 0.276378 0.308065 -0.376554 -0.546446 -0.186219 0.196559 0.051656 -0.225084 -0.048769 0.100635 -0.143621 -0.364126 -0.654305 -0.061466 0.226067 -0.331134 0.014182 0.555523 -0.256064 0.123269 -0.078439 0.017428 -0.168084 0.776852 0.082412 0.211625 0.051603 -0.051902 -0.421124 0.132353 0.168719 0.548257 -0.112743 -0.119869 -0.015426 0.156504 -0.236685 0.001068 0.004838 0.241618 0.484289 -0.103845 -0.401817 -0.351414 -0.215016 -0.750803 0.130277 -0.454882 0.044802 0.452122 0.460561 0.519014 0.272235 0.641491 -0.519602 0.252924 -0.177434 0.003014 0.314003 0.419158 0.307496 -0.292643 -0.368210 0.304531 0.136032 0.173543 0.244501 -0.256790 0.028343 -0.363736 -0.239992 0.347055 0.307263 -0.009420 0.485295 0.332248 0.459587 -0.482010 0.128117 0.151549 -0.083891 0.099081 0.004941 -0.596357 0.325786 0.073123 -0.056598 0.378302 -0.150264 -0.184324 0.139013 -0.118025 0.166917 -0.376482 0.100738 -0.391829 -0.080431 -0.483237 0.210926 -0.303579 -0.247021 -0.265108 -0.117843 0.701954 -0.436059 -0.336818 0.546231 -0.111866 0.441992 -0.597384 0.470485 -0.317869 0.541043 -0.278269 -0.194240 -0.024114 -0.070728 -0.113568 0.000541 0.327704 -0.150530 -0.046998 0.578724 0.170089 0.000000 0.180393 0.452153 -0.043038 0.237150 -0.234832 0.514272 -0.065272 0.008170 0.105405 -0.264570 0.144114 -0.109917 0.049876 0.635315 0.451948 0.265781 0.304309 0.308750 0.181931 -0.319534 0.199766 -0.024098 0.336252 -0.317771 -0.030497 -0.050913 0.333171 -0.125791 0.118963 -0.620385 -0.766941 -0.575600 -0.352983 -0.231426 0.059075 0.096451 0.000353 -0.030204 -0.437483 -0.377263 0.334917 -0.292182 0.470283 0.173480 0.264409 0.525221 0.586324 -0.275004 -0.232723 0.169150 0.032480 -0.124170 0.085632 -0.494877 0.445134 -0.378571 0.213734 0.626727 -0.159384 0.176865 0.005056 0.718432 -0.349569 0.746252 0.296872 -0.412654 0.365991 0.522312 0.551060 0.150772 -0.380566 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::~priority_queue() = 0.057397 -0.637084 1.406068 1.148559 -0.216257 0.459275 0.098469 -1.020815 1.134786 0.418242 -0.226512 0.096417 -0.759400 0.327308 -0.325032 0.747571 -1.072123 -0.635570 -0.315147 -0.734275 -0.527100 -0.779651 0.377599 0.079012 0.472532 0.466042 -0.519805 0.120457 -0.531408 -0.992807 0.725262 -0.278760 0.440325 0.205544 0.219441 -1.847739 1.092699 0.684323 -0.353470 -0.984009 0.125179 -0.365387 -0.092975 -0.185211 -0.155125 0.264349 -0.114308 0.618336 0.641209 0.342059 0.374324 0.120495 0.275379 1.599360 -0.564402 0.755955 0.353659 0.022414 -0.130659 0.365319 0.301168 0.357898 0.448236 0.709933 -0.029851 -0.668009 -0.084507 -0.374421 -0.938652 0.961204 -0.172609 -0.389465 -0.766918 -0.436680 -0.545362 -0.179081 -1.382657 0.861582 1.461113 -0.820736 0.743462 0.272129 0.379901 -0.094926 0.442080 -0.139147 1.087794 0.350096 -0.465249 0.046664 -0.215963 -0.392079 0.299723 -0.248286 -0.503691 -1.195788 0.547666 -1.019585 -1.018851 0.460850 0.443301 -0.072403 -0.636844 -0.184530 0.540599 0.219436 -0.539681 -0.959743 -0.266277 0.337121 0.021167 -0.292979 0.005415 -0.080409 -0.176342 -0.092665 -1.072073 -0.221385 0.111002 -0.531346 -0.193486 0.809155 -0.147938 -0.002623 -0.078422 0.216320 -0.232088 0.933673 -0.101942 0.763633 0.005470 0.473233 -0.655445 0.432075 0.456921 0.195493 -0.015826 0.058929 -0.224093 0.311274 -0.703627 0.242808 -0.441139 0.287760 0.834150 -0.252553 -0.742748 -0.279905 -0.271656 -1.301591 0.287978 -0.799598 -0.444172 0.283821 0.811443 0.769030 0.607588 0.886938 -1.010321 0.345676 -0.256916 0.095366 0.575287 0.200482 0.506267 -0.435883 -0.729053 0.399084 0.305837 0.188690 0.273327 -0.443899 -0.062643 -0.721590 -0.258814 0.560344 0.443873 -0.186708 0.610817 0.562860 1.037924 -0.836405 0.333805 0.588869 -0.123142 0.148734 -0.022961 -1.153112 0.495811 0.147620 0.378021 0.721166 -0.167489 -0.216630 0.209839 -0.281860 0.322405 -0.646585 0.065613 -0.669261 -0.145424 -0.710930 0.402494 -0.364315 -0.300642 -0.248946 -0.184890 1.039739 -0.903503 -0.569863 1.371669 -0.356045 0.496185 -0.883451 0.854014 -0.500786 0.656375 -0.326238 -0.086736 -0.096566 -0.014730 -0.398775 0.113310 0.433175 -0.191969 0.264619 1.155969 0.283296 0.121540 0.106390 0.861361 -0.301853 0.455706 -0.479828 1.022127 -0.085970 -0.249655 -0.002061 -0.461820 0.035566 -0.513458 0.183150 0.909597 0.679717 0.242350 0.534494 0.361901 0.613461 -0.531061 0.752023 0.031707 0.277551 -0.514897 -0.068705 0.255539 0.294959 -0.509884 0.443218 -1.064583 -1.162759 -1.168457 -0.668301 -0.328996 -0.205506 0.340991 -0.224872 -0.086560 -0.654540 -0.738090 0.994095 -0.427849 0.410516 0.453873 0.464299 0.670338 1.139130 -0.411121 -0.002982 -0.124957 0.020118 -0.187765 -0.232563 -0.613727 0.859678 -0.529269 0.287710 0.964461 -0.254637 0.299888 -0.065178 0.753432 -0.641575 1.064403 0.492112 -0.240012 0.717579 0.705545 1.131604 0.362719 -0.599847 -PE-benchmarks/Nearly_sorted_Algo.cpp__printArray(int*, int) = -0.818930 -1.502449 1.619248 1.476833 0.258341 1.013070 0.492458 -0.794670 1.202624 0.796116 -0.597128 0.698489 -1.226926 -0.145986 0.091063 0.293256 -0.957959 -1.243879 0.053715 -0.423240 -0.272912 -1.266011 -0.347058 0.922382 0.280274 0.501104 -0.609678 0.315378 -1.929610 -1.385453 0.647489 -0.195085 0.848804 0.526636 0.380092 -2.854372 1.172454 1.499686 -0.219223 -1.928996 0.098612 -0.910747 -0.274446 -0.050811 0.061479 0.734458 0.389882 0.469979 0.188344 0.173706 0.280167 -0.297652 0.157964 1.879904 -0.357802 1.525241 1.446709 -0.062505 0.127121 0.309818 0.323624 -0.043596 1.089864 1.234968 -0.959393 -0.432330 0.176937 -0.318994 -1.471745 0.842844 0.444918 -0.540535 -0.762349 -0.509924 -0.886770 -0.348689 -0.020176 0.567487 2.212539 -0.672280 2.127096 0.756085 1.342394 -0.136678 1.315059 -0.169501 1.757011 0.466122 -1.216611 -0.059928 -1.706147 -0.853474 -0.016885 0.824499 -0.732013 0.118882 0.465025 -1.213152 -1.614793 0.689230 -0.161507 -0.188571 -1.442225 0.217310 1.011690 0.519894 -0.370082 -1.608739 -1.072398 0.846917 -1.015236 -0.670005 -0.270410 0.016272 -0.422703 -0.399759 -1.355592 -0.260527 0.967496 -0.901835 -0.683930 1.404705 -0.885105 0.632393 -0.210827 0.002164 -0.219274 0.783278 0.290655 0.331182 0.699316 -0.846726 -2.052009 0.175829 0.270151 1.015876 -0.628057 -0.353746 0.371636 0.448014 -0.178990 0.475660 -0.474247 1.033564 1.148537 -0.336801 -0.723332 -1.296597 -0.114737 -1.451039 0.480819 -0.909117 -0.229126 0.148777 1.268509 0.566602 0.482382 1.612206 -1.241316 1.169817 -0.221245 0.199084 0.398570 0.192676 0.593912 -0.773650 -1.131852 0.809074 0.879712 0.316198 0.470734 -0.594877 -0.118410 -0.821891 -1.352626 0.870468 0.172295 0.341250 1.420105 0.832107 2.578984 -1.693043 0.513329 0.185462 -0.106893 0.212447 -0.131842 -1.452035 0.767643 0.323882 0.386398 1.723092 -0.113228 -0.913547 0.050317 0.170714 0.309105 -1.189590 1.026981 -1.082878 -0.007883 -0.748378 -0.068907 -0.730221 -0.935607 -0.726934 0.061663 1.808842 -0.397112 -1.954772 1.146568 -0.562016 0.848081 -2.340395 0.931806 -0.895451 1.125615 -0.789948 -0.318145 -0.176202 0.271085 -0.237654 0.295037 0.714570 -1.009271 0.883045 1.307243 0.405032 0.422487 0.416333 0.631433 -0.070016 -0.189176 -0.914880 0.966974 -0.020218 -0.223951 -0.133132 -0.749494 1.046490 0.195034 -0.218819 0.677846 1.590137 -0.142241 0.391996 1.179309 0.170185 -0.760490 0.412404 0.183571 0.956971 -0.589182 -0.326351 -0.553246 0.129546 -0.005856 0.575163 -1.640333 -1.367215 -0.556014 -1.914313 -0.513852 0.333937 0.531655 0.642647 0.314199 -1.993267 -0.734748 1.010664 -0.501564 1.686305 0.571699 0.878739 1.129995 1.106461 -0.314366 -0.592260 -0.061490 0.084848 -1.047367 -0.336495 -0.759926 1.003923 -0.780188 1.188712 0.905796 -0.272541 0.446654 -0.324783 1.473656 -0.914461 2.047852 1.005438 -1.008170 0.456425 0.504999 1.838920 -0.560447 -0.962606 -PE-benchmarks/Nearly_sorted_Algo.cpp__main = -0.442693 -2.503035 3.700267 3.059390 -0.221161 1.354717 0.941807 -1.663550 2.112816 1.019475 -0.928148 1.112083 -2.124967 0.276964 -0.578217 1.378917 -2.435077 -2.089202 -0.254071 -1.036907 -0.825902 -1.845651 0.439646 1.229479 1.198398 1.406107 -1.352999 -0.360412 -2.272289 -2.437284 1.650374 -0.576985 1.659156 0.953986 0.297128 -5.836701 2.479892 2.331544 -0.746341 -3.083955 0.649296 -0.913897 -0.626511 -0.521927 -0.879553 0.835250 0.521069 1.681550 0.640583 1.026283 0.330292 -0.026299 1.250219 4.523460 -0.544865 2.408296 2.402680 0.206622 0.049521 0.377996 0.867241 0.264460 1.440153 1.787237 -0.442644 -1.141588 -0.315260 -1.137390 -2.639209 1.715120 0.191674 -0.649524 -1.656042 -0.835029 -1.466455 -0.341936 -1.637186 1.943101 4.010959 -2.253429 3.105235 1.086907 1.638742 -0.310893 1.021248 -0.043923 1.907215 1.179707 -1.336069 -0.234282 -2.018551 -1.326491 0.331696 -0.264497 -1.670136 -2.686338 1.596035 -2.258619 -2.845654 1.371635 0.474808 -0.584114 -1.388049 -0.435296 1.380149 1.062342 -1.329280 -2.481546 -1.510647 1.034551 -0.562219 -1.023895 -0.280912 0.559577 -0.520626 -0.473356 -2.910335 -0.150067 1.167192 -1.722856 -0.322247 2.104305 -0.834866 1.020030 -0.367441 0.351521 -0.602077 2.203956 0.764727 1.124503 0.989509 0.086742 -1.767395 0.783013 1.142814 1.642907 -0.870428 -0.476405 0.067095 1.004983 -0.438323 0.679792 -0.596086 1.074960 1.980724 -0.622337 -1.982705 -1.932405 -0.715371 -3.166933 0.761868 -2.058337 -0.648156 1.474170 2.131969 1.173067 1.140546 2.773404 -2.576904 1.672670 -0.389281 0.286202 0.623260 0.538541 1.088422 -1.232190 -2.231897 1.415796 1.295114 0.746141 0.641257 -0.995889 0.047629 -1.734160 -1.687640 1.326896 0.793786 -0.383097 1.866759 1.452779 3.479969 -2.172471 0.393292 0.759673 -0.606933 0.318412 0.003116 -3.155979 1.323101 0.268482 0.556613 2.628633 -0.177094 -1.234489 1.088114 -0.450174 0.228580 -1.718860 1.352655 -1.901577 -0.594483 -1.687027 0.502999 -1.024392 -1.021585 -1.181400 -0.411327 3.246800 -2.186277 -2.182331 2.235299 -0.589026 1.098324 -3.411097 2.840795 -1.412037 1.940913 -0.562709 -0.881857 -0.100627 -0.198755 -0.659354 -0.118897 1.193078 -1.047021 0.978435 2.984352 0.663970 0.169121 0.725152 1.732556 -0.489992 0.730817 -1.429886 1.960294 -0.342147 -1.077354 -0.134576 -1.098715 0.956136 -0.782283 0.077536 2.106897 1.992378 0.430758 1.274219 1.525779 1.208238 -1.610370 1.210913 0.188814 1.776968 -1.334378 -0.334683 -0.390760 0.811637 -0.619531 1.497259 -2.984107 -3.141965 -2.815841 -2.794255 -0.996792 -0.269780 1.264114 -0.309413 -0.008660 -2.874667 -1.959444 1.870152 -1.169300 1.566081 1.907952 1.504075 2.302190 2.352139 -0.924440 -0.549198 0.169873 0.590666 -0.927679 -0.391349 -1.588711 1.705617 -1.278131 1.254173 2.394724 -0.430163 0.954879 -0.706933 2.449655 -1.623251 3.749871 1.547066 -1.740792 1.293129 1.351283 2.667803 -0.193034 -1.737714 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::~vector() = 0.992689 -2.515697 6.320914 4.841313 -0.909663 2.207380 0.519021 -4.882021 4.415472 2.069594 -1.070508 0.396050 -2.891285 1.159484 -2.367029 2.861759 -4.362476 -2.237189 -1.863204 -3.505209 -1.930579 -3.026768 1.507595 0.487083 2.207878 1.597575 -2.030543 0.574988 -2.386400 -5.159292 2.849155 -0.649053 1.484581 -0.392497 0.959458 -6.836371 5.020857 3.593837 -1.483869 -4.163804 0.790353 -0.825036 -1.716026 0.229469 -0.626279 1.009508 -1.022526 3.052410 2.295861 1.696874 1.601859 1.089412 1.710931 6.923320 -2.012163 3.485884 1.746217 0.448211 0.024833 2.314632 0.995949 1.926005 1.192971 2.667446 0.859892 -2.769930 0.147747 -0.821358 -3.364292 4.115437 -0.803842 -2.654206 -2.551774 -1.838408 -2.649021 -0.062768 -5.379128 3.475113 5.835022 -2.962998 2.942714 0.950602 0.925586 -0.632564 1.536107 -0.831747 4.277520 1.636678 -1.285634 -0.315510 -1.044035 -1.469736 1.522901 -1.295031 -2.911947 -5.887207 2.966093 -5.020582 -4.132400 1.884687 2.175101 -1.410624 -1.840331 -0.988744 1.808769 0.344063 -2.000256 -3.641776 -1.142517 2.177701 -0.061221 -1.159625 0.209731 -0.109637 -0.222041 0.520861 -4.079505 -0.305696 0.596734 -1.669546 -1.059239 3.227731 0.179703 -0.189954 -0.347099 1.249796 -0.936809 2.749867 -0.754028 3.532137 -0.129424 2.953877 -1.940742 2.206809 2.027826 -0.675219 0.083484 0.592673 -0.750315 1.775642 -2.558769 2.015849 -2.838234 0.945042 2.802965 -1.028769 -2.806614 -1.064336 -1.109558 -4.864144 0.751327 -2.966432 -3.536003 0.505712 3.309432 3.030791 2.158721 2.755374 -4.194587 0.961873 -0.696329 0.487484 1.802519 -0.411359 1.636352 -1.706701 -3.425282 1.329054 1.180242 1.016124 0.693406 -1.409173 -0.519003 -2.771909 -0.866908 2.149578 1.653960 -1.210947 2.578237 3.067862 4.466482 -3.286757 1.135741 2.419179 -1.422317 0.525951 -0.239796 -5.029433 1.457788 0.931827 2.454279 3.955893 -0.618975 -0.297097 1.216285 -1.299499 1.026948 -2.537911 0.515449 -2.985190 -0.899064 -2.612632 1.498081 -1.277188 -0.981078 -1.464110 -1.355720 4.157160 -4.576517 -2.547127 6.216035 -1.520349 1.147155 -3.547855 3.338871 -1.766617 2.110173 -0.315928 0.085066 -0.401403 0.028472 -2.460287 0.625776 1.481017 -1.313379 1.961439 5.101203 0.928097 0.324891 -0.053970 3.585188 -2.374574 1.740014 -2.979554 4.317452 -0.465645 -1.794075 -0.682143 -1.830301 -0.279959 -2.928386 1.007263 2.999966 2.078332 0.922844 1.528793 1.466087 2.655263 -1.849833 3.884161 0.225428 0.289228 -2.124517 -0.411292 1.525349 0.790895 -1.957652 2.291156 -4.745048 -4.315032 -5.617692 -3.124198 -0.869035 -1.896582 1.858439 -1.121462 -0.800105 -3.050740 -3.878361 4.654710 -1.552951 0.625980 2.710167 2.177262 2.433919 4.619426 -1.267709 1.387255 -0.997931 0.552364 -0.740975 -1.965915 -1.831434 3.703113 -1.619825 1.113075 4.158453 -0.619483 2.093914 -0.658931 2.085841 -3.085511 4.054383 1.994520 -0.868445 2.440778 2.871867 4.529308 1.228310 -2.388990 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::~_Vector_base() = 0.788666 -2.452615 5.360329 4.313660 -0.970046 1.995677 0.156500 -3.437606 2.668213 1.863986 -0.893352 0.963765 -2.301164 0.921073 -1.085909 2.280870 -3.587025 -1.435322 -1.459168 -2.344990 -1.138124 -2.125545 0.734710 1.170877 1.807877 1.873839 -1.638742 0.491603 -1.727137 -4.645350 1.796394 -0.480965 1.670500 0.171244 1.130025 -5.900841 4.028189 3.196256 -0.971492 -3.742851 0.762264 -0.329338 -1.342675 0.191795 -1.106152 1.245388 -0.431617 1.899855 1.469113 1.584202 0.461836 0.650008 2.377836 4.986705 -0.856217 2.781228 1.967720 -0.075674 0.418603 1.042925 0.662802 1.251068 0.907473 1.737824 0.885174 -2.314990 -0.085640 -0.461601 -2.661508 2.801797 -0.665214 -1.972995 -2.104251 -1.731408 -2.218946 0.108321 -3.783208 2.974501 4.652084 -2.241890 2.616432 0.707854 0.369241 -0.218562 1.393041 -0.289595 2.656003 1.532184 -0.930223 0.343098 -0.195423 -1.706656 1.426542 -0.695006 -2.606886 -4.607968 2.298935 -3.852626 -3.017769 2.014587 1.476044 -1.441441 -1.376985 -1.631830 1.094985 0.805889 -1.701851 -2.742967 -0.802933 1.826119 0.350018 -1.154471 -0.040659 0.454491 -0.292667 0.546874 -3.107712 0.128464 0.901272 -1.363921 -0.377264 2.557199 0.539691 0.315951 -0.440375 1.075549 -0.931776 2.420588 -0.108264 2.882845 -0.178235 2.099651 -0.743893 1.442347 1.629354 -0.708716 -0.149440 -0.168817 -0.521728 1.533711 -1.213431 1.850201 -1.677395 1.001348 2.720037 -0.340589 -2.099624 -1.301932 -1.414112 -3.878335 0.390078 -2.223280 -2.588535 1.472915 2.563166 1.420965 1.486455 1.965452 -3.316573 0.394241 -0.704420 0.205645 1.226581 -0.054758 1.022987 -1.348737 -2.684205 1.375824 1.096783 1.103424 0.729700 -1.087388 -0.058140 -1.558881 -0.499081 2.190106 1.401027 -1.035475 2.218492 2.550896 4.149986 -1.239770 0.301368 1.526689 -1.470744 0.357405 -0.220645 -3.915742 1.077417 0.778967 1.477761 3.380165 -0.639391 -0.335863 1.571673 -1.082803 0.510086 -1.914000 1.093429 -2.440354 -0.332486 -2.087540 0.577575 -0.958102 -0.888530 -1.582699 -0.777762 3.586815 -3.963277 -1.723559 4.232022 -1.022899 0.781986 -2.938736 3.023957 -1.367409 1.883805 0.084616 -0.422998 -0.019046 -0.373595 -1.888534 0.108627 1.342116 -1.033529 1.135210 3.722327 0.719294 -0.495255 0.029204 2.654123 -1.675491 1.295137 -2.463471 3.097606 -0.518599 -0.618479 -0.753846 -1.303479 -0.175424 -2.330028 0.494332 1.660922 1.143061 0.725157 0.802482 1.315496 1.750402 -1.273932 2.921741 -0.051066 0.613304 -1.870841 -0.405625 0.749814 1.443836 -0.943460 2.013018 -3.934638 -3.138587 -4.826852 -2.152049 -1.275324 -0.546860 1.694786 -0.671874 -0.740492 -2.402303 -3.279846 4.076991 -1.169305 0.355902 2.403613 1.659813 2.105678 3.249268 -0.426002 0.680873 -0.968195 0.597515 -0.430929 -0.919955 -1.342500 2.755338 -1.389942 0.714503 3.422002 -0.565153 1.899318 -0.689063 1.799577 -2.684819 3.493530 1.685956 -1.115990 1.721703 2.538747 2.848434 0.289850 -1.887124 -PE-benchmarks/Nearly_sorted_Algo.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*) = -0.340755 -0.436494 0.647227 0.548101 0.074819 0.246665 0.256879 -0.354150 0.725840 0.295588 -0.030704 0.021719 -0.599543 0.160226 -0.004132 0.358977 -0.434039 -0.543282 -0.008939 -0.335569 -0.252461 -0.540716 0.213496 -0.003012 0.200167 -0.055159 -0.293635 -0.124987 -0.593794 -0.236293 0.499942 -0.284686 0.349943 0.083354 -0.027265 -1.306957 0.455065 0.268215 -0.205382 -0.539848 0.089812 -0.452029 0.295918 -0.213746 0.014825 0.112375 0.120821 0.113089 0.468360 0.095469 0.313128 -0.087329 -0.115123 0.988167 -0.584886 0.380380 0.100850 -0.067577 -0.218301 0.156053 0.134583 0.033358 0.461796 0.472021 -0.341969 -0.319745 -0.053240 -0.332063 -0.744776 0.447101 -0.049594 0.044825 -0.472502 -0.077845 -0.291705 -0.305140 -0.542179 0.360701 0.895637 -0.456219 0.596345 0.164443 0.418280 0.025096 0.358934 0.030864 0.593460 0.072896 -0.471511 -0.012524 -0.365047 -0.020494 -0.039548 0.151995 -0.014994 -0.327544 0.187151 -0.146100 -0.606321 0.250485 0.059159 0.208738 -0.705483 0.000611 0.366340 0.317403 -0.415871 -0.740508 -0.342190 0.113567 -0.044063 -0.166346 0.086980 -0.373600 -0.265801 -0.498464 -0.574833 -0.305413 0.029318 -0.492082 -0.360389 0.571903 -0.472354 0.112119 0.048823 0.154326 -0.183394 0.597622 0.031623 0.319669 0.161841 -0.195036 -0.961434 -0.128142 0.199345 0.776550 -0.017534 0.020695 -0.230061 0.040203 -0.425834 -0.062339 0.089366 0.280302 0.591652 -0.254024 -0.339093 -0.144226 0.188580 -0.759942 0.248318 -0.491802 0.166045 0.137682 0.480934 0.422369 0.409871 0.907336 -0.515267 0.467823 -0.220471 -0.088973 0.460453 0.234061 0.415445 -0.283428 -0.371414 0.143653 0.286268 0.046766 0.185619 -0.308555 -0.026368 -0.515145 -0.228637 0.092568 0.223800 -0.086089 0.367683 0.191008 0.632999 -0.829903 0.278631 0.333344 0.072789 0.138109 -0.027593 -0.621861 0.366938 0.111770 -0.220467 0.237741 -0.085380 -0.465208 0.085193 -0.160054 0.263807 -0.421137 0.035470 -0.376146 -0.106503 -0.460358 0.072650 -0.299578 -0.336779 -0.095580 0.050880 0.602217 -0.113085 -0.435715 0.545593 -0.094035 0.341571 -0.757425 0.706293 -0.383246 0.416080 -0.489525 -0.066711 -0.147627 0.441338 -0.035691 0.057976 0.288636 -0.175772 0.265530 0.746235 0.247076 0.224397 0.161000 0.535238 0.129066 0.116616 -0.111350 0.527324 -0.070566 -0.116566 0.184703 -0.304887 0.259731 -0.007168 0.065782 0.570219 0.675484 -0.010461 0.436118 0.393977 0.297595 -0.264547 0.225548 -0.027141 0.483182 -0.200878 0.032077 -0.036724 0.189980 -0.250596 0.220194 -0.590978 -0.781050 -0.134382 -0.500242 -0.092094 0.197425 -0.027120 0.039938 0.166748 -0.617714 -0.167454 0.156329 -0.304326 0.590230 0.077694 0.239133 0.432844 0.659251 -0.377971 -0.349050 0.091259 -0.057791 -0.215870 -0.049457 -0.400989 0.389693 -0.542567 0.286891 0.381080 -0.185259 -0.061648 0.077155 0.570355 -0.338975 0.798417 0.347299 -0.090236 0.607690 0.376387 0.908331 0.165392 -0.303226 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy_aux::__destroy(int*, int*) = -0.116151 -0.214664 0.238613 0.241338 0.084743 0.060262 0.271148 -0.024995 0.374635 0.247949 -0.050915 -0.102536 -0.356653 0.041816 0.216541 0.209918 -0.141628 -0.254283 0.124791 -0.055799 -0.030747 -0.283146 0.147942 -0.121145 0.109888 -0.014618 0.004697 -0.203938 -0.220554 0.071819 0.274800 -0.185285 0.152863 0.323486 -0.021613 -0.371491 0.115514 0.002969 -0.092844 -0.240563 0.016573 -0.205718 0.271439 -0.109698 0.281690 0.135177 0.183056 0.234362 0.232204 0.112482 0.151177 -0.277766 -0.041392 0.273090 -0.306443 0.109061 0.010451 -0.056555 -0.050700 0.071600 0.059674 -0.080194 0.207073 0.262380 -0.198603 -0.084165 -0.102974 -0.255189 -0.367860 0.149626 0.016048 0.182779 -0.352497 -0.024969 0.114945 -0.134923 -0.903442 0.198745 0.425977 -0.235332 0.329301 0.180162 0.283319 -0.047568 0.109910 0.059239 0.139975 -0.010528 -0.287490 0.045265 -0.271588 -0.164735 -0.043301 -0.087253 0.114662 -0.040441 0.006029 0.316358 -0.225229 0.111352 -0.036748 0.204287 -0.212300 0.192419 0.116528 0.229022 -0.195667 -0.353541 -0.125504 -0.086869 -0.042050 -0.020184 0.021536 -0.166740 -0.240262 -0.346158 -0.232675 -0.216303 -0.043458 -0.314194 -0.106877 0.221326 -0.260248 0.108086 0.069372 -0.018357 -0.040717 0.359001 0.172376 0.129081 0.297041 -0.235456 -0.663282 0.112504 0.182492 0.546523 0.097136 0.147074 -0.081251 -0.034759 -0.188833 -0.088932 0.247442 0.145828 0.289200 -0.220480 -0.136044 -0.065800 0.185038 -0.209322 0.264636 -0.219359 0.395776 -0.046828 0.200512 0.209541 0.202313 0.465644 -0.367605 0.183655 -0.193701 0.030504 0.148110 0.437921 0.219807 -0.103883 -0.049938 -0.030574 0.230862 -0.126756 0.133518 -0.191287 0.034884 -0.284331 0.007104 0.008241 0.041327 -0.187422 0.151393 0.021632 0.144262 -0.292582 0.084451 0.182312 0.144457 0.007856 0.084089 -0.289318 0.342704 -0.035926 -0.131629 -0.125725 -0.027084 -0.170202 0.042719 -0.157434 0.060205 -0.117585 -0.069564 -0.142645 -0.148166 -0.215063 0.260767 -0.149204 -0.261759 0.126175 0.307509 0.225328 0.362906 0.010402 0.047701 -0.141682 0.025598 -0.167903 0.567960 -0.188757 -0.039750 -0.310017 -0.110694 -0.106725 0.323363 0.133720 -0.171557 0.116080 0.040053 0.108377 0.292331 0.140355 0.019451 0.197564 0.246330 0.117737 -0.029455 0.067908 0.137803 -0.056450 0.119629 0.157700 -0.123111 0.223112 0.084295 -0.096503 0.468187 0.331123 -0.070528 0.278370 0.030388 0.090290 -0.104164 0.049870 0.028044 0.384175 -0.087452 0.060657 -0.085062 -0.031798 -0.158321 0.093996 -0.219098 -0.307313 0.345319 -0.042953 -0.148419 0.162194 -0.012198 0.076758 0.169494 -0.265901 -0.005201 -0.183983 -0.147130 -0.019664 -0.099399 0.021788 0.190715 0.258731 -0.142805 -0.279024 0.076471 -0.028632 -0.126700 0.021673 -0.098994 0.102824 -0.348082 0.086878 0.100556 -0.098181 -0.175109 -0.063812 0.504430 -0.153117 0.341625 0.163013 0.014904 0.307947 0.266307 0.516274 0.063368 -0.099931 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -0.406894 -1.625864 2.728024 2.454015 0.573420 1.086662 0.934294 -1.790256 2.085017 1.805447 -0.269428 0.814358 -1.827855 0.591602 -0.750118 1.676052 -1.308231 -1.753458 -0.429711 -1.256053 -0.776771 -1.577265 0.772348 0.272590 1.168162 -0.479665 -1.333326 -0.530105 -2.420884 -2.468829 0.895755 -0.458926 1.128726 -0.879469 -0.138010 -3.637079 2.081675 1.967351 -0.700911 -2.273546 0.718986 -1.125987 -0.194621 0.038508 0.058397 0.533400 0.051829 0.446097 1.192162 0.961035 1.353704 0.661606 0.649597 3.543875 -1.358820 1.928635 1.004854 0.238725 -0.353997 0.868058 0.550415 0.522308 1.317350 1.295147 -0.377427 -1.278987 -0.369554 -0.321050 -2.084627 1.575229 -0.276069 -0.868675 -1.446861 -0.371746 -1.194980 -0.451294 -1.410205 1.190505 2.957465 -1.483405 1.980817 0.575831 0.878238 -0.274687 1.113234 -0.272213 1.833971 0.656941 -0.988846 -0.662184 -1.216913 -0.382406 0.127652 0.476649 -1.077896 -1.736949 1.227674 -1.319469 -2.446899 0.939887 0.500984 -0.330452 -1.905331 -0.146540 1.085090 0.892766 -1.039112 -2.299708 -1.206139 0.951096 -0.034485 -1.086459 0.022456 -1.157466 -0.534864 -0.391859 -2.160542 -0.484749 0.507923 -1.389187 -1.478189 1.761030 -0.772003 0.430418 -0.189260 0.652181 -0.483428 1.260467 -0.115047 1.627669 0.756398 0.253229 -2.767429 0.406078 0.911529 0.829339 -0.508279 0.651975 -0.697135 0.595300 -1.008591 0.985814 -0.698842 1.258623 1.886371 -0.659096 -1.402360 -0.794939 0.444873 -2.105380 0.762328 -1.511743 -0.546161 -0.090408 1.760209 0.815980 1.171564 2.515162 -1.773382 1.175699 -0.072868 0.054882 1.316805 -0.414361 1.026800 -1.062284 -1.940110 0.911029 1.420151 0.172299 0.282157 -0.232338 -0.054810 -1.494427 -0.962697 0.463413 0.493467 -0.493509 1.686144 1.045244 2.892314 -2.297393 0.753010 0.941568 -0.478462 0.568674 -0.505614 -2.597940 0.850090 0.455113 0.558574 2.143061 -0.165854 -1.330015 0.742906 -0.431280 0.649332 -1.404798 0.878733 -1.685116 -0.590795 -1.171819 -0.126847 -0.518138 -0.908057 -0.594498 -0.105993 2.357773 -0.905636 -1.885640 2.171421 -0.798910 0.291658 -2.990366 2.584218 -1.200540 0.800405 -0.850404 -0.083653 -0.304282 1.290025 -0.960427 0.276765 1.096420 -1.053194 1.433163 2.838498 0.519840 0.436538 0.169691 1.504306 -0.296801 0.580625 -1.102661 2.237858 -0.232856 -0.832068 -0.192946 -0.982662 0.681480 -0.708651 0.030970 1.413120 1.570943 -0.205136 0.782547 1.395806 1.472978 -1.167409 1.814595 -0.014634 1.111536 -0.860361 -0.137538 0.101286 0.046804 -0.611803 1.376318 -2.318017 -2.094193 -1.298160 -2.265001 0.082102 0.050159 0.684298 -0.336512 -0.075001 -2.443847 -1.557755 1.235575 -0.877379 1.068211 1.224365 1.160321 1.420307 2.003151 -0.737927 0.089684 -0.716520 -0.135814 -0.641759 -1.268634 -0.476891 1.398920 -1.152934 1.014679 1.431202 -0.204345 0.676497 -0.119936 0.979292 -1.224164 2.634755 1.103790 -0.347032 1.585738 1.297174 2.930337 -0.539905 -1.264071 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector(int*, int*, std::allocator const&) = -0.259548 -2.465881 5.532512 4.069370 -0.133316 1.809007 1.713409 -4.224429 4.025797 1.955818 -0.245001 0.455304 -3.526938 1.293748 -2.331907 2.679580 -2.954435 -2.761907 -1.583509 -3.425990 -1.778636 -2.869029 2.079491 0.338966 2.073666 0.042796 -1.882318 -0.818071 -3.346911 -4.568586 2.848830 -0.623081 1.771180 -1.062560 -0.031156 -6.930639 4.085064 3.060655 -1.686811 -3.618719 1.547910 -1.076662 -1.109657 0.529532 -0.203671 0.742270 -0.500019 2.235186 2.337920 1.973972 2.433607 1.230770 1.135077 6.793683 -2.870870 3.336198 1.847718 0.867566 -0.474692 2.216159 0.389897 1.422132 1.362391 2.382877 -0.050425 -2.283999 0.004235 -1.020040 -3.947868 3.402048 -0.677141 -2.125584 -2.472290 -1.324889 -2.225090 -0.557866 -3.982148 2.412621 5.636847 -3.120152 3.020107 0.828734 0.959184 -0.772695 1.313689 -0.623496 3.015827 1.159193 -1.434730 -0.900515 -2.008605 -0.416138 0.280064 -0.212545 -2.169790 -5.215453 2.979830 -3.133565 -4.234907 1.737182 1.416974 -0.985160 -2.727550 -0.591863 1.529812 0.866375 -2.506749 -4.162553 -1.991661 2.078032 0.388434 -0.992543 0.429237 -1.106370 -0.619811 -0.715220 -4.158223 -0.470069 0.531436 -2.413732 -2.250895 3.057945 -0.891169 0.703915 0.390411 1.785013 -1.266478 2.744219 -0.011084 2.857345 0.935833 1.553828 -3.368278 1.156858 1.769592 1.408408 -0.328931 0.882168 -1.309839 1.115095 -2.173470 1.665468 -1.718098 1.047656 3.128839 -1.297159 -2.688044 -0.598545 0.359824 -4.670368 1.359947 -3.232725 -2.134334 -0.098106 2.606385 2.238525 2.012188 4.138509 -3.428959 1.785424 -0.412518 -0.042809 1.713617 -0.447622 2.090737 -1.691086 -3.856250 0.986144 1.497007 0.367585 0.561007 -1.061003 -0.417644 -3.321620 -1.434991 0.723634 1.157066 -1.751134 2.438480 2.528163 4.615783 -3.643417 1.062009 2.064010 -1.568953 0.898699 -0.505690 -4.896909 1.287180 0.992796 1.101207 3.818165 -0.324573 -1.437681 1.952139 -1.261053 1.213659 -2.400955 0.901449 -3.133222 -1.533941 -2.798287 0.697015 -0.979536 -1.216092 -0.858119 -0.802597 3.953689 -2.918870 -2.747449 4.922144 -0.996335 0.755608 -4.670510 4.594701 -1.605443 1.589195 -0.893196 0.287280 -0.713400 1.565908 -1.625478 0.435561 1.227065 -1.412317 2.608028 5.783727 0.666429 0.711853 0.522527 3.645504 -1.569256 1.285438 -2.581019 4.329402 -0.814567 -2.430242 0.090849 -1.514204 0.241245 -2.549508 0.847201 3.027636 2.518453 -0.091130 1.605998 2.104653 2.821327 -1.593586 3.598521 0.134734 1.272937 -1.902249 -0.059867 1.023480 0.444187 -1.710476 2.556493 -4.312531 -4.495190 -3.601470 -4.229109 -0.058236 -1.059053 1.510914 -1.051351 -0.493983 -3.826096 -3.133700 2.929998 -1.694512 1.302685 2.864023 2.500053 2.762759 4.880385 -1.572218 0.862556 -0.547933 0.564130 -1.066680 -2.096670 -1.186712 2.507254 -1.580387 1.168809 3.119718 0.045010 1.628199 -0.937908 2.218760 -2.723945 4.629569 1.863214 -0.297146 3.485807 2.624020 5.003834 0.855270 -1.771108 -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.063300 -1.957563 3.944629 3.454238 -0.437707 0.976846 0.732684 -2.344360 2.110850 0.429062 -0.791618 1.310387 -2.190863 1.264364 -2.165623 2.116341 -2.826509 -1.940940 -0.978422 -1.321618 -0.840023 -1.548231 1.540828 0.826198 1.982515 1.526776 -1.782863 -0.587818 -2.565348 -2.248409 1.501091 -0.512610 1.383304 0.232260 0.042581 -3.605815 2.560408 2.548870 -0.896799 -2.878341 1.286358 -1.244112 -0.848043 -1.190303 -0.526566 0.517117 -0.367258 1.875647 1.385749 1.116789 0.281206 1.309119 1.298172 3.892886 -1.315319 2.116078 1.678788 0.709966 -0.086085 0.221411 0.909303 1.117765 0.870729 1.339234 0.127630 -2.119467 -1.168202 -1.001183 -1.900305 2.123966 -0.490891 -0.238399 -2.393764 -0.520163 -1.986655 0.155104 -2.453045 2.464410 3.601460 -2.440899 1.844935 0.300082 0.514644 -0.697569 0.577843 -0.053138 1.349390 1.252014 -0.342888 -0.672055 -1.614397 -0.434069 0.618968 -1.074086 -1.908604 -4.035177 1.917557 -3.262076 -2.938476 0.681553 1.250403 -1.186315 -0.004878 0.002226 0.684737 1.048770 -1.282568 -2.147356 -0.095437 0.820651 1.056954 -1.240812 0.078748 0.222136 -0.249550 -0.457929 -3.108318 0.111290 0.334030 -1.387111 0.144147 1.676952 -0.158133 0.288674 -0.438643 0.534197 -0.605832 2.297009 -0.056455 1.802965 0.576892 1.449418 -0.354046 1.461158 1.570466 0.967405 -1.431450 0.765299 -0.795959 0.909932 -0.944366 0.160000 -1.094324 0.531421 1.124891 -1.279648 -2.105799 -1.098023 -0.974617 -2.901473 0.460589 -1.831706 -1.302086 0.837280 2.035598 1.250809 1.627829 2.815108 -2.177576 0.485753 0.512005 0.178583 1.602890 0.178763 1.045046 -1.151538 -2.543694 1.735713 0.483138 0.578566 0.082298 0.316790 0.125319 -1.959233 -0.486533 1.355835 1.132723 -0.793630 2.244746 1.463339 0.677954 -1.297416 0.625150 1.363586 -0.967968 0.445668 -0.204327 -3.350611 1.523058 0.247072 1.434217 2.323434 -0.223783 -0.696691 1.571715 -0.673138 0.746148 -1.731497 0.709220 -1.900553 -0.981312 -2.125390 1.047262 0.074622 -0.760263 -0.869332 -0.797924 3.018227 -2.580037 -1.282599 2.569785 -0.265488 0.905347 -2.738581 2.130637 -1.331455 1.690636 0.545878 -0.084865 0.516136 -0.669417 -1.895206 -0.429228 1.414468 -0.740556 0.873956 2.697743 0.713140 -0.411587 0.250151 1.962568 -0.843926 1.833813 -1.417076 2.398420 -0.144616 -1.548120 0.151636 -0.959689 -0.276072 -1.719493 0.510686 3.084473 1.137974 1.575464 1.700335 0.842823 2.566427 -1.688256 2.006343 -0.357000 0.832415 -1.352585 -0.388032 0.445899 0.694689 -0.916162 1.866033 -2.887183 -3.770940 -3.355859 -2.547305 0.122762 -2.027990 1.398302 -1.209286 -0.689711 -2.399647 -2.684302 1.465567 -1.137329 1.127346 2.134322 1.056792 1.720823 2.314174 -1.393347 0.837475 -0.100073 1.182398 0.178299 -0.801931 -1.465484 1.851699 -1.191838 0.308710 3.206739 -0.805077 1.305872 -0.841928 1.837236 -1.483145 3.398761 1.163660 -1.484301 1.886610 1.676980 2.265982 0.954702 -1.768933 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() = 0.384725 -0.607427 1.697646 1.522725 -0.308722 0.379924 -0.094536 -1.204167 0.942973 0.560842 -0.175344 0.447422 -0.645586 0.616692 -0.508755 1.196945 -1.214214 -0.513408 -0.578376 -0.841362 -0.665188 -0.522874 0.481554 0.063552 0.733342 0.612777 -0.792484 0.081571 -0.400622 -1.524430 0.367058 -0.196497 0.486226 -0.063351 0.238792 -1.760008 1.283227 0.932136 -0.443634 -1.030807 0.351792 -0.323002 -0.227173 -0.248437 -0.332741 0.309143 -0.289008 0.418816 0.680743 0.585839 0.460677 0.633147 0.803365 1.735190 -0.451676 0.832033 0.508656 0.094524 -0.138668 0.177591 0.369975 0.547241 0.323779 0.407419 0.300541 -1.031606 -0.468567 -0.250229 -0.683536 0.953029 -0.336719 -0.588314 -0.957355 -0.610279 -0.629281 -0.123901 -1.835990 0.998782 1.360911 -1.053305 0.475448 0.199416 0.010988 -0.007236 0.391959 -0.111179 0.935158 0.504609 -0.106321 0.119823 0.374508 -0.422672 0.545311 -0.331496 -0.855389 -1.737178 0.732396 -1.271029 -1.123045 0.566846 0.701614 -0.343812 -0.375458 -0.454949 0.320846 0.246839 -0.541057 -0.821328 -0.044571 0.336057 0.555644 -0.495891 -0.115503 -0.117194 -0.026867 0.307405 -1.333580 0.137824 0.112938 -0.345612 -0.103377 0.732494 0.294182 -0.152500 -0.235858 0.305819 -0.345510 1.118094 -0.235650 1.098257 -0.282203 1.016126 -0.374052 0.756872 0.664225 -0.467176 -0.278937 0.187275 -0.459039 0.354573 -0.672709 0.496949 -0.561403 0.437766 0.984590 -0.141392 -0.942742 -0.356355 -0.638351 -1.331321 0.270750 -0.764741 -0.648963 0.364588 0.812173 0.599962 0.723020 0.701580 -0.915756 0.009282 -0.082342 0.094662 0.798013 -0.005820 0.460999 -0.467607 -0.875672 0.701266 0.340485 0.241379 0.241047 -0.056897 0.113112 -0.608609 0.017210 0.777185 0.505412 -0.312227 0.803569 0.662438 1.259370 -0.297885 0.265027 0.606111 -0.387089 0.202330 -0.140284 -1.188872 0.381236 0.186551 0.583007 0.959545 -0.160160 -0.070143 0.426615 -0.333900 0.346948 -0.600349 0.238233 -0.675916 -0.192721 -0.692842 0.375975 -0.160993 -0.123317 -0.250885 -0.345308 1.207226 -1.385429 -0.327243 1.423378 -0.396330 0.265300 -0.797835 1.144528 -0.496623 0.634514 -0.118136 -0.138534 0.098290 -0.229512 -0.784028 0.144881 0.564632 -0.179963 -0.024267 1.190646 0.274071 -0.119573 -0.087745 0.864611 -0.454292 0.897250 -0.533426 1.302420 -0.101055 -0.183353 -0.144867 -0.364175 -0.310938 -0.807121 0.211214 0.908782 0.261750 0.438732 0.318293 0.306560 1.009508 -0.688813 1.105728 -0.087071 0.090131 -0.677714 -0.153623 0.436164 0.369672 -0.434507 0.526691 -1.117982 -0.979156 -1.712222 -0.456887 -0.205581 -0.161029 0.491174 -0.545640 -0.437626 -0.509059 -1.113233 1.469569 -0.461378 -0.051417 0.693526 0.432745 0.706365 1.101063 -0.226096 0.291604 -0.503804 -0.037528 0.222469 -0.283083 -0.521629 1.014448 -0.382280 0.010257 1.156499 -0.313938 0.603607 0.081295 0.540510 -0.566947 1.088086 0.321181 -0.256730 0.775367 1.060093 0.937226 0.108889 -0.673299 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() = 0.384725 -0.607427 1.697646 1.522725 -0.308722 0.379924 -0.094536 -1.204167 0.942973 0.560842 -0.175344 0.447422 -0.645586 0.616692 -0.508755 1.196945 -1.214214 -0.513408 -0.578376 -0.841362 -0.665188 -0.522874 0.481554 0.063552 0.733342 0.612777 -0.792484 0.081571 -0.400622 -1.524430 0.367058 -0.196497 0.486226 -0.063351 0.238792 -1.760008 1.283227 0.932136 -0.443634 -1.030807 0.351792 -0.323002 -0.227173 -0.248437 -0.332741 0.309143 -0.289008 0.418816 0.680743 0.585839 0.460677 0.633147 0.803365 1.735190 -0.451676 0.832033 0.508656 0.094524 -0.138668 0.177591 0.369975 0.547241 0.323779 0.407419 0.300541 -1.031606 -0.468567 -0.250229 -0.683536 0.953029 -0.336719 -0.588314 -0.957355 -0.610279 -0.629281 -0.123901 -1.835990 0.998782 1.360911 -1.053305 0.475448 0.199416 0.010988 -0.007236 0.391959 -0.111179 0.935158 0.504609 -0.106321 0.119823 0.374508 -0.422672 0.545311 -0.331496 -0.855389 -1.737178 0.732396 -1.271029 -1.123045 0.566846 0.701614 -0.343812 -0.375458 -0.454949 0.320846 0.246839 -0.541057 -0.821328 -0.044571 0.336057 0.555644 -0.495891 -0.115503 -0.117194 -0.026867 0.307405 -1.333580 0.137824 0.112938 -0.345612 -0.103377 0.732494 0.294182 -0.152500 -0.235858 0.305819 -0.345510 1.118094 -0.235650 1.098257 -0.282203 1.016126 -0.374052 0.756872 0.664225 -0.467176 -0.278937 0.187275 -0.459039 0.354573 -0.672709 0.496949 -0.561403 0.437766 0.984590 -0.141392 -0.942742 -0.356355 -0.638351 -1.331321 0.270750 -0.764741 -0.648963 0.364588 0.812173 0.599962 0.723020 0.701580 -0.915756 0.009282 -0.082342 0.094662 0.798013 -0.005820 0.460999 -0.467607 -0.875672 0.701266 0.340485 0.241379 0.241047 -0.056897 0.113112 -0.608609 0.017210 0.777185 0.505412 -0.312227 0.803569 0.662438 1.259370 -0.297885 0.265027 0.606111 -0.387089 0.202330 -0.140284 -1.188872 0.381236 0.186551 0.583007 0.959545 -0.160160 -0.070143 0.426615 -0.333900 0.346948 -0.600349 0.238233 -0.675916 -0.192721 -0.692842 0.375975 -0.160993 -0.123317 -0.250885 -0.345308 1.207226 -1.385429 -0.327243 1.423378 -0.396330 0.265300 -0.797835 1.144528 -0.496623 0.634514 -0.118136 -0.138534 0.098290 -0.229512 -0.784028 0.144881 0.564632 -0.179963 -0.024267 1.190646 0.274071 -0.119573 -0.087745 0.864611 -0.454292 0.897250 -0.533426 1.302420 -0.101055 -0.183353 -0.144867 -0.364175 -0.310938 -0.807121 0.211214 0.908782 0.261750 0.438732 0.318293 0.306560 1.009508 -0.688813 1.105728 -0.087071 0.090131 -0.677714 -0.153623 0.436164 0.369672 -0.434507 0.526691 -1.117982 -0.979156 -1.712222 -0.456887 -0.205581 -0.161029 0.491174 -0.545640 -0.437626 -0.509059 -1.113233 1.469569 -0.461378 -0.051417 0.693526 0.432745 0.706365 1.101063 -0.226096 0.291604 -0.503804 -0.037528 0.222469 -0.283083 -0.521629 1.014448 -0.382280 0.010257 1.156499 -0.313938 0.603607 0.081295 0.540510 -0.566947 1.088086 0.321181 -0.256730 0.775367 1.060093 0.937226 0.108889 -0.673299 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base(std::allocator const&) = -0.211315 -0.615601 1.185677 1.026967 0.003363 0.406868 0.222790 -0.797449 1.073815 0.526006 -0.041917 0.161161 -0.758067 0.356792 -0.168110 0.736732 -0.811161 -0.702955 -0.209664 -0.669062 -0.522984 -0.719733 0.302643 0.002726 0.395734 0.020308 -0.565702 -0.085071 -0.720129 -0.736830 0.640921 -0.328794 0.476640 -0.091057 0.070295 -2.035219 0.899967 0.549280 -0.349722 -0.872235 0.155596 -0.562848 0.200166 -0.246278 -0.089340 0.168647 -0.003313 0.280732 0.688578 0.264248 0.483843 0.187104 0.096715 1.732060 -0.759741 0.679065 0.259855 -0.027020 -0.272301 0.311737 0.250633 0.229775 0.581172 0.607705 -0.227782 -0.642635 -0.142944 -0.372924 -0.952866 0.781280 -0.079211 -0.233511 -0.738686 -0.256509 -0.530633 -0.377856 -1.129976 0.681728 1.337037 -0.804608 0.744788 0.236973 0.473632 0.077073 0.559594 -0.042602 1.033920 0.226392 -0.544988 0.004298 -0.317719 -0.149714 0.137728 0.010055 -0.298286 -0.988487 0.393904 -0.561905 -0.985534 0.473177 0.286121 0.116943 -0.916173 -0.234953 0.556561 0.336715 -0.598934 -1.032826 -0.453827 0.286938 0.040939 -0.342697 0.103764 -0.504325 -0.218985 -0.392298 -0.995382 -0.269799 0.112596 -0.561367 -0.506681 0.857092 -0.403723 0.031885 -0.037480 0.257865 -0.304182 0.872623 -0.093455 0.682717 0.071493 0.130043 -1.196791 0.133868 0.378617 0.589714 -0.034854 0.079766 -0.381519 0.202577 -0.676463 0.193747 -0.118732 0.467662 0.876733 -0.249008 -0.638894 -0.271444 0.094703 -1.139069 0.349400 -0.734052 -0.140583 0.180212 0.760709 0.667204 0.630441 0.998225 -0.802666 0.561417 -0.276942 0.014410 0.723517 0.138550 0.554834 -0.441674 -0.665345 0.325683 0.421108 0.129775 0.245828 -0.375709 -0.005043 -0.686890 -0.283407 0.248273 0.389884 -0.180844 0.631662 0.425575 1.209478 -1.103223 0.394387 0.513796 -0.087042 0.229028 -0.122154 -0.993892 0.437666 0.216682 -0.035551 0.627755 -0.155544 -0.538102 0.174364 -0.213244 0.382311 -0.577860 0.082750 -0.602281 -0.233262 -0.633753 0.174172 -0.411304 -0.349266 -0.229100 -0.117917 0.996750 -0.634584 -0.630128 1.112583 -0.324033 0.404638 -1.076582 1.126837 -0.532684 0.539386 -0.576844 -0.099497 -0.171446 0.488644 -0.339154 0.226394 0.476062 -0.323615 0.307427 1.205567 0.318047 0.294048 0.108077 0.811810 -0.040348 0.339174 -0.338849 1.017501 -0.137313 -0.199622 0.067751 -0.440310 0.217407 -0.262618 0.185306 0.771816 0.760705 0.096498 0.472254 0.584624 0.568619 -0.484174 0.610384 -0.068244 0.432667 -0.421742 0.006448 0.106947 0.218023 -0.391461 0.390318 -0.967623 -1.013961 -0.737163 -0.633455 -0.121108 0.200266 0.086762 -0.123795 0.017791 -0.860412 -0.511136 0.634629 -0.455260 0.455101 0.342195 0.414818 0.663670 1.055170 -0.432831 -0.230236 -0.102475 -0.158808 -0.189729 -0.222795 -0.555848 0.757386 -0.649611 0.370970 0.722508 -0.225295 0.153774 0.135455 0.704396 -0.506477 1.133773 0.465590 -0.143932 0.774761 0.762500 1.286660 0.151442 -0.524510 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_range_initialize(int*, int*, std::forward_iterator_tag) = 0.639308 -4.197483 8.585162 7.442754 -0.247617 3.647133 0.558904 -6.158714 5.431683 3.526767 -0.463647 2.421912 -3.919171 2.312740 -3.126149 4.266948 -4.884207 -3.557135 -2.766901 -4.838979 -3.155855 -3.572503 0.383762 1.603357 2.880512 0.220410 -3.929272 0.175885 -5.540229 -6.476232 2.536309 -0.595632 2.440331 -3.075191 1.515361 -10.947169 6.467050 5.802485 -1.866673 -6.351699 1.296768 -2.892599 -1.179507 -0.315370 -0.874759 1.116007 -1.144106 2.119440 3.147643 2.004133 2.100592 3.451209 2.212152 11.513251 -3.185013 5.464561 3.217131 0.827040 -0.269638 2.592274 1.207037 2.363777 2.305401 2.187152 0.206098 -4.475946 -0.921678 -0.492175 -3.835977 4.651273 -0.329824 -3.946687 -3.946290 -2.437406 -5.096375 -1.325515 -7.309986 4.497874 7.641931 -5.144619 4.147355 1.236228 1.864244 0.903737 4.231890 -0.819867 6.390796 2.178132 -2.033767 0.004786 -2.229690 -0.823127 1.587265 -1.044725 -4.698883 -8.841798 3.675432 -6.624890 -6.599310 3.549626 2.248296 -1.742305 -3.644762 -2.627870 2.582130 1.175650 -3.401078 -5.632862 -2.348079 3.914361 0.997361 -2.942142 1.073296 -2.543710 0.398825 -0.615449 -6.161139 0.379463 2.154180 -2.072014 -3.140775 5.655126 -0.438635 0.070158 -0.962515 1.763961 -1.969385 4.101700 -1.130931 4.769216 -0.935787 2.826141 -5.714539 2.592394 2.261617 -0.175959 -1.111489 1.388844 -1.627420 2.463959 -2.711829 3.597594 -3.020788 2.952434 3.713043 -0.840670 -3.753635 -2.603960 -0.419214 -5.659186 1.104829 -3.582575 -4.716091 0.289711 4.734948 4.090666 2.952951 3.745850 -4.326193 1.859811 -0.610351 0.724476 3.758238 -1.653681 2.287096 -2.902348 -5.366761 2.738638 2.431328 1.371178 1.012072 -0.912867 0.025007 -3.066982 -1.040865 1.801900 2.416830 -1.527038 5.634982 4.307170 7.353020 -5.758119 1.825210 2.116178 -3.112797 1.782616 -1.774923 -6.470064 1.433531 2.250487 1.736060 6.691971 -1.182345 -1.981295 2.208797 -1.025483 2.144440 -3.366265 1.593282 -4.441878 -2.498459 -3.368738 0.878106 -1.953813 -1.332431 -3.076121 -2.775960 6.672254 -6.869990 -4.081501 7.629341 -1.918681 1.112233 -6.509807 5.973986 -2.768063 2.900300 -0.821930 0.023994 -0.459319 2.552515 -4.116495 1.924005 3.185741 -3.690986 2.498184 7.365901 1.190665 1.100537 -0.025835 4.578642 -2.532192 2.050437 -4.381132 6.860017 -1.021334 -2.096250 -1.012368 -2.584601 0.515128 -3.114754 1.575329 3.124360 2.645768 1.330116 0.610851 4.222795 3.386839 -2.734574 5.041111 -0.995600 0.394673 -3.371786 -0.391823 0.939540 0.673034 -1.060708 2.808553 -6.945255 -4.973622 -7.704380 -3.974678 0.536799 -0.441569 1.125506 -1.081511 -1.602800 -6.079582 -5.594224 5.721881 -2.660401 0.327388 4.092749 3.327917 4.025538 6.116420 -1.417592 1.354375 -1.653579 -0.544726 -0.668833 -2.743967 -2.344148 5.344149 -2.548608 2.215148 5.436019 -0.566315 3.535162 0.829971 2.246960 -3.640998 6.671288 2.748403 -1.874058 3.004849 5.938114 7.130551 -0.558583 -3.570446 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = -0.203073 -0.985435 1.973557 1.660438 0.440916 0.836679 0.648933 -1.645645 2.120285 1.292177 0.016002 0.188464 -1.314664 0.646610 -0.992448 1.273757 -0.981818 -1.340327 -0.493609 -1.413629 -0.981256 -1.342710 0.492440 -0.248810 0.696510 -0.829107 -0.996365 -0.266373 -1.823856 -1.356162 1.037653 -0.419278 0.471060 -1.277502 -0.031812 -2.855051 1.618401 1.145915 -0.663912 -1.457259 0.285355 -1.115338 0.112921 -0.062863 0.417495 0.090459 -0.219071 0.673487 1.248084 0.488428 1.336106 0.720060 -0.084895 3.519821 -1.692397 1.421003 0.387810 0.372416 -0.364527 1.194518 0.344904 0.580793 0.852213 1.032305 -0.298835 -1.014756 -0.167993 -0.325578 -1.359190 1.457000 -0.144947 -0.755484 -1.192951 -0.259304 -1.108710 -0.618265 -2.590400 0.930808 2.269303 -1.388375 1.227335 0.466394 0.989125 0.167579 1.101941 -0.272467 2.007844 0.317900 -0.974133 -0.362687 -1.035077 0.258669 0.083686 -0.169975 -0.682731 -2.069482 0.849488 -1.061995 -1.907313 0.769045 0.472268 0.097756 -1.383292 -0.129035 0.963029 0.269672 -1.057359 -1.944134 -0.959859 0.818526 -0.003760 -0.628598 0.592007 -1.533067 -0.096516 -0.639775 -1.647420 -0.481984 0.224871 -0.915408 -1.489847 1.639891 -0.688506 -0.044016 -0.012630 0.479889 -0.451209 1.005451 -0.356778 1.344643 0.054054 0.435241 -2.988664 0.602247 0.682168 0.641066 0.002462 0.920838 -0.667421 0.435918 -1.249958 0.734988 -0.671245 0.807016 1.003351 -0.642483 -1.009410 -0.377682 0.733794 -1.473756 0.683817 -1.121271 -0.840835 -0.726262 1.368024 1.490228 1.061616 1.555590 -1.290182 0.985642 -0.308989 0.207684 1.238440 -0.441511 0.930072 -0.785385 -1.404176 0.361944 0.945154 -0.022903 0.261650 -0.481670 -0.141415 -1.303795 -0.280792 -0.078971 0.540695 -0.603190 1.370666 0.869179 1.913834 -2.616905 0.897423 0.908214 -0.376598 0.557463 -0.497345 -1.853552 0.664035 0.576697 0.277208 1.304745 -0.210827 -0.898230 0.301389 -0.396923 0.811660 -0.956602 0.003074 -1.162686 -1.007051 -0.934840 0.525805 -0.637208 -0.540426 -0.351725 -0.418736 1.609972 -1.023011 -1.167803 2.153492 -0.618741 0.186173 -1.833618 2.086383 -0.879175 0.479472 -0.794446 0.226410 -0.460259 1.723410 -0.813828 0.588762 0.818072 -0.994884 1.156436 2.345413 0.448793 0.872063 0.136437 1.454412 -0.426527 0.280136 -0.874877 1.949288 -0.263499 -0.865041 0.018967 -0.852093 0.498381 -0.549924 0.472478 1.274445 1.313876 -0.061873 0.574726 1.183689 1.068058 -0.768264 1.324238 -0.174183 0.392996 -0.750375 0.099150 0.266247 -0.375849 -0.709429 0.735493 -1.758974 -1.462472 -1.094184 -1.166545 0.413102 -0.117055 -0.045905 -0.242348 -0.034082 -1.941620 -1.080242 0.938622 -0.850338 0.048561 0.751020 0.869004 1.013997 1.940068 -0.727584 0.147150 -0.376414 -0.421142 -0.447672 -1.040046 -0.536380 1.368661 -1.041982 0.800785 1.033789 -0.139468 0.410141 0.458433 0.641541 -0.863266 1.848171 0.842213 0.052440 1.228731 1.537709 2.868031 0.077810 -0.882295 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.092856 -0.320797 0.467611 0.439183 0.052774 0.105791 0.439893 -0.103973 0.657829 0.387545 -0.063785 -0.171587 -0.512098 0.068467 0.476556 0.371669 -0.386365 -0.371919 0.223523 -0.171036 -0.114906 -0.444574 0.181000 -0.203869 0.179924 -0.008188 0.019855 -0.362448 -0.202943 0.165973 0.543842 -0.322370 0.256982 0.562960 0.038604 -0.997866 0.257926 -0.094629 -0.169373 -0.412708 -0.015497 -0.332567 0.438872 -0.217577 0.415155 0.188220 0.314075 0.604091 0.406567 0.187090 0.127314 -0.428043 -0.051371 0.707289 -0.503198 0.171752 0.028188 -0.164672 -0.108264 0.182722 0.109638 -0.153592 0.361629 0.423504 -0.276826 -0.192454 -0.114461 -0.469982 -0.603465 0.278345 0.200924 0.247057 -0.591486 -0.029177 0.184430 -0.260351 -1.639492 0.470329 0.725607 -0.463013 0.542873 0.308784 0.515045 -0.018763 0.239450 0.093220 0.397105 -0.013126 -0.508643 0.079857 -0.568786 -0.427253 0.000698 -0.347754 0.213136 -0.351452 -0.070889 0.520289 -0.375556 0.241808 -0.007954 0.338157 -0.398657 0.143206 0.327843 0.336911 -0.341644 -0.583553 -0.273784 -0.135583 -0.229848 -0.034972 0.056903 -0.279962 -0.351632 -0.575958 -0.422321 -0.321569 -0.022676 -0.428962 -0.192319 0.409904 -0.428397 0.124920 0.094655 -0.026213 -0.098267 0.581167 0.248285 0.204808 0.573396 -0.380440 -1.053243 0.294195 0.305417 0.909062 0.283962 0.142885 -0.152507 0.035322 -0.383730 -0.080763 0.475372 0.348555 0.445049 -0.299154 -0.259609 -0.150866 0.370580 -0.311414 0.488757 -0.371823 0.580404 -0.036825 0.358031 0.400685 0.350977 0.490157 -0.655030 0.419230 -0.410516 0.204758 0.274144 0.767290 0.379974 -0.189315 -0.011101 -0.110194 0.364428 -0.165000 0.181816 -0.397300 0.095142 -0.456365 -0.079461 -0.072811 0.115757 -0.304911 0.222729 0.076767 0.478414 -0.617492 0.120939 0.315989 0.190898 -0.010698 0.168307 -0.452952 0.552343 -0.029133 -0.230512 -0.128423 -0.072380 -0.334532 0.004861 -0.169586 0.049592 -0.102780 -0.211857 -0.220642 -0.328245 -0.285505 0.476100 -0.368168 -0.421538 0.107853 0.451775 0.414833 0.446386 -0.047131 0.227098 -0.485098 0.080642 -0.343483 1.120362 -0.325369 -0.212236 -0.597158 -0.260679 -0.230605 0.542928 0.110941 -0.144180 0.192993 0.032366 0.157635 0.560953 0.254693 0.131844 0.300188 0.429161 0.167036 -0.051167 0.078809 0.307031 -0.184263 0.258507 0.153558 -0.191966 0.401628 0.144846 -0.069964 0.742785 0.486876 -0.060459 0.444337 0.134670 0.091755 -0.199388 0.110221 0.000750 0.560912 -0.158610 0.098628 -0.114383 -0.112153 -0.265891 0.184306 -0.420066 -0.464584 0.421058 0.027507 -0.292402 0.353625 -0.018313 0.116223 0.273245 -0.525217 0.023068 -0.333982 -0.227811 -0.288032 -0.081496 0.035229 0.346795 0.476305 -0.204108 -0.498961 0.129753 -0.107639 -0.218503 0.004995 -0.253434 0.256232 -0.599626 0.228278 0.232804 -0.130455 -0.292845 -0.172207 0.967246 -0.255907 0.546015 0.268150 -0.026046 0.377239 0.566314 0.838247 0.100893 -0.186126 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -0.343090 -1.583919 2.698850 2.256351 0.380270 1.007731 0.602050 -1.257130 1.708862 1.451554 -0.688291 0.897616 -1.424979 0.282953 -0.469683 1.319302 -1.344148 -1.691075 -0.175650 -0.878306 -0.494881 -1.242158 0.276407 0.512827 1.061581 0.088784 -1.179596 -0.279352 -2.132495 -2.279949 0.591139 -0.415628 1.015990 -0.347943 0.277946 -2.836706 1.869582 1.832477 -0.492111 -2.290346 0.535880 -0.812924 -0.372157 -0.002399 0.092771 0.870180 0.465577 0.677564 0.720908 0.865901 0.711317 0.263866 0.549102 2.700665 -0.679294 1.716779 1.176241 0.044637 -0.029852 0.606914 0.559994 0.180703 1.050080 1.146715 -0.390089 -1.066842 -0.243014 -0.228835 -1.630793 1.301076 0.067599 -0.785159 -1.189831 -0.483634 -1.136821 -0.217437 -0.921929 1.175315 2.712057 -1.153745 1.910359 0.777648 1.185607 -0.318009 0.929248 -0.281881 1.687644 0.730584 -0.892701 -0.485533 -1.425309 -0.878745 0.050434 0.422188 -1.084214 -1.103471 1.094939 -1.606763 -2.084499 0.848007 0.418756 -0.375925 -1.439119 0.106136 1.142823 0.914139 -0.579884 -1.753395 -0.962592 0.760539 -0.399312 -0.911420 -0.046657 -0.626523 -0.428358 -0.052416 -1.918679 -0.281637 0.704532 -1.137656 -0.872249 1.450341 -0.707881 0.514072 -0.290342 0.500750 -0.317797 1.051807 0.316405 1.257139 0.721288 -0.042881 -2.209389 0.635684 0.730861 0.611740 -0.557946 0.400263 -0.297860 0.612389 -0.653672 0.788332 -0.845999 1.186997 1.656879 -0.608055 -1.369018 -1.129531 0.048782 -1.606201 0.540441 -1.269943 -0.625417 0.053672 1.507075 0.809299 0.934602 2.251353 -1.677014 1.038784 -0.132206 0.254508 0.873244 -0.357727 0.756990 -0.919796 -1.501134 0.893055 1.309061 0.250435 0.423652 -0.459110 0.045765 -1.314062 -1.053143 0.877898 0.470843 -0.098959 1.602234 0.991874 2.087918 -1.772605 0.345555 0.658900 -0.424812 0.247908 -0.186636 -2.288709 0.839856 0.325289 0.917349 2.003436 -0.100641 -0.972377 0.715455 -0.221537 0.376719 -1.151396 0.923709 -1.505227 -0.245872 -0.853468 0.067275 -0.751172 -0.697622 -0.701363 -0.215162 2.186874 -0.722129 -2.047191 1.692206 -0.821328 0.497986 -2.629214 1.578820 -1.075786 0.907460 -0.503488 0.027045 -0.290215 0.497534 -0.750791 0.118895 0.941413 -0.854516 1.173101 2.107049 0.431091 0.139127 0.355570 1.187401 -0.430558 0.500189 -0.896894 1.546010 -0.221534 -0.529308 -0.253501 -0.684482 0.607165 -0.430263 -0.098780 0.953501 1.230294 -0.025255 0.658834 1.126234 0.974877 -1.101261 1.351585 0.032007 1.140631 -0.828404 -0.265003 -0.138560 0.114974 -0.407320 1.086968 -2.198595 -1.882529 -1.356372 -2.282833 -0.244547 -0.166509 0.724932 -0.097392 -0.095475 -2.006214 -1.468211 1.150650 -0.527628 1.310206 1.084152 0.950772 1.331543 1.511705 -0.689830 -0.164292 -0.572005 0.004538 -0.655740 -1.007218 -0.652361 1.272573 -0.956506 0.912948 1.575657 -0.337245 0.662200 -0.310807 1.111692 -1.210931 2.457679 1.131880 -0.881236 0.997864 0.906415 2.499410 -0.672841 -1.278729 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = -0.774968 -2.018762 2.854784 2.407306 0.468947 1.353132 1.167906 -1.777907 2.661179 1.783805 -0.474423 0.417783 -2.202974 0.460596 -1.099731 1.320929 -1.466060 -2.168697 -0.381414 -1.411883 -0.753295 -2.111075 0.489180 0.476724 0.926954 -0.847923 -1.174379 -0.473247 -2.898658 -1.910860 1.404001 -0.656219 1.124550 -1.069402 -0.063787 -4.340375 2.114720 2.068797 -0.690318 -2.648496 0.462175 -1.566283 -0.109966 -0.050240 -0.090900 0.356336 0.126178 0.952638 1.174345 0.555100 1.303097 0.418153 0.144651 4.599091 -1.717410 2.121486 0.962114 0.346151 -0.321347 1.201804 0.606205 0.525504 1.515008 1.713814 -0.567341 -1.084311 -0.104303 -0.449877 -2.406577 1.853992 -0.248483 -0.715716 -1.461829 -0.219084 -1.761299 -0.589002 -1.696452 1.485908 3.537922 -1.712284 2.424310 0.872059 1.414347 -0.160929 1.323442 -0.285975 2.540771 0.587840 -1.337190 -0.778041 -1.980884 -0.131964 -0.104493 0.123444 -1.054679 -2.073355 1.399129 -1.730584 -2.657494 0.980472 0.273125 -0.217113 -1.909000 -0.082032 1.343137 0.916022 -1.256987 -2.723780 -1.714292 1.281568 -0.250209 -1.032915 0.560499 -1.163090 -0.337231 -1.057579 -2.195291 -0.864406 0.598338 -1.755580 -1.556437 2.198178 -1.260265 0.578433 0.027120 0.633904 -0.352171 1.358554 0.016632 1.581267 0.808314 -0.089277 -3.443511 0.281641 0.752224 1.513861 -0.187218 0.887026 -0.343025 0.721664 -1.041502 0.770115 -0.784756 1.039086 1.503481 -0.930586 -1.242705 -1.029841 0.833660 -2.196675 0.620147 -1.797352 -0.768232 -0.022294 2.029607 1.707154 1.167147 2.985561 -2.134133 1.713289 -0.224641 0.015788 1.174390 -0.522275 1.042836 -1.095303 -2.191536 0.657717 1.534166 0.374810 0.278677 -0.741874 -0.383156 -1.734413 -1.153584 0.334651 0.696307 -0.460247 2.068601 1.252877 2.522787 -3.529671 1.158694 0.987576 -0.517164 0.681802 -0.582899 -3.042887 1.081089 0.597016 0.348996 1.977655 -0.322361 -1.382364 0.731476 -0.636656 0.717328 -1.709536 0.658420 -1.930389 -0.907868 -1.547671 0.150522 -0.871508 -1.088413 -0.777704 -0.259618 2.483924 -1.262186 -2.240242 2.515924 -0.605128 0.547004 -3.309801 2.654518 -1.324283 1.205577 -0.947577 0.079060 -0.578103 1.826080 -0.740738 0.205750 1.239127 -1.431993 1.902936 3.134256 0.579518 0.774406 0.514538 1.895297 -0.315548 0.216242 -1.428259 2.198161 -0.144588 -1.258336 -0.073322 -1.305910 1.142986 -0.407840 0.417856 1.731982 2.192430 -0.194136 1.189004 1.862598 1.157823 -0.972778 1.626402 -0.140700 1.281489 -0.932799 0.141569 -0.202108 -0.047920 -0.898027 1.399563 -2.688511 -2.675834 -1.647228 -2.371298 0.124662 -0.497650 0.471339 -0.092797 0.272218 -3.074515 -1.632541 0.900651 -1.080056 1.181633 1.193154 1.350591 1.611150 2.355466 -1.009406 -0.126214 -0.167338 -0.066180 -1.067373 -1.373944 -0.700351 1.441215 -1.596669 1.466349 1.633243 -0.235514 0.649405 0.145369 1.106037 -1.480929 3.118966 1.625220 -0.566374 1.626924 1.467372 3.475461 -0.181141 -1.440730 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a(int*, int*, int*, std::allocator&) = -0.379202 -0.680078 1.281932 1.088720 0.120227 0.418824 0.519046 -0.790139 1.210985 0.508261 0.067170 0.088173 -0.957398 0.322294 -0.047229 0.680412 -0.796503 -0.884640 -0.195027 -0.791699 -0.485515 -0.791009 0.408133 -0.041609 0.476149 -0.257590 -0.592423 -0.403584 -1.075006 -0.364712 0.941303 -0.366651 0.630667 -0.050170 -0.072434 -2.511305 0.873209 0.560473 -0.408604 -0.919758 0.272846 -0.747479 0.341805 -0.326942 0.012019 0.102980 0.030741 0.241732 0.824399 0.215144 0.539401 0.170572 -0.166876 1.998636 -1.060687 0.690432 0.196141 -0.097452 -0.402434 0.400752 0.211616 0.193346 0.757699 0.637616 -0.415369 -0.737419 -0.087914 -0.559248 -1.225669 0.790127 0.094938 -0.138384 -0.750015 -0.127201 -0.542214 -0.515387 -0.881215 0.713823 1.429188 -0.871034 0.921299 0.189839 0.550733 0.043447 0.605159 0.031096 1.034725 0.139700 -0.584101 -0.145280 -0.842903 -0.060457 0.012500 0.139798 -0.196224 -0.916242 0.429510 -0.168563 -1.080185 0.427224 0.287272 0.160963 -1.267767 -0.145067 0.555463 0.492027 -0.677116 -1.196271 -0.689759 0.335681 -0.049489 -0.350275 0.105483 -0.737421 -0.386381 -0.878908 -1.045765 -0.283014 0.062781 -0.624875 -0.798471 0.991644 -0.838134 0.018345 0.035311 0.365665 -0.451987 0.895966 -0.116196 0.611981 0.425377 -0.236414 -1.635839 -0.191214 0.407697 1.405768 0.005327 0.024442 -0.563328 0.167919 -0.775154 0.112890 0.214880 0.589801 0.951217 -0.433596 -0.607274 -0.235028 0.471021 -1.209265 0.395480 -0.800460 0.152703 0.173156 0.826709 0.794843 0.720661 1.381534 -0.846511 0.873353 -0.301157 -0.112783 0.857224 0.272726 0.677305 -0.508696 -0.705239 0.183799 0.407376 0.150596 0.203162 -0.311077 -0.034820 -0.901938 -0.480999 -0.051393 0.344242 -0.248696 0.656241 0.511025 1.295023 -1.587829 0.468628 0.600133 -0.134393 0.244538 -0.064767 -1.065492 0.457942 0.276350 -0.414875 0.705072 -0.155435 -0.838903 0.165523 -0.229552 0.403040 -0.610165 0.074717 -0.662785 -0.328232 -0.749575 0.020746 -0.530787 -0.529153 -0.284217 -0.089360 1.108440 -0.312233 -0.899124 1.096263 -0.328082 0.375306 -1.474173 1.449872 -0.627912 0.438477 -0.836643 -0.113872 -0.293703 0.892264 -0.431051 0.276060 0.473805 -0.481786 0.510882 1.557442 0.412939 0.394480 0.075320 0.950273 0.066475 0.358961 -0.378190 1.143807 -0.225360 -0.321942 0.161585 -0.474338 0.352479 -0.199156 0.198167 0.948541 0.991145 0.126243 0.586325 0.768877 0.667077 -0.473734 0.601339 -0.044930 0.632673 -0.305870 0.044461 0.127152 0.208432 -0.383352 0.469083 -1.082139 -1.270795 -0.271462 -0.957873 0.095910 0.305810 -0.026534 -0.037018 0.100955 -1.244312 -0.444387 0.085378 -0.511492 0.778858 0.333181 0.435044 0.730139 1.167522 -0.684463 -0.324036 0.108238 -0.069358 -0.240947 -0.358620 -0.664766 0.823932 -0.810678 0.464605 0.795724 -0.207214 0.121851 0.032671 1.000407 -0.588010 1.408068 0.479508 -0.176591 0.982275 0.783374 1.570282 0.219064 -0.514469 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_max_size(std::allocator const&) = -0.685790 -1.190648 2.165852 1.621221 0.354244 0.873517 0.945493 -1.415804 2.186204 1.355817 -0.223593 -0.336300 -1.486394 0.087313 -0.324658 0.870964 -1.072410 -1.415127 -0.316788 -1.312204 -0.508945 -1.593366 0.650730 -0.153851 0.593807 -0.552835 -0.675200 -0.393974 -1.459188 -1.414530 1.693657 -0.461342 0.895332 -0.376155 -0.281987 -3.800919 1.693832 1.171244 -0.636843 -1.606315 0.243399 -0.573358 -0.175388 0.283014 -0.072640 0.301230 -0.021594 0.766653 0.915062 0.523105 1.186599 -0.121210 0.011104 3.384079 -1.413203 1.319523 0.411458 0.090441 -0.313444 1.232221 0.384337 0.481915 1.017250 1.510242 -0.135491 -0.716580 0.410846 -0.562143 -2.216428 1.557878 -0.165922 -0.644677 -0.705870 -0.187320 -0.719359 -0.388973 -1.116479 0.942003 2.537458 -1.001131 1.770549 0.611811 0.913408 -0.224184 0.424736 -0.192292 1.619424 0.339229 -0.944840 -0.587587 -1.280593 -0.319385 0.034454 0.143866 -0.547917 -1.353225 1.073702 -0.514177 -1.584082 0.664469 0.432391 0.025107 -1.818163 -0.154071 0.946531 0.532054 -0.830996 -1.825349 -1.417764 0.832819 -0.596263 -0.359454 0.150823 -0.707089 -0.505298 -0.701376 -1.474568 -0.694477 0.066463 -1.146832 -1.277849 1.439725 -1.147413 0.163980 0.169659 0.646666 -0.455273 0.883362 -0.004120 1.199829 0.821345 -0.008680 -2.453391 -0.247475 0.684590 1.565006 0.463115 0.057688 -0.433882 0.483829 -1.064075 0.641223 -0.306298 0.406709 1.591763 -0.641824 -0.813114 -0.457300 0.779836 -1.932077 0.490200 -1.448989 -0.296362 0.183392 1.394764 1.324436 0.926215 2.252901 -1.959721 1.451565 -0.595068 -0.140853 0.521606 -0.026959 0.798825 -0.624095 -1.350619 -0.013529 0.988003 0.307122 0.289653 -0.956496 -0.387048 -1.421143 -0.915195 0.164485 0.325991 -0.556210 0.701941 0.999695 2.396040 -2.751377 0.756221 1.005123 -0.225457 0.272670 -0.033638 -2.138134 0.637074 0.370178 -0.035191 1.278849 -0.182883 -0.941782 0.263304 -0.691981 0.268952 -1.052914 0.303776 -1.216388 -0.451391 -1.098487 0.085832 -0.979707 -0.770036 -0.336378 0.044166 1.575385 -0.584545 -1.667977 2.096734 -0.486038 0.128449 -2.202075 2.125754 -0.828563 0.657238 -1.044588 -0.100588 -0.694505 1.324877 -0.405664 0.135962 0.512949 -0.813074 1.447547 2.736125 0.527546 0.546230 0.190129 1.566768 -0.333366 0.169467 -1.052224 1.515061 -0.282749 -0.959711 -0.111870 -0.900301 0.761030 -0.592337 0.258829 1.184954 1.736794 -0.349461 0.912233 1.079799 0.822171 -0.560570 1.228560 0.360734 1.025288 -0.435459 0.177679 0.225810 0.096100 -1.010888 1.019473 -1.798038 -1.865099 -0.805238 -1.848655 -0.221595 -0.077268 0.344385 -0.075455 0.314957 -2.003722 -0.948595 0.617669 -0.752739 0.966247 0.700550 0.931800 1.056433 1.944935 -0.929363 -0.130757 0.007426 -0.016908 -0.878492 -1.075832 -0.598570 1.315386 -0.970836 0.852806 1.104769 -0.111747 0.297107 -0.098606 1.077442 -1.180052 2.148019 1.048170 -0.004098 1.306496 0.653055 2.740657 0.224016 -0.812774 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy(int*, int*, int*) = -0.322939 -0.752134 1.344387 1.177350 0.168306 0.428282 0.578491 -0.786691 1.273222 0.587500 0.069313 0.129095 -0.987203 0.370990 -0.002893 0.773960 -0.818067 -0.952152 -0.169856 -0.765724 -0.513704 -0.830630 0.455004 -0.073758 0.506792 -0.272238 -0.639139 -0.486383 -1.105471 -0.360125 1.019060 -0.400386 0.677305 -0.014990 -0.080374 -2.644247 0.898519 0.544176 -0.417896 -1.002505 0.252635 -0.724671 0.348549 -0.363473 0.066865 0.120227 0.068245 0.321879 0.833368 0.282967 0.541508 0.166653 -0.149232 2.110634 -1.085561 0.715798 0.247946 -0.081951 -0.380046 0.397357 0.274001 0.204545 0.798056 0.712534 -0.383628 -0.750045 -0.137659 -0.611907 -1.300738 0.830500 0.158859 -0.066344 -0.825725 -0.105011 -0.484756 -0.504742 -1.031771 0.776663 1.541527 -0.933453 0.979001 0.241319 0.645194 0.024371 0.596313 0.038475 1.031022 0.184343 -0.637334 -0.154426 -0.937636 -0.123973 -0.002654 0.079396 -0.194707 -0.993181 0.438250 -0.045915 -1.105375 0.483495 0.293241 0.225308 -1.302835 -0.155683 0.609074 0.553082 -0.714918 -1.239278 -0.767398 0.287699 -0.045948 -0.391491 0.124339 -0.748516 -0.427433 -0.913615 -1.099373 -0.351634 0.082673 -0.704203 -0.802221 0.995449 -0.898676 0.048376 0.001858 0.333392 -0.457329 0.917933 -0.034572 0.659887 0.557424 -0.279965 -1.752139 -0.134869 0.468063 1.549921 0.041423 0.050836 -0.594193 0.198757 -0.768197 0.127197 0.294247 0.598938 1.012513 -0.449408 -0.695316 -0.294064 0.571309 -1.202089 0.458214 -0.874803 0.247900 0.180486 0.872589 0.800547 0.755653 1.440528 -0.950546 0.974990 -0.336120 -0.037603 0.846772 0.349402 0.675937 -0.509785 -0.742679 0.191789 0.483881 0.107372 0.243906 -0.388198 -0.003695 -0.934609 -0.527639 -0.068446 0.353558 -0.333504 0.651817 0.474716 1.343405 -1.650218 0.450764 0.626097 -0.100691 0.241860 -0.062287 -1.151471 0.532245 0.225725 -0.412796 0.698109 -0.165905 -0.918155 0.217285 -0.247585 0.377531 -0.570055 0.080981 -0.692232 -0.392742 -0.787554 0.099609 -0.549778 -0.529459 -0.251512 0.001982 1.174787 -0.252923 -0.917591 1.094698 -0.399088 0.329280 -1.537070 1.588152 -0.639500 0.364686 -0.870247 -0.158314 -0.316907 0.950214 -0.433343 0.226628 0.527742 -0.484962 0.505241 1.651181 0.408277 0.372019 0.122108 0.968153 0.103897 0.339605 -0.358287 1.183768 -0.249866 -0.313070 0.137819 -0.494987 0.437779 -0.236568 0.164731 1.010383 1.012070 0.126045 0.641060 0.762004 0.683628 -0.535526 0.621456 -0.019915 0.714659 -0.335616 0.095955 0.087812 0.170925 -0.454105 0.537191 -1.093313 -1.303050 -0.226783 -0.971129 0.032866 0.358301 -0.012389 -0.083122 0.096291 -1.292972 -0.458701 -0.005189 -0.537896 0.690501 0.389020 0.439644 0.774777 1.198798 -0.732063 -0.362545 0.094465 -0.099023 -0.261674 -0.381705 -0.654856 0.818122 -0.847428 0.470499 0.830525 -0.187631 0.099198 -0.016592 1.128947 -0.572982 1.515939 0.533964 -0.187264 0.980508 0.812213 1.703143 0.206017 -0.550520 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy(int*, int*, int*) = -0.369737 -0.613262 1.203382 1.009608 0.031170 0.424303 0.305575 -0.816469 1.068769 0.301299 0.065162 0.125322 -0.838543 0.308099 -0.185774 0.546689 -0.768792 -0.795039 -0.303742 -0.786984 -0.489710 -0.698006 0.318627 0.078978 0.410509 -0.130384 -0.620243 -0.194204 -1.031884 -0.383014 0.825396 -0.271713 0.575691 -0.094078 -0.008395 -2.288848 0.839973 0.629393 -0.357174 -0.842686 0.247292 -0.701563 0.235307 -0.327627 -0.161080 0.072934 -0.090793 0.053351 0.731466 0.111335 0.457946 0.286296 -0.194504 1.789205 -0.910376 0.665553 0.197171 -0.064597 -0.377992 0.319602 0.183532 0.264898 0.671249 0.525349 -0.389805 -0.723369 -0.048932 -0.458384 -1.074999 0.759265 0.017557 -0.242687 -0.610701 -0.203467 -0.676518 -0.470144 -0.429976 0.636126 1.264574 -0.791572 0.773167 0.101428 0.417334 0.074139 0.604794 -0.007629 1.024264 0.156407 -0.457602 -0.090565 -0.670471 0.035822 0.035450 0.221306 -0.305224 -0.811158 0.459621 -0.491506 -1.018567 0.370781 0.310604 0.064495 -1.190713 -0.194099 0.479076 0.385548 -0.590155 -1.053494 -0.560461 0.418042 0.042949 -0.341422 0.069423 -0.593257 -0.277385 -0.746933 -0.985675 -0.173670 0.088746 -0.494365 -0.684288 0.938453 -0.733050 -0.041960 -0.002741 0.359694 -0.445904 0.844727 -0.218440 0.541976 0.168916 -0.118803 -1.281684 -0.279221 0.293768 1.154852 -0.108887 -0.064386 -0.491720 0.154531 -0.711256 0.095802 0.028533 0.467148 0.836345 -0.341988 -0.555729 -0.208287 0.239540 -1.238462 0.225488 -0.721994 -0.052205 0.276060 0.755353 0.794843 0.638045 1.295181 -0.674358 0.718751 -0.200344 -0.198494 0.817042 0.102001 0.592400 -0.482574 -0.721075 0.277374 0.235953 0.234784 0.201462 -0.228441 -0.075049 -0.793595 -0.464479 0.065637 0.355137 -0.090909 0.651478 0.536537 1.094876 -1.419878 0.464301 0.515245 -0.193061 0.260778 -0.106561 -0.945652 0.312508 0.300942 -0.343314 0.767163 -0.164166 -0.698985 0.135675 -0.175687 0.439201 -0.646032 0.124911 -0.621468 -0.184296 -0.737828 -0.093466 -0.455859 -0.417519 -0.353426 -0.292005 1.039343 -0.533811 -0.912484 1.117660 -0.142531 0.481698 -1.375520 1.000749 -0.557924 0.661282 -0.660003 -0.033003 -0.210411 0.618585 -0.463870 0.335559 0.439617 -0.490482 0.399864 1.379472 0.353058 0.347731 -0.001857 0.860862 -0.000526 0.427485 -0.428906 1.091607 -0.153034 -0.377453 0.157686 -0.446434 0.200980 -0.253998 0.235127 0.790848 0.902976 0.227910 0.477967 0.744284 0.634638 -0.433192 0.547254 -0.051572 0.436177 -0.296654 -0.008316 0.181393 0.326711 -0.303058 0.357657 -1.006816 -1.237533 -0.521488 -0.984476 0.152398 0.165497 -0.034852 -0.045760 0.003309 -1.055380 -0.484694 0.278456 -0.469593 1.020248 0.324457 0.446991 0.672393 1.097666 -0.669826 -0.203707 0.132556 -0.026676 -0.178593 -0.289878 -0.707707 0.830512 -0.642463 0.398144 0.822116 -0.215827 0.244840 0.116318 0.772381 -0.547383 1.285374 0.412920 -0.237289 0.904666 0.649112 1.309591 0.278431 -0.496686 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy(int*, int*, int*) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__miter_base(int*) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_wrap(int* const&, int*) = -0.216889 -0.266459 0.395803 0.358802 0.113353 0.124916 0.245948 -0.174661 0.469585 0.329413 -0.007362 -0.032471 -0.401040 0.090013 0.115063 0.290524 -0.196848 -0.331630 0.027113 -0.200139 -0.128038 -0.330870 0.165481 -0.106598 0.150359 -0.107711 -0.137837 -0.168707 -0.356358 -0.158032 0.290792 -0.185617 0.213712 0.088776 -0.043321 -0.702062 0.261666 0.145042 -0.145935 -0.324930 0.068807 -0.258085 0.239958 -0.072157 0.163421 0.120623 0.114283 0.071114 0.303339 0.131296 0.287338 -0.121985 -0.030490 0.555408 -0.395300 0.218027 0.043743 -0.055105 -0.123191 0.127063 0.076943 -0.007923 0.280317 0.287755 -0.196732 -0.193710 -0.079493 -0.219865 -0.473803 0.243908 -0.030907 0.036258 -0.336534 -0.063083 -0.038942 -0.199795 -0.676753 0.197781 0.544326 -0.285583 0.383646 0.152019 0.268294 0.001952 0.195213 0.037562 0.294699 0.022421 -0.294056 0.011327 -0.200821 -0.072924 -0.024529 0.094550 0.022512 -0.128327 0.112014 0.162297 -0.352471 0.176669 0.028961 0.169857 -0.442496 0.072874 0.169694 0.238159 -0.255216 -0.464516 -0.234132 0.024126 -0.010357 -0.087593 0.024672 -0.299998 -0.227258 -0.320474 -0.343451 -0.193706 -0.016508 -0.325417 -0.278200 0.334512 -0.299204 0.071418 0.048823 0.086933 -0.119701 0.385644 0.071677 0.245280 0.189724 -0.164565 -0.808130 -0.016216 0.186422 0.517857 0.047057 0.096815 -0.174283 -0.009022 -0.269278 0.011859 0.148086 0.219611 0.447816 -0.194995 -0.199626 -0.079910 0.190318 -0.396993 0.232127 -0.294806 0.257395 -0.013431 0.286884 0.249883 0.268839 0.600635 -0.377012 0.270257 -0.180719 -0.050241 0.267341 0.248729 0.269126 -0.163710 -0.187158 0.028721 0.268726 -0.047430 0.144729 -0.181513 0.009020 -0.336900 -0.070138 0.030282 0.083114 -0.156346 0.217679 0.111036 0.453879 -0.472448 0.147832 0.227368 0.070123 0.064001 0.009635 -0.384964 0.263986 0.048628 -0.160819 0.076910 -0.038292 -0.271402 0.056405 -0.160563 0.133449 -0.213268 0.019920 -0.220722 -0.107197 -0.261829 0.103177 -0.197172 -0.249392 0.038858 0.171940 0.353763 0.152851 -0.182399 0.246892 -0.116255 0.064242 -0.399758 0.631279 -0.239453 0.106469 -0.377915 -0.070115 -0.129647 0.411151 0.018980 -0.030555 0.165898 -0.077239 0.173204 0.496971 0.165358 0.094412 0.114861 0.339207 0.085525 0.048982 -0.029303 0.325288 -0.067848 0.012571 0.122012 -0.172845 0.197385 0.014790 -0.036545 0.399399 0.403974 -0.088995 0.245487 0.179694 0.199252 -0.154400 0.178474 0.025816 0.378240 -0.117683 0.043544 -0.025753 0.044870 -0.168403 0.133783 -0.341205 -0.382094 0.154007 -0.229562 -0.076458 0.229987 -0.023723 0.042852 0.124349 -0.381034 -0.094659 0.022612 -0.191255 0.188176 -0.014701 0.111683 0.259365 0.390275 -0.190001 -0.239648 -0.002498 -0.080009 -0.127920 -0.068424 -0.147443 0.223762 -0.365918 0.132946 0.165409 -0.101269 -0.077372 0.040507 0.414465 -0.209244 0.484187 0.195786 0.028391 0.414686 0.305020 0.665044 0.015395 -0.157214 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base(int*) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = -0.600533 -1.041844 1.619427 1.378216 0.272507 0.824195 0.348432 -0.969565 1.237401 0.824992 -0.097873 0.440667 -1.041300 0.234132 -0.205923 0.650773 -0.779620 -1.056540 -0.228010 -0.821215 -0.429342 -0.965398 0.074700 0.386226 0.440356 -0.250667 -0.766871 -0.077036 -1.603033 -1.143458 0.696661 -0.314285 0.750462 -0.395423 0.127330 -2.621557 1.210629 1.137690 -0.347127 -1.394591 0.259019 -0.779689 0.106371 -0.022152 -0.119568 0.375091 0.097134 -0.054510 0.690456 0.322989 0.587278 0.253894 0.071668 2.066610 -0.834538 1.101037 0.550737 -0.078823 -0.202771 0.430875 0.209935 0.203810 0.878244 0.731327 -0.495081 -0.764550 -0.009124 -0.210427 -1.337781 0.839785 -0.013782 -0.506149 -0.676640 -0.271593 -0.959093 -0.485960 -0.277710 0.616621 1.775421 -0.746316 1.313062 0.303794 0.730842 0.109496 0.998606 -0.045259 1.304664 0.330009 -0.795121 -0.079795 -0.875931 -0.099307 0.007694 0.551060 -0.581196 -0.736472 0.583724 -0.866924 -1.355223 0.707489 0.165430 -0.031934 -1.519198 -0.304246 0.737274 0.565348 -0.725766 -1.431942 -0.780584 0.742669 -0.177944 -0.582476 0.115169 -0.785590 -0.314953 -0.590908 -1.144516 -0.258714 0.451873 -0.750119 -0.949387 1.299483 -0.721874 0.232589 -0.095633 0.433281 -0.473226 0.811847 -0.071659 0.766555 0.150398 -0.288901 -1.836737 -0.212697 0.288959 0.880497 -0.271666 -0.064174 -0.364144 0.322380 -0.555130 0.486022 -0.252503 0.719263 1.224016 -0.274696 -0.640699 -0.540598 0.282768 -1.408026 0.284458 -0.847252 -0.359021 0.176949 1.059271 0.645336 0.687662 1.521575 -0.881449 0.838324 -0.281706 -0.121386 0.831636 -0.182395 0.636238 -0.649011 -1.029228 0.492739 0.691402 0.269530 0.353213 -0.414711 -0.048423 -0.801910 -0.616477 0.285439 0.393846 -0.044838 1.061487 0.723096 1.753884 -1.558723 0.402491 0.444284 -0.320849 0.359752 -0.292614 -1.328025 0.374052 0.454921 -0.143166 1.310058 -0.209046 -0.910854 0.316269 -0.131975 0.484701 -0.898665 0.527041 -0.970127 -0.156025 -0.750132 -0.304326 -0.639017 -0.596633 -0.635652 -0.295261 1.426601 -0.614980 -1.339731 1.270851 -0.297445 0.461088 -1.908107 1.123138 -0.765176 0.862263 -0.630826 -0.015004 -0.277317 0.845053 -0.487015 0.365510 0.654365 -0.814249 0.824125 1.605596 0.387941 0.354190 0.111475 0.938577 -0.094589 0.174608 -0.714513 1.243209 -0.217186 -0.331677 0.021785 -0.617787 0.484166 -0.236346 0.098818 0.485949 1.081029 -0.080485 0.339442 1.092934 0.528264 -0.541642 0.734585 -0.082111 0.671883 -0.478785 -0.083351 -0.082688 0.334054 -0.145825 0.541221 -1.456299 -1.280974 -0.790929 -1.401241 0.026195 0.395973 0.070620 0.159479 0.090045 -1.550323 -0.730583 0.763019 -0.530834 1.233923 0.573062 0.702596 0.916894 1.246004 -0.532897 -0.317028 -0.171861 -0.144957 -0.506149 -0.455557 -0.607933 0.972991 -0.782057 0.717088 0.879677 -0.201940 0.366110 0.139859 0.700485 -0.816486 1.692227 0.748005 -0.360787 0.901222 0.718540 1.786064 -0.230132 -0.709979 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int*, int*, int*) = -1.409257 -2.846309 3.425526 2.974266 1.058556 2.508666 0.438501 -1.709761 1.981389 2.566407 -0.794134 1.723880 -1.933908 -0.035842 -0.402266 0.945403 -1.052439 -2.180819 -0.022936 -1.031924 -0.235824 -2.097141 -0.943907 1.834750 0.581569 -0.465251 -1.408679 0.468549 -4.034073 -3.876317 0.398992 -0.452918 1.519359 -1.314102 0.797556 -4.188739 2.737879 3.265506 -0.284536 -3.731493 0.281153 -1.229911 -0.456317 0.964076 -0.087337 1.543667 0.763263 -0.306783 0.553910 1.031368 0.846008 0.187256 0.985888 3.287829 -0.532146 2.909769 2.034848 -0.107440 0.508820 0.824856 0.341021 0.042643 1.747197 1.565771 -1.014898 -1.023622 0.160291 0.647663 -2.436836 1.271889 -0.044680 -1.539958 -1.017922 -0.613073 -2.321213 -0.555619 0.455419 0.764153 3.922882 -0.735496 3.513937 1.072245 2.028468 0.230937 2.682934 -0.218728 2.589696 1.071946 -2.143911 0.004135 -2.041399 -0.676865 -0.090878 1.641468 -1.817950 -0.653109 1.122482 -2.761551 -2.834705 2.021749 -0.356594 -0.497367 -2.793059 -0.745173 1.822232 1.277883 -1.303752 -2.986071 -1.583809 2.155913 -1.037623 -1.585781 0.306600 -1.343023 -0.416015 -0.185217 -1.920833 -0.544302 1.979066 -1.756560 -1.836730 2.870008 -0.798310 1.304640 -0.505115 0.675790 -0.621366 0.858540 0.462945 1.547771 0.079315 -0.997672 -3.777191 0.070376 0.223403 0.056317 -1.018815 -0.151813 0.211298 1.062053 0.033029 1.902726 -1.413699 1.643503 2.594836 -0.055514 -1.048315 -1.937920 0.310149 -2.257159 0.431964 -1.413187 -1.699638 -0.002795 2.352043 0.313787 0.900939 2.508428 -1.738476 1.338879 -0.557266 0.205999 0.948303 -1.197137 0.837397 -1.380936 -2.361065 1.476037 2.287656 0.513346 0.969274 -1.157475 0.023297 -0.918463 -1.347581 1.223701 0.658662 0.251928 2.851994 1.586053 4.041679 -2.261708 0.216878 0.155963 -0.914860 0.788579 -1.013255 -2.941336 0.680475 1.084435 0.660057 3.603012 -0.459386 -1.735681 1.050108 0.100517 0.733114 -2.015101 2.080236 -2.444317 -0.076794 -0.993581 -1.057847 -1.391655 -1.341087 -1.933052 -0.521840 3.119258 -1.181641 -3.175576 2.064049 -0.842540 0.659843 -4.157134 1.352058 -1.633576 1.910891 -0.405132 0.057221 -0.485277 1.489634 -0.691873 0.499841 1.574953 -2.176957 2.453389 2.534888 0.534182 0.367186 0.602000 1.314356 -0.520008 -0.722405 -1.979728 1.925402 -0.452605 -0.251552 -0.452729 -1.362640 1.576727 -0.241493 -0.352597 -0.496015 1.891460 -0.989816 -0.099448 2.560897 0.108906 -1.029971 1.410403 -0.257692 1.505291 -1.261252 -0.416636 -1.108860 0.480078 0.491565 1.258327 -3.383444 -1.823675 -2.163130 -3.219442 -0.431231 1.025514 0.501967 0.980737 0.362837 -3.608863 -1.826088 2.599366 -0.834220 2.395694 1.644413 1.789441 1.991671 1.967257 -0.184960 -0.723358 -1.117697 -0.451237 -1.814560 -1.036127 -0.501819 1.682506 -1.337901 2.045666 1.428142 -0.195621 0.977976 0.140291 0.636221 -1.959214 3.465922 2.125790 -1.133754 0.883393 1.029859 3.600180 -1.975820 -1.664802 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__copy_move::__assign_one(int*, int*) = -0.447798 -0.462488 0.542510 0.467277 0.203372 0.266157 0.348717 -0.225653 0.616194 0.533368 -0.008517 0.069023 -0.511925 0.056128 0.085856 0.319853 -0.192795 -0.484376 0.068154 -0.281763 -0.209050 -0.458611 0.045422 -0.029150 0.139585 -0.281011 -0.216415 -0.209382 -0.611153 -0.349335 0.301978 -0.217686 0.294247 -0.167085 -0.045902 -1.228875 0.353475 0.309355 -0.179077 -0.548908 0.064573 -0.370408 0.279107 0.025570 0.109444 0.117369 0.193968 0.012763 0.311399 0.159261 0.402159 -0.095436 -0.025134 1.023946 -0.444487 0.407213 0.194540 -0.054395 -0.179169 0.228939 0.126847 -0.066839 0.431999 0.376929 -0.277479 -0.195271 -0.045357 -0.197763 -0.648587 0.284180 0.000000 -0.098032 -0.333675 -0.086479 -0.187846 -0.331962 -0.636232 0.194063 0.790285 -0.391191 0.645569 0.234220 0.446934 0.080613 0.390696 0.023058 0.509858 0.053199 -0.462404 -0.005891 -0.287132 -0.026248 -0.062927 0.262863 -0.040458 -0.236574 0.209419 0.109457 -0.558534 0.343179 -0.024441 0.212063 -0.723951 -0.031351 0.311287 0.334095 -0.412995 -0.691761 -0.504358 0.160415 -0.124684 -0.187151 0.092168 -0.451255 -0.231151 -0.392828 -0.453409 -0.259492 0.145160 -0.460094 -0.513226 0.546426 -0.403572 0.203686 0.040617 0.137431 -0.140562 0.433627 0.112428 0.294485 0.171365 -0.253874 -1.228802 -0.116327 0.161834 0.618647 0.031100 0.074701 -0.137511 0.062110 -0.247467 0.149803 0.093018 0.385031 0.633342 -0.158499 -0.253063 -0.233615 0.329836 -0.528898 0.258077 -0.406981 0.192086 -0.009413 0.429753 0.302637 0.274187 0.772256 -0.456771 0.483873 -0.227208 -0.072392 0.305724 0.128033 0.349768 -0.257495 -0.343301 0.044850 0.473367 0.022163 0.179892 -0.288636 -0.013510 -0.387746 -0.224712 -0.002074 0.147090 -0.154894 0.360934 0.197662 0.919638 -0.829675 0.184272 0.175861 0.018965 0.134045 -0.096875 -0.568838 0.254503 0.140477 -0.239538 0.287708 -0.058422 -0.453138 0.095934 -0.167627 0.168387 -0.320190 0.144946 -0.367943 -0.169119 -0.283810 -0.004902 -0.345521 -0.307037 -0.111948 0.104108 0.548602 0.007368 -0.424398 0.372189 -0.149461 0.099786 -0.738437 0.875176 -0.324288 0.222269 -0.543037 -0.095563 -0.207498 0.683390 0.039239 0.081330 0.265180 -0.266124 0.331763 0.756714 0.185504 0.243377 0.162066 0.446785 0.086022 -0.068525 -0.142716 0.475843 -0.109696 -0.080863 0.084972 -0.274061 0.378728 0.089660 -0.002421 0.357110 0.577156 -0.239293 0.224232 0.437430 0.154189 -0.215473 0.247443 0.021162 0.552201 -0.183750 0.066729 -0.151859 0.063857 -0.143664 0.184290 -0.538443 -0.447189 0.042272 -0.424130 -0.074984 0.402070 -0.058772 0.098158 0.177560 -0.677013 -0.156194 0.168389 -0.274974 0.317234 0.079548 0.267490 0.427459 0.529069 -0.183577 -0.325758 -0.046784 -0.182996 -0.280536 -0.169404 -0.135903 0.263027 -0.497511 0.336692 0.158320 -0.039959 -0.039263 0.167548 0.419476 -0.305041 0.713154 0.339468 -0.024405 0.459648 0.435412 0.977680 -0.185786 -0.255174 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference&>::type&& std::move&>(std::greater&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_iter >::_Iter_comp_iter(std::greater) = 0.034806 -0.394981 0.803242 0.768577 -0.100776 0.171267 0.128088 -0.464126 0.466645 0.195559 -0.055990 0.168259 -0.524243 0.276748 -0.099771 0.516185 -0.541696 -0.374057 -0.238993 -0.331935 -0.218645 -0.327642 0.360588 0.073387 0.395940 0.312605 -0.374414 -0.145599 -0.419543 -0.430383 0.348479 -0.130547 0.397026 0.294437 0.009123 -0.935434 0.508845 0.472841 -0.208144 -0.540094 0.246757 -0.257088 0.033508 -0.238330 -0.126382 0.175256 -0.082446 0.081300 0.377978 0.235920 0.211485 0.156374 0.255705 0.676807 -0.329929 0.369807 0.210522 0.002026 -0.118348 -0.036176 0.170251 0.230582 0.284790 0.256663 -0.039133 -0.499396 -0.266420 -0.283794 -0.568693 0.431655 -0.156628 -0.060268 -0.531603 -0.245161 -0.227010 -0.098795 -0.632002 0.486554 0.722263 -0.515676 0.364592 0.068821 0.007135 -0.115960 0.148594 0.021155 0.274446 0.198407 -0.067347 0.036225 -0.051825 -0.180170 0.152259 0.005043 -0.329706 -0.539300 0.373360 -0.305155 -0.564230 0.199323 0.277007 -0.106660 -0.341987 -0.044797 0.062833 0.311341 -0.293000 -0.482670 -0.077321 0.115104 0.340488 -0.243896 -0.143109 -0.019631 -0.211792 -0.207675 -0.654613 -0.007066 -0.012704 -0.321651 -0.049592 0.366404 -0.144093 0.007776 -0.059457 0.150950 -0.214743 0.671489 -0.026814 0.435775 0.123463 0.187706 -0.274839 0.081477 0.337262 0.412642 -0.187443 0.020490 -0.285177 0.076222 -0.297309 0.041512 0.019757 0.179018 0.592546 -0.204496 -0.427610 -0.141700 -0.201047 -0.767494 0.134473 -0.439806 0.096744 0.328394 0.405547 0.274119 0.382398 0.798834 -0.493611 0.108635 -0.015833 -0.129744 0.419306 0.274273 0.278893 -0.242746 -0.461260 0.331769 0.126644 0.110318 0.143099 0.030262 0.024705 -0.407126 -0.091836 0.332805 0.199460 -0.167003 0.384642 0.293187 0.424850 -0.199524 0.159925 0.322168 -0.115467 0.101553 0.003317 -0.639873 0.286260 0.031321 0.004802 0.366469 -0.086354 -0.174085 0.267301 -0.238272 0.178003 -0.380396 0.184145 -0.363996 -0.022247 -0.525543 0.084575 -0.042635 -0.216531 -0.062730 0.003303 0.637883 -0.303204 -0.215381 0.499579 -0.025039 0.171133 -0.549355 0.611533 -0.284821 0.371736 -0.181484 -0.123695 0.052107 -0.041450 -0.274647 -0.103428 0.282236 -0.059136 0.004968 0.668640 0.174596 -0.163087 0.020187 0.461203 -0.037806 0.464503 -0.202387 0.594475 -0.017561 -0.082782 0.099756 -0.203076 -0.065294 -0.332933 -0.011266 0.672353 0.336515 0.250361 0.313748 0.134741 0.542019 -0.316946 0.434406 0.017315 0.288831 -0.248469 -0.039366 0.155088 0.311923 -0.217809 0.292601 -0.536372 -0.744097 -0.401754 -0.439858 -0.076263 -0.031995 0.228470 -0.188816 -0.132831 -0.340793 -0.482941 0.322620 -0.272125 0.427734 0.230825 0.191088 0.385332 0.543431 -0.299556 0.014391 -0.036675 0.130247 0.080224 -0.060798 -0.317994 0.425362 -0.285560 -0.009488 0.597555 -0.195754 0.230948 -0.087866 0.538822 -0.316502 0.730718 0.174397 -0.174781 0.600440 0.394885 0.505752 0.167992 -0.312292 -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.895890 -6.256599 7.865933 6.984280 0.407442 4.130760 2.383970 -3.549871 4.962593 2.418540 -1.739644 3.598868 -4.855251 0.394518 -1.956363 2.420428 -4.155640 -5.028325 -0.487592 -2.113772 -0.987673 -4.561410 -0.253127 4.066140 2.600449 1.670748 -3.112408 -0.659738 -8.123614 -5.084382 2.725443 -0.851193 3.515633 -0.557434 1.308247 -10.941466 5.191972 6.858565 -0.874565 -8.327653 1.328922 -2.975745 -1.021523 -0.630204 -0.827879 2.162787 0.889435 2.807333 1.425224 1.773088 -0.162609 1.209560 1.944090 9.005294 -1.572605 5.824408 5.358450 0.839489 0.307852 0.715331 1.804941 0.624249 3.137779 3.435890 -1.692929 -2.895848 -1.187794 -0.966006 -5.418941 3.142678 0.828467 -1.877248 -4.035555 -1.154820 -5.150667 -0.878838 -1.645299 3.816221 8.891553 -4.255755 7.368502 1.808856 4.212569 -0.523578 3.941325 -0.381720 4.498627 2.571703 -3.489381 -0.540618 -6.542822 -1.722600 0.187089 0.225743 -4.314595 -5.076718 3.251442 -6.036518 -6.949960 3.022116 0.629635 -1.648384 -3.226497 -0.593893 3.130790 2.987056 -2.960283 -6.111823 -3.108955 3.548241 -0.842789 -3.291394 0.244403 0.083665 -0.661906 -2.161227 -5.698925 -0.499374 3.457041 -3.677564 -1.567295 5.169578 -2.681204 2.688741 -1.154197 0.714440 -1.081778 3.545400 1.452072 2.417554 2.193914 -1.523539 -4.932141 1.120853 1.099591 4.244384 -2.941869 -0.095256 0.344787 2.486682 0.198621 1.979807 -1.771277 2.429113 3.225658 -1.481143 -3.211143 -4.259208 -0.742281 -5.481121 1.257623 -3.722323 -2.123803 1.821094 4.829311 1.942572 1.962779 6.287424 -4.811563 3.431547 0.273072 0.676633 2.128690 0.454362 1.912006 -2.951119 -5.432268 3.466123 2.789654 1.799732 0.948839 -1.051296 0.137848 -3.094764 -3.311127 2.295240 1.670310 -0.393273 5.921512 3.395988 5.230234 -5.192169 0.576792 0.735575 -2.113157 1.437543 -1.206863 -7.073469 2.954264 1.203169 2.021573 6.954010 -0.944552 -2.918861 3.006425 -0.168356 1.265505 -4.273320 3.763111 -5.112529 -1.841569 -3.618334 0.126819 -2.134003 -2.507552 -3.948893 -1.305166 7.335877 -3.570376 -5.909779 4.386033 -1.101439 2.562903 -8.482036 4.546324 -3.202229 4.188977 -0.387572 -0.528116 0.222100 0.603708 -2.325298 -0.310010 3.430287 -3.899406 3.464741 5.910023 1.102608 -0.113058 1.540103 3.190214 -1.238005 0.870564 -4.040575 4.529592 -0.709346 -2.518152 -0.292666 -2.661923 2.706376 -1.367584 -0.076165 3.668337 4.177855 1.008360 1.828008 4.148258 1.958891 -3.327230 3.041293 -0.333624 3.388587 -2.843233 -0.699279 -1.651011 1.422957 0.048000 3.383532 -7.054296 -6.651392 -5.225348 -7.383073 -0.692797 -1.216208 2.226115 0.137386 -0.198771 -7.857877 -4.970780 2.714403 -2.066619 4.605056 4.189597 3.494711 4.864125 4.341497 -2.001675 -0.404562 -0.060782 1.042614 -2.360951 -2.029281 -2.387263 3.334183 -3.382791 3.156305 5.438499 -0.604226 2.607904 -1.778208 4.294643 -3.796647 8.551995 3.864810 -4.270328 2.303654 3.047518 6.823958 -1.300127 -4.173621 -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.335331 -1.268300 1.758780 1.536544 0.052953 1.140024 0.022972 -0.816511 0.595470 0.540028 -0.026406 0.738729 -1.107929 0.329554 -0.327812 0.248811 -0.699339 -0.719913 -0.572712 -0.659761 -0.139742 -0.770445 -0.359610 1.083853 0.403559 0.159378 -0.757179 0.192290 -1.897967 -1.063837 0.534718 -0.089843 0.865769 -0.375331 0.478771 -2.206094 1.161944 1.549223 -0.122066 -1.539287 0.326351 -0.640623 -0.065679 -0.095754 -0.365181 0.488168 0.034365 -0.368489 0.467136 0.175891 -0.170904 0.324891 0.399699 1.575207 -0.539965 1.118224 0.867908 -0.098634 0.289167 0.039549 -0.129832 0.254993 0.525983 0.279142 -0.380508 -0.803767 0.043039 0.045927 -0.977214 0.566492 -0.116783 -0.467484 -0.620555 -0.501347 -1.454953 -0.220508 0.054769 0.671200 1.580789 -0.592199 1.262254 0.050271 0.323370 0.441096 1.210396 0.168869 0.685435 0.424211 -0.614656 0.344642 -0.753139 0.145064 0.054545 0.612499 -1.007741 -0.913327 0.686861 -1.232024 -1.093725 0.894899 -0.055771 -0.466479 -1.029976 -0.772019 0.178380 0.629659 -0.829664 -1.258681 -0.444408 1.134561 0.402561 -0.628238 0.359593 -0.451085 -0.147272 -0.791396 -0.851081 0.151741 0.706127 -0.623901 -0.633249 1.390374 -0.422453 0.430355 -0.137258 0.516457 -0.648072 0.786446 0.103158 0.701177 -0.323437 -0.260389 -1.055182 -0.527202 0.204504 0.817958 -0.514934 -0.215239 -0.259692 0.389288 0.089089 0.533163 -0.166646 0.470336 0.846470 -0.125963 -0.293186 -0.651566 -0.075841 -1.222936 -0.155236 -0.534269 -0.798577 0.592914 0.907750 0.303912 0.389701 1.329171 -0.651738 0.252567 -0.209780 -0.388115 0.629856 -0.249191 0.307756 -0.608456 -1.162182 0.653048 0.367660 0.444562 0.398518 -0.236879 0.054508 -0.324663 -0.074253 0.438693 0.442036 -0.249139 1.382323 0.993324 1.144652 -0.743357 0.109188 0.126998 -0.861151 0.432544 -0.404450 -1.159044 0.207786 0.663387 -0.494617 1.469704 -0.366471 -0.754709 0.868858 -0.238000 0.465244 -0.875102 0.838928 -1.019437 -0.170248 -0.942890 -0.544038 -0.375071 -0.574394 -1.046099 -0.469985 1.421516 -1.128757 -0.943799 0.832971 0.461458 0.342753 -1.658639 0.684601 -0.587072 1.154225 0.182873 0.025540 0.057456 0.713642 -0.586175 0.070701 0.692534 -1.033486 0.684931 1.216149 0.268000 -0.174688 0.117923 0.845196 -0.225169 -0.013584 -1.062384 0.883274 -0.229556 -0.157559 0.034051 -0.548468 0.299202 -0.476166 0.088317 -0.042979 0.690784 0.230335 -0.084760 1.189472 0.225305 -0.088239 0.461740 -0.389904 0.411227 -0.619589 -0.096069 -0.266013 0.871036 0.400109 0.594237 -1.558940 -1.234606 -1.073462 -1.167686 0.094908 0.446930 -0.037418 0.393953 -0.148915 -1.552339 -1.046255 0.892858 -0.533282 1.229615 0.757797 0.694810 0.820306 0.991242 -0.310925 -0.191439 0.081865 0.270284 -0.284620 0.011338 -0.562574 0.921230 -0.704968 0.445092 1.110485 -0.250001 0.786790 0.093596 0.480612 -1.072474 1.773317 0.770065 -0.699616 0.710070 0.957326 1.272924 -0.212645 -0.577196 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference::type&& std::move(int&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator+(long) const = -0.105740 -0.930283 1.757436 1.679953 -0.195331 0.535239 0.247476 -1.105512 1.034016 0.880024 -0.021277 0.533621 -0.999109 0.568810 -0.061669 1.216348 -1.209909 -0.721090 -0.456148 -0.805286 -0.714331 -0.795351 0.469028 0.255322 0.722590 0.414755 -0.884446 -0.207090 -0.667670 -1.533474 0.530608 -0.261239 0.856525 0.053564 0.133165 -2.994824 1.260475 1.032484 -0.432972 -1.303360 0.393958 -0.493244 0.036573 -0.197456 -0.566630 0.322935 -0.100678 0.207197 0.764842 0.559592 0.566236 0.447163 0.813292 2.246216 -0.553476 0.987707 0.594012 -0.074835 -0.319716 0.100138 0.401835 0.392585 0.739744 0.611556 0.035238 -0.965234 -0.388231 -0.380755 -1.274296 0.996354 -0.193129 -0.520021 -1.051725 -0.571942 -0.601463 -0.353988 -1.287638 1.070432 1.719024 -1.154364 0.938201 0.242090 0.127072 -0.027800 0.612697 -0.085154 1.090113 0.444076 -0.367547 0.094003 0.173304 -0.536776 0.415489 0.124845 -0.738105 -1.589117 0.698146 -0.765845 -1.352656 0.739195 0.505835 -0.199444 -1.134593 -0.655135 0.530762 0.579208 -0.749271 -1.242027 -0.626276 0.434731 0.366295 -0.647348 -0.197985 -0.228321 -0.295390 -0.126907 -1.432762 -0.100912 0.244713 -0.685696 -0.447117 0.979901 -0.129687 0.170813 -0.154946 0.385899 -0.392277 1.282980 -0.089765 1.059813 0.132494 0.529493 -0.835216 0.201669 0.602641 0.348739 -0.191503 -0.150540 -0.537105 0.383016 -0.645776 0.553669 -0.100300 0.761280 1.546810 -0.065428 -0.982314 -0.477652 -0.258912 -1.654149 0.364890 -0.999356 -0.122525 0.704251 0.977756 0.406070 0.704803 1.176205 -1.109256 0.530291 -0.170039 -0.077119 0.876846 0.240685 0.590876 -0.595339 -1.071120 0.672741 0.601014 0.401734 0.228462 -0.174609 0.043091 -0.623156 -0.472654 0.623315 0.528509 -0.263566 0.835886 0.672477 2.247162 -0.773462 0.360115 0.562750 -0.323497 0.298896 -0.215043 -1.442732 0.454440 0.201250 0.008811 1.148687 -0.252801 -0.585618 0.539402 -0.351813 0.343127 -0.801563 0.501175 -0.874943 -0.087495 -0.904768 -0.084595 -0.304285 -0.370527 -0.386430 -0.076943 1.511669 -1.216344 -0.744825 1.437189 -0.502733 0.378059 -1.522096 1.829693 -0.593128 0.626198 -0.688029 -0.425265 -0.012833 0.215865 -0.580180 0.204687 0.672310 -0.344283 0.087979 1.698250 0.307455 -0.004637 0.005787 0.984171 -0.040968 0.724349 -0.587928 1.519584 -0.132105 -0.072169 -0.155810 -0.514147 0.118761 -0.569029 0.098056 0.986705 0.720173 0.168130 0.423313 0.703975 0.916852 -0.712479 1.100712 -0.039929 0.584199 -0.658931 -0.063422 0.187930 0.579604 -0.440899 0.719979 -1.300801 -1.216013 -1.365934 -0.834724 -0.365780 0.459332 0.533280 -0.372651 -0.272386 -0.956301 -1.008678 1.270098 -0.584054 0.465022 0.697153 0.581368 0.974909 1.291849 -0.287509 -0.030515 -0.416970 -0.135458 -0.044532 -0.294685 -0.529278 0.929054 -0.684523 0.383522 1.064175 -0.234869 0.557427 -0.020301 0.957672 -0.722368 1.547860 0.504627 -0.283163 0.997987 1.081480 1.231085 -0.134935 -0.752139 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.180866 -0.285402 0.652897 0.593353 -0.028429 0.182790 -0.047684 -0.425778 0.435811 0.361553 0.014434 0.154957 -0.293826 0.201712 0.025709 0.470486 -0.386291 -0.266066 -0.204488 -0.369844 -0.303980 -0.260147 0.134089 -0.013222 0.206987 0.095538 -0.366304 0.072483 -0.218571 -0.696406 0.151578 -0.117801 0.282258 -0.080635 0.068756 -1.038701 0.514610 0.369771 -0.188426 -0.424825 0.101918 -0.156821 0.071414 -0.026110 -0.188699 0.167859 -0.065103 -0.196757 0.298577 0.204575 0.343301 0.177264 0.225554 0.737440 -0.241575 0.330891 0.163384 -0.077523 -0.157785 0.048234 0.140114 0.165020 0.267372 0.213671 -0.008598 -0.400474 -0.116177 -0.103836 -0.461399 0.361954 -0.151245 -0.279984 -0.300069 -0.288580 -0.225952 -0.199148 -0.407801 0.265497 0.595722 -0.360306 0.286120 0.094231 0.071241 0.091587 0.259297 -0.017465 0.469242 0.158405 -0.147584 0.127792 0.295825 -0.133389 0.162958 0.257453 -0.255214 -0.337505 0.268678 -0.287594 -0.439834 0.313882 0.221206 0.023153 -0.595181 -0.263382 0.179236 0.184538 -0.251194 -0.424132 -0.208768 0.155706 0.171179 -0.200809 -0.101849 -0.206411 -0.123819 0.037175 -0.517090 -0.019575 0.056553 -0.198221 -0.249925 0.373659 -0.068717 -0.046552 -0.075136 0.186430 -0.218205 0.486344 -0.093868 0.457356 -0.158548 0.193551 -0.511718 -0.035792 0.194008 0.019427 -0.065580 -0.101082 -0.248664 0.063768 -0.315510 0.228470 -0.110400 0.265612 0.713743 0.015540 -0.348165 -0.142103 -0.163379 -0.691570 0.108767 -0.365846 -0.060501 0.243899 0.349077 0.216172 0.311509 0.520295 -0.363052 0.166700 -0.142570 -0.119223 0.370870 -0.004285 0.234111 -0.206087 -0.338557 0.247700 0.229373 0.129405 0.206085 -0.139868 0.023845 -0.243172 -0.106329 0.323456 0.178181 -0.044745 0.264024 0.247972 0.911681 -0.277796 0.135122 0.233408 -0.075758 0.104023 -0.082667 -0.433068 0.073868 0.117597 -0.020019 0.396975 -0.077748 -0.191946 0.088736 -0.141961 0.180626 -0.292314 0.201450 -0.271453 0.101057 -0.286838 -0.097151 -0.199203 -0.090414 -0.095427 -0.081026 0.520178 -0.418331 -0.307250 0.558523 -0.102566 0.151234 -0.502706 0.514793 -0.232982 0.393646 -0.319710 -0.077728 -0.052644 0.094493 -0.195683 0.156033 0.232545 -0.119250 -0.023860 0.598365 0.143289 0.019909 -0.063968 0.373858 -0.043904 0.307424 -0.169953 0.578076 -0.051634 0.016054 -0.028127 -0.178693 -0.022015 -0.213304 0.023364 0.190575 0.268307 0.001842 0.077247 0.241778 0.343222 -0.258051 0.405548 0.038316 0.201878 -0.228229 -0.032212 0.127459 0.287746 -0.155920 0.129652 -0.435287 -0.337790 -0.490481 -0.296342 -0.142709 0.329431 0.080163 -0.103369 -0.093647 -0.219241 -0.321709 0.669092 -0.201213 0.350595 0.142455 0.202637 0.335526 0.493523 -0.113613 -0.094771 -0.234634 -0.171779 0.005179 -0.072164 -0.225039 0.425726 -0.216887 0.051241 0.334151 -0.127910 0.185073 0.187039 0.215986 -0.235568 0.538457 0.160003 -0.010554 0.429484 0.364522 0.544982 -0.079014 -0.249021 -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.865281 -11.170814 13.446453 12.249121 0.316908 7.007986 4.642990 -5.792592 8.760807 5.076218 -2.016402 6.760131 -8.113529 0.505600 -1.431489 4.537047 -7.019794 -8.370786 -0.937389 -3.934985 -2.583339 -8.133443 -1.200206 7.265782 4.241192 1.970025 -5.666528 -1.879714 -12.873323 -9.040817 4.442516 -1.303848 6.597895 -1.810593 2.858218 -23.376647 8.621537 11.556907 -1.496189 -14.498158 1.906240 -4.651576 -0.590526 -0.557903 -3.094333 3.361460 1.714592 3.796814 2.361372 3.113680 0.428263 2.219667 4.175430 17.798762 -2.228673 10.008980 9.170138 0.774389 -0.012955 0.662053 3.492281 0.580874 5.980616 5.701498 -2.517709 -4.885702 -2.448136 -1.547484 -10.396366 5.108976 2.007223 -4.173225 -7.389294 -2.633076 -8.744999 -2.727223 -3.813698 6.584554 15.683312 -8.029130 13.159208 3.740104 7.598606 -0.119949 7.204866 -0.716524 8.356524 4.205768 -6.350896 0.403865 -9.956037 -3.396970 0.610288 0.996005 -7.495193 -9.783799 5.563092 -8.831205 -12.247816 6.419666 1.273854 -2.298742 -7.197767 -2.791459 5.671088 5.477137 -5.817889 -11.249389 -7.435480 6.135590 -1.289218 -5.876476 0.226804 0.001691 -0.896314 -4.245630 -10.016738 -0.753035 6.495101 -6.165402 -3.274748 9.210927 -5.290078 5.077937 -1.981959 1.335334 -2.018722 6.769507 2.785887 4.204484 3.432757 -3.448731 -9.855608 0.539776 1.256747 8.243168 -4.007141 -1.765071 0.347257 4.532034 0.692580 4.730380 -1.094979 5.098868 7.277773 -1.184698 -5.781469 -7.757887 -1.305739 -9.954663 2.534125 -6.486110 -2.360985 4.444230 8.168409 3.020813 2.939160 10.060127 -8.188152 7.094616 -0.070222 0.561903 3.701945 1.305817 3.461360 -4.999667 -9.249636 5.828653 5.587840 4.475751 1.925130 -2.158566 0.275620 -4.441374 -6.412591 3.004850 3.278188 -0.393594 9.697597 5.907295 12.460394 -9.140580 0.619518 0.713360 -3.327888 2.701638 -2.472124 -11.864445 4.628137 1.988034 1.405220 12.100808 -2.016980 -5.398223 5.528419 -0.479136 2.069044 -7.252836 6.750622 -8.637046 -2.991333 -6.251151 -0.800141 -4.769529 -3.784779 -7.361399 -2.209640 13.124322 -6.760469 -10.359239 7.717678 -2.688424 4.450573 -14.899022 10.905798 -5.044261 7.216865 -2.797744 -2.076828 0.052591 1.984642 -3.456061 0.168599 5.918706 -6.948202 4.528676 11.419244 1.610221 -0.102356 2.364067 5.570131 -1.421923 1.869923 -6.845211 8.746959 -1.462414 -3.552227 -0.825893 -4.460580 5.492158 -1.780568 -0.188775 5.791614 7.634449 1.036621 2.339587 7.889024 2.789105 -5.884794 5.276825 -0.088141 6.424890 -5.110215 -0.730693 -2.946938 3.302842 -0.013431 5.311511 -11.909901 -10.172099 -9.462649 -11.819802 -1.912652 0.484727 3.495219 0.181338 -0.774834 -13.423050 -8.407738 5.277748 -3.701443 6.953703 7.068074 6.139342 9.470286 7.816725 -2.835486 -1.224261 -0.298963 0.312341 -3.875655 -3.353500 -3.969642 5.558255 -6.747761 6.002319 8.768758 -0.546289 4.804199 -1.990529 8.271489 -6.499398 15.340312 6.345539 -7.170684 3.903590 6.287280 12.065455 -3.908372 -7.191694 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.082294 -0.246031 0.510695 0.488137 -0.047618 0.120684 0.014242 -0.276361 0.369542 0.295450 -0.029628 0.074259 -0.276483 0.154065 0.141442 0.400264 -0.342268 -0.208923 -0.091803 -0.231410 -0.205199 -0.232616 0.130523 -0.039239 0.177448 0.171365 -0.218343 0.003549 -0.104077 -0.440528 0.167248 -0.132359 0.231869 0.170539 0.081525 -0.750718 0.372907 0.219179 -0.143299 -0.354668 0.055053 -0.124320 0.121816 -0.073899 -0.043758 0.182643 0.020196 0.004802 0.247364 0.191981 0.211856 0.002641 0.203569 0.493740 -0.185570 0.227877 0.127340 -0.082997 -0.091565 0.008249 0.124448 0.082619 0.211284 0.207205 -0.026001 -0.295701 -0.141665 -0.162536 -0.383548 0.276624 -0.088107 -0.113423 -0.340364 -0.236187 -0.062768 -0.144410 -0.696350 0.285410 0.506761 -0.327810 0.259352 0.132843 0.110696 0.035447 0.179691 0.010198 0.323784 0.119914 -0.163357 0.149706 0.171858 -0.234637 0.136765 0.055276 -0.145948 -0.270614 0.158281 -0.095473 -0.329377 0.251161 0.151518 0.069974 -0.377696 -0.128948 0.139948 0.191616 -0.207747 -0.341545 -0.118207 0.038041 0.121701 -0.133577 -0.095743 -0.094572 -0.153718 -0.029233 -0.419400 -0.058955 0.025342 -0.208105 -0.096031 0.277274 -0.058879 -0.001453 -0.045500 0.082264 -0.142193 0.473408 0.018281 0.343434 -0.007250 0.096038 -0.420362 0.101685 0.204612 0.110912 -0.001006 -0.037017 -0.165546 0.040418 -0.250285 0.119489 0.019310 0.208386 0.560322 -0.032966 -0.290440 -0.130436 -0.130672 -0.505482 0.165139 -0.303704 0.107229 0.196501 0.277097 0.190770 0.259761 0.408460 -0.379639 0.108175 -0.168787 -0.027704 0.263471 0.216618 0.202983 -0.154289 -0.201899 0.173752 0.207378 0.040124 0.192094 -0.160016 0.052015 -0.216368 -0.036747 0.277211 0.137702 -0.095511 0.206139 0.160323 0.612279 -0.141804 0.079184 0.203687 0.004760 0.047508 0.000318 -0.359079 0.179259 0.032551 -0.007944 0.187168 -0.067074 -0.115369 0.077652 -0.145036 0.107132 -0.198260 0.097796 -0.203478 0.032842 -0.250883 0.080677 -0.164719 -0.126816 -0.004232 0.076959 0.406183 -0.175182 -0.120179 0.362496 -0.151500 0.108756 -0.294721 0.512937 -0.197185 0.221318 -0.278301 -0.127600 -0.042682 0.049427 -0.079342 0.007341 0.188371 -0.005930 -0.065190 0.424651 0.130530 -0.042393 0.032929 0.300521 -0.001711 0.220228 -0.069864 0.400471 -0.050980 0.122900 0.016029 -0.136781 0.027761 -0.133262 -0.036365 0.298451 0.220178 0.016371 0.135582 0.102914 0.240186 -0.213049 0.279704 0.037598 0.235852 -0.198088 -0.008569 0.061182 0.193960 -0.157040 0.106386 -0.332303 -0.289133 -0.260274 -0.116655 -0.213745 0.267348 0.089384 -0.063450 -0.031064 -0.145285 -0.226512 0.416502 -0.166738 0.123899 0.058546 0.113409 0.278454 0.379983 -0.081137 -0.152472 -0.141994 -0.116823 -0.005993 0.008157 -0.183652 0.309360 -0.229977 0.021435 0.276249 -0.126416 0.069461 0.065243 0.351575 -0.190909 0.421660 0.139215 -0.024328 0.339729 0.347359 0.437828 -0.023971 -0.196841 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.302412 -0.381753 0.617830 0.563668 0.155930 0.229224 0.284677 -0.364377 0.674355 0.504500 0.046208 0.023195 -0.514362 0.164518 0.103160 0.445541 -0.308723 -0.461588 -0.047865 -0.372323 -0.268161 -0.462403 0.195772 -0.111999 0.203486 -0.216108 -0.293723 -0.187144 -0.507471 -0.375549 0.402145 -0.221125 0.318892 -0.076621 -0.046397 -1.253548 0.458726 0.273995 -0.216582 -0.492301 0.090780 -0.348578 0.254996 -0.054728 0.097620 0.127023 0.072458 0.024373 0.426722 0.180615 0.442250 -0.002288 -0.014757 1.004496 -0.549930 0.374853 0.094662 -0.061890 -0.200998 0.227448 0.125234 0.068616 0.421680 0.396257 -0.215521 -0.321343 -0.069103 -0.240474 -0.684044 0.402956 -0.016799 -0.092617 -0.419871 -0.106836 -0.156883 -0.299492 -0.719319 0.289019 0.791866 -0.420750 0.521906 0.181976 0.344373 0.049596 0.342675 0.006289 0.554732 0.064446 -0.393239 -0.007241 -0.234521 -0.076188 0.001983 0.190093 -0.058398 -0.322025 0.194681 0.098471 -0.548428 0.304128 0.090472 0.196086 -0.760751 -0.069525 0.310307 0.285417 -0.370738 -0.679800 -0.427545 0.137182 -0.028870 -0.187201 0.043303 -0.473256 -0.251060 -0.370815 -0.523051 -0.241633 0.034503 -0.408274 -0.492467 0.518530 -0.404134 0.057997 0.027192 0.168282 -0.205158 0.478847 0.006802 0.406216 0.199924 -0.144229 -1.115531 -0.072289 0.230396 0.615597 0.072111 0.065761 -0.284414 0.050852 -0.402738 0.146272 0.125252 0.351036 0.678995 -0.178333 -0.318318 -0.133200 0.289950 -0.619082 0.285599 -0.442631 0.197475 0.011452 0.440437 0.349831 0.377537 0.757645 -0.508501 0.454998 -0.234615 -0.053407 0.417575 0.173290 0.357211 -0.250891 -0.354851 0.075965 0.380627 0.003384 0.182595 -0.256133 -0.010586 -0.430253 -0.196470 0.023923 0.144032 -0.179308 0.321323 0.206998 0.910897 -0.779826 0.243073 0.307583 0.019229 0.136765 -0.068294 -0.570398 0.266919 0.124151 -0.214391 0.290989 -0.080882 -0.440666 0.074684 -0.174354 0.209770 -0.312242 0.083949 -0.347276 -0.138937 -0.357816 0.020659 -0.299145 -0.288460 -0.040749 0.118790 0.561112 -0.017313 -0.403025 0.521562 -0.214054 0.099120 -0.703648 0.895537 -0.324826 0.173345 -0.550076 -0.088751 -0.196139 0.600481 -0.087589 0.106626 0.262694 -0.213914 0.255994 0.821076 0.205788 0.200990 0.084444 0.484731 0.088302 0.089779 -0.141345 0.597200 -0.108733 -0.043885 0.074130 -0.267627 0.271997 -0.050835 0.011210 0.431173 0.553457 -0.125089 0.257656 0.368692 0.296771 -0.244747 0.343712 0.027923 0.427664 -0.184659 0.065829 0.003764 0.070457 -0.235428 0.222465 -0.523997 -0.498985 0.000000 -0.396067 -0.067000 0.378112 -0.026406 0.018049 0.104642 -0.590730 -0.191965 0.180003 -0.280543 0.287381 0.085102 0.227578 0.390055 0.612672 -0.257166 -0.255874 -0.081897 -0.183863 -0.183764 -0.181377 -0.213857 0.386775 -0.456150 0.245987 0.258253 -0.090132 -0.005521 0.102182 0.485315 -0.290326 0.717877 0.284949 0.047646 0.541118 0.441089 0.957642 -0.038087 -0.253864 -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.129325 -0.912325 1.603252 1.401132 -0.372350 0.555851 0.199342 -0.880846 1.180405 0.071997 -0.179963 0.234070 -0.942894 0.270109 0.144677 0.586236 -1.305168 -0.834523 -0.231963 -0.775931 -0.536407 -0.789983 0.095375 0.424004 0.479100 0.562758 -0.561238 -0.112798 -0.867943 -0.185595 1.005087 -0.328033 0.745418 0.766005 0.399176 -2.867931 0.973284 0.699236 -0.328868 -1.275572 0.114811 -0.786311 0.282901 -0.635740 -0.306472 0.252789 0.072556 0.631996 0.683011 0.151226 -0.084451 0.054093 0.016792 1.990109 -0.610281 0.795913 0.544934 -0.195155 -0.263212 0.145386 0.341069 0.162653 0.753443 0.581060 -0.420909 -0.859447 -0.202552 -0.745532 -1.167988 0.848196 0.212762 -0.229372 -0.946611 -0.515463 -0.775061 -0.511371 -1.380048 1.224719 1.608529 -1.247306 1.035340 0.302595 0.642012 0.091232 0.818305 0.022034 1.284449 0.321590 -0.603830 0.254942 -0.916098 -0.628237 0.237263 -0.433033 -0.496501 -1.300437 0.448625 -0.911084 -1.240811 0.609108 0.382606 0.033496 -1.007806 -0.318979 0.639379 0.556338 -0.718148 -1.128683 -0.435994 0.431146 -0.026833 -0.425014 -0.053268 -0.027523 -0.280096 -0.855117 -1.325058 -0.089859 0.363906 -0.557782 -0.175583 1.149825 -0.683867 0.097020 -0.116279 0.145013 -0.430121 1.418536 -0.001408 0.466510 0.297124 -0.161152 -0.958205 0.217503 0.360588 1.279225 -0.104122 -0.213832 -0.213601 0.347938 -0.663801 0.036578 0.126201 0.579665 0.836807 -0.282337 -0.793971 -0.587680 -0.207457 -1.463478 0.314420 -0.896838 0.016064 0.821824 0.935692 1.118806 0.642333 1.172510 -1.013667 0.663253 -0.374258 0.059624 0.773136 0.701422 0.671333 -0.605231 -0.697531 0.484452 0.198574 0.345902 0.374719 -0.462682 0.055212 -0.841900 -0.574962 0.420960 0.594553 -0.031984 0.912541 0.714785 0.991631 -1.267313 0.332727 0.438506 -0.225704 0.191831 0.023454 -1.166079 0.608086 0.218877 -0.191020 0.840155 -0.293383 -0.527153 0.184378 -0.164493 0.353156 -0.682670 0.056504 -0.760384 -0.256725 -0.917475 0.321397 -0.667585 -0.538960 -0.571796 -0.308837 1.398552 -0.847968 -0.837130 1.283830 -0.416709 0.854476 -1.371791 1.158070 -0.672968 0.895103 -0.641047 -0.347419 -0.145066 0.068129 -0.452818 0.176578 0.610235 -0.394777 0.070652 1.339612 0.405152 0.173280 0.245038 0.970160 -0.094630 0.540106 -0.509328 1.151649 -0.233666 -0.079434 0.152718 -0.510753 0.282063 -0.252893 0.225558 1.246859 0.904708 0.591892 0.646255 0.746559 0.468152 -0.628409 0.485430 -0.111174 0.562641 -0.552554 -0.067467 0.043047 0.520052 -0.282561 0.319982 -1.300469 -1.576641 -1.106079 -0.778557 -0.284855 0.073357 0.141049 -0.029156 -0.049854 -1.087298 -0.692504 0.373348 -0.558174 0.800619 0.425254 0.504727 1.001320 1.259633 -0.642924 -0.415116 0.355933 0.072944 -0.228685 -0.002632 -1.083624 1.010671 -0.802070 0.488526 1.307534 -0.294346 0.332806 -0.063832 1.426883 -0.713262 1.491399 0.551433 -0.760259 0.754197 1.072627 1.132909 0.388706 -0.739051 -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.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter >&&) = -0.028099 -0.475771 1.106408 1.012315 -0.202048 0.276053 0.025612 -0.681921 0.736556 0.329525 -0.030790 0.185599 -0.536236 0.327335 0.124184 0.696518 -0.839830 -0.433640 -0.275363 -0.570200 -0.444471 -0.440843 0.253983 0.052790 0.394685 0.371005 -0.491212 -0.030206 -0.299270 -0.656199 0.498771 -0.214605 0.490433 0.318165 0.182574 -1.795232 0.785261 0.472377 -0.286832 -0.727237 0.150659 -0.326539 0.127195 -0.276224 -0.235389 0.237040 -0.066544 0.173839 0.518143 0.279648 0.234316 0.186274 0.291560 1.226950 -0.414919 0.486047 0.270549 -0.141206 -0.212312 0.060623 0.236917 0.241412 0.433402 0.362492 -0.051308 -0.679822 -0.212508 -0.375209 -0.755533 0.614291 -0.029461 -0.260454 -0.642507 -0.405762 -0.327302 -0.278170 -1.026032 0.711522 1.002173 -0.730692 0.492486 0.162183 0.180898 0.058813 0.396696 -0.000853 0.756584 0.251290 -0.253549 0.187445 -0.001034 -0.420863 0.284062 -0.064361 -0.369066 -0.853843 0.340966 -0.441015 -0.728183 0.435667 0.382504 0.003630 -0.734818 -0.351673 0.338427 0.321130 -0.419003 -0.673637 -0.249474 0.191309 0.183027 -0.299397 -0.145903 -0.134870 -0.215080 -0.197701 -0.890587 -0.022177 0.090751 -0.310004 -0.184569 0.612555 -0.203318 -0.073274 -0.110631 0.200448 -0.335276 0.894440 -0.091151 0.594138 0.052268 0.211453 -0.574930 0.163810 0.366297 0.401144 -0.038632 -0.161364 -0.358032 0.177196 -0.535905 0.200521 0.022527 0.405092 0.893783 -0.086873 -0.593627 -0.262537 -0.222114 -1.037452 0.244271 -0.604080 0.008456 0.475196 0.581417 0.498512 0.519686 0.706313 -0.696925 0.315810 -0.253349 -0.009323 0.591232 0.345817 0.404292 -0.346645 -0.471576 0.359678 0.221609 0.195683 0.265570 -0.234219 0.071478 -0.475086 -0.228055 0.419154 0.334384 -0.122188 0.460833 0.421436 1.101262 -0.507835 0.205777 0.412289 -0.136667 0.120044 -0.003618 -0.737284 0.300094 0.123473 -0.040449 0.564360 -0.163702 -0.296973 0.153836 -0.182374 0.228273 -0.406405 0.134925 -0.440466 -0.023811 -0.549980 0.113738 -0.336624 -0.237208 -0.200532 -0.089648 0.878590 -0.616012 -0.422482 0.906430 -0.334444 0.344431 -0.779359 0.929051 -0.400381 0.460247 -0.470549 -0.230404 -0.066849 0.018622 -0.382236 0.150753 0.380754 -0.139641 -0.073448 0.945991 0.261209 0.000545 -0.003210 0.631841 -0.066122 0.524405 -0.275910 0.894236 -0.133959 0.064091 -0.007030 -0.282125 0.005364 -0.345472 0.083530 0.651211 0.432909 0.262778 0.304647 0.341265 0.521129 -0.440859 0.562851 -0.001900 0.299722 -0.373324 -0.045874 0.200170 0.385268 -0.283426 0.276594 -0.756939 -0.780687 -0.758430 -0.393541 -0.257079 0.300937 0.186286 -0.171259 -0.137251 -0.462433 -0.513255 0.655195 -0.338488 0.352251 0.283481 0.275110 0.571846 0.821213 -0.296693 -0.172007 -0.120510 -0.100565 0.016597 -0.057105 -0.543317 0.715430 -0.418939 0.125883 0.756336 -0.227324 0.257451 0.015598 0.764887 -0.406727 0.903060 0.262738 -0.216863 0.609087 0.690722 0.767502 0.123371 -0.434532 -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 >&) = -1.275615 -4.917154 6.575444 6.068647 -0.005707 3.106756 2.095947 -2.706396 4.599909 2.248042 -0.843670 2.670499 -4.068519 0.716580 -0.288574 2.660221 -3.889949 -3.986845 -0.532120 -2.123552 -1.714347 -4.008936 0.044362 2.600447 2.301602 1.691209 -2.893132 -0.940949 -5.538869 -4.065350 2.971894 -0.799972 3.287734 0.225387 1.137295 -12.482016 4.175778 4.964699 -0.902796 -6.651674 1.029225 -2.357884 -0.038483 -0.794918 -0.878842 1.798678 0.839883 2.287965 1.772637 1.407881 0.188004 0.763086 1.558844 8.777724 -1.972503 4.529203 4.028388 0.066091 -0.396403 0.442443 1.559401 0.378358 2.807105 3.169813 -1.398584 -2.614638 -0.978014 -1.497731 -5.216920 2.969018 0.930134 -1.681560 -3.973056 -1.303194 -3.619688 -1.304549 -3.106201 3.636082 7.663214 -4.047452 6.189720 1.480011 3.623454 -0.304170 3.104586 -0.421926 4.189678 1.810237 -3.128674 -0.123265 -4.634216 -2.092607 0.318484 0.789990 -3.060031 -4.540722 2.446666 -3.479439 -5.629606 2.579731 0.808183 -0.679342 -4.270205 -1.088650 2.813917 2.640699 -2.578481 -5.482449 -3.802790 2.467030 -0.619982 -2.529530 -0.071628 -0.228335 -1.064377 -2.454846 -5.050511 -0.602026 2.485639 -3.006248 -1.873232 4.210750 -2.738090 1.947106 -0.767166 0.867524 -1.134762 3.821006 1.149580 2.144305 2.214956 -1.419078 -5.145540 0.051611 1.152754 5.330429 -1.840632 -1.004519 -0.517986 1.798098 -0.697946 1.468329 -0.474962 2.706849 4.250879 -0.953977 -3.176089 -3.125664 -0.051549 -5.188186 1.413113 -3.501789 -0.413318 2.173108 3.844659 1.750852 1.808984 5.495556 -4.718903 4.028002 -0.285427 0.279345 2.198095 1.603234 1.754047 -2.517865 -4.086668 2.458372 2.213905 1.769617 0.875600 -1.178445 0.111758 -2.626369 -3.203478 2.063661 1.560223 -0.333828 4.136252 2.650620 6.685471 -5.566716 0.563763 0.970327 -1.581510 1.043481 -0.590341 -5.648237 2.751211 0.814300 0.438402 5.453223 -0.890739 -2.821612 2.365673 -0.312951 1.051769 -3.294320 2.917499 -3.951795 -1.448458 -3.199658 -0.266715 -2.088606 -1.851454 -2.903661 -0.646876 6.037079 -2.926994 -5.097466 4.078113 -1.545778 2.325893 -7.431032 5.516847 -2.520414 2.707059 -2.102063 -1.032774 -0.131334 1.021439 -1.595780 0.236147 2.657503 -2.969900 1.783968 6.096588 0.955099 0.024192 1.055132 3.052640 -0.290158 1.219502 -2.687610 4.397391 -0.621806 -1.331299 -0.363533 -2.051690 2.238137 -0.947096 -0.020159 3.481727 3.965254 0.773494 1.633364 3.609228 1.842559 -2.811927 2.646807 -0.089087 3.317902 -2.320404 -0.436893 -0.921874 1.722830 -0.522793 2.587649 -5.560625 -5.541502 -3.699111 -6.021714 -1.216867 0.599326 1.728765 -0.069904 -0.363659 -6.300892 -3.676439 2.290709 -1.799463 3.807691 2.866787 2.644814 4.440736 4.075952 -1.892596 -0.869181 -0.170643 0.283479 -1.587021 -1.381856 -2.374113 2.967906 -3.412411 2.528840 4.445891 -0.585660 1.990948 -1.126531 4.923830 -3.086252 7.503759 2.817407 -3.131310 2.429134 2.980005 6.401318 -0.910106 -3.314281 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::greater::operator()(int const&, int const&) const = -0.856078 -0.779893 1.010653 0.797495 0.326747 0.543498 0.319892 -0.519894 0.764738 0.823757 -0.067783 0.393393 -0.595367 -0.098324 -0.015693 0.347530 -0.248950 -0.756502 -0.065341 -0.573990 -0.224263 -0.565866 -0.195275 0.321221 0.210018 -0.812665 -0.504461 -0.089439 -1.205520 -0.973812 0.094742 -0.186316 0.470556 -0.919955 0.015614 -1.920700 0.701478 0.820416 -0.248695 -0.977668 0.196721 -0.555111 0.164153 0.228469 -0.321705 0.162437 0.191514 -0.615186 0.313729 0.237250 0.605414 0.194187 0.077107 1.704943 -0.417428 0.816804 0.545724 -0.121875 -0.242237 0.416090 0.192189 -0.073754 0.663076 0.369192 -0.319323 -0.391940 0.001102 0.015875 -0.871950 0.387690 -0.221662 -0.649186 -0.187521 -0.232834 -0.858027 -0.540899 0.257535 0.238858 1.108398 -0.588550 1.018165 0.259661 0.556101 0.247096 0.749189 -0.005034 0.908621 0.168441 -0.542269 -0.058513 -0.270579 -0.014700 -0.060378 0.703747 -0.344868 -0.143807 0.542863 -0.622376 -1.015364 0.659916 0.048007 0.029947 -1.336471 -0.325076 0.448990 0.494769 -0.508925 -0.996613 -0.814501 0.643443 -0.168494 -0.422052 0.030202 -0.697630 -0.137517 -0.277773 -0.747999 -0.105648 0.484973 -0.518133 -0.966285 0.966573 -0.619637 0.318040 -0.034462 0.363161 -0.287665 0.489214 -0.055100 0.543263 -0.040381 -0.341075 -1.839475 -0.407276 0.037690 0.360551 -0.158741 0.119709 -0.096114 0.206269 -0.215658 0.593197 -0.210760 0.739404 0.825498 -0.033755 -0.377813 -0.514432 0.156892 -0.937112 0.139679 -0.560455 -0.260817 0.332844 0.682311 0.460982 0.288280 1.163784 -0.394801 0.625097 -0.164423 -0.322816 0.464296 -0.655893 0.470611 -0.476415 -0.714083 0.255180 0.727170 0.256482 0.279776 -0.264216 -0.036219 -0.509670 -0.552684 0.074817 0.272162 0.094854 0.701137 0.549405 1.547965 -1.280054 0.235308 0.074787 -0.212030 0.254531 -0.423730 -0.891500 0.026121 0.411061 -0.183189 0.942041 -0.084742 -0.670483 0.109863 -0.183178 0.311884 -0.585083 0.501830 -0.665743 0.004290 -0.268555 -0.656966 -0.571503 -0.396559 -0.509356 -0.317896 0.985792 -0.473360 -1.081128 0.810515 -0.081528 0.253769 -1.486772 1.064069 -0.493594 0.899016 -0.603528 -0.022364 -0.317703 0.903081 -0.183847 0.387921 0.437211 -0.715694 0.637342 1.176883 0.238115 0.463008 0.057591 0.622547 -0.091561 0.008947 -0.496564 0.827717 -0.214533 -0.363997 -0.054125 -0.412305 0.493913 0.085082 0.100738 -0.007624 0.738168 -0.390932 0.040098 1.034868 0.226253 -0.356768 0.540749 -0.035315 0.709709 -0.307151 -0.044471 -0.203993 0.230545 0.055826 0.177640 -1.008718 -0.566389 -0.708908 -0.980204 0.055712 0.453326 -0.079064 0.119209 0.104126 -1.187607 -0.464166 0.580417 -0.352585 0.760682 0.352888 0.601120 0.746705 0.796235 -0.108827 -0.285257 -0.285156 -0.298082 -0.467121 -0.454861 -0.212480 0.486098 -0.622065 0.608170 0.306111 0.078073 0.281543 0.618827 -0.172303 -0.562597 1.065165 0.533327 -0.210975 0.598884 0.611300 1.094104 -0.668074 -0.503298 -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.297000 -0.838415 1.456042 1.250926 -0.182047 0.517399 0.247890 -0.802894 1.077664 0.314786 -0.113734 0.267402 -0.856007 0.235790 0.067685 0.603466 -1.038059 -0.792140 -0.207577 -0.742368 -0.499246 -0.718794 0.100665 0.307261 0.441305 0.233812 -0.570066 -0.146215 -0.893655 -0.473982 0.781170 -0.303227 0.675554 0.296675 0.246883 -2.665513 0.923366 0.715196 -0.336958 -1.155283 0.169152 -0.694798 0.249048 -0.395336 -0.287332 0.218197 0.079349 0.328346 0.625338 0.209280 0.167298 0.127870 0.077842 1.950451 -0.610377 0.780322 0.500775 -0.166988 -0.292064 0.211002 0.300556 0.131350 0.718015 0.531478 -0.351226 -0.767253 -0.161515 -0.554051 -1.103189 0.744312 0.100472 -0.319622 -0.766543 -0.423657 -0.719264 -0.506539 -1.028330 0.940681 1.476735 -1.052754 0.989169 0.271668 0.561536 0.119891 0.746896 0.018372 1.150978 0.280515 -0.556491 0.145658 -0.650513 -0.419356 0.181395 -0.091850 -0.444873 -1.083722 0.482073 -0.726159 -1.156394 0.603557 0.325961 0.034434 -1.090202 -0.340508 0.573708 0.527586 -0.681535 -1.090460 -0.544230 0.433357 -0.027627 -0.419113 -0.027696 -0.250132 -0.263026 -0.668161 -1.175215 -0.100891 0.331690 -0.544004 -0.408242 1.060478 -0.607259 0.119228 -0.089324 0.238138 -0.407807 1.163476 -0.030475 0.533300 0.198593 -0.119741 -1.160286 0.046516 0.329762 1.024942 -0.109813 -0.155679 -0.265355 0.296098 -0.587196 0.179552 0.047958 0.619042 0.926132 -0.225247 -0.698728 -0.518020 -0.064854 -1.336812 0.286398 -0.816843 -0.036572 0.625713 0.862920 0.878719 0.589646 1.159582 -0.873128 0.666288 -0.320521 -0.042292 0.727817 0.375977 0.623791 -0.557847 -0.702454 0.406379 0.345556 0.318635 0.321441 -0.387191 0.034100 -0.754810 -0.528629 0.325575 0.499042 -0.061877 0.810848 0.647988 1.265369 -1.241276 0.313255 0.395926 -0.225342 0.207371 -0.068576 -1.091077 0.448209 0.262221 -0.209992 0.855507 -0.224541 -0.583750 0.190282 -0.183577 0.335496 -0.645889 0.174439 -0.717156 -0.201021 -0.750593 0.089412 -0.614698 -0.473973 -0.512092 -0.278902 1.273762 -0.766529 -0.858488 1.161094 -0.346181 0.636790 -1.385607 1.210856 -0.621687 0.800801 -0.666051 -0.264249 -0.179756 0.319150 -0.411063 0.243432 0.553769 -0.443777 0.208056 1.345396 0.370107 0.235773 0.155546 0.898684 -0.080828 0.438589 -0.480517 1.104971 -0.222969 -0.153453 0.087369 -0.472173 0.289130 -0.207816 0.197419 0.933121 0.839748 0.316928 0.494100 0.777044 0.480140 -0.560060 0.549762 -0.077553 0.593605 -0.477734 -0.052611 0.026175 0.449108 -0.238685 0.333334 -1.200011 -1.292171 -0.943959 -0.817375 -0.183933 0.235519 0.103268 -0.033306 -0.020390 -1.080910 -0.629785 0.490885 -0.507022 0.761544 0.416456 0.507234 0.904166 1.140756 -0.510882 -0.358828 0.139712 -0.035728 -0.237611 -0.137338 -0.823060 0.880364 -0.744974 0.477562 1.027654 -0.218427 0.306008 0.081385 1.052984 -0.655418 1.385292 0.517696 -0.543230 0.757624 0.949062 1.190959 0.128812 -0.652703 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::front() const = 0.027729 -0.585824 1.129859 1.042642 -0.212888 0.385090 0.075177 -0.774687 0.907705 0.072336 -0.065866 0.126295 -0.719110 0.349002 -0.119239 0.539021 -0.896731 -0.611064 -0.325034 -0.604336 -0.455917 -0.614807 0.261950 0.196609 0.384280 0.415967 -0.513557 -0.009444 -0.663084 -0.244120 0.751057 -0.202817 0.498153 0.461461 0.216155 -1.750329 0.765311 0.558237 -0.258443 -0.834151 0.109694 -0.545096 0.128273 -0.468431 -0.155753 0.169635 -0.133917 0.368808 0.585748 0.115913 0.127798 0.192475 -0.011104 1.316038 -0.576691 0.582531 0.271669 -0.006222 -0.177535 0.122042 0.237914 0.326201 0.489128 0.468977 -0.246469 -0.666996 -0.190032 -0.483012 -0.830269 0.744868 0.014212 -0.151437 -0.750404 -0.371851 -0.540539 -0.280860 -1.021645 0.828951 1.148858 -0.855874 0.585441 0.158178 0.341324 -0.004436 0.515907 -0.049259 0.904950 0.246009 -0.356004 0.134803 -0.524813 -0.284577 0.170089 -0.263355 -0.428466 -0.933880 0.375507 -0.718713 -0.894905 0.347158 0.339733 0.006333 -0.674058 -0.144211 0.395510 0.302788 -0.476527 -0.818514 -0.214731 0.312703 0.191384 -0.321212 -0.020074 -0.093692 -0.188600 -0.540231 -0.975395 -0.113614 0.122692 -0.419375 -0.138658 0.767800 -0.435523 -0.045959 -0.089870 0.117731 -0.315449 0.988787 -0.107583 0.471559 0.121393 0.084988 -0.618379 0.180783 0.317334 0.802320 -0.119482 -0.024520 -0.277989 0.196613 -0.584602 0.014099 -0.037312 0.258436 0.612965 -0.259229 -0.611757 -0.273571 -0.162252 -1.113226 0.210719 -0.666509 -0.056617 0.433280 0.671034 0.822090 0.540045 0.952653 -0.735901 0.376736 -0.177460 0.007396 0.634865 0.425616 0.449261 -0.405381 -0.625086 0.421496 0.077520 0.175341 0.267951 -0.248757 -0.018820 -0.629525 -0.296318 0.351516 0.389390 -0.082887 0.656367 0.474208 0.543108 -0.842812 0.356567 0.431653 -0.146521 0.198775 -0.029225 -0.878781 0.445101 0.131622 -0.032689 0.578647 -0.217185 -0.321616 0.175052 -0.173197 0.357907 -0.552581 0.035016 -0.551402 -0.174213 -0.778798 0.284551 -0.303929 -0.321860 -0.262855 -0.204920 0.959851 -0.612321 -0.529692 1.023184 -0.180100 0.544025 -0.876395 0.665607 -0.446876 0.638070 -0.357753 -0.132405 -0.049042 0.024753 -0.388366 0.090942 0.446208 -0.251907 0.040494 0.986444 0.254429 0.062485 0.116944 0.707647 -0.075662 0.487315 -0.379338 0.922716 -0.073343 -0.142436 0.148466 -0.394097 0.082369 -0.363899 0.146511 0.971356 0.671229 0.473693 0.479336 0.414236 0.517208 -0.457035 0.451402 -0.049152 0.237862 -0.404935 -0.019861 0.169546 0.335017 -0.327521 0.274952 -0.860832 -1.176490 -0.773963 -0.594550 -0.106362 -0.095828 0.123179 -0.119829 -0.125448 -0.643475 -0.580553 0.371428 -0.433759 0.649034 0.292793 0.354827 0.629574 0.971416 -0.558762 -0.110040 0.184799 0.058628 -0.076740 -0.052994 -0.731005 0.781178 -0.472442 0.230641 0.953812 -0.252199 0.297283 -0.046979 0.923610 -0.464710 1.066889 0.358754 -0.386046 0.673259 0.677341 0.893007 0.441243 -0.513960 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() const = 0.384725 -0.607427 1.697646 1.522725 -0.308722 0.379924 -0.094536 -1.204167 0.942973 0.560842 -0.175344 0.447422 -0.645586 0.616692 -0.508755 1.196945 -1.214214 -0.513408 -0.578376 -0.841362 -0.665188 -0.522874 0.481554 0.063552 0.733342 0.612777 -0.792484 0.081571 -0.400622 -1.524430 0.367058 -0.196497 0.486226 -0.063351 0.238792 -1.760008 1.283227 0.932136 -0.443634 -1.030807 0.351792 -0.323002 -0.227173 -0.248437 -0.332741 0.309143 -0.289008 0.418816 0.680743 0.585839 0.460677 0.633147 0.803365 1.735190 -0.451676 0.832033 0.508656 0.094524 -0.138668 0.177591 0.369975 0.547241 0.323779 0.407419 0.300541 -1.031606 -0.468567 -0.250229 -0.683536 0.953029 -0.336719 -0.588314 -0.957355 -0.610279 -0.629281 -0.123901 -1.835990 0.998782 1.360911 -1.053305 0.475448 0.199416 0.010988 -0.007236 0.391959 -0.111179 0.935158 0.504609 -0.106321 0.119823 0.374508 -0.422672 0.545311 -0.331496 -0.855389 -1.737178 0.732396 -1.271029 -1.123045 0.566846 0.701614 -0.343812 -0.375458 -0.454949 0.320846 0.246839 -0.541057 -0.821328 -0.044571 0.336057 0.555644 -0.495891 -0.115503 -0.117194 -0.026867 0.307405 -1.333580 0.137824 0.112938 -0.345612 -0.103377 0.732494 0.294182 -0.152500 -0.235858 0.305819 -0.345510 1.118094 -0.235650 1.098257 -0.282203 1.016126 -0.374052 0.756872 0.664225 -0.467176 -0.278937 0.187275 -0.459039 0.354573 -0.672709 0.496949 -0.561403 0.437766 0.984590 -0.141392 -0.942742 -0.356355 -0.638351 -1.331321 0.270750 -0.764741 -0.648963 0.364588 0.812173 0.599962 0.723020 0.701580 -0.915756 0.009282 -0.082342 0.094662 0.798013 -0.005820 0.460999 -0.467607 -0.875672 0.701266 0.340485 0.241379 0.241047 -0.056897 0.113112 -0.608609 0.017210 0.777185 0.505412 -0.312227 0.803569 0.662438 1.259370 -0.297885 0.265027 0.606111 -0.387089 0.202330 -0.140284 -1.188872 0.381236 0.186551 0.583007 0.959545 -0.160160 -0.070143 0.426615 -0.333900 0.346948 -0.600349 0.238233 -0.675916 -0.192721 -0.692842 0.375975 -0.160993 -0.123317 -0.250885 -0.345308 1.207226 -1.385429 -0.327243 1.423378 -0.396330 0.265300 -0.797835 1.144528 -0.496623 0.634514 -0.118136 -0.138534 0.098290 -0.229512 -0.784028 0.144881 0.564632 -0.179963 -0.024267 1.190646 0.274071 -0.119573 -0.087745 0.864611 -0.454292 0.897250 -0.533426 1.302420 -0.101055 -0.183353 -0.144867 -0.364175 -0.310938 -0.807121 0.211214 0.908782 0.261750 0.438732 0.318293 0.306560 1.009508 -0.688813 1.105728 -0.087071 0.090131 -0.677714 -0.153623 0.436164 0.369672 -0.434507 0.526691 -1.117982 -0.979156 -1.712222 -0.456887 -0.205581 -0.161029 0.491174 -0.545640 -0.437626 -0.509059 -1.113233 1.469569 -0.461378 -0.051417 0.693526 0.432745 0.706365 1.101063 -0.226096 0.291604 -0.503804 -0.037528 0.222469 -0.283083 -0.521629 1.014448 -0.382280 0.010257 1.156499 -0.313938 0.603607 0.081295 0.540510 -0.566947 1.088086 0.321181 -0.256730 0.775367 1.060093 0.937226 0.108889 -0.673299 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.180866 -0.285402 0.652897 0.593353 -0.028429 0.182790 -0.047684 -0.425778 0.435811 0.361553 0.014434 0.154957 -0.293826 0.201712 0.025709 0.470486 -0.386291 -0.266066 -0.204488 -0.369844 -0.303980 -0.260147 0.134089 -0.013222 0.206987 0.095538 -0.366304 0.072483 -0.218571 -0.696406 0.151578 -0.117801 0.282258 -0.080635 0.068756 -1.038701 0.514610 0.369771 -0.188426 -0.424825 0.101918 -0.156821 0.071414 -0.026110 -0.188699 0.167859 -0.065103 -0.196757 0.298577 0.204575 0.343301 0.177264 0.225554 0.737440 -0.241575 0.330891 0.163384 -0.077523 -0.157785 0.048234 0.140114 0.165020 0.267372 0.213671 -0.008598 -0.400474 -0.116177 -0.103836 -0.461399 0.361954 -0.151245 -0.279984 -0.300069 -0.288580 -0.225952 -0.199148 -0.407801 0.265497 0.595722 -0.360306 0.286120 0.094231 0.071241 0.091587 0.259297 -0.017465 0.469242 0.158405 -0.147584 0.127792 0.295825 -0.133389 0.162958 0.257453 -0.255214 -0.337505 0.268678 -0.287594 -0.439834 0.313882 0.221206 0.023153 -0.595181 -0.263382 0.179236 0.184538 -0.251194 -0.424132 -0.208768 0.155706 0.171179 -0.200809 -0.101849 -0.206411 -0.123819 0.037175 -0.517090 -0.019575 0.056553 -0.198221 -0.249925 0.373659 -0.068717 -0.046552 -0.075136 0.186430 -0.218205 0.486344 -0.093868 0.457356 -0.158548 0.193551 -0.511718 -0.035792 0.194008 0.019427 -0.065580 -0.101082 -0.248664 0.063768 -0.315510 0.228470 -0.110400 0.265612 0.713743 0.015540 -0.348165 -0.142103 -0.163379 -0.691570 0.108767 -0.365846 -0.060501 0.243899 0.349077 0.216172 0.311509 0.520295 -0.363052 0.166700 -0.142570 -0.119223 0.370870 -0.004285 0.234111 -0.206087 -0.338557 0.247700 0.229373 0.129405 0.206085 -0.139868 0.023845 -0.243172 -0.106329 0.323456 0.178181 -0.044745 0.264024 0.247972 0.911681 -0.277796 0.135122 0.233408 -0.075758 0.104023 -0.082667 -0.433068 0.073868 0.117597 -0.020019 0.396975 -0.077748 -0.191946 0.088736 -0.141961 0.180626 -0.292314 0.201450 -0.271453 0.101057 -0.286838 -0.097151 -0.199203 -0.090414 -0.095427 -0.081026 0.520178 -0.418331 -0.307250 0.558523 -0.102566 0.151234 -0.502706 0.514793 -0.232982 0.393646 -0.319710 -0.077728 -0.052644 0.094493 -0.195683 0.156033 0.232545 -0.119250 -0.023860 0.598365 0.143289 0.019909 -0.063968 0.373858 -0.043904 0.307424 -0.169953 0.578076 -0.051634 0.016054 -0.028127 -0.178693 -0.022015 -0.213304 0.023364 0.190575 0.268307 0.001842 0.077247 0.241778 0.343222 -0.258051 0.405548 0.038316 0.201878 -0.228229 -0.032212 0.127459 0.287746 -0.155920 0.129652 -0.435287 -0.337790 -0.490481 -0.296342 -0.142709 0.329431 0.080163 -0.103369 -0.093647 -0.219241 -0.321709 0.669092 -0.201213 0.350595 0.142455 0.202637 0.335526 0.493523 -0.113613 -0.094771 -0.234634 -0.171779 0.005179 -0.072164 -0.225039 0.425726 -0.216887 0.051241 0.334151 -0.127910 0.185073 0.187039 0.215986 -0.235568 0.538457 0.160003 -0.010554 0.429484 0.364522 0.544982 -0.079014 -0.249021 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.302412 -0.381753 0.617830 0.563668 0.155930 0.229224 0.284677 -0.364377 0.674355 0.504500 0.046208 0.023195 -0.514362 0.164518 0.103160 0.445541 -0.308723 -0.461588 -0.047865 -0.372323 -0.268161 -0.462403 0.195772 -0.111999 0.203486 -0.216108 -0.293723 -0.187144 -0.507471 -0.375549 0.402145 -0.221125 0.318892 -0.076621 -0.046397 -1.253548 0.458726 0.273995 -0.216582 -0.492301 0.090780 -0.348578 0.254996 -0.054728 0.097620 0.127023 0.072458 0.024373 0.426722 0.180615 0.442250 -0.002288 -0.014757 1.004496 -0.549930 0.374853 0.094662 -0.061890 -0.200998 0.227448 0.125234 0.068616 0.421680 0.396257 -0.215521 -0.321343 -0.069103 -0.240474 -0.684044 0.402956 -0.016799 -0.092617 -0.419871 -0.106836 -0.156883 -0.299492 -0.719319 0.289019 0.791866 -0.420750 0.521906 0.181976 0.344373 0.049596 0.342675 0.006289 0.554732 0.064446 -0.393239 -0.007241 -0.234521 -0.076188 0.001983 0.190093 -0.058398 -0.322025 0.194681 0.098471 -0.548428 0.304128 0.090472 0.196086 -0.760751 -0.069525 0.310307 0.285417 -0.370738 -0.679800 -0.427545 0.137182 -0.028870 -0.187201 0.043303 -0.473256 -0.251060 -0.370815 -0.523051 -0.241633 0.034503 -0.408274 -0.492467 0.518530 -0.404134 0.057997 0.027192 0.168282 -0.205158 0.478847 0.006802 0.406216 0.199924 -0.144229 -1.115531 -0.072289 0.230396 0.615597 0.072111 0.065761 -0.284414 0.050852 -0.402738 0.146272 0.125252 0.351036 0.678995 -0.178333 -0.318318 -0.133200 0.289950 -0.619082 0.285599 -0.442631 0.197475 0.011452 0.440437 0.349831 0.377537 0.757645 -0.508501 0.454998 -0.234615 -0.053407 0.417575 0.173290 0.357211 -0.250891 -0.354851 0.075965 0.380627 0.003384 0.182595 -0.256133 -0.010586 -0.430253 -0.196470 0.023923 0.144032 -0.179308 0.321323 0.206998 0.910897 -0.779826 0.243073 0.307583 0.019229 0.136765 -0.068294 -0.570398 0.266919 0.124151 -0.214391 0.290989 -0.080882 -0.440666 0.074684 -0.174354 0.209770 -0.312242 0.083949 -0.347276 -0.138937 -0.357816 0.020659 -0.299145 -0.288460 -0.040749 0.118790 0.561112 -0.017313 -0.403025 0.521562 -0.214054 0.099120 -0.703648 0.895537 -0.324826 0.173345 -0.550076 -0.088751 -0.196139 0.600481 -0.087589 0.106626 0.262694 -0.213914 0.255994 0.821076 0.205788 0.200990 0.084444 0.484731 0.088302 0.089779 -0.141345 0.597200 -0.108733 -0.043885 0.074130 -0.267627 0.271997 -0.050835 0.011210 0.431173 0.553457 -0.125089 0.257656 0.368692 0.296771 -0.244747 0.343712 0.027923 0.427664 -0.184659 0.065829 0.003764 0.070457 -0.235428 0.222465 -0.523997 -0.498985 0.000000 -0.396067 -0.067000 0.378112 -0.026406 0.018049 0.104642 -0.590730 -0.191965 0.180003 -0.280543 0.287381 0.085102 0.227578 0.390055 0.612672 -0.257166 -0.255874 -0.081897 -0.183863 -0.183764 -0.181377 -0.213857 0.386775 -0.456150 0.245987 0.258253 -0.090132 -0.005521 0.102182 0.485315 -0.290326 0.717877 0.284949 0.047646 0.541118 0.441089 0.957642 -0.038087 -0.253864 -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.547248 -2.577464 5.481165 4.756549 -0.770748 1.494841 0.466574 -3.440685 2.914286 0.291892 -1.158743 1.694107 -2.813698 1.677351 -2.697799 2.632198 -4.087059 -2.563429 -1.459055 -1.975627 -1.235223 -2.057703 1.716468 1.294349 2.497471 2.231668 -2.413498 -0.291635 -3.347478 -2.817756 2.182834 -0.651636 1.832439 0.712247 0.495505 -4.937142 3.649604 3.348089 -1.159472 -3.917659 1.459857 -1.791868 -1.207105 -1.796350 -0.749416 0.765229 -0.542065 2.557237 1.867885 1.326837 0.040195 1.701249 1.449574 5.115667 -1.649543 2.877422 2.206517 0.771034 0.013006 0.417959 1.134774 1.568181 1.248561 1.743231 0.005909 -2.968635 -1.303097 -1.369269 -2.445441 3.022794 -0.523258 -0.566764 -3.109420 -1.002834 -2.925806 0.167945 -3.313160 3.569668 4.816098 -3.338441 2.344953 0.476027 0.808063 -0.696840 1.180494 -0.145520 2.388425 1.725919 -0.577433 -0.675557 -2.424637 -0.950488 0.922375 -1.755987 -2.649768 -5.350315 2.422078 -5.060070 -3.925162 1.052753 1.701467 -1.578106 -0.282019 -0.209657 1.165348 1.245335 -1.624280 -2.805636 0.081668 1.322839 1.187623 -1.651245 0.127372 0.354358 -0.262836 -0.626330 -4.274109 0.231153 0.650363 -1.653538 0.289251 2.536824 -0.268966 0.161649 -0.700531 0.639572 -0.933123 3.237150 -0.298810 2.348684 0.548988 1.914443 -0.381057 2.137355 2.009798 1.054830 -1.770391 0.931774 -0.929323 1.313195 -1.550604 0.258020 -1.701189 0.778778 1.351407 -1.566963 -2.900829 -1.587189 -1.501003 -3.988711 0.523252 -2.445826 -2.142557 1.311051 2.851515 2.209830 2.220589 3.496584 -2.934734 0.537642 0.409800 0.431851 2.211681 0.150038 1.434654 -1.636431 -3.307272 2.437759 0.481689 0.758419 0.373180 0.108064 0.191368 -2.660587 -0.786197 1.972434 1.669607 -0.765744 3.174061 2.154532 0.679404 -1.930263 0.912176 1.828977 -1.345838 0.590861 -0.257571 -4.357762 1.936989 0.450632 2.009305 3.305622 -0.399927 -0.910921 1.795214 -0.709177 1.084331 -2.270806 0.688244 -2.567904 -1.204729 -2.832946 1.489717 -0.148738 -1.059671 -1.392470 -1.398592 4.131476 -3.731175 -1.949190 3.898717 -0.562036 1.594277 -3.684420 2.227158 -1.867389 2.589809 0.826135 -0.072296 0.558959 -1.175768 -2.688519 -0.299364 1.945776 -1.052418 1.045586 3.490709 0.988863 -0.398828 0.328553 2.648352 -1.304593 2.423575 -2.038811 3.284033 -0.271100 -1.815050 0.132676 -1.356010 -0.390986 -2.355077 0.777484 3.906488 1.530905 2.387701 2.213521 1.309703 3.181034 -2.249392 2.567883 -0.558468 0.744079 -1.904371 -0.611013 0.708068 0.974607 -1.146767 2.282292 -4.021320 -5.170320 -5.028370 -3.255140 0.083970 -2.726011 1.685661 -1.432375 -0.985597 -3.082106 -3.565405 2.147632 -1.535231 1.692682 2.819947 1.494376 2.343618 3.318295 -1.963328 0.985491 0.046412 1.474526 0.100643 -0.926750 -2.409887 2.903080 -1.456282 0.558543 4.593685 -1.139956 1.857592 -0.994393 2.526709 -2.061954 4.436226 1.610124 -2.230743 2.287217 2.399962 2.895153 1.432815 -2.449013 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::pop_back() = 0.553606 -1.145427 3.396170 3.005847 -0.116630 1.107936 -0.097202 -2.915940 2.457075 1.884530 -0.015885 0.749272 -1.147073 1.221348 -1.251348 2.454379 -2.034206 -1.148730 -1.345126 -2.299628 -1.759471 -1.275062 0.544370 -0.201125 1.217274 -0.042977 -1.741500 0.293309 -1.227518 -3.437446 0.754965 -0.244081 0.658443 -1.672534 0.524168 -4.149648 2.882786 1.992712 -0.987364 -2.103622 0.434230 -0.844108 -0.523716 0.103741 -0.250168 0.404158 -0.852499 0.747755 1.501678 1.116417 1.656119 1.788837 1.190313 4.812008 -1.398926 2.053458 0.919551 0.406257 -0.351169 1.311993 0.656141 1.298087 0.750784 0.890031 0.619520 -2.012842 -0.557256 -0.078749 -1.308430 2.165921 -0.414213 -2.032839 -1.667527 -1.206306 -1.555381 -0.578945 -4.261686 1.733378 2.843957 -2.173685 1.000723 0.556421 0.461142 0.409942 1.428162 -0.542652 2.933092 0.884180 -0.563884 0.071667 0.390514 -0.493303 1.014084 -0.588827 -1.857238 -3.893721 1.459528 -2.530346 -2.553128 1.455992 1.379229 -0.505795 -1.523144 -1.218112 1.106460 0.055595 -1.206806 -2.058228 -0.816654 1.279444 0.615083 -1.104448 0.227576 -1.341192 0.296289 0.674104 -2.662333 0.175667 0.485300 -0.514991 -1.406882 1.988238 0.371421 -0.548326 -0.465679 0.729755 -0.785462 1.677392 -0.877741 2.499046 -0.803012 2.070536 -2.470874 1.666447 1.156843 -1.381262 -0.111481 0.811308 -1.003004 0.910234 -1.713297 1.853474 -1.572947 1.243354 1.912463 -0.113274 -1.814480 -0.721000 -0.395274 -2.352322 0.716059 -1.499607 -2.035613 -0.298536 1.832653 1.784127 1.447260 0.909690 -1.813682 0.514520 -0.363402 0.500081 1.734078 -0.894072 0.965369 -1.048687 -1.997589 1.068087 1.108700 0.349722 0.476524 -0.378398 0.045137 -1.217098 -0.108943 0.903730 0.935441 -0.735407 1.876470 1.587815 3.763707 -2.057681 0.891706 1.193157 -1.031199 0.680737 -0.755779 -2.432084 0.402563 0.812291 1.222386 2.501705 -0.401986 -0.413483 0.511038 -0.498430 0.935229 -1.117665 0.340830 -1.521273 -0.926904 -1.079572 0.657893 -0.740285 -0.140814 -0.684365 -1.061773 2.467724 -2.998476 -1.249049 3.646388 -1.307120 0.114914 -1.978343 2.773622 -0.993420 0.780640 -0.654498 0.038089 -0.286760 0.920770 -1.848002 1.121920 1.188485 -1.125286 0.568955 3.085928 0.459765 0.585686 -0.354198 1.864339 -1.211451 1.267026 -1.528478 3.241836 -0.392298 -0.663703 -0.651019 -0.946691 -0.203800 -1.577854 0.694923 1.237629 0.716935 0.353746 0.058607 1.275020 1.801305 -1.330543 2.604206 -0.192302 -0.300939 -1.426060 -0.131486 0.949139 -0.068258 -0.896629 0.957450 -2.451020 -1.280248 -3.454588 -0.920639 0.082697 0.062341 0.523394 -0.919940 -0.900015 -1.681311 -2.263351 3.214237 -1.037579 -0.900403 1.498186 1.201969 1.442723 2.647005 -0.312115 0.872114 -1.425965 -0.842505 0.068299 -1.368675 -0.710972 2.414603 -0.728923 0.539834 1.922471 -0.210957 1.395204 0.730973 0.491468 -1.126844 2.136767 0.776943 -0.027171 1.278454 2.603963 2.972370 -0.303850 -1.369664 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator--() = -0.080821 -0.322872 0.609857 0.621246 -0.058832 0.197186 0.066649 -0.387218 0.509839 0.427664 -0.005708 0.053159 -0.383624 0.191826 0.231569 0.499713 -0.432411 -0.254460 -0.110022 -0.311085 -0.277216 -0.353122 0.138728 -0.033885 0.196379 0.169868 -0.248524 -0.021017 -0.122625 -0.502431 0.259374 -0.152706 0.293911 0.234205 0.114691 -1.058343 0.473914 0.261396 -0.171799 -0.463974 0.033799 -0.194378 0.162142 -0.069376 -0.031158 0.211300 0.004494 0.109941 0.331274 0.215004 0.270549 -0.003926 0.246361 0.725302 -0.269360 0.322908 0.142272 -0.087916 -0.114347 0.078417 0.146471 0.123493 0.303777 0.298540 -0.053976 -0.340582 -0.148665 -0.199046 -0.524009 0.383584 -0.057083 -0.167032 -0.468484 -0.282653 -0.059302 -0.198136 -1.015522 0.407253 0.669002 -0.442371 0.358150 0.188165 0.162681 0.033779 0.293629 -0.025603 0.509979 0.126320 -0.259349 0.181069 0.113155 -0.350026 0.178254 -0.023565 -0.179801 -0.430033 0.148373 -0.069171 -0.456436 0.331360 0.161240 0.099610 -0.517322 -0.189095 0.242474 0.216295 -0.280507 -0.500205 -0.215561 0.100588 0.080757 -0.191115 -0.100806 -0.143294 -0.179814 -0.095238 -0.526753 -0.121394 0.060084 -0.282306 -0.169723 0.397763 -0.102039 0.015745 -0.039888 0.073459 -0.154950 0.579615 0.005267 0.426853 0.082904 0.092836 -0.580566 0.185581 0.241899 0.175600 0.078910 -0.023426 -0.187925 0.088713 -0.339572 0.204086 0.063892 0.297451 0.680685 -0.017694 -0.347105 -0.161496 -0.067256 -0.608357 0.255297 -0.394083 0.147097 0.198224 0.374262 0.268366 0.312003 0.425828 -0.524834 0.191322 -0.231994 0.039989 0.335650 0.323647 0.260084 -0.206072 -0.281692 0.186005 0.288059 0.036214 0.209122 -0.224681 0.033252 -0.251816 -0.096225 0.272630 0.168374 -0.132667 0.290969 0.211649 0.883618 -0.288129 0.156289 0.247378 -0.001203 0.095688 -0.034039 -0.488926 0.252535 0.053964 -0.027359 0.261168 -0.121565 -0.172517 0.079013 -0.162110 0.139331 -0.254942 0.092779 -0.289122 -0.030567 -0.334022 0.124102 -0.214022 -0.200543 -0.019453 0.143151 0.525366 -0.205420 -0.168584 0.528403 -0.299736 0.121565 -0.399950 0.764239 -0.243642 0.157773 -0.416854 -0.199766 -0.082993 0.158887 -0.091524 0.036252 0.248837 -0.049197 -0.040812 0.597924 0.147367 0.002472 0.072889 0.382407 0.023238 0.199245 -0.140024 0.562911 -0.070923 0.188594 -0.005481 -0.209670 0.122177 -0.146821 -0.039576 0.425586 0.331439 -0.008246 0.156446 0.179513 0.244896 -0.254790 0.376208 0.034781 0.255670 -0.256264 0.023541 0.052704 0.152020 -0.213415 0.167274 -0.441454 -0.345888 -0.289781 -0.102072 -0.273996 0.363561 0.126218 -0.045010 -0.019808 -0.267275 -0.280829 0.461615 -0.238164 0.020260 0.078307 0.176806 0.364457 0.531815 -0.077859 -0.174365 -0.170557 -0.187230 -0.070500 -0.033886 -0.204678 0.399088 -0.304048 0.123877 0.318604 -0.108849 0.087132 0.028434 0.511078 -0.248352 0.528325 0.199574 -0.001539 0.393966 0.493791 0.588413 -0.041325 -0.254952 -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.473220 -4.651191 6.993159 5.986294 -0.599916 2.993774 1.413531 -3.753925 4.627035 0.951443 -1.015340 2.458709 -4.055122 1.145670 -2.060001 2.292608 -4.607813 -4.058132 -1.175431 -2.791169 -1.926164 -3.633252 0.201888 2.765354 2.274558 1.596556 -3.003046 -0.522737 -5.854849 -2.895109 3.231242 -0.900375 2.894257 -0.089444 1.271792 -10.980602 4.393166 4.806857 -1.189105 -6.283069 1.056303 -3.029499 -0.262423 -1.672488 -1.452421 0.934406 0.156092 2.555651 2.082007 0.996528 -0.013034 1.541141 0.884930 9.216505 -2.184921 4.438980 3.588835 0.471325 -0.384164 0.764614 1.538746 0.951453 2.694690 2.603449 -1.281707 -3.167527 -1.014085 -1.742889 -4.492564 3.399483 0.574279 -1.480731 -3.686963 -1.456946 -4.707528 -1.345514 -3.215355 4.146171 7.364803 -4.668491 5.120612 1.243782 3.058147 0.167878 3.372858 -0.187718 4.688091 1.921357 -2.510834 0.002943 -4.685704 -0.958555 0.530226 -0.871341 -3.334374 -6.334587 2.888009 -5.624746 -5.890243 2.580014 1.257972 -1.038160 -2.963865 -1.181933 2.581809 2.188748 -3.100990 -5.125359 -2.381119 2.736481 0.075535 -2.411607 0.666343 -0.285560 -0.321137 -2.658315 -5.417976 -0.199304 2.289686 -2.672048 -1.196738 4.795426 -2.292444 1.328694 -0.777118 0.817771 -1.394095 4.322376 0.347201 2.161487 0.714784 -0.185391 -3.903489 0.819543 1.280908 4.075735 -1.848996 -0.209607 -0.461291 1.996134 -1.254413 1.015844 -1.145052 1.977381 2.664561 -1.329214 -3.249973 -3.110233 -0.759006 -5.539262 0.815513 -3.428412 -2.056680 2.220139 4.125560 3.384923 2.220829 5.117134 -3.840606 2.842341 -0.236185 0.200217 2.663929 0.575482 2.187527 -2.543987 -4.429785 2.708706 1.483798 1.882807 0.938440 -1.119405 0.029438 -3.122007 -2.416329 1.590792 2.341372 -0.361281 4.725424 3.174158 3.888110 -5.313119 1.098355 1.280254 -1.774056 1.221826 -0.850616 -5.729654 2.306255 1.202229 0.557422 5.143368 -0.973090 -2.409437 2.160665 -0.506243 1.570185 -3.445358 1.647615 -3.891895 -1.780841 -3.683053 0.796908 -2.062402 -1.758387 -3.246568 -2.145265 6.206419 -4.732636 -4.368476 5.009199 -0.786019 2.880024 -6.694439 4.180492 -2.651841 4.154747 -0.888318 -0.540125 -0.017553 0.606849 -2.446474 0.550630 2.852907 -2.918748 1.829380 5.667825 1.229248 0.568962 0.947400 3.641009 -1.072353 1.697642 -3.168887 4.619577 -0.720168 -2.278304 0.204621 -2.275658 1.465127 -1.504832 1.029617 4.148311 3.603468 1.986214 2.169658 3.679729 2.289353 -2.791091 2.457158 -0.602528 2.214712 -2.576018 -0.411879 -0.459409 1.748958 -0.708986 2.299870 -5.942831 -6.457052 -5.825132 -5.125334 -0.182519 -1.209357 1.104089 -0.443440 -0.575411 -5.931606 -4.060277 2.492394 -2.250884 3.650884 3.330281 2.738567 4.265963 4.755278 -2.468371 -0.295563 0.801555 0.791091 -1.228227 -1.151500 -3.360068 3.645136 -3.126721 2.399802 5.357912 -0.875097 2.308551 -0.390506 4.166758 -3.159368 7.111895 2.875707 -3.554680 2.593190 3.725749 5.604803 0.466511 -3.454756 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::push_back(int const&) = 1.949253 -4.477937 11.246279 10.041136 -0.721560 3.799772 0.118610 -9.018994 7.025806 4.295973 -0.583617 3.167481 -4.548217 3.645332 -4.485763 6.900575 -7.023146 -4.279875 -4.233042 -6.537154 -4.584459 -4.145116 2.249439 1.113386 4.448105 1.331686 -5.710113 0.355382 -5.563971 -9.798620 3.077776 -0.632088 3.153991 -3.301585 1.352335 -13.242243 8.938902 7.407966 -2.806314 -7.496713 2.189764 -3.082302 -2.402605 -0.663633 -1.707171 1.382316 -2.566032 2.561921 4.403966 3.209403 3.627195 5.551083 3.674073 13.862798 -3.923950 6.785434 3.626205 1.332128 -0.943378 3.019587 2.105463 4.146811 2.880920 2.913678 1.212253 -6.574010 -1.821068 -0.720823 -4.996941 6.687679 -1.098613 -5.397591 -5.326957 -3.311814 -5.629239 -1.137886 -8.668869 5.987166 9.375191 -6.660582 4.050641 1.203279 0.963027 0.108573 4.148846 -1.496973 8.056594 3.161730 -1.344927 -0.631642 -1.130115 -1.702336 2.799403 -1.461800 -6.377827 -11.570460 5.082472 -9.095003 -8.508790 3.792615 4.209499 -2.722661 -4.474039 -3.166340 3.193381 1.068854 -3.572766 -6.498555 -2.132946 4.288957 2.073958 -3.989195 0.041638 -2.570681 0.378815 1.009696 -8.669951 0.738449 1.817218 -2.178960 -3.307447 6.124959 0.350962 -0.997557 -1.627148 2.351240 -2.482749 5.420181 -2.486764 6.940156 -0.986143 5.556762 -4.946548 4.095237 3.532537 -1.959741 -1.788939 1.684978 -2.905530 3.029279 -4.468873 4.651743 -4.628899 3.471417 5.521387 -0.942853 -5.751325 -2.596720 -1.741929 -8.168082 1.564620 -4.986077 -5.997738 0.624828 6.006357 4.761085 4.425914 4.712121 -5.719381 1.803194 -0.046764 1.052081 5.425645 -2.275644 2.953319 -3.583791 -7.106252 4.286475 2.620750 1.678040 1.017588 -0.186694 0.000553 -4.251903 -1.653836 3.218447 2.904997 -1.694449 6.384167 5.179352 9.767711 -5.942122 2.667640 3.548759 -3.634394 2.169348 -2.035570 -8.448187 1.634392 2.244874 3.760588 8.840441 -1.258344 -1.937192 2.482148 -1.277719 2.717146 -4.376863 2.108816 -5.442975 -2.346683 -4.382890 1.109646 -1.539321 -1.132519 -3.036180 -3.526252 8.517025 -9.196725 -5.108527 10.812137 -3.114497 1.426672 -7.973294 7.199909 -3.458107 3.526411 -1.008077 -0.036564 -0.133127 1.080174 -6.235946 2.537474 3.972332 -3.646321 2.297622 9.617868 1.466498 0.860589 -0.907311 5.664926 -3.443386 4.580073 -5.273614 9.761464 -0.886474 -2.880979 -1.636682 -3.087708 -0.723351 -5.289679 1.838766 4.832297 2.830726 2.335410 1.169220 4.152700 6.120446 -4.400241 7.823515 -0.663269 -0.356588 -4.154527 -0.822042 2.680614 0.869788 -2.319534 4.031742 -8.304605 -6.572805 -10.844652 -5.404378 0.609266 -1.456847 2.668219 -2.869171 -2.881238 -6.201805 -7.662376 8.450288 -3.227883 0.758450 5.538942 4.095464 4.783388 7.953709 -2.100935 2.954374 -3.180938 -0.642948 0.115168 -4.051584 -3.047424 7.271946 -2.131974 1.930291 7.439108 -0.955519 4.862771 0.402934 2.653605 -4.012046 7.984006 2.696694 -1.766502 4.464658 6.676139 8.097892 -0.159453 -4.719416 -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.258883 -3.553478 5.559904 4.948461 -0.777518 2.040453 1.218139 -2.832798 3.275610 0.313499 -0.724739 1.877059 -3.462321 1.105311 -1.514988 2.028294 -3.909703 -3.045348 -1.089991 -1.947716 -1.283803 -2.622627 0.834336 2.198850 2.214281 2.014207 -2.374361 -0.792816 -4.295431 -1.812792 2.706055 -0.714071 2.563315 1.075212 0.826456 -7.972441 3.300244 3.727998 -0.947218 -4.747426 1.159713 -2.188002 -0.227832 -1.924742 -1.249908 0.814294 0.049479 2.192045 1.766791 0.876859 -0.447125 1.152427 1.046823 6.274587 -1.661900 3.213817 2.702999 0.364576 -0.219875 0.047730 1.229155 0.920959 1.985475 1.817780 -0.827786 -2.710189 -1.153803 -1.712156 -3.568709 2.670746 0.313462 -0.483779 -3.281831 -1.079228 -3.481834 -0.720580 -2.431598 3.596742 5.572155 -3.754833 3.690306 0.796594 1.676880 -0.302831 2.034597 0.018118 2.783797 1.564118 -1.426212 0.025257 -3.657956 -1.093546 0.505914 -1.042158 -2.595388 -5.295353 2.346455 -4.220527 -4.465716 1.651736 1.203742 -1.060112 -1.869168 -0.797074 1.543173 1.996891 -2.350599 -3.709430 -1.322081 1.691419 0.722007 -1.870509 0.314314 0.416700 -0.510719 -2.249654 -4.338906 -0.065703 1.415842 -2.197807 -0.215508 3.310508 -1.640345 1.057125 -0.591381 0.625696 -1.136208 3.692309 0.393682 1.729564 0.998148 0.150570 -1.608534 0.431791 1.347305 3.756701 -1.546098 -0.232597 -0.705739 1.471730 -0.911014 0.333251 -0.407323 1.234250 1.951543 -1.268671 -2.626960 -2.173364 -0.985629 -4.443677 0.625586 -2.680549 -1.002567 2.282995 3.062666 2.170552 1.839224 4.294148 -3.022127 1.737023 0.043788 0.006184 2.163185 1.083263 1.659909 -1.843631 -3.451212 2.292922 0.734837 1.520968 0.591985 -0.426654 0.127534 -2.463448 -1.738484 1.295929 1.728543 -0.613533 3.487431 2.348590 1.932774 -3.250774 0.783462 1.219962 -1.340742 0.900516 -0.338646 -4.604675 2.092532 0.576262 0.286971 3.623284 -0.780579 -1.737200 2.176710 -0.646231 1.061231 -2.670943 1.225032 -2.985465 -1.221799 -3.352993 0.837447 -1.064463 -1.470946 -2.285010 -1.319963 4.790429 -3.374392 -2.839214 3.543580 -0.180034 2.260342 -4.931600 3.180938 -1.942138 3.043548 -0.337077 -0.639151 0.436159 -0.267812 -2.012144 -0.396158 2.192867 -1.805490 0.992330 4.174822 0.965367 -0.270209 0.757339 2.848960 -0.624230 1.909972 -2.307387 3.481402 -0.468699 -1.654779 0.376346 -1.604656 0.744373 -1.552081 0.641081 3.852693 2.516843 2.142892 2.113707 2.278718 2.270797 -2.191552 1.927546 -0.377026 1.807513 -1.934158 -0.243336 -0.165814 1.731496 -0.757763 2.232434 -4.452080 -5.610890 -4.143056 -3.964440 -0.295615 -1.281452 1.233525 -0.671842 -0.684040 -4.166728 -3.359246 1.434850 -1.763354 2.806293 2.661433 1.880102 3.235116 3.569899 -2.190185 -0.047051 0.935697 1.250283 -0.447279 -0.647665 -2.739200 2.692542 -2.327983 1.378441 4.607917 -0.942719 1.829258 -1.133462 3.855157 -2.475790 5.618396 1.987720 -2.923194 2.409277 2.803266 3.814165 0.933985 -2.610048 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 0.213189 -8.161280 16.512432 14.172198 -1.020462 7.138997 0.394750 -12.317250 10.909703 5.152198 -0.766251 4.676338 -7.495396 4.207152 -6.104074 7.427876 -10.038965 -7.387284 -5.580277 -9.768977 -6.664745 -7.104857 0.456203 3.801960 5.119979 0.830890 -8.105978 1.085177 -11.031467 -11.388782 5.629106 -1.094895 5.095395 -5.415620 3.088854 -23.544320 12.456159 11.241821 -3.563522 -12.345419 2.187355 -6.222960 -2.111571 -1.423312 -3.242355 1.615450 -2.609138 3.243555 6.101966 2.851570 3.712630 7.033089 2.844491 22.928618 -6.102752 10.645411 6.113809 1.358078 -1.354560 4.711053 2.625698 4.751001 5.256448 4.444790 -0.534117 -8.797863 -1.226810 -1.435006 -8.192442 9.369734 -0.293725 -7.885524 -7.031066 -4.904998 -10.829178 -3.225869 -9.959652 8.778884 14.918926 -10.214956 8.117197 2.080005 3.878617 1.843440 8.690753 -1.828861 13.745729 4.175182 -4.053655 0.020872 -4.978590 -1.339344 2.885267 -1.318236 -9.055754 -16.432295 7.117408 -14.332877 -13.235438 6.595057 4.581345 -3.084156 -8.726910 -5.397766 5.780692 2.189087 -6.529792 -11.041674 -4.960080 7.949651 1.402113 -5.794878 1.674245 -4.399288 0.834671 -1.953127 -12.383431 0.623574 4.446966 -3.836860 -6.013182 11.386387 -2.137523 -0.142740 -2.013704 3.408074 -4.024108 8.406686 -2.893779 8.356160 -2.234729 4.809516 -10.204271 3.437506 3.483953 1.077499 -2.484809 1.284275 -2.976347 4.744322 -5.771743 6.223214 -6.069693 5.550313 7.230493 -1.273030 -7.510944 -5.134785 -1.363784 -12.427129 1.529589 -7.387237 -9.226753 2.059990 9.382321 8.880245 5.724875 8.133171 -7.857603 4.574917 -1.015895 0.848613 7.724337 -3.474253 4.752424 -5.866753 -10.630756 5.772827 3.746317 3.499899 2.108631 -2.043391 -0.399269 -6.282649 -3.678257 3.587813 5.094031 -1.363448 10.745369 8.423803 14.277144 -12.654722 4.117477 3.937258 -5.724729 3.661731 -3.496449 -12.370471 2.256039 4.444580 2.719053 13.587896 -2.453625 -4.385758 3.453519 -1.341015 4.592761 -7.182671 3.103322 -8.647728 -3.839391 -7.000767 0.724120 -4.302122 -2.444245 -6.743023 -6.690987 13.351300 -14.364476 -9.657885 15.828814 -3.191093 4.165354 -13.935870 9.688356 -5.511915 7.661746 -2.274092 0.101231 -0.939704 3.713830 -8.041578 4.726168 6.236191 -7.400434 4.313471 14.530416 2.347672 2.881058 -0.290134 8.912123 -4.526734 4.576011 -8.607956 13.782450 -1.726413 -4.738464 -1.628195 -5.275695 0.965182 -5.775132 3.531856 6.126249 6.188313 3.357925 1.643962 8.926463 6.420942 -5.689237 9.196753 -1.699779 0.543263 -6.267064 -0.900828 2.013818 2.302157 -2.116332 4.857155 -13.508943 -10.993482 -16.090911 -9.157824 1.229322 -1.123488 1.844973 -1.995667 -3.139909 -11.672910 -10.445743 11.160501 -5.261217 4.261695 7.773098 6.902823 8.239893 12.416378 -3.854862 2.238019 -2.108809 -1.035651 -1.611374 -4.970858 -6.082891 10.813947 -4.707381 4.910270 11.159270 -1.194728 7.052627 1.917535 4.578581 -6.898807 13.367712 5.327634 -4.473295 6.003791 10.508409 13.323630 -0.157677 -7.265590 -PE-benchmarks/Nearly_sorted_Algo.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -1.321189 -4.886196 5.821139 4.912429 -0.006687 3.571186 0.710916 -2.391128 3.072382 1.814811 -1.921837 2.600437 -3.482498 -0.401316 -1.052405 0.737637 -2.870745 -3.573061 -0.341117 -1.501686 -0.447868 -2.963238 -1.864913 4.021422 1.350557 0.875148 -1.882962 0.612898 -6.132978 -3.348677 0.954040 -0.435647 2.415480 -0.398756 1.987956 -6.700106 3.686356 5.374816 -0.313736 -6.369194 0.434542 -2.509953 -0.863733 -0.210592 -1.183950 1.705372 1.234268 1.549142 0.309142 0.755474 -0.696712 0.205235 1.132259 6.061821 0.063171 4.578284 4.128884 0.191493 0.680861 0.712183 1.014887 -0.096539 2.417821 1.817333 -1.725165 -1.693065 -0.145958 -0.058284 -3.255450 1.910553 0.497422 -2.227897 -2.051647 -1.736096 -4.466657 -0.761732 -0.219332 2.789116 6.120352 -2.955400 5.361565 1.957588 3.028234 0.262968 3.804613 -0.440509 4.159500 1.810996 -2.546652 0.167822 -4.592499 -1.793467 0.129914 0.092327 -3.506895 -2.885044 2.495826 -5.928091 -5.120392 2.650021 -0.095119 -1.521809 -2.451944 -0.693899 2.376862 2.207839 -1.975406 -4.091891 -1.964963 3.329253 -1.080890 -2.448401 0.354422 0.342778 -0.033544 -1.324842 -3.922372 -0.121207 3.489717 -2.583202 -0.848517 4.402144 -1.769442 2.409695 -0.849436 0.417377 -0.458036 2.704337 1.236696 1.318453 0.401273 -1.314796 -3.242700 0.907308 0.209715 1.451124 -1.786849 0.333644 1.460030 1.994866 0.572319 1.936033 -2.187058 2.227708 1.598526 -0.525023 -1.968006 -3.848185 -1.317564 -3.538708 0.255278 -2.404484 -2.727414 1.820631 3.565305 2.231881 0.731287 4.385348 -2.952705 1.766273 -0.161162 0.363593 1.021197 -0.858982 1.324968 -2.311052 -3.811554 2.622036 2.442881 1.479641 1.186902 -1.312662 -0.072892 -1.932939 -2.488465 1.952408 1.466821 0.581720 5.139669 2.990648 3.343566 -3.645168 0.479637 -0.287651 -1.750278 1.089929 -1.135373 -5.077152 1.406086 1.283195 1.450453 5.353477 -0.793240 -1.772851 1.931781 -0.140360 0.814111 -3.257292 2.795032 -3.904083 -0.699717 -2.259146 -0.084863 -2.051653 -1.970870 -3.675995 -1.695869 5.383339 -3.389279 -4.732855 3.181960 -0.236088 2.497098 -5.968224 1.842557 -2.352853 4.346930 0.228694 -0.291765 -0.044382 0.164261 -1.129207 -0.026375 2.558312 -2.903991 2.503279 3.348024 0.625611 0.144535 1.600800 2.213504 -1.413160 -0.076619 -3.376111 2.696705 -0.392244 -1.293018 -0.297157 -2.035047 2.145374 -0.264603 -0.007633 1.356031 2.957815 0.508634 0.755713 3.544253 0.065451 -1.888911 1.747987 -0.433132 2.265017 -2.293154 -0.530397 -1.774356 1.279194 0.747638 1.905382 -5.652461 -4.592281 -4.802462 -4.826110 -0.681558 -0.830169 1.186739 0.987687 -0.060300 -5.298057 -3.814559 2.981357 -1.508135 4.021872 2.772836 3.041677 3.709837 3.069480 -0.854274 -0.732916 0.357492 0.579567 -2.323668 -1.138808 -1.878942 2.524637 -2.185909 3.031037 3.982887 -0.323441 2.279014 -0.609478 1.929217 -3.266393 5.650903 3.188859 -3.925039 0.987022 2.653180 4.262978 -1.907845 -3.206384 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.404818 -0.790380 1.615932 1.377672 0.152358 0.478365 0.590833 -1.052330 1.282302 0.641525 0.107211 0.261193 -1.131149 0.459418 -0.345718 0.903713 -0.916375 -1.014826 -0.403581 -0.987641 -0.563057 -0.838675 0.629119 0.000696 0.701270 -0.321806 -0.845309 -0.509088 -1.368428 -0.792726 0.944576 -0.345395 0.787661 -0.357922 -0.213898 -2.841884 1.113717 0.907772 -0.520979 -1.078493 0.526312 -0.815395 0.197487 -0.292846 -0.184493 0.087215 -0.119939 0.029241 0.959455 0.336046 0.773454 0.484815 0.020966 2.351007 -1.207457 0.886750 0.283408 -0.029406 -0.497843 0.421809 0.246516 0.368835 0.838031 0.643767 -0.328970 -0.984042 -0.176221 -0.518890 -1.409345 0.940994 -0.078342 -0.299782 -0.818206 -0.152355 -0.752656 -0.510204 -0.539315 0.764925 1.620415 -0.978648 1.000367 0.092672 0.342262 -0.031470 0.588167 0.022078 1.033868 0.227051 -0.438625 -0.303560 -0.719854 0.104967 0.069523 0.397206 -0.428434 -1.169084 0.721865 -0.396259 -1.329642 0.448965 0.454479 -0.058725 -1.428619 -0.234402 0.480182 0.579742 -0.767710 -1.355166 -0.765302 0.481278 0.185514 -0.501114 0.039664 -0.856943 -0.405760 -0.822743 -1.273636 -0.180161 0.030938 -0.687364 -0.980293 1.087304 -0.811909 -0.008416 0.009499 0.570059 -0.568787 0.973295 -0.265270 0.858531 0.373605 0.004609 -1.633712 -0.345106 0.533620 1.373318 -0.193730 0.038822 -0.778080 0.205737 -0.841354 0.245566 0.081625 0.672057 1.195178 -0.493079 -0.739647 -0.221248 0.415614 -1.528879 0.332569 -0.927791 -0.020498 0.244935 0.960300 0.724759 0.854626 1.734640 -0.887481 0.891169 -0.134332 -0.305812 1.067795 0.005309 0.750000 -0.605049 -1.024808 0.342217 0.449169 0.279046 0.132237 -0.074535 -0.070394 -1.030977 -0.538584 0.013269 0.386873 -0.306899 0.797213 0.678147 1.620896 -1.655587 0.552530 0.720371 -0.319603 0.330263 -0.160886 -1.336163 0.385376 0.364912 -0.397603 1.050707 -0.144038 -0.955427 0.349899 -0.326249 0.490099 -0.809183 0.296173 -0.830583 -0.289624 -0.910476 -0.228022 -0.426592 -0.545695 -0.374816 -0.243370 1.350725 -0.614741 -1.101673 1.328253 -0.210769 0.324435 -1.847104 1.667309 -0.710688 0.608232 -0.813824 -0.066282 -0.229466 0.946564 -0.700057 0.334725 0.558802 -0.613110 0.647647 1.922505 0.454556 0.347927 -0.076343 1.121598 -0.008913 0.626166 -0.558652 1.455912 -0.208171 -0.573428 0.133083 -0.530534 0.205449 -0.431788 0.251577 1.032650 1.048197 0.172891 0.602040 0.903939 1.043342 -0.576010 0.921795 -0.049376 0.665065 -0.349427 -0.008027 0.276396 0.354681 -0.413917 0.679149 -1.307425 -1.521868 -0.542103 -1.345563 0.285726 0.218147 0.112632 -0.203773 -0.036700 -1.453063 -0.734734 0.332842 -0.598500 1.090480 0.564461 0.564515 0.824188 1.339828 -0.779401 -0.096066 -0.039887 0.036460 -0.131593 -0.554661 -0.667209 0.968211 -0.822093 0.440223 0.988198 -0.235710 0.349434 0.048273 0.883782 -0.714317 1.696477 0.491400 -0.172925 1.280484 0.828070 1.710359 0.171920 -0.614784 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::max_size() const = -0.206869 -0.704567 1.213737 0.954005 -0.049709 0.530294 0.200775 -0.822995 1.099865 0.206429 -0.194952 0.045672 -0.793977 0.163356 -0.478425 0.348515 -0.745030 -0.775881 -0.285709 -0.714637 -0.408805 -0.760930 0.109633 0.219758 0.327780 0.118426 -0.448752 0.050965 -1.039254 -0.403642 0.756200 -0.182445 0.392394 -0.005851 0.162945 -1.684049 0.830155 0.781056 -0.281439 -0.967838 0.091499 -0.610318 0.000877 -0.214685 -0.051001 0.137812 -0.082234 0.422204 0.504701 0.094967 0.310348 0.137703 -0.150708 1.650243 -0.637973 0.773391 0.374282 0.127522 -0.130342 0.435924 0.217031 0.268719 0.471790 0.565904 -0.290025 -0.531778 -0.008309 -0.360761 -0.846757 0.783115 -0.080405 -0.370018 -0.560969 -0.344728 -0.775847 -0.301721 -0.959660 0.662576 1.299676 -0.818766 0.825506 0.268024 0.555211 0.028195 0.567710 -0.108740 1.042033 0.240210 -0.480662 -0.027972 -0.758252 -0.043004 0.052575 -0.167641 -0.519663 -0.925239 0.586721 -1.008189 -1.040852 0.370673 0.259702 -0.055253 -0.660474 0.015160 0.432821 0.242979 -0.534666 -0.948056 -0.377369 0.532176 -0.016743 -0.275179 0.160050 -0.226310 -0.091043 -0.521163 -0.961469 -0.154889 0.222166 -0.499944 -0.378445 0.942515 -0.494236 0.060277 -0.023473 0.185144 -0.255074 0.839892 -0.078743 0.460254 -0.029337 0.084262 -1.075303 0.139757 0.260317 0.693827 -0.140573 0.164723 -0.081610 0.247562 -0.531982 0.130703 -0.403286 0.208825 0.486466 -0.373943 -0.525903 -0.369773 -0.048004 -1.092645 0.141211 -0.677779 -0.418175 0.172428 0.762800 1.050622 0.473322 1.157494 -0.781743 0.448163 -0.167741 -0.065844 0.476630 0.061234 0.481549 -0.449630 -0.762739 0.319673 0.239631 0.203444 0.258503 -0.346640 -0.131542 -0.759125 -0.304097 0.297028 0.379193 -0.099585 0.793026 0.630557 0.517988 -1.299279 0.406392 0.384816 -0.233308 0.224778 -0.095753 -1.047651 0.398359 0.259885 0.111966 0.732166 -0.159115 -0.285600 0.165161 -0.251406 0.376731 -0.683328 0.077155 -0.681477 -0.313750 -0.719331 0.306688 -0.448444 -0.352657 -0.374483 -0.400930 0.974975 -0.700131 -0.743861 1.129655 -0.015658 0.484097 -1.010015 0.562676 -0.494932 0.826052 -0.266479 0.054961 -0.161822 0.315704 -0.319418 0.128298 0.421978 -0.477291 0.456327 1.116374 0.261544 0.252131 0.172285 0.819613 -0.306414 0.271505 -0.573140 0.856624 -0.075026 -0.507773 0.146191 -0.489391 0.196382 -0.298084 0.237026 0.885379 0.843157 0.270308 0.460690 0.593660 0.437873 -0.403380 0.474826 -0.013732 0.314579 -0.421979 -0.033176 0.094175 0.205703 -0.315935 0.259681 -1.049531 -1.237159 -0.887208 -0.873874 0.047314 -0.377852 0.046500 -0.023661 -0.020455 -0.939743 -0.677691 0.506750 -0.467432 0.761064 0.349225 0.517745 0.678385 1.056410 -0.573613 -0.019865 0.222235 0.088237 -0.299511 -0.288034 -0.636047 0.807727 -0.519551 0.393869 0.905856 -0.188230 0.340472 0.148946 0.619405 -0.614342 1.140501 0.508094 -0.406356 0.654194 0.656055 1.248490 0.335839 -0.559091 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::size() const = 0.591324 -1.130559 2.431262 2.119935 -0.202143 1.157815 -0.461539 -1.485649 0.729250 1.175822 -0.261994 0.992868 -0.718262 0.660655 -0.775426 1.103587 -1.150355 -0.361789 -0.929658 -1.043415 -0.531253 -0.572704 -0.389572 0.782600 0.722552 0.578080 -0.924733 0.616689 -1.144727 -2.620475 -0.064040 0.020219 0.502402 -0.949279 0.892257 -1.607096 1.868339 1.863364 -0.309236 -1.729062 0.319233 -0.238705 -0.612736 0.254866 -0.207722 0.740669 -0.241666 0.240538 0.488173 0.799134 0.110609 0.874421 1.465532 2.032865 -0.184665 1.415122 1.185957 0.127940 0.580336 0.342871 0.039353 0.587750 0.028863 0.091166 0.521209 -1.207779 -0.329516 0.436940 -0.297106 0.868974 -0.411850 -1.295949 -0.966441 -1.053246 -1.461566 0.045421 -2.574152 1.041024 1.687718 -0.980704 0.856171 0.304389 0.080534 0.601101 1.197236 -0.054333 1.042059 0.780671 -0.335755 0.600449 0.419398 -0.367982 0.712967 -0.247046 -1.689151 -2.321226 0.979865 -2.192360 -1.289922 1.288709 0.469675 -0.874391 -0.161021 -1.152775 0.153130 0.218084 -0.801751 -1.058966 0.027064 1.198163 0.758155 -0.755732 0.360828 -0.378531 0.335686 0.619947 -1.284163 0.590386 0.807478 -0.247374 -0.375408 1.351014 0.867339 0.104419 -0.408117 0.493399 -0.574902 0.942616 -0.067172 1.529285 -1.075116 1.221179 -0.802132 1.077693 0.656607 -1.571496 -0.474357 0.385549 -0.233559 0.704828 -0.103216 1.390393 -1.131573 0.648160 0.916770 0.125404 -0.736521 -0.844447 -0.874283 -1.075182 0.051463 -0.494609 -1.913965 0.120509 1.034787 0.450354 0.535007 0.195489 -0.959797 -0.538558 -0.262907 0.192867 0.657156 -0.684878 0.211019 -0.632224 -1.254598 0.946347 0.687494 0.329930 0.485242 -0.186842 0.299981 -0.155633 0.658985 1.066252 0.604051 -0.631886 1.683094 1.300010 1.754375 0.094668 -0.071425 0.279616 -1.205346 0.381341 -0.535541 -1.372450 0.178901 0.726490 0.788014 1.837381 -0.346651 0.056942 0.991092 -0.372287 0.419457 -0.671122 0.753658 -1.074116 -0.500733 -0.614525 0.239360 -0.309207 -0.158012 -0.950477 -0.720831 1.582640 -2.224192 -0.303364 1.520777 -0.193446 -0.144305 -0.869373 1.138912 -0.544235 0.829418 0.696902 0.055499 0.190014 0.245189 -1.120813 0.199926 0.817353 -0.891486 0.393052 1.157398 0.200785 -0.380010 -0.064485 0.941896 -1.059947 0.375799 -1.304802 1.332415 -0.324510 0.047712 -0.491419 -0.469422 -0.245070 -1.094031 0.208929 -0.124868 -0.161570 0.289105 -0.537435 0.831686 0.585985 -0.380463 1.303928 -0.470063 -0.239047 -1.150008 -0.260807 0.141696 0.493365 0.246451 0.650992 -1.802773 -0.500686 -2.557057 -0.284073 -0.166778 0.181037 0.352809 -0.135804 -0.678989 -1.083826 -1.804569 2.536163 -0.519647 -0.793200 1.188882 0.723447 0.845795 1.149103 0.377941 0.480587 -0.910235 -0.103043 0.112992 -0.297581 -0.227294 1.384991 -0.421364 0.093993 1.378478 -0.259228 1.232661 0.357746 -0.033368 -1.109166 1.366623 0.657581 -0.519400 0.364745 1.856958 1.313040 -0.645740 -0.777520 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = -0.372520 -0.815159 1.673589 1.420118 0.073422 0.518157 0.533958 -1.118278 1.331168 0.484724 0.098128 0.255811 -1.152011 0.468145 -0.378372 0.844632 -1.021118 -1.046641 -0.448841 -1.039079 -0.600595 -0.869493 0.593843 0.084228 0.692788 -0.221022 -0.872289 -0.448542 -1.416401 -0.656321 1.048979 -0.336305 0.810156 -0.247725 -0.145638 -2.981646 1.143434 0.929699 -0.512977 -1.122975 0.496765 -0.880218 0.191278 -0.395182 -0.244959 0.067534 -0.161348 0.092944 0.981893 0.262070 0.667804 0.512075 -0.072723 2.418224 -1.222225 0.909876 0.296544 -0.030670 -0.503555 0.413717 0.252587 0.404978 0.861403 0.652377 -0.382855 -1.028005 -0.150423 -0.576673 -1.431519 0.997929 -0.027336 -0.307028 -0.839931 -0.188112 -0.862610 -0.531178 -0.476033 0.858102 1.663602 -1.048315 1.009835 0.074973 0.377750 -0.016295 0.656194 0.008215 1.149277 0.240191 -0.454984 -0.273811 -0.863422 0.090299 0.075749 0.307280 -0.472515 -1.250016 0.722513 -0.575249 -1.381368 0.442089 0.481441 -0.072362 -1.452335 -0.253590 0.526062 0.560554 -0.781214 -1.376745 -0.740827 0.537013 0.173438 -0.509187 0.050854 -0.790306 -0.379837 -0.919265 -1.332901 -0.161367 0.062856 -0.665835 -0.926549 1.156438 -0.879486 -0.039615 -0.006024 0.552059 -0.595874 1.047940 -0.305111 0.808368 0.351940 -0.017454 -1.545203 -0.351156 0.499618 1.487931 -0.216259 -0.016523 -0.755972 0.232678 -0.884571 0.186909 0.060642 0.642535 1.124177 -0.503637 -0.766192 -0.244017 0.358892 -1.612186 0.295990 -0.955881 -0.082916 0.335097 0.995523 0.865841 0.867862 1.751892 -0.895101 0.917230 -0.135183 -0.293781 1.105273 0.047515 0.767129 -0.635223 -1.052540 0.385393 0.345155 0.326331 0.147119 -0.100429 -0.087305 -1.067768 -0.598736 0.033744 0.438191 -0.240346 0.854533 0.730106 1.501973 -1.756094 0.588943 0.724605 -0.348424 0.345565 -0.151604 -1.352332 0.399277 0.382596 -0.408516 1.104373 -0.178892 -0.953973 0.325065 -0.287519 0.529956 -0.851225 0.255084 -0.856560 -0.295071 -0.985069 -0.196050 -0.462245 -0.552591 -0.453007 -0.352168 1.408009 -0.730726 -1.176660 1.435710 -0.192068 0.465852 -1.901460 1.539263 -0.730640 0.725864 -0.790576 -0.058548 -0.219738 0.845832 -0.749825 0.375883 0.581874 -0.649858 0.613547 1.936064 0.462771 0.370489 -0.068942 1.153591 -0.028767 0.670556 -0.609196 1.498954 -0.205612 -0.608022 0.159474 -0.558759 0.190671 -0.454999 0.304494 1.107700 1.100088 0.308963 0.643482 0.951792 1.031328 -0.596579 0.882408 -0.073885 0.601109 -0.371046 -0.022387 0.298241 0.405187 -0.412315 0.650900 -1.362019 -1.668059 -0.679695 -1.401734 0.303322 0.120015 0.091956 -0.190862 -0.062658 -1.481603 -0.762406 0.307244 -0.621060 1.234897 0.582378 0.592027 0.864737 1.410063 -0.869784 -0.095569 0.077890 0.080997 -0.138735 -0.514959 -0.815034 1.050221 -0.823093 0.471702 1.120115 -0.260111 0.396308 0.031104 0.974072 -0.739794 1.750825 0.507322 -0.283135 1.272034 0.846182 1.685960 0.304152 -0.656153 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = -0.487597 -1.356394 2.366642 2.000162 -0.067464 1.050871 0.388467 -1.544199 1.792762 0.308588 -0.052017 0.456364 -1.532008 0.490953 -0.508647 0.736554 -1.520246 -1.463953 -0.599614 -1.355125 -0.755206 -1.305077 0.254887 0.666843 0.707547 0.083242 -1.129865 -0.147304 -2.190499 -0.634473 1.475933 -0.379366 1.096277 0.008241 0.277647 -4.027846 1.601357 1.463431 -0.510295 -1.841396 0.387101 -1.305602 0.194146 -0.622789 -0.425214 0.252628 -0.158778 0.270461 1.140769 0.132842 0.395330 0.554672 -0.268449 3.113847 -1.351694 1.404016 0.640042 -0.062959 -0.394657 0.485012 0.302586 0.501643 1.168674 0.893656 -0.740968 -1.304774 -0.067535 -0.703641 -1.834988 1.358565 0.128011 -0.517643 -1.112948 -0.454643 -1.601653 -0.722935 -0.504734 1.313260 2.402306 -1.437589 1.575144 0.206236 0.855696 0.134836 1.344549 -0.036474 1.916004 0.425753 -0.872387 -0.033650 -1.632637 -0.042763 0.077337 0.167384 -0.889425 -1.646686 0.870432 -1.572649 -1.958474 0.774905 0.477256 -0.140354 -1.879483 -0.421812 0.905882 0.700467 -1.080649 -1.911898 -0.860850 1.057430 0.038474 -0.736452 0.196603 -0.753631 -0.338496 -1.374358 -1.796072 -0.174444 0.483679 -0.866773 -0.966125 1.873821 -1.229652 0.073444 -0.112312 0.549788 -0.790203 1.530103 -0.310408 0.844074 0.191140 -0.290079 -1.906437 -0.328376 0.406929 1.932658 -0.413894 -0.201886 -0.607242 0.465252 -0.997248 0.242644 -0.156000 0.749399 1.242542 -0.556633 -0.982409 -0.635747 0.177408 -2.215778 0.230501 -1.237720 -0.510106 0.662655 1.454518 1.490797 1.032859 2.175327 -1.170833 1.139511 -0.285870 -0.246634 1.347430 0.116407 0.952788 -0.932999 -1.463346 0.732146 0.320272 0.559021 0.409446 -0.421403 -0.130899 -1.302148 -0.883417 0.301074 0.754699 -0.006225 1.524114 1.164325 1.554379 -2.394134 0.722630 0.735106 -0.575126 0.513409 -0.269776 -1.816504 0.593124 0.615536 -0.438940 1.715173 -0.399161 -1.137300 0.419650 -0.192221 0.803033 -1.289054 0.368082 -1.293111 -0.360561 -1.435411 -0.146173 -0.828955 -0.787857 -0.997200 -0.791796 2.056151 -1.289759 -1.774338 2.048522 -0.188306 1.047485 -2.575662 1.308128 -1.028247 1.463026 -0.757971 -0.035418 -0.263786 0.774056 -0.942604 0.540985 0.901274 -1.097788 0.798286 2.301628 0.576832 0.471111 0.105915 1.489489 -0.172448 0.661514 -1.064199 1.881340 -0.273891 -0.689181 0.251678 -0.862883 0.395121 -0.527794 0.436070 1.334431 1.561363 0.645345 0.756073 1.486753 0.927828 -0.773254 0.864297 -0.224859 0.628781 -0.676484 -0.109446 0.154494 0.683276 -0.313349 0.646177 -2.050221 -2.417801 -1.460367 -1.928308 0.264833 -0.033313 0.010887 0.063087 -0.082582 -2.087057 -1.122364 0.599516 -0.855675 1.984704 0.817121 0.922242 1.326553 1.959760 -1.186140 -0.259090 0.382441 0.155803 -0.431477 -0.426177 -1.421179 1.580383 -1.089567 0.859231 1.781808 -0.394895 0.689771 0.086925 1.429237 -1.144353 2.453268 0.896892 -0.848141 1.373333 1.170047 2.155313 0.502669 -1.029741 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = -0.882458 -2.244518 2.757149 2.372794 0.722390 1.931756 0.583523 -1.228487 1.366084 2.014819 -0.472286 1.328432 -1.558138 0.095204 -0.420060 0.733102 -0.811235 -1.541211 -0.113898 -0.886582 -0.130971 -1.517280 -0.774108 1.430082 0.551809 -0.562516 -1.010845 -0.025902 -3.180539 -2.582794 0.362595 -0.318453 1.161498 -1.229074 0.631849 -3.366243 1.968565 2.475139 -0.261578 -2.853863 0.350282 -0.963593 -0.201840 0.734544 -0.058574 1.062061 0.587061 -0.064575 0.502978 0.840694 0.576056 0.237112 0.957370 2.980243 -0.554877 2.193002 1.562909 -0.067146 0.531851 0.660281 0.150832 -0.005809 1.147860 0.944966 -0.539523 -0.870919 -0.067201 0.439286 -1.699573 0.870288 -0.012489 -1.060101 -0.956600 -0.434790 -1.895522 -0.490635 -0.717487 0.773744 2.965128 -0.794038 2.664439 0.771898 1.437461 0.344183 2.067792 0.031437 1.663990 0.756341 -1.504767 0.208560 -1.558352 -0.273540 -0.013221 0.846294 -1.467966 -1.334663 0.959029 -1.808979 -2.144386 1.724709 -0.261456 -0.496968 -1.696153 -0.762474 1.063911 1.065575 -1.316781 -2.341463 -1.239901 1.734940 -0.439357 -1.159934 0.540122 -1.185754 -0.176746 -0.517413 -1.397202 -0.186861 1.501615 -1.282352 -1.433752 2.332125 -0.487810 1.052160 -0.274913 0.585426 -0.605180 0.815658 0.466491 1.251323 -0.094076 -0.678981 -3.113926 0.169744 0.322112 0.234923 -0.657097 0.053590 0.028762 0.883199 0.189421 1.562202 -0.669483 1.266839 1.807009 -0.133480 -0.701781 -1.508963 0.398977 -1.525538 0.296262 -0.939660 -1.334631 -0.019993 1.741252 0.348960 0.681408 1.669792 -1.214150 0.858213 -0.491484 0.051787 0.728509 -0.811899 0.639378 -1.015316 -1.818298 0.931548 1.727708 0.496836 0.673469 -0.743959 0.086709 -0.604438 -0.560056 0.617269 0.677987 -0.201058 2.334520 1.420444 2.879492 -1.633752 0.037064 0.100810 -0.981649 0.607589 -0.826155 -2.265628 0.560246 0.961117 0.040408 2.591113 -0.431997 -1.217818 1.141144 -0.171107 0.565854 -1.406944 1.413017 -1.837809 -0.462709 -0.888512 -0.619427 -1.068388 -1.033554 -1.557664 -0.472292 2.404692 -1.141590 -1.928149 1.399043 -0.538316 0.126474 -2.938248 1.740880 -1.162796 1.208978 -0.188176 -0.043355 -0.364986 1.663313 -0.642439 0.291023 1.200358 -1.816511 1.856736 2.098243 0.451613 0.182200 0.477776 1.229101 -0.485239 -0.596107 -1.627446 1.483410 -0.511222 -0.187823 -0.253160 -0.979792 1.161806 -0.228218 -0.072932 -0.191991 1.205939 -0.636120 -0.187019 2.058415 0.109114 -0.597205 1.029355 -0.420519 1.174629 -1.075584 -0.217224 -0.902340 0.371130 0.465140 0.935736 -2.698170 -1.287094 -1.716564 -2.002970 -0.124068 0.794249 0.193563 0.746290 0.190212 -3.017190 -1.562342 1.722434 -0.778624 0.916836 1.383588 1.254001 1.589688 1.556466 -0.018411 -0.409311 -0.733928 -0.216319 -1.167770 -0.719213 -0.311837 1.263690 -1.284264 1.461898 1.157146 -0.114072 0.872610 0.307874 0.587715 -1.642902 2.741645 1.600791 -0.878682 0.717391 1.368519 2.771076 -1.475282 -1.179133 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(std::greater) = 0.034806 -0.394981 0.803242 0.768577 -0.100776 0.171267 0.128088 -0.464126 0.466645 0.195559 -0.055990 0.168259 -0.524243 0.276748 -0.099771 0.516185 -0.541696 -0.374057 -0.238993 -0.331935 -0.218645 -0.327642 0.360588 0.073387 0.395940 0.312605 -0.374414 -0.145599 -0.419543 -0.430383 0.348479 -0.130547 0.397026 0.294437 0.009123 -0.935434 0.508845 0.472841 -0.208144 -0.540094 0.246757 -0.257088 0.033508 -0.238330 -0.126382 0.175256 -0.082446 0.081300 0.377978 0.235920 0.211485 0.156374 0.255705 0.676807 -0.329929 0.369807 0.210522 0.002026 -0.118348 -0.036176 0.170251 0.230582 0.284790 0.256663 -0.039133 -0.499396 -0.266420 -0.283794 -0.568693 0.431655 -0.156628 -0.060268 -0.531603 -0.245161 -0.227010 -0.098795 -0.632002 0.486554 0.722263 -0.515676 0.364592 0.068821 0.007135 -0.115960 0.148594 0.021155 0.274446 0.198407 -0.067347 0.036225 -0.051825 -0.180170 0.152259 0.005043 -0.329706 -0.539300 0.373360 -0.305155 -0.564230 0.199323 0.277007 -0.106660 -0.341987 -0.044797 0.062833 0.311341 -0.293000 -0.482670 -0.077321 0.115104 0.340488 -0.243896 -0.143109 -0.019631 -0.211792 -0.207675 -0.654613 -0.007066 -0.012704 -0.321651 -0.049592 0.366404 -0.144093 0.007776 -0.059457 0.150950 -0.214743 0.671489 -0.026814 0.435775 0.123463 0.187706 -0.274839 0.081477 0.337262 0.412642 -0.187443 0.020490 -0.285177 0.076222 -0.297309 0.041512 0.019757 0.179018 0.592546 -0.204496 -0.427610 -0.141700 -0.201047 -0.767494 0.134473 -0.439806 0.096744 0.328394 0.405547 0.274119 0.382398 0.798834 -0.493611 0.108635 -0.015833 -0.129744 0.419306 0.274273 0.278893 -0.242746 -0.461260 0.331769 0.126644 0.110318 0.143099 0.030262 0.024705 -0.407126 -0.091836 0.332805 0.199460 -0.167003 0.384642 0.293187 0.424850 -0.199524 0.159925 0.322168 -0.115467 0.101553 0.003317 -0.639873 0.286260 0.031321 0.004802 0.366469 -0.086354 -0.174085 0.267301 -0.238272 0.178003 -0.380396 0.184145 -0.363996 -0.022247 -0.525543 0.084575 -0.042635 -0.216531 -0.062730 0.003303 0.637883 -0.303204 -0.215381 0.499579 -0.025039 0.171133 -0.549355 0.611533 -0.284821 0.371736 -0.181484 -0.123695 0.052107 -0.041450 -0.274647 -0.103428 0.282236 -0.059136 0.004968 0.668640 0.174596 -0.163087 0.020187 0.461203 -0.037806 0.464503 -0.202387 0.594475 -0.017561 -0.082782 0.099756 -0.203076 -0.065294 -0.332933 -0.011266 0.672353 0.336515 0.250361 0.313748 0.134741 0.542019 -0.316946 0.434406 0.017315 0.288831 -0.248469 -0.039366 0.155088 0.311923 -0.217809 0.292601 -0.536372 -0.744097 -0.401754 -0.439858 -0.076263 -0.031995 0.228470 -0.188816 -0.132831 -0.340793 -0.482941 0.322620 -0.272125 0.427734 0.230825 0.191088 0.385332 0.543431 -0.299556 0.014391 -0.036675 0.130247 0.080224 -0.060798 -0.317994 0.425362 -0.285560 -0.009488 0.597555 -0.195754 0.230948 -0.087866 0.538822 -0.316502 0.730718 0.174397 -0.174781 0.600440 0.394885 0.505752 0.167992 -0.312292 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator-(long) const = -0.096497 -1.083441 1.867057 1.786829 -0.155750 0.605676 0.373074 -1.072925 1.075141 0.966440 0.020720 0.635843 -1.085403 0.400131 0.037456 1.190066 -1.186273 -0.791228 -0.434350 -0.774721 -0.606933 -0.820316 0.341259 0.453894 0.756252 0.363139 -0.880917 -0.231451 -0.853762 -1.602975 0.416279 -0.252572 0.918234 -0.021223 0.266621 -2.885357 1.326242 1.240286 -0.415107 -1.472131 0.372853 -0.436473 0.088641 -0.234612 -0.594442 0.425227 -0.002742 0.204367 0.679078 0.603859 0.441851 0.448555 0.961214 2.163105 -0.416829 1.088218 0.775053 -0.043537 -0.183866 0.024171 0.448970 0.323969 0.754131 0.496584 0.022220 -0.960742 -0.465062 -0.293786 -1.309246 0.910697 -0.081690 -0.526669 -1.130175 -0.582099 -0.875708 -0.391909 -1.196355 1.029880 1.809175 -1.202714 1.072918 0.425470 0.216997 0.065821 0.700908 -0.043521 1.055145 0.504684 -0.410371 0.282717 -0.110218 -0.678761 0.396947 0.010200 -0.844403 -1.824670 0.730734 -0.978361 -1.484897 0.872083 0.490957 -0.251302 -1.143484 -0.774236 0.559960 0.681570 -0.824132 -1.294985 -0.638740 0.478168 0.334801 -0.694297 -0.058048 -0.144838 -0.208247 -0.128583 -1.482603 -0.055716 0.416581 -0.717638 -0.371886 1.063853 -0.188867 0.347957 -0.198982 0.340118 -0.422269 1.213893 0.065558 1.080782 0.092412 0.389644 -0.792389 0.052265 0.520546 0.350684 -0.142697 -0.186717 -0.487181 0.492436 -0.432407 0.751657 -0.014212 0.749034 1.381358 -0.027381 -0.908565 -0.654918 -0.455046 -1.585727 0.444344 -0.894311 -0.155229 0.749905 1.017474 0.250733 0.655671 1.078820 -1.009918 0.407976 -0.203514 -0.045856 0.818012 0.169108 0.596767 -0.548662 -1.114690 0.747290 0.713549 0.572340 0.284033 -0.206147 0.112593 -0.520724 -0.490208 0.404420 0.459036 -0.350549 0.975397 0.742352 2.038278 -0.623665 0.259369 0.471491 -0.305169 0.374203 -0.265851 -1.512003 0.474509 0.194720 -0.000388 1.233762 -0.301512 -0.581985 0.740116 -0.345484 0.300901 -0.845285 0.556216 -0.963330 -0.106655 -0.960575 0.006847 -0.446525 -0.423229 -0.580009 -0.118058 1.624835 -1.114299 -0.756002 1.341506 -0.369077 0.414211 -1.510703 1.839321 -0.558494 0.732442 -0.563052 -0.442056 0.097332 0.180085 -0.589725 -0.046556 0.727494 -0.477875 0.115646 1.540322 0.301121 -0.115215 0.067341 0.940061 -0.097077 0.711115 -0.743644 1.501225 -0.231488 -0.095272 -0.140656 -0.500545 0.279908 -0.529805 0.045620 0.805137 0.636579 0.176541 0.356532 0.714619 0.819717 -0.758307 1.054852 0.067487 0.641396 -0.720397 0.024216 0.029602 0.597997 -0.370174 0.835838 -1.392343 -1.125101 -1.337480 -0.845993 -0.448838 0.540396 0.500042 -0.294862 -0.299348 -1.036198 -1.127115 1.321035 -0.570920 0.190821 0.809801 0.616000 1.109476 1.272309 -0.227828 -0.072400 -0.343709 -0.166776 -0.073037 -0.372858 -0.490920 0.931763 -0.746383 0.434949 1.115005 -0.255339 0.611688 -0.230068 1.017274 -0.804811 1.678546 0.551602 -0.428930 0.906314 1.237162 1.392613 -0.358380 -0.799721 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::empty() const = 0.056382 -1.022050 1.790706 1.626375 -0.355148 0.683575 0.175051 -1.185200 1.370428 0.065638 -0.173176 0.295749 -1.102445 0.443620 -0.243710 0.712434 -1.409015 -0.982477 -0.445805 -0.912352 -0.660434 -0.956054 0.236264 0.498335 0.578838 0.587728 -0.759306 -0.053392 -1.162253 -0.296120 1.133842 -0.278869 0.772465 0.626844 0.396474 -2.856041 1.159939 0.946070 -0.362676 -1.432102 0.153431 -0.897000 0.121949 -0.710415 -0.319164 0.217642 -0.143666 0.712426 0.800531 0.152972 0.030224 0.316242 -0.004823 2.242579 -0.770566 1.001833 0.590694 0.017261 -0.222589 0.241190 0.394397 0.429261 0.777891 0.696642 -0.391074 -0.977395 -0.271521 -0.717680 -1.244627 1.105894 0.110570 -0.305072 -1.117278 -0.553007 -1.000926 -0.442396 -1.478358 1.361900 1.826639 -1.408027 1.042687 0.282888 0.631660 0.006936 0.896384 -0.089718 1.465462 0.412380 -0.594606 0.169966 -1.071007 -0.495902 0.244848 -0.558033 -0.740204 -1.614170 0.616835 -1.319344 -1.488170 0.598400 0.477682 -0.074053 -0.966361 -0.270323 0.679012 0.494325 -0.776643 -1.297693 -0.410221 0.603663 0.167694 -0.554864 0.022593 -0.055439 -0.199211 -0.876150 -1.526807 -0.134673 0.372277 -0.655925 -0.201531 1.276304 -0.695106 0.052626 -0.162987 0.139953 -0.437090 1.488516 -0.118173 0.630837 0.249678 0.061736 -0.939296 0.357519 0.424591 1.237271 -0.217923 -0.004721 -0.266282 0.419954 -0.763376 0.090333 -0.111453 0.466441 0.756216 -0.368456 -0.941522 -0.580623 -0.238034 -1.643284 0.292879 -1.021498 -0.241029 0.735828 1.079239 1.319989 0.734749 1.366616 -1.114729 0.639402 -0.231387 0.091323 0.896911 0.554687 0.681647 -0.670981 -1.025450 0.665449 0.156923 0.335270 0.366974 -0.390029 -0.028642 -0.952185 -0.583254 0.473748 0.655696 -0.081349 1.132581 0.809212 0.803777 -1.445321 0.511221 0.535366 -0.319410 0.321325 -0.109054 -1.439010 0.683949 0.241717 0.010027 1.039556 -0.351363 -0.516749 0.306315 -0.212716 0.509325 -0.856794 0.083160 -0.931077 -0.380197 -1.159155 0.424498 -0.523528 -0.522972 -0.591126 -0.439300 1.568524 -1.102994 -0.932741 1.603513 -0.329270 0.894706 -1.495871 1.056820 -0.701385 1.029060 -0.472078 -0.236787 -0.081830 0.047008 -0.627162 0.166965 0.732487 -0.522327 0.163175 1.537924 0.363905 0.167143 0.249703 1.078389 -0.188967 0.646886 -0.703145 1.403244 -0.153959 -0.317825 0.171063 -0.636606 0.241074 -0.500186 0.285411 1.487261 1.028588 0.755826 0.715779 0.795655 0.673753 -0.726356 0.668035 -0.136710 0.386320 -0.664875 -0.043247 0.138812 0.459167 -0.409543 0.447407 -1.447755 -1.860871 -1.411898 -0.984007 -0.138268 -0.286246 0.214974 -0.158328 -0.192547 -1.205127 -0.964833 0.484102 -0.680179 0.901999 0.591703 0.639240 1.061923 1.489068 -0.812836 -0.137863 0.353141 0.141374 -0.218921 -0.141976 -1.136627 1.166168 -0.757842 0.516103 1.531489 -0.297198 0.527498 -0.081964 1.389467 -0.768372 1.688497 0.631357 -0.787214 0.885019 1.123707 1.313051 0.574422 -0.866193 -PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::operator== > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.418245 -0.731966 1.397959 1.207253 -0.037652 0.586551 -0.021652 -1.033858 0.996177 0.258140 -0.014682 0.331012 -0.722308 0.198918 -0.168623 0.476223 -0.823582 -0.822107 -0.510562 -0.891589 -0.443164 -0.667045 0.087328 0.450556 0.378007 -0.235522 -0.796495 0.163981 -1.192241 -0.698231 0.578143 -0.143086 0.629022 -0.310865 0.211335 -2.220855 1.027674 0.930799 -0.303287 -1.036556 0.218974 -0.692572 0.048204 -0.278417 -0.571189 0.165733 -0.233919 -0.480393 0.615853 0.089480 0.386652 0.504692 -0.100583 1.725758 -0.637908 0.848475 0.418529 -0.095292 -0.277811 0.296706 0.228369 0.381366 0.690208 0.426584 -0.328228 -0.829893 -0.057215 -0.244494 -1.021317 0.828356 -0.219312 -0.643762 -0.486796 -0.445867 -1.145750 -0.480407 0.303200 0.730952 1.263416 -0.882155 0.774040 0.078483 0.355559 0.163377 0.801978 -0.081156 1.242893 0.277473 -0.367673 0.051784 -0.478798 -0.145250 0.112458 0.327158 -0.614587 -0.526326 0.608658 -1.294761 -1.185094 0.534634 0.403499 -0.113724 -1.397143 -0.400118 0.482070 0.374891 -0.453223 -1.020706 -0.483804 0.764352 0.168604 -0.479371 -0.101565 -0.432353 -0.119798 -0.476994 -1.125340 0.021467 0.327668 -0.384517 -0.653799 1.085090 -0.763094 -0.065046 -0.130545 0.369280 -0.501959 0.898325 -0.385413 0.669248 -0.099936 -0.088060 -1.180576 -0.329979 0.118244 0.648392 -0.257403 -0.036324 -0.338250 0.239190 -0.627882 0.375743 -0.264135 0.506640 0.751078 -0.135149 -0.634596 -0.374179 -0.255123 -1.471073 0.040578 -0.744724 -0.425153 0.727564 0.817224 0.955621 0.555362 1.346456 -0.537434 0.520321 -0.100740 -0.329083 0.816334 -0.413795 0.522644 -0.556911 -0.907444 0.559872 0.187961 0.370803 0.355089 -0.184893 -0.087013 -0.719612 -0.620010 0.330246 0.425778 0.236677 0.839913 0.741943 1.013451 -1.290895 0.464392 0.371118 -0.312537 0.317393 -0.340217 -1.009437 0.118410 0.395478 -0.099613 1.119773 -0.236173 -0.562105 0.078017 -0.146847 0.541161 -0.769623 0.333591 -0.734371 0.117012 -0.744469 -0.506443 -0.476043 -0.372370 -0.560747 -0.610715 1.224735 -0.902485 -1.202670 1.413579 -0.020540 0.685401 -1.540747 0.615606 -0.551860 1.280038 -0.442763 0.026047 -0.182377 0.268410 -0.603318 0.453701 0.527370 -0.670912 0.315666 1.322620 0.291673 0.304114 -0.081546 0.804450 -0.164650 0.579417 -0.660126 1.217339 -0.144460 -0.416273 0.050111 -0.489028 0.138910 -0.367080 0.238431 0.467930 0.837351 0.324352 0.260218 0.953332 0.588742 -0.506732 0.662137 -0.072452 0.269982 -0.405095 -0.110659 0.213063 0.495194 -0.140248 0.190148 -1.148607 -1.213622 -1.278270 -1.154770 0.121079 -0.004479 0.000527 -0.063625 -0.190212 -1.007601 -0.734006 0.618896 -0.454264 1.283599 0.430302 0.608534 0.802988 1.179254 -0.562490 -0.060496 -0.012033 -0.078402 -0.222610 -0.320506 -0.815520 0.988302 -0.499212 0.421349 0.988809 -0.143118 0.566835 0.417502 0.220122 -0.627533 1.289650 0.457035 -0.427144 0.837593 0.641132 0.912984 0.081589 -0.651011 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() const = 0.384725 -0.607427 1.697646 1.522725 -0.308722 0.379924 -0.094536 -1.204167 0.942973 0.560842 -0.175344 0.447422 -0.645586 0.616692 -0.508755 1.196945 -1.214214 -0.513408 -0.578376 -0.841362 -0.665188 -0.522874 0.481554 0.063552 0.733342 0.612777 -0.792484 0.081571 -0.400622 -1.524430 0.367058 -0.196497 0.486226 -0.063351 0.238792 -1.760008 1.283227 0.932136 -0.443634 -1.030807 0.351792 -0.323002 -0.227173 -0.248437 -0.332741 0.309143 -0.289008 0.418816 0.680743 0.585839 0.460677 0.633147 0.803365 1.735190 -0.451676 0.832033 0.508656 0.094524 -0.138668 0.177591 0.369975 0.547241 0.323779 0.407419 0.300541 -1.031606 -0.468567 -0.250229 -0.683536 0.953029 -0.336719 -0.588314 -0.957355 -0.610279 -0.629281 -0.123901 -1.835990 0.998782 1.360911 -1.053305 0.475448 0.199416 0.010988 -0.007236 0.391959 -0.111179 0.935158 0.504609 -0.106321 0.119823 0.374508 -0.422672 0.545311 -0.331496 -0.855389 -1.737178 0.732396 -1.271029 -1.123045 0.566846 0.701614 -0.343812 -0.375458 -0.454949 0.320846 0.246839 -0.541057 -0.821328 -0.044571 0.336057 0.555644 -0.495891 -0.115503 -0.117194 -0.026867 0.307405 -1.333580 0.137824 0.112938 -0.345612 -0.103377 0.732494 0.294182 -0.152500 -0.235858 0.305819 -0.345510 1.118094 -0.235650 1.098257 -0.282203 1.016126 -0.374052 0.756872 0.664225 -0.467176 -0.278937 0.187275 -0.459039 0.354573 -0.672709 0.496949 -0.561403 0.437766 0.984590 -0.141392 -0.942742 -0.356355 -0.638351 -1.331321 0.270750 -0.764741 -0.648963 0.364588 0.812173 0.599962 0.723020 0.701580 -0.915756 0.009282 -0.082342 0.094662 0.798013 -0.005820 0.460999 -0.467607 -0.875672 0.701266 0.340485 0.241379 0.241047 -0.056897 0.113112 -0.608609 0.017210 0.777185 0.505412 -0.312227 0.803569 0.662438 1.259370 -0.297885 0.265027 0.606111 -0.387089 0.202330 -0.140284 -1.188872 0.381236 0.186551 0.583007 0.959545 -0.160160 -0.070143 0.426615 -0.333900 0.346948 -0.600349 0.238233 -0.675916 -0.192721 -0.692842 0.375975 -0.160993 -0.123317 -0.250885 -0.345308 1.207226 -1.385429 -0.327243 1.423378 -0.396330 0.265300 -0.797835 1.144528 -0.496623 0.634514 -0.118136 -0.138534 0.098290 -0.229512 -0.784028 0.144881 0.564632 -0.179963 -0.024267 1.190646 0.274071 -0.119573 -0.087745 0.864611 -0.454292 0.897250 -0.533426 1.302420 -0.101055 -0.183353 -0.144867 -0.364175 -0.310938 -0.807121 0.211214 0.908782 0.261750 0.438732 0.318293 0.306560 1.009508 -0.688813 1.105728 -0.087071 0.090131 -0.677714 -0.153623 0.436164 0.369672 -0.434507 0.526691 -1.117982 -0.979156 -1.712222 -0.456887 -0.205581 -0.161029 0.491174 -0.545640 -0.437626 -0.509059 -1.113233 1.469569 -0.461378 -0.051417 0.693526 0.432745 0.706365 1.101063 -0.226096 0.291604 -0.503804 -0.037528 0.222469 -0.283083 -0.521629 1.014448 -0.382280 0.010257 1.156499 -0.313938 0.603607 0.081295 0.540510 -0.566947 1.088086 0.321181 -0.256730 0.775367 1.060093 0.937226 0.108889 -0.673299 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.082294 -0.246031 0.510695 0.488137 -0.047618 0.120684 0.014242 -0.276361 0.369542 0.295450 -0.029628 0.074259 -0.276483 0.154065 0.141442 0.400264 -0.342268 -0.208923 -0.091803 -0.231410 -0.205199 -0.232616 0.130523 -0.039239 0.177448 0.171365 -0.218343 0.003549 -0.104077 -0.440528 0.167248 -0.132359 0.231869 0.170539 0.081525 -0.750718 0.372907 0.219179 -0.143299 -0.354668 0.055053 -0.124320 0.121816 -0.073899 -0.043758 0.182643 0.020196 0.004802 0.247364 0.191981 0.211856 0.002641 0.203569 0.493740 -0.185570 0.227877 0.127340 -0.082997 -0.091565 0.008249 0.124448 0.082619 0.211284 0.207205 -0.026001 -0.295701 -0.141665 -0.162536 -0.383548 0.276624 -0.088107 -0.113423 -0.340364 -0.236187 -0.062768 -0.144410 -0.696350 0.285410 0.506761 -0.327810 0.259352 0.132843 0.110696 0.035447 0.179691 0.010198 0.323784 0.119914 -0.163357 0.149706 0.171858 -0.234637 0.136765 0.055276 -0.145948 -0.270614 0.158281 -0.095473 -0.329377 0.251161 0.151518 0.069974 -0.377696 -0.128948 0.139948 0.191616 -0.207747 -0.341545 -0.118207 0.038041 0.121701 -0.133577 -0.095743 -0.094572 -0.153718 -0.029233 -0.419400 -0.058955 0.025342 -0.208105 -0.096031 0.277274 -0.058879 -0.001453 -0.045500 0.082264 -0.142193 0.473408 0.018281 0.343434 -0.007250 0.096038 -0.420362 0.101685 0.204612 0.110912 -0.001006 -0.037017 -0.165546 0.040418 -0.250285 0.119489 0.019310 0.208386 0.560322 -0.032966 -0.290440 -0.130436 -0.130672 -0.505482 0.165139 -0.303704 0.107229 0.196501 0.277097 0.190770 0.259761 0.408460 -0.379639 0.108175 -0.168787 -0.027704 0.263471 0.216618 0.202983 -0.154289 -0.201899 0.173752 0.207378 0.040124 0.192094 -0.160016 0.052015 -0.216368 -0.036747 0.277211 0.137702 -0.095511 0.206139 0.160323 0.612279 -0.141804 0.079184 0.203687 0.004760 0.047508 0.000318 -0.359079 0.179259 0.032551 -0.007944 0.187168 -0.067074 -0.115369 0.077652 -0.145036 0.107132 -0.198260 0.097796 -0.203478 0.032842 -0.250883 0.080677 -0.164719 -0.126816 -0.004232 0.076959 0.406183 -0.175182 -0.120179 0.362496 -0.151500 0.108756 -0.294721 0.512937 -0.197185 0.221318 -0.278301 -0.127600 -0.042682 0.049427 -0.079342 0.007341 0.188371 -0.005930 -0.065190 0.424651 0.130530 -0.042393 0.032929 0.300521 -0.001711 0.220228 -0.069864 0.400471 -0.050980 0.122900 0.016029 -0.136781 0.027761 -0.133262 -0.036365 0.298451 0.220178 0.016371 0.135582 0.102914 0.240186 -0.213049 0.279704 0.037598 0.235852 -0.198088 -0.008569 0.061182 0.193960 -0.157040 0.106386 -0.332303 -0.289133 -0.260274 -0.116655 -0.213745 0.267348 0.089384 -0.063450 -0.031064 -0.145285 -0.226512 0.416502 -0.166738 0.123899 0.058546 0.113409 0.278454 0.379983 -0.081137 -0.152472 -0.141994 -0.116823 -0.005993 0.008157 -0.183652 0.309360 -0.229977 0.021435 0.276249 -0.126416 0.069461 0.065243 0.351575 -0.190909 0.421660 0.139215 -0.024328 0.339729 0.347359 0.437828 -0.023971 -0.196841 -PE-benchmarks/subset-sum.cpp__printSubset(int*, int) = -1.013313 -1.649633 1.411465 1.278644 0.427146 1.049395 0.613449 -0.464550 1.077101 1.113732 -0.694288 0.831350 -1.103206 -0.361890 0.211596 0.234049 -0.569111 -1.211988 0.379042 -0.182546 -0.167259 -1.199767 -0.625047 0.959755 0.196735 0.283821 -0.406184 0.198729 -1.919067 -1.555218 0.291754 -0.236738 0.765015 0.269866 0.386972 -2.576989 0.970712 1.484308 -0.108463 -1.999475 -0.033436 -0.743145 -0.194424 0.260150 0.195571 0.782054 0.723181 0.407081 -0.042126 0.326375 0.321584 -0.555311 0.328118 1.743281 -0.039646 1.550295 1.573318 -0.097313 0.192754 0.286177 0.380394 -0.374326 1.081250 1.155812 -0.904033 -0.152877 0.136782 -0.110443 -1.364948 0.506439 0.460095 -0.581544 -0.618077 -0.468397 -0.671845 -0.393646 -0.162415 0.288218 2.163357 -0.522681 2.350403 0.937670 1.520680 -0.134195 1.302009 -0.178055 1.515051 0.478576 -1.395811 0.002218 -1.495670 -0.853841 -0.126694 1.009990 -0.676837 0.409897 0.469198 -0.863229 -1.549774 0.843579 -0.367027 -0.056182 -1.348701 0.250162 1.001482 0.613852 -0.453218 -1.569956 -1.218625 0.703915 -1.129460 -0.711077 -0.256860 -0.007139 -0.413350 -0.180938 -1.128620 -0.412621 1.178835 -1.067202 -0.733642 1.293586 -0.736658 0.957139 -0.236524 -0.049859 -0.004144 0.596873 0.626131 0.254722 0.687753 -0.991957 -2.351574 0.213571 0.157756 0.746605 -0.595397 -0.271482 0.648235 0.468947 0.220141 0.653005 -0.486794 1.148538 1.211660 -0.166163 -0.630156 -1.427094 0.019101 -1.086730 0.557411 -0.851114 -0.113796 -0.010565 1.178732 0.236791 0.229881 1.492224 -1.168053 1.183738 -0.257138 0.274407 0.131930 0.128882 0.541513 -0.751322 -0.978748 0.737707 1.255806 0.215392 0.519345 -0.729053 -0.027239 -0.644582 -1.295444 0.816608 0.075126 0.256080 1.365054 0.638833 2.823811 -1.526199 0.267356 -0.110815 -0.016056 0.206708 -0.157427 -1.438868 0.755424 0.235618 0.437997 1.595758 -0.049629 -0.873720 0.151016 0.134622 0.121655 -1.086586 1.226282 -1.107162 -0.056431 -0.434840 -0.086039 -0.805984 -0.874275 -0.731339 0.273756 1.703782 -0.156794 -1.812627 0.721485 -0.552959 0.660782 -2.217603 1.078021 -0.865463 0.959580 -0.837556 -0.400620 -0.206636 0.508157 0.138381 0.136690 0.732429 -0.968993 0.986499 1.130625 0.269689 0.391717 0.602105 0.473785 -0.074428 -0.511836 -0.748131 0.700557 0.005780 -0.125237 -0.240570 -0.714123 1.244343 0.413160 -0.399623 0.380291 1.496171 -0.580349 0.200757 1.153955 -0.173065 -0.726398 0.342775 0.222060 1.240131 -0.599623 -0.278924 -0.829372 0.052726 0.144029 0.545321 -1.558278 -1.010496 -0.288627 -1.743327 -0.696799 0.609225 0.534939 0.702076 0.423568 -1.948063 -0.644939 1.071590 -0.408833 1.378567 0.536442 0.949088 1.144625 0.791031 0.007084 -0.779255 -0.259544 -0.077799 -1.169274 -0.349281 -0.353946 0.608077 -0.831470 1.291893 0.559971 -0.098925 0.261718 -0.201710 1.256181 -0.877713 1.868451 1.056740 -0.984630 0.276049 0.484385 1.877471 -1.089750 -0.923021 -PE-benchmarks/subset-sum.cpp__comparator(void const*, void const*) = -0.918225 -1.128367 1.578227 1.256019 0.502173 0.942406 0.367443 -1.087191 1.296231 1.324370 0.000247 0.629402 -0.869840 -0.076122 -0.669003 0.691822 -0.351210 -1.108318 -0.225978 -0.985020 -0.526358 -0.887577 -0.248504 0.471023 0.362602 -0.986715 -0.800975 0.029825 -1.948557 -1.819442 0.082921 -0.145913 0.484741 -1.558305 0.144245 -2.069653 1.226452 1.426888 -0.392233 -1.476194 0.226646 -0.795670 -0.002751 0.323782 -0.206451 0.215468 0.007593 -0.657487 0.508990 0.375468 1.050196 0.624593 0.318864 2.516044 -0.677925 1.374478 0.693303 0.147488 -0.037961 0.847156 0.296188 0.166958 0.807802 0.530555 -0.336970 -0.600105 -0.128746 0.180577 -0.996491 0.777077 -0.356405 -1.223003 -0.454980 -0.300414 -1.276937 -0.630396 -0.792260 0.364969 1.518724 -0.940721 1.367850 0.464340 0.822478 0.266516 1.210910 -0.181824 1.555897 0.330248 -0.739245 -0.292952 -0.450576 0.278398 -0.019725 0.550944 -0.834339 -0.564369 1.000006 -1.188435 -1.693941 0.972515 0.191431 -0.140489 -1.572470 -0.297253 0.653733 0.451066 -0.728634 -1.493616 -1.019227 1.211691 -0.200413 -0.689574 0.203538 -1.104222 0.082362 -0.092098 -1.101321 -0.097059 0.735910 -0.660827 -1.459809 1.475828 -0.451988 0.279204 -0.112144 0.427032 -0.308984 0.543533 -0.154094 0.968932 -0.326342 -0.037560 -2.696163 0.190071 0.274576 -0.253214 -0.294636 0.632645 -0.126606 0.447770 -0.311047 1.029121 -0.860609 0.953824 0.749092 -0.168589 -0.643518 -0.747871 0.211538 -1.133094 0.203192 -0.790694 -0.877742 0.131783 1.063759 0.867486 0.447867 1.256176 -0.753431 0.793442 -0.089286 -0.152455 0.675219 -0.993839 0.600872 -0.709384 -1.254834 0.474080 1.093232 0.305022 0.234069 -0.300290 -0.109793 -0.645980 -0.567794 0.152986 0.345082 -0.022259 1.301351 0.888199 1.986960 -1.994781 0.358038 0.164190 -0.464363 0.427021 -0.773607 -1.441729 0.107202 0.623644 0.149534 1.518131 -0.196342 -0.723459 0.248774 -0.268649 0.591190 -0.923741 0.681885 -1.072403 -0.455529 -0.335729 -0.627195 -0.676972 -0.497329 -0.809069 -0.721166 1.488794 -1.146034 -1.373040 1.479793 -0.311678 0.102741 -1.813486 1.259466 -0.673014 0.860536 -0.482990 0.151263 -0.547287 1.402929 -0.454799 0.390451 0.695703 -1.261942 1.079853 1.857273 0.251239 0.691629 0.091671 0.903564 -0.444491 0.018081 -0.924718 1.404674 -0.272278 -0.737567 -0.118550 -0.700437 0.573311 -0.135692 0.139102 0.266032 1.024480 -0.448643 -0.074440 1.241807 0.494107 -0.571495 0.916355 -0.056586 0.548572 -0.601281 -0.052615 -0.154936 -0.138796 -0.034017 0.353001 -1.568839 -0.790478 -1.151959 -1.224749 0.306870 0.082871 -0.006342 0.029380 -0.053991 -1.761149 -1.054289 1.248572 -0.562521 0.440779 0.662437 0.921117 1.059592 1.290417 -0.126274 0.032614 -0.570217 -0.493766 -0.546675 -0.905046 -0.137887 0.878395 -0.751790 0.905270 0.562912 0.156098 0.630215 0.677265 -0.517180 -0.839417 1.455921 0.769754 -0.236096 0.708094 0.990859 1.753993 -0.957137 -0.824537 -PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -13.974359 -17.240389 14.697422 12.721254 5.691645 12.731564 3.598023 -5.405060 6.376654 15.132763 -4.482301 12.059302 -9.011393 -5.194039 -0.844138 1.373944 -1.099017 -11.274480 1.059411 -4.040858 -2.811253 -8.429135 -11.450089 14.874799 1.445022 -9.134104 -6.518012 3.080819 -22.060948 -18.332779 -6.631022 0.064879 7.166135 -14.799912 4.659136 -23.438104 10.446794 19.970161 -0.324849 -18.519229 0.306146 -6.090889 -2.918537 8.235986 -8.014123 3.562978 5.916471 -6.163465 -2.786120 3.344398 7.637482 0.765466 6.825742 24.182993 4.681038 17.985774 16.343778 -0.148083 1.252089 3.361626 3.769436 -4.165718 9.931273 4.903527 -5.604504 -1.291014 1.613188 5.815615 -9.950484 1.538221 2.381849 -13.678648 0.066424 -5.645838 -11.693023 -6.492215 14.529136 -1.454199 18.577130 -5.699211 21.194505 9.074921 10.985568 3.167713 15.548358 -2.390239 15.438345 4.872794 -10.521765 1.117546 -6.657918 -0.544527 -0.058486 14.464536 -11.614291 -0.216191 8.294928 -13.089986 -18.556338 12.545783 -3.272464 -4.020173 -13.845093 -4.554359 8.318122 5.168410 -7.092863 -14.894988 -13.492095 12.764489 -8.227114 -9.896998 -1.903469 -4.005244 1.564944 2.181987 -10.425757 -0.755174 15.146639 -8.949088 -10.873178 14.792264 -4.960894 12.128285 -3.065932 2.213313 0.204709 2.148920 4.977552 3.716933 -4.282256 -7.728405 -19.589239 -3.137114 -2.798644 -4.838405 -6.233236 -1.338701 7.877657 6.685792 7.087654 16.082667 -7.722777 14.005134 7.959129 3.676807 -4.804327 -14.844884 -3.567935 -9.940759 1.381568 -6.949609 -11.779562 1.991484 11.012626 -0.218757 -1.742888 12.183160 -2.475048 10.919414 0.346622 -1.343382 0.978003 -14.061971 4.463766 -8.072857 -13.151485 8.492164 15.324933 6.018591 4.202484 -4.518689 -0.885930 -2.726721 -11.410954 2.623011 1.145315 4.069549 15.999247 8.283455 34.904754 -12.364439 1.876452 -5.656276 -3.534142 4.652482 -7.643037 -14.523835 -2.376865 5.541688 0.753940 22.763195 -0.641766 -9.648596 4.210213 0.632092 2.255355 -12.189804 17.174253 -11.254550 2.113731 -1.470095 -8.338154 -8.595551 -4.957677 -13.131338 -4.854403 17.619109 -13.510972 -19.818591 7.192480 2.108250 4.975869 -22.644187 12.612277 -6.972788 16.568165 -4.963581 -4.156036 -0.986180 7.890883 -0.049101 7.055392 7.796125 -12.307008 9.945855 11.000118 0.525062 5.935796 3.823730 3.914647 -3.399916 -4.900416 -11.188264 9.802516 0.318637 -5.964260 -4.902859 -7.089230 10.392854 4.276915 -2.091768 -8.359054 11.296082 -9.663754 -5.677921 14.666617 -3.634085 -6.396553 6.010424 1.267019 10.579882 -7.206219 -1.888544 -8.957744 2.538043 6.004591 4.689867 -17.390878 -3.379240 -12.439922 -16.066847 -3.025827 9.552633 3.036496 6.201901 1.123738 -18.505210 -10.436518 19.782946 -4.654276 15.600508 9.490714 13.517584 13.408258 7.144962 5.692723 -4.134738 -6.053649 -4.071101 -10.630683 -5.675236 0.543752 4.729874 -6.606775 14.906834 2.973294 3.304190 7.550744 3.939638 -4.718416 -9.744337 16.390103 10.244971 -9.803920 1.367130 7.143687 15.380246 -20.306402 -9.955510 -PE-benchmarks/subset-sum.cpp__generateSubsets(int*, int, int) = -5.332338 -7.738298 7.283061 6.308254 2.539062 5.631136 1.860715 -3.329811 4.063249 6.370015 -2.278386 5.168414 -4.206290 -1.518826 -1.269822 1.325786 -1.645550 -5.630796 0.333909 -2.226888 -1.566238 -4.622139 -4.080653 5.797789 0.980341 -2.968458 -3.371964 1.221454 -10.257151 -8.757342 -1.204868 -0.378488 3.274463 -5.285628 1.844067 -11.838561 5.278932 8.470163 -0.572938 -8.806859 0.174627 -3.058979 -1.628700 2.814527 -2.347233 2.172026 2.284682 -1.600899 -0.383856 1.715322 3.479727 0.458803 2.504930 11.291917 0.616729 8.308709 7.152720 0.109568 0.847270 2.022603 1.883692 -1.085699 4.666133 3.568867 -2.482329 -1.180066 0.453030 1.698220 -5.100601 2.156889 0.876168 -5.211897 -1.186815 -2.177453 -5.659310 -2.602007 3.814840 0.389004 9.429246 -2.835999 9.822710 3.992817 5.836827 0.708761 6.822115 -1.111317 7.683561 2.480509 -5.222979 0.193434 -4.224634 -0.942664 -0.247532 5.791843 -4.947357 -0.640018 3.635396 -6.901408 -8.486035 5.312375 -1.042476 -1.364604 -6.629553 -1.370780 4.316759 2.149616 -3.107895 -7.281528 -6.156395 5.381282 -3.745594 -4.222864 -0.402228 -1.973384 0.254752 0.721611 -5.291882 -0.882453 6.343732 -4.259804 -4.998167 6.869753 -2.275262 4.657548 -1.428437 0.896062 -0.372238 1.543637 1.621827 2.384404 -0.792920 -2.941917 -10.587636 -0.555869 -0.259344 -0.878294 -2.947946 -0.588532 2.827917 2.990880 1.770543 6.289605 -3.650049 5.815940 4.600775 0.707517 -3.009416 -6.588256 -0.687555 -5.241854 1.103078 -3.651426 -4.900621 0.298595 5.505088 1.039789 0.491414 5.857667 -2.446879 5.208669 -0.283659 0.060660 1.055177 -5.259474 2.226243 -3.637966 -6.104841 3.942502 6.451362 2.391928 2.203036 -2.549983 -0.412928 -2.058055 -5.474350 2.131409 0.998658 1.540465 7.287482 3.824975 14.689257 -7.222269 1.315435 -1.304966 -1.408537 1.924298 -2.937159 -7.044486 0.446854 2.285474 1.190930 9.813315 -0.404416 -4.249604 1.649915 0.313602 1.400367 -5.486099 6.661645 -5.375341 0.242763 -1.516860 -2.761778 -3.852273 -2.529490 -5.164761 -1.906729 8.290234 -5.477078 -9.052090 4.643736 -0.512244 2.307656 -10.798490 5.364350 -3.517461 6.736002 -2.566992 -1.360528 -0.877381 3.735535 -0.649128 2.971977 3.723720 -6.032434 4.945981 5.938394 0.651359 2.788571 1.680060 2.494311 -1.454610 -1.878162 -4.888322 4.858945 -0.014735 -2.724641 -2.034068 -3.408676 4.763791 1.176583 -0.533535 -1.793414 5.626439 -3.444482 -1.349196 6.895767 -0.670519 -3.358289 2.771118 0.420832 4.523306 -3.390854 -1.072746 -3.488142 0.594645 1.597046 2.210487 -7.993180 -2.988640 -5.987884 -7.867879 -1.450998 3.007828 1.553770 2.444316 0.599110 -9.069003 -4.582462 8.095841 -2.302994 6.143930 4.312906 5.591871 5.926446 4.137794 1.252502 -1.725462 -2.747665 -1.452164 -4.802541 -2.798926 -0.802828 3.040683 -3.330333 6.513107 2.254498 0.745011 3.104452 1.976495 0.066528 -4.333234 8.304460 4.891644 -4.241929 1.152409 3.143298 7.981217 -7.345662 -4.633544 -PE-benchmarks/subset-sum.cpp__main = -1.322575 -2.569034 2.882818 2.338152 0.417194 1.517158 0.765008 -1.015841 1.548549 1.449100 -0.886601 1.681369 -1.592904 -0.094241 -0.768957 0.752734 -1.307213 -2.028390 0.154913 -0.702590 -0.621343 -1.472254 -0.742012 1.588453 0.671980 -0.159626 -1.223023 -0.057685 -3.119451 -2.360977 0.272990 -0.447613 1.237863 -1.050024 0.455396 -4.618436 1.724579 2.449096 -0.421269 -3.071327 0.337126 -1.162771 -0.313812 0.106199 -0.788045 0.580700 0.886992 0.310195 0.148486 0.692925 0.555473 0.168220 0.798289 4.220152 -0.120812 2.424217 2.407136 0.061091 0.071502 0.389679 0.831216 -0.358345 1.452306 1.274477 -0.706950 -0.745858 -0.225510 -0.222911 -1.822941 0.928996 0.246831 -0.955652 -0.862918 -0.610281 -1.956779 -0.763277 0.087407 0.873332 3.430153 -1.561713 3.096307 1.138828 1.954646 0.232450 1.794585 -0.022249 2.107779 0.959058 -1.546609 -0.050356 -1.574789 -0.339287 -0.007226 1.021750 -1.399078 -1.490783 1.397779 -2.363250 -2.741825 1.644827 -0.058318 -0.344852 -1.635210 -0.443686 1.343966 1.145258 -1.375012 -2.324587 -1.719750 1.264713 -0.799482 -1.236383 0.170212 -0.313368 -0.116799 -0.297456 -2.151813 -0.251971 1.743808 -1.553899 -1.025865 2.207165 -0.758449 1.430893 -0.441654 0.304322 -0.285769 1.298115 0.725416 0.785732 -0.048393 -0.592450 -2.904853 0.077316 0.393731 0.694956 -1.086414 -0.156793 0.575031 0.965063 0.283239 1.148658 -0.933707 1.599149 1.533485 -0.234202 -1.386101 -2.209062 -0.277573 -2.106324 0.342976 -1.480079 -1.239053 0.698167 1.917740 0.725603 0.553440 2.383336 -1.266741 1.674514 -0.178395 0.014213 0.546347 -0.927411 0.935200 -1.187176 -1.979801 1.259390 1.787556 0.847090 0.667735 -0.899326 0.071787 -1.126685 -1.546805 0.882822 0.836101 0.121415 2.236316 1.249977 3.587257 -2.397149 0.247478 -0.050343 -0.490359 0.423608 -0.632491 -2.586344 0.644002 0.593811 0.321103 2.695487 -0.105337 -1.459897 0.856139 -0.137559 0.405954 -1.622508 1.611531 -1.737382 -0.318432 -0.895450 -0.202139 -1.240905 -0.824081 -1.624159 -0.763747 2.887812 -2.137652 -2.513641 1.514504 -0.135464 1.033747 -3.520430 2.028516 -1.278304 2.347089 -0.625927 -0.472565 -0.175614 0.790958 -0.429300 0.543009 1.333657 -1.588578 1.297647 2.178516 0.494168 0.696582 0.674278 1.269467 -0.434945 -0.141893 -1.327799 1.534867 -0.235156 -1.095910 -0.291052 -1.052176 1.294592 0.148603 0.163500 0.505470 1.700592 -0.373226 0.472860 2.055225 0.345709 -1.318382 0.810257 -0.055238 1.896468 -1.207064 -0.299913 -1.082461 0.610901 0.129757 0.922319 -2.746217 -1.952124 -2.471088 -2.551681 -0.519349 0.401357 0.511462 0.286311 0.188494 -2.971300 -1.561095 2.125966 -0.916931 1.933621 1.616733 1.544827 2.110170 1.593035 -0.224329 -0.722080 -0.329861 -0.009634 -1.217865 -0.583174 -0.846854 1.059944 -1.451700 1.704907 1.452004 -0.107752 0.838131 0.472690 0.873486 -1.437207 3.163315 1.680418 -1.738730 0.693362 1.368419 2.728481 -1.462081 -1.633577 -PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -5.487333 -9.044415 6.528742 6.240744 2.944959 6.186240 3.932594 -1.395681 1.879710 6.601847 -2.768121 6.087875 -3.850672 -3.662918 -0.551046 -0.008116 0.363711 -5.334767 2.219658 -0.124520 0.826046 -4.195434 -6.152349 8.207374 0.589630 -2.091394 -1.538479 -0.313551 -11.869926 -7.394235 -1.910622 0.121420 3.376732 -1.521617 2.688033 -7.167457 3.474984 9.435930 0.466445 -8.816203 -0.383191 -1.811267 -1.783308 3.617943 -1.590949 3.512715 3.570349 -1.453838 -2.329134 1.924756 3.001540 -1.518058 5.071078 6.628420 3.015799 8.443571 7.385561 -0.027597 4.169890 0.656092 1.884055 -2.440107 4.333890 2.944225 -2.346931 0.398364 -1.058920 2.642286 -4.517512 -0.089088 2.332410 -4.260049 -2.430936 -1.239428 -4.664926 -2.273833 -1.123117 -0.964362 8.829554 -1.264289 11.822336 5.781569 7.122246 -1.268645 6.895442 -0.489580 5.393392 2.513008 -5.398886 1.828144 -6.715406 -1.275796 -0.879202 5.360049 -6.253225 1.878593 3.368448 -4.961372 -8.135481 5.778750 -2.156309 -1.996083 -3.187124 0.897440 2.809253 2.401811 -2.961046 -6.824993 -5.653646 5.623663 -4.486123 -4.317222 -0.985300 -0.156719 0.927380 0.559868 -3.352522 -0.460025 7.653899 -4.445945 -3.129352 6.151731 -0.791720 6.309398 -1.481567 -0.631118 0.524335 0.205527 4.197429 0.835603 0.167485 -5.996799 -11.377915 0.860347 -0.353466 -0.904703 -3.363753 -1.206232 4.785675 3.564939 5.843737 7.204916 -1.098730 5.449478 2.977506 0.644783 -1.667399 -7.991083 -1.454329 -2.190596 1.331803 -2.055181 -3.054602 -0.454207 4.650890 -1.244509 -0.726522 2.791077 -1.311606 5.061387 0.012520 0.775567 -1.080570 -3.729748 1.365888 -2.748288 -5.173925 4.177368 7.287042 3.039634 2.330251 -2.109272 -0.190382 0.034205 -4.976991 1.670736 -0.179176 1.482399 8.238797 3.553150 12.662186 -3.176542 -0.527879 -3.150785 -0.788612 1.478679 -2.478461 -6.511609 2.247662 1.304831 -0.018414 8.972083 -0.768358 -2.319001 3.083563 0.227938 0.438992 -5.699786 8.256194 -5.100915 -0.420346 -1.215167 -2.385397 -3.915053 -3.355191 -5.865366 -0.896019 7.916513 -3.165260 -6.878672 0.655362 -1.015563 0.252829 -8.170257 5.651340 -2.866079 4.634530 -1.545390 -2.684365 -0.745871 3.926298 0.977516 -0.230261 3.489385 -6.994966 5.448688 3.919131 0.087356 0.771275 3.116858 1.005458 -1.381541 -3.343092 -4.898851 3.082111 0.338334 -1.156073 -1.438252 -2.908276 5.814364 2.467480 -2.334193 -1.391008 5.098920 -4.030351 -2.991456 5.173087 -2.759665 -2.815736 0.441904 1.081127 5.087194 -3.367584 -0.994220 -5.575315 -0.933022 2.820446 1.527633 -7.497465 -1.115333 -2.884908 -6.087639 -2.233155 2.410803 2.825463 4.441267 0.978363 -9.578699 -5.511065 7.093779 -1.897979 1.892722 4.192662 4.873834 6.183638 2.037736 3.075170 -1.897513 -2.669246 -0.226361 -4.791446 -1.945938 0.571988 1.333930 -3.539282 7.344588 1.193234 0.955274 2.936634 0.507411 2.136941 -4.657100 8.663332 4.850082 -5.660436 -0.370064 2.282967 6.491539 -9.849983 -4.211000 -PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.876546 -1.017857 0.920345 0.733667 0.540435 0.634457 0.349080 0.054689 0.575886 1.075504 -0.482711 0.647732 -0.617249 -0.310051 0.309333 0.261322 -0.099229 -0.917265 0.427901 0.094490 -0.105550 -0.629093 -0.480552 0.505801 0.207840 -0.060184 -0.421066 0.010796 -1.198241 -1.359901 -0.239417 -0.154084 0.488102 -0.232424 0.288753 -1.258429 0.546521 0.885417 0.013814 -1.278893 -0.001211 -0.244405 0.007511 0.385625 0.224524 0.685832 0.871230 -0.018112 -0.083856 0.394849 0.250419 -0.505317 0.157575 0.882624 0.243397 0.901965 0.910628 -0.124758 0.099807 0.182085 0.262892 -0.534486 0.628328 0.627047 -0.593548 0.099238 0.142365 0.113560 -0.776396 0.257336 0.236275 -0.468616 -0.258291 -0.340096 -0.356253 -0.197586 0.334992 0.086172 1.315188 -0.224730 1.378366 0.650891 1.120715 -0.051378 0.672135 -0.228331 0.757463 0.301083 -0.894862 -0.117378 -0.707972 -0.652606 -0.317413 0.977627 -0.309534 0.627693 0.320387 -0.433120 -0.944672 0.597427 -0.342818 0.136083 -1.137775 0.227690 0.819613 0.648739 -0.156808 -0.867718 -0.865081 0.311885 -0.820306 -0.418219 -0.060853 -0.252549 -0.374887 0.158720 -0.645066 -0.389715 0.773221 -0.795804 -0.598152 0.698699 -0.522503 0.869122 -0.148464 0.081978 0.124101 0.262258 0.723168 0.203108 0.404337 -0.703788 -1.667565 -0.031233 0.014589 0.327468 -0.324789 -0.009506 0.346830 0.238617 0.142104 0.474740 -0.480003 0.882375 1.111386 -0.054432 -0.570777 -0.911159 0.156410 -0.454639 0.296768 -0.509938 0.027176 -0.024485 0.622288 -0.041281 0.013055 1.270420 -0.760157 0.735198 -0.185199 0.131808 -0.063869 -0.200309 0.284458 -0.472218 -0.536370 0.379917 1.116387 0.049888 0.392223 -0.602545 0.067598 -0.375680 -0.889321 0.540617 0.071221 0.250507 0.693322 0.238863 1.559131 -0.910453 -0.124031 -0.179867 0.079236 0.033529 -0.114321 -0.959997 0.388546 0.075028 0.412720 0.982195 0.040215 -0.691371 0.320857 0.071276 0.022864 -0.520505 0.839346 -0.761240 0.170610 -0.025514 -0.275242 -0.611615 -0.353060 -0.423655 0.186350 1.005685 0.233040 -1.368476 0.218383 -0.342689 0.373080 -1.479810 0.475673 -0.457548 0.531062 -0.488313 -0.067321 -0.243542 0.393334 0.394941 0.028747 0.404037 -0.434995 0.630826 0.692641 0.043356 0.173270 0.498106 0.215413 0.055145 -0.453214 -0.197265 0.217410 -0.076804 0.032518 -0.209420 -0.287772 0.850699 0.432973 -0.453469 -0.190238 0.800423 -0.683796 0.074924 0.703494 -0.251559 -0.481173 0.201267 0.179463 1.137624 -0.390972 -0.170233 -0.688082 0.085727 0.113834 0.326521 -0.948621 -0.483225 -0.046913 -1.389273 -0.550010 0.599495 0.269538 0.402483 0.205758 -0.935223 -0.347364 0.685197 -0.071232 1.194389 0.252868 0.552567 0.763083 0.371555 -0.050175 -0.623348 -0.339203 -0.288030 -0.823880 -0.346608 -0.009102 0.162929 -0.518892 0.797086 0.211504 -0.005110 0.085286 -0.063716 0.431694 -0.601983 1.131673 0.738474 -0.590292 0.081315 0.116269 1.402078 -1.105141 -0.616264 -PE-benchmarks/binomial-coefficient.cpp__main = -1.624754 -2.860942 2.866972 2.344282 0.033746 1.862123 0.810053 -0.885955 1.047642 0.186633 -0.912454 1.756246 -1.658186 -0.613981 -0.902245 -0.426809 -1.408550 -2.107537 0.044272 -0.606557 -0.225874 -1.427317 -1.585600 2.771494 0.291231 0.521272 -1.055134 0.153977 -4.068438 -0.926349 0.731427 -0.012581 1.406753 0.240955 0.929793 -4.678467 1.279926 2.958467 -0.177173 -3.198907 0.223180 -1.527472 -0.475441 -0.326834 -1.263374 0.593257 0.659930 0.186835 -0.374767 -0.136455 -0.270734 0.145710 0.401580 3.660729 0.293614 2.532881 2.667221 0.081387 0.659223 0.061994 0.663924 -0.336110 1.494171 1.032905 -1.293027 -0.584465 -0.122019 -0.407365 -1.737678 0.730983 0.853982 -0.936926 -0.795787 -0.678617 -2.793707 -0.872409 0.767878 0.930774 3.221413 -1.551845 3.421837 1.157701 2.250734 0.144446 2.370283 0.129977 2.365226 0.883670 -1.360741 0.381376 -3.185190 -0.195106 -0.171933 0.811817 -1.953598 -1.139259 1.389249 -3.269591 -2.866410 1.538188 -0.260809 -0.779565 -1.310275 -0.099719 1.090052 1.070501 -1.249105 -2.218624 -1.628017 2.101262 -1.153525 -1.176485 0.150886 0.536258 0.236669 -1.267034 -1.988398 0.367817 2.239018 -1.120689 -0.502858 2.630263 -1.114384 1.479332 -0.437573 -0.097267 -0.482496 1.362189 0.709992 -0.223604 -0.190693 -1.605884 -2.458308 -0.297657 -0.017406 1.748635 -1.525745 -0.895274 1.143067 1.133018 0.891819 0.837954 -0.574232 1.273106 0.613540 -0.378051 -0.963577 -2.738748 -0.815415 -2.129677 -0.258137 -1.083290 -1.343385 1.303285 1.880617 1.299846 0.272256 2.068804 -0.738314 1.812332 0.035303 -0.227516 0.219766 -0.639896 0.757926 -1.140189 -2.124500 1.449455 0.980412 1.579035 0.671425 -0.649851 -0.216923 -0.830490 -2.049107 0.851702 0.930980 0.844537 2.845784 1.842915 2.319244 -2.490347 0.241106 -0.544576 -0.782640 0.393181 -0.631442 -2.264477 0.694279 0.795267 -0.404748 3.116232 -0.377531 -1.152879 0.795830 0.195415 0.560073 -2.004444 1.748596 -1.711216 -0.276799 -1.388686 -0.436846 -1.462119 -1.124225 -2.464167 -1.674980 3.088377 -2.497968 -2.920038 1.267173 0.265364 1.529052 -3.616852 0.798782 -1.144017 3.041606 -0.222663 -0.534833 -0.115126 0.220052 -0.569059 0.459094 1.249872 -2.361703 1.202113 1.834570 0.530405 0.587726 0.760693 1.090321 -0.494647 -0.281884 -1.977127 1.346744 -0.205992 -1.236320 0.161971 -1.091943 1.445297 0.502080 0.295523 0.818217 1.994402 0.487978 0.253655 2.302932 -0.170433 -1.110955 -0.198297 -0.032768 1.540177 -1.141668 -0.442557 -1.484738 0.759312 0.656313 0.343538 -2.903517 -2.393772 -2.659302 -2.959555 -0.134117 -0.366366 0.402692 1.081117 0.143859 -3.497068 -1.821527 1.622729 -1.027207 2.775362 1.600007 1.521039 2.379101 1.606617 -0.535299 -0.587648 0.770844 0.691336 -1.379757 -0.162775 -1.631644 1.333572 -1.312992 2.104933 1.924413 -0.205448 1.416694 0.262929 1.627033 -1.643325 3.675020 1.722031 -2.828635 0.224084 1.117746 2.093406 -1.096246 -1.690189 -PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -5.317454 -9.695403 8.354987 8.316987 2.633276 6.380936 3.900569 -2.998388 3.752787 8.032805 -4.444937 6.531043 -4.655189 -2.834039 0.239923 2.179502 -2.007262 -5.457660 1.291325 -0.858819 -0.229173 -5.610804 -5.717090 7.489585 1.591936 0.706953 -2.301277 1.760377 -10.867262 -13.284877 -0.906965 -0.222834 3.921286 0.182234 2.271511 -12.519184 6.324413 11.082125 -0.214659 -9.615298 -0.165743 -1.897796 -4.256996 3.445844 -0.165568 4.633416 3.263159 -0.449015 -2.055696 2.610878 3.711049 -2.219605 6.227411 8.676316 1.565399 10.201016 10.368615 -0.273210 3.488061 1.232024 2.301346 -1.628356 5.043443 6.078927 -2.442435 -0.857563 -0.013127 2.064621 -6.366269 1.328923 2.105907 -5.715465 -3.540301 -2.934546 -4.031318 -1.636348 -3.144801 -0.726132 12.314657 -1.829242 14.659636 6.340139 7.927354 -1.926676 7.075523 -1.334043 7.307755 3.558770 -7.321521 1.402806 -5.733458 -4.171832 0.625785 9.929810 -7.128845 4.739324 3.910272 -6.060377 -9.144597 5.595261 -1.551712 -2.408503 -4.807386 1.184084 3.230474 1.097246 -1.711669 -8.729684 -7.221954 4.912914 -5.334287 -5.197784 -3.799831 1.173962 -0.391147 3.018547 -6.144110 -0.906287 7.579676 -5.429111 -3.873717 5.748042 -0.798957 5.942805 -2.337350 -0.179781 0.467325 0.266960 3.303923 2.732822 2.506442 -4.639458 -14.358346 0.626961 1.175320 0.743301 -4.543112 -1.772286 5.203596 3.400994 4.539682 7.945619 -2.869935 7.802541 5.175131 0.777175 -3.030800 -8.608088 -1.994867 -4.781860 3.623477 -4.039713 -3.456091 -1.555352 5.841721 -2.146978 -0.038896 5.501345 -4.642476 7.026433 -0.019511 1.757315 -0.307572 -3.677815 1.813992 -3.924940 -5.971622 5.661234 7.980384 1.638097 3.171002 -2.640803 0.019188 -1.761090 -6.923609 5.654033 -1.857593 0.663713 8.517710 3.678426 22.172145 -4.355786 1.566672 -2.175020 -0.606825 1.502602 -1.302115 -7.750036 3.676390 1.117707 3.477595 11.432533 0.317887 -3.209291 1.349485 0.348804 -0.124166 -6.518808 11.114888 -5.754483 0.084908 -1.137463 -2.241336 -3.178813 -4.060105 -4.533955 2.350485 9.395168 -3.862915 -8.878067 2.904816 -1.410190 1.108703 -10.642057 9.791577 -4.195155 5.373332 -4.180403 -3.723071 0.234073 3.187717 0.243802 1.127226 4.113291 -6.549207 5.525837 5.619586 0.297045 1.430021 2.804638 1.166222 -1.951924 -2.653513 -5.106353 4.098434 1.809554 -1.562448 -3.748949 -3.575714 6.425383 1.201013 -2.988100 -1.337466 7.084953 -4.692290 -3.138524 5.469586 -1.474350 -4.073121 3.033303 1.909592 5.487399 -3.884861 -2.102464 -4.349090 -0.779781 2.336871 3.411617 -8.563750 -1.823280 -3.262068 -7.770937 -4.676576 4.352398 5.620623 4.191136 1.047937 -11.015298 -6.136667 10.264667 -2.038438 3.494646 4.539434 6.620261 5.824394 2.084540 4.169285 -2.774192 -5.029232 0.419310 -5.232451 -2.179611 0.313707 2.690775 -3.935552 7.171022 1.777359 0.620805 3.134260 0.437775 4.418390 -4.843534 10.554858 5.023431 -5.910197 0.810772 3.456390 8.403178 -10.540923 -4.996764 -PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -1.466670 -3.254744 3.752143 3.475967 0.320171 2.333855 0.783448 -1.958059 1.923983 1.694377 -1.775663 1.894079 -2.203694 -0.651794 0.172960 0.613454 -2.145204 -2.365156 0.016488 -0.853058 -0.257682 -2.247815 -1.245477 2.601978 0.764982 1.727870 -1.234740 1.201422 -3.880678 -4.149095 0.938037 -0.214482 1.815565 1.740693 1.104782 -5.114410 2.877489 3.954851 -0.372288 -3.928820 0.218522 -1.464516 -1.539930 0.142130 -0.261939 1.985040 0.727689 0.764323 -0.095943 0.584855 0.477941 -0.603223 1.238818 2.937569 0.141971 3.522031 3.507651 -0.246560 0.847257 0.447530 0.757515 0.002385 2.159059 2.414435 -1.648905 -1.131738 0.295824 -0.181858 -2.847499 1.525931 0.877323 -1.786013 -1.570040 -1.334275 -2.020275 -0.432227 0.270435 0.897151 4.782705 -0.967092 4.652467 1.876825 2.530459 -0.705652 2.807340 -0.464833 3.694078 1.368423 -2.314343 0.156090 -3.159530 -2.393919 0.378084 2.460101 -2.289702 1.120338 1.196738 -3.563530 -3.523267 1.544503 -0.098460 -1.080658 -2.435588 0.523542 1.861881 0.641429 -0.316412 -2.991119 -1.616138 1.978175 -2.307984 -1.709759 -1.424553 0.824328 -0.601350 0.562538 -2.917194 -0.073411 2.312659 -1.632954 -0.866757 2.657145 -0.914302 1.304380 -0.836687 -0.037564 -0.390557 1.155244 0.438097 0.879111 1.387613 -1.414015 -3.500504 0.570667 0.639360 0.934765 -1.847940 -1.161187 1.296786 1.192932 0.179856 1.713522 -1.444583 2.496873 2.213818 -0.347019 -1.515339 -3.023522 -1.286170 -2.988515 0.906931 -1.796418 -1.234500 0.278209 2.668169 0.471431 0.858603 2.742289 -2.478739 2.294446 -0.212972 0.714426 0.648910 -0.432233 1.030072 -1.678020 -2.374155 2.337298 1.888273 0.804696 1.145482 -0.997473 -0.118388 -1.476905 -3.065443 2.596285 -0.108976 0.944558 3.284341 1.933269 5.840253 -2.275037 0.961208 0.100940 -0.378090 0.383108 -0.112501 -3.027135 1.638721 0.619367 1.690350 4.485590 -0.086007 -1.399907 -0.012438 0.566461 0.366242 -2.712035 3.103921 -2.312372 0.376695 -1.225153 -0.438146 -1.392154 -1.969120 -1.816855 -0.025529 3.930548 -1.448818 -4.137668 2.392432 -0.998263 1.709353 -4.667000 1.611853 -1.979466 2.802468 -1.171333 -0.964215 0.006962 -0.541981 -0.832416 0.587600 1.544569 -2.163452 1.863167 2.260586 0.725427 0.521439 0.750989 0.916391 -0.707801 -0.116226 -2.222360 1.939025 0.294806 -0.410926 -0.849345 -1.475475 1.756389 0.085406 -0.745516 0.749172 2.916555 -0.283177 0.067971 2.098957 0.282911 -1.811232 1.113579 0.581647 1.610525 -1.358448 -1.115461 -1.026810 0.211695 0.425682 1.330863 -3.670454 -2.430408 -1.941192 -3.924884 -1.516930 0.594097 1.890821 1.501733 0.414849 -3.856456 -2.056909 2.972106 -0.845591 3.546937 1.597534 2.164129 2.298830 1.796579 0.123629 -1.044299 -0.867904 0.576597 -2.035772 -0.674629 -1.514480 2.288416 -1.048922 2.499929 2.081616 -0.558873 1.338613 -0.806970 2.971060 -2.016862 4.308987 1.966750 -2.641796 0.641029 0.833733 3.088270 -1.985132 -2.175525 -PE-benchmarks/floyd-warshall.cpp__main = -0.734268 -2.359285 2.535531 2.413334 0.326804 1.351895 0.875006 -0.947571 1.230287 1.552104 -1.160883 1.543199 -1.399144 -0.214954 -0.261232 0.972216 -1.198751 -1.530992 0.175380 -0.293404 -0.230049 -1.453571 -0.707404 1.572871 0.743295 0.776801 -0.807437 0.231591 -2.464588 -2.931524 0.272349 -0.310423 1.102921 0.552144 0.519571 -3.244322 1.751307 2.485043 -0.246407 -2.523771 0.167402 -0.600067 -0.881643 0.161709 -0.095022 1.096020 0.740427 0.532065 -0.084909 0.802784 0.619615 -0.413096 1.512678 2.407628 0.052204 2.330609 2.420774 0.014913 0.716711 0.110174 0.738622 -0.179093 1.178927 1.620229 -0.470662 -0.620239 -0.354876 -0.045232 -1.696356 0.751034 0.329983 -0.834100 -1.384956 -0.708241 -1.072761 -0.260393 -1.616295 0.546035 3.330302 -0.977025 3.288576 1.411925 1.841569 -0.523660 1.408512 -0.164500 1.642340 1.019790 -1.619656 0.269088 -1.427961 -1.094314 0.268218 1.519073 -1.637645 0.055846 1.085734 -1.811264 -2.328048 1.280592 -0.048937 -0.536819 -0.784284 0.302843 0.830531 0.547125 -0.650824 -2.134521 -1.308222 0.858110 -0.796873 -1.205196 -0.711120 0.461596 -0.242251 0.443693 -1.951425 -0.271771 1.491502 -1.483322 -0.415838 1.424861 -0.193635 1.265968 -0.569266 -0.037955 -0.019671 0.795185 0.840373 0.900055 0.669336 -0.653509 -2.821365 0.583704 0.694934 0.548491 -1.156859 -0.224717 0.869849 0.820842 0.641475 1.324601 -0.631136 1.574141 1.307812 -0.198883 -1.195105 -2.009597 -0.721360 -1.630801 0.900412 -1.281761 -0.713106 0.066781 1.598968 -0.095207 0.440849 1.762874 -1.533253 1.489563 -0.054212 0.468939 0.248939 -0.340803 0.626340 -0.978505 -1.569312 1.514882 1.668849 0.373429 0.787638 -0.690857 0.138059 -0.847744 -1.388405 1.577959 -0.022016 -0.092620 2.054915 0.896691 4.216020 -0.949342 0.362947 -0.040871 -0.105310 0.272981 -0.137273 -2.238671 1.287335 0.118993 0.982460 2.418349 0.030216 -0.775868 0.606882 -0.131779 0.091411 -1.571339 2.173997 -1.445466 -0.165877 -0.754567 0.108868 -0.657012 -0.972396 -0.931553 0.473291 2.501619 -1.236468 -1.802343 0.995899 -0.354651 0.557932 -2.492971 2.398014 -1.145336 1.523834 -0.709709 -0.860781 0.177251 0.246971 -0.208994 -0.055989 1.146665 -1.196551 1.042360 1.525452 0.287080 0.102770 0.755755 0.687249 -0.450760 -0.091135 -1.070584 1.151689 0.309859 -0.471280 -0.599275 -0.884731 1.224396 -0.086377 -0.509152 0.606417 1.640515 -0.464915 0.019373 1.072150 0.251533 -1.241107 0.835119 0.304473 1.462761 -1.115909 -0.471803 -0.838232 0.107152 0.115282 1.037722 -2.240471 -1.312300 -1.379941 -1.860120 -1.189435 0.450596 1.399061 0.523184 0.140719 -2.481822 -1.659850 2.278141 -0.660485 0.859858 1.273518 1.390067 1.558293 0.903652 0.437695 -0.648383 -0.887139 0.378272 -0.959816 -0.308903 -0.447172 0.897514 -1.166712 1.361359 1.138360 -0.203645 0.695390 -0.122724 1.593279 -1.232849 2.867341 1.300571 -1.579552 0.580771 1.069979 2.126947 -1.659108 -1.387817 -PE-benchmarks/subset-sum-problem.cpp__isSubsetSum(int*, int, int) = -8.236063 -14.931881 11.117520 10.761395 4.550772 10.738291 6.048238 -2.992579 3.408222 11.725822 -4.361719 10.464087 -6.306303 -5.938755 -0.533667 0.351693 0.111479 -8.024029 2.851671 -0.903229 1.070759 -6.869500 -9.389757 13.445110 1.562326 -1.159853 -2.833625 -0.627432 -18.744620 -13.500705 -3.031935 0.263347 5.719110 -1.113428 4.358938 -11.207193 5.969539 16.058099 0.426163 -14.557328 -0.370681 -2.377601 -3.260393 6.735034 -1.755028 5.989270 5.265948 -2.520710 -3.434755 3.434096 5.208235 -2.022489 10.058981 10.108966 5.089921 13.811171 12.370043 -0.131404 7.307976 1.157676 3.084687 -3.401944 7.036106 4.778383 -3.134891 -0.198241 -1.760567 4.793363 -7.409738 0.300176 3.420214 -7.754342 -3.852366 -2.873943 -7.426007 -3.636622 -3.286586 -1.220608 14.750570 -1.775042 19.290965 9.995384 10.687455 -2.149567 11.420223 -0.987855 8.895860 4.341401 -8.624882 3.616412 -10.223383 -2.919136 -0.436878 9.026342 -10.485910 2.817943 5.858354 -9.220827 -13.673966 9.587021 -2.847327 -3.576900 -5.036227 0.557109 4.462834 3.370277 -4.758492 -11.269916 -8.974024 8.656406 -7.242928 -7.355921 -2.142886 -0.351577 1.573216 2.805317 -5.952923 -0.387764 12.031379 -7.102001 -5.166615 10.009617 -0.298522 10.066063 -2.598235 -0.448032 0.605023 -0.484592 6.501990 2.524698 0.584357 -8.160179 -16.952154 1.977010 -0.693414 -2.902418 -5.705216 -2.806885 6.923672 5.873766 9.536410 12.617824 -2.134269 9.165310 5.657435 1.424631 -2.614884 -13.220655 -2.484356 -4.512859 2.597334 -3.142127 -5.108084 -1.727437 7.611316 -2.530955 -0.796485 3.122289 -2.652076 6.843075 0.095077 1.563218 -1.179168 -5.500061 2.313950 -4.511460 -8.732468 6.582932 12.685303 4.647716 3.874571 -3.053177 -0.469448 0.352288 -7.414007 3.012126 -0.703146 1.804204 13.963354 6.216966 22.036739 -4.749956 -0.766927 -5.010739 -1.524744 2.668795 -3.939321 -10.945588 3.834941 2.243523 1.084447 15.135126 -1.332080 -2.972363 5.314985 0.348093 0.597304 -9.304791 14.010085 -8.696447 -0.784077 -2.293868 -3.672951 -6.366083 -5.395693 -9.482504 -0.509154 13.248532 -5.754294 -10.447183 2.011330 -1.620795 -0.192036 -12.956354 8.837167 -4.721874 6.418610 -3.070759 -5.100720 -1.064261 5.947003 0.786045 -0.925532 5.808443 -12.022231 8.847952 6.154606 0.174287 1.084419 4.526794 1.698891 -2.608154 -4.829025 -8.574349 5.637061 0.779088 -1.698195 -3.089783 -4.609689 9.645577 3.185070 -4.227085 -3.244361 7.925925 -6.629799 -5.933421 8.250171 -3.990204 -4.806530 2.032775 2.099140 7.760734 -5.693284 -1.626909 -8.442090 -1.549915 4.175200 3.424909 -13.065316 -1.104112 -4.351462 -8.847453 -4.231366 4.460335 4.785151 7.505110 1.093901 -15.930418 -9.611487 10.869815 -3.084425 0.759303 7.015195 8.264313 9.999000 3.514793 5.756637 -2.576191 -5.481199 -0.746496 -7.399123 -3.860504 1.088485 2.780966 -4.802986 12.050857 2.145607 1.397614 5.194621 0.615485 3.342785 -7.780129 14.141332 7.658952 -9.181705 -0.142247 4.176564 11.471810 -16.666593 -6.875436 -PE-benchmarks/subset-sum-problem.cpp__main = -1.935842 -4.463301 3.933699 3.579642 0.973224 2.948507 1.581193 -1.006554 1.645215 2.709361 -1.657036 2.942602 -2.279047 -1.408797 -0.286860 0.481889 -1.067791 -2.855928 1.019142 -0.161293 0.178214 -2.232466 -2.051540 3.637507 0.767016 0.885343 -0.990929 -0.138125 -5.390425 -3.745556 -0.059415 -0.291816 1.923750 0.889573 1.332118 -3.834809 2.152467 4.444546 -0.079191 -4.886988 0.047007 -1.125714 -0.884836 0.831835 -0.194377 1.925102 1.753312 0.453796 -0.716650 1.135964 0.559074 -0.772390 2.476772 3.091575 1.178533 3.895895 3.796629 0.004735 1.860986 0.209807 1.177457 -0.922616 2.237478 1.878168 -1.330509 -0.428270 -0.658381 0.394938 -2.553481 0.639594 1.025697 -1.606447 -1.604569 -0.807708 -2.139173 -0.741252 -1.594388 0.689709 4.784366 -1.243454 5.640526 2.767232 3.471323 -0.731801 3.114370 -0.153392 2.714904 1.552278 -2.624536 0.419669 -3.834015 -1.515404 -0.114539 1.449054 -2.765049 0.241377 1.811685 -3.114829 -4.129867 2.576933 -0.618417 -0.911298 -1.508462 0.522072 1.767713 1.596616 -1.371331 -3.290066 -2.162206 2.235307 -2.235976 -2.088489 -0.559492 0.473847 -0.078339 0.301174 -2.421988 -0.284970 3.332622 -2.346124 -0.839118 3.037346 -0.433397 2.731227 -0.871509 -0.328924 0.103761 0.844438 2.037184 0.649481 0.912559 -2.245360 -4.272504 1.357181 0.400908 0.151314 -1.875195 -0.508273 1.880841 1.722217 2.075237 2.451376 -1.027957 2.431497 1.641359 -0.239428 -1.441755 -4.035288 -0.820847 -1.879826 0.824080 -1.522947 -1.111972 0.408153 2.654027 -0.000729 0.265593 1.986312 -1.948727 2.152060 -0.121708 0.843525 -0.150899 -0.377852 0.917065 -1.539556 -2.622636 2.144023 3.363828 1.118813 1.118770 -1.226062 0.092502 -0.702470 -2.482618 1.584337 0.240818 0.480142 4.045085 1.802932 4.865447 -1.928409 -0.344975 -0.919224 -0.380997 0.472041 -0.762720 -3.706337 1.721133 0.424540 0.988098 4.224812 -0.360654 -1.240284 1.472244 0.153350 0.140175 -2.642012 3.473318 -2.763328 -0.524591 -0.971339 -0.286879 -1.877133 -1.877177 -2.731278 -0.236884 4.286559 -1.575083 -3.320984 0.972179 -0.968218 0.709409 -4.253034 2.025216 -1.783481 2.082770 -0.516508 -1.309094 -0.390846 0.718007 -0.008158 -0.772820 1.933642 -2.945583 2.430036 2.143236 0.406155 0.132177 1.607241 0.836846 -0.748767 -0.994623 -2.262975 1.581863 -0.077036 -0.569611 -0.543484 -1.497341 2.697025 0.680131 -1.186515 0.483759 2.537356 -1.025715 -0.347193 2.103346 -0.581807 -1.873122 0.557634 0.523197 2.702688 -1.750388 -0.587002 -2.400511 -0.200168 0.784619 1.357866 -4.114632 -1.903888 -1.688660 -3.248023 -1.454392 0.369123 1.608003 1.657864 0.452594 -4.677974 -2.785909 2.671908 -0.982087 1.290392 2.173179 2.239455 3.152603 1.445866 0.645193 -1.117723 -0.875125 0.195985 -2.226025 -0.910641 -0.502071 1.170932 -1.643069 3.209322 1.691396 -0.007409 1.278405 -0.719943 1.987618 -2.325767 4.597788 2.546268 -3.203068 0.097795 1.175175 3.548444 -3.721484 -2.415175 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__maxSumIS(int*, int) = -7.072045 -10.479956 8.595316 8.307697 3.248535 7.528244 3.693519 -4.101180 4.974040 9.546839 -3.493204 6.176338 -5.703055 -2.952249 -0.016821 2.004345 -1.283518 -6.433992 1.245846 -1.981301 -1.135214 -6.552794 -5.798749 7.700696 1.180389 -1.649707 -2.994316 1.581052 -12.387397 -13.779530 -1.294269 -0.269892 4.411835 -2.742469 2.139620 -14.579981 6.684132 11.560837 -0.520959 -11.044539 -0.107735 -3.315511 -3.125268 4.226991 -1.289166 4.121746 3.167697 -1.696539 -1.309997 2.382008 4.690755 -1.261687 5.255868 11.902270 1.190084 11.124222 9.959778 -0.106577 2.318804 2.543154 2.302112 -1.569238 6.347836 5.733762 -3.430889 -0.810619 0.484055 2.368183 -7.426049 2.158194 1.367581 -7.173513 -2.761346 -2.978931 -5.204883 -2.825436 -0.480582 -0.436567 12.696549 -2.627353 14.755909 6.129227 7.812992 -0.881811 8.821424 -1.730728 9.476115 3.262131 -7.878746 0.576530 -5.217124 -3.333828 0.211851 9.560918 -6.814342 3.361914 4.436071 -6.570003 -10.728312 6.612189 -1.939892 -1.968878 -8.214130 -0.267292 4.734862 2.113996 -2.994913 -10.005440 -8.494839 6.523124 -5.926030 -5.788069 -2.709818 -0.864539 -0.392710 2.380974 -6.349995 -1.554545 8.297015 -6.109880 -6.231117 7.849829 -1.578113 6.412326 -1.966783 0.440070 0.234243 1.044147 2.556624 3.173952 1.774738 -4.214842 -15.681169 0.070377 0.555012 -0.819850 -3.962023 -1.340084 4.787283 3.768254 3.588733 8.654802 -3.926907 8.558460 6.653522 1.187016 -3.139106 -8.797680 -0.672465 -6.107946 2.790497 -4.788795 -4.061400 -0.660373 6.887111 -0.884477 0.076296 6.717153 -4.896149 7.574058 -0.351350 1.172634 0.510972 -4.649307 2.501200 -4.659766 -7.420213 5.290565 9.137186 2.252343 2.805348 -3.106773 -0.604631 -1.929616 -7.901740 4.267758 -0.778907 1.225669 9.398982 4.481754 22.878723 -8.340995 2.048713 -2.295119 -1.304856 2.363586 -2.926682 -9.073203 2.415076 2.237746 2.463112 12.479011 -0.330607 -4.718708 1.440698 0.314052 0.766442 -7.340208 10.628611 -7.097204 -0.045257 -1.420142 -3.699376 -4.131933 -4.562998 -5.618271 0.737510 10.521164 -4.969781 -10.681560 4.898948 -1.769479 1.597054 -13.144264 9.309847 -4.629470 6.049823 -5.069078 -3.209373 -0.977830 5.434351 0.331084 2.137909 4.692154 -7.853891 6.795864 7.828633 0.443520 2.903827 2.822429 2.225975 -1.630350 -3.477113 -6.210441 5.861660 1.016974 -2.071640 -3.497812 -4.546611 7.391339 1.752478 -2.431174 -1.151419 8.506508 -5.733995 -2.923265 7.665832 -1.608234 -4.124012 3.887423 1.509053 6.069516 -4.103983 -1.647289 -4.896735 -0.620337 2.338630 3.568468 -9.925771 -2.680812 -3.890084 -8.840408 -3.675339 5.097231 4.358759 4.273264 1.379345 -12.338474 -6.070954 10.398024 -2.789275 5.447136 4.740604 7.635890 7.035961 4.255953 3.558636 -2.784658 -4.915826 -1.181156 -6.529836 -3.451813 0.489615 3.206650 -4.209118 8.832303 1.565501 1.332332 3.548786 1.156189 2.781163 -5.527375 10.984318 5.988366 -5.261825 1.377740 3.952990 9.944248 -11.089189 -5.623493 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = -1.113370 -2.823808 3.197334 2.850510 0.138538 1.766968 0.853711 -1.423515 1.607913 1.205633 -1.084394 1.632990 -1.916843 -0.176321 -0.623584 0.670405 -1.729452 -2.045730 -0.099789 -0.771671 -0.514282 -1.760649 -0.845783 2.075518 0.743012 0.777232 -1.217591 0.234769 -3.387093 -2.550126 0.717849 -0.222643 1.469716 0.348961 0.660833 -4.876906 1.993706 2.983401 -0.427786 -3.300226 0.368875 -1.357219 -0.810387 -0.187930 -0.684850 0.901775 0.572453 0.617220 0.037915 0.472234 0.300092 0.067935 1.037233 3.934035 -0.126674 2.777286 2.837320 0.119482 0.462823 0.354609 0.799400 -0.020421 1.589799 1.621990 -0.953677 -0.918296 -0.209948 -0.437344 -2.107900 1.215642 0.450183 -1.151919 -1.319575 -0.892754 -2.061388 -0.585022 -0.722336 1.155745 3.814908 -1.698727 3.569168 1.291341 2.024662 -0.156272 2.104015 -0.121548 2.528848 1.085530 -1.636664 0.070726 -2.281833 -0.979880 0.246580 1.100551 -1.898753 -1.001798 1.454572 -2.835958 -3.057478 1.539555 0.001056 -0.749865 -1.554772 -0.081612 1.232103 0.933820 -1.060741 -2.579123 -1.686391 1.646232 -1.024889 -1.395109 -0.367798 0.415796 -0.174193 -0.329387 -2.508163 -0.003335 1.879664 -1.506262 -0.743009 2.365870 -0.727453 1.322563 -0.545040 0.049491 -0.368977 1.447211 0.541117 0.725282 0.537560 -0.706995 -2.905326 0.374078 0.635650 1.107557 -1.381445 -0.412147 0.834235 1.082950 0.321215 1.185724 -0.910484 1.748641 1.395769 -0.386016 -1.420179 -2.514741 -0.693828 -2.475334 0.451614 -1.591536 -1.152749 0.831308 2.134476 0.882755 0.620131 2.434920 -1.731717 1.844348 -0.049885 0.222007 0.537584 -0.415540 0.887755 -1.318561 -2.280442 1.625370 1.509162 0.931239 0.709033 -0.708602 -0.077280 -1.195302 -2.012773 1.441189 0.576417 0.230975 2.712280 1.630747 4.018299 -2.450122 0.601003 -0.018909 -0.621091 0.424354 -0.480952 -2.777424 1.077207 0.587682 0.603973 3.201550 -0.194861 -1.277034 0.655621 -0.032447 0.422914 -1.981384 2.008553 -1.910068 -0.341991 -1.296685 -0.107037 -1.064960 -1.263013 -1.690748 -0.547604 3.285024 -2.218228 -2.751284 1.841565 -0.294978 1.170500 -3.719067 2.116253 -1.390286 2.371922 -0.734288 -0.759109 -0.031804 0.348646 -0.690491 0.381641 1.409536 -1.882429 1.267801 2.356044 0.545058 0.528845 0.723605 1.216532 -0.536153 -0.037562 -1.798578 1.785375 -0.017442 -0.995799 -0.368231 -1.220078 1.462485 -0.018763 -0.027178 1.177432 2.179189 0.068873 0.383877 1.976803 0.433249 -1.425999 0.853766 0.116667 1.626513 -1.300204 -0.500197 -1.031241 0.439417 0.190226 1.059562 -3.026499 -2.320608 -2.342455 -2.734489 -0.727951 0.085510 1.086927 0.619076 0.110153 -3.408961 -1.967289 2.152686 -1.062885 2.057673 1.657446 1.721800 2.202456 1.797439 -0.188326 -0.559861 -0.206086 0.484648 -1.316113 -0.504251 -1.180608 1.512103 -1.350888 1.873624 1.864350 -0.212666 1.243541 -0.046258 1.854119 -1.621464 3.688195 1.707329 -2.207794 0.687183 1.475875 2.579202 -1.286615 -1.811130 -PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -8.864496 -19.197114 19.403860 17.725006 3.109609 12.028016 8.425820 -6.967599 4.755289 14.543343 -8.152062 11.513454 -11.155730 -4.996513 -0.779124 4.904496 -6.425110 -11.971321 1.415040 -3.463096 -1.014060 -9.632753 -7.753675 14.556351 5.130943 2.355687 -5.395793 -0.362520 -20.632142 -23.782544 0.438608 -1.124690 9.182719 3.589209 3.104893 -23.531575 13.175851 21.609540 -2.020270 -17.791471 2.093817 -3.537150 -7.935367 4.632841 -4.745625 7.955239 6.306751 0.885337 -2.550527 6.216566 7.149100 -3.968665 12.977547 20.537957 3.575585 20.364241 20.576773 0.353486 6.557086 3.171834 4.780531 -2.762344 9.694790 8.833764 -3.325411 -2.689695 -0.969589 0.651854 -11.993194 4.300894 2.164635 -9.554862 -6.302503 -5.500443 -9.142769 -3.579265 -4.786341 2.068297 24.195636 -7.490953 27.150219 12.596851 11.599189 -3.612763 11.626305 -1.371931 12.528078 7.423269 -10.335744 2.555403 -9.990037 -9.133746 1.127288 15.124290 -14.160347 1.893788 10.278320 -14.499469 -19.766239 11.739844 -1.668272 -5.388501 -8.249876 -0.218378 5.537428 2.820549 -5.962586 -16.003775 -11.208338 8.839840 -9.035090 -9.229309 -6.434828 3.066846 -0.803346 6.961380 -14.088477 -0.418665 12.681883 -11.521253 -6.979550 12.768652 1.286466 12.249743 -3.623152 0.902809 -0.964381 4.494569 6.165701 6.002843 4.901871 -4.046835 -20.627723 0.671327 4.316515 1.018885 -8.182771 -4.412840 8.413260 7.298520 7.006797 14.952892 -5.150868 14.925357 9.964273 -0.081971 -7.808834 -16.141799 -6.202242 -13.021299 4.517108 -9.325241 -7.700143 -0.021918 12.232539 -1.555919 1.374257 12.773213 -8.928844 10.914032 -0.741924 2.147980 -0.524466 -8.767003 4.873609 -8.050222 -13.331158 10.566892 14.950141 4.761003 5.842281 -5.277398 0.281152 -5.885070 -13.670194 9.014349 -2.941084 -1.932530 16.261731 8.957147 34.797546 -8.577481 2.929094 -2.388775 -2.713967 3.012134 -1.771844 -17.655133 6.705737 2.373970 3.750159 21.732446 0.645854 -6.854807 5.070243 -1.474437 -0.513230 -12.978971 19.505574 -12.232902 -0.454105 -4.836588 -3.244399 -7.030900 -8.637797 -8.226515 1.419187 19.321771 -12.036731 -15.558719 7.540316 2.186385 1.757728 -21.752933 18.201144 -8.624671 12.190429 -4.835269 -8.766153 0.416382 4.672990 -0.319575 0.419078 7.401889 -12.674103 11.089766 12.886630 1.590374 2.912520 5.779870 5.370146 -4.717818 -2.873014 -10.880915 8.829922 1.886638 -6.626649 -6.273330 -6.918562 9.070477 0.524019 -4.094675 0.556325 12.049865 -7.062972 -4.078973 11.420717 0.143793 -8.948155 5.760438 3.340545 12.554085 -8.460965 -3.810521 -7.644798 -0.479534 2.747321 7.915890 -18.943957 -7.459332 -12.957368 -15.252299 -8.844619 6.569246 10.455084 6.400804 1.575370 -21.732878 -12.448920 16.796520 -5.765458 6.326759 11.519416 13.384243 13.954199 7.374348 6.449905 -5.079624 -6.626260 3.309067 -9.272442 -4.122610 -2.210117 7.007474 -6.964434 13.835797 6.245452 1.265605 6.977129 0.434728 10.889944 -11.041269 21.821217 9.981836 -12.859829 3.834056 9.114695 13.727946 -17.166949 -10.291430 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::queue >, void>() = 0.060676 -0.456717 0.944534 0.770424 -0.203297 0.231036 -0.081087 -0.524392 0.737878 0.017509 -0.221921 0.184805 -0.457092 0.325151 -0.257642 0.500179 -0.871054 -0.513470 -0.126933 -0.341204 -0.389668 -0.483396 0.205974 0.095416 0.267665 0.513612 -0.431568 0.170662 -0.341672 -0.435148 0.511093 -0.300232 0.298949 0.288022 0.216337 -1.288208 0.659647 0.297138 -0.228350 -0.685815 0.033329 -0.361281 0.081712 -0.472317 -0.154313 0.171244 0.055955 0.473019 0.418505 0.161417 0.002235 0.060252 0.075861 1.079785 -0.375056 0.412956 0.324436 0.000519 -0.077563 0.027235 0.271066 0.156384 0.300155 0.503211 -0.135606 -0.478107 -0.177245 -0.415257 -0.531218 0.628259 -0.067271 0.047479 -0.621305 -0.255153 -0.499256 -0.148704 -0.966445 0.680545 1.037373 -0.676762 0.451040 0.202434 0.473076 0.092191 0.327354 0.026504 0.732174 0.285536 -0.397311 0.124043 -0.218044 -0.223354 0.154503 -0.315586 -0.220738 -0.885695 0.251281 -0.891921 -0.638479 0.327497 0.242810 0.100441 -0.276462 -0.136474 0.451138 0.229286 -0.398484 -0.591786 -0.038941 0.064110 0.076965 -0.176456 0.140277 0.000826 -0.095269 -0.178450 -0.816999 -0.166183 0.094070 -0.382804 0.106450 0.559223 -0.153437 0.011498 -0.105547 0.040483 -0.182736 0.823533 0.042695 0.407034 -0.128955 0.224519 -0.383379 0.349135 0.318246 0.298524 -0.152827 0.009316 -0.142655 0.169624 -0.476376 -0.143147 -0.238845 0.135320 0.432842 -0.227916 -0.609654 -0.337394 -0.313889 -0.904663 0.180789 -0.555335 -0.250107 0.374926 0.557501 0.619409 0.498625 0.642256 -0.628035 0.256800 -0.229421 0.121849 0.441827 0.228918 0.361730 -0.281847 -0.410708 0.390987 0.126453 0.119189 0.280164 -0.431182 0.077453 -0.519258 -0.118783 0.487677 0.446228 -0.042473 0.454804 0.258991 0.265592 -0.530623 0.188532 0.399198 0.028073 0.056088 0.016864 -0.685218 0.466850 0.055741 0.219963 0.298006 -0.102864 -0.230300 0.136212 -0.112846 0.272332 -0.381661 -0.089514 -0.356887 -0.123740 -0.523048 0.466751 -0.288587 -0.155967 -0.171546 -0.208266 0.732355 -0.746914 -0.305962 0.793901 -0.149240 0.578242 -0.550724 0.365833 -0.384267 0.724423 -0.110630 -0.057328 -0.004000 -0.224310 -0.237114 0.046062 0.380143 -0.058278 -0.033271 0.546649 0.266825 0.106382 0.176585 0.562742 -0.082163 0.345271 -0.145847 0.533693 -0.084532 -0.134811 0.122661 -0.284972 0.038384 -0.232134 0.207618 0.681385 0.433463 0.378109 0.559697 0.255261 0.403284 -0.446551 0.230914 -0.101625 0.284615 -0.414277 -0.054546 0.028311 0.308824 -0.352326 0.198221 -0.672992 -0.928349 -1.017136 -0.342433 -0.295201 -0.172755 0.090006 -0.174838 -0.014783 -0.373403 -0.377535 0.614216 -0.310947 0.383493 0.291214 0.196558 0.508402 0.735426 -0.406234 -0.255731 0.090599 0.023011 -0.076064 0.131397 -0.688417 0.587664 -0.457253 0.127516 0.772152 -0.334697 0.081929 0.082276 0.628415 -0.325027 0.822617 0.396719 -0.369397 0.414195 0.512800 0.724194 0.418215 -0.460097 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = 0.247802 -1.022171 2.463501 2.221989 -0.248550 0.729948 0.066720 -1.792920 1.630194 0.980613 -0.169901 0.594561 -1.098957 0.784875 -0.494150 1.632898 -1.711727 -0.969707 -0.714040 -1.303565 -0.992001 -0.999606 0.596474 0.144550 0.957860 0.535711 -1.174555 0.023881 -0.914915 -2.072830 0.802980 -0.345434 0.839843 -0.154246 0.302004 -3.285149 1.927330 1.356361 -0.639446 -1.655428 0.425531 -0.676201 -0.212269 -0.308282 -0.404707 0.432335 -0.324261 0.610682 1.067942 0.748356 0.742312 0.820481 0.851860 2.906977 -0.887168 1.345954 0.719001 0.057988 -0.313050 0.460921 0.522980 0.726943 0.787323 0.816584 0.128753 -1.434604 -0.449736 -0.410474 -1.369032 1.463971 -0.231400 -0.882834 -1.344268 -0.743687 -0.962786 -0.355127 -2.179656 1.429772 2.219941 -1.500781 1.021414 0.355976 0.330751 0.006984 0.851811 -0.212397 1.747334 0.661762 -0.483701 0.026070 -0.067728 -0.663513 0.634175 -0.271892 -1.102535 -2.303422 0.935209 -1.611438 -1.793270 0.885975 0.870313 -0.325898 -1.184963 -0.694876 0.813404 0.436411 -0.847050 -1.508010 -0.479563 0.646937 0.369925 -0.799842 -0.121421 -0.463641 -0.168571 0.088929 -1.958875 -0.033415 0.295687 -0.659369 -0.562378 1.316343 -0.045701 -0.136989 -0.305052 0.475605 -0.548247 1.501126 -0.361075 1.509193 -0.031820 0.987972 -1.142670 0.811308 0.840403 -0.070097 -0.257977 0.137132 -0.683219 0.566558 -1.092851 0.782744 -0.651718 0.843739 1.578562 -0.208425 -1.332880 -0.574672 -0.433445 -2.009913 0.509881 -1.237995 -0.785476 0.443776 1.341847 0.954667 1.084707 1.222870 -1.458524 0.521534 -0.247619 0.215208 1.245524 0.006682 0.777119 -0.781034 -1.350814 0.908116 0.655957 0.340905 0.351113 -0.293107 0.079757 -1.002565 -0.412794 0.855315 0.683169 -0.347473 1.224658 0.973512 2.363951 -1.166677 0.541163 0.883228 -0.507272 0.381714 -0.263955 -1.844444 0.577042 0.359069 0.602532 1.615540 -0.284337 -0.537686 0.473905 -0.333775 0.543031 -0.959627 0.392663 -1.126429 -0.329114 -1.029700 0.315040 -0.470955 -0.383314 -0.512903 -0.425496 1.902189 -1.740034 -1.004898 2.244568 -0.812256 0.503869 -1.726978 1.868872 -0.847515 0.823773 -0.562440 -0.232376 -0.067849 0.124401 -1.098220 0.414272 0.880672 -0.516024 0.292586 2.074094 0.440393 0.133691 -0.064843 1.305850 -0.478246 1.034652 -0.875004 2.052947 -0.219277 -0.289389 -0.243884 -0.673616 -0.055111 -0.979902 0.289655 1.246300 0.779433 0.442290 0.513269 0.804444 1.292196 -1.018387 1.578641 -0.095241 0.288448 -0.902024 -0.156124 0.493856 0.400862 -0.628116 0.864306 -1.782697 -1.561470 -2.137287 -1.028817 -0.260942 0.068467 0.611809 -0.566547 -0.433344 -1.216970 -1.440913 1.806205 -0.717920 0.300323 1.001265 0.783157 1.135872 1.777846 -0.482573 0.185818 -0.631857 -0.201567 -0.016179 -0.587995 -0.833673 1.545864 -0.700901 0.406730 1.599950 -0.355584 0.767168 0.012036 1.019770 -0.887884 1.835567 0.640025 -0.366073 1.143968 1.460146 1.782084 0.048074 -1.035245 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::size() const = 0.040559 -0.493089 0.949800 0.838483 -0.255501 0.304300 -0.071798 -0.541112 0.576700 0.174246 -0.180134 0.226929 -0.408710 0.202676 -0.070496 0.466703 -0.713713 -0.348269 -0.198079 -0.419745 -0.360864 -0.353417 -0.004183 0.205368 0.288775 0.502514 -0.335178 0.119671 -0.304865 -0.549785 0.278293 -0.128232 0.310938 0.292606 0.311749 -1.228450 0.619067 0.517743 -0.188462 -0.732097 0.048634 -0.290229 0.027365 -0.215007 -0.172044 0.228149 -0.005898 0.317875 0.286258 0.214443 0.039887 0.118633 0.298232 0.992505 -0.126826 0.493077 0.410574 -0.031608 -0.056830 0.044061 0.229728 0.140288 0.264036 0.242682 -0.034619 -0.490812 -0.222107 -0.259100 -0.434480 0.457680 -0.048430 -0.313292 -0.533546 -0.466256 -0.406074 -0.198758 -1.207004 0.627030 0.851517 -0.697099 0.462828 0.225849 0.254321 0.089699 0.418295 -0.034776 0.669965 0.272417 -0.236317 0.263857 -0.012759 -0.383920 0.261393 -0.259023 -0.463341 -0.847335 0.354796 -0.750062 -0.675758 0.421335 0.276509 -0.072027 -0.299947 -0.223322 0.256899 0.228161 -0.376973 -0.513401 -0.087597 0.231432 0.155140 -0.258117 -0.059869 0.093828 -0.043349 -0.054227 -0.766546 0.055118 0.241674 -0.244873 0.039537 0.564014 0.012276 0.041083 -0.137198 0.051810 -0.178572 0.823456 0.015540 0.405728 -0.166511 0.281462 -0.371467 0.403263 0.259703 0.030077 -0.145047 -0.019979 -0.035584 0.212215 -0.291169 0.183366 -0.234536 0.286294 0.541126 -0.052199 -0.500968 -0.385485 -0.419090 -0.782783 0.143936 -0.454774 -0.227258 0.380709 0.496888 0.549135 0.318998 0.467420 -0.561687 0.082271 -0.172916 0.067589 0.352625 0.266574 0.301098 -0.310791 -0.413158 0.389503 0.192498 0.180835 0.266885 -0.222805 0.074430 -0.344926 -0.090652 0.505976 0.350749 -0.065260 0.558836 0.421529 0.625823 -0.314476 0.097466 0.194322 -0.175871 0.095194 -0.031384 -0.647472 0.286384 0.110030 0.199476 0.498862 -0.139231 -0.025529 0.168331 -0.152345 0.179428 -0.368578 0.115804 -0.413068 -0.107872 -0.424820 0.312787 -0.293838 -0.153210 -0.267222 -0.223274 0.757700 -0.721586 -0.245665 0.718040 -0.198832 0.363904 -0.480559 0.534293 -0.322896 0.554608 -0.170329 -0.164689 0.010523 -0.179968 -0.252252 0.056942 0.356194 -0.137722 -0.100814 0.591629 0.168573 -0.039077 0.109071 0.494080 -0.230548 0.362764 -0.299567 0.634980 -0.080263 0.015194 0.002509 -0.249995 -0.008518 -0.254943 0.089823 0.589661 0.283856 0.282322 0.203011 0.259965 0.299451 -0.386830 0.397480 -0.040784 0.204574 -0.428081 -0.084869 0.059369 0.308404 -0.146328 0.125559 -0.696048 -0.643792 -0.939170 -0.232268 -0.257649 0.006210 0.172507 -0.118479 -0.153987 -0.343636 -0.557212 0.749854 -0.292031 0.163676 0.272620 0.284413 0.539861 0.636119 -0.147146 -0.083879 -0.051491 -0.037472 -0.023535 0.016290 -0.447475 0.568779 -0.318233 0.127694 0.703321 -0.179538 0.297201 0.101045 0.561931 -0.374362 0.689032 0.268354 -0.379135 0.338814 0.697791 0.566288 0.057529 -0.430053 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::front() = 0.004164 -0.389540 0.788069 0.732362 -0.197920 0.219280 -0.010957 -0.486578 0.537064 0.043006 -0.067740 0.120376 -0.464843 0.242107 -0.010516 0.409510 -0.640809 -0.366944 -0.223083 -0.368402 -0.288645 -0.363734 0.204346 0.141243 0.284031 0.416548 -0.354060 0.025549 -0.336464 -0.279675 0.434062 -0.146213 0.372373 0.421292 0.155327 -1.145742 0.521872 0.386394 -0.176365 -0.554625 0.103973 -0.304859 0.092346 -0.323354 -0.185231 0.168853 -0.072578 0.154157 0.374178 0.120452 0.068908 0.098532 0.109174 0.742893 -0.300330 0.356030 0.201581 -0.055154 -0.124731 -0.029489 0.172980 0.205242 0.313030 0.285288 -0.127076 -0.480843 -0.175493 -0.330898 -0.559053 0.469983 -0.057493 -0.089155 -0.509978 -0.308032 -0.316285 -0.170208 -0.638560 0.556661 0.748773 -0.556960 0.367418 0.095043 0.143177 -0.013026 0.286882 -0.001595 0.513557 0.190784 -0.181123 0.152881 -0.136440 -0.254808 0.162373 -0.099602 -0.299342 -0.552297 0.270133 -0.483776 -0.559158 0.243706 0.256556 -0.015682 -0.434411 -0.129600 0.204879 0.247094 -0.300395 -0.492063 -0.076140 0.151602 0.208643 -0.211802 -0.102278 0.034567 -0.163385 -0.267884 -0.667477 -0.034486 0.058572 -0.273020 0.005848 0.456804 -0.210137 -0.027891 -0.076344 0.093539 -0.223022 0.737343 -0.049067 0.345121 0.026068 0.109875 -0.258979 0.092921 0.237609 0.447529 -0.123909 -0.099394 -0.199879 0.103297 -0.364714 -0.010691 -0.009125 0.171148 0.529976 -0.136886 -0.430671 -0.187439 -0.260972 -0.819703 0.119489 -0.452760 0.023452 0.423348 0.427252 0.454185 0.369437 0.672041 -0.494523 0.170301 -0.120572 -0.055473 0.423470 0.337270 0.293656 -0.260039 -0.388714 0.335359 0.042831 0.148214 0.210766 -0.143606 0.019275 -0.390331 -0.162846 0.368028 0.267396 -0.035300 0.397601 0.305726 0.408220 -0.341951 0.183689 0.291305 -0.079401 0.101621 0.017125 -0.566321 0.287782 0.057030 -0.018356 0.360020 -0.135420 -0.165831 0.142046 -0.145567 0.213720 -0.377769 0.083119 -0.344316 0.002359 -0.524965 0.146368 -0.178989 -0.200114 -0.150284 -0.103121 0.648976 -0.434647 -0.290698 0.627159 -0.080036 0.382807 -0.536705 0.425709 -0.296842 0.505576 -0.230500 -0.132089 0.014119 -0.143437 -0.238299 0.009686 0.292967 -0.078717 -0.083213 0.600589 0.181808 -0.061690 0.057117 0.461097 -0.034728 0.415132 -0.205947 0.589744 -0.033974 -0.014305 0.103766 -0.231409 -0.023279 -0.265021 0.054093 0.629881 0.393090 0.327161 0.319862 0.205386 0.384874 -0.319579 0.312763 -0.011254 0.208091 -0.278807 -0.044147 0.129989 0.351825 -0.208130 0.172424 -0.552472 -0.775687 -0.571017 -0.369190 -0.161398 0.003810 0.137912 -0.108408 -0.105442 -0.303497 -0.403180 0.380563 -0.271440 0.509283 0.174456 0.205448 0.425486 0.607725 -0.332353 -0.109658 0.076535 0.057940 0.011433 0.049505 -0.497874 0.510874 -0.299755 0.069628 0.654906 -0.216463 0.204996 -0.030421 0.622700 -0.312235 0.703530 0.209055 -0.268293 0.491463 0.427282 0.484301 0.272322 -0.340321 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::pop() = 0.308409 -0.736084 1.910562 1.694404 -0.342024 0.537519 -0.097750 -1.394206 1.252630 0.679007 -0.258790 0.315642 -0.782260 0.535435 -0.284503 1.221054 -1.424334 -0.634835 -0.549863 -0.963952 -0.700468 -0.784629 0.462603 0.111190 0.698332 0.732591 -0.782254 0.213670 -0.379789 -1.680992 0.644330 -0.258090 0.606762 0.231291 0.337148 -2.277412 1.527052 0.987434 -0.463243 -1.248247 0.231716 -0.341158 -0.259953 -0.207910 -0.348124 0.444066 -0.258678 0.635348 0.751648 0.598612 0.464314 0.430409 0.767267 1.940098 -0.512563 0.971354 0.531467 0.015591 -0.137741 0.325872 0.411776 0.583204 0.494581 0.692992 0.213224 -1.053083 -0.291132 -0.326091 -1.022530 1.184530 -0.268465 -0.692093 -1.027595 -0.691319 -0.627398 -0.149462 -1.913073 1.170421 1.691962 -1.095355 0.729157 0.335060 0.198023 -0.066435 0.508969 -0.194149 1.307727 0.545042 -0.342935 0.126763 0.141369 -0.748020 0.585452 -0.394953 -0.866682 -1.699459 0.704101 -1.395412 -1.261381 0.652770 0.713030 -0.279192 -0.706829 -0.496604 0.597720 0.262724 -0.544057 -1.027372 -0.182358 0.441631 0.252690 -0.511321 -0.195098 -0.033708 -0.126221 0.283017 -1.484679 -0.034669 0.169929 -0.471063 -0.143963 0.906919 0.125588 -0.135797 -0.228810 0.301976 -0.352615 1.221792 -0.222098 1.173124 -0.078062 0.901679 -0.508354 0.794073 0.666444 -0.323405 -0.103539 0.036977 -0.387907 0.441969 -0.849177 0.568524 -0.607874 0.475690 1.210375 -0.122437 -1.019793 -0.428552 -0.617913 -1.591885 0.373134 -0.965162 -0.643848 0.478656 0.992932 0.773012 0.802012 0.823720 -1.262457 0.216523 -0.269115 0.213339 0.789461 0.162185 0.539831 -0.537219 -0.936537 0.702202 0.432035 0.260109 0.333821 -0.354747 0.051098 -0.733971 -0.231372 0.909113 0.519538 -0.237750 0.828581 0.752189 1.637061 -0.595210 0.359416 0.711025 -0.312969 0.203459 -0.080479 -1.401761 0.501349 0.186753 0.673378 1.112304 -0.225748 -0.148002 0.311648 -0.316250 0.335895 -0.724618 0.242180 -0.818851 -0.125720 -0.796002 0.414258 -0.368371 -0.266542 -0.304672 -0.238988 1.376458 -1.362042 -0.612975 1.771434 -0.639780 0.438262 -1.028811 1.217138 -0.601620 0.705574 -0.314443 -0.218950 -0.023729 -0.289833 -0.739084 0.169369 0.604833 -0.203256 0.101826 1.412734 0.327191 -0.050618 -0.005852 0.981117 -0.459891 0.832524 -0.657760 1.431959 -0.128862 -0.100319 -0.210926 -0.496951 -0.137492 -0.829467 0.173921 0.991955 0.536373 0.378757 0.438128 0.399575 0.917824 -0.752011 1.193930 0.006456 0.158055 -0.720521 -0.149533 0.440022 0.375414 -0.572917 0.617228 -1.316459 -1.186964 -1.814553 -0.632720 -0.455198 -0.096513 0.594617 -0.442793 -0.331719 -0.654050 -1.128837 1.589527 -0.500769 0.136446 0.691709 0.554243 0.827160 1.349212 -0.303334 0.150903 -0.475874 -0.096799 -0.020446 -0.337100 -0.674311 1.221235 -0.447731 0.202572 1.292031 -0.331678 0.569440 -0.078592 0.819692 -0.714883 1.258011 0.482950 -0.286441 0.805040 1.027944 1.168350 0.173442 -0.783883 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::~queue() = -0.017376 -0.568191 1.060115 0.843598 -0.209515 0.333670 0.199589 -0.684995 0.869578 0.150204 -0.231596 0.028592 -0.740865 0.214217 -0.270916 0.468967 -0.877193 -0.574504 -0.166581 -0.457740 -0.296011 -0.682276 0.408594 0.150212 0.392973 0.468042 -0.346878 -0.010244 -0.520034 -0.510216 0.708195 -0.276100 0.425143 0.425875 0.092242 -1.437012 0.747869 0.496474 -0.255891 -0.785742 0.149750 -0.336044 -0.011792 -0.275277 -0.178377 0.183125 -0.009821 0.546041 0.516851 0.205100 0.175326 -0.083418 0.131808 1.117935 -0.477753 0.545520 0.258731 0.002862 -0.110222 0.181895 0.235558 0.217504 0.398552 0.640421 -0.135312 -0.460265 -0.067675 -0.428085 -0.871859 0.739452 -0.176064 -0.053692 -0.642776 -0.246990 -0.431600 -0.110301 -0.813742 0.718229 1.210452 -0.631678 0.690564 0.177921 0.307828 -0.198211 0.244042 -0.045296 0.676672 0.250407 -0.392952 -0.013755 -0.349187 -0.258833 0.149696 -0.186642 -0.287937 -0.817456 0.438632 -0.749273 -0.795198 0.261294 0.282314 -0.043391 -0.427830 0.004831 0.376648 0.285767 -0.462368 -0.794865 -0.175683 0.187259 0.030846 -0.185349 -0.002543 0.091652 -0.242644 -0.304659 -0.813993 -0.269059 0.024698 -0.561468 -0.012114 0.606661 -0.260270 0.114765 0.002922 0.154342 -0.147274 0.815035 0.018138 0.473319 0.160596 0.212773 -0.343537 0.170299 0.356891 0.551117 -0.061312 0.001508 -0.140797 0.200021 -0.496098 -0.058801 -0.196629 0.118614 0.589836 -0.319719 -0.554591 -0.187973 -0.212119 -1.117508 0.193945 -0.673977 -0.156406 0.396049 0.630598 0.567327 0.471881 0.965385 -0.816362 0.308097 -0.160435 -0.034220 0.419033 0.329383 0.433389 -0.336377 -0.579223 0.302681 0.155976 0.174692 0.185537 -0.342868 -0.085462 -0.651864 -0.258208 0.426727 0.370909 -0.132712 0.434172 0.387584 0.466633 -0.640701 0.263789 0.484371 -0.009487 0.090784 0.060182 -0.972117 0.514438 0.043698 0.169018 0.414265 -0.122334 -0.222295 0.235036 -0.280593 0.242657 -0.587786 0.036118 -0.540178 -0.067122 -0.695247 0.311927 -0.221844 -0.337749 -0.176053 -0.055352 0.811036 -0.573231 -0.422904 0.935466 -0.105904 0.519364 -0.744854 0.610789 -0.414416 0.644302 -0.228376 -0.098432 -0.030309 -0.096650 -0.188197 -0.091434 0.322292 -0.068827 0.243025 0.867260 0.252054 0.032931 0.179061 0.710252 -0.119725 0.353562 -0.311333 0.660543 -0.023487 -0.268458 0.144988 -0.378187 0.064401 -0.346947 0.124907 0.924016 0.673814 0.256512 0.639454 0.242992 0.490893 -0.390001 0.447160 0.025900 0.397916 -0.351835 -0.045737 0.131071 0.359408 -0.430605 0.398076 -0.836640 -1.207269 -0.775045 -0.662099 -0.289522 -0.326155 0.305621 -0.150640 0.030207 -0.554895 -0.518116 0.504405 -0.357300 0.630458 0.319973 0.342293 0.542579 0.876575 -0.457985 -0.090503 0.124633 0.229296 -0.183418 -0.060958 -0.575046 0.554849 -0.521872 0.232893 0.812078 -0.252956 0.140738 -0.177895 0.747443 -0.554527 0.930836 0.432672 -0.283499 0.689134 0.405205 0.789740 0.488543 -0.467655 -PE-benchmarks/aho-corasick-algorithm.cpp__findNextState(int, char) = -1.609545 -2.881085 2.579176 2.538155 0.370719 1.785549 1.142110 -0.702154 0.493818 2.492290 -0.858147 1.664764 -1.608089 -0.818082 0.284733 0.654125 -0.681869 -1.513815 0.265150 -0.543408 -0.326940 -1.157912 -1.904985 2.340645 0.608413 -0.210863 -0.605109 -0.144766 -3.028030 -2.915784 -0.733469 -0.091816 1.214242 0.293082 0.841330 -3.086079 1.521149 3.220318 -0.179924 -2.428106 -0.065015 -0.658069 -0.578903 0.710589 -0.473533 1.030587 1.105488 -0.521029 -0.367896 0.692406 1.047832 -0.653476 1.887928 2.956981 0.740426 3.008161 2.907789 -0.161107 1.213611 0.386349 0.696336 -0.752147 1.378002 0.845086 -0.423206 -0.313345 -0.358824 0.242739 -0.958686 0.339731 0.532660 -1.459283 -0.824004 -0.985903 -1.615309 -1.039214 -1.874571 0.270898 3.082883 -1.366732 3.911035 2.196303 1.832700 -0.045392 2.263929 -0.116902 2.135207 0.864574 -1.670429 1.255867 -1.023161 -1.194018 0.261405 2.187095 -1.986764 -0.161821 1.260444 -2.174677 -3.029238 2.150773 -0.408977 -0.541102 -1.370701 -0.371163 0.506382 0.435788 -1.227007 -2.312961 -1.984650 1.405320 -1.107946 -1.377982 -0.521851 0.183976 0.189532 0.748195 -1.915236 -0.071571 2.170600 -1.620973 -1.277153 2.098038 0.466545 2.093736 -0.459221 -0.033633 -0.077762 0.758410 0.930672 0.922303 -0.153774 -0.865994 -3.852162 -0.330204 0.474897 -0.555788 -0.814548 -0.478675 1.412967 1.167031 1.253513 2.701517 -0.369919 2.730310 1.140809 0.199595 -0.876425 -2.531114 -0.666493 -1.371620 0.738896 -1.093371 -1.357040 -0.250582 1.664685 -0.199078 -0.097925 1.184037 -0.378176 1.424524 -0.321026 0.301884 -0.036361 -1.303759 0.730940 -1.116156 -1.690194 1.301423 2.397223 0.961365 0.949530 -0.858589 0.147568 -0.360560 -1.647486 0.794370 -0.392261 -0.624312 2.758478 1.387235 5.397867 -1.544790 0.435473 -0.691331 -0.313589 0.541134 -0.457055 -2.314190 0.707204 0.425586 -0.240306 2.874471 -0.106524 -0.877669 0.856752 -0.371231 0.021381 -1.760435 2.518047 -1.628750 -0.008407 -0.686987 -0.147085 -1.310486 -1.191614 -1.333618 0.133326 2.657702 -1.947067 -1.777147 0.837203 0.529012 0.097662 -2.792601 2.780262 -1.026906 1.602286 -1.142045 -1.654620 0.062145 1.528715 0.171879 0.167143 1.245278 -2.373665 1.215590 1.345469 0.141948 0.602988 0.940593 0.838667 -0.501090 -0.756061 -1.590379 1.379071 0.241999 -0.658251 -1.015233 -1.003640 1.648468 0.588028 -0.422093 -0.518143 1.544012 -1.225822 -1.150994 1.944060 -0.456527 -1.061624 0.558690 0.379705 1.894560 -1.469924 -0.297553 -1.438162 -0.259167 0.551591 0.849687 -2.682856 -0.339858 -1.452220 -1.080516 -1.419888 1.752761 1.001028 1.341687 0.154038 -3.083266 -1.750981 2.893968 -0.917322 -0.489117 1.385040 1.820104 2.153780 0.938730 1.612717 -0.929835 -1.076505 0.145007 -1.202071 -0.482973 -0.006636 0.886869 -1.350816 2.271959 0.577446 0.258440 1.035417 0.695511 1.304702 -1.669994 2.696389 1.402714 -1.996757 0.353820 2.606442 2.030406 -3.232021 -1.402756 -PE-benchmarks/aho-corasick-algorithm.cpp__searchWords(std::__cxx11::basic_string, std::allocator >*, int, std::__cxx11::basic_string, std::allocator >) = -5.161474 -10.521326 10.185225 9.255236 0.880135 6.987145 3.618353 -3.834449 3.080237 5.572517 -4.596085 6.402340 -6.044651 -2.738035 -0.460049 0.548929 -4.043467 -6.751454 0.268512 -1.919812 -0.529714 -5.319841 -5.545805 9.370054 1.932379 1.512786 -3.143233 1.242277 -12.769402 -10.067375 0.503399 -0.186055 4.896320 1.448979 2.952631 -13.991401 6.365758 11.889901 -0.705267 -10.691819 0.652938 -3.496944 -3.758118 1.199562 -2.646583 3.743040 2.898804 0.616053 -1.690655 1.563413 1.640719 -1.439574 4.562599 10.932621 1.924567 10.761198 11.382735 0.103036 3.121365 1.295770 2.367145 -1.350582 5.439416 4.770801 -3.486880 -1.770729 0.015329 0.228094 -6.230813 2.449260 2.185569 -5.197701 -3.092046 -3.316442 -6.783258 -2.196460 0.166532 1.659919 12.767640 -3.973760 14.181643 6.179301 7.122177 -0.881233 7.981459 -0.698473 8.509850 3.752129 -5.918114 1.792891 -8.425694 -4.326059 0.399584 6.808252 -7.542968 0.875314 5.071248 -10.164743 -10.822790 6.009187 -1.083415 -3.284610 -4.927860 0.071471 3.670915 1.868054 -2.907649 -8.504559 -6.170846 6.217233 -5.421151 -5.091365 -2.635001 2.137675 0.112439 1.277850 -7.656187 0.472794 7.884789 -5.140279 -3.411115 7.959780 -1.266471 6.110833 -2.048023 -0.075114 -0.713564 2.842770 2.637770 1.662793 2.085355 -3.824230 -10.738148 -0.103514 0.938733 1.568155 -5.040870 -2.767092 5.152562 4.092160 3.451183 6.836878 -3.160826 7.687924 3.747418 -0.350483 -3.670419 -9.495138 -3.677696 -6.985352 1.499687 -4.448079 -4.750910 1.177761 6.862837 1.095149 0.549045 7.113444 -4.394764 6.431259 -0.089503 1.076417 0.180728 -3.931587 2.595289 -4.472103 -7.434596 5.972236 6.561010 3.616051 3.020795 -2.579259 -0.192489 -3.083319 -7.929415 4.568968 -0.588677 0.982945 10.007941 5.715544 15.968616 -6.545539 1.995738 -1.812080 -1.830255 1.591492 -1.561386 -8.738965 3.029864 2.018226 1.890035 12.320617 -0.205474 -4.023176 1.877340 0.272981 0.661192 -7.383141 9.611986 -6.588281 -0.113213 -3.113773 -1.518729 -4.448553 -4.825943 -6.264892 -1.196582 10.899232 -6.546626 -10.223301 4.540008 0.873345 3.259887 -12.464904 6.643045 -4.680454 8.759120 -2.421529 -3.790130 -0.007176 1.548171 -1.142888 1.109119 4.337031 -7.972426 5.495559 6.017424 1.138608 2.049026 2.918717 2.647276 -2.460456 -1.560110 -6.780658 4.544303 0.828868 -3.569562 -2.481527 -3.931004 5.499281 1.103617 -1.497459 0.265544 7.256228 -1.998381 -1.666120 7.464316 -0.737170 -4.565079 1.893741 1.294291 5.888410 -4.492723 -2.149717 -4.533537 0.499792 2.292921 3.221370 -10.709016 -5.101730 -7.601472 -9.266443 -3.622264 2.201117 4.487612 4.399629 0.799971 -12.306434 -6.634270 7.712792 -3.070815 6.537860 5.761784 7.015495 7.779767 4.325218 2.060093 -2.726291 -1.560164 1.778548 -5.504395 -1.793949 -2.967202 4.552156 -3.881212 7.970359 4.729932 0.309340 4.528665 0.267134 6.097330 -6.052199 12.162595 5.763342 -8.735457 0.951234 4.784841 7.160491 -8.061139 -6.005783 -PE-benchmarks/aho-corasick-algorithm.cpp__main = 2.267977 -12.183941 23.248163 18.422123 1.642995 8.352595 11.368424 -16.082500 16.381590 10.518935 -4.270471 1.527409 -15.979819 1.716173 -5.310686 10.982592 -13.659516 -11.925478 -2.840989 -9.311715 -3.540065 -14.091887 10.534738 2.125994 10.370407 4.090595 -6.332845 -5.828726 -14.173937 -17.094548 14.080453 -2.151004 8.448601 5.236976 -1.301659 -25.377052 16.640234 13.528471 -5.698866 -17.078429 5.971486 -2.182911 -6.922243 2.205410 2.667153 4.723322 -0.552205 14.203651 7.961857 9.207995 7.775305 -1.094256 6.607042 22.334482 -8.491053 14.936907 9.374819 3.255653 0.846935 9.958853 4.015375 5.094072 7.476283 14.328781 -0.062156 -6.959082 0.368053 -5.858412 -19.063679 14.750712 -1.047913 -5.877596 -11.178770 -3.445474 -3.903732 1.007600 -17.059171 12.236723 24.948833 -11.052627 17.224635 4.877285 6.027774 -9.112715 3.518851 -3.233545 9.891675 5.675060 -7.224532 -5.643790 -14.437652 -9.052803 2.723175 -3.229107 -8.172750 -16.424662 11.049941 -8.602139 -18.025113 5.673004 5.742970 -4.403941 -9.336846 2.952095 7.300956 4.951206 -7.848207 -17.158957 -7.955248 6.756738 -5.007516 -4.793054 -2.437450 0.967722 -6.318843 -2.297630 -16.182034 -4.555511 2.510199 -11.719487 -6.309187 11.091201 -4.985396 5.063354 -0.020261 3.235434 -2.288207 8.715098 1.472506 10.186852 13.149093 4.134031 -10.971596 7.315351 9.390494 9.830685 -0.247912 3.554256 -2.554066 6.322419 -7.436884 7.013816 -4.945972 4.747824 12.465278 -7.009031 -11.906025 -4.201140 1.561033 -18.208782 7.096324 -12.995628 -3.910756 0.306811 12.939171 6.069074 7.399142 17.736851 -19.115634 7.946910 -1.257098 2.586361 3.767455 3.496319 7.822821 -6.876665 -15.191082 3.813140 7.775598 0.503495 1.848718 -4.182194 -2.506721 -13.877814 -9.570168 4.179911 2.776456 -7.446878 7.847586 9.412363 17.885725 -13.391117 3.394703 8.972839 -2.135468 1.539648 0.322688 -22.942396 9.524368 0.488102 8.228132 15.354616 -0.767729 -6.188041 6.794044 -5.387840 2.130611 -10.045307 4.660235 -13.392277 -4.984307 -11.249054 4.861934 -2.549465 -8.674317 -2.657223 2.862486 16.968862 -4.520707 -11.997874 18.503657 -7.678420 1.666405 -18.928144 19.488192 -7.083080 2.693861 -3.946567 -2.578660 -2.267326 2.935934 -5.872098 -2.523388 4.687431 -4.481876 12.370316 23.054012 3.134865 0.837521 3.138396 12.378526 -5.482692 2.977994 -10.429480 15.016115 -2.251903 -8.739672 -0.848727 -7.432462 4.807426 -9.962554 -1.314121 17.064515 12.445136 -0.431047 9.098091 4.480916 10.575925 -8.686216 14.040122 4.420386 8.706115 -6.148453 -1.089554 2.635552 -0.891584 -8.095558 13.032696 -17.676625 -19.614416 -8.250362 -19.764122 -4.277003 -7.098919 10.757257 -3.034694 -0.504459 -16.973475 -12.689679 6.437580 -6.773231 4.754295 11.329097 9.789790 10.742344 17.539490 -6.735521 4.668391 -2.098734 5.720126 -7.397241 -10.087369 -4.030904 9.518937 -7.056315 6.894066 13.401699 0.906012 5.000674 -10.572695 14.993294 -12.188639 19.145469 8.677124 -3.194977 11.691908 6.321608 19.839068 2.879667 -8.771402 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::~deque() = 1.020281 -2.137489 5.285234 4.090734 -1.207896 1.545323 0.380925 -3.909147 3.590568 0.863375 -1.197912 0.433506 -2.592197 1.045117 -2.122983 2.401165 -4.192626 -2.030276 -1.391023 -2.603472 -1.482122 -2.505187 1.663199 0.667896 2.065614 2.151298 -1.699590 0.369263 -1.835553 -3.659666 2.512236 -0.737379 1.424186 0.736155 0.709319 -5.560744 3.997469 2.823553 -1.239423 -3.483617 0.853937 -0.973313 -1.288347 -0.619151 -0.965130 0.775848 -0.723092 2.890795 2.004017 1.287115 0.818545 0.741500 1.427812 5.345258 -1.559913 2.732965 1.464358 0.350803 -0.158403 1.348652 1.033941 1.525864 1.109929 2.291352 0.487732 -2.451719 -0.272936 -1.174217 -2.896281 3.459572 -0.852310 -1.527025 -2.510038 -1.416025 -2.313896 0.023462 -4.103920 3.358839 4.933391 -2.806542 2.413519 0.693885 0.665540 -0.877099 0.934338 -0.562702 3.288783 1.438390 -0.912627 -0.346433 -1.022872 -1.409409 1.284303 -1.548162 -2.268109 -4.992549 2.435726 -4.778059 -3.590635 1.197528 1.921855 -1.248691 -0.965346 -0.461659 1.483469 0.542597 -1.632113 -2.930006 -0.393574 1.378555 0.238036 -0.975643 -0.085399 0.622718 -0.298771 0.183393 -3.740932 -0.297886 0.301629 -1.579018 0.001361 2.486769 0.083079 -0.060450 -0.298800 0.870681 -0.641629 2.939833 -0.552238 2.651443 0.112113 2.479806 -0.454618 1.967207 1.764544 -0.094082 -0.373021 0.420566 -0.547824 1.376337 -2.185393 0.830370 -2.186622 0.591952 2.034601 -1.114389 -2.590903 -0.909138 -1.599434 -4.481234 0.597316 -2.646131 -2.536408 1.201230 2.762794 2.571106 1.963651 2.758721 -3.475183 0.633376 -0.310136 0.328718 1.706169 0.181909 1.534444 -1.469984 -2.800499 1.512119 0.572966 0.962020 0.479750 -0.924469 -0.355785 -2.593736 -0.860222 2.142422 1.609565 -0.686530 2.165538 2.329930 2.452556 -2.275108 1.001526 2.127945 -0.906374 0.355660 0.051524 -4.321988 1.642500 0.461988 2.183039 2.900308 -0.465082 -0.148969 1.072584 -1.074822 0.887156 -2.343963 0.261397 -2.450027 -0.558653 -2.515658 1.498816 -0.775061 -0.940252 -1.135425 -1.144250 3.585735 -3.953307 -1.895669 5.003850 -1.042250 1.683237 -2.925206 2.425302 -1.629455 2.388873 -0.057230 -0.109255 0.005330 -1.069954 -1.971479 0.099324 1.325054 -0.604283 1.218002 3.832111 0.902939 0.032392 0.167864 3.005831 -1.720307 2.037491 -2.122754 3.379237 -0.198630 -1.583091 -0.194032 -1.484002 -0.491620 -2.366825 0.898473 3.442915 1.853959 1.420517 2.026329 0.956747 2.561011 -1.827952 2.966581 0.047175 0.496867 -1.772826 -0.507186 1.264501 1.055275 -1.762748 1.947704 -3.942402 -4.556493 -5.150050 -2.718109 -0.868456 -2.371142 1.857251 -1.213254 -0.625381 -2.283491 -3.217163 3.482765 -1.339365 1.210113 2.233966 1.671568 2.155389 3.783494 -1.417872 0.973364 -0.334407 1.004282 -0.388093 -1.143680 -2.124632 2.951591 -1.498787 0.791219 3.976530 -0.864553 1.553946 -0.826596 2.198632 -2.487049 3.498985 1.610023 -1.259222 2.325173 2.162772 2.981919 1.692987 -2.178846 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.200099 -0.257827 0.369605 0.339224 0.108585 0.114140 0.250148 -0.149716 0.453760 0.315836 -0.014621 -0.044148 -0.393642 0.081980 0.131976 0.277090 -0.187645 -0.318739 0.043393 -0.176082 -0.111823 -0.322916 0.162558 -0.109022 0.143614 -0.092196 -0.114081 -0.174579 -0.333724 -0.119724 0.288126 -0.185562 0.203571 0.127894 -0.039703 -0.646967 0.237307 0.121363 -0.137087 -0.310868 0.060101 -0.249357 0.245205 -0.078414 0.183133 0.123049 0.125745 0.098322 0.291483 0.128160 0.264644 -0.147948 -0.032307 0.508355 -0.380490 0.199866 0.038194 -0.055346 -0.111109 0.117819 0.074065 -0.019968 0.268109 0.283526 -0.197044 -0.175453 -0.083406 -0.225752 -0.456146 0.228195 -0.023081 0.060678 -0.339195 -0.056731 -0.013294 -0.188983 -0.714534 0.197942 0.524601 -0.277208 0.374588 0.156710 0.270798 -0.006302 0.180996 0.041175 0.268912 0.016929 -0.292962 0.016984 -0.212616 -0.088226 -0.027658 0.064249 0.037870 -0.113680 0.094350 0.187973 -0.331264 0.165783 0.018010 0.175595 -0.404130 0.092798 0.160833 0.236636 -0.245291 -0.446020 -0.216028 0.005627 -0.015639 -0.076358 0.024149 -0.277788 -0.229425 -0.324755 -0.324988 -0.197472 -0.021000 -0.323547 -0.249646 0.315648 -0.292711 0.077529 0.052248 0.069385 -0.106537 0.381204 0.088460 0.225914 0.207610 -0.176380 -0.783989 0.005238 0.185767 0.522635 0.055403 0.105191 -0.158778 -0.013312 -0.255870 -0.004940 0.164646 0.207314 0.421380 -0.199243 -0.189029 -0.077559 0.189438 -0.365715 0.237545 -0.282232 0.280459 -0.018998 0.272489 0.243159 0.257751 0.578136 -0.375444 0.255824 -0.182882 -0.036783 0.247469 0.280261 0.260906 -0.153739 -0.164288 0.018839 0.262415 -0.060651 0.142861 -0.183142 0.013331 -0.328138 -0.057265 0.026609 0.076150 -0.161526 0.206631 0.096135 0.402277 -0.442470 0.137269 0.219859 0.082512 0.054644 0.022044 -0.369023 0.277105 0.034536 -0.155954 0.043137 -0.036424 -0.254536 0.054124 -0.160042 0.121241 -0.197321 0.005006 -0.207709 -0.114026 -0.254035 0.129442 -0.189177 -0.251453 0.053411 0.194534 0.332357 0.187861 -0.150266 0.213694 -0.120493 0.057801 -0.361115 0.620726 -0.231004 0.082099 -0.366598 -0.076878 -0.125827 0.396520 0.038103 -0.054055 0.157595 -0.057691 0.162399 0.462864 0.161191 0.081919 0.128645 0.323727 0.090893 0.035909 -0.013101 0.294041 -0.065948 0.030414 0.127960 -0.164556 0.201673 0.026374 -0.046538 0.410863 0.391832 -0.085917 0.250968 0.154809 0.181092 -0.146027 0.157040 0.026187 0.379229 -0.112644 0.046396 -0.035638 0.032092 -0.166722 0.127152 -0.320854 -0.369631 0.185892 -0.198461 -0.088451 0.218688 -0.021802 0.048503 0.131873 -0.361845 -0.079750 -0.011820 -0.183901 0.153536 -0.028817 0.096700 0.247923 0.368351 -0.182135 -0.246211 0.010664 -0.071446 -0.127717 -0.053408 -0.139368 0.203605 -0.362945 0.125268 0.154600 -0.100755 -0.093661 0.023121 0.429459 -0.199889 0.460426 0.190324 0.026144 0.396897 0.298568 0.640249 0.023390 -0.147667 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::begin() = 0.295726 -0.622543 1.810173 1.521337 -0.253843 0.482606 -0.038832 -1.327462 1.338487 0.663037 -0.192555 0.283166 -0.689816 0.567558 -0.462814 1.185311 -1.320204 -0.645736 -0.483245 -1.059625 -0.812173 -0.707763 0.309178 -0.072619 0.650915 0.376491 -0.735644 0.148127 -0.501900 -1.393332 0.572056 -0.308854 0.380276 -0.216328 0.369784 -2.143096 1.419259 0.806587 -0.505446 -1.115076 0.190093 -0.533395 -0.050498 -0.257847 -0.063629 0.294685 -0.189159 0.741880 0.844860 0.532176 0.533594 0.522610 0.522284 2.259556 -0.727697 0.919475 0.456667 0.052833 -0.184246 0.503327 0.353889 0.452015 0.408105 0.546479 0.132559 -1.046556 -0.328266 -0.339412 -0.731677 1.086446 -0.162444 -0.697033 -1.038739 -0.618393 -0.746892 -0.326799 -2.605801 1.099368 1.583218 -1.213506 0.631898 0.353540 0.421785 0.185815 0.678390 -0.146214 1.449543 0.438827 -0.441398 0.155699 0.007607 -0.449970 0.513632 -0.573642 -0.733318 -1.965155 0.618383 -1.338494 -1.273392 0.693631 0.669089 -0.138148 -0.576398 -0.442568 0.617010 0.157183 -0.671742 -1.060543 -0.190131 0.411297 0.221877 -0.429632 0.114396 -0.459184 0.016270 0.113817 -1.436561 0.019736 0.182093 -0.362110 -0.369816 1.033823 0.109219 -0.211799 -0.184403 0.293279 -0.378559 1.190652 -0.263474 1.117813 -0.318299 0.874545 -1.108619 0.969650 0.648401 -0.354345 -0.066544 0.332561 -0.425913 0.408322 -0.947582 0.550117 -0.624878 0.606370 0.906197 -0.228291 -0.969708 -0.414349 -0.397391 -1.310127 0.451770 -0.816601 -0.801420 0.069214 0.956483 1.047108 0.829962 0.589350 -1.058010 0.229473 -0.339457 0.295403 0.909466 0.017571 0.629579 -0.559296 -0.786837 0.543738 0.462117 0.159014 0.322090 -0.369508 0.120559 -0.791767 0.018782 0.607320 0.584223 -0.334194 0.945403 0.750762 1.448922 -0.934713 0.375464 0.696160 -0.348465 0.219006 -0.137192 -1.224670 0.492663 0.317539 0.580363 0.962653 -0.186728 -0.167678 0.218498 -0.272328 0.449091 -0.587933 -0.036372 -0.722080 -0.456412 -0.629339 0.655695 -0.497980 -0.213758 -0.318050 -0.438294 1.278548 -1.391847 -0.461737 1.722514 -0.673954 0.376925 -0.872416 1.380149 -0.628302 0.580932 -0.351517 -0.075681 -0.115043 0.180262 -0.778022 0.374079 0.602113 -0.328044 0.166371 1.353098 0.375544 0.241769 0.004040 1.040606 -0.543326 0.711504 -0.563260 1.425582 -0.229422 -0.180215 -0.134744 -0.460515 -0.117468 -0.644474 0.358307 0.974938 0.453984 0.367329 0.371634 0.521240 0.869718 -0.716023 1.077968 -0.160291 0.084295 -0.755679 -0.132123 0.410727 0.130324 -0.491731 0.421591 -1.315140 -0.993739 -1.726262 -0.347031 -0.190611 -0.080490 0.260857 -0.396476 -0.288668 -0.791271 -1.009740 1.459903 -0.521212 -0.338866 0.623219 0.485171 0.805887 1.351733 -0.274525 0.091673 -0.437459 -0.253412 0.033200 -0.369041 -0.686830 1.233396 -0.611063 0.232948 1.175542 -0.323287 0.465524 0.249184 0.684893 -0.651113 1.136741 0.445405 -0.240708 0.722960 1.386154 1.425592 0.151028 -0.734066 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::end() = 0.295726 -0.622543 1.810173 1.521337 -0.253843 0.482606 -0.038832 -1.327462 1.338487 0.663037 -0.192555 0.283166 -0.689816 0.567558 -0.462814 1.185311 -1.320204 -0.645736 -0.483245 -1.059625 -0.812173 -0.707763 0.309178 -0.072619 0.650915 0.376491 -0.735644 0.148127 -0.501900 -1.393332 0.572056 -0.308854 0.380276 -0.216328 0.369784 -2.143096 1.419259 0.806587 -0.505446 -1.115076 0.190093 -0.533395 -0.050498 -0.257847 -0.063629 0.294685 -0.189159 0.741880 0.844860 0.532176 0.533594 0.522610 0.522284 2.259556 -0.727697 0.919475 0.456667 0.052833 -0.184246 0.503327 0.353889 0.452015 0.408105 0.546479 0.132559 -1.046556 -0.328266 -0.339412 -0.731677 1.086446 -0.162444 -0.697033 -1.038739 -0.618393 -0.746892 -0.326799 -2.605801 1.099368 1.583218 -1.213506 0.631898 0.353540 0.421785 0.185815 0.678390 -0.146214 1.449543 0.438827 -0.441398 0.155699 0.007607 -0.449970 0.513632 -0.573642 -0.733318 -1.965155 0.618383 -1.338494 -1.273392 0.693631 0.669089 -0.138148 -0.576398 -0.442568 0.617010 0.157183 -0.671742 -1.060543 -0.190131 0.411297 0.221877 -0.429632 0.114396 -0.459184 0.016270 0.113817 -1.436561 0.019736 0.182093 -0.362110 -0.369816 1.033823 0.109219 -0.211799 -0.184403 0.293279 -0.378559 1.190652 -0.263474 1.117813 -0.318299 0.874545 -1.108619 0.969650 0.648401 -0.354345 -0.066544 0.332561 -0.425913 0.408322 -0.947582 0.550117 -0.624878 0.606370 0.906197 -0.228291 -0.969708 -0.414349 -0.397391 -1.310127 0.451770 -0.816601 -0.801420 0.069214 0.956483 1.047108 0.829962 0.589350 -1.058010 0.229473 -0.339457 0.295403 0.909466 0.017571 0.629579 -0.559296 -0.786837 0.543738 0.462117 0.159014 0.322090 -0.369508 0.120559 -0.791767 0.018782 0.607320 0.584223 -0.334194 0.945403 0.750762 1.448922 -0.934713 0.375464 0.696160 -0.348465 0.219006 -0.137192 -1.224670 0.492663 0.317539 0.580363 0.962653 -0.186728 -0.167678 0.218498 -0.272328 0.449091 -0.587933 -0.036372 -0.722080 -0.456412 -0.629339 0.655695 -0.497980 -0.213758 -0.318050 -0.438294 1.278548 -1.391847 -0.461737 1.722514 -0.673954 0.376925 -0.872416 1.380149 -0.628302 0.580932 -0.351517 -0.075681 -0.115043 0.180262 -0.778022 0.374079 0.602113 -0.328044 0.166371 1.353098 0.375544 0.241769 0.004040 1.040606 -0.543326 0.711504 -0.563260 1.425582 -0.229422 -0.180215 -0.134744 -0.460515 -0.117468 -0.644474 0.358307 0.974938 0.453984 0.367329 0.371634 0.521240 0.869718 -0.716023 1.077968 -0.160291 0.084295 -0.755679 -0.132123 0.410727 0.130324 -0.491731 0.421591 -1.315140 -0.993739 -1.726262 -0.347031 -0.190611 -0.080490 0.260857 -0.396476 -0.288668 -0.791271 -1.009740 1.459903 -0.521212 -0.338866 0.623219 0.485171 0.805887 1.351733 -0.274525 0.091673 -0.437459 -0.253412 0.033200 -0.369041 -0.686830 1.233396 -0.611063 0.232948 1.175542 -0.323287 0.465524 0.249184 0.684893 -0.651113 1.136741 0.445405 -0.240708 0.722960 1.386154 1.425592 0.151028 -0.734066 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::~_Deque_base() = 1.309507 -2.149234 6.116025 5.487561 -1.470730 1.728622 -1.281929 -4.492688 3.186482 1.951360 -0.882297 1.913236 -1.528692 1.735315 -0.724422 3.998520 -4.779347 -1.463268 -1.836240 -2.934002 -2.475600 -1.773501 0.678700 0.879680 2.084320 2.933233 -2.780922 1.399341 -0.429566 -6.387282 0.978687 -0.567154 1.766551 0.320757 1.693185 -7.448769 5.067144 3.309550 -1.285456 -3.984511 0.591429 -0.774440 -1.236054 -0.601348 -1.795195 1.509489 -0.866905 1.603009 1.861867 1.983443 0.849300 2.085346 3.155032 5.907698 -0.497798 3.105988 2.221741 -0.175802 -0.354986 0.535111 1.406143 1.764072 1.383354 1.535297 1.020650 -3.526115 -1.061304 -0.471073 -2.376618 3.340713 -0.585181 -2.928879 -2.911735 -2.583289 -2.331657 -0.423695 -5.128783 3.721730 4.818992 -3.410039 1.857158 0.938429 0.387466 0.251159 2.044159 -0.723706 4.505727 2.048391 -0.794391 0.784396 1.420481 -2.926370 2.328713 -1.180202 -3.231880 -5.654693 1.987632 -5.550156 -3.841165 2.418523 2.410588 -1.249370 -2.163403 -2.590333 2.136487 0.561076 -1.413911 -2.652189 -0.303454 1.512376 0.734806 -1.956225 -0.908108 0.269139 0.116150 2.125954 -4.725617 0.567545 1.194125 -0.742994 -0.093271 2.687539 1.310204 -0.576168 -1.262334 0.855206 -1.118087 3.600224 -0.974993 3.656215 -1.031187 3.392518 -0.391799 3.007912 1.777668 -2.937471 -0.777914 -0.442481 -0.982763 1.682560 -2.306805 2.372357 -2.537176 2.010036 3.847249 0.525206 -3.408385 -1.803008 -2.885384 -4.793890 0.952075 -2.683295 -2.932635 1.953368 2.996196 1.817681 2.246865 1.058510 -3.410004 0.313397 -0.694834 1.111642 2.537428 -0.197908 1.374667 -1.749808 -2.767024 2.819869 1.281823 1.130507 1.085943 -0.918943 0.515769 -1.542208 -0.937759 3.445040 1.799548 -0.091812 2.742198 2.381508 6.223211 -0.866054 0.677925 1.692066 -1.344955 0.625903 -0.524894 -3.832644 0.971365 0.716953 2.790011 4.342675 -0.726211 -0.260912 0.828663 -0.282813 0.920105 -1.976272 1.174568 -2.425155 0.004262 -1.774411 0.803541 -1.182873 -0.283731 -1.594373 -1.473791 4.458119 -5.584332 -2.156565 5.720604 -2.600590 1.714952 -3.251856 3.132153 -1.800745 2.422707 -0.619322 -0.813534 0.222797 -2.064923 -2.835794 1.244617 2.054255 -0.716122 -0.421275 3.776180 0.820657 -0.206343 -0.391733 2.470593 -1.717841 2.877737 -2.125678 4.657601 -0.481033 0.199843 -1.324144 -1.296933 -0.793594 -2.648210 0.610618 1.901390 0.713437 1.404394 0.539567 1.465477 2.601595 -2.649582 3.903486 -0.225529 -0.195884 -2.487811 -0.837706 1.354911 1.420749 -1.147783 1.685670 -4.059518 -2.796726 -7.302434 -1.601916 -1.667620 0.239569 2.060451 -1.567751 -1.551222 -1.519444 -3.704538 6.392061 -1.245153 0.020952 2.617766 1.788725 2.627316 3.731168 -0.216197 0.563497 -2.226918 -0.774886 0.240683 -0.864212 -2.165601 3.933700 -0.853226 0.645293 4.119267 -0.949023 2.257198 -0.013822 1.915679 -1.913628 3.453071 1.272276 -1.366254 1.568015 3.381576 2.626979 -0.356549 -2.623904 -PE-benchmarks/aho-corasick-algorithm.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.258482 -1.033440 2.606699 2.396413 -0.214751 0.766752 -0.052412 -1.875649 1.666954 1.418339 0.220529 0.700035 -0.930495 0.851096 0.174740 1.886851 -1.731970 -0.898589 -0.836474 -1.590103 -1.321000 -0.932405 0.450929 0.009371 0.832929 0.173654 -1.466862 0.015998 -0.583474 -2.553095 0.824407 -0.370783 1.113344 -0.555198 0.299726 -4.985046 2.111307 1.272542 -0.734423 -1.674442 0.354748 -0.532428 0.016993 -0.103145 -0.915625 0.404850 -0.380428 -0.157667 1.140033 0.800695 1.047470 1.045524 0.967005 3.675080 -0.930727 1.338542 0.693529 -0.292263 -0.625508 0.434252 0.582007 0.747060 1.077256 0.789444 0.242582 -1.617846 -0.306051 -0.388660 -1.761208 1.498999 -0.066230 -1.236504 -1.127014 -0.897784 -0.900789 -0.730035 -1.498210 1.359450 2.296989 -1.534795 1.054628 0.304766 0.259678 0.369465 1.080396 -0.164189 2.123929 0.646488 -0.529932 0.258987 0.601551 -0.775509 0.763628 0.426135 -1.043860 -2.269676 0.894463 -1.031271 -1.742871 1.291944 0.980838 -0.060135 -2.349265 -1.526328 1.026411 0.555511 -0.990146 -1.636085 -1.138560 0.742727 0.288830 -0.912509 -0.284552 -0.835117 -0.268359 0.138675 -2.020442 -0.006466 0.384042 -0.549561 -1.123415 1.471437 -0.264592 -0.273439 -0.370348 0.728241 -0.865870 1.533783 -0.517236 1.754304 -0.157270 0.847893 -1.680809 0.114393 0.752090 0.125891 0.056219 -0.544453 -1.050239 0.592717 -1.257693 1.204712 -0.252373 1.243928 2.492309 0.265404 -1.418194 -0.626789 -0.176295 -2.400788 0.504189 -1.421257 -0.531221 0.913954 1.401073 0.785746 1.155177 1.174340 -1.463697 1.052596 -0.564781 0.018530 1.444042 -0.140506 0.815752 -0.807278 -1.351590 0.798688 0.852824 0.614960 0.501579 -0.554962 0.105492 -0.804754 -0.800138 0.772156 0.740311 -0.256783 0.943750 1.034760 4.175432 -1.531949 0.538294 0.876422 -0.546529 0.436946 -0.399541 -1.722525 0.166339 0.517368 -0.071198 1.926921 -0.391115 -0.995578 0.324603 -0.274679 0.527144 -0.856780 0.634894 -1.080431 0.016006 -0.949768 -0.402913 -0.862894 -0.260882 -0.670809 -0.454942 2.108877 -2.070665 -1.459268 2.561327 -1.070490 0.456662 -2.284103 2.539485 -0.828121 0.841736 -1.321896 -0.484718 -0.306160 0.550001 -1.191433 0.969267 0.923292 -0.712968 0.024483 2.678678 0.479790 0.342142 -0.364309 1.405053 -0.219127 1.094280 -0.906234 2.533887 -0.399510 -0.009095 -0.515941 -0.684508 0.085419 -0.956122 0.339798 0.617344 0.832699 0.138225 0.177005 1.223898 1.231221 -1.052678 1.766349 0.025212 0.435435 -0.864030 -0.038201 0.548170 0.750487 -0.636250 0.806800 -1.778411 -1.150271 -2.246763 -1.051908 -0.463197 1.319390 0.427797 -0.548063 -0.487119 -1.257151 -1.270354 2.242737 -0.756088 0.522872 1.005974 0.866583 1.311281 1.985188 -0.372088 -0.134501 -0.953155 -0.754703 -0.017562 -0.618470 -0.873475 1.740929 -0.746334 0.513298 1.402392 -0.218559 0.850567 0.369348 1.038575 -0.843312 2.061792 0.618914 -0.112907 1.220524 1.599675 2.023449 -0.390039 -1.007958 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.784783 -1.266670 2.341424 1.991613 0.623057 1.050090 0.666355 -1.666348 2.270726 1.520779 -0.314630 0.317123 -1.519214 0.253192 -0.036932 1.321946 -1.196350 -1.581430 -0.140037 -1.130604 -0.587029 -1.794649 0.567417 0.125945 0.618299 0.041843 -1.131724 0.102168 -1.720993 -2.536583 1.273806 -0.531248 1.030159 -0.006970 -0.052067 -3.875248 2.209827 1.618845 -0.504629 -1.849354 0.251669 -0.893027 -0.132545 0.151846 0.438926 0.775491 0.119850 0.430976 1.009644 0.623222 1.319958 0.020289 0.203200 2.472579 -1.385862 1.544819 0.555020 -0.043179 -0.389363 0.782346 0.405807 0.435175 1.423591 1.765285 -0.811655 -0.902909 0.239102 -0.254738 -2.426932 1.463322 -0.055837 -0.705503 -1.130285 -0.283799 -0.637829 -0.378996 -0.688521 0.801771 2.803214 -0.764498 2.043717 0.604952 1.237509 -0.358279 1.065201 -0.371795 2.170449 0.495350 -1.476266 -0.589683 -1.357452 -0.819576 0.130639 0.869959 -0.588076 -0.274768 0.633792 -0.794327 -1.846675 0.633930 0.247357 0.096377 -2.594728 -0.068528 1.436496 0.635951 -0.537444 -2.175706 -1.223522 0.747820 -0.799567 -0.810794 -0.261207 -0.971389 -0.791842 -0.423758 -1.790982 -0.855760 0.376600 -1.270960 -1.443780 1.465089 -1.210447 0.228046 -0.159464 0.509875 -0.385607 0.802875 -0.157509 1.209697 1.098076 -0.373503 -2.550161 0.072221 0.512868 1.317119 -0.224919 -0.066944 -0.476832 0.363825 -1.142333 0.631932 -0.566657 0.931570 2.348724 -0.447189 -1.023157 -0.525775 0.559577 -2.163949 0.908237 -1.416819 -0.025196 -0.196621 1.568597 0.582198 1.090205 2.356217 -2.096893 1.540061 -0.386174 0.192322 1.079605 0.142421 0.902464 -0.873747 -1.525490 0.735433 1.205919 -0.015360 0.450406 -0.771601 -0.187550 -1.340344 -1.300403 0.832829 0.136539 0.054209 1.117221 0.656326 3.480896 -2.346908 0.799431 0.908631 0.027488 0.440080 -0.187908 -2.024923 0.902237 0.325161 0.575670 1.967719 -0.153623 -1.357602 0.083488 -0.036985 0.524178 -1.346690 0.839733 -1.398894 -0.094630 -0.910683 -0.310357 -0.742386 -0.952129 -0.421390 0.406632 1.843145 0.019560 -2.355476 2.134074 -1.229851 0.679230 -2.852710 1.592775 -1.157081 0.591415 -1.309912 -0.000983 -0.457386 0.785162 -0.494417 0.343582 0.831777 -0.719137 1.406416 2.530262 0.506386 0.503428 0.194717 1.082248 -0.003334 0.218767 -0.817848 1.856658 -0.096032 -0.332949 -0.148323 -0.953201 0.973717 -0.422516 -0.278011 0.948298 2.029446 -0.475367 0.769142 1.201655 0.861386 -0.950231 1.476470 0.302562 0.934471 -0.475403 -0.141990 0.072685 0.077619 -0.628295 1.126136 -1.838100 -1.831723 -0.384832 -2.493916 -0.348462 0.505230 0.598394 0.152736 0.331879 -2.032521 -0.818388 1.294006 -0.563122 1.883405 0.621162 1.032818 1.039006 1.727863 -0.853377 -0.483175 -0.568288 -0.336282 -1.017194 -0.959895 -0.630127 1.364317 -0.936694 1.088072 1.013850 -0.328893 0.179207 -0.516619 1.351790 -0.988092 2.355871 1.067446 -0.104430 1.315445 0.232968 2.940618 -0.324884 -1.019902 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.300323 -2.019034 3.212042 2.896484 0.556537 1.147165 1.548102 -2.078180 2.532947 1.708586 -0.178881 0.906332 -2.613682 1.071492 -1.604562 2.020980 -1.695222 -2.261344 -0.610135 -1.442468 -1.003460 -2.021192 1.465628 0.282002 1.611841 -0.374673 -1.684714 -1.181928 -3.216682 -2.194114 1.553037 -0.653859 1.467272 -0.912761 -0.559407 -4.556549 2.212905 2.278592 -0.918532 -2.611858 1.140814 -1.597075 -0.100939 -0.413973 -0.001439 0.256722 -0.068982 0.954373 1.708332 0.983645 1.581431 0.928902 0.588418 4.627365 -2.138949 2.209403 1.028108 0.560267 -0.576574 0.861386 0.681475 0.766340 1.559901 1.654927 -0.499058 -1.577996 -0.643362 -0.762265 -2.685426 2.014700 -0.381900 -0.339130 -2.060033 -0.102054 -1.472333 -0.484860 -1.813367 1.583871 3.710829 -1.993445 2.343128 0.445779 0.861689 -0.567769 1.007954 -0.179239 1.738708 0.709021 -1.047883 -1.034742 -1.777630 0.265443 -0.006799 0.359152 -1.171440 -2.893462 1.672939 -1.311344 -3.036513 0.816696 0.625302 -0.421336 -1.785812 0.079763 1.037438 1.206986 -1.606641 -2.945507 -1.408094 0.928524 0.456142 -1.271346 0.353640 -1.353326 -0.690801 -1.204334 -2.645893 -0.741228 0.269038 -1.980413 -1.580538 2.044986 -1.053158 0.630192 -0.032385 0.836377 -0.553670 1.746167 -0.060899 1.818523 1.050883 0.475218 -2.864451 0.212207 1.295811 2.043113 -0.773525 0.873416 -1.101866 0.646398 -1.194171 0.544439 -0.487058 1.135754 2.004368 -1.220141 -1.710431 -0.712922 0.859716 -2.688709 0.814252 -1.951789 -0.412674 -0.126433 2.093237 0.996211 1.530596 3.536710 -2.109998 1.534638 0.206794 -0.174229 1.765234 -0.118419 1.348222 -1.236914 -2.606428 1.034769 1.381075 0.287581 0.020230 -0.009506 -0.189024 -2.021737 -0.955554 0.236626 0.761143 -0.946350 2.008310 1.147909 2.655733 -2.952954 1.104436 1.320381 -0.598619 0.770059 -0.528849 -3.391111 1.313431 0.454157 0.190384 2.180907 -0.217435 -1.754736 1.340984 -0.775077 0.898949 -1.861157 0.840567 -2.033821 -1.074298 -1.955683 0.169984 -0.238409 -1.109275 -0.615632 -0.121838 2.824154 -1.280432 -1.904345 2.430694 -0.409650 0.399120 -3.601529 3.337974 -1.394972 0.897224 -0.900580 -0.086507 -0.138987 1.736634 -1.172687 0.020874 1.354776 -1.165535 1.762650 3.653557 0.663606 0.463706 0.321980 2.097317 -0.111035 0.860543 -1.250046 2.681538 -0.143362 -1.512300 0.183537 -1.238081 0.674926 -0.991711 0.287025 2.579869 2.129902 0.145859 1.496489 1.567404 2.170360 -1.328827 2.026302 -0.168976 1.477996 -0.989605 0.021581 0.130903 0.214928 -1.019946 1.955893 -2.763353 -3.295089 -1.297883 -2.882691 0.455259 -0.507379 0.825504 -0.656124 -0.089449 -3.142082 -1.936280 0.854224 -1.277570 1.567759 1.602738 1.314839 1.690558 2.542093 -1.380912 0.298674 -0.304282 0.380278 -0.503464 -1.363173 -0.729771 1.447524 -1.631556 1.111793 1.956881 -0.389069 0.746165 -0.389482 1.653768 -1.495832 3.533454 1.339688 -0.475663 2.382427 1.540406 3.638468 0.137354 -1.470839 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.283062 -1.500417 2.856486 2.145194 0.114955 0.953928 1.011255 -1.681708 2.203032 1.332596 -0.637063 0.040497 -1.830501 0.257601 -0.860194 1.222267 -1.600602 -1.606136 -0.379251 -1.295519 -0.460150 -1.706460 0.944893 0.130260 1.077120 0.220939 -0.871428 -0.480685 -1.723225 -2.070379 1.611551 -0.492359 1.081844 -0.034708 -0.219369 -3.608680 2.024382 1.728966 -0.719473 -2.084776 0.617377 -0.597679 -0.529725 0.154087 -0.115226 0.541041 0.003400 1.311894 0.957858 0.794917 1.009617 -0.022033 0.545905 3.404208 -1.273822 1.631069 0.812838 0.272774 -0.187780 1.036102 0.553147 0.573378 0.985037 1.604450 -0.021292 -1.035883 0.109293 -0.617248 -2.248709 1.753678 -0.342556 -0.640203 -1.129809 -0.361297 -0.907284 -0.097692 -1.544928 1.337872 2.972480 -1.221648 2.015919 0.677327 0.799442 -0.568359 0.275893 -0.233977 1.450269 0.621180 -0.799057 -0.778278 -1.347478 -0.530541 0.200003 -0.059426 -0.997680 -1.971849 1.463400 -1.314428 -2.018979 0.618372 0.674124 -0.496800 -1.212398 0.130059 0.873325 0.723157 -0.891744 -1.946551 -1.071977 0.840197 -0.349573 -0.551625 0.026760 -0.306532 -0.552213 -0.399064 -1.926180 -0.513686 0.128594 -1.349598 -0.825567 1.471024 -0.720252 0.365463 0.092626 0.691197 -0.387832 1.211224 0.173780 1.449333 0.831163 0.532564 -1.743252 0.282752 1.021589 1.204557 -0.042630 0.185577 -0.396236 0.637230 -0.957126 0.550367 -0.781078 0.455420 1.724900 -0.907594 -1.147827 -0.695212 0.222396 -2.262841 0.514180 -1.600398 -0.612317 0.248110 1.605473 1.176352 1.074089 2.592240 -2.328454 1.148904 -0.298903 -0.050367 0.611158 0.068241 0.877717 -0.802423 -1.716839 0.406218 1.057447 0.401359 0.174512 -0.662210 -0.286045 -1.639204 -0.819037 0.707511 0.492656 -0.657578 1.112469 1.219869 2.130285 -2.243629 0.641597 1.144138 -0.450835 0.217266 0.072734 -2.726613 0.965336 0.314309 0.624760 1.674675 -0.129016 -0.742683 0.737073 -0.837444 0.257888 -1.385067 0.590335 -1.554201 -0.513299 -1.357070 0.396675 -0.749523 -0.839426 -0.462837 -0.047077 2.009633 -1.018323 -1.641677 2.242563 -0.428712 0.268805 -2.388824 2.146274 -0.986873 0.886016 -0.560503 -0.094051 -0.386340 0.657882 -0.678424 -0.233051 0.684987 -0.653999 1.541009 2.792474 0.594545 0.128432 0.287912 1.743302 -0.583344 0.565861 -1.244843 1.632567 -0.200883 -1.139544 -0.098714 -0.911231 0.448231 -0.907745 0.207938 1.742851 1.641127 -0.014321 1.208191 0.903953 1.302765 -0.849918 1.582683 0.269473 1.156870 -0.641608 -0.076370 0.263085 0.321840 -1.098842 1.409195 -2.272109 -2.525169 -1.444055 -2.309729 -0.313368 -0.770553 0.900088 -0.336470 0.118830 -2.148854 -1.520897 1.099981 -0.794428 1.187922 1.108199 1.013283 1.270686 2.053830 -1.033795 0.185348 -0.082877 0.451849 -0.717779 -1.131880 -0.704006 1.442004 -1.024954 0.763815 1.727722 -0.386577 0.538911 -0.535884 1.352559 -1.481686 2.547532 1.180468 -0.438626 1.496073 0.776503 2.732795 0.284316 -1.119075 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.437172 -0.830046 0.890723 0.498284 0.232919 0.467967 0.153130 0.114314 0.253118 0.786792 -0.712221 0.633781 -0.384825 -0.292051 0.539914 0.273521 -0.194882 -0.689765 0.598378 0.233060 0.203869 -0.477323 -0.406291 0.483260 0.194673 0.222339 -0.302758 -0.000851 -0.717554 -1.051809 -0.208081 -0.178305 0.411428 0.229645 0.458280 -0.521647 0.294487 0.554561 0.090137 -1.098392 0.014136 0.131542 0.006666 0.352840 0.383554 0.788529 0.663904 0.081030 -0.312196 0.256291 -0.208605 -0.547264 0.055765 0.121637 0.326691 0.539777 0.769262 -0.080173 0.253885 -0.103504 0.419483 -0.409346 0.498067 0.508194 -0.431707 -0.051916 -0.004449 0.119008 -0.394999 0.033264 0.360174 -0.206277 -0.250298 -0.386180 -0.073637 -0.015968 0.203476 0.200699 0.875934 0.109245 1.037620 0.649314 1.143405 -0.134882 0.430801 -0.212151 0.411823 0.324216 -0.710206 -0.092378 -0.692626 -0.814879 -0.234910 0.699690 -0.269402 0.821977 0.095406 -0.284400 -0.603406 0.480792 -0.075084 -0.016805 -0.649690 0.476722 0.665737 0.579570 0.016887 -0.495841 -0.513707 0.165286 -0.713664 -0.321117 -0.155584 -0.141927 -0.423774 0.246051 -0.357173 -0.231154 0.687877 -0.579545 -0.139192 0.412574 -0.377914 0.690620 -0.134374 -0.095813 0.015006 -0.010669 0.918185 0.288669 0.286034 -0.634697 -1.057089 0.178897 0.016252 0.239207 -0.275055 -0.234193 0.304464 0.193643 0.370367 0.201759 -0.445601 0.682248 0.976093 -0.053252 -0.402758 -0.899084 -0.022763 -0.242663 0.394042 -0.263884 0.266427 -0.045684 0.350944 -0.147581 -0.004604 0.791067 -0.858620 0.578832 -0.219643 0.438062 -0.227190 0.017966 0.054797 -0.370370 -0.243535 0.246868 0.933777 -0.080153 0.396039 -0.592012 0.270353 -0.151387 -0.610941 0.608816 0.131092 0.239343 0.535320 0.119799 0.803185 -0.274148 -0.429545 -0.159646 0.051799 -0.181867 0.025572 -0.795677 0.446467 0.027321 0.644802 0.776753 0.007051 -0.378655 0.320330 0.009289 -0.052306 -0.305112 0.831928 -0.701804 0.209764 0.057063 -0.081346 -0.639829 -0.202104 -0.285144 0.298003 0.808139 0.504372 -1.020951 0.052798 -0.287054 0.318968 -1.019880 0.033357 -0.236605 0.371698 -0.111879 0.052202 -0.219334 -0.045009 0.283132 -0.279184 0.324143 -0.083584 0.385932 0.245929 0.040900 -0.290521 0.484119 -0.000830 0.118046 -0.417716 -0.156243 0.022893 -0.126719 0.334707 -0.184784 -0.020827 0.585264 0.320661 -0.509081 -0.339136 0.287674 -0.379900 0.053175 0.308375 -0.309714 -0.490475 0.103466 0.070491 0.874835 -0.062480 -0.289730 -0.688230 0.276175 -0.070958 0.130797 -0.734438 -0.381823 0.025606 -1.144924 -0.725664 0.384017 0.286516 0.374219 0.139976 -0.594905 -0.092286 0.355541 0.122543 0.986864 0.130261 0.213112 0.646769 0.163714 -0.216239 -0.532223 -0.279273 -0.239342 -0.633144 -0.204917 -0.028421 0.086704 -0.352650 0.475567 0.344924 -0.206356 -0.147505 -0.292305 0.475485 -0.446986 0.914606 0.698487 -0.664551 -0.256533 -0.046484 0.938091 -0.953007 -0.549389 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.091115 -0.706025 1.452779 1.239501 0.190678 0.535548 0.497930 -1.093478 1.464415 0.729861 -0.009704 0.077879 -0.994467 0.433939 -0.479748 0.863011 -0.817450 -0.937793 -0.329482 -0.974625 -0.625850 -0.912137 0.397493 -0.141426 0.550336 -0.363312 -0.641635 -0.286855 -1.234086 -0.653493 0.875146 -0.314296 0.430106 -0.431176 0.019688 -2.091765 1.086000 0.752280 -0.466294 -1.038497 0.234548 -0.813884 0.170092 -0.208999 0.308638 0.114834 -0.111561 0.569513 0.904386 0.324362 0.760480 0.374448 -0.090157 2.308854 -1.179377 0.915235 0.262071 0.161097 -0.268748 0.714250 0.238274 0.366738 0.624913 0.687460 -0.275476 -0.790781 -0.170646 -0.416181 -1.028644 0.991258 -0.013789 -0.396849 -0.926982 -0.229457 -0.687046 -0.448351 -1.958191 0.798834 1.580970 -1.052492 0.882677 0.315687 0.660283 0.063573 0.728099 -0.118199 1.303457 0.209277 -0.632882 -0.177849 -0.883992 0.005890 0.083652 -0.240243 -0.443870 -1.404165 0.567508 -0.590449 -1.307068 0.497817 0.371532 0.065121 -0.950996 -0.020671 0.596601 0.294971 -0.730253 -1.319351 -0.590666 0.497117 0.032912 -0.405045 0.298992 -0.908543 -0.182251 -0.655700 -1.203521 -0.271645 0.112225 -0.625719 -0.884896 1.135122 -0.594401 -0.051774 0.002055 0.308310 -0.376538 0.894321 -0.196040 0.853175 0.217333 0.159033 -1.956836 0.402794 0.526244 0.819983 0.004069 0.533609 -0.495462 0.271758 -0.894591 0.363363 -0.230607 0.567377 0.728899 -0.527522 -0.717634 -0.271394 0.437867 -1.094832 0.497367 -0.803683 -0.321958 -0.309765 0.946665 1.113180 0.778191 1.205310 -0.971311 0.675996 -0.257656 0.109469 0.888807 0.041207 0.690666 -0.560227 -0.891769 0.247223 0.541680 0.003232 0.214788 -0.302529 -0.057251 -0.984020 -0.217690 -0.018857 0.382259 -0.430630 0.948052 0.644366 1.144674 -1.731292 0.580402 0.670512 -0.252042 0.328075 -0.204340 -1.273643 0.552794 0.348522 0.057200 0.829335 -0.165018 -0.608365 0.210051 -0.302721 0.523430 -0.653482 -0.042760 -0.789810 -0.670899 -0.753723 0.436775 -0.478937 -0.471455 -0.234463 -0.216245 1.171233 -0.540207 -0.761740 1.410884 -0.443530 0.203784 -1.268008 1.517103 -0.647464 0.332999 -0.611765 0.055267 -0.302430 1.055685 -0.574709 0.298569 0.557309 -0.601856 0.679375 1.631062 0.370252 0.477647 0.120362 1.051498 -0.251153 0.321980 -0.561434 1.333666 -0.211963 -0.483351 0.099602 -0.563046 0.313930 -0.376633 0.278497 1.118717 0.935145 0.130475 0.507739 0.744462 0.775539 -0.546808 0.853617 -0.101526 0.368925 -0.499957 0.047696 0.215034 -0.146775 -0.482465 0.493195 -1.242234 -1.194846 -0.600460 -0.806658 0.230600 -0.077087 -0.008123 -0.139168 -0.019789 -1.332733 -0.739911 0.403881 -0.597513 0.148759 0.456287 0.535984 0.747190 1.352767 -0.605985 0.004639 -0.084991 -0.163712 -0.250354 -0.606080 -0.527978 0.996866 -0.781003 0.483034 0.877224 -0.168089 0.267783 0.166151 0.789806 -0.641368 1.361682 0.541819 -0.093357 0.930410 1.115679 1.900879 0.199444 -0.614307 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::deque() = -0.266089 -0.409759 0.768164 0.503588 -0.039957 0.269698 0.211296 -0.591278 0.818416 0.152198 -0.085703 -0.070981 -0.634515 0.170870 -0.340911 0.326032 -0.471961 -0.558811 -0.142840 -0.509122 -0.334610 -0.596477 0.300633 0.020851 0.192451 0.060396 -0.241864 0.023315 -0.541642 -0.508647 0.556962 -0.210871 0.239850 0.017991 0.041207 -1.078586 0.569514 0.314778 -0.263865 -0.547624 0.111532 -0.288301 0.048236 -0.044043 0.015272 0.129067 0.029632 0.343524 0.433597 0.200417 0.414571 -0.038359 -0.090877 1.008798 -0.557530 0.481867 0.219211 0.123182 -0.132111 0.327650 0.072480 0.130529 0.275537 0.529400 -0.244672 -0.254489 0.034662 -0.295614 -0.716893 0.588059 -0.177524 -0.185922 -0.447337 -0.249364 -0.387211 -0.212583 -0.771490 0.350249 1.011031 -0.553163 0.535293 0.210558 0.401805 -0.066857 0.277514 -0.092136 0.632232 0.130452 -0.453697 -0.021138 -0.333185 0.003461 -0.072809 -0.018915 -0.158742 -0.584717 0.384809 -0.591127 -0.692575 0.271293 0.120174 0.102726 -0.531986 0.061425 0.360127 0.144290 -0.469718 -0.769312 -0.284456 0.238921 0.013916 -0.048105 0.146588 -0.179673 -0.149040 -0.284152 -0.698627 -0.269005 0.051330 -0.531948 -0.294551 0.568178 -0.315993 0.167928 0.133775 0.210596 -0.165051 0.648238 0.086449 0.343725 0.018644 0.070891 -0.769274 0.125793 0.193969 0.429521 -0.033694 0.155954 -0.114238 0.065861 -0.464042 0.011815 -0.283518 0.064849 0.496818 -0.268651 -0.452565 -0.074160 -0.003833 -0.903583 0.270190 -0.603860 -0.203596 0.033922 0.421008 0.592912 0.358957 0.897046 -0.562439 0.340338 -0.188222 -0.053640 0.282943 0.077585 0.444770 -0.277779 -0.541356 0.156715 0.211280 -0.008612 0.240078 -0.421725 -0.092467 -0.653627 -0.223421 0.188836 0.253637 -0.167911 0.374258 0.294057 0.450016 -0.737368 0.242062 0.352961 -0.027822 0.146827 -0.042915 -0.750455 0.342526 0.119666 0.107148 0.343557 -0.054928 -0.228028 0.195541 -0.218719 0.311704 -0.466996 -0.006496 -0.474395 -0.190075 -0.536893 0.269648 -0.261350 -0.230781 -0.031491 -0.102272 0.590902 -0.357865 -0.405980 0.783481 -0.022326 0.410496 -0.657564 0.515809 -0.301076 0.570390 -0.253313 0.096394 -0.165408 0.211341 0.025136 0.033132 0.198428 -0.119461 0.345313 0.800599 0.141968 0.234141 0.252366 0.643588 -0.141914 0.128442 -0.249838 0.587085 -0.088395 -0.373318 0.222179 -0.293305 0.118213 -0.242036 0.152529 0.622567 0.637294 -0.042834 0.448032 0.328850 0.338557 -0.264432 0.348402 0.027020 0.335200 -0.336056 0.016440 0.076461 0.146206 -0.362156 0.221447 -0.645590 -0.893140 -0.540197 -0.644818 -0.134913 -0.185338 0.088456 -0.073731 0.070651 -0.494463 -0.315599 0.477357 -0.315458 0.506730 0.242225 0.395221 0.507107 0.893809 -0.375717 -0.135971 0.103278 0.030169 -0.291258 -0.116449 -0.375146 0.369903 -0.381224 0.217869 0.455864 -0.078081 0.060943 0.017567 0.436794 -0.417703 0.755497 0.376655 -0.055046 0.668508 0.377183 0.906188 0.359238 -0.289770 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_base() = -0.480470 -2.023707 4.696366 3.124186 -1.159909 1.394607 0.779359 -3.489920 3.172122 1.119198 -0.422268 0.170847 -2.411237 0.666799 -0.745624 1.983898 -2.998952 -1.850028 -1.081341 -2.891208 -1.729630 -2.288966 1.196245 0.638862 1.219071 1.056989 -1.185983 -0.031029 -0.984309 -3.949466 2.425364 -0.471359 1.513478 0.247666 0.787546 -7.082717 3.285020 1.876049 -1.322914 -3.071704 0.729005 0.041194 -0.913278 0.689554 -1.148912 0.784463 -0.285571 2.260808 1.323936 1.640198 1.401199 0.401292 1.233228 5.678747 -1.286287 2.532965 1.908359 0.365120 -0.414516 1.518787 0.601373 0.883774 1.026884 2.028535 0.237081 -1.606105 0.318188 -1.066702 -3.386459 2.768682 -0.211003 -2.273600 -1.749149 -2.005180 -1.439477 -0.662484 -3.480294 2.354230 4.702170 -2.838102 2.418369 1.090848 1.015961 -0.442131 1.028868 -0.681937 2.972010 1.093901 -1.328440 0.153829 -0.727418 -1.551791 0.572754 -0.719009 -1.764048 -4.578578 2.284884 -2.921792 -3.246569 1.999203 1.385696 -0.580502 -2.501503 -1.222228 1.701803 0.567253 -2.143225 -3.124606 -1.881324 1.673632 -0.186989 -0.452803 -0.108156 0.462634 -0.404258 0.049564 -3.560082 -0.275174 0.886734 -1.808959 -0.986519 2.373289 -0.497894 0.805645 0.365276 1.217080 -1.029932 2.839836 0.568066 2.020871 0.344938 1.318212 -1.506227 1.246048 1.088262 0.527442 0.363007 -0.474578 -0.413857 1.061731 -1.605754 1.581759 -1.423657 0.736569 3.085853 -0.182130 -2.487764 -0.883143 -0.790438 -4.490108 1.252936 -2.986248 -1.666998 1.246415 1.830993 2.098545 1.217496 2.466878 -3.099273 1.660858 -1.000419 0.261281 0.611607 0.240031 1.669160 -1.296945 -2.778020 0.707156 1.092513 0.674021 0.972283 -1.958418 -0.245239 -2.392770 -1.773573 1.187412 1.336298 -0.972450 1.373128 2.159120 4.863818 -2.263003 0.296982 1.349833 -1.041066 0.394926 -0.167119 -3.820516 0.827042 0.596842 1.059845 3.130829 -0.422696 -0.590982 1.351304 -0.969490 0.643135 -1.737645 0.715510 -2.467038 -0.641926 -2.186968 0.817359 -1.575740 -0.606734 -0.819661 -0.749210 3.332001 -3.284833 -2.274926 4.478819 -1.221119 1.465711 -3.430256 3.645475 -0.919143 2.039964 -1.074271 -0.295700 -0.820706 -0.226081 -0.698818 0.508506 0.700195 -0.471513 1.029392 4.534508 0.320459 0.442827 0.714778 2.945477 -1.423989 1.058025 -2.094753 3.532556 -0.882813 -1.395655 -0.103244 -1.022238 0.179647 -2.046361 0.752429 2.054074 1.779389 -0.127683 1.208800 1.506485 1.480274 -1.443002 2.726532 0.434804 1.071096 -1.776061 -0.058623 0.712136 1.094308 -1.688428 1.519237 -3.385320 -3.395533 -4.360353 -2.944410 -1.495478 -0.288678 1.477508 -0.872438 -0.527768 -2.087828 -2.267038 3.556524 -1.282418 0.927798 2.281272 2.189564 2.839912 4.385026 -0.927056 0.197943 -0.253064 0.029454 -1.197651 -1.054035 -1.386303 1.959401 -1.022005 0.975765 2.666571 0.307054 1.294560 -0.843977 2.228464 -2.262266 3.472469 1.606169 -0.580300 2.272562 2.210536 3.241446 0.740545 -1.482582 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.078883 -0.690940 1.384196 1.155033 0.164837 0.582740 0.247283 -1.148698 1.438094 0.709342 -0.085908 0.159324 -0.866326 0.463878 -0.762234 0.845856 -0.795896 -0.896068 -0.363101 -0.926103 -0.698844 -0.923485 0.289364 -0.071102 0.449946 -0.272257 -0.693969 0.031137 -1.154038 -0.969437 0.669652 -0.297340 0.296169 -0.697769 0.100702 -1.804595 1.138277 0.804098 -0.425315 -1.030264 0.133714 -0.750514 0.050550 -0.147112 0.184219 0.109515 -0.159708 0.495415 0.825240 0.297085 0.784491 0.458047 -0.027283 2.252951 -1.034899 0.969975 0.311513 0.263579 -0.201114 0.704028 0.267989 0.415822 0.530171 0.718021 -0.208029 -0.703609 -0.147466 -0.234174 -0.854043 1.035861 -0.185663 -0.499547 -0.857488 -0.286429 -0.852952 -0.382285 -1.817978 0.702601 1.581285 -0.984062 0.794291 0.329787 0.686583 0.132020 0.765048 -0.198450 1.419421 0.277117 -0.673575 -0.125642 -0.554722 0.133581 0.106075 -0.203314 -0.530078 -1.427157 0.584849 -1.086397 -1.306163 0.529084 0.342101 0.055921 -0.791332 -0.085858 0.668192 0.146959 -0.709967 -1.276646 -0.472112 0.537131 0.074825 -0.414654 0.393723 -0.844851 -0.013737 -0.326171 -1.179538 -0.318364 0.177761 -0.621192 -0.776331 1.116244 -0.348568 -0.031324 -0.049153 0.266280 -0.271423 0.826657 -0.228381 0.900805 -0.174230 0.419092 -1.754351 0.515480 0.440064 0.228549 -0.089757 0.592131 -0.353161 0.297479 -0.848019 0.399909 -0.620845 0.444007 0.633240 -0.408239 -0.744608 -0.298937 0.202248 -1.119058 0.406599 -0.782272 -0.701156 -0.350738 0.940982 1.088685 0.723350 1.041991 -0.881542 0.521804 -0.207591 0.150373 0.831279 -0.266805 0.622504 -0.538269 -0.951575 0.383245 0.549626 0.016452 0.251621 -0.393394 -0.082704 -0.869485 -0.122064 0.179090 0.450473 -0.310170 0.978552 0.586888 1.053703 -1.589422 0.594354 0.606390 -0.218987 0.367654 -0.318369 -1.258799 0.500969 0.360370 0.339602 0.844140 -0.160615 -0.464825 0.204310 -0.263852 0.593183 -0.713829 -0.020132 -0.787273 -0.594708 -0.691360 0.476057 -0.411868 -0.314839 -0.257660 -0.376222 1.113082 -0.908270 -0.713004 1.518656 -0.320637 0.324235 -1.105034 1.109282 -0.602907 0.594524 -0.392648 0.172523 -0.227483 0.833260 -0.511065 0.351577 0.586309 -0.585436 0.636824 1.411603 0.299326 0.523051 0.139714 0.982080 -0.337714 0.265538 -0.572930 1.265945 -0.120861 -0.557448 0.057352 -0.589187 0.236325 -0.410783 0.339988 0.910920 0.870454 0.086302 0.444829 0.727273 0.706129 -0.561004 0.834049 -0.143803 0.203296 -0.590572 0.018394 0.182390 -0.121205 -0.493067 0.421275 -1.205478 -1.098778 -1.065011 -0.731765 0.162116 -0.232354 0.000590 -0.189355 -0.060551 -1.133135 -0.785729 0.889054 -0.578949 0.161828 0.492395 0.588489 0.714904 1.332008 -0.501335 0.077854 -0.212185 -0.244156 -0.272925 -0.539012 -0.498429 0.970216 -0.679718 0.485343 0.824501 -0.186300 0.302484 0.360606 0.419452 -0.594655 1.225808 0.592736 -0.079818 0.810657 1.030696 1.807134 0.188105 -0.652693 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.105150 -8.122040 17.566496 13.348147 -4.042076 5.971925 1.131718 -11.774056 10.035946 6.330075 -2.640923 3.138292 -7.001262 2.176116 -0.921144 8.029042 -11.693886 -5.631924 -3.376669 -8.878606 -5.577047 -7.398750 1.546257 3.555530 4.940458 4.730189 -5.462170 0.687672 -3.563456 -14.758674 6.118274 -1.408881 5.761106 0.210854 4.218278 -25.657524 12.273282 8.925631 -3.693121 -12.650552 1.856432 -0.640379 -3.276955 1.663487 -4.659902 3.372526 -1.318253 7.178238 3.719316 5.078992 2.837714 2.555156 6.472143 20.708621 -2.255740 9.515857 7.245458 0.167780 -0.869807 3.972353 3.774504 3.247274 4.635068 6.047790 1.820881 -7.238237 -0.133207 -2.222376 -10.061907 8.998430 0.445072 -8.613196 -6.500379 -7.129330 -5.637561 -2.034154 -12.571130 9.706701 15.623563 -9.249014 9.043386 4.108541 3.608408 -0.355932 5.360963 -2.283837 11.970503 4.675221 -4.043480 1.115489 -1.671510 -7.323810 4.275378 -2.798185 -8.111868 -16.368632 7.079804 -11.048645 -11.635367 7.686896 5.598985 -3.427928 -7.903772 -5.655512 6.323320 2.616431 -6.186493 -9.911313 -5.999851 6.335194 -1.347489 -3.935225 -1.252168 1.334513 -0.817150 1.747101 -11.985519 0.272429 4.587886 -4.556982 -2.574840 8.843154 -0.248390 1.750071 -0.986453 2.943189 -3.184419 8.900060 0.919975 8.280961 0.100735 5.375705 -4.492506 5.455973 4.126660 -1.103890 0.664837 -2.490768 -0.996872 5.091079 -4.322149 7.318455 -5.292017 5.083663 10.891570 0.525340 -8.177626 -5.732551 -4.016251 -13.908582 3.478762 -8.682984 -6.574585 5.041249 7.917088 6.354023 4.229305 5.645564 -11.308140 5.137309 -3.164981 2.229463 3.319801 0.412160 4.405622 -5.055933 -8.987878 3.959270 5.070263 3.805509 2.846288 -5.230618 0.010840 -5.621297 -5.433785 5.708679 5.093866 -1.916325 6.767011 8.243077 19.684007 -7.255584 0.900636 3.922772 -4.161809 1.189326 -1.137151 -13.203203 2.715930 2.476535 4.781658 12.875052 -2.145471 -1.978751 3.881287 -2.601179 1.489436 -6.113064 4.033273 -8.578455 -1.546253 -6.176677 2.113280 -6.009654 -2.154638 -5.207047 -3.108235 13.001189 -13.245663 -8.596903 15.545810 -5.902890 4.263443 -11.993572 12.810166 -3.873509 6.446039 -3.481175 -2.428787 -1.896107 -1.400604 -5.136547 2.426517 4.064495 -2.869482 2.386369 14.533096 1.725609 0.336434 0.958347 8.693398 -4.928677 4.183974 -8.118652 12.607823 -2.525704 -2.187717 -2.671237 -3.901531 1.039389 -6.163953 1.909961 5.649394 4.726997 1.114352 2.420521 5.578282 4.639858 -5.932038 10.109176 0.720561 2.780233 -5.969664 -1.039619 1.672323 4.044594 -4.473316 5.316983 -12.842428 -9.698788 -16.666918 -8.228343 -5.350693 0.529013 5.428017 -2.466918 -2.660831 -8.140972 -9.341490 14.016592 -4.181396 1.724772 7.799876 6.658314 9.514237 12.804152 -1.890897 1.193109 -2.848824 -1.087509 -3.082189 -4.119858 -4.750482 8.798913 -3.969834 4.292713 10.525014 -0.198206 5.631066 -2.115984 7.246695 -7.847915 12.103016 5.731617 -4.012341 4.751945 8.989937 10.780227 -1.039752 -6.774319 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.148457 -0.682900 1.158859 1.094313 -0.341208 0.267154 0.310256 -0.461369 1.085951 0.294865 -0.235782 -0.000858 -0.795275 0.312800 0.640233 0.784442 -1.234720 -0.600687 0.184269 -0.324120 -0.401565 -0.763743 0.302773 0.014092 0.382574 0.743875 -0.227904 -0.264115 -0.056585 -0.045031 0.981339 -0.552375 0.592948 1.300030 0.329893 -2.279881 0.729767 -0.002763 -0.271962 -0.955598 -0.071243 -0.485010 0.506780 -0.680838 0.093446 0.356691 0.392935 1.194203 0.673804 0.320316 -0.182077 -0.496924 0.216146 1.398699 -0.551432 0.410416 0.291552 -0.293855 -0.150683 0.012281 0.362765 -0.064343 0.625813 0.780537 -0.292550 -0.556014 -0.286050 -0.861112 -1.059379 0.716852 0.300977 0.365067 -1.160843 -0.271157 -0.009728 -0.330215 -2.451016 1.217387 1.484523 -1.023589 0.871540 0.466788 0.761900 -0.030229 0.453034 0.106786 0.920533 0.240733 -0.792962 0.314276 -0.666923 -0.989759 0.247912 -0.846813 0.051200 -1.179113 -0.030379 -0.040547 -0.786107 0.528350 0.200786 0.401690 -0.552125 -0.170504 0.739691 0.548284 -0.623988 -0.949249 -0.257271 -0.192137 -0.212380 -0.215185 -0.009510 0.070632 -0.450336 -0.672793 -1.035718 -0.460965 0.105618 -0.700503 0.188875 0.728692 -0.447616 0.183807 -0.035402 -0.087288 -0.182529 1.310110 0.358228 0.444028 0.694224 -0.215502 -0.778833 0.674780 0.527951 1.161464 0.289021 -0.115086 -0.194991 0.251850 -0.663075 -0.199178 0.537050 0.485184 0.830609 -0.281770 -0.757634 -0.439943 0.004475 -1.000483 0.673271 -0.831499 0.586989 0.589180 0.743073 0.692957 0.657967 0.656669 -1.223824 0.616166 -0.641024 0.465163 0.557848 1.306877 0.601422 -0.383453 -0.208551 0.234550 0.385008 -0.013854 0.366915 -0.780297 0.209756 -0.690965 -0.295512 0.372725 0.480527 -0.291622 0.458500 0.201461 0.853197 -0.708725 0.173712 0.550467 0.244511 0.001386 0.271532 -0.949073 0.969786 -0.110059 -0.097883 0.054788 -0.231772 -0.461610 0.130250 -0.185332 0.112569 -0.312454 -0.275065 -0.469560 -0.345509 -0.694374 0.853385 -0.571148 -0.540993 -0.071413 0.459127 0.998426 -0.192955 -0.163635 0.814642 -0.835799 0.627435 -0.686071 1.524102 -0.573448 0.164346 -0.748774 -0.569984 -0.163963 0.028472 -0.025750 -0.190664 0.495470 0.154395 -0.126517 0.890537 0.404130 0.060430 0.492077 0.766199 0.214116 0.261396 0.017029 0.700406 -0.248490 0.452435 0.143432 -0.375263 0.444810 -0.054638 0.023449 1.334429 0.716131 0.336364 0.876970 0.237463 0.253785 -0.562408 0.264356 -0.085395 0.742877 -0.488508 0.072161 -0.117549 0.228123 -0.531500 0.405796 -0.879960 -1.165181 -0.456711 -0.000145 -0.808796 0.371881 0.237602 -0.050893 0.223090 -0.651611 -0.234577 0.071605 -0.426604 -0.204600 0.172625 0.157763 0.763485 0.964315 -0.403947 -0.781911 0.231115 -0.071303 -0.237302 0.275229 -0.835758 0.640604 -0.907266 0.356594 0.901825 -0.354683 -0.254083 -0.386600 1.772770 -0.473332 1.088857 0.529368 -0.419653 0.552155 0.967037 1.010302 0.439314 -0.548199 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.082253 -0.375578 0.575701 0.532890 0.048914 0.125429 0.542693 -0.137508 0.793960 0.457756 -0.069702 -0.205388 -0.601233 0.082115 0.586729 0.448957 -0.494317 -0.437815 0.273371 -0.221948 -0.145578 -0.526097 0.212835 -0.246191 0.222719 -0.019724 0.028056 -0.460068 -0.219097 0.222090 0.678092 -0.389219 0.310082 0.671632 0.050776 -1.280927 0.319863 -0.135644 -0.208061 -0.495363 -0.017800 -0.400171 0.518566 -0.269824 0.490463 0.209476 0.378728 0.784098 0.494448 0.225422 0.124128 -0.500429 -0.059890 0.913524 -0.611290 0.203754 0.034455 -0.208689 -0.136516 0.238836 0.131587 -0.188881 0.437763 0.503609 -0.318756 -0.242710 -0.124658 -0.575883 -0.723406 0.338292 0.285155 0.291443 -0.710457 -0.017200 0.219928 -0.316110 -1.983638 0.596124 0.871925 -0.570264 0.652346 0.367262 0.623083 -0.017594 0.291748 0.112537 0.500710 -0.017394 -0.611424 0.079130 -0.732987 -0.537851 0.012235 -0.467932 0.263684 -0.497424 -0.100208 0.634416 -0.452636 0.294072 0.002405 0.397087 -0.479855 0.138893 0.419541 0.396608 -0.414257 -0.700395 -0.347091 -0.160836 -0.313751 -0.043263 0.077153 -0.342398 -0.411934 -0.702354 -0.511718 -0.376278 -0.020131 -0.495055 -0.240653 0.497800 -0.518839 0.139882 0.112485 -0.026328 -0.124160 0.682287 0.288281 0.240042 0.724901 -0.457062 -1.249956 0.374068 0.370846 1.109096 0.366582 0.156111 -0.192613 0.065419 -0.472944 -0.084559 0.592492 0.442894 0.512848 -0.353572 -0.315696 -0.186005 0.476489 -0.355515 0.598058 -0.445258 0.679972 -0.044486 0.433997 0.485678 0.424474 0.526555 -0.792990 0.535105 -0.503376 0.280710 0.336100 0.924805 0.459589 -0.230773 -0.001084 -0.152038 0.431586 -0.188387 0.196078 -0.481460 0.121027 -0.549256 -0.119570 -0.125393 0.145985 -0.372285 0.260031 0.101426 0.617565 -0.780395 0.141985 0.384412 0.212171 -0.017861 0.208971 -0.541892 0.659983 -0.027769 -0.283122 -0.133148 -0.089988 -0.421543 -0.002297 -0.182837 0.044892 -0.100524 -0.277155 -0.262707 -0.424321 -0.326254 0.577897 -0.461591 -0.506861 0.104900 0.529697 0.505260 0.508071 -0.073934 0.300001 -0.639152 0.095545 -0.436940 1.397835 -0.393119 -0.304357 -0.730850 -0.328391 -0.288332 0.666362 0.099617 -0.144158 0.229388 0.026180 0.199716 0.698318 0.310906 0.183045 0.352144 0.520374 0.194587 -0.062623 0.084034 0.385099 -0.243392 0.309430 0.159818 -0.226041 0.490570 0.173444 -0.060202 0.891319 0.569440 -0.057955 0.534507 0.183482 0.104978 -0.243174 0.141385 -0.012485 0.657339 -0.187069 0.118862 -0.130190 -0.157846 -0.319295 0.239941 -0.518514 -0.554816 0.485051 0.044226 -0.345638 0.429261 -0.018090 0.133058 0.327196 -0.666426 0.033858 -0.435139 -0.269345 -0.409493 -0.069558 0.041684 0.419139 0.578494 -0.242853 -0.596792 0.161357 -0.130644 -0.262548 -0.013023 -0.318683 0.320427 -0.726204 0.296058 0.294637 -0.145163 -0.352148 -0.234263 1.190917 -0.308184 0.653617 0.319778 -0.042871 0.424657 0.703699 1.001813 0.122255 -0.225734 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.002590 -2.236412 3.990259 2.842120 0.395314 1.402840 2.065714 -2.940371 3.384983 1.705869 -0.222157 0.189625 -3.238931 0.781844 -1.972752 1.833918 -1.767317 -2.788608 -0.883293 -2.442046 -1.241466 -2.643534 1.838462 0.269928 1.492472 -0.675727 -1.373703 -1.149955 -3.407651 -3.210155 2.409703 -0.579426 1.513872 -0.943142 -0.488274 -5.501300 2.826055 2.404866 -1.316287 -2.934907 1.298539 -1.094243 -0.694661 0.623200 0.036080 0.505180 -0.047067 1.667688 1.712579 1.508214 2.438925 0.608064 0.366787 5.480794 -2.488642 2.751874 1.472015 0.926354 -0.517440 1.862516 0.334428 0.859271 1.423547 2.276334 -0.553870 -1.262660 0.086250 -0.933734 -3.663222 2.621450 -0.535703 -1.330623 -1.849206 -0.688515 -1.636352 -0.575293 -2.186069 1.508613 4.748994 -2.422046 2.871648 0.895988 1.250136 -0.951425 0.889360 -0.552491 2.248578 0.755513 -1.424635 -1.196851 -2.464015 0.003869 -0.450127 0.313011 -1.395234 -3.336770 2.461900 -1.923536 -3.557176 1.180887 0.659040 -0.498283 -2.564121 0.203191 1.375112 0.957721 -2.046630 -3.671264 -2.241038 1.626446 0.031900 -0.733128 0.448136 -1.052654 -0.744597 -1.141396 -3.262612 -0.870506 0.431726 -2.539594 -2.166579 2.458481 -1.459643 1.085509 0.589499 1.387145 -0.809269 2.064604 0.410135 1.894155 1.414213 0.392535 -3.615964 0.414928 1.217725 2.225735 -0.353917 0.919911 -0.852215 0.687299 -1.567265 1.038126 -1.163105 0.727095 2.599739 -1.362495 -2.119948 -0.522075 0.985791 -3.711722 1.225651 -2.814027 -0.996560 -0.321871 2.063609 1.836243 1.488283 4.382126 -2.742259 2.068603 -0.166370 -0.277654 1.054208 -0.386032 1.781036 -1.349522 -3.343970 0.626425 1.568908 0.142254 0.425859 -0.957292 -0.577392 -2.992884 -1.757786 0.176405 0.726402 -1.313143 1.927932 1.751567 3.435516 -3.697294 1.027407 1.542713 -0.944833 0.805784 -0.463749 -4.191990 1.216398 0.628448 0.562254 2.862609 -0.134557 -1.562454 1.677068 -1.080284 0.977726 -2.167720 0.894175 -2.683073 -1.304732 -2.423826 0.339665 -0.787090 -1.189376 -0.407498 -0.321609 3.120899 -1.349148 -2.681129 3.466195 -0.558192 0.605895 -4.347965 3.773899 -1.321135 1.330316 -1.051910 0.332542 -0.819735 1.842464 -0.634583 0.087261 0.931776 -1.242464 2.640548 4.889611 0.442114 0.816670 0.810314 2.907347 -0.834272 0.615202 -1.920909 3.241435 -0.534315 -2.424377 0.387986 -1.326851 0.801275 -1.560397 0.490005 2.721487 2.719459 -0.615466 1.692638 1.925770 2.159838 -1.273495 2.577408 0.313841 1.740160 -1.350636 0.128767 0.381541 0.095800 -1.551347 2.105341 -3.335791 -3.985668 -1.961574 -4.208002 0.113450 -1.020697 1.152421 -0.669791 0.007553 -3.511043 -2.185859 1.464434 -1.425947 1.886255 2.167181 2.155478 2.392875 3.950999 -1.607018 0.422011 -0.074175 0.496253 -1.396587 -1.912066 -0.714010 1.441643 -1.426154 1.325207 2.055315 0.215666 1.002511 -0.799616 1.876024 -2.117487 4.106975 1.751903 -0.162672 3.092010 1.501781 4.500863 0.559621 -1.389175 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.718386 -1.981274 4.613693 2.543411 0.178516 1.779997 2.228645 -3.759860 4.959501 1.831174 -0.816519 -1.652994 -3.378352 -0.559315 -0.324717 1.044826 -2.479254 -2.749786 -0.502703 -3.129201 -0.743226 -4.003239 1.998460 -0.140427 0.881589 0.285518 -0.547320 -0.030396 -2.113799 -4.348160 4.491031 -0.725467 1.636807 1.100044 -0.201611 -7.641259 4.017511 2.169138 -1.314691 -3.038867 0.490008 -0.000978 -1.417786 1.752041 0.459097 1.275002 0.014162 2.878368 1.597240 1.389191 2.644519 -1.406966 -0.306776 4.830683 -2.595905 2.642819 0.937917 0.136724 -0.377029 3.058003 0.157376 0.857296 1.724991 4.253554 -0.801709 -0.641433 2.209152 -1.236985 -5.669664 3.519565 -0.217766 -2.156310 -1.008336 -0.993500 -0.713226 -0.180056 -1.398863 1.539481 5.687287 -1.230862 4.142913 1.316913 2.098876 -1.827847 0.470626 -1.027687 3.579147 0.618344 -2.486708 -1.430184 -3.555115 -1.971889 -0.143596 0.815641 -0.700257 -1.091546 2.221695 -1.558905 -2.970952 0.919507 0.771551 -0.150347 -4.518961 0.433200 2.352159 0.498256 -1.255323 -3.962988 -3.077588 1.859778 -2.609240 0.202486 -0.452426 0.119762 -1.698828 -0.862273 -2.934213 -1.801037 0.087570 -2.643888 -2.408523 2.412621 -2.676279 0.798019 0.961864 1.515713 -0.700444 1.332419 0.363248 1.701887 2.974451 -0.460920 -3.606848 -0.263610 0.969962 3.550867 1.276179 -0.578966 -0.161126 0.799631 -2.502097 1.109669 -1.596290 0.132257 3.966609 -1.347245 -1.722125 -0.032349 1.153921 -4.904918 1.702822 -3.412641 -0.818118 -0.047646 2.326105 2.283994 1.423877 4.726193 -4.933809 3.113705 -1.344745 -0.082655 -0.022800 0.769476 1.876158 -1.193154 -2.892513 -0.472122 1.398938 0.158060 0.841571 -2.822576 -1.316452 -3.622561 -3.192489 1.036365 0.166263 -0.766115 0.467724 2.111250 5.765384 -5.010835 1.068113 2.228846 -0.096242 0.111392 0.621284 -4.405931 1.436665 0.417399 1.251928 3.213579 -0.121158 -1.336007 0.293539 -1.020369 0.363744 -2.374864 0.672123 -2.786178 -0.259960 -2.293970 0.082550 -1.964634 -1.852502 -0.254683 0.643421 2.751695 0.205800 -4.432235 5.045406 -1.875263 1.296189 -4.796918 3.182930 -1.393710 1.255160 -2.197088 0.333594 -1.749194 0.891478 0.080297 0.237776 0.055671 -0.686044 3.627828 5.910072 0.661852 1.022975 0.798850 3.119660 -1.231078 -0.134025 -2.337506 3.016716 -0.637133 -2.071906 0.030129 -1.631768 1.621277 -1.701953 0.001543 2.502702 4.269500 -1.471610 2.217357 1.513826 1.179428 -0.909989 2.885709 1.688297 1.920221 -0.721232 0.028012 0.932846 0.228203 -2.381231 2.239010 -3.521410 -4.412032 -0.990706 -5.672694 -1.543386 -0.941887 1.798461 0.266023 0.985610 -3.501827 -1.412558 2.084936 -0.922453 3.497953 1.462066 2.435412 2.111874 4.604617 -1.963846 -0.177318 0.240696 0.685008 -2.947076 -2.309373 -1.127121 2.061675 -1.299874 1.819772 2.006895 0.298976 0.383436 -2.240148 2.970830 -2.924457 4.091270 2.203197 0.354217 2.957585 -0.348224 5.387660 1.474883 -1.224506 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.294208 -0.892814 1.566300 1.467280 -0.159824 0.625964 0.218397 -1.033500 1.223337 0.743887 0.011670 0.297262 -0.905863 0.382639 0.193657 0.915899 -1.094448 -0.748117 -0.318331 -0.884885 -0.718670 -0.846663 0.128468 0.216161 0.444786 0.211702 -0.703329 -0.099504 -0.718125 -0.987533 0.753817 -0.286093 0.744003 0.143522 0.267930 -3.173453 1.146220 0.816210 -0.394003 -1.261377 0.122400 -0.644836 0.226119 -0.211337 -0.350390 0.272127 -0.043651 0.305642 0.719119 0.329544 0.448808 0.272847 0.344241 2.340771 -0.661653 0.939023 0.508593 -0.145183 -0.343415 0.313610 0.351380 0.291964 0.820244 0.648711 -0.222518 -0.835231 -0.178860 -0.450074 -1.274063 0.923053 0.078072 -0.556404 -0.899205 -0.550016 -0.609627 -0.556993 -1.475269 1.003648 1.666877 -1.137488 1.017286 0.341672 0.495554 0.157681 0.892364 -0.093465 1.448180 0.325556 -0.630586 0.223142 -0.288093 -0.565651 0.328216 -0.021849 -0.571759 -1.377719 0.486715 -0.610303 -1.287825 0.794152 0.380993 0.073083 -1.387692 -0.625756 0.727193 0.486813 -0.772342 -1.284520 -0.761495 0.530510 -0.010083 -0.556189 -0.073857 -0.388745 -0.254334 -0.460047 -1.301784 -0.189932 0.372529 -0.606237 -0.604523 1.158434 -0.453338 0.094121 -0.127392 0.267357 -0.423944 1.213086 -0.112396 0.816306 0.170595 0.116927 -1.338635 0.168235 0.402822 0.714858 0.047144 -0.204229 -0.374761 0.379209 -0.716088 0.510407 0.003619 0.771265 1.342384 -0.026632 -0.807027 -0.526702 0.020840 -1.496471 0.410883 -0.950043 -0.067543 0.558099 0.982622 0.792104 0.655153 1.011659 -1.077298 0.758871 -0.409789 0.070062 0.830307 0.380851 0.633180 -0.593167 -0.874036 0.454188 0.563461 0.326460 0.344198 -0.475777 -0.003236 -0.648527 -0.579235 0.396554 0.513335 -0.153560 0.850343 0.682892 2.161299 -1.299656 0.425997 0.452369 -0.256741 0.315845 -0.204728 -1.253882 0.420517 0.302045 -0.178753 1.050765 -0.309989 -0.647353 0.213699 -0.209562 0.368960 -0.696567 0.284841 -0.821091 -0.213543 -0.800169 0.044999 -0.627583 -0.448318 -0.482376 -0.149252 1.417017 -0.980114 -0.895124 1.477882 -0.625349 0.500372 -1.487658 1.646812 -0.618651 0.591994 -0.916284 -0.384275 -0.224558 0.497822 -0.456075 0.384414 0.644401 -0.496660 0.161394 1.653869 0.331391 0.278094 0.108922 0.965038 -0.045078 0.412748 -0.603186 1.458133 -0.222574 0.012174 -0.083136 -0.567654 0.371513 -0.328682 0.164998 0.889021 0.892150 0.128792 0.346560 0.855416 0.522740 -0.626207 0.848924 -0.029347 0.516607 -0.585050 0.024103 0.066737 0.390021 -0.361958 0.462650 -1.273941 -1.097474 -1.090811 -0.700689 -0.331917 0.623349 0.215184 -0.087377 -0.088941 -1.102286 -0.749262 0.946200 -0.600533 0.460481 0.485094 0.621189 0.982057 1.347205 -0.357016 -0.291606 -0.175888 -0.318534 -0.278246 -0.261286 -0.671407 1.010396 -0.722978 0.582624 0.944956 -0.141228 0.400579 0.100150 1.110336 -0.666449 1.464870 0.565041 -0.313904 0.801583 1.144716 1.442293 -0.079463 -0.706941 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.368314 -1.310201 1.972320 1.560780 0.003995 0.882440 0.303947 -1.017193 1.425894 0.721810 -0.512052 0.557896 -1.046970 0.196276 -0.510340 0.696814 -1.125021 -1.245890 -0.142806 -0.824245 -0.513102 -1.058079 -0.160922 0.570591 0.514166 0.067163 -0.754868 0.000196 -1.631325 -1.115717 0.653673 -0.343948 0.654897 -0.275961 0.442910 -2.635236 1.256536 1.298909 -0.341347 -1.807340 0.140780 -0.846892 -0.048099 -0.139898 -0.120782 0.418306 0.203179 0.612890 0.479696 0.322720 0.316629 0.239030 0.111428 2.557845 -0.563881 1.287385 0.898597 0.083453 -0.054717 0.469511 0.486180 0.152281 0.828890 0.806996 -0.375842 -0.785492 -0.181620 -0.295593 -1.120959 0.952396 0.095333 -0.607722 -0.859089 -0.497093 -1.215608 -0.439773 -1.274160 1.030838 2.070941 -1.136795 1.463895 0.634247 1.129563 0.098840 1.053408 -0.154383 1.664104 0.511546 -0.829898 -0.045476 -1.139579 -0.387304 0.066206 -0.088898 -0.866742 -1.321499 0.801231 -1.586970 -1.623052 0.826539 0.283095 -0.160760 -0.982940 -0.123995 0.884264 0.579094 -0.766627 -1.424971 -0.788020 0.789607 -0.221722 -0.641049 0.257937 -0.414842 -0.086798 -0.444869 -1.424123 -0.198383 0.711330 -0.808362 -0.553078 1.424884 -0.564439 0.353862 -0.179414 0.217535 -0.296674 1.059530 0.183245 0.785361 0.015244 -0.061824 -1.830983 0.479472 0.345731 0.587378 -0.337816 0.206870 0.025806 0.527871 -0.442622 0.458501 -0.675294 0.731640 0.948166 -0.374625 -0.896731 -0.996531 -0.040912 -1.344478 0.294335 -0.962061 -0.668048 0.232197 1.198264 1.210119 0.629240 1.444668 -1.170678 0.837572 -0.253947 0.184620 0.631412 -0.173031 0.604131 -0.727963 -1.127756 0.611551 0.817659 0.353665 0.427389 -0.596919 -0.011617 -0.905266 -0.651884 0.585875 0.651142 -0.006759 1.423816 0.890016 1.296055 -1.742753 0.338819 0.355701 -0.406705 0.276397 -0.271621 -1.664153 0.611122 0.399259 0.409448 1.380841 -0.232038 -0.568633 0.410056 -0.208724 0.426773 -0.943821 0.445487 -1.148380 -0.421663 -0.799637 0.298666 -0.826379 -0.482983 -0.762695 -0.548542 1.673854 -1.100916 -1.359774 1.478974 -0.415790 0.662729 -1.835715 1.034684 -0.795006 1.119432 -0.373484 0.019645 -0.282041 0.487278 -0.503827 0.229356 0.813926 -0.822757 0.731703 1.533899 0.352812 0.299588 0.360083 1.043231 -0.391642 0.222029 -0.848949 1.240930 -0.192560 -0.481624 -0.046431 -0.654272 0.523958 -0.194453 0.246952 0.859919 1.000809 0.190113 0.515790 1.091295 0.456673 -0.764052 0.757826 -0.149890 0.702138 -0.703001 -0.122406 -0.242066 0.257134 -0.313598 0.454372 -1.720944 -1.533146 -1.578136 -1.333437 -0.149609 -0.240248 0.194128 0.034820 -0.010441 -1.610685 -1.038508 0.955109 -0.566936 0.850033 0.743454 0.765238 1.179731 1.337618 -0.570228 -0.223486 -0.052942 -0.104195 -0.565861 -0.519644 -0.751994 1.030595 -0.881558 0.815068 1.291607 -0.261332 0.504617 0.240837 0.852225 -0.906215 1.858393 0.973323 -0.850108 0.606590 1.069798 1.878347 -0.230147 -1.003953 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.218478 -0.404421 0.333654 0.227742 -0.013551 0.191383 0.003816 0.074405 0.168943 0.030653 -0.279672 0.187840 -0.233518 -0.096473 0.103834 -0.012843 -0.142653 -0.313309 0.177629 0.093304 0.029220 -0.216995 -0.193204 0.269348 0.030473 0.295112 -0.077410 0.079451 -0.379280 -0.087123 0.042887 -0.091357 0.172813 0.345160 0.219322 -0.241826 0.059078 0.246296 0.037296 -0.472478 -0.058861 -0.101213 0.104244 -0.074920 0.072951 0.250996 0.259438 0.051251 -0.091875 0.018940 -0.171621 -0.275185 -0.068764 0.052817 0.130077 0.209773 0.334137 -0.023180 0.084442 -0.134843 0.164161 -0.163930 0.186370 0.190714 -0.260861 -0.014889 -0.071218 -0.116727 -0.197405 0.030427 0.058191 0.035134 -0.161212 -0.221817 -0.149368 -0.074715 -0.143167 0.144022 0.418446 -0.147395 0.436518 0.239540 0.457277 -0.002557 0.220206 -0.006842 0.157958 0.136116 -0.293983 0.138793 -0.279409 -0.217516 -0.094989 0.129119 -0.130051 0.239283 0.108881 -0.280051 -0.270494 0.191853 -0.070135 0.075032 -0.149167 0.210561 0.161908 0.268139 -0.113698 -0.214939 -0.085336 0.049276 -0.102866 -0.095219 -0.025613 0.148430 -0.145825 -0.128953 -0.222964 -0.096419 0.266909 -0.284086 0.130662 0.241231 -0.194987 0.281165 -0.059551 -0.106417 0.006511 0.307506 0.351538 -0.023088 -0.015940 -0.280253 -0.340471 0.035779 -0.010366 0.316799 -0.192416 -0.074292 0.219401 0.034452 0.139787 -0.113448 -0.123602 0.102662 0.261755 -0.079782 -0.175770 -0.372624 -0.184114 -0.252198 0.056891 -0.172897 0.143445 0.199617 0.181227 0.185831 0.007169 0.518831 -0.287821 0.127849 -0.092217 0.028207 -0.069519 0.219030 0.084485 -0.149525 -0.119525 0.186284 0.207561 0.019048 0.250457 -0.264963 0.072194 -0.139437 -0.157357 0.339123 0.134957 0.104238 0.289954 0.077836 -0.083429 -0.118048 -0.113955 -0.087890 0.060481 -0.034107 0.039233 -0.304765 0.245051 -0.023564 0.116117 0.139560 -0.029018 -0.057132 0.121369 -0.055654 0.038271 -0.203392 0.219210 -0.246642 0.066443 -0.159225 0.135168 -0.232601 -0.116190 -0.131678 0.019497 0.343222 0.072350 -0.250956 -0.028468 0.118889 0.306166 -0.284437 -0.152712 -0.139396 0.463947 -0.006682 -0.019745 -0.014287 -0.161344 0.201903 -0.192004 0.174172 -0.019063 0.002340 0.026426 0.042157 -0.128333 0.267453 0.087299 0.022702 -0.085772 -0.030736 -0.036545 0.005013 0.063651 0.108576 -0.084867 0.196691 0.129289 -0.146512 0.153999 0.237843 0.027494 0.154216 0.093497 -0.128046 -0.183874 -0.117530 0.028700 0.396507 -0.123754 -0.073896 -0.283575 0.249733 0.001015 -0.061304 -0.287045 -0.380848 -0.115790 -0.357103 -0.276749 0.004119 0.024572 0.148228 0.067226 -0.158964 -0.093125 0.131974 -0.058260 0.580381 -0.016757 0.109505 0.314159 0.119575 -0.165834 -0.290013 0.138222 0.026608 -0.212446 0.138832 -0.193566 0.050275 -0.201328 0.125471 0.256975 -0.127538 -0.024662 0.013340 0.324870 -0.186868 0.417084 0.273838 -0.393000 0.027585 0.067379 0.319785 -0.106208 -0.232574 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::push_back(int const&) = 2.598248 -3.759290 10.314078 9.348312 -1.169308 3.040957 -0.262357 -8.142395 6.025679 4.080736 -0.850307 2.884385 -3.709032 3.421018 -3.497737 6.898016 -6.850115 -3.323196 -3.776578 -5.663336 -4.089128 -3.373477 2.297611 0.731696 4.269431 2.244941 -4.956825 0.459613 -3.538864 -9.624269 2.317061 -0.609361 2.759143 -1.983567 1.477425 -11.155908 8.259713 6.422503 -2.569406 -6.649550 1.973473 -2.174174 -2.435801 -0.608486 -1.595902 1.634995 -2.290990 2.940485 3.810939 3.411575 3.041977 4.838455 4.407131 11.679007 -2.830499 5.851430 3.337078 1.039147 -0.661227 2.349274 2.107514 3.796310 2.248671 2.504179 1.815278 -6.117446 -2.089437 -0.664423 -4.108872 6.008728 -1.152540 -4.886753 -5.157143 -3.336336 -4.319641 -0.617650 -9.554778 5.848639 8.225704 -6.088948 3.175752 1.286073 0.370840 -0.160092 3.179167 -1.362439 6.938648 3.084659 -0.766732 -0.273705 0.160852 -2.685912 3.134105 -2.125222 -5.871193 -10.818214 4.461126 -8.193840 -7.336633 3.444914 4.177082 -2.679610 -3.116251 -2.984701 2.714751 0.897772 -2.859756 -5.270522 -1.260585 3.308277 2.122866 -3.553529 -0.517741 -1.473475 0.348263 2.053893 -7.964784 0.923932 1.442449 -1.693159 -1.996824 4.903840 1.350109 -1.102032 -1.651363 1.902071 -2.034425 5.185637 -2.103801 6.636846 -0.786961 5.862021 -3.144228 4.905717 3.598855 -3.247774 -1.449069 1.527066 -2.543809 2.803059 -4.041568 4.372163 -4.234402 3.153832 5.244933 -0.595637 -5.479548 -2.394276 -2.511339 -7.197981 1.658629 -4.467934 -5.232546 0.876949 5.257000 3.871474 4.054915 3.319731 -5.534491 0.910436 -0.133579 1.425504 4.699995 -1.458710 2.476496 -3.052448 -5.988138 4.067277 2.432014 1.393328 0.959976 -0.090753 0.294537 -3.561573 -1.094749 3.688363 2.592943 -1.675579 5.461007 4.522025 8.956886 -3.708939 2.048644 3.339826 -3.129877 1.637440 -1.502108 -7.519924 1.670108 1.625463 4.276651 7.636399 -1.082594 -0.970108 2.238597 -1.249588 2.038018 -3.592650 1.822429 -4.661049 -1.872688 -3.684945 1.610649 -1.158990 -0.818829 -2.299301 -2.671586 7.551516 -8.400843 -3.728689 9.661722 -3.534960 1.026799 -6.198116 6.823143 -3.006162 2.656245 -0.682152 -0.444029 0.119247 -0.278578 -5.694680 1.869896 3.518167 -2.473981 1.290421 8.106557 1.297318 0.102461 -0.853633 4.882868 -3.311884 4.667308 -4.451397 8.687483 -0.777446 -1.798877 -1.817011 -2.506034 -1.137012 -5.073332 1.397421 4.569376 1.735010 2.272123 1.036792 2.872720 5.721179 -4.187715 7.451904 -0.478475 -0.500747 -3.922827 -0.878976 2.682198 0.762857 -2.312350 3.719977 -7.231766 -5.371225 -10.339905 -3.852427 -0.261698 -1.322057 3.098460 -3.027804 -2.845875 -4.586325 -7.130173 8.350812 -2.690642 -0.773594 5.007797 3.349506 4.179771 6.847305 -1.287505 2.790139 -3.491235 -0.642590 0.549827 -3.431184 -2.539719 6.545953 -1.624823 1.200895 6.845636 -1.023873 4.370008 -0.055777 2.640650 -3.440594 6.622282 2.158822 -1.511411 3.733637 6.226611 6.431493 -0.318754 -4.273783 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.864117 -4.828959 11.823199 10.356386 -2.018664 3.762824 -0.442381 -8.727181 6.951198 3.394029 -1.537290 3.137457 -4.365345 3.484633 -4.382580 6.695917 -8.249144 -4.042591 -4.010005 -6.239863 -4.393534 -4.040347 1.516391 1.824055 4.438624 2.978214 -5.134473 0.901693 -4.580745 -9.045347 2.991161 -0.850505 2.945222 -1.736255 2.472211 -12.809149 8.949455 7.243877 -2.637695 -8.081747 1.748259 -3.080957 -2.457311 -1.424183 -2.127758 1.643232 -2.127278 4.394800 3.928902 3.088141 2.050904 4.902972 4.248328 13.873946 -2.911851 6.657098 4.201874 1.169161 -0.350778 2.499319 2.396786 3.797901 2.398417 2.740353 1.604734 -6.631086 -2.244607 -1.135175 -4.225787 6.617659 -0.937554 -5.071801 -5.887449 -3.880264 -6.081538 -0.891774 -11.560976 7.289639 9.658329 -7.470452 4.052358 1.796147 1.354702 0.334349 4.130139 -1.303723 8.363679 3.488933 -1.281589 0.210999 -1.183064 -2.866220 3.310438 -3.713026 -6.721914 -13.025949 5.050085 -10.699570 -8.435049 4.056779 4.323400 -3.033044 -2.445541 -3.272370 3.168934 1.097508 -3.613008 -6.022024 -1.268044 4.067060 2.223969 -3.786679 0.264396 -0.897424 0.942101 1.207677 -8.987412 1.116253 2.202648 -2.007966 -1.355461 6.166953 1.135007 -0.819346 -1.749723 1.754222 -2.115394 6.445933 -1.822911 6.700522 -1.469158 5.956585 -3.400785 5.826250 3.614464 -2.865042 -1.673238 1.880963 -1.861726 3.410257 -4.059976 4.196166 -4.846266 3.182340 4.405429 -0.977888 -5.939247 -3.441699 -3.326042 -7.919499 1.454827 -4.970184 -6.525750 1.664809 6.053384 5.759612 4.246271 3.686409 -6.158415 1.048949 -0.355254 1.690646 4.894992 -1.379630 2.773943 -3.524179 -6.607818 4.534577 2.317955 2.003109 1.266928 -0.730743 0.288934 -4.108206 -1.054973 4.182263 3.543324 -1.579832 6.972723 5.476423 7.906025 -4.890281 2.237438 3.336808 -3.721604 1.787739 -1.606797 -8.557379 2.276723 2.002843 4.587433 8.199470 -1.442135 -0.685218 2.633279 -1.431377 2.362241 -4.226655 1.499305 -5.365493 -2.635988 -4.510328 2.752898 -1.897137 -1.037228 -3.352600 -3.825148 8.689844 -10.449711 -4.097870 10.734979 -3.322622 2.159990 -6.735933 6.876353 -3.493782 4.236041 -0.087790 -0.379357 0.157763 -0.647264 -6.080541 1.847849 4.157552 -3.119224 1.383277 8.427348 1.545668 0.278753 -0.255213 5.780933 -4.029978 4.846528 -5.282776 9.091001 -0.905012 -2.345817 -1.616832 -2.985524 -0.959419 -5.083278 2.199357 5.605751 2.174797 3.372754 1.630868 3.696289 5.549111 -4.482989 7.336897 -1.066001 -0.455021 -4.756875 -0.921626 2.323206 1.179492 -2.337740 3.655271 -8.666451 -6.941572 -12.854732 -3.937107 -0.361233 -2.658825 2.942752 -2.922186 -2.936385 -5.644841 -8.135250 8.880622 -3.186864 -0.852425 5.628097 3.817174 5.136659 7.780598 -1.689134 2.619179 -2.543914 -0.221904 0.321076 -3.154164 -3.761090 7.353300 -2.481934 1.727999 8.487242 -1.382273 4.961698 0.344422 3.335149 -4.251979 7.798942 2.983467 -3.022938 3.644951 7.683114 7.022429 0.366208 -5.108504 -PE-benchmarks/aho-corasick-algorithm.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::size() const = 0.585102 -1.359354 2.933315 2.555776 -0.501565 1.222328 -0.516226 -1.833687 1.092541 1.056610 -0.370288 1.149007 -0.794177 0.614900 -0.695507 1.350612 -1.694900 -0.602429 -0.964225 -1.326981 -0.818464 -0.690480 -0.414301 0.994952 0.869387 0.847024 -1.120258 0.641081 -1.138965 -2.628753 0.051015 -0.023850 0.689661 -0.680174 1.121624 -2.520009 2.164469 2.059053 -0.421836 -2.120433 0.290671 -0.402435 -0.578860 0.052625 -0.664903 0.729625 -0.294798 0.493430 0.576045 0.860816 0.150288 1.043161 1.595141 2.753004 -0.036514 1.676637 1.384365 0.070162 0.410254 0.319509 0.352114 0.640009 0.282012 0.181110 0.516775 -1.499573 -0.530608 0.211381 -0.577760 1.112545 -0.251572 -1.591458 -1.198665 -1.286045 -1.622363 -0.196107 -2.838020 1.476276 2.060938 -1.521938 1.067546 0.502194 0.258951 0.542867 1.387379 -0.143657 1.651804 0.930334 -0.346199 0.713686 0.308899 -0.722201 0.950572 -0.671618 -1.960477 -2.893512 1.168933 -2.692615 -1.815841 1.492633 0.805948 -0.923229 -0.349907 -1.265824 0.468422 0.323242 -0.943937 -1.249155 -0.059329 1.318950 0.649819 -0.936985 0.099631 -0.119199 0.433186 0.635165 -1.825277 0.697449 1.015712 -0.241207 -0.189215 1.623884 0.744519 0.065855 -0.537638 0.414465 -0.597076 1.456585 -0.106727 1.580696 -1.144332 1.286921 -0.665252 1.450382 0.673288 -1.639032 -0.505853 0.225372 -0.146464 0.912791 -0.278959 1.541471 -1.202234 0.863729 1.044153 0.200161 -1.140762 -1.153961 -1.351341 -1.594865 0.138005 -0.803854 -2.006886 0.631605 1.307640 0.921189 0.680635 0.254845 -1.132001 -0.311223 -0.273517 0.304083 0.861279 -0.522583 0.439466 -0.808453 -1.425852 1.221450 0.717083 0.612859 0.562968 -0.269315 0.301685 -0.371462 0.295920 1.245753 0.857287 -0.349300 1.919660 1.523572 2.183349 -0.127076 -0.023564 0.325551 -1.176736 0.388401 -0.555983 -1.718148 0.220329 0.697504 0.923977 2.203691 -0.442592 0.112059 0.903020 -0.326517 0.493446 -0.905491 0.775608 -1.229590 -0.436016 -0.780602 0.389085 -0.614647 -0.163024 -1.231338 -1.072328 2.096649 -2.826076 -0.646759 2.069314 -0.527818 0.297488 -1.162006 1.408809 -0.708870 1.261944 0.456171 -0.185018 0.153277 -0.245980 -1.320422 0.385082 0.994475 -0.897224 0.127780 1.490095 0.287916 -0.298307 -0.035368 1.148994 -1.199097 0.831554 -1.446726 1.829018 -0.373256 -0.022402 -0.492147 -0.586217 -0.288197 -1.140482 0.306590 0.349510 0.009073 0.586797 -0.371722 0.904805 0.752108 -0.801047 1.512259 -0.380252 -0.179670 -1.354112 -0.323750 0.231378 0.616108 0.104174 0.590006 -2.165691 -0.878527 -3.351619 -0.446009 -0.332163 0.012482 0.523309 -0.313369 -0.828522 -1.170936 -2.120499 2.949498 -0.654996 -0.574329 1.385191 0.905725 1.297700 1.538049 0.264028 0.479029 -0.865002 -0.205484 0.118872 -0.342168 -0.657623 1.728713 -0.526022 0.303828 1.867384 -0.283691 1.438895 0.308796 0.253195 -1.224525 1.662569 0.728005 -0.903356 0.433357 2.107474 1.329115 -0.646280 -1.136467 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::max_size() const = -0.164721 -0.650105 1.140082 0.889873 -0.065289 0.492649 0.180554 -0.780042 1.033707 0.153616 -0.178458 0.030527 -0.735608 0.155692 -0.468093 0.314390 -0.706279 -0.715823 -0.280134 -0.684125 -0.394995 -0.704618 0.098874 0.202854 0.309517 0.127790 -0.414325 0.049271 -0.963388 -0.326104 0.725640 -0.161387 0.352592 0.006022 0.166075 -1.563563 0.767724 0.718408 -0.264768 -0.894249 0.078349 -0.568651 0.006645 -0.218305 -0.041734 0.114730 -0.088827 0.420939 0.479661 0.082659 0.273943 0.132651 -0.155484 1.559674 -0.599769 0.718210 0.348830 0.129734 -0.115994 0.416825 0.201600 0.255766 0.418672 0.512726 -0.261080 -0.501644 -0.014443 -0.354733 -0.768523 0.737632 -0.074329 -0.350408 -0.533218 -0.338713 -0.736177 -0.287714 -0.984815 0.636824 1.204455 -0.796002 0.755040 0.244872 0.520705 0.036376 0.528829 -0.101779 0.967491 0.222852 -0.442839 -0.003804 -0.713535 -0.028112 0.055728 -0.211799 -0.495523 -0.919349 0.555874 -0.963972 -0.976888 0.348577 0.257454 -0.050197 -0.579979 0.018404 0.388741 0.212195 -0.514855 -0.877670 -0.329243 0.498579 0.003453 -0.243136 0.161847 -0.198574 -0.069653 -0.503983 -0.906502 -0.128523 0.204741 -0.451903 -0.336245 0.888780 -0.456978 0.046358 -0.020915 0.164174 -0.243571 0.812023 -0.075624 0.419755 -0.057545 0.102033 -0.996002 0.154659 0.246854 0.655000 -0.127336 0.167249 -0.071856 0.234224 -0.504948 0.114219 -0.377625 0.175749 0.417958 -0.356134 -0.497931 -0.340444 -0.065756 -1.022358 0.129066 -0.627177 -0.408514 0.165550 0.706410 1.027635 0.438943 1.063031 -0.722856 0.393798 -0.161122 -0.060783 0.441730 0.074869 0.455849 -0.420300 -0.706060 0.294273 0.194611 0.190216 0.247817 -0.324232 -0.119044 -0.716506 -0.253750 0.268144 0.369322 -0.107466 0.741779 0.601970 0.418743 -1.216099 0.373941 0.359050 -0.225974 0.208025 -0.083641 -0.971995 0.377215 0.243492 0.101424 0.667357 -0.152044 -0.236776 0.155559 -0.246032 0.360805 -0.629035 0.039022 -0.629674 -0.320066 -0.681746 0.329213 -0.422558 -0.317482 -0.351079 -0.401771 0.907341 -0.682428 -0.658004 1.067942 0.004227 0.458483 -0.901591 0.518815 -0.453369 0.784264 -0.229837 0.052263 -0.146359 0.286004 -0.301725 0.118875 0.388225 -0.442690 0.403587 1.040129 0.242593 0.236165 0.163861 0.778939 -0.309671 0.265107 -0.536884 0.800664 -0.075987 -0.488902 0.150573 -0.454080 0.164338 -0.294769 0.238134 0.862812 0.776222 0.285453 0.430226 0.543626 0.410020 -0.376725 0.430955 -0.018051 0.273564 -0.406206 -0.032314 0.103847 0.194190 -0.297422 0.218442 -0.979839 -1.167390 -0.858551 -0.787377 0.054220 -0.388985 0.025555 -0.032895 -0.036906 -0.862690 -0.643595 0.466207 -0.446324 0.672840 0.324474 0.481005 0.639170 1.001804 -0.546328 0.000539 0.236027 0.094105 -0.262995 -0.255013 -0.615564 0.768228 -0.485609 0.350878 0.868679 -0.174167 0.326995 0.157843 0.586108 -0.577200 1.051160 0.461586 -0.392359 0.607997 0.646298 1.157931 0.353572 -0.520387 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.796507 -4.510927 9.459562 8.214862 -1.170116 4.033997 -1.598172 -6.084253 3.904942 4.447574 -1.660787 4.135592 -2.398848 1.688584 -2.058811 4.783818 -5.373432 -2.218929 -2.611906 -4.018734 -2.893741 -2.513419 -1.438549 3.130483 2.817106 2.608966 -3.789795 2.292247 -3.400187 -9.966656 -0.499054 -0.058114 2.104600 -2.888786 3.618739 -8.243300 7.302933 6.911997 -1.311117 -7.283336 0.744064 -0.937349 -2.397447 0.952334 -1.903970 2.511460 -0.661152 2.279834 1.402422 3.098224 0.923061 3.346512 5.464040 9.319958 0.524420 5.936150 5.032459 0.499293 1.118496 1.349218 1.653601 1.906975 1.303974 1.133220 1.642449 -4.481427 -1.405497 1.246593 -2.021543 3.714898 -0.349209 -5.782036 -3.648432 -4.240323 -4.751594 -0.438852 -7.950179 4.455355 7.113259 -4.581452 3.807200 2.281588 1.433343 1.430323 4.489435 -1.153037 6.201291 3.256868 -1.554827 1.608216 0.696141 -3.130352 3.072796 -1.778862 -6.420654 -9.093505 3.599708 -9.110444 -6.372282 4.820682 2.601680 -2.988489 -1.543174 -3.879879 2.645424 0.838462 -2.588391 -4.157067 -0.799468 4.102394 0.822088 -3.402106 -0.035371 -0.424314 1.396900 3.462547 -6.160216 1.749579 3.738278 -1.035290 -0.874725 5.028224 2.553243 0.678880 -2.007611 1.158109 -1.318977 3.787860 -0.052273 5.247560 -3.154251 4.353700 -1.967792 5.270987 1.915821 -6.569226 -1.630945 0.736107 -0.022847 3.241598 -0.851807 5.714819 -4.963779 3.379683 3.777186 1.030180 -4.054921 -4.206104 -4.330080 -4.974689 1.006632 -2.743605 -6.863219 1.079423 4.450446 2.312979 1.983015 0.391020 -4.100973 -0.410564 -0.663971 1.925186 2.456595 -2.381014 1.367357 -2.768057 -4.809797 4.107188 3.336748 1.720733 1.675143 -1.173800 0.913124 -1.160019 -0.049581 4.097778 2.455105 -0.718355 6.149637 4.544513 9.099887 -0.760973 -0.006621 0.886750 -3.380182 1.270119 -1.964518 -6.045891 0.654093 2.013192 4.572343 8.081315 -1.173310 0.052627 2.661526 -0.501865 1.293311 -3.003466 3.153840 -4.333072 -1.265435 -1.838483 1.367503 -2.208544 -0.293572 -4.023727 -3.091761 7.025699 -8.943841 -3.194851 7.150182 -2.604316 1.127707 -4.442208 4.630120 -2.342937 3.747207 1.147991 -0.652093 0.445944 -1.306287 -4.141755 1.610248 3.320583 -2.727700 0.840225 4.724119 0.676939 -0.552241 0.007298 3.144087 -3.904193 2.329250 -4.759616 6.175002 -1.026946 -0.193888 -2.379773 -1.943823 -0.315244 -3.425639 0.577251 0.364022 0.162832 1.026870 -1.317420 2.910190 2.212046 -3.275469 5.574401 -0.765046 -0.457328 -4.326602 -1.173275 0.465496 1.321161 0.026757 2.486765 -7.097992 -2.287809 -10.902084 -2.229711 -1.676047 0.287873 2.347013 -1.122333 -2.586494 -3.809992 -6.788744 10.424560 -1.796824 -1.673759 4.805933 3.365811 4.356116 4.858520 1.172796 1.636024 -3.664673 -1.431427 -0.357899 -2.045651 -1.525011 5.419057 -1.215232 1.718127 5.620872 -0.646546 4.455035 0.331641 0.416504 -3.738564 5.285150 2.659958 -2.878200 0.670266 6.183544 5.123516 -3.357610 -4.101984 -PE-benchmarks/aho-corasick-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.689538 -4.176894 5.770710 5.159977 -0.048103 3.788901 -0.654642 -2.335769 0.462580 2.992765 -0.258955 3.658298 -2.159600 0.311851 -0.130732 1.192293 -1.880166 -1.330784 -1.580593 -1.640367 -0.076107 -1.398396 -2.408804 4.511852 1.162801 0.278023 -2.295375 1.083195 -4.785411 -5.440817 -0.747615 0.229542 2.596006 -2.564054 2.451633 -5.691047 3.965130 5.509671 -0.053001 -5.230899 0.872559 -0.579486 -0.954341 1.111109 -2.617494 1.988260 0.327546 -1.856341 0.189085 1.452450 -0.581094 1.560429 3.808417 4.396281 0.806482 3.836778 3.637810 -0.603096 1.782066 -0.422648 -0.096104 0.419388 1.119173 -0.192397 0.237068 -2.363563 -0.389948 1.687919 -1.981630 0.771687 -0.187517 -2.992533 -1.339780 -1.988050 -4.185920 -0.420614 0.860462 1.716030 4.101002 -1.423973 3.788322 0.746419 0.431002 1.656058 3.889719 0.464199 1.757628 1.820307 -1.200419 1.793731 -0.348780 -0.524566 1.138569 1.466313 -4.249168 -3.306378 2.246381 -4.149036 -3.342171 3.927306 0.086786 -2.432977 -2.158000 -3.766801 0.472125 1.930638 -2.226811 -3.017204 -1.168324 4.108271 1.039947 -2.484101 0.354627 -0.653199 0.564186 0.007003 -2.251052 1.595759 3.416900 -1.050597 -1.269796 3.909330 0.380271 1.795978 -1.005678 1.406075 -1.631487 1.586126 0.933938 2.539255 -2.221798 -0.329597 -1.476724 -0.143725 0.285597 -1.817103 -1.499819 -1.021756 0.013681 2.000319 2.019515 3.968141 -0.913974 2.118683 2.431451 1.166894 -0.892807 -3.097495 -2.039036 -2.816544 -0.645554 -1.013259 -3.804546 2.679972 2.512741 -0.700595 0.383792 1.331387 -1.207175 -0.056605 -0.493029 -0.662934 1.065857 -2.074682 0.257956 -1.643807 -3.409281 2.570672 2.140501 2.046291 1.194287 -0.482512 0.634436 0.641237 0.099304 1.723762 1.300515 -0.236622 4.455205 3.316647 5.830387 0.705290 -1.016274 -0.695634 -3.067482 1.101432 -1.925922 -3.308227 -0.528263 2.082278 -0.696419 5.740391 -1.251271 -1.405374 3.160115 -0.443900 0.765754 -2.310317 3.883586 -2.946252 0.166449 -1.557734 -2.487431 -1.417965 -1.079362 -4.227220 -1.881340 4.680123 -5.062567 -2.627609 2.039119 0.495391 0.179996 -4.185993 2.654592 -1.340881 3.343954 1.483715 -0.666116 0.377253 0.903309 -2.080950 0.361382 2.161261 -3.184171 1.410885 2.813360 0.412841 -1.332039 0.124086 1.638822 -1.448558 0.033708 -3.776429 2.646404 -1.025156 0.490873 -0.982809 -1.238547 0.660314 -1.467809 -0.248938 -2.436732 0.314364 -0.032892 -2.083186 3.235628 -0.119489 -0.478026 1.947753 -1.062042 0.811665 -2.357538 -0.485635 -1.290774 2.596674 2.182842 1.692317 -4.902352 -1.199664 -5.231102 -2.341973 -0.560436 2.306983 0.597575 1.092115 -1.145818 -4.056462 -4.129722 5.335400 -1.143723 1.473320 3.262489 2.237368 2.902030 2.130809 1.223900 -0.059757 -1.493501 -0.050123 -0.607914 -0.093305 -0.571269 2.547743 -1.470155 1.498820 2.955682 -0.156533 3.291014 0.090295 -0.640423 -3.325288 4.537854 2.237687 -2.437683 0.570852 3.079499 2.184362 -3.477099 -2.028827 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.685790 -1.190648 2.165852 1.621221 0.354244 0.873517 0.945493 -1.415804 2.186204 1.355817 -0.223593 -0.336300 -1.486394 0.087313 -0.324658 0.870964 -1.072410 -1.415127 -0.316788 -1.312204 -0.508945 -1.593366 0.650730 -0.153851 0.593807 -0.552835 -0.675200 -0.393974 -1.459188 -1.414530 1.693657 -0.461342 0.895332 -0.376155 -0.281987 -3.800919 1.693832 1.171244 -0.636843 -1.606315 0.243399 -0.573358 -0.175388 0.283014 -0.072640 0.301230 -0.021594 0.766653 0.915062 0.523105 1.186599 -0.121210 0.011104 3.384079 -1.413203 1.319523 0.411458 0.090441 -0.313444 1.232221 0.384337 0.481915 1.017250 1.510242 -0.135491 -0.716580 0.410846 -0.562143 -2.216428 1.557878 -0.165922 -0.644677 -0.705870 -0.187320 -0.719359 -0.388973 -1.116479 0.942003 2.537458 -1.001131 1.770549 0.611811 0.913408 -0.224184 0.424736 -0.192292 1.619424 0.339229 -0.944840 -0.587587 -1.280593 -0.319385 0.034454 0.143866 -0.547917 -1.353225 1.073702 -0.514177 -1.584082 0.664469 0.432391 0.025107 -1.818163 -0.154071 0.946531 0.532054 -0.830996 -1.825349 -1.417764 0.832819 -0.596263 -0.359454 0.150823 -0.707089 -0.505298 -0.701376 -1.474568 -0.694477 0.066463 -1.146832 -1.277849 1.439725 -1.147413 0.163980 0.169659 0.646666 -0.455273 0.883362 -0.004120 1.199829 0.821345 -0.008680 -2.453391 -0.247475 0.684590 1.565006 0.463115 0.057688 -0.433882 0.483829 -1.064075 0.641223 -0.306298 0.406709 1.591763 -0.641824 -0.813114 -0.457300 0.779836 -1.932077 0.490200 -1.448989 -0.296362 0.183392 1.394764 1.324436 0.926215 2.252901 -1.959721 1.451565 -0.595068 -0.140853 0.521606 -0.026959 0.798825 -0.624095 -1.350619 -0.013529 0.988003 0.307122 0.289653 -0.956496 -0.387048 -1.421143 -0.915195 0.164485 0.325991 -0.556210 0.701941 0.999695 2.396040 -2.751377 0.756221 1.005123 -0.225457 0.272670 -0.033638 -2.138134 0.637074 0.370178 -0.035191 1.278849 -0.182883 -0.941782 0.263304 -0.691981 0.268952 -1.052914 0.303776 -1.216388 -0.451391 -1.098487 0.085832 -0.979707 -0.770036 -0.336378 0.044166 1.575385 -0.584545 -1.667977 2.096734 -0.486038 0.128449 -2.202075 2.125754 -0.828563 0.657238 -1.044588 -0.100588 -0.694505 1.324877 -0.405664 0.135962 0.512949 -0.813074 1.447547 2.736125 0.527546 0.546230 0.190129 1.566768 -0.333366 0.169467 -1.052224 1.515061 -0.282749 -0.959711 -0.111870 -0.900301 0.761030 -0.592337 0.258829 1.184954 1.736794 -0.349461 0.912233 1.079799 0.822171 -0.560570 1.228560 0.360734 1.025288 -0.435459 0.177679 0.225810 0.096100 -1.010888 1.019473 -1.798038 -1.865099 -0.805238 -1.848655 -0.221595 -0.077268 0.344385 -0.075455 0.314957 -2.003722 -0.948595 0.617669 -0.752739 0.966247 0.700550 0.931800 1.056433 1.944935 -0.929363 -0.130757 0.007426 -0.016908 -0.878492 -1.075832 -0.598570 1.315386 -0.970836 0.852806 1.104769 -0.111747 0.297107 -0.098606 1.077442 -1.180052 2.148019 1.048170 -0.004098 1.306496 0.653055 2.740657 0.224016 -0.812774 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.388837 -12.794543 29.865205 25.634512 -4.810824 11.173724 -4.259633 -20.905447 14.237460 12.614031 -4.615283 11.484353 -7.857382 6.539700 -7.483233 16.587771 -18.649420 -7.620415 -8.665144 -14.511454 -11.183654 -8.385933 -1.359786 7.267732 9.624219 9.171936 -12.818800 5.369026 -8.897327 -30.088437 1.217487 -0.569465 6.989738 -7.146907 9.458264 -30.699458 22.727189 20.046016 -5.402586 -21.596207 3.163888 -3.726556 -7.187478 2.050717 -6.583068 6.356435 -3.885167 8.130085 6.196664 9.160032 5.119766 11.842658 15.516872 32.436428 -0.849332 18.046518 13.688406 1.847138 0.793246 5.115225 6.230653 7.467617 5.381039 4.931315 5.102561 -15.322786 -4.654759 1.709199 -8.273840 13.745112 -1.057938 -17.942934 -12.037666 -13.009386 -13.286724 -2.318078 -25.765817 15.258240 22.648667 -15.713391 10.893424 6.392006 3.831151 2.606252 12.631368 -4.426246 21.407429 9.703071 -3.927073 3.134888 2.618861 -9.366779 9.860390 -5.683685 -19.233109 -30.059267 11.910999 -27.498708 -20.985897 13.560001 10.319421 -8.601422 -6.824735 -11.065651 9.201566 2.135470 -8.251338 -13.660752 -3.734351 11.844679 2.531723 -10.465813 -1.481234 -1.918307 3.610642 10.097935 -20.829689 4.843859 9.556527 -3.242852 -3.600651 15.360217 7.160428 0.198870 -5.718477 4.248225 -4.455593 13.239183 -2.105111 16.785592 -8.299796 15.492044 -6.012108 16.451494 6.907725 -17.753275 -4.785391 1.239330 -2.088138 9.641150 -5.996887 16.064612 -15.365754 10.704582 14.224927 2.364755 -14.303741 -11.560365 -12.030894 -18.482004 3.568840 -10.380449 -19.560186 3.390208 14.162077 9.517257 7.821746 2.719677 -14.068740 1.086687 -1.503322 5.912852 9.563110 -5.753182 5.559289 -9.048682 -15.631699 12.128201 9.272438 5.569081 4.219574 -3.049313 1.765377 -5.675308 -2.261829 12.802451 8.487567 -1.671935 17.732167 14.066232 30.639207 -6.129950 1.816760 4.656148 -10.043406 3.866675 -5.445965 -19.936312 2.472224 5.897162 13.975641 25.031087 -3.593638 -0.192650 6.915143 -1.768757 4.710707 -9.935924 8.554040 -13.621787 -4.146079 -6.971364 4.408441 -6.883891 -0.562310 -11.193793 -10.191111 22.407143 -28.859242 -11.092362 25.688718 -9.875121 4.412824 -15.503718 15.890362 -7.567075 10.701982 0.303875 -2.255410 0.389056 -4.346313 -13.913777 6.561442 10.084763 -7.697482 2.062960 18.338264 2.537142 -0.253498 -0.873428 11.378602 -11.410884 9.787212 -14.241256 22.225644 -2.755203 -2.089464 -6.920084 -6.275898 -2.153044 -11.572895 2.990760 5.458581 2.286330 4.361027 -2.044552 8.936562 9.752791 -11.602670 19.028964 -1.819261 -1.698853 -12.676094 -3.712331 3.700615 3.941136 -2.758725 7.825702 -21.981436 -9.984024 -34.274677 -8.608743 -4.393786 -0.565409 8.102937 -5.354676 -8.401692 -11.798756 -20.774741 31.295252 -6.248004 -3.039765 14.623249 10.572133 13.988035 17.483900 1.057397 6.144253 -11.095051 -4.519997 -0.414746 -7.599834 -6.445658 17.883646 -3.469313 5.541351 18.536201 -2.183451 13.597496 1.091984 3.815108 -10.975196 17.291389 7.587021 -8.009688 4.422564 18.492578 16.734356 -7.558354 -13.150412 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy(int**, int**, int**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__miter_base(int**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.216889 -0.266459 0.395803 0.358802 0.113353 0.124916 0.245948 -0.174661 0.469585 0.329413 -0.007362 -0.032471 -0.401040 0.090013 0.115063 0.290524 -0.196848 -0.331630 0.027113 -0.200139 -0.128038 -0.330870 0.165481 -0.106598 0.150359 -0.107711 -0.137837 -0.168707 -0.356358 -0.158032 0.290792 -0.185617 0.213712 0.088776 -0.043321 -0.702062 0.261666 0.145042 -0.145935 -0.324930 0.068807 -0.258085 0.239958 -0.072157 0.163421 0.120623 0.114283 0.071114 0.303339 0.131296 0.287338 -0.121985 -0.030490 0.555408 -0.395300 0.218027 0.043743 -0.055105 -0.123191 0.127063 0.076943 -0.007923 0.280317 0.287755 -0.196732 -0.193710 -0.079493 -0.219865 -0.473803 0.243908 -0.030907 0.036258 -0.336534 -0.063083 -0.038942 -0.199795 -0.676753 0.197781 0.544326 -0.285583 0.383646 0.152019 0.268294 0.001952 0.195213 0.037562 0.294699 0.022421 -0.294056 0.011327 -0.200821 -0.072924 -0.024529 0.094550 0.022512 -0.128327 0.112014 0.162297 -0.352471 0.176669 0.028961 0.169857 -0.442496 0.072874 0.169694 0.238159 -0.255216 -0.464516 -0.234132 0.024126 -0.010357 -0.087593 0.024672 -0.299998 -0.227258 -0.320474 -0.343451 -0.193706 -0.016508 -0.325417 -0.278200 0.334512 -0.299204 0.071418 0.048823 0.086933 -0.119701 0.385644 0.071677 0.245280 0.189724 -0.164565 -0.808130 -0.016216 0.186422 0.517857 0.047057 0.096815 -0.174283 -0.009022 -0.269278 0.011859 0.148086 0.219611 0.447816 -0.194995 -0.199626 -0.079910 0.190318 -0.396993 0.232127 -0.294806 0.257395 -0.013431 0.286884 0.249883 0.268839 0.600635 -0.377012 0.270257 -0.180719 -0.050241 0.267341 0.248729 0.269126 -0.163710 -0.187158 0.028721 0.268726 -0.047430 0.144729 -0.181513 0.009020 -0.336900 -0.070138 0.030282 0.083114 -0.156346 0.217679 0.111036 0.453879 -0.472448 0.147832 0.227368 0.070123 0.064001 0.009635 -0.384964 0.263986 0.048628 -0.160819 0.076910 -0.038292 -0.271402 0.056405 -0.160563 0.133449 -0.213268 0.019920 -0.220722 -0.107197 -0.261829 0.103177 -0.197172 -0.249392 0.038858 0.171940 0.353763 0.152851 -0.182399 0.246892 -0.116255 0.064242 -0.399758 0.631279 -0.239453 0.106469 -0.377915 -0.070115 -0.129647 0.411151 0.018980 -0.030555 0.165898 -0.077239 0.173204 0.496971 0.165358 0.094412 0.114861 0.339207 0.085525 0.048982 -0.029303 0.325288 -0.067848 0.012571 0.122012 -0.172845 0.197385 0.014790 -0.036545 0.399399 0.403974 -0.088995 0.245487 0.179694 0.199252 -0.154400 0.178474 0.025816 0.378240 -0.117683 0.043544 -0.025753 0.044870 -0.168403 0.133783 -0.341205 -0.382094 0.154007 -0.229562 -0.076458 0.229987 -0.023723 0.042852 0.124349 -0.381034 -0.094659 0.022612 -0.191255 0.188176 -0.014701 0.111683 0.259365 0.390275 -0.190001 -0.239648 -0.002498 -0.080009 -0.127920 -0.068424 -0.147443 0.223762 -0.365918 0.132946 0.165409 -0.101269 -0.077372 0.040507 0.414465 -0.209244 0.484187 0.195786 0.028391 0.414686 0.305020 0.665044 0.015395 -0.157214 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_base(int**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.600533 -1.041844 1.619427 1.378216 0.272507 0.824195 0.348432 -0.969565 1.237401 0.824992 -0.097873 0.440667 -1.041300 0.234132 -0.205923 0.650773 -0.779620 -1.056540 -0.228010 -0.821215 -0.429342 -0.965398 0.074700 0.386226 0.440356 -0.250667 -0.766871 -0.077036 -1.603033 -1.143458 0.696661 -0.314285 0.750462 -0.395423 0.127330 -2.621557 1.210629 1.137690 -0.347127 -1.394591 0.259019 -0.779689 0.106371 -0.022152 -0.119568 0.375091 0.097134 -0.054510 0.690456 0.322989 0.587278 0.253894 0.071668 2.066610 -0.834538 1.101037 0.550737 -0.078823 -0.202771 0.430875 0.209935 0.203810 0.878244 0.731327 -0.495081 -0.764550 -0.009124 -0.210427 -1.337781 0.839785 -0.013782 -0.506149 -0.676640 -0.271593 -0.959093 -0.485960 -0.277710 0.616621 1.775421 -0.746316 1.313062 0.303794 0.730842 0.109496 0.998606 -0.045259 1.304664 0.330009 -0.795121 -0.079795 -0.875931 -0.099307 0.007694 0.551060 -0.581196 -0.736472 0.583724 -0.866924 -1.355223 0.707489 0.165430 -0.031934 -1.519198 -0.304246 0.737274 0.565348 -0.725766 -1.431942 -0.780584 0.742669 -0.177944 -0.582476 0.115169 -0.785590 -0.314953 -0.590908 -1.144516 -0.258714 0.451873 -0.750119 -0.949387 1.299483 -0.721874 0.232589 -0.095633 0.433281 -0.473226 0.811847 -0.071659 0.766555 0.150398 -0.288901 -1.836737 -0.212697 0.288959 0.880497 -0.271666 -0.064174 -0.364144 0.322380 -0.555130 0.486022 -0.252503 0.719263 1.224016 -0.274696 -0.640699 -0.540598 0.282768 -1.408026 0.284458 -0.847252 -0.359021 0.176949 1.059271 0.645336 0.687662 1.521575 -0.881449 0.838324 -0.281706 -0.121386 0.831636 -0.182395 0.636238 -0.649011 -1.029228 0.492739 0.691402 0.269530 0.353213 -0.414711 -0.048423 -0.801910 -0.616477 0.285439 0.393846 -0.044838 1.061487 0.723096 1.753884 -1.558723 0.402491 0.444284 -0.320849 0.359752 -0.292614 -1.328025 0.374052 0.454921 -0.143166 1.310058 -0.209046 -0.910854 0.316269 -0.131975 0.484701 -0.898665 0.527041 -0.970127 -0.156025 -0.750132 -0.304326 -0.639017 -0.596633 -0.635652 -0.295261 1.426601 -0.614980 -1.339731 1.270851 -0.297445 0.461088 -1.908107 1.123138 -0.765176 0.862263 -0.630826 -0.015004 -0.277317 0.845053 -0.487015 0.365510 0.654365 -0.814249 0.824125 1.605596 0.387941 0.354190 0.111475 0.938577 -0.094589 0.174608 -0.714513 1.243209 -0.217186 -0.331677 0.021785 -0.617787 0.484166 -0.236346 0.098818 0.485949 1.081029 -0.080485 0.339442 1.092934 0.528264 -0.541642 0.734585 -0.082111 0.671883 -0.478785 -0.083351 -0.082688 0.334054 -0.145825 0.541221 -1.456299 -1.280974 -0.790929 -1.401241 0.026195 0.395973 0.070620 0.159479 0.090045 -1.550323 -0.730583 0.763019 -0.530834 1.233923 0.573062 0.702596 0.916894 1.246004 -0.532897 -0.317028 -0.171861 -0.144957 -0.506149 -0.455557 -0.607933 0.972991 -0.782057 0.717088 0.879677 -0.201940 0.366110 0.139859 0.700485 -0.816486 1.692227 0.748005 -0.360787 0.901222 0.718540 1.786064 -0.230132 -0.709979 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.387749 -2.830341 3.437951 2.989720 1.054548 2.502771 0.428061 -1.737552 1.994820 2.561661 -0.781074 1.714182 -1.936048 -0.015437 -0.404853 0.966785 -1.069674 -2.179832 -0.046583 -1.051753 -0.247515 -2.099729 -0.914266 1.817814 0.592626 -0.462791 -1.425731 0.472712 -4.023316 -3.881001 0.419131 -0.453275 1.523534 -1.308139 0.793483 -4.193807 2.757834 3.260757 -0.292282 -3.718997 0.287465 -1.228927 -0.460464 0.950746 -0.089163 1.542769 0.738089 -0.312462 0.577840 1.032793 0.859848 0.208288 0.980983 3.287686 -0.558443 2.904885 2.012975 -0.107171 0.502293 0.828151 0.339066 0.069805 1.747007 1.570387 -1.006560 -1.047064 0.158903 0.641621 -2.445738 1.295469 -0.049696 -1.540252 -1.030660 -0.613771 -2.319734 -0.551378 0.455631 0.776670 3.923093 -0.738261 3.491029 1.060093 2.009712 0.225836 2.675305 -0.222570 2.600210 1.072201 -2.131711 -0.000464 -2.034820 -0.676603 -0.082439 1.636607 -1.820255 -0.663668 1.121304 -2.764050 -2.834291 2.012393 -0.335948 -0.499620 -2.807065 -0.750611 1.822378 1.267579 -1.296142 -2.986843 -1.572940 2.154787 -1.019851 -1.585795 0.300082 -1.355503 -0.419769 -0.184829 -1.932689 -0.542632 1.956727 -1.747634 -1.841424 2.866977 -0.804076 1.275978 -0.506167 0.684790 -0.635059 0.862693 0.439333 1.569074 0.082674 -0.979631 -3.764813 0.069747 0.234173 0.060557 -1.012436 -0.151998 0.180677 1.058194 0.001532 1.901883 -1.409834 1.636451 2.603038 -0.061355 -1.058615 -1.915866 0.308612 -2.275786 0.435339 -1.419855 -1.701201 -0.003592 2.354559 0.324189 0.921366 2.512839 -1.744781 1.337177 -0.556726 0.205015 0.972120 -1.197044 0.839838 -1.380293 -2.366403 1.480603 2.269941 0.509939 0.968731 -1.149870 0.021150 -0.928888 -1.344066 1.223838 0.656850 0.248702 2.844945 1.588133 4.040474 -2.262296 0.231799 0.181962 -0.915273 0.791330 -1.010555 -2.941728 0.679820 1.084144 0.661145 3.606004 -0.462979 -1.737975 1.044984 0.099487 0.744418 -2.016401 2.069713 -2.441320 -0.070683 -1.008320 -1.059365 -1.382750 -1.337908 -1.920117 -0.522487 3.120854 -1.184863 -3.177968 2.094293 -0.849620 0.659644 -4.156625 1.352500 -1.634279 1.904802 -0.407949 0.063399 -0.484897 1.482523 -0.716775 0.508464 1.574015 -2.171788 2.445416 2.551073 0.538284 0.363977 0.585134 1.322787 -0.518651 -0.693852 -1.980961 1.950209 -0.451639 -0.251271 -0.453120 -1.362824 1.557376 -0.267429 -0.348303 -0.485449 1.891806 -0.970915 -0.093498 2.552451 0.137811 -1.034062 1.428750 -0.256381 1.481213 -1.259119 -0.416312 -1.078382 0.480449 0.474308 1.265427 -3.381097 -1.835429 -2.166972 -3.222100 -0.422534 1.020178 0.504124 0.966949 0.350243 -3.597186 -1.831468 2.599414 -0.835913 2.400840 1.644838 1.783701 1.983429 1.985008 -0.202787 -0.708741 -1.123648 -0.451944 -1.797959 -1.042331 -0.516172 1.706456 -1.330383 2.030457 1.444460 -0.204508 0.984551 0.131883 0.642046 -1.956640 3.468964 2.116024 -1.116894 0.902719 1.026921 3.602255 -1.947186 -1.663723 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.340255 -0.382649 0.604634 0.544547 0.183334 0.236679 0.296519 -0.364610 0.683350 0.509635 0.056782 0.020530 -0.522626 0.158155 0.072919 0.426760 -0.278970 -0.479441 -0.050081 -0.380909 -0.267505 -0.471550 0.193627 -0.113831 0.194867 -0.268710 -0.301676 -0.188569 -0.557367 -0.372756 0.402672 -0.219470 0.315120 -0.137270 -0.066269 -1.254217 0.453251 0.285612 -0.217806 -0.486426 0.096133 -0.365485 0.258373 -0.041080 0.100314 0.112877 0.068097 -0.015631 0.431051 0.166382 0.471358 0.009723 -0.049656 1.023234 -0.575972 0.382793 0.085176 -0.053051 -0.211805 0.245416 0.117068 0.068975 0.431050 0.400009 -0.235788 -0.312479 -0.052295 -0.227971 -0.693098 0.402077 -0.025090 -0.099500 -0.397362 -0.089969 -0.180453 -0.310758 -0.635170 0.256647 0.791343 -0.405012 0.531029 0.173461 0.353155 0.055108 0.352551 0.003844 0.562426 0.054474 -0.401403 -0.028889 -0.254238 -0.024938 -0.020728 0.238561 -0.051982 -0.289366 0.203531 0.096961 -0.556464 0.296395 0.078792 0.200798 -0.793983 -0.058538 0.312019 0.282576 -0.374943 -0.695623 -0.450012 0.154786 -0.035827 -0.187219 0.059578 -0.513654 -0.249921 -0.390890 -0.512688 -0.251143 0.033461 -0.415466 -0.536697 0.531272 -0.432402 0.060374 0.035358 0.182432 -0.209024 0.454388 -0.005632 0.401000 0.188155 -0.163670 -1.166914 -0.119471 0.215683 0.639846 0.062993 0.073775 -0.290614 0.042818 -0.404953 0.145592 0.112344 0.349773 0.674349 -0.187702 -0.304563 -0.123347 0.322151 -0.622031 0.274951 -0.440320 0.184271 -0.013400 0.442335 0.354647 0.376318 0.794309 -0.488294 0.475365 -0.224507 -0.077311 0.424808 0.128502 0.361972 -0.254280 -0.369988 0.067681 0.384793 0.005128 0.177176 -0.250614 -0.024243 -0.439870 -0.207137 -0.001388 0.138030 -0.171026 0.325690 0.208060 0.913616 -0.832615 0.258876 0.305855 0.016902 0.147802 -0.083378 -0.570798 0.251226 0.139024 -0.234100 0.302668 -0.076387 -0.464610 0.070312 -0.172776 0.224910 -0.326693 0.092331 -0.352961 -0.138562 -0.357501 -0.012488 -0.300999 -0.291140 -0.047272 0.100874 0.556584 -0.008744 -0.436360 0.523408 -0.184858 0.098791 -0.735891 0.877385 -0.327805 0.191825 -0.557119 -0.064676 -0.205600 0.647839 -0.085273 0.124445 0.260489 -0.240278 0.291899 0.837639 0.206015 0.227334 0.077740 0.488944 0.092808 0.074241 -0.148882 0.599879 -0.104865 -0.079458 0.083017 -0.274983 0.281976 -0.040020 0.019049 0.409942 0.578884 -0.144789 0.253982 0.395200 0.298714 -0.235927 0.339178 0.027718 0.431813 -0.173087 0.068349 0.000529 0.065711 -0.229948 0.219791 -0.526710 -0.505961 0.023059 -0.437420 -0.031503 0.375389 -0.047989 0.029217 0.114590 -0.618627 -0.183098 0.168627 -0.283437 0.342963 0.081672 0.238788 0.386249 0.617825 -0.272710 -0.252675 -0.076537 -0.186529 -0.197533 -0.200425 -0.207666 0.382776 -0.459919 0.260647 0.239912 -0.084395 -0.006389 0.125511 0.448602 -0.292170 0.728363 0.290638 0.059894 0.556276 0.420719 0.988053 -0.042616 -0.249778 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.597181 -1.146650 1.746159 1.506355 0.241895 0.893340 0.375586 -1.019144 1.274986 0.909717 -0.088491 0.516690 -1.098944 0.179460 -0.144874 0.692699 -0.839574 -1.078277 -0.248059 -0.852658 -0.425327 -0.997377 -0.002008 0.509052 0.473445 -0.207935 -0.792869 -0.059672 -1.654869 -1.294377 0.631837 -0.303629 0.809109 -0.412161 0.220568 -2.734624 1.305478 1.289456 -0.352821 -1.532089 0.256723 -0.765818 0.111765 -0.016040 -0.196362 0.442643 0.120080 -0.044211 0.666565 0.365272 0.543403 0.283064 0.222985 2.137264 -0.748309 1.199830 0.673460 -0.076860 -0.156784 0.400609 0.245697 0.195113 0.906930 0.688980 -0.477859 -0.805047 -0.056766 -0.165983 -1.384603 0.840180 0.016760 -0.589487 -0.745759 -0.339900 -1.102240 -0.519679 -0.339347 0.660534 1.874045 -0.825361 1.404468 0.392689 0.745113 0.159297 1.087188 -0.044429 1.368428 0.381031 -0.816821 0.036567 -0.912139 -0.223825 0.056001 0.494362 -0.692829 -0.936787 0.625841 -1.035509 -1.474868 0.818252 0.186636 -0.087598 -1.560195 -0.427767 0.773982 0.617042 -0.787555 -1.497488 -0.804339 0.807600 -0.180784 -0.640879 0.139057 -0.720349 -0.266620 -0.543218 -1.229742 -0.215275 0.562059 -0.767361 -0.916559 1.383862 -0.690643 0.315482 -0.129116 0.424818 -0.494414 0.853200 -0.025048 0.825196 0.099360 -0.280487 -1.794683 -0.227547 0.268023 0.789457 -0.258368 -0.112282 -0.335102 0.401965 -0.479598 0.634182 -0.252220 0.766730 1.240116 -0.214142 -0.645450 -0.651483 0.136302 -1.460521 0.322553 -0.840018 -0.417429 0.255251 1.117251 0.587891 0.676226 1.459325 -0.887996 0.778765 -0.305281 -0.098791 0.834741 -0.201223 0.653233 -0.660592 -1.094198 0.566565 0.765262 0.379454 0.382842 -0.430321 -0.019669 -0.746297 -0.641315 0.263718 0.398113 -0.071312 1.170669 0.804267 1.847601 -1.481135 0.368132 0.402560 -0.353592 0.407511 -0.336048 -1.413444 0.378531 0.474537 -0.120464 1.428476 -0.252044 -0.893748 0.413965 -0.135724 0.473505 -0.956016 0.591094 -1.049794 -0.152004 -0.795732 -0.282700 -0.715257 -0.625955 -0.758831 -0.333885 1.546626 -0.697973 -1.362920 1.319039 -0.292276 0.497158 -1.948506 1.210057 -0.769411 0.936682 -0.608868 -0.063707 -0.223166 0.794213 -0.518529 0.292536 0.707526 -0.885414 0.809526 1.599383 0.388734 0.300381 0.131586 0.953354 -0.141695 0.199208 -0.831106 1.317188 -0.262255 -0.307900 -0.005557 -0.634697 0.542308 -0.246005 0.084219 0.430468 1.049600 -0.075422 0.284608 1.134249 0.500340 -0.588890 0.784755 -0.045973 0.690550 -0.549938 -0.062086 -0.142568 0.379010 -0.110961 0.605634 -1.562203 -1.252972 -0.919120 -1.400158 -0.052440 0.472220 0.105754 0.181509 0.052027 -1.604886 -0.847417 0.928591 -0.550225 1.096237 0.655360 0.757282 1.024907 1.292357 -0.464435 -0.320344 -0.190875 -0.181523 -0.519860 -0.490428 -0.603661 1.024496 -0.815224 0.766165 0.943968 -0.207521 0.442905 0.062699 0.748852 -0.887941 1.782925 0.783305 -0.442272 0.874354 0.861628 1.852602 -0.365518 -0.768963 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.370988 -3.354369 4.071611 3.630417 0.901489 2.848493 0.563831 -1.985445 2.182748 2.985290 -0.734166 2.094295 -2.224268 -0.288795 -0.099608 1.176416 -1.369444 -2.288519 -0.146828 -1.208970 -0.227438 -2.259622 -1.297803 2.431941 0.758070 -0.249128 -1.555723 0.559531 -4.282496 -4.635593 0.095007 -0.399995 1.816769 -1.391828 1.259674 -4.759138 3.232078 4.019589 -0.320752 -4.406487 0.275985 -1.159572 -0.433492 0.981306 -0.473135 1.880528 0.852816 -0.260968 0.458385 1.244210 0.640473 0.354138 1.737565 3.640960 -0.127298 3.398850 2.626590 -0.097355 0.732227 0.676821 0.517880 0.026317 1.890437 1.358651 -0.920446 -1.249550 -0.079311 0.863841 -2.679848 1.297442 0.103014 -1.956943 -1.376252 -0.955309 -3.035469 -0.719971 0.147442 0.996234 4.416215 -1.133486 3.948062 1.504565 2.081067 0.474843 3.118212 -0.218422 2.919029 1.327307 -2.240212 0.581343 -2.215858 -1.299192 0.159098 1.353114 -2.378422 -1.665243 1.331885 -3.606976 -3.432519 2.566208 -0.229918 -0.777942 -3.012052 -1.368219 2.005918 1.526050 -1.605086 -3.314572 -1.691714 2.479442 -1.034050 -1.877810 0.419523 -1.029299 -0.178103 0.053621 -2.358817 -0.325434 2.507661 -1.833842 -1.677280 3.288871 -0.647925 1.690441 -0.673579 0.642475 -0.740998 1.069458 0.672392 1.862280 -0.172517 -0.937557 -3.554542 -0.004503 0.129491 -0.394645 -0.945943 -0.392539 0.325888 1.456120 0.379191 2.642686 -1.408417 1.873787 2.683535 0.241414 -1.082370 -2.470292 -0.423721 -2.538261 0.625814 -1.383685 -1.993241 0.387916 2.644460 0.036966 0.864186 2.201590 -1.777513 1.039383 -0.674597 0.317991 0.987649 -1.291185 0.924814 -1.438198 -2.691254 1.849731 2.639245 1.059560 1.116875 -1.227920 0.164919 -0.650824 -1.468260 1.115235 0.678184 0.116334 3.390857 1.993987 4.509059 -1.874353 0.060004 -0.026661 -1.078985 1.030123 -1.227721 -3.368820 0.702216 1.182228 0.774652 4.198095 -0.677967 -1.652443 1.533462 0.080743 0.688439 -2.303155 2.389981 -2.839657 -0.050581 -1.236319 -0.951235 -1.763947 -1.484520 -2.536011 -0.715609 3.720980 -1.599828 -3.293911 2.335234 -0.823776 0.839995 -4.358618 1.787094 -1.655456 2.276898 -0.298159 -0.180112 -0.214143 1.228319 -0.874346 0.143594 1.839818 -2.527613 2.372420 2.520010 0.542252 0.094931 0.685689 1.396671 -0.754179 -0.570852 -2.563929 2.320104 -0.676983 -0.132386 -0.589828 -1.447373 1.848084 -0.315722 -0.421301 -0.762855 1.734658 -0.945599 -0.367667 2.759026 -0.001810 -1.270301 1.679601 -0.075689 1.574552 -1.614885 -0.309988 -1.377783 0.705228 0.648631 1.587490 -3.910618 -1.695419 -2.807928 -3.216687 -0.815709 1.401412 0.679793 1.077099 0.160156 -3.870000 -2.415642 3.427275 -0.932869 1.712406 2.056329 2.057128 2.523494 2.216774 0.139521 -0.725317 -1.218721 -0.634774 -1.866515 -1.216690 -0.494813 1.963979 -1.496217 2.275844 1.765914 -0.232414 1.368525 -0.253918 0.883881 -2.313915 3.922453 2.292527 -1.524317 0.768382 1.742363 3.934945 -2.624112 -1.958646 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::front() = 0.017553 -0.603187 1.165858 1.038870 -0.160848 0.327571 0.162746 -0.746750 0.827689 0.126665 -0.129833 0.222177 -0.795486 0.389548 -0.388043 0.622297 -0.870480 -0.649217 -0.312396 -0.528626 -0.371933 -0.599949 0.450007 0.188969 0.509494 0.406297 -0.552776 -0.102934 -0.768075 -0.494362 0.622352 -0.239726 0.512685 0.281410 0.047507 -1.487587 0.775725 0.664218 -0.294387 -0.826179 0.291097 -0.526396 0.048936 -0.437873 -0.209234 0.160502 -0.104825 0.299152 0.604587 0.212871 0.234136 0.233743 0.157598 1.230766 -0.596557 0.604610 0.296032 0.060471 -0.187515 0.058820 0.241858 0.318689 0.450445 0.476879 -0.187022 -0.680979 -0.276595 -0.427468 -0.828256 0.721131 -0.194378 -0.058921 -0.768642 -0.270130 -0.573740 -0.183434 -0.781648 0.747040 1.174254 -0.788002 0.606596 0.101809 0.202824 -0.119069 0.339440 -0.007527 0.645474 0.276623 -0.264709 -0.022700 -0.354712 -0.103655 0.148280 -0.104343 -0.435935 -0.944046 0.507552 -0.805318 -0.928221 0.262123 0.347918 -0.118574 -0.480755 -0.040689 0.275960 0.368439 -0.495078 -0.825244 -0.123302 0.241659 0.339554 -0.338146 -0.018905 -0.100055 -0.213327 -0.419171 -0.982978 -0.115295 0.033724 -0.518387 -0.105067 0.672885 -0.299149 0.037929 -0.060222 0.208579 -0.269810 0.952693 -0.083658 0.551348 0.082962 0.246297 -0.454594 0.131341 0.404524 0.651337 -0.293786 0.080602 -0.331303 0.160394 -0.510188 -0.050205 -0.141014 0.219054 0.631539 -0.356381 -0.623821 -0.221763 -0.234035 -1.160919 0.174898 -0.667845 -0.120000 0.399342 0.662367 0.586596 0.574000 1.144086 -0.692856 0.267137 -0.026793 -0.117683 0.660200 0.254909 0.465760 -0.401061 -0.718203 0.488180 0.130120 0.184119 0.172744 -0.079404 -0.015542 -0.678680 -0.196589 0.407549 0.383600 -0.143138 0.652145 0.432099 0.428155 -0.638038 0.335347 0.482022 -0.152997 0.194708 -0.038141 -0.984688 0.472458 0.109398 0.063622 0.564112 -0.137511 -0.325228 0.333981 -0.263184 0.356614 -0.641050 0.140326 -0.580059 -0.139351 -0.790925 0.209525 -0.128160 -0.326639 -0.212545 -0.182207 0.950569 -0.657447 -0.450429 0.906060 -0.006478 0.478853 -0.904672 0.696811 -0.470670 0.713692 -0.205527 -0.074701 0.052204 -0.017732 -0.398577 -0.040709 0.443438 -0.184819 0.161521 0.958947 0.274422 -0.017549 0.100388 0.731903 -0.080756 0.573181 -0.340384 0.852644 -0.016946 -0.305383 0.192243 -0.372203 -0.030336 -0.415295 0.140843 1.013054 0.637699 0.419981 0.576364 0.352278 0.717964 -0.469084 0.532454 -0.076221 0.350613 -0.391278 -0.066937 0.176983 0.398211 -0.339470 0.416159 -0.887571 -1.285750 -0.816549 -0.738735 -0.033960 -0.277561 0.246085 -0.230774 -0.115558 -0.659339 -0.659892 0.465852 -0.427794 0.755950 0.383716 0.348877 0.592313 0.899972 -0.545382 -0.015551 0.093708 0.215289 -0.000541 -0.085015 -0.626662 0.664727 -0.501204 0.155818 0.938432 -0.310172 0.284432 -0.068632 0.732666 -0.497995 1.103170 0.360156 -0.349074 0.830886 0.565329 0.837349 0.417408 -0.514946 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.180866 -0.285402 0.652897 0.593353 -0.028429 0.182790 -0.047684 -0.425778 0.435811 0.361553 0.014434 0.154957 -0.293826 0.201712 0.025709 0.470486 -0.386291 -0.266066 -0.204488 -0.369844 -0.303980 -0.260147 0.134089 -0.013222 0.206987 0.095538 -0.366304 0.072483 -0.218571 -0.696406 0.151578 -0.117801 0.282258 -0.080635 0.068756 -1.038701 0.514610 0.369771 -0.188426 -0.424825 0.101918 -0.156821 0.071414 -0.026110 -0.188699 0.167859 -0.065103 -0.196757 0.298577 0.204575 0.343301 0.177264 0.225554 0.737440 -0.241575 0.330891 0.163384 -0.077523 -0.157785 0.048234 0.140114 0.165020 0.267372 0.213671 -0.008598 -0.400474 -0.116177 -0.103836 -0.461399 0.361954 -0.151245 -0.279984 -0.300069 -0.288580 -0.225952 -0.199148 -0.407801 0.265497 0.595722 -0.360306 0.286120 0.094231 0.071241 0.091587 0.259297 -0.017465 0.469242 0.158405 -0.147584 0.127792 0.295825 -0.133389 0.162958 0.257453 -0.255214 -0.337505 0.268678 -0.287594 -0.439834 0.313882 0.221206 0.023153 -0.595181 -0.263382 0.179236 0.184538 -0.251194 -0.424132 -0.208768 0.155706 0.171179 -0.200809 -0.101849 -0.206411 -0.123819 0.037175 -0.517090 -0.019575 0.056553 -0.198221 -0.249925 0.373659 -0.068717 -0.046552 -0.075136 0.186430 -0.218205 0.486344 -0.093868 0.457356 -0.158548 0.193551 -0.511718 -0.035792 0.194008 0.019427 -0.065580 -0.101082 -0.248664 0.063768 -0.315510 0.228470 -0.110400 0.265612 0.713743 0.015540 -0.348165 -0.142103 -0.163379 -0.691570 0.108767 -0.365846 -0.060501 0.243899 0.349077 0.216172 0.311509 0.520295 -0.363052 0.166700 -0.142570 -0.119223 0.370870 -0.004285 0.234111 -0.206087 -0.338557 0.247700 0.229373 0.129405 0.206085 -0.139868 0.023845 -0.243172 -0.106329 0.323456 0.178181 -0.044745 0.264024 0.247972 0.911681 -0.277796 0.135122 0.233408 -0.075758 0.104023 -0.082667 -0.433068 0.073868 0.117597 -0.020019 0.396975 -0.077748 -0.191946 0.088736 -0.141961 0.180626 -0.292314 0.201450 -0.271453 0.101057 -0.286838 -0.097151 -0.199203 -0.090414 -0.095427 -0.081026 0.520178 -0.418331 -0.307250 0.558523 -0.102566 0.151234 -0.502706 0.514793 -0.232982 0.393646 -0.319710 -0.077728 -0.052644 0.094493 -0.195683 0.156033 0.232545 -0.119250 -0.023860 0.598365 0.143289 0.019909 -0.063968 0.373858 -0.043904 0.307424 -0.169953 0.578076 -0.051634 0.016054 -0.028127 -0.178693 -0.022015 -0.213304 0.023364 0.190575 0.268307 0.001842 0.077247 0.241778 0.343222 -0.258051 0.405548 0.038316 0.201878 -0.228229 -0.032212 0.127459 0.287746 -0.155920 0.129652 -0.435287 -0.337790 -0.490481 -0.296342 -0.142709 0.329431 0.080163 -0.103369 -0.093647 -0.219241 -0.321709 0.669092 -0.201213 0.350595 0.142455 0.202637 0.335526 0.493523 -0.113613 -0.094771 -0.234634 -0.171779 0.005179 -0.072164 -0.225039 0.425726 -0.216887 0.051241 0.334151 -0.127910 0.185073 0.187039 0.215986 -0.235568 0.538457 0.160003 -0.010554 0.429484 0.364522 0.544982 -0.079014 -0.249021 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::pop_front() = 2.484545 -2.547620 8.415814 7.341609 -1.468069 2.292733 -0.784179 -6.799355 4.975096 3.245745 -1.040940 1.538416 -2.518549 2.433170 -2.420105 5.464023 -5.912208 -2.094710 -3.140277 -4.749687 -3.151577 -2.704697 1.860648 0.242364 3.240647 2.614886 -3.487895 1.152561 -1.281361 -8.400876 2.024185 -0.441626 1.929290 -0.824202 1.512997 -8.385666 7.002762 4.802761 -2.074664 -5.022489 1.213004 -0.891491 -2.437380 -0.057774 -1.427511 1.647923 -2.008840 2.994640 2.877724 2.874678 2.332278 3.253955 3.954561 8.715592 -1.819330 4.390749 2.385738 0.636716 -0.240788 2.170156 1.634092 3.203651 1.285217 2.233717 2.145963 -4.790798 -1.175813 -0.449168 -3.146754 5.152144 -1.217903 -4.336453 -3.848135 -3.090333 -2.993748 -0.081383 -8.622244 4.851252 6.427259 -4.522885 2.179348 1.235535 -0.018053 -0.250323 1.906810 -1.254946 5.678913 2.521595 -0.429563 0.050397 1.080516 -3.005036 2.998164 -2.352542 -4.702877 -8.644773 3.532746 -7.025083 -5.304183 2.683857 3.684891 -2.289130 -1.964738 -2.519273 2.150835 0.199512 -1.819054 -3.666165 -0.507075 2.539617 1.315246 -2.305812 -0.729809 -0.302485 0.397683 2.717546 -6.223177 0.806827 0.795732 -0.942712 -0.913393 3.538895 1.768516 -1.284441 -1.220062 1.521143 -1.485521 4.110752 -1.724022 5.572705 -0.964359 5.475083 -1.407454 4.518232 2.993311 -3.989366 -0.452479 0.874834 -1.706363 2.323161 -3.552126 3.699507 -3.920093 1.970817 4.306076 -0.259752 -4.280418 -1.707660 -2.863733 -5.881971 1.271053 -3.581799 -4.689989 0.958572 4.035789 3.347605 3.193692 1.826823 -4.998323 0.174013 -0.584841 1.345712 3.139023 -0.946047 1.774518 -2.154400 -4.286157 2.950171 1.720605 1.177345 0.910767 -0.667292 0.147090 -2.725301 -0.523324 3.704606 1.998112 -1.309194 3.708701 3.789419 7.230660 -2.183550 1.473683 2.964016 -2.335777 0.907791 -0.712993 -5.835536 1.280545 1.139939 4.209702 5.766622 -0.853206 0.230634 1.373326 -1.221373 1.267346 -2.674085 1.081775 -3.448752 -1.053645 -2.714353 1.815920 -1.195672 -0.437385 -1.510762 -1.954895 5.585381 -7.033860 -2.536904 8.294232 -3.176574 0.759875 -3.838733 4.949475 -2.173416 2.104009 -0.304109 -0.415475 -0.024375 -1.330522 -4.387984 1.314940 2.370825 -1.358456 0.768130 6.096288 1.060960 -0.227492 -0.790466 3.947197 -3.208558 3.879997 -3.631415 6.567332 -0.625031 -1.066440 -1.787138 -1.877401 -1.371264 -4.431839 1.143091 3.398629 1.030232 1.756362 0.799680 1.585507 4.341930 -3.123561 6.141948 -0.030429 -0.868131 -3.157190 -0.811170 2.651924 0.685401 -2.300355 2.804406 -5.610050 -3.877376 -9.040177 -2.394870 -1.075283 -1.423953 2.860428 -2.478075 -2.268787 -2.672534 -5.723578 7.716290 -1.880042 -1.417697 3.751262 2.483741 3.047280 5.542441 -0.655932 2.391665 -2.998377 -0.514543 0.419389 -2.633201 -2.076992 5.597265 -0.891329 0.552347 5.583294 -0.969341 3.445071 -0.232345 1.967476 -2.914663 4.534683 1.608927 -0.896716 2.629696 4.704454 4.601738 0.166267 -3.264654 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_pop_front_aux() = 2.611699 -2.481817 8.415460 7.306287 -1.742254 2.326388 -1.315041 -6.869990 5.035223 2.889698 -0.739688 1.982159 -2.054930 2.864136 -2.852940 5.596148 -6.112140 -1.979680 -3.279142 -5.068702 -3.998432 -2.400862 1.088833 0.237137 3.023872 2.452185 -3.833276 1.460595 -1.216089 -7.925520 1.668849 -0.470941 1.508598 -1.853375 2.093817 -9.207071 6.884751 4.486407 -2.119709 -4.965031 0.875322 -1.352759 -1.857866 -0.533352 -1.520863 1.216080 -2.051087 2.991670 3.046222 2.608601 2.123459 3.989034 3.646816 10.122236 -1.902663 4.425172 2.583610 0.711518 -0.399046 2.158105 1.735633 3.069309 1.120455 1.686429 2.100951 -5.008478 -1.534791 -0.503219 -2.278475 5.042365 -0.886115 -4.617069 -4.069628 -3.430394 -3.726777 -0.725604 -10.451001 5.076278 6.314026 -5.346062 1.758551 1.220266 0.521078 0.791727 2.797229 -1.202150 6.522915 2.525039 -0.667255 0.784306 1.550531 -2.408546 3.127989 -2.952604 -4.829531 -10.161647 3.339278 -7.727140 -5.557605 3.261669 3.753486 -1.869492 -1.814779 -3.235249 2.406921 -0.099164 -2.425015 -3.758142 -0.525851 2.607014 1.678248 -2.392940 0.025971 -0.981355 1.061926 2.533149 -6.468595 1.140949 1.238824 -0.546407 -1.090005 4.087658 2.068141 -1.480098 -1.429690 1.333005 -1.668471 4.609737 -1.898384 5.511997 -2.367981 5.874497 -2.248504 5.059419 2.802392 -4.551866 -0.563927 1.109633 -1.747053 2.445088 -3.717805 3.799427 -4.110746 2.374740 3.827316 0.067682 -4.564956 -2.025722 -3.002225 -5.705466 1.277856 -3.372938 -5.429039 0.765462 4.052078 4.173826 3.209875 0.793913 -4.360679 0.124051 -0.796790 1.647094 3.633655 -1.280421 1.931659 -2.316386 -4.148262 3.094677 1.595348 1.280636 1.135326 -0.892974 0.443633 -2.475921 0.007798 3.422460 2.624721 -1.276582 4.208070 3.859258 7.311810 -2.730803 1.446891 2.666668 -2.577397 1.114417 -1.132774 -5.390745 1.108513 1.507216 3.902777 5.717313 -1.006534 0.256862 1.278102 -0.956911 1.736287 -2.386828 0.524940 -3.262283 -1.710409 -2.520676 2.392964 -1.575065 0.092076 -1.934296 -2.986018 5.759701 -8.497889 -2.110785 8.623209 -3.193975 1.159882 -3.476329 5.117544 -2.146584 2.473985 -0.355160 -0.319020 -0.005945 -0.843144 -4.619616 2.183954 2.676498 -1.731890 0.024350 5.930886 1.037585 0.440822 -0.795589 4.086424 -3.369596 3.853298 -3.498653 6.992416 -0.846626 -1.021065 -1.720761 -1.848894 -1.484855 -4.183939 1.794009 3.243017 0.614142 2.182743 0.380017 2.114035 4.106702 -3.314972 5.810279 -0.613824 -1.359309 -3.641422 -0.767852 2.506938 0.662390 -2.021595 2.064555 -5.676816 -3.394869 -10.272736 -1.337531 -0.760971 -0.982103 1.985751 -2.594418 -2.610953 -2.613264 -5.695176 8.402140 -2.109404 -2.515894 3.823528 2.470682 3.367491 5.785874 -0.492762 2.211770 -2.957658 -1.217807 0.789662 -2.208134 -2.537064 5.853430 -1.188838 0.628678 5.667518 -0.956316 3.592437 1.014873 1.722138 -2.643733 4.406543 1.536252 -1.191265 2.195944 6.062807 4.880154 0.127877 -3.397008 -PE-benchmarks/cut-vertices.cpp__Graph::Graph(int) = -0.095979 -2.267847 2.871178 1.668742 -0.457873 1.676422 1.325861 -1.355719 1.308269 0.659367 -0.858477 0.550904 -1.606519 -1.030043 0.173252 -0.236953 -2.060444 -1.519766 0.139369 -0.668738 -0.358266 -1.534393 -0.510638 1.677049 0.473040 1.010871 0.079684 -0.135427 -2.459574 -0.633033 1.197444 -0.126621 0.679388 2.309849 1.630806 -2.035246 1.498935 1.556992 -0.193315 -2.558463 -0.033952 -0.145055 -0.814214 0.534219 0.369921 0.556388 0.420222 1.918562 -0.297569 0.329314 0.147668 -1.358417 0.228806 2.444110 0.785962 1.999492 2.230763 -0.205122 1.218865 1.259539 0.726761 -0.277871 0.629516 1.454067 -0.238737 0.335689 0.547900 -1.183201 -1.380734 1.262023 0.544978 -1.607784 -0.365840 -1.337303 -1.441946 -0.213141 -2.750659 1.974262 3.084754 -1.584940 2.669416 1.127071 2.108289 -0.874479 2.153173 -0.174095 2.524667 0.810721 -1.453760 0.668404 -2.555292 -2.168911 0.113658 -0.445328 -1.104809 -0.236480 1.386814 -2.368034 -2.212793 1.802435 0.079351 -0.270351 -0.870022 0.395403 1.081694 0.369897 -1.492597 -1.979373 -1.453911 1.530042 -1.874640 -0.194909 0.129673 1.459899 -0.680228 -0.316249 -1.049916 -0.116349 1.803130 -1.138190 -0.513436 2.343131 -0.842499 1.498813 -0.385899 -0.567291 -0.042325 0.866259 0.628133 0.052305 0.975437 -0.725342 -1.542577 1.155413 0.158293 1.340636 0.407795 0.239158 1.575732 1.315169 0.146387 1.257263 -1.189025 1.186264 0.030065 -0.495734 -1.584399 -1.286546 -0.578610 -1.905091 0.297577 -1.248387 -1.072026 0.571968 1.835538 2.154456 -0.509946 0.957896 -1.507454 0.791524 -0.455455 0.371251 -0.709726 -0.036918 0.556266 -1.119017 -1.376509 0.238351 0.787280 0.453918 1.168296 -1.497879 -0.667313 -1.308698 -2.152850 0.670409 0.746882 -0.162878 1.513361 1.621516 0.909434 -1.875740 -0.270969 -0.058203 -0.078397 -0.202491 -0.402191 -2.082959 0.789955 0.174740 0.864806 1.702490 -0.223301 -0.065794 0.363358 -0.311991 0.257356 -1.245231 0.525258 -1.323600 -0.102697 -0.856490 0.794836 -1.176330 -1.158013 -1.165934 -0.685772 2.367730 -1.187357 -1.987191 2.152755 -0.819077 1.521450 -1.756593 0.972325 -0.804808 1.619240 -0.027215 -0.317000 -0.502706 0.193996 0.038368 0.504923 0.382608 -1.047864 1.097380 1.581149 0.196626 0.778798 0.910018 0.998492 -1.442644 -0.916858 -1.565437 1.420812 -0.229315 -0.913996 -0.139321 -1.052747 1.327816 -0.089551 -0.201941 1.000656 1.040354 0.053563 0.372845 0.763984 -0.833019 -1.196992 0.297533 0.833073 1.239485 -1.033632 -0.347122 -0.541320 -0.011795 0.154590 0.037242 -2.195318 -1.620386 -1.958178 -1.667918 -1.566025 -0.844904 1.066708 0.723960 0.335404 -1.829895 -1.099580 0.650770 -0.659007 -0.113656 1.323815 1.503194 2.031762 1.739120 0.078633 -0.016480 0.320542 0.788353 -1.752451 -0.416224 -1.136418 0.352538 -1.794573 1.756711 1.435500 0.893011 1.084276 -0.553660 2.232983 -1.911537 1.726873 1.809489 -1.804874 0.014147 1.607751 1.502291 -0.151153 -1.539419 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/cut-vertices.cpp__Graph::addEdge(int, int) = -0.391477 -1.595272 2.386586 2.273744 -0.389854 1.052234 0.253968 -1.435890 1.178782 1.040368 -0.194706 0.780020 -1.411738 0.458828 -0.071988 1.140260 -1.696976 -1.092001 -0.535362 -1.126902 -1.062540 -1.120823 -0.114413 1.034326 0.759696 0.523892 -1.086790 0.007597 -1.247854 -1.675270 0.576147 -0.301473 1.144160 0.551017 0.571997 -4.044982 1.599099 1.532973 -0.447090 -1.641110 0.168941 -0.852852 -0.027713 -0.383929 -1.005720 0.392624 0.056417 0.181632 0.841520 0.371575 0.656160 0.234291 0.983472 3.247461 -0.447331 1.626829 1.093533 -0.198096 -0.013006 0.198140 0.545223 0.248492 1.111771 0.837644 -0.181876 -1.091700 -0.338866 -0.555324 -1.387767 1.314340 0.092106 -0.767077 -1.283149 -0.909196 -1.269378 -0.805875 -1.771514 1.363017 2.535959 -1.697089 1.713359 0.741277 0.673722 0.092427 1.439893 -0.140477 2.157554 0.597887 -0.878739 0.645213 -0.123011 -0.669925 0.474033 0.490460 -1.182434 -1.868862 0.872341 -1.792628 -2.190635 1.310991 0.420220 -0.237823 -1.427837 -0.843944 0.814790 0.381989 -1.167762 -1.883941 -0.963635 0.780783 0.032797 -0.911327 -0.231123 -0.070260 -0.065063 -0.124700 -1.996707 -0.149351 0.681237 -1.037228 -0.585530 1.738084 -0.039503 0.557912 -0.222897 0.315248 -0.467591 1.675644 -0.025152 1.157150 -0.240859 0.372127 -1.538627 0.061562 0.645457 0.291289 -0.332603 -0.511201 -0.140938 0.731711 -0.604820 1.031461 -0.122429 1.458729 1.556507 -0.016223 -1.286167 -1.049629 -0.583435 -2.213539 0.402455 -1.368800 -0.741399 0.868219 1.436681 0.849865 0.707507 1.263746 -1.021489 1.033588 -0.360245 0.032896 1.009469 -0.098995 0.854514 -0.954543 -1.461431 1.040743 0.842672 0.810925 0.525054 -0.627545 0.005367 -0.763580 -0.989353 0.788071 0.630969 -0.226654 1.597204 1.105550 3.308220 -1.481254 0.743254 0.451038 -0.359599 0.462709 -0.270985 -1.927392 0.650262 0.366017 -0.338810 1.719338 -0.387155 -0.798279 0.571445 -0.378448 0.550892 -1.372429 0.787191 -1.194277 -0.021609 -1.315267 0.091511 -0.759393 -0.638758 -0.761218 -0.332871 2.235763 -2.339864 -1.107181 2.048907 -0.168930 0.852054 -2.108171 2.203702 -0.862151 1.409091 -1.034692 -0.940651 0.004269 0.477041 -0.544002 0.589656 1.002645 -0.945846 0.158389 1.936795 0.370692 0.466268 0.289398 1.358940 -0.096479 0.573999 -1.008985 1.974017 0.038806 -0.287832 -0.391316 -0.860308 0.400573 -0.351452 0.306966 0.985043 1.276207 0.192732 0.223034 1.314050 0.677615 -0.949370 0.930173 -0.123805 0.815629 -1.167082 -0.175564 -0.090388 0.644040 -0.388588 0.706578 -2.068536 -1.585935 -2.225983 -0.787647 -0.808334 0.807895 0.632613 0.057625 -0.260480 -1.549967 -1.364561 1.963673 -0.936309 0.461055 0.992239 1.069906 1.610446 1.782161 0.004629 -0.402133 -0.362307 -0.040987 -0.311392 -0.069428 -1.074455 1.349491 -1.117362 1.097441 1.447282 -0.267817 0.861947 0.398096 1.536528 -1.214302 2.203501 0.879373 -1.005924 1.073923 1.930331 1.447905 -0.321063 -1.160070 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::push_back(int const&) = -0.077529 -0.917212 1.926129 1.690331 -0.291034 0.629247 0.100363 -1.345253 1.481807 0.359404 -0.067820 0.345084 -1.053998 0.601394 -0.297854 1.025625 -1.514553 -0.974832 -0.508815 -1.067197 -0.843968 -0.975442 0.422656 0.255730 0.632583 0.456758 -0.955443 0.007034 -0.960840 -0.934492 1.081055 -0.390250 0.806590 0.193464 0.263220 -3.329660 1.412603 0.906599 -0.490407 -1.358132 0.240322 -0.820300 0.128790 -0.602182 -0.478886 0.211199 -0.188216 0.492971 0.979868 0.286153 0.366317 0.484081 0.168066 2.586149 -0.959138 1.010112 0.481178 -0.059223 -0.391253 0.293020 0.409690 0.500026 0.837138 0.799006 -0.267402 -1.124092 -0.221362 -0.642902 -1.378018 1.246603 -0.015182 -0.403871 -1.099677 -0.507587 -0.989252 -0.497219 -1.263619 1.271060 1.947137 -1.326708 0.981342 0.226904 0.533105 0.101900 0.849460 -0.081755 1.616537 0.433907 -0.617319 0.086968 -0.553645 -0.367427 0.334869 -0.198445 -0.657727 -1.762485 0.632030 -1.287231 -1.489152 0.672496 0.589161 -0.016680 -1.289897 -0.552017 0.818272 0.455756 -0.835267 -1.398146 -0.535145 0.528918 0.168919 -0.568503 0.040671 -0.378039 -0.230716 -0.592107 -1.607283 -0.197249 0.232984 -0.657977 -0.459639 1.273472 -0.562691 -0.070521 -0.159556 0.358538 -0.535055 1.432644 -0.267029 0.930079 0.048071 0.330961 -1.071000 0.194983 0.521846 0.920253 -0.165585 -0.154143 -0.558813 0.399922 -1.002412 0.215261 -0.210901 0.599859 1.185029 -0.278406 -1.043524 -0.464671 -0.177392 -1.884918 0.345044 -1.117295 -0.385883 0.680549 1.141151 1.103125 0.925839 1.349332 -1.154538 0.773225 -0.319310 0.034166 1.115236 0.273336 0.758473 -0.678450 -1.061748 0.663747 0.295291 0.391765 0.343633 -0.465736 -0.009963 -0.970315 -0.573925 0.525547 0.693097 -0.104452 0.978030 0.763155 1.600164 -1.502391 0.572225 0.737847 -0.284610 0.336849 -0.148355 -1.460224 0.572121 0.317679 -0.017740 1.144079 -0.309094 -0.712182 0.279165 -0.210863 0.566819 -0.885238 0.134186 -0.904089 -0.241678 -1.085549 0.214592 -0.571869 -0.433315 -0.545250 -0.455696 1.606379 -1.393390 -1.044610 1.858997 -0.450001 0.858132 -1.673572 1.337762 -0.757155 1.029203 -0.678022 -0.206450 -0.128654 0.190236 -0.749185 0.411867 0.737312 -0.494163 0.200572 1.764319 0.447669 0.311833 0.064806 1.190299 -0.131339 0.768503 -0.644971 1.617946 -0.190769 -0.326104 0.055199 -0.636931 0.132174 -0.585328 0.378784 1.224358 1.022349 0.561673 0.709134 0.880237 0.900543 -0.784405 0.896935 -0.138609 0.399007 -0.666183 -0.058427 0.283081 0.553908 -0.543808 0.574059 -1.486717 -1.747025 -1.615354 -1.032023 -0.184657 0.074947 0.231250 -0.283068 -0.177470 -1.174959 -0.914647 0.999809 -0.676181 0.942986 0.665798 0.638332 1.038536 1.616170 -0.766642 -0.197364 0.021847 -0.064648 -0.146893 -0.216749 -1.124218 1.289367 -0.805793 0.493335 1.436548 -0.375614 0.470281 0.057361 1.205382 -0.758962 1.744571 0.630357 -0.507026 1.054603 1.106764 1.535516 0.478665 -0.858644 -PE-benchmarks/cut-vertices.cpp__Graph::APUtil(int, bool*, int*, int*, int*, bool*) = -8.620711 -15.002380 17.872345 15.699537 2.532037 11.087955 3.928589 -9.373856 6.944702 12.155908 -4.353943 9.749599 -9.398506 -1.922384 -3.276267 4.137367 -5.596800 -10.074701 -1.372088 -6.910067 -4.145066 -8.167022 -6.970004 11.895413 3.990266 -2.021698 -7.382326 0.964204 -18.721059 -18.567822 -0.669011 -0.476861 7.458165 -3.554368 3.149822 -25.297596 11.595084 18.532487 -2.143394 -14.629200 1.287564 -5.931058 -4.844891 3.870453 -5.104477 4.015444 2.698925 -3.764502 0.395093 3.232727 8.076361 1.348174 8.630087 22.879160 0.472579 16.713865 13.671053 -0.022899 2.759580 3.950041 3.850716 -0.581400 9.136650 6.630103 -3.083217 -4.716931 -0.456703 1.737369 -9.227760 5.271885 1.110989 -11.108048 -3.673519 -6.148284 -11.456321 -5.596153 -2.390059 2.456859 19.479068 -8.298526 19.468697 8.304094 9.188467 -0.270657 13.307843 -1.897056 16.881157 5.374247 -8.701823 2.169671 -5.868587 -2.240548 1.209021 12.993150 -12.547906 -3.032051 8.947528 -16.479661 -17.982626 10.735780 -0.131070 -4.102811 -11.903882 -3.233504 5.609131 2.231632 -6.887002 -14.740459 -10.894887 9.771781 -5.134353 -8.995971 -3.237794 -2.159064 0.886753 3.104689 -13.031932 -0.383063 10.441548 -8.519020 -9.705528 13.421369 -0.352182 7.918778 -3.000998 2.454024 -1.777397 4.486686 1.249149 6.657690 -1.531131 -2.256433 -19.535428 -1.911354 2.229622 -2.160495 -6.639392 -2.546029 4.397531 6.251734 2.568429 13.202082 -6.024809 13.405094 9.912180 0.827053 -6.507825 -11.866124 -2.757642 -12.989110 1.954092 -8.222044 -10.279090 0.508471 11.099178 2.319985 1.799819 10.784062 -4.661549 10.289960 -0.078404 0.169431 3.488534 -10.072666 4.884185 -7.783135 -13.356387 8.415145 11.415849 5.353844 4.310933 -3.502033 -0.915078 -4.606567 -10.587548 5.397877 0.740252 0.072368 15.244568 9.006464 32.923634 -14.324776 4.578977 -1.689483 -3.932714 4.110174 -4.364280 -14.922032 2.232281 4.361646 1.097536 20.077802 -0.775811 -7.089040 3.575935 -1.021692 2.592912 -11.731033 13.884887 -10.773215 0.272659 -5.272555 -4.337030 -6.496260 -5.796624 -8.872056 -3.634220 16.893089 -15.517652 -15.053573 11.631831 1.350399 3.185019 -20.676685 13.507427 -7.274880 12.744802 -6.264696 -5.491501 -0.630686 7.352542 -2.969234 5.740032 7.698913 -12.691686 8.781869 13.373703 1.409090 5.235096 2.759549 6.510400 -3.668847 -1.448546 -10.588739 13.074207 1.591582 -6.283222 -5.322820 -6.944211 7.116807 0.129078 -0.384457 -1.279361 11.194679 -4.783722 -4.206297 13.142783 1.189363 -6.974478 7.343898 0.960076 8.070462 -7.614942 -2.587347 -4.843721 1.027608 2.278318 5.581475 -17.000673 -7.500412 -13.100872 -12.546213 -3.775809 6.196430 5.984912 4.569670 -0.153917 -17.872379 -11.976379 18.045925 -5.882024 7.288224 9.273966 11.968272 11.918632 8.796744 3.908905 -2.442840 -6.272288 -0.184742 -6.871497 -4.895383 -2.836571 7.808580 -6.283776 12.186745 6.717321 1.265528 7.693097 4.813649 4.411132 -9.468702 18.046365 8.430057 -9.693842 4.709185 10.601928 13.894087 -12.998726 -9.179245 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/cut-vertices.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/cut-vertices.cpp__Graph::AP() = -5.289983 -12.426377 14.152932 11.489026 0.807224 9.122615 3.138852 -7.422915 5.721300 7.565432 -4.004546 7.813798 -6.810849 -2.792021 -2.634228 1.398699 -5.999234 -7.899478 -0.848067 -4.678687 -3.077042 -6.496301 -4.942759 9.670405 2.637860 2.584812 -4.454135 1.335004 -15.164530 -13.097117 1.351292 -0.107751 5.524892 1.088117 4.463977 -17.425169 8.974378 13.766165 -1.634971 -13.473675 0.497195 -3.002868 -5.259389 3.465886 -2.376861 3.719162 1.779590 0.280953 -1.188041 2.231975 3.885054 -0.250131 5.423921 16.314868 2.250260 12.876462 12.639094 -0.386885 4.222661 3.518198 3.526883 -0.230527 6.320965 6.047281 -2.310394 -2.175524 0.856056 -0.243612 -7.348135 4.908133 1.787331 -9.148018 -1.923399 -5.656849 -9.138954 -2.515903 -1.709715 3.223840 15.885693 -5.419341 15.619113 6.239815 8.573353 -1.570530 10.841410 -1.323069 13.020027 5.072179 -6.687822 1.763617 -7.460230 -3.805210 0.893548 7.406969 -9.687204 -0.449523 7.804474 -13.471582 -13.467743 8.888291 0.339163 -3.582661 -7.933118 -1.039255 4.916820 2.113751 -5.347832 -10.654274 -8.501731 8.353976 -6.159335 -5.812749 -2.059714 1.690469 -0.579593 2.951302 -8.569401 0.391896 9.381186 -5.996760 -5.937142 10.911277 -1.698842 6.236494 -3.021396 0.602047 -1.347207 2.951176 1.733735 3.946051 0.911331 -1.959814 -12.502572 0.850644 1.421360 0.198624 -4.745898 -2.472611 5.102454 5.797421 2.739812 9.347020 -6.189713 9.129428 5.957133 -0.019782 -6.062605 -10.209181 -2.807433 -10.615083 0.592488 -6.507290 -7.726622 2.181167 9.176409 3.725288 0.391894 7.140063 -5.320292 7.321682 -0.061756 1.331876 0.596601 -6.101941 3.046726 -6.085047 -10.052440 5.747036 7.579998 4.184655 3.995039 -3.967685 -1.631986 -3.870520 -9.845047 5.584489 1.726398 0.888694 11.111455 8.089018 20.935281 -10.346188 1.418820 -1.469110 -3.124801 1.610331 -3.420578 -11.540515 2.118723 3.032643 3.328298 15.411597 -0.802649 -3.774684 2.362451 -0.244636 1.703243 -8.448977 10.238075 -8.015436 -0.057898 -3.551482 -1.940024 -5.572018 -4.471315 -7.595904 -3.808720 14.120582 -11.854279 -12.698944 9.887074 -1.417827 3.942302 -15.024392 7.270741 -5.345406 9.897863 -2.568538 -3.367578 -1.624867 2.652058 -2.494580 4.135772 5.319584 -10.060280 6.627644 9.853052 1.148512 3.727936 2.281653 4.518267 -4.627108 -1.848934 -9.147111 9.287425 0.578307 -5.452373 -3.570968 -5.418018 5.982696 -0.753022 -0.503492 -0.201977 7.768551 -2.468647 -2.393340 8.510545 -0.193086 -6.119895 4.680512 2.223844 5.896832 -5.801208 -2.418779 -3.575272 1.056326 2.124976 3.570363 -12.967088 -6.405994 -10.647398 -11.354901 -4.574115 1.481283 5.354111 3.502568 0.095834 -13.037821 -9.284406 11.630938 -3.923804 5.172204 7.950615 9.143301 9.852529 7.254355 1.941319 -0.928829 -4.225523 1.107303 -6.616024 -3.648130 -3.235799 5.384513 -4.962660 9.315764 5.963389 1.690096 6.824796 1.117383 5.442691 -8.090509 13.453819 7.602823 -8.735647 1.824918 6.812943 10.761119 -8.333907 -7.945997 -PE-benchmarks/cut-vertices.cpp__main = -2.944427 -14.779939 19.842315 16.602578 -2.930607 8.941287 2.705976 -9.653224 8.968121 3.295518 -4.913597 8.772454 -10.575850 1.099582 -4.158208 4.869493 -14.298517 -11.028408 -1.710898 -5.945424 -5.656620 -8.967962 -1.422030 11.267833 5.638336 7.982856 -7.767663 0.392982 -14.918908 -10.686147 6.619618 -2.998309 9.001524 6.828440 4.919699 -29.145723 11.870134 13.155254 -2.826703 -16.132554 1.531795 -6.174655 -3.235133 -4.319285 -6.993124 3.247769 2.534553 4.933734 3.271060 2.286826 0.405679 0.054218 5.489355 23.166496 -1.029613 13.430506 12.801467 -1.093344 2.247651 0.608823 5.394892 0.476037 8.608330 8.597575 -3.162468 -6.616065 -1.419070 -5.524656 -11.225130 9.192537 2.174755 -3.921259 -7.820937 -5.408826 -12.474098 -3.667952 -4.179587 10.356333 21.972813 -11.366557 16.998104 5.934684 9.541029 -1.494536 10.645610 -0.137372 15.251567 6.539047 -8.112327 2.404044 -9.468558 -4.828617 1.792094 3.196052 -9.382595 -10.537986 8.217107 -18.887098 -17.005603 9.246512 2.385253 -2.904061 -7.982676 -3.124967 7.494200 4.405291 -8.553128 -13.783485 -7.022056 6.099609 -3.407480 -6.800456 -1.077109 3.688187 -1.316521 -1.507585 -14.689961 -1.253659 7.892482 -9.062674 -1.742820 13.196939 -3.033646 6.424067 -3.060743 1.211625 -2.742006 10.672124 2.278628 5.344111 1.130581 -0.458217 -8.298721 0.761113 4.043916 6.882945 -5.991896 -4.698273 2.379561 6.680581 -1.059896 4.411564 -3.660502 9.079354 7.601707 -2.177138 -10.603031 -11.097393 -5.320811 -17.340023 1.385152 -10.796244 -7.343042 8.547474 11.996551 6.657729 4.464587 12.035041 -8.403935 9.615715 -1.119939 1.406810 5.027824 -1.720974 5.933270 -7.646357 -11.857314 8.921733 5.426472 6.379923 4.340849 -5.996423 -0.255418 -7.663075 -10.897294 7.571028 5.652942 0.415072 12.676150 8.331640 18.035069 -12.475536 3.158555 2.191937 -2.385660 1.948577 -1.432326 -15.881523 6.424879 2.052631 1.202122 14.790432 -1.837995 -6.774560 4.787037 -1.081351 3.209213 -10.907282 7.645495 -9.690473 -0.425816 -9.337188 1.455885 -6.202718 -5.394300 -8.635048 -4.832983 18.556551 -18.265916 -12.711786 13.973922 -0.421013 10.112199 -18.982362 10.031658 -7.701103 15.040981 -3.263687 -5.519367 0.175973 -1.328287 -4.323803 3.053905 7.934503 -8.253927 4.013085 12.696729 3.209074 3.435829 3.779093 9.008445 -2.374440 3.007215 -8.163556 11.752790 0.323963 -6.326096 -1.889999 -6.706726 4.583632 -2.418127 2.242544 7.451787 10.528377 3.530235 4.561278 9.888980 3.894819 -8.857187 4.281179 -0.224812 8.328553 -8.238239 -2.541676 -2.954094 5.686626 -1.452467 6.185937 -16.895111 -16.814433 -18.542582 -12.591399 -6.606879 -0.577068 6.167679 0.828158 -0.417956 -14.483714 -10.592988 11.707663 -6.168684 9.835211 10.293063 9.015996 13.056124 11.820647 -2.783679 -3.837639 -0.030636 3.885620 -4.776832 -0.012034 -10.712284 8.578903 -8.893975 9.393446 13.565790 -2.122832 6.214218 -0.142877 12.842888 -9.854919 19.420304 9.260667 -12.942169 5.937380 9.840672 11.153324 -1.048193 -10.597239 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/cut-vertices.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.197217 -1.643680 3.364608 2.740497 -0.229750 1.188232 0.623731 -2.539664 2.675320 0.491208 -0.076797 0.526287 -2.100922 0.989685 -1.411578 1.480065 -2.296461 -1.982242 -1.050079 -2.059564 -1.395553 -1.821714 0.930406 0.521837 1.165437 0.157683 -1.652877 -0.259496 -2.498904 -1.456158 2.051302 -0.491221 1.263210 -0.460181 0.161313 -5.360150 2.403322 1.860522 -0.925574 -2.362925 0.686496 -1.519070 -0.154445 -0.762420 -0.642190 0.092719 -0.484321 1.065720 1.658174 0.483935 0.956695 1.131702 -0.062911 4.905769 -1.983262 2.011556 0.973257 0.373709 -0.620048 0.973054 0.545103 0.996032 1.309800 1.425086 -0.536053 -1.766751 -0.188983 -1.008257 -2.408092 2.245183 -0.072602 -0.883159 -1.702413 -0.672964 -2.039756 -0.746987 -1.586103 1.950118 3.466941 -2.336400 1.803086 0.322161 0.964933 -0.025605 1.370466 -0.269027 2.649614 0.694654 -0.983091 -0.392417 -1.810917 0.032882 0.238403 -0.354231 -1.313079 -3.351133 1.501806 -2.490741 -2.857759 0.969470 0.950236 -0.327403 -2.022749 -0.552342 1.294278 0.645918 -1.551765 -2.620385 -1.154934 1.313934 0.277167 -0.919750 0.381948 -0.867840 -0.241673 -1.307916 -2.811860 -0.293959 0.429969 -1.273996 -1.210426 2.318287 -1.243130 0.054008 -0.072287 0.790467 -0.910981 2.127813 -0.460945 1.459666 0.225161 0.552904 -2.126361 0.275229 0.857070 1.881379 -0.468913 0.240858 -0.912135 0.725716 -1.637367 0.448576 -0.736580 0.791716 1.493497 -0.837830 -1.757749 -0.688505 0.097296 -3.170072 0.522782 -1.962602 -1.186008 0.615855 1.948612 2.152849 1.489769 2.768998 -1.843506 1.489487 -0.194032 -0.086320 1.739145 -0.143766 1.356504 -1.216707 -2.328645 0.997572 0.466114 0.597916 0.369722 -0.565086 -0.254737 -2.032436 -1.124676 0.396274 1.106529 -0.386679 1.883177 1.526428 2.239478 -3.204871 1.120996 1.267961 -0.796275 0.705542 -0.440833 -2.827540 0.862895 0.702615 0.094753 2.334760 -0.416500 -1.322559 0.747176 -0.442620 1.108414 -1.686630 0.276497 -1.786543 -0.858070 -2.016784 0.361141 -0.807905 -0.761226 -1.005519 -1.126979 2.773429 -2.420797 -2.140816 3.308420 -0.400394 1.294080 -3.256957 2.248360 -1.241831 1.805442 -0.789560 0.050177 -0.300075 0.791822 -1.402116 0.748312 1.153893 -1.199414 1.055220 3.431007 0.655780 0.785393 0.170475 2.214055 -0.528886 1.146736 -1.490925 2.872177 -0.349064 -1.489373 0.242937 -1.159777 0.271539 -1.191528 0.842336 2.258762 1.965283 0.873309 1.287501 1.737226 1.752639 -1.261497 1.673310 -0.226871 0.609366 -1.123742 -0.057018 0.529803 0.593589 -0.959633 1.193807 -2.742619 -3.366562 -2.716159 -2.554427 0.330703 -0.703596 0.376562 -0.555365 -0.345643 -2.590215 -1.805092 1.330081 -1.260971 1.886835 1.520559 1.392458 1.830891 3.037335 -1.593817 0.203397 0.291985 0.234142 -0.465140 -0.885024 -1.737374 2.087346 -1.277984 0.993179 2.480806 -0.370037 1.046807 -0.035265 1.665858 -1.452587 3.218765 1.185927 -0.850880 1.992754 1.747601 3.026402 0.994867 -1.449368 -PE-benchmarks/cut-vertices.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.592846 -4.006603 8.322105 6.783790 0.043351 2.724177 2.552574 -6.490439 6.081957 2.177849 0.110406 1.324856 -5.582094 2.390964 -3.832957 4.135394 -4.606801 -4.859233 -2.893483 -5.163775 -2.961563 -4.283977 3.518078 0.927603 3.463395 -0.282391 -4.013577 -1.768087 -6.458651 -5.317348 4.745494 -0.807738 3.410700 -1.635077 -0.653878 -12.040709 5.956545 5.247331 -2.508413 -5.607268 2.666387 -2.773742 -1.312912 -0.551397 -1.315652 0.466267 -1.466058 1.858131 3.873695 2.212529 3.621099 3.133894 0.836187 11.069281 -4.847330 5.172950 2.537917 1.406843 -1.481138 2.646659 1.090671 2.816613 3.020945 3.393971 -0.654402 -4.190348 -0.593841 -1.975956 -6.513299 5.334166 -0.866291 -2.671659 -3.868565 -1.524834 -4.144711 -1.261170 -2.625270 3.963291 8.336340 -5.217819 4.467757 0.603046 1.150728 -1.227073 2.234617 -0.867111 4.802182 1.788995 -1.590902 -1.849107 -3.941923 0.165302 0.277373 0.372850 -3.642380 -7.537312 4.665333 -4.853569 -7.016052 2.110976 2.490900 -1.527831 -5.227839 -0.935925 2.275899 1.806360 -3.657631 -6.406589 -3.301204 3.319180 1.363711 -2.348819 0.217892 -2.056399 -1.069275 -2.418726 -6.787515 -0.592683 0.697240 -3.572702 -3.672688 4.884956 -2.714468 0.536409 0.101958 2.617831 -2.298090 4.485896 -0.938916 4.118773 1.765139 1.805071 -4.987030 0.171494 2.506289 4.418312 -1.382249 0.898351 -2.732097 1.589193 -3.508952 1.889529 -1.840995 1.726366 4.708987 -2.132755 -4.314421 -1.031580 0.804930 -7.815237 1.466778 -5.052635 -2.354047 0.971575 4.375901 3.790980 3.449911 7.826887 -4.643015 3.445434 0.226303 -0.775893 3.746337 -0.867368 3.182507 -2.830747 -6.512558 2.305454 1.636096 1.140012 0.578084 -0.435665 -0.826987 -5.177888 -3.118352 0.723040 1.880586 -1.853593 4.094907 3.760470 6.352292 -6.840039 2.450705 3.161754 -2.415056 1.844932 -1.145705 -7.566939 1.739413 1.488070 0.555164 6.320464 -0.695701 -3.210436 2.780436 -1.646667 2.309293 -4.187586 1.782742 -4.837721 -1.972146 -5.018615 -0.156224 -1.074426 -1.912828 -1.751825 -1.932415 6.657524 -4.646216 -5.300054 7.620846 -0.740541 1.703497 -8.548789 6.422035 -2.720213 3.326154 -1.790268 0.273420 -0.731088 2.368439 -3.377641 1.048985 2.440810 -2.834055 3.487168 9.420082 1.157966 1.141772 0.196972 5.398776 -1.506668 3.032384 -3.969603 7.366027 -0.808576 -4.325735 0.399235 -2.599075 0.392256 -3.885885 1.385072 5.424056 4.567010 1.104575 2.780152 3.849352 5.183498 -2.971282 5.309390 0.113827 1.887014 -2.461789 -0.059750 1.734064 1.226552 -2.505960 3.904236 -6.502864 -8.072828 -5.374468 -7.618133 1.142893 -1.832972 1.963694 -1.935055 -1.173254 -6.408654 -4.971564 2.980884 -2.964596 4.622980 4.341374 3.825691 4.326740 7.357578 -3.696038 1.578754 -0.156560 1.076288 -1.076181 -3.305013 -2.711156 4.303314 -2.357926 1.957515 5.474638 -0.199011 2.974050 -1.037928 3.598524 -3.665389 8.030932 2.589041 -1.125931 5.836319 3.435246 7.385593 1.684032 -3.137071 -PE-benchmarks/cut-vertices.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/cut-vertices.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/cut-vertices.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/cut-vertices.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/cut-vertices.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/cut-vertices.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/box-stacking.cpp__min(int, int) = -0.876546 -1.017857 0.920345 0.733667 0.540435 0.634457 0.349080 0.054689 0.575886 1.075504 -0.482711 0.647732 -0.617249 -0.310051 0.309333 0.261322 -0.099229 -0.917265 0.427901 0.094490 -0.105550 -0.629093 -0.480552 0.505801 0.207840 -0.060184 -0.421066 0.010796 -1.198241 -1.359901 -0.239417 -0.154084 0.488102 -0.232424 0.288753 -1.258429 0.546521 0.885417 0.013814 -1.278893 -0.001211 -0.244405 0.007511 0.385625 0.224524 0.685832 0.871230 -0.018112 -0.083856 0.394849 0.250419 -0.505317 0.157575 0.882624 0.243397 0.901965 0.910628 -0.124758 0.099807 0.182085 0.262892 -0.534486 0.628328 0.627047 -0.593548 0.099238 0.142365 0.113560 -0.776396 0.257336 0.236275 -0.468616 -0.258291 -0.340096 -0.356253 -0.197586 0.334992 0.086172 1.315188 -0.224730 1.378366 0.650891 1.120715 -0.051378 0.672135 -0.228331 0.757463 0.301083 -0.894862 -0.117378 -0.707972 -0.652606 -0.317413 0.977627 -0.309534 0.627693 0.320387 -0.433120 -0.944672 0.597427 -0.342818 0.136083 -1.137775 0.227690 0.819613 0.648739 -0.156808 -0.867718 -0.865081 0.311885 -0.820306 -0.418219 -0.060853 -0.252549 -0.374887 0.158720 -0.645066 -0.389715 0.773221 -0.795804 -0.598152 0.698699 -0.522503 0.869122 -0.148464 0.081978 0.124101 0.262258 0.723168 0.203108 0.404337 -0.703788 -1.667565 -0.031233 0.014589 0.327468 -0.324789 -0.009506 0.346830 0.238617 0.142104 0.474740 -0.480003 0.882375 1.111386 -0.054432 -0.570777 -0.911159 0.156410 -0.454639 0.296768 -0.509938 0.027176 -0.024485 0.622288 -0.041281 0.013055 1.270420 -0.760157 0.735198 -0.185199 0.131808 -0.063869 -0.200309 0.284458 -0.472218 -0.536370 0.379917 1.116387 0.049888 0.392223 -0.602545 0.067598 -0.375680 -0.889321 0.540617 0.071221 0.250507 0.693322 0.238863 1.559131 -0.910453 -0.124031 -0.179867 0.079236 0.033529 -0.114321 -0.959997 0.388546 0.075028 0.412720 0.982195 0.040215 -0.691371 0.320857 0.071276 0.022864 -0.520505 0.839346 -0.761240 0.170610 -0.025514 -0.275242 -0.611615 -0.353060 -0.423655 0.186350 1.005685 0.233040 -1.368476 0.218383 -0.342689 0.373080 -1.479810 0.475673 -0.457548 0.531062 -0.488313 -0.067321 -0.243542 0.393334 0.394941 0.028747 0.404037 -0.434995 0.630826 0.692641 0.043356 0.173270 0.498106 0.215413 0.055145 -0.453214 -0.197265 0.217410 -0.076804 0.032518 -0.209420 -0.287772 0.850699 0.432973 -0.453469 -0.190238 0.800423 -0.683796 0.074924 0.703494 -0.251559 -0.481173 0.201267 0.179463 1.137624 -0.390972 -0.170233 -0.688082 0.085727 0.113834 0.326521 -0.948621 -0.483225 -0.046913 -1.389273 -0.550010 0.599495 0.269538 0.402483 0.205758 -0.935223 -0.347364 0.685197 -0.071232 1.194389 0.252868 0.552567 0.763083 0.371555 -0.050175 -0.623348 -0.339203 -0.288030 -0.823880 -0.346608 -0.009102 0.162929 -0.518892 0.797086 0.211504 -0.005110 0.085286 -0.063716 0.431694 -0.601983 1.131673 0.738474 -0.590292 0.081315 0.116269 1.402078 -1.105141 -0.616264 -PE-benchmarks/box-stacking.cpp__max(int, int) = -0.876546 -1.017857 0.920345 0.733667 0.540435 0.634457 0.349080 0.054689 0.575886 1.075504 -0.482711 0.647732 -0.617249 -0.310051 0.309333 0.261322 -0.099229 -0.917265 0.427901 0.094490 -0.105550 -0.629093 -0.480552 0.505801 0.207840 -0.060184 -0.421066 0.010796 -1.198241 -1.359901 -0.239417 -0.154084 0.488102 -0.232424 0.288753 -1.258429 0.546521 0.885417 0.013814 -1.278893 -0.001211 -0.244405 0.007511 0.385625 0.224524 0.685832 0.871230 -0.018112 -0.083856 0.394849 0.250419 -0.505317 0.157575 0.882624 0.243397 0.901965 0.910628 -0.124758 0.099807 0.182085 0.262892 -0.534486 0.628328 0.627047 -0.593548 0.099238 0.142365 0.113560 -0.776396 0.257336 0.236275 -0.468616 -0.258291 -0.340096 -0.356253 -0.197586 0.334992 0.086172 1.315188 -0.224730 1.378366 0.650891 1.120715 -0.051378 0.672135 -0.228331 0.757463 0.301083 -0.894862 -0.117378 -0.707972 -0.652606 -0.317413 0.977627 -0.309534 0.627693 0.320387 -0.433120 -0.944672 0.597427 -0.342818 0.136083 -1.137775 0.227690 0.819613 0.648739 -0.156808 -0.867718 -0.865081 0.311885 -0.820306 -0.418219 -0.060853 -0.252549 -0.374887 0.158720 -0.645066 -0.389715 0.773221 -0.795804 -0.598152 0.698699 -0.522503 0.869122 -0.148464 0.081978 0.124101 0.262258 0.723168 0.203108 0.404337 -0.703788 -1.667565 -0.031233 0.014589 0.327468 -0.324789 -0.009506 0.346830 0.238617 0.142104 0.474740 -0.480003 0.882375 1.111386 -0.054432 -0.570777 -0.911159 0.156410 -0.454639 0.296768 -0.509938 0.027176 -0.024485 0.622288 -0.041281 0.013055 1.270420 -0.760157 0.735198 -0.185199 0.131808 -0.063869 -0.200309 0.284458 -0.472218 -0.536370 0.379917 1.116387 0.049888 0.392223 -0.602545 0.067598 -0.375680 -0.889321 0.540617 0.071221 0.250507 0.693322 0.238863 1.559131 -0.910453 -0.124031 -0.179867 0.079236 0.033529 -0.114321 -0.959997 0.388546 0.075028 0.412720 0.982195 0.040215 -0.691371 0.320857 0.071276 0.022864 -0.520505 0.839346 -0.761240 0.170610 -0.025514 -0.275242 -0.611615 -0.353060 -0.423655 0.186350 1.005685 0.233040 -1.368476 0.218383 -0.342689 0.373080 -1.479810 0.475673 -0.457548 0.531062 -0.488313 -0.067321 -0.243542 0.393334 0.394941 0.028747 0.404037 -0.434995 0.630826 0.692641 0.043356 0.173270 0.498106 0.215413 0.055145 -0.453214 -0.197265 0.217410 -0.076804 0.032518 -0.209420 -0.287772 0.850699 0.432973 -0.453469 -0.190238 0.800423 -0.683796 0.074924 0.703494 -0.251559 -0.481173 0.201267 0.179463 1.137624 -0.390972 -0.170233 -0.688082 0.085727 0.113834 0.326521 -0.948621 -0.483225 -0.046913 -1.389273 -0.550010 0.599495 0.269538 0.402483 0.205758 -0.935223 -0.347364 0.685197 -0.071232 1.194389 0.252868 0.552567 0.763083 0.371555 -0.050175 -0.623348 -0.339203 -0.288030 -0.823880 -0.346608 -0.009102 0.162929 -0.518892 0.797086 0.211504 -0.005110 0.085286 -0.063716 0.431694 -0.601983 1.131673 0.738474 -0.590292 0.081315 0.116269 1.402078 -1.105141 -0.616264 -PE-benchmarks/box-stacking.cpp__compare(void const*, void const*) = -0.458493 -1.595503 2.806734 2.293214 0.042798 1.369423 -0.045537 -1.828613 1.262653 1.629363 -0.317641 1.409476 -0.565705 0.222674 -1.191840 1.228965 -1.124040 -1.039151 -0.619739 -1.537852 -0.869183 -0.842005 -0.741552 1.005122 0.669483 -0.287086 -1.274302 0.219971 -1.900629 -3.107476 -0.412527 -0.021101 0.670857 -1.971818 0.852841 -3.155828 1.998761 2.444994 -0.509347 -2.291929 0.303206 -0.463374 -0.429340 0.963412 -1.021104 0.690889 -0.145347 -0.334799 0.409536 1.010287 1.341033 1.366667 1.530503 3.433391 0.117323 2.045430 1.234318 0.111278 0.212742 0.597759 0.593420 0.395120 0.697721 0.191341 0.517819 -1.272326 -0.656079 0.753107 -0.906930 0.954551 -0.258739 -1.992773 -0.772075 -0.931128 -2.061018 -0.791484 -1.538042 0.674727 2.262569 -1.187543 1.570146 0.824922 0.744409 0.404440 1.652394 -0.236443 2.066257 0.874790 -0.476545 0.791721 0.330476 -0.125906 0.635161 0.203702 -2.064501 -2.982602 1.412290 -3.002628 -2.247607 1.796474 0.761983 -0.776574 -1.010722 -1.246422 0.839109 0.432524 -1.336632 -1.649238 -0.860574 1.564318 0.236357 -1.084201 0.338645 -0.877841 0.725324 0.813104 -1.681637 0.572788 1.371533 -0.321429 -0.918791 1.975392 0.670934 0.337358 -0.496938 0.582158 -0.583322 1.084899 -0.195506 1.544014 -1.802055 0.990687 -2.012955 0.804537 0.220274 -2.095107 -0.624321 -0.231120 -0.085132 1.054538 -0.079995 2.209047 -1.374060 1.047595 1.915500 0.455173 -1.091296 -1.417054 -0.925457 -1.749253 0.028193 -0.677043 -2.235621 0.031936 1.460468 0.808027 0.722853 0.238962 -0.289904 0.062221 -0.224583 -0.063937 0.895739 -1.570485 0.661311 -0.760873 -1.672080 1.208456 1.376830 1.233074 0.642517 -0.263639 0.054603 -0.222640 -0.176711 0.795558 1.095580 0.200629 2.054609 1.651736 2.982623 -0.761478 -0.068222 0.058638 -1.052406 0.600711 -0.953207 -1.898823 -0.126346 0.904998 0.531012 2.628669 -0.444630 0.079981 0.988550 -0.221413 0.668436 -1.330804 1.003468 -1.432876 -0.147630 -0.656869 -0.234576 -1.210077 -0.007109 -1.574864 -1.759514 2.255690 -2.766365 -1.324847 2.168847 -0.720352 0.139441 -1.811142 1.295083 -0.747948 1.570521 -0.161168 -0.004072 -0.155741 0.541709 -1.172330 0.875512 1.029618 -1.568217 0.763490 1.877372 0.289028 0.157424 -0.178189 1.279173 -1.213765 0.642150 -1.641991 2.152586 -0.438056 -0.453460 -0.406638 -0.650321 0.026679 -0.668339 0.498279 -0.169033 0.227907 -0.196356 -0.712158 1.586120 0.662413 -1.020221 1.517801 -0.165600 0.176262 -1.297658 -0.324188 -0.109670 0.474602 0.099980 0.181478 -2.316832 -0.450099 -3.722071 -1.141027 0.078550 0.268005 0.216615 -0.087398 -0.661578 -1.690891 -2.075060 3.487239 -0.714411 -0.282310 1.556748 1.101628 1.698065 1.657513 0.326101 0.612628 -1.336404 -0.730220 -0.256520 -0.963794 -0.408089 1.573453 -0.672611 1.022336 1.313266 -0.140323 1.470955 1.240663 -0.140543 -1.248744 1.929774 0.887054 -0.729846 0.528326 1.710955 2.025105 -1.543067 -1.210554 -PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -14.391020 -26.851041 26.873403 25.147910 2.048738 18.410648 5.980579 -11.923612 7.458679 21.602677 -8.252426 19.301754 -12.539397 -5.155396 -3.592138 7.063425 -8.273342 -13.223312 -1.095388 -8.168134 -5.634561 -11.999663 -15.731762 22.450568 5.855447 0.638841 -9.885604 2.447330 -26.571044 -36.342630 -6.274540 0.864280 12.275228 -5.840681 7.375431 -41.702790 17.309523 31.511400 -2.531109 -26.277058 1.854541 -6.434930 -9.828565 9.216627 -12.238946 8.608849 5.645066 -6.493316 -3.777328 6.826976 10.555085 1.887376 20.659178 35.979606 7.762271 28.149504 27.073341 -0.801536 6.914858 3.678520 6.982627 -2.810473 13.287437 8.241396 -1.913794 -6.166592 -2.790925 5.284093 -13.867841 5.328690 2.125981 -20.210122 -6.074277 -11.159211 -17.368044 -8.544309 -7.421423 2.899864 30.838431 -11.957084 34.438639 14.671430 14.308210 -0.505079 21.769857 -2.770317 22.590514 10.013477 -13.974215 7.021309 -2.774627 -7.550084 4.674269 21.934401 -22.600997 -5.378301 15.784751 -24.437742 -28.616894 20.232197 -0.580866 -9.259718 -14.586454 -7.540196 7.014042 4.401399 -11.154531 -23.128705 -19.567977 16.742175 -7.881255 -15.526693 -7.392785 2.156409 3.437954 9.620528 -18.829595 2.591203 20.924768 -12.340907 -11.575277 20.370430 3.861364 15.433404 -5.955823 2.637785 -1.601235 7.247818 5.098570 10.353222 -4.995589 -2.049416 -30.105363 0.538582 3.584387 -9.505092 -11.795068 -7.120727 10.978632 11.907084 10.839730 25.037727 -9.945953 23.313176 17.542478 5.523377 -10.170039 -23.848963 -9.295718 -18.154595 2.693459 -11.985832 -16.906145 4.610287 16.805140 -1.621363 -0.197061 11.632782 -7.077741 15.053257 0.179994 0.491730 2.138181 -15.492995 6.004703 -11.881898 -20.355781 15.449890 20.454415 11.797763 6.902443 -4.778566 -0.378491 -2.329312 -17.023245 13.081604 1.655456 0.941258 25.241704 15.626862 57.917552 -14.639622 3.660639 -7.003157 -8.055149 5.843683 -7.647767 -23.457970 3.305583 6.835017 2.777525 33.052563 -1.694457 -7.525149 7.743651 -1.985357 1.689266 -18.577652 26.912004 -17.245161 0.699718 -5.716729 -8.671045 -10.327470 -8.184543 -16.530485 -5.068260 28.846315 -28.537402 -21.066519 14.519505 0.327203 2.976430 -30.225295 25.302526 -10.114452 19.436519 -9.845190 -11.703408 0.381135 9.237493 -3.244920 7.010641 12.488968 -20.749924 10.935444 20.312607 0.925004 5.226998 4.900439 8.627353 -7.317841 -3.059503 -18.080474 17.787641 2.456779 -6.878969 -10.582681 -10.066465 12.551129 1.029869 -1.747004 -3.061802 15.512072 -9.643467 -11.023411 19.820694 -1.030970 -11.051175 10.832615 1.905424 13.539008 -13.752224 -5.007684 -10.462092 3.374694 6.553270 7.714753 -27.314748 -5.936689 -25.003257 -16.717414 -9.673821 12.778997 12.023796 7.543445 -1.731011 -28.541988 -20.776435 33.902688 -8.875765 6.047139 16.394909 19.542872 20.554181 11.260885 12.588531 -3.291509 -13.577085 -0.373609 -10.116091 -6.043266 -1.094397 9.848765 -10.604379 19.855210 8.465802 3.186497 14.861849 8.236511 7.115274 -15.595730 28.213240 13.072913 -17.422335 3.906708 18.003203 16.826427 -27.536165 -14.986381 -PE-benchmarks/box-stacking.cpp__main = -2.777208 -6.148850 6.540795 5.966244 0.181059 3.945537 1.453167 -2.684542 2.007051 4.203502 -2.051104 4.327399 -3.118894 -0.814562 -1.133042 1.771288 -2.565410 -3.299239 -0.234551 -1.796619 -1.320926 -2.779957 -3.021806 4.885991 1.611490 0.802861 -2.366806 0.255477 -6.082660 -7.456734 -0.750526 -0.056727 2.908995 -0.716871 1.638760 -9.795580 3.947220 6.896654 -0.725038 -6.285458 0.618370 -1.711642 -2.028405 1.297581 -2.630926 1.872663 1.380071 -0.553580 -0.603775 1.615522 1.774209 0.432685 4.378513 8.480478 1.436198 6.174682 6.210750 -0.073678 1.413100 0.626784 1.761156 -0.579251 2.958630 2.032035 -0.505875 -1.695109 -0.913786 0.491222 -3.294936 1.490081 0.520630 -3.871248 -1.839792 -2.454142 -4.081467 -1.779374 -2.401402 1.400976 7.313371 -3.283933 7.654294 3.186817 3.396752 -0.121034 4.613436 -0.389422 4.852948 2.402473 -3.044694 1.405260 -1.293420 -1.792248 1.035682 3.909279 -4.942513 -2.286690 3.688120 -5.771583 -6.511356 4.414223 0.079225 -2.013399 -2.827829 -1.506766 1.650655 1.425593 -2.746645 -5.175767 -4.058760 3.470026 -1.473147 -3.387376 -1.343737 0.786553 0.567880 1.506875 -4.683156 0.578726 4.516471 -2.940647 -2.021322 4.661658 0.589146 3.407968 -1.343967 0.503782 -0.485422 2.373481 1.349994 2.245554 -0.822427 -0.341325 -6.260163 0.507868 1.143169 -1.138688 -2.797895 -1.389918 2.247053 2.678079 2.121253 4.793643 -2.105919 4.860157 3.781359 0.715769 -2.690608 -5.483150 -2.171779 -4.423928 0.611494 -2.953577 -3.530822 1.515701 3.972047 0.232554 0.322199 3.226300 -2.082258 3.310106 -0.001261 0.168193 0.643649 -2.722526 1.533773 -2.711452 -4.651393 3.528055 4.278679 2.622230 1.567748 -1.156572 0.065361 -1.048067 -3.666047 3.080200 0.846716 0.001767 5.719069 3.559467 11.539351 -3.430275 0.694839 -1.211223 -1.814735 1.150176 -1.471695 -5.606569 1.205425 1.392650 0.739061 7.106394 -0.387348 -1.778958 2.001182 -0.579007 0.415232 -4.090234 5.498714 -3.940494 -0.207602 -1.737466 -1.196713 -2.324679 -1.895740 -3.719017 -1.309209 6.732807 -6.487285 -4.575087 3.323334 0.056855 1.066982 -6.885878 5.642042 -2.434562 4.645492 -1.851764 -2.528793 0.173353 1.551565 -0.964906 1.191245 2.952564 -4.348602 2.251062 4.701482 0.461072 0.953811 1.279336 2.306202 -1.649123 -0.287432 -3.915192 3.951766 0.331036 -1.754691 -1.958879 -2.269510 2.662843 0.018003 -0.164103 0.365219 3.450237 -1.377554 -1.544730 4.296019 0.231158 -2.736218 2.321583 0.272325 3.361607 -3.201502 -1.090153 -2.327021 1.057729 1.139739 1.894328 -6.327853 -2.385368 -6.045275 -4.000368 -2.124905 2.091853 2.641912 1.298527 -0.399451 -6.481545 -4.774044 6.997106 -2.143207 1.641766 3.868444 4.162854 4.818012 2.836046 2.065677 -0.822978 -2.378639 0.329938 -2.113062 -1.132930 -0.867152 2.381839 -2.653154 4.138324 2.696101 0.378637 3.235069 1.525587 2.331943 -3.557090 6.794599 3.102579 -4.334265 1.098195 4.234446 4.046896 -5.257199 -3.566560 -PE-benchmarks/shortest-common-supersequence.cpp__superSeq(char*, char*, int, int) = -7.809647 -13.398690 10.135027 9.700971 4.263874 9.207767 6.536786 -2.582143 2.542329 10.251172 -3.897006 8.689639 -5.723781 -5.538105 -1.049404 0.106354 0.623202 -7.664052 2.733041 -0.851949 1.151645 -6.115497 -9.070743 12.254661 1.154744 -3.534316 -2.311078 -0.756402 -17.267297 -11.402107 -3.354191 0.286266 4.989693 -1.227954 3.835368 -9.587247 5.316526 14.324957 0.413706 -11.642991 -0.502433 -2.410905 -3.151392 5.420094 -2.272366 5.138030 4.960844 -3.361449 -3.440725 2.824185 5.326109 -2.046417 8.375941 9.640265 4.369059 12.409946 10.875396 -0.058094 6.790243 1.219944 2.749486 -3.463914 6.267656 4.272138 -2.774704 0.212661 -1.765045 4.146166 -6.273299 -0.292381 3.509005 -6.259139 -3.410756 -1.989992 -7.479483 -3.903683 -3.314748 -2.077215 13.234318 -2.022281 17.818425 9.179611 10.322076 -1.814292 10.480340 -0.497788 8.399839 3.763716 -8.145110 3.884757 -9.123189 -1.526596 -1.046719 9.121560 -9.919927 2.317557 5.361530 -8.560790 -12.248680 9.038375 -2.917452 -3.258324 -4.156869 1.010421 3.264163 2.560743 -4.773749 -10.631256 -8.543578 7.718089 -6.314542 -6.501808 -1.550971 -0.444857 1.998240 1.872057 -5.315790 -0.233403 10.659233 -6.510754 -4.831278 9.226594 -0.100875 9.151833 -2.221062 -0.676384 0.306216 -0.230253 5.653539 1.946480 -0.747453 -8.451429 -17.825004 0.154848 -0.167786 -2.293073 -4.951710 -2.587080 6.788885 5.511809 8.930668 11.854364 -1.229141 8.874421 4.397082 1.062765 -2.127490 -11.807561 -2.081651 -3.442489 2.068493 -2.811866 -5.458924 -1.756909 6.868693 -2.292641 -1.017656 3.273397 -0.573151 7.432122 -0.079031 0.967645 -1.404218 -6.961234 2.143005 -3.967249 -7.800389 6.255747 10.842802 5.065026 3.759090 -2.929910 -0.223407 0.223663 -7.243291 2.038448 -1.052326 1.115993 12.425348 5.742760 19.628120 -4.646550 -0.081021 -4.691695 -1.299933 2.518703 -3.516764 -9.544610 2.892904 2.173894 -0.850116 13.088932 -0.985780 -3.205694 4.706280 -0.089999 0.615911 -8.731346 12.364289 -7.366723 -0.662077 -2.222729 -3.010146 -5.995118 -5.057500 -7.974944 -1.217940 11.678548 -5.455657 -9.152431 1.194224 0.296550 -0.342196 -11.439883 9.279188 -4.146729 6.972931 -3.098109 -4.641459 -0.614860 7.199008 1.013737 -0.221961 5.189893 -11.009781 8.250534 5.728643 0.148423 1.539201 4.309404 1.788864 -2.426024 -4.868064 -7.821350 5.116150 0.875009 -2.352532 -2.749474 -4.266567 8.715633 3.479334 -3.016814 -2.947597 7.616120 -6.153796 -5.688078 7.626383 -3.720001 -4.086132 0.759186 1.863378 7.306406 -5.272871 -1.405062 -8.078585 -1.765519 4.062104 2.414466 -11.350466 -0.803561 -4.234002 -7.759386 -3.491913 4.566141 4.340089 7.061022 1.249865 -14.507834 -8.633438 11.073303 -3.130268 0.583281 6.617729 7.587246 9.198348 2.909328 5.572762 -2.720782 -4.536636 0.059183 -6.554121 -3.004481 0.881232 2.477326 -5.654377 10.991684 1.650118 1.444634 4.746738 1.713517 3.743707 -7.140924 13.177135 6.873150 -8.581872 -0.135100 4.903069 9.636249 -14.651990 -5.995608 -PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/shortest-common-supersequence.cpp__main = -0.513850 -3.944690 4.597689 4.093393 -0.312794 2.394343 0.970278 -1.461141 1.207779 1.143939 -1.710434 2.827374 -2.048172 -0.524665 -1.061905 0.408043 -2.323443 -2.150563 -0.043182 -0.616951 -0.174214 -1.705480 -1.573713 3.803874 1.183181 2.184924 -1.303568 -0.331176 -4.424922 -2.009066 0.436724 -0.071993 1.914580 1.834651 1.509749 -4.156220 1.870048 4.071960 -0.291661 -4.279005 0.523816 -1.107454 -1.086504 -0.061129 -1.126364 1.146690 0.875204 1.042675 -0.490344 0.685694 -0.344686 0.049467 2.900664 4.055149 1.123792 3.436473 3.849318 0.026463 1.770265 -0.311482 1.187160 -0.279361 1.586807 1.301741 -0.438401 -1.327824 -1.042788 -0.194925 -1.903224 1.032245 0.765866 -0.984470 -1.918995 -1.408741 -2.787365 -0.553834 -2.372923 1.991311 4.543224 -2.152354 4.402022 2.178972 2.403443 -0.497363 2.554256 0.198853 2.399584 1.655682 -1.479011 0.982629 -3.321958 -1.087185 0.460272 -0.000763 -3.282231 -2.364306 2.066458 -4.903506 -3.956817 2.359850 0.267547 -1.489102 0.353190 -0.068346 0.901760 1.180775 -1.486493 -2.699360 -1.239570 2.063583 -0.828466 -1.861805 -0.586215 1.253981 0.507907 0.153624 -2.787428 0.795199 2.586030 -1.568588 0.380335 2.948825 0.363125 2.099456 -0.869519 -0.063091 -0.259264 1.673473 1.440350 0.663976 0.114778 -0.889477 -1.631002 1.600991 0.660247 0.113343 -2.266327 -0.796386 1.410299 1.700248 1.743886 1.901032 -0.705149 1.870784 0.821889 -0.500855 -1.625306 -3.787996 -2.081746 -2.674369 0.025839 -1.256508 -2.064080 1.021740 2.390913 1.023466 0.500496 1.111555 -1.212303 1.138903 0.371468 0.507170 0.180492 -0.252812 0.827515 -1.482513 -2.733988 2.102663 1.860375 1.516069 0.958357 -0.487445 -0.039527 -0.741258 -1.476591 1.835367 1.080636 0.351646 4.045555 2.451932 3.597531 -1.120377 -0.110358 -0.561926 -1.015725 0.280216 -0.665186 -3.523075 1.603380 0.533090 0.804395 3.982895 -0.468003 -0.316501 1.756250 -0.117379 0.320138 -2.369735 2.712172 -2.365130 -0.903489 -1.779476 0.538365 -1.522861 -1.345544 -2.734033 -1.184130 4.312617 -3.704316 -1.971892 1.632150 0.033163 0.867453 -3.252391 2.305535 -1.496558 3.146309 0.203063 -1.605097 0.181111 -0.608114 -1.111783 -0.361169 1.832117 -2.586423 1.322353 1.827839 0.582007 -0.086060 1.144834 1.255759 -1.155691 0.272712 -2.576679 1.968988 0.037220 -0.998142 -0.423415 -1.199305 1.579797 -0.100552 -0.199515 1.274218 1.797151 0.709737 -0.189768 1.887041 0.238974 -1.867807 0.692100 -0.042317 1.862512 -2.072572 -0.746376 -1.674307 0.518242 0.632725 1.152797 -4.063513 -2.493422 -3.814177 -2.147922 -1.176885 -0.934630 1.454874 1.038910 -0.333996 -4.039393 -3.439905 2.385981 -1.208785 0.433673 2.519176 1.872537 3.187901 1.834994 0.421014 -0.214712 -0.216770 0.998279 -1.175473 -0.296302 -1.657996 1.771775 -1.298205 2.273452 2.941303 -0.354020 2.091368 0.040070 2.091045 -2.380785 4.709244 2.160487 -3.803667 0.261572 1.950802 2.363472 -2.106127 -2.464538 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -5.034245 -7.742612 6.752975 6.318249 3.544252 5.316010 3.838067 -2.844154 6.466043 8.182072 -2.469042 4.035609 -4.690749 -1.562041 1.787264 2.660738 -1.356941 -5.939053 2.067998 -1.432976 -1.125310 -6.292218 -2.834343 3.577991 0.962947 -2.237522 -2.487407 0.030343 -8.989890 -9.374423 0.971742 -1.390932 3.668267 -2.504425 1.125736 -14.790009 5.525445 6.859052 -0.677022 -9.584690 -0.365060 -2.814696 -0.818984 2.926536 1.169155 3.419272 3.444828 1.131240 0.114311 2.799855 3.440287 -1.623313 2.129548 10.768936 -0.712474 7.813362 6.704408 -0.430380 0.285388 2.550759 2.165832 -1.486767 5.753950 6.149759 -3.303546 -0.754541 0.668344 0.761266 -7.861236 2.315534 1.865912 -3.885822 -2.531941 -1.466774 -2.238232 -2.148845 -1.579017 0.767769 11.176752 -2.145141 11.567918 4.620475 7.953093 -0.445779 6.220659 -1.294861 7.555178 2.384197 -7.589916 -0.863611 -6.334036 -3.927486 -0.593650 5.249583 -3.068110 1.616586 2.246507 -1.709834 -7.643723 4.923959 -1.554577 0.472572 -8.688041 -0.315475 5.767472 3.214701 -2.528437 -8.490493 -7.698356 3.652899 -5.574525 -4.219567 -1.152923 -2.456662 -1.997309 -0.342125 -5.054496 -2.999205 5.922283 -5.540876 -5.639464 6.025154 -4.425161 4.652434 -1.431387 0.378124 0.053526 1.370893 2.633158 2.690100 4.323576 -5.202023 -14.416992 0.814434 0.584436 3.636686 -1.443686 -0.331910 2.352371 2.586433 0.868172 5.397381 -1.888577 6.156961 7.074057 0.352859 -3.190734 -6.236745 2.895342 -4.512202 3.501779 -4.532242 -0.422826 -0.937749 5.825132 0.029862 1.178303 6.621080 -6.578385 7.453758 -1.580801 1.999107 0.978040 -1.040958 2.497553 -3.550886 -5.069009 2.951715 7.916749 0.204040 2.423745 -3.956818 -0.001248 -2.793214 -6.454157 2.326800 -0.017722 0.521494 5.935539 2.294049 17.406169 -8.888964 1.108913 -0.536764 -0.028488 1.570170 -1.834022 -7.506908 2.732954 1.218148 2.234073 8.547619 -0.301846 -5.452482 0.791040 0.620853 0.316515 -4.394642 6.351967 -5.706266 -1.199573 -0.889877 -1.748140 -4.122551 -3.718535 -3.540831 2.147658 8.021959 0.114273 -9.411543 4.112087 -4.445112 1.477490 -11.475005 8.938154 -4.128298 2.606331 -5.472063 -1.838994 -1.890756 5.430269 0.466992 1.473684 3.843775 -4.773330 5.770605 7.706038 0.827981 2.416499 2.577761 2.100444 -0.227291 -3.063010 -3.495894 4.677515 -0.471319 -0.450735 -2.229561 -3.581727 7.296505 1.425943 -2.296668 -0.012083 7.300664 -4.814815 0.015334 6.026481 -1.108442 -3.726147 3.553169 1.276461 5.999654 -2.591835 -0.490673 -3.822577 -0.868160 0.548845 3.518127 -7.315092 -3.040445 -0.742659 -8.062817 -3.085208 4.906535 2.371309 2.550151 1.999598 -10.150109 -3.001242 5.033518 -1.884680 4.758966 3.205450 5.204469 5.350056 3.911408 0.620173 -3.527966 -3.327550 -2.414602 -6.007805 -3.470401 0.245818 2.490310 -4.256326 6.661558 1.310357 0.895720 0.821153 -0.676509 3.903930 -3.682090 9.237856 5.263479 -2.740070 1.316560 2.156141 11.132839 -7.599088 -4.378288 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__findMaxSum(int (*) [5]) = -3.086358 -8.297019 9.791025 8.740112 0.940935 4.946765 3.864444 -4.534213 5.639317 3.206560 -3.272489 5.304887 -6.268927 -0.025803 -2.236107 2.269903 -5.524774 -6.583883 -0.506208 -2.106436 -0.914534 -6.006319 -1.027578 5.628792 2.881013 2.734936 -4.140024 -0.096355 -11.146644 -8.197475 3.481007 -0.615963 4.971764 0.255570 0.831950 -16.809136 6.308786 9.609742 -1.477521 -10.946425 2.285639 -4.282724 -3.091021 -0.650306 -1.691702 2.895815 1.288049 2.700991 0.403018 1.814600 0.562690 0.968046 2.484473 12.020008 -1.663902 8.428725 8.767246 0.690118 0.497968 0.970570 2.279755 0.669160 5.121425 5.948744 -3.251697 -3.237390 -0.373451 -1.493379 -8.200758 4.058326 1.428276 -3.038329 -4.493304 -1.920420 -6.079875 -0.706604 1.447499 3.792840 12.124120 -4.336615 11.122489 2.807811 5.460767 -1.467775 5.222628 -0.456701 6.514919 3.353993 -4.392184 -1.842931 -9.045292 -3.374380 0.384804 3.616394 -5.363758 -2.980735 4.442362 -7.677502 -8.941421 3.265441 0.293588 -2.942982 -5.551232 0.334529 3.987452 3.729870 -2.387287 -8.049873 -5.696845 5.232110 -3.145572 -4.375998 -1.399503 1.172546 -1.641887 -2.043223 -7.648098 -0.056099 5.350121 -4.526769 -2.605566 6.470328 -3.914782 3.621851 -1.641771 0.631617 -1.344812 3.891871 1.234944 2.091869 4.345144 -2.677440 -8.310255 0.483177 2.099915 6.813961 -4.752083 -1.282244 1.466920 2.982268 0.498752 2.560856 -2.834666 4.483365 5.155164 -1.903469 -4.340486 -7.122471 -0.630565 -7.810211 1.539910 -4.876845 -2.412760 2.388649 6.585500 1.798125 2.480841 9.063130 -6.909798 6.198360 0.681491 0.440501 2.056485 -0.630276 2.594025 -3.930250 -7.471631 4.935420 4.052259 2.456204 1.311622 -0.899113 -0.444218 -4.358067 -6.923822 4.383941 1.610613 0.993227 7.643170 4.783803 12.123870 -8.012136 1.796236 0.721612 -2.230745 1.215500 -1.241873 -8.839677 3.599439 1.630917 2.783978 10.818275 -0.360467 -4.759787 2.247115 0.388307 1.047807 -5.949728 6.670539 -6.182667 -1.549016 -4.233510 -1.542824 -2.294654 -4.146068 -5.359681 -1.337649 10.109757 -4.685840 -10.078405 5.575903 -2.146453 3.515655 -13.232098 7.040971 -4.408310 6.449153 -2.027156 -1.375207 0.068842 0.512189 -3.184934 0.825177 4.092943 -5.431734 4.810005 8.561780 1.872289 0.835587 1.523397 3.454078 -1.268985 0.601335 -5.594873 5.486063 -0.340877 -3.357966 -0.816776 -3.540426 4.743031 -0.862308 -0.474709 4.612555 7.145145 0.744462 2.471923 6.080634 2.627840 -4.499318 3.546953 0.580786 4.972154 -2.971231 -1.677335 -2.542994 1.515659 0.367409 4.514547 -8.956255 -8.509917 -5.883031 -11.577657 -1.065852 -0.938830 3.918668 1.162604 0.363069 -11.609505 -5.795736 4.666248 -2.814843 9.207958 5.436982 4.906314 6.019629 5.259529 -2.288274 -0.775577 -0.324398 2.204515 -4.133578 -2.715535 -3.442519 4.597230 -3.834450 5.187829 6.210609 -0.910859 3.761949 -2.062383 6.219481 -4.642551 12.344063 5.048603 -6.211695 2.652035 2.297188 8.937452 -3.399241 -5.401850 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = -0.288049 -2.079608 2.822739 2.497959 -0.011664 1.065061 0.867781 -1.254736 1.607593 0.586855 -0.926394 1.297968 -1.721892 0.346693 -0.756438 0.990297 -1.902253 -1.756237 -0.184127 -0.542928 -0.367122 -1.532674 0.230498 1.200712 1.001110 1.182398 -1.175186 -0.139755 -2.520464 -1.914044 1.149944 -0.389048 1.313016 0.566811 0.231658 -4.102312 1.748182 2.190567 -0.498979 -2.789997 0.657679 -1.077053 -0.648449 -0.657521 -0.400249 0.748500 0.345405 1.162066 0.406833 0.643528 -0.010056 0.224434 0.764090 3.076366 -0.593656 1.976151 2.100500 0.207578 0.118693 0.057883 0.734304 0.280411 1.194523 1.594192 -0.632514 -1.096205 -0.426941 -0.756832 -2.063254 1.296915 0.194456 -0.298672 -1.575557 -0.505416 -1.482472 -0.074444 -0.697835 1.449829 3.292195 -1.478500 2.581147 0.705459 1.348252 -0.431880 1.037933 0.010968 1.483773 0.978835 -1.033789 -0.380060 -2.090328 -0.934823 0.220022 0.256390 -1.284627 -1.488166 1.192152 -2.134689 -2.287413 0.814628 0.320123 -0.643714 -0.933053 0.132932 0.981926 1.073650 -0.785947 -1.998558 -1.003200 0.921950 -0.359130 -1.040839 -0.231054 0.461312 -0.492399 -0.568661 -2.252222 -0.101733 1.045591 -1.302853 -0.162208 1.569318 -0.816800 0.801777 -0.430150 0.124325 -0.382098 1.520167 0.426577 0.771865 1.037076 -0.261106 -1.611747 0.554947 0.879853 1.762623 -1.198653 -0.126709 0.122514 0.737096 -0.166711 0.247648 -0.624082 0.910306 1.303819 -0.735012 -1.457043 -1.712474 -0.448500 -2.236472 0.483699 -1.449187 -0.504440 0.855581 1.747723 0.693813 0.944797 2.475231 -1.986717 1.323949 0.085988 0.205576 0.721750 0.268705 0.782347 -0.979567 -1.869313 1.369720 0.883224 0.537050 0.415762 -0.342519 0.045378 -1.367140 -1.388447 1.323940 0.671625 -0.026717 1.880007 1.117767 2.206365 -1.680612 0.408860 0.538456 -0.430094 0.215561 -0.125225 -2.456599 1.271945 0.221635 0.843736 2.295497 -0.105454 -1.085967 0.786409 -0.123878 0.325806 -1.457523 1.285127 -1.531103 -0.492662 -1.373776 0.248570 -0.480181 -0.989589 -1.096698 -0.264336 2.644537 -1.401053 -2.042411 1.530117 -0.501904 1.039322 -3.010980 1.847893 -1.187967 1.738998 -0.279060 -0.391209 0.144205 -0.288135 -0.894742 -0.116399 1.142596 -0.973057 0.899193 2.113891 0.602129 -0.016117 0.499507 1.144820 -0.314173 0.559835 -1.168288 1.429215 -0.120228 -0.830383 -0.012841 -0.877673 0.887925 -0.499041 -0.006474 1.796421 1.652553 0.622435 1.141462 1.194360 1.071971 -1.326347 0.937849 0.038711 1.359712 -0.933183 -0.386777 -0.477013 0.566240 -0.278610 1.258308 -2.318972 -2.649627 -1.904134 -2.621464 -0.467290 -0.607650 1.058670 -0.082523 0.003746 -2.600663 -1.591663 1.158457 -0.815766 2.002521 1.453028 1.047277 1.597340 1.538650 -0.853817 -0.248660 0.053828 0.735313 -0.740041 -0.416087 -1.198417 1.278805 -1.146492 0.964721 2.025010 -0.509978 0.820927 -0.622755 1.953497 -1.192653 3.225182 1.305605 -1.639851 0.949024 0.838138 2.233801 -0.230771 -1.468834 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__minCoins(int*, int, int) = -4.771726 -7.582806 6.139589 5.990138 2.748202 5.193408 3.062917 -2.529379 3.632884 6.699012 -2.716432 4.868379 -4.275231 -2.249429 0.556467 1.507027 -1.033806 -4.979058 1.317727 -0.714257 -0.242684 -4.848349 -3.781153 5.367289 0.990994 -1.112473 -2.032425 0.965652 -9.269452 -9.106602 -0.307261 -0.365301 3.238747 -1.969908 1.622361 -9.912015 4.800927 8.251809 -0.160356 -8.600541 -0.068829 -2.213823 -2.026365 2.700042 -0.584553 3.248827 2.746429 -0.227696 -1.029751 2.016895 2.760035 -1.353008 3.456305 7.798638 0.858437 7.794174 7.387201 -0.009418 1.784219 1.448641 1.740373 -1.323428 4.526953 4.262596 -2.791941 -0.402544 0.251745 1.580029 -5.675006 1.384161 1.507359 -4.459992 -2.518086 -1.905302 -3.404822 -1.480043 0.429222 0.040685 9.324712 -1.680998 10.703890 4.515659 5.946679 -0.868837 5.831528 -1.179622 6.229359 2.411785 -5.570516 -0.088129 -5.223382 -3.122849 -0.284029 6.042172 -4.514930 2.696627 2.771359 -3.544924 -7.309144 4.360606 -1.550238 -1.294452 -5.564289 0.478830 3.720700 2.116640 -1.699580 -6.884686 -5.653134 4.402387 -4.482630 -4.071221 -1.881584 -0.428942 -0.742421 1.234138 -4.522979 -1.426907 6.029647 -4.577815 -4.031763 5.239255 -2.477367 4.706169 -1.491920 -0.013163 0.400851 0.779272 2.733848 1.945242 2.466626 -4.124382 -10.711443 0.724061 0.305370 0.995422 -2.732469 -0.371536 3.316004 2.591333 2.781205 5.598130 -2.345908 5.585089 4.149448 0.419593 -2.352061 -6.407531 -0.457703 -3.663931 2.336620 -3.314825 -1.885922 -0.402302 4.893304 -0.866046 0.109721 5.340637 -4.491621 5.325059 -0.194045 1.193380 0.094252 -2.839251 1.689680 -3.177765 -5.040907 3.841612 6.641048 1.073955 2.048198 -2.298817 -0.185542 -1.660296 -5.592754 2.730033 -0.738916 0.976200 6.429003 2.712233 14.829710 -5.159202 0.973638 -1.456118 -0.420865 1.455492 -1.887362 -6.548560 2.556480 1.113187 2.347642 8.745394 -0.151783 -3.644312 1.260177 0.442961 0.338042 -4.963417 7.712524 -5.036773 -0.268391 -0.942386 -2.376220 -2.850381 -3.411790 -4.019839 1.058725 7.501311 -2.145980 -8.091026 2.700760 -1.930115 1.332488 -9.457278 6.501818 -3.358102 4.223689 -2.758070 -2.039432 -0.622505 2.907360 0.370264 0.586459 3.335551 -5.126293 4.927103 5.064012 0.359410 1.442508 2.344188 1.126543 -0.946378 -2.438379 -4.049836 3.608611 0.495182 -1.173601 -2.154014 -3.100155 5.456173 1.316998 -2.398150 -0.599683 5.809093 -3.892761 -1.317176 4.966284 -1.077021 -3.143727 2.428297 1.300223 4.696890 -2.720739 -1.053503 -3.718138 -0.613275 1.484232 2.927743 -6.847857 -2.255022 -1.904469 -7.281605 -2.730539 3.094195 3.169615 2.941712 1.157599 -8.794600 -4.162900 6.126212 -1.647760 4.504283 3.341075 5.073242 4.913545 2.757942 1.933593 -2.211778 -3.040728 -0.792770 -4.908122 -2.542481 0.405029 2.223133 -2.997698 6.029749 1.369856 0.772814 2.080692 -0.380384 2.325948 -3.809869 8.092073 4.431911 -3.876960 0.711165 1.970379 7.448814 -7.931430 -4.109744 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = -0.876290 -2.453543 2.794497 2.442816 0.256035 1.394413 0.927615 -1.037364 1.476473 1.112982 -0.942756 1.522711 -1.661761 -0.120218 -0.427681 0.745424 -1.469558 -1.879568 0.118501 -0.521544 -0.377997 -1.488075 -0.544277 1.553359 0.757320 0.525873 -1.019172 -0.092673 -2.918820 -1.986675 0.762093 -0.350634 1.281590 0.089076 0.501251 -4.241371 1.673960 2.409897 -0.363863 -3.004750 0.341286 -1.081186 -0.486825 -0.224562 -0.442743 0.770414 0.738852 0.816931 0.096794 0.629203 0.165658 -0.043834 0.837821 3.451548 -0.170743 2.265193 2.418905 0.082031 0.300751 0.234596 0.777220 -0.175727 1.364133 1.368821 -0.776903 -0.785068 -0.300340 -0.463954 -1.910439 0.942743 0.495307 -0.734695 -1.263019 -0.635954 -1.592716 -0.454313 -0.738898 1.105016 3.353197 -1.507713 3.078653 1.133505 1.850030 -0.139289 1.576793 -0.029855 1.874006 0.957754 -1.409808 -0.086437 -2.152413 -0.910072 0.073025 0.670024 -1.432185 -1.085686 1.223389 -1.891869 -2.512395 1.315778 0.009856 -0.474787 -1.276088 -0.011036 1.138184 1.078779 -0.993436 -2.148128 -1.421397 1.153530 -0.820925 -1.175637 -0.181380 0.219998 -0.304129 -0.442169 -2.142280 -0.164760 1.582465 -1.435026 -0.610599 1.905342 -0.914427 1.207125 -0.477759 0.053589 -0.264870 1.318658 0.785303 0.631068 0.739951 -0.784962 -2.535192 0.463594 0.588051 1.407876 -1.071167 -0.144060 0.569909 0.902757 0.310601 0.844847 -0.574211 1.405039 1.209962 -0.437920 -1.318381 -2.134869 -0.377611 -1.897077 0.521185 -1.407582 -0.632685 0.717777 1.810941 0.679137 0.578682 2.276252 -1.733238 1.608970 -0.103407 0.270894 0.440655 -0.181536 0.805269 -1.094586 -1.816898 1.294071 1.451551 0.628741 0.616422 -0.700041 0.087515 -1.152331 -1.594223 1.027849 0.536708 0.025365 2.139612 1.191533 3.073295 -1.988925 0.270400 0.051270 -0.409340 0.299055 -0.331598 -2.461432 1.118251 0.353123 0.550878 2.532973 -0.122462 -1.235317 0.739008 -0.079047 0.252011 -1.504568 1.639315 -1.638692 -0.477928 -1.023743 0.058273 -0.967710 -1.034507 -1.407999 -0.315160 2.793047 -1.534074 -2.319103 1.308785 -0.434477 0.944544 -3.199873 2.054779 -1.224146 1.861320 -0.514165 -0.599699 -0.065107 0.306651 -0.512029 0.057608 1.238704 -1.409834 1.113814 2.033990 0.481887 0.310463 0.725884 1.046993 -0.398079 0.003946 -1.290812 1.403961 -0.155016 -0.811147 -0.231408 -0.977382 1.275571 -0.020503 -0.129729 1.103064 1.704130 0.022794 0.595464 1.576441 0.438953 -1.300697 0.721584 0.108424 1.672589 -1.073177 -0.324051 -0.933943 0.386242 0.048282 1.044491 -2.533633 -2.087321 -1.767035 -2.469715 -0.643433 0.067536 0.853792 0.336624 0.144004 -2.891654 -1.599249 1.429734 -0.832683 1.684354 1.452994 1.359002 1.896153 1.454749 -0.344978 -0.622095 -0.106935 0.342052 -1.099928 -0.489630 -0.913519 1.151469 -1.278928 1.470973 1.640230 -0.189602 0.822937 -0.219399 1.666147 -1.337965 3.204113 1.500322 -1.839722 0.614377 1.196091 2.456092 -1.135271 -1.555514 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__findLength(char*) = -8.701435 -14.673967 10.788744 10.324151 4.526551 10.130369 6.362809 -2.202915 3.337662 11.336422 -3.737822 9.715901 -6.464012 -5.714553 -0.597440 0.296631 0.505054 -8.352238 2.822171 -1.050047 1.160899 -6.350932 -9.680046 13.103499 1.148942 -4.168979 -2.786369 -1.047954 -18.937066 -11.844294 -3.756082 0.221000 5.635440 -4.647966 3.925463 -12.134152 5.959177 15.676326 0.428470 -14.566855 -0.103301 -3.039338 -2.388378 6.470178 -3.306827 4.856441 5.163059 -3.308644 -3.595865 2.962864 4.448168 -1.140237 8.436660 12.769014 4.630749 13.771495 12.625013 0.301711 5.753517 1.448833 3.172537 -3.493974 6.816940 3.847780 -3.064377 -0.028542 -1.964851 4.302992 -7.196215 -0.311651 3.124680 -7.495359 -2.785468 -2.064385 -8.449051 -4.250659 0.872402 -1.114537 13.975825 -3.043978 18.612444 8.968657 10.119567 -0.785527 11.292283 -0.551354 8.425040 4.089488 -7.919687 3.202570 -9.769803 -1.606658 -0.857789 8.395598 -10.160868 0.354636 5.880569 -8.580873 -13.689166 9.959525 -3.191642 -3.263909 -5.554538 -0.349528 4.417973 4.249175 -5.640898 -11.171871 -9.489986 9.062643 -6.297798 -7.417767 -1.271400 -0.721960 1.801363 1.010347 -5.760516 -0.248815 11.980538 -7.065925 -5.748821 10.342078 -1.286494 10.410137 -2.333859 -0.311055 0.286286 0.228954 6.420101 1.950850 -0.596839 -8.733682 -16.666288 0.257653 -1.112057 -2.280321 -5.162672 -1.871781 7.009516 5.881185 9.497736 12.279947 -1.960260 9.074755 4.640442 1.514950 -2.004001 -12.712348 -2.253814 -4.668284 1.891200 -3.537962 -6.168681 -0.304235 7.617971 -2.068640 -1.183393 4.828263 -1.244274 6.964731 0.258542 0.866035 -1.235863 -6.757507 2.253373 -4.432995 -9.028139 5.979997 11.832896 5.269524 3.234060 -2.952241 -0.638730 0.128698 -7.501812 1.640518 -0.205135 1.493339 13.306735 6.202103 20.905506 -5.704269 -0.605747 -5.273002 -2.445784 3.013031 -4.762025 -11.086779 2.081988 2.778228 -0.344607 14.718707 -1.520211 -3.993463 5.432811 -0.013240 0.713094 -9.038708 13.380627 -8.721491 -0.976048 -2.248414 -4.158168 -6.564756 -5.292682 -10.018641 -1.723048 13.061229 -6.074451 -10.889843 1.654052 0.032535 -0.081048 -13.441029 9.709651 -4.566105 8.076423 -2.498316 -4.469104 -0.671937 6.959761 0.898631 -0.069755 5.913970 -11.660643 8.906380 6.336521 0.248076 1.479002 4.654513 2.099284 -2.575887 -5.182699 -9.012870 5.884856 -0.064418 -2.980881 -2.691266 -4.729657 9.473413 3.566721 -3.041106 -3.686306 7.283462 -6.622669 -5.545372 9.111634 -4.173854 -4.569840 1.936138 1.362324 8.511881 -5.306775 -0.897875 -9.105634 -0.942469 4.913977 3.299981 -12.668760 -1.275943 -5.478880 -9.654049 -3.390156 4.814708 3.710244 6.791470 1.457498 -16.119714 -9.265783 11.062106 -3.438627 2.499135 7.307053 8.434966 10.452702 3.633454 5.508083 -2.673968 -4.273951 -0.851365 -7.491021 -3.924773 1.372563 2.279296 -5.496538 11.491787 1.957447 2.267025 5.291576 1.178151 1.539412 -7.638404 13.845628 7.779159 -8.743255 -0.157343 5.095038 10.849617 -16.076195 -6.970493 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = -1.328613 -3.425389 3.329059 2.999682 0.414465 2.158271 1.290471 -0.932308 1.129683 1.623860 -1.100242 2.217781 -1.864275 -0.793170 -0.619661 0.337165 -1.107935 -2.193661 0.283574 -0.495925 0.035317 -1.566434 -1.593576 2.992758 0.709632 0.198902 -0.988768 -0.253075 -4.342695 -2.193692 -0.016184 -0.116227 1.546845 -0.046814 1.002247 -3.610532 1.724106 3.604613 -0.159853 -3.684770 0.296422 -1.082645 -0.623771 0.423116 -0.945581 1.074415 0.978700 0.173217 -0.425147 0.645455 0.346390 -0.028626 1.749728 3.489660 0.670109 3.109974 3.089697 0.145317 1.170982 0.098476 0.893532 -0.461440 1.527268 1.079985 -0.747996 -0.661209 -0.708595 0.136851 -1.838445 0.535008 0.692099 -1.227662 -1.237528 -0.673540 -2.397260 -0.802625 -0.566336 0.794701 3.717526 -1.507553 4.099122 1.826583 2.276187 -0.221001 2.398511 0.063875 2.050674 1.169053 -1.564184 0.647705 -2.784274 -0.621072 0.040319 0.915419 -2.453688 -1.226504 1.612140 -2.945129 -3.395768 2.088084 -0.252616 -0.966851 -0.827526 -0.007868 1.017783 1.208927 -1.444562 -2.588881 -1.654611 1.948186 -1.003342 -1.630748 -0.189598 0.403969 0.276991 -0.322907 -2.116161 0.211089 2.469057 -1.604617 -0.579227 2.574817 -0.451099 2.050824 -0.592375 -0.088232 -0.236287 1.075779 1.312441 0.505550 -0.011806 -1.508658 -2.904488 0.480303 0.235505 0.378135 -1.509048 -0.430002 1.284814 1.398056 1.561239 1.962699 -0.506949 1.777940 0.918890 -0.217211 -1.038895 -3.025035 -1.060722 -1.881622 0.325866 -1.177028 -1.489287 0.683796 2.056914 0.385911 0.262634 1.758242 -0.832628 1.462571 0.086125 0.187821 0.126969 -0.845179 0.759725 -1.172215 -2.318156 1.682773 2.037014 1.370095 0.767116 -0.602597 -0.038917 -0.629185 -1.671400 0.874018 0.506552 0.253580 3.269062 1.762823 3.472024 -1.460679 -0.022771 -0.653247 -0.736029 0.530261 -0.768827 -2.931542 0.942821 0.590232 0.143469 3.362848 -0.385770 -0.893184 1.394118 -0.116962 0.335970 -2.189338 2.526521 -2.086095 -0.425270 -1.226224 -0.206956 -1.424583 -1.300564 -2.354729 -0.835747 3.465582 -2.119551 -2.451983 0.960914 0.069467 0.662716 -3.302579 2.056395 -1.279264 2.492401 -0.177350 -0.979784 0.064960 0.611442 -0.411065 -0.169763 1.523256 -2.404362 1.620199 1.733926 0.399833 0.120879 1.054952 1.012211 -0.737252 -0.368314 -2.131384 1.596607 -0.142417 -0.977064 -0.256457 -1.134691 1.705203 0.336586 -0.288627 0.458664 1.721549 -0.286686 -0.317356 1.975540 -0.173389 -1.389530 0.480310 0.113177 1.951406 -1.444338 -0.358724 -1.738449 0.284650 0.743130 0.922333 -3.303366 -1.687418 -2.319626 -2.543727 -0.719135 0.096761 0.978740 1.094346 0.112603 -3.747334 -2.472583 2.295018 -1.029232 1.146962 1.969371 1.772767 2.642452 1.397939 0.415955 -0.506534 -0.274570 0.464856 -1.367198 -0.568218 -0.739703 1.127624 -1.470420 2.235916 1.681392 0.005847 1.430424 -0.050560 1.332916 -1.927019 3.797356 1.863247 -2.639851 0.344904 1.546334 2.463446 -2.377106 -1.907169 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__fact(int) = -0.826207 -1.545757 1.309402 1.052545 0.520997 0.953222 0.429321 0.202486 0.466581 0.941949 -0.766243 1.090704 -0.562571 -0.702204 0.393481 0.005170 -0.177715 -1.181204 0.689773 0.289021 0.284501 -0.648081 -1.002158 1.251887 0.212458 0.205656 -0.399165 -0.086585 -1.803970 -1.168634 -0.406099 -0.138841 0.693863 0.162164 0.775596 -0.955778 0.578234 1.368716 0.167998 -1.885520 -0.116322 -0.099356 -0.032221 0.448211 0.033898 1.111876 1.220025 0.104397 -0.448584 0.557302 -0.139564 -0.631247 0.448113 0.409842 0.900228 1.179147 1.299698 -0.191606 0.622014 -0.141049 0.447462 -0.768591 0.708196 0.476423 -0.601566 0.101594 -0.158404 0.330980 -0.836545 0.008686 0.604042 -0.365296 -0.374978 -0.310863 -0.851327 -0.241157 0.732548 0.107621 1.610504 -0.138790 1.892912 1.089472 1.621237 -0.170695 0.946754 -0.109726 0.661150 0.559879 -1.008910 0.442262 -1.561345 -1.039328 -0.374266 0.602384 -0.739239 0.314914 0.380541 -1.170852 -1.196973 0.967037 -0.375011 -0.039036 -0.792868 0.235960 0.976328 0.970769 -0.331603 -0.896726 -0.731473 0.483406 -1.009248 -0.586311 0.067670 0.142923 -0.141607 0.111399 -0.653699 -0.208780 1.373588 -0.824651 -0.044060 0.941177 -0.550952 1.268629 -0.351710 -0.137877 0.095989 0.273223 1.213557 -0.006600 0.213100 -1.259551 -1.427122 0.092253 -0.236643 0.241952 -0.505860 -0.423655 0.720498 0.571968 0.818249 0.792756 -0.315942 0.741480 1.041746 0.067812 -0.570731 -1.548385 -0.330126 -0.341690 0.226785 -0.299622 -0.153797 0.186368 0.757484 -0.171884 -0.040369 0.974252 -0.395946 0.497288 -0.265708 0.278420 -0.302089 -0.189831 0.247498 -0.397934 -0.575542 0.727741 1.301187 0.507161 0.696988 -0.761637 0.203226 -0.129955 -0.997855 0.533746 0.255211 0.537189 1.157502 0.466006 0.666312 -0.278643 -0.618646 -0.526838 0.066359 0.043430 -0.131351 -1.159290 0.526797 0.028865 0.428285 1.284268 -0.129541 -0.412809 0.784424 0.217476 -0.067543 -0.701089 1.044485 -0.986155 0.328954 -0.176718 -0.072604 -1.060976 -0.412974 -1.009753 -0.175181 1.380579 0.376069 -1.522542 -0.112934 -0.367052 0.547703 -1.482079 -0.165079 -0.487417 0.952293 -0.067148 -0.143313 -0.119639 -0.123529 0.394404 -0.400325 0.577773 -0.737826 0.708752 0.252668 0.040369 -0.274891 0.766496 0.117831 -0.150220 -0.495444 -0.486117 0.005946 -0.252702 0.193961 -0.055966 -0.233329 1.073241 0.552697 -0.593208 -0.433178 0.582747 -0.493979 -0.084974 0.758480 -0.656714 -0.676682 -0.158977 0.270645 1.316436 -0.584332 -0.195323 -1.186078 0.229644 0.393728 0.197442 -1.280457 -0.506595 -0.512028 -1.609249 -0.752869 0.396180 0.256513 0.729023 0.160087 -1.151345 -0.668269 0.735435 -0.029691 1.098632 0.593733 0.575016 1.189526 0.245516 -0.030789 -0.724433 -0.190727 -0.164747 -0.980655 -0.260925 -0.227514 0.193555 -0.602202 1.066750 0.579274 -0.119425 0.261492 -0.303897 0.861928 -0.842449 1.528754 0.985126 -1.301753 -0.272042 0.016082 1.395900 -1.515789 -0.840591 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findSmallerInRight(char*, int, int) = -1.847385 -3.222361 2.474970 2.490060 1.173484 2.148416 1.278427 -0.955199 1.465531 3.054852 -1.041454 1.802866 -1.927467 -0.785255 0.414468 0.625770 -0.299680 -2.077224 0.467281 -0.504534 -0.349210 -1.939889 -1.490452 2.099095 0.457555 -0.926250 -0.813370 0.154835 -3.811864 -3.135312 -0.337185 -0.202473 1.327206 -0.641507 0.672379 -3.754589 1.792743 3.186473 -0.114126 -3.242403 -0.136106 -1.021815 -0.630578 1.154926 -0.014722 1.193339 1.188221 -0.201460 -0.201722 0.783975 1.603363 -0.789243 1.260630 3.555540 0.185734 3.257612 2.963895 -0.097010 0.767213 0.766421 0.686896 -0.652662 1.897109 1.759226 -1.080853 -0.184621 0.087360 0.469460 -2.027440 0.634326 0.819746 -1.596715 -0.892645 -0.849343 -1.043625 -0.934295 -0.148055 -0.064736 3.775461 -0.858948 4.400480 2.070010 2.500931 -0.272821 2.581588 -0.457486 2.745044 0.851048 -2.433943 0.326347 -1.944719 -1.017129 -0.120089 2.579697 -1.724752 1.072843 1.095042 -1.047302 -3.169566 2.001108 -0.682959 -0.321179 -2.206567 0.267499 1.379650 0.632155 -0.961463 -2.980491 -2.513876 1.635432 -1.758532 -1.639788 -0.764028 -0.501209 -0.276932 0.338638 -1.892144 -0.681198 2.325560 -2.046659 -1.938835 2.347881 -0.982858 2.006854 -0.487228 0.011256 0.112823 0.407991 1.199298 0.927805 0.789106 -1.742954 -4.986662 0.298095 0.270050 0.122105 -0.899963 -0.093910 1.339220 1.042953 1.030177 2.581098 -0.594592 2.709165 1.773905 0.083129 -1.045617 -2.619654 0.018615 -1.480643 1.111505 -1.487402 -0.837072 -0.597478 2.040237 -0.053263 0.066071 2.239559 -1.306178 2.285034 -0.267629 0.449416 0.137763 -1.099112 0.854185 -1.396714 -2.028046 1.410897 2.879923 0.360698 1.006968 -1.111400 -0.081915 -0.833520 -2.163796 0.854982 -0.380582 0.041154 2.777760 1.174751 6.627564 -2.382229 0.710110 -0.518848 -0.081233 0.635232 -0.683789 -2.722686 0.866146 0.485500 0.387672 3.366240 -0.048636 -1.574889 0.475693 -0.064355 0.232593 -2.082440 3.083630 -1.961580 -0.008255 -0.563037 -0.484909 -1.312629 -1.448225 -1.309780 0.763961 3.161403 -0.823742 -3.023570 1.146402 -0.367101 0.329540 -3.753122 3.058620 -1.410165 1.637024 -1.599859 -1.187853 -0.312643 1.935825 0.298690 0.583891 1.392200 -2.180280 1.948074 2.049090 0.166326 0.899631 1.063063 0.731245 -0.293015 -1.120812 -1.585679 1.610562 0.345289 -0.488011 -0.981543 -1.345045 2.273466 0.694732 -0.867947 -0.292157 2.562608 -1.789391 -0.734541 2.164126 -0.500164 -1.232930 0.934988 0.473773 2.102312 -1.298107 -0.358959 -1.499805 -0.426238 0.498543 1.063165 -2.908587 -0.730273 -0.379394 -2.436660 -1.235062 1.805439 1.059872 1.400719 0.506615 -3.602459 -1.580700 2.454821 -0.888469 1.290493 1.262200 2.150162 2.129933 1.223053 1.047003 -1.096686 -1.309394 -0.371830 -1.962418 -0.904573 0.130849 0.899134 -1.447142 2.618586 0.421548 0.372255 0.811502 0.199178 1.200646 -1.688357 3.147652 1.815830 -1.529896 0.534259 1.403010 3.122333 -3.225868 -1.644479 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -2.892491 -4.697190 3.399464 3.054108 1.389242 3.168953 2.164981 -0.632080 2.650592 3.020207 -1.245080 2.842982 -2.366275 -1.266230 -0.032327 0.101280 -0.438581 -2.974156 0.962060 -0.452035 -0.180045 -2.889874 -2.465299 3.317460 0.363110 -0.644622 -1.170036 -0.368131 -6.152327 -3.107542 0.180739 -0.364858 1.906991 -2.028366 0.933905 -7.281974 1.787013 4.471166 -0.114838 -5.787273 0.033813 -1.505622 -0.100156 1.576196 -0.128718 1.472953 1.846613 0.289371 -0.571026 0.841589 0.650254 -0.453669 1.270846 5.619313 0.231608 4.329434 4.293923 0.000499 0.557084 0.594919 1.098156 -1.118823 2.604865 2.132702 -1.697815 -0.207344 -0.146208 0.671568 -3.542235 0.537208 1.084441 -1.694595 -1.196300 -0.857787 -2.801552 -1.314028 0.972651 0.311865 5.277169 -1.224905 6.215771 2.340230 4.007740 0.124653 3.311950 -0.270090 2.936808 1.235725 -3.320680 0.273258 -4.226275 -0.851871 -0.623364 2.204747 -2.282039 -0.498599 1.724045 -2.374315 -4.186714 2.672952 -0.898629 -0.233325 -3.215841 -0.358635 2.277518 2.029745 -1.860266 -4.073674 -3.970637 2.712142 -2.190355 -2.075172 0.183694 -0.676742 -0.235414 -1.046851 -2.136976 -0.731260 3.876812 -2.560949 -2.342372 3.449615 -2.029810 3.151003 -0.648060 0.254967 0.018417 0.746566 2.149355 0.513987 1.034690 -3.083815 -6.087280 -0.225587 -0.608597 2.047178 -1.496005 -0.786613 1.685966 1.467566 2.031831 2.542316 -0.746313 2.358138 2.544153 0.144466 -0.907242 -3.906630 0.587550 -2.265924 0.980853 -1.496438 -0.774106 0.076947 2.659707 0.224279 0.046207 2.968854 -1.894379 2.716555 -0.206997 0.187425 0.070498 -0.572328 1.124080 -1.631831 -2.830182 1.501132 3.543531 1.165387 1.113805 -1.452821 -0.215065 -0.770971 -2.672773 0.684930 0.674322 0.659685 3.866307 1.770894 6.955807 -4.038903 -0.195345 -1.144069 -0.824261 0.925514 -1.330231 -3.746853 1.354866 0.888676 0.396546 4.574728 -0.527972 -1.996027 1.461335 0.217752 0.291755 -2.513855 3.574443 -3.060799 -0.894544 -0.929100 -0.964647 -2.367131 -1.583489 -3.238351 -0.147194 4.336358 -0.766029 -4.464906 1.284430 -0.814394 1.033864 -5.638490 3.216658 -1.709978 2.570503 -1.722997 -0.752290 -0.555268 2.249461 0.270852 0.218404 1.950399 -3.660703 2.827869 3.075945 0.319041 0.724861 1.439400 1.067984 -0.432772 -1.624494 -2.515553 1.774775 -0.328401 -0.983097 -0.439071 -1.608367 3.657669 1.053717 -0.731370 -0.126665 3.160591 -1.750963 -0.417224 3.646046 -1.192105 -1.631774 0.884899 0.413413 3.252330 -1.487642 -0.182626 -2.782373 0.403513 1.145639 1.315641 -4.076726 -1.702811 -1.139412 -4.584743 -1.069046 1.345456 0.482591 1.751873 0.692477 -5.804284 -2.223587 2.249926 -1.013986 2.384205 1.911856 2.595360 3.377845 1.761032 0.303098 -1.327846 -0.602586 -0.679987 -2.832282 -1.457255 -0.225499 0.845080 -2.116718 3.430577 1.102312 0.349829 1.092911 0.248515 1.623755 -2.232097 5.036881 2.896208 -2.535695 0.362819 1.098815 5.208751 -3.996284 -2.286407 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = -0.221073 -1.428355 1.700143 1.456907 -0.066158 0.760866 0.497988 -0.522151 0.957523 0.258929 -0.571823 0.858018 -0.975566 0.058330 -0.412460 0.384858 -1.043344 -1.065023 0.010502 -0.289632 -0.212436 -0.857704 -0.179770 0.934880 0.519452 0.698584 -0.604147 -0.169112 -1.699270 -0.658973 0.580185 -0.245468 0.745700 0.270298 0.353670 -2.394902 0.835112 1.323727 -0.230936 -1.878812 0.261540 -0.639856 -0.132273 -0.339221 -0.195680 0.432979 0.393749 0.765534 0.132836 0.337909 -0.227539 0.038435 0.438328 1.929844 -0.136311 1.214976 1.375345 0.088378 0.152534 -0.044284 0.491052 -0.053545 0.673894 0.726593 -0.386239 -0.576403 -0.373092 -0.428350 -1.078789 0.595746 0.228083 -0.112314 -0.877785 -0.399650 -1.059857 -0.212742 -0.679740 0.895894 1.919054 -1.012636 1.633649 0.571184 1.054298 -0.065529 0.754850 0.078649 0.834779 0.585866 -0.705423 0.074486 -1.417627 -0.458632 0.052344 -0.169548 -0.834483 -1.190954 0.754526 -1.392346 -1.427279 0.689649 0.134604 -0.266595 -0.388760 -0.008690 0.574032 0.760150 -0.687513 -1.159637 -0.626926 0.590632 -0.170610 -0.590030 0.079274 0.289211 -0.146254 -0.542976 -1.257217 -0.008693 0.862005 -0.783450 -0.006908 1.089322 -0.500538 0.683514 -0.259911 0.023597 -0.192796 1.024124 0.556711 0.303150 0.328089 -0.373952 -0.994137 0.407409 0.314916 1.002136 -0.687425 -0.116813 0.249036 0.492763 0.182101 0.181796 -0.254820 0.477252 0.621231 -0.383530 -0.776029 -1.217395 -0.363474 -1.215642 0.229916 -0.745890 -0.310952 0.578914 1.003965 0.618671 0.427249 1.304125 -0.946284 0.598508 -0.026900 0.094431 0.305517 0.322002 0.488678 -0.572051 -1.020417 0.737842 0.596237 0.432679 0.364518 -0.345673 0.071205 -0.697162 -0.628990 0.633472 0.574482 -0.005597 1.291571 0.733597 0.933768 -0.993951 -0.002834 0.098353 -0.331129 0.137856 -0.128088 -1.447212 0.772285 0.154221 0.332917 1.240900 -0.163834 -0.476712 0.633660 -0.116014 0.187307 -0.817749 0.664149 -0.946366 -0.403895 -0.811988 0.383826 -0.552508 -0.507221 -0.880179 -0.309808 1.617743 -0.846329 -1.051291 0.733070 -0.145255 0.678080 -1.619373 0.906734 -0.663356 1.177185 -0.096629 -0.259906 0.057632 -0.128512 -0.367866 -0.179337 0.725375 -0.753048 0.451592 1.044304 0.327078 -0.058427 0.450359 0.714795 -0.273090 0.206844 -0.731329 0.721254 -0.159715 -0.476576 0.109414 -0.494363 0.616617 -0.131722 0.041763 0.982736 0.842653 0.397952 0.567709 0.810912 0.322881 -0.771189 0.337065 -0.024448 0.961857 -0.666677 -0.156691 -0.527590 0.447161 -0.009241 0.545788 -1.473248 -1.485525 -1.207371 -1.384670 -0.339605 -0.374527 0.351069 0.076647 -0.012919 -1.580678 -1.012274 0.605804 -0.497092 0.862440 0.835194 0.620143 1.167637 0.894082 -0.442670 -0.265343 0.230970 0.332980 -0.462475 -0.142643 -0.763020 0.663355 -0.770157 0.626294 1.253218 -0.277424 0.491331 -0.178477 1.169949 -0.785311 1.893267 0.873284 -1.200124 0.422055 0.703979 1.395601 -0.236355 -0.911820 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -0.918485 -1.859294 1.596255 1.625216 1.227078 1.230908 0.646831 -0.386220 1.269828 2.045841 -1.009073 1.015170 -1.106373 -0.690963 1.048976 0.623934 -0.201666 -1.679706 0.826927 0.250895 0.363328 -1.351795 -0.420342 0.935966 0.363481 -0.591008 -0.460480 0.077108 -2.235117 -2.238927 -0.052542 -0.361259 0.943051 0.247388 0.406826 -1.382646 1.334202 1.575392 0.050632 -2.473370 -0.130544 -0.464159 -0.284529 0.595808 0.697340 1.361789 1.249799 0.038606 -0.183698 1.029697 0.363594 -0.920475 0.471586 0.717568 0.405677 1.671106 1.570658 -0.197503 0.450738 0.458846 0.584190 -0.532955 1.406983 1.388311 -0.915059 0.006907 0.001807 0.196353 -1.694090 0.524512 0.174406 -0.660322 -0.612621 -0.300590 -0.443985 -0.063442 0.551559 0.455282 2.348327 -0.380172 2.522728 1.256115 1.925566 -0.456445 1.211238 -0.361227 1.300212 0.741377 -1.652640 -0.467654 -2.085610 -1.939940 -0.412015 0.838810 -0.567592 1.740904 0.304676 -0.840564 -1.610774 1.030252 -0.556969 0.132619 -2.003172 0.514338 1.513364 1.156206 -0.000571 -1.520091 -1.147721 0.659776 -1.480592 -0.991254 -0.589688 -0.190045 -0.886136 0.339901 -1.199593 -0.931769 1.364316 -1.506068 -0.860507 1.180484 -1.161021 1.245194 -0.508328 -0.194065 0.166544 0.282958 0.939553 0.644686 1.791841 -1.653668 -2.931504 0.590231 0.145714 0.391288 -0.443261 0.529998 0.731778 0.516598 0.165694 1.102607 -0.639403 1.335322 1.465417 -0.122242 -0.974057 -1.538049 0.268510 -0.761466 0.922856 -1.040286 0.364404 0.181119 1.392976 -0.048323 0.260417 2.087665 -1.659402 1.135260 -0.381909 0.697180 -0.127971 -0.254702 0.404460 -0.828629 -0.974622 0.935850 2.085638 -0.427960 0.899046 -0.994839 0.225870 -0.837179 -1.796448 0.877601 -0.194827 0.356788 1.312965 0.280919 2.028411 -1.309648 -0.108708 -0.063490 0.366078 0.146954 -0.333389 -1.858897 0.932136 -0.138497 1.387863 1.808223 0.030426 -1.240123 0.136687 0.228667 -0.097323 -0.829601 1.437312 -1.496758 0.208055 -0.035426 -0.518858 -0.829911 -1.149275 -0.468128 0.948357 1.792308 1.429471 -2.329264 0.556005 -1.290170 0.387353 -2.688542 0.919622 -1.088808 0.762471 -0.535319 -0.292521 -0.541460 0.418747 0.350916 -0.407571 0.923916 -0.773301 1.491731 1.074673 0.148982 0.057900 0.847906 0.083777 0.027062 -0.741035 -0.523305 0.562814 -0.199518 0.273647 -0.583973 -0.755420 1.834649 0.365335 -1.178967 -0.121654 1.358454 -1.156811 0.358707 1.058023 -0.267789 -1.110270 0.735996 0.440612 1.798786 -0.553464 -0.314241 -1.036364 -0.389728 0.132997 0.854238 -1.590381 -0.913100 -0.025530 -2.223347 -1.091503 0.607049 0.789259 0.572189 0.562258 -1.865097 -0.611558 0.327799 -0.150886 1.341766 0.617734 1.024791 1.214407 0.603013 -0.003722 -0.990843 -0.857715 -0.511525 -1.760093 -0.955386 0.165969 0.410169 -0.704114 1.385087 0.429177 0.195100 -0.032306 -0.536523 0.571286 -0.819595 1.766701 1.369727 -0.809003 0.080499 -0.062628 1.972695 -1.969176 -1.171297 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isadjacent(char, char) = -0.515960 -1.092956 0.687904 0.737371 0.392660 0.605163 0.645721 0.025253 0.090230 0.888770 -0.215483 0.485733 -0.691946 -0.506683 0.248558 -0.067413 0.122326 -0.689719 0.144401 -0.036342 0.139223 -0.387813 -0.681945 0.972796 0.190549 -0.774523 -0.129302 -0.257742 -1.414778 -0.318446 -0.419269 -0.003329 0.396572 -0.005886 0.350877 -0.159543 0.201232 0.924539 0.039649 -0.700671 -0.081025 -0.277556 0.043701 0.114967 -0.065642 0.323036 0.549943 -0.469085 -0.169746 0.149560 0.316713 -0.414796 0.437674 0.680467 0.290993 0.872270 0.910355 -0.012199 0.635730 0.129856 0.217503 -0.445441 0.431172 0.105062 -0.233670 0.089958 -0.237100 0.071779 -0.207157 -0.001991 0.178995 -0.219094 -0.304765 -0.234418 -0.828704 -0.456281 -0.465726 0.013530 0.940636 -0.559093 1.240108 0.871989 0.811711 0.069342 0.816271 0.061336 0.506698 0.193585 -0.585749 0.561909 -0.811888 -0.291036 -0.238146 0.555736 -0.522506 0.233488 0.410421 -0.665497 -1.068940 0.813032 -0.322443 -0.078387 -0.326810 0.130730 0.037854 0.257575 -0.437428 -0.797728 -0.590418 0.428937 -0.262187 -0.393506 0.058930 -0.017509 0.129300 -0.061678 -0.523020 -0.069025 0.711823 -0.691932 -0.406374 0.822275 -0.246302 0.932990 -0.058676 -0.142562 -0.011403 0.143840 0.564911 0.237169 0.042260 -0.769267 -1.717989 -0.332815 0.045070 0.128518 -0.157445 0.233354 0.544237 0.378639 0.625688 0.954885 0.274294 0.864967 -0.158950 -0.122435 -0.193483 -0.918533 -0.220086 -0.124562 0.257362 -0.228299 -0.211043 0.003371 0.485809 0.110113 -0.188014 0.599637 0.176132 0.349379 -0.095216 -0.050059 -0.185135 -0.673609 0.237118 -0.317683 -0.560373 0.359056 0.886264 0.316319 0.442005 -0.310466 0.092298 -0.132314 -0.500882 -0.261343 -0.198424 -0.303624 1.028823 0.476473 0.625969 -0.538185 0.136242 -0.348273 0.053461 0.210184 -0.269982 -0.780570 0.323614 0.076866 -0.338645 0.577593 -0.071222 -0.311335 0.457395 -0.301650 0.073082 -0.566311 0.631452 -0.534809 -0.048999 -0.360933 0.031637 -0.500286 -0.530665 -0.335488 0.138234 0.870648 -0.091440 -0.374095 -0.038851 0.608500 -0.049961 -0.728291 0.937780 -0.236125 0.744797 -0.188071 -0.516050 0.007166 0.892033 0.273902 -0.267237 0.422684 -0.880011 0.489281 0.189416 0.005256 0.215594 0.514148 0.253798 -0.066559 -0.427304 -0.536543 0.239129 0.023528 -0.324882 -0.196979 -0.325356 0.819351 0.437532 -0.202045 -0.238599 0.513879 -0.439807 -0.346180 0.659546 -0.331310 -0.267243 -0.144135 0.139226 0.864119 -0.542623 0.045379 -0.726908 -0.213949 0.236599 0.157785 -0.863160 -0.033107 -0.095566 -0.175322 -0.432830 0.451080 0.061563 0.571850 0.076459 -1.010314 -0.561513 0.149036 -0.330570 -0.589421 0.378972 0.542197 0.839384 0.269438 0.522093 -0.392272 -0.094251 0.062041 -0.483306 -0.177424 0.058258 0.057108 -0.664114 0.766229 0.095960 0.161468 0.324147 0.369564 0.236681 -0.650652 0.919736 0.538091 -0.755973 0.110334 1.019537 0.608695 -1.063980 -0.453279 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLenUtil(char (*) [3], int, int, char) = -6.014950 -11.104378 10.444198 9.628156 2.296468 7.265237 3.858272 -3.634233 3.095296 9.167046 -3.537945 7.190019 -6.561822 -2.145695 -0.655486 2.361107 -2.681375 -6.733081 0.731643 -2.438233 -1.928001 -4.814534 -5.579856 8.452915 2.633786 -1.752068 -3.474021 -0.577960 -12.511568 -10.964354 -2.054480 -0.341528 5.131946 -1.950126 2.342563 -14.317805 6.138179 11.924059 -0.828525 -10.534051 0.689711 -3.442261 -2.783159 3.150242 -2.938348 2.996628 3.787972 -1.191821 -1.104628 2.872834 4.399315 -0.931937 6.234434 13.923923 2.329793 11.105740 10.460695 -0.168914 2.339316 1.717975 2.810820 -2.276978 5.965074 3.791804 -2.190688 -1.748881 -0.740780 1.088603 -5.536119 1.765400 2.088801 -6.147197 -2.339240 -3.489683 -5.496981 -3.551478 -0.818636 1.047389 12.482442 -4.967398 13.954797 6.531379 6.517024 -0.352882 8.554538 -0.901626 8.600057 3.565656 -6.031619 1.644489 -4.524167 -2.333152 0.520113 8.237640 -7.583743 -1.668988 5.671856 -7.172037 -11.723336 7.631130 -1.296180 -2.734473 -5.923313 -1.085094 3.426382 2.635721 -4.901170 -9.209812 -7.628828 5.660895 -4.218723 -6.080268 -2.309924 -0.278453 0.176231 1.713235 -7.630000 -0.410138 8.022910 -6.456769 -5.172035 8.375235 -0.274327 7.327582 -1.954211 0.740619 -0.170039 2.926001 3.403501 3.150022 -0.075107 -3.041077 -12.536651 -0.320510 1.485140 -1.101157 -4.280540 -1.474551 4.455722 4.421860 4.002882 9.092213 -2.826232 9.662251 5.943335 0.673878 -4.168516 -9.289399 -1.416076 -6.273602 1.884947 -5.227329 -5.397024 0.198684 7.076107 -0.134597 -0.068540 7.138089 -2.932376 6.804605 -0.129686 0.550361 0.624776 -5.293734 3.004912 -5.063720 -7.896130 5.374532 9.151430 3.376840 2.768104 -2.521039 0.022094 -2.499911 -7.047193 3.085864 0.072482 -0.596106 10.204131 5.352868 21.108954 -7.157838 1.673370 -2.388962 -2.186413 2.219395 -2.450494 -10.005830 1.486289 2.163427 0.193096 12.465522 -0.188916 -4.959290 3.360216 -0.867970 0.467650 -7.324811 10.150937 -6.965737 -0.041849 -2.661217 -1.890445 -4.444568 -4.106870 -5.962424 -0.598861 11.333858 -8.051870 -9.031945 4.242353 0.935086 1.232086 -12.975504 10.111028 -4.659616 7.140014 -3.915049 -4.874022 -0.084467 5.118937 -0.347940 2.378518 5.108199 -7.569802 5.553173 7.326723 0.629383 2.608263 3.070129 3.540333 -2.020973 -2.291435 -6.364434 6.310117 0.946617 -3.290722 -3.632116 -4.315891 5.693566 1.546384 -1.405523 -0.942379 6.738025 -4.540820 -2.821571 7.670321 -0.649127 -4.560241 3.585478 0.928377 7.454903 -5.208956 -1.498161 -5.015741 0.500070 2.294564 3.997937 -11.092827 -3.827394 -6.294586 -7.806654 -3.589261 5.508127 4.049638 3.532218 0.463648 -11.745521 -7.215970 10.343672 -3.680327 4.483898 6.305438 7.797272 8.386922 4.297467 3.788064 -2.649074 -3.796080 0.080180 -5.103496 -2.664230 -0.385718 3.307049 -4.634913 8.551093 3.467537 1.333418 4.497640 1.737411 3.623093 -6.382150 11.359084 5.912594 -7.297365 1.963134 6.935644 8.755263 -10.742836 -6.079441 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__int const& std::max(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLen(char (*) [3], char) = -4.710505 -8.251620 7.424054 6.858776 2.435135 5.378536 3.305754 -2.684114 3.460049 6.869934 -3.322792 5.538708 -4.638387 -1.905510 0.269450 1.753562 -1.748510 -5.348768 1.149808 -1.050844 -0.659114 -4.525795 -4.035831 5.920482 1.635349 -0.836585 -2.435249 0.635007 -9.685179 -9.100224 -0.333872 -0.544596 3.695807 -1.686407 1.764890 -11.104573 5.059777 9.010500 -0.361153 -8.835029 0.259549 -2.326130 -2.429736 2.527063 -1.091113 3.151369 3.085351 0.173980 -1.028665 2.422202 3.101336 -1.383035 3.952007 9.217801 1.270029 8.381618 8.214998 -0.215187 1.744567 1.141999 2.083726 -1.598096 4.660890 4.340222 -2.455413 -1.067397 -0.018627 1.249623 -5.799464 1.309349 1.872799 -4.606300 -2.593620 -2.269318 -3.320120 -1.774193 0.566582 0.212371 10.381400 -2.257917 11.312118 4.932579 5.990974 -0.888415 6.015526 -0.954813 6.369524 2.815008 -5.627467 0.332252 -5.101379 -2.701646 0.176233 6.654611 -5.083341 1.730968 3.448381 -4.066390 -8.104084 4.919691 -1.196526 -1.737875 -4.888249 0.403815 3.450424 2.158253 -2.325770 -7.055663 -5.729782 4.219943 -4.236285 -4.504528 -2.406892 -0.185444 -0.668043 1.228738 -5.405514 -0.987046 6.256250 -4.918840 -3.708054 5.565186 -1.959078 5.138258 -1.728334 0.248828 0.257285 1.389896 3.047710 2.144917 1.911428 -3.918150 -10.556540 0.509415 0.764837 1.086037 -3.370226 -0.862463 3.555716 2.894588 3.063911 6.163841 -2.216651 6.510766 4.592308 0.328299 -3.026417 -7.025425 -0.949436 -4.456443 2.385226 -3.888283 -2.762760 -0.454624 5.324988 -0.692372 0.249905 6.023944 -4.060759 6.053628 -0.099044 1.060918 0.328378 -3.233600 2.067794 -3.635442 -5.425360 4.357224 7.003307 1.368563 2.340161 -2.299582 0.063726 -2.252997 -5.589821 3.182136 -0.569146 0.601773 7.125710 3.164528 16.328346 -5.014281 1.032154 -1.474220 -0.726536 1.353121 -1.535811 -7.232786 2.414085 1.201470 2.021015 9.686163 0.113443 -3.910455 1.687905 0.151653 0.201637 -5.413804 8.532129 -5.127073 -0.187716 -1.389823 -1.839350 -3.134824 -3.328659 -4.347821 0.748549 8.357531 -3.441486 -8.225724 2.812027 -0.880122 1.467323 -9.995852 7.728260 -3.822438 5.331249 -3.010306 -2.860865 -0.181865 2.728314 -0.049724 1.326478 3.703946 -4.974956 4.710830 5.512595 0.563300 1.456340 2.444974 1.681089 -1.350789 -1.889259 -4.209866 3.889053 0.791792 -1.653075 -2.487125 -3.187111 5.038203 1.150083 -2.189031 -0.515606 5.940683 -3.738030 -1.492375 5.053426 -0.715804 -3.636501 2.775908 1.198754 5.435833 -3.281798 -1.345147 -3.728977 -0.026957 1.679811 3.210439 -7.800823 -2.998092 -2.896875 -7.551759 -3.061612 3.676393 3.398339 2.888074 0.938262 -9.023036 -4.712089 7.064313 -2.009638 5.608839 4.163253 5.597369 5.553296 2.679586 2.175836 -2.480947 -3.138049 -0.204433 -4.584236 -2.136562 -0.232046 2.530083 -3.264024 6.170171 2.466602 0.631695 2.516310 -0.010528 3.103139 -4.330181 9.171426 4.644127 -5.049076 1.162445 2.701014 7.905540 -8.353582 -4.585883 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = -2.493337 -7.720032 8.851836 7.868557 0.031580 4.681633 2.116610 -3.427088 3.328671 2.784182 -3.491262 5.241437 -4.794349 -0.671576 -0.837587 1.454255 -5.021396 -5.243129 -0.172858 -1.527536 -1.071678 -4.033178 -2.869583 6.353941 2.177193 2.863020 -3.138403 0.899021 -8.725912 -6.119440 1.797112 -0.417114 4.125666 1.674027 2.393031 -12.802638 5.217314 8.411668 -0.774728 -9.023440 0.893783 -3.069394 -2.708351 -0.621741 -2.468456 2.613506 1.907133 2.365050 -0.589846 1.483305 0.032051 -0.205857 3.169165 9.796498 0.999925 7.469417 8.406529 -0.000235 1.570786 0.087854 2.284160 -0.419329 4.018358 3.981809 -2.321932 -2.531602 -0.559140 -1.043470 -5.341473 2.599129 2.150615 -3.156066 -3.427014 -2.775671 -4.950937 -1.179641 -0.073457 3.191353 10.231566 -4.267218 9.609025 3.748110 5.178251 -0.591786 5.417725 -0.289122 6.373468 3.213386 -3.970111 0.558292 -6.576366 -3.364004 0.953498 2.882445 -5.449959 -2.411238 3.684230 -7.298046 -7.919350 4.139747 0.093524 -2.575920 -3.099259 -0.134155 3.139520 2.459929 -2.363805 -6.040165 -3.908177 4.215501 -2.969812 -3.944995 -1.883154 2.263363 -0.409887 -0.523140 -6.795636 0.537394 5.522379 -3.719580 -0.877702 5.808325 -2.052328 3.793608 -1.867610 -0.156008 -0.752019 3.816985 2.180243 1.375041 1.633489 -2.553220 -5.774669 1.336105 1.476852 3.161989 -4.028333 -1.710221 2.832718 3.110317 1.735259 3.496688 -2.043782 4.901080 3.162286 -0.701190 -3.963284 -7.250579 -2.909478 -6.174999 1.186230 -4.100196 -3.244583 2.566112 5.525741 1.818465 1.212223 6.063106 -4.471752 4.997439 0.105364 0.925887 0.934468 -1.159656 2.092662 -3.544250 -5.714433 4.867739 3.913608 2.503053 2.083634 -1.757547 0.140140 -3.027871 -5.488644 4.181213 1.227141 0.988995 7.256824 4.268519 10.972361 -4.733251 1.061579 -0.484375 -1.598212 0.785953 -0.817212 -7.154320 2.849618 1.202474 1.968924 9.300414 -0.325144 -3.220710 1.873312 0.292273 0.576841 -5.158121 6.349381 -4.762598 -0.461450 -3.268635 -0.121547 -2.844348 -3.117304 -4.971365 -1.418990 8.942918 -6.094699 -7.669657 4.135966 -0.576229 3.448007 -9.701550 5.472550 -3.705154 6.968530 -1.247775 -2.693010 0.519214 -0.970414 -2.001715 1.116954 3.735097 -4.415537 2.650011 5.304953 1.308658 0.688990 2.026800 2.577723 -1.673937 0.286717 -4.708434 4.153137 0.193238 -2.220327 -1.388256 -2.944320 3.455328 -0.055707 -0.593002 2.440187 5.129454 0.532823 0.643044 4.672845 0.785787 -4.050346 1.996413 0.500933 4.365070 -3.577220 -1.633228 -2.853565 1.556346 1.011892 2.922881 -8.080468 -6.063443 -6.556791 -7.639815 -2.565489 0.506916 3.320922 1.789573 0.001399 -8.434492 -5.374218 5.848813 -2.475815 6.628932 4.833156 4.628596 5.930820 3.861412 -0.112710 -1.670791 -0.399423 1.712802 -3.331388 -0.784927 -3.446055 4.061416 -3.046451 4.840721 5.705933 -0.593041 3.581845 -0.942358 5.422427 -4.338891 9.950361 4.411204 -7.031169 1.113003 3.402306 6.037780 -4.118380 -5.024716 -PE-benchmarks/overlapping-subproblems-property.cpp___initialize() = -0.499050 -1.078678 0.733257 0.809708 0.596564 0.639401 0.471292 -0.189193 0.893133 1.096706 -0.556565 0.465185 -0.671158 -0.268238 0.534366 0.377223 -0.110363 -0.853651 0.493991 0.133286 0.046421 -0.915710 -0.230664 0.330415 0.104322 0.162205 -0.147593 0.141291 -1.154178 -1.180429 0.258919 -0.292498 0.456783 0.524890 0.211841 -0.965506 0.672686 0.762161 -0.007841 -1.306680 -0.214924 -0.249004 -0.129783 0.267950 0.739333 0.808783 0.637376 0.393098 -0.031908 0.447758 0.400392 -0.730809 0.209093 0.420009 -0.088921 0.963884 0.953061 -0.090295 0.297582 0.189787 0.312696 -0.256116 0.757352 1.084811 -0.614725 0.025556 0.049854 -0.006745 -1.038012 0.300251 0.405541 -0.123950 -0.566003 -0.179027 0.179540 -0.082664 -0.483084 -0.026962 1.508646 0.007636 1.671547 0.845989 1.282579 -0.353916 0.692149 -0.181775 0.841173 0.359143 -1.209316 -0.026929 -1.139024 -0.901119 -0.173232 0.760154 -0.240899 1.120313 0.066932 0.139265 -0.808520 0.491331 -0.328141 0.262565 -0.920846 0.551877 0.777000 0.385681 -0.055662 -1.017133 -0.754329 0.102964 -0.911675 -0.472553 -0.361332 -0.091275 -0.525980 0.102024 -0.595188 -0.647051 0.692493 -0.908566 -0.460085 0.559967 -0.629859 0.605996 -0.235360 -0.194130 0.131888 0.120943 0.673637 0.306608 0.987922 -0.962230 -1.976778 0.460163 0.208231 0.539230 -0.225185 -0.006231 0.431261 0.202042 0.180353 0.454580 -0.166949 0.683866 0.958924 -0.151666 -0.448202 -0.870945 0.249255 -0.404754 0.745610 -0.613166 0.417365 -0.449095 0.744622 -0.134613 0.235679 1.036631 -1.055821 0.870158 -0.315156 0.517891 -0.017826 0.416602 0.290835 -0.394692 -0.420225 0.481951 1.104566 -0.327298 0.542140 -0.735790 0.078317 -0.467999 -0.823810 0.629941 -0.289890 0.024087 0.695588 0.036481 1.923253 -0.730230 0.127270 0.035855 0.387271 0.073736 0.061535 -0.922083 0.796245 -0.124506 0.628185 0.749198 0.033395 -0.596048 -0.022936 0.117619 -0.047966 -0.564509 0.904517 -0.672566 0.011350 -0.132385 0.206670 -0.473218 -0.646878 -0.034524 0.912018 0.978053 0.894773 -1.114947 0.196545 -0.676799 0.190662 -1.206706 0.707116 -0.608283 0.158812 -0.680655 -0.280184 -0.208069 0.380027 0.340120 -0.239718 0.490158 -0.396931 0.740745 0.546657 0.120111 0.072513 0.561631 0.075383 0.083021 -0.508084 -0.180629 0.264715 0.090731 0.267911 -0.217991 -0.455316 1.040999 0.238486 -0.695747 0.192638 1.075433 -0.679217 0.163524 0.360559 -0.218282 -0.551993 0.245550 0.370527 0.915665 -0.307655 -0.103003 -0.570494 -0.314994 -0.075660 0.472944 -0.772127 -0.407120 0.722914 -1.053234 -0.793545 0.631658 0.477279 0.519715 0.435656 -1.082264 -0.210697 0.444804 -0.131397 0.660580 0.144978 0.532001 0.550880 0.304246 0.040012 -0.752798 -0.465153 -0.219013 -0.889717 -0.265758 0.038353 0.267061 -0.481745 0.750173 0.114081 -0.073746 -0.199844 -0.470757 1.072213 -0.405323 1.126781 0.723091 -0.357212 0.162373 -0.056463 1.511573 -0.856923 -0.541707 -PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -2.879663 -4.756387 3.656144 3.294914 1.153353 3.213122 1.281935 -0.623905 1.076886 3.307673 -1.712628 2.852047 -2.435473 -2.081111 0.513269 -0.210989 -0.455216 -2.910503 0.969978 -0.319970 -0.003011 -1.843352 -3.455790 4.322289 0.421015 -0.852914 -0.827678 0.482594 -5.499815 -3.810487 -1.644903 -0.103468 1.851117 -0.467102 1.785835 -3.663019 2.113758 4.912285 0.139165 -4.529916 -0.402753 -1.302722 -0.728170 1.278991 -0.973145 1.702552 2.323861 -0.726797 -1.257246 0.809474 0.649380 -1.197705 1.998248 3.682136 2.110169 4.346984 4.571165 -0.179678 1.512211 0.421984 1.128730 -1.722686 2.394577 1.039891 -1.630213 0.050814 -0.020238 0.858400 -1.803786 0.000390 1.212922 -2.385992 -0.391705 -1.461115 -3.088433 -1.548683 1.357088 -0.138715 4.658866 -1.554913 5.813117 3.287455 3.498856 0.365627 3.989950 -0.309709 3.466190 1.445830 -2.900736 1.346063 -3.095954 -1.650613 -0.281093 2.932993 -2.878145 0.500742 1.803409 -4.108080 -4.627358 3.298612 -1.179398 -0.827397 -2.438521 -0.291519 1.824488 1.315950 -1.704365 -3.314214 -2.573973 2.402816 -2.635729 -2.251183 -0.431695 0.460121 0.320893 0.789412 -2.566780 -0.253121 4.030300 -2.557796 -1.424381 3.598113 -0.538985 3.679491 -0.909117 -0.264907 0.183745 0.636972 2.040235 0.443034 -0.347595 -2.512570 -4.640921 -0.600078 -0.405540 -0.844272 -1.596035 -0.692635 2.840617 1.910932 2.451988 3.722398 -1.394643 3.565096 1.226304 0.508209 -1.045357 -4.403899 -1.433964 -1.723617 0.639932 -1.441720 -2.291718 0.338387 2.720527 -0.197449 -0.657946 2.448921 -0.478660 2.080712 -0.353505 0.437128 -0.525897 -2.402245 1.054689 -1.830662 -2.649481 2.255482 3.871143 1.595324 1.581965 -1.672271 0.205583 -0.542819 -3.117150 0.828788 -0.218335 0.397042 4.387472 2.071411 5.986927 -2.298573 0.094032 -1.771846 -0.411740 0.913026 -1.079839 -3.568683 0.476398 0.797456 0.426117 4.783835 -0.173121 -1.754938 1.277557 0.132989 0.006186 -2.899844 3.881681 -2.873589 0.430299 -0.616422 -0.533499 -2.571890 -1.855265 -3.059410 -0.598377 4.318931 -2.073469 -3.897985 0.825940 0.937050 1.312584 -4.749304 1.908397 -1.743446 3.830807 -0.788780 -1.656156 0.063103 1.258038 0.610373 0.185723 2.032784 -3.207712 2.371414 1.209022 0.134469 0.939848 1.792451 0.721137 -0.925675 -1.711436 -2.691351 1.442298 0.087428 -1.042803 -1.208295 -1.641540 3.034838 1.536659 -0.944813 -1.705320 2.441804 -1.997664 -1.316130 3.055184 -1.659015 -1.737224 0.369914 0.674619 3.216209 -2.069455 -0.501630 -3.010239 0.195238 1.578467 1.145836 -4.363542 -0.926943 -2.280190 -3.062025 -1.928628 2.166151 1.068007 2.276568 0.566050 -4.337731 -2.513027 3.822869 -1.057092 2.015635 2.203954 3.124616 3.603461 1.171736 1.753908 -1.839273 -0.871754 -0.253361 -2.811473 -0.901202 -0.154811 0.912580 -1.746020 3.831566 1.029240 0.507647 1.503882 0.280999 0.961145 -2.625905 4.071951 2.674263 -3.643574 -0.256947 2.480673 3.358338 -4.979915 -2.501889 -PE-benchmarks/overlapping-subproblems-property.cpp__main = -0.836273 -1.791464 1.643002 1.396477 0.081466 1.056319 0.493808 -0.347645 0.925242 0.353873 -0.723402 0.840433 -1.200262 -0.394684 0.023705 -0.064430 -0.915421 -1.380129 0.317779 -0.182235 -0.151172 -1.005780 -0.794729 1.412077 0.233885 0.455181 -0.451271 0.096268 -2.102783 -0.470639 0.469703 -0.288274 0.868468 0.728888 0.621240 -2.465600 0.813418 1.449231 -0.081675 -1.951140 -0.087725 -0.906546 -0.017266 -0.382400 -0.274154 0.536084 0.791088 0.526753 -0.088421 0.077134 -0.303766 -0.517793 0.094452 1.844298 0.155451 1.426400 1.613986 -0.068344 0.305818 0.022735 0.506145 -0.450254 1.026021 0.843048 -0.948577 -0.261110 -0.048101 -0.479643 -1.147639 0.458156 0.578333 -0.199694 -0.624204 -0.464356 -1.261656 -0.538056 -0.001929 0.674494 2.173397 -1.025285 2.182942 0.973634 1.610574 0.076592 1.369079 0.044668 1.440316 0.555586 -1.224682 0.333715 -1.960467 -0.667033 -0.157713 0.353865 -0.772377 -0.368633 0.593166 -1.618994 -1.711262 0.957415 -0.288181 -0.058573 -0.913962 0.107776 0.902726 0.752611 -0.770010 -1.412814 -0.848144 0.705578 -0.874143 -0.675678 0.035142 0.395200 -0.179499 -0.684092 -1.320707 -0.252114 1.235297 -1.079082 -0.140232 1.495437 -0.831933 1.090100 -0.274358 -0.189886 -0.124077 0.987625 0.736714 -0.041346 0.314827 -1.090274 -1.564165 -0.059491 0.071599 1.248675 -0.657521 -0.355270 0.780726 0.603983 0.351503 0.332402 -0.244567 0.911579 0.470590 -0.294799 -0.705428 -1.602328 -0.385037 -1.225385 0.251191 -0.877549 -0.367638 0.649493 1.207623 0.722889 0.197249 1.584145 -0.779621 1.071656 -0.265792 0.180115 0.116043 0.110740 0.603389 -0.744878 -1.015319 0.833773 0.871721 0.541920 0.623390 -0.837416 0.052143 -0.748680 -1.251065 0.545920 0.376998 0.219770 1.568867 0.776139 1.214488 -1.496808 0.184576 -0.215472 -0.061320 0.214529 -0.118616 -1.499345 0.727569 0.213516 0.018097 1.418258 -0.153169 -0.854927 0.385394 0.054252 0.185488 -1.098330 0.866411 -1.077116 -0.113630 -0.796542 0.305784 -0.983692 -0.836764 -1.080756 -0.309155 1.816078 -0.776383 -1.562793 0.635594 0.162807 1.118307 -2.039198 0.569702 -0.838483 1.705146 -0.361000 -0.503842 -0.031868 0.073971 0.060256 -0.043220 0.844347 -0.976353 0.660010 0.811442 0.328031 0.347171 0.793300 0.647661 -0.127634 -0.319335 -0.825191 0.587576 -0.081692 -0.470512 0.040801 -0.711552 1.105199 0.427401 -0.078135 0.572126 1.334354 0.082807 0.465798 1.144570 -0.262267 -0.794638 -0.121444 0.084702 1.324412 -0.749285 -0.167703 -0.993006 0.392451 0.190462 0.416613 -1.717782 -1.549653 -1.021173 -1.512185 -0.655000 0.158585 0.261461 0.655549 0.322072 -1.822196 -0.780091 0.655331 -0.575958 1.546382 0.736207 0.945684 1.438569 0.900857 -0.293005 -0.909773 0.479022 0.279537 -1.008562 0.035087 -0.939502 0.654489 -0.963540 1.247032 1.103138 -0.181599 0.370474 -0.136051 1.405457 -0.970211 2.056407 1.145304 -1.650026 0.226960 0.844929 1.513540 -0.581503 -1.060660 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__maxProfit(int*, int) = -7.880297 -13.215932 13.245209 11.424453 3.625140 9.140753 5.905678 -6.266901 5.832801 11.425769 -3.243962 8.289258 -8.010857 -3.508555 -1.699389 2.440765 -2.479419 -8.520914 0.182807 -4.067963 -1.580646 -7.331709 -6.202940 9.875437 2.755145 -3.239298 -4.751646 0.010019 -17.146818 -16.139822 -1.371286 -0.221438 5.800788 -5.409604 2.578512 -18.645539 8.874300 16.152351 -1.368839 -13.858774 1.022191 -3.716044 -3.815738 4.618645 -2.462181 4.245582 3.326382 -2.395584 -1.203385 3.325667 6.290740 0.042544 6.982612 16.887369 1.102624 14.170831 12.962308 0.527164 3.073477 3.382286 3.164671 -1.453417 7.188183 5.404437 -2.948326 -1.696095 -0.111780 2.449053 -8.452354 2.887156 1.574574 -9.428159 -3.032317 -4.226539 -10.052431 -3.755040 0.196025 0.222962 15.873877 -5.180105 17.614588 7.443130 8.397893 -0.557884 10.608404 -1.407954 11.846429 4.342337 -7.846199 1.621324 -7.649401 -2.964620 -0.043057 10.536093 -9.577085 -1.151924 7.276363 -11.091190 -14.304486 8.939567 -1.291134 -3.374471 -10.138328 -1.537626 4.716040 3.239548 -5.659814 -12.350611 -10.450475 8.518971 -5.500732 -6.986432 -1.240605 -1.230526 0.042221 1.791014 -9.032692 -0.826374 10.282729 -7.533775 -8.524888 10.518947 -2.077398 8.430243 -2.362643 1.211188 -0.825245 1.707075 2.967926 4.794091 0.714936 -4.105149 -17.689216 -2.537605 0.792362 0.046519 -4.418109 -1.283618 4.736467 5.443017 4.563119 11.740212 -4.545900 10.081923 7.235400 0.783576 -4.062438 -10.560090 -1.545581 -8.658856 2.782181 -5.563100 -6.576152 -0.366868 8.823857 -0.443055 0.145682 8.641622 -4.164282 7.466557 -0.005089 0.283640 0.973017 -8.179020 3.457729 -5.521783 -10.800124 6.182220 10.709352 4.482639 3.392632 -2.903615 -0.775774 -2.833041 -9.184448 2.401973 -0.340155 -0.522070 11.997973 6.925440 25.656623 -10.376614 2.158974 -2.464559 -2.612936 3.432330 -4.218043 -12.180066 1.987759 3.221966 1.772179 16.342651 -0.548950 -5.719343 4.067118 -0.789714 1.226801 -9.186090 12.267648 -9.052569 -0.399797 -3.435437 -3.794267 -5.423454 -5.247101 -8.053954 -1.388779 13.602776 -7.993198 -13.189526 7.226958 0.268644 1.874972 -16.884608 11.979306 -5.194939 8.818803 -4.365110 -3.425103 -0.371566 7.099160 -1.091360 2.033198 5.856046 -10.917642 8.558527 10.084905 0.735003 3.280827 2.859029 4.022128 -3.142893 -3.137353 -9.151791 9.131522 0.403408 -5.098747 -3.747619 -5.380029 8.193825 0.975966 -1.585583 -2.090944 8.561257 -5.825545 -3.474937 10.411754 -0.646293 -5.356426 5.611939 2.303468 7.711642 -5.467273 -1.221541 -5.626007 0.154285 2.720999 5.289232 -12.988190 -4.378600 -6.836033 -12.597160 -3.448822 5.255766 5.010032 4.271533 0.758148 -15.559784 -9.261246 13.617926 -4.025260 4.278518 7.710043 9.650971 9.653803 5.937997 3.395180 -1.836808 -4.970987 -0.453520 -7.029381 -5.375636 0.298720 4.489815 -5.900197 10.238656 3.571465 1.819614 5.705073 1.293775 3.526341 -7.758320 14.409463 7.374910 -7.228000 2.687807 7.683371 13.046707 -13.179812 -7.105801 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__int const& std::max(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = -1.331195 -3.356975 4.017986 3.374711 0.332802 2.072115 1.347606 -1.764987 1.772583 1.850032 -1.024866 2.069669 -2.291265 -0.362007 -0.859451 0.849082 -1.731755 -2.407668 -0.176391 -1.145897 -0.579291 -1.873668 -0.963395 2.401067 1.070512 0.242673 -1.472419 -0.162640 -4.239470 -3.223058 0.505032 -0.263288 1.686956 -0.399002 0.712669 -5.450442 2.397883 3.844912 -0.562437 -3.799775 0.540505 -1.299808 -0.876971 0.105984 -0.797460 0.961004 0.733103 0.369591 0.057708 0.804487 0.793352 0.221603 1.501000 4.791313 -0.078711 3.365183 3.345541 0.189877 0.596788 0.553246 0.977020 -0.127527 1.748948 1.494253 -0.766482 -1.019249 -0.355513 -0.262043 -2.277791 1.209056 0.445414 -1.671275 -1.326382 -1.103086 -2.820087 -0.806407 -0.743574 1.101836 4.380083 -2.071156 4.180172 1.620238 2.136062 -0.126286 2.396951 -0.091483 2.866186 1.281744 -1.707215 0.293455 -2.498905 -0.885545 0.162243 1.456163 -2.390773 -1.691606 2.007844 -3.424157 -3.715148 2.057831 0.094581 -0.939877 -1.967590 -0.329907 1.207324 1.155181 -1.616914 -3.032970 -2.113787 1.908149 -0.934237 -1.651580 -0.118312 0.180969 -0.111019 -0.248784 -2.907410 0.025462 2.281288 -1.862203 -1.321832 2.785736 -0.721856 1.803393 -0.625018 0.257338 -0.484341 1.437811 0.727062 1.137518 0.320081 -0.682033 -3.519910 -0.133743 0.650919 1.030799 -1.384215 -0.319423 0.842103 1.391758 0.620649 1.964008 -1.019143 2.141890 1.632517 -0.364304 -1.555520 -2.779982 -0.757131 -2.787899 0.557180 -1.719647 -1.570756 0.698067 2.447572 0.737381 0.557161 2.728682 -1.542200 1.800103 -0.016109 0.080144 0.592577 -1.189485 1.079737 -1.476681 -2.820647 1.742705 2.038759 1.261598 0.842069 -0.706936 -0.048429 -1.304207 -2.160244 0.994273 0.548004 -0.211895 3.130357 1.970832 4.830463 -2.713778 0.518820 -0.120988 -0.808607 0.654272 -0.728882 -3.368966 0.964241 0.726930 0.501306 3.870030 -0.196706 -1.444342 1.210688 -0.298919 0.434237 -2.283959 2.427133 -2.297081 -0.407115 -1.492991 -0.179756 -1.339324 -1.346508 -2.088307 -0.786777 3.793616 -2.603409 -3.125361 2.144760 0.060982 1.053481 -4.338317 2.830301 -1.498272 2.710610 -0.693141 -0.823908 0.055058 0.892167 -0.806709 0.298891 1.627237 -2.411933 1.695364 2.760885 0.527112 0.579685 0.762354 1.511445 -0.844018 -0.047547 -2.235186 2.377242 -0.111111 -1.498407 -0.508928 -1.349061 1.636193 -0.135137 0.017631 0.791274 2.115836 -0.245512 0.130321 2.450550 0.528611 -1.645042 1.286891 0.305239 2.033449 -1.549461 -0.390558 -1.179020 0.521878 0.300085 1.418486 -3.564476 -2.409993 -2.672202 -3.332587 -0.758979 0.342411 1.230287 0.596473 0.018424 -3.940020 -2.545297 2.867129 -1.227371 1.571019 2.188379 2.145258 2.663438 1.974804 -0.029643 -0.443102 -0.453482 0.477163 -1.399525 -0.957326 -0.944626 1.587267 -1.705290 2.149022 2.042374 -0.031939 1.530468 0.043999 1.818264 -2.039329 4.188857 1.935659 -2.423365 0.961820 2.201345 3.239267 -1.991388 -2.044478 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -3.920394 -7.675936 6.201629 5.925614 2.515045 4.860123 3.164380 -1.648172 2.820704 6.678538 -2.464518 4.763262 -4.230000 -2.735609 0.881820 1.307046 -0.822152 -4.874289 1.604229 -0.513202 0.153611 -3.800712 -3.766810 5.748487 1.429251 -1.256359 -1.701218 -0.220609 -8.998943 -8.093032 -1.563654 -0.429769 3.335060 -0.873219 1.858612 -7.170109 4.057836 7.706790 -0.183595 -8.106051 0.025912 -1.786983 -1.503559 2.140715 -0.286204 3.339282 3.393480 -0.730281 -1.235951 2.358597 1.854729 -1.549830 4.021546 6.232986 1.915371 7.320086 7.246061 -0.141388 2.378155 1.119363 1.955330 -2.001124 4.189071 2.940166 -2.134661 -0.379249 -0.562242 1.226748 -4.332472 0.873111 1.474872 -3.502922 -1.959004 -1.654338 -3.896576 -1.742438 0.087047 0.322645 8.117572 -2.288069 9.941761 4.933961 5.515462 -0.590238 5.498051 -0.646320 4.937920 2.500780 -4.880760 0.726479 -5.357117 -3.548884 -0.502325 4.592844 -4.255166 1.381998 3.075636 -4.637128 -7.470022 4.895086 -1.458662 -1.274216 -4.812929 -0.013345 3.080480 2.655353 -2.238292 -6.056452 -5.024605 3.634929 -3.941534 -3.854780 -1.142689 0.084192 -0.466851 1.308031 -4.291492 -1.028095 6.043225 -4.584185 -3.293772 5.187488 -1.351932 5.459027 -1.454039 -0.125954 0.207798 0.803440 3.213943 2.052832 2.076466 -3.903162 -9.500256 0.120972 0.569959 -0.381115 -2.368089 -0.264232 3.391602 2.921155 3.319636 5.948001 -1.802072 5.723383 3.339518 0.278026 -2.280268 -6.659088 -0.812597 -2.893730 2.134054 -2.869870 -1.947626 0.269899 4.612503 -1.117901 -0.173982 4.564883 -2.899871 3.881309 -0.446968 1.174537 -0.346584 -2.578611 1.671679 -2.887966 -4.624205 3.534684 6.804571 1.712242 2.105500 -2.252905 0.409342 -1.256563 -5.293839 1.633272 -0.683752 -0.106229 6.559117 2.922095 11.241732 -4.465192 0.163716 -1.782422 -0.543111 1.349816 -1.698074 -6.538798 2.091932 0.833624 1.715107 7.625281 -0.265517 -3.230501 2.245698 -0.077440 -0.137362 -4.364476 6.474205 -5.064653 -0.161439 -1.019147 -1.426843 -3.278960 -3.441365 -3.963126 0.840427 7.308449 -1.419037 -6.497252 1.918219 -0.853919 0.805390 -8.567092 5.335060 -2.987555 3.665579 -2.070744 -2.429413 -0.446020 3.117906 0.495181 -0.763452 3.369177 -5.237162 4.622106 3.942154 0.319320 0.969085 2.590391 1.313393 -1.064967 -2.332361 -3.992166 2.979430 -0.111217 -1.249159 -2.191933 -2.702687 5.385192 1.495232 -2.199053 -1.024162 4.414594 -3.553899 -1.349769 4.703953 -1.352801 -3.128462 1.925378 1.305940 5.361656 -2.991306 -0.744443 -4.172470 -0.569962 1.685267 3.004555 -6.830233 -1.942311 -1.923994 -5.858702 -3.087893 3.099339 2.732821 2.702822 0.886077 -8.045024 -4.182825 4.978816 -1.574287 1.710430 3.659632 4.636973 5.352452 2.193153 2.285007 -2.372304 -2.620292 -0.527502 -4.355015 -2.608236 0.599935 1.480668 -3.108175 5.711210 1.568706 0.805949 2.076565 -0.780306 2.479665 -4.019175 7.238572 4.248843 -4.482690 0.421989 3.276258 6.342176 -8.101937 -3.978904 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__finalCount(int, int) = -2.231501 -4.256613 3.146817 2.895272 1.599643 2.515083 1.949226 -0.555615 2.448063 3.264324 -1.320669 2.573569 -2.349199 -1.592219 0.902177 0.525979 -0.493013 -2.956273 1.259902 0.118010 0.238217 -2.680022 -1.999735 2.900644 0.506798 -0.409614 -0.878601 0.146264 -5.118660 -3.922301 -0.169267 -0.517272 1.790617 -0.836114 1.176779 -4.950128 2.214101 3.834047 0.018008 -5.198795 -0.261145 -0.984396 -0.260881 0.832130 0.396359 2.066386 2.257402 0.517310 -0.657729 1.243041 0.321803 -1.169478 1.384323 3.435286 0.686526 3.890977 4.180852 -0.071299 0.990132 0.363943 1.127427 -1.296466 2.401213 2.113267 -1.743988 0.036811 -0.041815 0.536131 -3.131408 0.489561 1.324618 -1.341735 -1.428665 -0.709647 -2.281856 -0.816042 0.879321 0.173710 4.892815 -0.994927 5.744521 2.717642 3.870463 -0.009555 2.879612 -0.331994 2.650548 1.355901 -3.372815 0.297135 -4.375468 -2.339105 -0.641414 1.906584 -1.688335 0.637827 1.123453 -2.204871 -3.783743 2.427189 -1.038105 -0.125574 -3.154088 -0.012946 2.454555 1.934716 -1.115765 -3.503190 -3.100105 1.708959 -2.609551 -1.847971 0.024343 0.008732 -0.609173 -0.208886 -2.253581 -1.075859 3.601726 -2.618834 -1.637596 2.773284 -2.072990 3.161227 -0.811007 -0.253543 0.145965 0.435915 2.329315 0.740775 1.729908 -3.143881 -5.499401 -0.181516 -0.148330 1.385649 -1.007238 -0.303556 1.805182 1.453492 1.729855 2.578905 -0.759092 2.410155 1.831611 0.046262 -1.152770 -3.804861 -0.228619 -1.518866 1.652760 -1.421625 -0.282312 0.190277 2.547844 -0.626180 0.045291 2.820014 -2.220548 2.319502 -0.582710 0.849035 -0.258711 -0.465126 0.951800 -1.363577 -2.187181 1.819724 3.650075 0.811212 1.317576 -1.809461 0.349506 -0.780594 -2.999926 0.544323 -0.222592 0.241769 3.273501 1.165905 5.527056 -2.900453 -0.225574 -0.821807 0.200722 0.719229 -0.786695 -3.387940 1.662994 0.258995 1.254179 3.860467 -0.199778 -2.103394 1.242003 0.371623 -0.109056 -2.167155 3.161328 -2.788571 -0.304483 -0.584432 -0.382164 -2.171473 -1.841302 -2.407332 0.777194 3.968926 0.581712 -4.184196 0.806330 -1.050441 1.205217 -4.952010 2.604680 -1.633781 2.102372 -1.221122 -0.765395 -0.226840 1.359819 0.554103 -0.864495 1.822894 -2.611749 2.513010 1.926142 0.281452 0.357790 1.600736 0.481275 -0.262486 -1.462616 -1.879780 1.152625 -0.434166 -0.373949 -0.756451 -1.407530 3.686713 1.066036 -1.372602 -0.439933 2.742281 -1.812457 0.063238 2.607066 -1.120268 -1.792593 0.672494 0.914022 3.138210 -1.405312 -0.171028 -2.582328 -0.034133 0.790486 1.744406 -3.416108 -1.410070 -0.245909 -4.020607 -1.864050 1.698895 1.024879 1.517173 0.819576 -4.539594 -1.668851 2.157671 -0.560542 1.742063 1.715546 2.196777 2.854137 1.200836 0.395495 -1.850251 -0.752610 -0.680502 -2.804313 -1.406458 0.051856 0.727828 -2.020005 3.003769 0.941206 0.081947 0.527057 -1.295381 2.037351 -1.970895 4.307946 2.538255 -2.381862 -0.059696 1.077743 4.672933 -4.077160 -2.146400 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = -0.827991 -1.621981 1.394547 1.197240 0.380963 0.850433 0.746749 -0.195215 1.043600 0.797355 -0.470510 0.839106 -1.014448 -0.305112 0.130416 0.231509 -0.520871 -1.262356 0.407156 -0.101064 -0.137092 -0.979039 -0.552655 0.901648 0.249443 0.015476 -0.446976 -0.221694 -1.906543 -0.777035 0.428110 -0.321498 0.771789 -0.021151 0.344520 -2.622334 0.710997 1.205884 -0.122095 -1.947719 -0.025195 -0.638422 0.135119 -0.098539 0.032015 0.511846 0.811698 0.425080 -0.052207 0.354612 -0.044652 -0.356992 0.180952 1.963210 -0.041839 1.279602 1.463837 -0.023225 0.137018 0.110063 0.512365 -0.440169 0.945530 0.826906 -0.694253 -0.173327 -0.131511 -0.313285 -1.273361 0.342207 0.501873 -0.186443 -0.634539 -0.271149 -0.908630 -0.461857 -0.264854 0.473785 1.994898 -0.846774 2.036903 0.854986 1.524719 0.111824 1.039769 0.047919 1.005898 0.495825 -1.182613 0.102925 -1.688659 -0.599471 -0.245882 0.369307 -0.528350 -0.419629 0.566081 -0.714092 -1.427590 0.931254 -0.270420 0.140049 -1.134853 -0.039104 0.867433 0.918214 -0.746831 -1.351612 -1.171439 0.531639 -0.708650 -0.628118 0.186730 -0.014915 -0.308892 -0.660354 -1.067535 -0.389616 1.149002 -1.060817 -0.497730 1.207079 -0.943970 1.042558 -0.245921 -0.074815 -0.110128 0.720920 0.837109 0.172800 0.595837 -1.064168 -2.080992 -0.093346 0.122150 1.354557 -0.396576 -0.131831 0.474713 0.500413 0.369728 0.445869 -0.060940 0.791226 0.788720 -0.209479 -0.650017 -1.410188 0.141127 -0.892726 0.448099 -0.787976 0.082339 0.428286 1.044771 0.374358 0.204124 1.497988 -0.970714 1.093890 -0.304033 0.174140 0.069893 0.198044 0.505558 -0.580186 -0.891712 0.558811 1.116636 0.342627 0.523801 -0.776162 0.125052 -0.604541 -1.055896 0.242978 0.303986 -0.047609 1.187160 0.521858 1.557111 -1.537040 -0.028824 -0.160710 -0.022944 0.209880 -0.207175 -1.397815 0.707664 0.134801 0.037900 1.189645 -0.116416 -0.935841 0.499857 -0.028584 0.058089 -0.748749 0.823529 -1.013961 -0.344235 -0.533907 0.126304 -0.894821 -0.660749 -0.879102 0.023433 1.592371 -0.184409 -1.432188 0.417739 -0.225504 0.617077 -1.970490 1.138346 -0.688106 1.012055 -0.546403 -0.331026 -0.175170 0.595546 0.118761 -0.206302 0.765032 -0.893369 0.726188 1.099152 0.247707 0.235087 0.658230 0.554233 -0.021632 -0.387829 -0.603758 0.567674 -0.250888 -0.341157 -0.017838 -0.584225 1.245394 0.335612 -0.202617 0.466386 1.131334 -0.263368 0.434153 1.067410 -0.185775 -0.723701 0.119890 0.170806 1.396088 -0.578640 0.017385 -0.930346 0.245966 0.085292 0.532539 -1.375534 -1.116920 -0.429543 -1.472817 -0.538264 0.451596 0.156258 0.380423 0.305173 -1.778849 -0.608571 0.403583 -0.444449 0.968052 0.665225 0.765106 1.232765 0.746725 -0.301124 -0.800470 0.170214 -0.074823 -0.919478 -0.284408 -0.414400 0.379810 -0.962629 1.007289 0.713039 -0.038858 0.180054 -0.172824 1.169413 -0.743043 1.911301 1.027235 -1.079495 0.230265 0.690478 1.879615 -0.883655 -0.864195 -PE-benchmarks/optimal-binary-search-tree.cpp__optimalSearchTree(int*, int*, int) = -9.321219 -14.558424 11.020433 10.280891 4.982380 10.097876 6.426474 -2.757036 4.237899 11.709139 -4.636765 10.136585 -6.355109 -5.346222 -1.035630 0.614596 0.254633 -8.637453 3.115338 -0.856586 0.876823 -7.667376 -9.187097 12.349352 1.522310 -2.757765 -3.236111 -0.165911 -18.963986 -14.591776 -3.003324 0.041479 5.682402 -4.234879 3.580448 -14.387977 6.478974 16.144470 0.308854 -15.098491 -0.056842 -2.938817 -3.492317 6.666373 -2.534459 5.958615 5.497584 -2.521551 -3.258551 3.640997 5.471664 -1.809618 8.154224 12.166556 3.899598 14.375275 12.739338 0.063814 5.348680 1.606308 3.039309 -3.515866 7.282582 5.808586 -3.924523 0.017945 -1.106134 4.690849 -8.680587 0.485859 3.289820 -8.117978 -3.882399 -2.339055 -7.391538 -3.439264 0.371149 -2.144438 15.488723 -1.581335 19.984348 8.818693 10.742191 -2.161901 10.813247 -1.312100 9.292535 4.271135 -9.023305 1.963234 -9.665699 -2.647957 -0.973298 10.457371 -9.950522 2.999294 5.756858 -8.304385 -13.527872 8.989986 -3.135807 -3.472265 -6.814901 0.919746 5.149684 3.974105 -4.557801 -11.960990 -10.098440 9.061032 -7.338009 -7.444074 -2.219883 -0.826995 0.759373 1.855359 -6.015828 -0.847755 12.315036 -7.476342 -6.186171 9.898929 -1.538469 9.895558 -2.521720 -0.219424 0.752352 -0.043743 6.354436 2.362510 1.037963 -8.434295 -19.191786 0.692809 -0.470179 -0.936098 -5.748267 -2.197547 7.208786 5.546998 8.467788 11.846088 -3.412456 9.179748 6.861641 1.392241 -3.112730 -12.764760 -1.800460 -4.639355 2.512750 -3.970086 -5.379038 -1.122707 7.819935 -2.787965 -0.670128 6.040484 -3.605212 8.423968 0.214899 1.105199 -0.892571 -6.493592 2.539482 -4.855206 -9.073211 7.071903 12.253263 4.482429 3.545188 -3.075137 -0.526564 -0.547075 -8.594257 3.676913 -0.489723 2.476158 13.153071 5.807459 23.813708 -6.429639 -0.394876 -4.537956 -1.621448 2.553044 -3.905072 -11.234913 3.600317 2.475696 1.500159 15.958011 -0.965491 -4.371234 4.792581 0.552127 0.698699 -9.436740 14.337016 -8.924437 -0.464067 -1.821362 -4.836399 -5.927000 -5.299274 -9.406114 -0.863160 13.242233 -5.246056 -12.559997 2.164780 -2.144024 0.680548 -14.955318 10.023999 -5.170570 7.607518 -3.504610 -3.848105 -1.002696 6.287158 0.992057 0.461921 5.832734 -11.030490 9.274058 7.910218 0.271743 1.446597 4.374588 1.856092 -2.395216 -5.001826 -8.024229 5.511281 0.705199 -2.061103 -2.866462 -4.775849 9.337196 3.243548 -3.902381 -2.611894 8.948380 -7.046506 -4.619051 8.971616 -3.576926 -4.872319 2.343769 1.982192 8.416992 -5.188549 -1.864991 -8.277920 -1.046244 4.397699 3.524119 -12.502776 -2.197976 -4.837385 -11.697004 -3.563061 4.670871 5.096278 6.623892 1.438354 -16.449302 -8.777556 12.875171 -3.022392 5.636952 6.933221 8.605261 9.663906 3.392143 4.809581 -2.760157 -5.531226 -0.822616 -7.876185 -4.165288 1.209108 2.581752 -5.794743 11.814579 2.052743 1.492294 4.790815 0.637425 3.098320 -7.498255 14.605547 7.875663 -8.586461 0.339229 3.099705 11.985587 -16.404251 -6.956744 -PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -1.411809 -2.041937 1.544771 1.499995 0.819935 1.242526 1.101288 -0.606350 1.565889 1.996485 -0.528659 0.938916 -1.349922 -0.291507 0.317017 0.636140 -0.311707 -1.431673 0.438701 -0.316503 -0.372193 -1.659376 -0.687571 0.937736 0.294255 -0.489637 -0.565791 -0.063387 -2.473030 -2.194797 0.220302 -0.314662 0.889989 -0.768176 0.250473 -3.732278 1.177924 1.804913 -0.158237 -2.506528 -0.045236 -0.765448 -0.050016 0.655885 0.381967 0.832529 0.839386 0.363176 0.164217 0.604207 0.957712 -0.531783 0.518230 2.832550 -0.430813 2.114516 1.823283 -0.072729 0.089990 0.545252 0.454789 -0.409216 1.353315 1.517324 -0.868058 -0.123666 0.110047 0.080319 -1.905367 0.641038 0.414473 -0.822810 -0.943320 -0.446267 -0.540217 -0.574706 -0.635048 0.180622 2.725601 -0.595523 2.988434 1.118314 1.839359 -0.149533 1.495784 -0.318584 1.753670 0.480258 -1.872924 -0.100903 -1.482400 -0.794668 -0.230016 1.426133 -0.707045 0.375674 0.573003 -0.196682 -2.004444 1.128820 -0.455048 0.127393 -2.089993 0.120329 1.222713 0.739967 -0.693719 -2.207902 -2.056030 1.033324 -1.161476 -0.930647 -0.198413 -0.587808 -0.539340 -0.267557 -1.242300 -0.765675 1.526153 -1.451229 -1.516094 1.501805 -1.002389 1.316143 -0.210269 0.098414 0.046971 0.529596 0.738452 0.654043 1.022977 -1.193447 -3.845505 0.129179 0.224796 1.033946 -0.409444 -0.052375 0.617435 0.531380 0.286749 1.273361 -0.283542 1.515641 1.799169 -0.078478 -0.776253 -1.557411 0.569152 -1.136479 0.999993 -1.082977 0.068098 -0.362109 1.373432 0.054072 0.268689 1.776086 -1.569579 1.695252 -0.339489 0.304255 0.260649 0.090171 0.663164 -0.880245 -1.237689 0.702653 1.870461 0.094045 0.554703 -0.874138 -0.044727 -0.683664 -1.420565 0.603807 -0.011806 0.002338 1.598912 0.583371 4.697809 -2.282099 0.378198 -0.062505 0.033364 0.392311 -0.373988 -1.829460 0.842041 0.258263 0.332280 2.067019 -0.083881 -1.221757 0.328424 -0.007009 0.175903 -1.214922 1.617014 -1.377253 -0.356982 -0.429724 -0.301966 -0.891929 -0.940923 -0.777164 0.764456 2.066278 0.055360 -2.156028 0.913167 -0.955756 0.348273 -2.787583 2.568665 -0.957756 0.597944 -1.461944 -0.486052 -0.386682 1.532352 0.287512 0.348810 0.895006 -1.290767 1.327045 1.892624 0.196957 0.566215 0.664883 0.626261 0.061090 -0.722662 -0.785158 1.099658 0.003202 -0.108232 -0.436348 -0.886823 1.746797 0.429093 -0.559630 0.438194 1.937466 -1.173362 0.074633 1.558150 -0.259546 -0.814223 0.735186 0.285213 1.538851 -0.707868 -0.139916 -0.906794 -0.142982 0.132643 0.806765 -1.749658 -0.854167 0.188804 -2.014764 -0.761738 1.185500 0.571163 0.673906 0.465843 -2.579808 -0.736219 1.394843 -0.512064 1.081386 0.615524 1.174798 1.311496 1.011659 0.153434 -0.831136 -0.707281 -0.486994 -1.365617 -0.727317 0.067774 0.545607 -1.222954 1.580491 0.286408 0.086665 0.212236 -0.058774 1.192993 -0.995787 2.276483 1.222844 -0.620600 0.523577 0.709509 2.766071 -1.896312 -1.005475 -PE-benchmarks/optimal-binary-search-tree.cpp__main = -1.213882 -3.790118 4.223367 3.683834 0.396449 2.266732 1.456976 -1.414421 1.614766 1.833706 -1.466649 2.678598 -2.153060 -0.451369 -1.121477 0.888317 -1.772155 -2.590609 0.208845 -0.670958 -0.212086 -1.999654 -1.224708 2.953562 1.201970 0.784759 -1.449390 -0.284684 -4.698546 -3.298860 0.349211 -0.282305 1.827999 -0.033880 0.930405 -4.980394 2.309856 4.123942 -0.395415 -4.374359 0.590411 -1.205194 -1.047281 0.232384 -0.976213 1.360952 1.075030 0.757964 -0.176905 1.104081 0.537854 0.130783 2.099559 4.332942 0.390807 3.604437 3.566611 0.193390 1.077583 0.133666 1.106609 -0.337318 1.750324 1.676756 -0.746337 -1.079744 -0.810150 -0.012049 -2.422936 1.041378 0.689381 -1.378644 -1.865085 -0.818693 -2.539498 -0.600351 -1.226027 1.102104 4.716232 -1.744026 4.717862 1.884552 2.515466 -0.552909 2.336967 -0.022039 2.389505 1.505819 -1.791331 0.262171 -2.938394 -0.964582 0.188766 1.067221 -2.760537 -1.732982 2.005362 -3.465091 -3.871551 2.124634 0.036966 -1.246357 -0.991072 0.092280 1.295916 1.421382 -1.525431 -3.065658 -1.858917 2.012312 -1.028109 -1.873779 -0.323239 0.460320 0.047935 -0.114964 -2.790667 0.192958 2.649322 -1.912958 -0.597095 2.759797 -0.404427 2.036550 -0.757186 0.050169 -0.277476 1.461536 1.370072 0.953549 0.395046 -1.067824 -3.437666 0.911918 0.752292 0.724141 -1.891502 -0.404687 1.158530 1.564761 1.246230 1.946939 -0.979021 1.982917 1.637039 -0.437901 -1.750570 -3.378567 -1.152053 -2.373829 0.525727 -1.619177 -1.626216 0.773786 2.482569 0.395327 0.674366 2.400358 -1.722330 1.891126 0.130864 0.314673 0.436904 -0.827010 1.003034 -1.454997 -2.771559 2.202366 2.301356 1.378532 0.840530 -0.610209 0.096275 -1.106906 -1.985365 1.547562 0.746116 0.221392 3.593324 1.964662 4.369216 -1.790862 0.005287 -0.271012 -0.791794 0.445435 -0.616198 -3.595084 1.493531 0.567059 0.782405 4.066292 -0.272171 -1.149028 1.625133 -0.140533 0.368724 -2.464038 2.845418 -2.438955 -0.555807 -1.438047 -0.105324 -1.344591 -1.365099 -2.446642 -0.865784 4.112840 -2.646569 -2.989300 1.490565 -0.499926 0.908990 -4.158090 2.725183 -1.639891 2.679322 -0.255756 -0.945859 0.087366 0.333469 -0.815293 -0.108851 1.788549 -2.396733 1.790374 2.595705 0.566100 0.042794 1.022858 1.350788 -0.898612 0.030002 -2.162124 1.944947 -0.105251 -1.100006 -0.351322 -1.266787 1.615715 -0.053635 -0.299289 1.167855 2.098372 -0.077184 0.198328 2.128199 0.458484 -1.824262 0.950793 0.153519 2.201646 -1.711333 -0.625205 -1.539631 0.431191 0.460962 1.361069 -3.827430 -2.488013 -3.033890 -3.352058 -0.798391 -0.215127 1.533981 0.728459 -0.046826 -4.276156 -2.888557 3.024243 -1.150376 1.745029 2.440540 1.970017 2.857121 1.732863 0.084135 -0.405125 -0.613787 0.676522 -1.355600 -0.761203 -1.036007 1.500825 -1.780660 2.325315 2.322944 -0.286152 1.580412 -0.258837 1.991838 -2.153997 4.621722 2.116793 -2.958049 0.695162 1.568586 3.108672 -2.392270 -2.254785 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.876546 -1.017857 0.920345 0.733667 0.540435 0.634457 0.349080 0.054689 0.575886 1.075504 -0.482711 0.647732 -0.617249 -0.310051 0.309333 0.261322 -0.099229 -0.917265 0.427901 0.094490 -0.105550 -0.629093 -0.480552 0.505801 0.207840 -0.060184 -0.421066 0.010796 -1.198241 -1.359901 -0.239417 -0.154084 0.488102 -0.232424 0.288753 -1.258429 0.546521 0.885417 0.013814 -1.278893 -0.001211 -0.244405 0.007511 0.385625 0.224524 0.685832 0.871230 -0.018112 -0.083856 0.394849 0.250419 -0.505317 0.157575 0.882624 0.243397 0.901965 0.910628 -0.124758 0.099807 0.182085 0.262892 -0.534486 0.628328 0.627047 -0.593548 0.099238 0.142365 0.113560 -0.776396 0.257336 0.236275 -0.468616 -0.258291 -0.340096 -0.356253 -0.197586 0.334992 0.086172 1.315188 -0.224730 1.378366 0.650891 1.120715 -0.051378 0.672135 -0.228331 0.757463 0.301083 -0.894862 -0.117378 -0.707972 -0.652606 -0.317413 0.977627 -0.309534 0.627693 0.320387 -0.433120 -0.944672 0.597427 -0.342818 0.136083 -1.137775 0.227690 0.819613 0.648739 -0.156808 -0.867718 -0.865081 0.311885 -0.820306 -0.418219 -0.060853 -0.252549 -0.374887 0.158720 -0.645066 -0.389715 0.773221 -0.795804 -0.598152 0.698699 -0.522503 0.869122 -0.148464 0.081978 0.124101 0.262258 0.723168 0.203108 0.404337 -0.703788 -1.667565 -0.031233 0.014589 0.327468 -0.324789 -0.009506 0.346830 0.238617 0.142104 0.474740 -0.480003 0.882375 1.111386 -0.054432 -0.570777 -0.911159 0.156410 -0.454639 0.296768 -0.509938 0.027176 -0.024485 0.622288 -0.041281 0.013055 1.270420 -0.760157 0.735198 -0.185199 0.131808 -0.063869 -0.200309 0.284458 -0.472218 -0.536370 0.379917 1.116387 0.049888 0.392223 -0.602545 0.067598 -0.375680 -0.889321 0.540617 0.071221 0.250507 0.693322 0.238863 1.559131 -0.910453 -0.124031 -0.179867 0.079236 0.033529 -0.114321 -0.959997 0.388546 0.075028 0.412720 0.982195 0.040215 -0.691371 0.320857 0.071276 0.022864 -0.520505 0.839346 -0.761240 0.170610 -0.025514 -0.275242 -0.611615 -0.353060 -0.423655 0.186350 1.005685 0.233040 -1.368476 0.218383 -0.342689 0.373080 -1.479810 0.475673 -0.457548 0.531062 -0.488313 -0.067321 -0.243542 0.393334 0.394941 0.028747 0.404037 -0.434995 0.630826 0.692641 0.043356 0.173270 0.498106 0.215413 0.055145 -0.453214 -0.197265 0.217410 -0.076804 0.032518 -0.209420 -0.287772 0.850699 0.432973 -0.453469 -0.190238 0.800423 -0.683796 0.074924 0.703494 -0.251559 -0.481173 0.201267 0.179463 1.137624 -0.390972 -0.170233 -0.688082 0.085727 0.113834 0.326521 -0.948621 -0.483225 -0.046913 -1.389273 -0.550010 0.599495 0.269538 0.402483 0.205758 -0.935223 -0.347364 0.685197 -0.071232 1.194389 0.252868 0.552567 0.763083 0.371555 -0.050175 -0.623348 -0.339203 -0.288030 -0.823880 -0.346608 -0.009102 0.162929 -0.518892 0.797086 0.211504 -0.005110 0.085286 -0.063716 0.431694 -0.601983 1.131673 0.738474 -0.590292 0.081315 0.116269 1.402078 -1.105141 -0.616264 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -4.585574 -7.629154 7.026375 5.987936 2.395798 5.217024 3.076488 -2.954206 3.200660 6.168140 -2.747532 4.784294 -3.942027 -2.485552 -0.071572 0.687467 -1.113023 -4.938455 0.863500 -1.491021 -0.439131 -4.148416 -3.935418 5.426856 1.131531 -1.074373 -2.215479 0.741240 -9.567857 -9.400394 -0.449626 -0.186079 3.006944 -2.170044 1.911203 -9.769172 4.925443 8.632939 -0.370499 -8.372048 0.033565 -1.633749 -2.637532 3.177584 -0.910694 3.020892 2.491171 -0.756981 -1.351070 2.028723 3.018939 -0.996486 3.209040 8.282178 1.563043 7.748990 7.843776 -0.106195 2.177817 1.967768 1.842131 -1.259109 4.017791 3.818035 -2.080994 -0.163121 0.546663 1.268236 -4.953285 1.497447 1.171138 -5.775504 -1.315846 -2.623839 -4.862471 -1.416217 1.087412 -0.071800 9.278786 -1.961857 10.346327 4.295793 5.805548 -0.933827 5.912644 -1.045854 6.685230 2.627410 -4.996072 0.486008 -5.048869 -2.858909 -0.308534 6.571885 -4.996066 2.500954 3.576640 -5.898682 -7.300381 4.828479 -1.168454 -1.558639 -5.629480 0.033806 3.219093 1.856732 -2.250776 -6.369880 -5.732976 4.576797 -4.336498 -3.667139 -1.432370 0.177028 -0.744324 1.661242 -4.477732 -0.884524 6.229458 -4.296110 -4.449376 5.501150 -1.922321 4.736351 -1.637392 0.102473 0.014551 0.459622 2.248975 1.941364 1.459716 -3.294103 -10.262793 -0.601404 0.194287 0.514965 -2.580324 -0.519700 3.701735 2.896798 2.698757 6.076715 -3.301973 5.639628 4.085568 0.409956 -2.653430 -6.363359 -0.925431 -4.376142 1.635473 -3.289833 -3.211033 -0.037287 4.938733 0.025691 -0.282086 5.251046 -3.405283 4.881661 -0.182094 0.817260 -0.332423 -4.591468 1.583593 -3.216171 -5.442793 3.473818 6.199451 1.525483 2.473149 -2.369813 -0.435635 -1.892769 -5.899826 2.607523 -0.337505 0.634200 6.311310 3.389635 14.142157 -5.663254 0.627549 -1.560438 -0.855819 1.238074 -2.013031 -6.477559 1.769661 1.342387 2.408112 9.125784 -0.004837 -3.039749 1.358039 0.086080 0.365857 -4.755966 7.377065 -4.848326 0.136373 -0.917099 -2.546501 -3.078149 -3.011418 -4.194179 -0.638211 7.484280 -3.663583 -8.365394 3.554534 -1.084301 1.592621 -9.520674 5.706403 -3.138029 5.612617 -2.163027 -1.702778 -0.729268 2.779521 0.083434 1.613664 3.063385 -5.509324 4.889887 5.258365 0.285460 1.728086 1.977533 1.476779 -1.854237 -2.435349 -4.473230 4.271761 0.400350 -2.197788 -2.304992 -2.963447 4.999757 0.853731 -1.714283 -1.439328 4.954741 -3.591923 -1.711591 5.385140 -1.117312 -3.231334 2.765770 1.601950 4.659408 -2.828178 -1.192390 -3.315730 -0.200955 1.720666 2.395515 -6.988076 -2.232689 -3.739253 -7.700155 -2.792705 2.428485 3.262181 2.716702 0.908106 -8.231966 -4.565256 7.232253 -1.693943 4.084807 3.883394 5.324704 5.126889 2.714552 1.967107 -1.567932 -3.092914 -0.249114 -4.854644 -2.724353 0.069007 1.835657 -3.001316 5.800187 1.602295 1.237248 2.696573 0.834716 1.963839 -4.151246 7.642296 4.473569 -4.407999 0.683923 2.898258 7.267181 -7.583823 -4.151158 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = -0.672250 -2.239619 2.774219 2.287407 0.086934 1.287370 0.781768 -1.102448 1.246155 0.798506 -0.925580 1.368677 -1.477499 -0.157406 -0.533888 0.498422 -1.458476 -1.691176 -0.040252 -0.630509 -0.350988 -1.237010 -0.509890 1.511351 0.745789 0.675658 -0.965186 -0.016396 -2.723677 -1.875173 0.689363 -0.256216 1.128187 0.248910 0.579207 -3.675169 1.608111 2.341029 -0.362769 -2.702430 0.342780 -0.883349 -0.641330 -0.182228 -0.487163 0.716066 0.566061 0.697312 0.028171 0.545098 0.138992 0.013797 0.746286 3.070275 0.013373 2.080814 2.321835 0.063205 0.417656 0.270342 0.712512 -0.088665 1.114870 1.176973 -0.593016 -0.712654 -0.223824 -0.498207 -1.577977 0.931114 0.364726 -0.940744 -0.983088 -0.782546 -1.782095 -0.338642 -0.565297 1.042884 3.061065 -1.427507 2.726520 0.990771 1.617593 -0.201474 1.457799 -0.019063 1.833946 0.938758 -1.137190 0.066391 -1.978799 -0.864403 0.109147 0.663322 -1.474570 -0.961030 1.267900 -2.385656 -2.314327 1.235613 0.119117 -0.576711 -1.065820 -0.015621 0.907935 0.878618 -0.935107 -1.836824 -1.170287 1.119714 -0.701390 -0.987722 -0.156665 0.462479 -0.268328 -0.274738 -1.996418 0.013832 1.470634 -1.214670 -0.506730 1.782176 -0.690841 1.064614 -0.479967 0.035595 -0.316382 1.188321 0.583272 0.566973 0.469037 -0.519824 -2.034626 0.253497 0.531304 1.124488 -1.016658 -0.166639 0.635157 0.882514 0.247777 0.831308 -0.770358 1.253431 1.002551 -0.439028 -1.273718 -1.940636 -0.633101 -1.931356 0.327838 -1.264993 -0.897732 0.763983 1.670547 0.831130 0.471608 2.050567 -1.390400 1.283123 -0.051510 0.186868 0.331489 -0.471975 0.704910 -1.015559 -1.749181 1.201025 1.136778 0.670167 0.658173 -0.600176 0.019599 -1.116152 -1.503320 1.035383 0.548534 0.019359 1.993025 1.263671 2.527569 -1.771106 0.212535 0.059836 -0.457183 0.215421 -0.287880 -2.228464 0.920621 0.351014 0.628493 2.426657 -0.087884 -0.908423 0.668872 -0.123761 0.262048 -1.397934 1.449016 -1.456232 -0.299881 -0.989323 0.069797 -0.870263 -0.899372 -1.316352 -0.636663 2.569916 -1.737486 -2.160535 1.410275 -0.209608 0.997011 -2.865530 1.575721 -1.086890 2.069373 -0.252725 -0.479444 -0.016483 0.028239 -0.571750 0.214985 1.068705 -1.330269 0.961636 1.795577 0.437203 0.269137 0.586054 1.002375 -0.586287 0.092854 -1.299473 1.405290 -0.111723 -0.918215 -0.220403 -0.865745 0.997379 -0.159584 -0.008109 0.921598 1.394532 0.201213 0.482991 1.445227 0.434407 -1.220024 0.717657 0.164936 1.423003 -1.021642 -0.384728 -0.716965 0.450830 0.100018 0.839743 -2.364453 -1.980811 -2.052846 -2.353186 -0.627756 -0.223045 0.880716 0.285507 0.048415 -2.474456 -1.606099 1.589995 -0.761108 1.532277 1.423049 1.280004 1.758055 1.330115 -0.315258 -0.389326 -0.077868 0.518045 -0.964577 -0.427069 -0.990569 1.056435 -1.125514 1.261328 1.648540 -0.148412 0.928768 -0.047813 1.505763 -1.317914 2.835424 1.355391 -1.859365 0.561043 1.244322 2.083362 -0.872190 -1.453549 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__computeTransFun(char*, int, int (*) [256]) = -4.006092 -6.333495 5.567621 5.194710 2.165578 4.071563 2.844579 -2.187947 2.799226 5.709059 -2.364747 4.158402 -3.242296 -1.743640 0.354879 1.652305 -0.965378 -4.001255 1.149336 -0.970647 -0.376548 -4.088943 -3.591787 4.237358 0.849243 -0.949268 -1.795386 0.456458 -7.761032 -8.370131 -0.162510 -0.437973 2.486487 -1.151415 1.064056 -9.420393 4.300481 6.865224 -0.237933 -6.439077 -0.217307 -1.594236 -1.874657 2.339513 0.377297 2.594237 2.410270 -0.449710 -0.867345 1.665558 3.030313 -1.362637 3.193321 7.145302 0.175538 6.876686 6.579783 -0.176087 1.962736 1.360789 1.446291 -1.303956 3.595157 4.023068 -1.958446 -0.321708 0.231377 1.111002 -4.125753 0.946822 1.462883 -3.750857 -2.001783 -1.647422 -2.560768 -1.512661 -2.004277 -0.487170 7.952123 -1.553018 10.008519 4.281312 5.756780 -0.835231 4.688389 -0.804960 5.428283 1.937945 -5.340774 0.677887 -4.146832 -2.292527 -0.082131 6.407505 -4.251989 3.005614 2.310929 -2.951459 -6.034641 3.702996 -1.285391 -0.719519 -4.656823 0.218404 2.331904 1.099697 -1.533965 -6.025947 -5.774401 2.976552 -3.725225 -3.202255 -1.677835 -0.632399 -0.562867 0.859304 -3.998460 -1.241416 4.954062 -3.864201 -4.217099 4.068917 -1.221735 4.045362 -1.217191 0.075666 0.196766 0.329458 2.160236 1.742228 1.767659 -3.621154 -11.103145 -0.096551 0.614348 1.067452 -2.271273 -0.725531 2.996074 2.023383 2.541260 5.083258 -1.441534 5.349393 3.931239 0.220587 -1.926668 -5.392759 0.105812 -3.177854 2.646142 -2.772148 -1.977956 -1.714825 3.860397 -0.846859 0.137111 3.978489 -3.010813 5.208709 -0.391540 1.028638 0.012041 -2.525782 1.443802 -2.557460 -4.038602 2.904309 5.588485 0.721983 2.011427 -2.170697 -0.042709 -1.518506 -4.537724 2.783531 -1.293712 -0.114416 5.353580 2.099571 15.647428 -5.012092 1.108327 -1.175153 -0.166077 1.085087 -1.061900 -5.079647 2.268494 0.849752 1.147880 6.938266 0.170519 -2.981083 0.806272 0.142708 0.112204 -3.910659 6.661881 -3.763246 -0.246823 -0.669120 -1.649555 -2.507339 -2.683024 -2.671263 1.445852 5.808175 -2.087425 -6.720851 2.383955 -0.964223 0.503296 -8.050537 6.588321 -2.776969 3.003059 -3.369258 -2.324129 -0.494486 3.626968 0.446969 1.032949 2.664523 -5.003670 4.118468 4.337292 0.294586 1.602049 1.915793 1.083807 -0.797863 -2.255627 -2.989088 3.169730 0.766019 -1.216894 -2.147880 -2.445065 4.943050 1.186820 -1.778446 -0.803855 5.118558 -3.569474 -1.846453 4.655282 -0.954031 -2.506924 2.206306 1.154131 4.099815 -2.282415 -0.906422 -2.986479 -1.094735 1.101835 2.194122 -5.442565 -1.260454 -1.201111 -5.494335 -2.512987 3.366584 2.949087 2.957209 1.075537 -8.213546 -3.529581 6.611367 -1.427118 1.887790 2.663039 4.189363 3.827562 2.000494 2.313184 -2.212912 -2.918527 -0.152003 -3.780509 -1.865473 0.378157 1.804049 -3.020492 5.163149 0.687957 0.634403 1.450328 0.812050 2.529011 -3.031559 6.864385 3.485584 -3.414925 0.781171 2.778461 6.674381 -6.875217 -3.095412 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -3.570766 -6.046391 5.707971 5.103113 1.258601 4.116060 1.882032 -2.234520 3.344434 3.416447 -1.789263 3.805355 -3.805670 -1.269362 -0.444314 0.570479 -2.206034 -4.106938 0.467592 -1.178163 -0.656545 -3.915346 -2.880817 4.873479 0.676178 0.313571 -2.069589 0.282891 -8.263436 -4.336405 1.046543 -0.369758 2.830562 -0.625821 1.360917 -9.268763 3.490318 6.197749 -0.408118 -7.072141 0.263493 -2.719755 -0.803828 0.895709 -0.902070 1.349555 1.572380 0.310084 -0.347694 0.422876 1.002822 -0.309059 2.069542 8.091453 -0.161257 6.141514 5.894697 0.072060 1.190476 0.973444 1.382310 -0.651446 3.692548 3.303456 -2.681208 -0.976660 0.285847 0.153796 -4.437489 1.675745 1.305220 -2.731984 -1.876559 -1.498080 -3.725925 -1.537978 0.539374 1.485279 7.256866 -2.645147 8.186968 3.209319 4.744755 0.012034 4.887474 -0.387428 5.294337 1.714389 -4.110309 -0.008217 -5.902330 -0.951944 -0.051014 2.978544 -3.808176 -0.210227 2.416472 -4.788182 -6.308667 3.305169 -0.799274 -0.876671 -4.015490 -0.193731 2.834812 1.994222 -2.011837 -5.553378 -4.580594 3.975506 -3.165814 -2.964204 -0.676377 -0.483059 -0.242692 -1.216443 -4.067120 -0.567270 4.560340 -3.262080 -2.977966 5.077041 -2.143150 3.523912 -0.897246 0.256708 -0.182011 1.497998 1.754733 0.779599 1.291352 -3.275333 -6.689220 0.345998 0.006489 2.137367 -2.421053 -0.598307 2.213153 1.991087 1.785498 3.137188 -1.591101 3.749815 2.091072 -0.427931 -1.809604 -5.248805 -0.517931 -4.326728 0.980604 -2.612374 -2.370633 0.483443 4.026983 1.408926 0.524534 4.206084 -2.871777 4.143772 0.089579 0.492543 0.654944 -1.110042 1.658692 -2.658063 -4.492203 2.381367 3.985409 1.290661 1.262175 -1.731215 -0.675382 -1.772190 -3.919826 1.851702 0.565299 0.962169 5.695025 2.892904 10.503102 -5.759081 1.034166 -0.863467 -0.855367 1.080492 -1.779104 -5.329351 1.689413 1.396435 0.490458 6.770354 -0.530147 -3.067878 1.123975 0.399665 0.884952 -3.907352 4.970638 -3.947534 -1.045765 -1.835330 -1.313214 -2.714559 -2.672970 -4.147290 -0.722485 6.271157 -3.766644 -6.413082 3.199216 -0.275314 1.881532 -7.840863 4.342628 -2.690222 4.428504 -1.901453 -1.735873 -0.782917 1.973303 -0.583241 0.876247 2.731256 -4.813701 3.573465 4.349004 0.819268 1.782699 1.788312 1.663748 -0.650529 -1.388375 -3.745641 3.382527 0.016724 -1.990055 -0.675549 -2.600460 4.324150 1.000784 -0.781298 0.629152 5.110653 -1.279248 -0.272826 4.651863 -0.506247 -2.429831 1.568252 0.394475 3.480495 -2.198089 -0.556118 -2.921870 0.003857 0.999372 2.115882 -5.953695 -3.474372 -2.741563 -5.674013 -1.193776 0.934593 1.498924 2.481532 0.812498 -8.047924 -3.700557 4.116241 -1.838078 4.226062 2.748394 3.810798 4.454209 3.379888 0.252340 -1.577377 -0.430709 -0.013912 -3.686153 -1.534804 -1.507610 2.377681 -2.420983 4.932444 2.437248 0.300112 2.071382 -0.012531 1.690762 -3.255411 7.119702 3.841174 -4.138456 0.824011 2.178021 6.150855 -4.460428 -3.553397 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.014926 -1.792478 2.648570 2.300307 -0.151279 0.901996 0.478716 -1.141748 1.309210 0.554317 -0.791926 1.234492 -1.421776 0.372992 -0.795145 1.047974 -1.817887 -1.421622 -0.187951 -0.522395 -0.437325 -1.173871 0.193045 1.106513 0.934128 1.135562 -1.038384 -0.150811 -2.044917 -1.519632 0.833253 -0.411135 1.046479 0.514864 0.352189 -2.967253 1.570082 1.786204 -0.452105 -2.337831 0.517408 -0.827268 -0.423822 -0.629575 -0.402716 0.494101 0.311271 1.093680 0.431723 0.597587 -0.011965 0.246095 1.036883 2.772403 -0.385516 1.715295 1.788476 0.181419 0.282729 -0.003507 0.707184 0.216553 0.891143 1.166899 -0.307732 -1.041894 -0.547240 -0.624058 -1.408570 1.129980 0.070995 -0.204556 -1.416067 -0.509859 -1.263859 -0.098916 -1.386208 1.455128 2.728133 -1.527905 2.057944 0.774323 1.118828 -0.241007 0.870474 0.075046 1.272440 0.885976 -0.828472 -0.115405 -1.503807 -0.585119 0.340191 -0.239611 -1.264081 -1.795679 1.086253 -2.151321 -2.070123 0.876297 0.408200 -0.514455 -0.315333 -0.037009 0.753017 0.844363 -0.838831 -1.609822 -0.597325 0.666977 -0.093121 -0.886836 -0.091905 0.324049 -0.196828 -0.287108 -2.016911 -0.035065 0.848687 -1.112813 0.015851 1.388522 -0.257807 0.723553 -0.379368 0.127877 -0.256718 1.409320 0.496452 0.806843 0.436363 0.092656 -0.912146 0.920934 0.811069 0.722444 -0.973357 0.109974 0.095695 0.688677 -0.063224 0.321778 -0.561975 0.782856 0.764681 -0.637125 -1.330893 -1.493147 -0.763417 -1.924613 0.393020 -1.211580 -0.790034 0.695363 1.469601 0.743559 0.831459 1.698095 -1.466354 0.814727 0.071331 0.284050 0.656734 0.194272 0.701762 -0.835681 -1.568029 1.136831 0.823377 0.419034 0.372939 -0.378416 0.091930 -1.109863 -0.731046 1.109948 0.688313 -0.197645 1.721033 0.954520 1.782114 -1.103118 0.255139 0.484052 -0.334427 0.156188 -0.183604 -2.166021 1.095350 0.165036 0.717031 1.755422 -0.130498 -0.723879 0.828686 -0.230531 0.334485 -1.178864 0.948119 -1.250093 -0.528642 -1.159935 0.575118 -0.468851 -0.703746 -0.941274 -0.325678 2.263129 -1.802340 -1.300922 1.408167 -0.201303 0.806534 -2.137920 1.587598 -0.989912 1.545869 0.011148 -0.496849 0.130544 -0.384862 -0.795296 -0.199002 1.034207 -0.813911 0.608849 1.538002 0.522462 0.007484 0.510979 1.057236 -0.392688 0.606040 -0.949443 1.295178 -0.102279 -0.769417 -0.000564 -0.728378 0.558275 -0.493390 0.078812 1.476810 1.154066 0.626303 0.888981 0.875934 0.956988 -1.185005 0.854190 -0.086024 1.089055 -0.992956 -0.267415 -0.385678 0.410045 -0.325060 1.071375 -2.075241 -2.154917 -2.027427 -1.642461 -0.504818 -0.674831 0.856108 -0.153181 -0.103933 -2.048514 -1.607248 1.346597 -0.743119 0.913858 1.318951 0.861790 1.473172 1.427331 -0.516305 -0.187890 -0.012170 0.564557 -0.440682 -0.226682 -1.082750 1.126076 -0.960505 0.776968 1.848431 -0.455167 0.712178 -0.381600 1.301739 -1.080407 2.571290 1.145451 -1.485998 0.785535 1.093110 1.760245 -0.198698 -1.336651 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWaysUtil(int, int) = -3.115124 -4.786502 3.843569 3.562455 1.717429 2.986890 2.439098 -0.875464 2.568427 3.854627 -1.508427 3.032572 -2.671581 -1.544334 0.460195 0.730735 -0.603325 -3.294554 1.170498 -0.153694 -0.101137 -3.022194 -2.619217 3.226557 0.631069 -0.405836 -1.245773 0.153149 -5.965705 -5.209187 0.236286 -0.401084 2.018774 -1.188678 1.098751 -7.041773 2.523333 4.793546 -0.106539 -5.566361 -0.139261 -1.228808 -0.773505 1.088517 0.033176 2.180588 2.223121 0.351958 -0.627415 1.148977 1.042385 -1.158738 1.870170 5.085728 0.354726 4.718205 4.746325 -0.019724 1.278879 0.761097 1.151992 -1.200500 2.692116 2.767589 -1.925021 -0.022617 0.087570 0.567561 -3.653585 0.851208 1.464001 -2.255403 -1.890692 -1.053363 -2.557860 -0.957444 -0.811973 0.090735 6.027125 -1.266153 6.822495 2.966252 4.525773 -0.387330 3.383553 -0.543892 3.639509 1.442812 -3.805541 0.099535 -4.321855 -2.055476 -0.608769 3.488623 -2.408733 1.311291 1.586358 -2.020306 -4.458328 2.682121 -1.078316 -0.315728 -3.582715 0.374757 2.517165 1.673368 -1.162400 -4.241370 -3.974055 2.525021 -3.020857 -2.180780 -0.419013 -0.223769 -0.546638 0.014648 -2.777182 -1.064605 3.934170 -2.933755 -2.445167 3.168802 -1.965617 3.266564 -0.824133 -0.117183 0.174491 0.403920 2.343161 0.958322 1.901981 -3.181759 -7.514283 -0.076910 0.266567 2.087091 -1.408582 -0.282558 1.944449 1.608829 1.840131 2.969453 -0.934722 3.226182 2.337838 -0.049926 -1.486501 -4.232293 0.013383 -1.891935 1.708296 -1.877550 -0.559514 -0.153323 2.862881 -0.511476 0.107542 3.166146 -3.075786 3.732836 -0.435224 0.906893 -0.129598 -1.101248 1.059067 -1.725950 -2.789789 2.018016 4.041563 0.872531 1.289142 -1.866619 0.073250 -0.978270 -3.554571 1.149060 -0.342460 0.296549 3.812614 1.507147 8.561191 -3.735735 0.226396 -0.887341 -0.031311 0.739959 -0.872402 -3.943144 2.172172 0.508961 1.132858 4.969226 -0.157769 -2.403479 1.165210 0.281121 0.089016 -2.693688 4.386755 -3.072700 -0.678401 -0.687910 -1.081359 -2.160232 -2.057563 -2.798581 0.550940 4.624143 -0.879319 -4.971377 1.322845 -1.312707 0.968011 -5.832285 4.396127 -1.864793 2.345296 -1.890990 -1.059015 -0.478706 2.194780 0.541132 -0.206151 1.981182 -3.387524 2.936709 3.172957 0.267644 0.829839 1.747848 0.775433 -0.317360 -1.727784 -2.190970 1.835845 -0.066539 -0.715328 -1.023336 -1.683460 3.918970 1.117256 -1.394856 -0.218155 3.660177 -2.133276 -0.381671 3.128721 -1.002910 -1.917992 0.811600 0.903738 3.324680 -1.648980 -0.381146 -2.693916 -0.386021 0.793388 1.850203 -4.069276 -1.620173 -0.505241 -4.661548 -1.890453 1.900297 1.689432 1.872514 0.804590 -5.630285 -2.342682 3.356293 -0.885377 2.093847 1.920076 2.731725 3.144878 1.575649 0.654098 -1.821305 -1.241108 -0.454945 -2.990220 -1.482773 -0.016155 1.211571 -2.268254 3.630592 0.964885 0.239424 0.932089 -0.582558 2.355548 -2.351025 5.554106 2.831188 -2.671680 0.214411 1.450108 5.545649 -4.841582 -2.450700 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = -1.113314 -1.753164 1.325839 1.198118 0.513384 1.019833 0.791106 -0.132067 0.870534 1.160144 -0.475413 1.028554 -1.084196 -0.395637 0.151268 0.148542 -0.231812 -1.231802 0.379343 -0.036711 -0.211309 -1.045611 -0.917595 1.214847 0.200123 -0.370429 -0.456632 -0.055303 -2.142922 -0.960889 0.015717 -0.154114 0.718916 -0.605541 0.482410 -2.519051 0.671876 1.509296 0.025030 -1.970126 -0.075477 -0.621299 0.084967 0.283079 -0.189512 0.461069 0.866727 0.262957 -0.152060 0.310392 0.311530 -0.436412 0.370311 2.232992 0.169343 1.527043 1.574046 0.003005 0.241172 0.125714 0.422295 -0.572305 0.911299 0.789873 -0.747467 0.034706 -0.019647 0.019975 -1.195354 0.224682 0.555650 -0.636145 -0.623447 -0.465026 -0.791217 -0.495293 -0.199571 0.216543 2.053655 -0.771431 2.212767 0.966907 1.549162 0.121992 1.236816 -0.123659 1.175144 0.410224 -1.271273 0.109735 -1.446488 -0.329757 -0.243472 0.802341 -0.764995 -0.037475 0.581162 -0.452307 -1.613432 1.019705 -0.446224 -0.019770 -1.031251 0.083026 0.820691 0.763217 -0.683685 -1.484619 -1.351827 0.853117 -0.780874 -0.730171 0.023313 -0.142566 -0.169223 -0.515566 -1.022269 -0.358605 1.352393 -1.102946 -0.712678 1.275294 -0.931502 1.288708 -0.197571 -0.078102 0.118086 0.564385 1.017703 0.106465 0.321786 -1.224599 -2.344308 0.025276 -0.037622 0.977051 -0.452566 0.078818 0.731526 0.517656 0.646772 0.864036 -0.149736 1.070988 0.631572 -0.079338 -0.615419 -1.485163 -0.030190 -0.710608 0.454966 -0.733112 -0.172342 0.208845 0.991752 0.243980 -0.080941 1.430453 -0.886230 1.283282 -0.125348 0.088509 -0.055731 -0.196475 0.453602 -0.683217 -1.003383 0.639402 1.349970 0.309120 0.461256 -0.673636 0.027205 -0.449343 -0.983128 0.208791 0.166032 0.123030 1.406324 0.536706 2.584772 -1.344343 0.029136 -0.376283 -0.028721 0.250245 -0.382213 -1.410173 0.572845 0.188606 -0.032409 1.535960 -0.096035 -0.916568 0.553319 -0.040987 0.137687 -0.951063 1.317251 -1.000468 -0.297803 -0.392756 -0.148537 -0.800713 -0.595089 -1.015370 0.030901 1.659909 -0.536844 -1.584319 0.287158 -0.113189 0.533016 -1.926909 1.663906 -0.633537 1.147090 -0.574201 -0.448288 -0.148278 0.797377 0.334342 0.093479 0.731506 -0.933465 0.741074 1.104104 0.094306 0.322295 0.727969 0.414314 -0.029956 -0.556822 -0.663685 0.615188 -0.036435 -0.317978 -0.138964 -0.626679 1.294102 0.538220 -0.380972 0.150156 1.303665 -0.617485 0.055594 1.095853 -0.401356 -0.628391 0.138757 0.151204 1.358854 -0.689724 -0.043210 -1.018858 0.140188 0.289699 0.456433 -1.455914 -0.770623 -0.343513 -1.458892 -0.520534 0.644270 0.261568 0.573237 0.235429 -1.814012 -0.794361 1.000978 -0.434509 1.173940 0.629792 0.932082 1.280687 0.671098 0.093883 -0.693858 -0.038072 -0.204065 -1.005687 -0.265583 -0.132993 0.297989 -0.985374 1.239662 0.470597 0.114438 0.357278 -0.025509 0.623859 -0.877011 1.892271 1.040784 -1.068644 0.138124 0.714696 1.904954 -1.446349 -0.913664 -PE-benchmarks/count-ways-reach-nth-stair.cpp__main = -0.693973 -1.187823 0.978581 0.793417 0.180409 0.575948 0.558624 0.005292 0.672132 0.396297 -0.355875 0.570513 -0.752530 -0.150817 -0.008984 0.066932 -0.396819 -0.921574 0.329572 -0.049387 -0.178285 -0.641373 -0.459730 0.635056 0.142039 0.013063 -0.291531 -0.279352 -1.356217 -0.165235 0.381195 -0.247379 0.540055 0.000118 0.222620 -2.115001 0.319405 0.760720 -0.088416 -1.354053 -0.014362 -0.569906 0.221567 -0.152808 -0.077550 0.194526 0.638456 0.397871 -0.050783 0.162147 -0.104372 -0.298012 -0.001415 1.723344 -0.035705 0.827165 1.033613 -0.009483 0.014423 0.048686 0.379488 -0.408514 0.648338 0.542993 -0.529692 -0.076075 -0.121296 -0.391343 -0.849058 0.190983 0.368982 -0.044101 -0.420422 -0.219316 -0.616663 -0.415377 -0.481518 0.430199 1.426184 -0.790557 1.426003 0.555471 1.138608 0.159387 0.742997 0.105598 0.667010 0.305627 -0.813140 0.084610 -1.130275 -0.198693 -0.201460 0.168710 -0.334079 -0.510696 0.462529 -0.353166 -0.995253 0.688744 -0.238071 0.170598 -0.651926 0.002745 0.540050 0.726846 -0.692125 -0.944680 -0.867072 0.365161 -0.416962 -0.404501 0.213682 0.006824 -0.205261 -0.723305 -0.771874 -0.253124 0.792217 -0.794829 -0.293187 0.920110 -0.691647 0.787481 -0.118851 -0.077227 -0.058652 0.729314 0.673169 -0.042825 0.300221 -0.755482 -1.501547 -0.049367 0.099417 1.255172 -0.312219 -0.054585 0.387567 0.329322 0.284349 0.106405 0.044826 0.552774 0.514540 -0.210263 -0.499630 -1.038138 0.187217 -0.653463 0.194479 -0.622491 0.110846 0.435322 0.723068 0.505049 0.093769 1.201697 -0.677582 0.893736 -0.214812 0.026133 0.011253 0.251384 0.395749 -0.446793 -0.632714 0.303721 0.730427 0.256404 0.354800 -0.580683 0.069536 -0.494854 -0.667181 0.175300 0.389262 -0.057914 0.843094 0.387352 0.973673 -1.223368 -0.040052 -0.179934 -0.067113 0.104619 -0.137526 -1.000628 0.492365 0.121934 -0.223949 0.712277 -0.080696 -0.688915 0.383471 -0.106815 0.060335 -0.500111 0.498559 -0.668825 -0.368363 -0.434162 0.179351 -0.657771 -0.424754 -0.654606 -0.123130 1.123916 -0.394693 -0.902244 0.187888 -0.008556 0.483466 -1.367591 0.948350 -0.485127 0.846369 -0.405283 -0.293344 -0.161040 0.512684 0.178569 -0.050637 0.550663 -0.579251 0.405020 0.867307 0.193186 0.241357 0.553948 0.505709 0.019218 -0.325641 -0.355401 0.356823 -0.175367 -0.331134 0.107289 -0.427286 0.847499 0.338115 -0.022183 0.540377 0.842170 -0.103127 0.407832 0.800359 -0.162430 -0.473815 -0.063303 0.012779 1.140540 -0.444408 0.041598 -0.744643 0.279285 0.057038 0.245361 -0.993273 -0.940054 -0.433053 -0.949400 -0.305795 0.262905 -0.005390 0.249086 0.240819 -1.282388 -0.411253 0.172046 -0.412190 0.832985 0.446304 0.536085 0.952417 0.566814 -0.287168 -0.630094 0.337916 0.023408 -0.628922 -0.030382 -0.391567 0.194052 -0.787030 0.717838 0.550924 0.004670 0.118704 0.116182 0.862444 -0.534992 1.415492 0.768432 -0.887100 0.189306 0.630114 1.317375 -0.476801 -0.622145 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__findMedian(int*, int) = -0.875045 -1.518282 1.707056 1.603313 0.046760 1.164279 0.481729 -0.678592 0.601118 1.115726 -0.121589 0.796933 -1.114740 0.022162 -0.273411 0.568706 -0.703574 -1.012218 -0.217318 -0.779153 -0.552110 -0.803747 -0.531876 1.154341 0.440052 -0.099846 -0.773916 -0.082778 -1.756278 -1.546592 -0.069959 -0.125636 0.826759 -0.373305 0.275531 -2.577144 1.107164 1.616777 -0.201814 -1.346079 0.188896 -0.662840 -0.018076 0.310925 -0.753271 0.429155 0.101329 -0.563215 0.409077 0.207358 0.683727 0.243183 0.801663 2.534348 -0.165432 1.448851 1.136680 0.049743 0.101575 0.236779 0.368179 0.012459 0.664609 0.497931 -0.183186 -0.588480 -0.309759 -0.124860 -0.751345 0.660678 -0.013471 -0.795701 -0.521777 -0.410119 -1.315415 -0.791529 -0.468049 0.530016 1.901002 -1.134439 1.663809 0.457986 0.772789 0.140349 1.320331 -0.050222 1.492922 0.432640 -0.717016 0.507622 -0.005444 0.213257 0.123847 1.262282 -1.146792 -0.826266 0.790217 -1.340605 -1.878463 1.159195 0.030361 -0.208725 -1.000393 -0.472520 0.448475 0.277453 -1.010725 -1.520158 -0.907495 0.938240 -0.080905 -0.778769 -0.151249 -0.255105 0.140084 0.051781 -1.240937 -0.025019 0.644783 -0.904084 -0.880364 1.467667 0.102986 0.785566 -0.106582 0.333553 -0.368100 0.819585 0.182306 0.829485 -0.531233 -0.116443 -1.770702 -0.440849 0.169836 0.048203 -0.726897 -0.462946 0.155247 0.552675 0.125610 1.084584 -0.239490 1.175778 1.105103 -0.086616 -0.590358 -0.872662 -0.275834 -1.547987 0.062797 -1.000918 -0.867868 0.397821 1.054159 0.375934 0.282364 1.281047 -0.367823 1.014065 -0.014233 -0.207322 0.552459 -0.611802 0.424245 -0.804664 -1.338184 0.669981 0.772695 0.750091 0.279198 -0.352776 -0.084009 -0.404697 -0.679078 0.630887 0.227639 -0.259365 1.549294 0.971607 2.727699 -1.289670 0.420602 -0.018821 -0.610943 0.443379 -0.455968 -1.527761 0.209834 0.549642 -0.351951 1.577752 -0.295925 -0.604899 0.596600 -0.274891 0.519882 -1.305899 1.180863 -1.064832 0.084697 -0.895974 -0.430079 -0.709930 -0.508781 -0.771182 -0.392414 1.691596 -1.850743 -1.046608 1.110156 0.522752 0.304664 -1.862429 1.509668 -0.687460 1.283992 -0.644864 -0.589777 0.014415 0.911978 -0.236830 0.594182 0.784462 -1.341940 0.637123 1.323862 0.220467 0.408774 0.292338 0.966998 -0.111104 -0.014317 -1.035654 1.396102 0.088000 -0.687597 -0.374354 -0.719388 0.447018 0.026801 0.196113 0.104047 0.906495 -0.328625 -0.387440 1.277390 0.248459 -0.623245 0.596901 -0.208226 1.002824 -0.928823 -0.205377 -0.525343 0.426513 0.196866 0.361841 -1.782708 -0.826792 -1.559172 -1.034128 -0.462157 0.767882 0.417008 0.402340 -0.006405 -1.674369 -1.175104 1.598318 -0.688379 0.694304 0.793451 0.997937 1.363144 1.086263 0.374125 -0.328134 -0.551720 0.009384 -0.449248 -0.176293 -0.401883 0.759953 -0.884055 0.925714 0.753481 0.051895 0.795465 0.647897 0.438276 -1.060988 1.815144 0.899722 -0.827918 0.757615 1.414969 1.189048 -0.668611 -0.929529 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::sort(int*, int*) = -0.280995 -1.023714 1.473275 1.310462 0.093617 0.602335 0.476055 -0.767602 0.914535 0.443487 -0.184188 0.492254 -1.192597 0.383790 -0.520952 0.661963 -0.854265 -0.990041 -0.221638 -0.478865 -0.203893 -0.884545 0.519191 0.491942 0.642798 0.171880 -0.714791 -0.340849 -1.508906 -0.819656 0.709570 -0.348611 0.825092 0.057477 -0.105096 -1.965770 0.954449 1.065892 -0.307546 -1.245805 0.503569 -0.701765 0.039957 -0.335618 -0.298992 0.281938 0.087920 0.120683 0.691034 0.337081 0.348935 0.184422 0.291194 1.512672 -0.768991 0.914358 0.488286 0.046984 -0.139463 0.036382 0.230119 0.248765 0.733084 0.701430 -0.378437 -0.726377 -0.278541 -0.356432 -1.290366 0.768594 -0.272420 0.070424 -0.881771 -0.073681 -0.840102 -0.196004 -0.047340 0.727643 1.660248 -0.719361 1.160530 0.124853 0.349580 -0.239327 0.507923 0.077950 0.564502 0.356406 -0.505401 -0.208133 -0.755272 0.064711 -0.019321 0.347780 -0.517529 -0.869738 0.668552 -0.840886 -1.231201 0.396437 0.174700 -0.221566 -0.796831 -0.043377 0.379889 0.703522 -0.720995 -1.264004 -0.389767 0.435362 0.294864 -0.546919 0.061491 -0.327161 -0.387755 -0.692569 -1.079292 -0.288261 0.188669 -0.922272 -0.377445 0.941811 -0.541489 0.380174 -0.029500 0.384837 -0.331303 0.938891 0.077575 0.668150 0.321961 -0.082238 -0.832254 -0.227801 0.443410 1.093834 -0.508879 0.029239 -0.404692 0.232690 -0.332283 0.015077 -0.046064 0.365320 0.955046 -0.476797 -0.647278 -0.371147 0.037989 -1.420739 0.179860 -0.830537 -0.100527 0.458007 0.905758 0.280983 0.673761 1.751455 -0.806908 0.524224 0.029631 -0.285534 0.777145 0.081472 0.571806 -0.538862 -1.079737 0.624292 0.433452 0.274518 0.157655 -0.072469 -0.043346 -0.804247 -0.398452 0.364387 0.424831 -0.176843 0.925532 0.514949 0.760532 -0.859244 0.345068 0.505770 -0.234671 0.310086 -0.164584 -1.415526 0.606180 0.205443 -0.144116 0.905998 -0.157838 -0.760620 0.672137 -0.321589 0.417658 -0.954665 0.511536 -0.900702 -0.121408 -1.004220 -0.171916 -0.130514 -0.599381 -0.434254 -0.086031 1.292689 -0.574073 -0.836703 0.854464 0.111400 0.477687 -1.609473 0.997891 -0.672718 0.903348 -0.224793 -0.081877 0.046489 0.363736 -0.399212 -0.162966 0.616825 -0.452786 0.664351 1.313460 0.354900 -0.041465 0.210991 0.892305 0.070159 0.416708 -0.518467 0.935096 -0.039607 -0.463841 0.251092 -0.527106 0.234713 -0.384085 0.057387 0.982584 0.969841 0.210040 0.709217 0.711683 0.803656 -0.502307 0.609876 -0.151461 0.778050 -0.422309 -0.077668 -0.075774 0.550925 -0.249613 0.759502 -1.274433 -1.698268 -0.735367 -1.362896 0.031101 -0.175750 0.343738 -0.093888 0.043958 -1.294729 -0.800537 0.390642 -0.538931 1.328813 0.638800 0.538047 0.790797 1.026338 -0.655155 -0.142736 0.059613 0.381944 -0.229584 -0.189831 -0.593397 0.625026 -0.785085 0.438189 1.014029 -0.340403 0.298598 -0.188787 0.806674 -0.771823 1.670125 0.658567 -0.457140 1.125304 0.448293 1.210272 0.193086 -0.649804 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__kthSmallest(int*, int, int, int) = -15.186190 -29.012475 24.512311 22.564344 7.992792 19.491702 12.160419 -5.000467 9.677120 21.576035 -6.395472 18.807730 -15.625360 -8.630641 -0.036335 3.616922 -3.316573 -18.873000 4.171876 -3.502576 -0.159073 -13.304601 -14.912064 23.735078 4.879698 -7.330543 -8.491481 -2.854399 -35.945303 -23.802284 -5.434410 -0.744115 13.004974 -12.013068 7.319890 -32.274620 14.869222 30.621715 -0.083272 -31.381498 1.410175 -7.399937 -3.050264 9.491409 -7.147583 9.310854 10.603620 -2.309981 -4.257061 7.089160 5.207044 -0.008311 13.357720 31.545838 7.246299 26.290073 25.923025 1.357875 6.294424 2.625392 7.386250 -6.319382 13.683445 7.466459 -6.620226 -2.565578 -3.466956 5.289246 -16.135490 1.968931 6.647389 -13.448785 -5.955381 -4.392186 -18.755359 -8.301621 8.723233 2.174014 30.334327 -10.784912 34.691870 15.140155 19.404624 1.029779 21.157919 -1.412883 17.020401 8.932866 -15.174639 3.909028 -20.285539 -5.374330 -1.408926 13.774131 -18.412031 -7.598234 12.157217 -17.466386 -28.612199 19.339323 -4.704673 -5.796586 -15.165016 -4.256678 11.775109 11.766078 -12.496809 -22.701293 -18.558207 16.134104 -11.072080 -15.091204 -0.481937 -1.406896 1.464580 -0.617593 -15.722515 -1.271923 22.062097 -15.283748 -11.157609 21.282589 -7.104185 20.646064 -4.842126 0.883715 -0.805910 4.008748 12.624168 5.489988 1.058290 -14.963343 -27.726073 -2.354742 -2.010663 2.218569 -9.690060 -3.306351 10.417514 11.956451 14.357419 21.642861 -4.877491 17.840857 11.152725 1.887101 -6.856571 -24.026310 -3.264675 -12.392509 4.163219 -10.125243 -11.049783 3.766819 16.745315 -2.593671 -1.023086 17.129214 -6.574121 14.955315 0.315206 1.557992 -0.031206 -11.040245 5.441297 -10.183049 -19.678744 12.052498 22.161427 10.714335 5.452043 -6.454585 0.164397 -3.187682 -16.525753 2.521099 1.246066 0.850029 25.232936 12.532476 37.298720 -15.400342 -1.278657 -8.072269 -6.361474 6.500945 -9.049855 -24.935451 3.391995 5.694650 1.041006 30.120623 -3.118093 -12.160974 12.640848 0.083480 1.554732 -17.331219 23.835374 -19.121518 -1.574386 -6.468613 -6.767652 -13.625874 -9.702584 -20.016360 -3.992839 27.887145 -12.346686 -25.090851 6.333539 0.876663 4.051480 -31.864715 19.519399 -9.946238 17.360845 -4.521459 -7.368363 0.070090 11.037964 -0.447749 0.486131 12.871067 -20.493233 16.118541 15.342402 1.204614 2.457918 8.813784 6.472012 -4.310990 -7.317903 -17.862766 13.423545 -2.342143 -8.239077 -5.509304 -9.641453 18.240748 5.144289 -4.581982 -5.458455 13.813628 -10.345946 -6.213139 19.079242 -4.906578 -11.040066 6.845882 2.078621 19.337788 -11.220084 -1.000929 -16.971515 2.016404 7.934978 10.050946 -27.022325 -8.068485 -13.900641 -24.339618 -6.870790 10.327692 6.537537 9.379143 1.886748 -31.441546 -18.038622 18.953122 -6.918080 11.910400 16.367141 17.195653 22.233283 9.667274 6.262151 -6.050324 -6.032672 -2.130733 -14.596207 -9.130685 0.746014 5.743127 -12.187024 20.646260 8.391904 3.886452 10.687905 -1.925918 5.005578 -15.621507 29.592723 16.402380 -18.013173 1.387927 12.546302 24.819506 -27.261055 -15.549200 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__partition(int*, int, int, int) = -5.513541 -7.704057 6.944674 6.580923 1.985659 5.592217 2.562464 -3.676005 4.157920 7.047261 -1.938578 4.022767 -4.911741 -1.468320 -0.273201 1.886803 -1.860673 -5.018340 0.230760 -2.484757 -1.735458 -5.005620 -3.465731 5.296130 1.254630 -1.490444 -2.838263 0.798066 -8.971185 -9.711198 -0.530030 -0.450359 3.623377 -2.398453 1.537436 -12.487926 5.284669 8.585652 -0.758881 -8.124091 0.136593 -3.047698 -1.531094 2.615650 -1.625904 2.628705 2.002817 -1.418520 0.194094 1.611829 3.846693 -0.369019 3.439335 10.454537 -0.027498 8.211874 6.783537 -0.163004 0.916476 2.100022 1.708443 -0.852817 5.024814 3.998727 -2.486763 -1.285108 0.326281 1.234721 -5.619904 2.495694 0.823256 -4.978038 -2.175087 -2.476032 -4.836358 -2.815621 0.276295 0.579243 9.665559 -2.897375 10.313757 4.242339 5.121702 -0.085992 6.860282 -1.273886 7.931946 2.247001 -5.549357 0.862894 -3.280230 -2.135796 0.060810 6.664560 -4.800675 -0.047886 3.433164 -5.720270 -8.527186 5.180212 -1.030975 -1.204185 -7.083933 -1.276096 3.837555 1.674541 -3.184168 -7.936865 -6.370818 4.981733 -3.645243 -4.259653 -1.209123 -1.405607 -0.262247 1.056338 -5.388419 -1.351701 5.569682 -4.775097 -5.182809 6.654742 -1.506260 4.515920 -1.143978 0.898667 -0.360933 1.891646 1.336510 3.017489 0.471295 -2.319316 -11.145985 -0.826830 0.453711 -0.380588 -2.472191 -1.271300 2.445237 2.870213 1.363314 6.269247 -2.694526 6.549575 5.761005 0.786705 -2.706628 -5.972004 -0.285569 -5.653956 1.945494 -3.964335 -3.271911 -0.125473 5.486945 0.181984 0.613783 5.501591 -3.244256 5.170299 -0.585199 0.322478 1.430399 -3.578086 2.471335 -3.696187 -5.969484 3.825350 6.489947 2.314107 2.055233 -2.436358 -0.542879 -1.850111 -5.794289 2.526753 0.147135 0.526678 7.007838 3.770977 16.559318 -7.059068 2.174663 -1.022274 -1.189394 2.209260 -2.329184 -7.251354 1.611956 2.002767 0.772213 9.338180 -0.576454 -3.940311 1.491066 -0.146763 1.166946 -5.845326 6.786986 -5.596464 0.173432 -2.095766 -2.502330 -3.419104 -3.337511 -4.154615 -0.080276 8.221801 -4.647929 -7.883482 5.047829 -0.834799 1.836749 -10.460682 6.811130 -3.536780 5.034893 -4.184611 -2.387805 -0.652206 4.522712 -0.147054 2.061450 3.695089 -6.029125 4.813981 6.377163 0.577837 2.677873 1.824204 2.772316 -0.921249 -1.924713 -4.860346 5.389843 0.518127 -1.870128 -2.406397 -3.609355 4.949855 1.033226 -0.891194 -0.558986 6.300074 -3.824655 -1.625812 6.614795 -0.382805 -3.129392 3.198440 0.743432 4.518502 -3.400651 -0.983518 -3.147861 0.292156 1.006104 2.837411 -7.920365 -2.962921 -4.171492 -6.713813 -2.503452 4.220947 2.586896 2.790869 0.777855 -9.065800 -4.512088 7.790631 -2.556683 3.935879 3.667555 5.754839 5.722447 4.286726 2.018246 -2.030932 -3.229342 -1.127780 -4.541584 -2.647385 -0.422743 3.025424 -3.558740 6.673751 1.799506 0.661704 2.817858 1.418495 2.627601 -4.529432 8.280377 4.474793 -3.649019 2.054406 4.172378 7.735118 -7.341362 -4.294579 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.976014 -0.931270 1.009113 0.830547 0.420009 0.609852 0.586880 -0.468395 1.012128 1.046002 0.023285 0.343935 -0.819909 0.046959 -0.068260 0.486487 -0.248227 -0.884097 0.067933 -0.569611 -0.449697 -0.778581 -0.136807 0.136316 0.190312 -0.711440 -0.506900 -0.319548 -1.278454 -0.936241 0.364526 -0.291029 0.535375 -0.862275 -0.093378 -2.602595 0.677018 0.785269 -0.303197 -1.105250 0.130073 -0.654223 0.327795 0.244860 -0.081597 0.103019 0.300870 -0.203044 0.408574 0.259887 0.763869 0.093221 0.024094 2.248451 -0.647009 0.903029 0.541337 -0.038627 -0.353252 0.484797 0.253284 -0.114744 0.816820 0.598762 -0.432725 -0.309582 0.014916 -0.143950 -1.130269 0.462851 0.021377 -0.469254 -0.360042 -0.152869 -0.605018 -0.644299 -0.430808 0.217937 1.430843 -0.676733 1.251897 0.382960 0.790953 0.248809 0.844484 -0.019942 1.052085 0.152167 -0.807070 -0.094696 -0.443260 0.133318 -0.124343 0.734485 -0.256613 -0.579930 0.518845 -0.090841 -1.115926 0.735581 -0.068458 0.254322 -1.476729 -0.323457 0.635681 0.566898 -0.801764 -1.277359 -1.155590 0.524322 -0.308357 -0.464540 0.226646 -0.872622 -0.249857 -0.545613 -0.799664 -0.384044 0.486823 -0.778138 -1.137658 1.076810 -0.658681 0.457824 0.009524 0.332539 -0.250563 0.575207 0.125495 0.516477 0.107518 -0.371744 -2.219969 -0.405816 0.152143 0.854548 -0.049187 0.016611 -0.162858 0.235993 -0.272107 0.515589 -0.072887 0.793085 1.161660 -0.092892 -0.436887 -0.561535 0.643866 -0.967439 0.306001 -0.721951 -0.022023 0.022222 0.812615 0.432996 0.360484 1.283061 -0.665812 1.002443 -0.297793 -0.180402 0.498202 -0.242647 0.567367 -0.507340 -0.808569 0.134029 0.942100 0.221191 0.248644 -0.475827 -0.078710 -0.562609 -0.607182 -0.059711 0.311516 -0.166775 0.726182 0.454701 2.130481 -1.711865 0.318041 0.130537 -0.154140 0.328154 -0.372903 -1.076560 0.204147 0.387140 -0.423407 0.894837 -0.109134 -0.927075 0.225248 -0.207955 0.296671 -0.629584 0.484628 -0.757449 -0.290929 -0.400226 -0.338466 -0.666511 -0.438273 -0.479822 -0.111546 1.083920 -0.439066 -1.071576 0.793754 -0.209547 0.177449 -1.653428 1.509596 -0.552013 0.545196 -0.940015 -0.129625 -0.379266 1.335769 -0.031499 0.391378 0.524000 -0.747621 0.731115 1.505539 0.253856 0.588241 0.199999 0.766029 0.067007 -0.225878 -0.463510 0.965194 -0.206537 -0.373096 -0.015011 -0.530702 0.736945 0.161786 0.105993 0.282609 1.005791 -0.553188 0.184758 1.081680 0.196094 -0.398062 0.528541 0.011022 0.933488 -0.350158 0.106928 -0.358091 0.155022 -0.121610 0.368011 -1.067641 -0.687640 -0.316807 -1.001293 -0.006075 0.789454 -0.108739 0.161755 0.245147 -1.418540 -0.387089 0.595236 -0.499506 0.728832 0.368544 0.665403 0.841897 0.940090 -0.226631 -0.451235 -0.204822 -0.409080 -0.586988 -0.473056 -0.141524 0.443467 -0.801914 0.790745 0.223139 0.081982 0.124715 0.471539 0.403886 -0.562580 1.344470 0.669677 -0.122062 0.677903 0.753580 1.770901 -0.631237 -0.515422 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = -2.924722 -6.895081 6.613200 5.881374 1.345333 4.300345 2.859183 -1.478869 2.715977 4.157010 -1.649124 4.446920 -3.983408 -1.551605 -0.446343 1.166293 -1.923989 -4.739096 0.721151 -1.035343 -0.259428 -3.171821 -2.885430 5.407003 1.586128 -0.749482 -2.329670 -0.895099 -8.420428 -5.003979 -0.370429 -0.434270 3.303588 -1.994932 1.776263 -8.629834 3.759253 7.069998 -0.336041 -7.738513 0.618110 -2.026549 -0.649234 1.068941 -1.787990 2.089214 2.432075 0.401025 -0.647743 1.718949 0.501968 0.235883 2.974440 8.126409 1.263987 6.044722 6.332533 0.373020 1.344024 0.365519 1.978295 -1.255621 3.198442 1.890533 -1.522190 -1.234272 -1.139091 0.342562 -4.025234 0.965002 1.657752 -2.510382 -2.020717 -1.136968 -4.927049 -1.845588 1.036852 1.500369 7.652070 -3.382933 8.002366 3.444197 4.653810 0.343849 4.695109 -0.013477 3.959729 2.348729 -3.361582 0.900057 -5.442015 -1.512445 -0.169633 2.098699 -4.312298 -3.394645 3.145298 -4.875713 -6.879373 4.457725 -0.613114 -1.413694 -3.190957 -1.094267 2.778736 3.130221 -3.225455 -5.327406 -4.011620 3.499261 -2.159730 -3.424153 0.239017 0.121105 0.216881 -0.789202 -4.443348 -0.076948 4.960368 -3.599937 -1.933957 5.170497 -1.898825 4.562095 -1.215719 0.190826 -0.551695 1.895006 2.947497 1.367987 0.421866 -3.090269 -5.882946 -0.298232 0.064779 1.674176 -2.425622 -0.789000 2.021863 2.889151 2.850554 4.235386 -0.982443 3.839156 2.458396 -0.109424 -2.182880 -5.860439 -1.142048 -3.566750 0.962329 -2.675529 -2.491624 1.629390 4.217675 0.168420 0.316603 4.542226 -2.055078 3.432316 -0.046066 0.386162 0.346988 -1.897085 1.553506 -2.440976 -4.766868 3.017039 4.668674 2.727279 1.372727 -1.585608 0.259522 -1.366448 -3.801169 0.784388 0.874929 -0.101985 6.008854 3.209549 7.338531 -3.864797 -0.323758 -1.354747 -1.572743 1.357062 -1.791094 -6.199301 1.305055 1.243231 0.290283 6.885500 -0.750305 -2.950399 3.227983 -0.141034 0.430493 -3.983159 4.919393 -4.525903 -0.753079 -2.166248 -0.711485 -3.282847 -2.314414 -4.799180 -1.375366 6.991674 -3.486590 -5.734597 1.915194 0.258405 1.521490 -7.676110 4.659590 -2.508825 4.607087 -0.722075 -1.684807 0.183816 1.859848 -0.706509 -0.218268 3.206890 -4.599935 3.350602 3.927505 0.651007 0.383362 2.073079 2.068891 -1.133719 -0.956080 -4.177004 3.330935 -0.839135 -2.255273 -0.901638 -2.252068 3.977101 0.764392 -0.616765 -0.074788 3.180201 -1.234929 -0.433699 4.391251 -0.405489 -2.951795 1.548949 0.377564 4.685706 -2.837431 -0.228360 -3.739449 0.954114 1.398709 2.588529 -6.649092 -3.160961 -4.166796 -5.899928 -1.575580 1.605577 1.489038 1.666738 0.249147 -7.477131 -4.487395 4.038087 -1.858691 2.891599 4.198869 3.797755 5.498005 2.794052 0.560663 -1.455306 -0.638530 0.046746 -3.039449 -1.872788 -0.827817 1.856254 -3.177202 4.407514 3.125062 0.401624 2.589873 -0.734820 2.275244 -3.766406 7.653793 3.941273 -4.839727 0.641032 3.454655 6.096257 -5.223321 -3.896571 -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.908631 -3.195464 4.213137 3.718093 0.734571 2.509124 0.795925 -2.092084 1.611920 2.016525 -0.606486 2.169561 -2.621211 0.469667 -1.081431 1.165503 -1.537532 -2.295209 -0.704440 -1.169201 -0.004664 -2.143430 -0.085267 2.469416 1.343626 0.036417 -1.944009 -0.136366 -4.797501 -3.789242 0.888033 -0.361694 2.196863 -1.059688 0.465248 -4.779999 2.963276 4.010284 -0.369515 -3.955527 1.113961 -1.301195 -0.732374 0.336525 -0.854400 1.424685 0.370790 -0.647525 0.911603 1.113781 0.610612 0.771846 1.520812 3.381223 -0.935700 3.044731 2.169147 -0.018690 0.580433 0.149277 0.244281 0.518256 1.742495 1.363506 -0.771703 -1.696776 -0.284007 0.420590 -2.946962 1.439727 -0.433665 -1.043664 -1.598651 -0.521081 -2.929623 -0.226993 1.666868 1.228605 4.225944 -0.990707 3.635726 0.510829 1.042289 -0.199572 2.239076 0.077316 1.582001 1.261393 -1.491030 -0.156020 -2.190171 -0.167429 -0.028864 1.911212 -2.354791 -1.412601 1.783790 -3.037900 -3.102469 1.772793 -0.005395 -1.311373 -2.455123 -0.934177 0.987207 1.722449 -1.559934 -3.211178 -1.315008 2.267032 0.280362 -1.864398 0.143998 -0.926544 -0.593014 -0.869720 -2.278906 -0.147518 1.651475 -1.982760 -1.518633 2.794641 -0.953561 1.388739 -0.483380 1.120271 -0.991697 1.315945 0.384491 1.833866 0.345861 -0.715468 -2.528809 -0.754572 0.618837 1.288796 -1.658188 -0.345258 -0.454649 1.063440 0.330476 1.567064 -0.778172 1.345273 2.657844 -0.424864 -1.190388 -1.716891 -0.065589 -3.047469 0.099574 -1.556474 -1.528967 0.942246 2.396759 -0.187067 1.126753 3.561553 -1.705373 1.036531 0.069364 -0.577326 1.399209 -1.118386 0.849224 -1.457728 -3.116195 1.982778 1.700005 0.965265 0.683546 -0.200005 0.023138 -1.088738 -1.173311 1.232830 0.774700 -0.115869 3.104058 1.890515 3.404723 -1.605238 0.253333 0.448445 -1.425169 0.948743 -0.968365 -3.471256 0.882021 1.042849 0.029925 3.940326 -0.542883 -1.923528 2.075901 -0.346807 0.854011 -2.468307 2.572017 -2.713224 -0.031184 -1.971231 -1.630427 -0.612805 -1.497547 -2.129053 -0.598687 3.605683 -1.751043 -3.056870 2.010954 0.138207 0.677223 -4.745616 1.850257 -1.647069 2.382593 0.177374 -0.040640 0.120419 1.158229 -1.326802 -0.084674 1.718294 -2.226496 2.377784 3.129768 0.590469 -0.461286 0.352849 1.671181 -0.392177 0.221083 -2.290248 2.253379 -0.287106 -0.757510 -0.165985 -1.333645 1.013459 -1.041159 -0.289694 0.287092 1.925998 -0.130446 0.250750 2.600368 1.105053 -0.980532 1.734021 -0.453637 1.574645 -1.276518 -0.475350 -0.740050 1.398776 0.525141 1.971082 -3.722612 -3.138150 -2.435291 -4.044607 0.047774 0.364085 0.931029 0.539846 -0.131546 -3.988989 -2.576583 2.142822 -1.056219 3.327915 2.237303 1.803954 2.064438 2.083875 -0.726176 -0.130215 -0.714737 0.671818 -1.081684 -0.856064 -0.831896 1.759164 -1.553517 1.563603 2.392487 -0.492574 1.577017 -0.389321 1.031313 -2.354051 4.421182 1.976999 -1.532955 1.825128 0.982522 3.053096 -1.308413 -1.718982 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__iter_less_iter() = -0.133181 -0.098240 0.048066 0.074780 0.043960 0.033494 -0.008161 0.018259 0.124233 0.105874 -0.041153 -0.037833 -0.132729 0.013230 0.075533 0.069690 0.016611 -0.094185 0.023167 0.019197 -0.015033 -0.116864 0.023050 -0.032659 -0.006813 0.067460 -0.014194 0.064764 -0.088406 -0.076570 0.007387 -0.058361 0.042503 0.150401 0.025791 0.074127 0.028714 0.053861 -0.013769 -0.088927 -0.033751 -0.053792 0.128142 -0.011976 0.096771 0.113729 0.057173 -0.106225 0.053644 0.031705 0.122570 -0.144009 -0.010241 -0.095924 -0.051398 0.042430 0.008323 -0.008691 0.003682 -0.042844 0.027905 -0.015259 0.059380 0.104002 -0.103463 0.000793 -0.064762 -0.049367 -0.119423 0.047380 -0.119589 0.045019 -0.116651 -0.105250 0.040931 -0.051228 -0.310667 -0.012854 0.147327 -0.047184 0.099609 0.086542 0.098540 0.003029 0.055201 0.011301 0.032602 0.009887 -0.113105 0.118809 0.119222 -0.026179 -0.024526 0.112810 0.008317 0.213370 0.028110 0.039464 -0.063404 0.058685 -0.041313 0.118447 -0.097826 0.119867 -0.011031 0.086619 -0.051949 -0.112515 0.017782 -0.032779 0.085768 0.000000 -0.029226 -0.018572 -0.101186 -0.047377 -0.075587 -0.098578 -0.017169 -0.147171 0.012242 0.071107 -0.053890 0.051979 0.012960 -0.033378 -0.000459 0.196613 0.084216 0.069133 -0.059275 -0.065696 -0.262925 -0.003351 0.035767 0.071397 -0.024935 0.059343 0.016871 -0.075181 -0.043342 -0.049814 0.000580 -0.014751 0.194106 -0.051323 -0.046647 -0.025099 -0.079331 -0.148907 0.057067 -0.083676 0.167623 0.019148 0.059749 0.081867 0.058661 0.296283 -0.114689 -0.040441 -0.070170 -0.076695 0.028442 0.151565 0.062452 -0.026003 -0.032366 0.061249 0.095049 -0.062925 0.144540 -0.098354 0.000000 -0.071055 0.074624 0.161630 0.008821 -0.018156 0.070248 -0.016052 -0.022341 0.035017 0.031156 0.039127 0.109700 0.013729 0.008539 -0.082944 0.116140 -0.030524 -0.013734 -0.102775 -0.012028 0.023203 0.009950 -0.102229 0.067178 -0.101506 0.037633 -0.046252 0.068134 -0.111450 0.080650 -0.026594 -0.069376 0.107247 0.128503 0.061774 0.159759 0.056157 -0.030923 0.095810 0.046270 0.041677 0.007926 -0.055483 0.168005 -0.082151 -0.004396 -0.008121 0.021888 0.156109 -0.116939 0.051532 0.061794 -0.045592 0.005382 0.031755 -0.062964 0.091079 0.064715 0.051025 -0.004147 0.058364 0.007848 0.042701 0.091850 0.111859 -0.056375 0.046489 0.033814 -0.102002 0.126176 0.147241 -0.065416 0.069282 -0.053921 0.013876 -0.031898 -0.016414 0.052864 0.159085 -0.059015 0.015197 -0.048862 0.081646 -0.053038 -0.059193 -0.030349 -0.080465 0.112835 -0.002348 -0.116965 0.091245 -0.025764 0.054679 0.053293 0.062722 -0.013405 0.122957 -0.059284 0.172371 -0.135220 0.009940 0.068811 0.080741 -0.032939 -0.131914 -0.006590 -0.048621 -0.046036 0.096425 -0.016375 0.024470 -0.091702 -0.037001 -0.005951 -0.074481 -0.054759 0.091736 0.088033 -0.045031 0.104798 0.063519 0.033957 0.162023 0.042014 0.178826 0.010240 -0.034673 -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.056852 -3.687982 5.419054 4.524714 1.130725 2.727942 1.586664 -3.030674 2.611348 2.974727 -0.680060 2.479430 -3.248958 0.716719 -1.085352 2.020620 -1.951929 -2.792732 -0.870181 -1.672237 -0.225532 -3.126298 0.532415 2.398740 1.855195 0.021215 -2.613608 -0.155695 -5.440056 -5.939287 1.625620 -0.494809 2.609818 -2.124401 0.130995 -7.517372 4.111271 4.865414 -0.608063 -4.879943 1.517273 -1.452941 -1.039420 0.482787 -0.508102 1.753831 0.354159 -0.348386 1.269449 1.614936 1.386797 1.138781 1.932208 5.134206 -1.896247 3.730362 2.873950 0.092737 0.267315 0.385483 0.408071 0.777164 2.143653 2.305358 -0.883046 -2.104208 -0.256089 0.395590 -4.240360 1.965140 -0.583954 -1.610813 -2.460588 -0.660619 -3.174343 -0.064809 1.325031 1.426332 5.620857 -1.359029 4.816532 0.512948 1.393208 -0.411957 2.275968 -0.128823 2.330447 1.534169 -2.096790 -0.866719 -2.529286 -0.525353 0.036866 2.863188 -2.601856 -1.271806 2.179704 -2.797785 -3.736122 1.832495 0.152081 -1.472578 -3.698808 -1.058673 1.329042 2.038867 -1.473823 -4.324249 -2.214495 2.390081 0.208917 -2.278610 -0.246923 -1.238540 -1.108266 -0.816272 -3.134480 -0.405283 1.592079 -2.503121 -2.582572 2.963604 -1.645590 1.484880 -0.610509 1.464824 -1.074798 1.540422 0.426422 2.588545 1.487527 -0.837026 -4.185222 -0.794167 1.049215 2.439762 -1.969880 -0.043337 -0.845086 1.085765 0.036098 1.859768 -0.913664 1.872983 3.854085 -0.639296 -1.677459 -1.891252 0.365343 -4.146856 0.851325 -2.182132 -1.060778 1.011660 2.909708 -0.408604 1.475209 4.793292 -3.236672 1.874799 0.235629 -0.532147 1.793849 -1.047730 1.036612 -1.835259 -4.049579 2.314618 2.276407 0.697220 0.616250 -0.107463 0.054169 -1.631312 -1.688161 1.718807 0.511112 -0.400554 3.332322 1.984817 6.380432 -2.931002 0.519396 0.876829 -1.537032 1.069370 -1.060972 -4.310709 1.596530 1.066276 0.760945 4.950628 -0.408253 -2.615754 2.193982 -0.416433 0.892559 -2.838156 3.398312 -3.270109 -0.506472 -2.219449 -2.206688 -0.439244 -1.799264 -2.019163 0.149760 4.388045 -1.646651 -4.329135 3.023614 -0.557578 0.750867 -6.370409 3.952104 -2.061056 2.217403 -0.515988 -0.002753 0.111797 1.728386 -1.653829 0.072908 2.013881 -2.425087 2.904965 4.890107 0.702008 -0.455228 0.240359 1.895784 -0.365215 0.481184 -2.500406 3.227411 -0.257107 -1.001676 -0.530869 -1.609675 1.573825 -1.432997 -0.634177 0.989678 2.786282 -0.489656 0.516761 3.189893 1.847699 -1.420209 3.006092 -0.266452 2.056344 -1.384937 -0.601510 -0.541441 1.407877 0.306772 2.836817 -4.286449 -3.942825 -2.182610 -5.732458 -0.108506 0.669262 1.555761 0.219184 -0.144780 -5.220051 -3.012707 2.722938 -1.125560 4.084024 2.573955 2.210493 2.251721 2.489169 -1.010493 -0.103141 -1.361165 0.577021 -1.296529 -1.495990 -0.712953 2.216330 -2.166866 1.616685 2.905387 -0.506510 1.721770 -0.761180 1.411489 -2.603185 5.819615 2.246261 -1.319857 2.412710 0.999787 4.404982 -1.719730 -2.093373 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__long std::__lg(long) = -0.388714 -0.887646 0.559691 0.540103 0.125697 0.459569 0.452763 0.070822 0.222892 0.324300 -0.160885 0.359949 -0.624987 -0.340939 0.050345 -0.132923 -0.068852 -0.563584 0.138614 0.016990 0.030929 -0.370239 -0.512510 0.770176 0.117541 -0.061064 -0.081946 -0.134781 -1.079301 -0.028637 -0.103941 -0.045057 0.337590 0.232382 0.348617 -0.425540 0.124149 0.752669 0.036928 -0.715983 -0.096965 -0.279772 0.168148 -0.126160 -0.049559 0.241120 0.444709 -0.007531 -0.135496 0.021531 -0.060101 -0.326641 0.204879 0.530303 0.230217 0.621549 0.728174 0.055216 0.370629 -0.089364 0.204481 -0.340486 0.329589 0.075930 -0.334465 0.054058 -0.196289 -0.091434 -0.284734 -0.011118 0.257085 -0.008429 -0.336612 -0.230145 -0.711259 -0.341899 -0.414437 0.080546 0.815084 -0.496579 0.958289 0.633958 0.672877 0.119029 0.616850 0.073708 0.349125 0.186202 -0.485993 0.504529 -0.818511 -0.163706 -0.187105 0.180999 -0.412052 -0.257616 0.321852 -0.625274 -0.803748 0.546915 -0.241480 -0.014260 -0.174037 0.067492 0.107035 0.323289 -0.480382 -0.609413 -0.371073 0.255944 -0.152042 -0.260649 0.216610 0.204160 0.071076 -0.316725 -0.447828 -0.080669 0.585026 -0.548955 -0.031473 0.652168 -0.244928 0.747106 -0.062558 -0.163307 -0.013177 0.337299 0.546594 -0.017053 -0.090407 -0.557083 -0.864517 -0.311526 -0.036085 0.484205 -0.193340 -0.035034 0.425884 0.281687 0.494610 0.391663 0.152252 0.382272 -0.080276 -0.126207 -0.127952 -0.742164 -0.286642 -0.236892 0.150178 -0.172237 -0.063368 0.135649 0.398804 0.141765 -0.117509 0.558297 0.012230 0.203227 -0.096506 -0.044974 -0.123426 -0.060107 0.219270 -0.217225 -0.424655 0.326479 0.503293 0.370699 0.328844 -0.298511 0.068895 -0.101002 -0.321622 -0.137390 -0.005056 -0.203714 0.800716 0.344999 0.095726 -0.383491 0.012622 -0.277341 0.031500 0.192791 -0.107553 -0.606803 0.334770 0.028732 -0.284601 0.377786 -0.106258 -0.199017 0.477255 -0.171001 0.059436 -0.494821 0.384163 -0.456498 -0.125338 -0.440063 0.302329 -0.443115 -0.357891 -0.436588 -0.050814 0.704703 -0.139573 -0.257239 -0.092203 0.559917 0.264182 -0.511194 0.378429 -0.186954 0.708693 -0.053149 -0.305747 0.130773 0.344829 0.255536 -0.379295 0.353888 -0.559558 0.221087 0.068594 0.030244 0.018322 0.457836 0.232105 -0.048170 -0.252288 -0.406515 0.123055 -0.008382 -0.254780 0.067098 -0.256931 0.594479 0.313319 -0.111565 0.090044 0.439711 -0.086561 -0.031530 0.404955 -0.272424 -0.234497 -0.245527 0.137292 0.666643 -0.417201 0.082174 -0.613337 0.115151 0.152003 0.150785 -0.658521 -0.356541 -0.100278 -0.282480 -0.329410 0.223133 -0.018905 0.407379 0.067203 -0.680912 -0.429651 0.204371 -0.273866 -0.022418 0.266710 0.381370 0.697557 0.246820 0.112241 -0.371074 0.284780 0.115373 -0.337571 0.021230 -0.146265 0.062275 -0.523314 0.513447 0.290240 -0.033160 0.208202 0.014377 0.571906 -0.486760 0.843235 0.431572 -0.742412 0.079150 0.713955 0.693001 -0.509672 -0.369161 -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.593987 -3.383875 5.539159 5.114483 0.555709 2.654249 0.726824 -3.503928 3.040381 2.511592 -0.773546 2.215743 -3.497932 1.110925 -1.146566 2.637262 -2.895526 -2.900455 -1.164354 -1.860429 -0.750913 -3.016468 1.141963 2.039631 2.069658 1.291856 -2.777385 0.151287 -4.613419 -5.750238 1.683377 -0.630582 2.818001 -0.014513 0.219503 -6.860772 4.526562 4.761416 -0.838252 -4.660932 1.481730 -1.716241 -1.192956 -0.109820 -0.719304 1.778847 -0.118114 0.132214 1.755501 1.544879 1.220620 1.150042 1.970390 4.327661 -1.711172 3.706509 2.281332 0.111649 -0.116709 0.364934 0.662207 1.344849 2.508376 2.469155 -1.027785 -2.622417 -0.295890 -0.062940 -4.375194 2.713119 -0.674489 -1.455910 -2.522307 -0.935859 -2.627829 -0.041711 0.900381 2.159434 5.654172 -1.662958 4.068103 0.541956 0.929191 -0.835887 2.277432 -0.413524 2.850936 1.675705 -1.835764 -0.921518 -2.174658 -1.240592 0.544588 2.026713 -2.740227 -1.888445 2.152384 -3.673849 -4.140316 1.561309 0.694007 -1.487800 -3.759750 -0.915510 1.830109 1.846027 -1.420956 -4.110594 -1.482415 2.235607 0.149022 -2.420478 -0.678599 -0.804913 -1.255536 -0.417051 -3.783928 -0.599357 1.330073 -2.536229 -1.711898 3.025567 -1.172283 0.989529 -0.726401 1.369275 -1.089953 2.060372 -0.248709 2.780627 1.407724 0.160264 -2.189147 -0.157521 1.304488 1.543128 -1.912090 -0.400726 -1.075401 1.164139 -1.008543 1.516393 -1.545961 1.779638 4.150241 -0.669187 -2.188951 -1.538949 -0.350642 -4.695124 0.749000 -2.674326 -1.365508 1.071457 3.264651 -0.097653 1.996078 4.881280 -3.418273 1.711599 0.208996 -0.173985 2.389949 -0.438881 1.372520 -1.982134 -4.017930 2.738251 1.904080 0.751511 0.605398 -0.183023 -0.104319 -2.062450 -2.121461 2.330348 0.701539 -0.101483 3.343865 2.019290 5.588741 -2.336890 1.056780 1.410293 -1.305385 1.160149 -0.798742 -4.698050 1.419159 0.887770 1.251498 5.068566 -0.531836 -2.530549 1.854630 -0.262109 1.065329 -3.216914 2.954751 -3.415394 0.183471 -2.580318 -1.482810 -0.364465 -1.888168 -1.913240 -0.088075 4.593564 -2.030196 -4.182302 3.744077 -0.919833 1.355556 -6.120741 2.573474 -2.296513 2.358831 -0.637471 -0.173106 0.234653 0.285297 -2.028916 0.031862 2.164952 -1.828541 2.511637 4.569851 0.841134 -0.426359 0.169787 2.166551 -0.358551 1.240427 -2.551305 3.730292 -0.056570 -0.864847 -0.434171 -1.824766 0.949745 -1.901390 -0.533188 1.581951 2.980305 0.164125 1.123937 2.495314 2.400693 -1.880655 3.230976 -0.086090 1.587984 -1.462721 -0.672479 0.035896 1.515486 -0.312091 3.102593 -4.482474 -4.556649 -2.864607 -5.385351 -0.365224 0.260281 2.060658 -0.114504 -0.291471 -4.289944 -3.213413 3.301905 -1.309791 4.682049 2.598749 2.348868 2.365093 3.151871 -1.393404 0.024713 -1.234321 0.646690 -1.177573 -1.449963 -1.297176 2.724330 -1.527065 1.702521 3.308230 -0.845566 1.761394 -1.581794 2.159448 -2.571272 5.424188 2.171475 -1.388798 2.828641 0.906855 4.205141 -0.842126 -2.380400 -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.746742 -1.438728 2.523267 2.148183 0.363984 1.015814 0.666086 -1.622843 1.863743 1.087691 -0.107043 0.728094 -1.737626 0.607121 -0.716649 1.294548 -1.366726 -1.617207 -0.482609 -1.192641 -0.667662 -1.520487 0.767271 0.456753 0.929088 -0.058704 -1.378112 -0.259825 -2.253930 -2.127787 1.196394 -0.528847 1.258398 -0.547955 -0.220861 -4.147545 1.988731 1.777541 -0.607786 -1.919515 0.714020 -1.125348 -0.042148 -0.258730 -0.345463 0.417415 -0.035160 -0.049654 1.205357 0.540167 1.050284 0.592511 0.320494 3.045863 -1.516005 1.580989 0.698245 0.015181 -0.518373 0.435119 0.366672 0.534901 1.349707 1.301327 -0.662400 -1.275957 -0.092889 -0.397126 -2.279884 1.413328 -0.299556 -0.472607 -1.186996 -0.202600 -1.328386 -0.481999 0.208053 0.965337 2.754406 -1.079008 1.871909 0.195114 0.696235 -0.176945 1.031351 -0.084287 1.636564 0.546051 -1.004094 -0.554861 -1.057357 0.033053 0.077798 1.060009 -0.812349 -1.197079 1.038457 -1.249511 -2.043145 0.691664 0.403960 -0.232027 -2.235377 -0.408685 0.984054 0.884417 -1.002843 -2.190918 -1.091262 0.858282 0.050464 -0.937376 0.006583 -1.031511 -0.630541 -0.819027 -1.885906 -0.504646 0.319793 -1.289259 -1.332079 1.613836 -1.064216 0.305438 -0.122242 0.817419 -0.655828 1.171180 -0.260354 1.283907 0.525289 -0.045513 -2.008038 -0.543928 0.624937 1.592195 -0.652022 -0.122460 -0.852562 0.381042 -0.950291 0.398916 -0.383099 0.905093 2.037349 -0.558480 -1.087893 -0.503233 0.370775 -2.464763 0.455763 -1.425401 -0.361688 0.395706 1.561917 0.501823 1.174194 2.719521 -1.519843 1.325702 -0.073044 -0.359089 1.447811 -0.267153 0.976634 -0.952142 -1.812176 0.913786 0.864690 0.410564 0.255123 -0.270218 -0.138305 -1.355172 -1.022866 0.572870 0.512009 -0.135752 1.349671 0.870963 2.786948 -2.154714 0.770630 0.919976 -0.403406 0.573302 -0.364390 -2.170843 0.686329 0.517119 -0.076525 1.965214 -0.199186 -1.539746 0.654656 -0.270045 0.727544 -1.507109 0.932095 -1.463295 -0.142178 -1.310764 -0.643000 -0.469401 -0.857284 -0.755806 -0.221131 2.108761 -1.018812 -2.059036 1.985488 -0.313530 0.774265 -3.093925 1.788740 -1.152063 1.242048 -0.902373 0.016428 -0.162217 0.917276 -0.871688 0.364092 0.964731 -0.935308 1.243079 2.634140 0.581149 0.385998 0.025917 1.414450 0.037928 0.655403 -0.942716 1.980638 -0.121501 -0.817505 0.075866 -0.910709 0.507854 -0.647708 0.141464 1.092996 1.773705 0.016354 0.872589 1.455147 1.342652 -0.902195 1.389992 -0.075988 1.018965 -0.581946 -0.150042 0.127560 0.699745 -0.458875 1.256354 -2.074222 -2.389335 -1.118497 -2.553641 0.140431 0.268798 0.469440 -0.143224 0.061145 -2.233659 -1.158859 1.179929 -0.787057 2.323607 1.011642 1.046066 1.206115 1.832010 -1.042087 -0.248738 -0.290675 0.116747 -0.517027 -0.729737 -0.893075 1.324171 -1.133265 0.875961 1.425198 -0.432476 0.520872 -0.178929 1.080948 -1.142226 2.705076 1.010462 -0.404854 1.750602 0.644934 2.542594 -0.010027 -1.055302 -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) = -0.901101 -3.091991 5.495091 4.930276 0.161092 2.783709 0.495791 -3.430386 2.907415 2.304314 -0.163151 2.073059 -3.013524 1.234848 -1.149632 2.529039 -2.923125 -2.465571 -1.465702 -2.451976 -1.334210 -2.714487 0.516140 1.933718 1.712958 1.288464 -2.802295 0.394388 -4.057084 -5.666537 1.654032 -0.448819 2.573715 -0.958627 0.450867 -8.284191 4.539377 4.495325 -0.834459 -4.290877 1.242268 -1.612827 -0.800601 0.217354 -1.153084 1.495468 -0.562722 -0.237873 1.849025 1.151279 1.221359 1.772153 1.877969 5.614634 -1.845324 3.481074 2.100899 0.078549 -0.435589 0.463955 0.531859 1.438705 2.051160 2.012554 -0.680602 -2.740983 -0.189689 -0.046078 -3.804378 2.606827 -0.387543 -2.062132 -2.156393 -1.080732 -3.021038 -0.606716 0.262901 2.112865 5.270035 -1.986292 3.595598 0.110255 0.869144 -0.017642 2.652102 -0.364431 3.390720 1.488875 -1.647688 -0.296559 -1.149713 -0.433424 0.813921 2.225878 -2.925278 -2.957419 2.015953 -3.439002 -3.981890 1.913456 0.856007 -1.263053 -3.933698 -1.924701 1.763919 1.381623 -1.812285 -3.969501 -1.787226 2.552380 0.308568 -2.216584 -0.358027 -1.142132 -0.700615 -0.510024 -3.585978 -0.133915 1.232518 -1.877309 -2.156363 3.274840 -0.793355 0.609345 -0.643120 1.592173 -1.467375 2.079326 -0.533087 2.766943 0.165954 0.509705 -2.362577 -0.606427 0.904683 1.364985 -1.778828 -1.160060 -1.293586 1.197580 -1.096485 1.801425 -1.390212 1.775974 4.360669 -0.280372 -1.861118 -1.311578 -0.245763 -4.820976 0.462071 -2.544739 -1.865332 1.177310 3.035271 0.324868 1.855540 4.000338 -3.046864 1.998737 0.008682 -0.363036 2.515037 -0.467424 1.156218 -1.955397 -3.855072 2.279645 1.369763 1.284649 0.465313 -0.316982 -0.164323 -1.554097 -1.671121 2.257675 0.917052 -0.190092 3.275016 2.340001 6.779179 -2.797445 0.948886 1.225020 -1.914440 1.238577 -0.965212 -4.110255 0.803054 1.397926 0.487458 5.088216 -0.782311 -2.267704 1.701901 -0.131276 1.310439 -3.066083 2.791439 -3.144902 0.016225 -2.482827 -1.712208 -0.900883 -1.326290 -2.279841 -0.835755 4.414801 -3.414334 -3.995492 4.075381 -0.786160 1.252133 -5.832228 2.865270 -2.058715 2.283641 -0.997518 -0.140848 0.135640 0.765167 -2.219629 1.060745 2.022411 -2.345087 2.006770 4.759371 0.819863 -0.085363 -0.224589 2.380419 -0.478883 1.211929 -2.780542 4.173788 -0.240309 -0.964484 -0.621165 -1.740071 0.609417 -1.817711 0.089580 0.995239 2.523168 0.232076 0.304588 2.876014 2.106364 -1.630414 3.120256 -0.388917 1.153641 -1.612435 -0.621789 0.141181 1.851167 -0.021027 2.423288 -4.437698 -3.770142 -3.605731 -4.795945 -0.196058 1.075073 1.465331 -0.000398 -0.481416 -4.183613 -3.160602 4.103500 -1.347133 4.147874 2.460693 2.263814 2.463549 3.292324 -1.071394 0.054406 -1.309141 0.130817 -0.832681 -1.212402 -1.432401 3.006915 -1.531037 1.486961 3.176809 -0.676098 2.089834 -0.707539 1.837345 -2.502800 5.221206 1.995652 -1.203960 2.531672 1.619783 4.256792 -0.600855 -2.225952 -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.689365 -3.133589 4.618989 4.029170 1.075572 2.568559 1.041838 -2.837072 3.399936 2.569034 -0.553086 1.677770 -3.029461 0.497470 -0.713043 1.942141 -2.063650 -3.038105 -0.488503 -1.854528 -0.909346 -3.048825 0.336053 1.522309 1.257560 0.160683 -2.369088 0.222833 -4.618812 -4.845946 1.756996 -0.732625 2.288167 -0.875176 0.170380 -7.372251 3.934271 4.034438 -0.728972 -4.249593 0.805222 -1.888609 -0.492423 0.282117 -0.071221 1.452487 0.301904 -0.009162 1.496640 1.043791 1.585342 0.668587 0.742985 4.885171 -1.958223 3.418469 1.998094 0.012740 -0.442688 0.912632 0.631201 0.705361 2.628761 2.609914 -1.606866 -1.856483 0.257793 -0.072701 -4.193251 2.278470 -0.039388 -1.536654 -1.829138 -0.609834 -2.424240 -0.720301 1.005909 1.355135 5.298694 -1.421735 4.227959 0.815435 2.045535 -0.283654 2.650885 -0.470834 3.557885 1.222362 -2.523980 -0.870304 -2.737707 -0.756164 0.055422 2.406451 -1.922508 -0.968405 1.615342 -2.595564 -3.825543 1.611897 0.186347 -0.492757 -4.578949 -0.726720 2.359945 1.573605 -1.460548 -4.123392 -2.319314 2.136786 -0.975095 -2.011921 -0.201926 -1.603450 -1.143650 -0.946848 -3.226299 -1.035073 1.504639 -2.406898 -2.616411 3.180221 -1.958108 1.026108 -0.532728 1.167027 -0.953909 1.461277 -0.077020 2.068938 1.277355 -0.874298 -4.136728 -0.655475 0.647847 2.303536 -1.373649 -0.517679 -0.696136 0.963881 -1.062238 1.426163 -1.325236 1.917871 3.971063 -0.573049 -1.722162 -1.584933 0.694065 -4.051609 0.969953 -2.451243 -0.951824 0.281863 3.047273 0.476764 1.680121 4.585876 -3.112984 2.622360 -0.263125 -0.055835 2.042456 -0.524091 1.443793 -1.864660 -3.387160 1.919039 2.157033 0.602149 0.746227 -0.946615 -0.238096 -2.019641 -2.452404 1.555005 0.524278 0.185990 2.950600 1.672811 6.180617 -3.944049 1.104536 1.037799 -0.838044 1.114931 -0.826820 -3.976128 1.203716 1.035773 0.669733 4.606224 -0.432572 -2.836632 1.013973 0.093141 1.084765 -2.866283 2.536869 -3.055954 -0.099792 -1.902191 -1.423539 -1.239510 -1.754252 -1.884129 -0.140053 4.045171 -1.225465 -4.681246 3.445148 -1.172606 1.443652 -6.119458 2.423859 -2.213118 2.092412 -1.553746 0.061069 -0.395590 1.470228 -1.285015 0.698029 1.910929 -2.196320 2.781940 4.440812 0.817965 0.612638 0.332101 1.959651 -0.139566 0.262278 -2.170622 3.371877 -0.212906 -1.000582 -0.346654 -1.825059 1.718420 -0.845516 -0.371685 0.951187 3.392423 -0.612894 0.876780 2.939891 1.428674 -1.684221 2.484580 0.092079 1.859700 -1.152127 -0.437118 -0.428698 0.933806 -0.218114 2.295130 -4.020986 -3.705282 -1.704813 -5.254497 -0.234203 1.033297 1.080988 0.491268 0.322324 -4.492133 -2.161001 2.754063 -1.165684 4.597697 1.891737 2.303820 2.306615 2.962804 -1.390025 -0.741546 -0.931382 -0.183250 -1.806572 -1.573454 -1.175525 2.401324 -1.731920 2.205591 2.298974 -0.516816 1.077639 -0.807643 1.978241 -2.190776 4.994683 2.244549 -1.089148 2.270490 0.743522 5.078262 -1.159763 -2.120820 -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.854449 -1.956697 2.748087 2.330516 0.651273 1.745998 0.497302 -1.293264 1.478156 1.558965 -0.306253 1.102322 -1.686027 0.206765 -0.112772 0.748856 -0.959741 -1.424403 -0.291082 -0.861552 -0.077543 -1.660584 -0.405338 1.329307 0.538957 0.008417 -1.049394 0.283715 -2.782381 -2.673649 0.863134 -0.358257 1.291810 -0.593510 0.482226 -3.894375 2.221180 2.253386 -0.189832 -2.479595 0.372195 -0.924012 -0.193666 0.260226 0.176578 1.038300 0.452481 -0.176935 0.642733 0.563546 0.335706 0.063916 0.702139 2.376541 -0.992677 1.851785 1.314079 -0.194267 0.339355 0.354758 -0.029121 0.146522 1.186148 1.210421 -0.865438 -0.917411 0.268617 0.239214 -2.077824 0.904924 -0.056672 -0.724801 -1.045251 -0.432167 -1.665652 -0.263184 -0.079173 0.799610 2.906279 -0.602006 2.554932 0.434976 1.234916 0.298541 1.803089 0.038113 1.518208 0.673707 -1.647465 -0.016610 -1.613756 -0.427342 0.028226 1.247247 -1.146787 -0.461447 0.759819 -1.304923 -1.766134 1.268099 -0.304588 -0.405030 -2.273619 -0.843656 0.951179 1.016848 -0.940405 -2.318018 -1.174086 1.469949 -0.335619 -1.052210 0.284234 -0.980183 -0.563046 -0.877917 -1.425296 -0.360167 1.131192 -1.306933 -1.450453 1.974267 -1.039315 0.846539 -0.256945 0.691991 -0.679775 0.681979 0.304517 1.131463 0.500779 -0.885885 -2.560105 -0.431779 0.294530 1.374933 -0.685160 -0.206413 -0.232970 0.581326 -0.028665 0.971122 -0.351473 1.046194 1.992720 -0.213622 -0.559288 -1.060455 0.422375 -1.824536 0.431413 -0.999346 -0.706420 0.281785 1.568604 0.006109 0.689836 2.206918 -1.709141 1.098978 -0.417575 -0.124838 0.862776 -0.303025 0.571135 -0.977186 -1.790422 0.965063 1.257845 0.275877 0.617439 -0.701668 0.074894 -0.711043 -0.742235 0.858731 0.319105 -0.162008 1.907959 1.105411 3.198981 -1.683696 0.233355 0.290672 -0.784362 0.593737 -0.559355 -1.966996 0.720163 0.806824 -0.066111 2.381546 -0.359627 -1.559217 0.942205 -0.065056 0.536401 -1.373203 1.490582 -1.680977 -0.268311 -0.985820 -0.930192 -0.726114 -1.108302 -1.326615 0.101038 2.141911 -0.618679 -2.213698 1.395750 -0.414435 0.494599 -3.134225 1.487956 -1.137604 1.107290 -0.373285 0.049020 -0.180759 1.271854 -0.590501 0.117380 1.076111 -1.441608 1.653048 2.192480 0.435704 0.039938 0.349465 1.016392 -0.139485 -0.414247 -1.367722 1.393025 -0.318150 -0.106404 -0.190694 -0.935819 1.184436 -0.388846 -0.285809 -0.133335 1.620621 -0.418045 0.067725 1.888550 0.221971 -0.428106 1.038489 -0.292628 1.043999 -0.767932 -0.203734 -0.619352 0.728378 0.420923 1.202080 -2.352476 -1.670152 -0.833455 -2.434094 -0.210082 0.973373 0.264286 0.729949 0.228671 -2.763028 -1.216134 1.415970 -0.608592 1.801890 1.073328 1.173526 1.196792 1.382663 -0.385189 -0.666265 -0.405781 0.029730 -1.036172 -0.448993 -0.499251 1.227912 -1.239917 1.126535 1.198381 -0.292935 0.671958 -0.277666 0.922687 -1.496273 2.838536 1.406247 -0.757126 0.962954 0.794777 2.693145 -0.937720 -0.991835 -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.358290 -6.114315 6.229379 5.692364 1.577169 4.673778 2.258735 -2.046932 2.904295 4.368033 -1.065828 3.785211 -4.205036 -0.417319 -0.229417 1.358107 -1.537577 -3.796395 0.002929 -1.120931 0.248793 -3.791760 -1.868912 4.506959 1.495158 -0.134896 -2.282565 -0.244128 -8.089691 -6.492059 0.659917 -0.474284 3.311820 -2.442601 1.334306 -8.633738 4.417597 6.899807 -0.142744 -7.631018 1.006423 -1.892005 -0.695596 1.493064 -0.446607 2.804406 1.575623 -0.159246 0.435209 1.803345 0.057567 0.314188 2.759633 6.348102 -0.488914 5.426543 5.177767 0.187213 1.129788 0.465968 0.653158 -0.247190 2.697420 2.362521 -1.658097 -1.610294 -0.321157 0.949871 -4.566396 1.398019 0.512144 -2.360234 -2.327074 -0.937671 -4.513299 -0.745653 1.261581 1.585276 7.230537 -1.886054 7.301532 1.645173 3.419522 0.360049 4.412637 -0.040133 2.948071 2.047005 -3.634449 0.172899 -4.590572 -1.095694 -0.301832 3.031289 -3.848239 -1.865076 2.381493 -3.578256 -5.304553 3.654625 -0.940757 -1.508277 -4.089394 -1.605048 2.307057 3.029996 -2.624134 -5.489370 -3.505025 4.088918 -1.127471 -3.133858 0.436746 -1.027133 -0.776160 -1.316547 -3.359474 -0.506313 3.982936 -3.499923 -2.888640 4.755312 -1.961065 3.515139 -0.877620 1.121007 -1.049088 1.444773 2.082091 2.339206 1.345032 -2.732915 -5.911995 -0.806383 0.189036 2.428575 -2.405898 -0.660175 0.635778 2.093504 1.999230 3.354721 -1.052644 2.759536 3.923345 -0.243157 -1.283326 -3.953251 0.362546 -3.691900 0.948666 -2.414002 -1.810070 1.094171 3.881977 -0.816443 0.762408 5.065597 -3.486796 2.644438 -0.202937 0.024607 1.061992 -0.843957 0.947630 -2.436632 -4.694378 2.640835 3.796075 1.496246 1.070442 -1.185898 0.257852 -1.074810 -2.369467 1.728724 0.600146 -0.597188 5.398452 2.941553 7.544478 -3.294047 -0.315118 -0.488944 -2.362009 1.556716 -1.794616 -5.598158 1.558790 1.734088 0.620588 6.772246 -0.974484 -3.222245 3.306279 -0.099480 0.772341 -3.662607 5.155778 -4.710952 -0.807639 -2.282827 -2.204129 -2.041313 -2.585927 -4.066254 -0.052587 6.037762 -1.837334 -5.409649 2.167018 -0.457307 0.804429 -7.854264 4.335639 -2.570144 3.020094 -0.371371 -0.483289 0.027651 2.750871 -1.060958 -0.434170 2.916737 -4.414494 4.155321 4.535318 0.625057 -0.548572 1.407912 1.998020 -0.630639 -1.333631 -4.009365 3.094229 -0.827230 -0.924399 -0.857079 -2.272777 3.491925 -0.432027 -1.095384 -0.452844 3.196746 -1.425282 -0.456850 4.558583 -0.016617 -1.662192 2.416980 -0.424541 3.592169 -2.305281 -0.461050 -2.758544 1.525900 1.663873 3.131308 -6.165220 -3.469753 -2.627067 -6.424177 -0.985161 1.950257 1.515180 1.700426 0.413701 -7.497723 -3.967013 3.448350 -1.417173 3.834501 3.419466 3.305792 3.937766 2.724766 -0.005822 -1.169759 -1.263661 0.135043 -2.890937 -1.694626 -0.175029 2.060686 -2.880765 3.208897 2.872760 0.043298 2.248571 -1.222580 1.956759 -3.780018 7.205621 3.803997 -2.919858 1.436928 2.391478 6.116962 -3.921159 -3.019906 -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.856078 -0.779893 1.010653 0.797495 0.326747 0.543498 0.319892 -0.519894 0.764738 0.823757 -0.067783 0.393393 -0.595367 -0.098324 -0.015693 0.347530 -0.248950 -0.756502 -0.065341 -0.573990 -0.224263 -0.565866 -0.195275 0.321221 0.210018 -0.812665 -0.504461 -0.089439 -1.205520 -0.973812 0.094742 -0.186316 0.470556 -0.919955 0.015614 -1.920700 0.701478 0.820416 -0.248695 -0.977668 0.196721 -0.555111 0.164153 0.228469 -0.321705 0.162437 0.191514 -0.615186 0.313729 0.237250 0.605414 0.194187 0.077107 1.704943 -0.417428 0.816804 0.545724 -0.121875 -0.242237 0.416090 0.192189 -0.073754 0.663076 0.369192 -0.319323 -0.391940 0.001102 0.015875 -0.871950 0.387690 -0.221662 -0.649186 -0.187521 -0.232834 -0.858027 -0.540899 0.257535 0.238858 1.108398 -0.588550 1.018165 0.259661 0.556101 0.247096 0.749189 -0.005034 0.908621 0.168441 -0.542269 -0.058513 -0.270579 -0.014700 -0.060378 0.703747 -0.344868 -0.143807 0.542863 -0.622376 -1.015364 0.659916 0.048007 0.029947 -1.336471 -0.325076 0.448990 0.494769 -0.508925 -0.996613 -0.814501 0.643443 -0.168494 -0.422052 0.030202 -0.697630 -0.137517 -0.277773 -0.747999 -0.105648 0.484973 -0.518133 -0.966285 0.966573 -0.619637 0.318040 -0.034462 0.363161 -0.287665 0.489214 -0.055100 0.543263 -0.040381 -0.341075 -1.839475 -0.407276 0.037690 0.360551 -0.158741 0.119709 -0.096114 0.206269 -0.215658 0.593197 -0.210760 0.739404 0.825498 -0.033755 -0.377813 -0.514432 0.156892 -0.937112 0.139679 -0.560455 -0.260817 0.332844 0.682311 0.460982 0.288280 1.163784 -0.394801 0.625097 -0.164423 -0.322816 0.464296 -0.655893 0.470611 -0.476415 -0.714083 0.255180 0.727170 0.256482 0.279776 -0.264216 -0.036219 -0.509670 -0.552684 0.074817 0.272162 0.094854 0.701137 0.549405 1.547965 -1.280054 0.235308 0.074787 -0.212030 0.254531 -0.423730 -0.891500 0.026121 0.411061 -0.183189 0.942041 -0.084742 -0.670483 0.109863 -0.183178 0.311884 -0.585083 0.501830 -0.665743 0.004290 -0.268555 -0.656966 -0.571503 -0.396559 -0.509356 -0.317896 0.985792 -0.473360 -1.081128 0.810515 -0.081528 0.253769 -1.486772 1.064069 -0.493594 0.899016 -0.603528 -0.022364 -0.317703 0.903081 -0.183847 0.387921 0.437211 -0.715694 0.637342 1.176883 0.238115 0.463008 0.057591 0.622547 -0.091561 0.008947 -0.496564 0.827717 -0.214533 -0.363997 -0.054125 -0.412305 0.493913 0.085082 0.100738 -0.007624 0.738168 -0.390932 0.040098 1.034868 0.226253 -0.356768 0.540749 -0.035315 0.709709 -0.307151 -0.044471 -0.203993 0.230545 0.055826 0.177640 -1.008718 -0.566389 -0.708908 -0.980204 0.055712 0.453326 -0.079064 0.119209 0.104126 -1.187607 -0.464166 0.580417 -0.352585 0.760682 0.352888 0.601120 0.746705 0.796235 -0.108827 -0.285257 -0.285156 -0.298082 -0.467121 -0.454861 -0.212480 0.486098 -0.622065 0.608170 0.306111 0.078073 0.281543 0.618827 -0.172303 -0.562597 1.065165 0.533327 -0.210975 0.598884 0.611300 1.094104 -0.668074 -0.503298 -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&) = -1.837684 -3.728266 4.325003 3.666210 0.552471 2.739735 1.402572 -1.864371 2.468068 1.996383 -0.335561 2.160585 -2.867146 0.151682 -0.726271 0.863477 -1.637900 -2.693743 -0.427675 -1.522646 -0.651558 -2.529578 -0.960955 2.569991 1.011141 -0.446498 -1.845819 -0.405296 -5.171066 -3.028866 1.300460 -0.474936 2.192601 -1.839454 0.759108 -7.710251 2.795649 3.953463 -0.457020 -4.589660 0.689875 -1.868150 0.059530 0.167662 -0.978377 0.938415 0.694096 -0.107216 0.895425 0.688579 0.334681 0.669493 0.905635 5.977199 -1.178216 3.364575 2.784545 0.022442 0.043589 0.543845 0.522890 0.011985 2.074174 1.494456 -1.246440 -1.478279 -0.129956 -0.089058 -3.295917 1.404216 0.341518 -1.499751 -1.621242 -0.755561 -3.495003 -1.149092 0.339698 1.513721 4.869288 -2.086432 4.395225 0.891289 2.208019 0.644835 3.000643 0.062616 2.726796 1.100974 -2.269731 0.154696 -2.980774 0.049276 -0.182046 1.576433 -2.244236 -2.623771 1.849822 -2.740117 -3.754361 2.371391 -0.171265 -0.667671 -3.254898 -1.431684 1.603781 1.878358 -2.314138 -3.886824 -2.649596 2.607872 -0.378988 -1.861134 0.728075 -1.168841 -0.347902 -1.929069 -2.717888 -0.301939 2.285970 -2.157058 -2.192947 3.596560 -1.849182 1.802159 -0.380706 0.980940 -1.020817 1.814234 0.718845 1.402925 0.240811 -1.418666 -4.283378 -1.138121 0.205936 2.747299 -1.237141 -0.570140 -0.088876 1.307262 0.351206 1.648344 -0.409699 1.840808 2.527687 -0.319909 -1.218208 -2.336405 0.504083 -3.241520 0.399027 -1.883497 -1.317898 1.186408 2.676973 0.844330 0.866782 3.689305 -2.060553 2.229648 -0.325768 -0.472880 1.370803 -0.669639 1.193824 -1.721069 -3.170236 1.522799 1.968266 1.409339 0.709596 -0.902047 -0.023040 -1.286155 -1.703318 0.523211 1.098222 -0.262870 3.389767 2.158148 4.745323 -3.677444 0.355971 0.060666 -1.500017 1.125827 -1.166117 -3.653170 0.867548 1.338432 -0.704645 4.108484 -0.701009 -2.442923 1.885497 -0.287954 0.932133 -2.468113 2.390455 -2.908868 -0.834683 -1.989247 -1.252334 -1.677246 -1.497047 -2.824363 -1.034307 4.107028 -2.434336 -3.638990 2.398284 -0.020162 1.223014 -5.434095 3.256582 -1.735521 2.716602 -0.912204 -0.295162 -0.241241 2.277978 -0.997407 0.460277 1.920760 -2.911182 2.281275 3.879796 0.640852 0.454318 0.682331 2.080699 -0.346211 -0.258785 -2.510963 2.703776 -0.618718 -1.231701 -0.120417 -1.610034 1.957703 -0.321863 0.186792 0.592653 2.621152 -0.238352 0.304832 3.504181 0.470472 -1.156771 1.453256 -0.447213 2.175498 -1.515365 -0.129758 -1.265124 1.398032 0.561211 1.683078 -4.150563 -3.219361 -2.630680 -4.048428 -0.022611 1.026671 0.298567 0.741434 0.106441 -4.960754 -2.444162 2.051177 -1.365498 3.062509 2.186075 2.211274 2.855976 2.662699 -0.850717 -0.787734 0.035529 0.059006 -1.545546 -0.947994 -1.149606 1.836340 -2.319872 2.235854 2.390901 -0.122845 1.515602 0.166167 1.672392 -2.466901 5.031705 2.320519 -2.018860 1.559695 2.221739 4.301992 -1.551856 -2.005113 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::remove_reference::type&& std::move(int&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -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) = -4.754372 -8.284497 7.847931 6.877859 1.755904 5.567705 4.246039 -2.618059 5.453381 5.591555 -1.420640 5.161665 -4.949816 -1.558701 0.557713 1.693286 -2.116782 -5.722752 0.982982 -1.687886 -0.759740 -5.765215 -3.357723 5.726148 1.434878 -1.049359 -2.841719 -0.861108 -10.017180 -8.035427 0.948255 -0.735216 3.926755 -4.344868 2.217218 -15.535250 5.354480 8.468096 -0.300182 -10.499982 0.381391 -2.651527 0.188448 2.016215 -1.240125 2.988631 2.607388 0.606533 0.134359 2.109677 1.040250 0.172848 3.077038 11.463185 -0.113658 7.426416 7.185823 0.364525 0.516816 0.869209 2.098180 -1.249030 4.237146 3.832238 -2.509603 -1.293647 -0.930521 0.803267 -6.779371 1.808568 1.741423 -4.243362 -3.417829 -1.519705 -6.162600 -2.426880 -0.189580 2.032690 10.275264 -3.981974 10.618257 3.611750 6.857447 0.656218 5.954688 -0.674775 6.301755 2.459601 -5.799827 0.683511 -6.837408 -2.000292 -0.597373 3.221699 -4.702260 -3.503053 2.970965 -4.933113 -8.033988 5.260814 -0.929695 -0.786349 -6.353900 -1.912781 4.555417 3.801965 -3.734984 -7.958632 -6.908762 5.016848 -3.023213 -3.983566 0.524161 -1.013792 -0.365114 -2.101809 -5.419168 -1.195883 6.037437 -4.548531 -4.165961 6.458514 -3.984095 5.077017 -1.199639 0.618878 -0.611747 2.562577 3.162078 2.151657 1.754919 -4.829828 -10.387634 -0.989445 -0.774765 4.170482 -2.404736 -1.458181 1.811996 3.059311 2.457431 4.866600 -0.846894 4.201023 5.554090 0.223983 -2.428714 -6.141141 0.451121 -5.435851 2.429958 -3.488569 -1.242436 1.685753 5.208792 0.431062 0.629842 6.045896 -4.793150 5.415760 -0.467632 0.456867 1.042118 -0.732345 1.849130 -3.181450 -5.889887 3.282863 5.737656 3.019879 1.592086 -2.398819 0.111608 -1.655706 -4.784615 1.374450 1.229052 0.361718 6.667489 3.474150 12.179113 -6.871034 -0.395339 -1.181801 -1.706575 2.014542 -2.502747 -7.291321 2.357934 1.710705 0.872028 8.732189 -1.216750 -4.045893 3.460838 0.278066 1.013481 -4.903013 6.255427 -5.969258 -1.524478 -2.625563 -2.191676 -4.405116 -2.761990 -5.722677 -0.661857 8.293883 -2.520037 -8.372576 3.883672 -2.371358 2.383733 -10.677767 7.675745 -3.221214 4.612549 -3.008336 -1.238275 -0.592916 3.713203 -0.382182 0.257597 3.784772 -6.024537 4.506222 6.646901 0.629151 0.569248 2.207377 2.483731 -0.624794 -1.454683 -4.696802 4.945118 -1.133584 -1.825157 -1.052324 -3.037039 6.117344 0.930175 -1.183597 0.410391 5.424470 -2.289083 -0.212646 6.613004 -0.679437 -3.407253 3.004881 0.410305 5.541335 -3.190022 -0.327219 -3.995516 1.341788 1.368629 2.932071 -7.747169 -4.141236 -4.435819 -8.733717 -1.928227 2.560037 1.657026 1.935568 0.712755 -10.077039 -4.745750 5.189910 -1.860715 4.314652 4.059774 4.586265 6.577886 4.167819 -0.215504 -2.102876 -1.155169 -1.467735 -4.462434 -2.806747 -0.748943 2.536132 -4.772719 5.449242 3.449227 0.577366 2.490844 -0.370860 3.568713 -4.342410 9.852941 4.962625 -4.406725 1.156719 3.676510 9.150126 -6.234254 -4.575686 -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.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -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.113788 -0.255449 0.407216 0.397294 0.096272 0.086092 0.214559 -0.192110 0.308057 0.291140 -0.021135 0.067163 -0.391481 0.142894 -0.070233 0.332177 -0.159146 -0.284653 -0.072919 -0.148869 -0.074250 -0.241901 0.278510 -0.053098 0.239859 -0.013236 -0.196319 -0.187401 -0.380937 -0.309036 0.162393 -0.113715 0.228357 0.038360 -0.114098 -0.395030 0.250388 0.284960 -0.139917 -0.300549 0.189024 -0.174292 0.090212 -0.049578 0.064404 0.118266 0.018738 -0.056565 0.246833 0.184895 0.305720 0.016222 0.131565 0.356783 -0.293953 0.224223 0.086289 0.026025 -0.084987 0.022509 0.083077 0.085040 0.197006 0.202149 -0.074778 -0.229696 -0.173312 -0.140970 -0.396331 0.215911 -0.170637 0.026584 -0.315279 -0.072152 -0.053141 -0.075309 -0.411191 0.153223 0.451546 -0.237809 0.286283 0.070683 0.043737 -0.099632 0.050632 0.034627 0.056095 0.074758 -0.092478 -0.046513 -0.015673 0.007915 0.006304 0.174173 -0.111057 -0.127976 0.240862 0.050296 -0.335368 0.102893 0.088506 0.000373 -0.252759 0.104906 -0.006792 0.244775 -0.198262 -0.357226 -0.114248 0.028184 0.209431 -0.131324 -0.054335 -0.171005 -0.200924 -0.168556 -0.336309 -0.092998 -0.058643 -0.300519 -0.167834 0.207218 -0.144335 0.072491 0.017971 0.116993 -0.104076 0.344879 0.043049 0.292555 0.132136 0.023489 -0.464932 -0.033770 0.228912 0.327583 -0.109701 0.132570 -0.201019 -0.021335 -0.156747 0.023198 0.054515 0.124577 0.427982 -0.197386 -0.209144 -0.044292 0.032026 -0.407689 0.132322 -0.260852 0.189628 0.039450 0.236672 0.083080 0.239102 0.664038 -0.300350 0.094976 -0.005368 -0.149908 0.240221 0.131674 0.194839 -0.135122 -0.288182 0.135246 0.208979 -0.013999 0.085941 0.032340 0.000226 -0.285962 -0.002798 0.127664 0.054861 -0.178701 0.215809 0.117398 0.284148 -0.169097 0.112434 0.210299 -0.004651 0.070320 -0.016803 -0.414773 0.204894 0.013006 -0.054473 0.131323 -0.010312 -0.170903 0.188711 -0.214693 0.116132 -0.248236 0.149756 -0.226809 -0.033982 -0.298059 0.015103 0.002013 -0.185898 0.065883 0.139537 0.336999 0.067842 -0.101751 0.163188 0.049999 -0.024207 -0.344987 0.496953 -0.186152 0.156645 -0.175236 -0.037475 -0.006196 0.218671 -0.057253 -0.134997 0.157255 -0.036169 0.134430 0.437654 0.117026 -0.078505 0.046442 0.287227 0.037187 0.185623 -0.063460 0.306449 0.002558 -0.079994 0.114169 -0.132318 0.038872 -0.127648 -0.073587 0.401039 0.280345 -0.025553 0.209258 0.071248 0.348884 -0.157593 0.263626 0.041889 0.321580 -0.110274 0.009285 0.036597 0.121288 -0.146068 0.201879 -0.294301 -0.399605 0.055956 -0.312011 -0.002695 0.052522 0.102526 -0.075609 0.007159 -0.269506 -0.236179 0.109125 -0.174220 0.272062 0.070864 0.106983 0.206246 0.297240 -0.169753 -0.034456 -0.073842 0.054067 -0.000994 -0.092666 -0.049687 0.160114 -0.238835 -0.000784 0.204195 -0.105875 0.047944 -0.007403 0.252491 -0.192225 0.462446 0.130039 0.022168 0.464817 0.194345 0.469236 0.005502 -0.148312 -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&) = -2.028506 -3.111759 3.397883 2.889975 0.744095 2.146497 1.782103 -0.814821 2.596299 2.236774 -0.626779 1.747729 -2.062996 -0.438967 0.647778 0.955620 -1.155576 -2.414701 0.611743 -0.757886 -0.594213 -2.478662 -1.189199 1.658443 0.691156 0.098341 -1.191306 -0.310012 -3.802704 -3.273890 0.992835 -0.483794 1.556968 -1.222743 0.822192 -7.473750 2.286230 3.010754 -0.192746 -4.257216 0.100429 -1.119535 0.287548 0.478423 0.353388 1.543895 1.367011 0.741315 0.415567 0.834767 0.305799 -0.415901 0.857774 4.928651 -0.663954 2.927028 2.917526 -0.073453 0.066274 0.571860 0.775097 -0.670485 1.579412 2.022320 -1.275818 -0.510315 -0.151016 -0.203631 -2.772600 1.051905 0.841886 -1.599968 -1.643764 -0.607621 -2.187900 -0.954541 -1.233049 1.114588 4.368346 -1.778766 4.504819 1.413208 3.258606 0.130278 2.205470 -0.365973 2.971838 0.844659 -2.695166 -0.019352 -2.997974 -1.284973 -0.393232 1.618064 -1.422805 -1.148961 0.889258 -1.563909 -3.031470 1.792125 -0.416907 0.178727 -3.321200 -0.435436 2.132902 1.551843 -1.257966 -3.300935 -3.133085 1.699346 -1.620412 -1.319794 0.238493 -0.681464 -0.647748 -1.129741 -2.411811 -0.799779 2.185240 -1.947283 -2.170412 2.462330 -1.848361 1.840269 -0.355792 0.325796 -0.264485 1.324305 1.421236 0.875198 1.174575 -2.075329 -5.161937 -0.493854 0.052269 2.660063 -0.930504 -0.607429 0.397866 0.963564 0.330521 1.367720 -0.397564 1.984870 2.859833 -0.281306 -1.283692 -2.204754 0.889014 -2.403497 1.344648 -1.664714 0.023929 0.474188 2.051446 0.441655 0.486940 2.915415 -2.710208 2.864109 -0.491746 0.423815 0.540520 0.344923 0.739396 -1.379575 -2.034300 0.958110 2.107875 0.800371 0.675875 -1.345370 0.096757 -1.063707 -2.078138 1.146256 0.402488 0.035874 2.326560 1.169130 5.892020 -4.180456 -0.116312 -0.079367 -0.606405 0.528043 -0.509023 -2.886271 1.500467 0.565691 0.425183 3.325771 -0.367035 -1.862593 1.142402 0.168466 0.393164 -1.735579 2.400734 -2.272091 -0.733490 -1.048760 -0.703499 -1.814988 -1.148592 -1.895546 0.104973 3.086676 -0.569496 -3.797600 1.879034 -1.380870 1.147595 -4.710754 3.287466 -1.411930 1.197274 -1.864461 -0.433147 -0.463513 1.741372 0.093955 0.183207 1.376878 -2.352485 1.716136 3.035363 0.386911 0.374184 1.008302 1.187561 0.027939 -0.683223 -1.343136 2.040281 -0.462088 -0.421998 -0.474350 -1.136620 2.564315 0.552672 -0.516346 0.415909 2.413939 -0.876086 0.277772 2.722073 -0.149771 -1.398854 1.258684 0.141402 2.645305 -1.221529 -0.222694 -1.491481 0.403801 0.216716 1.157561 -3.032068 -2.114719 -1.023292 -4.143630 -1.191382 1.316708 0.620637 0.833939 0.458827 -4.202316 -1.559733 2.222863 -0.660026 1.965643 1.179646 1.594172 2.642806 1.876904 -0.482785 -1.287421 -0.521758 -0.616496 -1.833211 -1.016081 -0.628648 1.210011 -2.153654 2.040290 1.555838 0.010225 0.589141 -0.219550 2.135707 -1.729598 4.153903 1.986342 -1.672036 0.618531 1.474509 4.533099 -2.002611 -1.780603 -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.856078 -0.779893 1.010653 0.797495 0.326747 0.543498 0.319892 -0.519894 0.764738 0.823757 -0.067783 0.393393 -0.595367 -0.098324 -0.015693 0.347530 -0.248950 -0.756502 -0.065341 -0.573990 -0.224263 -0.565866 -0.195275 0.321221 0.210018 -0.812665 -0.504461 -0.089439 -1.205520 -0.973812 0.094742 -0.186316 0.470556 -0.919955 0.015614 -1.920700 0.701478 0.820416 -0.248695 -0.977668 0.196721 -0.555111 0.164153 0.228469 -0.321705 0.162437 0.191514 -0.615186 0.313729 0.237250 0.605414 0.194187 0.077107 1.704943 -0.417428 0.816804 0.545724 -0.121875 -0.242237 0.416090 0.192189 -0.073754 0.663076 0.369192 -0.319323 -0.391940 0.001102 0.015875 -0.871950 0.387690 -0.221662 -0.649186 -0.187521 -0.232834 -0.858027 -0.540899 0.257535 0.238858 1.108398 -0.588550 1.018165 0.259661 0.556101 0.247096 0.749189 -0.005034 0.908621 0.168441 -0.542269 -0.058513 -0.270579 -0.014700 -0.060378 0.703747 -0.344868 -0.143807 0.542863 -0.622376 -1.015364 0.659916 0.048007 0.029947 -1.336471 -0.325076 0.448990 0.494769 -0.508925 -0.996613 -0.814501 0.643443 -0.168494 -0.422052 0.030202 -0.697630 -0.137517 -0.277773 -0.747999 -0.105648 0.484973 -0.518133 -0.966285 0.966573 -0.619637 0.318040 -0.034462 0.363161 -0.287665 0.489214 -0.055100 0.543263 -0.040381 -0.341075 -1.839475 -0.407276 0.037690 0.360551 -0.158741 0.119709 -0.096114 0.206269 -0.215658 0.593197 -0.210760 0.739404 0.825498 -0.033755 -0.377813 -0.514432 0.156892 -0.937112 0.139679 -0.560455 -0.260817 0.332844 0.682311 0.460982 0.288280 1.163784 -0.394801 0.625097 -0.164423 -0.322816 0.464296 -0.655893 0.470611 -0.476415 -0.714083 0.255180 0.727170 0.256482 0.279776 -0.264216 -0.036219 -0.509670 -0.552684 0.074817 0.272162 0.094854 0.701137 0.549405 1.547965 -1.280054 0.235308 0.074787 -0.212030 0.254531 -0.423730 -0.891500 0.026121 0.411061 -0.183189 0.942041 -0.084742 -0.670483 0.109863 -0.183178 0.311884 -0.585083 0.501830 -0.665743 0.004290 -0.268555 -0.656966 -0.571503 -0.396559 -0.509356 -0.317896 0.985792 -0.473360 -1.081128 0.810515 -0.081528 0.253769 -1.486772 1.064069 -0.493594 0.899016 -0.603528 -0.022364 -0.317703 0.903081 -0.183847 0.387921 0.437211 -0.715694 0.637342 1.176883 0.238115 0.463008 0.057591 0.622547 -0.091561 0.008947 -0.496564 0.827717 -0.214533 -0.363997 -0.054125 -0.412305 0.493913 0.085082 0.100738 -0.007624 0.738168 -0.390932 0.040098 1.034868 0.226253 -0.356768 0.540749 -0.035315 0.709709 -0.307151 -0.044471 -0.203993 0.230545 0.055826 0.177640 -1.008718 -0.566389 -0.708908 -0.980204 0.055712 0.453326 -0.079064 0.119209 0.104126 -1.187607 -0.464166 0.580417 -0.352585 0.760682 0.352888 0.601120 0.746705 0.796235 -0.108827 -0.285257 -0.285156 -0.298082 -0.467121 -0.454861 -0.212480 0.486098 -0.622065 0.608170 0.306111 0.078073 0.281543 0.618827 -0.172303 -0.562597 1.065165 0.533327 -0.210975 0.598884 0.611300 1.094104 -0.668074 -0.503298 -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) = -3.604082 -4.617953 7.067048 5.939398 1.338595 3.938893 0.532978 -5.197116 6.451840 3.009085 -1.112169 2.253757 -4.965567 1.063976 -2.006046 2.960633 -4.131606 -5.535773 -0.722305 -3.382644 -2.694737 -5.139558 1.021132 1.825080 1.774211 1.366368 -4.071624 1.398404 -7.254713 -7.636319 3.453549 -1.611954 3.655313 -0.544655 0.123878 -12.500071 6.414639 5.985931 -1.505088 -6.603062 0.937289 -3.756383 -0.691686 -0.243840 -0.803835 2.002076 0.235011 0.139184 2.991520 1.054811 2.958326 1.104684 -0.433250 7.986525 -3.429235 5.553003 2.482143 -0.041793 -1.911896 1.593347 1.390570 1.391250 5.073966 4.834132 -3.646958 -3.240825 1.114231 -0.785176 -7.282899 4.610405 0.150859 -2.568695 -2.424895 -1.135448 -3.896045 -1.638505 4.548505 1.771659 8.876960 -2.022459 6.423339 1.329803 3.486253 -0.667676 4.480795 -1.279588 7.564862 1.972604 -4.297783 -1.920109 -4.326732 -0.616210 -0.169953 4.912540 -2.664806 -1.115202 2.496456 -5.969741 -6.642781 1.937527 0.679669 -0.155877 -8.609844 -0.539518 5.171110 2.012820 -2.355346 -6.687598 -3.466982 2.963286 -2.593892 -3.117317 -0.543617 -2.639688 -2.112603 -1.083348 -5.750587 -2.438493 2.026282 -4.000610 -4.011401 5.368206 -3.147978 0.980915 -0.936250 1.980888 -1.461569 2.951182 -0.994507 2.899935 1.055889 -0.774025 -5.644484 -1.809830 0.835177 3.428038 -2.538681 -2.002685 -1.256041 1.314297 -3.367233 1.100682 -3.847749 2.976387 6.992007 -1.025228 -3.437849 -2.199772 0.820861 -7.988935 1.172525 -4.698826 -2.247610 0.239685 5.427609 1.711075 3.411819 8.285813 -4.776665 4.938932 -0.572426 -0.017208 4.160769 -0.935946 3.078777 -3.324712 -5.268173 3.517719 2.987786 1.250093 1.290254 -2.235057 -0.838836 -4.190328 -5.193069 3.041294 1.222695 1.554733 4.410682 2.364893 9.912293 -7.820657 2.715552 2.349146 -0.557162 1.887575 -0.832715 -6.462574 1.620074 1.593313 1.481778 7.512105 -0.510528 -5.076232 0.471742 0.854450 2.256211 -5.465098 3.598133 -4.949144 0.889813 -3.328131 -1.923571 -2.505008 -2.623388 -3.099367 -1.500836 6.713527 -3.027933 -8.773156 6.925752 -1.572619 4.347922 -10.573458 1.227750 -4.135406 4.946551 -3.260340 0.469874 -0.786062 0.973453 -2.031715 2.267002 3.117882 -3.034391 4.315889 6.986161 1.627718 2.103791 0.313682 3.526649 -0.020437 1.107940 -3.067273 5.909180 0.160336 -2.198737 -0.223490 -3.333034 1.982466 -1.224190 -0.120516 1.958390 6.519884 -0.629421 2.547829 4.578840 2.824879 -3.428301 3.728046 0.543508 2.728505 -1.671180 -1.038091 -0.029495 2.012163 -1.231788 3.519108 -6.578096 -7.593397 -3.614708 -9.606355 -0.423349 1.388768 1.744062 0.647755 0.858704 -6.312178 -2.852098 5.851004 -1.974008 11.612616 2.654214 4.048562 3.825720 5.627107 -3.565901 -1.769213 -0.991437 -0.582099 -3.228873 -2.382931 -3.385184 4.681057 -2.247478 4.128542 4.211357 -1.542035 1.228930 -1.311359 3.853717 -3.262617 7.977653 3.646935 -1.881136 4.236691 0.078443 8.865541 -0.520391 -3.770940 -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.438618 -2.012590 4.135685 3.322052 0.974992 1.758290 1.491338 -2.706009 3.966034 1.939434 -0.708616 0.945465 -2.164632 0.244027 -0.298980 2.105116 -2.087665 -2.402326 -0.094292 -1.707767 -0.814892 -3.464482 0.501321 0.653131 0.809606 1.239803 -1.702734 0.665889 -2.509463 -5.199136 2.384042 -0.642985 1.572405 0.227585 0.078952 -8.233720 4.064943 2.891627 -0.561732 -2.972463 0.358626 -1.390125 -0.512799 0.300624 1.424372 1.394679 0.268181 1.125142 1.106181 0.812426 2.018698 0.233079 0.721578 4.005435 -2.398611 2.482113 1.140255 -0.034616 -0.556364 0.756861 0.589455 0.567227 2.238966 3.445833 -1.634138 -1.257643 0.454373 -0.080648 -4.391122 1.889216 0.052724 -1.367559 -2.286143 -0.553577 -1.184953 -0.412614 -2.511075 1.171753 4.980024 -1.102777 4.111700 0.858307 2.770589 -0.649791 1.868057 -0.700407 3.618012 0.922008 -3.140893 -0.955428 -2.607297 -1.629921 0.552163 1.790831 -1.186202 0.016848 0.917709 -1.070208 -2.771524 0.777223 0.162082 -0.100822 -4.313427 -0.487953 2.266678 0.935386 -0.553649 -3.976369 -2.528227 1.201925 -1.432124 -1.436233 -0.675244 -1.081776 -1.222962 -1.143590 -3.022492 -1.179459 0.924319 -1.827204 -2.259325 2.080133 -2.468876 0.489181 -0.508687 0.678281 -0.462283 0.952710 -0.248049 1.402878 2.175871 -1.166015 -4.452830 0.215457 0.467942 3.385231 -1.078446 -0.573106 -0.375945 0.500985 -1.352895 0.804074 -0.738258 1.416556 4.467283 -0.466674 -1.451539 -0.995935 0.929361 -3.599252 2.017451 -1.960730 0.482285 -0.389344 2.359642 0.322840 1.445224 3.647211 -4.225557 3.111917 -0.267196 0.307910 1.556184 0.872910 1.202825 -1.408628 -2.689712 1.605767 1.732580 0.076571 0.710400 -0.932689 -0.287085 -1.788353 -2.322909 2.243785 0.062347 0.643656 1.926964 0.878457 7.303659 -3.890160 1.049386 1.007282 -0.030115 0.722450 -0.263828 -2.836786 2.049705 0.480711 1.313215 3.478742 -0.125316 -2.071310 0.076194 0.439684 0.762569 -2.292491 1.878851 -2.224376 -0.611007 -1.169397 -0.927810 -0.965227 -1.373156 -0.983593 1.123629 2.819029 0.360866 -4.390600 3.198589 -2.994548 1.458439 -4.956500 2.791343 -1.853355 0.514388 -2.576442 0.181487 -0.404474 0.823494 -0.716066 0.733279 1.323330 -1.121159 2.111670 4.478865 0.634994 0.560193 0.236492 1.159495 -0.043144 0.281274 -1.262582 2.911522 0.120906 -0.451651 -0.281105 -1.412913 2.265833 -0.522372 -0.707945 1.852061 3.958565 -0.704824 0.924824 2.099470 1.125463 -1.560482 2.387642 0.541940 1.291977 -0.641066 -0.533609 -0.075826 0.411540 -0.474115 1.674653 -2.728737 -2.839310 -0.230371 -4.785257 -0.481280 0.782796 1.116925 0.465795 0.478334 -3.768808 -1.237331 2.557312 -0.648465 3.138820 0.967765 1.720349 1.487290 2.140442 -1.276058 -0.782547 -0.927294 -0.397486 -1.655023 -1.317355 -0.947285 1.950171 -1.885510 1.750730 1.532933 -0.607201 0.405701 -0.954752 2.775323 -1.362873 4.438330 1.583426 -0.578222 1.691034 -0.330315 5.144582 -0.819698 -1.618069 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::iter_swap(int*, int*) = -0.461091 -0.615879 0.885506 0.736694 0.064349 0.393451 0.284148 -0.521448 0.898176 0.307257 -0.027362 0.121264 -0.735204 0.184991 -0.119896 0.380067 -0.570446 -0.710310 -0.078506 -0.491631 -0.367716 -0.671174 0.156959 0.134515 0.238701 -0.085731 -0.437256 -0.117192 -0.876006 -0.323591 0.624297 -0.295110 0.464977 -0.043249 0.007174 -1.886999 0.608177 0.474025 -0.247830 -0.770482 0.113655 -0.606880 0.284417 -0.249574 -0.123301 0.087459 0.094287 0.093195 0.534993 0.070271 0.340558 0.033239 -0.166255 1.456854 -0.675954 0.573761 0.230026 -0.053733 -0.284585 0.222897 0.184391 0.077026 0.607683 0.547582 -0.427916 -0.428041 -0.025752 -0.371583 -0.932353 0.574469 -0.013164 -0.085430 -0.514861 -0.134180 -0.546075 -0.413538 -0.383800 0.470348 1.153157 -0.625337 0.795758 0.179565 0.528596 0.075632 0.553275 0.004678 0.859407 0.128082 -0.569263 -0.030753 -0.543482 0.029467 -0.044667 0.227594 -0.152387 -0.544861 0.317266 -0.406252 -0.853209 0.361029 0.094241 0.178712 -0.962821 -0.111766 0.495336 0.381743 -0.555589 -0.953214 -0.517533 0.290515 -0.077283 -0.276252 0.128616 -0.441174 -0.250079 -0.634037 -0.765511 -0.311166 0.157167 -0.575568 -0.507884 0.805485 -0.610791 0.155594 0.020146 0.217222 -0.255865 0.724735 -0.017617 0.365991 0.123347 -0.221672 -1.160186 -0.233669 0.182622 0.962000 -0.090040 -0.046389 -0.242318 0.123799 -0.480378 0.001253 0.007333 0.379590 0.705520 -0.255824 -0.438792 -0.263653 0.218638 -1.009136 0.219861 -0.629741 0.025082 0.246855 0.645513 0.589190 0.465341 1.122136 -0.593035 0.647906 -0.219041 -0.130727 0.578343 0.139841 0.504624 -0.398357 -0.577297 0.233812 0.327201 0.166466 0.211030 -0.357656 -0.065116 -0.620598 -0.407553 0.104231 0.328199 -0.035857 0.550020 0.337552 0.903450 -1.192387 0.362119 0.339615 -0.029607 0.219960 -0.109722 -0.825357 0.361767 0.209032 -0.281235 0.510559 -0.133016 -0.617655 0.127096 -0.147859 0.349154 -0.577306 0.123150 -0.538567 -0.146431 -0.591380 -0.019499 -0.412692 -0.385304 -0.290553 -0.134595 0.848530 -0.392804 -0.721736 0.799864 -0.078711 0.495074 -1.126421 0.797827 -0.480223 0.644612 -0.576693 -0.065694 -0.178295 0.537436 -0.139684 0.189714 0.399718 -0.367784 0.365680 1.025921 0.280020 0.336743 0.163425 0.682025 0.095083 0.149032 -0.277243 0.751130 -0.094243 -0.268870 0.178553 -0.414895 0.333018 -0.040558 0.154287 0.641079 0.858520 0.041016 0.471748 0.643631 0.347753 -0.353453 0.309549 -0.054451 0.540123 -0.277444 0.024164 -0.058812 0.284194 -0.248121 0.277049 -0.828857 -1.032399 -0.406867 -0.774655 -0.032169 0.198195 -0.040816 0.047316 0.142684 -0.891271 -0.301925 0.279277 -0.404270 0.888576 0.212664 0.398526 0.607550 0.869345 -0.493831 -0.355468 0.144699 -0.061955 -0.297878 -0.123817 -0.547882 0.538903 -0.635281 0.446398 0.558361 -0.177053 0.061341 0.144936 0.647547 -0.455643 1.077486 0.462521 -0.230878 0.701274 0.493653 1.134266 0.160880 -0.434402 -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.853076 -1.236537 1.610324 1.349617 0.088171 0.861114 0.471269 -0.953304 1.442945 0.461320 -0.035693 0.395119 -1.208403 0.211070 -0.335542 0.447614 -0.894304 -1.240369 -0.237261 -0.933695 -0.679126 -1.084076 -0.072923 0.529081 0.357760 -0.207480 -0.801776 -0.185579 -1.805786 -0.504006 0.990826 -0.310698 0.823150 -0.308188 0.138811 -3.559255 1.012034 1.134314 -0.368923 -1.543198 0.161974 -1.089246 0.314916 -0.302816 -0.366361 0.076533 0.081190 0.075385 0.693808 0.041038 0.452148 0.292012 -0.305999 2.839064 -0.922448 1.186793 0.681936 -0.006040 -0.439723 0.447721 0.345348 0.152871 1.060391 0.765323 -0.717834 -0.716385 -0.001766 -0.522959 -1.515497 0.902139 0.138964 -0.488068 -0.695460 -0.368577 -1.202471 -0.771682 -0.339765 0.802172 1.956580 -1.195828 1.487649 0.318897 0.940438 0.221462 1.182327 -0.063535 1.614319 0.284978 -0.900365 -0.017017 -1.167012 0.082885 -0.077978 0.407486 -0.590697 -1.127876 0.730437 -0.970090 -1.622607 0.754272 0.154669 0.130316 -1.730145 -0.347511 0.825059 0.650897 -1.004267 -1.623470 -1.099714 0.828576 -0.176019 -0.616221 0.229288 -0.640157 -0.256282 -1.126671 -1.345009 -0.325972 0.593771 -0.876766 -0.975535 1.544879 -1.070052 0.351476 -0.061642 0.343777 -0.462816 1.177239 -0.057264 0.489875 0.111509 -0.416444 -2.021811 -0.459616 0.166714 1.641948 -0.273783 -0.156575 -0.217670 0.365681 -0.579473 0.247881 -0.147929 0.725860 1.098702 -0.295726 -0.727497 -0.698674 0.370205 -1.675364 0.199355 -1.045234 -0.223049 0.510774 1.153311 1.155273 0.597873 1.849212 -0.906781 1.178994 -0.257922 -0.240570 0.862064 0.030148 0.779972 -0.753395 -1.186379 0.465000 0.556015 0.462436 0.350715 -0.517821 -0.163877 -0.949753 -0.909301 0.130743 0.603436 0.020712 1.169338 0.809668 1.718868 -2.290193 0.574603 0.307134 -0.335876 0.457275 -0.343442 -1.475866 0.407269 0.481178 -0.496588 1.291397 -0.283720 -1.037255 0.276250 -0.176238 0.569104 -1.021566 0.412942 -1.058265 -0.347234 -0.996190 -0.192103 -0.796295 -0.596306 -0.831052 -0.570402 1.620082 -1.004920 -1.515416 1.443605 -0.063567 0.837861 -2.189866 1.236391 -0.777333 1.229116 -0.904244 -0.115788 -0.308274 0.960098 -0.368141 0.485189 0.751663 -0.959829 0.666861 1.902862 0.371708 0.613100 0.246658 1.129304 -0.020877 0.169607 -0.782000 1.413018 -0.185801 -0.642679 0.186406 -0.756836 0.654990 -0.088924 0.322446 0.959521 1.433521 0.134991 0.541086 1.361185 0.437705 -0.619654 0.557075 -0.085574 0.828295 -0.532358 0.033580 -0.200089 0.500228 -0.215405 0.412588 -1.556592 -1.725258 -0.994450 -1.540574 0.114771 0.282754 -0.098982 0.132736 0.088924 -1.763720 -0.736809 0.536407 -0.735250 1.642583 0.555885 0.882204 1.183289 1.489968 -0.803149 -0.410771 0.317254 -0.103453 -0.589292 -0.368757 -0.897140 0.959626 -0.954289 0.927016 1.054255 -0.110800 0.429515 0.346058 1.014148 -0.829575 1.956432 0.826745 -0.665555 0.980902 0.968362 1.943742 0.034107 -0.830560 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int std::__bit_width(unsigned long) = -0.276302 -1.097143 0.935193 0.909508 0.277643 0.498663 0.719534 -0.050768 0.689768 0.628882 -0.206106 0.484478 -0.898023 -0.157507 0.178171 0.265976 -0.304127 -0.834172 0.241876 0.030490 -0.001338 -0.672098 -0.118398 0.575736 0.341309 0.059489 -0.249989 -0.472375 -1.268262 -0.232725 0.278712 -0.211844 0.578085 0.276028 0.221444 -1.184446 0.359075 0.812294 -0.064766 -1.253429 0.061307 -0.361464 0.266890 -0.163569 0.211873 0.359885 0.567335 0.459365 0.064488 0.324457 -0.078161 -0.304827 0.306080 0.997972 -0.032660 0.743737 0.843576 0.067670 0.199289 -0.054012 0.353590 -0.281280 0.573412 0.412010 -0.384039 -0.126846 -0.307431 -0.265660 -0.861825 0.225371 0.300884 0.144232 -0.699722 -0.164542 -0.525540 -0.235848 -0.752263 0.466141 1.305105 -0.686621 1.215202 0.653290 0.851201 -0.024569 0.532781 0.073088 0.326032 0.306647 -0.657187 0.156772 -1.291788 -0.469284 -0.208292 -0.140275 -0.346757 -0.626934 0.378645 -0.295525 -0.979739 0.582946 -0.161444 0.079821 -0.471217 0.078233 0.415688 0.748853 -0.566247 -0.891108 -0.599373 0.194180 -0.195842 -0.409324 0.222412 0.040980 -0.257122 -0.560077 -0.713774 -0.300448 0.586403 -0.829901 -0.133434 0.739385 -0.574146 0.816005 -0.103592 -0.095246 -0.029317 0.549344 0.728494 0.187007 0.591920 -0.659599 -1.070018 -0.008952 0.157295 1.085083 -0.167428 0.130653 0.161992 0.318971 0.304676 0.270181 0.249905 0.393712 0.391590 -0.297494 -0.408028 -0.832216 0.062719 -0.466111 0.396816 -0.436878 0.361063 0.198500 0.642164 0.155334 0.136162 0.999780 -0.640129 0.427763 -0.132837 0.122683 0.029657 0.436338 0.338295 -0.317058 -0.618754 0.322736 0.779716 0.173841 0.304141 -0.368757 0.116594 -0.369629 -0.450025 -0.087997 0.143428 -0.327047 0.816671 0.310064 0.370843 -0.669963 -0.075878 -0.040218 0.049995 0.177111 -0.115465 -1.053399 0.655503 -0.062138 -0.045240 0.533627 -0.136330 -0.512740 0.662723 -0.185399 0.011861 -0.466491 0.407732 -0.721398 -0.395522 -0.572514 0.371567 -0.474733 -0.501177 -0.446616 0.243608 1.023443 0.254887 -0.520960 0.071733 -0.003319 0.220866 -1.003047 0.979841 -0.368857 0.417345 -0.207400 -0.305275 0.000452 0.410788 0.126702 -0.585693 0.520044 -0.461562 0.423879 0.614024 0.131790 -0.108002 0.537290 0.377785 0.065361 -0.160301 -0.387866 0.365754 -0.184288 -0.160707 0.103277 -0.346491 0.859136 0.154498 -0.274687 0.563939 0.631497 -0.084130 0.398208 0.449539 0.003339 -0.470792 0.114806 0.163676 1.006813 -0.430529 0.150110 -0.637687 0.103652 -0.072862 0.546804 -0.866742 -0.787423 0.084287 -0.731065 -0.387682 0.180607 0.117964 0.186036 0.121947 -1.045970 -0.530310 -0.140128 -0.312898 0.112076 0.424127 0.387203 0.852195 0.498975 -0.238415 -0.416083 0.241529 0.014785 -0.487209 -0.242547 -0.138551 0.135313 -0.674383 0.536725 0.538827 -0.067690 0.106869 -0.394696 0.946341 -0.548819 1.296026 0.639666 -0.672553 0.268782 0.621069 1.334960 -0.518091 -0.548420 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int std::__countl_zero(unsigned long) = -0.006650 -2.098136 2.214941 2.261064 0.835156 0.894706 1.606335 -0.425752 1.416187 1.792442 -0.613443 1.145947 -1.867897 0.103124 0.205386 1.185963 -0.763789 -1.698552 0.429168 0.083123 0.107221 -1.339966 0.652794 0.721403 1.154611 0.295055 -0.726796 -1.511990 -2.518723 -1.058536 0.840799 -0.495835 1.361973 0.839807 -0.134091 -2.122885 0.984557 1.653591 -0.319633 -2.568952 0.619201 -0.562194 -0.016278 -0.063802 0.848257 0.774654 0.927141 1.205845 0.330395 1.144744 0.248054 -0.370181 1.161758 1.942299 -0.377426 1.561941 1.634194 0.183097 0.367339 0.055288 0.788308 -0.168984 1.277821 1.249201 -0.408268 -0.626563 -0.753313 -0.542960 -2.055387 0.748364 0.398190 0.469497 -1.548723 -0.057170 -0.208053 0.035215 -1.466862 1.194025 2.800659 -1.122828 2.397505 1.132560 1.315895 -0.766786 0.542519 0.098448 0.256316 0.786812 -1.035632 -0.565114 -2.660266 -1.112444 -0.262391 -0.170605 -0.737843 -0.984853 0.919563 -0.011620 -1.952939 0.880673 -0.020518 -0.101861 -0.744369 0.519199 0.791294 1.584203 -0.790771 -1.757861 -1.132539 0.203568 -0.347603 -1.077693 -0.167138 -0.165092 -0.918441 -0.637271 -1.535281 -0.666240 0.750034 -1.810008 -0.448746 1.103357 -0.899574 1.370877 -0.299614 0.073844 -0.024380 0.754645 1.285634 0.852342 2.321267 -0.929804 -1.796525 0.687408 0.890078 2.047412 -0.600611 0.563920 -0.155155 0.583388 0.375583 0.566913 0.440109 0.929830 1.308512 -0.893874 -1.139171 -1.438982 0.667371 -1.043315 0.925192 -1.148534 0.909125 -0.077045 1.411024 -0.102542 0.665397 2.240625 -1.852380 1.023094 0.083109 0.533843 0.268932 1.004342 0.626046 -0.732932 -1.510237 0.612326 1.813758 -0.241537 0.338713 -0.301207 0.170422 -1.088893 -0.963887 0.161261 0.132478 -0.884282 1.476745 0.507889 1.524221 -1.171307 -0.074110 0.367777 -0.004881 0.188231 -0.153119 -2.559754 1.509917 -0.283687 0.579199 1.423919 -0.088761 -1.248550 1.346844 -0.393569 -0.151086 -0.798095 1.177468 -1.575038 -0.947565 -1.062949 0.545086 -0.431462 -1.136711 -0.460066 1.127136 2.172155 0.886213 -1.135261 0.319836 -0.694545 -0.299472 -2.408440 2.604920 -0.955635 -0.029952 -0.430060 -0.733895 -0.151756 0.770308 -0.285394 -1.197759 1.085990 -0.711124 1.336277 1.819812 0.342676 -0.395071 0.873493 0.739537 0.152732 -0.030973 -0.713358 1.050260 -0.260868 -0.351321 -0.098910 -0.690136 1.555188 -0.247522 -0.854511 1.492677 1.253006 -0.267424 0.986394 0.609699 0.756463 -1.187534 1.048922 0.333981 2.088757 -0.693679 0.148065 -0.896482 -0.234404 -0.418869 1.780156 -1.823093 -1.787096 0.591245 -1.867753 -0.659232 0.014637 0.869527 -0.024553 0.203819 -2.390803 -1.293214 -0.852752 -0.581472 0.176215 1.173043 0.770494 1.454814 0.990426 -0.574174 -0.398765 -0.219694 0.253194 -0.900979 -0.999532 0.025339 0.331993 -0.970604 0.913143 1.184725 -0.054164 0.213746 -1.278264 1.872011 -1.023264 2.793339 1.301198 -0.976292 0.876997 0.635036 2.758996 -1.121237 -1.182432 -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.200169 -3.478799 6.080438 5.516606 0.658429 2.708249 0.954100 -4.389238 4.543869 2.488181 -0.811427 1.999846 -3.751846 1.072415 -1.301367 3.066075 -3.384577 -3.653606 -1.226476 -2.641673 -1.529538 -3.838710 1.425208 1.639615 2.109442 1.370064 -3.287149 0.292283 -4.902317 -6.137540 2.459075 -0.689300 2.962713 0.166412 0.064235 -9.396457 5.168914 5.098879 -1.135625 -5.017749 1.325682 -2.297021 -1.172023 -0.208827 -0.541673 1.651809 -0.437213 0.394237 2.080806 1.416369 2.211979 1.480476 1.245079 5.910215 -2.329789 4.184866 2.198404 0.255216 -0.901958 0.879616 1.151346 1.668117 3.286145 3.288804 -1.582431 -2.903282 -0.164220 -0.468322 -5.539527 3.421486 -0.411285 -2.099255 -2.751178 -1.184694 -2.627235 -0.572523 0.438554 2.343008 6.631000 -2.287292 4.716293 0.809633 1.799758 -1.142207 2.630543 -0.925526 4.546231 1.728999 -2.432881 -1.341424 -2.842633 -1.564371 0.608447 2.272500 -2.869549 -1.794888 2.421705 -3.996107 -5.031090 1.425961 1.126398 -1.123521 -5.308830 -0.598661 2.697480 1.745682 -1.400886 -4.962057 -2.444675 2.370957 -0.500518 -2.669424 -1.143450 -1.039134 -1.451119 -0.655536 -4.751207 -0.967290 1.366734 -2.701138 -2.406686 3.456644 -2.228355 0.621888 -0.870531 1.321862 -1.110379 2.497660 -0.801724 2.797476 1.872952 -0.033153 -3.693055 -0.100651 1.223782 2.639172 -1.987222 -0.601533 -1.134239 1.182112 -2.000791 1.517194 -2.013622 2.104671 5.131541 -0.775244 -2.817835 -1.631916 -0.080024 -5.817772 1.176456 -3.372369 -1.021264 0.886016 3.820419 0.976729 2.401115 5.877308 -4.176861 2.989949 0.252506 -0.060401 2.910115 -0.197700 1.885940 -2.340455 -4.550922 2.988832 2.038123 0.843085 0.749831 -0.390319 -0.455089 -2.862989 -3.356654 2.610023 0.754237 0.503482 3.490448 2.153256 7.369404 -4.454615 1.759583 1.724598 -0.979587 1.350200 -0.799829 -5.239100 1.594920 0.855420 1.665291 5.853800 -0.507656 -2.878552 1.100519 0.011504 1.380823 -3.773649 2.958411 -3.775739 0.188149 -2.835430 -1.427132 -0.856558 -1.956043 -1.913949 -0.347225 5.190832 -1.979606 -5.670771 5.127679 -1.794543 2.122078 -7.347031 2.867212 -2.691783 2.677673 -2.063370 -0.094983 -0.125205 0.344897 -2.213018 0.755354 2.369162 -2.015168 2.626928 6.005684 0.945082 0.296785 0.042238 2.486002 -0.396553 1.741237 -2.682836 4.925441 0.114384 -1.408673 -0.413705 -2.221252 1.446301 -1.892529 -0.465423 2.611748 4.330746 0.206958 1.558344 2.902836 2.877956 -2.643469 3.854791 0.438643 1.655648 -1.436011 -0.743741 0.429043 1.296537 -0.897720 3.000879 -4.802681 -5.378661 -2.980779 -6.681393 -0.215806 0.101287 2.174760 -0.295395 -0.283181 -4.861632 -3.281656 3.721864 -1.536855 6.110860 2.491032 2.850668 2.820881 3.982183 -2.173176 0.039614 -1.207920 0.180110 -1.591643 -2.129850 -1.860573 3.379572 -1.717228 2.267490 3.654143 -0.818245 1.837755 -1.503118 2.949165 -2.468898 6.262067 2.258646 -1.450468 3.281574 0.661914 5.622975 -0.638102 -2.857374 -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.357971 -1.534171 2.608096 2.404129 0.514650 1.004704 0.934046 -1.693214 2.079874 1.292665 -0.462401 0.704643 -1.918372 0.513687 -0.436779 1.585948 -1.419575 -1.719690 -0.224596 -0.856294 -0.393202 -1.867611 1.069110 0.449362 1.056085 0.677998 -1.317223 -0.291102 -2.094259 -2.573808 1.302258 -0.500019 1.316990 0.576638 -0.247968 -3.622633 2.217914 2.032763 -0.493084 -2.110110 0.676666 -0.992499 -0.352423 -0.196805 0.393798 0.839498 0.071793 0.673817 1.026416 0.796011 1.121059 0.188924 0.653738 2.115926 -1.336954 1.669734 0.798979 0.174452 -0.302540 0.310125 0.514141 0.596083 1.452504 1.803512 -0.791941 -1.094487 -0.243491 -0.391144 -2.621005 1.456153 -0.231283 -0.264905 -1.624282 -0.196680 -0.612581 -0.049206 -0.707051 1.091876 3.041573 -0.946012 2.212271 0.465626 0.932001 -0.862514 0.792827 -0.305881 1.541878 0.685636 -1.239386 -0.807565 -1.572500 -0.860408 0.173874 0.736312 -0.878215 -0.545638 0.904131 -0.910549 -2.082735 0.397693 0.320314 -0.316314 -2.022698 0.223752 1.101675 0.968530 -0.571417 -2.278157 -0.954387 0.606980 -0.215368 -1.080108 -0.484399 -0.478755 -0.957959 -0.579271 -2.055290 -0.781504 0.313363 -1.562835 -0.951441 1.256208 -1.115688 0.468675 -0.242909 0.450015 -0.297620 1.068259 -0.008805 1.223776 1.563604 -0.190409 -1.734698 0.267710 0.787729 1.769186 -0.793500 0.105360 -0.557803 0.370642 -0.844027 0.319047 -0.429524 0.799222 2.355033 -0.713499 -1.223288 -0.562705 0.307681 -2.349718 0.899041 -1.518352 0.288457 0.047255 1.627714 0.132729 1.157413 2.907789 -2.263126 1.335065 0.119109 0.101401 1.196380 0.522977 0.878636 -0.933109 -1.943229 1.178408 1.086755 -0.011198 0.261385 -0.170561 -0.143195 -1.442621 -1.285053 1.106587 0.150019 -0.107472 1.383666 0.604829 2.891331 -1.710246 0.756734 0.946576 -0.080422 0.492215 -0.147879 -2.438770 1.255475 0.092146 0.786539 2.084971 -0.129004 -1.344143 0.639235 -0.166855 0.495754 -1.591580 1.164267 -1.610805 -0.158439 -1.328697 -0.232588 -0.124883 -1.096566 -0.372995 0.649373 2.100735 0.100711 -2.161864 1.814370 -1.032052 0.678327 -3.041908 1.735428 -1.219071 0.579793 -0.942123 -0.110271 -0.028539 0.279413 -0.665710 -0.241115 1.009643 -0.528247 1.345032 2.594459 0.467184 -0.067519 0.299378 1.052349 0.103536 0.611824 -0.834071 1.902471 0.103817 -0.482521 0.030688 -0.951476 0.851866 -0.723600 -0.485142 1.717461 2.065200 -0.065396 1.110656 0.941448 1.369168 -1.138951 1.666065 0.246985 1.121540 -0.530346 -0.218032 0.042314 0.286234 -0.621226 1.582906 -1.938923 -2.508889 -0.334802 -2.890541 -0.239974 -0.102017 1.112873 -0.140349 0.139217 -2.172537 -1.243263 1.001749 -0.653588 2.216294 0.931941 1.038143 1.095405 1.586895 -1.045640 -0.153662 -0.469568 0.281730 -0.748403 -0.887301 -0.582333 1.144516 -0.990050 0.896538 1.422112 -0.459661 0.372136 -1.114918 1.769803 -1.039419 2.798452 1.053047 -0.431812 1.654043 0.088424 2.666093 -0.132070 -1.163924 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::move_backward(int*, int*, int*) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -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) = -1.166130 -1.933847 3.092238 2.636215 0.264255 1.509216 0.573690 -2.094846 2.669095 1.171707 -0.207505 0.914715 -1.877825 0.462781 -0.635779 1.281536 -1.648773 -1.915608 -0.551204 -1.611499 -1.121993 -2.180210 0.136571 0.854809 0.735693 0.411915 -1.663971 0.147258 -2.586943 -2.617606 1.543223 -0.375072 1.423441 -0.374823 0.204716 -6.480578 2.463479 2.366034 -0.587351 -2.623707 0.377658 -1.423410 -0.123440 -0.104724 -0.369336 0.543759 -0.095493 0.154596 1.019883 0.401998 1.172467 0.713210 0.232263 4.349037 -1.445314 2.157405 1.193618 0.071980 -0.634957 0.611654 0.595631 0.596876 1.755211 1.706137 -0.998968 -1.312817 0.058903 -0.400511 -2.969714 1.633113 0.059212 -1.206642 -1.368221 -0.751742 -1.636210 -0.821921 -0.806220 1.184039 3.645170 -1.561760 2.753544 0.514729 1.541030 -0.017261 1.803988 -0.390821 2.835141 0.730638 -1.716245 -0.287846 -1.435252 -0.406935 0.242421 1.125920 -1.363030 -1.456841 1.244316 -1.802892 -2.645837 1.087962 0.400255 -0.167572 -3.125596 -0.823202 1.490904 0.892849 -1.196787 -2.920329 -1.956913 1.383598 -0.381390 -1.260467 -0.137253 -0.824508 -0.539680 -0.951015 -2.420184 -0.518525 0.960659 -1.368097 -1.640311 2.205096 -1.572126 0.433618 -0.350480 0.644289 -0.665263 1.537869 -0.303632 1.154288 0.434006 -0.192825 -3.123403 -0.364158 0.379523 2.204112 -0.774891 -0.504869 -0.421243 0.636823 -0.984216 0.773342 -0.794647 1.196948 2.727586 -0.245016 -1.328678 -1.060942 0.383293 -3.055997 0.534049 -1.742696 -0.512745 0.533596 1.976706 1.105178 1.067661 2.919543 -2.148684 2.092108 -0.187421 -0.178027 1.438046 -0.005384 1.086092 -1.244011 -2.311352 1.220943 1.082763 0.665872 0.532914 -0.620019 -0.289709 -1.381148 -1.696835 1.043343 0.675071 0.234024 1.885152 1.244250 4.532724 -3.369609 0.930206 0.614695 -0.580196 0.779276 -0.544185 -2.530207 0.698874 0.681211 0.097424 2.900063 -0.375976 -1.601058 0.456753 -0.039809 0.826371 -1.871997 1.282554 -1.884700 -0.247207 -1.467054 -0.608850 -0.959119 -0.885674 -1.274150 -0.543959 2.709188 -1.542861 -2.977572 2.731897 -0.876705 1.253839 -3.879950 2.076922 -1.327640 1.612709 -1.669926 -0.101773 -0.293411 1.037189 -0.858777 0.789940 1.255272 -1.381607 1.189832 3.551731 0.495445 0.629225 0.140922 1.515660 -0.171288 0.510568 -1.420298 2.651352 -0.078251 -0.831394 -0.081526 -1.234728 1.201332 -0.575288 0.114779 1.300956 2.601086 0.008536 0.640255 2.027123 1.010613 -1.217584 1.635370 0.123070 1.013484 -0.846662 -0.185762 -0.066009 0.807908 -0.368442 1.088031 -2.525217 -2.614833 -1.688622 -3.045235 -0.031127 0.557512 0.494696 0.089071 -0.036045 -2.911165 -1.478336 2.032587 -0.991266 2.943306 1.109332 1.566601 1.716479 2.262695 -1.123526 -0.329362 -0.230851 -0.242742 -0.959940 -0.889849 -1.137241 1.736656 -1.375188 1.423497 1.715648 -0.278232 0.914045 -0.036585 1.664301 -1.290676 3.512127 1.277135 -0.867515 1.548173 0.918521 3.536830 -0.343058 -1.436750 -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.038354 -0.154074 0.180952 0.216128 0.052038 0.018830 0.095905 -0.045761 0.103732 0.152216 -0.052549 0.041127 -0.242530 0.088437 -0.056172 0.194891 -0.034010 -0.140147 -0.042333 0.008912 0.014684 -0.118990 0.201448 -0.020978 0.147783 0.105380 -0.086986 -0.082409 -0.201693 -0.191688 0.015360 -0.049977 0.122470 0.147409 -0.072306 0.103255 0.085195 0.192012 -0.056137 -0.154425 0.120334 -0.054690 0.044798 -0.032001 0.070502 0.119670 0.013107 -0.090818 0.098274 0.128829 0.177949 -0.046717 0.138055 -0.062990 -0.092383 0.100103 0.057481 0.048748 0.002613 -0.080932 0.052802 0.057282 0.062123 0.101814 -0.028766 -0.095930 -0.173774 -0.067496 -0.183827 0.086220 -0.199326 0.079806 -0.210658 -0.080530 0.038091 0.020599 -0.303712 0.048226 0.213597 -0.101859 0.126150 0.047325 -0.036132 -0.115600 -0.047809 0.028722 -0.126529 0.057507 0.000186 0.018540 0.120760 0.000683 0.000000 0.122702 -0.087437 0.072168 0.163581 0.040234 -0.148420 0.022129 0.031466 -0.013855 -0.003692 0.168251 -0.114877 0.165959 -0.076779 -0.144234 0.047919 -0.037267 0.246930 -0.065066 -0.082329 0.014127 -0.142223 -0.040568 -0.165453 -0.052966 -0.067956 -0.207655 0.034495 0.037787 -0.008693 0.074994 0.006889 0.021742 -0.018127 0.241482 0.082884 0.165749 0.043409 0.049292 -0.144046 0.015569 0.152275 0.113908 -0.129004 0.130588 -0.074431 -0.062994 -0.016965 -0.041235 0.013880 -0.017198 0.248255 -0.134045 -0.111460 -0.012183 -0.104559 -0.221089 0.055629 -0.130138 0.190868 0.044608 0.094314 -0.014376 0.111838 0.466865 -0.166053 -0.089241 0.045580 -0.136220 0.081028 0.146156 0.075062 -0.046326 -0.165047 0.131744 0.109519 -0.048188 0.082110 0.070662 0.004383 -0.135516 0.095331 0.185991 0.003785 -0.119965 0.119998 0.024053 -0.057168 0.144591 0.032969 0.101160 0.039916 0.026469 0.007467 -0.231882 0.157210 -0.054755 0.028800 -0.026065 0.006556 0.010133 0.160922 -0.184483 0.058582 -0.160461 0.128785 -0.113548 0.040027 -0.207280 0.056370 0.103292 -0.100012 0.129183 0.163009 0.148193 0.141314 0.081794 -0.042117 0.147556 -0.046074 -0.046985 0.164170 -0.077269 0.138673 -0.004722 -0.018142 0.062208 -0.005224 0.049558 -0.225189 0.083466 0.072446 0.003423 0.123647 0.041890 -0.182181 0.062118 0.119022 0.030675 0.132914 0.012777 0.085233 0.061632 -0.004669 0.120988 -0.057506 -0.028000 -0.094967 -0.126301 0.287357 0.127694 -0.007609 0.132117 -0.095328 0.219875 -0.079596 0.123313 0.056155 0.213981 -0.070863 0.000816 0.005273 0.114120 -0.085025 0.092128 -0.098171 -0.223864 0.099141 -0.136201 -0.046936 -0.039446 0.105347 -0.058394 -0.013321 -0.009250 -0.165732 0.090432 -0.093527 0.194880 -0.017628 0.026146 0.088086 0.098624 -0.075489 0.006286 -0.049565 0.086887 0.040356 0.019791 0.031996 0.020155 -0.095782 -0.101113 0.096898 -0.091452 0.026671 -0.016562 0.119264 -0.091409 0.225231 0.052981 0.020455 0.302905 0.049937 0.176537 0.018915 -0.067947 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__miter_base(int*) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_wrap(int* const&, int*) = -0.216889 -0.266459 0.395803 0.358802 0.113353 0.124916 0.245948 -0.174661 0.469585 0.329413 -0.007362 -0.032471 -0.401040 0.090013 0.115063 0.290524 -0.196848 -0.331630 0.027113 -0.200139 -0.128038 -0.330870 0.165481 -0.106598 0.150359 -0.107711 -0.137837 -0.168707 -0.356358 -0.158032 0.290792 -0.185617 0.213712 0.088776 -0.043321 -0.702062 0.261666 0.145042 -0.145935 -0.324930 0.068807 -0.258085 0.239958 -0.072157 0.163421 0.120623 0.114283 0.071114 0.303339 0.131296 0.287338 -0.121985 -0.030490 0.555408 -0.395300 0.218027 0.043743 -0.055105 -0.123191 0.127063 0.076943 -0.007923 0.280317 0.287755 -0.196732 -0.193710 -0.079493 -0.219865 -0.473803 0.243908 -0.030907 0.036258 -0.336534 -0.063083 -0.038942 -0.199795 -0.676753 0.197781 0.544326 -0.285583 0.383646 0.152019 0.268294 0.001952 0.195213 0.037562 0.294699 0.022421 -0.294056 0.011327 -0.200821 -0.072924 -0.024529 0.094550 0.022512 -0.128327 0.112014 0.162297 -0.352471 0.176669 0.028961 0.169857 -0.442496 0.072874 0.169694 0.238159 -0.255216 -0.464516 -0.234132 0.024126 -0.010357 -0.087593 0.024672 -0.299998 -0.227258 -0.320474 -0.343451 -0.193706 -0.016508 -0.325417 -0.278200 0.334512 -0.299204 0.071418 0.048823 0.086933 -0.119701 0.385644 0.071677 0.245280 0.189724 -0.164565 -0.808130 -0.016216 0.186422 0.517857 0.047057 0.096815 -0.174283 -0.009022 -0.269278 0.011859 0.148086 0.219611 0.447816 -0.194995 -0.199626 -0.079910 0.190318 -0.396993 0.232127 -0.294806 0.257395 -0.013431 0.286884 0.249883 0.268839 0.600635 -0.377012 0.270257 -0.180719 -0.050241 0.267341 0.248729 0.269126 -0.163710 -0.187158 0.028721 0.268726 -0.047430 0.144729 -0.181513 0.009020 -0.336900 -0.070138 0.030282 0.083114 -0.156346 0.217679 0.111036 0.453879 -0.472448 0.147832 0.227368 0.070123 0.064001 0.009635 -0.384964 0.263986 0.048628 -0.160819 0.076910 -0.038292 -0.271402 0.056405 -0.160563 0.133449 -0.213268 0.019920 -0.220722 -0.107197 -0.261829 0.103177 -0.197172 -0.249392 0.038858 0.171940 0.353763 0.152851 -0.182399 0.246892 -0.116255 0.064242 -0.399758 0.631279 -0.239453 0.106469 -0.377915 -0.070115 -0.129647 0.411151 0.018980 -0.030555 0.165898 -0.077239 0.173204 0.496971 0.165358 0.094412 0.114861 0.339207 0.085525 0.048982 -0.029303 0.325288 -0.067848 0.012571 0.122012 -0.172845 0.197385 0.014790 -0.036545 0.399399 0.403974 -0.088995 0.245487 0.179694 0.199252 -0.154400 0.178474 0.025816 0.378240 -0.117683 0.043544 -0.025753 0.044870 -0.168403 0.133783 -0.341205 -0.382094 0.154007 -0.229562 -0.076458 0.229987 -0.023723 0.042852 0.124349 -0.381034 -0.094659 0.022612 -0.191255 0.188176 -0.014701 0.111683 0.259365 0.390275 -0.190001 -0.239648 -0.002498 -0.080009 -0.127920 -0.068424 -0.147443 0.223762 -0.365918 0.132946 0.165409 -0.101269 -0.077372 0.040507 0.414465 -0.209244 0.484187 0.195786 0.028391 0.414686 0.305020 0.665044 0.015395 -0.157214 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_base(int*) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = -0.597181 -1.146650 1.746159 1.506355 0.241895 0.893340 0.375586 -1.019144 1.274986 0.909717 -0.088491 0.516690 -1.098944 0.179460 -0.144874 0.692699 -0.839574 -1.078277 -0.248059 -0.852658 -0.425327 -0.997377 -0.002008 0.509052 0.473445 -0.207935 -0.792869 -0.059672 -1.654869 -1.294377 0.631837 -0.303629 0.809109 -0.412161 0.220568 -2.734624 1.305478 1.289456 -0.352821 -1.532089 0.256723 -0.765818 0.111765 -0.016040 -0.196362 0.442643 0.120080 -0.044211 0.666565 0.365272 0.543403 0.283064 0.222985 2.137264 -0.748309 1.199830 0.673460 -0.076860 -0.156784 0.400609 0.245697 0.195113 0.906930 0.688980 -0.477859 -0.805047 -0.056766 -0.165983 -1.384603 0.840180 0.016760 -0.589487 -0.745759 -0.339900 -1.102240 -0.519679 -0.339347 0.660534 1.874045 -0.825361 1.404468 0.392689 0.745113 0.159297 1.087188 -0.044429 1.368428 0.381031 -0.816821 0.036567 -0.912139 -0.223825 0.056001 0.494362 -0.692829 -0.936787 0.625841 -1.035509 -1.474868 0.818252 0.186636 -0.087598 -1.560195 -0.427767 0.773982 0.617042 -0.787555 -1.497488 -0.804339 0.807600 -0.180784 -0.640879 0.139057 -0.720349 -0.266620 -0.543218 -1.229742 -0.215275 0.562059 -0.767361 -0.916559 1.383862 -0.690643 0.315482 -0.129116 0.424818 -0.494414 0.853200 -0.025048 0.825196 0.099360 -0.280487 -1.794683 -0.227547 0.268023 0.789457 -0.258368 -0.112282 -0.335102 0.401965 -0.479598 0.634182 -0.252220 0.766730 1.240116 -0.214142 -0.645450 -0.651483 0.136302 -1.460521 0.322553 -0.840018 -0.417429 0.255251 1.117251 0.587891 0.676226 1.459325 -0.887996 0.778765 -0.305281 -0.098791 0.834741 -0.201223 0.653233 -0.660592 -1.094198 0.566565 0.765262 0.379454 0.382842 -0.430321 -0.019669 -0.746297 -0.641315 0.263718 0.398113 -0.071312 1.170669 0.804267 1.847601 -1.481135 0.368132 0.402560 -0.353592 0.407511 -0.336048 -1.413444 0.378531 0.474537 -0.120464 1.428476 -0.252044 -0.893748 0.413965 -0.135724 0.473505 -0.956016 0.591094 -1.049794 -0.152004 -0.795732 -0.282700 -0.715257 -0.625955 -0.758831 -0.333885 1.546626 -0.697973 -1.362920 1.319039 -0.292276 0.497158 -1.948506 1.210057 -0.769411 0.936682 -0.608868 -0.063707 -0.223166 0.794213 -0.518529 0.292536 0.707526 -0.885414 0.809526 1.599383 0.388734 0.300381 0.131586 0.953354 -0.141695 0.199208 -0.831106 1.317188 -0.262255 -0.307900 -0.005557 -0.634697 0.542308 -0.246005 0.084219 0.430468 1.049600 -0.075422 0.284608 1.134249 0.500340 -0.588890 0.784755 -0.045973 0.690550 -0.549938 -0.062086 -0.142568 0.379010 -0.110961 0.605634 -1.562203 -1.252972 -0.919120 -1.400158 -0.052440 0.472220 0.105754 0.181509 0.052027 -1.604886 -0.847417 0.928591 -0.550225 1.096237 0.655360 0.757282 1.024907 1.292357 -0.464435 -0.320344 -0.190875 -0.181523 -0.519860 -0.490428 -0.603661 1.024496 -0.815224 0.766165 0.943968 -0.207521 0.442905 0.062699 0.748852 -0.887941 1.782925 0.783305 -0.442272 0.874354 0.861628 1.852602 -0.365518 -0.768963 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward::__copy_move_b(int*, int*, int*) = -1.375409 -3.382318 4.087265 3.638534 0.879723 2.866675 0.562251 -1.983904 2.184238 2.940859 -0.751014 2.107463 -2.236402 -0.301278 -0.116686 1.143687 -1.390498 -2.303175 -0.142635 -1.206972 -0.226278 -2.267449 -1.327309 2.477500 0.754493 -0.215465 -1.552517 0.565739 -4.316796 -4.593115 0.110201 -0.396050 1.825423 -1.361258 1.279961 -4.798715 3.225794 4.040856 -0.313164 -4.438177 0.270096 -1.182224 -0.436971 0.959189 -0.493215 1.875263 0.861249 -0.233027 0.444909 1.224602 0.595109 0.348679 1.721127 3.665703 -0.108656 3.415288 2.656118 -0.094216 0.736779 0.668289 0.523519 0.016038 1.898600 1.356759 -0.941766 -1.247211 -0.076592 0.849413 -2.682631 1.295430 0.119717 -1.956746 -1.377023 -0.964882 -3.073788 -0.726414 0.168788 1.018848 4.434817 -1.157589 3.975895 1.508203 2.102674 0.477094 3.141649 -0.218038 2.936376 1.334606 -2.250313 0.589174 -2.270191 -1.302552 0.154372 1.328659 -2.397194 -1.691076 1.342310 -3.664088 -3.455842 2.570836 -0.236725 -0.789054 -2.999675 -1.365952 2.014142 1.535247 -1.618853 -3.323108 -1.692416 2.498846 -1.045103 -1.884824 0.426230 -0.992427 -0.168443 0.021513 -2.372707 -0.317798 2.537254 -1.839623 -1.653188 3.312725 -0.661672 1.710238 -0.678106 0.631150 -0.737512 1.093178 0.682635 1.830697 -0.176251 -0.955286 -3.529491 -0.004630 0.115154 -0.357846 -0.966769 -0.406052 0.357791 1.469771 0.398041 2.624548 -1.418390 1.870835 2.655276 0.238221 -1.085239 -2.499074 -0.442773 -2.552215 0.610151 -1.389478 -2.010934 0.420465 2.655989 0.067175 0.851717 2.214303 -1.777173 1.046518 -0.667705 0.319016 0.979831 -1.277571 0.928923 -1.450253 -2.704005 1.864256 2.623253 1.079711 1.118217 -1.232888 0.161714 -0.656960 -1.490445 1.123547 0.696766 0.134957 3.420329 2.011901 4.468301 -1.899963 0.057342 -0.047113 -1.092832 1.033322 -1.227398 -3.383747 0.710243 1.186798 0.772763 4.218105 -0.684753 -1.650536 1.540373 0.089199 0.689847 -2.319799 2.392885 -2.855798 -0.060382 -1.252834 -0.940679 -1.776077 -1.492040 -2.573547 -0.748927 3.744239 -1.636496 -3.314805 2.340063 -0.807013 0.881177 -4.383156 1.754386 -1.662856 2.320242 -0.282431 -0.184628 -0.206591 1.200045 -0.873137 0.141473 1.850576 -2.544322 2.372293 2.516229 0.541564 0.097712 0.703091 1.402524 -0.763512 -0.575471 -2.582584 2.314803 -0.675835 -0.150633 -0.580032 -1.456673 1.857542 -0.306109 -0.409576 -0.737659 1.750306 -0.915289 -0.355614 2.780662 -0.020987 -1.276247 1.657440 -0.084950 1.580970 -1.625014 -0.316058 -1.397370 0.723857 0.664289 1.581062 -3.935684 -1.741955 -2.850862 -3.241676 -0.813871 1.365324 0.679485 1.087652 0.159656 -3.895989 -2.429641 3.416526 -0.940979 1.756900 2.069716 2.073120 2.546537 2.223627 0.124383 -0.730555 -1.176376 -0.610188 -1.879737 -1.202361 -0.526511 1.967078 -1.504341 2.297271 1.800425 -0.232791 1.383004 -0.258453 0.910235 -2.328074 3.945556 2.306898 -1.578814 0.755631 1.751867 3.924585 -2.608091 -1.975733 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__copy_move::__assign_one(int*, int*) = -0.407441 -0.564046 0.743006 0.640241 0.093095 0.349896 0.309873 -0.387513 0.759680 0.339155 -0.027949 0.086348 -0.641111 0.110885 -0.003558 0.307200 -0.407787 -0.603038 -0.033852 -0.403449 -0.285743 -0.560228 0.066702 0.101492 0.195381 -0.113732 -0.315103 -0.164401 -0.786927 -0.206811 0.510059 -0.224173 0.390100 0.016026 0.031241 -1.547953 0.465484 0.426048 -0.201143 -0.694700 0.075418 -0.515170 0.274640 -0.156325 0.014103 0.108529 0.120533 0.104235 0.406485 0.086523 0.299144 -0.028593 -0.134833 1.221133 -0.536317 0.501923 0.241355 -0.043590 -0.208245 0.216726 0.157476 0.022489 0.513161 0.432263 -0.372221 -0.331031 -0.050776 -0.323503 -0.776928 0.430575 0.038678 -0.105038 -0.444940 -0.158480 -0.387238 -0.374566 -0.604516 0.388115 0.965354 -0.563830 0.723955 0.212691 0.496372 0.071811 0.503310 0.008478 0.697364 0.097498 -0.493278 0.019888 -0.526983 -0.042470 -0.047387 0.155200 -0.151977 -0.418813 0.280266 -0.183832 -0.727394 0.349602 0.050091 0.170622 -0.809152 -0.039884 0.374321 0.361953 -0.480450 -0.807101 -0.486018 0.262044 -0.080380 -0.237791 0.092975 -0.374476 -0.233167 -0.585644 -0.635121 -0.239935 0.180756 -0.492755 -0.459963 0.702423 -0.540339 0.168033 0.016845 0.141689 -0.211511 0.633881 0.051102 0.286146 0.171799 -0.268252 -1.163250 -0.134933 0.166611 0.879897 -0.043934 0.016797 -0.156143 0.105228 -0.350009 0.061185 0.067409 0.362876 0.613112 -0.225752 -0.349894 -0.279170 0.238516 -0.765160 0.222300 -0.514678 0.124468 0.153253 0.543281 0.542903 0.353376 0.961061 -0.536704 0.542682 -0.213835 -0.092950 0.427219 0.217685 0.420608 -0.339511 -0.469421 0.155234 0.344998 0.102781 0.213933 -0.302464 -0.041940 -0.516604 -0.325338 0.061568 0.244314 -0.092251 0.508473 0.316068 0.783941 -1.022393 0.269802 0.234751 -0.041783 0.177182 -0.087390 -0.701787 0.321502 0.172140 -0.263922 0.420399 -0.116470 -0.490010 0.112871 -0.157087 0.259337 -0.450956 0.121553 -0.468174 -0.187376 -0.482079 0.042914 -0.388820 -0.359383 -0.229076 -0.049233 0.727278 -0.181832 -0.572735 0.589069 -0.100546 0.319614 -0.917578 0.784100 -0.399366 0.450616 -0.531277 -0.090649 -0.183911 0.558550 -0.073190 0.113194 0.341002 -0.337094 0.310512 0.889433 0.224787 0.251883 0.177072 0.567888 0.056581 0.063472 -0.248968 0.625437 -0.102776 -0.170956 0.151818 -0.349375 0.351083 0.005958 0.069815 0.581599 0.719533 -0.010526 0.342436 0.530890 0.235040 -0.289307 0.257440 -0.010944 0.517044 -0.244425 0.042165 -0.098937 0.179175 -0.174808 0.199088 -0.701406 -0.792375 -0.184060 -0.604219 -0.034460 0.233855 -0.055631 0.088347 0.125342 -0.791915 -0.272842 0.150101 -0.353454 0.622271 0.142085 0.339896 0.541148 0.712345 -0.375412 -0.312083 0.126380 -0.081599 -0.281160 -0.134987 -0.387380 0.435190 -0.548083 0.381987 0.434896 -0.104168 0.062566 0.126489 0.621623 -0.394004 0.917035 0.391700 -0.205006 0.560870 0.506815 1.035517 0.035258 -0.360130 -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.856078 -0.779893 1.010653 0.797495 0.326747 0.543498 0.319892 -0.519894 0.764738 0.823757 -0.067783 0.393393 -0.595367 -0.098324 -0.015693 0.347530 -0.248950 -0.756502 -0.065341 -0.573990 -0.224263 -0.565866 -0.195275 0.321221 0.210018 -0.812665 -0.504461 -0.089439 -1.205520 -0.973812 0.094742 -0.186316 0.470556 -0.919955 0.015614 -1.920700 0.701478 0.820416 -0.248695 -0.977668 0.196721 -0.555111 0.164153 0.228469 -0.321705 0.162437 0.191514 -0.615186 0.313729 0.237250 0.605414 0.194187 0.077107 1.704943 -0.417428 0.816804 0.545724 -0.121875 -0.242237 0.416090 0.192189 -0.073754 0.663076 0.369192 -0.319323 -0.391940 0.001102 0.015875 -0.871950 0.387690 -0.221662 -0.649186 -0.187521 -0.232834 -0.858027 -0.540899 0.257535 0.238858 1.108398 -0.588550 1.018165 0.259661 0.556101 0.247096 0.749189 -0.005034 0.908621 0.168441 -0.542269 -0.058513 -0.270579 -0.014700 -0.060378 0.703747 -0.344868 -0.143807 0.542863 -0.622376 -1.015364 0.659916 0.048007 0.029947 -1.336471 -0.325076 0.448990 0.494769 -0.508925 -0.996613 -0.814501 0.643443 -0.168494 -0.422052 0.030202 -0.697630 -0.137517 -0.277773 -0.747999 -0.105648 0.484973 -0.518133 -0.966285 0.966573 -0.619637 0.318040 -0.034462 0.363161 -0.287665 0.489214 -0.055100 0.543263 -0.040381 -0.341075 -1.839475 -0.407276 0.037690 0.360551 -0.158741 0.119709 -0.096114 0.206269 -0.215658 0.593197 -0.210760 0.739404 0.825498 -0.033755 -0.377813 -0.514432 0.156892 -0.937112 0.139679 -0.560455 -0.260817 0.332844 0.682311 0.460982 0.288280 1.163784 -0.394801 0.625097 -0.164423 -0.322816 0.464296 -0.655893 0.470611 -0.476415 -0.714083 0.255180 0.727170 0.256482 0.279776 -0.264216 -0.036219 -0.509670 -0.552684 0.074817 0.272162 0.094854 0.701137 0.549405 1.547965 -1.280054 0.235308 0.074787 -0.212030 0.254531 -0.423730 -0.891500 0.026121 0.411061 -0.183189 0.942041 -0.084742 -0.670483 0.109863 -0.183178 0.311884 -0.585083 0.501830 -0.665743 0.004290 -0.268555 -0.656966 -0.571503 -0.396559 -0.509356 -0.317896 0.985792 -0.473360 -1.081128 0.810515 -0.081528 0.253769 -1.486772 1.064069 -0.493594 0.899016 -0.603528 -0.022364 -0.317703 0.903081 -0.183847 0.387921 0.437211 -0.715694 0.637342 1.176883 0.238115 0.463008 0.057591 0.622547 -0.091561 0.008947 -0.496564 0.827717 -0.214533 -0.363997 -0.054125 -0.412305 0.493913 0.085082 0.100738 -0.007624 0.738168 -0.390932 0.040098 1.034868 0.226253 -0.356768 0.540749 -0.035315 0.709709 -0.307151 -0.044471 -0.203993 0.230545 0.055826 0.177640 -1.008718 -0.566389 -0.708908 -0.980204 0.055712 0.453326 -0.079064 0.119209 0.104126 -1.187607 -0.464166 0.580417 -0.352585 0.760682 0.352888 0.601120 0.746705 0.796235 -0.108827 -0.285257 -0.285156 -0.298082 -0.467121 -0.454861 -0.212480 0.486098 -0.622065 0.608170 0.306111 0.078073 0.281543 0.618827 -0.172303 -0.562597 1.065165 0.533327 -0.210975 0.598884 0.611300 1.094104 -0.668074 -0.503298 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -3.300289 -6.993203 7.619870 6.528414 1.330317 4.770545 3.270383 -2.923100 3.572241 5.393220 -2.594442 2.898959 -4.966087 -2.094866 -0.216690 1.808626 -2.599834 -4.937265 0.696049 -1.357134 -0.754399 -4.482146 -1.110879 4.898363 1.961841 2.252400 -2.168553 -0.616385 -6.972246 -7.996250 2.192872 -0.661175 3.822229 3.278270 0.848608 -9.443213 5.463556 6.938380 -0.976969 -6.505871 0.805502 -0.818044 -2.318550 1.870049 -0.963673 3.005058 2.269383 1.352899 -0.310341 2.671464 2.454970 -2.078074 4.817777 7.597232 1.036500 7.072295 6.428667 0.581450 2.536738 1.667551 1.733170 -0.591066 3.830389 4.368358 -1.515047 -0.482352 -0.134616 -0.713363 -6.078003 2.760779 -0.185401 -3.271954 -2.707344 -1.969833 -2.593527 -0.869987 -3.592140 1.941734 9.369386 -3.503593 9.378061 4.704833 5.123308 -1.781760 3.298404 -0.691157 4.122147 2.826373 -4.363694 -0.316662 -5.331576 -3.351994 -0.279506 2.401781 -4.995645 0.054581 3.922962 -4.828037 -7.515762 4.293992 -0.685868 -1.501404 -3.650752 0.514558 3.016641 1.470575 -2.358301 -6.178179 -4.388107 3.702930 -3.700274 -2.713617 -2.505475 1.158111 -0.901383 1.819611 -5.436345 -0.623204 3.927765 -5.035491 -1.937458 5.221019 -0.761113 4.470041 -0.885701 0.497193 -0.525247 2.412454 3.191453 2.169972 3.104103 -1.831405 -6.998273 1.751132 2.038791 1.456552 -2.751744 -1.109688 2.419421 2.451800 1.495532 4.424382 -1.852698 3.908119 4.236581 -0.564146 -3.569785 -5.435005 -1.597612 -6.355242 2.146266 -4.126616 -1.560777 1.794365 4.692497 0.891466 1.128747 5.424289 -5.391276 4.530109 -0.756541 1.362041 -0.824291 -0.495542 1.990771 -3.096695 -5.491930 3.343200 5.458126 0.818277 2.132680 -2.895933 -0.376791 -2.677833 -4.955418 3.139392 -0.590884 -0.449410 5.099980 3.303678 10.853418 -4.596253 0.519382 -0.035552 -0.781610 0.829670 -0.475145 -7.569687 3.322752 0.422947 1.932837 7.439389 -0.084486 -2.417936 2.400161 -0.942877 -0.022024 -4.846112 6.183430 -5.172627 -1.255557 -2.391051 -0.677235 -2.853134 -3.448386 -2.823775 0.329122 7.230480 -3.299345 -4.957636 3.697410 -0.533259 0.431834 -7.292999 6.556469 -3.328258 3.939791 -1.437886 -3.302528 -1.165361 1.175107 0.860189 -1.236288 2.401418 -4.050699 4.597729 6.167916 0.559826 1.093916 2.812565 2.401791 -1.393301 -0.849663 -3.922294 3.516628 -0.019788 -2.717395 -1.388185 -2.865899 4.046267 -0.603149 -2.337697 1.967735 5.745483 -2.482571 -0.026232 3.220656 0.602278 -3.557113 2.104072 1.610321 4.940635 -3.352326 -1.259524 -2.551915 -0.222124 -0.011216 3.259052 -7.349965 -4.625117 -4.005867 -6.047317 -3.773684 0.594329 3.718511 1.552941 0.756616 -7.318669 -4.858952 4.417040 -2.377353 1.894585 4.154679 4.915101 5.955815 4.421026 0.608005 -1.923243 -1.323305 0.713334 -4.058924 -1.457460 -1.616134 2.882266 -1.693729 4.872177 2.888328 0.507219 2.265379 -1.159447 3.598820 -4.432023 8.711411 4.131771 -4.029375 2.067950 1.647762 6.267320 -4.980350 -4.053969 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::queue >, void>() = 0.060676 -0.456717 0.944534 0.770424 -0.203297 0.231036 -0.081087 -0.524392 0.737878 0.017509 -0.221921 0.184805 -0.457092 0.325151 -0.257642 0.500179 -0.871054 -0.513470 -0.126933 -0.341204 -0.389668 -0.483396 0.205974 0.095416 0.267665 0.513612 -0.431568 0.170662 -0.341672 -0.435148 0.511093 -0.300232 0.298949 0.288022 0.216337 -1.288208 0.659647 0.297138 -0.228350 -0.685815 0.033329 -0.361281 0.081712 -0.472317 -0.154313 0.171244 0.055955 0.473019 0.418505 0.161417 0.002235 0.060252 0.075861 1.079785 -0.375056 0.412956 0.324436 0.000519 -0.077563 0.027235 0.271066 0.156384 0.300155 0.503211 -0.135606 -0.478107 -0.177245 -0.415257 -0.531218 0.628259 -0.067271 0.047479 -0.621305 -0.255153 -0.499256 -0.148704 -0.966445 0.680545 1.037373 -0.676762 0.451040 0.202434 0.473076 0.092191 0.327354 0.026504 0.732174 0.285536 -0.397311 0.124043 -0.218044 -0.223354 0.154503 -0.315586 -0.220738 -0.885695 0.251281 -0.891921 -0.638479 0.327497 0.242810 0.100441 -0.276462 -0.136474 0.451138 0.229286 -0.398484 -0.591786 -0.038941 0.064110 0.076965 -0.176456 0.140277 0.000826 -0.095269 -0.178450 -0.816999 -0.166183 0.094070 -0.382804 0.106450 0.559223 -0.153437 0.011498 -0.105547 0.040483 -0.182736 0.823533 0.042695 0.407034 -0.128955 0.224519 -0.383379 0.349135 0.318246 0.298524 -0.152827 0.009316 -0.142655 0.169624 -0.476376 -0.143147 -0.238845 0.135320 0.432842 -0.227916 -0.609654 -0.337394 -0.313889 -0.904663 0.180789 -0.555335 -0.250107 0.374926 0.557501 0.619409 0.498625 0.642256 -0.628035 0.256800 -0.229421 0.121849 0.441827 0.228918 0.361730 -0.281847 -0.410708 0.390987 0.126453 0.119189 0.280164 -0.431182 0.077453 -0.519258 -0.118783 0.487677 0.446228 -0.042473 0.454804 0.258991 0.265592 -0.530623 0.188532 0.399198 0.028073 0.056088 0.016864 -0.685218 0.466850 0.055741 0.219963 0.298006 -0.102864 -0.230300 0.136212 -0.112846 0.272332 -0.381661 -0.089514 -0.356887 -0.123740 -0.523048 0.466751 -0.288587 -0.155967 -0.171546 -0.208266 0.732355 -0.746914 -0.305962 0.793901 -0.149240 0.578242 -0.550724 0.365833 -0.384267 0.724423 -0.110630 -0.057328 -0.004000 -0.224310 -0.237114 0.046062 0.380143 -0.058278 -0.033271 0.546649 0.266825 0.106382 0.176585 0.562742 -0.082163 0.345271 -0.145847 0.533693 -0.084532 -0.134811 0.122661 -0.284972 0.038384 -0.232134 0.207618 0.681385 0.433463 0.378109 0.559697 0.255261 0.403284 -0.446551 0.230914 -0.101625 0.284615 -0.414277 -0.054546 0.028311 0.308824 -0.352326 0.198221 -0.672992 -0.928349 -1.017136 -0.342433 -0.295201 -0.172755 0.090006 -0.174838 -0.014783 -0.373403 -0.377535 0.614216 -0.310947 0.383493 0.291214 0.196558 0.508402 0.735426 -0.406234 -0.255731 0.090599 0.023011 -0.076064 0.131397 -0.688417 0.587664 -0.457253 0.127516 0.772152 -0.334697 0.081929 0.082276 0.628415 -0.325027 0.822617 0.396719 -0.369397 0.414195 0.512800 0.724194 0.418215 -0.460097 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = 0.247802 -1.022171 2.463501 2.221989 -0.248550 0.729948 0.066720 -1.792920 1.630194 0.980613 -0.169901 0.594561 -1.098957 0.784875 -0.494150 1.632898 -1.711727 -0.969707 -0.714040 -1.303565 -0.992001 -0.999606 0.596474 0.144550 0.957860 0.535711 -1.174555 0.023881 -0.914915 -2.072830 0.802980 -0.345434 0.839843 -0.154246 0.302004 -3.285149 1.927330 1.356361 -0.639446 -1.655428 0.425531 -0.676201 -0.212269 -0.308282 -0.404707 0.432335 -0.324261 0.610682 1.067942 0.748356 0.742312 0.820481 0.851860 2.906977 -0.887168 1.345954 0.719001 0.057988 -0.313050 0.460921 0.522980 0.726943 0.787323 0.816584 0.128753 -1.434604 -0.449736 -0.410474 -1.369032 1.463971 -0.231400 -0.882834 -1.344268 -0.743687 -0.962786 -0.355127 -2.179656 1.429772 2.219941 -1.500781 1.021414 0.355976 0.330751 0.006984 0.851811 -0.212397 1.747334 0.661762 -0.483701 0.026070 -0.067728 -0.663513 0.634175 -0.271892 -1.102535 -2.303422 0.935209 -1.611438 -1.793270 0.885975 0.870313 -0.325898 -1.184963 -0.694876 0.813404 0.436411 -0.847050 -1.508010 -0.479563 0.646937 0.369925 -0.799842 -0.121421 -0.463641 -0.168571 0.088929 -1.958875 -0.033415 0.295687 -0.659369 -0.562378 1.316343 -0.045701 -0.136989 -0.305052 0.475605 -0.548247 1.501126 -0.361075 1.509193 -0.031820 0.987972 -1.142670 0.811308 0.840403 -0.070097 -0.257977 0.137132 -0.683219 0.566558 -1.092851 0.782744 -0.651718 0.843739 1.578562 -0.208425 -1.332880 -0.574672 -0.433445 -2.009913 0.509881 -1.237995 -0.785476 0.443776 1.341847 0.954667 1.084707 1.222870 -1.458524 0.521534 -0.247619 0.215208 1.245524 0.006682 0.777119 -0.781034 -1.350814 0.908116 0.655957 0.340905 0.351113 -0.293107 0.079757 -1.002565 -0.412794 0.855315 0.683169 -0.347473 1.224658 0.973512 2.363951 -1.166677 0.541163 0.883228 -0.507272 0.381714 -0.263955 -1.844444 0.577042 0.359069 0.602532 1.615540 -0.284337 -0.537686 0.473905 -0.333775 0.543031 -0.959627 0.392663 -1.126429 -0.329114 -1.029700 0.315040 -0.470955 -0.383314 -0.512903 -0.425496 1.902189 -1.740034 -1.004898 2.244568 -0.812256 0.503869 -1.726978 1.868872 -0.847515 0.823773 -0.562440 -0.232376 -0.067849 0.124401 -1.098220 0.414272 0.880672 -0.516024 0.292586 2.074094 0.440393 0.133691 -0.064843 1.305850 -0.478246 1.034652 -0.875004 2.052947 -0.219277 -0.289389 -0.243884 -0.673616 -0.055111 -0.979902 0.289655 1.246300 0.779433 0.442290 0.513269 0.804444 1.292196 -1.018387 1.578641 -0.095241 0.288448 -0.902024 -0.156124 0.493856 0.400862 -0.628116 0.864306 -1.782697 -1.561470 -2.137287 -1.028817 -0.260942 0.068467 0.611809 -0.566547 -0.433344 -1.216970 -1.440913 1.806205 -0.717920 0.300323 1.001265 0.783157 1.135872 1.777846 -0.482573 0.185818 -0.631857 -0.201567 -0.016179 -0.587995 -0.833673 1.545864 -0.700901 0.406730 1.599950 -0.355584 0.767168 0.012036 1.019770 -0.887884 1.835567 0.640025 -0.366073 1.143968 1.460146 1.782084 0.048074 -1.035245 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::empty() const = 0.040559 -0.493089 0.949800 0.838483 -0.255501 0.304300 -0.071798 -0.541112 0.576700 0.174246 -0.180134 0.226929 -0.408710 0.202676 -0.070496 0.466703 -0.713713 -0.348269 -0.198079 -0.419745 -0.360864 -0.353417 -0.004183 0.205368 0.288775 0.502514 -0.335178 0.119671 -0.304865 -0.549785 0.278293 -0.128232 0.310938 0.292606 0.311749 -1.228450 0.619067 0.517743 -0.188462 -0.732097 0.048634 -0.290229 0.027365 -0.215007 -0.172044 0.228149 -0.005898 0.317875 0.286258 0.214443 0.039887 0.118633 0.298232 0.992505 -0.126826 0.493077 0.410574 -0.031608 -0.056830 0.044061 0.229728 0.140288 0.264036 0.242682 -0.034619 -0.490812 -0.222107 -0.259100 -0.434480 0.457680 -0.048430 -0.313292 -0.533546 -0.466256 -0.406074 -0.198758 -1.207004 0.627030 0.851517 -0.697099 0.462828 0.225849 0.254321 0.089699 0.418295 -0.034776 0.669965 0.272417 -0.236317 0.263857 -0.012759 -0.383920 0.261393 -0.259023 -0.463341 -0.847335 0.354796 -0.750062 -0.675758 0.421335 0.276509 -0.072027 -0.299947 -0.223322 0.256899 0.228161 -0.376973 -0.513401 -0.087597 0.231432 0.155140 -0.258117 -0.059869 0.093828 -0.043349 -0.054227 -0.766546 0.055118 0.241674 -0.244873 0.039537 0.564014 0.012276 0.041083 -0.137198 0.051810 -0.178572 0.823456 0.015540 0.405728 -0.166511 0.281462 -0.371467 0.403263 0.259703 0.030077 -0.145047 -0.019979 -0.035584 0.212215 -0.291169 0.183366 -0.234536 0.286294 0.541126 -0.052199 -0.500968 -0.385485 -0.419090 -0.782783 0.143936 -0.454774 -0.227258 0.380709 0.496888 0.549135 0.318998 0.467420 -0.561687 0.082271 -0.172916 0.067589 0.352625 0.266574 0.301098 -0.310791 -0.413158 0.389503 0.192498 0.180835 0.266885 -0.222805 0.074430 -0.344926 -0.090652 0.505976 0.350749 -0.065260 0.558836 0.421529 0.625823 -0.314476 0.097466 0.194322 -0.175871 0.095194 -0.031384 -0.647472 0.286384 0.110030 0.199476 0.498862 -0.139231 -0.025529 0.168331 -0.152345 0.179428 -0.368578 0.115804 -0.413068 -0.107872 -0.424820 0.312787 -0.293838 -0.153210 -0.267222 -0.223274 0.757700 -0.721586 -0.245665 0.718040 -0.198832 0.363904 -0.480559 0.534293 -0.322896 0.554608 -0.170329 -0.164689 0.010523 -0.179968 -0.252252 0.056942 0.356194 -0.137722 -0.100814 0.591629 0.168573 -0.039077 0.109071 0.494080 -0.230548 0.362764 -0.299567 0.634980 -0.080263 0.015194 0.002509 -0.249995 -0.008518 -0.254943 0.089823 0.589661 0.283856 0.282322 0.203011 0.259965 0.299451 -0.386830 0.397480 -0.040784 0.204574 -0.428081 -0.084869 0.059369 0.308404 -0.146328 0.125559 -0.696048 -0.643792 -0.939170 -0.232268 -0.257649 0.006210 0.172507 -0.118479 -0.153987 -0.343636 -0.557212 0.749854 -0.292031 0.163676 0.272620 0.284413 0.539861 0.636119 -0.147146 -0.083879 -0.051491 -0.037472 -0.023535 0.016290 -0.447475 0.568779 -0.318233 0.127694 0.703321 -0.179538 0.297201 0.101045 0.561931 -0.374362 0.689032 0.268354 -0.379135 0.338814 0.697791 0.566288 0.057529 -0.430053 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::front() = 0.004164 -0.389540 0.788069 0.732362 -0.197920 0.219280 -0.010957 -0.486578 0.537064 0.043006 -0.067740 0.120376 -0.464843 0.242107 -0.010516 0.409510 -0.640809 -0.366944 -0.223083 -0.368402 -0.288645 -0.363734 0.204346 0.141243 0.284031 0.416548 -0.354060 0.025549 -0.336464 -0.279675 0.434062 -0.146213 0.372373 0.421292 0.155327 -1.145742 0.521872 0.386394 -0.176365 -0.554625 0.103973 -0.304859 0.092346 -0.323354 -0.185231 0.168853 -0.072578 0.154157 0.374178 0.120452 0.068908 0.098532 0.109174 0.742893 -0.300330 0.356030 0.201581 -0.055154 -0.124731 -0.029489 0.172980 0.205242 0.313030 0.285288 -0.127076 -0.480843 -0.175493 -0.330898 -0.559053 0.469983 -0.057493 -0.089155 -0.509978 -0.308032 -0.316285 -0.170208 -0.638560 0.556661 0.748773 -0.556960 0.367418 0.095043 0.143177 -0.013026 0.286882 -0.001595 0.513557 0.190784 -0.181123 0.152881 -0.136440 -0.254808 0.162373 -0.099602 -0.299342 -0.552297 0.270133 -0.483776 -0.559158 0.243706 0.256556 -0.015682 -0.434411 -0.129600 0.204879 0.247094 -0.300395 -0.492063 -0.076140 0.151602 0.208643 -0.211802 -0.102278 0.034567 -0.163385 -0.267884 -0.667477 -0.034486 0.058572 -0.273020 0.005848 0.456804 -0.210137 -0.027891 -0.076344 0.093539 -0.223022 0.737343 -0.049067 0.345121 0.026068 0.109875 -0.258979 0.092921 0.237609 0.447529 -0.123909 -0.099394 -0.199879 0.103297 -0.364714 -0.010691 -0.009125 0.171148 0.529976 -0.136886 -0.430671 -0.187439 -0.260972 -0.819703 0.119489 -0.452760 0.023452 0.423348 0.427252 0.454185 0.369437 0.672041 -0.494523 0.170301 -0.120572 -0.055473 0.423470 0.337270 0.293656 -0.260039 -0.388714 0.335359 0.042831 0.148214 0.210766 -0.143606 0.019275 -0.390331 -0.162846 0.368028 0.267396 -0.035300 0.397601 0.305726 0.408220 -0.341951 0.183689 0.291305 -0.079401 0.101621 0.017125 -0.566321 0.287782 0.057030 -0.018356 0.360020 -0.135420 -0.165831 0.142046 -0.145567 0.213720 -0.377769 0.083119 -0.344316 0.002359 -0.524965 0.146368 -0.178989 -0.200114 -0.150284 -0.103121 0.648976 -0.434647 -0.290698 0.627159 -0.080036 0.382807 -0.536705 0.425709 -0.296842 0.505576 -0.230500 -0.132089 0.014119 -0.143437 -0.238299 0.009686 0.292967 -0.078717 -0.083213 0.600589 0.181808 -0.061690 0.057117 0.461097 -0.034728 0.415132 -0.205947 0.589744 -0.033974 -0.014305 0.103766 -0.231409 -0.023279 -0.265021 0.054093 0.629881 0.393090 0.327161 0.319862 0.205386 0.384874 -0.319579 0.312763 -0.011254 0.208091 -0.278807 -0.044147 0.129989 0.351825 -0.208130 0.172424 -0.552472 -0.775687 -0.571017 -0.369190 -0.161398 0.003810 0.137912 -0.108408 -0.105442 -0.303497 -0.403180 0.380563 -0.271440 0.509283 0.174456 0.205448 0.425486 0.607725 -0.332353 -0.109658 0.076535 0.057940 0.011433 0.049505 -0.497874 0.510874 -0.299755 0.069628 0.654906 -0.216463 0.204996 -0.030421 0.622700 -0.312235 0.703530 0.209055 -0.268293 0.491463 0.427282 0.484301 0.272322 -0.340321 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::pop() = 0.308409 -0.736084 1.910562 1.694404 -0.342024 0.537519 -0.097750 -1.394206 1.252630 0.679007 -0.258790 0.315642 -0.782260 0.535435 -0.284503 1.221054 -1.424334 -0.634835 -0.549863 -0.963952 -0.700468 -0.784629 0.462603 0.111190 0.698332 0.732591 -0.782254 0.213670 -0.379789 -1.680992 0.644330 -0.258090 0.606762 0.231291 0.337148 -2.277412 1.527052 0.987434 -0.463243 -1.248247 0.231716 -0.341158 -0.259953 -0.207910 -0.348124 0.444066 -0.258678 0.635348 0.751648 0.598612 0.464314 0.430409 0.767267 1.940098 -0.512563 0.971354 0.531467 0.015591 -0.137741 0.325872 0.411776 0.583204 0.494581 0.692992 0.213224 -1.053083 -0.291132 -0.326091 -1.022530 1.184530 -0.268465 -0.692093 -1.027595 -0.691319 -0.627398 -0.149462 -1.913073 1.170421 1.691962 -1.095355 0.729157 0.335060 0.198023 -0.066435 0.508969 -0.194149 1.307727 0.545042 -0.342935 0.126763 0.141369 -0.748020 0.585452 -0.394953 -0.866682 -1.699459 0.704101 -1.395412 -1.261381 0.652770 0.713030 -0.279192 -0.706829 -0.496604 0.597720 0.262724 -0.544057 -1.027372 -0.182358 0.441631 0.252690 -0.511321 -0.195098 -0.033708 -0.126221 0.283017 -1.484679 -0.034669 0.169929 -0.471063 -0.143963 0.906919 0.125588 -0.135797 -0.228810 0.301976 -0.352615 1.221792 -0.222098 1.173124 -0.078062 0.901679 -0.508354 0.794073 0.666444 -0.323405 -0.103539 0.036977 -0.387907 0.441969 -0.849177 0.568524 -0.607874 0.475690 1.210375 -0.122437 -1.019793 -0.428552 -0.617913 -1.591885 0.373134 -0.965162 -0.643848 0.478656 0.992932 0.773012 0.802012 0.823720 -1.262457 0.216523 -0.269115 0.213339 0.789461 0.162185 0.539831 -0.537219 -0.936537 0.702202 0.432035 0.260109 0.333821 -0.354747 0.051098 -0.733971 -0.231372 0.909113 0.519538 -0.237750 0.828581 0.752189 1.637061 -0.595210 0.359416 0.711025 -0.312969 0.203459 -0.080479 -1.401761 0.501349 0.186753 0.673378 1.112304 -0.225748 -0.148002 0.311648 -0.316250 0.335895 -0.724618 0.242180 -0.818851 -0.125720 -0.796002 0.414258 -0.368371 -0.266542 -0.304672 -0.238988 1.376458 -1.362042 -0.612975 1.771434 -0.639780 0.438262 -1.028811 1.217138 -0.601620 0.705574 -0.314443 -0.218950 -0.023729 -0.289833 -0.739084 0.169369 0.604833 -0.203256 0.101826 1.412734 0.327191 -0.050618 -0.005852 0.981117 -0.459891 0.832524 -0.657760 1.431959 -0.128862 -0.100319 -0.210926 -0.496951 -0.137492 -0.829467 0.173921 0.991955 0.536373 0.378757 0.438128 0.399575 0.917824 -0.752011 1.193930 0.006456 0.158055 -0.720521 -0.149533 0.440022 0.375414 -0.572917 0.617228 -1.316459 -1.186964 -1.814553 -0.632720 -0.455198 -0.096513 0.594617 -0.442793 -0.331719 -0.654050 -1.128837 1.589527 -0.500769 0.136446 0.691709 0.554243 0.827160 1.349212 -0.303334 0.150903 -0.475874 -0.096799 -0.020446 -0.337100 -0.674311 1.221235 -0.447731 0.202572 1.292031 -0.331678 0.569440 -0.078592 0.819692 -0.714883 1.258011 0.482950 -0.286441 0.805040 1.027944 1.168350 0.173442 -0.783883 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::~queue() = -0.017376 -0.568191 1.060115 0.843598 -0.209515 0.333670 0.199589 -0.684995 0.869578 0.150204 -0.231596 0.028592 -0.740865 0.214217 -0.270916 0.468967 -0.877193 -0.574504 -0.166581 -0.457740 -0.296011 -0.682276 0.408594 0.150212 0.392973 0.468042 -0.346878 -0.010244 -0.520034 -0.510216 0.708195 -0.276100 0.425143 0.425875 0.092242 -1.437012 0.747869 0.496474 -0.255891 -0.785742 0.149750 -0.336044 -0.011792 -0.275277 -0.178377 0.183125 -0.009821 0.546041 0.516851 0.205100 0.175326 -0.083418 0.131808 1.117935 -0.477753 0.545520 0.258731 0.002862 -0.110222 0.181895 0.235558 0.217504 0.398552 0.640421 -0.135312 -0.460265 -0.067675 -0.428085 -0.871859 0.739452 -0.176064 -0.053692 -0.642776 -0.246990 -0.431600 -0.110301 -0.813742 0.718229 1.210452 -0.631678 0.690564 0.177921 0.307828 -0.198211 0.244042 -0.045296 0.676672 0.250407 -0.392952 -0.013755 -0.349187 -0.258833 0.149696 -0.186642 -0.287937 -0.817456 0.438632 -0.749273 -0.795198 0.261294 0.282314 -0.043391 -0.427830 0.004831 0.376648 0.285767 -0.462368 -0.794865 -0.175683 0.187259 0.030846 -0.185349 -0.002543 0.091652 -0.242644 -0.304659 -0.813993 -0.269059 0.024698 -0.561468 -0.012114 0.606661 -0.260270 0.114765 0.002922 0.154342 -0.147274 0.815035 0.018138 0.473319 0.160596 0.212773 -0.343537 0.170299 0.356891 0.551117 -0.061312 0.001508 -0.140797 0.200021 -0.496098 -0.058801 -0.196629 0.118614 0.589836 -0.319719 -0.554591 -0.187973 -0.212119 -1.117508 0.193945 -0.673977 -0.156406 0.396049 0.630598 0.567327 0.471881 0.965385 -0.816362 0.308097 -0.160435 -0.034220 0.419033 0.329383 0.433389 -0.336377 -0.579223 0.302681 0.155976 0.174692 0.185537 -0.342868 -0.085462 -0.651864 -0.258208 0.426727 0.370909 -0.132712 0.434172 0.387584 0.466633 -0.640701 0.263789 0.484371 -0.009487 0.090784 0.060182 -0.972117 0.514438 0.043698 0.169018 0.414265 -0.122334 -0.222295 0.235036 -0.280593 0.242657 -0.587786 0.036118 -0.540178 -0.067122 -0.695247 0.311927 -0.221844 -0.337749 -0.176053 -0.055352 0.811036 -0.573231 -0.422904 0.935466 -0.105904 0.519364 -0.744854 0.610789 -0.414416 0.644302 -0.228376 -0.098432 -0.030309 -0.096650 -0.188197 -0.091434 0.322292 -0.068827 0.243025 0.867260 0.252054 0.032931 0.179061 0.710252 -0.119725 0.353562 -0.311333 0.660543 -0.023487 -0.268458 0.144988 -0.378187 0.064401 -0.346947 0.124907 0.924016 0.673814 0.256512 0.639454 0.242992 0.490893 -0.390001 0.447160 0.025900 0.397916 -0.351835 -0.045737 0.131071 0.359408 -0.430605 0.398076 -0.836640 -1.207269 -0.775045 -0.662099 -0.289522 -0.326155 0.305621 -0.150640 0.030207 -0.554895 -0.518116 0.504405 -0.357300 0.630458 0.319973 0.342293 0.542579 0.876575 -0.457985 -0.090503 0.124633 0.229296 -0.183418 -0.060958 -0.575046 0.554849 -0.521872 0.232893 0.812078 -0.252956 0.140738 -0.177895 0.747443 -0.554527 0.930836 0.432672 -0.283499 0.689134 0.405205 0.789740 0.488543 -0.467655 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__dfs(int (*) [6], int, bool*) = -2.258554 -3.975908 3.755308 3.609318 1.219500 2.885534 0.969224 -1.714185 2.263633 3.765498 -1.435364 2.290049 -2.363158 -0.764671 0.378769 1.073412 -1.069185 -2.634613 0.456989 -0.967376 -0.767900 -2.519943 -1.649846 2.561593 0.699823 0.064126 -1.364610 0.379022 -4.425873 -4.714059 0.016979 -0.444705 1.924150 0.232578 0.919254 -5.358538 2.689733 3.969354 -0.342598 -4.189824 -0.148375 -1.254490 -0.869628 1.347085 0.006080 1.673792 1.332683 -0.367235 -0.011526 1.040679 1.779548 -0.778900 1.954495 4.400698 0.237866 4.077684 3.485859 -0.329950 0.857861 0.942623 1.044847 -0.517084 2.705433 2.411066 -1.302254 -0.759848 0.153869 0.455723 -2.905355 1.329063 0.666279 -2.053852 -1.136391 -1.350178 -1.629735 -1.168983 -0.392080 0.466473 5.152935 -1.145576 5.335743 2.594183 3.074354 -0.387762 3.382854 -0.621066 4.007100 1.379637 -3.085443 0.410851 -2.219696 -1.618300 0.013066 3.305626 -2.326983 1.017059 1.496148 -2.785517 -4.168117 2.652011 -0.492257 -0.258679 -3.325620 -0.136502 2.196886 0.822030 -1.251919 -3.785839 -2.874961 1.852283 -2.316505 -2.201873 -1.139229 -0.618043 -0.491302 1.084329 -2.675715 -0.938557 2.664694 -2.591182 -2.280651 3.178507 -0.568007 2.233358 -0.834946 0.339119 -0.083730 0.700527 1.044098 1.560042 0.961885 -1.484736 -5.412865 0.295733 0.443670 -0.244730 -1.424388 -0.746591 1.302185 1.342259 0.663073 3.033031 -1.362631 3.365531 3.130829 0.186046 -1.606185 -3.207103 -0.082982 -2.819375 1.146865 -2.112770 -1.378433 -0.564457 2.870263 0.139830 0.546528 2.651915 -2.016894 2.683620 -0.467710 0.788764 0.569850 -1.160383 1.188089 -1.929922 -2.709131 1.879500 3.591078 0.490980 1.442982 -1.676904 -0.186276 -1.140377 -2.914981 1.799282 -0.121618 0.268852 3.529922 1.648806 8.373256 -3.319092 0.905362 -0.348021 -0.207442 0.809910 -0.814508 -3.723189 1.229935 0.665108 1.032558 4.484114 -0.164252 -1.955055 0.492942 0.140057 0.366804 -2.693419 3.600893 -2.828830 0.082710 -0.874790 -0.708902 -1.945961 -1.805638 -1.717793 0.620788 4.212863 -1.650472 -3.840938 2.380809 -0.763896 0.695415 -5.041736 2.964196 -2.061767 2.299837 -2.110176 -1.505259 -0.582094 1.741727 -0.021976 0.798937 1.958563 -2.786501 2.530457 2.815792 0.375496 1.214089 1.141989 1.137936 -0.452191 -1.047769 -2.131351 2.519894 0.404058 -0.525164 -1.435541 -1.802698 2.687184 0.453054 -1.003982 -0.450470 3.241227 -1.986381 -0.775069 2.811221 -0.305167 -1.914387 1.599939 0.578934 2.554132 -1.745982 -0.643753 -1.632534 -0.189125 0.386386 1.582754 -4.013850 -1.484876 -1.442755 -3.145855 -1.896905 2.191841 1.426920 1.637303 0.577876 -4.328432 -2.157148 3.350665 -1.121230 1.962868 1.697884 2.823118 2.858903 1.980358 0.995013 -1.490142 -1.919692 -0.668628 -2.519821 -1.254769 -0.397104 1.671907 -1.407791 3.301674 1.061488 0.214482 1.078240 0.445002 1.732696 -2.210060 4.296375 2.466613 -2.031918 0.857827 1.547450 4.281200 -3.655336 -2.329319 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__minCut(int (*) [6], int, int) = -8.320395 -14.705842 14.319136 13.441537 3.372099 9.776558 6.144646 -5.597152 7.011315 11.244129 -6.484551 10.642256 -7.882618 -3.446886 -0.655775 3.695570 -4.779177 -8.895248 1.399471 -1.824424 -1.136002 -9.706305 -7.562593 11.419119 3.141978 3.732535 -4.703376 1.920096 -17.453416 -20.629304 0.987304 -0.577723 6.879388 0.220381 3.134690 -23.862083 10.144015 17.877609 -0.850658 -16.382290 0.789607 -3.241864 -5.992361 4.504175 -1.409228 6.719610 4.521771 0.075221 -2.188166 4.244082 4.370735 -2.241570 9.504051 16.497028 2.001829 16.134631 16.028093 -0.177054 4.554747 1.712385 3.762594 -1.661425 8.233940 9.733931 -3.848453 -2.258669 -0.007906 2.092973 -11.606920 3.635822 1.804236 -8.901114 -6.059609 -4.768596 -7.942850 -1.981945 -3.718412 1.451965 20.044457 -3.963107 22.479367 8.998959 11.455639 -2.860293 10.067143 -2.034977 11.144290 5.863269 -10.930465 0.878557 -9.632784 -6.830341 0.785394 13.268378 -10.954295 3.968971 6.641827 -11.997947 -14.720578 8.194967 -1.620238 -3.754558 -9.218600 0.470603 5.794221 3.048256 -3.023933 -13.529757 -11.629787 8.366546 -7.593913 -7.874433 -5.150472 1.711265 -1.393541 3.994192 -10.289035 -1.324116 11.465270 -8.467368 -6.239435 9.480934 -1.263576 9.021595 -3.512591 0.680532 0.137410 2.313837 4.299305 4.412889 4.366419 -5.846008 -20.123258 0.407369 2.022726 2.914122 -7.597895 -3.132558 6.445148 5.073585 5.185652 10.635138 -5.728177 10.885172 9.571806 0.532515 -5.698987 -12.751866 -2.216390 -10.058495 4.500957 -6.802910 -5.436733 -0.555822 9.557900 -1.883450 1.011792 9.715556 -9.183259 10.509209 0.272924 2.365955 0.224988 -5.193940 3.077248 -6.406272 -10.256496 8.437761 11.426678 2.755836 4.306399 -3.823325 -0.371919 -3.457050 -10.785941 8.992868 -1.336811 1.278697 12.963867 6.187472 32.191399 -10.033168 1.879630 -2.179427 -1.742705 2.201830 -2.237329 -13.133374 6.257709 1.786900 5.809623 18.710016 0.126425 -5.420936 3.100794 0.683851 0.162806 -9.961586 16.398903 -9.901811 -0.954181 -2.966347 -4.465149 -4.948626 -6.041215 -8.364623 1.268543 14.806965 -8.145996 -14.773143 6.494741 -2.346918 2.635001 -18.536769 14.329434 -6.793324 9.449948 -6.133896 -5.283124 -0.244150 3.534693 -0.634018 1.083277 6.456775 -10.689695 8.639483 10.852864 0.902710 1.924546 3.817749 2.691501 -2.775170 -2.674040 -8.291229 7.389005 1.873163 -3.270702 -5.089544 -5.631893 10.113695 0.622505 -4.224078 -0.240596 11.957101 -5.596596 -2.954704 9.470402 -0.412573 -6.941659 5.709377 2.549318 8.702392 -5.991508 -3.375629 -6.109672 -0.002204 2.550771 6.188919 -13.877719 -6.118512 -8.149078 -14.408534 -6.571501 4.486336 8.165700 5.214121 1.182222 -17.954521 -9.740073 14.685706 -3.272632 8.565778 7.571306 9.886880 9.800561 5.018938 3.927746 -3.509181 -6.396098 0.740929 -8.117235 -4.004487 -1.090937 5.136973 -5.384938 10.743928 4.943341 0.422092 5.249897 0.426940 6.673870 -7.734148 18.083631 8.162215 -9.475252 2.028095 4.072870 14.680188 -14.994902 -8.298808 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = -1.290942 -3.365858 3.786229 3.467037 0.475842 1.990658 1.302412 -1.433357 1.864745 2.164651 -1.589088 2.422253 -1.987534 -0.316340 -0.437239 1.317254 -1.789048 -2.236165 0.213759 -0.463691 -0.419156 -2.218541 -1.055387 2.329229 1.082812 1.415413 -1.324267 0.239732 -3.749375 -4.413692 0.662784 -0.408877 1.706563 0.560371 0.697066 -5.551355 2.525285 3.808749 -0.382395 -3.892272 0.361659 -0.809383 -1.244165 0.326039 -0.351127 1.521262 1.032436 0.643754 -0.133999 1.181433 0.701795 -0.402342 2.183249 3.982578 0.174687 3.483609 3.595617 0.011491 0.940776 0.157702 1.072321 -0.206069 1.797557 2.343121 -0.696095 -0.935633 -0.385160 -0.076385 -2.723881 1.196649 0.309338 -1.422192 -1.876686 -1.063997 -1.839919 -0.310929 -1.689323 0.997195 4.887464 -1.414134 4.838128 1.949343 2.584531 -0.693722 1.948099 -0.268564 2.345895 1.524557 -2.321509 0.163580 -2.200644 -1.645125 0.301590 2.178609 -2.393766 -0.124485 1.651612 -2.978248 -3.400422 1.823080 -0.024496 -0.784144 -1.641583 0.131369 1.343889 0.969830 -0.909392 -3.032528 -2.183004 1.474900 -1.231047 -1.736321 -0.979180 0.592558 -0.454639 0.680157 -2.799339 -0.335572 2.268420 -2.077079 -0.842614 2.125484 -0.286860 1.865743 -0.844368 0.139200 -0.111679 1.203046 1.088891 1.247823 1.048073 -0.892261 -3.951480 0.544835 0.900666 1.015992 -1.786135 -0.533042 1.087708 1.162682 0.791081 1.836327 -1.180822 2.181645 2.206330 -0.253041 -1.790010 -2.879975 -0.779424 -2.671882 1.071146 -1.851026 -1.097561 0.320354 2.336314 -0.060428 0.673464 2.613060 -2.448295 2.216592 -0.014556 0.610076 0.338645 -0.649379 0.865493 -1.460434 -2.390446 2.081015 2.358978 0.597744 1.048388 -0.965490 0.114875 -1.204325 -2.164833 2.271850 0.098774 0.003863 2.893022 1.372101 6.182029 -2.044106 0.353030 -0.027824 -0.321025 0.369270 -0.284365 -3.300571 1.803871 0.219301 1.465565 3.860427 0.014897 -1.242961 0.979103 -0.058748 0.110534 -2.195158 3.230836 -2.244839 -0.365312 -1.090273 -0.305146 -1.041345 -1.317636 -1.695594 0.242960 3.597914 -2.114298 -2.987114 1.671704 -0.544660 0.858283 -4.079942 3.291306 -1.667017 2.358879 -1.065658 -1.177259 0.083398 0.253034 -0.420294 -0.075892 1.625241 -1.996676 1.615903 2.562248 0.418836 0.167079 0.945201 0.986286 -0.626685 -0.046273 -1.654919 1.779617 0.292880 -0.825420 -0.890764 -1.262101 1.935551 -0.235087 -0.753595 0.784117 2.544737 -0.603846 0.084012 1.840065 0.494183 -1.858311 1.352352 0.443664 2.151553 -1.542376 -0.729497 -1.185336 0.301441 0.140777 1.600242 -3.284815 -2.173384 -2.403765 -3.198450 -1.604547 0.494488 1.899406 0.669777 0.144298 -3.829354 -2.372155 3.147778 -0.881989 1.869943 1.926976 2.008757 2.359539 1.451606 0.356755 -0.834880 -1.170006 0.448741 -1.491998 -0.653091 -0.762699 1.383605 -1.454405 2.011808 1.821563 -0.262405 1.103901 -0.122677 2.068680 -1.784100 4.404736 1.927865 -2.338474 0.794849 1.174023 3.390290 -2.548341 -2.057458 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::~deque() = 1.020281 -2.137489 5.285234 4.090734 -1.207896 1.545323 0.380925 -3.909147 3.590568 0.863375 -1.197912 0.433506 -2.592197 1.045117 -2.122983 2.401165 -4.192626 -2.030276 -1.391023 -2.603472 -1.482122 -2.505187 1.663199 0.667896 2.065614 2.151298 -1.699590 0.369263 -1.835553 -3.659666 2.512236 -0.737379 1.424186 0.736155 0.709319 -5.560744 3.997469 2.823553 -1.239423 -3.483617 0.853937 -0.973313 -1.288347 -0.619151 -0.965130 0.775848 -0.723092 2.890795 2.004017 1.287115 0.818545 0.741500 1.427812 5.345258 -1.559913 2.732965 1.464358 0.350803 -0.158403 1.348652 1.033941 1.525864 1.109929 2.291352 0.487732 -2.451719 -0.272936 -1.174217 -2.896281 3.459572 -0.852310 -1.527025 -2.510038 -1.416025 -2.313896 0.023462 -4.103920 3.358839 4.933391 -2.806542 2.413519 0.693885 0.665540 -0.877099 0.934338 -0.562702 3.288783 1.438390 -0.912627 -0.346433 -1.022872 -1.409409 1.284303 -1.548162 -2.268109 -4.992549 2.435726 -4.778059 -3.590635 1.197528 1.921855 -1.248691 -0.965346 -0.461659 1.483469 0.542597 -1.632113 -2.930006 -0.393574 1.378555 0.238036 -0.975643 -0.085399 0.622718 -0.298771 0.183393 -3.740932 -0.297886 0.301629 -1.579018 0.001361 2.486769 0.083079 -0.060450 -0.298800 0.870681 -0.641629 2.939833 -0.552238 2.651443 0.112113 2.479806 -0.454618 1.967207 1.764544 -0.094082 -0.373021 0.420566 -0.547824 1.376337 -2.185393 0.830370 -2.186622 0.591952 2.034601 -1.114389 -2.590903 -0.909138 -1.599434 -4.481234 0.597316 -2.646131 -2.536408 1.201230 2.762794 2.571106 1.963651 2.758721 -3.475183 0.633376 -0.310136 0.328718 1.706169 0.181909 1.534444 -1.469984 -2.800499 1.512119 0.572966 0.962020 0.479750 -0.924469 -0.355785 -2.593736 -0.860222 2.142422 1.609565 -0.686530 2.165538 2.329930 2.452556 -2.275108 1.001526 2.127945 -0.906374 0.355660 0.051524 -4.321988 1.642500 0.461988 2.183039 2.900308 -0.465082 -0.148969 1.072584 -1.074822 0.887156 -2.343963 0.261397 -2.450027 -0.558653 -2.515658 1.498816 -0.775061 -0.940252 -1.135425 -1.144250 3.585735 -3.953307 -1.895669 5.003850 -1.042250 1.683237 -2.925206 2.425302 -1.629455 2.388873 -0.057230 -0.109255 0.005330 -1.069954 -1.971479 0.099324 1.325054 -0.604283 1.218002 3.832111 0.902939 0.032392 0.167864 3.005831 -1.720307 2.037491 -2.122754 3.379237 -0.198630 -1.583091 -0.194032 -1.484002 -0.491620 -2.366825 0.898473 3.442915 1.853959 1.420517 2.026329 0.956747 2.561011 -1.827952 2.966581 0.047175 0.496867 -1.772826 -0.507186 1.264501 1.055275 -1.762748 1.947704 -3.942402 -4.556493 -5.150050 -2.718109 -0.868456 -2.371142 1.857251 -1.213254 -0.625381 -2.283491 -3.217163 3.482765 -1.339365 1.210113 2.233966 1.671568 2.155389 3.783494 -1.417872 0.973364 -0.334407 1.004282 -0.388093 -1.143680 -2.124632 2.951591 -1.498787 0.791219 3.976530 -0.864553 1.553946 -0.826596 2.198632 -2.487049 3.498985 1.610023 -1.259222 2.325173 2.162772 2.981919 1.692987 -2.178846 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.200099 -0.257827 0.369605 0.339224 0.108585 0.114140 0.250148 -0.149716 0.453760 0.315836 -0.014621 -0.044148 -0.393642 0.081980 0.131976 0.277090 -0.187645 -0.318739 0.043393 -0.176082 -0.111823 -0.322916 0.162558 -0.109022 0.143614 -0.092196 -0.114081 -0.174579 -0.333724 -0.119724 0.288126 -0.185562 0.203571 0.127894 -0.039703 -0.646967 0.237307 0.121363 -0.137087 -0.310868 0.060101 -0.249357 0.245205 -0.078414 0.183133 0.123049 0.125745 0.098322 0.291483 0.128160 0.264644 -0.147948 -0.032307 0.508355 -0.380490 0.199866 0.038194 -0.055346 -0.111109 0.117819 0.074065 -0.019968 0.268109 0.283526 -0.197044 -0.175453 -0.083406 -0.225752 -0.456146 0.228195 -0.023081 0.060678 -0.339195 -0.056731 -0.013294 -0.188983 -0.714534 0.197942 0.524601 -0.277208 0.374588 0.156710 0.270798 -0.006302 0.180996 0.041175 0.268912 0.016929 -0.292962 0.016984 -0.212616 -0.088226 -0.027658 0.064249 0.037870 -0.113680 0.094350 0.187973 -0.331264 0.165783 0.018010 0.175595 -0.404130 0.092798 0.160833 0.236636 -0.245291 -0.446020 -0.216028 0.005627 -0.015639 -0.076358 0.024149 -0.277788 -0.229425 -0.324755 -0.324988 -0.197472 -0.021000 -0.323547 -0.249646 0.315648 -0.292711 0.077529 0.052248 0.069385 -0.106537 0.381204 0.088460 0.225914 0.207610 -0.176380 -0.783989 0.005238 0.185767 0.522635 0.055403 0.105191 -0.158778 -0.013312 -0.255870 -0.004940 0.164646 0.207314 0.421380 -0.199243 -0.189029 -0.077559 0.189438 -0.365715 0.237545 -0.282232 0.280459 -0.018998 0.272489 0.243159 0.257751 0.578136 -0.375444 0.255824 -0.182882 -0.036783 0.247469 0.280261 0.260906 -0.153739 -0.164288 0.018839 0.262415 -0.060651 0.142861 -0.183142 0.013331 -0.328138 -0.057265 0.026609 0.076150 -0.161526 0.206631 0.096135 0.402277 -0.442470 0.137269 0.219859 0.082512 0.054644 0.022044 -0.369023 0.277105 0.034536 -0.155954 0.043137 -0.036424 -0.254536 0.054124 -0.160042 0.121241 -0.197321 0.005006 -0.207709 -0.114026 -0.254035 0.129442 -0.189177 -0.251453 0.053411 0.194534 0.332357 0.187861 -0.150266 0.213694 -0.120493 0.057801 -0.361115 0.620726 -0.231004 0.082099 -0.366598 -0.076878 -0.125827 0.396520 0.038103 -0.054055 0.157595 -0.057691 0.162399 0.462864 0.161191 0.081919 0.128645 0.323727 0.090893 0.035909 -0.013101 0.294041 -0.065948 0.030414 0.127960 -0.164556 0.201673 0.026374 -0.046538 0.410863 0.391832 -0.085917 0.250968 0.154809 0.181092 -0.146027 0.157040 0.026187 0.379229 -0.112644 0.046396 -0.035638 0.032092 -0.166722 0.127152 -0.320854 -0.369631 0.185892 -0.198461 -0.088451 0.218688 -0.021802 0.048503 0.131873 -0.361845 -0.079750 -0.011820 -0.183901 0.153536 -0.028817 0.096700 0.247923 0.368351 -0.182135 -0.246211 0.010664 -0.071446 -0.127717 -0.053408 -0.139368 0.203605 -0.362945 0.125268 0.154600 -0.100755 -0.093661 0.023121 0.429459 -0.199889 0.460426 0.190324 0.026144 0.396897 0.298568 0.640249 0.023390 -0.147667 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::begin() = 0.295726 -0.622543 1.810173 1.521337 -0.253843 0.482606 -0.038832 -1.327462 1.338487 0.663037 -0.192555 0.283166 -0.689816 0.567558 -0.462814 1.185311 -1.320204 -0.645736 -0.483245 -1.059625 -0.812173 -0.707763 0.309178 -0.072619 0.650915 0.376491 -0.735644 0.148127 -0.501900 -1.393332 0.572056 -0.308854 0.380276 -0.216328 0.369784 -2.143096 1.419259 0.806587 -0.505446 -1.115076 0.190093 -0.533395 -0.050498 -0.257847 -0.063629 0.294685 -0.189159 0.741880 0.844860 0.532176 0.533594 0.522610 0.522284 2.259556 -0.727697 0.919475 0.456667 0.052833 -0.184246 0.503327 0.353889 0.452015 0.408105 0.546479 0.132559 -1.046556 -0.328266 -0.339412 -0.731677 1.086446 -0.162444 -0.697033 -1.038739 -0.618393 -0.746892 -0.326799 -2.605801 1.099368 1.583218 -1.213506 0.631898 0.353540 0.421785 0.185815 0.678390 -0.146214 1.449543 0.438827 -0.441398 0.155699 0.007607 -0.449970 0.513632 -0.573642 -0.733318 -1.965155 0.618383 -1.338494 -1.273392 0.693631 0.669089 -0.138148 -0.576398 -0.442568 0.617010 0.157183 -0.671742 -1.060543 -0.190131 0.411297 0.221877 -0.429632 0.114396 -0.459184 0.016270 0.113817 -1.436561 0.019736 0.182093 -0.362110 -0.369816 1.033823 0.109219 -0.211799 -0.184403 0.293279 -0.378559 1.190652 -0.263474 1.117813 -0.318299 0.874545 -1.108619 0.969650 0.648401 -0.354345 -0.066544 0.332561 -0.425913 0.408322 -0.947582 0.550117 -0.624878 0.606370 0.906197 -0.228291 -0.969708 -0.414349 -0.397391 -1.310127 0.451770 -0.816601 -0.801420 0.069214 0.956483 1.047108 0.829962 0.589350 -1.058010 0.229473 -0.339457 0.295403 0.909466 0.017571 0.629579 -0.559296 -0.786837 0.543738 0.462117 0.159014 0.322090 -0.369508 0.120559 -0.791767 0.018782 0.607320 0.584223 -0.334194 0.945403 0.750762 1.448922 -0.934713 0.375464 0.696160 -0.348465 0.219006 -0.137192 -1.224670 0.492663 0.317539 0.580363 0.962653 -0.186728 -0.167678 0.218498 -0.272328 0.449091 -0.587933 -0.036372 -0.722080 -0.456412 -0.629339 0.655695 -0.497980 -0.213758 -0.318050 -0.438294 1.278548 -1.391847 -0.461737 1.722514 -0.673954 0.376925 -0.872416 1.380149 -0.628302 0.580932 -0.351517 -0.075681 -0.115043 0.180262 -0.778022 0.374079 0.602113 -0.328044 0.166371 1.353098 0.375544 0.241769 0.004040 1.040606 -0.543326 0.711504 -0.563260 1.425582 -0.229422 -0.180215 -0.134744 -0.460515 -0.117468 -0.644474 0.358307 0.974938 0.453984 0.367329 0.371634 0.521240 0.869718 -0.716023 1.077968 -0.160291 0.084295 -0.755679 -0.132123 0.410727 0.130324 -0.491731 0.421591 -1.315140 -0.993739 -1.726262 -0.347031 -0.190611 -0.080490 0.260857 -0.396476 -0.288668 -0.791271 -1.009740 1.459903 -0.521212 -0.338866 0.623219 0.485171 0.805887 1.351733 -0.274525 0.091673 -0.437459 -0.253412 0.033200 -0.369041 -0.686830 1.233396 -0.611063 0.232948 1.175542 -0.323287 0.465524 0.249184 0.684893 -0.651113 1.136741 0.445405 -0.240708 0.722960 1.386154 1.425592 0.151028 -0.734066 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::end() = 0.295726 -0.622543 1.810173 1.521337 -0.253843 0.482606 -0.038832 -1.327462 1.338487 0.663037 -0.192555 0.283166 -0.689816 0.567558 -0.462814 1.185311 -1.320204 -0.645736 -0.483245 -1.059625 -0.812173 -0.707763 0.309178 -0.072619 0.650915 0.376491 -0.735644 0.148127 -0.501900 -1.393332 0.572056 -0.308854 0.380276 -0.216328 0.369784 -2.143096 1.419259 0.806587 -0.505446 -1.115076 0.190093 -0.533395 -0.050498 -0.257847 -0.063629 0.294685 -0.189159 0.741880 0.844860 0.532176 0.533594 0.522610 0.522284 2.259556 -0.727697 0.919475 0.456667 0.052833 -0.184246 0.503327 0.353889 0.452015 0.408105 0.546479 0.132559 -1.046556 -0.328266 -0.339412 -0.731677 1.086446 -0.162444 -0.697033 -1.038739 -0.618393 -0.746892 -0.326799 -2.605801 1.099368 1.583218 -1.213506 0.631898 0.353540 0.421785 0.185815 0.678390 -0.146214 1.449543 0.438827 -0.441398 0.155699 0.007607 -0.449970 0.513632 -0.573642 -0.733318 -1.965155 0.618383 -1.338494 -1.273392 0.693631 0.669089 -0.138148 -0.576398 -0.442568 0.617010 0.157183 -0.671742 -1.060543 -0.190131 0.411297 0.221877 -0.429632 0.114396 -0.459184 0.016270 0.113817 -1.436561 0.019736 0.182093 -0.362110 -0.369816 1.033823 0.109219 -0.211799 -0.184403 0.293279 -0.378559 1.190652 -0.263474 1.117813 -0.318299 0.874545 -1.108619 0.969650 0.648401 -0.354345 -0.066544 0.332561 -0.425913 0.408322 -0.947582 0.550117 -0.624878 0.606370 0.906197 -0.228291 -0.969708 -0.414349 -0.397391 -1.310127 0.451770 -0.816601 -0.801420 0.069214 0.956483 1.047108 0.829962 0.589350 -1.058010 0.229473 -0.339457 0.295403 0.909466 0.017571 0.629579 -0.559296 -0.786837 0.543738 0.462117 0.159014 0.322090 -0.369508 0.120559 -0.791767 0.018782 0.607320 0.584223 -0.334194 0.945403 0.750762 1.448922 -0.934713 0.375464 0.696160 -0.348465 0.219006 -0.137192 -1.224670 0.492663 0.317539 0.580363 0.962653 -0.186728 -0.167678 0.218498 -0.272328 0.449091 -0.587933 -0.036372 -0.722080 -0.456412 -0.629339 0.655695 -0.497980 -0.213758 -0.318050 -0.438294 1.278548 -1.391847 -0.461737 1.722514 -0.673954 0.376925 -0.872416 1.380149 -0.628302 0.580932 -0.351517 -0.075681 -0.115043 0.180262 -0.778022 0.374079 0.602113 -0.328044 0.166371 1.353098 0.375544 0.241769 0.004040 1.040606 -0.543326 0.711504 -0.563260 1.425582 -0.229422 -0.180215 -0.134744 -0.460515 -0.117468 -0.644474 0.358307 0.974938 0.453984 0.367329 0.371634 0.521240 0.869718 -0.716023 1.077968 -0.160291 0.084295 -0.755679 -0.132123 0.410727 0.130324 -0.491731 0.421591 -1.315140 -0.993739 -1.726262 -0.347031 -0.190611 -0.080490 0.260857 -0.396476 -0.288668 -0.791271 -1.009740 1.459903 -0.521212 -0.338866 0.623219 0.485171 0.805887 1.351733 -0.274525 0.091673 -0.437459 -0.253412 0.033200 -0.369041 -0.686830 1.233396 -0.611063 0.232948 1.175542 -0.323287 0.465524 0.249184 0.684893 -0.651113 1.136741 0.445405 -0.240708 0.722960 1.386154 1.425592 0.151028 -0.734066 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::~_Deque_base() = 1.309507 -2.149234 6.116025 5.487561 -1.470730 1.728622 -1.281929 -4.492688 3.186482 1.951360 -0.882297 1.913236 -1.528692 1.735315 -0.724422 3.998520 -4.779347 -1.463268 -1.836240 -2.934002 -2.475600 -1.773501 0.678700 0.879680 2.084320 2.933233 -2.780922 1.399341 -0.429566 -6.387282 0.978687 -0.567154 1.766551 0.320757 1.693185 -7.448769 5.067144 3.309550 -1.285456 -3.984511 0.591429 -0.774440 -1.236054 -0.601348 -1.795195 1.509489 -0.866905 1.603009 1.861867 1.983443 0.849300 2.085346 3.155032 5.907698 -0.497798 3.105988 2.221741 -0.175802 -0.354986 0.535111 1.406143 1.764072 1.383354 1.535297 1.020650 -3.526115 -1.061304 -0.471073 -2.376618 3.340713 -0.585181 -2.928879 -2.911735 -2.583289 -2.331657 -0.423695 -5.128783 3.721730 4.818992 -3.410039 1.857158 0.938429 0.387466 0.251159 2.044159 -0.723706 4.505727 2.048391 -0.794391 0.784396 1.420481 -2.926370 2.328713 -1.180202 -3.231880 -5.654693 1.987632 -5.550156 -3.841165 2.418523 2.410588 -1.249370 -2.163403 -2.590333 2.136487 0.561076 -1.413911 -2.652189 -0.303454 1.512376 0.734806 -1.956225 -0.908108 0.269139 0.116150 2.125954 -4.725617 0.567545 1.194125 -0.742994 -0.093271 2.687539 1.310204 -0.576168 -1.262334 0.855206 -1.118087 3.600224 -0.974993 3.656215 -1.031187 3.392518 -0.391799 3.007912 1.777668 -2.937471 -0.777914 -0.442481 -0.982763 1.682560 -2.306805 2.372357 -2.537176 2.010036 3.847249 0.525206 -3.408385 -1.803008 -2.885384 -4.793890 0.952075 -2.683295 -2.932635 1.953368 2.996196 1.817681 2.246865 1.058510 -3.410004 0.313397 -0.694834 1.111642 2.537428 -0.197908 1.374667 -1.749808 -2.767024 2.819869 1.281823 1.130507 1.085943 -0.918943 0.515769 -1.542208 -0.937759 3.445040 1.799548 -0.091812 2.742198 2.381508 6.223211 -0.866054 0.677925 1.692066 -1.344955 0.625903 -0.524894 -3.832644 0.971365 0.716953 2.790011 4.342675 -0.726211 -0.260912 0.828663 -0.282813 0.920105 -1.976272 1.174568 -2.425155 0.004262 -1.774411 0.803541 -1.182873 -0.283731 -1.594373 -1.473791 4.458119 -5.584332 -2.156565 5.720604 -2.600590 1.714952 -3.251856 3.132153 -1.800745 2.422707 -0.619322 -0.813534 0.222797 -2.064923 -2.835794 1.244617 2.054255 -0.716122 -0.421275 3.776180 0.820657 -0.206343 -0.391733 2.470593 -1.717841 2.877737 -2.125678 4.657601 -0.481033 0.199843 -1.324144 -1.296933 -0.793594 -2.648210 0.610618 1.901390 0.713437 1.404394 0.539567 1.465477 2.601595 -2.649582 3.903486 -0.225529 -0.195884 -2.487811 -0.837706 1.354911 1.420749 -1.147783 1.685670 -4.059518 -2.796726 -7.302434 -1.601916 -1.667620 0.239569 2.060451 -1.567751 -1.551222 -1.519444 -3.704538 6.392061 -1.245153 0.020952 2.617766 1.788725 2.627316 3.731168 -0.216197 0.563497 -2.226918 -0.774886 0.240683 -0.864212 -2.165601 3.933700 -0.853226 0.645293 4.119267 -0.949023 2.257198 -0.013822 1.915679 -1.913628 3.453071 1.272276 -1.366254 1.568015 3.381576 2.626979 -0.356549 -2.623904 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.258482 -1.033440 2.606699 2.396413 -0.214751 0.766752 -0.052412 -1.875649 1.666954 1.418339 0.220529 0.700035 -0.930495 0.851096 0.174740 1.886851 -1.731970 -0.898589 -0.836474 -1.590103 -1.321000 -0.932405 0.450929 0.009371 0.832929 0.173654 -1.466862 0.015998 -0.583474 -2.553095 0.824407 -0.370783 1.113344 -0.555198 0.299726 -4.985046 2.111307 1.272542 -0.734423 -1.674442 0.354748 -0.532428 0.016993 -0.103145 -0.915625 0.404850 -0.380428 -0.157667 1.140033 0.800695 1.047470 1.045524 0.967005 3.675080 -0.930727 1.338542 0.693529 -0.292263 -0.625508 0.434252 0.582007 0.747060 1.077256 0.789444 0.242582 -1.617846 -0.306051 -0.388660 -1.761208 1.498999 -0.066230 -1.236504 -1.127014 -0.897784 -0.900789 -0.730035 -1.498210 1.359450 2.296989 -1.534795 1.054628 0.304766 0.259678 0.369465 1.080396 -0.164189 2.123929 0.646488 -0.529932 0.258987 0.601551 -0.775509 0.763628 0.426135 -1.043860 -2.269676 0.894463 -1.031271 -1.742871 1.291944 0.980838 -0.060135 -2.349265 -1.526328 1.026411 0.555511 -0.990146 -1.636085 -1.138560 0.742727 0.288830 -0.912509 -0.284552 -0.835117 -0.268359 0.138675 -2.020442 -0.006466 0.384042 -0.549561 -1.123415 1.471437 -0.264592 -0.273439 -0.370348 0.728241 -0.865870 1.533783 -0.517236 1.754304 -0.157270 0.847893 -1.680809 0.114393 0.752090 0.125891 0.056219 -0.544453 -1.050239 0.592717 -1.257693 1.204712 -0.252373 1.243928 2.492309 0.265404 -1.418194 -0.626789 -0.176295 -2.400788 0.504189 -1.421257 -0.531221 0.913954 1.401073 0.785746 1.155177 1.174340 -1.463697 1.052596 -0.564781 0.018530 1.444042 -0.140506 0.815752 -0.807278 -1.351590 0.798688 0.852824 0.614960 0.501579 -0.554962 0.105492 -0.804754 -0.800138 0.772156 0.740311 -0.256783 0.943750 1.034760 4.175432 -1.531949 0.538294 0.876422 -0.546529 0.436946 -0.399541 -1.722525 0.166339 0.517368 -0.071198 1.926921 -0.391115 -0.995578 0.324603 -0.274679 0.527144 -0.856780 0.634894 -1.080431 0.016006 -0.949768 -0.402913 -0.862894 -0.260882 -0.670809 -0.454942 2.108877 -2.070665 -1.459268 2.561327 -1.070490 0.456662 -2.284103 2.539485 -0.828121 0.841736 -1.321896 -0.484718 -0.306160 0.550001 -1.191433 0.969267 0.923292 -0.712968 0.024483 2.678678 0.479790 0.342142 -0.364309 1.405053 -0.219127 1.094280 -0.906234 2.533887 -0.399510 -0.009095 -0.515941 -0.684508 0.085419 -0.956122 0.339798 0.617344 0.832699 0.138225 0.177005 1.223898 1.231221 -1.052678 1.766349 0.025212 0.435435 -0.864030 -0.038201 0.548170 0.750487 -0.636250 0.806800 -1.778411 -1.150271 -2.246763 -1.051908 -0.463197 1.319390 0.427797 -0.548063 -0.487119 -1.257151 -1.270354 2.242737 -0.756088 0.522872 1.005974 0.866583 1.311281 1.985188 -0.372088 -0.134501 -0.953155 -0.754703 -0.017562 -0.618470 -0.873475 1.740929 -0.746334 0.513298 1.402392 -0.218559 0.850567 0.369348 1.038575 -0.843312 2.061792 0.618914 -0.112907 1.220524 1.599675 2.023449 -0.390039 -1.007958 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.784783 -1.266670 2.341424 1.991613 0.623057 1.050090 0.666355 -1.666348 2.270726 1.520779 -0.314630 0.317123 -1.519214 0.253192 -0.036932 1.321946 -1.196350 -1.581430 -0.140037 -1.130604 -0.587029 -1.794649 0.567417 0.125945 0.618299 0.041843 -1.131724 0.102168 -1.720993 -2.536583 1.273806 -0.531248 1.030159 -0.006970 -0.052067 -3.875248 2.209827 1.618845 -0.504629 -1.849354 0.251669 -0.893027 -0.132545 0.151846 0.438926 0.775491 0.119850 0.430976 1.009644 0.623222 1.319958 0.020289 0.203200 2.472579 -1.385862 1.544819 0.555020 -0.043179 -0.389363 0.782346 0.405807 0.435175 1.423591 1.765285 -0.811655 -0.902909 0.239102 -0.254738 -2.426932 1.463322 -0.055837 -0.705503 -1.130285 -0.283799 -0.637829 -0.378996 -0.688521 0.801771 2.803214 -0.764498 2.043717 0.604952 1.237509 -0.358279 1.065201 -0.371795 2.170449 0.495350 -1.476266 -0.589683 -1.357452 -0.819576 0.130639 0.869959 -0.588076 -0.274768 0.633792 -0.794327 -1.846675 0.633930 0.247357 0.096377 -2.594728 -0.068528 1.436496 0.635951 -0.537444 -2.175706 -1.223522 0.747820 -0.799567 -0.810794 -0.261207 -0.971389 -0.791842 -0.423758 -1.790982 -0.855760 0.376600 -1.270960 -1.443780 1.465089 -1.210447 0.228046 -0.159464 0.509875 -0.385607 0.802875 -0.157509 1.209697 1.098076 -0.373503 -2.550161 0.072221 0.512868 1.317119 -0.224919 -0.066944 -0.476832 0.363825 -1.142333 0.631932 -0.566657 0.931570 2.348724 -0.447189 -1.023157 -0.525775 0.559577 -2.163949 0.908237 -1.416819 -0.025196 -0.196621 1.568597 0.582198 1.090205 2.356217 -2.096893 1.540061 -0.386174 0.192322 1.079605 0.142421 0.902464 -0.873747 -1.525490 0.735433 1.205919 -0.015360 0.450406 -0.771601 -0.187550 -1.340344 -1.300403 0.832829 0.136539 0.054209 1.117221 0.656326 3.480896 -2.346908 0.799431 0.908631 0.027488 0.440080 -0.187908 -2.024923 0.902237 0.325161 0.575670 1.967719 -0.153623 -1.357602 0.083488 -0.036985 0.524178 -1.346690 0.839733 -1.398894 -0.094630 -0.910683 -0.310357 -0.742386 -0.952129 -0.421390 0.406632 1.843145 0.019560 -2.355476 2.134074 -1.229851 0.679230 -2.852710 1.592775 -1.157081 0.591415 -1.309912 -0.000983 -0.457386 0.785162 -0.494417 0.343582 0.831777 -0.719137 1.406416 2.530262 0.506386 0.503428 0.194717 1.082248 -0.003334 0.218767 -0.817848 1.856658 -0.096032 -0.332949 -0.148323 -0.953201 0.973717 -0.422516 -0.278011 0.948298 2.029446 -0.475367 0.769142 1.201655 0.861386 -0.950231 1.476470 0.302562 0.934471 -0.475403 -0.141990 0.072685 0.077619 -0.628295 1.126136 -1.838100 -1.831723 -0.384832 -2.493916 -0.348462 0.505230 0.598394 0.152736 0.331879 -2.032521 -0.818388 1.294006 -0.563122 1.883405 0.621162 1.032818 1.039006 1.727863 -0.853377 -0.483175 -0.568288 -0.336282 -1.017194 -0.959895 -0.630127 1.364317 -0.936694 1.088072 1.013850 -0.328893 0.179207 -0.516619 1.351790 -0.988092 2.355871 1.067446 -0.104430 1.315445 0.232968 2.940618 -0.324884 -1.019902 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.300323 -2.019034 3.212042 2.896484 0.556537 1.147165 1.548102 -2.078180 2.532947 1.708586 -0.178881 0.906332 -2.613682 1.071492 -1.604562 2.020980 -1.695222 -2.261344 -0.610135 -1.442468 -1.003460 -2.021192 1.465628 0.282002 1.611841 -0.374673 -1.684714 -1.181928 -3.216682 -2.194114 1.553037 -0.653859 1.467272 -0.912761 -0.559407 -4.556549 2.212905 2.278592 -0.918532 -2.611858 1.140814 -1.597075 -0.100939 -0.413973 -0.001439 0.256722 -0.068982 0.954373 1.708332 0.983645 1.581431 0.928902 0.588418 4.627365 -2.138949 2.209403 1.028108 0.560267 -0.576574 0.861386 0.681475 0.766340 1.559901 1.654927 -0.499058 -1.577996 -0.643362 -0.762265 -2.685426 2.014700 -0.381900 -0.339130 -2.060033 -0.102054 -1.472333 -0.484860 -1.813367 1.583871 3.710829 -1.993445 2.343128 0.445779 0.861689 -0.567769 1.007954 -0.179239 1.738708 0.709021 -1.047883 -1.034742 -1.777630 0.265443 -0.006799 0.359152 -1.171440 -2.893462 1.672939 -1.311344 -3.036513 0.816696 0.625302 -0.421336 -1.785812 0.079763 1.037438 1.206986 -1.606641 -2.945507 -1.408094 0.928524 0.456142 -1.271346 0.353640 -1.353326 -0.690801 -1.204334 -2.645893 -0.741228 0.269038 -1.980413 -1.580538 2.044986 -1.053158 0.630192 -0.032385 0.836377 -0.553670 1.746167 -0.060899 1.818523 1.050883 0.475218 -2.864451 0.212207 1.295811 2.043113 -0.773525 0.873416 -1.101866 0.646398 -1.194171 0.544439 -0.487058 1.135754 2.004368 -1.220141 -1.710431 -0.712922 0.859716 -2.688709 0.814252 -1.951789 -0.412674 -0.126433 2.093237 0.996211 1.530596 3.536710 -2.109998 1.534638 0.206794 -0.174229 1.765234 -0.118419 1.348222 -1.236914 -2.606428 1.034769 1.381075 0.287581 0.020230 -0.009506 -0.189024 -2.021737 -0.955554 0.236626 0.761143 -0.946350 2.008310 1.147909 2.655733 -2.952954 1.104436 1.320381 -0.598619 0.770059 -0.528849 -3.391111 1.313431 0.454157 0.190384 2.180907 -0.217435 -1.754736 1.340984 -0.775077 0.898949 -1.861157 0.840567 -2.033821 -1.074298 -1.955683 0.169984 -0.238409 -1.109275 -0.615632 -0.121838 2.824154 -1.280432 -1.904345 2.430694 -0.409650 0.399120 -3.601529 3.337974 -1.394972 0.897224 -0.900580 -0.086507 -0.138987 1.736634 -1.172687 0.020874 1.354776 -1.165535 1.762650 3.653557 0.663606 0.463706 0.321980 2.097317 -0.111035 0.860543 -1.250046 2.681538 -0.143362 -1.512300 0.183537 -1.238081 0.674926 -0.991711 0.287025 2.579869 2.129902 0.145859 1.496489 1.567404 2.170360 -1.328827 2.026302 -0.168976 1.477996 -0.989605 0.021581 0.130903 0.214928 -1.019946 1.955893 -2.763353 -3.295089 -1.297883 -2.882691 0.455259 -0.507379 0.825504 -0.656124 -0.089449 -3.142082 -1.936280 0.854224 -1.277570 1.567759 1.602738 1.314839 1.690558 2.542093 -1.380912 0.298674 -0.304282 0.380278 -0.503464 -1.363173 -0.729771 1.447524 -1.631556 1.111793 1.956881 -0.389069 0.746165 -0.389482 1.653768 -1.495832 3.533454 1.339688 -0.475663 2.382427 1.540406 3.638468 0.137354 -1.470839 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.283062 -1.500417 2.856486 2.145194 0.114955 0.953928 1.011255 -1.681708 2.203032 1.332596 -0.637063 0.040497 -1.830501 0.257601 -0.860194 1.222267 -1.600602 -1.606136 -0.379251 -1.295519 -0.460150 -1.706460 0.944893 0.130260 1.077120 0.220939 -0.871428 -0.480685 -1.723225 -2.070379 1.611551 -0.492359 1.081844 -0.034708 -0.219369 -3.608680 2.024382 1.728966 -0.719473 -2.084776 0.617377 -0.597679 -0.529725 0.154087 -0.115226 0.541041 0.003400 1.311894 0.957858 0.794917 1.009617 -0.022033 0.545905 3.404208 -1.273822 1.631069 0.812838 0.272774 -0.187780 1.036102 0.553147 0.573378 0.985037 1.604450 -0.021292 -1.035883 0.109293 -0.617248 -2.248709 1.753678 -0.342556 -0.640203 -1.129809 -0.361297 -0.907284 -0.097692 -1.544928 1.337872 2.972480 -1.221648 2.015919 0.677327 0.799442 -0.568359 0.275893 -0.233977 1.450269 0.621180 -0.799057 -0.778278 -1.347478 -0.530541 0.200003 -0.059426 -0.997680 -1.971849 1.463400 -1.314428 -2.018979 0.618372 0.674124 -0.496800 -1.212398 0.130059 0.873325 0.723157 -0.891744 -1.946551 -1.071977 0.840197 -0.349573 -0.551625 0.026760 -0.306532 -0.552213 -0.399064 -1.926180 -0.513686 0.128594 -1.349598 -0.825567 1.471024 -0.720252 0.365463 0.092626 0.691197 -0.387832 1.211224 0.173780 1.449333 0.831163 0.532564 -1.743252 0.282752 1.021589 1.204557 -0.042630 0.185577 -0.396236 0.637230 -0.957126 0.550367 -0.781078 0.455420 1.724900 -0.907594 -1.147827 -0.695212 0.222396 -2.262841 0.514180 -1.600398 -0.612317 0.248110 1.605473 1.176352 1.074089 2.592240 -2.328454 1.148904 -0.298903 -0.050367 0.611158 0.068241 0.877717 -0.802423 -1.716839 0.406218 1.057447 0.401359 0.174512 -0.662210 -0.286045 -1.639204 -0.819037 0.707511 0.492656 -0.657578 1.112469 1.219869 2.130285 -2.243629 0.641597 1.144138 -0.450835 0.217266 0.072734 -2.726613 0.965336 0.314309 0.624760 1.674675 -0.129016 -0.742683 0.737073 -0.837444 0.257888 -1.385067 0.590335 -1.554201 -0.513299 -1.357070 0.396675 -0.749523 -0.839426 -0.462837 -0.047077 2.009633 -1.018323 -1.641677 2.242563 -0.428712 0.268805 -2.388824 2.146274 -0.986873 0.886016 -0.560503 -0.094051 -0.386340 0.657882 -0.678424 -0.233051 0.684987 -0.653999 1.541009 2.792474 0.594545 0.128432 0.287912 1.743302 -0.583344 0.565861 -1.244843 1.632567 -0.200883 -1.139544 -0.098714 -0.911231 0.448231 -0.907745 0.207938 1.742851 1.641127 -0.014321 1.208191 0.903953 1.302765 -0.849918 1.582683 0.269473 1.156870 -0.641608 -0.076370 0.263085 0.321840 -1.098842 1.409195 -2.272109 -2.525169 -1.444055 -2.309729 -0.313368 -0.770553 0.900088 -0.336470 0.118830 -2.148854 -1.520897 1.099981 -0.794428 1.187922 1.108199 1.013283 1.270686 2.053830 -1.033795 0.185348 -0.082877 0.451849 -0.717779 -1.131880 -0.704006 1.442004 -1.024954 0.763815 1.727722 -0.386577 0.538911 -0.535884 1.352559 -1.481686 2.547532 1.180468 -0.438626 1.496073 0.776503 2.732795 0.284316 -1.119075 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__deque_buf_size(unsigned long) = -0.437172 -0.830046 0.890723 0.498284 0.232919 0.467967 0.153130 0.114314 0.253118 0.786792 -0.712221 0.633781 -0.384825 -0.292051 0.539914 0.273521 -0.194882 -0.689765 0.598378 0.233060 0.203869 -0.477323 -0.406291 0.483260 0.194673 0.222339 -0.302758 -0.000851 -0.717554 -1.051809 -0.208081 -0.178305 0.411428 0.229645 0.458280 -0.521647 0.294487 0.554561 0.090137 -1.098392 0.014136 0.131542 0.006666 0.352840 0.383554 0.788529 0.663904 0.081030 -0.312196 0.256291 -0.208605 -0.547264 0.055765 0.121637 0.326691 0.539777 0.769262 -0.080173 0.253885 -0.103504 0.419483 -0.409346 0.498067 0.508194 -0.431707 -0.051916 -0.004449 0.119008 -0.394999 0.033264 0.360174 -0.206277 -0.250298 -0.386180 -0.073637 -0.015968 0.203476 0.200699 0.875934 0.109245 1.037620 0.649314 1.143405 -0.134882 0.430801 -0.212151 0.411823 0.324216 -0.710206 -0.092378 -0.692626 -0.814879 -0.234910 0.699690 -0.269402 0.821977 0.095406 -0.284400 -0.603406 0.480792 -0.075084 -0.016805 -0.649690 0.476722 0.665737 0.579570 0.016887 -0.495841 -0.513707 0.165286 -0.713664 -0.321117 -0.155584 -0.141927 -0.423774 0.246051 -0.357173 -0.231154 0.687877 -0.579545 -0.139192 0.412574 -0.377914 0.690620 -0.134374 -0.095813 0.015006 -0.010669 0.918185 0.288669 0.286034 -0.634697 -1.057089 0.178897 0.016252 0.239207 -0.275055 -0.234193 0.304464 0.193643 0.370367 0.201759 -0.445601 0.682248 0.976093 -0.053252 -0.402758 -0.899084 -0.022763 -0.242663 0.394042 -0.263884 0.266427 -0.045684 0.350944 -0.147581 -0.004604 0.791067 -0.858620 0.578832 -0.219643 0.438062 -0.227190 0.017966 0.054797 -0.370370 -0.243535 0.246868 0.933777 -0.080153 0.396039 -0.592012 0.270353 -0.151387 -0.610941 0.608816 0.131092 0.239343 0.535320 0.119799 0.803185 -0.274148 -0.429545 -0.159646 0.051799 -0.181867 0.025572 -0.795677 0.446467 0.027321 0.644802 0.776753 0.007051 -0.378655 0.320330 0.009289 -0.052306 -0.305112 0.831928 -0.701804 0.209764 0.057063 -0.081346 -0.639829 -0.202104 -0.285144 0.298003 0.808139 0.504372 -1.020951 0.052798 -0.287054 0.318968 -1.019880 0.033357 -0.236605 0.371698 -0.111879 0.052202 -0.219334 -0.045009 0.283132 -0.279184 0.324143 -0.083584 0.385932 0.245929 0.040900 -0.290521 0.484119 -0.000830 0.118046 -0.417716 -0.156243 0.022893 -0.126719 0.334707 -0.184784 -0.020827 0.585264 0.320661 -0.509081 -0.339136 0.287674 -0.379900 0.053175 0.308375 -0.309714 -0.490475 0.103466 0.070491 0.874835 -0.062480 -0.289730 -0.688230 0.276175 -0.070958 0.130797 -0.734438 -0.381823 0.025606 -1.144924 -0.725664 0.384017 0.286516 0.374219 0.139976 -0.594905 -0.092286 0.355541 0.122543 0.986864 0.130261 0.213112 0.646769 0.163714 -0.216239 -0.532223 -0.279273 -0.239342 -0.633144 -0.204917 -0.028421 0.086704 -0.352650 0.475567 0.344924 -0.206356 -0.147505 -0.292305 0.475485 -0.446986 0.914606 0.698487 -0.664551 -0.256533 -0.046484 0.938091 -0.953007 -0.549389 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.091115 -0.706025 1.452779 1.239501 0.190678 0.535548 0.497930 -1.093478 1.464415 0.729861 -0.009704 0.077879 -0.994467 0.433939 -0.479748 0.863011 -0.817450 -0.937793 -0.329482 -0.974625 -0.625850 -0.912137 0.397493 -0.141426 0.550336 -0.363312 -0.641635 -0.286855 -1.234086 -0.653493 0.875146 -0.314296 0.430106 -0.431176 0.019688 -2.091765 1.086000 0.752280 -0.466294 -1.038497 0.234548 -0.813884 0.170092 -0.208999 0.308638 0.114834 -0.111561 0.569513 0.904386 0.324362 0.760480 0.374448 -0.090157 2.308854 -1.179377 0.915235 0.262071 0.161097 -0.268748 0.714250 0.238274 0.366738 0.624913 0.687460 -0.275476 -0.790781 -0.170646 -0.416181 -1.028644 0.991258 -0.013789 -0.396849 -0.926982 -0.229457 -0.687046 -0.448351 -1.958191 0.798834 1.580970 -1.052492 0.882677 0.315687 0.660283 0.063573 0.728099 -0.118199 1.303457 0.209277 -0.632882 -0.177849 -0.883992 0.005890 0.083652 -0.240243 -0.443870 -1.404165 0.567508 -0.590449 -1.307068 0.497817 0.371532 0.065121 -0.950996 -0.020671 0.596601 0.294971 -0.730253 -1.319351 -0.590666 0.497117 0.032912 -0.405045 0.298992 -0.908543 -0.182251 -0.655700 -1.203521 -0.271645 0.112225 -0.625719 -0.884896 1.135122 -0.594401 -0.051774 0.002055 0.308310 -0.376538 0.894321 -0.196040 0.853175 0.217333 0.159033 -1.956836 0.402794 0.526244 0.819983 0.004069 0.533609 -0.495462 0.271758 -0.894591 0.363363 -0.230607 0.567377 0.728899 -0.527522 -0.717634 -0.271394 0.437867 -1.094832 0.497367 -0.803683 -0.321958 -0.309765 0.946665 1.113180 0.778191 1.205310 -0.971311 0.675996 -0.257656 0.109469 0.888807 0.041207 0.690666 -0.560227 -0.891769 0.247223 0.541680 0.003232 0.214788 -0.302529 -0.057251 -0.984020 -0.217690 -0.018857 0.382259 -0.430630 0.948052 0.644366 1.144674 -1.731292 0.580402 0.670512 -0.252042 0.328075 -0.204340 -1.273643 0.552794 0.348522 0.057200 0.829335 -0.165018 -0.608365 0.210051 -0.302721 0.523430 -0.653482 -0.042760 -0.789810 -0.670899 -0.753723 0.436775 -0.478937 -0.471455 -0.234463 -0.216245 1.171233 -0.540207 -0.761740 1.410884 -0.443530 0.203784 -1.268008 1.517103 -0.647464 0.332999 -0.611765 0.055267 -0.302430 1.055685 -0.574709 0.298569 0.557309 -0.601856 0.679375 1.631062 0.370252 0.477647 0.120362 1.051498 -0.251153 0.321980 -0.561434 1.333666 -0.211963 -0.483351 0.099602 -0.563046 0.313930 -0.376633 0.278497 1.118717 0.935145 0.130475 0.507739 0.744462 0.775539 -0.546808 0.853617 -0.101526 0.368925 -0.499957 0.047696 0.215034 -0.146775 -0.482465 0.493195 -1.242234 -1.194846 -0.600460 -0.806658 0.230600 -0.077087 -0.008123 -0.139168 -0.019789 -1.332733 -0.739911 0.403881 -0.597513 0.148759 0.456287 0.535984 0.747190 1.352767 -0.605985 0.004639 -0.084991 -0.163712 -0.250354 -0.606080 -0.527978 0.996866 -0.781003 0.483034 0.877224 -0.168089 0.267783 0.166151 0.789806 -0.641368 1.361682 0.541819 -0.093357 0.930410 1.115679 1.900879 0.199444 -0.614307 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::deque() = -0.266089 -0.409759 0.768164 0.503588 -0.039957 0.269698 0.211296 -0.591278 0.818416 0.152198 -0.085703 -0.070981 -0.634515 0.170870 -0.340911 0.326032 -0.471961 -0.558811 -0.142840 -0.509122 -0.334610 -0.596477 0.300633 0.020851 0.192451 0.060396 -0.241864 0.023315 -0.541642 -0.508647 0.556962 -0.210871 0.239850 0.017991 0.041207 -1.078586 0.569514 0.314778 -0.263865 -0.547624 0.111532 -0.288301 0.048236 -0.044043 0.015272 0.129067 0.029632 0.343524 0.433597 0.200417 0.414571 -0.038359 -0.090877 1.008798 -0.557530 0.481867 0.219211 0.123182 -0.132111 0.327650 0.072480 0.130529 0.275537 0.529400 -0.244672 -0.254489 0.034662 -0.295614 -0.716893 0.588059 -0.177524 -0.185922 -0.447337 -0.249364 -0.387211 -0.212583 -0.771490 0.350249 1.011031 -0.553163 0.535293 0.210558 0.401805 -0.066857 0.277514 -0.092136 0.632232 0.130452 -0.453697 -0.021138 -0.333185 0.003461 -0.072809 -0.018915 -0.158742 -0.584717 0.384809 -0.591127 -0.692575 0.271293 0.120174 0.102726 -0.531986 0.061425 0.360127 0.144290 -0.469718 -0.769312 -0.284456 0.238921 0.013916 -0.048105 0.146588 -0.179673 -0.149040 -0.284152 -0.698627 -0.269005 0.051330 -0.531948 -0.294551 0.568178 -0.315993 0.167928 0.133775 0.210596 -0.165051 0.648238 0.086449 0.343725 0.018644 0.070891 -0.769274 0.125793 0.193969 0.429521 -0.033694 0.155954 -0.114238 0.065861 -0.464042 0.011815 -0.283518 0.064849 0.496818 -0.268651 -0.452565 -0.074160 -0.003833 -0.903583 0.270190 -0.603860 -0.203596 0.033922 0.421008 0.592912 0.358957 0.897046 -0.562439 0.340338 -0.188222 -0.053640 0.282943 0.077585 0.444770 -0.277779 -0.541356 0.156715 0.211280 -0.008612 0.240078 -0.421725 -0.092467 -0.653627 -0.223421 0.188836 0.253637 -0.167911 0.374258 0.294057 0.450016 -0.737368 0.242062 0.352961 -0.027822 0.146827 -0.042915 -0.750455 0.342526 0.119666 0.107148 0.343557 -0.054928 -0.228028 0.195541 -0.218719 0.311704 -0.466996 -0.006496 -0.474395 -0.190075 -0.536893 0.269648 -0.261350 -0.230781 -0.031491 -0.102272 0.590902 -0.357865 -0.405980 0.783481 -0.022326 0.410496 -0.657564 0.515809 -0.301076 0.570390 -0.253313 0.096394 -0.165408 0.211341 0.025136 0.033132 0.198428 -0.119461 0.345313 0.800599 0.141968 0.234141 0.252366 0.643588 -0.141914 0.128442 -0.249838 0.587085 -0.088395 -0.373318 0.222179 -0.293305 0.118213 -0.242036 0.152529 0.622567 0.637294 -0.042834 0.448032 0.328850 0.338557 -0.264432 0.348402 0.027020 0.335200 -0.336056 0.016440 0.076461 0.146206 -0.362156 0.221447 -0.645590 -0.893140 -0.540197 -0.644818 -0.134913 -0.185338 0.088456 -0.073731 0.070651 -0.494463 -0.315599 0.477357 -0.315458 0.506730 0.242225 0.395221 0.507107 0.893809 -0.375717 -0.135971 0.103278 0.030169 -0.291258 -0.116449 -0.375146 0.369903 -0.381224 0.217869 0.455864 -0.078081 0.060943 0.017567 0.436794 -0.417703 0.755497 0.376655 -0.055046 0.668508 0.377183 0.906188 0.359238 -0.289770 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_base() = -0.480470 -2.023707 4.696366 3.124186 -1.159909 1.394607 0.779359 -3.489920 3.172122 1.119198 -0.422268 0.170847 -2.411237 0.666799 -0.745624 1.983898 -2.998952 -1.850028 -1.081341 -2.891208 -1.729630 -2.288966 1.196245 0.638862 1.219071 1.056989 -1.185983 -0.031029 -0.984309 -3.949466 2.425364 -0.471359 1.513478 0.247666 0.787546 -7.082717 3.285020 1.876049 -1.322914 -3.071704 0.729005 0.041194 -0.913278 0.689554 -1.148912 0.784463 -0.285571 2.260808 1.323936 1.640198 1.401199 0.401292 1.233228 5.678747 -1.286287 2.532965 1.908359 0.365120 -0.414516 1.518787 0.601373 0.883774 1.026884 2.028535 0.237081 -1.606105 0.318188 -1.066702 -3.386459 2.768682 -0.211003 -2.273600 -1.749149 -2.005180 -1.439477 -0.662484 -3.480294 2.354230 4.702170 -2.838102 2.418369 1.090848 1.015961 -0.442131 1.028868 -0.681937 2.972010 1.093901 -1.328440 0.153829 -0.727418 -1.551791 0.572754 -0.719009 -1.764048 -4.578578 2.284884 -2.921792 -3.246569 1.999203 1.385696 -0.580502 -2.501503 -1.222228 1.701803 0.567253 -2.143225 -3.124606 -1.881324 1.673632 -0.186989 -0.452803 -0.108156 0.462634 -0.404258 0.049564 -3.560082 -0.275174 0.886734 -1.808959 -0.986519 2.373289 -0.497894 0.805645 0.365276 1.217080 -1.029932 2.839836 0.568066 2.020871 0.344938 1.318212 -1.506227 1.246048 1.088262 0.527442 0.363007 -0.474578 -0.413857 1.061731 -1.605754 1.581759 -1.423657 0.736569 3.085853 -0.182130 -2.487764 -0.883143 -0.790438 -4.490108 1.252936 -2.986248 -1.666998 1.246415 1.830993 2.098545 1.217496 2.466878 -3.099273 1.660858 -1.000419 0.261281 0.611607 0.240031 1.669160 -1.296945 -2.778020 0.707156 1.092513 0.674021 0.972283 -1.958418 -0.245239 -2.392770 -1.773573 1.187412 1.336298 -0.972450 1.373128 2.159120 4.863818 -2.263003 0.296982 1.349833 -1.041066 0.394926 -0.167119 -3.820516 0.827042 0.596842 1.059845 3.130829 -0.422696 -0.590982 1.351304 -0.969490 0.643135 -1.737645 0.715510 -2.467038 -0.641926 -2.186968 0.817359 -1.575740 -0.606734 -0.819661 -0.749210 3.332001 -3.284833 -2.274926 4.478819 -1.221119 1.465711 -3.430256 3.645475 -0.919143 2.039964 -1.074271 -0.295700 -0.820706 -0.226081 -0.698818 0.508506 0.700195 -0.471513 1.029392 4.534508 0.320459 0.442827 0.714778 2.945477 -1.423989 1.058025 -2.094753 3.532556 -0.882813 -1.395655 -0.103244 -1.022238 0.179647 -2.046361 0.752429 2.054074 1.779389 -0.127683 1.208800 1.506485 1.480274 -1.443002 2.726532 0.434804 1.071096 -1.776061 -0.058623 0.712136 1.094308 -1.688428 1.519237 -3.385320 -3.395533 -4.360353 -2.944410 -1.495478 -0.288678 1.477508 -0.872438 -0.527768 -2.087828 -2.267038 3.556524 -1.282418 0.927798 2.281272 2.189564 2.839912 4.385026 -0.927056 0.197943 -0.253064 0.029454 -1.197651 -1.054035 -1.386303 1.959401 -1.022005 0.975765 2.666571 0.307054 1.294560 -0.843977 2.228464 -2.262266 3.472469 1.606169 -0.580300 2.272562 2.210536 3.241446 0.740545 -1.482582 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.078883 -0.690940 1.384196 1.155033 0.164837 0.582740 0.247283 -1.148698 1.438094 0.709342 -0.085908 0.159324 -0.866326 0.463878 -0.762234 0.845856 -0.795896 -0.896068 -0.363101 -0.926103 -0.698844 -0.923485 0.289364 -0.071102 0.449946 -0.272257 -0.693969 0.031137 -1.154038 -0.969437 0.669652 -0.297340 0.296169 -0.697769 0.100702 -1.804595 1.138277 0.804098 -0.425315 -1.030264 0.133714 -0.750514 0.050550 -0.147112 0.184219 0.109515 -0.159708 0.495415 0.825240 0.297085 0.784491 0.458047 -0.027283 2.252951 -1.034899 0.969975 0.311513 0.263579 -0.201114 0.704028 0.267989 0.415822 0.530171 0.718021 -0.208029 -0.703609 -0.147466 -0.234174 -0.854043 1.035861 -0.185663 -0.499547 -0.857488 -0.286429 -0.852952 -0.382285 -1.817978 0.702601 1.581285 -0.984062 0.794291 0.329787 0.686583 0.132020 0.765048 -0.198450 1.419421 0.277117 -0.673575 -0.125642 -0.554722 0.133581 0.106075 -0.203314 -0.530078 -1.427157 0.584849 -1.086397 -1.306163 0.529084 0.342101 0.055921 -0.791332 -0.085858 0.668192 0.146959 -0.709967 -1.276646 -0.472112 0.537131 0.074825 -0.414654 0.393723 -0.844851 -0.013737 -0.326171 -1.179538 -0.318364 0.177761 -0.621192 -0.776331 1.116244 -0.348568 -0.031324 -0.049153 0.266280 -0.271423 0.826657 -0.228381 0.900805 -0.174230 0.419092 -1.754351 0.515480 0.440064 0.228549 -0.089757 0.592131 -0.353161 0.297479 -0.848019 0.399909 -0.620845 0.444007 0.633240 -0.408239 -0.744608 -0.298937 0.202248 -1.119058 0.406599 -0.782272 -0.701156 -0.350738 0.940982 1.088685 0.723350 1.041991 -0.881542 0.521804 -0.207591 0.150373 0.831279 -0.266805 0.622504 -0.538269 -0.951575 0.383245 0.549626 0.016452 0.251621 -0.393394 -0.082704 -0.869485 -0.122064 0.179090 0.450473 -0.310170 0.978552 0.586888 1.053703 -1.589422 0.594354 0.606390 -0.218987 0.367654 -0.318369 -1.258799 0.500969 0.360370 0.339602 0.844140 -0.160615 -0.464825 0.204310 -0.263852 0.593183 -0.713829 -0.020132 -0.787273 -0.594708 -0.691360 0.476057 -0.411868 -0.314839 -0.257660 -0.376222 1.113082 -0.908270 -0.713004 1.518656 -0.320637 0.324235 -1.105034 1.109282 -0.602907 0.594524 -0.392648 0.172523 -0.227483 0.833260 -0.511065 0.351577 0.586309 -0.585436 0.636824 1.411603 0.299326 0.523051 0.139714 0.982080 -0.337714 0.265538 -0.572930 1.265945 -0.120861 -0.557448 0.057352 -0.589187 0.236325 -0.410783 0.339988 0.910920 0.870454 0.086302 0.444829 0.727273 0.706129 -0.561004 0.834049 -0.143803 0.203296 -0.590572 0.018394 0.182390 -0.121205 -0.493067 0.421275 -1.205478 -1.098778 -1.065011 -0.731765 0.162116 -0.232354 0.000590 -0.189355 -0.060551 -1.133135 -0.785729 0.889054 -0.578949 0.161828 0.492395 0.588489 0.714904 1.332008 -0.501335 0.077854 -0.212185 -0.244156 -0.272925 -0.539012 -0.498429 0.970216 -0.679718 0.485343 0.824501 -0.186300 0.302484 0.360606 0.419452 -0.594655 1.225808 0.592736 -0.079818 0.810657 1.030696 1.807134 0.188105 -0.652693 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.105150 -8.122040 17.566496 13.348147 -4.042076 5.971925 1.131718 -11.774056 10.035946 6.330075 -2.640923 3.138292 -7.001262 2.176116 -0.921144 8.029042 -11.693886 -5.631924 -3.376669 -8.878606 -5.577047 -7.398750 1.546257 3.555530 4.940458 4.730189 -5.462170 0.687672 -3.563456 -14.758674 6.118274 -1.408881 5.761106 0.210854 4.218278 -25.657524 12.273282 8.925631 -3.693121 -12.650552 1.856432 -0.640379 -3.276955 1.663487 -4.659902 3.372526 -1.318253 7.178238 3.719316 5.078992 2.837714 2.555156 6.472143 20.708621 -2.255740 9.515857 7.245458 0.167780 -0.869807 3.972353 3.774504 3.247274 4.635068 6.047790 1.820881 -7.238237 -0.133207 -2.222376 -10.061907 8.998430 0.445072 -8.613196 -6.500379 -7.129330 -5.637561 -2.034154 -12.571130 9.706701 15.623563 -9.249014 9.043386 4.108541 3.608408 -0.355932 5.360963 -2.283837 11.970503 4.675221 -4.043480 1.115489 -1.671510 -7.323810 4.275378 -2.798185 -8.111868 -16.368632 7.079804 -11.048645 -11.635367 7.686896 5.598985 -3.427928 -7.903772 -5.655512 6.323320 2.616431 -6.186493 -9.911313 -5.999851 6.335194 -1.347489 -3.935225 -1.252168 1.334513 -0.817150 1.747101 -11.985519 0.272429 4.587886 -4.556982 -2.574840 8.843154 -0.248390 1.750071 -0.986453 2.943189 -3.184419 8.900060 0.919975 8.280961 0.100735 5.375705 -4.492506 5.455973 4.126660 -1.103890 0.664837 -2.490768 -0.996872 5.091079 -4.322149 7.318455 -5.292017 5.083663 10.891570 0.525340 -8.177626 -5.732551 -4.016251 -13.908582 3.478762 -8.682984 -6.574585 5.041249 7.917088 6.354023 4.229305 5.645564 -11.308140 5.137309 -3.164981 2.229463 3.319801 0.412160 4.405622 -5.055933 -8.987878 3.959270 5.070263 3.805509 2.846288 -5.230618 0.010840 -5.621297 -5.433785 5.708679 5.093866 -1.916325 6.767011 8.243077 19.684007 -7.255584 0.900636 3.922772 -4.161809 1.189326 -1.137151 -13.203203 2.715930 2.476535 4.781658 12.875052 -2.145471 -1.978751 3.881287 -2.601179 1.489436 -6.113064 4.033273 -8.578455 -1.546253 -6.176677 2.113280 -6.009654 -2.154638 -5.207047 -3.108235 13.001189 -13.245663 -8.596903 15.545810 -5.902890 4.263443 -11.993572 12.810166 -3.873509 6.446039 -3.481175 -2.428787 -1.896107 -1.400604 -5.136547 2.426517 4.064495 -2.869482 2.386369 14.533096 1.725609 0.336434 0.958347 8.693398 -4.928677 4.183974 -8.118652 12.607823 -2.525704 -2.187717 -2.671237 -3.901531 1.039389 -6.163953 1.909961 5.649394 4.726997 1.114352 2.420521 5.578282 4.639858 -5.932038 10.109176 0.720561 2.780233 -5.969664 -1.039619 1.672323 4.044594 -4.473316 5.316983 -12.842428 -9.698788 -16.666918 -8.228343 -5.350693 0.529013 5.428017 -2.466918 -2.660831 -8.140972 -9.341490 14.016592 -4.181396 1.724772 7.799876 6.658314 9.514237 12.804152 -1.890897 1.193109 -2.848824 -1.087509 -3.082189 -4.119858 -4.750482 8.798913 -3.969834 4.292713 10.525014 -0.198206 5.631066 -2.115984 7.246695 -7.847915 12.103016 5.731617 -4.012341 4.751945 8.989937 10.780227 -1.039752 -6.774319 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.148457 -0.682900 1.158859 1.094313 -0.341208 0.267154 0.310256 -0.461369 1.085951 0.294865 -0.235782 -0.000858 -0.795275 0.312800 0.640233 0.784442 -1.234720 -0.600687 0.184269 -0.324120 -0.401565 -0.763743 0.302773 0.014092 0.382574 0.743875 -0.227904 -0.264115 -0.056585 -0.045031 0.981339 -0.552375 0.592948 1.300030 0.329893 -2.279881 0.729767 -0.002763 -0.271962 -0.955598 -0.071243 -0.485010 0.506780 -0.680838 0.093446 0.356691 0.392935 1.194203 0.673804 0.320316 -0.182077 -0.496924 0.216146 1.398699 -0.551432 0.410416 0.291552 -0.293855 -0.150683 0.012281 0.362765 -0.064343 0.625813 0.780537 -0.292550 -0.556014 -0.286050 -0.861112 -1.059379 0.716852 0.300977 0.365067 -1.160843 -0.271157 -0.009728 -0.330215 -2.451016 1.217387 1.484523 -1.023589 0.871540 0.466788 0.761900 -0.030229 0.453034 0.106786 0.920533 0.240733 -0.792962 0.314276 -0.666923 -0.989759 0.247912 -0.846813 0.051200 -1.179113 -0.030379 -0.040547 -0.786107 0.528350 0.200786 0.401690 -0.552125 -0.170504 0.739691 0.548284 -0.623988 -0.949249 -0.257271 -0.192137 -0.212380 -0.215185 -0.009510 0.070632 -0.450336 -0.672793 -1.035718 -0.460965 0.105618 -0.700503 0.188875 0.728692 -0.447616 0.183807 -0.035402 -0.087288 -0.182529 1.310110 0.358228 0.444028 0.694224 -0.215502 -0.778833 0.674780 0.527951 1.161464 0.289021 -0.115086 -0.194991 0.251850 -0.663075 -0.199178 0.537050 0.485184 0.830609 -0.281770 -0.757634 -0.439943 0.004475 -1.000483 0.673271 -0.831499 0.586989 0.589180 0.743073 0.692957 0.657967 0.656669 -1.223824 0.616166 -0.641024 0.465163 0.557848 1.306877 0.601422 -0.383453 -0.208551 0.234550 0.385008 -0.013854 0.366915 -0.780297 0.209756 -0.690965 -0.295512 0.372725 0.480527 -0.291622 0.458500 0.201461 0.853197 -0.708725 0.173712 0.550467 0.244511 0.001386 0.271532 -0.949073 0.969786 -0.110059 -0.097883 0.054788 -0.231772 -0.461610 0.130250 -0.185332 0.112569 -0.312454 -0.275065 -0.469560 -0.345509 -0.694374 0.853385 -0.571148 -0.540993 -0.071413 0.459127 0.998426 -0.192955 -0.163635 0.814642 -0.835799 0.627435 -0.686071 1.524102 -0.573448 0.164346 -0.748774 -0.569984 -0.163963 0.028472 -0.025750 -0.190664 0.495470 0.154395 -0.126517 0.890537 0.404130 0.060430 0.492077 0.766199 0.214116 0.261396 0.017029 0.700406 -0.248490 0.452435 0.143432 -0.375263 0.444810 -0.054638 0.023449 1.334429 0.716131 0.336364 0.876970 0.237463 0.253785 -0.562408 0.264356 -0.085395 0.742877 -0.488508 0.072161 -0.117549 0.228123 -0.531500 0.405796 -0.879960 -1.165181 -0.456711 -0.000145 -0.808796 0.371881 0.237602 -0.050893 0.223090 -0.651611 -0.234577 0.071605 -0.426604 -0.204600 0.172625 0.157763 0.763485 0.964315 -0.403947 -0.781911 0.231115 -0.071303 -0.237302 0.275229 -0.835758 0.640604 -0.907266 0.356594 0.901825 -0.354683 -0.254083 -0.386600 1.772770 -0.473332 1.088857 0.529368 -0.419653 0.552155 0.967037 1.010302 0.439314 -0.548199 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.082253 -0.375578 0.575701 0.532890 0.048914 0.125429 0.542693 -0.137508 0.793960 0.457756 -0.069702 -0.205388 -0.601233 0.082115 0.586729 0.448957 -0.494317 -0.437815 0.273371 -0.221948 -0.145578 -0.526097 0.212835 -0.246191 0.222719 -0.019724 0.028056 -0.460068 -0.219097 0.222090 0.678092 -0.389219 0.310082 0.671632 0.050776 -1.280927 0.319863 -0.135644 -0.208061 -0.495363 -0.017800 -0.400171 0.518566 -0.269824 0.490463 0.209476 0.378728 0.784098 0.494448 0.225422 0.124128 -0.500429 -0.059890 0.913524 -0.611290 0.203754 0.034455 -0.208689 -0.136516 0.238836 0.131587 -0.188881 0.437763 0.503609 -0.318756 -0.242710 -0.124658 -0.575883 -0.723406 0.338292 0.285155 0.291443 -0.710457 -0.017200 0.219928 -0.316110 -1.983638 0.596124 0.871925 -0.570264 0.652346 0.367262 0.623083 -0.017594 0.291748 0.112537 0.500710 -0.017394 -0.611424 0.079130 -0.732987 -0.537851 0.012235 -0.467932 0.263684 -0.497424 -0.100208 0.634416 -0.452636 0.294072 0.002405 0.397087 -0.479855 0.138893 0.419541 0.396608 -0.414257 -0.700395 -0.347091 -0.160836 -0.313751 -0.043263 0.077153 -0.342398 -0.411934 -0.702354 -0.511718 -0.376278 -0.020131 -0.495055 -0.240653 0.497800 -0.518839 0.139882 0.112485 -0.026328 -0.124160 0.682287 0.288281 0.240042 0.724901 -0.457062 -1.249956 0.374068 0.370846 1.109096 0.366582 0.156111 -0.192613 0.065419 -0.472944 -0.084559 0.592492 0.442894 0.512848 -0.353572 -0.315696 -0.186005 0.476489 -0.355515 0.598058 -0.445258 0.679972 -0.044486 0.433997 0.485678 0.424474 0.526555 -0.792990 0.535105 -0.503376 0.280710 0.336100 0.924805 0.459589 -0.230773 -0.001084 -0.152038 0.431586 -0.188387 0.196078 -0.481460 0.121027 -0.549256 -0.119570 -0.125393 0.145985 -0.372285 0.260031 0.101426 0.617565 -0.780395 0.141985 0.384412 0.212171 -0.017861 0.208971 -0.541892 0.659983 -0.027769 -0.283122 -0.133148 -0.089988 -0.421543 -0.002297 -0.182837 0.044892 -0.100524 -0.277155 -0.262707 -0.424321 -0.326254 0.577897 -0.461591 -0.506861 0.104900 0.529697 0.505260 0.508071 -0.073934 0.300001 -0.639152 0.095545 -0.436940 1.397835 -0.393119 -0.304357 -0.730850 -0.328391 -0.288332 0.666362 0.099617 -0.144158 0.229388 0.026180 0.199716 0.698318 0.310906 0.183045 0.352144 0.520374 0.194587 -0.062623 0.084034 0.385099 -0.243392 0.309430 0.159818 -0.226041 0.490570 0.173444 -0.060202 0.891319 0.569440 -0.057955 0.534507 0.183482 0.104978 -0.243174 0.141385 -0.012485 0.657339 -0.187069 0.118862 -0.130190 -0.157846 -0.319295 0.239941 -0.518514 -0.554816 0.485051 0.044226 -0.345638 0.429261 -0.018090 0.133058 0.327196 -0.666426 0.033858 -0.435139 -0.269345 -0.409493 -0.069558 0.041684 0.419139 0.578494 -0.242853 -0.596792 0.161357 -0.130644 -0.262548 -0.013023 -0.318683 0.320427 -0.726204 0.296058 0.294637 -0.145163 -0.352148 -0.234263 1.190917 -0.308184 0.653617 0.319778 -0.042871 0.424657 0.703699 1.001813 0.122255 -0.225734 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.002590 -2.236412 3.990259 2.842120 0.395314 1.402840 2.065714 -2.940371 3.384983 1.705869 -0.222157 0.189625 -3.238931 0.781844 -1.972752 1.833918 -1.767317 -2.788608 -0.883293 -2.442046 -1.241466 -2.643534 1.838462 0.269928 1.492472 -0.675727 -1.373703 -1.149955 -3.407651 -3.210155 2.409703 -0.579426 1.513872 -0.943142 -0.488274 -5.501300 2.826055 2.404866 -1.316287 -2.934907 1.298539 -1.094243 -0.694661 0.623200 0.036080 0.505180 -0.047067 1.667688 1.712579 1.508214 2.438925 0.608064 0.366787 5.480794 -2.488642 2.751874 1.472015 0.926354 -0.517440 1.862516 0.334428 0.859271 1.423547 2.276334 -0.553870 -1.262660 0.086250 -0.933734 -3.663222 2.621450 -0.535703 -1.330623 -1.849206 -0.688515 -1.636352 -0.575293 -2.186069 1.508613 4.748994 -2.422046 2.871648 0.895988 1.250136 -0.951425 0.889360 -0.552491 2.248578 0.755513 -1.424635 -1.196851 -2.464015 0.003869 -0.450127 0.313011 -1.395234 -3.336770 2.461900 -1.923536 -3.557176 1.180887 0.659040 -0.498283 -2.564121 0.203191 1.375112 0.957721 -2.046630 -3.671264 -2.241038 1.626446 0.031900 -0.733128 0.448136 -1.052654 -0.744597 -1.141396 -3.262612 -0.870506 0.431726 -2.539594 -2.166579 2.458481 -1.459643 1.085509 0.589499 1.387145 -0.809269 2.064604 0.410135 1.894155 1.414213 0.392535 -3.615964 0.414928 1.217725 2.225735 -0.353917 0.919911 -0.852215 0.687299 -1.567265 1.038126 -1.163105 0.727095 2.599739 -1.362495 -2.119948 -0.522075 0.985791 -3.711722 1.225651 -2.814027 -0.996560 -0.321871 2.063609 1.836243 1.488283 4.382126 -2.742259 2.068603 -0.166370 -0.277654 1.054208 -0.386032 1.781036 -1.349522 -3.343970 0.626425 1.568908 0.142254 0.425859 -0.957292 -0.577392 -2.992884 -1.757786 0.176405 0.726402 -1.313143 1.927932 1.751567 3.435516 -3.697294 1.027407 1.542713 -0.944833 0.805784 -0.463749 -4.191990 1.216398 0.628448 0.562254 2.862609 -0.134557 -1.562454 1.677068 -1.080284 0.977726 -2.167720 0.894175 -2.683073 -1.304732 -2.423826 0.339665 -0.787090 -1.189376 -0.407498 -0.321609 3.120899 -1.349148 -2.681129 3.466195 -0.558192 0.605895 -4.347965 3.773899 -1.321135 1.330316 -1.051910 0.332542 -0.819735 1.842464 -0.634583 0.087261 0.931776 -1.242464 2.640548 4.889611 0.442114 0.816670 0.810314 2.907347 -0.834272 0.615202 -1.920909 3.241435 -0.534315 -2.424377 0.387986 -1.326851 0.801275 -1.560397 0.490005 2.721487 2.719459 -0.615466 1.692638 1.925770 2.159838 -1.273495 2.577408 0.313841 1.740160 -1.350636 0.128767 0.381541 0.095800 -1.551347 2.105341 -3.335791 -3.985668 -1.961574 -4.208002 0.113450 -1.020697 1.152421 -0.669791 0.007553 -3.511043 -2.185859 1.464434 -1.425947 1.886255 2.167181 2.155478 2.392875 3.950999 -1.607018 0.422011 -0.074175 0.496253 -1.396587 -1.912066 -0.714010 1.441643 -1.426154 1.325207 2.055315 0.215666 1.002511 -0.799616 1.876024 -2.117487 4.106975 1.751903 -0.162672 3.092010 1.501781 4.500863 0.559621 -1.389175 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.718386 -1.981274 4.613693 2.543411 0.178516 1.779997 2.228645 -3.759860 4.959501 1.831174 -0.816519 -1.652994 -3.378352 -0.559315 -0.324717 1.044826 -2.479254 -2.749786 -0.502703 -3.129201 -0.743226 -4.003239 1.998460 -0.140427 0.881589 0.285518 -0.547320 -0.030396 -2.113799 -4.348160 4.491031 -0.725467 1.636807 1.100044 -0.201611 -7.641259 4.017511 2.169138 -1.314691 -3.038867 0.490008 -0.000978 -1.417786 1.752041 0.459097 1.275002 0.014162 2.878368 1.597240 1.389191 2.644519 -1.406966 -0.306776 4.830683 -2.595905 2.642819 0.937917 0.136724 -0.377029 3.058003 0.157376 0.857296 1.724991 4.253554 -0.801709 -0.641433 2.209152 -1.236985 -5.669664 3.519565 -0.217766 -2.156310 -1.008336 -0.993500 -0.713226 -0.180056 -1.398863 1.539481 5.687287 -1.230862 4.142913 1.316913 2.098876 -1.827847 0.470626 -1.027687 3.579147 0.618344 -2.486708 -1.430184 -3.555115 -1.971889 -0.143596 0.815641 -0.700257 -1.091546 2.221695 -1.558905 -2.970952 0.919507 0.771551 -0.150347 -4.518961 0.433200 2.352159 0.498256 -1.255323 -3.962988 -3.077588 1.859778 -2.609240 0.202486 -0.452426 0.119762 -1.698828 -0.862273 -2.934213 -1.801037 0.087570 -2.643888 -2.408523 2.412621 -2.676279 0.798019 0.961864 1.515713 -0.700444 1.332419 0.363248 1.701887 2.974451 -0.460920 -3.606848 -0.263610 0.969962 3.550867 1.276179 -0.578966 -0.161126 0.799631 -2.502097 1.109669 -1.596290 0.132257 3.966609 -1.347245 -1.722125 -0.032349 1.153921 -4.904918 1.702822 -3.412641 -0.818118 -0.047646 2.326105 2.283994 1.423877 4.726193 -4.933809 3.113705 -1.344745 -0.082655 -0.022800 0.769476 1.876158 -1.193154 -2.892513 -0.472122 1.398938 0.158060 0.841571 -2.822576 -1.316452 -3.622561 -3.192489 1.036365 0.166263 -0.766115 0.467724 2.111250 5.765384 -5.010835 1.068113 2.228846 -0.096242 0.111392 0.621284 -4.405931 1.436665 0.417399 1.251928 3.213579 -0.121158 -1.336007 0.293539 -1.020369 0.363744 -2.374864 0.672123 -2.786178 -0.259960 -2.293970 0.082550 -1.964634 -1.852502 -0.254683 0.643421 2.751695 0.205800 -4.432235 5.045406 -1.875263 1.296189 -4.796918 3.182930 -1.393710 1.255160 -2.197088 0.333594 -1.749194 0.891478 0.080297 0.237776 0.055671 -0.686044 3.627828 5.910072 0.661852 1.022975 0.798850 3.119660 -1.231078 -0.134025 -2.337506 3.016716 -0.637133 -2.071906 0.030129 -1.631768 1.621277 -1.701953 0.001543 2.502702 4.269500 -1.471610 2.217357 1.513826 1.179428 -0.909989 2.885709 1.688297 1.920221 -0.721232 0.028012 0.932846 0.228203 -2.381231 2.239010 -3.521410 -4.412032 -0.990706 -5.672694 -1.543386 -0.941887 1.798461 0.266023 0.985610 -3.501827 -1.412558 2.084936 -0.922453 3.497953 1.462066 2.435412 2.111874 4.604617 -1.963846 -0.177318 0.240696 0.685008 -2.947076 -2.309373 -1.127121 2.061675 -1.299874 1.819772 2.006895 0.298976 0.383436 -2.240148 2.970830 -2.924457 4.091270 2.203197 0.354217 2.957585 -0.348224 5.387660 1.474883 -1.224506 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.294208 -0.892814 1.566300 1.467280 -0.159824 0.625964 0.218397 -1.033500 1.223337 0.743887 0.011670 0.297262 -0.905863 0.382639 0.193657 0.915899 -1.094448 -0.748117 -0.318331 -0.884885 -0.718670 -0.846663 0.128468 0.216161 0.444786 0.211702 -0.703329 -0.099504 -0.718125 -0.987533 0.753817 -0.286093 0.744003 0.143522 0.267930 -3.173453 1.146220 0.816210 -0.394003 -1.261377 0.122400 -0.644836 0.226119 -0.211337 -0.350390 0.272127 -0.043651 0.305642 0.719119 0.329544 0.448808 0.272847 0.344241 2.340771 -0.661653 0.939023 0.508593 -0.145183 -0.343415 0.313610 0.351380 0.291964 0.820244 0.648711 -0.222518 -0.835231 -0.178860 -0.450074 -1.274063 0.923053 0.078072 -0.556404 -0.899205 -0.550016 -0.609627 -0.556993 -1.475269 1.003648 1.666877 -1.137488 1.017286 0.341672 0.495554 0.157681 0.892364 -0.093465 1.448180 0.325556 -0.630586 0.223142 -0.288093 -0.565651 0.328216 -0.021849 -0.571759 -1.377719 0.486715 -0.610303 -1.287825 0.794152 0.380993 0.073083 -1.387692 -0.625756 0.727193 0.486813 -0.772342 -1.284520 -0.761495 0.530510 -0.010083 -0.556189 -0.073857 -0.388745 -0.254334 -0.460047 -1.301784 -0.189932 0.372529 -0.606237 -0.604523 1.158434 -0.453338 0.094121 -0.127392 0.267357 -0.423944 1.213086 -0.112396 0.816306 0.170595 0.116927 -1.338635 0.168235 0.402822 0.714858 0.047144 -0.204229 -0.374761 0.379209 -0.716088 0.510407 0.003619 0.771265 1.342384 -0.026632 -0.807027 -0.526702 0.020840 -1.496471 0.410883 -0.950043 -0.067543 0.558099 0.982622 0.792104 0.655153 1.011659 -1.077298 0.758871 -0.409789 0.070062 0.830307 0.380851 0.633180 -0.593167 -0.874036 0.454188 0.563461 0.326460 0.344198 -0.475777 -0.003236 -0.648527 -0.579235 0.396554 0.513335 -0.153560 0.850343 0.682892 2.161299 -1.299656 0.425997 0.452369 -0.256741 0.315845 -0.204728 -1.253882 0.420517 0.302045 -0.178753 1.050765 -0.309989 -0.647353 0.213699 -0.209562 0.368960 -0.696567 0.284841 -0.821091 -0.213543 -0.800169 0.044999 -0.627583 -0.448318 -0.482376 -0.149252 1.417017 -0.980114 -0.895124 1.477882 -0.625349 0.500372 -1.487658 1.646812 -0.618651 0.591994 -0.916284 -0.384275 -0.224558 0.497822 -0.456075 0.384414 0.644401 -0.496660 0.161394 1.653869 0.331391 0.278094 0.108922 0.965038 -0.045078 0.412748 -0.603186 1.458133 -0.222574 0.012174 -0.083136 -0.567654 0.371513 -0.328682 0.164998 0.889021 0.892150 0.128792 0.346560 0.855416 0.522740 -0.626207 0.848924 -0.029347 0.516607 -0.585050 0.024103 0.066737 0.390021 -0.361958 0.462650 -1.273941 -1.097474 -1.090811 -0.700689 -0.331917 0.623349 0.215184 -0.087377 -0.088941 -1.102286 -0.749262 0.946200 -0.600533 0.460481 0.485094 0.621189 0.982057 1.347205 -0.357016 -0.291606 -0.175888 -0.318534 -0.278246 -0.261286 -0.671407 1.010396 -0.722978 0.582624 0.944956 -0.141228 0.400579 0.100150 1.110336 -0.666449 1.464870 0.565041 -0.313904 0.801583 1.144716 1.442293 -0.079463 -0.706941 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.368314 -1.310201 1.972320 1.560780 0.003995 0.882440 0.303947 -1.017193 1.425894 0.721810 -0.512052 0.557896 -1.046970 0.196276 -0.510340 0.696814 -1.125021 -1.245890 -0.142806 -0.824245 -0.513102 -1.058079 -0.160922 0.570591 0.514166 0.067163 -0.754868 0.000196 -1.631325 -1.115717 0.653673 -0.343948 0.654897 -0.275961 0.442910 -2.635236 1.256536 1.298909 -0.341347 -1.807340 0.140780 -0.846892 -0.048099 -0.139898 -0.120782 0.418306 0.203179 0.612890 0.479696 0.322720 0.316629 0.239030 0.111428 2.557845 -0.563881 1.287385 0.898597 0.083453 -0.054717 0.469511 0.486180 0.152281 0.828890 0.806996 -0.375842 -0.785492 -0.181620 -0.295593 -1.120959 0.952396 0.095333 -0.607722 -0.859089 -0.497093 -1.215608 -0.439773 -1.274160 1.030838 2.070941 -1.136795 1.463895 0.634247 1.129563 0.098840 1.053408 -0.154383 1.664104 0.511546 -0.829898 -0.045476 -1.139579 -0.387304 0.066206 -0.088898 -0.866742 -1.321499 0.801231 -1.586970 -1.623052 0.826539 0.283095 -0.160760 -0.982940 -0.123995 0.884264 0.579094 -0.766627 -1.424971 -0.788020 0.789607 -0.221722 -0.641049 0.257937 -0.414842 -0.086798 -0.444869 -1.424123 -0.198383 0.711330 -0.808362 -0.553078 1.424884 -0.564439 0.353862 -0.179414 0.217535 -0.296674 1.059530 0.183245 0.785361 0.015244 -0.061824 -1.830983 0.479472 0.345731 0.587378 -0.337816 0.206870 0.025806 0.527871 -0.442622 0.458501 -0.675294 0.731640 0.948166 -0.374625 -0.896731 -0.996531 -0.040912 -1.344478 0.294335 -0.962061 -0.668048 0.232197 1.198264 1.210119 0.629240 1.444668 -1.170678 0.837572 -0.253947 0.184620 0.631412 -0.173031 0.604131 -0.727963 -1.127756 0.611551 0.817659 0.353665 0.427389 -0.596919 -0.011617 -0.905266 -0.651884 0.585875 0.651142 -0.006759 1.423816 0.890016 1.296055 -1.742753 0.338819 0.355701 -0.406705 0.276397 -0.271621 -1.664153 0.611122 0.399259 0.409448 1.380841 -0.232038 -0.568633 0.410056 -0.208724 0.426773 -0.943821 0.445487 -1.148380 -0.421663 -0.799637 0.298666 -0.826379 -0.482983 -0.762695 -0.548542 1.673854 -1.100916 -1.359774 1.478974 -0.415790 0.662729 -1.835715 1.034684 -0.795006 1.119432 -0.373484 0.019645 -0.282041 0.487278 -0.503827 0.229356 0.813926 -0.822757 0.731703 1.533899 0.352812 0.299588 0.360083 1.043231 -0.391642 0.222029 -0.848949 1.240930 -0.192560 -0.481624 -0.046431 -0.654272 0.523958 -0.194453 0.246952 0.859919 1.000809 0.190113 0.515790 1.091295 0.456673 -0.764052 0.757826 -0.149890 0.702138 -0.703001 -0.122406 -0.242066 0.257134 -0.313598 0.454372 -1.720944 -1.533146 -1.578136 -1.333437 -0.149609 -0.240248 0.194128 0.034820 -0.010441 -1.610685 -1.038508 0.955109 -0.566936 0.850033 0.743454 0.765238 1.179731 1.337618 -0.570228 -0.223486 -0.052942 -0.104195 -0.565861 -0.519644 -0.751994 1.030595 -0.881558 0.815068 1.291607 -0.261332 0.504617 0.240837 0.852225 -0.906215 1.858393 0.973323 -0.850108 0.606590 1.069798 1.878347 -0.230147 -1.003953 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.218478 -0.404421 0.333654 0.227742 -0.013551 0.191383 0.003816 0.074405 0.168943 0.030653 -0.279672 0.187840 -0.233518 -0.096473 0.103834 -0.012843 -0.142653 -0.313309 0.177629 0.093304 0.029220 -0.216995 -0.193204 0.269348 0.030473 0.295112 -0.077410 0.079451 -0.379280 -0.087123 0.042887 -0.091357 0.172813 0.345160 0.219322 -0.241826 0.059078 0.246296 0.037296 -0.472478 -0.058861 -0.101213 0.104244 -0.074920 0.072951 0.250996 0.259438 0.051251 -0.091875 0.018940 -0.171621 -0.275185 -0.068764 0.052817 0.130077 0.209773 0.334137 -0.023180 0.084442 -0.134843 0.164161 -0.163930 0.186370 0.190714 -0.260861 -0.014889 -0.071218 -0.116727 -0.197405 0.030427 0.058191 0.035134 -0.161212 -0.221817 -0.149368 -0.074715 -0.143167 0.144022 0.418446 -0.147395 0.436518 0.239540 0.457277 -0.002557 0.220206 -0.006842 0.157958 0.136116 -0.293983 0.138793 -0.279409 -0.217516 -0.094989 0.129119 -0.130051 0.239283 0.108881 -0.280051 -0.270494 0.191853 -0.070135 0.075032 -0.149167 0.210561 0.161908 0.268139 -0.113698 -0.214939 -0.085336 0.049276 -0.102866 -0.095219 -0.025613 0.148430 -0.145825 -0.128953 -0.222964 -0.096419 0.266909 -0.284086 0.130662 0.241231 -0.194987 0.281165 -0.059551 -0.106417 0.006511 0.307506 0.351538 -0.023088 -0.015940 -0.280253 -0.340471 0.035779 -0.010366 0.316799 -0.192416 -0.074292 0.219401 0.034452 0.139787 -0.113448 -0.123602 0.102662 0.261755 -0.079782 -0.175770 -0.372624 -0.184114 -0.252198 0.056891 -0.172897 0.143445 0.199617 0.181227 0.185831 0.007169 0.518831 -0.287821 0.127849 -0.092217 0.028207 -0.069519 0.219030 0.084485 -0.149525 -0.119525 0.186284 0.207561 0.019048 0.250457 -0.264963 0.072194 -0.139437 -0.157357 0.339123 0.134957 0.104238 0.289954 0.077836 -0.083429 -0.118048 -0.113955 -0.087890 0.060481 -0.034107 0.039233 -0.304765 0.245051 -0.023564 0.116117 0.139560 -0.029018 -0.057132 0.121369 -0.055654 0.038271 -0.203392 0.219210 -0.246642 0.066443 -0.159225 0.135168 -0.232601 -0.116190 -0.131678 0.019497 0.343222 0.072350 -0.250956 -0.028468 0.118889 0.306166 -0.284437 -0.152712 -0.139396 0.463947 -0.006682 -0.019745 -0.014287 -0.161344 0.201903 -0.192004 0.174172 -0.019063 0.002340 0.026426 0.042157 -0.128333 0.267453 0.087299 0.022702 -0.085772 -0.030736 -0.036545 0.005013 0.063651 0.108576 -0.084867 0.196691 0.129289 -0.146512 0.153999 0.237843 0.027494 0.154216 0.093497 -0.128046 -0.183874 -0.117530 0.028700 0.396507 -0.123754 -0.073896 -0.283575 0.249733 0.001015 -0.061304 -0.287045 -0.380848 -0.115790 -0.357103 -0.276749 0.004119 0.024572 0.148228 0.067226 -0.158964 -0.093125 0.131974 -0.058260 0.580381 -0.016757 0.109505 0.314159 0.119575 -0.165834 -0.290013 0.138222 0.026608 -0.212446 0.138832 -0.193566 0.050275 -0.201328 0.125471 0.256975 -0.127538 -0.024662 0.013340 0.324870 -0.186868 0.417084 0.273838 -0.393000 0.027585 0.067379 0.319785 -0.106208 -0.232574 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::push_back(int const&) = 2.598248 -3.759290 10.314078 9.348312 -1.169308 3.040957 -0.262357 -8.142395 6.025679 4.080736 -0.850307 2.884385 -3.709032 3.421018 -3.497737 6.898016 -6.850115 -3.323196 -3.776578 -5.663336 -4.089128 -3.373477 2.297611 0.731696 4.269431 2.244941 -4.956825 0.459613 -3.538864 -9.624269 2.317061 -0.609361 2.759143 -1.983567 1.477425 -11.155908 8.259713 6.422503 -2.569406 -6.649550 1.973473 -2.174174 -2.435801 -0.608486 -1.595902 1.634995 -2.290990 2.940485 3.810939 3.411575 3.041977 4.838455 4.407131 11.679007 -2.830499 5.851430 3.337078 1.039147 -0.661227 2.349274 2.107514 3.796310 2.248671 2.504179 1.815278 -6.117446 -2.089437 -0.664423 -4.108872 6.008728 -1.152540 -4.886753 -5.157143 -3.336336 -4.319641 -0.617650 -9.554778 5.848639 8.225704 -6.088948 3.175752 1.286073 0.370840 -0.160092 3.179167 -1.362439 6.938648 3.084659 -0.766732 -0.273705 0.160852 -2.685912 3.134105 -2.125222 -5.871193 -10.818214 4.461126 -8.193840 -7.336633 3.444914 4.177082 -2.679610 -3.116251 -2.984701 2.714751 0.897772 -2.859756 -5.270522 -1.260585 3.308277 2.122866 -3.553529 -0.517741 -1.473475 0.348263 2.053893 -7.964784 0.923932 1.442449 -1.693159 -1.996824 4.903840 1.350109 -1.102032 -1.651363 1.902071 -2.034425 5.185637 -2.103801 6.636846 -0.786961 5.862021 -3.144228 4.905717 3.598855 -3.247774 -1.449069 1.527066 -2.543809 2.803059 -4.041568 4.372163 -4.234402 3.153832 5.244933 -0.595637 -5.479548 -2.394276 -2.511339 -7.197981 1.658629 -4.467934 -5.232546 0.876949 5.257000 3.871474 4.054915 3.319731 -5.534491 0.910436 -0.133579 1.425504 4.699995 -1.458710 2.476496 -3.052448 -5.988138 4.067277 2.432014 1.393328 0.959976 -0.090753 0.294537 -3.561573 -1.094749 3.688363 2.592943 -1.675579 5.461007 4.522025 8.956886 -3.708939 2.048644 3.339826 -3.129877 1.637440 -1.502108 -7.519924 1.670108 1.625463 4.276651 7.636399 -1.082594 -0.970108 2.238597 -1.249588 2.038018 -3.592650 1.822429 -4.661049 -1.872688 -3.684945 1.610649 -1.158990 -0.818829 -2.299301 -2.671586 7.551516 -8.400843 -3.728689 9.661722 -3.534960 1.026799 -6.198116 6.823143 -3.006162 2.656245 -0.682152 -0.444029 0.119247 -0.278578 -5.694680 1.869896 3.518167 -2.473981 1.290421 8.106557 1.297318 0.102461 -0.853633 4.882868 -3.311884 4.667308 -4.451397 8.687483 -0.777446 -1.798877 -1.817011 -2.506034 -1.137012 -5.073332 1.397421 4.569376 1.735010 2.272123 1.036792 2.872720 5.721179 -4.187715 7.451904 -0.478475 -0.500747 -3.922827 -0.878976 2.682198 0.762857 -2.312350 3.719977 -7.231766 -5.371225 -10.339905 -3.852427 -0.261698 -1.322057 3.098460 -3.027804 -2.845875 -4.586325 -7.130173 8.350812 -2.690642 -0.773594 5.007797 3.349506 4.179771 6.847305 -1.287505 2.790139 -3.491235 -0.642590 0.549827 -3.431184 -2.539719 6.545953 -1.624823 1.200895 6.845636 -1.023873 4.370008 -0.055777 2.640650 -3.440594 6.622282 2.158822 -1.511411 3.733637 6.226611 6.431493 -0.318754 -4.273783 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.864117 -4.828959 11.823199 10.356386 -2.018664 3.762824 -0.442381 -8.727181 6.951198 3.394029 -1.537290 3.137457 -4.365345 3.484633 -4.382580 6.695917 -8.249144 -4.042591 -4.010005 -6.239863 -4.393534 -4.040347 1.516391 1.824055 4.438624 2.978214 -5.134473 0.901693 -4.580745 -9.045347 2.991161 -0.850505 2.945222 -1.736255 2.472211 -12.809149 8.949455 7.243877 -2.637695 -8.081747 1.748259 -3.080957 -2.457311 -1.424183 -2.127758 1.643232 -2.127278 4.394800 3.928902 3.088141 2.050904 4.902972 4.248328 13.873946 -2.911851 6.657098 4.201874 1.169161 -0.350778 2.499319 2.396786 3.797901 2.398417 2.740353 1.604734 -6.631086 -2.244607 -1.135175 -4.225787 6.617659 -0.937554 -5.071801 -5.887449 -3.880264 -6.081538 -0.891774 -11.560976 7.289639 9.658329 -7.470452 4.052358 1.796147 1.354702 0.334349 4.130139 -1.303723 8.363679 3.488933 -1.281589 0.210999 -1.183064 -2.866220 3.310438 -3.713026 -6.721914 -13.025949 5.050085 -10.699570 -8.435049 4.056779 4.323400 -3.033044 -2.445541 -3.272370 3.168934 1.097508 -3.613008 -6.022024 -1.268044 4.067060 2.223969 -3.786679 0.264396 -0.897424 0.942101 1.207677 -8.987412 1.116253 2.202648 -2.007966 -1.355461 6.166953 1.135007 -0.819346 -1.749723 1.754222 -2.115394 6.445933 -1.822911 6.700522 -1.469158 5.956585 -3.400785 5.826250 3.614464 -2.865042 -1.673238 1.880963 -1.861726 3.410257 -4.059976 4.196166 -4.846266 3.182340 4.405429 -0.977888 -5.939247 -3.441699 -3.326042 -7.919499 1.454827 -4.970184 -6.525750 1.664809 6.053384 5.759612 4.246271 3.686409 -6.158415 1.048949 -0.355254 1.690646 4.894992 -1.379630 2.773943 -3.524179 -6.607818 4.534577 2.317955 2.003109 1.266928 -0.730743 0.288934 -4.108206 -1.054973 4.182263 3.543324 -1.579832 6.972723 5.476423 7.906025 -4.890281 2.237438 3.336808 -3.721604 1.787739 -1.606797 -8.557379 2.276723 2.002843 4.587433 8.199470 -1.442135 -0.685218 2.633279 -1.431377 2.362241 -4.226655 1.499305 -5.365493 -2.635988 -4.510328 2.752898 -1.897137 -1.037228 -3.352600 -3.825148 8.689844 -10.449711 -4.097870 10.734979 -3.322622 2.159990 -6.735933 6.876353 -3.493782 4.236041 -0.087790 -0.379357 0.157763 -0.647264 -6.080541 1.847849 4.157552 -3.119224 1.383277 8.427348 1.545668 0.278753 -0.255213 5.780933 -4.029978 4.846528 -5.282776 9.091001 -0.905012 -2.345817 -1.616832 -2.985524 -0.959419 -5.083278 2.199357 5.605751 2.174797 3.372754 1.630868 3.696289 5.549111 -4.482989 7.336897 -1.066001 -0.455021 -4.756875 -0.921626 2.323206 1.179492 -2.337740 3.655271 -8.666451 -6.941572 -12.854732 -3.937107 -0.361233 -2.658825 2.942752 -2.922186 -2.936385 -5.644841 -8.135250 8.880622 -3.186864 -0.852425 5.628097 3.817174 5.136659 7.780598 -1.689134 2.619179 -2.543914 -0.221904 0.321076 -3.154164 -3.761090 7.353300 -2.481934 1.727999 8.487242 -1.382273 4.961698 0.344422 3.335149 -4.251979 7.798942 2.983467 -3.022938 3.644951 7.683114 7.022429 0.366208 -5.108504 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::size() const = 0.585102 -1.359354 2.933315 2.555776 -0.501565 1.222328 -0.516226 -1.833687 1.092541 1.056610 -0.370288 1.149007 -0.794177 0.614900 -0.695507 1.350612 -1.694900 -0.602429 -0.964225 -1.326981 -0.818464 -0.690480 -0.414301 0.994952 0.869387 0.847024 -1.120258 0.641081 -1.138965 -2.628753 0.051015 -0.023850 0.689661 -0.680174 1.121624 -2.520009 2.164469 2.059053 -0.421836 -2.120433 0.290671 -0.402435 -0.578860 0.052625 -0.664903 0.729625 -0.294798 0.493430 0.576045 0.860816 0.150288 1.043161 1.595141 2.753004 -0.036514 1.676637 1.384365 0.070162 0.410254 0.319509 0.352114 0.640009 0.282012 0.181110 0.516775 -1.499573 -0.530608 0.211381 -0.577760 1.112545 -0.251572 -1.591458 -1.198665 -1.286045 -1.622363 -0.196107 -2.838020 1.476276 2.060938 -1.521938 1.067546 0.502194 0.258951 0.542867 1.387379 -0.143657 1.651804 0.930334 -0.346199 0.713686 0.308899 -0.722201 0.950572 -0.671618 -1.960477 -2.893512 1.168933 -2.692615 -1.815841 1.492633 0.805948 -0.923229 -0.349907 -1.265824 0.468422 0.323242 -0.943937 -1.249155 -0.059329 1.318950 0.649819 -0.936985 0.099631 -0.119199 0.433186 0.635165 -1.825277 0.697449 1.015712 -0.241207 -0.189215 1.623884 0.744519 0.065855 -0.537638 0.414465 -0.597076 1.456585 -0.106727 1.580696 -1.144332 1.286921 -0.665252 1.450382 0.673288 -1.639032 -0.505853 0.225372 -0.146464 0.912791 -0.278959 1.541471 -1.202234 0.863729 1.044153 0.200161 -1.140762 -1.153961 -1.351341 -1.594865 0.138005 -0.803854 -2.006886 0.631605 1.307640 0.921189 0.680635 0.254845 -1.132001 -0.311223 -0.273517 0.304083 0.861279 -0.522583 0.439466 -0.808453 -1.425852 1.221450 0.717083 0.612859 0.562968 -0.269315 0.301685 -0.371462 0.295920 1.245753 0.857287 -0.349300 1.919660 1.523572 2.183349 -0.127076 -0.023564 0.325551 -1.176736 0.388401 -0.555983 -1.718148 0.220329 0.697504 0.923977 2.203691 -0.442592 0.112059 0.903020 -0.326517 0.493446 -0.905491 0.775608 -1.229590 -0.436016 -0.780602 0.389085 -0.614647 -0.163024 -1.231338 -1.072328 2.096649 -2.826076 -0.646759 2.069314 -0.527818 0.297488 -1.162006 1.408809 -0.708870 1.261944 0.456171 -0.185018 0.153277 -0.245980 -1.320422 0.385082 0.994475 -0.897224 0.127780 1.490095 0.287916 -0.298307 -0.035368 1.148994 -1.199097 0.831554 -1.446726 1.829018 -0.373256 -0.022402 -0.492147 -0.586217 -0.288197 -1.140482 0.306590 0.349510 0.009073 0.586797 -0.371722 0.904805 0.752108 -0.801047 1.512259 -0.380252 -0.179670 -1.354112 -0.323750 0.231378 0.616108 0.104174 0.590006 -2.165691 -0.878527 -3.351619 -0.446009 -0.332163 0.012482 0.523309 -0.313369 -0.828522 -1.170936 -2.120499 2.949498 -0.654996 -0.574329 1.385191 0.905725 1.297700 1.538049 0.264028 0.479029 -0.865002 -0.205484 0.118872 -0.342168 -0.657623 1.728713 -0.526022 0.303828 1.867384 -0.283691 1.438895 0.308796 0.253195 -1.224525 1.662569 0.728005 -0.903356 0.433357 2.107474 1.329115 -0.646280 -1.136467 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::max_size() const = -0.164721 -0.650105 1.140082 0.889873 -0.065289 0.492649 0.180554 -0.780042 1.033707 0.153616 -0.178458 0.030527 -0.735608 0.155692 -0.468093 0.314390 -0.706279 -0.715823 -0.280134 -0.684125 -0.394995 -0.704618 0.098874 0.202854 0.309517 0.127790 -0.414325 0.049271 -0.963388 -0.326104 0.725640 -0.161387 0.352592 0.006022 0.166075 -1.563563 0.767724 0.718408 -0.264768 -0.894249 0.078349 -0.568651 0.006645 -0.218305 -0.041734 0.114730 -0.088827 0.420939 0.479661 0.082659 0.273943 0.132651 -0.155484 1.559674 -0.599769 0.718210 0.348830 0.129734 -0.115994 0.416825 0.201600 0.255766 0.418672 0.512726 -0.261080 -0.501644 -0.014443 -0.354733 -0.768523 0.737632 -0.074329 -0.350408 -0.533218 -0.338713 -0.736177 -0.287714 -0.984815 0.636824 1.204455 -0.796002 0.755040 0.244872 0.520705 0.036376 0.528829 -0.101779 0.967491 0.222852 -0.442839 -0.003804 -0.713535 -0.028112 0.055728 -0.211799 -0.495523 -0.919349 0.555874 -0.963972 -0.976888 0.348577 0.257454 -0.050197 -0.579979 0.018404 0.388741 0.212195 -0.514855 -0.877670 -0.329243 0.498579 0.003453 -0.243136 0.161847 -0.198574 -0.069653 -0.503983 -0.906502 -0.128523 0.204741 -0.451903 -0.336245 0.888780 -0.456978 0.046358 -0.020915 0.164174 -0.243571 0.812023 -0.075624 0.419755 -0.057545 0.102033 -0.996002 0.154659 0.246854 0.655000 -0.127336 0.167249 -0.071856 0.234224 -0.504948 0.114219 -0.377625 0.175749 0.417958 -0.356134 -0.497931 -0.340444 -0.065756 -1.022358 0.129066 -0.627177 -0.408514 0.165550 0.706410 1.027635 0.438943 1.063031 -0.722856 0.393798 -0.161122 -0.060783 0.441730 0.074869 0.455849 -0.420300 -0.706060 0.294273 0.194611 0.190216 0.247817 -0.324232 -0.119044 -0.716506 -0.253750 0.268144 0.369322 -0.107466 0.741779 0.601970 0.418743 -1.216099 0.373941 0.359050 -0.225974 0.208025 -0.083641 -0.971995 0.377215 0.243492 0.101424 0.667357 -0.152044 -0.236776 0.155559 -0.246032 0.360805 -0.629035 0.039022 -0.629674 -0.320066 -0.681746 0.329213 -0.422558 -0.317482 -0.351079 -0.401771 0.907341 -0.682428 -0.658004 1.067942 0.004227 0.458483 -0.901591 0.518815 -0.453369 0.784264 -0.229837 0.052263 -0.146359 0.286004 -0.301725 0.118875 0.388225 -0.442690 0.403587 1.040129 0.242593 0.236165 0.163861 0.778939 -0.309671 0.265107 -0.536884 0.800664 -0.075987 -0.488902 0.150573 -0.454080 0.164338 -0.294769 0.238134 0.862812 0.776222 0.285453 0.430226 0.543626 0.410020 -0.376725 0.430955 -0.018051 0.273564 -0.406206 -0.032314 0.103847 0.194190 -0.297422 0.218442 -0.979839 -1.167390 -0.858551 -0.787377 0.054220 -0.388985 0.025555 -0.032895 -0.036906 -0.862690 -0.643595 0.466207 -0.446324 0.672840 0.324474 0.481005 0.639170 1.001804 -0.546328 0.000539 0.236027 0.094105 -0.262995 -0.255013 -0.615564 0.768228 -0.485609 0.350878 0.868679 -0.174167 0.326995 0.157843 0.586108 -0.577200 1.051160 0.461586 -0.392359 0.607997 0.646298 1.157931 0.353572 -0.520387 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.796507 -4.510927 9.459562 8.214862 -1.170116 4.033997 -1.598172 -6.084253 3.904942 4.447574 -1.660787 4.135592 -2.398848 1.688584 -2.058811 4.783818 -5.373432 -2.218929 -2.611906 -4.018734 -2.893741 -2.513419 -1.438549 3.130483 2.817106 2.608966 -3.789795 2.292247 -3.400187 -9.966656 -0.499054 -0.058114 2.104600 -2.888786 3.618739 -8.243300 7.302933 6.911997 -1.311117 -7.283336 0.744064 -0.937349 -2.397447 0.952334 -1.903970 2.511460 -0.661152 2.279834 1.402422 3.098224 0.923061 3.346512 5.464040 9.319958 0.524420 5.936150 5.032459 0.499293 1.118496 1.349218 1.653601 1.906975 1.303974 1.133220 1.642449 -4.481427 -1.405497 1.246593 -2.021543 3.714898 -0.349209 -5.782036 -3.648432 -4.240323 -4.751594 -0.438852 -7.950179 4.455355 7.113259 -4.581452 3.807200 2.281588 1.433343 1.430323 4.489435 -1.153037 6.201291 3.256868 -1.554827 1.608216 0.696141 -3.130352 3.072796 -1.778862 -6.420654 -9.093505 3.599708 -9.110444 -6.372282 4.820682 2.601680 -2.988489 -1.543174 -3.879879 2.645424 0.838462 -2.588391 -4.157067 -0.799468 4.102394 0.822088 -3.402106 -0.035371 -0.424314 1.396900 3.462547 -6.160216 1.749579 3.738278 -1.035290 -0.874725 5.028224 2.553243 0.678880 -2.007611 1.158109 -1.318977 3.787860 -0.052273 5.247560 -3.154251 4.353700 -1.967792 5.270987 1.915821 -6.569226 -1.630945 0.736107 -0.022847 3.241598 -0.851807 5.714819 -4.963779 3.379683 3.777186 1.030180 -4.054921 -4.206104 -4.330080 -4.974689 1.006632 -2.743605 -6.863219 1.079423 4.450446 2.312979 1.983015 0.391020 -4.100973 -0.410564 -0.663971 1.925186 2.456595 -2.381014 1.367357 -2.768057 -4.809797 4.107188 3.336748 1.720733 1.675143 -1.173800 0.913124 -1.160019 -0.049581 4.097778 2.455105 -0.718355 6.149637 4.544513 9.099887 -0.760973 -0.006621 0.886750 -3.380182 1.270119 -1.964518 -6.045891 0.654093 2.013192 4.572343 8.081315 -1.173310 0.052627 2.661526 -0.501865 1.293311 -3.003466 3.153840 -4.333072 -1.265435 -1.838483 1.367503 -2.208544 -0.293572 -4.023727 -3.091761 7.025699 -8.943841 -3.194851 7.150182 -2.604316 1.127707 -4.442208 4.630120 -2.342937 3.747207 1.147991 -0.652093 0.445944 -1.306287 -4.141755 1.610248 3.320583 -2.727700 0.840225 4.724119 0.676939 -0.552241 0.007298 3.144087 -3.904193 2.329250 -4.759616 6.175002 -1.026946 -0.193888 -2.379773 -1.943823 -0.315244 -3.425639 0.577251 0.364022 0.162832 1.026870 -1.317420 2.910190 2.212046 -3.275469 5.574401 -0.765046 -0.457328 -4.326602 -1.173275 0.465496 1.321161 0.026757 2.486765 -7.097992 -2.287809 -10.902084 -2.229711 -1.676047 0.287873 2.347013 -1.122333 -2.586494 -3.809992 -6.788744 10.424560 -1.796824 -1.673759 4.805933 3.365811 4.356116 4.858520 1.172796 1.636024 -3.664673 -1.431427 -0.357899 -2.045651 -1.525011 5.419057 -1.215232 1.718127 5.620872 -0.646546 4.455035 0.331641 0.416504 -3.738564 5.285150 2.659958 -2.878200 0.670266 6.183544 5.123516 -3.357610 -4.101984 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.689538 -4.176894 5.770710 5.159977 -0.048103 3.788901 -0.654642 -2.335769 0.462580 2.992765 -0.258955 3.658298 -2.159600 0.311851 -0.130732 1.192293 -1.880166 -1.330784 -1.580593 -1.640367 -0.076107 -1.398396 -2.408804 4.511852 1.162801 0.278023 -2.295375 1.083195 -4.785411 -5.440817 -0.747615 0.229542 2.596006 -2.564054 2.451633 -5.691047 3.965130 5.509671 -0.053001 -5.230899 0.872559 -0.579486 -0.954341 1.111109 -2.617494 1.988260 0.327546 -1.856341 0.189085 1.452450 -0.581094 1.560429 3.808417 4.396281 0.806482 3.836778 3.637810 -0.603096 1.782066 -0.422648 -0.096104 0.419388 1.119173 -0.192397 0.237068 -2.363563 -0.389948 1.687919 -1.981630 0.771687 -0.187517 -2.992533 -1.339780 -1.988050 -4.185920 -0.420614 0.860462 1.716030 4.101002 -1.423973 3.788322 0.746419 0.431002 1.656058 3.889719 0.464199 1.757628 1.820307 -1.200419 1.793731 -0.348780 -0.524566 1.138569 1.466313 -4.249168 -3.306378 2.246381 -4.149036 -3.342171 3.927306 0.086786 -2.432977 -2.158000 -3.766801 0.472125 1.930638 -2.226811 -3.017204 -1.168324 4.108271 1.039947 -2.484101 0.354627 -0.653199 0.564186 0.007003 -2.251052 1.595759 3.416900 -1.050597 -1.269796 3.909330 0.380271 1.795978 -1.005678 1.406075 -1.631487 1.586126 0.933938 2.539255 -2.221798 -0.329597 -1.476724 -0.143725 0.285597 -1.817103 -1.499819 -1.021756 0.013681 2.000319 2.019515 3.968141 -0.913974 2.118683 2.431451 1.166894 -0.892807 -3.097495 -2.039036 -2.816544 -0.645554 -1.013259 -3.804546 2.679972 2.512741 -0.700595 0.383792 1.331387 -1.207175 -0.056605 -0.493029 -0.662934 1.065857 -2.074682 0.257956 -1.643807 -3.409281 2.570672 2.140501 2.046291 1.194287 -0.482512 0.634436 0.641237 0.099304 1.723762 1.300515 -0.236622 4.455205 3.316647 5.830387 0.705290 -1.016274 -0.695634 -3.067482 1.101432 -1.925922 -3.308227 -0.528263 2.082278 -0.696419 5.740391 -1.251271 -1.405374 3.160115 -0.443900 0.765754 -2.310317 3.883586 -2.946252 0.166449 -1.557734 -2.487431 -1.417965 -1.079362 -4.227220 -1.881340 4.680123 -5.062567 -2.627609 2.039119 0.495391 0.179996 -4.185993 2.654592 -1.340881 3.343954 1.483715 -0.666116 0.377253 0.903309 -2.080950 0.361382 2.161261 -3.184171 1.410885 2.813360 0.412841 -1.332039 0.124086 1.638822 -1.448558 0.033708 -3.776429 2.646404 -1.025156 0.490873 -0.982809 -1.238547 0.660314 -1.467809 -0.248938 -2.436732 0.314364 -0.032892 -2.083186 3.235628 -0.119489 -0.478026 1.947753 -1.062042 0.811665 -2.357538 -0.485635 -1.290774 2.596674 2.182842 1.692317 -4.902352 -1.199664 -5.231102 -2.341973 -0.560436 2.306983 0.597575 1.092115 -1.145818 -4.056462 -4.129722 5.335400 -1.143723 1.473320 3.262489 2.237368 2.902030 2.130809 1.223900 -0.059757 -1.493501 -0.050123 -0.607914 -0.093305 -0.571269 2.547743 -1.470155 1.498820 2.955682 -0.156533 3.291014 0.090295 -0.640423 -3.325288 4.537854 2.237687 -2.437683 0.570852 3.079499 2.184362 -3.477099 -2.028827 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.685790 -1.190648 2.165852 1.621221 0.354244 0.873517 0.945493 -1.415804 2.186204 1.355817 -0.223593 -0.336300 -1.486394 0.087313 -0.324658 0.870964 -1.072410 -1.415127 -0.316788 -1.312204 -0.508945 -1.593366 0.650730 -0.153851 0.593807 -0.552835 -0.675200 -0.393974 -1.459188 -1.414530 1.693657 -0.461342 0.895332 -0.376155 -0.281987 -3.800919 1.693832 1.171244 -0.636843 -1.606315 0.243399 -0.573358 -0.175388 0.283014 -0.072640 0.301230 -0.021594 0.766653 0.915062 0.523105 1.186599 -0.121210 0.011104 3.384079 -1.413203 1.319523 0.411458 0.090441 -0.313444 1.232221 0.384337 0.481915 1.017250 1.510242 -0.135491 -0.716580 0.410846 -0.562143 -2.216428 1.557878 -0.165922 -0.644677 -0.705870 -0.187320 -0.719359 -0.388973 -1.116479 0.942003 2.537458 -1.001131 1.770549 0.611811 0.913408 -0.224184 0.424736 -0.192292 1.619424 0.339229 -0.944840 -0.587587 -1.280593 -0.319385 0.034454 0.143866 -0.547917 -1.353225 1.073702 -0.514177 -1.584082 0.664469 0.432391 0.025107 -1.818163 -0.154071 0.946531 0.532054 -0.830996 -1.825349 -1.417764 0.832819 -0.596263 -0.359454 0.150823 -0.707089 -0.505298 -0.701376 -1.474568 -0.694477 0.066463 -1.146832 -1.277849 1.439725 -1.147413 0.163980 0.169659 0.646666 -0.455273 0.883362 -0.004120 1.199829 0.821345 -0.008680 -2.453391 -0.247475 0.684590 1.565006 0.463115 0.057688 -0.433882 0.483829 -1.064075 0.641223 -0.306298 0.406709 1.591763 -0.641824 -0.813114 -0.457300 0.779836 -1.932077 0.490200 -1.448989 -0.296362 0.183392 1.394764 1.324436 0.926215 2.252901 -1.959721 1.451565 -0.595068 -0.140853 0.521606 -0.026959 0.798825 -0.624095 -1.350619 -0.013529 0.988003 0.307122 0.289653 -0.956496 -0.387048 -1.421143 -0.915195 0.164485 0.325991 -0.556210 0.701941 0.999695 2.396040 -2.751377 0.756221 1.005123 -0.225457 0.272670 -0.033638 -2.138134 0.637074 0.370178 -0.035191 1.278849 -0.182883 -0.941782 0.263304 -0.691981 0.268952 -1.052914 0.303776 -1.216388 -0.451391 -1.098487 0.085832 -0.979707 -0.770036 -0.336378 0.044166 1.575385 -0.584545 -1.667977 2.096734 -0.486038 0.128449 -2.202075 2.125754 -0.828563 0.657238 -1.044588 -0.100588 -0.694505 1.324877 -0.405664 0.135962 0.512949 -0.813074 1.447547 2.736125 0.527546 0.546230 0.190129 1.566768 -0.333366 0.169467 -1.052224 1.515061 -0.282749 -0.959711 -0.111870 -0.900301 0.761030 -0.592337 0.258829 1.184954 1.736794 -0.349461 0.912233 1.079799 0.822171 -0.560570 1.228560 0.360734 1.025288 -0.435459 0.177679 0.225810 0.096100 -1.010888 1.019473 -1.798038 -1.865099 -0.805238 -1.848655 -0.221595 -0.077268 0.344385 -0.075455 0.314957 -2.003722 -0.948595 0.617669 -0.752739 0.966247 0.700550 0.931800 1.056433 1.944935 -0.929363 -0.130757 0.007426 -0.016908 -0.878492 -1.075832 -0.598570 1.315386 -0.970836 0.852806 1.104769 -0.111747 0.297107 -0.098606 1.077442 -1.180052 2.148019 1.048170 -0.004098 1.306496 0.653055 2.740657 0.224016 -0.812774 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.388837 -12.794543 29.865205 25.634512 -4.810824 11.173724 -4.259633 -20.905447 14.237460 12.614031 -4.615283 11.484353 -7.857382 6.539700 -7.483233 16.587771 -18.649420 -7.620415 -8.665144 -14.511454 -11.183654 -8.385933 -1.359786 7.267732 9.624219 9.171936 -12.818800 5.369026 -8.897327 -30.088437 1.217487 -0.569465 6.989738 -7.146907 9.458264 -30.699458 22.727189 20.046016 -5.402586 -21.596207 3.163888 -3.726556 -7.187478 2.050717 -6.583068 6.356435 -3.885167 8.130085 6.196664 9.160032 5.119766 11.842658 15.516872 32.436428 -0.849332 18.046518 13.688406 1.847138 0.793246 5.115225 6.230653 7.467617 5.381039 4.931315 5.102561 -15.322786 -4.654759 1.709199 -8.273840 13.745112 -1.057938 -17.942934 -12.037666 -13.009386 -13.286724 -2.318078 -25.765817 15.258240 22.648667 -15.713391 10.893424 6.392006 3.831151 2.606252 12.631368 -4.426246 21.407429 9.703071 -3.927073 3.134888 2.618861 -9.366779 9.860390 -5.683685 -19.233109 -30.059267 11.910999 -27.498708 -20.985897 13.560001 10.319421 -8.601422 -6.824735 -11.065651 9.201566 2.135470 -8.251338 -13.660752 -3.734351 11.844679 2.531723 -10.465813 -1.481234 -1.918307 3.610642 10.097935 -20.829689 4.843859 9.556527 -3.242852 -3.600651 15.360217 7.160428 0.198870 -5.718477 4.248225 -4.455593 13.239183 -2.105111 16.785592 -8.299796 15.492044 -6.012108 16.451494 6.907725 -17.753275 -4.785391 1.239330 -2.088138 9.641150 -5.996887 16.064612 -15.365754 10.704582 14.224927 2.364755 -14.303741 -11.560365 -12.030894 -18.482004 3.568840 -10.380449 -19.560186 3.390208 14.162077 9.517257 7.821746 2.719677 -14.068740 1.086687 -1.503322 5.912852 9.563110 -5.753182 5.559289 -9.048682 -15.631699 12.128201 9.272438 5.569081 4.219574 -3.049313 1.765377 -5.675308 -2.261829 12.802451 8.487567 -1.671935 17.732167 14.066232 30.639207 -6.129950 1.816760 4.656148 -10.043406 3.866675 -5.445965 -19.936312 2.472224 5.897162 13.975641 25.031087 -3.593638 -0.192650 6.915143 -1.768757 4.710707 -9.935924 8.554040 -13.621787 -4.146079 -6.971364 4.408441 -6.883891 -0.562310 -11.193793 -10.191111 22.407143 -28.859242 -11.092362 25.688718 -9.875121 4.412824 -15.503718 15.890362 -7.567075 10.701982 0.303875 -2.255410 0.389056 -4.346313 -13.913777 6.561442 10.084763 -7.697482 2.062960 18.338264 2.537142 -0.253498 -0.873428 11.378602 -11.410884 9.787212 -14.241256 22.225644 -2.755203 -2.089464 -6.920084 -6.275898 -2.153044 -11.572895 2.990760 5.458581 2.286330 4.361027 -2.044552 8.936562 9.752791 -11.602670 19.028964 -1.819261 -1.698853 -12.676094 -3.712331 3.700615 3.941136 -2.758725 7.825702 -21.981436 -9.984024 -34.274677 -8.608743 -4.393786 -0.565409 8.102937 -5.354676 -8.401692 -11.798756 -20.774741 31.295252 -6.248004 -3.039765 14.623249 10.572133 13.988035 17.483900 1.057397 6.144253 -11.095051 -4.519997 -0.414746 -7.599834 -6.445658 17.883646 -3.469313 5.541351 18.536201 -2.183451 13.597496 1.091984 3.815108 -10.975196 17.291389 7.587021 -8.009688 4.422564 18.492578 16.734356 -7.558354 -13.150412 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy(int**, int**, int**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy_backward(int**, int**, int**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__miter_base(int**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.216889 -0.266459 0.395803 0.358802 0.113353 0.124916 0.245948 -0.174661 0.469585 0.329413 -0.007362 -0.032471 -0.401040 0.090013 0.115063 0.290524 -0.196848 -0.331630 0.027113 -0.200139 -0.128038 -0.330870 0.165481 -0.106598 0.150359 -0.107711 -0.137837 -0.168707 -0.356358 -0.158032 0.290792 -0.185617 0.213712 0.088776 -0.043321 -0.702062 0.261666 0.145042 -0.145935 -0.324930 0.068807 -0.258085 0.239958 -0.072157 0.163421 0.120623 0.114283 0.071114 0.303339 0.131296 0.287338 -0.121985 -0.030490 0.555408 -0.395300 0.218027 0.043743 -0.055105 -0.123191 0.127063 0.076943 -0.007923 0.280317 0.287755 -0.196732 -0.193710 -0.079493 -0.219865 -0.473803 0.243908 -0.030907 0.036258 -0.336534 -0.063083 -0.038942 -0.199795 -0.676753 0.197781 0.544326 -0.285583 0.383646 0.152019 0.268294 0.001952 0.195213 0.037562 0.294699 0.022421 -0.294056 0.011327 -0.200821 -0.072924 -0.024529 0.094550 0.022512 -0.128327 0.112014 0.162297 -0.352471 0.176669 0.028961 0.169857 -0.442496 0.072874 0.169694 0.238159 -0.255216 -0.464516 -0.234132 0.024126 -0.010357 -0.087593 0.024672 -0.299998 -0.227258 -0.320474 -0.343451 -0.193706 -0.016508 -0.325417 -0.278200 0.334512 -0.299204 0.071418 0.048823 0.086933 -0.119701 0.385644 0.071677 0.245280 0.189724 -0.164565 -0.808130 -0.016216 0.186422 0.517857 0.047057 0.096815 -0.174283 -0.009022 -0.269278 0.011859 0.148086 0.219611 0.447816 -0.194995 -0.199626 -0.079910 0.190318 -0.396993 0.232127 -0.294806 0.257395 -0.013431 0.286884 0.249883 0.268839 0.600635 -0.377012 0.270257 -0.180719 -0.050241 0.267341 0.248729 0.269126 -0.163710 -0.187158 0.028721 0.268726 -0.047430 0.144729 -0.181513 0.009020 -0.336900 -0.070138 0.030282 0.083114 -0.156346 0.217679 0.111036 0.453879 -0.472448 0.147832 0.227368 0.070123 0.064001 0.009635 -0.384964 0.263986 0.048628 -0.160819 0.076910 -0.038292 -0.271402 0.056405 -0.160563 0.133449 -0.213268 0.019920 -0.220722 -0.107197 -0.261829 0.103177 -0.197172 -0.249392 0.038858 0.171940 0.353763 0.152851 -0.182399 0.246892 -0.116255 0.064242 -0.399758 0.631279 -0.239453 0.106469 -0.377915 -0.070115 -0.129647 0.411151 0.018980 -0.030555 0.165898 -0.077239 0.173204 0.496971 0.165358 0.094412 0.114861 0.339207 0.085525 0.048982 -0.029303 0.325288 -0.067848 0.012571 0.122012 -0.172845 0.197385 0.014790 -0.036545 0.399399 0.403974 -0.088995 0.245487 0.179694 0.199252 -0.154400 0.178474 0.025816 0.378240 -0.117683 0.043544 -0.025753 0.044870 -0.168403 0.133783 -0.341205 -0.382094 0.154007 -0.229562 -0.076458 0.229987 -0.023723 0.042852 0.124349 -0.381034 -0.094659 0.022612 -0.191255 0.188176 -0.014701 0.111683 0.259365 0.390275 -0.190001 -0.239648 -0.002498 -0.080009 -0.127920 -0.068424 -0.147443 0.223762 -0.365918 0.132946 0.165409 -0.101269 -0.077372 0.040507 0.414465 -0.209244 0.484187 0.195786 0.028391 0.414686 0.305020 0.665044 0.015395 -0.157214 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_base(int**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.600533 -1.041844 1.619427 1.378216 0.272507 0.824195 0.348432 -0.969565 1.237401 0.824992 -0.097873 0.440667 -1.041300 0.234132 -0.205923 0.650773 -0.779620 -1.056540 -0.228010 -0.821215 -0.429342 -0.965398 0.074700 0.386226 0.440356 -0.250667 -0.766871 -0.077036 -1.603033 -1.143458 0.696661 -0.314285 0.750462 -0.395423 0.127330 -2.621557 1.210629 1.137690 -0.347127 -1.394591 0.259019 -0.779689 0.106371 -0.022152 -0.119568 0.375091 0.097134 -0.054510 0.690456 0.322989 0.587278 0.253894 0.071668 2.066610 -0.834538 1.101037 0.550737 -0.078823 -0.202771 0.430875 0.209935 0.203810 0.878244 0.731327 -0.495081 -0.764550 -0.009124 -0.210427 -1.337781 0.839785 -0.013782 -0.506149 -0.676640 -0.271593 -0.959093 -0.485960 -0.277710 0.616621 1.775421 -0.746316 1.313062 0.303794 0.730842 0.109496 0.998606 -0.045259 1.304664 0.330009 -0.795121 -0.079795 -0.875931 -0.099307 0.007694 0.551060 -0.581196 -0.736472 0.583724 -0.866924 -1.355223 0.707489 0.165430 -0.031934 -1.519198 -0.304246 0.737274 0.565348 -0.725766 -1.431942 -0.780584 0.742669 -0.177944 -0.582476 0.115169 -0.785590 -0.314953 -0.590908 -1.144516 -0.258714 0.451873 -0.750119 -0.949387 1.299483 -0.721874 0.232589 -0.095633 0.433281 -0.473226 0.811847 -0.071659 0.766555 0.150398 -0.288901 -1.836737 -0.212697 0.288959 0.880497 -0.271666 -0.064174 -0.364144 0.322380 -0.555130 0.486022 -0.252503 0.719263 1.224016 -0.274696 -0.640699 -0.540598 0.282768 -1.408026 0.284458 -0.847252 -0.359021 0.176949 1.059271 0.645336 0.687662 1.521575 -0.881449 0.838324 -0.281706 -0.121386 0.831636 -0.182395 0.636238 -0.649011 -1.029228 0.492739 0.691402 0.269530 0.353213 -0.414711 -0.048423 -0.801910 -0.616477 0.285439 0.393846 -0.044838 1.061487 0.723096 1.753884 -1.558723 0.402491 0.444284 -0.320849 0.359752 -0.292614 -1.328025 0.374052 0.454921 -0.143166 1.310058 -0.209046 -0.910854 0.316269 -0.131975 0.484701 -0.898665 0.527041 -0.970127 -0.156025 -0.750132 -0.304326 -0.639017 -0.596633 -0.635652 -0.295261 1.426601 -0.614980 -1.339731 1.270851 -0.297445 0.461088 -1.908107 1.123138 -0.765176 0.862263 -0.630826 -0.015004 -0.277317 0.845053 -0.487015 0.365510 0.654365 -0.814249 0.824125 1.605596 0.387941 0.354190 0.111475 0.938577 -0.094589 0.174608 -0.714513 1.243209 -0.217186 -0.331677 0.021785 -0.617787 0.484166 -0.236346 0.098818 0.485949 1.081029 -0.080485 0.339442 1.092934 0.528264 -0.541642 0.734585 -0.082111 0.671883 -0.478785 -0.083351 -0.082688 0.334054 -0.145825 0.541221 -1.456299 -1.280974 -0.790929 -1.401241 0.026195 0.395973 0.070620 0.159479 0.090045 -1.550323 -0.730583 0.763019 -0.530834 1.233923 0.573062 0.702596 0.916894 1.246004 -0.532897 -0.317028 -0.171861 -0.144957 -0.506149 -0.455557 -0.607933 0.972991 -0.782057 0.717088 0.879677 -0.201940 0.366110 0.139859 0.700485 -0.816486 1.692227 0.748005 -0.360787 0.901222 0.718540 1.786064 -0.230132 -0.709979 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.387749 -2.830341 3.437951 2.989720 1.054548 2.502771 0.428061 -1.737552 1.994820 2.561661 -0.781074 1.714182 -1.936048 -0.015437 -0.404853 0.966785 -1.069674 -2.179832 -0.046583 -1.051753 -0.247515 -2.099729 -0.914266 1.817814 0.592626 -0.462791 -1.425731 0.472712 -4.023316 -3.881001 0.419131 -0.453275 1.523534 -1.308139 0.793483 -4.193807 2.757834 3.260757 -0.292282 -3.718997 0.287465 -1.228927 -0.460464 0.950746 -0.089163 1.542769 0.738089 -0.312462 0.577840 1.032793 0.859848 0.208288 0.980983 3.287686 -0.558443 2.904885 2.012975 -0.107171 0.502293 0.828151 0.339066 0.069805 1.747007 1.570387 -1.006560 -1.047064 0.158903 0.641621 -2.445738 1.295469 -0.049696 -1.540252 -1.030660 -0.613771 -2.319734 -0.551378 0.455631 0.776670 3.923093 -0.738261 3.491029 1.060093 2.009712 0.225836 2.675305 -0.222570 2.600210 1.072201 -2.131711 -0.000464 -2.034820 -0.676603 -0.082439 1.636607 -1.820255 -0.663668 1.121304 -2.764050 -2.834291 2.012393 -0.335948 -0.499620 -2.807065 -0.750611 1.822378 1.267579 -1.296142 -2.986843 -1.572940 2.154787 -1.019851 -1.585795 0.300082 -1.355503 -0.419769 -0.184829 -1.932689 -0.542632 1.956727 -1.747634 -1.841424 2.866977 -0.804076 1.275978 -0.506167 0.684790 -0.635059 0.862693 0.439333 1.569074 0.082674 -0.979631 -3.764813 0.069747 0.234173 0.060557 -1.012436 -0.151998 0.180677 1.058194 0.001532 1.901883 -1.409834 1.636451 2.603038 -0.061355 -1.058615 -1.915866 0.308612 -2.275786 0.435339 -1.419855 -1.701201 -0.003592 2.354559 0.324189 0.921366 2.512839 -1.744781 1.337177 -0.556726 0.205015 0.972120 -1.197044 0.839838 -1.380293 -2.366403 1.480603 2.269941 0.509939 0.968731 -1.149870 0.021150 -0.928888 -1.344066 1.223838 0.656850 0.248702 2.844945 1.588133 4.040474 -2.262296 0.231799 0.181962 -0.915273 0.791330 -1.010555 -2.941728 0.679820 1.084144 0.661145 3.606004 -0.462979 -1.737975 1.044984 0.099487 0.744418 -2.016401 2.069713 -2.441320 -0.070683 -1.008320 -1.059365 -1.382750 -1.337908 -1.920117 -0.522487 3.120854 -1.184863 -3.177968 2.094293 -0.849620 0.659644 -4.156625 1.352500 -1.634279 1.904802 -0.407949 0.063399 -0.484897 1.482523 -0.716775 0.508464 1.574015 -2.171788 2.445416 2.551073 0.538284 0.363977 0.585134 1.322787 -0.518651 -0.693852 -1.980961 1.950209 -0.451639 -0.251271 -0.453120 -1.362824 1.557376 -0.267429 -0.348303 -0.485449 1.891806 -0.970915 -0.093498 2.552451 0.137811 -1.034062 1.428750 -0.256381 1.481213 -1.259119 -0.416312 -1.078382 0.480449 0.474308 1.265427 -3.381097 -1.835429 -2.166972 -3.222100 -0.422534 1.020178 0.504124 0.966949 0.350243 -3.597186 -1.831468 2.599414 -0.835913 2.400840 1.644838 1.783701 1.983429 1.985008 -0.202787 -0.708741 -1.123648 -0.451944 -1.797959 -1.042331 -0.516172 1.706456 -1.330383 2.030457 1.444460 -0.204508 0.984551 0.131883 0.642046 -1.956640 3.468964 2.116024 -1.116894 0.902719 1.026921 3.602255 -1.947186 -1.663723 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.340255 -0.382649 0.604634 0.544547 0.183334 0.236679 0.296519 -0.364610 0.683350 0.509635 0.056782 0.020530 -0.522626 0.158155 0.072919 0.426760 -0.278970 -0.479441 -0.050081 -0.380909 -0.267505 -0.471550 0.193627 -0.113831 0.194867 -0.268710 -0.301676 -0.188569 -0.557367 -0.372756 0.402672 -0.219470 0.315120 -0.137270 -0.066269 -1.254217 0.453251 0.285612 -0.217806 -0.486426 0.096133 -0.365485 0.258373 -0.041080 0.100314 0.112877 0.068097 -0.015631 0.431051 0.166382 0.471358 0.009723 -0.049656 1.023234 -0.575972 0.382793 0.085176 -0.053051 -0.211805 0.245416 0.117068 0.068975 0.431050 0.400009 -0.235788 -0.312479 -0.052295 -0.227971 -0.693098 0.402077 -0.025090 -0.099500 -0.397362 -0.089969 -0.180453 -0.310758 -0.635170 0.256647 0.791343 -0.405012 0.531029 0.173461 0.353155 0.055108 0.352551 0.003844 0.562426 0.054474 -0.401403 -0.028889 -0.254238 -0.024938 -0.020728 0.238561 -0.051982 -0.289366 0.203531 0.096961 -0.556464 0.296395 0.078792 0.200798 -0.793983 -0.058538 0.312019 0.282576 -0.374943 -0.695623 -0.450012 0.154786 -0.035827 -0.187219 0.059578 -0.513654 -0.249921 -0.390890 -0.512688 -0.251143 0.033461 -0.415466 -0.536697 0.531272 -0.432402 0.060374 0.035358 0.182432 -0.209024 0.454388 -0.005632 0.401000 0.188155 -0.163670 -1.166914 -0.119471 0.215683 0.639846 0.062993 0.073775 -0.290614 0.042818 -0.404953 0.145592 0.112344 0.349773 0.674349 -0.187702 -0.304563 -0.123347 0.322151 -0.622031 0.274951 -0.440320 0.184271 -0.013400 0.442335 0.354647 0.376318 0.794309 -0.488294 0.475365 -0.224507 -0.077311 0.424808 0.128502 0.361972 -0.254280 -0.369988 0.067681 0.384793 0.005128 0.177176 -0.250614 -0.024243 -0.439870 -0.207137 -0.001388 0.138030 -0.171026 0.325690 0.208060 0.913616 -0.832615 0.258876 0.305855 0.016902 0.147802 -0.083378 -0.570798 0.251226 0.139024 -0.234100 0.302668 -0.076387 -0.464610 0.070312 -0.172776 0.224910 -0.326693 0.092331 -0.352961 -0.138562 -0.357501 -0.012488 -0.300999 -0.291140 -0.047272 0.100874 0.556584 -0.008744 -0.436360 0.523408 -0.184858 0.098791 -0.735891 0.877385 -0.327805 0.191825 -0.557119 -0.064676 -0.205600 0.647839 -0.085273 0.124445 0.260489 -0.240278 0.291899 0.837639 0.206015 0.227334 0.077740 0.488944 0.092808 0.074241 -0.148882 0.599879 -0.104865 -0.079458 0.083017 -0.274983 0.281976 -0.040020 0.019049 0.409942 0.578884 -0.144789 0.253982 0.395200 0.298714 -0.235927 0.339178 0.027718 0.431813 -0.173087 0.068349 0.000529 0.065711 -0.229948 0.219791 -0.526710 -0.505961 0.023059 -0.437420 -0.031503 0.375389 -0.047989 0.029217 0.114590 -0.618627 -0.183098 0.168627 -0.283437 0.342963 0.081672 0.238788 0.386249 0.617825 -0.272710 -0.252675 -0.076537 -0.186529 -0.197533 -0.200425 -0.207666 0.382776 -0.459919 0.260647 0.239912 -0.084395 -0.006389 0.125511 0.448602 -0.292170 0.728363 0.290638 0.059894 0.556276 0.420719 0.988053 -0.042616 -0.249778 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.597181 -1.146650 1.746159 1.506355 0.241895 0.893340 0.375586 -1.019144 1.274986 0.909717 -0.088491 0.516690 -1.098944 0.179460 -0.144874 0.692699 -0.839574 -1.078277 -0.248059 -0.852658 -0.425327 -0.997377 -0.002008 0.509052 0.473445 -0.207935 -0.792869 -0.059672 -1.654869 -1.294377 0.631837 -0.303629 0.809109 -0.412161 0.220568 -2.734624 1.305478 1.289456 -0.352821 -1.532089 0.256723 -0.765818 0.111765 -0.016040 -0.196362 0.442643 0.120080 -0.044211 0.666565 0.365272 0.543403 0.283064 0.222985 2.137264 -0.748309 1.199830 0.673460 -0.076860 -0.156784 0.400609 0.245697 0.195113 0.906930 0.688980 -0.477859 -0.805047 -0.056766 -0.165983 -1.384603 0.840180 0.016760 -0.589487 -0.745759 -0.339900 -1.102240 -0.519679 -0.339347 0.660534 1.874045 -0.825361 1.404468 0.392689 0.745113 0.159297 1.087188 -0.044429 1.368428 0.381031 -0.816821 0.036567 -0.912139 -0.223825 0.056001 0.494362 -0.692829 -0.936787 0.625841 -1.035509 -1.474868 0.818252 0.186636 -0.087598 -1.560195 -0.427767 0.773982 0.617042 -0.787555 -1.497488 -0.804339 0.807600 -0.180784 -0.640879 0.139057 -0.720349 -0.266620 -0.543218 -1.229742 -0.215275 0.562059 -0.767361 -0.916559 1.383862 -0.690643 0.315482 -0.129116 0.424818 -0.494414 0.853200 -0.025048 0.825196 0.099360 -0.280487 -1.794683 -0.227547 0.268023 0.789457 -0.258368 -0.112282 -0.335102 0.401965 -0.479598 0.634182 -0.252220 0.766730 1.240116 -0.214142 -0.645450 -0.651483 0.136302 -1.460521 0.322553 -0.840018 -0.417429 0.255251 1.117251 0.587891 0.676226 1.459325 -0.887996 0.778765 -0.305281 -0.098791 0.834741 -0.201223 0.653233 -0.660592 -1.094198 0.566565 0.765262 0.379454 0.382842 -0.430321 -0.019669 -0.746297 -0.641315 0.263718 0.398113 -0.071312 1.170669 0.804267 1.847601 -1.481135 0.368132 0.402560 -0.353592 0.407511 -0.336048 -1.413444 0.378531 0.474537 -0.120464 1.428476 -0.252044 -0.893748 0.413965 -0.135724 0.473505 -0.956016 0.591094 -1.049794 -0.152004 -0.795732 -0.282700 -0.715257 -0.625955 -0.758831 -0.333885 1.546626 -0.697973 -1.362920 1.319039 -0.292276 0.497158 -1.948506 1.210057 -0.769411 0.936682 -0.608868 -0.063707 -0.223166 0.794213 -0.518529 0.292536 0.707526 -0.885414 0.809526 1.599383 0.388734 0.300381 0.131586 0.953354 -0.141695 0.199208 -0.831106 1.317188 -0.262255 -0.307900 -0.005557 -0.634697 0.542308 -0.246005 0.084219 0.430468 1.049600 -0.075422 0.284608 1.134249 0.500340 -0.588890 0.784755 -0.045973 0.690550 -0.549938 -0.062086 -0.142568 0.379010 -0.110961 0.605634 -1.562203 -1.252972 -0.919120 -1.400158 -0.052440 0.472220 0.105754 0.181509 0.052027 -1.604886 -0.847417 0.928591 -0.550225 1.096237 0.655360 0.757282 1.024907 1.292357 -0.464435 -0.320344 -0.190875 -0.181523 -0.519860 -0.490428 -0.603661 1.024496 -0.815224 0.766165 0.943968 -0.207521 0.442905 0.062699 0.748852 -0.887941 1.782925 0.783305 -0.442272 0.874354 0.861628 1.852602 -0.365518 -0.768963 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.370988 -3.354369 4.071611 3.630417 0.901489 2.848493 0.563831 -1.985445 2.182748 2.985290 -0.734166 2.094295 -2.224268 -0.288795 -0.099608 1.176416 -1.369444 -2.288519 -0.146828 -1.208970 -0.227438 -2.259622 -1.297803 2.431941 0.758070 -0.249128 -1.555723 0.559531 -4.282496 -4.635593 0.095007 -0.399995 1.816769 -1.391828 1.259674 -4.759138 3.232078 4.019589 -0.320752 -4.406487 0.275985 -1.159572 -0.433492 0.981306 -0.473135 1.880528 0.852816 -0.260968 0.458385 1.244210 0.640473 0.354138 1.737565 3.640960 -0.127298 3.398850 2.626590 -0.097355 0.732227 0.676821 0.517880 0.026317 1.890437 1.358651 -0.920446 -1.249550 -0.079311 0.863841 -2.679848 1.297442 0.103014 -1.956943 -1.376252 -0.955309 -3.035469 -0.719971 0.147442 0.996234 4.416215 -1.133486 3.948062 1.504565 2.081067 0.474843 3.118212 -0.218422 2.919029 1.327307 -2.240212 0.581343 -2.215858 -1.299192 0.159098 1.353114 -2.378422 -1.665243 1.331885 -3.606976 -3.432519 2.566208 -0.229918 -0.777942 -3.012052 -1.368219 2.005918 1.526050 -1.605086 -3.314572 -1.691714 2.479442 -1.034050 -1.877810 0.419523 -1.029299 -0.178103 0.053621 -2.358817 -0.325434 2.507661 -1.833842 -1.677280 3.288871 -0.647925 1.690441 -0.673579 0.642475 -0.740998 1.069458 0.672392 1.862280 -0.172517 -0.937557 -3.554542 -0.004503 0.129491 -0.394645 -0.945943 -0.392539 0.325888 1.456120 0.379191 2.642686 -1.408417 1.873787 2.683535 0.241414 -1.082370 -2.470292 -0.423721 -2.538261 0.625814 -1.383685 -1.993241 0.387916 2.644460 0.036966 0.864186 2.201590 -1.777513 1.039383 -0.674597 0.317991 0.987649 -1.291185 0.924814 -1.438198 -2.691254 1.849731 2.639245 1.059560 1.116875 -1.227920 0.164919 -0.650824 -1.468260 1.115235 0.678184 0.116334 3.390857 1.993987 4.509059 -1.874353 0.060004 -0.026661 -1.078985 1.030123 -1.227721 -3.368820 0.702216 1.182228 0.774652 4.198095 -0.677967 -1.652443 1.533462 0.080743 0.688439 -2.303155 2.389981 -2.839657 -0.050581 -1.236319 -0.951235 -1.763947 -1.484520 -2.536011 -0.715609 3.720980 -1.599828 -3.293911 2.335234 -0.823776 0.839995 -4.358618 1.787094 -1.655456 2.276898 -0.298159 -0.180112 -0.214143 1.228319 -0.874346 0.143594 1.839818 -2.527613 2.372420 2.520010 0.542252 0.094931 0.685689 1.396671 -0.754179 -0.570852 -2.563929 2.320104 -0.676983 -0.132386 -0.589828 -1.447373 1.848084 -0.315722 -0.421301 -0.762855 1.734658 -0.945599 -0.367667 2.759026 -0.001810 -1.270301 1.679601 -0.075689 1.574552 -1.614885 -0.309988 -1.377783 0.705228 0.648631 1.587490 -3.910618 -1.695419 -2.807928 -3.216687 -0.815709 1.401412 0.679793 1.077099 0.160156 -3.870000 -2.415642 3.427275 -0.932869 1.712406 2.056329 2.057128 2.523494 2.216774 0.139521 -0.725317 -1.218721 -0.634774 -1.866515 -1.216690 -0.494813 1.963979 -1.496217 2.275844 1.765914 -0.232414 1.368525 -0.253918 0.883881 -2.313915 3.922453 2.292527 -1.524317 0.768382 1.742363 3.934945 -2.624112 -1.958646 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::empty() const = 0.663470 -0.657884 2.060408 1.774975 -0.503129 0.558211 -0.404430 -1.545010 1.155823 0.600777 -0.334407 0.508296 -0.459472 0.592234 -0.629226 1.271621 -1.477626 -0.450386 -0.723851 -1.146081 -0.887371 -0.506497 0.077723 0.148445 0.719487 0.769763 -0.806207 0.454632 -0.300804 -1.808638 0.237430 -0.102906 0.288631 -0.230270 0.685499 -1.794952 1.584686 1.121011 -0.473378 -1.276422 0.156504 -0.350909 -0.387565 -0.172484 -0.251528 0.403380 -0.376819 0.770557 0.629949 0.652060 0.356507 0.811729 0.928035 2.179937 -0.254742 1.062620 0.763123 0.149001 0.015613 0.441624 0.432382 0.608603 0.171904 0.289625 0.472707 -1.186175 -0.492332 -0.144921 -0.352333 1.093375 -0.267135 -1.143006 -1.030923 -1.001798 -0.933922 -0.188711 -3.076870 1.271950 1.472756 -1.395303 0.446950 0.396509 0.220600 0.249986 0.736411 -0.248024 1.505894 0.638355 -0.164395 0.395014 0.427048 -0.727149 0.786117 -0.899680 -1.231589 -2.344031 0.827936 -2.053247 -1.345410 0.852412 0.877706 -0.458382 -0.164486 -0.634897 0.462407 0.019872 -0.574235 -0.810130 0.082789 0.605596 0.476171 -0.537585 -0.024924 -0.054498 0.292486 0.658118 -1.586707 0.396036 0.403554 -0.094848 -0.039232 1.010757 0.609522 -0.295376 -0.377398 0.200954 -0.355836 1.307336 -0.333837 1.250991 -0.725888 1.388015 -0.581694 1.482533 0.668256 -1.294883 -0.229948 0.413158 -0.213146 0.567686 -0.778828 0.882611 -1.067573 0.576799 0.778904 -0.010683 -1.102069 -0.629551 -1.028627 -1.285436 0.304704 -0.738764 -1.308553 0.242712 0.949587 1.164371 0.703798 0.165242 -1.020782 -0.232098 -0.221082 0.406689 0.777260 -0.178248 0.471022 -0.573350 -0.885955 0.814982 0.388440 0.263867 0.405457 -0.223392 0.192305 -0.592197 0.186994 1.012002 0.671967 -0.284070 1.157909 0.986016 1.349194 -0.395538 0.218820 0.527353 -0.614136 0.205741 -0.230711 -1.242108 0.343046 0.339226 1.089633 1.262702 -0.229455 0.314249 0.297148 -0.277667 0.402682 -0.549539 0.090990 -0.766344 -0.425638 -0.557813 0.795908 -0.427364 0.003448 -0.466463 -0.755973 1.391163 -1.988713 -0.296800 1.905686 -0.697964 0.333407 -0.569693 1.085365 -0.534127 0.777951 0.061686 -0.086989 0.044153 -0.400894 -1.007057 0.385017 0.662046 -0.345178 -0.137524 1.161376 0.255875 -0.012565 -0.080520 0.953460 -0.947271 0.936567 -0.792875 1.526651 -0.210574 -0.122082 -0.335590 -0.407997 -0.400458 -0.921960 0.369415 0.870653 0.034349 0.601954 0.054180 0.401227 0.881540 -0.815764 1.290196 -0.168427 -0.267817 -0.975655 -0.251492 0.521958 0.189607 -0.361682 0.297278 -1.388298 -0.763765 -2.572549 -0.117258 -0.275493 -0.358111 0.444014 -0.566251 -0.645848 -0.496086 -1.440096 2.097400 -0.493942 -0.767897 0.822572 0.556810 0.870918 1.303867 -0.004075 0.465825 -0.664948 -0.259380 0.215070 -0.381746 -0.638535 1.390193 -0.316847 0.057982 1.427412 -0.272702 0.880093 0.372374 0.406854 -0.668085 0.964906 0.359216 -0.465308 0.445371 1.645324 1.043286 -0.031550 -0.851655 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::front() = 0.017553 -0.603187 1.165858 1.038870 -0.160848 0.327571 0.162746 -0.746750 0.827689 0.126665 -0.129833 0.222177 -0.795486 0.389548 -0.388043 0.622297 -0.870480 -0.649217 -0.312396 -0.528626 -0.371933 -0.599949 0.450007 0.188969 0.509494 0.406297 -0.552776 -0.102934 -0.768075 -0.494362 0.622352 -0.239726 0.512685 0.281410 0.047507 -1.487587 0.775725 0.664218 -0.294387 -0.826179 0.291097 -0.526396 0.048936 -0.437873 -0.209234 0.160502 -0.104825 0.299152 0.604587 0.212871 0.234136 0.233743 0.157598 1.230766 -0.596557 0.604610 0.296032 0.060471 -0.187515 0.058820 0.241858 0.318689 0.450445 0.476879 -0.187022 -0.680979 -0.276595 -0.427468 -0.828256 0.721131 -0.194378 -0.058921 -0.768642 -0.270130 -0.573740 -0.183434 -0.781648 0.747040 1.174254 -0.788002 0.606596 0.101809 0.202824 -0.119069 0.339440 -0.007527 0.645474 0.276623 -0.264709 -0.022700 -0.354712 -0.103655 0.148280 -0.104343 -0.435935 -0.944046 0.507552 -0.805318 -0.928221 0.262123 0.347918 -0.118574 -0.480755 -0.040689 0.275960 0.368439 -0.495078 -0.825244 -0.123302 0.241659 0.339554 -0.338146 -0.018905 -0.100055 -0.213327 -0.419171 -0.982978 -0.115295 0.033724 -0.518387 -0.105067 0.672885 -0.299149 0.037929 -0.060222 0.208579 -0.269810 0.952693 -0.083658 0.551348 0.082962 0.246297 -0.454594 0.131341 0.404524 0.651337 -0.293786 0.080602 -0.331303 0.160394 -0.510188 -0.050205 -0.141014 0.219054 0.631539 -0.356381 -0.623821 -0.221763 -0.234035 -1.160919 0.174898 -0.667845 -0.120000 0.399342 0.662367 0.586596 0.574000 1.144086 -0.692856 0.267137 -0.026793 -0.117683 0.660200 0.254909 0.465760 -0.401061 -0.718203 0.488180 0.130120 0.184119 0.172744 -0.079404 -0.015542 -0.678680 -0.196589 0.407549 0.383600 -0.143138 0.652145 0.432099 0.428155 -0.638038 0.335347 0.482022 -0.152997 0.194708 -0.038141 -0.984688 0.472458 0.109398 0.063622 0.564112 -0.137511 -0.325228 0.333981 -0.263184 0.356614 -0.641050 0.140326 -0.580059 -0.139351 -0.790925 0.209525 -0.128160 -0.326639 -0.212545 -0.182207 0.950569 -0.657447 -0.450429 0.906060 -0.006478 0.478853 -0.904672 0.696811 -0.470670 0.713692 -0.205527 -0.074701 0.052204 -0.017732 -0.398577 -0.040709 0.443438 -0.184819 0.161521 0.958947 0.274422 -0.017549 0.100388 0.731903 -0.080756 0.573181 -0.340384 0.852644 -0.016946 -0.305383 0.192243 -0.372203 -0.030336 -0.415295 0.140843 1.013054 0.637699 0.419981 0.576364 0.352278 0.717964 -0.469084 0.532454 -0.076221 0.350613 -0.391278 -0.066937 0.176983 0.398211 -0.339470 0.416159 -0.887571 -1.285750 -0.816549 -0.738735 -0.033960 -0.277561 0.246085 -0.230774 -0.115558 -0.659339 -0.659892 0.465852 -0.427794 0.755950 0.383716 0.348877 0.592313 0.899972 -0.545382 -0.015551 0.093708 0.215289 -0.000541 -0.085015 -0.626662 0.664727 -0.501204 0.155818 0.938432 -0.310172 0.284432 -0.068632 0.732666 -0.497995 1.103170 0.360156 -0.349074 0.830886 0.565329 0.837349 0.417408 -0.514946 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::operator*() const = -0.180866 -0.285402 0.652897 0.593353 -0.028429 0.182790 -0.047684 -0.425778 0.435811 0.361553 0.014434 0.154957 -0.293826 0.201712 0.025709 0.470486 -0.386291 -0.266066 -0.204488 -0.369844 -0.303980 -0.260147 0.134089 -0.013222 0.206987 0.095538 -0.366304 0.072483 -0.218571 -0.696406 0.151578 -0.117801 0.282258 -0.080635 0.068756 -1.038701 0.514610 0.369771 -0.188426 -0.424825 0.101918 -0.156821 0.071414 -0.026110 -0.188699 0.167859 -0.065103 -0.196757 0.298577 0.204575 0.343301 0.177264 0.225554 0.737440 -0.241575 0.330891 0.163384 -0.077523 -0.157785 0.048234 0.140114 0.165020 0.267372 0.213671 -0.008598 -0.400474 -0.116177 -0.103836 -0.461399 0.361954 -0.151245 -0.279984 -0.300069 -0.288580 -0.225952 -0.199148 -0.407801 0.265497 0.595722 -0.360306 0.286120 0.094231 0.071241 0.091587 0.259297 -0.017465 0.469242 0.158405 -0.147584 0.127792 0.295825 -0.133389 0.162958 0.257453 -0.255214 -0.337505 0.268678 -0.287594 -0.439834 0.313882 0.221206 0.023153 -0.595181 -0.263382 0.179236 0.184538 -0.251194 -0.424132 -0.208768 0.155706 0.171179 -0.200809 -0.101849 -0.206411 -0.123819 0.037175 -0.517090 -0.019575 0.056553 -0.198221 -0.249925 0.373659 -0.068717 -0.046552 -0.075136 0.186430 -0.218205 0.486344 -0.093868 0.457356 -0.158548 0.193551 -0.511718 -0.035792 0.194008 0.019427 -0.065580 -0.101082 -0.248664 0.063768 -0.315510 0.228470 -0.110400 0.265612 0.713743 0.015540 -0.348165 -0.142103 -0.163379 -0.691570 0.108767 -0.365846 -0.060501 0.243899 0.349077 0.216172 0.311509 0.520295 -0.363052 0.166700 -0.142570 -0.119223 0.370870 -0.004285 0.234111 -0.206087 -0.338557 0.247700 0.229373 0.129405 0.206085 -0.139868 0.023845 -0.243172 -0.106329 0.323456 0.178181 -0.044745 0.264024 0.247972 0.911681 -0.277796 0.135122 0.233408 -0.075758 0.104023 -0.082667 -0.433068 0.073868 0.117597 -0.020019 0.396975 -0.077748 -0.191946 0.088736 -0.141961 0.180626 -0.292314 0.201450 -0.271453 0.101057 -0.286838 -0.097151 -0.199203 -0.090414 -0.095427 -0.081026 0.520178 -0.418331 -0.307250 0.558523 -0.102566 0.151234 -0.502706 0.514793 -0.232982 0.393646 -0.319710 -0.077728 -0.052644 0.094493 -0.195683 0.156033 0.232545 -0.119250 -0.023860 0.598365 0.143289 0.019909 -0.063968 0.373858 -0.043904 0.307424 -0.169953 0.578076 -0.051634 0.016054 -0.028127 -0.178693 -0.022015 -0.213304 0.023364 0.190575 0.268307 0.001842 0.077247 0.241778 0.343222 -0.258051 0.405548 0.038316 0.201878 -0.228229 -0.032212 0.127459 0.287746 -0.155920 0.129652 -0.435287 -0.337790 -0.490481 -0.296342 -0.142709 0.329431 0.080163 -0.103369 -0.093647 -0.219241 -0.321709 0.669092 -0.201213 0.350595 0.142455 0.202637 0.335526 0.493523 -0.113613 -0.094771 -0.234634 -0.171779 0.005179 -0.072164 -0.225039 0.425726 -0.216887 0.051241 0.334151 -0.127910 0.185073 0.187039 0.215986 -0.235568 0.538457 0.160003 -0.010554 0.429484 0.364522 0.544982 -0.079014 -0.249021 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::pop_front() = 2.484545 -2.547620 8.415814 7.341609 -1.468069 2.292733 -0.784179 -6.799355 4.975096 3.245745 -1.040940 1.538416 -2.518549 2.433170 -2.420105 5.464023 -5.912208 -2.094710 -3.140277 -4.749687 -3.151577 -2.704697 1.860648 0.242364 3.240647 2.614886 -3.487895 1.152561 -1.281361 -8.400876 2.024185 -0.441626 1.929290 -0.824202 1.512997 -8.385666 7.002762 4.802761 -2.074664 -5.022489 1.213004 -0.891491 -2.437380 -0.057774 -1.427511 1.647923 -2.008840 2.994640 2.877724 2.874678 2.332278 3.253955 3.954561 8.715592 -1.819330 4.390749 2.385738 0.636716 -0.240788 2.170156 1.634092 3.203651 1.285217 2.233717 2.145963 -4.790798 -1.175813 -0.449168 -3.146754 5.152144 -1.217903 -4.336453 -3.848135 -3.090333 -2.993748 -0.081383 -8.622244 4.851252 6.427259 -4.522885 2.179348 1.235535 -0.018053 -0.250323 1.906810 -1.254946 5.678913 2.521595 -0.429563 0.050397 1.080516 -3.005036 2.998164 -2.352542 -4.702877 -8.644773 3.532746 -7.025083 -5.304183 2.683857 3.684891 -2.289130 -1.964738 -2.519273 2.150835 0.199512 -1.819054 -3.666165 -0.507075 2.539617 1.315246 -2.305812 -0.729809 -0.302485 0.397683 2.717546 -6.223177 0.806827 0.795732 -0.942712 -0.913393 3.538895 1.768516 -1.284441 -1.220062 1.521143 -1.485521 4.110752 -1.724022 5.572705 -0.964359 5.475083 -1.407454 4.518232 2.993311 -3.989366 -0.452479 0.874834 -1.706363 2.323161 -3.552126 3.699507 -3.920093 1.970817 4.306076 -0.259752 -4.280418 -1.707660 -2.863733 -5.881971 1.271053 -3.581799 -4.689989 0.958572 4.035789 3.347605 3.193692 1.826823 -4.998323 0.174013 -0.584841 1.345712 3.139023 -0.946047 1.774518 -2.154400 -4.286157 2.950171 1.720605 1.177345 0.910767 -0.667292 0.147090 -2.725301 -0.523324 3.704606 1.998112 -1.309194 3.708701 3.789419 7.230660 -2.183550 1.473683 2.964016 -2.335777 0.907791 -0.712993 -5.835536 1.280545 1.139939 4.209702 5.766622 -0.853206 0.230634 1.373326 -1.221373 1.267346 -2.674085 1.081775 -3.448752 -1.053645 -2.714353 1.815920 -1.195672 -0.437385 -1.510762 -1.954895 5.585381 -7.033860 -2.536904 8.294232 -3.176574 0.759875 -3.838733 4.949475 -2.173416 2.104009 -0.304109 -0.415475 -0.024375 -1.330522 -4.387984 1.314940 2.370825 -1.358456 0.768130 6.096288 1.060960 -0.227492 -0.790466 3.947197 -3.208558 3.879997 -3.631415 6.567332 -0.625031 -1.066440 -1.787138 -1.877401 -1.371264 -4.431839 1.143091 3.398629 1.030232 1.756362 0.799680 1.585507 4.341930 -3.123561 6.141948 -0.030429 -0.868131 -3.157190 -0.811170 2.651924 0.685401 -2.300355 2.804406 -5.610050 -3.877376 -9.040177 -2.394870 -1.075283 -1.423953 2.860428 -2.478075 -2.268787 -2.672534 -5.723578 7.716290 -1.880042 -1.417697 3.751262 2.483741 3.047280 5.542441 -0.655932 2.391665 -2.998377 -0.514543 0.419389 -2.633201 -2.076992 5.597265 -0.891329 0.552347 5.583294 -0.969341 3.445071 -0.232345 1.967476 -2.914663 4.534683 1.608927 -0.896716 2.629696 4.704454 4.601738 0.166267 -3.264654 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_pop_front_aux() = 2.611699 -2.481817 8.415460 7.306287 -1.742254 2.326388 -1.315041 -6.869990 5.035223 2.889698 -0.739688 1.982159 -2.054930 2.864136 -2.852940 5.596148 -6.112140 -1.979680 -3.279142 -5.068702 -3.998432 -2.400862 1.088833 0.237137 3.023872 2.452185 -3.833276 1.460595 -1.216089 -7.925520 1.668849 -0.470941 1.508598 -1.853375 2.093817 -9.207071 6.884751 4.486407 -2.119709 -4.965031 0.875322 -1.352759 -1.857866 -0.533352 -1.520863 1.216080 -2.051087 2.991670 3.046222 2.608601 2.123459 3.989034 3.646816 10.122236 -1.902663 4.425172 2.583610 0.711518 -0.399046 2.158105 1.735633 3.069309 1.120455 1.686429 2.100951 -5.008478 -1.534791 -0.503219 -2.278475 5.042365 -0.886115 -4.617069 -4.069628 -3.430394 -3.726777 -0.725604 -10.451001 5.076278 6.314026 -5.346062 1.758551 1.220266 0.521078 0.791727 2.797229 -1.202150 6.522915 2.525039 -0.667255 0.784306 1.550531 -2.408546 3.127989 -2.952604 -4.829531 -10.161647 3.339278 -7.727140 -5.557605 3.261669 3.753486 -1.869492 -1.814779 -3.235249 2.406921 -0.099164 -2.425015 -3.758142 -0.525851 2.607014 1.678248 -2.392940 0.025971 -0.981355 1.061926 2.533149 -6.468595 1.140949 1.238824 -0.546407 -1.090005 4.087658 2.068141 -1.480098 -1.429690 1.333005 -1.668471 4.609737 -1.898384 5.511997 -2.367981 5.874497 -2.248504 5.059419 2.802392 -4.551866 -0.563927 1.109633 -1.747053 2.445088 -3.717805 3.799427 -4.110746 2.374740 3.827316 0.067682 -4.564956 -2.025722 -3.002225 -5.705466 1.277856 -3.372938 -5.429039 0.765462 4.052078 4.173826 3.209875 0.793913 -4.360679 0.124051 -0.796790 1.647094 3.633655 -1.280421 1.931659 -2.316386 -4.148262 3.094677 1.595348 1.280636 1.135326 -0.892974 0.443633 -2.475921 0.007798 3.422460 2.624721 -1.276582 4.208070 3.859258 7.311810 -2.730803 1.446891 2.666668 -2.577397 1.114417 -1.132774 -5.390745 1.108513 1.507216 3.902777 5.717313 -1.006534 0.256862 1.278102 -0.956911 1.736287 -2.386828 0.524940 -3.262283 -1.710409 -2.520676 2.392964 -1.575065 0.092076 -1.934296 -2.986018 5.759701 -8.497889 -2.110785 8.623209 -3.193975 1.159882 -3.476329 5.117544 -2.146584 2.473985 -0.355160 -0.319020 -0.005945 -0.843144 -4.619616 2.183954 2.676498 -1.731890 0.024350 5.930886 1.037585 0.440822 -0.795589 4.086424 -3.369596 3.853298 -3.498653 6.992416 -0.846626 -1.021065 -1.720761 -1.848894 -1.484855 -4.183939 1.794009 3.243017 0.614142 2.182743 0.380017 2.114035 4.106702 -3.314972 5.810279 -0.613824 -1.359309 -3.641422 -0.767852 2.506938 0.662390 -2.021595 2.064555 -5.676816 -3.394869 -10.272736 -1.337531 -0.760971 -0.982103 1.985751 -2.594418 -2.610953 -2.613264 -5.695176 8.402140 -2.109404 -2.515894 3.823528 2.470682 3.367491 5.785874 -0.492762 2.211770 -2.957658 -1.217807 0.789662 -2.208134 -2.537064 5.853430 -1.188838 0.628678 5.667518 -0.956316 3.592437 1.014873 1.722138 -2.643733 4.406543 1.536252 -1.191265 2.195944 6.062807 4.880154 0.127877 -3.397008 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__printMaxSubSquare(int (*) [5]) = -9.412778 -16.660462 15.223996 14.436944 4.832773 11.015920 7.624825 -5.669973 9.076188 14.046335 -6.134261 10.077996 -8.744137 -4.992835 1.124369 4.163059 -3.977477 -10.301710 2.417368 -2.270400 -0.706147 -10.635250 -8.599043 11.842107 2.710240 0.274756 -4.441841 1.850554 -18.753252 -22.017242 0.579006 -0.945366 7.221613 -0.719751 3.853348 -25.694529 11.404619 18.358695 -0.870211 -17.645957 -0.208024 -3.876289 -5.321677 5.072156 0.373498 7.839205 5.965752 0.680963 -2.596739 4.689502 5.329639 -2.836208 9.483923 17.600066 1.290304 16.748517 16.943005 -0.347514 4.705901 2.751566 4.179383 -2.865222 9.466055 10.109366 -4.856552 -1.841958 0.069469 3.102386 -12.567134 2.820389 4.136735 -9.165987 -6.349364 -4.416673 -8.685685 -3.669192 -6.810889 -0.075587 22.434748 -4.472495 24.778417 10.805372 14.639101 -1.765095 12.634934 -2.005167 13.465996 5.925960 -13.640969 2.137923 -12.316367 -8.208886 0.432834 14.096476 -11.156300 3.756621 6.513695 -10.082681 -15.895603 10.193571 -2.512135 -3.037752 -11.180858 -0.017545 7.292221 3.676471 -4.213289 -15.604461 -13.519843 8.064385 -9.599418 -8.786549 -3.974180 0.252378 -1.008627 2.891391 -11.229913 -2.184959 12.778269 -9.509181 -7.688933 11.137493 -3.763606 10.069707 -3.765260 0.157175 -0.091838 1.192991 5.636144 5.050768 5.743794 -8.417141 -25.945521 -0.218892 1.407638 4.711663 -6.156905 -3.310322 7.018696 6.211299 6.532872 13.126875 -3.451817 12.761076 10.173871 1.246946 -5.015536 -14.700702 -1.576265 -8.617279 6.766623 -6.850998 -3.744473 -1.692594 10.665782 -2.782147 0.651123 9.609847 -9.218343 12.860237 -1.122151 3.029893 0.293065 -5.280269 3.787403 -6.509790 -10.534893 8.715371 13.957786 3.677653 5.240795 -5.376231 0.258199 -3.210325 -12.371022 7.013948 -2.244137 0.544571 14.069375 6.633225 35.018654 -10.938142 2.178392 -3.203291 -1.209379 3.242139 -2.930117 -13.943405 6.883869 2.428187 4.979471 19.012947 -0.158571 -7.067021 3.194317 0.836327 -0.006188 -10.656470 16.668737 -10.797250 -0.908682 -2.758995 -3.409680 -7.152323 -7.217854 -8.470507 3.160357 16.564304 -5.029650 -16.126032 6.315174 -3.998049 2.790502 -19.706627 17.515238 -7.179201 8.506329 -8.341544 -5.278311 -0.272366 6.783620 -0.110193 0.910206 7.404936 -11.768615 10.206464 11.120593 0.996535 2.855849 4.669849 2.874057 -2.896292 -4.695689 -9.400091 8.038901 1.083658 -2.807377 -5.625769 -6.277808 13.106468 2.234560 -4.451527 -1.670117 12.802418 -7.610729 -4.008342 10.514120 -2.148132 -7.208242 5.579201 3.481087 10.066000 -6.406100 -2.366365 -7.972178 -0.956233 3.097623 6.738897 -15.160377 -4.433688 -4.756272 -14.301444 -7.271855 8.082529 7.867526 6.731816 2.085393 -19.970417 -9.994736 14.381589 -3.604449 4.806396 8.096905 11.090065 10.862458 5.117859 4.919006 -5.265166 -7.002929 -0.900645 -9.621615 -5.319534 0.000776 5.361895 -7.751791 12.661471 4.004885 0.962409 4.884289 -0.527212 9.694773 -8.450278 20.502220 9.170452 -9.729077 1.501588 6.824795 18.452550 -17.075901 -8.683411 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = -1.593820 -3.670879 3.810753 3.529882 0.723909 2.264616 1.495419 -1.470527 2.177819 2.660887 -1.497036 2.247233 -2.128330 -0.686082 -0.156118 1.266639 -1.529867 -2.407577 0.353098 -0.568519 -0.302916 -2.381734 -1.352118 2.491120 0.911335 0.725166 -1.212255 0.385346 -3.981449 -4.727236 0.437379 -0.394181 1.699350 0.295670 0.855714 -5.657046 2.724405 3.966447 -0.346999 -4.030800 0.155852 -0.962544 -1.143575 0.540341 -0.079275 1.719695 1.218167 0.601535 -0.254524 1.150876 0.933077 -0.492168 2.162687 4.007062 0.092433 3.603434 3.702609 0.005321 0.963281 0.380441 1.065311 -0.413173 1.992072 2.330000 -0.943591 -0.782677 -0.295325 0.259553 -2.811975 0.992142 0.653811 -1.612279 -1.825748 -1.043623 -2.062675 -0.647459 -2.070173 0.570744 5.197031 -1.407868 5.204490 2.243540 3.067138 -0.463610 2.508826 -0.318317 2.842749 1.471706 -2.795780 0.444810 -2.563207 -1.818729 0.244967 2.452678 -2.477317 -0.013292 1.607856 -2.778909 -3.611936 2.148626 -0.246179 -0.729709 -2.001287 0.046480 1.569511 0.980309 -1.082610 -3.407276 -2.474498 1.535297 -1.612169 -1.890887 -0.773638 0.330516 -0.296628 0.533323 -2.885990 -0.447829 2.527004 -2.197561 -1.139313 2.453430 -0.684239 2.055045 -0.851568 0.044913 -0.115584 0.915916 1.228252 1.314969 1.122927 -1.328777 -4.941001 0.343112 0.657817 1.103591 -1.540324 -0.576237 1.282823 1.350997 1.081231 2.364135 -0.874261 2.509957 2.239533 -0.042185 -1.509090 -3.178503 -0.782935 -2.383491 1.424967 -1.755153 -0.901579 0.055369 2.491116 -0.265704 0.512092 2.494778 -2.304368 2.522771 -0.214285 0.642967 0.338203 -0.798703 0.972704 -1.470457 -2.453075 2.149411 2.774072 0.828303 1.179576 -1.160700 0.155535 -1.050523 -2.427637 1.908534 -0.115306 -0.010549 3.142655 1.498568 6.703020 -2.124445 0.479801 -0.307498 -0.257746 0.624398 -0.488033 -3.359117 1.811590 0.414418 1.318377 3.945955 -0.053826 -1.437442 0.933258 -0.005751 0.133129 -2.418916 3.314351 -2.405492 -0.256682 -1.022757 -0.230377 -1.401529 -1.543635 -1.745219 0.522237 3.842869 -1.570367 -3.226096 1.654379 -0.753628 0.929518 -4.201082 3.681311 -1.693255 2.261475 -1.449727 -1.110835 0.121280 0.835722 -0.271365 -0.051431 1.751112 -2.231653 1.933895 2.477395 0.395954 0.376219 1.066278 0.960886 -0.683870 -0.479564 -1.944753 1.874196 0.210981 -0.734492 -0.974111 -1.391389 2.452106 0.127941 -0.782658 0.394357 2.713467 -1.046882 -0.254140 2.059007 0.082553 -1.806929 1.311011 0.610893 2.256899 -1.592679 -0.570973 -1.526949 0.130754 0.344554 1.612739 -3.493828 -1.743332 -1.779358 -3.145248 -1.659258 1.141643 1.835362 1.053236 0.314813 -4.139739 -2.425081 3.254049 -0.929733 1.237442 1.938919 2.277450 2.499912 1.435146 0.651723 -1.076538 -1.299227 0.126575 -1.799487 -0.899099 -0.490133 1.410884 -1.826872 2.417053 1.528831 -0.140158 1.097163 -0.236323 2.438094 -1.929814 4.715386 2.064848 -2.330703 0.674438 1.655544 3.948330 -2.974552 -2.082222 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__isValid(int, int, int) = -1.094453 -2.062182 1.977462 1.710503 1.263034 1.270740 0.315628 0.021156 0.895332 1.959580 -1.369672 1.554977 -0.568083 -1.167789 1.472095 0.365103 -0.214464 -1.836395 1.005285 0.445435 0.631722 -0.937697 -1.109042 1.441299 0.381338 -0.984643 -0.658569 0.278592 -2.358475 -2.400773 -0.627499 -0.285233 0.958733 -0.284446 0.879524 -1.359163 1.333049 1.578297 0.199807 -2.798158 -0.213294 -0.134348 -0.424152 0.585293 0.218590 1.604837 1.812805 -0.558244 -0.660620 1.159519 -0.238102 -1.020931 0.487718 0.777831 1.191534 1.724089 2.205304 -0.517100 0.774255 0.375476 0.719408 -1.027094 1.250064 1.083406 -0.761181 0.070723 0.030360 0.380137 -1.274411 0.266812 0.278212 -1.017891 -0.219118 -0.522448 -1.105473 -0.085265 1.780513 0.626664 2.264655 -0.520588 2.675309 1.428416 2.452732 -0.131844 1.254868 -0.298747 1.238043 0.949765 -1.632307 -0.258196 -2.165956 -2.507663 -0.530466 0.936128 -0.688395 2.364635 0.421140 -1.646582 -1.596036 1.427480 -0.539098 0.095529 -2.123138 0.252636 1.660477 1.407099 0.315438 -1.136049 -1.251399 0.764077 -1.754972 -0.976237 -0.660561 0.040347 -0.669327 0.793859 -1.262258 -0.546301 1.907627 -1.259081 -0.748753 1.205419 -1.491193 1.490645 -0.750465 -0.179911 0.111090 0.171342 1.337550 0.551995 1.608864 -2.125462 -3.285103 0.539755 -0.106992 0.041703 -0.542880 0.562368 1.068466 0.681497 0.577459 1.417292 -0.739055 1.700981 1.142158 0.135629 -1.247829 -2.187452 -0.304116 -0.515542 0.699335 -0.910332 -0.002800 1.038516 1.268888 0.131605 -0.028209 2.059348 -1.370066 1.128447 -0.488752 0.676276 -0.511324 -1.160768 0.229013 -0.865967 -0.731454 1.048412 2.233211 -0.226196 1.268123 -1.279282 0.522244 -0.760104 -2.157479 1.072853 -0.018232 0.824169 1.305853 0.428748 1.560728 -1.209910 -0.687917 -0.477003 0.306431 -0.141819 -0.406926 -1.715545 0.699632 -0.114150 1.681386 2.073923 0.124579 -1.221394 0.133589 0.357782 -0.260559 -0.458317 1.634660 -1.462182 0.586189 0.476223 -1.006153 -1.300723 -0.898217 -0.852092 0.479173 2.013806 1.136484 -2.908028 0.385827 -1.227563 0.647936 -2.952922 0.556837 -1.021748 1.596068 -0.170496 -0.223540 -0.687922 0.013608 0.383202 -0.267084 0.908086 -0.980443 1.270343 0.739188 0.074427 0.045127 0.931266 -0.122422 -0.222239 -0.735679 -0.418345 0.116779 -0.482744 0.265357 -0.871747 -0.464004 1.981185 0.617110 -1.173352 -1.072573 0.907374 -1.096510 0.033557 1.424427 -0.701515 -1.276659 0.421597 0.371617 2.136484 -0.696220 -0.523648 -1.331860 -0.173676 0.553793 0.429640 -1.760414 -0.608841 -1.014565 -2.465853 -1.379511 0.564161 0.603029 0.606689 0.356113 -1.816749 -0.679216 0.234774 0.127457 1.321609 0.812316 1.039594 1.496148 0.313543 0.188635 -1.280823 -0.958129 -0.600596 -1.857864 -0.895020 -0.094227 0.381170 -0.757864 1.373153 0.648150 0.359111 0.174637 0.045327 -0.198093 -0.929514 1.780166 1.498584 -1.528840 -0.516123 -0.023088 1.402467 -2.644721 -1.398314 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -50.750362 -80.953845 77.974576 67.063253 16.648317 55.236176 19.061812 -26.074835 23.057194 56.552346 -18.355378 59.465962 -43.827228 -15.795491 -13.669895 9.713266 -14.701116 -52.339481 -2.544475 -23.073202 -16.936999 -29.536735 -47.325256 71.114726 15.365309 -35.443454 -35.192163 0.663678 -102.636681 -63.398227 -23.150176 1.489281 37.075511 -62.863453 20.341684 -114.453207 45.595541 91.771369 -4.502062 -83.859938 7.988037 -28.634974 -15.097412 25.863092 -46.436389 7.666709 22.557321 -19.516540 -10.686271 15.012619 27.633902 13.862419 33.429842 126.401450 20.270034 80.987431 77.429613 2.449486 5.123680 10.763486 20.562688 -14.700051 41.252356 14.247927 -17.432360 -15.221826 -1.016684 16.829820 -40.514007 7.539549 16.266241 -56.105062 -3.559895 -25.798584 -55.877224 -29.934918 58.495528 4.654149 84.303263 -39.779675 90.270107 37.923714 42.023574 13.973769 65.393251 -6.205332 61.478881 24.751994 -34.798023 6.962026 -33.753144 5.611114 4.048696 52.025789 -60.558705 -32.855284 47.612764 -58.548877 -88.810739 58.072703 -5.744717 -24.325570 -47.528343 -24.396560 28.559292 26.729248 -40.663394 -63.029258 -56.832984 56.028343 -23.176597 -47.237392 -6.816831 -12.164188 11.594298 -0.703681 -54.509896 6.015041 66.691146 -38.725436 -40.392311 67.212491 -21.152433 53.686364 -15.089490 11.533350 -3.654975 19.032868 24.226444 15.909868 -22.096659 -26.638626 -68.606206 -13.006998 -5.890780 -8.013802 -30.954671 -6.822716 30.412045 34.189812 35.515636 69.671635 -25.543703 61.449116 27.306868 12.247657 -27.728850 -69.648081 -18.908788 -47.680031 0.134074 -34.802124 -57.420904 18.614932 49.845374 6.520985 -6.148329 58.379798 -7.309289 49.664887 6.380689 -8.647842 7.660940 -60.237953 21.145682 -37.068372 -65.240529 39.105878 60.831879 33.640725 15.821768 -13.323192 -2.545770 -16.558281 -47.225873 6.023219 11.667593 9.020645 75.929073 43.387065 142.662233 -52.460691 6.982188 -24.935059 -24.819477 20.541557 -32.421213 -71.697790 -12.965947 25.175564 -7.635148 103.644848 -4.124550 -43.458919 29.914519 -3.111726 9.532249 -53.183010 75.497052 -50.156628 2.318809 -16.086932 -28.251991 -36.767495 -18.214412 -64.503613 -32.270039 86.200410 -81.833587 -82.567716 31.735519 21.295221 20.556167 -101.119947 64.964828 -29.838565 77.903008 -14.567243 -23.980688 0.515935 30.890499 -10.937802 31.237714 37.600888 -55.488452 36.298280 56.157368 3.018568 21.881327 16.902612 25.472439 -19.285471 -10.507942 -53.953842 50.146716 0.163870 -37.426330 -18.894779 -30.213438 36.389455 10.574596 -1.490737 -24.533571 43.669547 -26.574391 -22.782139 63.609080 -7.729575 -31.379994 27.882849 2.566184 48.020736 -35.867422 -5.498976 -37.291203 17.449691 25.781806 24.775406 -83.657493 -26.865566 -68.445778 -70.013081 -6.572229 34.086567 13.706694 19.352359 -3.868774 -84.560049 -58.026197 80.499962 -26.893481 68.251199 53.530078 61.607407 65.858236 35.813394 18.902979 -11.265374 -17.153896 -6.672005 -35.820147 -22.299131 -5.615129 24.014182 -29.941161 61.574680 28.889776 15.473948 42.962114 15.190634 -12.053349 -46.220554 82.352778 44.394610 -55.889912 10.505798 44.149586 64.162099 -80.316301 -47.623771 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__int const& std::max(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__geMaxCollection(int (*) [4]) = -9.734423 -16.771854 16.944030 14.558733 2.989426 11.187981 3.770050 -5.762883 5.108050 11.289080 -3.982213 12.414745 -9.167233 -2.724499 -3.059677 2.699420 -4.024721 -10.949847 -0.753088 -4.930408 -3.739857 -6.131570 -9.100463 14.408661 3.663606 -6.233591 -7.618742 0.034399 -20.824298 -13.354281 -4.202345 0.066031 7.885616 -12.127046 4.281454 -24.288577 9.871577 18.895039 -1.182227 -17.662525 1.873746 -5.869760 -3.201265 4.618861 -9.609008 1.771738 4.555696 -3.345458 -1.850150 3.460789 5.328980 3.076350 7.227716 26.402059 3.971720 16.647789 16.137583 0.494839 1.026190 1.941011 4.529073 -2.724318 8.445896 3.150843 -3.258843 -3.788304 -0.671462 2.873690 -8.561970 2.063655 3.233719 -11.196683 -1.408900 -5.520449 -11.624575 -5.963044 10.668435 1.831911 17.911723 -8.819490 18.482057 7.751967 8.621934 2.762598 13.149438 -1.117287 12.599013 5.457639 -6.984780 1.490812 -6.846574 0.672618 1.136622 9.948788 -12.649989 -7.893787 10.079166 -12.620605 -18.426140 12.014779 -0.646590 -5.074650 -9.462196 -5.141967 5.904027 5.774270 -8.527435 -12.968591 -11.312397 11.179289 -4.234929 -9.761952 -1.432300 -2.079539 2.206699 -0.091120 -11.916462 1.369987 13.489287 -8.037375 -7.691154 13.824715 -4.139768 10.754778 -3.291166 2.397553 -1.006368 4.754322 5.006568 3.715522 -4.405968 -4.824888 -13.587787 -2.071077 -0.611347 -1.368684 -6.568322 -1.436686 5.841059 7.124364 6.861175 13.899342 -5.281349 12.467610 6.022490 2.220882 -6.386524 -14.466868 -4.366508 -10.458161 0.131229 -7.562526 -11.719433 4.423398 10.530658 1.712832 -0.715758 12.352219 -2.165416 10.049137 1.210171 -1.617435 1.913598 -11.750032 4.504046 -7.698996 -13.563541 8.391320 12.277014 6.971006 3.419927 -2.817850 -0.263195 -3.827311 -9.555880 1.891181 2.821125 1.562059 15.658506 9.066144 28.791360 -10.520733 1.304033 -4.605621 -5.173974 4.057929 -6.371907 -15.177454 -2.161881 4.986765 -1.151632 21.263843 -0.879743 -8.827066 6.432267 -0.827397 1.973537 -10.900041 15.242306 -10.428036 0.328211 -3.765630 -5.161428 -7.526011 -3.686568 -13.156200 -6.722746 18.189964 -17.356713 -16.734629 6.998252 4.101868 4.480063 -20.856572 13.595388 -6.333623 16.250963 -2.764981 -5.003925 0.264717 5.553345 -2.747494 6.107509 7.967822 -11.092103 7.020637 11.893782 0.858279 4.081332 3.442764 5.662278 -4.119440 -1.371294 -10.998567 10.642064 -0.118341 -7.677798 -3.802026 -6.201976 7.074758 1.563480 -0.149555 -4.103624 8.783320 -4.662037 -4.020901 12.815697 -0.833173 -6.899719 6.036021 0.458899 9.993020 -7.664071 -1.226557 -7.333478 3.993781 4.846260 5.353926 -17.486357 -6.382227 -15.025798 -14.455964 -1.640884 6.521510 3.111151 3.380638 -1.076535 -17.236720 -12.338823 16.751054 -5.662997 13.857518 11.353065 12.485113 13.772762 7.758070 3.393912 -2.276924 -3.459461 -1.069617 -6.937207 -4.388901 -1.773621 5.397721 -6.325798 12.166118 6.900469 2.760337 8.948578 2.910151 -1.621554 -9.593734 17.478880 9.184220 -11.819737 2.498028 9.453951 13.332381 -15.785617 -10.073723 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = -1.535211 -3.844966 4.560116 3.846598 0.107040 2.369794 0.771920 -1.644302 1.483760 1.614392 -1.149120 2.757550 -2.404919 -0.195159 -1.112108 0.817723 -2.013890 -2.713183 -0.431478 -1.271998 -0.944835 -1.522562 -1.477660 3.253791 1.212565 -0.214021 -1.955242 -0.036604 -4.720142 -2.495689 -0.105437 -0.147221 1.996880 -1.542630 1.073445 -6.041417 2.506586 4.248356 -0.481993 -4.303904 0.691832 -1.648729 -0.786349 0.052852 -2.206017 0.457474 0.857227 0.165854 -0.076004 0.745040 0.522553 0.814691 1.507939 6.216269 0.538303 3.685233 3.792211 0.183942 0.225517 0.196912 1.164840 -0.307509 1.853060 0.940598 -0.786889 -1.413161 -0.449917 -0.149010 -2.111596 1.010069 0.713907 -1.967927 -0.962215 -1.364753 -3.032365 -1.145102 1.392871 1.383991 4.504706 -2.662655 4.073045 1.583245 1.976661 0.488624 2.769942 -0.049312 2.885469 1.442684 -1.377202 0.305353 -2.199628 -0.165217 0.439201 1.226057 -2.951512 -2.876189 2.451859 -3.753075 -4.343162 2.499134 0.256394 -1.328999 -1.609058 -0.966356 1.314993 1.513946 -2.021870 -2.948225 -2.019093 2.371515 -0.590768 -2.099585 -0.221778 0.132453 0.358059 -0.543200 -3.347351 0.534850 2.770807 -1.798907 -0.967694 3.271345 -1.021754 2.119753 -0.783836 0.453489 -0.494818 1.980853 1.029734 0.858485 -0.773632 -0.726899 -2.288788 0.014557 0.335647 0.560462 -1.790178 -0.342983 1.051123 1.646691 1.033926 2.286578 -1.171167 2.456512 1.195300 -0.076024 -1.915400 -3.375939 -1.483261 -3.039597 -0.026128 -1.981941 -2.599437 1.629323 2.639452 1.142205 0.356161 3.263034 -1.016856 2.079452 0.276451 -0.308873 0.756861 -1.843684 1.209859 -1.825415 -3.225236 2.165038 2.125838 1.710391 0.804289 -0.575719 0.036190 -1.420387 -2.082214 0.924150 1.111804 0.267324 3.739416 2.335631 5.049195 -2.423972 0.359185 -0.519770 -1.281667 0.739241 -1.090803 -3.749677 0.094047 1.031940 -0.017936 4.671875 -0.257676 -1.859905 1.594009 -0.279793 0.588059 -2.561605 2.898857 -2.427404 -0.164418 -1.529667 -0.407608 -1.616834 -0.979341 -2.982241 -1.835687 4.491329 -4.376003 -3.620940 2.029754 0.883333 1.574939 -4.785688 2.833542 -1.632768 4.127309 -0.230683 -1.086748 0.252291 0.330159 -1.140290 1.065690 1.934026 -2.290654 1.243050 2.845378 0.521874 0.641345 0.812603 1.724810 -1.045963 0.393967 -2.528524 2.548049 -0.153202 -1.916448 -0.478609 -1.429155 1.225472 -0.064062 0.289683 0.375201 2.021520 0.105441 -0.012462 2.716353 0.494747 -1.855506 1.300287 -0.067508 2.247634 -1.915797 -0.424460 -1.384018 1.271900 0.729587 1.333122 -4.266886 -2.708675 -4.229009 -3.504110 -0.369281 0.438122 0.858922 0.412180 -0.394203 -3.970736 -3.087191 3.432807 -1.474106 3.418638 2.778574 2.582796 3.306464 2.222863 -0.006879 -0.427125 -0.111672 0.421206 -1.256435 -0.661043 -1.368939 1.751309 -1.636272 2.370782 2.669997 0.104509 2.161825 0.295840 0.700722 -2.318085 4.524006 2.144259 -3.255148 0.875978 2.418117 2.959998 -2.318990 -2.527814 -PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -4.382499 -8.265481 7.085420 6.952133 2.777274 5.575819 3.418184 -2.326040 3.824125 7.212489 -4.203604 5.725413 -3.793487 -2.669046 1.150943 2.046280 -1.561325 -4.996776 1.709276 -0.199485 0.228777 -5.194180 -4.097126 5.809189 1.600763 1.592072 -2.053949 1.524935 -9.100023 -12.330775 -0.021371 -0.512494 3.424418 1.378308 1.910226 -9.969986 5.628044 9.284338 -0.065619 -8.963558 -0.358327 -1.217227 -3.666634 2.956370 1.356450 4.861832 3.436006 0.372437 -1.631908 2.698551 2.629669 -2.623972 4.933806 5.573119 1.502931 8.429100 8.926248 -0.346099 3.106408 1.103406 2.046672 -1.624995 4.418263 6.162057 -2.619277 -0.572744 0.185336 1.732268 -6.104153 1.456326 2.029627 -4.587687 -3.445932 -2.275703 -2.606382 -0.793719 -2.752712 -0.448280 11.004095 -0.708006 12.978507 5.555039 7.450695 -2.287220 5.654316 -1.427111 6.007105 3.201796 -6.976938 0.530230 -5.932594 -5.242875 0.155109 8.190590 -5.340154 5.914143 2.847248 -4.645794 -7.465988 4.325340 -1.525548 -1.599830 -4.666964 1.788073 3.650528 1.333347 -0.698679 -7.325527 -5.994629 3.444421 -5.516704 -4.421307 -3.561333 1.063626 -1.238658 2.896446 -5.029489 -1.370240 6.352717 -5.020025 -3.118131 4.527690 -1.427977 4.820828 -2.163311 -0.414200 0.644767 0.011414 3.511402 2.450453 4.073855 -4.624666 -12.667745 1.508251 1.075315 1.316188 -3.755475 -1.419041 4.233408 2.698519 3.407174 6.086593 -2.813918 6.337373 5.223023 0.425431 -3.054095 -7.638210 -1.044675 -3.619676 3.839828 -3.643370 -1.556451 -1.193534 4.942061 -2.203156 0.345687 5.246304 -5.507759 6.138732 -0.300895 2.269669 -0.317384 -1.892925 1.513265 -3.320796 -4.754370 4.964099 7.313708 0.511558 2.935010 -2.743943 0.160248 -1.848800 -6.561103 5.447306 -1.924357 0.893404 6.874868 2.518009 17.393568 -3.931017 0.734793 -1.414352 0.148635 0.846342 -0.487143 -6.786032 4.199299 0.449353 4.530720 9.416499 0.338392 -2.971020 1.016980 0.764012 -0.327953 -5.142173 9.426126 -5.207579 0.156721 -0.720172 -1.862218 -2.663043 -3.621038 -3.309786 3.246304 7.974961 -0.913237 -8.336410 2.231856 -2.773444 1.185872 -9.411820 7.185957 -3.907957 3.555666 -3.735090 -2.763397 -0.215613 1.818131 0.505949 -0.068385 3.553223 -5.115191 4.972230 4.758931 0.307581 0.781701 2.648304 0.544408 -1.351345 -2.484234 -3.613949 2.799634 1.428202 -0.450969 -3.201673 -2.851950 6.109354 0.947432 -3.590143 -0.663644 6.193572 -4.041980 -1.891376 4.157673 -1.143690 -3.797470 2.751362 1.991198 5.172214 -2.999293 -1.918000 -3.714238 -1.089992 1.483237 3.341976 -7.194501 -1.975035 -1.336685 -7.541508 -4.589204 3.382200 5.075444 3.592999 1.097090 -9.420913 -4.676417 7.415069 -1.273928 3.535969 3.459585 5.398779 4.622887 1.645542 2.940568 -2.829025 -4.576973 0.047157 -4.884875 -2.232526 0.164470 2.295261 -3.217846 6.210899 1.748855 0.256495 1.894639 -0.953019 4.564658 -3.900962 9.072611 4.525092 -5.126282 0.580769 1.473811 7.979778 -8.874481 -4.341596 -PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -1.272163 -2.431167 2.078917 1.981426 0.574904 1.568351 0.953927 -0.785356 1.427716 1.564589 -1.327398 1.379977 -1.470110 -0.655166 0.361217 0.354340 -0.869762 -1.644959 0.562036 -0.072455 0.046405 -1.720222 -1.015391 1.595088 0.347464 0.994181 -0.505419 0.604600 -2.720777 -2.887615 0.533718 -0.261756 1.112468 0.828622 0.643860 -3.390781 1.595897 2.548830 -0.084249 -3.004952 -0.035125 -0.843737 -0.803299 0.452411 0.318790 1.476301 0.972638 0.831239 -0.309254 0.596893 0.332236 -0.900904 0.828006 1.843872 0.235313 2.389463 2.574289 -0.122376 0.576408 0.262639 0.571224 -0.399277 1.500636 1.851436 -1.251488 -0.266968 0.177379 0.053015 -2.158412 0.661855 0.696844 -1.032300 -1.159228 -0.729381 -0.865341 -0.211513 -0.199997 0.264297 3.365667 -0.356805 3.593753 1.465799 2.146286 -0.586421 1.766207 -0.349721 2.060351 0.883433 -2.008890 -0.023469 -2.293025 -1.700923 -0.015278 1.750403 -1.243856 1.306561 0.654729 -1.393746 -2.173678 1.053803 -0.461731 -0.392358 -1.582682 0.667676 1.378717 0.719836 -0.236592 -2.116097 -1.449472 1.094729 -1.788119 -1.147232 -0.858218 0.488558 -0.623059 0.292865 -1.609240 -0.488351 1.814749 -1.462844 -0.679526 1.571741 -0.858614 1.319097 -0.534140 -0.201488 0.104648 0.568614 0.927243 0.397178 1.409095 -1.433394 -3.095626 0.599290 0.294426 1.017141 -1.140075 -0.516066 1.181251 0.717870 0.602149 1.064225 -0.849213 1.598074 1.673236 -0.176254 -0.879792 -2.196449 -0.417280 -1.488387 0.924357 -1.164413 -0.162285 -0.153924 1.696001 -0.107680 0.322178 1.968205 -2.034677 1.733391 -0.204312 0.655707 0.058583 0.132547 0.624892 -1.050475 -1.391444 1.403103 1.782754 0.183220 0.799689 -0.902393 -0.008865 -0.857600 -1.984818 1.687217 -0.207869 0.533371 2.036974 0.876911 4.219046 -1.480907 0.340203 -0.207855 0.028290 0.229693 -0.072549 -2.069614 1.450198 0.197050 1.332313 2.686952 0.014854 -0.985876 0.111269 0.366529 0.008224 -1.661636 2.339018 -1.615449 -0.049394 -0.499769 -0.209682 -0.931207 -1.349221 -1.105200 0.596465 2.498959 -0.061853 -2.718776 0.927995 -0.973322 0.931665 -3.064891 1.538855 -1.304377 1.454196 -0.964036 -0.621928 -0.084728 0.013573 0.079937 -0.041783 1.050299 -1.296352 1.476207 1.456188 0.335922 0.217397 0.863836 0.352844 -0.297120 -0.631822 -1.158526 0.834609 0.206392 -0.010019 -0.515670 -0.983618 1.717836 0.389869 -0.901543 0.541838 2.112993 -0.786455 0.122138 1.310816 -0.244612 -1.159854 0.619520 0.500101 1.557906 -0.820275 -0.604140 -1.131877 -0.052914 0.333600 0.949348 -2.224502 -1.351609 -0.387668 -2.706473 -1.252046 0.632191 1.270942 1.092713 0.574227 -2.716132 -1.099518 1.698329 -0.425482 2.216675 0.859324 1.431313 1.473752 0.827393 0.223561 -1.003000 -0.684946 0.144244 -1.693751 -0.499272 -0.425551 0.931905 -0.876559 1.782191 0.885214 -0.215530 0.452436 -0.678982 2.055629 -1.223513 2.856550 1.469805 -1.574194 0.239055 0.231348 2.570437 -1.863049 -1.381166 -PE-benchmarks/transitive-closure-of-a-graph.cpp__main = -0.547277 -2.073300 2.281618 2.140363 0.355604 1.190871 0.778529 -0.813102 1.244555 1.388040 -1.112617 1.382073 -1.226804 -0.181956 -0.079028 0.945572 -1.109564 -1.438815 0.258970 -0.161537 -0.138459 -1.370246 -0.383411 1.236791 0.745060 0.953825 -0.757971 0.184503 -2.111140 -2.740704 0.449468 -0.368355 1.003547 0.791359 0.447313 -2.734482 1.612033 2.125486 -0.216599 -2.393423 0.128886 -0.463953 -0.763571 0.063814 0.209382 1.141703 0.774996 0.696355 -0.000152 0.820318 0.403339 -0.493969 1.253957 1.786988 0.039711 1.976226 2.132301 0.000335 0.640381 0.084450 0.687687 -0.178420 1.053891 1.636855 -0.506030 -0.563276 -0.315183 -0.111703 -1.643933 0.776515 0.314727 -0.608544 -1.366082 -0.576472 -0.787774 -0.091867 -1.537877 0.601605 3.068190 -0.752778 2.952351 1.254905 1.746238 -0.595769 1.124271 -0.183114 1.382210 0.948396 -1.550740 0.094573 -1.467789 -1.308522 0.174083 1.171230 -1.279906 0.290809 0.873129 -1.528348 -1.992327 1.026608 -0.043704 -0.375084 -0.756199 0.423640 0.914542 0.594345 -0.448226 -1.853689 -1.062757 0.564412 -0.833357 -1.049901 -0.663421 0.439528 -0.411753 0.419273 -1.728500 -0.364561 1.246111 -1.401505 -0.264721 1.180791 -0.319439 1.041572 -0.534458 -0.084839 0.015817 0.744076 0.881869 0.843581 0.982818 -0.650551 -2.483245 0.759961 0.674933 0.663069 -0.999331 -0.154068 0.675811 0.680346 0.414974 0.952795 -0.619933 1.281107 1.317390 -0.269232 -1.199764 -1.815621 -0.531322 -1.398365 0.943682 -1.202492 -0.333178 0.139144 1.419036 -0.106443 0.517766 1.711866 -1.706309 1.312023 -0.110489 0.571409 0.246977 0.016175 0.566195 -0.857676 -1.325861 1.375455 1.535513 0.148121 0.740440 -0.711485 0.166271 -0.865286 -1.315903 1.536613 -0.035369 -0.046682 1.726347 0.664608 3.260305 -0.864388 0.196571 0.111263 0.045782 0.141729 0.025722 -2.045870 1.391917 -0.014678 1.193085 2.015142 0.034317 -0.728214 0.540382 -0.048737 0.050654 -1.296012 1.836244 -1.336085 -0.151515 -0.671109 0.184692 -0.553858 -0.884583 -0.686719 0.652454 2.217578 -0.646532 -1.694012 0.861307 -0.627302 0.573366 -2.246924 1.876890 -1.087897 1.160300 -0.620646 -0.668847 0.087314 -0.026946 -0.156565 -0.295112 1.034652 -0.909748 0.931638 1.353321 0.289187 -0.026894 0.724488 0.562886 -0.330645 -0.057279 -0.772103 0.891929 0.233588 -0.248984 -0.489820 -0.739978 1.161190 -0.137093 -0.629561 0.741181 1.462239 -0.334853 0.268802 0.809768 0.317665 -1.185977 0.778731 0.320794 1.399724 -0.938795 -0.434910 -0.711261 0.045109 -0.055444 1.023794 -1.966621 -1.342651 -0.994865 -1.814234 -1.171960 0.256556 1.290025 0.403556 0.150550 -2.162945 -1.367799 1.708221 -0.507583 0.868123 1.057548 1.145770 1.317991 0.815852 0.191952 -0.659350 -0.796687 0.303841 -0.890301 -0.319486 -0.477019 0.818411 -1.023171 1.169335 1.132659 -0.276507 0.447465 -0.400882 1.622533 -1.044335 2.570892 1.200903 -1.422769 0.534770 0.673463 2.042267 -1.325819 -1.256784 -PE-benchmarks/largest-independent-set-problem.cpp__max(int, int) = -0.876546 -1.017857 0.920345 0.733667 0.540435 0.634457 0.349080 0.054689 0.575886 1.075504 -0.482711 0.647732 -0.617249 -0.310051 0.309333 0.261322 -0.099229 -0.917265 0.427901 0.094490 -0.105550 -0.629093 -0.480552 0.505801 0.207840 -0.060184 -0.421066 0.010796 -1.198241 -1.359901 -0.239417 -0.154084 0.488102 -0.232424 0.288753 -1.258429 0.546521 0.885417 0.013814 -1.278893 -0.001211 -0.244405 0.007511 0.385625 0.224524 0.685832 0.871230 -0.018112 -0.083856 0.394849 0.250419 -0.505317 0.157575 0.882624 0.243397 0.901965 0.910628 -0.124758 0.099807 0.182085 0.262892 -0.534486 0.628328 0.627047 -0.593548 0.099238 0.142365 0.113560 -0.776396 0.257336 0.236275 -0.468616 -0.258291 -0.340096 -0.356253 -0.197586 0.334992 0.086172 1.315188 -0.224730 1.378366 0.650891 1.120715 -0.051378 0.672135 -0.228331 0.757463 0.301083 -0.894862 -0.117378 -0.707972 -0.652606 -0.317413 0.977627 -0.309534 0.627693 0.320387 -0.433120 -0.944672 0.597427 -0.342818 0.136083 -1.137775 0.227690 0.819613 0.648739 -0.156808 -0.867718 -0.865081 0.311885 -0.820306 -0.418219 -0.060853 -0.252549 -0.374887 0.158720 -0.645066 -0.389715 0.773221 -0.795804 -0.598152 0.698699 -0.522503 0.869122 -0.148464 0.081978 0.124101 0.262258 0.723168 0.203108 0.404337 -0.703788 -1.667565 -0.031233 0.014589 0.327468 -0.324789 -0.009506 0.346830 0.238617 0.142104 0.474740 -0.480003 0.882375 1.111386 -0.054432 -0.570777 -0.911159 0.156410 -0.454639 0.296768 -0.509938 0.027176 -0.024485 0.622288 -0.041281 0.013055 1.270420 -0.760157 0.735198 -0.185199 0.131808 -0.063869 -0.200309 0.284458 -0.472218 -0.536370 0.379917 1.116387 0.049888 0.392223 -0.602545 0.067598 -0.375680 -0.889321 0.540617 0.071221 0.250507 0.693322 0.238863 1.559131 -0.910453 -0.124031 -0.179867 0.079236 0.033529 -0.114321 -0.959997 0.388546 0.075028 0.412720 0.982195 0.040215 -0.691371 0.320857 0.071276 0.022864 -0.520505 0.839346 -0.761240 0.170610 -0.025514 -0.275242 -0.611615 -0.353060 -0.423655 0.186350 1.005685 0.233040 -1.368476 0.218383 -0.342689 0.373080 -1.479810 0.475673 -0.457548 0.531062 -0.488313 -0.067321 -0.243542 0.393334 0.394941 0.028747 0.404037 -0.434995 0.630826 0.692641 0.043356 0.173270 0.498106 0.215413 0.055145 -0.453214 -0.197265 0.217410 -0.076804 0.032518 -0.209420 -0.287772 0.850699 0.432973 -0.453469 -0.190238 0.800423 -0.683796 0.074924 0.703494 -0.251559 -0.481173 0.201267 0.179463 1.137624 -0.390972 -0.170233 -0.688082 0.085727 0.113834 0.326521 -0.948621 -0.483225 -0.046913 -1.389273 -0.550010 0.599495 0.269538 0.402483 0.205758 -0.935223 -0.347364 0.685197 -0.071232 1.194389 0.252868 0.552567 0.763083 0.371555 -0.050175 -0.623348 -0.339203 -0.288030 -0.823880 -0.346608 -0.009102 0.162929 -0.518892 0.797086 0.211504 -0.005110 0.085286 -0.063716 0.431694 -0.601983 1.131673 0.738474 -0.590292 0.081315 0.116269 1.402078 -1.105141 -0.616264 -PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -5.013091 -15.719232 26.413606 23.808210 -0.230211 12.044166 -2.154878 -15.937441 13.022776 12.679576 -4.215931 12.823422 -9.211798 2.067624 1.415893 12.090398 -14.544379 -11.682094 -4.747154 -10.685369 -7.769669 -9.200144 -2.994872 10.800415 6.853877 2.037763 -12.916818 4.545279 -14.696239 -25.613799 1.939945 -1.672665 11.543936 -6.493986 6.460738 -39.677049 20.906795 20.130980 -3.787663 -23.318451 2.665883 -5.745966 -4.984207 2.251235 -11.357277 6.237686 0.388297 -0.991687 3.781165 7.677789 5.173502 7.507653 10.160819 29.902756 0.773538 18.183143 14.994219 -2.127200 -2.684411 2.486327 6.415850 3.635651 11.763991 7.506373 -1.612844 -12.332128 -1.052809 0.886750 -16.183551 10.174983 1.479991 -15.862530 -6.545635 -9.607778 -11.415671 -4.635020 6.938208 10.561392 23.705829 -11.943578 16.979561 5.833940 6.456472 1.873848 13.960143 -3.105637 20.695501 8.779545 -7.113584 0.304068 -3.494210 -10.165512 6.323363 5.973573 -15.013448 -12.442034 9.843510 -18.803422 -20.368617 13.124725 5.923885 -5.455730 -19.581027 -11.003443 12.216354 7.224260 -6.594405 -14.991695 -9.718329 12.088667 -3.518907 -12.180426 -6.347478 -1.952463 -1.383223 4.044058 -19.437552 1.243527 12.105492 -6.585357 -7.268883 15.452909 -4.668507 3.678016 -6.184761 4.582502 -4.680052 11.179542 -0.608303 11.453765 -0.564333 1.010228 -9.717530 3.777171 2.527086 -4.122332 -5.448251 -4.541522 -0.454444 8.120332 -3.378631 14.650833 -8.993655 13.285441 17.809583 4.159098 -12.886508 -13.092789 -8.004095 -20.908237 2.777268 -12.880217 -11.376506 10.907726 15.107128 4.772263 6.269562 13.903648 -12.396498 10.143970 -1.723987 1.644224 8.842391 -6.847612 6.259183 -9.828001 -15.343731 12.708759 11.211244 6.234231 5.543941 -4.731358 0.896872 -7.224361 -12.904711 10.565398 5.671058 4.364699 14.864818 11.020073 38.512043 -10.641048 2.240506 2.105651 -6.090366 4.071740 -5.595563 -19.016818 -0.598738 5.014004 6.635567 27.575505 -2.659632 -9.921743 3.493610 1.159181 3.231865 -11.578923 14.608030 -13.472706 3.455272 -5.853670 -7.061710 -8.799669 -4.122708 -13.296166 -6.836499 23.712465 -19.937725 -22.797383 20.266699 -8.243306 8.794677 -27.020925 14.884751 -9.821407 16.571467 -5.814671 -4.564344 -1.160183 -3.371563 -10.023767 8.775421 10.328037 -8.327682 4.299405 19.668836 3.068619 1.696255 -0.317275 8.473158 -5.195811 7.079835 -12.178480 19.925481 -2.341441 -1.927500 -6.309632 -7.553014 3.941753 -6.172622 -0.801967 -0.168094 9.168034 -0.267675 -0.461450 13.013539 5.982353 -11.895172 15.444583 0.991147 6.324739 -8.845507 -3.214593 -0.286043 7.437753 0.660134 8.356717 -21.045925 -12.235496 -25.279648 -19.032387 -5.236059 7.802878 7.403570 -1.532491 -3.734582 -15.512633 -15.288728 24.395505 -5.560220 18.675565 13.119209 12.888264 14.984262 14.793670 -1.063315 -1.688098 -8.509181 -4.736708 -6.020894 -6.544075 -7.363741 14.713650 -4.551935 9.914365 14.926320 -0.082802 10.686327 -1.099043 3.452086 -10.072863 20.721243 9.362890 -9.616957 5.877879 8.982180 15.768866 -12.029165 -13.367183 -PE-benchmarks/largest-independent-set-problem.cpp__newNode(int) = 0.075371 -0.813909 1.408327 1.194909 0.088343 0.439915 0.475097 -0.723464 1.347831 0.484419 -0.167093 0.180141 -0.866538 0.437777 -0.215830 0.748895 -1.053808 -0.977603 -0.067650 -0.597479 -0.620017 -0.889527 0.242649 -0.051554 0.416218 0.028862 -0.584834 -0.274348 -0.962660 -0.235516 1.018221 -0.406024 0.437682 0.084818 0.220672 -2.384808 0.882923 0.389375 -0.374469 -1.169187 0.022022 -0.706470 0.237440 -0.536898 0.332138 0.152159 0.212979 1.104575 0.668232 0.301485 0.198066 0.067757 -0.154134 2.364905 -0.887378 0.749766 0.544590 0.101454 -0.078210 0.478684 0.385281 0.126294 0.577064 0.847065 -0.287584 -0.582154 -0.191272 -0.719489 -0.922072 0.966465 0.348863 0.050848 -1.012869 -0.194192 -0.601140 -0.352503 -2.257308 1.065952 1.711359 -1.201440 0.938635 0.479908 1.112259 0.186198 0.682739 0.007696 1.264918 0.304733 -0.809156 -0.051377 -1.260948 -0.355594 0.022391 -0.717300 -0.221499 -1.613420 0.324205 -0.544975 -1.107191 0.606329 0.207907 0.291260 -0.664755 -0.065476 0.824186 0.421914 -0.713173 -1.159502 -0.642967 0.237564 -0.243256 -0.296071 0.480662 -0.490522 -0.210344 -0.763105 -1.216470 -0.361530 0.254703 -0.673974 -0.435055 1.071523 -0.666470 0.132045 -0.071923 0.001549 -0.297356 1.013933 0.210812 0.566966 0.432626 -0.112758 -1.775525 0.658727 0.570112 1.188363 0.080158 0.372188 -0.277840 0.363465 -0.756435 0.054800 -0.001357 0.495671 0.539666 -0.551686 -0.907496 -0.642139 0.423724 -0.912025 0.541377 -0.836306 -0.105600 0.003929 0.942918 1.200806 0.714621 0.966036 -1.143111 0.880130 -0.455122 0.416162 0.567115 0.447173 0.586370 -0.475015 -0.692746 0.215581 0.527048 0.000886 0.338365 -0.717058 0.096288 -0.916641 -0.375319 0.080088 0.557621 -0.421033 0.818365 0.484543 0.772788 -1.716147 0.353894 0.599087 -0.042346 0.111684 -0.054026 -1.178369 0.815746 0.148050 0.071861 0.554534 -0.168012 -0.701390 0.224853 -0.173552 0.350933 -0.379201 -0.276955 -0.639025 -0.777410 -0.738064 0.876309 -0.640398 -0.405175 -0.239615 -0.099436 1.191138 -0.561142 -0.685902 1.161447 -0.643596 0.409410 -1.180638 1.440434 -0.584806 0.338348 -0.501013 -0.133672 -0.313613 0.712634 -0.399894 0.176280 0.595141 -0.465064 0.367028 1.354613 0.396971 0.462208 0.362312 0.931294 -0.078697 0.099385 -0.361197 0.972731 -0.336190 -0.311286 0.077527 -0.505218 0.593850 -0.160592 0.295225 1.193209 0.831059 0.330230 0.800704 0.675290 0.495606 -0.647889 0.387064 -0.124058 0.625328 -0.601221 0.100206 -0.130222 -0.133840 -0.583440 0.431283 -1.114728 -1.218030 -0.771215 -0.584023 -0.193755 -0.051746 -0.063284 -0.121151 0.078926 -1.252454 -0.501902 0.114383 -0.556188 -0.137865 0.515006 0.329892 0.859669 1.240125 -0.674303 -0.352710 0.214878 -0.147187 -0.382425 -0.270601 -0.775455 0.866617 -0.906471 0.503939 0.984433 -0.237323 0.091099 0.031148 1.279181 -0.527130 1.465389 0.719259 -0.453789 0.475738 1.132850 1.846532 0.350727 -0.681021 -PE-benchmarks/largest-independent-set-problem.cpp__main = 0.072513 -5.924129 10.231218 9.069612 -0.995375 3.915348 0.549028 -5.809373 6.734592 1.635950 -1.439603 3.178065 -4.698907 1.875288 -0.168145 4.038937 -7.499467 -5.518217 -1.611812 -4.180134 -3.482270 -4.511861 0.157700 3.133651 2.821991 2.325546 -4.582462 0.122921 -6.076563 -3.458583 5.036187 -1.460206 4.328391 1.548895 2.565823 -16.860206 6.900288 5.277579 -1.733578 -8.669163 0.508963 -3.735764 -0.427035 -2.824513 -2.230603 1.508244 0.276085 4.015899 2.875578 1.716408 -0.275822 1.917184 0.748765 13.095201 -2.396574 5.812333 4.843437 -0.339748 -0.832487 1.203728 2.638862 1.559974 4.410636 3.969089 -1.619782 -4.937188 -0.811204 -3.081919 -6.518240 5.311659 2.235604 -2.438606 -4.718977 -2.729062 -4.810105 -1.972078 -3.930899 6.729483 10.156946 -6.799631 6.262648 2.202006 4.582695 0.635049 5.052830 -0.495268 8.294383 2.940582 -3.569980 0.216611 -6.500170 -3.775370 1.497260 -2.259825 -4.145689 -8.179038 2.960318 -6.596093 -7.676502 4.140976 2.326813 -0.536281 -5.914496 -2.614593 5.063600 2.926887 -3.493848 -6.307145 -3.379877 3.340805 -1.240074 -3.514382 -0.234679 -0.319435 -0.960268 -2.971779 -8.178661 -0.450016 3.402597 -3.091545 -1.441137 6.581685 -3.918327 0.778031 -1.755964 0.645521 -2.258729 6.282983 0.298675 3.169490 1.914118 -0.707547 -4.950035 2.423581 2.025733 5.233763 -1.181101 -0.950081 -0.871771 3.018589 -3.065391 2.001774 -1.086218 3.610548 4.426428 -0.976766 -5.659692 -4.789275 -1.031824 -7.858030 1.702698 -5.493407 -2.343621 4.079371 6.077118 5.649859 3.551298 6.093839 -6.086130 5.020559 -1.560584 1.688140 3.815414 1.369572 3.068806 -3.607060 -5.308546 3.752181 2.248042 1.863620 2.196735 -3.049481 0.440831 -4.601667 -4.666071 2.577973 3.282535 0.207324 5.712433 4.081041 8.037065 -7.601997 1.599907 2.247034 -1.686610 1.151015 -0.781901 -7.513004 2.608705 1.265867 1.044245 7.595171 -1.454532 -4.165626 1.372448 0.116446 1.743113 -3.679058 1.804211 -4.801992 -1.514233 -4.471157 1.481590 -3.815643 -2.217137 -4.224438 -2.476588 9.021810 -6.469992 -7.275458 8.148253 -3.342280 4.524854 -9.623458 5.968781 -3.878908 5.329868 -2.318860 -1.671105 -0.824855 -0.426905 -3.941454 2.170134 4.097841 -3.098257 1.134585 8.115432 1.886683 1.260560 1.102964 4.686340 -1.221757 2.688669 -3.895501 7.214844 -1.468698 -1.482506 -0.658108 -3.137692 2.240681 -2.273731 1.061391 4.875425 4.652219 3.053425 3.057445 4.725528 2.734709 -4.639242 3.705163 -0.313004 2.678158 -3.570526 -0.441172 -0.138777 2.053316 -1.579062 2.972028 -7.943184 -8.208186 -8.388422 -6.317352 -1.605478 0.256150 1.446935 -0.771300 -0.944039 -6.993740 -4.887055 3.791216 -2.960544 5.280612 4.537542 3.677746 5.992845 7.099941 -3.553792 -1.451760 0.657539 -0.282995 -2.063998 -1.396303 -5.644491 6.222285 -3.475650 3.480626 7.849701 -1.010420 2.928242 -1.203963 6.476363 -3.751675 9.359826 3.997472 -4.917760 2.610871 5.015191 7.616465 0.464778 -5.120017 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__solve(int*, int) = -4.970474 -7.332453 6.390825 5.883562 2.477501 5.203102 2.714261 -2.483825 4.146283 6.805618 -1.687333 4.225471 -4.377135 -2.117750 0.853706 1.427535 -1.127288 -5.036127 1.003392 -1.688695 -0.938886 -4.357148 -3.879981 4.994168 0.797684 -2.481367 -2.338030 0.335213 -8.693123 -7.914961 -0.826933 -0.573452 3.356977 -3.355155 1.794437 -10.953260 4.709906 7.655466 -0.534798 -8.308347 -0.143559 -2.595742 -0.682717 2.561748 -1.164935 2.498886 2.736160 -0.723775 -0.575486 1.836813 2.562627 -0.434122 2.810494 9.404333 0.741630 7.302933 6.634976 -0.070298 0.756602 1.804543 1.865806 -1.464165 4.703613 3.132826 -2.625121 -0.767287 0.267248 1.379592 -5.414216 1.376863 1.584321 -4.437779 -1.547390 -1.928779 -4.530971 -2.638377 1.455040 0.335544 8.766681 -2.727961 9.474154 4.438353 5.561906 0.787672 6.416258 -0.837701 6.709033 2.173410 -5.278599 0.759865 -4.868070 -2.472449 -0.185160 4.598675 -4.090210 -0.956248 2.876778 -4.497479 -7.654369 5.259957 -1.272566 -0.680602 -6.761789 -1.651879 4.235274 2.729165 -3.141799 -6.892513 -5.956440 4.355221 -4.115034 -3.973771 -0.269684 -1.529771 -0.236285 0.162808 -4.710827 -1.257697 5.962724 -4.353965 -4.422486 6.252262 -2.520112 4.812230 -1.278244 0.438927 -0.288495 1.294002 2.273238 2.136804 0.810056 -3.614117 -9.803333 -0.850209 -0.299518 0.428815 -1.570417 -0.778357 2.563529 2.925074 2.060403 6.057211 -2.066065 5.566305 4.477937 0.958699 -2.107192 -6.242427 -0.001577 -4.150122 1.978408 -3.209516 -2.597931 0.244719 5.082694 -0.049218 0.228424 4.911928 -2.956257 4.731908 -0.959868 0.727926 0.661343 -3.117447 2.174173 -3.071228 -5.174419 3.089285 6.740303 2.104276 2.077046 -2.807015 -0.093296 -1.485497 -5.295594 0.909580 0.226471 0.452124 6.386821 3.264670 13.417254 -6.181562 0.884742 -1.554791 -0.905992 1.999176 -2.499101 -6.632310 0.950007 1.824176 0.718877 8.353844 -0.612768 -4.226413 1.773965 0.236658 0.558942 -4.606443 5.966914 -5.209338 -0.228822 -1.319107 -1.892237 -4.124477 -3.043220 -4.740676 -0.370760 7.515915 -2.761797 -7.735963 3.456363 -1.065484 1.707694 -9.549768 6.042255 -3.126439 4.602416 -3.146136 -1.884799 -0.774393 3.981611 0.018544 1.188273 3.525538 -5.306909 4.575790 5.265396 0.584982 2.113586 2.108560 2.019564 -0.954095 -2.419480 -4.603547 4.354405 -0.561119 -1.484797 -1.820282 -3.116849 5.585647 1.528093 -1.215050 -1.617855 5.088056 -3.754212 -1.286384 5.847508 -1.339810 -3.033296 2.621810 1.088359 4.883462 -2.895413 -0.198696 -3.979060 0.152171 1.398106 2.824120 -7.216733 -2.009100 -3.128693 -6.408042 -2.234840 4.405588 1.525638 2.691673 1.045741 -8.442896 -3.902210 6.184284 -2.083751 3.659979 3.650299 5.189134 5.668915 3.583792 1.519167 -2.475992 -2.241117 -1.864274 -4.838557 -2.894091 0.057290 2.369816 -3.252483 6.229729 1.497431 0.973011 2.193406 0.124510 1.800382 -3.942368 7.696641 4.561550 -3.661160 0.805434 3.646653 8.290122 -7.586551 -4.073600 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = -0.824995 -2.105314 2.337138 2.080084 0.392468 1.224950 0.785527 -0.864265 1.451997 1.511279 -0.632059 1.215048 -1.460218 -0.080140 -0.154935 0.905533 -1.050843 -1.624117 0.185042 -0.504504 -0.436879 -1.312810 -0.400914 1.124429 0.624599 0.000435 -0.903213 -0.175071 -2.278311 -2.020721 0.335448 -0.439190 1.095701 -0.346294 0.403981 -3.458599 1.517616 1.939283 -0.353150 -2.513922 0.190311 -0.819911 -0.133976 0.034627 -0.312062 0.678156 0.754864 0.495480 0.217332 0.733833 0.466179 -0.044195 0.870061 3.021772 -0.157423 1.921861 1.857421 0.054812 0.133369 0.291645 0.735409 -0.218488 1.255939 1.133731 -0.547870 -0.627033 -0.317156 -0.212574 -1.692013 0.795647 0.289614 -0.630934 -1.028488 -0.503039 -1.269643 -0.561014 -0.745947 0.800127 2.899601 -1.291903 2.526527 1.129124 1.569870 0.065915 1.407887 -0.049153 1.650604 0.803529 -1.366544 0.102799 -1.394970 -0.750225 0.065835 0.558623 -1.080921 -1.245885 0.991775 -1.471129 -2.222125 1.383331 -0.024785 -0.141573 -1.393128 -0.345529 1.159595 1.019575 -1.102192 -1.972004 -1.316591 0.811541 -0.641635 -1.065072 0.058827 -0.198243 -0.248523 -0.210531 -1.799832 -0.412477 1.315144 -1.430301 -0.708215 1.697177 -0.650112 1.184779 -0.383569 0.125083 -0.196266 1.066939 0.738438 0.843699 0.403602 -0.546917 -2.314326 0.237352 0.436079 0.674544 -0.583664 -0.031341 0.351739 0.805399 0.189133 1.052545 -0.461499 1.285970 1.358924 -0.165395 -1.114612 -1.717483 -0.161295 -1.609592 0.626160 -1.251741 -0.537231 0.452211 1.594164 0.351250 0.524254 1.848953 -1.322176 1.264483 -0.292144 0.274175 0.466780 -0.282366 0.776523 -0.892482 -1.554120 1.018587 1.642892 0.512453 0.611402 -0.836976 0.133860 -0.875441 -1.211826 0.596176 0.461560 -0.198735 1.748545 0.874887 2.862744 -1.627408 0.215751 0.056661 -0.201998 0.411038 -0.442489 -2.230650 0.784807 0.305615 0.366162 1.978749 -0.161299 -1.182177 0.779967 -0.180931 0.223118 -1.251263 1.262680 -1.478103 -0.326067 -0.821121 0.137983 -0.986152 -0.824249 -1.094481 -0.084619 2.341391 -1.109880 -1.781313 1.174000 -0.343446 0.676168 -2.613722 1.966237 -1.023403 1.433552 -0.643668 -0.546312 -0.093623 0.654646 -0.252040 0.001186 1.142691 -1.099508 0.993855 1.727735 0.374597 0.335127 0.682909 0.971075 -0.243346 -0.130427 -1.043090 1.332065 -0.226020 -0.549906 -0.253431 -0.875623 1.240828 0.023724 -0.140496 0.568134 1.377664 -0.391791 0.425519 1.356497 0.276147 -1.130144 0.823011 0.144190 1.580177 -0.989573 -0.057715 -0.897477 0.308942 -0.079264 1.018271 -2.164057 -1.451153 -1.428550 -1.781997 -0.729879 0.615367 0.572346 0.228502 0.185574 -2.266478 -1.284411 1.516126 -0.749171 0.955190 1.231123 1.229173 1.704260 1.318143 -0.116671 -0.691648 -0.367187 -0.143933 -1.002902 -0.548762 -0.489561 0.850968 -1.182589 1.332919 1.121096 -0.083019 0.522334 -0.118808 1.161591 -1.138880 2.570003 1.358614 -1.213924 0.627480 1.243787 2.435968 -1.255276 -1.311260 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -1.085647 -2.371815 1.935399 2.000400 1.303517 1.291717 1.783710 -0.658506 2.150762 2.471463 -0.892465 1.677315 -1.773894 -0.207524 0.487554 1.185243 -0.389630 -1.950151 0.777960 0.082108 0.013588 -2.295457 -0.093752 0.728527 0.690689 -0.189946 -0.677266 -0.466878 -3.360535 -2.787351 0.825455 -0.540869 1.228521 -0.726366 -0.047351 -4.497573 1.550381 2.108161 -0.195519 -3.619856 0.217498 -0.721133 -0.294919 0.640303 1.127930 1.342919 1.133320 1.123731 0.216874 1.220177 0.921524 -0.757759 0.706957 2.821535 -0.807162 2.702521 2.440216 0.069273 0.125680 0.481758 0.687773 -0.312463 1.677408 2.260530 -1.038130 -0.227582 -0.111967 -0.018146 -2.913957 0.821166 0.538919 -0.536666 -1.655820 -0.152293 -0.116297 -0.052660 -0.577959 0.392603 3.594780 -0.422259 4.113634 1.264604 2.238457 -0.828767 1.134551 -0.376437 1.301115 0.778450 -2.221337 -0.822048 -2.741998 -1.511838 -0.376957 1.380538 -0.670063 0.871903 0.634415 0.530058 -2.144705 0.914268 -0.463983 0.102872 -2.496589 0.764350 1.560843 1.364017 -0.444513 -2.661006 -2.511114 0.772894 -1.355292 -1.218034 -0.490285 -0.498055 -1.194924 -0.518403 -1.518180 -1.215447 1.903162 -2.019424 -1.744424 1.268820 -1.657517 1.509964 -0.385265 0.008045 0.190251 0.477043 1.260130 0.891888 2.558583 -1.801529 -4.606759 0.670603 0.588928 2.190751 -0.625217 0.481013 0.465923 0.534903 0.269261 1.040750 -0.232983 1.381104 2.197227 -0.467691 -1.130947 -1.671780 1.084325 -1.157572 1.566859 -1.428241 0.932217 -0.542618 1.696192 -0.434244 0.597153 2.741514 -2.776747 1.978181 -0.209710 0.703800 0.258938 0.719221 0.694611 -0.948000 -1.498012 0.965814 2.362823 -0.448868 0.574996 -0.842065 0.084885 -1.143164 -1.765861 0.797541 -0.216449 -0.166578 1.609748 0.295556 5.221197 -2.449176 0.184745 0.247047 0.265568 0.316461 -0.214139 -2.518782 1.692911 -0.118554 1.227892 2.290691 0.029068 -1.616013 0.599792 0.041169 -0.059632 -1.252480 2.083079 -1.790128 -0.698984 -0.519200 -0.280121 -0.623900 -1.313478 -0.661513 1.703741 2.371264 1.481062 -3.007662 0.679671 -1.780284 0.176594 -3.786009 3.178077 -1.274157 -0.055082 -1.416688 -0.380284 -0.394990 1.301783 0.218183 -0.426446 1.119813 -1.341438 1.877092 2.449520 0.265784 0.015251 0.911879 0.498045 0.193641 -0.667980 -0.659944 1.064589 -0.063291 0.041804 -0.391474 -0.982015 2.235649 0.124543 -1.218582 1.150060 2.301066 -1.278698 0.747542 1.568274 0.158008 -1.225575 1.211718 0.548477 2.101009 -0.585445 -0.143204 -1.020852 -0.393573 -0.131728 1.576245 -1.903997 -1.502088 1.027214 -3.423232 -0.947678 0.813407 1.165477 0.423671 0.648128 -3.561865 -0.887044 0.996003 -0.408530 1.706442 0.855051 1.190705 1.307941 0.957137 -0.339698 -0.870702 -0.924769 -0.306538 -1.686813 -1.176728 0.345838 0.444547 -1.437111 1.523038 0.554813 -0.003659 -0.068028 -1.207116 1.899385 -0.994473 3.058489 1.523735 -0.577029 0.753061 -0.023617 3.565185 -2.044049 -1.246785 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = -0.554359 -1.180746 0.947073 0.819881 0.159542 0.571977 0.607582 -0.052146 0.757963 0.265478 -0.479669 0.601961 -0.827623 -0.139479 0.009630 0.042930 -0.500902 -0.937177 0.343811 0.053170 -0.047926 -0.807338 -0.334402 0.651480 0.161558 0.339799 -0.242097 -0.202228 -1.474033 -0.184922 0.565583 -0.235417 0.566605 0.310750 0.197461 -2.133309 0.360275 0.808291 -0.072796 -1.539504 0.023265 -0.610367 0.084968 -0.237028 0.122964 0.339709 0.585956 0.665944 -0.061250 0.155888 -0.248893 -0.387477 -0.046414 1.466534 -0.122292 0.936350 1.161966 0.035415 0.061305 0.015540 0.359703 -0.305332 0.672529 0.748315 -0.643149 -0.076908 -0.102563 -0.451818 -1.004029 0.284876 0.363628 0.065197 -0.579955 -0.191717 -0.542072 -0.228516 -0.409338 0.517497 1.513956 -0.680405 1.609680 0.522070 1.156706 -0.049123 0.674622 0.063480 0.626705 0.337881 -0.857691 -0.045315 -1.480804 -0.457747 -0.201039 0.068779 -0.315234 -0.278129 0.383253 -0.411990 -0.971531 0.500196 -0.254158 0.092353 -0.654263 0.238427 0.581424 0.740243 -0.506592 -0.991206 -0.842876 0.377963 -0.504768 -0.399846 0.092889 0.222794 -0.337900 -0.787013 -0.790392 -0.294402 0.852623 -0.814186 -0.205502 0.841790 -0.781763 0.751128 -0.134575 -0.167262 -0.022214 0.738831 0.644356 -0.093672 0.667139 -0.847012 -1.434129 0.130314 0.153830 1.475930 -0.412519 -0.025237 0.442746 0.295692 0.223706 -0.068593 -0.009586 0.422932 0.510235 -0.324072 -0.500046 -1.030565 0.170422 -0.701535 0.281028 -0.630001 0.268092 0.400958 0.761170 0.474582 0.164299 1.307979 -0.934000 0.821974 -0.155317 0.129260 -0.003939 0.548740 0.364751 -0.441117 -0.654126 0.391051 0.625012 0.149279 0.331173 -0.509852 0.033940 -0.567830 -0.766819 0.371585 0.331807 0.027695 0.873451 0.366950 0.908934 -1.232214 0.009654 -0.092857 -0.024265 0.070072 -0.046312 -1.041733 0.704228 0.046007 0.072317 0.753759 -0.072831 -0.628451 0.313977 -0.026306 0.037156 -0.550345 0.517972 -0.718737 -0.385810 -0.516559 0.245038 -0.512945 -0.557419 -0.591475 0.091955 1.130004 -0.042675 -1.060022 0.205642 -0.217262 0.560290 -1.492093 0.791906 -0.532416 0.720068 -0.352588 -0.239534 -0.112831 0.235177 0.140186 -0.200224 0.540420 -0.582862 0.472359 0.834258 0.219600 0.104383 0.580989 0.425441 0.041302 -0.301947 -0.375606 0.274804 -0.130942 -0.239011 0.156365 -0.446893 0.906415 0.269375 -0.140308 0.833929 0.962739 0.022062 0.582890 0.769999 -0.106402 -0.507495 -0.041755 0.056582 1.079066 -0.383416 -0.032414 -0.714398 0.216865 0.029549 0.336535 -0.966157 -1.147423 -0.256585 -1.246429 -0.346784 -0.011163 0.172338 0.274046 0.292000 -1.449361 -0.394090 0.058491 -0.373288 1.047806 0.402540 0.490655 0.863687 0.548490 -0.420206 -0.571863 0.392811 0.181989 -0.710727 -0.043823 -0.447274 0.234349 -0.746803 0.686579 0.648791 -0.086533 0.090039 -0.208070 1.143641 -0.512329 1.484337 0.781807 -0.914474 0.190218 0.376472 1.272529 -0.314777 -0.638421 -PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -1.229420 -2.359743 2.009075 1.970218 0.676944 1.536005 0.950415 -0.820042 1.454629 1.787114 -1.250308 1.350367 -1.420528 -0.604362 0.428967 0.513855 -0.736167 -1.596103 0.547915 -0.085981 0.016522 -1.713797 -0.915393 1.438750 0.368935 0.835193 -0.522918 0.576854 -2.602144 -3.081274 0.459689 -0.276043 1.083243 0.682921 0.584749 -3.210852 1.634491 2.492990 -0.087443 -2.908560 -0.056802 -0.728428 -0.789878 0.574059 0.405865 1.501483 0.936411 0.704370 -0.245935 0.699878 0.541141 -0.874325 0.907499 1.735813 0.184470 2.360254 2.441290 -0.123502 0.563439 0.299607 0.571354 -0.346938 1.489501 1.858492 -1.144674 -0.268440 0.149453 0.158063 -2.169682 0.666917 0.630190 -1.069973 -1.175849 -0.704029 -0.688337 -0.193889 -0.309691 0.164405 3.315537 -0.259310 3.509821 1.471773 2.067577 -0.628017 1.692494 -0.396559 2.004046 0.872500 -2.007165 -0.033498 -2.052408 -1.689568 -0.008049 1.857179 -1.213347 1.432293 0.627929 -1.147012 -2.114152 1.061546 -0.432490 -0.325493 -1.663033 0.646829 1.364731 0.673627 -0.204343 -2.109197 -1.463497 1.014307 -1.707586 -1.166442 -0.904039 0.331874 -0.653005 0.451678 -1.547677 -0.579021 1.730168 -1.487976 -0.789362 1.470412 -0.800120 1.267394 -0.540526 -0.160877 0.125614 0.459260 0.909249 0.554614 1.432354 -1.354836 -3.213752 0.614637 0.322884 0.836168 -1.041394 -0.439738 1.075386 0.681647 0.562377 1.194674 -0.824048 1.607536 1.806925 -0.114850 -0.885174 -2.064403 -0.319536 -1.412856 1.009739 -1.171049 -0.087761 -0.306531 1.654534 -0.250623 0.342250 1.917812 -2.044949 1.713234 -0.220446 0.684020 0.092310 0.075241 0.601340 -1.015646 -1.358890 1.378364 1.886203 0.074438 0.813521 -0.904556 0.005780 -0.812450 -1.903919 1.645758 -0.303955 0.444224 1.931837 0.769183 4.420776 -1.372323 0.348070 -0.158419 0.092264 0.258537 -0.093886 -2.053890 1.425904 0.149733 1.368683 2.620683 0.021992 -0.981134 0.115576 0.325184 0.000914 -1.610826 2.373559 -1.594076 -0.019042 -0.432644 -0.255963 -0.871364 -1.294784 -0.955200 0.764328 2.419251 0.099404 -2.632310 0.924849 -1.040846 0.761560 -2.961187 1.666717 -1.273201 1.253304 -1.038448 -0.614825 -0.109213 0.150475 0.113368 -0.059341 1.039306 -1.230059 1.483535 1.490752 0.285322 0.182328 0.822944 0.315325 -0.264601 -0.621281 -1.077226 0.890909 0.236979 0.074165 -0.585811 -0.968108 1.693771 0.313103 -0.989398 0.430091 2.066882 -0.945767 0.032947 1.216696 -0.204386 -1.150739 0.750279 0.546584 1.511860 -0.798079 -0.557836 -1.046330 -0.136681 0.265416 0.994149 -2.124828 -1.165096 -0.201302 -2.597339 -1.283815 0.793600 1.293039 1.027772 0.546832 -2.583010 -1.076268 1.758173 -0.391075 2.023028 0.814373 1.417148 1.389202 0.792605 0.300066 -0.969336 -0.897112 0.007068 -1.643733 -0.579930 -0.244939 0.886632 -0.828985 1.718916 0.742789 -0.173451 0.394411 -0.665216 1.931685 -1.165119 2.749408 1.415369 -1.342075 0.299472 0.185579 2.626722 -1.969950 -1.326946 -PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -1.468331 -2.903140 2.695971 2.679201 1.356402 2.012905 0.824163 -0.902094 1.395681 3.019719 -1.366398 1.690496 -1.615695 -1.011741 1.108538 0.851693 -0.513986 -2.223728 0.767573 -0.152498 0.211130 -1.676034 -1.115149 1.905326 0.616586 -0.892040 -0.810524 0.166459 -3.306128 -3.571661 -0.473340 -0.316253 1.437108 0.155781 0.746963 -2.558672 2.057599 2.800873 -0.054500 -3.348960 -0.094382 -0.749263 -0.696451 0.968399 0.179872 1.717877 1.507696 -0.479406 -0.325228 1.298940 0.833903 -0.934564 1.288969 1.955349 0.805031 2.809170 2.593210 -0.306581 0.828945 0.735846 0.838045 -0.684102 1.975615 1.597789 -0.970142 -0.258141 -0.094797 0.405674 -2.024626 0.739748 0.209150 -1.513405 -0.724536 -0.769483 -1.235596 -0.489886 0.437624 0.616259 3.437349 -0.928738 3.781811 1.943251 2.414374 -0.445309 2.190756 -0.466550 2.335350 1.123449 -2.116384 -0.089880 -2.182000 -2.395370 -0.234407 1.721153 -1.467893 1.720285 0.893832 -2.037213 -2.830162 1.932296 -0.593455 -0.247674 -2.655546 0.202327 1.769130 1.242538 -0.414270 -2.347558 -1.770727 1.351865 -1.872312 -1.621106 -0.968462 -0.148099 -0.712137 0.885819 -1.983014 -0.805483 2.170869 -1.995173 -1.396251 2.087023 -0.921228 1.863063 -0.748868 -0.097277 0.050799 0.532924 1.023894 1.136185 1.599928 -1.763911 -4.175398 0.538944 0.296623 -0.326603 -0.822721 0.353546 1.220754 1.026009 0.508273 2.315469 -0.982199 2.477060 1.987965 0.107310 -1.367648 -2.472161 -0.150831 -1.444726 1.020547 -1.515706 -0.445570 0.379508 2.094425 -0.002387 0.240532 2.497508 -1.729909 1.610969 -0.453051 0.746756 -0.041416 -1.181992 0.668561 -1.347929 -1.749861 1.534117 2.963804 0.018210 1.271041 -1.216862 0.236164 -0.982535 -2.565419 1.267756 -0.223652 0.347868 2.400630 0.978769 4.118117 -1.879885 0.132264 -0.340766 0.065617 0.393766 -0.655268 -2.790246 0.933653 0.159397 1.450399 3.134323 -0.022977 -1.564927 0.325351 0.116929 -0.025707 -1.554548 2.428120 -2.191208 0.394800 -0.231843 -0.893890 -1.319793 -1.592777 -1.046934 0.750975 2.927047 0.335033 -3.133450 1.216073 -1.147591 0.449417 -3.892127 1.822618 -1.535750 1.639266 -0.890136 -0.871061 -0.579828 0.881773 0.201844 -0.058230 1.425363 -1.689154 1.991164 1.700331 0.200465 0.387669 1.053699 0.444008 -0.301590 -0.904741 -1.297328 1.309958 -0.107406 -0.008476 -1.131309 -1.175006 2.291152 0.461889 -1.234269 -0.499457 1.846679 -1.602928 -0.211148 1.934887 -0.360963 -1.560493 1.164671 0.503863 2.360168 -1.139162 -0.546781 -1.439892 -0.392246 0.448010 1.114825 -2.762506 -1.038840 -1.135613 -2.679485 -1.536335 1.206544 1.238880 0.977164 0.517548 -2.928741 -1.429874 1.519931 -0.538957 1.308536 1.271248 1.870651 2.078672 1.066921 0.666632 -1.184286 -1.468214 -0.530942 -2.224014 -1.245552 0.097094 0.879154 -1.058390 2.266035 0.732924 0.405533 0.576116 -0.044983 0.666818 -1.498025 2.697635 1.892464 -1.546605 0.228751 0.882996 2.391387 -3.165709 -1.786781 -PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = -0.842588 -3.266831 3.670870 3.312297 0.565082 1.905615 0.974578 -1.222888 2.000206 1.872897 -1.385570 2.018912 -2.165196 -0.391854 -0.073685 1.312778 -1.832750 -2.618112 0.668646 -0.285463 -0.286102 -1.904747 -0.409669 2.017752 1.102318 1.223759 -1.191043 -0.112453 -3.613933 -3.152448 0.757600 -0.639984 1.800080 1.317951 0.809735 -3.843792 2.367853 2.972602 -0.350264 -4.011841 0.249770 -1.108239 -0.681820 -0.375822 0.038681 1.534962 1.311932 1.115061 0.109676 1.225778 0.077735 -0.541859 1.426820 2.843472 0.220667 2.822028 2.787826 -0.042648 0.805762 0.181278 1.174377 -0.355802 1.982027 1.990595 -1.125059 -0.934989 -0.569076 -0.607783 -2.530945 1.256087 0.679257 -0.719638 -1.714248 -0.572874 -1.222390 -0.263210 -1.233335 1.478445 4.152569 -1.618537 4.020073 1.780940 2.569025 -0.716745 1.944662 -0.147636 2.260856 1.443318 -2.031974 -0.477801 -3.009825 -1.822235 0.017703 0.520916 -1.700971 -0.182050 1.440283 -2.114125 -3.238245 1.722020 -0.039626 -0.453286 -1.781814 0.470933 1.817367 1.630715 -0.930187 -2.577756 -1.377244 1.189626 -1.516459 -1.665827 -0.670916 0.476967 -0.772195 0.039191 -2.633192 -0.620440 2.004773 -2.146602 -0.467789 2.208198 -0.807249 1.607460 -0.808523 -0.164633 -0.081668 1.471776 1.381344 0.960180 1.645156 -1.259841 -2.843837 1.450345 1.070171 1.021038 -1.352374 0.023676 0.817424 1.224408 0.440340 1.018287 -1.008400 1.903865 1.699001 -0.660036 -1.978556 -2.765999 -0.429668 -2.133555 0.918816 -2.036039 -0.377783 1.054523 2.444741 0.444557 0.838145 2.880801 -2.702933 2.071826 -0.248263 0.988234 0.414407 0.489415 0.967382 -1.452911 -2.123847 1.873570 2.315497 0.365365 0.848904 -1.218623 0.332157 -1.480787 -2.315968 1.756767 0.356454 0.057511 2.675312 1.137733 3.300415 -2.064754 -0.051842 0.166390 -0.136961 0.179301 -0.216482 -3.387267 1.701376 0.019256 1.357381 3.102947 -0.174119 -1.672440 0.920947 0.051861 0.099565 -1.864955 2.194756 -2.277388 -0.444617 -0.988888 0.216581 -1.222082 -1.595157 -1.573963 0.165316 3.642305 -1.001109 -2.934388 1.487864 -1.237762 1.065202 -3.932444 1.773553 -1.771993 1.576960 -0.434671 -0.906890 -0.362824 -0.085018 -0.398431 -0.693130 1.715721 -1.449580 1.629774 2.415348 0.568460 0.019619 1.237749 1.031335 -0.391096 -0.064293 -1.306113 1.575664 -0.215876 -0.491991 -0.434480 -1.311927 1.731791 -0.088634 -0.913247 1.493421 2.180062 -0.176895 0.977548 1.294070 0.509072 -1.950010 0.954782 0.374199 2.370173 -1.362970 -0.489806 -1.278549 0.067801 -0.083628 1.676412 -3.263769 -2.814984 -1.483164 -3.121180 -1.386329 0.002725 1.552706 0.388945 0.318481 -3.292718 -1.999381 1.667030 -0.816811 2.124608 1.798772 1.650138 2.430559 1.599383 -0.442437 -1.142639 -0.497858 0.298803 -1.566313 -0.709826 -0.946435 1.318145 -1.418188 1.956011 2.167005 -0.275551 0.695674 -1.339996 2.276735 -1.708739 3.838095 2.061712 -2.357712 0.610218 0.880477 2.945238 -1.752310 -2.170578 -PE-benchmarks/rat-in-a-maze.cpp__solveMazeUtil(int (*) [4], int, int, int (*) [4]) = -5.682463 -9.544090 8.138657 7.358820 3.754954 6.406063 3.205597 -2.065956 4.127449 7.859484 -2.939965 5.766552 -5.318666 -3.083785 0.694547 1.575765 -1.171855 -7.289237 2.484211 -0.895393 -0.594979 -4.722754 -4.369835 6.767899 1.488673 -2.772491 -2.704811 -0.400769 -12.109840 -8.298606 -0.893610 -0.950635 4.314529 -1.268095 2.197151 -9.386386 5.170956 8.717239 -0.246983 -9.956691 -0.336634 -3.079984 -1.355989 1.996309 -0.439083 3.270999 4.457706 -1.258071 -1.046144 2.604383 2.583484 -1.835754 3.098205 9.103178 1.720324 8.619811 7.740879 -0.361724 2.580277 1.996159 2.648934 -2.571718 5.947924 4.178765 -3.570501 -0.553963 -0.263097 0.581882 -5.684672 1.590908 2.277570 -4.190752 -1.679990 -1.326591 -3.990842 -2.537193 1.139043 0.917542 10.066570 -3.383783 12.060555 5.830618 8.008271 -0.558203 7.394332 -0.798058 7.243959 3.032604 -6.470129 -0.745437 -7.699974 -2.746363 -1.175531 5.264322 -4.723748 2.977330 3.908498 -4.403625 -9.379950 6.221373 -1.912287 -0.659508 -7.166370 0.610542 4.871798 3.661575 -2.994996 -7.586781 -6.414056 4.903131 -5.766874 -4.930978 -1.449708 -1.314516 -0.992150 0.453765 -5.471469 -1.955697 7.086084 -6.028530 -4.915853 7.166968 -2.912586 6.014626 -1.889070 -0.142936 0.172468 1.300909 3.977230 1.940242 2.682616 -5.896514 -12.783534 1.039422 0.944809 0.876689 -2.949385 0.441324 3.782567 3.525618 3.086357 6.176974 -2.606351 7.364978 3.768579 -0.331433 -3.815501 -8.104146 0.754738 -3.816389 1.982467 -4.712294 -2.487722 1.154741 6.249150 0.706018 0.203795 7.245084 -4.186738 7.102554 -0.790874 1.734467 -0.082032 -3.224662 2.347551 -4.207535 -5.878796 4.016715 8.518508 1.312712 2.645090 -3.796206 0.364720 -2.745713 -7.323742 1.991323 -0.232064 0.569329 7.961441 3.262014 13.109997 -8.111286 0.186564 -1.809487 -0.495804 1.270715 -2.289999 -8.406592 2.035347 1.129844 1.183148 9.599252 -0.316268 -5.726577 1.897709 0.239175 0.378548 -5.237392 7.582759 -6.218060 -0.621828 -0.902712 -2.235917 -4.642315 -4.268064 -5.105242 -0.044983 9.378187 -2.641984 -9.468320 2.889777 -1.507708 1.430823 -11.762369 5.589962 -4.400727 4.780664 -2.545676 -2.791039 -2.095962 4.671028 0.564352 0.297183 4.463656 -6.414772 6.178635 6.409479 0.657745 2.412669 3.499521 2.041207 -0.940629 -3.175856 -4.277590 4.114295 -0.326990 -2.263162 -2.366714 -3.889440 6.627219 2.104180 -2.646486 -0.814483 6.514481 -4.161485 -0.745309 5.910580 -1.420801 -4.267461 1.790732 1.190100 7.190958 -3.558713 -0.914020 -5.088198 -1.128894 1.636788 3.277668 -8.923767 -3.968076 -2.444105 -8.026333 -2.947346 3.325373 2.490841 3.160032 1.480727 -10.337316 -4.694866 4.899610 -2.270487 5.321156 4.532858 5.943468 7.027612 3.485098 1.313609 -3.743038 -2.467766 -1.077087 -5.921881 -3.072064 -0.296641 2.272122 -4.015408 7.687075 2.544924 1.401137 2.158847 -0.465145 1.952826 -4.869467 9.358229 5.953090 -5.869420 0.560597 3.056218 8.412305 -9.124112 -5.485909 -PE-benchmarks/rat-in-a-maze.cpp__main = 0.140425 -1.112830 1.612798 1.418852 -0.090123 0.485549 0.303069 -0.556894 0.797089 0.306044 -0.562219 0.690166 -0.866761 0.206495 -0.330896 0.717732 -1.092487 -0.938449 0.034791 -0.187307 -0.213683 -0.637820 0.230138 0.551139 0.641883 0.867499 -0.555202 -0.167969 -1.095426 -0.869116 0.525537 -0.316213 0.667880 0.738424 0.267595 -1.466345 0.907044 0.968263 -0.253816 -1.449650 0.260174 -0.432912 -0.213064 -0.533028 -0.047596 0.476025 0.349241 0.800833 0.242784 0.523543 -0.151953 -0.037651 0.574132 1.243512 -0.098120 0.889587 1.004719 0.076250 0.212353 -0.094327 0.507700 0.044883 0.532372 0.687762 -0.186898 -0.622897 -0.478407 -0.540784 -0.847288 0.645693 0.087870 0.048156 -0.939798 -0.302555 -0.542993 0.001519 -1.237751 0.952326 1.624463 -0.958115 1.183188 0.512003 0.751284 -0.255318 0.420977 0.071829 0.584622 0.606290 -0.490689 -0.075688 -0.922905 -0.632040 0.151440 -0.354733 -0.658672 -0.927459 0.665416 -1.033535 -1.158634 0.539282 0.251064 -0.222551 -0.135811 0.161927 0.460590 0.667937 -0.488770 -0.843543 -0.168657 0.195434 -0.023447 -0.519416 -0.112296 0.380266 -0.275582 -0.147392 -1.228990 -0.093115 0.471140 -0.758668 0.253537 0.732937 -0.167594 0.427023 -0.288177 -0.048143 -0.136585 1.017560 0.474704 0.482314 0.462121 0.002392 -0.542538 0.754353 0.642130 0.573950 -0.569338 0.135555 0.072368 0.410509 -0.059374 0.022770 -0.290175 0.425310 0.569306 -0.458136 -0.945824 -0.923079 -0.440940 -1.020483 0.300267 -0.825406 -0.135710 0.592845 0.897683 0.453060 0.528832 1.210124 -1.087749 0.452943 -0.058319 0.283913 0.313709 0.461604 0.419957 -0.493361 -0.812671 0.753236 0.540060 0.159947 0.325666 -0.328970 0.204661 -0.745933 -0.473712 0.793288 0.405108 -0.215166 0.952427 0.473784 0.435175 -0.474282 -0.024364 0.316750 -0.114825 0.004156 0.060786 -1.342351 0.812081 -0.068458 0.554940 0.848287 -0.064541 -0.401387 0.543098 -0.192039 0.094847 -0.618323 0.462632 -0.766298 -0.301703 -0.680462 0.569156 -0.290919 -0.462823 -0.419825 -0.050285 1.368975 -0.681939 -0.633905 0.636876 -0.276889 0.481539 -1.156585 0.764022 -0.634828 0.768024 0.085309 -0.301766 0.062106 -0.398827 -0.361925 -0.412368 0.660683 -0.254813 0.257538 0.879924 0.309260 -0.219200 0.425929 0.628352 -0.228440 0.408735 -0.386647 0.634428 -0.110634 -0.284222 0.036527 -0.411492 0.283104 -0.332369 -0.109472 1.127168 0.589762 0.446835 0.722726 0.265724 0.595100 -0.800560 0.418403 0.016224 0.834423 -0.617024 -0.167212 -0.254251 0.276523 -0.262857 0.635770 -1.197358 -1.433592 -1.029597 -0.954092 -0.467616 -0.431706 0.573438 -0.208304 -0.058896 -0.974683 -0.905336 0.550238 -0.408877 0.565306 0.751277 0.427613 0.906494 0.745474 -0.430827 -0.252397 0.033673 0.374357 -0.220738 -0.060578 -0.639525 0.607188 -0.607714 0.316054 1.222195 -0.321963 0.311638 -0.441089 1.125944 -0.620044 1.512629 0.681171 -0.956043 0.461403 0.613915 1.001244 -0.025669 -0.822574 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -9.952651 -22.080834 19.154451 19.022317 6.913451 14.682527 9.290124 -6.756653 6.829993 18.756826 -8.558091 14.334181 -11.056151 -6.413513 -0.062073 4.204063 -2.878091 -13.562322 3.110010 -2.375036 0.930340 -10.263344 -11.040787 17.606294 4.716276 -3.960464 -5.632639 -0.709991 -26.683639 -23.546363 -2.513746 -0.496553 9.646478 -1.527349 4.870118 -21.564065 12.347541 24.178437 -0.681935 -21.598461 0.779890 -4.545512 -7.843620 7.643658 -2.151775 9.532931 7.437444 -1.516286 -3.730418 7.151067 8.706118 -3.062494 13.713122 19.188621 4.565044 22.174592 20.319890 -0.154026 8.952431 3.262538 5.522952 -3.432353 11.512819 10.298966 -3.902669 -2.579680 -2.740133 4.660019 -12.392676 2.910591 3.990454 -10.944336 -6.840579 -4.347117 -10.321160 -4.256323 -4.837333 0.111992 25.685916 -5.026053 29.750394 14.240967 16.662171 -4.631067 15.658364 -1.893420 14.567228 7.831802 -13.496534 2.964862 -14.779722 -8.167004 0.205547 15.537955 -15.400732 4.867828 9.470866 -12.605472 -21.592404 13.913080 -2.837064 -5.972849 -9.397895 1.774547 6.889666 4.933894 -6.017100 -17.279013 -13.791452 11.869048 -9.962058 -12.119261 -6.170190 0.422789 0.150985 4.821681 -12.427028 -1.459677 16.555366 -12.290317 -8.311520 14.369289 -3.028597 13.765788 -4.802496 -0.360871 0.178622 1.251512 7.525332 6.719844 5.817229 -10.817785 -29.103401 2.717118 2.852728 -0.610622 -8.700459 -1.635437 9.841455 8.837095 10.379556 19.136656 -3.204912 16.522377 10.028167 0.848803 -7.130053 -18.942948 -2.671897 -8.881927 6.225914 -8.388174 -7.425154 -1.698414 13.423419 -3.233804 0.685238 11.250828 -7.670779 13.486624 0.004353 3.490339 -0.299274 -9.952355 4.244406 -8.282384 -14.430764 11.841498 18.622412 4.917325 6.603727 -4.642109 0.271688 -3.750017 -14.210425 6.897028 -2.099348 0.506803 20.171745 9.249866 35.890968 -9.245719 1.844427 -4.555769 -2.294714 3.743889 -4.699455 -19.061337 7.247602 2.651432 4.668185 24.405654 -0.527466 -7.373426 6.056605 -0.468168 0.323897 -13.948102 21.606920 -13.692734 -0.144453 -3.925005 -4.737489 -7.745947 -9.524977 -10.905742 2.340029 21.447842 -7.259517 -17.857558 5.964874 -3.949967 -0.000713 -23.252922 18.658556 -9.000304 11.001264 -6.092116 -8.271587 -0.716115 8.001515 -0.839787 0.628319 9.693154 -15.673454 13.587566 12.218325 0.941211 2.114872 6.609802 3.938714 -4.320541 -5.329241 -12.429848 10.068846 1.821874 -4.050744 -6.863969 -7.828136 13.798055 2.257133 -5.894310 -2.408482 12.598058 -9.367450 -6.312215 12.573641 -2.301283 -9.290718 6.118763 3.189649 13.006435 -8.995637 -3.436053 -10.464598 -2.875522 4.911363 7.639872 -20.252493 -4.805073 -9.079987 -15.635988 -7.734545 7.063802 9.915332 8.399981 1.646974 -24.457567 -14.286906 15.508762 -5.540263 3.226404 12.122542 13.863992 14.759242 6.012735 8.058387 -4.228650 -10.141403 0.878044 -11.181455 -6.565661 0.936561 5.890936 -8.532238 16.572355 5.199426 2.334683 7.783170 0.824419 8.260065 -11.616873 23.226873 11.812193 -13.291887 2.155205 8.078305 16.987435 -23.260928 -11.564485 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = -8.961272 -23.828298 22.157630 21.328765 5.247939 15.138028 9.276855 -7.242855 7.311173 16.872306 -9.803515 15.690999 -11.951380 -6.077906 -0.612341 4.424563 -6.000726 -14.631912 3.016139 -2.572172 0.548874 -10.531296 -11.305734 19.345345 5.738670 -0.718869 -6.344924 -0.978136 -27.617993 -22.827806 -1.127877 -0.813445 10.825154 1.192509 6.018750 -25.645868 13.243774 25.336108 -0.973332 -24.101852 1.214423 -5.341169 -8.269139 5.545053 -3.386131 9.848368 8.076375 1.115880 -3.889008 7.399799 6.107176 -2.985424 14.386354 21.828853 5.359877 23.082291 22.677592 -0.313208 9.229718 2.286837 6.457150 -3.676351 11.906014 10.614783 -4.018571 -3.867435 -3.572431 2.816160 -13.029733 3.644656 4.959366 -10.427113 -8.166388 -5.263287 -12.042425 -4.243090 -6.560273 2.898282 27.916583 -7.506448 31.227102 14.654838 17.728124 -4.538645 16.199811 -1.327420 15.241349 8.978324 -13.568881 3.452392 -17.022993 -9.760471 0.828540 13.209777 -16.666696 1.188476 10.527363 -15.679721 -23.103633 14.719584 -2.104808 -6.818788 -8.330474 1.288287 7.388911 6.186778 -6.980820 -17.716391 -13.541195 12.082946 -9.879841 -12.636926 -6.146419 2.846720 0.146367 3.760497 -14.687166 -0.494374 17.698437 -12.638080 -6.227286 15.562140 -3.185320 14.391115 -5.430448 -0.743761 -0.307248 3.894414 8.405813 6.308314 6.192667 -10.642970 -27.340201 4.020119 3.678372 1.398628 -9.938128 -2.546432 10.433568 9.844209 10.615935 18.131138 -3.246573 16.847997 9.910012 0.194426 -8.791115 -21.119632 -4.521802 -10.696082 5.936410 -9.463701 -8.008544 1.088423 14.639870 -1.607749 1.216825 12.296384 -9.038536 13.892190 -0.082052 3.942545 -0.151885 -8.282157 4.777304 -9.035156 -15.285773 13.096980 18.048921 6.129684 7.002717 -5.061586 0.870502 -4.814224 -15.149629 8.434303 -0.504502 0.582028 21.673591 10.579131 34.716992 -9.634249 1.198517 -4.477381 -3.126040 3.308111 -4.073080 -20.685256 8.424446 2.566321 5.144785 25.723831 -0.758590 -7.503073 7.040050 -0.445999 0.105853 -14.456511 21.595251 -14.552940 -0.783061 -5.290977 -3.133776 -8.578761 -9.893747 -12.571013 0.906324 23.822268 -10.124982 -18.612423 6.844981 -4.144716 1.943455 -24.939293 19.070345 -9.808337 13.203439 -5.218077 -9.143009 -0.152278 5.402871 -1.982534 0.189732 10.655343 -15.896699 12.690502 12.968207 1.588790 1.470614 7.257650 5.040446 -5.019342 -4.051303 -13.206192 10.578078 1.268293 -4.615627 -6.637831 -8.105252 13.700945 1.777110 -5.175701 0.056055 12.680993 -6.775723 -4.693828 13.189188 -1.656455 -10.610026 5.859376 2.749814 14.139777 -10.145465 -3.963436 -10.986339 -1.316721 4.903022 8.124248 -22.260968 -7.981377 -12.854017 -16.830475 -8.569185 5.427029 10.664063 7.843826 1.138421 -25.789185 -15.809651 15.761745 -6.164510 4.309937 13.786863 14.192290 16.573543 7.026331 6.940820 -4.677487 -8.496352 2.437919 -11.023556 -5.647214 -1.562960 7.039706 -9.475006 16.749547 8.541449 1.558296 8.791371 0.005182 11.279644 -12.619611 25.712432 12.700327 -16.593692 1.988967 9.701259 17.019342 -22.073930 -13.014634 -PE-benchmarks/little-and-big-endian-mystery.cpp__show_mem_rep(char*, int) = -1.060005 -1.801869 1.449673 1.361449 0.462234 1.160412 0.718863 -0.465875 0.936704 1.224526 -0.748156 0.862472 -1.213578 -0.456026 0.162027 0.149346 -0.500965 -1.264655 0.368223 -0.203865 -0.132896 -1.188615 -0.780840 1.175582 0.221212 0.169210 -0.370137 0.146621 -2.155481 -1.510651 0.180788 -0.193261 0.792506 0.441612 0.411315 -2.305673 0.938535 1.649860 -0.097863 -1.917715 -0.052428 -0.789565 -0.296581 0.290994 0.187524 0.787607 0.749592 0.284587 -0.101691 0.274441 0.457749 -0.654181 0.436746 1.732662 0.023976 1.708914 1.691241 -0.074361 0.398588 0.336409 0.377141 -0.419614 1.111916 1.140769 -0.912805 -0.114282 0.104426 -0.091578 -1.243782 0.471944 0.508601 -0.592921 -0.608631 -0.483210 -0.746694 -0.474118 -0.322713 0.192317 2.236181 -0.556463 2.540555 1.113113 1.583629 -0.206339 1.451642 -0.168806 1.602319 0.484459 -1.439167 0.149094 -1.572697 -0.787903 -0.141799 1.233740 -0.820310 0.560716 0.548790 -0.982037 -1.733889 0.942377 -0.433577 -0.134330 -1.211141 0.378417 0.872758 0.482702 -0.514439 -1.666350 -1.243116 0.768401 -1.176181 -0.774277 -0.325144 0.038267 -0.318591 -0.110438 -1.161580 -0.382540 1.242905 -1.163329 -0.782719 1.396397 -0.606816 1.095165 -0.229256 -0.095395 0.009584 0.523370 0.655293 0.261975 0.630266 -1.055954 -2.579109 0.147839 0.213324 0.635705 -0.666052 -0.266648 0.807490 0.533992 0.383162 0.865272 -0.420499 1.346146 1.044480 -0.208193 -0.596992 -1.542317 -0.025402 -1.041965 0.555698 -0.859793 -0.271491 -0.174914 1.221976 0.223292 0.164725 1.479715 -0.974901 1.243000 -0.223800 0.277485 0.078986 -0.078823 0.560670 -0.799431 -1.072558 0.794156 1.349197 0.269937 0.568478 -0.714742 -0.057372 -0.643846 -1.358288 0.760807 -0.059228 0.144256 1.586799 0.736398 2.961523 -1.556387 0.398242 -0.197165 -0.022639 0.249600 -0.159692 -1.521888 0.778961 0.257381 0.302801 1.673989 -0.034674 -0.856511 0.182468 0.059690 0.133675 -1.227085 1.377769 -1.139384 -0.044317 -0.511196 -0.017265 -0.815553 -0.987120 -0.714971 0.318502 1.787189 -0.289307 -1.744590 0.670323 -0.275548 0.554318 -2.210452 1.176276 -0.889117 1.041295 -0.860435 -0.574391 -0.162954 0.711272 0.182915 0.142185 0.771631 -1.168020 1.090202 1.061075 0.249745 0.479720 0.690941 0.503665 -0.114303 -0.624418 -0.869595 0.721161 0.127649 -0.252674 -0.312570 -0.773402 1.298658 0.490163 -0.404606 0.318560 1.588302 -0.657419 0.012096 1.209011 -0.246224 -0.719788 0.257697 0.241962 1.298853 -0.691227 -0.297040 -0.927808 -0.089134 0.214488 0.550446 -1.690291 -0.942217 -0.232161 -1.615974 -0.747450 0.667411 0.601818 0.885598 0.438869 -2.101918 -0.758133 1.102794 -0.504855 1.163704 0.597205 1.077360 1.230364 0.773447 0.221030 -0.795604 -0.301601 0.063729 -1.199843 -0.324596 -0.329626 0.610651 -0.881217 1.456386 0.515035 -0.047470 0.349796 -0.088881 1.332604 -0.988631 1.951119 1.098667 -1.139988 0.305816 0.700236 1.813122 -1.239197 -0.956379 -PE-benchmarks/little-and-big-endian-mystery.cpp__main = -0.151609 -0.820822 0.834642 0.739387 0.093079 0.410171 0.349613 -0.230192 0.747197 0.242493 -0.367943 0.257513 -0.671615 0.058324 -0.101955 0.239769 -0.554435 -0.753851 0.175309 -0.093276 -0.180116 -0.651006 -0.065548 0.309627 0.189500 0.288908 -0.242193 -0.080926 -0.928330 -0.120359 0.539508 -0.274220 0.352050 0.474724 0.205769 -1.178172 0.430556 0.457692 -0.125535 -0.962215 -0.059394 -0.485348 0.086327 -0.341527 0.252970 0.264965 0.368238 0.675995 0.174389 0.148186 -0.033766 -0.304046 -0.058253 1.078970 -0.282999 0.624636 0.659102 0.071552 0.135390 0.123190 0.300836 -0.107852 0.457427 0.667911 -0.408457 -0.174283 -0.146264 -0.442017 -0.639494 0.443424 0.236492 0.177304 -0.622553 -0.153446 -0.381865 -0.183088 -1.113406 0.525997 1.247094 -0.644835 1.000381 0.493048 0.950123 -0.037699 0.523133 0.028280 0.690858 0.272404 -0.712865 0.068495 -1.030641 -0.328403 -0.094531 -0.197839 -0.214182 -0.435880 0.243179 -0.487515 -0.788815 0.405575 -0.086966 0.178227 -0.273165 0.261801 0.493055 0.378012 -0.432017 -0.790898 -0.378473 0.130607 -0.299362 -0.256954 0.165073 0.039679 -0.201073 -0.478070 -0.738405 -0.327552 0.388917 -0.665029 -0.046146 0.687117 -0.458572 0.403344 -0.093405 -0.162473 -0.041703 0.658148 0.419886 0.142730 0.371795 -0.397854 -1.123710 0.382735 0.284512 0.865898 -0.199426 0.151110 0.210347 0.229530 -0.098549 -0.066858 -0.051721 0.304713 0.289146 -0.372683 -0.520064 -0.676221 0.073269 -0.579178 0.325997 -0.561758 0.049856 0.076846 0.642532 0.599313 0.310157 0.898559 -0.726699 0.568959 -0.229292 0.258315 0.142916 0.408558 0.352114 -0.336502 -0.478863 0.317871 0.453487 -0.007989 0.341663 -0.541470 0.054648 -0.569793 -0.389864 0.307867 0.262889 -0.148377 0.695431 0.252117 0.326456 -0.901196 0.165241 0.156880 0.099499 0.059294 0.021422 -0.851146 0.684700 -0.001799 0.148805 0.356014 -0.068863 -0.406432 0.191849 -0.099075 0.147801 -0.425454 0.130329 -0.501347 -0.352525 -0.507758 0.601193 -0.395331 -0.411733 -0.202297 0.107864 0.851797 -0.147945 -0.508906 0.397374 -0.150438 0.419478 -0.810885 0.573642 -0.444162 0.533624 -0.229751 -0.181948 -0.094432 0.219227 0.045781 -0.159996 0.450058 -0.315381 0.312733 0.568188 0.216448 0.166991 0.485338 0.460792 -0.013149 -0.143244 -0.222192 0.327210 -0.062058 -0.190832 0.128535 -0.382587 0.568430 0.085209 -0.021175 0.777953 0.730902 0.118520 0.531477 0.389085 0.071812 -0.448281 0.001508 0.004268 0.682562 -0.413720 0.005683 -0.398407 -0.006709 -0.217776 0.257680 -0.772726 -0.917327 -0.312000 -0.569645 -0.346495 -0.105349 0.100128 0.150380 0.199565 -0.879439 -0.333648 0.078383 -0.357743 0.349070 0.286850 0.327861 0.641037 0.597810 -0.346644 -0.443670 0.238685 0.108220 -0.446863 0.019623 -0.479899 0.362017 -0.607537 0.459283 0.597668 -0.172644 -0.002621 -0.076361 0.981520 -0.400995 1.072602 0.608671 -0.602662 0.253667 0.517431 1.087214 0.066115 -0.514434 -PE-benchmarks/partition-problem.cpp__findPartiion(int*, int) = -8.573382 -16.896429 12.497363 12.355071 5.305538 12.213898 7.450381 -2.112882 4.521348 13.300449 -4.873764 11.100523 -6.870632 -6.007855 0.502779 1.136384 -0.142951 -9.433641 3.944679 -0.630621 1.366465 -8.145622 -9.951742 14.295664 1.729283 -0.551573 -3.148544 -1.121506 -20.948015 -14.828590 -2.302318 -0.200503 6.480450 -1.186199 4.453249 -13.837008 7.084820 17.076725 0.822460 -17.217063 -0.547387 -2.404814 -3.179972 8.051415 -0.544826 7.516364 5.876578 -1.474943 -3.326084 4.121480 4.759345 -2.467943 10.446299 12.362452 4.762684 15.222067 14.264132 0.068141 7.606171 1.325568 3.705826 -3.578496 7.212236 6.643165 -3.230715 -0.342517 -2.418735 4.272847 -8.584925 0.612674 4.293105 -7.315706 -4.828244 -2.045764 -6.994141 -3.788055 -4.033081 -0.540387 17.256261 -2.242013 22.082821 10.076687 13.138925 -2.701986 12.283445 -1.054588 9.738395 5.017348 -10.177359 3.311942 -11.831406 -3.384304 -0.832828 10.092463 -11.176130 3.888884 5.459517 -7.724820 -14.982578 10.537452 -3.464708 -2.888826 -5.648083 1.323571 5.853398 4.114598 -5.044668 -12.715878 -10.361408 9.015276 -8.401196 -8.223070 -2.951719 -0.331422 0.809231 2.656562 -6.378034 -1.119553 12.633844 -8.248909 -6.056538 10.637087 -0.854120 11.155606 -2.904158 -0.653370 0.445901 -0.650993 8.124310 2.941755 2.563055 -10.394964 -19.906364 3.189192 -0.782587 -1.165462 -6.877023 -3.457761 7.409429 6.267796 10.396851 12.992980 -1.722906 9.951540 7.414144 0.839903 -2.991471 -14.198773 -1.147613 -5.015249 3.477512 -4.735944 -4.552740 -1.951745 8.553430 -2.768261 -0.359076 4.608613 -4.671264 9.253986 0.079155 2.837707 -1.311267 -3.630564 1.832175 -5.155421 -9.395286 6.528800 13.473560 4.147018 3.793203 -4.076115 -0.451997 -0.104037 -8.220100 4.702980 -1.154095 1.475162 15.062665 6.167690 25.685483 -6.239702 -1.440313 -5.011027 -2.342471 2.491585 -3.822818 -12.506700 4.889681 2.285395 2.137905 16.404904 -1.785710 -3.623844 5.648067 0.859852 0.655643 -9.985828 16.021058 -9.884425 -1.336550 -2.579355 -3.979321 -7.236382 -6.002996 -9.933170 1.136010 14.833113 -4.729795 -12.320770 1.836870 -3.203469 -0.777060 -15.044195 10.726125 -5.755210 5.523392 -3.948970 -5.503478 -1.338647 6.839940 1.044940 -0.534989 6.646783 -13.303892 10.263250 7.365736 0.382712 0.601723 5.428557 1.900891 -2.256851 -5.861210 -9.054422 6.406851 0.459059 -1.710800 -3.876794 -5.195171 11.099191 3.398509 -5.058823 -3.113925 8.628765 -7.448048 -6.332339 8.941729 -4.583633 -5.771788 2.402977 1.528349 9.808180 -6.103063 -1.903485 -9.809502 -2.004328 4.846223 3.911467 -14.540853 -1.526031 -3.687722 -10.910586 -5.660518 5.310123 5.717330 8.227450 1.987949 -18.757036 -10.195829 10.719510 -3.023778 1.842035 7.518250 8.590890 11.095027 3.459766 6.067543 -3.624774 -6.561387 -0.901218 -8.507635 -4.130413 1.336739 3.109153 -5.786476 12.443935 2.707488 1.839139 5.062885 -0.284880 4.462106 -8.370791 16.419176 9.062291 -9.742481 -0.288917 3.934851 13.596064 -17.186559 -7.997299 -PE-benchmarks/partition-problem.cpp__main = -1.867621 -4.724306 4.055481 3.764017 0.944852 3.184525 1.711872 -0.782699 1.697419 2.630318 -1.799661 2.970564 -2.328840 -1.448519 -0.127508 0.407633 -1.191475 -3.009101 1.172101 -0.027675 0.323074 -2.403420 -2.202343 3.920519 0.721937 1.298470 -0.959831 -0.077613 -5.703893 -3.663828 0.109629 -0.295290 2.000310 1.211952 1.431777 -3.980935 2.240323 4.574743 0.059896 -5.273220 -0.009426 -1.151275 -0.929244 0.938622 -0.014436 2.199402 1.769163 0.759972 -0.778728 1.085078 0.202248 -0.887126 2.441592 3.165488 1.221397 4.051090 4.129364 0.076252 1.990877 0.138764 1.228525 -0.906241 2.143085 2.162263 -1.404753 -0.405577 -0.753016 0.237449 -2.599278 0.676868 1.198414 -1.428194 -1.753434 -0.676740 -2.111945 -0.672558 -1.597667 0.878349 5.064079 -1.296233 6.001064 2.690263 3.841179 -0.861238 3.238135 -0.158273 2.817137 1.645762 -2.789028 0.415279 -4.247378 -1.631773 -0.166413 1.445059 -2.902554 0.506537 1.641077 -3.069840 -4.260606 2.598613 -0.754134 -0.876317 -1.338820 0.775559 1.938731 1.638210 -1.290093 -3.389685 -2.182284 2.335033 -2.440145 -2.159110 -0.739622 0.765473 -0.158890 0.208026 -2.425926 -0.301312 3.402223 -2.411085 -0.721924 3.084838 -0.489351 2.867664 -0.910697 -0.477695 0.094017 0.838128 2.284144 0.524848 1.228819 -2.668316 -4.341788 1.651212 0.312556 0.477121 -2.174670 -0.689145 2.085813 1.763561 2.261507 2.315196 -0.982504 2.396052 1.674284 -0.392992 -1.414213 -4.184963 -0.793325 -1.938257 0.864680 -1.709817 -1.063557 0.478889 2.739068 0.057121 0.288281 2.126733 -2.231023 2.422698 -0.048611 1.079046 -0.255390 0.111793 0.741272 -1.609239 -2.676763 2.154911 3.212439 1.062404 1.055957 -1.325848 0.048958 -0.727982 -2.586137 2.000836 0.169264 0.557527 4.253841 1.820329 5.000649 -2.012865 -0.460938 -0.956171 -0.560002 0.388472 -0.681093 -3.837164 1.920528 0.417790 1.243227 4.367802 -0.468582 -1.169484 1.459707 0.319765 0.168022 -2.767511 3.740577 -2.892159 -0.572380 -1.085752 -0.254978 -1.941011 -1.987665 -2.827867 -0.026320 4.466308 -1.420192 -3.567358 0.876184 -1.160526 0.740243 -4.421409 1.943276 -1.908970 2.016461 -0.470569 -1.349499 -0.347981 0.517259 0.028386 -0.741058 2.012927 -3.122790 2.552455 2.082330 0.439967 -0.040598 1.777822 0.779871 -0.700852 -1.154605 -2.379235 1.563414 -0.091122 -0.551098 -0.600994 -1.562586 2.857748 0.736395 -1.303731 0.604439 2.598484 -0.931032 -0.389798 2.115320 -0.756045 -1.980130 0.438335 0.373418 2.901340 -1.791855 -0.696226 -2.642571 -0.247313 0.975057 1.322328 -4.291991 -2.049262 -1.652181 -3.563423 -1.695947 0.230392 1.791552 1.856989 0.599950 -5.059372 -2.866557 2.527635 -0.935966 1.613839 2.184259 2.206666 3.276740 1.359013 0.660735 -1.233577 -0.858488 0.344543 -2.392637 -0.795361 -0.604121 1.247581 -1.708798 3.199063 1.884927 0.012949 1.307919 -0.989114 2.238522 -2.397249 4.887895 2.743038 -3.440348 -0.053640 1.020472 3.595257 -3.542349 -2.588678 -PE-benchmarks/longest-palindromic-subsequence.cpp__max(int, int) = -0.876546 -1.017857 0.920345 0.733667 0.540435 0.634457 0.349080 0.054689 0.575886 1.075504 -0.482711 0.647732 -0.617249 -0.310051 0.309333 0.261322 -0.099229 -0.917265 0.427901 0.094490 -0.105550 -0.629093 -0.480552 0.505801 0.207840 -0.060184 -0.421066 0.010796 -1.198241 -1.359901 -0.239417 -0.154084 0.488102 -0.232424 0.288753 -1.258429 0.546521 0.885417 0.013814 -1.278893 -0.001211 -0.244405 0.007511 0.385625 0.224524 0.685832 0.871230 -0.018112 -0.083856 0.394849 0.250419 -0.505317 0.157575 0.882624 0.243397 0.901965 0.910628 -0.124758 0.099807 0.182085 0.262892 -0.534486 0.628328 0.627047 -0.593548 0.099238 0.142365 0.113560 -0.776396 0.257336 0.236275 -0.468616 -0.258291 -0.340096 -0.356253 -0.197586 0.334992 0.086172 1.315188 -0.224730 1.378366 0.650891 1.120715 -0.051378 0.672135 -0.228331 0.757463 0.301083 -0.894862 -0.117378 -0.707972 -0.652606 -0.317413 0.977627 -0.309534 0.627693 0.320387 -0.433120 -0.944672 0.597427 -0.342818 0.136083 -1.137775 0.227690 0.819613 0.648739 -0.156808 -0.867718 -0.865081 0.311885 -0.820306 -0.418219 -0.060853 -0.252549 -0.374887 0.158720 -0.645066 -0.389715 0.773221 -0.795804 -0.598152 0.698699 -0.522503 0.869122 -0.148464 0.081978 0.124101 0.262258 0.723168 0.203108 0.404337 -0.703788 -1.667565 -0.031233 0.014589 0.327468 -0.324789 -0.009506 0.346830 0.238617 0.142104 0.474740 -0.480003 0.882375 1.111386 -0.054432 -0.570777 -0.911159 0.156410 -0.454639 0.296768 -0.509938 0.027176 -0.024485 0.622288 -0.041281 0.013055 1.270420 -0.760157 0.735198 -0.185199 0.131808 -0.063869 -0.200309 0.284458 -0.472218 -0.536370 0.379917 1.116387 0.049888 0.392223 -0.602545 0.067598 -0.375680 -0.889321 0.540617 0.071221 0.250507 0.693322 0.238863 1.559131 -0.910453 -0.124031 -0.179867 0.079236 0.033529 -0.114321 -0.959997 0.388546 0.075028 0.412720 0.982195 0.040215 -0.691371 0.320857 0.071276 0.022864 -0.520505 0.839346 -0.761240 0.170610 -0.025514 -0.275242 -0.611615 -0.353060 -0.423655 0.186350 1.005685 0.233040 -1.368476 0.218383 -0.342689 0.373080 -1.479810 0.475673 -0.457548 0.531062 -0.488313 -0.067321 -0.243542 0.393334 0.394941 0.028747 0.404037 -0.434995 0.630826 0.692641 0.043356 0.173270 0.498106 0.215413 0.055145 -0.453214 -0.197265 0.217410 -0.076804 0.032518 -0.209420 -0.287772 0.850699 0.432973 -0.453469 -0.190238 0.800423 -0.683796 0.074924 0.703494 -0.251559 -0.481173 0.201267 0.179463 1.137624 -0.390972 -0.170233 -0.688082 0.085727 0.113834 0.326521 -0.948621 -0.483225 -0.046913 -1.389273 -0.550010 0.599495 0.269538 0.402483 0.205758 -0.935223 -0.347364 0.685197 -0.071232 1.194389 0.252868 0.552567 0.763083 0.371555 -0.050175 -0.623348 -0.339203 -0.288030 -0.823880 -0.346608 -0.009102 0.162929 -0.518892 0.797086 0.211504 -0.005110 0.085286 -0.063716 0.431694 -0.601983 1.131673 0.738474 -0.590292 0.081315 0.116269 1.402078 -1.105141 -0.616264 -PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -9.462419 -15.662836 11.726530 11.304703 4.769960 10.976063 6.100027 -3.163545 2.765149 11.882276 -4.743794 10.492101 -6.643262 -6.191708 -1.499102 -0.272165 0.705493 -8.651455 2.631524 -1.397810 0.918232 -6.791921 -11.088759 14.566937 1.227070 -4.023575 -2.977440 -0.426075 -20.377147 -13.159273 -4.113506 0.542594 5.813468 -2.522170 4.359421 -12.259680 6.171613 17.058821 0.371298 -13.912416 -0.402441 -3.144204 -3.977896 6.824632 -3.053317 5.290010 5.275914 -4.158080 -4.136327 2.880310 6.253612 -1.859531 9.712595 12.440661 4.845547 15.001789 13.426348 -0.009032 7.349531 1.673855 3.193317 -3.704316 7.366173 4.769612 -3.205316 -0.030494 -1.656436 4.996563 -6.520092 -0.232940 3.466675 -8.500916 -2.736875 -2.927013 -8.830286 -4.633646 -1.661446 -2.338492 15.097961 -2.487956 20.710101 10.366181 11.639850 -1.717600 12.499363 -0.743298 10.083924 4.414133 -9.061696 4.257710 -10.151202 -1.196737 -0.765715 11.297534 -11.823145 2.668790 6.672018 -10.634636 -14.624040 10.618994 -3.196946 -4.031919 -5.154510 0.669366 3.697425 2.755551 -5.555599 -12.209839 -10.078797 9.668977 -7.126030 -7.887341 -2.396735 -0.446089 2.559718 2.152488 -6.210376 0.096210 12.860799 -7.456021 -6.111221 11.024763 -0.238539 10.576254 -2.660987 -0.408710 0.437931 -0.334351 5.979173 2.144852 -1.317424 -9.009542 -19.438357 0.040045 -0.471497 -3.222549 -6.170290 -2.818611 8.291384 6.319324 10.242066 14.003795 -2.155210 10.613168 4.760734 1.589821 -2.465116 -13.858197 -2.729927 -4.913687 2.139630 -3.564191 -7.351731 -1.739484 8.090503 -2.047701 -1.404343 4.201416 -0.277404 8.278619 0.364216 0.821151 -1.439339 -8.526245 2.507246 -5.020904 -9.640940 7.209325 12.669778 5.632168 4.266418 -3.137256 -0.693972 0.085689 -8.311284 2.789160 -0.907211 1.691621 14.909884 7.061724 24.458475 -6.119125 0.395071 -5.748670 -2.050331 3.058262 -4.610370 -11.365967 2.701989 3.006997 -0.676498 16.158978 -1.071653 -3.777604 5.039420 -0.137887 0.883715 -10.277607 14.974240 -8.698172 -0.028987 -2.332910 -4.119327 -6.788636 -5.681641 -9.865691 -1.603306 13.763579 -8.094040 -11.185093 1.964044 0.432841 -0.222144 -13.879977 9.738949 -4.956088 8.911527 -3.506511 -5.592854 -0.739593 7.876878 0.848568 0.812649 6.154363 -13.019735 9.458397 6.282104 0.124453 2.359889 4.832845 2.183416 -3.140662 -5.558593 -9.543105 6.324262 1.358766 -3.291654 -3.453327 -5.177183 9.738083 3.848571 -3.217056 -4.194114 8.506358 -7.165418 -7.061475 9.522996 -4.338766 -4.759025 1.537638 1.890193 8.276729 -6.229932 -1.743300 -9.208644 -1.690335 5.095583 2.791645 -13.751394 -0.853394 -5.808259 -9.106512 -3.813468 5.236937 4.837153 8.113888 1.269718 -17.193214 -10.314209 12.892607 -3.929148 1.510166 7.789415 9.546232 10.819065 3.672666 6.930622 -2.840058 -5.464776 -0.040521 -7.764224 -3.477691 0.897726 2.963062 -5.824068 12.887179 1.877885 2.136747 6.092600 2.944107 2.861361 -8.361738 14.796841 8.136999 -10.255595 0.002593 5.721751 10.574589 -17.463814 -7.266249 -PE-benchmarks/longest-palindromic-subsequence.cpp__main = -1.522745 -4.159175 3.799151 3.494438 0.355545 2.638531 1.286177 -0.965587 1.060378 1.878754 -1.585271 2.726716 -2.063392 -1.039200 -0.672079 0.013104 -1.213364 -2.309281 0.429847 -0.380239 0.014212 -1.820134 -2.287709 3.842904 0.696399 0.806187 -0.962107 -0.306279 -4.948721 -2.187252 -0.069267 -0.028300 1.763563 0.883845 1.344517 -4.071962 1.570167 4.151516 -0.092685 -4.179461 0.169031 -1.181734 -0.901554 0.632997 -0.875587 1.172849 1.256457 0.395380 -0.820284 0.598752 0.299781 -0.401453 2.462995 3.926678 1.141602 3.669844 3.864075 0.053070 1.740073 0.030835 1.069401 -0.721187 1.817585 1.366644 -0.838311 -0.588288 -0.737201 0.248409 -1.845469 0.508094 0.897451 -1.394349 -1.347721 -1.132202 -2.548369 -0.909126 -1.627258 0.955626 4.373563 -1.671191 5.022251 2.447558 2.926304 -0.400636 2.957444 0.062588 2.507405 1.396298 -2.022755 1.028002 -3.352074 -0.789897 0.081991 1.129232 -3.044936 -1.072943 1.891568 -3.784558 -3.935102 2.560776 -0.392869 -1.133481 -0.432307 0.133290 1.009345 1.150859 -1.603377 -2.989379 -1.980159 2.264890 -1.386398 -1.931055 -0.498415 0.786475 0.487707 -0.097020 -2.291527 0.322996 3.065104 -1.913998 -0.438318 3.032644 -0.097159 2.575481 -0.745219 -0.223217 -0.020511 1.110780 1.656021 0.369621 0.094037 -1.746975 -3.262309 0.892360 0.272134 0.244373 -1.942179 -0.677959 1.953361 1.663753 2.184212 2.415713 -0.547169 2.243802 0.905717 -0.165546 -1.189651 -3.856062 -1.299222 -2.076515 0.296710 -1.224413 -1.765661 0.523598 2.325612 0.577254 0.035762 1.414301 -0.853196 1.708284 0.181962 0.397366 -0.173406 -0.775322 0.802332 -1.455960 -2.658293 1.918064 2.533933 1.424893 1.057342 -0.791632 -0.127382 -0.515857 -1.876120 1.318068 0.615346 0.368219 4.044205 2.154589 4.587184 -1.675095 0.009054 -1.084217 -0.765785 0.505543 -0.895403 -3.372527 1.332988 0.632154 0.257656 3.944867 -0.399719 -0.734573 1.531083 -0.116342 0.253032 -2.488561 3.134911 -2.374346 -0.599050 -1.334334 0.012169 -1.692266 -1.511347 -2.712315 -0.748255 4.027550 -2.891099 -2.436739 0.997094 0.077871 0.626377 -3.543807 2.364337 -1.446065 2.860738 -0.355918 -1.597182 -0.022811 0.630486 -0.300990 -0.169582 1.788743 -2.917068 1.802208 1.722367 0.354278 0.306812 1.423459 1.009918 -0.907028 -0.719319 -2.501108 1.684884 0.150860 -0.965535 -0.489102 -1.349235 2.224497 0.578646 -0.457438 0.496234 2.124866 -0.401766 -0.695529 2.268639 -0.559121 -1.579927 0.375908 0.153457 2.258957 -1.887955 -0.532313 -2.235436 0.136309 0.950074 0.919606 -3.900568 -1.713703 -2.670662 -2.294437 -1.147138 0.056551 1.254302 1.583505 0.112626 -4.405266 -2.979249 2.437936 -1.236088 0.617532 2.221994 2.205488 3.137821 1.493592 0.917244 -0.650245 -0.422300 0.601919 -1.748881 -0.431443 -0.893637 1.192592 -1.525941 2.865311 1.856080 0.110397 1.758750 0.370536 1.742375 -2.291822 4.394254 2.291780 -3.476758 0.112276 1.852814 2.630336 -3.075728 -2.262805 -PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -8.338425 -11.313077 9.845893 8.922877 3.669404 8.475669 3.273209 -3.503205 4.244240 10.177021 -2.771700 7.301494 -6.386101 -2.973278 -0.402349 1.660532 -1.094994 -7.587202 0.972268 -2.736563 -1.653109 -5.609956 -6.445462 8.848870 1.434487 -4.699277 -4.084883 0.562146 -14.229761 -12.461239 -3.209570 -0.137288 5.033023 -7.154821 2.315674 -15.382560 6.814464 12.657407 -0.416671 -12.152853 0.484882 -4.113682 -1.781964 5.190208 -3.775288 3.122730 3.604654 -3.562438 -1.163757 2.579505 4.511981 0.378537 4.663328 15.086836 2.388087 11.422856 10.175437 0.203591 0.884997 2.652422 2.623486 -2.231931 6.465989 3.590622 -3.305940 -1.095099 0.250685 2.719804 -6.542315 1.768238 1.059398 -8.084383 -0.674715 -3.078700 -7.538701 -4.095554 5.955337 0.348811 12.309825 -4.479099 13.697407 5.399256 7.093519 1.084153 9.806649 -1.505762 9.698967 3.305722 -6.557160 0.460174 -4.616718 -1.355355 -0.349602 8.992931 -7.444899 -0.552884 5.392321 -8.285079 -12.184214 8.036741 -2.043704 -2.138591 -9.350816 -2.462996 5.333700 3.779510 -4.854913 -9.789069 -8.583437 7.826246 -5.058823 -6.446171 -1.271878 -2.304738 0.276075 1.359765 -6.962879 -0.986830 8.915300 -6.426493 -7.270627 9.620820 -2.272019 7.693130 -1.842677 1.360725 -0.247534 1.992028 2.923131 3.157787 -0.870520 -4.395895 -13.523408 -1.833876 -0.926346 -1.822658 -4.269621 -0.894280 4.433291 4.342488 3.761705 9.671539 -4.662890 8.968452 6.708763 1.558227 -3.335752 -9.022997 -0.677136 -6.803516 1.026344 -5.217271 -6.122150 1.229260 7.437487 0.169429 -0.523879 8.610795 -2.949631 7.053873 0.089091 -0.295880 0.797101 -7.301018 2.684755 -5.376070 -8.845029 5.012956 9.715689 3.561590 2.477884 -2.860582 -0.547079 -2.084503 -7.777401 2.570743 0.708838 1.335614 10.387805 5.544262 20.771068 -9.021922 1.213370 -3.107110 -2.899712 3.008990 -4.577844 -10.293613 -0.298163 3.392360 0.932550 13.971115 -0.769053 -6.040661 3.047617 0.062817 1.376346 -7.742823 10.466616 -8.097509 0.658701 -1.785811 -5.154205 -5.375378 -3.886110 -7.572747 -2.299570 11.413798 -7.430160 -12.052307 5.103473 0.425543 2.181343 -15.285188 8.147481 -4.764488 8.707195 -3.551328 -2.800924 -1.038350 5.861257 -0.107990 3.544496 5.316412 -8.633821 7.136910 8.111026 0.437199 3.351252 2.736071 3.207804 -1.784653 -3.428284 -7.334050 6.901597 -0.067927 -3.734146 -3.370428 -4.827802 6.836251 2.243736 -1.409975 -3.516217 6.964655 -6.012830 -3.159860 9.655130 -1.657205 -4.386211 4.387675 0.541353 7.632259 -4.770592 -1.249902 -5.888815 1.069640 3.292964 3.420329 -11.514200 -3.189583 -7.688720 -10.625915 -2.342874 5.708650 2.697338 3.737090 0.963751 -12.598226 -6.917424 10.727361 -3.252663 8.332962 6.044287 8.465819 8.832417 5.026882 3.180434 -2.529937 -4.261816 -2.145374 -6.980243 -4.237059 0.596322 3.042503 -4.275160 9.320421 2.308173 2.265856 4.709795 2.397769 -0.943037 -6.391119 11.039765 6.931907 -6.023942 1.490274 5.336877 10.065606 -11.864720 -6.514010 -PE-benchmarks/find-k-closest-elements-given-value.cpp__printKclosest(int*, int, int, int) = -8.274995 -12.762050 10.984120 9.599177 3.694033 8.742369 3.693817 -3.300293 5.569055 10.054517 -4.445753 8.542896 -6.128010 -4.281253 1.075883 1.285343 -2.038098 -8.257453 1.808867 -1.950844 -0.791670 -6.718056 -7.542649 9.764147 1.578124 -2.565729 -4.126893 1.768345 -15.267518 -14.100545 -2.310600 -0.274182 5.400773 -6.155295 3.692678 -19.236807 7.606561 13.860324 -0.290178 -15.070871 0.047469 -3.601734 -2.840363 4.502002 -2.681060 5.028311 5.231107 -1.550303 -2.217022 2.883498 2.948646 -1.265558 4.796878 15.604145 2.789166 12.977756 13.508540 -0.539809 2.182897 2.457684 2.913508 -3.101536 6.978006 5.459110 -4.339824 -0.976370 0.883527 2.837242 -7.919798 1.851437 3.042966 -8.203034 -1.988799 -3.870974 -7.975550 -3.434443 4.971374 0.476884 14.388000 -3.687148 17.129438 7.055916 10.003778 0.550272 10.195209 -1.783220 10.593929 4.049401 -8.686175 0.926393 -8.467353 -4.938428 -0.440509 9.338895 -7.626863 1.988921 5.108647 -8.783922 -12.421323 8.204903 -2.167811 -2.303494 -10.060330 -1.544503 6.655577 4.131251 -3.417185 -10.619818 -10.214422 8.013836 -7.493065 -6.491178 -1.960411 -0.802015 -0.140621 1.745968 -7.643166 -0.908403 11.150382 -6.451683 -6.960114 9.571197 -4.758532 8.222833 -2.590319 0.781199 -0.062519 1.610616 4.748240 2.738679 1.568859 -6.691811 -17.164457 -0.230086 -0.787011 0.959471 -4.425987 -1.693815 5.533321 4.779675 4.917707 9.790194 -4.475300 9.826906 6.906518 1.688373 -3.989800 -11.737590 -1.966678 -6.556016 2.706444 -4.968890 -5.151143 1.405348 7.823402 -0.293727 -0.435411 8.567251 -4.879617 7.956943 -0.689096 1.036402 0.115016 -6.162926 2.824322 -5.409661 -8.196330 5.975648 10.463803 3.600067 3.650991 -4.114838 -0.036718 -2.405424 -9.642909 3.985862 0.254870 2.562653 10.739926 5.692293 23.775007 -9.488162 0.644898 -3.434424 -1.986003 2.376192 -3.585441 -10.455057 1.783908 2.930402 3.093521 15.509429 -0.411559 -6.065571 2.578505 1.009628 0.632342 -7.632174 12.304899 -8.467416 0.702855 -1.120867 -4.392819 -6.450016 -4.512605 -8.693822 -0.830358 13.104057 -5.561163 -14.847068 5.092606 -1.742932 3.596410 -16.801795 9.920561 -5.163202 9.307984 -4.381047 -2.791516 -1.003179 4.469945 0.139953 2.561224 5.368341 -9.383131 7.248236 7.792402 0.591781 2.960900 3.507887 2.428716 -2.310488 -3.688864 -7.276896 5.659776 -0.281758 -2.626573 -3.736557 -4.443053 8.852226 2.771741 -2.411536 -3.416711 8.384057 -5.733099 -3.013618 10.301529 -2.678140 -5.173581 3.651599 1.509210 8.097673 -4.883986 -1.874844 -6.628305 0.798412 3.566773 3.712908 -12.194962 -3.486055 -6.421554 -12.903960 -4.107392 5.667571 3.535104 4.825007 1.167777 -14.512595 -6.894258 10.954905 -2.563190 8.140968 6.132359 8.688586 9.167777 4.581556 3.027805 -3.868742 -4.226111 -1.784149 -7.977650 -4.157823 -0.547820 3.816851 -5.050831 10.055627 3.173813 1.554575 4.494706 0.769849 2.387846 -6.835824 12.838310 7.426543 -7.985050 0.253553 4.472967 11.794469 -13.700661 -7.152330 -PE-benchmarks/find-k-closest-elements-given-value.cpp__main = -1.583577 -3.493514 3.577751 3.098482 0.776024 2.035521 1.242954 -1.041544 1.988087 2.444735 -1.218292 2.245258 -1.987135 -0.471323 -0.053617 1.084004 -1.341975 -2.546867 0.469251 -0.597843 -0.498721 -1.944624 -1.115496 2.066547 0.891216 -0.173195 -1.390910 -0.157694 -3.885855 -3.378421 0.223763 -0.512466 1.679749 -1.020906 0.746108 -5.884343 2.234130 3.276041 -0.381855 -4.224622 0.251676 -1.104836 -0.491423 0.395378 -0.544075 1.214567 1.456612 0.508488 -0.054668 1.122670 0.605007 -0.235352 1.317019 4.920995 0.129561 3.247508 3.470025 -0.056368 0.383939 0.498611 1.098486 -0.641670 1.917437 1.793973 -0.913490 -0.745726 -0.270951 -0.067023 -2.493449 0.974890 0.747474 -1.323763 -1.273839 -0.842946 -1.988895 -0.830653 -0.350793 0.983322 4.465648 -1.721850 4.433277 1.814451 2.795068 0.045737 2.277105 -0.184524 2.554955 1.282994 -2.281330 0.069376 -2.432657 -1.331760 -0.040043 1.508084 -1.800589 -0.960000 1.559235 -2.127413 -3.412541 2.205022 -0.211280 -0.338503 -2.316019 -0.403584 1.845433 1.544970 -1.389206 -2.993580 -2.519569 1.524372 -1.434707 -1.703192 -0.186718 -0.213270 -0.341707 -0.071369 -2.613424 -0.482836 2.503825 -2.106680 -1.414748 2.558781 -1.312518 2.040137 -0.695416 0.219903 -0.205434 1.260326 1.440926 1.081474 0.826155 -1.339921 -4.376881 0.384405 0.476400 1.224866 -1.124575 -0.194065 0.890421 1.291627 0.773195 1.888395 -0.796753 2.348547 2.112810 -0.087633 -1.708958 -3.067963 -0.254492 -2.203180 0.928221 -1.836812 -0.906997 0.720549 2.359027 0.363754 0.499427 2.877447 -1.980516 2.292104 -0.357721 0.437177 0.404034 -0.810364 1.026270 -1.462736 -2.313723 1.595666 2.700344 0.810820 1.007601 -1.307724 0.221319 -1.238004 -2.282545 1.133009 0.558300 0.040417 2.736005 1.397241 5.395376 -2.722651 0.126208 -0.277842 -0.417200 0.499897 -0.680441 -3.321568 1.111713 0.522093 0.749345 3.567772 -0.126204 -1.875247 1.082634 -0.078572 0.195625 -1.866393 2.618989 -2.304865 -0.340896 -0.852779 -0.281887 -1.656637 -1.208176 -1.979292 -0.084142 3.774187 -1.673443 -3.439642 1.571541 -0.656597 1.014669 -4.512154 3.314281 -1.572480 2.337386 -1.106298 -0.844068 -0.252982 1.099972 -0.252048 0.267224 1.683649 -2.060962 1.689846 2.649585 0.442222 0.594651 1.085076 1.230983 -0.468178 -0.465926 -1.609085 1.772814 -0.293044 -0.864437 -0.688787 -1.240357 2.173777 0.293026 -0.383551 0.350852 2.208829 -0.882817 0.229277 2.461989 0.055557 -1.738154 1.123456 0.245826 2.605701 -1.488887 -0.314750 -1.593972 0.414085 0.261911 1.388047 -3.409435 -1.940301 -2.085041 -3.302015 -1.200478 1.085428 0.975266 0.609461 0.277034 -3.892506 -1.956467 2.364503 -0.955969 1.796347 1.932601 2.043656 2.650097 1.688043 0.080316 -1.162892 -0.789255 -0.202618 -1.768360 -0.925866 -0.638612 1.177301 -1.796747 2.268246 1.575131 0.078803 0.938634 -0.001464 1.593612 -1.814783 4.029890 2.146928 -2.198462 0.594683 1.623297 3.660930 -2.655910 -2.082623 -PE-benchmarks/dfa-based-division.cpp__preprocess(int, int (*) [2]) = -3.372783 -4.748780 3.717557 3.242598 1.748427 3.043309 2.021976 -0.334884 1.690526 4.319068 -2.048043 3.182147 -2.281275 -1.729918 0.401126 0.697277 0.122591 -3.417882 1.365790 0.172751 0.183163 -2.198781 -2.583945 3.272309 0.625032 -1.285627 -1.391417 0.043584 -6.002625 -4.954260 -1.381874 -0.448160 1.962769 -2.573515 0.999534 -5.013065 2.024819 4.996130 0.071372 -5.477724 0.111222 -0.980544 -0.494039 1.811167 0.165058 2.166504 2.747816 0.098346 -1.153392 1.399696 0.913755 -0.918074 1.623154 4.007941 1.325212 4.480161 4.658224 0.001838 0.708738 0.749606 1.189715 -1.661796 2.537734 1.959520 -1.970333 0.155083 0.097312 1.310255 -3.009748 0.094995 1.043317 -2.105603 -0.643643 -0.845232 -1.679832 -0.803512 1.878505 -0.441062 5.389135 -0.516995 6.329358 2.841478 3.966642 -0.177654 3.190878 -0.488563 2.629866 1.489088 -3.264808 0.185585 -4.106840 -1.935394 -0.742652 3.192481 -2.336570 1.234785 2.189102 -2.057483 -4.358098 2.871939 -1.224988 -0.506655 -3.154937 -0.144963 2.567806 2.389029 -1.275437 -3.626765 -3.696985 2.180940 -2.923091 -2.482591 -0.374994 -0.681528 -0.484536 0.464092 -2.491416 -0.811081 3.765044 -2.832757 -2.748863 2.972440 -1.746832 3.739655 -0.853141 0.248733 0.413027 0.342420 2.638278 0.814974 1.368379 -2.433388 -5.877089 -0.078007 -0.489056 0.396105 -1.757618 -0.323473 1.911999 1.549943 2.252713 3.215241 -1.888558 3.608303 2.586498 0.126085 -1.309592 -4.280538 -0.353285 -1.474658 1.006656 -1.539194 -1.037754 -0.171448 2.633562 -1.134471 -0.321508 4.108307 -2.212388 3.242982 -0.123502 0.812696 -0.386309 -1.894624 1.056889 -1.589823 -2.793752 1.945698 4.659806 1.087491 1.158911 -1.498332 0.260404 -0.798151 -3.265466 1.196397 -0.458398 0.624684 3.562308 1.366205 7.168965 -2.642358 -0.203701 -1.478907 -0.290368 0.708608 -1.305283 -3.965715 0.861127 0.683301 1.336401 4.889052 0.003894 -2.603618 1.524504 0.279522 -0.010038 -2.621075 4.559252 -3.235536 0.089838 -0.013438 -1.304291 -2.506847 -1.733591 -2.878604 0.390200 4.354103 0.061806 -5.330716 0.309754 -0.185708 0.568914 -5.689164 2.871333 -1.842185 2.697216 -1.396470 -0.637636 -0.600995 2.038037 0.665201 -0.495339 1.932555 -3.053067 3.215758 2.301049 0.112186 0.529908 1.766225 0.448396 -0.612206 -1.773805 -2.089160 0.849694 -0.058148 -0.980952 -0.922328 -1.303013 3.512411 1.386043 -1.583651 -1.677027 2.842725 -2.756874 -0.780285 3.374913 -1.298248 -1.877886 0.967170 0.826970 3.809055 -1.548129 -0.158014 -3.204308 0.179904 1.286163 1.694873 -4.124557 -0.871072 -1.169625 -4.988478 -1.536362 2.347805 1.347284 1.997481 0.774142 -5.021251 -2.393065 2.578311 -0.682684 3.021099 2.060212 2.916058 3.322452 1.055963 0.763989 -1.808222 -1.267818 -0.792751 -3.107648 -1.753015 0.574344 0.536408 -2.025082 3.626333 0.628730 0.729732 0.989979 -0.510357 1.122481 -2.380859 4.975408 2.891582 -2.662998 -0.299127 0.760178 4.990393 -5.569502 -2.481115 -PE-benchmarks/dfa-based-division.cpp__isDivisibleUtil(int, int*, int (*) [2]) = -1.623457 -2.636275 2.790523 2.532061 0.439687 1.854672 0.818563 -1.230670 1.312067 2.279961 -0.685666 1.655612 -1.492094 -0.421919 0.056026 0.575252 -0.836583 -1.712323 0.004326 -0.950496 -0.710570 -1.408015 -1.153212 1.920776 0.531836 -0.703969 -1.162066 -0.232745 -3.123371 -3.339044 -0.185600 -0.273172 1.347729 -0.967645 0.743966 -4.309409 1.916168 2.731290 -0.255975 -2.701313 0.017004 -0.966354 -0.309606 0.666343 -1.073282 0.439021 0.658320 -0.919108 0.236465 0.560809 1.083574 0.027449 1.290599 3.669880 0.077714 2.540279 2.153843 0.008704 0.267807 0.504295 0.412524 -0.329977 1.534166 1.048552 -0.575410 -0.727931 -0.326236 0.256250 -1.696135 0.878164 0.248500 -1.627858 -0.637221 -0.855612 -1.693611 -1.085524 -0.350744 0.693162 3.247131 -1.419452 3.067012 1.464252 1.526724 0.392034 2.256810 -0.113456 2.432343 0.855354 -1.567828 0.411827 -0.822982 -0.466415 0.002751 2.060128 -1.787023 -0.127617 1.499675 -2.066417 -2.969789 2.093176 -0.097567 -0.362601 -2.313831 -0.535114 1.300782 0.541443 -1.353640 -2.486607 -2.218354 1.641116 -0.719236 -1.403978 -0.185606 -0.713754 -0.076042 0.486845 -2.148177 -0.242904 1.556609 -1.549967 -1.643367 2.038096 -0.408203 1.144525 -0.410222 0.664606 -0.238811 1.099041 0.514674 0.893501 0.123667 -0.674421 -3.577989 -0.501225 0.182511 -0.385780 -0.810549 -0.430849 0.589277 1.010637 0.305860 2.011430 -0.650153 2.110507 2.116931 0.066106 -1.003483 -1.868741 -0.255590 -2.072569 0.105406 -1.225409 -1.289516 0.176194 1.875149 0.330280 0.367483 2.102840 -1.064668 1.909841 -0.224550 -0.043607 0.616630 -1.244119 0.894439 -1.236075 -2.146217 1.266839 2.185900 0.924890 0.949828 -0.951346 0.095075 -0.914431 -1.977344 0.893178 0.136461 -0.012467 2.480287 1.435963 4.422807 -2.270621 0.530312 -0.268102 -0.646500 0.609205 -0.662604 -2.370921 -0.206073 0.731142 -0.003204 2.950380 -0.158635 -1.248287 0.609948 -0.075109 0.477983 -1.614147 2.246961 -1.935435 0.033668 -0.896321 -0.725541 -1.351064 -1.025844 -1.166250 -0.411326 2.832648 -1.939808 -2.564295 1.645371 -0.229324 0.614348 -3.420142 2.303495 -1.289724 2.018502 -1.138210 -0.954712 -0.416827 1.670085 -0.285856 0.712844 1.346760 -2.330104 1.547068 2.236325 0.242501 0.904559 0.670018 1.180194 -0.307566 -0.328699 -1.540503 1.947120 0.053544 -0.767983 -0.793155 -1.172113 1.176469 0.187058 -0.292439 -0.488970 1.779482 -1.064670 -0.535866 2.392109 0.052125 -1.196969 0.994866 -0.048520 2.005435 -1.359742 -0.376184 -0.843162 0.300482 0.365717 0.715857 -2.895287 -1.002909 -2.297512 -1.853339 -0.847553 1.396846 0.714192 0.811293 0.125134 -2.887033 -1.653870 2.122987 -0.811315 1.685690 1.482608 1.876578 2.247316 1.416206 0.491255 -1.026567 -0.815545 -0.513766 -1.340871 -0.880428 -0.511424 1.177553 -1.327868 1.947875 0.976121 0.422938 1.076978 1.263301 0.870362 -1.617231 2.974329 1.635174 -1.412063 0.920529 1.897435 2.076451 -2.269500 -1.589329 -PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -1.819838 -3.076276 2.885618 2.504000 0.764513 2.024154 1.225178 -0.980607 1.562126 2.110409 -0.832250 1.806865 -1.830549 -0.332177 -0.645687 0.544496 -0.814088 -2.391156 0.292717 -0.725476 -0.642391 -1.801945 -1.208059 2.058598 0.541065 -0.851088 -1.313216 -0.377612 -4.040591 -2.316722 0.138749 -0.381475 1.413717 -1.230569 0.648725 -4.738635 1.574010 2.878158 -0.233111 -3.267156 0.087261 -1.266438 -0.088790 0.548028 -0.650279 0.714069 1.093235 -0.067614 0.154527 0.603207 1.052553 -0.029693 0.708983 4.327437 -0.081322 2.831883 2.325447 0.104210 0.383753 0.587834 0.768844 -0.538695 1.769599 1.383402 -0.961810 -0.473156 -0.260246 0.116296 -2.053549 0.955967 0.530022 -1.060438 -0.939449 -0.517767 -2.056080 -1.090375 -0.095618 0.623080 3.851210 -1.402588 3.695765 1.563632 2.455627 0.106831 2.397322 -0.155707 2.500347 0.887762 -1.982408 0.342285 -2.265239 -0.206421 -0.403339 1.550399 -1.647167 -1.057316 1.491056 -2.220058 -3.224734 2.060252 -0.397536 -0.188526 -2.080317 -0.311809 1.601050 1.143894 -1.667571 -2.891721 -2.385738 1.631853 -1.057392 -1.476140 0.371500 -0.827989 -0.032122 -0.528784 -2.095581 -0.552347 1.987350 -1.922612 -1.673787 2.624296 -0.996768 1.839180 -0.359085 0.317511 -0.198793 1.151433 1.014308 0.751769 0.030413 -1.151917 -4.186341 -0.279348 0.092444 0.857087 -1.022294 -0.314905 0.699890 1.135152 0.540082 1.724137 -0.700867 1.989533 1.878032 -0.228940 -1.304724 -2.396885 0.203079 -1.960536 0.324825 -1.420442 -1.175591 0.121717 2.074331 0.702527 0.407756 2.583775 -1.047815 2.193531 -0.233960 0.059399 0.482263 -1.189916 1.007784 -1.251388 -2.301038 1.288924 2.337403 1.076682 0.863969 -1.122452 -0.051741 -0.962639 -1.929277 0.538919 0.643406 0.177458 2.701490 1.376920 3.912000 -2.895867 0.412416 -0.321675 -0.451465 0.657466 -0.877732 -2.868266 0.673621 0.675431 -0.230569 2.938472 -0.299811 -1.625774 1.124193 -0.135522 0.626078 -1.985747 1.967851 -2.104445 -0.332930 -1.141786 -0.417753 -1.609808 -1.026777 -1.716283 -0.671333 3.142774 -1.693429 -2.905778 1.451364 -0.057853 0.773836 -3.878515 2.160331 -1.304310 2.210080 -1.047189 -0.611957 -0.458540 1.871256 -0.080440 0.490876 1.487878 -2.355517 1.832464 2.434827 0.319555 0.892972 0.974966 1.331551 -0.234092 -0.665736 -1.581370 1.660271 -0.088127 -1.100933 -0.323846 -1.237151 1.797251 0.495166 -0.061829 0.147397 2.159685 -0.920315 0.012567 2.637142 -0.100105 -1.284751 0.557709 -0.032449 2.196193 -1.406187 -0.156786 -1.513902 0.315556 0.196419 0.772709 -3.060472 -1.699944 -2.172283 -2.701227 -0.542387 0.883569 0.384478 0.915522 0.267520 -3.525189 -1.693611 1.764298 -1.041162 1.809772 1.624388 1.803487 2.504600 1.740505 -0.098125 -0.882672 -0.378692 -0.288437 -1.636650 -0.829916 -0.669954 0.997681 -1.765750 2.411986 1.182432 0.152598 0.957079 0.859914 1.281536 -1.753063 3.643496 1.983268 -1.801252 0.690758 1.501468 3.225608 -2.059551 -1.740415 -PE-benchmarks/dfa-based-division.cpp__main = -1.301784 -2.135391 1.816626 1.531619 0.559920 1.305409 0.798389 -0.312245 1.282912 1.086857 -0.879035 1.062244 -1.321453 -0.451922 0.064954 0.141766 -0.678369 -1.758603 0.668458 -0.093056 -0.155866 -1.316016 -0.852977 1.263752 0.200515 0.072023 -0.557607 -0.135683 -2.601068 -1.211808 0.466883 -0.411131 0.996331 0.175607 0.448551 -3.208660 0.964392 1.697326 -0.108999 -2.553129 -0.071430 -1.008104 0.001772 0.102461 0.083136 0.730465 1.119141 0.574025 -0.150910 0.401595 0.008051 -0.586289 0.090097 2.355603 0.103379 1.736850 1.827598 -0.030472 0.151392 0.308063 0.626656 -0.619152 1.375334 1.230904 -1.131361 -0.115124 0.014987 -0.317408 -1.646024 0.506325 0.575573 -0.395320 -0.577376 -0.341988 -1.087404 -0.564748 0.050622 0.581264 2.668943 -0.932791 2.735212 1.122412 2.095096 -0.001156 1.562188 -0.052862 1.619485 0.656227 -1.636811 -0.072530 -2.277965 -0.816323 -0.370395 0.703434 -0.736194 -0.115036 0.714225 -1.276877 -1.927588 1.182180 -0.505495 0.136617 -1.580919 0.171081 1.374599 1.152947 -0.889816 -1.792536 -1.456544 0.861907 -1.301306 -0.901164 0.108015 -0.066218 -0.461351 -0.662484 -1.396164 -0.601726 1.520358 -1.457981 -0.710483 1.698673 -1.057705 1.366834 -0.323672 -0.110262 -0.021834 0.906410 0.952732 0.072457 0.795521 -1.357464 -2.618992 0.061025 0.071322 1.405856 -0.709868 -0.213639 0.821752 0.672727 0.353026 0.508367 -0.539148 1.170762 1.266631 -0.283126 -0.869502 -1.859223 0.311117 -1.249126 0.391539 -1.111479 -0.156737 0.365280 1.492877 0.590020 0.252740 2.110752 -1.305234 1.560229 -0.352057 0.332958 0.055228 0.076140 0.682733 -0.887832 -1.268426 0.787764 1.571505 0.353157 0.675996 -1.082192 0.044161 -0.891431 -1.639812 0.678626 0.442933 0.269746 1.665074 0.726169 2.056211 -2.147321 0.062533 -0.283888 -0.076130 0.248155 -0.308017 -1.928413 0.806552 0.271243 0.291431 1.806975 -0.115737 -1.291434 0.436803 0.134228 0.121681 -1.138719 1.175100 -1.452063 -0.271838 -0.600346 0.006938 -1.197333 -0.974916 -1.178735 -0.117572 2.071120 -0.277283 -2.207514 0.668965 -0.450748 0.917623 -2.830699 0.925939 -1.059884 1.426135 -0.694802 -0.383918 -0.377584 0.658324 0.215409 0.002232 1.028218 -1.192796 1.259165 1.418769 0.333204 0.495700 0.943249 0.694924 -0.051411 -0.750534 -0.855829 0.705957 -0.222664 -0.440690 -0.067689 -0.877203 1.612342 0.577900 -0.308522 0.496085 1.640257 -0.518720 0.564042 1.544422 -0.348688 -0.972323 0.163528 0.135712 1.873286 -0.745274 -0.142832 -1.326159 0.209532 0.172947 0.611921 -1.968684 -1.584948 -0.839826 -2.207921 -0.670709 0.462152 0.330862 0.701531 0.564556 -2.410501 -0.759491 0.644391 -0.586477 1.951028 0.867372 1.157292 1.634722 1.006509 -0.395332 -1.088601 0.137972 -0.082892 -1.527955 -0.415505 -0.585769 0.539731 -1.104070 1.627131 0.884844 0.012483 0.229532 -0.079848 1.412225 -1.028903 2.445992 1.518329 -1.491798 0.214748 0.611482 2.366186 -1.207780 -1.232142 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -0.940958 -1.598108 3.361275 2.685320 0.652255 1.297586 0.657507 -2.366514 2.443893 1.961225 -0.341122 0.852319 -1.591879 0.351144 0.136439 1.807879 -1.539984 -1.806071 -0.321040 -1.709430 -0.783809 -1.998603 0.482562 0.386676 0.860799 -0.008077 -1.929662 0.203844 -1.999127 -4.150604 1.214806 -0.536803 1.363121 -0.958463 0.113706 -5.737477 3.092839 2.455232 -0.620450 -2.398468 0.418500 -0.970917 -0.256524 0.214820 -0.227332 1.008289 0.123774 -0.200604 1.094308 0.910060 1.788009 0.714664 0.650180 3.586579 -1.432052 1.978068 0.973246 -0.195522 -0.477403 0.746959 0.572157 0.537147 1.725320 1.816736 -0.759475 -1.337649 0.074351 -0.116625 -2.888569 1.649698 -0.120864 -1.513840 -1.434101 -0.574067 -1.331206 -0.530343 -0.033590 1.070512 3.416855 -1.078709 2.501790 0.666155 1.300890 -0.242659 1.450832 -0.428897 2.940499 0.757789 -1.553807 -0.515635 -1.094719 -1.210088 0.343369 1.567244 -1.002147 -0.422367 0.880730 -1.464351 -2.324967 1.052082 0.466544 -0.066982 -3.625596 -0.861712 1.694244 0.883677 -0.622739 -2.629805 -1.520182 1.031670 -0.723583 -1.204228 -0.528219 -1.136344 -0.820005 -0.117902 -2.310980 -0.683347 0.711593 -1.319525 -2.052516 1.787940 -1.273688 0.251048 -0.406932 0.708417 -0.610662 1.049718 -0.287835 1.656547 0.900455 -0.300018 -3.089434 -0.218115 0.584830 1.284152 -0.454725 -0.207717 -0.661302 0.539572 -1.229297 1.148261 -0.876786 1.471396 3.328430 -0.185292 -1.414273 -0.863667 0.296146 -3.004555 0.990904 -1.673852 -0.387255 0.243541 1.889079 0.491711 1.274655 2.628864 -2.425630 1.733504 -0.395398 0.170304 1.433056 -0.544763 1.012914 -1.123154 -2.204009 1.154715 1.528024 0.184591 0.639556 -0.736856 -0.068961 -1.397185 -1.684432 1.185973 0.285363 0.233553 1.464609 0.920329 5.307450 -2.752831 0.773165 0.917627 -0.187721 0.553660 -0.431712 -2.392089 0.929287 0.483635 0.753127 3.067241 -0.210312 -1.658054 0.181074 0.042845 0.626537 -1.535190 1.324312 -1.724591 -0.005528 -0.934988 -1.127038 -0.912428 -0.988688 -0.747823 0.066120 2.475668 -0.786819 -3.281742 2.943732 -1.566259 0.825219 -3.960998 2.344037 -1.381913 1.145491 -1.538800 -0.100282 -0.475910 0.730763 -0.871320 0.940409 1.120118 -0.997794 1.369667 3.495099 0.560017 0.494850 0.041232 1.214761 -0.086933 0.534916 -1.059632 2.768813 -0.206397 -0.245780 -0.420356 -1.038941 1.041633 -0.609745 -0.325547 0.830083 2.077378 -0.506034 0.554815 1.943376 1.114859 -1.310597 2.282303 0.284496 1.077911 -0.696458 -0.285209 0.105818 0.340176 -0.490839 1.285276 -2.314698 -1.916638 -1.444308 -3.259289 -0.462334 0.956956 0.788393 0.037065 0.105718 -2.497588 -1.220310 2.440780 -0.646851 2.452270 0.979173 1.322014 1.409404 2.007053 -0.756558 -0.513733 -1.067365 -0.583289 -1.030129 -1.162763 -0.755440 1.732672 -1.163592 1.241268 1.324573 -0.295730 0.538513 -0.046114 1.100940 -1.161224 3.003745 1.205076 -0.304549 1.468162 0.534049 3.158609 -0.895828 -1.349311 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__sortedInsert(Node**, Node*) = -1.758184 -3.056340 6.538534 5.586551 0.696919 2.660879 -0.422783 -4.407783 3.748333 4.033566 -0.692476 2.619740 -1.967613 0.637582 0.360794 3.680575 -3.187622 -2.873670 -1.235494 -3.153313 -1.975256 -2.522172 0.018868 1.266475 1.697537 0.274507 -3.776543 1.271837 -3.052675 -8.969674 0.664080 -0.555708 2.653893 -2.225707 0.923459 -10.213538 5.862921 4.843542 -1.213203 -4.935396 0.798316 -1.041017 -1.291554 1.008577 -1.742155 2.143166 -0.063519 -1.592063 1.454636 2.114717 2.650196 2.049232 2.331356 6.607032 -0.886391 4.127165 2.736386 -0.655856 -0.834323 1.205757 1.324222 1.213179 2.956614 2.466531 -0.407695 -3.061867 0.103835 0.554199 -4.381883 3.043083 -0.361844 -4.167378 -1.591028 -2.074993 -2.857952 -1.039609 1.616393 1.973007 5.765875 -2.084994 3.915391 1.200585 1.675266 0.196645 3.023515 -1.005114 5.506408 1.985955 -2.034497 -0.353141 0.090662 -2.777449 1.273313 3.317085 -3.044208 -1.369255 2.239003 -4.446105 -4.485069 2.838670 1.539405 -0.787807 -6.729551 -2.740310 3.232728 1.475698 -0.980103 -3.905556 -2.828123 2.534448 -1.110954 -2.667444 -1.517829 -1.658100 -0.851347 1.882792 -4.583685 -0.195544 2.110509 -1.581163 -3.265107 3.390191 -1.103178 0.212772 -1.380561 1.688918 -1.463480 1.948744 -0.900269 3.717520 0.185699 0.707020 -4.368802 -0.069945 0.918388 -1.059755 -1.134520 -1.255931 -1.156899 1.493872 -1.961975 3.541305 -2.709483 3.358878 6.385051 0.903585 -3.119123 -2.327763 -0.928577 -5.549662 1.072692 -3.086531 -2.272880 1.607599 3.546539 0.589695 2.118389 3.819144 -3.611393 2.642458 -0.724840 0.248446 2.595295 -2.307014 1.528250 -2.203305 -3.808967 2.779033 2.997651 1.181358 1.478967 -1.312967 0.117052 -1.854858 -3.447101 3.087776 0.889458 0.996331 2.813736 2.369031 10.751120 -3.637213 0.874432 1.200117 -1.149971 0.993021 -1.227270 -4.339844 0.157605 1.283207 2.077318 6.672215 -0.457994 -2.660640 0.397983 0.326653 0.986660 -2.678909 3.365946 -3.301464 1.238603 -1.118725 -2.749587 -2.100385 -0.992232 -2.265002 -1.132197 5.204296 -3.532813 -6.231134 5.810293 -2.821396 1.591033 -7.194645 3.233685 -2.378530 3.101502 -2.398965 -0.324377 -0.753842 0.164753 -2.401977 2.330528 2.219142 -2.233199 1.700207 5.700877 0.818004 0.709025 -0.624433 2.107404 -0.952885 1.668952 -2.550756 5.267730 -0.592777 -0.265629 -1.788640 -1.680171 1.082331 -1.707002 -0.373071 -0.599895 2.567726 -0.891133 -0.260600 3.543557 2.053965 -2.800153 4.473073 0.577946 1.432004 -1.739744 -0.901566 0.485147 1.425989 -0.397593 2.113858 -4.670837 -2.508070 -5.173252 -5.535466 -1.270799 2.590785 1.785853 -0.363388 -0.739942 -3.630399 -3.126923 6.477841 -1.009396 4.335441 2.582822 2.853262 3.002341 3.704032 -0.541300 -0.484371 -3.178212 -1.709918 -1.502349 -2.327302 -1.417047 3.823812 -1.023736 2.122678 2.851093 -0.290066 2.160941 0.384300 0.761901 -2.230996 5.049421 2.066029 -1.010000 2.024085 1.456943 4.880882 -2.986686 -2.852413 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__printList(Node*) = -0.574372 -0.846853 1.630330 1.253630 0.262620 0.675152 0.242009 -1.003140 1.168846 0.831058 -0.362439 0.392144 -0.750658 -0.025850 0.245228 0.685584 -0.784213 -0.849446 0.022666 -0.686611 -0.245597 -0.979484 -0.037348 0.343393 0.262941 0.365147 -0.781646 0.303957 -0.899872 -2.017623 0.491715 -0.242677 0.611379 -0.028071 0.225847 -2.714558 1.483554 1.267408 -0.215217 -1.261586 0.077429 -0.505981 -0.108801 0.121201 0.096643 0.641593 0.228969 0.052198 0.307413 0.368850 0.671699 0.037865 0.336862 1.388873 -0.418390 0.948731 0.641784 -0.140732 -0.118721 0.267463 0.266403 0.077624 0.825263 0.963929 -0.559779 -0.479147 0.089755 -0.080595 -1.313121 0.655417 0.007120 -0.713654 -0.631942 -0.401241 -0.590019 -0.234478 -0.295974 0.520574 1.632067 -0.506620 1.351459 0.456496 0.882399 -0.088701 0.819946 -0.186230 1.501467 0.375436 -0.934455 -0.114911 -0.692721 -0.878752 0.208019 0.643782 -0.467801 0.085135 0.321799 -0.846343 -1.062695 0.520310 0.056745 -0.015501 -1.665726 -0.289681 0.846474 0.462416 -0.213063 -1.194067 -0.687568 0.512843 -0.588407 -0.522709 -0.317183 -0.255431 -0.430970 -0.099518 -1.112280 -0.297517 0.507278 -0.626236 -0.802825 0.893725 -0.624961 0.250114 -0.214620 0.159693 -0.201476 0.580273 0.009512 0.553270 0.429975 -0.369381 -1.437512 0.101495 0.190862 0.549122 -0.309079 -0.179505 0.012182 0.244951 -0.443276 0.446806 -0.528841 0.696414 1.642285 -0.082188 -0.591170 -0.617147 -0.054375 -1.420206 0.528909 -0.729282 -0.116086 0.155344 0.912968 0.279671 0.496123 1.217955 -1.273393 0.792581 -0.258738 0.151341 0.478428 0.051476 0.460634 -0.545110 -0.981670 0.596872 0.759760 0.068578 0.410731 -0.471477 -0.013022 -0.616412 -0.846376 0.864519 0.121758 0.274656 0.802879 0.463144 2.578092 -1.228951 0.270738 0.280430 -0.018251 0.183309 -0.128628 -1.052373 0.527326 0.207356 0.511938 1.490090 -0.084782 -0.654767 -0.033014 0.110073 0.225585 -0.763217 0.666292 -0.815258 0.068036 -0.372817 -0.389714 -0.540221 -0.576899 -0.420191 0.079482 1.163716 -0.168881 -1.619394 1.255983 -0.900950 0.551773 -1.835233 0.783565 -0.698265 0.687290 -0.740361 -0.089301 -0.214031 0.075451 -0.218388 0.343275 0.526178 -0.422806 0.611817 1.411581 0.289556 0.181200 0.163720 0.454540 -0.077406 0.071244 -0.504055 1.122141 -0.088244 0.065977 -0.145681 -0.506067 0.684556 -0.071277 -0.279162 0.395432 1.095406 -0.266277 0.273282 0.916159 0.268860 -0.617112 0.922157 0.184152 0.624647 -0.356050 -0.219012 -0.160190 0.183888 -0.090810 0.458823 -1.107729 -0.871911 -0.613002 -1.579774 -0.413534 0.446513 0.395386 0.240843 0.183998 -1.150792 -0.505369 1.350202 -0.262353 1.218217 0.331923 0.616563 0.717374 0.834925 -0.263939 -0.437382 -0.389911 -0.250594 -0.676648 -0.387399 -0.404337 0.786326 -0.540325 0.662453 0.600232 -0.195115 0.200340 -0.086990 0.687443 -0.573470 1.380241 0.646817 -0.352591 0.492347 0.199952 1.503515 -0.521427 -0.671713 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.360765 -0.859438 1.348374 1.224363 0.266893 0.588412 0.523943 -0.885112 1.335381 0.851458 0.083296 0.218363 -0.977165 0.405371 -0.163663 0.778672 -0.750616 -0.981015 -0.245896 -0.795064 -0.686782 -0.956881 0.225715 0.005678 0.387931 -0.410405 -0.731597 -0.288877 -1.214532 -0.666615 0.852128 -0.285629 0.576763 -0.422606 0.052486 -2.769469 0.960796 0.704411 -0.388415 -1.158325 0.124171 -0.753023 0.249407 -0.175670 0.088499 0.115675 0.017997 0.362860 0.734842 0.267917 0.672679 0.298444 -0.101664 2.525679 -0.990620 0.920888 0.435014 0.079591 -0.270498 0.567913 0.301469 0.253927 0.773617 0.781927 -0.345327 -0.611772 -0.082410 -0.445927 -1.190192 0.961312 0.166129 -0.338959 -0.825629 -0.246013 -0.668975 -0.517121 -1.368370 0.770601 1.670241 -1.046779 1.021068 0.360910 0.821430 0.184336 0.846203 -0.098647 1.377603 0.223618 -0.753704 -0.106750 -0.890402 -0.107378 -0.008611 0.031000 -0.363785 -1.241984 0.465613 -0.354038 -1.254838 0.662737 0.189302 0.220553 -1.342343 -0.270588 0.763181 0.436548 -0.751370 -1.367215 -0.979562 0.532428 -0.140655 -0.457615 0.312099 -0.821162 -0.253961 -0.738766 -1.162968 -0.373139 0.284828 -0.715880 -0.965620 1.184761 -0.775246 0.145667 -0.030124 0.234622 -0.380735 0.865949 -0.030105 0.727317 0.327947 -0.141733 -2.091322 0.075800 0.416074 1.132923 0.062189 0.218095 -0.435699 0.312337 -0.752686 0.406020 -0.019091 0.669383 0.994298 -0.345859 -0.769202 -0.485067 0.598018 -1.147006 0.451584 -0.874164 -0.079141 -0.005347 0.967208 0.963283 0.655679 1.252564 -1.001826 1.000200 -0.338897 0.078305 0.725693 0.083758 0.605221 -0.544545 -0.948673 0.238987 0.666846 0.127709 0.281228 -0.508262 -0.068274 -0.805669 -0.567630 -0.026559 0.426640 -0.317569 0.849786 0.577176 1.684173 -1.911912 0.528799 0.524269 -0.171126 0.316567 -0.289816 -1.246226 0.496955 0.311263 -0.230827 0.909953 -0.217592 -0.888384 0.235818 -0.214758 0.460199 -0.610843 0.108035 -0.784058 -0.533953 -0.775415 0.172777 -0.588948 -0.442692 -0.323138 -0.125071 1.265446 -0.569319 -1.023701 1.317057 -0.496026 0.274181 -1.589913 1.621061 -0.575487 0.390444 -0.826214 -0.112656 -0.365969 1.132885 -0.406874 0.403429 0.601135 -0.705488 0.544944 1.736078 0.321563 0.540873 0.163339 0.953453 0.022102 0.098160 -0.557419 1.307048 -0.249412 -0.369704 -0.000776 -0.594990 0.625354 -0.190696 0.216122 0.873026 1.043305 -0.015951 0.478694 0.954356 0.553453 -0.558754 0.666918 -0.037203 0.604360 -0.508023 0.127921 -0.048884 -0.008915 -0.473867 0.484047 -1.164472 -1.077837 -0.577681 -0.924723 0.010928 0.382172 -0.058058 -0.039853 0.028440 -1.401448 -0.580877 0.388863 -0.607162 0.387441 0.476870 0.549102 0.876163 1.337322 -0.583386 -0.215445 -0.041069 -0.330426 -0.438802 -0.513390 -0.520709 0.875937 -0.821214 0.655028 0.733389 -0.081754 0.277059 0.207696 0.919134 -0.591549 1.547889 0.668400 -0.168791 0.752983 1.017333 1.958661 -0.011488 -0.638925 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = -1.007063 -2.687878 4.028772 3.160584 -0.181778 1.628454 0.923378 -2.127011 3.583875 0.241893 -0.765124 0.848872 -2.742393 0.716859 -0.553129 1.275271 -3.307203 -3.017480 0.057880 -1.514664 -1.322524 -2.914746 0.441573 1.201899 0.867851 1.097238 -1.919824 -0.044293 -3.140121 -1.182311 3.045849 -1.296752 1.896165 0.931840 0.545513 -8.377745 2.778367 1.807914 -0.758315 -3.563823 0.144576 -2.364058 0.618429 -1.824799 -0.652188 0.507478 0.758130 1.983140 1.715543 0.156247 0.043642 -0.099606 -0.669607 5.873604 -2.157541 2.276178 1.565311 -0.166113 -0.659304 0.505994 1.020349 0.151593 2.386917 2.769013 -1.840819 -1.516985 0.014294 -1.896289 -3.669609 2.533481 0.615691 0.235120 -2.412215 -0.366306 -2.581101 -1.096916 -1.229107 2.755787 5.170257 -2.730168 3.495440 0.912697 2.959204 0.117284 2.184605 0.008442 3.907366 0.910718 -2.694841 -0.288156 -3.641993 -0.910375 -0.090859 -0.335304 -0.556577 -2.817584 0.840696 -2.959071 -3.350201 1.322145 0.236260 0.603571 -3.162708 -0.556426 2.740805 1.526789 -1.907442 -3.654845 -1.755244 0.932301 -1.113622 -1.104046 0.676883 -0.524015 -0.891427 -2.511042 -3.395094 -1.379091 1.031189 -2.334278 -0.955404 3.116192 -2.516132 0.874064 -0.220721 0.278685 -0.734616 2.923447 0.368165 0.875462 1.125871 -1.124023 -3.176566 -0.050352 0.729790 4.271063 -0.606323 -0.499680 -0.341758 0.908834 -1.747223 -0.677198 -0.261088 1.223522 2.210076 -1.126788 -2.206078 -1.737688 0.413853 -4.096725 0.966913 -2.631362 -0.301424 1.585705 2.776071 2.473948 1.825191 3.859346 -2.994800 2.902349 -0.898194 0.422026 1.869277 1.015061 1.805473 -1.583116 -2.391150 1.339777 0.950550 0.712243 0.847443 -2.001026 -0.066499 -2.522484 -2.282555 1.004897 1.643687 0.302991 2.262950 1.165981 2.847568 -4.828106 1.184723 1.306252 0.106525 0.559442 -0.133917 -3.419321 2.173349 0.470473 -0.168460 2.344178 -0.544884 -2.536114 0.484515 0.021865 1.124007 -2.130434 0.159378 -2.155065 -0.824303 -2.400644 0.644745 -1.702674 -1.522913 -1.533557 -0.666244 3.618053 -2.144432 -3.424379 3.485239 -1.074728 2.919538 -4.842926 2.301589 -1.994801 2.847021 -1.591527 -0.417493 -0.489862 0.526743 -0.682385 0.642343 1.760941 -1.242325 1.245997 3.668854 1.143850 1.277071 1.099286 2.384482 0.396760 0.425056 -1.073132 2.593783 -0.451964 -1.043828 0.552138 -1.659139 1.721546 -0.098428 0.721456 2.973797 3.403773 0.999896 2.636755 2.631666 1.015058 -1.802131 0.791731 -0.387588 2.088007 -1.311565 -0.093030 -0.679966 1.066242 -1.113559 1.358125 -3.433436 -4.861375 -2.866346 -3.504230 -0.811988 -0.221830 0.251305 0.134123 0.661523 -3.715663 -1.096512 1.011034 -1.438556 3.586801 1.376907 1.459484 2.571819 3.325778 -2.301143 -1.707771 1.188980 0.238358 -1.547680 -0.043172 -3.004719 2.186917 -2.584718 2.060222 3.014876 -0.952180 0.117728 -0.246609 3.471452 -1.733767 4.628549 2.268373 -2.026121 1.812470 1.527318 4.069181 1.282823 -2.127496 -PE-benchmarks/ugly-numbers.cpp__maxDivide(int, int) = -0.859590 -1.294833 0.815784 0.968655 0.636386 0.987152 0.779362 0.051978 0.786966 1.207215 -0.371289 0.560207 -0.629329 -0.333999 0.371911 0.260634 0.009262 -0.968966 0.383408 0.075855 0.007929 -0.871361 -0.647503 0.805505 0.061259 -0.156574 -0.279655 0.098082 -1.720471 -1.318644 0.148018 -0.150315 0.495560 -0.134803 0.323863 -1.737455 0.683819 1.289390 0.132989 -1.675942 -0.135567 -0.317081 0.060349 0.797598 0.431146 0.588624 0.723863 -0.007175 -0.138668 0.275856 0.277078 -0.473522 0.142959 1.176889 0.056150 1.182562 1.144034 -0.087604 0.278222 0.187528 0.276877 -0.409780 0.777887 0.890234 -0.535389 0.119904 -0.062473 0.056593 -1.145420 0.213162 0.066663 -0.461045 -0.403911 -0.236202 -0.457037 -0.309917 -0.223227 0.073523 1.573116 -0.213991 1.894990 0.827889 1.271253 -0.052213 0.916622 -0.215867 0.802520 0.315503 -0.980395 -0.032089 -0.942369 -0.518056 -0.308205 0.967176 -0.545746 0.763643 0.210623 -0.200877 -1.035402 0.734864 -0.632214 0.148131 -1.339041 0.347231 0.861799 0.609531 -0.260609 -1.174093 -1.226998 0.406971 -0.697706 -0.610803 -0.176978 -0.156303 -0.515973 -0.112117 -0.659999 -0.511469 0.695977 -0.852970 -0.798304 0.782116 -0.626853 0.967502 -0.155849 -0.087456 0.076232 0.270527 0.866654 0.046086 0.580949 -1.253002 -2.209013 0.075018 -0.231075 0.523307 -0.459253 -0.140450 0.429657 0.246635 0.367407 0.481515 -0.281499 1.007068 1.105186 0.004744 -0.359763 -0.911084 0.352977 -0.569820 0.486349 -0.644292 0.083929 -0.129303 0.733709 -0.065258 0.084786 1.200010 -0.897484 0.884192 -0.169108 0.198221 -0.071219 0.036700 0.298504 -0.350822 -0.555966 0.375339 1.195775 0.066666 0.310771 -0.600870 -0.193953 -0.309564 -0.997758 0.660246 -0.110122 0.361341 0.855069 0.088832 2.120745 -1.240852 -0.122739 -0.183324 -0.261862 0.149233 -0.131960 -1.003250 0.572615 -0.050669 0.206276 0.881072 -0.124192 -0.597723 0.242073 0.054782 0.062407 -0.747619 1.117733 -0.869061 -0.107419 -0.187756 -0.416488 -0.511773 -0.579307 -0.536075 0.527618 1.029914 0.640305 -1.487927 0.200509 -0.646953 0.196797 -1.436005 0.662078 -0.553248 0.338743 -0.702148 -0.198932 -0.098833 0.684152 0.536065 -0.119052 0.525297 -0.890173 0.851895 0.718782 0.062850 0.113055 0.515798 0.151978 0.059619 -0.714970 -0.559312 0.475782 -0.117707 0.017599 -0.281960 -0.419562 1.129418 0.437865 -0.552627 -0.255488 0.991261 -0.805309 -0.211010 0.868161 -0.455106 -0.495251 0.186738 -0.068268 1.292445 -0.150578 -0.052187 -0.898233 -0.043566 0.294020 0.426888 -1.056822 -0.459831 0.232645 -1.669368 -0.666304 0.654481 0.241039 0.748635 0.388312 -1.612250 -0.525561 0.624668 -0.139297 0.928005 0.246824 0.508891 0.954224 0.343261 0.308126 -0.586969 -0.310233 -0.303126 -0.857170 -0.415969 0.078222 0.188283 -0.685224 0.951465 0.108738 0.072439 0.071056 -0.038123 0.523860 -0.593869 1.385116 0.728138 -0.470093 0.144437 0.089876 1.731217 -1.198956 -0.625917 -PE-benchmarks/ugly-numbers.cpp__isUgly(int) = -1.586976 -2.301371 1.580840 1.337551 0.524072 1.505514 0.614501 0.113256 0.825692 0.988011 -0.642219 1.369745 -0.745300 -0.911418 0.087467 -0.247476 -0.167711 -1.579207 0.657063 0.043583 -0.004120 -0.943132 -1.678615 1.853432 -0.058190 0.004516 -0.424695 0.079246 -2.887055 -1.203166 -0.201946 -0.166763 0.813573 -0.198557 0.863984 -2.541095 0.720991 1.926601 0.159431 -2.743450 -0.267316 -0.715508 0.095779 0.508535 -0.253121 0.647327 1.226332 -0.482323 -0.642453 0.119182 -0.264847 -0.537744 0.111860 2.307756 0.722739 1.734882 2.182238 -0.139416 0.626971 0.084539 0.631928 -0.935386 1.068443 0.701860 -0.926459 0.341080 -0.094010 -0.042171 -1.175712 0.023253 0.178318 -1.009150 -0.152307 -0.509511 -1.717161 -0.536356 0.432021 0.334434 2.119754 -0.850451 2.830820 1.130423 2.025015 0.341568 1.726428 -0.042818 1.347127 0.665799 -1.395416 0.161761 -1.650131 -0.409902 -0.475893 0.748031 -1.092045 0.876415 0.913054 -1.624092 -1.848241 1.535575 -0.725817 0.034416 -1.537088 -0.028891 1.074051 1.227472 -0.839158 -1.489203 -1.586391 1.210281 -1.011105 -0.913514 0.170085 0.146263 -0.312616 -0.310722 -1.045028 -0.214188 1.889430 -1.136615 -0.910486 1.681453 -1.104379 1.617578 -0.392954 -0.213553 0.050622 0.869862 1.233197 -0.242118 0.057546 -1.661065 -2.640736 -0.178229 -0.512391 0.942269 -0.853453 -0.290933 1.287982 0.732061 1.122558 0.714547 -0.791685 1.353900 0.702548 0.149658 -0.656841 -2.123128 0.013893 -0.978052 -0.017571 -0.922700 -0.341686 1.259819 1.169328 0.686516 -0.284483 1.732655 -0.797970 1.154926 -0.150605 0.162660 -0.374246 -0.628634 0.413144 -0.780201 -1.055802 0.794140 1.563934 0.612236 0.605148 -1.003951 -0.003809 -0.344897 -1.571675 0.848059 0.424296 0.695607 1.733097 0.721995 1.615698 -2.016583 -0.490067 -0.917041 -0.511359 0.197181 -0.649548 -1.578058 0.335744 0.320823 0.018705 1.666442 -0.258336 -0.758258 0.500781 0.047462 0.095147 -0.971531 1.612660 -1.218546 -0.405868 -0.126740 -0.692355 -1.213616 -0.644107 -1.526303 -0.662332 1.996411 -0.889495 -2.279666 0.350368 -0.313548 0.889310 -2.336880 0.431190 -0.803014 1.791655 -0.205952 -0.312471 -0.460940 0.656944 0.576944 0.083063 0.983815 -1.715227 0.973304 1.035967 0.102503 0.393595 0.966317 0.359538 -0.283259 -0.881531 -0.985692 0.500016 -0.268166 -0.636057 -0.151043 -0.714899 1.571496 0.823073 -0.219368 -0.317811 1.201106 -0.623117 -0.177427 1.762865 -0.943140 -0.801981 -0.167529 -0.139753 1.890696 -0.609306 -0.137037 -1.613797 0.420235 0.875855 0.112004 -1.761494 -1.005837 -1.396625 -2.114072 -0.728317 0.299437 0.120456 0.806582 0.350444 -2.299006 -1.014113 0.921958 -0.400581 1.387801 0.794293 1.128796 1.843505 0.592118 0.127568 -1.005257 -0.044655 -0.245864 -1.318933 -0.232959 -0.364034 0.189279 -1.194602 1.581472 0.661911 0.316655 0.441761 0.589045 0.355596 -1.054014 2.049158 1.328734 -1.748806 -0.237388 0.740891 1.734596 -1.899131 -1.248915 -PE-benchmarks/ugly-numbers.cpp__getNthUglyNo(int) = -1.237281 -2.168600 1.396149 1.329926 0.877607 1.321607 0.827519 -0.244457 1.553526 1.494856 -0.908252 1.200201 -1.052815 -0.691545 0.610795 0.208378 -0.219084 -1.580558 0.811087 0.176305 0.096485 -1.630846 -0.873167 1.133582 0.064467 0.029743 -0.356130 0.285138 -2.536354 -1.816145 0.362633 -0.333403 0.829097 -0.124292 0.554813 -2.951444 1.060604 1.625068 0.095214 -2.944688 -0.293824 -0.661328 -0.114124 0.526878 0.583201 1.114582 1.170750 0.478742 -0.289474 0.552861 0.152171 -0.896329 0.146772 1.863149 0.097025 1.881700 2.122558 -0.130568 0.343148 0.313838 0.550052 -0.631134 1.329609 1.598512 -1.152221 0.170236 0.153148 0.087978 -1.884675 0.387993 0.579413 -0.684038 -0.750882 -0.406708 -0.653411 -0.265134 0.276939 0.244497 2.608012 -0.362792 3.147178 1.190785 2.304873 -0.215338 1.456326 -0.320381 1.519025 0.643627 -2.031904 -0.206278 -2.252028 -1.306359 -0.425626 0.955984 -0.643360 1.402942 0.381786 -0.489658 -1.618990 1.032555 -0.670231 0.219301 -1.844499 0.452155 1.474780 1.028650 -0.309033 -1.860711 -1.763972 0.767846 -1.496837 -0.898845 -0.291407 -0.040604 -0.699714 -0.283220 -1.070991 -0.832439 1.738627 -1.410087 -1.003725 1.338707 -1.587472 1.311871 -0.416410 -0.241742 0.209665 0.474549 1.224990 0.179536 1.389892 -1.872028 -3.438389 0.553483 -0.130919 1.264478 -0.593733 0.009096 0.985617 0.517570 0.631059 0.724643 -0.546505 1.165542 1.359352 -0.040582 -0.745289 -1.872733 0.290119 -0.894557 0.910939 -0.997265 0.419329 0.182386 1.319126 0.177702 0.091195 1.922417 -1.738901 1.511055 -0.344357 0.565591 -0.152477 0.305137 0.463544 -0.808407 -0.957571 0.865344 1.778140 -0.110590 0.765903 -1.116856 0.056027 -0.669408 -1.677866 0.979347 0.001360 0.538580 1.416546 0.361674 3.119772 -1.895903 -0.076453 -0.342924 0.179294 0.210257 -0.313178 -1.677945 1.091461 0.044501 0.946771 1.700949 -0.074450 -1.059553 0.137331 0.289900 0.004904 -1.011440 1.667157 -1.383471 -0.244331 -0.144937 -0.322262 -0.977970 -0.973601 -0.824120 0.733679 1.990774 0.741389 -2.527813 0.515600 -1.204152 0.775799 -2.713364 1.217706 -1.006124 0.988331 -0.902489 -0.242965 -0.442683 0.654970 0.540162 -0.178663 0.913462 -1.168596 1.306780 1.260826 0.139668 0.254322 0.931786 0.179653 -0.015212 -0.902892 -0.637522 0.487237 -0.095857 0.065072 -0.304766 -0.808807 1.998946 0.583219 -0.852937 0.265136 1.832231 -0.975968 0.277733 1.407162 -0.602315 -0.926990 0.334717 0.315619 1.672985 -0.543983 -0.237170 -1.227531 -0.077076 0.290593 0.585122 -1.582612 -1.044833 0.118437 -2.442194 -0.985718 0.595165 0.550697 0.784238 0.611159 -2.422980 -0.576242 0.723198 -0.239493 1.577868 0.499796 1.084944 1.303930 0.633209 -0.083103 -1.099308 -0.418230 -0.422366 -1.687289 -0.565824 -0.093785 0.358510 -1.059732 1.518887 0.447396 0.099666 0.006231 -0.358917 1.167469 -0.846782 2.124183 1.365873 -1.062122 0.002602 0.014534 2.417189 -1.664583 -1.127327 -PE-benchmarks/ugly-numbers.cpp__main = -0.578792 -1.141047 0.839169 0.685809 0.068370 0.578189 0.415248 0.031590 0.637762 0.057758 -0.485564 0.505105 -0.684566 -0.237165 0.033969 -0.158150 -0.472047 -0.863312 0.350835 0.073917 -0.029640 -0.674577 -0.491798 0.738017 0.036173 0.393858 -0.175077 -0.051224 -1.309467 0.024658 0.478707 -0.193338 0.487000 0.446007 0.321885 -1.821609 0.259435 0.710119 -0.012746 -1.405642 -0.080693 -0.600978 0.120967 -0.267543 0.013786 0.293346 0.593514 0.547065 -0.163551 0.018216 -0.414067 -0.418232 -0.162859 1.270177 0.060808 0.770763 1.099443 -0.004191 0.106918 -0.021036 0.332259 -0.369366 0.602000 0.615263 -0.668899 0.002828 -0.049959 -0.435733 -0.796494 0.198352 0.375775 0.040678 -0.401620 -0.243230 -0.651621 -0.269503 -0.241777 0.494356 1.316163 -0.671944 1.416279 0.506915 1.171625 0.071604 0.739317 0.075057 0.670056 0.311185 -0.819500 0.079691 -1.394733 -0.420310 -0.210913 -0.027782 -0.310613 -0.175762 0.330997 -0.622328 -0.866507 0.520943 -0.295495 0.114178 -0.515858 0.179618 0.563966 0.673030 -0.478952 -0.829093 -0.687992 0.376663 -0.533572 -0.334911 0.132803 0.323825 -0.238078 -0.747101 -0.701864 -0.216569 0.820819 -0.691429 -0.047671 0.856119 -0.770038 0.711851 -0.141066 -0.221303 -0.017335 0.742821 0.638832 -0.242848 0.436722 -0.864061 -1.188685 0.111001 0.008742 1.299566 -0.407620 -0.120723 0.550964 0.293321 0.297198 -0.139080 -0.070203 0.375799 0.333089 -0.241256 -0.422923 -1.072251 0.007310 -0.648382 0.148424 -0.543359 0.166401 0.551088 0.685448 0.603221 0.061862 1.142780 -0.726946 0.726698 -0.181348 0.104234 -0.087760 0.474954 0.318256 -0.413473 -0.544447 0.372374 0.500695 0.217748 0.369065 -0.564788 0.028190 -0.474397 -0.750240 0.408796 0.377340 0.170835 0.837098 0.381103 0.470024 -1.120585 -0.042961 -0.212017 -0.041840 0.047836 -0.062863 -0.873125 0.588001 0.076727 0.016761 0.633303 -0.094926 -0.513751 0.221420 0.025048 0.049650 -0.502318 0.430466 -0.637305 -0.297142 -0.445539 0.243703 -0.583279 -0.490888 -0.626383 -0.104299 1.054319 -0.191244 -0.962002 0.171874 -0.100791 0.686951 -1.274476 0.391537 -0.478802 0.931389 -0.244909 -0.213273 -0.120101 0.096163 0.204515 -0.154312 0.499275 -0.546664 0.354879 0.591428 0.194289 0.149801 0.588287 0.361285 -0.001108 -0.347629 -0.371538 0.155859 -0.136841 -0.234300 0.176833 -0.412272 0.858401 0.361281 -0.066049 0.665861 0.869499 0.092284 0.493470 0.735628 -0.261055 -0.447870 -0.222898 0.008386 0.991156 -0.375642 -0.051957 -0.756471 0.281426 0.114744 0.136785 -0.902407 -1.064537 -0.440899 -1.049254 -0.354937 -0.065016 0.049970 0.347164 0.284113 -1.220964 -0.332379 -0.005149 -0.339737 1.024683 0.331266 0.468515 0.863702 0.483411 -0.373145 -0.617765 0.504169 0.165398 -0.710519 0.083250 -0.542318 0.217650 -0.671288 0.685811 0.634609 -0.067471 0.105338 -0.044138 1.006392 -0.483363 1.297589 0.750226 -1.019951 0.037280 0.384285 1.036133 -0.229433 -0.615694 -PE-benchmarks/longest-bitonic-subsequence.cpp__lbs(int*, int) = -11.963376 -18.456052 15.956753 14.001206 5.158854 13.448913 7.308498 -7.569403 9.033780 15.492116 -5.875927 11.410321 -9.105055 -6.386604 -0.460293 1.321315 -2.228092 -10.989575 1.122694 -4.266205 -1.842287 -10.935854 -11.167351 14.320608 1.753771 -3.508333 -5.211747 3.731839 -22.452919 -22.796480 -1.586470 0.261058 6.935563 -7.529024 5.572881 -25.732402 12.008625 21.652718 -0.689996 -19.839698 -0.533453 -4.190637 -6.401835 8.634201 -2.195294 6.705126 5.007373 -1.485388 -3.695795 3.890024 7.927533 -1.660601 8.280996 22.403902 2.877111 19.489731 19.143279 -0.060285 4.987997 4.668883 4.115287 -2.717865 9.639716 9.732002 -5.057888 -0.555615 1.892250 4.844933 -12.449798 3.050044 3.477844 -14.881741 -3.531203 -6.897923 -11.777105 -4.486123 0.834587 -1.535925 23.038534 -4.185298 26.016603 10.709048 14.832370 -0.654533 15.952407 -2.942930 17.368161 6.112330 -13.677500 2.692794 -11.344271 -5.533609 0.215246 15.993357 -13.125091 4.673455 8.596666 -12.691613 -18.395297 12.454612 -2.807853 -4.473163 -13.177024 -1.362324 7.873554 3.199836 -5.868681 -16.800395 -15.542871 12.409826 -10.517883 -9.410912 -3.352203 -0.261807 0.113429 3.494568 -10.428421 -1.202152 15.749281 -9.364495 -10.694542 14.155326 -5.862317 11.462841 -4.007464 0.492291 0.045655 0.505763 4.947801 4.884754 2.031134 -8.931577 -26.444487 -1.155864 -0.953025 0.458767 -6.135970 -2.542318 9.351901 7.480143 7.742725 16.797984 -6.802490 13.981309 9.108152 2.771655 -5.186135 -15.789219 -2.701743 -10.466971 5.072432 -7.199401 -8.498625 -0.773238 11.841498 -0.784596 -1.412363 10.312914 -7.528843 12.578354 -0.291439 1.548457 -0.426463 -10.446340 3.801410 -7.768503 -13.313666 8.982242 14.967093 5.143416 5.720650 -5.537231 -1.458999 -2.979609 -13.673615 5.693155 -1.004862 2.463439 16.056673 8.984673 38.271058 -13.311495 2.255976 -4.925545 -2.766889 4.015722 -5.957092 -15.009776 3.543183 4.415048 4.923980 23.186764 -0.513927 -6.862542 3.082178 0.742196 1.394850 -12.516431 18.934619 -11.656264 -0.186147 -2.022191 -6.044303 -8.067021 -6.658824 -11.504891 -0.417905 18.563793 -9.395123 -20.037138 9.071415 -2.635603 4.110229 -21.956372 16.274168 -7.161997 12.576651 -6.807922 -4.415995 -1.027611 7.988275 -0.139144 4.868941 7.522033 -14.145790 11.246568 12.716505 0.363818 4.926549 4.243869 3.276800 -5.072302 -6.006443 -12.347032 10.583655 1.311367 -5.321571 -5.966466 -7.430612 13.329588 2.458224 -3.495598 -4.884959 13.059628 -9.476058 -6.432370 13.348307 -3.866407 -7.250568 6.536875 3.776803 9.389845 -7.273814 -2.647425 -8.218540 -0.014721 5.196374 5.316040 -17.068092 -3.050643 -8.568230 -16.625611 -6.349111 7.938719 6.956437 7.500723 1.663346 -20.980927 -11.434235 18.550667 -4.345879 7.684505 9.557431 13.854749 12.691819 6.807886 6.470539 -3.393239 -8.138398 -1.804834 -11.569241 -6.357263 0.688703 5.232203 -8.123395 14.958487 2.959085 3.198747 7.699572 1.881587 4.385538 -10.206785 19.138447 10.504339 -10.068191 0.954356 7.564811 18.460269 -19.891413 -10.006790 -PE-benchmarks/longest-bitonic-subsequence.cpp__main = -2.291679 -4.469853 4.357465 3.736903 0.803082 2.953190 1.718751 -1.813700 2.322071 2.981390 -1.575804 2.749113 -2.432026 -1.060803 -0.506673 0.622866 -1.356360 -2.852492 0.209065 -1.016233 -0.562471 -2.567196 -2.108924 3.259998 0.791155 -0.026574 -1.432035 0.512379 -5.259035 -4.747504 0.187088 -0.177372 1.841062 -1.054540 1.278250 -6.601502 2.887040 4.924917 -0.356815 -4.997986 0.140771 -1.262783 -1.343059 1.181096 -0.622195 1.491918 1.252532 0.448006 -0.587468 1.028132 1.248699 -0.276911 1.902876 5.765337 0.459166 4.442727 4.624738 0.074572 1.027728 0.824857 1.187688 -0.560729 2.229086 2.330156 -1.134694 -0.572914 0.022850 0.403390 -3.011328 1.034351 0.791002 -2.805572 -1.331177 -1.601884 -2.963279 -0.967737 -0.750200 0.513818 5.753392 -1.729575 5.969887 2.394340 3.501584 -0.150925 3.449946 -0.423945 3.808477 1.622244 -2.985351 0.539557 -3.007349 -1.388953 0.143878 2.721071 -3.047332 -0.276339 2.250503 -3.422357 -4.467037 2.858706 -0.366173 -1.056088 -2.545943 -0.271192 1.822557 1.185280 -1.689475 -3.910105 -3.253739 2.603557 -2.000472 -2.164220 -0.535620 0.302909 -0.097025 0.281683 -3.002921 -0.179945 3.481374 -2.345365 -1.845175 3.418637 -1.355590 2.613855 -0.954295 0.074683 -0.156044 1.025070 1.319840 1.151860 0.582918 -1.717757 -5.527988 0.168978 0.235687 0.854084 -1.666075 -0.474236 1.921707 1.792691 1.501852 3.145695 -1.477226 2.993784 2.094494 0.165425 -1.693828 -3.871201 -0.852984 -2.886403 1.087288 -1.996291 -1.849318 0.438996 2.979319 0.399908 0.079138 2.962326 -2.172479 2.815125 -0.095547 0.379538 0.130720 -1.713195 1.093115 -1.888773 -3.242970 2.234526 3.181214 1.291360 1.331389 -1.308305 -0.150741 -1.178126 -2.996121 1.602510 0.314652 0.306203 3.882063 2.231030 7.610052 -3.164649 0.413907 -0.795701 -0.757083 0.784584 -1.133560 -3.916930 1.252945 0.908656 1.168352 5.133234 -0.151242 -1.646436 1.068888 -0.033497 0.356349 -2.877989 3.903237 -2.822714 -0.384775 -0.998558 -0.671364 -1.872590 -1.590596 -2.713898 -0.379138 4.676303 -2.658829 -4.369211 2.233716 -0.535706 1.293742 -5.232093 3.836371 -1.844070 3.273518 -1.244311 -1.071310 -0.108396 1.301722 -0.343751 0.762905 1.959177 -3.027776 2.313287 3.182261 0.348835 0.893721 1.148022 1.236091 -1.200016 -0.876820 -2.768504 2.510968 0.101954 -1.443211 -1.035636 -1.742339 2.818535 0.303674 -0.513822 0.000587 2.959748 -1.344072 -0.626521 3.001542 -0.335929 -1.976097 1.462435 0.646601 2.531774 -1.905820 -0.618102 -1.878311 0.379846 0.868360 1.414586 -4.278522 -1.808159 -2.758269 -3.982007 -1.459963 1.123798 1.628440 1.289982 0.279420 -4.969333 -2.905604 3.926701 -1.237230 1.969240 2.500948 3.025229 3.245540 1.945446 0.842078 -0.843324 -1.290902 0.043693 -2.403692 -1.195730 -0.510532 1.458527 -2.156957 3.158980 1.594757 0.381086 1.802613 0.254602 1.785996 -2.479301 4.979641 2.588864 -2.863437 0.507725 2.146768 4.373664 -3.728248 -2.570641 -PE-benchmarks/longest-increasing-subsequence.cpp___lis(int*, int, int*) = -4.124006 -7.166269 6.564207 6.186270 3.098197 4.843591 2.885179 -2.517130 4.347104 6.918023 -2.177769 4.341480 -4.597692 -1.716111 0.859717 2.148293 -1.084452 -5.473066 1.244747 -1.122709 -0.338100 -4.458352 -2.334755 4.328849 1.484390 -2.401423 -2.482058 -0.213317 -9.015111 -8.002035 -0.419382 -0.808019 3.569546 -2.822967 1.116074 -9.231449 4.971517 7.484104 -0.515613 -8.629918 0.413140 -2.398826 -1.108569 2.458851 -0.272049 2.878073 2.844261 -0.218561 -0.273205 2.635538 2.666915 -0.616041 2.677023 7.881513 0.432307 7.095131 6.316240 0.040131 0.620766 1.648911 1.963343 -1.154933 4.783593 3.702759 -2.613742 -1.019163 -0.015788 1.209413 -5.962502 1.584454 1.223545 -3.717057 -1.884982 -1.380398 -3.242678 -1.642182 2.643370 0.623390 8.798354 -2.228470 9.299625 4.043558 5.268909 -0.386763 5.276889 -0.945354 5.472655 2.386565 -4.979142 -0.691329 -5.630971 -2.933917 -0.404963 4.311342 -3.779472 0.517330 2.868684 -3.383475 -7.312179 4.387258 -1.071025 -0.838934 -6.450071 -0.353802 4.225005 3.310182 -2.343251 -6.546888 -5.288732 3.745077 -3.826311 -4.119941 -1.039745 -1.571082 -1.230807 0.222638 -4.784977 -1.726338 5.351484 -4.777666 -4.130755 5.378370 -3.124808 4.536570 -1.420757 0.501957 -0.055261 1.139265 2.510722 2.405132 2.667444 -3.846447 -9.135253 0.123245 0.254342 1.071983 -1.983613 0.226205 2.052462 2.548753 1.719180 5.301418 -2.166318 5.107152 4.785311 0.214769 -2.643518 -5.694530 0.416865 -3.974411 2.285076 -3.577789 -1.594250 0.057659 5.108839 -0.500310 0.706081 6.419302 -3.918812 4.651186 -0.459065 0.958845 0.781011 -2.511298 2.072942 -3.114674 -5.177619 3.324091 6.821957 0.931690 1.935047 -2.260804 0.064559 -2.329723 -5.319923 1.422314 -0.093439 0.427640 5.911205 2.585915 12.066055 -5.379241 0.624811 -0.846478 -0.565877 1.659407 -2.107978 -7.096822 1.465058 1.161742 1.986678 8.215499 -0.266286 -4.533965 1.859118 0.218360 0.341956 -4.386940 6.218799 -5.337253 -0.077557 -1.218038 -1.996307 -3.188864 -3.258745 -3.861182 0.709625 7.418605 -0.725237 -8.096199 2.951848 -1.811525 1.320531 -9.917196 5.779650 -3.469385 3.893820 -2.525762 -1.491427 -0.825889 3.150947 -0.212637 0.415956 3.511821 -4.312027 5.078553 5.439574 0.619454 1.227850 2.120280 1.712724 -0.755721 -1.830663 -3.887505 4.062307 -0.425632 -1.346911 -1.692185 -3.001262 5.271263 0.837415 -2.105752 -0.729160 5.088461 -3.631280 -0.261593 4.928168 -0.345370 -3.400907 3.311594 1.209670 5.258523 -2.449762 -0.442564 -3.442569 -0.146687 1.012185 3.551278 -6.936426 -2.991311 -1.894561 -7.693787 -2.003505 3.226819 2.278384 1.959973 1.094382 -8.200049 -3.888796 4.756875 -1.726225 5.098154 3.686399 4.868046 5.114112 3.213141 0.644670 -2.147447 -2.574893 -1.354416 -4.794893 -3.346668 0.395396 2.102606 -2.879473 5.543476 1.870987 0.836933 1.730879 -1.170477 1.685186 -3.686679 7.667377 4.523814 -3.242459 1.353967 2.035315 8.172507 -7.154225 -4.149787 -PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -1.380799 -2.194301 2.049670 1.851171 0.822693 1.374593 1.017342 -0.684469 1.504133 1.891542 -0.524632 1.173894 -1.550139 -0.322017 0.128610 0.669745 -0.484680 -1.765365 0.360928 -0.462593 -0.345441 -1.442234 -0.594127 1.116739 0.473775 -0.703699 -0.808632 -0.307878 -2.750046 -1.946377 0.217190 -0.360640 1.121306 -0.803970 0.273377 -3.564986 1.342967 2.028679 -0.239482 -2.599130 0.139155 -0.941518 0.035765 0.474793 -0.078632 0.678867 0.909110 0.055196 0.159515 0.689608 0.785611 -0.215046 0.516347 3.018301 -0.208135 2.016440 1.762432 -0.013171 -0.018436 0.497696 0.614633 -0.420926 1.485149 1.145419 -0.868778 -0.362805 -0.069419 -0.007760 -1.921778 0.613068 0.362045 -0.881958 -0.741229 -0.433728 -1.086663 -0.716786 0.057070 0.434086 2.806309 -1.037749 2.790165 1.121021 1.716078 0.049353 1.601876 -0.173124 1.694142 0.626410 -1.570968 -0.142771 -1.681582 -0.603976 -0.231447 1.149879 -0.948983 -0.349591 0.931798 -0.823696 -2.244222 1.367585 -0.316019 -0.001679 -2.069574 -0.158070 1.250734 1.144462 -1.029614 -2.140397 -1.778235 1.023955 -0.938702 -1.119829 -0.024620 -0.638042 -0.452558 -0.471146 -1.559172 -0.606537 1.464193 -1.559889 -1.342003 1.806043 -1.121351 1.361522 -0.296402 0.208137 -0.122208 0.792294 0.797110 0.678503 0.697359 -1.138157 -3.185717 -0.152185 0.171854 1.061576 -0.526434 0.065701 0.428982 0.691916 0.269093 1.229626 -0.408385 1.507899 1.611587 -0.123260 -0.922731 -1.655284 0.401728 -1.413553 0.652306 -1.225050 -0.211071 0.187279 1.575447 0.293068 0.320939 2.264627 -1.297076 1.586084 -0.266623 0.098998 0.375879 -0.413615 0.784528 -0.987710 -1.560998 0.828396 1.938818 0.351979 0.598765 -0.811963 0.017753 -0.883426 -1.498866 0.325178 0.257130 -0.033571 1.745414 0.816353 3.432410 -2.167692 0.239174 -0.129967 -0.183224 0.489114 -0.576995 -2.196049 0.605598 0.379748 0.124000 2.160386 -0.133834 -1.484701 0.647600 -0.112042 0.228749 -1.304978 1.532357 -1.598743 -0.272059 -0.619113 -0.421994 -1.083361 -0.958512 -1.118976 0.086441 2.288708 -0.405466 -2.277902 0.972259 -0.430186 0.523699 -3.075225 2.087180 -1.066379 1.246464 -1.009073 -0.453275 -0.351936 1.326863 0.030482 0.174389 1.092210 -1.304113 1.389680 1.992119 0.278665 0.519282 0.696768 0.850329 -0.078584 -0.503773 -1.029497 1.318700 -0.208031 -0.514700 -0.290118 -0.949725 1.594810 0.327720 -0.394800 0.278331 1.706061 -0.923497 0.231494 1.657149 0.014894 -0.997097 0.837703 0.227888 1.821995 -0.804961 -0.043869 -1.034346 0.165182 0.119108 0.938035 -2.129028 -1.287664 -0.623209 -2.239458 -0.512123 0.989697 0.409936 0.496106 0.357262 -2.571403 -1.071503 1.164666 -0.677979 1.576940 1.003616 1.369360 1.681761 1.229805 -0.114845 -0.800023 -0.428313 -0.395477 -1.354890 -0.842905 -0.137550 0.646016 -1.202507 1.621348 0.707876 0.160054 0.435726 -0.016207 0.872621 -1.162780 2.540300 1.402536 -0.999702 0.657214 0.956252 2.765599 -1.732281 -1.240821 -PE-benchmarks/longest-increasing-subsequence.cpp__main = -0.175164 -1.217502 1.576048 1.306896 -0.064150 0.538325 0.460520 -0.436713 0.816142 0.261275 -0.505545 0.701827 -0.921042 0.152114 -0.388892 0.492552 -1.007677 -1.007650 0.056712 -0.255511 -0.263102 -0.668472 0.005721 0.619225 0.535156 0.534353 -0.551412 -0.295565 -1.318460 -0.577483 0.547820 -0.301711 0.678211 0.290471 0.218349 -2.168019 0.753909 1.000109 -0.266713 -1.549872 0.275293 -0.612959 -0.055539 -0.450786 -0.198863 0.286666 0.432880 0.756123 0.183593 0.388049 -0.179686 0.012200 0.349947 1.888217 -0.157884 0.948069 1.148568 0.083995 0.026441 -0.009381 0.487557 -0.101341 0.598173 0.612839 -0.296872 -0.534351 -0.369484 -0.567148 -0.905724 0.546956 0.167842 -0.005616 -0.773182 -0.309045 -0.825191 -0.213870 -0.905704 0.907820 1.706947 -1.100066 1.324599 0.476735 0.878325 -0.010148 0.579840 0.130016 0.673673 0.525060 -0.564044 -0.027556 -1.074811 -0.403026 0.054539 -0.247625 -0.612110 -1.280949 0.717530 -1.048774 -1.236822 0.641301 0.132194 -0.161791 -0.324453 -0.030341 0.497993 0.774205 -0.721661 -0.978105 -0.500812 0.326382 -0.084636 -0.506004 0.129896 0.227662 -0.210223 -0.511460 -1.229071 -0.060822 0.624356 -0.784444 0.025333 0.948780 -0.407397 0.593591 -0.212083 0.017852 -0.189617 1.082377 0.489702 0.310610 0.316163 -0.159073 -0.876234 0.369714 0.460663 0.974646 -0.544168 0.047367 0.137123 0.435046 0.007126 0.032023 -0.198405 0.499102 0.595181 -0.413558 -0.841147 -1.044414 -0.232290 -1.075720 0.203263 -0.801420 -0.191808 0.631099 0.926109 0.615440 0.425799 1.352669 -0.926125 0.616671 -0.090584 0.089646 0.291189 0.293350 0.489738 -0.532614 -0.892436 0.603757 0.575560 0.333073 0.307012 -0.363252 0.144610 -0.758890 -0.561171 0.528914 0.567051 -0.193199 1.019811 0.597365 0.642322 -0.935889 0.010547 0.163415 -0.240350 0.079262 -0.057540 -1.354185 0.665428 0.101596 0.208356 0.927958 -0.075224 -0.570868 0.581972 -0.204344 0.123129 -0.635699 0.422785 -0.811210 -0.401957 -0.717943 0.453098 -0.475858 -0.450534 -0.636715 -0.278269 1.421286 -0.860898 -0.817364 0.613885 -0.094623 0.576436 -1.455864 0.998973 -0.624947 1.007481 -0.084541 -0.278766 0.026739 -0.030561 -0.309826 -0.176005 0.673212 -0.459440 0.341910 1.037384 0.331804 0.012268 0.438602 0.750797 -0.201272 0.223714 -0.504997 0.657977 -0.201925 -0.481837 0.099633 -0.446162 0.471580 -0.122427 0.106337 1.033245 0.689034 0.366440 0.706251 0.663310 0.440331 -0.725403 0.322600 -0.063182 1.018204 -0.612049 -0.097390 -0.441472 0.415827 -0.147093 0.538985 -1.290709 -1.455564 -1.169265 -1.104777 -0.292566 -0.266007 0.319140 -0.110941 0.018204 -1.287428 -0.833058 0.449501 -0.503650 0.747727 0.790185 0.528152 1.043528 0.829830 -0.474999 -0.324680 0.251115 0.325564 -0.360822 -0.092858 -0.675783 0.541289 -0.772780 0.491552 1.144516 -0.226652 0.349844 -0.124957 1.083413 -0.670500 1.660011 0.768503 -1.049739 0.448296 0.825056 1.234730 -0.096422 -0.817448 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -3.276725 -5.366807 4.257776 4.033870 1.366362 3.309952 2.728079 -1.058677 1.920049 3.929273 -0.798171 3.415980 -2.991382 -2.073381 0.034044 0.568758 -0.592519 -3.131060 0.814355 -0.536015 -0.170112 -2.602574 -3.646109 4.511922 0.586233 -1.370459 -1.067429 -0.287216 -6.812441 -4.219490 -0.942721 -0.127815 2.079672 -1.671264 1.554837 -6.209637 2.462904 5.559665 -0.133423 -5.255023 -0.260221 -1.285801 -0.404368 0.823918 -1.040038 1.478769 2.034565 -0.861598 -0.986695 0.765432 1.136048 -0.658568 3.077230 5.715844 0.846646 5.164438 5.188608 0.228548 2.062126 0.511296 1.255040 -1.402310 2.489445 1.565087 -1.448683 -0.034018 -0.578028 0.719151 -2.626819 0.188788 1.683099 -2.378743 -2.049388 -1.003523 -3.802651 -1.796571 -2.072959 0.052756 5.345718 -2.396477 7.119000 3.639288 4.111301 0.426937 4.141266 -0.021660 3.795749 1.412258 -3.446134 1.449812 -4.190809 -1.138854 -0.362919 2.971913 -3.462960 -1.012551 2.235107 -2.952557 -5.263194 3.697879 -1.061032 -0.758484 -2.724334 -0.557161 1.538366 1.429836 -2.338452 -4.464089 -4.157851 3.163477 -2.298807 -2.379375 0.256107 -0.004638 0.667764 -0.382297 -3.000761 -0.293890 4.558815 -2.822287 -2.394864 3.893565 -0.810645 3.910623 -0.758929 -0.301807 -0.066987 0.669321 2.532634 0.902969 -0.211809 -3.192966 -7.120659 -0.624685 0.149048 0.665836 -1.199124 -0.352765 2.365063 2.191145 3.123384 4.214940 -0.420635 3.498809 0.504924 0.206494 -0.917301 -4.807705 -0.711008 -1.549224 1.442107 -1.443170 -1.946798 0.309974 2.839921 -0.522257 -0.441704 1.911634 -1.116822 3.040665 -0.370065 0.478713 -0.351509 -1.997660 1.121254 -1.591253 -3.191748 2.067719 4.171638 2.093939 1.239018 -1.623779 0.150431 -0.197626 -2.911552 -0.415874 -0.446217 -0.621217 4.801649 2.206272 8.831641 -3.519598 0.211332 -1.614682 -0.421661 1.193656 -1.443126 -3.968283 1.192223 0.842583 -0.661182 5.019824 -0.485917 -2.090031 2.028566 -0.304208 0.190851 -3.046113 4.459392 -2.976943 -1.031076 -1.141348 -0.647718 -2.597512 -2.093589 -3.755797 -0.384995 4.920905 -3.006103 -3.754867 0.828420 0.710560 0.490047 -4.994812 5.002863 -1.479202 2.953008 -1.429895 -1.875499 -0.049721 3.238466 0.426184 -0.590932 2.211681 -4.549914 2.580181 2.540551 0.193660 1.000993 1.883535 1.050421 -0.711299 -1.794150 -3.128313 2.403929 -0.163393 -1.563554 -0.925961 -1.808212 4.012283 1.390364 -0.833314 -0.709267 3.213261 -1.932592 -1.409970 3.370787 -1.419405 -1.691349 0.183352 0.921884 3.217022 -2.209219 0.168101 -3.269476 -0.372700 1.299519 1.747958 -4.511944 -0.775171 -1.144265 -2.955666 -1.678603 2.366176 1.354234 2.224552 0.448581 -6.141375 -3.404235 4.605415 -1.477520 -0.482233 2.553641 3.066480 3.934380 1.917207 1.735681 -1.639703 -0.706548 -0.296291 -2.411013 -1.202395 0.142865 1.390333 -2.790803 3.982389 0.915480 0.570139 1.682234 -0.054416 1.422221 -2.773499 5.396707 2.759414 -3.401164 0.030060 3.664381 4.737141 -5.643047 -2.471805 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = -0.623284 -1.409650 1.363692 1.225514 0.020750 0.773868 0.543267 -0.321410 0.645100 0.229316 -0.342347 0.751768 -0.955943 -0.297711 -0.099793 0.008180 -0.741980 -1.000498 0.062263 -0.167602 -0.111776 -0.746489 -0.701378 1.201080 0.192908 0.338983 -0.417300 -0.001219 -1.810248 -0.304410 0.384846 -0.096263 0.680381 0.421959 0.497020 -2.053772 0.617043 1.289880 -0.107109 -1.512286 -0.005196 -0.633402 -0.035049 -0.447749 -0.335442 0.347575 0.425595 0.232624 -0.137911 -0.022390 -0.240184 -0.171318 0.326964 1.603540 0.032104 1.179288 1.402537 0.075449 0.449148 -0.056452 0.386028 -0.202521 0.663075 0.564341 -0.607322 -0.235606 -0.195722 -0.401177 -0.815351 0.349673 0.516864 -0.180128 -0.716217 -0.364755 -1.204464 -0.406936 -0.592175 0.560036 1.591233 -0.993491 1.701712 0.779192 1.192317 0.146437 1.045166 0.137319 1.063247 0.426921 -0.792697 0.393841 -1.633826 -0.403987 -0.074815 0.195481 -0.823728 -0.644362 0.580201 -1.203374 -1.357129 0.797333 -0.149687 -0.160601 -0.556842 0.000000 0.443248 0.544703 -0.627995 -1.100720 -0.805968 0.770163 -0.463347 -0.496760 0.148001 0.395025 0.033524 -0.701046 -1.087302 0.036471 1.028717 -0.691889 -0.128622 1.161559 -0.569778 0.807828 -0.203408 -0.213416 -0.213167 0.772115 0.596152 -0.002703 0.077263 -0.878873 -1.361857 -0.084085 0.167371 1.102648 -0.484512 -0.230507 0.524551 0.513068 0.463829 0.376488 -0.002273 0.593382 0.025936 -0.282694 -0.476504 -1.348722 -0.396931 -0.864916 0.192056 -0.550398 -0.325797 0.617967 0.870979 0.559596 0.139847 0.993192 -0.542515 0.803664 -0.141060 0.057149 0.030952 0.074919 0.374258 -0.456879 -0.900609 0.631666 0.556066 0.615278 0.425527 -0.494915 0.023429 -0.406170 -0.839531 0.201139 0.245864 -0.020234 1.311566 0.732548 1.123366 -1.137912 0.136357 -0.182967 -0.134028 0.178432 -0.182017 -1.091361 0.559398 0.192459 -0.240939 1.146455 -0.187357 -0.568441 0.459381 -0.061625 0.181284 -0.817206 0.744000 -0.743763 -0.295351 -0.766195 0.236066 -0.699522 -0.622974 -0.981580 -0.365227 1.453797 -0.926170 -1.045788 0.412592 0.286909 0.641005 -1.413729 0.794202 -0.478252 1.264596 -0.185024 -0.427444 0.033962 0.221285 -0.098966 -0.193009 0.629106 -1.030365 0.347862 0.703449 0.254924 0.171324 0.541026 0.498876 -0.127242 -0.169297 -0.813611 0.592886 -0.121223 -0.491803 0.106844 -0.508752 0.904107 0.252755 0.000260 0.552483 0.974975 0.264845 0.231658 0.842992 -0.123506 -0.558956 -0.220777 0.141314 0.881271 -0.616783 -0.008906 -0.788042 0.237894 0.154434 0.324597 -1.261298 -1.031192 -0.725121 -1.014543 -0.390481 0.060258 0.218422 0.496925 0.096410 -1.575742 -0.857580 0.689926 -0.529121 0.631228 0.644189 0.635218 1.149972 0.786958 -0.194340 -0.506935 0.485599 0.292357 -0.577900 0.035245 -0.707884 0.652852 -0.793884 0.839320 0.879874 -0.140730 0.504605 -0.126900 1.065828 -0.738550 1.768205 0.810087 -1.312140 0.122791 0.941401 1.183850 -0.526758 -0.773765 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__kthSmallest(int*, int, int, int) = -7.583015 -11.001275 8.711592 7.544532 3.820531 7.397830 4.333453 -2.023175 4.724338 8.532529 -1.945744 7.088141 -6.381560 -4.267124 0.226302 0.351240 -0.324036 -7.524504 1.553032 -1.434808 -0.238442 -5.375127 -6.559866 9.081586 1.171363 -5.071328 -3.226822 -0.011750 -14.419885 -9.450857 -3.109482 -0.241414 4.702389 -7.982236 3.063074 -13.107482 5.596944 12.172619 -0.060109 -12.591183 0.193353 -3.494949 -0.211696 3.563040 -3.257629 2.860255 4.698108 -2.056011 -2.001543 2.284726 1.894996 0.086969 3.781343 12.617773 2.969041 10.265646 10.190088 0.543063 1.271365 1.397892 2.625702 -3.166333 6.018238 2.059984 -3.916630 -0.254195 -0.029164 2.929450 -6.782535 0.312922 2.195144 -6.292123 -1.211921 -2.427607 -9.076787 -3.752640 7.663348 -0.186246 11.237721 -4.140481 12.988371 6.186581 7.361696 2.248095 8.849042 -0.801373 7.270605 3.068415 -6.350249 1.222559 -8.421881 -2.051541 -1.208114 5.402456 -6.308019 -3.221730 4.793442 -8.339686 -11.147802 7.534865 -2.409957 -1.887785 -8.492441 -2.975067 5.366776 5.206738 -5.010815 -8.873899 -7.999787 6.882233 -4.863582 -5.616465 1.354464 -1.526326 0.621482 -0.825534 -6.075272 -0.928170 9.620568 -5.965907 -5.409537 8.975815 -4.367916 8.628963 -1.762995 0.617097 -0.113459 1.292707 4.534225 1.624323 -0.624995 -6.080084 -11.037647 -3.331073 -2.163176 0.745085 -2.782296 -0.449447 4.316211 4.455320 5.228869 8.676077 -3.133357 6.713151 3.560779 1.476353 -2.015771 -9.515133 -1.636751 -4.714068 1.586899 -3.133371 -4.643527 1.837064 6.574258 -0.850777 -1.156916 7.330386 -1.908155 4.946871 -0.251799 -0.353245 -0.119877 -6.282497 2.691821 -3.931409 -7.654033 4.565328 9.381093 4.474888 2.427758 -2.900822 0.079610 -1.165709 -6.951566 -1.021271 0.651778 1.016507 9.574941 4.819291 13.789839 -7.329922 -0.292998 -3.709486 -1.824549 3.234508 -4.470339 -9.228074 0.048339 2.636535 0.309384 12.088702 -0.986765 -5.830236 4.634686 0.301228 0.663121 -6.612244 8.616668 -7.686273 -0.359025 -1.836734 -3.438797 -5.987259 -3.707078 -8.888500 -2.768454 10.497905 -4.098885 -11.084357 2.741181 1.325364 3.170401 -13.326576 6.528803 -3.618592 8.770971 -1.668970 -1.709387 -0.046352 4.708649 0.401132 0.161136 4.912138 -7.910499 6.497010 5.578818 0.335321 2.015856 3.199480 2.150889 -1.730628 -3.379928 -7.174331 4.827879 -1.459561 -3.608585 -1.702326 -3.884616 8.069332 2.890079 -1.622951 -4.029264 5.744452 -4.860110 -1.881203 8.577253 -2.680825 -3.938752 2.619661 1.492640 7.461988 -4.008467 0.197571 -6.897117 1.525322 3.339682 4.052533 -10.161450 -2.916167 -5.353057 -10.233018 -1.887763 4.782989 0.971684 3.649287 0.923311 -11.702920 -6.178434 8.136481 -2.482887 6.402332 5.937728 7.268790 8.670334 4.054476 1.833408 -2.819695 -1.218704 -2.301259 -6.697640 -4.453757 0.682589 1.914259 -4.624599 8.645506 2.389603 1.627092 3.831197 -0.417315 -0.379460 -5.922475 10.726330 6.413486 -6.586353 0.191205 4.965359 11.180583 -11.905490 -5.825908 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -2.859310 -4.214551 3.663263 3.303272 0.684587 2.778338 1.555709 -1.144156 1.612387 2.938406 -0.591015 2.337343 -2.596151 -0.745420 -0.439772 0.453300 -0.923941 -2.710933 -0.054766 -1.294091 -0.981825 -1.997841 -2.368362 3.419137 0.545192 -1.487012 -1.492597 -0.148397 -5.156676 -2.845551 -0.366799 -0.106856 1.879793 -2.201858 1.073335 -6.835200 2.155586 4.423661 -0.234721 -4.227282 0.145030 -1.833178 -0.052174 1.151257 -1.933989 0.369151 1.192959 -0.727256 -0.139663 0.296782 1.328715 0.215372 1.366933 6.958993 0.322901 4.090236 3.620048 0.060868 0.400465 0.738446 0.930963 -0.811882 2.308652 1.131877 -1.134614 -0.571002 -0.227359 0.245324 -2.482489 0.735508 0.666953 -2.333384 -0.788154 -1.225960 -3.099592 -1.983281 0.535553 0.630302 4.692399 -2.405315 5.001379 2.192092 2.385529 0.825909 3.708877 -0.237084 3.554864 0.965076 -2.144226 0.870810 -1.862330 0.066232 -0.014024 2.448089 -2.622568 -2.051826 2.033142 -2.768627 -4.641157 3.096958 -0.781105 -0.681646 -2.821542 -1.077667 1.635052 1.318658 -2.497449 -3.863622 -3.353388 2.574698 -1.160517 -2.200577 0.114339 -0.650516 0.321580 -0.792068 -2.834407 -0.164429 3.009765 -2.271815 -2.319104 3.806042 -1.132770 2.914580 -0.384918 0.366359 -0.315864 1.547230 1.296778 0.663471 -0.950959 -1.593676 -4.754344 -0.839753 -0.222317 0.543161 -1.129587 -0.492208 1.389442 1.627393 1.350706 2.983893 -0.709633 3.348109 1.755978 0.397827 -1.155874 -3.411662 -0.448356 -2.761139 0.314675 -1.932990 -2.291143 0.770952 2.628356 0.779459 -0.054957 2.871709 -0.701790 2.487015 -0.127152 -0.398268 0.553101 -2.113334 1.353327 -1.714600 -3.141171 1.556179 3.034243 1.897871 0.735426 -1.091339 -0.482291 -0.820577 -2.483493 0.166912 0.656026 0.263513 3.794375 2.100160 7.193702 -3.665889 0.807612 -1.024717 -1.113887 1.178040 -1.448397 -3.680470 0.135043 1.181130 -1.226582 4.325796 -0.556419 -2.069139 1.458356 -0.417165 0.727794 -2.950746 3.188688 -2.677261 -0.398932 -1.452243 -1.090386 -2.013828 -1.411721 -3.045654 -1.157442 4.342458 -3.690761 -3.694149 1.897147 0.772230 1.072942 -4.831263 3.807712 -1.529027 3.514975 -1.578184 -1.427440 -0.002777 2.541572 0.078839 1.183996 1.945439 -3.063756 1.946060 3.024393 0.318618 1.410282 1.159126 1.717797 -0.540328 -0.964964 -2.771481 2.778713 -0.143764 -1.663950 -0.718612 -1.708270 2.362997 0.952003 0.162261 -0.438992 2.725794 -1.403500 -0.910994 3.611467 -0.564269 -1.394108 0.935481 -0.129975 2.723994 -1.700313 0.001139 -2.139670 0.714556 0.922732 1.171095 -4.226453 -1.673513 -2.958854 -3.081311 -0.755902 2.009962 0.395270 1.468648 0.243724 -4.816520 -2.609036 3.568750 -1.643623 2.264370 2.192237 2.820248 3.531549 2.268210 0.978663 -0.962277 -0.242573 -0.368856 -1.912170 -0.914886 -0.574699 1.293842 -2.228406 3.459366 1.264217 0.589371 1.821216 1.164217 0.613787 -2.517413 4.535896 2.174693 -2.580737 0.898166 2.995324 3.923704 -3.522066 -2.282600 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.976014 -0.931270 1.009113 0.830547 0.420009 0.609852 0.586880 -0.468395 1.012128 1.046002 0.023285 0.343935 -0.819909 0.046959 -0.068260 0.486487 -0.248227 -0.884097 0.067933 -0.569611 -0.449697 -0.778581 -0.136807 0.136316 0.190312 -0.711440 -0.506900 -0.319548 -1.278454 -0.936241 0.364526 -0.291029 0.535375 -0.862275 -0.093378 -2.602595 0.677018 0.785269 -0.303197 -1.105250 0.130073 -0.654223 0.327795 0.244860 -0.081597 0.103019 0.300870 -0.203044 0.408574 0.259887 0.763869 0.093221 0.024094 2.248451 -0.647009 0.903029 0.541337 -0.038627 -0.353252 0.484797 0.253284 -0.114744 0.816820 0.598762 -0.432725 -0.309582 0.014916 -0.143950 -1.130269 0.462851 0.021377 -0.469254 -0.360042 -0.152869 -0.605018 -0.644299 -0.430808 0.217937 1.430843 -0.676733 1.251897 0.382960 0.790953 0.248809 0.844484 -0.019942 1.052085 0.152167 -0.807070 -0.094696 -0.443260 0.133318 -0.124343 0.734485 -0.256613 -0.579930 0.518845 -0.090841 -1.115926 0.735581 -0.068458 0.254322 -1.476729 -0.323457 0.635681 0.566898 -0.801764 -1.277359 -1.155590 0.524322 -0.308357 -0.464540 0.226646 -0.872622 -0.249857 -0.545613 -0.799664 -0.384044 0.486823 -0.778138 -1.137658 1.076810 -0.658681 0.457824 0.009524 0.332539 -0.250563 0.575207 0.125495 0.516477 0.107518 -0.371744 -2.219969 -0.405816 0.152143 0.854548 -0.049187 0.016611 -0.162858 0.235993 -0.272107 0.515589 -0.072887 0.793085 1.161660 -0.092892 -0.436887 -0.561535 0.643866 -0.967439 0.306001 -0.721951 -0.022023 0.022222 0.812615 0.432996 0.360484 1.283061 -0.665812 1.002443 -0.297793 -0.180402 0.498202 -0.242647 0.567367 -0.507340 -0.808569 0.134029 0.942100 0.221191 0.248644 -0.475827 -0.078710 -0.562609 -0.607182 -0.059711 0.311516 -0.166775 0.726182 0.454701 2.130481 -1.711865 0.318041 0.130537 -0.154140 0.328154 -0.372903 -1.076560 0.204147 0.387140 -0.423407 0.894837 -0.109134 -0.927075 0.225248 -0.207955 0.296671 -0.629584 0.484628 -0.757449 -0.290929 -0.400226 -0.338466 -0.666511 -0.438273 -0.479822 -0.111546 1.083920 -0.439066 -1.071576 0.793754 -0.209547 0.177449 -1.653428 1.509596 -0.552013 0.545196 -0.940015 -0.129625 -0.379266 1.335769 -0.031499 0.391378 0.524000 -0.747621 0.731115 1.505539 0.253856 0.588241 0.199999 0.766029 0.067007 -0.225878 -0.463510 0.965194 -0.206537 -0.373096 -0.015011 -0.530702 0.736945 0.161786 0.105993 0.282609 1.005791 -0.553188 0.184758 1.081680 0.196094 -0.398062 0.528541 0.011022 0.933488 -0.350158 0.106928 -0.358091 0.155022 -0.121610 0.368011 -1.067641 -0.687640 -0.316807 -1.001293 -0.006075 0.789454 -0.108739 0.161755 0.245147 -1.418540 -0.387089 0.595236 -0.499506 0.728832 0.368544 0.665403 0.841897 0.940090 -0.226631 -0.451235 -0.204822 -0.409080 -0.586988 -0.473056 -0.141524 0.443467 -0.801914 0.790745 0.223139 0.081982 0.124715 0.471539 0.403886 -0.562580 1.344470 0.669677 -0.122062 0.677903 0.753580 1.770901 -0.631237 -0.515422 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__partition(int*, int, int) = -3.873667 -5.353523 4.894883 4.590329 1.170617 3.825398 1.842280 -2.545618 2.729417 4.802969 -1.098824 2.781709 -3.413392 -0.935769 -0.372972 1.302901 -1.331983 -3.370821 -0.044610 -1.971081 -1.393244 -3.274226 -2.526096 3.712370 0.897527 -1.272110 -2.025777 0.337914 -6.169637 -6.413148 -0.425996 -0.280177 2.508679 -1.995288 1.063218 -9.077489 3.531903 6.008424 -0.629491 -5.433279 0.147845 -2.156819 -0.870113 1.699236 -1.527792 1.525955 1.264931 -1.236586 0.205203 0.996361 2.758272 -0.010254 2.497711 7.924153 -0.095886 5.664570 4.693743 -0.096869 0.597875 1.451404 1.189982 -0.583210 3.373703 2.435413 -1.498541 -1.007160 0.067991 0.753596 -3.684339 1.670137 0.539807 -3.476029 -1.484424 -1.784656 -3.665793 -2.242160 -0.305154 0.454165 6.602981 -2.368083 6.999810 2.919112 3.357059 0.235682 4.822946 -0.722898 5.476712 1.489518 -3.629990 0.949413 -1.838603 -1.058450 0.140047 4.546471 -3.428009 -0.854812 2.583827 -4.001484 -6.011218 3.814227 -0.590945 -0.839823 -4.761571 -1.263619 2.363234 1.104375 -2.592411 -5.516606 -4.514018 3.497893 -2.142006 -2.911923 -0.598466 -1.075594 0.092577 0.544444 -3.786988 -0.705342 3.823414 -3.214356 -3.672595 4.775022 -0.865639 3.128754 -0.711615 0.721659 -0.418849 1.517587 0.853679 2.159051 -0.236394 -1.331923 -7.804977 -0.887458 0.354892 -0.245833 -1.597955 -0.958114 1.570948 2.048470 1.021645 4.491490 -1.582457 4.605009 3.828797 0.607386 -1.818844 -4.153244 -0.289656 -4.007718 1.185155 -2.706491 -2.469005 0.100976 3.742640 0.325342 0.392690 3.618389 -1.865210 3.528280 -0.449628 -0.034225 1.085413 -2.704534 1.781937 -2.527171 -4.204298 2.522917 4.388570 1.928286 1.402877 -1.618916 -0.377406 -1.178836 -3.755015 1.414843 0.271005 0.085418 4.929033 2.813667 11.534109 -4.986475 1.563190 -0.775722 -1.008178 1.617332 -1.717221 -4.985694 0.917053 1.542484 -0.090131 6.322877 -0.472954 -2.657964 1.217533 -0.348846 0.893290 -4.032435 4.553569 -3.783359 -0.027551 -1.624952 -1.657788 -2.479854 -2.186982 -2.912287 -0.410167 5.738079 -3.966509 -5.074422 3.544227 -0.089914 1.153164 -7.057678 5.186591 -2.324790 3.700955 -2.963093 -1.804840 -0.395519 3.517752 -0.187356 1.557037 2.569622 -4.381747 3.090496 4.548851 0.423649 1.986889 1.192032 2.187749 -0.697912 -1.219736 -3.487925 3.925823 0.298227 -1.532827 -1.600329 -2.475725 3.266310 0.710679 -0.259866 -0.390180 4.196134 -2.512793 -1.311666 4.751746 -0.213530 -2.069645 2.134384 0.410233 3.114356 -2.481650 -0.534866 -2.169150 0.374735 0.709079 1.826516 -5.551842 -1.927062 -3.294713 -4.170295 -1.586439 3.113545 1.533559 1.871401 0.392414 -6.304445 -3.266464 5.543156 -1.977052 2.147624 2.633484 4.006404 4.126558 3.118385 1.531447 -1.335693 -2.091943 -0.760264 -2.855847 -1.704362 -0.379692 2.128540 -2.635259 4.565259 1.273110 0.514583 2.135844 1.467546 1.740725 -3.206264 5.795634 3.012353 -2.583137 1.556222 3.536556 5.278330 -5.010501 -2.919337 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = -1.404088 -3.292841 3.453057 2.877412 0.510881 1.881570 1.293790 -0.883411 1.725421 1.548309 -0.759178 2.103002 -2.134648 -0.678901 -0.393816 0.513157 -1.325482 -2.469397 0.197382 -0.621789 -0.275302 -1.585926 -1.214990 2.476305 0.844461 -0.297639 -1.276738 -0.326569 -4.115344 -2.133694 0.094556 -0.333729 1.643071 -1.188765 0.924900 -4.796406 1.904798 3.380179 -0.331408 -3.980450 0.374746 -1.245551 -0.081520 -0.116732 -1.009999 0.799094 1.250972 0.451819 -0.196639 0.758063 -0.160442 0.254939 1.059165 4.340796 0.408536 2.839837 3.185945 0.210058 0.339412 0.120019 1.026186 -0.625011 1.665400 0.809238 -0.981471 -0.771996 -0.451533 -0.129397 -2.154643 0.633800 0.767303 -1.079049 -1.072025 -0.744052 -2.991335 -0.935792 0.824875 1.028317 3.832749 -2.054047 3.661666 1.653482 2.245224 0.587512 2.233334 0.108825 2.009770 1.175839 -1.596704 0.362763 -3.069284 -0.847888 -0.129470 0.424364 -1.891496 -2.519345 1.672543 -3.050373 -3.386493 2.096834 -0.154171 -0.631933 -1.856442 -0.837945 1.497069 1.818353 -1.728257 -2.561927 -1.899936 1.648887 -0.918030 -1.529206 0.606297 0.097219 0.048261 -0.830790 -2.513900 -0.008198 2.472063 -1.736369 -0.784342 2.709142 -1.351571 2.158675 -0.599893 0.137502 -0.413204 1.351798 1.329509 0.594854 0.085209 -1.313617 -2.545260 -0.493498 0.034276 1.379479 -1.044069 -0.217619 0.801603 1.388925 1.024844 1.642029 -0.633616 1.613615 0.940007 -0.191574 -1.214720 -2.958203 -0.816463 -2.031061 0.447065 -1.277154 -1.210373 1.243439 2.183463 0.516998 0.289837 2.582461 -1.121884 1.430627 -0.159467 0.003915 0.329254 -0.945536 1.003611 -1.190648 -2.361926 1.519605 2.112607 1.479390 0.767870 -0.874855 0.242564 -0.962053 -1.886332 0.075914 0.756071 -0.068689 2.877255 1.666912 2.636755 -2.250713 -0.126626 -0.482191 -0.665358 0.703774 -0.875190 -3.057826 0.636323 0.631608 0.143958 3.279116 -0.324039 -1.684251 1.626750 -0.097484 0.252171 -1.839364 1.875651 -2.238854 -0.510007 -1.239873 -0.045714 -1.755124 -1.115312 -2.573608 -1.130489 3.513826 -1.837029 -2.933298 1.196722 0.348146 1.345275 -3.968482 2.061471 -1.243295 2.889113 -0.151577 -0.553012 0.160528 0.593985 -0.536732 -0.283267 1.615105 -2.083388 1.426295 1.974788 0.477148 0.294949 0.950218 1.204666 -0.617647 -0.168485 -2.039317 1.611802 -0.662619 -1.329175 -0.140243 -1.100701 1.942817 0.313550 -0.024959 0.211050 1.566366 -0.137762 0.432689 2.290853 0.039661 -1.531533 0.703705 0.260368 2.310546 -1.395107 0.011340 -1.724569 0.855898 0.479650 1.388846 -3.276917 -2.130497 -2.457279 -3.078608 -0.578974 0.496637 0.375867 0.520767 0.056460 -3.529406 -2.115358 1.874759 -0.971652 1.789985 2.112986 1.812382 2.785416 1.671492 -0.325086 -0.809180 0.324264 0.012640 -1.459735 -0.937402 -0.840502 1.090480 -1.664718 2.007363 1.924602 -0.050248 1.218531 -0.433100 1.198236 -1.826599 3.880514 1.943494 -2.554363 0.401687 1.938466 3.368473 -2.152208 -1.951913 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::Graph(int) = -0.095979 -2.267847 2.871178 1.668742 -0.457873 1.676422 1.325861 -1.355719 1.308269 0.659367 -0.858477 0.550904 -1.606519 -1.030043 0.173252 -0.236953 -2.060444 -1.519766 0.139369 -0.668738 -0.358266 -1.534393 -0.510638 1.677049 0.473040 1.010871 0.079684 -0.135427 -2.459574 -0.633033 1.197444 -0.126621 0.679388 2.309849 1.630806 -2.035246 1.498935 1.556992 -0.193315 -2.558463 -0.033952 -0.145055 -0.814214 0.534219 0.369921 0.556388 0.420222 1.918562 -0.297569 0.329314 0.147668 -1.358417 0.228806 2.444110 0.785962 1.999492 2.230763 -0.205122 1.218865 1.259539 0.726761 -0.277871 0.629516 1.454067 -0.238737 0.335689 0.547900 -1.183201 -1.380734 1.262023 0.544978 -1.607784 -0.365840 -1.337303 -1.441946 -0.213141 -2.750659 1.974262 3.084754 -1.584940 2.669416 1.127071 2.108289 -0.874479 2.153173 -0.174095 2.524667 0.810721 -1.453760 0.668404 -2.555292 -2.168911 0.113658 -0.445328 -1.104809 -0.236480 1.386814 -2.368034 -2.212793 1.802435 0.079351 -0.270351 -0.870022 0.395403 1.081694 0.369897 -1.492597 -1.979373 -1.453911 1.530042 -1.874640 -0.194909 0.129673 1.459899 -0.680228 -0.316249 -1.049916 -0.116349 1.803130 -1.138190 -0.513436 2.343131 -0.842499 1.498813 -0.385899 -0.567291 -0.042325 0.866259 0.628133 0.052305 0.975437 -0.725342 -1.542577 1.155413 0.158293 1.340636 0.407795 0.239158 1.575732 1.315169 0.146387 1.257263 -1.189025 1.186264 0.030065 -0.495734 -1.584399 -1.286546 -0.578610 -1.905091 0.297577 -1.248387 -1.072026 0.571968 1.835538 2.154456 -0.509946 0.957896 -1.507454 0.791524 -0.455455 0.371251 -0.709726 -0.036918 0.556266 -1.119017 -1.376509 0.238351 0.787280 0.453918 1.168296 -1.497879 -0.667313 -1.308698 -2.152850 0.670409 0.746882 -0.162878 1.513361 1.621516 0.909434 -1.875740 -0.270969 -0.058203 -0.078397 -0.202491 -0.402191 -2.082959 0.789955 0.174740 0.864806 1.702490 -0.223301 -0.065794 0.363358 -0.311991 0.257356 -1.245231 0.525258 -1.323600 -0.102697 -0.856490 0.794836 -1.176330 -1.158013 -1.165934 -0.685772 2.367730 -1.187357 -1.987191 2.152755 -0.819077 1.521450 -1.756593 0.972325 -0.804808 1.619240 -0.027215 -0.317000 -0.502706 0.193996 0.038368 0.504923 0.382608 -1.047864 1.097380 1.581149 0.196626 0.778798 0.910018 0.998492 -1.442644 -0.916858 -1.565437 1.420812 -0.229315 -0.913996 -0.139321 -1.052747 1.327816 -0.089551 -0.201941 1.000656 1.040354 0.053563 0.372845 0.763984 -0.833019 -1.196992 0.297533 0.833073 1.239485 -1.033632 -0.347122 -0.541320 -0.011795 0.154590 0.037242 -2.195318 -1.620386 -1.958178 -1.667918 -1.566025 -0.844904 1.066708 0.723960 0.335404 -1.829895 -1.099580 0.650770 -0.659007 -0.113656 1.323815 1.503194 2.031762 1.739120 0.078633 -0.016480 0.320542 0.788353 -1.752451 -0.416224 -1.136418 0.352538 -1.794573 1.756711 1.435500 0.893011 1.084276 -0.553660 2.232983 -1.911537 1.726873 1.809489 -1.804874 0.014147 1.607751 1.502291 -0.151153 -1.539419 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::addEdge(int, int) = -0.391477 -1.595272 2.386586 2.273744 -0.389854 1.052234 0.253968 -1.435890 1.178782 1.040368 -0.194706 0.780020 -1.411738 0.458828 -0.071988 1.140260 -1.696976 -1.092001 -0.535362 -1.126902 -1.062540 -1.120823 -0.114413 1.034326 0.759696 0.523892 -1.086790 0.007597 -1.247854 -1.675270 0.576147 -0.301473 1.144160 0.551017 0.571997 -4.044982 1.599099 1.532973 -0.447090 -1.641110 0.168941 -0.852852 -0.027713 -0.383929 -1.005720 0.392624 0.056417 0.181632 0.841520 0.371575 0.656160 0.234291 0.983472 3.247461 -0.447331 1.626829 1.093533 -0.198096 -0.013006 0.198140 0.545223 0.248492 1.111771 0.837644 -0.181876 -1.091700 -0.338866 -0.555324 -1.387767 1.314340 0.092106 -0.767077 -1.283149 -0.909196 -1.269378 -0.805875 -1.771514 1.363017 2.535959 -1.697089 1.713359 0.741277 0.673722 0.092427 1.439893 -0.140477 2.157554 0.597887 -0.878739 0.645213 -0.123011 -0.669925 0.474033 0.490460 -1.182434 -1.868862 0.872341 -1.792628 -2.190635 1.310991 0.420220 -0.237823 -1.427837 -0.843944 0.814790 0.381989 -1.167762 -1.883941 -0.963635 0.780783 0.032797 -0.911327 -0.231123 -0.070260 -0.065063 -0.124700 -1.996707 -0.149351 0.681237 -1.037228 -0.585530 1.738084 -0.039503 0.557912 -0.222897 0.315248 -0.467591 1.675644 -0.025152 1.157150 -0.240859 0.372127 -1.538627 0.061562 0.645457 0.291289 -0.332603 -0.511201 -0.140938 0.731711 -0.604820 1.031461 -0.122429 1.458729 1.556507 -0.016223 -1.286167 -1.049629 -0.583435 -2.213539 0.402455 -1.368800 -0.741399 0.868219 1.436681 0.849865 0.707507 1.263746 -1.021489 1.033588 -0.360245 0.032896 1.009469 -0.098995 0.854514 -0.954543 -1.461431 1.040743 0.842672 0.810925 0.525054 -0.627545 0.005367 -0.763580 -0.989353 0.788071 0.630969 -0.226654 1.597204 1.105550 3.308220 -1.481254 0.743254 0.451038 -0.359599 0.462709 -0.270985 -1.927392 0.650262 0.366017 -0.338810 1.719338 -0.387155 -0.798279 0.571445 -0.378448 0.550892 -1.372429 0.787191 -1.194277 -0.021609 -1.315267 0.091511 -0.759393 -0.638758 -0.761218 -0.332871 2.235763 -2.339864 -1.107181 2.048907 -0.168930 0.852054 -2.108171 2.203702 -0.862151 1.409091 -1.034692 -0.940651 0.004269 0.477041 -0.544002 0.589656 1.002645 -0.945846 0.158389 1.936795 0.370692 0.466268 0.289398 1.358940 -0.096479 0.573999 -1.008985 1.974017 0.038806 -0.287832 -0.391316 -0.860308 0.400573 -0.351452 0.306966 0.985043 1.276207 0.192732 0.223034 1.314050 0.677615 -0.949370 0.930173 -0.123805 0.815629 -1.167082 -0.175564 -0.090388 0.644040 -0.388588 0.706578 -2.068536 -1.585935 -2.225983 -0.787647 -0.808334 0.807895 0.632613 0.057625 -0.260480 -1.549967 -1.364561 1.963673 -0.936309 0.461055 0.992239 1.069906 1.610446 1.782161 0.004629 -0.402133 -0.362307 -0.040987 -0.311392 -0.069428 -1.074455 1.349491 -1.117362 1.097441 1.447282 -0.267817 0.861947 0.398096 1.536528 -1.214302 2.203501 0.879373 -1.005924 1.073923 1.930331 1.447905 -0.321063 -1.160070 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.077529 -0.917212 1.926129 1.690331 -0.291034 0.629247 0.100363 -1.345253 1.481807 0.359404 -0.067820 0.345084 -1.053998 0.601394 -0.297854 1.025625 -1.514553 -0.974832 -0.508815 -1.067197 -0.843968 -0.975442 0.422656 0.255730 0.632583 0.456758 -0.955443 0.007034 -0.960840 -0.934492 1.081055 -0.390250 0.806590 0.193464 0.263220 -3.329660 1.412603 0.906599 -0.490407 -1.358132 0.240322 -0.820300 0.128790 -0.602182 -0.478886 0.211199 -0.188216 0.492971 0.979868 0.286153 0.366317 0.484081 0.168066 2.586149 -0.959138 1.010112 0.481178 -0.059223 -0.391253 0.293020 0.409690 0.500026 0.837138 0.799006 -0.267402 -1.124092 -0.221362 -0.642902 -1.378018 1.246603 -0.015182 -0.403871 -1.099677 -0.507587 -0.989252 -0.497219 -1.263619 1.271060 1.947137 -1.326708 0.981342 0.226904 0.533105 0.101900 0.849460 -0.081755 1.616537 0.433907 -0.617319 0.086968 -0.553645 -0.367427 0.334869 -0.198445 -0.657727 -1.762485 0.632030 -1.287231 -1.489152 0.672496 0.589161 -0.016680 -1.289897 -0.552017 0.818272 0.455756 -0.835267 -1.398146 -0.535145 0.528918 0.168919 -0.568503 0.040671 -0.378039 -0.230716 -0.592107 -1.607283 -0.197249 0.232984 -0.657977 -0.459639 1.273472 -0.562691 -0.070521 -0.159556 0.358538 -0.535055 1.432644 -0.267029 0.930079 0.048071 0.330961 -1.071000 0.194983 0.521846 0.920253 -0.165585 -0.154143 -0.558813 0.399922 -1.002412 0.215261 -0.210901 0.599859 1.185029 -0.278406 -1.043524 -0.464671 -0.177392 -1.884918 0.345044 -1.117295 -0.385883 0.680549 1.141151 1.103125 0.925839 1.349332 -1.154538 0.773225 -0.319310 0.034166 1.115236 0.273336 0.758473 -0.678450 -1.061748 0.663747 0.295291 0.391765 0.343633 -0.465736 -0.009963 -0.970315 -0.573925 0.525547 0.693097 -0.104452 0.978030 0.763155 1.600164 -1.502391 0.572225 0.737847 -0.284610 0.336849 -0.148355 -1.460224 0.572121 0.317679 -0.017740 1.144079 -0.309094 -0.712182 0.279165 -0.210863 0.566819 -0.885238 0.134186 -0.904089 -0.241678 -1.085549 0.214592 -0.571869 -0.433315 -0.545250 -0.455696 1.606379 -1.393390 -1.044610 1.858997 -0.450001 0.858132 -1.673572 1.337762 -0.757155 1.029203 -0.678022 -0.206450 -0.128654 0.190236 -0.749185 0.411867 0.737312 -0.494163 0.200572 1.764319 0.447669 0.311833 0.064806 1.190299 -0.131339 0.768503 -0.644971 1.617946 -0.190769 -0.326104 0.055199 -0.636931 0.132174 -0.585328 0.378784 1.224358 1.022349 0.561673 0.709134 0.880237 0.900543 -0.784405 0.896935 -0.138609 0.399007 -0.666183 -0.058427 0.283081 0.553908 -0.543808 0.574059 -1.486717 -1.747025 -1.615354 -1.032023 -0.184657 0.074947 0.231250 -0.283068 -0.177470 -1.174959 -0.914647 0.999809 -0.676181 0.942986 0.665798 0.638332 1.038536 1.616170 -0.766642 -0.197364 0.021847 -0.064648 -0.146893 -0.216749 -1.124218 1.289367 -0.805793 0.493335 1.436548 -0.375614 0.470281 0.057361 1.205382 -0.758962 1.744571 0.630357 -0.507026 1.054603 1.106764 1.535516 0.478665 -0.858644 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclicUtil(int, bool*, int) = -1.092383 -6.586475 9.198457 8.612984 0.226645 4.810644 0.946885 -5.510168 5.488738 3.934685 -2.379807 3.714540 -5.526330 0.986156 -1.773736 3.628957 -5.419043 -5.275484 -1.036916 -3.121012 -2.721544 -4.932647 -0.200583 4.068431 2.957616 3.791945 -3.863614 0.492789 -7.479135 -7.728385 2.653266 -0.905326 4.154841 2.814742 1.743188 -11.535088 6.565953 7.756109 -1.321722 -8.111888 0.859419 -3.231785 -2.084921 -0.323092 -0.673431 2.688146 0.588679 2.620178 1.896098 2.005618 1.822354 0.730329 3.031567 8.964098 -1.108118 7.100547 5.224174 0.334520 0.446352 1.156043 2.231219 1.231982 4.610267 4.418867 -2.033285 -3.682442 -0.598097 -1.065422 -6.044523 4.648085 0.952164 -3.047708 -4.198639 -2.830097 -3.846363 -1.200588 -3.108280 3.934314 10.248832 -4.250021 7.807613 3.192916 3.703154 -1.399643 5.208718 -1.327064 7.544069 3.111097 -3.829515 -0.162781 -5.044198 -3.101365 0.991095 2.288654 -5.320594 -4.016106 3.624949 -7.876371 -8.385134 3.559076 1.096378 -1.665174 -4.964884 -0.399831 4.112159 1.887100 -2.828950 -6.833081 -2.920918 3.324864 -1.935098 -4.154969 -1.539675 0.137099 -1.157323 0.384502 -7.169202 -1.104043 3.439264 -4.359922 -1.950575 5.926319 -0.653862 2.396843 -1.691532 0.833861 -0.921433 4.120109 0.467497 3.419394 1.630834 0.472581 -4.599118 1.887879 2.124498 1.415201 -3.239642 -1.236278 0.510079 2.737354 -1.378801 3.237839 -3.581558 4.345647 5.827365 -1.005012 -4.594419 -4.614967 -1.365547 -7.393209 1.482586 -4.915231 -3.300278 0.420862 6.011640 2.219608 2.670973 6.291023 -5.446356 3.911028 -0.135884 1.571819 2.932353 0.237320 2.700167 -3.826630 -6.196458 4.597952 3.963054 1.461280 1.797960 -1.864862 -0.314885 -3.654270 -4.803200 4.263122 1.296233 0.017070 6.813436 3.789926 10.442344 -5.792440 2.167014 1.363522 -1.510542 1.650478 -0.742152 -8.169118 3.017200 1.011959 2.870742 8.664563 -0.807840 -3.204282 2.014423 0.065250 1.421139 -5.522982 4.643035 -5.743945 -0.631832 -4.060182 0.772457 -2.374475 -2.933986 -3.455191 -0.899660 8.536239 -5.321165 -6.690313 6.806393 -1.658516 3.009643 -9.385599 3.860934 -4.073793 4.471595 -2.038426 -1.897750 0.001294 -0.285157 -2.516584 0.976994 4.020257 -3.691065 3.370481 6.676462 1.165749 0.836361 1.454320 3.623606 -1.401591 1.277841 -4.414309 6.457987 0.510085 -1.801238 -1.504898 -3.486870 2.240293 -1.857116 -0.670974 3.619255 5.533999 0.359563 1.324981 3.984478 2.507030 -4.349697 4.290915 0.501427 3.035888 -3.588908 -1.306451 -0.848287 1.066863 -0.863205 4.092466 -8.115829 -7.132941 -5.866812 -7.154327 -2.192552 0.448467 3.541507 0.664263 -0.421150 -7.015934 -5.641255 6.410075 -2.643159 6.068660 4.265348 4.706418 5.358106 5.568522 -1.382799 -0.752178 -1.630161 0.484043 -2.830202 -2.191799 -3.066295 4.938706 -2.288050 4.513820 5.845320 -1.019081 3.075264 -1.673594 5.949949 -4.292502 9.004013 4.071134 -4.447099 3.066174 3.372418 7.758191 -2.126879 -4.917076 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -2.010558 -5.471641 6.046217 5.826811 1.390311 3.817496 1.231480 -3.058741 3.997718 4.561925 -2.251358 3.314767 -3.728813 -0.211048 0.002164 2.418467 -2.601201 -3.998041 0.435137 -1.265702 -1.264170 -3.925065 -0.913207 2.946102 1.575060 2.294327 -2.346227 0.556039 -5.978259 -7.265579 1.342267 -0.788039 3.052184 1.584933 1.105229 -8.511453 4.570572 5.883723 -0.671696 -6.792824 0.231954 -1.787869 -1.706177 1.168167 0.619323 2.830058 1.482035 1.548515 0.380923 1.965229 1.841801 -0.619363 2.674964 5.766103 -0.100784 5.661432 4.911034 -0.063878 0.694327 0.877335 1.719515 0.067683 3.852318 4.046489 -1.965382 -1.736478 0.006478 0.068701 -5.001900 2.559046 1.202601 -2.423239 -2.473725 -1.884013 -1.585978 -0.709754 -1.054550 1.415971 7.986719 -1.649363 7.261086 3.153269 4.110467 -1.290850 4.011881 -1.063405 5.314615 2.385448 -4.022795 -0.365514 -4.043678 -3.052907 0.302501 3.574064 -3.503349 0.260375 2.204661 -3.714570 -5.734756 2.912929 -0.114365 -0.696298 -4.546701 0.263653 3.556752 1.712544 -1.453872 -5.199512 -3.391144 2.193198 -2.996255 -3.260530 -1.762896 -0.149566 -1.437863 1.240518 -4.480498 -1.467049 3.414284 -3.709951 -2.252698 3.960329 -1.091908 2.567520 -1.460016 0.387795 -0.169764 1.629283 1.445650 2.290557 2.628053 -1.345501 -5.689185 1.449458 1.215309 1.006487 -2.435052 -1.241761 1.170356 1.870490 0.223277 3.074089 -2.428315 3.766793 5.350114 -0.253815 -2.924544 -4.271373 -0.234468 -4.566088 1.825672 -3.442879 -1.184486 -0.697710 4.396253 -0.006796 1.509762 4.662653 -4.604358 3.792744 -0.379968 1.629208 1.236692 0.226994 1.694833 -2.705274 -4.159895 3.217387 4.484539 0.397615 1.713368 -2.039954 -0.151272 -2.212189 -4.249243 3.529651 0.052160 0.348171 4.718755 2.119975 10.900486 -4.084157 1.078992 0.316119 -0.414434 1.015456 -0.571326 -5.821713 2.516691 0.519046 2.806694 6.677200 -0.244150 -2.853890 1.052950 0.520532 0.373279 -3.868334 4.931889 -4.303827 -0.046999 -1.799053 -0.156947 -2.133419 -2.498786 -2.335688 1.042421 6.263845 -1.655366 -5.953270 3.722689 -2.340977 1.513880 -7.564704 3.436257 -3.155543 2.538355 -2.407770 -1.580265 -0.407339 0.528899 -0.803406 0.433646 2.929122 -2.969880 3.376061 4.501939 0.700030 0.625108 1.453832 1.655234 -0.689071 -0.502794 -2.919362 3.892725 0.457621 -0.505659 -1.636280 -2.551297 3.188188 -0.452626 -1.751656 1.081517 4.570581 -1.677811 0.287732 3.040404 0.707670 -3.232973 3.007844 1.062650 3.294814 -2.272614 -0.998193 -1.696917 0.139589 -0.131927 3.188592 -5.635961 -3.706761 -1.867200 -6.025345 -2.550106 1.984656 2.912186 1.402915 0.555162 -5.803100 -3.428585 4.773721 -1.430779 4.493025 2.758349 3.676369 3.759417 3.056141 -0.092159 -1.584366 -2.344017 -0.430624 -3.262321 -1.972943 -0.962228 2.821828 -1.525945 3.934056 2.749724 -0.368263 1.508162 -1.594360 4.340299 -2.901806 6.819149 3.441055 -2.879811 1.525277 1.144844 6.940503 -3.796491 -3.514050 -PE-benchmarks/detect-cycle-undirected-graph.cpp__main = -0.349361 -5.809818 8.904509 7.669249 -1.244248 3.275690 0.750351 -3.838979 4.688794 0.559887 -2.824289 3.376241 -5.051672 1.258908 -1.116962 3.010797 -7.225303 -5.228653 -0.257427 -1.920584 -2.205100 -4.151459 0.736777 3.847191 3.103004 6.006524 -3.688912 0.209327 -5.623178 -4.497272 4.097726 -1.828067 4.363492 5.605679 1.803542 -12.366016 5.582463 5.134970 -1.261701 -7.219917 1.002727 -2.963338 -1.211518 -3.251570 -1.635774 2.487678 1.697307 4.266281 2.158136 1.322184 -0.988701 -0.616731 1.727623 7.799394 -1.210481 5.188400 4.828905 -0.555894 0.226223 -0.548034 2.288359 0.335123 4.016258 4.569888 -2.425261 -3.707655 -0.637648 -3.147607 -5.738817 4.489514 1.816852 0.083379 -4.587448 -1.902810 -3.746045 -0.782809 -1.338904 5.095357 9.861693 -4.349574 6.991024 2.473306 4.310641 -1.421935 3.453639 -0.256249 5.989033 2.940679 -3.697364 0.010617 -5.822555 -3.533381 0.715319 0.866602 -3.294302 -4.332442 2.548052 -7.281855 -6.826605 2.475524 1.251655 -0.941746 -3.454735 -0.062340 4.217757 2.504569 -2.517637 -5.559262 -1.763220 1.148058 -2.006788 -2.861828 -1.073172 1.833926 -1.676397 -1.158313 -7.038900 -1.152501 2.410688 -4.095930 0.628645 4.730129 -1.855594 2.144576 -1.401881 0.556654 -1.149939 5.200467 1.477337 2.004736 2.347147 -0.546124 -1.729126 1.213140 2.428996 4.826465 -3.081670 -2.631930 0.001814 2.278110 -1.738920 -0.190279 -1.444691 3.298700 4.613162 -1.861345 -5.029026 -4.444416 -2.165933 -7.525591 1.342550 -4.893456 -1.616620 2.989634 5.213596 2.263604 3.188442 6.621020 -5.321184 4.277766 -0.703914 1.463418 2.941036 2.149514 2.827515 -3.226677 -4.433311 4.292036 1.881012 1.932006 1.713211 -2.641052 0.365070 -4.259208 -4.812624 4.419728 2.144972 0.509460 5.037809 2.737555 6.286461 -4.649700 1.399843 2.086126 -0.406284 0.475057 0.975916 -6.985198 4.071285 0.172587 1.722213 6.060639 -0.558726 -3.559626 1.996743 0.298432 1.078843 -4.587955 2.879154 -4.353259 0.126562 -4.439309 1.904443 -2.466910 -2.655868 -3.081103 -0.800136 7.913357 -5.233770 -6.030208 5.490471 -1.268236 5.125594 -8.548006 2.731599 -3.892645 5.386220 -1.583247 -2.023515 0.510926 -2.755344 -2.112970 0.199463 3.413284 -1.891962 1.537300 5.014348 1.827141 0.347082 1.897112 3.718017 -0.258158 2.257255 -2.430730 4.347256 0.132240 -1.482075 -0.312972 -2.538906 1.544749 -1.298363 0.117671 4.788932 5.041091 2.585496 3.723429 3.025419 2.609349 -4.278113 1.858236 -0.015830 3.852326 -3.109140 -1.423070 -0.925308 2.633838 -1.433150 3.701630 -7.226363 -9.088534 -5.996194 -6.921788 -3.088236 -0.546182 3.197327 0.236257 0.044935 -5.683097 -3.981802 4.007796 -2.167458 7.333332 3.827467 3.087069 5.004020 4.941206 -3.020235 -2.511714 0.769603 2.130451 -1.861321 0.267006 -5.624065 4.511518 -3.221994 3.343699 7.112644 -2.378165 1.634373 -2.759493 8.264674 -3.899607 9.062410 3.812586 -5.816909 2.961413 2.419794 5.820166 1.054269 -4.597426 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.197217 -1.643680 3.364608 2.740497 -0.229750 1.188232 0.623731 -2.539664 2.675320 0.491208 -0.076797 0.526287 -2.100922 0.989685 -1.411578 1.480065 -2.296461 -1.982242 -1.050079 -2.059564 -1.395553 -1.821714 0.930406 0.521837 1.165437 0.157683 -1.652877 -0.259496 -2.498904 -1.456158 2.051302 -0.491221 1.263210 -0.460181 0.161313 -5.360150 2.403322 1.860522 -0.925574 -2.362925 0.686496 -1.519070 -0.154445 -0.762420 -0.642190 0.092719 -0.484321 1.065720 1.658174 0.483935 0.956695 1.131702 -0.062911 4.905769 -1.983262 2.011556 0.973257 0.373709 -0.620048 0.973054 0.545103 0.996032 1.309800 1.425086 -0.536053 -1.766751 -0.188983 -1.008257 -2.408092 2.245183 -0.072602 -0.883159 -1.702413 -0.672964 -2.039756 -0.746987 -1.586103 1.950118 3.466941 -2.336400 1.803086 0.322161 0.964933 -0.025605 1.370466 -0.269027 2.649614 0.694654 -0.983091 -0.392417 -1.810917 0.032882 0.238403 -0.354231 -1.313079 -3.351133 1.501806 -2.490741 -2.857759 0.969470 0.950236 -0.327403 -2.022749 -0.552342 1.294278 0.645918 -1.551765 -2.620385 -1.154934 1.313934 0.277167 -0.919750 0.381948 -0.867840 -0.241673 -1.307916 -2.811860 -0.293959 0.429969 -1.273996 -1.210426 2.318287 -1.243130 0.054008 -0.072287 0.790467 -0.910981 2.127813 -0.460945 1.459666 0.225161 0.552904 -2.126361 0.275229 0.857070 1.881379 -0.468913 0.240858 -0.912135 0.725716 -1.637367 0.448576 -0.736580 0.791716 1.493497 -0.837830 -1.757749 -0.688505 0.097296 -3.170072 0.522782 -1.962602 -1.186008 0.615855 1.948612 2.152849 1.489769 2.768998 -1.843506 1.489487 -0.194032 -0.086320 1.739145 -0.143766 1.356504 -1.216707 -2.328645 0.997572 0.466114 0.597916 0.369722 -0.565086 -0.254737 -2.032436 -1.124676 0.396274 1.106529 -0.386679 1.883177 1.526428 2.239478 -3.204871 1.120996 1.267961 -0.796275 0.705542 -0.440833 -2.827540 0.862895 0.702615 0.094753 2.334760 -0.416500 -1.322559 0.747176 -0.442620 1.108414 -1.686630 0.276497 -1.786543 -0.858070 -2.016784 0.361141 -0.807905 -0.761226 -1.005519 -1.126979 2.773429 -2.420797 -2.140816 3.308420 -0.400394 1.294080 -3.256957 2.248360 -1.241831 1.805442 -0.789560 0.050177 -0.300075 0.791822 -1.402116 0.748312 1.153893 -1.199414 1.055220 3.431007 0.655780 0.785393 0.170475 2.214055 -0.528886 1.146736 -1.490925 2.872177 -0.349064 -1.489373 0.242937 -1.159777 0.271539 -1.191528 0.842336 2.258762 1.965283 0.873309 1.287501 1.737226 1.752639 -1.261497 1.673310 -0.226871 0.609366 -1.123742 -0.057018 0.529803 0.593589 -0.959633 1.193807 -2.742619 -3.366562 -2.716159 -2.554427 0.330703 -0.703596 0.376562 -0.555365 -0.345643 -2.590215 -1.805092 1.330081 -1.260971 1.886835 1.520559 1.392458 1.830891 3.037335 -1.593817 0.203397 0.291985 0.234142 -0.465140 -0.885024 -1.737374 2.087346 -1.277984 0.993179 2.480806 -0.370037 1.046807 -0.035265 1.665858 -1.452587 3.218765 1.185927 -0.850880 1.992754 1.747601 3.026402 0.994867 -1.449368 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.592846 -4.006603 8.322105 6.783790 0.043351 2.724177 2.552574 -6.490439 6.081957 2.177849 0.110406 1.324856 -5.582094 2.390964 -3.832957 4.135394 -4.606801 -4.859233 -2.893483 -5.163775 -2.961563 -4.283977 3.518078 0.927603 3.463395 -0.282391 -4.013577 -1.768087 -6.458651 -5.317348 4.745494 -0.807738 3.410700 -1.635077 -0.653878 -12.040709 5.956545 5.247331 -2.508413 -5.607268 2.666387 -2.773742 -1.312912 -0.551397 -1.315652 0.466267 -1.466058 1.858131 3.873695 2.212529 3.621099 3.133894 0.836187 11.069281 -4.847330 5.172950 2.537917 1.406843 -1.481138 2.646659 1.090671 2.816613 3.020945 3.393971 -0.654402 -4.190348 -0.593841 -1.975956 -6.513299 5.334166 -0.866291 -2.671659 -3.868565 -1.524834 -4.144711 -1.261170 -2.625270 3.963291 8.336340 -5.217819 4.467757 0.603046 1.150728 -1.227073 2.234617 -0.867111 4.802182 1.788995 -1.590902 -1.849107 -3.941923 0.165302 0.277373 0.372850 -3.642380 -7.537312 4.665333 -4.853569 -7.016052 2.110976 2.490900 -1.527831 -5.227839 -0.935925 2.275899 1.806360 -3.657631 -6.406589 -3.301204 3.319180 1.363711 -2.348819 0.217892 -2.056399 -1.069275 -2.418726 -6.787515 -0.592683 0.697240 -3.572702 -3.672688 4.884956 -2.714468 0.536409 0.101958 2.617831 -2.298090 4.485896 -0.938916 4.118773 1.765139 1.805071 -4.987030 0.171494 2.506289 4.418312 -1.382249 0.898351 -2.732097 1.589193 -3.508952 1.889529 -1.840995 1.726366 4.708987 -2.132755 -4.314421 -1.031580 0.804930 -7.815237 1.466778 -5.052635 -2.354047 0.971575 4.375901 3.790980 3.449911 7.826887 -4.643015 3.445434 0.226303 -0.775893 3.746337 -0.867368 3.182507 -2.830747 -6.512558 2.305454 1.636096 1.140012 0.578084 -0.435665 -0.826987 -5.177888 -3.118352 0.723040 1.880586 -1.853593 4.094907 3.760470 6.352292 -6.840039 2.450705 3.161754 -2.415056 1.844932 -1.145705 -7.566939 1.739413 1.488070 0.555164 6.320464 -0.695701 -3.210436 2.780436 -1.646667 2.309293 -4.187586 1.782742 -4.837721 -1.972146 -5.018615 -0.156224 -1.074426 -1.912828 -1.751825 -1.932415 6.657524 -4.646216 -5.300054 7.620846 -0.740541 1.703497 -8.548789 6.422035 -2.720213 3.326154 -1.790268 0.273420 -0.731088 2.368439 -3.377641 1.048985 2.440810 -2.834055 3.487168 9.420082 1.157966 1.141772 0.196972 5.398776 -1.506668 3.032384 -3.969603 7.366027 -0.808576 -4.325735 0.399235 -2.599075 0.392256 -3.885885 1.385072 5.424056 4.567010 1.104575 2.780152 3.849352 5.183498 -2.971282 5.309390 0.113827 1.887014 -2.461789 -0.059750 1.734064 1.226552 -2.505960 3.904236 -6.502864 -8.072828 -5.374468 -7.618133 1.142893 -1.832972 1.963694 -1.935055 -1.173254 -6.408654 -4.971564 2.980884 -2.964596 4.622980 4.341374 3.825691 4.326740 7.357578 -3.696038 1.578754 -0.156560 1.076288 -1.076181 -3.305013 -2.711156 4.303314 -2.357926 1.957515 5.474638 -0.199011 2.974050 -1.037928 3.598524 -3.665389 8.030932 2.589041 -1.125931 5.836319 3.435246 7.385593 1.684032 -3.137071 -PE-benchmarks/detect-cycle-undirected-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/detect-cycle-undirected-graph.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -6.670902 -10.517612 8.618196 7.786439 3.325700 7.891976 2.233221 -2.042314 3.894825 8.775879 -2.712833 7.225823 -5.303296 -3.931270 0.541485 0.536541 -0.439848 -6.392464 1.854517 -1.195308 -0.384441 -4.786348 -6.313630 9.346054 1.016286 -2.248856 -2.842568 0.323562 -13.339588 -8.679035 -3.000045 -0.073272 4.428148 -4.307189 3.181959 -9.076558 5.023436 10.942933 0.231420 -11.700718 -0.031026 -2.911095 -0.905389 4.459865 -2.279512 2.856773 3.748348 -2.688372 -1.916803 2.039834 2.224713 -0.525663 5.487402 10.685062 3.519664 9.780116 9.167199 -0.103380 2.586159 1.467853 2.525588 -2.502891 5.603457 2.791457 -3.262064 -0.681839 -0.309367 2.809489 -5.528320 0.726671 1.409321 -6.393362 -0.798815 -2.629980 -5.435933 -2.892944 4.212650 0.889367 9.919307 -3.342164 12.237824 5.747250 6.973110 0.595791 8.672839 -0.995215 7.420330 3.137714 -5.905383 0.104180 -6.540656 -1.141771 -0.428490 5.067595 -6.670924 1.534059 4.552668 -6.898528 -10.682600 7.276684 -1.864104 -1.775946 -6.130689 -1.152506 4.668520 3.911723 -3.399467 -7.822413 -6.341469 7.287720 -5.193569 -5.768617 -1.863674 -1.427585 0.507276 1.474280 -4.827083 -0.521573 8.392072 -5.397885 -5.019313 8.278251 -1.951537 7.217341 -1.954512 0.642738 0.634194 0.602024 4.417076 1.881757 0.286316 -5.638028 -9.392667 1.346699 -1.246891 -2.480830 -4.113039 0.177043 4.643589 3.814263 5.370199 8.187274 -3.802950 7.031560 2.984958 0.939466 -2.369561 -8.885513 -1.690703 -4.770364 0.676974 -3.671920 -4.853092 1.606099 6.096236 0.338705 -1.008168 5.425944 -2.944338 5.255573 0.631989 0.907073 -0.317314 -4.129482 1.809662 -4.597012 -7.103910 3.927543 8.986108 2.074896 2.060215 -2.632955 -0.525594 -0.945524 -5.518259 2.078756 0.407150 1.906557 9.763663 4.594877 15.816890 -6.445498 -0.592102 -3.508029 -2.032532 1.933632 -4.378104 -8.896646 0.388211 2.354136 1.865923 11.936675 -1.037019 -4.247201 2.943820 0.531659 0.860349 -6.139284 9.775802 -7.117199 -0.772945 -0.671764 -3.965108 -5.126277 -3.726592 -7.745211 -1.562528 10.243587 -5.679435 -9.325099 3.102748 -0.143437 1.185574 -11.249395 5.760887 -4.108570 6.911831 -1.392296 -2.978487 -1.740944 3.528447 0.246710 0.813714 4.707328 -7.559161 6.377747 5.542544 0.279571 2.070456 3.288719 1.446284 -1.852448 -3.220952 -6.333825 4.894358 -0.235047 -2.441698 -2.466753 -4.029765 6.838336 2.345795 -2.925053 -3.261140 5.940722 -4.816138 -3.145209 6.609734 -2.598849 -4.002628 3.020324 0.709016 6.578240 -4.174257 -0.948777 -5.981310 -0.097885 3.618700 3.115417 -10.156216 -2.317179 -4.601262 -7.753444 -2.604787 3.115947 1.968889 3.943238 0.872337 -10.936582 -6.633475 7.024203 -2.171956 5.711684 4.829082 6.962975 8.080796 3.651555 3.129685 -2.475135 -3.225156 -2.307050 -6.329767 -3.511947 0.617868 2.238395 -2.816987 8.131665 2.420623 2.213728 3.964226 0.232208 -2.692203 -5.753935 9.437459 6.480350 -6.276975 -0.127180 2.887210 8.363679 -11.664439 -6.210975 -PE-benchmarks/count-1s-sorted-binary-array.cpp__main = -1.054856 -2.972915 3.236743 2.770825 0.313295 1.868632 0.725182 -0.867357 1.415645 1.388677 -0.889200 1.993321 -1.801375 -0.601694 -0.311378 0.467127 -1.321719 -2.062717 0.189772 -0.527500 -0.238203 -1.357092 -1.100504 2.475277 0.773806 0.409021 -1.109291 -0.138347 -3.644460 -1.809069 0.072187 -0.241528 1.481181 -0.253895 0.968865 -3.452588 1.699344 2.989147 -0.229980 -3.545736 0.310886 -1.046959 -0.252530 0.009458 -0.793567 0.789637 0.939281 0.311585 -0.184050 0.622614 -0.172946 0.118739 1.358295 3.476272 0.561855 2.567390 2.792982 0.081299 0.640556 0.065933 0.921103 -0.418124 1.435013 0.852596 -0.808860 -0.832995 -0.490042 -0.125283 -1.715682 0.682264 0.546802 -1.042244 -0.949920 -0.787412 -2.161013 -0.660947 0.176698 1.203804 3.286119 -1.758005 3.230936 1.466855 1.963297 0.207865 2.062877 0.054094 1.908481 1.127578 -1.350001 0.177088 -2.554327 -0.673053 0.067477 0.244747 -1.910234 -1.404397 1.507842 -2.785177 -3.097137 1.871458 -0.012096 -0.658652 -1.160786 -0.389013 1.227490 1.411170 -1.237418 -2.143288 -1.301194 1.661286 -0.893719 -1.452537 -0.102458 0.238254 0.061602 -0.288817 -2.127449 0.143237 2.074571 -1.458749 -0.518906 2.394085 -0.755718 1.727803 -0.611310 0.101509 -0.237926 1.147253 1.201022 0.583021 0.197939 -1.126123 -1.805428 0.497051 0.183002 0.547000 -1.286138 -0.085268 0.855180 1.179378 1.006776 1.435013 -0.772469 1.514780 0.630207 -0.298132 -1.180541 -2.646881 -0.989198 -1.934157 0.211962 -1.247274 -1.252311 1.170449 1.938379 0.728541 0.290873 1.993805 -1.203550 1.255200 0.066798 0.247177 0.265935 -0.454928 0.748038 -1.237060 -2.103807 1.372561 1.807157 0.950512 0.651122 -0.707217 0.103627 -0.835343 -1.447353 0.727955 0.638690 0.171715 2.791951 1.558687 2.633950 -1.755199 -0.175094 -0.412469 -0.667807 0.403448 -0.787891 -2.772773 0.664032 0.527178 0.520787 3.066317 -0.328901 -1.161662 1.198869 -0.024735 0.296091 -1.679628 1.984271 -1.980269 -0.495696 -0.977516 -0.105396 -1.439926 -1.064155 -2.218435 -0.871420 3.243239 -2.053031 -2.368005 1.199771 0.110092 0.948749 -3.206024 1.587912 -1.248050 2.447552 0.046189 -0.753907 -0.108414 0.105100 -0.569971 -0.200815 1.458577 -1.856949 1.257707 1.690250 0.436105 0.207428 0.901568 0.949080 -0.648647 -0.048388 -1.795199 1.493796 -0.355457 -0.998028 -0.251928 -1.045435 1.509710 0.158265 -0.300532 0.351137 1.466892 -0.010717 0.146297 1.682364 0.059568 -1.446113 0.712416 0.099810 1.891705 -1.355242 -0.250829 -1.404911 0.513380 0.539903 1.103120 -3.078647 -1.908656 -2.225774 -2.382455 -0.694268 0.005790 0.583720 0.573442 0.000575 -3.071468 -2.132744 1.591356 -0.828653 1.583674 1.752848 1.621929 2.486742 1.474952 -0.042813 -0.636268 -0.037522 0.078744 -1.261506 -0.650105 -0.863292 1.137769 -1.149057 1.740862 1.892628 0.015382 1.227792 -0.374629 0.647725 -1.704565 3.344006 1.803604 -2.405922 0.290125 1.385492 2.468688 -1.910439 -1.918679 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -5.326327 -8.880746 8.692253 7.767615 1.496260 6.164236 2.773097 -3.519673 3.434650 6.238808 -2.239738 5.584222 -5.398103 -2.027762 -0.784489 1.118013 -2.627506 -5.682684 -0.311235 -2.711066 -1.428488 -4.370880 -4.747751 7.459673 1.680225 -1.801664 -3.516489 0.499454 -10.941942 -8.508619 -1.165615 0.114216 4.271301 -3.622255 2.324903 -13.596667 5.505636 10.263985 -0.823615 -9.473534 0.844539 -3.488248 -1.981891 2.146026 -3.555442 2.226046 2.234358 -1.336379 -0.789579 1.366009 2.586281 0.662485 3.909598 12.647034 1.199082 9.143771 8.801333 0.126906 1.296920 1.646222 2.001032 -1.145165 4.887455 2.877869 -2.541516 -1.799561 0.008838 1.182659 -5.280355 1.962836 1.671283 -5.705727 -1.775475 -3.013647 -6.910217 -3.075030 2.885600 1.210813 10.149918 -4.276073 10.919613 4.579201 5.287805 0.825066 7.582435 -0.771138 7.871512 2.712482 -4.668625 1.275718 -5.083908 -1.800144 0.439188 5.768867 -6.352673 -2.686250 4.637006 -7.728993 -9.855329 6.026787 -0.726497 -2.617018 -6.125520 -2.068441 3.488607 2.561740 -3.796696 -7.846854 -6.499759 6.181558 -3.535573 -4.794560 -0.868688 -0.471414 0.720629 0.079013 -6.404502 0.439415 6.997338 -4.308416 -4.461361 7.727989 -2.222077 5.434814 -1.470597 0.888461 -0.833723 2.406292 1.978513 2.266053 -0.597752 -2.975052 -9.526271 -1.235123 0.097459 0.177075 -3.268258 -1.440298 3.130181 3.726694 2.833637 7.131628 -2.574158 6.938888 4.003696 0.766768 -2.864863 -7.833911 -1.983313 -6.005844 0.999750 -3.731710 -5.016415 1.638771 5.896661 0.853992 0.122687 6.004548 -2.266426 5.163674 0.012806 -0.305662 1.077901 -4.919011 2.494847 -3.977815 -7.097177 4.393806 6.343244 3.868987 1.998568 -1.754508 -0.450851 -1.917717 -6.157458 1.788960 0.854896 0.840099 8.584381 5.313226 15.659662 -6.793221 1.595092 -1.960800 -2.414468 2.227020 -2.936718 -7.978142 0.551412 2.721100 0.061317 11.096798 -0.680647 -4.246048 2.612490 -0.160652 1.132083 -6.227954 7.634077 -5.956986 0.053099 -2.594169 -2.572870 -4.137362 -3.308022 -6.404638 -2.274709 9.723032 -7.197177 -9.041331 4.711379 0.780614 2.461684 -11.488158 7.115278 -3.497353 7.462121 -2.725550 -2.669117 -0.057996 3.512492 -1.281621 2.367704 4.040990 -6.984358 4.483267 6.396319 0.792279 2.426780 1.920796 3.045795 -1.862403 -1.411470 -6.432899 5.628515 -0.092799 -3.231412 -2.119803 -3.508555 4.993164 1.205625 -0.260982 -1.098295 5.763981 -2.533383 -2.033267 7.379062 -0.525596 -3.502891 2.893286 0.647160 5.014894 -3.954971 -0.967552 -4.048841 1.194972 2.189681 2.948363 -9.399660 -3.503691 -6.585609 -7.834600 -1.726212 3.487147 2.295632 2.990608 0.079624 -10.364830 -6.114015 8.163878 -3.029931 5.215371 5.227821 6.410707 7.119349 4.583412 1.943169 -1.525333 -1.942121 -0.243110 -4.465074 -2.650396 -1.318409 3.606122 -3.735513 7.058386 3.347210 0.900921 4.525999 1.072711 1.965026 -5.369848 9.818918 4.954195 -6.063977 1.389066 5.371837 7.564449 -7.999940 -5.147787 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = -0.816553 -3.015208 3.828744 3.293514 0.186710 1.637498 1.100278 -1.457599 1.756286 1.732626 -0.950111 1.989155 -2.090317 0.195983 -0.912559 1.408609 -1.986441 -2.269065 -0.141970 -0.964349 -0.786373 -1.594890 -0.363135 1.775678 1.255401 0.296410 -1.593040 -0.472386 -3.326269 -2.843616 0.532100 -0.490271 1.651553 -0.657302 0.484462 -5.415222 2.240776 3.018167 -0.663352 -3.572731 0.689032 -1.221730 -0.561001 -0.230299 -0.984893 0.696526 0.803178 0.819490 0.361943 1.043802 0.533469 0.475818 1.527194 5.089141 -0.248069 2.828352 2.919926 0.190339 0.192866 0.331952 1.082611 -0.098891 1.565058 1.389949 -0.401807 -1.281022 -0.657706 -0.509293 -2.135345 1.292473 0.336055 -0.956419 -1.522192 -0.800828 -2.191571 -0.706973 -1.065823 1.525505 4.143423 -2.259493 3.429615 1.340969 1.831607 0.061716 1.803150 0.046541 2.171900 1.268027 -1.406552 0.028280 -1.760382 -0.742123 0.317648 0.635784 -1.925989 -2.778732 1.868580 -2.656815 -3.355823 1.930021 0.327725 -0.713529 -1.391230 -0.655488 1.268087 1.396065 -1.691828 -2.683272 -1.765575 1.303095 -0.432909 -1.566943 0.061387 -0.030898 -0.115896 -0.277246 -2.889580 -0.045000 1.777183 -1.808104 -0.828697 2.433130 -0.610330 1.540511 -0.572413 0.372116 -0.463354 1.790016 0.853813 1.292676 0.279172 -0.142715 -2.691448 0.451958 0.937602 0.897236 -1.206832 -0.074653 0.308810 1.275021 0.276943 1.437543 -0.731997 1.897901 1.718859 -0.406635 -1.854629 -2.553225 -0.572271 -2.575851 0.561133 -1.843504 -1.306460 1.002675 2.284543 0.713288 0.840910 2.669673 -1.723785 1.720181 -0.093606 0.157752 0.813500 -0.728430 1.103434 -1.353787 -2.521771 1.593602 1.961123 1.072063 0.647881 -0.721705 0.191730 -1.387414 -1.625647 0.998723 0.946522 -0.413450 2.658328 1.621424 4.006530 -2.248680 0.334894 0.185044 -0.756813 0.501720 -0.612584 -3.342351 0.995997 0.565952 0.437542 3.149126 -0.176751 -1.568168 1.390954 -0.422764 0.369167 -1.830174 1.835642 -2.076981 -0.601200 -1.402379 0.201073 -1.173433 -0.996446 -1.757495 -0.677105 3.600371 -2.769353 -2.448742 1.913973 -0.163323 0.917879 -3.885005 3.096389 -1.426769 2.344297 -0.576107 -0.843052 0.067985 0.669664 -0.928952 0.234189 1.636883 -1.702292 1.215325 2.766827 0.606853 0.423230 0.736584 1.673118 -0.611517 0.343124 -1.706096 2.131921 -0.309418 -1.300159 -0.409081 -1.157993 1.245215 -0.318368 0.225012 1.184707 1.694316 0.032001 0.644047 2.047660 0.946235 -1.690622 1.329770 -0.023595 2.110545 -1.558993 -0.249699 -1.010827 0.694469 -0.107379 1.532017 -3.343402 -2.465848 -3.022087 -2.657945 -0.697682 0.298079 0.992296 -0.035735 -0.114626 -3.409305 -2.304297 2.318309 -1.220360 1.298513 2.221130 1.757766 2.537391 2.011957 -0.251166 -0.486194 -0.427464 0.322253 -0.962061 -0.740690 -1.018227 1.424702 -1.680885 1.681612 2.146589 -0.184451 1.248447 0.035153 1.632333 -1.762085 3.934049 1.819313 -2.123641 1.041875 2.139142 3.037860 -1.467728 -1.979757 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -1.381702 -3.292657 2.913606 2.956725 1.591124 1.713876 2.605073 -0.911076 2.148620 3.180064 -1.111982 2.651938 -2.378405 -0.084317 -0.062193 1.649551 -0.482916 -2.537067 0.731167 0.015952 0.177622 -2.694392 -0.160626 1.402574 1.280327 -0.627266 -1.114208 -1.277322 -4.848256 -3.515328 0.753595 -0.512042 1.797815 -1.796153 -0.216425 -5.494242 1.913524 3.489762 -0.297328 -4.756244 0.814621 -0.864078 -0.583956 1.078542 0.398148 1.448071 1.262358 1.046557 0.201432 1.830561 1.495066 -0.334017 1.569890 4.137428 -0.807982 3.640459 3.197949 0.267159 0.274305 0.343377 0.955088 -0.268307 2.001189 2.333021 -0.796174 -0.583594 -0.687077 0.223785 -3.663602 0.816067 0.502961 -0.935106 -2.187856 -0.045218 -0.558715 -0.041885 -0.025675 0.550864 4.598758 -0.724210 5.264659 1.477414 2.217278 -1.268832 1.250820 -0.281243 0.941294 1.109119 -2.081064 -1.036489 -3.178683 -1.208865 -0.295771 1.765863 -1.482518 -0.075379 1.388056 0.441242 -3.042909 1.335966 -0.321171 -0.544996 -2.311707 0.838661 1.420329 2.024690 -0.985274 -3.415381 -2.994604 1.488501 -0.942350 -1.842538 -0.649971 -0.644874 -1.183994 -0.742877 -2.009876 -1.010502 2.494793 -2.528266 -1.989072 1.672975 -1.729241 2.117786 -0.497197 0.216775 0.167359 0.731058 1.688348 1.224883 2.598123 -1.929227 -5.051744 0.692427 0.839726 2.545987 -1.175202 0.672315 0.438493 0.896939 0.928195 1.743255 -0.170005 1.687164 2.690523 -0.612157 -1.515008 -2.248046 1.030941 -1.532963 1.545377 -1.726030 0.582445 -0.445322 2.160326 -0.801241 0.732702 3.558588 -2.943842 2.169165 0.236290 0.429346 0.398883 0.099931 0.861900 -1.204657 -2.410820 1.459453 3.044831 -0.112117 0.494703 -0.317880 0.073940 -1.342931 -1.826740 0.741170 0.040977 -0.317541 2.414726 0.724512 6.269095 -2.211336 -0.018484 0.165148 -0.146723 0.482121 -0.558836 -3.598600 1.870095 -0.031138 1.085880 3.536655 -0.012250 -1.872361 1.561542 -0.274455 -0.031475 -1.837774 3.240333 -2.367387 -0.974630 -0.955226 -0.812892 -0.522751 -1.506974 -1.421318 1.466455 3.317949 0.802294 -3.553589 0.539136 -1.714565 -0.242217 -4.827092 4.667218 -1.543480 0.344390 -1.182639 -0.643625 -0.237043 1.568357 -0.167052 -0.587826 1.518637 -1.823505 2.415416 3.413413 0.316928 -0.422823 1.025510 0.842213 0.010340 -0.383856 -1.194942 1.609903 -0.080024 -0.383059 -0.334099 -1.167893 2.319408 -0.142975 -1.387173 1.441800 2.446158 -1.404194 0.735278 1.990039 0.657139 -1.594515 1.800985 0.507596 2.746770 -0.885170 -0.181522 -1.309961 -0.221219 0.030798 2.125725 -2.747836 -2.005948 0.267923 -4.469223 -0.619375 0.566654 1.615199 0.257587 0.440679 -4.837239 -1.859651 1.534310 -0.735476 2.401933 1.746079 1.589071 1.943431 1.196696 -0.306462 -0.393744 -1.263150 0.039828 -1.709229 -1.585967 0.612362 0.443155 -1.911086 1.870590 1.025735 0.104256 0.494483 -1.191452 1.775274 -1.504243 4.262684 1.899497 -0.999439 1.229405 0.096257 4.038568 -3.074373 -1.699488 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = -0.517041 -1.387523 1.673047 1.390897 -0.079488 0.726146 0.601687 -0.560804 0.974438 -0.168850 -0.497618 0.819671 -1.152769 0.097345 -0.424735 0.105253 -1.179356 -1.255189 -0.068850 -0.350624 -0.207125 -0.989354 -0.171973 0.977939 0.421795 0.619780 -0.683151 -0.193858 -2.075998 -0.122231 1.055162 -0.196162 0.884232 0.327279 0.242539 -3.232773 0.767117 1.314103 -0.248667 -1.940198 0.340435 -0.978692 -0.106629 -0.629670 -0.406348 0.266702 0.276907 0.737060 0.175618 0.047912 -0.356922 0.094822 -0.142327 2.311981 -0.447186 1.246447 1.400027 0.087795 -0.037170 -0.012481 0.410892 0.031855 0.839994 0.840506 -0.751088 -0.592274 -0.143896 -0.734436 -1.361443 0.707677 0.418533 -0.064984 -0.808353 -0.288333 -1.239807 -0.274945 0.239062 0.996029 1.980004 -1.095688 1.791913 0.348686 1.085623 -0.047461 0.871334 0.129880 1.012020 0.479166 -0.666289 -0.160520 -2.043598 -0.331825 -0.065172 -0.021851 -0.693156 -1.048518 0.701763 -1.282961 -1.433876 0.503740 0.060921 -0.279141 -0.841476 0.102060 0.650627 0.861302 -0.653461 -1.282442 -0.864263 0.831469 -0.344572 -0.548703 0.094509 0.302261 -0.295449 -1.218073 -1.340403 0.032797 0.910324 -0.736494 -0.199638 1.262852 -1.076298 0.564637 -0.184008 -0.001707 -0.360637 1.166755 0.343732 -0.019504 0.552875 -0.750281 -1.178166 -0.046175 0.288560 2.064770 -0.748578 -0.247201 0.185840 0.439783 -0.064999 -0.182162 -0.111674 0.428442 0.537074 -0.569978 -0.785638 -1.206569 -0.116415 -1.437923 0.061836 -0.850904 -0.164414 0.858241 1.091882 0.971471 0.498283 1.811725 -1.044236 0.985348 -0.001262 -0.093239 0.391698 0.382091 0.540405 -0.635654 -1.148118 0.688802 0.274212 0.539067 0.288594 -0.287626 -0.061937 -0.928582 -1.030402 0.501119 0.659059 0.217959 1.280412 0.857808 0.880607 -1.666424 0.222240 0.174876 -0.358347 0.123185 -0.099526 -1.408628 0.714664 0.266917 -0.062896 1.434645 -0.164243 -0.833908 0.441952 0.003490 0.296954 -0.915091 0.604611 -0.929851 -0.392229 -1.045006 0.081119 -0.573263 -0.675136 -1.047951 -0.551352 1.692715 -0.876864 -1.637172 0.822676 -0.097615 0.965075 -2.212931 0.813679 -0.728609 1.403103 -0.211355 -0.182466 -0.032853 -0.095276 -0.502460 0.079902 0.693357 -0.904744 0.505449 1.380057 0.445061 0.135739 0.388076 0.807023 -0.094232 0.215799 -0.817131 0.783117 -0.213842 -0.657550 0.307902 -0.580086 0.688517 -0.029885 0.180747 1.266246 1.190975 0.677268 0.870170 1.136581 0.412080 -0.722897 0.121304 -0.055119 0.983071 -0.507122 -0.171993 -0.507922 0.561180 -0.018484 0.472530 -1.489266 -1.990395 -1.167407 -1.981353 -0.004482 -0.495580 0.223299 0.174306 0.090624 -2.006933 -0.823769 0.221002 -0.601221 1.992681 0.802748 0.619636 1.172559 1.077653 -0.926143 -0.315813 0.722135 0.551074 -0.612281 -0.091506 -1.130462 0.820381 -0.874190 0.751107 1.427789 -0.304698 0.556371 -0.254338 1.442552 -0.785449 2.210722 0.901104 -1.368142 0.504100 0.515731 1.405175 0.122668 -0.921333 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::Graph(int) = -0.095979 -2.267847 2.871178 1.668742 -0.457873 1.676422 1.325861 -1.355719 1.308269 0.659367 -0.858477 0.550904 -1.606519 -1.030043 0.173252 -0.236953 -2.060444 -1.519766 0.139369 -0.668738 -0.358266 -1.534393 -0.510638 1.677049 0.473040 1.010871 0.079684 -0.135427 -2.459574 -0.633033 1.197444 -0.126621 0.679388 2.309849 1.630806 -2.035246 1.498935 1.556992 -0.193315 -2.558463 -0.033952 -0.145055 -0.814214 0.534219 0.369921 0.556388 0.420222 1.918562 -0.297569 0.329314 0.147668 -1.358417 0.228806 2.444110 0.785962 1.999492 2.230763 -0.205122 1.218865 1.259539 0.726761 -0.277871 0.629516 1.454067 -0.238737 0.335689 0.547900 -1.183201 -1.380734 1.262023 0.544978 -1.607784 -0.365840 -1.337303 -1.441946 -0.213141 -2.750659 1.974262 3.084754 -1.584940 2.669416 1.127071 2.108289 -0.874479 2.153173 -0.174095 2.524667 0.810721 -1.453760 0.668404 -2.555292 -2.168911 0.113658 -0.445328 -1.104809 -0.236480 1.386814 -2.368034 -2.212793 1.802435 0.079351 -0.270351 -0.870022 0.395403 1.081694 0.369897 -1.492597 -1.979373 -1.453911 1.530042 -1.874640 -0.194909 0.129673 1.459899 -0.680228 -0.316249 -1.049916 -0.116349 1.803130 -1.138190 -0.513436 2.343131 -0.842499 1.498813 -0.385899 -0.567291 -0.042325 0.866259 0.628133 0.052305 0.975437 -0.725342 -1.542577 1.155413 0.158293 1.340636 0.407795 0.239158 1.575732 1.315169 0.146387 1.257263 -1.189025 1.186264 0.030065 -0.495734 -1.584399 -1.286546 -0.578610 -1.905091 0.297577 -1.248387 -1.072026 0.571968 1.835538 2.154456 -0.509946 0.957896 -1.507454 0.791524 -0.455455 0.371251 -0.709726 -0.036918 0.556266 -1.119017 -1.376509 0.238351 0.787280 0.453918 1.168296 -1.497879 -0.667313 -1.308698 -2.152850 0.670409 0.746882 -0.162878 1.513361 1.621516 0.909434 -1.875740 -0.270969 -0.058203 -0.078397 -0.202491 -0.402191 -2.082959 0.789955 0.174740 0.864806 1.702490 -0.223301 -0.065794 0.363358 -0.311991 0.257356 -1.245231 0.525258 -1.323600 -0.102697 -0.856490 0.794836 -1.176330 -1.158013 -1.165934 -0.685772 2.367730 -1.187357 -1.987191 2.152755 -0.819077 1.521450 -1.756593 0.972325 -0.804808 1.619240 -0.027215 -0.317000 -0.502706 0.193996 0.038368 0.504923 0.382608 -1.047864 1.097380 1.581149 0.196626 0.778798 0.910018 0.998492 -1.442644 -0.916858 -1.565437 1.420812 -0.229315 -0.913996 -0.139321 -1.052747 1.327816 -0.089551 -0.201941 1.000656 1.040354 0.053563 0.372845 0.763984 -0.833019 -1.196992 0.297533 0.833073 1.239485 -1.033632 -0.347122 -0.541320 -0.011795 0.154590 0.037242 -2.195318 -1.620386 -1.958178 -1.667918 -1.566025 -0.844904 1.066708 0.723960 0.335404 -1.829895 -1.099580 0.650770 -0.659007 -0.113656 1.323815 1.503194 2.031762 1.739120 0.078633 -0.016480 0.320542 0.788353 -1.752451 -0.416224 -1.136418 0.352538 -1.794573 1.756711 1.435500 0.893011 1.084276 -0.553660 2.232983 -1.911537 1.726873 1.809489 -1.804874 0.014147 1.607751 1.502291 -0.151153 -1.539419 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::list() = -0.153503 -0.357202 0.590949 0.483656 0.007386 0.246392 0.062355 -0.410020 0.655533 0.183031 -0.107560 0.033124 -0.462430 0.174122 -0.248499 0.309834 -0.413291 -0.442923 -0.085036 -0.320528 -0.268041 -0.468549 0.127990 0.028993 0.163246 0.077808 -0.266889 0.091904 -0.504130 -0.314564 0.340344 -0.205367 0.180703 -0.008508 0.080929 -0.774843 0.454509 0.309961 -0.166035 -0.479870 0.026196 -0.385225 0.149804 -0.186638 0.044555 0.110773 0.025145 0.186173 0.381417 0.074337 0.258794 0.003792 -0.074542 0.797209 -0.439500 0.382797 0.125662 0.050209 -0.103032 0.173396 0.126509 0.104939 0.281381 0.386124 -0.234797 -0.280950 -0.077596 -0.206336 -0.461665 0.447492 -0.143992 -0.064291 -0.435116 -0.163872 -0.376317 -0.199054 -0.754429 0.330887 0.766358 -0.434282 0.422343 0.166551 0.370727 0.047792 0.341061 -0.038133 0.599970 0.114455 -0.385432 0.043495 -0.210997 0.027096 0.012980 -0.031371 -0.146567 -0.415775 0.214178 -0.528273 -0.564562 0.213933 0.090343 0.114552 -0.362789 0.052691 0.301018 0.146220 -0.335957 -0.593473 -0.119014 0.152780 0.047650 -0.137529 0.139494 -0.250103 -0.094482 -0.250015 -0.537705 -0.217819 0.054331 -0.373455 -0.187677 0.508305 -0.221847 0.052054 0.004126 0.078241 -0.103689 0.543284 -0.015443 0.319368 -0.114560 0.062536 -0.705845 0.136627 0.167587 0.271439 -0.091732 0.173964 -0.096603 0.060661 -0.378280 -0.028248 -0.217818 0.138416 0.340478 -0.221237 -0.329537 -0.142919 -0.052898 -0.637860 0.171579 -0.390120 -0.150757 0.017596 0.423134 0.505416 0.340895 0.663872 -0.421430 0.202320 -0.142048 -0.013949 0.373669 0.076055 0.326148 -0.246278 -0.363265 0.222228 0.197342 0.015224 0.193195 -0.265904 -0.029840 -0.429711 -0.043739 0.223573 0.239907 -0.050925 0.426852 0.205061 0.265272 -0.609295 0.256657 0.276604 0.027352 0.136290 -0.066711 -0.549068 0.328318 0.109794 0.080949 0.219534 -0.075977 -0.194463 0.074441 -0.143377 0.290761 -0.398875 -0.022024 -0.337445 -0.137390 -0.395478 0.249316 -0.204634 -0.204402 -0.082358 -0.102303 0.500229 -0.318648 -0.268461 0.579764 -0.013764 0.342822 -0.448066 0.334007 -0.311899 0.496259 -0.200719 0.046995 -0.065965 0.200568 -0.062352 0.043885 0.268863 -0.143006 0.191226 0.495681 0.176343 0.176938 0.155760 0.453926 -0.051933 0.131322 -0.147824 0.443052 -0.009265 -0.163429 0.159842 -0.276966 0.110602 -0.090292 0.105171 0.511628 0.503364 0.076606 0.339183 0.268797 0.266562 -0.249764 0.218684 -0.059659 0.232860 -0.268070 -0.012612 0.013180 0.118309 -0.225539 0.116983 -0.528639 -0.660843 -0.432343 -0.335817 -0.062625 -0.096193 -0.014535 -0.014191 0.061893 -0.405146 -0.268278 0.401755 -0.267314 0.385252 0.090141 0.228290 0.355459 0.591298 -0.287706 -0.159716 0.039926 -0.045543 -0.151022 -0.029350 -0.358950 0.398701 -0.389452 0.193305 0.403836 -0.191648 0.029567 0.165640 0.319750 -0.292168 0.590331 0.302152 -0.115687 0.452548 0.385391 0.743191 0.214719 -0.302814 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::~Graph() = -0.043418 -1.187605 2.458048 2.080119 0.073135 1.175191 -0.415112 -1.591647 1.528990 1.124546 -0.817160 0.576719 -0.922131 -0.091460 0.256163 1.219478 -1.637719 -1.060861 -0.193233 -0.743601 -0.271489 -1.255576 -0.194848 0.845211 0.557044 0.788088 -0.853761 1.044937 -0.875609 -2.655139 0.210514 -0.228541 0.669653 0.579397 0.788370 -1.828338 2.174605 1.590417 -0.247309 -1.983250 0.075290 -0.699262 -0.498502 0.107284 -0.160631 1.084921 0.093634 0.288011 0.447790 0.599725 0.337307 -0.010163 0.850098 1.209032 -0.031647 1.616387 1.033168 -0.084672 0.188000 0.590009 0.406293 0.397403 0.987699 1.109226 -0.390516 -0.936550 -0.023680 0.149261 -1.268829 1.243432 -0.411060 -1.273050 -0.937019 -0.880686 -1.159865 -0.120372 -1.094846 1.435923 2.121199 -1.045012 1.486013 0.768356 0.940613 -0.148776 1.374086 -0.511056 2.245868 0.721091 -0.928237 0.059819 -0.567811 -1.877209 0.616902 -0.269342 -1.078206 -0.354222 0.404291 -2.715842 -1.776269 0.871786 0.393987 -0.345788 -1.451656 -0.347051 1.354657 0.338982 -0.100949 -1.429084 -0.152009 1.059872 -0.703944 -0.842890 -0.569275 0.042947 -0.222535 0.711617 -1.842093 -0.171998 0.899983 -0.594009 -0.318312 1.422337 -0.256263 0.214924 -0.462296 0.145705 -0.148031 1.037549 -0.249805 1.121989 0.284006 0.228206 -0.933490 1.356980 0.237273 -1.120763 -0.390869 0.354543 0.223216 0.573933 -0.798899 1.028074 -1.381637 0.930353 1.305923 0.083398 -1.148255 -0.955772 -1.204375 -1.739186 0.585035 -1.004445 -0.999069 0.660655 1.424557 0.846276 0.709473 1.089286 -1.649407 0.196742 -0.356450 0.603441 0.692611 -0.401815 0.565068 -0.853999 -1.124816 1.238505 0.985959 0.013803 0.733808 -0.672451 0.003469 -0.803476 -1.007583 1.606522 0.334360 0.623079 1.525897 0.851633 1.928242 -0.665014 0.479658 0.427652 -0.095795 0.343500 -0.421435 -1.674825 0.645954 0.296405 1.694839 1.914994 -0.245052 -0.316338 -0.064145 0.174114 0.474695 -1.155289 0.746866 -1.330105 0.319064 -0.510209 -0.096534 -0.612837 -0.834577 -0.628446 -0.273305 1.772766 -1.025025 -1.671963 2.095387 -1.342952 1.014645 -1.772960 0.338911 -1.022056 1.455751 -0.199207 -0.081459 -0.206989 -0.972709 -0.631171 0.224112 0.852269 -0.579615 0.596086 0.993551 0.319181 0.168092 0.322085 0.585808 -0.549933 0.421184 -0.980339 1.369065 -0.082749 0.249341 -0.411921 -0.798515 0.452857 -0.399451 -0.321111 0.408430 1.040123 0.048231 0.256369 0.895159 0.342346 -1.033761 1.228991 0.058851 0.269065 -0.831081 -0.496504 -0.032342 0.023182 -0.101554 0.518414 -1.809193 -1.213617 -2.336685 -1.340801 -0.809158 -0.184341 0.823330 0.197010 -0.110031 -1.144494 -1.159198 2.092555 -0.410144 0.773762 0.612530 1.022666 1.083085 1.397168 -0.020676 -0.223233 -0.829747 -0.405816 -0.865994 -0.574483 -0.843070 1.458515 -0.382418 0.958984 1.463256 -0.217815 0.558201 -0.129812 0.434614 -0.907613 1.439091 0.958803 -0.776248 0.426360 0.664041 1.150831 -0.672274 -1.204822 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::~list() = -0.156841 -0.373990 0.605491 0.492285 -0.008479 0.257556 0.057895 -0.419974 0.675973 0.152770 -0.117451 0.036386 -0.480467 0.178459 -0.264086 0.301693 -0.445860 -0.462191 -0.080958 -0.321325 -0.275480 -0.491239 0.128752 0.052131 0.162067 0.104419 -0.274481 0.102934 -0.520161 -0.294780 0.368516 -0.217715 0.191694 0.016587 0.088622 -0.825867 0.464210 0.310798 -0.165362 -0.499170 0.021029 -0.407057 0.155385 -0.216825 0.023280 0.106142 0.030593 0.212402 0.393277 0.059536 0.235212 -0.004130 -0.091630 0.825784 -0.450350 0.392744 0.131117 0.049736 -0.107945 0.167087 0.132771 0.104358 0.297186 0.408253 -0.256212 -0.284533 -0.072140 -0.224455 -0.483488 0.466431 -0.140545 -0.045468 -0.450870 -0.159473 -0.405820 -0.203914 -0.729158 0.355682 0.799856 -0.450621 0.442653 0.166519 0.391895 0.046070 0.355192 -0.038229 0.628335 0.119479 -0.408329 0.042570 -0.244773 0.028870 0.008579 -0.046692 -0.143297 -0.439353 0.211300 -0.576930 -0.585116 0.213356 0.086901 0.119895 -0.368528 0.050466 0.326825 0.151385 -0.350336 -0.616034 -0.117501 0.155643 0.037309 -0.141237 0.150572 -0.235944 -0.094748 -0.276047 -0.556212 -0.235275 0.060743 -0.392349 -0.171285 0.528066 -0.239574 0.061983 0.004776 0.074905 -0.101635 0.566879 -0.013566 0.309716 -0.114132 0.054045 -0.685833 0.131195 0.162217 0.306094 -0.100189 0.161233 -0.089004 0.067607 -0.388631 -0.056329 -0.222900 0.132424 0.331242 -0.228471 -0.341392 -0.150799 -0.061527 -0.670798 0.169650 -0.408171 -0.161795 0.044125 0.439527 0.524808 0.349922 0.684088 -0.432808 0.220053 -0.144414 -0.009458 0.386495 0.087137 0.338399 -0.256095 -0.375248 0.236555 0.185305 0.025913 0.194163 -0.285289 -0.034002 -0.445226 -0.062849 0.232027 0.259426 -0.034556 0.439749 0.205289 0.243722 -0.639105 0.268875 0.282998 0.034496 0.141440 -0.065111 -0.568934 0.348320 0.109767 0.079150 0.222957 -0.082443 -0.209549 0.076209 -0.136457 0.302217 -0.419798 -0.031045 -0.349812 -0.138153 -0.418786 0.259045 -0.211152 -0.213471 -0.099740 -0.116221 0.519502 -0.351342 -0.287406 0.604397 -0.007890 0.390823 -0.474240 0.315739 -0.324658 0.535402 -0.199324 0.045340 -0.061471 0.179040 -0.059512 0.044953 0.280465 -0.144766 0.194551 0.499734 0.182905 0.189663 0.170869 0.467800 -0.042566 0.132955 -0.150748 0.446699 -0.005651 -0.176198 0.172020 -0.290161 0.118435 -0.086471 0.119504 0.538529 0.532280 0.098212 0.371655 0.285553 0.264459 -0.259255 0.204670 -0.071001 0.239471 -0.276172 -0.014479 0.004503 0.135824 -0.233964 0.123873 -0.549479 -0.715878 -0.471948 -0.357133 -0.071809 -0.120492 -0.012805 -0.012193 0.071118 -0.422657 -0.267720 0.401426 -0.276688 0.431809 0.098480 0.237926 0.371084 0.612820 -0.311722 -0.176998 0.068780 -0.031391 -0.163340 -0.011408 -0.397625 0.407618 -0.407886 0.212941 0.432140 -0.204004 0.023427 0.158135 0.345745 -0.302635 0.615752 0.320473 -0.142256 0.461041 0.382560 0.746402 0.250179 -0.318471 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::addEdge(int, int, int) = -0.572388 -1.586682 1.997954 1.861310 0.009654 0.885585 0.746413 -0.951903 1.184626 1.094573 -0.170212 0.759228 -1.526303 0.388355 -0.234417 0.964883 -1.221915 -1.254079 -0.209236 -0.739695 -0.802473 -1.200148 0.113886 0.797575 0.753408 0.090022 -0.931004 -0.452433 -1.619014 -1.279056 0.601619 -0.352920 1.065108 0.072682 0.214957 -3.712111 1.179995 1.354158 -0.370234 -1.705992 0.315159 -0.896233 0.184763 -0.275882 -0.569442 0.276658 0.351030 0.360714 0.766159 0.434509 0.628294 0.061528 0.651104 3.110432 -0.602509 1.441705 1.011362 -0.050163 -0.140226 0.198174 0.490419 -0.014483 1.084178 0.883942 -0.366390 -0.738482 -0.326821 -0.566327 -1.504069 1.076378 0.079903 -0.371021 -1.220225 -0.520731 -1.053258 -0.661450 -1.367241 1.134215 2.410709 -1.497029 1.784997 0.614347 0.823568 -0.013191 1.106568 -0.074011 1.507185 0.456010 -0.932289 0.136277 -0.654819 -0.332055 0.068254 0.465294 -0.790242 -1.626563 0.837733 -1.033540 -1.974541 1.034501 0.124824 -0.103911 -1.325835 -0.432685 0.765660 0.725862 -1.152211 -1.864765 -1.173539 0.603233 -0.007235 -0.790197 0.071006 -0.313581 -0.304138 -0.593451 -1.686355 -0.390092 0.602729 -1.252769 -0.757531 1.537187 -0.451656 0.827553 -0.067352 0.314080 -0.285212 1.443699 0.309904 0.874131 0.243427 -0.036910 -1.882975 -0.098508 0.580664 1.052069 -0.369707 -0.115879 -0.181205 0.563713 -0.417438 0.630365 0.027725 1.225987 1.436916 -0.311884 -1.141396 -0.947118 0.043217 -1.777032 0.449553 -1.242068 -0.202089 0.607644 1.293973 0.639134 0.579540 1.734225 -1.109457 1.135702 -0.196072 -0.104503 0.787091 0.078551 0.812111 -0.865908 -1.397529 0.754090 0.996683 0.576330 0.312985 -0.482743 -0.001927 -0.852055 -0.923394 0.399574 0.593645 -0.342015 1.378233 0.821420 2.624372 -1.718609 0.538597 0.401317 -0.254404 0.398709 -0.279417 -1.920450 0.792194 0.244006 -0.401748 1.380074 -0.262511 -1.033864 0.784242 -0.421943 0.449466 -1.207242 0.697424 -1.193564 -0.325079 -1.185596 0.019557 -0.589233 -0.671377 -0.636641 -0.080289 1.982921 -1.441196 -1.132372 1.420951 -0.167304 0.637469 -2.239419 2.317479 -0.801787 1.020953 -0.936482 -0.673195 -0.078204 0.918888 -0.253097 0.249384 0.902349 -0.836780 0.514812 1.979347 0.333224 0.411170 0.418223 1.237922 0.123705 0.274512 -0.746429 1.546228 -0.046283 -0.468980 -0.158203 -0.786757 0.693186 -0.109257 0.157598 1.183015 1.352372 -0.051162 0.577546 1.281251 0.671187 -0.819665 0.757631 -0.132059 1.230191 -0.930548 -0.068080 -0.329594 0.511835 -0.395387 0.828377 -1.821764 -1.706077 -1.345141 -1.201832 -0.489299 0.544337 0.473432 -0.011418 -0.048389 -1.770822 -1.083446 1.097085 -0.816946 0.703912 0.886483 0.888754 1.458816 1.516817 -0.283853 -0.404194 -0.112849 0.024549 -0.470836 -0.270468 -0.697781 0.829159 -1.267629 1.050033 1.147912 -0.198977 0.554378 0.195647 1.385100 -1.104307 2.203014 0.931402 -0.823939 1.075477 1.501259 1.795012 -0.359648 -1.019146 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::AdjListNode(int, int) = -0.400215 -0.714600 0.631350 0.631902 0.284358 0.346508 0.660425 -0.117639 0.763225 0.803066 -0.018523 0.116134 -0.750775 0.082564 0.330153 0.418478 -0.264326 -0.641680 0.226916 -0.163049 -0.295871 -0.697482 0.020023 0.033653 0.201637 -0.311649 -0.193094 -0.456496 -0.721953 -0.193891 0.418895 -0.266711 0.401746 0.053573 0.052313 -1.696192 0.307831 0.263261 -0.129993 -0.808852 -0.023185 -0.442064 0.449043 -0.017318 0.313753 0.176174 0.446336 0.457928 0.364637 0.254359 0.344978 -0.353564 0.016675 1.426300 -0.449910 0.516489 0.332322 -0.062482 -0.099483 0.247032 0.200944 -0.247802 0.560344 0.551165 -0.349549 -0.069299 -0.100664 -0.366600 -0.823322 0.383725 0.240776 0.046442 -0.646482 -0.110499 -0.068452 -0.378650 -1.444094 0.458355 1.117902 -0.651495 0.933401 0.435506 0.762320 0.056138 0.514366 -0.010617 0.625635 0.055000 -0.732782 0.014303 -0.690174 -0.299140 -0.167708 -0.007395 0.028895 -0.502747 0.119927 0.431276 -0.734950 0.497795 -0.185249 0.346421 -0.778960 0.022919 0.503086 0.496528 -0.550959 -0.947977 -0.798896 0.104670 -0.278753 -0.233489 0.212487 -0.437823 -0.352567 -0.639928 -0.585831 -0.469270 0.264100 -0.724560 -0.561117 0.703677 -0.562364 0.492000 0.077741 0.001968 -0.036508 0.619732 0.432690 0.276076 0.556422 -0.497874 -1.689271 0.103610 0.252923 1.042222 0.175076 0.202691 -0.062652 0.160993 -0.240020 0.194808 0.355343 0.590933 0.731025 -0.252249 -0.435654 -0.426499 0.597453 -0.432162 0.494421 -0.537166 0.511496 -0.043304 0.552428 0.395449 0.230473 0.842548 -0.765483 0.733030 -0.339313 0.121483 0.205664 0.510279 0.404546 -0.338166 -0.391392 0.001151 0.732706 -0.045525 0.207215 -0.487209 0.042772 -0.434810 -0.368200 -0.120209 0.196451 -0.329097 0.485209 0.172470 1.175725 -1.130022 0.161729 0.180552 0.113371 0.118933 -0.073162 -0.801094 0.577962 0.020570 -0.332179 0.241364 -0.115905 -0.623044 0.263610 -0.213353 0.119687 -0.308708 0.081584 -0.493983 -0.435900 -0.402796 0.254837 -0.441791 -0.426339 -0.071894 0.408182 0.744034 0.220121 -0.427878 0.339863 -0.442727 0.076365 -0.919788 1.503804 -0.357335 -0.072460 -0.744466 -0.310955 -0.284077 0.991818 0.230880 -0.035323 0.367201 -0.294697 0.354177 0.975930 0.163386 0.278811 0.398642 0.519559 0.255190 -0.275965 -0.104571 0.519058 -0.165266 0.061447 0.022721 -0.359289 0.748636 0.253363 -0.108224 0.681619 0.757798 -0.334712 0.394827 0.544353 0.040606 -0.294754 0.188767 0.002708 0.862618 -0.338588 0.140063 -0.367892 -0.080277 -0.265888 0.312385 -0.659250 -0.557904 0.261521 -0.366520 -0.305862 0.559597 -0.014594 0.145245 0.233654 -0.928250 -0.151094 -0.100144 -0.341175 -0.088267 0.117508 0.261867 0.631736 0.648757 -0.177356 -0.483067 0.045129 -0.267660 -0.461467 -0.192798 -0.089901 0.179470 -0.789235 0.555844 0.194884 -0.000869 -0.112086 0.017663 0.902490 -0.415118 0.945755 0.506156 -0.130188 0.387484 0.728972 1.322874 -0.290117 -0.359641 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::push_back(AdjListNode const&) = -0.077529 -0.917212 1.926129 1.690331 -0.291034 0.629247 0.100363 -1.345253 1.481807 0.359404 -0.067820 0.345084 -1.053998 0.601394 -0.297854 1.025625 -1.514553 -0.974832 -0.508815 -1.067197 -0.843968 -0.975442 0.422656 0.255730 0.632583 0.456758 -0.955443 0.007034 -0.960840 -0.934492 1.081055 -0.390250 0.806590 0.193464 0.263220 -3.329660 1.412603 0.906599 -0.490407 -1.358132 0.240322 -0.820300 0.128790 -0.602182 -0.478886 0.211199 -0.188216 0.492971 0.979868 0.286153 0.366317 0.484081 0.168066 2.586149 -0.959138 1.010112 0.481178 -0.059223 -0.391253 0.293020 0.409690 0.500026 0.837138 0.799006 -0.267402 -1.124092 -0.221362 -0.642902 -1.378018 1.246603 -0.015182 -0.403871 -1.099677 -0.507587 -0.989252 -0.497219 -1.263619 1.271060 1.947137 -1.326708 0.981342 0.226904 0.533105 0.101900 0.849460 -0.081755 1.616537 0.433907 -0.617319 0.086968 -0.553645 -0.367427 0.334869 -0.198445 -0.657727 -1.762485 0.632030 -1.287231 -1.489152 0.672496 0.589161 -0.016680 -1.289897 -0.552017 0.818272 0.455756 -0.835267 -1.398146 -0.535145 0.528918 0.168919 -0.568503 0.040671 -0.378039 -0.230716 -0.592107 -1.607283 -0.197249 0.232984 -0.657977 -0.459639 1.273472 -0.562691 -0.070521 -0.159556 0.358538 -0.535055 1.432644 -0.267029 0.930079 0.048071 0.330961 -1.071000 0.194983 0.521846 0.920253 -0.165585 -0.154143 -0.558813 0.399922 -1.002412 0.215261 -0.210901 0.599859 1.185029 -0.278406 -1.043524 -0.464671 -0.177392 -1.884918 0.345044 -1.117295 -0.385883 0.680549 1.141151 1.103125 0.925839 1.349332 -1.154538 0.773225 -0.319310 0.034166 1.115236 0.273336 0.758473 -0.678450 -1.061748 0.663747 0.295291 0.391765 0.343633 -0.465736 -0.009963 -0.970315 -0.573925 0.525547 0.693097 -0.104452 0.978030 0.763155 1.600164 -1.502391 0.572225 0.737847 -0.284610 0.336849 -0.148355 -1.460224 0.572121 0.317679 -0.017740 1.144079 -0.309094 -0.712182 0.279165 -0.210863 0.566819 -0.885238 0.134186 -0.904089 -0.241678 -1.085549 0.214592 -0.571869 -0.433315 -0.545250 -0.455696 1.606379 -1.393390 -1.044610 1.858997 -0.450001 0.858132 -1.673572 1.337762 -0.757155 1.029203 -0.678022 -0.206450 -0.128654 0.190236 -0.749185 0.411867 0.737312 -0.494163 0.200572 1.764319 0.447669 0.311833 0.064806 1.190299 -0.131339 0.768503 -0.644971 1.617946 -0.190769 -0.326104 0.055199 -0.636931 0.132174 -0.585328 0.378784 1.224358 1.022349 0.561673 0.709134 0.880237 0.900543 -0.784405 0.896935 -0.138609 0.399007 -0.666183 -0.058427 0.283081 0.553908 -0.543808 0.574059 -1.486717 -1.747025 -1.615354 -1.032023 -0.184657 0.074947 0.231250 -0.283068 -0.177470 -1.174959 -0.914647 0.999809 -0.676181 0.942986 0.665798 0.638332 1.038536 1.616170 -0.766642 -0.197364 0.021847 -0.064648 -0.146893 -0.216749 -1.124218 1.289367 -0.805793 0.493335 1.436548 -0.375614 0.470281 0.057361 1.205382 -0.758962 1.744571 0.630357 -0.507026 1.054603 1.106764 1.535516 0.478665 -0.858644 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -0.031230 -5.404526 8.624562 7.813440 -0.906057 3.863017 0.489579 -5.478611 4.821042 2.085715 -1.868248 3.051699 -4.875067 1.577360 -2.874591 3.315580 -5.897053 -4.348810 -1.814917 -3.491081 -2.851261 -4.087066 0.337291 3.635167 2.987906 3.737773 -3.729887 0.377105 -6.136955 -5.597477 2.890915 -0.833673 3.478779 2.312807 1.588727 -10.592068 5.824563 6.464752 -1.504803 -6.554036 1.130358 -3.186706 -1.744807 -1.415151 -1.659601 1.536551 -0.286795 2.685933 2.349869 1.310552 1.256855 1.529792 2.701665 9.281442 -1.701414 5.974485 4.265809 0.502151 0.302687 0.936550 1.930999 1.669444 3.470488 3.447085 -1.154431 -4.014107 -0.996754 -1.542733 -4.710516 4.637953 0.295718 -2.320609 -4.239720 -2.589566 -4.526974 -1.209799 -4.306492 4.492913 8.909505 -4.840906 5.963832 2.260424 2.527678 -0.876313 4.290792 -0.839243 6.666669 2.681897 -2.600968 0.275333 -3.761589 -1.746882 1.345838 0.586651 -4.907325 -6.118552 3.617050 -8.461443 -7.596260 3.010446 1.747213 -1.856757 -2.964754 -0.865463 2.946850 1.217337 -3.047886 -5.934918 -1.755387 2.957689 -0.332928 -3.361863 -0.794131 0.329406 -0.262347 -0.209538 -6.810100 -0.290512 2.382698 -3.367109 -1.029299 5.435954 -0.137852 1.469717 -1.275428 0.966966 -1.195350 4.585333 -0.261041 3.292168 0.155665 1.787471 -2.802849 1.901530 2.225430 1.187010 -2.917687 -0.786767 -0.085170 2.475461 -1.765583 2.271035 -2.957759 3.319637 3.884472 -1.265533 -4.274315 -3.664983 -2.156228 -7.229222 0.836369 -4.325088 -3.952705 1.157205 5.183758 3.161583 2.761064 5.055074 -4.239776 2.787979 0.101793 0.931394 3.259604 -0.088444 2.603673 -3.330026 -5.651219 4.080297 2.251404 1.849826 1.314852 -1.182241 -0.329682 -3.493693 -3.193353 3.542694 1.967403 -0.302678 6.176836 3.845958 7.399605 -5.042322 2.309907 1.708511 -1.779800 1.489742 -0.698568 -7.189106 2.729138 1.154483 1.993726 7.036521 -0.882869 -2.166239 2.049669 -0.467703 1.795134 -4.925250 3.026387 -4.730387 -1.071859 -4.371547 1.396550 -1.781543 -2.219058 -3.123089 -1.969169 7.563218 -7.076332 -4.685767 6.882011 -0.496843 3.066591 -7.379406 3.763309 -3.413199 4.908253 -1.126815 -1.622590 0.384517 -0.653835 -3.037237 1.088591 3.512219 -3.215920 2.188492 5.950919 1.276964 0.909197 0.998544 4.018931 -1.614147 2.243511 -4.057973 6.111254 0.433661 -2.413164 -0.854483 -2.979983 0.848753 -2.264685 0.667184 4.315822 4.463956 1.818706 1.590441 3.515601 3.088756 -3.736471 3.708189 -0.250009 1.856085 -3.518318 -1.130671 -0.015189 1.440145 -1.124276 3.307330 -7.373051 -7.139687 -7.341628 -5.212782 -1.334124 -1.048544 2.773438 -0.113524 -0.943205 -5.958016 -5.519441 5.693456 -2.777817 4.190536 4.080204 3.893667 4.813533 5.600740 -1.551787 0.043574 -0.714839 1.158214 -1.393359 -1.331427 -3.808744 4.899746 -2.377722 3.348319 6.182966 -1.271197 3.199477 -0.592246 5.012696 -3.940003 7.957765 3.271279 -4.239930 3.266060 4.162173 5.840251 -0.132669 -4.360276 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator() = -0.114063 -0.211234 0.251430 0.251767 0.060492 0.066516 0.234293 -0.036903 0.385565 0.247123 -0.051951 -0.103985 -0.333827 0.041171 0.256210 0.217092 -0.170460 -0.240129 0.123827 -0.069213 -0.053562 -0.281528 0.117331 -0.119224 0.094333 0.014885 0.003453 -0.167208 -0.170634 0.053741 0.275343 -0.188672 0.150783 0.345615 0.014261 -0.431743 0.134051 -0.012600 -0.091995 -0.247399 -0.010892 -0.197359 0.279485 -0.113084 0.264539 0.145709 0.184768 0.244076 0.230805 0.110426 0.133687 -0.283273 -0.034335 0.294818 -0.287013 0.107747 0.015654 -0.076639 -0.051761 0.070493 0.065739 -0.083015 0.209361 0.263295 -0.192964 -0.091942 -0.094065 -0.258179 -0.363582 0.158451 0.032461 0.158285 -0.353545 -0.053132 0.113436 -0.148834 -0.951200 0.218740 0.432970 -0.248510 0.323928 0.191829 0.298968 -0.021100 0.134854 0.054587 0.189894 -0.004589 -0.303079 0.081310 -0.240384 -0.206056 -0.022376 -0.107399 0.112038 -0.059507 -0.012250 0.292037 -0.221396 0.137282 -0.028671 0.220297 -0.236261 0.151830 0.144447 0.217517 -0.196420 -0.349870 -0.127169 -0.085077 -0.062043 -0.018391 0.016405 -0.155091 -0.231027 -0.323164 -0.243528 -0.212150 -0.027768 -0.296776 -0.095651 0.234113 -0.247512 0.094995 0.058996 -0.025982 -0.046481 0.378927 0.168292 0.134341 0.270387 -0.227197 -0.659817 0.134450 0.174559 0.508994 0.118721 0.116434 -0.072296 -0.024873 -0.205302 -0.073169 0.241131 0.159877 0.309452 -0.190319 -0.147433 -0.080588 0.158762 -0.223214 0.270153 -0.224953 0.381268 -0.021501 0.206097 0.230697 0.203984 0.417361 -0.379108 0.187481 -0.224795 0.052856 0.150232 0.452259 0.220744 -0.106401 -0.031135 -0.026506 0.230113 -0.118227 0.153291 -0.228980 0.043373 -0.270584 0.000756 0.032354 0.055302 -0.170163 0.148123 0.027449 0.200112 -0.291686 0.078849 0.179143 0.148351 0.003629 0.086978 -0.275072 0.337062 -0.031861 -0.125292 -0.118975 -0.037164 -0.160511 0.019177 -0.143083 0.058992 -0.107290 -0.081263 -0.136513 -0.136092 -0.204006 0.272506 -0.181322 -0.250891 0.113758 0.295929 0.233978 0.323017 0.006476 0.081292 -0.176990 0.050837 -0.156569 0.565416 -0.189870 -0.027994 -0.329775 -0.125256 -0.115150 0.296060 0.133590 -0.144225 0.120202 0.044738 0.073473 0.286222 0.142268 0.029444 0.196277 0.246735 0.111933 -0.028256 0.068361 0.150894 -0.066004 0.156662 0.141039 -0.123818 0.223743 0.087652 -0.089490 0.445716 0.321746 -0.065468 0.263996 0.037046 0.065307 -0.111817 0.047892 0.027219 0.368057 -0.101692 0.058161 -0.082769 -0.020768 -0.159083 0.073036 -0.223171 -0.284121 0.293070 -0.005931 -0.185929 0.202355 -0.018758 0.082553 0.165344 -0.242798 0.001487 -0.131669 -0.144742 -0.045108 -0.105371 0.022319 0.202107 0.271925 -0.126617 -0.303300 0.066545 -0.061631 -0.130413 0.041031 -0.122934 0.127842 -0.346470 0.092719 0.109136 -0.101039 -0.174238 -0.048094 0.519903 -0.151352 0.330813 0.164894 0.007605 0.282403 0.291545 0.511116 0.058167 -0.106910 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::begin() = 0.461442 -0.676206 2.025511 1.825093 -0.442099 0.436561 -0.239680 -1.447289 1.018849 0.649239 -0.170859 0.586833 -0.644278 0.735125 -0.496602 1.438616 -1.482804 -0.511046 -0.736008 -1.018432 -0.829429 -0.527119 0.512416 0.107686 0.845098 0.805874 -0.979129 0.175307 -0.291237 -1.938037 0.364322 -0.195425 0.600097 -0.078262 0.335998 -2.259074 1.552936 1.097848 -0.516282 -1.194172 0.398885 -0.286267 -0.315387 -0.264808 -0.562924 0.374279 -0.387230 0.375065 0.753742 0.701377 0.495983 0.827068 1.049790 2.047254 -0.406615 0.955414 0.625001 0.045147 -0.183388 0.143371 0.448271 0.671280 0.369915 0.410025 0.443984 -1.262391 -0.534712 -0.252366 -0.775950 1.105575 -0.374273 -0.800518 -1.054019 -0.790285 -0.739726 -0.150396 -1.949882 1.186149 1.533884 -1.220617 0.484318 0.199063 -0.088012 0.044179 0.464526 -0.136254 1.132187 0.625703 -0.047797 0.210289 0.656250 -0.587854 0.725037 -0.325303 -1.060334 -2.070742 0.853374 -1.544602 -1.267000 0.719979 0.885767 -0.439889 -0.530050 -0.730396 0.385652 0.266011 -0.598862 -0.880059 -0.065165 0.411865 0.665528 -0.605519 -0.219630 -0.063342 0.001325 0.508824 -1.569363 0.248179 0.166902 -0.301550 -0.090298 0.823704 0.432688 -0.234295 -0.328101 0.387333 -0.447357 1.304580 -0.330944 1.319213 -0.418969 1.276546 -0.244550 0.838888 0.751976 -0.718506 -0.314876 0.045325 -0.563488 0.445463 -0.778112 0.672554 -0.667743 0.552614 1.267247 -0.022885 -1.128564 -0.439505 -0.863160 -1.616987 0.265914 -0.891507 -0.816437 0.585299 0.929774 0.624548 0.827500 0.671660 -1.037729 -0.000964 -0.114095 0.105533 0.937471 -0.058283 0.496952 -0.537512 -1.003921 0.861935 0.363423 0.367283 0.295648 -0.067312 0.155097 -0.613506 -0.034507 0.991923 0.610436 -0.298421 0.878232 0.800530 1.737725 -0.223981 0.263117 0.678406 -0.498950 0.224782 -0.173733 -1.325356 0.330649 0.231373 0.674633 1.222313 -0.206249 -0.063844 0.474412 -0.344131 0.371556 -0.664098 0.342117 -0.759561 -0.107533 -0.762321 0.312962 -0.216645 -0.066869 -0.355186 -0.472057 1.433618 -1.808997 -0.426583 1.734745 -0.520123 0.333097 -0.952915 1.312737 -0.548679 0.777249 -0.162413 -0.215920 0.130872 -0.418513 -0.987453 0.268769 0.655349 -0.202269 -0.162969 1.395168 0.303570 -0.173111 -0.191612 0.974172 -0.544242 1.129987 -0.647188 1.583601 -0.135404 -0.134320 -0.265849 -0.392816 -0.435283 -0.997409 0.259788 0.899595 0.200326 0.536073 0.267337 0.374547 1.170507 -0.822223 1.342264 -0.087315 0.031064 -0.800294 -0.202738 0.559145 0.537253 -0.476671 0.595100 -1.285124 -1.036167 -2.201716 -0.494726 -0.311979 -0.039402 0.610076 -0.676328 -0.588139 -0.488354 -1.320276 1.915540 -0.507520 -0.049234 0.852882 0.508337 0.832944 1.269076 -0.193258 0.351242 -0.677553 -0.107411 0.317186 -0.302819 -0.633775 1.233661 -0.362823 -0.020036 1.372551 -0.353843 0.783066 0.118844 0.587883 -0.637836 1.233574 0.329278 -0.311586 0.840135 1.235178 0.955726 0.053738 -0.788575 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::end() = 0.407782 -0.600464 1.672323 1.506793 -0.319171 0.365620 -0.084857 -1.172654 0.925745 0.546537 -0.184447 0.433440 -0.640744 0.608322 -0.472899 1.187169 -1.212660 -0.498196 -0.555121 -0.811102 -0.645571 -0.514908 0.481917 0.060417 0.728930 0.640250 -0.762980 0.066891 -0.365387 -1.475012 0.371044 -0.200391 0.481343 0.002999 0.244388 -1.714586 1.255837 0.899208 -0.434268 -1.018499 0.342151 -0.311975 -0.216023 -0.261563 -0.310563 0.315450 -0.270256 0.461048 0.669405 0.586005 0.427447 0.595098 0.807502 1.682710 -0.433784 0.808731 0.503601 0.087977 -0.125720 0.161794 0.369067 0.529955 0.313931 0.405650 0.300362 -1.013455 -0.476482 -0.265952 -0.671215 0.935306 -0.321481 -0.552379 -0.968683 -0.603326 -0.590542 -0.112184 -1.896229 1.009412 1.343775 -1.049005 0.469725 0.207423 0.014932 -0.019534 0.373719 -0.103745 0.903352 0.499076 -0.107372 0.129652 0.357184 -0.455518 0.545014 -0.374890 -0.833476 -1.726202 0.707872 -1.227459 -1.098251 0.556976 0.690067 -0.334358 -0.333260 -0.435064 0.313291 0.252131 -0.531789 -0.801830 -0.025295 0.308082 0.547027 -0.483495 -0.121217 -0.084936 -0.036031 0.296714 -1.316272 0.131589 0.107042 -0.346881 -0.063994 0.710052 0.299034 -0.143139 -0.231948 0.283733 -0.331447 1.121853 -0.210430 1.076068 -0.247143 0.996987 -0.342044 0.785539 0.668432 -0.447338 -0.263998 0.190277 -0.443429 0.351037 -0.658511 0.474613 -0.527266 0.428402 0.962250 -0.146279 -0.934328 -0.356351 -0.638322 -1.298280 0.283167 -0.754656 -0.606859 0.368460 0.797383 0.589082 0.713108 0.675099 -0.923233 -0.002686 -0.090566 0.114716 0.776098 0.049759 0.453952 -0.456638 -0.845184 0.688821 0.334977 0.226159 0.239828 -0.062627 0.121707 -0.599947 0.028234 0.774128 0.498692 -0.321767 0.787972 0.643893 1.208656 -0.258700 0.249840 0.600142 -0.369690 0.188599 -0.120031 -1.173455 0.403694 0.166020 0.583029 0.916619 -0.159574 -0.054345 0.425460 -0.334195 0.328040 -0.579141 0.219412 -0.660937 -0.200912 -0.686867 0.410779 -0.154774 -0.130645 -0.232704 -0.308386 1.187180 -1.338666 -0.286858 1.382872 -0.411880 0.259083 -0.755491 1.150191 -0.489049 0.598474 -0.113282 -0.156743 0.102204 -0.250019 -0.760614 0.112534 0.556446 -0.151285 -0.042718 1.155150 0.271998 -0.138635 -0.068399 0.848821 -0.442283 0.884668 -0.510910 1.267522 -0.102010 -0.152038 -0.138405 -0.354045 -0.302220 -0.792639 0.196461 0.931929 0.248433 0.444971 0.330937 0.275240 0.988398 -0.681925 1.080979 -0.085967 0.099793 -0.672556 -0.149177 0.422915 0.357911 -0.435332 0.523613 -1.096301 -0.969192 -1.669750 -0.415787 -0.229987 -0.164748 0.498364 -0.539542 -0.426667 -0.488193 -1.093958 1.421331 -0.453707 -0.098939 0.677322 0.412705 0.697060 1.077066 -0.217123 0.275442 -0.486204 -0.026412 0.223124 -0.260763 -0.516392 0.991396 -0.384532 0.001743 1.148469 -0.314988 0.580433 0.050895 0.578300 -0.557558 1.065629 0.315738 -0.262495 0.756300 1.057698 0.906969 0.119374 -0.663556 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator*() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getV() = -0.288409 -0.365240 0.590773 0.516083 -0.008391 0.212268 0.004515 -0.286822 0.368655 0.385286 -0.050865 0.203449 -0.283125 0.099685 0.038646 0.363579 -0.300117 -0.271002 -0.086254 -0.270699 -0.245525 -0.247207 -0.014115 0.071459 0.151706 0.083237 -0.281043 0.051670 -0.272357 -0.672984 0.050884 -0.116017 0.261384 -0.110449 0.089124 -1.013359 0.414834 0.393514 -0.149697 -0.487307 0.070358 -0.161744 0.092148 0.040539 -0.179569 0.172350 0.060768 -0.168363 0.178926 0.197454 0.274103 0.072104 0.250076 0.738152 -0.110090 0.355312 0.272747 -0.078866 -0.125148 0.031757 0.149893 0.029206 0.268321 0.190591 -0.050289 -0.283267 -0.109239 -0.073628 -0.416888 0.244057 -0.126162 -0.278515 -0.236382 -0.285089 -0.233345 -0.220352 -0.408863 0.202913 0.594664 -0.346485 0.400661 0.154990 0.165021 0.117092 0.297442 0.001749 0.416674 0.157129 -0.208586 0.150790 0.262931 -0.134699 0.120758 0.281755 -0.243691 -0.284712 0.274566 -0.275098 -0.441904 0.360666 0.117973 0.034419 -0.525149 -0.236196 0.178504 0.236056 -0.289246 -0.420269 -0.263113 0.161335 0.082322 -0.200742 -0.069259 -0.144012 -0.105049 0.035237 -0.457812 -0.027925 0.168252 -0.242848 -0.226454 0.388814 -0.039886 0.096760 -0.069876 0.141430 -0.149743 0.465583 0.024192 0.350841 -0.175339 0.103347 -0.573606 -0.032647 0.140159 -0.001773 -0.097473 -0.100156 -0.095562 0.083061 -0.158025 0.232681 -0.129726 0.300870 0.672736 0.044743 -0.296665 -0.252371 -0.155694 -0.598437 0.091894 -0.332507 -0.052686 0.247885 0.336496 0.164162 0.209378 0.498241 -0.331529 0.175207 -0.145272 -0.114305 0.251786 -0.004754 0.221907 -0.209301 -0.311870 0.224869 0.317947 0.146440 0.208801 -0.177891 0.034577 -0.191048 -0.123903 0.322771 0.187242 -0.028613 0.299268 0.237574 0.917703 -0.274857 0.060518 0.103414 -0.073695 0.090266 -0.096164 -0.431108 0.077144 0.119050 -0.025456 0.382015 -0.059783 -0.180473 0.114357 -0.136811 0.124103 -0.285811 0.254065 -0.286435 0.070500 -0.213146 -0.089565 -0.243726 -0.106311 -0.160103 -0.077792 0.512196 -0.402219 -0.295287 0.407303 -0.067169 0.152229 -0.505252 0.512584 -0.229465 0.424090 -0.305627 -0.108614 -0.054543 0.130044 -0.071172 0.112917 0.237236 -0.145097 0.016004 0.517440 0.122778 0.035952 0.020359 0.331699 -0.050690 0.164658 -0.163788 0.454039 -0.056465 0.014649 -0.026171 -0.177770 0.074737 -0.083624 0.001893 0.137742 0.266578 -0.092662 0.047498 0.284008 0.198697 -0.237597 0.313812 0.031760 0.322266 -0.238892 -0.033832 -0.024929 0.285892 -0.069635 0.094151 -0.447020 -0.279019 -0.471269 -0.283052 -0.186190 0.356112 0.069379 -0.034428 -0.030677 -0.277627 -0.294805 0.668854 -0.192750 0.324865 0.140331 0.231339 0.376736 0.404767 -0.024480 -0.167854 -0.204881 -0.168246 -0.077824 -0.041143 -0.153276 0.305977 -0.254480 0.127286 0.252559 -0.083474 0.152199 0.229076 0.186860 -0.248439 0.523249 0.208832 -0.094853 0.332856 0.379216 0.534609 -0.222184 -0.254417 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator++() = -0.047622 -0.403584 0.983912 0.937407 -0.152269 0.251686 -0.088684 -0.639978 0.599766 0.518100 0.009593 0.239824 -0.362192 0.324257 0.184351 0.756249 -0.692953 -0.297224 -0.283171 -0.513237 -0.465124 -0.342067 0.180247 -0.004209 0.320474 0.299936 -0.497487 0.070389 -0.081018 -0.972235 0.261145 -0.163096 0.421101 0.091080 0.186279 -1.641611 0.770987 0.451199 -0.260322 -0.642913 0.099324 -0.150098 0.059170 -0.086925 -0.292875 0.259993 -0.092297 -0.023705 0.406481 0.345718 0.339995 0.249762 0.461394 1.116994 -0.247787 0.456823 0.279378 -0.139049 -0.180469 0.045491 0.242293 0.252254 0.362272 0.302407 0.100025 -0.602214 -0.206517 -0.195407 -0.632385 0.542467 -0.094185 -0.392105 -0.520124 -0.444759 -0.223863 -0.239382 -0.933689 0.557810 0.865860 -0.601674 0.375772 0.172021 0.088944 0.113686 0.359692 -0.037480 0.707709 0.268585 -0.196074 0.238906 0.399553 -0.440161 0.334734 0.082883 -0.392817 -0.749389 0.314674 -0.370222 -0.607030 0.500809 0.367152 0.013518 -0.745460 -0.495659 0.317829 0.250457 -0.350150 -0.558780 -0.280087 0.178415 0.202279 -0.311984 -0.184597 -0.149825 -0.151800 0.118181 -0.780035 -0.003577 0.118904 -0.237301 -0.217197 0.497116 -0.002840 -0.081496 -0.151645 0.197688 -0.293107 0.736242 -0.099071 0.670889 -0.095268 0.348552 -0.521457 0.179893 0.329892 -0.041629 0.007107 -0.191407 -0.335834 0.178141 -0.448489 0.384923 -0.071121 0.417045 1.001196 0.096003 -0.563472 -0.259224 -0.265286 -0.927720 0.222092 -0.540639 -0.063185 0.430210 0.505188 0.292466 0.438751 0.470991 -0.621227 0.238237 -0.256765 0.012345 0.496167 0.165689 0.300310 -0.282166 -0.435558 0.357503 0.321209 0.183481 0.279818 -0.246817 0.084885 -0.284599 -0.179184 0.479827 0.283749 -0.113214 0.351568 0.352731 1.404992 -0.285194 0.142440 0.331599 -0.125264 0.117667 -0.079719 -0.631716 0.160010 0.114985 0.045019 0.573583 -0.150309 -0.228354 0.136559 -0.165892 0.175181 -0.317635 0.229253 -0.375661 0.075167 -0.392462 -0.000955 -0.297384 -0.109656 -0.149621 -0.046774 0.777467 -0.679698 -0.353054 0.856071 -0.377204 0.195018 -0.644632 0.900832 -0.307953 0.371599 -0.458628 -0.239186 -0.063555 0.001820 -0.336660 0.206771 0.351513 -0.111586 -0.154822 0.853351 0.186143 -0.025415 -0.067449 0.508412 -0.075226 0.459125 -0.251932 0.865368 -0.118203 0.163021 -0.137989 -0.235878 -0.015092 -0.358885 0.032586 0.341338 0.270762 0.085630 0.105620 0.290830 0.447262 -0.411931 0.621255 0.041432 0.223258 -0.372649 -0.028880 0.187722 0.356923 -0.258438 0.241251 -0.621545 -0.423069 -0.823404 -0.236878 -0.342317 0.506075 0.210249 -0.203978 -0.183955 -0.273170 -0.490081 0.935118 -0.279704 0.139745 0.278305 0.264135 0.501397 0.705848 -0.091378 -0.123398 -0.361714 -0.268047 0.035536 -0.081485 -0.338201 0.634472 -0.285455 0.080136 0.552410 -0.153044 0.279996 0.121926 0.498508 -0.314414 0.730397 0.218869 -0.065374 0.479155 0.633552 0.671936 -0.112831 -0.380896 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = 0.247802 -1.022171 2.463501 2.221989 -0.248550 0.729948 0.066720 -1.792920 1.630194 0.980613 -0.169901 0.594561 -1.098957 0.784875 -0.494150 1.632898 -1.711727 -0.969707 -0.714040 -1.303565 -0.992001 -0.999606 0.596474 0.144550 0.957860 0.535711 -1.174555 0.023881 -0.914915 -2.072830 0.802980 -0.345434 0.839843 -0.154246 0.302004 -3.285149 1.927330 1.356361 -0.639446 -1.655428 0.425531 -0.676201 -0.212269 -0.308282 -0.404707 0.432335 -0.324261 0.610682 1.067942 0.748356 0.742312 0.820481 0.851860 2.906977 -0.887168 1.345954 0.719001 0.057988 -0.313050 0.460921 0.522980 0.726943 0.787323 0.816584 0.128753 -1.434604 -0.449736 -0.410474 -1.369032 1.463971 -0.231400 -0.882834 -1.344268 -0.743687 -0.962786 -0.355127 -2.179656 1.429772 2.219941 -1.500781 1.021414 0.355976 0.330751 0.006984 0.851811 -0.212397 1.747334 0.661762 -0.483701 0.026070 -0.067728 -0.663513 0.634175 -0.271892 -1.102535 -2.303422 0.935209 -1.611438 -1.793270 0.885975 0.870313 -0.325898 -1.184963 -0.694876 0.813404 0.436411 -0.847050 -1.508010 -0.479563 0.646937 0.369925 -0.799842 -0.121421 -0.463641 -0.168571 0.088929 -1.958875 -0.033415 0.295687 -0.659369 -0.562378 1.316343 -0.045701 -0.136989 -0.305052 0.475605 -0.548247 1.501126 -0.361075 1.509193 -0.031820 0.987972 -1.142670 0.811308 0.840403 -0.070097 -0.257977 0.137132 -0.683219 0.566558 -1.092851 0.782744 -0.651718 0.843739 1.578562 -0.208425 -1.332880 -0.574672 -0.433445 -2.009913 0.509881 -1.237995 -0.785476 0.443776 1.341847 0.954667 1.084707 1.222870 -1.458524 0.521534 -0.247619 0.215208 1.245524 0.006682 0.777119 -0.781034 -1.350814 0.908116 0.655957 0.340905 0.351113 -0.293107 0.079757 -1.002565 -0.412794 0.855315 0.683169 -0.347473 1.224658 0.973512 2.363951 -1.166677 0.541163 0.883228 -0.507272 0.381714 -0.263955 -1.844444 0.577042 0.359069 0.602532 1.615540 -0.284337 -0.537686 0.473905 -0.333775 0.543031 -0.959627 0.392663 -1.126429 -0.329114 -1.029700 0.315040 -0.470955 -0.383314 -0.512903 -0.425496 1.902189 -1.740034 -1.004898 2.244568 -0.812256 0.503869 -1.726978 1.868872 -0.847515 0.823773 -0.562440 -0.232376 -0.067849 0.124401 -1.098220 0.414272 0.880672 -0.516024 0.292586 2.074094 0.440393 0.133691 -0.064843 1.305850 -0.478246 1.034652 -0.875004 2.052947 -0.219277 -0.289389 -0.243884 -0.673616 -0.055111 -0.979902 0.289655 1.246300 0.779433 0.442290 0.513269 0.804444 1.292196 -1.018387 1.578641 -0.095241 0.288448 -0.902024 -0.156124 0.493856 0.400862 -0.628116 0.864306 -1.782697 -1.561470 -2.137287 -1.028817 -0.260942 0.068467 0.611809 -0.566547 -0.433344 -1.216970 -1.440913 1.806205 -0.717920 0.300323 1.001265 0.783157 1.135872 1.777846 -0.482573 0.185818 -0.631857 -0.201567 -0.016179 -0.587995 -0.833673 1.545864 -0.700901 0.406730 1.599950 -0.355584 0.767168 0.012036 1.019770 -0.887884 1.835567 0.640025 -0.366073 1.143968 1.460146 1.782084 0.048074 -1.035245 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::longestPath(int) = -5.158327 -15.597709 20.991518 18.968680 2.227782 11.724829 3.989284 -11.137322 10.182348 11.387526 -7.121362 7.498911 -11.546155 -2.659798 -2.337292 6.749672 -9.818121 -11.739528 -1.767326 -5.099593 -2.965840 -11.155079 -1.806283 11.013640 6.200890 8.963307 -8.169569 2.355858 -15.902188 -24.435549 6.161073 -0.672680 9.522888 6.759162 2.187724 -26.804688 17.736547 20.801482 -2.894150 -16.726273 2.899431 -3.631057 -8.485402 2.473937 -4.711463 8.583717 2.099527 4.867905 0.587718 6.370757 5.823107 -1.184148 11.824040 19.437794 1.472413 18.328810 15.677288 2.137713 3.865013 3.601685 4.186485 2.540929 9.459979 10.843571 -3.596513 -4.454141 0.020807 -0.890140 -15.092591 8.818231 -0.982132 -10.949799 -7.769014 -6.650326 -8.280669 -0.537478 -4.547409 6.020252 23.123152 -8.589931 21.119628 8.734277 9.309914 -3.801366 8.037875 -3.079825 12.709996 7.984902 -7.939728 -1.591168 -11.586219 -10.167168 2.486979 6.036944 -15.593163 -3.582704 9.661865 -17.265518 -18.829384 8.104184 1.174960 -6.628877 -9.571514 -0.459873 8.129596 2.308476 -3.239283 -14.276042 -7.558346 10.388639 -7.371362 -8.235435 -7.250263 3.788306 -2.178536 5.534855 -16.016156 0.472888 9.293108 -9.458103 -3.684956 12.639018 -2.117592 6.768849 -4.205762 1.479392 -2.349922 7.430492 2.895072 7.442940 5.920365 0.909460 -11.630723 4.091519 5.304428 1.493731 -8.311428 -3.991917 4.224877 6.331156 0.391361 11.119998 -8.490466 8.344707 12.540132 -0.966109 -9.761804 -12.558668 -8.240953 -18.364146 4.582905 -9.994588 -7.144406 4.983969 13.299373 2.584647 4.801092 14.681675 -15.487680 8.750479 -0.557320 2.657254 1.493389 -2.184851 4.402058 -8.270481 -14.690843 12.034744 10.933224 3.521292 4.625403 -3.908778 -0.966134 -7.303889 -12.057195 11.180684 -1.073123 0.900947 13.487886 9.393057 27.968865 -9.413375 3.447485 1.812961 -4.075831 3.377962 -1.123281 -18.352579 7.145417 2.149129 8.217736 22.684910 -0.311140 -5.231256 4.384770 -0.867584 0.708201 -13.415074 15.939157 -12.775354 -1.031824 -6.882390 -2.567800 -5.018474 -7.117230 -8.070406 -2.326079 19.301892 -10.878230 -15.620773 12.937971 -2.804754 3.461549 -19.473151 12.887436 -9.115875 11.900580 -1.805719 -6.194634 0.030174 -3.387724 -2.673080 -0.662393 6.588586 -8.905725 9.280333 15.478995 2.255275 0.450199 3.411144 5.687122 -4.837037 2.485405 -11.423591 11.207779 0.945025 -5.611886 -4.215816 -7.417508 6.150983 -4.682227 -4.694173 6.374400 13.485280 -2.036524 0.164121 8.272988 4.817431 -9.946393 8.555555 3.827404 7.639616 -7.623832 -4.685854 -2.450052 1.701834 0.392621 8.793425 -18.532665 -13.244920 -15.074939 -18.842921 -6.682449 -0.068915 11.089287 1.734007 -0.417431 -16.842169 -14.331463 17.325841 -6.042879 11.099524 10.853981 12.142255 12.777915 11.161341 -0.830574 -1.479133 -4.296754 2.349731 -7.816929 -4.553703 -6.129002 11.866462 -2.414150 10.191447 10.704540 -1.520874 8.215793 -4.354759 9.840832 -10.069475 21.647666 8.373104 -9.987668 5.324952 3.209495 14.960753 -10.043730 -10.927141 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::stack >, void>() = 0.060676 -0.456717 0.944534 0.770424 -0.203297 0.231036 -0.081087 -0.524392 0.737878 0.017509 -0.221921 0.184805 -0.457092 0.325151 -0.257642 0.500179 -0.871054 -0.513470 -0.126933 -0.341204 -0.389668 -0.483396 0.205974 0.095416 0.267665 0.513612 -0.431568 0.170662 -0.341672 -0.435148 0.511093 -0.300232 0.298949 0.288022 0.216337 -1.288208 0.659647 0.297138 -0.228350 -0.685815 0.033329 -0.361281 0.081712 -0.472317 -0.154313 0.171244 0.055955 0.473019 0.418505 0.161417 0.002235 0.060252 0.075861 1.079785 -0.375056 0.412956 0.324436 0.000519 -0.077563 0.027235 0.271066 0.156384 0.300155 0.503211 -0.135606 -0.478107 -0.177245 -0.415257 -0.531218 0.628259 -0.067271 0.047479 -0.621305 -0.255153 -0.499256 -0.148704 -0.966445 0.680545 1.037373 -0.676762 0.451040 0.202434 0.473076 0.092191 0.327354 0.026504 0.732174 0.285536 -0.397311 0.124043 -0.218044 -0.223354 0.154503 -0.315586 -0.220738 -0.885695 0.251281 -0.891921 -0.638479 0.327497 0.242810 0.100441 -0.276462 -0.136474 0.451138 0.229286 -0.398484 -0.591786 -0.038941 0.064110 0.076965 -0.176456 0.140277 0.000826 -0.095269 -0.178450 -0.816999 -0.166183 0.094070 -0.382804 0.106450 0.559223 -0.153437 0.011498 -0.105547 0.040483 -0.182736 0.823533 0.042695 0.407034 -0.128955 0.224519 -0.383379 0.349135 0.318246 0.298524 -0.152827 0.009316 -0.142655 0.169624 -0.476376 -0.143147 -0.238845 0.135320 0.432842 -0.227916 -0.609654 -0.337394 -0.313889 -0.904663 0.180789 -0.555335 -0.250107 0.374926 0.557501 0.619409 0.498625 0.642256 -0.628035 0.256800 -0.229421 0.121849 0.441827 0.228918 0.361730 -0.281847 -0.410708 0.390987 0.126453 0.119189 0.280164 -0.431182 0.077453 -0.519258 -0.118783 0.487677 0.446228 -0.042473 0.454804 0.258991 0.265592 -0.530623 0.188532 0.399198 0.028073 0.056088 0.016864 -0.685218 0.466850 0.055741 0.219963 0.298006 -0.102864 -0.230300 0.136212 -0.112846 0.272332 -0.381661 -0.089514 -0.356887 -0.123740 -0.523048 0.466751 -0.288587 -0.155967 -0.171546 -0.208266 0.732355 -0.746914 -0.305962 0.793901 -0.149240 0.578242 -0.550724 0.365833 -0.384267 0.724423 -0.110630 -0.057328 -0.004000 -0.224310 -0.237114 0.046062 0.380143 -0.058278 -0.033271 0.546649 0.266825 0.106382 0.176585 0.562742 -0.082163 0.345271 -0.145847 0.533693 -0.084532 -0.134811 0.122661 -0.284972 0.038384 -0.232134 0.207618 0.681385 0.433463 0.378109 0.559697 0.255261 0.403284 -0.446551 0.230914 -0.101625 0.284615 -0.414277 -0.054546 0.028311 0.308824 -0.352326 0.198221 -0.672992 -0.928349 -1.017136 -0.342433 -0.295201 -0.172755 0.090006 -0.174838 -0.014783 -0.373403 -0.377535 0.614216 -0.310947 0.383493 0.291214 0.196558 0.508402 0.735426 -0.406234 -0.255731 0.090599 0.023011 -0.076064 0.131397 -0.688417 0.587664 -0.457253 0.127516 0.772152 -0.334697 0.081929 0.082276 0.628415 -0.325027 0.822617 0.396719 -0.369397 0.414195 0.512800 0.724194 0.418215 -0.460097 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::empty() const = 0.040559 -0.493089 0.949800 0.838483 -0.255501 0.304300 -0.071798 -0.541112 0.576700 0.174246 -0.180134 0.226929 -0.408710 0.202676 -0.070496 0.466703 -0.713713 -0.348269 -0.198079 -0.419745 -0.360864 -0.353417 -0.004183 0.205368 0.288775 0.502514 -0.335178 0.119671 -0.304865 -0.549785 0.278293 -0.128232 0.310938 0.292606 0.311749 -1.228450 0.619067 0.517743 -0.188462 -0.732097 0.048634 -0.290229 0.027365 -0.215007 -0.172044 0.228149 -0.005898 0.317875 0.286258 0.214443 0.039887 0.118633 0.298232 0.992505 -0.126826 0.493077 0.410574 -0.031608 -0.056830 0.044061 0.229728 0.140288 0.264036 0.242682 -0.034619 -0.490812 -0.222107 -0.259100 -0.434480 0.457680 -0.048430 -0.313292 -0.533546 -0.466256 -0.406074 -0.198758 -1.207004 0.627030 0.851517 -0.697099 0.462828 0.225849 0.254321 0.089699 0.418295 -0.034776 0.669965 0.272417 -0.236317 0.263857 -0.012759 -0.383920 0.261393 -0.259023 -0.463341 -0.847335 0.354796 -0.750062 -0.675758 0.421335 0.276509 -0.072027 -0.299947 -0.223322 0.256899 0.228161 -0.376973 -0.513401 -0.087597 0.231432 0.155140 -0.258117 -0.059869 0.093828 -0.043349 -0.054227 -0.766546 0.055118 0.241674 -0.244873 0.039537 0.564014 0.012276 0.041083 -0.137198 0.051810 -0.178572 0.823456 0.015540 0.405728 -0.166511 0.281462 -0.371467 0.403263 0.259703 0.030077 -0.145047 -0.019979 -0.035584 0.212215 -0.291169 0.183366 -0.234536 0.286294 0.541126 -0.052199 -0.500968 -0.385485 -0.419090 -0.782783 0.143936 -0.454774 -0.227258 0.380709 0.496888 0.549135 0.318998 0.467420 -0.561687 0.082271 -0.172916 0.067589 0.352625 0.266574 0.301098 -0.310791 -0.413158 0.389503 0.192498 0.180835 0.266885 -0.222805 0.074430 -0.344926 -0.090652 0.505976 0.350749 -0.065260 0.558836 0.421529 0.625823 -0.314476 0.097466 0.194322 -0.175871 0.095194 -0.031384 -0.647472 0.286384 0.110030 0.199476 0.498862 -0.139231 -0.025529 0.168331 -0.152345 0.179428 -0.368578 0.115804 -0.413068 -0.107872 -0.424820 0.312787 -0.293838 -0.153210 -0.267222 -0.223274 0.757700 -0.721586 -0.245665 0.718040 -0.198832 0.363904 -0.480559 0.534293 -0.322896 0.554608 -0.170329 -0.164689 0.010523 -0.179968 -0.252252 0.056942 0.356194 -0.137722 -0.100814 0.591629 0.168573 -0.039077 0.109071 0.494080 -0.230548 0.362764 -0.299567 0.634980 -0.080263 0.015194 0.002509 -0.249995 -0.008518 -0.254943 0.089823 0.589661 0.283856 0.282322 0.203011 0.259965 0.299451 -0.386830 0.397480 -0.040784 0.204574 -0.428081 -0.084869 0.059369 0.308404 -0.146328 0.125559 -0.696048 -0.643792 -0.939170 -0.232268 -0.257649 0.006210 0.172507 -0.118479 -0.153987 -0.343636 -0.557212 0.749854 -0.292031 0.163676 0.272620 0.284413 0.539861 0.636119 -0.147146 -0.083879 -0.051491 -0.037472 -0.023535 0.016290 -0.447475 0.568779 -0.318233 0.127694 0.703321 -0.179538 0.297201 0.101045 0.561931 -0.374362 0.689032 0.268354 -0.379135 0.338814 0.697791 0.566288 0.057529 -0.430053 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::top() = 0.021845 -0.401381 0.815859 0.756899 -0.218413 0.228533 -0.016462 -0.510148 0.548176 0.005113 -0.071297 0.126257 -0.480698 0.251453 -0.031535 0.405280 -0.673653 -0.379722 -0.241286 -0.383038 -0.295844 -0.372167 0.211571 0.164777 0.296202 0.447297 -0.367985 0.027988 -0.359836 -0.253553 0.462857 -0.142983 0.385852 0.450887 0.164502 -1.180226 0.535000 0.405090 -0.178129 -0.572633 0.110421 -0.322313 0.082896 -0.352782 -0.203821 0.164135 -0.087768 0.172901 0.384318 0.109652 0.045554 0.114815 0.097882 0.763747 -0.308047 0.367537 0.209685 -0.050110 -0.126289 -0.035295 0.176928 0.221682 0.319491 0.287371 -0.134560 -0.501612 -0.178805 -0.348169 -0.570938 0.488828 -0.051208 -0.087684 -0.524649 -0.315286 -0.345943 -0.169042 -0.621140 0.587436 0.766469 -0.580760 0.372393 0.086638 0.140106 -0.020123 0.295418 -0.003665 0.529494 0.198746 -0.174891 0.151513 -0.174966 -0.256331 0.166331 -0.123044 -0.320071 -0.587199 0.282896 -0.531654 -0.580897 0.238360 0.270557 -0.031716 -0.431713 -0.130093 0.207418 0.249365 -0.306289 -0.500719 -0.066618 0.166044 0.220473 -0.219999 -0.104253 0.055689 -0.160278 -0.293220 -0.691716 -0.025181 0.062362 -0.272892 0.022566 0.472142 -0.224023 -0.034080 -0.081064 0.093756 -0.231875 0.761587 -0.059793 0.340571 0.029987 0.114650 -0.223884 0.093207 0.239389 0.482355 -0.139669 -0.107538 -0.202397 0.111654 -0.373772 -0.025763 -0.013412 0.162903 0.515796 -0.147508 -0.443816 -0.192333 -0.278591 -0.848664 0.109556 -0.464587 0.009001 0.449936 0.439868 0.483043 0.377910 0.692528 -0.501377 0.172638 -0.109962 -0.057733 0.438347 0.348312 0.299390 -0.269991 -0.408461 0.353512 0.016187 0.162221 0.208901 -0.134730 0.015159 -0.406209 -0.176991 0.375792 0.280674 -0.026989 0.417603 0.323358 0.372653 -0.358502 0.193579 0.298211 -0.093612 0.106868 0.019600 -0.584530 0.295454 0.059421 -0.017270 0.381422 -0.143035 -0.166557 0.149511 -0.142865 0.223550 -0.394496 0.080524 -0.357525 -0.001785 -0.553952 0.152856 -0.176342 -0.204853 -0.169152 -0.128986 0.672339 -0.467329 -0.308244 0.654782 -0.070184 0.412122 -0.559381 0.405870 -0.304194 0.534290 -0.216918 -0.131342 0.023353 -0.173152 -0.261545 0.010448 0.302110 -0.087471 -0.087853 0.615103 0.184940 -0.066884 0.056481 0.474690 -0.041939 0.439832 -0.223704 0.608369 -0.031499 -0.032539 0.111755 -0.239049 -0.034209 -0.283261 0.065975 0.665242 0.405129 0.369179 0.336929 0.214206 0.400842 -0.329527 0.315139 -0.017532 0.196052 -0.285697 -0.049337 0.140873 0.368364 -0.210687 0.178976 -0.573376 -0.828351 -0.609083 -0.396639 -0.150179 -0.034897 0.144659 -0.115503 -0.118617 -0.317794 -0.424806 0.370410 -0.280668 0.549992 0.190207 0.214267 0.438119 0.628140 -0.360588 -0.096609 0.104251 0.082673 0.017615 0.053089 -0.533024 0.532385 -0.300387 0.072029 0.699942 -0.224610 0.225127 -0.045303 0.649996 -0.323372 0.729279 0.212312 -0.299200 0.502286 0.432852 0.477368 0.308733 -0.354500 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::pop() = 0.283674 -0.729126 1.875140 1.654646 -0.312602 0.530983 -0.081447 -1.365304 1.245851 0.668123 -0.255444 0.307670 -0.778070 0.522117 -0.304707 1.189482 -1.382643 -0.646309 -0.534216 -0.947700 -0.684373 -0.781337 0.459649 0.102808 0.684549 0.686943 -0.772850 0.203025 -0.415084 -1.640777 0.643794 -0.259407 0.593430 0.195251 0.316686 -2.227903 1.497116 0.973749 -0.457002 -1.228764 0.230049 -0.346059 -0.252397 -0.203113 -0.325922 0.429924 -0.247598 0.613818 0.742376 0.584257 0.471568 0.421179 0.723989 1.917640 -0.525749 0.958854 0.519454 0.023508 -0.137741 0.332927 0.403896 0.569049 0.491603 0.692434 0.194641 -1.028163 -0.278068 -0.321059 -1.013575 1.165761 -0.265980 -0.670079 -1.000837 -0.662625 -0.629091 -0.150334 -1.841326 1.132338 1.672991 -1.068733 0.729667 0.329899 0.216092 -0.065798 0.499720 -0.189079 1.283566 0.532594 -0.349533 0.105450 0.105897 -0.702089 0.554290 -0.366151 -0.842201 -1.647522 0.699821 -1.368978 -1.244836 0.635068 0.692286 -0.264865 -0.706602 -0.466561 0.591067 0.261725 -0.538880 -1.020847 -0.191310 0.435789 0.240941 -0.499573 -0.175146 -0.058744 -0.128477 0.258875 -1.455689 -0.047819 0.164107 -0.476426 -0.164564 0.898174 0.096912 -0.128697 -0.220196 0.302607 -0.347467 1.186806 -0.214585 1.148716 -0.073870 0.865989 -0.545216 0.757605 0.652034 -0.284292 -0.108754 0.050833 -0.383869 0.428609 -0.835990 0.547602 -0.604556 0.460712 1.180523 -0.139001 -0.999708 -0.419127 -0.580467 -1.562464 0.364779 -0.951781 -0.635661 0.448862 0.980162 0.770054 0.792204 0.847660 -1.236684 0.231177 -0.261083 0.199553 0.776475 0.137526 0.535862 -0.529676 -0.927988 0.683343 0.431017 0.249119 0.329393 -0.354267 0.045284 -0.739328 -0.232229 0.877214 0.507175 -0.235965 0.816612 0.735316 1.584090 -0.625749 0.359479 0.703108 -0.302023 0.202391 -0.081817 -1.384494 0.495070 0.186951 0.655823 1.091316 -0.215448 -0.163948 0.306663 -0.313030 0.337724 -0.718568 0.237641 -0.809162 -0.131086 -0.784092 0.403237 -0.366451 -0.265643 -0.297935 -0.240307 1.351149 -1.318933 -0.622913 1.735257 -0.608132 0.430791 -1.031182 1.182345 -0.597133 0.706529 -0.307586 -0.196396 -0.031446 -0.253478 -0.721488 0.166575 0.595013 -0.212953 0.129521 1.397967 0.324635 -0.034691 -0.001990 0.970127 -0.450304 0.806202 -0.644363 1.400267 -0.125854 -0.128170 -0.196822 -0.493596 -0.124062 -0.808517 0.173990 0.971957 0.547115 0.362572 0.442545 0.403587 0.905817 -0.738077 1.164612 0.007965 0.169915 -0.701744 -0.143919 0.426719 0.361513 -0.566589 0.608166 -1.297188 -1.183433 -1.759644 -0.654274 -0.427611 -0.109077 0.568664 -0.430452 -0.314695 -0.664530 -1.101850 1.539055 -0.493870 0.170239 0.679155 0.548866 0.811739 1.328854 -0.318824 0.143380 -0.457199 -0.090768 -0.031803 -0.343149 -0.662839 1.195702 -0.449204 0.205157 1.264643 -0.326400 0.550215 -0.066784 0.792196 -0.704489 1.251198 0.484503 -0.279178 0.802427 0.993830 1.182322 0.176027 -0.770400 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator->() const = -0.004938 -0.413881 1.057160 0.915163 -0.164168 0.336853 -0.143234 -0.812769 0.733593 0.200514 -0.045958 0.204637 -0.450092 0.332464 -0.315856 0.563452 -0.723776 -0.436913 -0.427190 -0.660562 -0.491729 -0.415429 0.158496 0.107944 0.339219 0.273073 -0.552398 0.203895 -0.500898 -0.733090 0.372491 -0.105124 0.323113 -0.083260 0.215772 -1.352267 0.807573 0.633515 -0.265329 -0.670978 0.128751 -0.365575 -0.035289 -0.205575 -0.238031 0.158417 -0.238578 0.030828 0.471387 0.177339 0.317481 0.411370 0.150207 1.198797 -0.410919 0.562334 0.267038 0.029621 -0.160129 0.173926 0.193824 0.365300 0.306192 0.278856 -0.036869 -0.657242 -0.155260 -0.194001 -0.528431 0.651359 -0.161159 -0.461376 -0.499635 -0.446809 -0.598915 -0.236145 -0.776078 0.562345 0.891942 -0.675185 0.355731 0.101621 0.152178 0.117310 0.458819 -0.095239 0.856625 0.263069 -0.176744 0.141354 0.033500 -0.112769 0.246153 -0.015092 -0.537944 -0.849900 0.455877 -0.936904 -0.772398 0.368787 0.403085 -0.109218 -0.590295 -0.278020 0.279396 0.124951 -0.366081 -0.615579 -0.134542 0.371865 0.275567 -0.294427 -0.024902 -0.201864 -0.018096 -0.058142 -0.855370 0.063685 0.124490 -0.198389 -0.239360 0.650363 -0.103455 -0.159107 -0.133790 0.213595 -0.310289 0.752747 -0.249128 0.588385 -0.317859 0.412389 -0.542120 0.186006 0.263023 0.022264 -0.188133 0.011460 -0.277031 0.176339 -0.527646 0.252245 -0.386860 0.257861 0.623745 -0.099136 -0.544342 -0.221353 -0.346236 -0.993851 0.085764 -0.508943 -0.438731 0.270262 0.558745 0.668297 0.462694 0.670048 -0.503801 0.149274 -0.104934 -0.069857 0.579106 -0.064213 0.344687 -0.348457 -0.587655 0.435249 0.110588 0.209393 0.250808 -0.136417 -0.008577 -0.457451 -0.119279 0.446529 0.341961 -0.027819 0.584709 0.497526 0.755548 -0.588012 0.282251 0.358814 -0.245370 0.189351 -0.130246 -0.692589 0.158041 0.220056 0.171353 0.687081 -0.146975 -0.139449 0.126425 -0.152105 0.356404 -0.485183 0.133148 -0.456317 -0.048828 -0.523536 0.106061 -0.257238 -0.107591 -0.264608 -0.412362 0.805918 -0.876102 -0.475866 1.034729 -0.094400 0.376646 -0.683151 0.432246 -0.353538 0.692666 -0.199329 0.016406 -0.023025 -0.026036 -0.471187 0.265416 0.366926 -0.277773 0.017412 0.831364 0.193957 0.080384 -0.075513 0.600272 -0.263626 0.525493 -0.405061 0.895115 -0.054477 -0.197889 0.004828 -0.303042 -0.133983 -0.429808 0.189464 0.507276 0.390987 0.319710 0.176513 0.379405 0.543525 -0.403385 0.572486 -0.039277 0.020107 -0.400703 -0.092668 0.279065 0.323215 -0.227539 0.160127 -0.752601 -0.753036 -1.045655 -0.491772 -0.012337 -0.047860 0.095390 -0.190170 -0.242484 -0.408706 -0.631780 0.887170 -0.331872 0.495350 0.316098 0.346931 0.499808 0.827620 -0.321755 0.083495 -0.132687 -0.085264 0.036996 -0.152240 -0.523431 0.773171 -0.263706 0.100051 0.768684 -0.210960 0.415322 0.228471 0.338100 -0.389815 0.791074 0.239749 -0.220953 0.548619 0.626018 0.757449 0.183632 -0.440346 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getWeight() = -0.288409 -0.365240 0.590773 0.516083 -0.008391 0.212268 0.004515 -0.286822 0.368655 0.385286 -0.050865 0.203449 -0.283125 0.099685 0.038646 0.363579 -0.300117 -0.271002 -0.086254 -0.270699 -0.245525 -0.247207 -0.014115 0.071459 0.151706 0.083237 -0.281043 0.051670 -0.272357 -0.672984 0.050884 -0.116017 0.261384 -0.110449 0.089124 -1.013359 0.414834 0.393514 -0.149697 -0.487307 0.070358 -0.161744 0.092148 0.040539 -0.179569 0.172350 0.060768 -0.168363 0.178926 0.197454 0.274103 0.072104 0.250076 0.738152 -0.110090 0.355312 0.272747 -0.078866 -0.125148 0.031757 0.149893 0.029206 0.268321 0.190591 -0.050289 -0.283267 -0.109239 -0.073628 -0.416888 0.244057 -0.126162 -0.278515 -0.236382 -0.285089 -0.233345 -0.220352 -0.408863 0.202913 0.594664 -0.346485 0.400661 0.154990 0.165021 0.117092 0.297442 0.001749 0.416674 0.157129 -0.208586 0.150790 0.262931 -0.134699 0.120758 0.281755 -0.243691 -0.284712 0.274566 -0.275098 -0.441904 0.360666 0.117973 0.034419 -0.525149 -0.236196 0.178504 0.236056 -0.289246 -0.420269 -0.263113 0.161335 0.082322 -0.200742 -0.069259 -0.144012 -0.105049 0.035237 -0.457812 -0.027925 0.168252 -0.242848 -0.226454 0.388814 -0.039886 0.096760 -0.069876 0.141430 -0.149743 0.465583 0.024192 0.350841 -0.175339 0.103347 -0.573606 -0.032647 0.140159 -0.001773 -0.097473 -0.100156 -0.095562 0.083061 -0.158025 0.232681 -0.129726 0.300870 0.672736 0.044743 -0.296665 -0.252371 -0.155694 -0.598437 0.091894 -0.332507 -0.052686 0.247885 0.336496 0.164162 0.209378 0.498241 -0.331529 0.175207 -0.145272 -0.114305 0.251786 -0.004754 0.221907 -0.209301 -0.311870 0.224869 0.317947 0.146440 0.208801 -0.177891 0.034577 -0.191048 -0.123903 0.322771 0.187242 -0.028613 0.299268 0.237574 0.917703 -0.274857 0.060518 0.103414 -0.073695 0.090266 -0.096164 -0.431108 0.077144 0.119050 -0.025456 0.382015 -0.059783 -0.180473 0.114357 -0.136811 0.124103 -0.285811 0.254065 -0.286435 0.070500 -0.213146 -0.089565 -0.243726 -0.106311 -0.160103 -0.077792 0.512196 -0.402219 -0.295287 0.407303 -0.067169 0.152229 -0.505252 0.512584 -0.229465 0.424090 -0.305627 -0.108614 -0.054543 0.130044 -0.071172 0.112917 0.237236 -0.145097 0.016004 0.517440 0.122778 0.035952 0.020359 0.331699 -0.050690 0.164658 -0.163788 0.454039 -0.056465 0.014649 -0.026171 -0.177770 0.074737 -0.083624 0.001893 0.137742 0.266578 -0.092662 0.047498 0.284008 0.198697 -0.237597 0.313812 0.031760 0.322266 -0.238892 -0.033832 -0.024929 0.285892 -0.069635 0.094151 -0.447020 -0.279019 -0.471269 -0.283052 -0.186190 0.356112 0.069379 -0.034428 -0.030677 -0.277627 -0.294805 0.668854 -0.192750 0.324865 0.140331 0.231339 0.376736 0.404767 -0.024480 -0.167854 -0.204881 -0.168246 -0.077824 -0.041143 -0.153276 0.305977 -0.254480 0.127286 0.252559 -0.083474 0.152199 0.229076 0.186860 -0.248439 0.523249 0.208832 -0.094853 0.332856 0.379216 0.534609 -0.222184 -0.254417 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::~stack() = -0.017376 -0.568191 1.060115 0.843598 -0.209515 0.333670 0.199589 -0.684995 0.869578 0.150204 -0.231596 0.028592 -0.740865 0.214217 -0.270916 0.468967 -0.877193 -0.574504 -0.166581 -0.457740 -0.296011 -0.682276 0.408594 0.150212 0.392973 0.468042 -0.346878 -0.010244 -0.520034 -0.510216 0.708195 -0.276100 0.425143 0.425875 0.092242 -1.437012 0.747869 0.496474 -0.255891 -0.785742 0.149750 -0.336044 -0.011792 -0.275277 -0.178377 0.183125 -0.009821 0.546041 0.516851 0.205100 0.175326 -0.083418 0.131808 1.117935 -0.477753 0.545520 0.258731 0.002862 -0.110222 0.181895 0.235558 0.217504 0.398552 0.640421 -0.135312 -0.460265 -0.067675 -0.428085 -0.871859 0.739452 -0.176064 -0.053692 -0.642776 -0.246990 -0.431600 -0.110301 -0.813742 0.718229 1.210452 -0.631678 0.690564 0.177921 0.307828 -0.198211 0.244042 -0.045296 0.676672 0.250407 -0.392952 -0.013755 -0.349187 -0.258833 0.149696 -0.186642 -0.287937 -0.817456 0.438632 -0.749273 -0.795198 0.261294 0.282314 -0.043391 -0.427830 0.004831 0.376648 0.285767 -0.462368 -0.794865 -0.175683 0.187259 0.030846 -0.185349 -0.002543 0.091652 -0.242644 -0.304659 -0.813993 -0.269059 0.024698 -0.561468 -0.012114 0.606661 -0.260270 0.114765 0.002922 0.154342 -0.147274 0.815035 0.018138 0.473319 0.160596 0.212773 -0.343537 0.170299 0.356891 0.551117 -0.061312 0.001508 -0.140797 0.200021 -0.496098 -0.058801 -0.196629 0.118614 0.589836 -0.319719 -0.554591 -0.187973 -0.212119 -1.117508 0.193945 -0.673977 -0.156406 0.396049 0.630598 0.567327 0.471881 0.965385 -0.816362 0.308097 -0.160435 -0.034220 0.419033 0.329383 0.433389 -0.336377 -0.579223 0.302681 0.155976 0.174692 0.185537 -0.342868 -0.085462 -0.651864 -0.258208 0.426727 0.370909 -0.132712 0.434172 0.387584 0.466633 -0.640701 0.263789 0.484371 -0.009487 0.090784 0.060182 -0.972117 0.514438 0.043698 0.169018 0.414265 -0.122334 -0.222295 0.235036 -0.280593 0.242657 -0.587786 0.036118 -0.540178 -0.067122 -0.695247 0.311927 -0.221844 -0.337749 -0.176053 -0.055352 0.811036 -0.573231 -0.422904 0.935466 -0.105904 0.519364 -0.744854 0.610789 -0.414416 0.644302 -0.228376 -0.098432 -0.030309 -0.096650 -0.188197 -0.091434 0.322292 -0.068827 0.243025 0.867260 0.252054 0.032931 0.179061 0.710252 -0.119725 0.353562 -0.311333 0.660543 -0.023487 -0.268458 0.144988 -0.378187 0.064401 -0.346947 0.124907 0.924016 0.673814 0.256512 0.639454 0.242992 0.490893 -0.390001 0.447160 0.025900 0.397916 -0.351835 -0.045737 0.131071 0.359408 -0.430605 0.398076 -0.836640 -1.207269 -0.775045 -0.662099 -0.289522 -0.326155 0.305621 -0.150640 0.030207 -0.554895 -0.518116 0.504405 -0.357300 0.630458 0.319973 0.342293 0.542579 0.876575 -0.457985 -0.090503 0.124633 0.229296 -0.183418 -0.060958 -0.575046 0.554849 -0.521872 0.232893 0.812078 -0.252956 0.140738 -0.177895 0.747443 -0.554527 0.930836 0.432672 -0.283499 0.689134 0.405205 0.789740 0.488543 -0.467655 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = -2.361908 -7.302155 11.752731 9.440188 1.857609 4.484550 3.782994 -4.326686 6.289748 5.635217 -3.159608 1.188390 -6.722489 -0.781110 -0.892882 4.736869 -6.441212 -7.472428 -0.432510 -2.097103 -2.365386 -6.108336 3.037703 2.427053 4.107349 4.762810 -5.290907 -1.916139 -5.298699 -10.544871 6.889931 -1.956852 5.707335 4.936139 -1.813243 -18.969651 10.462927 7.635006 -2.635581 -6.231055 2.380651 -0.441529 -3.048115 -0.463315 -3.546097 3.600234 2.427272 5.161000 1.597536 4.810694 3.527024 -2.475211 5.788115 14.253169 -0.738531 8.039187 7.351941 1.902845 0.806456 2.184062 2.452378 1.078560 4.759960 6.732747 -0.782180 -0.965190 0.390922 -4.158527 -9.631286 5.756698 -1.464301 -2.270848 -3.917574 -1.719263 -2.929930 0.072239 -2.075641 4.727277 12.509487 -6.848259 10.354949 4.289720 5.855111 -0.927079 -0.587216 -0.316220 2.834654 4.290058 -4.074743 -2.342466 -7.009450 -5.223590 0.265288 -0.839124 -6.498731 -7.425401 5.046217 -5.999131 -8.684244 3.815596 0.570667 -1.691397 -4.769194 -1.560460 5.128217 1.431172 -2.896697 -7.099481 -5.070049 2.726888 -3.882627 -2.048369 -2.240183 1.599149 -2.554084 1.048496 -9.507792 -0.368330 2.217189 -6.360116 -1.137120 6.408198 -3.040166 3.524998 -1.469733 1.377855 -2.695696 6.112702 3.148574 4.036883 4.460764 1.528739 -4.964317 0.362884 4.695369 5.490519 -2.761182 -3.292111 -0.191343 2.738242 -2.165525 3.508312 -1.933599 1.724448 8.119495 -1.990704 -7.091160 -5.606007 -3.020424 -12.455460 3.514976 -6.405716 -1.256025 5.675689 7.253829 2.824877 4.378836 10.568375 -10.074768 5.429712 -2.446041 0.737895 -0.449563 0.843010 2.814682 -3.858485 -7.336206 5.068322 5.767058 1.522900 2.675913 -4.217883 0.078981 -5.988423 -5.864216 3.658546 -0.320098 -2.088475 3.019893 3.759228 12.093930 -6.751540 1.248150 3.589012 -1.363435 1.262738 1.462095 -10.245628 4.341594 0.045344 1.292606 8.903527 0.704702 -4.555928 3.684746 -2.214269 -0.774622 -5.808099 5.643195 -5.753671 -1.886765 -4.805488 0.345350 -3.444824 -2.839416 -2.085017 -1.228385 9.519328 -4.873439 -6.254701 6.137589 0.030942 0.798645 -9.586300 10.128041 -5.025376 6.020126 -0.626494 -4.579091 -0.519620 -1.380202 0.380077 -1.766665 2.115985 -2.707582 4.436350 10.191813 2.188068 0.588880 2.074674 4.530028 -1.027020 2.449962 -3.994913 4.400870 -1.082305 -5.095534 -1.071749 -3.543895 3.392021 -3.425793 -1.870615 5.739483 7.493578 -0.581923 3.734754 4.183835 4.686084 -5.940133 2.784563 2.513248 6.862425 -3.789772 -1.850962 -0.634189 2.184415 -2.367537 5.399321 -9.122581 -9.527794 -9.128116 -10.462361 -4.307884 -0.035706 4.693903 -1.832509 0.645794 -8.201485 -5.792978 6.161009 -4.312365 4.482144 6.668892 5.269607 7.608149 7.477560 -3.953500 -2.655222 1.004257 1.716174 -3.661049 -0.944489 -5.849507 6.785043 -1.924342 3.845517 6.014224 -1.898117 2.324780 -2.299471 6.681835 -4.782335 12.543089 4.217646 -4.067503 4.172536 0.490310 9.124395 -1.762260 -5.238272 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.094248 -0.443901 0.812443 0.733543 -0.117401 0.264090 0.028478 -0.504952 0.691119 0.262699 -0.094416 0.119813 -0.504081 0.254723 -0.019253 0.512208 -0.649972 -0.436146 -0.126978 -0.373764 -0.352891 -0.488110 0.186518 0.067274 0.249962 0.296634 -0.364209 0.056555 -0.331605 -0.501714 0.416210 -0.243136 0.347418 0.236453 0.144849 -1.314171 0.605025 0.344377 -0.206852 -0.621793 0.049500 -0.338755 0.160338 -0.255727 -0.129683 0.189605 0.026403 0.228935 0.435287 0.177751 0.202758 0.024685 0.144075 0.980874 -0.385816 0.426001 0.210900 -0.055065 -0.144789 0.069103 0.205467 0.145637 0.376579 0.432104 -0.153447 -0.432419 -0.151217 -0.301523 -0.636682 0.535367 -0.093990 -0.090655 -0.572434 -0.271663 -0.320365 -0.224288 -0.900052 0.543019 0.929168 -0.575536 0.486253 0.190200 0.314278 0.040819 0.364141 -0.018007 0.680462 0.195662 -0.378861 0.141784 -0.064729 -0.246646 0.147325 -0.072026 -0.216185 -0.626653 0.230266 -0.488072 -0.633683 0.340965 0.195322 0.105571 -0.527656 -0.167652 0.373113 0.252301 -0.390923 -0.650329 -0.180626 0.123968 0.089155 -0.222206 0.001772 -0.129199 -0.167373 -0.202514 -0.707030 -0.193690 0.085748 -0.402327 -0.111183 0.543351 -0.190609 0.045541 -0.055584 0.100245 -0.175492 0.742995 0.002815 0.444368 -0.012260 0.124408 -0.565787 0.173778 0.258924 0.321027 -0.048632 -0.023708 -0.185526 0.126201 -0.432893 0.045481 -0.079642 0.254797 0.638285 -0.122783 -0.478264 -0.224259 -0.158151 -0.854138 0.229173 -0.525208 -0.029550 0.303298 0.508183 0.445154 0.421283 0.661714 -0.595115 0.273997 -0.222170 0.028929 0.456171 0.270362 0.360035 -0.286572 -0.405634 0.312412 0.236659 0.097413 0.242033 -0.322622 0.027010 -0.422726 -0.153845 0.365790 0.308363 -0.069508 0.418039 0.251669 0.695071 -0.503649 0.223705 0.332988 0.009904 0.125166 -0.032148 -0.661313 0.368861 0.076794 0.036142 0.332031 -0.130044 -0.258031 0.125148 -0.155896 0.245435 -0.407892 0.053788 -0.388235 -0.056904 -0.482565 0.213387 -0.260738 -0.224588 -0.125495 -0.027515 0.687328 -0.478597 -0.310186 0.721049 -0.194867 0.397193 -0.590763 0.626145 -0.354691 0.495109 -0.342542 -0.134218 -0.050687 0.045731 -0.144179 0.053443 0.342555 -0.088267 0.023761 0.668139 0.210780 0.080572 0.134341 0.522776 0.000000 0.282379 -0.169028 0.623176 -0.054726 0.003400 0.079077 -0.292192 0.103503 -0.186330 0.076440 0.591825 0.491124 0.145628 0.370845 0.285781 0.341711 -0.356280 0.348127 -0.036850 0.309558 -0.337569 -0.013450 0.046274 0.273710 -0.282239 0.214885 -0.624492 -0.734145 -0.629258 -0.316723 -0.265088 0.131608 0.117173 -0.090154 -0.000176 -0.395124 -0.352487 0.559354 -0.305331 0.356284 0.179224 0.248189 0.476030 0.696255 -0.270206 -0.235110 -0.037944 -0.085463 -0.102643 0.026830 -0.457063 0.507703 -0.429158 0.187682 0.557400 -0.219791 0.086974 0.063524 0.583798 -0.336519 0.745004 0.321497 -0.174411 0.508190 0.506809 0.720477 0.179104 -0.380984 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.093433 -0.672524 1.372032 1.185977 0.078264 0.534378 0.174427 -1.087211 1.287046 0.692175 -0.056188 0.209597 -0.802787 0.462774 -0.545809 0.878286 -0.833232 -0.796268 -0.373827 -0.867254 -0.678095 -0.829927 0.296441 -0.029308 0.451256 -0.114050 -0.704382 0.033674 -0.944037 -1.043931 0.610652 -0.279379 0.383060 -0.506929 0.115704 -1.946416 1.114522 0.777444 -0.406752 -1.002236 0.150390 -0.637590 0.052482 -0.151574 0.011668 0.154091 -0.159147 0.351940 0.766825 0.324075 0.706496 0.441122 0.119410 2.093174 -0.882487 0.898127 0.328221 0.162852 -0.223054 0.540724 0.282367 0.407405 0.541145 0.657526 -0.143475 -0.730356 -0.174163 -0.244399 -0.887136 0.973199 -0.180369 -0.490915 -0.821211 -0.343049 -0.746089 -0.367383 -1.570278 0.716052 1.500830 -0.941270 0.744257 0.290169 0.539719 0.120236 0.698890 -0.163522 1.304724 0.297660 -0.576434 -0.041855 -0.318670 -0.013111 0.176073 -0.097507 -0.532884 -1.326746 0.557667 -0.963305 -1.209418 0.551983 0.372543 0.035747 -0.865251 -0.226536 0.615459 0.205714 -0.662851 -1.174456 -0.464783 0.479527 0.128757 -0.429535 0.239754 -0.687912 -0.066318 -0.239880 -1.155337 -0.256659 0.173034 -0.571773 -0.668433 1.017948 -0.290560 -0.034639 -0.081470 0.276906 -0.301725 0.865920 -0.213240 0.894989 -0.146637 0.419745 -1.476047 0.402332 0.434072 0.210394 -0.085549 0.373519 -0.384760 0.285215 -0.784805 0.411128 -0.489375 0.466157 0.808728 -0.285741 -0.747910 -0.305737 0.080356 -1.183116 0.367772 -0.783689 -0.551040 -0.103466 0.888461 0.905939 0.693958 0.991338 -0.866942 0.495741 -0.218598 0.096491 0.805929 -0.162263 0.575376 -0.507570 -0.896997 0.419929 0.512595 0.088228 0.265929 -0.363451 -0.050222 -0.761277 -0.181522 0.282110 0.438925 -0.260148 0.864314 0.559915 1.255468 -1.325971 0.515904 0.569974 -0.210732 0.331259 -0.278510 -1.185819 0.433941 0.313628 0.250638 0.846533 -0.174293 -0.457684 0.216221 -0.253509 0.517635 -0.674188 0.078069 -0.737067 -0.418345 -0.680517 0.323923 -0.391588 -0.286451 -0.259564 -0.308042 1.113420 -0.926154 -0.688470 1.439919 -0.338944 0.331426 -1.100179 1.127566 -0.563383 0.598645 -0.447517 0.054738 -0.184351 0.635789 -0.500742 0.332187 0.566763 -0.494538 0.454691 1.372577 0.287473 0.393918 0.085038 0.918332 -0.260197 0.354087 -0.529873 1.252951 -0.119352 -0.401831 0.009467 -0.536247 0.181889 -0.431663 0.274773 0.818043 0.781534 0.099586 0.392914 0.669939 0.695833 -0.560628 0.835184 -0.100535 0.237960 -0.562404 0.006421 0.193351 0.043516 -0.460251 0.422342 -1.130358 -1.023034 -1.081656 -0.687182 0.029520 -0.031308 0.079361 -0.211845 -0.101483 -0.980466 -0.761336 0.959354 -0.540502 0.246516 0.479849 0.548200 0.712930 1.252510 -0.435346 0.025696 -0.259175 -0.247930 -0.204230 -0.438986 -0.499150 0.935224 -0.615581 0.413877 0.815856 -0.191340 0.327279 0.298219 0.482222 -0.562208 1.200485 0.532214 -0.091770 0.797390 0.960452 1.586883 0.123775 -0.626651 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.154967 -0.379502 0.600236 0.504046 0.064228 0.258323 0.140050 -0.409910 0.721045 0.272751 -0.092320 0.006995 -0.499296 0.177209 -0.205896 0.345263 -0.387105 -0.479453 -0.057885 -0.333768 -0.275788 -0.508590 0.139957 -0.023292 0.169548 -0.011736 -0.257238 0.023974 -0.548000 -0.284046 0.386165 -0.222583 0.183337 -0.027848 0.064392 -0.823827 0.459373 0.290991 -0.179023 -0.504874 0.014862 -0.406388 0.184223 -0.167713 0.142106 0.115200 0.050429 0.245073 0.408295 0.100874 0.309193 -0.021753 -0.098840 0.883137 -0.504604 0.401348 0.120150 0.058456 -0.101490 0.233322 0.132783 0.094854 0.308903 0.424902 -0.247846 -0.272448 -0.082357 -0.227156 -0.503386 0.462911 -0.102868 -0.050710 -0.474736 -0.141207 -0.329288 -0.220350 -0.948387 0.342165 0.815452 -0.462346 0.467537 0.206130 0.438010 0.046477 0.363782 -0.040219 0.628892 0.102419 -0.438023 0.025775 -0.306042 0.007584 -0.007465 -0.067500 -0.119621 -0.439895 0.202102 -0.398292 -0.588838 0.238762 0.074500 0.160828 -0.405629 0.081556 0.330887 0.165258 -0.361985 -0.648362 -0.184815 0.148192 0.009228 -0.143572 0.168001 -0.329533 -0.120711 -0.308800 -0.548585 -0.261763 0.055726 -0.413017 -0.261464 0.539228 -0.278480 0.063579 0.015285 0.068003 -0.105329 0.537474 0.013095 0.342726 -0.024135 0.007216 -0.897577 0.177685 0.196513 0.365043 -0.035777 0.235485 -0.114845 0.067018 -0.402668 0.003348 -0.162653 0.175014 0.360058 -0.252456 -0.339586 -0.152208 0.065091 -0.597795 0.234078 -0.410808 -0.087222 -0.064983 0.448358 0.541271 0.359969 0.686348 -0.478478 0.265599 -0.178683 0.028341 0.377631 0.120706 0.346159 -0.253443 -0.367800 0.177232 0.264385 -0.031849 0.202274 -0.301306 -0.026439 -0.463379 -0.049785 0.156346 0.223805 -0.114586 0.441518 0.201212 0.326017 -0.715631 0.271993 0.296585 0.042278 0.142310 -0.070213 -0.586717 0.369990 0.108247 0.058249 0.205271 -0.079260 -0.240571 0.073066 -0.159475 0.287583 -0.377898 -0.046081 -0.355596 -0.212756 -0.397429 0.300728 -0.236158 -0.237990 -0.052233 -0.035132 0.516633 -0.214479 -0.274875 0.582231 -0.081938 0.280271 -0.475095 0.478327 -0.326518 0.394289 -0.265623 0.034938 -0.111285 0.344996 -0.050609 0.035940 0.282172 -0.168453 0.243915 0.570567 0.183909 0.208945 0.184193 0.478294 -0.038524 0.079416 -0.146880 0.474077 -0.034292 -0.152768 0.156824 -0.295036 0.185324 -0.072700 0.088622 0.556755 0.542630 0.030172 0.350891 0.285839 0.259674 -0.257292 0.238383 -0.049233 0.276669 -0.271640 0.020166 -0.007276 0.036899 -0.254518 0.140938 -0.545597 -0.643549 -0.312345 -0.322243 -0.058829 -0.047584 -0.035764 0.000626 0.089334 -0.482174 -0.256415 0.311643 -0.287201 0.274256 0.084463 0.233117 0.370760 0.623735 -0.296828 -0.181973 0.030892 -0.084924 -0.188187 -0.080398 -0.323489 0.402817 -0.433785 0.226105 0.377248 -0.167178 -0.002097 0.153117 0.384930 -0.297281 0.627071 0.327486 -0.078370 0.462765 0.441011 0.873672 0.184121 -0.305310 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.053977 -0.404688 0.604871 0.600605 0.153343 0.227705 0.381231 -0.339970 0.828864 0.575452 -0.066302 -0.089715 -0.528364 0.192356 0.157135 0.529244 -0.362249 -0.462488 0.075969 -0.290378 -0.265385 -0.544925 0.177220 -0.228102 0.210642 -0.119868 -0.134388 -0.255940 -0.389977 -0.123516 0.510089 -0.265490 0.182614 0.199458 0.084117 -0.887278 0.430449 0.105366 -0.197182 -0.554288 -0.061608 -0.342302 0.280049 -0.129142 0.511412 0.185175 0.169180 0.649662 0.430592 0.265796 0.322119 -0.184626 -0.009109 1.000292 -0.561557 0.372053 0.124586 0.038879 -0.024110 0.354285 0.177627 0.035233 0.325243 0.496904 -0.159575 -0.235936 -0.172511 -0.338561 -0.548059 0.454398 0.127085 0.048746 -0.673242 -0.107569 0.039400 -0.216024 -2.019225 0.493987 0.886717 -0.580907 0.532311 0.379260 0.601451 0.005692 0.348442 -0.029987 0.606113 0.085059 -0.543334 0.055886 -0.552474 -0.331231 0.022143 -0.449130 -0.019489 -0.630375 0.073856 0.217229 -0.551668 0.341082 0.054474 0.303284 -0.350363 0.133296 0.391635 0.231245 -0.389078 -0.689891 -0.315845 0.016352 -0.117619 -0.144737 0.177406 -0.403580 -0.215576 -0.401899 -0.554303 -0.353687 0.057459 -0.473062 -0.304187 0.514490 -0.326696 0.089120 0.018406 -0.056737 -0.075271 0.545983 0.191988 0.409012 0.415503 -0.127282 -1.289952 0.555059 0.357851 0.572974 0.248921 0.412508 -0.140710 0.122505 -0.426101 0.137839 0.158853 0.304652 0.404859 -0.293615 -0.393634 -0.214811 0.384858 -0.316477 0.508719 -0.440096 0.258071 -0.273968 0.469246 0.576376 0.385541 0.482287 -0.737471 0.383156 -0.352090 0.319347 0.295040 0.510574 0.348041 -0.224111 -0.249716 0.001630 0.478838 -0.231403 0.233487 -0.426194 0.060421 -0.478346 -0.013348 -0.023267 0.149430 -0.402151 0.407201 0.146326 0.511192 -0.775483 0.211548 0.339042 0.109060 0.088496 0.002316 -0.643799 0.560422 0.009390 0.052502 0.053230 -0.102204 -0.272872 0.077015 -0.207859 0.150712 -0.155255 -0.180550 -0.343530 -0.493199 -0.340894 0.630559 -0.318879 -0.324873 0.114609 0.340183 0.521514 0.212458 -0.089114 0.486240 -0.498321 -0.025424 -0.347319 1.090696 -0.318109 -0.188698 -0.456569 -0.141498 -0.234265 0.652493 -0.004829 -0.092251 0.301625 -0.114589 0.243276 0.704685 0.183642 0.175762 0.305488 0.479047 0.001242 -0.072404 -0.080781 0.510937 -0.152195 0.094973 0.073676 -0.284370 0.415881 -0.041358 -0.034300 0.758146 0.488664 -0.069836 0.359559 0.176672 0.177978 -0.289872 0.303399 0.003439 0.392348 -0.299099 0.140778 -0.075118 -0.284725 -0.360241 0.230632 -0.511756 -0.429355 0.124197 -0.005219 -0.210693 0.176501 -0.010344 0.006419 0.139042 -0.583276 -0.208584 -0.058884 -0.307728 -0.511852 0.063873 0.158323 0.391750 0.629169 -0.207646 -0.260376 -0.038698 -0.221531 -0.242837 -0.184459 -0.152774 0.372824 -0.527367 0.251784 0.295296 -0.066043 -0.129341 -0.041224 0.775922 -0.259820 0.623215 0.350017 0.028939 0.352418 0.701109 1.119678 0.048590 -0.285260 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::~_List_base() = -0.004984 -0.904429 1.973330 1.618572 -0.209072 0.603763 0.201538 -1.396566 1.469698 0.501547 -0.244918 0.271430 -1.067414 0.488523 -0.486438 1.034986 -1.397893 -0.927786 -0.419509 -0.986434 -0.616738 -1.082559 0.569320 0.242105 0.653518 0.607510 -0.892435 0.057362 -0.824527 -1.459718 1.015086 -0.373701 0.759491 0.163555 0.145670 -2.880176 1.563232 1.051976 -0.440097 -1.318876 0.269490 -0.591721 -0.094475 -0.397289 -0.419265 0.342477 -0.139827 0.589168 0.843475 0.414687 0.511497 0.365398 0.415681 2.246290 -0.841372 1.004545 0.478362 0.034207 -0.241665 0.338974 0.404962 0.505059 0.731533 0.951502 -0.147094 -0.937893 -0.188662 -0.496795 -1.438538 1.224606 -0.246542 -0.444955 -1.103665 -0.441297 -0.880993 -0.230217 -1.279965 1.149148 1.976621 -1.090304 1.077059 0.285918 0.444680 -0.158553 0.544861 -0.135835 1.418942 0.476229 -0.596500 -0.062665 -0.412990 -0.491859 0.343206 -0.130050 -0.718884 -1.504347 0.683830 -1.398315 -1.429776 0.530249 0.524041 -0.135414 -1.051187 -0.380059 0.721473 0.430740 -0.662059 -1.349062 -0.396235 0.443008 0.133453 -0.517730 -0.080199 -0.128172 -0.287966 -0.281088 -1.502187 -0.308063 0.142186 -0.775262 -0.333811 1.037325 -0.385804 0.049778 -0.130334 0.325126 -0.350303 1.245689 -0.140022 0.971628 0.138788 0.510257 -0.830206 0.336291 0.572875 0.573629 -0.193921 0.010122 -0.401967 0.374198 -0.848717 0.218615 -0.448187 0.390508 1.270912 -0.317601 -0.975391 -0.401049 -0.309743 -1.869107 0.375935 -1.095324 -0.482810 0.537327 1.082156 0.856399 0.847438 1.416873 -1.361921 0.589311 -0.224683 0.044440 0.859065 0.160209 0.651455 -0.591819 -1.145166 0.686178 0.398248 0.285697 0.296982 -0.434298 -0.056363 -0.932422 -0.496079 0.740311 0.538624 -0.145191 0.897491 0.651755 1.566058 -1.216267 0.509991 0.746406 -0.174877 0.275945 -0.078403 -1.552108 0.715128 0.174357 0.388486 1.114045 -0.228577 -0.516806 0.356741 -0.309873 0.431736 -0.930374 0.262212 -0.918251 -0.234711 -1.025338 0.250578 -0.371639 -0.454090 -0.359981 -0.230122 1.447151 -1.226574 -0.977316 1.808060 -0.424934 0.698542 -1.523116 1.248035 -0.706695 0.943467 -0.463656 -0.180742 -0.053289 -0.067572 -0.564000 0.137628 0.649070 -0.297578 0.357565 1.691953 0.385616 0.097281 0.139195 1.064569 -0.233334 0.693308 -0.613830 1.421500 -0.072988 -0.400393 0.019972 -0.618543 0.131848 -0.657704 0.190657 1.259910 1.017487 0.373369 0.766657 0.678646 0.900468 -0.736137 1.079955 -0.015319 0.404223 -0.614416 -0.090118 0.264435 0.485462 -0.616298 0.716886 -1.389978 -1.702533 -1.591611 -1.173756 -0.344450 -0.251842 0.495608 -0.318109 -0.108835 -1.054209 -1.007943 1.235430 -0.589159 0.864291 0.653187 0.626581 0.900936 1.441795 -0.652783 -0.024064 -0.108316 0.085418 -0.222950 -0.319386 -0.865069 1.108697 -0.726092 0.412926 1.307515 -0.380715 0.395448 -0.111046 0.970715 -0.774407 1.647716 0.650404 -0.390340 1.039321 0.797140 1.450560 0.420479 -0.817781 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_clear() = 0.519774 -2.398489 6.529442 5.200102 -0.176310 1.755511 1.064042 -4.937431 4.192507 2.448623 -0.566055 0.869050 -2.914074 1.413298 -2.027777 3.535988 -3.716084 -2.467614 -1.834369 -3.613644 -1.591665 -2.929154 2.124557 0.334889 2.407592 1.090071 -2.955908 -0.296764 -2.458998 -6.106283 2.763316 -0.565456 2.214701 -0.975051 -0.051338 -8.323586 5.387294 4.058273 -1.469809 -3.789794 1.356490 -1.074305 -1.414928 -0.120233 -1.105258 1.074037 -1.058242 1.463794 2.221446 1.830095 2.460996 2.177118 2.082622 7.062833 -2.472768 3.218931 1.491302 0.428512 -0.535446 1.704315 1.095372 2.106650 1.820875 2.506990 0.565472 -3.047376 -0.477649 -0.778595 -4.204150 3.649490 -0.862975 -2.540281 -2.875166 -1.256502 -2.457379 -0.122968 -3.537207 3.087226 5.493398 -2.842200 2.980775 0.701672 0.378307 -0.911129 0.970092 -0.650081 3.883403 1.545539 -0.816680 -0.971691 -1.018511 -1.603745 1.334591 0.004534 -2.999803 -4.792579 2.711268 -3.866867 -4.235858 1.390041 2.058473 -1.375185 -3.151350 -1.359673 1.538837 1.018828 -1.404576 -3.672024 -1.497110 1.796070 0.567545 -1.734280 -0.689015 -0.584159 -0.719032 0.142521 -4.374652 -0.249582 0.251501 -1.760515 -1.811046 2.608579 -0.687467 -0.270208 -0.491876 1.410893 -1.178086 2.619987 -0.862324 3.538142 0.838130 2.420505 -2.505464 1.211551 2.066227 0.633401 -0.515322 0.464950 -1.578986 1.314474 -2.330218 1.860099 -1.866885 1.223550 4.199488 -0.898593 -2.762632 -0.991558 -0.578242 -5.165596 1.025958 -3.024077 -2.183908 0.752942 3.096909 2.067209 2.412458 3.901770 -4.303493 1.561092 -0.157424 0.066643 2.240697 -0.701158 1.500076 -1.616629 -3.987186 1.836355 1.458891 0.852162 0.431310 -0.348855 -0.309770 -2.619074 -1.510424 2.018676 0.980780 -0.944680 2.612354 2.411371 6.111370 -3.538671 1.421072 2.321915 -1.280289 0.791727 -0.366565 -4.806973 1.531185 0.647228 1.915315 4.474466 -0.494605 -1.260802 1.297259 -1.102237 0.863159 -2.520676 1.423189 -2.844515 -1.015318 -2.649627 0.092213 -0.705608 -1.136810 -0.959932 -0.764469 4.188333 -3.634743 -3.395259 5.815201 -1.714699 0.555732 -4.878070 4.520926 -1.839651 1.595858 -1.058322 -0.337800 -0.233312 0.158865 -2.591595 0.583960 1.663053 -1.258070 1.723305 6.027404 0.935839 -0.129231 -0.330644 2.990630 -1.503762 2.394869 -2.531986 4.821576 -0.288177 -1.767518 -0.699566 -1.643143 0.056291 -2.787615 0.357448 3.238331 2.377950 0.753950 1.472026 1.971356 3.342816 -2.085318 4.656109 0.362958 0.544818 -1.565848 -0.322995 1.442570 0.812791 -1.809999 2.738783 -4.109711 -4.194013 -4.650979 -4.197750 -0.360523 -1.124906 2.073474 -1.369358 -0.870973 -3.482883 -3.853500 4.090871 -1.527286 1.566039 2.552962 1.986179 2.273990 4.023544 -1.575806 1.407879 -1.280842 0.350276 -0.377948 -2.415017 -1.481854 3.462681 -1.431325 0.891297 3.734526 -0.672415 1.974132 -0.687922 1.919208 -2.327454 4.820600 1.559716 -0.572998 2.963621 2.182619 4.512253 0.357732 -2.259564 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node::_M_valptr() = -0.005098 -0.360728 0.768098 0.704297 -0.179250 0.226310 -0.042743 -0.498600 0.553014 0.073838 -0.059401 0.099478 -0.420923 0.228276 -0.010769 0.398884 -0.605355 -0.347442 -0.229702 -0.397353 -0.309800 -0.351962 0.152374 0.108822 0.252512 0.363344 -0.342664 0.071743 -0.318069 -0.304824 0.402080 -0.132721 0.325278 0.341639 0.182405 -1.097076 0.527944 0.375028 -0.175806 -0.532181 0.069185 -0.296825 0.092900 -0.279231 -0.143923 0.168914 -0.083591 0.137431 0.364455 0.114865 0.102663 0.111742 0.084115 0.757916 -0.298456 0.356542 0.189657 -0.050840 -0.116834 0.019713 0.161551 0.204341 0.289721 0.266440 -0.117842 -0.468075 -0.152081 -0.295213 -0.507850 0.464737 -0.050767 -0.153317 -0.477175 -0.330686 -0.320796 -0.187560 -0.725506 0.521947 0.717431 -0.545327 0.339640 0.110986 0.168899 0.031221 0.319789 -0.018882 0.568267 0.180286 -0.192979 0.174455 -0.106826 -0.244161 0.166651 -0.103525 -0.303860 -0.539538 0.257550 -0.496978 -0.545115 0.262899 0.255190 0.002390 -0.446524 -0.139286 0.215671 0.201715 -0.288462 -0.478108 -0.082504 0.174267 0.181512 -0.196827 -0.079245 -0.016212 -0.131025 -0.226298 -0.647761 -0.021470 0.071863 -0.232753 -0.038747 0.470734 -0.190500 -0.057587 -0.079217 0.089258 -0.223812 0.704229 -0.070099 0.353945 -0.037403 0.125342 -0.349608 0.127879 0.218768 0.352021 -0.095046 -0.070414 -0.184859 0.103104 -0.382290 0.038812 -0.058653 0.181702 0.511520 -0.116382 -0.414399 -0.186548 -0.251972 -0.775502 0.123366 -0.426183 -0.033012 0.352914 0.418371 0.499804 0.357872 0.602309 -0.474581 0.156475 -0.145362 -0.035148 0.412214 0.286208 0.285983 -0.255551 -0.363863 0.311148 0.057892 0.131458 0.228384 -0.168590 0.018721 -0.373327 -0.133136 0.356561 0.258664 -0.031198 0.402271 0.317151 0.441858 -0.376651 0.185339 0.278933 -0.086296 0.102974 0.000729 -0.526449 0.254665 0.080906 0.008030 0.365004 -0.134077 -0.135779 0.099533 -0.133379 0.223348 -0.353278 0.060125 -0.328824 -0.013913 -0.477640 0.164501 -0.212904 -0.175725 -0.147852 -0.133679 0.621476 -0.441347 -0.288520 0.652122 -0.102842 0.357303 -0.490494 0.400619 -0.286472 0.488353 -0.236734 -0.103512 -0.012893 -0.096803 -0.238519 0.058377 0.281794 -0.102128 -0.078460 0.584734 0.174264 -0.023329 0.043575 0.451411 -0.072889 0.383821 -0.214236 0.594582 -0.044319 -0.004321 0.083494 -0.228098 -0.022102 -0.252689 0.064898 0.565007 0.370518 0.295144 0.262679 0.214148 0.350115 -0.306813 0.316309 -0.008754 0.160724 -0.285081 -0.043702 0.139983 0.305857 -0.196859 0.124378 -0.540006 -0.687641 -0.579338 -0.319207 -0.147481 0.029794 0.095165 -0.089535 -0.109970 -0.285171 -0.392683 0.434202 -0.261890 0.432741 0.151220 0.206590 0.411430 0.608640 -0.299131 -0.100824 0.043185 -0.001719 0.001224 0.025654 -0.475039 0.532846 -0.280521 0.072134 0.616784 -0.200311 0.209600 0.031508 0.559475 -0.300169 0.652447 0.200034 -0.235907 0.448957 0.458938 0.520591 0.235808 -0.328854 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.351616 -1.075508 1.912380 1.659036 0.305984 0.788265 0.483425 -1.350759 1.814974 1.205004 -0.103514 0.376660 -1.206879 0.540920 -0.504145 1.220381 -1.068831 -1.244437 -0.288781 -1.074939 -0.874827 -1.225376 0.384812 -0.043965 0.620208 -0.233546 -0.952840 -0.155338 -1.472003 -1.572047 0.899134 -0.457618 0.674147 -0.615272 0.061759 -3.087803 1.529991 1.107659 -0.551355 -1.545767 0.226318 -0.888916 0.099049 -0.092267 0.168619 0.305499 0.013699 0.561328 0.993967 0.537045 0.998280 0.427532 0.155831 2.945548 -1.206307 1.299592 0.568391 0.134739 -0.357099 0.747392 0.426305 0.382976 0.953065 1.064199 -0.357098 -0.921042 -0.139067 -0.371116 -1.487269 1.265320 -0.008696 -0.597058 -1.081076 -0.342430 -0.822960 -0.532346 -1.784740 0.877430 2.246270 -1.162118 1.341934 0.500429 0.948630 0.084560 1.007544 -0.203424 1.796781 0.417565 -0.985928 -0.228764 -0.789231 -0.163834 0.129050 0.168479 -0.610311 -1.566899 0.710526 -0.900405 -1.697879 0.801102 0.374106 0.136420 -1.532337 -0.259693 1.037114 0.469121 -0.917327 -1.742569 -0.939912 0.602973 -0.179151 -0.663420 0.274491 -1.043262 -0.298959 -0.414786 -1.573666 -0.500837 0.345758 -0.955561 -1.116225 1.422282 -0.586683 0.136607 -0.117275 0.402237 -0.394472 1.044646 -0.116110 1.151097 0.215317 0.227795 -2.326376 0.384554 0.609176 0.683520 -0.108371 0.325595 -0.521296 0.422485 -0.992795 0.591629 -0.530744 0.846788 1.419752 -0.413886 -1.038002 -0.555364 0.469751 -1.574189 0.621441 -1.161593 -0.483093 -0.249959 1.309103 0.979329 0.949575 1.551303 -1.355943 1.044598 -0.361372 0.215862 1.051304 -0.080771 0.834245 -0.742987 -1.236059 0.511613 0.967780 0.088514 0.340668 -0.614824 -0.043319 -1.097497 -0.570998 0.311645 0.498251 -0.368727 1.149036 0.701644 2.293151 -2.061118 0.647973 0.748388 -0.221536 0.422413 -0.319245 -1.731765 0.650346 0.400609 0.251359 1.322984 -0.196323 -0.969582 0.312719 -0.245873 0.577534 -0.930717 0.299509 -1.096112 -0.560023 -0.852299 0.304430 -0.673105 -0.532193 -0.420134 -0.194915 1.637318 -0.896430 -1.283301 1.822664 -0.689768 0.407348 -1.935456 1.784985 -0.869492 0.580376 -0.877005 -0.027441 -0.350015 1.089350 -0.606873 0.457332 0.815523 -0.738190 0.860649 2.070675 0.430436 0.602250 0.183461 1.218332 -0.198497 0.282874 -0.701534 1.697711 -0.223169 -0.488895 -0.064758 -0.770910 0.531253 -0.425873 0.220258 1.022821 1.248076 -0.112263 0.602703 1.033741 0.863232 -0.825829 1.144131 -0.040681 0.660261 -0.693832 0.025942 0.073181 -0.001994 -0.609055 0.777321 -1.626602 -1.421050 -1.015832 -1.281019 -0.063195 0.311523 0.187839 -0.164085 0.033984 -1.643040 -0.911891 1.140346 -0.699036 0.625819 0.713458 0.802688 1.045412 1.659797 -0.628683 -0.204458 -0.397999 -0.389877 -0.498486 -0.724544 -0.587580 1.188565 -0.925526 0.782056 1.007764 -0.224706 0.312639 0.142325 0.965790 -0.803902 1.870092 0.855774 -0.156211 1.065372 1.150586 2.514405 -0.114639 -0.889306 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.049028 -0.328582 0.702546 0.590443 -0.016694 0.264812 0.018482 -0.545859 0.652846 0.147477 -0.065084 0.047589 -0.437869 0.207848 -0.322007 0.333681 -0.430100 -0.420302 -0.243609 -0.460563 -0.311875 -0.403205 0.127242 0.028913 0.226337 0.068628 -0.330538 0.097964 -0.575627 -0.322158 0.347942 -0.110018 0.175635 -0.069397 0.119034 -0.739097 0.520649 0.439289 -0.190555 -0.489328 0.072149 -0.383910 0.055223 -0.167780 0.056180 0.103237 -0.120159 0.127934 0.388773 0.084071 0.291158 0.187275 -0.074281 0.846994 -0.446860 0.425280 0.144540 0.090252 -0.092250 0.225618 0.112416 0.223647 0.231183 0.273581 -0.160345 -0.401427 -0.103032 -0.181622 -0.395102 0.481502 -0.126844 -0.236981 -0.415986 -0.259404 -0.441653 -0.192641 -0.824509 0.365449 0.699665 -0.499112 0.333747 0.124745 0.263149 0.060291 0.365894 -0.070595 0.630707 0.135926 -0.240502 0.052122 -0.236793 0.034353 0.068798 -0.073344 -0.315219 -0.522413 0.318114 -0.619523 -0.606764 0.213102 0.207230 -0.004476 -0.363928 0.032105 0.203172 0.093993 -0.299541 -0.539807 -0.090821 0.268292 0.157536 -0.168805 0.092657 -0.261504 -0.041171 -0.228831 -0.597970 -0.054046 0.061469 -0.242083 -0.238016 0.535488 -0.202801 -0.070854 -0.035185 0.111806 -0.183451 0.548967 -0.128816 0.372634 -0.169742 0.167626 -0.698261 0.181041 0.192668 0.213055 -0.130245 0.210430 -0.154643 0.082474 -0.412549 0.086535 -0.284359 0.140782 0.310581 -0.228675 -0.349145 -0.135066 -0.110714 -0.642528 0.118687 -0.361144 -0.263356 -0.013906 0.426220 0.634582 0.350093 0.648108 -0.391380 0.126274 -0.083005 -0.045411 0.412334 0.006630 0.301353 -0.265012 -0.428656 0.251665 0.115403 0.045499 0.194027 -0.130789 -0.038659 -0.444281 -0.017610 0.223483 0.222587 -0.076693 0.503545 0.340958 0.239262 -0.621165 0.268485 0.285207 -0.118398 0.153966 -0.088110 -0.544662 0.231250 0.161474 0.120560 0.376812 -0.090544 -0.110442 0.077882 -0.153171 0.315292 -0.391136 0.002953 -0.357489 -0.169512 -0.422212 0.231977 -0.192431 -0.162909 -0.123093 -0.243773 0.546156 -0.400438 -0.310404 0.685436 0.000106 0.260711 -0.452940 0.296169 -0.292526 0.483394 -0.138435 0.093888 -0.059202 0.183879 -0.244229 0.110968 0.265988 -0.230217 0.162518 0.588421 0.159995 0.126558 0.047589 0.476667 -0.187918 0.263813 -0.269192 0.579741 -0.023762 -0.222925 0.121776 -0.263048 -0.002631 -0.227165 0.126496 0.525799 0.421071 0.195411 0.221881 0.271009 0.367918 -0.261802 0.335045 -0.039357 0.079377 -0.282430 -0.038444 0.146188 0.101370 -0.191180 0.088087 -0.564457 -0.640580 -0.511520 -0.384353 0.080193 -0.180813 -0.020028 -0.059994 -0.080850 -0.409013 -0.415865 0.429139 -0.276631 0.361153 0.141836 0.251261 0.353860 0.633528 -0.317603 0.028305 0.017451 -0.026697 -0.057624 -0.138760 -0.365836 0.529379 -0.285029 0.117093 0.517782 -0.165368 0.209112 0.185922 0.281990 -0.307881 0.599867 0.226564 -0.139572 0.457864 0.473320 0.744991 0.217488 -0.311798 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::~deque() = 1.020281 -2.137489 5.285234 4.090734 -1.207896 1.545323 0.380925 -3.909147 3.590568 0.863375 -1.197912 0.433506 -2.592197 1.045117 -2.122983 2.401165 -4.192626 -2.030276 -1.391023 -2.603472 -1.482122 -2.505187 1.663199 0.667896 2.065614 2.151298 -1.699590 0.369263 -1.835553 -3.659666 2.512236 -0.737379 1.424186 0.736155 0.709319 -5.560744 3.997469 2.823553 -1.239423 -3.483617 0.853937 -0.973313 -1.288347 -0.619151 -0.965130 0.775848 -0.723092 2.890795 2.004017 1.287115 0.818545 0.741500 1.427812 5.345258 -1.559913 2.732965 1.464358 0.350803 -0.158403 1.348652 1.033941 1.525864 1.109929 2.291352 0.487732 -2.451719 -0.272936 -1.174217 -2.896281 3.459572 -0.852310 -1.527025 -2.510038 -1.416025 -2.313896 0.023462 -4.103920 3.358839 4.933391 -2.806542 2.413519 0.693885 0.665540 -0.877099 0.934338 -0.562702 3.288783 1.438390 -0.912627 -0.346433 -1.022872 -1.409409 1.284303 -1.548162 -2.268109 -4.992549 2.435726 -4.778059 -3.590635 1.197528 1.921855 -1.248691 -0.965346 -0.461659 1.483469 0.542597 -1.632113 -2.930006 -0.393574 1.378555 0.238036 -0.975643 -0.085399 0.622718 -0.298771 0.183393 -3.740932 -0.297886 0.301629 -1.579018 0.001361 2.486769 0.083079 -0.060450 -0.298800 0.870681 -0.641629 2.939833 -0.552238 2.651443 0.112113 2.479806 -0.454618 1.967207 1.764544 -0.094082 -0.373021 0.420566 -0.547824 1.376337 -2.185393 0.830370 -2.186622 0.591952 2.034601 -1.114389 -2.590903 -0.909138 -1.599434 -4.481234 0.597316 -2.646131 -2.536408 1.201230 2.762794 2.571106 1.963651 2.758721 -3.475183 0.633376 -0.310136 0.328718 1.706169 0.181909 1.534444 -1.469984 -2.800499 1.512119 0.572966 0.962020 0.479750 -0.924469 -0.355785 -2.593736 -0.860222 2.142422 1.609565 -0.686530 2.165538 2.329930 2.452556 -2.275108 1.001526 2.127945 -0.906374 0.355660 0.051524 -4.321988 1.642500 0.461988 2.183039 2.900308 -0.465082 -0.148969 1.072584 -1.074822 0.887156 -2.343963 0.261397 -2.450027 -0.558653 -2.515658 1.498816 -0.775061 -0.940252 -1.135425 -1.144250 3.585735 -3.953307 -1.895669 5.003850 -1.042250 1.683237 -2.925206 2.425302 -1.629455 2.388873 -0.057230 -0.109255 0.005330 -1.069954 -1.971479 0.099324 1.325054 -0.604283 1.218002 3.832111 0.902939 0.032392 0.167864 3.005831 -1.720307 2.037491 -2.122754 3.379237 -0.198630 -1.583091 -0.194032 -1.484002 -0.491620 -2.366825 0.898473 3.442915 1.853959 1.420517 2.026329 0.956747 2.561011 -1.827952 2.966581 0.047175 0.496867 -1.772826 -0.507186 1.264501 1.055275 -1.762748 1.947704 -3.942402 -4.556493 -5.150050 -2.718109 -0.868456 -2.371142 1.857251 -1.213254 -0.625381 -2.283491 -3.217163 3.482765 -1.339365 1.210113 2.233966 1.671568 2.155389 3.783494 -1.417872 0.973364 -0.334407 1.004282 -0.388093 -1.143680 -2.124632 2.951591 -1.498787 0.791219 3.976530 -0.864553 1.553946 -0.826596 2.198632 -2.487049 3.498985 1.610023 -1.259222 2.325173 2.162772 2.981919 1.692987 -2.178846 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.200099 -0.257827 0.369605 0.339224 0.108585 0.114140 0.250148 -0.149716 0.453760 0.315836 -0.014621 -0.044148 -0.393642 0.081980 0.131976 0.277090 -0.187645 -0.318739 0.043393 -0.176082 -0.111823 -0.322916 0.162558 -0.109022 0.143614 -0.092196 -0.114081 -0.174579 -0.333724 -0.119724 0.288126 -0.185562 0.203571 0.127894 -0.039703 -0.646967 0.237307 0.121363 -0.137087 -0.310868 0.060101 -0.249357 0.245205 -0.078414 0.183133 0.123049 0.125745 0.098322 0.291483 0.128160 0.264644 -0.147948 -0.032307 0.508355 -0.380490 0.199866 0.038194 -0.055346 -0.111109 0.117819 0.074065 -0.019968 0.268109 0.283526 -0.197044 -0.175453 -0.083406 -0.225752 -0.456146 0.228195 -0.023081 0.060678 -0.339195 -0.056731 -0.013294 -0.188983 -0.714534 0.197942 0.524601 -0.277208 0.374588 0.156710 0.270798 -0.006302 0.180996 0.041175 0.268912 0.016929 -0.292962 0.016984 -0.212616 -0.088226 -0.027658 0.064249 0.037870 -0.113680 0.094350 0.187973 -0.331264 0.165783 0.018010 0.175595 -0.404130 0.092798 0.160833 0.236636 -0.245291 -0.446020 -0.216028 0.005627 -0.015639 -0.076358 0.024149 -0.277788 -0.229425 -0.324755 -0.324988 -0.197472 -0.021000 -0.323547 -0.249646 0.315648 -0.292711 0.077529 0.052248 0.069385 -0.106537 0.381204 0.088460 0.225914 0.207610 -0.176380 -0.783989 0.005238 0.185767 0.522635 0.055403 0.105191 -0.158778 -0.013312 -0.255870 -0.004940 0.164646 0.207314 0.421380 -0.199243 -0.189029 -0.077559 0.189438 -0.365715 0.237545 -0.282232 0.280459 -0.018998 0.272489 0.243159 0.257751 0.578136 -0.375444 0.255824 -0.182882 -0.036783 0.247469 0.280261 0.260906 -0.153739 -0.164288 0.018839 0.262415 -0.060651 0.142861 -0.183142 0.013331 -0.328138 -0.057265 0.026609 0.076150 -0.161526 0.206631 0.096135 0.402277 -0.442470 0.137269 0.219859 0.082512 0.054644 0.022044 -0.369023 0.277105 0.034536 -0.155954 0.043137 -0.036424 -0.254536 0.054124 -0.160042 0.121241 -0.197321 0.005006 -0.207709 -0.114026 -0.254035 0.129442 -0.189177 -0.251453 0.053411 0.194534 0.332357 0.187861 -0.150266 0.213694 -0.120493 0.057801 -0.361115 0.620726 -0.231004 0.082099 -0.366598 -0.076878 -0.125827 0.396520 0.038103 -0.054055 0.157595 -0.057691 0.162399 0.462864 0.161191 0.081919 0.128645 0.323727 0.090893 0.035909 -0.013101 0.294041 -0.065948 0.030414 0.127960 -0.164556 0.201673 0.026374 -0.046538 0.410863 0.391832 -0.085917 0.250968 0.154809 0.181092 -0.146027 0.157040 0.026187 0.379229 -0.112644 0.046396 -0.035638 0.032092 -0.166722 0.127152 -0.320854 -0.369631 0.185892 -0.198461 -0.088451 0.218688 -0.021802 0.048503 0.131873 -0.361845 -0.079750 -0.011820 -0.183901 0.153536 -0.028817 0.096700 0.247923 0.368351 -0.182135 -0.246211 0.010664 -0.071446 -0.127717 -0.053408 -0.139368 0.203605 -0.362945 0.125268 0.154600 -0.100755 -0.093661 0.023121 0.429459 -0.199889 0.460426 0.190324 0.026144 0.396897 0.298568 0.640249 0.023390 -0.147667 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::begin() = 0.295726 -0.622543 1.810173 1.521337 -0.253843 0.482606 -0.038832 -1.327462 1.338487 0.663037 -0.192555 0.283166 -0.689816 0.567558 -0.462814 1.185311 -1.320204 -0.645736 -0.483245 -1.059625 -0.812173 -0.707763 0.309178 -0.072619 0.650915 0.376491 -0.735644 0.148127 -0.501900 -1.393332 0.572056 -0.308854 0.380276 -0.216328 0.369784 -2.143096 1.419259 0.806587 -0.505446 -1.115076 0.190093 -0.533395 -0.050498 -0.257847 -0.063629 0.294685 -0.189159 0.741880 0.844860 0.532176 0.533594 0.522610 0.522284 2.259556 -0.727697 0.919475 0.456667 0.052833 -0.184246 0.503327 0.353889 0.452015 0.408105 0.546479 0.132559 -1.046556 -0.328266 -0.339412 -0.731677 1.086446 -0.162444 -0.697033 -1.038739 -0.618393 -0.746892 -0.326799 -2.605801 1.099368 1.583218 -1.213506 0.631898 0.353540 0.421785 0.185815 0.678390 -0.146214 1.449543 0.438827 -0.441398 0.155699 0.007607 -0.449970 0.513632 -0.573642 -0.733318 -1.965155 0.618383 -1.338494 -1.273392 0.693631 0.669089 -0.138148 -0.576398 -0.442568 0.617010 0.157183 -0.671742 -1.060543 -0.190131 0.411297 0.221877 -0.429632 0.114396 -0.459184 0.016270 0.113817 -1.436561 0.019736 0.182093 -0.362110 -0.369816 1.033823 0.109219 -0.211799 -0.184403 0.293279 -0.378559 1.190652 -0.263474 1.117813 -0.318299 0.874545 -1.108619 0.969650 0.648401 -0.354345 -0.066544 0.332561 -0.425913 0.408322 -0.947582 0.550117 -0.624878 0.606370 0.906197 -0.228291 -0.969708 -0.414349 -0.397391 -1.310127 0.451770 -0.816601 -0.801420 0.069214 0.956483 1.047108 0.829962 0.589350 -1.058010 0.229473 -0.339457 0.295403 0.909466 0.017571 0.629579 -0.559296 -0.786837 0.543738 0.462117 0.159014 0.322090 -0.369508 0.120559 -0.791767 0.018782 0.607320 0.584223 -0.334194 0.945403 0.750762 1.448922 -0.934713 0.375464 0.696160 -0.348465 0.219006 -0.137192 -1.224670 0.492663 0.317539 0.580363 0.962653 -0.186728 -0.167678 0.218498 -0.272328 0.449091 -0.587933 -0.036372 -0.722080 -0.456412 -0.629339 0.655695 -0.497980 -0.213758 -0.318050 -0.438294 1.278548 -1.391847 -0.461737 1.722514 -0.673954 0.376925 -0.872416 1.380149 -0.628302 0.580932 -0.351517 -0.075681 -0.115043 0.180262 -0.778022 0.374079 0.602113 -0.328044 0.166371 1.353098 0.375544 0.241769 0.004040 1.040606 -0.543326 0.711504 -0.563260 1.425582 -0.229422 -0.180215 -0.134744 -0.460515 -0.117468 -0.644474 0.358307 0.974938 0.453984 0.367329 0.371634 0.521240 0.869718 -0.716023 1.077968 -0.160291 0.084295 -0.755679 -0.132123 0.410727 0.130324 -0.491731 0.421591 -1.315140 -0.993739 -1.726262 -0.347031 -0.190611 -0.080490 0.260857 -0.396476 -0.288668 -0.791271 -1.009740 1.459903 -0.521212 -0.338866 0.623219 0.485171 0.805887 1.351733 -0.274525 0.091673 -0.437459 -0.253412 0.033200 -0.369041 -0.686830 1.233396 -0.611063 0.232948 1.175542 -0.323287 0.465524 0.249184 0.684893 -0.651113 1.136741 0.445405 -0.240708 0.722960 1.386154 1.425592 0.151028 -0.734066 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::end() = 0.295726 -0.622543 1.810173 1.521337 -0.253843 0.482606 -0.038832 -1.327462 1.338487 0.663037 -0.192555 0.283166 -0.689816 0.567558 -0.462814 1.185311 -1.320204 -0.645736 -0.483245 -1.059625 -0.812173 -0.707763 0.309178 -0.072619 0.650915 0.376491 -0.735644 0.148127 -0.501900 -1.393332 0.572056 -0.308854 0.380276 -0.216328 0.369784 -2.143096 1.419259 0.806587 -0.505446 -1.115076 0.190093 -0.533395 -0.050498 -0.257847 -0.063629 0.294685 -0.189159 0.741880 0.844860 0.532176 0.533594 0.522610 0.522284 2.259556 -0.727697 0.919475 0.456667 0.052833 -0.184246 0.503327 0.353889 0.452015 0.408105 0.546479 0.132559 -1.046556 -0.328266 -0.339412 -0.731677 1.086446 -0.162444 -0.697033 -1.038739 -0.618393 -0.746892 -0.326799 -2.605801 1.099368 1.583218 -1.213506 0.631898 0.353540 0.421785 0.185815 0.678390 -0.146214 1.449543 0.438827 -0.441398 0.155699 0.007607 -0.449970 0.513632 -0.573642 -0.733318 -1.965155 0.618383 -1.338494 -1.273392 0.693631 0.669089 -0.138148 -0.576398 -0.442568 0.617010 0.157183 -0.671742 -1.060543 -0.190131 0.411297 0.221877 -0.429632 0.114396 -0.459184 0.016270 0.113817 -1.436561 0.019736 0.182093 -0.362110 -0.369816 1.033823 0.109219 -0.211799 -0.184403 0.293279 -0.378559 1.190652 -0.263474 1.117813 -0.318299 0.874545 -1.108619 0.969650 0.648401 -0.354345 -0.066544 0.332561 -0.425913 0.408322 -0.947582 0.550117 -0.624878 0.606370 0.906197 -0.228291 -0.969708 -0.414349 -0.397391 -1.310127 0.451770 -0.816601 -0.801420 0.069214 0.956483 1.047108 0.829962 0.589350 -1.058010 0.229473 -0.339457 0.295403 0.909466 0.017571 0.629579 -0.559296 -0.786837 0.543738 0.462117 0.159014 0.322090 -0.369508 0.120559 -0.791767 0.018782 0.607320 0.584223 -0.334194 0.945403 0.750762 1.448922 -0.934713 0.375464 0.696160 -0.348465 0.219006 -0.137192 -1.224670 0.492663 0.317539 0.580363 0.962653 -0.186728 -0.167678 0.218498 -0.272328 0.449091 -0.587933 -0.036372 -0.722080 -0.456412 -0.629339 0.655695 -0.497980 -0.213758 -0.318050 -0.438294 1.278548 -1.391847 -0.461737 1.722514 -0.673954 0.376925 -0.872416 1.380149 -0.628302 0.580932 -0.351517 -0.075681 -0.115043 0.180262 -0.778022 0.374079 0.602113 -0.328044 0.166371 1.353098 0.375544 0.241769 0.004040 1.040606 -0.543326 0.711504 -0.563260 1.425582 -0.229422 -0.180215 -0.134744 -0.460515 -0.117468 -0.644474 0.358307 0.974938 0.453984 0.367329 0.371634 0.521240 0.869718 -0.716023 1.077968 -0.160291 0.084295 -0.755679 -0.132123 0.410727 0.130324 -0.491731 0.421591 -1.315140 -0.993739 -1.726262 -0.347031 -0.190611 -0.080490 0.260857 -0.396476 -0.288668 -0.791271 -1.009740 1.459903 -0.521212 -0.338866 0.623219 0.485171 0.805887 1.351733 -0.274525 0.091673 -0.437459 -0.253412 0.033200 -0.369041 -0.686830 1.233396 -0.611063 0.232948 1.175542 -0.323287 0.465524 0.249184 0.684893 -0.651113 1.136741 0.445405 -0.240708 0.722960 1.386154 1.425592 0.151028 -0.734066 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::~_Deque_base() = 1.309507 -2.149234 6.116025 5.487561 -1.470730 1.728622 -1.281929 -4.492688 3.186482 1.951360 -0.882297 1.913236 -1.528692 1.735315 -0.724422 3.998520 -4.779347 -1.463268 -1.836240 -2.934002 -2.475600 -1.773501 0.678700 0.879680 2.084320 2.933233 -2.780922 1.399341 -0.429566 -6.387282 0.978687 -0.567154 1.766551 0.320757 1.693185 -7.448769 5.067144 3.309550 -1.285456 -3.984511 0.591429 -0.774440 -1.236054 -0.601348 -1.795195 1.509489 -0.866905 1.603009 1.861867 1.983443 0.849300 2.085346 3.155032 5.907698 -0.497798 3.105988 2.221741 -0.175802 -0.354986 0.535111 1.406143 1.764072 1.383354 1.535297 1.020650 -3.526115 -1.061304 -0.471073 -2.376618 3.340713 -0.585181 -2.928879 -2.911735 -2.583289 -2.331657 -0.423695 -5.128783 3.721730 4.818992 -3.410039 1.857158 0.938429 0.387466 0.251159 2.044159 -0.723706 4.505727 2.048391 -0.794391 0.784396 1.420481 -2.926370 2.328713 -1.180202 -3.231880 -5.654693 1.987632 -5.550156 -3.841165 2.418523 2.410588 -1.249370 -2.163403 -2.590333 2.136487 0.561076 -1.413911 -2.652189 -0.303454 1.512376 0.734806 -1.956225 -0.908108 0.269139 0.116150 2.125954 -4.725617 0.567545 1.194125 -0.742994 -0.093271 2.687539 1.310204 -0.576168 -1.262334 0.855206 -1.118087 3.600224 -0.974993 3.656215 -1.031187 3.392518 -0.391799 3.007912 1.777668 -2.937471 -0.777914 -0.442481 -0.982763 1.682560 -2.306805 2.372357 -2.537176 2.010036 3.847249 0.525206 -3.408385 -1.803008 -2.885384 -4.793890 0.952075 -2.683295 -2.932635 1.953368 2.996196 1.817681 2.246865 1.058510 -3.410004 0.313397 -0.694834 1.111642 2.537428 -0.197908 1.374667 -1.749808 -2.767024 2.819869 1.281823 1.130507 1.085943 -0.918943 0.515769 -1.542208 -0.937759 3.445040 1.799548 -0.091812 2.742198 2.381508 6.223211 -0.866054 0.677925 1.692066 -1.344955 0.625903 -0.524894 -3.832644 0.971365 0.716953 2.790011 4.342675 -0.726211 -0.260912 0.828663 -0.282813 0.920105 -1.976272 1.174568 -2.425155 0.004262 -1.774411 0.803541 -1.182873 -0.283731 -1.594373 -1.473791 4.458119 -5.584332 -2.156565 5.720604 -2.600590 1.714952 -3.251856 3.132153 -1.800745 2.422707 -0.619322 -0.813534 0.222797 -2.064923 -2.835794 1.244617 2.054255 -0.716122 -0.421275 3.776180 0.820657 -0.206343 -0.391733 2.470593 -1.717841 2.877737 -2.125678 4.657601 -0.481033 0.199843 -1.324144 -1.296933 -0.793594 -2.648210 0.610618 1.901390 0.713437 1.404394 0.539567 1.465477 2.601595 -2.649582 3.903486 -0.225529 -0.195884 -2.487811 -0.837706 1.354911 1.420749 -1.147783 1.685670 -4.059518 -2.796726 -7.302434 -1.601916 -1.667620 0.239569 2.060451 -1.567751 -1.551222 -1.519444 -3.704538 6.392061 -1.245153 0.020952 2.617766 1.788725 2.627316 3.731168 -0.216197 0.563497 -2.226918 -0.774886 0.240683 -0.864212 -2.165601 3.933700 -0.853226 0.645293 4.119267 -0.949023 2.257198 -0.013822 1.915679 -1.913628 3.453071 1.272276 -1.366254 1.568015 3.381576 2.626979 -0.356549 -2.623904 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.258482 -1.033440 2.606699 2.396413 -0.214751 0.766752 -0.052412 -1.875649 1.666954 1.418339 0.220529 0.700035 -0.930495 0.851096 0.174740 1.886851 -1.731970 -0.898589 -0.836474 -1.590103 -1.321000 -0.932405 0.450929 0.009371 0.832929 0.173654 -1.466862 0.015998 -0.583474 -2.553095 0.824407 -0.370783 1.113344 -0.555198 0.299726 -4.985046 2.111307 1.272542 -0.734423 -1.674442 0.354748 -0.532428 0.016993 -0.103145 -0.915625 0.404850 -0.380428 -0.157667 1.140033 0.800695 1.047470 1.045524 0.967005 3.675080 -0.930727 1.338542 0.693529 -0.292263 -0.625508 0.434252 0.582007 0.747060 1.077256 0.789444 0.242582 -1.617846 -0.306051 -0.388660 -1.761208 1.498999 -0.066230 -1.236504 -1.127014 -0.897784 -0.900789 -0.730035 -1.498210 1.359450 2.296989 -1.534795 1.054628 0.304766 0.259678 0.369465 1.080396 -0.164189 2.123929 0.646488 -0.529932 0.258987 0.601551 -0.775509 0.763628 0.426135 -1.043860 -2.269676 0.894463 -1.031271 -1.742871 1.291944 0.980838 -0.060135 -2.349265 -1.526328 1.026411 0.555511 -0.990146 -1.636085 -1.138560 0.742727 0.288830 -0.912509 -0.284552 -0.835117 -0.268359 0.138675 -2.020442 -0.006466 0.384042 -0.549561 -1.123415 1.471437 -0.264592 -0.273439 -0.370348 0.728241 -0.865870 1.533783 -0.517236 1.754304 -0.157270 0.847893 -1.680809 0.114393 0.752090 0.125891 0.056219 -0.544453 -1.050239 0.592717 -1.257693 1.204712 -0.252373 1.243928 2.492309 0.265404 -1.418194 -0.626789 -0.176295 -2.400788 0.504189 -1.421257 -0.531221 0.913954 1.401073 0.785746 1.155177 1.174340 -1.463697 1.052596 -0.564781 0.018530 1.444042 -0.140506 0.815752 -0.807278 -1.351590 0.798688 0.852824 0.614960 0.501579 -0.554962 0.105492 -0.804754 -0.800138 0.772156 0.740311 -0.256783 0.943750 1.034760 4.175432 -1.531949 0.538294 0.876422 -0.546529 0.436946 -0.399541 -1.722525 0.166339 0.517368 -0.071198 1.926921 -0.391115 -0.995578 0.324603 -0.274679 0.527144 -0.856780 0.634894 -1.080431 0.016006 -0.949768 -0.402913 -0.862894 -0.260882 -0.670809 -0.454942 2.108877 -2.070665 -1.459268 2.561327 -1.070490 0.456662 -2.284103 2.539485 -0.828121 0.841736 -1.321896 -0.484718 -0.306160 0.550001 -1.191433 0.969267 0.923292 -0.712968 0.024483 2.678678 0.479790 0.342142 -0.364309 1.405053 -0.219127 1.094280 -0.906234 2.533887 -0.399510 -0.009095 -0.515941 -0.684508 0.085419 -0.956122 0.339798 0.617344 0.832699 0.138225 0.177005 1.223898 1.231221 -1.052678 1.766349 0.025212 0.435435 -0.864030 -0.038201 0.548170 0.750487 -0.636250 0.806800 -1.778411 -1.150271 -2.246763 -1.051908 -0.463197 1.319390 0.427797 -0.548063 -0.487119 -1.257151 -1.270354 2.242737 -0.756088 0.522872 1.005974 0.866583 1.311281 1.985188 -0.372088 -0.134501 -0.953155 -0.754703 -0.017562 -0.618470 -0.873475 1.740929 -0.746334 0.513298 1.402392 -0.218559 0.850567 0.369348 1.038575 -0.843312 2.061792 0.618914 -0.112907 1.220524 1.599675 2.023449 -0.390039 -1.007958 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.784783 -1.266670 2.341424 1.991613 0.623057 1.050090 0.666355 -1.666348 2.270726 1.520779 -0.314630 0.317123 -1.519214 0.253192 -0.036932 1.321946 -1.196350 -1.581430 -0.140037 -1.130604 -0.587029 -1.794649 0.567417 0.125945 0.618299 0.041843 -1.131724 0.102168 -1.720993 -2.536583 1.273806 -0.531248 1.030159 -0.006970 -0.052067 -3.875248 2.209827 1.618845 -0.504629 -1.849354 0.251669 -0.893027 -0.132545 0.151846 0.438926 0.775491 0.119850 0.430976 1.009644 0.623222 1.319958 0.020289 0.203200 2.472579 -1.385862 1.544819 0.555020 -0.043179 -0.389363 0.782346 0.405807 0.435175 1.423591 1.765285 -0.811655 -0.902909 0.239102 -0.254738 -2.426932 1.463322 -0.055837 -0.705503 -1.130285 -0.283799 -0.637829 -0.378996 -0.688521 0.801771 2.803214 -0.764498 2.043717 0.604952 1.237509 -0.358279 1.065201 -0.371795 2.170449 0.495350 -1.476266 -0.589683 -1.357452 -0.819576 0.130639 0.869959 -0.588076 -0.274768 0.633792 -0.794327 -1.846675 0.633930 0.247357 0.096377 -2.594728 -0.068528 1.436496 0.635951 -0.537444 -2.175706 -1.223522 0.747820 -0.799567 -0.810794 -0.261207 -0.971389 -0.791842 -0.423758 -1.790982 -0.855760 0.376600 -1.270960 -1.443780 1.465089 -1.210447 0.228046 -0.159464 0.509875 -0.385607 0.802875 -0.157509 1.209697 1.098076 -0.373503 -2.550161 0.072221 0.512868 1.317119 -0.224919 -0.066944 -0.476832 0.363825 -1.142333 0.631932 -0.566657 0.931570 2.348724 -0.447189 -1.023157 -0.525775 0.559577 -2.163949 0.908237 -1.416819 -0.025196 -0.196621 1.568597 0.582198 1.090205 2.356217 -2.096893 1.540061 -0.386174 0.192322 1.079605 0.142421 0.902464 -0.873747 -1.525490 0.735433 1.205919 -0.015360 0.450406 -0.771601 -0.187550 -1.340344 -1.300403 0.832829 0.136539 0.054209 1.117221 0.656326 3.480896 -2.346908 0.799431 0.908631 0.027488 0.440080 -0.187908 -2.024923 0.902237 0.325161 0.575670 1.967719 -0.153623 -1.357602 0.083488 -0.036985 0.524178 -1.346690 0.839733 -1.398894 -0.094630 -0.910683 -0.310357 -0.742386 -0.952129 -0.421390 0.406632 1.843145 0.019560 -2.355476 2.134074 -1.229851 0.679230 -2.852710 1.592775 -1.157081 0.591415 -1.309912 -0.000983 -0.457386 0.785162 -0.494417 0.343582 0.831777 -0.719137 1.406416 2.530262 0.506386 0.503428 0.194717 1.082248 -0.003334 0.218767 -0.817848 1.856658 -0.096032 -0.332949 -0.148323 -0.953201 0.973717 -0.422516 -0.278011 0.948298 2.029446 -0.475367 0.769142 1.201655 0.861386 -0.950231 1.476470 0.302562 0.934471 -0.475403 -0.141990 0.072685 0.077619 -0.628295 1.126136 -1.838100 -1.831723 -0.384832 -2.493916 -0.348462 0.505230 0.598394 0.152736 0.331879 -2.032521 -0.818388 1.294006 -0.563122 1.883405 0.621162 1.032818 1.039006 1.727863 -0.853377 -0.483175 -0.568288 -0.336282 -1.017194 -0.959895 -0.630127 1.364317 -0.936694 1.088072 1.013850 -0.328893 0.179207 -0.516619 1.351790 -0.988092 2.355871 1.067446 -0.104430 1.315445 0.232968 2.940618 -0.324884 -1.019902 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.300323 -2.019034 3.212042 2.896484 0.556537 1.147165 1.548102 -2.078180 2.532947 1.708586 -0.178881 0.906332 -2.613682 1.071492 -1.604562 2.020980 -1.695222 -2.261344 -0.610135 -1.442468 -1.003460 -2.021192 1.465628 0.282002 1.611841 -0.374673 -1.684714 -1.181928 -3.216682 -2.194114 1.553037 -0.653859 1.467272 -0.912761 -0.559407 -4.556549 2.212905 2.278592 -0.918532 -2.611858 1.140814 -1.597075 -0.100939 -0.413973 -0.001439 0.256722 -0.068982 0.954373 1.708332 0.983645 1.581431 0.928902 0.588418 4.627365 -2.138949 2.209403 1.028108 0.560267 -0.576574 0.861386 0.681475 0.766340 1.559901 1.654927 -0.499058 -1.577996 -0.643362 -0.762265 -2.685426 2.014700 -0.381900 -0.339130 -2.060033 -0.102054 -1.472333 -0.484860 -1.813367 1.583871 3.710829 -1.993445 2.343128 0.445779 0.861689 -0.567769 1.007954 -0.179239 1.738708 0.709021 -1.047883 -1.034742 -1.777630 0.265443 -0.006799 0.359152 -1.171440 -2.893462 1.672939 -1.311344 -3.036513 0.816696 0.625302 -0.421336 -1.785812 0.079763 1.037438 1.206986 -1.606641 -2.945507 -1.408094 0.928524 0.456142 -1.271346 0.353640 -1.353326 -0.690801 -1.204334 -2.645893 -0.741228 0.269038 -1.980413 -1.580538 2.044986 -1.053158 0.630192 -0.032385 0.836377 -0.553670 1.746167 -0.060899 1.818523 1.050883 0.475218 -2.864451 0.212207 1.295811 2.043113 -0.773525 0.873416 -1.101866 0.646398 -1.194171 0.544439 -0.487058 1.135754 2.004368 -1.220141 -1.710431 -0.712922 0.859716 -2.688709 0.814252 -1.951789 -0.412674 -0.126433 2.093237 0.996211 1.530596 3.536710 -2.109998 1.534638 0.206794 -0.174229 1.765234 -0.118419 1.348222 -1.236914 -2.606428 1.034769 1.381075 0.287581 0.020230 -0.009506 -0.189024 -2.021737 -0.955554 0.236626 0.761143 -0.946350 2.008310 1.147909 2.655733 -2.952954 1.104436 1.320381 -0.598619 0.770059 -0.528849 -3.391111 1.313431 0.454157 0.190384 2.180907 -0.217435 -1.754736 1.340984 -0.775077 0.898949 -1.861157 0.840567 -2.033821 -1.074298 -1.955683 0.169984 -0.238409 -1.109275 -0.615632 -0.121838 2.824154 -1.280432 -1.904345 2.430694 -0.409650 0.399120 -3.601529 3.337974 -1.394972 0.897224 -0.900580 -0.086507 -0.138987 1.736634 -1.172687 0.020874 1.354776 -1.165535 1.762650 3.653557 0.663606 0.463706 0.321980 2.097317 -0.111035 0.860543 -1.250046 2.681538 -0.143362 -1.512300 0.183537 -1.238081 0.674926 -0.991711 0.287025 2.579869 2.129902 0.145859 1.496489 1.567404 2.170360 -1.328827 2.026302 -0.168976 1.477996 -0.989605 0.021581 0.130903 0.214928 -1.019946 1.955893 -2.763353 -3.295089 -1.297883 -2.882691 0.455259 -0.507379 0.825504 -0.656124 -0.089449 -3.142082 -1.936280 0.854224 -1.277570 1.567759 1.602738 1.314839 1.690558 2.542093 -1.380912 0.298674 -0.304282 0.380278 -0.503464 -1.363173 -0.729771 1.447524 -1.631556 1.111793 1.956881 -0.389069 0.746165 -0.389482 1.653768 -1.495832 3.533454 1.339688 -0.475663 2.382427 1.540406 3.638468 0.137354 -1.470839 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.167324 -0.479149 0.893879 0.731868 0.153618 0.397197 0.167767 -0.735139 0.990687 0.472086 -0.069041 0.078157 -0.629531 0.288335 -0.542699 0.524742 -0.472416 -0.645759 -0.228201 -0.606544 -0.447913 -0.655525 0.193689 -0.052541 0.277637 -0.215193 -0.458624 0.056725 -0.870370 -0.638254 0.434105 -0.216253 0.193349 -0.482857 0.044447 -1.102116 0.735767 0.562221 -0.283102 -0.683276 0.090839 -0.547534 0.088769 -0.091763 0.156172 0.089140 -0.085567 0.221889 0.566582 0.168952 0.588763 0.251654 -0.089662 1.428462 -0.734654 0.651842 0.183717 0.181298 -0.148353 0.463046 0.162905 0.256037 0.371780 0.504209 -0.221049 -0.443196 -0.090184 -0.155035 -0.599764 0.684165 -0.195771 -0.309722 -0.561109 -0.197677 -0.596773 -0.283654 -1.144560 0.396261 1.072532 -0.626482 0.564024 0.224792 0.491454 0.094078 0.527176 -0.123117 0.937651 0.162870 -0.488430 -0.073624 -0.347848 0.178411 0.020385 -0.013573 -0.325618 -0.784098 0.407442 -0.737506 -0.884573 0.335070 0.186976 0.077274 -0.573732 0.029250 0.421154 0.118674 -0.484996 -0.890296 -0.303854 0.361736 0.073677 -0.256167 0.274880 -0.609147 -0.041274 -0.266938 -0.775793 -0.250319 0.098315 -0.465521 -0.550486 0.772089 -0.284679 0.002174 -0.006121 0.187073 -0.179341 0.582236 -0.141913 0.587715 -0.180566 0.222456 -1.290292 0.254336 0.270634 0.205001 -0.102585 0.423438 -0.223564 0.143089 -0.573408 0.210213 -0.443293 0.268819 0.450336 -0.315930 -0.469334 -0.179322 0.122551 -0.795801 0.256445 -0.525975 -0.432598 -0.257786 0.631513 0.755375 0.490971 0.858325 -0.567569 0.332308 -0.136434 0.014575 0.566720 -0.192888 0.443017 -0.366830 -0.645171 0.263178 0.377728 -0.004499 0.203986 -0.272546 -0.077172 -0.617917 -0.050894 0.148312 0.292092 -0.180138 0.675284 0.380737 0.617847 -1.089916 0.423586 0.408483 -0.104211 0.256929 -0.217601 -0.840573 0.347651 0.250592 0.191608 0.515629 -0.095085 -0.314320 0.125790 -0.208076 0.442690 -0.538636 0.003734 -0.533245 -0.352443 -0.492012 0.293187 -0.275688 -0.239057 -0.142006 -0.245914 0.729418 -0.526830 -0.484690 0.970370 -0.096911 0.253376 -0.737983 0.651971 -0.423129 0.514550 -0.275140 0.163451 -0.155503 0.597780 -0.265734 0.206765 0.389037 -0.389152 0.457937 0.915961 0.214690 0.358580 0.115709 0.673252 -0.202275 0.157401 -0.356285 0.807871 -0.049729 -0.398114 0.112984 -0.411975 0.164699 -0.228424 0.205237 0.617048 0.663111 0.015703 0.324055 0.488136 0.472574 -0.355908 0.512333 -0.083905 0.195638 -0.384868 0.007149 0.099881 -0.040571 -0.322481 0.235122 -0.803561 -0.781121 -0.627826 -0.548485 0.129536 -0.161521 -0.046986 -0.079402 0.003372 -0.748895 -0.499042 0.612169 -0.399089 0.294438 0.253729 0.398482 0.478653 0.898311 -0.369816 0.004541 -0.111301 -0.156210 -0.209909 -0.327514 -0.339680 0.632886 -0.487389 0.317336 0.515156 -0.157733 0.169177 0.311949 0.233765 -0.414028 0.841552 0.413358 -0.033905 0.621520 0.644360 1.266720 0.145167 -0.428798 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.283062 -1.500417 2.856486 2.145194 0.114955 0.953928 1.011255 -1.681708 2.203032 1.332596 -0.637063 0.040497 -1.830501 0.257601 -0.860194 1.222267 -1.600602 -1.606136 -0.379251 -1.295519 -0.460150 -1.706460 0.944893 0.130260 1.077120 0.220939 -0.871428 -0.480685 -1.723225 -2.070379 1.611551 -0.492359 1.081844 -0.034708 -0.219369 -3.608680 2.024382 1.728966 -0.719473 -2.084776 0.617377 -0.597679 -0.529725 0.154087 -0.115226 0.541041 0.003400 1.311894 0.957858 0.794917 1.009617 -0.022033 0.545905 3.404208 -1.273822 1.631069 0.812838 0.272774 -0.187780 1.036102 0.553147 0.573378 0.985037 1.604450 -0.021292 -1.035883 0.109293 -0.617248 -2.248709 1.753678 -0.342556 -0.640203 -1.129809 -0.361297 -0.907284 -0.097692 -1.544928 1.337872 2.972480 -1.221648 2.015919 0.677327 0.799442 -0.568359 0.275893 -0.233977 1.450269 0.621180 -0.799057 -0.778278 -1.347478 -0.530541 0.200003 -0.059426 -0.997680 -1.971849 1.463400 -1.314428 -2.018979 0.618372 0.674124 -0.496800 -1.212398 0.130059 0.873325 0.723157 -0.891744 -1.946551 -1.071977 0.840197 -0.349573 -0.551625 0.026760 -0.306532 -0.552213 -0.399064 -1.926180 -0.513686 0.128594 -1.349598 -0.825567 1.471024 -0.720252 0.365463 0.092626 0.691197 -0.387832 1.211224 0.173780 1.449333 0.831163 0.532564 -1.743252 0.282752 1.021589 1.204557 -0.042630 0.185577 -0.396236 0.637230 -0.957126 0.550367 -0.781078 0.455420 1.724900 -0.907594 -1.147827 -0.695212 0.222396 -2.262841 0.514180 -1.600398 -0.612317 0.248110 1.605473 1.176352 1.074089 2.592240 -2.328454 1.148904 -0.298903 -0.050367 0.611158 0.068241 0.877717 -0.802423 -1.716839 0.406218 1.057447 0.401359 0.174512 -0.662210 -0.286045 -1.639204 -0.819037 0.707511 0.492656 -0.657578 1.112469 1.219869 2.130285 -2.243629 0.641597 1.144138 -0.450835 0.217266 0.072734 -2.726613 0.965336 0.314309 0.624760 1.674675 -0.129016 -0.742683 0.737073 -0.837444 0.257888 -1.385067 0.590335 -1.554201 -0.513299 -1.357070 0.396675 -0.749523 -0.839426 -0.462837 -0.047077 2.009633 -1.018323 -1.641677 2.242563 -0.428712 0.268805 -2.388824 2.146274 -0.986873 0.886016 -0.560503 -0.094051 -0.386340 0.657882 -0.678424 -0.233051 0.684987 -0.653999 1.541009 2.792474 0.594545 0.128432 0.287912 1.743302 -0.583344 0.565861 -1.244843 1.632567 -0.200883 -1.139544 -0.098714 -0.911231 0.448231 -0.907745 0.207938 1.742851 1.641127 -0.014321 1.208191 0.903953 1.302765 -0.849918 1.582683 0.269473 1.156870 -0.641608 -0.076370 0.263085 0.321840 -1.098842 1.409195 -2.272109 -2.525169 -1.444055 -2.309729 -0.313368 -0.770553 0.900088 -0.336470 0.118830 -2.148854 -1.520897 1.099981 -0.794428 1.187922 1.108199 1.013283 1.270686 2.053830 -1.033795 0.185348 -0.082877 0.451849 -0.717779 -1.131880 -0.704006 1.442004 -1.024954 0.763815 1.727722 -0.386577 0.538911 -0.535884 1.352559 -1.481686 2.547532 1.180468 -0.438626 1.496073 0.776503 2.732795 0.284316 -1.119075 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__deque_buf_size(unsigned long) = -0.437172 -0.830046 0.890723 0.498284 0.232919 0.467967 0.153130 0.114314 0.253118 0.786792 -0.712221 0.633781 -0.384825 -0.292051 0.539914 0.273521 -0.194882 -0.689765 0.598378 0.233060 0.203869 -0.477323 -0.406291 0.483260 0.194673 0.222339 -0.302758 -0.000851 -0.717554 -1.051809 -0.208081 -0.178305 0.411428 0.229645 0.458280 -0.521647 0.294487 0.554561 0.090137 -1.098392 0.014136 0.131542 0.006666 0.352840 0.383554 0.788529 0.663904 0.081030 -0.312196 0.256291 -0.208605 -0.547264 0.055765 0.121637 0.326691 0.539777 0.769262 -0.080173 0.253885 -0.103504 0.419483 -0.409346 0.498067 0.508194 -0.431707 -0.051916 -0.004449 0.119008 -0.394999 0.033264 0.360174 -0.206277 -0.250298 -0.386180 -0.073637 -0.015968 0.203476 0.200699 0.875934 0.109245 1.037620 0.649314 1.143405 -0.134882 0.430801 -0.212151 0.411823 0.324216 -0.710206 -0.092378 -0.692626 -0.814879 -0.234910 0.699690 -0.269402 0.821977 0.095406 -0.284400 -0.603406 0.480792 -0.075084 -0.016805 -0.649690 0.476722 0.665737 0.579570 0.016887 -0.495841 -0.513707 0.165286 -0.713664 -0.321117 -0.155584 -0.141927 -0.423774 0.246051 -0.357173 -0.231154 0.687877 -0.579545 -0.139192 0.412574 -0.377914 0.690620 -0.134374 -0.095813 0.015006 -0.010669 0.918185 0.288669 0.286034 -0.634697 -1.057089 0.178897 0.016252 0.239207 -0.275055 -0.234193 0.304464 0.193643 0.370367 0.201759 -0.445601 0.682248 0.976093 -0.053252 -0.402758 -0.899084 -0.022763 -0.242663 0.394042 -0.263884 0.266427 -0.045684 0.350944 -0.147581 -0.004604 0.791067 -0.858620 0.578832 -0.219643 0.438062 -0.227190 0.017966 0.054797 -0.370370 -0.243535 0.246868 0.933777 -0.080153 0.396039 -0.592012 0.270353 -0.151387 -0.610941 0.608816 0.131092 0.239343 0.535320 0.119799 0.803185 -0.274148 -0.429545 -0.159646 0.051799 -0.181867 0.025572 -0.795677 0.446467 0.027321 0.644802 0.776753 0.007051 -0.378655 0.320330 0.009289 -0.052306 -0.305112 0.831928 -0.701804 0.209764 0.057063 -0.081346 -0.639829 -0.202104 -0.285144 0.298003 0.808139 0.504372 -1.020951 0.052798 -0.287054 0.318968 -1.019880 0.033357 -0.236605 0.371698 -0.111879 0.052202 -0.219334 -0.045009 0.283132 -0.279184 0.324143 -0.083584 0.385932 0.245929 0.040900 -0.290521 0.484119 -0.000830 0.118046 -0.417716 -0.156243 0.022893 -0.126719 0.334707 -0.184784 -0.020827 0.585264 0.320661 -0.509081 -0.339136 0.287674 -0.379900 0.053175 0.308375 -0.309714 -0.490475 0.103466 0.070491 0.874835 -0.062480 -0.289730 -0.688230 0.276175 -0.070958 0.130797 -0.734438 -0.381823 0.025606 -1.144924 -0.725664 0.384017 0.286516 0.374219 0.139976 -0.594905 -0.092286 0.355541 0.122543 0.986864 0.130261 0.213112 0.646769 0.163714 -0.216239 -0.532223 -0.279273 -0.239342 -0.633144 -0.204917 -0.028421 0.086704 -0.352650 0.475567 0.344924 -0.206356 -0.147505 -0.292305 0.475485 -0.446986 0.914606 0.698487 -0.664551 -0.256533 -0.046484 0.938091 -0.953007 -0.549389 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.091115 -0.706025 1.452779 1.239501 0.190678 0.535548 0.497930 -1.093478 1.464415 0.729861 -0.009704 0.077879 -0.994467 0.433939 -0.479748 0.863011 -0.817450 -0.937793 -0.329482 -0.974625 -0.625850 -0.912137 0.397493 -0.141426 0.550336 -0.363312 -0.641635 -0.286855 -1.234086 -0.653493 0.875146 -0.314296 0.430106 -0.431176 0.019688 -2.091765 1.086000 0.752280 -0.466294 -1.038497 0.234548 -0.813884 0.170092 -0.208999 0.308638 0.114834 -0.111561 0.569513 0.904386 0.324362 0.760480 0.374448 -0.090157 2.308854 -1.179377 0.915235 0.262071 0.161097 -0.268748 0.714250 0.238274 0.366738 0.624913 0.687460 -0.275476 -0.790781 -0.170646 -0.416181 -1.028644 0.991258 -0.013789 -0.396849 -0.926982 -0.229457 -0.687046 -0.448351 -1.958191 0.798834 1.580970 -1.052492 0.882677 0.315687 0.660283 0.063573 0.728099 -0.118199 1.303457 0.209277 -0.632882 -0.177849 -0.883992 0.005890 0.083652 -0.240243 -0.443870 -1.404165 0.567508 -0.590449 -1.307068 0.497817 0.371532 0.065121 -0.950996 -0.020671 0.596601 0.294971 -0.730253 -1.319351 -0.590666 0.497117 0.032912 -0.405045 0.298992 -0.908543 -0.182251 -0.655700 -1.203521 -0.271645 0.112225 -0.625719 -0.884896 1.135122 -0.594401 -0.051774 0.002055 0.308310 -0.376538 0.894321 -0.196040 0.853175 0.217333 0.159033 -1.956836 0.402794 0.526244 0.819983 0.004069 0.533609 -0.495462 0.271758 -0.894591 0.363363 -0.230607 0.567377 0.728899 -0.527522 -0.717634 -0.271394 0.437867 -1.094832 0.497367 -0.803683 -0.321958 -0.309765 0.946665 1.113180 0.778191 1.205310 -0.971311 0.675996 -0.257656 0.109469 0.888807 0.041207 0.690666 -0.560227 -0.891769 0.247223 0.541680 0.003232 0.214788 -0.302529 -0.057251 -0.984020 -0.217690 -0.018857 0.382259 -0.430630 0.948052 0.644366 1.144674 -1.731292 0.580402 0.670512 -0.252042 0.328075 -0.204340 -1.273643 0.552794 0.348522 0.057200 0.829335 -0.165018 -0.608365 0.210051 -0.302721 0.523430 -0.653482 -0.042760 -0.789810 -0.670899 -0.753723 0.436775 -0.478937 -0.471455 -0.234463 -0.216245 1.171233 -0.540207 -0.761740 1.410884 -0.443530 0.203784 -1.268008 1.517103 -0.647464 0.332999 -0.611765 0.055267 -0.302430 1.055685 -0.574709 0.298569 0.557309 -0.601856 0.679375 1.631062 0.370252 0.477647 0.120362 1.051498 -0.251153 0.321980 -0.561434 1.333666 -0.211963 -0.483351 0.099602 -0.563046 0.313930 -0.376633 0.278497 1.118717 0.935145 0.130475 0.507739 0.744462 0.775539 -0.546808 0.853617 -0.101526 0.368925 -0.499957 0.047696 0.215034 -0.146775 -0.482465 0.493195 -1.242234 -1.194846 -0.600460 -0.806658 0.230600 -0.077087 -0.008123 -0.139168 -0.019789 -1.332733 -0.739911 0.403881 -0.597513 0.148759 0.456287 0.535984 0.747190 1.352767 -0.605985 0.004639 -0.084991 -0.163712 -0.250354 -0.606080 -0.527978 0.996866 -0.781003 0.483034 0.877224 -0.168089 0.267783 0.166151 0.789806 -0.641368 1.361682 0.541819 -0.093357 0.930410 1.115679 1.900879 0.199444 -0.614307 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013511 -0.255232 0.645800 0.574185 -0.028239 0.175866 -0.013195 -0.448239 0.501330 0.357843 -0.062842 0.087626 -0.293543 0.206544 -0.100625 0.478355 -0.390954 -0.254773 -0.178336 -0.365381 -0.286972 -0.278492 0.128738 -0.075598 0.230087 0.113810 -0.275647 0.070252 -0.218103 -0.599990 0.151113 -0.115414 0.154650 -0.059688 0.119238 -0.656001 0.506691 0.335884 -0.188688 -0.416740 0.066975 -0.178658 0.038486 -0.036564 0.042046 0.174692 -0.055607 0.107173 0.307449 0.232425 0.318151 0.137296 0.214916 0.702566 -0.267641 0.340909 0.160682 0.016351 -0.063148 0.155512 0.132518 0.164360 0.161878 0.214874 0.026482 -0.368463 -0.161942 -0.106130 -0.307358 0.381399 -0.144164 -0.263270 -0.395581 -0.286987 -0.199630 -0.138197 -1.054261 0.324747 0.589551 -0.420186 0.248207 0.163878 0.151606 0.068031 0.247257 -0.046835 0.477196 0.156194 -0.171552 0.118250 0.152660 -0.159496 0.172233 -0.063137 -0.272002 -0.513486 0.254444 -0.367070 -0.457023 0.282599 0.221009 0.003707 -0.284642 -0.099822 0.162510 0.103961 -0.243589 -0.406371 -0.077402 0.133537 0.161236 -0.158109 -0.005485 -0.203371 -0.055771 0.063028 -0.521505 -0.018986 0.045096 -0.185471 -0.169627 0.372246 0.031301 -0.059851 -0.062533 0.102870 -0.145220 0.486210 -0.057333 0.461005 -0.153603 0.288065 -0.572947 0.308403 0.254166 -0.138640 -0.036009 0.156128 -0.166783 0.087307 -0.335519 0.224704 -0.213820 0.216765 0.476540 -0.086818 -0.351302 -0.145225 -0.169178 -0.514775 0.182549 -0.313369 -0.167103 0.007711 0.346839 0.362739 0.311083 0.373055 -0.412237 0.037499 -0.143353 0.029414 0.322382 0.048428 0.233487 -0.197325 -0.298926 0.214153 0.241384 0.014223 0.194143 -0.141703 0.042681 -0.288049 0.064588 0.297111 0.175647 -0.149277 0.349656 0.257422 0.575194 -0.260646 0.135025 0.254775 -0.078850 0.085482 -0.059790 -0.454409 0.188404 0.098603 0.185366 0.298539 -0.063215 -0.036991 0.089546 -0.168912 0.182415 -0.242963 0.053043 -0.267983 -0.099375 -0.255725 0.217477 -0.170655 -0.095236 -0.027006 -0.063199 0.464151 -0.357629 -0.123302 0.553847 -0.173450 0.075035 -0.271748 0.519002 -0.229821 0.253660 -0.179918 -0.024890 -0.049419 0.116953 -0.196454 0.071232 0.226732 -0.089007 0.028685 0.495203 0.135291 0.023190 0.014631 0.380436 -0.169020 0.254870 -0.170031 0.518194 -0.056515 -0.001469 -0.008409 -0.176218 -0.030399 -0.225439 0.039802 0.351076 0.203467 0.046754 0.106033 0.137608 0.331690 -0.256806 0.407827 -0.000160 0.114166 -0.282821 -0.033003 0.134347 0.083072 -0.187969 0.112049 -0.446491 -0.306830 -0.483579 -0.121034 -0.110492 0.083070 0.079113 -0.117765 -0.095570 -0.217032 -0.373744 0.604448 -0.205369 -0.048714 0.137183 0.171179 0.300547 0.490151 -0.079784 -0.004674 -0.219631 -0.143651 0.008193 -0.113644 -0.178619 0.433090 -0.227915 0.027913 0.359499 -0.130989 0.158896 0.160777 0.228123 -0.237748 0.435776 0.162982 -0.013402 0.349966 0.499209 0.601537 -0.014739 -0.254027 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.183169 -0.441215 0.761435 0.644754 0.124056 0.274833 0.324887 -0.488080 0.837384 0.384352 -0.031014 0.021283 -0.668401 0.257735 -0.208041 0.440656 -0.518543 -0.604124 -0.098627 -0.418475 -0.346254 -0.626198 0.266309 -0.055193 0.262883 -0.133711 -0.365555 -0.133068 -0.708377 -0.295929 0.538362 -0.246752 0.285169 -0.096194 -0.001722 -1.294663 0.545541 0.325605 -0.245525 -0.598312 0.116926 -0.521393 0.219984 -0.222144 0.153582 0.087275 0.059069 0.352394 0.537358 0.125015 0.388204 0.028405 -0.123893 1.288507 -0.702724 0.472587 0.148184 0.057663 -0.153806 0.309849 0.132480 0.110736 0.405921 0.526416 -0.295276 -0.347390 -0.064951 -0.344618 -0.672019 0.611091 -0.024547 -0.016200 -0.596253 -0.094542 -0.401372 -0.261145 -1.015520 0.480396 1.001141 -0.598751 0.568702 0.199723 0.494521 0.055334 0.411226 -0.022033 0.746988 0.085633 -0.478388 -0.097451 -0.547428 0.005130 -0.037497 -0.073461 -0.086096 -0.678289 0.224117 -0.319312 -0.724121 0.261610 0.084303 0.142383 -0.581430 0.053839 0.417703 0.242011 -0.428141 -0.825937 -0.373525 0.204803 -0.052668 -0.164177 0.240817 -0.473573 -0.193722 -0.496605 -0.692212 -0.278064 0.021143 -0.478438 -0.442872 0.676030 -0.435432 0.083137 0.063303 0.129927 -0.180788 0.607906 -0.004286 0.407835 0.154489 -0.054342 -1.159055 0.122442 0.297765 0.677843 -0.010518 0.253515 -0.263280 0.100908 -0.551328 0.013650 -0.047295 0.308384 0.463990 -0.377847 -0.438159 -0.185215 0.250712 -0.713852 0.300933 -0.493779 -0.029310 -0.074990 0.556482 0.621133 0.463213 0.846449 -0.605949 0.461133 -0.194857 0.009601 0.477806 0.142212 0.425033 -0.314975 -0.490426 0.138713 0.318479 0.012711 0.144522 -0.287908 -0.041185 -0.588786 -0.174845 0.038758 0.271657 -0.185028 0.504775 0.290609 0.582448 -1.038143 0.357457 0.428813 0.004286 0.145024 -0.084167 -0.724571 0.446177 0.151221 -0.071448 0.324813 -0.088154 -0.451947 0.128465 -0.175238 0.334496 -0.426246 -0.084123 -0.420986 -0.317874 -0.516308 0.269856 -0.277585 -0.329162 -0.073910 -0.022306 0.668269 -0.234795 -0.441966 0.728211 -0.203710 0.266432 -0.775153 0.858203 -0.383408 0.315128 -0.400098 0.001578 -0.170893 0.578337 -0.164489 0.121022 0.313229 -0.274786 0.351746 0.864084 0.260907 0.314821 0.156360 0.612859 0.037360 0.101317 -0.217698 0.637613 -0.106470 -0.232773 0.145975 -0.342846 0.288495 -0.059834 0.147794 0.713138 0.674569 0.049839 0.480328 0.447355 0.411919 -0.303026 0.305801 -0.076180 0.390715 -0.297887 0.026237 -0.000195 -0.000221 -0.340654 0.269622 -0.683241 -0.805592 -0.280811 -0.498309 0.005968 -0.001035 -0.035022 -0.009884 0.105464 -0.759232 -0.282448 0.187950 -0.353585 0.276879 0.175723 0.232173 0.463147 0.801580 -0.409316 -0.177326 0.075346 -0.071385 -0.232900 -0.191529 -0.401455 0.506862 -0.585531 0.321671 0.464508 -0.194549 0.035457 0.094612 0.570150 -0.384418 0.863882 0.393122 -0.081797 0.562298 0.568539 1.122111 0.221510 -0.358348 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::~__new_allocator() = -0.208614 -0.199614 0.274331 0.255945 0.088193 0.100757 0.110493 -0.128089 0.328559 0.244798 -0.009739 -0.011797 -0.281680 0.067688 0.061472 0.206976 -0.108525 -0.238690 -0.007419 -0.138584 -0.103966 -0.239775 0.100112 -0.064779 0.085264 -0.051157 -0.123527 -0.040228 -0.267650 -0.193918 0.154420 -0.122099 0.148391 0.041352 -0.016001 -0.424158 0.193907 0.146809 -0.097549 -0.235050 0.034939 -0.173394 0.173556 -0.029553 0.090673 0.112325 0.062804 -0.071971 0.202203 0.087772 0.250341 -0.081070 -0.016731 0.323848 -0.252968 0.166550 0.037130 -0.031415 -0.083918 0.060597 0.058180 0.012499 0.194263 0.204337 -0.149474 -0.132973 -0.064300 -0.122841 -0.331927 0.177072 -0.090900 -0.008202 -0.221271 -0.096872 -0.050301 -0.147136 -0.418146 0.092143 0.385276 -0.183134 0.259743 0.109900 0.178409 0.018997 0.153641 0.017206 0.215226 0.027137 -0.205769 0.053756 -0.017211 -0.018948 -0.018270 0.164281 -0.015302 0.013226 0.105390 0.049527 -0.250351 0.139449 0.015727 0.132675 -0.346893 0.056522 0.097053 0.165435 -0.173432 -0.325507 -0.144385 0.032673 0.048269 -0.066275 -0.001232 -0.203704 -0.159887 -0.175364 -0.246444 -0.138609 -0.007855 -0.240035 -0.190087 0.240538 -0.189533 0.049476 0.024042 0.061874 -0.086408 0.300009 0.044380 0.195939 0.029452 -0.091500 -0.583810 -0.052690 0.112404 0.285072 -0.005632 0.061326 -0.109717 -0.033523 -0.183125 0.014619 0.041215 0.127025 0.373833 -0.114664 -0.144330 -0.057208 0.057254 -0.335507 0.133761 -0.214390 0.166383 0.013991 0.202107 0.179322 0.185925 0.493456 -0.248986 0.143776 -0.121117 -0.090383 0.187635 0.137083 0.182229 -0.114799 -0.155502 0.064751 0.194509 -0.028735 0.148371 -0.136676 -0.004065 -0.221500 -0.023504 0.103303 0.059897 -0.076893 0.166059 0.077293 0.318975 -0.278671 0.110621 0.148266 0.065133 0.057580 -0.015731 -0.265836 0.163823 0.037237 -0.097007 0.054612 -0.028896 -0.157833 0.037739 -0.132439 0.124728 -0.189282 0.058604 -0.159513 -0.005875 -0.202228 0.039383 -0.127873 -0.155261 0.043947 0.105032 0.250580 0.086287 -0.127388 0.174382 -0.001747 0.068137 -0.256325 0.340709 -0.164367 0.185976 -0.252665 -0.023729 -0.076525 0.245782 0.049297 -0.026746 0.125321 -0.046820 0.085415 0.319389 0.106891 0.040711 0.075403 0.232920 0.057537 0.048563 -0.017873 0.229063 -0.016373 0.016524 0.105040 -0.131188 0.113361 0.001134 -0.049288 0.239858 0.299891 -0.083361 0.146424 0.112655 0.142885 -0.109894 0.123898 0.038597 0.266684 -0.098426 0.023666 -0.017537 0.088815 -0.114081 0.050558 -0.226479 -0.256207 0.069650 -0.178159 -0.072724 0.183213 -0.028586 0.037464 0.073772 -0.197533 -0.083851 0.141650 -0.139978 0.249554 -0.046727 0.090776 0.186972 0.279356 -0.127202 -0.172656 -0.030866 -0.081440 -0.087385 -0.016032 -0.098058 0.164428 -0.234755 0.063329 0.101347 -0.088905 -0.033486 0.100895 0.221261 -0.145847 0.342013 0.140576 0.035670 0.323935 0.186422 0.471525 -0.003174 -0.115038 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, AdjListNode const&) = -0.128565 -1.533086 3.125399 2.610278 -0.239115 1.196507 0.291085 -2.379204 2.610965 0.382118 -0.113108 0.564048 -1.808947 0.964001 -1.301957 1.344256 -2.294360 -1.854615 -0.965411 -1.918741 -1.420205 -1.722361 0.570288 0.533061 0.978714 0.191278 -1.650796 0.053654 -2.370150 -1.145577 1.877618 -0.513673 1.097010 -0.517256 0.359003 -5.132453 2.293104 1.714292 -0.799770 -2.265125 0.419167 -1.660079 0.009847 -0.963043 -0.606029 0.051345 -0.476652 0.965079 1.603064 0.228816 0.704596 1.132141 -0.260416 4.760729 -1.870720 1.876154 0.838521 0.260164 -0.586727 0.880584 0.590975 0.935286 1.300759 1.319576 -0.611419 -1.749749 -0.179766 -0.923473 -2.062592 2.148186 0.047406 -0.805164 -1.628620 -0.632894 -2.145860 -0.810818 -1.625451 1.935072 3.222927 -2.215600 1.640796 0.314514 1.129331 0.245544 1.590583 -0.246220 2.913981 0.656548 -1.062423 -0.215940 -1.732491 0.062035 0.313669 -0.455851 -1.221635 -3.163243 1.201690 -2.660382 -2.687493 0.956805 0.887335 -0.177331 -1.923534 -0.625363 1.404757 0.525950 -1.412314 -2.436539 -0.972074 1.253732 0.147873 -0.939753 0.494566 -0.974621 -0.095789 -1.276966 -2.626598 -0.293127 0.491658 -1.037525 -1.094715 2.345211 -1.189816 -0.132257 -0.211453 0.599186 -0.844475 2.021397 -0.604130 1.356141 -0.111149 0.490313 -2.162814 0.334791 0.712548 1.631076 -0.444169 0.208396 -0.802304 0.732112 -1.653989 0.356596 -0.790004 0.841571 1.212041 -0.731618 -1.623869 -0.785766 0.016038 -2.890068 0.408513 -1.731162 -1.306347 0.571231 1.954531 2.288099 1.463587 2.342395 -1.657480 1.405113 -0.274613 0.051906 1.830739 -0.195134 1.249056 -1.183303 -2.040117 1.031238 0.379842 0.623032 0.406235 -0.635792 -0.195670 -1.792185 -0.958079 0.451431 1.168670 -0.130174 1.936434 1.424675 1.986864 -3.270971 1.167170 1.170887 -0.674872 0.684616 -0.472854 -2.496521 0.830625 0.740316 0.103553 2.158978 -0.468107 -1.265353 0.448813 -0.254810 1.155372 -1.582119 0.096537 -1.591894 -0.799253 -1.812047 0.450309 -0.911827 -0.676290 -1.116870 -1.271716 2.632691 -2.530518 -2.069441 3.251500 -0.446829 1.435161 -2.970025 1.791150 -1.252690 1.877950 -0.761682 0.072663 -0.268031 0.736850 -1.447808 0.929324 1.221834 -1.252392 0.840523 2.998666 0.699526 0.903401 0.103774 2.016216 -0.467133 1.048225 -1.364231 2.690708 -0.292790 -1.237484 0.182495 -1.163497 0.300278 -0.943794 0.901427 2.012146 1.862129 1.028412 1.168562 1.746968 1.498973 -1.232736 1.397576 -0.357963 0.379749 -1.088933 -0.087087 0.442683 0.542281 -0.828472 0.916738 -2.607296 -3.081047 -2.797103 -2.122357 0.342823 -0.595334 0.111468 -0.404356 -0.307477 -2.430442 -1.629349 1.375308 -1.190224 1.782089 1.283536 1.218233 1.678404 2.792366 -1.520967 0.049950 0.302160 0.025578 -0.407508 -0.702984 -1.882406 2.200865 -1.300934 1.038455 2.427685 -0.508713 0.951475 0.264691 1.512684 -1.293229 2.959456 1.155036 -0.951965 1.625189 1.789597 2.903565 0.958460 -1.471468 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(AdjListNode const&) = -0.224728 -3.181468 6.581616 5.622400 -0.046202 2.579138 0.841973 -5.316174 5.436855 1.312832 -0.011554 1.311969 -3.857892 2.127765 -3.212538 3.082833 -4.292360 -3.960081 -2.348993 -4.232618 -2.928438 -3.556606 1.559847 0.918203 2.303624 -0.191646 -3.714854 -0.190127 -5.516783 -3.132758 3.758966 -0.848737 2.337281 -1.858660 0.326789 -10.218277 4.955803 4.126961 -1.751850 -4.701394 1.195726 -3.362015 -0.382878 -1.566134 -1.046926 0.105430 -1.392263 1.344103 3.410648 0.719815 2.145164 2.966879 -0.386271 9.827113 -4.139267 4.156718 1.658849 0.834069 -1.248439 2.109288 1.194826 2.364100 2.741458 2.646265 -1.030097 -3.810852 -0.467305 -1.525004 -4.402802 4.555601 -0.199690 -2.072544 -3.257518 -1.197683 -4.503184 -1.542614 -2.730408 3.663237 6.602036 -4.389357 3.351569 0.480107 1.909405 0.198131 3.166238 -0.694184 5.799269 1.425101 -1.873094 -0.885919 -3.508483 0.489877 0.551073 -0.283317 -2.928719 -6.322756 2.937269 -5.395624 -5.760320 1.864245 2.019911 -0.676546 -4.351918 -1.181739 2.629253 1.051818 -2.829211 -5.144542 -2.229121 2.865871 0.690363 -2.218759 0.888755 -2.482113 -0.234171 -2.358408 -5.445379 -0.547693 0.910417 -2.189863 -2.913919 4.765340 -2.406384 -0.420688 -0.502147 1.530955 -1.856730 3.721119 -1.599007 3.255023 -0.020349 1.351989 -4.910132 0.389314 1.608003 3.182472 -1.136565 0.747735 -2.033331 1.502714 -3.414355 1.212834 -1.935547 1.754435 2.837084 -1.571567 -3.353084 -1.368810 0.455517 -5.961017 0.784285 -3.604386 -2.833425 0.656648 4.091448 4.426756 3.090643 5.298589 -3.376123 2.859479 -0.167821 -0.108526 3.953519 -1.054384 2.494045 -2.482717 -4.723075 2.229074 0.974187 1.203533 0.686316 -0.756427 -0.544163 -3.759927 -2.080329 0.772379 2.110545 -0.532600 4.103917 3.068147 4.426399 -6.953334 2.581951 2.502089 -1.712963 1.651745 -1.233425 -5.462248 1.476899 1.616218 0.419366 4.981314 -0.918473 -2.718414 1.163367 -0.662713 2.459269 -3.416209 0.643647 -3.571876 -1.701015 -3.799684 0.377398 -1.521550 -1.369306 -2.190777 -2.634959 5.507015 -4.947697 -4.580811 6.904150 -0.788397 2.331400 -6.581923 3.770817 -2.564277 3.510570 -1.517307 0.433992 -0.558148 2.079632 -3.375574 1.892318 2.575100 -2.968678 2.256005 6.780157 1.291804 1.741799 -0.109866 4.181242 -1.131888 2.337556 -3.134554 6.019909 -0.498881 -2.997604 0.190720 -2.462626 0.499401 -2.434060 1.713250 4.024812 3.843908 1.884394 2.089485 3.708256 3.616537 -2.578562 3.537397 -0.574957 0.593251 -2.129894 -0.156022 1.227210 0.873121 -1.742329 2.247880 -5.428458 -6.306664 -5.422394 -5.040707 1.275985 -1.372617 0.427346 -1.073347 -0.912216 -5.297200 -3.775571 2.801624 -2.485125 3.819663 2.903738 2.745543 3.321071 5.798827 -3.231746 0.783843 0.118048 0.072572 -0.724689 -2.198370 -3.333935 4.576600 -2.362664 2.060763 4.907818 -0.832493 2.329836 0.542060 2.654553 -2.672082 6.277817 2.267140 -1.563631 3.728735 3.484000 6.355041 1.630318 -3.007571 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.467730 -0.707009 0.589405 0.559708 0.219105 0.391004 0.360178 -0.072656 0.505367 0.687460 -0.110000 0.288522 -0.572448 -0.027475 0.260997 0.254137 -0.131501 -0.520293 0.152294 -0.114579 -0.206707 -0.482857 -0.242661 0.311707 0.103883 -0.401757 -0.187074 -0.159532 -0.743965 -0.156700 0.029418 -0.154792 0.325512 -0.358780 0.170711 -1.191575 0.308125 0.454800 -0.053580 -0.793461 -0.022644 -0.349747 0.300231 0.159104 -0.063753 0.089897 0.373287 0.208159 0.116998 0.202514 0.339576 -0.215263 0.132582 1.263088 -0.099393 0.570317 0.485640 -0.041265 -0.082127 0.105670 0.184885 -0.248238 0.426302 0.331012 -0.294930 -0.054003 -0.069025 -0.088425 -0.597052 0.122645 0.197393 -0.212494 -0.347845 -0.222178 -0.057196 -0.336215 -0.552406 0.208520 0.897827 -0.496074 0.824947 0.413562 0.581953 0.172969 0.537755 -0.007078 0.520380 0.091016 -0.550135 0.092971 -0.377848 -0.055215 -0.009750 0.090375 -0.195235 -0.337734 0.200405 0.272732 -0.705451 0.527204 -0.155814 0.130857 -0.465622 -0.049534 0.361014 0.422236 -0.469696 -0.725878 -0.578497 0.284587 -0.198789 -0.301321 0.035651 -0.308764 -0.139139 -0.436269 -0.492620 -0.219136 0.441581 -0.537768 -0.366681 0.628258 -0.488351 0.511644 -0.003874 -0.002111 0.032524 0.485792 0.457490 0.140370 0.076278 -0.499932 -1.072489 0.164570 0.036808 0.445938 0.025196 0.190895 0.174731 0.170774 0.098484 0.398608 0.150232 0.514942 0.405348 -0.042264 -0.306306 -0.521511 0.107997 -0.374403 0.289800 -0.412194 0.078451 0.091207 0.458665 0.270692 0.049973 0.714892 -0.424601 0.554351 -0.173829 -0.006218 0.105659 0.123597 0.308877 -0.318152 -0.403885 0.143460 0.682356 0.020436 0.213108 -0.342672 0.020628 -0.290123 -0.185715 -0.052493 0.174129 -0.075518 0.566576 0.205895 1.277631 -0.568166 0.059290 -0.051987 0.033640 0.119909 -0.202384 -0.661634 0.173571 0.107838 -0.253381 0.474160 -0.073008 -0.469620 0.230309 -0.157158 0.112339 -0.363706 0.391420 -0.376684 -0.184217 -0.220231 0.101723 -0.391031 -0.266605 -0.299267 0.150899 0.714700 -0.179716 -0.483677 0.141187 -0.104548 0.147061 -0.691460 1.184770 -0.305887 0.394768 -0.422473 -0.291994 -0.137178 0.565238 0.186064 0.139691 0.332875 -0.185583 0.204034 0.623708 0.105844 0.182280 0.341160 0.329583 0.061200 -0.199626 -0.196994 0.407035 -0.076634 0.001467 0.037583 -0.303856 0.527441 0.254156 -0.140444 0.229567 0.580859 -0.343591 0.107981 0.403656 -0.110698 -0.252952 0.188873 0.012168 0.688810 -0.329167 0.093202 -0.389723 0.078240 0.025011 0.173425 -0.644751 -0.281439 -0.045167 -0.338289 -0.210142 0.521651 -0.030000 0.181309 0.144666 -0.701327 -0.291200 0.389077 -0.295086 0.394825 0.184685 0.372769 0.605839 0.454143 0.049638 -0.373683 -0.015689 -0.262520 -0.397252 -0.057692 -0.024301 0.147159 -0.560535 0.490556 0.154916 0.077439 0.061277 0.050496 0.227876 -0.384535 0.744710 0.454656 -0.248992 0.232551 0.530054 0.953235 -0.548584 -0.382543 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.255702 -1.001026 1.718400 1.423581 0.066603 0.696708 0.279381 -1.053519 1.370667 0.788100 -0.282218 0.363585 -0.909569 0.321317 -0.533392 0.811118 -0.983196 -1.034428 -0.288254 -0.885241 -0.562329 -0.923978 0.074089 0.241658 0.495362 -0.147161 -0.714261 -0.029958 -1.314114 -1.121711 0.622213 -0.328207 0.530104 -0.476499 0.248200 -2.334530 1.233627 1.081020 -0.399262 -1.426439 0.169033 -0.759297 -0.032799 -0.100973 -0.097407 0.286878 0.023181 0.453844 0.614550 0.370585 0.590205 0.380556 0.182343 2.410705 -0.728193 1.096544 0.592474 0.083743 -0.130023 0.534166 0.373624 0.291007 0.688619 0.715842 -0.180706 -0.791538 -0.194482 -0.247444 -1.030162 0.960487 -0.062051 -0.568534 -0.807185 -0.372003 -1.008600 -0.403851 -1.420883 0.878835 1.802846 -1.037988 1.112656 0.483821 0.788729 0.113939 0.848491 -0.114703 1.497189 0.410152 -0.634974 -0.067460 -0.725715 -0.206719 0.138544 -0.105200 -0.719285 -1.358074 0.730120 -1.243788 -1.385670 0.705911 0.336291 -0.102032 -0.919283 -0.232454 0.710060 0.415144 -0.699762 -1.283720 -0.680653 0.659390 -0.020114 -0.541942 0.254179 -0.575255 -0.051248 -0.332095 -1.285419 -0.190208 0.421071 -0.661909 -0.648611 1.222463 -0.420822 0.110938 -0.130011 0.295979 -0.320048 0.943019 -0.056685 0.891115 -0.023311 0.157951 -1.744701 0.443355 0.416525 0.354612 -0.177118 0.321460 -0.201581 0.419876 -0.617523 0.510099 -0.535958 0.609384 0.897760 -0.348691 -0.803831 -0.668047 0.059428 -1.230034 0.294804 -0.881708 -0.633383 0.077380 1.070991 1.089452 0.696847 1.224043 -1.001784 0.686126 -0.244554 0.091115 0.721057 -0.246475 0.573218 -0.593450 -1.016643 0.490146 0.708760 0.268120 0.341378 -0.452111 -0.050121 -0.846160 -0.417837 0.422380 0.531255 -0.148778 1.167552 0.776765 1.342695 -1.560223 0.441131 0.495340 -0.347873 0.297527 -0.278443 -1.430527 0.480743 0.371314 0.289982 1.126537 -0.199952 -0.503561 0.310382 -0.253390 0.432562 -0.799850 0.263305 -0.926732 -0.412936 -0.730651 0.260409 -0.636098 -0.404091 -0.514947 -0.441267 1.396149 -1.018963 -1.051997 1.450534 -0.443858 0.391664 -1.509562 1.193327 -0.710858 0.826636 -0.431313 0.033273 -0.276316 0.638191 -0.571472 0.298281 0.695062 -0.721792 0.654289 1.507866 0.348947 0.343669 0.172199 1.015951 -0.368209 0.334131 -0.724610 1.268511 -0.172895 -0.457287 -0.059123 -0.603642 0.355846 -0.311821 0.290811 0.802138 0.865030 0.116387 0.445180 0.920210 0.620804 -0.636990 0.852756 -0.117126 0.490710 -0.639309 -0.033936 -0.000212 0.108578 -0.381257 0.462056 -1.448197 -1.224775 -1.368816 -0.980229 -0.011763 -0.135672 0.138670 -0.095697 -0.038318 -1.359599 -0.951029 0.939567 -0.551181 0.430733 0.650552 0.641707 0.933341 1.274243 -0.453991 -0.087899 -0.211972 -0.180677 -0.369867 -0.552526 -0.589303 1.002475 -0.768953 0.609793 1.051870 -0.219655 0.462936 0.321438 0.624696 -0.745443 1.560503 0.759795 -0.439646 0.726127 1.030987 1.744272 -0.115789 -0.808175 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.232985 -0.628971 1.013386 0.938813 0.092819 0.367871 0.519393 -0.588109 1.106774 0.513735 0.028446 -0.025105 -0.874117 0.263540 0.214875 0.609690 -0.689093 -0.746051 -0.044944 -0.568732 -0.393745 -0.767301 0.321503 -0.071979 0.355480 -0.126992 -0.383880 -0.397745 -0.787142 -0.107836 0.897137 -0.357278 0.536252 0.307332 0.012548 -2.102946 0.677856 0.331590 -0.312582 -0.826857 0.106457 -0.638313 0.405571 -0.324823 0.199826 0.156581 0.124561 0.487289 0.701674 0.200342 0.378822 -0.079220 -0.139669 1.626322 -0.891496 0.560532 0.158120 -0.095347 -0.272431 0.343483 0.209113 0.108563 0.676052 0.650469 -0.399308 -0.530298 -0.117039 -0.572560 -1.094428 0.682548 0.183304 0.025811 -0.803420 -0.121894 -0.253494 -0.435918 -1.408009 0.726226 1.294582 -0.811200 0.851222 0.290318 0.621789 0.000000 0.551989 0.019007 0.916352 0.100185 -0.645852 -0.019686 -0.863151 -0.293169 0.010023 -0.154381 -0.072916 -0.788531 0.220164 0.116062 -0.896995 0.409830 0.159339 0.282351 -1.009301 -0.041955 0.551718 0.456589 -0.597153 -1.071891 -0.597339 0.193480 -0.131701 -0.281149 0.097015 -0.544754 -0.394269 -0.856659 -0.881273 -0.382118 0.072463 -0.636228 -0.566607 0.848659 -0.754883 0.090000 0.045799 0.155900 -0.307582 0.860273 0.052701 0.484010 0.585881 -0.337656 -1.509070 0.072729 0.384214 1.349367 0.166866 0.096193 -0.389261 0.155416 -0.660718 0.061379 0.363782 0.504029 0.798621 -0.379141 -0.531759 -0.246408 0.491725 -0.921746 0.492678 -0.718102 0.385762 0.110334 0.719609 0.736028 0.601271 1.085664 -0.896338 0.773454 -0.381249 0.086148 0.651303 0.593913 0.580242 -0.413671 -0.516071 0.100910 0.430728 0.002396 0.234561 -0.423938 -0.005118 -0.752960 -0.390067 -0.056584 0.280074 -0.299678 0.560013 0.353066 1.040337 -1.331097 0.395402 0.504901 0.012900 0.188982 -0.003901 -0.939576 0.585170 0.138730 -0.349107 0.406369 -0.179335 -0.684632 0.119630 -0.216401 0.293674 -0.451496 -0.046557 -0.562088 -0.391000 -0.675078 0.281647 -0.484751 -0.534397 -0.128718 0.191205 0.930614 -0.001502 -0.601618 0.858520 -0.466682 0.291738 -1.096813 1.422509 -0.529879 0.156784 -0.810581 -0.223595 -0.289455 0.802489 -0.200028 0.087594 0.429696 -0.313827 0.365371 1.275461 0.339315 0.299185 0.233739 0.786878 0.145786 0.158427 -0.248291 0.916781 -0.204560 -0.055663 0.162606 -0.433867 0.478011 -0.087904 0.070343 1.006280 0.903060 0.075064 0.574040 0.556166 0.416820 -0.408551 0.434890 -0.016844 0.617517 -0.300629 0.115911 -0.004010 0.044630 -0.400767 0.397825 -0.878797 -1.041770 -0.001917 -0.574215 -0.116819 0.346717 -0.004222 0.035549 0.167759 -1.036489 -0.303706 -0.121120 -0.465856 0.325402 0.183652 0.329522 0.650872 1.009312 -0.543077 -0.409740 0.149572 -0.121958 -0.299199 -0.222859 -0.535084 0.649821 -0.768033 0.447090 0.630857 -0.156036 -0.025924 -0.098689 1.154800 -0.480126 1.178249 0.465153 -0.135752 0.764710 0.773225 1.404435 0.211470 -0.441616 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.122337 -0.278078 0.372902 0.354623 0.085652 0.090675 0.369748 -0.083475 0.526591 0.331738 -0.049573 -0.124659 -0.453186 0.063497 0.309801 0.300640 -0.258783 -0.333069 0.158359 -0.130767 -0.077634 -0.372623 0.182700 -0.161042 0.159429 -0.041670 -0.010858 -0.295687 -0.259342 0.089627 0.411715 -0.252190 0.216104 0.393040 -0.013059 -0.709647 0.201810 -0.014367 -0.140381 -0.337278 0.022976 -0.282050 0.345886 -0.155688 0.337287 0.154007 0.236247 0.387161 0.331941 0.153950 0.170684 -0.324188 -0.048094 0.526378 -0.429345 0.159224 0.022267 -0.100329 -0.091034 0.136958 0.084501 -0.103437 0.295414 0.346713 -0.240222 -0.152679 -0.109258 -0.355203 -0.505458 0.225287 0.092454 0.202745 -0.468808 -0.019344 0.124795 -0.201494 -1.209807 0.324379 0.592020 -0.350959 0.447831 0.233949 0.388853 -0.038146 0.176426 0.074943 0.269368 -0.009305 -0.391366 0.038882 -0.423994 -0.260032 -0.028635 -0.177130 0.149852 -0.201061 -0.005626 0.404807 -0.323515 0.174501 -0.015437 0.257478 -0.331864 0.168182 0.217087 0.290242 -0.278204 -0.488878 -0.216916 -0.093623 -0.120670 -0.039709 0.042308 -0.251385 -0.298397 -0.468274 -0.340534 -0.267246 -0.036421 -0.382158 -0.183765 0.328086 -0.357183 0.116937 0.083777 -0.000924 -0.079774 0.464562 0.195589 0.183682 0.430659 -0.300262 -0.884137 0.170924 0.248577 0.741779 0.171410 0.151923 -0.136862 -0.000372 -0.291455 -0.075930 0.348003 0.252464 0.383435 -0.270650 -0.202729 -0.103291 0.291827 -0.284700 0.368519 -0.305369 0.472280 -0.048924 0.290874 0.301258 0.286898 0.524540 -0.507134 0.313963 -0.284397 0.092998 0.229938 0.563904 0.307642 -0.155312 -0.062791 -0.062535 0.304330 -0.136922 0.149649 -0.273818 0.056458 -0.385984 -0.045878 -0.040668 0.078519 -0.249616 0.199743 0.061191 0.335016 -0.485463 0.116060 0.258245 0.153341 0.010050 0.112344 -0.394200 0.437224 -0.020470 -0.189104 -0.096677 -0.046560 -0.274080 0.037842 -0.171207 0.067712 -0.131277 -0.119948 -0.197722 -0.237414 -0.263607 0.336299 -0.250621 -0.345021 0.108670 0.362837 0.337161 0.389582 -0.048535 0.153803 -0.291498 0.046941 -0.300002 0.855986 -0.264956 -0.107502 -0.455025 -0.171642 -0.168273 0.461429 0.103272 -0.148034 0.160779 0.014318 0.161263 0.463803 0.200735 0.083145 0.235735 0.353022 0.139920 -0.027838 0.056931 0.247119 -0.117479 0.152709 0.158012 -0.165475 0.307766 0.101308 -0.076748 0.605256 0.425829 -0.071102 0.363060 0.104084 0.121674 -0.156322 0.102468 0.014438 0.479613 -0.120949 0.078039 -0.090984 -0.064712 -0.213405 0.156262 -0.337897 -0.410008 0.377427 -0.057335 -0.189662 0.249128 -0.013896 0.087942 0.215920 -0.426299 -0.009321 -0.250707 -0.196019 -0.106486 -0.073345 0.043225 0.274501 0.382844 -0.189416 -0.370292 0.094914 -0.060199 -0.170948 -0.011362 -0.172319 0.187175 -0.477633 0.162336 0.173198 -0.113404 -0.218123 -0.108482 0.713107 -0.214749 0.472986 0.220103 0.000327 0.373155 0.410143 0.704635 0.076736 -0.149086 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.171268 -1.504573 2.989187 2.775534 0.236238 1.032944 0.306072 -2.048674 1.894634 1.689905 -0.314692 1.018728 -1.531162 0.758759 -0.463544 2.003318 -1.693761 -1.499776 -0.667062 -1.296395 -0.902075 -1.347756 0.861766 0.325378 1.219412 0.368599 -1.569763 -0.070892 -1.738570 -3.258023 0.761743 -0.423055 1.298073 -0.339691 0.057601 -3.800240 2.441208 2.085639 -0.717368 -2.285221 0.705243 -0.757774 -0.489366 -0.018422 -0.399326 0.800961 -0.187234 0.145884 1.110412 1.118125 1.200333 0.883693 1.126440 2.983844 -0.945977 1.862043 1.079040 0.054184 -0.377162 0.475963 0.669705 0.804209 1.292361 1.252181 -0.097851 -1.607462 -0.429369 -0.236153 -2.116119 1.671148 -0.357322 -1.085801 -1.397050 -0.693323 -1.020874 -0.273766 -0.783848 1.280285 2.887762 -1.325055 1.694266 0.481864 0.462030 -0.326882 0.990335 -0.311121 1.880192 0.904885 -0.709262 -0.417798 -0.369495 -0.879780 0.512516 0.713503 -1.351575 -1.595126 1.235671 -1.703835 -2.269918 1.000659 0.831878 -0.477173 -2.076891 -0.575273 1.112892 0.836544 -0.791609 -1.970954 -0.878664 0.850763 0.148918 -1.210653 -0.471947 -0.679833 -0.573160 0.324549 -2.316310 -0.269804 0.491056 -1.139100 -1.030462 1.498580 -0.336471 0.133730 -0.450506 0.696581 -0.611197 1.375416 -0.303516 1.868262 0.522781 0.711761 -1.644336 0.448316 0.966295 0.105348 -0.636531 0.028072 -0.824961 0.625493 -1.067882 1.095017 -0.920609 1.187203 2.458951 -0.268477 -1.603083 -0.803622 -0.249628 -2.521684 0.632369 -1.613701 -0.663417 0.440949 1.752915 0.438990 1.292021 2.260418 -1.866796 0.936423 -0.093758 0.110474 1.419066 -0.321300 0.892057 -1.013142 -1.906074 1.293072 1.229851 0.321384 0.431605 -0.241892 0.044873 -1.278612 -1.066283 1.172793 0.495560 -0.238711 1.474050 1.033792 3.455453 -1.407442 0.617905 1.004096 -0.495070 0.499161 -0.393981 -2.483662 0.633767 0.360384 0.901392 2.429575 -0.209522 -1.140966 0.663950 -0.283453 0.546720 -1.397859 1.178118 -1.607979 0.021260 -1.153689 -0.347255 -0.449619 -0.688824 -0.627323 -0.156399 2.458420 -1.348360 -1.957362 2.421057 -0.955380 0.489936 -2.895765 2.035947 -1.177146 1.040172 -0.768356 -0.220617 -0.107642 0.217523 -1.226515 0.352183 1.133851 -0.748776 0.890093 2.661802 0.503223 0.037397 -0.093140 1.344385 -0.353425 1.074216 -1.098461 2.416616 -0.165421 -0.434493 -0.414583 -0.889371 0.241131 -1.114162 -0.110338 1.064585 1.247663 0.025664 0.616051 1.087185 1.635854 -1.347254 2.078474 0.143530 0.817846 -0.894015 -0.271478 0.380099 0.501357 -0.637972 1.422122 -2.220632 -1.969912 -1.923087 -2.257081 -0.340801 0.365081 1.040206 -0.542569 -0.342299 -1.787921 -1.711090 2.126224 -0.746511 1.527493 1.320631 1.134948 1.367533 1.936947 -0.642407 0.108738 -1.091312 -0.209388 -0.375103 -1.043742 -0.658209 1.661472 -0.715054 0.702289 1.688161 -0.366249 0.880323 -0.351373 1.051821 -1.111550 2.558176 0.954635 -0.382381 1.538820 0.994515 2.431199 -0.553212 -1.323880 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.196272 -0.342203 0.478266 0.462276 0.131260 0.165627 0.344235 -0.214914 0.606288 0.437369 0.000000 -0.056970 -0.495366 0.118144 0.224941 0.379075 -0.270651 -0.400874 0.065264 -0.232171 -0.169512 -0.433043 0.192635 -0.137649 0.175670 -0.129761 -0.144171 -0.255794 -0.382997 -0.120230 0.417709 -0.236013 0.269258 0.186683 -0.029654 -0.965432 0.318118 0.121079 -0.171210 -0.423319 0.042843 -0.312697 0.304723 -0.105246 0.242022 0.144636 0.158630 0.233932 0.374643 0.170867 0.304983 -0.179313 -0.029761 0.757048 -0.488716 0.270251 0.060516 -0.069132 -0.132617 0.183869 0.111202 -0.013856 0.363717 0.389042 -0.228871 -0.218342 -0.097952 -0.301675 -0.604383 0.317800 0.047998 0.075320 -0.464668 -0.057817 0.011015 -0.242500 -1.024698 0.315406 0.703009 -0.391401 0.493312 0.222291 0.382072 -0.007646 0.261093 0.034441 0.407734 0.027949 -0.407380 0.019003 -0.354544 -0.187686 -0.019668 -0.021778 0.049585 -0.261667 0.082514 0.290894 -0.436363 0.242953 0.023121 0.241964 -0.536619 0.062711 0.270677 0.293064 -0.326449 -0.594049 -0.332490 0.015995 -0.076957 -0.119965 0.046154 -0.353337 -0.281187 -0.433208 -0.427434 -0.279111 0.003500 -0.416720 -0.329727 0.419597 -0.388642 0.102621 0.055195 0.061285 -0.128372 0.470803 0.121437 0.293338 0.353577 -0.237854 -1.013897 0.074625 0.243943 0.702233 0.138508 0.128223 -0.200056 0.029108 -0.337071 0.037427 0.257543 0.294062 0.526503 -0.224966 -0.263344 -0.123504 0.316218 -0.432404 0.344099 -0.380952 0.367847 -0.030975 0.368078 0.323466 0.326032 0.638477 -0.529131 0.392400 -0.262854 0.042894 0.308730 0.403151 0.325131 -0.198415 -0.215166 0.003674 0.357799 -0.086247 0.169688 -0.277384 0.020316 -0.401526 -0.124756 -0.017260 0.104753 -0.231731 0.262565 0.119136 0.610952 -0.633276 0.183974 0.278207 0.100212 0.078043 0.017708 -0.496329 0.375449 0.036129 -0.198375 0.078845 -0.071107 -0.359301 0.064474 -0.177745 0.133249 -0.215299 -0.021381 -0.278163 -0.207228 -0.321924 0.205117 -0.264291 -0.324326 0.051750 0.280359 0.448023 0.224122 -0.209288 0.325165 -0.268827 0.056708 -0.489214 0.897311 -0.288433 -0.002678 -0.507258 -0.143438 -0.184285 0.545944 0.028289 -0.045630 0.218962 -0.095321 0.207483 0.644049 0.192983 0.133420 0.182682 0.410552 0.129594 0.005691 -0.039748 0.419059 -0.108853 0.070075 0.116508 -0.224244 0.319777 0.027044 -0.050087 0.543294 0.500243 -0.106621 0.316725 0.224526 0.193346 -0.201508 0.218774 0.027246 0.460807 -0.156832 0.088968 -0.061866 -0.022380 -0.237644 0.199733 -0.420470 -0.448932 0.225545 -0.208110 -0.145135 0.316574 -0.012868 0.055734 0.165236 -0.511195 -0.098541 -0.070312 -0.245489 0.049569 0.001879 0.136108 0.333744 0.498102 -0.221581 -0.314215 0.009671 -0.128374 -0.192183 -0.097247 -0.173708 0.271208 -0.468485 0.213249 0.204019 -0.089785 -0.120959 -0.024280 0.628247 -0.245299 0.598982 0.263024 0.031423 0.448332 0.428000 0.844406 0.017861 -0.202502 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::push_back(int const&) = 2.598248 -3.759290 10.314078 9.348312 -1.169308 3.040957 -0.262357 -8.142395 6.025679 4.080736 -0.850307 2.884385 -3.709032 3.421018 -3.497737 6.898016 -6.850115 -3.323196 -3.776578 -5.663336 -4.089128 -3.373477 2.297611 0.731696 4.269431 2.244941 -4.956825 0.459613 -3.538864 -9.624269 2.317061 -0.609361 2.759143 -1.983567 1.477425 -11.155908 8.259713 6.422503 -2.569406 -6.649550 1.973473 -2.174174 -2.435801 -0.608486 -1.595902 1.634995 -2.290990 2.940485 3.810939 3.411575 3.041977 4.838455 4.407131 11.679007 -2.830499 5.851430 3.337078 1.039147 -0.661227 2.349274 2.107514 3.796310 2.248671 2.504179 1.815278 -6.117446 -2.089437 -0.664423 -4.108872 6.008728 -1.152540 -4.886753 -5.157143 -3.336336 -4.319641 -0.617650 -9.554778 5.848639 8.225704 -6.088948 3.175752 1.286073 0.370840 -0.160092 3.179167 -1.362439 6.938648 3.084659 -0.766732 -0.273705 0.160852 -2.685912 3.134105 -2.125222 -5.871193 -10.818214 4.461126 -8.193840 -7.336633 3.444914 4.177082 -2.679610 -3.116251 -2.984701 2.714751 0.897772 -2.859756 -5.270522 -1.260585 3.308277 2.122866 -3.553529 -0.517741 -1.473475 0.348263 2.053893 -7.964784 0.923932 1.442449 -1.693159 -1.996824 4.903840 1.350109 -1.102032 -1.651363 1.902071 -2.034425 5.185637 -2.103801 6.636846 -0.786961 5.862021 -3.144228 4.905717 3.598855 -3.247774 -1.449069 1.527066 -2.543809 2.803059 -4.041568 4.372163 -4.234402 3.153832 5.244933 -0.595637 -5.479548 -2.394276 -2.511339 -7.197981 1.658629 -4.467934 -5.232546 0.876949 5.257000 3.871474 4.054915 3.319731 -5.534491 0.910436 -0.133579 1.425504 4.699995 -1.458710 2.476496 -3.052448 -5.988138 4.067277 2.432014 1.393328 0.959976 -0.090753 0.294537 -3.561573 -1.094749 3.688363 2.592943 -1.675579 5.461007 4.522025 8.956886 -3.708939 2.048644 3.339826 -3.129877 1.637440 -1.502108 -7.519924 1.670108 1.625463 4.276651 7.636399 -1.082594 -0.970108 2.238597 -1.249588 2.038018 -3.592650 1.822429 -4.661049 -1.872688 -3.684945 1.610649 -1.158990 -0.818829 -2.299301 -2.671586 7.551516 -8.400843 -3.728689 9.661722 -3.534960 1.026799 -6.198116 6.823143 -3.006162 2.656245 -0.682152 -0.444029 0.119247 -0.278578 -5.694680 1.869896 3.518167 -2.473981 1.290421 8.106557 1.297318 0.102461 -0.853633 4.882868 -3.311884 4.667308 -4.451397 8.687483 -0.777446 -1.798877 -1.817011 -2.506034 -1.137012 -5.073332 1.397421 4.569376 1.735010 2.272123 1.036792 2.872720 5.721179 -4.187715 7.451904 -0.478475 -0.500747 -3.922827 -0.878976 2.682198 0.762857 -2.312350 3.719977 -7.231766 -5.371225 -10.339905 -3.852427 -0.261698 -1.322057 3.098460 -3.027804 -2.845875 -4.586325 -7.130173 8.350812 -2.690642 -0.773594 5.007797 3.349506 4.179771 6.847305 -1.287505 2.790139 -3.491235 -0.642590 0.549827 -3.431184 -2.539719 6.545953 -1.624823 1.200895 6.845636 -1.023873 4.370008 -0.055777 2.640650 -3.440594 6.622282 2.158822 -1.511411 3.733637 6.226611 6.431493 -0.318754 -4.273783 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.924743 -4.717575 11.712567 10.273513 -2.034640 3.698273 -0.470562 -8.713605 6.878469 3.320200 -1.466654 3.095777 -4.293137 3.504315 -4.399728 6.673284 -8.197273 -3.943390 -4.047803 -6.239055 -4.408420 -3.956190 1.550649 1.759162 4.423958 2.976860 -5.105001 0.899005 -4.463963 -8.967118 2.971364 -0.815727 2.890455 -1.760187 2.432992 -12.688348 8.890275 7.161396 -2.636988 -7.941105 1.752003 -3.040163 -2.458319 -1.436816 -2.127158 1.578377 -2.184403 4.366848 3.937201 3.071348 2.049492 4.948108 4.244028 13.784891 -2.913186 6.579907 4.136490 1.179820 -0.372538 2.495706 2.357390 3.819651 2.326145 2.662418 1.651092 -6.615175 -2.240308 -1.132178 -4.139806 6.579119 -0.952115 -5.065257 -5.843232 -3.861465 -6.021115 -0.878185 -11.563838 7.236836 9.515280 -7.446019 3.921505 1.723519 1.240596 0.348649 4.067262 -1.295376 8.268590 3.454212 -1.204828 0.219496 -1.077521 -2.801151 3.332590 -3.745254 -6.684828 -13.054956 5.019882 -10.618611 -8.350185 4.004280 4.340435 -3.029781 -2.377079 -3.299705 3.094183 1.031657 -3.591622 -5.933782 -1.199521 4.024264 2.277668 -3.745142 0.257336 -0.891358 0.968936 1.231485 -8.926112 1.157482 2.139322 -1.927112 -1.342840 6.087924 1.193916 -0.879803 -1.742321 1.756228 -2.116722 6.406253 -1.886426 6.663508 -1.507881 6.032576 -3.268705 5.809052 3.610893 -2.918106 -1.652923 1.884324 -1.898524 3.381028 -4.072911 4.179908 -4.813486 3.133166 4.322364 -0.952956 -5.896993 -3.346898 -3.330724 -7.857568 1.433855 -4.911609 -6.529722 1.639055 5.980126 5.714032 4.221004 3.565979 -6.066069 0.973653 -0.330838 1.671095 4.894213 -1.375820 2.755171 -3.484630 -6.549928 4.497727 2.227834 1.984027 1.225732 -0.662704 0.290029 -4.066076 -0.982179 4.118520 3.512063 -1.611378 6.879251 5.440128 7.842447 -4.802171 2.234871 3.330937 -3.722951 1.785751 -1.597469 -8.443693 2.217657 1.993127 4.550746 8.125043 -1.427868 -0.642724 2.602271 -1.421968 2.354531 -4.158762 1.437309 -5.282651 -2.647474 -4.467911 2.755760 -1.828980 -0.989501 -3.310362 -3.836095 8.586402 -10.455900 -3.979787 10.692079 -3.288254 2.112008 -6.600710 6.848634 -3.441373 4.157032 -0.065142 -0.380492 0.188210 -0.663287 -6.095353 1.872041 4.103981 -3.076254 1.316552 8.369030 1.525863 0.286535 -0.309087 5.741093 -4.036683 4.872845 -5.240625 9.063076 -0.901377 -2.351460 -1.611932 -2.947589 -1.034812 -5.116504 2.218856 5.588474 2.097418 3.395313 1.586939 3.628689 5.564145 -4.439737 7.319886 -1.063848 -0.547702 -4.727838 -0.912010 2.390459 1.157398 -2.318472 3.628403 -8.560450 -6.848884 -12.797785 -3.825017 -0.307565 -2.654993 2.917019 -2.962373 -2.969670 -5.537980 -8.095278 8.849762 -3.171131 -0.954263 5.600436 3.779888 5.057962 7.728937 -1.657879 2.678055 -2.539008 -0.212693 0.397868 -3.129833 -3.729233 7.322793 -2.414472 1.653809 8.425037 -1.354987 4.957425 0.349588 3.272045 -4.189609 7.664914 2.887904 -2.950681 3.631398 7.671423 6.910368 0.422974 -5.038599 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::size() const = 0.585102 -1.359354 2.933315 2.555776 -0.501565 1.222328 -0.516226 -1.833687 1.092541 1.056610 -0.370288 1.149007 -0.794177 0.614900 -0.695507 1.350612 -1.694900 -0.602429 -0.964225 -1.326981 -0.818464 -0.690480 -0.414301 0.994952 0.869387 0.847024 -1.120258 0.641081 -1.138965 -2.628753 0.051015 -0.023850 0.689661 -0.680174 1.121624 -2.520009 2.164469 2.059053 -0.421836 -2.120433 0.290671 -0.402435 -0.578860 0.052625 -0.664903 0.729625 -0.294798 0.493430 0.576045 0.860816 0.150288 1.043161 1.595141 2.753004 -0.036514 1.676637 1.384365 0.070162 0.410254 0.319509 0.352114 0.640009 0.282012 0.181110 0.516775 -1.499573 -0.530608 0.211381 -0.577760 1.112545 -0.251572 -1.591458 -1.198665 -1.286045 -1.622363 -0.196107 -2.838020 1.476276 2.060938 -1.521938 1.067546 0.502194 0.258951 0.542867 1.387379 -0.143657 1.651804 0.930334 -0.346199 0.713686 0.308899 -0.722201 0.950572 -0.671618 -1.960477 -2.893512 1.168933 -2.692615 -1.815841 1.492633 0.805948 -0.923229 -0.349907 -1.265824 0.468422 0.323242 -0.943937 -1.249155 -0.059329 1.318950 0.649819 -0.936985 0.099631 -0.119199 0.433186 0.635165 -1.825277 0.697449 1.015712 -0.241207 -0.189215 1.623884 0.744519 0.065855 -0.537638 0.414465 -0.597076 1.456585 -0.106727 1.580696 -1.144332 1.286921 -0.665252 1.450382 0.673288 -1.639032 -0.505853 0.225372 -0.146464 0.912791 -0.278959 1.541471 -1.202234 0.863729 1.044153 0.200161 -1.140762 -1.153961 -1.351341 -1.594865 0.138005 -0.803854 -2.006886 0.631605 1.307640 0.921189 0.680635 0.254845 -1.132001 -0.311223 -0.273517 0.304083 0.861279 -0.522583 0.439466 -0.808453 -1.425852 1.221450 0.717083 0.612859 0.562968 -0.269315 0.301685 -0.371462 0.295920 1.245753 0.857287 -0.349300 1.919660 1.523572 2.183349 -0.127076 -0.023564 0.325551 -1.176736 0.388401 -0.555983 -1.718148 0.220329 0.697504 0.923977 2.203691 -0.442592 0.112059 0.903020 -0.326517 0.493446 -0.905491 0.775608 -1.229590 -0.436016 -0.780602 0.389085 -0.614647 -0.163024 -1.231338 -1.072328 2.096649 -2.826076 -0.646759 2.069314 -0.527818 0.297488 -1.162006 1.408809 -0.708870 1.261944 0.456171 -0.185018 0.153277 -0.245980 -1.320422 0.385082 0.994475 -0.897224 0.127780 1.490095 0.287916 -0.298307 -0.035368 1.148994 -1.199097 0.831554 -1.446726 1.829018 -0.373256 -0.022402 -0.492147 -0.586217 -0.288197 -1.140482 0.306590 0.349510 0.009073 0.586797 -0.371722 0.904805 0.752108 -0.801047 1.512259 -0.380252 -0.179670 -1.354112 -0.323750 0.231378 0.616108 0.104174 0.590006 -2.165691 -0.878527 -3.351619 -0.446009 -0.332163 0.012482 0.523309 -0.313369 -0.828522 -1.170936 -2.120499 2.949498 -0.654996 -0.574329 1.385191 0.905725 1.297700 1.538049 0.264028 0.479029 -0.865002 -0.205484 0.118872 -0.342168 -0.657623 1.728713 -0.526022 0.303828 1.867384 -0.283691 1.438895 0.308796 0.253195 -1.224525 1.662569 0.728005 -0.903356 0.433357 2.107474 1.329115 -0.646280 -1.136467 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::max_size() const = -0.164721 -0.650105 1.140082 0.889873 -0.065289 0.492649 0.180554 -0.780042 1.033707 0.153616 -0.178458 0.030527 -0.735608 0.155692 -0.468093 0.314390 -0.706279 -0.715823 -0.280134 -0.684125 -0.394995 -0.704618 0.098874 0.202854 0.309517 0.127790 -0.414325 0.049271 -0.963388 -0.326104 0.725640 -0.161387 0.352592 0.006022 0.166075 -1.563563 0.767724 0.718408 -0.264768 -0.894249 0.078349 -0.568651 0.006645 -0.218305 -0.041734 0.114730 -0.088827 0.420939 0.479661 0.082659 0.273943 0.132651 -0.155484 1.559674 -0.599769 0.718210 0.348830 0.129734 -0.115994 0.416825 0.201600 0.255766 0.418672 0.512726 -0.261080 -0.501644 -0.014443 -0.354733 -0.768523 0.737632 -0.074329 -0.350408 -0.533218 -0.338713 -0.736177 -0.287714 -0.984815 0.636824 1.204455 -0.796002 0.755040 0.244872 0.520705 0.036376 0.528829 -0.101779 0.967491 0.222852 -0.442839 -0.003804 -0.713535 -0.028112 0.055728 -0.211799 -0.495523 -0.919349 0.555874 -0.963972 -0.976888 0.348577 0.257454 -0.050197 -0.579979 0.018404 0.388741 0.212195 -0.514855 -0.877670 -0.329243 0.498579 0.003453 -0.243136 0.161847 -0.198574 -0.069653 -0.503983 -0.906502 -0.128523 0.204741 -0.451903 -0.336245 0.888780 -0.456978 0.046358 -0.020915 0.164174 -0.243571 0.812023 -0.075624 0.419755 -0.057545 0.102033 -0.996002 0.154659 0.246854 0.655000 -0.127336 0.167249 -0.071856 0.234224 -0.504948 0.114219 -0.377625 0.175749 0.417958 -0.356134 -0.497931 -0.340444 -0.065756 -1.022358 0.129066 -0.627177 -0.408514 0.165550 0.706410 1.027635 0.438943 1.063031 -0.722856 0.393798 -0.161122 -0.060783 0.441730 0.074869 0.455849 -0.420300 -0.706060 0.294273 0.194611 0.190216 0.247817 -0.324232 -0.119044 -0.716506 -0.253750 0.268144 0.369322 -0.107466 0.741779 0.601970 0.418743 -1.216099 0.373941 0.359050 -0.225974 0.208025 -0.083641 -0.971995 0.377215 0.243492 0.101424 0.667357 -0.152044 -0.236776 0.155559 -0.246032 0.360805 -0.629035 0.039022 -0.629674 -0.320066 -0.681746 0.329213 -0.422558 -0.317482 -0.351079 -0.401771 0.907341 -0.682428 -0.658004 1.067942 0.004227 0.458483 -0.901591 0.518815 -0.453369 0.784264 -0.229837 0.052263 -0.146359 0.286004 -0.301725 0.118875 0.388225 -0.442690 0.403587 1.040129 0.242593 0.236165 0.163861 0.778939 -0.309671 0.265107 -0.536884 0.800664 -0.075987 -0.488902 0.150573 -0.454080 0.164338 -0.294769 0.238134 0.862812 0.776222 0.285453 0.430226 0.543626 0.410020 -0.376725 0.430955 -0.018051 0.273564 -0.406206 -0.032314 0.103847 0.194190 -0.297422 0.218442 -0.979839 -1.167390 -0.858551 -0.787377 0.054220 -0.388985 0.025555 -0.032895 -0.036906 -0.862690 -0.643595 0.466207 -0.446324 0.672840 0.324474 0.481005 0.639170 1.001804 -0.546328 0.000539 0.236027 0.094105 -0.262995 -0.255013 -0.615564 0.768228 -0.485609 0.350878 0.868679 -0.174167 0.326995 0.157843 0.586108 -0.577200 1.051160 0.461586 -0.392359 0.607997 0.646298 1.157931 0.353572 -0.520387 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.796507 -4.510927 9.459562 8.214862 -1.170116 4.033997 -1.598172 -6.084253 3.904942 4.447574 -1.660787 4.135592 -2.398848 1.688584 -2.058811 4.783818 -5.373432 -2.218929 -2.611906 -4.018734 -2.893741 -2.513419 -1.438549 3.130483 2.817106 2.608966 -3.789795 2.292247 -3.400187 -9.966656 -0.499054 -0.058114 2.104600 -2.888786 3.618739 -8.243300 7.302933 6.911997 -1.311117 -7.283336 0.744064 -0.937349 -2.397447 0.952334 -1.903970 2.511460 -0.661152 2.279834 1.402422 3.098224 0.923061 3.346512 5.464040 9.319958 0.524420 5.936150 5.032459 0.499293 1.118496 1.349218 1.653601 1.906975 1.303974 1.133220 1.642449 -4.481427 -1.405497 1.246593 -2.021543 3.714898 -0.349209 -5.782036 -3.648432 -4.240323 -4.751594 -0.438852 -7.950179 4.455355 7.113259 -4.581452 3.807200 2.281588 1.433343 1.430323 4.489435 -1.153037 6.201291 3.256868 -1.554827 1.608216 0.696141 -3.130352 3.072796 -1.778862 -6.420654 -9.093505 3.599708 -9.110444 -6.372282 4.820682 2.601680 -2.988489 -1.543174 -3.879879 2.645424 0.838462 -2.588391 -4.157067 -0.799468 4.102394 0.822088 -3.402106 -0.035371 -0.424314 1.396900 3.462547 -6.160216 1.749579 3.738278 -1.035290 -0.874725 5.028224 2.553243 0.678880 -2.007611 1.158109 -1.318977 3.787860 -0.052273 5.247560 -3.154251 4.353700 -1.967792 5.270987 1.915821 -6.569226 -1.630945 0.736107 -0.022847 3.241598 -0.851807 5.714819 -4.963779 3.379683 3.777186 1.030180 -4.054921 -4.206104 -4.330080 -4.974689 1.006632 -2.743605 -6.863219 1.079423 4.450446 2.312979 1.983015 0.391020 -4.100973 -0.410564 -0.663971 1.925186 2.456595 -2.381014 1.367357 -2.768057 -4.809797 4.107188 3.336748 1.720733 1.675143 -1.173800 0.913124 -1.160019 -0.049581 4.097778 2.455105 -0.718355 6.149637 4.544513 9.099887 -0.760973 -0.006621 0.886750 -3.380182 1.270119 -1.964518 -6.045891 0.654093 2.013192 4.572343 8.081315 -1.173310 0.052627 2.661526 -0.501865 1.293311 -3.003466 3.153840 -4.333072 -1.265435 -1.838483 1.367503 -2.208544 -0.293572 -4.023727 -3.091761 7.025699 -8.943841 -3.194851 7.150182 -2.604316 1.127707 -4.442208 4.630120 -2.342937 3.747207 1.147991 -0.652093 0.445944 -1.306287 -4.141755 1.610248 3.320583 -2.727700 0.840225 4.724119 0.676939 -0.552241 0.007298 3.144087 -3.904193 2.329250 -4.759616 6.175002 -1.026946 -0.193888 -2.379773 -1.943823 -0.315244 -3.425639 0.577251 0.364022 0.162832 1.026870 -1.317420 2.910190 2.212046 -3.275469 5.574401 -0.765046 -0.457328 -4.326602 -1.173275 0.465496 1.321161 0.026757 2.486765 -7.097992 -2.287809 -10.902084 -2.229711 -1.676047 0.287873 2.347013 -1.122333 -2.586494 -3.809992 -6.788744 10.424560 -1.796824 -1.673759 4.805933 3.365811 4.356116 4.858520 1.172796 1.636024 -3.664673 -1.431427 -0.357899 -2.045651 -1.525011 5.419057 -1.215232 1.718127 5.620872 -0.646546 4.455035 0.331641 0.416504 -3.738564 5.285150 2.659958 -2.878200 0.670266 6.183544 5.123516 -3.357610 -4.101984 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.368314 -1.310201 1.972320 1.560780 0.003995 0.882440 0.303947 -1.017193 1.425894 0.721810 -0.512052 0.557896 -1.046970 0.196276 -0.510340 0.696814 -1.125021 -1.245890 -0.142806 -0.824245 -0.513102 -1.058079 -0.160922 0.570591 0.514166 0.067163 -0.754868 0.000196 -1.631325 -1.115717 0.653673 -0.343948 0.654897 -0.275961 0.442910 -2.635236 1.256536 1.298909 -0.341347 -1.807340 0.140780 -0.846892 -0.048099 -0.139898 -0.120782 0.418306 0.203179 0.612890 0.479696 0.322720 0.316629 0.239030 0.111428 2.557845 -0.563881 1.287385 0.898597 0.083453 -0.054717 0.469511 0.486180 0.152281 0.828890 0.806996 -0.375842 -0.785492 -0.181620 -0.295593 -1.120959 0.952396 0.095333 -0.607722 -0.859089 -0.497093 -1.215608 -0.439773 -1.274160 1.030838 2.070941 -1.136795 1.463895 0.634247 1.129563 0.098840 1.053408 -0.154383 1.664104 0.511546 -0.829898 -0.045476 -1.139579 -0.387304 0.066206 -0.088898 -0.866742 -1.321499 0.801231 -1.586970 -1.623052 0.826539 0.283095 -0.160760 -0.982940 -0.123995 0.884264 0.579094 -0.766627 -1.424971 -0.788020 0.789607 -0.221722 -0.641049 0.257937 -0.414842 -0.086798 -0.444869 -1.424123 -0.198383 0.711330 -0.808362 -0.553078 1.424884 -0.564439 0.353862 -0.179414 0.217535 -0.296674 1.059530 0.183245 0.785361 0.015244 -0.061824 -1.830983 0.479472 0.345731 0.587378 -0.337816 0.206870 0.025806 0.527871 -0.442622 0.458501 -0.675294 0.731640 0.948166 -0.374625 -0.896731 -0.996531 -0.040912 -1.344478 0.294335 -0.962061 -0.668048 0.232197 1.198264 1.210119 0.629240 1.444668 -1.170678 0.837572 -0.253947 0.184620 0.631412 -0.173031 0.604131 -0.727963 -1.127756 0.611551 0.817659 0.353665 0.427389 -0.596919 -0.011617 -0.905266 -0.651884 0.585875 0.651142 -0.006759 1.423816 0.890016 1.296055 -1.742753 0.338819 0.355701 -0.406705 0.276397 -0.271621 -1.664153 0.611122 0.399259 0.409448 1.380841 -0.232038 -0.568633 0.410056 -0.208724 0.426773 -0.943821 0.445487 -1.148380 -0.421663 -0.799637 0.298666 -0.826379 -0.482983 -0.762695 -0.548542 1.673854 -1.100916 -1.359774 1.478974 -0.415790 0.662729 -1.835715 1.034684 -0.795006 1.119432 -0.373484 0.019645 -0.282041 0.487278 -0.503827 0.229356 0.813926 -0.822757 0.731703 1.533899 0.352812 0.299588 0.360083 1.043231 -0.391642 0.222029 -0.848949 1.240930 -0.192560 -0.481624 -0.046431 -0.654272 0.523958 -0.194453 0.246952 0.859919 1.000809 0.190113 0.515790 1.091295 0.456673 -0.764052 0.757826 -0.149890 0.702138 -0.703001 -0.122406 -0.242066 0.257134 -0.313598 0.454372 -1.720944 -1.533146 -1.578136 -1.333437 -0.149609 -0.240248 0.194128 0.034820 -0.010441 -1.610685 -1.038508 0.955109 -0.566936 0.850033 0.743454 0.765238 1.179731 1.337618 -0.570228 -0.223486 -0.052942 -0.104195 -0.565861 -0.519644 -0.751994 1.030595 -0.881558 0.815068 1.291607 -0.261332 0.504617 0.240837 0.852225 -0.906215 1.858393 0.973323 -0.850108 0.606590 1.069798 1.878347 -0.230147 -1.003953 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.294208 -0.892814 1.566300 1.467280 -0.159824 0.625964 0.218397 -1.033500 1.223337 0.743887 0.011670 0.297262 -0.905863 0.382639 0.193657 0.915899 -1.094448 -0.748117 -0.318331 -0.884885 -0.718670 -0.846663 0.128468 0.216161 0.444786 0.211702 -0.703329 -0.099504 -0.718125 -0.987533 0.753817 -0.286093 0.744003 0.143522 0.267930 -3.173453 1.146220 0.816210 -0.394003 -1.261377 0.122400 -0.644836 0.226119 -0.211337 -0.350390 0.272127 -0.043651 0.305642 0.719119 0.329544 0.448808 0.272847 0.344241 2.340771 -0.661653 0.939023 0.508593 -0.145183 -0.343415 0.313610 0.351380 0.291964 0.820244 0.648711 -0.222518 -0.835231 -0.178860 -0.450074 -1.274063 0.923053 0.078072 -0.556404 -0.899205 -0.550016 -0.609627 -0.556993 -1.475269 1.003648 1.666877 -1.137488 1.017286 0.341672 0.495554 0.157681 0.892364 -0.093465 1.448180 0.325556 -0.630586 0.223142 -0.288093 -0.565651 0.328216 -0.021849 -0.571759 -1.377719 0.486715 -0.610303 -1.287825 0.794152 0.380993 0.073083 -1.387692 -0.625756 0.727193 0.486813 -0.772342 -1.284520 -0.761495 0.530510 -0.010083 -0.556189 -0.073857 -0.388745 -0.254334 -0.460047 -1.301784 -0.189932 0.372529 -0.606237 -0.604523 1.158434 -0.453338 0.094121 -0.127392 0.267357 -0.423944 1.213086 -0.112396 0.816306 0.170595 0.116927 -1.338635 0.168235 0.402822 0.714858 0.047144 -0.204229 -0.374761 0.379209 -0.716088 0.510407 0.003619 0.771265 1.342384 -0.026632 -0.807027 -0.526702 0.020840 -1.496471 0.410883 -0.950043 -0.067543 0.558099 0.982622 0.792104 0.655153 1.011659 -1.077298 0.758871 -0.409789 0.070062 0.830307 0.380851 0.633180 -0.593167 -0.874036 0.454188 0.563461 0.326460 0.344198 -0.475777 -0.003236 -0.648527 -0.579235 0.396554 0.513335 -0.153560 0.850343 0.682892 2.161299 -1.299656 0.425997 0.452369 -0.256741 0.315845 -0.204728 -1.253882 0.420517 0.302045 -0.178753 1.050765 -0.309989 -0.647353 0.213699 -0.209562 0.368960 -0.696567 0.284841 -0.821091 -0.213543 -0.800169 0.044999 -0.627583 -0.448318 -0.482376 -0.149252 1.417017 -0.980114 -0.895124 1.477882 -0.625349 0.500372 -1.487658 1.646812 -0.618651 0.591994 -0.916284 -0.384275 -0.224558 0.497822 -0.456075 0.384414 0.644401 -0.496660 0.161394 1.653869 0.331391 0.278094 0.108922 0.965038 -0.045078 0.412748 -0.603186 1.458133 -0.222574 0.012174 -0.083136 -0.567654 0.371513 -0.328682 0.164998 0.889021 0.892150 0.128792 0.346560 0.855416 0.522740 -0.626207 0.848924 -0.029347 0.516607 -0.585050 0.024103 0.066737 0.390021 -0.361958 0.462650 -1.273941 -1.097474 -1.090811 -0.700689 -0.331917 0.623349 0.215184 -0.087377 -0.088941 -1.102286 -0.749262 0.946200 -0.600533 0.460481 0.485094 0.621189 0.982057 1.347205 -0.357016 -0.291606 -0.175888 -0.318534 -0.278246 -0.261286 -0.671407 1.010396 -0.722978 0.582624 0.944956 -0.141228 0.400579 0.100150 1.110336 -0.666449 1.464870 0.565041 -0.313904 0.801583 1.144716 1.442293 -0.079463 -0.706941 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.672051 -4.143692 5.735081 5.140046 -0.057420 3.770182 -0.660768 -2.340341 0.452456 2.961293 -0.230466 3.632947 -2.144207 0.323533 -0.152329 1.181352 -1.872371 -1.303193 -1.604528 -1.649690 -0.084262 -1.379303 -2.392552 4.492522 1.155014 0.269130 -2.283265 1.083229 -4.756709 -5.398745 -0.739292 0.236674 2.579549 -2.573240 2.433301 -5.670181 3.953351 5.487489 -0.056606 -5.186964 0.871994 -0.584748 -0.954608 1.096995 -2.632837 1.956719 0.300989 -1.859582 0.201573 1.442198 -0.572749 1.582320 3.806186 4.391415 0.793414 3.815187 3.607039 -0.599889 1.771910 -0.418508 -0.112883 0.435762 1.099250 -0.212724 0.254336 -2.361486 -0.389770 1.683158 -1.965830 0.770357 -0.201924 -2.984281 -1.329768 -1.972603 -4.182974 -0.419975 0.852322 1.708002 4.065965 -1.428342 3.746817 0.720447 0.385266 1.661453 3.872487 0.472685 1.741155 1.807338 -1.172011 1.797426 -0.321075 -0.491971 1.147965 1.438325 -4.238392 -3.339257 2.242564 -4.137660 -3.318035 3.908075 0.089789 -2.432305 -2.132013 -3.785870 0.445496 1.907455 -2.227487 -2.997370 -1.147776 4.101660 1.068494 -2.471256 0.360850 -0.647522 0.581137 -0.002839 -2.236766 1.605005 3.389385 -1.027415 -1.264229 3.892827 0.395388 1.768353 -1.000303 1.409907 -1.632088 1.586553 0.897210 2.527708 -2.233239 -0.304210 -1.434441 -0.150881 0.284947 -1.826671 -1.488816 -1.012388 0.001502 1.992573 2.004700 3.960071 -0.896149 2.091393 2.392407 1.169024 -0.876697 -3.061532 -2.038125 -2.806838 -0.661316 -1.002704 -3.815203 2.681799 2.498703 -0.694692 0.383976 1.299744 -1.172831 -0.079758 -0.484243 -0.680457 1.074944 -2.075400 0.255765 -1.628992 -3.399540 2.560797 2.103150 2.049497 1.178446 -0.458831 0.623622 0.647293 0.123742 1.699409 1.295271 -0.246195 4.433792 3.311855 5.798260 0.716256 -0.999092 -0.689249 -3.069554 1.108706 -1.926945 -3.276400 -0.546122 2.081185 -0.722211 5.709321 -1.251553 -1.390228 3.147302 -0.444272 0.767846 -2.298112 3.850309 -2.918180 0.158058 -1.560017 -2.484177 -1.392372 -1.071278 -4.215814 -1.893260 4.647797 -5.082741 -2.586771 2.037007 0.506873 0.167238 -4.145198 2.653257 -1.331416 3.329087 1.488190 -0.668205 0.386026 0.905109 -2.092275 0.372550 2.148295 -3.180828 1.395448 2.803523 0.411205 -1.320419 0.104721 1.638855 -1.453280 0.050417 -3.770179 2.645488 -1.020087 0.477484 -0.975417 -1.237714 0.636904 -1.480636 -0.228574 -2.423166 0.302857 -0.017696 -2.085313 3.223293 -0.107101 -0.458407 1.943614 -1.064861 0.776671 -2.355039 -0.474046 -1.263245 2.585627 2.185680 1.687085 -4.872975 -1.184391 -5.232126 -2.296176 -0.531409 2.291622 0.586114 1.077147 -1.151417 -4.032666 -4.126030 5.321178 -1.148625 1.433846 3.257279 2.228843 2.876159 2.124260 1.232549 -0.038468 -1.482330 -0.040549 -0.582588 -0.085108 -0.570132 2.544275 -1.456049 1.479798 2.941885 -0.148278 3.296914 0.101987 -0.659442 -3.307409 4.501270 2.209748 -2.411101 0.581113 3.081359 2.146839 -3.438978 -2.006852 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.218478 -0.404421 0.333654 0.227742 -0.013551 0.191383 0.003816 0.074405 0.168943 0.030653 -0.279672 0.187840 -0.233518 -0.096473 0.103834 -0.012843 -0.142653 -0.313309 0.177629 0.093304 0.029220 -0.216995 -0.193204 0.269348 0.030473 0.295112 -0.077410 0.079451 -0.379280 -0.087123 0.042887 -0.091357 0.172813 0.345160 0.219322 -0.241826 0.059078 0.246296 0.037296 -0.472478 -0.058861 -0.101213 0.104244 -0.074920 0.072951 0.250996 0.259438 0.051251 -0.091875 0.018940 -0.171621 -0.275185 -0.068764 0.052817 0.130077 0.209773 0.334137 -0.023180 0.084442 -0.134843 0.164161 -0.163930 0.186370 0.190714 -0.260861 -0.014889 -0.071218 -0.116727 -0.197405 0.030427 0.058191 0.035134 -0.161212 -0.221817 -0.149368 -0.074715 -0.143167 0.144022 0.418446 -0.147395 0.436518 0.239540 0.457277 -0.002557 0.220206 -0.006842 0.157958 0.136116 -0.293983 0.138793 -0.279409 -0.217516 -0.094989 0.129119 -0.130051 0.239283 0.108881 -0.280051 -0.270494 0.191853 -0.070135 0.075032 -0.149167 0.210561 0.161908 0.268139 -0.113698 -0.214939 -0.085336 0.049276 -0.102866 -0.095219 -0.025613 0.148430 -0.145825 -0.128953 -0.222964 -0.096419 0.266909 -0.284086 0.130662 0.241231 -0.194987 0.281165 -0.059551 -0.106417 0.006511 0.307506 0.351538 -0.023088 -0.015940 -0.280253 -0.340471 0.035779 -0.010366 0.316799 -0.192416 -0.074292 0.219401 0.034452 0.139787 -0.113448 -0.123602 0.102662 0.261755 -0.079782 -0.175770 -0.372624 -0.184114 -0.252198 0.056891 -0.172897 0.143445 0.199617 0.181227 0.185831 0.007169 0.518831 -0.287821 0.127849 -0.092217 0.028207 -0.069519 0.219030 0.084485 -0.149525 -0.119525 0.186284 0.207561 0.019048 0.250457 -0.264963 0.072194 -0.139437 -0.157357 0.339123 0.134957 0.104238 0.289954 0.077836 -0.083429 -0.118048 -0.113955 -0.087890 0.060481 -0.034107 0.039233 -0.304765 0.245051 -0.023564 0.116117 0.139560 -0.029018 -0.057132 0.121369 -0.055654 0.038271 -0.203392 0.219210 -0.246642 0.066443 -0.159225 0.135168 -0.232601 -0.116190 -0.131678 0.019497 0.343222 0.072350 -0.250956 -0.028468 0.118889 0.306166 -0.284437 -0.152712 -0.139396 0.463947 -0.006682 -0.019745 -0.014287 -0.161344 0.201903 -0.192004 0.174172 -0.019063 0.002340 0.026426 0.042157 -0.128333 0.267453 0.087299 0.022702 -0.085772 -0.030736 -0.036545 0.005013 0.063651 0.108576 -0.084867 0.196691 0.129289 -0.146512 0.153999 0.237843 0.027494 0.154216 0.093497 -0.128046 -0.183874 -0.117530 0.028700 0.396507 -0.123754 -0.073896 -0.283575 0.249733 0.001015 -0.061304 -0.287045 -0.380848 -0.115790 -0.357103 -0.276749 0.004119 0.024572 0.148228 0.067226 -0.158964 -0.093125 0.131974 -0.058260 0.580381 -0.016757 0.109505 0.314159 0.119575 -0.165834 -0.290013 0.138222 0.026608 -0.212446 0.138832 -0.193566 0.050275 -0.201328 0.125471 0.256975 -0.127538 -0.024662 0.013340 0.324870 -0.186868 0.417084 0.273838 -0.393000 0.027585 0.067379 0.319785 -0.106208 -0.232574 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.685790 -1.190648 2.165852 1.621221 0.354244 0.873517 0.945493 -1.415804 2.186204 1.355817 -0.223593 -0.336300 -1.486394 0.087313 -0.324658 0.870964 -1.072410 -1.415127 -0.316788 -1.312204 -0.508945 -1.593366 0.650730 -0.153851 0.593807 -0.552835 -0.675200 -0.393974 -1.459188 -1.414530 1.693657 -0.461342 0.895332 -0.376155 -0.281987 -3.800919 1.693832 1.171244 -0.636843 -1.606315 0.243399 -0.573358 -0.175388 0.283014 -0.072640 0.301230 -0.021594 0.766653 0.915062 0.523105 1.186599 -0.121210 0.011104 3.384079 -1.413203 1.319523 0.411458 0.090441 -0.313444 1.232221 0.384337 0.481915 1.017250 1.510242 -0.135491 -0.716580 0.410846 -0.562143 -2.216428 1.557878 -0.165922 -0.644677 -0.705870 -0.187320 -0.719359 -0.388973 -1.116479 0.942003 2.537458 -1.001131 1.770549 0.611811 0.913408 -0.224184 0.424736 -0.192292 1.619424 0.339229 -0.944840 -0.587587 -1.280593 -0.319385 0.034454 0.143866 -0.547917 -1.353225 1.073702 -0.514177 -1.584082 0.664469 0.432391 0.025107 -1.818163 -0.154071 0.946531 0.532054 -0.830996 -1.825349 -1.417764 0.832819 -0.596263 -0.359454 0.150823 -0.707089 -0.505298 -0.701376 -1.474568 -0.694477 0.066463 -1.146832 -1.277849 1.439725 -1.147413 0.163980 0.169659 0.646666 -0.455273 0.883362 -0.004120 1.199829 0.821345 -0.008680 -2.453391 -0.247475 0.684590 1.565006 0.463115 0.057688 -0.433882 0.483829 -1.064075 0.641223 -0.306298 0.406709 1.591763 -0.641824 -0.813114 -0.457300 0.779836 -1.932077 0.490200 -1.448989 -0.296362 0.183392 1.394764 1.324436 0.926215 2.252901 -1.959721 1.451565 -0.595068 -0.140853 0.521606 -0.026959 0.798825 -0.624095 -1.350619 -0.013529 0.988003 0.307122 0.289653 -0.956496 -0.387048 -1.421143 -0.915195 0.164485 0.325991 -0.556210 0.701941 0.999695 2.396040 -2.751377 0.756221 1.005123 -0.225457 0.272670 -0.033638 -2.138134 0.637074 0.370178 -0.035191 1.278849 -0.182883 -0.941782 0.263304 -0.691981 0.268952 -1.052914 0.303776 -1.216388 -0.451391 -1.098487 0.085832 -0.979707 -0.770036 -0.336378 0.044166 1.575385 -0.584545 -1.667977 2.096734 -0.486038 0.128449 -2.202075 2.125754 -0.828563 0.657238 -1.044588 -0.100588 -0.694505 1.324877 -0.405664 0.135962 0.512949 -0.813074 1.447547 2.736125 0.527546 0.546230 0.190129 1.566768 -0.333366 0.169467 -1.052224 1.515061 -0.282749 -0.959711 -0.111870 -0.900301 0.761030 -0.592337 0.258829 1.184954 1.736794 -0.349461 0.912233 1.079799 0.822171 -0.560570 1.228560 0.360734 1.025288 -0.435459 0.177679 0.225810 0.096100 -1.010888 1.019473 -1.798038 -1.865099 -0.805238 -1.848655 -0.221595 -0.077268 0.344385 -0.075455 0.314957 -2.003722 -0.948595 0.617669 -0.752739 0.966247 0.700550 0.931800 1.056433 1.944935 -0.929363 -0.130757 0.007426 -0.016908 -0.878492 -1.075832 -0.598570 1.315386 -0.970836 0.852806 1.104769 -0.111747 0.297107 -0.098606 1.077442 -1.180052 2.148019 1.048170 -0.004098 1.306496 0.653055 2.740657 0.224016 -0.812774 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.447068 -12.681687 29.716365 25.506638 -4.834571 11.102321 -4.311518 -20.831250 14.094726 12.517827 -4.577457 11.468296 -7.744517 6.523405 -7.464679 16.522298 -18.568111 -7.499212 -8.662915 -14.449385 -11.157495 -8.270063 -1.370165 7.239917 9.588166 9.208126 -12.766565 5.384180 -8.747903 -30.005697 1.145387 -0.521707 6.925974 -7.135745 9.442975 -30.487420 22.620843 19.949298 -5.371047 -21.449269 3.153553 -3.639174 -7.204790 2.057103 -6.586875 6.313273 -3.911231 8.089753 6.138946 9.132201 5.054367 11.850783 15.516550 32.235115 -0.767598 17.945057 13.647551 1.850374 0.800451 5.069488 6.197062 7.454042 5.291622 4.833426 5.147646 -15.266863 -4.641482 1.737809 -8.140695 13.655036 -1.050823 -17.925055 -11.953125 -12.994889 -13.203126 -2.278284 -25.656115 15.178296 22.456325 -15.634608 10.757149 6.328318 3.731241 2.612071 12.549669 -4.421609 21.262481 9.673629 -3.843021 3.148794 2.727800 -9.335207 9.869341 -5.691891 -19.190867 -29.997292 11.857071 -27.418396 -20.858850 13.499493 10.315128 -8.608915 -6.717238 -11.073003 9.122966 2.073858 -8.190874 -13.518160 -3.650503 11.786644 2.553292 -10.416857 -1.506158 -1.858207 3.638164 10.164716 -20.720881 4.895789 9.522028 -3.147675 -3.536654 15.239392 7.238384 0.169872 -5.719762 4.225626 -4.434206 13.151689 -2.120891 16.707090 -8.341053 15.537473 -5.802496 16.429556 6.874218 -17.841617 -4.781287 1.205975 -2.077821 9.611308 -5.941945 16.034568 -15.346250 10.648490 14.124504 2.415065 -14.241154 -11.493807 -12.065764 -18.367293 3.532158 -10.287936 -19.550326 3.382248 14.053263 9.415515 7.750616 2.557624 -13.956611 0.996486 -1.469628 5.911299 9.501717 -5.752650 5.503445 -8.995373 -15.538272 12.091634 9.183272 5.550365 4.180608 -2.987781 1.780627 -5.586519 -2.204292 12.764245 8.445817 -1.668275 17.616216 14.004925 30.526688 -5.963789 1.763824 4.602971 -10.035804 3.839773 -5.424817 -19.788067 2.402029 5.870457 13.969705 24.949556 -3.571394 -0.127597 6.887820 -1.738573 4.671939 -9.844649 8.524456 -13.526915 -4.120889 -6.887162 4.393484 -6.816126 -0.494419 -11.160083 -10.191494 22.276395 -28.831692 -10.976327 25.575983 -9.827303 4.373694 -15.341283 15.769661 -7.488765 10.625228 0.367360 -2.255977 0.430132 -4.432120 -13.892408 6.559218 10.016213 -7.630130 1.974671 18.198079 2.496971 -0.282509 -0.911959 11.281534 -11.407460 9.779967 -14.181446 22.125319 -2.745635 -2.063838 -6.929140 -6.209007 -2.223467 -11.575712 2.980911 5.372674 2.166273 4.373979 -2.112634 8.843779 9.710340 -11.551805 18.966506 -1.812731 -1.783772 -12.626134 -3.718743 3.727303 3.936635 -2.713262 7.776796 -21.842611 -9.850498 -34.203095 -8.501056 -4.377816 -0.560697 8.089966 -5.374389 -8.432918 -11.648178 -20.705143 31.253561 -6.195582 -3.112724 14.584573 10.517345 13.897755 17.365802 1.109515 6.188124 -11.087684 -4.504317 -0.349707 -7.550981 -6.393490 17.804896 -3.371168 5.463010 18.452117 -2.154034 13.579484 1.073612 3.730921 -10.897282 17.121484 7.491844 -7.973535 4.338775 18.422554 16.551349 -7.544057 -13.073616 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy(int**, int**, int**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy_backward(int**, int**, int**) = -0.254053 -0.843339 1.665559 1.407067 -0.240466 0.617199 0.210331 -1.194153 1.391830 -0.183069 0.018390 0.165388 -1.131088 0.434270 -0.400872 0.501790 -1.279860 -1.063765 -0.544541 -1.068085 -0.664687 -0.926234 0.364446 0.395930 0.539982 0.275202 -0.845047 -0.089770 -1.434070 -0.017957 1.319314 -0.280487 0.795919 0.350202 0.177506 -3.027668 1.093600 0.894836 -0.403492 -1.176624 0.271016 -1.038457 0.214430 -0.765364 -0.391497 0.043329 -0.268409 0.289514 0.946995 -0.068931 0.188866 0.448132 -0.457757 2.241956 -1.115564 0.879842 0.306293 -0.037256 -0.441397 0.287317 0.252980 0.476048 0.853177 0.645305 -0.607788 -1.039480 -0.058011 -0.756158 -1.361180 1.098008 0.121808 -0.253505 -0.866180 -0.366263 -1.147833 -0.561772 -0.337364 1.100250 1.659324 -1.195593 0.945366 0.043440 0.526411 0.049537 0.863210 -0.042612 1.458028 0.259752 -0.519291 -0.034228 -1.256022 -0.006255 0.073568 -0.058121 -0.568221 -1.255166 0.619401 -1.191731 -1.406360 0.375306 0.487686 -0.043299 -1.367024 -0.215758 0.625079 0.442442 -0.740913 -1.308692 -0.506628 0.656852 0.142039 -0.457340 0.072637 -0.393923 -0.272838 -1.203803 -1.404796 -0.118601 0.173939 -0.557340 -0.541353 1.296037 -1.050919 -0.129802 -0.060186 0.363814 -0.609335 1.305402 -0.365917 0.505912 0.177637 -0.151044 -1.084528 -0.315105 0.299639 1.771643 -0.285172 -0.205722 -0.528697 0.261497 -0.945325 -0.120759 -0.029037 0.406450 0.757576 -0.498810 -0.778095 -0.313954 0.021664 -1.778123 0.134117 -0.965765 -0.220772 0.663908 1.014101 1.360425 0.815902 1.711359 -0.852334 0.852671 -0.161561 -0.236906 1.095144 0.315963 0.751057 -0.671489 -1.010189 0.534456 -0.085612 0.428255 0.270887 -0.253008 -0.141863 -1.089844 -0.705012 0.206287 0.584207 0.061389 0.993747 0.814578 0.742568 -1.865977 0.661358 0.647636 -0.342476 0.358896 -0.079632 -1.247383 0.466875 0.372732 -0.396515 1.078331 -0.301577 -0.778095 0.173935 -0.140934 0.646565 -0.944133 0.060114 -0.850744 -0.233476 -1.199938 0.024830 -0.551886 -0.535601 -0.636858 -0.662905 1.450740 -0.987773 -1.257171 1.624021 -0.030862 1.003594 -1.787225 0.766847 -0.727613 1.188138 -0.615842 -0.022394 -0.149575 0.304637 -0.737045 0.411030 0.612613 -0.656180 0.344667 1.676730 0.441110 0.365815 0.031840 1.136223 -0.073893 0.739158 -0.681285 1.433201 -0.137296 -0.593191 0.311491 -0.617788 0.129967 -0.453114 0.412047 1.320290 1.224401 0.784705 0.755765 0.959780 0.817758 -0.602834 0.561066 -0.132432 0.335609 -0.434818 -0.067946 0.308327 0.592951 -0.371096 0.392264 -1.383081 -2.051016 -1.062925 -1.401352 0.253922 -0.252916 -0.024504 -0.071365 -0.124754 -1.321907 -0.756877 0.212789 -0.648433 1.725838 0.478233 0.612738 0.932546 1.518100 -1.122675 -0.160970 0.554413 0.224848 -0.174952 -0.206381 -1.305609 1.231272 -0.750974 0.504240 1.480431 -0.363521 0.488068 0.004273 1.251698 -0.751263 1.751535 0.529053 -0.674958 1.123831 0.810537 1.416548 0.811998 -0.740457 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.002590 -2.236412 3.990259 2.842120 0.395314 1.402840 2.065714 -2.940371 3.384983 1.705869 -0.222157 0.189625 -3.238931 0.781844 -1.972752 1.833918 -1.767317 -2.788608 -0.883293 -2.442046 -1.241466 -2.643534 1.838462 0.269928 1.492472 -0.675727 -1.373703 -1.149955 -3.407651 -3.210155 2.409703 -0.579426 1.513872 -0.943142 -0.488274 -5.501300 2.826055 2.404866 -1.316287 -2.934907 1.298539 -1.094243 -0.694661 0.623200 0.036080 0.505180 -0.047067 1.667688 1.712579 1.508214 2.438925 0.608064 0.366787 5.480794 -2.488642 2.751874 1.472015 0.926354 -0.517440 1.862516 0.334428 0.859271 1.423547 2.276334 -0.553870 -1.262660 0.086250 -0.933734 -3.663222 2.621450 -0.535703 -1.330623 -1.849206 -0.688515 -1.636352 -0.575293 -2.186069 1.508613 4.748994 -2.422046 2.871648 0.895988 1.250136 -0.951425 0.889360 -0.552491 2.248578 0.755513 -1.424635 -1.196851 -2.464015 0.003869 -0.450127 0.313011 -1.395234 -3.336770 2.461900 -1.923536 -3.557176 1.180887 0.659040 -0.498283 -2.564121 0.203191 1.375112 0.957721 -2.046630 -3.671264 -2.241038 1.626446 0.031900 -0.733128 0.448136 -1.052654 -0.744597 -1.141396 -3.262612 -0.870506 0.431726 -2.539594 -2.166579 2.458481 -1.459643 1.085509 0.589499 1.387145 -0.809269 2.064604 0.410135 1.894155 1.414213 0.392535 -3.615964 0.414928 1.217725 2.225735 -0.353917 0.919911 -0.852215 0.687299 -1.567265 1.038126 -1.163105 0.727095 2.599739 -1.362495 -2.119948 -0.522075 0.985791 -3.711722 1.225651 -2.814027 -0.996560 -0.321871 2.063609 1.836243 1.488283 4.382126 -2.742259 2.068603 -0.166370 -0.277654 1.054208 -0.386032 1.781036 -1.349522 -3.343970 0.626425 1.568908 0.142254 0.425859 -0.957292 -0.577392 -2.992884 -1.757786 0.176405 0.726402 -1.313143 1.927932 1.751567 3.435516 -3.697294 1.027407 1.542713 -0.944833 0.805784 -0.463749 -4.191990 1.216398 0.628448 0.562254 2.862609 -0.134557 -1.562454 1.677068 -1.080284 0.977726 -2.167720 0.894175 -2.683073 -1.304732 -2.423826 0.339665 -0.787090 -1.189376 -0.407498 -0.321609 3.120899 -1.349148 -2.681129 3.466195 -0.558192 0.605895 -4.347965 3.773899 -1.321135 1.330316 -1.051910 0.332542 -0.819735 1.842464 -0.634583 0.087261 0.931776 -1.242464 2.640548 4.889611 0.442114 0.816670 0.810314 2.907347 -0.834272 0.615202 -1.920909 3.241435 -0.534315 -2.424377 0.387986 -1.326851 0.801275 -1.560397 0.490005 2.721487 2.719459 -0.615466 1.692638 1.925770 2.159838 -1.273495 2.577408 0.313841 1.740160 -1.350636 0.128767 0.381541 0.095800 -1.551347 2.105341 -3.335791 -3.985668 -1.961574 -4.208002 0.113450 -1.020697 1.152421 -0.669791 0.007553 -3.511043 -2.185859 1.464434 -1.425947 1.886255 2.167181 2.155478 2.392875 3.950999 -1.607018 0.422011 -0.074175 0.496253 -1.396587 -1.912066 -0.714010 1.441643 -1.426154 1.325207 2.055315 0.215666 1.002511 -0.799616 1.876024 -2.117487 4.106975 1.751903 -0.162672 3.092010 1.501781 4.500863 0.559621 -1.389175 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__miter_base(int**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.216889 -0.266459 0.395803 0.358802 0.113353 0.124916 0.245948 -0.174661 0.469585 0.329413 -0.007362 -0.032471 -0.401040 0.090013 0.115063 0.290524 -0.196848 -0.331630 0.027113 -0.200139 -0.128038 -0.330870 0.165481 -0.106598 0.150359 -0.107711 -0.137837 -0.168707 -0.356358 -0.158032 0.290792 -0.185617 0.213712 0.088776 -0.043321 -0.702062 0.261666 0.145042 -0.145935 -0.324930 0.068807 -0.258085 0.239958 -0.072157 0.163421 0.120623 0.114283 0.071114 0.303339 0.131296 0.287338 -0.121985 -0.030490 0.555408 -0.395300 0.218027 0.043743 -0.055105 -0.123191 0.127063 0.076943 -0.007923 0.280317 0.287755 -0.196732 -0.193710 -0.079493 -0.219865 -0.473803 0.243908 -0.030907 0.036258 -0.336534 -0.063083 -0.038942 -0.199795 -0.676753 0.197781 0.544326 -0.285583 0.383646 0.152019 0.268294 0.001952 0.195213 0.037562 0.294699 0.022421 -0.294056 0.011327 -0.200821 -0.072924 -0.024529 0.094550 0.022512 -0.128327 0.112014 0.162297 -0.352471 0.176669 0.028961 0.169857 -0.442496 0.072874 0.169694 0.238159 -0.255216 -0.464516 -0.234132 0.024126 -0.010357 -0.087593 0.024672 -0.299998 -0.227258 -0.320474 -0.343451 -0.193706 -0.016508 -0.325417 -0.278200 0.334512 -0.299204 0.071418 0.048823 0.086933 -0.119701 0.385644 0.071677 0.245280 0.189724 -0.164565 -0.808130 -0.016216 0.186422 0.517857 0.047057 0.096815 -0.174283 -0.009022 -0.269278 0.011859 0.148086 0.219611 0.447816 -0.194995 -0.199626 -0.079910 0.190318 -0.396993 0.232127 -0.294806 0.257395 -0.013431 0.286884 0.249883 0.268839 0.600635 -0.377012 0.270257 -0.180719 -0.050241 0.267341 0.248729 0.269126 -0.163710 -0.187158 0.028721 0.268726 -0.047430 0.144729 -0.181513 0.009020 -0.336900 -0.070138 0.030282 0.083114 -0.156346 0.217679 0.111036 0.453879 -0.472448 0.147832 0.227368 0.070123 0.064001 0.009635 -0.384964 0.263986 0.048628 -0.160819 0.076910 -0.038292 -0.271402 0.056405 -0.160563 0.133449 -0.213268 0.019920 -0.220722 -0.107197 -0.261829 0.103177 -0.197172 -0.249392 0.038858 0.171940 0.353763 0.152851 -0.182399 0.246892 -0.116255 0.064242 -0.399758 0.631279 -0.239453 0.106469 -0.377915 -0.070115 -0.129647 0.411151 0.018980 -0.030555 0.165898 -0.077239 0.173204 0.496971 0.165358 0.094412 0.114861 0.339207 0.085525 0.048982 -0.029303 0.325288 -0.067848 0.012571 0.122012 -0.172845 0.197385 0.014790 -0.036545 0.399399 0.403974 -0.088995 0.245487 0.179694 0.199252 -0.154400 0.178474 0.025816 0.378240 -0.117683 0.043544 -0.025753 0.044870 -0.168403 0.133783 -0.341205 -0.382094 0.154007 -0.229562 -0.076458 0.229987 -0.023723 0.042852 0.124349 -0.381034 -0.094659 0.022612 -0.191255 0.188176 -0.014701 0.111683 0.259365 0.390275 -0.190001 -0.239648 -0.002498 -0.080009 -0.127920 -0.068424 -0.147443 0.223762 -0.365918 0.132946 0.165409 -0.101269 -0.077372 0.040507 0.414465 -0.209244 0.484187 0.195786 0.028391 0.414686 0.305020 0.665044 0.015395 -0.157214 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_base(int**) = -0.225404 -0.208247 0.300529 0.275523 0.092962 0.111533 0.106293 -0.153033 0.344384 0.258376 -0.002481 -0.000119 -0.289078 0.075720 0.044559 0.220410 -0.117729 -0.251581 -0.023699 -0.162641 -0.120182 -0.247729 0.103035 -0.062355 0.092009 -0.066673 -0.147282 -0.034356 -0.290284 -0.232226 0.157085 -0.122155 0.158532 0.002233 -0.019619 -0.479253 0.218266 0.170488 -0.106398 -0.249112 0.043645 -0.182122 0.168309 -0.023297 0.070962 0.109899 0.051341 -0.099179 0.214059 0.090907 0.273034 -0.055106 -0.014914 0.370901 -0.267777 0.184711 0.042679 -0.031173 -0.095999 0.069841 0.061059 0.024544 0.206471 0.208566 -0.149162 -0.151231 -0.060387 -0.116954 -0.349584 0.192785 -0.098726 -0.032622 -0.218611 -0.103224 -0.075949 -0.157948 -0.380365 0.091982 0.405001 -0.191509 0.268800 0.105209 0.175905 0.027250 0.167859 0.013593 0.241013 0.032628 -0.206864 0.048099 -0.005416 -0.003646 -0.015142 0.194581 -0.030660 -0.001421 0.123055 0.023850 -0.271558 0.150336 0.026678 0.126937 -0.385259 0.036597 0.105914 0.166958 -0.183357 -0.344003 -0.162489 0.051172 0.053551 -0.077509 -0.000709 -0.225914 -0.157720 -0.171084 -0.264907 -0.134843 -0.003364 -0.241905 -0.218641 0.259403 -0.196025 0.043364 0.020617 0.079423 -0.099572 0.304450 0.027597 0.215306 0.011565 -0.079684 -0.607952 -0.074143 0.113059 0.280295 -0.013979 0.052950 -0.125222 -0.029234 -0.196533 0.031418 0.024655 0.139322 0.400269 -0.110417 -0.154927 -0.059560 0.058134 -0.366786 0.128342 -0.226964 0.143319 0.019557 0.216503 0.186046 0.197012 0.515954 -0.250554 0.158209 -0.118953 -0.103841 0.207507 0.105551 0.190448 -0.124770 -0.178372 0.074633 0.200819 -0.015514 0.150240 -0.135047 -0.008376 -0.230261 -0.036378 0.106977 0.066861 -0.071714 0.177106 0.092194 0.370578 -0.308649 0.121185 0.155775 0.052744 0.066938 -0.028140 -0.281777 0.150704 0.051329 -0.101872 0.088385 -0.030764 -0.174700 0.040020 -0.132961 0.136935 -0.205229 0.073518 -0.172525 0.000953 -0.210023 0.013118 -0.135867 -0.153200 0.029394 0.082437 0.271986 0.051278 -0.159522 0.207580 0.002490 0.074578 -0.294968 0.351262 -0.172816 0.210346 -0.263982 -0.016966 -0.080345 0.260414 0.030174 -0.003246 0.133624 -0.066369 0.096219 0.353496 0.111058 0.053205 0.061619 0.248399 0.052169 0.061636 -0.034075 0.260311 -0.018273 -0.001319 0.099092 -0.139476 0.109073 -0.010451 -0.039295 0.228394 0.312033 -0.086438 0.140943 0.137539 0.161045 -0.118267 0.145332 0.038226 0.265695 -0.103465 0.020814 -0.007653 0.101593 -0.115761 0.057189 -0.246830 -0.268670 0.037765 -0.209260 -0.060730 0.194512 -0.030506 0.031813 0.066248 -0.216722 -0.098761 0.176083 -0.147332 0.284194 -0.032611 0.105759 0.198413 0.301280 -0.135068 -0.166093 -0.044028 -0.090003 -0.087588 -0.031048 -0.106133 0.184585 -0.237728 0.071006 0.112155 -0.089419 -0.017196 0.118281 0.206266 -0.155201 0.365773 0.146038 0.037918 0.341725 0.192874 0.496320 -0.011169 -0.124586 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.600533 -1.041844 1.619427 1.378216 0.272507 0.824195 0.348432 -0.969565 1.237401 0.824992 -0.097873 0.440667 -1.041300 0.234132 -0.205923 0.650773 -0.779620 -1.056540 -0.228010 -0.821215 -0.429342 -0.965398 0.074700 0.386226 0.440356 -0.250667 -0.766871 -0.077036 -1.603033 -1.143458 0.696661 -0.314285 0.750462 -0.395423 0.127330 -2.621557 1.210629 1.137690 -0.347127 -1.394591 0.259019 -0.779689 0.106371 -0.022152 -0.119568 0.375091 0.097134 -0.054510 0.690456 0.322989 0.587278 0.253894 0.071668 2.066610 -0.834538 1.101037 0.550737 -0.078823 -0.202771 0.430875 0.209935 0.203810 0.878244 0.731327 -0.495081 -0.764550 -0.009124 -0.210427 -1.337781 0.839785 -0.013782 -0.506149 -0.676640 -0.271593 -0.959093 -0.485960 -0.277710 0.616621 1.775421 -0.746316 1.313062 0.303794 0.730842 0.109496 0.998606 -0.045259 1.304664 0.330009 -0.795121 -0.079795 -0.875931 -0.099307 0.007694 0.551060 -0.581196 -0.736472 0.583724 -0.866924 -1.355223 0.707489 0.165430 -0.031934 -1.519198 -0.304246 0.737274 0.565348 -0.725766 -1.431942 -0.780584 0.742669 -0.177944 -0.582476 0.115169 -0.785590 -0.314953 -0.590908 -1.144516 -0.258714 0.451873 -0.750119 -0.949387 1.299483 -0.721874 0.232589 -0.095633 0.433281 -0.473226 0.811847 -0.071659 0.766555 0.150398 -0.288901 -1.836737 -0.212697 0.288959 0.880497 -0.271666 -0.064174 -0.364144 0.322380 -0.555130 0.486022 -0.252503 0.719263 1.224016 -0.274696 -0.640699 -0.540598 0.282768 -1.408026 0.284458 -0.847252 -0.359021 0.176949 1.059271 0.645336 0.687662 1.521575 -0.881449 0.838324 -0.281706 -0.121386 0.831636 -0.182395 0.636238 -0.649011 -1.029228 0.492739 0.691402 0.269530 0.353213 -0.414711 -0.048423 -0.801910 -0.616477 0.285439 0.393846 -0.044838 1.061487 0.723096 1.753884 -1.558723 0.402491 0.444284 -0.320849 0.359752 -0.292614 -1.328025 0.374052 0.454921 -0.143166 1.310058 -0.209046 -0.910854 0.316269 -0.131975 0.484701 -0.898665 0.527041 -0.970127 -0.156025 -0.750132 -0.304326 -0.639017 -0.596633 -0.635652 -0.295261 1.426601 -0.614980 -1.339731 1.270851 -0.297445 0.461088 -1.908107 1.123138 -0.765176 0.862263 -0.630826 -0.015004 -0.277317 0.845053 -0.487015 0.365510 0.654365 -0.814249 0.824125 1.605596 0.387941 0.354190 0.111475 0.938577 -0.094589 0.174608 -0.714513 1.243209 -0.217186 -0.331677 0.021785 -0.617787 0.484166 -0.236346 0.098818 0.485949 1.081029 -0.080485 0.339442 1.092934 0.528264 -0.541642 0.734585 -0.082111 0.671883 -0.478785 -0.083351 -0.082688 0.334054 -0.145825 0.541221 -1.456299 -1.280974 -0.790929 -1.401241 0.026195 0.395973 0.070620 0.159479 0.090045 -1.550323 -0.730583 0.763019 -0.530834 1.233923 0.573062 0.702596 0.916894 1.246004 -0.532897 -0.317028 -0.171861 -0.144957 -0.506149 -0.455557 -0.607933 0.972991 -0.782057 0.717088 0.879677 -0.201940 0.366110 0.139859 0.700485 -0.816486 1.692227 0.748005 -0.360787 0.901222 0.718540 1.786064 -0.230132 -0.709979 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.387749 -2.830341 3.437951 2.989720 1.054548 2.502771 0.428061 -1.737552 1.994820 2.561661 -0.781074 1.714182 -1.936048 -0.015437 -0.404853 0.966785 -1.069674 -2.179832 -0.046583 -1.051753 -0.247515 -2.099729 -0.914266 1.817814 0.592626 -0.462791 -1.425731 0.472712 -4.023316 -3.881001 0.419131 -0.453275 1.523534 -1.308139 0.793483 -4.193807 2.757834 3.260757 -0.292282 -3.718997 0.287465 -1.228927 -0.460464 0.950746 -0.089163 1.542769 0.738089 -0.312462 0.577840 1.032793 0.859848 0.208288 0.980983 3.287686 -0.558443 2.904885 2.012975 -0.107171 0.502293 0.828151 0.339066 0.069805 1.747007 1.570387 -1.006560 -1.047064 0.158903 0.641621 -2.445738 1.295469 -0.049696 -1.540252 -1.030660 -0.613771 -2.319734 -0.551378 0.455631 0.776670 3.923093 -0.738261 3.491029 1.060093 2.009712 0.225836 2.675305 -0.222570 2.600210 1.072201 -2.131711 -0.000464 -2.034820 -0.676603 -0.082439 1.636607 -1.820255 -0.663668 1.121304 -2.764050 -2.834291 2.012393 -0.335948 -0.499620 -2.807065 -0.750611 1.822378 1.267579 -1.296142 -2.986843 -1.572940 2.154787 -1.019851 -1.585795 0.300082 -1.355503 -0.419769 -0.184829 -1.932689 -0.542632 1.956727 -1.747634 -1.841424 2.866977 -0.804076 1.275978 -0.506167 0.684790 -0.635059 0.862693 0.439333 1.569074 0.082674 -0.979631 -3.764813 0.069747 0.234173 0.060557 -1.012436 -0.151998 0.180677 1.058194 0.001532 1.901883 -1.409834 1.636451 2.603038 -0.061355 -1.058615 -1.915866 0.308612 -2.275786 0.435339 -1.419855 -1.701201 -0.003592 2.354559 0.324189 0.921366 2.512839 -1.744781 1.337177 -0.556726 0.205015 0.972120 -1.197044 0.839838 -1.380293 -2.366403 1.480603 2.269941 0.509939 0.968731 -1.149870 0.021150 -0.928888 -1.344066 1.223838 0.656850 0.248702 2.844945 1.588133 4.040474 -2.262296 0.231799 0.181962 -0.915273 0.791330 -1.010555 -2.941728 0.679820 1.084144 0.661145 3.606004 -0.462979 -1.737975 1.044984 0.099487 0.744418 -2.016401 2.069713 -2.441320 -0.070683 -1.008320 -1.059365 -1.382750 -1.337908 -1.920117 -0.522487 3.120854 -1.184863 -3.177968 2.094293 -0.849620 0.659644 -4.156625 1.352500 -1.634279 1.904802 -0.407949 0.063399 -0.484897 1.482523 -0.716775 0.508464 1.574015 -2.171788 2.445416 2.551073 0.538284 0.363977 0.585134 1.322787 -0.518651 -0.693852 -1.980961 1.950209 -0.451639 -0.251271 -0.453120 -1.362824 1.557376 -0.267429 -0.348303 -0.485449 1.891806 -0.970915 -0.093498 2.552451 0.137811 -1.034062 1.428750 -0.256381 1.481213 -1.259119 -0.416312 -1.078382 0.480449 0.474308 1.265427 -3.381097 -1.835429 -2.166972 -3.222100 -0.422534 1.020178 0.504124 0.966949 0.350243 -3.597186 -1.831468 2.599414 -0.835913 2.400840 1.644838 1.783701 1.983429 1.985008 -0.202787 -0.708741 -1.123648 -0.451944 -1.797959 -1.042331 -0.516172 1.706456 -1.330383 2.030457 1.444460 -0.204508 0.984551 0.131883 0.642046 -1.956640 3.468964 2.116024 -1.116894 0.902719 1.026921 3.602255 -1.947186 -1.663723 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.340255 -0.382649 0.604634 0.544547 0.183334 0.236679 0.296519 -0.364610 0.683350 0.509635 0.056782 0.020530 -0.522626 0.158155 0.072919 0.426760 -0.278970 -0.479441 -0.050081 -0.380909 -0.267505 -0.471550 0.193627 -0.113831 0.194867 -0.268710 -0.301676 -0.188569 -0.557367 -0.372756 0.402672 -0.219470 0.315120 -0.137270 -0.066269 -1.254217 0.453251 0.285612 -0.217806 -0.486426 0.096133 -0.365485 0.258373 -0.041080 0.100314 0.112877 0.068097 -0.015631 0.431051 0.166382 0.471358 0.009723 -0.049656 1.023234 -0.575972 0.382793 0.085176 -0.053051 -0.211805 0.245416 0.117068 0.068975 0.431050 0.400009 -0.235788 -0.312479 -0.052295 -0.227971 -0.693098 0.402077 -0.025090 -0.099500 -0.397362 -0.089969 -0.180453 -0.310758 -0.635170 0.256647 0.791343 -0.405012 0.531029 0.173461 0.353155 0.055108 0.352551 0.003844 0.562426 0.054474 -0.401403 -0.028889 -0.254238 -0.024938 -0.020728 0.238561 -0.051982 -0.289366 0.203531 0.096961 -0.556464 0.296395 0.078792 0.200798 -0.793983 -0.058538 0.312019 0.282576 -0.374943 -0.695623 -0.450012 0.154786 -0.035827 -0.187219 0.059578 -0.513654 -0.249921 -0.390890 -0.512688 -0.251143 0.033461 -0.415466 -0.536697 0.531272 -0.432402 0.060374 0.035358 0.182432 -0.209024 0.454388 -0.005632 0.401000 0.188155 -0.163670 -1.166914 -0.119471 0.215683 0.639846 0.062993 0.073775 -0.290614 0.042818 -0.404953 0.145592 0.112344 0.349773 0.674349 -0.187702 -0.304563 -0.123347 0.322151 -0.622031 0.274951 -0.440320 0.184271 -0.013400 0.442335 0.354647 0.376318 0.794309 -0.488294 0.475365 -0.224507 -0.077311 0.424808 0.128502 0.361972 -0.254280 -0.369988 0.067681 0.384793 0.005128 0.177176 -0.250614 -0.024243 -0.439870 -0.207137 -0.001388 0.138030 -0.171026 0.325690 0.208060 0.913616 -0.832615 0.258876 0.305855 0.016902 0.147802 -0.083378 -0.570798 0.251226 0.139024 -0.234100 0.302668 -0.076387 -0.464610 0.070312 -0.172776 0.224910 -0.326693 0.092331 -0.352961 -0.138562 -0.357501 -0.012488 -0.300999 -0.291140 -0.047272 0.100874 0.556584 -0.008744 -0.436360 0.523408 -0.184858 0.098791 -0.735891 0.877385 -0.327805 0.191825 -0.557119 -0.064676 -0.205600 0.647839 -0.085273 0.124445 0.260489 -0.240278 0.291899 0.837639 0.206015 0.227334 0.077740 0.488944 0.092808 0.074241 -0.148882 0.599879 -0.104865 -0.079458 0.083017 -0.274983 0.281976 -0.040020 0.019049 0.409942 0.578884 -0.144789 0.253982 0.395200 0.298714 -0.235927 0.339178 0.027718 0.431813 -0.173087 0.068349 0.000529 0.065711 -0.229948 0.219791 -0.526710 -0.505961 0.023059 -0.437420 -0.031503 0.375389 -0.047989 0.029217 0.114590 -0.618627 -0.183098 0.168627 -0.283437 0.342963 0.081672 0.238788 0.386249 0.617825 -0.272710 -0.252675 -0.076537 -0.186529 -0.197533 -0.200425 -0.207666 0.382776 -0.459919 0.260647 0.239912 -0.084395 -0.006389 0.125511 0.448602 -0.292170 0.728363 0.290638 0.059894 0.556276 0.420719 0.988053 -0.042616 -0.249778 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.236804 -1.022159 1.993408 1.692915 -0.351989 0.741585 0.234595 -1.423046 1.669136 -0.350927 -0.007630 0.173589 -1.377258 0.518202 -0.474697 0.548298 -1.590542 -1.278676 -0.652109 -1.255888 -0.779626 -1.121102 0.430918 0.527564 0.645021 0.452187 -0.984089 -0.093231 -1.718864 0.148440 1.649257 -0.332415 0.958796 0.607571 0.258950 -3.577300 1.280678 1.053131 -0.462387 -1.422451 0.300793 -1.272648 0.263565 -1.009347 -0.459740 0.054063 -0.324786 0.452255 1.130995 -0.127288 0.111795 0.494167 -0.599565 2.611524 -1.318987 1.036759 0.370235 -0.038398 -0.502298 0.305737 0.305977 0.575587 1.013008 0.776273 -0.765001 -1.244629 -0.081615 -0.967763 -1.620484 1.326027 0.180029 -0.239811 -1.081984 -0.454155 -1.387256 -0.654597 -0.475185 1.392024 1.990013 -1.472246 1.127716 0.052192 0.650352 0.033087 1.036960 -0.048757 1.744453 0.314642 -0.623439 -0.009687 -1.625163 -0.053906 0.086358 -0.198072 -0.687532 -1.526449 0.720258 -1.489861 -1.685648 0.416878 0.583211 -0.056852 -1.552954 -0.205900 0.743198 0.530389 -0.879708 -1.549853 -0.537673 0.777560 0.179169 -0.534856 0.083450 -0.364788 -0.327324 -1.523630 -1.697770 -0.139111 0.211464 -0.667706 -0.533882 1.555539 -1.288273 -0.155255 -0.074743 0.384159 -0.718909 1.628346 -0.418624 0.541048 0.250057 -0.214455 -1.178388 -0.326358 0.351934 2.226357 -0.354530 -0.250488 -0.590016 0.317184 -1.129136 -0.231437 -0.007688 0.432690 0.814072 -0.631092 -0.937480 -0.386616 -0.028408 -2.134268 0.151524 -1.158706 -0.235446 0.851690 1.213458 1.706589 0.971074 2.054697 -1.038354 0.992706 -0.188212 -0.256994 1.298566 0.498043 0.897776 -0.805887 -1.194610 0.662206 -0.183598 0.511121 0.333651 -0.309241 -0.170856 -1.324282 -0.846091 0.270314 0.719149 0.093032 1.216623 0.980150 0.667737 -2.212458 0.794637 0.771619 -0.401061 0.420555 -0.057545 -1.493427 0.616540 0.418024 -0.465179 1.248531 -0.379887 -0.888005 0.207192 -0.159798 0.777068 -1.138217 0.022004 -1.018361 -0.298005 -1.494088 0.120664 -0.649758 -0.660999 -0.770708 -0.800966 1.742362 -1.169410 -1.471038 1.935171 -0.017621 1.278354 -2.091808 0.820885 -0.871993 1.457647 -0.687477 -0.040009 -0.152786 0.252648 -0.873097 0.438231 0.738280 -0.756856 0.363968 1.949297 0.527513 0.400486 0.080804 1.357786 -0.088345 0.904133 -0.813690 1.680926 -0.151160 -0.697220 0.417354 -0.744186 0.148154 -0.546444 0.494628 1.696177 1.482295 1.048244 0.962609 1.111151 0.956033 -0.725187 0.608724 -0.170318 0.378697 -0.530307 -0.085589 0.364225 0.726652 -0.447728 0.449159 -1.656610 -2.557034 -1.286107 -1.660621 0.287323 -0.413104 -0.022787 -0.073895 -0.154954 -1.559726 -0.912349 0.157565 -0.784061 2.103093 0.555961 0.719461 1.125604 1.822732 -1.398469 -0.199330 0.774438 0.338005 -0.205261 -0.183870 -1.644014 1.484582 -0.899954 0.594614 1.854933 -0.460234 0.585333 -0.057795 1.611583 -0.904806 2.102839 0.634882 -0.892290 1.328845 0.971464 1.630529 1.089442 -0.900239 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.403912 -0.589299 1.147226 0.962464 0.082717 0.399730 0.329616 -0.763967 1.038925 0.399654 0.072736 0.118382 -0.809995 0.292254 -0.146443 0.569383 -0.692213 -0.767701 -0.264836 -0.751321 -0.468647 -0.677177 0.318358 0.021732 0.395551 -0.202629 -0.592550 -0.214945 -0.984798 -0.458602 0.754731 -0.278890 0.550032 -0.167143 -0.040821 -2.199558 0.812631 0.596355 -0.356859 -0.804298 0.246446 -0.658228 0.250558 -0.256733 -0.117267 0.085262 -0.057311 0.008828 0.710557 0.147703 0.520995 0.255150 -0.151818 1.740002 -0.895066 0.642446 0.181859 -0.071413 -0.374042 0.330074 0.176165 0.231130 0.655302 0.519900 -0.363841 -0.681163 -0.051595 -0.417444 -1.051629 0.716129 -0.005815 -0.242494 -0.583683 -0.182925 -0.602837 -0.465738 -0.473091 0.565863 1.226947 -0.737837 0.763316 0.118457 0.411631 0.079839 0.573177 -0.000710 0.968543 0.141298 -0.461802 -0.097029 -0.574964 0.042019 0.028023 0.279938 -0.263069 -0.738375 0.441126 -0.372283 -0.972748 0.380239 0.282926 0.091227 -1.187453 -0.187758 0.462335 0.387762 -0.577842 -1.034878 -0.580796 0.381484 0.029512 -0.327367 0.069043 -0.642042 -0.289196 -0.683493 -0.934183 -0.192280 0.074239 -0.500653 -0.723085 0.896807 -0.694025 -0.024230 0.008417 0.364345 -0.425490 0.788981 -0.191702 0.562536 0.169667 -0.119426 -1.356541 -0.277710 0.300902 1.072776 -0.079991 -0.036988 -0.494285 0.134945 -0.685961 0.133763 0.040749 0.487156 0.876459 -0.323920 -0.529390 -0.194830 0.280718 -1.173300 0.250066 -0.697072 -0.013692 0.212558 0.727262 0.713621 0.622130 1.260935 -0.662430 0.707884 -0.215210 -0.198578 0.785045 0.074585 0.579299 -0.459748 -0.684896 0.239191 0.303366 0.201296 0.199864 -0.233714 -0.064347 -0.760472 -0.427139 0.048739 0.321597 -0.121703 0.606631 0.496550 1.178801 -1.367483 0.439784 0.504152 -0.164542 0.248878 -0.112606 -0.915014 0.297764 0.292383 -0.341711 0.721157 -0.143407 -0.698212 0.132102 -0.190540 0.413776 -0.610143 0.140150 -0.595177 -0.176917 -0.675322 -0.111543 -0.449409 -0.408836 -0.304223 -0.224074 0.989632 -0.454028 -0.865911 1.047514 -0.161898 0.399733 -1.327462 1.065280 -0.541718 0.586771 -0.685826 -0.036326 -0.226274 0.689355 -0.416485 0.322554 0.419978 -0.467404 0.416062 1.354664 0.346229 0.348586 -0.002930 0.832293 0.015424 0.379617 -0.389131 1.052595 -0.157264 -0.341522 0.138875 -0.427466 0.220764 -0.221353 0.203089 0.719323 0.870988 0.129488 0.441961 0.717903 0.615181 -0.413120 0.554882 -0.035672 0.471495 -0.280661 0.003175 0.159612 0.288711 -0.299862 0.356313 -0.961377 -1.120952 -0.427934 -0.929181 0.131330 0.248344 -0.038549 -0.039291 0.029496 -1.026757 -0.445936 0.299857 -0.449987 0.920969 0.296833 0.426489 0.642790 1.048458 -0.603897 -0.222465 0.059769 -0.074435 -0.185350 -0.306129 -0.615606 0.776413 -0.641252 0.385706 0.720458 -0.197297 0.202733 0.142204 0.708024 -0.524214 1.233083 0.403710 -0.162015 0.891515 0.635981 1.326162 0.189120 -0.464670 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.597181 -1.146650 1.746159 1.506355 0.241895 0.893340 0.375586 -1.019144 1.274986 0.909717 -0.088491 0.516690 -1.098944 0.179460 -0.144874 0.692699 -0.839574 -1.078277 -0.248059 -0.852658 -0.425327 -0.997377 -0.002008 0.509052 0.473445 -0.207935 -0.792869 -0.059672 -1.654869 -1.294377 0.631837 -0.303629 0.809109 -0.412161 0.220568 -2.734624 1.305478 1.289456 -0.352821 -1.532089 0.256723 -0.765818 0.111765 -0.016040 -0.196362 0.442643 0.120080 -0.044211 0.666565 0.365272 0.543403 0.283064 0.222985 2.137264 -0.748309 1.199830 0.673460 -0.076860 -0.156784 0.400609 0.245697 0.195113 0.906930 0.688980 -0.477859 -0.805047 -0.056766 -0.165983 -1.384603 0.840180 0.016760 -0.589487 -0.745759 -0.339900 -1.102240 -0.519679 -0.339347 0.660534 1.874045 -0.825361 1.404468 0.392689 0.745113 0.159297 1.087188 -0.044429 1.368428 0.381031 -0.816821 0.036567 -0.912139 -0.223825 0.056001 0.494362 -0.692829 -0.936787 0.625841 -1.035509 -1.474868 0.818252 0.186636 -0.087598 -1.560195 -0.427767 0.773982 0.617042 -0.787555 -1.497488 -0.804339 0.807600 -0.180784 -0.640879 0.139057 -0.720349 -0.266620 -0.543218 -1.229742 -0.215275 0.562059 -0.767361 -0.916559 1.383862 -0.690643 0.315482 -0.129116 0.424818 -0.494414 0.853200 -0.025048 0.825196 0.099360 -0.280487 -1.794683 -0.227547 0.268023 0.789457 -0.258368 -0.112282 -0.335102 0.401965 -0.479598 0.634182 -0.252220 0.766730 1.240116 -0.214142 -0.645450 -0.651483 0.136302 -1.460521 0.322553 -0.840018 -0.417429 0.255251 1.117251 0.587891 0.676226 1.459325 -0.887996 0.778765 -0.305281 -0.098791 0.834741 -0.201223 0.653233 -0.660592 -1.094198 0.566565 0.765262 0.379454 0.382842 -0.430321 -0.019669 -0.746297 -0.641315 0.263718 0.398113 -0.071312 1.170669 0.804267 1.847601 -1.481135 0.368132 0.402560 -0.353592 0.407511 -0.336048 -1.413444 0.378531 0.474537 -0.120464 1.428476 -0.252044 -0.893748 0.413965 -0.135724 0.473505 -0.956016 0.591094 -1.049794 -0.152004 -0.795732 -0.282700 -0.715257 -0.625955 -0.758831 -0.333885 1.546626 -0.697973 -1.362920 1.319039 -0.292276 0.497158 -1.948506 1.210057 -0.769411 0.936682 -0.608868 -0.063707 -0.223166 0.794213 -0.518529 0.292536 0.707526 -0.885414 0.809526 1.599383 0.388734 0.300381 0.131586 0.953354 -0.141695 0.199208 -0.831106 1.317188 -0.262255 -0.307900 -0.005557 -0.634697 0.542308 -0.246005 0.084219 0.430468 1.049600 -0.075422 0.284608 1.134249 0.500340 -0.588890 0.784755 -0.045973 0.690550 -0.549938 -0.062086 -0.142568 0.379010 -0.110961 0.605634 -1.562203 -1.252972 -0.919120 -1.400158 -0.052440 0.472220 0.105754 0.181509 0.052027 -1.604886 -0.847417 0.928591 -0.550225 1.096237 0.655360 0.757282 1.024907 1.292357 -0.464435 -0.320344 -0.190875 -0.181523 -0.519860 -0.490428 -0.603661 1.024496 -0.815224 0.766165 0.943968 -0.207521 0.442905 0.062699 0.748852 -0.887941 1.782925 0.783305 -0.442272 0.874354 0.861628 1.852602 -0.365518 -0.768963 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.370988 -3.354369 4.071611 3.630417 0.901489 2.848493 0.563831 -1.985445 2.182748 2.985290 -0.734166 2.094295 -2.224268 -0.288795 -0.099608 1.176416 -1.369444 -2.288519 -0.146828 -1.208970 -0.227438 -2.259622 -1.297803 2.431941 0.758070 -0.249128 -1.555723 0.559531 -4.282496 -4.635593 0.095007 -0.399995 1.816769 -1.391828 1.259674 -4.759138 3.232078 4.019589 -0.320752 -4.406487 0.275985 -1.159572 -0.433492 0.981306 -0.473135 1.880528 0.852816 -0.260968 0.458385 1.244210 0.640473 0.354138 1.737565 3.640960 -0.127298 3.398850 2.626590 -0.097355 0.732227 0.676821 0.517880 0.026317 1.890437 1.358651 -0.920446 -1.249550 -0.079311 0.863841 -2.679848 1.297442 0.103014 -1.956943 -1.376252 -0.955309 -3.035469 -0.719971 0.147442 0.996234 4.416215 -1.133486 3.948062 1.504565 2.081067 0.474843 3.118212 -0.218422 2.919029 1.327307 -2.240212 0.581343 -2.215858 -1.299192 0.159098 1.353114 -2.378422 -1.665243 1.331885 -3.606976 -3.432519 2.566208 -0.229918 -0.777942 -3.012052 -1.368219 2.005918 1.526050 -1.605086 -3.314572 -1.691714 2.479442 -1.034050 -1.877810 0.419523 -1.029299 -0.178103 0.053621 -2.358817 -0.325434 2.507661 -1.833842 -1.677280 3.288871 -0.647925 1.690441 -0.673579 0.642475 -0.740998 1.069458 0.672392 1.862280 -0.172517 -0.937557 -3.554542 -0.004503 0.129491 -0.394645 -0.945943 -0.392539 0.325888 1.456120 0.379191 2.642686 -1.408417 1.873787 2.683535 0.241414 -1.082370 -2.470292 -0.423721 -2.538261 0.625814 -1.383685 -1.993241 0.387916 2.644460 0.036966 0.864186 2.201590 -1.777513 1.039383 -0.674597 0.317991 0.987649 -1.291185 0.924814 -1.438198 -2.691254 1.849731 2.639245 1.059560 1.116875 -1.227920 0.164919 -0.650824 -1.468260 1.115235 0.678184 0.116334 3.390857 1.993987 4.509059 -1.874353 0.060004 -0.026661 -1.078985 1.030123 -1.227721 -3.368820 0.702216 1.182228 0.774652 4.198095 -0.677967 -1.652443 1.533462 0.080743 0.688439 -2.303155 2.389981 -2.839657 -0.050581 -1.236319 -0.951235 -1.763947 -1.484520 -2.536011 -0.715609 3.720980 -1.599828 -3.293911 2.335234 -0.823776 0.839995 -4.358618 1.787094 -1.655456 2.276898 -0.298159 -0.180112 -0.214143 1.228319 -0.874346 0.143594 1.839818 -2.527613 2.372420 2.520010 0.542252 0.094931 0.685689 1.396671 -0.754179 -0.570852 -2.563929 2.320104 -0.676983 -0.132386 -0.589828 -1.447373 1.848084 -0.315722 -0.421301 -0.762855 1.734658 -0.945599 -0.367667 2.759026 -0.001810 -1.270301 1.679601 -0.075689 1.574552 -1.614885 -0.309988 -1.377783 0.705228 0.648631 1.587490 -3.910618 -1.695419 -2.807928 -3.216687 -0.815709 1.401412 0.679793 1.077099 0.160156 -3.870000 -2.415642 3.427275 -0.932869 1.712406 2.056329 2.057128 2.523494 2.216774 0.139521 -0.725317 -1.218721 -0.634774 -1.866515 -1.216690 -0.494813 1.963979 -1.496217 2.275844 1.765914 -0.232414 1.368525 -0.253918 0.883881 -2.313915 3.922453 2.292527 -1.524317 0.768382 1.742363 3.934945 -2.624112 -1.958646 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.947438 -1.716138 1.719562 1.445471 0.226618 1.048015 0.578200 -0.505268 1.446804 1.185643 -0.916462 0.347133 -1.263806 -0.161925 -0.107063 0.359847 -0.998224 -1.614905 0.288611 -0.299947 0.179817 -1.505068 -0.338231 0.966363 0.180438 -0.439136 -0.417198 -0.011552 -1.966216 -1.027158 0.618517 -0.635462 0.867227 0.069433 0.394530 -2.360873 1.184826 1.372063 -0.127075 -2.164869 -0.046053 -1.023869 -0.084388 0.108463 -0.394816 0.739564 0.637551 0.582725 0.134151 0.195865 0.373806 -0.415420 0.131662 2.076251 -0.358050 1.288178 0.685046 -0.179166 0.256459 0.307977 0.485139 -0.052356 1.221979 1.351097 -0.552719 -0.341347 -0.032682 -0.053396 -1.636106 0.906480 0.017709 -0.033716 -0.743987 0.060788 -1.302297 -0.252226 0.051932 1.015487 2.457022 -0.550809 2.004709 1.056716 1.480657 -0.247036 1.007095 -0.032135 1.889792 0.472521 -1.056880 -0.277313 -1.805084 -0.757306 -0.270889 0.116839 -0.581569 -0.171684 0.569892 -1.516411 -1.368400 0.735989 -0.295659 -0.143161 -1.042637 0.091431 1.174290 0.914472 -0.434460 -1.594430 -1.216770 0.888401 -0.668670 -0.686309 0.326568 -0.186549 -0.186030 -0.663083 -1.023795 -0.749379 0.765946 -1.273637 -0.334846 1.404425 -0.975415 0.677751 -0.017996 0.132921 0.014684 0.693010 0.501775 0.717511 0.755182 -1.111756 -2.115860 0.251045 0.086632 0.818430 -0.095416 0.177617 0.456976 0.541353 -0.112708 0.358488 -0.339423 0.580897 1.034008 -0.500901 -0.558373 -1.278149 0.319374 -1.101951 0.152165 -1.080366 -0.257310 0.480778 1.369469 1.071733 0.628194 1.859083 -1.333940 1.291478 -0.342465 0.110120 0.270738 -0.328659 0.340978 -0.542904 -1.132897 0.537461 1.298456 0.522135 0.462626 -0.962403 -0.315865 -0.792708 -1.173736 0.767395 0.541702 0.492921 1.618604 0.733714 1.030348 -1.865386 0.521746 0.362378 -0.068256 0.229313 -0.292900 -1.900833 0.874429 0.244607 0.285212 1.099717 -0.333293 -0.702294 0.397560 -0.186993 0.196319 -1.249825 0.665156 -1.262948 0.052898 -0.946858 -0.141625 -0.959452 -0.915296 -0.696173 0.015776 1.596320 -0.321123 -1.884353 1.058736 -0.748440 0.638198 -2.280235 0.818999 -0.981537 1.213896 -0.470021 0.006359 -0.571421 0.597933 -0.058110 -0.189469 0.905792 -0.988314 1.357018 1.234785 0.420250 0.166217 0.692110 0.909360 0.050487 -0.237974 -0.898060 0.716343 0.005503 -0.190342 -0.083271 -0.846855 1.219922 0.444813 0.066309 0.549228 1.466495 -0.287552 0.901460 1.349794 0.000000 -0.505047 0.460048 -0.138927 1.220668 -0.552189 0.065278 -0.847163 0.081677 -0.425965 0.628363 -1.775448 -1.630904 -1.328385 -1.529211 -0.484420 -0.407148 0.389554 0.557065 0.652898 -2.036633 -0.832337 0.355086 -0.433088 1.176098 0.604068 0.652173 1.135863 1.040985 -0.442569 -0.756104 -0.037437 -0.065408 -1.200835 -0.583191 -0.580105 0.643039 -1.203110 1.348833 1.022197 -0.389525 0.249487 0.091352 0.872347 -1.014786 2.201931 1.556453 -0.881797 0.516450 0.262097 1.731257 -0.550535 -1.075536 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::deque() = -0.266089 -0.409759 0.768164 0.503588 -0.039957 0.269698 0.211296 -0.591278 0.818416 0.152198 -0.085703 -0.070981 -0.634515 0.170870 -0.340911 0.326032 -0.471961 -0.558811 -0.142840 -0.509122 -0.334610 -0.596477 0.300633 0.020851 0.192451 0.060396 -0.241864 0.023315 -0.541642 -0.508647 0.556962 -0.210871 0.239850 0.017991 0.041207 -1.078586 0.569514 0.314778 -0.263865 -0.547624 0.111532 -0.288301 0.048236 -0.044043 0.015272 0.129067 0.029632 0.343524 0.433597 0.200417 0.414571 -0.038359 -0.090877 1.008798 -0.557530 0.481867 0.219211 0.123182 -0.132111 0.327650 0.072480 0.130529 0.275537 0.529400 -0.244672 -0.254489 0.034662 -0.295614 -0.716893 0.588059 -0.177524 -0.185922 -0.447337 -0.249364 -0.387211 -0.212583 -0.771490 0.350249 1.011031 -0.553163 0.535293 0.210558 0.401805 -0.066857 0.277514 -0.092136 0.632232 0.130452 -0.453697 -0.021138 -0.333185 0.003461 -0.072809 -0.018915 -0.158742 -0.584717 0.384809 -0.591127 -0.692575 0.271293 0.120174 0.102726 -0.531986 0.061425 0.360127 0.144290 -0.469718 -0.769312 -0.284456 0.238921 0.013916 -0.048105 0.146588 -0.179673 -0.149040 -0.284152 -0.698627 -0.269005 0.051330 -0.531948 -0.294551 0.568178 -0.315993 0.167928 0.133775 0.210596 -0.165051 0.648238 0.086449 0.343725 0.018644 0.070891 -0.769274 0.125793 0.193969 0.429521 -0.033694 0.155954 -0.114238 0.065861 -0.464042 0.011815 -0.283518 0.064849 0.496818 -0.268651 -0.452565 -0.074160 -0.003833 -0.903583 0.270190 -0.603860 -0.203596 0.033922 0.421008 0.592912 0.358957 0.897046 -0.562439 0.340338 -0.188222 -0.053640 0.282943 0.077585 0.444770 -0.277779 -0.541356 0.156715 0.211280 -0.008612 0.240078 -0.421725 -0.092467 -0.653627 -0.223421 0.188836 0.253637 -0.167911 0.374258 0.294057 0.450016 -0.737368 0.242062 0.352961 -0.027822 0.146827 -0.042915 -0.750455 0.342526 0.119666 0.107148 0.343557 -0.054928 -0.228028 0.195541 -0.218719 0.311704 -0.466996 -0.006496 -0.474395 -0.190075 -0.536893 0.269648 -0.261350 -0.230781 -0.031491 -0.102272 0.590902 -0.357865 -0.405980 0.783481 -0.022326 0.410496 -0.657564 0.515809 -0.301076 0.570390 -0.253313 0.096394 -0.165408 0.211341 0.025136 0.033132 0.198428 -0.119461 0.345313 0.800599 0.141968 0.234141 0.252366 0.643588 -0.141914 0.128442 -0.249838 0.587085 -0.088395 -0.373318 0.222179 -0.293305 0.118213 -0.242036 0.152529 0.622567 0.637294 -0.042834 0.448032 0.328850 0.338557 -0.264432 0.348402 0.027020 0.335200 -0.336056 0.016440 0.076461 0.146206 -0.362156 0.221447 -0.645590 -0.893140 -0.540197 -0.644818 -0.134913 -0.185338 0.088456 -0.073731 0.070651 -0.494463 -0.315599 0.477357 -0.315458 0.506730 0.242225 0.395221 0.507107 0.893809 -0.375717 -0.135971 0.103278 0.030169 -0.291258 -0.116449 -0.375146 0.369903 -0.381224 0.217869 0.455864 -0.078081 0.060943 0.017567 0.436794 -0.417703 0.755497 0.376655 -0.055046 0.668508 0.377183 0.906188 0.359238 -0.289770 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_base() = -0.480470 -2.023707 4.696366 3.124186 -1.159909 1.394607 0.779359 -3.489920 3.172122 1.119198 -0.422268 0.170847 -2.411237 0.666799 -0.745624 1.983898 -2.998952 -1.850028 -1.081341 -2.891208 -1.729630 -2.288966 1.196245 0.638862 1.219071 1.056989 -1.185983 -0.031029 -0.984309 -3.949466 2.425364 -0.471359 1.513478 0.247666 0.787546 -7.082717 3.285020 1.876049 -1.322914 -3.071704 0.729005 0.041194 -0.913278 0.689554 -1.148912 0.784463 -0.285571 2.260808 1.323936 1.640198 1.401199 0.401292 1.233228 5.678747 -1.286287 2.532965 1.908359 0.365120 -0.414516 1.518787 0.601373 0.883774 1.026884 2.028535 0.237081 -1.606105 0.318188 -1.066702 -3.386459 2.768682 -0.211003 -2.273600 -1.749149 -2.005180 -1.439477 -0.662484 -3.480294 2.354230 4.702170 -2.838102 2.418369 1.090848 1.015961 -0.442131 1.028868 -0.681937 2.972010 1.093901 -1.328440 0.153829 -0.727418 -1.551791 0.572754 -0.719009 -1.764048 -4.578578 2.284884 -2.921792 -3.246569 1.999203 1.385696 -0.580502 -2.501503 -1.222228 1.701803 0.567253 -2.143225 -3.124606 -1.881324 1.673632 -0.186989 -0.452803 -0.108156 0.462634 -0.404258 0.049564 -3.560082 -0.275174 0.886734 -1.808959 -0.986519 2.373289 -0.497894 0.805645 0.365276 1.217080 -1.029932 2.839836 0.568066 2.020871 0.344938 1.318212 -1.506227 1.246048 1.088262 0.527442 0.363007 -0.474578 -0.413857 1.061731 -1.605754 1.581759 -1.423657 0.736569 3.085853 -0.182130 -2.487764 -0.883143 -0.790438 -4.490108 1.252936 -2.986248 -1.666998 1.246415 1.830993 2.098545 1.217496 2.466878 -3.099273 1.660858 -1.000419 0.261281 0.611607 0.240031 1.669160 -1.296945 -2.778020 0.707156 1.092513 0.674021 0.972283 -1.958418 -0.245239 -2.392770 -1.773573 1.187412 1.336298 -0.972450 1.373128 2.159120 4.863818 -2.263003 0.296982 1.349833 -1.041066 0.394926 -0.167119 -3.820516 0.827042 0.596842 1.059845 3.130829 -0.422696 -0.590982 1.351304 -0.969490 0.643135 -1.737645 0.715510 -2.467038 -0.641926 -2.186968 0.817359 -1.575740 -0.606734 -0.819661 -0.749210 3.332001 -3.284833 -2.274926 4.478819 -1.221119 1.465711 -3.430256 3.645475 -0.919143 2.039964 -1.074271 -0.295700 -0.820706 -0.226081 -0.698818 0.508506 0.700195 -0.471513 1.029392 4.534508 0.320459 0.442827 0.714778 2.945477 -1.423989 1.058025 -2.094753 3.532556 -0.882813 -1.395655 -0.103244 -1.022238 0.179647 -2.046361 0.752429 2.054074 1.779389 -0.127683 1.208800 1.506485 1.480274 -1.443002 2.726532 0.434804 1.071096 -1.776061 -0.058623 0.712136 1.094308 -1.688428 1.519237 -3.385320 -3.395533 -4.360353 -2.944410 -1.495478 -0.288678 1.477508 -0.872438 -0.527768 -2.087828 -2.267038 3.556524 -1.282418 0.927798 2.281272 2.189564 2.839912 4.385026 -0.927056 0.197943 -0.253064 0.029454 -1.197651 -1.054035 -1.386303 1.959401 -1.022005 0.975765 2.666571 0.307054 1.294560 -0.843977 2.228464 -2.262266 3.472469 1.606169 -0.580300 2.272562 2.210536 3.241446 0.740545 -1.482582 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.078883 -0.690940 1.384196 1.155033 0.164837 0.582740 0.247283 -1.148698 1.438094 0.709342 -0.085908 0.159324 -0.866326 0.463878 -0.762234 0.845856 -0.795896 -0.896068 -0.363101 -0.926103 -0.698844 -0.923485 0.289364 -0.071102 0.449946 -0.272257 -0.693969 0.031137 -1.154038 -0.969437 0.669652 -0.297340 0.296169 -0.697769 0.100702 -1.804595 1.138277 0.804098 -0.425315 -1.030264 0.133714 -0.750514 0.050550 -0.147112 0.184219 0.109515 -0.159708 0.495415 0.825240 0.297085 0.784491 0.458047 -0.027283 2.252951 -1.034899 0.969975 0.311513 0.263579 -0.201114 0.704028 0.267989 0.415822 0.530171 0.718021 -0.208029 -0.703609 -0.147466 -0.234174 -0.854043 1.035861 -0.185663 -0.499547 -0.857488 -0.286429 -0.852952 -0.382285 -1.817978 0.702601 1.581285 -0.984062 0.794291 0.329787 0.686583 0.132020 0.765048 -0.198450 1.419421 0.277117 -0.673575 -0.125642 -0.554722 0.133581 0.106075 -0.203314 -0.530078 -1.427157 0.584849 -1.086397 -1.306163 0.529084 0.342101 0.055921 -0.791332 -0.085858 0.668192 0.146959 -0.709967 -1.276646 -0.472112 0.537131 0.074825 -0.414654 0.393723 -0.844851 -0.013737 -0.326171 -1.179538 -0.318364 0.177761 -0.621192 -0.776331 1.116244 -0.348568 -0.031324 -0.049153 0.266280 -0.271423 0.826657 -0.228381 0.900805 -0.174230 0.419092 -1.754351 0.515480 0.440064 0.228549 -0.089757 0.592131 -0.353161 0.297479 -0.848019 0.399909 -0.620845 0.444007 0.633240 -0.408239 -0.744608 -0.298937 0.202248 -1.119058 0.406599 -0.782272 -0.701156 -0.350738 0.940982 1.088685 0.723350 1.041991 -0.881542 0.521804 -0.207591 0.150373 0.831279 -0.266805 0.622504 -0.538269 -0.951575 0.383245 0.549626 0.016452 0.251621 -0.393394 -0.082704 -0.869485 -0.122064 0.179090 0.450473 -0.310170 0.978552 0.586888 1.053703 -1.589422 0.594354 0.606390 -0.218987 0.367654 -0.318369 -1.258799 0.500969 0.360370 0.339602 0.844140 -0.160615 -0.464825 0.204310 -0.263852 0.593183 -0.713829 -0.020132 -0.787273 -0.594708 -0.691360 0.476057 -0.411868 -0.314839 -0.257660 -0.376222 1.113082 -0.908270 -0.713004 1.518656 -0.320637 0.324235 -1.105034 1.109282 -0.602907 0.594524 -0.392648 0.172523 -0.227483 0.833260 -0.511065 0.351577 0.586309 -0.585436 0.636824 1.411603 0.299326 0.523051 0.139714 0.982080 -0.337714 0.265538 -0.572930 1.265945 -0.120861 -0.557448 0.057352 -0.589187 0.236325 -0.410783 0.339988 0.910920 0.870454 0.086302 0.444829 0.727273 0.706129 -0.561004 0.834049 -0.143803 0.203296 -0.590572 0.018394 0.182390 -0.121205 -0.493067 0.421275 -1.205478 -1.098778 -1.065011 -0.731765 0.162116 -0.232354 0.000590 -0.189355 -0.060551 -1.133135 -0.785729 0.889054 -0.578949 0.161828 0.492395 0.588489 0.714904 1.332008 -0.501335 0.077854 -0.212185 -0.244156 -0.272925 -0.539012 -0.498429 0.970216 -0.679718 0.485343 0.824501 -0.186300 0.302484 0.360606 0.419452 -0.594655 1.225808 0.592736 -0.079818 0.810657 1.030696 1.807134 0.188105 -0.652693 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.036435 -8.253968 17.727777 13.486268 -4.023140 6.051152 1.181458 -11.844130 10.188145 6.416142 -2.689727 3.159235 -7.126652 2.189367 -0.940030 8.089111 -11.783489 -5.767156 -3.374261 -8.936940 -5.604130 -7.524342 1.547681 3.597161 4.975833 4.714050 -5.515754 0.678888 -3.731741 -14.831554 6.197134 -1.461095 5.832112 0.223631 4.243780 -25.880562 12.379642 9.033180 -3.723118 -12.817715 1.861832 -0.737963 -3.251409 1.645462 -4.656396 3.423152 -1.282056 7.221374 3.774679 5.104237 2.892721 2.533773 6.466071 20.912212 -2.332295 9.625463 7.300736 0.163973 -0.874318 4.008958 3.814516 3.254285 4.731425 6.152805 1.761834 -7.294521 -0.152110 -2.262228 -10.204524 9.090407 0.436849 -8.624964 -6.593811 -7.155393 -5.731930 -2.079670 -12.695541 9.794956 15.835365 -9.341336 9.197981 4.181004 3.726606 -0.359798 5.453385 -2.285626 12.121499 4.710365 -4.139687 1.114164 -1.791720 -7.359746 4.262587 -2.790845 -8.160203 -16.424617 7.140915 -11.146811 -11.774398 7.755059 5.598869 -3.414165 -8.012807 -5.638942 6.404221 2.690222 -6.256322 -10.063166 -6.082307 6.394526 -1.365868 -3.986661 -1.226804 1.288558 -0.849558 1.666068 -12.106450 0.216485 4.632731 -4.665613 -2.626157 8.976676 -0.335898 1.790511 -0.987781 2.958808 -3.205525 9.012325 0.949187 8.352998 0.136140 5.318011 -4.712443 5.477912 4.159078 -0.994031 0.649740 -2.459609 -0.994508 5.120580 -4.371834 7.336194 -5.314280 5.137053 10.997316 0.469499 -8.247830 -5.814534 -3.995746 -14.039587 3.513691 -8.785106 -6.577233 5.065909 8.034785 6.472993 4.301082 5.836465 -11.429556 5.228476 -3.202538 2.226263 3.379267 0.428864 4.467348 -5.115278 -9.086970 4.006790 5.161094 3.827031 2.898954 -5.303874 -0.002960 -5.718819 -5.494136 5.764274 5.144315 -1.915475 6.897593 8.308694 19.777001 -7.426803 0.951328 3.971472 -4.165400 1.216409 -1.155570 -13.363100 2.798586 2.500917 4.786566 12.955320 -2.170149 -2.042316 3.913195 -2.635964 1.532102 -6.215728 4.067083 -8.681828 -1.569484 -6.274529 2.140351 -6.085791 -2.228590 -5.246729 -3.111059 13.146465 -13.275496 -8.716679 15.655423 -5.936605 4.321963 -12.162445 12.918116 -3.959185 6.553961 -3.543404 -2.430635 -1.934817 -1.326984 -5.146293 2.417848 4.141793 -2.937022 2.468670 14.671460 1.768499 0.359827 1.010528 8.797463 -4.932173 4.191041 -8.178420 12.704858 -2.532843 -2.213606 -2.650538 -3.974878 1.116183 -6.155923 1.916235 5.753047 4.861478 1.109678 2.500089 5.673610 4.677021 -5.989766 10.160577 0.715199 2.882874 -6.028525 -1.034483 1.633960 4.064655 -4.517563 5.358893 -12.992466 -9.856673 -16.748173 -8.346280 -5.377193 0.518485 5.438369 -2.441335 -2.626467 -8.294748 -9.417061 14.063152 -4.240440 1.828371 7.835127 6.718453 9.619301 12.929197 -1.952822 1.134553 -2.840665 -1.097231 -3.154093 -4.154326 -4.817681 8.880298 -4.078443 4.373482 10.624138 -0.234524 5.649465 -2.091868 7.349264 -7.933627 12.291655 5.837525 -4.069300 4.842046 9.066096 10.973807 -1.047299 -6.860931 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.148457 -0.682900 1.158859 1.094313 -0.341208 0.267154 0.310256 -0.461369 1.085951 0.294865 -0.235782 -0.000858 -0.795275 0.312800 0.640233 0.784442 -1.234720 -0.600687 0.184269 -0.324120 -0.401565 -0.763743 0.302773 0.014092 0.382574 0.743875 -0.227904 -0.264115 -0.056585 -0.045031 0.981339 -0.552375 0.592948 1.300030 0.329893 -2.279881 0.729767 -0.002763 -0.271962 -0.955598 -0.071243 -0.485010 0.506780 -0.680838 0.093446 0.356691 0.392935 1.194203 0.673804 0.320316 -0.182077 -0.496924 0.216146 1.398699 -0.551432 0.410416 0.291552 -0.293855 -0.150683 0.012281 0.362765 -0.064343 0.625813 0.780537 -0.292550 -0.556014 -0.286050 -0.861112 -1.059379 0.716852 0.300977 0.365067 -1.160843 -0.271157 -0.009728 -0.330215 -2.451016 1.217387 1.484523 -1.023589 0.871540 0.466788 0.761900 -0.030229 0.453034 0.106786 0.920533 0.240733 -0.792962 0.314276 -0.666923 -0.989759 0.247912 -0.846813 0.051200 -1.179113 -0.030379 -0.040547 -0.786107 0.528350 0.200786 0.401690 -0.552125 -0.170504 0.739691 0.548284 -0.623988 -0.949249 -0.257271 -0.192137 -0.212380 -0.215185 -0.009510 0.070632 -0.450336 -0.672793 -1.035718 -0.460965 0.105618 -0.700503 0.188875 0.728692 -0.447616 0.183807 -0.035402 -0.087288 -0.182529 1.310110 0.358228 0.444028 0.694224 -0.215502 -0.778833 0.674780 0.527951 1.161464 0.289021 -0.115086 -0.194991 0.251850 -0.663075 -0.199178 0.537050 0.485184 0.830609 -0.281770 -0.757634 -0.439943 0.004475 -1.000483 0.673271 -0.831499 0.586989 0.589180 0.743073 0.692957 0.657967 0.656669 -1.223824 0.616166 -0.641024 0.465163 0.557848 1.306877 0.601422 -0.383453 -0.208551 0.234550 0.385008 -0.013854 0.366915 -0.780297 0.209756 -0.690965 -0.295512 0.372725 0.480527 -0.291622 0.458500 0.201461 0.853197 -0.708725 0.173712 0.550467 0.244511 0.001386 0.271532 -0.949073 0.969786 -0.110059 -0.097883 0.054788 -0.231772 -0.461610 0.130250 -0.185332 0.112569 -0.312454 -0.275065 -0.469560 -0.345509 -0.694374 0.853385 -0.571148 -0.540993 -0.071413 0.459127 0.998426 -0.192955 -0.163635 0.814642 -0.835799 0.627435 -0.686071 1.524102 -0.573448 0.164346 -0.748774 -0.569984 -0.163963 0.028472 -0.025750 -0.190664 0.495470 0.154395 -0.126517 0.890537 0.404130 0.060430 0.492077 0.766199 0.214116 0.261396 0.017029 0.700406 -0.248490 0.452435 0.143432 -0.375263 0.444810 -0.054638 0.023449 1.334429 0.716131 0.336364 0.876970 0.237463 0.253785 -0.562408 0.264356 -0.085395 0.742877 -0.488508 0.072161 -0.117549 0.228123 -0.531500 0.405796 -0.879960 -1.165181 -0.456711 -0.000145 -0.808796 0.371881 0.237602 -0.050893 0.223090 -0.651611 -0.234577 0.071605 -0.426604 -0.204600 0.172625 0.157763 0.763485 0.964315 -0.403947 -0.781911 0.231115 -0.071303 -0.237302 0.275229 -0.835758 0.640604 -0.907266 0.356594 0.901825 -0.354683 -0.254083 -0.386600 1.772770 -0.473332 1.088857 0.529368 -0.419653 0.552155 0.967037 1.010302 0.439314 -0.548199 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.082253 -0.375578 0.575701 0.532890 0.048914 0.125429 0.542693 -0.137508 0.793960 0.457756 -0.069702 -0.205388 -0.601233 0.082115 0.586729 0.448957 -0.494317 -0.437815 0.273371 -0.221948 -0.145578 -0.526097 0.212835 -0.246191 0.222719 -0.019724 0.028056 -0.460068 -0.219097 0.222090 0.678092 -0.389219 0.310082 0.671632 0.050776 -1.280927 0.319863 -0.135644 -0.208061 -0.495363 -0.017800 -0.400171 0.518566 -0.269824 0.490463 0.209476 0.378728 0.784098 0.494448 0.225422 0.124128 -0.500429 -0.059890 0.913524 -0.611290 0.203754 0.034455 -0.208689 -0.136516 0.238836 0.131587 -0.188881 0.437763 0.503609 -0.318756 -0.242710 -0.124658 -0.575883 -0.723406 0.338292 0.285155 0.291443 -0.710457 -0.017200 0.219928 -0.316110 -1.983638 0.596124 0.871925 -0.570264 0.652346 0.367262 0.623083 -0.017594 0.291748 0.112537 0.500710 -0.017394 -0.611424 0.079130 -0.732987 -0.537851 0.012235 -0.467932 0.263684 -0.497424 -0.100208 0.634416 -0.452636 0.294072 0.002405 0.397087 -0.479855 0.138893 0.419541 0.396608 -0.414257 -0.700395 -0.347091 -0.160836 -0.313751 -0.043263 0.077153 -0.342398 -0.411934 -0.702354 -0.511718 -0.376278 -0.020131 -0.495055 -0.240653 0.497800 -0.518839 0.139882 0.112485 -0.026328 -0.124160 0.682287 0.288281 0.240042 0.724901 -0.457062 -1.249956 0.374068 0.370846 1.109096 0.366582 0.156111 -0.192613 0.065419 -0.472944 -0.084559 0.592492 0.442894 0.512848 -0.353572 -0.315696 -0.186005 0.476489 -0.355515 0.598058 -0.445258 0.679972 -0.044486 0.433997 0.485678 0.424474 0.526555 -0.792990 0.535105 -0.503376 0.280710 0.336100 0.924805 0.459589 -0.230773 -0.001084 -0.152038 0.431586 -0.188387 0.196078 -0.481460 0.121027 -0.549256 -0.119570 -0.125393 0.145985 -0.372285 0.260031 0.101426 0.617565 -0.780395 0.141985 0.384412 0.212171 -0.017861 0.208971 -0.541892 0.659983 -0.027769 -0.283122 -0.133148 -0.089988 -0.421543 -0.002297 -0.182837 0.044892 -0.100524 -0.277155 -0.262707 -0.424321 -0.326254 0.577897 -0.461591 -0.506861 0.104900 0.529697 0.505260 0.508071 -0.073934 0.300001 -0.639152 0.095545 -0.436940 1.397835 -0.393119 -0.304357 -0.730850 -0.328391 -0.288332 0.666362 0.099617 -0.144158 0.229388 0.026180 0.199716 0.698318 0.310906 0.183045 0.352144 0.520374 0.194587 -0.062623 0.084034 0.385099 -0.243392 0.309430 0.159818 -0.226041 0.490570 0.173444 -0.060202 0.891319 0.569440 -0.057955 0.534507 0.183482 0.104978 -0.243174 0.141385 -0.012485 0.657339 -0.187069 0.118862 -0.130190 -0.157846 -0.319295 0.239941 -0.518514 -0.554816 0.485051 0.044226 -0.345638 0.429261 -0.018090 0.133058 0.327196 -0.666426 0.033858 -0.435139 -0.269345 -0.409493 -0.069558 0.041684 0.419139 0.578494 -0.242853 -0.596792 0.161357 -0.130644 -0.262548 -0.013023 -0.318683 0.320427 -0.726204 0.296058 0.294637 -0.145163 -0.352148 -0.234263 1.190917 -0.308184 0.653617 0.319778 -0.042871 0.424657 0.703699 1.001813 0.122255 -0.225734 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.773770 -2.083121 4.718104 2.621161 0.196897 1.840636 2.257898 -3.775498 5.027498 1.910072 -0.881666 -1.613758 -3.444297 -0.577474 -0.307403 1.070160 -2.526979 -2.841972 -0.467223 -3.131876 -0.727879 -4.082535 1.968679 -0.082442 0.896593 0.276846 -0.576118 -0.030892 -2.221150 -4.431319 4.507449 -0.758017 1.687953 1.112007 -0.167499 -7.756559 4.076684 2.246203 -1.316168 -3.169397 0.488732 -0.036671 -1.420895 1.770494 0.458647 1.336125 0.066220 2.904918 1.590118 1.407277 2.651127 -1.445473 -0.299279 4.918598 -2.597160 2.715937 0.996090 0.126351 -0.356616 3.066182 0.193561 0.838828 1.793793 4.327926 -0.841086 -0.657163 2.207667 -1.234360 -5.750908 3.557155 -0.202650 -2.165909 -1.048108 -1.006516 -0.768263 -0.190784 -1.388646 1.588128 5.820606 -1.248524 4.264606 1.385154 2.203839 -1.843124 0.528141 -1.037458 3.671212 0.650214 -2.557391 -1.444972 -3.655023 -2.034776 -0.163828 0.848303 -0.734295 -1.065534 2.248307 -1.630938 -3.049824 0.968178 0.756722 -0.156745 -4.586654 0.455926 2.425760 0.558017 -1.272026 -4.046599 -3.146807 1.901925 -2.664533 0.162188 -0.445587 0.106623 -1.723221 -0.878955 -2.989451 -1.840258 0.145722 -2.718015 -2.427484 2.485301 -2.730412 0.852753 0.955769 1.517198 -0.699256 1.359713 0.420046 1.742134 3.016099 -0.530778 -3.733766 -0.246412 0.974078 3.593173 1.261360 -0.581229 -0.130669 0.829030 -2.491790 1.132079 -1.627691 0.182783 4.047013 -1.369411 -1.760570 -0.119438 1.165786 -4.958702 1.724670 -3.466411 -0.817754 -0.030242 2.394922 2.320960 1.448820 4.832199 -5.021512 3.188517 -1.367230 -0.060728 -0.021058 0.757048 1.891989 -1.229684 -2.947570 -0.440749 1.488228 0.175740 0.875918 -2.884753 -1.318273 -3.660325 -3.263876 1.091414 0.193175 -0.736824 0.553881 2.145390 5.838726 -5.096416 1.071801 2.236955 -0.096900 0.113290 0.610590 -4.513791 1.489501 0.428276 1.289129 3.288637 -0.134207 -1.379245 0.322254 -1.027477 0.369505 -2.437062 0.732007 -2.864768 -0.249454 -2.329562 0.073631 -2.028605 -1.897198 -0.293936 0.655972 2.847873 0.213130 -4.548448 5.089867 -1.916683 1.334476 -4.928922 3.217025 -1.442435 1.318584 -2.220364 0.335936 -1.780824 0.913595 0.089298 0.219030 0.104869 -0.728920 3.697546 5.969300 0.680298 1.018003 0.845899 3.156001 -1.224337 -0.160253 -2.379678 3.046285 -0.641981 -2.066132 0.019406 -1.666475 1.693484 -1.671334 -0.016168 2.511106 4.339666 -1.498308 2.255542 1.580153 1.167038 -0.949810 2.908249 1.685560 2.004041 -0.745819 0.019034 0.871431 0.242517 -2.401108 2.269376 -3.621805 -4.492542 -1.042817 -5.779660 -1.591790 -0.942812 1.825504 0.303274 1.017325 -3.607089 -1.449543 2.113361 -0.934875 3.584471 1.491439 2.470024 2.183179 4.652805 -1.990199 -0.228851 0.228027 0.672818 -3.020436 -2.340898 -1.151462 2.090865 -1.362105 1.892748 2.061579 0.275140 0.387515 -2.248187 3.024743 -2.982928 4.215932 2.293395 0.292363 2.967982 -0.339600 5.494434 1.414741 -1.289503 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::empty() const = 0.663470 -0.657884 2.060408 1.774975 -0.503129 0.558211 -0.404430 -1.545010 1.155823 0.600777 -0.334407 0.508296 -0.459472 0.592234 -0.629226 1.271621 -1.477626 -0.450386 -0.723851 -1.146081 -0.887371 -0.506497 0.077723 0.148445 0.719487 0.769763 -0.806207 0.454632 -0.300804 -1.808638 0.237430 -0.102906 0.288631 -0.230270 0.685499 -1.794952 1.584686 1.121011 -0.473378 -1.276422 0.156504 -0.350909 -0.387565 -0.172484 -0.251528 0.403380 -0.376819 0.770557 0.629949 0.652060 0.356507 0.811729 0.928035 2.179937 -0.254742 1.062620 0.763123 0.149001 0.015613 0.441624 0.432382 0.608603 0.171904 0.289625 0.472707 -1.186175 -0.492332 -0.144921 -0.352333 1.093375 -0.267135 -1.143006 -1.030923 -1.001798 -0.933922 -0.188711 -3.076870 1.271950 1.472756 -1.395303 0.446950 0.396509 0.220600 0.249986 0.736411 -0.248024 1.505894 0.638355 -0.164395 0.395014 0.427048 -0.727149 0.786117 -0.899680 -1.231589 -2.344031 0.827936 -2.053247 -1.345410 0.852412 0.877706 -0.458382 -0.164486 -0.634897 0.462407 0.019872 -0.574235 -0.810130 0.082789 0.605596 0.476171 -0.537585 -0.024924 -0.054498 0.292486 0.658118 -1.586707 0.396036 0.403554 -0.094848 -0.039232 1.010757 0.609522 -0.295376 -0.377398 0.200954 -0.355836 1.307336 -0.333837 1.250991 -0.725888 1.388015 -0.581694 1.482533 0.668256 -1.294883 -0.229948 0.413158 -0.213146 0.567686 -0.778828 0.882611 -1.067573 0.576799 0.778904 -0.010683 -1.102069 -0.629551 -1.028627 -1.285436 0.304704 -0.738764 -1.308553 0.242712 0.949587 1.164371 0.703798 0.165242 -1.020782 -0.232098 -0.221082 0.406689 0.777260 -0.178248 0.471022 -0.573350 -0.885955 0.814982 0.388440 0.263867 0.405457 -0.223392 0.192305 -0.592197 0.186994 1.012002 0.671967 -0.284070 1.157909 0.986016 1.349194 -0.395538 0.218820 0.527353 -0.614136 0.205741 -0.230711 -1.242108 0.343046 0.339226 1.089633 1.262702 -0.229455 0.314249 0.297148 -0.277667 0.402682 -0.549539 0.090990 -0.766344 -0.425638 -0.557813 0.795908 -0.427364 0.003448 -0.466463 -0.755973 1.391163 -1.988713 -0.296800 1.905686 -0.697964 0.333407 -0.569693 1.085365 -0.534127 0.777951 0.061686 -0.086989 0.044153 -0.400894 -1.007057 0.385017 0.662046 -0.345178 -0.137524 1.161376 0.255875 -0.012565 -0.080520 0.953460 -0.947271 0.936567 -0.792875 1.526651 -0.210574 -0.122082 -0.335590 -0.407997 -0.400458 -0.921960 0.369415 0.870653 0.034349 0.601954 0.054180 0.401227 0.881540 -0.815764 1.290196 -0.168427 -0.267817 -0.975655 -0.251492 0.521958 0.189607 -0.361682 0.297278 -1.388298 -0.763765 -2.572549 -0.117258 -0.275493 -0.358111 0.444014 -0.566251 -0.645848 -0.496086 -1.440096 2.097400 -0.493942 -0.767897 0.822572 0.556810 0.870918 1.303867 -0.004075 0.465825 -0.664948 -0.259380 0.215070 -0.381746 -0.638535 1.390193 -0.316847 0.057982 1.427412 -0.272702 0.880093 0.372374 0.406854 -0.668085 0.964906 0.359216 -0.465308 0.445371 1.645324 1.043286 -0.031550 -0.851655 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.254004 -0.588659 1.339444 1.210429 -0.053211 0.430038 -0.096425 -0.907266 0.745199 0.707468 -0.023617 0.417176 -0.439374 0.217818 0.179911 0.799909 -0.765267 -0.507910 -0.414249 -0.754528 -0.426486 -0.435080 0.089958 0.225447 0.407207 -0.167304 -0.709637 0.135061 -0.518753 -1.322813 0.175881 -0.147467 0.556292 -0.383567 0.227139 -2.017397 1.054400 0.770204 -0.318170 -0.916349 0.213500 -0.301615 -0.018719 0.000548 -0.565209 0.306835 -0.134447 -0.480957 0.476983 0.404880 0.484324 0.458306 0.486636 1.520381 -0.310678 0.724736 0.464774 -0.204266 -0.208029 0.214895 0.272402 0.295147 0.531360 0.312033 0.068899 -0.793597 -0.184324 -0.070247 -0.815016 0.669752 -0.276972 -0.757297 -0.468832 -0.522449 -0.713841 -0.368687 -0.305154 0.665595 1.076404 -0.761319 0.598039 0.170090 0.147790 0.192165 0.590838 -0.056266 0.996487 0.333186 -0.232603 0.172616 0.297848 -0.505805 0.335293 0.300176 -0.578720 -0.606829 0.519619 -0.896184 -0.935918 0.687828 0.459602 -0.123751 -1.201060 -0.654281 0.409666 0.360163 -0.355562 -0.779091 -0.440670 0.531647 0.192281 -0.468061 -0.263025 -0.359380 -0.110150 0.147558 -1.013611 0.107979 0.302728 -0.261987 -0.546013 0.795450 -0.255716 -0.066410 -0.192568 0.359801 -0.426590 0.778378 -0.271918 0.895348 -0.126389 0.231926 -0.990843 0.009870 0.262509 -0.159716 -0.081809 -0.067967 -0.363612 0.267899 -0.507788 0.696529 -0.215950 0.663497 1.052855 0.128632 -0.664190 -0.400919 -0.388643 -1.218964 0.176561 -0.653230 -0.341568 0.695581 0.686232 0.478151 0.498169 0.779601 -0.593520 0.313452 -0.212412 -0.155546 0.659666 -0.396811 0.398841 -0.438388 -0.685891 0.501077 0.455776 0.297525 0.356643 -0.199903 0.073094 -0.434547 -0.413853 0.487180 0.346923 0.068681 0.588458 0.613297 1.676301 -0.613413 0.218437 0.330954 -0.266578 0.194953 -0.307409 -0.867072 0.036310 0.295601 0.108638 1.007534 -0.179781 -0.383000 0.106484 -0.188518 0.304277 -0.489874 0.416652 -0.580696 0.205047 -0.411944 -0.480349 -0.435025 -0.223764 -0.376513 -0.303463 1.084051 -0.890218 -0.827619 1.226675 -0.379120 0.298360 -1.167537 1.067913 -0.439286 0.831199 -0.487376 -0.172021 -0.165508 0.161007 -0.554504 0.399455 0.464281 -0.420131 0.083898 1.164480 0.244201 0.122336 -0.155168 0.643692 -0.193970 0.575929 -0.501031 1.141878 -0.212748 -0.020255 -0.221737 -0.330478 0.059672 -0.401058 0.094493 0.138186 0.393175 0.037396 0.015480 0.699042 0.553276 -0.514840 0.860942 -0.008658 0.291630 -0.440504 -0.109565 0.218842 0.414221 -0.146642 0.240936 -0.957983 -0.549686 -1.312596 -0.626798 -0.221736 0.453196 0.196185 -0.201941 -0.245889 -0.650422 -0.709079 1.048515 -0.326804 0.389406 0.452746 0.470887 0.705286 0.935982 -0.083447 -0.067771 -0.520876 -0.324922 -0.084433 -0.318961 -0.437117 0.845091 -0.384010 0.244501 0.704428 -0.076084 0.501940 0.405517 0.062901 -0.505712 0.966121 0.338978 -0.168840 0.625403 0.755273 0.691261 -0.382206 -0.558254 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::back() = 0.111311 -0.882248 1.850200 1.686652 -0.361224 0.560231 0.011072 -1.275656 1.185385 0.193790 -0.183527 0.424406 -1.036559 0.575193 -0.398764 0.977059 -1.444192 -0.864114 -0.568342 -0.874325 -0.635510 -0.833789 0.541731 0.398824 0.730249 0.774764 -0.903671 0.047947 -0.929256 -1.001728 0.869704 -0.279987 0.812323 0.494096 0.236484 -2.514441 1.323906 1.066988 -0.416972 -1.300578 0.363330 -0.683499 -0.071340 -0.605291 -0.522685 0.309532 -0.257638 0.383534 0.834312 0.334883 0.242921 0.481155 0.378606 1.859482 -0.685465 0.957729 0.523429 0.010644 -0.266536 0.062184 0.389272 0.567119 0.696559 0.663274 -0.180722 -1.109071 -0.353650 -0.549340 -1.223369 1.129127 -0.207654 -0.346636 -1.080886 -0.554769 -0.901881 -0.259043 -0.920141 1.212024 1.727173 -1.179387 0.845537 0.145996 0.217819 -0.127887 0.616259 -0.089431 1.188565 0.493681 -0.341293 0.059808 -0.385909 -0.437599 0.370575 -0.169357 -0.810860 -1.458660 0.720442 -1.447040 -1.390313 0.490010 0.617232 -0.265501 -0.897252 -0.339953 0.531538 0.473410 -0.640317 -1.154818 -0.193923 0.478498 0.422070 -0.587614 -0.184013 -0.005717 -0.251623 -0.372548 -1.533088 -0.058750 0.175451 -0.614108 -0.110251 1.019748 -0.339723 -0.040582 -0.203233 0.308755 -0.449823 1.400611 -0.243096 0.881502 0.071744 0.472529 -0.396288 0.263280 0.542831 0.646488 -0.407633 -0.104324 -0.469021 0.340286 -0.787884 0.134228 -0.319131 0.414742 1.066378 -0.301999 -0.994235 -0.407742 -0.540504 -1.822819 0.222267 -1.011418 -0.349811 0.793312 1.019673 0.841726 0.831085 1.424115 -1.058290 0.391554 -0.076217 -0.066215 0.992775 0.306404 0.627048 -0.621442 -1.081385 0.841333 0.154577 0.372003 0.297481 -0.155840 -0.005390 -0.881596 -0.464250 0.765326 0.585807 -0.057382 0.971011 0.727073 1.046908 -0.842053 0.471030 0.669816 -0.314186 0.297260 -0.092871 -1.426935 0.563271 0.192267 0.230204 1.115374 -0.262622 -0.446161 0.407674 -0.256944 0.493116 -0.930722 0.309295 -0.886097 -0.054535 -1.112366 0.161006 -0.259440 -0.415326 -0.455623 -0.383809 1.509577 -1.247867 -0.848010 1.588931 -0.225456 0.799985 -1.436874 0.923128 -0.686285 1.099327 -0.321897 -0.186685 0.081583 -0.312388 -0.744419 0.114856 0.686162 -0.315014 0.095138 1.444708 0.368920 -0.053383 0.042443 1.014030 -0.190309 0.943286 -0.627704 1.423748 -0.051044 -0.304322 0.092069 -0.550200 -0.094664 -0.723878 0.202515 1.282280 0.836581 0.686243 0.682528 0.583591 1.008135 -0.763941 0.915773 -0.086221 0.324391 -0.624225 -0.155703 0.341304 0.659617 -0.451470 0.610196 -1.360200 -1.785295 -1.586882 -1.091769 -0.180791 -0.261467 0.468796 -0.361474 -0.295875 -0.885314 -1.061636 1.001432 -0.591295 1.129168 0.664230 0.582534 0.917484 1.369833 -0.709261 0.025417 -0.006262 0.201083 -0.000698 -0.148929 -0.999934 1.148133 -0.579807 0.271366 1.492352 -0.419487 0.581802 -0.150665 1.070698 -0.729288 1.594455 0.507165 -0.585191 1.069023 0.843687 1.065515 0.497346 -0.825796 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator--() = -0.032090 -1.277857 3.040221 2.918938 -0.521525 1.057183 -0.577086 -2.261984 1.755360 1.431734 -0.177213 0.923561 -0.990149 0.771115 0.510576 2.062726 -2.266353 -0.904636 -0.888323 -1.539557 -1.281627 -1.127724 0.303676 0.504150 0.888437 1.115972 -1.547020 0.673542 -0.365225 -3.387374 0.667625 -0.339268 1.310002 0.352265 0.769101 -4.906866 2.641966 1.709718 -0.647609 -2.174060 0.224433 -0.478150 -0.319909 -0.143666 -1.172573 0.917517 -0.393062 0.014421 1.038951 0.945961 0.717538 0.884554 1.456195 3.090397 -0.383943 1.665718 1.036087 -0.404277 -0.424843 0.224691 0.708651 0.889550 1.233085 1.009665 0.174081 -1.788269 -0.338253 -0.267600 -1.933241 1.753460 -0.207899 -1.586639 -1.374270 -1.351861 -1.021180 -0.518603 -1.423011 1.756258 2.655573 -1.589416 1.273784 0.499384 0.250868 0.164873 1.349151 -0.376466 2.606674 0.951353 -0.664842 0.491366 0.749533 -1.744777 1.078181 0.256596 -1.470750 -1.976083 0.842729 -2.133727 -2.024539 1.431914 1.072739 -0.319169 -2.427487 -1.609148 1.359849 0.565436 -0.733310 -1.688383 -0.743450 0.929240 0.114797 -1.153653 -0.790950 -0.134125 -0.320022 0.774499 -2.404948 0.012130 0.688408 -0.603056 -0.564776 1.582546 0.053616 -0.218996 -0.622532 0.548947 -0.763527 1.876102 -0.551504 1.927798 -0.119967 1.035177 -0.853576 0.686191 0.727614 -0.751940 -0.165801 -0.761887 -0.700598 0.766371 -1.305257 1.401047 -0.782687 1.338813 2.797161 0.532125 -1.684865 -0.912873 -1.087703 -2.884783 0.567351 -1.612213 -0.801295 1.416770 1.667635 0.712624 1.204637 1.090303 -1.871265 0.715438 -0.594328 0.327856 1.457000 0.057594 0.789728 -0.971731 -1.497025 1.402795 0.901093 0.654524 0.739157 -0.699243 0.153007 -0.747338 -1.100516 1.674084 0.781746 0.190282 1.264344 1.170651 4.415199 -0.866240 0.516357 0.856791 -0.502019 0.444737 -0.376463 -2.006804 0.346358 0.414980 0.770010 2.431435 -0.497181 -0.715996 0.224581 -0.078266 0.510562 -1.169514 0.966685 -1.364187 0.484970 -1.042563 -0.395780 -0.848068 -0.414607 -0.840155 -0.391219 2.494352 -2.331068 -1.728264 3.019364 -1.466248 0.972857 -2.391648 1.956923 -1.018017 1.328720 -1.104673 -0.655435 -0.128866 -0.630843 -1.239286 0.835645 1.113929 -0.531464 -0.183622 2.396736 0.460474 0.006291 -0.252022 1.263834 -0.376514 1.315587 -1.113308 2.681527 -0.276879 0.463592 -0.717213 -0.812513 0.025896 -1.152655 0.044303 0.639896 0.871883 0.306610 0.173451 1.107133 1.156195 -1.350835 2.027001 0.101066 0.273188 -1.109489 -0.309256 0.562843 0.971559 -0.568449 0.898916 -2.095343 -1.400622 -3.118190 -1.219067 -1.081012 1.172805 0.987901 -0.493602 -0.589993 -0.992914 -1.617943 3.120963 -0.706920 0.940463 1.105808 1.072061 1.506428 2.108350 -0.184912 -0.179713 -1.227924 -0.753066 -0.210978 -0.461429 -1.121881 2.081330 -0.521801 0.634235 1.832703 -0.371136 1.063698 -0.018089 1.229815 -1.011330 2.105677 0.766634 -0.470693 1.080424 1.481475 1.602627 -0.526482 -1.341168 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator*() const = -0.180866 -0.285402 0.652897 0.593353 -0.028429 0.182790 -0.047684 -0.425778 0.435811 0.361553 0.014434 0.154957 -0.293826 0.201712 0.025709 0.470486 -0.386291 -0.266066 -0.204488 -0.369844 -0.303980 -0.260147 0.134089 -0.013222 0.206987 0.095538 -0.366304 0.072483 -0.218571 -0.696406 0.151578 -0.117801 0.282258 -0.080635 0.068756 -1.038701 0.514610 0.369771 -0.188426 -0.424825 0.101918 -0.156821 0.071414 -0.026110 -0.188699 0.167859 -0.065103 -0.196757 0.298577 0.204575 0.343301 0.177264 0.225554 0.737440 -0.241575 0.330891 0.163384 -0.077523 -0.157785 0.048234 0.140114 0.165020 0.267372 0.213671 -0.008598 -0.400474 -0.116177 -0.103836 -0.461399 0.361954 -0.151245 -0.279984 -0.300069 -0.288580 -0.225952 -0.199148 -0.407801 0.265497 0.595722 -0.360306 0.286120 0.094231 0.071241 0.091587 0.259297 -0.017465 0.469242 0.158405 -0.147584 0.127792 0.295825 -0.133389 0.162958 0.257453 -0.255214 -0.337505 0.268678 -0.287594 -0.439834 0.313882 0.221206 0.023153 -0.595181 -0.263382 0.179236 0.184538 -0.251194 -0.424132 -0.208768 0.155706 0.171179 -0.200809 -0.101849 -0.206411 -0.123819 0.037175 -0.517090 -0.019575 0.056553 -0.198221 -0.249925 0.373659 -0.068717 -0.046552 -0.075136 0.186430 -0.218205 0.486344 -0.093868 0.457356 -0.158548 0.193551 -0.511718 -0.035792 0.194008 0.019427 -0.065580 -0.101082 -0.248664 0.063768 -0.315510 0.228470 -0.110400 0.265612 0.713743 0.015540 -0.348165 -0.142103 -0.163379 -0.691570 0.108767 -0.365846 -0.060501 0.243899 0.349077 0.216172 0.311509 0.520295 -0.363052 0.166700 -0.142570 -0.119223 0.370870 -0.004285 0.234111 -0.206087 -0.338557 0.247700 0.229373 0.129405 0.206085 -0.139868 0.023845 -0.243172 -0.106329 0.323456 0.178181 -0.044745 0.264024 0.247972 0.911681 -0.277796 0.135122 0.233408 -0.075758 0.104023 -0.082667 -0.433068 0.073868 0.117597 -0.020019 0.396975 -0.077748 -0.191946 0.088736 -0.141961 0.180626 -0.292314 0.201450 -0.271453 0.101057 -0.286838 -0.097151 -0.199203 -0.090414 -0.095427 -0.081026 0.520178 -0.418331 -0.307250 0.558523 -0.102566 0.151234 -0.502706 0.514793 -0.232982 0.393646 -0.319710 -0.077728 -0.052644 0.094493 -0.195683 0.156033 0.232545 -0.119250 -0.023860 0.598365 0.143289 0.019909 -0.063968 0.373858 -0.043904 0.307424 -0.169953 0.578076 -0.051634 0.016054 -0.028127 -0.178693 -0.022015 -0.213304 0.023364 0.190575 0.268307 0.001842 0.077247 0.241778 0.343222 -0.258051 0.405548 0.038316 0.201878 -0.228229 -0.032212 0.127459 0.287746 -0.155920 0.129652 -0.435287 -0.337790 -0.490481 -0.296342 -0.142709 0.329431 0.080163 -0.103369 -0.093647 -0.219241 -0.321709 0.669092 -0.201213 0.350595 0.142455 0.202637 0.335526 0.493523 -0.113613 -0.094771 -0.234634 -0.171779 0.005179 -0.072164 -0.225039 0.425726 -0.216887 0.051241 0.334151 -0.127910 0.185073 0.187039 0.215986 -0.235568 0.538457 0.160003 -0.010554 0.429484 0.364522 0.544982 -0.079014 -0.249021 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::pop_back() = 2.384445 -2.519814 8.273977 7.182090 -1.349488 2.266722 -0.718874 -6.683756 4.948144 3.202254 -1.027248 1.506786 -2.501730 2.379813 -2.502092 5.337296 -5.744583 -2.141235 -3.077862 -4.684972 -3.087303 -2.691552 1.848787 0.208730 3.185326 2.430684 -3.450842 1.110050 -1.424085 -8.240318 2.021951 -0.446870 1.875877 -0.970678 1.430538 -8.187854 6.882982 4.748436 -2.049782 -4.944420 1.206542 -0.911365 -2.407235 -0.038230 -1.338883 1.590901 -1.964653 2.906876 2.840648 2.816977 2.362163 3.217734 3.780416 8.626472 -1.872706 4.340943 2.337586 0.668616 -0.241134 2.198751 1.602472 3.147082 1.273506 2.231502 2.071266 -4.691035 -1.123093 -0.428614 -3.111092 5.077015 -1.208211 -4.248670 -3.740165 -2.975061 -3.001433 -0.085175 -8.331778 4.697806 6.351347 -4.415864 2.181534 1.214551 0.054522 -0.247447 1.869951 -1.234658 5.582360 2.471705 -0.456032 -0.035547 0.938344 -2.819549 2.872822 -2.235493 -4.604879 -8.436017 3.516119 -6.919661 -5.238124 2.612924 3.601756 -2.231675 -1.964963 -2.399028 2.124255 0.195468 -1.798441 -3.640293 -0.543603 2.516674 1.268211 -2.258859 -0.649492 -0.403888 0.388755 2.620717 -6.106974 0.754098 0.772458 -0.964243 -0.997143 3.504169 1.652995 -1.256103 -1.185562 1.524247 -1.465210 3.969936 -1.694335 5.475037 -0.948290 5.331896 -1.556369 4.370657 2.935251 -3.832342 -0.473840 0.930275 -1.690569 2.269494 -3.499360 3.615825 -3.907417 1.910803 4.186696 -0.326199 -4.199890 -1.669799 -2.713129 -5.764480 1.237105 -3.528257 -4.657921 0.838879 3.984748 3.335826 3.154487 1.923823 -4.894456 0.233350 -0.552368 1.289726 3.087296 -1.046534 1.758693 -2.124293 -4.252441 2.874633 1.716626 1.133567 0.893035 -0.665277 0.123565 -2.747033 -0.527143 3.576418 1.948556 -1.301756 3.660786 3.721929 7.018921 -2.307228 1.474190 2.932305 -2.292125 0.903764 -0.718801 -5.766390 1.254699 1.141172 4.138968 5.683222 -0.811772 0.165998 1.353325 -1.208386 1.275081 -2.650181 1.064047 -3.410081 -1.074890 -2.666567 1.770618 -1.188146 -0.433538 -1.484120 -1.961067 5.484085 -6.861585 -2.577923 8.149579 -3.048874 0.730013 -3.849393 4.809365 -2.155540 2.108788 -0.276687 -0.324387 -0.055503 -1.183927 -4.317775 1.304478 2.331526 -1.398094 0.879846 6.037747 1.050740 -0.163043 -0.775443 3.903332 -3.170191 3.774499 -3.577971 6.440646 -0.612941 -1.179174 -1.730595 -1.864095 -1.317472 -4.347931 1.143692 3.317500 1.073697 1.691140 0.817172 1.602385 4.294153 -3.067720 6.024553 -0.024345 -0.820529 -3.081746 -0.788691 2.598715 0.629945 -2.274878 2.768044 -5.532990 -3.863420 -8.820337 -2.482630 -0.963835 -1.474215 2.755864 -2.428633 -2.200587 -2.715107 -5.615416 7.514394 -1.852429 -1.280416 3.701192 2.462546 2.985493 5.461047 -0.718502 2.361658 -2.923679 -0.490547 0.373747 -2.657981 -2.031038 5.495071 -0.897192 0.562870 5.473355 -0.948105 3.368264 -0.184142 1.856039 -2.873029 4.507891 1.615292 -0.867426 2.619631 4.567166 4.658584 0.176384 -3.210648 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_pop_back_aux() = 2.729597 -2.516737 8.591829 7.502661 -1.884893 2.359721 -1.396105 -7.014525 5.069942 2.944328 -0.754868 2.023293 -2.075588 2.930289 -2.757762 5.751794 -6.316302 -1.925436 -3.358248 -5.151424 -4.079422 -2.417441 1.103366 0.278508 3.091830 2.672376 -3.883115 1.514171 -1.047317 -8.128104 1.671066 -0.464229 1.574833 -1.684767 2.193065 -9.455750 7.034253 4.556922 -2.151316 -5.061763 0.884698 -1.329584 -1.896052 -0.555569 -1.632767 1.284523 -2.107161 3.091093 3.092636 2.678966 2.091522 4.038688 3.858036 10.238084 -1.839892 4.488655 2.643175 0.673088 -0.400768 2.124713 1.774533 3.140332 1.136364 1.689283 2.192035 -5.132658 -1.597786 -0.526244 -2.324031 5.135932 -0.899770 -4.728495 -4.198716 -3.571385 -3.722871 -0.722753 -10.792334 5.261103 6.408760 -5.476518 1.756727 1.244372 0.432239 0.790190 2.844175 -1.227448 6.644174 2.586791 -0.634664 0.887419 1.726461 -2.629379 3.280327 -3.087405 -4.951563 -10.416278 3.363134 -7.860882 -5.640936 3.349558 3.856426 -1.940397 -1.821576 -3.385109 2.440345 -0.094405 -2.451351 -3.791892 -0.484669 2.638353 1.736808 -2.451889 -0.071247 -0.862460 1.073685 2.652554 -6.612344 1.206064 1.267986 -0.519994 -0.993728 4.132642 2.207432 -1.515917 -1.472531 1.332731 -1.695638 4.780310 -1.937786 5.633865 -2.392430 6.050810 -2.071527 5.233261 2.872357 -4.744574 -0.540343 1.040421 -1.769014 2.510751 -3.783657 3.904072 -4.130337 2.449114 3.976702 0.149546 -4.664440 -2.072034 -3.185363 -5.853537 1.316988 -3.439760 -5.473375 0.911833 4.116126 4.188871 3.259064 0.680425 -4.485666 0.054391 -0.835228 1.711807 3.699659 -1.166392 1.951759 -2.354430 -4.193404 3.188459 1.600893 1.336488 1.157357 -0.894893 0.471351 -2.450636 0.010122 3.579002 2.686021 -1.284009 4.267709 3.943626 7.577401 -2.585718 1.447843 2.706038 -2.632786 1.120984 -1.128356 -5.476705 1.136252 1.508422 3.987973 5.825011 -1.056857 0.332351 1.302730 -0.972481 1.729236 -2.418568 0.549783 -3.311151 -1.682477 -2.579482 2.441976 -1.585425 0.088858 -1.969507 -2.983893 5.885944 -8.714248 -2.067440 8.804364 -3.346670 1.197343 -3.470356 5.286831 -2.169383 2.474012 -0.389488 -0.427421 0.031345 -1.019039 -4.708484 2.201492 2.725498 -1.687654 -0.109453 6.007346 1.050399 0.364882 -0.817013 4.141847 -3.417448 3.983875 -3.566355 7.151278 -0.861379 -0.888470 -1.790650 -1.866228 -1.551633 -4.288141 1.795294 3.337307 0.562914 2.261255 0.357051 2.098112 4.167993 -3.384128 5.956256 -0.621115 -1.417801 -3.733626 -0.795818 2.573469 0.732638 -2.052420 2.109291 -5.773290 -3.413351 -10.546259 -1.237483 -0.893404 -0.919297 2.111755 -2.655739 -2.695551 -2.564114 -5.829030 8.654460 -2.143814 -2.674329 3.887024 2.499119 3.444068 5.887849 -0.418365 2.249819 -3.051049 -1.248604 0.845375 -2.180797 -2.594102 5.980786 -1.181304 0.616681 5.802506 -0.982105 3.689041 0.960700 1.852357 -2.695417 4.442913 1.529251 -1.226389 2.210955 6.229221 4.815083 0.113837 -3.464046 diff --git a/src/test-suite/oracle/FA_llvm14_onDemand/ir2vec.txt b/src/test-suite/oracle/FA_llvm14_onDemand/ir2vec.txt deleted file mode 100644 index fb030561b..000000000 --- a/src/test-suite/oracle/FA_llvm14_onDemand/ir2vec.txt +++ /dev/null @@ -1,269 +0,0 @@ -PE-benchmarks/strongly-connected-components.cpp__main = -0.594065 -3.994898 5.683871 4.817815 -0.361037 2.285029 1.051643 -2.629309 3.347801 1.184891 -1.579688 1.794487 -3.485901 0.434217 -0.874752 2.017185 -4.092585 -3.512626 -0.195040 -1.316943 -1.335028 -3.095962 0.887543 2.333993 1.899363 2.882088 -2.262759 -0.223269 -3.757145 -3.381212 2.892526 -1.197364 2.790802 2.854183 0.649383 -8.203109 3.882291 3.415147 -0.952180 -4.529375 0.702773 -1.549719 -0.754653 -1.448452 -1.333748 1.403423 0.938400 2.380162 1.354208 1.285029 0.271168 -0.555899 1.691412 5.850431 -0.872164 3.633307 3.199720 0.030517 0.330539 0.183107 1.488210 0.383521 2.625261 3.168962 -1.131103 -1.820731 -0.458512 -1.977491 -4.219723 2.980488 0.192282 -0.320037 -2.827166 -1.124122 -2.404016 -0.539264 -1.626994 3.168579 6.501227 -3.199936 4.864387 1.734982 2.835985 -0.879618 1.814799 -0.099817 3.287095 1.924025 -2.474260 -0.212995 -3.443814 -1.996091 0.285451 0.018829 -2.335818 -2.980380 2.130839 -4.270782 -4.600701 1.975357 0.641851 -0.537572 -2.326966 -0.268891 2.502133 1.523389 -1.984814 -3.972703 -1.669097 1.172520 -1.051548 -1.686045 -0.644567 1.001343 -1.060835 -0.661829 -4.455116 -0.872689 1.529570 -3.107688 -0.069300 3.337405 -1.371588 1.664532 -0.731800 0.412772 -0.779554 3.377438 1.119427 1.718805 1.654416 -0.149585 -2.044227 0.830045 1.686160 2.854417 -1.652743 -1.055404 0.098215 1.481859 -0.916629 0.494196 -0.868819 1.641606 2.900307 -1.158821 -3.286333 -2.722442 -1.358197 -5.361428 1.109437 -3.368639 -0.873793 2.429731 3.501145 1.713337 1.944936 4.557004 -3.851368 2.683115 -0.566901 0.587445 1.332670 1.045885 1.803603 -2.076850 -3.329350 2.599642 1.788888 1.021870 1.216719 -1.891127 0.033432 -2.803729 -2.869236 2.371246 1.194232 -0.174784 2.926349 1.815679 4.342285 -3.293909 0.835891 1.400062 -0.270990 0.510556 0.188336 -4.945837 2.650400 0.074435 0.910610 3.725506 -0.345695 -2.142620 1.539245 -0.481938 0.647090 -3.096460 1.993497 -2.996239 -0.419042 -2.902017 0.787297 -1.509685 -1.791592 -1.713574 -0.420030 5.095711 -3.273563 -3.334497 3.663949 -0.556955 2.498229 -5.229266 3.070033 -2.463681 3.552708 -0.821547 -1.528414 -0.029267 -0.959323 -0.761719 -0.413489 2.050771 -1.428356 1.507951 4.002319 1.078129 0.366447 1.328691 2.555515 -0.293711 1.221252 -1.802481 2.900185 -0.086086 -1.548422 -0.115476 -1.912395 1.407911 -1.147942 -0.151105 3.318285 3.561899 0.922954 2.352170 2.070169 1.807035 -2.742487 1.395431 0.265147 2.797903 -2.104820 -0.701126 -0.569683 1.464433 -1.123144 2.391083 -4.672487 -5.665879 -4.167804 -4.305993 -2.047427 -0.637873 2.041094 -0.252255 0.178529 -3.978525 -2.783245 2.513760 -1.743456 3.398335 2.695551 2.302663 3.552453 3.616965 -1.746601 -1.369722 0.409518 1.127706 -1.499720 -0.087957 -3.136865 2.665889 -2.141813 2.181549 3.992554 -1.063416 1.095743 -1.246725 4.161642 -2.605004 5.882216 2.583493 -3.016105 2.263187 1.470460 3.838546 0.312786 -2.923831 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = 0.247802 -1.022171 2.463501 2.221989 -0.248550 0.729948 0.066720 -1.792920 1.630194 0.980613 -0.169901 0.594561 -1.098957 0.784875 -0.494150 1.632898 -1.711727 -0.969707 -0.714040 -1.303565 -0.992001 -0.999606 0.596474 0.144550 0.957860 0.535711 -1.174555 0.023881 -0.914915 -2.072830 0.802980 -0.345434 0.839843 -0.154246 0.302004 -3.285149 1.927330 1.356361 -0.639446 -1.655428 0.425531 -0.676201 -0.212269 -0.308282 -0.404707 0.432335 -0.324261 0.610682 1.067942 0.748356 0.742312 0.820481 0.851860 2.906977 -0.887168 1.345954 0.719001 0.057988 -0.313050 0.460921 0.522980 0.726943 0.787323 0.816584 0.128753 -1.434604 -0.449736 -0.410474 -1.369032 1.463971 -0.231400 -0.882834 -1.344268 -0.743687 -0.962786 -0.355127 -2.179656 1.429772 2.219941 -1.500781 1.021414 0.355976 0.330751 0.006984 0.851811 -0.212397 1.747334 0.661762 -0.483701 0.026070 -0.067728 -0.663513 0.634175 -0.271892 -1.102535 -2.303422 0.935209 -1.611438 -1.793270 0.885975 0.870313 -0.325898 -1.184963 -0.694876 0.813404 0.436411 -0.847050 -1.508010 -0.479563 0.646937 0.369925 -0.799842 -0.121421 -0.463641 -0.168571 0.088929 -1.958875 -0.033415 0.295687 -0.659369 -0.562378 1.316343 -0.045701 -0.136989 -0.305052 0.475605 -0.548247 1.501126 -0.361075 1.509193 -0.031820 0.987972 -1.142670 0.811308 0.840403 -0.070097 -0.257977 0.137132 -0.683219 0.566558 -1.092851 0.782744 -0.651718 0.843739 1.578562 -0.208425 -1.332880 -0.574672 -0.433445 -2.009913 0.509881 -1.237995 -0.785476 0.443776 1.341847 0.954667 1.084707 1.222870 -1.458524 0.521534 -0.247619 0.215208 1.245524 0.006682 0.777119 -0.781034 -1.350814 0.908116 0.655957 0.340905 0.351113 -0.293107 0.079757 -1.002565 -0.412794 0.855315 0.683169 -0.347473 1.224658 0.973512 2.363951 -1.166677 0.541163 0.883228 -0.507272 0.381714 -0.263955 -1.844444 0.577042 0.359069 0.602532 1.615540 -0.284337 -0.537686 0.473905 -0.333775 0.543031 -0.959627 0.392663 -1.126429 -0.329114 -1.029700 0.315040 -0.470955 -0.383314 -0.512903 -0.425496 1.902189 -1.740034 -1.004898 2.244568 -0.812256 0.503869 -1.726978 1.868872 -0.847515 0.823773 -0.562440 -0.232376 -0.067849 0.124401 -1.098220 0.414272 0.880672 -0.516024 0.292586 2.074094 0.440393 0.133691 -0.064843 1.305850 -0.478246 1.034652 -0.875004 2.052947 -0.219277 -0.289389 -0.243884 -0.673616 -0.055111 -0.979902 0.289655 1.246300 0.779433 0.442290 0.513269 0.804444 1.292196 -1.018387 1.578641 -0.095241 0.288448 -0.902024 -0.156124 0.493856 0.400862 -0.628116 0.864306 -1.782697 -1.561470 -2.137287 -1.028817 -0.260942 0.068467 0.611809 -0.566547 -0.433344 -1.216970 -1.440913 1.806205 -0.717920 0.300323 1.001265 0.783157 1.135872 1.777846 -0.482573 0.185818 -0.631857 -0.201567 -0.016179 -0.587995 -0.833673 1.545864 -0.700901 0.406730 1.599950 -0.355584 0.767168 0.012036 1.019770 -0.887884 1.835567 0.640025 -0.366073 1.143968 1.460146 1.782084 0.048074 -1.035245 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/z-algorithm-linear-time.cpp__main = 0.065690 -5.748221 10.336776 6.970167 0.742591 3.846152 7.453570 -7.802362 8.590388 3.311076 -2.042848 -1.148134 -9.014788 -0.189206 -4.090522 2.826796 -6.028230 -6.292275 -1.202671 -4.722503 -1.181284 -7.881862 6.708244 0.794776 4.570008 1.870258 -1.874769 -3.578132 -7.931430 -6.281935 9.416515 -0.862329 3.935159 3.263778 -1.727053 -12.403510 7.087784 5.759474 -3.131470 -7.645313 3.234076 -0.251968 -3.974066 1.855891 1.572904 1.562895 -0.234357 8.577885 3.819041 4.146102 4.066413 -2.209038 1.376110 11.004714 -5.028096 7.000676 4.615237 2.368494 0.634031 6.126287 1.341445 2.259057 3.005274 8.376404 -0.638209 -1.529904 1.900204 -4.175381 -10.745798 7.876314 -0.914670 -2.113199 -4.512213 -1.201698 -1.864308 0.986386 -5.787990 4.975936 12.819220 -4.886813 9.317784 1.950713 3.405211 -5.638978 0.142168 -1.496057 3.310262 2.257149 -4.007345 -3.750474 -9.671172 -2.865626 -0.034774 -1.604531 -2.927133 -7.874714 6.316801 -3.865179 -8.622582 1.935419 2.268716 -2.058905 -4.237101 3.314099 3.204319 2.171198 -4.521011 -8.944721 -4.647811 3.541833 -3.731965 -0.490212 -0.435556 1.853826 -3.743535 -2.875023 -7.059507 -2.933806 0.407566 -6.752399 -3.038614 5.394228 -3.909206 3.467571 1.365124 1.819349 -1.118887 3.923022 1.539396 3.468374 7.404285 1.129767 -4.888992 1.714406 4.588904 8.100876 0.494106 1.351895 -0.620723 2.839648 -3.766387 1.920368 -2.349959 0.149729 4.894131 -4.807945 -5.329537 -1.056740 1.830053 -10.298960 3.250422 -6.767426 -1.890919 0.143980 5.858038 3.705980 3.139507 10.444034 -9.507710 4.429026 -0.649366 0.071220 0.017870 2.411662 4.318404 -2.990258 -7.999937 0.128900 2.579122 0.402366 0.585573 -2.955382 -2.392674 -8.206314 -5.441037 0.530040 1.514159 -4.366005 2.057100 5.034868 5.983684 -8.282816 1.500291 4.922945 -0.646716 0.163356 0.758278 -11.851276 5.016368 0.052514 3.256735 6.652241 0.031901 -2.915410 3.626623 -3.487647 0.990585 -5.209893 1.199959 -6.613912 -2.796536 -6.613748 2.930200 -1.215176 -4.630114 -0.941747 1.287230 7.592089 -0.913744 -5.984948 9.207402 -1.807071 1.316497 -9.278407 8.788084 -2.765133 2.014649 -1.436874 -0.638930 -1.568302 1.872674 -1.277415 -2.083853 0.778219 -1.793160 7.671524 12.324816 1.548268 1.015210 2.125975 7.025352 -3.008930 0.167285 -5.545901 6.267765 -1.498554 -6.893295 1.069306 -3.668514 2.844965 -5.240006 -0.134698 9.848012 7.686808 -0.625761 6.165672 1.657191 5.143900 -3.508617 5.751770 3.215288 5.274358 -2.492310 -0.295862 1.355702 -0.072468 -4.963850 6.565745 -8.525238 -11.736361 -2.496143 -12.047595 -2.061990 -6.031142 5.221815 -1.337739 0.772507 -8.932503 -5.492184 1.143376 -3.577157 4.515024 5.762248 5.114500 5.460835 9.896309 -4.795200 2.878682 1.463631 4.892973 -5.030370 -4.943296 -2.262501 3.705651 -3.631952 3.515499 5.927830 0.995989 2.012781 -6.587019 7.765356 -6.919577 9.551860 4.624834 -1.134300 6.682867 1.254303 10.314729 4.347079 -3.594045 -PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.901395 -7.303971 8.783434 6.333126 1.159821 4.885260 5.877902 -4.395947 5.709300 3.251127 -2.954984 1.347356 -7.375668 -2.749939 -1.932924 0.105749 -3.986806 -6.077119 0.096738 -2.303443 0.281625 -6.562238 1.084475 4.916304 2.609416 2.560185 -1.598004 -1.510094 -9.350447 -6.323383 5.492797 -0.236337 4.155442 3.826001 -0.047472 -11.305298 5.782887 7.740918 -1.712258 -7.862967 2.081801 -1.085243 -3.634769 1.615561 -0.109000 2.700381 1.688642 4.928636 0.218998 2.388867 1.877848 -2.851021 2.843813 8.770147 -1.153512 7.731228 7.480434 1.647751 2.328528 3.419715 1.200411 0.111794 3.658027 6.419319 -2.520522 -0.115929 1.573522 -2.214088 -8.564134 4.358601 0.359043 -2.701317 -2.961304 -1.695704 -3.981483 0.018401 -0.743717 2.655547 11.220219 -3.791636 11.192788 3.891469 5.462714 -3.272020 2.476997 -0.794826 3.731254 2.572682 -4.783866 -1.672573 -10.798961 -3.496937 -0.641865 1.061831 -4.535132 -2.890930 5.101656 -6.189143 -8.489191 2.974228 -0.153069 -2.617284 -3.715098 2.202920 3.131416 1.968691 -2.928610 -7.919895 -5.200435 4.655454 -5.211710 -1.580469 -1.305101 2.968356 -1.907581 -1.670085 -6.092770 -0.885896 3.601211 -5.680624 -2.073577 5.963897 -3.767030 5.074622 0.185478 0.708062 -0.877072 2.526933 2.967612 1.198007 5.492548 -2.634733 -5.764296 0.246007 2.262675 6.117472 -2.077959 -1.006415 2.377883 2.889885 0.610501 3.177504 -1.986497 1.868866 3.032555 -2.816820 -3.415366 -4.905072 -0.900918 -8.312988 2.592710 -4.607229 -2.130336 1.600396 5.384526 1.974243 1.337709 8.263559 -6.661102 4.457996 -0.352219 0.203400 -1.449415 0.538724 2.925309 -3.054191 -7.106458 2.192230 3.887855 1.761608 1.423079 -2.693160 -1.660642 -5.136275 -6.421862 1.489705 -0.008398 -1.393457 4.661622 4.956123 7.950626 -6.877194 0.949309 1.232427 -1.074604 0.674048 0.008165 -9.389574 4.053427 0.719376 2.222198 8.226350 0.083698 -2.795155 3.052897 -1.496636 0.184083 -5.738971 4.749773 -6.103261 -1.881159 -4.670309 0.561463 -2.634467 -4.710186 -3.341304 0.247264 8.026256 -1.669082 -7.030761 5.311899 0.015914 1.862234 -9.353753 6.292002 -3.066122 4.815658 -0.944049 -2.022059 -0.811706 0.788195 0.106828 -2.143651 1.438212 -4.228757 6.720022 7.980820 1.234818 1.063976 2.865638 3.974336 -2.339582 -1.181862 -5.979463 3.668294 -0.801184 -5.447931 0.220896 -3.266627 4.988036 -1.649081 -1.278654 5.091623 7.659015 -1.279204 2.652240 3.574054 1.627482 -3.341528 2.392079 2.786693 5.596589 -2.711871 -1.060610 -2.053341 0.171689 -1.059788 4.775288 -8.465795 -8.338608 -2.892818 -10.821286 -2.732113 -3.145282 4.336601 1.671809 1.287251 -10.005185 -5.221853 2.507022 -2.987887 4.916776 5.207253 5.500604 6.257683 6.548121 -1.995240 -0.060575 1.602320 3.775459 -5.607695 -2.953931 -2.614523 3.302858 -2.883885 5.168484 4.461195 0.552301 2.726410 -4.608852 6.151311 -6.058223 10.181863 4.773052 -4.523581 3.301964 0.809495 8.076528 -1.161655 -4.031859 -PE-benchmarks/mergeSort_LinkedList.cpp__main = -0.502443 -2.884805 4.753047 3.848042 -0.223283 1.705943 0.946973 -2.669222 4.279516 0.229448 -0.854601 0.917877 -3.135124 1.163499 -0.956775 1.847238 -4.065129 -3.509823 -0.171175 -1.815518 -1.633153 -3.233947 1.029769 1.030253 1.307719 1.203773 -2.238611 -0.167245 -3.540515 -1.126543 3.674393 -1.565955 2.109374 1.175992 0.552676 -8.811621 3.303672 1.784275 -1.021076 -3.983608 0.304607 -2.646196 0.545718 -2.363153 -0.521251 0.544270 0.637362 2.642228 2.292204 0.393344 0.019140 0.115318 -0.772926 6.650425 -2.751536 2.550731 1.614877 -0.063440 -0.706291 0.711074 1.225406 0.497126 2.577787 3.177068 -1.798273 -2.092850 -0.170447 -2.318139 -4.025853 3.235529 0.655163 0.494877 -2.988042 -0.314907 -2.863256 -1.063307 -2.006245 3.425299 5.917472 -3.263968 3.588974 0.971340 3.215091 0.019719 2.232223 0.006892 4.309011 1.141901 -2.839901 -0.519926 -4.281333 -0.993456 -0.035753 -0.953353 -0.678914 -3.779672 1.029838 -3.545662 -3.858068 1.392571 0.621201 0.607263 -3.148648 -0.428564 3.114542 1.613249 -2.131699 -4.037305 -1.648690 0.895183 -0.981525 -1.240716 0.862452 -0.766457 -0.996026 -2.701451 -4.079864 -1.541946 0.857156 -2.588691 -0.876597 3.460540 -2.740452 0.636112 -0.304837 0.384299 -0.961129 3.388961 0.249690 1.378400 1.404847 -0.841847 -3.416854 0.443935 1.185263 4.598479 -0.637249 -0.198632 -0.784517 1.070805 -2.390694 -0.815589 -0.356033 1.262520 2.137091 -1.563707 -2.811365 -1.781792 0.458378 -4.566237 1.195191 -3.097045 -0.554445 1.594792 3.241864 3.063741 2.432067 4.350234 -3.456747 3.141586 -0.999217 0.690445 2.396224 1.123635 2.104124 -1.789000 -2.644785 1.579429 0.937143 0.633981 0.935183 -2.193007 0.023430 -3.166735 -2.351637 1.039313 1.914235 0.044212 2.552724 1.335094 2.362303 -5.331272 1.436419 1.933466 0.100746 0.593897 -0.058461 -4.045167 2.573146 0.454776 0.141288 2.447131 -0.590458 -2.844242 0.620859 -0.059836 1.368441 -2.306247 -0.135138 -2.424375 -1.096744 -2.869687 1.235117 -1.788867 -1.652239 -1.505544 -0.784142 4.170159 -2.475261 -3.578544 4.195093 -1.306324 3.177411 -5.225368 2.645573 -2.324956 3.032803 -1.500800 -0.344468 -0.533490 0.506272 -1.230351 0.603227 2.044106 -1.298239 1.420240 4.125648 1.391456 1.385287 1.120291 2.895611 0.285587 0.900655 -1.178666 3.068529 -0.579540 -1.356777 0.595805 -1.857420 1.606445 -0.561442 0.953970 3.656248 3.624389 1.506054 3.258893 2.632054 1.691296 -2.223791 1.065126 -0.505899 2.109760 -1.568802 -0.108718 -0.368056 0.995908 -1.601533 1.762197 -3.959306 -5.773052 -3.440849 -3.758768 -0.781389 -0.719617 0.359556 -0.230312 0.557880 -4.075614 -1.441545 0.828825 -1.663909 3.565194 1.780308 1.520316 2.829637 3.996345 -2.877123 -1.653219 1.247533 0.375338 -1.464204 -0.227777 -3.586166 2.786300 -2.849192 2.048241 3.811570 -1.227529 0.163061 -0.514138 4.023160 -1.942896 5.233173 2.508799 -2.176999 2.239728 1.897622 4.720334 1.908391 -2.476260 -PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.193645 -0.929825 1.623968 1.380831 0.215881 0.618408 0.445841 -1.045495 1.523365 0.698492 -0.037694 0.306988 -1.003046 0.530179 -0.517453 0.858437 -1.033449 -1.143278 -0.306970 -0.878749 -0.802750 -1.033157 0.274706 0.015626 0.457257 -0.268567 -0.882549 -0.180918 -1.360122 -0.721445 1.003554 -0.352256 0.543907 -0.519667 0.123568 -2.913191 1.140251 0.757943 -0.458302 -1.319482 0.132043 -0.845792 0.143853 -0.380905 0.090861 0.092141 0.002724 0.650918 0.797139 0.287418 0.576514 0.432000 -0.169800 2.891893 -1.093379 1.018729 0.582785 0.183785 -0.219830 0.629733 0.389572 0.330059 0.737496 0.909185 -0.322592 -0.735300 -0.118720 -0.557751 -1.148421 1.163833 0.179287 -0.289080 -0.943317 -0.251645 -0.947658 -0.472678 -1.608423 0.967011 1.920759 -1.245589 1.046831 0.397601 1.033453 0.253103 0.888048 -0.086001 1.579526 0.342480 -0.816325 -0.162287 -1.110255 -0.046270 0.012235 -0.236009 -0.446589 -1.683706 0.562695 -0.875256 -1.397175 0.701725 0.284319 0.196955 -1.166930 -0.259160 0.901206 0.407074 -0.823675 -1.431144 -0.901308 0.554149 -0.141668 -0.462449 0.502309 -0.807097 -0.160387 -0.727732 -1.388891 -0.356539 0.314754 -0.735269 -0.864399 1.313819 -0.761817 0.090618 -0.089674 0.211995 -0.421345 0.989363 -0.038927 0.796336 0.188262 0.029890 -2.105254 0.314695 0.522913 1.095417 -0.050179 0.336473 -0.441267 0.397429 -0.882360 0.298448 -0.266785 0.599362 0.831758 -0.489801 -0.973012 -0.624251 0.489185 -1.284079 0.437169 -0.970847 -0.416926 -0.012078 1.110252 1.251834 0.801955 1.308516 -1.109139 1.036306 -0.348554 0.193267 0.795228 -0.041534 0.657913 -0.592791 -1.070749 0.348165 0.615288 0.151129 0.327408 -0.629398 -0.032914 -0.983923 -0.543986 0.084153 0.601432 -0.336058 0.993217 0.660872 1.383894 -2.126542 0.560733 0.650209 -0.205977 0.292869 -0.293888 -1.398212 0.617312 0.342377 0.004389 0.999019 -0.204201 -0.907239 0.270455 -0.193851 0.548864 -0.645714 -0.032999 -0.835508 -0.686195 -0.871410 0.461790 -0.648995 -0.390346 -0.403087 -0.370932 1.419962 -0.951891 -1.107394 1.565478 -0.492807 0.447022 -1.671896 1.484173 -0.655475 0.645907 -0.618064 0.000000 -0.347937 0.983512 -0.590631 0.458409 0.694971 -0.766906 0.576819 1.783378 0.398513 0.633393 0.195558 1.089578 -0.120134 0.186765 -0.621077 1.370577 -0.297394 -0.596475 0.026035 -0.645410 0.577568 -0.300039 0.395000 1.030112 1.051974 0.221392 0.680832 1.011333 0.702228 -0.703202 0.664249 -0.117247 0.563168 -0.642092 0.091101 -0.031307 -0.021680 -0.590158 0.519560 -1.336151 -1.351210 -1.085934 -1.034933 0.040495 0.037362 -0.087861 -0.157184 -0.014025 -1.516420 -0.706960 0.535494 -0.670826 0.385567 0.664945 0.565698 0.970303 1.513239 -0.763391 -0.176741 0.041998 -0.254984 -0.432935 -0.511243 -0.774946 1.064301 -0.894319 0.645434 1.024785 -0.194106 0.332620 0.270977 0.962518 -0.634527 1.741655 0.794781 -0.355338 0.725223 1.136939 2.160658 0.225044 -0.780911 -PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -1.907849 -4.118640 7.545162 7.012420 1.263796 3.550663 0.577506 -5.612938 5.959430 4.931507 -0.675717 2.225691 -3.955946 1.097192 0.596564 4.437771 -4.147022 -4.435585 -1.183133 -3.791061 -2.476751 -4.276869 1.018157 1.122053 2.212893 0.015460 -3.948802 0.673181 -5.147985 -8.421908 2.647592 -1.208038 3.612408 -0.625028 0.689146 -12.106491 6.850694 5.332298 -1.646195 -6.411463 0.876594 -2.546754 -0.888431 0.481782 -0.594319 2.507566 -0.125597 -0.053533 2.889703 2.313111 3.200216 1.585708 1.435218 8.075477 -2.737119 5.274949 2.626962 -0.563867 -1.302669 2.084251 1.556924 1.738219 4.556928 4.021471 -1.715875 -3.837350 0.282406 -0.413618 -6.625097 4.533507 0.248836 -3.708909 -2.929944 -1.806871 -2.736938 -1.484939 0.334280 2.910644 8.034547 -2.801662 5.463813 1.710543 2.668613 -0.449132 4.176980 -1.267890 7.257408 2.080464 -3.374137 -1.128512 -2.943041 -3.263986 0.916236 2.979661 -3.017374 -1.868836 2.209181 -4.183787 -6.178994 2.967348 1.543725 -0.367958 -8.510078 -1.777926 4.658069 2.013956 -1.696109 -5.933853 -3.546464 3.019656 -2.041741 -3.315076 -1.478625 -2.726170 -1.907910 0.265203 -5.890002 -1.467375 2.095674 -2.998101 -4.173905 4.899994 -2.546399 0.273659 -1.252116 1.753503 -1.777725 2.874603 -1.132204 4.355619 2.268024 -0.279431 -6.517859 0.248906 1.524326 1.399988 -0.917517 -0.978704 -1.752724 1.760444 -3.437504 3.411093 -2.422610 4.004141 7.160549 -0.146698 -3.820990 -2.381379 0.590929 -6.774450 2.055375 -4.439254 -1.503524 0.765119 5.095262 1.684879 3.334187 5.891347 -5.241191 4.128380 -1.171391 0.902493 3.865377 -0.867174 2.592506 -3.023534 -4.661679 3.059436 3.722571 0.696721 1.597468 -1.969059 -0.162369 -3.463495 -4.656591 2.649846 0.864346 0.599306 3.969376 2.762082 11.531570 -6.168173 2.097285 2.384105 -0.887699 1.525590 -1.143567 -6.199958 1.337745 1.386533 1.989873 7.443650 -0.787968 -4.228202 0.276134 0.395040 1.556167 -3.870099 3.295417 -4.549438 0.596277 -2.495088 -1.977219 -2.619913 -2.465935 -2.341089 -0.324359 6.717608 -2.217876 -7.575050 7.284017 -3.868515 2.215443 -9.321073 4.610139 -3.577832 2.677436 -3.641598 -0.551614 -1.288083 1.501589 -2.871924 2.206023 3.032872 -2.837514 3.260735 7.477352 1.417658 1.389227 -0.144178 3.220729 -0.485158 1.594270 -3.219812 6.734607 -0.700408 -0.414225 -1.492756 -2.806579 2.076077 -1.927115 -0.626149 1.383835 4.641955 -0.881123 1.166632 4.106418 2.841294 -3.536058 5.132235 0.714171 2.142110 -1.964128 -0.727804 0.572216 0.782306 -1.298750 3.393526 -6.199126 -4.866739 -3.848464 -7.019909 -1.240086 2.711599 2.152454 -0.006430 -0.052598 -5.733631 -3.424001 5.250983 -1.751592 5.941630 2.868403 3.565028 3.807458 5.538360 -1.900373 -1.052179 -2.775397 -1.746813 -2.590906 -3.194401 -2.219017 5.030231 -1.881217 3.401232 3.876084 -0.627705 1.821506 -1.144261 3.324094 -3.001843 6.920863 3.023946 -0.964143 3.420328 1.920270 7.627121 -2.238406 -3.623140 -PE-benchmarks/longest-palindrome-substring.cpp__main = -1.986175 -5.539366 7.503547 5.248298 1.392078 3.815204 5.104617 -4.468465 5.353865 3.673191 -1.819007 0.424800 -6.015314 -1.377572 -1.987260 1.279847 -2.998718 -5.138980 -0.133493 -2.917603 -0.615135 -5.324261 2.023760 2.391412 2.417730 0.205087 -1.448697 -2.174206 -7.191647 -5.215471 5.115383 -0.449065 3.135116 1.418032 -0.491993 -9.632737 5.125909 5.494108 -1.816169 -6.143971 1.705966 -0.434988 -2.683890 2.342853 0.255310 1.750049 1.025036 4.518411 1.200994 2.958208 3.383136 -1.852690 1.864605 8.743994 -1.874868 6.176473 4.885892 1.513285 1.257667 3.924319 1.039679 0.504571 2.839904 5.312719 -1.125788 -0.376494 1.222515 -1.881905 -7.339212 4.172435 0.157352 -2.603088 -2.380591 -1.176038 -2.005413 -0.283644 -2.618443 2.219745 9.449472 -3.416985 8.288519 2.952232 4.135242 -2.900034 1.617814 -0.909215 3.096711 1.924996 -3.661358 -1.684076 -7.546845 -2.032450 -0.480599 0.263561 -3.359670 -4.079252 4.511667 -3.018826 -6.909673 2.829424 0.471241 -1.489986 -3.566750 1.657188 2.744673 1.557147 -3.334444 -6.651661 -4.515622 3.587063 -3.661586 -1.110773 -0.608743 0.818414 -1.787821 -1.410792 -5.068484 -1.399883 2.290922 -4.950766 -2.801780 4.895796 -3.009762 3.653999 0.484325 1.075868 -0.886095 2.345989 2.290139 1.895483 4.293588 -1.131462 -5.932163 0.950795 2.310186 4.740952 -0.491685 0.056565 0.982043 2.368787 -0.630176 3.264447 -1.511904 1.349207 3.682046 -2.353047 -3.479388 -2.893922 0.714977 -6.801308 2.323853 -4.499093 -1.822126 0.185006 4.444525 2.338525 1.568739 7.022520 -5.764648 4.166011 -0.797039 0.210040 -0.811333 0.250503 2.821849 -2.466333 -5.915818 0.976421 3.645832 0.788436 1.282873 -2.719998 -1.398198 -4.923035 -4.598497 0.343353 0.443323 -2.176477 3.064319 3.886734 7.166237 -6.007182 0.679857 1.812454 -0.877551 0.589589 -0.108722 -8.219148 2.894715 0.578443 1.391963 6.358050 0.028519 -2.467974 2.724223 -1.888754 0.416258 -4.245057 3.002040 -5.009750 -1.898655 -3.864900 1.016139 -2.305699 -3.312191 -1.904659 0.163445 6.333075 -1.240941 -5.377856 5.192807 -0.826823 0.538853 -7.446999 6.666690 -2.408288 2.695592 -1.244760 -1.306081 -1.435536 2.117351 -0.015713 -0.965927 1.059319 -2.881498 5.838879 8.180873 0.890780 1.161083 2.167168 4.226856 -2.195481 -0.884816 -4.534345 4.110880 -1.051228 -4.640283 0.230501 -2.757369 3.303367 -2.248188 -0.720985 4.572325 5.794230 -1.818939 2.384394 2.656816 1.960522 -2.745333 3.095529 2.309097 4.559588 -2.322194 -0.373085 -0.771293 -0.325839 -1.898028 3.889380 -6.827718 -6.630478 -2.352827 -8.569635 -1.774096 -2.167081 3.179054 0.455521 0.857326 -7.578858 -4.210617 2.076275 -2.704714 3.161191 4.508997 4.546752 5.093620 6.371545 -2.007405 0.568474 0.564728 2.320218 -4.437232 -3.185653 -1.429029 2.678308 -2.388240 3.928962 3.374696 1.053413 1.917078 -3.306916 4.708351 -4.958018 7.874523 3.857364 -2.070297 3.605945 1.110236 7.857368 -0.403033 -3.020398 -PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -1.180334 -1.582835 1.242135 1.141160 0.557850 1.031583 0.666262 -0.433876 1.071450 1.039342 -0.596490 0.633462 -1.153733 -0.331990 0.077419 0.106649 -0.419240 -1.271938 0.318852 -0.154287 -0.174610 -1.260347 -0.551674 0.940264 0.155786 0.077576 -0.446736 0.199255 -2.110064 -1.330874 0.341451 -0.183338 0.718561 0.124307 0.316031 -2.366833 0.862247 1.568146 -0.062461 -1.871981 -0.038878 -0.799058 -0.169207 0.233854 0.277314 0.697328 0.658433 0.293779 0.006510 0.203260 0.405105 -0.524740 0.065441 1.663162 -0.179126 1.503771 1.435233 -0.018833 0.199101 0.321316 0.309571 -0.332750 1.065882 1.176886 -1.004019 -0.056883 0.222862 -0.096941 -1.343603 0.560300 0.463236 -0.498507 -0.577241 -0.376887 -0.733065 -0.372149 0.208629 0.184342 2.080461 -0.438964 2.260414 0.859237 1.532747 -0.149923 1.283921 -0.222357 1.497592 0.394839 -1.392191 -0.114745 -1.701080 -0.618004 -0.290456 1.123589 -0.597447 0.610690 0.422423 -0.819829 -1.514147 0.707422 -0.449942 -0.024385 -1.410592 0.395552 0.982456 0.541816 -0.383027 -1.586649 -1.267079 0.869451 -1.109311 -0.655769 -0.146990 -0.138573 -0.423110 -0.345427 -1.040471 -0.487471 1.085747 -1.078652 -0.863981 1.286775 -0.917925 0.941580 -0.173041 -0.047855 0.007197 0.465580 0.580969 0.177686 0.707281 -1.112338 -2.480396 0.017068 0.089288 0.973632 -0.612248 -0.176943 0.587921 0.397161 0.156957 0.556847 -0.478571 1.051961 1.059288 -0.280083 -0.586054 -1.302088 0.186522 -1.015011 0.510062 -0.798719 -0.090060 -0.159410 1.128225 0.309366 0.201092 1.638322 -1.063369 1.241477 -0.168068 0.180059 0.125350 0.013458 0.506984 -0.731344 -1.022348 0.691449 1.159192 0.175805 0.471945 -0.672455 -0.104997 -0.670694 -1.328332 0.652973 0.017871 0.291718 1.338467 0.588150 2.546621 -1.740311 0.373293 -0.069570 0.028936 0.235966 -0.195178 -1.371068 0.748450 0.227473 0.335466 1.663795 -0.043796 -0.953222 0.147637 0.153710 0.219721 -1.119404 1.160201 -1.075969 -0.069799 -0.505722 -0.163094 -0.714409 -0.856664 -0.652785 0.256197 1.604127 0.010313 -1.898258 0.696653 -0.402769 0.666969 -2.258317 0.887816 -0.808513 0.951297 -0.798236 -0.270700 -0.224300 0.673562 0.173044 0.173714 0.680469 -1.037165 1.070313 1.127413 0.231108 0.471187 0.573741 0.437867 0.024101 -0.570185 -0.730420 0.655139 0.063464 -0.265714 -0.182342 -0.726722 1.282159 0.451251 -0.392819 0.370091 1.609754 -0.576316 0.245530 1.190608 -0.145587 -0.650519 0.229870 0.217321 1.172507 -0.540144 -0.258029 -0.800285 -0.019071 0.099826 0.515242 -1.453441 -1.071451 -0.054286 -1.889740 -0.522242 0.479312 0.420359 0.740466 0.421487 -1.961812 -0.555296 0.830413 -0.392243 1.596700 0.461187 0.902999 1.061063 0.798041 -0.140389 -0.697012 -0.136119 -0.052720 -1.199752 -0.402566 -0.348267 0.562865 -0.821298 1.303965 0.491751 -0.103910 0.260529 -0.177069 1.151660 -0.848238 1.859809 1.038953 -0.908502 0.306745 0.326244 1.945180 -1.070770 -0.867155 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = -1.159452 -3.962282 7.029438 5.892609 0.245903 2.853233 1.040160 -4.550910 6.251562 1.590881 -0.915630 1.397478 -4.203144 1.408037 -0.623316 2.980511 -5.278206 -4.864358 -0.647329 -3.241965 -2.457786 -4.553787 1.133140 1.301939 1.795890 0.939521 -3.496072 0.212590 -5.190892 -3.428926 4.709115 -1.821390 3.109988 0.828126 0.874895 -12.882042 5.481711 3.360001 -1.509633 -5.805660 0.419574 -3.530198 0.280530 -2.199341 -0.538828 1.249160 0.435179 2.532360 3.185615 0.865935 1.036608 0.735166 -0.803074 9.275966 -3.783822 4.120360 2.271052 -0.271941 -1.130651 1.608468 1.584353 1.119577 3.991985 4.389007 -2.493559 -3.270859 0.192716 -2.435905 -6.016167 4.683320 1.001622 -0.885762 -3.691765 -0.884732 -3.837471 -1.634161 -1.730039 4.268318 8.221892 -4.074864 5.152550 1.452381 4.213835 0.060105 3.746740 -0.460067 6.983848 1.660709 -3.937602 -0.875596 -5.655813 -2.004394 0.205690 -0.053075 -1.558416 -4.142871 1.543305 -4.821319 -5.674060 2.255404 1.098104 0.578693 -6.186537 -1.041775 4.682754 2.020030 -2.488633 -5.835720 -2.893070 2.053907 -1.909639 -2.171588 0.474551 -1.850939 -1.511015 -2.859092 -5.824663 -1.900176 1.531474 -3.223101 -2.507299 5.107798 -3.886725 0.445069 -0.684804 0.909566 -1.651620 4.054561 -0.345320 2.568946 2.119046 -1.207266 -5.893577 0.388932 1.477283 5.325734 -0.745929 -0.566446 -1.360804 1.599311 -3.671060 0.310119 -1.102299 2.515006 4.204496 -1.599181 -3.856478 -2.456278 0.886489 -6.567557 1.809473 -4.342804 -1.132905 1.629836 4.784071 3.982761 3.450131 5.978783 -5.005115 4.623514 -1.469478 1.029692 3.613962 0.732350 2.869675 -2.715275 -4.023602 2.343909 1.893628 0.829220 1.468020 -2.880516 -0.111509 -4.254295 -3.962060 1.631210 2.100781 0.403638 3.767244 2.309601 6.037131 -7.826783 2.214000 2.666998 -0.238076 1.074188 -0.438273 -5.683577 2.810721 1.036962 0.626880 4.931645 -0.876639 -4.222787 0.361078 0.269275 1.938084 -3.387236 0.695927 -3.739520 -0.972127 -3.548315 0.511002 -2.816187 -2.405121 -2.314455 -1.111942 6.140771 -3.019052 -6.305824 6.710828 -2.690147 3.901860 -8.228770 3.859672 -3.391803 3.771299 -2.783036 -0.353308 -1.130377 1.193526 -2.274274 1.669407 2.881876 -2.420369 2.494214 6.562684 1.837670 2.084131 0.934202 3.832058 0.075392 1.276580 -2.303156 5.280211 -0.888548 -1.500436 0.099840 -2.723572 2.361038 -1.081781 0.856271 3.863497 5.154547 1.312142 3.433246 4.123004 2.396810 -3.220814 2.580308 -0.252286 2.452299 -2.059291 -0.323464 -0.081492 1.022493 -1.930955 2.577987 -5.807929 -7.101693 -4.448424 -6.044040 -0.923005 0.187892 0.726740 -0.021892 0.540140 -5.976242 -2.327048 2.234982 -2.158606 5.499333 2.526115 2.610888 3.917771 5.796337 -3.609550 -1.957635 0.544702 -0.330429 -2.381706 -1.360643 -4.431692 4.586403 -3.320253 3.195778 4.968656 -1.344329 0.790823 -0.760474 5.025252 -2.801925 7.295803 3.379348 -2.434521 3.093975 2.452878 7.246451 1.312396 -3.523500 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.976014 -0.931270 1.009113 0.830547 0.420009 0.609852 0.586880 -0.468395 1.012128 1.046002 0.023285 0.343935 -0.819909 0.046959 -0.068260 0.486487 -0.248227 -0.884097 0.067933 -0.569611 -0.449697 -0.778581 -0.136807 0.136316 0.190312 -0.711440 -0.506900 -0.319548 -1.278454 -0.936241 0.364526 -0.291029 0.535375 -0.862275 -0.093378 -2.602595 0.677018 0.785269 -0.303197 -1.105250 0.130073 -0.654223 0.327795 0.244860 -0.081597 0.103019 0.300870 -0.203044 0.408574 0.259887 0.763869 0.093221 0.024094 2.248451 -0.647009 0.903029 0.541337 -0.038627 -0.353252 0.484797 0.253284 -0.114744 0.816820 0.598762 -0.432725 -0.309582 0.014916 -0.143950 -1.130269 0.462851 0.021377 -0.469254 -0.360042 -0.152869 -0.605018 -0.644299 -0.430808 0.217937 1.430843 -0.676733 1.251897 0.382960 0.790953 0.248809 0.844484 -0.019942 1.052085 0.152167 -0.807070 -0.094696 -0.443260 0.133318 -0.124343 0.734485 -0.256613 -0.579930 0.518845 -0.090841 -1.115926 0.735581 -0.068458 0.254322 -1.476729 -0.323457 0.635681 0.566898 -0.801764 -1.277359 -1.155590 0.524322 -0.308357 -0.464540 0.226646 -0.872622 -0.249857 -0.545613 -0.799664 -0.384044 0.486823 -0.778138 -1.137658 1.076810 -0.658681 0.457824 0.009524 0.332539 -0.250563 0.575207 0.125495 0.516477 0.107518 -0.371744 -2.219969 -0.405816 0.152143 0.854548 -0.049187 0.016611 -0.162858 0.235993 -0.272107 0.515589 -0.072887 0.793085 1.161660 -0.092892 -0.436887 -0.561535 0.643866 -0.967439 0.306001 -0.721951 -0.022023 0.022222 0.812615 0.432996 0.360484 1.283061 -0.665812 1.002443 -0.297793 -0.180402 0.498202 -0.242647 0.567367 -0.507340 -0.808569 0.134029 0.942100 0.221191 0.248644 -0.475827 -0.078710 -0.562609 -0.607182 -0.059711 0.311516 -0.166775 0.726182 0.454701 2.130481 -1.711865 0.318041 0.130537 -0.154140 0.328154 -0.372903 -1.076560 0.204147 0.387140 -0.423407 0.894837 -0.109134 -0.927075 0.225248 -0.207955 0.296671 -0.629584 0.484628 -0.757449 -0.290929 -0.400226 -0.338466 -0.666511 -0.438273 -0.479822 -0.111546 1.083920 -0.439066 -1.071576 0.793754 -0.209547 0.177449 -1.653428 1.509596 -0.552013 0.545196 -0.940015 -0.129625 -0.379266 1.335769 -0.031499 0.391378 0.524000 -0.747621 0.731115 1.505539 0.253856 0.588241 0.199999 0.766029 0.067007 -0.225878 -0.463510 0.965194 -0.206537 -0.373096 -0.015011 -0.530702 0.736945 0.161786 0.105993 0.282609 1.005791 -0.553188 0.184758 1.081680 0.196094 -0.398062 0.528541 0.011022 0.933488 -0.350158 0.106928 -0.358091 0.155022 -0.121610 0.368011 -1.067641 -0.687640 -0.316807 -1.001293 -0.006075 0.789454 -0.108739 0.161755 0.245147 -1.418540 -0.387089 0.595236 -0.499506 0.728832 0.368544 0.665403 0.841897 0.940090 -0.226631 -0.451235 -0.204822 -0.409080 -0.586988 -0.473056 -0.141524 0.443467 -0.801914 0.790745 0.223139 0.081982 0.124715 0.471539 0.403886 -0.562580 1.344470 0.669677 -0.122062 0.677903 0.753580 1.770901 -0.631237 -0.515422 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -1.224803 -3.614279 7.176444 6.486517 0.697423 3.056456 0.549691 -5.397278 5.207779 3.102212 -0.448571 1.953734 -3.732823 1.200145 -0.307472 3.662852 -4.118098 -4.089101 -1.710573 -3.807400 -2.110281 -3.711846 1.308342 1.427682 2.301409 0.063936 -3.943360 0.352652 -5.152050 -6.315145 2.963961 -0.855475 3.337147 -0.631340 0.525056 -11.100185 6.128035 5.027084 -1.505698 -5.557575 1.166049 -2.603255 -0.887554 -0.410818 -1.203240 1.736291 -0.675129 -0.309982 2.814394 1.619089 2.496284 2.126506 0.832533 7.654639 -2.871844 4.607039 2.206838 -0.257624 -1.162397 1.689641 1.306816 2.016906 3.835858 3.243317 -1.462866 -3.838461 -0.014616 -0.755754 -5.804818 4.252254 -0.044353 -3.089391 -2.807655 -1.549080 -3.472480 -1.271173 1.043783 3.236295 6.971400 -3.148740 4.495128 0.973978 1.945486 -0.492090 3.472645 -0.993096 6.181748 1.827761 -2.382923 -1.072733 -3.230100 -2.307230 0.814491 2.028976 -3.021890 -2.431371 2.412535 -4.646592 -5.694404 2.260922 1.764497 -0.787090 -7.143846 -1.629302 3.526790 1.796181 -1.596146 -5.201717 -2.795481 2.984505 -0.833283 -2.901642 -1.185275 -2.089548 -1.430665 -0.761440 -5.554956 -0.828173 1.586942 -2.435243 -3.476607 4.453470 -2.864139 -0.065852 -1.056123 1.680916 -1.902794 2.995533 -1.399641 3.701760 1.814642 -0.098690 -5.028673 -0.223387 1.351075 2.456696 -1.181915 -0.589998 -1.860441 1.522680 -3.146676 2.479545 -1.874228 3.013856 5.515890 -0.557773 -3.461848 -1.866883 0.082564 -6.562160 1.368159 -3.915400 -1.602008 1.529309 4.427790 2.338271 3.056288 5.887632 -4.328495 3.418375 -0.537409 0.196720 3.740379 -1.047832 2.298428 -2.715159 -4.649144 2.899908 2.269244 0.978018 1.271160 -1.052191 -0.297777 -3.414538 -4.004075 2.106076 1.087429 0.576802 3.759621 2.824709 8.402296 -5.797166 2.085985 2.272501 -1.202251 1.464099 -1.084654 -5.599863 1.202919 1.308087 1.313637 6.680353 -0.809302 -3.562400 0.541263 0.090138 1.741901 -3.603611 2.601385 -4.061786 0.310783 -2.941893 -1.952788 -1.919636 -2.129833 -2.266468 -1.111433 6.103188 -2.770294 -6.753087 6.840596 -2.567415 2.322071 -8.455216 3.735419 -3.068177 3.288511 -2.602585 -0.228456 -0.876186 0.966364 -3.116830 1.902057 2.671213 -2.752878 2.638083 6.985303 1.273489 1.026024 -0.315686 3.180464 -0.590313 2.203838 -3.120570 6.267233 -0.549207 -1.217867 -0.867252 -2.445720 1.364418 -2.205313 -0.050394 2.119043 4.167258 0.421592 1.360869 3.903014 3.125467 -3.084526 4.502783 0.349742 1.496583 -1.719924 -0.677500 0.953217 1.139477 -1.138911 2.862163 -5.618247 -5.446172 -4.309384 -6.720130 -0.258369 0.977862 1.689768 -0.365432 -0.524357 -5.271319 -3.498653 3.820727 -1.795350 5.822732 2.765399 3.137358 3.434780 5.195564 -2.446814 -0.257698 -1.555481 -0.691250 -1.748486 -2.700924 -2.702375 4.706074 -1.759252 2.616615 4.336840 -0.636586 2.170625 -0.720320 2.765250 -2.782951 6.513175 2.464492 -1.398245 3.499653 1.835678 6.041853 -0.802424 -3.277672 -PE-benchmarks/kmp-algorithm.cpp__main = -0.443789 -2.465075 3.001054 2.679476 0.099526 1.343891 0.944750 -1.366067 1.731011 1.207461 -1.037016 1.656436 -1.641401 0.083844 -0.741550 1.090777 -1.729365 -1.719347 -0.077693 -0.610349 -0.407639 -1.757636 -0.268964 1.555333 0.978296 0.996948 -1.117784 -0.024090 -2.798120 -2.528035 0.898144 -0.400145 1.238588 0.329334 0.517543 -4.065752 1.887456 2.498093 -0.454998 -2.998950 0.453130 -0.917917 -0.696165 -0.277792 -0.152301 0.828879 0.517928 0.987814 0.289879 0.757997 0.322038 0.071479 1.451529 3.486672 -0.508400 2.456655 2.534809 0.136065 0.622085 0.208256 0.812066 0.092450 1.233287 1.744656 -0.433905 -1.019492 -0.517797 -0.378125 -1.927883 1.197359 0.084092 -0.717774 -1.772878 -0.677131 -1.688303 -0.264233 -2.090665 1.323645 3.608727 -1.526704 3.306867 1.267324 1.830220 -0.368724 1.377083 -0.057106 1.785159 1.077008 -1.568618 0.036030 -1.987917 -0.955137 0.325062 0.600637 -1.660334 -1.277003 1.319398 -2.370712 -2.641844 1.271003 0.255300 -0.617088 -0.837127 0.003230 0.923797 0.835891 -0.920558 -2.398193 -1.416405 1.011523 -0.470699 -1.205263 -0.275624 0.301279 -0.194535 -0.148950 -2.256127 -0.150942 1.394594 -1.458514 -0.488957 1.767729 -0.491265 1.108468 -0.511882 0.148488 -0.228370 1.331478 0.612863 1.065128 0.797505 -0.375263 -2.650764 0.869422 0.838770 0.929826 -1.203253 0.024664 0.457908 0.892782 0.296261 0.967648 -0.597083 1.378108 1.176002 -0.502171 -1.437914 -2.068627 -0.580710 -2.175912 0.854918 -1.418592 -0.809273 0.507638 1.808292 0.514619 0.781075 1.951551 -1.899820 1.396617 0.023916 0.379340 0.613793 -0.011631 0.794340 -1.077904 -1.903923 1.443730 1.406779 0.572110 0.608660 -0.562800 0.072300 -1.138379 -1.236652 1.400761 0.478530 -0.182757 2.241919 1.183837 3.391194 -1.853520 0.391797 0.293385 -0.371821 0.304593 -0.326847 -2.608070 1.535864 0.264874 0.936195 2.426137 -0.115480 -0.874542 0.888024 -0.225028 0.331964 -1.574959 1.687536 -1.661185 -0.708095 -1.138670 0.241461 -0.690650 -0.994910 -1.158127 0.082223 2.787620 -1.699683 -1.898192 1.682543 -0.502484 0.771615 -2.892608 2.488088 -1.236726 1.602464 -0.590813 -0.719613 0.062893 0.358650 -0.691012 -0.204355 1.271877 -1.471675 1.081933 2.037669 0.490300 0.188993 0.664003 1.109720 -0.521096 0.316814 -1.281560 1.561841 0.021585 -0.876233 -0.335473 -0.963020 1.272747 -0.374807 -0.110638 1.406000 1.854678 0.145074 0.512676 1.424630 0.794432 -1.389558 1.071915 0.036727 1.407835 -1.215566 -0.416699 -0.659949 0.239333 -0.156130 1.214369 -2.578069 -2.110179 -1.898071 -2.091514 -0.813960 -0.319027 1.140494 0.192667 -0.006497 -3.068487 -1.887564 1.713025 -0.851683 0.538964 1.527133 1.322504 1.856111 1.552864 -0.096425 -0.360990 -0.486899 0.518073 -0.835239 -0.474647 -0.931067 1.241704 -1.408494 1.320136 1.774707 -0.329442 0.882022 -0.094367 1.648681 -1.376230 3.298483 1.436503 -1.755763 0.831377 1.335466 2.463611 -1.030378 -1.597121 -PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -5.864338 -9.409373 7.470392 6.998957 2.512628 6.325533 4.212200 -3.356116 5.453436 6.682169 -3.014708 5.915080 -4.903797 -2.715105 -0.176336 0.784495 -1.763422 -5.595563 1.018882 -1.617929 -0.508113 -6.834168 -5.190863 7.117580 0.897014 -0.379500 -2.466591 0.916492 -12.029450 -9.378419 1.370997 -0.314806 3.791106 -1.553472 2.187688 -14.761257 5.077187 9.757190 -0.422581 -10.377733 -0.057895 -3.172998 -2.165543 2.654623 0.350008 3.023445 2.605661 -0.219244 -1.056914 1.224926 2.672839 -1.182136 4.142768 11.662799 -0.775681 9.848312 9.626366 -0.154711 2.887255 2.032258 1.906722 -1.271962 5.403267 6.192243 -3.312072 -0.864651 0.433064 1.383459 -7.034056 2.012640 1.370708 -5.298077 -3.660618 -2.334437 -5.848143 -2.364560 -2.982910 0.827865 11.659838 -2.639142 14.431582 5.674320 8.301716 -0.626547 7.420520 -1.048187 7.857933 2.669549 -7.811039 0.748954 -8.322879 -2.802035 -0.126660 7.179788 -5.789442 2.383156 3.582198 -5.885138 -9.167271 5.278698 -1.563770 -1.389837 -6.624461 0.007463 3.688712 1.951863 -2.420471 -9.495231 -8.675997 5.698233 -5.053706 -4.556341 -1.594971 -0.596912 -0.231230 -0.525651 -5.263201 -1.146658 7.289879 -4.990588 -5.502007 6.973072 -3.310443 5.448491 -1.559818 0.359762 -0.040270 1.108785 2.336789 2.071024 3.097061 -5.614928 -15.382308 0.088440 0.144994 3.174275 -3.570533 -1.024857 4.024218 3.011614 3.582919 6.366534 -1.766638 6.726071 4.147677 0.246840 -2.344707 -8.126203 0.395605 -5.583220 3.290091 -3.647436 -2.466829 -0.455181 5.720438 0.264227 0.272614 5.473363 -5.039108 7.053224 -0.147492 0.968992 0.440240 -2.139558 2.121583 -3.869177 -6.171678 3.915859 6.902417 2.056039 2.440782 -2.653133 -0.773532 -1.914771 -6.447858 3.305764 -0.483616 1.036611 8.299452 4.039487 18.548505 -9.511092 1.717456 -1.816805 -1.042333 1.822518 -2.495322 -7.539598 3.891980 1.895625 1.586275 10.123930 -0.455057 -3.821192 1.420664 0.427179 0.872346 -5.887824 8.667721 -6.002994 -1.943029 -1.729003 -2.981496 -3.823557 -4.128791 -5.231555 1.317022 8.893615 -3.253362 -9.399433 4.571096 -1.781220 1.706937 -11.614299 8.845076 -3.924294 4.711481 -4.911260 -2.849692 -1.121171 5.690862 -0.061821 0.849481 3.919605 -8.102523 5.938885 6.847341 0.658462 2.690246 2.553435 1.926167 -1.292570 -2.834508 -5.406226 4.715839 0.636046 -2.524136 -2.350090 -3.773667 7.896511 1.593698 -1.728546 0.275101 8.613709 -3.685391 -2.154353 7.395343 -1.319028 -3.452594 2.656876 1.008228 5.074391 -3.311142 -1.302539 -4.293228 -0.849703 1.844022 2.830851 -8.467834 -3.250681 -2.094784 -7.919277 -2.739487 2.713612 2.920854 4.210773 1.299678 -13.147790 -5.102139 5.948382 -2.380895 2.351591 3.789306 6.114369 6.368904 4.007549 2.351740 -2.442878 -2.804354 -0.246335 -5.658935 -2.774628 -0.749195 2.955817 -4.660929 7.648280 2.068626 0.928739 2.920601 1.423635 3.425472 -4.734529 10.755667 5.296432 -5.487285 1.053223 3.389803 9.667686 -8.618828 -4.855744 -PE-benchmarks/program-wish-womens-day.cpp__main = -6.886396 -12.271535 8.322575 8.357111 5.922815 8.369608 4.706137 -2.327229 6.877079 7.959371 -4.203463 8.252747 -5.353647 -3.697246 0.576262 0.717634 -1.400542 -9.849315 4.406844 0.545812 0.471921 -7.021057 -6.840538 8.736594 0.102330 0.688413 -2.982038 2.578028 -16.873395 -12.695219 0.260847 -1.164919 4.370879 -3.040588 2.324725 -13.518617 7.126153 13.741820 0.130302 -14.641498 -0.724998 -4.357042 -2.271302 4.264674 0.339322 7.039802 5.497354 0.725084 -2.510482 3.930397 2.411204 -0.735906 4.398578 6.704050 3.228567 11.243076 10.943897 0.972614 1.854162 1.646175 2.995185 -2.053121 7.724544 5.911918 -5.997453 0.717440 0.245925 2.375209 -9.951340 1.455639 3.997542 -6.842638 -1.907298 -0.696998 -6.550782 -1.597763 8.376103 -0.908098 13.184181 -1.544751 16.174045 5.314838 11.199835 -2.448740 8.418760 -1.900757 9.458887 4.151009 -8.865307 -0.510523 -12.097292 -5.811667 -1.536334 6.834560 -6.369827 4.248697 2.169257 -8.100916 -10.225318 5.338947 -2.931667 -0.132868 -8.689415 0.768325 8.314331 4.089578 -2.061402 -8.539597 -6.701300 6.793433 -9.298674 -5.778051 -2.650549 -0.464053 -1.958136 0.377612 -5.529030 -3.235226 10.674768 -6.172283 -3.049737 9.293993 -5.228968 7.764219 -3.355598 -1.858718 1.784844 0.782608 4.634444 2.329645 3.201421 -8.760515 -12.200555 -0.101959 -2.727596 2.637943 -5.629579 -3.136773 6.080344 4.734870 4.611590 7.114038 -4.676483 4.820364 7.507077 0.249907 -3.300100 -10.044246 -1.022908 -6.130038 3.312218 -4.456302 -2.026569 -0.695979 8.941380 -1.215879 1.436330 7.953952 -5.978993 5.335717 1.169967 1.904911 0.789129 -2.516618 1.539721 -4.752314 -7.677086 6.724784 8.707182 0.913951 3.023861 -5.244514 -0.053236 -2.245839 -8.672565 4.114836 -0.717180 4.153988 10.242474 3.825289 14.952123 -6.162570 -0.107232 -3.804208 -1.448275 3.297582 -3.233430 -9.138223 3.180459 2.592893 6.764476 13.674160 -1.247083 -5.029741 2.479266 4.218951 -0.446120 -7.918595 11.060601 -7.590258 0.729809 -0.074413 -3.291807 -6.032868 -3.623735 -8.268907 -1.366614 12.643894 0.877060 -14.700906 4.081408 -5.201866 3.902673 -15.424380 2.672381 -5.823706 7.208485 -2.106207 -1.127132 -0.233498 -0.266621 0.242550 1.004395 5.306360 -7.098122 7.886737 5.827724 1.719311 1.081846 5.273218 0.558427 -0.965267 -3.255889 -5.429166 3.480133 -0.141516 -0.663951 -1.482642 -5.600280 8.476426 2.912859 -4.585570 -0.421232 7.850549 -3.475041 -0.620387 7.354365 -2.620589 -6.762806 2.662780 2.945131 7.017631 -2.928829 -1.472150 -6.376112 -0.451677 2.953918 4.137019 -10.491897 -4.457835 -3.654801 -16.520805 -3.726410 2.704364 4.110611 5.028293 3.651348 -13.256093 -5.168709 7.903162 -1.471803 13.300975 5.219021 7.133891 7.443304 2.367703 0.751682 -3.425379 -4.949379 -2.810974 -8.315392 -2.857749 -0.110116 3.373397 -2.953353 9.888835 2.824985 -0.423071 1.635770 -3.470663 4.679225 -5.905237 11.579143 7.069454 -5.942353 -1.842992 -2.068552 12.609375 -11.174074 -7.850145 -PE-benchmarks/vertex-cover-problem.cpp__main = -0.556580 -4.759288 6.404955 5.789294 -0.858658 2.696403 0.649080 -3.031119 3.341415 1.342067 -1.678992 2.816892 -3.706353 0.873923 -1.045026 2.472786 -4.785298 -3.628599 -0.361228 -1.581667 -1.810788 -3.217460 0.177561 3.298876 2.111646 3.238018 -2.705959 0.044778 -4.263308 -3.842637 2.374631 -1.280294 3.173290 2.863658 1.332266 -9.427542 3.985807 4.039011 -0.900600 -5.387855 0.553521 -2.134607 -0.630420 -1.918056 -2.017079 1.390801 0.980691 2.010360 1.545591 1.111106 0.016598 -0.059460 2.286212 6.870012 -0.732769 4.175302 3.687413 -0.290913 0.430121 -0.321674 1.871011 0.299323 3.038116 3.128913 -1.126193 -2.587840 -1.011956 -1.822994 -4.131428 3.173366 0.497083 -0.431227 -3.519387 -1.523414 -3.198277 -1.035378 -2.493284 3.707266 7.343573 -3.760897 5.377000 2.015487 2.936537 -0.698729 2.970258 -0.106480 4.455930 2.190930 -2.778235 0.529617 -2.801905 -1.944147 0.694483 0.595422 -2.814122 -3.648092 2.316224 -5.435638 -5.465632 2.674173 0.836476 -0.646879 -2.474093 -0.866772 2.647525 1.779495 -2.528492 -4.579949 -1.734058 1.340159 -0.598036 -2.460223 -0.680570 1.067132 -0.678300 -0.528242 -5.090151 -0.922938 2.090260 -3.345179 0.008603 3.871677 -0.811678 1.968424 -0.996128 0.400417 -0.693203 3.961672 1.045230 2.106660 0.915753 0.031776 -2.290598 0.959903 1.712726 2.338141 -2.078859 -1.321760 0.255467 1.892458 -0.639998 0.870151 -0.842110 2.668967 3.133120 -0.822874 -3.627291 -3.423296 -1.805151 -5.650148 0.937661 -3.737403 -1.466527 2.729751 3.896751 1.629173 1.988075 4.289482 -3.585057 3.028405 -0.410586 0.739662 2.080047 0.772087 2.040496 -2.425226 -3.733291 3.265447 2.017528 1.599957 1.325096 -1.923906 0.223191 -2.537737 -3.053608 2.947380 1.738441 -0.006031 4.062645 2.115125 5.667989 -3.376142 1.118606 1.112994 -0.390733 0.729895 -0.174735 -5.473961 2.892597 0.236581 0.737816 4.306095 -0.676793 -2.345376 1.796295 -0.395991 0.986599 -3.567144 2.427727 -3.362277 -0.282210 -3.297501 0.836845 -1.667885 -1.875219 -2.338436 -0.598925 6.007802 -5.080238 -3.516089 4.247975 -0.548838 3.138900 -5.937108 3.518306 -2.680703 4.288354 -1.243610 -1.985649 0.269565 -0.912993 -1.256249 0.037036 2.847930 -1.936556 1.062927 4.092136 1.092549 0.489395 1.477709 2.899209 -0.203890 1.434467 -2.086662 3.702228 0.204047 -1.273218 -0.477908 -2.191428 1.395631 -0.977054 0.217502 3.316803 3.680632 1.256155 2.091085 2.651542 1.756420 -3.045488 1.671494 -0.230408 2.876098 -2.724062 -0.726475 -0.928174 1.858439 -1.002676 2.544777 -5.404264 -5.921658 -5.404034 -3.777481 -2.409239 -0.055390 2.227504 -0.064891 -0.156271 -4.409398 -3.413465 3.611277 -1.978755 3.332594 3.027633 2.624209 4.081338 3.842625 -1.171072 -1.584791 -0.097552 1.020803 -1.267927 0.171312 -3.389473 2.889017 -2.747793 2.707913 4.649759 -1.188081 1.513170 -0.676443 4.666619 -2.954899 6.580460 2.929215 -3.877519 2.350398 2.752511 3.813591 -0.134050 -3.458679 -PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -2.694359 -9.536182 11.230525 10.653700 0.935040 6.836749 1.238017 -5.971911 5.845416 6.690734 -3.819360 6.413098 -6.240133 -0.839147 -1.487668 3.792799 -5.281477 -6.122315 -0.207186 -2.580783 -1.821032 -6.144858 -1.999751 7.098414 3.131639 5.222798 -4.105492 1.361031 -10.500106 -12.644089 1.644961 -0.594891 5.230317 3.260332 2.628449 -13.060052 7.896701 11.166087 -1.162105 -11.553490 1.056049 -3.109304 -3.648150 1.340437 -0.912653 4.427811 1.478485 1.850775 0.333548 2.838167 2.231918 0.141495 6.650135 9.756054 0.705265 9.988657 8.710326 0.104344 2.456989 1.078145 2.849324 0.662910 5.875464 5.778658 -2.551477 -3.617918 -0.949930 0.454313 -7.389441 4.415141 0.737498 -5.155607 -4.700761 -3.706082 -4.421301 -0.967411 -3.998922 3.551323 12.876673 -3.884578 12.027594 5.079443 5.703638 -2.345022 7.083484 -1.572188 8.720687 4.319607 -5.302033 -0.346548 -5.952876 -4.599124 1.429203 4.424822 -7.643424 -0.509537 5.049021 -9.387590 -10.700921 5.260382 0.606036 -3.013257 -5.573963 0.047291 4.605283 2.594085 -2.360838 -8.571531 -4.292212 5.313471 -3.777552 -5.802418 -3.578722 1.193976 -1.027629 2.829947 -7.858890 -0.623742 6.080520 -5.379700 -2.655673 7.157694 -0.326530 4.164528 -2.535085 0.701433 -0.289303 3.297562 1.852017 4.103130 3.040690 -0.740917 -7.276686 3.950182 2.371374 -0.526720 -5.181773 -1.412643 2.472598 3.696212 1.434795 5.667074 -4.738386 6.325204 6.599793 -0.449487 -4.875585 -7.716722 -3.184413 -8.333313 1.835658 -5.382045 -3.747697 1.081863 7.281531 0.632074 2.146932 6.323898 -7.451641 5.104801 0.529392 2.225877 2.078285 -0.225954 2.590459 -4.783094 -7.829318 6.213594 6.655813 1.779256 2.209921 -1.955202 -0.463352 -2.976253 -6.349730 6.743602 0.597420 1.094836 9.308741 4.947321 16.431672 -5.537578 1.518871 -0.001864 -1.878405 1.631359 -1.779907 -10.156860 4.344992 1.294404 5.071418 11.957983 -0.847810 -3.128537 2.372692 0.378360 1.053171 -7.167945 8.709795 -7.474341 -0.604627 -3.311534 -1.052209 -2.909366 -4.333146 -5.177840 -0.133489 11.262488 -6.494842 -8.717432 7.032999 -3.193987 2.444404 -11.578011 5.509827 -5.046213 5.454605 -2.070800 -3.048958 -0.423636 -0.671963 -2.349576 -0.081128 5.030962 -5.879759 5.181667 7.481582 1.132462 0.559986 2.227984 2.928993 -2.263363 0.390710 -6.139715 6.949307 0.890619 -1.604492 -2.631383 -4.294344 4.125065 -1.387310 -2.512131 2.816418 7.139534 -1.303857 -0.327663 4.823879 1.789070 -5.376756 5.210857 1.177493 4.335965 -4.486024 -2.207492 -2.524699 0.435092 0.528463 5.052570 -10.442742 -6.674146 -6.245206 -8.883622 -3.771746 0.611379 5.634709 2.020708 -0.182339 -10.080629 -7.875416 8.839408 -2.684024 5.451714 5.373944 6.382443 6.951697 5.471238 0.821575 -1.080309 -3.871168 0.378156 -4.386013 -2.994571 -2.131643 5.226939 -2.396294 6.448613 5.887984 -0.517434 4.338023 -2.319400 5.516585 -5.678847 11.679329 5.512266 -6.173213 2.417085 2.853042 8.724306 -6.511141 -6.468014 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = -0.879922 -2.609537 3.042935 2.590849 0.168158 1.610128 0.852688 -1.300430 1.537216 1.217399 -1.078644 1.516622 -1.613511 -0.220149 -0.437014 0.632486 -1.577302 -1.891666 0.031782 -0.727588 -0.471226 -1.571776 -0.717628 1.716657 0.719434 0.709790 -1.039636 0.127572 -3.004978 -2.349161 0.744692 -0.290410 1.280826 0.335735 0.736689 -4.369312 1.880945 2.643287 -0.375716 -3.125943 0.237856 -0.994766 -0.753652 0.049309 -0.391748 0.932528 0.661416 0.828307 0.012041 0.646848 0.369666 -0.123122 0.905813 3.552660 0.014072 2.492328 2.621488 -0.002430 0.496664 0.394929 0.807414 -0.120024 1.393920 1.527310 -0.712950 -0.759316 -0.166652 -0.398339 -1.920109 1.073686 0.522317 -1.137495 -1.133583 -0.912920 -1.743215 -0.475029 -0.894711 1.055535 3.614057 -1.440399 3.298998 1.252320 2.021473 -0.250371 1.874442 -0.126172 2.337644 1.065417 -1.561178 0.174498 -2.108331 -1.102141 0.165898 0.903918 -1.694529 -0.821535 1.326914 -2.379805 -2.676148 1.531225 0.058704 -0.575954 -1.387394 -0.015671 1.214615 0.888732 -1.048028 -2.281079 -1.539118 1.319400 -1.030521 -1.208836 -0.297973 0.373098 -0.289683 -0.148692 -2.197273 -0.095742 1.768369 -1.411642 -0.705338 2.110735 -0.791879 1.221479 -0.573363 0.020897 -0.306389 1.262759 0.669813 0.728540 0.624134 -0.717689 -2.756908 0.523825 0.537390 1.032380 -1.097230 -0.355526 0.798449 1.045696 0.311845 1.190604 -0.822272 1.595349 1.454839 -0.312928 -1.426911 -2.268649 -0.560261 -2.166220 0.518067 -1.477234 -0.942312 0.623565 1.964359 0.830488 0.527480 2.124946 -1.662285 1.642221 -0.169513 0.345802 0.384257 -0.390372 0.809132 -1.196322 -1.944260 1.403067 1.495998 0.728426 0.820701 -0.844288 -0.012886 -1.155266 -1.817838 1.311810 0.568357 0.151322 2.299828 1.423645 3.629340 -2.047137 0.305788 0.000807 -0.474177 0.294115 -0.368486 -2.537894 1.071445 0.441455 0.750138 2.852138 -0.142381 -1.040358 0.620788 -0.040215 0.301807 -1.671853 1.797963 -1.708777 -0.290740 -1.026743 0.076277 -1.108253 -1.050308 -1.443776 -0.428386 2.994481 -1.778390 -2.557677 1.696864 -0.567653 1.060041 -3.302978 1.946893 -1.288229 2.068819 -0.614330 -0.640689 -0.115818 0.257200 -0.554582 0.373367 1.257294 -1.595671 1.182219 2.112611 0.462366 0.413145 0.689925 1.094171 -0.637449 -0.075274 -1.516446 1.640063 -0.070156 -0.816399 -0.392255 -1.061889 1.312306 -0.094257 -0.100549 0.903345 1.777448 -0.072507 0.336757 1.716424 0.303540 -1.392085 0.848613 0.211271 1.567025 -1.199257 -0.466722 -0.876894 0.394081 0.137791 0.897277 -2.710117 -1.986266 -2.113629 -2.530808 -0.863827 0.118804 1.023352 0.499105 0.126402 -2.904315 -1.748379 1.923976 -0.861694 1.570121 1.560778 1.554595 2.019844 1.537691 -0.155152 -0.546705 -0.379722 0.359281 -1.259286 -0.512371 -1.002286 1.261277 -1.296234 1.659260 1.670495 -0.121715 1.023972 -0.053428 1.869640 -1.505828 3.232048 1.598974 -1.951346 0.562278 1.335231 2.522344 -1.225397 -1.668607 -PE-benchmarks/sort-array-wave-form-2.cpp__main = -1.317363 -3.294968 3.579066 3.236659 0.477743 2.092739 0.845462 -1.547933 1.933858 2.080774 -1.308537 2.035738 -2.082521 -0.367744 -0.230006 1.025442 -1.692427 -2.370196 0.154253 -0.774256 -0.517131 -2.011854 -0.953263 2.214634 0.850233 0.558582 -1.343123 0.380499 -3.656750 -3.581412 0.368106 -0.435995 1.679927 0.094612 0.822919 -4.960183 2.489702 3.369302 -0.420201 -3.867356 0.226700 -1.237118 -0.847674 0.197956 -0.573178 1.330748 0.970525 0.486424 0.045125 0.908537 0.662851 -0.191351 1.419280 3.956985 0.087686 3.246611 3.223937 -0.024134 0.520701 0.415890 1.002895 -0.221785 1.954489 1.912590 -1.013401 -0.966003 -0.198769 -0.102606 -2.433858 1.239330 0.543432 -1.358157 -1.339534 -1.006574 -2.012769 -0.695858 -0.098069 0.976543 4.398627 -1.535372 4.202394 1.777069 2.398163 -0.201943 2.412737 -0.259259 2.927567 1.326023 -2.141634 0.211395 -2.242960 -1.477959 0.219594 1.605944 -2.025172 -0.645105 1.480005 -2.954444 -3.452558 1.962525 -0.073121 -0.623553 -2.127673 -0.223672 1.721395 1.099978 -1.166470 -2.949877 -1.905137 1.518026 -1.401699 -1.721158 -0.544638 0.194218 -0.314596 0.244724 -2.740687 -0.374876 2.245088 -1.955753 -1.017664 2.565821 -0.827239 1.682173 -0.734943 0.121876 -0.271998 1.324328 0.878566 1.142950 0.645701 -0.956389 -3.381591 0.463431 0.578253 0.450724 -1.351572 -0.487911 0.958934 1.259183 0.468726 1.806403 -1.144541 2.201280 2.026870 -0.134344 -1.619764 -2.839282 -0.781477 -2.609961 0.840539 -1.844990 -1.258800 0.590482 2.468212 0.396408 0.687816 2.662882 -1.903861 1.952811 -0.260583 0.486660 0.608201 -0.715514 1.047899 -1.487004 -2.412518 1.939910 2.295310 0.850242 1.022652 -1.133837 0.074491 -1.261348 -2.315012 1.606567 0.381225 0.227890 2.920936 1.544098 5.155167 -2.289687 0.544474 -0.060226 -0.384867 0.568617 -0.549412 -3.234692 1.148762 0.533283 1.027011 3.608060 -0.164465 -1.569557 0.761985 0.035715 0.337189 -2.238591 2.520165 -2.268944 0.001929 -1.143137 -0.145545 -1.397562 -1.408623 -1.729610 -0.128647 3.712631 -1.888377 -3.256394 1.990241 -0.529573 1.261463 -4.230812 2.220612 -1.672108 2.551503 -0.962896 -0.914656 -0.030627 0.392063 -0.518482 0.308299 1.680906 -1.958625 1.624030 2.309677 0.528612 0.536026 0.915159 1.192520 -0.570319 -0.193129 -1.852357 1.958269 -0.000348 -0.785163 -0.684191 -1.380574 1.786425 0.031996 -0.385745 0.537677 2.339863 -0.559836 0.221870 2.159363 0.284681 -1.744214 1.195644 0.321107 2.038150 -1.494303 -0.515914 -1.259284 0.413118 0.188399 1.409252 -3.424734 -2.153290 -2.316733 -3.129230 -1.278234 0.790154 1.300890 0.757507 0.255421 -3.573739 -2.069874 2.842767 -1.016959 2.145648 1.858641 2.085615 2.479433 1.807778 0.130987 -0.973574 -0.819804 0.093004 -1.682636 -0.744302 -0.943295 1.570085 -1.453115 2.241461 1.774478 -0.190427 1.095372 -0.240498 1.856850 -1.825943 3.881231 2.014410 -2.209826 0.758794 1.465974 3.131994 -2.060976 -2.075512 -PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.976014 -0.931270 1.009113 0.830547 0.420009 0.609852 0.586880 -0.468395 1.012128 1.046002 0.023285 0.343935 -0.819909 0.046959 -0.068260 0.486487 -0.248227 -0.884097 0.067933 -0.569611 -0.449697 -0.778581 -0.136807 0.136316 0.190312 -0.711440 -0.506900 -0.319548 -1.278454 -0.936241 0.364526 -0.291029 0.535375 -0.862275 -0.093378 -2.602595 0.677018 0.785269 -0.303197 -1.105250 0.130073 -0.654223 0.327795 0.244860 -0.081597 0.103019 0.300870 -0.203044 0.408574 0.259887 0.763869 0.093221 0.024094 2.248451 -0.647009 0.903029 0.541337 -0.038627 -0.353252 0.484797 0.253284 -0.114744 0.816820 0.598762 -0.432725 -0.309582 0.014916 -0.143950 -1.130269 0.462851 0.021377 -0.469254 -0.360042 -0.152869 -0.605018 -0.644299 -0.430808 0.217937 1.430843 -0.676733 1.251897 0.382960 0.790953 0.248809 0.844484 -0.019942 1.052085 0.152167 -0.807070 -0.094696 -0.443260 0.133318 -0.124343 0.734485 -0.256613 -0.579930 0.518845 -0.090841 -1.115926 0.735581 -0.068458 0.254322 -1.476729 -0.323457 0.635681 0.566898 -0.801764 -1.277359 -1.155590 0.524322 -0.308357 -0.464540 0.226646 -0.872622 -0.249857 -0.545613 -0.799664 -0.384044 0.486823 -0.778138 -1.137658 1.076810 -0.658681 0.457824 0.009524 0.332539 -0.250563 0.575207 0.125495 0.516477 0.107518 -0.371744 -2.219969 -0.405816 0.152143 0.854548 -0.049187 0.016611 -0.162858 0.235993 -0.272107 0.515589 -0.072887 0.793085 1.161660 -0.092892 -0.436887 -0.561535 0.643866 -0.967439 0.306001 -0.721951 -0.022023 0.022222 0.812615 0.432996 0.360484 1.283061 -0.665812 1.002443 -0.297793 -0.180402 0.498202 -0.242647 0.567367 -0.507340 -0.808569 0.134029 0.942100 0.221191 0.248644 -0.475827 -0.078710 -0.562609 -0.607182 -0.059711 0.311516 -0.166775 0.726182 0.454701 2.130481 -1.711865 0.318041 0.130537 -0.154140 0.328154 -0.372903 -1.076560 0.204147 0.387140 -0.423407 0.894837 -0.109134 -0.927075 0.225248 -0.207955 0.296671 -0.629584 0.484628 -0.757449 -0.290929 -0.400226 -0.338466 -0.666511 -0.438273 -0.479822 -0.111546 1.083920 -0.439066 -1.071576 0.793754 -0.209547 0.177449 -1.653428 1.509596 -0.552013 0.545196 -0.940015 -0.129625 -0.379266 1.335769 -0.031499 0.391378 0.524000 -0.747621 0.731115 1.505539 0.253856 0.588241 0.199999 0.766029 0.067007 -0.225878 -0.463510 0.965194 -0.206537 -0.373096 -0.015011 -0.530702 0.736945 0.161786 0.105993 0.282609 1.005791 -0.553188 0.184758 1.081680 0.196094 -0.398062 0.528541 0.011022 0.933488 -0.350158 0.106928 -0.358091 0.155022 -0.121610 0.368011 -1.067641 -0.687640 -0.316807 -1.001293 -0.006075 0.789454 -0.108739 0.161755 0.245147 -1.418540 -0.387089 0.595236 -0.499506 0.728832 0.368544 0.665403 0.841897 0.940090 -0.226631 -0.451235 -0.204822 -0.409080 -0.586988 -0.473056 -0.141524 0.443467 -0.801914 0.790745 0.223139 0.081982 0.124715 0.471539 0.403886 -0.562580 1.344470 0.669677 -0.122062 0.677903 0.753580 1.770901 -0.631237 -0.515422 -PE-benchmarks/tower-of-hanoi.cpp__main = -0.758248 -1.356436 1.535491 1.172892 -0.014638 0.710695 0.345215 -0.365813 0.927350 -0.095212 -0.382021 0.740259 -1.015283 0.005670 -0.357306 0.010280 -1.096959 -1.280329 0.036096 -0.271685 -0.377194 -0.878007 -0.332076 0.968670 0.222809 0.458886 -0.749716 0.052381 -1.762879 -0.303420 0.752796 -0.280506 0.805150 0.163427 0.371248 -3.102353 0.715736 1.066387 -0.196731 -1.701892 0.113740 -0.886716 0.119330 -0.670261 -0.543398 0.216918 0.494090 0.399446 0.114883 -0.045468 -0.425008 0.008609 -0.251090 2.237393 -0.203303 1.006053 1.267553 0.011183 -0.057262 -0.071165 0.453547 -0.200941 0.845020 0.744287 -0.796723 -0.391418 0.002011 -0.673006 -1.142744 0.681637 0.402522 0.012352 -0.533508 -0.313106 -1.494908 -0.448009 0.630182 0.836115 1.889497 -1.101023 1.509433 0.446596 1.283271 0.339520 0.997061 0.146712 1.219456 0.469349 -0.836412 0.034077 -1.669934 -0.222613 -0.214114 0.158041 -0.483607 -1.051401 0.584526 -1.642032 -1.341969 0.702543 -0.102489 0.015679 -1.081402 -0.254310 0.887493 0.829087 -0.754552 -1.174480 -0.874834 0.629554 -0.496875 -0.447046 0.430315 0.189391 -0.192171 -0.962578 -1.277539 -0.137744 0.846822 -0.785587 -0.185909 1.342363 -0.978984 0.705934 -0.184101 0.007107 -0.345621 1.079438 0.429382 -0.036509 0.082282 -0.707538 -1.120134 -0.451835 0.090550 1.669367 -0.619235 -0.446849 0.206586 0.449360 -0.094393 -0.191641 -0.252987 0.479356 0.576463 -0.390361 -0.793032 -1.267804 -0.184627 -1.433821 -0.029237 -0.816061 -0.316379 0.996383 1.056790 0.906359 0.385584 1.661656 -0.757642 1.036372 -0.195715 -0.131091 0.296041 0.051753 0.532795 -0.589366 -1.027599 0.640417 0.396880 0.696727 0.409654 -0.685902 0.012210 -0.755772 -1.119842 0.411446 0.726563 0.277027 1.105450 0.719649 0.635590 -1.760219 0.156147 0.077909 -0.172785 0.144119 -0.184015 -1.239814 0.538532 0.277529 -0.213934 1.186556 -0.167352 -1.005547 0.434037 0.076172 0.329849 -0.847041 0.378585 -0.861260 -0.165972 -0.914581 0.073295 -0.833648 -0.498282 -1.043216 -0.749356 1.584346 -1.102220 -1.569878 0.844910 0.168999 1.221811 -2.108135 0.333870 -0.644878 1.729150 -0.226006 -0.130890 -0.065539 -0.021056 -0.245942 0.164711 0.703442 -0.852286 0.384047 1.074747 0.411008 0.397593 0.422300 0.767727 0.044426 0.004513 -0.687713 0.642607 -0.283269 -0.696329 0.218824 -0.570280 0.812125 0.221524 0.302632 0.676114 1.104014 0.470993 0.843683 1.212356 0.177101 -0.707257 -0.152754 -0.053183 1.113194 -0.587877 -0.093585 -0.707335 0.724241 -0.076501 0.357550 -1.391675 -1.766094 -1.421833 -1.704356 -0.250575 -0.088314 -0.058011 0.223454 0.159065 -1.577382 -0.569709 0.459968 -0.531727 1.877016 0.743886 0.595924 1.253313 1.065510 -0.842855 -0.657148 0.746984 0.227864 -0.716071 0.030483 -1.178580 0.710170 -0.898543 0.843354 1.222805 -0.335301 0.410144 0.043662 1.158721 -0.741703 2.042304 0.992998 -1.364878 0.306582 0.616984 1.520147 0.074005 -0.907191 -PE-benchmarks/magic-square.cpp__main = -1.534051 -2.972911 2.256504 2.077271 0.756506 1.971977 1.805503 -0.532655 2.101109 1.706684 -0.958858 1.613586 -1.406760 -0.779884 0.031679 0.194260 -0.615972 -2.005327 0.782533 -0.133544 0.104977 -2.345419 -1.349206 2.173100 0.187240 0.045017 -0.690963 -0.028266 -3.594426 -2.042099 0.846513 -0.275311 1.259815 -0.106675 0.891900 -4.976569 1.359338 2.664406 0.040457 -3.482086 -0.129623 -0.886658 -0.208923 0.736138 0.431760 1.337320 1.112905 0.942564 -0.291784 0.643781 0.478947 -0.508439 0.949993 3.314332 -0.121968 2.510304 2.372731 -0.062273 0.905037 0.197273 0.720884 -0.573666 1.550658 2.133171 -1.019124 -0.152796 -0.327774 0.258470 -2.721040 0.531671 0.790183 -0.810550 -1.722503 -0.244946 -1.559703 -0.689187 -2.025092 0.412168 3.987493 -0.680657 4.540161 1.547590 3.379017 -0.344989 2.173864 -0.119621 2.005772 0.876655 -2.772213 0.389483 -3.384605 -0.884742 -0.298985 1.031117 -1.470398 0.080032 0.774658 -1.014552 -2.508437 1.722585 -0.572528 -0.217231 -1.492290 0.197477 1.535781 1.164676 -1.024374 -2.962296 -2.569452 1.646092 -1.513927 -1.267909 -0.074102 -0.050857 -0.127036 -1.112305 -1.354340 -0.471812 2.192699 -1.558826 -0.854107 2.177231 -1.756137 1.687726 -0.455150 -0.212725 -0.047383 0.700610 1.333598 0.341266 1.235985 -2.738952 -5.016598 0.578620 -0.077431 2.187205 -1.045769 -0.601107 1.109947 1.043264 1.171866 1.432698 0.340251 1.349294 1.602557 -0.064984 -0.866159 -2.529788 0.412944 -1.412551 1.312738 -1.072364 0.264470 0.346210 1.780280 0.205240 0.291407 1.640121 -1.886059 2.450860 -0.291460 0.415331 0.012451 0.646368 0.571595 -0.975786 -1.666460 1.285188 1.995163 0.865338 0.832682 -1.080859 -0.035089 -0.436190 -1.725221 0.988689 0.460081 0.662541 2.432876 1.097852 3.741357 -2.439541 -0.175137 -0.503430 -0.211192 0.386246 -0.648447 -2.323481 1.821996 0.407800 0.294361 2.670329 -0.409927 -0.974689 0.866275 0.241910 0.329002 -1.786191 2.109092 -1.812991 -0.864838 -0.786126 -0.440458 -1.464676 -1.169423 -1.733173 0.586684 2.794056 0.120822 -2.602188 0.778179 -1.473453 0.688283 -3.162450 2.757314 -1.181320 0.950916 -1.239658 -0.589465 -0.414875 1.533791 0.166751 -0.097439 1.252408 -2.025613 1.656728 2.291495 0.310670 0.192769 1.050510 0.656230 -0.175171 -0.874827 -1.411669 1.028095 -0.192105 -0.204341 -0.170962 -1.057026 2.731717 0.640440 -0.583907 0.771666 2.414565 -0.816966 -0.075434 1.862298 -0.564369 -1.145670 0.162346 0.143078 1.847150 -1.083159 -0.342339 -1.710999 0.055567 0.474848 0.481794 -2.533296 -1.279292 -0.589297 -2.565761 -0.879249 0.501457 0.630306 1.191779 0.521952 -4.008047 -1.346065 0.836506 -0.649653 0.667191 1.211128 1.328005 2.146440 1.112170 0.131763 -0.912328 -0.508899 -0.182155 -1.754339 -0.491637 -0.475409 0.760912 -2.135724 2.162678 0.952927 -0.010089 0.656495 -0.089018 2.184178 -1.449646 3.792653 1.841998 -1.757159 0.097726 0.460398 3.245946 -2.047623 -1.539585 -PE-benchmarks/optimized-naive-algorithm.cpp__main = -0.078893 -5.442783 9.382018 6.412964 0.853747 3.659468 6.783213 -7.150832 8.155277 3.249554 -2.006300 -0.712566 -8.118048 -0.091778 -3.677012 2.598465 -5.399493 -5.806010 -0.990709 -4.271553 -1.137672 -7.444195 5.737662 0.847251 4.057567 1.442696 -1.774426 -2.996107 -7.669395 -5.867645 8.508776 -0.835185 3.538726 2.378147 -1.404579 -11.773133 6.425137 5.374897 -2.757983 -7.453425 2.781060 -0.461384 -3.560456 1.854667 1.761164 1.471248 -0.152143 7.856117 3.474217 3.724725 3.749164 -1.938567 1.053998 10.405910 -4.752275 6.626933 4.386372 2.020352 0.482131 5.595043 1.310723 1.992744 2.928284 7.926351 -0.761341 -1.512422 1.773976 -3.549048 -10.013725 7.164685 -0.725465 -2.064175 -4.295437 -1.166683 -1.710979 0.818100 -5.377549 4.453024 12.070766 -4.231992 8.829802 1.816939 3.491901 -5.075548 0.557985 -1.464704 3.473784 2.083483 -4.076981 -3.443249 -8.956522 -2.569324 -0.033322 -1.044785 -2.608354 -6.635817 5.625897 -3.407951 -7.999465 1.846299 1.998541 -1.730745 -4.186950 3.098940 3.160521 2.072602 -4.045024 -8.422082 -4.509958 3.371665 -3.545050 -0.683941 -0.436217 1.358199 -3.455907 -2.684917 -6.376985 -2.871717 0.703358 -6.183086 -3.052072 5.024021 -3.876673 3.223288 1.108173 1.634737 -0.875567 3.423786 1.402411 3.210874 6.911295 0.575917 -5.356432 1.706607 3.994034 7.602054 0.314564 1.371410 -0.376620 2.579467 -3.358418 1.898317 -2.211749 0.417206 4.633602 -4.290834 -4.849313 -1.181850 2.029630 -9.228177 3.083417 -6.187778 -1.707072 -0.252278 5.468719 3.404138 2.847095 9.548639 -8.882497 4.409894 -0.536762 0.190684 0.223113 2.206491 3.946843 -2.846375 -7.262464 0.192081 2.572048 0.188665 0.629032 -2.762997 -2.182342 -7.451483 -5.004994 0.722614 1.481672 -3.674565 2.215441 4.519593 6.348011 -7.996343 1.439392 4.376382 -0.501381 0.170097 0.510464 -10.809960 4.707310 0.120969 3.281913 6.365603 0.007104 -2.799473 3.065456 -2.957509 1.017973 -4.785782 1.352877 -6.114500 -2.659999 -5.833915 2.541998 -1.193346 -4.232791 -1.062666 1.418025 7.098750 -0.641204 -5.887097 8.488339 -2.093174 1.356426 -8.806623 8.355715 -2.666717 1.847331 -1.680848 -0.439588 -1.508812 2.000277 -1.267042 -1.483067 0.932556 -1.779775 7.114979 11.375029 1.410030 1.076607 1.926482 6.293254 -2.719282 -0.032210 -5.015988 5.813331 -1.253236 -6.048689 0.829417 -3.450331 2.913308 -4.589350 -0.199617 8.882603 7.271804 -0.747091 5.510812 1.736335 4.431884 -3.268298 5.401429 2.821007 4.804836 -2.280976 -0.322237 1.115461 -0.142881 -4.330660 5.913191 -7.841130 -10.553794 -1.991691 -11.118164 -1.858396 -5.281884 4.642297 -1.038245 0.774030 -8.469966 -4.940186 1.055801 -3.159998 4.515081 5.114929 4.726095 4.913644 8.915315 -4.267654 2.514385 0.989355 4.150483 -4.780632 -4.638802 -1.937147 3.383912 -3.508123 3.397940 5.341820 0.921311 1.777722 -5.729989 6.985885 -6.266438 8.913888 4.388941 -1.052401 5.969900 1.077056 9.958121 3.546464 -3.412030 -PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -3.624312 -5.776784 4.009642 3.547112 1.715601 3.951840 2.526119 -1.138293 3.533745 2.943518 -2.772244 3.525195 -2.891968 -2.262796 0.134628 -1.035908 -0.843120 -3.645794 1.156552 -0.048695 0.499681 -4.373905 -3.768433 5.178679 0.047212 0.422374 -1.096289 1.400035 -8.040269 -4.251932 0.954102 -0.100617 2.173275 -0.602154 1.564894 -8.153412 2.469651 5.818032 0.155177 -6.903527 -0.183275 -2.132326 -1.566721 1.609444 0.832302 2.242147 2.099713 1.319793 -1.505122 0.281983 0.291599 -1.498668 1.233251 5.776126 0.225591 5.862512 6.336109 -0.092957 1.569030 0.763493 1.046803 -1.219771 3.273077 4.169053 -3.136180 -0.028519 0.942385 0.917580 -4.903769 0.800454 1.305068 -2.456199 -1.877426 -1.520629 -3.214840 -0.823029 1.308490 0.040990 7.477947 -0.517528 8.752880 3.222602 5.896166 -0.454869 4.556083 -0.638060 4.548863 1.704351 -5.132048 -0.136449 -7.225714 -2.015423 -0.634604 3.860561 -2.941233 3.303553 1.647141 -3.903001 -5.373606 2.528628 -1.503947 -0.976482 -3.464341 1.127121 2.912426 1.475711 -0.548675 -5.306698 -4.511170 3.804616 -4.277136 -2.549115 -1.308409 0.490219 -0.469444 -0.719557 -2.680159 -0.575451 5.080171 -2.834056 -2.140871 4.112858 -3.604368 3.853209 -1.099278 -0.214996 0.339531 0.030753 2.282687 -0.089492 3.027602 -5.403981 -8.101493 0.207010 -0.711675 3.623358 -2.975666 -0.908841 3.598398 1.588984 2.650349 3.067248 -1.295448 3.206248 1.729912 -0.231264 -1.014244 -5.530621 0.096965 -2.959074 1.757686 -1.708991 -1.211104 -0.380892 3.437930 0.465030 -0.124349 3.786583 -3.535038 4.362340 0.210803 0.800721 -0.423199 -0.487131 1.067502 -2.334778 -3.419097 2.508134 3.852481 0.693102 1.640376 -1.731238 -0.608984 -1.362117 -4.241648 2.452575 -0.170835 2.063745 5.453328 2.379746 9.772260 -5.444827 0.644815 -1.500386 -0.347930 0.707754 -1.230903 -4.182995 2.508136 1.061652 2.348088 6.793159 -0.040291 -2.215469 0.247062 1.154053 0.321021 -3.618416 5.514363 -3.606199 -1.198477 -0.771148 -1.379548 -2.525320 -2.723573 -3.945899 0.901239 5.559565 -0.306381 -6.541506 1.716583 -1.414604 2.061882 -6.994832 4.130155 -2.574039 3.979070 -2.163915 -1.025346 -0.514255 1.426210 0.158689 0.860278 2.209897 -4.161832 3.937296 3.231888 0.543626 1.370960 1.868171 0.313845 -0.891341 -2.179340 -3.329900 1.396125 0.425408 -1.224904 -0.978549 -2.175710 5.329753 1.604199 -1.603248 0.264580 5.583995 -1.885855 -0.622059 3.969777 -1.932594 -2.139933 0.640373 0.815288 3.248978 -1.655198 -1.192488 -3.254544 -0.180375 2.106161 1.512519 -5.045254 -2.425770 -0.370557 -6.174131 -1.714145 0.601007 1.439009 3.169279 1.294862 -7.692504 -2.461859 2.069146 -0.902094 4.917063 1.970661 3.558582 3.521730 1.643152 0.642489 -1.882061 -0.769056 0.063005 -4.359004 -1.431459 -0.987755 1.694163 -2.264743 4.580684 1.531146 0.178913 1.551114 -0.323701 2.253957 -2.792531 6.992004 3.593586 -4.114086 -0.262868 -0.076739 6.293484 -5.164730 -3.121784 -PE-benchmarks/Iterative_QuickSort.cpp__main = -1.070176 -2.857208 2.902506 2.620125 0.288785 1.429242 1.244372 -0.930031 1.745941 1.453493 -0.841542 1.902284 -1.761741 -0.211082 -0.159379 0.969399 -1.440071 -1.923471 0.222337 -0.405268 -0.371615 -1.767841 -0.948653 1.790080 0.812640 0.274222 -1.017522 -0.166182 -3.164027 -2.253241 0.646038 -0.492634 1.345043 -0.722534 0.732245 -4.895499 1.763879 2.686413 -0.316161 -3.504023 0.175716 -0.862848 -0.232217 -0.298264 -0.782826 0.810990 0.981413 0.731755 0.109621 0.781572 0.216558 -0.205446 1.286896 4.052282 -0.233287 2.618861 2.973297 0.059183 0.539952 0.026023 0.918416 -0.347432 1.359119 1.511542 -0.615034 -0.733282 -0.522083 -0.344998 -2.098670 0.812686 0.745211 -0.802423 -1.731178 -0.655334 -1.978763 -0.581427 -0.901003 1.062950 3.725507 -1.656703 3.754350 1.535117 2.200017 0.017565 1.620663 0.053468 1.822672 1.027587 -1.838673 0.373598 -2.310658 -1.000242 0.114041 0.736392 -1.479353 -1.598137 1.160671 -1.839722 -2.676248 1.648616 -0.020988 -0.325518 -1.226689 -0.276694 1.192047 1.138240 -1.264517 -2.518188 -1.907848 1.238709 -0.693701 -1.248704 0.037153 0.222752 -0.135448 -0.562637 -2.222839 -0.338665 2.014076 -1.672566 -0.685460 1.926815 -1.163930 1.549938 -0.514169 -0.035762 -0.186071 1.313093 1.322844 0.818807 0.385465 -1.137726 -3.129386 0.272911 0.536810 1.462945 -0.795801 -0.110830 0.618663 1.045283 0.792986 1.217691 -0.293317 1.454714 0.956406 -0.281097 -1.331374 -2.462854 -0.616341 -1.756619 1.013604 -1.386776 -0.747105 0.794466 1.817282 0.331371 0.517506 1.976424 -1.662469 1.688692 -0.261044 0.394442 0.400936 -0.316570 0.853759 -0.999112 -1.766763 1.392577 1.768985 0.772742 0.769560 -0.973539 0.256681 -0.961759 -1.362634 0.635032 0.448571 -0.266079 2.239981 1.027805 4.084816 -1.891288 0.158009 -0.020966 -0.130223 0.409041 -0.391876 -2.580250 1.366468 0.207260 0.337129 2.618466 -0.195703 -1.259000 1.121294 -0.220916 0.209540 -1.527327 2.075597 -1.620916 -0.658074 -1.094577 0.144478 -1.129904 -0.985944 -1.781915 -0.133844 3.021570 -1.829213 -2.226924 1.143005 -0.301525 0.971815 -3.105919 3.050953 -1.147415 2.166251 -0.685389 -0.861469 0.125478 0.618811 -0.292093 -0.299910 1.359575 -1.606882 0.927653 1.868293 0.426932 0.193711 0.953867 1.024154 -0.318282 -0.024564 -1.233058 1.404327 -0.177047 -0.711655 -0.248133 -0.966915 1.688449 0.056742 -0.218612 0.702077 1.812937 -0.138975 0.497301 1.678697 0.232384 -1.374488 0.621423 0.199288 1.843523 -1.278916 -0.079308 -1.166928 0.410553 -0.009386 1.219723 -2.602419 -1.803392 -1.793231 -2.180377 -1.047475 0.496836 0.828168 0.354347 0.129680 -3.257089 -1.718880 2.142485 -0.870126 0.898137 1.575056 1.387095 2.122476 1.437117 -0.036136 -0.884269 -0.170000 0.151285 -1.018236 -0.334497 -0.819973 1.038907 -1.774907 1.519896 1.591878 -0.202767 0.691375 -0.106553 1.532240 -1.413787 3.422233 1.584433 -1.908640 0.585364 1.596138 2.779251 -1.764371 -1.609412 -PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.976014 -0.931270 1.009113 0.830547 0.420009 0.609852 0.586880 -0.468395 1.012128 1.046002 0.023285 0.343935 -0.819909 0.046959 -0.068260 0.486487 -0.248227 -0.884097 0.067933 -0.569611 -0.449697 -0.778581 -0.136807 0.136316 0.190312 -0.711440 -0.506900 -0.319548 -1.278454 -0.936241 0.364526 -0.291029 0.535375 -0.862275 -0.093378 -2.602595 0.677018 0.785269 -0.303197 -1.105250 0.130073 -0.654223 0.327795 0.244860 -0.081597 0.103019 0.300870 -0.203044 0.408574 0.259887 0.763869 0.093221 0.024094 2.248451 -0.647009 0.903029 0.541337 -0.038627 -0.353252 0.484797 0.253284 -0.114744 0.816820 0.598762 -0.432725 -0.309582 0.014916 -0.143950 -1.130269 0.462851 0.021377 -0.469254 -0.360042 -0.152869 -0.605018 -0.644299 -0.430808 0.217937 1.430843 -0.676733 1.251897 0.382960 0.790953 0.248809 0.844484 -0.019942 1.052085 0.152167 -0.807070 -0.094696 -0.443260 0.133318 -0.124343 0.734485 -0.256613 -0.579930 0.518845 -0.090841 -1.115926 0.735581 -0.068458 0.254322 -1.476729 -0.323457 0.635681 0.566898 -0.801764 -1.277359 -1.155590 0.524322 -0.308357 -0.464540 0.226646 -0.872622 -0.249857 -0.545613 -0.799664 -0.384044 0.486823 -0.778138 -1.137658 1.076810 -0.658681 0.457824 0.009524 0.332539 -0.250563 0.575207 0.125495 0.516477 0.107518 -0.371744 -2.219969 -0.405816 0.152143 0.854548 -0.049187 0.016611 -0.162858 0.235993 -0.272107 0.515589 -0.072887 0.793085 1.161660 -0.092892 -0.436887 -0.561535 0.643866 -0.967439 0.306001 -0.721951 -0.022023 0.022222 0.812615 0.432996 0.360484 1.283061 -0.665812 1.002443 -0.297793 -0.180402 0.498202 -0.242647 0.567367 -0.507340 -0.808569 0.134029 0.942100 0.221191 0.248644 -0.475827 -0.078710 -0.562609 -0.607182 -0.059711 0.311516 -0.166775 0.726182 0.454701 2.130481 -1.711865 0.318041 0.130537 -0.154140 0.328154 -0.372903 -1.076560 0.204147 0.387140 -0.423407 0.894837 -0.109134 -0.927075 0.225248 -0.207955 0.296671 -0.629584 0.484628 -0.757449 -0.290929 -0.400226 -0.338466 -0.666511 -0.438273 -0.479822 -0.111546 1.083920 -0.439066 -1.071576 0.793754 -0.209547 0.177449 -1.653428 1.509596 -0.552013 0.545196 -0.940015 -0.129625 -0.379266 1.335769 -0.031499 0.391378 0.524000 -0.747621 0.731115 1.505539 0.253856 0.588241 0.199999 0.766029 0.067007 -0.225878 -0.463510 0.965194 -0.206537 -0.373096 -0.015011 -0.530702 0.736945 0.161786 0.105993 0.282609 1.005791 -0.553188 0.184758 1.081680 0.196094 -0.398062 0.528541 0.011022 0.933488 -0.350158 0.106928 -0.358091 0.155022 -0.121610 0.368011 -1.067641 -0.687640 -0.316807 -1.001293 -0.006075 0.789454 -0.108739 0.161755 0.245147 -1.418540 -0.387089 0.595236 -0.499506 0.728832 0.368544 0.665403 0.841897 0.940090 -0.226631 -0.451235 -0.204822 -0.409080 -0.586988 -0.473056 -0.141524 0.443467 -0.801914 0.790745 0.223139 0.081982 0.124715 0.471539 0.403886 -0.562580 1.344470 0.669677 -0.122062 0.677903 0.753580 1.770901 -0.631237 -0.515422 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = -0.363274 -3.096104 4.445856 3.781089 -0.023933 1.582182 1.150914 -1.925506 2.240322 1.611118 -1.261938 2.193155 -2.124684 0.478467 -1.162418 1.869637 -2.689450 -2.376258 -0.283604 -1.162819 -0.885047 -1.924775 0.102705 1.595924 1.618922 1.009306 -1.822045 -0.347845 -3.237089 -3.550469 1.097400 -0.627735 1.761256 -0.236174 0.479663 -6.332851 2.755466 3.071978 -0.851039 -3.957001 0.897649 -1.243139 -0.926279 -0.523450 -0.746058 0.963409 0.694847 1.440209 0.633723 1.313669 0.463650 0.573081 1.781300 5.550081 -0.681027 3.013331 3.210485 0.126546 0.223956 0.368969 1.183969 0.152122 1.585139 1.948624 -0.238457 -1.745347 -0.786360 -0.769297 -2.490268 1.755524 0.252429 -0.938140 -2.114691 -0.904736 -2.258167 -0.470841 -2.127140 2.028905 4.758804 -2.433952 3.791416 1.270837 2.040997 -0.228186 1.640437 0.022781 2.376344 1.513274 -1.597510 -0.182420 -1.942034 -1.218480 0.533437 0.474775 -2.066393 -2.944002 2.006663 -3.002092 -3.487498 1.831108 0.682459 -0.914136 -1.269923 -0.530098 1.381710 1.353118 -1.530173 -2.963315 -1.780629 1.124700 -0.374665 -1.607559 -0.201098 0.174668 -0.286899 -0.104392 -3.350494 0.032918 1.652526 -1.796497 -0.700134 2.409198 -0.673862 1.207841 -0.703170 0.476600 -0.600328 2.120913 0.719307 1.687319 0.784719 0.141421 -3.099391 1.121238 1.397731 1.127608 -1.482618 -0.072116 0.075596 1.317077 -0.104340 1.233195 -0.854509 1.988681 2.089457 -0.645866 -2.311352 -2.662757 -0.724301 -3.047142 0.907620 -2.118279 -1.247705 1.120332 2.520306 0.890125 1.278320 2.847150 -2.472627 1.882070 -0.107178 0.367653 1.106321 -0.347067 1.211780 -1.497433 -2.603092 1.886644 1.828351 0.981456 0.706291 -0.694119 0.305606 -1.771576 -1.721763 1.703607 1.078761 -0.418084 2.714913 1.756025 4.531886 -2.417352 0.398381 0.637961 -0.825048 0.349127 -0.360412 -3.616518 1.602560 0.496785 1.109406 3.322012 -0.099226 -1.476157 1.298202 -0.409555 0.397968 -1.906928 1.873433 -2.203079 -0.798640 -1.524546 0.393757 -1.064324 -1.080656 -1.548785 -0.428183 3.986103 -2.911962 -2.630833 2.482115 -0.864865 1.068364 -4.216490 3.641816 -1.691700 2.264734 -0.722644 -0.809145 0.087869 0.353741 -1.365930 0.229036 1.731593 -1.659862 1.239841 3.250431 0.793683 0.305043 0.608540 1.899361 -0.806003 0.840414 -1.671980 2.371434 -0.305055 -1.288800 -0.551727 -1.177034 1.146548 -0.744735 0.288236 1.937360 1.912905 0.416901 0.998291 2.049190 1.539893 -2.003010 1.693751 -0.101875 2.036038 -1.687233 -0.560155 -0.621286 0.741474 -0.368507 1.733122 -3.622374 -3.037253 -3.450177 -3.007033 -0.870363 -0.180456 1.418935 -0.337277 -0.223249 -3.767603 -2.540754 2.428796 -1.214821 1.059905 2.432475 1.705218 2.538206 2.242358 -0.460632 -0.383742 -0.696554 0.596065 -0.798111 -0.779414 -1.419850 1.863660 -1.919452 1.480803 2.718086 -0.483355 1.314980 -0.073260 2.313856 -1.861952 4.401752 1.835510 -2.257760 1.276421 2.162803 3.210289 -1.023614 -2.176782 -PE-benchmarks/topological-sorting.cpp__main = -0.337621 -3.301124 4.774890 4.024604 -0.536113 1.682861 0.828329 -2.008066 2.832511 0.395133 -1.333915 1.424275 -2.993474 0.603557 -0.726481 1.732904 -3.797966 -3.073780 -0.076147 -0.972609 -1.176810 -2.593216 0.954280 1.927493 1.653100 2.691413 -1.977137 -0.304183 -2.911566 -2.117922 2.751921 -1.240336 2.438012 2.870040 0.524992 -7.233095 3.121765 2.407645 -0.800334 -3.679697 0.571183 -1.453190 -0.310270 -1.910023 -1.342856 1.058050 0.973532 2.271564 1.363881 0.961215 -0.211190 -0.608352 1.109203 4.971563 -0.941571 2.751527 2.521109 -0.040700 0.129847 -0.190723 1.309867 0.203973 2.209080 2.714112 -1.072923 -1.626349 -0.521781 -2.102734 -3.585089 2.578994 0.263900 0.425298 -2.655059 -0.749528 -2.109435 -0.494043 -1.290537 2.995448 5.530953 -2.960122 3.925899 1.362906 2.482291 -0.639498 1.296749 0.086193 2.594700 1.595693 -2.148691 -0.120301 -3.079574 -1.604529 0.147871 -0.397054 -1.622789 -2.936023 1.592539 -3.635447 -3.755132 1.523826 0.549518 -0.206296 -1.764038 -0.270590 2.197504 1.428805 -1.794351 -3.283368 -1.180756 0.581844 -0.667738 -1.288793 -0.327645 0.984006 -0.958092 -1.042537 -3.928413 -0.896148 1.061338 -2.740951 0.376622 2.720480 -1.378026 1.389332 -0.538583 0.298421 -0.711648 3.301760 1.101402 1.266066 1.389074 -0.258716 -1.302214 0.525579 1.483293 3.127920 -1.379333 -1.051660 -0.084509 1.162840 -0.973084 -0.247374 -0.327957 1.177733 2.273237 -1.151658 -2.935028 -2.237471 -1.172659 -4.646005 0.964805 -2.974673 -0.445704 2.510712 2.884817 1.615231 1.837144 4.086946 -3.207600 2.360104 -0.600094 0.490270 1.282821 1.265091 1.642336 -1.696456 -2.613707 2.242749 1.183525 0.912193 1.035994 -1.794112 0.205626 -2.553504 -2.359290 1.937901 1.229948 -0.170319 2.301747 1.296807 2.744703 -2.780956 0.717285 1.368149 -0.020612 0.366173 0.407803 -4.115940 2.478600 -0.100519 0.406232 2.637100 -0.314294 -1.990552 1.392428 -0.421010 0.583796 -2.511600 1.256380 -2.375044 -0.388548 -2.722498 0.994227 -1.281399 -1.456789 -1.338477 -0.364923 4.248762 -2.861668 -2.594523 2.949545 -0.264509 2.546810 -4.352604 2.478834 -2.101543 3.260808 -0.650996 -1.357616 0.091329 -1.094948 -0.562977 -0.491340 1.774259 -0.896972 0.917457 3.196754 1.017625 0.269873 1.286876 2.308652 0.071962 1.267614 -1.147848 2.225678 -0.115846 -1.311835 0.161719 -1.547751 1.073217 -0.895734 0.105557 3.214762 3.032632 1.234865 2.555764 1.709450 1.637831 -2.346205 0.784733 -0.002445 2.544371 -1.797453 -0.523931 -0.521905 1.542368 -1.171949 2.002419 -3.840751 -5.340436 -3.741437 -3.481695 -1.821882 -0.680000 1.546777 -0.383838 0.193228 -3.163916 -2.082341 1.686804 -1.514136 3.134650 2.228369 1.704041 3.033475 3.111275 -1.885535 -1.537071 0.865010 1.149807 -1.068112 0.393567 -3.158689 2.223684 -2.054776 1.675188 3.703831 -1.178573 0.612502 -1.084554 3.972377 -2.106320 5.083204 2.167359 -2.783283 2.042101 1.278507 3.017093 0.953068 -2.450004 -PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = 0.247802 -1.022171 2.463501 2.221989 -0.248550 0.729948 0.066720 -1.792920 1.630194 0.980613 -0.169901 0.594561 -1.098957 0.784875 -0.494150 1.632898 -1.711727 -0.969707 -0.714040 -1.303565 -0.992001 -0.999606 0.596474 0.144550 0.957860 0.535711 -1.174555 0.023881 -0.914915 -2.072830 0.802980 -0.345434 0.839843 -0.154246 0.302004 -3.285149 1.927330 1.356361 -0.639446 -1.655428 0.425531 -0.676201 -0.212269 -0.308282 -0.404707 0.432335 -0.324261 0.610682 1.067942 0.748356 0.742312 0.820481 0.851860 2.906977 -0.887168 1.345954 0.719001 0.057988 -0.313050 0.460921 0.522980 0.726943 0.787323 0.816584 0.128753 -1.434604 -0.449736 -0.410474 -1.369032 1.463971 -0.231400 -0.882834 -1.344268 -0.743687 -0.962786 -0.355127 -2.179656 1.429772 2.219941 -1.500781 1.021414 0.355976 0.330751 0.006984 0.851811 -0.212397 1.747334 0.661762 -0.483701 0.026070 -0.067728 -0.663513 0.634175 -0.271892 -1.102535 -2.303422 0.935209 -1.611438 -1.793270 0.885975 0.870313 -0.325898 -1.184963 -0.694876 0.813404 0.436411 -0.847050 -1.508010 -0.479563 0.646937 0.369925 -0.799842 -0.121421 -0.463641 -0.168571 0.088929 -1.958875 -0.033415 0.295687 -0.659369 -0.562378 1.316343 -0.045701 -0.136989 -0.305052 0.475605 -0.548247 1.501126 -0.361075 1.509193 -0.031820 0.987972 -1.142670 0.811308 0.840403 -0.070097 -0.257977 0.137132 -0.683219 0.566558 -1.092851 0.782744 -0.651718 0.843739 1.578562 -0.208425 -1.332880 -0.574672 -0.433445 -2.009913 0.509881 -1.237995 -0.785476 0.443776 1.341847 0.954667 1.084707 1.222870 -1.458524 0.521534 -0.247619 0.215208 1.245524 0.006682 0.777119 -0.781034 -1.350814 0.908116 0.655957 0.340905 0.351113 -0.293107 0.079757 -1.002565 -0.412794 0.855315 0.683169 -0.347473 1.224658 0.973512 2.363951 -1.166677 0.541163 0.883228 -0.507272 0.381714 -0.263955 -1.844444 0.577042 0.359069 0.602532 1.615540 -0.284337 -0.537686 0.473905 -0.333775 0.543031 -0.959627 0.392663 -1.126429 -0.329114 -1.029700 0.315040 -0.470955 -0.383314 -0.512903 -0.425496 1.902189 -1.740034 -1.004898 2.244568 -0.812256 0.503869 -1.726978 1.868872 -0.847515 0.823773 -0.562440 -0.232376 -0.067849 0.124401 -1.098220 0.414272 0.880672 -0.516024 0.292586 2.074094 0.440393 0.133691 -0.064843 1.305850 -0.478246 1.034652 -0.875004 2.052947 -0.219277 -0.289389 -0.243884 -0.673616 -0.055111 -0.979902 0.289655 1.246300 0.779433 0.442290 0.513269 0.804444 1.292196 -1.018387 1.578641 -0.095241 0.288448 -0.902024 -0.156124 0.493856 0.400862 -0.628116 0.864306 -1.782697 -1.561470 -2.137287 -1.028817 -0.260942 0.068467 0.611809 -0.566547 -0.433344 -1.216970 -1.440913 1.806205 -0.717920 0.300323 1.001265 0.783157 1.135872 1.777846 -0.482573 0.185818 -0.631857 -0.201567 -0.016179 -0.587995 -0.833673 1.545864 -0.700901 0.406730 1.599950 -0.355584 0.767168 0.012036 1.019770 -0.887884 1.835567 0.640025 -0.366073 1.143968 1.460146 1.782084 0.048074 -1.035245 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -0.694859 -5.165832 8.093886 7.377582 -0.701351 3.831952 0.302887 -5.230121 4.552187 2.425843 -1.539855 2.957557 -4.523573 1.345405 -2.241050 3.127582 -5.331130 -4.073069 -1.740333 -3.475482 -2.859312 -3.896474 0.016390 3.509798 2.621770 3.185556 -3.656324 0.557814 -5.771792 -5.876222 2.523043 -0.755140 3.454203 1.842888 1.517552 -10.855634 5.626889 6.251733 -1.403710 -6.174072 0.946294 -2.945862 -1.526602 -0.930078 -1.899832 1.517895 -0.276974 1.664613 2.198924 1.186613 1.592658 1.466059 2.606160 8.963531 -1.533085 5.768639 3.976445 0.203743 0.094638 0.911056 1.786477 1.518826 3.579912 3.258521 -1.205250 -3.779393 -0.682114 -1.193686 -4.750973 4.318539 0.299083 -2.645383 -3.679320 -2.598816 -4.258893 -1.459077 -3.025051 3.879501 8.442480 -4.324017 5.823771 2.165329 2.346536 -0.638998 4.390058 -0.874395 6.702533 2.478171 -2.625952 0.433519 -3.013437 -1.633817 1.274857 1.551220 -4.654496 -5.107157 3.369346 -7.758072 -7.223414 3.107001 1.572216 -1.589732 -3.831761 -1.269400 2.968899 1.127238 -2.897562 -5.789864 -2.137757 2.994309 -0.549369 -3.307528 -0.996974 -0.025729 -0.319924 0.015484 -6.347460 -0.350492 2.406463 -3.177858 -1.538490 5.298829 -0.242083 1.412485 -1.235303 1.129810 -1.251447 4.151896 -0.402733 3.226851 -0.074710 1.459897 -3.147179 1.090593 1.845127 0.966618 -2.650337 -1.293287 -0.154506 2.308233 -1.679638 2.590321 -2.754561 3.510460 4.391942 -0.768340 -3.931387 -3.458372 -1.906076 -7.119415 0.740114 -4.159847 -3.686433 1.206702 4.938368 2.698638 2.532965 4.822673 -3.864505 2.988177 -0.060723 0.660196 3.187023 -0.415860 2.489210 -3.223863 -5.368462 3.847288 2.388934 1.922549 1.375507 -1.292244 -0.395970 -3.084305 -3.394147 3.369631 1.728143 -0.017943 5.745995 3.659556 8.555050 -5.032355 2.267843 1.468625 -1.658860 1.535515 -0.819407 -6.680782 2.194358 1.256231 1.475109 7.030957 -0.888171 -2.351438 1.732714 -0.324393 1.733680 -4.796422 3.293065 -4.524280 -0.559228 -3.979006 0.543724 -1.964361 -2.087542 -3.110324 -1.855055 7.245931 -6.784219 -4.929804 6.692663 -0.487257 2.927438 -7.444303 3.678121 -3.258214 4.802352 -1.667475 -1.664446 0.192268 -0.265806 -2.744083 1.481036 3.331101 -3.275750 2.097093 5.902391 1.165214 1.089159 0.756151 3.748284 -1.339532 1.988041 -3.913964 6.061435 0.444883 -2.073093 -1.040397 -2.890172 0.959984 -1.978821 0.517677 3.325079 4.453051 1.205254 1.047895 3.691268 2.688689 -3.487760 3.628387 -0.090575 1.839632 -3.257350 -1.067157 -0.041461 1.585850 -0.907149 3.035240 -6.999431 -6.349311 -6.811706 -5.111496 -1.413631 0.009216 2.528576 0.148723 -0.833618 -5.666017 -5.064248 5.946607 -2.597950 4.557117 3.725503 3.897184 4.636946 5.349115 -1.226132 -0.237805 -1.039143 0.641321 -1.497647 -1.327168 -3.484916 4.704250 -2.189345 3.434318 5.483100 -1.066782 3.070825 -0.238986 4.493138 -3.755021 7.583426 3.099398 -3.782186 3.164709 3.802175 5.683189 -0.703387 -4.091407 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -2.583755 -6.098163 8.248472 7.006539 1.582231 4.601939 1.906421 -4.353091 5.116698 5.177000 -2.599296 1.967894 -5.064361 -1.390339 -0.328212 2.847259 -3.539572 -5.210499 -0.147005 -2.040512 -1.205753 -5.046568 0.684356 3.280119 2.271699 3.565069 -3.019163 0.327389 -5.961995 -9.865605 3.347127 -0.727552 3.982847 3.451611 0.118525 -10.595163 7.418746 7.220501 -1.457280 -6.628195 1.168670 -0.817256 -2.997206 1.594710 -0.897228 3.693282 1.293858 2.300290 0.548289 3.191758 3.060098 -1.496463 4.401802 7.368852 0.003142 7.100544 5.880130 1.026757 1.310554 2.099359 1.505655 0.922309 4.110864 5.168577 -1.785687 -1.043486 0.645913 -0.911001 -7.131729 3.952734 -0.645359 -3.788116 -2.529411 -2.244739 -1.935277 -0.055542 -0.839746 2.258526 9.234854 -3.214937 8.666579 3.765136 4.386172 -1.827855 2.272607 -1.292029 4.462142 3.102696 -3.957246 -1.543297 -5.388390 -4.367629 0.244746 1.694745 -5.346986 -0.925777 3.783623 -5.391501 -7.223053 3.160948 0.161083 -1.735416 -5.095627 0.090710 4.060573 1.106970 -1.363588 -6.052183 -3.784067 3.631579 -3.850901 -2.626917 -2.866955 1.020896 -1.768272 2.079830 -6.239014 -0.685170 3.203669 -4.607987 -2.121767 5.033575 -1.671953 2.851924 -1.219883 0.931008 -1.079856 2.930820 1.912196 3.007701 3.631299 -0.278167 -4.889966 1.912019 2.305443 0.970301 -2.621624 -1.681668 1.155953 2.139679 -0.502220 3.961950 -3.399223 2.482447 6.111071 -0.747845 -4.172121 -4.473594 -2.122482 -8.119032 2.522736 -4.598229 -1.693095 1.959111 5.338460 1.206749 2.329466 6.799959 -7.086305 3.719628 -0.948068 1.268454 -0.025229 0.368640 2.051767 -3.230680 -5.878150 4.036129 5.011674 0.505537 2.058006 -2.724894 -0.577818 -3.666035 -5.211156 4.024238 -0.800208 -0.085000 4.212326 3.264823 11.399904 -4.625582 1.052340 1.382763 -1.120574 1.235903 -0.100172 -7.761297 2.845124 0.524071 3.269549 8.317242 0.040168 -2.626322 1.795070 -0.528922 0.016603 -5.130106 5.864708 -5.380559 -0.529112 -2.750484 -0.848688 -2.471193 -3.070658 -2.261560 0.048325 7.501391 -2.370924 -6.430094 5.308725 -1.747032 0.946669 -8.055877 4.790515 -3.798213 3.801258 -1.172668 -2.413872 -0.966180 -0.906468 0.023346 -1.047846 2.139902 -3.145918 4.639062 6.883778 0.973101 0.423641 1.800927 2.496108 -1.556693 0.552385 -4.156027 4.250295 -0.156045 -2.418224 -1.269064 -3.062559 3.172932 -2.112628 -2.509137 2.718806 6.107714 -1.856620 0.946539 3.152381 2.086344 -4.066140 3.431813 2.178679 3.919067 -2.774656 -1.586087 -0.896699 0.343056 -0.719595 3.973732 -7.234300 -5.851283 -4.469589 -8.487777 -3.216284 0.122966 4.259466 0.455875 0.543301 -6.711562 -4.890116 5.918061 -2.414359 4.655603 4.174990 4.947603 5.348183 5.273851 -1.235102 -1.316893 -1.338845 0.423544 -4.019944 -2.144150 -2.398273 4.556022 -0.615926 4.073471 3.714877 -0.417490 2.338408 -2.761965 3.950311 -4.002801 8.500498 3.640586 -2.861008 2.714221 -0.192315 6.970095 -3.407618 -4.116786 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 0.661118 -21.183907 39.281107 28.596304 -0.803260 16.342525 15.232684 -28.122915 28.878940 13.617614 -8.512862 1.711684 -24.412994 0.249023 -12.423753 11.908202 -23.617828 -18.867693 -6.331799 -18.626063 -8.025303 -24.235032 11.387072 7.036082 14.051783 9.061326 -9.435787 -3.544229 -24.060981 -28.119339 24.570128 -2.875492 12.274304 5.472231 1.998373 -48.287107 28.682430 24.099588 -9.082518 -29.045116 6.554120 -2.861636 -12.932309 5.928817 0.032220 6.845951 -1.408331 24.123507 11.494651 12.423406 11.229837 -2.560228 9.282466 43.957369 -11.656401 26.315837 17.811783 4.713843 2.852145 18.195576 6.065708 7.660952 10.473266 23.544826 0.249828 -9.934409 4.842140 -8.852624 -30.274707 25.206695 -1.964987 -14.945697 -14.961719 -9.537522 -12.555692 0.194293 -26.424608 19.061907 43.223276 -18.350913 30.979543 8.898056 13.046090 -11.199261 8.108154 -5.801324 21.356032 9.965063 -14.282241 -5.829865 -23.064728 -11.667593 4.753114 -4.876138 -16.698923 -29.425947 20.486405 -24.252003 -30.485960 11.821522 9.349216 -8.079438 -14.519197 1.951729 12.814549 4.542921 -14.401027 -28.649288 -14.697683 14.997860 -10.653075 -5.781370 -1.942910 4.027604 -6.614928 -2.272024 -25.750019 -5.533680 6.777592 -17.617299 -9.605058 21.795639 -7.176898 8.311450 0.032644 6.314845 -4.327340 14.792386 2.421047 15.416770 12.653665 7.860674 -18.742396 10.139099 12.678923 12.567459 -0.258067 1.919574 0.329307 11.878785 -11.305526 12.977049 -13.369178 6.060980 17.619927 -9.812417 -18.299886 -9.142576 -1.682449 -33.617577 8.492238 -21.068281 -15.824740 2.352426 21.682839 16.018969 10.337229 25.827035 -30.156721 13.308307 -3.811080 2.742983 3.746288 2.027843 12.693967 -12.036989 -24.977691 5.556381 10.613602 4.505253 4.727365 -11.307798 -5.664949 -22.166790 -14.881612 8.637779 7.065559 -9.660042 13.926301 19.499846 32.054044 -26.703713 5.152765 13.199202 -5.844571 2.109395 0.201983 -37.125095 13.469119 3.430196 13.487974 28.070528 -1.829464 -6.464976 9.611163 -8.832980 4.142198 -18.063781 7.633125 -22.190033 -8.068356 -18.223185 8.388889 -8.857193 -11.701774 -9.359423 -2.682577 28.763009 -17.747036 -21.409785 35.194823 -8.146105 6.701404 -29.738195 27.881569 -11.343552 12.551113 -5.012412 -3.326860 -4.457722 3.597155 -8.366515 -0.312787 6.685906 -10.076855 20.513574 37.911302 5.065212 4.072093 4.834903 22.282352 -13.563636 3.459684 -20.361060 24.150797 -3.781882 -17.633717 -2.011547 -12.867253 7.448271 -16.401090 1.401801 23.970340 22.062313 -0.039058 12.439963 10.008900 13.643015 -13.070437 20.980247 6.958903 11.815402 -12.114721 -2.967692 4.697006 2.152298 -11.993869 17.685930 -32.040238 -32.776271 -23.443826 -32.174297 -8.379598 -14.107078 15.170445 -3.152862 -0.800615 -28.641172 -22.570141 18.491042 -11.242431 10.533836 19.394131 18.236343 19.608197 31.212912 -10.024480 7.409268 -0.944797 9.510470 -13.683038 -14.476053 -10.261481 18.533936 -11.875893 13.078965 23.140242 1.110404 10.977006 -12.178252 20.237995 -22.987510 31.585364 15.543058 -8.338100 16.788124 11.493410 33.603081 6.320233 -15.296337 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -8.085993 -18.883214 22.217077 19.831183 1.897493 12.327938 8.908912 -9.928197 10.401847 13.973395 -6.701528 12.558379 -11.196638 -2.956886 -2.624065 7.815837 -9.218448 -11.629740 0.042661 -5.498228 -2.925422 -12.682770 -7.124151 13.922004 5.725416 4.762615 -6.704143 0.939624 -19.201137 -27.462418 1.280947 -0.849330 9.001048 -0.056132 4.719157 -33.278662 15.782018 22.260133 -2.348909 -21.202423 2.089936 -3.874541 -7.286264 5.276919 -4.466131 8.093431 4.587981 2.353881 -0.563078 6.714847 6.241501 -0.399139 13.986659 25.022769 1.960471 20.496356 19.323011 0.618199 5.141045 3.377550 4.864277 -1.014094 9.139879 10.572401 -2.922848 -4.773745 -1.452752 1.693849 -15.177606 6.311326 2.294907 -12.796446 -9.012852 -6.956737 -10.803693 -3.297370 -14.094684 5.284703 27.166225 -9.448857 27.201908 10.905347 13.354758 -3.251055 12.447750 -2.593573 15.237059 7.536475 -12.493750 1.850066 -8.299220 -9.207960 3.356998 10.748917 -14.912739 -5.209149 10.382303 -15.663215 -20.609342 11.834851 0.263066 -5.922920 -10.026964 -2.773525 7.035765 4.380653 -6.659641 -18.643393 -14.224022 10.909748 -7.087350 -9.734524 -4.769164 2.201424 -0.442791 4.925802 -16.142956 -0.572314 13.472054 -10.588049 -7.185947 13.215354 -0.798229 10.890449 -3.539249 1.786545 -0.883569 5.796870 5.537840 7.596169 2.960160 -3.168495 -22.897820 4.549043 3.710272 2.259886 -7.565747 -2.917386 6.619922 7.788861 5.275052 14.663685 -6.990365 13.420778 13.136168 0.440556 -8.809418 -15.510699 -5.816662 -13.775987 5.400962 -10.143855 -9.541175 1.312540 12.374218 -0.521255 2.165940 11.715278 -13.435617 13.099499 -0.188253 2.660618 1.683198 -6.689309 5.119370 -8.183385 -14.505808 10.541964 13.821427 5.436227 4.630195 -4.800980 -0.137766 -5.520463 -12.440697 10.671257 0.166286 -0.834482 16.944981 9.690086 38.995890 -10.027756 1.674726 -1.398035 -4.029623 3.184548 -3.208930 -18.798580 6.799900 3.050033 6.198218 23.236487 -0.852608 -6.076913 6.424258 -0.857126 1.152471 -12.891737 18.103348 -13.359882 -2.448368 -5.526080 -3.181596 -6.834186 -6.955753 -10.619674 -1.172455 20.325228 -15.603535 -17.120855 11.373126 -4.346675 3.548391 -22.594193 22.304588 -8.090153 11.586052 -6.845574 -6.282186 -0.157095 4.104031 -2.479053 1.370945 8.308566 -12.633926 9.950603 17.321860 1.332339 1.714323 4.817855 6.588560 -5.215403 -1.078250 -11.710157 12.408670 0.622186 -5.323230 -5.483515 -7.020582 10.439127 -1.523395 -2.938630 2.351630 13.578692 -5.407329 -2.847215 11.392806 1.544517 -8.975714 9.211904 2.585775 10.247268 -9.035793 -3.264718 -5.978840 0.616703 1.723163 8.586614 -19.496346 -9.262153 -15.423451 -16.874935 -7.500727 4.265299 10.554933 4.337649 -0.242766 -22.831340 -14.546228 21.917062 -5.283779 5.555357 11.813359 12.945193 14.068219 10.043248 4.713504 -2.388922 -7.675222 1.535485 -8.403826 -5.775675 -1.879867 7.760155 -9.165038 12.926640 8.685061 0.934884 8.152155 -1.408520 8.966714 -11.334959 23.887485 10.207975 -11.825870 4.443861 9.621588 18.693035 -15.771004 -10.906748 -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.374268 -1.034916 2.713839 2.055079 -0.199695 0.836591 -0.046922 -2.146000 2.066224 -0.166589 -0.354299 0.558048 -1.290348 0.970036 -2.308748 1.044917 -1.955330 -1.562380 -1.078417 -1.625626 -1.137724 -1.207244 0.653965 0.321209 0.953853 0.353550 -1.503632 0.367270 -2.239246 -1.149453 1.351535 -0.313051 0.493981 -0.978212 0.256300 -2.740693 1.962397 1.627791 -0.740039 -1.714045 0.536050 -1.349469 -0.477549 -0.955648 -0.282958 -0.046685 -0.661483 0.938616 1.237567 0.195699 0.553114 1.392763 -0.310542 3.633123 -1.569226 1.537391 0.802491 0.653424 -0.235372 0.829799 0.472506 1.031954 0.556667 0.937736 -0.258376 -1.554164 -0.288700 -0.637363 -1.000751 1.896089 -0.343815 -0.674269 -1.248863 -0.501487 -2.287310 -0.306638 -1.500282 1.490842 2.451979 -1.816797 0.903046 0.121371 0.849359 0.209475 1.016443 -0.204406 2.153925 0.693336 -0.486448 -0.415289 -1.399678 0.618480 0.247266 -0.691186 -1.288086 -2.981393 1.341443 -3.399342 -2.168448 0.498508 0.941454 -0.509127 -0.566254 -0.089141 0.830899 0.116595 -0.987136 -1.644994 -0.158913 1.066168 0.517960 -0.620969 0.746575 -0.718637 0.277334 -0.609956 -2.232689 0.102138 0.232524 -0.582073 -0.586889 1.778856 -0.505578 -0.384634 -0.245413 0.486989 -0.680762 1.510010 -0.702536 1.194332 -0.770137 1.141775 -1.367635 0.747180 0.760259 0.498972 -0.873049 0.764026 -0.623189 0.565262 -1.399392 0.051528 -1.552556 0.206375 0.242629 -0.990728 -1.428355 -0.616230 -0.474801 -2.221491 0.034412 -1.198015 -2.018804 0.024544 1.540495 2.234069 1.307277 1.910981 -1.097207 0.535704 0.133516 -0.004314 1.446740 -0.867253 0.904006 -0.890807 -1.830341 1.040201 -0.029553 0.454363 0.276818 -0.201780 -0.152582 -1.654940 -0.249663 0.644509 1.069507 -0.173832 1.781471 1.310076 0.036405 -2.438305 0.941618 1.105369 -0.758592 0.476689 -0.416859 -1.999256 0.657672 0.672242 0.876681 1.755379 -0.198080 -0.548627 0.470900 -0.268933 1.122275 -1.296696 -0.160711 -1.215128 -0.864746 -1.467148 0.855709 -0.427994 -0.258503 -0.835281 -1.690250 1.975280 -2.606515 -1.428290 2.740075 0.154440 1.128058 -1.955112 0.420878 -0.965851 1.992397 0.358627 0.649199 0.002299 0.122328 -1.584696 0.672319 0.946229 -1.063763 0.802334 2.023117 0.594520 0.671537 -0.062997 1.670346 -0.938092 1.141375 -1.215099 1.973251 -0.161114 -1.692732 0.282019 -0.849829 -0.307928 -1.125014 1.033677 1.734244 1.123623 1.305261 1.069639 1.163048 1.690754 -1.061439 1.140281 -0.417125 -0.139433 -0.997922 -0.263921 0.610111 0.295890 -0.730631 0.633017 -2.112240 -2.691057 -3.076798 -1.864905 0.771333 -1.742609 0.035249 -0.644446 -0.504316 -1.766905 -1.675642 1.464591 -0.929210 1.354794 1.275832 0.873974 1.154905 2.206830 -1.444866 0.654164 0.268642 0.404609 -0.030152 -0.687736 -1.641769 1.948885 -0.798773 0.406618 2.305380 -0.636318 1.036378 0.508276 0.551401 -0.996088 2.261552 0.872064 -0.927332 1.247033 1.389957 2.293993 1.242548 -1.234866 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/detect-cycle-in-a-graph.cpp__main = -0.245135 -3.442230 4.735995 4.165787 -0.530684 1.778282 0.714319 -1.971582 2.857161 0.277471 -1.540113 1.766370 -3.049429 0.771449 -0.627329 1.671782 -3.930632 -3.142491 0.119627 -0.840457 -1.189957 -2.617927 0.614395 2.054089 1.614114 3.068073 -1.894527 -0.071766 -3.335101 -1.951650 2.619558 -1.272686 2.455366 3.307259 0.858400 -7.006506 2.918024 2.587296 -0.665020 -4.109382 0.383358 -1.842400 -0.315815 -2.080691 -0.717087 1.244249 1.106830 2.586536 1.308098 0.762275 -0.543503 -0.637086 0.722125 4.435098 -0.922976 2.786030 2.591765 -0.245825 0.107301 -0.414104 1.401631 0.070315 2.418150 2.818804 -1.494030 -1.881471 -0.526285 -2.052065 -3.458172 2.495875 0.947813 0.630280 -2.789193 -0.788661 -1.987131 -0.528081 -1.319915 2.890043 5.756790 -2.600863 4.101624 1.464125 2.747956 -0.784950 1.917889 0.021072 3.195317 1.618160 -2.407984 -0.014076 -3.571877 -1.769629 0.175385 0.161067 -1.490323 -2.417451 1.295714 -3.623324 -3.769326 1.425742 0.456376 -0.145970 -1.887887 0.124274 2.401206 1.593485 -1.707656 -3.327029 -1.065815 0.403491 -0.991437 -1.565992 -0.333756 0.993938 -1.121829 -1.184323 -3.904809 -1.113634 1.277964 -2.717332 0.431510 2.709261 -1.333834 1.386248 -0.712104 0.086806 -0.553821 3.131900 1.051202 1.039414 1.575425 -0.677460 -1.470539 0.631516 1.403646 3.399345 -1.616387 -1.217825 0.078512 1.209305 -0.946119 -0.469782 -0.434803 1.605058 2.415152 -1.243107 -2.843904 -2.458965 -0.864307 -4.187230 0.948979 -2.933191 -0.373815 1.763591 3.026779 1.393136 1.838890 4.042873 -3.140036 2.629638 -0.523579 0.829580 1.584399 1.591082 1.677033 -1.774785 -2.451889 2.368444 1.175158 0.881836 1.060371 -1.765384 0.274167 -2.529369 -2.622786 2.241476 1.258998 0.039650 2.760253 1.225727 2.946290 -2.867925 0.824759 1.260010 0.119587 0.310817 0.534352 -4.016709 2.657261 -0.117992 0.683245 2.842447 -0.341823 -2.214030 1.158869 0.016824 0.629837 -2.582316 1.339433 -2.424519 -0.193116 -2.689315 1.366519 -1.343563 -1.650040 -1.498987 -0.099196 4.362661 -2.487588 -3.060871 2.810010 -0.651232 2.935187 -4.755861 1.816502 -2.264104 3.046684 -0.941377 -1.225861 0.235593 -1.186789 -0.848916 -0.232395 2.061511 -0.951164 0.932309 2.806982 1.074012 0.247612 1.322979 2.152895 0.159501 1.036494 -1.113784 2.290345 0.074416 -0.883054 0.049810 -1.608623 1.195414 -0.582734 0.030145 3.133206 3.082990 1.368064 2.589158 1.663167 1.421889 -2.420044 0.760086 -0.045835 2.531001 -1.754246 -0.596838 -0.744231 1.438490 -1.041085 2.096194 -3.887292 -5.386486 -3.022093 -3.650989 -1.846441 -0.349546 1.614971 0.058039 0.313197 -3.288390 -1.945762 1.704473 -1.344813 3.924667 2.056689 1.629738 2.860971 2.796659 -1.869807 -1.737603 0.727039 1.173416 -1.198696 0.341338 -3.117045 2.219231 -2.178272 1.906439 3.859191 -1.358606 0.506827 -1.473754 4.862882 -2.067930 5.187120 2.314587 -3.147385 1.807039 1.385437 3.488205 0.882908 -2.552579 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -2.096825 -5.946146 6.697954 6.414381 1.225115 4.028753 1.540543 -3.352351 3.846293 4.587191 -2.165217 3.575612 -4.043380 -0.182217 -0.351328 2.522625 -2.933777 -4.310385 0.128990 -1.674700 -1.447125 -3.874476 -1.120621 3.446758 1.816584 1.842218 -2.658848 0.289700 -6.618426 -7.268685 1.469607 -0.723888 3.322262 1.437464 1.159493 -9.600233 4.799968 6.366287 -0.844033 -6.912583 0.396231 -2.067843 -1.890625 0.827106 -0.026776 2.660901 1.370274 1.300013 0.443637 1.917683 2.030245 -0.277866 2.902144 7.032036 -0.215148 6.095902 5.352114 0.006372 0.919507 0.994753 1.855932 0.140423 3.965451 3.929232 -1.800794 -2.029873 -0.258710 -0.191963 -4.932914 2.722851 1.302117 -2.620987 -2.624258 -1.952138 -2.330919 -1.069014 -1.728559 1.659229 8.480501 -2.385093 7.678381 3.313891 4.299206 -1.169312 4.393826 -0.894244 5.695180 2.505979 -3.922514 -0.064168 -4.114503 -2.816079 0.411633 3.751042 -4.006741 -0.508192 2.727960 -4.116263 -6.381206 3.368703 0.049699 -0.985772 -4.584897 0.002505 3.287731 1.699383 -1.926862 -5.569971 -3.711363 2.567026 -2.734452 -3.484886 -1.671982 -0.076187 -1.122251 0.979113 -5.028760 -1.135576 3.654717 -3.831639 -2.468473 4.463524 -1.159208 2.706631 -1.482936 0.414580 -0.473421 1.992494 1.344743 2.511350 2.380046 -1.271858 -6.509496 1.136829 1.530963 1.414215 -2.547328 -1.277338 1.203539 2.199669 0.382972 3.516459 -2.037051 4.262737 5.082937 -0.345110 -3.191704 -4.697783 -0.409519 -4.898843 1.711992 -3.735178 -1.556438 -0.220835 4.681051 0.352562 1.563787 4.953358 -4.429442 4.297610 -0.363605 1.403666 1.395433 -0.405020 1.863466 -2.883488 -4.669816 3.469065 4.503026 0.949545 1.774819 -1.974619 -0.108397 -2.387857 -4.559140 3.320177 0.161501 0.005111 5.259538 2.638062 11.294976 -4.607778 1.340215 0.266426 -0.740508 1.144535 -0.718433 -6.243118 2.551648 0.739447 2.129320 7.076008 -0.323520 -3.082395 1.317029 0.202765 0.522660 -4.184950 5.098649 -4.448472 -0.147818 -2.230890 -0.198303 -2.280864 -2.654150 -2.616359 0.563322 6.853692 -2.822560 -6.091927 4.062328 -1.882506 1.492091 -8.073630 4.333049 -3.226022 3.073357 -2.470653 -1.925685 -0.330360 1.091594 -1.142007 0.642223 3.165759 -3.616098 3.363355 5.068988 0.789549 0.866735 1.479084 2.137375 -0.847994 -0.339442 -3.378446 4.401668 0.420071 -1.102846 -1.716836 -2.725119 3.157686 -0.529895 -1.330276 1.316822 4.699366 -1.389017 0.122720 3.542207 0.943493 -3.365698 2.958433 0.962371 3.484092 -2.606519 -0.958518 -1.789608 0.198083 -0.098624 3.214944 -6.201684 -4.004524 -2.711366 -6.022529 -2.421861 2.035823 2.988847 1.396507 0.342397 -6.471031 -3.968807 4.968046 -1.856030 3.960268 3.288485 3.987876 4.257326 3.436197 0.044904 -1.500412 -2.223603 -0.047355 -3.073711 -1.936317 -1.282948 3.114896 -1.966358 4.202771 3.150309 -0.268502 2.015479 -1.149704 4.718384 -3.241647 7.560575 3.570957 -3.430564 1.777932 2.167657 6.913050 -3.847672 -3.748930 -PE-benchmarks/boruvkas-algorithm.cpp__main = -2.732054 -7.531560 8.658076 7.950787 0.801934 4.802956 3.152611 -3.970073 4.902166 6.028315 -1.750721 4.035428 -4.595197 -0.202059 0.571019 3.334878 -4.120776 -5.123208 0.112877 -2.900076 -2.600427 -4.510988 -2.200998 3.931211 2.051448 -0.067594 -3.103783 -0.974935 -7.129394 -7.254821 2.143360 -1.141839 4.021927 0.238843 1.941840 -15.882021 5.578809 6.572482 -1.377981 -8.313755 0.039425 -2.414862 -1.155411 0.830068 -1.311002 2.177970 1.978011 1.776125 0.762183 2.444922 2.398471 -0.174484 3.373621 13.028856 -0.372359 7.180797 6.679220 -0.485909 0.944292 2.009290 2.664608 -0.398337 4.674762 4.267405 -1.028614 -2.279413 -0.651072 -1.220085 -6.110243 3.308008 1.904067 -3.734014 -3.404573 -2.622554 -3.913297 -2.568976 -6.450124 3.388937 10.898776 -5.085026 9.406828 4.153973 5.864216 -0.052392 5.997237 -0.495036 7.634572 2.844853 -5.061942 1.311465 -4.034490 -3.616851 0.792598 2.744832 -4.450898 -4.094164 3.607041 -4.003852 -8.040840 5.928201 0.320027 -0.346134 -6.099499 -2.118395 4.017145 2.497145 -4.237764 -7.391322 -6.235087 3.448177 -2.901971 -3.932977 -0.663081 -0.559373 -0.839205 -0.082369 -6.387237 -1.167203 4.972220 -4.628036 -3.720989 6.493814 -1.991758 3.660899 -1.592540 0.372463 -1.136668 3.643942 1.796120 3.435507 2.242517 -1.644659 -10.604824 0.913951 1.924584 3.300085 -1.080713 -1.193266 1.438137 3.447902 0.267149 5.346397 -0.641512 6.127961 5.776875 0.238741 -4.452420 -6.105652 0.635888 -5.934744 2.231878 -5.025627 -1.789504 1.577942 5.828664 2.144269 1.506237 4.905340 -5.250750 6.271520 -1.650791 1.632828 1.534733 -1.212386 2.586162 -3.517183 -5.466578 3.059549 5.770686 1.960755 2.555159 -3.534376 0.164110 -2.805804 -5.548965 2.216933 1.478691 -1.186260 6.048189 3.798945 14.483032 -7.394966 1.232114 0.017395 -1.257414 1.361330 -1.520912 -7.719118 2.655370 1.301419 0.304278 7.805819 -0.851850 -4.038472 1.866999 -0.702841 0.611629 -4.034407 4.771144 -5.029377 -1.568502 -2.739612 0.087191 -4.008114 -2.834442 -3.682586 -0.212340 8.730278 -5.595382 -6.520813 5.719357 -2.622221 1.609999 -9.621120 9.795616 -3.491520 3.775652 -4.149097 -3.198999 -1.176035 3.966337 -1.236075 1.885920 3.990329 -4.942058 3.064153 8.032805 1.010617 2.143192 2.020344 3.791573 -1.142873 -0.894622 -4.203532 6.269831 -0.597683 -1.562711 -2.264700 -3.338827 4.681260 -0.309072 -0.128790 1.837930 5.047749 -1.707202 -0.064599 5.537741 0.358836 -4.026812 3.351511 0.715654 4.969110 -3.792626 -0.271209 -2.518159 0.431445 -0.269552 3.041509 -7.787435 -4.020481 -5.581185 -5.045812 -3.376656 3.851156 2.538262 1.124508 0.269818 -8.464777 -4.699584 5.329957 -3.016585 0.776185 4.600286 4.942231 6.312714 5.180281 0.643310 -2.246493 -2.361555 -0.818123 -3.571342 -2.070354 -1.818001 3.520340 -4.351885 5.462118 3.672286 0.775277 2.599483 0.760875 5.899798 -4.201273 9.354324 4.623826 -4.207586 1.883681 6.060342 8.568579 -4.911673 -4.631324 -PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -1.840121 -3.274611 3.809966 3.556535 0.005982 2.400398 0.318026 -1.962672 1.015130 2.832666 -0.805069 2.138815 -1.824306 -0.349290 -0.172595 1.176407 -1.548480 -1.744110 -0.513768 -1.611290 -1.254772 -1.343161 -1.837359 2.666169 0.840826 -0.026314 -1.540974 0.447026 -3.023585 -4.554229 -0.826286 0.017826 1.724039 -0.499418 1.120668 -5.664694 2.528029 3.883994 -0.495150 -3.160209 0.171094 -1.092267 -0.885639 0.937163 -1.887777 0.996356 0.528849 -1.228045 0.024207 0.815472 1.509423 0.405903 2.425529 4.982404 0.813371 3.523554 3.051796 -0.282378 0.506385 0.622165 0.914782 -0.192763 1.885759 0.836131 -0.244363 -1.181975 -0.306859 0.357223 -1.616114 1.149260 0.063670 -2.765726 -0.755923 -1.844150 -2.513047 -1.487058 -0.945898 0.883382 3.867475 -2.115516 3.742746 1.808121 1.356905 0.347838 3.108706 -0.398472 3.618615 1.235200 -1.486114 1.225598 0.360852 -1.111616 0.720307 2.642489 -2.860656 -1.431594 2.019564 -3.734295 -3.928560 2.858116 0.160134 -0.969971 -2.614816 -1.511484 1.104637 0.540376 -1.735475 -2.898369 -2.188929 2.157984 -0.752935 -1.982338 -0.850811 -0.004775 0.382906 1.296063 -2.857539 0.303510 2.399093 -1.582717 -1.669315 3.062189 0.725405 1.727263 -0.710241 0.521723 -0.504337 1.625630 0.167298 1.695569 -1.141373 0.311804 -3.486956 -0.272239 0.510708 -1.717535 -1.208035 -1.012873 1.024282 1.526883 0.513670 3.293005 -1.350110 3.260438 2.701783 0.783545 -1.588295 -2.772873 -1.311909 -2.985988 0.211211 -1.839912 -2.375193 0.962426 2.381916 0.472973 0.230933 1.711614 -0.835308 1.603695 -0.300243 -0.093459 0.742178 -2.071319 1.042642 -1.718800 -2.710191 1.970697 2.513263 1.654130 1.076944 -0.850676 -0.037225 -0.535338 -2.211374 1.642323 0.504726 0.034118 3.293891 2.261535 7.325159 -2.148351 0.792315 -0.575889 -1.102581 0.883984 -1.027285 -3.140538 0.051197 1.037823 -0.007198 4.234681 -0.375551 -1.131107 0.856126 -0.395079 0.485028 -2.475158 2.896997 -2.308011 0.476164 -1.087609 -1.023626 -1.613542 -1.047066 -2.030718 -1.016131 3.847391 -4.209500 -2.658167 2.690161 0.223030 0.737761 -4.052843 2.971169 -1.412538 2.905059 -1.480716 -1.620441 -0.050290 1.171912 -0.592774 1.347659 1.723134 -2.574832 1.055574 2.719946 0.252280 0.957386 0.472422 1.582255 -0.873266 -0.054615 -2.399068 2.915393 0.198129 -0.771681 -1.413294 -1.441747 1.128731 0.000467 0.086053 -0.493133 1.773453 -1.045820 -1.287503 2.825891 0.121101 -1.515143 1.651685 0.127097 1.693120 -1.990812 -0.601346 -1.010850 0.777957 0.572907 0.885531 -3.758625 -1.051380 -4.024368 -1.812268 -1.354123 2.112510 1.270251 0.833419 -0.362605 -3.104400 -2.682633 4.688833 -1.361992 0.945398 2.014067 2.585410 2.900309 2.076026 1.451228 -0.566478 -1.666867 -0.378481 -1.210879 -0.719807 -0.588917 1.771710 -1.247973 2.540822 1.411250 0.309271 2.030356 1.489064 0.881537 -2.159475 3.385677 1.669768 -2.116554 0.879495 3.075410 2.171907 -3.093132 -2.034564 -PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -15.025351 -25.767357 28.004506 25.084810 2.396715 19.178802 6.167821 -15.287978 9.351776 20.688638 -7.606207 17.703413 -13.209029 -4.731865 -4.944116 6.176994 -9.356389 -14.447451 -3.154491 -10.709142 -6.930940 -12.430092 -13.789448 21.012768 5.591704 -0.514667 -11.063934 4.398175 -28.306187 -37.195180 -3.569303 0.879332 12.168095 -7.373558 7.189947 -44.683266 19.584508 32.452574 -3.326188 -26.488957 2.034478 -7.184297 -10.979794 9.912145 -11.919005 8.031133 3.327508 -6.905144 -2.553793 6.082186 11.782547 3.430863 16.568330 38.014142 6.122937 28.568359 26.215080 -0.514928 5.160641 6.142238 6.808643 -0.564010 14.021476 9.951615 -2.955000 -6.562359 -0.060977 4.751572 -15.688515 7.911881 0.524410 -22.906381 -4.222542 -12.437373 -20.187289 -8.173481 -1.880179 3.139448 32.925625 -11.624211 32.456867 12.805662 13.874701 -0.344000 22.960161 -3.755181 26.372719 10.219866 -13.172889 5.430870 -3.178561 -7.181323 3.947567 23.379101 -22.644795 -3.978237 16.651738 -27.668800 -29.271498 19.701871 0.363924 -9.182592 -19.551987 -7.903077 8.766951 3.895992 -11.265769 -23.198072 -19.219966 18.660152 -8.738601 -15.181294 -6.579854 0.983182 1.935590 10.465473 -19.553453 1.915605 20.340472 -12.180343 -14.164733 21.999946 0.667251 13.755678 -6.238000 3.628212 -2.873599 6.916397 1.414894 11.272070 -3.518197 -0.901471 -30.484014 -2.759850 2.342485 -5.935807 -11.289998 -6.875287 10.003647 11.816186 6.906403 24.849783 -12.430306 22.441568 18.403864 5.170672 -10.885868 -21.583699 -7.605105 -21.753100 1.347143 -13.236515 -17.796788 4.725378 18.322894 1.354203 0.477292 14.908457 -9.727626 15.931185 0.305801 -0.364012 3.484258 -19.018439 6.517680 -12.748090 -22.152715 15.187912 18.930535 11.443584 7.504894 -5.292524 -1.968217 -4.690086 -19.516829 12.893847 2.292662 2.102348 24.575528 16.771165 56.389215 -18.275085 5.206712 -5.358293 -8.579642 6.486244 -8.789400 -24.123353 1.793506 8.033693 4.777942 35.525626 -1.639913 -8.751768 5.878676 -1.317751 3.207257 -19.454627 25.774193 -18.038560 1.712597 -6.409925 -10.357822 -10.516921 -8.201601 -16.890951 -7.912946 29.095148 -28.891175 -25.509941 19.511689 -0.132484 5.788068 -33.398221 22.977180 -10.829405 22.566229 -9.497345 -8.794100 -0.489564 8.792934 -5.042485 10.220293 12.317867 -21.285145 12.609022 22.376021 1.270642 7.177583 3.151150 9.527824 -8.497811 -2.586823 -19.763025 20.671611 2.239874 -9.434613 -10.422026 -11.144651 11.337952 -0.909138 -0.564215 -4.791895 15.746479 -9.279404 -9.848306 21.292837 0.202963 -11.671605 12.977633 2.863895 12.033581 -12.939748 -5.241976 -8.081487 4.419789 6.058025 7.878339 -27.756627 -8.391355 -27.493723 -21.557431 -8.375270 11.217277 11.697151 6.784882 -1.542629 -27.435651 -20.638865 33.067387 -8.979255 11.705014 16.823201 21.026706 20.323168 13.705884 9.588624 -1.834508 -13.527322 -0.692901 -11.811848 -8.187835 -2.518749 11.630567 -9.224914 19.973201 9.273984 3.733555 15.725887 8.328600 6.101876 -15.964779 28.880326 13.764552 -15.984314 5.371246 16.962998 20.896320 -24.885373 -15.581308 -PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -4.337167 -7.181495 7.385113 6.867245 0.802968 5.218161 1.310275 -3.441707 2.395845 6.154274 -1.888928 4.466137 -3.997298 -1.146102 -0.299054 1.907823 -2.436381 -4.169817 -0.267524 -2.776195 -2.210349 -3.116642 -4.152923 5.608239 1.378789 -0.898761 -2.858555 0.564156 -7.312086 -8.593293 -1.525203 -0.143672 3.500985 -1.528536 2.064984 -11.381875 4.841925 7.981622 -0.823378 -6.935099 0.117615 -2.526036 -1.704730 2.253460 -3.135797 1.956474 1.723838 -1.933667 -0.322464 1.605551 3.106675 0.289588 4.252134 10.364500 1.578859 7.473745 6.557401 -0.379347 1.058321 1.564288 1.947398 -0.897363 4.247933 2.211941 -1.213740 -1.763773 -0.274539 0.851184 -3.719051 1.940095 0.785505 -5.286408 -1.239768 -3.155144 -4.731713 -3.061981 -0.826156 1.209970 8.316912 -3.896407 8.536122 4.089384 3.834957 0.581900 6.628263 -0.836113 7.404720 2.451330 -3.837282 1.907537 -1.009858 -1.924103 0.909355 5.613303 -5.488576 -2.136948 3.932414 -6.631911 -8.174890 5.817823 -0.342094 -1.595379 -5.527899 -2.398090 2.816669 1.434455 -3.647063 -6.295973 -5.079223 4.475614 -2.579558 -4.210653 -1.439397 -0.460784 0.570700 1.936627 -5.512391 -0.026220 5.413152 -3.833622 -3.835296 6.412564 0.559948 4.193205 -1.419528 0.810131 -0.647369 2.622011 1.034444 2.828174 -1.480655 -0.698077 -8.117498 -0.589034 0.715562 -2.399770 -2.440222 -1.756067 2.652708 3.188043 1.639707 6.633494 -2.683882 6.705535 5.104824 1.374565 -2.989521 -6.077861 -1.553410 -5.422367 0.680683 -3.837228 -4.580366 1.137334 5.050868 0.768719 0.220540 4.067480 -1.860301 4.217886 -0.610321 0.190789 1.111600 -4.188720 2.184427 -3.572361 -5.613650 3.751587 5.826148 2.936132 2.148270 -2.187005 -0.177076 -1.336662 -5.004226 2.688679 0.763987 0.120671 6.909239 4.249852 15.081046 -5.324631 1.565360 -1.555864 -1.942966 1.859986 -2.203879 -6.699948 0.234680 2.089550 -0.040698 8.807752 -0.633031 -3.092391 1.707599 -0.514218 0.807413 -5.084820 6.249731 -4.911087 0.559478 -1.913128 -1.931575 -3.577942 -2.456014 -4.409437 -1.664868 7.887711 -7.444660 -6.241703 4.754044 0.357503 1.468256 -8.921948 6.054764 -3.092354 5.640163 -3.157012 -3.202519 -0.373590 3.192967 -0.698362 2.660388 3.649524 -5.473916 3.128872 5.569547 0.470116 2.359471 1.547512 2.951801 -1.565281 -1.189350 -4.871234 5.478613 0.374208 -1.885646 -2.719505 -3.169889 3.310670 0.653435 -0.164949 -1.239855 4.298333 -2.824583 -2.408862 5.974602 -0.476768 -3.102886 2.987680 0.404668 4.146195 -3.827522 -0.966575 -2.906381 0.957303 1.370451 2.095523 -7.789916 -2.202114 -6.787529 -4.513101 -2.601139 4.430192 2.385009 2.207984 -0.079882 -7.283168 -5.074556 8.624097 -2.765429 2.857233 4.175810 5.590621 6.000564 3.976347 2.746514 -1.685179 -3.072498 -0.865145 -3.366915 -1.774378 -0.807769 3.091159 -2.740943 5.936173 2.390258 0.960027 3.609092 2.459086 1.868814 -4.361523 7.273365 3.965621 -4.484851 1.450916 5.601818 5.529484 -6.896592 -4.252514 -PE-benchmarks/birthday-paradox.cpp__main = -0.032061 -0.398566 0.295027 0.309027 -0.025989 0.010030 -0.016204 0.010599 0.261510 -0.509761 -0.151292 0.138170 -0.240294 0.084743 -0.207842 -0.190159 -0.390264 -0.454791 0.016290 0.059749 -0.240453 -0.084545 -0.175370 0.194333 -0.092858 0.583891 -0.196045 0.118514 -0.535169 0.385310 0.376440 -0.175368 0.172945 0.497884 0.079972 -0.518139 0.067900 0.304941 -0.054870 -0.370439 -0.074341 -0.412878 0.083300 -0.556189 -0.209120 0.032445 0.176032 0.195135 -0.034960 -0.074852 -0.279342 0.022323 -0.148222 0.309613 0.001390 0.178814 0.375852 0.098670 -0.014134 -0.116103 0.156873 0.057783 0.248254 0.033130 -0.336705 -0.000152 -0.049884 -0.492361 -0.411816 0.163301 0.073131 0.062042 -0.078506 -0.079560 -0.435437 -0.158530 -0.030045 0.211001 0.328654 -0.560264 0.375492 0.088588 0.347692 0.070653 0.188799 0.056125 0.338722 0.182355 -0.113868 0.188581 -0.436628 -0.073070 0.030051 -0.275811 -0.206135 -0.246557 0.086518 -0.687736 -0.250590 0.109849 -0.018623 0.180372 0.023796 0.083503 0.148582 0.170135 -0.235052 -0.035205 0.093401 0.077687 0.039460 0.009979 0.056798 0.322676 -0.026439 -0.505960 -0.440535 -0.104777 0.259754 -0.180888 0.334335 0.448438 -0.307747 0.188920 -0.126729 -0.270018 0.006327 0.590675 0.141969 -0.038771 -0.178187 -0.208596 0.009589 -0.045761 -0.116280 0.698832 -0.238776 -0.088592 0.239986 0.102046 -0.093007 -0.377444 -0.096637 -0.162974 0.029038 -0.163373 -0.311782 -0.306962 -0.327163 -0.534322 -0.129555 -0.274650 0.004377 0.536157 0.379497 0.565417 0.203943 0.664894 -0.146499 -0.058585 0.055379 -0.099008 0.173096 0.282266 0.142037 -0.132310 -0.255414 0.347959 -0.215172 0.000000 0.162191 -0.365672 0.021841 -0.300790 -0.156530 0.213068 0.205262 0.114605 0.234849 0.143790 -0.531195 -0.338823 0.139706 -0.132030 -0.110771 0.120574 0.043516 -0.144533 0.163804 0.005756 -0.090060 0.041365 -0.088933 -0.082376 0.057125 0.033637 0.034288 -0.188297 -0.130527 -0.009992 -0.070794 -0.249897 0.352558 -0.176792 0.008026 -0.257896 -0.439893 0.508431 -0.337835 -0.207446 0.236574 0.257388 0.514649 -0.251421 -0.268395 -0.110424 0.757096 0.035578 -0.050881 0.157366 -0.450690 0.073710 -0.096496 0.221965 -0.005790 -0.283456 -0.001352 0.245977 0.035132 0.333885 0.260627 0.076711 0.181966 0.020569 0.049310 0.010565 -0.101605 0.296836 -0.212593 0.056562 0.081758 0.134618 0.617443 0.312358 0.543939 0.391799 0.163890 0.019957 -0.285513 -0.321611 -0.028717 0.141840 -0.198169 0.048015 -0.067896 0.318966 -0.076716 -0.050313 -0.173924 -0.759608 -0.568578 -0.371804 -0.091992 -0.286590 0.007521 -0.048197 0.122261 -0.173810 -0.132055 -0.021579 -0.196480 0.803271 0.093875 0.166137 0.399714 0.182286 -0.377338 -0.183414 0.361454 0.133072 0.015853 0.416521 -0.492264 0.227229 -0.161887 0.165632 0.475660 -0.286480 0.005177 -0.047393 0.577727 -0.170038 0.363358 0.119555 -0.489595 -0.023378 0.142722 0.145724 0.410141 -0.357109 -PE-benchmarks/birthday-paradox.cpp__find(double) = 0.150745 -0.765095 -0.055139 0.454722 0.761235 -0.376798 0.306489 0.115924 0.613826 -0.629472 0.093747 0.297406 -0.268946 0.389975 -0.633646 -0.365489 -0.316123 -1.129324 0.171848 0.353676 -1.030993 0.135635 -0.487442 -0.246800 -0.618744 0.736298 -0.537157 0.028522 -1.209050 0.472856 0.641029 -0.593668 0.148935 0.139042 -0.461308 -0.801844 0.090692 0.755996 -0.203319 -0.328821 -0.311116 -1.019493 0.094065 -1.049218 -0.534951 -0.179604 0.489491 0.267312 -0.153090 0.142564 0.133380 0.597145 0.120011 0.841271 -0.111100 0.425001 0.661151 0.574487 -0.194677 0.227743 0.320811 0.445933 0.804440 -0.320341 -0.589996 0.590704 0.069821 -1.015995 -1.389453 0.271115 0.106887 -0.376577 0.315160 0.438769 -0.687639 -0.481727 0.111958 -0.263479 0.143909 -1.384197 0.826073 0.163453 0.499421 0.087803 0.210978 -0.141754 0.974462 0.385767 -0.105022 0.203885 -0.430654 0.006442 0.246983 -0.669380 -0.471682 -0.692947 -0.174792 -1.088412 -0.321941 0.248051 -0.196815 0.836445 0.042812 -0.077586 0.524598 -0.008093 -0.596895 0.298407 0.066455 0.113529 -0.013990 0.098592 0.157990 0.147123 0.131409 -0.956328 -0.842900 -0.810498 0.695106 -0.409903 0.311871 1.119993 -0.528359 0.607968 -0.380146 -0.911004 0.469234 0.775690 0.148680 0.524232 -0.495727 -0.265863 -0.212452 -0.151594 -0.686027 1.072839 -0.100541 0.170479 0.592118 0.412578 -0.387302 -0.382981 -0.320381 -0.429163 0.262141 -0.029438 -0.741975 -0.265936 -0.182868 -0.923189 -0.169674 -0.625354 -0.052915 0.756421 1.097260 0.863744 0.597888 1.159174 -0.054814 -0.494859 0.473489 -0.084471 0.700355 0.059036 0.207694 -0.159389 -0.738615 0.809351 -0.295763 -0.649751 -0.048994 -1.169480 -0.001060 -0.471752 -0.265634 -0.296921 -0.001648 -0.021056 0.008772 -0.066399 -0.307290 -0.924635 0.748518 -0.709623 -0.504648 0.787329 -0.215814 0.055355 -0.068264 0.027212 -0.268641 -0.074361 -0.239415 -0.371457 0.072508 0.255420 -0.248605 -0.110334 -0.524913 0.450652 -0.472939 0.171202 0.728936 -0.171157 0.497464 -0.440954 -1.111307 1.167550 -0.620100 -0.306839 0.837655 0.221966 0.527268 -0.326818 0.120748 0.083907 0.910528 -0.300836 -0.185486 0.504120 -0.500768 0.417455 -0.041299 0.502994 0.136618 -0.717350 -0.032681 0.694981 0.504798 0.996117 0.517602 0.550596 0.256403 0.400871 0.292312 0.108099 -0.045287 0.472378 -0.662723 0.233691 0.322037 0.360951 1.303394 0.598007 0.907174 0.601491 0.446321 -0.046494 -0.759129 -0.600424 -0.039605 -0.241595 -0.355156 0.552246 0.170422 0.098846 -0.397800 0.244184 0.234521 -1.093078 -1.110398 -0.590364 -0.051577 -0.194071 0.288492 -0.500348 0.598743 -0.347581 -0.079522 -0.077565 -0.424596 1.036225 0.332106 0.631620 0.808467 0.030826 -0.438271 -0.036675 -0.076232 -0.393547 0.300659 0.857531 -0.233339 0.254027 -0.079666 0.837187 0.261239 -0.557982 -0.388872 -0.357520 0.937931 -0.191672 -0.032202 -0.140501 -0.223403 -0.538412 0.210739 0.286140 0.493785 -0.900374 -PE-benchmarks/find-parity.cpp__main = -0.452798 -1.328753 1.641051 1.278484 -0.365201 0.803365 0.133698 -0.515720 0.737489 -0.682571 -0.415421 0.707244 -0.820821 -0.331531 -0.132005 -0.333358 -1.294579 -1.148454 -0.089449 -0.383572 -0.029987 -0.692719 -0.565179 1.345136 0.201107 0.951517 -0.499935 0.077097 -2.003053 0.336906 0.807782 -0.100051 0.759348 1.188866 0.774007 -2.136348 0.702409 1.059888 -0.170900 -1.859639 0.158023 -1.015756 -0.038655 -0.926312 -0.460873 0.295064 0.262792 0.310303 -0.003629 -0.368994 -0.900191 -0.063290 -0.374256 1.680658 -0.051593 0.945564 1.417592 -0.085435 0.448969 -0.049256 0.332246 -0.103549 0.637401 0.522888 -0.914818 -0.370563 -0.027541 -0.862784 -0.857724 0.633020 0.275047 -0.316976 -0.540697 -0.381379 -1.764089 -0.149376 0.094475 1.211808 1.449375 -1.139399 1.502674 0.397877 1.094459 0.183817 1.127149 0.213721 1.260562 0.433523 -0.551062 -0.011870 -2.296003 -0.542641 -0.060024 -0.715529 -0.737530 -0.076872 0.659243 -2.114258 -1.379214 0.624167 0.074504 -0.355642 -0.689129 0.090876 0.596399 0.798463 -0.433316 -0.919524 -0.449554 1.139121 -0.557107 -0.350502 0.212533 0.553630 -0.217550 -1.095149 -1.232404 0.410694 1.001318 -0.331988 -0.054523 1.431498 -1.232141 0.366579 -0.190140 -0.187711 -0.438351 1.329099 0.177967 -0.287451 0.341772 -0.947203 -0.741515 0.068110 0.003675 1.752533 -0.651393 -0.316476 0.521838 0.517584 0.007721 -0.293433 -0.311149 0.480406 -0.333451 -0.535649 -0.669310 -1.448654 -0.514427 -1.368981 -0.250893 -0.670597 -0.248803 1.743313 0.966419 1.548919 0.326117 1.382279 -0.779961 0.624167 -0.047261 0.078302 0.226041 0.179742 0.444051 -0.635835 -0.901187 0.680818 -0.025094 0.695002 0.299945 -0.368171 -0.005028 -0.781243 -1.120924 0.609790 0.694474 0.608286 1.442404 1.086137 -0.701628 -1.677589 0.038949 -0.053344 -0.439333 -0.034824 -0.230686 -1.051386 0.417891 0.417455 -0.103256 1.196598 -0.288808 -0.457921 0.128892 0.107720 0.371066 -0.711400 0.364040 -0.626768 -0.427289 -0.795550 -0.015720 -0.790041 -0.693850 -1.138232 -1.140613 1.687461 -1.289583 -1.667412 0.972307 -0.205603 1.307255 -1.730781 -0.090797 -0.660318 1.731193 0.313568 -0.113261 -0.369609 -0.462910 -0.542627 0.148705 0.603291 -1.191978 0.262895 0.865675 0.506367 0.262720 0.435254 0.645973 -0.272773 0.290019 -0.899806 0.581764 -0.319291 -0.736283 0.420898 -0.509386 0.585400 0.186713 0.369235 1.017723 0.941422 1.069250 0.737642 1.195875 0.080468 -0.626723 -0.294742 -0.201274 0.688256 -0.467438 -0.276796 -0.526599 0.526371 0.334580 -0.002152 -1.438408 -1.865953 -1.769501 -1.544466 -0.050530 -1.015530 0.109269 0.317416 0.041343 -1.704845 -0.841068 -0.155796 -0.501747 1.322682 0.649684 0.515330 1.332518 1.049722 -0.923173 -0.431940 0.888832 0.589788 -0.582753 0.184300 -1.532415 0.971862 -0.894168 0.810587 1.590684 -0.246564 0.609253 -0.071766 1.174809 -0.853048 1.751675 0.814533 -1.754593 0.079976 0.784886 0.621939 0.223594 -0.992356 -PE-benchmarks/reservoir-sampling.cpp__main = -0.695472 -2.040552 2.243044 1.960930 0.273943 1.085799 0.796481 -0.714999 1.414724 1.079323 -0.715867 1.178360 -1.442559 0.062155 -0.429108 0.781425 -1.185697 -1.626103 0.215219 -0.357173 -0.405823 -1.346084 -0.178674 1.091878 0.637077 0.448954 -0.872243 -0.273610 -2.306924 -1.568446 0.684190 -0.461180 1.073244 0.132786 0.280086 -3.506551 1.303808 1.723990 -0.324947 -2.448164 0.275076 -0.897627 -0.166432 -0.184621 -0.215143 0.537643 0.717254 0.727920 0.243848 0.555847 0.224605 -0.119667 0.683671 3.014208 -0.306491 1.767126 1.788694 0.073541 0.184568 0.185147 0.704331 -0.188832 1.191043 1.296376 -0.603145 -0.604218 -0.353019 -0.506063 -1.718656 0.872173 0.253606 -0.263148 -1.087473 -0.360876 -1.095520 -0.413695 -1.027280 0.983483 2.882479 -1.278729 2.541038 0.960217 1.604238 -0.129565 1.203616 0.018484 1.424401 0.767013 -1.309077 -0.151920 -1.589555 -0.540697 -0.017204 0.430350 -0.940018 -1.057730 0.970191 -1.360747 -2.071700 1.126601 -0.077828 -0.135414 -1.040732 0.013736 1.059714 1.010879 -0.999023 -1.924811 -1.274640 0.648973 -0.573206 -0.963589 0.003112 -0.013748 -0.376192 -0.446347 -1.730573 -0.417076 1.086206 -1.419318 -0.526615 1.554042 -0.665452 1.101459 -0.314536 0.082416 -0.155678 1.155744 0.793357 0.586305 0.626586 -0.567507 -2.167283 0.461808 0.564194 1.151975 -0.800724 -0.021947 0.310006 0.681275 0.146781 0.464048 -0.418233 1.136692 1.202862 -0.439641 -1.160926 -1.650538 -0.045642 -1.666488 0.478012 -1.308875 -0.389989 0.526748 1.512299 0.534623 0.596924 1.985489 -1.452359 1.373700 -0.140595 0.258205 0.438301 0.103440 0.741757 -0.864970 -1.489231 0.923291 1.343591 0.404549 0.450492 -0.743567 0.018845 -1.003356 -1.192026 0.815184 0.559384 -0.091036 1.616897 0.763625 2.479402 -1.819274 0.229258 0.163950 -0.213402 0.243654 -0.270767 -2.169799 1.012134 0.191930 0.324931 1.697055 -0.135584 -1.123814 0.729420 -0.179435 0.248525 -1.221198 1.150505 -1.380262 -0.491192 -0.923659 0.203774 -0.764207 -0.842429 -0.980071 -0.042379 2.265426 -1.147961 -1.680214 1.066847 -0.366285 0.705680 -2.529263 1.816134 -1.037262 1.344942 -0.599768 -0.525608 -0.109953 0.532759 -0.222465 -0.085355 1.077886 -0.990954 0.977804 1.774010 0.427021 0.318074 0.720319 0.983790 -0.137474 -0.076993 -0.875527 1.163700 -0.150710 -0.669222 -0.111496 -0.839577 1.172021 0.016914 -0.088506 1.043657 1.537525 -0.104773 0.706847 1.240916 0.422240 -1.092368 0.595614 -0.017466 1.612777 -0.859936 -0.138107 -0.846591 0.312957 -0.170935 0.982761 -2.054777 -1.861922 -1.293961 -1.896632 -0.646575 0.101743 0.607098 0.187424 0.242894 -2.382835 -1.195472 1.034007 -0.738057 1.228371 1.144369 1.032614 1.595235 1.270075 -0.361871 -0.648162 -0.064301 0.187919 -0.897061 -0.354187 -0.725160 0.780449 -1.231610 1.224242 1.271918 -0.187104 0.449427 -0.148564 1.356924 -1.086816 2.692777 1.305897 -1.330788 0.682383 0.939785 2.291970 -0.758114 -1.286366 -PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -3.522249 -5.915544 4.948155 4.520615 1.400783 3.964235 2.030118 -1.639456 3.244863 3.622779 -1.992889 3.377215 -3.705413 -1.364064 -0.434863 0.388451 -1.661128 -4.158903 0.818029 -0.726416 -0.459174 -3.973665 -2.464129 4.578204 0.659307 0.454735 -1.741055 0.450662 -7.593437 -4.837685 0.681313 -0.390183 2.716485 -0.004960 1.275837 -8.555707 3.194813 5.881141 -0.180200 -6.721855 0.187903 -2.583055 -1.009052 1.216819 -0.594501 1.751107 1.948924 0.346588 -0.473901 0.517566 0.973523 -0.870510 1.674711 7.023807 0.220662 5.674919 5.374473 0.026762 1.197849 0.937211 1.290946 -0.954720 3.654246 3.432435 -2.698138 -0.528964 0.179704 0.063826 -4.617094 1.584369 1.084533 -2.336995 -1.631746 -1.238208 -3.175602 -1.400702 0.296475 1.043544 7.286607 -1.986421 8.171472 3.106037 4.726800 -0.423253 4.738765 -0.579910 4.937977 1.686774 -4.213902 -0.325222 -5.140565 -1.445868 -0.399382 3.428424 -3.130685 0.797608 2.205159 -4.083347 -5.941628 3.127311 -1.379402 -0.898130 -3.909993 0.550340 3.095351 1.955355 -1.799245 -5.631953 -4.439320 3.217538 -3.329827 -2.942961 -0.867851 -0.011835 -0.688410 -0.600891 -3.689211 -0.928572 4.082868 -3.489013 -2.601373 4.679222 -2.035582 3.670998 -0.802454 0.029114 0.041601 1.406300 2.026824 0.535599 1.557264 -3.224692 -7.048293 0.526655 0.160492 1.871217 -2.548992 -0.704342 2.305349 1.905750 1.631078 2.586598 -1.894050 4.024529 2.744869 -0.398452 -1.817621 -5.002608 -0.230352 -3.908911 0.963862 -2.815094 -1.882937 0.490331 3.938355 0.733119 0.442076 4.574800 -2.976337 4.108874 0.047178 0.592501 0.398652 -0.920237 1.609608 -2.510076 -4.128726 2.522336 4.133499 1.335816 1.059725 -1.775588 -0.759862 -1.710993 -4.451471 2.169082 0.381773 1.309602 5.129543 2.403630 9.512041 -5.576336 1.006326 -0.885780 -0.778734 0.968544 -1.311392 -5.250437 1.872895 1.029115 0.835490 6.064680 -0.457273 -2.920172 1.080291 0.377752 0.710550 -4.144139 4.814646 -4.011807 -0.567231 -1.680670 -1.359763 -2.314715 -2.857970 -3.560709 -0.091256 6.057979 -2.484027 -6.193518 2.581644 -0.891004 1.863062 -7.431429 3.701309 -2.736681 3.839861 -2.222577 -1.515357 -0.510140 2.127700 0.156384 0.530732 2.633631 -4.007058 3.788011 4.131167 0.697455 1.550107 1.963762 1.517353 -0.463975 -1.721809 -3.400397 2.866669 0.124155 -1.610592 -0.911167 -2.523292 4.319717 1.270617 -1.025327 0.670781 5.204725 -1.746664 -0.058333 4.225795 -0.597871 -2.359410 1.133871 0.260260 3.855448 -1.889461 -0.767328 -3.058373 0.095242 0.973720 2.156326 -5.705387 -3.554502 -2.079331 -6.008940 -1.674357 1.066802 1.737990 2.460232 1.105868 -7.528996 -3.100258 3.503381 -1.630064 4.714566 2.539376 3.579684 4.238467 2.770250 0.414874 -1.744041 -0.538334 0.122430 -3.700030 -1.436401 -1.165177 1.928993 -2.735127 4.887251 2.057933 0.201664 1.753292 -0.357107 2.317475 -3.250731 6.938984 3.545866 -3.824581 0.841068 1.447858 5.911975 -4.165527 -3.408752 -PE-benchmarks/eulerian-path-and-circuit.cpp__main = -1.497849 -15.785769 26.617273 20.690142 1.344093 11.881013 6.836421 -13.414487 16.785595 11.036331 -8.506256 0.052359 -15.291834 -3.613558 2.169141 8.800004 -18.585829 -15.074059 0.026802 -5.682275 -4.368695 -16.267059 5.911729 6.395226 7.839050 13.341556 -8.175630 -0.009916 -9.903085 -20.220242 16.617186 -4.290639 11.080560 18.727209 1.446777 -35.314227 23.497545 14.304109 -4.752090 -16.464824 1.904569 -0.788144 -7.053487 -0.285230 -3.791513 9.110681 4.193522 15.457475 4.690216 8.857735 5.042622 -9.984245 9.415606 24.689159 -0.809548 17.579963 14.335131 1.592102 3.828501 8.102082 5.828734 2.644293 10.620753 18.061962 -2.517822 -1.986887 3.633650 -9.806536 -21.436779 15.974864 -1.746578 -6.423122 -9.040389 -5.924543 -5.926702 0.689180 -10.852415 14.844982 28.904701 -13.783293 23.204579 9.818620 14.422946 -5.243009 3.839898 -2.591254 13.713032 8.863911 -12.276563 -2.085853 -17.158718 -18.390780 2.894797 -5.737931 -11.426717 -12.212243 8.486050 -17.365843 -19.409786 9.275412 2.396637 -2.177374 -12.157258 -0.941387 14.203800 2.339356 -6.337146 -17.126104 -8.717598 6.956839 -13.862670 -3.531926 -5.399242 7.175335 -7.245913 2.265386 -19.345841 -4.084925 5.902428 -13.478020 -1.024884 15.775537 -6.787894 7.253523 -3.205723 0.211126 -3.740442 13.047752 4.723432 8.375314 11.502426 1.862229 -8.159582 5.824427 8.802699 8.898149 -0.934917 -5.606173 2.840491 7.806223 -7.870315 7.866877 -6.683174 4.579688 15.460270 -4.195439 -15.661167 -10.479303 -7.539638 -27.217296 8.118948 -14.621065 -4.558242 11.357484 17.423586 9.846440 8.282553 18.707551 -23.656170 9.605845 -7.397254 4.800432 -0.945790 4.958573 7.026031 -8.851839 -14.045702 9.042927 10.492305 2.326169 7.530614 -13.107457 -1.630976 -13.799711 -14.975303 10.089610 1.352783 -2.518521 6.732238 9.369526 22.019610 -14.687552 3.153220 8.700093 0.600293 1.182982 3.098394 -23.016794 10.974252 -0.568274 7.752828 17.618623 -0.237573 -7.235352 3.883911 -3.781653 -0.284515 -12.923064 7.500110 -13.175998 -0.817579 -10.858964 4.662157 -8.673549 -9.211973 -4.580389 -0.388032 20.655224 -8.440592 -14.952291 19.732271 -5.868878 7.085650 -18.773168 15.550328 -10.827172 12.854148 -2.614050 -9.034234 -2.443878 -6.202595 0.516094 -2.545293 4.443678 -4.405074 9.730119 19.643305 4.874096 2.505464 5.721592 10.282862 -4.173124 2.159087 -9.907906 10.895638 -2.214993 -7.088714 -2.469081 -9.406778 8.584886 -7.200433 -4.395287 13.753008 16.953889 -0.239443 9.600156 6.763267 5.892978 -12.889877 6.735382 6.746325 12.589205 -8.432464 -4.233994 -0.569350 3.004624 -6.516012 10.118656 -20.665309 -21.484453 -19.659977 -20.422967 -14.041674 -2.822513 11.598878 -0.763198 2.668688 -15.697134 -11.107591 13.336324 -8.463405 8.573340 11.963590 11.768912 15.991902 18.599104 -7.369415 -4.975354 1.730127 4.093705 -11.724679 -2.431243 -14.008342 15.212293 -6.535037 11.017002 14.889216 -2.543720 3.956864 -8.383916 18.236387 -13.006295 22.526140 11.355459 -9.251081 7.259417 2.566962 17.854974 0.763278 -12.505911 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -2.895204 -8.701194 9.569796 9.142456 1.545421 6.038827 1.873311 -4.698169 6.244175 6.978777 -3.571197 4.759067 -5.409996 -1.292732 1.265797 3.638642 -4.488798 -5.997314 1.075153 -1.809526 -1.265967 -6.141257 -1.946572 5.360295 2.233742 3.211914 -3.112552 1.096490 -8.518223 -11.112381 1.954027 -1.213430 4.809279 2.979266 2.482506 -13.137058 7.287797 8.623944 -0.878071 -11.039406 0.000191 -2.504879 -2.446250 1.356762 0.073973 4.669245 2.568359 2.341315 0.300907 3.159986 1.706778 -1.430502 4.765323 8.704876 0.514068 8.619751 7.714377 -0.538036 1.774288 1.505250 2.803803 -0.200254 5.888307 6.181440 -2.710656 -2.484026 -0.282616 -0.037131 -7.801309 3.934076 1.528132 -4.181868 -4.207977 -2.836006 -2.913849 -1.072110 -3.169659 3.372039 11.921184 -3.309995 11.542342 5.093806 6.621697 -1.877825 6.297621 -1.471855 8.257563 3.741230 -6.359387 -0.362488 -6.424584 -6.261929 0.823866 3.317772 -5.310211 0.635713 3.337816 -6.029176 -8.907409 5.125795 -0.076715 -1.216901 -6.956934 -0.132778 5.662220 3.124846 -1.989988 -7.953873 -5.127830 4.065144 -4.990935 -4.915362 -2.981125 0.756649 -1.906527 1.805669 -6.887951 -1.986953 5.858093 -5.467214 -2.816428 6.360312 -2.012203 4.016083 -2.244641 0.100120 -0.140055 3.066252 2.565767 3.609478 4.567988 -2.775240 -8.914279 3.558677 1.906139 0.792927 -2.849786 -1.246543 2.456139 3.387318 0.725511 5.057561 -3.244012 5.897629 6.973827 -0.015219 -4.609232 -7.166717 -1.168588 -6.796341 3.051356 -5.421200 -1.499385 1.484559 6.774549 0.635538 2.001426 6.198803 -7.786646 5.622207 -1.082351 2.891453 1.333430 0.800186 2.468520 -4.107308 -6.011604 4.938788 6.961702 0.899283 2.672487 -3.648065 0.069909 -3.049266 -6.823545 5.517357 0.384343 0.948679 7.195406 3.558530 15.514185 -6.021069 0.967796 0.177829 -0.568093 1.209948 -1.179290 -9.094233 4.147596 0.671954 4.512014 9.836110 -0.803234 -3.881793 1.358139 0.564925 0.322445 -5.563392 7.109423 -6.663756 -0.286041 -2.343365 -0.743797 -3.692835 -4.292372 -4.080858 1.599212 9.929572 -2.748982 -8.895764 6.085064 -4.845924 2.530940 -11.126666 6.013795 -4.719083 3.825609 -3.339568 -2.872923 -1.220933 0.412495 -0.970833 -0.247553 4.505087 -4.619846 4.823319 7.105531 1.105663 0.709514 2.683197 2.489167 -1.266723 -0.800517 -4.629821 5.634896 -0.005955 -0.082841 -2.568503 -3.938037 5.453905 -0.496146 -2.790372 2.220987 6.789551 -2.264237 0.580522 4.649519 0.417531 -4.948436 4.323287 1.473990 5.100889 -3.687733 -1.465342 -2.900823 -0.030403 -0.063115 4.473575 -8.949682 -5.598551 -4.114763 -7.949437 -4.684747 2.258989 4.710490 1.999543 0.851466 -9.160281 -5.492013 6.744503 -2.122553 4.706424 4.276847 5.508939 6.288866 4.923476 0.404560 -2.681165 -3.388374 -0.796002 -5.216059 -2.804790 -1.685572 4.362603 -2.954639 6.247504 4.580234 -0.141706 2.386467 -2.689570 5.901053 -4.764535 9.986093 5.477761 -4.884271 1.595899 2.275601 8.747220 -6.196830 -5.708937 -PE-benchmarks/tug-of-war.cpp__main = -1.236865 -2.924692 3.198342 2.811149 0.483239 1.829766 0.870552 -1.216897 1.738948 1.770390 -0.964493 1.835076 -1.904655 -0.199596 -0.533853 0.883051 -1.428703 -2.179079 0.148784 -0.717898 -0.574741 -1.756161 -0.705421 1.916034 0.807574 0.419142 -1.287934 -0.035564 -3.519871 -2.759365 0.523100 -0.424024 1.499651 -0.139952 0.556045 -4.603749 1.971816 2.831655 -0.400329 -3.378514 0.314618 -1.165475 -0.508720 0.112251 -0.457962 0.926734 0.820520 0.366021 0.193215 0.713357 0.591407 -0.012570 1.191823 3.972489 -0.147408 2.763951 2.673286 0.043948 0.427287 0.375260 0.897162 -0.207813 1.678695 1.619057 -0.855120 -0.882794 -0.281024 -0.260477 -2.112198 1.155094 0.388013 -0.986253 -1.169114 -0.709772 -1.813664 -0.684286 -0.449373 1.005554 3.868835 -1.529187 3.598169 1.392959 2.203808 -0.137600 2.041968 -0.118544 2.410705 1.105747 -1.792239 -0.041879 -2.058855 -0.686932 0.016357 1.318402 -1.699423 -0.797502 1.442165 -2.376980 -3.110040 1.722093 -0.044735 -0.414572 -1.806137 -0.153119 1.420982 1.078053 -1.202086 -2.625990 -1.782850 1.390784 -1.048279 -1.464518 -0.279332 -0.120989 -0.268694 -0.050390 -2.315523 -0.339914 1.800100 -1.783371 -1.104118 2.337569 -0.741388 1.510940 -0.542842 0.251183 -0.278511 1.164845 0.835361 0.986815 0.597075 -0.833940 -3.162516 0.332968 0.569586 0.890942 -1.319383 -0.304207 0.627060 1.038239 0.412975 1.343830 -0.844402 1.831707 1.675861 -0.382785 -1.454547 -2.393208 -0.340690 -2.336196 0.534211 -1.671536 -1.002857 0.547407 2.127176 0.592640 0.648717 2.475827 -1.727390 1.942876 -0.090097 0.296768 0.588815 -0.487945 0.910867 -1.348168 -2.219908 1.447357 1.947747 0.716461 0.722571 -0.934288 -0.002474 -1.159840 -1.832749 1.245153 0.500922 0.051958 2.594182 1.368685 4.299686 -2.507553 0.390279 0.011185 -0.465814 0.447851 -0.574808 -2.922249 1.085824 0.508279 0.604767 3.044678 -0.190097 -1.477920 0.854080 -0.070237 0.415675 -1.907503 2.100421 -2.013110 -0.349859 -1.096246 -0.207932 -1.238700 -1.163613 -1.591811 -0.294175 3.273505 -1.934433 -2.695166 1.716873 -0.351573 0.902412 -3.773962 2.175511 -1.454548 2.100396 -0.791358 -0.755273 -0.217874 0.737540 -0.490499 0.267332 1.489824 -1.906368 1.543874 2.331041 0.498722 0.589020 0.801480 1.209670 -0.390245 -0.161578 -1.564766 1.798158 -0.054331 -0.990327 -0.479555 -1.229016 1.549103 0.035541 -0.224810 0.692114 2.090665 -0.402328 0.311602 1.961568 0.391812 -1.501414 0.967791 0.113489 1.958971 -1.323665 -0.392037 -1.130439 0.352482 0.118314 1.233160 -3.050430 -2.119203 -1.930508 -2.749974 -0.875514 0.439799 0.923994 0.554484 0.207042 -3.344265 -1.861357 2.003034 -0.943316 1.791555 1.635253 1.724143 2.259287 1.697541 -0.105523 -0.792468 -0.569612 0.096693 -1.369437 -0.692671 -0.871588 1.282570 -1.365464 1.897168 1.631076 -0.130266 0.969746 -0.004795 1.423874 -1.641992 3.649674 1.842673 -1.920434 0.795740 1.283996 2.998139 -1.626462 -1.842116 -PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -7.029824 -11.429342 10.696844 9.538889 2.931355 8.227182 3.139386 -4.246982 5.581038 8.101175 -3.349500 7.325610 -6.599316 -2.715032 -1.040882 1.315129 -3.016589 -7.810938 0.822103 -2.755667 -1.628197 -6.573903 -5.402517 8.952191 1.712561 -0.387835 -4.261638 1.032745 -14.900923 -11.608179 0.111327 -0.497620 5.376729 -2.323446 2.554756 -16.679009 6.980906 12.117326 -0.770692 -12.631310 0.477974 -4.323563 -2.556435 2.949865 -1.894433 3.741775 3.064438 -1.371072 -0.696068 1.734430 3.188770 -0.275999 4.419306 14.157916 0.791707 11.513381 10.714302 -0.124620 2.226192 2.222615 2.674575 -1.410793 6.817393 5.559454 -4.161373 -2.046090 0.447909 1.140076 -7.515139 3.174097 2.076315 -6.214375 -2.250521 -2.962444 -7.251077 -3.254738 2.937908 1.362682 13.612856 -3.914378 14.832361 5.757527 8.731599 -0.229904 9.586662 -1.184659 10.509538 3.684499 -7.407074 0.036479 -8.187495 -2.155985 -0.432551 8.397571 -7.182722 1.285668 5.128724 -9.026733 -12.093945 6.953769 -1.372320 -2.045598 -8.826837 -0.689828 5.542213 3.021559 -3.641270 -10.162442 -8.287733 7.251438 -6.148255 -5.970998 -1.960481 -1.143499 -0.337142 0.963512 -7.289282 -0.894883 8.387500 -6.119318 -6.402000 9.454221 -2.976495 6.443036 -2.074608 1.069429 -0.699718 1.783533 2.757853 2.852383 1.777425 -5.049233 -14.044278 -0.372129 0.368016 1.510805 -5.249012 -2.142687 3.940136 4.089276 3.179613 7.513638 -3.980581 8.294989 6.062620 -0.128252 -3.806870 -9.621050 -0.898555 -7.783144 1.518665 -5.308495 -4.926060 0.720702 7.747754 1.157732 0.850743 8.046300 -4.982330 8.123874 0.050367 0.840889 1.271516 -4.145342 2.845890 -5.349659 -8.503358 5.233138 8.264576 3.124314 2.632895 -3.293574 -0.774962 -2.907494 -8.400210 4.154466 0.423279 1.705591 10.615005 5.733659 20.601965 -10.582288 1.757382 -1.782175 -2.225071 2.183239 -3.160694 -10.090304 2.455092 2.837499 1.911898 13.683489 -0.756758 -5.705128 2.144531 0.790127 1.521727 -7.887645 10.155617 -7.884372 -0.347783 -2.694731 -3.621816 -5.387216 -4.740040 -7.227326 -1.418540 12.176482 -6.884563 -12.305230 6.170727 -1.106121 2.838913 -15.350969 7.088625 -5.282160 7.936637 -3.884589 -2.929607 -1.395647 4.396083 -1.173754 2.518999 5.261206 -9.341208 7.325884 8.281928 1.205607 3.383055 2.701416 3.212542 -1.688588 -2.575235 -7.211929 6.684870 0.297331 -3.686900 -2.950904 -4.883811 7.127023 1.587177 -1.636618 -0.997956 8.653064 -3.806894 -1.855968 8.872865 -0.761485 -4.889648 3.345711 0.934852 6.777431 -4.565873 -1.870309 -5.143870 0.369868 2.385999 3.898562 -11.648601 -5.349349 -5.638484 -11.247926 -2.963015 3.527750 3.283880 4.321587 1.153080 -13.831829 -6.786942 8.618824 -3.054476 7.841805 5.670953 7.663984 8.444045 5.480785 1.574905 -2.980096 -3.253241 -0.661139 -6.671235 -3.613640 -1.852847 4.527825 -4.166857 9.050972 4.047332 0.736778 4.430466 0.694576 3.111794 -6.457929 13.094993 6.981846 -7.193707 1.646734 3.847695 11.100978 -9.442481 -6.727879 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.006338 -2.461612 3.477586 3.051418 0.007451 1.345683 0.637004 -1.506477 1.937363 0.869198 -1.170567 1.530521 -1.887298 0.259743 -0.729632 1.326784 -2.231642 -2.100332 -0.001249 -0.639876 -0.505248 -1.614307 0.232694 1.373346 1.223798 1.602338 -1.264573 -0.078412 -2.778299 -2.257031 1.203322 -0.559771 1.444787 1.217905 0.607693 -3.726761 2.187843 2.400252 -0.524094 -3.270514 0.488217 -1.088389 -0.688799 -0.811714 -0.050356 1.068137 0.606457 1.592586 0.500806 0.946443 -0.095258 0.051647 1.060322 2.997339 -0.345585 2.257013 2.278523 0.159053 0.427034 0.122875 0.976538 0.191900 1.378934 1.671009 -0.670907 -1.314913 -0.622952 -0.855796 -2.026760 1.500874 0.395188 -0.365544 -1.778113 -0.662523 -1.407859 -0.092133 -1.781855 1.778240 3.691833 -1.777678 2.885084 1.147038 1.844348 -0.544863 1.327530 -0.061844 1.916093 1.263575 -1.332549 -0.324907 -2.466721 -1.346474 0.268093 -0.223269 -1.573355 -1.571432 1.358687 -2.514785 -2.718496 1.154417 0.448982 -0.589396 -0.919174 0.286758 1.321326 1.184645 -0.900631 -2.116843 -0.751496 0.825041 -0.601472 -1.251719 -0.317316 0.518871 -0.524253 -0.215209 -2.631726 -0.235960 1.257370 -1.555944 -0.020611 1.841558 -0.647283 0.877727 -0.642547 0.015413 -0.325819 1.737004 0.742999 1.019752 1.131018 -0.244818 -1.688906 1.389869 1.126380 1.191518 -1.268092 0.061493 0.238043 0.973046 -0.189973 0.419452 -0.898502 1.163870 1.320825 -0.853593 -1.863130 -2.050863 -0.727322 -2.295252 0.675105 -1.734044 -0.638673 0.844630 2.083732 0.939027 1.105749 2.487619 -2.339157 1.342023 -0.085999 0.693658 0.776942 0.564925 0.927434 -1.189459 -1.938056 1.646238 1.267094 0.411524 0.644836 -0.729214 0.241477 -1.581530 -1.476946 1.609325 0.678641 -0.142740 2.258768 1.199436 2.037371 -1.681993 0.227808 0.612963 -0.358483 0.173055 -0.031227 -2.909127 1.603936 0.097577 1.323672 2.462927 -0.160218 -1.089023 0.892024 -0.098445 0.306355 -1.576942 1.295131 -1.834195 -0.559004 -1.355109 0.801372 -0.797923 -1.128167 -1.166622 -0.229240 3.094481 -1.485533 -2.127791 1.806668 -0.864342 1.143345 -3.084473 1.518044 -1.471475 1.660445 -0.109268 -0.530914 0.008924 -0.557071 -0.943084 -0.431450 1.426099 -1.030614 1.039569 2.097527 0.645046 -0.087478 0.775156 1.265282 -0.561803 0.637806 -1.204708 1.640351 -0.181883 -0.733972 -0.142972 -1.033218 0.884361 -0.622913 -0.236941 1.952558 1.650523 0.690844 1.233060 1.027621 1.107427 -1.703959 1.063721 0.104467 1.528497 -1.246858 -0.457710 -0.537400 0.365254 -0.402459 1.448366 -2.794522 -2.963546 -2.079581 -2.599497 -0.841920 -0.737096 1.259767 -0.104892 -0.039114 -2.623546 -1.949733 1.415476 -0.839601 1.605990 1.668408 1.213436 1.940555 1.736187 -0.863421 -0.479574 -0.109833 0.631482 -0.832284 -0.498212 -1.364751 1.556310 -1.177882 1.142847 2.487338 -0.588941 0.814648 -1.008240 2.342313 -1.430485 3.422548 1.556053 -2.014399 0.885928 1.106159 2.559705 -0.358622 -1.826429 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -0.684838 -1.502248 2.319535 1.933689 -0.309473 1.074166 0.074613 -1.315811 1.293937 -0.013446 -0.694007 0.809868 -1.289009 0.021503 -0.249619 0.229299 -1.860111 -1.314719 -0.404402 -0.876422 -0.450099 -1.201462 -0.307738 1.248639 0.426298 1.257994 -0.954538 0.678607 -2.015252 -1.348848 1.057014 -0.141883 1.062575 0.925577 0.589514 -3.871290 1.602610 1.823249 -0.409057 -2.153818 0.336114 -1.210744 -0.525801 -0.589215 -0.598722 0.685372 0.010601 0.549883 0.317959 -0.065169 -0.173018 0.180377 0.085545 2.410137 -0.449149 1.645727 1.688386 -0.130408 -0.010652 0.193221 0.345919 0.293973 1.120740 1.177026 -1.032215 -1.018400 0.221024 -0.654428 -1.557741 1.204295 0.453278 -0.740648 -0.793706 -0.786963 -1.636808 -0.389064 0.605755 1.107010 2.413906 -1.078323 2.026083 0.503618 1.138528 0.029660 1.501870 -0.062959 2.243506 0.629672 -0.903797 0.013640 -1.903871 -0.934686 0.306945 0.577165 -1.100114 -0.647035 0.711932 -2.504164 -1.880007 0.661200 0.260857 -0.594416 -1.511534 -0.119348 1.050395 0.497896 -0.396204 -1.588357 -0.791799 1.204939 -0.908789 -0.696408 -0.365070 0.410644 -0.279758 -0.574538 -1.887954 0.283300 0.994520 -0.533071 -0.365638 1.741121 -0.918077 0.240945 -0.315636 0.145612 -0.615807 1.307058 -0.184872 0.310367 0.306340 -0.504775 -1.200957 0.086904 0.346459 1.170366 -0.979240 -0.840632 0.214638 0.572754 -0.541232 0.214507 -0.757193 0.976363 1.084674 -0.425433 -0.931506 -1.475946 -0.824936 -2.279442 0.125640 -1.038062 -0.839880 0.895488 1.506107 1.141293 0.792554 1.753765 -1.258337 1.098521 -0.164485 0.007332 0.775677 0.127071 0.730598 -0.926032 -1.393692 1.124559 0.249264 0.812811 0.468693 -0.431462 -0.164644 -1.082029 -1.564567 1.293934 0.562327 0.704650 1.702285 1.380341 2.358087 -1.855468 0.660210 0.399598 -0.490689 0.176068 -0.070686 -1.534171 0.616766 0.599243 0.409535 2.290083 -0.194286 -0.876872 -0.070311 0.310802 0.511672 -1.445499 0.932779 -1.146227 0.189783 -1.130967 -0.142761 -0.874604 -0.963642 -1.220603 -0.797843 2.244048 -1.539411 -2.387785 1.867915 -0.428710 1.501229 -2.771942 0.421967 -1.062009 2.024221 -0.558666 -0.250684 -0.033831 -0.591549 -0.947193 0.669643 0.785279 -1.182187 0.618507 1.504647 0.675693 0.450632 0.122728 0.949358 -0.349598 0.457518 -1.331059 1.355087 -0.134039 -0.506812 -0.012514 -0.789490 0.586653 -0.116667 0.235173 0.973230 1.593375 0.730432 0.608518 1.434783 0.592069 -0.943547 0.482193 0.049068 0.632738 -0.693394 -0.573132 -0.243367 0.670665 0.045757 0.510950 -2.082133 -2.113490 -1.858212 -2.369895 -0.316141 -0.165264 0.576987 0.544296 0.084449 -2.167136 -1.085839 1.456197 -0.646860 2.584171 0.872803 0.947560 1.358933 1.553066 -0.725950 -0.425120 0.323936 0.476005 -0.834251 -0.153434 -1.673578 1.717662 -0.707680 1.093835 1.771984 -0.579981 0.927661 -0.329381 1.757732 -1.111142 2.476448 0.999790 -1.584175 0.590292 0.687957 1.547657 0.088881 -1.202299 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -2.007965 -4.387509 4.114749 4.092036 1.456780 3.006683 1.611812 -1.671101 2.311944 4.441379 -1.373210 2.534663 -2.875934 -1.031395 0.646117 1.467929 -0.999115 -2.890078 0.682429 -0.733033 -0.398029 -2.640706 -1.405189 2.829810 1.101426 0.039010 -1.285386 -0.224480 -4.960603 -5.189783 -0.255621 -0.413453 2.211251 0.541125 0.962498 -4.546768 2.849301 4.467552 -0.337114 -4.759966 0.117006 -1.212456 -0.834033 1.333945 0.346245 2.059210 1.585339 -0.098177 -0.025636 1.503689 1.695033 -0.875343 2.657078 3.868894 0.461481 4.315959 3.689130 -0.187716 1.241928 0.888769 1.161378 -0.635248 2.828408 2.294773 -1.304504 -0.755374 -0.301882 0.487041 -3.148161 1.281509 0.706119 -2.039289 -1.656927 -1.184679 -1.488860 -0.952368 -1.344662 0.732955 5.241222 -1.384063 5.699413 2.904113 3.005658 -0.762388 3.330501 -0.586411 3.547551 1.489152 -2.981803 0.125456 -2.900956 -2.201488 -0.037869 2.658433 -2.533516 0.836685 1.741841 -2.378518 -4.593125 2.792967 -0.519317 -0.573963 -3.231367 0.181103 2.122861 1.407266 -1.251038 -3.961189 -2.820917 2.027618 -2.327879 -2.437657 -1.175679 -0.456961 -0.682651 1.062130 -2.836351 -0.913705 2.880924 -2.904724 -2.212585 3.230531 -0.490709 2.656173 -0.826497 0.177943 0.061688 0.728161 1.519719 1.778544 1.751324 -1.708906 -5.422613 0.876193 0.788988 -0.312202 -1.364261 -0.158684 1.290673 1.574518 1.061825 3.343088 -1.183933 3.541116 2.961893 -0.096635 -1.698321 -3.477911 -0.098141 -2.441840 1.448209 -2.125552 -0.868239 -0.403368 3.030310 -0.311336 0.501224 2.795162 -2.491956 2.449146 -0.306867 1.019856 0.414938 -0.667004 1.209534 -1.955160 -2.972006 2.007903 4.125879 0.469264 1.205737 -1.379818 -0.011276 -1.098015 -2.976487 1.547692 -0.366792 -0.140915 3.879872 1.763399 7.832772 -2.890881 0.553474 -0.377379 -0.249611 0.799516 -0.909695 -4.297396 1.584883 0.460471 1.278735 4.629590 -0.275404 -1.999228 1.100145 -0.060640 0.168253 -2.775192 3.802062 -3.200071 -0.255933 -0.950413 -0.637768 -1.816308 -2.244216 -1.853740 0.994740 4.571797 -0.858861 -3.724498 2.042472 -1.205668 0.225244 -5.135972 3.575188 -2.079313 1.499598 -1.775023 -1.667248 -0.594868 1.861808 -0.030000 -0.233643 2.114355 -2.864604 2.872787 3.059120 0.359890 0.683807 1.413754 1.087240 -0.457577 -1.035406 -2.348890 2.582680 0.142008 -0.345312 -1.374358 -1.844837 2.988796 0.421986 -1.540017 0.079231 3.118931 -2.073371 -0.600049 2.487644 -0.118347 -2.060493 1.864413 0.772214 2.946613 -1.841765 -0.508085 -1.908933 -0.604301 0.377533 2.170511 -4.309531 -1.592902 -0.724695 -3.317688 -1.978564 1.923437 1.893276 1.535248 0.510220 -4.725094 -2.654151 2.976156 -1.092815 1.099987 1.963231 2.777100 3.136371 1.968301 1.088534 -1.294286 -1.995681 -0.561853 -2.556576 -1.717070 0.130355 1.484457 -1.578648 3.405426 1.211652 0.290213 1.191577 -0.656664 1.956099 -2.496449 4.551378 2.585424 -2.132329 0.867378 1.764910 4.420380 -4.291862 -2.513288 -PE-benchmarks/quicksort-for-linked-list.cpp__main = -1.141976 -2.866546 5.029143 4.028792 -0.183531 1.968319 0.628785 -3.072377 4.372074 0.378450 -0.759601 0.956448 -3.126443 0.934307 -0.570340 1.729797 -4.133691 -3.543728 -0.404235 -2.237276 -1.672569 -3.306765 0.757657 1.268532 1.181883 1.065187 -2.457704 0.321355 -3.738983 -1.897102 3.571338 -1.424255 2.323580 0.957630 0.663097 -9.695212 3.761307 2.232112 -1.059583 -4.103919 0.358653 -2.791726 0.443943 -2.056463 -0.929842 0.744836 0.430300 1.734444 2.311651 0.241923 0.301501 0.319268 -0.849966 6.693809 -2.738152 2.787039 1.622851 -0.342739 -0.930949 0.831186 1.082962 0.620579 2.898763 3.167066 -2.108470 -2.316061 0.211236 -2.061599 -4.387176 3.334752 0.579306 -0.256878 -2.625494 -0.595069 -3.232367 -1.292580 -0.390553 3.238766 5.933493 -3.048049 3.757174 0.859355 3.064080 0.169994 2.685675 -0.122655 4.996197 1.112661 -2.863829 -0.500908 -4.110965 -1.207443 0.082656 -0.030867 -0.887622 -2.972874 1.050455 -4.030407 -4.045960 1.484360 0.689813 0.434973 -4.349350 -0.794923 3.330215 1.570953 -1.908348 -4.210253 -1.899525 1.432921 -1.328902 -1.372225 0.449620 -0.977098 -1.077994 -2.536168 -4.215483 -1.319134 1.037267 -2.342120 -1.438061 3.784851 -3.016907 0.425350 -0.360888 0.667543 -1.238313 3.309111 -0.246054 1.465957 1.203590 -1.072663 -3.654366 -0.209274 0.894042 4.393007 -0.746257 -0.750989 -0.870496 1.043559 -2.649817 -0.426405 -0.645420 1.625421 2.789856 -1.262349 -2.690450 -1.786036 0.229193 -5.177729 1.039787 -3.121049 -0.799289 1.890499 3.397766 3.055715 2.486561 4.599524 -3.395724 3.312675 -1.052508 0.371794 2.664234 0.643977 2.182259 -1.968815 -2.828141 1.742939 0.919872 0.918025 1.038693 -2.121446 -0.130509 -3.146398 -2.895567 1.308018 1.811495 0.648780 2.681403 1.682986 3.669119 -5.683574 1.624473 1.904307 -0.078058 0.704307 -0.212874 -3.949614 2.107071 0.793091 0.042283 3.253186 -0.642287 -3.070298 0.222603 0.201271 1.527137 -2.634354 0.304566 -2.582417 -0.473623 -2.793808 0.237053 -2.070019 -1.811476 -1.868489 -1.133314 4.413400 -2.631466 -4.541989 4.765631 -1.446921 3.490102 -6.005575 2.303257 -2.487794 3.559116 -1.913638 -0.257366 -0.682431 0.410995 -1.470198 1.199501 2.016974 -1.639391 1.573547 4.463474 1.482179 1.586465 0.755826 2.882433 0.248910 1.040530 -1.538481 3.514183 -0.603623 -1.232011 0.433868 -1.947962 1.598897 -0.512177 0.897214 3.008726 3.921936 1.316924 2.865722 3.144957 1.669814 -2.228949 1.360409 -0.375890 1.950094 -1.449656 -0.338100 -0.187928 1.299748 -1.302670 1.627033 -4.226893 -5.707175 -3.690451 -4.478159 -0.689276 -0.173856 0.358896 0.098949 0.554398 -4.281253 -1.467030 1.527077 -1.610161 4.786574 1.686335 1.785678 2.922879 4.217686 -2.841524 -1.726527 1.000833 0.129864 -1.691259 -0.425508 -3.791996 3.257156 -2.665420 2.306031 3.806349 -1.225095 0.463498 -0.346059 3.701333 -2.109836 5.379596 2.483048 -2.147221 2.367800 1.650393 4.728058 1.518426 -2.551369 -PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -0.691626 -1.311213 2.165828 1.969329 0.554893 1.049355 0.584322 -1.526975 2.094435 1.538062 -0.042529 0.424300 -1.396486 0.387980 0.081975 1.221578 -1.139341 -1.544954 -0.281071 -1.220453 -0.871068 -1.501911 0.263672 0.126489 0.573484 -0.641888 -1.128519 -0.124196 -1.881784 -1.698753 1.126575 -0.447408 0.960939 -0.558311 0.153153 -4.027655 1.806400 1.283494 -0.554208 -1.905039 0.161480 -1.066863 0.151993 -0.024559 0.138284 0.486232 0.087113 0.272203 1.049846 0.538283 1.082057 0.362154 -0.045585 3.316127 -1.315439 1.553970 0.706401 -0.051066 -0.392545 0.933538 0.442254 0.387715 1.369475 1.313374 -0.656860 -0.990260 0.064372 -0.414828 -1.990856 1.467169 0.212256 -0.841184 -1.077564 -0.401348 -0.992303 -0.704639 -1.090046 1.029155 2.590040 -1.248675 1.732959 0.620579 1.277330 0.138187 1.414567 -0.281123 2.348035 0.434671 -1.278403 -0.302899 -1.423516 -0.615896 0.036273 0.452952 -0.619111 -1.066524 0.603938 -0.848794 -1.957312 1.007653 0.289276 0.235727 -2.524325 -0.408041 1.440056 0.647185 -0.832019 -2.083898 -1.424953 0.930230 -0.625391 -0.826522 0.101463 -1.263920 -0.517886 -0.661679 -1.788369 -0.618959 0.573366 -1.060281 -1.592040 1.792392 -1.217377 0.171352 -0.176629 0.429870 -0.575388 1.047942 -0.185471 1.222214 0.720950 -0.400132 -3.132817 0.103238 0.514385 1.236041 0.022614 0.170303 -0.581198 0.502538 -1.205394 0.883015 -0.340211 1.221409 1.785158 -0.351669 -1.154745 -0.763820 0.748342 -1.854066 0.765639 -1.355953 -0.254021 -0.008976 1.580192 1.167997 1.042267 1.925460 -1.615854 1.543351 -0.552451 0.254688 1.152277 -0.151478 0.914345 -0.912672 -1.405515 0.552392 1.199271 0.115199 0.520549 -0.828545 -0.086725 -1.242511 -1.225384 0.229229 0.436506 -0.134512 1.305545 0.867718 3.064244 -2.763154 0.785509 0.799967 -0.192032 0.482596 -0.438887 -1.914113 0.641449 0.494147 0.099698 1.820329 -0.282698 -1.455569 0.099795 -0.076447 0.639177 -1.040331 0.493669 -1.326306 -0.402756 -0.922865 -0.173857 -0.990008 -0.822145 -0.585314 -0.092686 2.007279 -0.546795 -2.087276 2.183770 -1.093086 0.546434 -2.762828 2.077921 -1.049274 0.691499 -1.306087 -0.122530 -0.626486 1.404071 -0.691618 0.714091 0.927440 -1.088188 1.093643 2.543822 0.504420 0.809701 0.161578 1.250531 -0.029481 0.151795 -0.917162 2.031420 -0.366356 -0.351663 -0.225447 -0.933317 1.007209 -0.302312 0.069906 0.833915 1.649874 -0.273562 0.571840 1.505668 0.765858 -0.966674 1.246063 0.070742 0.871113 -0.678444 0.004827 -0.016295 -0.061721 -0.566233 0.839743 -1.896611 -1.540906 -0.881835 -1.812394 -0.155628 0.760722 0.150893 0.088989 0.137154 -2.149290 -0.858399 0.895448 -0.747756 1.109731 0.735522 0.985390 1.286016 1.952961 -0.762777 -0.448765 -0.436257 -0.636879 -0.909731 -0.977331 -0.751927 1.486079 -1.042369 1.159346 1.068094 -0.115822 0.389582 0.083049 1.167770 -0.938496 2.273421 1.060710 -0.226656 1.075006 1.130440 2.884407 -0.415843 -1.059030 -PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.976014 -0.931270 1.009113 0.830547 0.420009 0.609852 0.586880 -0.468395 1.012128 1.046002 0.023285 0.343935 -0.819909 0.046959 -0.068260 0.486487 -0.248227 -0.884097 0.067933 -0.569611 -0.449697 -0.778581 -0.136807 0.136316 0.190312 -0.711440 -0.506900 -0.319548 -1.278454 -0.936241 0.364526 -0.291029 0.535375 -0.862275 -0.093378 -2.602595 0.677018 0.785269 -0.303197 -1.105250 0.130073 -0.654223 0.327795 0.244860 -0.081597 0.103019 0.300870 -0.203044 0.408574 0.259887 0.763869 0.093221 0.024094 2.248451 -0.647009 0.903029 0.541337 -0.038627 -0.353252 0.484797 0.253284 -0.114744 0.816820 0.598762 -0.432725 -0.309582 0.014916 -0.143950 -1.130269 0.462851 0.021377 -0.469254 -0.360042 -0.152869 -0.605018 -0.644299 -0.430808 0.217937 1.430843 -0.676733 1.251897 0.382960 0.790953 0.248809 0.844484 -0.019942 1.052085 0.152167 -0.807070 -0.094696 -0.443260 0.133318 -0.124343 0.734485 -0.256613 -0.579930 0.518845 -0.090841 -1.115926 0.735581 -0.068458 0.254322 -1.476729 -0.323457 0.635681 0.566898 -0.801764 -1.277359 -1.155590 0.524322 -0.308357 -0.464540 0.226646 -0.872622 -0.249857 -0.545613 -0.799664 -0.384044 0.486823 -0.778138 -1.137658 1.076810 -0.658681 0.457824 0.009524 0.332539 -0.250563 0.575207 0.125495 0.516477 0.107518 -0.371744 -2.219969 -0.405816 0.152143 0.854548 -0.049187 0.016611 -0.162858 0.235993 -0.272107 0.515589 -0.072887 0.793085 1.161660 -0.092892 -0.436887 -0.561535 0.643866 -0.967439 0.306001 -0.721951 -0.022023 0.022222 0.812615 0.432996 0.360484 1.283061 -0.665812 1.002443 -0.297793 -0.180402 0.498202 -0.242647 0.567367 -0.507340 -0.808569 0.134029 0.942100 0.221191 0.248644 -0.475827 -0.078710 -0.562609 -0.607182 -0.059711 0.311516 -0.166775 0.726182 0.454701 2.130481 -1.711865 0.318041 0.130537 -0.154140 0.328154 -0.372903 -1.076560 0.204147 0.387140 -0.423407 0.894837 -0.109134 -0.927075 0.225248 -0.207955 0.296671 -0.629584 0.484628 -0.757449 -0.290929 -0.400226 -0.338466 -0.666511 -0.438273 -0.479822 -0.111546 1.083920 -0.439066 -1.071576 0.793754 -0.209547 0.177449 -1.653428 1.509596 -0.552013 0.545196 -0.940015 -0.129625 -0.379266 1.335769 -0.031499 0.391378 0.524000 -0.747621 0.731115 1.505539 0.253856 0.588241 0.199999 0.766029 0.067007 -0.225878 -0.463510 0.965194 -0.206537 -0.373096 -0.015011 -0.530702 0.736945 0.161786 0.105993 0.282609 1.005791 -0.553188 0.184758 1.081680 0.196094 -0.398062 0.528541 0.011022 0.933488 -0.350158 0.106928 -0.358091 0.155022 -0.121610 0.368011 -1.067641 -0.687640 -0.316807 -1.001293 -0.006075 0.789454 -0.108739 0.161755 0.245147 -1.418540 -0.387089 0.595236 -0.499506 0.728832 0.368544 0.665403 0.841897 0.940090 -0.226631 -0.451235 -0.204822 -0.409080 -0.586988 -0.473056 -0.141524 0.443467 -0.801914 0.790745 0.223139 0.081982 0.124715 0.471539 0.403886 -0.562580 1.344470 0.669677 -0.122062 0.677903 0.753580 1.770901 -0.631237 -0.515422 -PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.764276 -1.345578 2.651614 2.253689 0.173936 1.117848 0.006295 -1.897656 1.963792 0.992262 -0.213375 0.738867 -1.315526 0.417645 -0.201496 1.261279 -1.566226 -1.543967 -0.587787 -1.396301 -0.854207 -1.417764 0.337075 0.586649 0.721630 0.103790 -1.522321 0.404444 -1.830268 -2.445987 1.019758 -0.410083 1.192110 -0.419701 0.268539 -4.343992 2.256185 1.766031 -0.544844 -2.011572 0.348576 -0.986412 -0.156646 -0.234266 -0.683369 0.626421 -0.138808 -0.390909 1.041989 0.469625 0.932999 0.689898 0.199014 2.934684 -1.056172 1.650763 0.804764 -0.171573 -0.489928 0.507012 0.493210 0.624349 1.401920 1.262284 -0.640537 -1.356079 0.047287 -0.278073 -2.142314 1.564876 -0.200189 -1.104941 -0.985083 -0.648398 -1.529213 -0.593597 0.631355 1.110686 2.658659 -1.160057 1.692435 0.350747 0.883060 0.012727 1.335559 -0.317539 2.407925 0.663485 -1.038846 -0.206664 -0.803984 -0.644316 0.260053 1.010376 -1.007241 -0.743121 0.886267 -2.031003 -2.074205 0.906152 0.592826 -0.118282 -2.751223 -0.715238 1.362813 0.668259 -0.675929 -1.974984 -1.027586 1.047846 -0.259015 -0.977198 -0.323290 -0.778288 -0.468275 -0.274956 -2.047095 -0.369084 0.595186 -0.950352 -1.239045 1.709445 -1.098158 0.035170 -0.360980 0.665690 -0.699465 1.265544 -0.468865 1.324206 0.199527 -0.051261 -1.953559 -0.341762 0.367443 0.857347 -0.501450 -0.353288 -0.626087 0.477236 -1.179729 0.732377 -0.798563 1.046490 2.139664 -0.129654 -1.294470 -0.716518 -0.196389 -2.678665 0.411290 -1.470839 -0.693860 0.818076 1.605701 0.945089 1.124692 2.323534 -1.500576 1.269201 -0.289278 -0.121285 1.407943 -0.539826 0.900820 -0.997696 -1.679315 1.122700 0.790352 0.477164 0.603387 -0.607654 -0.115716 -1.239246 -1.398114 0.972583 0.565570 0.413568 1.336301 0.979015 3.102279 -2.194679 0.760870 0.796627 -0.313592 0.531375 -0.427228 -1.975164 0.442035 0.529473 0.369051 2.291041 -0.292324 -1.298002 0.161224 0.005037 0.766059 -1.420251 0.926095 -1.434577 0.300482 -1.093103 -0.808337 -0.822097 -0.675822 -0.879752 -0.581079 2.224469 -1.351524 -2.512376 2.561366 -0.669402 1.182866 -3.075099 1.124416 -1.136625 1.753568 -1.004834 -0.001715 -0.306324 0.256128 -0.934010 0.795363 0.983933 -0.955618 0.813750 2.457481 0.504266 0.487798 -0.060886 1.234681 -0.151268 0.806166 -1.007773 2.193409 -0.157501 -0.479926 -0.186687 -0.900809 0.472511 -0.662970 0.100768 0.631116 1.659699 0.125054 0.557129 1.550769 1.042441 -1.113285 1.459456 0.066866 0.660129 -0.691100 -0.274029 0.260334 0.727822 -0.409532 0.829331 -2.062513 -2.076149 -1.940339 -2.478873 -0.223027 0.439266 0.442632 -0.082337 -0.128630 -1.780626 -1.168622 1.803655 -0.674816 2.526341 0.881369 1.155154 1.327928 1.955227 -0.927042 -0.346524 -0.499320 -0.323570 -0.654662 -0.701370 -1.209355 1.713331 -0.806334 0.945802 1.575281 -0.355254 0.706674 0.137494 0.808119 -1.043627 2.444314 0.977384 -0.574508 1.356849 0.633231 2.209100 -0.193516 -1.225616 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = -10.537481 -15.902678 18.845590 18.436635 2.286915 4.830237 7.531837 -2.770299 10.267247 5.575051 -4.960658 13.968882 -5.336154 -1.241963 2.017943 13.223021 -14.318715 -6.776913 2.600681 0.356196 0.309514 -10.230073 -17.056199 11.569560 2.744805 6.656142 -2.435646 -0.067445 -15.600491 -20.996791 -0.030649 -1.816442 4.739163 -22.603502 2.098798 -48.545570 16.180984 16.563742 -0.532041 -28.358267 0.336181 -2.312423 -2.628757 0.115296 -9.323839 5.479266 4.285073 0.605459 -0.415879 4.027758 -0.390984 -2.939349 13.225699 26.827090 -3.580191 24.192748 25.382269 -0.436722 1.917095 0.474020 3.090765 -1.260230 5.523634 11.188306 -3.353948 -1.924074 -0.668652 -1.221135 -12.150937 2.983966 9.748123 -10.463920 -18.122265 -1.702622 -10.693272 0.312371 -6.401591 13.322963 16.461371 -12.480946 25.721586 5.202384 12.380330 -2.852096 4.520953 -0.906661 5.584421 4.028421 -10.992830 -1.500218 -11.662455 -18.003922 9.708971 1.348597 -12.912481 -8.125605 2.364070 -1.821616 -14.568145 3.729925 -0.695061 -0.865962 -7.824807 -7.619299 5.803329 4.466829 -0.991453 -11.175604 -18.204093 18.037318 -5.629179 -4.432930 -2.635479 2.005373 -3.408895 -10.737348 -16.594315 -2.508454 22.353190 -5.951072 -10.434493 4.717704 -10.462849 11.680512 -2.521423 -0.887557 0.246657 11.980682 11.399426 2.203088 3.229039 -6.269213 -16.850812 11.925917 2.337125 13.274718 -3.417949 6.271336 9.908634 2.963570 8.470082 9.834548 -6.867414 5.021599 9.319305 -1.440362 -5.026986 -14.898579 -12.975644 -13.956867 8.393925 -5.180750 -10.789682 0.841974 6.457883 -0.409625 2.170608 7.971706 -22.825068 10.119707 -1.013517 3.803274 0.390667 -1.903583 2.224814 -3.650819 -4.761854 4.979254 6.726897 -0.306195 2.880581 -3.627638 1.107853 -4.230181 -7.257909 8.541359 -0.008193 0.551914 13.368048 2.180135 58.189326 -1.858852 -0.215300 0.443597 0.400760 0.227231 0.398504 -8.720548 2.911616 -0.649201 5.998178 24.637921 0.055030 -4.529008 1.769132 1.135364 -0.846512 -4.293030 22.663497 -6.162922 -4.867030 -1.982376 -7.931012 -3.149497 -4.583557 -19.196810 -1.277873 16.406077 -19.554612 -18.725659 3.106582 -15.378893 2.897697 -20.858417 37.199197 -4.963936 14.648796 -6.679897 -2.318793 -0.567198 -6.685394 -0.654024 5.099391 4.349047 -12.391957 4.928663 9.677018 1.343556 -0.702017 3.478475 1.525580 -0.745294 -1.020066 -2.979232 3.201678 -0.418586 0.339515 -1.954256 -3.173234 10.481173 -0.075057 -3.712460 -1.384692 10.488931 -1.453617 2.844370 12.889242 -6.594704 -5.428427 12.278717 1.711633 6.752683 -2.945081 -1.641389 -3.670972 -0.318568 6.961979 5.037488 -7.874134 -6.701537 -15.831973 -18.696253 -4.944428 1.042742 14.170126 1.610869 1.598225 -22.913780 -13.221720 34.039145 -1.251481 12.312685 4.328610 4.271453 5.651082 3.095783 -1.139344 -3.640849 -2.131000 0.630810 -5.528890 -2.498404 -1.751073 3.072968 -7.633134 5.187284 5.042679 -0.801234 0.809901 -2.911760 -3.235790 -3.904834 14.552910 5.566750 -5.844572 0.858255 0.634337 13.592917 -21.411019 -5.484460 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -11.478463 -14.282513 16.009734 16.304789 4.011806 4.402784 7.824033 -2.314888 10.010014 7.624943 -3.698393 12.572726 -4.675386 -1.517593 2.709393 13.148373 -11.337335 -5.869153 2.769522 0.512490 0.636297 -10.151501 -16.659643 9.767300 1.844112 3.332024 -1.736737 -0.057062 -14.799440 -21.568028 -1.178961 -1.594247 3.671919 -25.159638 0.932188 -44.895148 15.348673 15.355998 -0.286790 -26.007316 -0.069938 -1.643118 -2.060780 2.115790 -7.904291 5.186234 3.770996 -1.687192 -0.079706 3.859383 2.240712 -3.148364 12.521854 24.555614 -4.595540 23.352847 23.027481 -0.306917 1.616462 1.534577 2.189455 -1.079630 5.263711 11.031849 -3.316838 -0.684470 0.124424 0.426601 -11.741035 2.385381 8.932124 -10.840654 -17.064196 -0.733169 -8.897089 0.237896 -5.271276 10.766681 14.509617 -10.203857 24.447212 4.883247 11.499779 -2.995861 4.033588 -1.458053 5.018314 2.862021 -11.093381 -2.056316 -9.806559 -16.555706 9.035796 3.476847 -11.553009 -4.699473 1.269442 1.530496 -13.219708 2.977435 -1.448581 0.066352 -9.007044 -7.060782 5.438073 3.342309 -0.149582 -10.979505 -18.629526 17.769974 -5.809079 -3.936963 -2.587863 -0.546002 -3.542731 -9.961398 -14.492738 -3.612365 21.185197 -5.783455 -12.636201 3.667164 -10.512406 11.143618 -1.837867 -0.512415 0.717560 9.499142 10.640166 2.675187 3.210616 -6.610697 -19.014694 10.739839 1.650895 11.736203 -2.059037 7.289256 9.218021 2.000597 8.089447 10.817947 -6.577713 4.855683 9.533233 -0.953780 -3.496979 -12.764372 -10.860363 -12.176004 8.891329 -4.238268 -9.961256 -2.012117 5.370730 -1.908715 1.747656 7.091746 -21.714829 9.939375 -1.026505 3.459380 0.328530 -3.287564 1.816941 -2.975867 -3.946830 3.654046 7.437377 -1.583169 2.471150 -3.301584 0.543092 -3.344451 -6.403434 6.850944 -1.572995 0.307146 11.947514 0.871532 59.531008 -1.797166 0.484223 0.506315 1.281319 0.657600 -0.166543 -7.302394 1.981470 -0.604903 5.404798 23.296530 0.259333 -4.593124 0.862710 1.058798 -0.623374 -3.800967 22.569239 -5.399972 -4.444862 -0.748076 -9.354550 -2.403834 -4.371470 -17.484115 0.358628 14.198231 -16.485601 -18.016529 2.305243 -15.421153 0.931605 -19.381376 37.348063 -4.252735 12.213114 -7.763333 -1.561674 -1.217193 -3.784689 0.494638 5.482522 3.452899 -12.191034 5.935695 9.213495 0.766068 0.007773 2.940720 0.580582 0.058104 -2.330818 -2.182969 2.823142 0.058112 0.944212 -2.166578 -2.963818 10.775220 0.455031 -4.451523 -3.508075 10.589858 -4.050632 1.432935 12.357631 -7.165115 -4.181658 12.584799 2.127367 5.833083 -1.854669 -1.067219 -3.187991 -1.993590 6.837275 4.706833 -6.021976 -3.740578 -11.825022 -17.542180 -4.165970 2.750386 13.440498 2.173625 2.178075 -21.866704 -11.697676 33.483433 -0.703117 11.013088 2.700388 3.934080 3.963358 2.260096 -0.131777 -3.304420 -3.692498 -0.931899 -5.766431 -3.492126 0.688532 1.978439 -6.945526 5.134857 1.806086 -0.047136 -0.286133 -2.249640 -5.838779 -3.009316 12.304751 4.776383 -2.561823 1.137780 -0.765234 13.899408 -22.545975 -4.104064 -PE-benchmarks/rabin-karp-algorithm.cpp__main = -1.174448 -3.647934 3.687869 3.382511 0.574149 2.033125 1.312125 -1.469985 2.062516 2.178882 -1.358765 2.345975 -2.070558 -0.268880 -0.644277 1.117621 -1.628876 -2.391851 0.166874 -0.706526 -0.482973 -2.101827 -1.068103 2.388879 1.005810 0.396274 -1.403741 -0.067894 -4.160391 -3.529815 0.415510 -0.460861 1.629614 -0.497283 0.806655 -5.208466 2.348753 3.568918 -0.466288 -4.271455 0.403291 -1.166034 -0.856079 0.503238 -0.437233 1.282624 1.002193 0.780368 0.039796 1.060627 0.708933 -0.021887 1.783367 4.689016 0.026140 3.543085 3.574873 0.113682 0.723773 0.414562 1.072457 -0.225828 1.832338 1.988963 -0.768260 -1.006982 -0.506140 -0.049206 -2.532269 1.218793 0.428930 -1.233965 -1.600970 -0.902917 -2.132326 -0.584061 -0.853352 1.074340 4.633944 -1.607029 4.493726 2.003879 2.609967 -0.248158 2.197643 -0.174508 2.555769 1.386446 -2.137262 0.070127 -2.548424 -1.149606 0.170130 1.368072 -2.180129 -1.264176 1.676969 -2.928906 -3.614231 2.185926 -0.110027 -0.683774 -1.571705 -0.160892 1.578019 1.214029 -1.286140 -3.048953 -2.093041 1.608566 -1.143342 -1.847361 -0.341381 0.040522 -0.231129 0.156238 -2.689157 -0.317973 2.387630 -2.016025 -1.070613 2.515024 -0.773068 2.016698 -0.724418 0.214121 -0.205491 1.245471 1.207199 1.235401 0.780445 -1.106243 -3.697608 0.744046 0.681772 0.731720 -1.499843 -0.275201 0.956870 1.266898 0.931606 1.907059 -0.938882 2.274493 1.909230 -0.301968 -1.682651 -3.179733 -0.577962 -2.502221 0.900660 -1.772537 -1.446510 0.388245 2.435190 0.384664 0.718500 2.597485 -2.052541 1.942286 -0.074862 0.471203 0.559966 -0.717497 1.018354 -1.459370 -2.526000 1.831357 2.520558 0.987604 0.924960 -0.971450 -0.032218 -1.278699 -2.069681 1.392438 0.647886 0.141541 3.103591 1.548776 5.155745 -2.276133 0.284092 -0.041590 -0.589485 0.524168 -0.656789 -3.403141 1.403408 0.506941 1.054975 3.690315 -0.121524 -1.460201 1.191606 -0.101252 0.322447 -2.124624 2.708351 -2.309644 -0.542041 -1.140311 -0.147440 -1.394457 -1.285332 -2.020029 -0.101303 3.786955 -2.009344 -3.031773 1.857608 -0.684156 0.837778 -4.179397 3.018682 -1.637901 2.433968 -0.826363 -0.859014 -0.044139 0.656937 -0.517674 0.242869 1.715619 -2.092108 1.766264 2.532767 0.526428 0.369480 0.933930 1.251907 -0.670792 -0.143450 -1.971760 1.915033 -0.038761 -1.020924 -0.639541 -1.324518 1.919235 -0.078525 -0.331978 0.668393 2.293169 -0.534875 0.185432 2.189678 0.264956 -1.785433 1.309875 0.104228 2.252550 -1.554675 -0.477198 -1.432478 0.324677 0.235490 1.527258 -3.461266 -2.172487 -2.457475 -3.177116 -1.100282 0.390241 1.233144 0.660330 0.174498 -4.021196 -2.359340 2.616042 -1.033217 1.460901 2.038341 2.013643 2.740413 1.780509 0.214176 -0.728164 -0.889083 0.146262 -1.571996 -0.890847 -0.794920 1.419155 -1.584073 2.118669 1.825936 -0.161040 1.135462 -0.030118 1.748954 -1.837287 4.274829 2.073793 -2.304553 0.787500 1.466716 3.605392 -2.433557 -2.109356 -PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -8.717022 -14.230569 9.932273 9.746954 4.401648 9.228590 5.310162 -3.777675 6.395909 10.516211 -4.509973 8.697954 -6.466159 -4.436509 0.392328 0.500166 -1.120544 -8.070928 1.905471 -1.873196 -0.560350 -8.005272 -8.881901 11.032099 0.833817 -2.689359 -3.454249 1.305619 -17.598054 -13.571417 -1.277635 -0.325167 5.218027 -4.731758 3.734119 -17.837511 6.937621 14.413459 -0.265454 -15.482558 -0.399448 -4.012311 -3.129169 6.311089 -0.988817 5.246961 4.427801 -1.348312 -2.338328 2.308764 4.226074 -1.707991 5.598129 15.331818 2.121390 14.426121 13.909811 -0.263212 3.580951 2.728950 2.789204 -2.502185 7.673635 6.900163 -4.780494 -0.677851 0.583122 3.179737 -9.125648 1.944683 2.775150 -7.617174 -2.590507 -3.483610 -7.583504 -3.462625 3.451753 -0.627445 15.391456 -2.365099 18.990640 8.869316 11.193503 -0.257248 10.867181 -1.715594 11.070939 3.912683 -9.876896 1.107943 -10.424981 -3.795438 -0.700347 10.488076 -8.133403 3.260370 4.806354 -8.813887 -13.068596 9.004316 -3.232025 -1.971591 -9.207530 -0.407252 6.319306 3.112220 -3.421675 -11.724442 -10.751814 8.358603 -7.973862 -7.243438 -2.243344 -1.305234 -0.227980 1.415672 -6.753030 -1.629690 11.519895 -6.968101 -7.497169 9.852186 -4.158228 9.265006 -2.491874 0.491446 0.201284 0.347025 4.787460 2.608153 2.644041 -8.777448 -18.596711 -0.283858 -0.820560 1.238995 -4.946757 -2.497133 6.469511 4.483488 6.542082 10.535461 -3.519953 10.412612 6.861058 1.261937 -3.047254 -12.776641 -0.397693 -6.689077 3.244996 -4.737066 -5.674230 -1.179222 8.119918 -0.520076 -0.189963 7.683224 -5.171877 8.612443 -0.392079 1.372735 0.050815 -5.400706 2.850919 -5.352914 -8.560815 5.763525 11.361018 3.904571 3.809510 -4.132002 -1.387609 -2.202297 -9.867875 3.428612 0.029346 2.977085 12.008777 5.559452 25.382751 -10.059597 1.232983 -3.359110 -1.946378 2.726681 -3.815937 -10.437330 3.015958 2.879320 2.502943 15.564129 -0.458358 -5.735063 2.497633 1.179678 0.849336 -8.324169 13.180404 -8.536961 -0.625542 -1.586081 -4.722479 -6.642553 -5.304753 -8.933146 0.467694 12.812176 -4.333490 -14.030388 5.107465 -2.400903 2.045560 -16.352203 9.907610 -5.471115 8.549491 -5.384948 -3.280775 -1.310424 5.937814 0.794837 2.860770 5.570434 -10.447606 8.653013 7.957224 0.689452 3.114462 3.571223 2.071315 -2.080291 -4.705333 -8.491893 5.835892 0.643038 -2.776803 -3.670989 -5.167830 10.207056 2.851685 -2.905474 -3.501907 10.123524 -6.512680 -3.969163 10.176775 -3.954934 -4.946960 3.495721 1.325916 8.106949 -4.648915 -1.771704 -7.489612 -0.499986 3.836091 3.905055 -11.918874 -3.053779 -4.515387 -12.375010 -4.027133 5.489287 3.422690 6.523036 1.978180 -16.415652 -7.103754 10.193160 -2.890451 6.649956 5.668187 8.943404 9.905095 4.572575 4.026459 -3.764229 -4.626923 -1.777948 -8.733397 -4.370810 -0.112928 3.754845 -4.776366 10.841857 2.131162 1.519822 4.112227 1.412035 3.467270 -6.608493 14.265869 7.730787 -7.810334 0.594953 3.367271 13.718434 -14.699506 -6.876542 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = -0.825758 -2.535540 4.215679 3.309539 -0.369538 1.561437 0.751290 -2.356127 3.683524 -0.117941 -0.699517 0.762750 -2.782369 0.863971 -0.682039 1.315440 -3.639556 -3.039174 -0.205324 -1.737190 -1.415515 -2.846779 0.669223 1.156891 1.014435 1.244093 -1.967369 0.014955 -3.155408 -0.891718 3.292459 -1.297873 1.958094 1.174555 0.563451 -8.427751 2.902133 1.694432 -0.857944 -3.473330 0.277530 -2.475801 0.584621 -2.111779 -0.768293 0.450500 0.521308 1.990708 1.957169 0.066933 -0.076812 0.084193 -0.846098 5.882112 -2.382169 2.216561 1.409625 -0.215220 -0.762218 0.505054 0.972054 0.364472 2.367207 2.705682 -1.845116 -1.844481 0.030622 -2.077986 -3.674121 2.747787 0.610527 0.267905 -2.453768 -0.407594 -2.752805 -1.107284 -1.029903 2.969778 5.121269 -2.845033 3.256569 0.728990 2.760380 0.125240 2.144466 0.038612 3.987845 0.906775 -2.491992 -0.325951 -3.767237 -0.844337 -0.009768 -0.492889 -0.610133 -3.044208 0.891999 -3.279845 -3.396785 1.186194 0.494753 0.475722 -3.172488 -0.544980 2.696974 1.448592 -1.861890 -3.589374 -1.547589 0.982355 -0.958640 -1.051428 0.633385 -0.545820 -0.891782 -2.658736 -3.571962 -1.193641 0.834952 -2.143650 -0.861124 3.179631 -2.625394 0.555994 -0.215227 0.411443 -0.948110 3.098886 0.082603 0.949607 1.053843 -0.978466 -2.871322 -0.106315 0.810853 4.416816 -0.660828 -0.598245 -0.615386 0.880276 -2.082488 -0.837214 -0.247156 1.160812 2.067861 -1.275421 -2.294833 -1.575537 0.237226 -4.335623 0.871852 -2.666481 -0.445349 1.751663 2.814692 2.767444 2.043642 3.969349 -2.922892 2.846825 -0.871695 0.312856 2.153592 1.043985 1.892742 -1.626857 -2.360342 1.396786 0.589099 0.817713 0.817524 -1.859607 -0.078399 -2.726348 -2.270496 1.009756 1.724412 0.371573 2.276729 1.332994 2.431214 -4.878186 1.308021 1.560080 -0.003740 0.542586 -0.035742 -3.385559 2.096590 0.544922 -0.232704 2.331778 -0.567552 -2.531850 0.407458 0.042312 1.262070 -2.191573 -0.013496 -2.119633 -0.723689 -2.588681 0.671274 -1.702887 -1.525246 -1.575986 -0.942189 3.698972 -2.349536 -3.474715 3.766603 -0.998811 3.116980 -4.872476 2.086808 -2.056519 3.045162 -1.528171 -0.322576 -0.459705 0.303410 -1.040520 0.753011 1.729262 -1.242414 1.151431 3.708933 1.265847 1.280846 0.898312 2.552349 0.318040 0.832471 -1.140185 2.752091 -0.487707 -1.163453 0.633174 -1.637083 1.403329 -0.317539 0.900326 3.135588 3.391765 1.411801 2.773940 2.583845 1.340146 -1.842525 0.817995 -0.446005 1.851961 -1.288877 -0.183430 -0.344893 1.219116 -1.188311 1.346357 -3.532868 -5.211289 -3.091851 -3.597286 -0.613408 -0.475554 0.213735 0.029781 0.528073 -3.661830 -1.182911 0.883815 -1.461126 3.887154 1.413708 1.394846 2.551558 3.534921 -2.588099 -1.581977 1.354130 0.407086 -1.333641 -0.027625 -3.398996 2.526553 -2.530186 1.901718 3.389317 -1.122350 0.250973 -0.336117 3.599161 -1.792541 4.688678 2.151811 -2.097995 2.017060 1.568502 3.962684 1.732397 -2.151007 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.360765 -0.859438 1.348374 1.224363 0.266893 0.588412 0.523943 -0.885112 1.335381 0.851458 0.083296 0.218363 -0.977165 0.405371 -0.163663 0.778672 -0.750616 -0.981015 -0.245896 -0.795064 -0.686782 -0.956881 0.225715 0.005678 0.387931 -0.410405 -0.731597 -0.288877 -1.214532 -0.666615 0.852128 -0.285629 0.576763 -0.422606 0.052486 -2.769469 0.960796 0.704411 -0.388415 -1.158325 0.124171 -0.753023 0.249407 -0.175670 0.088499 0.115675 0.017997 0.362860 0.734842 0.267917 0.672679 0.298444 -0.101664 2.525679 -0.990620 0.920888 0.435014 0.079591 -0.270498 0.567913 0.301469 0.253927 0.773617 0.781927 -0.345327 -0.611772 -0.082410 -0.445927 -1.190192 0.961312 0.166129 -0.338959 -0.825629 -0.246013 -0.668975 -0.517121 -1.368370 0.770601 1.670241 -1.046779 1.021068 0.360910 0.821430 0.184336 0.846203 -0.098647 1.377603 0.223618 -0.753704 -0.106750 -0.890402 -0.107378 -0.008611 0.031000 -0.363785 -1.241984 0.465613 -0.354038 -1.254838 0.662737 0.189302 0.220553 -1.342343 -0.270588 0.763181 0.436548 -0.751370 -1.367215 -0.979562 0.532428 -0.140655 -0.457615 0.312099 -0.821162 -0.253961 -0.738766 -1.162968 -0.373139 0.284828 -0.715880 -0.965620 1.184761 -0.775246 0.145667 -0.030124 0.234622 -0.380735 0.865949 -0.030105 0.727317 0.327947 -0.141733 -2.091322 0.075800 0.416074 1.132923 0.062189 0.218095 -0.435699 0.312337 -0.752686 0.406020 -0.019091 0.669383 0.994298 -0.345859 -0.769202 -0.485067 0.598018 -1.147006 0.451584 -0.874164 -0.079141 -0.005347 0.967208 0.963283 0.655679 1.252564 -1.001826 1.000200 -0.338897 0.078305 0.725693 0.083758 0.605221 -0.544545 -0.948673 0.238987 0.666846 0.127709 0.281228 -0.508262 -0.068274 -0.805669 -0.567630 -0.026559 0.426640 -0.317569 0.849786 0.577176 1.684173 -1.911912 0.528799 0.524269 -0.171126 0.316567 -0.289816 -1.246226 0.496955 0.311263 -0.230827 0.909953 -0.217592 -0.888384 0.235818 -0.214758 0.460199 -0.610843 0.108035 -0.784058 -0.533953 -0.775415 0.172777 -0.588948 -0.442692 -0.323138 -0.125071 1.265446 -0.569319 -1.023701 1.317057 -0.496026 0.274181 -1.589913 1.621061 -0.575487 0.390444 -0.826214 -0.112656 -0.365969 1.132885 -0.406874 0.403429 0.601135 -0.705488 0.544944 1.736078 0.321563 0.540873 0.163339 0.953453 0.022102 0.098160 -0.557419 1.307048 -0.249412 -0.369704 -0.000776 -0.594990 0.625354 -0.190696 0.216122 0.873026 1.043305 -0.015951 0.478694 0.954356 0.553453 -0.558754 0.666918 -0.037203 0.604360 -0.508023 0.127921 -0.048884 -0.008915 -0.473867 0.484047 -1.164472 -1.077837 -0.577681 -0.924723 0.010928 0.382172 -0.058058 -0.039853 0.028440 -1.401448 -0.580877 0.388863 -0.607162 0.387441 0.476870 0.549102 0.876163 1.337322 -0.583386 -0.215445 -0.041069 -0.330426 -0.438802 -0.513390 -0.520709 0.875937 -0.821214 0.655028 0.733389 -0.081754 0.277059 0.207696 0.919134 -0.591549 1.547889 0.668400 -0.168791 0.752983 1.017333 1.958661 -0.011488 -0.638925 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -0.916158 -1.859899 3.836397 3.311654 0.470120 1.584104 0.391110 -2.878200 2.899820 1.613885 -0.145531 0.974522 -1.990933 0.659278 -0.347410 1.898031 -2.050498 -2.229104 -0.941956 -2.165178 -1.188207 -2.076087 0.687819 0.644131 1.153119 -0.114612 -2.221386 0.215639 -2.849048 -3.477216 1.667451 -0.469952 1.714307 -0.759900 0.179913 -6.322165 3.289464 2.703209 -0.821995 -2.812730 0.632888 -1.436548 -0.344824 -0.188811 -0.586061 0.836944 -0.370815 -0.416245 1.549193 0.747748 1.621123 1.209798 0.243692 4.339703 -1.817953 2.390492 1.050941 -0.109511 -0.712685 0.922445 0.641566 1.047521 2.013165 1.810459 -0.878600 -1.990569 0.063237 -0.379520 -3.178892 2.236540 -0.106251 -1.661792 -1.464733 -0.790198 -1.968705 -0.778196 0.583031 1.522494 3.758492 -1.621224 2.443994 0.451825 1.157669 -0.156790 1.836554 -0.502200 3.357234 0.883834 -1.370065 -0.570881 -1.615196 -0.861915 0.346754 1.439115 -1.511181 -1.144083 1.337826 -2.339336 -2.982038 1.154018 0.893599 -0.296101 -4.032613 -0.882009 1.804379 0.929506 -0.902354 -2.902772 -1.666927 1.576812 -0.362406 -1.458105 -0.492190 -1.357316 -0.753338 -0.620502 -2.904871 -0.474705 0.751077 -1.307488 -2.136867 2.387607 -1.740436 -0.060706 -0.485402 0.989681 -1.053201 1.547876 -0.770860 1.932781 0.731270 -0.139738 -3.146936 -0.461447 0.650781 1.683867 -0.667296 -0.325006 -1.078672 0.685664 -1.714133 1.204958 -0.985760 1.532528 3.123146 -0.358555 -1.765908 -0.888855 0.208128 -3.625843 0.717619 -2.049164 -0.822839 0.679279 2.290158 1.306652 1.631834 3.374815 -2.281214 1.979590 -0.273717 -0.122313 2.040353 -0.682269 1.257812 -1.418695 -2.571390 1.454909 1.168405 0.543800 0.692513 -0.574890 -0.220547 -1.851672 -2.032156 1.081483 0.583717 0.326543 1.940181 1.469417 4.749415 -3.451765 1.170449 1.214623 -0.605575 0.803726 -0.605216 -2.880448 0.629958 0.770932 0.473855 3.501310 -0.396626 -1.955769 0.278209 -0.007758 1.041350 -1.964078 1.365937 -2.094863 0.124650 -1.583122 -1.183082 -1.049498 -1.054544 -1.163220 -0.669241 3.145871 -1.482794 -3.725249 3.663936 -1.189907 1.251965 -4.582321 2.055947 -1.597998 1.875796 -1.571914 0.039785 -0.498013 0.823380 -1.560300 1.153914 1.367884 -1.511404 1.436671 3.946643 0.689128 0.663604 -0.209171 1.752316 -0.260451 1.134220 -1.585553 3.379395 -0.252502 -0.805817 -0.323497 -1.289548 0.764268 -1.090604 0.046685 1.108016 2.430469 0.140625 0.706280 2.223916 1.680186 -1.548128 2.374223 0.191676 0.840939 -0.860324 -0.322352 0.510745 0.694021 -0.614861 1.393603 -2.914225 -2.888227 -2.122830 -3.778823 0.028432 0.593591 0.681639 -0.142751 -0.242916 -2.883144 -1.757816 2.169886 -0.968797 3.387639 1.335160 1.649751 1.779451 2.779721 -1.414516 -0.185970 -0.758541 -0.405428 -0.897623 -1.398142 -1.448518 2.465041 -1.092042 1.342301 2.177176 -0.382143 1.110311 -0.080910 1.341911 -1.464391 3.602456 1.293642 -0.633964 2.004847 0.891829 3.517196 -0.351189 -1.666535 -PE-benchmarks/m-coloring-problem.cpp__main = -0.143623 -1.479288 1.863728 1.657755 0.131326 0.697080 0.561793 -0.596831 1.090873 0.724596 -0.645728 0.879085 -1.099017 0.148076 -0.227061 0.842449 -1.087465 -1.224753 0.188445 -0.204612 -0.266687 -0.927452 0.144596 0.627863 0.680675 0.732567 -0.646676 -0.282066 -1.518605 -1.255391 0.637755 -0.402233 0.846823 0.587077 0.243541 -2.307182 1.086291 1.228475 -0.283570 -1.907257 0.256126 -0.556843 -0.191971 -0.362209 0.084120 0.611840 0.565270 0.915713 0.247326 0.669082 0.019908 -0.149231 0.631859 1.810087 -0.176086 1.212914 1.314299 0.055015 0.164170 0.017469 0.607527 -0.076409 0.819512 0.976427 -0.357778 -0.608049 -0.432641 -0.529728 -1.246513 0.711948 0.229599 -0.053546 -1.042948 -0.320603 -0.563279 -0.109720 -1.308797 0.944912 2.157744 -1.030771 1.742525 0.708831 1.160309 -0.281826 0.658993 0.027196 0.843774 0.689354 -0.857078 -0.162814 -1.252207 -0.774048 0.068156 -0.046299 -0.726867 -0.867780 0.752791 -0.865285 -1.454493 0.743910 0.132789 -0.136002 -0.587456 0.161814 0.733066 0.875404 -0.640444 -1.237626 -0.623427 0.281125 -0.298374 -0.698600 -0.116378 0.207040 -0.431598 -0.234313 -1.421739 -0.292602 0.726407 -1.063068 -0.076760 0.976419 -0.449574 0.682701 -0.328309 -0.011584 -0.123132 1.051616 0.665520 0.569172 0.787388 -0.273753 -1.313957 0.709407 0.664354 0.957216 -0.613419 0.088925 0.136230 0.502515 0.003111 0.209213 -0.271552 0.704680 0.999007 -0.459133 -1.072011 -1.197189 -0.162599 -1.182812 0.487063 -1.034448 0.023493 0.478857 1.145734 0.384666 0.569651 1.583161 -1.425659 0.876932 -0.140192 0.355550 0.336679 0.500619 0.539826 -0.641633 -1.020387 0.815240 0.949155 0.147182 0.411953 -0.520784 0.206098 -0.877347 -0.791134 0.836121 0.397834 -0.245800 1.147851 0.524658 1.323872 -0.939121 0.002264 0.283985 -0.099446 0.074468 -0.000509 -1.683232 0.988767 -0.031741 0.579168 1.169956 -0.061970 -0.726529 0.617163 -0.169607 0.071381 -0.780674 0.751131 -1.028256 -0.380607 -0.710663 0.482393 -0.487032 -0.627687 -0.540684 0.132346 1.709284 -0.536397 -1.080198 0.727052 -0.532783 0.500078 -1.752992 1.270486 -0.814238 0.771023 -0.242971 -0.382421 -0.042576 -0.036796 -0.282165 -0.369288 0.826419 -0.469967 0.563229 1.269600 0.341096 -0.100238 0.554764 0.726369 -0.170164 0.204367 -0.493260 0.819611 -0.147711 -0.305537 -0.054216 -0.564853 0.672401 -0.223015 -0.230093 1.142490 0.937548 0.152458 0.765289 0.572569 0.538262 -0.951061 0.569561 0.088323 1.210732 -0.694126 -0.153930 -0.472939 0.243145 -0.265088 0.832837 -1.484630 -1.570233 -0.872333 -1.393682 -0.593827 -0.112852 0.661258 -0.095464 0.075838 -1.479820 -0.975032 0.636927 -0.484057 0.762786 0.877695 0.643973 1.134861 0.889381 -0.445296 -0.457054 -0.096190 0.244303 -0.521412 -0.249430 -0.561670 0.633008 -0.824360 0.627961 1.209311 -0.267046 0.281314 -0.492759 1.431236 -0.763232 1.976656 0.927821 -1.030529 0.539918 0.683397 1.648508 -0.382194 -0.985280 -PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -0.886597 -1.513700 1.322568 1.157881 0.231367 0.965452 0.447744 -0.409328 0.927556 0.679420 -0.779256 0.744828 -0.987156 -0.408422 0.164930 0.028762 -0.680358 -1.095373 0.356048 -0.125162 -0.041528 -1.052869 -0.658742 1.023300 0.128930 0.596661 -0.302319 0.329894 -1.771030 -1.222438 0.358020 -0.203457 0.697616 0.614111 0.434933 -2.240317 0.870356 1.389689 -0.092865 -1.868811 -0.030619 -0.749257 -0.268886 0.075451 0.127734 0.756152 0.642778 0.505027 -0.145631 0.176644 0.019031 -0.568068 0.228447 1.375769 0.055098 1.403527 1.561156 -0.097702 0.236436 0.183771 0.339180 -0.332490 0.957921 1.065161 -0.936954 -0.166298 0.150507 -0.196085 -1.190480 0.431603 0.463941 -0.461363 -0.524822 -0.463312 -0.718813 -0.306640 0.014500 0.326554 1.953753 -0.470573 2.177678 0.850360 1.428572 -0.142229 1.215713 -0.107434 1.404932 0.470703 -1.240384 0.054048 -1.583586 -0.882990 -0.060987 0.789284 -0.660288 0.443971 0.413424 -1.101283 -1.389275 0.694239 -0.323727 -0.140510 -1.042689 0.327662 0.889545 0.546952 -0.339657 -1.339141 -0.924074 0.682673 -1.122847 -0.609867 -0.298872 0.273336 -0.348667 -0.227672 -1.058481 -0.249772 1.131566 -0.883078 -0.408881 1.192461 -0.681636 0.828650 -0.245542 -0.131353 -0.028275 0.620084 0.545789 0.057707 0.614384 -0.969282 -1.816951 0.269231 0.120269 0.750354 -0.671206 -0.368278 0.738514 0.434521 0.253550 0.409781 -0.512026 0.946301 0.909964 -0.201721 -0.521728 -1.412212 -0.226859 -1.066789 0.418384 -0.738081 -0.187383 0.143363 1.087286 0.327047 0.220724 1.346666 -1.049120 0.995194 -0.221869 0.271398 0.079487 0.238630 0.487033 -0.680709 -0.856744 0.744183 0.952419 0.257571 0.499277 -0.654434 -0.037217 -0.627803 -1.223526 0.914996 0.107152 0.378774 1.319384 0.664684 2.207457 -1.285028 0.236789 -0.140087 -0.039648 0.132064 -0.061237 -1.253882 0.719292 0.237603 0.496636 1.478561 -0.039241 -0.691070 0.036671 0.201074 0.096286 -1.030396 1.096921 -0.980092 0.011622 -0.439956 0.028193 -0.756236 -0.868330 -0.769096 0.122052 1.574863 -0.221835 -1.689951 0.631348 -0.430408 0.801336 -1.975416 0.604790 -0.826936 1.115908 -0.613175 -0.355047 -0.122554 0.086002 0.067151 0.080343 0.653948 -0.872983 0.844003 0.824498 0.310468 0.309151 0.582257 0.398537 -0.148412 -0.428985 -0.747808 0.509772 0.010776 -0.127501 -0.120860 -0.641239 1.078703 0.399722 -0.321624 0.443609 1.369852 -0.297334 0.255577 1.005242 -0.209229 -0.672615 0.163426 0.197291 1.074105 -0.527194 -0.330564 -0.796943 0.123249 0.219029 0.419538 -1.463906 -1.081601 -0.418586 -1.654379 -0.651487 0.316526 0.521335 0.733291 0.428157 -1.788553 -0.598198 0.945267 -0.374863 1.509625 0.482518 0.857428 1.049470 0.688816 -0.060918 -0.751791 -0.039616 0.127920 -1.088727 -0.167471 -0.549134 0.642723 -0.694884 1.159527 0.672783 -0.175543 0.270848 -0.286758 1.297176 -0.809160 1.728031 0.979217 -1.138638 0.170014 0.362031 1.509059 -0.810385 -0.875157 -PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -1.520307 -3.262220 3.037271 3.056426 1.207911 2.231150 1.232679 -1.248258 2.046274 3.426658 -1.230035 1.756175 -2.208945 -0.525819 0.655367 1.193385 -0.840714 -2.231778 0.627294 -0.510390 -0.456336 -2.246406 -0.885512 1.739647 0.783693 0.239992 -0.951241 -0.157342 -3.556549 -3.787942 0.219246 -0.459766 1.656002 0.700981 0.589190 -4.063704 2.152293 3.102020 -0.275952 -3.634710 -0.002400 -0.982777 -0.592308 1.130058 0.705381 1.594750 1.301287 0.439883 0.110834 1.174616 1.428255 -0.956390 1.702753 3.205171 0.056548 3.238655 2.760218 -0.214222 0.683851 0.758308 0.875526 -0.485427 2.266070 2.193200 -1.127523 -0.546388 -0.017198 0.201575 -2.670423 1.122791 0.684994 -1.316397 -1.338204 -0.953174 -0.639074 -0.682170 -1.256175 0.583695 4.334839 -0.897482 4.442408 2.196018 2.545721 -0.674631 2.461926 -0.533323 2.870070 1.102091 -2.589853 -0.006697 -2.332030 -1.800409 -0.069344 2.233242 -1.663977 0.826684 1.057049 -1.356166 -3.316656 1.965398 -0.483749 -0.136210 -2.581331 0.333051 1.873544 0.995639 -0.905398 -3.145026 -2.329413 1.214568 -1.985548 -1.791810 -0.989142 -0.509649 -0.826718 0.680226 -2.188444 -1.025808 2.015530 -2.367276 -1.770669 2.380615 -0.601949 1.944945 -0.616024 0.153806 0.096712 0.629621 1.183446 1.307626 1.724046 -1.389472 -4.464616 0.771583 0.628728 0.310536 -1.011759 -0.259092 0.919716 1.029934 0.452006 2.277342 -0.842677 2.701596 2.818422 -0.145359 -1.403854 -2.527036 0.358053 -2.003822 1.318846 -1.778487 -0.354015 -0.803868 2.371936 -0.121472 0.550553 2.392565 -2.248628 2.168992 -0.391548 0.934391 0.389523 -0.087765 0.989817 -1.545601 -2.129601 1.395777 3.189721 -0.009323 1.053122 -1.291521 -0.067494 -1.091490 -2.313617 1.414258 -0.241040 -0.088116 2.768397 1.131367 6.644045 -2.513674 0.599935 -0.077833 -0.005543 0.552272 -0.465195 -3.260027 1.446124 0.269445 1.127624 3.423311 -0.101901 -1.681020 0.584070 0.060711 0.102942 -2.041645 2.838054 -2.401536 -0.223830 -0.743524 -0.199665 -1.401390 -1.695488 -1.067379 1.219140 3.407737 -0.227470 -2.975436 1.618598 -1.238530 0.246881 -4.081965 2.962718 -1.734369 0.985069 -1.796368 -1.284327 -0.523151 1.487558 0.104895 0.140132 1.592834 -1.913002 2.229490 2.442683 0.328047 0.657333 1.116310 0.862594 -0.180875 -0.927673 -1.528083 1.958529 0.240529 -0.066628 -1.096914 -1.445486 2.421060 0.349785 -1.223278 0.250179 2.679273 -1.733465 -0.232031 1.924473 -0.094019 -1.625668 1.505805 0.583504 2.388313 -1.337292 -0.446313 -1.379018 -0.468972 0.096210 1.670133 -3.180365 -1.346963 -0.181748 -2.681118 -1.667526 1.727766 1.430258 1.231797 0.598988 -3.603525 -1.694204 2.082965 -0.832148 1.282139 1.295374 2.095212 2.240561 1.547230 0.639106 -1.217581 -1.580219 -0.526362 -2.156529 -1.237273 0.003469 1.175328 -1.218640 2.602835 0.838225 0.131718 0.601320 -0.414626 2.033739 -1.777491 3.557061 2.043088 -1.426462 0.768396 1.111465 3.902030 -2.991906 -1.874567 -PE-benchmarks/finite-automata-algorithm.cpp__main = -0.968789 -1.620400 1.716817 1.510646 0.401273 1.007131 0.698092 -0.687253 1.401793 1.056330 -0.367364 0.787877 -1.290713 -0.075971 -0.021103 0.534887 -0.787976 -1.360670 0.180116 -0.484566 -0.372470 -1.263316 -0.286534 0.844088 0.358858 -0.081336 -0.675676 -0.207150 -2.130193 -1.032967 0.711667 -0.407875 0.903453 -0.112959 0.205066 -3.085802 1.075946 1.358986 -0.276089 -1.945235 0.120601 -0.894955 0.182490 -0.019350 -0.079340 0.372272 0.525850 0.274825 0.387078 0.286482 0.473904 -0.175934 0.296618 2.571530 -0.579550 1.504459 1.225399 -0.063904 -0.007659 0.336359 0.456427 -0.155150 1.184555 1.109882 -0.792418 -0.481621 -0.039798 -0.307999 -1.640926 0.722833 0.274869 -0.386168 -0.841600 -0.282740 -0.879110 -0.579875 -0.470571 0.651394 2.312784 -0.945414 2.156275 0.807639 1.387934 0.018421 1.223611 -0.029028 1.482536 0.431560 -1.289232 -0.080334 -1.551684 -0.244784 -0.095187 0.627813 -0.653698 -0.440536 0.636464 -0.816381 -1.765489 0.926852 -0.101051 0.123093 -1.468879 -0.050204 0.979704 0.789540 -0.833186 -1.771977 -1.265135 0.763980 -0.676578 -0.755650 -0.000260 -0.520963 -0.357725 -0.708533 -1.308022 -0.495476 0.911857 -1.177881 -0.924086 1.483543 -0.931378 0.832860 -0.151888 0.198546 -0.187149 0.822077 0.496234 0.492549 0.565150 -0.866362 -2.287518 0.003308 0.225542 1.269670 -0.414343 -0.049854 0.152881 0.445881 -0.036152 0.543545 -0.135926 0.996636 1.032910 -0.322896 -0.736312 -1.172143 0.243990 -1.453599 0.488022 -1.019380 -0.153324 0.215652 1.247661 0.604531 0.504980 1.700740 -1.136482 1.333222 -0.239556 0.097251 0.541864 0.082990 0.720477 -0.773325 -1.175776 0.549303 1.167696 0.225583 0.430132 -0.712027 -0.091618 -0.852292 -0.987245 0.344494 0.339268 0.015547 1.368303 0.649912 2.573480 -1.927182 0.368669 0.159653 -0.051222 0.322948 -0.355315 -1.680797 0.725348 0.312574 -0.092424 1.472110 -0.174450 -1.130625 0.367761 -0.082768 0.353254 -1.057171 0.967047 -1.141906 -0.396922 -0.735013 -0.121428 -0.854612 -0.811235 -0.867011 0.011862 1.803731 -0.672772 -1.627231 1.047470 -0.259492 0.615310 -2.259945 1.661217 -0.895886 1.098536 -0.858328 -0.411488 -0.337904 0.893199 -0.114895 0.146435 0.837610 -1.030329 0.975748 1.622511 0.381802 0.534370 0.545331 0.828215 0.035708 -0.193634 -0.743603 1.124973 -0.125073 -0.467335 0.011641 -0.780420 1.155103 0.178968 -0.135520 0.666779 1.587768 -0.325579 0.435415 1.230955 0.175462 -0.771510 0.534654 0.064464 1.257467 -0.612212 -0.018528 -0.645760 0.151260 -0.098271 0.703847 -1.696383 -1.401372 -0.528088 -1.562753 -0.372753 0.453299 0.235565 0.429849 0.335989 -2.132352 -0.817611 0.737337 -0.620732 1.272938 0.654423 0.945244 1.292805 1.241543 -0.353270 -0.708590 -0.036257 -0.142091 -0.933996 -0.401623 -0.596281 0.739770 -1.019346 1.212495 0.816620 -0.080911 0.246271 -0.008501 0.934052 -0.920091 2.167697 1.111310 -0.842880 0.713349 0.742305 2.194385 -0.770838 -0.986146 -PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -3.568542 -5.715894 4.948990 4.444864 1.499856 3.892120 1.908549 -1.718617 3.211776 3.656338 -1.674955 3.559444 -3.512221 -1.388970 -0.235019 0.473464 -1.506895 -3.835953 0.790742 -0.821864 -0.498797 -3.647843 -2.746620 4.426952 0.551469 -0.055223 -1.698009 0.123350 -7.681973 -4.124536 0.643651 -0.428797 2.572172 -1.039953 1.226775 -8.057862 2.980057 5.675752 -0.271815 -6.734222 0.147076 -2.402982 -0.502059 1.247468 -0.631034 1.327242 1.793594 0.243311 -0.424742 0.599366 1.028173 -0.537416 1.972740 7.236309 0.108481 5.630382 5.360609 0.044786 0.990699 0.926283 1.320680 -0.905363 3.512658 2.990370 -2.540803 -0.633411 0.257718 0.443348 -4.277350 1.281774 1.127452 -2.535153 -1.623211 -1.271859 -3.155152 -1.457549 0.747061 1.086358 6.697258 -2.166427 7.625727 3.074850 4.454418 0.016073 4.522293 -0.428488 4.588542 1.565513 -3.987101 -0.148646 -5.316051 -0.823426 -0.248426 2.813633 -3.272184 0.097263 2.210868 -3.902290 -5.796558 3.178675 -0.958950 -0.613858 -3.803183 -0.069899 2.814981 2.095151 -1.949262 -5.154902 -4.290682 3.584500 -3.060357 -2.816907 -0.558077 -0.696123 -0.324515 -0.924536 -3.438321 -0.817647 4.348654 -3.269049 -2.843437 4.647809 -2.042989 3.570232 -0.817651 0.267392 0.085168 1.162685 1.979003 0.720720 1.327336 -3.197134 -6.361873 0.400023 -0.195055 1.735917 -2.144648 -0.334559 2.159354 1.815794 1.914139 3.022345 -1.567666 3.470597 2.107399 -0.238052 -1.554160 -4.853245 -0.229988 -3.641253 0.954690 -2.371357 -1.884234 0.289035 3.685553 0.947849 0.287862 3.965318 -2.736179 3.766701 0.060227 0.510664 0.442862 -0.991102 1.537119 -2.464124 -4.016895 2.089112 4.184535 1.000226 1.161802 -1.727112 -0.580590 -1.491256 -3.524779 1.495520 0.497179 0.916545 5.169337 2.436735 9.529767 -5.173919 0.688462 -1.025823 -0.663876 1.058490 -1.780197 -5.029775 1.547872 1.218563 0.644548 6.137287 -0.473622 -2.885517 1.187705 0.356553 0.693731 -3.559820 4.736150 -3.804037 -1.081652 -1.382935 -1.314374 -2.597526 -2.459939 -3.867988 -0.417867 5.735169 -2.885254 -5.803593 2.544575 -0.369336 1.582698 -7.136412 4.071099 -2.502385 3.878435 -1.779851 -1.518440 -0.836004 2.088848 -0.130816 0.538336 2.566840 -4.258768 3.559487 3.957071 0.632310 1.597222 1.839562 1.386613 -0.542043 -1.603097 -3.302066 2.873579 -0.023229 -1.674118 -0.646542 -2.416635 4.223702 1.135540 -1.013998 0.327520 4.715355 -1.742336 -0.292582 4.185647 -0.767233 -2.224222 1.473920 0.418557 3.533202 -1.993888 -0.416668 -2.963271 -0.027870 1.032123 2.042419 -5.462407 -2.948580 -2.010037 -5.223612 -1.215234 1.123908 1.257504 2.280897 0.906909 -7.274335 -3.245010 3.520098 -1.572728 3.980400 2.436071 3.606034 4.145517 2.891653 0.382695 -1.627779 -0.624114 -0.404025 -3.638459 -1.602183 -0.890836 1.756812 -2.221996 4.663249 1.878070 0.446937 1.659859 -0.100635 1.209848 -3.003957 6.401784 3.658588 -3.570417 0.687227 1.703447 5.984241 -4.663932 -3.276824 -PE-benchmarks/naive-algorithm.cpp__main = 0.060804 -1.624830 2.379127 2.088634 -0.099641 0.856857 0.399895 -1.055389 1.184506 0.594060 -0.858795 1.095357 -1.273268 0.298653 -0.686568 0.910060 -1.591318 -1.281412 -0.169505 -0.442211 -0.332485 -1.054274 0.195658 0.993443 0.876429 1.131609 -0.919974 -0.014968 -1.763629 -1.599384 0.683104 -0.359244 0.943807 0.584194 0.352969 -2.425045 1.442779 1.700492 -0.399893 -2.123141 0.468646 -0.700922 -0.525489 -0.464753 -0.281710 0.610203 0.302865 1.011554 0.339716 0.619204 0.012389 0.149487 0.980489 2.218592 -0.216083 1.546163 1.643967 0.153742 0.283651 0.003993 0.645706 0.206762 0.812269 1.085132 -0.269064 -0.959186 -0.480615 -0.472310 -1.319461 1.042385 0.000652 -0.222924 -1.278939 -0.547787 -1.141742 -0.018636 -1.090554 1.243877 2.566086 -1.218198 1.813088 0.736785 0.982474 -0.304096 0.799316 0.011724 1.172515 0.867412 -0.750470 -0.096157 -1.290928 -0.741126 0.304572 -0.096909 -1.131577 -1.400276 0.983332 -2.095588 -1.865285 0.784445 0.368815 -0.530939 -0.237739 0.062543 0.730728 0.718253 -0.650458 -1.415975 -0.370293 0.571009 -0.140824 -0.837746 -0.206352 0.386521 -0.215078 0.035372 -1.805373 -0.030751 0.744870 -1.025637 0.126762 1.227373 -0.181511 0.643637 -0.396960 0.111065 -0.206827 1.201158 0.428669 0.808628 0.481930 0.154275 -0.751544 0.882100 0.738292 0.493549 -0.979018 0.076146 0.135895 0.623411 -0.082103 0.354772 -0.648445 0.724592 0.826750 -0.549529 -1.219357 -1.368662 -0.803809 -1.741867 0.364797 -1.086428 -0.715291 0.531592 1.366478 0.573647 0.763429 1.564195 -1.389524 0.625877 0.076064 0.308939 0.569146 0.083556 0.620506 -0.779049 -1.419226 1.137391 0.814985 0.329513 0.418046 -0.333636 0.095786 -1.015302 -0.708259 1.154398 0.578900 -0.101800 1.582872 0.886950 1.433382 -0.798448 0.245490 0.436202 -0.287579 0.141091 -0.127776 -1.999000 1.067130 0.129133 0.967345 1.684326 -0.077749 -0.557705 0.711686 -0.174500 0.268935 -1.123501 0.939845 -1.194875 -0.379835 -1.018610 0.540946 -0.402856 -0.674143 -0.781963 -0.213414 2.077151 -1.422805 -1.164358 1.272132 -0.245435 0.737618 -1.894679 1.268740 -0.944405 1.487090 0.062981 -0.406105 0.175869 -0.541732 -0.723871 -0.211656 0.950658 -0.635129 0.616835 1.288044 0.462940 -0.060593 0.458196 0.900020 -0.431056 0.553333 -0.894675 1.110564 -0.032737 -0.604017 -0.093837 -0.659990 0.466842 -0.485434 -0.021131 1.244288 1.002657 0.495222 0.771401 0.711623 0.870052 -1.125247 0.834668 -0.026910 0.978643 -0.925398 -0.336817 -0.335703 0.386895 -0.263749 0.997902 -1.917038 -1.903899 -1.862262 -1.545420 -0.576731 -0.615856 0.845088 -0.121867 -0.091035 -1.688010 -1.439164 1.150864 -0.624609 0.946139 1.195214 0.827418 1.308268 1.208015 -0.403736 -0.156476 -0.182130 0.497822 -0.462387 -0.255968 -0.935792 1.051710 -0.747535 0.671167 1.672187 -0.450518 0.665244 -0.361463 1.246071 -1.002809 2.328155 1.048082 -1.332498 0.702496 0.836487 1.607761 -0.249692 -1.239354 -PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -3.341373 -5.208150 4.360760 4.044744 1.516793 3.890361 1.487925 -1.802729 2.720911 3.615165 -2.123607 3.109683 -3.063130 -1.641059 0.098571 -0.119090 -1.073188 -3.405888 0.559821 -0.777242 -0.132344 -3.317361 -2.867753 4.308126 0.387683 0.293806 -1.477542 0.962106 -6.856995 -4.735161 0.295797 -0.110302 2.317203 -0.279172 1.364818 -6.557721 2.853801 5.769186 -0.147056 -5.998691 0.019685 -2.088021 -1.312164 1.719818 -0.297036 1.930068 1.530350 -0.100548 -0.807732 0.530965 1.124591 -0.792100 1.787568 5.322400 0.685907 5.295853 5.172154 -0.066326 1.195085 1.010946 1.074924 -0.700400 3.298175 2.894624 -2.487870 -0.563117 0.618973 0.912533 -3.991944 1.237769 0.953509 -2.823824 -1.190922 -1.687717 -3.115337 -1.136575 2.017643 0.429026 6.446636 -1.096611 6.962688 3.021625 4.062987 -0.303411 4.531687 -0.704036 4.794711 1.621567 -3.720296 0.088020 -4.837932 -1.731981 -0.229107 3.692058 -3.145657 1.766787 1.901865 -4.509519 -5.284477 2.845909 -0.996197 -0.959090 -3.627519 0.304031 2.723366 1.363673 -1.069974 -4.584143 -3.445434 3.495665 -3.404329 -2.718755 -1.248612 -0.170701 -0.333944 0.395958 -3.009433 -0.545700 4.041259 -2.826203 -2.423412 4.271294 -1.761671 3.124334 -0.985207 0.172648 0.067448 0.457188 1.415819 0.788527 1.519184 -2.967235 -5.886207 0.151826 -0.357395 0.992895 -2.449355 -0.767446 2.414156 1.664758 1.691102 3.302157 -2.023448 3.458491 2.401415 0.010052 -1.251925 -4.626377 -0.719890 -3.412997 0.839489 -1.986613 -1.996916 -0.335412 3.511369 0.559369 0.184383 3.536587 -2.487628 3.199522 0.113247 0.616990 0.217005 -1.663620 1.252413 -2.374901 -3.748189 2.384163 3.943449 0.843054 1.487713 -1.507315 -0.656104 -1.299385 -3.805893 2.073948 0.018233 1.441395 5.004221 2.555055 8.759445 -4.235728 0.985924 -1.102717 -0.621123 1.005011 -1.499968 -4.494248 1.548312 1.216920 1.742026 6.414875 -0.266403 -2.237007 0.538971 0.679822 0.557201 -3.630535 4.929265 -3.671445 -0.301730 -1.128707 -1.484073 -2.384586 -2.524957 -3.350735 -0.161164 5.341267 -1.868970 -5.730266 2.519042 -0.495973 1.536951 -6.624655 2.748336 -2.462687 4.134612 -1.642289 -1.282155 -0.556290 1.188954 -0.226115 0.812976 2.313510 -3.919793 3.613394 3.099214 0.521662 1.442315 1.524400 0.877669 -0.842370 -1.651912 -3.471803 2.459454 0.364436 -1.163056 -1.141913 -2.258517 3.866985 1.040564 -1.281009 -0.533457 4.353605 -1.934650 -0.860728 3.830307 -0.940929 -2.131040 1.470642 0.690042 2.928432 -1.860300 -0.903125 -2.671996 -0.111895 1.305928 1.748520 -5.162683 -2.219281 -1.915737 -5.188807 -1.553339 1.229468 1.443822 2.638103 0.876987 -6.245404 -2.860137 3.137578 -1.245527 4.387466 2.129713 3.638937 3.629690 2.283306 0.815189 -1.420309 -1.280507 -0.347590 -3.794675 -1.681234 -0.772818 2.005850 -1.356134 4.403435 1.556027 0.323360 1.836714 0.088154 1.412425 -2.867423 5.904027 3.354329 -3.370959 0.408817 0.894908 5.388439 -4.715398 -3.066910 -PE-benchmarks/union-find.cpp__main = -0.765684 -3.539172 4.558987 3.965096 0.285008 2.181585 1.370142 -2.003935 3.003852 1.900262 -1.083072 1.670204 -2.454793 0.124064 0.280279 1.526742 -2.784068 -3.022808 0.258017 -1.311322 -1.129049 -2.440359 -0.362925 1.581685 1.114966 0.788107 -1.549774 -0.626687 -3.753496 -2.188779 2.070191 -0.872070 2.092313 1.367691 1.094049 -7.274767 2.835457 2.675604 -0.717562 -4.486701 0.049516 -1.494036 -0.277067 -0.400112 0.030194 1.263844 1.092160 1.981579 0.739171 1.166688 0.363676 -0.330970 0.557899 5.596543 -0.643282 3.097776 2.877703 -0.288045 0.325401 0.864130 1.380833 -0.091900 2.392313 2.429103 -1.024413 -1.341647 -0.278250 -1.393377 -3.332283 2.071345 1.319175 -0.914435 -1.978390 -0.973473 -1.868637 -0.948250 -2.518220 2.438218 5.382907 -2.568362 4.331670 1.807835 3.244468 -0.281846 2.696675 -0.101374 3.698213 1.446266 -2.499882 0.217260 -3.811255 -2.183375 0.129020 -0.048960 -1.675398 -2.325977 1.444373 -2.277545 -3.716885 2.433929 0.313302 0.100947 -2.938042 -0.386971 2.525231 1.721715 -1.956186 -3.442399 -2.452831 1.381308 -1.710484 -1.619712 0.037448 -0.123314 -0.951681 -1.132911 -3.306513 -0.787406 2.148244 -2.265097 -1.179117 3.270172 -1.771850 1.412308 -0.777484 -0.028239 -0.737166 2.328711 0.991764 1.264597 1.757670 -1.300989 -4.247885 0.966609 1.021078 2.824474 -0.512262 -0.550558 0.369898 1.591131 -0.611740 1.352514 -0.373954 2.254984 2.710504 -0.631746 -2.544006 -2.856032 0.525843 -3.163984 1.119375 -2.606475 -0.436212 1.033544 3.075554 1.970325 1.294692 3.071381 -2.945796 2.850687 -1.010877 1.086215 0.952733 0.658912 1.444503 -1.705694 -2.443087 1.425926 2.220723 0.708512 1.351464 -2.027330 0.141813 -2.093815 -2.844602 1.165526 1.207578 -0.251262 2.791771 1.789099 4.414462 -3.905273 0.354290 0.613148 -0.375733 0.353349 -0.306175 -3.863727 1.708629 0.416258 0.459088 3.406253 -0.495100 -2.139703 0.830486 -0.049111 0.425327 -1.822482 1.366113 -2.471623 -0.784583 -1.762602 0.819666 -2.179228 -1.573902 -1.765542 -0.312996 4.340279 -1.628390 -3.605063 2.950703 -1.900088 1.543090 -4.898946 3.206677 -1.967549 1.833895 -1.538025 -1.060515 -0.785794 0.965611 -0.887468 0.587616 1.945653 -1.958537 1.546573 3.779782 0.849327 0.781174 1.134143 2.040085 -0.447945 -0.104723 -1.779328 2.832431 -0.672506 -0.640232 -0.423147 -1.615729 2.178537 -0.296807 -0.041011 1.956324 2.539517 0.139744 1.258249 2.387440 0.491783 -2.228351 1.282980 0.308861 2.529228 -1.668172 -0.185690 -1.078513 0.344374 -0.542234 1.460428 -3.830472 -3.322007 -2.517641 -3.311958 -1.473494 0.751014 0.982804 0.401514 0.340691 -4.058542 -1.956743 1.350576 -1.359014 1.699554 2.158232 1.914194 3.101323 2.903317 -1.111108 -1.299171 -0.176024 -0.062648 -1.917692 -0.886905 -1.873528 2.063227 -2.213831 2.425120 2.726735 -0.140555 0.889557 -0.587475 3.909556 -2.040225 4.673759 2.478766 -2.387776 0.975691 2.255343 4.433237 -0.941910 -2.422678 -PE-benchmarks/union-find.cpp__find(int*, int) = -1.694252 -2.614550 2.640396 2.474432 0.670160 1.857326 0.855068 -1.281123 1.313594 2.363206 -0.666927 1.447124 -1.870920 -0.315939 -0.258626 0.819892 -0.754289 -1.868960 0.003961 -0.919396 -0.656572 -1.526867 -0.925032 1.700049 0.650178 -0.448130 -1.095170 -0.053668 -3.169547 -3.162937 -0.171286 -0.183295 1.374945 -0.516352 0.389676 -3.969632 1.802797 2.938808 -0.350136 -2.703102 0.253352 -1.153314 -0.464045 0.768375 -0.564729 0.846076 0.674259 -0.586515 0.191343 0.676846 1.345430 -0.015346 1.158870 3.464653 0.016238 2.702653 2.114878 -0.006094 0.188578 0.677163 0.650436 -0.240314 1.747516 1.168595 -0.809008 -0.621819 -0.074480 0.186035 -1.881731 0.931161 0.083607 -1.597102 -0.708256 -0.879826 -1.604448 -0.959449 -0.076938 0.424835 3.255192 -1.265552 3.246048 1.347625 1.489720 -0.104105 2.214186 -0.357706 2.487721 0.811529 -1.560109 0.151418 -0.999561 -0.622006 0.002735 2.172322 -1.711500 -0.327036 1.420530 -2.061384 -3.019436 1.755227 -0.232486 -0.452491 -2.401214 -0.328102 1.152903 0.823853 -1.236465 -2.576235 -1.912734 1.539115 -0.935694 -1.501032 -0.421047 -0.511729 -0.244171 0.255213 -2.036838 -0.395778 1.693070 -1.739492 -1.668725 2.316404 -0.306326 1.533347 -0.379375 0.385772 -0.214006 0.973684 0.382861 1.094839 0.129524 -0.522144 -3.429788 -0.370212 0.362362 -0.010906 -0.978274 -0.288759 0.652263 0.941812 0.257397 1.961897 -1.003457 2.218756 2.174260 0.052408 -1.115674 -1.917224 -0.031151 -2.100515 0.432226 -1.515339 -1.079893 0.105069 1.950142 0.265440 0.327288 2.391245 -1.120716 1.621952 -0.116361 -0.050211 0.587396 -1.169226 0.923861 -1.338933 -2.196591 1.310215 2.197936 0.763405 0.684068 -0.671726 -0.156432 -0.867825 -1.913263 0.919498 0.193514 -0.005248 2.453824 1.381262 4.906168 -2.365180 0.694494 -0.234079 -0.542771 0.720749 -0.749540 -2.703592 0.452545 0.659918 0.149578 3.065667 -0.182037 -1.420077 0.705265 -0.235156 0.414463 -2.004432 2.181510 -2.003947 0.085399 -0.914148 -0.794048 -1.093170 -1.161578 -1.333513 -0.249257 2.847410 -1.642765 -2.547822 1.693480 -0.039119 0.531755 -3.655449 2.137562 -1.278288 1.783005 -1.237492 -0.813272 -0.236994 1.448123 -0.169002 0.605251 1.332615 -1.895595 1.620953 2.364570 0.257481 0.770321 0.614911 1.161777 -0.324200 -0.437115 -1.634391 1.985317 0.130351 -0.779064 -0.695437 -1.248219 1.397260 0.197680 -0.288764 0.103032 1.994530 -1.121921 -0.323584 2.138627 0.190097 -1.153782 1.231234 0.218371 1.781774 -1.193408 -0.330279 -0.994504 0.247996 0.254774 1.047015 -2.817658 -1.404446 -1.606629 -2.405004 -0.682247 1.263001 0.900038 0.742636 0.173073 -2.923017 -1.714237 2.475503 -0.981532 1.769322 1.339643 1.943660 2.061755 1.591895 0.419235 -0.590874 -0.980077 -0.220410 -1.417398 -0.950913 -0.200975 1.058245 -1.135187 2.118817 0.874671 0.195071 1.052139 0.502235 0.919604 -1.612889 2.919864 1.539348 -1.319815 0.975895 1.556996 2.641093 -2.203036 -1.531020 -PE-benchmarks/union-find.cpp__Union(int*, int, int) = -2.244080 -3.140608 2.774454 2.487178 0.922961 2.160382 1.280529 -1.082182 1.816657 2.430880 -0.746150 1.547737 -2.218922 -0.530128 -0.193662 0.525438 -0.710320 -2.408260 0.369700 -0.866980 -0.697185 -1.986998 -1.276867 1.942294 0.503202 -0.887973 -1.084744 -0.275659 -3.994144 -2.654450 0.196710 -0.331095 1.522164 -0.832351 0.465139 -5.237935 1.708808 3.017582 -0.296379 -3.374141 0.092341 -1.607239 -0.082051 0.707231 -0.416125 0.772631 1.131294 -0.260421 0.178473 0.563491 1.139826 -0.298639 0.603995 4.508657 -0.168356 2.988710 2.436362 -0.007336 0.056368 0.888897 0.753530 -0.620924 2.142293 1.472986 -1.335736 -0.383484 0.081232 -0.033047 -2.374386 0.960703 0.391304 -1.519425 -0.784523 -0.782006 -1.998888 -1.269446 -0.026052 0.614403 3.854747 -1.622090 3.976200 1.542406 2.341242 0.105867 2.676297 -0.348019 2.901940 0.785577 -2.199344 0.004623 -2.110286 -0.578274 -0.379641 2.035092 -1.542328 -0.467947 1.429465 -2.005493 -3.403827 2.003806 -0.590134 -0.117392 -2.985551 -0.277508 1.654030 1.246252 -1.605966 -3.123753 -2.589374 1.773744 -1.418011 -1.581694 -0.007147 -0.768185 -0.379567 -0.590243 -2.190141 -0.755720 2.140436 -2.169513 -2.063224 2.874091 -1.119243 1.997717 -0.321461 0.301161 -0.162510 1.211240 0.759762 0.781348 0.485973 -1.322964 -4.616844 -0.555759 0.142299 1.172565 -0.929795 -0.155399 0.910139 1.056621 0.319273 1.792403 -0.886022 2.399203 2.190164 -0.094694 -1.206045 -2.342727 0.566955 -2.184496 0.550248 -1.743253 -0.827765 0.248578 2.253197 0.771841 0.249156 3.017749 -1.446345 2.275591 -0.303215 -0.015667 0.509475 -0.981884 1.131595 -1.553679 -2.372608 1.182969 2.540258 0.789529 0.790128 -1.117286 -0.188787 -1.138551 -2.372890 0.601666 0.458090 0.100757 2.758007 1.447992 4.969707 -3.629958 0.672865 -0.409393 -0.502525 0.805643 -0.899045 -3.072356 0.717496 0.755336 -0.135391 3.214264 -0.255343 -1.953751 0.759457 -0.165431 0.484455 -2.124680 2.124847 -2.344272 -0.327135 -1.015567 -0.795333 -1.554905 -1.404887 -1.723680 -0.350203 3.222759 -1.426906 -3.187572 1.727598 -0.201716 0.904753 -4.484590 2.512463 -1.491409 2.059403 -1.555652 -0.771008 -0.529523 2.125307 0.140415 0.654024 1.542312 -2.277758 2.037282 2.847371 0.314994 1.164709 0.991978 1.367048 -0.163099 -0.945934 -1.714931 1.985987 -0.070700 -0.993930 -0.533006 -1.492349 2.151751 0.650887 -0.225971 0.382184 2.593773 -1.289341 0.032189 2.795597 -0.183549 -1.253158 0.958935 0.126569 2.400280 -1.274028 -0.216049 -1.513420 0.242604 0.309171 1.028751 -3.194253 -1.939377 -1.508778 -2.989094 -0.632701 1.303177 0.561878 0.977285 0.483522 -3.771290 -1.572533 1.905512 -1.134980 2.280093 1.383220 2.171943 2.488332 1.879743 0.061607 -1.036094 -0.491960 -0.372587 -2.002630 -1.064533 -0.382493 0.970813 -1.667000 2.679189 0.956380 0.325249 0.882726 0.647412 1.235525 -1.806132 3.495105 1.993165 -1.675906 0.909338 1.730855 3.477146 -2.327687 -1.764444 -PE-benchmarks/word-wrap.cpp__main = -3.276120 -6.517791 5.378638 5.051972 1.465406 4.301739 2.690981 -1.544740 1.943969 4.769995 -2.026982 4.280515 -3.017385 -1.901373 -0.695240 0.773507 -0.838597 -3.760178 1.057257 -0.706638 -0.068100 -3.332075 -3.659738 5.493666 0.944455 -0.851021 -1.549415 -0.312503 -7.648610 -5.716594 -1.032133 -0.128976 2.654080 -0.920495 1.869153 -6.856255 2.985010 6.712546 -0.107188 -6.366395 0.070900 -1.477866 -1.397265 2.125084 -1.339842 2.253040 2.203237 -0.415558 -1.146590 1.676553 2.219370 -0.552491 4.032905 6.421823 1.569112 6.027524 5.436751 -0.007112 2.529921 0.523942 1.608165 -1.318618 3.111617 2.420375 -1.140384 -0.522458 -1.083301 1.352626 -3.510124 0.508886 1.197369 -3.002659 -2.131281 -1.218820 -3.396059 -1.718362 -2.605675 0.079511 7.044498 -1.831014 8.522869 4.010059 4.864659 -0.699895 4.819751 -0.255373 4.132602 2.061656 -3.880872 1.396108 -3.950846 -1.119334 0.040958 3.388127 -4.512616 -0.430701 2.893978 -3.753391 -6.210523 4.412773 -0.897840 -1.590958 -2.121494 -0.074610 1.933518 1.768263 -2.616533 -5.469528 -4.168769 3.666896 -2.474190 -3.289041 -0.802231 0.025652 0.664568 0.346813 -3.226254 -0.112758 5.021113 -3.278760 -1.949691 4.595755 -0.545958 4.166804 -1.150351 -0.164422 0.103341 0.996280 2.530817 1.337031 -0.013009 -3.238465 -7.874175 0.940334 0.402019 -0.336186 -2.421613 -0.870428 2.904919 2.691776 3.518913 5.118768 -0.718174 4.207742 2.602261 0.469162 -1.841179 -5.694833 -0.988732 -2.565842 1.325069 -2.116801 -2.467803 0.297540 3.688865 -0.508830 -0.047631 2.468167 -1.564004 3.623492 -0.071285 0.551781 -0.165392 -2.328459 1.290256 -2.229572 -4.106620 3.199719 5.115578 2.316931 1.646385 -1.466233 -0.006144 -0.442590 -3.307437 1.651929 0.357826 0.508813 5.955458 2.859697 9.781606 -2.699220 -0.069984 -1.767165 -0.919959 1.101058 -1.733739 -5.257500 1.680382 1.052183 0.138530 6.429995 -0.552060 -1.728476 2.378659 -0.247126 0.387123 -4.122817 5.563271 -3.779043 -0.586732 -1.274064 -1.127577 -2.673176 -2.291163 -3.934475 -0.405477 6.143917 -3.472333 -4.432298 1.428468 -0.771812 0.325392 -5.940365 5.343474 -2.284202 3.324652 -1.509292 -2.282215 -0.332502 2.813281 0.079104 0.095627 2.785391 -4.589147 3.373152 3.738069 0.292785 0.616289 2.049591 1.436081 -1.228120 -1.600637 -3.646506 2.807732 0.197732 -1.189519 -1.213436 -2.219773 3.903304 1.089921 -1.150353 -0.280373 3.794600 -2.368984 -1.777192 3.656817 -1.056899 -2.375074 0.987562 0.527586 3.677936 -2.802893 -0.722071 -3.501151 -0.185198 1.541824 1.487034 -5.868439 -1.413906 -3.241966 -3.820403 -1.802864 1.797296 2.100850 2.418053 0.374450 -7.061497 -4.237490 5.172539 -1.781433 0.752687 3.466612 3.709790 4.772913 1.973380 2.182360 -1.198555 -2.141325 -0.034338 -2.920416 -1.255398 -0.015580 1.471238 -3.099729 4.908540 1.591233 0.568828 2.395789 0.640900 1.995212 -3.475486 6.788474 3.474905 -4.090256 0.351197 2.678229 4.814869 -6.345429 -3.306743 -PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -1.939745 -3.893583 4.843502 4.198175 -0.230790 2.767649 0.650424 -2.387090 1.673113 0.962166 -0.973612 2.339951 -2.952050 -0.274633 -1.192915 0.226512 -2.779888 -2.919452 -1.023808 -1.854981 -1.078321 -1.973393 -1.637643 3.780189 0.965005 0.546981 -2.195586 0.559548 -5.319154 -2.518179 0.680393 0.118385 2.323666 -0.092757 1.236358 -7.253682 2.841743 4.796330 -0.657407 -4.281436 0.724409 -2.423775 -1.053462 -0.512399 -2.441370 0.646948 0.196671 -0.219020 0.116089 -0.095766 0.295548 1.009664 0.966516 6.267892 0.051914 4.011012 3.869895 0.192321 0.370962 0.460796 0.923956 0.238702 2.301836 1.271178 -1.540337 -1.678241 0.016840 -0.600914 -2.478344 1.815366 0.801217 -2.145050 -1.010761 -1.623638 -4.313545 -1.409793 2.047719 1.744275 4.833638 -2.901501 4.290163 1.509289 2.009376 0.549712 3.663549 -0.097159 4.293983 1.354411 -1.431278 0.558773 -3.283141 -0.564811 0.427079 1.700528 -3.204410 -2.749525 2.364030 -5.610365 -4.841727 2.377781 0.216967 -1.607483 -2.712490 -1.050086 1.557040 1.140201 -1.880372 -3.457925 -2.186418 3.215092 -1.159028 -2.051692 -0.187625 0.492563 0.370795 -1.032739 -3.831655 0.814354 2.750923 -1.570229 -1.245747 4.139558 -1.207070 1.752870 -0.665409 0.385883 -1.066822 2.270515 0.017390 0.713363 -0.734439 -0.848964 -2.518446 -0.935371 0.320521 1.322508 -2.044331 -1.240889 0.979824 1.747053 0.253254 2.072853 -1.398502 2.607528 1.336261 -0.346144 -1.748823 -3.526486 -1.659000 -4.143722 -0.349940 -2.036821 -2.946444 1.903035 3.103898 1.943548 0.705550 3.470842 -1.014402 2.254452 0.170269 -0.524677 1.134625 -1.847674 1.376990 -2.011998 -3.799544 2.394109 1.409092 2.415256 0.849466 -0.546386 -0.416850 -1.573466 -3.125866 1.225593 1.145476 0.747752 4.359586 3.199431 4.975755 -3.778626 1.285033 -0.237709 -1.548183 0.953500 -1.130758 -3.791637 0.232732 1.498840 -0.406210 5.380965 -0.536716 -2.054263 1.064930 0.044786 1.064373 -3.281686 2.639873 -2.719729 0.159900 -2.448332 -0.766351 -1.860831 -1.662390 -3.319292 -2.499000 4.917086 -4.854080 -4.470641 3.272234 1.027742 2.310500 -5.781587 1.747804 -1.795667 4.817293 -0.606871 -1.065338 0.203769 0.202679 -1.684841 1.488160 1.974982 -3.319489 1.491324 3.183168 0.855076 1.197036 0.532611 2.069594 -0.914982 0.379805 -3.496641 3.166749 -0.142332 -2.169979 -0.374385 -1.808419 1.452595 0.023696 0.739887 0.749332 2.811284 0.783668 0.088931 3.570362 0.684834 -1.822362 0.992360 0.002238 1.773547 -1.949680 -0.658806 -1.320597 1.338976 0.662766 1.223051 -4.761332 -3.521104 -4.797195 -4.220716 -0.221516 0.241166 0.865422 1.150282 -0.286483 -4.772067 -3.144891 3.474283 -1.823965 4.293082 2.701925 2.759648 3.569643 3.082436 -0.472800 -0.361695 0.524414 0.834897 -1.673713 -0.697370 -2.439379 2.777172 -1.568047 2.957865 3.166583 -0.262603 2.739803 0.330182 1.893767 -2.661736 5.251122 2.303455 -3.720377 1.062077 2.718146 3.023581 -1.476234 -2.668922 -PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -16.425489 -28.301738 20.626127 19.975828 7.358097 20.043935 11.502615 -5.788164 5.891089 22.076137 -8.548466 18.887986 -11.579545 -11.181703 -1.765524 0.348860 0.074372 -14.829275 5.028224 -2.473741 1.229441 -13.903616 -19.869446 26.587141 2.196197 -6.045140 -5.126915 0.256199 -34.301870 -25.578423 -7.900301 1.270837 10.620662 -5.271361 9.221170 -25.304225 11.600827 30.823922 0.908593 -26.313011 -0.832973 -5.484250 -7.163217 12.765342 -6.217999 10.328094 9.378841 -5.370804 -7.426089 6.121099 10.947348 -3.034629 18.420879 24.061882 9.598676 26.976907 23.614758 -0.376504 12.924614 2.631186 5.810118 -6.603649 13.257114 9.052434 -5.384336 -0.120164 -3.471703 9.357272 -13.574433 -0.232069 5.803350 -16.034548 -6.850786 -5.527924 -14.678295 -7.924041 -7.595501 -3.476318 28.096702 -4.747843 38.080624 18.355243 21.028902 -3.274907 22.819441 -1.949197 18.478981 8.159988 -17.072877 7.414918 -16.947022 -4.339053 -0.108577 18.217307 -20.993673 3.932754 11.824090 -16.046567 -26.635747 19.558168 -5.479462 -8.175853 -9.313802 0.108610 7.464373 5.742276 -9.886794 -23.355541 -18.909963 18.307152 -12.834747 -14.570222 -4.894566 0.185163 4.515387 3.364907 -11.167616 0.593021 23.757405 -12.786222 -9.716753 19.887784 -1.438115 18.997723 -4.981527 -1.205074 1.336695 0.608978 10.714124 4.289225 -1.640715 -16.579483 -35.582755 2.919285 -0.650381 -5.569585 -10.653437 -4.946745 15.279912 11.958253 18.491739 25.860201 -3.393758 19.379781 9.741862 4.145563 -5.218889 -25.224080 -4.945799 -8.405682 5.199147 -6.854723 -12.272007 -0.655712 14.821186 -4.484145 -2.780702 6.988191 -3.534565 15.357830 0.393732 2.060383 -2.619812 -13.079733 4.352103 -9.333085 -17.215673 13.904473 22.993433 10.897727 7.039192 -5.388916 -0.884804 1.092835 -15.028524 6.352807 -0.626014 4.308847 26.822347 12.883987 46.023060 -9.976064 -0.489881 -10.541353 -4.311520 5.255561 -8.626253 -20.688940 5.214136 5.330381 -0.096516 29.729381 -2.539652 -5.943484 9.326484 0.039298 1.403541 -18.652231 26.878477 -16.005708 -1.044927 -3.432698 -8.016518 -11.859559 -10.101640 -18.332727 -1.906745 25.450434 -14.105885 -19.953937 4.389746 -2.918641 -0.038379 -24.486942 21.338006 -8.971381 13.738409 -6.770195 -10.298392 -1.622883 13.530310 1.664228 1.435643 11.171159 -21.998022 15.764747 13.951465 0.026276 3.041183 8.610119 3.778809 -5.917205 -9.340030 -17.255292 11.086833 1.866367 -4.212074 -6.420868 -9.424270 17.976133 6.635654 -6.334565 -5.949365 16.490098 -13.067718 -12.478526 16.305300 -7.993567 -8.772936 3.093609 2.985519 14.181241 -11.604245 -3.687152 -16.331168 -2.395531 9.537516 4.677687 -24.773694 -1.314422 -11.819357 -15.627794 -7.455804 9.544565 9.206750 13.613376 1.763652 -30.922306 -18.310344 24.196040 -6.846946 2.336143 14.150591 16.965560 20.126857 6.286779 13.136033 -4.496005 -10.923454 -0.988855 -13.816803 -5.942455 2.382721 5.382937 -12.075726 23.308741 3.654506 3.981324 11.485106 3.590211 5.508919 -15.194081 27.417467 14.390910 -17.621923 -0.814862 10.140082 18.526469 -32.102105 -13.510634 -PE-benchmarks/bellman-ford-algorithm.cpp__main = -0.732118 -6.239432 7.555274 7.352905 0.893383 3.267405 3.536504 -2.858808 5.519685 5.553435 -1.203331 2.746002 -4.326436 0.764885 2.485271 4.491598 -4.402529 -4.740435 1.025937 -1.942578 -2.319403 -4.286087 -0.298033 1.567880 2.226713 0.138090 -2.478918 -2.568844 -4.676658 -4.079333 3.719847 -2.007251 3.823114 2.027088 1.367532 -14.693581 4.725589 3.374077 -1.409324 -7.487625 -0.230267 -2.020802 0.471008 -0.755097 0.625736 2.026919 2.525186 4.356759 1.722308 2.960835 1.228273 -1.028454 2.525690 11.515520 -1.776728 5.141415 4.898605 -0.689565 0.385855 1.545728 2.739716 -0.501857 4.353011 4.529276 -0.805118 -2.366157 -1.307302 -2.652300 -6.227414 3.311419 2.938862 -0.767547 -4.823584 -1.309186 -1.052408 -2.020031 -9.674488 4.640686 9.735920 -5.264423 7.744492 3.916806 5.830601 -0.211558 4.114133 0.001761 5.843704 2.339832 -4.974139 0.673357 -5.449688 -4.722468 0.633383 -0.829802 -2.139356 -5.473367 1.846355 0.370890 -6.205383 4.938506 0.474802 1.268071 -5.157698 -1.612275 4.417992 3.237597 -3.820320 -6.407999 -5.389572 1.141582 -2.639249 -3.125613 -0.118504 -1.050424 -1.820368 -1.959253 -5.878100 -2.241581 3.389338 -4.634186 -2.547151 5.009452 -2.879558 2.785477 -1.237560 -0.201665 -1.010300 4.110474 2.785758 3.217476 4.734829 -2.384699 -9.522355 2.683320 2.777587 5.582013 0.709126 -0.306497 -0.053126 2.828493 -0.849127 3.277232 1.853815 4.909447 5.386315 -0.611274 -4.615635 -5.028509 2.443108 -4.259888 3.647407 -4.961463 1.353742 1.329863 5.111152 2.211540 2.401070 4.206213 -6.350915 6.133416 -2.607668 2.943653 1.694659 2.690542 2.564935 -2.675826 -3.656459 1.737158 5.353666 0.365169 2.230231 -4.154196 0.941176 -3.183550 -4.306972 0.894714 1.477004 -2.408852 4.151151 2.077077 11.391244 -6.699421 0.665231 1.250650 -0.008021 0.694237 -0.350491 -6.969427 3.890050 0.081285 -0.145678 4.685668 -0.934715 -4.481050 1.780566 -0.741985 -0.027006 -2.011412 2.331467 -4.033317 -2.687336 -2.687426 2.315925 -3.783487 -2.785572 -1.974955 2.144911 7.443564 -1.923204 -4.529722 4.393309 -4.607499 0.804787 -7.771294 10.813874 -3.178339 0.333033 -4.468729 -3.402481 -1.576962 3.955807 -0.931089 0.279938 3.657021 -2.807664 2.032149 7.535182 1.301964 1.313015 2.498396 3.589866 0.202876 -0.637717 -2.158790 5.280170 -1.437520 0.207327 -1.538742 -2.702865 4.857363 -0.371013 -0.587002 3.930097 4.292097 -0.877314 1.952110 3.695553 0.690925 -3.884875 2.821385 0.558967 5.241278 -3.114390 0.680827 -2.228612 -0.515139 -1.747600 3.529284 -6.166156 -4.114261 -2.215315 -3.067784 -3.722428 3.990164 1.903068 0.188122 0.700901 -7.261316 -3.033303 1.487300 -2.620582 -1.705565 3.600568 3.059212 5.350990 4.881812 -0.708345 -3.173227 -1.258665 -1.300880 -2.893931 -1.604737 -1.866154 3.033886 -4.529434 4.099670 3.674094 0.300744 0.541539 -1.298073 7.854727 -3.001306 8.254256 4.132491 -2.939824 1.718847 5.571944 8.620764 -2.949123 -3.872066 -PE-benchmarks/permutations-of-a-given-string.cpp__main = -1.005851 -4.071248 6.385807 4.159184 0.359379 2.563462 4.362859 -4.333432 5.066941 1.823950 -1.159751 -0.167249 -5.566404 -0.256664 -2.397876 1.185841 -3.352092 -4.129614 -0.651405 -2.974030 -0.902576 -4.667274 3.106233 1.345944 2.345041 0.782117 -1.148490 -2.165008 -5.520750 -3.440753 5.255731 -0.525144 2.575433 1.467032 -0.610606 -8.320919 3.818421 3.684111 -1.846965 -5.151834 1.860035 -0.466597 -1.991446 1.300590 0.473275 0.807409 0.342912 4.590596 1.856716 2.264233 2.262339 -1.192356 0.749022 7.509146 -2.700340 4.504552 3.574013 1.353851 0.378869 3.377737 0.757467 0.828784 2.032081 4.692573 -0.858537 -0.838456 1.152216 -2.381741 -6.500125 4.348133 -0.199399 -1.436525 -2.433483 -1.153209 -1.907831 -0.042013 -2.546956 2.838465 8.102570 -3.376114 5.963821 1.657716 2.594778 -2.764764 0.853702 -0.756860 2.465948 1.375957 -2.720228 -1.771918 -6.242390 -1.314052 -0.509911 -0.485966 -1.872961 -4.840280 3.999844 -3.086212 -5.613617 1.814208 0.945869 -1.004704 -2.992369 1.465121 2.120878 1.618034 -3.202727 -5.683517 -3.465783 2.570669 -2.174398 -0.436822 0.087806 0.967549 -1.881679 -2.037242 -4.493261 -1.599625 0.984801 -4.339144 -2.149395 3.799309 -2.638144 2.852415 0.974065 1.339393 -0.786890 2.587698 1.577935 1.661728 3.990252 -0.150769 -3.496882 0.599511 2.098882 5.143452 -0.081798 0.538637 0.006622 1.686798 -1.584274 1.336894 -1.354040 0.424457 2.911847 -2.633164 -3.167875 -1.364973 1.012249 -6.358500 1.764266 -4.239765 -1.401856 0.258859 3.405036 2.566351 1.545228 6.448843 -5.060449 3.093428 -0.392731 -0.150804 -0.187302 1.002392 2.759476 -1.963076 -5.145679 0.080009 1.922634 0.445428 0.703287 -2.218494 -1.429824 -4.886215 -3.656642 0.100949 1.185131 -2.349300 1.981853 3.256496 4.267154 -5.482329 0.759221 2.257964 -0.684841 0.306815 0.010884 -7.185433 2.705076 0.338751 1.397045 4.495418 -0.075224 -2.043807 2.560057 -1.884017 0.748465 -3.243576 1.185864 -4.276419 -1.873441 -4.106206 1.500402 -1.407596 -2.694575 -1.138389 0.277119 5.030923 -1.291838 -4.084113 5.308103 -0.516936 1.256183 -6.379581 5.338511 -1.668535 2.287568 -1.056723 -0.429753 -1.181705 1.394525 -0.411050 -0.946442 0.729541 -1.686105 4.635078 7.328664 0.790765 1.051508 1.766928 4.342069 -1.739430 -0.253677 -3.621017 3.900098 -1.052844 -4.401879 0.755096 -2.195914 2.223507 -2.564040 0.171918 5.080386 4.776448 -0.711054 3.354723 1.952301 2.447845 -2.088942 3.127413 1.695844 3.696631 -1.890255 0.008170 0.041015 0.242772 -2.563108 3.719379 -5.479330 -7.011388 -2.073472 -7.409397 -1.324658 -3.036199 2.588016 -0.342537 0.521013 -5.885702 -3.310747 0.734477 -2.229362 3.124833 3.693880 3.533642 4.046594 6.245154 -2.626825 1.046646 1.187513 2.529214 -3.460384 -2.796715 -1.512386 1.879173 -2.209033 2.567076 3.515158 0.882945 1.436882 -3.269503 4.368003 -4.279774 6.433368 3.228072 -1.336898 3.970141 1.241156 6.612087 1.846129 -2.303599 -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.853076 -1.236537 1.610324 1.349617 0.088171 0.861114 0.471269 -0.953304 1.442945 0.461320 -0.035693 0.395119 -1.208403 0.211070 -0.335542 0.447614 -0.894304 -1.240369 -0.237261 -0.933695 -0.679126 -1.084076 -0.072923 0.529081 0.357760 -0.207480 -0.801776 -0.185579 -1.805786 -0.504006 0.990826 -0.310698 0.823150 -0.308188 0.138811 -3.559255 1.012034 1.134314 -0.368923 -1.543198 0.161974 -1.089246 0.314916 -0.302816 -0.366361 0.076533 0.081190 0.075385 0.693808 0.041038 0.452148 0.292012 -0.305999 2.839064 -0.922448 1.186793 0.681936 -0.006040 -0.439723 0.447721 0.345348 0.152871 1.060391 0.765323 -0.717834 -0.716385 -0.001766 -0.522959 -1.515497 0.902139 0.138964 -0.488068 -0.695460 -0.368577 -1.202471 -0.771682 -0.339765 0.802172 1.956580 -1.195828 1.487649 0.318897 0.940438 0.221462 1.182327 -0.063535 1.614319 0.284978 -0.900365 -0.017017 -1.167012 0.082885 -0.077978 0.407486 -0.590697 -1.127876 0.730437 -0.970090 -1.622607 0.754272 0.154669 0.130316 -1.730145 -0.347511 0.825059 0.650897 -1.004267 -1.623470 -1.099714 0.828576 -0.176019 -0.616221 0.229288 -0.640157 -0.256282 -1.126671 -1.345009 -0.325972 0.593771 -0.876766 -0.975535 1.544879 -1.070052 0.351476 -0.061642 0.343777 -0.462816 1.177239 -0.057264 0.489875 0.111509 -0.416444 -2.021811 -0.459616 0.166714 1.641948 -0.273783 -0.156575 -0.217670 0.365681 -0.579473 0.247881 -0.147929 0.725860 1.098702 -0.295726 -0.727497 -0.698674 0.370205 -1.675364 0.199355 -1.045234 -0.223049 0.510774 1.153311 1.155273 0.597873 1.849212 -0.906781 1.178994 -0.257922 -0.240570 0.862064 0.030148 0.779972 -0.753395 -1.186379 0.465000 0.556015 0.462436 0.350715 -0.517821 -0.163877 -0.949753 -0.909301 0.130743 0.603436 0.020712 1.169338 0.809668 1.718868 -2.290193 0.574603 0.307134 -0.335876 0.457275 -0.343442 -1.475866 0.407269 0.481178 -0.496588 1.291397 -0.283720 -1.037255 0.276250 -0.176238 0.569104 -1.021566 0.412942 -1.058265 -0.347234 -0.996190 -0.192103 -0.796295 -0.596306 -0.831052 -0.570402 1.620082 -1.004920 -1.515416 1.443605 -0.063567 0.837861 -2.189866 1.236391 -0.777333 1.229116 -0.904244 -0.115788 -0.308274 0.960098 -0.368141 0.485189 0.751663 -0.959829 0.666861 1.902862 0.371708 0.613100 0.246658 1.129304 -0.020877 0.169607 -0.782000 1.413018 -0.185801 -0.642679 0.186406 -0.756836 0.654990 -0.088924 0.322446 0.959521 1.433521 0.134991 0.541086 1.361185 0.437705 -0.619654 0.557075 -0.085574 0.828295 -0.532358 0.033580 -0.200089 0.500228 -0.215405 0.412588 -1.556592 -1.725258 -0.994450 -1.540574 0.114771 0.282754 -0.098982 0.132736 0.088924 -1.763720 -0.736809 0.536407 -0.735250 1.642583 0.555885 0.882204 1.183289 1.489968 -0.803149 -0.410771 0.317254 -0.103453 -0.589292 -0.368757 -0.897140 0.959626 -0.954289 0.927016 1.054255 -0.110800 0.429515 0.346058 1.014148 -0.829575 1.956432 0.826745 -0.665555 0.980902 0.968362 1.943742 0.034107 -0.830560 -PE-benchmarks/find-two-non-repeating-element.cpp__main = -0.603998 -2.323346 3.934320 3.239997 -0.358353 1.678409 0.302137 -2.443539 2.169885 0.223954 -0.662012 1.612688 -1.862138 0.702985 -1.740663 0.938418 -2.645820 -2.189434 -1.110960 -1.779552 -1.231814 -1.724438 -0.169469 1.661794 0.996787 0.900526 -2.110831 0.461152 -3.519427 -2.429527 1.521477 -0.231344 1.404363 -0.790841 0.714447 -6.206314 2.651585 2.957092 -0.802206 -3.298393 0.713072 -1.709567 -0.809612 -0.737434 -1.208322 0.275785 -0.406516 0.489264 0.807103 0.217334 0.275310 1.451469 0.189361 5.270860 -1.033165 2.717357 2.445580 0.422792 -0.203760 0.564954 0.802465 0.859810 1.367802 1.464760 -0.726485 -1.829116 -0.176801 -0.766067 -2.049337 2.102839 0.145272 -1.431861 -1.349143 -0.957644 -3.249091 -0.628551 0.043997 1.852043 3.808966 -2.277622 2.612919 0.639571 1.533469 0.357768 2.072243 -0.135960 3.182823 1.140142 -1.007153 -0.103745 -2.364355 -0.123685 0.377420 0.361956 -2.156372 -2.779693 1.804448 -4.317115 -3.160116 1.363590 0.723637 -0.926510 -1.967704 -0.706947 1.390353 0.710756 -1.376533 -2.505035 -1.543060 2.083501 -0.236718 -1.247901 0.295613 -0.149721 0.151630 -0.792370 -3.104972 0.422700 1.462068 -0.926022 -0.979338 2.704449 -0.971964 0.378363 -0.542223 0.508266 -1.004267 1.955929 -0.452195 1.091984 -0.455036 0.281868 -2.332113 0.053304 0.675765 1.308640 -1.473638 -0.431174 -0.101114 1.077719 -0.942774 0.642398 -1.528023 1.202679 1.386770 -0.570812 -1.811181 -1.975857 -0.803290 -3.428893 -0.045338 -1.713301 -2.118308 1.078528 2.308794 2.105570 1.318203 2.711989 -1.579562 1.589423 0.061359 -0.105487 1.432169 -0.888072 1.072073 -1.352866 -2.812758 1.697102 0.470994 1.307461 0.550570 -0.464362 -0.199789 -1.629797 -1.709038 1.277379 1.263930 0.448484 2.620785 2.100677 2.794834 -3.394223 0.969833 0.728323 -1.107263 0.541275 -0.635915 -2.785193 0.626891 0.994231 0.634244 3.566532 -0.342741 -1.394407 0.637975 -0.001911 1.067933 -2.012049 1.220244 -1.918513 -0.491348 -1.876034 0.001557 -1.172579 -0.783620 -2.073009 -1.987573 3.372023 -3.480903 -3.229719 3.308062 -0.135316 1.799350 -4.109863 1.184764 -1.400449 3.127273 -0.289294 0.033386 -0.068276 0.052276 -1.894929 1.194305 1.433155 -2.206344 1.029783 3.019894 0.769721 0.930375 0.023471 1.862430 -0.872146 1.036097 -2.106058 2.663135 -0.321781 -1.920116 -0.017616 -1.227836 0.522111 -0.895287 0.867714 1.390335 1.971234 1.266642 0.857333 2.443367 1.427398 -1.569345 1.311513 -0.214766 0.716577 -1.356501 -0.514240 -0.138285 0.946722 -0.323609 0.879391 -3.314435 -3.267333 -4.131043 -3.411405 0.253751 -0.941895 0.540439 -0.061951 -0.440666 -3.304012 -2.244173 2.400135 -1.208602 2.974325 2.006674 1.577148 2.271546 2.706762 -1.429756 0.164248 0.328304 0.482361 -0.727185 -0.710471 -2.214012 2.479899 -1.171434 1.431646 2.906841 -0.484126 1.754310 0.531769 1.584553 -1.595724 3.943786 1.564095 -2.092501 1.166032 1.716797 2.801859 0.110252 -1.931078 -PE-benchmarks/boyer-moore-algorithm.cpp__main = -0.416090 -6.061176 10.218126 6.912660 0.819205 3.846533 7.142066 -7.421115 8.260459 3.398554 -2.111166 -0.300335 -8.564677 -0.129957 -3.932334 2.849823 -5.778406 -6.227311 -1.069454 -4.501805 -1.204541 -7.669478 5.621991 1.306777 4.361243 1.501783 -2.016725 -3.296373 -8.572740 -6.441719 8.602607 -0.876014 3.858718 2.061485 -1.421255 -12.619239 6.818856 6.102845 -2.940140 -8.199199 3.089124 -0.441330 -3.777268 1.905573 1.301207 1.566129 0.015679 7.788623 3.526007 4.025177 3.882879 -1.880404 1.417921 11.293286 -4.754259 7.377510 5.248930 2.146030 0.587279 5.717323 1.391263 1.960098 3.057779 8.088967 -0.786088 -1.647853 1.750656 -3.672572 -10.341055 7.396580 -0.676764 -2.370269 -4.453600 -1.294021 -2.261863 0.787190 -4.846649 4.754187 12.728056 -4.723767 9.672573 2.141139 3.560827 -5.253315 0.560715 -1.475244 3.531977 2.267052 -4.102313 -3.495414 -9.436326 -2.670977 -0.053084 -0.776916 -3.039251 -7.249453 6.113875 -4.114198 -8.746824 2.093715 2.080323 -1.932615 -4.411165 3.026829 3.174709 2.347654 -4.364251 -8.853115 -5.011514 3.745499 -3.550583 -0.813002 -0.401822 1.453069 -3.543539 -2.817750 -7.007869 -2.835749 1.156022 -6.587870 -3.382778 5.303056 -3.917728 3.807005 1.175432 1.862898 -0.986504 3.816594 1.758488 3.381867 6.956437 0.527895 -5.571827 1.579052 4.162244 7.919802 0.143748 1.447858 -0.255578 2.733031 -3.115715 2.305417 -2.497881 0.666655 4.848807 -4.434402 -5.221569 -1.636929 1.798733 -9.875639 3.171199 -6.597443 -2.290026 -0.080396 5.678488 3.440016 2.943467 10.247954 -8.997365 4.568001 -0.478255 0.079517 0.204441 1.720807 4.175507 -3.024599 -7.812699 0.330582 2.793200 0.379831 0.687210 -2.858751 -2.219516 -7.849135 -5.375281 0.736522 1.490118 -3.972898 2.674692 4.806363 7.175119 -8.288995 1.375475 4.450583 -0.688763 0.196397 0.478179 -11.476757 4.692409 0.183066 3.233811 7.083594 0.042887 -3.064948 3.581550 -3.130589 1.044569 -5.051262 1.949648 -6.514401 -2.685055 -6.235254 2.366478 -1.303532 -4.349921 -1.469615 1.100970 7.667829 -1.381171 -6.497967 8.764423 -1.647986 1.507162 -9.697918 8.958733 -2.801571 2.483952 -1.608182 -0.589354 -1.537821 1.933408 -1.322914 -1.516544 1.043543 -2.245987 7.419227 11.949963 1.441967 1.079139 2.107727 6.664752 -2.868500 0.064877 -5.354218 6.184565 -1.370195 -6.604237 0.874019 -3.525992 3.065872 -4.800137 -0.164633 8.930752 7.438246 -0.775106 5.609319 2.158751 4.654401 -3.487870 5.768006 2.918867 5.291827 -2.504192 -0.318917 0.971256 -0.082247 -4.391140 6.303995 -8.376862 -11.273344 -2.713007 -12.024185 -1.943851 -5.455423 4.978425 -1.047430 0.704862 -9.264723 -5.394729 1.823002 -3.343701 5.010146 5.615409 5.100590 5.427455 9.388190 -4.381851 2.553374 1.084610 4.484273 -4.956126 -4.853886 -2.113529 3.519729 -3.688505 3.676555 5.850995 1.024819 2.011089 -5.927187 7.052573 -6.631692 9.642477 4.675897 -1.527408 6.362026 1.393953 10.394819 3.191473 -3.642841 -PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -5.310293 -8.868748 8.190186 6.045595 1.542891 4.887166 4.320381 -2.489710 4.059657 3.688516 -3.296575 5.586353 -5.125116 -2.453694 -1.141983 0.220881 -2.737686 -5.752299 0.762823 -1.199956 0.165337 -5.500319 -4.346791 7.476311 1.565591 0.717809 -2.307782 -0.101296 -12.556993 -7.122301 1.423255 -0.304762 3.773236 -2.185461 1.481516 -12.383942 4.438247 9.457773 -0.755608 -10.632398 1.357043 -2.032055 -2.650782 1.863971 -1.467485 2.716552 2.938822 0.982324 -1.246175 1.784246 0.960175 -1.207854 3.052868 10.213008 0.215672 9.615397 10.648896 0.535434 2.094770 1.374893 1.449502 -1.382999 3.920553 4.982133 -3.259913 -0.705673 0.825782 0.299960 -6.540419 1.959929 1.548569 -3.986667 -2.668239 -2.157319 -5.969261 -0.977579 3.962986 1.546803 10.764395 -2.976405 12.966734 4.843601 6.240795 -1.343705 4.569733 -0.690760 4.839828 2.622197 -5.258704 -0.397276 -9.624732 -2.523691 -0.733417 5.199907 -5.095718 0.235373 4.087027 -7.434235 -9.110401 3.765708 -1.095034 -1.985834 -4.585417 0.766566 2.983367 2.850973 -2.144807 -7.461864 -7.018949 5.673781 -4.304801 -3.194423 -1.136435 0.964571 -0.907602 -1.383719 -5.834577 -0.395609 7.343494 -4.857981 -3.794400 5.508033 -3.809642 6.771790 -0.762980 0.925807 -0.215158 1.994792 4.063072 0.765471 3.253311 -5.644094 -9.178472 -0.430764 0.129373 5.212103 -3.829746 -0.526603 4.203605 2.356804 3.863861 5.102752 -2.726107 4.453496 2.805935 -0.949109 -2.875525 -7.806017 -1.057519 -6.196385 2.196594 -3.757313 -4.125870 0.478521 4.486775 0.644422 0.357509 7.283159 -4.109378 5.152875 0.503334 0.244886 -0.516562 -2.915548 2.210820 -3.225896 -6.170270 3.200639 4.958242 1.648932 1.931265 -2.210009 -0.794851 -3.350379 -6.093084 2.522111 -0.128605 0.572078 7.749581 3.813595 13.907800 -6.908089 0.325227 -1.129384 -1.284838 0.839254 -1.392329 -7.516978 2.433629 1.372135 2.107578 10.383116 0.138625 -3.542843 2.827533 0.288654 0.454004 -4.945819 8.498219 -5.605703 -1.323756 -2.777840 -2.257148 -3.076247 -3.309222 -5.980647 -0.684035 8.404959 -4.006213 -9.595853 3.097002 0.811336 2.815560 -11.451307 7.145247 -3.248311 7.162174 -1.800588 -1.774178 -0.659302 1.091868 -0.120668 0.692894 2.764830 -6.492895 5.458535 6.106557 0.703311 1.383617 2.774394 2.171336 -1.637433 -1.693901 -5.021047 3.252298 -0.159387 -4.002644 -0.755540 -2.554014 6.092569 0.550260 -1.428332 0.505326 6.416201 -2.025926 -0.129527 6.081854 -0.820010 -3.237790 2.473257 1.304586 5.683932 -2.771277 -1.175884 -3.975569 0.122795 1.803759 3.466538 -7.723914 -6.023522 -3.977139 -10.704236 -2.141419 -0.266690 3.119651 3.123354 0.949025 -11.666285 -4.734576 5.905152 -1.820610 7.392385 4.473059 5.431053 6.090785 4.007528 0.071505 -1.687118 -0.292784 1.731956 -5.236477 -2.506881 -1.869664 2.373249 -3.166652 5.973762 4.077020 0.696454 2.717950 -1.309691 2.587394 -4.618801 10.634951 5.028366 -6.489118 1.697759 1.507748 8.476977 -6.939687 -4.275842 -PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -1.512844 -2.741100 1.903656 1.898641 1.261160 1.725756 1.401769 -0.485610 1.629714 2.296035 -1.238442 1.220696 -1.634903 -0.846073 0.509317 0.297968 -0.215254 -2.031579 0.898163 0.019458 0.034243 -1.998017 -1.117449 1.521580 0.259367 -0.138584 -0.441086 0.181991 -3.397216 -2.487178 0.382664 -0.397222 1.081014 0.661169 0.485479 -3.057691 1.381360 2.293987 -0.024839 -2.810824 -0.308795 -0.856430 -0.623134 0.682420 1.024385 1.423355 1.376731 0.547235 -0.307911 0.640755 0.974439 -1.326934 0.580347 2.122039 -0.029553 2.570593 2.562676 -0.110356 0.877962 0.598152 0.622793 -0.737266 1.724913 2.202579 -1.387341 0.090310 0.246458 0.093407 -2.052788 0.542186 1.052418 -0.666103 -0.877002 -0.433172 -0.522392 -0.512570 -0.769918 -0.244648 3.640266 -0.270560 4.230667 1.955203 3.087839 -0.616975 2.015440 -0.343051 2.255231 0.782311 -2.686172 0.026194 -2.851253 -1.326364 -0.468240 2.316963 -1.047540 2.073463 0.583666 -0.556471 -2.353257 1.331679 -0.840698 0.091201 -1.897853 1.042729 1.466885 0.591239 -0.436058 -2.598300 -2.161656 0.788542 -2.176254 -1.201796 -0.645902 -0.185924 -0.670783 0.039149 -1.472468 -0.999432 1.886054 -1.957575 -1.399394 1.729296 -1.366246 1.697731 -0.469141 -0.274071 0.191332 0.044077 1.312712 0.451884 1.728774 -2.262734 -5.008312 0.357679 0.345795 1.459945 -0.902083 -0.250618 1.295119 0.735814 0.830990 1.473254 -0.377024 2.041967 1.555831 -0.349476 -0.864393 -2.326187 0.561796 -0.980389 1.251708 -1.272083 0.070254 -1.009053 1.761143 -0.165480 0.223915 2.191909 -1.791402 2.461013 -0.403111 0.816997 -0.114225 -0.165067 0.696831 -1.083352 -1.380287 1.146990 2.423394 -0.096197 1.022878 -1.353152 0.012910 -0.980124 -2.208852 1.027965 -0.616366 0.080091 2.139860 0.633934 4.966908 -2.431791 0.528794 -0.297870 0.383989 0.309324 -0.095926 -2.186330 1.514748 0.108240 0.811525 2.356147 0.111322 -1.485062 0.121078 0.242346 0.001545 -1.641597 2.358447 -1.627700 -0.174769 -0.403257 0.068334 -1.200641 -1.502399 -0.667141 1.258921 2.488983 0.678556 -2.815482 0.581118 -0.793350 0.454314 -3.270547 2.080250 -1.359844 0.959290 -1.545028 -0.819020 -0.362629 1.524879 0.516041 -0.000386 1.140869 -1.730063 2.007798 1.499797 0.247130 0.696193 1.177955 0.367239 -0.056740 -1.312101 -0.995431 0.803842 0.318953 -0.260044 -0.694043 -1.123379 2.457523 0.785865 -1.067022 0.051000 2.639566 -1.488039 -0.120903 1.538714 -0.592415 -1.142705 0.320301 0.634208 2.068277 -0.867077 -0.379554 -1.505336 -0.691847 0.244951 0.998053 -2.237230 -0.963296 0.865910 -2.428903 -1.357501 1.285520 1.036118 1.475447 0.864074 -3.300199 -0.867059 1.177885 -0.521986 1.355547 0.807402 1.593322 1.562634 0.734623 0.435505 -1.448584 -0.856287 -0.064152 -2.021244 -0.694835 -0.075775 0.669074 -1.345582 2.227395 0.332718 0.035104 0.116164 -0.447715 2.187821 -1.257420 3.073556 1.704856 -1.454767 0.270902 0.481530 3.333856 -2.257799 -1.335424 -PE-benchmarks/euler-circuit-directed-graph.cpp__main = -1.461178 -4.335350 6.755061 5.346684 1.221301 3.005123 1.917618 -2.797513 4.140976 3.732511 -2.302997 0.239934 -4.147274 -0.969813 0.533787 2.635243 -3.626848 -4.440009 0.272620 -1.205940 -1.054819 -3.990609 1.398688 1.592257 1.935532 2.808462 -2.302204 -0.292419 -2.885958 -6.425226 3.666182 -1.189952 3.101878 3.975568 -0.360236 -9.026434 6.338627 4.210310 -1.367776 -4.027113 0.819767 -0.153167 -1.941287 0.494365 -0.988307 2.790111 1.795897 3.647896 0.708562 2.977424 2.251295 -2.500391 3.109340 6.557136 -0.111701 4.943119 4.317518 0.964426 0.842075 1.773912 1.230984 0.371044 2.928999 4.499840 -1.078541 -0.196695 0.746750 -2.073880 -5.752028 3.365908 -0.413083 -1.694652 -2.149658 -1.350970 -0.779950 0.111761 -1.691738 2.545408 7.529208 -3.480635 6.406743 3.277723 4.039434 -1.013250 0.382166 -0.645363 2.649566 2.421938 -3.260270 -1.129196 -4.691376 -4.240446 0.166807 -0.703625 -3.442392 -2.763707 2.352837 -3.427312 -5.162206 2.396499 -0.035174 -0.676858 -3.132344 -0.149399 3.701678 0.641348 -1.381580 -4.427404 -2.699686 1.712684 -3.454400 -1.131069 -1.755334 1.195666 -1.734926 1.053082 -5.510354 -0.850686 1.713670 -4.020283 -0.604421 3.803574 -1.846657 2.391576 -0.703206 0.460585 -1.108370 3.278062 2.254925 2.125917 3.162468 -0.068602 -2.956243 1.558546 2.363708 1.928447 -1.063869 -1.486516 0.722091 1.599808 -1.338135 2.490893 -1.691404 1.230773 4.694008 -0.993715 -4.016662 -3.270019 -1.824889 -6.844715 2.713827 -3.996282 -0.861344 2.352162 4.261704 1.663149 2.328466 5.855581 -6.137801 3.114902 -1.881853 1.323967 -0.672072 0.928624 1.825843 -2.307045 -4.014001 2.841212 3.886007 0.071276 2.046240 -3.362479 -0.064177 -3.746049 -3.859260 2.498995 -0.617371 -0.909980 2.085048 2.012667 7.485388 -3.369165 0.762533 1.939784 -0.200948 0.663120 0.922599 -6.077221 2.552024 -0.112764 1.847456 5.265924 0.391074 -2.451624 1.557587 -0.883282 -0.461445 -3.491612 3.303256 -3.601590 -0.620737 -2.487836 0.944298 -2.351496 -2.221649 -0.832513 0.292723 5.436872 -1.506323 -4.102694 3.732260 -0.977946 0.879694 -5.373008 4.936988 -3.077319 3.209892 -0.629358 -2.573516 -0.691699 -1.328706 0.853618 -1.065433 1.180188 -1.138227 3.023266 5.160406 1.110936 0.465354 1.945003 2.349769 -0.830939 0.560965 -2.405180 2.464771 -0.576334 -2.111831 -0.660461 -2.235559 2.480065 -1.651434 -1.731822 2.834535 4.714504 -1.191533 2.038498 1.984602 1.743206 -3.428261 1.790494 1.839120 3.945029 -2.311787 -1.055687 -0.673502 0.422959 -1.379007 3.115597 -5.421518 -5.114006 -4.323631 -6.018369 -3.392432 0.286122 3.083266 -0.204920 0.893064 -4.473540 -2.997104 4.067314 -2.277717 2.822474 3.470078 3.482924 4.451506 4.562143 -1.703364 -2.075422 0.196253 0.582110 -3.200281 -0.680342 -3.002127 3.804024 -0.870389 2.804453 3.154003 -0.723865 0.857133 -2.406084 4.128113 -2.945249 6.617131 2.878288 -2.184234 2.152924 0.004138 5.470309 -1.346532 -3.071283 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -4.589819 -14.673273 17.410090 15.676150 1.943403 10.149002 3.735241 -9.420843 10.576829 10.735951 -6.232828 8.061888 -10.388751 -1.927196 -0.016053 6.199946 -8.180393 -10.491163 0.801293 -4.102170 -2.101756 -10.680014 -1.517889 9.546098 4.627873 6.209607 -5.215723 1.469441 -14.845204 -20.050358 4.073343 -1.710427 8.335852 5.510527 3.569109 -21.395777 13.014719 15.348321 -2.037929 -18.456603 1.375700 -3.646719 -5.681656 3.022210 -0.557115 7.769848 3.668586 4.865811 0.849855 5.960637 3.810285 -2.087525 8.650896 14.548668 0.428850 15.233340 13.488915 0.045499 3.073088 3.073663 4.144880 0.372236 9.335218 10.718747 -4.231982 -4.401020 -0.118450 -0.215271 -13.877757 7.462405 1.530404 -7.638578 -7.150444 -5.224686 -5.388490 -1.162815 -4.132733 5.812227 21.057736 -6.035107 19.458842 8.332201 9.898480 -4.679107 9.537893 -2.896585 13.094923 6.491256 -9.860281 -1.411683 -11.073498 -9.994203 1.166333 5.725863 -9.762360 -0.262613 7.170327 -12.252054 -15.965677 8.077432 0.439996 -3.420118 -10.883403 0.503030 8.853744 4.763390 -3.778710 -13.936843 -8.161972 7.418733 -7.560425 -7.843773 -5.393949 2.408772 -3.196253 3.559788 -12.671037 -2.989871 9.324803 -9.912954 -4.550925 10.529291 -2.904331 7.389798 -2.952608 1.262398 -0.391078 5.527319 4.379306 6.264005 8.022259 -3.190065 -12.543712 6.104616 3.521245 1.096838 -5.576333 -1.801188 3.977844 5.617206 1.008676 8.521394 -6.645369 8.974549 11.735735 -0.764022 -8.340286 -11.080898 -3.089721 -13.218076 5.042129 -10.010675 -3.969298 2.233391 11.134509 0.988441 3.433499 11.960344 -13.243731 8.984150 -0.874757 4.150112 1.899231 0.464988 4.704337 -7.106060 -11.697127 8.538772 11.003038 1.487662 4.191869 -5.549668 -0.510966 -6.545369 -11.921404 9.520119 0.511455 0.940350 12.220757 6.728964 25.448029 -9.117428 1.854313 0.887274 -1.728154 2.219088 -1.790735 -16.679826 6.987813 1.140387 8.566082 17.603572 -0.993259 -5.903999 3.612972 0.319349 0.837942 -10.386952 12.453391 -12.085380 -0.435296 -5.212056 -1.154383 -5.257876 -7.330944 -6.435663 2.135144 17.026570 -5.844651 -15.137765 11.291346 -6.943107 4.603765 -19.425182 9.974497 -7.799297 7.565670 -4.416921 -4.275840 -1.718182 -0.814030 -1.778718 -0.883113 6.994138 -7.392739 9.189835 12.835765 1.531657 0.908654 4.782635 5.178561 -3.136272 -0.421568 -8.739548 10.196404 0.211854 -2.242695 -3.798101 -6.563857 7.832506 -2.439719 -4.323731 4.745809 11.733279 -3.765187 1.598346 7.587298 2.083737 -8.311662 8.476708 2.768909 8.426300 -6.576952 -2.773211 -3.895649 0.290070 -0.694211 8.593221 -15.832214 -11.474580 -8.422300 -16.028039 -7.573674 1.361249 9.360995 2.667604 0.940513 -15.483458 -10.391111 12.160700 -3.811134 9.192501 8.511151 10.328842 11.032276 9.722472 0.255024 -3.040910 -5.369425 0.451424 -8.845015 -5.277419 -2.912462 7.058730 -4.196277 10.162818 8.624361 0.141974 4.836759 -5.836772 9.891197 -8.942353 17.531148 9.224055 -8.187804 4.506138 3.277309 14.253095 -8.937869 -9.494629 -PE-benchmarks/cutting-a-rod.cpp__main = -0.576069 -1.865888 1.999176 1.707422 -0.003129 0.930869 0.807852 -0.560850 1.031801 0.450352 -0.722349 1.148089 -1.253882 -0.076371 -0.472156 0.385732 -1.175043 -1.340473 0.133588 -0.233950 -0.237160 -1.052385 -0.522795 1.270444 0.547562 0.731274 -0.657516 -0.157478 -2.176713 -1.077557 0.636885 -0.259721 0.904864 0.216808 0.421387 -3.245515 1.007916 1.735565 -0.245864 -2.301544 0.261470 -0.816987 -0.251881 -0.408036 -0.361038 0.494165 0.609691 0.922667 -0.015144 0.369986 -0.248990 -0.089630 0.606212 2.586368 -0.048602 1.604441 1.930366 0.144469 0.275627 -0.005922 0.599706 -0.210781 0.861826 0.945422 -0.571404 -0.500012 -0.349955 -0.512540 -1.338355 0.611393 0.368407 -0.319476 -1.102745 -0.449001 -1.347433 -0.293821 -0.987888 0.948777 2.453314 -1.274438 2.276919 0.817976 1.396621 -0.048295 1.050473 0.088695 1.129579 0.703098 -0.993356 0.051424 -1.779899 -0.604152 0.031698 0.140755 -1.022681 -1.264962 0.933523 -1.563875 -1.805639 0.922694 -0.025065 -0.353419 -0.566110 0.037108 0.702572 0.896499 -0.845966 -1.489349 -0.986575 0.819651 -0.447016 -0.761454 0.073192 0.484101 -0.153449 -0.622483 -1.554197 -0.042391 1.257568 -1.050023 -0.127916 1.360199 -0.570349 1.019778 -0.310660 -0.083144 -0.150926 1.174053 0.731796 0.232835 0.438994 -0.561105 -1.595106 0.345799 0.448936 1.395891 -0.837971 -0.094171 0.564748 0.668491 0.387089 0.339057 -0.330793 0.806433 0.596143 -0.422977 -0.938317 -1.692369 -0.389086 -1.322936 0.337158 -0.954421 -0.398976 0.746264 1.254224 0.620022 0.356937 1.617463 -1.272109 1.075795 -0.043620 0.166081 0.198250 0.173967 0.568185 -0.727973 -1.290363 0.921066 0.892655 0.570190 0.404825 -0.492541 0.096531 -0.792719 -0.990452 0.741398 0.549073 -0.068008 1.634703 0.878246 1.655689 -1.433172 0.073090 -0.040328 -0.318635 0.168280 -0.180919 -1.776026 0.974890 0.201195 0.319425 1.654292 -0.117673 -0.743605 0.724058 -0.132269 0.149425 -1.046643 1.055081 -1.146858 -0.591773 -0.879880 0.317811 -0.672538 -0.714393 -1.192751 -0.397619 2.006409 -1.286519 -1.420453 0.734084 -0.116044 0.823169 -2.120861 1.499346 -0.804876 1.502516 -0.200053 -0.444242 0.074383 0.031224 -0.286666 -0.197498 0.897718 -0.983959 0.617991 1.369730 0.361506 0.093772 0.657932 0.796956 -0.292865 0.011303 -0.906776 0.815833 -0.154151 -0.651744 0.030302 -0.661411 0.948532 0.041130 0.005713 1.177007 1.182158 0.309470 0.625564 1.073270 0.254441 -0.912510 0.276350 0.023052 1.293483 -0.834329 -0.178311 -0.825298 0.414846 0.049718 0.708326 -1.824637 -1.724388 -1.432660 -1.681942 -0.478881 -0.264571 0.563084 0.193559 0.086706 -2.121051 -1.195938 0.942953 -0.647233 1.137465 1.063706 0.872759 1.440450 1.016424 -0.352916 -0.453421 0.296535 0.440047 -0.703079 -0.147045 -0.805110 0.716925 -1.037488 0.960464 1.362547 -0.222159 0.596263 -0.180617 1.443749 -0.972497 2.423855 1.101787 -1.617515 0.368727 1.006619 1.761011 -0.645614 -1.125807 -PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -3.221684 -4.974300 3.944234 3.748928 1.529166 3.070215 2.759009 -1.444992 2.714137 3.760831 -1.289754 3.210639 -2.940473 -1.282837 0.052510 0.876907 -0.824284 -3.168459 0.733192 -0.516812 -0.311138 -3.226427 -2.713310 3.534789 0.730584 -0.461470 -1.353976 0.191161 -6.395721 -5.323470 0.329030 -0.304389 2.096217 -1.846963 0.985535 -8.151281 2.833395 5.341501 -0.218278 -5.796860 0.079962 -1.450075 -0.804196 1.200992 -0.470599 1.828490 1.713564 0.339515 -0.434697 1.108022 1.379452 -0.666580 2.148905 5.991747 0.010675 5.051150 4.953897 0.133625 1.068521 0.696368 1.114477 -0.853205 2.711412 2.737701 -1.756332 -0.326586 -0.070093 0.670063 -4.088091 0.890838 1.058224 -2.613006 -2.426335 -0.973196 -2.885155 -1.093688 -0.883323 0.180261 6.225672 -1.429301 7.131137 2.798124 3.885317 -0.295531 3.518567 -0.501728 3.645001 1.412956 -3.656188 0.159973 -4.056324 -1.532014 -0.276129 3.606411 -2.731914 0.295838 1.878669 -2.237891 -4.756614 2.743162 -0.875113 -0.691384 -3.614984 0.104191 2.157272 1.548849 -1.496786 -4.598663 -4.151923 3.002579 -2.434452 -2.372727 -0.543407 -0.184748 -0.350283 -0.300507 -2.904058 -0.814250 4.120029 -2.887399 -2.641465 3.370539 -1.648661 3.152739 -0.763931 0.033872 0.089965 0.783709 1.868789 1.012685 1.366064 -2.772183 -7.325436 -0.249864 0.295055 2.341228 -1.546201 -0.351268 1.966119 1.637862 1.862946 3.270216 -0.906179 3.191302 2.230399 0.014430 -1.397345 -4.192547 0.006513 -2.315428 1.735336 -1.959676 -0.928707 0.049473 2.982557 -0.341683 0.158508 3.329414 -3.007565 3.749581 -0.166099 0.536822 0.182658 -1.281598 1.177053 -1.824121 -3.197731 2.207263 3.931960 1.070804 1.103509 -1.410673 -0.076467 -0.968146 -3.168234 1.155101 -0.270247 0.186698 4.256272 1.764909 9.418291 -4.121564 0.515739 -0.813583 -0.298857 0.972397 -1.137620 -4.114507 2.012325 0.710468 0.785923 5.427406 -0.234357 -2.320240 1.303429 0.061262 0.301177 -3.084222 4.746566 -3.093227 -1.049612 -0.996447 -1.330546 -1.899075 -2.057573 -3.228380 0.176523 4.796618 -1.775217 -4.860597 1.530679 -0.882325 1.019020 -5.901695 5.285560 -1.903993 2.802310 -1.980434 -1.217075 -0.251591 2.263502 0.210264 0.054618 2.076435 -3.535769 2.845735 3.778099 0.317114 0.812425 1.509631 0.992870 -0.456549 -1.353947 -2.553544 2.310964 0.093157 -0.976219 -0.928664 -1.861796 3.691997 0.843388 -1.220678 0.461597 3.872598 -1.904256 -0.523232 3.256243 -0.617770 -1.870447 1.214565 0.818153 3.037461 -1.751924 -0.342903 -2.424210 -0.150764 0.841431 1.957171 -4.396213 -1.816188 -1.046074 -4.603285 -1.525342 1.749163 1.686979 1.713668 0.628110 -6.129146 -2.696295 3.889987 -1.160364 2.643122 2.123253 2.931720 3.233447 1.960654 0.842258 -1.391726 -1.164864 -0.382139 -2.715003 -1.463103 -0.076045 1.381571 -2.408228 3.586922 1.202023 0.261956 1.299114 -0.212022 2.104031 -2.461908 5.787836 2.718720 -2.777273 0.630315 1.707243 5.599451 -4.918265 -2.483121 -PE-benchmarks/min-cost-path.cpp__main = -0.947957 -2.608865 2.861682 2.428521 0.208781 1.512325 0.659256 -0.796690 1.086264 1.144450 -0.958837 1.734424 -1.532765 -0.453588 -0.369358 0.484746 -1.261685 -1.857536 0.142260 -0.455025 -0.284884 -1.123828 -1.000292 2.033367 0.749222 0.328259 -1.008331 -0.022756 -2.963525 -2.067769 -0.050808 -0.236608 1.286156 -0.149477 0.820252 -3.422049 1.563432 2.669012 -0.237058 -3.009672 0.249149 -0.896099 -0.428241 -0.099978 -0.804583 0.820478 0.985914 0.270601 -0.222735 0.676357 -0.112964 -0.002762 1.068229 3.022723 0.613867 2.290916 2.599584 0.047593 0.462722 0.049325 0.853402 -0.471974 1.265658 0.758335 -0.631512 -0.678178 -0.401891 -0.179059 -1.418606 0.620598 0.416377 -0.946445 -0.818965 -0.831266 -2.135163 -0.610328 0.180077 0.956151 3.036281 -1.611139 2.906345 1.330383 1.727553 0.174107 1.736564 -0.001839 1.703474 1.068399 -1.215847 0.359308 -1.867844 -0.968715 0.028955 0.634665 -1.677482 -1.355831 1.395387 -2.830592 -2.657829 1.653204 -0.051083 -0.602029 -1.203389 -0.418288 1.053166 1.198190 -1.156368 -1.859059 -1.225793 1.188353 -0.705203 -1.244283 0.006365 0.457399 -0.007857 -0.058399 -2.094870 0.053153 1.894899 -1.379753 -0.370951 2.017808 -0.524716 1.601616 -0.588483 0.050857 -0.247164 1.243565 0.942643 0.571272 0.031446 -0.683872 -1.894200 0.023312 0.268855 0.462288 -1.125001 -0.255120 0.860019 1.078974 0.725496 1.266204 -0.824541 1.493091 0.991627 -0.130523 -1.230126 -2.382887 -0.943619 -1.749975 0.243918 -1.185779 -1.135101 1.053753 1.742056 0.501936 0.237460 2.039508 -0.983054 1.058335 -0.092536 0.120002 0.193177 -0.767234 0.729658 -1.072440 -1.811029 1.440317 1.608760 1.018892 0.769207 -0.721407 0.232073 -0.833065 -1.589273 0.846375 0.583885 0.056647 2.325368 1.338611 2.281030 -1.503042 -0.051214 -0.370018 -0.529668 0.394570 -0.490794 -2.433146 0.630206 0.390163 0.506036 2.634644 -0.160764 -1.052356 1.070432 -0.103790 0.152593 -1.504967 1.651834 -1.746746 -0.130693 -0.910539 0.001504 -1.223269 -0.863953 -1.748541 -0.788162 2.807152 -1.800906 -2.180637 1.084850 0.224851 1.074556 -3.044579 1.284554 -1.090728 2.406890 -0.092823 -0.634368 0.125762 0.033951 -0.384000 -0.088536 1.298145 -1.522611 0.966184 1.436319 0.334683 0.176891 0.779979 0.940268 -0.599619 -0.027010 -1.461065 1.218394 -0.250233 -0.905372 -0.358448 -0.879723 1.228270 0.122458 -0.099602 0.292883 1.205867 -0.051203 0.234151 1.684650 0.099690 -1.317918 0.588450 0.141326 1.796124 -1.250792 -0.306036 -1.207552 0.684325 0.372425 0.922396 -2.638832 -1.778779 -2.411717 -2.262239 -0.780755 0.232301 0.672302 0.390231 -0.038095 -2.496145 -1.770160 1.824360 -0.755716 1.481379 1.636011 1.487554 2.153469 1.215388 -0.024503 -0.651497 -0.081805 0.235332 -1.083810 -0.495922 -0.794794 0.939133 -1.145133 1.526113 1.654346 -0.085440 1.045822 -0.016022 1.076128 -1.465820 2.910928 1.508686 -2.219340 0.322542 1.510484 2.066042 -1.624954 -1.625402 -PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -2.189798 -2.755330 2.463948 2.049523 1.544472 1.847294 1.029842 -0.187072 1.576079 2.993956 -1.322693 1.801899 -1.663280 -0.884433 0.645514 0.721841 -0.237204 -2.435466 1.135738 0.176427 -0.115643 -1.736592 -1.176529 1.450901 0.563642 -0.303778 -1.058237 -0.023072 -3.388387 -3.947343 -0.559796 -0.371649 1.350040 -0.738493 0.562472 -3.354362 1.680083 2.650035 0.000673 -3.541680 0.098051 -0.720704 -0.367950 1.231178 0.583795 1.772094 2.085736 0.076647 -0.305625 1.141837 0.727768 -1.071451 0.617597 2.324589 0.628798 2.613156 2.504252 -0.204417 0.241703 0.670154 0.719006 -1.188168 1.848894 1.762485 -1.530506 0.184419 0.432375 0.503794 -2.247161 0.671599 0.619436 -1.418337 -0.549853 -0.662700 -0.938830 -0.386977 1.521984 0.149051 3.533804 -0.415686 3.823225 1.681819 2.790946 -0.372362 1.858727 -0.671505 2.098299 0.897086 -2.343775 -0.681613 -2.257242 -1.803124 -0.733582 2.554407 -1.004282 1.587829 0.903274 -1.316508 -2.635287 1.513990 -0.873262 0.076879 -3.083074 0.535359 2.282110 1.662159 -0.373891 -2.387265 -2.313867 1.068716 -2.394842 -1.357583 -0.333966 -0.662919 -0.973808 0.583096 -1.705016 -1.056310 2.176869 -2.124718 -1.720374 1.860985 -1.273541 2.251289 -0.490398 0.239352 0.353474 0.325876 1.630229 0.608693 1.469975 -1.796543 -4.106291 0.038139 0.034896 0.589636 -0.956130 -0.021087 0.985068 0.798073 0.474327 1.510405 -1.499542 2.349215 2.862658 -0.059637 -1.380537 -2.406709 0.615021 -1.205923 0.822817 -1.398401 -0.189852 -0.259370 1.823915 -0.421042 0.072455 3.178139 -2.075456 2.038249 -0.313711 0.560896 -0.113653 -0.763859 0.725792 -1.300749 -1.667705 1.112999 3.070154 0.088462 0.834802 -1.380276 0.094091 -0.998120 -2.636740 1.332580 0.029782 0.675003 1.957665 0.686316 4.511614 -2.478024 -0.206309 -0.494651 0.042677 0.233780 -0.451463 -2.752785 0.910964 0.270980 1.427631 3.087610 0.113215 -1.976669 0.761806 0.363503 -0.042783 -1.495549 2.469913 -2.214152 0.362816 0.021581 -0.972136 -1.471756 -1.125519 -1.311580 0.507519 2.740265 0.646162 -3.909585 0.777793 -1.213266 0.829024 -4.305850 1.247290 -1.344127 1.156920 -1.196090 -0.191897 -0.631026 1.018321 0.714997 0.108805 1.167116 -1.350780 2.156305 1.996000 0.110607 0.508620 1.209387 0.459531 0.013259 -1.274904 -0.861371 0.803128 -0.195094 -0.087308 -0.744365 -0.907708 2.342465 0.946196 -1.238835 -0.582331 2.145547 -1.921574 0.136702 1.973263 -0.575878 -1.352395 0.908065 0.512313 2.809309 -0.906103 -0.472945 -1.788971 -0.045081 0.387477 1.240150 -2.653700 -1.309190 -0.180890 -3.983422 -1.265717 1.408787 1.020988 1.025965 0.626850 -2.895450 -1.058307 1.781571 -0.207404 3.181833 1.001066 1.705427 1.949008 0.956323 -0.046168 -1.388831 -1.125894 -0.683014 -2.365026 -1.312019 0.203871 0.463307 -1.129831 2.353133 0.523508 0.164157 0.299245 -0.557495 1.000771 -1.550376 2.999492 2.015491 -1.481532 0.162819 0.056649 3.657805 -3.147053 -1.688100 -PE-benchmarks/edit-distance.cpp__main = -0.384716 -8.082452 13.178401 8.548680 1.163221 5.670585 9.663604 -8.916810 10.466908 4.113507 -3.418555 -1.662189 -11.479589 -2.194869 -3.996678 1.592909 -7.495564 -7.986041 -0.690378 -5.058249 -0.613486 -10.116932 7.121912 2.416743 5.270507 3.604758 -1.630021 -4.417145 -10.533963 -6.690533 12.093558 -0.705428 5.123349 6.041030 -1.549104 -15.240768 8.619539 7.893375 -3.485247 -10.270068 3.515746 0.423050 -5.266526 3.109673 1.985230 2.302131 0.652389 11.748812 3.430734 4.928663 3.674932 -4.682655 2.085703 13.240755 -4.218137 9.303007 7.247564 2.863464 1.863959 7.916142 1.833569 1.860659 3.927960 10.609466 -1.234028 -0.561560 3.435213 -5.386545 -13.698889 9.473121 -0.520808 -2.815766 -4.520259 -1.977066 -2.601756 1.494728 -5.266071 6.334014 16.340318 -5.906507 13.036178 3.423765 5.399155 -6.961722 0.321515 -1.807207 3.773070 3.084153 -5.510064 -4.239977 -14.655292 -4.925521 -0.213821 -2.964461 -4.116366 -9.519861 7.886724 -6.166565 -11.113529 2.900539 2.163912 -2.737350 -4.873082 4.392147 4.527666 2.792022 -5.477661 -10.880000 -6.031792 5.041166 -7.073946 -0.200592 -0.772861 3.990082 -4.801696 -3.353708 -8.350921 -3.378523 1.557613 -8.570866 -2.968021 7.494982 -5.160626 5.714083 1.508929 1.628229 -1.083923 4.278522 3.072483 2.986452 9.846891 0.336830 -4.561229 1.723182 5.065718 10.514070 0.701186 0.550612 0.908904 4.119506 -3.503018 2.946328 -3.188243 -0.192339 5.281242 -5.986522 -6.190559 -2.689690 1.230943 -13.225403 3.623185 -7.804870 -2.799038 0.815686 7.700367 4.919073 3.005107 12.466893 -12.098042 5.054656 -1.195973 0.342394 -1.928557 3.666847 5.161979 -3.823082 -9.892540 -0.314578 3.671614 0.945974 1.150145 -4.612120 -3.353227 -9.929837 -7.541772 0.378474 1.693755 -5.026472 2.534710 7.059522 6.818561 -10.499025 0.999795 5.319798 -0.571996 -0.227563 1.261324 -15.129257 6.299359 -0.070783 4.375246 9.119131 0.089304 -3.238859 4.548647 -4.135726 0.391222 -6.604688 1.870859 -8.623023 -3.380777 -8.088752 4.068381 -2.739668 -6.309626 -2.439705 1.211300 9.835597 -0.560737 -7.874786 10.999787 -1.501045 1.829216 -11.400151 9.727066 -3.425326 3.538478 -0.970700 -1.715162 -2.076460 1.024200 -0.680660 -3.362537 0.536788 -2.757791 10.265482 14.429227 1.992167 1.305914 3.212813 8.181357 -4.263216 -1.082680 -7.878352 6.551936 -2.209765 -8.937488 1.196693 -4.757670 4.892436 -5.819069 -0.953784 11.462453 9.930839 -1.053315 7.462791 2.098873 4.788265 -4.542233 6.039402 4.974812 7.582429 -3.168737 -0.634859 0.511287 0.041914 -5.497099 8.116503 -11.314929 -14.560158 -3.098761 -15.715139 -3.781126 -7.992485 6.428942 -0.462696 1.514336 -11.667591 -6.939196 0.690676 -4.402620 5.902343 7.382998 6.807108 7.668439 12.203614 -5.823389 3.200422 3.121799 6.527972 -7.852584 -6.132389 -3.334737 4.735608 -3.970788 5.402740 7.463692 1.516615 2.702318 -9.059286 9.858364 -9.489545 12.146891 6.423645 -2.876267 6.821734 0.680027 13.169632 4.584573 -4.896169 -PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = -4.873775 -16.400885 20.731843 12.588879 3.640607 11.641611 17.689278 -10.856377 15.231611 8.314284 -7.675728 -2.407227 -19.034253 -10.668418 -0.986446 -2.302061 -10.436161 -14.300968 2.866581 -4.756595 2.391517 -17.205644 5.690212 8.789336 6.296148 5.703235 -0.115055 -4.878283 -19.167121 -12.593769 17.203455 -0.616585 9.019263 12.981590 0.036407 -24.086151 14.303397 15.527345 -3.899315 -18.610226 3.066097 2.744635 -9.282764 6.941034 2.353506 6.940048 5.866764 19.068283 0.713264 7.850051 3.017700 -14.128126 3.871887 16.982967 -0.206518 17.130131 16.546030 3.610843 6.359703 12.626351 3.368191 -1.566610 7.535425 17.751428 -4.723778 4.111289 8.470429 -7.839479 -22.882190 12.407392 2.392126 -5.831191 -4.248163 -3.399141 -6.006822 2.000788 0.182158 6.857758 27.692591 -7.481344 27.357223 9.703083 13.819027 -10.425800 2.654722 -2.747591 6.454659 5.673276 -12.536904 -4.045326 -29.488206 -13.494639 -1.448539 -2.406460 -7.086343 -9.868495 11.533017 -11.778248 -18.780467 7.078495 -0.177546 -4.484567 -10.200791 7.427435 9.725620 5.202043 -8.314388 -17.792883 -11.819461 9.305590 -19.827746 0.323254 -1.481438 11.356176 -8.080782 -4.103113 -12.355035 -5.896776 7.505435 -15.042636 -3.337479 13.745740 -10.235953 14.472077 1.658967 -0.195387 -0.832230 4.350080 9.081406 1.089885 16.508803 -5.919981 -8.575387 -1.481830 5.746566 17.132540 2.242706 -3.468935 7.600811 8.746384 -0.858429 8.045903 -5.007498 1.068385 7.136447 -7.882543 -8.174519 -9.288723 -1.135141 -20.144494 6.691079 -11.084734 -4.661992 3.763981 13.536507 4.452073 1.534682 19.533547 -18.923303 9.266312 -4.524702 1.362372 -8.741455 4.835612 7.844862 -5.906074 -14.713124 0.198685 8.970643 4.489468 3.942374 -11.520921 -4.847291 -14.129346 -17.267686 -0.461487 0.070608 -6.546675 4.161887 12.098988 12.175560 -16.000920 -0.886377 5.067824 1.378197 -0.950959 3.151977 -24.167877 9.846585 -0.650550 6.652028 16.965726 0.583826 -6.271773 6.999085 -5.251508 -2.084253 -11.945359 5.739751 -14.557053 -2.046821 -11.234967 6.076816 -8.612387 -12.490743 -7.407394 2.328724 16.806241 3.158202 -16.606533 14.053256 -0.697963 5.258407 -19.741863 12.274079 -5.533544 9.025839 -0.987148 -5.003540 -2.731502 -0.334465 3.383887 -7.715851 0.083645 -6.230770 18.320728 19.033737 3.093138 2.133070 7.512198 10.525400 -7.155454 -6.979291 -14.531432 5.915923 -4.621130 -13.865587 0.949178 -8.083341 13.084619 -4.973100 -4.357450 12.770408 17.300968 -5.138201 10.442902 4.166006 1.256081 -7.627968 4.883539 11.609188 16.347661 -5.156279 -1.513902 -4.451688 0.499226 -5.918144 12.681720 -19.572970 -20.851252 -3.107152 -28.327275 -11.145200 -8.971833 11.095697 4.147623 5.213703 -20.324084 -9.779815 3.695488 -6.291095 11.578087 12.357160 12.545380 14.731732 17.333878 -6.802407 0.876731 7.192043 10.927061 -17.767418 -9.030665 -5.208964 6.648877 -7.373772 12.893676 9.869933 3.026843 3.541420 -18.181713 18.052325 -17.292821 20.093820 12.282478 -8.821948 6.077618 -0.356921 21.520124 1.760352 -8.592659 -PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.403162 -1.074072 1.327324 1.274460 0.261317 0.671129 0.589947 -0.718184 1.219328 0.678328 -0.092405 0.332188 -1.214686 0.253991 0.006637 0.578402 -0.751350 -1.120671 -0.107181 -0.508323 -0.506526 -1.097772 0.226759 0.391938 0.474253 -0.034062 -0.657345 -0.274056 -1.487209 -0.512660 0.806731 -0.253579 0.755045 0.246091 0.164407 -2.453065 0.857952 0.894207 -0.202412 -1.350121 0.126550 -0.794943 0.250758 -0.273668 0.122451 0.316996 0.236997 0.424554 0.664578 0.240069 0.401798 -0.071495 -0.137223 1.870258 -0.713012 0.974358 0.520225 0.006991 -0.170270 0.272553 0.290915 0.070167 0.898620 0.835842 -0.626007 -0.481448 -0.067619 -0.496758 -1.344567 0.907320 0.220453 -0.177803 -0.937178 -0.308153 -0.624788 -0.396203 -0.743786 0.826988 1.756584 -0.947524 1.276718 0.398753 0.856775 -0.102777 0.837871 -0.170552 1.199508 0.252723 -0.848157 -0.155843 -1.301812 -0.371141 -0.187183 0.190758 -0.397533 -0.614881 0.415318 -0.478549 -1.348694 0.509017 0.007477 0.112969 -1.345756 0.078586 0.774271 0.606840 -0.598787 -1.396668 -0.866270 0.483637 -0.216654 -0.510385 0.086525 -0.420887 -0.479791 -0.853186 -1.176349 -0.493379 0.375748 -0.933372 -0.696944 1.141062 -0.933176 0.448837 -0.036523 0.139423 -0.219623 0.973896 0.216027 0.485397 0.667652 -0.507660 -1.731745 -0.045774 0.309619 1.474973 -0.191025 0.112095 -0.216395 0.275390 -0.574804 0.193540 0.008997 0.677113 1.015364 -0.454225 -0.810523 -0.542501 0.392728 -1.187097 0.447181 -0.903476 0.232228 0.200650 0.976870 0.781167 0.506314 1.668475 -1.083917 0.951031 -0.179406 0.017077 0.597945 0.413003 0.591981 -0.639805 -0.955386 0.468441 0.631592 0.119289 0.296773 -0.427802 -0.059205 -0.843580 -0.829991 0.187828 0.315272 -0.100125 0.961944 0.501778 1.302383 -1.674281 0.447458 0.431448 -0.049180 0.284528 -0.137779 -1.350341 0.721232 0.108589 -0.133278 0.968941 -0.213854 -0.897613 0.377871 -0.146883 0.407646 -0.836229 0.337627 -0.929121 -0.305415 -0.912638 0.060564 -0.465469 -0.611042 -0.350513 0.090000 1.365061 -0.120842 -1.203479 1.051891 -0.389788 0.577825 -1.790011 1.239199 -0.643863 0.547175 -0.719931 -0.197484 -0.227890 0.715830 -0.155061 0.095869 0.622926 -0.574876 0.567883 1.516017 0.248329 0.276289 0.338218 0.801814 0.185566 0.118731 -0.475816 1.080596 -0.084291 -0.248283 0.049427 -0.621071 0.711153 -0.067062 -0.101810 1.063534 1.254824 0.033471 0.660247 0.870236 0.461575 -0.597783 0.495525 0.014738 0.835598 -0.507563 -0.020857 -0.166652 0.182162 -0.372027 0.567632 -1.209770 -1.495403 -0.265322 -1.335024 -0.173586 0.187446 0.180793 0.095557 0.057589 -1.348026 -0.590816 0.151235 -0.495906 1.130718 0.395339 0.561106 0.938272 1.176150 -0.686452 -0.332177 0.170947 -0.073011 -0.570374 -0.384810 -0.580611 0.701145 -0.848939 0.751699 0.893269 -0.186441 0.257820 -0.193081 1.218205 -0.729537 1.645177 0.709079 -0.485343 0.785767 0.682444 1.732694 -0.001821 -0.723195 -PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/dfs.cpp__main = -0.024371 -2.692516 3.891951 3.321137 -0.801726 1.157014 0.557999 -1.518013 2.239428 -0.275450 -1.021092 1.404258 -2.394342 0.915592 -0.737115 1.435442 -3.509001 -2.497667 -0.086469 -0.795925 -1.152655 -1.985335 0.709626 1.636034 1.399828 2.184511 -1.707363 -0.310591 -2.376210 -0.820879 2.293260 -1.193218 1.996351 2.299127 0.659702 -6.314738 2.160452 1.579335 -0.616653 -3.070383 0.377106 -1.537706 0.140296 -2.253536 -1.278674 0.551251 0.840114 1.945361 1.356472 0.490109 -0.662537 -0.292228 0.474357 4.395940 -1.010747 1.940432 1.896851 -0.267159 -0.072702 -0.532562 1.216362 0.042963 1.785306 2.075674 -0.886452 -1.688132 -0.689392 -2.015425 -2.665246 2.127904 0.520194 0.932499 -2.455731 -0.533921 -2.087010 -0.639430 -1.322505 2.811130 4.601897 -2.673262 2.948057 0.918174 2.062848 -0.317607 1.307921 0.280575 2.351215 1.240166 -1.751823 0.235867 -2.389247 -0.987185 0.156144 -0.414313 -0.959617 -2.973484 1.134199 -3.114251 -2.989285 1.268377 0.570007 0.059681 -1.234194 -0.372362 1.737794 1.386887 -1.774123 -2.660966 -0.798816 0.116707 -0.110814 -1.098224 0.133767 0.777316 -0.690960 -1.429506 -3.273569 -0.847579 0.781866 -2.193306 0.577056 2.226760 -1.204699 1.062589 -0.444136 0.173673 -0.595688 3.041456 0.831289 0.937480 0.795767 -0.291960 -0.988369 0.215543 1.184769 3.155292 -1.112308 -0.877939 -0.235036 0.969374 -0.906753 -0.734860 0.161890 1.109968 1.556892 -1.049654 -2.492577 -1.835220 -0.860739 -3.627794 0.604607 -2.474844 -0.321804 2.229457 2.316010 1.538749 1.571336 3.269045 -2.231614 2.075355 -0.478764 0.334939 1.487725 1.126464 1.456402 -1.360243 -1.923141 1.811219 0.566311 0.974080 0.833622 -1.494113 0.328727 -2.107546 -1.774010 1.483035 1.500025 -0.137261 2.001478 0.951455 1.552246 -2.401117 0.657473 1.160523 0.116370 0.230149 0.357674 -3.205207 2.176221 -0.109899 -0.099836 1.677818 -0.373267 -1.794741 1.175812 -0.313330 0.682021 -1.920451 0.524016 -1.738354 -0.294562 -2.465305 1.167562 -1.065670 -1.077439 -1.186874 -0.430824 3.496715 -2.863359 -1.939335 2.398757 -0.056711 2.621391 -3.595953 1.983467 -1.677993 2.969873 -0.666181 -1.066772 0.258541 -0.838910 -0.728359 -0.153651 1.687415 -0.641492 0.247121 2.379818 0.934517 0.309780 1.061521 2.107115 0.295912 1.205012 -0.654950 1.868425 -0.068842 -0.983658 0.267138 -1.216470 0.711852 -0.545693 0.569447 2.854072 2.292671 1.573513 2.442974 1.500529 1.361434 -1.898025 0.368745 -0.386651 2.114110 -1.552335 -0.307866 -0.492278 1.593117 -1.073538 1.489229 -3.064447 -4.679305 -3.343678 -2.386885 -1.426736 -0.524308 0.941320 -0.378972 0.084591 -2.473897 -1.519698 1.055905 -1.249712 2.647887 1.753246 1.105692 2.449233 2.489998 -1.700150 -1.453268 0.979303 1.071003 -0.529352 0.691473 -2.951411 1.695987 -2.203422 1.262700 3.389404 -1.168093 0.376485 -0.548011 3.688825 -1.658571 4.212732 1.811406 -2.621705 1.715516 1.634587 2.314623 1.364877 -2.036851 -PE-benchmarks/dfs.cpp__Graph::DFS(int) = -1.127293 -3.043907 3.689108 3.417224 0.250983 2.073605 0.608295 -1.987739 2.194400 1.898379 -0.984480 1.725786 -2.211445 0.116878 -0.389217 1.255388 -2.004961 -2.285798 -0.240492 -1.214175 -1.065628 -2.142485 -0.591706 1.896695 0.931566 0.946819 -1.579269 0.354856 -3.366322 -3.347186 1.024868 -0.423267 1.744488 0.595552 0.779922 -5.907246 2.587043 3.167432 -0.516902 -3.543869 0.190318 -1.388581 -0.705757 -0.004512 -0.557887 1.139276 0.526050 0.652172 0.567733 0.706208 0.927756 0.046290 1.189464 4.463717 -0.430733 3.129378 2.651470 -0.048908 0.270990 0.511526 0.934511 0.168165 2.040668 1.996655 -0.992756 -1.264470 -0.113821 -0.382401 -2.584022 1.736697 0.536885 -1.374707 -1.563101 -1.194342 -1.861023 -0.828938 -1.103825 1.298084 4.561575 -1.754798 3.813357 1.527341 2.195696 -0.260052 2.475309 -0.410427 3.404098 1.215394 -2.022748 0.239188 -1.954712 -1.233135 0.282489 1.628895 -2.053547 -1.047434 1.443005 -2.836848 -3.500877 1.827333 0.168162 -0.460244 -2.508762 -0.346205 1.760501 0.816120 -1.272157 -3.095191 -1.891329 1.490740 -1.110657 -1.684580 -0.565066 -0.071305 -0.402842 0.041649 -2.917471 -0.491738 1.806814 -1.904501 -1.235516 2.679867 -0.804565 1.258164 -0.647509 0.294535 -0.434994 1.633089 0.438026 1.335384 0.647906 -0.450779 -3.377909 0.349210 0.722198 1.023824 -1.240701 -0.722389 0.479446 1.154044 -0.221597 1.589963 -1.004890 2.166177 2.481390 -0.224757 -1.806696 -2.358287 -0.528482 -3.063596 0.733651 -2.057519 -1.102778 0.418668 2.509146 0.869158 0.944232 2.692097 -2.189161 2.219695 -0.294338 0.443275 1.041306 -0.311116 1.155844 -1.585460 -2.514919 1.851411 1.923431 0.813054 0.961972 -1.129576 -0.099905 -1.392777 -2.274851 1.684597 0.508594 0.146572 2.838795 1.604061 5.532222 -2.828166 0.934548 0.309812 -0.464319 0.664672 -0.450692 -3.244552 1.332550 0.560997 0.697461 3.554380 -0.312131 -1.585356 0.657093 -0.005575 0.603406 -2.336206 2.202801 -2.272341 -0.080139 -1.539697 -0.058885 -1.316624 -1.301364 -1.508773 -0.246328 3.706319 -2.326345 -3.139765 2.660238 -0.701386 1.331845 -4.252554 2.349377 -1.675345 2.297274 -1.335469 -0.948488 -0.134597 0.532050 -0.714227 0.668383 1.680982 -1.938447 1.410347 2.823746 0.531004 0.709667 0.707093 1.503467 -0.408753 0.116956 -1.823134 2.539498 0.153226 -0.746119 -0.683541 -1.490822 1.432375 -0.279897 -0.196570 1.019539 2.583429 -0.268203 0.312901 2.188398 0.628627 -1.716501 1.396825 0.229532 1.653277 -1.536223 -0.498108 -0.761097 0.499865 -0.184326 1.390134 -3.398902 -2.540529 -2.364739 -2.986702 -1.150239 0.858663 1.253858 0.625212 0.058317 -3.362247 -2.097841 2.799990 -1.155575 2.232143 1.681668 2.042441 2.411942 2.264781 -0.226600 -0.799134 -0.743648 0.014161 -1.438080 -0.706585 -1.275388 1.925407 -1.364612 2.171366 2.017723 -0.317549 1.194861 -0.084784 2.471787 -1.831236 4.069034 1.861976 -1.938342 1.154763 1.636216 3.437893 -1.352482 -2.027940 -PE-benchmarks/trie-suffixes.cpp__main = 2.875306 -12.127715 27.097414 19.201351 1.283017 8.976715 15.367099 -20.464183 20.680837 7.201356 -4.919066 -3.653808 -20.730362 0.603612 -9.999012 8.512128 -17.085074 -14.674734 -5.301065 -12.502121 -3.672686 -17.775334 17.650358 0.521304 12.437938 7.360600 -6.856541 -7.877944 -16.993738 -15.634598 23.975060 -1.645398 9.874592 9.626487 -4.796987 -31.233020 20.388111 15.081049 -8.226942 -16.743827 8.822416 -0.900406 -10.565269 2.563292 2.206390 4.076963 -2.859850 20.871307 10.170430 10.145397 9.443139 -3.014747 4.475282 27.576103 -12.141019 16.693249 10.242998 6.143792 0.807583 14.567571 3.265951 8.069352 6.974845 18.812250 -0.279955 -5.871463 4.146009 -10.948354 -25.033038 20.275206 -3.353711 -6.108414 -10.895469 -3.468711 -5.041464 3.357774 -13.462287 14.150798 29.184145 -13.170772 19.801847 3.457869 6.071563 -12.257947 -1.421538 -3.482883 7.680363 6.223134 -6.597262 -9.815662 -22.854746 -8.318474 1.897042 -7.160485 -9.730783 -22.474958 15.252135 -12.020652 -20.540698 3.455955 7.543085 -6.791374 -9.399186 6.272256 7.501540 3.790789 -9.014423 -19.464455 -8.630601 9.007585 -7.822857 -1.320286 -2.452779 4.269480 -8.723791 -5.626760 -18.804620 -3.981584 -0.619187 -13.528203 -5.997145 13.329874 -8.681746 4.652240 1.852665 4.726890 -4.679140 10.930239 0.778739 9.782383 16.702032 6.612768 -7.465248 4.984869 12.474767 18.020645 0.143486 2.096756 -3.748527 6.792371 -11.863964 4.828789 -6.790899 -0.644675 12.394695 -11.809178 -13.781397 -2.182020 1.317072 -27.191280 6.945963 -15.424037 -5.925331 2.385954 15.174515 11.154033 9.815754 24.799576 -24.068229 8.396754 -1.614162 0.122220 1.595210 6.016589 9.731942 -7.572938 -19.344165 2.070581 4.506545 1.455962 1.204463 -4.962795 -5.388475 -20.062605 -11.703274 2.633282 3.276285 -9.887790 4.773739 13.457106 12.978176 -19.171689 4.462939 13.864073 -3.375670 0.600689 2.753109 -27.838381 11.040926 0.678140 8.594759 17.865793 0.191795 -6.158569 7.792196 -8.164673 2.239016 -12.553570 2.443563 -15.286191 -6.608583 -16.246496 6.846165 -2.633040 -10.331566 -2.476371 0.028680 18.740750 -4.271284 -14.030962 24.112852 -4.308792 2.183355 -21.172650 20.032944 -7.632733 5.406925 -1.384933 -2.037258 -2.950338 0.904519 -6.314871 -4.173389 1.615752 -4.157358 16.864665 30.083094 4.854244 1.353307 2.465067 16.749398 -8.212910 4.540564 -14.098924 16.190211 -3.864673 -16.566903 1.964218 -8.662606 3.975192 -15.025879 -0.226155 24.799108 17.179417 2.041938 14.587518 3.570038 15.595064 -9.623492 14.950950 7.605736 9.960966 -5.771908 -2.109130 6.239169 0.639361 -11.775915 15.621589 -21.021074 -28.985099 -10.193497 -29.001126 -3.256272 -15.840302 12.626168 -5.085789 0.194467 -20.337589 -14.920379 3.772290 -9.144696 11.130092 14.409370 11.446954 12.678620 24.250201 -13.570935 8.532765 3.960236 11.845907 -9.680498 -11.840774 -8.524356 13.551040 -6.311163 6.533341 17.002285 0.294013 6.700361 -15.521818 18.274185 -15.978637 23.136162 9.328510 -2.938687 15.905470 2.568630 23.598496 11.797011 -9.267157 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -0.709330 -2.808490 5.632995 4.351078 -0.654729 1.765043 1.099136 -3.590963 2.732891 0.945712 -1.053491 0.897050 -3.268198 0.422429 -0.581699 1.885317 -3.663821 -2.835809 -1.144235 -2.519810 -1.089660 -2.336047 1.464533 1.716695 1.757366 1.898889 -1.746434 -0.140355 -2.792217 -4.536242 2.589952 -0.419244 2.498026 2.436257 0.462871 -6.894019 3.946199 3.191802 -1.439612 -3.645682 1.419404 -0.692511 -1.861375 -0.048786 -1.248374 1.568886 0.060681 1.731842 1.098998 1.761033 1.154265 0.205904 1.585022 4.562536 -1.008672 3.306767 3.065983 0.240835 0.143033 1.090206 0.623343 0.964978 1.797228 2.583180 -0.648731 -2.010893 0.192010 -1.593050 -4.021736 3.027799 0.016054 -1.792189 -1.866149 -1.754713 -2.002080 -0.322276 -0.548486 2.489823 5.550000 -2.865201 3.556921 1.365183 1.259938 -1.258358 1.366530 -0.408272 3.066902 1.577573 -1.262573 -0.397045 -2.770636 -2.535760 0.412097 0.588310 -2.322397 -2.765944 2.540107 -4.216743 -4.080719 1.768810 1.137688 -1.308513 -3.017349 -0.390122 1.781202 1.020646 -1.499138 -3.389124 -1.660909 1.928678 -0.898015 -1.042609 -1.178253 1.237957 -0.999111 0.089933 -4.539247 0.085888 1.127536 -2.234565 -0.778978 2.736816 -0.949484 1.142458 -0.033924 1.131823 -1.397350 2.896308 0.389304 1.809462 1.898154 0.271181 -1.347902 0.696967 1.607853 1.583783 -1.078185 -1.018893 -0.287797 1.213327 -1.505250 1.430337 -1.323348 1.488640 3.317327 -0.901790 -2.963984 -1.757528 -1.293495 -5.342527 1.119553 -3.389756 -1.525938 1.775099 2.607323 1.556832 1.748091 4.219064 -3.189244 2.131582 -0.501124 0.190526 0.844397 0.013239 1.831409 -1.697905 -3.590300 1.825731 1.164043 0.867267 1.141816 -1.382216 -0.245698 -3.172505 -3.405246 2.044561 0.714373 -0.527848 2.326051 2.586444 4.830486 -2.285988 0.767098 1.532223 -1.086603 0.342577 0.138836 -4.474912 1.223495 0.518586 1.305997 4.523506 -0.137721 -1.580778 1.305894 -0.486158 0.581108 -2.549653 1.847851 -2.893738 0.162508 -2.798862 0.120595 -1.290852 -1.713605 -1.055049 -0.560070 4.404498 -2.653945 -3.768904 4.281334 -0.948911 1.818419 -5.380637 2.872658 -1.738037 2.924864 -0.840064 -0.796886 -0.447536 -1.226316 -1.350309 0.298458 1.117698 -1.194074 1.756994 4.507641 0.791308 0.288410 0.771976 2.777582 -1.154759 1.421715 -2.612599 3.586438 -0.672310 -1.807547 -0.224468 -1.304898 0.525694 -1.995101 0.176716 2.342553 2.571026 0.350668 1.584196 1.904242 2.215151 -2.130209 2.557029 0.771928 1.949175 -1.831935 -0.676750 0.358795 1.017447 -1.186948 2.328778 -4.242646 -4.653459 -4.115749 -4.964651 -1.561764 -0.544178 2.466193 -0.298905 -0.255434 -3.361746 -2.770166 2.932310 -1.442139 3.243145 2.991097 2.568206 3.245698 4.299420 -1.263412 -0.208295 -0.152325 1.288891 -1.641839 -1.104116 -2.255279 2.611581 -0.831782 1.490301 3.467219 -0.131622 1.807363 -1.903898 3.529180 -2.601810 4.978762 1.964073 -1.912894 2.684111 1.523437 2.993913 0.440471 -2.070853 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 0.010941 -4.008740 8.121145 6.432519 -1.235832 2.621429 1.450106 -5.447433 4.905857 -0.299411 -1.494305 1.332134 -5.394814 1.344667 -2.734199 2.289246 -6.001481 -4.391025 -2.155427 -3.460064 -1.621527 -4.106923 2.781673 2.688255 2.819844 4.247710 -2.975550 -0.234714 -5.396891 -4.285063 4.967388 -0.555809 3.527816 3.642876 0.540654 -9.731998 5.403320 5.112636 -1.967039 -5.905030 2.395820 -2.323950 -2.273068 -1.495760 -1.327152 1.603463 -0.728495 4.025189 2.205254 1.506697 0.446552 1.241583 1.254142 6.979292 -2.590721 4.672693 3.936964 1.115314 -0.171402 1.150497 0.946293 2.201603 2.600162 3.871551 -1.692200 -3.414095 -0.029192 -2.661852 -6.055320 4.956955 -0.102985 -1.470561 -3.720960 -2.130633 -3.978177 0.027453 -0.858767 4.591412 8.169634 -4.458406 4.702638 1.155130 1.715872 -1.835077 1.973163 -0.585214 4.343140 2.203881 -1.462755 -1.362515 -6.248425 -2.376658 0.490352 -1.043924 -3.579215 -5.905424 3.661151 -7.615360 -6.219898 1.355764 1.854276 -2.265706 -3.074081 0.149123 2.596181 1.785261 -2.168785 -5.144615 -1.396382 3.073718 -0.472415 -1.671006 -0.702382 1.705418 -1.300964 -1.818295 -6.647635 0.153978 1.206151 -3.049347 -0.283902 4.304796 -2.101590 1.164515 -0.098789 1.414056 -1.840184 4.638343 0.015302 2.060816 2.665414 0.853258 -0.030973 1.368233 2.120825 4.313143 -2.456511 -0.758137 -0.887187 1.613688 -2.584588 0.214044 -2.459467 0.738470 3.357787 -2.408711 -3.993471 -2.274634 -1.954676 -8.009501 0.949141 -4.388627 -2.394931 2.275182 4.099732 3.391933 2.983684 6.681051 -5.027027 2.334314 0.288015 0.119023 2.118407 1.339712 2.634973 -2.530347 -5.751605 2.909100 0.426179 1.334221 0.841546 -0.869056 -0.812072 -4.815573 -3.943021 2.784009 1.818940 -0.292246 4.197070 3.891576 3.209998 -4.237081 1.641370 2.634319 -1.885402 0.816599 -0.029388 -6.784923 2.621928 0.866283 2.327873 6.341176 -0.538319 -2.069119 2.296011 -0.456136 1.534079 -4.199579 1.795136 -4.459878 -1.000893 -5.120369 1.083813 -1.112205 -2.528821 -2.246637 -1.812256 6.470262 -4.097787 -5.258312 6.489872 -0.797589 3.477807 -7.574501 2.524224 -2.662385 4.628967 0.002188 -0.227138 -0.030089 -2.653194 -2.892261 -0.193359 1.959738 -1.838192 2.653718 6.359299 1.421415 0.102477 0.974347 4.104150 -1.576378 2.732982 -4.133629 5.174902 -0.709318 -3.310652 0.785666 -2.177624 0.509740 -3.168895 0.678315 5.581991 4.333226 2.497549 3.603500 2.573561 4.012360 -3.099268 3.500422 0.512524 1.900720 -2.437893 -0.920074 0.705686 1.741634 -1.878872 3.698358 -6.292716 -8.771839 -5.984812 -7.916894 -0.665428 -3.504412 3.027380 -0.734962 -0.608239 -5.502916 -4.552667 2.619293 -2.293357 6.322874 4.137326 3.249727 4.370472 6.475240 -3.658240 0.755525 1.416788 2.596352 -1.948926 -1.654771 -4.230659 4.292537 -1.307931 1.908524 6.385225 -1.089456 2.895620 -3.478737 5.515637 -3.713615 7.913170 2.910220 -3.350528 4.056045 1.615565 5.105712 2.603286 -3.348003 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -1.284876 -4.362930 7.126069 5.134241 -0.523377 2.933760 2.189340 -4.436178 4.060636 1.581688 -1.742824 0.950548 -4.489909 -0.335771 -0.915055 1.424788 -4.440784 -3.916357 -0.813515 -3.060068 -1.367592 -3.798604 1.075931 2.701958 1.881376 1.586364 -1.686960 -0.119050 -4.468035 -4.778257 3.707498 -0.495901 2.855180 2.353626 0.973482 -9.386256 4.735274 4.084682 -1.585884 -5.343173 1.093524 -0.726570 -2.326771 0.624240 -1.352431 1.576161 0.628124 3.267336 1.139191 2.037677 1.459603 -0.930295 1.443877 7.336487 -0.990352 4.835811 4.496093 0.387368 0.669494 2.364650 1.032722 0.542820 2.333409 4.069698 -0.952192 -1.540337 0.973922 -2.083514 -5.384861 3.997621 0.451715 -2.541475 -2.082918 -2.235858 -2.682123 -0.627568 -1.413394 3.120930 7.975862 -3.769098 5.903834 2.245529 2.958123 -1.620830 2.335198 -0.719610 4.487407 1.924755 -2.787286 -0.273614 -4.580718 -2.894249 0.385163 0.327835 -2.777966 -3.796472 3.398181 -5.230585 -5.764149 2.857934 1.003287 -1.267216 -3.598349 -0.007037 2.740708 1.195292 -2.637348 -5.072043 -2.947122 2.873954 -2.542892 -1.093500 -0.938451 1.808962 -1.159521 -0.465098 -5.384796 -0.639192 2.155599 -3.452282 -1.311569 4.234767 -1.814814 2.447198 0.089253 0.927428 -1.154816 3.362489 1.223143 1.745267 2.244766 -0.349756 -3.050211 1.048947 1.754071 2.488831 -0.638331 -0.880411 0.865272 2.095522 -1.411785 2.305790 -1.834630 1.975291 3.269763 -1.240157 -3.718389 -2.779202 -1.224516 -6.650328 1.480408 -4.413786 -2.661305 1.966067 3.723946 2.697673 1.514190 5.254905 -4.324194 3.357202 -1.005319 0.403093 0.157924 -0.134242 2.529247 -2.329113 -4.649732 1.642729 1.975740 1.217878 1.640734 -2.855255 -0.693615 -4.182211 -4.521744 1.911939 1.280649 -0.848132 2.963821 3.548794 6.555919 -4.307272 0.798218 1.571180 -0.858087 0.244451 0.004699 -6.331046 1.858438 0.655548 1.557513 5.706330 -0.211479 -2.053082 1.540024 -0.938855 0.728332 -3.421105 2.093833 -3.899293 -0.230985 -3.454911 0.910594 -2.287511 -2.407112 -1.909735 -0.680289 5.836084 -3.730790 -5.056365 5.724697 -0.926115 2.593149 -6.766059 4.238666 -2.120376 4.221749 -1.196216 -1.269634 -0.891316 -0.539940 -0.866323 0.586181 1.335887 -1.893697 2.943658 6.026223 0.909245 1.170144 1.609151 3.806536 -1.863422 0.325084 -3.662768 4.167967 -0.888713 -2.988079 -0.286112 -2.146504 1.741189 -1.978125 0.312176 3.105950 4.104269 -0.219784 2.126002 2.636900 1.626195 -2.642704 2.677220 1.280057 3.167557 -2.584504 -0.689680 -0.249340 0.979203 -1.568886 2.701005 -5.935223 -5.969070 -5.165450 -6.372961 -2.515393 -1.101369 2.806520 0.213989 0.164514 -5.077161 -3.458623 3.714256 -2.106531 3.844754 3.869456 3.774871 4.589430 5.810916 -1.336771 -0.292624 0.334005 1.760413 -3.219103 -1.493368 -2.716879 2.988725 -1.956838 2.940044 4.115227 0.466407 2.075707 -2.150983 4.282884 -4.047641 6.297976 3.231613 -2.829111 2.799265 2.247122 4.730805 0.524356 -2.922295 -PE-benchmarks/snake-ladder.cpp__main = -1.760781 -4.875896 5.169515 4.695589 1.125551 2.939409 2.523733 -1.896306 3.988520 3.292046 -1.498439 2.085657 -3.682691 -0.369503 0.491165 1.890909 -2.560549 -4.061180 0.955816 -0.881051 -0.928159 -3.783663 -0.448010 2.206432 1.218757 0.902629 -1.724651 -0.848323 -5.205381 -3.627725 2.677589 -1.105048 2.731860 1.512703 0.712092 -9.347672 3.508340 3.699108 -0.766518 -5.844617 0.159047 -1.893772 -0.402279 -0.165275 0.485823 1.831457 1.883979 2.876384 0.585379 1.562140 0.773612 -1.085501 1.281421 7.013378 -0.962940 4.375262 4.113123 0.142985 0.583868 1.136661 1.573536 -0.422453 3.288931 3.774062 -1.954220 -0.947605 -0.199982 -1.389999 -4.947459 2.284958 1.586266 -0.891985 -2.804867 -0.700251 -1.495749 -0.936753 -3.508962 2.271303 7.260792 -2.861616 6.628569 2.810709 4.798616 -0.662142 3.025942 -0.293290 4.017462 1.710854 -3.928409 -0.603301 -5.659997 -2.616897 -0.223952 0.471343 -2.020195 -1.614585 1.698962 -1.291152 -4.877756 2.731037 -0.417131 0.167278 -3.695430 0.244190 3.346667 2.223892 -2.036848 -4.966464 -3.806975 1.819388 -2.874442 -2.155336 -0.361449 -0.240566 -1.326435 -1.510597 -4.065466 -1.510684 2.859689 -3.603247 -1.769578 3.851552 -2.783201 2.522915 -0.726228 -0.139237 -0.417317 2.312799 2.183338 1.292882 3.455616 -2.561835 -6.489496 1.543727 1.432604 4.222184 -0.944225 -0.306618 0.852279 1.760688 0.003313 1.645991 -0.165063 2.786427 3.256164 -0.931977 -2.772505 -3.940940 0.978042 -3.638475 2.189824 -3.299579 0.347175 0.812314 3.785662 1.389158 1.463458 4.479514 -4.789404 4.512710 -1.095575 1.603238 0.623721 1.436193 1.761448 -2.111032 -3.366770 1.851941 3.657805 0.328519 1.336100 -2.599069 0.081153 -2.519218 -3.764680 1.401637 0.573155 -0.448313 3.552059 1.716867 7.205236 -5.147031 0.627978 0.528790 -0.097994 0.592800 -0.341272 -5.242263 2.883196 0.301685 0.837490 4.364119 -0.397912 -3.217126 1.209533 -0.058807 0.236050 -2.637697 2.752300 -3.447219 -1.557488 -1.979145 0.758090 -2.398612 -2.529666 -2.029058 0.919895 5.394662 -0.895728 -4.663179 2.752239 -2.408491 1.326532 -6.390539 5.262079 -2.567086 1.631488 -2.194820 -1.606636 -1.011540 1.811544 -0.138408 -0.339747 2.357267 -2.518955 2.811757 4.947634 0.906888 1.006795 2.068947 2.071504 -0.072169 -0.917440 -2.143266 2.882289 -0.633491 -0.932544 -0.449848 -2.197535 3.769408 0.118263 -0.978392 2.731830 4.446938 -0.845395 1.634476 2.795096 0.382959 -2.664601 1.417901 0.674530 3.789650 -1.942571 -0.115895 -2.107592 -0.292241 -0.664547 2.564923 -4.854827 -4.087414 -1.259758 -4.717570 -2.036330 1.127135 1.685117 0.904758 0.975894 -6.124106 -2.366239 1.467419 -1.726946 2.197251 2.510154 2.715761 3.855642 3.380054 -1.119209 -2.095911 -0.125096 -0.122962 -3.032248 -1.247514 -1.566639 2.151413 -2.693550 3.509118 2.604116 -0.052699 0.632970 -1.725940 4.756693 -2.502511 6.654633 3.332852 -2.724666 1.232082 1.824762 6.460470 -2.139168 -2.966867 -PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = 0.315140 -1.009878 2.536215 2.266617 -0.264892 0.735546 0.023571 -1.877530 1.681818 0.943617 -0.186681 0.603589 -1.100091 0.833122 -0.620187 1.668906 -1.780951 -0.993988 -0.770747 -1.357847 -1.032370 -1.013413 0.631106 0.130961 0.986821 0.562341 -1.225292 0.074245 -0.945169 -2.121341 0.828920 -0.346338 0.816161 -0.213832 0.316608 -3.257919 1.995884 1.387766 -0.663871 -1.669288 0.439680 -0.697517 -0.259807 -0.347079 -0.403298 0.422958 -0.374575 0.657641 1.105308 0.752254 0.754719 0.895679 0.839895 2.978959 -0.933587 1.373605 0.726048 0.098535 -0.303472 0.494309 0.531520 0.785140 0.760101 0.832450 0.152789 -1.488465 -0.458690 -0.414308 -1.338884 1.534677 -0.259070 -0.907407 -1.374287 -0.757050 -1.043974 -0.334637 -2.247120 1.471491 2.258303 -1.542338 0.986004 0.345858 0.337288 0.018750 0.856778 -0.225675 1.808818 0.687580 -0.468448 0.005826 -0.081238 -0.625255 0.654378 -0.335023 -1.147653 -2.422049 0.971359 -1.780987 -1.832750 0.877872 0.919802 -0.358046 -1.132560 -0.689638 0.827903 0.395578 -0.848992 -1.516929 -0.429551 0.671353 0.404304 -0.800768 -0.081603 -0.481103 -0.129241 0.122910 -2.018687 -0.010016 0.278959 -0.638230 -0.551011 1.343600 -0.016127 -0.188744 -0.318421 0.486026 -0.565748 1.521623 -0.409242 1.556674 -0.103189 1.085412 -1.122858 0.882993 0.870770 -0.149033 -0.291023 0.190719 -0.708222 0.581447 -1.154707 0.777170 -0.751821 0.814478 1.528849 -0.245740 -1.379418 -0.572396 -0.484016 -2.052654 0.498526 -1.251089 -0.914157 0.410435 1.371984 1.037880 1.131853 1.222902 -1.470230 0.490895 -0.230907 0.232485 1.287511 -0.063397 0.787467 -0.792762 -1.394052 0.944706 0.620785 0.343152 0.352873 -0.287422 0.077808 -1.047504 -0.377336 0.888091 0.717326 -0.351325 1.266946 1.008832 2.278094 -1.200679 0.570924 0.933914 -0.533738 0.386922 -0.275188 -1.876050 0.586918 0.378767 0.688408 1.653877 -0.281993 -0.512401 0.476094 -0.333742 0.585707 -0.979811 0.353378 -1.138165 -0.360460 -1.057900 0.377769 -0.460338 -0.358277 -0.520142 -0.509158 1.928738 -1.857374 -1.014766 2.346105 -0.802115 0.532376 -1.720934 1.809045 -0.861596 0.884621 -0.490972 -0.178706 -0.055314 0.079886 -1.176630 0.444175 0.895831 -0.532806 0.302635 2.088504 0.455176 0.152869 -0.086589 1.343730 -0.538360 1.090567 -0.907459 2.098058 -0.219740 -0.357799 -0.241032 -0.684678 -0.111025 -1.042905 0.341859 1.281821 0.767699 0.512725 0.541365 0.805498 1.364530 -1.047899 1.615065 -0.117137 0.220049 -0.935017 -0.174040 0.545359 0.387519 -0.661950 0.870442 -1.822645 -1.619006 -2.285718 -1.051676 -0.219576 -0.049552 0.609444 -0.610838 -0.469968 -1.220945 -1.497290 1.882948 -0.732362 0.290813 1.045509 0.788592 1.138226 1.834597 -0.525181 0.247672 -0.637099 -0.184104 0.011535 -0.609920 -0.889008 1.619759 -0.692088 0.382618 1.678302 -0.387897 0.807225 0.037913 0.982849 -0.898764 1.857573 0.648041 -0.380751 1.156936 1.491178 1.819281 0.123650 -1.064146 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -3.985427 -8.668414 10.196952 8.689978 2.312040 6.011688 3.418401 -4.397154 5.600643 7.038306 -3.914218 4.503418 -6.137603 -1.643690 -0.931902 3.108330 -3.584466 -6.787660 0.426827 -1.829937 -1.224148 -6.518350 -1.192265 5.413962 2.655913 2.246494 -3.758878 0.571668 -9.270040 -12.102665 1.772377 -0.873074 4.666270 0.561119 1.045422 -13.423289 8.181395 9.865660 -1.265484 -9.714181 1.324498 -1.389909 -3.682593 3.005060 -1.149270 4.210215 2.770491 2.841862 -0.356427 3.913329 3.445615 -1.359343 4.967461 10.783423 0.996582 9.524769 8.909847 1.146038 1.575899 2.065137 2.353572 -0.236919 4.868568 6.058077 -2.294952 -1.234687 0.481043 0.225203 -8.501358 3.660865 0.283295 -4.979892 -3.135049 -2.841503 -3.632475 -0.541356 -0.208910 1.725590 13.193881 -3.576015 12.278395 5.327182 6.775317 -1.794968 4.271742 -1.537843 6.022734 3.948830 -5.930663 -1.097911 -7.105263 -4.449099 0.088465 4.276294 -6.575107 -1.066385 4.747694 -6.760103 -9.457635 4.817519 -0.570610 -2.287616 -5.533935 0.289048 5.072588 2.349245 -2.571003 -8.528860 -6.196625 4.553521 -4.739462 -4.061296 -2.674372 0.711221 -1.432814 1.887708 -7.711428 -1.088905 5.557972 -6.158136 -2.702148 6.284849 -2.759456 5.388558 -1.682543 0.973053 -0.553287 2.744636 3.581509 3.067069 3.365422 -2.333503 -8.345364 1.816283 1.766319 1.398469 -3.906470 -1.358889 2.749900 3.095832 1.224118 5.811970 -4.010038 4.663980 6.935318 -0.255177 -4.834046 -6.929822 -2.307755 -8.235017 3.378304 -5.312605 -3.580126 0.815136 6.444745 0.236429 1.800878 8.542625 -7.256410 5.975191 -0.564488 1.633408 -0.138615 -2.161313 2.576811 -3.988118 -7.480929 5.153089 7.113676 0.987004 2.787200 -3.344617 -0.373164 -4.002919 -6.519934 4.635373 -0.344632 0.348865 6.577738 3.909931 15.945937 -5.276825 0.917945 0.221843 -1.154706 1.474744 -0.884124 -9.844450 2.913855 0.953144 4.469762 11.151239 0.271444 -3.952245 2.995535 -0.258927 0.175618 -6.418131 8.457339 -6.817579 -0.465826 -2.782644 -0.812041 -3.375633 -3.534238 -4.018423 0.438839 9.486711 -3.717848 -9.075754 5.122220 -1.311299 1.957424 -11.006122 7.691031 -4.509294 6.302281 -1.730137 -2.476453 -0.417659 0.113080 -0.015249 0.046073 3.401856 -4.208176 5.940999 7.677011 0.764726 0.972688 2.886057 2.776547 -2.168393 -0.649351 -5.178603 4.876048 0.020908 -3.395614 -1.894267 -3.559368 5.025023 -1.212838 -2.746254 1.164803 7.626939 -3.267600 0.421847 4.530507 1.218978 -4.985833 4.233295 2.148523 5.851483 -3.950822 -1.711045 -2.950106 0.653814 0.127085 4.803827 -9.385122 -5.952670 -5.968186 -10.747283 -3.959776 1.305933 4.843110 1.464833 0.765545 -9.656843 -6.221754 8.538695 -2.591052 6.918972 5.796139 6.590348 6.924141 5.434396 -0.145601 -1.887418 -2.452737 0.329655 -5.535539 -2.766724 -1.713510 4.106669 -2.461107 5.877743 4.058698 0.152855 3.014978 -2.333698 3.792524 -5.208421 11.579481 5.466042 -4.750020 2.551033 1.056229 10.360780 -6.476055 -5.452666 -PE-benchmarks/binary-insertion-sort.cpp__main = -1.456991 -3.207553 3.190661 2.764534 0.640793 1.845453 1.262363 -0.950393 1.817967 1.874401 -1.400835 2.118336 -1.943680 -0.429776 -0.336169 0.756962 -1.265343 -2.311137 0.540029 -0.330040 -0.272533 -2.016405 -1.009302 2.002810 0.751744 0.533151 -1.053128 0.046561 -3.728524 -3.136863 0.397020 -0.465061 1.493135 -0.273100 0.587280 -4.913740 1.972766 3.118179 -0.281241 -3.896031 0.266176 -1.132923 -0.704917 0.286019 -0.255599 1.194954 1.276181 0.835867 -0.202281 0.919099 0.458312 -0.454612 1.223274 3.912565 0.110769 3.006217 3.303162 0.069872 0.442744 0.257620 0.965719 -0.549349 1.739893 1.918789 -1.075862 -0.570222 -0.205730 -0.151724 -2.409721 0.826275 0.660936 -1.089196 -1.312692 -0.768051 -1.625368 -0.496165 -0.220419 0.728760 4.225628 -1.333766 4.381222 1.630048 2.568391 -0.295288 1.987552 -0.154709 2.271653 1.205868 -2.160845 -0.126741 -2.584195 -1.163296 -0.045046 1.566830 -1.720789 -0.379588 1.376227 -2.144036 -3.019116 1.670857 -0.335720 -0.486285 -1.724662 0.195174 1.555136 1.318414 -1.091403 -2.798294 -2.118848 1.301105 -1.434298 -1.534314 -0.381404 0.251073 -0.457754 -0.114565 -2.369247 -0.476300 2.277305 -2.005096 -0.987068 2.171610 -1.038174 1.889769 -0.632015 0.014760 -0.014194 1.119426 1.320468 0.682138 0.989406 -1.375218 -3.545657 0.479690 0.498958 1.201071 -1.432129 -0.275068 1.108702 1.083835 0.843860 1.296861 -0.953582 1.895096 1.842394 -0.315355 -1.443035 -2.795912 -0.386073 -2.074774 0.910850 -1.665444 -0.804289 0.394096 2.179264 0.164597 0.447583 2.787836 -1.999949 2.038783 -0.107155 0.458206 0.238196 -0.364166 0.900831 -1.340990 -2.180497 1.637217 2.283371 0.589408 0.823070 -1.037449 0.119757 -1.218210 -2.078905 1.459596 0.368390 0.162407 2.594863 1.192821 4.953785 -2.300841 0.197025 -0.250167 -0.298652 0.377663 -0.416306 -3.008384 1.371012 0.361145 1.020163 3.223995 -0.015857 -1.554437 0.881479 0.040848 0.118154 -1.929686 2.556436 -2.072569 -0.393344 -0.867223 -0.106201 -1.216132 -1.277428 -1.693023 0.091044 3.334227 -1.297755 -3.169481 1.207421 -0.557360 1.064812 -4.108542 2.491633 -1.541356 2.165182 -0.830023 -0.764016 -0.037122 0.509818 -0.164918 0.034776 1.519429 -1.737093 1.675837 2.248651 0.449779 0.377978 1.080403 0.955919 -0.431717 -0.484820 -1.459128 1.439882 -0.016551 -0.815510 -0.478100 -1.207073 1.994382 0.287803 -0.520311 0.674861 2.259848 -0.684816 0.452613 2.028704 0.097238 -1.572096 0.921664 0.275549 2.345318 -1.270397 -0.454442 -1.509224 0.351242 0.275588 1.345115 -3.035396 -2.080442 -1.599994 -3.349717 -1.114459 0.537644 1.250456 0.689352 0.432517 -3.726947 -1.802559 2.422367 -0.834444 2.242514 1.695318 1.830711 2.244683 1.322572 0.006186 -1.033997 -0.558479 0.230728 -1.704699 -0.648019 -0.614885 0.984092 -1.609363 2.050233 1.479293 -0.120864 0.767835 -0.325265 1.815846 -1.609632 3.798768 1.979301 -2.160638 0.543522 1.059959 3.226097 -2.122115 -1.884584 -PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -4.143850 -5.905297 5.263054 4.557773 2.233352 3.745445 3.156182 -1.370905 2.838220 4.793288 -1.899491 4.416340 -3.285321 -1.537952 -0.394482 0.798030 -0.179306 -4.013026 0.908112 -0.758600 -0.197700 -3.722100 -3.165029 4.222537 1.034801 -1.871697 -1.823018 -0.120028 -8.051124 -6.380716 -0.721910 -0.243448 2.489637 -3.983679 0.852595 -8.845232 3.251382 6.737863 -0.121128 -6.748915 0.455085 -1.673987 -1.236339 2.221078 -1.027828 1.758230 2.308747 -0.747151 -0.945308 1.603473 2.371371 -0.434905 2.575114 7.925463 0.491699 6.037000 6.100992 0.250915 0.867817 0.770913 1.413830 -1.363928 3.054732 2.715366 -1.798997 -0.348550 -0.074958 1.241856 -4.367503 0.397372 1.141388 -3.748724 -1.643387 -1.439176 -3.203104 -1.345669 1.502482 -0.443359 7.215803 -1.777801 8.738406 3.043136 4.407839 -0.192232 3.976300 -0.537558 4.010878 1.789557 -3.885103 -0.203311 -4.328022 -0.661472 -0.444923 5.092648 -3.754431 0.861690 2.742524 -2.803097 -5.622666 3.384940 -1.112037 -1.156502 -4.067738 0.121806 2.221307 2.127036 -1.948953 -5.541128 -5.280564 3.504855 -2.531404 -3.120200 -0.872052 -0.725318 -0.287984 -0.041179 -3.535581 -0.650632 4.852295 -3.513844 -3.643754 3.903217 -2.337389 4.073772 -1.032280 0.407354 0.218406 0.465214 2.526507 1.158856 1.080962 -3.735027 -8.437838 -0.849758 -0.065527 1.810618 -2.475215 -0.112433 2.347387 1.921752 2.794388 4.184180 -1.398386 4.015300 3.007977 0.156966 -1.704741 -4.867308 -0.238755 -2.834286 1.775285 -2.401457 -2.056144 -0.146270 3.452530 -0.758024 -0.238491 4.929632 -2.330877 4.075989 0.366536 0.044470 -0.014635 -2.948842 1.272011 -2.387968 -4.347704 2.665802 4.976024 1.185838 1.291242 -1.221326 -0.046685 -1.388201 -3.630137 1.232686 -0.209838 0.368706 4.887114 2.130031 12.158743 -4.499358 0.275650 -1.474091 -0.821290 1.143935 -1.643513 -5.072309 1.477735 1.050966 0.904131 6.937698 0.063257 -3.051078 1.854486 -0.026425 0.234812 -3.653340 6.286878 -3.704668 -0.782195 -0.762882 -2.205830 -2.175279 -1.996537 -3.771454 0.056217 5.645652 -2.155609 -6.588751 1.349928 -0.006198 0.816438 -7.864677 6.289942 -2.362658 3.896983 -1.821842 -1.333170 -0.127091 2.890456 0.160946 0.709473 2.523527 -4.095732 3.666522 4.592295 0.213864 0.956116 1.698095 1.098851 -0.847717 -1.608727 -3.032554 2.980668 0.245053 -1.943324 -1.305920 -2.102094 4.323467 1.060364 -1.393013 -1.151056 4.145337 -2.865223 -1.035613 4.460390 -0.632115 -2.278486 2.034397 0.731983 4.220969 -2.054986 -0.574799 -3.071860 0.261560 1.515355 2.202890 -5.272303 -1.805420 -1.744023 -6.540657 -1.219549 2.261466 1.989935 1.812318 0.622323 -7.631685 -3.605668 5.586097 -1.329103 4.034676 3.025227 3.897089 3.953863 1.646285 1.221435 -1.417315 -1.836098 -0.298785 -3.271316 -1.924308 0.529051 1.017539 -3.081914 4.178513 1.162118 0.792020 1.845290 0.449366 0.790172 -2.954996 6.754366 3.350260 -3.278814 0.774758 1.864273 6.187885 -6.400633 -3.091120 -PE-benchmarks/egg-dropping-puzzle.cpp__main = -2.462491 -3.782128 2.765568 2.472735 1.117273 2.387264 1.701890 -0.398294 1.268488 2.469461 -1.186616 2.391859 -1.694613 -1.172090 -0.328854 0.026571 -0.171417 -2.387858 0.983802 -0.152511 0.021869 -1.955369 -2.250376 2.841312 0.253330 -0.561604 -0.768832 -0.330467 -4.711686 -2.804287 -0.174690 -0.204650 1.473980 -0.749843 0.850391 -4.723818 1.302079 3.568508 0.008054 -3.933531 -0.083325 -1.023650 -0.445706 1.228513 -0.485895 1.248803 1.609124 -0.172728 -0.769622 0.806221 1.007928 -0.608830 1.520848 3.816274 0.737122 3.297942 3.209950 -0.038507 1.111393 0.330527 0.911276 -1.075205 1.935129 1.545325 -1.102960 0.039440 -0.354215 0.576378 -2.246957 0.137697 0.918375 -1.459551 -0.954433 -0.522846 -1.946374 -1.086240 -0.574519 -0.156116 4.061859 -0.884322 5.065892 2.148455 3.248076 -0.258524 2.729962 -0.083253 2.286630 1.053438 -2.471254 0.544422 -2.739847 -0.479035 -0.424087 2.205159 -2.128045 0.162833 1.490726 -1.752250 -3.222488 2.372622 -0.853875 -0.424000 -1.780552 0.152336 1.376194 1.347987 -1.544217 -3.057790 -2.770228 1.967392 -1.764636 -1.698555 -0.134117 -0.183861 0.060508 -0.305884 -1.620557 -0.395216 3.023357 -2.041006 -1.450020 2.646893 -0.876922 2.500690 -0.570402 -0.121131 0.080749 0.541296 1.723894 0.280805 0.284084 -2.323319 -5.162424 0.069603 -0.031116 0.938733 -1.384295 -0.647018 1.716194 1.342431 1.969605 2.276263 -0.450814 2.185074 1.857097 0.132309 -0.937108 -3.330123 0.070823 -1.353205 0.586041 -1.212248 -0.803043 0.092775 2.069606 -0.052291 -0.091574 1.947561 -1.097798 2.446433 -0.193047 0.190559 -0.269184 -1.016716 0.768810 -1.239359 -2.162458 1.506820 2.954545 1.157666 1.012132 -1.153208 -0.036223 -0.402834 -2.163052 0.856259 0.346235 0.456854 3.112567 1.412319 5.270350 -2.315807 -0.184695 -1.126085 -0.382616 0.563100 -0.904091 -2.853428 1.114911 0.592465 -0.124092 3.427016 -0.253154 -1.343504 1.201306 0.011888 0.162439 -2.177969 3.063859 -2.174215 -0.424782 -0.634599 -0.799942 -1.781704 -1.308313 -2.316079 -0.353385 3.358111 -1.326375 -3.045481 0.464928 -0.535135 0.439364 -3.929177 2.487792 -1.337744 2.038276 -1.118492 -0.987736 -0.425494 1.841548 0.424159 0.065812 1.545044 -2.712789 2.154430 2.191819 0.199737 0.540695 1.306165 0.790116 -0.425210 -1.361552 -1.794005 1.266026 -0.036148 -0.686552 -0.439765 -1.267714 2.562166 1.008863 -0.659049 -0.133691 2.315109 -1.508000 -0.633340 2.475198 -0.884911 -1.269457 0.171440 0.325943 2.575443 -1.355833 -0.324247 -2.314579 0.032133 0.858515 0.659694 -3.157047 -1.092410 -1.341316 -2.870440 -0.896949 1.122592 0.825136 1.525022 0.556656 -4.274929 -1.909371 2.399151 -0.920680 1.429177 1.693842 2.010744 2.649103 1.019565 0.718397 -1.104340 -0.756967 -0.147962 -2.057096 -0.726362 -0.078614 0.555619 -1.817132 2.890772 0.712139 0.318770 0.973403 0.581144 1.467103 -1.825805 3.954947 2.155658 -2.372088 0.116319 1.074526 3.321580 -3.486200 -1.780662 -PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -7.949815 -13.352667 9.302185 9.134783 4.657457 9.132947 6.273982 -2.067548 3.593688 10.419068 -4.419270 8.859212 -5.513804 -5.023890 -0.565737 0.132525 0.546796 -7.711164 3.452902 -0.173107 1.213041 -7.283145 -8.578278 11.262256 0.911239 -2.204785 -2.191830 -0.451775 -17.038132 -12.031965 -1.912990 0.038488 4.968488 -1.684984 3.625252 -12.511959 5.122585 13.891619 0.629355 -13.343150 -0.574070 -2.419696 -3.089558 6.158605 -1.138903 5.816857 5.149477 -1.208459 -3.194188 3.348454 5.213116 -2.551035 7.586888 9.865388 3.529737 12.538999 10.952426 -0.187973 6.066509 1.201658 2.731473 -3.316353 6.609249 5.737472 -3.306032 0.516363 -1.431014 4.189623 -7.569721 0.179860 3.486494 -6.308926 -4.082571 -1.633589 -5.879853 -3.042474 -2.961775 -2.078602 14.015999 -0.866992 18.740167 8.570573 11.250413 -2.711961 9.975040 -1.032783 8.305550 3.756401 -8.884782 2.498821 -9.906843 -2.603548 -1.108050 8.924108 -8.882986 3.682303 4.580369 -6.091450 -11.491519 8.257378 -3.156906 -2.819004 -5.071653 1.803141 4.454065 3.234862 -3.976104 -11.022987 -9.185894 7.745663 -7.010422 -6.474282 -2.078381 -0.437442 0.840871 1.251695 -4.740990 -1.161594 11.079938 -6.731498 -5.066292 8.687692 -1.758668 8.768520 -2.226877 -0.845343 0.910205 -0.394402 6.014956 1.582893 1.444452 -8.881722 -18.587040 1.843504 -0.215614 -0.108918 -4.992433 -2.390128 6.776093 5.104842 8.226741 10.624243 -1.449081 8.200629 6.119112 1.034244 -2.590159 -11.631068 -0.773285 -3.301884 2.905905 -3.210363 -3.476258 -1.918404 6.981051 -2.377136 -0.639444 4.018118 -3.166223 8.044052 -0.122472 1.604371 -1.389863 -4.626527 2.020627 -4.049048 -7.498528 6.236948 11.152538 3.887923 3.542577 -3.179918 -0.381307 -0.031774 -7.474735 3.356585 -0.556924 2.275837 11.781539 4.942902 20.914162 -5.091100 -0.531077 -4.232174 -0.918433 2.120133 -3.305252 -9.701217 4.430494 1.754694 0.756991 13.233031 -1.016969 -3.260383 4.186524 0.534534 0.516135 -8.515949 12.665122 -7.596033 -0.684588 -1.653850 -3.582194 -5.522156 -5.063695 -7.843343 0.146514 11.600434 -3.253371 -10.485000 1.230362 -3.354682 -0.024144 -12.390790 8.794605 -4.467424 5.357184 -3.654225 -3.998340 -1.231902 6.257033 1.457939 -0.253569 5.106464 -10.174785 8.518970 6.478037 0.138000 0.979716 4.450553 1.384075 -1.888220 -5.075443 -6.971813 4.525252 0.814094 -1.011246 -2.480627 -4.339770 9.108719 3.369038 -3.897546 -1.942841 8.008490 -6.514146 -4.511952 7.602933 -3.648579 -4.248615 0.943432 1.756163 7.367153 -4.806085 -1.741880 -7.895026 -1.838505 3.593802 2.452006 -11.004566 -1.426003 -3.126235 -9.329274 -3.680705 3.951159 4.622176 6.681657 1.695655 -15.116419 -7.634251 10.070655 -2.620269 2.379913 5.974101 7.117841 8.653414 2.540148 4.724303 -2.736452 -4.962302 -0.528971 -7.309526 -3.153733 1.146581 2.137914 -5.641851 10.930106 1.439791 1.231416 3.961950 0.839639 4.832631 -6.712276 13.260774 7.123984 -7.778032 -0.259611 2.460359 10.494562 -14.538434 -6.054743 -PE-benchmarks/n-queen-problem.cpp__main = -0.334217 -1.142844 1.063858 0.994049 0.168676 0.594979 0.375737 -0.174345 0.607166 0.533453 -0.478654 0.584744 -0.744554 -0.181634 0.126999 0.279718 -0.462614 -0.845928 0.271744 0.013537 -0.040068 -0.611721 -0.295572 0.707087 0.271298 0.326695 -0.270415 -0.064174 -1.192064 -0.566887 0.215855 -0.226328 0.551802 0.527298 0.339146 -1.100771 0.563330 0.897689 -0.057973 -1.268724 -0.031122 -0.364469 -0.028086 -0.154392 0.061258 0.473698 0.546942 0.398483 -0.052942 0.328087 -0.031570 -0.379573 0.355117 0.871910 0.144902 0.866930 0.983093 -0.009771 0.287830 -0.054325 0.395997 -0.247465 0.591022 0.581253 -0.416540 -0.185068 -0.242056 -0.247422 -0.758140 0.242851 0.279559 -0.063561 -0.572947 -0.275613 -0.376802 -0.189019 -0.656066 0.397645 1.382487 -0.591828 1.347904 0.700117 0.972703 -0.114601 0.654894 0.025276 0.603057 0.425002 -0.737356 0.159128 -0.997056 -0.546829 -0.041286 0.125043 -0.510012 -0.074078 0.417034 -0.517114 -1.004031 0.627998 -0.120483 -0.001768 -0.390747 0.209259 0.468577 0.571092 -0.425194 -0.826371 -0.433187 0.266416 -0.375158 -0.481809 -0.128122 0.243483 -0.224138 -0.210971 -0.809864 -0.236129 0.699493 -0.777799 0.007895 0.727299 -0.399893 0.682841 -0.233069 -0.166752 0.004136 0.601353 0.651775 0.174328 0.410344 -0.610996 -1.034876 0.330336 0.236376 0.610909 -0.370897 0.015948 0.419256 0.345184 0.316731 0.300384 -0.070523 0.533015 0.431421 -0.200530 -0.546176 -0.972618 -0.232568 -0.606014 0.331337 -0.601616 0.050631 0.318234 0.727521 0.223904 0.167486 1.023124 -0.727352 0.597818 -0.157911 0.235857 0.018609 0.289504 0.324422 -0.415404 -0.597674 0.564071 0.759620 0.111893 0.432652 -0.498218 0.131517 -0.450666 -0.580274 0.455687 0.118161 -0.071736 0.901741 0.322043 0.802037 -0.512877 -0.035482 -0.074701 0.065782 0.081384 -0.036704 -1.029395 0.598175 -0.038283 0.223002 0.751485 -0.063643 -0.449784 0.361842 -0.088336 0.017074 -0.581607 0.665023 -0.665307 -0.136714 -0.414961 0.332602 -0.472586 -0.499519 -0.450554 0.167511 1.118391 -0.151972 -0.721444 0.188923 -0.080899 0.388819 -1.018161 0.650536 -0.515794 0.725648 -0.168167 -0.372920 -0.019905 0.023090 0.103336 -0.327127 0.560110 -0.388092 0.354981 0.529203 0.159215 -0.057528 0.553888 0.326075 -0.085872 -0.129045 -0.354675 0.343411 -0.031878 -0.109134 -0.005066 -0.405323 0.665333 0.116881 -0.312372 0.476381 0.718210 -0.073086 0.290014 0.361739 -0.047781 -0.572550 0.097688 0.155623 0.919906 -0.486527 -0.052453 -0.582122 0.121333 0.022978 0.390071 -0.972702 -0.810383 -0.305495 -0.776731 -0.550732 0.152353 0.330312 0.248907 0.153484 -0.948538 -0.582922 0.413192 -0.320267 0.604857 0.451384 0.521987 0.841340 0.443337 -0.089349 -0.533176 0.033075 0.101307 -0.523303 -0.022837 -0.305590 0.299269 -0.565074 0.584825 0.623539 -0.089667 0.148638 -0.286197 0.874236 -0.540324 1.254912 0.684524 -0.849448 0.196097 0.458166 1.029556 -0.551207 -0.658144 -PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -1.229420 -2.359743 2.009075 1.970218 0.676944 1.536005 0.950415 -0.820042 1.454629 1.787114 -1.250308 1.350367 -1.420528 -0.604362 0.428967 0.513855 -0.736167 -1.596103 0.547915 -0.085981 0.016522 -1.713797 -0.915393 1.438750 0.368935 0.835193 -0.522918 0.576854 -2.602144 -3.081274 0.459689 -0.276043 1.083243 0.682921 0.584749 -3.210852 1.634491 2.492990 -0.087443 -2.908560 -0.056802 -0.728428 -0.789878 0.574059 0.405865 1.501483 0.936411 0.704370 -0.245935 0.699878 0.541141 -0.874325 0.907499 1.735813 0.184470 2.360254 2.441290 -0.123502 0.563439 0.299607 0.571354 -0.346938 1.489501 1.858492 -1.144674 -0.268440 0.149453 0.158063 -2.169682 0.666917 0.630190 -1.069973 -1.175849 -0.704029 -0.688337 -0.193889 -0.309691 0.164405 3.315537 -0.259310 3.509821 1.471773 2.067577 -0.628017 1.692494 -0.396559 2.004046 0.872500 -2.007165 -0.033498 -2.052408 -1.689568 -0.008049 1.857179 -1.213347 1.432293 0.627929 -1.147012 -2.114152 1.061546 -0.432490 -0.325493 -1.663033 0.646829 1.364731 0.673627 -0.204343 -2.109197 -1.463497 1.014307 -1.707586 -1.166442 -0.904039 0.331874 -0.653005 0.451678 -1.547677 -0.579021 1.730168 -1.487976 -0.789362 1.470412 -0.800120 1.267394 -0.540526 -0.160877 0.125614 0.459260 0.909249 0.554614 1.432354 -1.354836 -3.213752 0.614637 0.322884 0.836168 -1.041394 -0.439738 1.075386 0.681647 0.562377 1.194674 -0.824048 1.607536 1.806925 -0.114850 -0.885174 -2.064403 -0.319536 -1.412856 1.009739 -1.171049 -0.087761 -0.306531 1.654534 -0.250623 0.342250 1.917812 -2.044949 1.713234 -0.220446 0.684020 0.092310 0.075241 0.601340 -1.015646 -1.358890 1.378364 1.886203 0.074438 0.813521 -0.904556 0.005780 -0.812450 -1.903919 1.645758 -0.303955 0.444224 1.931837 0.769183 4.420776 -1.372323 0.348070 -0.158419 0.092264 0.258537 -0.093886 -2.053890 1.425904 0.149733 1.368683 2.620683 0.021992 -0.981134 0.115576 0.325184 0.000914 -1.610826 2.373559 -1.594076 -0.019042 -0.432644 -0.255963 -0.871364 -1.294784 -0.955200 0.764328 2.419251 0.099404 -2.632310 0.924849 -1.040846 0.761560 -2.961187 1.666717 -1.273201 1.253304 -1.038448 -0.614825 -0.109213 0.150475 0.113368 -0.059341 1.039306 -1.230059 1.483535 1.490752 0.285322 0.182328 0.822944 0.315325 -0.264601 -0.621281 -1.077226 0.890909 0.236979 0.074165 -0.585811 -0.968108 1.693771 0.313103 -0.989398 0.430091 2.066882 -0.945767 0.032947 1.216696 -0.204386 -1.150739 0.750279 0.546584 1.511860 -0.798079 -0.557836 -1.046330 -0.136681 0.265416 0.994149 -2.124828 -1.165096 -0.201302 -2.597339 -1.283815 0.793600 1.293039 1.027772 0.546832 -2.583010 -1.076268 1.758173 -0.391075 2.023028 0.814373 1.417148 1.389202 0.792605 0.300066 -0.969336 -0.897112 0.007068 -1.643733 -0.579930 -0.244939 0.886632 -0.828985 1.718916 0.742789 -0.173451 0.394411 -0.665216 1.931685 -1.165119 2.749408 1.415369 -1.342075 0.299472 0.185579 2.626722 -1.969950 -1.326946 -PE-benchmarks/n-queen-problem.cpp__solveNQ() = -1.216516 -4.231883 4.138376 3.837024 0.843339 2.468151 1.375006 -1.044890 1.853561 2.637365 -1.778634 2.673955 -2.516837 -0.957445 0.230463 1.110523 -1.580295 -2.959376 0.860493 -0.106852 -0.027030 -2.071214 -1.372245 3.081809 1.119323 0.706927 -1.153530 -0.027999 -4.602592 -3.530313 0.060202 -0.547197 2.028208 0.883980 1.241182 -3.881002 2.577250 4.009913 -0.206086 -4.720664 0.114079 -1.080072 -0.920988 0.111070 -0.219017 1.797597 1.845438 1.152291 -0.493793 1.410511 0.229973 -0.866063 2.110643 3.394199 0.973835 3.691674 3.992124 0.014504 1.310820 0.071463 1.377704 -0.816225 2.187253 1.966866 -1.219847 -0.735020 -0.648119 -0.124280 -2.575052 0.789786 1.143451 -1.113984 -1.699288 -0.882722 -1.652323 -0.506889 -0.858650 1.039097 4.989632 -1.725595 5.163156 2.664324 3.245009 -0.538605 2.612102 -0.129283 2.516943 1.712189 -2.520599 0.184840 -3.590939 -2.070098 0.090734 1.077638 -2.410516 -0.223216 1.694768 -2.504495 -4.011530 2.434219 -0.364113 -0.769388 -1.503637 0.386148 1.865394 1.735708 -1.252176 -3.044711 -1.786771 1.526278 -1.924725 -2.119568 -0.777425 0.762346 -0.436314 0.302274 -2.941986 -0.490994 2.951798 -2.556740 -0.433304 2.669316 -0.945410 2.593369 -1.023599 -0.365005 0.086037 1.230374 2.096282 0.907408 1.436503 -1.960079 -3.428560 1.297375 0.790905 0.681528 -1.564722 -0.074884 1.671536 1.646864 1.551554 2.200681 -0.843168 2.538691 1.377978 -0.358111 -1.880452 -3.790728 -1.075035 -1.985403 1.180083 -1.993524 -0.916178 0.785587 2.761838 -0.063295 0.421033 2.917163 -2.337155 2.304683 -0.227603 1.088282 0.015364 -0.263482 1.022117 -1.615880 -2.521864 2.317360 3.180914 0.700555 1.219166 -1.412248 0.430363 -1.303946 -2.565771 1.531040 0.050471 -0.048919 3.575161 1.453692 4.634236 -1.623315 -0.113965 -0.477802 -0.130973 0.403583 -0.458596 -3.879922 1.658898 0.121615 1.357685 3.966481 -0.125162 -1.795896 1.349196 0.025756 -0.083053 -2.330456 3.221571 -2.602518 -0.302825 -0.990362 0.436936 -1.653864 -1.822519 -2.162884 0.332423 4.320944 -1.276904 -3.329958 1.015041 -0.625944 1.071783 -4.266263 2.602990 -1.904636 2.420083 -0.376713 -1.430192 0.010574 0.079819 -0.176588 -0.731008 2.032599 -1.938279 1.901812 1.995071 0.472922 -0.001132 1.669991 0.872360 -0.689283 -0.532454 -1.901259 1.553931 -0.089955 -0.679630 -0.722288 -1.474572 2.413560 0.322777 -1.194731 0.624834 2.364356 -0.733451 0.296334 1.610787 -0.146157 -2.172740 0.911613 0.633832 2.935965 -1.782492 -0.440420 -2.082356 0.022681 0.481338 1.911919 -3.924392 -2.260932 -1.620586 -3.243000 -1.861629 0.713689 1.744012 1.002779 0.392560 -3.962828 -2.560410 2.472503 -0.987290 1.860947 2.317511 2.290083 3.049367 1.411749 0.411895 -1.440882 -0.724525 0.298206 -2.029772 -0.754826 -0.633339 1.234454 -1.688521 2.616489 2.064194 -0.050989 1.027495 -1.409612 2.288122 -2.136045 4.504408 2.485131 -3.128708 0.294271 1.495756 3.505612 -3.158451 -2.535966 -PE-benchmarks/sieve-of-eratosthenes.cpp__main = -0.958000 -1.910446 2.040928 1.711763 0.052559 1.220424 0.461907 -0.749544 1.254228 0.178438 -0.756692 1.048069 -1.393715 -0.154017 -0.429115 -0.007059 -1.364103 -1.587815 0.097443 -0.338686 -0.247272 -1.405496 -0.525528 1.554613 0.273223 0.990214 -0.827491 0.225949 -2.611965 -0.800664 0.996738 -0.237651 1.093323 0.757824 0.506823 -3.551413 1.095553 1.781234 -0.222169 -2.430538 0.200381 -1.182663 -0.252604 -0.461223 -0.420273 0.565942 0.450139 0.631648 0.045906 -0.032277 -0.266310 -0.117680 0.102938 2.449007 -0.220664 1.686796 1.743999 0.017200 0.258091 0.046132 0.503377 -0.052508 1.242655 1.308976 -1.160888 -0.543782 0.030459 -0.585606 -1.715113 0.933030 0.472112 -0.267934 -0.849020 -0.429849 -1.492423 -0.365068 0.423965 0.976228 2.617166 -1.007302 2.427133 0.739749 1.734215 -0.093855 1.495153 0.031387 1.786174 0.655931 -1.207894 -0.141133 -2.500910 -0.490690 -0.093319 0.385772 -0.956362 -0.467729 0.749786 -2.071225 -1.954215 0.816772 -0.142239 -0.299609 -1.199094 0.173334 1.140460 0.879843 -0.650774 -1.761252 -1.078569 1.209557 -0.998842 -0.785701 -0.062011 0.334513 -0.289229 -0.962469 -1.543309 -0.112322 1.248162 -1.007270 -0.275189 1.766062 -1.094669 0.856603 -0.291950 -0.055701 -0.290339 1.108232 0.483069 -0.007031 0.541947 -1.146304 -1.577438 0.156521 0.210790 1.698167 -1.066398 -0.548855 0.537815 0.608268 0.085875 0.060272 -0.492795 0.754710 0.813356 -0.530807 -0.896029 -1.749995 -0.250802 -1.895834 0.070177 -1.034744 -0.510509 0.858048 1.486177 1.004636 0.554729 1.900635 -1.268732 1.361131 -0.056843 0.092677 0.376975 0.326910 0.635905 -0.873035 -1.487845 0.988037 0.686018 0.654328 0.461446 -0.654613 -0.202780 -0.923256 -1.501038 0.999495 0.688600 0.652014 1.819324 1.070386 1.699599 -2.031757 0.332509 0.069029 -0.274685 0.166155 -0.278654 -1.776317 0.920112 0.399668 0.209068 2.035124 -0.235953 -1.034887 0.331161 0.239761 0.436248 -1.392716 1.063259 -1.274588 -0.210686 -1.097833 -0.072393 -0.893943 -0.976224 -1.394283 -0.624167 2.233845 -1.211324 -2.178300 1.204595 -0.362434 1.277841 -2.709768 0.532183 -1.012543 1.848863 -0.353085 -0.316798 -0.205141 -0.147693 -0.414898 0.189123 0.919997 -1.262362 0.903285 1.480270 0.538314 0.407896 0.588598 0.798241 -0.096601 -0.096658 -1.156153 0.948822 -0.122683 -0.640654 0.200713 -0.868371 1.133720 0.213997 -0.001302 1.090852 1.778103 0.424740 0.774177 1.381154 0.170974 -0.944877 0.063172 0.016181 1.184142 -0.720300 -0.346343 -0.880106 0.491346 0.098443 0.560344 -2.022323 -2.185003 -1.401614 -2.334793 -0.351026 -0.393155 0.390006 0.637583 0.302590 -2.462105 -1.011379 0.757453 -0.685960 2.452544 0.914212 0.949902 1.549184 1.351921 -0.787180 -0.619920 0.535820 0.413394 -1.141321 -0.105589 -1.359694 1.107085 -0.931751 1.365212 1.516440 -0.380352 0.673194 -0.304672 1.562642 -1.083628 2.763479 1.349963 -1.735079 0.392495 0.321456 1.914804 -0.290459 -1.278294 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -0.951535 -2.287051 1.893989 1.801327 0.611416 1.345918 1.083989 -0.483124 1.097925 1.270988 -0.876133 1.383378 -1.218207 -0.430891 -0.075203 0.359490 -0.541472 -1.601244 0.572771 -0.024123 0.094226 -1.402231 -0.838516 1.535394 0.371085 0.211335 -0.533468 -0.259399 -2.875497 -1.488673 0.455996 -0.265116 1.031147 0.297297 0.516005 -2.776016 1.035528 2.031785 -0.039797 -2.650677 0.014396 -0.654105 -0.321629 0.359464 0.044324 1.022200 0.888085 0.557647 -0.185169 0.643908 0.459379 -0.505869 0.792387 1.934032 0.152433 2.011532 1.878836 -0.011795 0.721874 0.073716 0.614772 -0.381428 1.230302 1.322241 -0.746073 -0.228241 -0.362629 0.015001 -1.739591 0.436903 0.678409 -0.421008 -1.137587 -0.236803 -0.835411 -0.355150 -0.679229 0.364457 2.751222 -0.536702 3.035738 1.269392 2.007559 -0.557885 1.408893 -0.060903 1.276968 0.736408 -1.526044 0.172047 -2.271129 -0.763839 -0.183155 0.800153 -1.185133 0.132106 0.727859 -0.825283 -1.943544 1.158018 -0.337359 -0.224297 -0.920330 0.517289 0.980551 0.931949 -0.730619 -1.858556 -1.367462 1.008887 -1.005529 -1.006697 -0.246450 0.073502 -0.294979 -0.437728 -1.199777 -0.407744 1.647646 -1.336919 -0.514625 1.464982 -0.788757 1.308635 -0.392332 -0.207735 0.006345 0.634638 1.109837 0.287370 0.846814 -1.500290 -2.857609 0.592271 0.265764 1.128369 -0.854286 -0.284759 0.829162 0.746464 0.872987 0.993657 -0.101129 1.027239 1.260035 -0.268052 -0.840330 -1.926736 -0.022531 -1.030533 0.612063 -0.907952 -0.083123 0.009420 1.382440 0.121632 0.336379 1.489268 -1.207171 1.458995 -0.155022 0.388378 0.026878 0.159932 0.518156 -0.735259 -1.281388 1.069646 1.573274 0.410390 0.684777 -0.717731 0.028467 -0.580107 -1.294181 0.803086 0.232715 0.261291 1.873073 0.741938 2.692749 -1.168555 -0.065038 -0.237011 -0.031701 0.224029 -0.256098 -1.908380 1.160368 0.105329 0.306015 1.976256 -0.187925 -0.775729 0.717273 0.049692 0.125999 -1.324573 1.704733 -1.348853 -0.322811 -0.712880 -0.036303 -0.902994 -0.959720 -1.145080 0.160424 2.191598 -0.218928 -1.879315 0.416453 -0.777790 0.381946 -2.379621 1.552046 -0.953404 1.046166 -0.576522 -0.556582 -0.220071 0.577384 0.066112 -0.244944 0.983585 -1.337725 1.241715 1.406146 0.252195 -0.030020 0.860107 0.526243 -0.153875 -0.493717 -0.929565 0.797974 -0.019691 -0.147415 -0.077770 -0.783198 1.461483 0.298295 -0.598588 0.720524 1.568058 -0.487747 0.168588 1.153958 -0.221494 -0.962126 0.228872 0.249148 1.498443 -0.792164 -0.244665 -1.167023 -0.054338 0.225695 0.602708 -1.878426 -1.226369 -0.503020 -2.033835 -0.673758 0.231627 0.733149 0.776389 0.344711 -2.508363 -1.155499 1.017905 -0.536637 1.180363 0.981526 0.987768 1.511472 0.807136 -0.062032 -0.648100 -0.335141 0.141073 -1.192484 -0.374323 -0.357807 0.579084 -1.065931 1.518105 0.872108 -0.107792 0.435051 -0.305444 1.632619 -1.074822 2.620902 1.329984 -1.399850 0.279543 0.319733 2.172844 -1.533305 -1.157455 -PE-benchmarks/sudoku.cpp__main = -0.516244 -2.642684 3.191114 2.912033 0.282712 1.610086 0.618145 -1.303579 1.811707 1.240450 -1.409993 1.601119 -1.949195 -0.215604 -0.253565 1.125319 -1.878191 -2.157838 0.404811 -0.247693 -0.190142 -1.785933 -0.106472 1.693378 1.007070 2.023797 -1.016724 0.343391 -2.953178 -3.123583 0.881041 -0.513550 1.540310 1.920477 0.706527 -3.043886 2.277888 2.790085 -0.306089 -3.409816 0.292695 -0.967782 -0.896747 -0.408627 0.215400 1.602636 0.898907 1.274636 0.160135 0.954545 -0.022544 -0.539988 1.215411 1.705270 0.136466 2.456420 2.365253 0.020758 0.676727 0.000578 0.906282 -0.031099 1.655281 1.959529 -1.141995 -0.943260 -0.375441 -0.531388 -2.297362 1.276124 0.480950 -0.571169 -1.608421 -0.648017 -1.000641 0.050193 -0.885880 1.210418 3.723846 -1.063275 3.427366 1.436432 2.028226 -0.929600 1.557622 -0.263473 2.025914 1.304588 -1.708021 -0.410728 -2.594567 -1.825706 0.139341 0.716201 -1.601535 0.165508 1.132580 -2.375226 -2.706256 1.072797 0.041083 -0.614145 -1.373711 0.745360 1.566516 1.171480 -0.496075 -2.183179 -0.772495 0.899292 -1.321642 -1.385146 -0.845642 0.814337 -0.820160 0.303315 -2.377664 -0.515070 1.512471 -1.759326 -0.035115 1.713195 -0.522645 1.165431 -0.731881 -0.152211 -0.070457 1.314620 0.946216 0.790090 1.468682 -0.806984 -1.752710 1.289837 0.953796 0.814374 -1.481932 -0.311757 0.690096 0.920637 0.131424 0.545161 -1.253929 1.389475 1.737935 -0.672562 -1.639970 -2.184667 -0.795438 -2.179631 0.791437 -1.709808 -0.398867 0.616120 2.127765 0.198773 0.912488 2.606912 -2.550006 1.491001 -0.090878 0.886890 0.503155 0.722194 0.829410 -1.229013 -1.835001 1.890720 1.631912 0.291743 0.721001 -0.866240 0.162960 -1.366704 -2.010265 2.123174 0.162883 0.282079 2.313459 0.974244 2.748120 -1.334487 0.166745 0.363674 -0.083303 0.161571 0.105677 -2.853152 1.687751 -0.047359 1.697081 2.790751 -0.099277 -1.150395 0.652496 0.214124 0.138146 -1.893825 2.000128 -1.992440 -0.084956 -1.064097 0.362687 -0.786836 -1.455605 -1.211103 0.242092 3.068071 -0.680975 -2.613497 1.452625 -1.083518 1.237970 -3.279170 0.789699 -1.616610 1.517408 -0.285576 -0.611425 0.000117 -0.889189 -0.453342 -0.686495 1.398830 -1.004656 1.380078 1.755201 0.544994 -0.247747 0.952198 0.796506 -0.411761 0.207896 -1.177312 1.322753 0.062330 -0.298010 -0.297843 -1.117157 1.198162 -0.301852 -0.893637 1.495135 2.021134 0.104588 0.975580 0.832908 0.670674 -1.711399 0.925528 0.423482 1.705281 -1.077696 -0.658060 -0.832555 0.227328 -0.132707 1.556606 -2.765871 -2.762723 -1.238296 -3.087812 -1.288047 -0.318856 1.698462 0.435202 0.283976 -2.584530 -1.772302 1.872484 -0.612376 2.573080 1.404922 1.377468 1.847567 1.342042 -0.553542 -0.842489 -0.412828 0.577977 -1.292706 -0.495155 -1.046994 1.390673 -0.950471 1.514272 2.083322 -0.598516 0.620658 -1.580349 2.498269 -1.467933 3.358308 1.637432 -2.040837 0.691760 0.328939 2.548167 -1.041426 -1.840967 -PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -3.490669 -5.675679 5.210039 4.604937 1.624743 3.571389 2.008185 -0.947471 2.236300 4.379441 -1.536064 3.652452 -2.919158 -1.438870 0.086054 1.034941 -1.120437 -4.031152 0.732176 -0.861930 -0.675401 -2.513002 -2.912811 4.110371 1.049312 -0.519725 -2.031125 0.000124 -6.791657 -5.994437 -0.491351 -0.310443 2.631489 -1.556295 1.576509 -7.957361 3.375963 6.102158 -0.080758 -6.363584 0.096163 -1.473739 -0.715349 1.854195 -1.095786 1.945110 2.583679 -0.732250 -0.739505 1.247663 1.017810 -0.470186 1.985682 6.819541 1.290179 5.410890 5.273127 -0.191084 1.101134 0.721073 1.483614 -1.472280 3.160657 2.030723 -1.583406 -0.597473 -0.309561 0.455924 -3.607212 0.906218 1.156828 -2.923542 -1.011693 -1.506842 -3.565363 -1.789362 1.608745 0.594808 6.540962 -2.127044 7.194812 3.394086 3.915140 0.311765 4.320818 -0.596854 4.070707 1.889789 -3.100058 0.596357 -3.295416 -1.873636 -0.496461 4.159780 -3.357502 -0.433344 2.443809 -3.855617 -5.625496 3.852202 -1.270905 -0.709009 -4.457800 -0.541623 2.946862 2.245983 -2.204261 -4.532497 -4.341773 2.338430 -2.554895 -2.985827 -0.394355 -0.248692 -0.558634 0.502281 -3.709408 -0.653820 4.096850 -3.161260 -2.778879 4.166251 -1.350405 4.044482 -1.083264 0.359976 -0.315176 1.296243 2.514178 0.901975 0.279342 -2.569355 -6.547928 -0.744939 -0.054690 0.644512 -1.982293 -1.105687 1.812501 2.073694 1.854503 3.568402 -1.797693 4.594558 3.777220 0.437331 -1.968193 -4.929605 -0.462989 -3.170336 0.820917 -2.575695 -2.254598 0.565438 3.500632 -0.194718 0.162398 4.292697 -2.030044 3.145768 -0.390854 0.375440 0.170536 -2.317382 1.441753 -2.073458 -3.536062 2.380538 4.651352 2.024945 1.373434 -1.925616 -0.262819 -1.173290 -4.343181 1.541275 0.202293 0.678807 4.384292 2.088503 8.912506 -4.273700 0.094418 -1.236331 -1.098235 1.059671 -1.043628 -4.887213 0.931047 0.787788 0.290650 5.870721 -0.406833 -2.778635 1.952592 0.091118 0.247559 -3.484207 4.852411 -3.943165 -0.015881 -1.169084 -1.588956 -2.830712 -1.931435 -3.753459 -0.639890 5.740021 -2.443950 -5.963307 1.895757 -0.305723 1.299925 -6.920323 3.114575 -2.293441 3.785961 -1.833487 -1.391384 -0.028353 2.114073 0.431342 0.457640 2.550564 -3.710395 3.118334 3.420643 0.318441 0.916452 1.652916 1.484698 -0.794922 -1.394612 -3.066831 2.895022 -0.412783 -1.507370 -1.575628 -1.835427 3.477830 1.104613 -0.954923 -1.349542 3.161760 -2.251001 -1.040580 4.213068 -0.772804 -2.465266 1.279159 0.412075 4.312564 -1.827064 -0.461041 -3.009994 0.744607 1.176159 2.121708 -5.342931 -2.296490 -2.822841 -5.773093 -2.046088 2.727263 1.290228 2.012255 0.503942 -5.988050 -3.173786 4.469939 -1.264709 3.755648 2.866205 3.353571 4.376616 2.053817 0.943100 -1.813334 -0.981639 -0.518876 -2.899559 -1.805173 -0.479666 1.594940 -2.381371 4.276670 1.812672 0.428816 1.870180 0.327240 1.844865 -3.143851 6.262102 2.863857 -3.677136 0.575327 2.385949 6.021920 -5.399548 -3.147873 -PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -3.267908 -6.027616 5.688125 5.245631 2.380723 3.839365 2.536027 -2.032626 3.181338 4.790572 -2.349441 3.811446 -4.073951 -0.848111 -1.202951 1.851957 -1.259416 -4.741753 0.953912 -0.680096 -0.527296 -3.632480 -1.194272 3.382318 1.722490 0.729826 -2.269141 -0.260628 -7.925454 -7.762711 0.450123 -0.672252 3.097415 -0.068946 0.234433 -7.574012 4.093074 6.934744 -0.528083 -6.720637 0.770099 -1.870507 -2.014700 1.668002 0.446869 2.642809 2.200187 0.248425 -0.328256 2.048230 2.351842 -0.657528 2.349520 5.536699 0.263430 5.983856 5.360502 0.397385 0.823151 0.813094 1.662255 -0.636030 3.863765 3.737576 -2.266917 -1.009795 -0.141422 0.414160 -4.873863 1.536684 1.013963 -2.242393 -1.511906 -0.967985 -2.194185 -0.783847 1.693463 -0.140934 7.917426 -1.144075 8.225353 3.202530 4.369251 -1.564199 3.714131 -0.830228 3.889389 2.357211 -3.910254 -1.031095 -4.411625 -1.606150 -0.587952 5.673863 -3.653940 1.341458 3.000747 -3.267862 -5.934107 2.740374 -0.891210 -1.100651 -4.473186 1.116130 2.861052 2.218726 -1.817621 -5.313447 -4.081621 2.173838 -2.924325 -3.433106 -1.366614 -0.328977 -1.518152 0.969895 -4.120933 -1.531877 3.700922 -4.319005 -2.905790 3.721248 -1.425925 3.645048 -1.338130 0.547662 -0.051240 0.804066 2.032290 1.659097 2.331616 -2.237802 -7.013943 -0.402791 1.093306 1.798993 -3.263817 -1.013014 1.577216 1.809444 1.491468 3.048067 -2.630070 3.981887 5.082457 -0.601147 -2.456326 -4.517314 0.562559 -3.861072 1.380117 -3.294885 -1.350797 -1.111130 4.252526 -1.253006 0.972021 6.400563 -3.696920 4.322561 0.254526 0.706446 0.666443 -1.497756 1.636635 -2.596045 -4.593053 3.292867 5.040272 0.886925 1.386135 -1.397699 -0.211874 -2.320923 -4.793043 2.834997 -0.524902 0.013246 4.831697 1.870927 10.188210 -4.382691 0.810373 -0.347901 -0.636919 1.192771 -0.612987 -6.031807 2.009736 0.530305 2.012116 6.895970 0.226312 -3.542322 1.852538 0.212666 0.144161 -4.325753 5.964526 -4.522107 0.045747 -1.588178 -1.115265 -1.790763 -2.650091 -2.660142 0.676375 6.088192 -1.078170 -6.611170 2.015742 -0.619136 1.023719 -8.469696 3.168816 -3.150277 3.068169 -2.042588 -1.146830 -0.011335 1.801584 -0.190357 -0.075201 2.873956 -3.521496 4.518529 4.479166 0.517360 0.539494 1.639160 1.510392 -0.674632 -1.157368 -2.945404 3.100306 0.612655 -1.982938 -1.422268 -2.461517 3.509003 0.111319 -1.851786 0.261206 4.736560 -2.523242 0.107131 3.416986 0.699785 -3.034764 2.427608 1.218928 4.526921 -1.822436 -0.966006 -2.504504 0.253928 0.509464 3.494284 -5.649989 -3.892041 -0.941584 -7.711997 -1.676721 1.902608 2.952274 1.636304 0.907759 -6.717235 -3.482293 4.601391 -1.447673 6.134231 3.210271 3.998992 3.772029 2.080790 -0.067143 -1.559460 -2.036564 0.453841 -3.388477 -2.384836 -0.028211 1.696860 -1.974042 4.214691 2.041269 -0.063796 1.464624 -1.393463 3.549549 -3.015540 7.388649 3.465637 -3.260494 1.803508 0.671514 7.372034 -4.815052 -3.327478 -PE-benchmarks/rotate-bits-of-an-integer.cpp__main = -1.378847 -2.581057 3.530581 2.467510 -1.171110 1.544258 0.290839 -1.286470 1.135729 -2.124253 -0.839522 1.589835 -1.970098 -0.067886 -2.037363 -1.091848 -2.954421 -2.222796 -0.857504 -1.222681 -0.655595 -1.191794 -1.081923 3.000991 0.496602 1.754753 -1.629825 0.251541 -4.246940 0.702952 1.864673 0.075995 1.656897 0.468270 0.882907 -6.861875 1.208165 2.978125 -0.472168 -3.391318 0.908314 -2.468595 -0.405312 -1.897995 -2.377074 -0.290248 -0.035574 0.788657 -0.027952 -1.091823 -1.795242 1.180268 -0.720100 5.239661 -0.298780 2.174737 2.950174 0.337182 -0.290257 -0.185979 0.506892 0.136087 1.290257 0.644375 -1.663012 -1.371907 0.053219 -1.603232 -1.704164 1.355184 0.716538 -0.567710 -0.514353 -0.928447 -4.278644 -0.893869 2.709211 2.275103 3.152222 -2.756380 2.569478 0.059328 1.484101 0.869983 2.262264 0.527513 2.509597 0.874532 -0.457439 -0.071524 -4.039343 0.221920 -0.041010 -0.156710 -1.917187 -3.356332 2.008393 -5.271771 -3.040520 1.012252 0.276081 -1.274010 -1.259381 -0.833820 1.016818 1.334302 -1.557298 -1.959223 -1.279729 2.508906 -0.473876 -0.878361 0.761072 1.170559 0.294657 -2.689742 -2.816140 1.275164 1.760638 -0.503049 -0.068637 3.037660 -1.809281 0.814964 -0.283043 0.322034 -1.124729 2.708599 -0.136363 -0.958444 -0.656768 -0.695664 -0.149923 -1.176942 -0.075072 3.644317 -2.122415 -1.406829 0.572700 1.061800 -0.047984 -0.857155 -1.131323 0.679463 -0.129202 -1.040803 -1.136563 -2.651045 -1.436941 -3.561058 -1.339436 -1.145379 -2.034036 2.910194 2.050308 2.857851 0.593119 3.236267 -0.780187 1.616372 0.448869 -1.082888 0.817285 -0.350908 1.029653 -1.325009 -2.637305 1.470290 -0.726173 2.451003 0.245449 -0.082218 -0.351294 -1.603868 -2.383050 1.060979 1.907232 1.201106 2.969013 2.678359 -0.070615 -3.821657 0.624408 -0.141571 -1.707576 0.329942 -0.516832 -2.262734 0.200574 1.318536 -0.840869 3.377229 -0.434639 -1.366082 0.769859 0.347162 0.964314 -2.087652 0.799557 -1.775245 -0.443935 -2.379757 -0.442091 -1.429959 -1.100057 -3.166349 -3.454140 3.421231 -4.295168 -3.593736 2.236972 1.344381 2.973855 -4.548326 -0.563957 -1.234269 4.717126 0.425555 0.017922 0.290124 -0.879540 -1.723091 0.942347 1.178699 -2.468435 0.648547 2.272080 1.018144 0.861720 0.298861 1.845884 -0.730905 0.788612 -2.484138 1.541370 -0.515610 -2.483752 0.790210 -1.070014 0.572183 0.151248 1.561279 1.893973 1.939553 2.521450 1.433855 3.072771 0.773978 -1.185835 -0.479966 -0.663209 1.302523 -1.099734 -0.619703 -1.030361 2.134530 0.599059 0.210458 -3.354898 -4.420569 -4.940831 -3.961260 0.843600 -1.798309 -0.158873 0.573975 -0.212708 -3.850493 -1.916686 0.664620 -1.328618 5.064122 2.000655 1.411554 2.696427 2.361573 -2.035654 -0.233320 2.730233 1.672969 -0.944519 0.158523 -3.443097 2.116631 -1.358962 1.577528 3.551591 -0.590769 2.138851 0.462483 2.143232 -1.820318 4.325311 1.670948 -3.839863 0.552038 1.488150 1.514123 1.126793 -1.929709 -PE-benchmarks/channel-assignment.cpp__main = 0.381890 -2.162356 2.999208 2.818247 -0.034195 0.970441 0.860170 -1.066841 1.868193 0.986511 -0.894267 1.160006 -1.606589 0.497508 0.308596 1.508480 -2.136566 -1.760533 0.172219 -0.448759 -0.591761 -1.446821 0.324119 0.772229 1.052372 1.209180 -1.016342 -0.559958 -1.761751 -1.108366 1.524155 -0.685985 1.376781 1.449928 0.571401 -4.310144 1.775654 1.388561 -0.488549 -2.886215 0.203156 -0.795204 -0.212839 -0.893314 0.171899 0.849463 0.754700 2.166350 0.537852 1.021047 -0.235183 -0.249292 0.856155 3.323894 -0.491236 1.731726 2.015605 -0.047865 0.237851 0.057113 1.011151 0.063442 1.268501 1.669241 -0.368598 -1.153645 -0.661491 -1.188824 -2.032299 1.301758 0.947602 0.178946 -1.925995 -0.539565 -0.489278 -0.191041 -2.790407 1.983859 3.456779 -1.890153 2.511348 1.181881 1.888906 -0.321817 1.030782 0.087621 1.612891 1.060453 -1.386340 0.008577 -2.401147 -1.735678 0.367980 -0.912062 -0.978441 -2.097844 0.772005 -0.773935 -2.107975 1.247367 0.407065 -0.012175 -0.803862 -0.054762 1.363882 1.227212 -0.992133 -1.885850 -1.036603 0.239600 -0.585087 -1.045849 -0.224315 0.403097 -0.672042 -0.735274 -2.375549 -0.449745 1.038062 -1.467812 0.108737 1.503179 -1.003746 0.771100 -0.571145 -0.202441 -0.345790 1.800695 1.046979 0.903022 1.660073 -0.599587 -1.828666 1.536134 1.159272 2.010144 -0.422421 -0.022581 0.024590 0.902142 -0.293870 0.389624 0.259913 1.137453 1.396576 -0.645703 -1.838956 -1.895686 -0.085063 -1.766343 1.076878 -1.709507 0.248487 0.814831 1.814020 0.954928 1.073645 1.912860 -2.397116 1.627372 -0.549562 1.009115 0.624566 1.362221 0.836727 -0.925896 -1.370462 1.092882 1.269790 0.100760 0.749952 -1.095085 0.408543 -1.434846 -1.256496 1.002874 0.691287 -0.570304 1.621129 0.790598 2.410508 -1.524021 0.124695 0.672924 -0.054657 0.033600 0.175720 -2.507501 1.632841 -0.144261 0.681940 1.678699 -0.214086 -1.239147 0.754500 -0.161663 0.022924 -0.847170 0.779443 -1.369880 -0.802552 -1.253310 1.334899 -0.936517 -0.943506 -0.700793 0.525262 2.731426 -0.811775 -1.560386 1.385419 -1.328898 0.776689 -2.526209 2.695500 -1.220486 0.786380 -0.670594 -0.952585 -0.116232 -0.130726 -0.716657 -0.303584 1.293350 -0.543544 0.425953 2.081287 0.607470 -0.108328 0.870427 1.177823 -0.156943 0.423002 -0.731340 1.501693 -0.387008 -0.104497 -0.208171 -0.837447 1.173660 -0.486994 -0.231884 2.021295 1.367172 0.619152 1.280530 0.782822 0.758718 -1.565478 0.880968 0.123329 1.648254 -1.125790 -0.055486 -0.586406 0.184618 -0.653142 1.332701 -2.222621 -2.299983 -1.309229 -1.589063 -1.183054 0.166928 0.937406 -0.191550 0.057554 -2.268724 -1.359661 0.509478 -0.841649 0.452292 1.418617 0.853144 1.775092 1.597280 -0.772950 -0.842998 0.027024 0.250972 -0.733351 -0.225413 -1.231867 1.304800 -1.329643 0.924808 2.122292 -0.386348 0.367543 -1.067849 2.973145 -1.042293 3.079153 1.405194 -1.613222 0.630858 1.424317 2.570393 -0.196927 -1.531184 -PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -3.846100 -6.482415 6.377302 6.053614 2.047458 4.745001 1.802708 -2.981775 3.246178 6.252791 -2.205163 3.880370 -3.900043 -1.259907 0.014539 1.835951 -1.561289 -4.338638 0.479643 -1.856913 -1.242020 -3.733645 -2.716131 4.267599 1.365579 -0.443970 -2.386247 0.356832 -7.557089 -8.301630 -0.202251 -0.491070 3.197530 -0.332337 1.199013 -9.094208 4.548999 7.099854 -0.696205 -6.635512 0.144057 -2.085698 -1.849106 2.408049 -0.409479 2.580434 1.948056 -0.950019 -0.171898 1.836980 3.255570 -0.655877 3.435999 7.629425 0.509868 6.830659 5.751291 -0.307492 1.284828 1.686422 1.674087 -0.703260 4.327084 3.469520 -1.864454 -1.382084 0.126225 0.930419 -4.490117 1.968616 0.914982 -3.882939 -1.482821 -2.142819 -3.029342 -1.969222 -0.501907 0.414924 8.348783 -2.016277 8.615361 4.036737 4.667031 -0.642596 5.486543 -0.987995 6.331758 2.310945 -4.486670 0.484062 -3.200022 -2.216925 0.120055 5.945627 -4.311132 1.130058 2.997167 -4.584044 -7.014802 4.370905 -0.660304 -0.972100 -5.465415 -0.422975 3.151598 1.354791 -2.255417 -6.082097 -4.758676 3.348076 -3.467459 -3.784840 -1.849442 -1.047536 -0.592009 1.922776 -4.536271 -1.099344 4.411150 -4.083018 -3.994715 5.199245 -0.682403 3.644659 -1.400092 0.759814 -0.333112 1.024478 1.330308 2.657651 1.327821 -1.953568 -8.933001 -0.078333 0.874093 -0.447467 -2.569682 -1.234433 2.056235 2.353235 1.253710 5.390518 -2.302010 5.703856 5.183895 0.391951 -2.559152 -5.200080 -0.108044 -4.565720 1.572121 -3.434940 -2.584602 -0.870390 4.716687 -0.097920 0.788406 4.611922 -3.049064 4.549861 -0.481901 0.908436 0.968942 -2.781782 1.911187 -3.179993 -4.825655 3.224040 5.871769 1.250752 2.115591 -2.159481 -0.305433 -1.838834 -4.933966 2.726740 -0.301718 0.173325 5.927897 3.015432 13.810466 -5.364320 1.503049 -0.729644 -0.874533 1.487679 -1.474905 -6.213198 1.604238 1.335985 1.422383 7.875774 -0.165709 -3.303328 1.075446 0.063497 0.543256 -4.563393 6.181294 -4.725106 0.243629 -1.406791 -1.611886 -2.983785 -2.884409 -3.051981 0.436562 6.919621 -3.288486 -6.444154 3.825568 -0.948796 0.792405 -8.606111 5.111595 -3.316910 3.777571 -3.227037 -2.354250 -0.754387 3.162076 -0.417934 1.503877 3.197425 -4.840740 4.334626 4.970704 0.557936 1.925604 1.561553 2.005966 -1.050279 -1.542477 -3.869944 4.434338 0.632397 -1.449647 -2.470484 -2.919610 3.999342 0.516729 -1.395457 -0.938261 4.966291 -3.284290 -1.610389 4.772330 -0.143348 -3.089569 2.917735 0.979665 4.131573 -2.804230 -1.094034 -2.560805 -0.205436 0.878006 2.730415 -6.731467 -2.355525 -2.804264 -5.541811 -2.510649 3.604886 2.565277 2.466897 0.705759 -7.258092 -3.967414 5.847631 -1.977836 3.226743 3.246478 4.867181 4.701285 3.133988 1.759555 -1.921593 -3.303235 -0.774993 -3.854052 -2.409094 -0.312421 2.716827 -2.187656 5.375307 1.723648 0.558277 2.231176 0.838896 2.679984 -3.676111 7.250766 3.851851 -3.379074 1.555887 2.890464 6.941142 -6.312994 -3.758500 -PE-benchmarks/bfs.cpp__main = -0.004841 -3.639224 5.706005 4.803156 -1.146366 1.885144 0.724359 -2.714036 3.214939 -0.281105 -1.420807 1.686089 -3.445509 1.108676 -1.342169 1.900111 -4.834688 -3.396805 -0.557806 -1.571573 -1.644571 -2.848118 1.030533 2.355881 1.984361 3.265215 -2.394864 -0.207074 -3.433295 -1.766465 3.344328 -1.301849 2.727164 3.245678 0.885388 -8.602735 3.496460 2.800086 -0.978212 -4.202459 0.722140 -2.007655 -0.398944 -2.544719 -1.715393 0.890074 0.672155 2.797508 1.780612 0.754677 -0.540841 -0.094363 0.854113 6.121953 -1.368473 3.109444 2.789342 -0.027335 -0.018632 -0.257937 1.487359 0.495962 2.353121 2.849621 -1.157534 -2.376392 -0.690695 -2.561596 -3.796269 3.166993 0.489672 0.426657 -3.205969 -1.072786 -2.996936 -0.729093 -1.861670 3.775686 6.391755 -3.727171 4.090627 1.309744 2.522045 -0.620309 1.828834 0.103398 3.462795 1.783378 -2.138881 0.163899 -3.573001 -1.509114 0.363217 -0.644450 -2.020786 -4.276488 1.920301 -4.969469 -4.435257 1.692161 0.938072 -0.451920 -1.777863 -0.434324 2.318918 1.511152 -2.308897 -3.756977 -1.080876 0.809974 -0.299716 -1.505621 -0.144253 1.186636 -0.799062 -1.606345 -4.765636 -0.736355 1.142569 -2.814995 0.614235 3.275938 -1.439691 1.307241 -0.585987 0.396193 -0.997529 4.093940 0.813740 1.369530 1.020419 0.071113 -1.071782 0.555658 1.643618 3.823789 -1.704243 -1.245990 -0.226460 1.411861 -1.414078 -0.478921 -0.458513 1.404120 2.266733 -1.378269 -3.372930 -2.441577 -1.520015 -5.430386 0.784819 -3.384323 -1.084834 2.762783 3.280414 2.391060 2.179963 4.487309 -3.254387 2.619490 -0.524355 0.482723 1.900645 1.319282 1.989833 -1.974912 -3.114973 2.597874 0.675205 1.337613 1.115575 -1.786120 0.178505 -3.008358 -2.581025 2.213854 1.805452 -0.138987 2.984860 1.833228 2.562730 -3.371306 1.083974 1.631907 -0.310656 0.456496 0.446193 -4.645485 2.727071 0.093488 0.354706 3.139650 -0.494367 -2.116336 1.589258 -0.421915 0.982525 -2.947632 1.047658 -2.688992 -0.484274 -3.496837 1.492653 -1.430136 -1.568083 -1.766233 -0.997212 4.902996 -4.156038 -2.944371 3.861969 -0.049292 3.359568 -5.018613 2.498417 -2.332122 4.114953 -0.662856 -1.344451 0.315687 -1.422253 -1.258155 -0.039076 2.137806 -1.150662 0.733954 3.654184 1.191680 0.442029 1.288049 2.957304 -0.148027 1.790341 -1.559043 2.980028 -0.098006 -1.741896 0.287382 -1.751326 0.741632 -1.216129 0.687220 3.945463 3.285813 2.117983 2.955805 2.067984 2.079861 -2.627879 1.006563 -0.291655 2.397727 -2.199811 -0.609049 -0.342183 1.987636 -1.372787 2.116117 -4.537045 -6.455289 -5.015642 -3.813333 -1.706252 -1.139403 1.604983 -0.465649 -0.085655 -3.598250 -2.614900 2.040514 -1.818816 3.805731 2.663928 1.927025 3.470679 3.829290 -2.331052 -1.375137 1.260716 1.586431 -0.889830 0.530475 -4.022537 2.809048 -2.425171 1.807096 4.783366 -1.420712 1.065212 -0.998160 4.910161 -2.491078 5.894762 2.400591 -3.504472 2.459903 2.134969 3.303642 1.783284 -2.833260 -PE-benchmarks/bfs.cpp__Graph::BFS(int) = -1.300888 -7.769061 12.004080 10.383480 -0.738025 5.688642 1.675505 -7.487906 6.898229 3.361663 -2.833700 3.209044 -7.121467 0.891470 -2.943592 4.012552 -7.366804 -6.516380 -2.102424 -4.658961 -3.423030 -6.373805 0.867114 4.992574 3.689166 5.324394 -4.709999 0.612437 -8.219366 -9.138277 5.325236 -1.026772 5.121282 4.294266 1.657024 -16.121258 8.994276 9.071915 -2.136803 -8.954038 1.603964 -3.058097 -3.232683 -0.378133 -2.170085 3.009704 0.077948 4.276472 2.453508 2.612591 2.464507 0.684355 3.697062 12.444401 -1.852318 8.941509 6.873257 1.166735 0.645535 2.024765 2.351476 2.097487 4.824947 5.814509 -1.905950 -4.102938 -0.261458 -2.307835 -8.094842 6.386974 0.104438 -4.127937 -5.104744 -3.725817 -5.371134 -1.264471 -4.466918 5.200426 13.217155 -6.368835 9.595515 3.836625 4.494061 -1.906381 4.841907 -1.503702 8.370754 3.869279 -4.263239 -0.057434 -6.583771 -3.785369 1.143556 1.244223 -7.142196 -6.531466 5.241971 -10.555581 -10.390744 4.240650 1.651571 -2.547553 -5.371975 -0.651016 4.587825 1.412993 -3.941415 -8.527225 -3.682555 4.519807 -1.998956 -3.860572 -2.065901 1.356285 -1.022799 0.114307 -9.706626 -0.552087 3.678794 -5.412087 -1.594474 7.390737 -1.483402 2.904007 -1.380245 1.400263 -1.958869 6.119620 0.842376 3.920499 1.839115 1.388245 -4.822224 2.168553 2.910040 3.158816 -3.758927 -2.081866 0.666984 3.253634 -2.188004 3.702775 -4.060209 3.850110 6.638592 -1.328947 -5.990889 -5.157582 -3.179987 -11.149011 2.065309 -6.490743 -4.420830 2.179706 7.024683 4.001595 3.580845 8.372239 -7.221203 4.868236 -0.621882 1.393853 2.692285 0.303696 3.597057 -4.459146 -8.183345 5.538895 3.553376 2.047777 2.479001 -2.804410 -0.724073 -5.337054 -5.926917 5.091549 1.495928 -0.324292 7.308682 5.298003 11.843058 -7.010837 2.756333 2.295796 -2.196470 1.921897 -0.236199 -10.364222 3.961244 1.287432 3.176254 10.397779 -0.800187 -3.108403 2.893502 -0.774755 1.783951 -7.139018 5.315333 -6.987576 -1.003328 -5.945490 1.326953 -2.976206 -3.497065 -3.813107 -2.024424 10.223402 -7.732054 -7.586424 9.206704 -0.890969 3.984638 -10.752362 5.668817 -4.722575 6.952517 -1.690557 -2.454306 -0.002178 -1.374134 -2.519432 0.905232 3.907106 -4.227671 4.079995 9.008044 1.382078 1.228520 2.031879 5.298638 -2.450752 2.361180 -5.840641 7.830830 0.184903 -4.032649 -1.005162 -4.084750 1.954091 -3.460614 -0.265493 5.537213 7.277534 1.005626 2.174232 4.668121 3.720362 -5.212130 4.920927 0.965301 3.383165 -4.704432 -1.709110 -0.279585 1.939032 -1.674093 4.626184 -10.203334 -9.984124 -9.502755 -9.392961 -2.971277 -1.104001 4.661471 0.142932 -0.655501 -8.466162 -7.314501 8.089147 -3.765036 6.713684 5.959386 6.225597 7.219954 8.314376 -2.469251 -0.548645 -0.480243 1.760543 -3.375601 -1.851221 -5.149542 6.603578 -2.351860 4.906449 7.701800 -1.079797 4.141697 -2.045481 7.679293 -5.691534 11.767484 4.741041 -5.361096 4.742290 3.922575 8.684629 -0.636604 -5.717333 -PE-benchmarks/boolean-parenthesization-problem.cpp__main = -4.397468 -8.783498 7.744809 7.137233 1.441933 5.596288 3.485907 -1.387368 0.402697 4.768420 -2.830479 6.864215 -3.129933 -2.465648 -2.576854 -0.281421 -0.678875 -4.382071 0.881030 -0.946461 0.507723 -2.824020 -6.603869 8.633413 1.315338 -1.601882 -1.876786 -1.585007 -11.818751 -5.097213 -2.016293 0.352508 3.088905 -1.551467 2.550067 -7.546384 2.385102 9.555696 -0.038727 -7.883528 0.460610 -1.686993 -2.455223 3.243231 -3.494787 2.192872 2.429678 -2.235572 -2.134668 1.489245 3.209649 -0.263380 6.673185 8.996821 2.837879 8.389937 7.912656 0.081319 4.706988 0.293091 1.923810 -1.801776 3.102993 1.938154 -0.475719 -0.693238 -2.209058 1.973663 -2.610708 -0.073684 1.772189 -4.765568 -2.355182 -1.836192 -5.642789 -2.317118 -4.039652 -0.298370 8.056031 -2.496813 11.261633 5.292282 5.758429 -1.403522 6.156578 0.319825 5.119535 2.570758 -3.457402 2.838408 -5.191867 0.687930 -0.018057 4.803109 -7.805367 -1.488689 4.454070 -7.245484 -8.089801 5.977636 -0.918178 -2.855264 0.056629 0.459917 0.594228 1.400751 -3.653601 -5.938041 -5.153775 6.044791 -2.119646 -4.002514 -1.057394 0.392336 2.002464 0.548544 -3.935041 1.261421 7.400525 -3.477532 -2.540388 6.019085 1.501414 5.615000 -1.383193 -0.137366 -0.071987 0.769726 3.379250 1.024078 -2.100516 -4.142612 -10.105462 1.167012 0.593427 -2.197163 -4.130241 -1.416463 4.446128 3.538943 6.295484 7.279811 -0.743420 5.304879 1.855387 0.182831 -2.031217 -8.039366 -2.586123 -2.661280 0.014944 -1.961421 -5.415767 0.024442 4.055446 0.016829 -0.496642 1.388076 0.729710 4.120423 0.762335 -0.044472 -0.722109 -5.231865 1.275538 -2.663422 -5.266344 3.895744 5.891131 3.856289 2.038900 -0.869155 -0.225138 0.046018 -3.274155 1.839277 0.981511 0.753631 8.748766 4.348286 13.179626 -2.114922 -0.443684 -2.901131 -1.889520 1.073832 -2.208699 -6.117856 1.338694 1.594763 -1.537063 8.879719 -0.537606 -0.799567 3.747676 -0.803250 0.598669 -5.179714 8.129699 -4.034743 -1.110074 -1.877392 -1.903679 -3.401496 -2.379066 -6.335248 -2.705825 7.749635 -8.057593 -4.840928 0.822575 0.666888 -0.877951 -6.960341 7.065982 -2.485452 6.099149 -0.640731 -3.452850 -0.203446 3.760824 -0.434040 0.979821 3.288584 -7.724055 4.088399 3.782802 0.295506 0.660277 2.428520 1.957049 -2.171534 -1.781817 -4.966892 3.989782 0.822873 -2.156275 -1.446039 -2.419765 3.853872 1.429819 -0.536345 -1.250862 3.854041 -2.154646 -3.669476 5.362658 -1.859804 -2.608638 0.097428 0.078714 4.338160 -3.787363 -1.246387 -4.796895 -0.333482 2.920534 0.571646 -7.431443 -1.309079 -6.749081 -4.212291 -1.346380 0.900769 3.179793 3.698343 -0.083982 -9.855137 -6.989460 8.942773 -2.570166 -0.615671 4.969895 4.537755 6.374480 1.795749 3.448677 -0.622105 -2.428784 1.426036 -2.712597 -0.856308 -0.513708 1.484512 -3.593734 6.312817 2.241804 0.895102 3.970563 3.187200 1.222843 -4.600906 8.479685 4.070005 -6.439079 0.260304 4.379008 4.198518 -9.025692 -3.988108 -PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -25.407351 -38.017121 27.687276 26.377306 10.647408 25.595965 17.173791 -2.743924 -1.894364 25.271393 -10.626362 29.723251 -11.059551 -15.045176 -8.881753 -4.790577 5.971889 -18.079643 6.301981 -2.614485 4.557480 -11.382672 -34.770400 38.841446 2.111734 -17.105714 -5.469625 -6.355410 -54.087289 -23.777191 -14.345473 2.932098 11.469600 -13.463768 10.670362 -26.882837 7.457674 42.246514 1.775945 -30.803177 -0.487223 -5.618176 -10.563835 20.461998 -15.166734 10.073157 11.930197 -17.997987 -12.197530 5.571041 19.690268 -3.328319 28.455622 34.400485 14.381909 37.225607 32.727444 -0.223551 22.503920 2.862943 6.632519 -10.496984 13.569940 7.053895 -2.929337 2.017516 -7.762458 13.951071 -9.323651 -5.045143 8.867821 -24.589659 -6.036958 -5.905864 -23.068349 -12.068744 -11.770042 -10.472488 31.110291 -4.892337 51.589435 24.715811 26.626591 -6.318530 28.912955 0.531909 22.533271 9.009712 -16.930958 14.031756 -20.613337 6.344124 -2.440710 30.069524 -33.905811 4.751512 17.549766 -25.276403 -33.476986 27.028744 -7.819927 -11.328985 -2.834411 3.320965 1.438248 3.520799 -14.975663 -25.906211 -26.272971 28.454182 -12.554634 -17.224071 -4.940324 -1.964003 10.132024 3.883267 -11.787535 4.147293 34.949239 -14.823804 -16.511514 25.333797 6.571476 26.409048 -5.253792 -1.184915 1.005609 -3.516318 15.268427 2.687468 -11.855517 -24.027375 -54.247301 0.003716 -0.744516 -13.847631 -16.038102 -7.047048 22.533628 14.994106 32.070892 37.439672 -1.816154 25.268877 7.728458 3.936129 -4.485326 -34.458255 -7.876628 -5.335350 0.413355 -5.834345 -23.728115 -4.795578 15.351809 -5.002257 -5.856491 2.741678 9.105255 20.534032 2.783717 -1.416013 -5.997900 -29.709759 4.129403 -10.319401 -20.810961 15.615240 28.946339 17.286254 9.237725 -4.222546 -1.637777 4.278305 -15.654327 4.002776 -0.013739 4.661785 37.407643 16.944769 65.297506 -8.575606 -2.078555 -16.544789 -6.657050 5.730432 -11.021542 -22.668721 2.220574 7.613048 -11.322484 38.761081 -1.844293 -3.775240 14.708064 -2.830906 2.142086 -22.866549 39.296768 -15.886963 -2.214246 -3.949974 -14.074886 -15.695100 -10.257275 -27.677356 -10.497423 30.148308 -30.628150 -22.724458 -1.551451 3.932614 -7.634819 -29.245667 30.816812 -9.240050 24.173488 -5.538317 -14.890087 -2.159108 24.397042 2.689432 6.375952 12.668167 -36.955106 20.667527 14.141820 -0.789198 4.687725 10.662890 5.244135 -8.360125 -13.541663 -21.054074 15.321826 4.957583 -8.042183 -7.646573 -10.217567 19.377300 10.502884 -4.262308 -14.358996 17.515859 -17.079355 -22.810663 24.790532 -14.081129 -8.334846 -2.639168 1.805099 18.616136 -14.607333 -4.823301 -23.497026 -4.835793 16.044677 -0.782726 -29.358468 3.218979 -22.324038 -17.304457 -4.936768 10.549874 13.053889 20.761618 1.552161 -43.589429 -27.875864 42.609538 -9.984802 -4.285622 19.303236 20.667891 26.051873 3.443885 20.211500 -4.024633 -13.888353 3.582651 -13.858711 -4.569784 3.600210 2.603807 -15.731846 30.842779 1.243716 6.852912 15.846426 17.189821 0.092446 -18.980633 33.070835 16.708106 -24.785889 -1.061386 16.914223 17.000041 -47.537614 -14.659684 -PE-benchmarks/coin-change.cpp__main = -1.194669 -3.000480 3.061191 2.721962 0.557162 1.776207 1.322721 -0.878262 1.274151 1.758589 -0.998833 2.003614 -1.678773 -0.462446 -0.492235 0.735944 -1.038010 -2.078293 0.405459 -0.395703 -0.172589 -1.574368 -1.077629 2.123143 0.801506 0.243896 -1.016719 -0.422533 -3.681002 -2.469230 0.310399 -0.304104 1.416087 -0.081910 0.693187 -3.930925 1.659309 3.000384 -0.249275 -3.386570 0.251944 -0.871685 -0.515089 0.290397 -0.491065 1.070437 1.074286 0.491672 -0.155263 0.884822 0.537307 -0.168494 1.501381 3.345846 0.287462 2.750544 2.696561 0.086886 0.843081 0.170874 0.888266 -0.472452 1.470586 1.318496 -0.680320 -0.606986 -0.598822 -0.021787 -1.954399 0.681844 0.700403 -0.995989 -1.433176 -0.537904 -1.724182 -0.620574 -1.218132 0.733350 3.634285 -1.304578 3.798678 1.637581 2.213246 -0.357800 1.879289 -0.008392 1.797691 1.079214 -1.644623 0.282849 -2.370525 -0.769179 -0.039802 0.964744 -1.910904 -1.042419 1.403141 -1.986866 -2.907419 1.789882 -0.175889 -0.590415 -1.120340 0.089466 1.121422 1.202912 -1.280154 -2.427774 -1.720113 1.416501 -0.973022 -1.434376 -0.141605 0.104820 -0.083529 -0.245317 -1.996185 -0.138253 2.123650 -1.682288 -0.754144 2.149900 -0.496899 1.727067 -0.545695 -0.041061 -0.153102 1.062410 1.319155 0.701449 0.482490 -1.202501 -3.282450 0.538638 0.522349 0.856360 -1.181895 -0.263184 0.902180 1.174410 1.033949 1.586151 -0.441170 1.632922 1.427834 -0.285176 -1.300608 -2.626053 -0.455570 -1.621769 0.588630 -1.286929 -0.800311 0.445015 1.880804 0.232797 0.433905 1.877352 -1.376542 1.672390 -0.104152 0.336742 0.218202 -0.473890 0.786327 -1.084006 -2.004389 1.493978 2.080210 0.915009 0.755758 -0.765846 0.111126 -0.787809 -1.608381 0.911802 0.450828 0.005104 2.639648 1.314088 3.627741 -1.618037 -0.058330 -0.303156 -0.399170 0.359945 -0.478235 -2.746970 1.207499 0.352058 0.315494 2.893959 -0.238185 -1.095641 1.252127 -0.144053 0.215228 -1.758586 2.183473 -1.877110 -0.523949 -1.013568 -0.075559 -1.219606 -1.093877 -1.779100 -0.331893 3.082662 -1.603288 -2.312866 0.900953 -0.479718 0.529010 -3.244353 2.382756 -1.236311 1.725458 -0.506648 -0.828755 -0.114726 0.729586 -0.285886 -0.210755 1.404682 -1.929777 1.440877 2.051083 0.376779 0.137513 0.961740 0.992086 -0.476866 -0.325799 -1.487927 1.431785 -0.132857 -0.671864 -0.283368 -1.002877 1.597838 0.189301 -0.396603 0.781186 1.681715 -0.404222 0.103307 1.710414 0.081465 -1.362326 0.635934 0.221752 1.989145 -1.283888 -0.289669 -1.411598 0.156800 0.286864 1.030312 -2.825217 -1.671031 -1.718362 -2.423457 -0.778761 0.331151 1.020097 0.702330 0.119386 -3.348073 -1.999754 2.019639 -0.886312 1.068121 1.707161 1.515202 2.241978 1.331257 0.118528 -0.632034 -0.485120 0.235765 -1.214366 -0.618864 -0.583609 0.951034 -1.482137 1.934389 1.475184 -0.083399 0.959553 -0.143289 1.676593 -1.598371 3.530149 1.716122 -2.132315 0.485867 1.264830 2.700306 -2.112803 -1.670610 -PE-benchmarks/coin-change.cpp__count(int*, int, int) = -6.092379 -10.325883 8.228360 7.829699 3.519647 7.127992 4.803037 -2.213819 2.795000 8.435486 -3.146172 7.198795 -4.706100 -3.769747 -0.237191 1.025806 -0.142658 -6.237793 2.257767 -0.518502 0.682179 -5.362408 -6.302197 8.719559 1.376991 -1.496413 -2.326931 -0.423641 -13.512742 -10.456217 -1.610758 -0.072299 4.188505 -1.790797 2.833370 -9.585757 5.000475 11.403513 0.224690 -10.759848 -0.204014 -1.846552 -2.336955 4.192541 -1.397557 4.572633 4.031912 -1.217559 -2.055110 2.711451 3.690012 -1.625046 6.165285 7.919508 2.782422 10.253859 9.016151 -0.001661 4.391674 0.989919 2.233619 -2.471379 5.114012 4.062854 -2.751250 -0.114968 -1.099538 2.985446 -6.039105 0.624837 2.812679 -5.542441 -3.578417 -1.577905 -5.101665 -2.324129 -1.299680 -0.897206 11.023857 -1.320833 14.234705 6.684610 7.760377 -1.828574 7.581980 -0.864915 6.439027 3.081262 -6.439392 1.695082 -7.603652 -2.475797 -0.673867 6.749754 -7.125723 1.881976 3.801660 -5.577266 -9.624256 6.436731 -2.122050 -2.343287 -4.640683 0.976339 3.715186 2.761758 -3.137784 -8.330939 -6.765788 6.154513 -5.299329 -5.225915 -1.571968 -0.385821 0.440027 1.261543 -4.463683 -0.677904 8.667106 -5.414981 -4.204637 6.997061 -0.885852 6.883297 -1.808115 -0.479540 0.474365 0.273921 4.911009 1.872284 1.111373 -6.235738 -13.420481 0.980510 0.083260 -0.554662 -3.727559 -1.447931 4.832703 4.062446 5.827729 8.471532 -1.727404 6.511328 4.630812 0.644425 -2.480768 -9.095933 -1.492374 -3.214930 2.243247 -2.825728 -3.221152 -0.860518 5.549101 -1.968623 -0.207639 3.757315 -2.789961 5.714292 -0.098184 1.310962 -0.604393 -3.951747 1.820916 -3.324520 -6.269098 5.086937 8.698866 3.088241 2.637611 -2.413038 -0.194431 -0.397470 -6.046556 2.396939 -0.628512 1.337128 9.376205 4.039929 16.343527 -3.973041 -0.359288 -2.857312 -0.772989 1.634456 -2.392448 -8.057971 3.128277 1.398365 0.964635 11.016084 -0.847839 -3.030853 3.656589 0.344185 0.476104 -6.566593 9.938992 -6.266814 -0.523865 -1.643379 -2.805769 -4.272605 -3.966164 -6.467804 -0.078784 9.463712 -3.549741 -8.638362 1.431200 -1.929640 0.292911 -10.293172 7.397017 -3.642344 4.614539 -2.348767 -3.067291 -0.717292 4.011506 0.657207 -0.419328 4.191276 -7.982636 6.326936 5.337009 0.268612 0.720148 3.331329 1.307786 -1.518010 -3.404685 -5.538371 4.014410 0.428480 -0.981844 -1.990978 -3.307979 6.694694 2.194553 -3.074728 -1.269788 5.968622 -4.579322 -3.075134 5.993700 -2.364063 -3.605513 1.665034 1.606075 5.967862 -3.843468 -1.176511 -5.837445 -1.227060 2.670660 2.755239 -8.864335 -1.609903 -2.882911 -7.776296 -2.983717 3.299463 3.911846 4.819139 0.897094 -11.594545 -6.424776 8.709628 -2.151966 2.730798 4.887600 5.777754 6.941890 2.787344 3.339262 -2.121305 -3.787993 -0.493447 -5.345184 -2.849001 0.573106 2.108088 -4.135240 8.333727 1.830360 0.802986 3.260574 -0.289883 3.277353 -5.414133 10.433951 5.577772 -6.331005 0.203026 2.529627 8.368241 -11.442936 -4.977883 -PE-benchmarks/palindrome-partitioning.cpp__main = -2.143806 -4.577241 3.938933 3.641089 0.863271 3.070966 1.531040 -1.152691 1.438672 2.917350 -1.682339 3.040933 -2.225114 -1.418547 -0.557095 0.318633 -0.832726 -2.635048 0.646971 -0.429978 0.044193 -2.178764 -2.480620 4.011975 0.743147 0.339346 -1.063201 0.041254 -5.514277 -3.854501 -0.439668 -0.059884 1.856337 0.215066 1.333418 -4.069792 2.089833 4.813293 -0.083822 -4.587444 0.099478 -1.154740 -1.177076 1.161547 -0.637952 1.606854 1.474928 -0.155410 -0.870338 0.934600 1.028553 -0.539891 2.778540 3.881535 1.149311 4.229353 4.124988 0.036115 1.916624 0.329984 1.112097 -0.844818 2.136986 1.808653 -1.071290 -0.479071 -0.624292 0.718834 -2.245490 0.500909 0.790369 -2.105093 -1.398632 -1.122407 -2.393240 -0.964220 -1.716967 0.364667 4.840495 -1.359125 5.896153 2.791879 3.388407 -0.593056 3.349011 -0.196164 2.917805 1.523971 -2.600025 0.736278 -3.174711 -0.962677 0.054663 2.240432 -3.226298 0.389238 2.125373 -3.355008 -4.401749 2.817983 -0.570976 -1.215185 -1.205350 0.334527 1.281797 1.152141 -1.470360 -3.567484 -2.480652 2.579449 -1.887101 -2.266644 -0.889372 0.431623 0.341043 0.512682 -2.405790 0.059564 3.429175 -2.268656 -1.116860 3.186956 -0.290677 2.805867 -0.868833 -0.164656 0.125141 0.698706 1.808364 0.798142 0.331662 -2.065527 -4.819441 1.028559 0.332709 -0.284146 -2.073841 -0.449054 2.166409 1.760492 2.416546 3.108519 -1.005526 2.843057 1.316346 0.020269 -1.303629 -4.111262 -1.082936 -2.017173 0.740848 -1.506351 -1.763455 0.299157 2.589901 0.021753 -0.016933 1.905061 -1.418989 2.294117 0.154594 0.508110 -0.151794 -1.175739 0.883417 -1.681944 -2.908426 2.263160 3.358152 1.272912 1.146878 -0.945332 -0.085205 -0.557534 -2.339313 1.587503 0.120131 0.458344 4.337623 2.098231 6.164847 -1.973444 0.031812 -1.205172 -0.649018 0.623173 -1.050408 -3.718989 1.451031 0.685446 0.717557 4.595030 -0.303844 -1.053878 1.400134 -0.075143 0.260902 -2.884369 4.025844 -2.711543 -0.472076 -0.942815 -0.627824 -1.735895 -1.769418 -2.764570 -0.276006 4.398424 -2.509447 -3.160745 1.111583 -0.358341 0.474832 -4.142010 2.819575 -1.720847 2.590427 -0.702461 -1.587968 -0.216536 1.205842 -0.072873 -0.199998 1.953649 -3.228652 2.367855 2.233996 0.275412 0.435312 1.496082 0.888822 -0.998411 -0.995151 -2.584305 1.818840 0.282926 -0.979364 -0.820555 -1.570553 2.673807 0.668280 -0.967413 0.086086 2.645838 -1.247837 -1.075187 2.375049 -0.643874 -1.743874 0.723437 0.416516 2.511584 -1.936540 -0.668389 -2.336270 -0.174772 1.104206 1.169648 -4.254852 -1.436568 -2.078730 -2.849993 -1.353014 0.601942 1.630668 1.786006 0.248461 -4.928181 -3.122355 3.222815 -1.186241 0.894398 2.285696 2.654112 3.230993 1.414749 1.348912 -0.850164 -1.235997 0.291043 -2.084125 -0.826789 -0.342764 1.193207 -1.754336 3.317090 1.477754 0.280849 1.739320 0.176741 1.325300 -2.471082 4.679551 2.469140 -3.279599 0.229754 1.666790 3.172115 -4.145551 -2.446267 -PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.876546 -1.017857 0.920345 0.733667 0.540435 0.634457 0.349080 0.054689 0.575886 1.075504 -0.482711 0.647732 -0.617249 -0.310051 0.309333 0.261322 -0.099229 -0.917265 0.427901 0.094490 -0.105550 -0.629093 -0.480552 0.505801 0.207840 -0.060184 -0.421066 0.010796 -1.198241 -1.359901 -0.239417 -0.154084 0.488102 -0.232424 0.288753 -1.258429 0.546521 0.885417 0.013814 -1.278893 -0.001211 -0.244405 0.007511 0.385625 0.224524 0.685832 0.871230 -0.018112 -0.083856 0.394849 0.250419 -0.505317 0.157575 0.882624 0.243397 0.901965 0.910628 -0.124758 0.099807 0.182085 0.262892 -0.534486 0.628328 0.627047 -0.593548 0.099238 0.142365 0.113560 -0.776396 0.257336 0.236275 -0.468616 -0.258291 -0.340096 -0.356253 -0.197586 0.334992 0.086172 1.315188 -0.224730 1.378366 0.650891 1.120715 -0.051378 0.672135 -0.228331 0.757463 0.301083 -0.894862 -0.117378 -0.707972 -0.652606 -0.317413 0.977627 -0.309534 0.627693 0.320387 -0.433120 -0.944672 0.597427 -0.342818 0.136083 -1.137775 0.227690 0.819613 0.648739 -0.156808 -0.867718 -0.865081 0.311885 -0.820306 -0.418219 -0.060853 -0.252549 -0.374887 0.158720 -0.645066 -0.389715 0.773221 -0.795804 -0.598152 0.698699 -0.522503 0.869122 -0.148464 0.081978 0.124101 0.262258 0.723168 0.203108 0.404337 -0.703788 -1.667565 -0.031233 0.014589 0.327468 -0.324789 -0.009506 0.346830 0.238617 0.142104 0.474740 -0.480003 0.882375 1.111386 -0.054432 -0.570777 -0.911159 0.156410 -0.454639 0.296768 -0.509938 0.027176 -0.024485 0.622288 -0.041281 0.013055 1.270420 -0.760157 0.735198 -0.185199 0.131808 -0.063869 -0.200309 0.284458 -0.472218 -0.536370 0.379917 1.116387 0.049888 0.392223 -0.602545 0.067598 -0.375680 -0.889321 0.540617 0.071221 0.250507 0.693322 0.238863 1.559131 -0.910453 -0.124031 -0.179867 0.079236 0.033529 -0.114321 -0.959997 0.388546 0.075028 0.412720 0.982195 0.040215 -0.691371 0.320857 0.071276 0.022864 -0.520505 0.839346 -0.761240 0.170610 -0.025514 -0.275242 -0.611615 -0.353060 -0.423655 0.186350 1.005685 0.233040 -1.368476 0.218383 -0.342689 0.373080 -1.479810 0.475673 -0.457548 0.531062 -0.488313 -0.067321 -0.243542 0.393334 0.394941 0.028747 0.404037 -0.434995 0.630826 0.692641 0.043356 0.173270 0.498106 0.215413 0.055145 -0.453214 -0.197265 0.217410 -0.076804 0.032518 -0.209420 -0.287772 0.850699 0.432973 -0.453469 -0.190238 0.800423 -0.683796 0.074924 0.703494 -0.251559 -0.481173 0.201267 0.179463 1.137624 -0.390972 -0.170233 -0.688082 0.085727 0.113834 0.326521 -0.948621 -0.483225 -0.046913 -1.389273 -0.550010 0.599495 0.269538 0.402483 0.205758 -0.935223 -0.347364 0.685197 -0.071232 1.194389 0.252868 0.552567 0.763083 0.371555 -0.050175 -0.623348 -0.339203 -0.288030 -0.823880 -0.346608 -0.009102 0.162929 -0.518892 0.797086 0.211504 -0.005110 0.085286 -0.063716 0.431694 -0.601983 1.131673 0.738474 -0.590292 0.081315 0.116269 1.402078 -1.105141 -0.616264 -PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -12.058056 -20.108961 14.852267 14.296978 5.952898 14.596628 7.112750 -4.363769 5.336146 16.213428 -6.525583 13.555507 -8.658599 -8.225504 -0.809408 0.215601 0.255448 -10.803715 3.651762 -1.566871 0.859540 -9.549092 -13.352031 18.350098 1.711925 -2.389563 -3.820560 0.770418 -25.003253 -19.182769 -4.498967 0.555627 7.547145 -2.180301 5.747780 -15.762018 8.476349 21.820067 0.459360 -19.070097 -0.644995 -4.059531 -5.410565 8.802330 -2.378118 7.323613 6.728045 -4.433655 -5.088350 3.854718 7.219042 -2.907136 12.869727 15.374800 6.111862 19.299564 17.586457 -0.255220 9.241550 2.534913 4.162631 -4.509302 9.916373 7.639168 -4.949355 -0.209050 -1.431118 6.281623 -9.561201 0.554261 3.791361 -11.664608 -4.065897 -4.486115 -9.437663 -4.983066 -4.209059 -2.083500 19.888786 -3.014938 27.051035 13.190544 15.287540 -2.619256 16.123817 -1.724215 13.570973 5.931566 -12.539517 3.486395 -12.874638 -3.366634 -0.435942 14.153391 -14.289133 7.182393 8.553742 -12.239693 -19.050437 13.119690 -3.996391 -5.023218 -7.590590 1.244174 5.819394 3.775039 -5.615949 -16.129002 -13.012826 12.632777 -10.402569 -10.458525 -4.795327 -0.224677 2.122861 4.239513 -8.126831 -0.355184 16.247253 -9.801031 -7.989925 13.874641 -1.100635 13.165635 -3.714583 -0.498795 1.322841 -0.794022 7.915705 3.432762 1.122517 -11.165839 -24.955932 2.867065 -0.295259 -4.295900 -8.295198 -2.451672 10.634906 7.725826 12.547868 17.158385 -4.419320 14.040257 6.190588 2.041780 -3.759826 -17.916517 -3.041781 -6.661634 3.605820 -5.437654 -8.069184 -1.338445 10.641807 -2.543600 -1.749156 6.065426 -4.389245 11.159147 0.711728 2.235327 -1.719874 -8.059083 3.148626 -7.167902 -12.381420 9.222849 16.984047 5.295573 5.014290 -4.292688 -1.041834 -0.290015 -11.151163 5.457945 -1.635188 2.912174 18.949713 8.637391 33.086110 -8.948612 0.288733 -7.120050 -2.422303 3.409421 -5.885592 -15.113904 4.734940 3.538745 2.342401 21.407712 -1.302879 -4.929660 5.186953 0.400649 0.895244 -12.874050 20.163686 -11.824257 -1.108126 -1.890285 -6.054505 -8.098556 -7.828237 -12.390824 0.008340 18.273019 -9.148755 -15.062017 3.807074 -2.027313 0.013479 -18.241065 12.790067 -7.012082 9.509860 -4.810835 -7.263906 -1.918196 8.773098 1.227019 0.294748 8.072228 -15.931027 12.243086 9.361591 0.146172 3.126709 6.316659 2.113781 -4.031104 -7.039611 -11.806125 7.779520 1.904928 -3.491181 -5.097065 -6.993157 13.540489 4.513391 -5.687784 -4.389777 12.183716 -9.586139 -8.507746 11.290770 -5.423692 -6.580429 3.198989 2.645545 10.499348 -7.792527 -2.734366 -11.190819 -2.698427 6.353358 4.582864 -17.935859 -1.702905 -5.576262 -11.966731 -5.954918 6.116635 6.925516 10.011412 1.737003 -22.298522 -12.886095 15.335976 -4.494996 2.651203 9.173213 12.645613 13.522914 4.734183 8.889622 -3.947439 -8.061399 -0.904393 -10.594684 -5.007235 1.576766 3.993296 -6.880977 16.567702 2.564955 2.956045 7.469832 1.849452 2.521869 -10.607322 19.031671 10.672029 -12.581825 -0.196067 5.851642 14.134538 -22.945723 -9.936153 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = -0.304388 -1.690348 2.070696 1.801350 0.057590 0.828662 0.777546 -0.698014 1.401398 0.587041 -0.635618 0.814304 -1.340757 0.220206 -0.251983 0.689726 -1.387257 -1.468630 0.104751 -0.388748 -0.363635 -1.202160 0.006135 0.782116 0.596885 0.469894 -0.754041 -0.369220 -1.890899 -0.744441 1.082836 -0.450578 0.975658 0.383039 0.257931 -3.569395 1.142800 1.262355 -0.365893 -2.219427 0.262860 -0.945472 -0.102618 -0.558026 -0.094180 0.427341 0.531648 1.279647 0.313508 0.435872 -0.120754 -0.050183 0.268532 2.911464 -0.526562 1.406506 1.521218 0.085599 0.018734 0.193532 0.634517 -0.021614 1.017576 1.213464 -0.559788 -0.673407 -0.290489 -0.781998 -1.567332 0.929282 0.441758 0.017756 -1.139335 -0.284259 -0.974923 -0.285547 -1.226754 1.277179 2.585667 -1.377313 2.010652 0.726562 1.481891 -0.068616 0.938832 0.091180 1.331005 0.650298 -1.039753 -0.210216 -1.968074 -0.741012 0.030090 -0.308070 -0.693973 -1.491891 0.758336 -1.025506 -1.709485 0.838492 0.081817 -0.097650 -0.863713 -0.025438 0.982438 0.991222 -0.848524 -1.584576 -1.061316 0.586801 -0.486669 -0.729595 0.163617 0.112788 -0.383548 -0.920210 -1.654737 -0.307674 0.896683 -1.134485 -0.250607 1.383091 -0.976354 0.742968 -0.252856 -0.017833 -0.262587 1.273366 0.583989 0.460689 0.976559 -0.589254 -1.758159 0.533699 0.607956 1.823710 -0.494271 0.040335 0.169031 0.618224 -0.159708 0.140673 -0.050083 0.769288 0.900361 -0.580393 -1.107744 -1.445791 0.133512 -1.443692 0.485284 -1.198173 -0.052116 0.664770 1.380570 0.927357 0.677697 1.837097 -1.604926 1.337222 -0.245502 0.328018 0.444165 0.536560 0.651106 -0.732127 -1.265248 0.703393 0.891090 0.335041 0.397737 -0.686618 0.073307 -1.090860 -1.079332 0.602642 0.660992 -0.185906 1.415422 0.778695 1.564663 -1.843807 0.260913 0.348851 -0.231218 0.143330 -0.113210 -1.901354 1.038732 0.168368 0.256204 1.395087 -0.161813 -1.048339 0.564055 -0.140989 0.181449 -0.877738 0.591226 -1.143176 -0.629076 -1.011419 0.545764 -0.731150 -0.777334 -0.826041 -0.062873 2.000510 -0.838819 -1.516024 1.066790 -0.624979 0.753694 -2.305482 1.759471 -0.911794 1.042296 -0.477369 -0.397551 -0.161009 0.300170 -0.455899 -0.044712 0.936637 -0.780655 0.687005 1.697498 0.485493 0.221841 0.618153 0.998667 -0.099598 0.082582 -0.781737 1.038408 -0.283580 -0.533116 0.038763 -0.726670 1.018945 -0.079202 0.101370 1.431471 1.296831 0.359891 1.016871 1.079060 0.467449 -0.965129 0.495220 -0.035780 1.325922 -0.742487 -0.037679 -0.639281 0.270431 -0.307550 0.861400 -1.777609 -1.948155 -1.181094 -1.659078 -0.439623 -0.168607 0.451025 0.024893 0.198817 -2.128323 -0.975143 0.315038 -0.703912 1.000380 1.018983 0.757453 1.372140 1.278263 -0.726327 -0.553839 0.308220 0.279075 -0.765740 -0.297319 -0.927592 0.864762 -1.126106 0.927752 1.447215 -0.255795 0.386684 -0.382826 1.767460 -0.879841 2.482756 1.189135 -1.259098 0.555821 0.971834 2.066049 -0.157904 -1.129317 -PE-benchmarks/biconnectivity.cpp__main = -2.587929 -19.058806 27.722363 22.529296 -3.642181 11.742343 3.867146 -12.662353 12.516567 3.201621 -7.998619 11.256493 -14.484924 0.891889 -4.818361 6.355122 -20.278475 -15.633549 -1.462117 -7.213212 -6.601376 -11.730196 -0.796721 14.074937 8.500164 14.713535 -10.107385 0.473678 -20.492303 -14.485927 10.172629 -3.890367 12.205584 13.705326 7.048385 -35.406849 16.818857 17.951062 -3.821510 -22.301497 2.653667 -7.664649 -5.889962 -6.231219 -5.727832 6.537103 4.319261 10.263800 3.962444 3.553026 -1.158330 -1.430088 5.742462 26.375915 -0.997915 17.665630 17.292754 -1.527391 3.582505 1.070196 6.936174 0.567691 11.170976 12.417181 -5.815347 -8.870854 -0.785228 -8.404659 -15.372758 12.660386 5.177023 -4.907816 -10.502098 -7.162187 -14.648812 -2.822484 -4.260161 14.039169 29.402605 -13.461423 22.938644 8.095783 13.651833 -4.134087 13.207227 -0.748625 19.987503 9.142226 -10.617595 1.339936 -17.508326 -9.394616 2.067498 3.809064 -12.426359 -11.393576 10.552227 -24.651854 -22.101923 10.424753 3.533580 -4.608397 -10.427067 -0.728884 11.124022 6.423375 -9.240225 -17.232612 -8.014699 7.359913 -7.540306 -8.449811 -2.369172 6.281591 -3.686830 -1.806494 -19.793452 -1.327424 10.288976 -11.499187 -1.108537 16.515591 -5.031118 7.907889 -4.556589 1.192045 -3.661663 13.384871 3.846745 5.850193 4.875577 -1.716889 -8.628608 2.843962 6.238757 11.454883 -8.567746 -6.830746 3.078745 8.784491 -2.402506 4.129068 -6.450723 11.812803 10.742322 -4.699774 -14.776383 -14.864192 -6.649289 -22.264846 2.276026 -14.157868 -8.905479 9.607892 16.169056 8.663196 6.604932 17.563125 -13.362095 12.841914 -1.493580 3.699488 6.191549 0.499885 7.734774 -10.239993 -14.963982 11.809261 6.492650 7.472507 5.678976 -7.877584 -0.261739 -11.819340 -16.131205 11.574050 6.517859 1.150566 16.530518 11.155966 20.894106 -16.004447 3.128181 3.846222 -3.086344 1.258034 0.380112 -21.158038 9.310455 2.105315 4.662352 20.878069 -1.732248 -9.126110 5.949867 0.029906 3.410210 -14.086809 10.272116 -13.058291 -0.060644 -11.886248 3.838011 -8.448183 -7.877487 -11.331947 -5.915976 24.841856 -20.042624 -19.601635 17.932525 -2.753362 14.198629 -25.877218 9.288037 -10.860126 17.715569 -3.287811 -5.983922 0.082176 -5.073155 -6.487057 3.184947 9.749081 -9.729406 6.248463 16.334477 4.689686 3.099451 5.253636 11.179618 -3.991353 4.302331 -10.533056 14.516021 0.095015 -7.708285 -2.069820 -8.164554 5.696603 -3.653615 1.377342 11.096474 13.991864 6.011919 7.360856 10.884388 5.587689 -12.541789 5.629526 1.088362 11.172546 -9.996746 -4.389298 -3.379215 6.677954 -1.840113 9.267514 -22.749753 -24.223493 -20.900779 -20.841287 -8.924706 -2.595880 9.841984 1.774798 -0.231927 -18.937657 -13.995307 14.074927 -7.001543 17.453646 13.538611 11.395266 16.613751 15.056290 -6.139641 -5.115827 0.774122 6.846888 -6.985844 -0.838802 -15.253382 12.432058 -10.722441 11.995036 19.782210 -3.811761 7.933709 -5.562887 21.232801 -13.420836 26.248003 12.322785 -18.518215 7.071679 10.352737 16.518269 -0.251197 -14.403612 -PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -7.974456 -15.179957 18.165345 16.192102 2.860629 11.056572 4.378862 -9.457852 7.920651 12.598770 -4.585327 9.638775 -9.881097 -1.574780 -2.592927 4.961513 -6.017610 -10.512616 -0.892232 -6.527133 -4.082291 -8.797159 -6.051667 11.177569 4.317141 -1.067292 -7.373145 0.509838 -18.600827 -18.786406 0.020299 -0.846300 7.800995 -2.307903 3.011929 -25.182621 12.035403 18.356697 -2.210176 -15.499001 1.290467 -5.898960 -4.748777 3.654427 -3.807598 4.626231 3.038575 -2.350736 0.695298 3.892051 7.789309 0.887527 8.520170 22.155162 0.074513 16.709094 13.630993 0.045024 2.565006 3.912671 4.115946 -0.429312 9.548228 7.528387 -3.392346 -4.855076 -0.595059 1.254814 -10.318505 5.678913 1.623095 -10.399288 -4.548541 -5.873457 -10.236655 -5.060447 -2.989007 3.057705 19.986250 -8.202761 19.845083 8.502857 9.400180 -0.906986 12.962058 -2.046811 16.674008 5.618015 -9.210351 1.485677 -7.244581 -3.464694 1.167873 12.045475 -12.156424 -3.172793 8.585180 -15.401161 -17.919327 10.461064 -0.106970 -3.728305 -12.249613 -2.657441 6.397337 2.914644 -6.702115 -15.020207 -10.945035 9.208856 -5.614828 -9.163524 -3.409222 -2.079368 -0.051974 2.711625 -13.320667 -1.128512 10.306749 -9.073648 -9.392512 13.170131 -0.690539 7.893179 -3.169443 2.183891 -1.629068 4.767643 1.787462 6.807080 0.069509 -2.656383 -19.200316 -0.809849 2.718783 -1.360226 -6.394941 -2.332122 4.037983 6.239410 2.069225 12.639288 -6.123355 13.145044 10.874784 0.418513 -7.004653 -11.868905 -1.871568 -12.959286 2.776252 -8.696907 -9.210890 0.131229 11.497898 2.090868 2.337856 11.455588 -6.033679 10.396087 -0.355532 1.072145 3.583215 -8.155045 4.988937 -7.817608 -13.311757 8.446343 11.855473 4.571491 4.350451 -3.867430 -0.727991 -5.124572 -10.902946 5.724469 0.649133 -0.249288 15.025277 8.531709 32.759894 -14.362477 4.347019 -1.110413 -3.536991 3.966687 -3.909565 -15.546150 2.870856 3.827034 2.007631 20.026376 -0.791340 -7.564278 3.695556 -0.799725 2.270640 -11.509082 13.755791 -11.144542 -0.180289 -5.437923 -3.476751 -6.436185 -6.169587 -8.476826 -2.427849 17.173704 -13.551806 -15.397211 11.567732 0.063164 3.126758 -21.104166 13.606048 -7.628434 11.386231 -6.535752 -5.475477 -0.797538 6.928841 -2.965113 4.948186 7.920892 -11.985231 9.036200 13.917223 1.539961 4.624968 3.107673 6.440567 -3.349022 -1.449949 -10.239368 13.122840 1.359631 -5.536259 -5.216989 -7.064559 7.659654 -0.207349 -1.139595 -0.071605 11.549766 -4.731883 -3.172089 12.490928 1.514268 -7.456375 7.833975 1.296978 8.546530 -7.477549 -2.439540 -4.859056 0.670433 1.674642 6.441817 -17.008303 -8.271116 -11.692022 -13.293538 -4.239118 6.188901 6.468578 4.278900 0.129316 -18.047757 -11.779711 17.357485 -5.771650 8.009009 9.270681 11.764764 11.871906 8.968138 3.071931 -2.740032 -6.259179 -0.341675 -7.260937 -5.258168 -2.721474 7.906616 -6.311085 12.090319 7.119357 1.041643 7.090963 3.044710 5.821920 -9.320440 18.285646 8.722724 -9.432598 4.797973 9.904790 14.933806 -12.699658 -9.379839 -PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/weighted-job-scheduling.cpp__main = -0.510575 -2.170592 3.060365 2.495316 -0.189789 1.248039 0.775950 -1.390197 1.414276 0.620646 -0.757144 1.327982 -1.605767 0.076704 -0.744522 0.711342 -1.848845 -1.686189 -0.282675 -0.914006 -0.580379 -1.318686 -0.313256 1.475279 0.890028 0.826830 -1.127997 -0.123890 -2.645673 -1.782113 0.856392 -0.295610 1.214829 0.288404 0.575969 -4.243637 1.751216 2.355097 -0.500676 -2.678398 0.451882 -1.000616 -0.545018 -0.477718 -0.644903 0.578313 0.359021 0.759885 0.296158 0.503645 0.112010 0.239095 0.793048 3.558550 -0.263898 2.118964 2.204519 0.091890 0.284389 0.267310 0.742017 0.100087 1.113807 1.125567 -0.475722 -0.989591 -0.336560 -0.704821 -1.651703 1.168161 0.302633 -0.827294 -1.220301 -0.833356 -2.011833 -0.446609 -1.007051 1.388312 3.136816 -1.792819 2.623612 0.874699 1.403691 -0.099439 1.466706 0.038096 1.997894 0.949272 -1.015898 0.168087 -1.872633 -0.754657 0.236105 0.302661 -1.545329 -1.836889 1.392173 -2.705575 -2.489945 1.279481 0.345948 -0.622197 -1.121262 -0.297557 0.877117 0.881399 -1.178177 -2.005109 -1.212909 1.178863 -0.407586 -0.982849 0.013241 0.407868 -0.190662 -0.512273 -2.256591 0.111032 1.348984 -1.170575 -0.495615 1.934900 -0.577920 0.939566 -0.439186 0.146557 -0.491142 1.540688 0.377169 0.761677 0.233643 -0.194881 -1.816678 0.206987 0.664443 1.171681 -0.958918 -0.231531 0.355046 0.942345 -0.028037 0.772834 -0.719096 1.205373 1.063339 -0.499926 -1.390868 -1.808514 -0.678111 -2.286278 0.300628 -1.362506 -1.070714 0.971352 1.754604 1.069712 0.658904 2.002256 -1.376256 1.147655 -0.081480 0.099821 0.604854 -0.307479 0.826293 -1.041896 -1.886882 1.214500 0.902066 0.885566 0.588783 -0.541519 0.012486 -1.198147 -1.399547 0.927244 0.764914 -0.139426 2.045839 1.434109 2.546309 -1.960459 0.331579 0.255252 -0.601944 0.289821 -0.294227 -2.353979 0.843484 0.431267 0.406983 2.453171 -0.188388 -0.904371 0.807154 -0.236657 0.387799 -1.463506 1.195534 -1.497840 -0.392896 -1.312125 0.253832 -0.891250 -0.862814 -1.408581 -0.834845 2.700610 -2.181748 -2.026463 1.807683 -0.121719 1.109226 -2.922162 1.784518 -1.088586 2.076484 -0.310212 -0.504745 0.044750 0.095139 -0.827677 0.293223 1.126917 -1.399941 0.803298 2.068771 0.525584 0.301152 0.479191 1.299298 -0.609748 0.395141 -1.415813 1.725100 -0.190401 -1.047888 -0.137353 -0.900444 0.817427 -0.365487 0.274646 1.253387 1.416379 0.531024 0.639091 1.557711 0.699522 -1.260842 0.839493 0.065072 1.298416 -1.121620 -0.326385 -0.527608 0.637172 -0.048114 0.916069 -2.480891 -2.310799 -2.442763 -2.289177 -0.526741 -0.314981 0.827284 0.092052 -0.096202 -2.562932 -1.763630 1.773217 -0.910637 1.332675 1.549398 1.258368 1.872346 1.649564 -0.524514 -0.261883 0.074993 0.584662 -0.732927 -0.398458 -1.259436 1.336043 -1.300746 1.177292 1.983250 -0.262735 1.064120 -0.061644 1.692549 -1.399792 2.994884 1.311960 -1.852705 0.791455 1.623612 2.105914 -0.499488 -1.493466 -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.374268 -1.034916 2.713839 2.055079 -0.199695 0.836591 -0.046922 -2.146000 2.066224 -0.166589 -0.354299 0.558048 -1.290348 0.970036 -2.308748 1.044917 -1.955330 -1.562380 -1.078417 -1.625626 -1.137724 -1.207244 0.653965 0.321209 0.953853 0.353550 -1.503632 0.367270 -2.239246 -1.149453 1.351535 -0.313051 0.493981 -0.978212 0.256300 -2.740693 1.962397 1.627791 -0.740039 -1.714045 0.536050 -1.349469 -0.477549 -0.955648 -0.282958 -0.046685 -0.661483 0.938616 1.237567 0.195699 0.553114 1.392763 -0.310542 3.633123 -1.569226 1.537391 0.802491 0.653424 -0.235372 0.829799 0.472506 1.031954 0.556667 0.937736 -0.258376 -1.554164 -0.288700 -0.637363 -1.000751 1.896089 -0.343815 -0.674269 -1.248863 -0.501487 -2.287310 -0.306638 -1.500282 1.490842 2.451979 -1.816797 0.903046 0.121371 0.849359 0.209475 1.016443 -0.204406 2.153925 0.693336 -0.486448 -0.415289 -1.399678 0.618480 0.247266 -0.691186 -1.288086 -2.981393 1.341443 -3.399342 -2.168448 0.498508 0.941454 -0.509127 -0.566254 -0.089141 0.830899 0.116595 -0.987136 -1.644994 -0.158913 1.066168 0.517960 -0.620969 0.746575 -0.718637 0.277334 -0.609956 -2.232689 0.102138 0.232524 -0.582073 -0.586889 1.778856 -0.505578 -0.384634 -0.245413 0.486989 -0.680762 1.510010 -0.702536 1.194332 -0.770137 1.141775 -1.367635 0.747180 0.760259 0.498972 -0.873049 0.764026 -0.623189 0.565262 -1.399392 0.051528 -1.552556 0.206375 0.242629 -0.990728 -1.428355 -0.616230 -0.474801 -2.221491 0.034412 -1.198015 -2.018804 0.024544 1.540495 2.234069 1.307277 1.910981 -1.097207 0.535704 0.133516 -0.004314 1.446740 -0.867253 0.904006 -0.890807 -1.830341 1.040201 -0.029553 0.454363 0.276818 -0.201780 -0.152582 -1.654940 -0.249663 0.644509 1.069507 -0.173832 1.781471 1.310076 0.036405 -2.438305 0.941618 1.105369 -0.758592 0.476689 -0.416859 -1.999256 0.657672 0.672242 0.876681 1.755379 -0.198080 -0.548627 0.470900 -0.268933 1.122275 -1.296696 -0.160711 -1.215128 -0.864746 -1.467148 0.855709 -0.427994 -0.258503 -0.835281 -1.690250 1.975280 -2.606515 -1.428290 2.740075 0.154440 1.128058 -1.955112 0.420878 -0.965851 1.992397 0.358627 0.649199 0.002299 0.122328 -1.584696 0.672319 0.946229 -1.063763 0.802334 2.023117 0.594520 0.671537 -0.062997 1.670346 -0.938092 1.141375 -1.215099 1.973251 -0.161114 -1.692732 0.282019 -0.849829 -0.307928 -1.125014 1.033677 1.734244 1.123623 1.305261 1.069639 1.163048 1.690754 -1.061439 1.140281 -0.417125 -0.139433 -0.997922 -0.263921 0.610111 0.295890 -0.730631 0.633017 -2.112240 -2.691057 -3.076798 -1.864905 0.771333 -1.742609 0.035249 -0.644446 -0.504316 -1.766905 -1.675642 1.464591 -0.929210 1.354794 1.275832 0.873974 1.154905 2.206830 -1.444866 0.654164 0.268642 0.404609 -0.030152 -0.687736 -1.641769 1.948885 -0.798773 0.406618 2.305380 -0.636318 1.036378 0.508276 0.551401 -0.996088 2.261552 0.872064 -0.927332 1.247033 1.389957 2.293993 1.242548 -1.234866 -PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -3.777195 -7.284016 8.457105 7.027479 1.012181 5.020371 3.047398 -4.392952 4.041265 5.278843 -1.905352 4.580821 -4.583369 -1.315004 -1.124741 1.752066 -3.064870 -4.913523 -0.348614 -2.908508 -1.586084 -4.556796 -2.952245 5.246494 1.852726 -0.318514 -3.029536 0.203768 -9.177833 -8.935097 0.385516 -0.383047 3.440150 -1.972574 1.895010 -12.611513 5.640964 8.703277 -1.060031 -8.251889 0.579077 -2.220082 -2.155970 1.700136 -1.699396 2.332129 1.455971 -0.444114 -0.011136 1.821462 2.884032 0.130004 3.442851 10.723555 0.176687 7.939737 7.257195 0.037227 1.511479 1.952605 1.989660 -0.315346 4.012477 3.561007 -1.494522 -1.547807 -0.017013 0.235164 -5.321913 2.682683 0.860669 -5.208253 -2.501911 -2.877891 -6.011159 -1.956054 -1.121359 1.655339 9.657541 -3.788416 9.831787 3.715433 4.736035 -0.423649 5.957176 -0.760058 7.504971 2.679978 -4.389614 0.994484 -4.518043 -2.310180 0.326257 4.768582 -5.349865 -1.878342 4.198007 -7.498280 -8.178475 5.047815 -0.034297 -1.786072 -5.906688 -1.375873 3.065003 1.870637 -3.466130 -7.211306 -5.946087 4.872543 -2.867479 -3.642775 -0.582840 -0.096027 -0.355998 0.473567 -5.778597 -0.398522 5.621207 -4.075639 -4.393802 6.264769 -1.357715 4.111110 -1.433484 0.657285 -0.859249 2.221461 1.218460 2.914887 0.282747 -1.669388 -9.173054 -0.833953 0.859980 0.750927 -2.291624 -0.844158 2.301180 3.195952 1.319687 5.784345 -3.045664 5.399337 4.389508 0.105468 -3.239182 -5.702747 -1.150480 -6.150749 1.499422 -3.777399 -4.075943 0.999561 5.359019 1.218598 0.654397 5.009491 -3.334562 4.204320 -0.331947 0.382027 1.034401 -3.768990 2.190506 -3.347858 -6.131296 3.541195 5.025888 2.602479 2.126201 -2.076526 -0.471202 -2.302741 -5.380962 2.066828 0.744394 -0.159725 6.575383 4.241825 14.235857 -6.610019 1.222770 -0.583360 -1.579622 1.610075 -2.044768 -7.105133 1.383972 1.743653 1.300562 9.258355 -0.507357 -3.019490 2.049450 -0.478404 0.994611 -5.083827 6.109654 -5.056365 -0.328705 -2.531110 -1.626327 -3.183086 -2.828628 -4.655324 -1.629120 8.137749 -5.884896 -7.695034 5.541573 -0.644860 2.153699 -9.803833 6.750389 -3.146506 5.648176 -2.450462 -1.829284 -0.423103 3.114020 -1.196204 2.004856 3.354446 -5.857684 4.098198 6.624332 0.727361 1.888162 1.443217 2.961391 -1.971542 -0.923914 -5.054925 5.870811 0.006959 -2.846151 -1.889743 -3.136946 4.099995 -0.175784 -0.300509 0.219622 5.063974 -1.942865 -0.931089 5.947558 0.208261 -3.435423 3.374947 1.102629 4.036477 -3.328071 -0.900675 -2.368947 0.730756 0.980005 2.777146 -7.570266 -3.882629 -5.688839 -7.380110 -2.287631 1.968805 2.995019 1.749428 0.185018 -8.674346 -5.352913 8.148365 -2.441588 3.086795 4.515141 5.216523 5.698344 4.311795 0.920826 -0.930713 -2.328613 0.083975 -3.696394 -2.581297 -1.275329 3.233697 -3.877476 5.380006 3.275843 0.665636 3.373330 0.765565 2.897768 -4.560638 8.439596 4.256414 -4.374701 1.835981 4.794709 7.379941 -5.720312 -4.350743 -PE-benchmarks/karatsuba.cpp__main = 1.870574 -61.799823 97.719064 66.898587 10.752952 43.816179 75.861261 -66.105835 71.943306 36.940237 -28.557408 -9.637058 -83.657659 -16.262118 -30.826390 16.195307 -54.547778 -58.921528 -2.732048 -34.625903 -0.971943 -73.515115 53.475892 17.573925 42.952596 21.743267 -12.473121 -36.041191 -81.903558 -52.618314 85.581114 -5.356209 38.206097 42.775715 -13.978319 -105.518523 65.355200 63.036161 -24.410554 -75.820943 26.829411 3.763868 -42.643272 24.722247 15.690736 18.922718 3.828800 86.265411 26.184264 39.366979 31.283319 -35.073029 18.766088 93.284742 -29.581795 71.221517 51.490263 20.512765 15.845653 59.604048 16.096095 14.681758 29.122137 79.728751 -4.585444 -5.325823 21.169185 -37.834658 -98.460021 68.651349 -3.679043 -19.898719 -34.482326 -8.113288 -12.834754 13.319990 -42.886434 44.481864 120.031716 -38.525843 100.686202 23.636315 37.793287 -58.413735 1.548457 -12.962789 24.349499 23.752956 -39.167643 -31.540465 -104.298565 -36.652487 2.424448 -17.391973 -33.458281 -65.579441 59.349107 -35.662467 -82.783047 20.907045 17.360678 -24.186963 -30.087535 37.680811 30.008389 20.825171 -40.568405 -80.135955 -42.316091 36.064255 -52.991868 -5.449581 -10.190810 28.948758 -36.609758 -22.714182 -59.420258 -25.696564 10.784343 -63.198127 -22.603032 53.016162 -33.073534 40.877987 8.419239 8.975208 -6.309342 28.918739 20.035912 25.292283 73.755149 5.202294 -38.399166 15.187313 42.122734 71.929714 4.207381 4.346350 7.765438 33.528555 -23.536786 26.418452 -22.055294 3.862549 40.630585 -45.174664 -45.600205 -19.367160 11.192859 -92.371774 26.405613 -56.784131 -20.617825 2.889322 59.811482 28.736267 23.150816 93.073567 -89.152534 39.319675 -7.313645 3.963817 -12.294042 24.846506 36.735793 -28.044968 -72.323875 0.573528 29.074717 9.437898 5.939194 -28.536934 -23.379152 -71.477515 -54.446218 5.115442 9.625073 -39.195998 19.062898 51.418450 53.385398 -71.609622 7.967428 40.239954 -3.205707 -2.944800 11.086706 -113.848306 47.219944 -1.819229 31.946822 67.560267 1.086210 -24.078198 32.850196 -32.874077 1.739802 -51.483696 17.863629 -62.687883 -20.509400 -57.812357 29.153424 -16.487903 -49.317673 -17.083620 13.127087 72.809887 -0.519300 -57.680321 77.161586 -12.719954 6.401815 -82.803500 75.354256 -27.142544 19.011651 -7.698433 -15.561498 -12.845982 13.048226 -8.403568 -24.996891 5.236995 -21.674563 78.508547 106.991098 15.567650 5.655931 21.249316 59.601296 -32.172480 -8.179534 -57.183915 47.107431 -13.037002 -64.825280 6.022135 -36.190127 32.888920 -43.892648 -9.736071 87.330210 71.477372 -8.617391 52.722762 12.332750 37.341813 -34.573536 45.801743 36.817473 56.870669 -21.952729 -6.603955 4.226067 -2.105659 -39.367218 60.308757 -84.920943 -104.278183 -20.322815 -115.505846 -26.678808 -57.991920 53.765105 -2.951752 11.591541 -88.726507 -54.293643 6.943838 -33.287649 41.442624 55.853343 48.723352 53.787257 83.679876 -39.431962 27.781902 16.355298 53.227754 -54.764315 -46.159778 -20.156255 35.295183 -33.546903 41.399343 54.240552 11.565354 19.873624 -67.827265 76.545618 -71.295230 87.437959 46.328057 -20.678490 49.466103 5.123187 91.510161 30.626606 -37.048849 -PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -4.334459 -27.892097 36.065534 23.001360 4.198811 19.880301 31.940856 -21.078120 25.173613 13.861209 -14.540023 -4.342256 -32.837713 -13.785094 -5.502247 -1.336394 -19.405148 -23.513842 4.334147 -9.252297 3.707895 -29.972607 14.659994 13.061357 12.804014 10.813750 -0.017490 -12.577947 -33.441400 -17.412904 33.229488 -1.640316 15.585192 25.102784 -2.357622 -39.939096 22.331470 24.479715 -7.213607 -31.574563 7.052831 4.817200 -17.343640 13.414324 6.121566 10.039589 6.766147 35.714619 4.391731 14.248196 8.273304 -23.344371 6.911088 29.994164 -4.184006 29.052160 25.064023 6.068467 10.584062 23.132853 6.298360 0.205173 12.121819 33.834228 -4.922798 4.543954 12.276408 -15.060880 -39.949858 23.820241 2.589301 -7.052480 -9.482903 -3.525506 -3.123010 5.026682 -9.216655 14.396844 48.859375 -11.398451 46.465957 13.536682 20.859718 -24.563182 2.734086 -4.643048 9.377054 9.326444 -20.054148 -8.428329 -47.781671 -19.505999 -0.898180 -4.479856 -11.694079 -16.397408 21.463186 -13.488440 -31.969459 10.746302 2.187826 -8.064128 -11.952130 17.181242 13.930130 8.661394 -15.845997 -31.566016 -19.127481 15.140013 -30.779499 -0.238214 -5.731015 18.511983 -15.300501 -8.796323 -20.049534 -11.660057 8.883305 -26.783938 -6.349321 21.690548 -14.353643 22.676177 3.911221 0.271928 -0.477585 8.698891 13.940465 3.473983 31.616865 -6.693741 -14.461505 3.601398 13.005886 30.121159 2.902158 -4.475036 11.186827 14.628676 -3.120485 11.646960 -7.085238 2.037629 14.472905 -16.243023 -15.533486 -12.104364 2.606269 -35.319165 10.244500 -21.534492 -6.873577 3.123231 23.066609 8.666724 4.603842 34.712811 -34.164742 18.184949 -5.589132 3.042021 -12.678237 12.324040 13.843310 -10.287981 -26.305614 -1.600468 13.220068 5.385356 4.837527 -17.259250 -9.962518 -26.153284 -26.852402 2.386688 2.097854 -12.790616 6.366030 20.402642 22.486657 -26.400736 -0.160920 11.300009 2.082283 -3.429883 6.070792 -43.990338 19.110506 -1.943319 11.295858 26.740736 0.551444 -9.119233 11.700434 -11.337489 -2.053540 -20.856268 9.618824 -24.687497 -4.381557 -21.328783 11.790548 -11.059235 -22.139257 -9.269616 7.785270 28.434334 4.587593 -25.378284 25.568588 -3.693382 4.917066 -32.496271 24.837171 -9.905175 10.416721 -3.790923 -9.482877 -6.299719 2.387607 3.508515 -11.765501 0.230670 -9.526859 32.644407 36.970307 5.486583 2.756135 12.574740 20.729740 -12.248720 -10.949628 -23.418957 12.106983 -5.439593 -24.142653 2.398487 -14.322149 18.674499 -11.916980 -6.891696 29.259902 30.395485 -7.695751 19.310018 4.894520 5.308525 -12.750728 11.143025 17.776054 27.528442 -8.592032 -2.895617 -4.923121 -0.535667 -12.874722 21.495921 -33.826401 -38.430529 -4.724670 -47.000615 -17.770266 -19.828143 22.081577 5.882468 8.743179 -35.978925 -18.163796 1.493564 -12.026863 19.225374 21.143531 20.557235 23.821018 30.832631 -12.159985 5.657588 9.617677 22.538363 -28.490341 -15.019517 -8.139832 10.442350 -13.595608 21.167580 18.088854 6.897776 5.824055 -29.885182 34.078694 -30.311714 34.240454 21.250960 -12.598156 14.087525 -1.912071 33.713360 8.606515 -14.511063 -PE-benchmarks/tarjan-algorithm.cpp__main = -2.880180 -21.714286 30.832287 24.887674 -5.220475 11.468594 5.730321 -14.444301 16.013031 0.885453 -7.443212 11.546900 -18.011837 4.093312 -7.801142 8.518816 -24.300682 -18.871111 -2.140181 -8.769707 -8.937928 -15.030273 2.509065 14.878205 9.728840 12.949872 -12.322414 -1.490229 -21.811621 -11.954863 15.121307 -6.577933 14.376627 12.395258 5.764267 -47.918952 17.937790 16.466932 -5.030246 -24.219151 3.271487 -10.134713 -3.319541 -10.754253 -10.325067 4.067973 4.854256 12.447284 7.612706 4.021027 -1.159347 -0.744816 4.877220 36.570462 -5.452197 18.421830 17.768465 -0.953235 1.367484 0.070455 8.357394 0.799151 13.028530 15.189982 -5.746440 -10.735415 -2.510160 -12.224461 -19.696364 15.847480 3.642378 -0.680822 -14.567060 -6.124783 -18.646947 -5.013010 -6.495716 18.261703 35.637727 -19.329003 24.884330 7.788722 15.551231 -3.115417 12.849031 0.565065 21.025049 9.745041 -13.023825 1.668267 -18.250875 -6.717538 1.105065 1.096447 -11.058980 -20.682155 11.896284 -27.294149 -25.125632 11.949770 4.006624 -2.598696 -11.566471 -3.533697 12.635477 8.320201 -14.210527 -21.632233 -9.841116 6.168330 -3.658345 -8.757358 0.613630 5.983296 -3.705835 -7.206862 -24.299055 -4.325535 9.319629 -15.947675 -0.457959 19.034116 -8.066683 9.697284 -3.316579 2.249186 -4.693372 19.333910 4.933920 7.391871 4.706015 -1.418837 -10.810607 0.530586 7.402396 18.827194 -8.459824 -6.532641 1.167862 9.201287 -4.592652 1.036276 -3.112712 10.635624 11.405889 -6.168094 -18.129558 -14.911439 -6.261861 -28.081570 3.514162 -18.614836 -8.169718 14.577334 18.069070 11.681634 9.034182 23.050297 -15.073380 16.440978 -2.430210 1.997397 8.681500 1.080001 10.520208 -11.177055 -17.851460 13.095038 6.007806 8.753927 6.338063 -10.733315 0.353957 -15.352478 -16.721521 10.191364 10.140647 -0.886256 16.964982 10.732910 19.801274 -20.551084 4.972992 6.338154 -2.110741 2.512787 -0.014600 -25.414862 12.731489 1.552618 0.802077 18.969328 -2.488015 -12.501676 8.816583 -2.280790 5.260538 -16.027507 7.749378 -14.664377 -1.998994 -17.095661 5.366214 -8.828868 -8.174666 -11.226264 -6.378595 27.761926 -25.508000 -18.932205 21.199822 -0.377231 18.222856 -30.051667 15.876606 -12.027141 23.343515 -4.572843 -7.204933 0.616635 -3.417944 -6.058522 2.606137 11.877380 -9.322129 5.746831 20.700225 5.676057 4.779251 7.159915 15.890091 -1.698674 6.306667 -9.854373 16.969323 -0.501119 -11.235183 -0.143581 -9.902377 6.372556 -4.810988 4.841215 16.718415 17.292019 8.072078 13.360081 14.226496 8.482710 -13.933677 5.343845 -1.154604 14.596310 -12.263833 -2.942945 -3.747069 10.139433 -5.634247 10.986380 -25.154596 -32.042255 -27.970863 -21.644997 -9.834944 -4.025833 8.878271 -1.274961 0.106031 -21.701675 -14.201781 12.955523 -9.729942 18.413647 16.130008 12.309814 19.892888 20.013001 -9.432021 -7.393621 4.298270 8.084881 -6.764603 1.409769 -19.300005 12.486762 -15.387750 12.515460 23.373626 -4.907362 6.723595 -2.947441 23.991830 -14.555691 31.667587 14.517460 -19.660562 11.841814 13.692547 18.423265 5.421141 -15.748980 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = 0.247802 -1.022171 2.463501 2.221989 -0.248550 0.729948 0.066720 -1.792920 1.630194 0.980613 -0.169901 0.594561 -1.098957 0.784875 -0.494150 1.632898 -1.711727 -0.969707 -0.714040 -1.303565 -0.992001 -0.999606 0.596474 0.144550 0.957860 0.535711 -1.174555 0.023881 -0.914915 -2.072830 0.802980 -0.345434 0.839843 -0.154246 0.302004 -3.285149 1.927330 1.356361 -0.639446 -1.655428 0.425531 -0.676201 -0.212269 -0.308282 -0.404707 0.432335 -0.324261 0.610682 1.067942 0.748356 0.742312 0.820481 0.851860 2.906977 -0.887168 1.345954 0.719001 0.057988 -0.313050 0.460921 0.522980 0.726943 0.787323 0.816584 0.128753 -1.434604 -0.449736 -0.410474 -1.369032 1.463971 -0.231400 -0.882834 -1.344268 -0.743687 -0.962786 -0.355127 -2.179656 1.429772 2.219941 -1.500781 1.021414 0.355976 0.330751 0.006984 0.851811 -0.212397 1.747334 0.661762 -0.483701 0.026070 -0.067728 -0.663513 0.634175 -0.271892 -1.102535 -2.303422 0.935209 -1.611438 -1.793270 0.885975 0.870313 -0.325898 -1.184963 -0.694876 0.813404 0.436411 -0.847050 -1.508010 -0.479563 0.646937 0.369925 -0.799842 -0.121421 -0.463641 -0.168571 0.088929 -1.958875 -0.033415 0.295687 -0.659369 -0.562378 1.316343 -0.045701 -0.136989 -0.305052 0.475605 -0.548247 1.501126 -0.361075 1.509193 -0.031820 0.987972 -1.142670 0.811308 0.840403 -0.070097 -0.257977 0.137132 -0.683219 0.566558 -1.092851 0.782744 -0.651718 0.843739 1.578562 -0.208425 -1.332880 -0.574672 -0.433445 -2.009913 0.509881 -1.237995 -0.785476 0.443776 1.341847 0.954667 1.084707 1.222870 -1.458524 0.521534 -0.247619 0.215208 1.245524 0.006682 0.777119 -0.781034 -1.350814 0.908116 0.655957 0.340905 0.351113 -0.293107 0.079757 -1.002565 -0.412794 0.855315 0.683169 -0.347473 1.224658 0.973512 2.363951 -1.166677 0.541163 0.883228 -0.507272 0.381714 -0.263955 -1.844444 0.577042 0.359069 0.602532 1.615540 -0.284337 -0.537686 0.473905 -0.333775 0.543031 -0.959627 0.392663 -1.126429 -0.329114 -1.029700 0.315040 -0.470955 -0.383314 -0.512903 -0.425496 1.902189 -1.740034 -1.004898 2.244568 -0.812256 0.503869 -1.726978 1.868872 -0.847515 0.823773 -0.562440 -0.232376 -0.067849 0.124401 -1.098220 0.414272 0.880672 -0.516024 0.292586 2.074094 0.440393 0.133691 -0.064843 1.305850 -0.478246 1.034652 -0.875004 2.052947 -0.219277 -0.289389 -0.243884 -0.673616 -0.055111 -0.979902 0.289655 1.246300 0.779433 0.442290 0.513269 0.804444 1.292196 -1.018387 1.578641 -0.095241 0.288448 -0.902024 -0.156124 0.493856 0.400862 -0.628116 0.864306 -1.782697 -1.561470 -2.137287 -1.028817 -0.260942 0.068467 0.611809 -0.566547 -0.433344 -1.216970 -1.440913 1.806205 -0.717920 0.300323 1.001265 0.783157 1.135872 1.777846 -0.482573 0.185818 -0.631857 -0.201567 -0.016179 -0.587995 -0.833673 1.545864 -0.700901 0.406730 1.599950 -0.355584 0.767168 0.012036 1.019770 -0.887884 1.835567 0.640025 -0.366073 1.143968 1.460146 1.782084 0.048074 -1.035245 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -4.160928 -9.476035 12.205504 9.390889 0.324044 6.686770 3.506921 -7.204499 5.778586 5.168049 -2.726600 5.003198 -6.706545 -1.067045 -3.261100 2.009728 -5.573574 -7.156175 -1.508163 -5.076190 -3.086206 -5.895000 -1.801028 6.527188 2.684705 1.197856 -3.961752 0.313802 -11.831295 -10.724386 3.083396 -0.410428 4.698046 0.250409 2.534964 -16.526881 7.994336 10.467326 -2.133070 -10.408946 1.283506 -2.530720 -4.355792 2.372063 -2.217164 2.640214 0.990528 1.686879 0.354320 2.474054 4.153027 0.335673 3.265895 14.895901 -0.347769 10.253123 9.602942 0.516222 2.150984 3.579514 2.456456 0.554695 4.864593 5.610148 -1.824880 -2.252108 0.917767 -1.271301 -7.350730 5.158971 1.014426 -6.966868 -2.331041 -4.382242 -7.519822 -2.126627 -1.840414 3.044018 14.028331 -5.603853 12.038502 4.469106 6.459045 -1.649348 7.511333 -1.218954 10.224103 3.880327 -5.233735 0.690868 -6.445073 -2.599163 0.286038 5.418767 -7.292495 -3.319345 6.900379 -10.566616 -11.160294 6.609530 0.780946 -2.751416 -7.194130 -0.867348 4.111930 1.775638 -5.211995 -9.448729 -7.172679 6.450692 -3.892037 -4.014461 -0.907784 1.079146 -0.849676 0.858856 -8.404958 -0.241332 6.424677 -5.678166 -5.129055 8.707489 -2.421602 4.869021 -1.443929 1.353895 -1.788130 3.785918 1.254840 3.620075 1.386409 -0.829070 -10.253160 -0.045237 1.751863 2.546984 -3.224654 -1.628472 2.824573 4.335061 0.425314 6.668465 -4.612032 6.271718 5.797028 -0.797090 -5.718468 -6.859047 -1.485412 -10.093176 1.261399 -6.588513 -5.993263 1.697788 7.302969 3.760242 1.249815 8.167025 -5.138748 6.675601 -0.349938 0.430990 0.980902 -4.747939 3.381328 -4.808913 -9.073323 4.357098 5.351574 3.219954 3.135031 -3.568014 -1.405949 -5.010560 -8.300853 3.699527 1.720238 -0.511004 8.167037 6.574421 16.062839 -9.230448 1.818007 0.186804 -2.741669 1.629335 -2.264747 -10.327398 2.050310 2.435919 2.183419 12.174227 -0.480405 -3.763141 2.717770 -0.929864 1.808592 -7.054003 7.073213 -6.892260 -0.437135 -4.453676 -0.834444 -4.154957 -3.531731 -5.086743 -3.079991 11.318874 -9.346803 -10.558669 9.165206 -0.827053 3.770823 -13.234940 7.291075 -4.205263 8.239010 -2.404758 -1.922931 -1.264290 2.429267 -2.073123 3.335514 3.917719 -7.168842 5.719469 9.907749 1.003503 3.145034 2.050608 5.281562 -3.681619 -0.644931 -7.379764 8.473007 -0.069279 -5.797215 -1.956264 -4.348420 4.069896 -1.882830 0.598870 1.729409 6.858485 -1.718449 -0.132506 7.115083 1.443909 -4.880295 4.644334 1.799390 5.034203 -4.800328 -1.463949 -1.892082 1.306108 0.124990 3.680545 -10.645834 -7.399236 -9.304085 -10.916240 -3.092767 0.436967 4.516894 1.622368 -0.025714 -10.623362 -7.394497 9.180451 -3.720423 5.406243 7.133517 7.700148 8.200155 7.807821 -0.103175 -0.381248 -2.317443 1.648182 -5.267548 -3.272670 -3.137270 4.525969 -4.268669 6.826615 5.566447 1.344323 5.256222 0.130056 5.786048 -6.702492 11.863470 6.078395 -6.067909 3.571002 5.828892 9.771443 -4.125334 -5.968523 -PE-benchmarks/the-knights-tour.cpp__main = -0.256989 -1.336014 1.405064 1.342041 0.254078 0.683191 0.512824 -0.411923 0.934860 0.746692 -0.690141 0.721601 -0.930115 -0.033328 0.126151 0.586567 -0.730012 -1.058804 0.297049 -0.010046 -0.090609 -0.898590 -0.075123 0.615109 0.447894 0.657970 -0.421201 -0.046378 -1.352842 -1.147149 0.526032 -0.331699 0.712937 0.764900 0.285251 -1.724920 0.900215 1.119665 -0.128343 -1.662456 0.050656 -0.420923 -0.225527 -0.141937 0.283136 0.727988 0.594124 0.777229 0.071493 0.551799 0.064977 -0.441102 0.454984 1.093614 -0.022016 1.108474 1.217079 -0.009855 0.241739 -0.010378 0.494232 -0.146303 0.781619 1.005899 -0.487882 -0.351056 -0.235527 -0.325030 -1.192355 0.508181 0.324823 -0.079209 -0.886912 -0.325122 -0.273539 -0.053196 -0.876352 0.559480 1.951080 -0.585246 1.708674 0.770662 1.180890 -0.362652 0.661103 -0.066687 0.797921 0.583493 -0.969771 -0.040133 -1.255982 -0.913782 -0.008763 0.313471 -0.592636 0.026569 0.457642 -0.547889 -1.181042 0.600471 -0.058689 -0.028151 -0.613746 0.376058 0.716257 0.669229 -0.353796 -1.085983 -0.561682 0.219190 -0.526974 -0.624174 -0.308023 0.266178 -0.479163 -0.090659 -1.105794 -0.405220 0.735955 -0.996766 -0.053099 0.766446 -0.518091 0.683092 -0.322851 -0.134589 0.004276 0.710546 0.688279 0.384393 0.905893 -0.590348 -1.362625 0.564355 0.434418 0.917701 -0.526874 -0.024531 0.349111 0.378860 0.134875 0.273015 -0.207381 0.651189 0.942120 -0.316907 -0.812819 -1.087439 -0.145270 -0.886341 0.557172 -0.856271 0.200573 0.152825 0.971281 0.151667 0.394907 1.402533 -1.286363 0.859798 -0.169102 0.420134 0.153675 0.490360 0.414276 -0.543750 -0.769978 0.763125 0.936581 -0.041359 0.502560 -0.579545 0.154600 -0.710552 -0.828117 0.849876 0.099463 -0.071992 0.994639 0.326774 1.417455 -0.660641 0.050380 0.137694 0.107080 0.067740 0.075888 -1.363856 0.965433 -0.108252 0.656519 1.059640 -0.019021 -0.609365 0.360179 -0.026353 -0.004235 -0.729451 0.898810 -0.878705 -0.165155 -0.523218 0.387875 -0.441925 -0.637377 -0.376419 0.434456 1.411820 0.043167 -1.093283 0.444568 -0.499136 0.470802 -1.485345 0.969839 -0.731524 0.677926 -0.345485 -0.378308 -0.016468 -0.109952 -0.017583 -0.342893 0.693653 -0.359054 0.558675 0.879399 0.231180 -0.126554 0.586153 0.406780 -0.080199 -0.045170 -0.376275 0.529765 0.010620 -0.037986 -0.109408 -0.510645 0.778183 -0.051567 -0.463973 0.780651 0.981405 -0.103087 0.520954 0.415450 0.186750 -0.800731 0.398848 0.221789 1.073709 -0.541537 -0.166516 -0.522923 0.095652 -0.140120 0.673214 -1.186027 -1.154542 -0.295179 -1.287200 -0.731289 0.135028 0.651103 0.186890 0.201386 -1.220640 -0.692722 0.537539 -0.326585 0.955176 0.578940 0.616427 0.893013 0.591664 -0.250043 -0.578906 -0.184328 0.152863 -0.671319 -0.169362 -0.373469 0.477394 -0.616981 0.653914 0.836602 -0.214279 0.117844 -0.534127 1.392483 -0.619180 1.678705 0.834453 -0.873183 0.363895 0.316978 1.515664 -0.557520 -0.821271 -PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -1.229420 -2.359743 2.009075 1.970218 0.676944 1.536005 0.950415 -0.820042 1.454629 1.787114 -1.250308 1.350367 -1.420528 -0.604362 0.428967 0.513855 -0.736167 -1.596103 0.547915 -0.085981 0.016522 -1.713797 -0.915393 1.438750 0.368935 0.835193 -0.522918 0.576854 -2.602144 -3.081274 0.459689 -0.276043 1.083243 0.682921 0.584749 -3.210852 1.634491 2.492990 -0.087443 -2.908560 -0.056802 -0.728428 -0.789878 0.574059 0.405865 1.501483 0.936411 0.704370 -0.245935 0.699878 0.541141 -0.874325 0.907499 1.735813 0.184470 2.360254 2.441290 -0.123502 0.563439 0.299607 0.571354 -0.346938 1.489501 1.858492 -1.144674 -0.268440 0.149453 0.158063 -2.169682 0.666917 0.630190 -1.069973 -1.175849 -0.704029 -0.688337 -0.193889 -0.309691 0.164405 3.315537 -0.259310 3.509821 1.471773 2.067577 -0.628017 1.692494 -0.396559 2.004046 0.872500 -2.007165 -0.033498 -2.052408 -1.689568 -0.008049 1.857179 -1.213347 1.432293 0.627929 -1.147012 -2.114152 1.061546 -0.432490 -0.325493 -1.663033 0.646829 1.364731 0.673627 -0.204343 -2.109197 -1.463497 1.014307 -1.707586 -1.166442 -0.904039 0.331874 -0.653005 0.451678 -1.547677 -0.579021 1.730168 -1.487976 -0.789362 1.470412 -0.800120 1.267394 -0.540526 -0.160877 0.125614 0.459260 0.909249 0.554614 1.432354 -1.354836 -3.213752 0.614637 0.322884 0.836168 -1.041394 -0.439738 1.075386 0.681647 0.562377 1.194674 -0.824048 1.607536 1.806925 -0.114850 -0.885174 -2.064403 -0.319536 -1.412856 1.009739 -1.171049 -0.087761 -0.306531 1.654534 -0.250623 0.342250 1.917812 -2.044949 1.713234 -0.220446 0.684020 0.092310 0.075241 0.601340 -1.015646 -1.358890 1.378364 1.886203 0.074438 0.813521 -0.904556 0.005780 -0.812450 -1.903919 1.645758 -0.303955 0.444224 1.931837 0.769183 4.420776 -1.372323 0.348070 -0.158419 0.092264 0.258537 -0.093886 -2.053890 1.425904 0.149733 1.368683 2.620683 0.021992 -0.981134 0.115576 0.325184 0.000914 -1.610826 2.373559 -1.594076 -0.019042 -0.432644 -0.255963 -0.871364 -1.294784 -0.955200 0.764328 2.419251 0.099404 -2.632310 0.924849 -1.040846 0.761560 -2.961187 1.666717 -1.273201 1.253304 -1.038448 -0.614825 -0.109213 0.150475 0.113368 -0.059341 1.039306 -1.230059 1.483535 1.490752 0.285322 0.182328 0.822944 0.315325 -0.264601 -0.621281 -1.077226 0.890909 0.236979 0.074165 -0.585811 -0.968108 1.693771 0.313103 -0.989398 0.430091 2.066882 -0.945767 0.032947 1.216696 -0.204386 -1.150739 0.750279 0.546584 1.511860 -0.798079 -0.557836 -1.046330 -0.136681 0.265416 0.994149 -2.124828 -1.165096 -0.201302 -2.597339 -1.283815 0.793600 1.293039 1.027772 0.546832 -2.583010 -1.076268 1.758173 -0.391075 2.023028 0.814373 1.417148 1.389202 0.792605 0.300066 -0.969336 -0.897112 0.007068 -1.643733 -0.579930 -0.244939 0.886632 -0.828985 1.718916 0.742789 -0.173451 0.394411 -0.665216 1.931685 -1.165119 2.749408 1.415369 -1.342075 0.299472 0.185579 2.626722 -1.969950 -1.326946 -PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -1.291203 -2.454296 2.527072 2.246486 0.948398 1.589696 0.378769 -0.405776 0.704267 2.274531 -1.322378 1.773207 -0.869962 -1.093176 1.084351 0.520639 -0.500481 -1.818981 0.634261 -0.074439 0.262585 -0.891170 -1.457949 1.923081 0.565186 -0.877419 -0.857116 0.231414 -2.635045 -2.951407 -0.875833 -0.174985 1.163585 -0.252845 0.973347 -2.088003 1.597864 2.251381 0.017649 -2.780462 -0.079449 -0.321948 -0.660608 0.703888 -0.375018 1.491390 1.576676 -0.903015 -0.587713 1.081480 0.255623 -0.743886 1.147179 1.766123 1.232098 2.265658 2.566800 -0.495056 0.915702 0.471136 0.771966 -0.912480 1.360016 0.924192 -0.548116 -0.245369 -0.115542 0.415498 -1.156273 0.388726 0.249080 -1.488749 -0.294221 -0.868316 -1.533191 -0.485210 1.016757 0.621826 2.650882 -0.940318 3.061055 1.674174 2.209862 -0.061490 1.755664 -0.272251 1.790792 1.040910 -1.545776 0.264837 -1.489377 -2.181938 -0.193116 1.555710 -1.350507 1.577846 0.923276 -2.278973 -2.287955 1.894720 -0.357907 -0.271208 -2.044864 -0.106422 1.353790 1.111563 -0.193065 -1.549041 -1.451724 1.121333 -1.533358 -1.257223 -0.810350 0.084269 -0.290290 1.094354 -1.676326 -0.197619 2.089693 -1.346027 -0.974072 1.683800 -0.794393 1.654615 -0.749579 -0.003413 -0.053147 0.437222 1.107235 0.874552 0.855827 -1.547557 -3.483504 0.308719 0.120540 -0.603985 -0.756911 0.185632 1.178674 0.954686 0.759767 2.109797 -0.796749 2.312930 1.349629 0.286920 -1.315085 -2.471128 -0.687450 -1.026007 0.550854 -1.104864 -0.765824 0.966609 1.519268 0.154930 -0.028506 1.900262 -1.009118 1.234644 -0.421478 0.477264 -0.268036 -1.680252 0.429997 -1.091782 -1.228759 1.297083 2.387170 0.308212 1.273016 -1.135224 0.411970 -0.693564 -2.183810 1.183865 0.003197 0.533819 1.934214 0.987776 3.044016 -1.315554 -0.304140 -0.607174 -0.077710 0.084589 -0.537304 -2.100737 0.507708 0.202292 1.179359 2.654704 0.045956 -1.133471 0.353956 0.081224 -0.118378 -0.982675 2.090910 -1.648653 0.626578 0.122641 -0.995756 -1.418114 -0.988538 -1.139492 0.111434 2.526533 -0.344007 -2.759623 0.848524 -0.616551 0.524932 -3.150519 1.281872 -1.111607 2.012790 -0.466373 -0.722399 -0.493035 0.411838 0.141094 0.128544 1.106801 -1.514621 1.255078 1.112784 0.111619 0.305732 0.878686 0.316149 -0.477683 -0.603719 -0.973169 0.756218 -0.261832 -0.083970 -1.092183 -0.666006 1.746809 0.527912 -0.847132 -1.099852 1.056363 -1.131494 -0.524938 1.789140 -0.563434 -1.330387 0.660397 0.316744 2.108937 -1.087097 -0.578311 -1.332530 -0.044978 0.672729 0.513309 -2.374847 -0.555130 -1.800742 -2.143499 -1.439467 1.000783 0.835662 0.789780 0.151653 -2.219817 -1.298804 1.346963 -0.279547 0.904108 1.189723 1.501997 1.912139 0.664207 0.752405 -1.126810 -1.235996 -0.392612 -1.647300 -0.818849 -0.201037 0.718443 -0.910439 1.728694 0.811924 0.405682 0.726169 0.549709 0.028438 -1.336440 2.206137 1.542767 -1.856591 -0.180004 0.962110 1.392101 -2.974408 -1.578632 -PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -5.129821 -8.577544 7.862008 7.253497 3.355369 5.667921 3.482181 -2.695172 4.177081 7.745808 -2.720047 5.356677 -5.437926 -1.541637 -0.220854 2.255570 -1.347139 -6.400729 1.198281 -1.516712 -1.142428 -4.821969 -3.115681 5.435035 1.894214 -2.727859 -3.115079 -0.567083 -10.917413 -8.685241 -0.623522 -0.780641 4.118556 -3.048359 1.077544 -11.574613 5.308455 8.831501 -0.634047 -9.173091 0.626324 -3.019098 -1.735033 2.873128 -0.875341 2.600604 3.297617 -0.395511 -0.391112 2.659018 3.851803 -0.735546 3.178382 10.788790 0.594960 8.466773 7.535601 0.072366 0.898632 1.847386 2.247305 -1.611818 5.374792 4.296291 -2.824073 -1.167709 0.054908 1.019408 -6.150440 1.746612 1.764982 -4.253806 -1.702169 -1.762560 -3.409005 -2.281685 2.057470 0.318738 10.575360 -2.900804 11.139424 4.713749 6.339937 -0.557113 6.293985 -0.988652 6.528749 2.696611 -5.673758 -0.687000 -5.587556 -1.706511 -0.480497 6.539509 -4.893825 0.566823 3.937734 -3.622042 -8.847732 5.220953 -1.323657 -1.243641 -6.467224 0.045098 4.126112 3.097990 -3.217471 -7.745904 -6.546018 4.256020 -4.198882 -4.829282 -1.463133 -1.859857 -1.060123 0.380383 -5.739906 -1.638960 6.024663 -5.683380 -5.040851 6.384871 -2.930570 5.497639 -1.521944 0.782842 -0.003790 1.436311 2.967632 2.431539 2.094359 -4.091357 -11.348222 -0.170249 0.763705 1.465334 -3.088307 -0.194245 2.716406 2.969324 2.332711 6.187067 -2.391032 6.760395 5.408039 -0.059733 -3.421424 -6.792171 0.763359 -4.704692 1.978373 -4.488378 -2.750498 -0.559724 5.869037 -0.242703 0.557942 7.765715 -3.777071 6.611034 -0.125443 0.660220 0.838899 -3.702189 2.496189 -3.967585 -6.305730 3.877256 7.755902 1.351351 2.110920 -2.438898 -0.110222 -2.947758 -6.125896 1.987409 -0.065220 0.172535 7.281572 3.257086 15.954223 -6.869933 1.195721 -1.190031 -1.014002 1.745461 -2.149140 -8.237878 1.471508 1.523541 1.108734 9.797317 0.009472 -5.419690 2.262508 -0.084166 0.540780 -5.505769 7.789598 -5.826146 -0.069004 -1.603902 -2.070533 -3.514817 -3.437331 -4.337878 0.309505 8.787071 -3.171632 -9.114207 3.157506 -0.756175 1.255126 -11.613193 7.663710 -4.088210 5.009348 -3.338558 -2.418017 -0.826611 4.542683 -0.195186 1.699941 4.062668 -5.317977 5.715930 6.740838 0.662361 2.134075 2.472504 2.445997 -0.943201 -2.194894 -4.407532 4.822347 0.276602 -2.561493 -2.247209 -3.575719 5.514206 1.198547 -1.897088 -0.790622 6.375037 -4.210752 -0.819962 5.921773 -0.233391 -3.831575 3.326830 1.050709 6.397654 -3.217049 -0.846409 -3.958865 -0.053896 1.309400 3.787666 -8.380054 -3.651030 -2.689004 -8.581423 -2.062159 3.984740 2.783610 2.490208 1.082940 -9.834074 -4.830512 6.265351 -2.430158 6.492574 4.594239 5.969854 6.108491 3.610827 1.215694 -2.457734 -2.968503 -0.762425 -5.089507 -3.193550 0.138362 2.339442 -3.653644 6.733697 2.213398 1.030200 2.464186 -0.125797 2.289920 -4.550011 9.511151 5.204225 -4.477294 1.871667 3.051265 9.402597 -8.126647 -4.848085 -PE-benchmarks/graph-coloring.cpp__main = -2.147669 -12.803726 20.336047 17.045731 0.427713 9.204710 3.785643 -10.553224 11.082505 8.649794 -5.712079 3.533671 -10.953037 -1.138924 -0.802666 7.559898 -12.991170 -10.876983 -1.593569 -5.270127 -4.331697 -10.859945 2.223206 6.876446 6.136790 9.471417 -7.635057 0.631761 -9.594415 -17.999701 9.348426 -2.376841 8.775862 10.128492 1.552384 -28.250550 17.171221 13.738546 -3.635915 -13.260887 2.226404 -2.192954 -5.844293 -0.390613 -4.864729 6.555137 2.129842 8.098327 2.918129 6.193562 4.515086 -3.196312 9.267809 20.670438 -0.477326 14.417937 12.214366 1.437218 2.636672 4.117734 4.382545 2.541212 8.147861 11.380717 -1.686342 -3.816403 0.614732 -5.151067 -14.511078 10.661973 -1.032587 -6.404668 -7.532588 -5.331205 -6.594980 -0.697083 -8.108584 9.591266 21.615952 -10.700109 17.376104 7.372223 9.311813 -2.728330 4.985337 -1.825130 11.338109 7.077296 -7.878806 -0.645107 -9.878597 -10.940099 2.696034 -0.447442 -11.237361 -9.983829 7.752820 -14.807484 -15.888899 7.765618 2.156039 -3.455450 -8.773739 -2.369500 8.908640 1.817725 -5.023045 -13.190524 -6.869507 6.444839 -6.963469 -4.989660 -4.493740 4.173865 -3.194016 2.876759 -15.522437 -0.991607 5.782362 -9.243190 -1.709441 11.976308 -3.023151 5.200633 -3.038920 1.145327 -3.245492 9.867095 2.720367 7.265136 5.487198 2.448852 -7.772841 4.018189 6.387686 4.199386 -3.863311 -4.543311 1.711520 5.930245 -3.698305 7.520130 -5.506763 5.663534 11.980481 -1.917053 -11.227106 -9.517108 -6.683883 -19.631362 4.939814 -10.653893 -5.284737 7.688151 12.671870 5.673668 6.050712 13.219799 -15.478032 7.839178 -3.491012 2.776713 1.314101 1.028427 4.999191 -7.063760 -12.103662 8.997138 8.287853 3.238745 5.009073 -7.034716 -0.658260 -8.634740 -10.573694 8.720741 1.060046 -1.355238 8.547353 7.903014 21.376846 -10.176645 3.120432 4.775596 -1.942887 2.124362 0.709555 -16.991641 7.201554 0.887976 5.117423 15.953690 -0.483248 -5.406451 4.025545 -2.266021 0.594607 -10.723303 8.762289 -10.356470 -1.051350 -8.152763 1.506574 -5.751341 -5.996971 -4.993604 -1.906980 16.924829 -11.001191 -11.572687 14.231925 -2.986999 4.624968 -15.811846 12.890823 -8.131436 10.719657 -2.299147 -6.762411 -0.644465 -3.611409 -1.729150 -0.549723 5.022571 -5.627498 6.364123 15.018462 3.168713 1.531061 3.417547 7.573874 -3.396966 3.135308 -8.622479 10.194807 -0.671121 -5.475053 -2.822117 -6.824152 5.223602 -5.337257 -2.357033 8.737898 11.978007 0.136479 4.213271 6.843084 5.479219 -9.614661 6.399261 3.539273 8.073693 -7.312832 -3.365516 -0.852143 2.834745 -3.173958 7.760046 -16.295784 -14.651240 -16.623624 -14.679551 -8.459189 -0.327166 8.837291 -0.520615 0.236120 -13.195665 -10.749196 13.538539 -6.551573 6.654438 10.034705 9.590193 12.348430 13.047625 -3.412327 -2.861594 -0.975561 2.461589 -6.674759 -2.063799 -9.278279 11.675189 -4.399013 8.195895 11.367535 -2.144798 5.436386 -3.973880 12.230893 -9.280814 18.804636 7.909650 -8.138876 5.843401 4.339146 13.111800 -2.702302 -9.710822 -PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -3.263263 -15.159454 19.670480 18.606600 0.025751 10.817806 1.934398 -11.497663 9.531238 9.201138 -6.124602 10.235926 -10.127007 -0.242072 -3.262295 7.076745 -10.740559 -10.024185 -2.097907 -5.650803 -3.858709 -9.889535 -3.097131 11.563544 5.722435 8.519429 -7.679248 3.238207 -16.153080 -21.401095 3.258633 -0.659664 8.673731 4.898378 4.724407 -24.942310 14.506358 18.930940 -2.354360 -18.389558 2.019683 -5.483086 -7.063703 0.660658 -3.726096 7.171469 1.154051 3.442435 1.135762 4.610605 3.439822 1.828969 10.198681 18.024598 0.648926 16.540461 14.576402 0.462545 3.347522 1.738790 4.745009 2.253705 9.018656 9.285950 -3.328670 -7.199223 -1.798150 -0.054567 -12.039913 8.144326 1.344328 -9.345363 -8.568931 -6.701843 -9.279161 -1.817936 -7.213065 6.805712 21.822431 -7.985436 19.066851 7.489505 8.368691 -3.286241 11.637888 -2.640269 15.406251 7.399152 -7.813931 0.535547 -8.495574 -8.397096 3.402176 7.005114 -13.633190 -4.318559 8.748679 -17.617730 -17.839642 8.618849 2.157778 -6.017626 -9.187012 -1.229265 7.119079 3.521215 -4.289041 -14.174060 -6.657986 9.044551 -4.722604 -9.506278 -5.577551 3.165833 -0.989757 4.205938 -14.769056 0.120239 9.864421 -7.898540 -3.476552 11.946614 -0.667794 5.638247 -4.412580 1.055284 -1.595342 7.328102 1.404831 7.351602 3.187158 0.393366 -11.647812 5.540522 4.427780 0.022740 -8.318736 -3.078286 3.636389 6.633222 0.947709 9.584935 -7.974010 10.420623 10.922862 -0.367412 -8.947759 -12.444932 -6.583860 -14.842278 2.830527 -9.435950 -7.801456 3.347885 12.297652 2.063637 4.082917 10.969098 -12.192942 8.613196 0.599884 3.084146 4.362414 -1.903782 4.469646 -7.855277 -13.377767 11.521313 9.078899 4.482991 3.895735 -2.781935 -0.323989 -5.532123 -11.018499 11.600118 1.524212 1.512771 15.378768 9.095101 26.436867 -8.914608 3.434281 0.681036 -3.970819 3.018607 -2.487203 -16.591642 6.563991 2.543294 7.886204 20.406042 -1.492893 -4.947020 3.830913 0.334571 2.144387 -12.188602 13.526283 -11.915352 -0.426884 -6.676631 -1.280605 -4.460244 -6.533163 -8.603077 -2.107905 18.934951 -13.471045 -14.888204 13.243125 -4.388243 5.503256 -19.499078 9.928761 -8.123149 10.864290 -3.291268 -4.773024 0.593672 -2.229426 -5.452878 1.350605 8.364245 -9.451121 6.811725 13.324139 2.030200 0.672551 2.779565 5.873911 -4.449710 2.429553 -10.768118 12.614829 1.328205 -3.334977 -4.474722 -6.984237 5.172654 -3.566045 -2.389485 5.697150 11.165799 -0.086132 -0.247935 8.478345 4.188161 -9.082472 8.942590 1.647384 5.783377 -7.874965 -3.855114 -2.833961 2.013030 0.473430 7.845022 -17.440375 -11.918013 -14.440509 -15.011661 -5.755624 0.851057 9.769872 2.238821 -1.445721 -16.147035 -13.696483 16.942184 -5.010186 9.932588 9.900497 10.620556 11.514854 9.920113 0.797684 -0.872957 -5.821311 1.733627 -5.907190 -4.305672 -5.039519 10.192570 -4.662640 9.799712 11.373342 -1.382085 8.388359 -3.181015 10.718505 -9.345030 19.746439 8.343451 -10.839732 4.488913 6.892250 13.103254 -8.671244 -10.691468 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = -0.947777 -2.912644 3.629677 3.068078 -0.258011 1.630338 0.774956 -1.362603 1.917193 0.887375 -1.075337 1.737245 -2.017186 0.104589 -0.643392 1.032378 -2.418147 -2.195181 0.017971 -0.843986 -0.737542 -1.824758 -0.492043 1.947253 0.969428 1.410520 -1.360979 0.069631 -3.044086 -2.505462 1.078715 -0.607291 1.660037 0.535296 0.742903 -5.956422 2.226892 2.714545 -0.497168 -3.641100 0.427377 -1.393238 -0.373500 -0.611524 -1.025657 0.890589 0.795913 1.105731 0.444100 0.580810 -0.165687 0.030542 1.065363 4.522684 -0.297291 2.613141 2.763860 -0.065458 0.140640 0.047906 0.974872 -0.147253 1.627369 1.695377 -0.858624 -1.225450 -0.424884 -0.885621 -2.329581 1.426873 0.468037 -0.711739 -1.619754 -0.803473 -2.254713 -0.697830 -0.860076 1.774431 4.162352 -2.089878 3.571229 1.152596 2.047746 -0.028462 1.911880 0.036321 2.512032 1.186889 -1.670775 0.136829 -2.065442 -1.053660 0.287659 0.611221 -1.654731 -2.088738 1.405148 -3.019061 -3.107285 1.616185 0.165317 -0.517991 -1.565927 -0.434367 1.566733 1.281684 -1.443400 -2.660163 -1.562156 1.172582 -0.785397 -1.339471 -0.103717 0.519785 -0.340357 -0.575022 -2.809297 -0.196734 1.671227 -1.689008 -0.423013 2.409775 -0.792599 1.357884 -0.505993 0.213367 -0.464254 2.079206 0.814366 0.826544 0.380081 -0.514422 -2.247861 0.440358 0.703904 1.475202 -1.341872 -0.715053 0.474248 1.116150 0.025433 0.582834 -0.801328 1.654437 1.780853 -0.487291 -1.709538 -2.435115 -0.859518 -2.961945 0.484913 -1.911279 -1.047802 1.428737 2.246357 0.962591 0.933648 2.625840 -2.039650 1.810931 -0.240819 0.253078 0.871508 0.154448 1.100608 -1.348458 -2.130974 1.623064 1.339962 1.147574 0.625931 -1.011040 0.075653 -1.399951 -1.884283 1.608978 1.009987 0.184131 2.489646 1.481610 3.754458 -2.409380 0.378483 0.290655 -0.604050 0.355263 -0.230038 -3.003887 1.343097 0.467700 0.480149 2.833478 -0.312867 -1.382269 0.956197 -0.082748 0.453335 -2.009040 1.662404 -1.996739 -0.337607 -1.549744 0.145090 -1.276056 -1.159069 -1.849748 -0.687854 3.498772 -2.677179 -2.665972 2.056709 -0.477905 1.693807 -3.857698 2.174742 -1.553460 2.601253 -0.755510 -0.786872 0.086776 -0.085329 -0.684165 0.209745 1.543950 -1.555355 1.022524 2.395586 0.729307 0.392373 0.812216 1.589829 -0.372817 0.372385 -1.517077 1.893828 -0.234260 -0.937312 -0.218861 -1.187381 1.204123 -0.105448 0.232431 1.519624 2.029478 0.430065 0.998821 2.027789 0.690740 -1.617050 0.850955 -0.165371 1.969991 -1.384887 -0.463752 -0.978762 1.024414 -0.097768 1.247171 -3.230568 -3.039448 -3.019842 -2.864127 -1.053452 0.042880 1.053403 0.272534 0.163075 -3.308705 -1.917200 2.287378 -1.043019 2.231182 1.768382 1.509299 2.430848 2.018220 -0.554071 -0.927792 0.091952 0.519450 -1.066001 -0.202140 -1.684132 1.570421 -1.743334 1.692933 2.406438 -0.546340 0.975056 -0.215587 2.301907 -1.745666 3.911945 1.779992 -2.361281 0.961952 1.653001 2.685818 -0.682300 -1.963136 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -7.575563 -12.268539 9.032028 8.844212 3.602690 8.203855 5.720215 -2.014401 4.714862 10.228521 -2.897768 6.957514 -6.101157 -3.844886 0.116480 1.820190 -0.621082 -7.340696 2.072677 -1.316374 -0.125281 -6.657484 -7.050393 9.191126 1.189111 -1.467475 -2.563550 0.218902 -15.026709 -13.589198 -1.241802 -0.366368 4.710891 -3.679681 2.534873 -15.228155 6.692984 13.041691 0.246398 -13.012602 -0.255313 -2.928144 -2.302317 5.102242 -1.243468 4.635018 3.975546 -1.714755 -1.895151 1.920130 3.227188 -1.458823 5.826770 13.404165 1.513519 11.924814 11.604321 0.352633 3.704339 2.008005 2.544749 -2.339977 5.753607 5.571939 -3.003881 -0.229569 -0.764614 2.000008 -7.033893 1.302858 2.784002 -6.590821 -2.885175 -1.484600 -6.527917 -3.279068 -0.843749 -0.330687 13.367599 -3.081184 17.018176 6.838755 9.152202 -0.744251 9.191969 -1.206797 8.521936 3.364826 -7.818545 1.136218 -7.320656 -2.544856 -0.554385 10.012428 -7.504229 2.446070 4.310711 -5.200110 -11.384704 7.398668 -3.229623 -1.816885 -7.136762 0.338784 4.811924 2.806328 -3.717591 -10.537553 -10.037302 6.422493 -6.014973 -6.116888 -1.750212 -0.251938 -0.207029 1.350690 -5.980873 -1.590576 8.693676 -6.613136 -6.770903 8.007878 -2.232660 8.130523 -1.669600 0.088786 0.091309 0.132715 5.319592 2.407662 1.809262 -6.727036 -17.062555 0.019738 -0.092461 0.856595 -4.397188 -1.864621 5.044982 4.267423 6.090831 8.465451 -2.939034 8.890346 5.667118 0.428374 -1.964179 -9.893383 -0.197261 -5.166836 2.766365 -4.921006 -4.243940 -0.910091 6.756833 -1.831144 -0.291616 6.628936 -4.936687 8.158199 0.015480 1.625891 -0.372713 -3.834424 1.753992 -4.060450 -7.423868 4.367481 9.401208 3.457550 1.750907 -3.361283 -1.036810 -1.077482 -7.985667 3.449977 -1.682569 0.403525 10.030154 4.275038 23.406840 -8.810607 1.019355 -2.989059 -2.394750 2.379995 -2.638954 -9.647409 3.015398 1.976286 1.182580 11.993113 -1.145087 -4.414455 3.222967 0.223303 0.529680 -7.895247 12.147343 -7.759132 -0.956412 -2.083761 -3.964822 -4.886150 -4.949449 -7.204604 1.022096 11.214635 -4.786479 -11.194577 2.975342 -1.414027 0.390555 -13.266850 9.938612 -4.501106 5.205162 -4.716393 -3.408306 -0.342829 6.980927 1.216966 0.412591 5.017093 -9.885913 8.017836 6.861270 0.374497 1.951322 3.746276 2.169541 -1.349758 -4.576912 -7.113199 5.778681 0.314312 -3.009999 -3.713636 -4.394191 8.578316 2.762811 -2.609394 -2.331949 7.857357 -5.994129 -3.849101 8.291394 -2.606251 -3.981323 2.810552 0.826696 7.752525 -3.773524 -0.905274 -6.841101 -1.073568 3.062472 4.238676 -10.575949 -2.345908 -2.511165 -10.071121 -4.434347 5.220837 4.359096 5.493311 2.056367 -15.044379 -6.916241 9.606944 -2.469755 3.451432 5.186792 6.965474 7.972777 3.430164 4.333537 -3.300046 -3.882020 -0.608097 -6.370318 -3.746596 1.129060 2.348215 -5.447485 9.120179 1.689027 1.554884 3.662967 0.058297 3.180837 -6.259664 12.741470 6.318584 -6.262239 0.733179 4.662817 11.381074 -12.168044 -5.936256 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = -0.094267 -2.394382 3.353300 2.970318 -0.228853 1.255119 0.635115 -1.507279 1.542601 0.839828 -1.045702 1.615371 -1.770590 0.364445 -1.035786 1.233743 -2.221363 -1.694456 -0.351435 -0.749708 -0.566937 -1.439237 0.008189 1.515743 1.203565 1.606631 -1.288049 -0.066256 -2.553013 -2.451880 0.858184 -0.384233 1.342535 0.598056 0.516595 -3.865899 2.024098 2.633859 -0.575729 -3.006010 0.640585 -0.951827 -0.811385 -0.611641 -0.647278 0.791214 0.330600 1.169100 0.393349 0.766860 0.074467 0.342712 1.533242 3.460221 -0.294040 2.326477 2.540353 0.236781 0.453007 0.016937 0.874325 0.302543 1.119213 1.403377 -0.291475 -1.335357 -0.661991 -0.620169 -1.710643 1.384686 0.224199 -0.531585 -1.721241 -0.814175 -1.847064 -0.172176 -1.423118 1.624220 3.508317 -1.791242 2.738429 1.070298 1.331307 -0.343383 1.258295 0.019971 1.735311 1.197915 -1.034553 0.087262 -1.730117 -0.935233 0.502098 0.191121 -1.803331 -2.272602 1.470615 -3.015580 -2.680615 1.207630 0.520608 -0.850526 -0.405721 -0.138984 0.884075 0.855836 -1.050357 -2.075373 -0.852019 0.980519 -0.180676 -1.204275 -0.233560 0.611755 -0.133167 0.031863 -2.554832 0.105934 1.212244 -1.341359 -0.023217 1.786243 -0.151717 0.935775 -0.556891 0.179729 -0.381993 1.601474 0.584051 1.112426 0.361240 0.297605 -1.268333 0.915261 1.024884 0.605009 -1.353309 -0.190276 0.211750 0.974136 0.102538 0.733889 -0.896805 1.156662 1.184083 -0.630932 -1.598810 -2.058706 -1.172242 -2.444261 0.508595 -1.448988 -1.222199 0.705371 1.888549 0.676263 0.962761 1.942650 -1.699545 0.928024 0.099258 0.361010 0.771916 -0.044357 0.842780 -1.069993 -2.054345 1.593723 1.098175 0.758383 0.542992 -0.394153 0.107421 -1.232487 -1.105642 1.508843 0.731013 -0.277541 2.290333 1.389598 2.810322 -1.234386 0.414331 0.476150 -0.560900 0.296008 -0.191096 -2.727984 1.332220 0.275583 1.032624 2.585423 -0.146367 -0.760612 1.072529 -0.259841 0.350037 -1.638775 1.554892 -1.671142 -0.521560 -1.482645 0.632431 -0.627710 -0.909451 -1.311888 -0.456909 3.018756 -2.462263 -1.672504 1.806607 -0.200571 0.941899 -2.776195 1.976609 -1.229916 2.092992 -0.109982 -0.691101 0.331092 -0.495659 -1.065720 -0.188336 1.318295 -1.245874 0.808875 1.854859 0.593397 -0.013835 0.552886 1.299972 -0.650798 0.729242 -1.445938 1.712204 -0.017628 -0.960433 -0.248773 -0.922437 0.702509 -0.663970 0.105405 1.518683 1.415115 0.677667 0.786474 1.228738 1.152893 -1.506507 1.139874 0.010651 1.268904 -1.335277 -0.439758 -0.495174 0.574860 -0.284708 1.387408 -2.712836 -2.477323 -2.710937 -2.128106 -0.769853 -0.578258 1.231148 -0.071820 -0.218275 -2.600528 -2.139631 2.067706 -0.947855 0.989360 1.771928 1.251015 1.887281 1.670417 -0.384226 -0.145532 -0.254828 0.740296 -0.550550 -0.376047 -1.263127 1.498228 -1.109422 1.043909 2.271029 -0.567427 1.114716 -0.341787 1.874043 -1.442626 3.293945 1.377999 -1.947146 0.932239 1.516030 2.200266 -0.565757 -1.673437 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -4.116730 -9.055910 9.231621 8.453164 0.870730 5.881674 2.664027 -4.062178 4.511386 4.844007 -3.058139 5.709750 -5.549743 -1.312099 -1.647518 1.499326 -4.223414 -5.471106 -0.349831 -2.314728 -1.304607 -5.242173 -3.805096 6.919630 2.023361 2.668912 -3.317918 0.705664 -10.803915 -8.997642 1.171196 -0.235249 4.310843 -0.209862 2.182948 -13.761992 5.760398 10.436022 -1.026236 -10.413036 0.879382 -3.342545 -2.741645 0.985382 -2.124877 2.835123 1.669025 0.687185 -0.539564 1.269241 1.434985 0.174029 4.551335 11.530544 0.296123 9.197420 9.654084 0.348871 2.041866 1.075665 2.218016 -0.221493 4.832896 4.485850 -2.599923 -2.443973 -0.287908 0.173238 -5.947855 2.949274 2.071240 -4.367130 -3.402428 -3.019660 -6.641949 -1.904277 0.354822 2.330739 11.157786 -3.961832 11.589394 4.689193 5.807153 -0.499844 6.826578 -0.662802 7.608694 3.274082 -5.140713 1.005114 -7.033880 -2.702515 0.758524 5.132207 -6.504426 -2.594840 4.338280 -9.109481 -9.361128 4.961833 -0.237233 -2.557026 -4.467428 -0.703607 3.490101 2.051590 -3.069469 -7.881133 -5.854065 5.543213 -3.603592 -4.551397 -1.384651 0.955468 0.075613 0.378414 -6.756728 0.137725 6.378129 -4.404813 -3.173309 7.065644 -1.612703 4.585022 -1.784862 0.515966 -0.808383 2.458765 2.192733 2.307517 0.915733 -2.250588 -8.470153 0.317632 1.075567 1.550191 -4.320811 -2.099554 2.793430 3.418383 2.614305 5.197742 -3.265250 5.618844 4.188080 -0.396965 -3.149189 -8.076600 -2.562056 -6.924965 1.558475 -3.799413 -4.531457 0.533480 6.121725 1.072450 1.181044 5.428860 -4.037731 4.710260 0.229216 0.877346 1.230858 -2.303186 2.363784 -3.829623 -6.923787 4.665822 5.359400 2.987407 2.112440 -1.809898 -0.597925 -2.385312 -5.792805 3.846176 0.778799 0.562690 8.541526 5.068291 15.644143 -6.415421 1.830126 -0.902979 -1.987732 1.779592 -1.816566 -8.139167 2.873762 1.949168 2.068420 10.920361 -0.609495 -3.251542 2.343189 0.253114 0.962714 -6.206904 8.004504 -6.052777 -1.010355 -3.448878 -1.026645 -3.508854 -3.701497 -6.000357 -1.378641 10.049293 -7.066264 -8.270991 5.191418 -0.271655 2.558354 -11.032235 6.287680 -3.890243 7.164119 -2.507102 -2.707135 0.219823 1.419315 -1.935362 0.929576 4.151696 -6.973517 4.573594 5.933291 1.173947 1.676105 1.997848 2.877430 -1.941080 -0.772368 -6.228116 5.467655 0.439982 -2.945132 -1.916594 -3.570753 5.045321 0.147883 -0.648331 0.838520 6.415898 -1.022428 -0.785363 6.415882 0.473276 -4.037340 2.996670 0.877849 4.379738 -3.909694 -1.417830 -3.469350 0.827933 1.201131 3.696046 -9.141670 -5.086401 -6.159114 -8.102238 -2.518952 1.417460 3.374122 2.888337 0.240789 -10.807998 -6.362470 7.721786 -2.861758 4.603571 5.013278 5.756920 6.524753 4.595315 0.912738 -1.365586 -1.643996 0.864782 -4.235492 -2.281629 -2.409494 4.238441 -3.165567 6.267145 4.550237 -0.261187 4.084073 0.186534 4.552281 -5.066508 10.732979 5.003916 -6.444198 1.557531 4.292623 8.350963 -6.295721 -5.237324 -PE-benchmarks/matrix-chain-multiplication.cpp__main = -1.512399 -3.620406 3.515828 3.128086 0.356106 2.250656 1.389659 -1.064487 1.235103 1.581152 -1.230018 2.418631 -1.919992 -0.724684 -0.904340 0.278621 -1.273516 -2.294977 0.272932 -0.559622 -0.086003 -1.841722 -1.740720 3.139288 0.734108 0.336795 -1.100820 -0.228770 -4.565216 -2.440237 0.107101 -0.097011 1.642648 -0.041786 1.031322 -4.606024 1.723647 3.844039 -0.213455 -3.892149 0.337421 -1.190631 -0.803531 0.405059 -1.098677 1.150206 0.995740 0.292852 -0.447612 0.704737 0.532084 0.005992 1.822924 3.915592 0.532280 3.343403 3.227095 0.121434 1.201209 0.073792 0.932586 -0.467536 1.665576 1.355187 -0.796495 -0.700497 -0.689595 0.147533 -2.043984 0.645196 0.793233 -1.368993 -1.408871 -0.752934 -2.567761 -0.839801 -0.876254 0.710456 4.099360 -1.504016 4.533350 1.869941 2.534787 -0.343857 2.536121 0.046708 2.323220 1.242145 -1.735106 0.687997 -2.888919 -0.615618 0.054804 1.179198 -2.625372 -1.378404 1.768472 -3.156202 -3.551189 2.158152 -0.215087 -1.106063 -0.905107 -0.010538 1.052616 1.214576 -1.561462 -2.918050 -1.969625 2.166530 -1.077748 -1.689927 -0.173470 0.460276 0.318255 -0.444996 -2.251500 0.257393 2.720668 -1.657048 -0.608664 2.739320 -0.476598 2.091397 -0.625862 -0.084425 -0.255146 1.199286 1.265344 0.510961 -0.040372 -1.500704 -3.471060 0.463051 0.350710 0.754296 -1.673176 -0.680340 1.392331 1.504407 1.583763 2.047804 -0.584298 1.861824 1.280109 -0.193310 -1.232148 -3.256291 -0.897097 -2.012867 0.337307 -1.241116 -1.555025 0.700327 2.205951 0.425598 0.315715 1.861083 -1.011428 1.779941 0.068937 0.109061 0.161733 -0.882716 0.844692 -1.263835 -2.492876 1.916126 2.097527 1.584820 0.850067 -0.615443 -0.026602 -0.656518 -1.876566 1.105802 0.696270 0.386412 3.471042 1.939712 4.091032 -1.744486 0.020858 -0.664454 -0.768173 0.534487 -0.763293 -3.059229 1.173489 0.656262 0.069987 3.708308 -0.371015 -0.930791 1.453841 -0.101682 0.374607 -2.388394 2.694825 -2.158606 -0.424362 -1.338846 -0.284582 -1.470876 -1.307501 -2.520529 -0.985270 3.706046 -2.441716 -2.684640 1.122620 -0.211429 0.798846 -3.674715 2.261908 -1.347178 2.595222 -0.376727 -1.019040 0.033209 0.734772 -0.489837 0.026106 1.589729 -2.582799 1.651316 2.113986 0.430173 0.174168 1.032928 1.150834 -0.770551 -0.341185 -2.212250 1.683400 -0.070924 -0.991345 -0.239059 -1.214534 1.798980 0.333579 -0.193620 0.688434 1.976332 -0.252879 -0.249293 2.211718 -0.113870 -1.454404 0.389269 0.132560 1.965064 -1.582676 -0.493288 -1.761172 0.400831 0.718494 0.848233 -3.469886 -1.898378 -2.674235 -2.798362 -0.667074 0.068884 1.113660 1.113951 0.064183 -4.107056 -2.572640 2.705607 -1.129062 1.336122 2.135282 1.865145 2.763095 1.472806 0.343936 -0.463866 -0.345945 0.575005 -1.423233 -0.513305 -0.887406 1.200898 -1.732609 2.444670 1.803636 -0.105098 1.569287 0.157857 1.781958 -2.027262 4.184992 1.963998 -2.824988 0.391768 1.560151 2.613181 -2.472797 -1.976787 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = -1.251340 -4.036097 4.577168 4.095025 0.436404 2.228289 1.779498 -1.416985 1.393264 2.208104 -1.224628 2.747912 -2.494171 -0.827641 -0.599265 1.153252 -1.865471 -2.565795 -0.107721 -0.776882 -0.167800 -1.764319 -1.627805 3.304405 1.394346 0.231891 -1.465280 -0.350701 -4.944944 -3.504235 -0.061542 -0.185029 1.976842 -0.168061 1.092274 -4.801275 2.620509 4.796127 -0.460322 -4.222017 0.605268 -1.007457 -1.080070 -0.089224 -1.161475 1.288375 1.142107 0.131608 -0.394120 1.076070 0.517500 0.127480 2.665910 4.486445 0.536061 3.858642 4.322605 0.253245 1.258286 0.019464 1.186070 -0.420518 1.701119 1.119493 -0.572596 -1.172704 -0.856082 0.044930 -2.165928 0.699400 0.883760 -1.493440 -1.801678 -1.059663 -3.263575 -0.845076 -0.923918 0.951054 4.737987 -2.336175 5.088646 2.443124 2.326288 -0.103008 2.454569 0.113633 2.245822 1.579355 -1.662659 1.006517 -3.104063 -1.289040 0.388022 1.719277 -3.140855 -2.160494 2.260130 -3.862073 -4.215363 2.460632 0.098760 -1.346317 -1.246477 -0.382108 0.844842 1.291281 -1.667568 -3.133736 -2.091447 1.948910 -0.805108 -2.004192 -0.239981 0.671963 0.275787 0.100113 -3.348154 0.390429 2.906820 -2.021797 -0.794375 2.730174 -0.471934 2.482904 -0.862056 0.101805 -0.465880 1.327374 1.437402 1.210063 0.154837 -1.142041 -3.374305 -0.346099 0.738396 0.950876 -1.662303 -0.483620 1.150995 1.697652 1.784842 2.801807 -0.501602 2.448402 0.974987 -0.280951 -1.469873 -3.617826 -1.754941 -2.334517 0.844222 -1.496492 -1.848642 0.680638 2.459436 -0.131074 0.372349 2.527619 -1.142060 1.594632 0.111465 0.183804 0.327665 -1.562126 1.019788 -1.386702 -2.878268 2.249061 2.504224 1.730098 1.045176 -0.569879 0.302648 -1.016550 -2.058108 0.845514 0.062864 -0.611269 3.789805 2.106832 5.195374 -1.586751 0.267594 -0.526637 -0.760488 0.744713 -0.644034 -3.624973 1.176602 0.562713 0.389659 4.313577 -0.156075 -1.385948 1.975052 -0.415826 0.134141 -2.474748 3.292239 -2.403129 -0.409883 -1.658972 0.091749 -1.510390 -1.460867 -2.670943 -0.586503 4.210730 -2.821474 -2.899062 1.291071 0.980169 0.774167 -4.130602 3.566606 -1.450059 3.108661 -0.282325 -1.367809 0.629797 0.514569 -0.865346 -0.438083 1.855323 -2.826535 1.577596 2.110546 0.460763 0.033876 1.048601 1.274525 -1.027124 0.092462 -2.613768 1.988561 -0.052673 -1.575089 -0.687395 -1.218055 1.959822 -0.047476 -0.338159 0.200375 1.834148 -0.218633 -0.393692 2.189171 0.376452 -1.846273 1.016950 0.573805 2.383029 -1.861928 -0.288612 -1.775158 0.499224 0.616776 1.830729 -3.920981 -2.056866 -2.704150 -3.135919 -1.148738 0.753232 1.598331 0.880957 -0.207871 -4.361674 -3.277356 3.394465 -1.244228 0.669473 2.673461 2.321199 3.111053 1.525257 0.548661 -0.628537 -0.465769 0.769132 -1.168328 -0.866239 -0.831964 1.650369 -1.869467 2.200734 2.359000 -0.113851 1.818471 -0.345734 2.128081 -2.279990 4.931142 1.976857 -3.266937 0.746299 2.847480 3.300589 -3.136304 -2.226837 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = -1.047322 -2.538774 2.830195 2.490913 0.272269 1.481043 0.905244 -1.096644 1.389584 1.568617 -0.684907 1.550766 -1.723164 -0.041438 -0.568229 0.894674 -1.277512 -1.815934 -0.056734 -0.764899 -0.613109 -1.382447 -0.614728 1.609079 0.778853 -0.055677 -1.169101 -0.232229 -2.867458 -2.251375 0.269003 -0.334539 1.312210 -0.676854 0.437696 -4.355647 1.689104 2.546974 -0.445653 -2.851788 0.385919 -1.055939 -0.340295 0.047913 -0.836441 0.545084 0.664057 0.292689 0.179606 0.681161 0.622007 0.248327 1.138603 4.047026 -0.128724 2.387473 2.360497 0.126999 0.173720 0.313739 0.810994 -0.172128 1.382900 1.112573 -0.511542 -0.826319 -0.396624 -0.229392 -1.773054 0.895706 0.285062 -0.938831 -1.055998 -0.695622 -1.792626 -0.757534 -0.539132 0.914536 3.304137 -1.676067 2.956710 1.190027 1.570193 0.146357 1.735144 -0.012726 1.940123 0.925824 -1.327401 0.199788 -1.365399 -0.454117 0.173424 0.905778 -1.563534 -1.769560 1.438530 -2.016369 -2.760653 1.665664 0.050123 -0.476249 -1.406311 -0.552317 1.030722 1.044748 -1.417027 -2.308306 -1.633048 1.234582 -0.495180 -1.304169 0.019405 -0.126536 -0.043876 -0.287798 -2.167264 -0.136409 1.599585 -1.529124 -0.898850 2.102266 -0.593774 1.392294 -0.420507 0.254070 -0.318063 1.307648 0.694327 0.928257 0.058844 -0.412059 -2.557107 0.059057 0.515795 0.672064 -0.918933 -0.161991 0.463111 1.003533 0.403514 1.372415 -0.555212 1.623830 1.397764 -0.157983 -1.270371 -2.097978 -0.396374 -2.044090 0.444547 -1.434137 -1.033473 0.701361 1.835763 0.515440 0.497857 2.143130 -1.196685 1.490125 -0.115131 0.018338 0.571867 -0.724167 0.886712 -1.109449 -2.053723 1.261828 1.721149 0.905115 0.597504 -0.671667 0.049615 -0.957628 -1.405522 0.686094 0.629478 -0.215338 2.244154 1.304186 3.679823 -1.962951 0.380987 -0.066832 -0.543220 0.530811 -0.633117 -2.610310 0.668725 0.537390 0.102037 2.600144 -0.187776 -1.303465 1.006439 -0.315533 0.348278 -1.625483 1.675254 -1.700364 -0.370973 -1.092235 -0.061247 -1.045872 -0.882489 -1.494574 -0.488216 2.867129 -2.129570 -2.076417 1.454982 0.054748 0.753621 -3.168885 2.452281 -1.131518 2.026427 -0.682089 -0.742851 0.008958 0.848926 -0.491640 0.293745 1.324135 -1.557832 1.072739 2.157011 0.417107 0.494501 0.653050 1.257846 -0.412670 -0.015951 -1.470746 1.709640 -0.150910 -1.000035 -0.335069 -1.033578 1.227817 -0.021553 0.095734 0.655137 1.591449 -0.292359 0.250313 1.814860 0.438639 -1.243726 0.946893 0.051367 1.725265 -1.236369 -0.146228 -0.990133 0.533674 0.071523 1.089733 -2.670541 -1.730956 -2.163008 -2.090156 -0.591371 0.595819 0.675617 0.265933 0.029261 -2.831852 -1.757237 2.019452 -1.021733 1.221668 1.626134 1.570749 2.084383 1.584918 0.009440 -0.528905 -0.365381 0.086130 -0.982568 -0.569990 -0.664978 1.053406 -1.369317 1.595746 1.412128 -0.024753 0.993626 0.222379 1.143383 -1.439549 3.115695 1.510244 -1.641976 0.807728 1.708243 2.512238 -1.481388 -1.550453 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -5.281502 -8.406655 7.883914 7.170531 1.392410 5.940457 2.573933 -3.547683 3.119165 6.069251 -1.838088 5.239242 -5.108436 -1.882029 -1.130464 0.954693 -2.120201 -5.108059 -0.541733 -2.765047 -1.495603 -4.155480 -4.644396 7.164211 1.368187 -2.068419 -3.225343 0.657570 -10.396107 -8.252326 -1.394625 0.243022 3.911312 -4.053160 2.063888 -12.801186 5.121296 9.996060 -0.783733 -8.739978 0.742122 -3.374614 -1.878368 2.379486 -3.700990 1.788313 1.682939 -1.829566 -0.795107 1.144138 2.960532 0.969463 3.949373 12.187898 1.109497 8.776652 8.233486 0.294052 1.143609 1.580174 1.824260 -0.871199 4.613532 2.513421 -2.240127 -1.639469 -0.038322 1.447182 -4.889082 1.702034 1.241813 -5.715406 -1.474369 -2.911934 -6.661132 -3.119897 2.737216 0.698804 9.394899 -3.973107 10.249832 4.255086 4.556576 0.956353 7.396403 -0.735961 7.516586 2.480831 -4.305523 1.433318 -4.019784 -1.012971 0.553757 5.805565 -6.248262 -2.761544 4.546852 -7.361459 -9.386393 5.822623 -0.739647 -2.602306 -5.737890 -2.279925 2.950390 2.124704 -3.889264 -7.549429 -6.231361 6.145583 -2.939696 -4.645865 -0.786387 -0.575773 0.973170 0.191856 -5.872665 0.474764 6.649764 -4.038040 -4.462549 7.420338 -1.677192 5.125175 -1.332306 0.887383 -0.770324 2.165818 1.531675 2.245355 -1.281447 -2.447452 -8.997415 -1.487097 -0.081502 -0.528337 -3.140039 -1.404559 3.070875 3.517040 2.914743 7.128435 -2.578945 6.460219 3.719378 1.009840 -2.364846 -7.239808 -1.984012 -5.796923 0.796537 -3.441403 -5.100360 1.363396 5.555677 0.637206 -0.053262 5.363005 -1.697971 4.690995 0.174499 -0.606831 1.066484 -5.058273 2.334381 -3.732470 -6.951186 4.215017 6.021290 3.838644 1.794784 -1.416087 -0.606011 -1.482356 -5.518952 1.523631 0.732246 0.688095 8.265827 5.106433 15.514143 -6.294720 1.764970 -2.039690 -2.427827 2.404330 -3.123142 -7.452991 0.155852 2.756416 -0.278984 10.580127 -0.718229 -3.818428 2.465385 -0.302737 1.209316 -6.165561 7.438394 -5.612316 0.033866 -2.523552 -2.684868 -3.723039 -3.058270 -6.133223 -2.320444 9.066493 -7.392069 -8.174533 4.522315 1.214160 2.102767 -10.629540 6.882045 -3.207961 7.247285 -2.634184 -2.601568 0.084415 3.708533 -1.189490 2.426234 3.864874 -6.841446 4.262684 6.046176 0.647885 2.432239 1.627417 2.887631 -1.839954 -1.416599 -6.376488 5.596372 0.123159 -3.264657 -2.029029 -3.493296 4.598697 1.078285 -0.104125 -1.271817 5.474344 -2.684593 -2.341004 7.095514 -0.515874 -3.116200 2.890266 0.604424 4.417886 -3.771623 -0.807934 -3.776079 1.198828 2.186014 2.691184 -8.784208 -2.899669 -6.424566 -6.976560 -1.398338 3.537181 2.080585 2.852778 0.037705 -9.774080 -5.909081 8.430605 -3.048442 4.681047 4.948201 6.270359 6.684207 4.344467 2.271432 -1.147758 -2.043732 -0.386514 -4.127566 -2.515418 -0.864267 3.293776 -3.423665 6.744773 2.758985 1.013420 4.474290 1.497606 1.249774 -5.014396 9.053577 4.567603 -5.380522 1.467796 5.290152 7.013312 -7.781898 -4.729187 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -0.758258 -3.783593 4.063821 3.790532 1.010014 1.919859 2.088489 -1.429296 2.305856 2.272612 -1.123989 2.323197 -2.266577 0.180546 -0.744995 1.516991 -1.752206 -2.842526 0.536432 -0.599115 -0.887671 -2.256054 -0.723251 1.979805 1.048743 0.430366 -1.486822 -0.843611 -4.219703 -2.976836 1.196136 -0.783851 1.857565 0.268611 0.604066 -6.090384 2.231917 3.437131 -0.560105 -4.141275 0.294050 -1.420207 -0.638928 -0.037142 -0.269146 1.293748 1.277462 1.453244 0.129881 1.493982 1.148824 0.162083 2.097209 5.097466 -0.393073 3.235786 2.986980 0.149925 0.652377 0.399402 1.346915 -0.098828 2.256361 2.053034 -0.499477 -0.946670 -0.932152 -0.588460 -3.187345 1.280167 0.922557 -1.061678 -2.164641 -0.453619 -1.702508 -0.799687 -3.705915 1.269053 5.044153 -2.238015 4.857216 1.975231 2.833368 -0.698206 2.144829 -0.044567 2.685132 1.470655 -2.158086 0.240376 -2.974508 -1.197055 0.112413 0.452170 -2.250124 -2.270729 1.646809 -1.857476 -3.501741 2.299870 0.066873 -0.291028 -1.413846 -0.086583 1.585859 1.432792 -2.054246 -3.348254 -2.317607 1.352130 -0.960769 -1.811441 -0.178583 -0.104081 -0.333238 -0.663009 -2.909615 -0.726119 2.281214 -2.339549 -0.872624 2.900004 -0.784903 1.939621 -0.811802 -0.343948 -0.039276 1.751856 1.460843 1.485477 1.253621 -1.164212 -4.569380 1.265808 1.079963 1.918428 -1.130247 -0.114241 0.685945 1.641202 0.688529 1.801113 -0.109365 1.969636 2.341851 -0.570068 -2.199148 -3.036034 0.201944 -2.349585 1.207504 -2.085281 -0.601472 0.399431 2.830505 0.655652 1.109948 2.443044 -2.493191 2.424518 -0.122573 0.657046 0.737343 0.009376 1.088600 -1.428917 -2.701872 1.859200 2.616775 0.622785 0.966432 -1.541405 0.284812 -1.362385 -1.947384 1.056022 0.725112 -0.520103 3.077433 1.482057 4.955164 -2.518306 0.228942 -0.154484 -0.519163 0.634167 -0.450295 -3.619960 1.983862 0.291072 0.513748 3.173524 -0.393043 -1.585729 1.580335 -0.277668 0.089230 -2.007246 2.180861 -2.270837 -1.318158 -1.344020 0.601046 -1.437827 -1.219749 -1.699471 -0.093686 4.203187 -1.880856 -2.634113 1.909690 -1.422520 0.361145 -4.092915 4.228594 -1.700531 1.438330 -0.989025 -1.245030 -0.249206 1.279805 -0.590164 -0.027161 1.969223 -1.937732 1.612807 3.595122 0.686903 0.463723 1.446839 1.637186 -0.352131 -0.104378 -1.555397 2.325446 -0.218965 -0.704631 -0.457338 -1.539179 2.061448 -0.136554 -0.302016 1.990297 2.293647 -0.175570 0.595576 1.970380 0.617580 -2.139018 1.075014 0.187132 2.310928 -1.746666 -0.151702 -1.333074 -0.102890 -0.345954 1.642440 -3.440160 -2.489327 -2.235335 -2.892223 -1.103975 0.451321 1.502467 0.288375 0.285993 -4.293121 -2.464035 2.003155 -1.310950 0.519865 2.376877 1.828755 2.873628 1.822803 -0.136504 -0.669480 -0.930126 -0.101728 -1.236773 -0.644120 -0.723581 1.336597 -2.163755 2.403745 2.050841 -0.238484 0.853914 -0.287106 2.999252 -1.925081 4.622657 2.104789 -2.174980 0.719968 1.972368 4.013932 -1.975147 -2.349194 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.484798 -0.812237 0.574717 0.614306 0.958620 0.036962 0.390664 -0.150593 0.992737 0.635068 0.015953 0.485790 -0.678480 0.386057 -0.081710 0.419595 -0.153674 -1.144299 0.448122 0.155870 -0.897351 -0.363192 -0.212880 -0.226322 -0.164083 0.220302 -0.686270 0.290147 -0.957331 -1.277813 0.248959 -0.663987 0.340189 -0.409581 -0.109540 -1.612876 0.562120 0.825810 -0.217280 -0.775243 -0.133268 -0.708343 0.094552 -0.119337 0.320504 0.460887 0.788765 0.057447 -0.004002 0.542429 0.684938 -0.032819 0.161340 0.838571 -0.401576 0.682916 0.415359 0.044226 -0.537918 0.283028 0.292198 0.096770 0.882833 0.468247 -0.551105 0.202419 0.402968 -0.334290 -1.192457 0.439766 0.226580 -0.476868 -0.010313 0.064237 -0.265064 -0.349947 0.034314 -0.334091 1.056443 -0.422651 1.112648 0.317354 0.564064 -0.216932 0.328794 -0.375912 1.029353 0.271593 -0.789710 -0.179992 -0.302502 -0.428345 -0.296477 0.908351 -0.002679 0.357764 0.088455 -0.273466 -0.450102 0.207562 -0.244028 0.717758 -1.265492 0.089064 0.706774 0.319017 -0.514597 -0.594059 -0.817966 -0.048989 -0.548138 -0.155232 -0.078941 -0.523013 -0.711483 0.039854 -0.787403 -1.137436 0.496046 -0.862859 -0.524294 0.769934 -0.374849 0.742798 -0.260454 -0.353234 0.547056 0.364221 0.331149 0.773147 -0.019499 -0.212087 -1.334799 -0.384050 -0.106182 0.602032 -0.037025 0.002674 0.054575 0.290200 -0.473597 0.071354 -0.512784 0.422996 1.353513 -0.204110 -0.873126 -0.290733 0.442272 -0.766541 0.422945 -0.750149 -0.016898 -0.346458 0.952316 -0.062635 0.563414 1.352138 -0.726154 0.284459 0.216636 -0.108824 0.651819 -0.043681 0.309996 -0.465741 -0.613226 0.342255 0.697446 -0.489163 0.228814 -1.167700 0.052266 -0.551800 -0.710578 0.150950 -0.149861 0.030817 0.245468 -0.107909 1.698997 -1.182108 0.500711 -0.304589 0.066627 0.417443 0.165112 -0.416528 0.327348 0.051329 0.474296 0.408457 -0.057312 -0.918112 0.227716 0.256359 -0.214758 -0.523282 0.455106 -0.456161 -0.017436 0.166834 0.293760 -0.365329 0.127011 -0.178094 0.097484 1.078165 0.101273 -1.057067 0.838455 -0.410360 0.393698 -1.305065 0.438764 -0.526595 0.223488 -0.659306 0.121495 -0.054564 0.402894 0.409653 0.499255 0.440733 0.119377 0.159554 0.942375 0.315478 0.680494 0.671750 0.389328 0.547013 -0.076166 0.375220 0.459119 0.162830 -0.067843 -0.117226 -0.557965 0.485949 0.299885 -0.279892 0.271355 0.741047 -0.184927 0.397261 0.439084 0.122047 -0.761870 0.250485 0.258025 0.424166 -0.288832 0.149133 -0.044777 -0.039547 -0.463496 0.670455 -0.339545 -0.759014 0.087125 -1.493352 -0.438141 0.692862 0.373151 -0.122745 0.559239 -0.506893 -0.005906 0.920285 -0.152270 1.296372 0.175156 0.540465 0.557147 0.155553 -0.248995 -0.370013 -0.680146 -0.834486 -0.168472 0.089827 0.089798 0.189426 -0.285463 0.764335 0.016259 -0.402022 -0.591509 -0.289338 0.729846 -0.446797 0.493232 0.302615 0.120411 0.043153 0.079384 1.617989 -0.382650 -0.749659 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -6.892360 -13.084526 11.075350 10.320912 5.204180 8.417412 6.927007 -4.167019 4.529339 9.613189 -4.086696 9.329628 -6.420990 -2.512952 -4.917717 1.758572 -0.938034 -8.466942 1.790017 -1.432778 -1.212750 -7.213579 -6.261466 10.190333 2.019871 -1.499492 -4.015165 -0.415277 -17.761460 -14.652059 -1.433545 -0.352108 4.973575 -4.353551 2.001648 -14.512414 6.453192 15.884185 -0.536119 -12.945097 1.120519 -4.140748 -4.337636 5.091935 -2.623283 4.974927 3.733572 -1.483291 -2.322940 3.779677 7.174254 1.254844 8.752089 12.969366 1.751765 12.816712 10.573064 1.014929 3.668563 1.637218 3.055971 -1.202276 7.316301 5.346950 -2.281914 -0.718961 -1.830962 3.429808 -9.015502 1.594492 1.309374 -8.258683 -3.823116 -1.763393 -7.559260 -2.748519 -3.631125 -1.736927 14.770013 -3.074684 18.062236 6.897233 8.334308 -3.036308 8.957473 -1.294023 9.046334 4.258203 -6.820862 0.901939 -7.296265 -0.506679 -0.466765 8.869436 -10.182435 -0.284347 6.652313 -9.133124 -12.352475 7.536947 -1.663942 -3.636057 -4.738742 0.689650 3.485075 2.825888 -5.459763 -11.411186 -8.551199 7.941078 -4.393921 -6.857993 -2.040977 -0.874784 1.085338 1.443499 -6.699642 -0.926507 9.760505 -6.874300 -5.204502 9.875763 -0.206459 8.132766 -2.544733 -0.444006 1.175032 1.362739 3.995930 3.795467 0.308855 -4.889270 -16.623724 1.301247 0.791724 -0.400378 -6.449933 -1.171301 5.307952 5.401525 6.476961 9.951498 -3.782139 7.517746 7.232341 0.168952 -4.093408 -10.451616 -1.011048 -6.201959 2.137946 -4.377081 -5.861553 -1.428214 8.396180 -1.518218 0.749657 6.503565 -4.085040 6.921677 2.114372 -0.214848 0.680482 -6.700773 2.435972 -4.764868 -10.139423 7.252111 10.097006 3.661905 2.499620 -2.654109 -0.589187 -1.469358 -6.861262 3.933159 0.238367 1.372753 12.103155 5.786518 21.036419 -6.089477 0.757003 -3.869453 -2.728162 3.234916 -3.615709 -10.849165 3.769860 2.411006 2.222196 14.097632 -0.852449 -3.486433 5.157939 -0.134936 0.824108 -9.342986 12.255594 -8.040189 -2.015395 -2.210154 -3.679269 -3.912568 -3.835296 -7.676085 -2.229158 13.022249 -7.200410 -10.761297 4.584576 -1.860476 -0.032280 -13.787321 10.376372 -4.995085 6.834788 -2.097435 -3.156067 -0.295663 5.449295 -0.581028 1.364450 5.689333 -9.390344 8.328293 10.013446 0.744523 2.090057 3.984689 2.996827 -2.541713 -2.546299 -7.257711 6.523690 1.226174 -3.550447 -2.385573 -5.246643 6.930575 1.255691 -2.168355 0.921426 8.304887 -4.713411 -3.326391 7.932533 -0.282950 -5.533103 3.258410 1.169696 6.250486 -5.224294 -1.953017 -5.653041 -0.827648 2.444851 3.971132 -11.584852 -4.029722 -7.154984 -11.809006 -1.840950 1.604073 5.830277 3.963302 0.901787 -15.195630 -9.455362 11.941579 -3.448177 4.872738 7.561331 7.921165 8.816949 3.486170 3.566797 -0.236824 -6.044277 -0.587875 -5.415306 -3.346548 1.079791 2.796049 -5.498967 10.301577 2.983808 0.574421 4.877243 1.553160 3.110168 -7.103295 13.945183 6.551693 -7.042250 1.334160 3.455121 11.166037 -12.489130 -7.250838 -PE-benchmarks/Nearly_sorted_Algo.cpp__main = -0.442693 -2.503035 3.700267 3.059390 -0.221161 1.354717 0.941807 -1.663550 2.112816 1.019475 -0.928148 1.112083 -2.124967 0.276964 -0.578217 1.378917 -2.435077 -2.089202 -0.254071 -1.036907 -0.825902 -1.845651 0.439646 1.229479 1.198398 1.406107 -1.352999 -0.360412 -2.272289 -2.437284 1.650374 -0.576985 1.659156 0.953986 0.297128 -5.836701 2.479892 2.331544 -0.746341 -3.083955 0.649296 -0.913897 -0.626511 -0.521927 -0.879553 0.835250 0.521069 1.681550 0.640583 1.026283 0.330292 -0.026299 1.250219 4.523460 -0.544865 2.408296 2.402680 0.206622 0.049521 0.377996 0.867241 0.264460 1.440153 1.787237 -0.442644 -1.141588 -0.315260 -1.137390 -2.639209 1.715120 0.191674 -0.649524 -1.656042 -0.835029 -1.466455 -0.341936 -1.637186 1.943101 4.010959 -2.253429 3.105235 1.086907 1.638742 -0.310893 1.021248 -0.043923 1.907215 1.179707 -1.336069 -0.234282 -2.018551 -1.326491 0.331696 -0.264497 -1.670136 -2.686338 1.596035 -2.258619 -2.845654 1.371635 0.474808 -0.584114 -1.388049 -0.435296 1.380149 1.062342 -1.329280 -2.481546 -1.510647 1.034551 -0.562219 -1.023895 -0.280912 0.559577 -0.520626 -0.473356 -2.910335 -0.150067 1.167192 -1.722856 -0.322247 2.104305 -0.834866 1.020030 -0.367441 0.351521 -0.602077 2.203956 0.764727 1.124503 0.989509 0.086742 -1.767395 0.783013 1.142814 1.642907 -0.870428 -0.476405 0.067095 1.004983 -0.438323 0.679792 -0.596086 1.074960 1.980724 -0.622337 -1.982705 -1.932405 -0.715371 -3.166933 0.761868 -2.058337 -0.648156 1.474170 2.131969 1.173067 1.140546 2.773404 -2.576904 1.672670 -0.389281 0.286202 0.623260 0.538541 1.088422 -1.232190 -2.231897 1.415796 1.295114 0.746141 0.641257 -0.995889 0.047629 -1.734160 -1.687640 1.326896 0.793786 -0.383097 1.866759 1.452779 3.479969 -2.172471 0.393292 0.759673 -0.606933 0.318412 0.003116 -3.155979 1.323101 0.268482 0.556613 2.628633 -0.177094 -1.234489 1.088114 -0.450174 0.228580 -1.718860 1.352655 -1.901577 -0.594483 -1.687027 0.502999 -1.024392 -1.021585 -1.181400 -0.411327 3.246800 -2.186277 -2.182331 2.235299 -0.589026 1.098324 -3.411097 2.840795 -1.412037 1.940913 -0.562709 -0.881857 -0.100627 -0.198755 -0.659354 -0.118897 1.193078 -1.047021 0.978435 2.984352 0.663970 0.169121 0.725152 1.732556 -0.489992 0.730817 -1.429886 1.960294 -0.342147 -1.077354 -0.134576 -1.098715 0.956136 -0.782283 0.077536 2.106897 1.992378 0.430758 1.274219 1.525779 1.208238 -1.610370 1.210913 0.188814 1.776968 -1.334378 -0.334683 -0.390760 0.811637 -0.619531 1.497259 -2.984107 -3.141965 -2.815841 -2.794255 -0.996792 -0.269780 1.264114 -0.309413 -0.008660 -2.874667 -1.959444 1.870152 -1.169300 1.566081 1.907952 1.504075 2.302190 2.352139 -0.924440 -0.549198 0.169873 0.590666 -0.927679 -0.391349 -1.588711 1.705617 -1.278131 1.254173 2.394724 -0.430163 0.954879 -0.706933 2.449655 -1.623251 3.749871 1.547066 -1.740792 1.293129 1.351283 2.667803 -0.193034 -1.737714 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 1.309759 -2.363648 5.744442 5.259955 -1.397314 1.521256 -0.149424 -3.995903 3.175719 1.007257 -0.451986 1.579510 -2.334373 1.892648 -1.016679 3.442318 -4.603809 -1.936632 -1.810991 -2.742404 -2.192900 -1.936073 1.354302 0.974554 2.297639 2.459843 -2.683963 0.013852 -1.550872 -3.707702 2.172300 -0.645802 2.167124 0.952556 1.017980 -7.953643 4.168260 2.958424 -1.297491 -3.818215 0.975570 -1.372060 -0.695967 -1.500593 -1.716086 0.833712 -0.894123 1.962068 2.191184 1.460110 0.437151 2.003329 2.109270 6.316740 -1.425807 2.802478 1.885363 0.044204 -0.577423 0.344476 1.326040 1.773027 1.629998 1.543089 0.518738 -3.458326 -1.227027 -1.365764 -2.941381 3.270130 -0.147485 -1.573796 -3.197665 -1.802468 -2.389672 -0.565629 -4.345784 3.975032 4.835807 -3.760170 2.034125 0.561204 0.366678 -0.121609 1.682686 -0.343866 3.594383 1.700521 -0.617583 0.347174 -0.495878 -1.980858 1.687097 -1.541005 -2.755752 -6.100507 2.091449 -4.235375 -3.906567 1.873254 2.232936 -1.092401 -1.984226 -1.957697 1.669947 1.080095 -1.874832 -2.932232 -0.646029 1.335013 1.167283 -1.849050 -0.477687 0.202541 -0.228090 -0.069522 -4.576692 0.321609 0.773434 -1.209576 -0.118264 2.734250 0.003849 -0.336331 -0.878251 0.841500 -1.299925 3.813969 -0.732820 2.967915 0.108720 2.372117 -0.475491 1.894594 1.867734 0.402278 -0.759034 -0.358705 -1.416602 1.508870 -2.157719 1.277357 -1.042374 1.544552 3.029342 -0.327451 -3.180583 -1.500259 -1.713776 -4.721469 0.816746 -2.800366 -1.709408 2.220381 2.902243 2.177806 2.308817 2.312802 -3.201072 0.978685 -0.365361 0.597979 2.687693 0.698384 1.554042 -1.687710 -2.994863 2.362082 0.657149 1.223090 0.676054 -0.472896 0.293324 -2.052948 -1.170960 2.143114 1.838230 -0.604048 2.675991 2.282511 4.257685 -1.904088 0.969909 1.840539 -1.347230 0.737389 -0.335050 -4.073477 1.376816 0.562559 1.231008 3.636741 -0.817344 -0.955839 1.336013 -0.601034 1.007686 -2.035514 0.755689 -2.434128 -0.637371 -2.704079 0.931925 -0.880160 -0.700130 -1.539783 -1.296760 4.457903 -4.719876 -2.038650 5.010321 -1.688698 1.708929 -3.743773 3.683784 -1.734470 2.163595 -0.752143 -0.904806 0.268051 -1.129515 -2.795954 0.666456 2.024305 -0.923685 -0.156257 4.323731 0.919415 -0.222675 -0.133133 2.828817 -1.049132 2.879731 -2.051288 4.496632 -0.490884 -0.584121 -0.527122 -1.366357 -0.469435 -2.524618 0.837951 3.300741 1.356123 2.097814 1.422484 1.587067 2.901505 -2.402092 3.221708 -0.334739 0.367749 -2.099784 -0.398758 1.172720 1.502173 -1.359107 2.012643 -3.952570 -4.152082 -5.738097 -2.168380 -0.831703 -0.430026 1.679396 -1.561299 -1.358408 -2.382770 -3.462440 3.633616 -1.597287 0.831782 2.607728 1.622980 2.684939 3.867172 -1.345809 0.562098 -0.722140 0.178164 0.371952 -0.764512 -2.552473 3.497365 -1.372420 0.681335 4.442684 -0.916136 2.056944 -0.593907 3.083009 -1.950313 4.230117 1.286868 -1.681236 2.254087 3.265463 2.821965 0.843803 -2.444306 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -1.365938 -5.299723 7.912435 6.613722 0.234201 3.504298 2.680283 -4.559588 5.157155 4.041590 -1.666046 1.084725 -5.180185 -0.210912 -0.442552 3.224296 -4.340840 -4.474480 -1.017604 -2.797708 -1.695366 -4.982680 1.746553 2.422707 2.527236 2.429386 -2.675450 -0.670413 -4.355555 -7.421004 4.113662 -0.805275 3.743794 2.507345 -0.024215 -12.669891 6.748664 5.682193 -1.727622 -5.829318 1.416454 -0.738214 -2.481485 0.768561 -1.956122 2.437190 0.542965 3.596442 1.414079 2.874339 2.941880 -0.867399 3.757864 9.615707 -1.270836 6.142747 5.003368 0.997824 0.599926 2.083278 1.251442 1.354680 3.248646 4.720356 -0.642670 -1.468010 0.402144 -1.793398 -7.087912 4.279713 -0.140118 -2.905244 -3.238679 -1.996447 -1.755764 -0.258289 -3.268117 3.303142 8.974900 -4.227290 7.537264 2.966712 3.196289 -1.658805 1.375154 -0.989629 4.122157 2.442495 -3.234894 -1.099667 -4.441924 -3.718491 0.628783 -0.036527 -4.489719 -4.364336 3.658936 -3.607666 -6.475625 2.828930 0.816839 -1.759590 -4.031842 -0.749086 3.184634 0.926325 -2.163943 -6.130303 -4.385068 3.146702 -2.179535 -1.940825 -1.886170 1.216334 -1.352416 0.293340 -6.257261 -0.603501 2.247022 -4.217392 -1.809477 4.447082 -2.004569 2.279140 -0.384776 1.160915 -1.307819 3.772727 1.721906 3.149010 3.409930 0.384602 -4.465168 1.788578 2.598627 2.537920 -0.980030 -1.272928 0.229535 2.140811 -1.153837 3.395717 -1.517453 1.987835 5.165741 -0.946431 -4.153379 -3.368567 -1.565719 -7.684628 2.648374 -4.838173 -1.370846 2.510008 4.604395 1.950662 2.355644 6.100280 -6.743862 4.079050 -1.092090 0.782020 0.382303 0.853977 2.163744 -2.675623 -5.545774 2.973479 3.615954 1.024666 1.414504 -2.462753 -0.641337 -3.865710 -4.412627 2.500099 -0.073982 -1.251509 3.340778 3.261981 11.196381 -4.710614 1.482436 2.086958 -1.334880 1.141646 0.158763 -7.420754 2.574270 0.441865 1.499514 6.752602 -0.254929 -2.368929 2.290439 -1.373280 0.138839 -4.418875 4.291961 -4.554401 -1.039555 -3.699341 0.184594 -1.961432 -2.524661 -1.650602 0.272109 6.910450 -3.535303 -5.204982 5.637757 -1.559654 0.968309 -7.244919 7.858563 -2.949233 2.987310 -1.649419 -2.466018 -0.712008 0.165873 -0.441352 -0.586781 1.724536 -2.397983 3.345231 7.764544 0.913184 0.371080 1.578583 3.520874 -1.281061 1.305616 -3.870922 4.774047 -0.396063 -2.595341 -0.898336 -2.664572 2.551773 -2.563181 -0.995069 4.087848 5.571249 -0.839269 1.747155 3.032523 2.632055 -3.257207 3.575168 1.592445 3.275016 -2.751878 -0.724409 -0.030230 0.691980 -1.760095 3.957762 -6.539151 -6.049638 -4.871186 -6.927122 -2.767253 -0.117802 3.962762 -0.476044 0.093867 -6.448450 -4.622189 5.073566 -2.670614 2.589239 4.278383 4.236533 4.966864 5.845443 -1.427084 -0.623414 -0.396515 0.984707 -2.818236 -1.732472 -2.519014 4.116212 -1.607707 3.215659 4.063370 -0.234955 2.351394 -2.822542 4.800860 -3.879070 8.088994 3.085941 -2.159929 3.384209 1.554468 6.087968 -1.287222 -3.421576 -PE-benchmarks/subset-sum.cpp__main = -1.322575 -2.569034 2.882818 2.338152 0.417194 1.517158 0.765008 -1.015841 1.548549 1.449100 -0.886601 1.681369 -1.592904 -0.094241 -0.768957 0.752734 -1.307213 -2.028390 0.154913 -0.702590 -0.621343 -1.472254 -0.742012 1.588453 0.671980 -0.159626 -1.223023 -0.057685 -3.119451 -2.360977 0.272990 -0.447613 1.237863 -1.050024 0.455396 -4.618436 1.724579 2.449096 -0.421269 -3.071327 0.337126 -1.162771 -0.313812 0.106199 -0.788045 0.580700 0.886992 0.310195 0.148486 0.692925 0.555473 0.168220 0.798289 4.220152 -0.120812 2.424217 2.407136 0.061091 0.071502 0.389679 0.831216 -0.358345 1.452306 1.274477 -0.706950 -0.745858 -0.225510 -0.222911 -1.822941 0.928996 0.246831 -0.955652 -0.862918 -0.610281 -1.956779 -0.763277 0.087407 0.873332 3.430153 -1.561713 3.096307 1.138828 1.954646 0.232450 1.794585 -0.022249 2.107779 0.959058 -1.546609 -0.050356 -1.574789 -0.339287 -0.007226 1.021750 -1.399078 -1.490783 1.397779 -2.363250 -2.741825 1.644827 -0.058318 -0.344852 -1.635210 -0.443686 1.343966 1.145258 -1.375012 -2.324587 -1.719750 1.264713 -0.799482 -1.236383 0.170212 -0.313368 -0.116799 -0.297456 -2.151813 -0.251971 1.743808 -1.553899 -1.025865 2.207165 -0.758449 1.430893 -0.441654 0.304322 -0.285769 1.298115 0.725416 0.785732 -0.048393 -0.592450 -2.904853 0.077316 0.393731 0.694956 -1.086414 -0.156793 0.575031 0.965063 0.283239 1.148658 -0.933707 1.599149 1.533485 -0.234202 -1.386101 -2.209062 -0.277573 -2.106324 0.342976 -1.480079 -1.239053 0.698167 1.917740 0.725603 0.553440 2.383336 -1.266741 1.674514 -0.178395 0.014213 0.546347 -0.927411 0.935200 -1.187176 -1.979801 1.259390 1.787556 0.847090 0.667735 -0.899326 0.071787 -1.126685 -1.546805 0.882822 0.836101 0.121415 2.236316 1.249977 3.587257 -2.397149 0.247478 -0.050343 -0.490359 0.423608 -0.632491 -2.586344 0.644002 0.593811 0.321103 2.695487 -0.105337 -1.459897 0.856139 -0.137559 0.405954 -1.622508 1.611531 -1.737382 -0.318432 -0.895450 -0.202139 -1.240905 -0.824081 -1.624159 -0.763747 2.887812 -2.137652 -2.513641 1.514504 -0.135464 1.033747 -3.520430 2.028516 -1.278304 2.347089 -0.625927 -0.472565 -0.175614 0.790958 -0.429300 0.543009 1.333657 -1.588578 1.297647 2.178516 0.494168 0.696582 0.674278 1.269467 -0.434945 -0.141893 -1.327799 1.534867 -0.235156 -1.095910 -0.291052 -1.052176 1.294592 0.148603 0.163500 0.505470 1.700592 -0.373226 0.472860 2.055225 0.345709 -1.318382 0.810257 -0.055238 1.896468 -1.207064 -0.299913 -1.082461 0.610901 0.129757 0.922319 -2.746217 -1.952124 -2.471088 -2.551681 -0.519349 0.401357 0.511462 0.286311 0.188494 -2.971300 -1.561095 2.125966 -0.916931 1.933621 1.616733 1.544827 2.110170 1.593035 -0.224329 -0.722080 -0.329861 -0.009634 -1.217865 -0.583174 -0.846854 1.059944 -1.451700 1.704907 1.452004 -0.107752 0.838131 0.472690 0.873486 -1.437207 3.163315 1.680418 -1.738730 0.693362 1.368419 2.728481 -1.462081 -1.633577 -PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -13.974359 -17.240389 14.697422 12.721254 5.691645 12.731564 3.598023 -5.405060 6.376654 15.132763 -4.482301 12.059302 -9.011393 -5.194039 -0.844138 1.373944 -1.099017 -11.274480 1.059411 -4.040858 -2.811253 -8.429135 -11.450089 14.874799 1.445022 -9.134104 -6.518012 3.080819 -22.060948 -18.332779 -6.631022 0.064879 7.166135 -14.799912 4.659136 -23.438104 10.446794 19.970161 -0.324849 -18.519229 0.306146 -6.090889 -2.918537 8.235986 -8.014123 3.562978 5.916471 -6.163465 -2.786120 3.344398 7.637482 0.765466 6.825742 24.182993 4.681038 17.985774 16.343778 -0.148083 1.252089 3.361626 3.769436 -4.165718 9.931273 4.903527 -5.604504 -1.291014 1.613188 5.815615 -9.950484 1.538221 2.381849 -13.678648 0.066424 -5.645838 -11.693023 -6.492215 14.529136 -1.454199 18.577130 -5.699211 21.194505 9.074921 10.985568 3.167713 15.548358 -2.390239 15.438345 4.872794 -10.521765 1.117546 -6.657918 -0.544527 -0.058486 14.464536 -11.614291 -0.216191 8.294928 -13.089986 -18.556338 12.545783 -3.272464 -4.020173 -13.845093 -4.554359 8.318122 5.168410 -7.092863 -14.894988 -13.492095 12.764489 -8.227114 -9.896998 -1.903469 -4.005244 1.564944 2.181987 -10.425757 -0.755174 15.146639 -8.949088 -10.873178 14.792264 -4.960894 12.128285 -3.065932 2.213313 0.204709 2.148920 4.977552 3.716933 -4.282256 -7.728405 -19.589239 -3.137114 -2.798644 -4.838405 -6.233236 -1.338701 7.877657 6.685792 7.087654 16.082667 -7.722777 14.005134 7.959129 3.676807 -4.804327 -14.844884 -3.567935 -9.940759 1.381568 -6.949609 -11.779562 1.991484 11.012626 -0.218757 -1.742888 12.183160 -2.475048 10.919414 0.346622 -1.343382 0.978003 -14.061971 4.463766 -8.072857 -13.151485 8.492164 15.324933 6.018591 4.202484 -4.518689 -0.885930 -2.726721 -11.410954 2.623011 1.145315 4.069549 15.999247 8.283455 34.904754 -12.364439 1.876452 -5.656276 -3.534142 4.652482 -7.643037 -14.523835 -2.376865 5.541688 0.753940 22.763195 -0.641766 -9.648596 4.210213 0.632092 2.255355 -12.189804 17.174253 -11.254550 2.113731 -1.470095 -8.338154 -8.595551 -4.957677 -13.131338 -4.854403 17.619109 -13.510972 -19.818591 7.192480 2.108250 4.975869 -22.644187 12.612277 -6.972788 16.568165 -4.963581 -4.156036 -0.986180 7.890883 -0.049101 7.055392 7.796125 -12.307008 9.945855 11.000118 0.525062 5.935796 3.823730 3.914647 -3.399916 -4.900416 -11.188264 9.802516 0.318637 -5.964260 -4.902859 -7.089230 10.392854 4.276915 -2.091768 -8.359054 11.296082 -9.663754 -5.677921 14.666617 -3.634085 -6.396553 6.010424 1.267019 10.579882 -7.206219 -1.888544 -8.957744 2.538043 6.004591 4.689867 -17.390878 -3.379240 -12.439922 -16.066847 -3.025827 9.552633 3.036496 6.201901 1.123738 -18.505210 -10.436518 19.782946 -4.654276 15.600508 9.490714 13.517584 13.408258 7.144962 5.692723 -4.134738 -6.053649 -4.071101 -10.630683 -5.675236 0.543752 4.729874 -6.606775 14.906834 2.973294 3.304190 7.550744 3.939638 -4.718416 -9.744337 16.390103 10.244971 -9.803920 1.367130 7.143687 15.380246 -20.306402 -9.955510 -PE-benchmarks/binomial-coefficient.cpp__main = -1.624754 -2.860942 2.866972 2.344282 0.033746 1.862123 0.810053 -0.885955 1.047642 0.186633 -0.912454 1.756246 -1.658186 -0.613981 -0.902245 -0.426809 -1.408550 -2.107537 0.044272 -0.606557 -0.225874 -1.427317 -1.585600 2.771494 0.291231 0.521272 -1.055134 0.153977 -4.068438 -0.926349 0.731427 -0.012581 1.406753 0.240955 0.929793 -4.678467 1.279926 2.958467 -0.177173 -3.198907 0.223180 -1.527472 -0.475441 -0.326834 -1.263374 0.593257 0.659930 0.186835 -0.374767 -0.136455 -0.270734 0.145710 0.401580 3.660729 0.293614 2.532881 2.667221 0.081387 0.659223 0.061994 0.663924 -0.336110 1.494171 1.032905 -1.293027 -0.584465 -0.122019 -0.407365 -1.737678 0.730983 0.853982 -0.936926 -0.795787 -0.678617 -2.793707 -0.872409 0.767878 0.930774 3.221413 -1.551845 3.421837 1.157701 2.250734 0.144446 2.370283 0.129977 2.365226 0.883670 -1.360741 0.381376 -3.185190 -0.195106 -0.171933 0.811817 -1.953598 -1.139259 1.389249 -3.269591 -2.866410 1.538188 -0.260809 -0.779565 -1.310275 -0.099719 1.090052 1.070501 -1.249105 -2.218624 -1.628017 2.101262 -1.153525 -1.176485 0.150886 0.536258 0.236669 -1.267034 -1.988398 0.367817 2.239018 -1.120689 -0.502858 2.630263 -1.114384 1.479332 -0.437573 -0.097267 -0.482496 1.362189 0.709992 -0.223604 -0.190693 -1.605884 -2.458308 -0.297657 -0.017406 1.748635 -1.525745 -0.895274 1.143067 1.133018 0.891819 0.837954 -0.574232 1.273106 0.613540 -0.378051 -0.963577 -2.738748 -0.815415 -2.129677 -0.258137 -1.083290 -1.343385 1.303285 1.880617 1.299846 0.272256 2.068804 -0.738314 1.812332 0.035303 -0.227516 0.219766 -0.639896 0.757926 -1.140189 -2.124500 1.449455 0.980412 1.579035 0.671425 -0.649851 -0.216923 -0.830490 -2.049107 0.851702 0.930980 0.844537 2.845784 1.842915 2.319244 -2.490347 0.241106 -0.544576 -0.782640 0.393181 -0.631442 -2.264477 0.694279 0.795267 -0.404748 3.116232 -0.377531 -1.152879 0.795830 0.195415 0.560073 -2.004444 1.748596 -1.711216 -0.276799 -1.388686 -0.436846 -1.462119 -1.124225 -2.464167 -1.674980 3.088377 -2.497968 -2.920038 1.267173 0.265364 1.529052 -3.616852 0.798782 -1.144017 3.041606 -0.222663 -0.534833 -0.115126 0.220052 -0.569059 0.459094 1.249872 -2.361703 1.202113 1.834570 0.530405 0.587726 0.760693 1.090321 -0.494647 -0.281884 -1.977127 1.346744 -0.205992 -1.236320 0.161971 -1.091943 1.445297 0.502080 0.295523 0.818217 1.994402 0.487978 0.253655 2.302932 -0.170433 -1.110955 -0.198297 -0.032768 1.540177 -1.141668 -0.442557 -1.484738 0.759312 0.656313 0.343538 -2.903517 -2.393772 -2.659302 -2.959555 -0.134117 -0.366366 0.402692 1.081117 0.143859 -3.497068 -1.821527 1.622729 -1.027207 2.775362 1.600007 1.521039 2.379101 1.606617 -0.535299 -0.587648 0.770844 0.691336 -1.379757 -0.162775 -1.631644 1.333572 -1.312992 2.104933 1.924413 -0.205448 1.416694 0.262929 1.627033 -1.643325 3.675020 1.722031 -2.828635 0.224084 1.117746 2.093406 -1.096246 -1.690189 -PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -5.487333 -9.044415 6.528742 6.240744 2.944959 6.186240 3.932594 -1.395681 1.879710 6.601847 -2.768121 6.087875 -3.850672 -3.662918 -0.551046 -0.008116 0.363711 -5.334767 2.219658 -0.124520 0.826046 -4.195434 -6.152349 8.207374 0.589630 -2.091394 -1.538479 -0.313551 -11.869926 -7.394235 -1.910622 0.121420 3.376732 -1.521617 2.688033 -7.167457 3.474984 9.435930 0.466445 -8.816203 -0.383191 -1.811267 -1.783308 3.617943 -1.590949 3.512715 3.570349 -1.453838 -2.329134 1.924756 3.001540 -1.518058 5.071078 6.628420 3.015799 8.443571 7.385561 -0.027597 4.169890 0.656092 1.884055 -2.440107 4.333890 2.944225 -2.346931 0.398364 -1.058920 2.642286 -4.517512 -0.089088 2.332410 -4.260049 -2.430936 -1.239428 -4.664926 -2.273833 -1.123117 -0.964362 8.829554 -1.264289 11.822336 5.781569 7.122246 -1.268645 6.895442 -0.489580 5.393392 2.513008 -5.398886 1.828144 -6.715406 -1.275796 -0.879202 5.360049 -6.253225 1.878593 3.368448 -4.961372 -8.135481 5.778750 -2.156309 -1.996083 -3.187124 0.897440 2.809253 2.401811 -2.961046 -6.824993 -5.653646 5.623663 -4.486123 -4.317222 -0.985300 -0.156719 0.927380 0.559868 -3.352522 -0.460025 7.653899 -4.445945 -3.129352 6.151731 -0.791720 6.309398 -1.481567 -0.631118 0.524335 0.205527 4.197429 0.835603 0.167485 -5.996799 -11.377915 0.860347 -0.353466 -0.904703 -3.363753 -1.206232 4.785675 3.564939 5.843737 7.204916 -1.098730 5.449478 2.977506 0.644783 -1.667399 -7.991083 -1.454329 -2.190596 1.331803 -2.055181 -3.054602 -0.454207 4.650890 -1.244509 -0.726522 2.791077 -1.311606 5.061387 0.012520 0.775567 -1.080570 -3.729748 1.365888 -2.748288 -5.173925 4.177368 7.287042 3.039634 2.330251 -2.109272 -0.190382 0.034205 -4.976991 1.670736 -0.179176 1.482399 8.238797 3.553150 12.662186 -3.176542 -0.527879 -3.150785 -0.788612 1.478679 -2.478461 -6.511609 2.247662 1.304831 -0.018414 8.972083 -0.768358 -2.319001 3.083563 0.227938 0.438992 -5.699786 8.256194 -5.100915 -0.420346 -1.215167 -2.385397 -3.915053 -3.355191 -5.865366 -0.896019 7.916513 -3.165260 -6.878672 0.655362 -1.015563 0.252829 -8.170257 5.651340 -2.866079 4.634530 -1.545390 -2.684365 -0.745871 3.926298 0.977516 -0.230261 3.489385 -6.994966 5.448688 3.919131 0.087356 0.771275 3.116858 1.005458 -1.381541 -3.343092 -4.898851 3.082111 0.338334 -1.156073 -1.438252 -2.908276 5.814364 2.467480 -2.334193 -1.391008 5.098920 -4.030351 -2.991456 5.173087 -2.759665 -2.815736 0.441904 1.081127 5.087194 -3.367584 -0.994220 -5.575315 -0.933022 2.820446 1.527633 -7.497465 -1.115333 -2.884908 -6.087639 -2.233155 2.410803 2.825463 4.441267 0.978363 -9.578699 -5.511065 7.093779 -1.897979 1.892722 4.192662 4.873834 6.183638 2.037736 3.075170 -1.897513 -2.669246 -0.226361 -4.791446 -1.945938 0.571988 1.333930 -3.539282 7.344588 1.193234 0.955274 2.936634 0.507411 2.136941 -4.657100 8.663332 4.850082 -5.660436 -0.370064 2.282967 6.491539 -9.849983 -4.211000 -PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.876546 -1.017857 0.920345 0.733667 0.540435 0.634457 0.349080 0.054689 0.575886 1.075504 -0.482711 0.647732 -0.617249 -0.310051 0.309333 0.261322 -0.099229 -0.917265 0.427901 0.094490 -0.105550 -0.629093 -0.480552 0.505801 0.207840 -0.060184 -0.421066 0.010796 -1.198241 -1.359901 -0.239417 -0.154084 0.488102 -0.232424 0.288753 -1.258429 0.546521 0.885417 0.013814 -1.278893 -0.001211 -0.244405 0.007511 0.385625 0.224524 0.685832 0.871230 -0.018112 -0.083856 0.394849 0.250419 -0.505317 0.157575 0.882624 0.243397 0.901965 0.910628 -0.124758 0.099807 0.182085 0.262892 -0.534486 0.628328 0.627047 -0.593548 0.099238 0.142365 0.113560 -0.776396 0.257336 0.236275 -0.468616 -0.258291 -0.340096 -0.356253 -0.197586 0.334992 0.086172 1.315188 -0.224730 1.378366 0.650891 1.120715 -0.051378 0.672135 -0.228331 0.757463 0.301083 -0.894862 -0.117378 -0.707972 -0.652606 -0.317413 0.977627 -0.309534 0.627693 0.320387 -0.433120 -0.944672 0.597427 -0.342818 0.136083 -1.137775 0.227690 0.819613 0.648739 -0.156808 -0.867718 -0.865081 0.311885 -0.820306 -0.418219 -0.060853 -0.252549 -0.374887 0.158720 -0.645066 -0.389715 0.773221 -0.795804 -0.598152 0.698699 -0.522503 0.869122 -0.148464 0.081978 0.124101 0.262258 0.723168 0.203108 0.404337 -0.703788 -1.667565 -0.031233 0.014589 0.327468 -0.324789 -0.009506 0.346830 0.238617 0.142104 0.474740 -0.480003 0.882375 1.111386 -0.054432 -0.570777 -0.911159 0.156410 -0.454639 0.296768 -0.509938 0.027176 -0.024485 0.622288 -0.041281 0.013055 1.270420 -0.760157 0.735198 -0.185199 0.131808 -0.063869 -0.200309 0.284458 -0.472218 -0.536370 0.379917 1.116387 0.049888 0.392223 -0.602545 0.067598 -0.375680 -0.889321 0.540617 0.071221 0.250507 0.693322 0.238863 1.559131 -0.910453 -0.124031 -0.179867 0.079236 0.033529 -0.114321 -0.959997 0.388546 0.075028 0.412720 0.982195 0.040215 -0.691371 0.320857 0.071276 0.022864 -0.520505 0.839346 -0.761240 0.170610 -0.025514 -0.275242 -0.611615 -0.353060 -0.423655 0.186350 1.005685 0.233040 -1.368476 0.218383 -0.342689 0.373080 -1.479810 0.475673 -0.457548 0.531062 -0.488313 -0.067321 -0.243542 0.393334 0.394941 0.028747 0.404037 -0.434995 0.630826 0.692641 0.043356 0.173270 0.498106 0.215413 0.055145 -0.453214 -0.197265 0.217410 -0.076804 0.032518 -0.209420 -0.287772 0.850699 0.432973 -0.453469 -0.190238 0.800423 -0.683796 0.074924 0.703494 -0.251559 -0.481173 0.201267 0.179463 1.137624 -0.390972 -0.170233 -0.688082 0.085727 0.113834 0.326521 -0.948621 -0.483225 -0.046913 -1.389273 -0.550010 0.599495 0.269538 0.402483 0.205758 -0.935223 -0.347364 0.685197 -0.071232 1.194389 0.252868 0.552567 0.763083 0.371555 -0.050175 -0.623348 -0.339203 -0.288030 -0.823880 -0.346608 -0.009102 0.162929 -0.518892 0.797086 0.211504 -0.005110 0.085286 -0.063716 0.431694 -0.601983 1.131673 0.738474 -0.590292 0.081315 0.116269 1.402078 -1.105141 -0.616264 -PE-benchmarks/floyd-warshall.cpp__main = -0.734268 -2.359285 2.535531 2.413334 0.326804 1.351895 0.875006 -0.947571 1.230287 1.552104 -1.160883 1.543199 -1.399144 -0.214954 -0.261232 0.972216 -1.198751 -1.530992 0.175380 -0.293404 -0.230049 -1.453571 -0.707404 1.572871 0.743295 0.776801 -0.807437 0.231591 -2.464588 -2.931524 0.272349 -0.310423 1.102921 0.552144 0.519571 -3.244322 1.751307 2.485043 -0.246407 -2.523771 0.167402 -0.600067 -0.881643 0.161709 -0.095022 1.096020 0.740427 0.532065 -0.084909 0.802784 0.619615 -0.413096 1.512678 2.407628 0.052204 2.330609 2.420774 0.014913 0.716711 0.110174 0.738622 -0.179093 1.178927 1.620229 -0.470662 -0.620239 -0.354876 -0.045232 -1.696356 0.751034 0.329983 -0.834100 -1.384956 -0.708241 -1.072761 -0.260393 -1.616295 0.546035 3.330302 -0.977025 3.288576 1.411925 1.841569 -0.523660 1.408512 -0.164500 1.642340 1.019790 -1.619656 0.269088 -1.427961 -1.094314 0.268218 1.519073 -1.637645 0.055846 1.085734 -1.811264 -2.328048 1.280592 -0.048937 -0.536819 -0.784284 0.302843 0.830531 0.547125 -0.650824 -2.134521 -1.308222 0.858110 -0.796873 -1.205196 -0.711120 0.461596 -0.242251 0.443693 -1.951425 -0.271771 1.491502 -1.483322 -0.415838 1.424861 -0.193635 1.265968 -0.569266 -0.037955 -0.019671 0.795185 0.840373 0.900055 0.669336 -0.653509 -2.821365 0.583704 0.694934 0.548491 -1.156859 -0.224717 0.869849 0.820842 0.641475 1.324601 -0.631136 1.574141 1.307812 -0.198883 -1.195105 -2.009597 -0.721360 -1.630801 0.900412 -1.281761 -0.713106 0.066781 1.598968 -0.095207 0.440849 1.762874 -1.533253 1.489563 -0.054212 0.468939 0.248939 -0.340803 0.626340 -0.978505 -1.569312 1.514882 1.668849 0.373429 0.787638 -0.690857 0.138059 -0.847744 -1.388405 1.577959 -0.022016 -0.092620 2.054915 0.896691 4.216020 -0.949342 0.362947 -0.040871 -0.105310 0.272981 -0.137273 -2.238671 1.287335 0.118993 0.982460 2.418349 0.030216 -0.775868 0.606882 -0.131779 0.091411 -1.571339 2.173997 -1.445466 -0.165877 -0.754567 0.108868 -0.657012 -0.972396 -0.931553 0.473291 2.501619 -1.236468 -1.802343 0.995899 -0.354651 0.557932 -2.492971 2.398014 -1.145336 1.523834 -0.709709 -0.860781 0.177251 0.246971 -0.208994 -0.055989 1.146665 -1.196551 1.042360 1.525452 0.287080 0.102770 0.755755 0.687249 -0.450760 -0.091135 -1.070584 1.151689 0.309859 -0.471280 -0.599275 -0.884731 1.224396 -0.086377 -0.509152 0.606417 1.640515 -0.464915 0.019373 1.072150 0.251533 -1.241107 0.835119 0.304473 1.462761 -1.115909 -0.471803 -0.838232 0.107152 0.115282 1.037722 -2.240471 -1.312300 -1.379941 -1.860120 -1.189435 0.450596 1.399061 0.523184 0.140719 -2.481822 -1.659850 2.278141 -0.660485 0.859858 1.273518 1.390067 1.558293 0.903652 0.437695 -0.648383 -0.887139 0.378272 -0.959816 -0.308903 -0.447172 0.897514 -1.166712 1.361359 1.138360 -0.203645 0.695390 -0.122724 1.593279 -1.232849 2.867341 1.300571 -1.579552 0.580771 1.069979 2.126947 -1.659108 -1.387817 -PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -5.317454 -9.695403 8.354987 8.316987 2.633276 6.380936 3.900569 -2.998388 3.752787 8.032805 -4.444937 6.531043 -4.655189 -2.834039 0.239923 2.179502 -2.007262 -5.457660 1.291325 -0.858819 -0.229173 -5.610804 -5.717090 7.489585 1.591936 0.706953 -2.301277 1.760377 -10.867262 -13.284877 -0.906965 -0.222834 3.921286 0.182234 2.271511 -12.519184 6.324413 11.082125 -0.214659 -9.615298 -0.165743 -1.897796 -4.256996 3.445844 -0.165568 4.633416 3.263159 -0.449015 -2.055696 2.610878 3.711049 -2.219605 6.227411 8.676316 1.565399 10.201016 10.368615 -0.273210 3.488061 1.232024 2.301346 -1.628356 5.043443 6.078927 -2.442435 -0.857563 -0.013127 2.064621 -6.366269 1.328923 2.105907 -5.715465 -3.540301 -2.934546 -4.031318 -1.636348 -3.144801 -0.726132 12.314657 -1.829242 14.659636 6.340139 7.927354 -1.926676 7.075523 -1.334043 7.307755 3.558770 -7.321521 1.402806 -5.733458 -4.171832 0.625785 9.929810 -7.128845 4.739324 3.910272 -6.060377 -9.144597 5.595261 -1.551712 -2.408503 -4.807386 1.184084 3.230474 1.097246 -1.711669 -8.729684 -7.221954 4.912914 -5.334287 -5.197784 -3.799831 1.173962 -0.391147 3.018547 -6.144110 -0.906287 7.579676 -5.429111 -3.873717 5.748042 -0.798957 5.942805 -2.337350 -0.179781 0.467325 0.266960 3.303923 2.732822 2.506442 -4.639458 -14.358346 0.626961 1.175320 0.743301 -4.543112 -1.772286 5.203596 3.400994 4.539682 7.945619 -2.869935 7.802541 5.175131 0.777175 -3.030800 -8.608088 -1.994867 -4.781860 3.623477 -4.039713 -3.456091 -1.555352 5.841721 -2.146978 -0.038896 5.501345 -4.642476 7.026433 -0.019511 1.757315 -0.307572 -3.677815 1.813992 -3.924940 -5.971622 5.661234 7.980384 1.638097 3.171002 -2.640803 0.019188 -1.761090 -6.923609 5.654033 -1.857593 0.663713 8.517710 3.678426 22.172145 -4.355786 1.566672 -2.175020 -0.606825 1.502602 -1.302115 -7.750036 3.676390 1.117707 3.477595 11.432533 0.317887 -3.209291 1.349485 0.348804 -0.124166 -6.518808 11.114888 -5.754483 0.084908 -1.137463 -2.241336 -3.178813 -4.060105 -4.533955 2.350485 9.395168 -3.862915 -8.878067 2.904816 -1.410190 1.108703 -10.642057 9.791577 -4.195155 5.373332 -4.180403 -3.723071 0.234073 3.187717 0.243802 1.127226 4.113291 -6.549207 5.525837 5.619586 0.297045 1.430021 2.804638 1.166222 -1.951924 -2.653513 -5.106353 4.098434 1.809554 -1.562448 -3.748949 -3.575714 6.425383 1.201013 -2.988100 -1.337466 7.084953 -4.692290 -3.138524 5.469586 -1.474350 -4.073121 3.033303 1.909592 5.487399 -3.884861 -2.102464 -4.349090 -0.779781 2.336871 3.411617 -8.563750 -1.823280 -3.262068 -7.770937 -4.676576 4.352398 5.620623 4.191136 1.047937 -11.015298 -6.136667 10.264667 -2.038438 3.494646 4.539434 6.620261 5.824394 2.084540 4.169285 -2.774192 -5.029232 0.419310 -5.232451 -2.179611 0.313707 2.690775 -3.935552 7.171022 1.777359 0.620805 3.134260 0.437775 4.418390 -4.843534 10.554858 5.023431 -5.910197 0.810772 3.456390 8.403178 -10.540923 -4.996764 -PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -1.466670 -3.254744 3.752143 3.475967 0.320171 2.333855 0.783448 -1.958059 1.923983 1.694377 -1.775663 1.894079 -2.203694 -0.651794 0.172960 0.613454 -2.145204 -2.365156 0.016488 -0.853058 -0.257682 -2.247815 -1.245477 2.601978 0.764982 1.727870 -1.234740 1.201422 -3.880678 -4.149095 0.938037 -0.214482 1.815565 1.740693 1.104782 -5.114410 2.877489 3.954851 -0.372288 -3.928820 0.218522 -1.464516 -1.539930 0.142130 -0.261939 1.985040 0.727689 0.764323 -0.095943 0.584855 0.477941 -0.603223 1.238818 2.937569 0.141971 3.522031 3.507651 -0.246560 0.847257 0.447530 0.757515 0.002385 2.159059 2.414435 -1.648905 -1.131738 0.295824 -0.181858 -2.847499 1.525931 0.877323 -1.786013 -1.570040 -1.334275 -2.020275 -0.432227 0.270435 0.897151 4.782705 -0.967092 4.652467 1.876825 2.530459 -0.705652 2.807340 -0.464833 3.694078 1.368423 -2.314343 0.156090 -3.159530 -2.393919 0.378084 2.460101 -2.289702 1.120338 1.196738 -3.563530 -3.523267 1.544503 -0.098460 -1.080658 -2.435588 0.523542 1.861881 0.641429 -0.316412 -2.991119 -1.616138 1.978175 -2.307984 -1.709759 -1.424553 0.824328 -0.601350 0.562538 -2.917194 -0.073411 2.312659 -1.632954 -0.866757 2.657145 -0.914302 1.304380 -0.836687 -0.037564 -0.390557 1.155244 0.438097 0.879111 1.387613 -1.414015 -3.500504 0.570667 0.639360 0.934765 -1.847940 -1.161187 1.296786 1.192932 0.179856 1.713522 -1.444583 2.496873 2.213818 -0.347019 -1.515339 -3.023522 -1.286170 -2.988515 0.906931 -1.796418 -1.234500 0.278209 2.668169 0.471431 0.858603 2.742289 -2.478739 2.294446 -0.212972 0.714426 0.648910 -0.432233 1.030072 -1.678020 -2.374155 2.337298 1.888273 0.804696 1.145482 -0.997473 -0.118388 -1.476905 -3.065443 2.596285 -0.108976 0.944558 3.284341 1.933269 5.840253 -2.275037 0.961208 0.100940 -0.378090 0.383108 -0.112501 -3.027135 1.638721 0.619367 1.690350 4.485590 -0.086007 -1.399907 -0.012438 0.566461 0.366242 -2.712035 3.103921 -2.312372 0.376695 -1.225153 -0.438146 -1.392154 -1.969120 -1.816855 -0.025529 3.930548 -1.448818 -4.137668 2.392432 -0.998263 1.709353 -4.667000 1.611853 -1.979466 2.802468 -1.171333 -0.964215 0.006962 -0.541981 -0.832416 0.587600 1.544569 -2.163452 1.863167 2.260586 0.725427 0.521439 0.750989 0.916391 -0.707801 -0.116226 -2.222360 1.939025 0.294806 -0.410926 -0.849345 -1.475475 1.756389 0.085406 -0.745516 0.749172 2.916555 -0.283177 0.067971 2.098957 0.282911 -1.811232 1.113579 0.581647 1.610525 -1.358448 -1.115461 -1.026810 0.211695 0.425682 1.330863 -3.670454 -2.430408 -1.941192 -3.924884 -1.516930 0.594097 1.890821 1.501733 0.414849 -3.856456 -2.056909 2.972106 -0.845591 3.546937 1.597534 2.164129 2.298830 1.796579 0.123629 -1.044299 -0.867904 0.576597 -2.035772 -0.674629 -1.514480 2.288416 -1.048922 2.499929 2.081616 -0.558873 1.338613 -0.806970 2.971060 -2.016862 4.308987 1.966750 -2.641796 0.641029 0.833733 3.088270 -1.985132 -2.175525 -PE-benchmarks/subset-sum-problem.cpp__main = -1.935842 -4.463301 3.933699 3.579642 0.973224 2.948507 1.581193 -1.006554 1.645215 2.709361 -1.657036 2.942602 -2.279047 -1.408797 -0.286860 0.481889 -1.067791 -2.855928 1.019142 -0.161293 0.178214 -2.232466 -2.051540 3.637507 0.767016 0.885343 -0.990929 -0.138125 -5.390425 -3.745556 -0.059415 -0.291816 1.923750 0.889573 1.332118 -3.834809 2.152467 4.444546 -0.079191 -4.886988 0.047007 -1.125714 -0.884836 0.831835 -0.194377 1.925102 1.753312 0.453796 -0.716650 1.135964 0.559074 -0.772390 2.476772 3.091575 1.178533 3.895895 3.796629 0.004735 1.860986 0.209807 1.177457 -0.922616 2.237478 1.878168 -1.330509 -0.428270 -0.658381 0.394938 -2.553481 0.639594 1.025697 -1.606447 -1.604569 -0.807708 -2.139173 -0.741252 -1.594388 0.689709 4.784366 -1.243454 5.640526 2.767232 3.471323 -0.731801 3.114370 -0.153392 2.714904 1.552278 -2.624536 0.419669 -3.834015 -1.515404 -0.114539 1.449054 -2.765049 0.241377 1.811685 -3.114829 -4.129867 2.576933 -0.618417 -0.911298 -1.508462 0.522072 1.767713 1.596616 -1.371331 -3.290066 -2.162206 2.235307 -2.235976 -2.088489 -0.559492 0.473847 -0.078339 0.301174 -2.421988 -0.284970 3.332622 -2.346124 -0.839118 3.037346 -0.433397 2.731227 -0.871509 -0.328924 0.103761 0.844438 2.037184 0.649481 0.912559 -2.245360 -4.272504 1.357181 0.400908 0.151314 -1.875195 -0.508273 1.880841 1.722217 2.075237 2.451376 -1.027957 2.431497 1.641359 -0.239428 -1.441755 -4.035288 -0.820847 -1.879826 0.824080 -1.522947 -1.111972 0.408153 2.654027 -0.000729 0.265593 1.986312 -1.948727 2.152060 -0.121708 0.843525 -0.150899 -0.377852 0.917065 -1.539556 -2.622636 2.144023 3.363828 1.118813 1.118770 -1.226062 0.092502 -0.702470 -2.482618 1.584337 0.240818 0.480142 4.045085 1.802932 4.865447 -1.928409 -0.344975 -0.919224 -0.380997 0.472041 -0.762720 -3.706337 1.721133 0.424540 0.988098 4.224812 -0.360654 -1.240284 1.472244 0.153350 0.140175 -2.642012 3.473318 -2.763328 -0.524591 -0.971339 -0.286879 -1.877133 -1.877177 -2.731278 -0.236884 4.286559 -1.575083 -3.320984 0.972179 -0.968218 0.709409 -4.253034 2.025216 -1.783481 2.082770 -0.516508 -1.309094 -0.390846 0.718007 -0.008158 -0.772820 1.933642 -2.945583 2.430036 2.143236 0.406155 0.132177 1.607241 0.836846 -0.748767 -0.994623 -2.262975 1.581863 -0.077036 -0.569611 -0.543484 -1.497341 2.697025 0.680131 -1.186515 0.483759 2.537356 -1.025715 -0.347193 2.103346 -0.581807 -1.873122 0.557634 0.523197 2.702688 -1.750388 -0.587002 -2.400511 -0.200168 0.784619 1.357866 -4.114632 -1.903888 -1.688660 -3.248023 -1.454392 0.369123 1.608003 1.657864 0.452594 -4.677974 -2.785909 2.671908 -0.982087 1.290392 2.173179 2.239455 3.152603 1.445866 0.645193 -1.117723 -0.875125 0.195985 -2.226025 -0.910641 -0.502071 1.170932 -1.643069 3.209322 1.691396 -0.007409 1.278405 -0.719943 1.987618 -2.325767 4.597788 2.546268 -3.203068 0.097795 1.175175 3.548444 -3.721484 -2.415175 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = -1.113370 -2.823808 3.197334 2.850510 0.138538 1.766968 0.853711 -1.423515 1.607913 1.205633 -1.084394 1.632990 -1.916843 -0.176321 -0.623584 0.670405 -1.729452 -2.045730 -0.099789 -0.771671 -0.514282 -1.760649 -0.845783 2.075518 0.743012 0.777232 -1.217591 0.234769 -3.387093 -2.550126 0.717849 -0.222643 1.469716 0.348961 0.660833 -4.876906 1.993706 2.983401 -0.427786 -3.300226 0.368875 -1.357219 -0.810387 -0.187930 -0.684850 0.901775 0.572453 0.617220 0.037915 0.472234 0.300092 0.067935 1.037233 3.934035 -0.126674 2.777286 2.837320 0.119482 0.462823 0.354609 0.799400 -0.020421 1.589799 1.621990 -0.953677 -0.918296 -0.209948 -0.437344 -2.107900 1.215642 0.450183 -1.151919 -1.319575 -0.892754 -2.061388 -0.585022 -0.722336 1.155745 3.814908 -1.698727 3.569168 1.291341 2.024662 -0.156272 2.104015 -0.121548 2.528848 1.085530 -1.636664 0.070726 -2.281833 -0.979880 0.246580 1.100551 -1.898753 -1.001798 1.454572 -2.835958 -3.057478 1.539555 0.001056 -0.749865 -1.554772 -0.081612 1.232103 0.933820 -1.060741 -2.579123 -1.686391 1.646232 -1.024889 -1.395109 -0.367798 0.415796 -0.174193 -0.329387 -2.508163 -0.003335 1.879664 -1.506262 -0.743009 2.365870 -0.727453 1.322563 -0.545040 0.049491 -0.368977 1.447211 0.541117 0.725282 0.537560 -0.706995 -2.905326 0.374078 0.635650 1.107557 -1.381445 -0.412147 0.834235 1.082950 0.321215 1.185724 -0.910484 1.748641 1.395769 -0.386016 -1.420179 -2.514741 -0.693828 -2.475334 0.451614 -1.591536 -1.152749 0.831308 2.134476 0.882755 0.620131 2.434920 -1.731717 1.844348 -0.049885 0.222007 0.537584 -0.415540 0.887755 -1.318561 -2.280442 1.625370 1.509162 0.931239 0.709033 -0.708602 -0.077280 -1.195302 -2.012773 1.441189 0.576417 0.230975 2.712280 1.630747 4.018299 -2.450122 0.601003 -0.018909 -0.621091 0.424354 -0.480952 -2.777424 1.077207 0.587682 0.603973 3.201550 -0.194861 -1.277034 0.655621 -0.032447 0.422914 -1.981384 2.008553 -1.910068 -0.341991 -1.296685 -0.107037 -1.064960 -1.263013 -1.690748 -0.547604 3.285024 -2.218228 -2.751284 1.841565 -0.294978 1.170500 -3.719067 2.116253 -1.390286 2.371922 -0.734288 -0.759109 -0.031804 0.348646 -0.690491 0.381641 1.409536 -1.882429 1.267801 2.356044 0.545058 0.528845 0.723605 1.216532 -0.536153 -0.037562 -1.798578 1.785375 -0.017442 -0.995799 -0.368231 -1.220078 1.462485 -0.018763 -0.027178 1.177432 2.179189 0.068873 0.383877 1.976803 0.433249 -1.425999 0.853766 0.116667 1.626513 -1.300204 -0.500197 -1.031241 0.439417 0.190226 1.059562 -3.026499 -2.320608 -2.342455 -2.734489 -0.727951 0.085510 1.086927 0.619076 0.110153 -3.408961 -1.967289 2.152686 -1.062885 2.057673 1.657446 1.721800 2.202456 1.797439 -0.188326 -0.559861 -0.206086 0.484648 -1.316113 -0.504251 -1.180608 1.512103 -1.350888 1.873624 1.864350 -0.212666 1.243541 -0.046258 1.854119 -1.621464 3.688195 1.707329 -2.207794 0.687183 1.475875 2.579202 -1.286615 -1.811130 -PE-benchmarks/aho-corasick-algorithm.cpp__main = 2.267977 -12.183941 23.248163 18.422123 1.642995 8.352595 11.368424 -16.082500 16.381590 10.518935 -4.270471 1.527409 -15.979819 1.716173 -5.310686 10.982592 -13.659516 -11.925478 -2.840989 -9.311715 -3.540065 -14.091887 10.534738 2.125994 10.370407 4.090595 -6.332845 -5.828726 -14.173937 -17.094548 14.080453 -2.151004 8.448601 5.236976 -1.301659 -25.377052 16.640234 13.528471 -5.698866 -17.078429 5.971486 -2.182911 -6.922243 2.205410 2.667153 4.723322 -0.552205 14.203651 7.961857 9.207995 7.775305 -1.094256 6.607042 22.334482 -8.491053 14.936907 9.374819 3.255653 0.846935 9.958853 4.015375 5.094072 7.476283 14.328781 -0.062156 -6.959082 0.368053 -5.858412 -19.063679 14.750712 -1.047913 -5.877596 -11.178770 -3.445474 -3.903732 1.007600 -17.059171 12.236723 24.948833 -11.052627 17.224635 4.877285 6.027774 -9.112715 3.518851 -3.233545 9.891675 5.675060 -7.224532 -5.643790 -14.437652 -9.052803 2.723175 -3.229107 -8.172750 -16.424662 11.049941 -8.602139 -18.025113 5.673004 5.742970 -4.403941 -9.336846 2.952095 7.300956 4.951206 -7.848207 -17.158957 -7.955248 6.756738 -5.007516 -4.793054 -2.437450 0.967722 -6.318843 -2.297630 -16.182034 -4.555511 2.510199 -11.719487 -6.309187 11.091201 -4.985396 5.063354 -0.020261 3.235434 -2.288207 8.715098 1.472506 10.186852 13.149093 4.134031 -10.971596 7.315351 9.390494 9.830685 -0.247912 3.554256 -2.554066 6.322419 -7.436884 7.013816 -4.945972 4.747824 12.465278 -7.009031 -11.906025 -4.201140 1.561033 -18.208782 7.096324 -12.995628 -3.910756 0.306811 12.939171 6.069074 7.399142 17.736851 -19.115634 7.946910 -1.257098 2.586361 3.767455 3.496319 7.822821 -6.876665 -15.191082 3.813140 7.775598 0.503495 1.848718 -4.182194 -2.506721 -13.877814 -9.570168 4.179911 2.776456 -7.446878 7.847586 9.412363 17.885725 -13.391117 3.394703 8.972839 -2.135468 1.539648 0.322688 -22.942396 9.524368 0.488102 8.228132 15.354616 -0.767729 -6.188041 6.794044 -5.387840 2.130611 -10.045307 4.660235 -13.392277 -4.984307 -11.249054 4.861934 -2.549465 -8.674317 -2.657223 2.862486 16.968862 -4.520707 -11.997874 18.503657 -7.678420 1.666405 -18.928144 19.488192 -7.083080 2.693861 -3.946567 -2.578660 -2.267326 2.935934 -5.872098 -2.523388 4.687431 -4.481876 12.370316 23.054012 3.134865 0.837521 3.138396 12.378526 -5.482692 2.977994 -10.429480 15.016115 -2.251903 -8.739672 -0.848727 -7.432462 4.807426 -9.962554 -1.314121 17.064515 12.445136 -0.431047 9.098091 4.480916 10.575925 -8.686216 14.040122 4.420386 8.706115 -6.148453 -1.089554 2.635552 -0.891584 -8.095558 13.032696 -17.676625 -19.614416 -8.250362 -19.764122 -4.277003 -7.098919 10.757257 -3.034694 -0.504459 -16.973475 -12.689679 6.437580 -6.773231 4.754295 11.329097 9.789790 10.742344 17.539490 -6.735521 4.668391 -2.098734 5.720126 -7.397241 -10.087369 -4.030904 9.518937 -7.056315 6.894066 13.401699 0.906012 5.000674 -10.572695 14.993294 -12.188639 19.145469 8.677124 -3.194977 11.691908 6.321608 19.839068 2.879667 -8.771402 -PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -8.864496 -19.197114 19.403860 17.725006 3.109609 12.028016 8.425820 -6.967599 4.755289 14.543343 -8.152062 11.513454 -11.155730 -4.996513 -0.779124 4.904496 -6.425110 -11.971321 1.415040 -3.463096 -1.014060 -9.632753 -7.753675 14.556351 5.130943 2.355687 -5.395793 -0.362520 -20.632142 -23.782544 0.438608 -1.124690 9.182719 3.589209 3.104893 -23.531575 13.175851 21.609540 -2.020270 -17.791471 2.093817 -3.537150 -7.935367 4.632841 -4.745625 7.955239 6.306751 0.885337 -2.550527 6.216566 7.149100 -3.968665 12.977547 20.537957 3.575585 20.364241 20.576773 0.353486 6.557086 3.171834 4.780531 -2.762344 9.694790 8.833764 -3.325411 -2.689695 -0.969589 0.651854 -11.993194 4.300894 2.164635 -9.554862 -6.302503 -5.500443 -9.142769 -3.579265 -4.786341 2.068297 24.195636 -7.490953 27.150219 12.596851 11.599189 -3.612763 11.626305 -1.371931 12.528078 7.423269 -10.335744 2.555403 -9.990037 -9.133746 1.127288 15.124290 -14.160347 1.893788 10.278320 -14.499469 -19.766239 11.739844 -1.668272 -5.388501 -8.249876 -0.218378 5.537428 2.820549 -5.962586 -16.003775 -11.208338 8.839840 -9.035090 -9.229309 -6.434828 3.066846 -0.803346 6.961380 -14.088477 -0.418665 12.681883 -11.521253 -6.979550 12.768652 1.286466 12.249743 -3.623152 0.902809 -0.964381 4.494569 6.165701 6.002843 4.901871 -4.046835 -20.627723 0.671327 4.316515 1.018885 -8.182771 -4.412840 8.413260 7.298520 7.006797 14.952892 -5.150868 14.925357 9.964273 -0.081971 -7.808834 -16.141799 -6.202242 -13.021299 4.517108 -9.325241 -7.700143 -0.021918 12.232539 -1.555919 1.374257 12.773213 -8.928844 10.914032 -0.741924 2.147980 -0.524466 -8.767003 4.873609 -8.050222 -13.331158 10.566892 14.950141 4.761003 5.842281 -5.277398 0.281152 -5.885070 -13.670194 9.014349 -2.941084 -1.932530 16.261731 8.957147 34.797546 -8.577481 2.929094 -2.388775 -2.713967 3.012134 -1.771844 -17.655133 6.705737 2.373970 3.750159 21.732446 0.645854 -6.854807 5.070243 -1.474437 -0.513230 -12.978971 19.505574 -12.232902 -0.454105 -4.836588 -3.244399 -7.030900 -8.637797 -8.226515 1.419187 19.321771 -12.036731 -15.558719 7.540316 2.186385 1.757728 -21.752933 18.201144 -8.624671 12.190429 -4.835269 -8.766153 0.416382 4.672990 -0.319575 0.419078 7.401889 -12.674103 11.089766 12.886630 1.590374 2.912520 5.779870 5.370146 -4.717818 -2.873014 -10.880915 8.829922 1.886638 -6.626649 -6.273330 -6.918562 9.070477 0.524019 -4.094675 0.556325 12.049865 -7.062972 -4.078973 11.420717 0.143793 -8.948155 5.760438 3.340545 12.554085 -8.460965 -3.810521 -7.644798 -0.479534 2.747321 7.915890 -18.943957 -7.459332 -12.957368 -15.252299 -8.844619 6.569246 10.455084 6.400804 1.575370 -21.732878 -12.448920 16.796520 -5.765458 6.326759 11.519416 13.384243 13.954199 7.374348 6.449905 -5.079624 -6.626260 3.309067 -9.272442 -4.122610 -2.210117 7.007474 -6.964434 13.835797 6.245452 1.265605 6.977129 0.434728 10.889944 -11.041269 21.821217 9.981836 -12.859829 3.834056 9.114695 13.727946 -17.166949 -10.291430 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = 0.247802 -1.022171 2.463501 2.221989 -0.248550 0.729948 0.066720 -1.792920 1.630194 0.980613 -0.169901 0.594561 -1.098957 0.784875 -0.494150 1.632898 -1.711727 -0.969707 -0.714040 -1.303565 -0.992001 -0.999606 0.596474 0.144550 0.957860 0.535711 -1.174555 0.023881 -0.914915 -2.072830 0.802980 -0.345434 0.839843 -0.154246 0.302004 -3.285149 1.927330 1.356361 -0.639446 -1.655428 0.425531 -0.676201 -0.212269 -0.308282 -0.404707 0.432335 -0.324261 0.610682 1.067942 0.748356 0.742312 0.820481 0.851860 2.906977 -0.887168 1.345954 0.719001 0.057988 -0.313050 0.460921 0.522980 0.726943 0.787323 0.816584 0.128753 -1.434604 -0.449736 -0.410474 -1.369032 1.463971 -0.231400 -0.882834 -1.344268 -0.743687 -0.962786 -0.355127 -2.179656 1.429772 2.219941 -1.500781 1.021414 0.355976 0.330751 0.006984 0.851811 -0.212397 1.747334 0.661762 -0.483701 0.026070 -0.067728 -0.663513 0.634175 -0.271892 -1.102535 -2.303422 0.935209 -1.611438 -1.793270 0.885975 0.870313 -0.325898 -1.184963 -0.694876 0.813404 0.436411 -0.847050 -1.508010 -0.479563 0.646937 0.369925 -0.799842 -0.121421 -0.463641 -0.168571 0.088929 -1.958875 -0.033415 0.295687 -0.659369 -0.562378 1.316343 -0.045701 -0.136989 -0.305052 0.475605 -0.548247 1.501126 -0.361075 1.509193 -0.031820 0.987972 -1.142670 0.811308 0.840403 -0.070097 -0.257977 0.137132 -0.683219 0.566558 -1.092851 0.782744 -0.651718 0.843739 1.578562 -0.208425 -1.332880 -0.574672 -0.433445 -2.009913 0.509881 -1.237995 -0.785476 0.443776 1.341847 0.954667 1.084707 1.222870 -1.458524 0.521534 -0.247619 0.215208 1.245524 0.006682 0.777119 -0.781034 -1.350814 0.908116 0.655957 0.340905 0.351113 -0.293107 0.079757 -1.002565 -0.412794 0.855315 0.683169 -0.347473 1.224658 0.973512 2.363951 -1.166677 0.541163 0.883228 -0.507272 0.381714 -0.263955 -1.844444 0.577042 0.359069 0.602532 1.615540 -0.284337 -0.537686 0.473905 -0.333775 0.543031 -0.959627 0.392663 -1.126429 -0.329114 -1.029700 0.315040 -0.470955 -0.383314 -0.512903 -0.425496 1.902189 -1.740034 -1.004898 2.244568 -0.812256 0.503869 -1.726978 1.868872 -0.847515 0.823773 -0.562440 -0.232376 -0.067849 0.124401 -1.098220 0.414272 0.880672 -0.516024 0.292586 2.074094 0.440393 0.133691 -0.064843 1.305850 -0.478246 1.034652 -0.875004 2.052947 -0.219277 -0.289389 -0.243884 -0.673616 -0.055111 -0.979902 0.289655 1.246300 0.779433 0.442290 0.513269 0.804444 1.292196 -1.018387 1.578641 -0.095241 0.288448 -0.902024 -0.156124 0.493856 0.400862 -0.628116 0.864306 -1.782697 -1.561470 -2.137287 -1.028817 -0.260942 0.068467 0.611809 -0.566547 -0.433344 -1.216970 -1.440913 1.806205 -0.717920 0.300323 1.001265 0.783157 1.135872 1.777846 -0.482573 0.185818 -0.631857 -0.201567 -0.016179 -0.587995 -0.833673 1.545864 -0.700901 0.406730 1.599950 -0.355584 0.767168 0.012036 1.019770 -0.887884 1.835567 0.640025 -0.366073 1.143968 1.460146 1.782084 0.048074 -1.035245 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/cut-vertices.cpp__main = -2.944427 -14.779939 19.842315 16.602578 -2.930607 8.941287 2.705976 -9.653224 8.968121 3.295518 -4.913597 8.772454 -10.575850 1.099582 -4.158208 4.869493 -14.298517 -11.028408 -1.710898 -5.945424 -5.656620 -8.967962 -1.422030 11.267833 5.638336 7.982856 -7.767663 0.392982 -14.918908 -10.686147 6.619618 -2.998309 9.001524 6.828440 4.919699 -29.145723 11.870134 13.155254 -2.826703 -16.132554 1.531795 -6.174655 -3.235133 -4.319285 -6.993124 3.247769 2.534553 4.933734 3.271060 2.286826 0.405679 0.054218 5.489355 23.166496 -1.029613 13.430506 12.801467 -1.093344 2.247651 0.608823 5.394892 0.476037 8.608330 8.597575 -3.162468 -6.616065 -1.419070 -5.524656 -11.225130 9.192537 2.174755 -3.921259 -7.820937 -5.408826 -12.474098 -3.667952 -4.179587 10.356333 21.972813 -11.366557 16.998104 5.934684 9.541029 -1.494536 10.645610 -0.137372 15.251567 6.539047 -8.112327 2.404044 -9.468558 -4.828617 1.792094 3.196052 -9.382595 -10.537986 8.217107 -18.887098 -17.005603 9.246512 2.385253 -2.904061 -7.982676 -3.124967 7.494200 4.405291 -8.553128 -13.783485 -7.022056 6.099609 -3.407480 -6.800456 -1.077109 3.688187 -1.316521 -1.507585 -14.689961 -1.253659 7.892482 -9.062674 -1.742820 13.196939 -3.033646 6.424067 -3.060743 1.211625 -2.742006 10.672124 2.278628 5.344111 1.130581 -0.458217 -8.298721 0.761113 4.043916 6.882945 -5.991896 -4.698273 2.379561 6.680581 -1.059896 4.411564 -3.660502 9.079354 7.601707 -2.177138 -10.603031 -11.097393 -5.320811 -17.340023 1.385152 -10.796244 -7.343042 8.547474 11.996551 6.657729 4.464587 12.035041 -8.403935 9.615715 -1.119939 1.406810 5.027824 -1.720974 5.933270 -7.646357 -11.857314 8.921733 5.426472 6.379923 4.340849 -5.996423 -0.255418 -7.663075 -10.897294 7.571028 5.652942 0.415072 12.676150 8.331640 18.035069 -12.475536 3.158555 2.191937 -2.385660 1.948577 -1.432326 -15.881523 6.424879 2.052631 1.202122 14.790432 -1.837995 -6.774560 4.787037 -1.081351 3.209213 -10.907282 7.645495 -9.690473 -0.425816 -9.337188 1.455885 -6.202718 -5.394300 -8.635048 -4.832983 18.556551 -18.265916 -12.711786 13.973922 -0.421013 10.112199 -18.982362 10.031658 -7.701103 15.040981 -3.263687 -5.519367 0.175973 -1.328287 -4.323803 3.053905 7.934503 -8.253927 4.013085 12.696729 3.209074 3.435829 3.779093 9.008445 -2.374440 3.007215 -8.163556 11.752790 0.323963 -6.326096 -1.889999 -6.706726 4.583632 -2.418127 2.242544 7.451787 10.528377 3.530235 4.561278 9.888980 3.894819 -8.857187 4.281179 -0.224812 8.328553 -8.238239 -2.541676 -2.954094 5.686626 -1.452467 6.185937 -16.895111 -16.814433 -18.542582 -12.591399 -6.606879 -0.577068 6.167679 0.828158 -0.417956 -14.483714 -10.592988 11.707663 -6.168684 9.835211 10.293063 9.015996 13.056124 11.820647 -2.783679 -3.837639 -0.030636 3.885620 -4.776832 -0.012034 -10.712284 8.578903 -8.893975 9.393446 13.565790 -2.122832 6.214218 -0.142877 12.842888 -9.854919 19.420304 9.260667 -12.942169 5.937380 9.840672 11.153324 -1.048193 -10.597239 -PE-benchmarks/cut-vertices.cpp__Graph::AP() = -5.289983 -12.426377 14.152932 11.489026 0.807224 9.122615 3.138852 -7.422915 5.721300 7.565432 -4.004546 7.813798 -6.810849 -2.792021 -2.634228 1.398699 -5.999234 -7.899478 -0.848067 -4.678687 -3.077042 -6.496301 -4.942759 9.670405 2.637860 2.584812 -4.454135 1.335004 -15.164530 -13.097117 1.351292 -0.107751 5.524892 1.088117 4.463977 -17.425169 8.974378 13.766165 -1.634971 -13.473675 0.497195 -3.002868 -5.259389 3.465886 -2.376861 3.719162 1.779590 0.280953 -1.188041 2.231975 3.885054 -0.250131 5.423921 16.314868 2.250260 12.876462 12.639094 -0.386885 4.222661 3.518198 3.526883 -0.230527 6.320965 6.047281 -2.310394 -2.175524 0.856056 -0.243612 -7.348135 4.908133 1.787331 -9.148018 -1.923399 -5.656849 -9.138954 -2.515903 -1.709715 3.223840 15.885693 -5.419341 15.619113 6.239815 8.573353 -1.570530 10.841410 -1.323069 13.020027 5.072179 -6.687822 1.763617 -7.460230 -3.805210 0.893548 7.406969 -9.687204 -0.449523 7.804474 -13.471582 -13.467743 8.888291 0.339163 -3.582661 -7.933118 -1.039255 4.916820 2.113751 -5.347832 -10.654274 -8.501731 8.353976 -6.159335 -5.812749 -2.059714 1.690469 -0.579593 2.951302 -8.569401 0.391896 9.381186 -5.996760 -5.937142 10.911277 -1.698842 6.236494 -3.021396 0.602047 -1.347207 2.951176 1.733735 3.946051 0.911331 -1.959814 -12.502572 0.850644 1.421360 0.198624 -4.745898 -2.472611 5.102454 5.797421 2.739812 9.347020 -6.189713 9.129428 5.957133 -0.019782 -6.062605 -10.209181 -2.807433 -10.615083 0.592488 -6.507290 -7.726622 2.181167 9.176409 3.725288 0.391894 7.140063 -5.320292 7.321682 -0.061756 1.331876 0.596601 -6.101941 3.046726 -6.085047 -10.052440 5.747036 7.579998 4.184655 3.995039 -3.967685 -1.631986 -3.870520 -9.845047 5.584489 1.726398 0.888694 11.111455 8.089018 20.935281 -10.346188 1.418820 -1.469110 -3.124801 1.610331 -3.420578 -11.540515 2.118723 3.032643 3.328298 15.411597 -0.802649 -3.774684 2.362451 -0.244636 1.703243 -8.448977 10.238075 -8.015436 -0.057898 -3.551482 -1.940024 -5.572018 -4.471315 -7.595904 -3.808720 14.120582 -11.854279 -12.698944 9.887074 -1.417827 3.942302 -15.024392 7.270741 -5.345406 9.897863 -2.568538 -3.367578 -1.624867 2.652058 -2.494580 4.135772 5.319584 -10.060280 6.627644 9.853052 1.148512 3.727936 2.281653 4.518267 -4.627108 -1.848934 -9.147111 9.287425 0.578307 -5.452373 -3.570968 -5.418018 5.982696 -0.753022 -0.503492 -0.201977 7.768551 -2.468647 -2.393340 8.510545 -0.193086 -6.119895 4.680512 2.223844 5.896832 -5.801208 -2.418779 -3.575272 1.056326 2.124976 3.570363 -12.967088 -6.405994 -10.647398 -11.354901 -4.574115 1.481283 5.354111 3.502568 0.095834 -13.037821 -9.284406 11.630938 -3.923804 5.172204 7.950615 9.143301 9.852529 7.254355 1.941319 -0.928829 -4.225523 1.107303 -6.616024 -3.648130 -3.235799 5.384513 -4.962660 9.315764 5.963389 1.690096 6.824796 1.117383 5.442691 -8.090509 13.453819 7.602823 -8.735647 1.824918 6.812943 10.761119 -8.333907 -7.945997 -PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/box-stacking.cpp__main = -2.777208 -6.148850 6.540795 5.966244 0.181059 3.945537 1.453167 -2.684542 2.007051 4.203502 -2.051104 4.327399 -3.118894 -0.814562 -1.133042 1.771288 -2.565410 -3.299239 -0.234551 -1.796619 -1.320926 -2.779957 -3.021806 4.885991 1.611490 0.802861 -2.366806 0.255477 -6.082660 -7.456734 -0.750526 -0.056727 2.908995 -0.716871 1.638760 -9.795580 3.947220 6.896654 -0.725038 -6.285458 0.618370 -1.711642 -2.028405 1.297581 -2.630926 1.872663 1.380071 -0.553580 -0.603775 1.615522 1.774209 0.432685 4.378513 8.480478 1.436198 6.174682 6.210750 -0.073678 1.413100 0.626784 1.761156 -0.579251 2.958630 2.032035 -0.505875 -1.695109 -0.913786 0.491222 -3.294936 1.490081 0.520630 -3.871248 -1.839792 -2.454142 -4.081467 -1.779374 -2.401402 1.400976 7.313371 -3.283933 7.654294 3.186817 3.396752 -0.121034 4.613436 -0.389422 4.852948 2.402473 -3.044694 1.405260 -1.293420 -1.792248 1.035682 3.909279 -4.942513 -2.286690 3.688120 -5.771583 -6.511356 4.414223 0.079225 -2.013399 -2.827829 -1.506766 1.650655 1.425593 -2.746645 -5.175767 -4.058760 3.470026 -1.473147 -3.387376 -1.343737 0.786553 0.567880 1.506875 -4.683156 0.578726 4.516471 -2.940647 -2.021322 4.661658 0.589146 3.407968 -1.343967 0.503782 -0.485422 2.373481 1.349994 2.245554 -0.822427 -0.341325 -6.260163 0.507868 1.143169 -1.138688 -2.797895 -1.389918 2.247053 2.678079 2.121253 4.793643 -2.105919 4.860157 3.781359 0.715769 -2.690608 -5.483150 -2.171779 -4.423928 0.611494 -2.953577 -3.530822 1.515701 3.972047 0.232554 0.322199 3.226300 -2.082258 3.310106 -0.001261 0.168193 0.643649 -2.722526 1.533773 -2.711452 -4.651393 3.528055 4.278679 2.622230 1.567748 -1.156572 0.065361 -1.048067 -3.666047 3.080200 0.846716 0.001767 5.719069 3.559467 11.539351 -3.430275 0.694839 -1.211223 -1.814735 1.150176 -1.471695 -5.606569 1.205425 1.392650 0.739061 7.106394 -0.387348 -1.778958 2.001182 -0.579007 0.415232 -4.090234 5.498714 -3.940494 -0.207602 -1.737466 -1.196713 -2.324679 -1.895740 -3.719017 -1.309209 6.732807 -6.487285 -4.575087 3.323334 0.056855 1.066982 -6.885878 5.642042 -2.434562 4.645492 -1.851764 -2.528793 0.173353 1.551565 -0.964906 1.191245 2.952564 -4.348602 2.251062 4.701482 0.461072 0.953811 1.279336 2.306202 -1.649123 -0.287432 -3.915192 3.951766 0.331036 -1.754691 -1.958879 -2.269510 2.662843 0.018003 -0.164103 0.365219 3.450237 -1.377554 -1.544730 4.296019 0.231158 -2.736218 2.321583 0.272325 3.361607 -3.201502 -1.090153 -2.327021 1.057729 1.139739 1.894328 -6.327853 -2.385368 -6.045275 -4.000368 -2.124905 2.091853 2.641912 1.298527 -0.399451 -6.481545 -4.774044 6.997106 -2.143207 1.641766 3.868444 4.162854 4.818012 2.836046 2.065677 -0.822978 -2.378639 0.329938 -2.113062 -1.132930 -0.867152 2.381839 -2.653154 4.138324 2.696101 0.378637 3.235069 1.525587 2.331943 -3.557090 6.794599 3.102579 -4.334265 1.098195 4.234446 4.046896 -5.257199 -3.566560 -PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -14.391020 -26.851041 26.873403 25.147910 2.048738 18.410648 5.980579 -11.923612 7.458679 21.602677 -8.252426 19.301754 -12.539397 -5.155396 -3.592138 7.063425 -8.273342 -13.223312 -1.095388 -8.168134 -5.634561 -11.999663 -15.731762 22.450568 5.855447 0.638841 -9.885604 2.447330 -26.571044 -36.342630 -6.274540 0.864280 12.275228 -5.840681 7.375431 -41.702790 17.309523 31.511400 -2.531109 -26.277058 1.854541 -6.434930 -9.828565 9.216627 -12.238946 8.608849 5.645066 -6.493316 -3.777328 6.826976 10.555085 1.887376 20.659178 35.979606 7.762271 28.149504 27.073341 -0.801536 6.914858 3.678520 6.982627 -2.810473 13.287437 8.241396 -1.913794 -6.166592 -2.790925 5.284093 -13.867841 5.328690 2.125981 -20.210122 -6.074277 -11.159211 -17.368044 -8.544309 -7.421423 2.899864 30.838431 -11.957084 34.438639 14.671430 14.308210 -0.505079 21.769857 -2.770317 22.590514 10.013477 -13.974215 7.021309 -2.774627 -7.550084 4.674269 21.934401 -22.600997 -5.378301 15.784751 -24.437742 -28.616894 20.232197 -0.580866 -9.259718 -14.586454 -7.540196 7.014042 4.401399 -11.154531 -23.128705 -19.567977 16.742175 -7.881255 -15.526693 -7.392785 2.156409 3.437954 9.620528 -18.829595 2.591203 20.924768 -12.340907 -11.575277 20.370430 3.861364 15.433404 -5.955823 2.637785 -1.601235 7.247818 5.098570 10.353222 -4.995589 -2.049416 -30.105363 0.538582 3.584387 -9.505092 -11.795068 -7.120727 10.978632 11.907084 10.839730 25.037727 -9.945953 23.313176 17.542478 5.523377 -10.170039 -23.848963 -9.295718 -18.154595 2.693459 -11.985832 -16.906145 4.610287 16.805140 -1.621363 -0.197061 11.632782 -7.077741 15.053257 0.179994 0.491730 2.138181 -15.492995 6.004703 -11.881898 -20.355781 15.449890 20.454415 11.797763 6.902443 -4.778566 -0.378491 -2.329312 -17.023245 13.081604 1.655456 0.941258 25.241704 15.626862 57.917552 -14.639622 3.660639 -7.003157 -8.055149 5.843683 -7.647767 -23.457970 3.305583 6.835017 2.777525 33.052563 -1.694457 -7.525149 7.743651 -1.985357 1.689266 -18.577652 26.912004 -17.245161 0.699718 -5.716729 -8.671045 -10.327470 -8.184543 -16.530485 -5.068260 28.846315 -28.537402 -21.066519 14.519505 0.327203 2.976430 -30.225295 25.302526 -10.114452 19.436519 -9.845190 -11.703408 0.381135 9.237493 -3.244920 7.010641 12.488968 -20.749924 10.935444 20.312607 0.925004 5.226998 4.900439 8.627353 -7.317841 -3.059503 -18.080474 17.787641 2.456779 -6.878969 -10.582681 -10.066465 12.551129 1.029869 -1.747004 -3.061802 15.512072 -9.643467 -11.023411 19.820694 -1.030970 -11.051175 10.832615 1.905424 13.539008 -13.752224 -5.007684 -10.462092 3.374694 6.553270 7.714753 -27.314748 -5.936689 -25.003257 -16.717414 -9.673821 12.778997 12.023796 7.543445 -1.731011 -28.541988 -20.776435 33.902688 -8.875765 6.047139 16.394909 19.542872 20.554181 11.260885 12.588531 -3.291509 -13.577085 -0.373609 -10.116091 -6.043266 -1.094397 9.848765 -10.604379 19.855210 8.465802 3.186497 14.861849 8.236511 7.115274 -15.595730 28.213240 13.072913 -17.422335 3.906708 18.003203 16.826427 -27.536165 -14.986381 -PE-benchmarks/box-stacking.cpp__min(int, int) = -0.876546 -1.017857 0.920345 0.733667 0.540435 0.634457 0.349080 0.054689 0.575886 1.075504 -0.482711 0.647732 -0.617249 -0.310051 0.309333 0.261322 -0.099229 -0.917265 0.427901 0.094490 -0.105550 -0.629093 -0.480552 0.505801 0.207840 -0.060184 -0.421066 0.010796 -1.198241 -1.359901 -0.239417 -0.154084 0.488102 -0.232424 0.288753 -1.258429 0.546521 0.885417 0.013814 -1.278893 -0.001211 -0.244405 0.007511 0.385625 0.224524 0.685832 0.871230 -0.018112 -0.083856 0.394849 0.250419 -0.505317 0.157575 0.882624 0.243397 0.901965 0.910628 -0.124758 0.099807 0.182085 0.262892 -0.534486 0.628328 0.627047 -0.593548 0.099238 0.142365 0.113560 -0.776396 0.257336 0.236275 -0.468616 -0.258291 -0.340096 -0.356253 -0.197586 0.334992 0.086172 1.315188 -0.224730 1.378366 0.650891 1.120715 -0.051378 0.672135 -0.228331 0.757463 0.301083 -0.894862 -0.117378 -0.707972 -0.652606 -0.317413 0.977627 -0.309534 0.627693 0.320387 -0.433120 -0.944672 0.597427 -0.342818 0.136083 -1.137775 0.227690 0.819613 0.648739 -0.156808 -0.867718 -0.865081 0.311885 -0.820306 -0.418219 -0.060853 -0.252549 -0.374887 0.158720 -0.645066 -0.389715 0.773221 -0.795804 -0.598152 0.698699 -0.522503 0.869122 -0.148464 0.081978 0.124101 0.262258 0.723168 0.203108 0.404337 -0.703788 -1.667565 -0.031233 0.014589 0.327468 -0.324789 -0.009506 0.346830 0.238617 0.142104 0.474740 -0.480003 0.882375 1.111386 -0.054432 -0.570777 -0.911159 0.156410 -0.454639 0.296768 -0.509938 0.027176 -0.024485 0.622288 -0.041281 0.013055 1.270420 -0.760157 0.735198 -0.185199 0.131808 -0.063869 -0.200309 0.284458 -0.472218 -0.536370 0.379917 1.116387 0.049888 0.392223 -0.602545 0.067598 -0.375680 -0.889321 0.540617 0.071221 0.250507 0.693322 0.238863 1.559131 -0.910453 -0.124031 -0.179867 0.079236 0.033529 -0.114321 -0.959997 0.388546 0.075028 0.412720 0.982195 0.040215 -0.691371 0.320857 0.071276 0.022864 -0.520505 0.839346 -0.761240 0.170610 -0.025514 -0.275242 -0.611615 -0.353060 -0.423655 0.186350 1.005685 0.233040 -1.368476 0.218383 -0.342689 0.373080 -1.479810 0.475673 -0.457548 0.531062 -0.488313 -0.067321 -0.243542 0.393334 0.394941 0.028747 0.404037 -0.434995 0.630826 0.692641 0.043356 0.173270 0.498106 0.215413 0.055145 -0.453214 -0.197265 0.217410 -0.076804 0.032518 -0.209420 -0.287772 0.850699 0.432973 -0.453469 -0.190238 0.800423 -0.683796 0.074924 0.703494 -0.251559 -0.481173 0.201267 0.179463 1.137624 -0.390972 -0.170233 -0.688082 0.085727 0.113834 0.326521 -0.948621 -0.483225 -0.046913 -1.389273 -0.550010 0.599495 0.269538 0.402483 0.205758 -0.935223 -0.347364 0.685197 -0.071232 1.194389 0.252868 0.552567 0.763083 0.371555 -0.050175 -0.623348 -0.339203 -0.288030 -0.823880 -0.346608 -0.009102 0.162929 -0.518892 0.797086 0.211504 -0.005110 0.085286 -0.063716 0.431694 -0.601983 1.131673 0.738474 -0.590292 0.081315 0.116269 1.402078 -1.105141 -0.616264 -PE-benchmarks/shortest-common-supersequence.cpp__main = -0.513850 -3.944690 4.597689 4.093393 -0.312794 2.394343 0.970278 -1.461141 1.207779 1.143939 -1.710434 2.827374 -2.048172 -0.524665 -1.061905 0.408043 -2.323443 -2.150563 -0.043182 -0.616951 -0.174214 -1.705480 -1.573713 3.803874 1.183181 2.184924 -1.303568 -0.331176 -4.424922 -2.009066 0.436724 -0.071993 1.914580 1.834651 1.509749 -4.156220 1.870048 4.071960 -0.291661 -4.279005 0.523816 -1.107454 -1.086504 -0.061129 -1.126364 1.146690 0.875204 1.042675 -0.490344 0.685694 -0.344686 0.049467 2.900664 4.055149 1.123792 3.436473 3.849318 0.026463 1.770265 -0.311482 1.187160 -0.279361 1.586807 1.301741 -0.438401 -1.327824 -1.042788 -0.194925 -1.903224 1.032245 0.765866 -0.984470 -1.918995 -1.408741 -2.787365 -0.553834 -2.372923 1.991311 4.543224 -2.152354 4.402022 2.178972 2.403443 -0.497363 2.554256 0.198853 2.399584 1.655682 -1.479011 0.982629 -3.321958 -1.087185 0.460272 -0.000763 -3.282231 -2.364306 2.066458 -4.903506 -3.956817 2.359850 0.267547 -1.489102 0.353190 -0.068346 0.901760 1.180775 -1.486493 -2.699360 -1.239570 2.063583 -0.828466 -1.861805 -0.586215 1.253981 0.507907 0.153624 -2.787428 0.795199 2.586030 -1.568588 0.380335 2.948825 0.363125 2.099456 -0.869519 -0.063091 -0.259264 1.673473 1.440350 0.663976 0.114778 -0.889477 -1.631002 1.600991 0.660247 0.113343 -2.266327 -0.796386 1.410299 1.700248 1.743886 1.901032 -0.705149 1.870784 0.821889 -0.500855 -1.625306 -3.787996 -2.081746 -2.674369 0.025839 -1.256508 -2.064080 1.021740 2.390913 1.023466 0.500496 1.111555 -1.212303 1.138903 0.371468 0.507170 0.180492 -0.252812 0.827515 -1.482513 -2.733988 2.102663 1.860375 1.516069 0.958357 -0.487445 -0.039527 -0.741258 -1.476591 1.835367 1.080636 0.351646 4.045555 2.451932 3.597531 -1.120377 -0.110358 -0.561926 -1.015725 0.280216 -0.665186 -3.523075 1.603380 0.533090 0.804395 3.982895 -0.468003 -0.316501 1.756250 -0.117379 0.320138 -2.369735 2.712172 -2.365130 -0.903489 -1.779476 0.538365 -1.522861 -1.345544 -2.734033 -1.184130 4.312617 -3.704316 -1.971892 1.632150 0.033163 0.867453 -3.252391 2.305535 -1.496558 3.146309 0.203063 -1.605097 0.181111 -0.608114 -1.111783 -0.361169 1.832117 -2.586423 1.322353 1.827839 0.582007 -0.086060 1.144834 1.255759 -1.155691 0.272712 -2.576679 1.968988 0.037220 -0.998142 -0.423415 -1.199305 1.579797 -0.100552 -0.199515 1.274218 1.797151 0.709737 -0.189768 1.887041 0.238974 -1.867807 0.692100 -0.042317 1.862512 -2.072572 -0.746376 -1.674307 0.518242 0.632725 1.152797 -4.063513 -2.493422 -3.814177 -2.147922 -1.176885 -0.934630 1.454874 1.038910 -0.333996 -4.039393 -3.439905 2.385981 -1.208785 0.433673 2.519176 1.872537 3.187901 1.834994 0.421014 -0.214712 -0.216770 0.998279 -1.175473 -0.296302 -1.657996 1.771775 -1.298205 2.273452 2.941303 -0.354020 2.091368 0.040070 2.091045 -2.380785 4.709244 2.160487 -3.803667 0.261572 1.950802 2.363472 -2.106127 -2.464538 -PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = -0.288049 -2.079608 2.822739 2.497959 -0.011664 1.065061 0.867781 -1.254736 1.607593 0.586855 -0.926394 1.297968 -1.721892 0.346693 -0.756438 0.990297 -1.902253 -1.756237 -0.184127 -0.542928 -0.367122 -1.532674 0.230498 1.200712 1.001110 1.182398 -1.175186 -0.139755 -2.520464 -1.914044 1.149944 -0.389048 1.313016 0.566811 0.231658 -4.102312 1.748182 2.190567 -0.498979 -2.789997 0.657679 -1.077053 -0.648449 -0.657521 -0.400249 0.748500 0.345405 1.162066 0.406833 0.643528 -0.010056 0.224434 0.764090 3.076366 -0.593656 1.976151 2.100500 0.207578 0.118693 0.057883 0.734304 0.280411 1.194523 1.594192 -0.632514 -1.096205 -0.426941 -0.756832 -2.063254 1.296915 0.194456 -0.298672 -1.575557 -0.505416 -1.482472 -0.074444 -0.697835 1.449829 3.292195 -1.478500 2.581147 0.705459 1.348252 -0.431880 1.037933 0.010968 1.483773 0.978835 -1.033789 -0.380060 -2.090328 -0.934823 0.220022 0.256390 -1.284627 -1.488166 1.192152 -2.134689 -2.287413 0.814628 0.320123 -0.643714 -0.933053 0.132932 0.981926 1.073650 -0.785947 -1.998558 -1.003200 0.921950 -0.359130 -1.040839 -0.231054 0.461312 -0.492399 -0.568661 -2.252222 -0.101733 1.045591 -1.302853 -0.162208 1.569318 -0.816800 0.801777 -0.430150 0.124325 -0.382098 1.520167 0.426577 0.771865 1.037076 -0.261106 -1.611747 0.554947 0.879853 1.762623 -1.198653 -0.126709 0.122514 0.737096 -0.166711 0.247648 -0.624082 0.910306 1.303819 -0.735012 -1.457043 -1.712474 -0.448500 -2.236472 0.483699 -1.449187 -0.504440 0.855581 1.747723 0.693813 0.944797 2.475231 -1.986717 1.323949 0.085988 0.205576 0.721750 0.268705 0.782347 -0.979567 -1.869313 1.369720 0.883224 0.537050 0.415762 -0.342519 0.045378 -1.367140 -1.388447 1.323940 0.671625 -0.026717 1.880007 1.117767 2.206365 -1.680612 0.408860 0.538456 -0.430094 0.215561 -0.125225 -2.456599 1.271945 0.221635 0.843736 2.295497 -0.105454 -1.085967 0.786409 -0.123878 0.325806 -1.457523 1.285127 -1.531103 -0.492662 -1.373776 0.248570 -0.480181 -0.989589 -1.096698 -0.264336 2.644537 -1.401053 -2.042411 1.530117 -0.501904 1.039322 -3.010980 1.847893 -1.187967 1.738998 -0.279060 -0.391209 0.144205 -0.288135 -0.894742 -0.116399 1.142596 -0.973057 0.899193 2.113891 0.602129 -0.016117 0.499507 1.144820 -0.314173 0.559835 -1.168288 1.429215 -0.120228 -0.830383 -0.012841 -0.877673 0.887925 -0.499041 -0.006474 1.796421 1.652553 0.622435 1.141462 1.194360 1.071971 -1.326347 0.937849 0.038711 1.359712 -0.933183 -0.386777 -0.477013 0.566240 -0.278610 1.258308 -2.318972 -2.649627 -1.904134 -2.621464 -0.467290 -0.607650 1.058670 -0.082523 0.003746 -2.600663 -1.591663 1.158457 -0.815766 2.002521 1.453028 1.047277 1.597340 1.538650 -0.853817 -0.248660 0.053828 0.735313 -0.740041 -0.416087 -1.198417 1.278805 -1.146492 0.964721 2.025010 -0.509978 0.820927 -0.622755 1.953497 -1.192653 3.225182 1.305605 -1.639851 0.949024 0.838138 2.233801 -0.230771 -1.468834 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -5.034245 -7.742612 6.752975 6.318249 3.544252 5.316010 3.838067 -2.844154 6.466043 8.182072 -2.469042 4.035609 -4.690749 -1.562041 1.787264 2.660738 -1.356941 -5.939053 2.067998 -1.432976 -1.125310 -6.292218 -2.834343 3.577991 0.962947 -2.237522 -2.487407 0.030343 -8.989890 -9.374423 0.971742 -1.390932 3.668267 -2.504425 1.125736 -14.790009 5.525445 6.859052 -0.677022 -9.584690 -0.365060 -2.814696 -0.818984 2.926536 1.169155 3.419272 3.444828 1.131240 0.114311 2.799855 3.440287 -1.623313 2.129548 10.768936 -0.712474 7.813362 6.704408 -0.430380 0.285388 2.550759 2.165832 -1.486767 5.753950 6.149759 -3.303546 -0.754541 0.668344 0.761266 -7.861236 2.315534 1.865912 -3.885822 -2.531941 -1.466774 -2.238232 -2.148845 -1.579017 0.767769 11.176752 -2.145141 11.567918 4.620475 7.953093 -0.445779 6.220659 -1.294861 7.555178 2.384197 -7.589916 -0.863611 -6.334036 -3.927486 -0.593650 5.249583 -3.068110 1.616586 2.246507 -1.709834 -7.643723 4.923959 -1.554577 0.472572 -8.688041 -0.315475 5.767472 3.214701 -2.528437 -8.490493 -7.698356 3.652899 -5.574525 -4.219567 -1.152923 -2.456662 -1.997309 -0.342125 -5.054496 -2.999205 5.922283 -5.540876 -5.639464 6.025154 -4.425161 4.652434 -1.431387 0.378124 0.053526 1.370893 2.633158 2.690100 4.323576 -5.202023 -14.416992 0.814434 0.584436 3.636686 -1.443686 -0.331910 2.352371 2.586433 0.868172 5.397381 -1.888577 6.156961 7.074057 0.352859 -3.190734 -6.236745 2.895342 -4.512202 3.501779 -4.532242 -0.422826 -0.937749 5.825132 0.029862 1.178303 6.621080 -6.578385 7.453758 -1.580801 1.999107 0.978040 -1.040958 2.497553 -3.550886 -5.069009 2.951715 7.916749 0.204040 2.423745 -3.956818 -0.001248 -2.793214 -6.454157 2.326800 -0.017722 0.521494 5.935539 2.294049 17.406169 -8.888964 1.108913 -0.536764 -0.028488 1.570170 -1.834022 -7.506908 2.732954 1.218148 2.234073 8.547619 -0.301846 -5.452482 0.791040 0.620853 0.316515 -4.394642 6.351967 -5.706266 -1.199573 -0.889877 -1.748140 -4.122551 -3.718535 -3.540831 2.147658 8.021959 0.114273 -9.411543 4.112087 -4.445112 1.477490 -11.475005 8.938154 -4.128298 2.606331 -5.472063 -1.838994 -1.890756 5.430269 0.466992 1.473684 3.843775 -4.773330 5.770605 7.706038 0.827981 2.416499 2.577761 2.100444 -0.227291 -3.063010 -3.495894 4.677515 -0.471319 -0.450735 -2.229561 -3.581727 7.296505 1.425943 -2.296668 -0.012083 7.300664 -4.814815 0.015334 6.026481 -1.108442 -3.726147 3.553169 1.276461 5.999654 -2.591835 -0.490673 -3.822577 -0.868160 0.548845 3.518127 -7.315092 -3.040445 -0.742659 -8.062817 -3.085208 4.906535 2.371309 2.550151 1.999598 -10.150109 -3.001242 5.033518 -1.884680 4.758966 3.205450 5.204469 5.350056 3.911408 0.620173 -3.527966 -3.327550 -2.414602 -6.007805 -3.470401 0.245818 2.490310 -4.256326 6.661558 1.310357 0.895720 0.821153 -0.676509 3.903930 -3.682090 9.237856 5.263479 -2.740070 1.316560 2.156141 11.132839 -7.599088 -4.378288 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = -0.876290 -2.453543 2.794497 2.442816 0.256035 1.394413 0.927615 -1.037364 1.476473 1.112982 -0.942756 1.522711 -1.661761 -0.120218 -0.427681 0.745424 -1.469558 -1.879568 0.118501 -0.521544 -0.377997 -1.488075 -0.544277 1.553359 0.757320 0.525873 -1.019172 -0.092673 -2.918820 -1.986675 0.762093 -0.350634 1.281590 0.089076 0.501251 -4.241371 1.673960 2.409897 -0.363863 -3.004750 0.341286 -1.081186 -0.486825 -0.224562 -0.442743 0.770414 0.738852 0.816931 0.096794 0.629203 0.165658 -0.043834 0.837821 3.451548 -0.170743 2.265193 2.418905 0.082031 0.300751 0.234596 0.777220 -0.175727 1.364133 1.368821 -0.776903 -0.785068 -0.300340 -0.463954 -1.910439 0.942743 0.495307 -0.734695 -1.263019 -0.635954 -1.592716 -0.454313 -0.738898 1.105016 3.353197 -1.507713 3.078653 1.133505 1.850030 -0.139289 1.576793 -0.029855 1.874006 0.957754 -1.409808 -0.086437 -2.152413 -0.910072 0.073025 0.670024 -1.432185 -1.085686 1.223389 -1.891869 -2.512395 1.315778 0.009856 -0.474787 -1.276088 -0.011036 1.138184 1.078779 -0.993436 -2.148128 -1.421397 1.153530 -0.820925 -1.175637 -0.181380 0.219998 -0.304129 -0.442169 -2.142280 -0.164760 1.582465 -1.435026 -0.610599 1.905342 -0.914427 1.207125 -0.477759 0.053589 -0.264870 1.318658 0.785303 0.631068 0.739951 -0.784962 -2.535192 0.463594 0.588051 1.407876 -1.071167 -0.144060 0.569909 0.902757 0.310601 0.844847 -0.574211 1.405039 1.209962 -0.437920 -1.318381 -2.134869 -0.377611 -1.897077 0.521185 -1.407582 -0.632685 0.717777 1.810941 0.679137 0.578682 2.276252 -1.733238 1.608970 -0.103407 0.270894 0.440655 -0.181536 0.805269 -1.094586 -1.816898 1.294071 1.451551 0.628741 0.616422 -0.700041 0.087515 -1.152331 -1.594223 1.027849 0.536708 0.025365 2.139612 1.191533 3.073295 -1.988925 0.270400 0.051270 -0.409340 0.299055 -0.331598 -2.461432 1.118251 0.353123 0.550878 2.532973 -0.122462 -1.235317 0.739008 -0.079047 0.252011 -1.504568 1.639315 -1.638692 -0.477928 -1.023743 0.058273 -0.967710 -1.034507 -1.407999 -0.315160 2.793047 -1.534074 -2.319103 1.308785 -0.434477 0.944544 -3.199873 2.054779 -1.224146 1.861320 -0.514165 -0.599699 -0.065107 0.306651 -0.512029 0.057608 1.238704 -1.409834 1.113814 2.033990 0.481887 0.310463 0.725884 1.046993 -0.398079 0.003946 -1.290812 1.403961 -0.155016 -0.811147 -0.231408 -0.977382 1.275571 -0.020503 -0.129729 1.103064 1.704130 0.022794 0.595464 1.576441 0.438953 -1.300697 0.721584 0.108424 1.672589 -1.073177 -0.324051 -0.933943 0.386242 0.048282 1.044491 -2.533633 -2.087321 -1.767035 -2.469715 -0.643433 0.067536 0.853792 0.336624 0.144004 -2.891654 -1.599249 1.429734 -0.832683 1.684354 1.452994 1.359002 1.896153 1.454749 -0.344978 -0.622095 -0.106935 0.342052 -1.099928 -0.489630 -0.913519 1.151469 -1.278928 1.470973 1.640230 -0.189602 0.822937 -0.219399 1.666147 -1.337965 3.204113 1.500322 -1.839722 0.614377 1.196091 2.456092 -1.135271 -1.555514 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = -1.328613 -3.425389 3.329059 2.999682 0.414465 2.158271 1.290471 -0.932308 1.129683 1.623860 -1.100242 2.217781 -1.864275 -0.793170 -0.619661 0.337165 -1.107935 -2.193661 0.283574 -0.495925 0.035317 -1.566434 -1.593576 2.992758 0.709632 0.198902 -0.988768 -0.253075 -4.342695 -2.193692 -0.016184 -0.116227 1.546845 -0.046814 1.002247 -3.610532 1.724106 3.604613 -0.159853 -3.684770 0.296422 -1.082645 -0.623771 0.423116 -0.945581 1.074415 0.978700 0.173217 -0.425147 0.645455 0.346390 -0.028626 1.749728 3.489660 0.670109 3.109974 3.089697 0.145317 1.170982 0.098476 0.893532 -0.461440 1.527268 1.079985 -0.747996 -0.661209 -0.708595 0.136851 -1.838445 0.535008 0.692099 -1.227662 -1.237528 -0.673540 -2.397260 -0.802625 -0.566336 0.794701 3.717526 -1.507553 4.099122 1.826583 2.276187 -0.221001 2.398511 0.063875 2.050674 1.169053 -1.564184 0.647705 -2.784274 -0.621072 0.040319 0.915419 -2.453688 -1.226504 1.612140 -2.945129 -3.395768 2.088084 -0.252616 -0.966851 -0.827526 -0.007868 1.017783 1.208927 -1.444562 -2.588881 -1.654611 1.948186 -1.003342 -1.630748 -0.189598 0.403969 0.276991 -0.322907 -2.116161 0.211089 2.469057 -1.604617 -0.579227 2.574817 -0.451099 2.050824 -0.592375 -0.088232 -0.236287 1.075779 1.312441 0.505550 -0.011806 -1.508658 -2.904488 0.480303 0.235505 0.378135 -1.509048 -0.430002 1.284814 1.398056 1.561239 1.962699 -0.506949 1.777940 0.918890 -0.217211 -1.038895 -3.025035 -1.060722 -1.881622 0.325866 -1.177028 -1.489287 0.683796 2.056914 0.385911 0.262634 1.758242 -0.832628 1.462571 0.086125 0.187821 0.126969 -0.845179 0.759725 -1.172215 -2.318156 1.682773 2.037014 1.370095 0.767116 -0.602597 -0.038917 -0.629185 -1.671400 0.874018 0.506552 0.253580 3.269062 1.762823 3.472024 -1.460679 -0.022771 -0.653247 -0.736029 0.530261 -0.768827 -2.931542 0.942821 0.590232 0.143469 3.362848 -0.385770 -0.893184 1.394118 -0.116962 0.335970 -2.189338 2.526521 -2.086095 -0.425270 -1.226224 -0.206956 -1.424583 -1.300564 -2.354729 -0.835747 3.465582 -2.119551 -2.451983 0.960914 0.069467 0.662716 -3.302579 2.056395 -1.279264 2.492401 -0.177350 -0.979784 0.064960 0.611442 -0.411065 -0.169763 1.523256 -2.404362 1.620199 1.733926 0.399833 0.120879 1.054952 1.012211 -0.737252 -0.368314 -2.131384 1.596607 -0.142417 -0.977064 -0.256457 -1.134691 1.705203 0.336586 -0.288627 0.458664 1.721549 -0.286686 -0.317356 1.975540 -0.173389 -1.389530 0.480310 0.113177 1.951406 -1.444338 -0.358724 -1.738449 0.284650 0.743130 0.922333 -3.303366 -1.687418 -2.319626 -2.543727 -0.719135 0.096761 0.978740 1.094346 0.112603 -3.747334 -2.472583 2.295018 -1.029232 1.146962 1.969371 1.772767 2.642452 1.397939 0.415955 -0.506534 -0.274570 0.464856 -1.367198 -0.568218 -0.739703 1.127624 -1.470420 2.235916 1.681392 0.005847 1.430424 -0.050560 1.332916 -1.927019 3.797356 1.863247 -2.639851 0.344904 1.546334 2.463446 -2.377106 -1.907169 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = -0.221073 -1.428355 1.700143 1.456907 -0.066158 0.760866 0.497988 -0.522151 0.957523 0.258929 -0.571823 0.858018 -0.975566 0.058330 -0.412460 0.384858 -1.043344 -1.065023 0.010502 -0.289632 -0.212436 -0.857704 -0.179770 0.934880 0.519452 0.698584 -0.604147 -0.169112 -1.699270 -0.658973 0.580185 -0.245468 0.745700 0.270298 0.353670 -2.394902 0.835112 1.323727 -0.230936 -1.878812 0.261540 -0.639856 -0.132273 -0.339221 -0.195680 0.432979 0.393749 0.765534 0.132836 0.337909 -0.227539 0.038435 0.438328 1.929844 -0.136311 1.214976 1.375345 0.088378 0.152534 -0.044284 0.491052 -0.053545 0.673894 0.726593 -0.386239 -0.576403 -0.373092 -0.428350 -1.078789 0.595746 0.228083 -0.112314 -0.877785 -0.399650 -1.059857 -0.212742 -0.679740 0.895894 1.919054 -1.012636 1.633649 0.571184 1.054298 -0.065529 0.754850 0.078649 0.834779 0.585866 -0.705423 0.074486 -1.417627 -0.458632 0.052344 -0.169548 -0.834483 -1.190954 0.754526 -1.392346 -1.427279 0.689649 0.134604 -0.266595 -0.388760 -0.008690 0.574032 0.760150 -0.687513 -1.159637 -0.626926 0.590632 -0.170610 -0.590030 0.079274 0.289211 -0.146254 -0.542976 -1.257217 -0.008693 0.862005 -0.783450 -0.006908 1.089322 -0.500538 0.683514 -0.259911 0.023597 -0.192796 1.024124 0.556711 0.303150 0.328089 -0.373952 -0.994137 0.407409 0.314916 1.002136 -0.687425 -0.116813 0.249036 0.492763 0.182101 0.181796 -0.254820 0.477252 0.621231 -0.383530 -0.776029 -1.217395 -0.363474 -1.215642 0.229916 -0.745890 -0.310952 0.578914 1.003965 0.618671 0.427249 1.304125 -0.946284 0.598508 -0.026900 0.094431 0.305517 0.322002 0.488678 -0.572051 -1.020417 0.737842 0.596237 0.432679 0.364518 -0.345673 0.071205 -0.697162 -0.628990 0.633472 0.574482 -0.005597 1.291571 0.733597 0.933768 -0.993951 -0.002834 0.098353 -0.331129 0.137856 -0.128088 -1.447212 0.772285 0.154221 0.332917 1.240900 -0.163834 -0.476712 0.633660 -0.116014 0.187307 -0.817749 0.664149 -0.946366 -0.403895 -0.811988 0.383826 -0.552508 -0.507221 -0.880179 -0.309808 1.617743 -0.846329 -1.051291 0.733070 -0.145255 0.678080 -1.619373 0.906734 -0.663356 1.177185 -0.096629 -0.259906 0.057632 -0.128512 -0.367866 -0.179337 0.725375 -0.753048 0.451592 1.044304 0.327078 -0.058427 0.450359 0.714795 -0.273090 0.206844 -0.731329 0.721254 -0.159715 -0.476576 0.109414 -0.494363 0.616617 -0.131722 0.041763 0.982736 0.842653 0.397952 0.567709 0.810912 0.322881 -0.771189 0.337065 -0.024448 0.961857 -0.666677 -0.156691 -0.527590 0.447161 -0.009241 0.545788 -1.473248 -1.485525 -1.207371 -1.384670 -0.339605 -0.374527 0.351069 0.076647 -0.012919 -1.580678 -1.012274 0.605804 -0.497092 0.862440 0.835194 0.620143 1.167637 0.894082 -0.442670 -0.265343 0.230970 0.332980 -0.462475 -0.142643 -0.763020 0.663355 -0.770157 0.626294 1.253218 -0.277424 0.491331 -0.178477 1.169949 -0.785311 1.893267 0.873284 -1.200124 0.422055 0.703979 1.395601 -0.236355 -0.911820 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -2.892491 -4.697190 3.399464 3.054108 1.389242 3.168953 2.164981 -0.632080 2.650592 3.020207 -1.245080 2.842982 -2.366275 -1.266230 -0.032327 0.101280 -0.438581 -2.974156 0.962060 -0.452035 -0.180045 -2.889874 -2.465299 3.317460 0.363110 -0.644622 -1.170036 -0.368131 -6.152327 -3.107542 0.180739 -0.364858 1.906991 -2.028366 0.933905 -7.281974 1.787013 4.471166 -0.114838 -5.787273 0.033813 -1.505622 -0.100156 1.576196 -0.128718 1.472953 1.846613 0.289371 -0.571026 0.841589 0.650254 -0.453669 1.270846 5.619313 0.231608 4.329434 4.293923 0.000499 0.557084 0.594919 1.098156 -1.118823 2.604865 2.132702 -1.697815 -0.207344 -0.146208 0.671568 -3.542235 0.537208 1.084441 -1.694595 -1.196300 -0.857787 -2.801552 -1.314028 0.972651 0.311865 5.277169 -1.224905 6.215771 2.340230 4.007740 0.124653 3.311950 -0.270090 2.936808 1.235725 -3.320680 0.273258 -4.226275 -0.851871 -0.623364 2.204747 -2.282039 -0.498599 1.724045 -2.374315 -4.186714 2.672952 -0.898629 -0.233325 -3.215841 -0.358635 2.277518 2.029745 -1.860266 -4.073674 -3.970637 2.712142 -2.190355 -2.075172 0.183694 -0.676742 -0.235414 -1.046851 -2.136976 -0.731260 3.876812 -2.560949 -2.342372 3.449615 -2.029810 3.151003 -0.648060 0.254967 0.018417 0.746566 2.149355 0.513987 1.034690 -3.083815 -6.087280 -0.225587 -0.608597 2.047178 -1.496005 -0.786613 1.685966 1.467566 2.031831 2.542316 -0.746313 2.358138 2.544153 0.144466 -0.907242 -3.906630 0.587550 -2.265924 0.980853 -1.496438 -0.774106 0.076947 2.659707 0.224279 0.046207 2.968854 -1.894379 2.716555 -0.206997 0.187425 0.070498 -0.572328 1.124080 -1.631831 -2.830182 1.501132 3.543531 1.165387 1.113805 -1.452821 -0.215065 -0.770971 -2.672773 0.684930 0.674322 0.659685 3.866307 1.770894 6.955807 -4.038903 -0.195345 -1.144069 -0.824261 0.925514 -1.330231 -3.746853 1.354866 0.888676 0.396546 4.574728 -0.527972 -1.996027 1.461335 0.217752 0.291755 -2.513855 3.574443 -3.060799 -0.894544 -0.929100 -0.964647 -2.367131 -1.583489 -3.238351 -0.147194 4.336358 -0.766029 -4.464906 1.284430 -0.814394 1.033864 -5.638490 3.216658 -1.709978 2.570503 -1.722997 -0.752290 -0.555268 2.249461 0.270852 0.218404 1.950399 -3.660703 2.827869 3.075945 0.319041 0.724861 1.439400 1.067984 -0.432772 -1.624494 -2.515553 1.774775 -0.328401 -0.983097 -0.439071 -1.608367 3.657669 1.053717 -0.731370 -0.126665 3.160591 -1.750963 -0.417224 3.646046 -1.192105 -1.631774 0.884899 0.413413 3.252330 -1.487642 -0.182626 -2.782373 0.403513 1.145639 1.315641 -4.076726 -1.702811 -1.139412 -4.584743 -1.069046 1.345456 0.482591 1.751873 0.692477 -5.804284 -2.223587 2.249926 -1.013986 2.384205 1.911856 2.595360 3.377845 1.761032 0.303098 -1.327846 -0.602586 -0.679987 -2.832282 -1.457255 -0.225499 0.845080 -2.116718 3.430577 1.102312 0.349829 1.092911 0.248515 1.623755 -2.232097 5.036881 2.896208 -2.535695 0.362819 1.098815 5.208751 -3.996284 -2.286407 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = -2.493337 -7.720032 8.851836 7.868557 0.031580 4.681633 2.116610 -3.427088 3.328671 2.784182 -3.491262 5.241437 -4.794349 -0.671576 -0.837587 1.454255 -5.021396 -5.243129 -0.172858 -1.527536 -1.071678 -4.033178 -2.869583 6.353941 2.177193 2.863020 -3.138403 0.899021 -8.725912 -6.119440 1.797112 -0.417114 4.125666 1.674027 2.393031 -12.802638 5.217314 8.411668 -0.774728 -9.023440 0.893783 -3.069394 -2.708351 -0.621741 -2.468456 2.613506 1.907133 2.365050 -0.589846 1.483305 0.032051 -0.205857 3.169165 9.796498 0.999925 7.469417 8.406529 -0.000235 1.570786 0.087854 2.284160 -0.419329 4.018358 3.981809 -2.321932 -2.531602 -0.559140 -1.043470 -5.341473 2.599129 2.150615 -3.156066 -3.427014 -2.775671 -4.950937 -1.179641 -0.073457 3.191353 10.231566 -4.267218 9.609025 3.748110 5.178251 -0.591786 5.417725 -0.289122 6.373468 3.213386 -3.970111 0.558292 -6.576366 -3.364004 0.953498 2.882445 -5.449959 -2.411238 3.684230 -7.298046 -7.919350 4.139747 0.093524 -2.575920 -3.099259 -0.134155 3.139520 2.459929 -2.363805 -6.040165 -3.908177 4.215501 -2.969812 -3.944995 -1.883154 2.263363 -0.409887 -0.523140 -6.795636 0.537394 5.522379 -3.719580 -0.877702 5.808325 -2.052328 3.793608 -1.867610 -0.156008 -0.752019 3.816985 2.180243 1.375041 1.633489 -2.553220 -5.774669 1.336105 1.476852 3.161989 -4.028333 -1.710221 2.832718 3.110317 1.735259 3.496688 -2.043782 4.901080 3.162286 -0.701190 -3.963284 -7.250579 -2.909478 -6.174999 1.186230 -4.100196 -3.244583 2.566112 5.525741 1.818465 1.212223 6.063106 -4.471752 4.997439 0.105364 0.925887 0.934468 -1.159656 2.092662 -3.544250 -5.714433 4.867739 3.913608 2.503053 2.083634 -1.757547 0.140140 -3.027871 -5.488644 4.181213 1.227141 0.988995 7.256824 4.268519 10.972361 -4.733251 1.061579 -0.484375 -1.598212 0.785953 -0.817212 -7.154320 2.849618 1.202474 1.968924 9.300414 -0.325144 -3.220710 1.873312 0.292273 0.576841 -5.158121 6.349381 -4.762598 -0.461450 -3.268635 -0.121547 -2.844348 -3.117304 -4.971365 -1.418990 8.942918 -6.094699 -7.669657 4.135966 -0.576229 3.448007 -9.701550 5.472550 -3.705154 6.968530 -1.247775 -2.693010 0.519214 -0.970414 -2.001715 1.116954 3.735097 -4.415537 2.650011 5.304953 1.308658 0.688990 2.026800 2.577723 -1.673937 0.286717 -4.708434 4.153137 0.193238 -2.220327 -1.388256 -2.944320 3.455328 -0.055707 -0.593002 2.440187 5.129454 0.532823 0.643044 4.672845 0.785787 -4.050346 1.996413 0.500933 4.365070 -3.577220 -1.633228 -2.853565 1.556346 1.011892 2.922881 -8.080468 -6.063443 -6.556791 -7.639815 -2.565489 0.506916 3.320922 1.789573 0.001399 -8.434492 -5.374218 5.848813 -2.475815 6.628932 4.833156 4.628596 5.930820 3.861412 -0.112710 -1.670791 -0.399423 1.712802 -3.331388 -0.784927 -3.446055 4.061416 -3.046451 4.840721 5.705933 -0.593041 3.581845 -0.942358 5.422427 -4.338891 9.950361 4.411204 -7.031169 1.113003 3.402306 6.037780 -4.118380 -5.024716 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -0.918485 -1.859294 1.596255 1.625216 1.227078 1.230908 0.646831 -0.386220 1.269828 2.045841 -1.009073 1.015170 -1.106373 -0.690963 1.048976 0.623934 -0.201666 -1.679706 0.826927 0.250895 0.363328 -1.351795 -0.420342 0.935966 0.363481 -0.591008 -0.460480 0.077108 -2.235117 -2.238927 -0.052542 -0.361259 0.943051 0.247388 0.406826 -1.382646 1.334202 1.575392 0.050632 -2.473370 -0.130544 -0.464159 -0.284529 0.595808 0.697340 1.361789 1.249799 0.038606 -0.183698 1.029697 0.363594 -0.920475 0.471586 0.717568 0.405677 1.671106 1.570658 -0.197503 0.450738 0.458846 0.584190 -0.532955 1.406983 1.388311 -0.915059 0.006907 0.001807 0.196353 -1.694090 0.524512 0.174406 -0.660322 -0.612621 -0.300590 -0.443985 -0.063442 0.551559 0.455282 2.348327 -0.380172 2.522728 1.256115 1.925566 -0.456445 1.211238 -0.361227 1.300212 0.741377 -1.652640 -0.467654 -2.085610 -1.939940 -0.412015 0.838810 -0.567592 1.740904 0.304676 -0.840564 -1.610774 1.030252 -0.556969 0.132619 -2.003172 0.514338 1.513364 1.156206 -0.000571 -1.520091 -1.147721 0.659776 -1.480592 -0.991254 -0.589688 -0.190045 -0.886136 0.339901 -1.199593 -0.931769 1.364316 -1.506068 -0.860507 1.180484 -1.161021 1.245194 -0.508328 -0.194065 0.166544 0.282958 0.939553 0.644686 1.791841 -1.653668 -2.931504 0.590231 0.145714 0.391288 -0.443261 0.529998 0.731778 0.516598 0.165694 1.102607 -0.639403 1.335322 1.465417 -0.122242 -0.974057 -1.538049 0.268510 -0.761466 0.922856 -1.040286 0.364404 0.181119 1.392976 -0.048323 0.260417 2.087665 -1.659402 1.135260 -0.381909 0.697180 -0.127971 -0.254702 0.404460 -0.828629 -0.974622 0.935850 2.085638 -0.427960 0.899046 -0.994839 0.225870 -0.837179 -1.796448 0.877601 -0.194827 0.356788 1.312965 0.280919 2.028411 -1.309648 -0.108708 -0.063490 0.366078 0.146954 -0.333389 -1.858897 0.932136 -0.138497 1.387863 1.808223 0.030426 -1.240123 0.136687 0.228667 -0.097323 -0.829601 1.437312 -1.496758 0.208055 -0.035426 -0.518858 -0.829911 -1.149275 -0.468128 0.948357 1.792308 1.429471 -2.329264 0.556005 -1.290170 0.387353 -2.688542 0.919622 -1.088808 0.762471 -0.535319 -0.292521 -0.541460 0.418747 0.350916 -0.407571 0.923916 -0.773301 1.491731 1.074673 0.148982 0.057900 0.847906 0.083777 0.027062 -0.741035 -0.523305 0.562814 -0.199518 0.273647 -0.583973 -0.755420 1.834649 0.365335 -1.178967 -0.121654 1.358454 -1.156811 0.358707 1.058023 -0.267789 -1.110270 0.735996 0.440612 1.798786 -0.553464 -0.314241 -1.036364 -0.389728 0.132997 0.854238 -1.590381 -0.913100 -0.025530 -2.223347 -1.091503 0.607049 0.789259 0.572189 0.562258 -1.865097 -0.611558 0.327799 -0.150886 1.341766 0.617734 1.024791 1.214407 0.603013 -0.003722 -0.990843 -0.857715 -0.511525 -1.760093 -0.955386 0.165969 0.410169 -0.704114 1.385087 0.429177 0.195100 -0.032306 -0.536523 0.571286 -0.819595 1.766701 1.369727 -0.809003 0.080499 -0.062628 1.972695 -1.969176 -1.171297 -PE-benchmarks/overlapping-subproblems-property.cpp__main = -0.836273 -1.791464 1.643002 1.396477 0.081466 1.056319 0.493808 -0.347645 0.925242 0.353873 -0.723402 0.840433 -1.200262 -0.394684 0.023705 -0.064430 -0.915421 -1.380129 0.317779 -0.182235 -0.151172 -1.005780 -0.794729 1.412077 0.233885 0.455181 -0.451271 0.096268 -2.102783 -0.470639 0.469703 -0.288274 0.868468 0.728888 0.621240 -2.465600 0.813418 1.449231 -0.081675 -1.951140 -0.087725 -0.906546 -0.017266 -0.382400 -0.274154 0.536084 0.791088 0.526753 -0.088421 0.077134 -0.303766 -0.517793 0.094452 1.844298 0.155451 1.426400 1.613986 -0.068344 0.305818 0.022735 0.506145 -0.450254 1.026021 0.843048 -0.948577 -0.261110 -0.048101 -0.479643 -1.147639 0.458156 0.578333 -0.199694 -0.624204 -0.464356 -1.261656 -0.538056 -0.001929 0.674494 2.173397 -1.025285 2.182942 0.973634 1.610574 0.076592 1.369079 0.044668 1.440316 0.555586 -1.224682 0.333715 -1.960467 -0.667033 -0.157713 0.353865 -0.772377 -0.368633 0.593166 -1.618994 -1.711262 0.957415 -0.288181 -0.058573 -0.913962 0.107776 0.902726 0.752611 -0.770010 -1.412814 -0.848144 0.705578 -0.874143 -0.675678 0.035142 0.395200 -0.179499 -0.684092 -1.320707 -0.252114 1.235297 -1.079082 -0.140232 1.495437 -0.831933 1.090100 -0.274358 -0.189886 -0.124077 0.987625 0.736714 -0.041346 0.314827 -1.090274 -1.564165 -0.059491 0.071599 1.248675 -0.657521 -0.355270 0.780726 0.603983 0.351503 0.332402 -0.244567 0.911579 0.470590 -0.294799 -0.705428 -1.602328 -0.385037 -1.225385 0.251191 -0.877549 -0.367638 0.649493 1.207623 0.722889 0.197249 1.584145 -0.779621 1.071656 -0.265792 0.180115 0.116043 0.110740 0.603389 -0.744878 -1.015319 0.833773 0.871721 0.541920 0.623390 -0.837416 0.052143 -0.748680 -1.251065 0.545920 0.376998 0.219770 1.568867 0.776139 1.214488 -1.496808 0.184576 -0.215472 -0.061320 0.214529 -0.118616 -1.499345 0.727569 0.213516 0.018097 1.418258 -0.153169 -0.854927 0.385394 0.054252 0.185488 -1.098330 0.866411 -1.077116 -0.113630 -0.796542 0.305784 -0.983692 -0.836764 -1.080756 -0.309155 1.816078 -0.776383 -1.562793 0.635594 0.162807 1.118307 -2.039198 0.569702 -0.838483 1.705146 -0.361000 -0.503842 -0.031868 0.073971 0.060256 -0.043220 0.844347 -0.976353 0.660010 0.811442 0.328031 0.347171 0.793300 0.647661 -0.127634 -0.319335 -0.825191 0.587576 -0.081692 -0.470512 0.040801 -0.711552 1.105199 0.427401 -0.078135 0.572126 1.334354 0.082807 0.465798 1.144570 -0.262267 -0.794638 -0.121444 0.084702 1.324412 -0.749285 -0.167703 -0.993006 0.392451 0.190462 0.416613 -1.717782 -1.549653 -1.021173 -1.512185 -0.655000 0.158585 0.261461 0.655549 0.322072 -1.822196 -0.780091 0.655331 -0.575958 1.546382 0.736207 0.945684 1.438569 0.900857 -0.293005 -0.909773 0.479022 0.279537 -1.008562 0.035087 -0.939502 0.654489 -0.963540 1.247032 1.103138 -0.181599 0.370474 -0.136051 1.405457 -0.970211 2.056407 1.145304 -1.650026 0.226960 0.844929 1.513540 -0.581503 -1.060660 -PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -2.879663 -4.756387 3.656144 3.294914 1.153353 3.213122 1.281935 -0.623905 1.076886 3.307673 -1.712628 2.852047 -2.435473 -2.081111 0.513269 -0.210989 -0.455216 -2.910503 0.969978 -0.319970 -0.003011 -1.843352 -3.455790 4.322289 0.421015 -0.852914 -0.827678 0.482594 -5.499815 -3.810487 -1.644903 -0.103468 1.851117 -0.467102 1.785835 -3.663019 2.113758 4.912285 0.139165 -4.529916 -0.402753 -1.302722 -0.728170 1.278991 -0.973145 1.702552 2.323861 -0.726797 -1.257246 0.809474 0.649380 -1.197705 1.998248 3.682136 2.110169 4.346984 4.571165 -0.179678 1.512211 0.421984 1.128730 -1.722686 2.394577 1.039891 -1.630213 0.050814 -0.020238 0.858400 -1.803786 0.000390 1.212922 -2.385992 -0.391705 -1.461115 -3.088433 -1.548683 1.357088 -0.138715 4.658866 -1.554913 5.813117 3.287455 3.498856 0.365627 3.989950 -0.309709 3.466190 1.445830 -2.900736 1.346063 -3.095954 -1.650613 -0.281093 2.932993 -2.878145 0.500742 1.803409 -4.108080 -4.627358 3.298612 -1.179398 -0.827397 -2.438521 -0.291519 1.824488 1.315950 -1.704365 -3.314214 -2.573973 2.402816 -2.635729 -2.251183 -0.431695 0.460121 0.320893 0.789412 -2.566780 -0.253121 4.030300 -2.557796 -1.424381 3.598113 -0.538985 3.679491 -0.909117 -0.264907 0.183745 0.636972 2.040235 0.443034 -0.347595 -2.512570 -4.640921 -0.600078 -0.405540 -0.844272 -1.596035 -0.692635 2.840617 1.910932 2.451988 3.722398 -1.394643 3.565096 1.226304 0.508209 -1.045357 -4.403899 -1.433964 -1.723617 0.639932 -1.441720 -2.291718 0.338387 2.720527 -0.197449 -0.657946 2.448921 -0.478660 2.080712 -0.353505 0.437128 -0.525897 -2.402245 1.054689 -1.830662 -2.649481 2.255482 3.871143 1.595324 1.581965 -1.672271 0.205583 -0.542819 -3.117150 0.828788 -0.218335 0.397042 4.387472 2.071411 5.986927 -2.298573 0.094032 -1.771846 -0.411740 0.913026 -1.079839 -3.568683 0.476398 0.797456 0.426117 4.783835 -0.173121 -1.754938 1.277557 0.132989 0.006186 -2.899844 3.881681 -2.873589 0.430299 -0.616422 -0.533499 -2.571890 -1.855265 -3.059410 -0.598377 4.318931 -2.073469 -3.897985 0.825940 0.937050 1.312584 -4.749304 1.908397 -1.743446 3.830807 -0.788780 -1.656156 0.063103 1.258038 0.610373 0.185723 2.032784 -3.207712 2.371414 1.209022 0.134469 0.939848 1.792451 0.721137 -0.925675 -1.711436 -2.691351 1.442298 0.087428 -1.042803 -1.208295 -1.641540 3.034838 1.536659 -0.944813 -1.705320 2.441804 -1.997664 -1.316130 3.055184 -1.659015 -1.737224 0.369914 0.674619 3.216209 -2.069455 -0.501630 -3.010239 0.195238 1.578467 1.145836 -4.363542 -0.926943 -2.280190 -3.062025 -1.928628 2.166151 1.068007 2.276568 0.566050 -4.337731 -2.513027 3.822869 -1.057092 2.015635 2.203954 3.124616 3.603461 1.171736 1.753908 -1.839273 -0.871754 -0.253361 -2.811473 -0.901202 -0.154811 0.912580 -1.746020 3.831566 1.029240 0.507647 1.503882 0.280999 0.961145 -2.625905 4.071951 2.674263 -3.643574 -0.256947 2.480673 3.358338 -4.979915 -2.501889 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = -1.331195 -3.356975 4.017986 3.374711 0.332802 2.072115 1.347606 -1.764987 1.772583 1.850032 -1.024866 2.069669 -2.291265 -0.362007 -0.859451 0.849082 -1.731755 -2.407668 -0.176391 -1.145897 -0.579291 -1.873668 -0.963395 2.401067 1.070512 0.242673 -1.472419 -0.162640 -4.239470 -3.223058 0.505032 -0.263288 1.686956 -0.399002 0.712669 -5.450442 2.397883 3.844912 -0.562437 -3.799775 0.540505 -1.299808 -0.876971 0.105984 -0.797460 0.961004 0.733103 0.369591 0.057708 0.804487 0.793352 0.221603 1.501000 4.791313 -0.078711 3.365183 3.345541 0.189877 0.596788 0.553246 0.977020 -0.127527 1.748948 1.494253 -0.766482 -1.019249 -0.355513 -0.262043 -2.277791 1.209056 0.445414 -1.671275 -1.326382 -1.103086 -2.820087 -0.806407 -0.743574 1.101836 4.380083 -2.071156 4.180172 1.620238 2.136062 -0.126286 2.396951 -0.091483 2.866186 1.281744 -1.707215 0.293455 -2.498905 -0.885545 0.162243 1.456163 -2.390773 -1.691606 2.007844 -3.424157 -3.715148 2.057831 0.094581 -0.939877 -1.967590 -0.329907 1.207324 1.155181 -1.616914 -3.032970 -2.113787 1.908149 -0.934237 -1.651580 -0.118312 0.180969 -0.111019 -0.248784 -2.907410 0.025462 2.281288 -1.862203 -1.321832 2.785736 -0.721856 1.803393 -0.625018 0.257338 -0.484341 1.437811 0.727062 1.137518 0.320081 -0.682033 -3.519910 -0.133743 0.650919 1.030799 -1.384215 -0.319423 0.842103 1.391758 0.620649 1.964008 -1.019143 2.141890 1.632517 -0.364304 -1.555520 -2.779982 -0.757131 -2.787899 0.557180 -1.719647 -1.570756 0.698067 2.447572 0.737381 0.557161 2.728682 -1.542200 1.800103 -0.016109 0.080144 0.592577 -1.189485 1.079737 -1.476681 -2.820647 1.742705 2.038759 1.261598 0.842069 -0.706936 -0.048429 -1.304207 -2.160244 0.994273 0.548004 -0.211895 3.130357 1.970832 4.830463 -2.713778 0.518820 -0.120988 -0.808607 0.654272 -0.728882 -3.368966 0.964241 0.726930 0.501306 3.870030 -0.196706 -1.444342 1.210688 -0.298919 0.434237 -2.283959 2.427133 -2.297081 -0.407115 -1.492991 -0.179756 -1.339324 -1.346508 -2.088307 -0.786777 3.793616 -2.603409 -3.125361 2.144760 0.060982 1.053481 -4.338317 2.830301 -1.498272 2.710610 -0.693141 -0.823908 0.055058 0.892167 -0.806709 0.298891 1.627237 -2.411933 1.695364 2.760885 0.527112 0.579685 0.762354 1.511445 -0.844018 -0.047547 -2.235186 2.377242 -0.111111 -1.498407 -0.508928 -1.349061 1.636193 -0.135137 0.017631 0.791274 2.115836 -0.245512 0.130321 2.450550 0.528611 -1.645042 1.286891 0.305239 2.033449 -1.549461 -0.390558 -1.179020 0.521878 0.300085 1.418486 -3.564476 -2.409993 -2.672202 -3.332587 -0.758979 0.342411 1.230287 0.596473 0.018424 -3.940020 -2.545297 2.867129 -1.227371 1.571019 2.188379 2.145258 2.663438 1.974804 -0.029643 -0.443102 -0.453482 0.477163 -1.399525 -0.957326 -0.944626 1.587267 -1.705290 2.149022 2.042374 -0.031939 1.530468 0.043999 1.818264 -2.039329 4.188857 1.935659 -2.423365 0.961820 2.201345 3.239267 -1.991388 -2.044478 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = -0.827991 -1.621981 1.394547 1.197240 0.380963 0.850433 0.746749 -0.195215 1.043600 0.797355 -0.470510 0.839106 -1.014448 -0.305112 0.130416 0.231509 -0.520871 -1.262356 0.407156 -0.101064 -0.137092 -0.979039 -0.552655 0.901648 0.249443 0.015476 -0.446976 -0.221694 -1.906543 -0.777035 0.428110 -0.321498 0.771789 -0.021151 0.344520 -2.622334 0.710997 1.205884 -0.122095 -1.947719 -0.025195 -0.638422 0.135119 -0.098539 0.032015 0.511846 0.811698 0.425080 -0.052207 0.354612 -0.044652 -0.356992 0.180952 1.963210 -0.041839 1.279602 1.463837 -0.023225 0.137018 0.110063 0.512365 -0.440169 0.945530 0.826906 -0.694253 -0.173327 -0.131511 -0.313285 -1.273361 0.342207 0.501873 -0.186443 -0.634539 -0.271149 -0.908630 -0.461857 -0.264854 0.473785 1.994898 -0.846774 2.036903 0.854986 1.524719 0.111824 1.039769 0.047919 1.005898 0.495825 -1.182613 0.102925 -1.688659 -0.599471 -0.245882 0.369307 -0.528350 -0.419629 0.566081 -0.714092 -1.427590 0.931254 -0.270420 0.140049 -1.134853 -0.039104 0.867433 0.918214 -0.746831 -1.351612 -1.171439 0.531639 -0.708650 -0.628118 0.186730 -0.014915 -0.308892 -0.660354 -1.067535 -0.389616 1.149002 -1.060817 -0.497730 1.207079 -0.943970 1.042558 -0.245921 -0.074815 -0.110128 0.720920 0.837109 0.172800 0.595837 -1.064168 -2.080992 -0.093346 0.122150 1.354557 -0.396576 -0.131831 0.474713 0.500413 0.369728 0.445869 -0.060940 0.791226 0.788720 -0.209479 -0.650017 -1.410188 0.141127 -0.892726 0.448099 -0.787976 0.082339 0.428286 1.044771 0.374358 0.204124 1.497988 -0.970714 1.093890 -0.304033 0.174140 0.069893 0.198044 0.505558 -0.580186 -0.891712 0.558811 1.116636 0.342627 0.523801 -0.776162 0.125052 -0.604541 -1.055896 0.242978 0.303986 -0.047609 1.187160 0.521858 1.557111 -1.537040 -0.028824 -0.160710 -0.022944 0.209880 -0.207175 -1.397815 0.707664 0.134801 0.037900 1.189645 -0.116416 -0.935841 0.499857 -0.028584 0.058089 -0.748749 0.823529 -1.013961 -0.344235 -0.533907 0.126304 -0.894821 -0.660749 -0.879102 0.023433 1.592371 -0.184409 -1.432188 0.417739 -0.225504 0.617077 -1.970490 1.138346 -0.688106 1.012055 -0.546403 -0.331026 -0.175170 0.595546 0.118761 -0.206302 0.765032 -0.893369 0.726188 1.099152 0.247707 0.235087 0.658230 0.554233 -0.021632 -0.387829 -0.603758 0.567674 -0.250888 -0.341157 -0.017838 -0.584225 1.245394 0.335612 -0.202617 0.466386 1.131334 -0.263368 0.434153 1.067410 -0.185775 -0.723701 0.119890 0.170806 1.396088 -0.578640 0.017385 -0.930346 0.245966 0.085292 0.532539 -1.375534 -1.116920 -0.429543 -1.472817 -0.538264 0.451596 0.156258 0.380423 0.305173 -1.778849 -0.608571 0.403583 -0.444449 0.968052 0.665225 0.765106 1.232765 0.746725 -0.301124 -0.800470 0.170214 -0.074823 -0.919478 -0.284408 -0.414400 0.379810 -0.962629 1.007289 0.713039 -0.038858 0.180054 -0.172824 1.169413 -0.743043 1.911301 1.027235 -1.079495 0.230265 0.690478 1.879615 -0.883655 -0.864195 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -3.920394 -7.675936 6.201629 5.925614 2.515045 4.860123 3.164380 -1.648172 2.820704 6.678538 -2.464518 4.763262 -4.230000 -2.735609 0.881820 1.307046 -0.822152 -4.874289 1.604229 -0.513202 0.153611 -3.800712 -3.766810 5.748487 1.429251 -1.256359 -1.701218 -0.220609 -8.998943 -8.093032 -1.563654 -0.429769 3.335060 -0.873219 1.858612 -7.170109 4.057836 7.706790 -0.183595 -8.106051 0.025912 -1.786983 -1.503559 2.140715 -0.286204 3.339282 3.393480 -0.730281 -1.235951 2.358597 1.854729 -1.549830 4.021546 6.232986 1.915371 7.320086 7.246061 -0.141388 2.378155 1.119363 1.955330 -2.001124 4.189071 2.940166 -2.134661 -0.379249 -0.562242 1.226748 -4.332472 0.873111 1.474872 -3.502922 -1.959004 -1.654338 -3.896576 -1.742438 0.087047 0.322645 8.117572 -2.288069 9.941761 4.933961 5.515462 -0.590238 5.498051 -0.646320 4.937920 2.500780 -4.880760 0.726479 -5.357117 -3.548884 -0.502325 4.592844 -4.255166 1.381998 3.075636 -4.637128 -7.470022 4.895086 -1.458662 -1.274216 -4.812929 -0.013345 3.080480 2.655353 -2.238292 -6.056452 -5.024605 3.634929 -3.941534 -3.854780 -1.142689 0.084192 -0.466851 1.308031 -4.291492 -1.028095 6.043225 -4.584185 -3.293772 5.187488 -1.351932 5.459027 -1.454039 -0.125954 0.207798 0.803440 3.213943 2.052832 2.076466 -3.903162 -9.500256 0.120972 0.569959 -0.381115 -2.368089 -0.264232 3.391602 2.921155 3.319636 5.948001 -1.802072 5.723383 3.339518 0.278026 -2.280268 -6.659088 -0.812597 -2.893730 2.134054 -2.869870 -1.947626 0.269899 4.612503 -1.117901 -0.173982 4.564883 -2.899871 3.881309 -0.446968 1.174537 -0.346584 -2.578611 1.671679 -2.887966 -4.624205 3.534684 6.804571 1.712242 2.105500 -2.252905 0.409342 -1.256563 -5.293839 1.633272 -0.683752 -0.106229 6.559117 2.922095 11.241732 -4.465192 0.163716 -1.782422 -0.543111 1.349816 -1.698074 -6.538798 2.091932 0.833624 1.715107 7.625281 -0.265517 -3.230501 2.245698 -0.077440 -0.137362 -4.364476 6.474205 -5.064653 -0.161439 -1.019147 -1.426843 -3.278960 -3.441365 -3.963126 0.840427 7.308449 -1.419037 -6.497252 1.918219 -0.853919 0.805390 -8.567092 5.335060 -2.987555 3.665579 -2.070744 -2.429413 -0.446020 3.117906 0.495181 -0.763452 3.369177 -5.237162 4.622106 3.942154 0.319320 0.969085 2.590391 1.313393 -1.064967 -2.332361 -3.992166 2.979430 -0.111217 -1.249159 -2.191933 -2.702687 5.385192 1.495232 -2.199053 -1.024162 4.414594 -3.553899 -1.349769 4.703953 -1.352801 -3.128462 1.925378 1.305940 5.361656 -2.991306 -0.744443 -4.172470 -0.569962 1.685267 3.004555 -6.830233 -1.942311 -1.923994 -5.858702 -3.087893 3.099339 2.732821 2.702822 0.886077 -8.045024 -4.182825 4.978816 -1.574287 1.710430 3.659632 4.636973 5.352452 2.193153 2.285007 -2.372304 -2.620292 -0.527502 -4.355015 -2.608236 0.599935 1.480668 -3.108175 5.711210 1.568706 0.805949 2.076565 -0.780306 2.479665 -4.019175 7.238572 4.248843 -4.482690 0.421989 3.276258 6.342176 -8.101937 -3.978904 -PE-benchmarks/optimal-binary-search-tree.cpp__main = -1.213882 -3.790118 4.223367 3.683834 0.396449 2.266732 1.456976 -1.414421 1.614766 1.833706 -1.466649 2.678598 -2.153060 -0.451369 -1.121477 0.888317 -1.772155 -2.590609 0.208845 -0.670958 -0.212086 -1.999654 -1.224708 2.953562 1.201970 0.784759 -1.449390 -0.284684 -4.698546 -3.298860 0.349211 -0.282305 1.827999 -0.033880 0.930405 -4.980394 2.309856 4.123942 -0.395415 -4.374359 0.590411 -1.205194 -1.047281 0.232384 -0.976213 1.360952 1.075030 0.757964 -0.176905 1.104081 0.537854 0.130783 2.099559 4.332942 0.390807 3.604437 3.566611 0.193390 1.077583 0.133666 1.106609 -0.337318 1.750324 1.676756 -0.746337 -1.079744 -0.810150 -0.012049 -2.422936 1.041378 0.689381 -1.378644 -1.865085 -0.818693 -2.539498 -0.600351 -1.226027 1.102104 4.716232 -1.744026 4.717862 1.884552 2.515466 -0.552909 2.336967 -0.022039 2.389505 1.505819 -1.791331 0.262171 -2.938394 -0.964582 0.188766 1.067221 -2.760537 -1.732982 2.005362 -3.465091 -3.871551 2.124634 0.036966 -1.246357 -0.991072 0.092280 1.295916 1.421382 -1.525431 -3.065658 -1.858917 2.012312 -1.028109 -1.873779 -0.323239 0.460320 0.047935 -0.114964 -2.790667 0.192958 2.649322 -1.912958 -0.597095 2.759797 -0.404427 2.036550 -0.757186 0.050169 -0.277476 1.461536 1.370072 0.953549 0.395046 -1.067824 -3.437666 0.911918 0.752292 0.724141 -1.891502 -0.404687 1.158530 1.564761 1.246230 1.946939 -0.979021 1.982917 1.637039 -0.437901 -1.750570 -3.378567 -1.152053 -2.373829 0.525727 -1.619177 -1.626216 0.773786 2.482569 0.395327 0.674366 2.400358 -1.722330 1.891126 0.130864 0.314673 0.436904 -0.827010 1.003034 -1.454997 -2.771559 2.202366 2.301356 1.378532 0.840530 -0.610209 0.096275 -1.106906 -1.985365 1.547562 0.746116 0.221392 3.593324 1.964662 4.369216 -1.790862 0.005287 -0.271012 -0.791794 0.445435 -0.616198 -3.595084 1.493531 0.567059 0.782405 4.066292 -0.272171 -1.149028 1.625133 -0.140533 0.368724 -2.464038 2.845418 -2.438955 -0.555807 -1.438047 -0.105324 -1.344591 -1.365099 -2.446642 -0.865784 4.112840 -2.646569 -2.989300 1.490565 -0.499926 0.908990 -4.158090 2.725183 -1.639891 2.679322 -0.255756 -0.945859 0.087366 0.333469 -0.815293 -0.108851 1.788549 -2.396733 1.790374 2.595705 0.566100 0.042794 1.022858 1.350788 -0.898612 0.030002 -2.162124 1.944947 -0.105251 -1.100006 -0.351322 -1.266787 1.615715 -0.053635 -0.299289 1.167855 2.098372 -0.077184 0.198328 2.128199 0.458484 -1.824262 0.950793 0.153519 2.201646 -1.711333 -0.625205 -1.539631 0.431191 0.460962 1.361069 -3.827430 -2.488013 -3.033890 -3.352058 -0.798391 -0.215127 1.533981 0.728459 -0.046826 -4.276156 -2.888557 3.024243 -1.150376 1.745029 2.440540 1.970017 2.857121 1.732863 0.084135 -0.405125 -0.613787 0.676522 -1.355600 -0.761203 -1.036007 1.500825 -1.780660 2.325315 2.322944 -0.286152 1.580412 -0.258837 1.991838 -2.153997 4.621722 2.116793 -2.958049 0.695162 1.568586 3.108672 -2.392270 -2.254785 -PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -1.411809 -2.041937 1.544771 1.499995 0.819935 1.242526 1.101288 -0.606350 1.565889 1.996485 -0.528659 0.938916 -1.349922 -0.291507 0.317017 0.636140 -0.311707 -1.431673 0.438701 -0.316503 -0.372193 -1.659376 -0.687571 0.937736 0.294255 -0.489637 -0.565791 -0.063387 -2.473030 -2.194797 0.220302 -0.314662 0.889989 -0.768176 0.250473 -3.732278 1.177924 1.804913 -0.158237 -2.506528 -0.045236 -0.765448 -0.050016 0.655885 0.381967 0.832529 0.839386 0.363176 0.164217 0.604207 0.957712 -0.531783 0.518230 2.832550 -0.430813 2.114516 1.823283 -0.072729 0.089990 0.545252 0.454789 -0.409216 1.353315 1.517324 -0.868058 -0.123666 0.110047 0.080319 -1.905367 0.641038 0.414473 -0.822810 -0.943320 -0.446267 -0.540217 -0.574706 -0.635048 0.180622 2.725601 -0.595523 2.988434 1.118314 1.839359 -0.149533 1.495784 -0.318584 1.753670 0.480258 -1.872924 -0.100903 -1.482400 -0.794668 -0.230016 1.426133 -0.707045 0.375674 0.573003 -0.196682 -2.004444 1.128820 -0.455048 0.127393 -2.089993 0.120329 1.222713 0.739967 -0.693719 -2.207902 -2.056030 1.033324 -1.161476 -0.930647 -0.198413 -0.587808 -0.539340 -0.267557 -1.242300 -0.765675 1.526153 -1.451229 -1.516094 1.501805 -1.002389 1.316143 -0.210269 0.098414 0.046971 0.529596 0.738452 0.654043 1.022977 -1.193447 -3.845505 0.129179 0.224796 1.033946 -0.409444 -0.052375 0.617435 0.531380 0.286749 1.273361 -0.283542 1.515641 1.799169 -0.078478 -0.776253 -1.557411 0.569152 -1.136479 0.999993 -1.082977 0.068098 -0.362109 1.373432 0.054072 0.268689 1.776086 -1.569579 1.695252 -0.339489 0.304255 0.260649 0.090171 0.663164 -0.880245 -1.237689 0.702653 1.870461 0.094045 0.554703 -0.874138 -0.044727 -0.683664 -1.420565 0.603807 -0.011806 0.002338 1.598912 0.583371 4.697809 -2.282099 0.378198 -0.062505 0.033364 0.392311 -0.373988 -1.829460 0.842041 0.258263 0.332280 2.067019 -0.083881 -1.221757 0.328424 -0.007009 0.175903 -1.214922 1.617014 -1.377253 -0.356982 -0.429724 -0.301966 -0.891929 -0.940923 -0.777164 0.764456 2.066278 0.055360 -2.156028 0.913167 -0.955756 0.348273 -2.787583 2.568665 -0.957756 0.597944 -1.461944 -0.486052 -0.386682 1.532352 0.287512 0.348810 0.895006 -1.290767 1.327045 1.892624 0.196957 0.566215 0.664883 0.626261 0.061090 -0.722662 -0.785158 1.099658 0.003202 -0.108232 -0.436348 -0.886823 1.746797 0.429093 -0.559630 0.438194 1.937466 -1.173362 0.074633 1.558150 -0.259546 -0.814223 0.735186 0.285213 1.538851 -0.707868 -0.139916 -0.906794 -0.142982 0.132643 0.806765 -1.749658 -0.854167 0.188804 -2.014764 -0.761738 1.185500 0.571163 0.673906 0.465843 -2.579808 -0.736219 1.394843 -0.512064 1.081386 0.615524 1.174798 1.311496 1.011659 0.153434 -0.831136 -0.707281 -0.486994 -1.365617 -0.727317 0.067774 0.545607 -1.222954 1.580491 0.286408 0.086665 0.212236 -0.058774 1.192993 -0.995787 2.276483 1.222844 -0.620600 0.523577 0.709509 2.766071 -1.896312 -1.005475 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = -0.672250 -2.239619 2.774219 2.287407 0.086934 1.287370 0.781768 -1.102448 1.246155 0.798506 -0.925580 1.368677 -1.477499 -0.157406 -0.533888 0.498422 -1.458476 -1.691176 -0.040252 -0.630509 -0.350988 -1.237010 -0.509890 1.511351 0.745789 0.675658 -0.965186 -0.016396 -2.723677 -1.875173 0.689363 -0.256216 1.128187 0.248910 0.579207 -3.675169 1.608111 2.341029 -0.362769 -2.702430 0.342780 -0.883349 -0.641330 -0.182228 -0.487163 0.716066 0.566061 0.697312 0.028171 0.545098 0.138992 0.013797 0.746286 3.070275 0.013373 2.080814 2.321835 0.063205 0.417656 0.270342 0.712512 -0.088665 1.114870 1.176973 -0.593016 -0.712654 -0.223824 -0.498207 -1.577977 0.931114 0.364726 -0.940744 -0.983088 -0.782546 -1.782095 -0.338642 -0.565297 1.042884 3.061065 -1.427507 2.726520 0.990771 1.617593 -0.201474 1.457799 -0.019063 1.833946 0.938758 -1.137190 0.066391 -1.978799 -0.864403 0.109147 0.663322 -1.474570 -0.961030 1.267900 -2.385656 -2.314327 1.235613 0.119117 -0.576711 -1.065820 -0.015621 0.907935 0.878618 -0.935107 -1.836824 -1.170287 1.119714 -0.701390 -0.987722 -0.156665 0.462479 -0.268328 -0.274738 -1.996418 0.013832 1.470634 -1.214670 -0.506730 1.782176 -0.690841 1.064614 -0.479967 0.035595 -0.316382 1.188321 0.583272 0.566973 0.469037 -0.519824 -2.034626 0.253497 0.531304 1.124488 -1.016658 -0.166639 0.635157 0.882514 0.247777 0.831308 -0.770358 1.253431 1.002551 -0.439028 -1.273718 -1.940636 -0.633101 -1.931356 0.327838 -1.264993 -0.897732 0.763983 1.670547 0.831130 0.471608 2.050567 -1.390400 1.283123 -0.051510 0.186868 0.331489 -0.471975 0.704910 -1.015559 -1.749181 1.201025 1.136778 0.670167 0.658173 -0.600176 0.019599 -1.116152 -1.503320 1.035383 0.548534 0.019359 1.993025 1.263671 2.527569 -1.771106 0.212535 0.059836 -0.457183 0.215421 -0.287880 -2.228464 0.920621 0.351014 0.628493 2.426657 -0.087884 -0.908423 0.668872 -0.123761 0.262048 -1.397934 1.449016 -1.456232 -0.299881 -0.989323 0.069797 -0.870263 -0.899372 -1.316352 -0.636663 2.569916 -1.737486 -2.160535 1.410275 -0.209608 0.997011 -2.865530 1.575721 -1.086890 2.069373 -0.252725 -0.479444 -0.016483 0.028239 -0.571750 0.214985 1.068705 -1.330269 0.961636 1.795577 0.437203 0.269137 0.586054 1.002375 -0.586287 0.092854 -1.299473 1.405290 -0.111723 -0.918215 -0.220403 -0.865745 0.997379 -0.159584 -0.008109 0.921598 1.394532 0.201213 0.482991 1.445227 0.434407 -1.220024 0.717657 0.164936 1.423003 -1.021642 -0.384728 -0.716965 0.450830 0.100018 0.839743 -2.364453 -1.980811 -2.052846 -2.353186 -0.627756 -0.223045 0.880716 0.285507 0.048415 -2.474456 -1.606099 1.589995 -0.761108 1.532277 1.423049 1.280004 1.758055 1.330115 -0.315258 -0.389326 -0.077868 0.518045 -0.964577 -0.427069 -0.990569 1.056435 -1.125514 1.261328 1.648540 -0.148412 0.928768 -0.047813 1.505763 -1.317914 2.835424 1.355391 -1.859365 0.561043 1.244322 2.083362 -0.872190 -1.453549 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.876546 -1.017857 0.920345 0.733667 0.540435 0.634457 0.349080 0.054689 0.575886 1.075504 -0.482711 0.647732 -0.617249 -0.310051 0.309333 0.261322 -0.099229 -0.917265 0.427901 0.094490 -0.105550 -0.629093 -0.480552 0.505801 0.207840 -0.060184 -0.421066 0.010796 -1.198241 -1.359901 -0.239417 -0.154084 0.488102 -0.232424 0.288753 -1.258429 0.546521 0.885417 0.013814 -1.278893 -0.001211 -0.244405 0.007511 0.385625 0.224524 0.685832 0.871230 -0.018112 -0.083856 0.394849 0.250419 -0.505317 0.157575 0.882624 0.243397 0.901965 0.910628 -0.124758 0.099807 0.182085 0.262892 -0.534486 0.628328 0.627047 -0.593548 0.099238 0.142365 0.113560 -0.776396 0.257336 0.236275 -0.468616 -0.258291 -0.340096 -0.356253 -0.197586 0.334992 0.086172 1.315188 -0.224730 1.378366 0.650891 1.120715 -0.051378 0.672135 -0.228331 0.757463 0.301083 -0.894862 -0.117378 -0.707972 -0.652606 -0.317413 0.977627 -0.309534 0.627693 0.320387 -0.433120 -0.944672 0.597427 -0.342818 0.136083 -1.137775 0.227690 0.819613 0.648739 -0.156808 -0.867718 -0.865081 0.311885 -0.820306 -0.418219 -0.060853 -0.252549 -0.374887 0.158720 -0.645066 -0.389715 0.773221 -0.795804 -0.598152 0.698699 -0.522503 0.869122 -0.148464 0.081978 0.124101 0.262258 0.723168 0.203108 0.404337 -0.703788 -1.667565 -0.031233 0.014589 0.327468 -0.324789 -0.009506 0.346830 0.238617 0.142104 0.474740 -0.480003 0.882375 1.111386 -0.054432 -0.570777 -0.911159 0.156410 -0.454639 0.296768 -0.509938 0.027176 -0.024485 0.622288 -0.041281 0.013055 1.270420 -0.760157 0.735198 -0.185199 0.131808 -0.063869 -0.200309 0.284458 -0.472218 -0.536370 0.379917 1.116387 0.049888 0.392223 -0.602545 0.067598 -0.375680 -0.889321 0.540617 0.071221 0.250507 0.693322 0.238863 1.559131 -0.910453 -0.124031 -0.179867 0.079236 0.033529 -0.114321 -0.959997 0.388546 0.075028 0.412720 0.982195 0.040215 -0.691371 0.320857 0.071276 0.022864 -0.520505 0.839346 -0.761240 0.170610 -0.025514 -0.275242 -0.611615 -0.353060 -0.423655 0.186350 1.005685 0.233040 -1.368476 0.218383 -0.342689 0.373080 -1.479810 0.475673 -0.457548 0.531062 -0.488313 -0.067321 -0.243542 0.393334 0.394941 0.028747 0.404037 -0.434995 0.630826 0.692641 0.043356 0.173270 0.498106 0.215413 0.055145 -0.453214 -0.197265 0.217410 -0.076804 0.032518 -0.209420 -0.287772 0.850699 0.432973 -0.453469 -0.190238 0.800423 -0.683796 0.074924 0.703494 -0.251559 -0.481173 0.201267 0.179463 1.137624 -0.390972 -0.170233 -0.688082 0.085727 0.113834 0.326521 -0.948621 -0.483225 -0.046913 -1.389273 -0.550010 0.599495 0.269538 0.402483 0.205758 -0.935223 -0.347364 0.685197 -0.071232 1.194389 0.252868 0.552567 0.763083 0.371555 -0.050175 -0.623348 -0.339203 -0.288030 -0.823880 -0.346608 -0.009102 0.162929 -0.518892 0.797086 0.211504 -0.005110 0.085286 -0.063716 0.431694 -0.601983 1.131673 0.738474 -0.590292 0.081315 0.116269 1.402078 -1.105141 -0.616264 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -4.585574 -7.629154 7.026375 5.987936 2.395798 5.217024 3.076488 -2.954206 3.200660 6.168140 -2.747532 4.784294 -3.942027 -2.485552 -0.071572 0.687467 -1.113023 -4.938455 0.863500 -1.491021 -0.439131 -4.148416 -3.935418 5.426856 1.131531 -1.074373 -2.215479 0.741240 -9.567857 -9.400394 -0.449626 -0.186079 3.006944 -2.170044 1.911203 -9.769172 4.925443 8.632939 -0.370499 -8.372048 0.033565 -1.633749 -2.637532 3.177584 -0.910694 3.020892 2.491171 -0.756981 -1.351070 2.028723 3.018939 -0.996486 3.209040 8.282178 1.563043 7.748990 7.843776 -0.106195 2.177817 1.967768 1.842131 -1.259109 4.017791 3.818035 -2.080994 -0.163121 0.546663 1.268236 -4.953285 1.497447 1.171138 -5.775504 -1.315846 -2.623839 -4.862471 -1.416217 1.087412 -0.071800 9.278786 -1.961857 10.346327 4.295793 5.805548 -0.933827 5.912644 -1.045854 6.685230 2.627410 -4.996072 0.486008 -5.048869 -2.858909 -0.308534 6.571885 -4.996066 2.500954 3.576640 -5.898682 -7.300381 4.828479 -1.168454 -1.558639 -5.629480 0.033806 3.219093 1.856732 -2.250776 -6.369880 -5.732976 4.576797 -4.336498 -3.667139 -1.432370 0.177028 -0.744324 1.661242 -4.477732 -0.884524 6.229458 -4.296110 -4.449376 5.501150 -1.922321 4.736351 -1.637392 0.102473 0.014551 0.459622 2.248975 1.941364 1.459716 -3.294103 -10.262793 -0.601404 0.194287 0.514965 -2.580324 -0.519700 3.701735 2.896798 2.698757 6.076715 -3.301973 5.639628 4.085568 0.409956 -2.653430 -6.363359 -0.925431 -4.376142 1.635473 -3.289833 -3.211033 -0.037287 4.938733 0.025691 -0.282086 5.251046 -3.405283 4.881661 -0.182094 0.817260 -0.332423 -4.591468 1.583593 -3.216171 -5.442793 3.473818 6.199451 1.525483 2.473149 -2.369813 -0.435635 -1.892769 -5.899826 2.607523 -0.337505 0.634200 6.311310 3.389635 14.142157 -5.663254 0.627549 -1.560438 -0.855819 1.238074 -2.013031 -6.477559 1.769661 1.342387 2.408112 9.125784 -0.004837 -3.039749 1.358039 0.086080 0.365857 -4.755966 7.377065 -4.848326 0.136373 -0.917099 -2.546501 -3.078149 -3.011418 -4.194179 -0.638211 7.484280 -3.663583 -8.365394 3.554534 -1.084301 1.592621 -9.520674 5.706403 -3.138029 5.612617 -2.163027 -1.702778 -0.729268 2.779521 0.083434 1.613664 3.063385 -5.509324 4.889887 5.258365 0.285460 1.728086 1.977533 1.476779 -1.854237 -2.435349 -4.473230 4.271761 0.400350 -2.197788 -2.304992 -2.963447 4.999757 0.853731 -1.714283 -1.439328 4.954741 -3.591923 -1.711591 5.385140 -1.117312 -3.231334 2.765770 1.601950 4.659408 -2.828178 -1.192390 -3.315730 -0.200955 1.720666 2.395515 -6.988076 -2.232689 -3.739253 -7.700155 -2.792705 2.428485 3.262181 2.716702 0.908106 -8.231966 -4.565256 7.232253 -1.693943 4.084807 3.883394 5.324704 5.126889 2.714552 1.967107 -1.567932 -3.092914 -0.249114 -4.854644 -2.724353 0.069007 1.835657 -3.001316 5.800187 1.602295 1.237248 2.696573 0.834716 1.963839 -4.151246 7.642296 4.473569 -4.407999 0.683923 2.898258 7.267181 -7.583823 -4.151158 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.014926 -1.792478 2.648570 2.300307 -0.151279 0.901996 0.478716 -1.141748 1.309210 0.554317 -0.791926 1.234492 -1.421776 0.372992 -0.795145 1.047974 -1.817887 -1.421622 -0.187951 -0.522395 -0.437325 -1.173871 0.193045 1.106513 0.934128 1.135562 -1.038384 -0.150811 -2.044917 -1.519632 0.833253 -0.411135 1.046479 0.514864 0.352189 -2.967253 1.570082 1.786204 -0.452105 -2.337831 0.517408 -0.827268 -0.423822 -0.629575 -0.402716 0.494101 0.311271 1.093680 0.431723 0.597587 -0.011965 0.246095 1.036883 2.772403 -0.385516 1.715295 1.788476 0.181419 0.282729 -0.003507 0.707184 0.216553 0.891143 1.166899 -0.307732 -1.041894 -0.547240 -0.624058 -1.408570 1.129980 0.070995 -0.204556 -1.416067 -0.509859 -1.263859 -0.098916 -1.386208 1.455128 2.728133 -1.527905 2.057944 0.774323 1.118828 -0.241007 0.870474 0.075046 1.272440 0.885976 -0.828472 -0.115405 -1.503807 -0.585119 0.340191 -0.239611 -1.264081 -1.795679 1.086253 -2.151321 -2.070123 0.876297 0.408200 -0.514455 -0.315333 -0.037009 0.753017 0.844363 -0.838831 -1.609822 -0.597325 0.666977 -0.093121 -0.886836 -0.091905 0.324049 -0.196828 -0.287108 -2.016911 -0.035065 0.848687 -1.112813 0.015851 1.388522 -0.257807 0.723553 -0.379368 0.127877 -0.256718 1.409320 0.496452 0.806843 0.436363 0.092656 -0.912146 0.920934 0.811069 0.722444 -0.973357 0.109974 0.095695 0.688677 -0.063224 0.321778 -0.561975 0.782856 0.764681 -0.637125 -1.330893 -1.493147 -0.763417 -1.924613 0.393020 -1.211580 -0.790034 0.695363 1.469601 0.743559 0.831459 1.698095 -1.466354 0.814727 0.071331 0.284050 0.656734 0.194272 0.701762 -0.835681 -1.568029 1.136831 0.823377 0.419034 0.372939 -0.378416 0.091930 -1.109863 -0.731046 1.109948 0.688313 -0.197645 1.721033 0.954520 1.782114 -1.103118 0.255139 0.484052 -0.334427 0.156188 -0.183604 -2.166021 1.095350 0.165036 0.717031 1.755422 -0.130498 -0.723879 0.828686 -0.230531 0.334485 -1.178864 0.948119 -1.250093 -0.528642 -1.159935 0.575118 -0.468851 -0.703746 -0.941274 -0.325678 2.263129 -1.802340 -1.300922 1.408167 -0.201303 0.806534 -2.137920 1.587598 -0.989912 1.545869 0.011148 -0.496849 0.130544 -0.384862 -0.795296 -0.199002 1.034207 -0.813911 0.608849 1.538002 0.522462 0.007484 0.510979 1.057236 -0.392688 0.606040 -0.949443 1.295178 -0.102279 -0.769417 -0.000564 -0.728378 0.558275 -0.493390 0.078812 1.476810 1.154066 0.626303 0.888981 0.875934 0.956988 -1.185005 0.854190 -0.086024 1.089055 -0.992956 -0.267415 -0.385678 0.410045 -0.325060 1.071375 -2.075241 -2.154917 -2.027427 -1.642461 -0.504818 -0.674831 0.856108 -0.153181 -0.103933 -2.048514 -1.607248 1.346597 -0.743119 0.913858 1.318951 0.861790 1.473172 1.427331 -0.516305 -0.187890 -0.012170 0.564557 -0.440682 -0.226682 -1.082750 1.126076 -0.960505 0.776968 1.848431 -0.455167 0.712178 -0.381600 1.301739 -1.080407 2.571290 1.145451 -1.485998 0.785535 1.093110 1.760245 -0.198698 -1.336651 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -3.570766 -6.046391 5.707971 5.103113 1.258601 4.116060 1.882032 -2.234520 3.344434 3.416447 -1.789263 3.805355 -3.805670 -1.269362 -0.444314 0.570479 -2.206034 -4.106938 0.467592 -1.178163 -0.656545 -3.915346 -2.880817 4.873479 0.676178 0.313571 -2.069589 0.282891 -8.263436 -4.336405 1.046543 -0.369758 2.830562 -0.625821 1.360917 -9.268763 3.490318 6.197749 -0.408118 -7.072141 0.263493 -2.719755 -0.803828 0.895709 -0.902070 1.349555 1.572380 0.310084 -0.347694 0.422876 1.002822 -0.309059 2.069542 8.091453 -0.161257 6.141514 5.894697 0.072060 1.190476 0.973444 1.382310 -0.651446 3.692548 3.303456 -2.681208 -0.976660 0.285847 0.153796 -4.437489 1.675745 1.305220 -2.731984 -1.876559 -1.498080 -3.725925 -1.537978 0.539374 1.485279 7.256866 -2.645147 8.186968 3.209319 4.744755 0.012034 4.887474 -0.387428 5.294337 1.714389 -4.110309 -0.008217 -5.902330 -0.951944 -0.051014 2.978544 -3.808176 -0.210227 2.416472 -4.788182 -6.308667 3.305169 -0.799274 -0.876671 -4.015490 -0.193731 2.834812 1.994222 -2.011837 -5.553378 -4.580594 3.975506 -3.165814 -2.964204 -0.676377 -0.483059 -0.242692 -1.216443 -4.067120 -0.567270 4.560340 -3.262080 -2.977966 5.077041 -2.143150 3.523912 -0.897246 0.256708 -0.182011 1.497998 1.754733 0.779599 1.291352 -3.275333 -6.689220 0.345998 0.006489 2.137367 -2.421053 -0.598307 2.213153 1.991087 1.785498 3.137188 -1.591101 3.749815 2.091072 -0.427931 -1.809604 -5.248805 -0.517931 -4.326728 0.980604 -2.612374 -2.370633 0.483443 4.026983 1.408926 0.524534 4.206084 -2.871777 4.143772 0.089579 0.492543 0.654944 -1.110042 1.658692 -2.658063 -4.492203 2.381367 3.985409 1.290661 1.262175 -1.731215 -0.675382 -1.772190 -3.919826 1.851702 0.565299 0.962169 5.695025 2.892904 10.503102 -5.759081 1.034166 -0.863467 -0.855367 1.080492 -1.779104 -5.329351 1.689413 1.396435 0.490458 6.770354 -0.530147 -3.067878 1.123975 0.399665 0.884952 -3.907352 4.970638 -3.947534 -1.045765 -1.835330 -1.313214 -2.714559 -2.672970 -4.147290 -0.722485 6.271157 -3.766644 -6.413082 3.199216 -0.275314 1.881532 -7.840863 4.342628 -2.690222 4.428504 -1.901453 -1.735873 -0.782917 1.973303 -0.583241 0.876247 2.731256 -4.813701 3.573465 4.349004 0.819268 1.782699 1.788312 1.663748 -0.650529 -1.388375 -3.745641 3.382527 0.016724 -1.990055 -0.675549 -2.600460 4.324150 1.000784 -0.781298 0.629152 5.110653 -1.279248 -0.272826 4.651863 -0.506247 -2.429831 1.568252 0.394475 3.480495 -2.198089 -0.556118 -2.921870 0.003857 0.999372 2.115882 -5.953695 -3.474372 -2.741563 -5.674013 -1.193776 0.934593 1.498924 2.481532 0.812498 -8.047924 -3.700557 4.116241 -1.838078 4.226062 2.748394 3.810798 4.454209 3.379888 0.252340 -1.577377 -0.430709 -0.013912 -3.686153 -1.534804 -1.507610 2.377681 -2.420983 4.932444 2.437248 0.300112 2.071382 -0.012531 1.690762 -3.255411 7.119702 3.841174 -4.138456 0.824011 2.178021 6.150855 -4.460428 -3.553397 -PE-benchmarks/count-ways-reach-nth-stair.cpp__main = -0.693973 -1.187823 0.978581 0.793417 0.180409 0.575948 0.558624 0.005292 0.672132 0.396297 -0.355875 0.570513 -0.752530 -0.150817 -0.008984 0.066932 -0.396819 -0.921574 0.329572 -0.049387 -0.178285 -0.641373 -0.459730 0.635056 0.142039 0.013063 -0.291531 -0.279352 -1.356217 -0.165235 0.381195 -0.247379 0.540055 0.000118 0.222620 -2.115001 0.319405 0.760720 -0.088416 -1.354053 -0.014362 -0.569906 0.221567 -0.152808 -0.077550 0.194526 0.638456 0.397871 -0.050783 0.162147 -0.104372 -0.298012 -0.001415 1.723344 -0.035705 0.827165 1.033613 -0.009483 0.014423 0.048686 0.379488 -0.408514 0.648338 0.542993 -0.529692 -0.076075 -0.121296 -0.391343 -0.849058 0.190983 0.368982 -0.044101 -0.420422 -0.219316 -0.616663 -0.415377 -0.481518 0.430199 1.426184 -0.790557 1.426003 0.555471 1.138608 0.159387 0.742997 0.105598 0.667010 0.305627 -0.813140 0.084610 -1.130275 -0.198693 -0.201460 0.168710 -0.334079 -0.510696 0.462529 -0.353166 -0.995253 0.688744 -0.238071 0.170598 -0.651926 0.002745 0.540050 0.726846 -0.692125 -0.944680 -0.867072 0.365161 -0.416962 -0.404501 0.213682 0.006824 -0.205261 -0.723305 -0.771874 -0.253124 0.792217 -0.794829 -0.293187 0.920110 -0.691647 0.787481 -0.118851 -0.077227 -0.058652 0.729314 0.673169 -0.042825 0.300221 -0.755482 -1.501547 -0.049367 0.099417 1.255172 -0.312219 -0.054585 0.387567 0.329322 0.284349 0.106405 0.044826 0.552774 0.514540 -0.210263 -0.499630 -1.038138 0.187217 -0.653463 0.194479 -0.622491 0.110846 0.435322 0.723068 0.505049 0.093769 1.201697 -0.677582 0.893736 -0.214812 0.026133 0.011253 0.251384 0.395749 -0.446793 -0.632714 0.303721 0.730427 0.256404 0.354800 -0.580683 0.069536 -0.494854 -0.667181 0.175300 0.389262 -0.057914 0.843094 0.387352 0.973673 -1.223368 -0.040052 -0.179934 -0.067113 0.104619 -0.137526 -1.000628 0.492365 0.121934 -0.223949 0.712277 -0.080696 -0.688915 0.383471 -0.106815 0.060335 -0.500111 0.498559 -0.668825 -0.368363 -0.434162 0.179351 -0.657771 -0.424754 -0.654606 -0.123130 1.123916 -0.394693 -0.902244 0.187888 -0.008556 0.483466 -1.367591 0.948350 -0.485127 0.846369 -0.405283 -0.293344 -0.161040 0.512684 0.178569 -0.050637 0.550663 -0.579251 0.405020 0.867307 0.193186 0.241357 0.553948 0.505709 0.019218 -0.325641 -0.355401 0.356823 -0.175367 -0.331134 0.107289 -0.427286 0.847499 0.338115 -0.022183 0.540377 0.842170 -0.103127 0.407832 0.800359 -0.162430 -0.473815 -0.063303 0.012779 1.140540 -0.444408 0.041598 -0.744643 0.279285 0.057038 0.245361 -0.993273 -0.940054 -0.433053 -0.949400 -0.305795 0.262905 -0.005390 0.249086 0.240819 -1.282388 -0.411253 0.172046 -0.412190 0.832985 0.446304 0.536085 0.952417 0.566814 -0.287168 -0.630094 0.337916 0.023408 -0.628922 -0.030382 -0.391567 0.194052 -0.787030 0.717838 0.550924 0.004670 0.118704 0.116182 0.862444 -0.534992 1.415492 0.768432 -0.887100 0.189306 0.630114 1.317375 -0.476801 -0.622145 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = -1.113314 -1.753164 1.325839 1.198118 0.513384 1.019833 0.791106 -0.132067 0.870534 1.160144 -0.475413 1.028554 -1.084196 -0.395637 0.151268 0.148542 -0.231812 -1.231802 0.379343 -0.036711 -0.211309 -1.045611 -0.917595 1.214847 0.200123 -0.370429 -0.456632 -0.055303 -2.142922 -0.960889 0.015717 -0.154114 0.718916 -0.605541 0.482410 -2.519051 0.671876 1.509296 0.025030 -1.970126 -0.075477 -0.621299 0.084967 0.283079 -0.189512 0.461069 0.866727 0.262957 -0.152060 0.310392 0.311530 -0.436412 0.370311 2.232992 0.169343 1.527043 1.574046 0.003005 0.241172 0.125714 0.422295 -0.572305 0.911299 0.789873 -0.747467 0.034706 -0.019647 0.019975 -1.195354 0.224682 0.555650 -0.636145 -0.623447 -0.465026 -0.791217 -0.495293 -0.199571 0.216543 2.053655 -0.771431 2.212767 0.966907 1.549162 0.121992 1.236816 -0.123659 1.175144 0.410224 -1.271273 0.109735 -1.446488 -0.329757 -0.243472 0.802341 -0.764995 -0.037475 0.581162 -0.452307 -1.613432 1.019705 -0.446224 -0.019770 -1.031251 0.083026 0.820691 0.763217 -0.683685 -1.484619 -1.351827 0.853117 -0.780874 -0.730171 0.023313 -0.142566 -0.169223 -0.515566 -1.022269 -0.358605 1.352393 -1.102946 -0.712678 1.275294 -0.931502 1.288708 -0.197571 -0.078102 0.118086 0.564385 1.017703 0.106465 0.321786 -1.224599 -2.344308 0.025276 -0.037622 0.977051 -0.452566 0.078818 0.731526 0.517656 0.646772 0.864036 -0.149736 1.070988 0.631572 -0.079338 -0.615419 -1.485163 -0.030190 -0.710608 0.454966 -0.733112 -0.172342 0.208845 0.991752 0.243980 -0.080941 1.430453 -0.886230 1.283282 -0.125348 0.088509 -0.055731 -0.196475 0.453602 -0.683217 -1.003383 0.639402 1.349970 0.309120 0.461256 -0.673636 0.027205 -0.449343 -0.983128 0.208791 0.166032 0.123030 1.406324 0.536706 2.584772 -1.344343 0.029136 -0.376283 -0.028721 0.250245 -0.382213 -1.410173 0.572845 0.188606 -0.032409 1.535960 -0.096035 -0.916568 0.553319 -0.040987 0.137687 -0.951063 1.317251 -1.000468 -0.297803 -0.392756 -0.148537 -0.800713 -0.595089 -1.015370 0.030901 1.659909 -0.536844 -1.584319 0.287158 -0.113189 0.533016 -1.926909 1.663906 -0.633537 1.147090 -0.574201 -0.448288 -0.148278 0.797377 0.334342 0.093479 0.731506 -0.933465 0.741074 1.104104 0.094306 0.322295 0.727969 0.414314 -0.029956 -0.556822 -0.663685 0.615188 -0.036435 -0.317978 -0.138964 -0.626679 1.294102 0.538220 -0.380972 0.150156 1.303665 -0.617485 0.055594 1.095853 -0.401356 -0.628391 0.138757 0.151204 1.358854 -0.689724 -0.043210 -1.018858 0.140188 0.289699 0.456433 -1.455914 -0.770623 -0.343513 -1.458892 -0.520534 0.644270 0.261568 0.573237 0.235429 -1.814012 -0.794361 1.000978 -0.434509 1.173940 0.629792 0.932082 1.280687 0.671098 0.093883 -0.693858 -0.038072 -0.204065 -1.005687 -0.265583 -0.132993 0.297989 -0.985374 1.239662 0.470597 0.114438 0.357278 -0.025509 0.623859 -0.877011 1.892271 1.040784 -1.068644 0.138124 0.714696 1.904954 -1.446349 -0.913664 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = -2.924722 -6.895081 6.613200 5.881374 1.345333 4.300345 2.859183 -1.478869 2.715977 4.157010 -1.649124 4.446920 -3.983408 -1.551605 -0.446343 1.166293 -1.923989 -4.739096 0.721151 -1.035343 -0.259428 -3.171821 -2.885430 5.407003 1.586128 -0.749482 -2.329670 -0.895099 -8.420428 -5.003979 -0.370429 -0.434270 3.303588 -1.994932 1.776263 -8.629834 3.759253 7.069998 -0.336041 -7.738513 0.618110 -2.026549 -0.649234 1.068941 -1.787990 2.089214 2.432075 0.401025 -0.647743 1.718949 0.501968 0.235883 2.974440 8.126409 1.263987 6.044722 6.332533 0.373020 1.344024 0.365519 1.978295 -1.255621 3.198442 1.890533 -1.522190 -1.234272 -1.139091 0.342562 -4.025234 0.965002 1.657752 -2.510382 -2.020717 -1.136968 -4.927049 -1.845588 1.036852 1.500369 7.652070 -3.382933 8.002366 3.444197 4.653810 0.343849 4.695109 -0.013477 3.959729 2.348729 -3.361582 0.900057 -5.442015 -1.512445 -0.169633 2.098699 -4.312298 -3.394645 3.145298 -4.875713 -6.879373 4.457725 -0.613114 -1.413694 -3.190957 -1.094267 2.778736 3.130221 -3.225455 -5.327406 -4.011620 3.499261 -2.159730 -3.424153 0.239017 0.121105 0.216881 -0.789202 -4.443348 -0.076948 4.960368 -3.599937 -1.933957 5.170497 -1.898825 4.562095 -1.215719 0.190826 -0.551695 1.895006 2.947497 1.367987 0.421866 -3.090269 -5.882946 -0.298232 0.064779 1.674176 -2.425622 -0.789000 2.021863 2.889151 2.850554 4.235386 -0.982443 3.839156 2.458396 -0.109424 -2.182880 -5.860439 -1.142048 -3.566750 0.962329 -2.675529 -2.491624 1.629390 4.217675 0.168420 0.316603 4.542226 -2.055078 3.432316 -0.046066 0.386162 0.346988 -1.897085 1.553506 -2.440976 -4.766868 3.017039 4.668674 2.727279 1.372727 -1.585608 0.259522 -1.366448 -3.801169 0.784388 0.874929 -0.101985 6.008854 3.209549 7.338531 -3.864797 -0.323758 -1.354747 -1.572743 1.357062 -1.791094 -6.199301 1.305055 1.243231 0.290283 6.885500 -0.750305 -2.950399 3.227983 -0.141034 0.430493 -3.983159 4.919393 -4.525903 -0.753079 -2.166248 -0.711485 -3.282847 -2.314414 -4.799180 -1.375366 6.991674 -3.486590 -5.734597 1.915194 0.258405 1.521490 -7.676110 4.659590 -2.508825 4.607087 -0.722075 -1.684807 0.183816 1.859848 -0.706509 -0.218268 3.206890 -4.599935 3.350602 3.927505 0.651007 0.383362 2.073079 2.068891 -1.133719 -0.956080 -4.177004 3.330935 -0.839135 -2.255273 -0.901638 -2.252068 3.977101 0.764392 -0.616765 -0.074788 3.180201 -1.234929 -0.433699 4.391251 -0.405489 -2.951795 1.548949 0.377564 4.685706 -2.837431 -0.228360 -3.739449 0.954114 1.398709 2.588529 -6.649092 -3.160961 -4.166796 -5.899928 -1.575580 1.605577 1.489038 1.666738 0.249147 -7.477131 -4.487395 4.038087 -1.858691 2.891599 4.198869 3.797755 5.498005 2.794052 0.560663 -1.455306 -0.638530 0.046746 -3.039449 -1.872788 -0.827817 1.856254 -3.177202 4.407514 3.125062 0.401624 2.589873 -0.734820 2.275244 -3.766406 7.653793 3.941273 -4.839727 0.641032 3.454655 6.096257 -5.223321 -3.896571 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.976014 -0.931270 1.009113 0.830547 0.420009 0.609852 0.586880 -0.468395 1.012128 1.046002 0.023285 0.343935 -0.819909 0.046959 -0.068260 0.486487 -0.248227 -0.884097 0.067933 -0.569611 -0.449697 -0.778581 -0.136807 0.136316 0.190312 -0.711440 -0.506900 -0.319548 -1.278454 -0.936241 0.364526 -0.291029 0.535375 -0.862275 -0.093378 -2.602595 0.677018 0.785269 -0.303197 -1.105250 0.130073 -0.654223 0.327795 0.244860 -0.081597 0.103019 0.300870 -0.203044 0.408574 0.259887 0.763869 0.093221 0.024094 2.248451 -0.647009 0.903029 0.541337 -0.038627 -0.353252 0.484797 0.253284 -0.114744 0.816820 0.598762 -0.432725 -0.309582 0.014916 -0.143950 -1.130269 0.462851 0.021377 -0.469254 -0.360042 -0.152869 -0.605018 -0.644299 -0.430808 0.217937 1.430843 -0.676733 1.251897 0.382960 0.790953 0.248809 0.844484 -0.019942 1.052085 0.152167 -0.807070 -0.094696 -0.443260 0.133318 -0.124343 0.734485 -0.256613 -0.579930 0.518845 -0.090841 -1.115926 0.735581 -0.068458 0.254322 -1.476729 -0.323457 0.635681 0.566898 -0.801764 -1.277359 -1.155590 0.524322 -0.308357 -0.464540 0.226646 -0.872622 -0.249857 -0.545613 -0.799664 -0.384044 0.486823 -0.778138 -1.137658 1.076810 -0.658681 0.457824 0.009524 0.332539 -0.250563 0.575207 0.125495 0.516477 0.107518 -0.371744 -2.219969 -0.405816 0.152143 0.854548 -0.049187 0.016611 -0.162858 0.235993 -0.272107 0.515589 -0.072887 0.793085 1.161660 -0.092892 -0.436887 -0.561535 0.643866 -0.967439 0.306001 -0.721951 -0.022023 0.022222 0.812615 0.432996 0.360484 1.283061 -0.665812 1.002443 -0.297793 -0.180402 0.498202 -0.242647 0.567367 -0.507340 -0.808569 0.134029 0.942100 0.221191 0.248644 -0.475827 -0.078710 -0.562609 -0.607182 -0.059711 0.311516 -0.166775 0.726182 0.454701 2.130481 -1.711865 0.318041 0.130537 -0.154140 0.328154 -0.372903 -1.076560 0.204147 0.387140 -0.423407 0.894837 -0.109134 -0.927075 0.225248 -0.207955 0.296671 -0.629584 0.484628 -0.757449 -0.290929 -0.400226 -0.338466 -0.666511 -0.438273 -0.479822 -0.111546 1.083920 -0.439066 -1.071576 0.793754 -0.209547 0.177449 -1.653428 1.509596 -0.552013 0.545196 -0.940015 -0.129625 -0.379266 1.335769 -0.031499 0.391378 0.524000 -0.747621 0.731115 1.505539 0.253856 0.588241 0.199999 0.766029 0.067007 -0.225878 -0.463510 0.965194 -0.206537 -0.373096 -0.015011 -0.530702 0.736945 0.161786 0.105993 0.282609 1.005791 -0.553188 0.184758 1.081680 0.196094 -0.398062 0.528541 0.011022 0.933488 -0.350158 0.106928 -0.358091 0.155022 -0.121610 0.368011 -1.067641 -0.687640 -0.316807 -1.001293 -0.006075 0.789454 -0.108739 0.161755 0.245147 -1.418540 -0.387089 0.595236 -0.499506 0.728832 0.368544 0.665403 0.841897 0.940090 -0.226631 -0.451235 -0.204822 -0.409080 -0.586988 -0.473056 -0.141524 0.443467 -0.801914 0.790745 0.223139 0.081982 0.124715 0.471539 0.403886 -0.562580 1.344470 0.669677 -0.122062 0.677903 0.753580 1.770901 -0.631237 -0.515422 -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.853076 -1.236537 1.610324 1.349617 0.088171 0.861114 0.471269 -0.953304 1.442945 0.461320 -0.035693 0.395119 -1.208403 0.211070 -0.335542 0.447614 -0.894304 -1.240369 -0.237261 -0.933695 -0.679126 -1.084076 -0.072923 0.529081 0.357760 -0.207480 -0.801776 -0.185579 -1.805786 -0.504006 0.990826 -0.310698 0.823150 -0.308188 0.138811 -3.559255 1.012034 1.134314 -0.368923 -1.543198 0.161974 -1.089246 0.314916 -0.302816 -0.366361 0.076533 0.081190 0.075385 0.693808 0.041038 0.452148 0.292012 -0.305999 2.839064 -0.922448 1.186793 0.681936 -0.006040 -0.439723 0.447721 0.345348 0.152871 1.060391 0.765323 -0.717834 -0.716385 -0.001766 -0.522959 -1.515497 0.902139 0.138964 -0.488068 -0.695460 -0.368577 -1.202471 -0.771682 -0.339765 0.802172 1.956580 -1.195828 1.487649 0.318897 0.940438 0.221462 1.182327 -0.063535 1.614319 0.284978 -0.900365 -0.017017 -1.167012 0.082885 -0.077978 0.407486 -0.590697 -1.127876 0.730437 -0.970090 -1.622607 0.754272 0.154669 0.130316 -1.730145 -0.347511 0.825059 0.650897 -1.004267 -1.623470 -1.099714 0.828576 -0.176019 -0.616221 0.229288 -0.640157 -0.256282 -1.126671 -1.345009 -0.325972 0.593771 -0.876766 -0.975535 1.544879 -1.070052 0.351476 -0.061642 0.343777 -0.462816 1.177239 -0.057264 0.489875 0.111509 -0.416444 -2.021811 -0.459616 0.166714 1.641948 -0.273783 -0.156575 -0.217670 0.365681 -0.579473 0.247881 -0.147929 0.725860 1.098702 -0.295726 -0.727497 -0.698674 0.370205 -1.675364 0.199355 -1.045234 -0.223049 0.510774 1.153311 1.155273 0.597873 1.849212 -0.906781 1.178994 -0.257922 -0.240570 0.862064 0.030148 0.779972 -0.753395 -1.186379 0.465000 0.556015 0.462436 0.350715 -0.517821 -0.163877 -0.949753 -0.909301 0.130743 0.603436 0.020712 1.169338 0.809668 1.718868 -2.290193 0.574603 0.307134 -0.335876 0.457275 -0.343442 -1.475866 0.407269 0.481178 -0.496588 1.291397 -0.283720 -1.037255 0.276250 -0.176238 0.569104 -1.021566 0.412942 -1.058265 -0.347234 -0.996190 -0.192103 -0.796295 -0.596306 -0.831052 -0.570402 1.620082 -1.004920 -1.515416 1.443605 -0.063567 0.837861 -2.189866 1.236391 -0.777333 1.229116 -0.904244 -0.115788 -0.308274 0.960098 -0.368141 0.485189 0.751663 -0.959829 0.666861 1.902862 0.371708 0.613100 0.246658 1.129304 -0.020877 0.169607 -0.782000 1.413018 -0.185801 -0.642679 0.186406 -0.756836 0.654990 -0.088924 0.322446 0.959521 1.433521 0.134991 0.541086 1.361185 0.437705 -0.619654 0.557075 -0.085574 0.828295 -0.532358 0.033580 -0.200089 0.500228 -0.215405 0.412588 -1.556592 -1.725258 -0.994450 -1.540574 0.114771 0.282754 -0.098982 0.132736 0.088924 -1.763720 -0.736809 0.536407 -0.735250 1.642583 0.555885 0.882204 1.183289 1.489968 -0.803149 -0.410771 0.317254 -0.103453 -0.589292 -0.368757 -0.897140 0.959626 -0.954289 0.927016 1.054255 -0.110800 0.429515 0.346058 1.014148 -0.829575 1.956432 0.826745 -0.665555 0.980902 0.968362 1.943742 0.034107 -0.830560 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = -1.290942 -3.365858 3.786229 3.467037 0.475842 1.990658 1.302412 -1.433357 1.864745 2.164651 -1.589088 2.422253 -1.987534 -0.316340 -0.437239 1.317254 -1.789048 -2.236165 0.213759 -0.463691 -0.419156 -2.218541 -1.055387 2.329229 1.082812 1.415413 -1.324267 0.239732 -3.749375 -4.413692 0.662784 -0.408877 1.706563 0.560371 0.697066 -5.551355 2.525285 3.808749 -0.382395 -3.892272 0.361659 -0.809383 -1.244165 0.326039 -0.351127 1.521262 1.032436 0.643754 -0.133999 1.181433 0.701795 -0.402342 2.183249 3.982578 0.174687 3.483609 3.595617 0.011491 0.940776 0.157702 1.072321 -0.206069 1.797557 2.343121 -0.696095 -0.935633 -0.385160 -0.076385 -2.723881 1.196649 0.309338 -1.422192 -1.876686 -1.063997 -1.839919 -0.310929 -1.689323 0.997195 4.887464 -1.414134 4.838128 1.949343 2.584531 -0.693722 1.948099 -0.268564 2.345895 1.524557 -2.321509 0.163580 -2.200644 -1.645125 0.301590 2.178609 -2.393766 -0.124485 1.651612 -2.978248 -3.400422 1.823080 -0.024496 -0.784144 -1.641583 0.131369 1.343889 0.969830 -0.909392 -3.032528 -2.183004 1.474900 -1.231047 -1.736321 -0.979180 0.592558 -0.454639 0.680157 -2.799339 -0.335572 2.268420 -2.077079 -0.842614 2.125484 -0.286860 1.865743 -0.844368 0.139200 -0.111679 1.203046 1.088891 1.247823 1.048073 -0.892261 -3.951480 0.544835 0.900666 1.015992 -1.786135 -0.533042 1.087708 1.162682 0.791081 1.836327 -1.180822 2.181645 2.206330 -0.253041 -1.790010 -2.879975 -0.779424 -2.671882 1.071146 -1.851026 -1.097561 0.320354 2.336314 -0.060428 0.673464 2.613060 -2.448295 2.216592 -0.014556 0.610076 0.338645 -0.649379 0.865493 -1.460434 -2.390446 2.081015 2.358978 0.597744 1.048388 -0.965490 0.114875 -1.204325 -2.164833 2.271850 0.098774 0.003863 2.893022 1.372101 6.182029 -2.044106 0.353030 -0.027824 -0.321025 0.369270 -0.284365 -3.300571 1.803871 0.219301 1.465565 3.860427 0.014897 -1.242961 0.979103 -0.058748 0.110534 -2.195158 3.230836 -2.244839 -0.365312 -1.090273 -0.305146 -1.041345 -1.317636 -1.695594 0.242960 3.597914 -2.114298 -2.987114 1.671704 -0.544660 0.858283 -4.079942 3.291306 -1.667017 2.358879 -1.065658 -1.177259 0.083398 0.253034 -0.420294 -0.075892 1.625241 -1.996676 1.615903 2.562248 0.418836 0.167079 0.945201 0.986286 -0.626685 -0.046273 -1.654919 1.779617 0.292880 -0.825420 -0.890764 -1.262101 1.935551 -0.235087 -0.753595 0.784117 2.544737 -0.603846 0.084012 1.840065 0.494183 -1.858311 1.352352 0.443664 2.151553 -1.542376 -0.729497 -1.185336 0.301441 0.140777 1.600242 -3.284815 -2.173384 -2.403765 -3.198450 -1.604547 0.494488 1.899406 0.669777 0.144298 -3.829354 -2.372155 3.147778 -0.881989 1.869943 1.926976 2.008757 2.359539 1.451606 0.356755 -0.834880 -1.170006 0.448741 -1.491998 -0.653091 -0.762699 1.383605 -1.454405 2.011808 1.821563 -0.262405 1.103901 -0.122677 2.068680 -1.784100 4.404736 1.927865 -2.338474 0.794849 1.174023 3.390290 -2.548341 -2.057458 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = 0.247802 -1.022171 2.463501 2.221989 -0.248550 0.729948 0.066720 -1.792920 1.630194 0.980613 -0.169901 0.594561 -1.098957 0.784875 -0.494150 1.632898 -1.711727 -0.969707 -0.714040 -1.303565 -0.992001 -0.999606 0.596474 0.144550 0.957860 0.535711 -1.174555 0.023881 -0.914915 -2.072830 0.802980 -0.345434 0.839843 -0.154246 0.302004 -3.285149 1.927330 1.356361 -0.639446 -1.655428 0.425531 -0.676201 -0.212269 -0.308282 -0.404707 0.432335 -0.324261 0.610682 1.067942 0.748356 0.742312 0.820481 0.851860 2.906977 -0.887168 1.345954 0.719001 0.057988 -0.313050 0.460921 0.522980 0.726943 0.787323 0.816584 0.128753 -1.434604 -0.449736 -0.410474 -1.369032 1.463971 -0.231400 -0.882834 -1.344268 -0.743687 -0.962786 -0.355127 -2.179656 1.429772 2.219941 -1.500781 1.021414 0.355976 0.330751 0.006984 0.851811 -0.212397 1.747334 0.661762 -0.483701 0.026070 -0.067728 -0.663513 0.634175 -0.271892 -1.102535 -2.303422 0.935209 -1.611438 -1.793270 0.885975 0.870313 -0.325898 -1.184963 -0.694876 0.813404 0.436411 -0.847050 -1.508010 -0.479563 0.646937 0.369925 -0.799842 -0.121421 -0.463641 -0.168571 0.088929 -1.958875 -0.033415 0.295687 -0.659369 -0.562378 1.316343 -0.045701 -0.136989 -0.305052 0.475605 -0.548247 1.501126 -0.361075 1.509193 -0.031820 0.987972 -1.142670 0.811308 0.840403 -0.070097 -0.257977 0.137132 -0.683219 0.566558 -1.092851 0.782744 -0.651718 0.843739 1.578562 -0.208425 -1.332880 -0.574672 -0.433445 -2.009913 0.509881 -1.237995 -0.785476 0.443776 1.341847 0.954667 1.084707 1.222870 -1.458524 0.521534 -0.247619 0.215208 1.245524 0.006682 0.777119 -0.781034 -1.350814 0.908116 0.655957 0.340905 0.351113 -0.293107 0.079757 -1.002565 -0.412794 0.855315 0.683169 -0.347473 1.224658 0.973512 2.363951 -1.166677 0.541163 0.883228 -0.507272 0.381714 -0.263955 -1.844444 0.577042 0.359069 0.602532 1.615540 -0.284337 -0.537686 0.473905 -0.333775 0.543031 -0.959627 0.392663 -1.126429 -0.329114 -1.029700 0.315040 -0.470955 -0.383314 -0.512903 -0.425496 1.902189 -1.740034 -1.004898 2.244568 -0.812256 0.503869 -1.726978 1.868872 -0.847515 0.823773 -0.562440 -0.232376 -0.067849 0.124401 -1.098220 0.414272 0.880672 -0.516024 0.292586 2.074094 0.440393 0.133691 -0.064843 1.305850 -0.478246 1.034652 -0.875004 2.052947 -0.219277 -0.289389 -0.243884 -0.673616 -0.055111 -0.979902 0.289655 1.246300 0.779433 0.442290 0.513269 0.804444 1.292196 -1.018387 1.578641 -0.095241 0.288448 -0.902024 -0.156124 0.493856 0.400862 -0.628116 0.864306 -1.782697 -1.561470 -2.137287 -1.028817 -0.260942 0.068467 0.611809 -0.566547 -0.433344 -1.216970 -1.440913 1.806205 -0.717920 0.300323 1.001265 0.783157 1.135872 1.777846 -0.482573 0.185818 -0.631857 -0.201567 -0.016179 -0.587995 -0.833673 1.545864 -0.700901 0.406730 1.599950 -0.355584 0.767168 0.012036 1.019770 -0.887884 1.835567 0.640025 -0.366073 1.143968 1.460146 1.782084 0.048074 -1.035245 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -3.300289 -6.993203 7.619870 6.528414 1.330317 4.770545 3.270383 -2.923100 3.572241 5.393220 -2.594442 2.898959 -4.966087 -2.094866 -0.216690 1.808626 -2.599834 -4.937265 0.696049 -1.357134 -0.754399 -4.482146 -1.110879 4.898363 1.961841 2.252400 -2.168553 -0.616385 -6.972246 -7.996250 2.192872 -0.661175 3.822229 3.278270 0.848608 -9.443213 5.463556 6.938380 -0.976969 -6.505871 0.805502 -0.818044 -2.318550 1.870049 -0.963673 3.005058 2.269383 1.352899 -0.310341 2.671464 2.454970 -2.078074 4.817777 7.597232 1.036500 7.072295 6.428667 0.581450 2.536738 1.667551 1.733170 -0.591066 3.830389 4.368358 -1.515047 -0.482352 -0.134616 -0.713363 -6.078003 2.760779 -0.185401 -3.271954 -2.707344 -1.969833 -2.593527 -0.869987 -3.592140 1.941734 9.369386 -3.503593 9.378061 4.704833 5.123308 -1.781760 3.298404 -0.691157 4.122147 2.826373 -4.363694 -0.316662 -5.331576 -3.351994 -0.279506 2.401781 -4.995645 0.054581 3.922962 -4.828037 -7.515762 4.293992 -0.685868 -1.501404 -3.650752 0.514558 3.016641 1.470575 -2.358301 -6.178179 -4.388107 3.702930 -3.700274 -2.713617 -2.505475 1.158111 -0.901383 1.819611 -5.436345 -0.623204 3.927765 -5.035491 -1.937458 5.221019 -0.761113 4.470041 -0.885701 0.497193 -0.525247 2.412454 3.191453 2.169972 3.104103 -1.831405 -6.998273 1.751132 2.038791 1.456552 -2.751744 -1.109688 2.419421 2.451800 1.495532 4.424382 -1.852698 3.908119 4.236581 -0.564146 -3.569785 -5.435005 -1.597612 -6.355242 2.146266 -4.126616 -1.560777 1.794365 4.692497 0.891466 1.128747 5.424289 -5.391276 4.530109 -0.756541 1.362041 -0.824291 -0.495542 1.990771 -3.096695 -5.491930 3.343200 5.458126 0.818277 2.132680 -2.895933 -0.376791 -2.677833 -4.955418 3.139392 -0.590884 -0.449410 5.099980 3.303678 10.853418 -4.596253 0.519382 -0.035552 -0.781610 0.829670 -0.475145 -7.569687 3.322752 0.422947 1.932837 7.439389 -0.084486 -2.417936 2.400161 -0.942877 -0.022024 -4.846112 6.183430 -5.172627 -1.255557 -2.391051 -0.677235 -2.853134 -3.448386 -2.823775 0.329122 7.230480 -3.299345 -4.957636 3.697410 -0.533259 0.431834 -7.292999 6.556469 -3.328258 3.939791 -1.437886 -3.302528 -1.165361 1.175107 0.860189 -1.236288 2.401418 -4.050699 4.597729 6.167916 0.559826 1.093916 2.812565 2.401791 -1.393301 -0.849663 -3.922294 3.516628 -0.019788 -2.717395 -1.388185 -2.865899 4.046267 -0.603149 -2.337697 1.967735 5.745483 -2.482571 -0.026232 3.220656 0.602278 -3.557113 2.104072 1.610321 4.940635 -3.352326 -1.259524 -2.551915 -0.222124 -0.011216 3.259052 -7.349965 -4.625117 -4.005867 -6.047317 -3.773684 0.594329 3.718511 1.552941 0.756616 -7.318669 -4.858952 4.417040 -2.377353 1.894585 4.154679 4.915101 5.955815 4.421026 0.608005 -1.923243 -1.323305 0.713334 -4.058924 -1.457460 -1.616134 2.882266 -1.693729 4.872177 2.888328 0.507219 2.265379 -1.159447 3.598820 -4.432023 8.711411 4.131771 -4.029375 2.067950 1.647762 6.267320 -4.980350 -4.053969 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = -1.593820 -3.670879 3.810753 3.529882 0.723909 2.264616 1.495419 -1.470527 2.177819 2.660887 -1.497036 2.247233 -2.128330 -0.686082 -0.156118 1.266639 -1.529867 -2.407577 0.353098 -0.568519 -0.302916 -2.381734 -1.352118 2.491120 0.911335 0.725166 -1.212255 0.385346 -3.981449 -4.727236 0.437379 -0.394181 1.699350 0.295670 0.855714 -5.657046 2.724405 3.966447 -0.346999 -4.030800 0.155852 -0.962544 -1.143575 0.540341 -0.079275 1.719695 1.218167 0.601535 -0.254524 1.150876 0.933077 -0.492168 2.162687 4.007062 0.092433 3.603434 3.702609 0.005321 0.963281 0.380441 1.065311 -0.413173 1.992072 2.330000 -0.943591 -0.782677 -0.295325 0.259553 -2.811975 0.992142 0.653811 -1.612279 -1.825748 -1.043623 -2.062675 -0.647459 -2.070173 0.570744 5.197031 -1.407868 5.204490 2.243540 3.067138 -0.463610 2.508826 -0.318317 2.842749 1.471706 -2.795780 0.444810 -2.563207 -1.818729 0.244967 2.452678 -2.477317 -0.013292 1.607856 -2.778909 -3.611936 2.148626 -0.246179 -0.729709 -2.001287 0.046480 1.569511 0.980309 -1.082610 -3.407276 -2.474498 1.535297 -1.612169 -1.890887 -0.773638 0.330516 -0.296628 0.533323 -2.885990 -0.447829 2.527004 -2.197561 -1.139313 2.453430 -0.684239 2.055045 -0.851568 0.044913 -0.115584 0.915916 1.228252 1.314969 1.122927 -1.328777 -4.941001 0.343112 0.657817 1.103591 -1.540324 -0.576237 1.282823 1.350997 1.081231 2.364135 -0.874261 2.509957 2.239533 -0.042185 -1.509090 -3.178503 -0.782935 -2.383491 1.424967 -1.755153 -0.901579 0.055369 2.491116 -0.265704 0.512092 2.494778 -2.304368 2.522771 -0.214285 0.642967 0.338203 -0.798703 0.972704 -1.470457 -2.453075 2.149411 2.774072 0.828303 1.179576 -1.160700 0.155535 -1.050523 -2.427637 1.908534 -0.115306 -0.010549 3.142655 1.498568 6.703020 -2.124445 0.479801 -0.307498 -0.257746 0.624398 -0.488033 -3.359117 1.811590 0.414418 1.318377 3.945955 -0.053826 -1.437442 0.933258 -0.005751 0.133129 -2.418916 3.314351 -2.405492 -0.256682 -1.022757 -0.230377 -1.401529 -1.543635 -1.745219 0.522237 3.842869 -1.570367 -3.226096 1.654379 -0.753628 0.929518 -4.201082 3.681311 -1.693255 2.261475 -1.449727 -1.110835 0.121280 0.835722 -0.271365 -0.051431 1.751112 -2.231653 1.933895 2.477395 0.395954 0.376219 1.066278 0.960886 -0.683870 -0.479564 -1.944753 1.874196 0.210981 -0.734492 -0.974111 -1.391389 2.452106 0.127941 -0.782658 0.394357 2.713467 -1.046882 -0.254140 2.059007 0.082553 -1.806929 1.311011 0.610893 2.256899 -1.592679 -0.570973 -1.526949 0.130754 0.344554 1.612739 -3.493828 -1.743332 -1.779358 -3.145248 -1.659258 1.141643 1.835362 1.053236 0.314813 -4.139739 -2.425081 3.254049 -0.929733 1.237442 1.938919 2.277450 2.499912 1.435146 0.651723 -1.076538 -1.299227 0.126575 -1.799487 -0.899099 -0.490133 1.410884 -1.826872 2.417053 1.528831 -0.140158 1.097163 -0.236323 2.438094 -1.929814 4.715386 2.064848 -2.330703 0.674438 1.655544 3.948330 -2.974552 -2.082222 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = -1.535211 -3.844966 4.560116 3.846598 0.107040 2.369794 0.771920 -1.644302 1.483760 1.614392 -1.149120 2.757550 -2.404919 -0.195159 -1.112108 0.817723 -2.013890 -2.713183 -0.431478 -1.271998 -0.944835 -1.522562 -1.477660 3.253791 1.212565 -0.214021 -1.955242 -0.036604 -4.720142 -2.495689 -0.105437 -0.147221 1.996880 -1.542630 1.073445 -6.041417 2.506586 4.248356 -0.481993 -4.303904 0.691832 -1.648729 -0.786349 0.052852 -2.206017 0.457474 0.857227 0.165854 -0.076004 0.745040 0.522553 0.814691 1.507939 6.216269 0.538303 3.685233 3.792211 0.183942 0.225517 0.196912 1.164840 -0.307509 1.853060 0.940598 -0.786889 -1.413161 -0.449917 -0.149010 -2.111596 1.010069 0.713907 -1.967927 -0.962215 -1.364753 -3.032365 -1.145102 1.392871 1.383991 4.504706 -2.662655 4.073045 1.583245 1.976661 0.488624 2.769942 -0.049312 2.885469 1.442684 -1.377202 0.305353 -2.199628 -0.165217 0.439201 1.226057 -2.951512 -2.876189 2.451859 -3.753075 -4.343162 2.499134 0.256394 -1.328999 -1.609058 -0.966356 1.314993 1.513946 -2.021870 -2.948225 -2.019093 2.371515 -0.590768 -2.099585 -0.221778 0.132453 0.358059 -0.543200 -3.347351 0.534850 2.770807 -1.798907 -0.967694 3.271345 -1.021754 2.119753 -0.783836 0.453489 -0.494818 1.980853 1.029734 0.858485 -0.773632 -0.726899 -2.288788 0.014557 0.335647 0.560462 -1.790178 -0.342983 1.051123 1.646691 1.033926 2.286578 -1.171167 2.456512 1.195300 -0.076024 -1.915400 -3.375939 -1.483261 -3.039597 -0.026128 -1.981941 -2.599437 1.629323 2.639452 1.142205 0.356161 3.263034 -1.016856 2.079452 0.276451 -0.308873 0.756861 -1.843684 1.209859 -1.825415 -3.225236 2.165038 2.125838 1.710391 0.804289 -0.575719 0.036190 -1.420387 -2.082214 0.924150 1.111804 0.267324 3.739416 2.335631 5.049195 -2.423972 0.359185 -0.519770 -1.281667 0.739241 -1.090803 -3.749677 0.094047 1.031940 -0.017936 4.671875 -0.257676 -1.859905 1.594009 -0.279793 0.588059 -2.561605 2.898857 -2.427404 -0.164418 -1.529667 -0.407608 -1.616834 -0.979341 -2.982241 -1.835687 4.491329 -4.376003 -3.620940 2.029754 0.883333 1.574939 -4.785688 2.833542 -1.632768 4.127309 -0.230683 -1.086748 0.252291 0.330159 -1.140290 1.065690 1.934026 -2.290654 1.243050 2.845378 0.521874 0.641345 0.812603 1.724810 -1.045963 0.393967 -2.528524 2.548049 -0.153202 -1.916448 -0.478609 -1.429155 1.225472 -0.064062 0.289683 0.375201 2.021520 0.105441 -0.012462 2.716353 0.494747 -1.855506 1.300287 -0.067508 2.247634 -1.915797 -0.424460 -1.384018 1.271900 0.729587 1.333122 -4.266886 -2.708675 -4.229009 -3.504110 -0.369281 0.438122 0.858922 0.412180 -0.394203 -3.970736 -3.087191 3.432807 -1.474106 3.418638 2.778574 2.582796 3.306464 2.222863 -0.006879 -0.427125 -0.111672 0.421206 -1.256435 -0.661043 -1.368939 1.751309 -1.636272 2.370782 2.669997 0.104509 2.161825 0.295840 0.700722 -2.318085 4.524006 2.144259 -3.255148 0.875978 2.418117 2.959998 -2.318990 -2.527814 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -50.750362 -80.953845 77.974576 67.063253 16.648317 55.236176 19.061812 -26.074835 23.057194 56.552346 -18.355378 59.465962 -43.827228 -15.795491 -13.669895 9.713266 -14.701116 -52.339481 -2.544475 -23.073202 -16.936999 -29.536735 -47.325256 71.114726 15.365309 -35.443454 -35.192163 0.663678 -102.636681 -63.398227 -23.150176 1.489281 37.075511 -62.863453 20.341684 -114.453207 45.595541 91.771369 -4.502062 -83.859938 7.988037 -28.634974 -15.097412 25.863092 -46.436389 7.666709 22.557321 -19.516540 -10.686271 15.012619 27.633902 13.862419 33.429842 126.401450 20.270034 80.987431 77.429613 2.449486 5.123680 10.763486 20.562688 -14.700051 41.252356 14.247927 -17.432360 -15.221826 -1.016684 16.829820 -40.514007 7.539549 16.266241 -56.105062 -3.559895 -25.798584 -55.877224 -29.934918 58.495528 4.654149 84.303263 -39.779675 90.270107 37.923714 42.023574 13.973769 65.393251 -6.205332 61.478881 24.751994 -34.798023 6.962026 -33.753144 5.611114 4.048696 52.025789 -60.558705 -32.855284 47.612764 -58.548877 -88.810739 58.072703 -5.744717 -24.325570 -47.528343 -24.396560 28.559292 26.729248 -40.663394 -63.029258 -56.832984 56.028343 -23.176597 -47.237392 -6.816831 -12.164188 11.594298 -0.703681 -54.509896 6.015041 66.691146 -38.725436 -40.392311 67.212491 -21.152433 53.686364 -15.089490 11.533350 -3.654975 19.032868 24.226444 15.909868 -22.096659 -26.638626 -68.606206 -13.006998 -5.890780 -8.013802 -30.954671 -6.822716 30.412045 34.189812 35.515636 69.671635 -25.543703 61.449116 27.306868 12.247657 -27.728850 -69.648081 -18.908788 -47.680031 0.134074 -34.802124 -57.420904 18.614932 49.845374 6.520985 -6.148329 58.379798 -7.309289 49.664887 6.380689 -8.647842 7.660940 -60.237953 21.145682 -37.068372 -65.240529 39.105878 60.831879 33.640725 15.821768 -13.323192 -2.545770 -16.558281 -47.225873 6.023219 11.667593 9.020645 75.929073 43.387065 142.662233 -52.460691 6.982188 -24.935059 -24.819477 20.541557 -32.421213 -71.697790 -12.965947 25.175564 -7.635148 103.644848 -4.124550 -43.458919 29.914519 -3.111726 9.532249 -53.183010 75.497052 -50.156628 2.318809 -16.086932 -28.251991 -36.767495 -18.214412 -64.503613 -32.270039 86.200410 -81.833587 -82.567716 31.735519 21.295221 20.556167 -101.119947 64.964828 -29.838565 77.903008 -14.567243 -23.980688 0.515935 30.890499 -10.937802 31.237714 37.600888 -55.488452 36.298280 56.157368 3.018568 21.881327 16.902612 25.472439 -19.285471 -10.507942 -53.953842 50.146716 0.163870 -37.426330 -18.894779 -30.213438 36.389455 10.574596 -1.490737 -24.533571 43.669547 -26.574391 -22.782139 63.609080 -7.729575 -31.379994 27.882849 2.566184 48.020736 -35.867422 -5.498976 -37.291203 17.449691 25.781806 24.775406 -83.657493 -26.865566 -68.445778 -70.013081 -6.572229 34.086567 13.706694 19.352359 -3.868774 -84.560049 -58.026197 80.499962 -26.893481 68.251199 53.530078 61.607407 65.858236 35.813394 18.902979 -11.265374 -17.153896 -6.672005 -35.820147 -22.299131 -5.615129 24.014182 -29.941161 61.574680 28.889776 15.473948 42.962114 15.190634 -12.053349 -46.220554 82.352778 44.394610 -55.889912 10.505798 44.149586 64.162099 -80.316301 -47.623771 -PE-benchmarks/transitive-closure-of-a-graph.cpp__main = -0.547277 -2.073300 2.281618 2.140363 0.355604 1.190871 0.778529 -0.813102 1.244555 1.388040 -1.112617 1.382073 -1.226804 -0.181956 -0.079028 0.945572 -1.109564 -1.438815 0.258970 -0.161537 -0.138459 -1.370246 -0.383411 1.236791 0.745060 0.953825 -0.757971 0.184503 -2.111140 -2.740704 0.449468 -0.368355 1.003547 0.791359 0.447313 -2.734482 1.612033 2.125486 -0.216599 -2.393423 0.128886 -0.463953 -0.763571 0.063814 0.209382 1.141703 0.774996 0.696355 -0.000152 0.820318 0.403339 -0.493969 1.253957 1.786988 0.039711 1.976226 2.132301 0.000335 0.640381 0.084450 0.687687 -0.178420 1.053891 1.636855 -0.506030 -0.563276 -0.315183 -0.111703 -1.643933 0.776515 0.314727 -0.608544 -1.366082 -0.576472 -0.787774 -0.091867 -1.537877 0.601605 3.068190 -0.752778 2.952351 1.254905 1.746238 -0.595769 1.124271 -0.183114 1.382210 0.948396 -1.550740 0.094573 -1.467789 -1.308522 0.174083 1.171230 -1.279906 0.290809 0.873129 -1.528348 -1.992327 1.026608 -0.043704 -0.375084 -0.756199 0.423640 0.914542 0.594345 -0.448226 -1.853689 -1.062757 0.564412 -0.833357 -1.049901 -0.663421 0.439528 -0.411753 0.419273 -1.728500 -0.364561 1.246111 -1.401505 -0.264721 1.180791 -0.319439 1.041572 -0.534458 -0.084839 0.015817 0.744076 0.881869 0.843581 0.982818 -0.650551 -2.483245 0.759961 0.674933 0.663069 -0.999331 -0.154068 0.675811 0.680346 0.414974 0.952795 -0.619933 1.281107 1.317390 -0.269232 -1.199764 -1.815621 -0.531322 -1.398365 0.943682 -1.202492 -0.333178 0.139144 1.419036 -0.106443 0.517766 1.711866 -1.706309 1.312023 -0.110489 0.571409 0.246977 0.016175 0.566195 -0.857676 -1.325861 1.375455 1.535513 0.148121 0.740440 -0.711485 0.166271 -0.865286 -1.315903 1.536613 -0.035369 -0.046682 1.726347 0.664608 3.260305 -0.864388 0.196571 0.111263 0.045782 0.141729 0.025722 -2.045870 1.391917 -0.014678 1.193085 2.015142 0.034317 -0.728214 0.540382 -0.048737 0.050654 -1.296012 1.836244 -1.336085 -0.151515 -0.671109 0.184692 -0.553858 -0.884583 -0.686719 0.652454 2.217578 -0.646532 -1.694012 0.861307 -0.627302 0.573366 -2.246924 1.876890 -1.087897 1.160300 -0.620646 -0.668847 0.087314 -0.026946 -0.156565 -0.295112 1.034652 -0.909748 0.931638 1.353321 0.289187 -0.026894 0.724488 0.562886 -0.330645 -0.057279 -0.772103 0.891929 0.233588 -0.248984 -0.489820 -0.739978 1.161190 -0.137093 -0.629561 0.741181 1.462239 -0.334853 0.268802 0.809768 0.317665 -1.185977 0.778731 0.320794 1.399724 -0.938795 -0.434910 -0.711261 0.045109 -0.055444 1.023794 -1.966621 -1.342651 -0.994865 -1.814234 -1.171960 0.256556 1.290025 0.403556 0.150550 -2.162945 -1.367799 1.708221 -0.507583 0.868123 1.057548 1.145770 1.317991 0.815852 0.191952 -0.659350 -0.796687 0.303841 -0.890301 -0.319486 -0.477019 0.818411 -1.023171 1.169335 1.132659 -0.276507 0.447465 -0.400882 1.622533 -1.044335 2.570892 1.200903 -1.422769 0.534770 0.673463 2.042267 -1.325819 -1.256784 -PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -1.272163 -2.431167 2.078917 1.981426 0.574904 1.568351 0.953927 -0.785356 1.427716 1.564589 -1.327398 1.379977 -1.470110 -0.655166 0.361217 0.354340 -0.869762 -1.644959 0.562036 -0.072455 0.046405 -1.720222 -1.015391 1.595088 0.347464 0.994181 -0.505419 0.604600 -2.720777 -2.887615 0.533718 -0.261756 1.112468 0.828622 0.643860 -3.390781 1.595897 2.548830 -0.084249 -3.004952 -0.035125 -0.843737 -0.803299 0.452411 0.318790 1.476301 0.972638 0.831239 -0.309254 0.596893 0.332236 -0.900904 0.828006 1.843872 0.235313 2.389463 2.574289 -0.122376 0.576408 0.262639 0.571224 -0.399277 1.500636 1.851436 -1.251488 -0.266968 0.177379 0.053015 -2.158412 0.661855 0.696844 -1.032300 -1.159228 -0.729381 -0.865341 -0.211513 -0.199997 0.264297 3.365667 -0.356805 3.593753 1.465799 2.146286 -0.586421 1.766207 -0.349721 2.060351 0.883433 -2.008890 -0.023469 -2.293025 -1.700923 -0.015278 1.750403 -1.243856 1.306561 0.654729 -1.393746 -2.173678 1.053803 -0.461731 -0.392358 -1.582682 0.667676 1.378717 0.719836 -0.236592 -2.116097 -1.449472 1.094729 -1.788119 -1.147232 -0.858218 0.488558 -0.623059 0.292865 -1.609240 -0.488351 1.814749 -1.462844 -0.679526 1.571741 -0.858614 1.319097 -0.534140 -0.201488 0.104648 0.568614 0.927243 0.397178 1.409095 -1.433394 -3.095626 0.599290 0.294426 1.017141 -1.140075 -0.516066 1.181251 0.717870 0.602149 1.064225 -0.849213 1.598074 1.673236 -0.176254 -0.879792 -2.196449 -0.417280 -1.488387 0.924357 -1.164413 -0.162285 -0.153924 1.696001 -0.107680 0.322178 1.968205 -2.034677 1.733391 -0.204312 0.655707 0.058583 0.132547 0.624892 -1.050475 -1.391444 1.403103 1.782754 0.183220 0.799689 -0.902393 -0.008865 -0.857600 -1.984818 1.687217 -0.207869 0.533371 2.036974 0.876911 4.219046 -1.480907 0.340203 -0.207855 0.028290 0.229693 -0.072549 -2.069614 1.450198 0.197050 1.332313 2.686952 0.014854 -0.985876 0.111269 0.366529 0.008224 -1.661636 2.339018 -1.615449 -0.049394 -0.499769 -0.209682 -0.931207 -1.349221 -1.105200 0.596465 2.498959 -0.061853 -2.718776 0.927995 -0.973322 0.931665 -3.064891 1.538855 -1.304377 1.454196 -0.964036 -0.621928 -0.084728 0.013573 0.079937 -0.041783 1.050299 -1.296352 1.476207 1.456188 0.335922 0.217397 0.863836 0.352844 -0.297120 -0.631822 -1.158526 0.834609 0.206392 -0.010019 -0.515670 -0.983618 1.717836 0.389869 -0.901543 0.541838 2.112993 -0.786455 0.122138 1.310816 -0.244612 -1.159854 0.619520 0.500101 1.557906 -0.820275 -0.604140 -1.131877 -0.052914 0.333600 0.949348 -2.224502 -1.351609 -0.387668 -2.706473 -1.252046 0.632191 1.270942 1.092713 0.574227 -2.716132 -1.099518 1.698329 -0.425482 2.216675 0.859324 1.431313 1.473752 0.827393 0.223561 -1.003000 -0.684946 0.144244 -1.693751 -0.499272 -0.425551 0.931905 -0.876559 1.782191 0.885214 -0.215530 0.452436 -0.678982 2.055629 -1.223513 2.856550 1.469805 -1.574194 0.239055 0.231348 2.570437 -1.863049 -1.381166 -PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -4.382499 -8.265481 7.085420 6.952133 2.777274 5.575819 3.418184 -2.326040 3.824125 7.212489 -4.203604 5.725413 -3.793487 -2.669046 1.150943 2.046280 -1.561325 -4.996776 1.709276 -0.199485 0.228777 -5.194180 -4.097126 5.809189 1.600763 1.592072 -2.053949 1.524935 -9.100023 -12.330775 -0.021371 -0.512494 3.424418 1.378308 1.910226 -9.969986 5.628044 9.284338 -0.065619 -8.963558 -0.358327 -1.217227 -3.666634 2.956370 1.356450 4.861832 3.436006 0.372437 -1.631908 2.698551 2.629669 -2.623972 4.933806 5.573119 1.502931 8.429100 8.926248 -0.346099 3.106408 1.103406 2.046672 -1.624995 4.418263 6.162057 -2.619277 -0.572744 0.185336 1.732268 -6.104153 1.456326 2.029627 -4.587687 -3.445932 -2.275703 -2.606382 -0.793719 -2.752712 -0.448280 11.004095 -0.708006 12.978507 5.555039 7.450695 -2.287220 5.654316 -1.427111 6.007105 3.201796 -6.976938 0.530230 -5.932594 -5.242875 0.155109 8.190590 -5.340154 5.914143 2.847248 -4.645794 -7.465988 4.325340 -1.525548 -1.599830 -4.666964 1.788073 3.650528 1.333347 -0.698679 -7.325527 -5.994629 3.444421 -5.516704 -4.421307 -3.561333 1.063626 -1.238658 2.896446 -5.029489 -1.370240 6.352717 -5.020025 -3.118131 4.527690 -1.427977 4.820828 -2.163311 -0.414200 0.644767 0.011414 3.511402 2.450453 4.073855 -4.624666 -12.667745 1.508251 1.075315 1.316188 -3.755475 -1.419041 4.233408 2.698519 3.407174 6.086593 -2.813918 6.337373 5.223023 0.425431 -3.054095 -7.638210 -1.044675 -3.619676 3.839828 -3.643370 -1.556451 -1.193534 4.942061 -2.203156 0.345687 5.246304 -5.507759 6.138732 -0.300895 2.269669 -0.317384 -1.892925 1.513265 -3.320796 -4.754370 4.964099 7.313708 0.511558 2.935010 -2.743943 0.160248 -1.848800 -6.561103 5.447306 -1.924357 0.893404 6.874868 2.518009 17.393568 -3.931017 0.734793 -1.414352 0.148635 0.846342 -0.487143 -6.786032 4.199299 0.449353 4.530720 9.416499 0.338392 -2.971020 1.016980 0.764012 -0.327953 -5.142173 9.426126 -5.207579 0.156721 -0.720172 -1.862218 -2.663043 -3.621038 -3.309786 3.246304 7.974961 -0.913237 -8.336410 2.231856 -2.773444 1.185872 -9.411820 7.185957 -3.907957 3.555666 -3.735090 -2.763397 -0.215613 1.818131 0.505949 -0.068385 3.553223 -5.115191 4.972230 4.758931 0.307581 0.781701 2.648304 0.544408 -1.351345 -2.484234 -3.613949 2.799634 1.428202 -0.450969 -3.201673 -2.851950 6.109354 0.947432 -3.590143 -0.663644 6.193572 -4.041980 -1.891376 4.157673 -1.143690 -3.797470 2.751362 1.991198 5.172214 -2.999293 -1.918000 -3.714238 -1.089992 1.483237 3.341976 -7.194501 -1.975035 -1.336685 -7.541508 -4.589204 3.382200 5.075444 3.592999 1.097090 -9.420913 -4.676417 7.415069 -1.273928 3.535969 3.459585 5.398779 4.622887 1.645542 2.940568 -2.829025 -4.576973 0.047157 -4.884875 -2.232526 0.164470 2.295261 -3.217846 6.210899 1.748855 0.256495 1.894639 -0.953019 4.564658 -3.900962 9.072611 4.525092 -5.126282 0.580769 1.473811 7.979778 -8.874481 -4.341596 -PE-benchmarks/largest-independent-set-problem.cpp__main = 0.072513 -5.924129 10.231218 9.069612 -0.995375 3.915348 0.549028 -5.809373 6.734592 1.635950 -1.439603 3.178065 -4.698907 1.875288 -0.168145 4.038937 -7.499467 -5.518217 -1.611812 -4.180134 -3.482270 -4.511861 0.157700 3.133651 2.821991 2.325546 -4.582462 0.122921 -6.076563 -3.458583 5.036187 -1.460206 4.328391 1.548895 2.565823 -16.860206 6.900288 5.277579 -1.733578 -8.669163 0.508963 -3.735764 -0.427035 -2.824513 -2.230603 1.508244 0.276085 4.015899 2.875578 1.716408 -0.275822 1.917184 0.748765 13.095201 -2.396574 5.812333 4.843437 -0.339748 -0.832487 1.203728 2.638862 1.559974 4.410636 3.969089 -1.619782 -4.937188 -0.811204 -3.081919 -6.518240 5.311659 2.235604 -2.438606 -4.718977 -2.729062 -4.810105 -1.972078 -3.930899 6.729483 10.156946 -6.799631 6.262648 2.202006 4.582695 0.635049 5.052830 -0.495268 8.294383 2.940582 -3.569980 0.216611 -6.500170 -3.775370 1.497260 -2.259825 -4.145689 -8.179038 2.960318 -6.596093 -7.676502 4.140976 2.326813 -0.536281 -5.914496 -2.614593 5.063600 2.926887 -3.493848 -6.307145 -3.379877 3.340805 -1.240074 -3.514382 -0.234679 -0.319435 -0.960268 -2.971779 -8.178661 -0.450016 3.402597 -3.091545 -1.441137 6.581685 -3.918327 0.778031 -1.755964 0.645521 -2.258729 6.282983 0.298675 3.169490 1.914118 -0.707547 -4.950035 2.423581 2.025733 5.233763 -1.181101 -0.950081 -0.871771 3.018589 -3.065391 2.001774 -1.086218 3.610548 4.426428 -0.976766 -5.659692 -4.789275 -1.031824 -7.858030 1.702698 -5.493407 -2.343621 4.079371 6.077118 5.649859 3.551298 6.093839 -6.086130 5.020559 -1.560584 1.688140 3.815414 1.369572 3.068806 -3.607060 -5.308546 3.752181 2.248042 1.863620 2.196735 -3.049481 0.440831 -4.601667 -4.666071 2.577973 3.282535 0.207324 5.712433 4.081041 8.037065 -7.601997 1.599907 2.247034 -1.686610 1.151015 -0.781901 -7.513004 2.608705 1.265867 1.044245 7.595171 -1.454532 -4.165626 1.372448 0.116446 1.743113 -3.679058 1.804211 -4.801992 -1.514233 -4.471157 1.481590 -3.815643 -2.217137 -4.224438 -2.476588 9.021810 -6.469992 -7.275458 8.148253 -3.342280 4.524854 -9.623458 5.968781 -3.878908 5.329868 -2.318860 -1.671105 -0.824855 -0.426905 -3.941454 2.170134 4.097841 -3.098257 1.134585 8.115432 1.886683 1.260560 1.102964 4.686340 -1.221757 2.688669 -3.895501 7.214844 -1.468698 -1.482506 -0.658108 -3.137692 2.240681 -2.273731 1.061391 4.875425 4.652219 3.053425 3.057445 4.725528 2.734709 -4.639242 3.705163 -0.313004 2.678158 -3.570526 -0.441172 -0.138777 2.053316 -1.579062 2.972028 -7.943184 -8.208186 -8.388422 -6.317352 -1.605478 0.256150 1.446935 -0.771300 -0.944039 -6.993740 -4.887055 3.791216 -2.960544 5.280612 4.537542 3.677746 5.992845 7.099941 -3.553792 -1.451760 0.657539 -0.282995 -2.063998 -1.396303 -5.644491 6.222285 -3.475650 3.480626 7.849701 -1.010420 2.928242 -1.203963 6.476363 -3.751675 9.359826 3.997472 -4.917760 2.610871 5.015191 7.616465 0.464778 -5.120017 -PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -5.013091 -15.719232 26.413606 23.808210 -0.230211 12.044166 -2.154878 -15.937441 13.022776 12.679576 -4.215931 12.823422 -9.211798 2.067624 1.415893 12.090398 -14.544379 -11.682094 -4.747154 -10.685369 -7.769669 -9.200144 -2.994872 10.800415 6.853877 2.037763 -12.916818 4.545279 -14.696239 -25.613799 1.939945 -1.672665 11.543936 -6.493986 6.460738 -39.677049 20.906795 20.130980 -3.787663 -23.318451 2.665883 -5.745966 -4.984207 2.251235 -11.357277 6.237686 0.388297 -0.991687 3.781165 7.677789 5.173502 7.507653 10.160819 29.902756 0.773538 18.183143 14.994219 -2.127200 -2.684411 2.486327 6.415850 3.635651 11.763991 7.506373 -1.612844 -12.332128 -1.052809 0.886750 -16.183551 10.174983 1.479991 -15.862530 -6.545635 -9.607778 -11.415671 -4.635020 6.938208 10.561392 23.705829 -11.943578 16.979561 5.833940 6.456472 1.873848 13.960143 -3.105637 20.695501 8.779545 -7.113584 0.304068 -3.494210 -10.165512 6.323363 5.973573 -15.013448 -12.442034 9.843510 -18.803422 -20.368617 13.124725 5.923885 -5.455730 -19.581027 -11.003443 12.216354 7.224260 -6.594405 -14.991695 -9.718329 12.088667 -3.518907 -12.180426 -6.347478 -1.952463 -1.383223 4.044058 -19.437552 1.243527 12.105492 -6.585357 -7.268883 15.452909 -4.668507 3.678016 -6.184761 4.582502 -4.680052 11.179542 -0.608303 11.453765 -0.564333 1.010228 -9.717530 3.777171 2.527086 -4.122332 -5.448251 -4.541522 -0.454444 8.120332 -3.378631 14.650833 -8.993655 13.285441 17.809583 4.159098 -12.886508 -13.092789 -8.004095 -20.908237 2.777268 -12.880217 -11.376506 10.907726 15.107128 4.772263 6.269562 13.903648 -12.396498 10.143970 -1.723987 1.644224 8.842391 -6.847612 6.259183 -9.828001 -15.343731 12.708759 11.211244 6.234231 5.543941 -4.731358 0.896872 -7.224361 -12.904711 10.565398 5.671058 4.364699 14.864818 11.020073 38.512043 -10.641048 2.240506 2.105651 -6.090366 4.071740 -5.595563 -19.016818 -0.598738 5.014004 6.635567 27.575505 -2.659632 -9.921743 3.493610 1.159181 3.231865 -11.578923 14.608030 -13.472706 3.455272 -5.853670 -7.061710 -8.799669 -4.122708 -13.296166 -6.836499 23.712465 -19.937725 -22.797383 20.266699 -8.243306 8.794677 -27.020925 14.884751 -9.821407 16.571467 -5.814671 -4.564344 -1.160183 -3.371563 -10.023767 8.775421 10.328037 -8.327682 4.299405 19.668836 3.068619 1.696255 -0.317275 8.473158 -5.195811 7.079835 -12.178480 19.925481 -2.341441 -1.927500 -6.309632 -7.553014 3.941753 -6.172622 -0.801967 -0.168094 9.168034 -0.267675 -0.461450 13.013539 5.982353 -11.895172 15.444583 0.991147 6.324739 -8.845507 -3.214593 -0.286043 7.437753 0.660134 8.356717 -21.045925 -12.235496 -25.279648 -19.032387 -5.236059 7.802878 7.403570 -1.532491 -3.734582 -15.512633 -15.288728 24.395505 -5.560220 18.675565 13.119209 12.888264 14.984262 14.793670 -1.063315 -1.688098 -8.509181 -4.736708 -6.020894 -6.544075 -7.363741 14.713650 -4.551935 9.914365 14.926320 -0.082802 10.686327 -1.099043 3.452086 -10.072863 20.721243 9.362890 -9.616957 5.877879 8.982180 15.768866 -12.029165 -13.367183 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = -0.824995 -2.105314 2.337138 2.080084 0.392468 1.224950 0.785527 -0.864265 1.451997 1.511279 -0.632059 1.215048 -1.460218 -0.080140 -0.154935 0.905533 -1.050843 -1.624117 0.185042 -0.504504 -0.436879 -1.312810 -0.400914 1.124429 0.624599 0.000435 -0.903213 -0.175071 -2.278311 -2.020721 0.335448 -0.439190 1.095701 -0.346294 0.403981 -3.458599 1.517616 1.939283 -0.353150 -2.513922 0.190311 -0.819911 -0.133976 0.034627 -0.312062 0.678156 0.754864 0.495480 0.217332 0.733833 0.466179 -0.044195 0.870061 3.021772 -0.157423 1.921861 1.857421 0.054812 0.133369 0.291645 0.735409 -0.218488 1.255939 1.133731 -0.547870 -0.627033 -0.317156 -0.212574 -1.692013 0.795647 0.289614 -0.630934 -1.028488 -0.503039 -1.269643 -0.561014 -0.745947 0.800127 2.899601 -1.291903 2.526527 1.129124 1.569870 0.065915 1.407887 -0.049153 1.650604 0.803529 -1.366544 0.102799 -1.394970 -0.750225 0.065835 0.558623 -1.080921 -1.245885 0.991775 -1.471129 -2.222125 1.383331 -0.024785 -0.141573 -1.393128 -0.345529 1.159595 1.019575 -1.102192 -1.972004 -1.316591 0.811541 -0.641635 -1.065072 0.058827 -0.198243 -0.248523 -0.210531 -1.799832 -0.412477 1.315144 -1.430301 -0.708215 1.697177 -0.650112 1.184779 -0.383569 0.125083 -0.196266 1.066939 0.738438 0.843699 0.403602 -0.546917 -2.314326 0.237352 0.436079 0.674544 -0.583664 -0.031341 0.351739 0.805399 0.189133 1.052545 -0.461499 1.285970 1.358924 -0.165395 -1.114612 -1.717483 -0.161295 -1.609592 0.626160 -1.251741 -0.537231 0.452211 1.594164 0.351250 0.524254 1.848953 -1.322176 1.264483 -0.292144 0.274175 0.466780 -0.282366 0.776523 -0.892482 -1.554120 1.018587 1.642892 0.512453 0.611402 -0.836976 0.133860 -0.875441 -1.211826 0.596176 0.461560 -0.198735 1.748545 0.874887 2.862744 -1.627408 0.215751 0.056661 -0.201998 0.411038 -0.442489 -2.230650 0.784807 0.305615 0.366162 1.978749 -0.161299 -1.182177 0.779967 -0.180931 0.223118 -1.251263 1.262680 -1.478103 -0.326067 -0.821121 0.137983 -0.986152 -0.824249 -1.094481 -0.084619 2.341391 -1.109880 -1.781313 1.174000 -0.343446 0.676168 -2.613722 1.966237 -1.023403 1.433552 -0.643668 -0.546312 -0.093623 0.654646 -0.252040 0.001186 1.142691 -1.099508 0.993855 1.727735 0.374597 0.335127 0.682909 0.971075 -0.243346 -0.130427 -1.043090 1.332065 -0.226020 -0.549906 -0.253431 -0.875623 1.240828 0.023724 -0.140496 0.568134 1.377664 -0.391791 0.425519 1.356497 0.276147 -1.130144 0.823011 0.144190 1.580177 -0.989573 -0.057715 -0.897477 0.308942 -0.079264 1.018271 -2.164057 -1.451153 -1.428550 -1.781997 -0.729879 0.615367 0.572346 0.228502 0.185574 -2.266478 -1.284411 1.516126 -0.749171 0.955190 1.231123 1.229173 1.704260 1.318143 -0.116671 -0.691648 -0.367187 -0.143933 -1.002902 -0.548762 -0.489561 0.850968 -1.182589 1.332919 1.121096 -0.083019 0.522334 -0.118808 1.161591 -1.138880 2.570003 1.358614 -1.213924 0.627480 1.243787 2.435968 -1.255276 -1.311260 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = -0.554359 -1.180746 0.947073 0.819881 0.159542 0.571977 0.607582 -0.052146 0.757963 0.265478 -0.479669 0.601961 -0.827623 -0.139479 0.009630 0.042930 -0.500902 -0.937177 0.343811 0.053170 -0.047926 -0.807338 -0.334402 0.651480 0.161558 0.339799 -0.242097 -0.202228 -1.474033 -0.184922 0.565583 -0.235417 0.566605 0.310750 0.197461 -2.133309 0.360275 0.808291 -0.072796 -1.539504 0.023265 -0.610367 0.084968 -0.237028 0.122964 0.339709 0.585956 0.665944 -0.061250 0.155888 -0.248893 -0.387477 -0.046414 1.466534 -0.122292 0.936350 1.161966 0.035415 0.061305 0.015540 0.359703 -0.305332 0.672529 0.748315 -0.643149 -0.076908 -0.102563 -0.451818 -1.004029 0.284876 0.363628 0.065197 -0.579955 -0.191717 -0.542072 -0.228516 -0.409338 0.517497 1.513956 -0.680405 1.609680 0.522070 1.156706 -0.049123 0.674622 0.063480 0.626705 0.337881 -0.857691 -0.045315 -1.480804 -0.457747 -0.201039 0.068779 -0.315234 -0.278129 0.383253 -0.411990 -0.971531 0.500196 -0.254158 0.092353 -0.654263 0.238427 0.581424 0.740243 -0.506592 -0.991206 -0.842876 0.377963 -0.504768 -0.399846 0.092889 0.222794 -0.337900 -0.787013 -0.790392 -0.294402 0.852623 -0.814186 -0.205502 0.841790 -0.781763 0.751128 -0.134575 -0.167262 -0.022214 0.738831 0.644356 -0.093672 0.667139 -0.847012 -1.434129 0.130314 0.153830 1.475930 -0.412519 -0.025237 0.442746 0.295692 0.223706 -0.068593 -0.009586 0.422932 0.510235 -0.324072 -0.500046 -1.030565 0.170422 -0.701535 0.281028 -0.630001 0.268092 0.400958 0.761170 0.474582 0.164299 1.307979 -0.934000 0.821974 -0.155317 0.129260 -0.003939 0.548740 0.364751 -0.441117 -0.654126 0.391051 0.625012 0.149279 0.331173 -0.509852 0.033940 -0.567830 -0.766819 0.371585 0.331807 0.027695 0.873451 0.366950 0.908934 -1.232214 0.009654 -0.092857 -0.024265 0.070072 -0.046312 -1.041733 0.704228 0.046007 0.072317 0.753759 -0.072831 -0.628451 0.313977 -0.026306 0.037156 -0.550345 0.517972 -0.718737 -0.385810 -0.516559 0.245038 -0.512945 -0.557419 -0.591475 0.091955 1.130004 -0.042675 -1.060022 0.205642 -0.217262 0.560290 -1.492093 0.791906 -0.532416 0.720068 -0.352588 -0.239534 -0.112831 0.235177 0.140186 -0.200224 0.540420 -0.582862 0.472359 0.834258 0.219600 0.104383 0.580989 0.425441 0.041302 -0.301947 -0.375606 0.274804 -0.130942 -0.239011 0.156365 -0.446893 0.906415 0.269375 -0.140308 0.833929 0.962739 0.022062 0.582890 0.769999 -0.106402 -0.507495 -0.041755 0.056582 1.079066 -0.383416 -0.032414 -0.714398 0.216865 0.029549 0.336535 -0.966157 -1.147423 -0.256585 -1.246429 -0.346784 -0.011163 0.172338 0.274046 0.292000 -1.449361 -0.394090 0.058491 -0.373288 1.047806 0.402540 0.490655 0.863687 0.548490 -0.420206 -0.571863 0.392811 0.181989 -0.710727 -0.043823 -0.447274 0.234349 -0.746803 0.686579 0.648791 -0.086533 0.090039 -0.208070 1.143641 -0.512329 1.484337 0.781807 -0.914474 0.190218 0.376472 1.272529 -0.314777 -0.638421 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -1.085647 -2.371815 1.935399 2.000400 1.303517 1.291717 1.783710 -0.658506 2.150762 2.471463 -0.892465 1.677315 -1.773894 -0.207524 0.487554 1.185243 -0.389630 -1.950151 0.777960 0.082108 0.013588 -2.295457 -0.093752 0.728527 0.690689 -0.189946 -0.677266 -0.466878 -3.360535 -2.787351 0.825455 -0.540869 1.228521 -0.726366 -0.047351 -4.497573 1.550381 2.108161 -0.195519 -3.619856 0.217498 -0.721133 -0.294919 0.640303 1.127930 1.342919 1.133320 1.123731 0.216874 1.220177 0.921524 -0.757759 0.706957 2.821535 -0.807162 2.702521 2.440216 0.069273 0.125680 0.481758 0.687773 -0.312463 1.677408 2.260530 -1.038130 -0.227582 -0.111967 -0.018146 -2.913957 0.821166 0.538919 -0.536666 -1.655820 -0.152293 -0.116297 -0.052660 -0.577959 0.392603 3.594780 -0.422259 4.113634 1.264604 2.238457 -0.828767 1.134551 -0.376437 1.301115 0.778450 -2.221337 -0.822048 -2.741998 -1.511838 -0.376957 1.380538 -0.670063 0.871903 0.634415 0.530058 -2.144705 0.914268 -0.463983 0.102872 -2.496589 0.764350 1.560843 1.364017 -0.444513 -2.661006 -2.511114 0.772894 -1.355292 -1.218034 -0.490285 -0.498055 -1.194924 -0.518403 -1.518180 -1.215447 1.903162 -2.019424 -1.744424 1.268820 -1.657517 1.509964 -0.385265 0.008045 0.190251 0.477043 1.260130 0.891888 2.558583 -1.801529 -4.606759 0.670603 0.588928 2.190751 -0.625217 0.481013 0.465923 0.534903 0.269261 1.040750 -0.232983 1.381104 2.197227 -0.467691 -1.130947 -1.671780 1.084325 -1.157572 1.566859 -1.428241 0.932217 -0.542618 1.696192 -0.434244 0.597153 2.741514 -2.776747 1.978181 -0.209710 0.703800 0.258938 0.719221 0.694611 -0.948000 -1.498012 0.965814 2.362823 -0.448868 0.574996 -0.842065 0.084885 -1.143164 -1.765861 0.797541 -0.216449 -0.166578 1.609748 0.295556 5.221197 -2.449176 0.184745 0.247047 0.265568 0.316461 -0.214139 -2.518782 1.692911 -0.118554 1.227892 2.290691 0.029068 -1.616013 0.599792 0.041169 -0.059632 -1.252480 2.083079 -1.790128 -0.698984 -0.519200 -0.280121 -0.623900 -1.313478 -0.661513 1.703741 2.371264 1.481062 -3.007662 0.679671 -1.780284 0.176594 -3.786009 3.178077 -1.274157 -0.055082 -1.416688 -0.380284 -0.394990 1.301783 0.218183 -0.426446 1.119813 -1.341438 1.877092 2.449520 0.265784 0.015251 0.911879 0.498045 0.193641 -0.667980 -0.659944 1.064589 -0.063291 0.041804 -0.391474 -0.982015 2.235649 0.124543 -1.218582 1.150060 2.301066 -1.278698 0.747542 1.568274 0.158008 -1.225575 1.211718 0.548477 2.101009 -0.585445 -0.143204 -1.020852 -0.393573 -0.131728 1.576245 -1.903997 -1.502088 1.027214 -3.423232 -0.947678 0.813407 1.165477 0.423671 0.648128 -3.561865 -0.887044 0.996003 -0.408530 1.706442 0.855051 1.190705 1.307941 0.957137 -0.339698 -0.870702 -0.924769 -0.306538 -1.686813 -1.176728 0.345838 0.444547 -1.437111 1.523038 0.554813 -0.003659 -0.068028 -1.207116 1.899385 -0.994473 3.058489 1.523735 -0.577029 0.753061 -0.023617 3.565185 -2.044049 -1.246785 -PE-benchmarks/rat-in-a-maze.cpp__main = 0.140425 -1.112830 1.612798 1.418852 -0.090123 0.485549 0.303069 -0.556894 0.797089 0.306044 -0.562219 0.690166 -0.866761 0.206495 -0.330896 0.717732 -1.092487 -0.938449 0.034791 -0.187307 -0.213683 -0.637820 0.230138 0.551139 0.641883 0.867499 -0.555202 -0.167969 -1.095426 -0.869116 0.525537 -0.316213 0.667880 0.738424 0.267595 -1.466345 0.907044 0.968263 -0.253816 -1.449650 0.260174 -0.432912 -0.213064 -0.533028 -0.047596 0.476025 0.349241 0.800833 0.242784 0.523543 -0.151953 -0.037651 0.574132 1.243512 -0.098120 0.889587 1.004719 0.076250 0.212353 -0.094327 0.507700 0.044883 0.532372 0.687762 -0.186898 -0.622897 -0.478407 -0.540784 -0.847288 0.645693 0.087870 0.048156 -0.939798 -0.302555 -0.542993 0.001519 -1.237751 0.952326 1.624463 -0.958115 1.183188 0.512003 0.751284 -0.255318 0.420977 0.071829 0.584622 0.606290 -0.490689 -0.075688 -0.922905 -0.632040 0.151440 -0.354733 -0.658672 -0.927459 0.665416 -1.033535 -1.158634 0.539282 0.251064 -0.222551 -0.135811 0.161927 0.460590 0.667937 -0.488770 -0.843543 -0.168657 0.195434 -0.023447 -0.519416 -0.112296 0.380266 -0.275582 -0.147392 -1.228990 -0.093115 0.471140 -0.758668 0.253537 0.732937 -0.167594 0.427023 -0.288177 -0.048143 -0.136585 1.017560 0.474704 0.482314 0.462121 0.002392 -0.542538 0.754353 0.642130 0.573950 -0.569338 0.135555 0.072368 0.410509 -0.059374 0.022770 -0.290175 0.425310 0.569306 -0.458136 -0.945824 -0.923079 -0.440940 -1.020483 0.300267 -0.825406 -0.135710 0.592845 0.897683 0.453060 0.528832 1.210124 -1.087749 0.452943 -0.058319 0.283913 0.313709 0.461604 0.419957 -0.493361 -0.812671 0.753236 0.540060 0.159947 0.325666 -0.328970 0.204661 -0.745933 -0.473712 0.793288 0.405108 -0.215166 0.952427 0.473784 0.435175 -0.474282 -0.024364 0.316750 -0.114825 0.004156 0.060786 -1.342351 0.812081 -0.068458 0.554940 0.848287 -0.064541 -0.401387 0.543098 -0.192039 0.094847 -0.618323 0.462632 -0.766298 -0.301703 -0.680462 0.569156 -0.290919 -0.462823 -0.419825 -0.050285 1.368975 -0.681939 -0.633905 0.636876 -0.276889 0.481539 -1.156585 0.764022 -0.634828 0.768024 0.085309 -0.301766 0.062106 -0.398827 -0.361925 -0.412368 0.660683 -0.254813 0.257538 0.879924 0.309260 -0.219200 0.425929 0.628352 -0.228440 0.408735 -0.386647 0.634428 -0.110634 -0.284222 0.036527 -0.411492 0.283104 -0.332369 -0.109472 1.127168 0.589762 0.446835 0.722726 0.265724 0.595100 -0.800560 0.418403 0.016224 0.834423 -0.617024 -0.167212 -0.254251 0.276523 -0.262857 0.635770 -1.197358 -1.433592 -1.029597 -0.954092 -0.467616 -0.431706 0.573438 -0.208304 -0.058896 -0.974683 -0.905336 0.550238 -0.408877 0.565306 0.751277 0.427613 0.906494 0.745474 -0.430827 -0.252397 0.033673 0.374357 -0.220738 -0.060578 -0.639525 0.607188 -0.607714 0.316054 1.222195 -0.321963 0.311638 -0.441089 1.125944 -0.620044 1.512629 0.681171 -0.956043 0.461403 0.613915 1.001244 -0.025669 -0.822574 -PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -1.229420 -2.359743 2.009075 1.970218 0.676944 1.536005 0.950415 -0.820042 1.454629 1.787114 -1.250308 1.350367 -1.420528 -0.604362 0.428967 0.513855 -0.736167 -1.596103 0.547915 -0.085981 0.016522 -1.713797 -0.915393 1.438750 0.368935 0.835193 -0.522918 0.576854 -2.602144 -3.081274 0.459689 -0.276043 1.083243 0.682921 0.584749 -3.210852 1.634491 2.492990 -0.087443 -2.908560 -0.056802 -0.728428 -0.789878 0.574059 0.405865 1.501483 0.936411 0.704370 -0.245935 0.699878 0.541141 -0.874325 0.907499 1.735813 0.184470 2.360254 2.441290 -0.123502 0.563439 0.299607 0.571354 -0.346938 1.489501 1.858492 -1.144674 -0.268440 0.149453 0.158063 -2.169682 0.666917 0.630190 -1.069973 -1.175849 -0.704029 -0.688337 -0.193889 -0.309691 0.164405 3.315537 -0.259310 3.509821 1.471773 2.067577 -0.628017 1.692494 -0.396559 2.004046 0.872500 -2.007165 -0.033498 -2.052408 -1.689568 -0.008049 1.857179 -1.213347 1.432293 0.627929 -1.147012 -2.114152 1.061546 -0.432490 -0.325493 -1.663033 0.646829 1.364731 0.673627 -0.204343 -2.109197 -1.463497 1.014307 -1.707586 -1.166442 -0.904039 0.331874 -0.653005 0.451678 -1.547677 -0.579021 1.730168 -1.487976 -0.789362 1.470412 -0.800120 1.267394 -0.540526 -0.160877 0.125614 0.459260 0.909249 0.554614 1.432354 -1.354836 -3.213752 0.614637 0.322884 0.836168 -1.041394 -0.439738 1.075386 0.681647 0.562377 1.194674 -0.824048 1.607536 1.806925 -0.114850 -0.885174 -2.064403 -0.319536 -1.412856 1.009739 -1.171049 -0.087761 -0.306531 1.654534 -0.250623 0.342250 1.917812 -2.044949 1.713234 -0.220446 0.684020 0.092310 0.075241 0.601340 -1.015646 -1.358890 1.378364 1.886203 0.074438 0.813521 -0.904556 0.005780 -0.812450 -1.903919 1.645758 -0.303955 0.444224 1.931837 0.769183 4.420776 -1.372323 0.348070 -0.158419 0.092264 0.258537 -0.093886 -2.053890 1.425904 0.149733 1.368683 2.620683 0.021992 -0.981134 0.115576 0.325184 0.000914 -1.610826 2.373559 -1.594076 -0.019042 -0.432644 -0.255963 -0.871364 -1.294784 -0.955200 0.764328 2.419251 0.099404 -2.632310 0.924849 -1.040846 0.761560 -2.961187 1.666717 -1.273201 1.253304 -1.038448 -0.614825 -0.109213 0.150475 0.113368 -0.059341 1.039306 -1.230059 1.483535 1.490752 0.285322 0.182328 0.822944 0.315325 -0.264601 -0.621281 -1.077226 0.890909 0.236979 0.074165 -0.585811 -0.968108 1.693771 0.313103 -0.989398 0.430091 2.066882 -0.945767 0.032947 1.216696 -0.204386 -1.150739 0.750279 0.546584 1.511860 -0.798079 -0.557836 -1.046330 -0.136681 0.265416 0.994149 -2.124828 -1.165096 -0.201302 -2.597339 -1.283815 0.793600 1.293039 1.027772 0.546832 -2.583010 -1.076268 1.758173 -0.391075 2.023028 0.814373 1.417148 1.389202 0.792605 0.300066 -0.969336 -0.897112 0.007068 -1.643733 -0.579930 -0.244939 0.886632 -0.828985 1.718916 0.742789 -0.173451 0.394411 -0.665216 1.931685 -1.165119 2.749408 1.415369 -1.342075 0.299472 0.185579 2.626722 -1.969950 -1.326946 -PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -1.468331 -2.903140 2.695971 2.679201 1.356402 2.012905 0.824163 -0.902094 1.395681 3.019719 -1.366398 1.690496 -1.615695 -1.011741 1.108538 0.851693 -0.513986 -2.223728 0.767573 -0.152498 0.211130 -1.676034 -1.115149 1.905326 0.616586 -0.892040 -0.810524 0.166459 -3.306128 -3.571661 -0.473340 -0.316253 1.437108 0.155781 0.746963 -2.558672 2.057599 2.800873 -0.054500 -3.348960 -0.094382 -0.749263 -0.696451 0.968399 0.179872 1.717877 1.507696 -0.479406 -0.325228 1.298940 0.833903 -0.934564 1.288969 1.955349 0.805031 2.809170 2.593210 -0.306581 0.828945 0.735846 0.838045 -0.684102 1.975615 1.597789 -0.970142 -0.258141 -0.094797 0.405674 -2.024626 0.739748 0.209150 -1.513405 -0.724536 -0.769483 -1.235596 -0.489886 0.437624 0.616259 3.437349 -0.928738 3.781811 1.943251 2.414374 -0.445309 2.190756 -0.466550 2.335350 1.123449 -2.116384 -0.089880 -2.182000 -2.395370 -0.234407 1.721153 -1.467893 1.720285 0.893832 -2.037213 -2.830162 1.932296 -0.593455 -0.247674 -2.655546 0.202327 1.769130 1.242538 -0.414270 -2.347558 -1.770727 1.351865 -1.872312 -1.621106 -0.968462 -0.148099 -0.712137 0.885819 -1.983014 -0.805483 2.170869 -1.995173 -1.396251 2.087023 -0.921228 1.863063 -0.748868 -0.097277 0.050799 0.532924 1.023894 1.136185 1.599928 -1.763911 -4.175398 0.538944 0.296623 -0.326603 -0.822721 0.353546 1.220754 1.026009 0.508273 2.315469 -0.982199 2.477060 1.987965 0.107310 -1.367648 -2.472161 -0.150831 -1.444726 1.020547 -1.515706 -0.445570 0.379508 2.094425 -0.002387 0.240532 2.497508 -1.729909 1.610969 -0.453051 0.746756 -0.041416 -1.181992 0.668561 -1.347929 -1.749861 1.534117 2.963804 0.018210 1.271041 -1.216862 0.236164 -0.982535 -2.565419 1.267756 -0.223652 0.347868 2.400630 0.978769 4.118117 -1.879885 0.132264 -0.340766 0.065617 0.393766 -0.655268 -2.790246 0.933653 0.159397 1.450399 3.134323 -0.022977 -1.564927 0.325351 0.116929 -0.025707 -1.554548 2.428120 -2.191208 0.394800 -0.231843 -0.893890 -1.319793 -1.592777 -1.046934 0.750975 2.927047 0.335033 -3.133450 1.216073 -1.147591 0.449417 -3.892127 1.822618 -1.535750 1.639266 -0.890136 -0.871061 -0.579828 0.881773 0.201844 -0.058230 1.425363 -1.689154 1.991164 1.700331 0.200465 0.387669 1.053699 0.444008 -0.301590 -0.904741 -1.297328 1.309958 -0.107406 -0.008476 -1.131309 -1.175006 2.291152 0.461889 -1.234269 -0.499457 1.846679 -1.602928 -0.211148 1.934887 -0.360963 -1.560493 1.164671 0.503863 2.360168 -1.139162 -0.546781 -1.439892 -0.392246 0.448010 1.114825 -2.762506 -1.038840 -1.135613 -2.679485 -1.536335 1.206544 1.238880 0.977164 0.517548 -2.928741 -1.429874 1.519931 -0.538957 1.308536 1.271248 1.870651 2.078672 1.066921 0.666632 -1.184286 -1.468214 -0.530942 -2.224014 -1.245552 0.097094 0.879154 -1.058390 2.266035 0.732924 0.405533 0.576116 -0.044983 0.666818 -1.498025 2.697635 1.892464 -1.546605 0.228751 0.882996 2.391387 -3.165709 -1.786781 -PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = -0.842588 -3.266831 3.670870 3.312297 0.565082 1.905615 0.974578 -1.222888 2.000206 1.872897 -1.385570 2.018912 -2.165196 -0.391854 -0.073685 1.312778 -1.832750 -2.618112 0.668646 -0.285463 -0.286102 -1.904747 -0.409669 2.017752 1.102318 1.223759 -1.191043 -0.112453 -3.613933 -3.152448 0.757600 -0.639984 1.800080 1.317951 0.809735 -3.843792 2.367853 2.972602 -0.350264 -4.011841 0.249770 -1.108239 -0.681820 -0.375822 0.038681 1.534962 1.311932 1.115061 0.109676 1.225778 0.077735 -0.541859 1.426820 2.843472 0.220667 2.822028 2.787826 -0.042648 0.805762 0.181278 1.174377 -0.355802 1.982027 1.990595 -1.125059 -0.934989 -0.569076 -0.607783 -2.530945 1.256087 0.679257 -0.719638 -1.714248 -0.572874 -1.222390 -0.263210 -1.233335 1.478445 4.152569 -1.618537 4.020073 1.780940 2.569025 -0.716745 1.944662 -0.147636 2.260856 1.443318 -2.031974 -0.477801 -3.009825 -1.822235 0.017703 0.520916 -1.700971 -0.182050 1.440283 -2.114125 -3.238245 1.722020 -0.039626 -0.453286 -1.781814 0.470933 1.817367 1.630715 -0.930187 -2.577756 -1.377244 1.189626 -1.516459 -1.665827 -0.670916 0.476967 -0.772195 0.039191 -2.633192 -0.620440 2.004773 -2.146602 -0.467789 2.208198 -0.807249 1.607460 -0.808523 -0.164633 -0.081668 1.471776 1.381344 0.960180 1.645156 -1.259841 -2.843837 1.450345 1.070171 1.021038 -1.352374 0.023676 0.817424 1.224408 0.440340 1.018287 -1.008400 1.903865 1.699001 -0.660036 -1.978556 -2.765999 -0.429668 -2.133555 0.918816 -2.036039 -0.377783 1.054523 2.444741 0.444557 0.838145 2.880801 -2.702933 2.071826 -0.248263 0.988234 0.414407 0.489415 0.967382 -1.452911 -2.123847 1.873570 2.315497 0.365365 0.848904 -1.218623 0.332157 -1.480787 -2.315968 1.756767 0.356454 0.057511 2.675312 1.137733 3.300415 -2.064754 -0.051842 0.166390 -0.136961 0.179301 -0.216482 -3.387267 1.701376 0.019256 1.357381 3.102947 -0.174119 -1.672440 0.920947 0.051861 0.099565 -1.864955 2.194756 -2.277388 -0.444617 -0.988888 0.216581 -1.222082 -1.595157 -1.573963 0.165316 3.642305 -1.001109 -2.934388 1.487864 -1.237762 1.065202 -3.932444 1.773553 -1.771993 1.576960 -0.434671 -0.906890 -0.362824 -0.085018 -0.398431 -0.693130 1.715721 -1.449580 1.629774 2.415348 0.568460 0.019619 1.237749 1.031335 -0.391096 -0.064293 -1.306113 1.575664 -0.215876 -0.491991 -0.434480 -1.311927 1.731791 -0.088634 -0.913247 1.493421 2.180062 -0.176895 0.977548 1.294070 0.509072 -1.950010 0.954782 0.374199 2.370173 -1.362970 -0.489806 -1.278549 0.067801 -0.083628 1.676412 -3.263769 -2.814984 -1.483164 -3.121180 -1.386329 0.002725 1.552706 0.388945 0.318481 -3.292718 -1.999381 1.667030 -0.816811 2.124608 1.798772 1.650138 2.430559 1.599383 -0.442437 -1.142639 -0.497858 0.298803 -1.566313 -0.709826 -0.946435 1.318145 -1.418188 1.956011 2.167005 -0.275551 0.695674 -1.339996 2.276735 -1.708739 3.838095 2.061712 -2.357712 0.610218 0.880477 2.945238 -1.752310 -2.170578 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = -8.961272 -23.828298 22.157630 21.328765 5.247939 15.138028 9.276855 -7.242855 7.311173 16.872306 -9.803515 15.690999 -11.951380 -6.077906 -0.612341 4.424563 -6.000726 -14.631912 3.016139 -2.572172 0.548874 -10.531296 -11.305734 19.345345 5.738670 -0.718869 -6.344924 -0.978136 -27.617993 -22.827806 -1.127877 -0.813445 10.825154 1.192509 6.018750 -25.645868 13.243774 25.336108 -0.973332 -24.101852 1.214423 -5.341169 -8.269139 5.545053 -3.386131 9.848368 8.076375 1.115880 -3.889008 7.399799 6.107176 -2.985424 14.386354 21.828853 5.359877 23.082291 22.677592 -0.313208 9.229718 2.286837 6.457150 -3.676351 11.906014 10.614783 -4.018571 -3.867435 -3.572431 2.816160 -13.029733 3.644656 4.959366 -10.427113 -8.166388 -5.263287 -12.042425 -4.243090 -6.560273 2.898282 27.916583 -7.506448 31.227102 14.654838 17.728124 -4.538645 16.199811 -1.327420 15.241349 8.978324 -13.568881 3.452392 -17.022993 -9.760471 0.828540 13.209777 -16.666696 1.188476 10.527363 -15.679721 -23.103633 14.719584 -2.104808 -6.818788 -8.330474 1.288287 7.388911 6.186778 -6.980820 -17.716391 -13.541195 12.082946 -9.879841 -12.636926 -6.146419 2.846720 0.146367 3.760497 -14.687166 -0.494374 17.698437 -12.638080 -6.227286 15.562140 -3.185320 14.391115 -5.430448 -0.743761 -0.307248 3.894414 8.405813 6.308314 6.192667 -10.642970 -27.340201 4.020119 3.678372 1.398628 -9.938128 -2.546432 10.433568 9.844209 10.615935 18.131138 -3.246573 16.847997 9.910012 0.194426 -8.791115 -21.119632 -4.521802 -10.696082 5.936410 -9.463701 -8.008544 1.088423 14.639870 -1.607749 1.216825 12.296384 -9.038536 13.892190 -0.082052 3.942545 -0.151885 -8.282157 4.777304 -9.035156 -15.285773 13.096980 18.048921 6.129684 7.002717 -5.061586 0.870502 -4.814224 -15.149629 8.434303 -0.504502 0.582028 21.673591 10.579131 34.716992 -9.634249 1.198517 -4.477381 -3.126040 3.308111 -4.073080 -20.685256 8.424446 2.566321 5.144785 25.723831 -0.758590 -7.503073 7.040050 -0.445999 0.105853 -14.456511 21.595251 -14.552940 -0.783061 -5.290977 -3.133776 -8.578761 -9.893747 -12.571013 0.906324 23.822268 -10.124982 -18.612423 6.844981 -4.144716 1.943455 -24.939293 19.070345 -9.808337 13.203439 -5.218077 -9.143009 -0.152278 5.402871 -1.982534 0.189732 10.655343 -15.896699 12.690502 12.968207 1.588790 1.470614 7.257650 5.040446 -5.019342 -4.051303 -13.206192 10.578078 1.268293 -4.615627 -6.637831 -8.105252 13.700945 1.777110 -5.175701 0.056055 12.680993 -6.775723 -4.693828 13.189188 -1.656455 -10.610026 5.859376 2.749814 14.139777 -10.145465 -3.963436 -10.986339 -1.316721 4.903022 8.124248 -22.260968 -7.981377 -12.854017 -16.830475 -8.569185 5.427029 10.664063 7.843826 1.138421 -25.789185 -15.809651 15.761745 -6.164510 4.309937 13.786863 14.192290 16.573543 7.026331 6.940820 -4.677487 -8.496352 2.437919 -11.023556 -5.647214 -1.562960 7.039706 -9.475006 16.749547 8.541449 1.558296 8.791371 0.005182 11.279644 -12.619611 25.712432 12.700327 -16.593692 1.988967 9.701259 17.019342 -22.073930 -13.014634 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -9.952651 -22.080834 19.154451 19.022317 6.913451 14.682527 9.290124 -6.756653 6.829993 18.756826 -8.558091 14.334181 -11.056151 -6.413513 -0.062073 4.204063 -2.878091 -13.562322 3.110010 -2.375036 0.930340 -10.263344 -11.040787 17.606294 4.716276 -3.960464 -5.632639 -0.709991 -26.683639 -23.546363 -2.513746 -0.496553 9.646478 -1.527349 4.870118 -21.564065 12.347541 24.178437 -0.681935 -21.598461 0.779890 -4.545512 -7.843620 7.643658 -2.151775 9.532931 7.437444 -1.516286 -3.730418 7.151067 8.706118 -3.062494 13.713122 19.188621 4.565044 22.174592 20.319890 -0.154026 8.952431 3.262538 5.522952 -3.432353 11.512819 10.298966 -3.902669 -2.579680 -2.740133 4.660019 -12.392676 2.910591 3.990454 -10.944336 -6.840579 -4.347117 -10.321160 -4.256323 -4.837333 0.111992 25.685916 -5.026053 29.750394 14.240967 16.662171 -4.631067 15.658364 -1.893420 14.567228 7.831802 -13.496534 2.964862 -14.779722 -8.167004 0.205547 15.537955 -15.400732 4.867828 9.470866 -12.605472 -21.592404 13.913080 -2.837064 -5.972849 -9.397895 1.774547 6.889666 4.933894 -6.017100 -17.279013 -13.791452 11.869048 -9.962058 -12.119261 -6.170190 0.422789 0.150985 4.821681 -12.427028 -1.459677 16.555366 -12.290317 -8.311520 14.369289 -3.028597 13.765788 -4.802496 -0.360871 0.178622 1.251512 7.525332 6.719844 5.817229 -10.817785 -29.103401 2.717118 2.852728 -0.610622 -8.700459 -1.635437 9.841455 8.837095 10.379556 19.136656 -3.204912 16.522377 10.028167 0.848803 -7.130053 -18.942948 -2.671897 -8.881927 6.225914 -8.388174 -7.425154 -1.698414 13.423419 -3.233804 0.685238 11.250828 -7.670779 13.486624 0.004353 3.490339 -0.299274 -9.952355 4.244406 -8.282384 -14.430764 11.841498 18.622412 4.917325 6.603727 -4.642109 0.271688 -3.750017 -14.210425 6.897028 -2.099348 0.506803 20.171745 9.249866 35.890968 -9.245719 1.844427 -4.555769 -2.294714 3.743889 -4.699455 -19.061337 7.247602 2.651432 4.668185 24.405654 -0.527466 -7.373426 6.056605 -0.468168 0.323897 -13.948102 21.606920 -13.692734 -0.144453 -3.925005 -4.737489 -7.745947 -9.524977 -10.905742 2.340029 21.447842 -7.259517 -17.857558 5.964874 -3.949967 -0.000713 -23.252922 18.658556 -9.000304 11.001264 -6.092116 -8.271587 -0.716115 8.001515 -0.839787 0.628319 9.693154 -15.673454 13.587566 12.218325 0.941211 2.114872 6.609802 3.938714 -4.320541 -5.329241 -12.429848 10.068846 1.821874 -4.050744 -6.863969 -7.828136 13.798055 2.257133 -5.894310 -2.408482 12.598058 -9.367450 -6.312215 12.573641 -2.301283 -9.290718 6.118763 3.189649 13.006435 -8.995637 -3.436053 -10.464598 -2.875522 4.911363 7.639872 -20.252493 -4.805073 -9.079987 -15.635988 -7.734545 7.063802 9.915332 8.399981 1.646974 -24.457567 -14.286906 15.508762 -5.540263 3.226404 12.122542 13.863992 14.759242 6.012735 8.058387 -4.228650 -10.141403 0.878044 -11.181455 -6.565661 0.936561 5.890936 -8.532238 16.572355 5.199426 2.334683 7.783170 0.824419 8.260065 -11.616873 23.226873 11.812193 -13.291887 2.155205 8.078305 16.987435 -23.260928 -11.564485 -PE-benchmarks/little-and-big-endian-mystery.cpp__main = -0.151609 -0.820822 0.834642 0.739387 0.093079 0.410171 0.349613 -0.230192 0.747197 0.242493 -0.367943 0.257513 -0.671615 0.058324 -0.101955 0.239769 -0.554435 -0.753851 0.175309 -0.093276 -0.180116 -0.651006 -0.065548 0.309627 0.189500 0.288908 -0.242193 -0.080926 -0.928330 -0.120359 0.539508 -0.274220 0.352050 0.474724 0.205769 -1.178172 0.430556 0.457692 -0.125535 -0.962215 -0.059394 -0.485348 0.086327 -0.341527 0.252970 0.264965 0.368238 0.675995 0.174389 0.148186 -0.033766 -0.304046 -0.058253 1.078970 -0.282999 0.624636 0.659102 0.071552 0.135390 0.123190 0.300836 -0.107852 0.457427 0.667911 -0.408457 -0.174283 -0.146264 -0.442017 -0.639494 0.443424 0.236492 0.177304 -0.622553 -0.153446 -0.381865 -0.183088 -1.113406 0.525997 1.247094 -0.644835 1.000381 0.493048 0.950123 -0.037699 0.523133 0.028280 0.690858 0.272404 -0.712865 0.068495 -1.030641 -0.328403 -0.094531 -0.197839 -0.214182 -0.435880 0.243179 -0.487515 -0.788815 0.405575 -0.086966 0.178227 -0.273165 0.261801 0.493055 0.378012 -0.432017 -0.790898 -0.378473 0.130607 -0.299362 -0.256954 0.165073 0.039679 -0.201073 -0.478070 -0.738405 -0.327552 0.388917 -0.665029 -0.046146 0.687117 -0.458572 0.403344 -0.093405 -0.162473 -0.041703 0.658148 0.419886 0.142730 0.371795 -0.397854 -1.123710 0.382735 0.284512 0.865898 -0.199426 0.151110 0.210347 0.229530 -0.098549 -0.066858 -0.051721 0.304713 0.289146 -0.372683 -0.520064 -0.676221 0.073269 -0.579178 0.325997 -0.561758 0.049856 0.076846 0.642532 0.599313 0.310157 0.898559 -0.726699 0.568959 -0.229292 0.258315 0.142916 0.408558 0.352114 -0.336502 -0.478863 0.317871 0.453487 -0.007989 0.341663 -0.541470 0.054648 -0.569793 -0.389864 0.307867 0.262889 -0.148377 0.695431 0.252117 0.326456 -0.901196 0.165241 0.156880 0.099499 0.059294 0.021422 -0.851146 0.684700 -0.001799 0.148805 0.356014 -0.068863 -0.406432 0.191849 -0.099075 0.147801 -0.425454 0.130329 -0.501347 -0.352525 -0.507758 0.601193 -0.395331 -0.411733 -0.202297 0.107864 0.851797 -0.147945 -0.508906 0.397374 -0.150438 0.419478 -0.810885 0.573642 -0.444162 0.533624 -0.229751 -0.181948 -0.094432 0.219227 0.045781 -0.159996 0.450058 -0.315381 0.312733 0.568188 0.216448 0.166991 0.485338 0.460792 -0.013149 -0.143244 -0.222192 0.327210 -0.062058 -0.190832 0.128535 -0.382587 0.568430 0.085209 -0.021175 0.777953 0.730902 0.118520 0.531477 0.389085 0.071812 -0.448281 0.001508 0.004268 0.682562 -0.413720 0.005683 -0.398407 -0.006709 -0.217776 0.257680 -0.772726 -0.917327 -0.312000 -0.569645 -0.346495 -0.105349 0.100128 0.150380 0.199565 -0.879439 -0.333648 0.078383 -0.357743 0.349070 0.286850 0.327861 0.641037 0.597810 -0.346644 -0.443670 0.238685 0.108220 -0.446863 0.019623 -0.479899 0.362017 -0.607537 0.459283 0.597668 -0.172644 -0.002621 -0.076361 0.981520 -0.400995 1.072602 0.608671 -0.602662 0.253667 0.517431 1.087214 0.066115 -0.514434 -PE-benchmarks/partition-problem.cpp__main = -1.867621 -4.724306 4.055481 3.764017 0.944852 3.184525 1.711872 -0.782699 1.697419 2.630318 -1.799661 2.970564 -2.328840 -1.448519 -0.127508 0.407633 -1.191475 -3.009101 1.172101 -0.027675 0.323074 -2.403420 -2.202343 3.920519 0.721937 1.298470 -0.959831 -0.077613 -5.703893 -3.663828 0.109629 -0.295290 2.000310 1.211952 1.431777 -3.980935 2.240323 4.574743 0.059896 -5.273220 -0.009426 -1.151275 -0.929244 0.938622 -0.014436 2.199402 1.769163 0.759972 -0.778728 1.085078 0.202248 -0.887126 2.441592 3.165488 1.221397 4.051090 4.129364 0.076252 1.990877 0.138764 1.228525 -0.906241 2.143085 2.162263 -1.404753 -0.405577 -0.753016 0.237449 -2.599278 0.676868 1.198414 -1.428194 -1.753434 -0.676740 -2.111945 -0.672558 -1.597667 0.878349 5.064079 -1.296233 6.001064 2.690263 3.841179 -0.861238 3.238135 -0.158273 2.817137 1.645762 -2.789028 0.415279 -4.247378 -1.631773 -0.166413 1.445059 -2.902554 0.506537 1.641077 -3.069840 -4.260606 2.598613 -0.754134 -0.876317 -1.338820 0.775559 1.938731 1.638210 -1.290093 -3.389685 -2.182284 2.335033 -2.440145 -2.159110 -0.739622 0.765473 -0.158890 0.208026 -2.425926 -0.301312 3.402223 -2.411085 -0.721924 3.084838 -0.489351 2.867664 -0.910697 -0.477695 0.094017 0.838128 2.284144 0.524848 1.228819 -2.668316 -4.341788 1.651212 0.312556 0.477121 -2.174670 -0.689145 2.085813 1.763561 2.261507 2.315196 -0.982504 2.396052 1.674284 -0.392992 -1.414213 -4.184963 -0.793325 -1.938257 0.864680 -1.709817 -1.063557 0.478889 2.739068 0.057121 0.288281 2.126733 -2.231023 2.422698 -0.048611 1.079046 -0.255390 0.111793 0.741272 -1.609239 -2.676763 2.154911 3.212439 1.062404 1.055957 -1.325848 0.048958 -0.727982 -2.586137 2.000836 0.169264 0.557527 4.253841 1.820329 5.000649 -2.012865 -0.460938 -0.956171 -0.560002 0.388472 -0.681093 -3.837164 1.920528 0.417790 1.243227 4.367802 -0.468582 -1.169484 1.459707 0.319765 0.168022 -2.767511 3.740577 -2.892159 -0.572380 -1.085752 -0.254978 -1.941011 -1.987665 -2.827867 -0.026320 4.466308 -1.420192 -3.567358 0.876184 -1.160526 0.740243 -4.421409 1.943276 -1.908970 2.016461 -0.470569 -1.349499 -0.347981 0.517259 0.028386 -0.741058 2.012927 -3.122790 2.552455 2.082330 0.439967 -0.040598 1.777822 0.779871 -0.700852 -1.154605 -2.379235 1.563414 -0.091122 -0.551098 -0.600994 -1.562586 2.857748 0.736395 -1.303731 0.604439 2.598484 -0.931032 -0.389798 2.115320 -0.756045 -1.980130 0.438335 0.373418 2.901340 -1.791855 -0.696226 -2.642571 -0.247313 0.975057 1.322328 -4.291991 -2.049262 -1.652181 -3.563423 -1.695947 0.230392 1.791552 1.856989 0.599950 -5.059372 -2.866557 2.527635 -0.935966 1.613839 2.184259 2.206666 3.276740 1.359013 0.660735 -1.233577 -0.858488 0.344543 -2.392637 -0.795361 -0.604121 1.247581 -1.708798 3.199063 1.884927 0.012949 1.307919 -0.989114 2.238522 -2.397249 4.887895 2.743038 -3.440348 -0.053640 1.020472 3.595257 -3.542349 -2.588678 -PE-benchmarks/longest-palindromic-subsequence.cpp__main = -1.522745 -4.159175 3.799151 3.494438 0.355545 2.638531 1.286177 -0.965587 1.060378 1.878754 -1.585271 2.726716 -2.063392 -1.039200 -0.672079 0.013104 -1.213364 -2.309281 0.429847 -0.380239 0.014212 -1.820134 -2.287709 3.842904 0.696399 0.806187 -0.962107 -0.306279 -4.948721 -2.187252 -0.069267 -0.028300 1.763563 0.883845 1.344517 -4.071962 1.570167 4.151516 -0.092685 -4.179461 0.169031 -1.181734 -0.901554 0.632997 -0.875587 1.172849 1.256457 0.395380 -0.820284 0.598752 0.299781 -0.401453 2.462995 3.926678 1.141602 3.669844 3.864075 0.053070 1.740073 0.030835 1.069401 -0.721187 1.817585 1.366644 -0.838311 -0.588288 -0.737201 0.248409 -1.845469 0.508094 0.897451 -1.394349 -1.347721 -1.132202 -2.548369 -0.909126 -1.627258 0.955626 4.373563 -1.671191 5.022251 2.447558 2.926304 -0.400636 2.957444 0.062588 2.507405 1.396298 -2.022755 1.028002 -3.352074 -0.789897 0.081991 1.129232 -3.044936 -1.072943 1.891568 -3.784558 -3.935102 2.560776 -0.392869 -1.133481 -0.432307 0.133290 1.009345 1.150859 -1.603377 -2.989379 -1.980159 2.264890 -1.386398 -1.931055 -0.498415 0.786475 0.487707 -0.097020 -2.291527 0.322996 3.065104 -1.913998 -0.438318 3.032644 -0.097159 2.575481 -0.745219 -0.223217 -0.020511 1.110780 1.656021 0.369621 0.094037 -1.746975 -3.262309 0.892360 0.272134 0.244373 -1.942179 -0.677959 1.953361 1.663753 2.184212 2.415713 -0.547169 2.243802 0.905717 -0.165546 -1.189651 -3.856062 -1.299222 -2.076515 0.296710 -1.224413 -1.765661 0.523598 2.325612 0.577254 0.035762 1.414301 -0.853196 1.708284 0.181962 0.397366 -0.173406 -0.775322 0.802332 -1.455960 -2.658293 1.918064 2.533933 1.424893 1.057342 -0.791632 -0.127382 -0.515857 -1.876120 1.318068 0.615346 0.368219 4.044205 2.154589 4.587184 -1.675095 0.009054 -1.084217 -0.765785 0.505543 -0.895403 -3.372527 1.332988 0.632154 0.257656 3.944867 -0.399719 -0.734573 1.531083 -0.116342 0.253032 -2.488561 3.134911 -2.374346 -0.599050 -1.334334 0.012169 -1.692266 -1.511347 -2.712315 -0.748255 4.027550 -2.891099 -2.436739 0.997094 0.077871 0.626377 -3.543807 2.364337 -1.446065 2.860738 -0.355918 -1.597182 -0.022811 0.630486 -0.300990 -0.169582 1.788743 -2.917068 1.802208 1.722367 0.354278 0.306812 1.423459 1.009918 -0.907028 -0.719319 -2.501108 1.684884 0.150860 -0.965535 -0.489102 -1.349235 2.224497 0.578646 -0.457438 0.496234 2.124866 -0.401766 -0.695529 2.268639 -0.559121 -1.579927 0.375908 0.153457 2.258957 -1.887955 -0.532313 -2.235436 0.136309 0.950074 0.919606 -3.900568 -1.713703 -2.670662 -2.294437 -1.147138 0.056551 1.254302 1.583505 0.112626 -4.405266 -2.979249 2.437936 -1.236088 0.617532 2.221994 2.205488 3.137821 1.493592 0.917244 -0.650245 -0.422300 0.601919 -1.748881 -0.431443 -0.893637 1.192592 -1.525941 2.865311 1.856080 0.110397 1.758750 0.370536 1.742375 -2.291822 4.394254 2.291780 -3.476758 0.112276 1.852814 2.630336 -3.075728 -2.262805 -PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -9.462419 -15.662836 11.726530 11.304703 4.769960 10.976063 6.100027 -3.163545 2.765149 11.882276 -4.743794 10.492101 -6.643262 -6.191708 -1.499102 -0.272165 0.705493 -8.651455 2.631524 -1.397810 0.918232 -6.791921 -11.088759 14.566937 1.227070 -4.023575 -2.977440 -0.426075 -20.377147 -13.159273 -4.113506 0.542594 5.813468 -2.522170 4.359421 -12.259680 6.171613 17.058821 0.371298 -13.912416 -0.402441 -3.144204 -3.977896 6.824632 -3.053317 5.290010 5.275914 -4.158080 -4.136327 2.880310 6.253612 -1.859531 9.712595 12.440661 4.845547 15.001789 13.426348 -0.009032 7.349531 1.673855 3.193317 -3.704316 7.366173 4.769612 -3.205316 -0.030494 -1.656436 4.996563 -6.520092 -0.232940 3.466675 -8.500916 -2.736875 -2.927013 -8.830286 -4.633646 -1.661446 -2.338492 15.097961 -2.487956 20.710101 10.366181 11.639850 -1.717600 12.499363 -0.743298 10.083924 4.414133 -9.061696 4.257710 -10.151202 -1.196737 -0.765715 11.297534 -11.823145 2.668790 6.672018 -10.634636 -14.624040 10.618994 -3.196946 -4.031919 -5.154510 0.669366 3.697425 2.755551 -5.555599 -12.209839 -10.078797 9.668977 -7.126030 -7.887341 -2.396735 -0.446089 2.559718 2.152488 -6.210376 0.096210 12.860799 -7.456021 -6.111221 11.024763 -0.238539 10.576254 -2.660987 -0.408710 0.437931 -0.334351 5.979173 2.144852 -1.317424 -9.009542 -19.438357 0.040045 -0.471497 -3.222549 -6.170290 -2.818611 8.291384 6.319324 10.242066 14.003795 -2.155210 10.613168 4.760734 1.589821 -2.465116 -13.858197 -2.729927 -4.913687 2.139630 -3.564191 -7.351731 -1.739484 8.090503 -2.047701 -1.404343 4.201416 -0.277404 8.278619 0.364216 0.821151 -1.439339 -8.526245 2.507246 -5.020904 -9.640940 7.209325 12.669778 5.632168 4.266418 -3.137256 -0.693972 0.085689 -8.311284 2.789160 -0.907211 1.691621 14.909884 7.061724 24.458475 -6.119125 0.395071 -5.748670 -2.050331 3.058262 -4.610370 -11.365967 2.701989 3.006997 -0.676498 16.158978 -1.071653 -3.777604 5.039420 -0.137887 0.883715 -10.277607 14.974240 -8.698172 -0.028987 -2.332910 -4.119327 -6.788636 -5.681641 -9.865691 -1.603306 13.763579 -8.094040 -11.185093 1.964044 0.432841 -0.222144 -13.879977 9.738949 -4.956088 8.911527 -3.506511 -5.592854 -0.739593 7.876878 0.848568 0.812649 6.154363 -13.019735 9.458397 6.282104 0.124453 2.359889 4.832845 2.183416 -3.140662 -5.558593 -9.543105 6.324262 1.358766 -3.291654 -3.453327 -5.177183 9.738083 3.848571 -3.217056 -4.194114 8.506358 -7.165418 -7.061475 9.522996 -4.338766 -4.759025 1.537638 1.890193 8.276729 -6.229932 -1.743300 -9.208644 -1.690335 5.095583 2.791645 -13.751394 -0.853394 -5.808259 -9.106512 -3.813468 5.236937 4.837153 8.113888 1.269718 -17.193214 -10.314209 12.892607 -3.929148 1.510166 7.789415 9.546232 10.819065 3.672666 6.930622 -2.840058 -5.464776 -0.040521 -7.764224 -3.477691 0.897726 2.963062 -5.824068 12.887179 1.877885 2.136747 6.092600 2.944107 2.861361 -8.361738 14.796841 8.136999 -10.255595 0.002593 5.721751 10.574589 -17.463814 -7.266249 -PE-benchmarks/find-k-closest-elements-given-value.cpp__main = -1.583577 -3.493514 3.577751 3.098482 0.776024 2.035521 1.242954 -1.041544 1.988087 2.444735 -1.218292 2.245258 -1.987135 -0.471323 -0.053617 1.084004 -1.341975 -2.546867 0.469251 -0.597843 -0.498721 -1.944624 -1.115496 2.066547 0.891216 -0.173195 -1.390910 -0.157694 -3.885855 -3.378421 0.223763 -0.512466 1.679749 -1.020906 0.746108 -5.884343 2.234130 3.276041 -0.381855 -4.224622 0.251676 -1.104836 -0.491423 0.395378 -0.544075 1.214567 1.456612 0.508488 -0.054668 1.122670 0.605007 -0.235352 1.317019 4.920995 0.129561 3.247508 3.470025 -0.056368 0.383939 0.498611 1.098486 -0.641670 1.917437 1.793973 -0.913490 -0.745726 -0.270951 -0.067023 -2.493449 0.974890 0.747474 -1.323763 -1.273839 -0.842946 -1.988895 -0.830653 -0.350793 0.983322 4.465648 -1.721850 4.433277 1.814451 2.795068 0.045737 2.277105 -0.184524 2.554955 1.282994 -2.281330 0.069376 -2.432657 -1.331760 -0.040043 1.508084 -1.800589 -0.960000 1.559235 -2.127413 -3.412541 2.205022 -0.211280 -0.338503 -2.316019 -0.403584 1.845433 1.544970 -1.389206 -2.993580 -2.519569 1.524372 -1.434707 -1.703192 -0.186718 -0.213270 -0.341707 -0.071369 -2.613424 -0.482836 2.503825 -2.106680 -1.414748 2.558781 -1.312518 2.040137 -0.695416 0.219903 -0.205434 1.260326 1.440926 1.081474 0.826155 -1.339921 -4.376881 0.384405 0.476400 1.224866 -1.124575 -0.194065 0.890421 1.291627 0.773195 1.888395 -0.796753 2.348547 2.112810 -0.087633 -1.708958 -3.067963 -0.254492 -2.203180 0.928221 -1.836812 -0.906997 0.720549 2.359027 0.363754 0.499427 2.877447 -1.980516 2.292104 -0.357721 0.437177 0.404034 -0.810364 1.026270 -1.462736 -2.313723 1.595666 2.700344 0.810820 1.007601 -1.307724 0.221319 -1.238004 -2.282545 1.133009 0.558300 0.040417 2.736005 1.397241 5.395376 -2.722651 0.126208 -0.277842 -0.417200 0.499897 -0.680441 -3.321568 1.111713 0.522093 0.749345 3.567772 -0.126204 -1.875247 1.082634 -0.078572 0.195625 -1.866393 2.618989 -2.304865 -0.340896 -0.852779 -0.281887 -1.656637 -1.208176 -1.979292 -0.084142 3.774187 -1.673443 -3.439642 1.571541 -0.656597 1.014669 -4.512154 3.314281 -1.572480 2.337386 -1.106298 -0.844068 -0.252982 1.099972 -0.252048 0.267224 1.683649 -2.060962 1.689846 2.649585 0.442222 0.594651 1.085076 1.230983 -0.468178 -0.465926 -1.609085 1.772814 -0.293044 -0.864437 -0.688787 -1.240357 2.173777 0.293026 -0.383551 0.350852 2.208829 -0.882817 0.229277 2.461989 0.055557 -1.738154 1.123456 0.245826 2.605701 -1.488887 -0.314750 -1.593972 0.414085 0.261911 1.388047 -3.409435 -1.940301 -2.085041 -3.302015 -1.200478 1.085428 0.975266 0.609461 0.277034 -3.892506 -1.956467 2.364503 -0.955969 1.796347 1.932601 2.043656 2.650097 1.688043 0.080316 -1.162892 -0.789255 -0.202618 -1.768360 -0.925866 -0.638612 1.177301 -1.796747 2.268246 1.575131 0.078803 0.938634 -0.001464 1.593612 -1.814783 4.029890 2.146928 -2.198462 0.594683 1.623297 3.660930 -2.655910 -2.082623 -PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -8.338425 -11.313077 9.845893 8.922877 3.669404 8.475669 3.273209 -3.503205 4.244240 10.177021 -2.771700 7.301494 -6.386101 -2.973278 -0.402349 1.660532 -1.094994 -7.587202 0.972268 -2.736563 -1.653109 -5.609956 -6.445462 8.848870 1.434487 -4.699277 -4.084883 0.562146 -14.229761 -12.461239 -3.209570 -0.137288 5.033023 -7.154821 2.315674 -15.382560 6.814464 12.657407 -0.416671 -12.152853 0.484882 -4.113682 -1.781964 5.190208 -3.775288 3.122730 3.604654 -3.562438 -1.163757 2.579505 4.511981 0.378537 4.663328 15.086836 2.388087 11.422856 10.175437 0.203591 0.884997 2.652422 2.623486 -2.231931 6.465989 3.590622 -3.305940 -1.095099 0.250685 2.719804 -6.542315 1.768238 1.059398 -8.084383 -0.674715 -3.078700 -7.538701 -4.095554 5.955337 0.348811 12.309825 -4.479099 13.697407 5.399256 7.093519 1.084153 9.806649 -1.505762 9.698967 3.305722 -6.557160 0.460174 -4.616718 -1.355355 -0.349602 8.992931 -7.444899 -0.552884 5.392321 -8.285079 -12.184214 8.036741 -2.043704 -2.138591 -9.350816 -2.462996 5.333700 3.779510 -4.854913 -9.789069 -8.583437 7.826246 -5.058823 -6.446171 -1.271878 -2.304738 0.276075 1.359765 -6.962879 -0.986830 8.915300 -6.426493 -7.270627 9.620820 -2.272019 7.693130 -1.842677 1.360725 -0.247534 1.992028 2.923131 3.157787 -0.870520 -4.395895 -13.523408 -1.833876 -0.926346 -1.822658 -4.269621 -0.894280 4.433291 4.342488 3.761705 9.671539 -4.662890 8.968452 6.708763 1.558227 -3.335752 -9.022997 -0.677136 -6.803516 1.026344 -5.217271 -6.122150 1.229260 7.437487 0.169429 -0.523879 8.610795 -2.949631 7.053873 0.089091 -0.295880 0.797101 -7.301018 2.684755 -5.376070 -8.845029 5.012956 9.715689 3.561590 2.477884 -2.860582 -0.547079 -2.084503 -7.777401 2.570743 0.708838 1.335614 10.387805 5.544262 20.771068 -9.021922 1.213370 -3.107110 -2.899712 3.008990 -4.577844 -10.293613 -0.298163 3.392360 0.932550 13.971115 -0.769053 -6.040661 3.047617 0.062817 1.376346 -7.742823 10.466616 -8.097509 0.658701 -1.785811 -5.154205 -5.375378 -3.886110 -7.572747 -2.299570 11.413798 -7.430160 -12.052307 5.103473 0.425543 2.181343 -15.285188 8.147481 -4.764488 8.707195 -3.551328 -2.800924 -1.038350 5.861257 -0.107990 3.544496 5.316412 -8.633821 7.136910 8.111026 0.437199 3.351252 2.736071 3.207804 -1.784653 -3.428284 -7.334050 6.901597 -0.067927 -3.734146 -3.370428 -4.827802 6.836251 2.243736 -1.409975 -3.516217 6.964655 -6.012830 -3.159860 9.655130 -1.657205 -4.386211 4.387675 0.541353 7.632259 -4.770592 -1.249902 -5.888815 1.069640 3.292964 3.420329 -11.514200 -3.189583 -7.688720 -10.625915 -2.342874 5.708650 2.697338 3.737090 0.963751 -12.598226 -6.917424 10.727361 -3.252663 8.332962 6.044287 8.465819 8.832417 5.026882 3.180434 -2.529937 -4.261816 -2.145374 -6.980243 -4.237059 0.596322 3.042503 -4.275160 9.320421 2.308173 2.265856 4.709795 2.397769 -0.943037 -6.391119 11.039765 6.931907 -6.023942 1.490274 5.336877 10.065606 -11.864720 -6.514010 -PE-benchmarks/dfa-based-division.cpp__main = -1.301784 -2.135391 1.816626 1.531619 0.559920 1.305409 0.798389 -0.312245 1.282912 1.086857 -0.879035 1.062244 -1.321453 -0.451922 0.064954 0.141766 -0.678369 -1.758603 0.668458 -0.093056 -0.155866 -1.316016 -0.852977 1.263752 0.200515 0.072023 -0.557607 -0.135683 -2.601068 -1.211808 0.466883 -0.411131 0.996331 0.175607 0.448551 -3.208660 0.964392 1.697326 -0.108999 -2.553129 -0.071430 -1.008104 0.001772 0.102461 0.083136 0.730465 1.119141 0.574025 -0.150910 0.401595 0.008051 -0.586289 0.090097 2.355603 0.103379 1.736850 1.827598 -0.030472 0.151392 0.308063 0.626656 -0.619152 1.375334 1.230904 -1.131361 -0.115124 0.014987 -0.317408 -1.646024 0.506325 0.575573 -0.395320 -0.577376 -0.341988 -1.087404 -0.564748 0.050622 0.581264 2.668943 -0.932791 2.735212 1.122412 2.095096 -0.001156 1.562188 -0.052862 1.619485 0.656227 -1.636811 -0.072530 -2.277965 -0.816323 -0.370395 0.703434 -0.736194 -0.115036 0.714225 -1.276877 -1.927588 1.182180 -0.505495 0.136617 -1.580919 0.171081 1.374599 1.152947 -0.889816 -1.792536 -1.456544 0.861907 -1.301306 -0.901164 0.108015 -0.066218 -0.461351 -0.662484 -1.396164 -0.601726 1.520358 -1.457981 -0.710483 1.698673 -1.057705 1.366834 -0.323672 -0.110262 -0.021834 0.906410 0.952732 0.072457 0.795521 -1.357464 -2.618992 0.061025 0.071322 1.405856 -0.709868 -0.213639 0.821752 0.672727 0.353026 0.508367 -0.539148 1.170762 1.266631 -0.283126 -0.869502 -1.859223 0.311117 -1.249126 0.391539 -1.111479 -0.156737 0.365280 1.492877 0.590020 0.252740 2.110752 -1.305234 1.560229 -0.352057 0.332958 0.055228 0.076140 0.682733 -0.887832 -1.268426 0.787764 1.571505 0.353157 0.675996 -1.082192 0.044161 -0.891431 -1.639812 0.678626 0.442933 0.269746 1.665074 0.726169 2.056211 -2.147321 0.062533 -0.283888 -0.076130 0.248155 -0.308017 -1.928413 0.806552 0.271243 0.291431 1.806975 -0.115737 -1.291434 0.436803 0.134228 0.121681 -1.138719 1.175100 -1.452063 -0.271838 -0.600346 0.006938 -1.197333 -0.974916 -1.178735 -0.117572 2.071120 -0.277283 -2.207514 0.668965 -0.450748 0.917623 -2.830699 0.925939 -1.059884 1.426135 -0.694802 -0.383918 -0.377584 0.658324 0.215409 0.002232 1.028218 -1.192796 1.259165 1.418769 0.333204 0.495700 0.943249 0.694924 -0.051411 -0.750534 -0.855829 0.705957 -0.222664 -0.440690 -0.067689 -0.877203 1.612342 0.577900 -0.308522 0.496085 1.640257 -0.518720 0.564042 1.544422 -0.348688 -0.972323 0.163528 0.135712 1.873286 -0.745274 -0.142832 -1.326159 0.209532 0.172947 0.611921 -1.968684 -1.584948 -0.839826 -2.207921 -0.670709 0.462152 0.330862 0.701531 0.564556 -2.410501 -0.759491 0.644391 -0.586477 1.951028 0.867372 1.157292 1.634722 1.006509 -0.395332 -1.088601 0.137972 -0.082892 -1.527955 -0.415505 -0.585769 0.539731 -1.104070 1.627131 0.884844 0.012483 0.229532 -0.079848 1.412225 -1.028903 2.445992 1.518329 -1.491798 0.214748 0.611482 2.366186 -1.207780 -1.232142 -PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -1.819838 -3.076276 2.885618 2.504000 0.764513 2.024154 1.225178 -0.980607 1.562126 2.110409 -0.832250 1.806865 -1.830549 -0.332177 -0.645687 0.544496 -0.814088 -2.391156 0.292717 -0.725476 -0.642391 -1.801945 -1.208059 2.058598 0.541065 -0.851088 -1.313216 -0.377612 -4.040591 -2.316722 0.138749 -0.381475 1.413717 -1.230569 0.648725 -4.738635 1.574010 2.878158 -0.233111 -3.267156 0.087261 -1.266438 -0.088790 0.548028 -0.650279 0.714069 1.093235 -0.067614 0.154527 0.603207 1.052553 -0.029693 0.708983 4.327437 -0.081322 2.831883 2.325447 0.104210 0.383753 0.587834 0.768844 -0.538695 1.769599 1.383402 -0.961810 -0.473156 -0.260246 0.116296 -2.053549 0.955967 0.530022 -1.060438 -0.939449 -0.517767 -2.056080 -1.090375 -0.095618 0.623080 3.851210 -1.402588 3.695765 1.563632 2.455627 0.106831 2.397322 -0.155707 2.500347 0.887762 -1.982408 0.342285 -2.265239 -0.206421 -0.403339 1.550399 -1.647167 -1.057316 1.491056 -2.220058 -3.224734 2.060252 -0.397536 -0.188526 -2.080317 -0.311809 1.601050 1.143894 -1.667571 -2.891721 -2.385738 1.631853 -1.057392 -1.476140 0.371500 -0.827989 -0.032122 -0.528784 -2.095581 -0.552347 1.987350 -1.922612 -1.673787 2.624296 -0.996768 1.839180 -0.359085 0.317511 -0.198793 1.151433 1.014308 0.751769 0.030413 -1.151917 -4.186341 -0.279348 0.092444 0.857087 -1.022294 -0.314905 0.699890 1.135152 0.540082 1.724137 -0.700867 1.989533 1.878032 -0.228940 -1.304724 -2.396885 0.203079 -1.960536 0.324825 -1.420442 -1.175591 0.121717 2.074331 0.702527 0.407756 2.583775 -1.047815 2.193531 -0.233960 0.059399 0.482263 -1.189916 1.007784 -1.251388 -2.301038 1.288924 2.337403 1.076682 0.863969 -1.122452 -0.051741 -0.962639 -1.929277 0.538919 0.643406 0.177458 2.701490 1.376920 3.912000 -2.895867 0.412416 -0.321675 -0.451465 0.657466 -0.877732 -2.868266 0.673621 0.675431 -0.230569 2.938472 -0.299811 -1.625774 1.124193 -0.135522 0.626078 -1.985747 1.967851 -2.104445 -0.332930 -1.141786 -0.417753 -1.609808 -1.026777 -1.716283 -0.671333 3.142774 -1.693429 -2.905778 1.451364 -0.057853 0.773836 -3.878515 2.160331 -1.304310 2.210080 -1.047189 -0.611957 -0.458540 1.871256 -0.080440 0.490876 1.487878 -2.355517 1.832464 2.434827 0.319555 0.892972 0.974966 1.331551 -0.234092 -0.665736 -1.581370 1.660271 -0.088127 -1.100933 -0.323846 -1.237151 1.797251 0.495166 -0.061829 0.147397 2.159685 -0.920315 0.012567 2.637142 -0.100105 -1.284751 0.557709 -0.032449 2.196193 -1.406187 -0.156786 -1.513902 0.315556 0.196419 0.772709 -3.060472 -1.699944 -2.172283 -2.701227 -0.542387 0.883569 0.384478 0.915522 0.267520 -3.525189 -1.693611 1.764298 -1.041162 1.809772 1.624388 1.803487 2.504600 1.740505 -0.098125 -0.882672 -0.378692 -0.288437 -1.636650 -0.829916 -0.669954 0.997681 -1.765750 2.411986 1.182432 0.152598 0.957079 0.859914 1.281536 -1.753063 3.643496 1.983268 -1.801252 0.690758 1.501468 3.225608 -2.059551 -1.740415 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = -1.007063 -2.687878 4.028772 3.160584 -0.181778 1.628454 0.923378 -2.127011 3.583875 0.241893 -0.765124 0.848872 -2.742393 0.716859 -0.553129 1.275271 -3.307203 -3.017480 0.057880 -1.514664 -1.322524 -2.914746 0.441573 1.201899 0.867851 1.097238 -1.919824 -0.044293 -3.140121 -1.182311 3.045849 -1.296752 1.896165 0.931840 0.545513 -8.377745 2.778367 1.807914 -0.758315 -3.563823 0.144576 -2.364058 0.618429 -1.824799 -0.652188 0.507478 0.758130 1.983140 1.715543 0.156247 0.043642 -0.099606 -0.669607 5.873604 -2.157541 2.276178 1.565311 -0.166113 -0.659304 0.505994 1.020349 0.151593 2.386917 2.769013 -1.840819 -1.516985 0.014294 -1.896289 -3.669609 2.533481 0.615691 0.235120 -2.412215 -0.366306 -2.581101 -1.096916 -1.229107 2.755787 5.170257 -2.730168 3.495440 0.912697 2.959204 0.117284 2.184605 0.008442 3.907366 0.910718 -2.694841 -0.288156 -3.641993 -0.910375 -0.090859 -0.335304 -0.556577 -2.817584 0.840696 -2.959071 -3.350201 1.322145 0.236260 0.603571 -3.162708 -0.556426 2.740805 1.526789 -1.907442 -3.654845 -1.755244 0.932301 -1.113622 -1.104046 0.676883 -0.524015 -0.891427 -2.511042 -3.395094 -1.379091 1.031189 -2.334278 -0.955404 3.116192 -2.516132 0.874064 -0.220721 0.278685 -0.734616 2.923447 0.368165 0.875462 1.125871 -1.124023 -3.176566 -0.050352 0.729790 4.271063 -0.606323 -0.499680 -0.341758 0.908834 -1.747223 -0.677198 -0.261088 1.223522 2.210076 -1.126788 -2.206078 -1.737688 0.413853 -4.096725 0.966913 -2.631362 -0.301424 1.585705 2.776071 2.473948 1.825191 3.859346 -2.994800 2.902349 -0.898194 0.422026 1.869277 1.015061 1.805473 -1.583116 -2.391150 1.339777 0.950550 0.712243 0.847443 -2.001026 -0.066499 -2.522484 -2.282555 1.004897 1.643687 0.302991 2.262950 1.165981 2.847568 -4.828106 1.184723 1.306252 0.106525 0.559442 -0.133917 -3.419321 2.173349 0.470473 -0.168460 2.344178 -0.544884 -2.536114 0.484515 0.021865 1.124007 -2.130434 0.159378 -2.155065 -0.824303 -2.400644 0.644745 -1.702674 -1.522913 -1.533557 -0.666244 3.618053 -2.144432 -3.424379 3.485239 -1.074728 2.919538 -4.842926 2.301589 -1.994801 2.847021 -1.591527 -0.417493 -0.489862 0.526743 -0.682385 0.642343 1.760941 -1.242325 1.245997 3.668854 1.143850 1.277071 1.099286 2.384482 0.396760 0.425056 -1.073132 2.593783 -0.451964 -1.043828 0.552138 -1.659139 1.721546 -0.098428 0.721456 2.973797 3.403773 0.999896 2.636755 2.631666 1.015058 -1.802131 0.791731 -0.387588 2.088007 -1.311565 -0.093030 -0.679966 1.066242 -1.113559 1.358125 -3.433436 -4.861375 -2.866346 -3.504230 -0.811988 -0.221830 0.251305 0.134123 0.661523 -3.715663 -1.096512 1.011034 -1.438556 3.586801 1.376907 1.459484 2.571819 3.325778 -2.301143 -1.707771 1.188980 0.238358 -1.547680 -0.043172 -3.004719 2.186917 -2.584718 2.060222 3.014876 -0.952180 0.117728 -0.246609 3.471452 -1.733767 4.628549 2.268373 -2.026121 1.812470 1.527318 4.069181 1.282823 -2.127496 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -0.940958 -1.598108 3.361275 2.685320 0.652255 1.297586 0.657507 -2.366514 2.443893 1.961225 -0.341122 0.852319 -1.591879 0.351144 0.136439 1.807879 -1.539984 -1.806071 -0.321040 -1.709430 -0.783809 -1.998603 0.482562 0.386676 0.860799 -0.008077 -1.929662 0.203844 -1.999127 -4.150604 1.214806 -0.536803 1.363121 -0.958463 0.113706 -5.737477 3.092839 2.455232 -0.620450 -2.398468 0.418500 -0.970917 -0.256524 0.214820 -0.227332 1.008289 0.123774 -0.200604 1.094308 0.910060 1.788009 0.714664 0.650180 3.586579 -1.432052 1.978068 0.973246 -0.195522 -0.477403 0.746959 0.572157 0.537147 1.725320 1.816736 -0.759475 -1.337649 0.074351 -0.116625 -2.888569 1.649698 -0.120864 -1.513840 -1.434101 -0.574067 -1.331206 -0.530343 -0.033590 1.070512 3.416855 -1.078709 2.501790 0.666155 1.300890 -0.242659 1.450832 -0.428897 2.940499 0.757789 -1.553807 -0.515635 -1.094719 -1.210088 0.343369 1.567244 -1.002147 -0.422367 0.880730 -1.464351 -2.324967 1.052082 0.466544 -0.066982 -3.625596 -0.861712 1.694244 0.883677 -0.622739 -2.629805 -1.520182 1.031670 -0.723583 -1.204228 -0.528219 -1.136344 -0.820005 -0.117902 -2.310980 -0.683347 0.711593 -1.319525 -2.052516 1.787940 -1.273688 0.251048 -0.406932 0.708417 -0.610662 1.049718 -0.287835 1.656547 0.900455 -0.300018 -3.089434 -0.218115 0.584830 1.284152 -0.454725 -0.207717 -0.661302 0.539572 -1.229297 1.148261 -0.876786 1.471396 3.328430 -0.185292 -1.414273 -0.863667 0.296146 -3.004555 0.990904 -1.673852 -0.387255 0.243541 1.889079 0.491711 1.274655 2.628864 -2.425630 1.733504 -0.395398 0.170304 1.433056 -0.544763 1.012914 -1.123154 -2.204009 1.154715 1.528024 0.184591 0.639556 -0.736856 -0.068961 -1.397185 -1.684432 1.185973 0.285363 0.233553 1.464609 0.920329 5.307450 -2.752831 0.773165 0.917627 -0.187721 0.553660 -0.431712 -2.392089 0.929287 0.483635 0.753127 3.067241 -0.210312 -1.658054 0.181074 0.042845 0.626537 -1.535190 1.324312 -1.724591 -0.005528 -0.934988 -1.127038 -0.912428 -0.988688 -0.747823 0.066120 2.475668 -0.786819 -3.281742 2.943732 -1.566259 0.825219 -3.960998 2.344037 -1.381913 1.145491 -1.538800 -0.100282 -0.475910 0.730763 -0.871320 0.940409 1.120118 -0.997794 1.369667 3.495099 0.560017 0.494850 0.041232 1.214761 -0.086933 0.534916 -1.059632 2.768813 -0.206397 -0.245780 -0.420356 -1.038941 1.041633 -0.609745 -0.325547 0.830083 2.077378 -0.506034 0.554815 1.943376 1.114859 -1.310597 2.282303 0.284496 1.077911 -0.696458 -0.285209 0.105818 0.340176 -0.490839 1.285276 -2.314698 -1.916638 -1.444308 -3.259289 -0.462334 0.956956 0.788393 0.037065 0.105718 -2.497588 -1.220310 2.440780 -0.646851 2.452270 0.979173 1.322014 1.409404 2.007053 -0.756558 -0.513733 -1.067365 -0.583289 -1.030129 -1.162763 -0.755440 1.732672 -1.163592 1.241268 1.324573 -0.295730 0.538513 -0.046114 1.100940 -1.161224 3.003745 1.205076 -0.304549 1.468162 0.534049 3.158609 -0.895828 -1.349311 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.360765 -0.859438 1.348374 1.224363 0.266893 0.588412 0.523943 -0.885112 1.335381 0.851458 0.083296 0.218363 -0.977165 0.405371 -0.163663 0.778672 -0.750616 -0.981015 -0.245896 -0.795064 -0.686782 -0.956881 0.225715 0.005678 0.387931 -0.410405 -0.731597 -0.288877 -1.214532 -0.666615 0.852128 -0.285629 0.576763 -0.422606 0.052486 -2.769469 0.960796 0.704411 -0.388415 -1.158325 0.124171 -0.753023 0.249407 -0.175670 0.088499 0.115675 0.017997 0.362860 0.734842 0.267917 0.672679 0.298444 -0.101664 2.525679 -0.990620 0.920888 0.435014 0.079591 -0.270498 0.567913 0.301469 0.253927 0.773617 0.781927 -0.345327 -0.611772 -0.082410 -0.445927 -1.190192 0.961312 0.166129 -0.338959 -0.825629 -0.246013 -0.668975 -0.517121 -1.368370 0.770601 1.670241 -1.046779 1.021068 0.360910 0.821430 0.184336 0.846203 -0.098647 1.377603 0.223618 -0.753704 -0.106750 -0.890402 -0.107378 -0.008611 0.031000 -0.363785 -1.241984 0.465613 -0.354038 -1.254838 0.662737 0.189302 0.220553 -1.342343 -0.270588 0.763181 0.436548 -0.751370 -1.367215 -0.979562 0.532428 -0.140655 -0.457615 0.312099 -0.821162 -0.253961 -0.738766 -1.162968 -0.373139 0.284828 -0.715880 -0.965620 1.184761 -0.775246 0.145667 -0.030124 0.234622 -0.380735 0.865949 -0.030105 0.727317 0.327947 -0.141733 -2.091322 0.075800 0.416074 1.132923 0.062189 0.218095 -0.435699 0.312337 -0.752686 0.406020 -0.019091 0.669383 0.994298 -0.345859 -0.769202 -0.485067 0.598018 -1.147006 0.451584 -0.874164 -0.079141 -0.005347 0.967208 0.963283 0.655679 1.252564 -1.001826 1.000200 -0.338897 0.078305 0.725693 0.083758 0.605221 -0.544545 -0.948673 0.238987 0.666846 0.127709 0.281228 -0.508262 -0.068274 -0.805669 -0.567630 -0.026559 0.426640 -0.317569 0.849786 0.577176 1.684173 -1.911912 0.528799 0.524269 -0.171126 0.316567 -0.289816 -1.246226 0.496955 0.311263 -0.230827 0.909953 -0.217592 -0.888384 0.235818 -0.214758 0.460199 -0.610843 0.108035 -0.784058 -0.533953 -0.775415 0.172777 -0.588948 -0.442692 -0.323138 -0.125071 1.265446 -0.569319 -1.023701 1.317057 -0.496026 0.274181 -1.589913 1.621061 -0.575487 0.390444 -0.826214 -0.112656 -0.365969 1.132885 -0.406874 0.403429 0.601135 -0.705488 0.544944 1.736078 0.321563 0.540873 0.163339 0.953453 0.022102 0.098160 -0.557419 1.307048 -0.249412 -0.369704 -0.000776 -0.594990 0.625354 -0.190696 0.216122 0.873026 1.043305 -0.015951 0.478694 0.954356 0.553453 -0.558754 0.666918 -0.037203 0.604360 -0.508023 0.127921 -0.048884 -0.008915 -0.473867 0.484047 -1.164472 -1.077837 -0.577681 -0.924723 0.010928 0.382172 -0.058058 -0.039853 0.028440 -1.401448 -0.580877 0.388863 -0.607162 0.387441 0.476870 0.549102 0.876163 1.337322 -0.583386 -0.215445 -0.041069 -0.330426 -0.438802 -0.513390 -0.520709 0.875937 -0.821214 0.655028 0.733389 -0.081754 0.277059 0.207696 0.919134 -0.591549 1.547889 0.668400 -0.168791 0.752983 1.017333 1.958661 -0.011488 -0.638925 -PE-benchmarks/ugly-numbers.cpp__main = -0.578792 -1.141047 0.839169 0.685809 0.068370 0.578189 0.415248 0.031590 0.637762 0.057758 -0.485564 0.505105 -0.684566 -0.237165 0.033969 -0.158150 -0.472047 -0.863312 0.350835 0.073917 -0.029640 -0.674577 -0.491798 0.738017 0.036173 0.393858 -0.175077 -0.051224 -1.309467 0.024658 0.478707 -0.193338 0.487000 0.446007 0.321885 -1.821609 0.259435 0.710119 -0.012746 -1.405642 -0.080693 -0.600978 0.120967 -0.267543 0.013786 0.293346 0.593514 0.547065 -0.163551 0.018216 -0.414067 -0.418232 -0.162859 1.270177 0.060808 0.770763 1.099443 -0.004191 0.106918 -0.021036 0.332259 -0.369366 0.602000 0.615263 -0.668899 0.002828 -0.049959 -0.435733 -0.796494 0.198352 0.375775 0.040678 -0.401620 -0.243230 -0.651621 -0.269503 -0.241777 0.494356 1.316163 -0.671944 1.416279 0.506915 1.171625 0.071604 0.739317 0.075057 0.670056 0.311185 -0.819500 0.079691 -1.394733 -0.420310 -0.210913 -0.027782 -0.310613 -0.175762 0.330997 -0.622328 -0.866507 0.520943 -0.295495 0.114178 -0.515858 0.179618 0.563966 0.673030 -0.478952 -0.829093 -0.687992 0.376663 -0.533572 -0.334911 0.132803 0.323825 -0.238078 -0.747101 -0.701864 -0.216569 0.820819 -0.691429 -0.047671 0.856119 -0.770038 0.711851 -0.141066 -0.221303 -0.017335 0.742821 0.638832 -0.242848 0.436722 -0.864061 -1.188685 0.111001 0.008742 1.299566 -0.407620 -0.120723 0.550964 0.293321 0.297198 -0.139080 -0.070203 0.375799 0.333089 -0.241256 -0.422923 -1.072251 0.007310 -0.648382 0.148424 -0.543359 0.166401 0.551088 0.685448 0.603221 0.061862 1.142780 -0.726946 0.726698 -0.181348 0.104234 -0.087760 0.474954 0.318256 -0.413473 -0.544447 0.372374 0.500695 0.217748 0.369065 -0.564788 0.028190 -0.474397 -0.750240 0.408796 0.377340 0.170835 0.837098 0.381103 0.470024 -1.120585 -0.042961 -0.212017 -0.041840 0.047836 -0.062863 -0.873125 0.588001 0.076727 0.016761 0.633303 -0.094926 -0.513751 0.221420 0.025048 0.049650 -0.502318 0.430466 -0.637305 -0.297142 -0.445539 0.243703 -0.583279 -0.490888 -0.626383 -0.104299 1.054319 -0.191244 -0.962002 0.171874 -0.100791 0.686951 -1.274476 0.391537 -0.478802 0.931389 -0.244909 -0.213273 -0.120101 0.096163 0.204515 -0.154312 0.499275 -0.546664 0.354879 0.591428 0.194289 0.149801 0.588287 0.361285 -0.001108 -0.347629 -0.371538 0.155859 -0.136841 -0.234300 0.176833 -0.412272 0.858401 0.361281 -0.066049 0.665861 0.869499 0.092284 0.493470 0.735628 -0.261055 -0.447870 -0.222898 0.008386 0.991156 -0.375642 -0.051957 -0.756471 0.281426 0.114744 0.136785 -0.902407 -1.064537 -0.440899 -1.049254 -0.354937 -0.065016 0.049970 0.347164 0.284113 -1.220964 -0.332379 -0.005149 -0.339737 1.024683 0.331266 0.468515 0.863702 0.483411 -0.373145 -0.617765 0.504169 0.165398 -0.710519 0.083250 -0.542318 0.217650 -0.671288 0.685811 0.634609 -0.067471 0.105338 -0.044138 1.006392 -0.483363 1.297589 0.750226 -1.019951 0.037280 0.384285 1.036133 -0.229433 -0.615694 -PE-benchmarks/ugly-numbers.cpp__isUgly(int) = -1.586976 -2.301371 1.580840 1.337551 0.524072 1.505514 0.614501 0.113256 0.825692 0.988011 -0.642219 1.369745 -0.745300 -0.911418 0.087467 -0.247476 -0.167711 -1.579207 0.657063 0.043583 -0.004120 -0.943132 -1.678615 1.853432 -0.058190 0.004516 -0.424695 0.079246 -2.887055 -1.203166 -0.201946 -0.166763 0.813573 -0.198557 0.863984 -2.541095 0.720991 1.926601 0.159431 -2.743450 -0.267316 -0.715508 0.095779 0.508535 -0.253121 0.647327 1.226332 -0.482323 -0.642453 0.119182 -0.264847 -0.537744 0.111860 2.307756 0.722739 1.734882 2.182238 -0.139416 0.626971 0.084539 0.631928 -0.935386 1.068443 0.701860 -0.926459 0.341080 -0.094010 -0.042171 -1.175712 0.023253 0.178318 -1.009150 -0.152307 -0.509511 -1.717161 -0.536356 0.432021 0.334434 2.119754 -0.850451 2.830820 1.130423 2.025015 0.341568 1.726428 -0.042818 1.347127 0.665799 -1.395416 0.161761 -1.650131 -0.409902 -0.475893 0.748031 -1.092045 0.876415 0.913054 -1.624092 -1.848241 1.535575 -0.725817 0.034416 -1.537088 -0.028891 1.074051 1.227472 -0.839158 -1.489203 -1.586391 1.210281 -1.011105 -0.913514 0.170085 0.146263 -0.312616 -0.310722 -1.045028 -0.214188 1.889430 -1.136615 -0.910486 1.681453 -1.104379 1.617578 -0.392954 -0.213553 0.050622 0.869862 1.233197 -0.242118 0.057546 -1.661065 -2.640736 -0.178229 -0.512391 0.942269 -0.853453 -0.290933 1.287982 0.732061 1.122558 0.714547 -0.791685 1.353900 0.702548 0.149658 -0.656841 -2.123128 0.013893 -0.978052 -0.017571 -0.922700 -0.341686 1.259819 1.169328 0.686516 -0.284483 1.732655 -0.797970 1.154926 -0.150605 0.162660 -0.374246 -0.628634 0.413144 -0.780201 -1.055802 0.794140 1.563934 0.612236 0.605148 -1.003951 -0.003809 -0.344897 -1.571675 0.848059 0.424296 0.695607 1.733097 0.721995 1.615698 -2.016583 -0.490067 -0.917041 -0.511359 0.197181 -0.649548 -1.578058 0.335744 0.320823 0.018705 1.666442 -0.258336 -0.758258 0.500781 0.047462 0.095147 -0.971531 1.612660 -1.218546 -0.405868 -0.126740 -0.692355 -1.213616 -0.644107 -1.526303 -0.662332 1.996411 -0.889495 -2.279666 0.350368 -0.313548 0.889310 -2.336880 0.431190 -0.803014 1.791655 -0.205952 -0.312471 -0.460940 0.656944 0.576944 0.083063 0.983815 -1.715227 0.973304 1.035967 0.102503 0.393595 0.966317 0.359538 -0.283259 -0.881531 -0.985692 0.500016 -0.268166 -0.636057 -0.151043 -0.714899 1.571496 0.823073 -0.219368 -0.317811 1.201106 -0.623117 -0.177427 1.762865 -0.943140 -0.801981 -0.167529 -0.139753 1.890696 -0.609306 -0.137037 -1.613797 0.420235 0.875855 0.112004 -1.761494 -1.005837 -1.396625 -2.114072 -0.728317 0.299437 0.120456 0.806582 0.350444 -2.299006 -1.014113 0.921958 -0.400581 1.387801 0.794293 1.128796 1.843505 0.592118 0.127568 -1.005257 -0.044655 -0.245864 -1.318933 -0.232959 -0.364034 0.189279 -1.194602 1.581472 0.661911 0.316655 0.441761 0.589045 0.355596 -1.054014 2.049158 1.328734 -1.748806 -0.237388 0.740891 1.734596 -1.899131 -1.248915 -PE-benchmarks/longest-bitonic-subsequence.cpp__main = -2.291679 -4.469853 4.357465 3.736903 0.803082 2.953190 1.718751 -1.813700 2.322071 2.981390 -1.575804 2.749113 -2.432026 -1.060803 -0.506673 0.622866 -1.356360 -2.852492 0.209065 -1.016233 -0.562471 -2.567196 -2.108924 3.259998 0.791155 -0.026574 -1.432035 0.512379 -5.259035 -4.747504 0.187088 -0.177372 1.841062 -1.054540 1.278250 -6.601502 2.887040 4.924917 -0.356815 -4.997986 0.140771 -1.262783 -1.343059 1.181096 -0.622195 1.491918 1.252532 0.448006 -0.587468 1.028132 1.248699 -0.276911 1.902876 5.765337 0.459166 4.442727 4.624738 0.074572 1.027728 0.824857 1.187688 -0.560729 2.229086 2.330156 -1.134694 -0.572914 0.022850 0.403390 -3.011328 1.034351 0.791002 -2.805572 -1.331177 -1.601884 -2.963279 -0.967737 -0.750200 0.513818 5.753392 -1.729575 5.969887 2.394340 3.501584 -0.150925 3.449946 -0.423945 3.808477 1.622244 -2.985351 0.539557 -3.007349 -1.388953 0.143878 2.721071 -3.047332 -0.276339 2.250503 -3.422357 -4.467037 2.858706 -0.366173 -1.056088 -2.545943 -0.271192 1.822557 1.185280 -1.689475 -3.910105 -3.253739 2.603557 -2.000472 -2.164220 -0.535620 0.302909 -0.097025 0.281683 -3.002921 -0.179945 3.481374 -2.345365 -1.845175 3.418637 -1.355590 2.613855 -0.954295 0.074683 -0.156044 1.025070 1.319840 1.151860 0.582918 -1.717757 -5.527988 0.168978 0.235687 0.854084 -1.666075 -0.474236 1.921707 1.792691 1.501852 3.145695 -1.477226 2.993784 2.094494 0.165425 -1.693828 -3.871201 -0.852984 -2.886403 1.087288 -1.996291 -1.849318 0.438996 2.979319 0.399908 0.079138 2.962326 -2.172479 2.815125 -0.095547 0.379538 0.130720 -1.713195 1.093115 -1.888773 -3.242970 2.234526 3.181214 1.291360 1.331389 -1.308305 -0.150741 -1.178126 -2.996121 1.602510 0.314652 0.306203 3.882063 2.231030 7.610052 -3.164649 0.413907 -0.795701 -0.757083 0.784584 -1.133560 -3.916930 1.252945 0.908656 1.168352 5.133234 -0.151242 -1.646436 1.068888 -0.033497 0.356349 -2.877989 3.903237 -2.822714 -0.384775 -0.998558 -0.671364 -1.872590 -1.590596 -2.713898 -0.379138 4.676303 -2.658829 -4.369211 2.233716 -0.535706 1.293742 -5.232093 3.836371 -1.844070 3.273518 -1.244311 -1.071310 -0.108396 1.301722 -0.343751 0.762905 1.959177 -3.027776 2.313287 3.182261 0.348835 0.893721 1.148022 1.236091 -1.200016 -0.876820 -2.768504 2.510968 0.101954 -1.443211 -1.035636 -1.742339 2.818535 0.303674 -0.513822 0.000587 2.959748 -1.344072 -0.626521 3.001542 -0.335929 -1.976097 1.462435 0.646601 2.531774 -1.905820 -0.618102 -1.878311 0.379846 0.868360 1.414586 -4.278522 -1.808159 -2.758269 -3.982007 -1.459963 1.123798 1.628440 1.289982 0.279420 -4.969333 -2.905604 3.926701 -1.237230 1.969240 2.500948 3.025229 3.245540 1.945446 0.842078 -0.843324 -1.290902 0.043693 -2.403692 -1.195730 -0.510532 1.458527 -2.156957 3.158980 1.594757 0.381086 1.802613 0.254602 1.785996 -2.479301 4.979641 2.588864 -2.863437 0.507725 2.146768 4.373664 -3.728248 -2.570641 -PE-benchmarks/longest-increasing-subsequence.cpp__main = -0.175164 -1.217502 1.576048 1.306896 -0.064150 0.538325 0.460520 -0.436713 0.816142 0.261275 -0.505545 0.701827 -0.921042 0.152114 -0.388892 0.492552 -1.007677 -1.007650 0.056712 -0.255511 -0.263102 -0.668472 0.005721 0.619225 0.535156 0.534353 -0.551412 -0.295565 -1.318460 -0.577483 0.547820 -0.301711 0.678211 0.290471 0.218349 -2.168019 0.753909 1.000109 -0.266713 -1.549872 0.275293 -0.612959 -0.055539 -0.450786 -0.198863 0.286666 0.432880 0.756123 0.183593 0.388049 -0.179686 0.012200 0.349947 1.888217 -0.157884 0.948069 1.148568 0.083995 0.026441 -0.009381 0.487557 -0.101341 0.598173 0.612839 -0.296872 -0.534351 -0.369484 -0.567148 -0.905724 0.546956 0.167842 -0.005616 -0.773182 -0.309045 -0.825191 -0.213870 -0.905704 0.907820 1.706947 -1.100066 1.324599 0.476735 0.878325 -0.010148 0.579840 0.130016 0.673673 0.525060 -0.564044 -0.027556 -1.074811 -0.403026 0.054539 -0.247625 -0.612110 -1.280949 0.717530 -1.048774 -1.236822 0.641301 0.132194 -0.161791 -0.324453 -0.030341 0.497993 0.774205 -0.721661 -0.978105 -0.500812 0.326382 -0.084636 -0.506004 0.129896 0.227662 -0.210223 -0.511460 -1.229071 -0.060822 0.624356 -0.784444 0.025333 0.948780 -0.407397 0.593591 -0.212083 0.017852 -0.189617 1.082377 0.489702 0.310610 0.316163 -0.159073 -0.876234 0.369714 0.460663 0.974646 -0.544168 0.047367 0.137123 0.435046 0.007126 0.032023 -0.198405 0.499102 0.595181 -0.413558 -0.841147 -1.044414 -0.232290 -1.075720 0.203263 -0.801420 -0.191808 0.631099 0.926109 0.615440 0.425799 1.352669 -0.926125 0.616671 -0.090584 0.089646 0.291189 0.293350 0.489738 -0.532614 -0.892436 0.603757 0.575560 0.333073 0.307012 -0.363252 0.144610 -0.758890 -0.561171 0.528914 0.567051 -0.193199 1.019811 0.597365 0.642322 -0.935889 0.010547 0.163415 -0.240350 0.079262 -0.057540 -1.354185 0.665428 0.101596 0.208356 0.927958 -0.075224 -0.570868 0.581972 -0.204344 0.123129 -0.635699 0.422785 -0.811210 -0.401957 -0.717943 0.453098 -0.475858 -0.450534 -0.636715 -0.278269 1.421286 -0.860898 -0.817364 0.613885 -0.094623 0.576436 -1.455864 0.998973 -0.624947 1.007481 -0.084541 -0.278766 0.026739 -0.030561 -0.309826 -0.176005 0.673212 -0.459440 0.341910 1.037384 0.331804 0.012268 0.438602 0.750797 -0.201272 0.223714 -0.504997 0.657977 -0.201925 -0.481837 0.099633 -0.446162 0.471580 -0.122427 0.106337 1.033245 0.689034 0.366440 0.706251 0.663310 0.440331 -0.725403 0.322600 -0.063182 1.018204 -0.612049 -0.097390 -0.441472 0.415827 -0.147093 0.538985 -1.290709 -1.455564 -1.169265 -1.104777 -0.292566 -0.266007 0.319140 -0.110941 0.018204 -1.287428 -0.833058 0.449501 -0.503650 0.747727 0.790185 0.528152 1.043528 0.829830 -0.474999 -0.324680 0.251115 0.325564 -0.360822 -0.092858 -0.675783 0.541289 -0.772780 0.491552 1.144516 -0.226652 0.349844 -0.124957 1.083413 -0.670500 1.660011 0.768503 -1.049739 0.448296 0.825056 1.234730 -0.096422 -0.817448 -PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -1.380799 -2.194301 2.049670 1.851171 0.822693 1.374593 1.017342 -0.684469 1.504133 1.891542 -0.524632 1.173894 -1.550139 -0.322017 0.128610 0.669745 -0.484680 -1.765365 0.360928 -0.462593 -0.345441 -1.442234 -0.594127 1.116739 0.473775 -0.703699 -0.808632 -0.307878 -2.750046 -1.946377 0.217190 -0.360640 1.121306 -0.803970 0.273377 -3.564986 1.342967 2.028679 -0.239482 -2.599130 0.139155 -0.941518 0.035765 0.474793 -0.078632 0.678867 0.909110 0.055196 0.159515 0.689608 0.785611 -0.215046 0.516347 3.018301 -0.208135 2.016440 1.762432 -0.013171 -0.018436 0.497696 0.614633 -0.420926 1.485149 1.145419 -0.868778 -0.362805 -0.069419 -0.007760 -1.921778 0.613068 0.362045 -0.881958 -0.741229 -0.433728 -1.086663 -0.716786 0.057070 0.434086 2.806309 -1.037749 2.790165 1.121021 1.716078 0.049353 1.601876 -0.173124 1.694142 0.626410 -1.570968 -0.142771 -1.681582 -0.603976 -0.231447 1.149879 -0.948983 -0.349591 0.931798 -0.823696 -2.244222 1.367585 -0.316019 -0.001679 -2.069574 -0.158070 1.250734 1.144462 -1.029614 -2.140397 -1.778235 1.023955 -0.938702 -1.119829 -0.024620 -0.638042 -0.452558 -0.471146 -1.559172 -0.606537 1.464193 -1.559889 -1.342003 1.806043 -1.121351 1.361522 -0.296402 0.208137 -0.122208 0.792294 0.797110 0.678503 0.697359 -1.138157 -3.185717 -0.152185 0.171854 1.061576 -0.526434 0.065701 0.428982 0.691916 0.269093 1.229626 -0.408385 1.507899 1.611587 -0.123260 -0.922731 -1.655284 0.401728 -1.413553 0.652306 -1.225050 -0.211071 0.187279 1.575447 0.293068 0.320939 2.264627 -1.297076 1.586084 -0.266623 0.098998 0.375879 -0.413615 0.784528 -0.987710 -1.560998 0.828396 1.938818 0.351979 0.598765 -0.811963 0.017753 -0.883426 -1.498866 0.325178 0.257130 -0.033571 1.745414 0.816353 3.432410 -2.167692 0.239174 -0.129967 -0.183224 0.489114 -0.576995 -2.196049 0.605598 0.379748 0.124000 2.160386 -0.133834 -1.484701 0.647600 -0.112042 0.228749 -1.304978 1.532357 -1.598743 -0.272059 -0.619113 -0.421994 -1.083361 -0.958512 -1.118976 0.086441 2.288708 -0.405466 -2.277902 0.972259 -0.430186 0.523699 -3.075225 2.087180 -1.066379 1.246464 -1.009073 -0.453275 -0.351936 1.326863 0.030482 0.174389 1.092210 -1.304113 1.389680 1.992119 0.278665 0.519282 0.696768 0.850329 -0.078584 -0.503773 -1.029497 1.318700 -0.208031 -0.514700 -0.290118 -0.949725 1.594810 0.327720 -0.394800 0.278331 1.706061 -0.923497 0.231494 1.657149 0.014894 -0.997097 0.837703 0.227888 1.821995 -0.804961 -0.043869 -1.034346 0.165182 0.119108 0.938035 -2.129028 -1.287664 -0.623209 -2.239458 -0.512123 0.989697 0.409936 0.496106 0.357262 -2.571403 -1.071503 1.164666 -0.677979 1.576940 1.003616 1.369360 1.681761 1.229805 -0.114845 -0.800023 -0.428313 -0.395477 -1.354890 -0.842905 -0.137550 0.646016 -1.202507 1.621348 0.707876 0.160054 0.435726 -0.016207 0.872621 -1.162780 2.540300 1.402536 -0.999702 0.657214 0.956252 2.765599 -1.732281 -1.240821 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = -0.623284 -1.409650 1.363692 1.225514 0.020750 0.773868 0.543267 -0.321410 0.645100 0.229316 -0.342347 0.751768 -0.955943 -0.297711 -0.099793 0.008180 -0.741980 -1.000498 0.062263 -0.167602 -0.111776 -0.746489 -0.701378 1.201080 0.192908 0.338983 -0.417300 -0.001219 -1.810248 -0.304410 0.384846 -0.096263 0.680381 0.421959 0.497020 -2.053772 0.617043 1.289880 -0.107109 -1.512286 -0.005196 -0.633402 -0.035049 -0.447749 -0.335442 0.347575 0.425595 0.232624 -0.137911 -0.022390 -0.240184 -0.171318 0.326964 1.603540 0.032104 1.179288 1.402537 0.075449 0.449148 -0.056452 0.386028 -0.202521 0.663075 0.564341 -0.607322 -0.235606 -0.195722 -0.401177 -0.815351 0.349673 0.516864 -0.180128 -0.716217 -0.364755 -1.204464 -0.406936 -0.592175 0.560036 1.591233 -0.993491 1.701712 0.779192 1.192317 0.146437 1.045166 0.137319 1.063247 0.426921 -0.792697 0.393841 -1.633826 -0.403987 -0.074815 0.195481 -0.823728 -0.644362 0.580201 -1.203374 -1.357129 0.797333 -0.149687 -0.160601 -0.556842 0.000000 0.443248 0.544703 -0.627995 -1.100720 -0.805968 0.770163 -0.463347 -0.496760 0.148001 0.395025 0.033524 -0.701046 -1.087302 0.036471 1.028717 -0.691889 -0.128622 1.161559 -0.569778 0.807828 -0.203408 -0.213416 -0.213167 0.772115 0.596152 -0.002703 0.077263 -0.878873 -1.361857 -0.084085 0.167371 1.102648 -0.484512 -0.230507 0.524551 0.513068 0.463829 0.376488 -0.002273 0.593382 0.025936 -0.282694 -0.476504 -1.348722 -0.396931 -0.864916 0.192056 -0.550398 -0.325797 0.617967 0.870979 0.559596 0.139847 0.993192 -0.542515 0.803664 -0.141060 0.057149 0.030952 0.074919 0.374258 -0.456879 -0.900609 0.631666 0.556066 0.615278 0.425527 -0.494915 0.023429 -0.406170 -0.839531 0.201139 0.245864 -0.020234 1.311566 0.732548 1.123366 -1.137912 0.136357 -0.182967 -0.134028 0.178432 -0.182017 -1.091361 0.559398 0.192459 -0.240939 1.146455 -0.187357 -0.568441 0.459381 -0.061625 0.181284 -0.817206 0.744000 -0.743763 -0.295351 -0.766195 0.236066 -0.699522 -0.622974 -0.981580 -0.365227 1.453797 -0.926170 -1.045788 0.412592 0.286909 0.641005 -1.413729 0.794202 -0.478252 1.264596 -0.185024 -0.427444 0.033962 0.221285 -0.098966 -0.193009 0.629106 -1.030365 0.347862 0.703449 0.254924 0.171324 0.541026 0.498876 -0.127242 -0.169297 -0.813611 0.592886 -0.121223 -0.491803 0.106844 -0.508752 0.904107 0.252755 0.000260 0.552483 0.974975 0.264845 0.231658 0.842992 -0.123506 -0.558956 -0.220777 0.141314 0.881271 -0.616783 -0.008906 -0.788042 0.237894 0.154434 0.324597 -1.261298 -1.031192 -0.725121 -1.014543 -0.390481 0.060258 0.218422 0.496925 0.096410 -1.575742 -0.857580 0.689926 -0.529121 0.631228 0.644189 0.635218 1.149972 0.786958 -0.194340 -0.506935 0.485599 0.292357 -0.577900 0.035245 -0.707884 0.652852 -0.793884 0.839320 0.879874 -0.140730 0.504605 -0.126900 1.065828 -0.738550 1.768205 0.810087 -1.312140 0.122791 0.941401 1.183850 -0.526758 -0.773765 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -3.276725 -5.366807 4.257776 4.033870 1.366362 3.309952 2.728079 -1.058677 1.920049 3.929273 -0.798171 3.415980 -2.991382 -2.073381 0.034044 0.568758 -0.592519 -3.131060 0.814355 -0.536015 -0.170112 -2.602574 -3.646109 4.511922 0.586233 -1.370459 -1.067429 -0.287216 -6.812441 -4.219490 -0.942721 -0.127815 2.079672 -1.671264 1.554837 -6.209637 2.462904 5.559665 -0.133423 -5.255023 -0.260221 -1.285801 -0.404368 0.823918 -1.040038 1.478769 2.034565 -0.861598 -0.986695 0.765432 1.136048 -0.658568 3.077230 5.715844 0.846646 5.164438 5.188608 0.228548 2.062126 0.511296 1.255040 -1.402310 2.489445 1.565087 -1.448683 -0.034018 -0.578028 0.719151 -2.626819 0.188788 1.683099 -2.378743 -2.049388 -1.003523 -3.802651 -1.796571 -2.072959 0.052756 5.345718 -2.396477 7.119000 3.639288 4.111301 0.426937 4.141266 -0.021660 3.795749 1.412258 -3.446134 1.449812 -4.190809 -1.138854 -0.362919 2.971913 -3.462960 -1.012551 2.235107 -2.952557 -5.263194 3.697879 -1.061032 -0.758484 -2.724334 -0.557161 1.538366 1.429836 -2.338452 -4.464089 -4.157851 3.163477 -2.298807 -2.379375 0.256107 -0.004638 0.667764 -0.382297 -3.000761 -0.293890 4.558815 -2.822287 -2.394864 3.893565 -0.810645 3.910623 -0.758929 -0.301807 -0.066987 0.669321 2.532634 0.902969 -0.211809 -3.192966 -7.120659 -0.624685 0.149048 0.665836 -1.199124 -0.352765 2.365063 2.191145 3.123384 4.214940 -0.420635 3.498809 0.504924 0.206494 -0.917301 -4.807705 -0.711008 -1.549224 1.442107 -1.443170 -1.946798 0.309974 2.839921 -0.522257 -0.441704 1.911634 -1.116822 3.040665 -0.370065 0.478713 -0.351509 -1.997660 1.121254 -1.591253 -3.191748 2.067719 4.171638 2.093939 1.239018 -1.623779 0.150431 -0.197626 -2.911552 -0.415874 -0.446217 -0.621217 4.801649 2.206272 8.831641 -3.519598 0.211332 -1.614682 -0.421661 1.193656 -1.443126 -3.968283 1.192223 0.842583 -0.661182 5.019824 -0.485917 -2.090031 2.028566 -0.304208 0.190851 -3.046113 4.459392 -2.976943 -1.031076 -1.141348 -0.647718 -2.597512 -2.093589 -3.755797 -0.384995 4.920905 -3.006103 -3.754867 0.828420 0.710560 0.490047 -4.994812 5.002863 -1.479202 2.953008 -1.429895 -1.875499 -0.049721 3.238466 0.426184 -0.590932 2.211681 -4.549914 2.580181 2.540551 0.193660 1.000993 1.883535 1.050421 -0.711299 -1.794150 -3.128313 2.403929 -0.163393 -1.563554 -0.925961 -1.808212 4.012283 1.390364 -0.833314 -0.709267 3.213261 -1.932592 -1.409970 3.370787 -1.419405 -1.691349 0.183352 0.921884 3.217022 -2.209219 0.168101 -3.269476 -0.372700 1.299519 1.747958 -4.511944 -0.775171 -1.144265 -2.955666 -1.678603 2.366176 1.354234 2.224552 0.448581 -6.141375 -3.404235 4.605415 -1.477520 -0.482233 2.553641 3.066480 3.934380 1.917207 1.735681 -1.639703 -0.706548 -0.296291 -2.411013 -1.202395 0.142865 1.390333 -2.790803 3.982389 0.915480 0.570139 1.682234 -0.054416 1.422221 -2.773499 5.396707 2.759414 -3.401164 0.030060 3.664381 4.737141 -5.643047 -2.471805 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = -1.404088 -3.292841 3.453057 2.877412 0.510881 1.881570 1.293790 -0.883411 1.725421 1.548309 -0.759178 2.103002 -2.134648 -0.678901 -0.393816 0.513157 -1.325482 -2.469397 0.197382 -0.621789 -0.275302 -1.585926 -1.214990 2.476305 0.844461 -0.297639 -1.276738 -0.326569 -4.115344 -2.133694 0.094556 -0.333729 1.643071 -1.188765 0.924900 -4.796406 1.904798 3.380179 -0.331408 -3.980450 0.374746 -1.245551 -0.081520 -0.116732 -1.009999 0.799094 1.250972 0.451819 -0.196639 0.758063 -0.160442 0.254939 1.059165 4.340796 0.408536 2.839837 3.185945 0.210058 0.339412 0.120019 1.026186 -0.625011 1.665400 0.809238 -0.981471 -0.771996 -0.451533 -0.129397 -2.154643 0.633800 0.767303 -1.079049 -1.072025 -0.744052 -2.991335 -0.935792 0.824875 1.028317 3.832749 -2.054047 3.661666 1.653482 2.245224 0.587512 2.233334 0.108825 2.009770 1.175839 -1.596704 0.362763 -3.069284 -0.847888 -0.129470 0.424364 -1.891496 -2.519345 1.672543 -3.050373 -3.386493 2.096834 -0.154171 -0.631933 -1.856442 -0.837945 1.497069 1.818353 -1.728257 -2.561927 -1.899936 1.648887 -0.918030 -1.529206 0.606297 0.097219 0.048261 -0.830790 -2.513900 -0.008198 2.472063 -1.736369 -0.784342 2.709142 -1.351571 2.158675 -0.599893 0.137502 -0.413204 1.351798 1.329509 0.594854 0.085209 -1.313617 -2.545260 -0.493498 0.034276 1.379479 -1.044069 -0.217619 0.801603 1.388925 1.024844 1.642029 -0.633616 1.613615 0.940007 -0.191574 -1.214720 -2.958203 -0.816463 -2.031061 0.447065 -1.277154 -1.210373 1.243439 2.183463 0.516998 0.289837 2.582461 -1.121884 1.430627 -0.159467 0.003915 0.329254 -0.945536 1.003611 -1.190648 -2.361926 1.519605 2.112607 1.479390 0.767870 -0.874855 0.242564 -0.962053 -1.886332 0.075914 0.756071 -0.068689 2.877255 1.666912 2.636755 -2.250713 -0.126626 -0.482191 -0.665358 0.703774 -0.875190 -3.057826 0.636323 0.631608 0.143958 3.279116 -0.324039 -1.684251 1.626750 -0.097484 0.252171 -1.839364 1.875651 -2.238854 -0.510007 -1.239873 -0.045714 -1.755124 -1.115312 -2.573608 -1.130489 3.513826 -1.837029 -2.933298 1.196722 0.348146 1.345275 -3.968482 2.061471 -1.243295 2.889113 -0.151577 -0.553012 0.160528 0.593985 -0.536732 -0.283267 1.615105 -2.083388 1.426295 1.974788 0.477148 0.294949 0.950218 1.204666 -0.617647 -0.168485 -2.039317 1.611802 -0.662619 -1.329175 -0.140243 -1.100701 1.942817 0.313550 -0.024959 0.211050 1.566366 -0.137762 0.432689 2.290853 0.039661 -1.531533 0.703705 0.260368 2.310546 -1.395107 0.011340 -1.724569 0.855898 0.479650 1.388846 -3.276917 -2.130497 -2.457279 -3.078608 -0.578974 0.496637 0.375867 0.520767 0.056460 -3.529406 -2.115358 1.874759 -0.971652 1.789985 2.112986 1.812382 2.785416 1.671492 -0.325086 -0.809180 0.324264 0.012640 -1.459735 -0.937402 -0.840502 1.090480 -1.664718 2.007363 1.924602 -0.050248 1.218531 -0.433100 1.198236 -1.826599 3.880514 1.943494 -2.554363 0.401687 1.938466 3.368473 -2.152208 -1.951913 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.976014 -0.931270 1.009113 0.830547 0.420009 0.609852 0.586880 -0.468395 1.012128 1.046002 0.023285 0.343935 -0.819909 0.046959 -0.068260 0.486487 -0.248227 -0.884097 0.067933 -0.569611 -0.449697 -0.778581 -0.136807 0.136316 0.190312 -0.711440 -0.506900 -0.319548 -1.278454 -0.936241 0.364526 -0.291029 0.535375 -0.862275 -0.093378 -2.602595 0.677018 0.785269 -0.303197 -1.105250 0.130073 -0.654223 0.327795 0.244860 -0.081597 0.103019 0.300870 -0.203044 0.408574 0.259887 0.763869 0.093221 0.024094 2.248451 -0.647009 0.903029 0.541337 -0.038627 -0.353252 0.484797 0.253284 -0.114744 0.816820 0.598762 -0.432725 -0.309582 0.014916 -0.143950 -1.130269 0.462851 0.021377 -0.469254 -0.360042 -0.152869 -0.605018 -0.644299 -0.430808 0.217937 1.430843 -0.676733 1.251897 0.382960 0.790953 0.248809 0.844484 -0.019942 1.052085 0.152167 -0.807070 -0.094696 -0.443260 0.133318 -0.124343 0.734485 -0.256613 -0.579930 0.518845 -0.090841 -1.115926 0.735581 -0.068458 0.254322 -1.476729 -0.323457 0.635681 0.566898 -0.801764 -1.277359 -1.155590 0.524322 -0.308357 -0.464540 0.226646 -0.872622 -0.249857 -0.545613 -0.799664 -0.384044 0.486823 -0.778138 -1.137658 1.076810 -0.658681 0.457824 0.009524 0.332539 -0.250563 0.575207 0.125495 0.516477 0.107518 -0.371744 -2.219969 -0.405816 0.152143 0.854548 -0.049187 0.016611 -0.162858 0.235993 -0.272107 0.515589 -0.072887 0.793085 1.161660 -0.092892 -0.436887 -0.561535 0.643866 -0.967439 0.306001 -0.721951 -0.022023 0.022222 0.812615 0.432996 0.360484 1.283061 -0.665812 1.002443 -0.297793 -0.180402 0.498202 -0.242647 0.567367 -0.507340 -0.808569 0.134029 0.942100 0.221191 0.248644 -0.475827 -0.078710 -0.562609 -0.607182 -0.059711 0.311516 -0.166775 0.726182 0.454701 2.130481 -1.711865 0.318041 0.130537 -0.154140 0.328154 -0.372903 -1.076560 0.204147 0.387140 -0.423407 0.894837 -0.109134 -0.927075 0.225248 -0.207955 0.296671 -0.629584 0.484628 -0.757449 -0.290929 -0.400226 -0.338466 -0.666511 -0.438273 -0.479822 -0.111546 1.083920 -0.439066 -1.071576 0.793754 -0.209547 0.177449 -1.653428 1.509596 -0.552013 0.545196 -0.940015 -0.129625 -0.379266 1.335769 -0.031499 0.391378 0.524000 -0.747621 0.731115 1.505539 0.253856 0.588241 0.199999 0.766029 0.067007 -0.225878 -0.463510 0.965194 -0.206537 -0.373096 -0.015011 -0.530702 0.736945 0.161786 0.105993 0.282609 1.005791 -0.553188 0.184758 1.081680 0.196094 -0.398062 0.528541 0.011022 0.933488 -0.350158 0.106928 -0.358091 0.155022 -0.121610 0.368011 -1.067641 -0.687640 -0.316807 -1.001293 -0.006075 0.789454 -0.108739 0.161755 0.245147 -1.418540 -0.387089 0.595236 -0.499506 0.728832 0.368544 0.665403 0.841897 0.940090 -0.226631 -0.451235 -0.204822 -0.409080 -0.586988 -0.473056 -0.141524 0.443467 -0.801914 0.790745 0.223139 0.081982 0.124715 0.471539 0.403886 -0.562580 1.344470 0.669677 -0.122062 0.677903 0.753580 1.770901 -0.631237 -0.515422 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -2.859310 -4.214551 3.663263 3.303272 0.684587 2.778338 1.555709 -1.144156 1.612387 2.938406 -0.591015 2.337343 -2.596151 -0.745420 -0.439772 0.453300 -0.923941 -2.710933 -0.054766 -1.294091 -0.981825 -1.997841 -2.368362 3.419137 0.545192 -1.487012 -1.492597 -0.148397 -5.156676 -2.845551 -0.366799 -0.106856 1.879793 -2.201858 1.073335 -6.835200 2.155586 4.423661 -0.234721 -4.227282 0.145030 -1.833178 -0.052174 1.151257 -1.933989 0.369151 1.192959 -0.727256 -0.139663 0.296782 1.328715 0.215372 1.366933 6.958993 0.322901 4.090236 3.620048 0.060868 0.400465 0.738446 0.930963 -0.811882 2.308652 1.131877 -1.134614 -0.571002 -0.227359 0.245324 -2.482489 0.735508 0.666953 -2.333384 -0.788154 -1.225960 -3.099592 -1.983281 0.535553 0.630302 4.692399 -2.405315 5.001379 2.192092 2.385529 0.825909 3.708877 -0.237084 3.554864 0.965076 -2.144226 0.870810 -1.862330 0.066232 -0.014024 2.448089 -2.622568 -2.051826 2.033142 -2.768627 -4.641157 3.096958 -0.781105 -0.681646 -2.821542 -1.077667 1.635052 1.318658 -2.497449 -3.863622 -3.353388 2.574698 -1.160517 -2.200577 0.114339 -0.650516 0.321580 -0.792068 -2.834407 -0.164429 3.009765 -2.271815 -2.319104 3.806042 -1.132770 2.914580 -0.384918 0.366359 -0.315864 1.547230 1.296778 0.663471 -0.950959 -1.593676 -4.754344 -0.839753 -0.222317 0.543161 -1.129587 -0.492208 1.389442 1.627393 1.350706 2.983893 -0.709633 3.348109 1.755978 0.397827 -1.155874 -3.411662 -0.448356 -2.761139 0.314675 -1.932990 -2.291143 0.770952 2.628356 0.779459 -0.054957 2.871709 -0.701790 2.487015 -0.127152 -0.398268 0.553101 -2.113334 1.353327 -1.714600 -3.141171 1.556179 3.034243 1.897871 0.735426 -1.091339 -0.482291 -0.820577 -2.483493 0.166912 0.656026 0.263513 3.794375 2.100160 7.193702 -3.665889 0.807612 -1.024717 -1.113887 1.178040 -1.448397 -3.680470 0.135043 1.181130 -1.226582 4.325796 -0.556419 -2.069139 1.458356 -0.417165 0.727794 -2.950746 3.188688 -2.677261 -0.398932 -1.452243 -1.090386 -2.013828 -1.411721 -3.045654 -1.157442 4.342458 -3.690761 -3.694149 1.897147 0.772230 1.072942 -4.831263 3.807712 -1.529027 3.514975 -1.578184 -1.427440 -0.002777 2.541572 0.078839 1.183996 1.945439 -3.063756 1.946060 3.024393 0.318618 1.410282 1.159126 1.717797 -0.540328 -0.964964 -2.771481 2.778713 -0.143764 -1.663950 -0.718612 -1.708270 2.362997 0.952003 0.162261 -0.438992 2.725794 -1.403500 -0.910994 3.611467 -0.564269 -1.394108 0.935481 -0.129975 2.723994 -1.700313 0.001139 -2.139670 0.714556 0.922732 1.171095 -4.226453 -1.673513 -2.958854 -3.081311 -0.755902 2.009962 0.395270 1.468648 0.243724 -4.816520 -2.609036 3.568750 -1.643623 2.264370 2.192237 2.820248 3.531549 2.268210 0.978663 -0.962277 -0.242573 -0.368856 -1.912170 -0.914886 -0.574699 1.293842 -2.228406 3.459366 1.264217 0.589371 1.821216 1.164217 0.613787 -2.517413 4.535896 2.174693 -2.580737 0.898166 2.995324 3.923704 -3.522066 -2.282600 -PE-benchmarks/detect-cycle-undirected-graph.cpp__main = -0.349361 -5.809818 8.904509 7.669249 -1.244248 3.275690 0.750351 -3.838979 4.688794 0.559887 -2.824289 3.376241 -5.051672 1.258908 -1.116962 3.010797 -7.225303 -5.228653 -0.257427 -1.920584 -2.205100 -4.151459 0.736777 3.847191 3.103004 6.006524 -3.688912 0.209327 -5.623178 -4.497272 4.097726 -1.828067 4.363492 5.605679 1.803542 -12.366016 5.582463 5.134970 -1.261701 -7.219917 1.002727 -2.963338 -1.211518 -3.251570 -1.635774 2.487678 1.697307 4.266281 2.158136 1.322184 -0.988701 -0.616731 1.727623 7.799394 -1.210481 5.188400 4.828905 -0.555894 0.226223 -0.548034 2.288359 0.335123 4.016258 4.569888 -2.425261 -3.707655 -0.637648 -3.147607 -5.738817 4.489514 1.816852 0.083379 -4.587448 -1.902810 -3.746045 -0.782809 -1.338904 5.095357 9.861693 -4.349574 6.991024 2.473306 4.310641 -1.421935 3.453639 -0.256249 5.989033 2.940679 -3.697364 0.010617 -5.822555 -3.533381 0.715319 0.866602 -3.294302 -4.332442 2.548052 -7.281855 -6.826605 2.475524 1.251655 -0.941746 -3.454735 -0.062340 4.217757 2.504569 -2.517637 -5.559262 -1.763220 1.148058 -2.006788 -2.861828 -1.073172 1.833926 -1.676397 -1.158313 -7.038900 -1.152501 2.410688 -4.095930 0.628645 4.730129 -1.855594 2.144576 -1.401881 0.556654 -1.149939 5.200467 1.477337 2.004736 2.347147 -0.546124 -1.729126 1.213140 2.428996 4.826465 -3.081670 -2.631930 0.001814 2.278110 -1.738920 -0.190279 -1.444691 3.298700 4.613162 -1.861345 -5.029026 -4.444416 -2.165933 -7.525591 1.342550 -4.893456 -1.616620 2.989634 5.213596 2.263604 3.188442 6.621020 -5.321184 4.277766 -0.703914 1.463418 2.941036 2.149514 2.827515 -3.226677 -4.433311 4.292036 1.881012 1.932006 1.713211 -2.641052 0.365070 -4.259208 -4.812624 4.419728 2.144972 0.509460 5.037809 2.737555 6.286461 -4.649700 1.399843 2.086126 -0.406284 0.475057 0.975916 -6.985198 4.071285 0.172587 1.722213 6.060639 -0.558726 -3.559626 1.996743 0.298432 1.078843 -4.587955 2.879154 -4.353259 0.126562 -4.439309 1.904443 -2.466910 -2.655868 -3.081103 -0.800136 7.913357 -5.233770 -6.030208 5.490471 -1.268236 5.125594 -8.548006 2.731599 -3.892645 5.386220 -1.583247 -2.023515 0.510926 -2.755344 -2.112970 0.199463 3.413284 -1.891962 1.537300 5.014348 1.827141 0.347082 1.897112 3.718017 -0.258158 2.257255 -2.430730 4.347256 0.132240 -1.482075 -0.312972 -2.538906 1.544749 -1.298363 0.117671 4.788932 5.041091 2.585496 3.723429 3.025419 2.609349 -4.278113 1.858236 -0.015830 3.852326 -3.109140 -1.423070 -0.925308 2.633838 -1.433150 3.701630 -7.226363 -9.088534 -5.996194 -6.921788 -3.088236 -0.546182 3.197327 0.236257 0.044935 -5.683097 -3.981802 4.007796 -2.167458 7.333332 3.827467 3.087069 5.004020 4.941206 -3.020235 -2.511714 0.769603 2.130451 -1.861321 0.267006 -5.624065 4.511518 -3.221994 3.343699 7.112644 -2.378165 1.634373 -2.759493 8.264674 -3.899607 9.062410 3.812586 -5.816909 2.961413 2.419794 5.820166 1.054269 -4.597426 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -2.010558 -5.471641 6.046217 5.826811 1.390311 3.817496 1.231480 -3.058741 3.997718 4.561925 -2.251358 3.314767 -3.728813 -0.211048 0.002164 2.418467 -2.601201 -3.998041 0.435137 -1.265702 -1.264170 -3.925065 -0.913207 2.946102 1.575060 2.294327 -2.346227 0.556039 -5.978259 -7.265579 1.342267 -0.788039 3.052184 1.584933 1.105229 -8.511453 4.570572 5.883723 -0.671696 -6.792824 0.231954 -1.787869 -1.706177 1.168167 0.619323 2.830058 1.482035 1.548515 0.380923 1.965229 1.841801 -0.619363 2.674964 5.766103 -0.100784 5.661432 4.911034 -0.063878 0.694327 0.877335 1.719515 0.067683 3.852318 4.046489 -1.965382 -1.736478 0.006478 0.068701 -5.001900 2.559046 1.202601 -2.423239 -2.473725 -1.884013 -1.585978 -0.709754 -1.054550 1.415971 7.986719 -1.649363 7.261086 3.153269 4.110467 -1.290850 4.011881 -1.063405 5.314615 2.385448 -4.022795 -0.365514 -4.043678 -3.052907 0.302501 3.574064 -3.503349 0.260375 2.204661 -3.714570 -5.734756 2.912929 -0.114365 -0.696298 -4.546701 0.263653 3.556752 1.712544 -1.453872 -5.199512 -3.391144 2.193198 -2.996255 -3.260530 -1.762896 -0.149566 -1.437863 1.240518 -4.480498 -1.467049 3.414284 -3.709951 -2.252698 3.960329 -1.091908 2.567520 -1.460016 0.387795 -0.169764 1.629283 1.445650 2.290557 2.628053 -1.345501 -5.689185 1.449458 1.215309 1.006487 -2.435052 -1.241761 1.170356 1.870490 0.223277 3.074089 -2.428315 3.766793 5.350114 -0.253815 -2.924544 -4.271373 -0.234468 -4.566088 1.825672 -3.442879 -1.184486 -0.697710 4.396253 -0.006796 1.509762 4.662653 -4.604358 3.792744 -0.379968 1.629208 1.236692 0.226994 1.694833 -2.705274 -4.159895 3.217387 4.484539 0.397615 1.713368 -2.039954 -0.151272 -2.212189 -4.249243 3.529651 0.052160 0.348171 4.718755 2.119975 10.900486 -4.084157 1.078992 0.316119 -0.414434 1.015456 -0.571326 -5.821713 2.516691 0.519046 2.806694 6.677200 -0.244150 -2.853890 1.052950 0.520532 0.373279 -3.868334 4.931889 -4.303827 -0.046999 -1.799053 -0.156947 -2.133419 -2.498786 -2.335688 1.042421 6.263845 -1.655366 -5.953270 3.722689 -2.340977 1.513880 -7.564704 3.436257 -3.155543 2.538355 -2.407770 -1.580265 -0.407339 0.528899 -0.803406 0.433646 2.929122 -2.969880 3.376061 4.501939 0.700030 0.625108 1.453832 1.655234 -0.689071 -0.502794 -2.919362 3.892725 0.457621 -0.505659 -1.636280 -2.551297 3.188188 -0.452626 -1.751656 1.081517 4.570581 -1.677811 0.287732 3.040404 0.707670 -3.232973 3.007844 1.062650 3.294814 -2.272614 -0.998193 -1.696917 0.139589 -0.131927 3.188592 -5.635961 -3.706761 -1.867200 -6.025345 -2.550106 1.984656 2.912186 1.402915 0.555162 -5.803100 -3.428585 4.773721 -1.430779 4.493025 2.758349 3.676369 3.759417 3.056141 -0.092159 -1.584366 -2.344017 -0.430624 -3.262321 -1.972943 -0.962228 2.821828 -1.525945 3.934056 2.749724 -0.368263 1.508162 -1.594360 4.340299 -2.901806 6.819149 3.441055 -2.879811 1.525277 1.144844 6.940503 -3.796491 -3.514050 -PE-benchmarks/count-1s-sorted-binary-array.cpp__main = -1.054856 -2.972915 3.236743 2.770825 0.313295 1.868632 0.725182 -0.867357 1.415645 1.388677 -0.889200 1.993321 -1.801375 -0.601694 -0.311378 0.467127 -1.321719 -2.062717 0.189772 -0.527500 -0.238203 -1.357092 -1.100504 2.475277 0.773806 0.409021 -1.109291 -0.138347 -3.644460 -1.809069 0.072187 -0.241528 1.481181 -0.253895 0.968865 -3.452588 1.699344 2.989147 -0.229980 -3.545736 0.310886 -1.046959 -0.252530 0.009458 -0.793567 0.789637 0.939281 0.311585 -0.184050 0.622614 -0.172946 0.118739 1.358295 3.476272 0.561855 2.567390 2.792982 0.081299 0.640556 0.065933 0.921103 -0.418124 1.435013 0.852596 -0.808860 -0.832995 -0.490042 -0.125283 -1.715682 0.682264 0.546802 -1.042244 -0.949920 -0.787412 -2.161013 -0.660947 0.176698 1.203804 3.286119 -1.758005 3.230936 1.466855 1.963297 0.207865 2.062877 0.054094 1.908481 1.127578 -1.350001 0.177088 -2.554327 -0.673053 0.067477 0.244747 -1.910234 -1.404397 1.507842 -2.785177 -3.097137 1.871458 -0.012096 -0.658652 -1.160786 -0.389013 1.227490 1.411170 -1.237418 -2.143288 -1.301194 1.661286 -0.893719 -1.452537 -0.102458 0.238254 0.061602 -0.288817 -2.127449 0.143237 2.074571 -1.458749 -0.518906 2.394085 -0.755718 1.727803 -0.611310 0.101509 -0.237926 1.147253 1.201022 0.583021 0.197939 -1.126123 -1.805428 0.497051 0.183002 0.547000 -1.286138 -0.085268 0.855180 1.179378 1.006776 1.435013 -0.772469 1.514780 0.630207 -0.298132 -1.180541 -2.646881 -0.989198 -1.934157 0.211962 -1.247274 -1.252311 1.170449 1.938379 0.728541 0.290873 1.993805 -1.203550 1.255200 0.066798 0.247177 0.265935 -0.454928 0.748038 -1.237060 -2.103807 1.372561 1.807157 0.950512 0.651122 -0.707217 0.103627 -0.835343 -1.447353 0.727955 0.638690 0.171715 2.791951 1.558687 2.633950 -1.755199 -0.175094 -0.412469 -0.667807 0.403448 -0.787891 -2.772773 0.664032 0.527178 0.520787 3.066317 -0.328901 -1.161662 1.198869 -0.024735 0.296091 -1.679628 1.984271 -1.980269 -0.495696 -0.977516 -0.105396 -1.439926 -1.064155 -2.218435 -0.871420 3.243239 -2.053031 -2.368005 1.199771 0.110092 0.948749 -3.206024 1.587912 -1.248050 2.447552 0.046189 -0.753907 -0.108414 0.105100 -0.569971 -0.200815 1.458577 -1.856949 1.257707 1.690250 0.436105 0.207428 0.901568 0.949080 -0.648647 -0.048388 -1.795199 1.493796 -0.355457 -0.998028 -0.251928 -1.045435 1.509710 0.158265 -0.300532 0.351137 1.466892 -0.010717 0.146297 1.682364 0.059568 -1.446113 0.712416 0.099810 1.891705 -1.355242 -0.250829 -1.404911 0.513380 0.539903 1.103120 -3.078647 -1.908656 -2.225774 -2.382455 -0.694268 0.005790 0.583720 0.573442 0.000575 -3.071468 -2.132744 1.591356 -0.828653 1.583674 1.752848 1.621929 2.486742 1.474952 -0.042813 -0.636268 -0.037522 0.078744 -1.261506 -0.650105 -0.863292 1.137769 -1.149057 1.740862 1.892628 0.015382 1.227792 -0.374629 0.647725 -1.704565 3.344006 1.803604 -2.405922 0.290125 1.385492 2.468688 -1.910439 -1.918679 -PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -6.670902 -10.517612 8.618196 7.786439 3.325700 7.891976 2.233221 -2.042314 3.894825 8.775879 -2.712833 7.225823 -5.303296 -3.931270 0.541485 0.536541 -0.439848 -6.392464 1.854517 -1.195308 -0.384441 -4.786348 -6.313630 9.346054 1.016286 -2.248856 -2.842568 0.323562 -13.339588 -8.679035 -3.000045 -0.073272 4.428148 -4.307189 3.181959 -9.076558 5.023436 10.942933 0.231420 -11.700718 -0.031026 -2.911095 -0.905389 4.459865 -2.279512 2.856773 3.748348 -2.688372 -1.916803 2.039834 2.224713 -0.525663 5.487402 10.685062 3.519664 9.780116 9.167199 -0.103380 2.586159 1.467853 2.525588 -2.502891 5.603457 2.791457 -3.262064 -0.681839 -0.309367 2.809489 -5.528320 0.726671 1.409321 -6.393362 -0.798815 -2.629980 -5.435933 -2.892944 4.212650 0.889367 9.919307 -3.342164 12.237824 5.747250 6.973110 0.595791 8.672839 -0.995215 7.420330 3.137714 -5.905383 0.104180 -6.540656 -1.141771 -0.428490 5.067595 -6.670924 1.534059 4.552668 -6.898528 -10.682600 7.276684 -1.864104 -1.775946 -6.130689 -1.152506 4.668520 3.911723 -3.399467 -7.822413 -6.341469 7.287720 -5.193569 -5.768617 -1.863674 -1.427585 0.507276 1.474280 -4.827083 -0.521573 8.392072 -5.397885 -5.019313 8.278251 -1.951537 7.217341 -1.954512 0.642738 0.634194 0.602024 4.417076 1.881757 0.286316 -5.638028 -9.392667 1.346699 -1.246891 -2.480830 -4.113039 0.177043 4.643589 3.814263 5.370199 8.187274 -3.802950 7.031560 2.984958 0.939466 -2.369561 -8.885513 -1.690703 -4.770364 0.676974 -3.671920 -4.853092 1.606099 6.096236 0.338705 -1.008168 5.425944 -2.944338 5.255573 0.631989 0.907073 -0.317314 -4.129482 1.809662 -4.597012 -7.103910 3.927543 8.986108 2.074896 2.060215 -2.632955 -0.525594 -0.945524 -5.518259 2.078756 0.407150 1.906557 9.763663 4.594877 15.816890 -6.445498 -0.592102 -3.508029 -2.032532 1.933632 -4.378104 -8.896646 0.388211 2.354136 1.865923 11.936675 -1.037019 -4.247201 2.943820 0.531659 0.860349 -6.139284 9.775802 -7.117199 -0.772945 -0.671764 -3.965108 -5.126277 -3.726592 -7.745211 -1.562528 10.243587 -5.679435 -9.325099 3.102748 -0.143437 1.185574 -11.249395 5.760887 -4.108570 6.911831 -1.392296 -2.978487 -1.740944 3.528447 0.246710 0.813714 4.707328 -7.559161 6.377747 5.542544 0.279571 2.070456 3.288719 1.446284 -1.852448 -3.220952 -6.333825 4.894358 -0.235047 -2.441698 -2.466753 -4.029765 6.838336 2.345795 -2.925053 -3.261140 5.940722 -4.816138 -3.145209 6.609734 -2.598849 -4.002628 3.020324 0.709016 6.578240 -4.174257 -0.948777 -5.981310 -0.097885 3.618700 3.115417 -10.156216 -2.317179 -4.601262 -7.753444 -2.604787 3.115947 1.968889 3.943238 0.872337 -10.936582 -6.633475 7.024203 -2.171956 5.711684 4.829082 6.962975 8.080796 3.651555 3.129685 -2.475135 -3.225156 -2.307050 -6.329767 -3.511947 0.617868 2.238395 -2.816987 8.131665 2.420623 2.213728 3.964226 0.232208 -2.692203 -5.753935 9.437459 6.480350 -6.276975 -0.127180 2.887210 8.363679 -11.664439 -6.210975 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = -0.816553 -3.015208 3.828744 3.293514 0.186710 1.637498 1.100278 -1.457599 1.756286 1.732626 -0.950111 1.989155 -2.090317 0.195983 -0.912559 1.408609 -1.986441 -2.269065 -0.141970 -0.964349 -0.786373 -1.594890 -0.363135 1.775678 1.255401 0.296410 -1.593040 -0.472386 -3.326269 -2.843616 0.532100 -0.490271 1.651553 -0.657302 0.484462 -5.415222 2.240776 3.018167 -0.663352 -3.572731 0.689032 -1.221730 -0.561001 -0.230299 -0.984893 0.696526 0.803178 0.819490 0.361943 1.043802 0.533469 0.475818 1.527194 5.089141 -0.248069 2.828352 2.919926 0.190339 0.192866 0.331952 1.082611 -0.098891 1.565058 1.389949 -0.401807 -1.281022 -0.657706 -0.509293 -2.135345 1.292473 0.336055 -0.956419 -1.522192 -0.800828 -2.191571 -0.706973 -1.065823 1.525505 4.143423 -2.259493 3.429615 1.340969 1.831607 0.061716 1.803150 0.046541 2.171900 1.268027 -1.406552 0.028280 -1.760382 -0.742123 0.317648 0.635784 -1.925989 -2.778732 1.868580 -2.656815 -3.355823 1.930021 0.327725 -0.713529 -1.391230 -0.655488 1.268087 1.396065 -1.691828 -2.683272 -1.765575 1.303095 -0.432909 -1.566943 0.061387 -0.030898 -0.115896 -0.277246 -2.889580 -0.045000 1.777183 -1.808104 -0.828697 2.433130 -0.610330 1.540511 -0.572413 0.372116 -0.463354 1.790016 0.853813 1.292676 0.279172 -0.142715 -2.691448 0.451958 0.937602 0.897236 -1.206832 -0.074653 0.308810 1.275021 0.276943 1.437543 -0.731997 1.897901 1.718859 -0.406635 -1.854629 -2.553225 -0.572271 -2.575851 0.561133 -1.843504 -1.306460 1.002675 2.284543 0.713288 0.840910 2.669673 -1.723785 1.720181 -0.093606 0.157752 0.813500 -0.728430 1.103434 -1.353787 -2.521771 1.593602 1.961123 1.072063 0.647881 -0.721705 0.191730 -1.387414 -1.625647 0.998723 0.946522 -0.413450 2.658328 1.621424 4.006530 -2.248680 0.334894 0.185044 -0.756813 0.501720 -0.612584 -3.342351 0.995997 0.565952 0.437542 3.149126 -0.176751 -1.568168 1.390954 -0.422764 0.369167 -1.830174 1.835642 -2.076981 -0.601200 -1.402379 0.201073 -1.173433 -0.996446 -1.757495 -0.677105 3.600371 -2.769353 -2.448742 1.913973 -0.163323 0.917879 -3.885005 3.096389 -1.426769 2.344297 -0.576107 -0.843052 0.067985 0.669664 -0.928952 0.234189 1.636883 -1.702292 1.215325 2.766827 0.606853 0.423230 0.736584 1.673118 -0.611517 0.343124 -1.706096 2.131921 -0.309418 -1.300159 -0.409081 -1.157993 1.245215 -0.318368 0.225012 1.184707 1.694316 0.032001 0.644047 2.047660 0.946235 -1.690622 1.329770 -0.023595 2.110545 -1.558993 -0.249699 -1.010827 0.694469 -0.107379 1.532017 -3.343402 -2.465848 -3.022087 -2.657945 -0.697682 0.298079 0.992296 -0.035735 -0.114626 -3.409305 -2.304297 2.318309 -1.220360 1.298513 2.221130 1.757766 2.537391 2.011957 -0.251166 -0.486194 -0.427464 0.322253 -0.962061 -0.740690 -1.018227 1.424702 -1.680885 1.681612 2.146589 -0.184451 1.248447 0.035153 1.632333 -1.762085 3.934049 1.819313 -2.123641 1.041875 2.139142 3.037860 -1.467728 -1.979757 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -5.326327 -8.880746 8.692253 7.767615 1.496260 6.164236 2.773097 -3.519673 3.434650 6.238808 -2.239738 5.584222 -5.398103 -2.027762 -0.784489 1.118013 -2.627506 -5.682684 -0.311235 -2.711066 -1.428488 -4.370880 -4.747751 7.459673 1.680225 -1.801664 -3.516489 0.499454 -10.941942 -8.508619 -1.165615 0.114216 4.271301 -3.622255 2.324903 -13.596667 5.505636 10.263985 -0.823615 -9.473534 0.844539 -3.488248 -1.981891 2.146026 -3.555442 2.226046 2.234358 -1.336379 -0.789579 1.366009 2.586281 0.662485 3.909598 12.647034 1.199082 9.143771 8.801333 0.126906 1.296920 1.646222 2.001032 -1.145165 4.887455 2.877869 -2.541516 -1.799561 0.008838 1.182659 -5.280355 1.962836 1.671283 -5.705727 -1.775475 -3.013647 -6.910217 -3.075030 2.885600 1.210813 10.149918 -4.276073 10.919613 4.579201 5.287805 0.825066 7.582435 -0.771138 7.871512 2.712482 -4.668625 1.275718 -5.083908 -1.800144 0.439188 5.768867 -6.352673 -2.686250 4.637006 -7.728993 -9.855329 6.026787 -0.726497 -2.617018 -6.125520 -2.068441 3.488607 2.561740 -3.796696 -7.846854 -6.499759 6.181558 -3.535573 -4.794560 -0.868688 -0.471414 0.720629 0.079013 -6.404502 0.439415 6.997338 -4.308416 -4.461361 7.727989 -2.222077 5.434814 -1.470597 0.888461 -0.833723 2.406292 1.978513 2.266053 -0.597752 -2.975052 -9.526271 -1.235123 0.097459 0.177075 -3.268258 -1.440298 3.130181 3.726694 2.833637 7.131628 -2.574158 6.938888 4.003696 0.766768 -2.864863 -7.833911 -1.983313 -6.005844 0.999750 -3.731710 -5.016415 1.638771 5.896661 0.853992 0.122687 6.004548 -2.266426 5.163674 0.012806 -0.305662 1.077901 -4.919011 2.494847 -3.977815 -7.097177 4.393806 6.343244 3.868987 1.998568 -1.754508 -0.450851 -1.917717 -6.157458 1.788960 0.854896 0.840099 8.584381 5.313226 15.659662 -6.793221 1.595092 -1.960800 -2.414468 2.227020 -2.936718 -7.978142 0.551412 2.721100 0.061317 11.096798 -0.680647 -4.246048 2.612490 -0.160652 1.132083 -6.227954 7.634077 -5.956986 0.053099 -2.594169 -2.572870 -4.137362 -3.308022 -6.404638 -2.274709 9.723032 -7.197177 -9.041331 4.711379 0.780614 2.461684 -11.488158 7.115278 -3.497353 7.462121 -2.725550 -2.669117 -0.057996 3.512492 -1.281621 2.367704 4.040990 -6.984358 4.483267 6.396319 0.792279 2.426780 1.920796 3.045795 -1.862403 -1.411470 -6.432899 5.628515 -0.092799 -3.231412 -2.119803 -3.508555 4.993164 1.205625 -0.260982 -1.098295 5.763981 -2.533383 -2.033267 7.379062 -0.525596 -3.502891 2.893286 0.647160 5.014894 -3.954971 -0.967552 -4.048841 1.194972 2.189681 2.948363 -9.399660 -3.503691 -6.585609 -7.834600 -1.726212 3.487147 2.295632 2.990608 0.079624 -10.364830 -6.114015 8.163878 -3.029931 5.215371 5.227821 6.410707 7.119349 4.583412 1.943169 -1.525333 -1.942121 -0.243110 -4.465074 -2.650396 -1.318409 3.606122 -3.735513 7.058386 3.347210 0.900921 4.525999 1.072711 1.965026 -5.369848 9.818918 4.954195 -6.063977 1.389066 5.371837 7.564449 -7.999940 -5.147787 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = -0.517041 -1.387523 1.673047 1.390897 -0.079488 0.726146 0.601687 -0.560804 0.974438 -0.168850 -0.497618 0.819671 -1.152769 0.097345 -0.424735 0.105253 -1.179356 -1.255189 -0.068850 -0.350624 -0.207125 -0.989354 -0.171973 0.977939 0.421795 0.619780 -0.683151 -0.193858 -2.075998 -0.122231 1.055162 -0.196162 0.884232 0.327279 0.242539 -3.232773 0.767117 1.314103 -0.248667 -1.940198 0.340435 -0.978692 -0.106629 -0.629670 -0.406348 0.266702 0.276907 0.737060 0.175618 0.047912 -0.356922 0.094822 -0.142327 2.311981 -0.447186 1.246447 1.400027 0.087795 -0.037170 -0.012481 0.410892 0.031855 0.839994 0.840506 -0.751088 -0.592274 -0.143896 -0.734436 -1.361443 0.707677 0.418533 -0.064984 -0.808353 -0.288333 -1.239807 -0.274945 0.239062 0.996029 1.980004 -1.095688 1.791913 0.348686 1.085623 -0.047461 0.871334 0.129880 1.012020 0.479166 -0.666289 -0.160520 -2.043598 -0.331825 -0.065172 -0.021851 -0.693156 -1.048518 0.701763 -1.282961 -1.433876 0.503740 0.060921 -0.279141 -0.841476 0.102060 0.650627 0.861302 -0.653461 -1.282442 -0.864263 0.831469 -0.344572 -0.548703 0.094509 0.302261 -0.295449 -1.218073 -1.340403 0.032797 0.910324 -0.736494 -0.199638 1.262852 -1.076298 0.564637 -0.184008 -0.001707 -0.360637 1.166755 0.343732 -0.019504 0.552875 -0.750281 -1.178166 -0.046175 0.288560 2.064770 -0.748578 -0.247201 0.185840 0.439783 -0.064999 -0.182162 -0.111674 0.428442 0.537074 -0.569978 -0.785638 -1.206569 -0.116415 -1.437923 0.061836 -0.850904 -0.164414 0.858241 1.091882 0.971471 0.498283 1.811725 -1.044236 0.985348 -0.001262 -0.093239 0.391698 0.382091 0.540405 -0.635654 -1.148118 0.688802 0.274212 0.539067 0.288594 -0.287626 -0.061937 -0.928582 -1.030402 0.501119 0.659059 0.217959 1.280412 0.857808 0.880607 -1.666424 0.222240 0.174876 -0.358347 0.123185 -0.099526 -1.408628 0.714664 0.266917 -0.062896 1.434645 -0.164243 -0.833908 0.441952 0.003490 0.296954 -0.915091 0.604611 -0.929851 -0.392229 -1.045006 0.081119 -0.573263 -0.675136 -1.047951 -0.551352 1.692715 -0.876864 -1.637172 0.822676 -0.097615 0.965075 -2.212931 0.813679 -0.728609 1.403103 -0.211355 -0.182466 -0.032853 -0.095276 -0.502460 0.079902 0.693357 -0.904744 0.505449 1.380057 0.445061 0.135739 0.388076 0.807023 -0.094232 0.215799 -0.817131 0.783117 -0.213842 -0.657550 0.307902 -0.580086 0.688517 -0.029885 0.180747 1.266246 1.190975 0.677268 0.870170 1.136581 0.412080 -0.722897 0.121304 -0.055119 0.983071 -0.507122 -0.171993 -0.507922 0.561180 -0.018484 0.472530 -1.489266 -1.990395 -1.167407 -1.981353 -0.004482 -0.495580 0.223299 0.174306 0.090624 -2.006933 -0.823769 0.221002 -0.601221 1.992681 0.802748 0.619636 1.172559 1.077653 -0.926143 -0.315813 0.722135 0.551074 -0.612281 -0.091506 -1.130462 0.820381 -0.874190 0.751107 1.427789 -0.304698 0.556371 -0.254338 1.442552 -0.785449 2.210722 0.901104 -1.368142 0.504100 0.515731 1.405175 0.122668 -0.921333 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -1.381702 -3.292657 2.913606 2.956725 1.591124 1.713876 2.605073 -0.911076 2.148620 3.180064 -1.111982 2.651938 -2.378405 -0.084317 -0.062193 1.649551 -0.482916 -2.537067 0.731167 0.015952 0.177622 -2.694392 -0.160626 1.402574 1.280327 -0.627266 -1.114208 -1.277322 -4.848256 -3.515328 0.753595 -0.512042 1.797815 -1.796153 -0.216425 -5.494242 1.913524 3.489762 -0.297328 -4.756244 0.814621 -0.864078 -0.583956 1.078542 0.398148 1.448071 1.262358 1.046557 0.201432 1.830561 1.495066 -0.334017 1.569890 4.137428 -0.807982 3.640459 3.197949 0.267159 0.274305 0.343377 0.955088 -0.268307 2.001189 2.333021 -0.796174 -0.583594 -0.687077 0.223785 -3.663602 0.816067 0.502961 -0.935106 -2.187856 -0.045218 -0.558715 -0.041885 -0.025675 0.550864 4.598758 -0.724210 5.264659 1.477414 2.217278 -1.268832 1.250820 -0.281243 0.941294 1.109119 -2.081064 -1.036489 -3.178683 -1.208865 -0.295771 1.765863 -1.482518 -0.075379 1.388056 0.441242 -3.042909 1.335966 -0.321171 -0.544996 -2.311707 0.838661 1.420329 2.024690 -0.985274 -3.415381 -2.994604 1.488501 -0.942350 -1.842538 -0.649971 -0.644874 -1.183994 -0.742877 -2.009876 -1.010502 2.494793 -2.528266 -1.989072 1.672975 -1.729241 2.117786 -0.497197 0.216775 0.167359 0.731058 1.688348 1.224883 2.598123 -1.929227 -5.051744 0.692427 0.839726 2.545987 -1.175202 0.672315 0.438493 0.896939 0.928195 1.743255 -0.170005 1.687164 2.690523 -0.612157 -1.515008 -2.248046 1.030941 -1.532963 1.545377 -1.726030 0.582445 -0.445322 2.160326 -0.801241 0.732702 3.558588 -2.943842 2.169165 0.236290 0.429346 0.398883 0.099931 0.861900 -1.204657 -2.410820 1.459453 3.044831 -0.112117 0.494703 -0.317880 0.073940 -1.342931 -1.826740 0.741170 0.040977 -0.317541 2.414726 0.724512 6.269095 -2.211336 -0.018484 0.165148 -0.146723 0.482121 -0.558836 -3.598600 1.870095 -0.031138 1.085880 3.536655 -0.012250 -1.872361 1.561542 -0.274455 -0.031475 -1.837774 3.240333 -2.367387 -0.974630 -0.955226 -0.812892 -0.522751 -1.506974 -1.421318 1.466455 3.317949 0.802294 -3.553589 0.539136 -1.714565 -0.242217 -4.827092 4.667218 -1.543480 0.344390 -1.182639 -0.643625 -0.237043 1.568357 -0.167052 -0.587826 1.518637 -1.823505 2.415416 3.413413 0.316928 -0.422823 1.025510 0.842213 0.010340 -0.383856 -1.194942 1.609903 -0.080024 -0.383059 -0.334099 -1.167893 2.319408 -0.142975 -1.387173 1.441800 2.446158 -1.404194 0.735278 1.990039 0.657139 -1.594515 1.800985 0.507596 2.746770 -0.885170 -0.181522 -1.309961 -0.221219 0.030798 2.125725 -2.747836 -2.005948 0.267923 -4.469223 -0.619375 0.566654 1.615199 0.257587 0.440679 -4.837239 -1.859651 1.534310 -0.735476 2.401933 1.746079 1.589071 1.943431 1.196696 -0.306462 -0.393744 -1.263150 0.039828 -1.709229 -1.585967 0.612362 0.443155 -1.911086 1.870590 1.025735 0.104256 0.494483 -1.191452 1.775274 -1.504243 4.262684 1.899497 -0.999439 1.229405 0.096257 4.038568 -3.074373 -1.699488 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = -2.361908 -7.302155 11.752731 9.440188 1.857609 4.484550 3.782994 -4.326686 6.289748 5.635217 -3.159608 1.188390 -6.722489 -0.781110 -0.892882 4.736869 -6.441212 -7.472428 -0.432510 -2.097103 -2.365386 -6.108336 3.037703 2.427053 4.107349 4.762810 -5.290907 -1.916139 -5.298699 -10.544871 6.889931 -1.956852 5.707335 4.936139 -1.813243 -18.969651 10.462927 7.635006 -2.635581 -6.231055 2.380651 -0.441529 -3.048115 -0.463315 -3.546097 3.600234 2.427272 5.161000 1.597536 4.810694 3.527024 -2.475211 5.788115 14.253169 -0.738531 8.039187 7.351941 1.902845 0.806456 2.184062 2.452378 1.078560 4.759960 6.732747 -0.782180 -0.965190 0.390922 -4.158527 -9.631286 5.756698 -1.464301 -2.270848 -3.917574 -1.719263 -2.929930 0.072239 -2.075641 4.727277 12.509487 -6.848259 10.354949 4.289720 5.855111 -0.927079 -0.587216 -0.316220 2.834654 4.290058 -4.074743 -2.342466 -7.009450 -5.223590 0.265288 -0.839124 -6.498731 -7.425401 5.046217 -5.999131 -8.684244 3.815596 0.570667 -1.691397 -4.769194 -1.560460 5.128217 1.431172 -2.896697 -7.099481 -5.070049 2.726888 -3.882627 -2.048369 -2.240183 1.599149 -2.554084 1.048496 -9.507792 -0.368330 2.217189 -6.360116 -1.137120 6.408198 -3.040166 3.524998 -1.469733 1.377855 -2.695696 6.112702 3.148574 4.036883 4.460764 1.528739 -4.964317 0.362884 4.695369 5.490519 -2.761182 -3.292111 -0.191343 2.738242 -2.165525 3.508312 -1.933599 1.724448 8.119495 -1.990704 -7.091160 -5.606007 -3.020424 -12.455460 3.514976 -6.405716 -1.256025 5.675689 7.253829 2.824877 4.378836 10.568375 -10.074768 5.429712 -2.446041 0.737895 -0.449563 0.843010 2.814682 -3.858485 -7.336206 5.068322 5.767058 1.522900 2.675913 -4.217883 0.078981 -5.988423 -5.864216 3.658546 -0.320098 -2.088475 3.019893 3.759228 12.093930 -6.751540 1.248150 3.589012 -1.363435 1.262738 1.462095 -10.245628 4.341594 0.045344 1.292606 8.903527 0.704702 -4.555928 3.684746 -2.214269 -0.774622 -5.808099 5.643195 -5.753671 -1.886765 -4.805488 0.345350 -3.444824 -2.839416 -2.085017 -1.228385 9.519328 -4.873439 -6.254701 6.137589 0.030942 0.798645 -9.586300 10.128041 -5.025376 6.020126 -0.626494 -4.579091 -0.519620 -1.380202 0.380077 -1.766665 2.115985 -2.707582 4.436350 10.191813 2.188068 0.588880 2.074674 4.530028 -1.027020 2.449962 -3.994913 4.400870 -1.082305 -5.095534 -1.071749 -3.543895 3.392021 -3.425793 -1.870615 5.739483 7.493578 -0.581923 3.734754 4.183835 4.686084 -5.940133 2.784563 2.513248 6.862425 -3.789772 -1.850962 -0.634189 2.184415 -2.367537 5.399321 -9.122581 -9.527794 -9.128116 -10.462361 -4.307884 -0.035706 4.693903 -1.832509 0.645794 -8.201485 -5.792978 6.161009 -4.312365 4.482144 6.668892 5.269607 7.608149 7.477560 -3.953500 -2.655222 1.004257 1.716174 -3.661049 -0.944489 -5.849507 6.785043 -1.924342 3.845517 6.014224 -1.898117 2.324780 -2.299471 6.681835 -4.782335 12.543089 4.217646 -4.067503 4.172536 0.490310 9.124395 -1.762260 -5.238272 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = 0.247802 -1.022171 2.463501 2.221989 -0.248550 0.729948 0.066720 -1.792920 1.630194 0.980613 -0.169901 0.594561 -1.098957 0.784875 -0.494150 1.632898 -1.711727 -0.969707 -0.714040 -1.303565 -0.992001 -0.999606 0.596474 0.144550 0.957860 0.535711 -1.174555 0.023881 -0.914915 -2.072830 0.802980 -0.345434 0.839843 -0.154246 0.302004 -3.285149 1.927330 1.356361 -0.639446 -1.655428 0.425531 -0.676201 -0.212269 -0.308282 -0.404707 0.432335 -0.324261 0.610682 1.067942 0.748356 0.742312 0.820481 0.851860 2.906977 -0.887168 1.345954 0.719001 0.057988 -0.313050 0.460921 0.522980 0.726943 0.787323 0.816584 0.128753 -1.434604 -0.449736 -0.410474 -1.369032 1.463971 -0.231400 -0.882834 -1.344268 -0.743687 -0.962786 -0.355127 -2.179656 1.429772 2.219941 -1.500781 1.021414 0.355976 0.330751 0.006984 0.851811 -0.212397 1.747334 0.661762 -0.483701 0.026070 -0.067728 -0.663513 0.634175 -0.271892 -1.102535 -2.303422 0.935209 -1.611438 -1.793270 0.885975 0.870313 -0.325898 -1.184963 -0.694876 0.813404 0.436411 -0.847050 -1.508010 -0.479563 0.646937 0.369925 -0.799842 -0.121421 -0.463641 -0.168571 0.088929 -1.958875 -0.033415 0.295687 -0.659369 -0.562378 1.316343 -0.045701 -0.136989 -0.305052 0.475605 -0.548247 1.501126 -0.361075 1.509193 -0.031820 0.987972 -1.142670 0.811308 0.840403 -0.070097 -0.257977 0.137132 -0.683219 0.566558 -1.092851 0.782744 -0.651718 0.843739 1.578562 -0.208425 -1.332880 -0.574672 -0.433445 -2.009913 0.509881 -1.237995 -0.785476 0.443776 1.341847 0.954667 1.084707 1.222870 -1.458524 0.521534 -0.247619 0.215208 1.245524 0.006682 0.777119 -0.781034 -1.350814 0.908116 0.655957 0.340905 0.351113 -0.293107 0.079757 -1.002565 -0.412794 0.855315 0.683169 -0.347473 1.224658 0.973512 2.363951 -1.166677 0.541163 0.883228 -0.507272 0.381714 -0.263955 -1.844444 0.577042 0.359069 0.602532 1.615540 -0.284337 -0.537686 0.473905 -0.333775 0.543031 -0.959627 0.392663 -1.126429 -0.329114 -1.029700 0.315040 -0.470955 -0.383314 -0.512903 -0.425496 1.902189 -1.740034 -1.004898 2.244568 -0.812256 0.503869 -1.726978 1.868872 -0.847515 0.823773 -0.562440 -0.232376 -0.067849 0.124401 -1.098220 0.414272 0.880672 -0.516024 0.292586 2.074094 0.440393 0.133691 -0.064843 1.305850 -0.478246 1.034652 -0.875004 2.052947 -0.219277 -0.289389 -0.243884 -0.673616 -0.055111 -0.979902 0.289655 1.246300 0.779433 0.442290 0.513269 0.804444 1.292196 -1.018387 1.578641 -0.095241 0.288448 -0.902024 -0.156124 0.493856 0.400862 -0.628116 0.864306 -1.782697 -1.561470 -2.137287 -1.028817 -0.260942 0.068467 0.611809 -0.566547 -0.433344 -1.216970 -1.440913 1.806205 -0.717920 0.300323 1.001265 0.783157 1.135872 1.777846 -0.482573 0.185818 -0.631857 -0.201567 -0.016179 -0.587995 -0.833673 1.545864 -0.700901 0.406730 1.599950 -0.355584 0.767168 0.012036 1.019770 -0.887884 1.835567 0.640025 -0.366073 1.143968 1.460146 1.782084 0.048074 -1.035245 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -0.031230 -5.404526 8.624562 7.813440 -0.906057 3.863017 0.489579 -5.478611 4.821042 2.085715 -1.868248 3.051699 -4.875067 1.577360 -2.874591 3.315580 -5.897053 -4.348810 -1.814917 -3.491081 -2.851261 -4.087066 0.337291 3.635167 2.987906 3.737773 -3.729887 0.377105 -6.136955 -5.597477 2.890915 -0.833673 3.478779 2.312807 1.588727 -10.592068 5.824563 6.464752 -1.504803 -6.554036 1.130358 -3.186706 -1.744807 -1.415151 -1.659601 1.536551 -0.286795 2.685933 2.349869 1.310552 1.256855 1.529792 2.701665 9.281442 -1.701414 5.974485 4.265809 0.502151 0.302687 0.936550 1.930999 1.669444 3.470488 3.447085 -1.154431 -4.014107 -0.996754 -1.542733 -4.710516 4.637953 0.295718 -2.320609 -4.239720 -2.589566 -4.526974 -1.209799 -4.306492 4.492913 8.909505 -4.840906 5.963832 2.260424 2.527678 -0.876313 4.290792 -0.839243 6.666669 2.681897 -2.600968 0.275333 -3.761589 -1.746882 1.345838 0.586651 -4.907325 -6.118552 3.617050 -8.461443 -7.596260 3.010446 1.747213 -1.856757 -2.964754 -0.865463 2.946850 1.217337 -3.047886 -5.934918 -1.755387 2.957689 -0.332928 -3.361863 -0.794131 0.329406 -0.262347 -0.209538 -6.810100 -0.290512 2.382698 -3.367109 -1.029299 5.435954 -0.137852 1.469717 -1.275428 0.966966 -1.195350 4.585333 -0.261041 3.292168 0.155665 1.787471 -2.802849 1.901530 2.225430 1.187010 -2.917687 -0.786767 -0.085170 2.475461 -1.765583 2.271035 -2.957759 3.319637 3.884472 -1.265533 -4.274315 -3.664983 -2.156228 -7.229222 0.836369 -4.325088 -3.952705 1.157205 5.183758 3.161583 2.761064 5.055074 -4.239776 2.787979 0.101793 0.931394 3.259604 -0.088444 2.603673 -3.330026 -5.651219 4.080297 2.251404 1.849826 1.314852 -1.182241 -0.329682 -3.493693 -3.193353 3.542694 1.967403 -0.302678 6.176836 3.845958 7.399605 -5.042322 2.309907 1.708511 -1.779800 1.489742 -0.698568 -7.189106 2.729138 1.154483 1.993726 7.036521 -0.882869 -2.166239 2.049669 -0.467703 1.795134 -4.925250 3.026387 -4.730387 -1.071859 -4.371547 1.396550 -1.781543 -2.219058 -3.123089 -1.969169 7.563218 -7.076332 -4.685767 6.882011 -0.496843 3.066591 -7.379406 3.763309 -3.413199 4.908253 -1.126815 -1.622590 0.384517 -0.653835 -3.037237 1.088591 3.512219 -3.215920 2.188492 5.950919 1.276964 0.909197 0.998544 4.018931 -1.614147 2.243511 -4.057973 6.111254 0.433661 -2.413164 -0.854483 -2.979983 0.848753 -2.264685 0.667184 4.315822 4.463956 1.818706 1.590441 3.515601 3.088756 -3.736471 3.708189 -0.250009 1.856085 -3.518318 -1.130671 -0.015189 1.440145 -1.124276 3.307330 -7.373051 -7.139687 -7.341628 -5.212782 -1.334124 -1.048544 2.773438 -0.113524 -0.943205 -5.958016 -5.519441 5.693456 -2.777817 4.190536 4.080204 3.893667 4.813533 5.600740 -1.551787 0.043574 -0.714839 1.158214 -1.393359 -1.331427 -3.808744 4.899746 -2.377722 3.348319 6.182966 -1.271197 3.199477 -0.592246 5.012696 -3.940003 7.957765 3.271279 -4.239930 3.266060 4.162173 5.840251 -0.132669 -4.360276 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.973424 -1.199437 1.643721 1.505900 0.716168 0.923413 0.507503 -1.088077 1.447240 1.563175 -0.183754 0.590018 -1.183751 0.119987 -0.080876 0.957378 -0.504199 -1.302176 -0.088456 -0.754585 -0.436797 -1.160354 0.222693 0.247162 0.495017 -0.535412 -0.902724 -0.066507 -1.846929 -2.170263 0.431836 -0.327164 0.867816 -0.694670 -0.125312 -2.626002 1.452958 1.492208 -0.395346 -1.634972 0.324847 -0.741497 -0.096739 0.407635 0.069279 0.584445 0.182151 -0.382806 0.615133 0.598168 1.161622 0.238776 0.261178 1.984959 -0.776939 1.407191 0.715520 -0.009830 -0.340464 0.599654 0.348355 0.221667 1.202690 1.052869 -0.617206 -0.671510 0.061174 0.043726 -1.729985 0.911521 -0.146351 -0.826400 -0.578381 -0.263399 -0.675210 -0.437589 0.417356 0.277222 2.037950 -0.520755 1.648178 0.490739 0.810769 -0.150129 1.020452 -0.260361 1.491551 0.423998 -0.971009 -0.465661 -0.766087 -0.337723 -0.064065 1.296757 -0.633474 0.034052 0.707119 -0.674157 -1.601113 0.722857 0.092841 -0.003048 -2.181178 -0.112084 1.004564 0.684194 -0.545480 -1.653821 -1.134426 0.775838 -0.502548 -0.830815 -0.220359 -0.989451 -0.569743 -0.094533 -1.278673 -0.543513 0.557097 -1.049933 -1.388768 1.251081 -0.780864 0.397855 -0.185993 0.490572 -0.328695 0.528032 -0.078148 1.009541 0.564791 -0.346810 -2.340574 -0.295392 0.324278 0.561546 -0.377012 0.032685 -0.334912 0.307059 -0.580487 0.837539 -0.625660 1.014647 1.844208 -0.187713 -0.769150 -0.619202 0.495868 -1.537488 0.492794 -1.064109 -0.192132 -0.133717 1.249248 0.207132 0.709066 2.015984 -1.177181 1.114432 -0.169338 -0.060158 0.823907 -0.476479 0.681419 -0.751803 -1.295114 0.645525 1.265495 0.084511 0.368998 -0.406781 -0.122671 -0.907583 -1.101606 0.471059 0.100342 0.036589 1.057937 0.592858 2.844789 -1.750756 0.526846 0.447286 -0.149353 0.445073 -0.422191 -1.654243 0.331937 0.383676 0.313254 1.743048 -0.085300 -1.220173 0.218940 -0.068613 0.410497 -1.094011 1.046884 -1.216775 0.083578 -0.570902 -0.697332 -0.581326 -0.727092 -0.500245 0.074296 1.592622 -0.117497 -1.919011 1.368070 -0.571426 0.305578 -2.481843 1.275752 -0.908589 0.728811 -0.960053 -0.006271 -0.371373 0.989758 -0.378958 0.376227 0.750635 -0.847588 1.214457 1.910582 0.330065 0.430701 0.096940 0.797671 -0.014589 0.051633 -0.751340 1.463619 -0.104273 -0.366695 -0.209780 -0.751915 0.766718 -0.212985 -0.276489 0.256854 1.386491 -0.681161 0.284734 1.139611 0.651512 -0.770850 1.180564 0.228049 0.967363 -0.404702 -0.111517 -0.150267 0.113630 -0.226596 0.864250 -1.524568 -1.151125 -0.371646 -2.034987 -0.105009 0.735195 0.414081 0.142809 0.204305 -1.710252 -0.775375 1.136273 -0.484966 1.769530 0.616740 0.971396 0.951864 1.239315 -0.430525 -0.330456 -0.717288 -0.415818 -0.841020 -0.929586 -0.166006 0.896741 -0.627403 0.960657 0.560391 -0.060315 0.317507 -0.053213 0.485794 -0.784365 1.837987 0.875498 -0.093261 1.038748 0.329407 2.263179 -0.896626 -0.836847 diff --git a/src/test-suite/oracle/FA_llvm14_p/ir2vec.txt b/src/test-suite/oracle/FA_llvm14_p/ir2vec.txt deleted file mode 100644 index 4ac2dc50d..000000000 --- a/src/test-suite/oracle/FA_llvm14_p/ir2vec.txt +++ /dev/null @@ -1,118 +0,0 @@ --7.656943 -151.966496 291.561265 247.539811 -20.025229 113.629642 20.398804 -192.469996 189.028321 116.134189 -41.912765 70.412216 -141.601434 52.266746 -54.858835 142.799735 -182.920880 -131.344839 -63.393523 -139.677540 -93.391046 -136.392073 29.298971 60.729243 92.360235 59.864214 -118.480783 14.641306 -152.174493 -235.228079 96.428673 -34.998852 101.673143 -6.653086 51.851148 -378.755900 218.648400 183.120775 -61.731888 -219.290431 36.649535 -74.844015 -37.386993 -8.591717 -44.950586 62.873437 -14.090262 78.837132 91.802815 75.639751 73.217389 56.719936 87.750103 333.309834 -77.102556 178.447202 114.258945 8.301059 -9.816004 62.664192 56.890395 61.831401 98.591063 110.351506 -8.221979 -134.393047 -24.535377 -37.763291 -171.125409 159.134685 -13.123912 -113.979044 -132.900354 -91.584742 -130.295237 -40.953050 -200.825965 150.445805 280.418708 -158.338085 168.552283 66.099973 79.509454 -2.951267 119.339897 -27.975271 213.359676 79.533490 -84.104176 5.510366 -67.885310 -80.978691 52.952774 -12.394633 -139.622068 -222.209564 116.777349 -211.884173 -219.901515 115.513131 73.009199 -44.184924 -141.572779 -62.297368 105.300516 53.189251 -100.067986 -189.949990 -80.131624 104.295353 -2.175020 -89.026426 -8.846593 -31.951900 -17.975886 0.407688 -214.873905 -9.844131 68.007876 -94.636324 -68.103914 174.303221 -26.298553 21.976523 -30.263908 48.567234 -54.583557 155.003470 -8.916365 147.867568 1.908457 66.912974 -154.601617 79.752893 75.672737 10.828271 -35.141699 2.390231 -33.322160 74.910866 -89.106853 101.248004 -91.820736 95.312104 169.077457 -26.190479 -140.279228 -97.076369 -50.973190 -231.869079 51.369087 -143.416839 -108.207435 50.753669 161.984970 118.547142 100.937088 158.813038 -174.485316 80.286339 -33.538943 23.795380 103.622595 -10.067596 84.860334 -96.234043 -167.486783 100.543091 93.463147 47.669359 52.341798 -62.070819 -2.426936 -115.462304 -75.588118 101.705007 72.888799 -24.955653 161.887926 127.724971 275.512039 -160.100313 52.194782 77.321756 -61.164479 41.646315 -32.139996 -227.798331 69.197728 47.497829 70.878168 211.481955 -32.961929 -62.967053 60.717427 -35.327648 55.633547 -129.993662 72.476676 -148.545724 -35.223099 -118.991682 29.096037 -79.648556 -59.083695 -84.732734 -54.763768 231.457081 -192.396538 -152.766999 247.060113 -73.947116 70.795995 -223.398551 185.561303 -100.635923 127.205439 -53.106097 -25.587800 -18.943410 17.670773 -97.042578 38.411268 98.757105 -83.830640 69.934064 233.324784 45.664393 21.281647 17.245751 146.069066 -65.249573 76.348514 -125.722657 212.480210 -23.751051 -49.211696 -27.280850 -86.983146 28.025821 -89.911686 22.553272 118.300343 117.628134 28.118190 50.943234 112.426087 105.253928 -110.060862 156.639780 -1.139956 56.736603 -106.907392 -21.729439 22.074551 46.909041 -55.773455 94.913748 -228.338298 -190.044516 -242.188472 -157.847923 -45.909294 -3.209574 71.014003 -27.484161 -30.823100 -174.465091 -167.927702 207.572699 -81.631633 75.169726 120.884678 111.581348 150.404917 205.105593 -50.859055 5.107837 -51.111730 -11.635809 -45.723174 -68.430171 -96.223559 167.949618 -86.192167 80.476332 180.983241 -31.119182 92.906042 -6.560176 117.672778 -126.381270 234.259198 102.503705 -73.536809 111.891132 147.953540 222.326044 -17.488329 -127.766971 --14.175522 -30.875164 39.904653 29.285428 6.703272 20.474603 25.096161 -22.351671 30.876596 18.205858 -9.607499 7.875570 -31.446557 -5.292708 -11.674792 6.989410 -17.117300 -28.252655 -1.633765 -15.322780 -4.894873 -29.998216 4.801995 15.692754 12.087564 0.792873 -11.037728 -6.752439 -42.445888 -30.324723 23.032512 -3.330601 16.907875 0.626203 -0.255717 -60.558764 26.693000 32.148784 -9.031503 -35.653621 8.665680 -9.283720 -11.114831 6.673500 1.229864 9.091490 6.280813 18.403889 6.726548 11.127397 14.490383 -5.343100 7.860279 51.838295 -13.714970 33.722721 28.675320 6.432365 4.230958 16.866481 6.005612 1.479144 17.184311 28.021076 -10.388436 -5.662849 4.898117 -8.155075 -37.944346 20.945629 1.749335 -13.986478 -16.261316 -7.488763 -19.864329 -4.611779 -12.994506 11.605338 52.344722 -19.333582 46.674647 15.264138 25.509549 -9.609240 15.065470 -4.090938 23.539205 10.165468 -23.524125 -7.112976 -40.581780 -8.548247 -2.912875 8.930029 -17.723804 -18.792767 22.267182 -23.484694 -38.464736 15.186561 1.269928 -7.358103 -22.857047 5.659300 15.851603 9.646943 -16.819814 -39.003422 -26.869396 19.458954 -16.970569 -9.156875 -0.700911 0.719033 -7.295680 -10.753674 -29.214779 -6.566534 14.772181 -25.053140 -17.133614 28.180939 -19.060054 18.834305 0.917580 6.281558 -5.131266 13.409370 9.657138 10.655987 18.518237 -9.991570 -41.089230 0.300116 9.722500 27.953491 -7.347410 0.341282 4.608857 11.739982 -3.012522 14.997601 -8.604994 12.500868 18.357335 -11.553210 -17.231510 -19.029392 3.531063 -35.305735 13.376956 -22.545534 -10.490416 1.307109 24.531005 12.184720 8.862968 38.594634 -28.389156 24.193359 -2.586103 0.101489 1.813765 -2.997306 15.277284 -14.567533 -31.520333 9.059289 19.159503 6.552728 6.728730 -12.455167 -5.869109 -24.339105 -24.966812 4.321929 3.604690 -7.387974 22.497295 20.394304 43.945633 -38.632604 7.103555 7.514342 -5.417711 5.220976 -3.161158 -41.229699 16.794774 5.731874 7.241398 35.556099 -0.330284 -16.442093 12.788187 -6.831956 5.013173 -24.253816 18.212398 -26.786047 -10.981714 -19.922787 2.045374 -12.906622 -17.569327 -13.778469 -0.085893 36.013962 -11.328914 -33.063062 27.956384 -3.446116 8.835529 -45.123378 36.406365 -14.594930 20.396618 -10.827658 -4.754064 -5.145413 15.102100 -2.969833 -1.644968 9.571463 -19.449397 28.554314 41.308339 5.795821 8.905725 10.595037 21.473875 -9.291673 -3.436839 -23.653564 23.058519 -3.992097 -23.347844 0.366694 -14.958400 21.112394 -7.166536 -1.078061 21.376816 34.027519 -7.097609 11.454896 20.464997 10.059126 -14.989151 15.385107 8.178905 23.377039 -13.130757 -2.649454 -6.691755 0.740705 -6.733459 19.782790 -37.501268 -35.157005 -14.649960 -45.364005 -7.245330 -7.359037 13.944310 4.531014 4.267996 -45.530021 -22.176016 15.232808 -13.834412 21.054501 22.016419 23.961463 26.860705 31.569235 -9.754047 -0.983741 2.117359 9.735408 -21.761437 -15.431961 -10.111276 15.677090 -18.045947 22.091626 19.186684 2.218863 10.929921 -11.129599 24.433657 -24.964811 46.205475 21.162285 -15.112035 18.429316 11.187860 44.814628 -5.710372 -17.887131 --4.811210 -13.107344 25.080969 21.452188 2.628589 10.123839 3.528263 -17.266613 19.954998 10.885957 -3.041436 6.031193 -13.525645 3.964844 -0.422614 12.776346 -15.408622 -14.959847 -2.940526 -11.848692 -7.196992 -14.974229 4.163170 4.033457 6.923340 2.304654 -12.852998 1.383213 -16.391019 -22.421424 11.786936 -4.838790 10.872159 -0.705866 2.129640 -41.843291 21.458735 15.562894 -5.079930 -19.698810 2.704177 -9.585068 -1.293388 -2.540769 -1.668931 6.513739 0.581117 3.462928 9.657715 5.619958 8.287779 4.184530 2.506111 28.075602 -10.927481 15.208966 8.029589 -1.112224 -3.581913 5.521151 5.008809 4.654954 13.501977 14.293985 -6.587395 -11.396840 0.153980 -4.261700 -21.013993 14.660656 0.767867 -7.870206 -11.748000 -4.373929 -11.149916 -4.426379 -3.688068 11.861154 26.826442 -11.311219 17.873445 5.068138 11.139591 -1.294647 12.062441 -2.689332 22.724787 6.168044 -12.065025 -3.443844 -13.169429 -9.087268 2.369357 5.278252 -7.594941 -9.142836 6.452018 -14.819760 -19.119129 8.064097 4.198370 -0.259829 -23.715552 -4.922976 14.204062 6.826986 -6.402912 -19.569773 -10.275612 7.968061 -5.487451 -8.884134 -2.149375 -6.848285 -5.771968 -4.233955 -19.392373 -5.317845 5.493048 -10.393097 -11.237110 15.614086 -10.515118 1.500706 -3.057181 4.302974 -5.241223 11.328745 -2.189890 11.549689 7.173983 -2.214166 -20.227322 1.154045 5.197121 11.288847 -3.383511 -1.643276 -4.898657 5.091588 -11.040048 5.902957 -5.965734 10.219748 19.943364 -3.162553 -12.322321 -7.613568 1.638499 -22.693497 6.997069 -14.007395 -3.919591 3.992095 15.788887 8.288156 10.943104 20.027088 -17.808362 13.675189 -3.674090 2.578966 11.877750 -0.380921 8.696612 -9.171463 -15.327249 9.206666 9.286191 2.191999 4.918083 -6.961468 -0.403607 -12.488615 -13.225902 8.180005 4.513111 1.482547 12.629823 8.039612 30.492163 -22.058069 6.787433 8.243677 -1.654090 4.109635 -2.571687 -19.477747 7.781792 3.598903 5.044539 20.592124 -2.419491 -12.992321 1.520394 0.518707 5.600841 -12.069962 6.975605 -13.478302 -0.920524 -9.863997 -3.276176 -7.801685 -8.129603 -6.874963 -1.601675 20.578549 -8.151785 -22.652896 22.849983 -11.193147 9.420247 -28.785820 14.946689 -11.266458 10.757693 -10.283152 -1.342456 -3.409198 3.868870 -8.007606 5.848724 9.471325 -7.908707 9.401000 23.816480 5.238886 4.665148 1.367321 11.170032 -0.744500 5.028274 -8.719174 19.936305 -2.195233 -3.076811 -1.972132 -8.789478 7.513528 -5.073576 -0.221900 9.629912 16.326218 0.472216 7.603948 13.604524 9.106109 -10.902202 13.846248 0.839075 7.817953 -6.497209 -1.989469 0.818003 3.092869 -5.104211 9.868126 -19.256491 -19.427034 -13.672657 -22.272276 -3.564185 3.790628 5.350024 -0.285451 0.762064 -19.160868 -9.750000 13.904379 -6.243200 17.935825 8.588988 9.817851 12.245075 17.805154 -8.496492 -4.393108 -4.106007 -2.714233 -7.769720 -7.279437 -10.064918 15.035472 -9.071984 10.022208 14.106545 -3.409588 4.258921 -2.486357 12.666557 -9.484818 23.485909 10.205530 -5.274252 11.110341 6.611146 23.921534 -1.775947 -11.503209 --12.619054 -23.790552 21.891626 17.915143 6.876811 15.811779 13.549493 -8.458765 12.348480 15.667408 -7.744239 10.575595 -16.835788 -7.165396 -3.269051 1.443370 -5.022653 -17.645072 3.404478 -4.742198 -0.158530 -15.334255 -6.180220 16.922714 4.492947 -2.547170 -5.191828 -3.604983 -31.032875 -17.782668 5.631516 -1.318956 10.999057 0.156705 3.335708 -28.267487 13.007664 23.172426 -2.431960 -24.665984 2.302459 -5.637937 -6.289611 7.962988 -1.317625 7.689026 8.000534 5.645059 -1.712584 6.743768 8.899657 -5.331716 8.704256 26.072357 0.700281 23.014613 20.844812 2.117173 7.181575 6.697300 4.797467 -3.496023 12.557168 13.749646 -7.591875 -0.768378 0.823714 0.147341 -19.308514 6.509985 4.902182 -9.019793 -6.711724 -3.848862 -10.585896 -4.650679 -0.712058 2.237912 30.302512 -7.939273 32.116403 14.162255 18.810755 -5.406644 14.718204 -1.809170 14.719365 7.044711 -15.327900 -0.496854 -24.453289 -5.076256 -2.566690 9.961811 -13.405216 -2.490667 12.021020 -12.235271 -24.337379 13.506724 -3.296862 -4.644626 -11.866657 3.885197 9.887604 7.179223 -10.065345 -22.014972 -16.473953 13.710792 -13.418901 -9.233999 -2.454736 0.423516 -2.049823 -2.620211 -14.329636 -3.509489 15.647772 -15.854778 -9.724923 18.225946 -8.720186 16.154493 -1.575537 1.037701 -0.722713 4.282499 10.572682 3.689217 8.689199 -12.639546 -27.052755 2.080175 2.651324 9.464682 -7.067291 -1.864601 8.923218 8.821659 7.788765 14.801550 -3.848957 11.909444 10.028109 -3.348918 -8.275790 -18.216421 0.212834 -15.169743 5.922574 -11.439327 -6.938776 -0.691703 15.011495 2.533139 1.759506 18.559819 -11.462101 16.094781 -1.078343 1.864884 -1.936451 -4.789873 7.349417 -9.028353 -18.117028 8.168819 17.610310 5.060478 5.941327 -8.265790 -2.478744 -9.236653 -16.278509 3.131583 0.580184 -0.795500 18.943162 11.516772 31.399415 -17.268731 1.542447 -2.143473 -2.492068 3.514787 -4.275655 -23.779520 8.220594 3.419805 2.257728 24.517432 -0.843164 -9.990858 8.448804 -1.756981 1.608513 -15.853942 17.908997 -16.368205 -3.719991 -8.500196 -1.239454 -10.360106 -11.308435 -11.975143 -0.083765 23.570383 -6.491823 -21.165338 9.313167 -1.624647 3.148891 -27.295847 18.540525 -9.390202 13.319366 -5.406696 -6.433269 -3.394867 9.359094 1.114718 -0.999370 8.181331 -15.443501 18.013759 18.637872 2.164179 4.491756 9.085151 8.473237 -4.717354 -6.992190 -14.886266 11.018456 -0.959036 -10.024905 -1.756417 -9.411624 15.597827 1.441881 -4.440625 4.430470 18.632310 -8.948190 0.288356 13.598624 -1.152734 -9.290901 5.374248 4.789639 16.654917 -9.055940 -1.849570 -11.057292 -1.601632 1.498664 9.651405 -23.458139 -13.834519 -6.764087 -24.177419 -6.452301 1.645343 8.029541 8.383469 3.847066 -28.433259 -13.853180 10.890575 -7.584715 11.920052 13.683284 15.689246 18.376088 13.466854 0.920367 -4.255179 -2.280696 3.072715 -15.627283 -7.778997 -2.525977 6.373072 -9.540768 18.406104 7.855069 2.929392 7.098680 -4.884644 11.932600 -14.928166 27.768451 14.908079 -13.435981 5.683256 5.593130 24.533897 -15.590507 -12.132447 --7.060230 -17.320716 34.453584 29.455089 3.195611 13.843252 3.951579 -23.693224 26.214219 14.948653 -3.030420 8.432654 -17.308567 5.301463 -0.017864 17.167377 -20.826447 -19.677918 -5.224508 -17.447065 -10.632300 -18.717933 4.434220 5.365233 9.351560 1.568952 -17.912764 1.661416 -22.026562 -29.810492 15.303222 -5.707385 14.805762 -2.807412 3.313973 -59.059873 28.973574 21.199334 -7.261126 -26.490872 3.897638 -12.784738 -1.890143 -2.775938 -3.661451 8.228407 -0.085616 2.874813 12.919742 7.339747 11.207050 7.255554 3.226481 40.383610 -14.335849 20.765950 11.188667 -1.955697 -5.383658 8.285616 6.565897 6.672208 18.053642 17.445638 -8.078252 -16.357986 0.611133 -5.452787 -27.495229 19.727955 1.842634 -12.661991 -14.347079 -6.816249 -15.837937 -7.004658 -3.893028 16.109829 35.030607 -16.034338 23.082199 6.386300 14.008156 -0.328487 17.115420 -3.651613 31.502596 8.178184 -14.782253 -4.049082 -16.576914 -12.006139 3.751051 7.517127 -11.247812 -13.991923 9.429776 -19.980439 -26.010036 11.857569 6.647327 -0.824514 -33.570906 -8.431320 18.876966 8.933467 -8.841536 -25.682956 -14.929157 12.142870 -7.286887 -12.139180 -2.946258 -10.324552 -6.941529 -5.356920 -26.407902 -5.342619 8.001643 -12.300964 -16.633530 21.861820 -14.154181 1.000289 -4.333379 6.686109 -8.317975 15.158186 -4.055703 15.953867 8.357378 -2.219919 -28.379464 0.702460 6.728634 14.326470 -3.962824 -3.192201 -7.471101 7.295554 -15.226850 9.788231 -7.804647 14.983343 27.174769 -3.271726 -16.610103 -10.671035 2.143948 -30.519869 8.306762 -18.584815 -6.502982 6.139944 21.168418 12.331156 14.589765 25.951344 -22.726139 18.660527 -5.264517 2.818465 16.459666 -2.193732 11.634182 -12.537002 -20.561383 11.781677 12.179392 4.179003 6.648531 -8.923704 -0.600409 -16.396349 -18.350999 10.081951 6.459641 2.126798 17.124446 12.389746 43.233120 -30.736445 9.045261 10.686267 -3.870805 5.652880 -4.055696 -25.648392 8.134639 6.070688 5.305911 29.305766 -3.534667 -17.734176 1.689996 0.828353 7.656167 -15.610789 9.635361 -18.043055 -0.882373 -12.826282 -5.702230 -11.738879 -10.217362 -10.525876 -4.300054 28.367960 -13.303613 -31.539024 31.866160 -14.923573 12.012726 -39.582721 21.166726 -14.794618 14.636450 -14.471867 -1.825121 -5.259656 6.290195 -12.376756 9.791762 12.561449 -12.223031 12.043562 33.244394 7.056839 7.041991 0.500467 15.589594 -1.857225 7.421002 -12.920306 28.188903 -3.823603 -4.467101 -3.488123 -11.500867 9.299559 -7.195337 0.720915 10.980565 20.758120 0.969673 8.300147 19.574211 12.318866 -14.538984 19.120446 1.111511 9.650343 -8.793856 -2.642276 1.846115 4.523332 -6.159901 12.496549 -26.476092 -24.762988 -20.026343 -29.776627 -3.669440 6.784099 6.241785 -0.418428 -0.100941 -26.143049 -13.802047 19.188311 -8.577931 23.636685 12.099249 13.616667 16.999092 24.691273 -11.170156 -5.143728 -5.931385 -4.586225 -9.843178 -10.740700 -13.896257 21.577288 -11.427398 13.525802 19.327341 -3.809503 7.399034 -2.068801 16.191555 -12.969027 31.554267 13.164586 -7.244782 14.535840 10.596546 32.097120 -3.509806 -15.455546 --8.636447 -16.113575 13.734378 12.861918 4.011363 10.219732 7.626761 -6.116616 9.747183 11.569660 -5.548270 10.074946 -8.771944 -3.731890 -0.243187 2.792484 -4.020999 -9.887180 1.763902 -2.825944 -1.079454 -11.802779 -7.531686 11.117604 2.444211 0.065744 -4.530072 1.053347 -19.793605 -16.553491 3.121057 -1.103366 6.629345 -1.687187 3.552374 -25.875563 9.447863 16.201872 -1.049827 -17.915033 0.126033 -5.192065 -3.858625 3.618684 1.244812 5.676651 4.699285 1.351736 -1.071340 3.037655 4.777898 -2.427454 7.409554 20.246105 -1.964117 16.760056 16.598360 -0.217020 4.972758 3.249702 3.601811 -1.970218 9.012467 11.220108 -5.108084 -2.091852 0.013001 1.423367 -12.162174 4.034365 2.643189 -8.061057 -7.556993 -4.025087 -9.039826 -3.594651 -8.039295 2.140229 20.891675 -5.087697 24.714931 9.888010 14.440471 -1.695719 11.796814 -1.630248 13.246103 4.890933 -13.386005 1.288235 -13.926966 -5.824985 0.073951 11.355863 -9.668281 3.066921 6.075014 -8.973150 -15.581540 8.840337 -2.157413 -2.225574 -10.543786 0.453780 6.237476 3.452611 -4.238858 -16.266042 -14.301767 8.449641 -8.023860 -7.683539 -2.840103 -0.693974 -0.986528 -0.770041 -9.920834 -2.334819 11.845562 -9.026558 -8.823854 11.366404 -5.635425 8.982271 -2.762829 0.390237 -0.168056 2.802648 4.503836 4.338055 6.201957 -8.932256 -26.721886 1.385188 1.554295 6.180138 -5.898085 -1.280376 6.259712 5.141151 5.419489 10.380629 -2.384471 11.505447 7.782162 -0.316459 -5.046777 -13.762945 0.479802 -9.678536 6.556192 -6.895166 -3.381717 -1.113427 10.033209 0.388310 1.325093 9.935916 -9.736695 12.230734 -0.633821 2.273712 1.138424 -2.634095 3.916605 -6.559454 -10.427910 7.075770 11.833086 2.963902 4.442004 -4.788272 -0.701381 -4.176630 -10.603315 6.170517 -0.888416 0.635038 13.877806 6.484108 31.935554 -15.488690 2.977678 -2.016412 -1.280792 2.782497 -3.312322 -13.402872 7.887893 2.550187 3.288122 16.505072 -0.538714 -6.553510 2.769323 0.238674 1.295568 -9.858647 14.385992 -10.064951 -3.461911 -3.465945 -3.369230 -6.142431 -7.118569 -7.751614 3.343124 15.511712 -5.018140 -15.515528 7.853010 -3.882419 2.757552 -19.640669 16.659661 -6.988972 7.439157 -8.391235 -5.138601 -1.514855 9.140793 -0.349861 0.832704 6.873907 -12.869156 9.646475 12.006924 1.408816 3.902272 4.600741 3.803649 -2.151119 -4.022429 -8.451295 8.302095 1.102293 -3.831723 -3.996551 -6.337923 12.927963 2.006446 -3.075258 1.979966 14.453499 -5.726381 -2.550376 11.867406 -1.140372 -6.443213 5.004904 1.795666 9.106868 -5.979523 -2.243991 -6.787594 -1.592246 2.145104 5.445188 -14.460878 -6.300246 -3.491441 -13.331180 -5.387859 4.514715 5.770392 6.366829 2.122684 -22.054976 -8.861037 10.419989 -4.185955 2.765017 6.748290 9.949338 10.746077 6.969000 3.595439 -4.398073 -5.040857 0.139789 -8.990674 -4.403542 -1.574907 5.437868 -8.568329 12.239700 4.313326 0.929663 4.468697 1.620145 7.950879 -8.045980 18.847991 8.955291 -9.249211 2.479973 6.481975 17.025327 -13.681127 -8.383413 --7.092811 -12.725970 8.478018 8.596584 6.249544 8.429734 4.877452 -2.337195 7.165386 7.974162 -4.119641 8.391767 -5.710352 -3.552955 0.397428 0.719102 -1.504499 -10.317484 4.524237 0.649387 0.126645 -7.327647 -7.035123 8.968682 -0.111660 0.821803 -3.166956 2.736316 -17.471109 -12.849715 0.528679 -1.262944 4.605411 -2.920984 2.287872 -14.290768 7.037748 14.048955 0.056295 -14.857396 -0.823944 -4.857809 -2.036200 3.933221 0.331583 6.973461 5.720830 0.550903 -2.436597 4.014798 2.525748 -0.728671 4.533968 7.263748 3.158060 11.492830 11.208753 1.180520 1.867807 1.692686 3.118409 -1.988938 8.149048 5.969652 -6.331670 0.839401 0.117167 2.049739 -10.292985 1.643571 3.974192 -6.958610 -2.055809 -0.806016 -6.772028 -1.833706 7.982796 -0.854889 13.510116 -2.045403 16.618454 5.274916 11.537377 -2.513635 8.718640 -1.939053 9.889080 4.273599 -9.146726 -0.320374 -12.201387 -5.862791 -1.644828 6.892184 -6.295926 4.057452 2.048481 -8.395838 -10.531846 5.582195 -3.083171 0.226896 -9.103843 0.798398 8.542510 4.091795 -2.496742 -8.865687 -6.876652 6.884943 -9.357777 -5.845155 -2.612387 -0.531614 -2.244249 -0.034158 -5.811696 -3.590622 10.916852 -6.526269 -3.017498 9.854263 -5.554948 8.089143 -3.424224 -2.157824 1.989770 1.337346 4.766594 2.514735 2.922888 -8.764910 -12.611565 -0.335541 -2.968275 3.051029 -5.785950 -3.307768 6.207328 4.878803 4.497557 7.171794 -4.546882 4.832285 7.707904 0.068607 -3.588634 -10.321666 -1.009395 -6.718975 3.512038 -4.751115 -1.838319 -0.606906 9.381081 -0.983473 1.603444 8.440670 -6.216225 5.228292 1.319733 1.664101 1.042752 -2.368703 1.716875 -4.985401 -8.028802 7.024096 8.873525 0.703911 3.256837 -5.661319 -0.071299 -2.345886 -8.878301 4.054734 -0.579655 4.147611 10.590691 3.916918 15.018962 -6.799642 0.185050 -4.022191 -1.554202 3.580212 -3.414284 -9.346153 3.466585 2.815174 6.777569 13.707974 -1.466352 -5.148926 2.594753 4.268538 -0.444655 -8.253359 10.995949 -7.689968 0.705670 -0.187223 -3.359155 -6.131528 -3.618892 -8.293797 -1.534337 13.177574 0.568198 -14.956544 4.444814 -5.184887 3.998288 -15.906227 2.837973 -6.014600 7.617546 -2.266994 -1.265800 -0.324105 -0.122008 0.417254 1.046009 5.533076 -7.291172 7.803449 6.156671 1.942675 1.311019 5.732115 0.757614 -0.757086 -3.217392 -5.331953 3.666257 -0.055385 -0.620439 -1.308247 -5.977787 8.713804 3.102846 -4.730325 0.127295 8.308705 -3.274888 -0.367892 7.696249 -2.574673 -7.064348 2.468405 3.138060 7.266604 -3.023342 -1.333537 -6.510366 -0.481353 2.819621 4.287009 -10.751471 -4.863283 -3.894243 -17.060000 -3.851760 2.865429 3.975442 5.210463 3.887552 -13.733038 -5.237095 7.989880 -1.714728 13.846693 5.214345 7.345326 7.554418 2.557985 0.609039 -3.518537 -4.881285 -3.027559 -8.401384 -2.492473 -0.188528 3.459061 -3.249477 10.218019 2.875153 -0.644893 1.547803 -3.225433 5.121899 -6.135933 11.847677 7.192416 -5.874478 -1.847886 -1.891141 13.120067 -11.169223 -8.194844 --7.734635 -38.275504 61.019894 53.450903 -1.344192 25.372943 10.353586 -37.226356 41.903805 24.845276 -9.628991 16.758073 -36.436796 9.631788 -10.424785 28.531637 -37.996944 -34.020949 -9.639101 -26.129876 -18.828693 -32.968782 6.999933 16.463958 19.754519 12.099088 -24.935508 -1.311933 -42.895827 -43.215798 23.750111 -9.759527 25.099724 7.110800 9.034910 -83.714297 42.910108 39.635521 -12.814646 -49.736333 8.150074 -21.425685 -4.394830 -5.709142 -7.312524 13.147076 1.166888 15.193453 20.094894 13.993768 17.066039 6.659317 15.591817 71.457731 -18.987567 40.166073 26.672337 0.804303 -1.433772 11.279486 13.503334 9.869078 26.502251 28.413445 -8.731677 -26.449697 -6.788591 -12.605343 -42.110715 33.744747 -1.246149 -17.632398 -31.247522 -16.847312 -27.528902 -11.302101 -41.064953 31.723452 66.019740 -35.237518 44.118280 16.633935 23.289490 -4.338688 28.852028 -4.303706 46.668981 16.403814 -23.028944 0.233216 -23.556769 -15.621256 6.906448 4.010357 -26.685628 -36.081147 25.192778 -40.392536 -51.100582 24.689384 11.425738 -5.625121 -33.979561 -6.602240 23.268709 15.298715 -23.551158 -46.361872 -21.369806 20.643964 -2.784208 -20.617765 -3.043548 -6.679981 -7.884474 -7.538980 -46.857107 -6.978042 15.509597 -27.288125 -16.497351 39.809336 -12.757029 9.951232 -5.778677 8.568366 -10.289602 35.059849 1.525622 28.090721 8.416779 4.092590 -43.264088 12.797182 16.477333 18.021281 -10.634718 1.064749 -5.235058 14.776665 -16.857488 16.967452 -13.559818 23.673703 35.888971 -9.853101 -31.174132 -23.233784 -6.499597 -51.822335 12.172960 -33.948123 -14.072002 11.471539 37.055818 25.622186 21.762944 44.478141 -38.016975 24.500251 -5.828155 3.302185 23.083183 2.302990 20.659933 -22.391550 -37.789180 22.451162 22.455163 9.221551 12.389244 -14.360977 -1.954423 -28.331962 -22.353069 20.884417 14.481777 -4.731055 37.871493 25.192512 58.429482 -41.363379 13.912057 15.827886 -8.480416 9.354845 -6.801716 -51.899832 20.706851 8.152273 9.564330 42.666161 -6.703164 -19.292706 13.175251 -7.833874 13.201182 -31.709192 18.234528 -33.293329 -7.597258 -29.208171 5.387467 -16.719209 -18.075740 -16.946879 -6.657225 53.060226 -34.829100 -35.878775 48.568854 -13.262616 18.232551 -54.524755 42.823534 -24.472919 30.023740 -16.582019 -8.236554 -4.845328 9.082123 -16.161594 5.521873 23.424780 -20.439424 17.843662 51.346103 10.780901 7.249183 8.118482 31.830757 -8.485879 13.349005 -24.642078 44.806875 -2.539110 -12.509420 -2.531197 -21.283051 12.344472 -13.750513 2.249434 31.597078 34.097340 4.550441 15.369549 26.003075 21.774790 -25.271669 28.775276 0.765559 20.870380 -22.810379 -3.869768 -0.348320 9.134220 -11.848494 21.400196 -50.238904 -47.380395 -41.303328 -38.194686 -11.108561 0.302569 15.614760 -2.038581 -2.264403 -43.837995 -33.845378 34.482594 -19.485725 23.941602 24.166975 25.379116 35.173518 44.075747 -13.004803 -5.068922 -7.351801 0.506505 -13.422279 -12.555861 -22.558950 32.178418 -24.185384 22.023578 37.754470 -6.620449 17.033452 -2.068999 33.454601 -28.060244 57.518514 25.375316 -19.520021 28.413373 30.255770 51.371620 -3.675421 -29.181155 --6.503852 -12.088283 11.412889 10.095994 2.970077 8.440945 4.283773 -5.244547 6.193183 9.480003 -4.591496 7.040641 -6.235597 -3.019414 -0.024215 1.990272 -3.284455 -7.832571 1.255455 -2.704007 -1.511549 -7.394023 -5.691732 8.170044 1.719191 -0.193924 -3.627364 1.588649 -13.979338 -14.119500 0.571710 -0.647460 5.050961 -1.400184 3.435302 -17.609200 8.170559 12.787515 -0.810946 -13.615552 -0.253199 -3.185599 -3.952791 4.384578 -0.825369 5.035728 3.629363 0.726304 -1.419681 3.184324 4.541978 -1.804208 4.912490 14.246766 1.580609 12.298882 11.963530 -0.436800 3.069518 2.985631 3.124057 -1.535929 6.806962 7.097035 -3.393615 -1.155746 0.665875 1.369235 -8.584054 3.283992 2.481410 -7.896754 -3.201908 -4.188632 -6.411285 -2.573178 -1.454370 1.046993 15.657805 -3.466716 16.507717 6.855861 9.846420 -1.428682 9.870299 -1.707568 11.541365 4.326122 -8.677191 1.201037 -7.804860 -5.149738 0.141116 8.678784 -7.790393 2.376893 5.198625 -8.249233 -11.785636 7.837763 -1.411817 -2.130810 -8.624742 0.017883 5.967109 2.796036 -3.863410 -10.872231 -9.116246 6.894628 -7.012672 -5.981543 -2.436882 0.103218 -1.140784 2.142778 -7.679281 -1.528136 9.486503 -6.692612 -6.147755 9.254678 -3.219389 6.742154 -2.677735 0.049881 -0.241873 2.094576 3.351495 3.477739 2.859337 -5.001114 -16.631110 1.274063 0.762110 1.086802 -4.080411 -1.819656 5.316645 4.758407 3.330942 9.063798 -4.383817 8.944569 7.801850 0.727529 -4.846304 -10.272071 -1.121488 -7.716678 3.104685 -5.828270 -4.376245 -0.115811 8.372154 0.852965 0.524754 7.747889 -6.426996 8.319369 -0.941624 1.957732 0.315673 -4.573825 2.913832 -5.316311 -8.362448 5.887095 9.491547 2.545208 4.106492 -4.434663 -0.610944 -3.243606 -9.290254 5.301465 0.329965 1.445336 10.145151 5.613150 23.280349 -9.090550 1.399599 -1.854776 -1.414961 1.925659 -2.784547 -10.562601 3.595221 2.236049 3.766479 14.105326 -0.419703 -4.739782 1.738405 0.463592 0.866459 -7.797412 10.919762 -7.819829 -0.108661 -2.130943 -2.437829 -5.376355 -4.816406 -6.275075 -0.025212 12.601585 -5.646496 -12.908782 6.684343 -3.442179 2.967816 -15.010891 9.509155 -5.432951 7.678670 -4.585384 -3.149694 -1.341761 4.181526 -0.385312 2.778946 5.263625 -8.432005 7.175025 8.956145 0.873641 2.861268 3.186811 3.029928 -2.747497 -3.351264 -7.074536 7.085688 0.538027 -2.505105 -3.556507 -5.006058 7.886696 1.086108 -2.277029 -0.627246 8.646768 -5.033028 -2.106004 8.457547 -1.468105 -5.483724 4.269159 2.044895 6.946544 -4.915514 -2.069085 -4.992271 -0.090618 2.047317 3.580466 -11.426511 -4.246229 -6.156796 -11.119072 -4.836889 4.256533 4.998710 4.283795 1.424442 -13.285574 -7.025038 10.826136 -3.058569 5.844147 6.132817 8.252251 8.455675 5.290123 2.612483 -2.901528 -4.981910 -0.683654 -7.587475 -3.663231 -0.991867 4.121143 -5.151154 9.449105 3.382567 1.249017 4.196561 0.753217 5.652865 -6.596645 12.857466 7.290455 -6.819251 1.252377 4.688036 11.984436 -10.575255 -6.895055 --6.651479 -11.206680 11.134619 10.254511 2.598652 7.905548 2.981165 -5.129898 5.775374 9.374439 -3.240221 6.774440 -6.731019 -2.425602 0.040180 2.833452 -3.333446 -7.549476 0.272727 -3.419432 -1.873228 -6.361913 -5.209965 8.231320 2.083623 -2.160116 -4.347019 1.384203 -12.976028 -13.055386 -1.110838 -0.826328 5.410835 -3.290904 2.884512 -16.179627 8.115664 12.276760 -1.185382 -12.029726 0.299667 -4.010234 -2.259244 2.937647 -3.073921 3.937051 3.164198 -2.051011 -0.277719 2.753521 4.384725 -0.166902 5.287311 14.207530 0.956824 11.558806 10.312488 -0.295555 1.715429 2.345903 2.940167 -1.248366 6.886457 4.994009 -3.207115 -2.528479 -0.190894 1.608701 -7.649127 3.092137 1.288890 -6.914933 -2.923072 -3.722002 -7.619974 -3.848529 1.428789 1.325316 13.832205 -4.766418 14.239457 6.495884 7.520619 0.501450 9.614338 -1.208355 10.713981 3.837602 -7.289063 1.801611 -5.388317 -3.591210 0.592380 7.922754 -7.400724 -1.071897 5.265879 -9.504977 -12.294952 7.956945 -0.854880 -2.032546 -9.102775 -2.270586 5.383348 3.120407 -4.594162 -10.469072 -7.761964 6.581278 -4.808348 -6.244998 -1.754189 -1.268459 -0.003268 1.580963 -8.317038 -1.077118 8.337703 -6.428976 -5.827674 9.534316 -2.454084 6.421084 -2.225299 1.015614 -0.942728 3.086372 2.384942 4.298196 0.013079 -3.723666 -13.883215 -0.811525 0.603742 -0.986791 -3.650157 -1.551371 3.680563 4.424842 2.504071 9.199794 -3.697906 8.854503 6.854689 1.149627 -4.174362 -9.341330 -2.175560 -8.138793 2.512057 -5.560178 -5.434830 1.320633 8.009146 0.615699 1.102062 7.985259 -4.146852 6.649955 -1.003860 0.579407 1.884219 -5.690407 3.483305 -5.096366 -8.430598 6.007231 9.169103 3.589151 3.595953 -3.661977 -0.161933 -2.909384 -7.798390 3.454967 0.525069 0.806620 10.363502 5.666095 20.649600 -8.292206 2.201745 -1.580364 -1.693366 2.890588 -3.360491 -10.465352 1.740762 2.783761 1.529625 13.121146 -0.781668 -5.504721 2.475182 -0.218257 1.435892 -7.938835 9.598723 -7.813017 0.648649 -2.946682 -2.836722 -5.482291 -4.592983 -6.580040 -1.059953 12.159058 -7.082659 -11.128021 6.647022 -0.361498 3.070838 -14.244503 8.766073 -5.170825 8.969523 -4.329427 -3.405505 -0.546304 4.482538 -0.980677 2.346922 5.557845 -8.057129 6.124442 7.987545 1.152914 2.972064 2.721268 3.809192 -2.063854 -1.861855 -7.158152 7.401599 0.105850 -2.862636 -3.078470 -4.849226 6.663923 1.081984 -1.290706 -1.589502 7.822344 -4.362791 -2.128550 8.618019 -0.494382 -5.078462 4.408290 1.279311 6.700483 -5.084487 -1.254504 -4.737903 1.021839 1.854939 4.019830 -11.696135 -4.285933 -7.556613 -9.312772 -3.754124 5.493761 3.355875 3.635796 0.789808 -12.237670 -7.112409 11.135080 -3.639998 5.967722 5.987957 8.150188 8.722941 5.965040 2.630653 -3.175614 -4.093213 -1.400938 -6.131416 -3.411577 -1.363542 4.815403 -4.848402 8.782711 3.745163 0.778453 4.326155 1.477716 2.887970 -6.472576 12.126468 6.591408 -6.383291 2.462081 6.191435 10.567637 -10.171984 -6.620046 --3.725063 -5.725833 6.696280 4.953284 -0.597956 3.660615 1.055575 -2.346878 3.382723 -1.471739 -1.477942 3.347852 -4.558633 -0.466861 -2.524279 -1.364319 -5.082383 -5.268969 -0.823791 -1.793157 -1.568609 -3.764072 -2.360279 5.689970 0.660152 2.205744 -3.433606 1.268853 -8.627640 -1.421264 2.776757 -0.211101 3.427726 -0.025951 2.039256 -13.851055 3.268786 6.012984 -0.718553 -7.450280 0.884217 -4.576762 -0.345049 -2.684220 -3.611686 0.623857 1.169231 1.193166 0.071782 -1.333207 -2.394807 1.110310 -1.381777 10.047511 -0.416990 4.965804 5.943512 0.379900 -0.206598 -0.026416 1.361020 -0.423337 3.552038 2.499525 -4.030967 -1.706019 0.839257 -2.302702 -4.454999 3.154593 1.759452 -1.412537 -1.516280 -1.819686 -8.526700 -1.951725 6.119417 3.569098 7.568592 -4.735563 6.325581 1.372721 4.701292 1.844807 5.297571 0.268532 6.414808 1.818175 -2.869166 -0.056176 -8.177055 -0.587592 -0.773229 0.972982 -3.107364 -5.146349 2.774698 -10.120485 -6.463028 2.658075 -0.516430 -1.462820 -4.918784 -1.555707 3.765785 2.951256 -2.827156 -5.097237 -3.760241 4.611110 -2.670957 -2.004006 1.975182 1.390820 0.021282 -4.289033 -5.639353 0.674501 4.274700 -2.334674 -1.081926 6.654528 -4.117864 2.950629 -0.655212 0.210637 -1.721605 4.286929 0.616111 -0.901744 -0.714597 -2.777249 -3.247038 -2.818739 -0.458994 6.297975 -3.434663 -2.531238 1.392405 2.288403 -0.374019 -0.364705 -2.374242 2.176557 1.366630 -1.503404 -2.732950 -5.726706 -1.886889 -6.736132 -1.186182 -2.798921 -3.367703 4.663577 4.664684 4.405058 1.141700 6.553386 -2.275796 3.907653 -0.013584 -1.234737 1.306190 -1.247370 2.121970 -2.805309 -5.311223 3.147257 0.668208 4.292082 1.060767 -1.798968 -0.638197 -2.812004 -5.642786 1.663725 3.282053 2.483235 5.813505 4.480788 2.700401 -8.276768 1.280150 -0.162038 -1.915709 0.973513 -1.445039 -5.086135 1.282174 2.164238 -0.860793 7.027616 -0.938221 -4.044545 1.648189 1.008560 1.915739 -4.566987 1.939615 -4.042166 -0.340345 -4.255499 -0.969871 -3.491273 -2.337915 -5.978534 -5.261108 7.142082 -6.592242 -8.163377 4.739114 1.317576 6.164714 -10.095694 -0.281736 -2.591151 8.716646 -0.219119 -0.072612 0.070508 -0.887709 -2.033356 1.789874 2.778385 -4.955188 2.064508 4.482482 1.753057 2.253876 1.119078 3.168104 -0.397272 0.113218 -4.664183 3.209478 -1.175737 -3.882644 0.855240 -2.607894 3.223692 1.151347 2.015596 2.296054 4.892440 2.759273 2.921399 6.417667 0.674026 -2.662682 -0.714499 -0.473400 3.456667 -2.508284 -0.973086 -2.937725 3.392930 0.600845 1.289116 -6.668774 -7.896605 -7.926712 -8.651742 0.122346 -1.538744 -0.212190 1.652697 0.259024 -7.677976 -3.134331 2.963444 -2.331807 9.715769 3.623081 3.046645 5.566972 5.001124 -3.562925 -1.558745 3.924246 1.541139 -3.406915 -0.356989 -5.663476 3.855515 -3.230703 4.422882 5.744199 -1.417984 3.299036 0.119851 4.032394 -3.725636 8.818043 4.136595 -6.740449 0.738505 2.668034 5.590425 0.343691 -4.078746 --8.050523 -15.458328 11.456364 10.595509 4.038455 10.925598 9.656734 -3.093175 10.295923 9.116753 -5.091072 9.013894 -6.479278 -5.021299 -0.166872 0.053244 -2.465819 -9.751375 3.780456 -0.793048 1.266362 -12.162572 -8.304676 12.694941 0.668056 -0.026253 -3.354167 0.606446 -19.373598 -11.952962 3.425914 -0.386008 6.245882 -1.642081 5.199622 -25.384757 7.205821 15.335666 0.638663 -18.244711 -0.552066 -4.130181 -2.430434 5.399153 2.183967 7.406292 5.184270 4.503184 -2.537684 3.192348 2.655738 -1.878375 5.939046 16.590200 0.335000 13.738383 12.896686 -0.230736 5.647652 1.220128 3.275912 -2.812407 7.639842 10.772014 -4.947092 -0.538073 -1.374413 3.009978 -13.770238 2.136560 4.383097 -5.982172 -8.559262 -1.327817 -8.801863 -3.259419 -9.499514 1.141971 20.240578 -2.290881 24.401991 8.021090 17.555547 -2.137283 11.917862 -1.058550 10.654563 4.591005 -14.334448 2.071332 -18.411208 -4.703690 -1.271588 6.150103 -8.960843 1.445295 4.062243 -6.201620 -13.140668 8.947431 -3.050569 -2.696134 -7.197034 0.939186 7.660076 5.208565 -4.416955 -15.359084 -13.877071 10.155810 -8.640131 -6.897645 -1.035811 0.125594 0.322778 -4.877385 -6.242125 -1.181669 12.348452 -6.869903 -4.743359 11.319072 -8.783040 8.721508 -2.581911 -1.070162 -0.127363 2.002600 6.412219 1.453068 6.258190 -14.946548 -26.454321 3.401866 -1.194991 9.655021 -6.131262 -3.728820 6.584187 5.906748 7.376622 9.184997 1.349904 7.328519 7.667061 0.409662 -3.631223 -13.610774 1.595339 -6.501660 6.829950 -4.461429 0.204947 1.165041 8.961458 0.063896 0.745216 6.479256 -9.097937 12.623133 -0.729285 2.189364 -0.521396 2.280192 2.253537 -5.016295 -8.875584 7.097090 10.264440 5.309500 3.851463 -4.454675 -0.509201 -1.024924 -9.304783 5.323114 1.807912 4.597465 13.394626 6.552015 21.051190 -12.047354 -1.251373 -3.545619 -2.060199 2.099602 -3.932004 -11.477382 8.984996 2.694389 2.314227 15.829614 -2.221371 -4.045129 4.406310 2.048149 1.623617 -9.716358 12.322927 -9.526856 -4.470668 -3.259230 -3.821779 -7.505219 -5.982397 -10.102584 2.650567 14.504855 0.586902 -14.400401 4.022377 -8.557105 2.926734 -16.481798 14.151828 -5.825154 4.195160 -6.040411 -2.857568 -2.012078 7.966381 0.174782 0.133622 6.146274 -11.785353 9.331699 11.709024 1.230703 0.765455 4.789514 2.453975 -1.799418 -4.795564 -8.613120 5.296004 -0.851507 -1.024390 -1.658747 -5.274377 14.542437 3.417272 -3.282997 2.556820 12.229187 -4.654001 -2.384238 10.075453 -3.547582 -5.619373 1.041236 0.788508 8.203854 -5.518508 -2.488567 -8.922115 -0.328307 3.779304 2.087523 -13.380132 -4.991082 -3.279657 -13.901251 -3.920659 2.128165 3.852680 7.027618 2.261762 -21.959618 -7.729650 5.113394 -2.849350 2.425758 6.779657 7.179380 10.970832 4.989147 2.040038 -3.386069 -3.682255 -0.872883 -9.300715 -3.333808 -1.703940 4.136350 -10.637415 11.857825 4.499984 0.390657 4.667524 -0.659633 10.367418 -7.771754 19.557442 9.227127 -9.438465 -0.735030 1.584126 16.004773 -12.374361 -7.942348 --3.911819 -11.419181 13.665991 10.216021 2.657541 7.712065 9.419825 -8.417214 12.017581 6.437871 -4.788284 2.800832 -11.291696 -2.286886 -3.480912 1.769532 -6.351138 -9.690494 0.158424 -4.458832 -0.741958 -12.057874 2.069341 5.961150 4.190043 1.813913 -2.994242 -1.636300 -15.977314 -10.313495 9.617298 -1.057901 5.860392 1.817344 0.144314 -20.350703 9.088695 11.339738 -2.700355 -14.592003 2.632725 -2.767105 -4.953622 3.434557 2.684139 3.825720 2.010374 9.103938 2.171299 4.094479 4.291103 -3.518305 2.270517 16.505884 -4.779652 12.655995 10.759611 1.895981 1.967243 6.419134 2.415707 0.785471 6.395625 12.299741 -4.046995 -1.673914 2.652061 -2.754309 -15.249420 8.142210 0.488704 -4.528576 -6.394135 -2.784183 -4.976120 -0.152065 -4.487205 4.586157 19.933990 -4.932654 17.842425 5.149441 9.566476 -5.511420 5.267709 -2.085558 8.237873 3.814970 -9.414799 -3.525942 -16.199446 -4.603695 -0.686196 2.980057 -5.564889 -3.319038 7.378428 -7.261426 -13.623422 4.514376 0.510321 -2.574551 -7.998183 4.282582 6.170000 3.713748 -4.767131 -14.054287 -9.165513 7.208954 -7.773917 -3.299331 -1.745858 1.644714 -4.085239 -3.579839 -9.303588 -3.585778 5.775674 -9.257177 -5.383030 9.377417 -7.670574 7.125973 0.032937 1.481615 -0.622444 3.754548 3.729478 3.317321 9.968349 -4.919563 -14.041735 1.860927 3.394763 11.510484 -2.666734 0.523896 3.112061 4.134928 -0.891194 4.980184 -3.465983 3.750478 6.737347 -4.636762 -6.007887 -6.769679 2.183848 -12.522758 4.974864 -8.111159 -2.751794 -0.619180 9.108756 4.048489 2.908671 13.828678 -12.666522 8.916010 -0.447075 0.901022 -0.012451 1.856442 5.196573 -5.295952 -10.837063 2.764965 6.619037 0.853031 2.417779 -4.630911 -2.795392 -9.035100 -9.270147 3.278493 1.370734 -1.687713 7.834828 6.976632 16.439246 -13.719841 2.194828 3.024263 -0.784179 0.935432 -0.736170 -15.258791 7.379270 1.219858 5.532994 13.213374 -0.062083 -5.172775 3.350257 -1.935895 1.463722 -8.593479 6.925844 -9.880211 -3.864352 -6.807292 1.201833 -3.846539 -7.111625 -4.964619 2.424295 12.908895 -0.861299 -12.555992 10.379305 -3.509526 3.486445 -16.057780 12.826579 -5.405122 6.012377 -4.097428 -1.488662 -2.099592 3.672268 -1.059056 -0.649536 3.267773 -5.988427 11.137690 14.926306 2.060547 2.488279 3.870055 6.840019 -3.553086 -2.162987 -8.363761 7.438520 -0.844201 -7.257069 -0.044093 -5.757229 8.356422 -2.984017 -1.852152 9.387042 13.155690 -2.716307 5.035177 5.818768 2.642175 -5.518125 6.165700 3.674892 8.320499 -4.034600 -1.491059 -2.156621 -0.234441 -2.338580 7.476268 -13.112863 -13.235771 -2.292597 -17.470454 -3.645265 -4.497663 6.052721 2.168498 2.142664 -16.360004 -7.485896 3.266597 -4.202071 9.681697 7.038862 8.375453 8.622346 10.837823 -3.752367 0.459668 0.189433 4.132047 -9.227020 -6.086293 -3.022961 5.242503 -6.007621 8.041952 6.974313 1.011319 3.295349 -5.952795 9.461103 -9.204816 16.247905 8.123103 -5.130817 6.030967 1.186738 16.723130 -1.621439 -6.648852 --11.943934 -18.572706 15.744921 14.764017 4.597587 11.331696 8.495987 -6.030732 10.282593 13.719714 -4.331322 11.323838 -11.123572 -3.652912 0.464882 3.801963 -4.275639 -11.837291 1.457682 -3.789483 -2.490247 -11.831923 -9.773367 12.482233 2.968180 -4.582591 -5.615226 0.149683 -22.974912 -16.381618 1.126249 -1.501494 7.891935 -9.395710 4.254416 -31.034457 10.547383 19.225213 -1.313429 -21.114444 0.123358 -6.391864 -1.857850 3.470587 -4.532453 4.837398 5.796497 -0.729282 -0.358219 3.557785 6.309342 -1.746896 7.154701 26.936412 -1.363888 18.771931 18.600416 -0.003882 3.278911 3.101431 4.277215 -2.965145 10.029320 9.399507 -5.630998 -2.505545 -0.542048 1.295906 -13.263805 3.796174 4.969034 -9.830512 -7.572618 -4.699125 -11.770047 -5.812091 -0.775503 2.100142 22.487530 -7.828600 26.008630 10.483967 14.282793 0.631215 13.908186 -1.243130 14.940433 4.894364 -13.285698 2.319989 -13.394229 -4.148651 -0.130727 11.928019 -10.130378 -2.697730 7.093260 -8.799241 -18.108321 11.445536 -2.366991 -2.139023 -12.480471 -1.456802 7.608737 5.104531 -7.447154 -17.884460 -15.985090 11.498341 -7.481809 -8.772562 -1.320512 -2.382000 -0.233491 -2.629673 -11.993688 -2.425409 14.514103 -10.487375 -10.532156 14.010065 -8.192485 10.729061 -2.558537 0.547015 -0.636753 4.708562 6.945390 4.759332 1.379978 -9.965114 -27.595748 -1.051854 1.078813 6.358053 -4.570472 -0.915537 5.815802 6.378708 6.166796 12.580481 -2.769392 12.798207 7.402860 0.202194 -5.871900 -15.494766 -0.998013 -9.881877 6.249266 -8.035035 -6.156349 0.925461 11.440771 1.327596 1.078748 12.215459 -8.167612 13.093449 -1.419744 1.234130 1.963308 -6.498096 5.284459 -7.263321 -11.991526 7.742845 13.863385 4.661824 4.805606 -5.775259 -0.193952 -4.676810 -10.661617 2.442380 0.360164 -0.045776 15.635673 7.461809 36.709023 -15.863712 3.112795 -2.477970 -1.489402 3.935722 -4.569494 -15.429770 5.585914 3.403429 -0.049724 20.022177 -1.131573 -9.079624 4.689966 -0.772997 2.003181 -11.336179 16.649081 -10.801744 -2.880596 -4.831073 -3.974674 -8.040329 -7.187380 -11.809629 -0.277531 18.788626 -10.470637 -17.526238 7.548716 -1.494057 4.046252 -22.058806 20.864576 -7.303482 12.903609 -8.143456 -5.759342 -0.945179 10.455995 -0.152676 2.256563 8.055805 -13.623631 9.099339 13.319564 1.682404 4.566782 5.450921 5.499994 -1.938919 -4.002516 -9.691942 10.122735 0.185596 -4.551443 -3.369354 -7.184441 12.904464 2.995970 -2.389238 -0.505166 14.268954 -6.439659 -2.093979 13.862217 -1.575363 -7.001450 4.573151 1.859860 11.172761 -7.433829 -0.812849 -8.242693 0.227886 2.440241 6.199470 -16.953441 -6.698531 -7.209786 -14.743308 -5.172290 7.964618 4.437818 6.013796 1.872449 -23.313479 -10.174825 15.708525 -5.674743 7.597242 8.429881 11.344869 13.205919 8.753829 3.363504 -5.510994 -3.897299 -1.550961 -9.218923 -4.292544 -1.864075 6.209119 -10.568930 13.387023 5.213294 1.314540 5.328122 2.507224 5.650312 -9.572192 20.436919 10.092858 -9.978246 3.365707 9.818879 18.863418 -16.992613 -9.519834 --5.606796 -11.646701 12.275267 11.008675 2.137374 7.520916 4.317473 -5.677995 7.149794 9.015193 -4.070002 7.715742 -6.465400 -1.610608 -0.819690 3.713418 -4.737308 -7.584069 0.053467 -3.600749 -2.157754 -7.665335 -4.122749 7.500017 3.036419 -0.313826 -4.902062 1.036058 -12.911027 -14.666617 1.080916 -0.825939 5.551685 -3.280997 2.503669 -21.548892 8.656395 12.119826 -1.565586 -13.595484 1.106290 -3.903391 -3.491643 2.544849 -1.815473 4.408018 3.084343 0.556467 0.063042 3.358446 4.010870 0.106489 5.728409 17.532776 -0.817780 12.155883 11.995401 -0.414054 1.713924 2.629743 3.032881 -0.896706 6.645632 7.156076 -2.607330 -3.268228 -0.312024 0.868214 -8.979465 4.089500 1.744439 -6.925578 -4.896921 -3.885621 -7.313964 -3.009177 -2.586270 2.621590 15.745450 -5.091593 16.259094 5.898561 8.832760 -0.482724 8.769733 -1.384590 10.652748 4.265686 -8.263895 0.638930 -6.605429 -4.695998 0.841844 7.935146 -7.585058 -1.236737 5.727319 -8.126900 -12.199959 7.398464 -0.168535 -2.667019 -8.516346 -1.670356 5.403783 3.070562 -3.869133 -11.670429 -9.690592 6.139492 -4.850369 -6.179593 -2.441971 -0.716144 -0.539599 1.112218 -9.073272 -0.624214 8.351135 -6.170054 -6.248719 9.070663 -3.819318 5.692306 -2.404253 1.382692 -1.106819 3.628977 2.646468 4.846908 2.772545 -3.746054 -17.436112 1.410074 1.924709 1.909362 -4.520584 -1.522797 3.100300 4.444400 2.156630 8.365379 -3.101215 9.379947 8.129768 0.461787 -5.410178 -10.108785 -1.159851 -8.676093 3.903848 -6.105252 -4.040650 1.447439 8.194250 1.001897 1.791739 8.431088 -7.037863 8.312715 -0.719155 1.019145 2.141487 -3.770822 3.429286 -5.446203 -8.550032 6.221207 8.736001 3.271869 3.295537 -3.191112 0.005210 -3.726358 -8.384088 5.369755 0.980472 0.803857 10.088023 6.002826 24.442171 -10.122806 2.121415 -0.753696 -2.311101 2.167965 -2.607486 -10.933402 4.071037 2.620716 3.104514 13.575316 -0.402206 -5.313606 2.316837 -0.164463 1.218241 -7.609854 10.193524 -7.992913 -1.044919 -2.854628 -2.817901 -4.887466 -4.507956 -5.914860 0.468862 13.293603 -6.975210 -12.142993 7.648308 -3.406547 2.853724 -15.808229 12.660260 -5.521512 7.311294 -5.797859 -3.262424 -0.769039 5.120801 -1.938857 2.692136 5.474311 -8.445475 6.224594 10.615632 1.384022 2.800535 2.322899 4.261362 -2.412902 -1.006673 -6.825452 7.607347 0.115251 -2.952367 -3.706296 -4.592536 7.325804 0.238685 -1.034899 1.414921 9.058536 -3.526008 -1.410667 9.284721 0.926705 -5.590872 5.163778 0.869679 6.742109 -5.198295 -2.204856 -3.866724 0.906295 1.319159 4.350666 -12.087598 -5.541560 -7.368699 -10.953739 -3.817481 4.096317 4.559537 2.760623 0.361164 -14.645509 -7.508962 9.993801 -3.459714 4.382482 6.488420 7.823721 8.476178 6.139158 2.078006 -2.522345 -4.794475 -0.440600 -5.689644 -3.717786 -1.992800 5.399606 -6.162977 8.281619 4.864108 0.386463 4.678312 1.531785 5.626053 -6.585766 14.041181 6.473357 -6.779727 2.658246 6.019280 11.535262 -9.250067 -6.901945 --5.411962 -138.288876 271.328081 229.415848 -18.587416 103.025306 20.085639 -180.066698 177.335848 108.366259 -36.215936 63.153105 -131.619319 51.705424 -51.110893 136.425126 -169.712615 -121.735620 -60.272182 -132.266702 -87.883665 -125.910323 31.193356 51.281013 86.969398 50.514575 -110.759328 10.877197 -138.546468 -217.899959 90.362402 -33.418600 93.323533 -12.170261 47.079156 -351.957036 203.589799 166.314316 -58.904927 -202.422548 35.710663 -68.969574 -31.908044 -8.124247 -40.482223 57.418789 -13.932817 73.523564 88.668159 72.581543 70.037783 55.478033 79.825901 312.222537 -75.876499 163.345113 102.910014 8.584697 -11.774417 59.587822 51.916931 58.441664 89.710054 100.844029 -5.869825 -126.483093 -24.329863 -35.781658 -159.008451 148.646265 -13.748140 -105.548519 -125.235688 -84.573724 -120.247872 -38.421632 -193.011544 141.306444 259.095318 -149.559084 151.724085 59.535977 72.003125 -0.989984 108.416683 -25.700112 195.988652 72.757785 -76.754228 4.336305 -60.210704 -73.729662 48.954684 -16.115848 -127.321695 -213.327246 108.531862 -192.239319 -202.880907 107.370009 69.652431 -39.493603 -132.509766 -59.646489 97.330945 50.633821 -94.659018 -176.287078 -74.469082 95.918091 2.627690 -81.081164 -5.118204 -34.356193 -17.083546 -2.124886 -200.449702 -9.170941 60.550648 -87.513693 -65.155535 161.059722 -25.741221 18.360920 -26.233763 46.985120 -52.387996 146.466280 -8.463335 139.871589 1.304442 63.851777 -146.010300 75.507609 71.320314 10.813949 -29.318016 6.305560 -35.643044 68.254524 -86.528261 93.353970 -83.357603 86.868890 158.267361 -25.065830 -131.362765 -86.599850 -44.373777 -214.884942 49.795031 -133.714488 -98.630661 46.702807 148.812234 112.164417 95.806524 148.452486 -162.402111 72.910816 -32.491466 21.408282 98.272925 -9.227849 79.984763 -88.450777 -155.145151 90.965428 86.313310 42.469602 48.382205 -57.613650 -1.022569 -109.059290 -66.472676 90.908673 69.374261 -26.441778 148.196720 118.110008 251.904703 -148.050836 47.479523 74.527747 -57.617829 38.885792 -30.420052 -211.581677 63.274135 44.560864 64.440292 193.454213 -30.928999 -58.702662 58.187829 -34.734410 52.796636 -117.775852 62.980332 -137.589666 -35.064066 -111.182323 28.197055 -73.558858 -53.292379 -76.186718 -50.982071 213.437168 -176.448872 -139.266015 230.433250 -70.850050 63.934983 -205.956201 177.485604 -92.305627 115.117792 -49.522076 -20.959510 -18.962361 20.137760 -91.129266 35.610003 90.923250 -75.349993 63.862688 219.693140 42.460709 19.113666 15.462892 138.256182 -60.575165 73.053627 -115.085330 199.478622 -24.962158 -45.365696 -23.272836 -79.378726 24.082464 -85.686308 22.798694 111.561726 106.216153 26.397324 49.348318 104.043502 100.857712 -101.409281 148.186644 -2.519053 52.116420 -99.253662 -18.303875 22.827071 43.512628 -54.248594 87.988671 -210.797485 -176.256768 -225.133064 -144.988565 -40.105857 -2.825444 63.370065 -29.139355 -29.972286 -160.016776 -155.155805 190.778680 -76.003208 64.908868 112.229225 101.923308 139.328046 193.420112 -49.484576 5.903050 -47.536607 -13.028807 -40.294205 -64.855315 -88.147644 155.717851 -80.850529 71.195750 168.151889 -28.396123 85.059314 -5.367881 107.193795 -116.598423 216.252259 93.931222 -63.666468 106.790875 140.425374 208.585249 -13.445006 -116.968936 --30.142798 -234.474613 409.684736 341.512351 6.937879 170.959639 77.471534 -258.761805 271.078324 159.805597 -61.994853 115.730714 -221.138530 63.146455 -120.826410 178.123620 -233.606577 -212.025199 -78.990879 -183.816115 -110.943628 -210.354680 43.610772 101.031420 135.638705 52.241421 -169.864922 -1.073007 -294.248395 -328.242258 147.247816 -46.850820 144.314185 -54.979134 49.038219 -538.588052 301.804641 284.495231 -84.148493 -326.840445 68.015062 -120.433743 -64.480345 -7.463694 -38.557699 82.473192 -4.595497 110.692569 125.506893 105.199020 104.413473 79.502333 102.668062 485.060386 -130.661222 269.606013 185.434050 29.070200 -5.182622 99.785608 72.306626 74.904215 140.384546 172.995787 -34.272216 -172.053769 -26.292485 -49.095135 -257.997194 216.675624 -15.138641 -145.192840 -184.824569 -97.294421 -212.864266 -49.580411 -223.129853 188.343850 420.170414 -212.732109 281.644447 85.508475 140.610539 -16.037288 169.330973 -34.583280 275.499549 111.145491 -140.400163 -24.339418 -166.875995 -73.879435 48.010192 16.918671 -193.045382 -294.472684 178.295548 -295.421300 -323.962953 151.207993 80.663929 -69.451252 -199.064749 -59.183718 143.508494 87.736214 -147.936602 -293.001960 -138.182665 158.587375 -17.383355 -128.243386 9.631677 -59.925436 -31.719152 -34.996375 -298.230526 -24.376585 105.392883 -155.032338 -125.255923 252.076047 -71.766235 58.825204 -37.543348 73.565663 -73.105922 189.918458 -0.888060 189.325459 31.157517 55.339515 -272.167265 79.159822 103.232413 84.337962 -77.393626 22.081800 -40.541401 106.240564 -102.283610 131.421557 -128.454886 130.166882 215.601328 -64.650860 -188.161084 -143.277564 -32.000008 -315.586181 71.730283 -198.363827 -157.872197 44.194300 233.562143 147.737028 136.344259 272.872831 -242.735179 138.978351 -25.546134 19.193789 138.776064 -41.010445 122.258731 -138.958959 -259.666367 138.925437 136.475972 66.178206 61.322192 -73.780466 -9.411016 -179.821857 -121.326957 119.628189 93.429309 -45.515113 240.568233 180.259419 366.141270 -268.214395 72.597364 102.772424 -90.725136 63.011899 -52.062170 -336.694550 110.359260 72.014853 95.305392 315.313836 -35.990692 -119.883386 104.779345 -46.648372 82.761364 -194.090018 119.301868 -222.298802 -72.569257 -172.242863 24.230827 -99.907212 -98.019133 -133.393221 -76.127790 330.097928 -243.117847 -248.583991 323.332855 -80.735982 95.094667 -360.804088 268.061920 -147.531325 183.192507 -63.811884 -16.019775 -22.114221 68.648606 -135.621324 45.563679 140.492843 -150.104061 150.855932 346.606798 64.673721 40.875490 31.726719 205.850992 -90.450848 80.046316 -186.065188 282.199408 -33.845180 -118.589068 -26.699630 -128.507558 69.614815 -118.027351 31.577458 170.669957 193.957405 28.284562 83.802912 181.373781 152.336834 -150.775484 208.647705 -2.671153 107.359408 -144.015751 -31.489619 9.912606 54.280202 -63.471662 153.633175 -332.958255 -294.736935 -302.078495 -289.759530 -31.966443 -34.318885 96.007626 -27.470869 -30.004122 -308.066089 -237.715920 250.749872 -116.408552 146.728262 188.065234 167.970305 210.802094 280.196135 -88.981626 14.117723 -55.979010 15.536610 -84.235943 -115.468666 -123.422443 217.235592 -142.764246 128.650916 248.534293 -36.255410 128.879138 -19.938131 160.482905 -188.342233 365.068720 158.185638 -116.464649 165.443554 186.642949 352.919228 -27.097916 -179.946217 --8.825938 -41.552756 65.301129 57.421960 0.055815 27.724598 11.955254 -39.367481 44.968879 27.293383 -10.618664 17.765261 -39.777906 10.491169 -11.037910 29.977859 -39.918524 -37.570347 -9.745157 -27.949786 -20.657279 -35.325267 7.037586 17.189012 21.179808 12.451713 -26.847395 -2.454565 -47.760175 -44.840609 25.873851 -10.626470 27.236860 8.803065 9.100660 -89.370544 45.573029 42.931581 -13.678549 -52.998564 8.280968 -23.489618 -4.889799 -5.701215 -5.731992 14.082370 2.092403 16.737553 21.395980 14.858577 19.001555 6.300338 15.018952 76.529502 -20.574135 43.560326 28.792914 1.017851 -1.728659 12.611813 14.595709 10.078266 29.376129 30.843441 -10.452684 -28.079642 -6.416405 -13.973688 -45.279530 36.004876 0.811756 -17.923248 -32.485441 -17.686077 -28.522066 -12.600603 -41.311713 32.748022 71.445217 -37.013778 48.146849 18.784872 26.124292 -4.910332 31.651362 -4.837295 50.831729 17.615508 -25.681822 0.060254 -28.158535 -16.240168 6.358392 6.661792 -28.408440 -38.037148 26.568988 -42.355625 -55.180550 26.342160 11.458222 -5.172777 -37.496767 -5.928156 25.736942 16.055766 -25.628880 -49.948413 -23.913694 21.306367 -4.736847 -22.499688 -3.067124 -8.286556 -9.202523 -8.574330 -50.321091 -8.528550 16.657697 -30.196013 -18.864974 43.054857 -13.858802 11.322249 -6.448056 9.136050 -11.170989 36.401335 2.019103 29.326951 9.946931 3.004717 -47.744679 11.864244 17.666552 21.208040 -11.777438 -0.069675 -5.515515 15.845092 -18.306340 18.396738 -14.506943 26.317587 39.651989 -11.198379 -33.393289 -25.252466 -4.268300 -54.883410 13.318582 -36.674564 -15.238904 8.848419 40.326823 27.251232 23.507963 49.033288 -39.785126 27.763870 -6.594099 4.333487 24.678733 2.298899 22.447506 -24.365042 -40.664928 23.665793 24.980840 9.288143 13.794015 -16.155124 -2.204652 -31.251388 -25.341824 21.308034 14.549307 -5.958888 41.095644 26.712953 64.151348 -46.670315 15.725784 16.939348 -8.792199 10.321474 -6.394169 -55.959479 21.764678 8.640034 9.437444 46.786761 -6.691625 -22.483394 13.944114 -7.691172 13.780137 -34.145324 20.086447 -36.051955 -8.195130 -31.606369 7.090987 -18.823730 -19.724860 -17.935060 -6.420978 57.006200 -35.391514 -39.881542 51.322695 -12.995218 19.115214 -60.246903 44.738869 -26.872265 31.432734 -19.036865 -9.274970 -5.238904 11.451037 -17.194451 6.968071 25.437322 -22.652093 20.530705 55.004139 11.573422 8.733444 9.047028 34.101320 -8.633608 12.919709 -26.471337 48.148261 -2.205779 -14.120395 -3.315900 -23.180531 14.278124 -14.130471 2.053472 32.699465 37.448907 4.012714 16.258127 28.479197 22.811989 -27.479505 30.349037 1.444833 23.512403 -24.252234 -4.030470 -1.057618 8.925545 -12.747759 23.749994 -54.188207 -51.052279 -41.282639 -42.420953 -11.766775 2.346920 16.215946 -0.891046 -1.692177 -47.899626 -35.449300 35.789795 -21.132166 28.410258 26.082423 27.876886 37.748119 46.892346 -14.683763 -6.486905 -7.513866 0.621532 -15.493529 -14.156014 -24.193518 34.684681 -25.365167 24.792624 40.127934 -7.068603 17.641128 -2.631523 38.197430 -29.994382 62.426347 27.702414 -21.502253 30.397468 32.182989 58.122369 -4.379405 -31.276648 --24.309705 -45.334482 49.748771 44.715796 3.935863 32.668101 12.029996 -25.693097 18.840475 36.242382 -12.247490 28.822367 -24.862513 -6.571969 -5.525235 12.545334 -18.615138 -26.783868 -4.079044 -18.865273 -13.807727 -22.491205 -22.231782 33.989914 10.219476 -1.476284 -18.982813 4.036931 -48.007989 -57.770800 -2.828954 -0.481079 21.935241 -8.955406 13.049034 -80.183094 33.470880 52.089752 -6.393561 -46.629028 2.351143 -13.779609 -15.019651 14.090536 -18.077878 13.183551 7.711210 -7.245446 -1.921971 11.031315 19.238260 3.752089 26.247289 69.641730 7.881684 48.183840 43.967918 -1.546585 8.220146 11.296141 12.816496 -2.069487 25.402144 18.155939 -5.730199 -11.724611 -1.032769 3.829580 -28.106920 15.390742 3.738641 -35.627252 -10.060749 -20.811868 -32.902892 -15.692606 -11.889478 9.670393 58.318545 -24.106429 55.946402 23.478008 26.366797 0.463700 40.200418 -5.529296 46.915768 17.224387 -24.463603 10.210794 -9.671680 -14.040624 6.216256 34.158553 -36.300000 -12.975339 27.359816 -43.528579 -51.206132 35.586647 0.562696 -12.223889 -34.625001 -13.847411 17.367548 8.751702 -22.293404 -41.422756 -34.191479 29.851761 -15.700215 -25.551436 -8.766236 0.103084 1.757026 12.818080 -35.414158 0.936961 34.170044 -23.122203 -24.325053 39.854825 -0.924742 24.180753 -10.095947 5.173195 -5.497863 15.728241 4.685183 19.533899 -3.734904 -3.157084 -54.860710 -2.603962 5.772461 -5.240445 -15.963509 -10.612801 15.689555 20.852139 9.114210 40.900861 -17.692402 39.445635 32.206408 6.988601 -21.040423 -37.615750 -9.439318 -37.549490 4.519423 -24.956141 -27.412775 8.727310 32.920591 6.570943 2.436267 26.803702 -18.465231 29.053041 -2.514363 1.498589 6.814940 -26.965419 12.889256 -22.357189 -37.301293 24.064645 33.613663 18.557175 13.863059 -12.733300 -2.436610 -10.375929 -33.506993 19.386006 5.850663 0.631058 42.111491 28.383143 94.321511 -35.564284 8.966541 -7.339382 -13.311035 10.660520 -14.025704 -43.294944 5.114969 12.892381 4.905549 57.695263 -3.713281 -17.499341 10.781856 -3.325296 5.598543 -31.898326 39.887771 -31.150628 0.447418 -13.073612 -12.528559 -20.616261 -15.054377 -27.820506 -11.722374 51.401596 -47.741997 -42.358173 34.337748 -2.348311 10.370814 -57.713172 43.248250 -19.353798 36.024122 -18.512032 -16.964454 -2.610934 18.238521 -7.819546 16.927418 22.226619 -35.618164 20.600429 40.541148 3.247517 13.529068 7.634114 19.018696 -12.794612 -5.215236 -32.453911 36.734625 1.971821 -14.920613 -16.798285 -19.894884 21.410908 -0.685479 -0.242066 -3.724178 27.867884 -14.745498 -13.237640 36.794888 0.199996 -21.059852 21.240077 4.389508 23.756966 -23.414082 -7.085352 -14.862356 6.659554 7.624783 14.056890 -48.704260 -17.033329 -45.358347 -34.305823 -16.090216 21.171631 18.084703 11.176701 -1.633060 -48.056167 -34.118379 52.215979 -16.922402 16.290738 28.705057 35.142373 37.058517 26.535180 13.972018 -6.212036 -20.361509 -2.395704 -20.928544 -13.210074 -6.528373 20.577085 -19.011970 35.077881 17.729264 6.169906 24.847095 13.315930 16.191503 -27.932990 50.605377 25.217809 -27.877321 9.923015 33.480970 39.206951 -39.705158 -27.538200 -0.118684 -1.163661 0.239888 0.763749 0.735246 -0.366768 0.290285 0.126523 0.875337 -1.139233 -0.057546 0.435576 -0.509240 0.474718 -0.841488 -0.555648 -0.706387 -1.584115 0.188138 0.413424 -1.271446 0.051089 -0.662812 -0.052467 -0.711602 1.320189 -0.733203 0.147035 -1.744219 0.858166 1.017469 -0.769036 0.321880 0.636926 -0.381336 -1.319983 0.158592 1.060937 -0.258189 -0.699260 -0.385457 -1.432371 0.177365 -1.605407 -0.744071 -0.147159 0.665523 0.462447 -0.188050 0.067712 -0.145962 0.619468 -0.028211 1.150884 -0.109710 0.603815 1.037003 0.673158 -0.208811 0.111640 0.477684 0.503716 1.052694 -0.287211 -0.926701 0.590552 0.019937 -1.508356 -1.801269 0.434416 0.180018 -0.314535 0.236653 0.359210 -1.123075 -0.640257 0.081913 -0.052477 0.472562 -1.944461 1.201566 0.252041 0.847112 0.158455 0.399777 -0.085629 1.313184 0.568122 -0.218891 0.392466 -0.867282 -0.066628 0.277034 -0.945191 -0.677816 -0.939504 -0.088275 -1.776148 -0.572531 0.357900 -0.215438 1.016818 0.066607 0.005917 0.673180 0.162042 -0.831946 0.263203 0.159855 0.191217 0.025470 0.108570 0.214788 0.469799 0.104970 -1.462289 -1.283436 -0.915275 0.954860 -0.590791 0.646206 1.568430 -0.836105 0.796889 -0.506875 -1.181022 0.475561 1.366366 0.290648 0.485461 -0.673914 -0.474459 -0.202863 -0.197356 -0.802307 1.771672 -0.339317 0.081887 0.832104 0.514624 -0.480309 -0.760425 -0.417018 -0.592137 0.291179 -0.192811 -1.053757 -0.572898 -0.510031 -1.457511 -0.299229 -0.900004 -0.048538 1.292578 1.476757 1.429161 0.801831 1.824068 -0.201313 -0.553443 0.528868 -0.183479 0.873451 0.341302 0.349731 -0.291699 -0.994029 1.157310 -0.510935 -0.649654 0.113197 -1.535153 0.020781 -0.772542 -0.422164 -0.083853 0.203614 0.093548 0.243622 0.077392 -0.838485 -1.263458 0.888224 -0.841653 -0.615419 0.907902 -0.172298 -0.089178 0.095539 0.032968 -0.358701 -0.032996 -0.328347 -0.453833 0.129633 0.289057 -0.214317 -0.298631 -0.655441 0.440660 -0.543733 -0.078694 1.081494 -0.347949 0.505490 -0.698851 -1.551200 1.675982 -0.957935 -0.514286 1.074229 0.479354 1.041917 -0.578239 -0.147647 -0.026517 1.667624 -0.265258 -0.236366 0.661486 -0.951458 0.491165 -0.137795 0.724959 0.130827 -1.000806 -0.034033 0.940957 0.539930 1.330001 0.778230 0.627308 0.438369 0.421439 0.341622 0.118664 -0.146892 0.769214 -0.875315 0.290252 0.403795 0.495569 1.920837 0.910365 1.451113 0.993290 0.610211 -0.026537 -1.044642 -0.922035 -0.068321 -0.099755 -0.553324 0.600261 0.102526 0.417811 -0.474516 0.193871 0.060597 -1.852685 -1.678977 -0.962168 -0.143569 -0.480661 0.296014 -0.548545 0.721004 -0.521390 -0.211577 -0.099144 -0.621075 1.839496 0.425981 0.797757 1.208180 0.213112 -0.815609 -0.220090 0.285222 -0.260475 0.316513 1.274052 -0.725603 0.481256 -0.241553 1.002819 0.736900 -0.844462 -0.383695 -0.404914 1.515657 -0.361709 0.331156 -0.020946 -0.712999 -0.561789 0.353461 0.431864 0.903927 -1.257483 --1.056148 -2.610066 2.244855 2.049362 0.020786 1.572432 0.726002 -0.664106 1.639575 0.232525 -0.811325 1.514521 -1.406409 -0.641322 0.587095 0.005567 -1.391231 -1.882755 0.303988 -0.269105 -0.024163 -1.720006 -0.811044 1.825785 0.295351 0.991585 -0.675621 0.046293 -3.505562 -1.179266 1.093960 -0.336963 1.148622 1.191118 1.329012 -4.014223 1.258025 1.786201 -0.166755 -3.877050 0.020566 -1.263360 -0.015586 -0.566650 0.263831 0.802781 0.805251 0.684765 0.037502 0.025536 -0.731038 -0.608618 -0.027034 2.435206 0.021687 1.982960 2.836579 -0.160205 0.817665 0.104197 0.574690 -0.327926 1.277389 1.598184 -1.455784 -0.335020 0.024554 -0.868603 -2.017354 0.935787 0.409762 -0.732429 -1.242367 -0.553562 -1.826899 -0.213692 -1.099641 1.427783 2.886430 -1.214209 3.417570 1.372013 2.317138 -0.028837 1.799142 0.036372 1.927160 0.698670 -1.732205 -0.142661 -3.666466 -1.667070 -0.257521 -0.213766 -1.000825 1.381261 0.833399 -2.023550 -2.163637 1.134644 -0.212831 -0.111780 -2.002892 0.593907 1.314750 1.258047 -0.487794 -1.988473 -1.760476 1.544217 -1.362978 -0.715526 0.137388 0.393910 -0.714799 -1.343168 -1.742557 -0.156737 1.858148 -1.084188 -0.787589 1.934141 -1.863049 0.878852 -0.348378 -0.301203 -0.327905 1.549648 0.758737 -0.027497 1.629388 -2.082624 -3.345879 0.574652 -0.025261 2.180308 -0.803974 -0.213399 0.921492 0.646518 0.196947 0.133981 -0.416487 0.985682 0.432256 -0.661449 -1.084480 -2.518803 -0.219771 -1.769613 0.547314 -1.180448 0.401375 1.664166 1.582242 1.397568 0.518594 2.382149 -2.223169 1.497062 -0.298108 0.533087 0.239824 0.902616 0.692385 -0.979400 -1.408713 1.048696 1.148124 0.554004 0.711210 -0.945030 0.055948 -1.179953 -1.916138 1.101731 0.582062 0.709601 2.227702 1.109155 1.049486 -2.971953 -0.045748 -0.121459 -0.142122 0.032652 -0.259166 -1.833496 1.129848 0.322995 0.550336 1.806137 -0.289754 -1.000748 0.286508 0.198810 0.380535 -1.151776 1.309468 -1.231510 -0.648071 -0.914196 -0.120062 -1.295114 -1.192375 -1.332630 -0.253811 2.665190 -0.318214 -3.080812 1.195647 -1.083686 1.542750 -3.128918 0.862975 -1.148035 1.594254 -0.437306 -0.231285 -0.857192 0.067645 -0.237638 -0.302719 1.000076 -2.015416 0.850835 1.520179 0.602780 0.302778 0.863745 0.736273 -0.144625 -0.086080 -1.012636 0.829763 -0.327596 -0.608986 0.293395 -0.882129 1.678803 0.394603 -0.463408 1.199323 2.030450 0.509689 1.003799 2.004206 -0.178582 -1.075934 -0.034248 0.053346 1.490147 -0.709814 -0.357957 -0.974264 0.378921 0.245163 0.368235 -2.321695 -2.306601 -1.338675 -2.837783 -0.626201 -0.687082 0.558827 0.642648 0.375047 -3.197745 -1.117588 0.107729 -0.585411 1.576404 0.729834 0.901728 2.199584 1.381173 -1.022073 -1.008097 0.564341 0.298195 -1.349750 -0.098493 -1.487749 1.167348 -1.549924 1.657746 1.709733 -0.173550 0.447048 -0.288864 1.980973 -1.191121 2.877535 1.419907 -1.965609 0.239979 0.837540 2.128417 -0.714997 -1.451181 --5.036651 -9.458546 8.810447 7.958378 1.933067 6.063104 3.319057 -3.149124 5.862211 5.498218 -3.305884 5.254064 -6.374898 -1.447896 -0.772908 1.463133 -3.804784 -7.028885 1.086962 -1.506829 -1.137909 -6.585760 -2.989862 6.592463 1.576657 1.404793 -3.222976 0.492429 -11.829971 -7.791585 2.012991 -1.046448 4.638533 0.654462 1.936015 -14.916630 5.671075 9.104816 -0.724370 -11.099015 0.561591 -4.391430 -1.449930 0.981387 -0.748164 3.023207 3.056060 1.544487 -0.041709 1.247120 1.478295 -1.287829 2.516346 11.917919 -0.443631 8.967286 8.609876 0.037799 1.509537 1.432176 2.318901 -1.187147 5.935153 5.963779 -4.260676 -1.565511 0.003622 -0.761231 -7.807496 3.299386 1.783057 -3.140678 -3.481569 -2.109009 -5.157891 -2.163085 -0.750981 2.594514 12.381625 -3.937430 12.839605 4.822339 7.673432 -0.689496 7.257441 -0.730926 8.119389 2.919908 -6.739590 -0.537069 -8.436268 -2.840040 -0.433470 4.683273 -4.802716 -0.141241 3.640375 -6.657246 -9.628120 4.943142 -1.618737 -1.222115 -6.392950 0.781386 5.166755 3.486127 -3.168350 -9.165503 -6.786358 4.713428 -4.918268 -4.576555 -1.135149 -0.009311 -1.487304 -1.446997 -6.775376 -1.606175 6.136570 -5.810166 -3.811919 7.637968 -3.586139 5.404850 -1.327818 0.113694 -0.333351 3.345322 3.110835 1.453085 2.883167 -4.638926 -11.267585 1.164292 0.994837 4.039068 -3.977773 -1.080034 2.986992 3.035040 1.598868 3.526306 -2.786530 6.194785 5.096268 -1.174895 -3.701879 -7.949744 -0.390730 -7.026438 1.922692 -5.033086 -2.502053 1.165857 6.719163 1.834344 1.521382 8.172495 -5.670011 6.652391 -0.314662 1.049791 1.235523 -0.624121 2.945277 -4.148696 -6.749809 4.254702 6.356801 2.056563 1.980951 -3.114032 -0.859428 -3.536241 -6.996124 3.854734 1.113452 1.559816 8.166545 3.999361 14.570427 -9.088653 1.748912 -0.536368 -1.099029 1.424646 -1.714001 -8.872271 3.652671 1.544927 1.546820 9.484827 -0.706085 -4.957534 1.860029 0.369031 1.268180 -6.554927 6.992132 -6.474948 -1.066305 -3.352707 -1.224896 -3.809143 -4.636006 -5.267714 -0.071972 10.132247 -4.029101 -9.828504 4.795059 -1.819305 3.416824 -12.301086 6.449249 -4.669393 6.310418 -3.612293 -2.359110 -0.796296 2.931544 -0.303736 0.740413 4.426087 -6.007283 5.648861 7.212419 1.529509 2.290669 3.100414 3.132576 -0.671465 -1.987978 -5.190804 4.997343 -0.046773 -2.503765 -1.155794 -4.112363 6.538228 1.482564 -1.332652 2.392284 8.332387 -1.993678 1.040510 6.646020 -0.005446 -4.212269 2.141889 0.426365 6.425196 -3.338579 -1.231785 -4.458211 0.537744 0.796929 3.714251 -9.400497 -6.783640 -3.929306 -9.819885 -2.834784 1.502482 2.876743 3.290302 1.662961 -11.905098 -5.030479 5.548052 -2.869685 7.629243 4.255444 5.491037 6.963697 5.146785 -0.261364 -2.984462 -0.664125 0.395198 -5.644458 -2.127082 -2.650263 3.713366 -4.746924 7.300205 4.235647 -0.257981 2.649373 -0.830454 5.148055 -5.252008 11.679613 5.857201 -6.163539 1.979876 2.892642 10.042865 -5.484087 -5.657724 --12.963812 -68.537198 110.438821 94.268512 2.507675 48.646227 19.509744 -64.794400 77.446558 49.356695 -24.353796 21.707173 -63.116871 6.189387 -6.220701 47.770465 -69.390463 -62.250006 -10.182037 -40.555966 -27.738058 -63.584627 11.889486 27.971051 32.801645 29.418636 -41.416699 2.451635 -67.549582 -85.322635 47.829089 -17.974444 44.839581 28.267657 15.689067 -148.506086 85.951247 69.809689 -20.922693 -87.792100 9.584812 -29.894358 -13.607679 -5.777112 -10.016104 31.114195 7.784592 36.096803 30.449378 28.763001 27.687862 -4.011108 29.203096 118.301008 -24.965091 73.515975 51.216984 1.339473 2.403042 25.907793 24.916562 15.172667 48.768093 59.621831 -16.470254 -36.670979 -3.117966 -24.465570 -80.735188 61.983562 -2.283656 -33.979077 -50.664237 -28.946801 -42.168182 -13.547753 -65.042024 57.422191 119.332028 -58.467958 86.673090 34.909335 50.042038 -10.686494 45.115755 -10.287329 82.127323 31.855565 -47.735222 -2.615497 -52.352044 -47.027354 12.965252 -0.532141 -47.633193 -52.769860 39.711750 -73.026743 -88.511630 43.242555 16.647066 -8.415996 -63.689684 -9.160332 50.611583 23.707714 -34.401923 -80.336981 -38.476598 36.116472 -24.561342 -32.602652 -11.388687 -2.476364 -19.734102 -5.003085 -82.851059 -15.880305 29.708420 -50.153861 -25.086622 70.514785 -26.413971 19.942862 -12.918066 9.860224 -16.388105 58.662285 6.832800 47.109987 25.813859 3.791209 -72.391986 25.943435 29.691131 29.177521 -13.253164 -3.849736 -1.296027 28.704516 -31.760435 33.309000 -28.921558 37.991691 67.578571 -15.827803 -57.204201 -44.424900 -15.590370 -95.806479 26.839123 -60.581649 -23.370603 25.686234 69.934555 45.041500 38.030669 79.067213 -80.166822 43.148952 -18.237102 13.237066 29.133940 8.330371 34.302446 -39.616640 -63.701900 40.391431 44.778303 12.846896 26.185295 -36.096605 -3.524611 -51.875515 -47.921680 41.722877 18.832828 -5.702536 58.680397 42.948076 105.553525 -73.397026 21.810730 29.672710 -8.803758 13.499653 -5.761459 -93.471153 39.246301 10.322156 26.918736 78.156388 -9.479417 -34.036725 17.159940 -12.030272 16.081607 -55.499020 33.635918 -59.398576 -9.912497 -46.703632 11.498646 -34.442248 -35.602898 -28.014501 -6.803605 92.998235 -48.843603 -69.676027 87.554909 -30.764260 32.442627 -94.730519 70.321323 -45.925158 52.233153 -26.793668 -19.654758 -11.203783 4.859454 -20.496013 5.186533 37.072006 -32.681571 36.379443 88.669978 19.909797 12.185730 17.331749 50.773416 -16.499972 17.386111 -43.589654 70.418151 -6.243487 -19.743039 -8.259026 -39.511840 29.453395 -24.066163 -4.874247 53.447892 65.060151 2.960772 29.792575 43.196784 31.567357 -48.121124 47.412975 9.553812 40.895972 -38.323662 -10.317995 -2.276663 12.733920 -21.717134 38.820108 -89.382787 -82.977514 -74.123849 -74.529708 -31.999736 -0.359641 33.518797 -0.956824 1.826510 -76.298494 -55.877504 62.919034 -33.203598 43.403639 42.398991 46.714253 62.821125 76.911426 -24.647187 -14.392457 -10.987564 0.796116 -34.387132 -22.078156 -43.500078 61.505333 -38.895211 43.348755 65.220814 -11.738913 24.879473 -12.488333 63.036326 -50.791989 98.896492 47.331584 -35.343575 41.720738 41.010289 90.545952 -9.054673 -53.438239 --19.782705 -29.749548 26.609579 23.476507 8.928180 21.702445 9.284819 -8.308652 14.238788 22.852559 -7.172112 19.091292 -16.904368 -7.422834 -1.505635 3.639133 -5.530813 -20.759821 3.473444 -6.332502 -4.086054 -16.714494 -15.099404 22.790964 3.724278 -5.447871 -10.880513 1.551264 -38.561866 -29.401337 -2.694836 -1.640786 13.429011 -12.919257 6.591313 -42.551784 17.617747 30.918017 -1.157063 -33.181675 0.806047 -10.630146 -3.699203 9.824559 -5.928271 9.358771 9.360319 -4.622773 -1.889615 5.281336 7.994516 -0.137515 10.681533 38.491319 3.180361 28.719296 27.169089 0.400678 3.990950 5.494413 7.139755 -5.311653 16.447899 12.445496 -10.224816 -3.798994 0.668662 4.084716 -18.672771 6.395686 5.660943 -16.419379 -4.623772 -6.274619 -19.688371 -9.561479 11.208075 2.687496 34.293164 -10.942203 37.333421 13.981606 22.980227 1.986222 24.782760 -2.812683 25.639495 9.014558 -19.353650 0.545954 -19.596371 -3.288099 -2.034363 21.027532 -17.730820 -0.318507 12.360277 -21.021886 -30.961875 19.310559 -4.791510 -3.782418 -23.058885 -4.000031 15.415239 9.630709 -11.365643 -26.128215 -22.151853 18.752069 -15.300178 -15.309523 -2.314988 -4.995382 -0.230391 1.327583 -17.811245 -3.145259 21.895246 -16.423634 -17.391477 24.730989 -8.311862 18.647389 -4.827181 2.990042 -1.485548 4.310897 9.356834 7.192792 1.713999 -14.562407 -36.092219 -3.064082 -1.555301 3.157364 -12.469987 -4.726540 9.993615 10.761342 9.417941 20.342913 -10.023980 20.634007 15.697685 0.573707 -8.821041 -24.126135 -1.030655 -18.443036 3.734583 -13.511165 -13.036389 2.442635 19.467172 1.812744 0.851433 21.492546 -11.212616 20.996253 -0.139017 1.490407 2.521135 -12.014724 6.681843 -13.500767 -21.754267 12.118854 22.516279 8.646956 6.160067 -9.327611 -1.279857 -6.334275 -19.965842 7.978375 1.680731 3.443188 26.769640 13.868756 51.344446 -26.618078 2.397051 -5.865698 -6.371218 6.286063 -9.707268 -26.065961 4.078288 7.911905 3.567272 34.497915 -2.485245 -15.759997 7.607650 1.958769 4.049068 -19.696100 25.816324 -20.547869 -0.973746 -6.127003 -10.170100 -15.307453 -10.747673 -19.760927 -4.624194 30.448696 -17.172078 -31.676999 13.488298 -1.244201 7.055294 -39.495975 19.358179 -12.953947 20.588262 -9.093984 -6.526415 -3.340319 13.484019 -1.400756 6.900930 13.722984 -23.739277 18.975276 20.685698 2.581504 8.367867 7.622368 8.201871 -3.553376 -8.306589 -18.260517 16.737131 -0.785785 -9.891220 -7.331835 -12.342829 19.302100 5.665813 -3.921723 -5.767836 20.103068 -12.043141 -5.327595 23.553815 -3.642891 -12.201395 8.573064 1.514569 19.708649 -12.113371 -3.480008 -15.487092 2.048855 7.134577 9.571081 -29.834413 -11.465648 -15.330021 -29.243266 -7.373664 11.741796 6.451104 10.661435 3.525792 -35.191044 -16.859191 22.989555 -7.419894 20.830722 14.857016 19.512943 22.721590 13.502930 4.662895 -8.529756 -8.426869 -4.224597 -17.889692 -9.728452 -2.361296 9.483242 -12.085947 22.960942 8.820337 3.167817 10.649095 2.211622 3.637734 -16.512403 32.607229 18.939743 -17.321058 3.228037 10.980136 29.929717 -25.849062 -17.326977 --8.581517 -20.698190 22.445607 20.761939 5.083235 14.023552 5.933397 -9.777930 13.335898 15.588780 -7.466831 12.356545 -13.894107 -3.407531 0.268840 6.845689 -9.041930 -15.566688 2.197382 -4.552804 -2.822117 -13.320148 -5.188347 13.471767 5.600134 4.019748 -7.956672 1.087964 -24.750836 -23.027831 3.083125 -2.598966 11.078265 3.943695 5.104243 -27.621484 15.660822 21.385201 -2.313440 -24.592403 1.150920 -7.578507 -4.815479 2.273344 0.175142 9.533906 6.453291 2.649719 0.774116 6.212505 5.076920 -2.315996 9.292302 21.136088 0.422113 20.342935 18.144398 -0.539545 4.514033 3.530692 6.031367 -1.450317 13.608165 12.552818 -7.774092 -5.785687 -0.966394 -0.380509 -16.504493 8.150426 4.189406 -8.928141 -8.459591 -5.631819 -9.491430 -3.805380 -3.726043 5.927514 27.039365 -8.211765 26.900258 12.009577 16.005620 -3.165643 15.690575 -2.364001 18.738343 8.052319 -14.105197 -1.102629 -17.387211 -10.037348 0.253818 10.063238 -12.427596 1.292737 8.899415 -15.112068 -22.049833 11.897075 -0.874701 -3.287469 -15.771726 1.102318 11.700539 7.439148 -5.775440 -18.801738 -12.161475 10.207201 -11.119947 -11.249526 -4.900154 -0.593116 -3.652172 2.146576 -16.073438 -3.463177 13.597906 -12.796328 -8.391195 16.167112 -5.526943 10.233885 -4.635469 0.765690 -1.175002 6.253703 6.053398 7.296047 8.115179 -8.187426 -23.383447 4.932674 4.300448 3.570313 -8.247884 -1.929211 5.232902 7.574704 2.543316 11.606719 -7.283805 14.591342 13.322802 -2.083715 -10.018604 -17.111291 -1.987293 -14.889197 5.754527 -11.581635 -5.255129 1.616503 15.734536 2.183777 4.530316 16.601887 -14.447881 13.563729 -1.461941 4.721256 3.630928 -1.690328 6.399829 -9.804539 -14.891299 11.179479 16.099648 3.206039 5.843568 -7.085823 0.103788 -7.944595 -15.470376 9.688603 0.540280 1.437504 18.638880 9.216311 32.839906 -16.261330 2.754152 0.063721 -1.873829 3.141548 -3.302749 -20.796645 8.251940 2.629542 7.292981 23.364704 -1.324308 -10.640183 4.276319 0.991834 1.877743 -13.837035 16.530088 -15.226626 -1.230765 -6.122704 -1.935752 -9.041178 -10.366711 -10.541410 0.937370 23.337030 -7.240927 -21.248087 12.282119 -6.569576 5.589879 -27.007389 13.134886 -11.088227 11.120987 -6.724813 -5.808145 -2.548939 4.210510 -2.899086 0.028264 10.500816 -12.988859 12.628038 16.012002 3.129593 3.135717 6.053730 6.445413 -2.960133 -2.145440 -11.388004 12.919729 -0.133329 -3.471908 -4.665994 -9.086231 12.556021 0.385162 -5.447776 3.727111 16.012131 -4.927992 1.034764 12.019974 1.732178 -11.147293 8.108277 3.082554 13.008263 -8.596786 -3.305875 -7.698947 -0.380464 0.984750 10.034084 -21.633497 -13.485222 -8.043976 -20.416972 -7.852571 4.891747 8.774339 5.802200 2.082724 -23.239641 -13.010753 14.530619 -5.523555 13.122563 10.467610 12.814057 15.300885 11.260651 0.199176 -6.259889 -6.066037 -0.662853 -11.637899 -6.875930 -4.418045 9.962316 -7.921444 15.029524 10.528946 -0.674996 6.233134 -4.845715 12.023108 -11.754888 24.629694 12.827434 -12.750807 4.547746 6.737480 22.043648 -14.855505 -13.175486 --7.893118 -14.645442 29.256419 24.177237 2.605983 11.969806 1.287893 -19.468125 21.201334 12.681048 -3.519964 8.192632 -13.419016 3.467685 0.264814 14.041162 -17.235744 -16.295153 -4.119842 -13.959355 -8.483071 -15.563362 2.332758 5.801276 7.325298 2.261944 -15.641732 4.161205 -17.882801 -28.922755 10.558963 -4.690922 12.382746 -3.478471 3.536435 -48.547681 24.932592 18.617450 -5.609350 -22.426292 3.138198 -9.795732 -2.153397 -1.364861 -4.798599 8.058583 0.618801 -0.696571 9.696727 6.121124 9.493242 5.599459 3.573631 31.679641 -10.042852 17.692899 10.130150 -2.320593 -4.301528 5.886684 5.535346 4.972941 15.066368 14.843069 -6.891252 -13.357631 1.075064 -2.927248 -22.912620 16.010632 -0.092180 -11.971801 -10.882912 -6.714320 -14.441338 -5.681789 2.346622 12.096917 29.378223 -11.916367 19.817163 5.421977 11.979027 0.124085 14.574706 -3.382110 26.779856 7.362943 -12.900927 -2.621001 -10.639551 -10.485692 3.213153 9.667147 -9.854265 -7.895063 8.016018 -19.796452 -21.520355 10.337022 5.354543 -0.856879 -29.363339 -7.715905 16.245096 7.476988 -6.386725 -21.162268 -12.133693 10.432509 -6.440149 -10.274525 -3.511500 -7.704446 -5.571901 -1.752845 -21.809790 -4.155502 7.539797 -10.185942 -13.436025 17.947969 -11.225114 1.432345 -4.140435 6.125369 -6.599266 12.342894 -3.294144 13.478322 4.691360 -1.927670 -22.585535 -0.781752 4.429443 8.639103 -4.565865 -3.961189 -5.353949 5.782532 -11.941569 8.615127 -8.574724 12.677900 24.259648 -1.206572 -14.073030 -9.501865 -0.869703 -26.886496 6.244736 -15.349539 -6.628368 7.112324 17.451543 8.733897 11.610615 22.272358 -18.408183 14.861824 -4.289450 1.377632 13.306436 -4.080024 9.321435 -10.529693 -17.199868 11.253736 10.600201 4.177095 6.489287 -8.049283 -0.470396 -12.760384 -15.897342 11.136252 5.468403 4.169491 14.085552 10.043187 37.858928 -23.831569 6.909000 7.997130 -2.697801 4.600346 -3.818754 -20.882227 6.045551 5.222218 5.928857 25.308541 -2.668117 -14.291051 1.178069 1.208841 6.562697 -13.852154 9.900176 -15.136861 2.048099 -9.676494 -7.222633 -9.988040 -7.710457 -9.377049 -4.300341 23.701085 -12.391837 -27.839770 26.668935 -11.523248 11.709587 -33.443367 14.278794 -12.402396 15.526039 -11.712265 -0.964780 -3.966089 2.761461 -9.418681 8.595690 10.418736 -9.802930 9.450628 26.287211 5.623736 5.523372 0.280360 12.068738 -1.654081 6.463510 -10.433238 22.618225 -2.585169 -3.148669 -3.291211 -9.356909 7.341977 -5.483121 -0.008760 6.151578 17.469848 -0.304589 5.900189 16.718233 9.393814 -12.310307 15.790257 1.183048 8.341916 -7.505120 -3.152375 1.033125 5.689489 -4.126898 9.489082 -22.097341 -19.880015 -19.155458 -26.401005 -4.490781 6.469967 5.630657 0.156047 -0.257930 -20.280104 -11.454860 20.046106 -6.423589 23.293165 9.660410 11.873499 14.276088 19.789771 -8.441945 -5.204816 -6.394146 -4.428365 -8.707503 -7.968440 -11.928061 17.819964 -9.094826 11.271024 15.921570 -3.571088 6.385554 -0.242029 10.743950 -10.953739 26.236037 11.253143 -6.512084 11.758469 6.888237 25.340932 -4.643603 -13.255672 --22.015943 -30.185190 34.855324 34.741424 6.298721 9.233021 15.355870 -5.085187 20.277261 13.199994 -8.659051 26.541608 -10.011540 -2.759556 4.727335 26.371394 -25.656050 -12.646066 5.370202 0.868686 0.945810 -20.381574 -33.715842 21.336860 4.588916 9.988166 -4.172384 -0.124508 -30.399931 -42.564819 -1.209610 -3.410689 8.411082 -47.763140 3.030987 -93.440717 31.529657 31.919740 -0.818831 -54.365583 0.266243 -3.955542 -4.689537 2.231086 -17.228129 10.665499 8.056069 -1.081733 -0.495586 7.887142 1.849728 -6.087713 25.747554 51.382705 -8.175731 47.545595 48.409750 -0.743639 3.533557 2.008597 5.280220 -2.339860 10.787345 22.220155 -6.670786 -2.608544 -0.544228 -0.794534 -23.891973 5.369347 18.680248 -21.304574 -35.186461 -2.435791 -19.590361 0.550267 -11.672867 24.089644 30.970988 -22.684803 50.168798 10.085631 23.880109 -5.847957 8.554540 -2.364715 10.602735 6.890442 -22.086211 -3.556534 -21.469015 -34.559628 18.744767 4.825443 -24.465490 -12.825078 3.633512 -0.291121 -27.787853 6.707360 -2.143642 -0.799610 -16.831851 -14.680080 11.241402 7.809138 -1.141036 -22.155109 -36.833620 35.807292 -11.438258 -8.369894 -5.223342 1.459371 -6.951626 -20.698746 -31.087053 -6.120820 43.538387 -11.734527 -23.070694 8.384868 -20.975255 22.824130 -4.359290 -1.399972 0.964217 21.479824 22.039592 4.878275 6.439655 -12.879910 -35.865506 22.665756 3.988021 25.010921 -5.476986 13.560592 19.126655 4.964167 16.559528 20.652495 -13.445127 9.877282 18.852537 -2.394143 -8.523965 -27.662951 -23.836006 -26.132871 17.285254 -9.419018 -20.750938 -1.170144 11.828612 -2.318341 3.918264 15.063452 -44.539897 20.059082 -2.040021 7.262654 0.719197 -5.191148 4.041755 -6.626686 -8.708684 8.633300 14.164274 -1.889364 5.351731 -6.929222 1.650945 -7.574632 -13.661343 15.392303 -1.581188 0.859060 25.315562 3.051666 117.720334 -3.656017 0.268924 0.949912 1.682079 0.884831 0.231961 -16.022942 4.893086 -1.254105 11.402975 47.934451 0.314363 -9.122132 2.631842 2.194162 -1.469886 -8.093997 45.232736 -11.562894 -9.311893 -2.730452 -17.285562 -5.553331 -8.955027 -36.680925 -0.919245 30.604308 -36.040213 -36.742188 5.411825 -30.800046 3.829301 -40.239792 74.547259 -9.216671 26.861910 -14.443230 -3.880467 -1.784391 -10.470082 -0.159385 10.581913 7.801946 -24.582991 10.864358 18.890513 2.109625 -0.694244 6.419195 2.106161 -0.687190 -3.350884 -5.162202 6.024820 -0.360474 1.283727 -4.120834 -6.137052 21.256393 0.379974 -8.163984 -4.892767 21.078790 -5.504249 4.277305 25.246873 -13.759819 -9.610085 24.863516 3.839000 12.585766 -4.799750 -2.708608 -6.858963 -2.312158 13.799254 9.744321 -13.896110 -10.442115 -27.656995 -36.238433 -9.110398 3.793128 27.610624 3.784494 3.776301 -44.780484 -24.919397 67.522579 -1.954598 23.325774 7.028998 8.205533 9.614440 5.355879 -1.271121 -6.945270 -5.823498 -0.301088 -11.295320 -5.990530 -1.062542 5.051408 -14.578660 10.322142 6.848765 -0.848369 0.523768 -5.161400 -9.074569 -6.914149 26.857661 10.343133 -8.406394 1.996035 -0.130897 27.492325 -43.956994 -9.588524 --9.891470 -17.878502 13.620142 13.129465 4.975797 11.261715 6.622288 -5.247660 8.458426 12.695093 -5.868738 11.043928 -8.536717 -4.705389 -0.251949 1.617787 -2.749420 -10.462779 2.072345 -2.579722 -1.043323 -10.107099 -9.950004 13.420978 1.839627 -2.293085 -4.857990 1.237724 -21.758445 -17.101233 -0.862125 -0.786028 6.847641 -5.229042 4.540774 -23.045977 9.286373 17.982377 -0.731743 -19.754013 0.003843 -5.178345 -3.985248 6.814328 -1.426050 6.529585 5.429994 -0.567944 -2.298532 3.369391 4.935006 -1.729877 7.381496 20.020834 2.147530 17.969206 17.484683 -0.149530 4.304724 3.143512 3.861661 -2.728013 9.505973 8.889126 -5.548754 -1.684833 0.076982 3.130531 -11.657917 3.163476 3.204080 -8.851139 -4.191478 -4.386527 -9.715830 -4.046686 2.598401 0.446895 20.025399 -3.972128 23.484365 10.873196 13.803470 -0.505406 13.064824 -1.890102 13.626708 5.299129 -12.014158 1.178070 -12.973405 -4.945044 -0.530217 11.856148 -10.313532 1.996194 6.483323 -11.742792 -16.682827 11.190242 -3.342052 -2.655365 -10.779234 -0.568144 7.897325 4.326248 -4.707816 -14.773395 -12.844856 9.967168 -9.117204 -9.090799 -2.584724 -1.264712 -0.459109 1.571910 -9.442187 -1.947663 13.907525 -8.984126 -8.567781 12.367210 -4.931296 11.281703 -3.216293 0.705567 -0.004207 1.592496 5.994659 3.843554 3.424486 -9.883691 -22.294319 0.460188 -0.138788 1.970715 -6.446600 -2.772334 7.426380 5.750386 7.473688 12.442519 -4.458835 12.687105 8.770287 0.959969 -4.729905 -15.956374 -0.975656 -9.191298 4.145656 -6.509603 -7.120740 -0.790977 10.555108 -0.135412 0.528537 10.280709 -7.224418 10.554729 -0.466941 1.843938 0.610782 -6.118202 3.869273 -6.812285 -11.086815 7.594882 13.881576 4.892175 4.734470 -5.103452 -1.419827 -3.480997 -11.937555 4.821050 0.677232 3.118626 15.112368 7.108228 30.538496 -12.335729 1.517075 -3.400700 -2.535862 3.250848 -4.472726 -13.840471 4.419366 3.386261 3.557918 19.254444 -0.579883 -7.195264 3.689239 1.078426 1.171784 -10.448793 15.888755 -10.846606 -1.167583 -2.726391 -4.869919 -8.037010 -6.590085 -10.953176 0.366391 16.599131 -6.342834 -17.062161 6.965073 -3.085059 2.883338 -20.531600 12.926292 -7.109016 10.983459 -6.211311 -4.139789 -1.354563 6.594751 0.277163 3.103639 7.286054 -12.539714 10.419277 10.489991 1.215880 3.483942 4.505153 3.323222 -2.751083 -4.848783 -10.463654 7.750925 0.604277 -3.797727 -4.310530 -6.492347 12.126291 2.773160 -3.237451 -2.833513 12.416693 -7.047556 -3.783732 12.366453 -3.689978 -6.732393 4.805595 1.430144 10.359499 -6.203590 -2.248902 -8.922090 -0.175309 4.071581 5.432313 -15.380140 -5.226266 -6.972862 -15.552125 -5.127415 5.879528 4.655833 7.183367 2.152678 -20.436848 -9.463093 12.809203 -3.923668 8.110857 7.706528 10.957047 12.645508 6.353084 4.240635 -4.492394 -5.516006 -1.631687 -10.305393 -5.261656 -0.907847 5.174000 -6.360439 12.960526 3.957098 1.358782 5.247689 1.381916 5.216224 -8.445779 18.540698 9.804580 -10.114886 1.382453 4.833987 17.323826 -17.133063 -8.985899 --7.518632 -15.885198 31.401995 26.467333 4.773339 12.880381 5.549880 -21.898385 24.848998 14.948828 -3.228272 7.930853 -16.212169 3.878458 -0.163604 15.555631 -16.963170 -18.433591 -4.250062 -15.595513 -8.059511 -19.044921 4.651018 5.197118 8.645727 0.388056 -16.662084 1.616019 -21.663764 -30.624327 14.269579 -4.911981 13.570328 -4.179855 1.940135 -54.442508 27.361263 21.161336 -6.130305 -23.962151 4.112933 -11.277039 -2.524146 -0.986678 -1.850109 8.423932 0.221770 1.057134 11.234542 7.132287 12.444615 6.387952 3.317125 35.317775 -14.640213 19.301701 9.855616 -1.456193 -4.542877 7.484010 5.582307 5.999904 16.786467 17.786514 -8.145786 -14.022082 0.813747 -3.354063 -27.270987 17.243042 0.356617 -12.130253 -13.475747 -5.492214 -14.146888 -5.468817 -2.112830 12.808811 33.055745 -12.582869 23.389745 5.764866 13.282589 -1.897299 14.929785 -3.837324 27.866644 7.373034 -14.534254 -5.098386 -16.145438 -10.897429 2.723930 10.122315 -10.274408 -7.606918 8.789618 -17.046859 -23.582637 9.732375 5.208190 -1.288362 -32.094022 -6.326064 16.667509 8.427863 -6.672314 -25.087763 -14.799865 11.189261 -6.824165 -11.462360 -3.899190 -9.841784 -7.207892 -5.060494 -23.346296 -5.637164 7.124011 -12.076771 -16.756837 18.931751 -14.971597 1.647331 -3.920620 6.371234 -6.871349 11.856713 -3.565170 14.620247 9.475250 -4.011468 -29.112952 -0.722903 5.621648 15.669209 -4.716738 -1.982230 -6.457584 5.923340 -12.905801 9.290951 -7.213890 13.425290 26.326979 -3.240086 -14.319797 -8.974602 2.994093 -27.993754 8.640025 -16.539363 -4.598753 4.253698 18.971057 8.874225 12.825324 25.908796 -22.001362 17.960216 -3.586093 1.792417 14.535509 -2.812680 10.194799 -11.372728 -19.986475 11.294731 12.050870 2.831330 5.941162 -6.944226 -0.943876 -14.941280 -17.252555 9.844269 4.214780 2.599299 15.532012 10.450878 42.093898 -28.953127 8.286939 9.394564 -2.925735 5.412964 -3.968165 -23.598236 8.246881 5.124024 6.158434 27.740908 -2.652756 -16.373309 1.675516 0.803903 6.879236 -15.066265 10.761650 -16.971750 -0.578643 -11.092963 -7.788237 -9.361112 -9.962398 -8.778733 -1.824245 25.168443 -8.476017 -30.636052 28.258043 -14.275136 10.134253 -37.522164 20.841075 -13.628923 12.676285 -14.385317 -0.774528 -4.574114 7.042265 -10.345003 8.122432 11.179005 -10.993427 12.869214 31.958467 5.935523 5.558630 0.495711 12.953791 -1.343828 6.215355 -11.541875 25.495087 -2.557597 -4.307378 -3.137469 -10.474415 9.857234 -6.411312 -1.196202 9.932352 21.164317 -0.960452 7.077914 18.042265 11.336896 -13.000495 18.729274 1.773645 9.360967 -7.109343 -2.809754 1.481617 3.603688 -4.959153 12.039892 -23.613115 -22.283144 -15.156940 -30.373275 -2.840566 5.678583 6.619991 0.187047 0.393219 -25.671873 -12.485994 17.172308 -7.122199 24.018661 10.465246 12.813127 14.577185 21.131876 -9.941017 -4.253661 -6.617986 -3.761794 -9.751402 -10.853879 -10.740657 18.446763 -11.311944 12.396551 16.147221 -3.210145 6.396838 -2.376763 13.457767 -11.772255 30.017809 11.949650 -5.672363 13.976824 6.637864 30.506690 -4.860580 -13.808548 --7.476289 -16.065523 15.398539 14.431048 5.405048 10.209265 6.165790 -5.409366 10.749555 13.047406 -6.372475 9.113322 -10.852510 -2.649648 1.451871 5.262597 -5.306078 -12.428146 3.766241 -1.561979 -1.587218 -11.116541 -3.498868 8.696759 3.840277 2.264887 -5.045801 -0.210172 -18.758233 -17.120702 2.808186 -2.702375 8.231455 2.795446 2.876711 -21.988957 10.789260 14.956957 -1.266837 -19.382027 0.459256 -5.654514 -2.771121 2.716058 2.533063 7.721867 6.893709 4.033339 0.248127 5.543702 4.152103 -4.038899 5.788874 15.678874 0.049010 15.009513 13.836920 -0.475379 2.544146 2.611302 4.658760 -2.604866 10.807185 11.091967 -6.893549 -2.659093 -0.299767 -0.513306 -13.822531 5.305911 3.829419 -5.279176 -6.631236 -3.385581 -4.432754 -2.485502 -3.422012 3.511446 21.472928 -5.107810 21.853340 9.334926 13.997887 -3.111081 11.006827 -1.973896 12.771999 5.767433 -12.513722 -2.051603 -14.252166 -8.210321 -1.006733 8.555311 -7.548117 3.312093 5.659348 -6.740965 -15.602856 8.390550 -2.277148 -0.944494 -12.506405 2.522360 9.783406 6.835721 -4.298692 -14.752339 -10.698975 6.022852 -9.659074 -8.271531 -3.503831 -0.996069 -4.557567 0.461107 -11.349028 -4.788771 10.421849 -11.337033 -6.841488 11.265573 -5.998984 9.099576 -3.215035 0.080491 0.249448 4.499479 6.527130 4.575089 8.983764 -8.305202 -20.702400 3.923907 3.091029 5.992792 -5.848877 -0.855147 4.567289 5.049890 2.264903 7.510891 -4.614327 11.001605 12.019914 -1.903823 -7.610705 -12.891355 1.303190 -9.870789 5.723141 -9.187793 -0.658133 -0.347656 11.765478 0.323704 3.026405 14.679299 -12.801117 11.932931 -1.588514 4.068296 1.750825 0.835194 4.882046 -7.334038 -10.354646 7.720979 13.764256 0.708248 4.559535 -6.360786 0.354968 -6.551369 -12.197552 7.374853 0.004024 0.783386 12.876584 5.063466 26.194666 -12.938534 1.474623 -0.140299 -0.088459 2.038176 -1.764876 -15.852474 7.631897 1.014651 5.896951 16.242702 -0.385518 -9.277347 3.211663 0.878208 0.556061 -9.867013 12.766760 -11.558920 -1.359535 -3.776513 -0.937001 -6.645768 -8.104429 -6.598193 3.658899 16.899567 -0.919776 -16.679975 6.877896 -6.643973 3.955423 -21.281525 11.721962 -8.692334 6.484052 -6.551497 -4.218755 -2.300785 4.633759 0.118019 -0.635451 7.840457 -8.368706 10.443138 12.321499 2.122083 2.159634 5.736419 4.252252 -0.906601 -3.540655 -6.726172 8.133931 0.025576 -1.572772 -3.304246 -6.876471 11.354863 1.601699 -5.463905 3.585492 13.255952 -5.863733 2.174225 8.858307 0.317132 -8.346756 5.730337 2.630797 12.223528 -5.837211 -2.244938 -7.056029 -0.691583 0.419384 7.963058 -15.325559 -10.235853 -2.075528 -16.823085 -6.692157 5.042605 6.817842 4.571687 3.080200 -17.969145 -7.975360 9.040627 -3.692426 11.410452 6.959833 9.369905 11.009316 7.337353 -0.319885 -6.319904 -4.617565 -1.028129 -10.271248 -5.220262 -1.742841 5.496348 -6.967193 11.698725 6.259447 -0.289211 2.511945 -4.538953 10.832081 -8.249316 18.760965 10.266689 -8.661249 3.331592 3.452234 18.989724 -11.890517 -9.554373 --12.786640 -20.225236 16.609064 15.649542 7.381429 13.802479 8.236688 -5.868145 10.612469 16.873892 -6.602324 12.023947 -12.278141 -5.931644 1.202732 2.921095 -2.740051 -13.940753 3.450941 -2.351436 -0.762966 -12.652018 -9.589650 14.548713 2.656529 -3.591511 -5.597084 1.174485 -25.923093 -20.148359 -0.551762 -1.466987 8.912234 -4.886539 4.254701 -24.632267 11.741161 21.339934 -0.648473 -22.573930 0.061778 -6.830708 -3.394665 6.446784 -0.816932 7.453955 7.648502 -0.485995 -2.056130 4.576046 6.497746 -3.379790 7.685572 21.178595 1.871320 20.082734 18.704928 0.009581 4.100276 3.761252 4.687946 -3.937522 12.386163 10.613255 -8.194847 -1.452104 0.721102 3.473847 -15.181778 3.652348 4.011213 -10.151547 -5.724225 -4.533043 -10.031751 -4.861269 3.625666 0.531748 24.422824 -5.294446 27.369358 12.176538 15.853929 -1.074019 15.755926 -2.422760 15.844542 6.006707 -14.843825 0.211513 -16.414209 -6.120906 -1.312209 14.028235 -11.254929 4.661333 7.465611 -11.336133 -20.147860 11.757063 -4.073715 -2.562449 -14.750160 0.700590 10.054284 6.686222 -5.868790 -18.254667 -14.740038 11.359242 -11.496014 -10.502378 -3.194884 -2.490295 -1.872311 0.612417 -11.932866 -3.905409 15.376403 -12.517613 -10.537471 15.104656 -7.061097 13.240291 -3.474709 0.546309 0.604959 2.222630 7.403753 4.518974 5.673183 -11.728215 -26.484983 0.026268 -0.110076 3.778509 -6.925051 -0.856874 8.139990 6.694295 6.988957 14.020739 -5.588759 14.122888 9.957983 0.238018 -5.724537 -16.797610 -0.771521 -10.568954 5.528720 -8.445213 -5.531944 -1.295539 13.135617 -0.671378 0.592632 14.999414 -9.523684 13.447306 -0.611953 2.393951 0.855272 -6.692256 5.216098 -8.467594 -13.596587 9.027091 17.377832 3.165072 5.429985 -6.384546 -0.768860 -5.053613 -13.889990 5.189159 -1.024173 2.136699 17.668912 7.631157 34.780458 -15.082491 2.526030 -3.743363 -1.169538 4.198746 -5.418624 -17.801156 5.691327 3.417850 4.344924 22.320023 -0.747294 -10.377142 4.254066 0.961832 1.411359 -13.066054 18.407236 -13.672925 -1.409849 -3.580448 -4.945404 -8.809506 -9.115130 -11.331864 1.478982 19.839866 -4.935342 -20.834603 7.260489 -2.091060 4.243250 -24.998269 15.464699 -8.987759 12.445553 -7.007275 -5.212271 -1.843911 8.448639 0.765398 1.303684 9.054580 -13.768694 13.479561 13.016184 1.469770 4.477179 6.526212 3.872657 -2.215454 -6.384827 -11.091189 9.428392 0.553285 -4.342592 -4.366487 -8.288416 15.114318 4.035016 -5.520409 -1.753355 15.705642 -9.518002 -2.607056 13.617999 -2.990767 -8.241967 6.088282 3.098466 13.333460 -7.191852 -1.925706 -10.448793 -1.006498 3.858527 7.934003 -18.786308 -7.290390 -4.571867 -18.920434 -6.226138 7.742236 6.067466 8.211759 3.363408 -23.488710 -10.719474 13.883972 -4.758771 12.930366 8.798942 13.346810 13.889832 8.008963 3.685080 -6.379597 -5.856439 -2.209125 -13.245769 -6.906971 -0.077155 5.485591 -8.059170 16.291737 4.428762 1.787093 5.227343 -1.139036 5.569225 -10.570177 21.754713 12.331830 -10.973339 2.535338 5.853589 21.642187 -19.884099 -11.073948 --3.280569 -6.832981 6.739887 6.133378 1.417152 4.747218 1.887819 -2.858119 3.905417 4.209225 -2.982403 4.205040 -4.336398 -1.342406 -0.587998 0.790970 -2.664506 -4.687300 0.390315 -1.219453 -0.464828 -4.371635 -2.672096 5.301569 1.264112 1.425415 -2.397516 0.947138 -8.620624 -6.334544 0.978901 -0.469546 3.261010 0.305022 1.717788 -8.982766 4.296580 7.469678 -0.546948 -8.121832 0.488331 -2.788942 -1.837653 1.255065 -0.578746 2.540271 1.833215 0.911005 -0.468016 1.150169 1.136979 -0.642613 2.768057 7.540992 0.469825 6.842016 6.816121 0.087415 1.478736 1.014939 1.720630 -0.493638 4.110444 3.979756 -2.756934 -1.522303 0.138358 0.440222 -5.311405 2.280155 0.954161 -3.046748 -2.469861 -2.235504 -4.257079 -1.155211 0.927089 1.672903 9.012722 -2.314808 8.775776 3.758410 5.045461 -0.607507 5.331004 -0.692312 5.967226 2.488979 -4.470766 -0.008137 -6.128860 -2.473107 0.075465 3.595149 -4.277234 0.366510 2.885197 -6.605107 -7.149762 3.630354 -0.627382 -1.490029 -3.865259 0.366575 3.454093 2.081926 -1.720432 -6.000118 -3.815727 4.066674 -3.545153 -3.556502 -1.454964 0.215820 -0.549022 0.431329 -4.814806 -0.576451 4.786130 -3.851840 -2.296650 5.498667 -1.943182 3.767971 -1.382166 0.283713 -0.139379 1.658347 1.844488 1.597156 2.001114 -2.812960 -6.637751 1.033926 0.380897 1.486445 -3.428373 -0.691300 2.550051 2.288169 1.608999 3.656929 -2.671893 4.183082 3.228165 -0.539476 -2.471282 -5.995039 -1.523699 -5.154864 1.204287 -3.073041 -2.712206 0.196180 4.877848 1.133017 0.947812 5.100782 -3.877153 3.825399 0.189312 0.925929 0.786150 -1.580064 1.872920 -3.153950 -5.167414 3.521554 4.758434 1.172567 1.905759 -1.840951 -0.560318 -2.314687 -4.514152 3.228345 0.597133 1.339595 6.587094 3.442006 10.192828 -5.034176 1.231414 -0.666515 -0.908702 1.146103 -1.627744 -6.493248 2.615442 1.346053 2.709371 8.099201 -0.344152 -2.794712 1.250657 0.505323 0.826135 -4.754036 5.869109 -4.866321 -0.681566 -2.147317 -0.943127 -2.787442 -3.199099 -4.132699 -0.374578 7.418418 -3.291774 -6.894625 3.791174 -0.741408 2.274569 -8.519334 4.017076 -3.407092 5.621702 -1.579308 -1.688260 -0.380421 0.647222 -0.949986 0.601320 3.264167 -4.554922 4.230229 4.387257 0.984602 1.381722 1.982596 1.777689 -1.273426 -1.098579 -4.366478 3.570018 0.331699 -1.767073 -1.235750 -2.918507 4.333827 0.555130 -1.302140 0.710830 5.356261 -1.439428 -0.089327 4.541930 -0.070877 -3.256287 2.305311 0.663131 3.907074 -2.785699 -1.239942 -3.007699 0.274999 1.042179 2.746422 -7.079721 -4.123180 -3.777999 -6.734227 -2.130070 0.613612 2.288909 2.516236 0.785952 -7.933413 -4.299301 4.288442 -1.870137 5.333605 3.324927 4.466355 4.937958 3.491321 0.411453 -1.576785 -1.462637 0.150232 -4.257062 -1.937202 -1.708610 3.057561 -2.103669 5.074602 3.228214 -0.127158 2.501958 -0.273308 2.658496 -3.870232 8.232182 4.402411 -4.703458 1.111314 1.731395 6.996200 -4.965090 -4.306264 --8.197469 -18.796693 21.829220 18.636712 2.284501 12.870724 6.175689 -10.705460 11.388581 12.538362 -4.971493 10.678294 -11.909701 -1.077091 -3.152169 5.710412 -10.002056 -14.020091 -0.482224 -7.578464 -5.870305 -11.180907 -5.193486 11.372392 4.940197 0.301150 -8.280138 -1.215018 -22.084039 -17.908230 3.561666 -2.003194 9.666296 -1.342096 5.084325 -32.978084 13.861140 18.731286 -3.146491 -21.625587 1.284096 -7.043908 -3.763397 3.386478 -3.960881 5.502030 4.079653 1.849526 1.623048 5.175938 6.456310 0.796453 5.996872 28.834992 -0.163011 18.399334 15.969548 -0.403322 2.378716 5.043191 5.942598 -0.624880 11.278783 9.423867 -3.978201 -5.193048 -0.749788 -1.924346 -14.086135 8.663325 2.914223 -10.383884 -6.117863 -6.455142 -13.225817 -5.775741 -4.554429 7.304814 25.271696 -10.954050 22.561375 8.761186 13.042438 -0.856562 15.540865 -1.581754 18.798598 7.066135 -10.847417 2.037456 -11.567659 -5.845148 0.641969 8.002787 -12.203289 -9.081544 10.546604 -16.722629 -20.736397 13.589327 0.589277 -2.821592 -14.891660 -3.325374 9.796939 6.637263 -10.616010 -17.862916 -13.719297 10.831158 -6.936711 -9.318291 -0.292508 -1.511669 -1.913625 -0.773895 -15.093450 -1.824690 12.762619 -10.930543 -9.297195 17.503534 -4.475783 9.254309 -3.636053 1.636490 -2.939755 8.987403 3.170673 7.158569 1.444078 -3.308208 -22.018169 0.698274 3.011798 4.453562 -5.434147 -3.020600 4.097608 8.360622 0.508715 12.014084 -6.640110 13.214649 14.092158 -0.606448 -10.746532 -14.580621 -0.112758 -16.490354 2.534794 -11.520132 -8.462071 3.781759 14.867352 6.840611 3.473327 14.820804 -9.431273 11.955799 -2.146276 1.452279 3.836663 -5.950310 6.478122 -9.161770 -15.213844 8.547641 12.779107 6.436111 5.964026 -6.997440 -0.998837 -7.545434 -13.909649 6.458376 5.274253 0.122829 16.366534 11.077576 28.666666 -17.961882 2.507215 -0.156150 -4.378048 3.499678 -4.835529 -19.441826 4.157580 4.406756 1.753831 21.130226 -2.096828 -8.847499 5.502811 -1.219584 3.211794 -12.373863 11.797825 -13.349387 -1.393043 -7.651172 -1.738061 -9.570518 -6.734141 -10.842483 -5.210134 21.803353 -14.600859 -18.779345 14.901072 -4.007616 6.166849 -25.320222 14.449910 -8.896742 13.278988 -6.591392 -4.678522 -2.794235 7.265074 -3.696456 5.551104 9.442505 -13.327186 9.647870 18.430520 2.676509 5.105255 4.130397 9.733849 -4.190956 -1.668324 -11.950938 15.081800 -1.235357 -6.413511 -3.652215 -8.513229 9.450217 -0.844394 0.397712 3.869636 12.254776 -3.373750 0.537152 14.692063 1.756641 -9.746911 7.777784 1.487256 11.573273 -9.104695 -2.102362 -5.934440 2.891609 0.450728 6.112758 -20.235563 -12.761950 -16.877784 -17.739161 -5.335994 4.653494 5.575390 3.244967 0.454454 -20.674973 -12.550640 15.277667 -7.138569 10.151486 11.870529 12.444692 15.943932 13.461433 -0.712052 -3.120200 -4.668501 -0.490533 -9.632865 -5.869079 -5.584440 8.820261 -9.837506 13.938422 10.273096 1.079463 8.168882 2.518510 10.944533 -11.688314 21.961594 11.983589 -11.414161 5.335058 11.867548 19.758672 -10.514395 -11.970928 --21.641354 -38.713112 30.848267 29.225975 8.592713 27.113324 14.844020 -9.719994 9.508172 27.808298 -11.549061 25.508452 -17.548981 -13.357709 -3.653679 1.348879 -3.544113 -21.508904 5.061673 -5.035360 0.083021 -19.209084 -25.166827 35.860996 4.105657 -6.349181 -8.871917 0.503244 -47.269634 -33.813196 -8.252041 1.260246 15.598408 -6.284613 12.326681 -39.414162 17.427580 42.332798 0.143999 -36.960842 -0.037664 -9.385891 -9.613945 14.378027 -9.999212 13.228082 11.778749 -6.005383 -8.456590 7.701886 13.462266 -2.577457 23.420300 36.751597 11.219702 37.015442 32.921404 -0.191295 15.825496 3.615923 8.342239 -7.683566 18.670567 12.743987 -8.065058 -2.320862 -4.538164 10.108984 -19.562901 2.092183 7.801936 -21.182257 -9.992829 -8.370381 -22.387898 -11.052196 -8.153458 -1.652532 39.974837 -9.480358 50.893655 23.874591 27.902937 -3.425091 31.302742 -2.301728 26.905566 11.576055 -22.385027 9.369799 -24.181010 -6.023198 0.359460 23.305962 -28.710699 0.752528 17.082097 -25.410322 -37.687997 26.348722 -6.160335 -11.374294 -14.147785 -1.016086 10.954931 8.650740 -14.383699 -32.282994 -25.265149 25.189140 -16.467965 -19.910954 -5.884422 0.703378 5.550750 2.678981 -18.225525 1.294617 31.529441 -17.635212 -12.912191 28.623098 -3.191142 24.917397 -6.797287 -0.983613 0.373214 3.875773 13.262331 6.339619 -2.388163 -20.666912 -45.975376 2.924248 0.072159 -4.583263 -15.119380 -7.058061 19.164655 16.397083 22.263906 33.051822 -5.510434 26.195052 13.680383 4.268580 -8.808892 -34.445398 -7.593530 -15.115246 6.174275 -11.008345 -17.686254 1.544863 21.613950 -3.049427 -2.122783 12.927200 -6.112971 21.235774 0.492717 2.087487 -1.650580 -17.255865 7.019350 -13.574654 -25.121837 19.498301 29.518103 15.629915 9.535043 -7.401534 -1.307799 -0.923221 -21.461827 9.230329 0.877289 5.565412 37.137391 18.943114 60.780422 -16.453910 0.725168 -12.546227 -6.779662 7.310118 -11.490749 -29.738077 7.127249 7.881404 -0.364196 41.540342 -3.628428 -9.726223 12.770073 -0.163043 2.855037 -26.056734 35.081620 -22.504480 -1.471759 -7.155094 -9.910447 -16.393567 -14.055193 -25.586494 -4.811221 36.511437 -22.432298 -28.856875 9.090448 -2.662711 2.597513 -36.208894 28.429283 -13.051250 21.880354 -8.886358 -13.645946 -1.751616 16.546270 0.058492 3.019430 15.931532 -29.906659 20.629223 20.872702 1.174137 4.854508 11.192321 7.284484 -8.060307 -10.560861 -24.398440 17.061314 1.921767 -7.571572 -8.008690 -13.452462 23.332032 7.749272 -6.745031 -5.480406 23.095983 -14.653035 -14.166787 23.532479 -8.365633 -12.970371 5.073530 3.515343 19.632724 -16.356818 -5.068030 -21.152915 -1.241753 11.742106 7.387772 -35.403465 -6.249432 -19.858518 -23.668913 -9.480184 11.583026 12.173022 17.181712 1.851620 -42.755871 -25.692724 32.842861 -10.452344 7.381912 20.319129 23.434997 28.469413 11.342595 14.845594 -6.056255 -12.540365 -0.188296 -18.410931 -7.895223 -0.072238 9.631347 -16.743502 31.175145 8.412321 4.287549 16.620698 4.561294 9.397898 -21.331304 39.457063 20.169271 -25.432557 0.598411 15.536458 26.364919 -39.923769 -19.486299 --9.702469 -25.407877 28.183665 26.484528 3.575921 16.207744 9.592355 -13.112871 14.621924 21.551885 -6.722193 15.114086 -15.802404 -1.533137 1.261675 11.427534 -12.374310 -16.488427 0.439355 -8.147973 -6.797822 -14.761786 -7.335970 14.696613 7.288956 0.541182 -10.189811 -1.845655 -25.127336 -28.666908 3.229760 -2.827630 13.494083 -1.168918 5.882990 -46.143002 19.153874 24.731062 -4.041309 -28.880952 1.565132 -7.753952 -5.377072 4.527611 -4.644849 8.689787 6.502995 3.845661 1.429623 8.858729 8.683938 -0.261084 14.113329 38.103315 0.139889 25.185394 23.502367 -0.930108 3.524968 5.454762 8.182599 -1.269212 15.307381 13.546320 -3.984983 -7.382474 -2.471353 -1.320867 -19.643576 9.858566 4.947691 -13.513088 -11.473627 -8.781451 -12.150125 -6.964290 -14.073557 9.341287 34.047868 -14.571237 31.745837 13.755277 16.654666 -1.412033 19.156088 -2.263481 23.307317 9.601553 -15.574199 2.709633 -12.454645 -12.301463 3.010917 11.542556 -16.212991 -10.359171 12.348971 -14.170634 -27.117261 18.322279 0.480685 -3.780968 -19.015953 -5.470135 12.365649 8.604560 -11.887271 -23.871936 -19.211888 12.535355 -9.483070 -13.941440 -4.292762 -1.004134 -2.740426 2.006789 -20.827560 -2.927480 17.275298 -15.176007 -11.885118 20.309215 -4.550110 13.089032 -5.317230 1.557147 -2.604097 10.858936 6.515142 11.465412 6.802473 -5.202676 -31.158271 4.327673 6.161581 4.442737 -5.996334 -3.283897 5.625934 10.966187 3.100147 18.800758 -4.838738 20.281478 19.328104 1.005923 -13.589341 -20.788131 -0.692441 -19.044986 7.641108 -15.485374 -7.178465 4.402060 18.944604 3.130120 4.409995 16.894008 -16.349561 17.658425 -3.342815 4.587522 4.661699 -4.540745 7.965362 -11.650882 -18.966228 11.963784 20.171577 6.438712 7.224788 -8.879137 0.413492 -8.169421 -17.775973 9.216843 3.257243 -2.446978 21.266110 12.542182 50.410126 -19.895570 3.762037 -0.650475 -4.506046 4.702277 -5.500507 -25.849757 7.785764 4.279800 3.754801 28.054643 -2.291852 -12.558336 6.952262 -1.876455 1.696748 -15.000791 19.408817 -17.362880 -3.083019 -8.202196 -2.071401 -11.224230 -10.042280 -12.700611 0.584333 29.149098 -16.971445 -22.457444 17.226393 -8.162244 4.481605 -32.164833 29.746133 -11.653462 12.521517 -11.806892 -10.126606 -2.499214 10.402609 -4.061747 4.621194 12.993948 -15.990679 11.312731 24.322699 3.041953 5.047640 6.306662 10.771420 -4.051638 -2.415319 -14.641066 19.708180 -1.040002 -4.482759 -7.679983 -10.818892 14.618216 -0.877667 -2.667158 5.206263 16.483900 -7.010679 -1.220350 17.300989 1.873658 -13.079485 12.380728 2.792008 16.112698 -12.172735 -2.039791 -8.667881 1.391100 0.616760 11.392124 -26.025193 -12.374912 -16.632465 -19.106937 -10.579698 11.826987 10.656415 4.200845 0.664214 -27.987743 -17.016207 21.512006 -9.073813 5.969714 15.202398 16.588877 20.112613 15.674577 3.788341 -5.983378 -9.575408 -2.175330 -11.880625 -7.720584 -3.655071 11.300819 -12.475111 17.938519 11.342841 2.003883 9.491216 0.025792 15.791148 -14.208249 29.525379 14.816900 -13.619372 6.232673 17.159922 25.884689 -19.412321 -15.379291 --5.810709 -10.837602 14.152491 10.013557 0.929625 6.882614 7.577410 -8.316353 10.339422 3.657729 -3.037072 1.941539 -12.231040 -0.633574 -4.599618 1.740827 -7.374302 -10.564926 -1.105402 -6.145264 -2.658859 -10.121309 2.705529 5.925593 3.885332 1.083513 -3.888770 -2.391795 -15.110793 -7.682632 9.142276 -1.481960 6.556128 2.342540 0.123635 -21.544553 8.450003 10.146243 -3.401983 -12.632337 3.225253 -4.428637 -3.067516 1.122757 -1.147269 2.290296 1.907389 6.301270 3.255071 2.996465 4.388574 -1.916867 0.460840 18.105180 -5.217109 11.159021 9.402252 1.988053 0.331233 5.388801 1.855732 0.606094 6.428738 9.590506 -4.849279 -2.485624 2.135462 -4.667032 -13.552690 8.347999 0.720515 -3.606529 -5.037579 -3.116933 -7.245849 -2.325550 -0.834876 5.330558 18.432879 -7.943773 14.831377 4.507334 7.814216 -3.539493 5.816157 -1.244962 9.123978 3.158720 -7.423718 -2.431338 -13.854343 -1.988418 -1.665719 2.962885 -5.054438 -7.343358 7.975229 -9.577962 -13.746889 5.106497 0.434738 -1.894138 -9.093273 2.127274 5.776606 4.057476 -7.034380 -13.451566 -8.567789 6.995051 -5.052109 -2.714986 0.157610 0.939766 -3.207101 -5.519193 -11.094406 -2.917134 4.580861 -9.568391 -5.530787 10.521962 -6.977547 6.800347 1.272527 2.589422 -2.203106 6.982484 3.241847 2.665839 5.887714 -3.320387 -11.334622 -0.788424 3.046955 11.485817 -2.770150 -0.528156 1.308889 3.594395 -2.438691 2.871952 -3.277146 3.805608 6.899319 -4.774686 -6.788588 -5.859893 1.075212 -14.358830 3.040937 -9.478273 -3.769678 1.927327 8.511333 6.304580 3.362464 15.861329 -9.141724 8.883678 -0.897248 -0.973264 1.253967 0.087516 6.273152 -5.478925 -11.646833 2.849493 5.025858 2.429723 2.550866 -5.132070 -2.550258 -10.038257 -9.781483 1.874757 2.800381 -2.081345 7.942090 7.379877 12.670564 -14.136393 3.069404 3.137212 -1.894244 1.700508 -0.947285 -14.859800 5.162740 2.073040 0.949771 11.990355 -0.466720 -6.550551 4.545296 -2.463171 2.742271 -9.027105 4.964415 -9.591522 -2.566447 -8.935874 1.078198 -4.573733 -6.363270 -4.549887 -1.323398 12.937500 -5.487694 -12.204654 10.840974 0.261124 5.584948 -17.356292 9.884423 -5.165775 9.344135 -3.704595 -1.350273 -2.198945 3.577649 -0.790021 0.375177 3.465806 -6.029537 9.291117 14.726213 2.208465 3.748782 4.302130 8.993577 -2.439305 -0.799414 -8.093198 8.791031 -1.421172 -8.777813 1.479889 -5.558174 5.896048 -2.546064 0.819701 8.791412 12.157571 -1.338674 6.070757 7.758604 3.879360 -5.027879 4.830876 2.221216 8.828628 -4.871020 -0.695218 -2.143094 1.859945 -3.258500 6.520192 -13.344555 -15.501762 -6.592501 -16.981610 -2.452734 -3.341123 4.336474 1.494087 1.683046 -14.789945 -6.993419 4.270841 -5.338187 12.147977 7.562710 8.565550 10.176002 12.962232 -5.147353 -0.994973 2.824316 4.284696 -8.018938 -4.217118 -5.317680 5.176997 -5.989461 7.736520 8.019059 0.717007 3.752894 -3.969069 9.583985 -9.107622 16.267173 7.986111 -5.893161 8.115853 4.040058 14.506026 1.240608 -6.267537 --4.346188 -8.429996 9.448560 8.654084 1.132843 6.186222 3.181688 -5.009399 5.718800 5.928259 -2.334140 5.599554 -5.221327 -0.311100 -0.642237 2.586509 -3.744066 -5.997888 -0.437983 -3.328367 -2.199838 -5.805662 -3.202080 5.588787 1.905407 -0.015881 -4.321600 0.377730 -10.756223 -10.658666 1.673013 -0.831618 4.087005 -3.381987 2.513960 -17.314177 7.015366 9.098171 -1.257295 -10.624239 0.715134 -3.428287 -1.642445 2.247507 -1.261990 2.207429 1.362524 -0.276875 0.681584 2.031225 2.799455 0.900414 2.464381 13.142099 -0.789948 9.324415 8.406716 0.365097 0.253123 1.909809 2.390838 -0.043958 5.009067 4.972853 -2.504516 -2.755859 -0.221987 0.207888 -6.828326 3.641674 1.189063 -5.740785 -3.504213 -2.479851 -6.336415 -2.342401 -1.335367 2.345335 11.454129 -4.073429 11.392174 4.592329 6.307869 0.239731 7.164541 -1.029929 8.776841 2.996059 -5.722677 0.809293 -6.483214 -2.345142 0.269365 4.719937 -5.965335 -1.286562 4.107955 -7.052347 -8.995057 5.689880 -0.471543 -1.512867 -7.834870 -1.261708 4.625996 2.405778 -3.992236 -8.408517 -7.805381 5.977296 -3.423802 -4.387968 -0.693187 -1.359651 -0.354138 -0.254007 -7.023147 -0.670395 6.591508 -4.431902 -5.147756 7.199986 -2.482520 4.179437 -1.588088 0.845614 -1.176787 3.024177 1.276756 3.072174 0.949315 -2.705995 -12.975220 -0.081585 0.891657 2.036885 -3.048508 -1.437158 2.229881 3.254875 0.191593 5.188582 -3.050739 6.268663 6.544057 0.549054 -3.836310 -6.732404 -0.145245 -7.106750 2.100370 -4.483075 -3.246959 0.265565 6.301983 1.954167 1.924437 6.628818 -4.850974 6.011395 -0.722559 1.040428 2.157292 -1.991517 2.725960 -3.854206 -7.231114 4.302713 5.645330 2.413275 2.247843 -2.629765 -0.207970 -2.650360 -5.898912 2.987398 0.982789 1.152637 7.324096 4.529850 15.824615 -9.064876 1.796331 -0.094883 -1.580979 1.720916 -1.989176 -7.954975 2.108224 2.109197 2.039546 10.634361 -0.697143 -4.609239 1.675539 0.098189 1.508722 -5.638469 7.094721 -6.140772 -1.022955 -2.802244 -1.367604 -4.512381 -3.323560 -5.765105 -1.155360 9.189466 -4.523229 -9.863701 6.588076 -2.495035 2.875946 -12.115354 7.223822 -4.119105 5.682958 -3.814665 -1.646424 -1.166202 4.122223 -1.991598 2.649763 4.158491 -7.250866 4.823174 8.200268 1.021579 2.969135 1.588033 3.388517 -1.588273 -0.545593 -5.214820 6.537884 -0.451983 -3.201886 -1.612234 -3.649490 4.895642 -0.268178 -0.864684 0.406346 6.769943 -1.815855 -0.497087 7.475983 0.366938 -4.120331 4.136277 0.678160 4.492170 -3.689140 -1.146647 -2.930961 0.694831 0.377845 2.629193 -9.360689 -4.853170 -6.118032 -8.977755 -1.890107 2.245387 2.701872 2.263638 0.358727 -10.613908 -5.315754 7.434227 -2.521661 5.761728 4.678288 5.536298 6.878475 5.479662 -0.479413 -1.779914 -1.978106 -0.971074 -4.350945 -2.847768 -2.153673 4.472730 -3.982527 6.590449 4.142752 0.693287 3.336318 1.595706 4.635050 -4.674835 10.536926 5.099808 -4.658183 2.172630 4.511879 9.157007 -6.474786 -5.159704 --8.421265 -19.070075 22.230020 16.618742 4.427617 11.483624 13.482212 -11.612601 15.725629 11.191079 -6.839676 7.084935 -16.790127 -3.242051 -4.584404 4.533026 -9.344070 -15.552056 0.495656 -6.575472 -1.545725 -16.567942 0.480555 10.487050 6.766483 1.494439 -5.791843 -3.322413 -26.641528 -18.415379 10.994783 -2.027261 9.729175 -0.116125 0.404427 -31.111032 14.285328 19.493622 -4.213482 -23.512443 4.497159 -4.244706 -6.974367 4.830045 1.018058 6.402806 4.576187 8.863404 2.789257 7.136119 7.229456 -4.257485 5.295584 25.937140 -5.598047 21.137242 19.213152 2.529864 3.135629 8.350620 3.870094 0.074000 10.100198 16.530885 -6.200021 -3.067699 2.819770 -3.358319 -20.996174 10.987287 1.686971 -7.857641 -8.798494 -4.244782 -9.479027 -1.287683 -1.654372 6.425706 29.555943 -8.674622 28.777894 9.540583 13.878639 -7.345127 8.319982 -2.752210 12.333813 6.122694 -13.223966 -4.278402 -22.695609 -6.877703 -1.337077 8.200993 -9.831284 -4.893339 11.597078 -12.729534 -22.061946 8.053408 0.253159 -3.697620 -13.422505 4.780561 8.726579 6.639494 -7.664028 -20.892608 -15.470929 11.016333 -10.485917 -6.106311 -2.405749 1.038561 -5.851555 -4.432218 -15.840030 -4.912913 10.934812 -14.693394 -10.155427 14.032004 -10.064012 12.723857 -0.218639 3.067080 -1.425433 6.683504 7.100503 5.804702 12.532765 -7.817244 -22.682997 1.157884 5.074094 15.438469 -4.970725 0.764647 4.798517 6.099186 0.815523 9.733582 -6.185457 8.303790 11.428613 -6.035364 -9.874967 -12.445543 1.856132 -18.925408 7.246055 -12.905338 -6.371391 -0.730653 13.377761 4.305412 4.419881 22.232462 -16.324313 13.440097 -0.668487 0.990859 0.585195 -1.699203 7.946805 -8.200448 -16.813873 5.388486 11.634841 1.988341 4.158723 -6.965369 -3.128193 -13.308720 -14.802328 4.860959 0.905385 -3.361033 13.788129 9.924043 29.213591 -19.658302 2.866963 3.618881 -1.673832 1.847629 -1.447999 -23.100144 9.136546 2.084354 6.369161 21.620518 0.178638 -9.470859 6.786841 -2.800641 2.035343 -12.921971 13.911803 -15.124091 -4.105878 -10.189480 -0.480285 -6.289618 -10.043894 -8.573702 1.855183 20.404973 -4.740037 -20.955701 13.984995 -2.203174 5.150751 -27.157939 19.800691 -8.482682 11.520203 -6.166516 -3.212552 -3.007650 5.785695 -1.257202 -0.474556 5.825197 -11.363354 16.185432 21.786289 2.829362 3.630361 6.232418 10.233917 -4.519724 -2.840929 -12.139909 11.933387 -1.331275 -11.217096 -0.680305 -8.086488 12.496044 -3.675864 -2.985764 9.983790 18.180395 -5.053593 5.790047 11.031585 4.036374 -8.749109 9.866026 5.124307 14.278083 -6.645673 -1.962206 -4.677453 -0.448855 -2.683107 11.683394 -20.089053 -19.667493 -6.126233 -27.370470 -5.620505 -3.518185 9.519690 3.731644 2.796039 -26.138992 -11.855591 10.183962 -6.311241 15.777162 11.465883 13.187137 14.219710 15.649012 -4.432567 -1.085440 -0.812615 5.654820 -13.142251 -9.001219 -4.323032 7.623222 -9.062897 12.901697 10.922471 1.607158 5.129223 -7.636911 12.534843 -13.438125 25.530984 12.425194 -9.528884 9.693370 3.899060 24.940358 -6.905813 -10.205992 --15.670206 -68.907083 107.976837 92.984238 1.935271 48.109466 18.111378 -65.590763 74.194699 49.426283 -22.781793 28.032849 -62.221493 9.010452 -12.549902 47.796919 -63.764559 -60.406435 -12.241824 -43.107913 -28.683566 -60.334350 8.189871 30.904922 32.211823 24.258803 -40.725958 3.400202 -72.456923 -89.232074 39.609629 -15.842099 43.561326 16.593568 16.608638 -142.404625 81.472701 73.548262 -20.764336 -89.348157 11.250002 -31.856703 -15.287819 -1.679995 -9.741564 29.895815 6.366994 30.551572 28.640300 28.432727 30.806455 3.899975 30.718451 117.157735 -25.531625 74.862751 52.876409 2.071486 1.440098 23.820546 23.249152 14.966311 47.426929 54.872518 -16.635488 -39.916741 -5.663426 -17.911659 -76.593218 57.587726 -0.571418 -37.460193 -50.074654 -30.543779 -43.497651 -15.696870 -61.680947 50.709240 117.616393 -55.803975 85.179045 34.678631 45.665163 -10.875346 49.360497 -11.143117 83.151966 31.067137 -45.334543 -1.902769 -46.825870 -39.027766 12.209336 9.323622 -49.619596 -51.516204 42.263263 -73.234033 -89.594658 43.645076 16.461731 -11.524832 -62.173545 -9.147689 46.207506 23.959365 -35.388573 -80.713336 -38.933864 37.787778 -18.026585 -35.960557 -11.387833 -5.767725 -15.607669 -3.076931 -82.008468 -13.858127 32.227484 -49.192385 -28.582607 68.326380 -22.049075 21.214222 -11.900249 12.897764 -15.264015 55.260748 6.684962 47.365861 20.540101 4.019008 -74.989787 26.658676 27.265626 21.865841 -18.164439 -1.005147 -1.055223 27.695890 -26.129622 36.378660 -31.335534 41.763286 66.589788 -13.794805 -54.188300 -44.853791 -14.298727 -89.980805 25.381694 -59.868914 -28.076403 17.556432 66.246045 39.485881 35.330549 76.815444 -72.356293 43.810175 -12.907319 11.785430 31.741460 1.802004 34.366375 -39.503406 -65.875401 41.345337 45.554395 13.026848 24.246771 -30.577879 -3.387941 -49.358306 -46.261938 41.610619 18.566888 -5.510086 64.724629 43.286287 114.209907 -69.609394 22.258962 25.057235 -12.913728 15.498491 -9.414130 -92.205710 35.699445 12.693342 27.755722 82.151750 -9.346825 -33.035990 19.724948 -10.402986 17.895144 -56.327654 38.945303 -60.376204 -10.373111 -45.239448 8.757164 -31.833356 -33.661640 -29.399098 -7.204026 92.764614 -53.421415 -70.477690 84.567497 -28.387997 30.885129 -97.655177 70.092808 -44.250873 51.419807 -27.701292 -16.301872 -9.608538 8.461184 -23.065385 8.299408 39.023789 -35.076956 37.066580 87.372468 17.275031 11.965150 16.975614 50.277296 -18.198142 17.284227 -45.306528 73.654631 -4.165000 -20.448929 -9.321387 -37.943494 26.694199 -23.413605 -2.875360 48.036557 62.285795 -0.189140 23.542565 44.740195 31.701744 -45.754927 51.645202 6.951467 37.801725 -39.329559 -9.502754 -3.304941 11.657269 -18.481418 39.561329 -88.992369 -78.312603 -71.129671 -74.572334 -26.912831 2.283784 33.591239 0.272416 -0.717234 -77.592640 -58.656892 68.633249 -31.750310 45.063246 43.674913 48.828075 61.603595 74.369583 -18.615176 -11.188291 -16.789704 -0.157154 -31.990240 -24.888850 -36.079995 56.830136 -36.894338 42.900737 62.423333 -9.322391 28.119785 -10.829973 57.421416 -49.703794 98.488570 46.264353 -34.868563 43.352648 44.250814 90.618658 -15.185345 -51.828355 --4.674300 -7.858046 6.863755 6.190017 2.066471 4.635541 3.915941 -1.951153 4.321824 5.286687 -2.494814 5.006460 -4.811604 -1.669259 -0.110313 1.523961 -2.098556 -5.426197 1.294681 -0.656272 -0.653848 -4.907904 -3.716658 5.311034 1.485987 0.209620 -2.432558 0.044480 -9.770675 -7.760928 0.726499 -0.718193 3.489183 -1.862578 1.695674 -12.655225 4.387832 7.962484 -0.450328 -9.377298 0.340222 -2.511467 -1.048566 1.178581 -0.607114 3.008487 3.194485 1.244070 -0.533696 1.872857 1.380881 -1.261528 2.912692 9.460740 0.205470 7.557556 7.794891 0.153336 1.443955 0.872531 1.977075 -1.598472 4.201566 4.310169 -2.921284 -0.727360 -0.277684 0.271082 -6.202842 1.759567 1.662906 -3.401097 -3.787372 -1.762293 -4.588841 -1.585095 -1.536218 1.215210 9.994174 -2.928469 10.786421 4.266991 6.402653 -0.395203 5.241175 -0.641364 5.532043 2.417137 -5.544406 0.094019 -6.544195 -2.788772 -0.561845 4.724793 -4.064128 -0.341430 3.132578 -4.234886 -7.506925 4.263284 -1.242996 -0.908720 -5.318869 0.368990 3.679457 3.094086 -2.499560 -6.955730 -6.003578 4.134115 -3.701774 -3.552400 -0.531067 0.046804 -0.878619 -0.764270 -5.103322 -1.246356 6.150817 -4.733226 -3.367533 5.429437 -2.741514 5.041638 -1.223054 0.032707 0.063141 2.220019 3.323753 1.448627 2.209394 -4.037076 -10.588107 0.064702 0.758580 4.064586 -2.708961 -0.454945 2.877697 2.544970 2.392139 4.084013 -1.716975 4.880109 3.937928 -0.462979 -2.906439 -6.796075 -0.226162 -4.093003 2.369262 -3.424035 -1.300506 0.771252 4.859069 0.237058 0.528499 6.217297 -5.039831 5.560575 -0.394918 0.834712 0.317040 -1.307940 2.029696 -3.024312 -5.024463 3.508246 5.941002 1.690882 1.900557 -2.505759 0.087662 -2.136545 -5.048007 2.437116 0.350047 0.369196 6.584297 2.882019 12.633112 -6.465189 0.464798 -1.033778 -0.538256 1.174206 -1.432860 -6.850531 3.375760 0.986691 1.518068 8.063893 -0.311815 -3.755216 2.348344 0.000268 0.473466 -4.651370 6.640993 -5.001325 -1.470775 -1.901841 -1.287976 -3.183228 -3.125026 -4.844787 -0.034745 7.808712 -2.828696 -7.649527 2.483146 -1.341058 2.215269 -9.502367 7.260578 -3.166417 4.835888 -2.668799 -1.728638 -0.420750 2.688060 0.318538 -0.114133 3.378191 -4.954723 4.094553 5.840470 0.721976 1.079468 2.665669 2.005239 -0.694269 -1.795857 -3.657585 3.344207 -0.137798 -1.595445 -1.107782 -2.810979 5.491228 1.317491 -1.668434 1.448367 5.855179 -2.278583 0.177256 5.033006 -0.614888 -3.264131 1.692182 1.020669 5.468568 -2.977225 -0.691447 -3.937590 0.349809 1.004983 2.992018 -7.169472 -4.023801 -2.525647 -7.674501 -2.554233 2.084088 2.519601 2.309710 0.920574 -9.185420 -4.239597 5.518137 -1.878829 4.974975 3.439827 4.357047 5.436981 3.348633 0.439167 -2.468495 -1.207532 -0.230122 -4.241962 -1.956756 -0.890256 2.261426 -3.964609 5.344472 2.776074 0.034686 1.980662 -0.456354 3.979473 -4.036388 9.343364 4.558982 -4.985080 1.080358 2.830131 8.762541 -6.669019 -4.225193 --9.480050 -15.604361 14.444437 12.539419 4.426066 10.405216 4.571383 -3.771327 6.339940 11.665643 -5.067914 10.218418 -8.735480 -4.865835 0.386637 2.001805 -3.172752 -11.103222 2.305701 -2.107712 -1.139931 -7.459614 -8.253918 12.118615 2.878110 -2.621492 -5.394319 0.547360 -18.796064 -16.184527 -3.234752 -0.771390 7.260306 -4.894569 4.535515 -19.068990 9.027516 16.630054 -0.490476 -17.641976 0.431441 -4.740113 -2.369883 3.909920 -3.387823 5.936283 7.112905 -1.997404 -2.243120 4.069646 2.424809 -1.386587 5.912538 16.363204 4.466124 14.713792 14.805589 -0.218738 2.612101 2.142362 4.192873 -4.183046 8.791101 4.957047 -5.247101 -1.487310 -0.100663 2.337835 -9.216174 2.539495 2.719074 -8.530378 -2.609169 -4.590703 -11.312160 -4.322415 6.728054 1.885875 17.370592 -6.239820 18.917931 8.861343 11.277941 0.918337 12.009292 -1.642670 11.683607 5.355998 -9.297871 1.283186 -10.508483 -6.054008 -1.277807 9.362695 -9.280625 -1.153393 7.085072 -13.887899 -15.880894 10.327704 -2.550152 -2.613901 -12.016906 -2.230164 8.007856 6.670615 -5.599557 -12.205244 -10.318892 8.377987 -7.699636 -7.973815 -0.656651 -0.442322 -0.531846 1.660796 -10.258542 -1.508985 12.648847 -8.944352 -6.629907 12.183428 -4.067279 11.093179 -3.151389 0.838423 -0.276226 3.508806 5.863319 3.407846 1.082403 -6.753329 -16.467424 -2.128021 -0.528287 0.288177 -5.522211 -1.540586 6.130747 6.151349 5.169964 10.880485 -5.970254 11.186864 8.306182 1.129016 -5.635369 -13.814505 -2.591239 -8.367025 2.216473 -6.319224 -6.322410 2.906911 10.003887 0.045766 -0.302140 11.911245 -5.226771 7.893980 -0.817184 0.859228 0.185337 -7.515548 3.916274 -6.579598 -10.588212 7.596986 12.910773 5.128226 4.527921 -5.045972 0.540493 -3.394529 -11.603202 3.774513 1.197452 1.794424 13.478223 7.022615 20.686722 -10.821944 0.051132 -3.892516 -2.381302 3.156094 -4.269481 -13.959224 2.170353 2.924657 3.118263 17.408551 -0.772871 -7.802488 5.238927 0.480996 0.693140 -9.365981 12.415164 -11.141730 0.780614 -2.798291 -4.062990 -8.048229 -5.596272 -10.383357 -2.749430 15.780469 -6.633509 -16.217166 5.789132 -0.083788 4.945130 -20.056168 7.732486 -6.284060 12.037649 -3.260058 -3.295372 -0.722714 4.345911 0.216794 0.939003 7.200694 -10.442050 8.652333 8.864682 0.824077 2.727694 4.804561 3.806925 -2.555852 -3.794624 -8.828202 6.979932 -1.027992 -4.038964 -3.749123 -5.529636 10.042583 3.050995 -2.703686 -3.395202 8.756523 -5.827326 -1.757458 11.690181 -2.363825 -6.859984 4.128463 1.855760 11.252717 -6.489856 -1.683217 -8.573828 2.003653 3.558060 5.466792 -15.258983 -6.489702 -9.555275 -15.208759 -4.923327 5.806885 3.879000 4.796757 1.032647 -15.771812 -9.003844 12.037053 -3.457502 10.274170 8.279367 10.213605 12.201693 6.142640 2.147667 -4.757438 -3.441173 -1.667500 -9.310587 -5.285559 -1.066711 4.144262 -6.123028 11.876862 5.325732 1.317418 5.435103 0.298842 3.207079 -8.758439 15.909130 9.396709 -10.705938 0.929551 6.752759 14.280375 -15.124119 -9.089942 --6.843692 -26.956460 37.155619 24.173864 5.869506 19.007496 28.560825 -21.707537 28.693646 14.914092 -11.380182 -3.159007 -33.193959 -12.421621 -4.995891 1.033605 -19.295799 -24.948546 1.973147 -11.216336 0.730741 -29.820476 13.361688 11.780399 12.621189 8.687362 -3.428671 -9.676218 -33.302872 -22.161142 30.690001 -2.024856 15.913864 18.615393 -1.489603 -44.830144 25.427752 25.953944 -8.079869 -32.100437 7.068179 1.457851 -14.221714 10.155121 4.621139 10.255944 7.001104 30.786871 5.625912 13.704724 8.506393 -18.724569 6.064814 34.402787 -6.167574 28.981237 25.066469 6.440054 7.629010 21.475297 5.899211 0.598382 13.758959 30.453943 -7.350492 2.263798 11.834898 -13.801897 -39.987558 23.876425 1.854520 -9.659363 -10.505253 -6.044631 -9.958877 2.514588 -5.828490 14.388125 48.212719 -15.039265 43.578040 14.126241 21.064135 -17.621431 4.988201 -4.968504 13.134013 9.461287 -20.071902 -8.853052 -46.228609 -19.147972 -1.931878 -3.719126 -12.249018 -19.955959 20.647569 -19.047992 -33.094154 11.350357 2.102412 -6.979321 -18.947700 11.842606 16.129175 9.450533 -15.109749 -32.048880 -19.996333 15.638904 -27.572625 -1.284813 -2.389364 13.732216 -14.091900 -8.579904 -23.407422 -10.450800 9.988039 -25.836842 -8.581299 23.873403 -17.300150 21.082327 2.969422 2.124711 -2.550879 10.430539 12.336149 5.767214 27.617588 -6.529121 -17.792745 -0.152503 11.558585 29.968201 2.370223 -2.712217 7.848691 13.414817 -5.699863 12.037930 -8.771189 2.694830 15.651093 -14.625666 -16.089080 -13.197324 1.041651 -36.429990 11.387999 -21.071579 -7.254551 4.660590 23.665101 10.538767 5.941094 36.178355 -33.531430 16.530207 -6.190537 1.571301 -9.060525 8.576067 14.462470 -11.235563 -27.011667 1.062824 14.733853 5.610508 5.906662 -17.104301 -8.386460 -26.031845 -26.764560 0.679178 2.239875 -11.713577 8.882537 20.330439 23.460269 -30.203654 1.198343 11.414622 0.672801 -0.391340 3.837600 -42.567554 17.362935 -0.191831 11.110242 28.851459 0.345079 -11.786252 12.182282 -9.735169 -0.750160 -20.669568 9.053726 -25.485484 -5.655310 -21.009487 9.547812 -12.526721 -20.293765 -10.653911 3.809351 29.850100 2.445412 -27.731198 27.647386 -3.161970 8.039164 -35.670193 24.856804 -10.675689 14.026279 -3.890498 -6.946187 -5.483749 2.641105 2.218504 -10.633038 2.119315 -10.457846 30.453965 37.208952 5.770591 4.186685 11.235571 20.539162 -11.190156 -7.843043 -23.654813 15.241138 -7.035833 -23.401528 2.090557 -14.345185 19.568287 -11.071082 -5.738821 25.793107 30.173013 -6.922566 18.997099 8.387383 7.300318 -13.648728 12.722929 16.865385 25.999734 -9.335707 -2.257470 -4.274857 0.925746 -12.127947 22.280663 -33.848716 -38.314144 -6.773231 -47.590585 -15.277645 -15.858463 18.090927 3.960757 7.063706 -35.247486 -18.169054 5.815322 -11.814565 20.630231 20.705510 20.975767 24.477279 32.232314 -13.869975 3.241864 9.736634 16.884764 -27.118782 -16.493481 -9.388376 13.146800 -13.055657 20.072100 18.888632 4.207797 6.785578 -27.386398 29.835948 -28.442115 36.065887 20.431277 -12.241149 15.047802 1.521379 39.157155 5.443304 -15.163907 --6.065231 -34.045544 57.780682 49.883558 -2.627307 22.301383 9.790070 -36.026534 40.839220 19.893336 -7.667062 13.182300 -34.903741 11.651717 -11.233803 27.146522 -37.989200 -32.510949 -10.911078 -26.743715 -19.605864 -30.931716 8.857916 12.775619 19.018681 10.009300 -24.403803 -2.066404 -39.091090 -35.383936 25.287107 -9.942300 23.264423 5.872196 7.874455 -81.955839 40.334164 34.667852 -12.999290 -44.726015 8.001781 -21.701532 -2.237732 -8.312946 -7.577588 10.332376 -0.231161 15.664582 21.696120 12.038197 15.951942 7.594634 10.269103 70.742427 -21.498138 35.906027 22.416281 1.019300 -3.875906 11.174604 12.369927 10.439529 24.266359 26.249023 -8.163496 -26.331448 -6.132839 -14.722593 -39.624305 33.578866 -1.042916 -14.640860 -30.009740 -15.603865 -27.597181 -11.737039 -39.160016 31.864135 61.905394 -35.577073 38.325976 13.736637 20.912641 -2.498409 26.237300 -3.472770 44.706837 14.482541 -20.700985 0.710956 -22.459109 -12.667022 6.226620 1.243131 -23.341268 -40.093129 23.314877 -38.575088 -47.428752 22.171202 12.004250 -3.996878 -32.409515 -7.139033 21.859295 14.074448 -23.878697 -43.570995 -19.525056 18.290227 -0.213913 -17.838823 -0.064263 -7.834515 -7.515533 -11.386723 -45.403920 -6.744307 12.035023 -25.105024 -15.444728 38.111874 -13.881412 7.284555 -4.430333 8.733219 -11.377027 35.904949 -0.432699 26.436097 5.925252 5.184231 -40.126630 9.568551 15.792919 21.461450 -8.367963 1.134774 -7.609377 13.219433 -20.034607 13.108407 -11.477039 20.606286 33.425546 -10.778765 -30.168972 -19.383894 -4.753348 -50.408347 11.085485 -32.639860 -13.562574 11.243820 34.820664 28.298555 22.187641 43.984168 -34.640205 22.936566 -6.515281 1.665898 23.903765 2.426606 20.601715 -20.829820 -35.230905 19.932180 17.936185 9.250400 11.744170 -13.924242 -1.899134 -28.984640 -19.874960 17.408319 15.617850 -5.610372 34.382548 23.960941 49.563776 -41.854181 14.679487 17.314341 -8.139617 9.051983 -5.529180 -48.226847 18.851779 8.150441 5.943913 37.739558 -6.545407 -18.949429 12.262054 -8.229719 13.871851 -29.277210 12.589312 -30.271186 -7.665596 -30.005071 7.379804 -16.078745 -16.046194 -14.922925 -8.481678 49.054419 -34.020082 -33.015473 47.761387 -10.500225 19.190078 -51.077136 40.314837 -22.827288 29.796097 -16.147946 -6.395361 -4.301356 9.529286 -16.491218 7.190059 21.637153 -18.027487 15.080443 49.619770 11.032307 7.963524 6.808128 32.591643 -7.483541 14.536662 -22.380859 43.365004 -3.155191 -13.314033 -0.544016 -19.875923 9.688604 -13.874476 5.319225 32.354839 31.854176 7.349710 17.349076 25.181618 22.490591 -23.387196 26.481941 -0.381356 18.826063 -21.353505 -2.809081 1.757149 10.250416 -13.198791 19.142452 -46.740911 -47.625603 -41.065943 -35.618806 -8.414891 -0.656465 12.082234 -3.490784 -2.529672 -40.036171 -30.552884 30.554557 -19.337529 24.475810 22.350369 22.720723 32.834037 43.859519 -15.889118 -4.607123 -3.599962 1.124211 -11.058080 -10.867380 -24.394574 31.718930 -24.168419 19.080074 37.526657 -7.407317 15.553335 -0.200169 33.338722 -26.068713 53.992550 23.207379 -17.640843 28.910279 30.791958 49.257965 2.649859 -26.796459 --5.061083 -48.240045 92.164700 72.859261 -1.324283 32.248391 29.677253 -62.728913 67.433131 26.777882 -14.296167 6.841474 -62.162078 12.000584 -22.625937 37.148383 -58.847568 -51.986668 -17.827184 -43.760486 -22.569082 -53.529829 33.301708 13.171796 33.624845 18.844811 -31.730039 -11.110820 -59.330817 -58.362872 56.909027 -11.756887 36.401101 19.018478 0.775527 -121.077357 66.595902 52.488939 -24.674242 -66.051634 20.788714 -21.381337 -17.667001 -3.409905 -4.911205 17.496570 -3.096483 42.716977 33.487077 26.726010 28.228815 3.349451 15.013311 101.852608 -37.935677 56.701766 37.210407 9.683398 -3.449520 30.069445 14.408489 20.693085 32.482767 51.510314 -10.455805 -33.423334 0.829399 -28.781364 -74.177934 59.328272 -5.226117 -22.748060 -42.997343 -20.563111 -32.733549 -6.605437 -49.184893 47.775761 99.563350 -51.597251 63.207754 18.809584 28.316535 -19.228343 22.118362 -8.148119 52.926684 22.146290 -28.978626 -13.524509 -54.263435 -25.287422 6.901784 -7.168973 -34.223179 -66.186451 42.858197 -53.902555 -72.606039 25.542333 20.974971 -13.237255 -46.574105 1.940570 31.988002 19.552706 -33.646840 -68.171608 -30.924257 30.472674 -11.093012 -17.679748 -4.617074 -0.452246 -19.355581 -18.387365 -71.319824 -11.371125 11.018356 -43.037612 -22.769126 53.288523 -27.009842 13.954449 0.309148 16.418294 -18.559508 50.303138 2.595336 37.629053 30.677549 10.530857 -48.381055 16.291620 31.208952 44.943535 -8.500494 3.130118 -12.463715 20.305721 -35.599470 18.222735 -20.346418 17.711847 50.713505 -26.107521 -47.632635 -21.860719 -3.508397 -86.552995 21.782681 -54.250270 -20.197273 14.998188 51.941337 41.248292 35.330633 78.717330 -66.014274 34.838027 -9.183501 1.806910 23.809151 10.395148 33.971370 -29.515939 -60.846916 22.036112 23.143213 9.565182 13.913150 -21.742176 -8.596237 -57.226945 -37.743132 21.340366 18.472242 -17.763133 39.091230 41.214925 66.584985 -63.910462 19.636229 35.390527 -12.923623 9.226571 -1.079079 -83.778462 32.030729 9.089899 18.767760 61.971574 -5.367708 -27.423443 22.332229 -17.730818 16.210476 -44.636288 16.449917 -50.408764 -15.056834 -51.314083 15.209066 -19.766337 -29.972353 -16.198613 -6.772252 72.305712 -35.451013 -53.766286 77.970361 -17.105680 22.934778 -80.950913 64.751034 -31.851043 37.707043 -17.807300 -7.293869 -9.496029 7.087230 -23.228716 0.672718 21.989799 -21.577632 37.990829 88.573420 16.934220 9.031997 11.538995 54.352555 -18.083858 20.388149 -40.948513 63.236550 -10.047690 -35.067739 3.521051 -29.458465 14.828690 -33.971797 4.871627 62.925063 54.368023 8.002192 37.499806 29.809087 42.966187 -34.832301 46.350645 10.405059 32.486658 -28.412435 -5.260618 9.582813 10.757905 -29.160235 40.201472 -73.049488 -85.820422 -53.061411 -77.701812 -13.315960 -21.422262 29.538043 -9.754508 -1.376755 -65.992759 -48.286469 35.146905 -30.130366 43.288071 41.675269 38.285724 49.605190 77.143520 -34.061585 4.950417 2.383408 16.990787 -25.856605 -26.479497 -34.815654 48.144864 -29.138019 26.095305 58.528558 -6.132864 23.431045 -24.319228 56.745832 -46.054753 84.505452 35.263120 -20.171774 51.002529 30.740059 78.619400 18.780723 -36.965292 --2.773815 -112.594350 220.825659 185.637280 -14.033084 85.392281 14.783549 -145.527374 141.083833 92.336487 -32.361936 55.053793 -102.151002 39.437027 -42.596573 109.992773 -134.539779 -95.928713 -47.713458 -105.925617 -68.981115 -100.708854 19.050272 43.911385 69.349150 39.959931 -88.735280 12.732958 -110.830295 -186.614448 66.412369 -24.808854 72.983917 -19.968508 41.142037 -281.003693 166.724049 138.790931 -46.337455 -167.319154 27.947313 -51.217924 -31.217348 0.516826 -31.955790 48.949923 -10.027951 62.403509 66.184740 61.578164 54.641487 46.884504 69.862730 252.934720 -54.923594 134.792831 88.607652 8.469821 -6.280180 49.612298 42.040681 46.036509 69.312987 79.759658 -1.134231 -101.090585 -18.438473 -21.568218 -124.708166 117.157073 -9.514045 -91.945819 -98.669814 -69.843338 -97.790472 -28.129325 -156.821485 110.933962 209.485168 -117.279344 124.611548 50.669543 59.945620 0.973697 88.128638 -22.504391 157.891969 60.829381 -62.468565 3.230821 -47.773055 -61.901089 41.560696 -13.850824 -107.372409 -174.987294 88.365849 -158.615975 -163.221297 89.174401 55.852441 -36.250950 -102.363841 -50.314051 79.580652 39.776978 -74.262809 -140.649145 -61.176133 80.724528 -1.258864 -66.789276 -3.738054 -26.929495 -9.812282 6.325781 -160.707274 -4.387117 54.177121 -67.943651 -51.832216 128.787521 -16.191198 16.692601 -22.803996 37.720141 -40.518213 112.309517 -3.846009 113.849588 -2.153181 53.254557 -117.366210 67.358325 56.318374 -4.610645 -24.438563 6.064958 -24.446235 57.901475 -64.063038 82.570652 -73.518290 71.159001 126.560256 -16.261773 -104.332619 -74.753250 -38.633418 -167.495163 40.984025 -104.900519 -88.159005 33.535931 119.272266 85.721318 74.409613 111.685384 -132.041261 57.506849 -25.967934 21.581285 74.720134 -13.905484 61.718439 -70.652988 -125.470876 74.118070 73.749649 34.450563 38.591662 -46.934524 0.787017 -83.619990 -51.681221 75.570233 55.198199 -20.674412 121.560099 97.055097 211.455864 -113.982308 34.085965 56.329462 -49.723978 30.569007 -26.050226 -171.026972 48.230688 37.530345 60.749171 162.876216 -24.338555 -44.352932 48.465180 -26.184731 39.890564 -93.242280 55.499478 -112.317723 -29.660089 -83.885580 23.122846 -60.882186 -40.558763 -65.580592 -42.196330 172.077794 -145.812073 -114.265634 184.840967 -60.667919 47.983400 -164.847023 143.650733 -73.033379 91.154424 -35.143783 -15.336499 -14.803748 14.058262 -75.116350 29.357812 73.347749 -62.186369 53.954574 174.860836 32.410901 13.572399 12.451304 108.404206 -54.196360 55.553021 -96.449980 158.818808 -21.652728 -35.789311 -23.257376 -62.569971 20.423599 -69.755998 17.314771 80.940171 81.192320 17.673467 33.839914 83.767527 77.648914 -81.422604 122.585931 -2.097083 39.262583 -81.346175 -15.853608 15.868215 32.767901 -40.749360 72.001533 -171.808835 -134.135652 -187.105666 -117.166349 -33.495661 -2.124695 52.979794 -22.750270 -25.767660 -130.729838 -128.601159 163.601421 -58.813617 46.009478 94.246881 83.620201 112.024917 152.913287 -34.147355 7.847160 -43.879306 -12.991867 -34.223193 -55.728214 -65.397600 125.585302 -62.179335 58.147113 134.315334 -21.082556 71.073676 -5.686723 79.038260 -94.690271 173.299407 76.844493 -52.431407 78.610116 113.242925 170.367046 -20.337455 -94.914697 --12.604566 -18.905865 17.015390 14.850831 6.244488 12.664001 7.371910 -4.457032 8.415353 15.218609 -5.985706 13.110013 -10.671262 -4.550794 -0.634658 2.995271 -2.343997 -13.191028 2.843422 -2.753451 -1.688093 -10.458077 -9.698413 13.743597 3.142660 -5.097105 -6.457418 0.150357 -24.112220 -19.381018 -3.082544 -1.010294 8.337217 -10.675299 3.628774 -26.586800 10.880186 20.356710 -0.545657 -21.575711 1.168874 -6.062475 -3.177976 6.838264 -4.110928 5.823546 7.479115 -1.822867 -2.345499 4.952291 6.035742 -1.015244 7.336007 24.613835 2.920811 18.584694 18.400345 0.468559 1.937885 2.897365 4.755025 -4.379944 10.113003 7.859107 -6.039206 -1.618056 0.035945 3.302239 -12.512012 2.393171 3.547735 -11.244313 -3.623068 -4.642678 -10.494539 -4.978582 7.378840 0.615469 22.165284 -6.720435 24.944367 9.377941 13.753743 0.431180 13.870301 -1.948762 13.925418 5.862896 -11.860197 -0.366907 -11.917485 -3.088210 -1.028285 13.858356 -11.491669 0.095815 8.477664 -10.793425 -18.831660 11.714525 -3.329007 -3.220658 -13.306302 -1.231877 8.820178 7.337700 -6.928833 -16.412040 -14.680194 11.044863 -8.772592 -10.058820 -2.194647 -2.446477 -0.812764 0.496773 -11.781279 -2.098883 14.952003 -11.138331 -10.328152 13.905822 -6.268739 12.959123 -3.291832 1.467710 0.312509 3.177452 7.542377 3.960518 1.879952 -9.806785 -22.883482 -1.385592 -0.541750 2.532239 -7.539311 -0.982297 7.317665 6.650130 7.261924 13.200202 -6.087953 13.346224 10.354910 0.893501 -6.249615 -15.702536 -1.087469 -10.090144 3.739819 -8.503855 -7.609604 1.258783 11.804154 -0.674370 -0.361446 15.665571 -7.291389 12.565828 0.374828 0.574357 0.585052 -8.799229 4.388174 -8.250975 -13.732944 8.416351 15.730573 4.450533 4.166088 -5.012846 -0.147930 -4.641879 -12.213886 4.765570 0.845927 1.897379 16.093912 7.604041 34.282562 -14.029829 0.769980 -4.489150 -3.325367 3.687082 -5.643409 -16.912254 2.712316 4.035669 3.027087 21.998903 -0.455678 -10.153152 5.732256 0.340689 1.265322 -11.803398 17.930703 -12.530401 -0.658344 -2.816823 -6.170471 -8.211858 -6.294792 -12.155244 -1.545399 18.797375 -8.919716 -20.642984 5.922992 -0.453034 4.061556 -24.981544 15.671257 -7.948224 13.308466 -5.322148 -4.250897 -1.012259 7.724679 0.202329 3.545922 8.490887 -12.426628 11.255692 13.442248 1.029212 3.760797 5.568588 4.480350 -2.643370 -5.109231 -10.185030 9.581482 -0.068935 -5.716543 -4.318703 -7.102068 12.351944 3.590537 -3.565112 -3.550567 12.271580 -8.583513 -2.782340 14.131157 -2.303000 -7.745993 6.366982 1.544988 13.717299 -7.285323 -1.977064 -10.051477 1.642858 4.708827 6.653714 -18.088878 -6.787413 -8.928074 -19.780223 -4.466263 7.599668 5.430596 5.648231 1.970175 -21.946628 -11.125842 16.592634 -4.557883 14.778903 9.881673 12.677341 13.779932 6.876030 3.366875 -5.069415 -5.563644 -1.917726 -11.066035 -5.990347 0.351754 4.262863 -8.457534 13.983164 4.893873 2.483664 6.253133 0.958581 1.992450 -9.994056 20.263929 11.492533 -11.009612 2.155542 6.659941 18.713468 -18.755021 -10.703965 --11.288852 -18.152652 12.988099 12.341185 6.315165 12.154667 8.324952 -2.411153 5.438062 13.964033 -6.088597 11.898803 -7.825666 -6.506031 -0.585259 0.420418 0.276150 -11.016287 4.864605 -0.231128 1.129360 -9.867607 -11.309206 14.609369 1.372409 -2.826572 -3.381727 -0.771445 -22.948059 -16.196154 -2.327097 -0.320246 6.930569 -2.667250 4.764396 -18.494206 6.971186 18.345544 0.651223 -18.555574 -0.658606 -3.687751 -3.527753 7.772743 -1.400275 7.751492 7.629832 -1.399298 -4.047665 4.549524 6.471462 -3.665182 9.265310 14.564286 4.510255 16.738906 15.073004 -0.351238 7.277709 1.714270 3.905642 -4.926044 9.172706 7.909844 -5.002539 0.655042 -1.642864 4.879561 -10.593074 0.574893 4.641144 -8.237092 -5.295296 -2.496530 -8.182480 -4.326301 -3.201302 -2.148547 19.393046 -1.976043 25.184425 11.369919 15.619203 -3.021863 13.377136 -1.344367 11.349642 5.110923 -12.250897 2.925865 -13.354662 -3.735189 -1.849550 12.106894 -11.320564 4.472830 6.391482 -8.276820 -15.658679 11.227427 -4.353600 -3.106920 -7.989980 2.183167 6.649872 5.231588 -5.677129 -14.948494 -12.821202 10.024940 -9.595364 -8.591056 -2.273351 -0.873852 0.526492 1.104531 -7.006613 -1.946526 14.876516 -9.568308 -7.114464 12.033284 -3.158093 12.138332 -2.945743 -0.884495 1.115055 0.409153 8.462019 2.066806 2.132873 -11.908829 -25.417028 1.881874 -0.232141 1.157283 -6.701518 -3.046651 8.839118 6.685890 10.338450 13.375247 -2.379899 11.268077 9.087595 1.112120 -4.098044 -15.872350 -0.546053 -5.109728 3.788714 -4.932548 -4.252125 -1.850113 9.672945 -2.470707 -0.717963 7.236099 -5.024178 11.225684 -0.500718 1.926738 -1.722916 -5.843552 3.073896 -5.760626 -10.197356 8.123685 15.223470 5.095477 4.946932 -4.935671 -0.349932 -0.810289 -10.527108 4.753462 -0.139467 2.983197 15.587428 6.594084 27.743643 -8.317360 -0.839803 -5.538126 -1.221813 2.716761 -4.323665 -13.514643 5.933951 2.422187 1.045619 17.642242 -1.229908 -5.295258 5.708687 0.617698 0.701438 -11.214423 16.568327 -10.531488 -0.938761 -2.313963 -4.657378 -7.915475 -6.725068 -10.583077 -0.020521 15.964231 -4.346706 -14.898958 1.913672 -4.232506 0.788299 -17.799777 11.758070 -6.262716 7.926522 -5.261029 -5.053397 -1.900938 8.491915 2.277039 -0.159010 7.055545 -13.322570 11.304226 9.362497 0.381093 1.693681 6.254824 2.389605 -2.258285 -6.890209 -8.963083 6.008688 0.701141 -1.665280 -3.129812 -5.895256 12.521584 4.810874 -5.010065 -2.266770 11.124022 -8.705943 -5.070368 10.781624 -4.785049 -5.999245 1.316139 2.261569 11.080219 -6.552890 -2.236361 -10.897687 -1.720645 4.566151 3.438222 -15.110234 -3.001637 -4.514464 -13.588987 -5.127664 5.673246 5.716850 8.609162 2.458069 -20.326571 -9.890986 13.155003 -3.612181 5.003478 7.920811 9.681152 12.065599 3.931268 5.392525 -4.464139 -6.058472 -0.964963 -10.190502 -4.226703 1.058865 2.856462 -7.977875 14.617965 2.363434 1.545075 5.020639 1.357067 6.731427 -9.140063 18.347395 10.018116 -10.740411 -0.061977 3.651154 15.218221 -19.129775 -8.451669 --8.843853 -19.536938 16.452376 15.416310 5.823477 11.977642 7.375540 -3.277514 6.997490 14.649428 -7.238605 12.142046 -10.621134 -6.241057 2.478839 2.797449 -3.075579 -12.854702 4.101913 -0.771798 0.219633 -8.858328 -9.888657 14.872290 3.414374 -3.153658 -4.384014 0.034318 -22.453910 -15.352364 -2.533988 -1.624244 8.310627 -1.791170 5.568627 -17.672905 10.230998 18.915697 -0.300776 -19.941040 -0.471552 -4.591921 -3.657740 4.056254 -1.556208 7.179780 9.047332 1.633995 -3.764521 5.499021 3.852165 -4.394755 8.847680 17.404686 5.192404 17.651497 18.909394 -0.230368 5.932093 1.511806 5.432726 -5.301532 9.950035 7.547310 -5.720873 -1.439988 -1.381332 2.116032 -10.603070 1.096055 6.189568 -7.261937 -4.938425 -4.212501 -8.110160 -4.339513 0.628551 0.544223 21.920108 -6.160589 24.622994 13.245413 15.540606 -0.542301 13.663054 -0.792509 12.120240 6.617081 -12.435375 2.741444 -15.320398 -7.093289 -0.344300 9.778736 -11.031959 1.636025 7.233930 -9.020745 -18.225257 12.394654 -3.348108 -3.009233 -8.312918 0.694672 7.763573 6.448290 -6.228992 -14.385733 -10.962237 8.011376 -9.999665 -9.715343 -3.089604 0.855891 -0.558137 1.571707 -11.496953 -2.055760 14.941914 -11.326916 -5.399358 12.815221 -5.504706 13.402640 -4.205855 -1.181042 0.577157 2.477034 9.776955 3.387624 4.276587 -11.434221 -20.819136 1.778138 1.086699 2.246486 -6.040653 -0.882271 9.139480 7.415609 9.399773 14.034368 -2.464580 13.517667 5.542500 0.277563 -6.096960 -17.691988 -3.647841 -6.866847 5.432549 -7.486918 -5.472271 0.399599 11.677097 -1.651332 -0.267946 12.007350 -6.726715 11.729363 -1.302838 3.548765 -1.054075 -6.083560 4.410926 -7.136062 -11.064234 9.241624 16.354465 3.753727 6.160290 -6.621288 1.409504 -4.364866 -11.747073 3.557915 -1.448315 -0.195698 16.640262 6.792240 27.212652 -8.455019 0.239391 -4.539684 -0.570895 2.858065 -3.416000 -16.000436 4.948427 1.851245 3.194177 19.020977 -0.168973 -8.798641 5.498576 0.150691 -0.459577 -10.705720 16.661643 -11.169604 -0.551467 -2.865718 -0.128326 -8.935158 -7.832212 -10.411063 1.658538 18.653412 -5.295450 -16.113208 2.757176 -0.071246 3.347090 -19.516572 14.485096 -7.884359 12.098685 -3.799488 -6.972010 -0.026108 5.301223 0.758725 -0.523342 8.652688 -10.918379 9.798373 8.001040 1.315781 2.176266 7.351659 3.032303 -3.195604 -5.264901 -9.497030 6.638115 0.126640 -3.795061 -4.425219 -6.591667 12.812833 3.908144 -5.283429 -2.955201 11.080272 -7.256687 -2.850493 9.605776 -3.784876 -8.412870 3.435654 3.373734 13.670623 -7.788432 -1.363546 -10.924631 -0.732030 4.330069 7.267765 -17.354589 -5.114922 -4.957776 -13.683335 -7.775124 8.001084 5.872939 7.163888 2.429815 -19.105571 -10.593092 12.216685 -4.466122 7.373564 9.910554 11.796659 13.777678 5.054897 5.115121 -7.225017 -4.507971 -0.488261 -10.494620 -4.190122 -0.410897 4.314997 -7.878196 13.739134 5.389516 1.616924 4.851787 -2.873736 7.099002 -9.720818 19.572428 11.101904 -13.267357 0.406732 7.975004 17.273917 -18.887380 -10.501452 --4.641431 -8.271116 7.020974 6.391523 2.179712 5.747831 2.414143 -2.504751 4.547558 4.904400 -3.332251 5.245928 -4.828114 -1.975154 -0.633209 0.603368 -2.396620 -5.774427 1.692987 -0.402773 -0.197042 -5.869028 -3.315360 6.503036 0.884665 2.201987 -2.447303 0.881910 -10.775874 -7.412521 1.058457 -0.623175 3.937185 0.922200 2.005703 -10.623017 4.442211 8.318141 -0.179685 -10.118392 0.222088 -3.062739 -1.743001 1.818884 -0.141687 3.493481 2.728263 1.037264 -0.890624 1.422716 1.301939 -1.396952 2.973880 7.411889 0.857583 7.884717 7.207927 -0.065460 2.124927 0.688142 1.979260 -1.059232 5.205248 5.294924 -3.946302 -0.870192 0.124566 0.654619 -6.811362 2.305198 1.557331 -2.983501 -2.872715 -1.593721 -3.613188 -1.069045 1.328713 1.319051 10.195010 -1.511895 11.283477 4.311265 7.235548 -1.547319 6.218870 -0.861204 6.455330 2.778326 -5.849998 -0.821967 -8.325542 -2.522389 -0.564173 4.192614 -4.489084 2.313035 2.885808 -5.866603 -7.913439 3.997050 -1.458159 -1.329151 -5.135710 1.344421 4.666935 3.102989 -1.795852 -7.395147 -5.297345 5.003272 -5.136562 -4.078777 -1.689701 0.207424 -1.165365 -0.446442 -4.518046 -1.362497 6.160182 -4.712066 -2.671344 6.142494 -2.818272 4.763356 -1.541763 -0.123082 0.311115 1.553634 3.100724 0.907580 2.854007 -5.228371 -8.733566 1.893508 0.317887 2.308861 -4.156621 -1.420083 3.348339 2.595000 2.562823 3.525549 -2.827293 4.323020 4.614177 -0.677873 -2.822429 -7.163812 -0.118779 -5.313796 1.384788 -3.515814 -1.977135 0.511918 5.565093 0.576946 0.983501 5.824150 -5.013286 5.241100 0.145622 1.368988 0.357919 0.021261 1.887396 -3.471365 -5.639426 4.072958 5.875398 1.360259 1.887106 -2.508544 -0.747121 -2.058227 -5.797832 4.180386 0.819498 2.551529 7.432509 3.267995 12.021767 -6.100155 0.432452 -1.051510 -0.589021 0.966543 -1.788876 -7.285453 3.458747 1.147234 2.695524 9.202843 -0.639603 -3.515929 1.576821 1.160318 0.861765 -5.647787 7.123088 -5.675280 -0.497743 -2.047732 -1.808977 -3.290466 -3.867306 -5.220011 -0.088113 8.512051 -2.326828 -8.639940 3.328515 -3.106840 2.520132 -10.182897 3.551834 -3.965931 4.600475 -2.032698 -1.704721 -1.241351 1.174851 -0.143314 0.126323 3.675873 -5.309483 5.374592 5.411387 1.024242 1.113843 2.691911 1.485571 -0.697141 -2.077688 -4.409924 3.388263 0.266280 -1.144975 -0.868422 -3.447577 5.645828 1.310936 -2.417675 1.469810 6.903851 -2.202562 0.350212 4.848744 -0.848131 -3.654221 1.630666 0.910612 4.946320 -2.791147 -1.527874 -4.196269 0.067670 1.385926 2.864064 -7.743360 -5.074582 -2.500926 -8.799001 -2.429786 0.527135 2.825017 3.323539 1.462107 -9.817174 -4.331580 4.966421 -1.776287 7.266236 3.438702 4.603437 5.662207 3.568354 -0.123976 -2.275517 -1.532949 -0.111983 -5.469339 -1.998803 -1.627213 2.809912 -2.942306 6.471007 3.230728 -0.257722 2.261273 -1.557029 3.783181 -4.290624 9.741387 5.382922 -5.285669 0.708940 -0.177177 8.308059 -6.168708 -4.889641 --4.634799 -10.984978 8.526185 8.491875 3.856423 6.897263 5.462222 -2.577695 4.536975 7.944982 -4.341896 7.364392 -5.174306 -2.702190 -0.298126 1.940827 -1.272118 -7.153317 3.000288 0.246651 1.157542 -6.753611 -4.593756 7.874373 1.684287 0.070188 -2.297511 -0.907458 -14.113050 -9.820465 0.647440 -0.793347 4.653762 0.054119 2.449269 -11.182717 5.326045 10.720809 0.174088 -12.647371 0.046129 -2.126021 -2.704891 3.747485 0.398185 5.684160 4.136117 1.806604 -1.485911 3.765780 3.693574 -2.351366 5.444298 7.613337 1.594349 10.438866 9.076606 -0.028594 4.445359 0.596317 2.679534 -1.755178 5.792532 6.426863 -2.957647 -0.588644 -1.647696 2.052031 -8.142741 1.571378 3.202386 -3.220831 -5.278913 -0.760293 -3.261923 -1.152184 -2.081594 0.189703 12.840395 -0.663163 15.177539 6.552865 9.313273 -3.670050 6.810209 -0.857195 5.939038 3.605824 -7.404656 0.624791 -10.252501 -3.889190 -0.716045 5.424188 -6.426593 2.709660 3.242935 -3.470931 -9.288640 5.587719 -1.874680 -1.926171 -4.118332 2.864210 4.650334 3.676238 -2.608166 -8.938176 -6.783074 5.447573 -5.551018 -5.283060 -2.062369 -0.082119 -1.015496 0.056461 -4.798635 -1.924820 8.501556 -6.156341 -3.173655 6.405503 -2.648566 6.542981 -2.069829 -0.920271 0.605931 0.971180 5.328074 1.917597 4.179267 -7.320193 -14.294275 3.563863 1.008157 2.319557 -4.270473 -1.388221 4.466086 3.836892 5.350810 6.857781 -1.036493 5.430042 6.421396 -0.518748 -3.469353 -9.241330 -0.259718 -3.779251 3.350233 -3.617411 -1.192622 -1.760648 6.366026 -1.636412 1.186505 5.304522 -5.237854 6.789855 -0.240214 2.352617 -0.327750 -0.795774 1.928651 -3.307745 -6.157423 5.540984 8.638803 1.804818 3.023428 -2.805355 -0.015465 -1.651894 -6.247119 3.987772 -0.003954 1.735595 9.191384 3.324957 15.939069 -3.819731 -0.528448 -1.587471 -0.070504 1.214757 -1.631671 -8.942980 5.288210 0.456713 2.573169 10.681744 -0.771193 -3.108472 3.494900 0.679378 0.334117 -6.696571 9.888115 -6.535736 -1.005651 -2.338989 -1.459401 -3.830338 -4.571179 -5.514877 1.533156 10.255277 -0.310354 -9.366353 1.562675 -4.868193 0.409306 -11.112396 7.825106 -4.379880 3.667759 -2.660398 -2.714382 -1.021302 3.110615 0.368739 -1.062331 4.477077 -6.952108 7.056039 6.253672 0.705554 -0.505559 3.802723 1.440890 -1.044398 -2.927288 -4.818463 3.758609 0.390829 -0.041504 -1.339887 -3.607071 7.163180 1.409887 -3.875278 1.618967 7.187594 -4.013349 -0.928047 5.268692 -1.537914 -4.437814 1.803380 1.574046 6.358883 -3.630208 -1.561446 -5.615220 -1.500609 1.695952 3.189470 -8.795113 -3.693906 -1.522038 -9.860723 -3.355831 1.617870 4.600422 4.303962 1.590429 -12.218884 -5.927094 6.551927 -1.962178 4.324888 4.970625 4.944306 6.662973 2.889808 1.413835 -2.256499 -3.812049 0.203746 -5.985106 -2.725035 0.026240 2.390974 -4.373137 7.894616 2.799548 -0.112033 2.323814 -1.906758 6.425807 -5.146246 11.870527 6.148295 -5.816310 0.705667 0.230470 9.993936 -9.826511 -5.321391 --14.009196 -28.386786 27.347458 26.022034 10.067328 18.268365 11.055528 -10.271781 17.303124 24.478970 -11.229954 16.748222 -18.580228 -4.724919 2.202605 9.830357 -8.358820 -21.638746 5.091826 -3.461845 -2.569622 -18.660106 -7.513823 16.016871 7.071150 3.183577 -9.867040 1.204860 -33.524204 -35.582688 3.192861 -3.791373 14.490993 1.954659 5.143460 -38.018558 20.797455 29.934098 -1.943834 -33.670958 1.100373 -8.721396 -7.021705 7.076415 2.636510 14.589517 11.381898 4.058646 -0.357675 9.949054 9.319522 -5.965882 10.992043 26.770888 1.111805 28.011180 25.606097 -0.464313 4.994435 4.509316 7.890287 -3.766980 18.586810 18.956985 -11.081845 -4.884060 -0.404801 1.082609 -24.229306 8.958184 6.397743 -11.937908 -11.120549 -6.604600 -9.470099 -4.312706 0.271031 3.595386 38.249550 -7.174212 38.891926 17.014022 22.552338 -5.752478 19.640819 -4.361158 22.671246 10.585750 -20.776400 -2.168300 -22.325313 -14.970926 -1.328910 20.862248 -15.238749 7.268091 10.371329 -13.832026 -27.925954 14.957097 -4.264570 -3.184772 -22.993864 4.079393 16.670930 10.590542 -6.867981 -25.774228 -19.104703 10.989460 -16.309711 -15.479493 -7.275635 -1.256957 -7.645343 3.823501 -20.394350 -7.727067 18.577788 -19.470029 -12.995464 19.044678 -9.112166 16.460709 -6.157524 0.615465 -0.029048 6.324413 10.886156 8.796862 13.345142 -13.469650 -36.135671 3.716704 4.777172 7.610207 -11.028760 -3.210721 8.150256 9.078202 4.833870 15.904881 -9.834322 20.720113 23.275889 -1.831759 -12.749244 -22.704263 0.374715 -17.850491 10.006675 -15.883771 -4.193007 -2.694375 20.534261 -2.457180 5.081844 26.176714 -20.601889 19.950324 -2.135280 6.420588 3.197118 -3.270995 8.162154 -12.340383 -19.108551 15.014722 24.578433 2.623978 8.254375 -10.140646 -0.038268 -10.697514 -22.547807 13.800029 -1.910195 1.801325 22.733087 8.982047 50.291095 -20.224382 3.608307 -0.714924 -0.901921 4.499743 -2.884240 -27.720243 12.092236 1.943734 10.819743 31.294421 -0.435134 -15.697993 6.125551 1.641483 0.947453 -18.857962 25.953755 -20.605716 -0.046770 -6.860903 -3.917354 -10.894762 -13.734554 -12.220688 5.955111 29.877608 -2.410144 -31.337153 12.273546 -9.566033 6.451882 -37.861078 19.560792 -14.936893 13.465008 -11.580495 -7.169275 -1.807065 7.390142 0.024186 -0.004826 13.652196 -15.244755 18.659567 20.800473 3.074469 2.951342 9.061183 6.811791 -2.430469 -5.840351 -13.214401 15.200192 0.956121 -3.328310 -7.355309 -11.675135 18.788739 2.073713 -9.901708 2.289974 22.335087 -11.658130 0.847306 16.186847 0.689886 -14.678492 11.297266 5.302489 20.619678 -9.779023 -4.252909 -11.964696 -0.669983 1.581172 14.665409 -26.940712 -15.883330 -4.966364 -31.986524 -12.265516 11.178579 13.141711 8.956593 4.692966 -30.932420 -15.029296 20.950920 -6.206999 22.821433 12.995224 17.347520 18.883303 11.880693 1.387350 -9.929993 -9.970234 -1.382141 -17.440224 -9.994440 -1.911916 10.218085 -10.990304 20.649167 10.134124 -0.517736 5.863346 -6.989900 18.132435 -14.758625 33.351514 16.860137 -14.870961 6.315411 5.808908 33.793462 -23.616823 -16.537635 --3.482018 -5.647248 5.781363 4.507018 -0.548055 3.312965 1.749342 -1.527355 2.210678 0.362255 -1.238722 3.458572 -3.462828 -1.222464 -2.091188 -1.068580 -2.833129 -3.919707 -0.374625 -1.503149 -0.820319 -2.593951 -2.884668 5.405193 0.771585 0.489304 -2.465371 -0.629476 -8.324185 -1.026007 1.360049 -0.155643 2.901039 -1.485825 1.862656 -10.403356 1.857722 5.968245 -0.227754 -6.704535 1.066148 -3.239497 0.373162 -1.171224 -3.021122 0.138837 1.209706 0.414105 -0.268789 -0.810369 -1.095937 1.114641 0.908714 8.967402 0.166539 4.669425 5.422518 0.738820 0.028271 -0.008117 0.767320 -0.930976 2.423921 1.085561 -2.366423 -1.411101 -0.731385 -1.103402 -3.380515 1.457174 1.089896 -1.721901 -1.275929 -1.537957 -5.685199 -1.969711 1.759536 2.822642 6.157640 -4.163451 5.751462 1.648194 3.036890 1.685212 4.486776 0.821132 3.712127 1.489508 -2.097094 0.432667 -6.295822 -0.461795 -0.671264 1.380909 -3.439864 -3.945727 3.995014 -6.322728 -5.986379 3.391746 -0.448347 -1.330308 -2.955921 -2.028284 2.288012 2.613867 -3.365854 -4.480523 -3.824787 4.391295 -0.900351 -2.152154 1.442192 0.061770 0.255531 -3.205554 -4.247946 1.100133 3.473374 -2.085125 -2.375938 4.915514 -2.832211 2.795581 -0.399403 0.986704 -0.968140 4.016253 1.580691 -1.010629 -0.647670 -1.683337 -3.417255 -1.711603 -0.602983 4.585001 -2.642526 -1.498789 1.259325 1.957802 1.403692 0.960494 -1.962676 2.575131 0.829624 -1.230503 -1.418309 -4.817259 -1.829822 -4.733828 -1.207117 -1.312612 -2.656096 2.960486 3.508277 2.858909 0.178813 5.382790 -1.739081 3.241060 0.530270 -1.611862 0.785162 -1.179744 1.839614 -2.112495 -4.493971 2.336071 1.887841 3.718943 0.996266 -0.815662 0.024732 -1.884679 -3.900190 1.224404 1.755872 0.966411 5.626491 3.862701 3.193481 -6.062458 0.551255 -1.030972 -2.384836 1.054075 -1.549360 -4.505692 0.153796 1.986841 -1.549897 5.729399 -0.723439 -2.277876 2.284349 0.276791 1.310452 -3.505420 3.158599 -3.889496 -1.126948 -3.244631 -1.480230 -3.082036 -2.438468 -4.859143 -3.715138 5.953200 -4.825946 -6.122812 2.458719 2.054697 3.061837 -7.395526 1.659560 -2.138561 6.505889 -0.325039 -0.401971 0.348330 2.168875 -1.360832 0.282178 2.194211 -4.825882 2.399574 4.050929 1.161448 1.252372 1.490160 2.658531 -1.199814 -0.101498 -3.916749 2.480516 -0.637336 -3.325377 0.427181 -1.903960 2.335966 1.238200 0.930127 0.985523 3.268921 1.202610 0.762292 5.598245 0.087343 -2.204498 -0.271094 -0.933453 3.874435 -2.395121 -0.387815 -3.062139 2.706782 1.398136 0.631272 -5.983844 -4.603208 -6.811882 -5.346448 0.179725 0.125540 -0.185328 1.935674 0.007529 -7.170952 -3.371476 1.450834 -1.917625 5.437962 3.344874 2.925875 5.352671 3.235593 -1.235590 -1.439823 3.067723 0.826925 -2.408873 -0.918583 -3.405527 2.432186 -3.232348 3.417375 4.023318 0.331971 3.121904 1.574283 2.926331 -3.605115 7.466381 3.403803 -5.186454 0.748358 3.082120 4.207374 -1.986353 -3.366271 --4.642415 -14.575125 16.666340 15.478961 2.320978 9.324059 3.691765 -7.153214 8.708322 9.722173 -5.997102 9.165491 -9.244690 -0.931279 0.182981 5.305676 -8.034762 -10.433213 0.626850 -3.500585 -2.706945 -8.777474 -3.495441 9.302946 4.331044 3.601995 -6.156399 0.812820 -15.805245 -14.850597 3.055009 -1.837795 7.984946 2.707588 3.585169 -23.207339 11.294616 14.634788 -1.914242 -17.310045 1.079991 -5.084163 -4.308782 1.107021 -1.373432 5.961383 4.145442 3.913681 0.299272 4.565639 3.067636 -1.013322 6.715498 18.100581 0.349996 14.399262 14.247912 -0.470016 2.390597 1.832720 4.614466 -0.533803 9.039988 9.034498 -4.199233 -4.974859 -0.808300 -1.086447 -11.325483 5.794285 3.856533 -5.826861 -6.188001 -4.733526 -6.275374 -2.560557 -2.198782 5.105026 20.058586 -6.715238 18.610432 8.075239 10.835014 -1.760180 10.435622 -1.346804 13.086077 6.146411 -9.302657 0.194253 -11.265686 -7.407422 1.439658 6.681515 -9.317570 -2.431029 6.252512 -10.330743 -15.120836 8.537492 0.166093 -2.796706 -9.253007 -0.475266 7.870343 4.774482 -4.584119 -12.765348 -8.669548 6.310246 -6.824662 -8.057252 -3.946925 0.817636 -2.232453 1.116352 -12.420520 -1.591037 9.553121 -8.503445 -4.520030 10.948953 -4.036219 6.827410 -3.709921 0.540873 -1.309119 5.602728 4.183980 5.054637 5.326064 -4.679239 -14.525909 3.757681 3.371485 3.597182 -5.994492 -2.578596 3.698926 5.581434 1.680578 8.256737 -3.957968 10.372262 9.894835 -0.877986 -7.919815 -12.636111 -2.391008 -11.423006 4.157234 -8.680859 -4.431111 1.731658 11.163451 1.932040 3.494297 11.588632 -9.868267 10.067705 -1.155972 3.304508 2.759379 -1.242084 4.448999 -6.908914 -10.557172 8.307226 10.379517 2.632405 4.585580 -4.920227 0.328890 -6.091366 -10.654987 7.482722 1.275308 0.666734 12.832138 6.726034 25.617221 -10.192915 2.329281 0.291981 -1.825264 2.008148 -1.701956 -14.550345 5.496727 1.877160 4.812173 16.944588 -0.580141 -7.485347 2.978431 0.603931 0.948089 -9.281661 11.845269 -9.970606 -0.486262 -4.933444 0.034531 -6.148371 -6.317752 -7.183054 0.759769 16.955078 -7.628981 -14.818531 8.854590 -4.210509 4.488409 -19.159079 11.492634 -7.817021 9.312778 -4.971536 -5.071601 -0.652806 1.383510 -3.142163 2.010241 7.500046 -8.163764 7.017326 11.225560 2.389149 1.999845 3.845371 5.004033 -2.440293 -0.455045 -7.997402 9.502556 0.211653 -2.677258 -3.829543 -6.083363 7.925571 -0.576173 -2.633234 3.006644 10.535010 -2.197946 0.817865 8.699792 1.719678 -8.296315 6.125216 1.760129 9.025303 -6.482795 -2.502407 -4.899131 1.096641 0.583949 6.978135 -15.260496 -9.609184 -8.437804 -13.900086 -5.947952 4.188392 6.458640 3.311390 0.890263 -15.972174 -9.382730 11.040166 -4.454844 9.610760 8.458247 9.199469 10.846885 7.968322 0.287997 -4.221082 -4.121170 0.363774 -7.402907 -3.630760 -4.294147 7.619878 -5.586135 9.815808 8.501358 -0.594718 4.969003 -2.527259 10.151733 -7.880624 17.941837 8.825066 -9.874311 3.157199 5.860300 14.893135 -9.238732 -9.409653 --5.256818 -44.540992 81.415488 69.555585 -3.956072 30.381039 12.380352 -53.174611 59.141729 27.584441 -10.393876 15.510414 -46.987750 16.736544 -17.749719 39.370282 -53.556727 -43.815575 -16.846122 -39.387370 -27.531732 -43.545535 14.463587 14.653736 26.830258 14.724703 -34.860932 -1.205205 -50.289101 -52.107807 37.347906 -13.584300 30.973110 5.353118 9.971238 -114.031046 59.751411 48.067877 -18.577054 -60.264159 10.853476 -28.674034 -4.303326 -11.382951 -10.443612 14.305421 -2.866968 23.826790 31.468925 17.381004 22.994198 12.812155 14.546718 99.491169 -31.657299 49.241848 28.640929 2.903875 -6.031402 17.775983 17.069264 17.235997 32.039786 36.682185 -8.921310 -37.388004 -7.985749 -19.742915 -55.011387 48.537267 -3.756597 -22.283422 -42.262289 -21.205832 -38.683376 -14.618390 -58.473597 45.017877 84.946063 -49.451693 50.698476 18.176776 27.311145 -3.100319 33.229831 -5.749167 62.195192 20.269924 -27.390507 -0.291460 -29.736908 -18.190767 10.298112 -2.925975 -33.701749 -60.001313 32.246973 -55.705943 -64.965035 29.144124 18.570822 -6.326826 -43.922781 -11.074754 30.563663 17.537512 -31.678603 -59.275534 -24.843496 25.443794 0.488769 -23.747568 0.055721 -11.466933 -9.372505 -13.909648 -63.687319 -8.889298 14.419613 -32.990074 -20.712186 51.809846 -18.344079 6.844204 -6.297679 12.450341 -16.214867 49.614695 -2.725614 38.676918 6.659377 12.109887 -53.502953 15.490728 22.846978 26.551338 -10.026963 2.973703 -12.055790 18.393745 -30.743367 18.467697 -18.418260 25.379883 46.352381 -14.674724 -41.547180 -24.801704 -8.011670 -70.908641 15.895933 -44.619463 -21.402318 15.101511 48.231164 41.077342 32.396592 59.264959 -50.696217 29.486277 -9.744322 3.392230 33.437940 2.711343 28.050669 -27.957356 -48.909715 27.534667 23.372411 12.181341 15.529998 -19.046655 -2.665238 -40.200071 -24.725728 24.592133 21.177316 -8.260430 45.834334 33.377424 66.942489 -58.331155 21.064341 26.223473 -11.664388 12.695843 -6.864560 -66.855542 26.329849 11.306553 11.734088 52.208879 -9.150035 -24.023452 16.090252 -12.101911 19.079016 -39.948077 15.220365 -41.561070 -12.180092 -41.230538 11.850754 -21.791036 -21.073004 -19.754497 -13.074329 66.074954 -48.177586 -44.427708 69.896545 -15.783641 25.149014 -67.638080 55.410344 -31.272734 39.872387 -20.459865 -7.616192 -5.762233 11.270699 -24.378142 9.569422 29.043674 -23.674356 20.966564 70.043136 15.424775 10.336563 7.918081 45.442526 -12.485267 22.300482 -31.423332 60.712416 -4.931867 -19.489908 -1.039721 -27.405951 11.319682 -22.386267 7.833672 46.249359 43.298594 11.547944 24.546843 33.304350 33.198690 -32.264618 39.496821 -0.204748 22.038757 -29.197341 -3.881414 5.499170 13.406794 -20.215899 26.858263 -64.211682 -65.813565 -60.500655 -48.705411 -10.743207 -4.429695 16.850567 -7.229579 -4.515823 -53.719148 -43.758298 45.109365 -26.645479 30.524999 30.848924 30.755346 43.783448 61.818918 -23.538526 -3.394298 -5.185493 0.910841 -13.947408 -16.576111 -34.180366 46.949111 -31.502525 24.275256 52.997438 -11.190654 21.598840 -0.444247 43.588241 -35.494101 73.188461 30.754070 -21.787574 39.912164 41.858811 68.899094 6.168232 -36.696324 --29.804820 -46.800619 35.432085 33.514539 12.089341 31.192253 20.659698 -4.131292 -1.491667 30.039813 -13.456841 36.587466 -14.189484 -17.510825 -11.458607 -5.071997 5.293014 -22.461714 7.183012 -3.560946 5.065203 -14.206692 -41.374269 47.474859 3.427071 -18.707596 -7.346411 -7.940417 -65.906040 -28.874405 -16.361766 3.284606 14.558505 -15.015235 13.220429 -34.429221 9.842776 51.802211 1.737218 -38.686705 -0.026613 -7.305169 -13.019058 23.705230 -18.661521 12.266029 14.359875 -20.233560 -14.332197 7.060286 22.899916 -3.591699 35.128806 43.397306 17.219788 45.615544 40.640100 -0.142233 27.210908 3.156034 8.556329 -12.298760 16.672933 8.992048 -3.405056 1.324278 -9.971516 15.924733 -11.934359 -5.118826 10.640010 -29.355228 -8.392140 -7.742056 -28.711137 -14.385862 -15.809694 -10.770858 39.166322 -7.389150 62.851068 30.008093 32.385020 -7.722053 35.069533 0.851734 27.652807 11.580470 -20.388360 16.870165 -25.805205 7.032054 -2.458768 34.872633 -41.711178 3.262822 22.003836 -32.521888 -41.566787 33.006380 -8.738104 -14.184250 -2.777782 3.780882 2.032476 4.921550 -18.629264 -31.844251 -31.426746 34.498974 -14.674280 -21.226585 -5.997718 -1.571667 12.134487 4.431811 -15.722576 5.408714 42.349765 -18.301336 -19.051903 31.352882 8.072890 32.024048 -6.636984 -1.322281 0.933623 -2.746591 18.647677 3.711546 -13.956033 -28.169987 -64.352764 1.170728 -0.151089 -16.044794 -20.168343 -8.463511 26.979756 18.533049 38.366376 44.719483 -2.559574 30.573756 9.583845 4.118960 -6.516543 -42.497621 -10.462750 -7.996630 0.428300 -7.795766 -29.143882 -4.771136 19.407255 -4.985428 -6.353132 4.129754 9.834965 24.654455 3.546052 -1.460486 -6.720009 -34.941624 5.404941 -12.982823 -26.077305 19.510983 34.837470 21.142542 11.276625 -5.091701 -1.862915 4.324323 -18.928483 5.842053 0.967772 5.415416 46.156409 21.293054 78.477133 -10.690528 -2.522239 -19.445920 -8.546570 6.804264 -13.230241 -28.786578 3.559268 9.207812 -12.859547 47.640800 -2.381898 -4.574807 18.455740 -3.634157 2.740755 -28.046263 47.426467 -19.921706 -3.324319 -5.827367 -15.978566 -19.096597 -12.636341 -34.012604 -13.203247 37.897943 -38.685742 -27.565386 -0.728876 4.599501 -8.512769 -36.206008 37.882794 -11.725502 30.272638 -6.179048 -18.342938 -2.362553 28.157866 2.255391 7.355774 15.956752 -44.679162 24.755926 17.924622 -0.493691 5.348002 13.091410 7.201184 -10.531659 -15.323481 -26.020965 19.311608 5.780456 -10.198458 -9.092612 -12.637332 23.231172 11.932704 -4.798653 -15.609858 21.369900 -19.234001 -26.480139 30.153190 -15.940932 -10.943484 -2.541739 1.883812 22.954295 -18.394696 -6.069688 -28.293921 -5.169275 18.965211 -0.211079 -36.789911 1.909900 -29.073119 -21.516748 -6.283148 11.450643 16.233682 24.459960 1.468179 -53.444566 -34.865324 51.552310 -12.554968 -4.901293 24.273132 25.205646 32.426352 5.239635 23.660177 -4.646737 -16.317137 5.008687 -16.571308 -5.426092 3.086502 4.088319 -19.325581 37.155596 3.485519 7.748014 19.816989 20.377021 1.315289 -23.581539 41.550520 20.778111 -31.224968 -0.801082 21.293231 21.198559 -56.563306 -18.647792 --7.287048 -13.326364 11.289552 10.551660 4.076809 8.904199 6.125759 -3.092080 4.069150 10.194075 -4.145006 9.202409 -6.384872 -4.232193 -0.729426 1.761750 -1.180669 -8.316086 2.663226 -0.914205 0.509591 -6.936777 -7.379825 10.842701 2.178497 -1.252517 -3.343650 -0.846174 -17.193744 -12.925447 -1.300359 -0.376403 5.604592 -1.872707 3.526557 -13.516682 6.659784 14.403896 -0.024585 -14.146418 0.047930 -2.718238 -2.852044 4.482938 -1.888622 5.643070 5.106198 -0.725887 -2.210373 3.596273 4.227319 -1.793540 7.666666 11.265354 3.069884 13.004404 11.712712 0.085225 5.234755 1.160792 3.121884 -2.943831 6.584598 5.381350 -3.431570 -0.721954 -1.698360 2.963659 -7.993504 1.306681 3.513082 -6.538430 -5.011594 -2.115809 -6.825847 -2.944703 -2.517812 -0.163856 14.658142 -2.625411 18.033382 8.322191 9.973623 -2.186375 9.461269 -0.873307 8.236718 4.160476 -8.084016 1.977931 -9.974177 -3.244976 -0.713669 7.714498 -9.036627 0.839557 5.204802 -7.564132 -12.531675 8.226614 -2.297939 -2.933702 -5.761023 1.065804 4.836608 3.964670 -4.417938 -10.758713 -8.485901 7.571014 -6.272351 -6.660291 -1.713573 -0.281001 0.356498 1.016225 -6.459868 -0.816157 10.790755 -7.097270 -4.958781 9.146961 -1.382751 8.610363 -2.353809 -0.520601 0.321262 1.336332 6.230164 2.573733 1.593863 -7.438239 -16.702931 1.519148 0.605609 0.301698 -4.909454 -1.711115 5.734883 5.236856 6.861678 10.057683 -2.168574 8.144250 6.058646 0.359249 -3.781376 -11.721986 -1.947944 -4.836699 2.831877 -4.112657 -4.021463 -0.415503 7.429905 -1.735826 0.226266 5.634667 -4.166503 7.386682 -0.202336 1.647704 -0.386191 -4.425637 2.607243 -4.408526 -8.273487 6.580915 10.779076 4.003251 3.393369 -3.178884 -0.083305 -1.185279 -7.654936 3.308742 -0.177684 1.342232 12.015853 5.354017 19.971268 -5.591078 -0.417618 -3.160468 -1.172160 1.994401 -2.870683 -10.804941 4.335776 1.750423 1.280129 13.910042 -1.086024 -4.126493 4.908715 0.200132 0.691333 -8.325179 12.122465 -8.143924 -1.047814 -2.656947 -2.881328 -5.492210 -5.060042 -8.246904 -0.410677 12.546374 -5.153029 -10.951228 2.332153 -2.409358 0.821921 -13.537526 9.779774 -4.878655 6.339997 -2.855415 -3.896046 -0.832019 4.741092 0.371321 -0.630083 5.595959 -9.912413 7.767813 7.388092 0.645391 0.857660 4.293069 2.299872 -1.994877 -3.730485 -7.026298 5.446194 0.295623 -1.653708 -2.274347 -4.310856 8.292532 2.383854 -3.471330 -0.488602 7.650337 -4.983544 -2.971827 7.704115 -2.282598 -4.967839 2.300968 1.827827 7.957007 -5.127356 -1.466180 -7.249042 -1.070260 2.957524 3.785551 -11.689552 -3.280934 -4.601273 -10.199753 -3.762478 3.630614 4.931944 5.521469 1.016480 -14.942617 -8.424530 10.729268 -3.038278 3.798918 6.594761 7.292956 9.183868 4.118601 3.457789 -2.753340 -4.273113 -0.257682 -6.559549 -3.467865 -0.010504 3.059122 -5.617377 10.268116 3.305544 0.719587 4.220127 -0.433173 4.953945 -7.012503 13.964100 7.293894 -8.463321 0.688893 3.794457 11.068547 -13.555740 -6.648494 --15.078408 -25.704059 19.711546 18.671734 7.356604 18.302051 8.992870 -5.461771 7.350704 20.206282 -8.690634 17.244172 -11.500961 -9.954102 -1.057170 0.795557 -0.676507 -14.356029 4.726635 -1.902360 0.798184 -12.356948 -16.313203 22.867875 2.662913 -2.110401 -5.304827 0.822468 -31.715771 -24.397171 -5.178052 0.341659 9.891584 -2.197659 7.369950 -21.090239 11.112703 27.518777 0.389352 -24.936434 -0.546727 -5.458676 -6.580130 10.349502 -2.791547 9.616299 9.074203 -4.607176 -6.042544 5.184167 8.498014 -3.952345 15.805841 20.138959 7.504569 24.430882 22.622073 -0.343862 11.257980 3.046982 5.537619 -5.888607 12.681688 10.074867 -6.614193 -0.588882 -1.913045 7.114017 -12.583088 1.312505 4.818006 -14.238316 -5.722820 -5.948619 -12.187156 -6.144872 -5.591034 -1.632661 26.044469 -4.598792 34.325553 16.633314 19.796662 -3.263690 20.144963 -2.148710 17.246241 7.756620 -16.034404 4.105295 -16.757321 -4.981918 -0.698692 17.371450 -17.824964 8.199324 10.999502 -16.027821 -24.396858 16.535100 -4.910185 -6.102320 -9.933715 1.806392 7.920804 5.575920 -7.243116 -20.564204 -16.358558 15.524111 -13.109976 -13.143388 -5.745552 -0.045603 2.089017 4.910915 -11.177687 -0.685336 20.449650 -12.865491 -9.704936 17.760296 -1.913816 16.840624 -4.731880 -0.581472 1.572083 0.166941 10.447238 4.434012 1.858516 -13.935154 -31.442938 3.864391 0.052039 -4.252578 -10.693828 -2.910231 13.148145 9.724934 15.106518 20.741645 -5.904849 17.765689 8.618320 2.007616 -5.634231 -22.938938 -3.968308 -9.133446 4.643436 -7.453943 -9.805464 -1.063773 13.853995 -2.563128 -1.753034 9.240906 -6.568391 14.188462 0.681123 2.875246 -1.935536 -9.435131 4.316501 -9.322065 -15.826216 11.865926 21.458586 6.618373 6.553391 -5.840564 -1.059441 -1.223229 -14.379797 7.586066 -1.443836 3.621025 23.980658 10.974485 40.810088 -11.832509 0.196513 -8.505088 -2.992085 4.066123 -7.050321 -19.792890 6.574516 4.299219 3.472677 26.984937 -1.566508 -6.674909 6.907944 0.396781 1.179010 -16.278924 25.028876 -15.297039 -1.409592 -2.858614 -6.957570 -10.446067 -9.950715 -15.579049 -0.081316 23.677128 -11.425163 -19.591238 5.137040 -2.728343 0.861391 -23.862885 16.085314 -9.190476 12.631348 -6.001609 -8.919195 -2.378274 10.372274 1.549087 0.123497 10.429915 -19.594675 15.241768 12.288228 0.464940 3.735291 8.310848 3.218017 -4.974370 -8.487975 -14.587695 9.815770 2.111050 -4.438027 -6.127040 -8.851481 17.064995 5.614643 -7.108666 -4.493928 15.629977 -11.517773 -9.508009 14.369312 -6.319125 -8.805476 4.123693 3.241524 14.148556 -10.120040 -3.572988 -14.215170 -2.787472 7.571399 6.079034 -23.139332 -3.622697 -7.701905 -16.205997 -7.857942 7.318072 8.825722 12.199900 2.191222 -28.161927 -16.355814 19.243988 -5.752469 4.739991 11.711777 15.852292 17.516990 6.520487 10.188359 -5.420951 -9.636599 -0.901380 -13.502690 -6.180631 1.224900 5.349432 -9.154205 20.681879 4.254212 3.231785 9.294438 1.962478 4.278863 -13.680386 24.842895 13.879642 -16.451716 0.115003 7.634701 18.708731 -28.196415 -12.998683 --2.637668 -6.210125 6.594576 5.715602 0.767999 3.644387 2.721866 -2.373833 5.068382 2.450879 -2.238203 2.813878 -4.651625 -0.159251 -0.128616 1.140882 -4.212959 -5.366188 0.580899 -1.356803 -0.969041 -4.826004 -1.374735 3.659859 1.067623 0.496597 -2.462872 -0.287561 -7.713512 -2.836713 3.713378 -1.249070 3.442198 0.391519 1.135799 -14.025317 4.047676 4.923435 -0.954686 -8.190526 0.440730 -3.811249 -0.652953 -1.079167 -0.563533 1.616268 1.902558 3.821290 0.442488 0.641532 -0.260687 -0.450934 0.011983 10.686736 -1.759642 5.593487 5.754049 0.055791 0.068434 1.231381 1.842335 -0.290045 4.249857 4.824870 -3.088324 -1.639854 0.311537 -1.995147 -6.066519 3.103325 2.194194 -0.876759 -2.992791 -0.887960 -3.952597 -1.304874 -0.725532 3.569372 9.277783 -3.825574 8.075538 2.773827 6.118700 0.076699 4.499551 -0.049589 6.277754 1.959614 -4.509216 -1.074292 -8.394418 -2.724482 -0.279434 0.486615 -2.353299 -2.953489 2.084275 -3.731122 -6.176027 2.951544 -0.562718 -0.393432 -4.877023 -0.206886 4.360007 3.119767 -2.321299 -6.125813 -5.088484 3.364580 -3.605169 -2.700504 0.403631 0.008730 -1.237180 -3.550534 -5.284401 -1.247321 4.123832 -3.775305 -2.109369 5.505844 -4.724088 2.888420 -0.804926 -0.101063 -0.839937 3.241211 1.673288 0.888417 3.907072 -3.863365 -7.716709 0.780231 1.046707 6.925949 -1.613962 -0.621001 1.460520 2.265923 -0.269304 1.212271 -0.421523 3.278803 3.077219 -1.544194 -3.074906 -5.624161 1.114655 -4.967173 1.588504 -3.971046 -0.562144 1.997788 5.057618 3.232592 1.880151 6.345202 -5.541568 6.035266 -0.950844 1.123396 1.219956 0.925106 2.084896 -2.730607 -4.619018 2.299237 3.441206 1.477495 1.355034 -2.813711 -0.352715 -3.468016 -5.332154 1.862024 1.829942 0.725941 5.423799 3.028922 8.094009 -8.285390 1.503865 0.628840 -0.819625 0.717217 -0.887786 -6.283809 3.046795 1.201383 0.657055 6.246539 -0.650600 -4.456153 0.942468 0.428140 0.733283 -3.585339 2.941092 -4.190747 -1.627964 -3.077781 0.367500 -3.215184 -3.213016 -3.768188 -0.338761 7.155830 -2.495974 -7.604745 4.095893 -2.783005 3.178071 -9.643365 5.666951 -3.328958 4.071817 -2.530593 -1.186467 -1.098204 1.785698 -1.370131 1.085962 3.156226 -3.908475 3.419613 6.051431 1.657043 1.819260 2.071597 2.921243 -0.081775 -0.957110 -3.546942 3.574367 -0.895566 -1.827481 -0.260784 -2.903021 4.862108 0.803988 0.223782 3.427838 5.744210 0.313634 2.819356 5.094686 0.321417 -3.009156 1.330838 0.085425 4.423308 -2.186069 -0.254116 -2.898380 0.518868 -0.307407 2.752962 -6.463540 -6.181189 -3.414208 -7.137867 -1.372350 0.268910 1.322827 1.489445 1.370939 -8.803491 -2.820473 1.234359 -2.272127 5.374640 3.278587 3.224674 4.804776 4.451009 -2.241505 -2.416518 1.115787 0.413865 -4.092563 -1.518336 -3.215621 3.242361 -3.812218 4.674158 4.230565 -0.523560 1.519031 -1.354685 5.688484 -3.192202 9.044448 4.640223 -4.517843 1.152624 2.402113 7.784212 -1.701426 -4.009039 --19.858352 -69.901996 102.990659 86.980810 -0.575711 47.080217 20.617155 -57.664854 59.893263 40.828649 -20.226209 35.254539 -58.078817 6.733285 -17.234051 36.196386 -59.912818 -58.735538 -11.811734 -40.196959 -28.849925 -50.958552 -1.185146 38.973092 30.336479 18.961974 -39.963449 -1.419840 -81.832523 -72.848020 31.977180 -13.329570 42.238603 13.443185 18.737487 -138.217428 69.065778 73.382534 -18.638183 -83.787790 11.161319 -32.722792 -15.167216 -4.510986 -14.740509 22.460521 8.056599 20.192070 22.693325 20.522852 25.903239 5.502794 25.352829 118.514781 -18.977423 72.400833 56.286258 -0.767486 5.204224 19.344278 23.356540 9.020801 44.809875 45.970358 -16.761217 -36.192682 -5.564400 -19.181236 -64.569865 49.714660 6.018032 -35.471593 -40.683373 -29.365930 -52.358942 -19.358062 -44.337070 44.918428 110.766422 -54.456076 84.381183 31.995670 45.975486 -8.383520 54.761670 -6.771488 82.248894 29.429806 -41.554239 3.547333 -47.503274 -26.144261 8.515079 21.363196 -49.175296 -46.914433 44.208037 -76.416621 -87.735952 45.826587 13.821424 -12.970264 -57.456926 -9.497823 38.903656 23.174676 -39.875774 -76.134285 -42.620801 37.881516 -17.500744 -35.499199 -6.232920 -4.216698 -11.703493 -6.971279 -75.484185 -8.642604 36.225329 -45.667448 -30.657051 68.701009 -19.880587 25.329587 -12.726500 11.474239 -15.977009 49.112704 6.099897 38.959623 11.812503 -1.809604 -74.603658 10.999999 23.343407 27.890303 -22.042288 -6.785800 2.979098 29.512512 -16.576172 35.628014 -26.243265 48.159806 54.718836 -13.557675 -50.780239 -47.756886 -11.005080 -83.139872 15.963784 -54.574625 -32.840350 18.926087 62.697226 37.605592 27.732699 71.343707 -52.748402 46.973075 -8.330096 6.763517 29.795460 -10.561884 32.057442 -39.046863 -64.063044 38.381663 40.001615 20.949759 22.701648 -26.354759 -4.045207 -44.429104 -49.540971 33.305147 20.786741 -4.870648 66.035359 44.876887 109.197352 -73.337032 20.048295 17.077972 -15.261156 13.765858 -11.346236 -84.676826 28.107552 15.019580 13.817113 81.436302 -8.425320 -35.081814 21.063369 -9.067424 18.441652 -54.378005 40.247861 -54.610411 -7.351307 -43.490480 4.548669 -32.250360 -30.599588 -35.611584 -16.776017 91.239069 -65.515626 -71.143668 76.270277 -14.741823 33.381920 -98.915295 64.431773 -40.702394 57.233510 -26.093375 -17.379644 -7.437784 15.989793 -24.266477 16.973079 38.410270 -43.128371 33.840129 80.651935 16.097317 17.151929 15.120363 48.319932 -17.265400 12.677876 -45.243243 71.069478 -2.088133 -27.669641 -9.709182 -35.354754 26.223365 -16.355064 3.717600 37.494317 56.595811 3.099698 16.820240 49.472427 25.938796 -43.011184 40.592840 4.687401 39.763615 -38.247593 -9.639655 -8.197982 14.723304 -10.434640 33.733855 -86.371301 -74.203351 -70.440980 -71.443944 -22.347873 5.071065 29.289833 4.768096 -1.518152 -78.828213 -56.738323 63.542263 -31.334786 46.230776 45.969657 47.964547 61.847162 66.193098 -15.080973 -11.436229 -13.036869 6.252500 -28.574526 -20.086718 -37.626651 49.483750 -41.341824 45.559419 59.785508 -6.167336 31.773160 -1.880260 56.430710 -49.743856 96.734443 45.409559 -44.563996 38.154575 51.039900 82.158426 -17.469673 -50.580500 --15.274782 -103.244921 175.442342 148.796191 6.494676 75.318316 24.973502 -106.231604 110.060410 64.096899 -26.770875 64.412310 -90.997687 30.817901 -57.677585 75.961457 -99.583059 -93.422176 -32.985190 -71.939386 -46.288481 -87.322378 11.589674 51.621267 56.524415 27.513382 -81.790237 6.782530 -136.951535 -148.934612 52.608024 -20.636938 63.572039 -35.025646 22.882345 -231.024381 130.643973 131.140434 -32.707235 -145.480099 30.224988 -58.855932 -26.144837 -11.330561 -19.184852 37.751159 -0.597129 35.796049 49.946484 41.078730 36.470993 44.826976 44.581764 201.812022 -52.868591 116.126107 84.843333 13.156445 -3.042662 29.884734 32.614076 31.585718 62.333329 69.810693 -20.987202 -77.385405 -16.676366 -15.117691 -104.262905 87.099536 -4.969535 -57.290880 -79.399066 -37.462446 -105.080234 -20.773627 -64.090535 76.191221 177.530224 -86.906177 119.837008 32.824860 62.870077 0.753210 80.080679 -11.847739 119.835123 51.226319 -60.186976 -10.609146 -74.039718 -24.753695 18.751591 18.299818 -85.644885 -122.089165 71.936844 -141.981815 -138.333620 63.866731 30.438708 -31.705793 -87.272947 -31.093577 64.731116 41.800522 -60.825872 -123.583570 -54.642064 68.735303 -3.654380 -62.201213 8.739830 -29.092064 -10.641953 -14.517497 -128.218834 -7.446474 50.969148 -63.550637 -52.292835 108.601708 -29.606564 25.619850 -22.791940 30.140517 -32.732017 77.607815 -2.505162 78.917201 4.268024 19.901203 -109.672724 25.616743 38.869801 32.516658 -48.863108 3.946991 -18.901024 45.165724 -37.132122 51.157726 -60.128201 56.910552 92.762696 -25.332004 -78.555067 -67.903058 -18.128889 -133.730091 26.243633 -79.405946 -71.381684 20.783391 102.110375 52.407723 59.683860 117.403000 -95.708740 57.432842 -4.915235 7.874323 66.364855 -24.866508 48.270718 -60.271297 -114.270250 71.346464 57.449835 33.051498 25.275757 -25.125465 0.311771 -69.648899 -52.058512 56.848278 41.582790 -10.183417 111.650090 73.471803 153.295890 -111.603943 29.882664 38.996478 -41.235853 30.457629 -27.497843 -138.563290 45.363215 33.507205 43.552104 143.254873 -15.625987 -58.566234 47.331615 -10.169895 38.612783 -86.241011 58.817120 -95.188468 -27.180193 -71.860493 2.155920 -40.501336 -39.638827 -66.313987 -39.718075 144.104661 -108.635397 -115.209896 131.630321 -30.820606 48.347880 -164.341183 95.007766 -66.249234 87.822817 -19.553146 -1.673605 -1.795541 22.058048 -64.648180 22.243875 67.056819 -70.601916 62.302331 137.063355 29.025647 15.068450 10.494633 80.102781 -33.597494 35.886062 -79.150203 118.950487 -12.821731 -49.350606 -11.776869 -54.668661 30.371979 -45.747075 13.459987 61.409732 79.452126 17.777558 33.847299 85.184020 65.646850 -67.824179 84.858079 -7.141581 44.472535 -61.530131 -16.645575 -3.134651 29.694204 -17.651247 66.305700 -142.031820 -125.891206 -135.450685 -132.924871 -8.140664 -10.584635 37.857436 -10.169864 -13.506714 -134.828521 -101.530649 115.457035 -47.305142 80.056023 82.990172 69.403256 89.262759 110.043810 -40.298472 1.819515 -25.950681 4.163531 -33.085819 -45.390930 -56.146040 93.803963 -60.393849 54.821850 108.901697 -22.635361 56.949676 -5.663010 63.801105 -75.217348 161.661034 69.333827 -57.909301 64.653294 75.106378 150.463513 -18.834207 -80.401332 --12.664231 -111.479072 161.641381 111.479630 20.245972 77.794848 122.154583 -101.951940 117.211169 64.310515 -48.439058 -5.944855 -138.266358 -30.647498 -44.752752 22.363873 -85.679693 -103.313048 -0.008373 -54.183295 -2.151384 -122.175183 71.803363 41.533970 64.144794 32.133615 -22.715262 -54.638490 -146.110101 -91.494281 131.915570 -10.642149 66.522686 65.133059 -16.581628 -186.213187 107.018886 109.644261 -38.089755 -133.484135 41.050277 -0.276214 -64.862454 41.643329 20.519813 34.426066 15.021707 131.911110 36.225675 61.788261 49.803917 -58.122853 31.532695 160.335243 -42.820466 123.574191 96.138196 31.699625 26.712046 91.873255 26.916146 16.428325 54.470287 129.764643 -17.549603 -6.695746 34.503591 -57.866411 -163.394332 106.518096 -0.637157 -35.493411 -54.774124 -15.669333 -30.744341 14.216892 -54.609988 67.661095 203.528506 -64.626022 175.504642 48.008188 74.265063 -86.933090 15.128540 -19.782219 50.043914 40.466577 -73.101046 -46.008708 -178.807054 -60.320381 -1.625853 -17.140033 -57.871203 -97.373871 95.423729 -67.390892 -141.668089 42.394669 19.718878 -36.602505 -59.456199 56.174591 56.715594 37.979656 -68.821769 -137.056041 -79.120504 64.874694 -92.277362 -13.628743 -14.843861 43.470972 -56.354637 -38.275563 -101.441620 -41.549505 30.542070 -107.621805 -41.542746 94.949840 -59.193700 76.468308 12.606834 14.827801 -11.487068 48.544497 40.755152 36.612474 115.958463 -7.429285 -77.897848 19.540719 60.580725 118.081159 -0.180459 0.365532 19.922615 55.305041 -29.588511 47.585952 -36.658100 14.640231 70.030536 -68.678660 -73.669173 -44.811990 15.993580 -152.487641 44.359526 -93.990442 -34.778380 6.420427 100.162531 46.006154 36.024739 155.572038 -140.678349 73.054244 -14.293812 7.541614 -20.852948 34.395198 61.286759 -48.685426 -121.668228 7.044565 57.000688 18.475434 15.238786 -53.443226 -36.268874 -114.048145 -97.357454 10.010222 15.036870 -55.706536 43.439820 84.622961 104.330089 -123.760762 13.178446 56.767319 -5.917152 -1.252923 13.572578 -186.260619 75.260114 0.837407 47.661344 119.603678 0.979280 -47.019056 55.050745 -47.507444 4.150773 -89.216808 40.832036 -106.627406 -32.163905 -93.255386 41.455537 -36.856556 -82.962170 -36.673666 18.118424 126.747129 -4.395227 -106.767036 121.089185 -18.308457 17.634587 -148.736685 122.642922 -48.477259 44.342306 -17.250734 -27.479316 -23.010212 24.919229 -8.215002 -37.001023 13.952528 -45.398351 130.547005 170.969691 25.267128 14.833782 41.081911 94.870771 -49.074660 -19.352083 -95.982352 76.531540 -22.015239 -104.486546 9.425131 -60.688876 64.284784 -60.360555 -17.650613 128.879774 122.970607 -20.783767 80.766437 33.814848 50.828368 -58.687585 68.519123 57.901792 100.463497 -40.176524 -10.765751 -6.118533 -1.479265 -56.642710 96.125134 -145.081626 -167.455503 -38.841641 -193.946020 -47.259143 -80.982059 83.427007 4.622434 23.050429 -155.129854 -87.607454 18.804252 -54.857896 77.937496 92.983562 85.264741 97.669958 136.855956 -60.120096 31.021644 27.322141 78.981924 -97.270953 -71.722222 -36.082115 57.097336 -56.859996 77.790212 86.151865 19.214535 32.962908 -103.780550 124.967894 -116.925909 154.222159 82.698303 -43.099655 77.249253 11.173534 156.822601 32.954322 -64.554700 --21.316020 -163.759935 295.162792 247.033966 -18.161612 117.949119 30.789849 -188.327733 185.162716 111.791167 -42.096761 79.234296 -148.035176 48.437147 -58.902617 133.077054 -181.530864 -141.610407 -58.741770 -138.898440 -93.541543 -138.376358 20.642533 74.398923 90.383039 47.842097 -120.027176 8.332731 -173.921934 -225.225860 97.071985 -36.666714 106.219677 -11.195549 52.922868 -397.403035 212.592941 186.908345 -60.897492 -225.328571 36.676127 -81.019571 -35.976964 -11.385396 -51.054009 58.077528 -5.613676 72.527428 88.063920 70.830340 72.375962 53.288124 79.304813 349.471757 -76.970973 184.542407 125.461865 6.650612 -7.275610 61.580237 58.511461 52.518052 104.418113 112.869539 -16.498302 -129.399324 -22.368424 -42.205884 -174.192740 155.804486 -4.950790 -110.966668 -129.005065 -88.932090 -144.178113 -48.349439 -178.727884 146.976006 291.656851 -163.180703 183.617000 69.414705 92.771267 -2.331913 130.253851 -24.535258 220.875008 79.584155 -93.002082 7.770943 -83.599848 -71.094723 44.139661 3.675739 -137.934729 -216.684447 120.791289 -217.042338 -228.621918 122.598576 65.856162 -41.624914 -150.177925 -61.631714 107.404950 58.189345 -110.457139 -199.436528 -94.290151 107.812950 -8.106954 -91.310927 -2.401687 -32.134160 -18.051574 -12.155635 -217.892637 -13.475040 77.804971 -104.012336 -76.619411 182.575100 -37.162163 35.597280 -28.627451 48.357078 -55.372595 154.595488 -2.215510 139.638967 3.223437 49.099834 -172.598702 61.965357 71.270161 32.667928 -39.524565 -2.149229 -26.402252 78.271326 -80.001576 100.758490 -84.720912 104.932069 163.941104 -28.341795 -142.347377 -105.819111 -42.518507 -234.889670 49.247430 -148.685410 -109.789874 55.124103 164.669495 119.351524 95.840428 170.764567 -164.349681 97.388866 -32.220756 19.623730 101.635068 -22.830903 88.797199 -99.772791 -174.285624 100.608316 96.083908 54.239075 54.717128 -67.867633 -3.248670 -119.787661 -90.860019 92.897147 75.897536 -24.515045 168.919774 129.534867 283.257901 -178.101573 52.995230 70.461202 -60.282441 42.636550 -35.634647 -232.561656 69.108730 49.745152 55.939218 217.319322 -32.310162 -76.235753 65.099172 -34.417721 58.107735 -134.848672 78.315697 -151.231544 -34.698112 -123.600945 23.613064 -85.001342 -62.875151 -92.400471 -59.769916 239.462508 -201.822320 -167.071158 244.086775 -63.494126 80.878533 -243.836894 191.109486 -102.247934 141.798902 -57.989839 -27.923515 -20.300311 31.147530 -92.753554 45.949431 102.437837 -95.452227 76.064202 237.769842 45.416731 31.552797 23.870231 149.965296 -61.055561 66.625649 -128.149344 214.213891 -23.434237 -61.894205 -25.429094 -89.775909 38.371654 -80.221905 28.328315 113.087585 126.021394 25.130897 52.587512 127.269461 98.295861 -111.102260 147.032961 -2.869588 70.635471 -109.314438 -20.190147 10.184615 50.046158 -51.223160 94.747811 -234.706664 -198.973001 -243.486625 -170.224983 -46.141126 1.483776 68.576707 -20.382364 -26.238140 -190.057315 -165.987383 201.952262 -85.093089 88.159035 128.020271 118.577229 159.709311 206.974455 -51.570711 -3.897348 -44.051498 -5.251027 -53.453921 -65.507651 -100.828891 160.162075 -98.293130 92.537634 181.173088 -26.130654 93.024629 -0.426911 124.506751 -131.409184 247.770941 110.773943 -86.924143 113.523694 155.059133 227.221443 -20.854496 -130.899486 --8.737811 -19.925334 19.647628 18.389226 6.505136 12.386021 7.384633 -6.565695 10.762869 16.257700 -8.818944 12.560089 -12.103174 -3.488417 1.644838 6.521396 -6.231084 -14.898372 3.664521 -1.911947 -1.233667 -11.831082 -5.834144 12.033894 5.278527 0.251184 -6.823774 0.255789 -22.913924 -22.296697 1.097450 -2.637420 9.912207 0.218604 3.892594 -25.600135 13.702703 19.815328 -1.390120 -23.213895 1.063698 -5.852740 -5.319242 4.182483 0.329015 9.390508 8.486178 3.229095 -1.024887 7.521247 5.426256 -3.968564 8.298021 19.887064 2.128756 19.100555 18.922825 -0.541962 3.699877 2.898952 5.953736 -3.327955 12.146171 12.174971 -6.581302 -3.597535 -0.762177 0.755623 -15.414875 5.426869 4.338847 -8.083961 -7.328264 -4.790293 -7.040078 -2.841750 -0.071894 3.512720 26.325458 -6.378362 26.385981 11.647411 16.084211 -3.388135 13.046393 -2.313248 14.612776 7.698157 -13.879146 -1.307258 -15.270888 -10.396659 -0.437079 12.285647 -10.873954 3.883552 7.844392 -10.254285 -19.327469 11.074273 -2.227889 -2.769792 -13.407498 2.181706 10.664683 7.778804 -4.863858 -16.832897 -12.452164 7.900999 -10.650604 -10.708517 -5.162478 -0.301717 -4.194018 2.739593 -14.491338 -4.157269 13.714587 -13.165729 -7.595660 13.170583 -6.579574 11.697363 -4.607408 0.279774 0.159690 4.819679 7.951198 6.202832 9.202679 -9.440936 -24.475407 3.784930 3.422662 4.830707 -7.758093 -0.750164 6.640392 6.799759 4.432007 11.828384 -5.746670 14.461615 13.438187 -1.144564 -9.648170 -16.779974 -1.027440 -11.416933 6.405394 -10.887362 -3.569978 0.211718 13.994758 -0.611211 2.824727 17.800528 -13.249710 14.033292 -1.220028 4.251308 1.507539 -4.076041 5.413189 -8.876371 -13.046740 10.628456 17.031574 1.626936 6.268722 -6.877109 1.007908 -7.767702 -14.846726 9.168893 -0.309538 1.028388 16.181911 6.818163 32.547796 -12.580588 1.605376 -1.233759 -0.816848 2.491691 -2.600076 -19.308587 7.865740 1.539086 7.838562 21.639604 0.156348 -10.737459 4.433103 0.631561 0.229488 -11.898401 17.543386 -13.617086 -0.071657 -3.968768 -2.221080 -7.746782 -8.869839 -8.601195 3.286873 20.932767 -3.674277 -20.788576 7.668710 -5.629839 4.494121 -25.812425 15.781644 -10.187827 11.134842 -6.452168 -5.590681 -1.417569 4.409652 -0.739492 0.616410 9.602742 -10.214803 11.933501 13.969823 2.123232 2.149319 6.591603 4.760139 -2.426606 -3.578141 -8.843458 9.484940 0.384903 -2.933173 -5.278614 -7.721665 12.710783 1.468533 -6.150323 1.466451 14.160021 -7.274556 0.660038 11.222400 0.212037 -10.427075 7.553764 3.100488 14.797143 -7.701306 -3.159807 -8.647008 -0.245627 1.773268 9.295968 -19.056772 -10.507528 -6.555228 -20.404811 -8.281142 6.541213 8.911378 5.187347 2.614881 -21.180881 -11.007720 13.002264 -4.446245 13.987427 10.132560 12.267715 13.610579 7.812687 1.626545 -6.802318 -7.097481 -0.439121 -11.821710 -6.249142 -1.653818 6.546993 -7.958102 13.797157 7.734221 0.374104 4.576132 -3.424694 10.521883 -10.201078 22.768774 12.231589 -11.796526 3.488288 5.305745 20.873237 -16.818537 -11.926538 --10.275127 -57.699992 95.621893 83.138805 -0.740721 40.770181 14.072194 -58.991464 63.312869 40.061142 -17.952713 23.465095 -53.049443 10.523436 -13.978267 43.542767 -59.777171 -51.046016 -14.845251 -38.975818 -27.318745 -51.325522 8.728462 25.902878 29.613535 23.683563 -39.344817 3.510812 -59.916968 -76.264491 36.866505 -13.160264 37.899595 14.817672 13.503138 -131.004954 73.232029 64.473110 -18.967956 -73.413753 11.038162 -28.841235 -13.135878 -6.684368 -13.923655 23.823718 1.292051 25.240858 27.196027 22.775448 26.352755 7.718644 28.080275 107.749553 -23.679386 63.993614 43.932481 2.673397 0.585371 19.620859 20.696144 16.604295 39.986398 45.972824 -11.620091 -37.243479 -6.876332 -17.882899 -64.679703 52.373222 -3.173028 -32.190037 -45.493988 -26.578437 -42.134922 -13.923198 -59.622609 47.689990 101.124530 -52.478722 70.242808 27.088469 36.987551 -6.658403 41.476021 -8.459584 72.255476 27.282753 -35.524301 0.021103 -35.980976 -32.239232 13.543224 5.046882 -45.914256 -53.539853 37.318082 -67.835095 -77.859489 37.209722 17.106452 -11.633920 -51.707487 -11.942241 37.917561 18.327732 -31.088076 -69.100169 -31.467342 33.271697 -11.126412 -30.957494 -8.950793 -4.790846 -11.441714 -3.430283 -73.184307 -8.251970 25.151458 -39.395741 -22.721562 60.477827 -17.755609 14.069056 -11.541130 10.934423 -15.973365 51.398478 0.759888 43.122016 12.651885 10.115601 -62.351700 20.915178 26.014535 20.984878 -16.504289 -2.525846 -4.358049 24.444284 -26.069558 30.667314 -25.860021 34.936820 56.556220 -12.179492 -48.351027 -37.795010 -16.409307 -82.072056 19.609607 -50.594243 -26.348586 20.037618 58.573576 37.578411 33.039028 65.093630 -63.048189 36.420814 -10.914998 7.744457 30.632779 0.071007 29.154291 -34.193606 -58.039751 38.065432 35.180149 14.872092 20.242536 -23.489039 -2.864124 -41.793989 -37.272319 36.582987 17.780705 -5.188883 55.700538 39.401887 95.560351 -61.004952 21.689880 24.196647 -12.919780 14.180750 -8.161281 -78.667955 31.282978 12.016489 20.540244 70.636672 -8.814068 -27.520041 17.076479 -10.537025 17.058027 -49.573759 31.065511 -50.429162 -9.657953 -41.985962 7.217231 -25.946218 -27.484635 -26.100380 -12.004868 80.744237 -55.008165 -57.483688 76.670579 -21.329127 26.763757 -81.681250 63.067095 -38.121057 47.567877 -22.311464 -15.318700 -5.749439 5.980355 -23.980553 8.839935 33.818716 -31.242857 27.544329 77.475068 16.419242 10.333779 11.042767 45.040989 -15.740923 20.090996 -40.002405 65.960333 -3.346808 -19.416466 -7.771212 -33.070971 19.260114 -22.796296 0.594249 45.364427 52.843942 6.254263 20.532935 39.176714 31.970912 -40.354118 43.918833 4.566197 28.982642 -34.688081 -9.042617 0.350176 12.867302 -16.784438 32.598668 -77.193621 -69.240959 -70.581778 -61.155230 -20.837742 0.199278 28.064347 -2.706467 -3.524058 -66.089248 -53.075336 61.633110 -29.789185 35.698874 38.598127 40.461567 53.171595 65.898161 -18.163599 -6.846833 -12.554463 1.356392 -22.533441 -19.070377 -36.404080 54.297025 -32.778872 34.794689 57.428974 -10.966333 27.426672 -4.718590 50.435869 -42.510261 87.242107 37.685135 -30.934607 38.326475 41.793913 75.785073 -8.564326 -45.409691 --13.310298 -22.571571 18.736922 17.545382 5.301488 14.742876 9.592576 -5.210068 10.322796 16.645311 -5.846076 12.775515 -12.353725 -5.540831 -0.696755 4.009561 -4.335571 -14.463165 3.070894 -3.448870 -1.578529 -12.955432 -11.184506 16.275874 3.050179 -0.553840 -5.986980 0.597642 -27.271932 -23.761483 -0.054424 -1.450852 9.530171 -4.979236 4.800463 -32.183368 13.195250 23.388822 -0.453054 -24.877093 0.194902 -6.872021 -3.684978 6.751323 -3.052317 8.183851 7.152762 -1.190039 -1.935124 3.613892 5.021957 -2.239669 9.449160 26.944097 1.415305 21.686183 21.164562 0.337342 5.238636 3.347336 5.123974 -3.774950 11.382786 10.997249 -6.373971 -2.105103 -1.309293 1.644236 -14.369082 4.272908 4.814388 -11.059568 -6.527215 -3.692403 -13.076370 -6.186285 -1.775577 1.949329 26.219657 -7.636753 30.686612 11.809547 16.896656 -0.946185 16.872110 -1.902155 16.962136 6.591954 -14.487993 1.708247 -14.245137 -5.217072 -0.709607 16.277079 -13.352352 1.097041 8.517324 -12.114867 -21.664682 13.354583 -4.663995 -3.175427 -14.071256 -0.063052 9.767336 6.222373 -7.723357 -19.959182 -17.629323 11.520246 -10.382711 -11.028712 -2.634920 -0.232339 -1.109187 0.649982 -13.153177 -2.904744 15.511519 -12.504650 -11.354101 15.922385 -5.195307 14.026707 -3.144209 0.603228 -0.624735 3.540488 8.844777 4.746695 3.302404 -11.068281 -29.728151 0.149664 0.732867 4.118969 -8.477260 -3.793175 8.107177 7.802289 8.539629 13.368274 -5.763240 15.783121 11.707994 -0.144076 -5.574208 -18.249646 -1.069106 -12.399340 4.852016 -10.249105 -7.522741 0.561640 13.584810 -0.746599 0.998519 14.619407 -10.497070 15.107720 -0.507482 2.439216 0.950381 -5.477632 4.531806 -8.297027 -14.357363 8.875054 16.141602 6.680279 3.798986 -6.675728 -1.514938 -4.033663 -14.987133 7.450903 -0.842974 1.162176 18.685050 8.700605 40.689418 -17.687830 2.359974 -3.938053 -4.299276 4.187736 -4.406885 -18.838886 6.374963 3.846389 2.268861 22.268253 -2.103200 -9.085270 5.893962 0.275654 1.707535 -14.884500 20.360427 -14.656387 -1.798002 -5.454505 -5.919062 -9.416967 -9.191842 -13.345128 0.385379 21.972577 -10.536850 -21.279401 7.843246 -2.830231 3.486532 -26.202100 17.760936 -9.162384 11.927375 -8.655476 -5.956799 -0.736193 10.748850 0.922813 1.392164 9.764161 -17.095235 13.638683 14.311826 1.701466 3.931917 6.701244 5.772656 -2.406708 -6.413173 -12.786101 11.556641 0.133793 -5.839182 -5.640378 -8.504977 14.788352 4.164863 -3.575087 -1.085066 15.355583 -8.547581 -4.003260 15.815550 -2.840829 -8.298453 5.471520 1.139985 14.609076 -7.660158 -2.093711 -11.542905 0.088006 4.325482 7.915796 -20.608857 -8.335454 -7.801083 -19.892823 -7.821803 8.174227 7.610966 8.729535 3.410499 -27.395539 -12.796282 17.573887 -5.319507 9.789652 10.007417 12.815690 15.535544 8.481936 5.115532 -6.488301 -5.501573 -0.505665 -11.505012 -6.057490 -0.962396 6.019357 -10.758051 16.353600 5.960291 1.464621 6.825206 0.135686 8.264072 -11.962663 24.865269 12.195066 -12.622218 2.816094 9.229353 21.652423 -19.016281 -11.747970 --5.516747 -14.247393 15.086377 13.994285 1.735844 8.997626 4.500010 -6.636971 7.510879 8.538850 -5.218520 8.726598 -9.209701 -1.531413 -2.235217 3.711510 -6.999104 -9.170356 -0.189676 -3.513276 -2.047804 -8.420926 -4.620451 9.983216 3.905976 4.051930 -5.344563 0.561029 -16.589499 -14.745425 2.052718 -1.002603 7.014726 1.078749 3.100667 -20.329512 9.674333 15.825449 -1.866328 -16.167883 1.519152 -5.147504 -4.333678 1.181758 -2.225740 5.077973 3.065028 1.887416 -0.140953 3.021823 2.962989 -0.356993 7.412886 17.224718 0.002911 14.340348 14.594621 0.482516 3.298238 1.805240 3.822550 -0.302110 7.800850 7.731406 -3.836398 -4.210060 -1.050665 -0.287522 -9.671621 5.148974 2.888980 -5.961706 -6.166562 -4.449272 -9.124001 -2.699428 -1.981516 4.062616 18.254964 -6.423273 18.235119 7.731130 9.330093 -1.569415 10.168843 -1.011970 11.704764 5.409110 -8.325129 1.251299 -10.692153 -5.108530 1.198550 7.670113 -9.806280 -3.649623 6.811396 -13.219770 -14.885555 7.818868 -0.146979 -3.640779 -6.915982 -0.249163 5.657783 3.552037 -4.856924 -12.588823 -8.526693 7.509994 -5.433489 -7.283352 -2.549509 1.258618 -0.657135 1.050727 -11.210911 -0.562864 9.305573 -7.798912 -4.670710 10.776227 -2.255278 7.132999 -2.871121 0.688098 -1.191650 4.457595 3.680316 4.571923 2.623295 -3.256020 -13.963233 1.621792 2.802447 2.332997 -6.551012 -2.460297 3.959676 5.309559 3.270934 8.028700 -4.755332 9.182017 7.431381 -1.226787 -5.864107 -12.298079 -3.530381 -10.863265 3.239187 -6.800328 -6.189929 0.452124 10.009994 1.476240 2.607786 9.633955 -7.299437 7.586382 -0.016268 1.959911 2.299145 -2.924234 4.057948 -6.138195 -10.793121 7.635672 9.107289 3.834101 3.646393 -3.254921 -0.468769 -4.655566 -9.005636 6.487459 0.964396 0.011071 13.249054 7.422530 23.735699 -9.569017 2.951829 -0.531143 -2.476399 2.579919 -2.284446 -13.578727 5.368974 2.455404 3.874274 16.299960 -0.744439 -5.453225 3.819881 -0.096753 1.387928 -9.718705 12.078619 -9.623991 -1.435918 -5.604755 -0.502279 -5.215325 -6.192310 -8.003810 -0.750055 15.881658 -9.588107 -12.462103 8.138627 -1.058720 3.625973 -17.169441 10.608721 -6.588968 10.242140 -4.067710 -4.516410 0.277894 2.364649 -2.903723 0.794906 6.809924 -9.956436 7.353137 9.651135 2.053438 2.218208 3.550226 4.922911 -2.830328 -0.874498 -9.003180 8.708885 0.745826 -4.194996 -3.070337 -5.727216 7.657773 -0.212898 -1.530824 2.474378 10.100887 -1.832635 -0.344796 9.172747 1.560875 -6.871986 5.211437 1.494259 7.668597 -6.347186 -2.224788 -5.159367 0.815499 1.053877 6.424014 -14.525892 -8.583770 -8.850840 -12.491627 -4.663345 2.353018 5.973501 3.982511 0.586108 -16.495893 -9.955836 11.676269 -4.603770 6.630589 7.961087 8.871630 10.224361 7.399371 1.242862 -2.599263 -3.287197 1.530848 -6.505628 -3.598054 -3.628275 6.712382 -5.408841 9.512428 7.416010 -0.706572 5.709824 -0.483626 8.306733 -8.006857 17.002500 8.040813 -9.696046 3.267460 6.921163 13.484840 -9.380878 -8.417805 --10.135069 -17.691562 14.029174 13.214540 4.499134 12.017019 7.510608 -3.968722 4.512211 12.586429 -5.180842 12.258135 -7.800618 -5.865018 -2.487948 0.608347 -0.964516 -9.991420 2.690236 -1.858233 0.704385 -8.878329 -11.306889 15.867782 2.002011 -3.174266 -4.009294 -0.740796 -22.695174 -15.542678 -3.587324 0.359235 7.063542 -4.339984 4.900072 -18.228288 7.447161 19.627565 0.079580 -17.652156 0.354108 -3.849204 -4.110318 7.031527 -4.648029 6.453926 5.555704 -3.034830 -3.778119 4.040385 6.456848 -0.971903 10.766386 15.907040 4.362260 17.158186 14.879650 0.150808 7.137814 1.240191 3.814191 -3.506081 8.344896 5.993661 -3.409773 -0.938313 -2.570104 5.049249 -9.330458 0.668641 3.800265 -9.447485 -4.890921 -3.068406 -10.545838 -4.738958 -1.873100 -1.482093 18.257149 -3.368113 23.493204 10.532486 12.504057 -2.143744 13.403895 -0.792289 11.126144 5.282841 -9.659421 4.189876 -11.337692 -2.153011 -0.455920 10.845099 -13.105528 -0.398821 7.714880 -11.746302 -16.704190 11.567932 -2.827359 -5.043029 -6.068145 -0.026306 4.878757 4.544013 -6.789665 -14.596106 -11.644167 11.489683 -6.979887 -8.843735 -1.925134 -0.202614 2.325250 1.090712 -7.723896 0.290805 14.690071 -8.164665 -6.100924 12.533589 -1.040255 11.621948 -2.967371 -0.251334 0.084307 1.246773 6.785891 2.895325 -1.073154 -9.323070 -21.461384 0.931311 -0.176138 -1.408275 -7.086843 -3.477819 8.278949 7.289390 10.656486 14.712420 -2.791827 10.690159 7.367473 1.630024 -3.666493 -15.495416 -2.753743 -6.462353 2.433685 -4.381186 -7.734314 -0.368865 9.588236 -2.234033 -0.563954 5.905530 -2.502423 9.013562 0.354777 0.592934 -0.747996 -7.798954 3.127483 -5.581005 -11.301242 8.757775 13.508383 7.216813 4.298366 -3.013853 -0.547068 -0.166690 -9.165587 3.832924 0.659955 2.450192 16.608835 8.253703 26.969546 -6.742098 -0.346127 -5.511249 -2.903154 3.406089 -5.097121 -13.499865 4.066908 3.357619 -0.207852 18.877701 -1.679785 -4.054236 6.682126 -0.092281 1.244207 -11.821185 16.353663 -10.335046 -0.738869 -3.571204 -4.835099 -7.384405 -6.139328 -12.064817 -2.679684 16.453269 -8.868092 -13.237805 3.196302 -1.649870 0.662303 -16.742797 12.095766 -5.724614 9.917757 -3.553570 -5.356223 -0.585477 7.674679 0.067146 0.683070 7.119925 -13.963835 10.065250 9.088643 0.570420 1.313028 4.961042 3.281655 -3.466109 -4.734848 -10.764511 7.548695 0.595735 -3.166766 -2.929218 -5.757750 10.519165 3.351013 -3.158209 -2.452251 9.540990 -6.811165 -5.973591 10.978607 -3.675782 -5.795454 2.121215 1.731721 9.173853 -7.051591 -2.122909 -9.768671 -0.361159 5.269806 3.458624 -15.582670 -2.903306 -8.626323 -12.202396 -3.738007 4.709297 5.597883 7.667932 0.979469 -19.891652 -11.780991 15.773985 -4.427247 3.557647 9.331878 9.954873 12.482255 4.698688 5.953706 -2.352499 -5.742896 0.051618 -8.219983 -4.018099 0.405556 3.616246 -7.651582 13.782580 3.585399 1.428154 7.099749 2.103407 4.556499 -9.514391 18.003450 9.130367 -10.999793 0.600260 5.880731 12.731901 -18.499673 -8.444639 --11.513257 -24.162481 24.893898 22.907692 6.504984 14.555574 11.602448 -8.219440 8.943314 19.592093 -5.951888 16.294501 -14.475167 -6.474580 -1.256475 7.445077 -6.156495 -15.383058 0.581065 -4.740882 -0.896080 -11.425382 -11.033611 18.460465 6.956889 -4.842967 -8.439659 -2.019802 -30.587115 -26.241774 -3.180738 -0.962371 11.497901 -6.811601 5.217245 -28.141146 15.967618 29.414440 -2.324888 -24.745049 2.695887 -5.153846 -5.943419 4.634523 -5.409211 8.383506 7.486506 -4.150692 -2.604584 7.388347 8.144460 0.245329 16.205836 26.209298 2.942691 24.187858 24.543201 1.074939 6.767397 2.272545 6.518004 -3.266550 11.792693 7.270551 -3.994388 -5.101743 -3.436019 3.975773 -14.459528 3.032747 4.674042 -11.970487 -8.564656 -5.581460 -17.394616 -6.183170 -1.004712 1.172728 27.892016 -10.564775 31.945066 15.475965 14.317895 -0.598827 16.068043 -0.709653 14.629704 8.568346 -12.016738 5.071830 -16.004985 -6.910980 1.140618 16.727678 -18.004506 -6.407704 12.794892 -18.375983 -25.204730 15.728614 -1.150317 -6.513652 -13.258125 -2.827000 6.407243 7.320613 -9.514451 -20.337525 -16.034465 12.566853 -7.116832 -12.950810 -2.204017 -0.688927 0.931644 3.036492 -17.825980 -0.048717 18.190363 -13.273487 -10.396468 16.351198 -3.424329 15.849146 -4.916306 1.722079 -1.984947 3.870369 8.326015 8.702557 1.520796 -8.736258 -27.070823 -4.811240 2.789355 2.657356 -8.345272 -2.558120 6.821588 9.690939 11.239624 20.952374 -3.686447 16.904761 9.584327 0.539874 -7.167061 -20.532531 -6.488112 -12.342253 6.312790 -8.759989 -10.198360 0.093183 14.588514 -4.370371 1.155665 15.234729 -6.287857 11.448533 0.158029 0.909438 1.743093 -12.857328 5.936316 -8.395736 -17.297195 12.351550 19.204158 8.968660 6.407531 -4.172094 1.126398 -4.639840 -13.696671 3.285633 -2.160029 -3.369000 21.816132 11.214699 40.407207 -11.422890 2.167366 -4.272021 -3.627276 5.720151 -5.626474 -21.487395 5.091369 3.970699 1.902506 27.272027 -0.698414 -10.283576 10.750415 -2.060618 0.659081 -15.128527 22.595220 -15.143344 -1.141836 -7.212929 -3.967558 -9.666836 -9.009250 -15.271144 -0.914740 24.182940 -12.640535 -19.862324 7.332050 4.423365 1.861527 -26.675433 23.378813 -8.687316 15.724005 -5.225619 -7.789580 2.039300 8.969481 -2.996037 -1.096980 10.930897 -18.293219 12.699878 14.151328 1.673614 1.939263 5.865238 6.280724 -5.081550 -2.683096 -15.541236 12.760424 0.123079 -8.279486 -5.952911 -7.868360 14.239767 1.172968 -4.179907 -4.263668 12.453588 -7.863361 -5.751276 14.648183 0.254828 -10.241526 7.997419 4.695365 14.987750 -10.066058 -1.058965 -11.364870 0.856885 4.445791 11.401189 -22.726950 -7.482301 -10.848944 -19.820901 -6.896924 10.320685 9.234688 6.891100 0.055868 -26.973587 -18.117758 22.226357 -6.727768 4.320227 14.734442 15.441120 17.810491 8.273932 5.859223 -4.573431 -7.130290 0.607513 -9.347037 -8.140288 -0.252717 8.336875 -10.616044 15.437922 8.825271 1.434057 9.685294 -0.749879 8.614911 -13.251979 28.121674 12.075068 -15.332144 4.673427 15.107060 22.862279 -24.801741 -12.469363 --6.328825 -10.945429 10.714110 9.661444 1.664679 7.421500 3.479177 -4.644327 4.508750 7.637868 -2.522994 6.790008 -6.831600 -1.923468 -1.698693 1.849367 -3.397713 -6.923993 -0.598467 -3.529946 -2.108712 -5.537927 -5.259124 8.773290 2.147040 -2.124096 -4.394444 0.425341 -13.263564 -10.503701 -1.125622 -0.091517 5.223522 -4.730015 2.501585 -17.156833 6.810400 12.543034 -1.229386 -11.591766 1.128042 -4.430553 -2.218663 2.427399 -4.537431 2.333397 2.346995 -1.536877 -0.615501 1.825299 3.582539 1.217790 5.087977 16.234923 0.980773 11.164125 10.593982 0.421052 1.317329 1.893914 2.635254 -1.043327 5.996433 3.625993 -2.751669 -2.465788 -0.434946 1.217790 -6.662136 2.597740 1.526875 -6.654237 -2.530367 -3.607556 -8.453758 -3.877431 2.198084 1.613340 12.699037 -5.649174 13.206542 5.445113 6.126769 1.102709 9.131547 -0.748687 9.456709 3.406655 -5.632924 1.633106 -5.385183 -1.467088 0.727182 6.711344 -7.811796 -4.531104 5.985382 -9.377827 -12.147045 7.488287 -0.689525 -3.078555 -7.144201 -2.832242 3.981112 3.169452 -5.306291 -9.857735 -7.864409 7.380166 -3.434875 -5.950034 -0.766983 -0.702308 0.929294 -0.095942 -8.039929 0.338355 8.249349 -5.567164 -5.361399 9.522604 -2.270966 6.517469 -1.752813 1.141453 -1.088388 3.473466 2.226002 3.173611 -1.222602 -2.859511 -11.554522 -1.428040 0.434293 0.143726 -4.058972 -1.566550 3.533987 4.520574 3.318257 8.500850 -3.134156 8.084049 5.117142 0.851857 -3.635217 -9.337786 -2.380386 -7.841014 1.241083 -4.875540 -6.133833 2.064758 7.391441 1.152646 0.444594 7.506135 -2.894656 6.181120 0.059368 -0.588493 1.638351 -5.782440 3.221093 -4.841918 -9.004909 5.476845 7.742439 4.743759 2.392288 -2.087754 -0.556396 -2.439984 -6.924474 2.209724 1.361725 0.472757 10.509981 6.410619 19.193966 -8.257671 2.145956 -2.106522 -2.971047 2.935141 -3.756258 -10.063301 0.824578 3.293806 -0.176947 13.180271 -0.906005 -5.121893 3.471824 -0.618270 1.557594 -7.791044 9.113648 -7.312680 -0.337107 -3.615788 -2.746116 -4.768911 -3.940759 -7.627797 -2.808661 11.933622 -9.521638 -10.250950 5.977297 1.268908 2.856388 -13.798425 9.334326 -4.339479 9.273712 -3.316274 -3.344419 0.093373 4.557459 -1.681130 2.719980 5.189009 -8.399279 5.335422 8.203187 1.064993 2.926740 2.280467 4.145477 -2.252624 -1.432550 -7.847234 7.306012 -0.027751 -4.264692 -2.364098 -4.526874 5.826514 1.056732 -0.008391 -0.616680 7.065793 -2.976952 -2.090691 8.910374 -0.077235 -4.359926 3.837159 0.655791 6.143151 -5.007991 -0.954162 -4.766212 1.732502 2.257538 3.780917 -11.454749 -4.630624 -8.587575 -9.066716 -1.989709 4.132999 2.756202 3.118711 0.066966 -12.605932 -7.666318 10.450056 -4.070174 5.902714 6.574335 7.841108 8.768590 5.929385 2.280872 -1.676663 -2.409113 -0.300384 -5.110134 -3.085408 -1.529245 4.347182 -4.792982 8.340519 4.171114 0.988667 5.467916 1.719985 2.393158 -6.453945 12.169272 6.077847 -7.022498 2.275524 6.998395 9.525549 -9.263286 -6.279641 --6.647809 -27.060870 29.570985 26.292613 7.811323 15.468886 11.869128 -13.652632 13.289697 17.059857 -7.668782 19.996906 -15.502332 0.680970 -15.679155 9.180800 -9.658712 -19.403108 -0.394957 -6.660613 -7.273012 -13.837784 -8.527276 18.385467 7.452527 0.728767 -12.672430 -1.117649 -35.055368 -31.325565 -0.626932 -2.296954 10.687639 -11.438654 4.669177 -33.512765 17.528610 33.481380 -3.976427 -29.055960 4.397524 -10.649564 -8.748273 4.634247 -6.884368 8.752484 5.800438 2.536051 -1.004556 10.172840 12.764103 8.233459 19.670991 35.303721 1.261488 27.095268 23.112262 4.549737 5.242641 3.875380 8.224192 1.539446 13.600848 8.858748 -1.484293 -6.395277 -6.463841 2.928929 -17.149686 8.388424 0.671139 -16.460516 -11.051218 -5.893450 -20.416277 -5.619429 -15.554406 4.142157 32.134817 -15.067916 32.628207 12.433178 14.258801 -3.994381 16.991789 -2.684954 19.908615 10.875410 -10.908050 2.315599 -13.152002 -2.234481 1.689741 7.944582 -22.872178 -19.901778 16.356687 -28.344229 -28.295525 16.509796 1.297316 -8.250506 -6.907305 -2.421855 7.984592 6.376615 -15.051937 -22.786051 -13.638964 15.459957 -2.869524 -14.139414 -0.302030 -1.721317 3.119810 2.315743 -20.682659 -0.988588 18.777032 -14.040241 -7.348120 22.671001 1.283644 15.169360 -6.210626 -0.599892 1.150494 10.268376 6.396592 13.053699 -4.408366 0.137309 -26.053812 6.629921 4.436961 -3.871702 -13.188207 0.997557 7.060151 13.124975 7.489904 19.167992 -11.112664 13.186604 13.913879 -2.008598 -13.891182 -21.431241 -6.609767 -17.940410 4.200272 -11.555922 -16.916924 -0.046508 20.280220 2.700814 5.713176 15.233169 -9.928260 8.162061 5.023586 -0.104934 6.133041 -13.416173 6.877969 -10.931826 -24.060750 17.153624 18.326919 7.938086 4.883754 -5.570374 0.229368 -6.671877 -10.649887 7.744228 5.120967 -1.287417 26.922183 14.608366 34.233242 -12.911403 2.890335 -4.692397 -8.747847 7.813225 -7.615659 -25.909005 8.203583 5.933307 8.262329 29.073659 -2.797219 -6.290211 14.329261 -2.215117 2.733087 -18.835700 19.283625 -17.613962 -6.784461 -8.199478 -0.075970 -7.679154 -5.306155 -16.129507 -10.083508 30.705012 -23.806332 -19.431726 16.708754 -2.775399 2.120599 -28.085564 22.140917 -10.916525 17.198701 -0.319639 -5.150111 1.548994 6.624185 -6.486564 2.607968 13.832378 -17.334847 13.152917 22.740658 3.642569 3.716449 7.972584 11.405698 -7.526286 1.548491 -15.942879 18.146805 0.675678 -10.426823 -3.893671 -11.465490 9.403366 -2.436768 -0.105093 8.070007 13.052923 -2.009156 -1.870131 16.117759 6.199868 -14.698118 10.982614 0.792195 10.693072 -14.080858 -3.109178 -7.640051 0.657441 0.870198 11.038644 -26.743527 -14.626874 -26.716938 -24.069742 -2.480307 -1.818483 11.427468 1.467069 -1.228240 -29.279807 -23.609315 27.626698 -9.406753 6.345800 19.504965 16.329942 20.443156 12.300607 3.068961 3.413422 -11.135423 -0.984391 -6.655627 -6.929306 -1.478681 10.176831 -11.498070 17.899707 13.634194 -1.695915 12.089953 2.869866 8.014886 -16.033247 29.231398 13.171480 -15.144635 4.587117 14.918333 25.250306 -18.885962 -17.768834 --14.409759 -130.539882 228.244308 197.332594 -6.078266 91.078592 39.367487 -141.621070 155.038853 81.784729 -25.667200 58.814890 -128.744736 44.145287 -50.597459 105.989062 -138.505654 -118.583951 -48.456498 -106.195869 -67.380403 -115.610756 30.567663 52.049030 78.398509 30.923990 -97.578426 -10.656305 -156.066649 -155.262713 92.253736 -30.375710 89.240715 -14.989304 28.318035 -324.067227 163.866129 149.555642 -48.680755 -182.900847 38.411632 -77.113210 -17.435162 -21.507542 -31.898485 43.248643 -5.804189 60.424951 80.820177 54.731022 50.347303 47.727535 51.250161 279.713270 -81.571655 142.497523 93.188469 10.398804 -14.687455 46.202228 42.232858 45.417654 84.575726 89.428961 -21.235956 -106.883173 -24.736004 -40.930001 -150.429029 123.016123 -5.942696 -70.257996 -114.058529 -55.963177 -116.762712 -36.940224 -136.403265 120.686561 230.832893 -133.348856 147.570750 43.053517 70.661724 -2.855110 94.887020 -14.487292 153.812517 58.730891 -72.036815 -5.529631 -91.096447 -45.523967 27.949335 -5.201555 -103.952786 -180.386671 95.185677 -149.638469 -180.134416 85.028765 49.933057 -31.633068 -120.093181 -41.775522 78.921853 58.566776 -88.673013 -163.746328 -76.124204 84.003319 6.702485 -73.334236 4.739381 -35.197800 -21.609791 -42.224266 -171.946122 -12.841351 52.698773 -86.178335 -64.158997 144.108821 -50.781818 25.342780 -19.619820 41.321620 -48.108597 128.510827 -2.886209 107.686057 22.499956 26.512277 -146.942996 37.712131 58.996220 72.334198 -36.071152 7.255087 -35.513439 56.174680 -66.645454 62.807234 -49.243113 72.400206 126.846032 -35.868154 -107.354593 -75.958191 -16.958796 -183.522610 39.816129 -115.934291 -65.137833 45.844501 131.164662 94.715557 83.168248 160.821602 -137.299228 78.194409 -19.634469 5.951837 90.449449 1.884622 71.690664 -78.245407 -140.811498 77.424991 68.605151 40.828152 35.075293 -39.020388 -2.483913 -101.975546 -65.061537 60.977243 58.844765 -26.899169 133.915845 100.304323 190.980996 -152.701185 44.486238 62.023174 -52.087749 38.488087 -26.789323 -187.219069 63.599894 39.084786 31.498258 163.791122 -27.089111 -70.551790 59.918142 -30.368093 48.572220 -106.785131 57.024630 -123.010220 -40.532009 -108.397348 14.978410 -58.639912 -56.659054 -72.463214 -41.684895 188.680446 -132.592880 -130.298081 180.625287 -44.967431 58.046638 -201.145105 162.197895 -83.979166 101.852430 -45.681858 -16.136384 -12.606232 39.427208 -77.752267 22.083162 82.693606 -78.937312 66.985808 199.230215 39.467820 17.035352 17.459860 122.412167 -39.102485 58.674396 -98.799098 165.989253 -22.073790 -53.900985 -7.763818 -72.084200 34.315574 -65.933204 20.679276 113.966524 108.709703 29.936604 55.236248 103.013051 90.426181 -84.561497 114.953168 -6.523363 62.413387 -80.316437 -11.625858 9.357176 41.438829 -39.785089 82.734947 -184.801148 -175.594278 -166.510374 -149.582952 -16.669743 -8.650687 47.215117 -20.692211 -19.392421 -167.088951 -131.341138 120.072635 -70.286903 84.446415 97.859486 87.965203 122.560576 163.205252 -60.304554 -0.223836 -19.202886 4.472629 -36.953732 -55.739808 -80.415027 126.533002 -85.169253 65.880074 148.571999 -25.050815 70.959701 -9.918963 108.893935 -102.408754 208.053651 84.380714 -64.953912 102.950674 117.585487 191.353008 -2.111648 -100.772983 --22.560811 -30.325720 27.852993 23.902323 9.577220 21.871660 7.204638 -11.302454 14.361784 25.389981 -8.341330 20.369836 -16.783633 -7.245117 -3.340324 4.378335 -4.972101 -21.253973 1.701297 -8.137902 -5.692452 -16.610873 -17.146305 23.691819 3.656680 -12.965082 -12.320159 4.473143 -39.305174 -32.825758 -7.188226 -1.143873 12.928217 -22.424004 7.489817 -44.541742 19.647469 33.800617 -1.819752 -33.873084 1.011110 -11.851454 -5.058224 11.740644 -11.160282 7.313227 9.818919 -7.704575 -2.554625 6.454488 13.044461 1.461771 10.775942 43.954386 4.459383 31.643473 28.170256 0.072750 2.325653 6.907241 7.160926 -5.817130 17.938763 11.433239 -10.034785 -3.969920 1.848745 7.361057 -19.235465 5.907621 3.608538 -21.650745 -3.056366 -9.202384 -21.257894 -10.881541 17.476708 0.461324 35.118611 -11.560325 37.831775 15.608576 21.120199 4.241245 26.677977 -3.883684 28.300633 9.121186 -19.426409 0.969890 -14.403587 -2.401921 -0.459662 22.839064 -19.471902 -2.501463 14.797306 -24.406307 -33.027914 21.319079 -4.548853 -5.926299 -25.031026 -6.415916 15.634063 9.528201 -12.757622 -27.564674 -23.606092 21.326090 -14.102064 -16.756895 -2.188808 -7.403357 1.371909 2.333106 -20.099393 -2.399278 25.148924 -16.490820 -19.090661 26.638596 -9.183251 19.453069 -5.284691 3.790870 -0.766426 6.131077 7.796832 8.110724 -4.762159 -12.292289 -38.129465 -3.212024 -2.231924 -4.528351 -11.157629 -1.722863 11.802233 11.558453 9.050531 25.203057 -13.653937 23.522585 16.054141 3.815370 -10.473519 -25.817166 -4.302423 -19.508760 3.588225 -13.722923 -18.910774 3.109463 20.677945 2.650912 -0.020286 23.172563 -8.110151 19.779778 -0.461858 -1.146558 3.386675 -21.113813 8.767594 -14.358704 -23.469710 14.905843 25.912889 9.778023 7.826669 -8.997341 -1.364102 -7.202023 -20.295347 6.606836 3.400283 5.965251 28.189449 14.885440 57.992038 -25.504837 4.064760 -6.958209 -5.913457 7.634117 -12.143721 -27.035262 -0.423382 9.280234 2.853505 38.385886 -1.397489 -16.955276 7.116057 0.674108 4.774522 -21.308738 27.355595 -20.546838 1.526102 -4.652974 -12.015305 -15.171685 -9.682853 -21.460666 -7.972289 31.989731 -22.428531 -34.569990 15.551999 0.595904 9.080797 -40.994196 22.342630 -13.307030 27.471371 -9.477046 -6.238485 -2.793098 14.328462 -1.443948 11.097518 14.281635 -22.158954 18.255836 22.104926 2.191518 10.504295 6.871845 9.055775 -5.808390 -7.414227 -19.077235 18.301558 -0.197751 -10.647615 -7.587099 -12.964642 18.268891 5.879569 -2.722324 -9.000675 21.143765 -14.510455 -6.427940 26.013371 -3.637853 -12.371117 10.850929 1.798087 18.788359 -13.005040 -3.592742 -14.512656 3.657519 7.841406 8.720995 -31.257392 -10.120977 -22.339481 -29.454483 -5.386103 13.653913 5.630324 9.663984 2.280919 -34.254726 -18.279303 32.324915 -8.845556 25.497404 16.619234 22.524488 23.649092 14.957239 6.601706 -7.328922 -9.960936 -6.104464 -18.367039 -10.311663 -1.597763 10.316973 -12.972068 25.322011 7.802680 3.998623 12.385260 6.864378 -3.039402 -17.231908 31.182250 18.643527 -17.005304 4.197044 13.130648 29.721408 -31.161032 -17.970190 --7.988633 -12.923214 10.316059 9.318693 3.519141 8.682819 5.091726 -2.226947 3.503238 7.863984 -4.163286 8.491853 -6.126106 -4.586950 -1.143958 -0.173602 -1.144068 -8.359570 2.691831 -0.636587 0.494622 -6.251843 -8.218502 11.484670 1.088701 -1.630306 -3.014679 -0.148777 -17.136605 -9.680486 -1.418611 -0.045245 5.271586 -1.513086 3.906579 -13.104353 5.301432 13.279813 0.303086 -13.294003 -0.161221 -3.583144 -2.251237 3.676734 -2.629800 4.791804 5.101509 -1.285114 -2.787757 2.183150 2.981225 -1.877665 5.630232 11.171773 3.552809 11.878417 10.963410 -0.070967 4.928920 0.900171 2.810872 -3.310703 6.456390 4.604177 -4.233506 -0.086863 -1.038574 2.348481 -7.031586 0.899231 3.422667 -5.665591 -3.485014 -2.258141 -7.814885 -3.343829 -0.020246 0.052584 13.366155 -3.040864 16.622539 7.590161 10.493695 -1.175577 9.937860 -0.587934 8.516080 3.697762 -7.654489 2.092141 -10.608568 -2.123508 -1.368548 7.149492 -8.516357 1.367027 5.078084 -8.664082 -11.946563 7.914365 -2.759936 -2.639565 -5.635174 1.025411 4.718918 4.121051 -4.366958 -9.911335 -8.146744 8.036810 -6.459953 -5.911926 -0.895267 0.126989 0.789161 -0.548445 -5.985986 -0.481923 10.666138 -6.362437 -4.230362 9.480693 -2.428608 8.657853 -2.067603 -0.646406 0.165939 1.829974 5.630590 0.815106 0.381129 -8.306471 -15.503788 0.531456 -0.356283 1.171399 -5.214287 -2.111012 6.275572 4.936574 6.877659 8.517610 -2.152965 7.604958 4.702433 0.212300 -3.201752 -11.640990 -2.113333 -4.774912 1.370434 -3.648408 -4.370811 0.824593 7.153795 0.014056 -0.441211 6.130300 -2.810077 7.608918 -0.137376 0.679859 -0.924673 -4.569952 2.408272 -4.360696 -7.834795 6.006739 9.383841 4.668558 3.393899 -3.361668 -0.339707 -1.171964 -7.915419 3.063055 0.823025 2.577442 11.777903 5.634929 16.540562 -6.577343 -0.410805 -3.875228 -1.492016 1.905389 -3.224223 -9.736083 3.330487 2.175125 -0.010442 13.070511 -1.105674 -4.163251 4.200250 0.494629 1.021928 -8.224735 10.844136 -7.573370 -0.526536 -2.629367 -3.097485 -5.988787 -4.832476 -8.753188 -2.384648 12.010575 -5.430188 -11.167187 2.140919 -1.092889 2.154961 -13.266920 6.925795 -4.467644 8.207198 -2.256366 -3.286519 -1.104539 4.539684 0.803398 0.257580 5.143295 -9.791665 7.281627 6.446343 0.661117 1.532272 4.375658 2.311193 -1.821042 -4.078189 -7.073244 4.646265 0.055537 -2.359875 -1.485701 -4.287992 8.110359 3.402533 -2.492139 -0.763029 7.893745 -4.226169 -2.662876 8.179513 -3.181657 -4.407863 0.444874 1.227822 7.764995 -4.900224 -1.607010 -7.748134 -0.087983 3.590593 2.197692 -11.349603 -3.992329 -5.591122 -10.436467 -2.917282 2.643932 3.497693 5.924867 1.327980 -14.010991 -7.679956 9.401705 -2.996418 5.862474 6.045538 6.947440 9.325821 4.015908 2.489696 -3.108509 -2.237605 0.176945 -6.995084 -2.455321 -1.068758 2.830430 -5.371166 10.246608 3.329152 0.744716 4.438614 0.706624 4.195668 -6.902408 13.470025 7.310586 -9.079363 -0.064664 3.516981 9.987024 -12.051369 -6.517453 --7.518392 -15.309431 14.642661 14.206287 3.280252 10.066686 5.559022 -5.904018 6.907057 11.279286 -7.381483 9.968320 -8.258027 -3.700787 0.151651 3.765172 -5.351217 -9.353808 1.483194 -2.005281 -0.716905 -9.312189 -7.669971 11.664434 3.100212 3.211624 -4.343454 3.193391 -17.212529 -20.365496 0.303421 -0.747739 6.839771 2.475071 3.895864 -20.877915 10.953209 17.522019 -0.833354 -16.067889 0.220182 -3.962378 -6.678570 3.749683 -0.522529 7.714476 4.731275 0.847373 -2.236548 3.998517 4.808606 -3.235923 8.978907 14.021513 1.759574 16.053656 16.297040 -0.504857 5.052030 1.789727 3.797483 -1.805064 8.381429 10.113590 -4.562002 -2.609540 -0.072178 1.837531 -10.910125 3.605888 3.313213 -8.335577 -6.495298 -4.977062 -7.124353 -2.328968 -4.490661 0.717053 20.427664 -3.773359 22.600679 9.628889 12.299382 -3.155989 11.291376 -1.963376 12.644172 5.946983 -11.255520 1.827984 -10.320949 -7.660064 1.272087 13.908984 -11.056191 5.915508 6.192744 -11.435171 -14.995912 8.420356 -1.699109 -4.025980 -8.027258 2.010469 5.922886 2.285800 -2.678904 -13.855324 -10.146314 7.749199 -8.439144 -8.112739 -5.935505 2.459886 -1.234748 4.024779 -11.012729 -1.251468 11.383838 -8.545387 -5.156313 9.830047 -1.906893 8.513153 -3.743303 -0.255299 0.057097 2.217389 4.582392 4.511988 4.563391 -6.706982 -20.680215 1.781332 2.509613 2.226558 -7.547911 -3.158190 7.370232 5.414768 5.361013 10.983742 -4.945654 11.873555 8.696761 0.231273 -5.741244 -13.641207 -4.002398 -9.401176 5.430820 -7.117892 -5.403697 -1.210362 10.108857 -1.770755 1.260557 10.006509 -8.654467 10.810443 -0.286695 2.940679 0.590277 -4.450851 3.470405 -6.581465 -9.915089 9.513415 11.537505 2.816222 5.104123 -4.329132 0.038859 -4.085740 -11.377456 9.828277 -1.988585 1.515650 13.856966 6.508386 32.228418 -7.580165 2.890827 -2.114951 -1.090225 2.158692 -1.551889 -13.015842 6.602446 1.856067 6.150405 18.336471 0.262096 -5.385067 1.943929 0.783486 0.333487 -10.802183 16.392806 -9.512321 0.295725 -3.117183 -2.570614 -5.227979 -7.001622 -7.282363 2.798247 15.827335 -6.548201 -14.818078 6.293147 -2.763104 3.375988 -17.802028 13.801444 -7.319958 9.699634 -6.061445 -5.548068 0.418286 2.892706 -0.797608 1.658837 6.804525 -9.909209 8.431364 9.405623 1.309552 2.054229 4.311382 2.769863 -3.110485 -2.860874 -8.399297 7.189148 2.414218 -2.444654 -5.197570 -5.935920 9.406167 1.200042 -4.242767 0.018123 11.642023 -5.440381 -3.051181 8.640693 -0.939905 -7.125460 4.982001 2.795711 8.560685 -6.359218 -3.689727 -6.214132 -0.460934 2.877835 5.780201 -14.474675 -5.565987 -6.583202 -13.555942 -7.382941 5.397091 8.910505 6.216053 1.603506 -17.353576 -9.853426 15.514915 -3.544514 7.901442 7.410487 10.174457 9.681517 4.784770 4.730609 -4.466875 -6.784275 1.374179 -8.228039 -3.163142 -1.647944 5.876704 -6.151186 11.032310 4.997334 -0.141712 5.168263 -0.491918 8.982729 -8.093245 17.731187 8.290751 -10.131544 2.032572 5.360102 13.618395 -14.185163 -8.560106 --10.171905 -19.395181 15.051219 14.341037 5.523996 13.686798 7.629431 -3.999133 5.053437 14.435183 -6.018755 13.406690 -8.585349 -7.347552 -0.820527 0.833582 -0.956311 -10.879957 3.870813 -1.064522 1.248973 -9.101966 -11.441297 17.082616 2.329342 -0.274511 -3.824555 -0.765557 -24.135046 -17.246261 -3.091350 -0.028469 7.642860 -0.223855 5.691055 -15.042002 8.122006 20.502645 0.346972 -19.444315 -0.323674 -3.503315 -4.145229 7.566868 -1.949404 7.914372 7.019261 -2.066915 -4.151406 4.570060 5.767309 -2.794880 12.535754 13.200541 6.268454 17.707066 16.166672 -0.126670 9.168961 1.367483 4.262145 -4.324561 9.273584 6.656551 -4.465399 -0.626511 -2.418948 5.188301 -9.963219 0.939770 4.445911 -9.360789 -5.456935 -3.681651 -9.565179 -4.377874 -4.880974 -0.530899 19.534936 -3.018496 24.931490 12.762616 14.158778 -2.881369 14.534593 -1.141246 11.610763 5.893679 -11.249419 4.036081 -14.057399 -4.434540 -0.551417 10.475397 -13.250960 3.059320 7.670039 -12.335656 -17.803832 12.163954 -3.465744 -4.488198 -6.544688 1.079181 6.230546 4.966893 -6.129823 -14.559982 -11.136229 10.891713 -9.478904 -9.444411 -2.702378 0.122271 1.494877 3.106491 -8.374911 -0.672734 15.364000 -9.448125 -6.005733 13.046964 -0.731919 12.797290 -3.469744 -0.776956 0.708783 0.359846 8.539174 3.174179 1.496916 -10.405540 -21.224658 3.334191 -0.292505 -2.751104 -7.580411 -3.315158 8.804512 7.595983 11.611647 15.069200 -3.162226 11.596807 7.298794 1.185202 -4.056639 -17.255943 -3.305204 -6.392684 3.421414 -4.665074 -6.220056 -1.319285 10.265343 -2.531684 -0.530892 5.108601 -4.600803 8.995135 -0.026631 2.406742 -1.330067 -5.877913 3.231015 -6.051017 -11.355104 8.726955 16.049131 5.766529 4.993341 -4.279239 -0.376945 -0.350182 -9.896626 4.596463 -0.462328 2.284346 18.008438 8.019899 26.902186 -6.678364 -1.111902 -5.929963 -1.905741 3.140837 -4.702041 -14.651926 5.556074 2.668062 2.072544 19.359939 -1.692734 -4.212647 6.787229 0.501443 0.737479 -11.946803 17.483402 -11.459775 -1.308668 -3.265207 -3.959831 -8.243216 -7.272870 -12.213782 -0.746038 17.535092 -7.329377 -13.768167 2.983508 -2.589013 0.517373 -17.209388 10.862383 -6.505354 8.501380 -3.587267 -6.409815 -1.455107 6.665010 0.777887 -1.698351 7.742084 -14.967814 11.277988 8.297842 0.580442 1.216596 6.134035 2.535738 -3.356921 -5.823648 -10.837324 7.218924 0.702051 -2.267805 -3.633267 -6.107030 12.342602 3.865201 -5.413600 -2.760602 10.463281 -7.655514 -6.280614 10.353517 -4.572011 -6.679653 2.590408 2.622337 10.463422 -7.443673 -2.213910 -10.842601 -1.750083 4.959819 4.782774 -17.179948 -3.008000 -6.040121 -12.095476 -5.685758 4.829458 6.393154 9.162974 1.546495 -20.608392 -12.397396 13.541724 -4.066512 2.049694 9.188374 10.503768 13.151603 4.960659 6.401830 -3.693914 -6.356324 -0.550511 -9.625148 -4.771145 0.586414 3.951897 -6.446055 15.260179 3.837003 1.390205 6.473025 -0.104458 5.330403 -10.105896 18.739120 10.205220 -12.384774 -0.044452 5.351738 15.020253 -20.388077 -9.290610 --8.185415 -13.303764 11.792649 11.158207 3.387073 9.295212 4.547230 -5.524695 6.581953 10.752472 -4.577598 7.809328 -7.619899 -3.128570 -0.640405 2.674750 -3.012970 -8.479722 1.146057 -2.752972 -1.649496 -8.313443 -6.644532 9.776213 1.923401 -0.872475 -4.211907 1.815820 -15.774490 -16.329656 -0.576420 -0.492535 5.881551 -2.393508 2.800454 -19.456888 8.677838 14.544238 -0.948745 -14.344765 0.261139 -4.672730 -3.935655 4.039061 -1.974017 5.023521 3.740150 -1.079319 -1.272082 2.854241 4.990847 -1.193752 6.293101 15.836304 1.063409 13.901508 12.797098 0.012905 2.781627 2.897763 3.101512 -1.589660 7.937635 7.355752 -4.384566 -1.728915 0.274106 1.930839 -9.533949 3.373836 1.817764 -8.325432 -4.080921 -3.871685 -7.266271 -3.410458 -1.202918 0.719177 16.511457 -4.326080 18.325077 7.420568 9.837654 -1.038083 10.925440 -1.852276 12.004963 4.347661 -9.515410 0.647256 -7.498957 -4.313708 0.458431 10.661470 -8.713094 2.360116 5.890643 -9.405961 -13.785790 8.151744 -1.938835 -2.718743 -9.768902 -0.348905 5.966964 3.047816 -4.055654 -12.584562 -10.181229 8.169355 -6.950919 -7.183178 -3.077616 -0.448743 -0.566903 2.051587 -8.858158 -1.557879 10.176679 -7.616142 -6.974126 10.215699 -2.305566 7.734890 -2.511823 0.489561 -0.134734 2.491358 3.097741 3.899234 2.312298 -4.921837 -18.586495 0.444455 1.190662 0.287707 -5.343468 -1.752231 5.621517 4.851204 3.909948 9.840527 -4.837392 10.307101 8.049291 0.801000 -4.559285 -11.312422 -1.366293 -8.583280 3.242111 -6.380331 -5.214149 0.170934 9.021588 -0.001722 0.696428 9.152072 -6.627866 9.418406 -0.401235 1.394641 1.048555 -5.064847 3.388956 -5.978327 -9.700656 6.915935 10.646348 3.183582 3.514381 -3.815374 -0.681911 -3.124918 -9.914513 5.708948 -0.202490 1.456644 12.111261 6.112501 26.897022 -10.791117 2.649716 -2.314027 -1.925946 2.787939 -3.407634 -11.850627 3.492283 2.825428 3.067085 15.680561 -0.525467 -5.995742 2.096319 0.281605 1.189355 -9.321592 12.637164 -9.007271 -0.387248 -2.716827 -3.806413 -5.196892 -5.826010 -7.309019 0.189907 13.806188 -7.188010 -13.432844 6.740513 -2.064458 2.767554 -16.863331 11.426099 -6.019755 8.421744 -5.803366 -3.968482 -1.009634 5.782997 -0.359406 2.519550 6.101690 -9.736320 8.063665 10.184677 0.988578 3.432672 3.546034 3.442507 -2.166503 -3.514675 -8.009019 7.647036 0.999531 -3.067438 -3.866043 -5.766689 8.853824 1.733715 -2.458352 0.026013 10.685697 -5.665122 -2.539388 9.642635 -1.174984 -5.550011 4.741190 1.625720 7.696028 -5.404187 -2.147487 -5.927975 -0.180921 2.528856 4.628030 -12.952270 -5.001420 -6.232539 -11.574896 -4.403289 5.182741 5.445686 4.892340 1.489498 -15.747435 -8.038243 12.550710 -3.852160 7.504809 6.398050 9.357690 9.238417 6.053392 3.370310 -3.344519 -5.121912 -0.696508 -7.845949 -3.956064 -0.690993 4.718754 -5.560007 10.705928 3.429851 1.119666 4.792327 1.109931 4.635282 -7.148839 14.672514 7.695694 -7.469619 2.064923 5.428865 12.523450 -12.375805 -7.434623 --11.821282 -142.934100 256.877529 216.927238 -10.626572 104.639829 34.525252 -163.481113 154.013651 114.513726 -44.276400 68.527075 -126.488221 33.292428 -46.397728 119.787030 -150.239680 -116.230959 -48.177218 -116.039252 -70.545269 -119.741752 15.537672 64.408422 82.127660 43.585830 -96.727566 6.681593 -146.043432 -221.224638 75.681223 -26.245167 88.915329 -10.103862 43.877831 -321.157404 189.469481 173.353117 -51.922689 -197.626147 34.612134 -57.074401 -45.176819 7.033383 -35.600429 59.875074 -3.745753 70.944205 67.955454 72.767122 67.295839 39.919896 88.361139 287.659709 -56.338232 168.010687 118.551463 10.269146 3.292614 60.226726 49.223885 45.335263 84.961639 98.118243 -5.162223 -108.148009 -18.944762 -25.000816 -149.032081 130.617325 -6.763408 -105.976402 -112.488510 -77.962115 -111.535595 -32.294168 -172.883724 120.826873 251.401260 -132.253617 167.811795 68.046117 74.685092 -10.785650 104.988292 -25.613285 177.891630 71.630516 -77.750119 4.621463 -69.464327 -77.786808 44.825522 3.813422 -128.303508 -181.736098 107.903178 -180.972207 -198.024552 105.895091 57.507031 -46.648189 -116.629942 -47.130421 87.228067 45.554840 -86.820733 -169.763337 -78.878265 96.173191 -15.249398 -80.113866 -12.922455 -20.624205 -14.687438 11.249651 -185.700700 -7.283888 70.493531 -88.321124 -65.078741 150.676042 -16.045619 35.331121 -25.791452 40.291897 -42.685489 122.031261 2.823929 125.744268 12.746488 50.666151 -147.970001 69.145959 67.057325 4.317541 -33.171295 2.699205 -14.856617 70.877309 -59.170090 105.120166 -80.444802 93.037872 142.825177 -22.101344 -118.807391 -95.305731 -44.207725 -192.526939 49.056669 -122.815927 -99.284228 32.596340 140.945742 87.043200 78.788008 137.019019 -151.307077 74.165771 -26.605588 23.908433 75.869250 -22.133313 72.591019 -84.031309 -150.335016 87.076340 94.434507 42.359866 45.494839 -53.669885 -1.437545 -98.960103 -74.436011 86.301630 52.455235 -29.411018 146.218270 114.954730 260.678215 -132.479072 40.611286 58.341208 -54.201114 34.780261 -27.635240 -205.368326 62.066769 40.747438 66.744140 196.967332 -24.293750 -55.519750 58.466328 -32.494172 40.684508 -115.261957 80.608065 -134.566773 -32.605944 -97.904262 22.099600 -69.840230 -58.059923 -77.041568 -38.168238 204.500770 -161.876330 -138.968302 204.211263 -60.084154 50.575413 -201.980570 176.715625 -86.394088 106.312991 -44.248823 -28.451723 -15.276110 23.839308 -79.573594 27.653394 84.077343 -82.041425 75.391503 203.360341 36.174503 17.695781 20.845920 122.971970 -63.197698 52.773708 -117.144054 177.849090 -19.922042 -50.075503 -30.903943 -75.358692 33.779926 -74.328121 12.571428 93.216545 102.426862 9.500310 33.725203 100.751669 83.413057 -95.458393 136.723391 4.993222 59.728282 -94.311200 -20.774298 8.568598 30.920940 -41.915370 89.091139 -204.982164 -154.863226 -204.403172 -146.224677 -45.735221 0.370805 72.512145 -14.675296 -24.079190 -168.048271 -150.795162 183.510989 -70.168372 54.765211 114.082955 105.321591 134.457745 171.635125 -29.023734 6.450172 -51.445273 -1.952500 -49.582150 -67.253098 -69.690702 138.335062 -75.917109 79.782620 149.636331 -17.795681 83.071410 -11.789928 103.968872 -116.772934 209.037874 93.216808 -70.897796 90.755564 130.602955 194.594315 -37.799008 -111.324849 --22.312243 -67.388168 96.895728 82.304950 -0.295752 45.915062 18.747409 -55.761399 55.798338 41.392507 -17.586479 34.453952 -54.459266 6.102177 -18.041670 33.628989 -54.328920 -54.574798 -13.090196 -40.256189 -28.512398 -48.398103 -4.289977 39.147483 27.272715 11.648830 -38.630906 -0.092059 -78.783839 -71.250422 27.464256 -11.794427 39.548513 4.654329 17.482381 -135.721193 64.920154 71.376536 -17.752355 -78.665389 10.181905 -32.031851 -13.552410 -1.706833 -18.787975 18.895285 5.902930 12.399695 21.309000 18.394192 28.346239 7.968320 26.460012 119.177148 -18.043775 70.430138 54.101732 -0.522085 4.568547 19.199731 21.903844 8.792623 42.857308 41.833702 -14.227291 -34.423970 -5.785248 -15.223834 -60.120855 46.440316 2.445994 -37.049289 -37.023610 -29.095174 -53.653909 -21.516907 -42.434751 40.779117 105.175018 -53.197223 80.447779 30.508338 42.762934 -4.780791 54.613601 -6.242896 80.136666 27.302748 -39.421658 5.921820 -38.365448 -20.290082 8.613360 23.883040 -48.479260 -45.909026 43.503762 -75.081807 -84.991112 46.348270 12.669413 -12.557566 -55.932358 -13.292570 35.040616 20.360003 -39.995271 -74.042431 -42.896637 38.991538 -13.612335 -34.795115 -5.379232 -6.710949 -7.757650 -5.386811 -71.478033 -7.219701 35.611130 -43.191632 -32.624539 67.560632 -17.484354 24.795475 -11.516594 12.224785 -15.502400 46.438632 3.811739 38.838324 5.535907 -0.219543 -76.374099 7.292108 20.412408 21.692480 -21.128284 -5.885076 3.581512 28.224790 -13.984427 38.228431 -24.480005 47.308055 51.471286 -10.138319 -46.613867 -45.885666 -11.900051 -80.320577 13.824167 -51.418361 -34.398663 18.763319 59.398922 36.271074 24.993303 65.839911 -46.543234 44.708834 -7.376398 3.184606 28.861718 -16.615202 30.574580 -37.449572 -62.787826 36.701560 39.469636 21.845272 21.870046 -24.354790 -4.639413 -39.865718 -45.381226 30.217889 20.365850 -4.407138 64.590217 44.150045 111.068594 -71.346916 20.957778 14.197386 -15.803807 15.107747 -14.486449 -80.267325 24.577083 16.451884 9.696307 78.424963 -8.680316 -32.677251 19.950627 -10.232535 19.077277 -53.155406 39.912347 -52.152610 -6.837897 -41.331262 0.084331 -30.994281 -28.256705 -35.033856 -18.126438 86.952780 -69.009365 -66.028569 74.148777 -10.579657 30.194346 -94.174919 65.880979 -37.975980 58.693237 -26.324583 -17.586665 -7.142209 20.333150 -22.722345 18.871901 37.249522 -44.476590 32.236123 77.606451 14.652631 19.029362 13.330024 46.837337 -16.703609 11.285195 -45.066447 69.733381 -1.244197 -28.060096 -10.415474 -34.618149 25.273631 -14.641206 5.622168 31.691159 54.155273 0.194848 11.852502 51.209574 23.771909 -39.571835 39.379078 3.005633 36.921527 -37.659383 -8.595120 -8.418801 14.724879 -8.650050 30.004874 -82.779338 -66.656555 -72.316587 -64.061083 -19.989389 7.582420 25.673331 5.048807 -2.197527 -76.452133 -55.185646 64.552709 -31.282425 39.222464 43.899782 47.471430 59.919633 63.872945 -10.019286 -9.943586 -14.628816 3.499908 -26.873710 -19.217734 -33.988495 46.731199 -39.809112 44.723664 54.023618 -4.142457 32.231877 6.661787 46.453902 -47.624994 92.017200 43.102879 -40.934209 37.156122 52.235167 76.905432 -20.307682 -47.813790 --19.379814 -36.631108 38.061623 34.874702 3.353464 24.994521 8.086368 -16.327389 11.880155 29.586549 -11.586593 26.334094 -17.458494 -6.367386 -5.298353 10.586323 -12.161249 -19.396232 -1.093874 -11.313626 -8.035769 -16.879810 -20.456224 29.353284 8.552101 1.034248 -14.368843 2.944370 -36.950815 -49.626642 -7.916426 0.478284 16.831285 -8.994218 10.444537 -57.171057 24.348547 42.623882 -3.737866 -37.412231 2.773695 -9.098756 -12.271287 12.248869 -15.441928 12.544064 8.622250 -7.417919 -4.139278 10.242482 14.171165 2.676093 26.883343 49.658722 9.802585 38.173546 36.339664 -1.013452 8.740313 5.267232 9.862987 -4.063575 18.200444 11.718865 -3.088946 -8.935551 -4.076060 6.755541 -19.622499 8.287993 2.860422 -27.011375 -9.202727 -15.224674 -24.223035 -11.510340 -10.690883 5.147910 43.044747 -16.878019 46.419811 19.984951 20.690800 -0.324428 29.379956 -3.852844 31.024645 13.892906 -19.285178 8.983534 -5.153516 -10.773451 5.710286 28.002636 -30.227079 -9.392206 21.525936 -34.078192 -39.265201 27.637749 -0.425295 -11.777525 -20.700555 -9.838003 11.143031 7.556994 -15.551423 -31.689145 -26.217472 22.400290 -10.758656 -20.834707 -8.519582 1.560023 3.981384 12.257947 -26.484521 2.963288 28.359214 -17.194591 -15.711693 28.404877 4.076437 20.916973 -8.093655 3.887681 -2.421777 11.230714 7.699395 14.549006 -6.811398 -2.807631 -41.713611 1.788520 4.977009 -12.083952 -15.866863 -8.760776 13.834214 16.116934 13.165196 32.989898 -14.385938 30.985677 25.462109 6.585455 -15.093497 -32.571486 -12.080134 -25.237055 3.926682 -16.636327 -22.618236 6.108954 23.482231 -0.663344 0.874100 17.638884 -10.970217 19.895981 -0.416247 0.859603 3.549831 -20.186623 8.768703 -16.298659 -27.751993 20.946235 28.342698 15.752844 9.897153 -7.403867 -0.123331 -4.351379 -22.644645 18.038597 3.740194 1.644666 34.402027 21.315793 75.557789 -20.652281 4.039194 -8.515476 -10.763818 7.661627 -10.301310 -32.883357 5.161753 9.282721 4.873038 44.752016 -2.446006 -10.606869 11.375097 -2.643227 2.818661 -25.039700 35.092879 -24.141010 0.685705 -8.162092 -10.652817 -15.085457 -10.793511 -22.671677 -7.764283 39.846182 -37.324973 -29.703406 20.448451 -1.021673 4.929012 -41.881935 33.190997 -14.212058 26.714656 -12.834748 -14.370916 -0.088338 12.117436 -4.592273 9.134892 17.279224 -27.536734 15.211649 28.276744 1.761816 6.684774 6.997798 12.643554 -10.070438 -3.611212 -24.032188 24.326814 2.196150 -9.022084 -13.367038 -13.561839 16.942049 1.245479 -2.319767 -3.246092 20.791062 -12.584970 -13.130451 27.109821 -0.640518 -15.769960 15.074534 2.371076 19.352125 -19.033329 -6.762491 -14.274945 5.078478 8.020658 10.443602 -37.856675 -9.738605 -34.864428 -24.637356 -12.820196 16.337846 15.421400 9.559539 -2.380525 -38.584871 -28.320268 45.757427 -11.875847 9.795373 22.325837 25.912488 28.596424 16.497555 14.879959 -4.748555 -17.970534 -1.349951 -14.133433 -8.833206 -2.387842 14.129915 -14.967928 26.610043 12.898178 3.414590 19.738444 10.875328 10.170062 -21.605530 39.200960 18.539494 -23.667031 5.695859 24.181142 25.702584 -36.546712 -20.996023 --9.296920 -18.542817 16.376437 15.300264 4.667248 12.525523 8.014567 -5.131362 5.197349 12.958286 -5.791193 12.107032 -8.955704 -5.942783 -2.192185 1.471775 -2.204440 -11.116792 2.601403 -2.223485 0.540634 -8.981331 -10.421763 16.305697 2.832943 -1.884804 -4.517370 -1.154085 -23.539148 -15.581436 -2.485631 -0.112891 7.772089 -0.087973 5.219806 -16.369468 8.639532 19.889125 -0.273301 -17.556968 0.346229 -4.259856 -4.334635 5.766601 -3.329451 6.869164 6.018199 -2.701580 -3.315936 4.108047 6.143045 -1.758174 11.537783 15.680373 4.715912 17.253610 15.440234 -0.041461 8.220043 1.508115 4.285002 -3.521608 9.057154 6.626748 -3.830311 -1.786674 -2.746659 3.994968 -9.906508 1.651385 4.128520 -8.070009 -5.908131 -3.662131 -10.942057 -4.895106 -5.270315 0.191318 19.815492 -4.695391 23.868625 11.849322 13.536288 -2.461784 14.055047 -0.559296 12.290974 5.843397 -10.595129 4.401726 -13.211234 -2.951504 -0.650512 10.417554 -13.835632 -0.012697 8.135107 -14.138454 -17.806609 12.121082 -2.557063 -4.750474 -5.984856 0.829991 5.170487 4.425712 -6.805722 -14.984437 -10.917574 10.557510 -7.645557 -9.194427 -2.357545 -0.180326 1.936404 1.931148 -9.381891 0.018282 13.802360 -9.129275 -5.839711 13.426500 -0.518614 11.649145 -3.276574 -0.248903 -0.281742 1.971252 7.015741 3.619996 -0.067885 -9.687715 -21.796581 1.460447 0.816740 -1.618184 -7.595049 -3.350782 7.864271 7.519115 10.094067 14.592935 -2.559950 11.759852 7.063179 0.374197 -4.521946 -16.214760 -3.667530 -7.654346 2.587125 -5.132483 -7.715136 -0.868886 10.508854 -1.062043 0.191905 6.400936 -2.962635 9.685457 0.123098 1.414657 -0.399820 -7.690524 3.651939 -6.201565 -11.829491 9.003934 13.968672 6.665607 5.086445 -3.824136 -0.385605 -1.425179 -9.821487 4.344873 0.128652 1.504228 17.528840 8.787550 26.070441 -7.517683 0.335468 -4.806334 -2.465011 3.243992 -4.604141 -14.721929 4.828221 3.090661 0.267533 18.814876 -1.539083 -4.742368 6.681471 -0.275991 1.346546 -12.195091 16.123345 -10.948628 -1.481988 -4.573107 -3.169113 -8.099305 -7.130136 -11.209223 -2.327774 17.583787 -9.277470 -13.043334 4.194443 -0.241713 0.830835 -17.174117 12.860475 -6.551876 10.848051 -3.855098 -6.252828 -0.805122 7.580652 -0.477005 -0.206903 7.772646 -14.443793 10.787344 9.467064 1.060495 1.883841 5.551178 3.842294 -3.596304 -4.543719 -11.149369 8.548757 0.807956 -3.717369 -3.382669 -6.217787 11.062148 3.165797 -3.492819 -1.416525 10.799762 -6.125220 -5.593112 10.653035 -2.829515 -6.724789 2.631850 2.049111 10.136281 -7.750145 -2.262955 -9.903159 -1.133647 4.468233 4.431513 -16.938547 -4.448107 -8.419825 -11.942295 -4.773807 4.366706 6.209044 8.242742 1.120174 -20.257479 -12.848719 14.595558 -4.824019 2.786484 9.753645 10.431179 13.338113 5.983637 5.563252 -3.265950 -5.470694 0.641644 -8.570614 -4.230368 -0.942770 5.145843 -7.579985 14.225793 5.151812 1.030299 7.155613 1.700375 6.320546 -10.306075 19.724366 9.909136 -12.478801 1.165219 7.183279 14.262901 -17.654743 -9.296992 --8.408651 -18.119238 19.366739 17.556320 4.473523 11.327836 8.570291 -8.633103 13.712953 11.975487 -6.667925 10.638464 -12.681567 -1.241151 -1.205282 5.920937 -8.783968 -14.279173 1.377663 -4.082340 -2.406966 -13.831211 -3.631423 10.407494 4.845071 1.679812 -7.802617 -0.205768 -22.656998 -19.485943 5.602693 -2.395943 9.953048 -1.682043 2.189344 -35.701457 13.582414 18.659361 -2.653523 -23.321112 2.578258 -8.174473 -4.558454 1.618709 -0.922796 7.063587 5.078282 4.994296 0.924162 5.257984 3.992921 -0.430832 5.378112 25.865310 -2.970032 18.218237 17.572154 0.467316 0.902050 3.579211 5.179890 -0.537196 12.069899 13.692696 -7.187757 -5.088137 -0.132048 -1.488945 -18.125247 7.670775 3.488645 -7.222823 -8.600802 -3.892610 -9.800579 -2.929893 -0.829353 6.010439 26.593067 -7.960256 25.271555 8.133745 14.762112 -2.345433 12.481220 -1.740594 15.553870 6.717025 -13.015889 -3.086602 -17.469656 -8.236689 0.011176 9.122368 -9.716495 -2.852315 7.881021 -11.522026 -18.872557 9.004028 -0.940866 -3.114124 -15.172326 0.151986 10.736850 8.018220 -5.701671 -18.538925 -14.398401 9.806959 -9.079227 -9.636403 -2.783480 -0.822805 -4.131595 -2.954009 -14.954816 -3.157037 12.317996 -11.370498 -8.407238 14.064800 -9.156743 9.076062 -3.503308 1.134065 -1.673384 6.782931 4.294678 5.553833 9.705796 -8.140569 -24.338994 1.852558 3.564203 12.213270 -7.394423 -1.740863 3.941805 6.305798 1.200213 8.205885 -5.347326 11.550631 13.533040 -2.285621 -8.988263 -15.071690 1.816277 -14.558885 5.525387 -10.858274 -3.340025 2.306481 14.158356 2.521800 4.603941 18.159440 -15.474901 14.976066 -0.813322 2.645184 3.756275 -1.402529 5.873925 -8.460704 -14.409953 9.256854 12.852231 3.197295 4.151129 -5.198450 -0.400088 -8.518421 -14.766426 8.034681 2.264516 1.488004 15.458716 8.195618 31.736405 -18.581711 3.314009 0.723304 -2.689327 3.001230 -3.201120 -18.803185 7.604338 3.070699 5.861787 21.661391 -0.767768 -11.298236 3.824564 0.885282 1.690127 -11.801893 14.307633 -13.420036 -3.241251 -6.497163 -3.042394 -6.897386 -8.854192 -9.997210 0.545672 20.776253 -5.972620 -21.532359 11.218107 -7.093469 6.032467 -27.718083 17.827018 -9.724576 10.794482 -7.778279 -3.605410 -1.677710 5.654324 -3.612683 2.182462 9.079313 -11.178121 11.479804 18.381708 3.302398 3.235969 4.600665 6.699343 -1.810448 -1.901840 -10.259054 11.592792 -0.932423 -4.639084 -3.059177 -7.999826 12.927461 0.064595 -2.777850 6.396893 16.098362 -3.447917 3.628719 13.301476 2.591370 -9.551812 8.037971 1.895958 12.331520 -6.496249 -2.554785 -6.842584 1.213738 0.637644 9.290981 -18.590319 -14.199989 -8.529824 -22.261938 -4.618349 3.360055 7.348647 3.630232 2.366413 -24.360277 -10.388641 10.858224 -5.515288 15.969444 10.095461 11.158061 12.967025 10.709586 -2.521918 -4.552203 -3.598120 0.525225 -10.881424 -6.602023 -4.395117 8.366346 -9.237268 12.814108 9.545976 -0.525117 5.404029 -3.361647 12.076909 -9.517294 24.807101 11.617687 -10.591616 4.917618 5.291468 22.304092 -11.229100 -11.248972 --5.648016 -10.036348 8.934086 8.432955 3.004236 6.587822 3.990532 -3.566743 5.109357 7.811994 -3.659188 6.391089 -5.936991 -2.369648 0.128786 2.252451 -2.503364 -6.858626 1.436227 -1.235801 -0.620681 -6.336424 -4.325430 6.920648 1.748314 -0.586601 -3.051597 0.872978 -12.188272 -11.093276 0.454832 -0.715936 4.520337 -1.880832 2.123612 -14.153385 6.474887 10.661706 -0.524219 -11.605292 0.272456 -3.295009 -2.513191 2.475479 -1.027296 4.019240 3.485280 0.589235 -0.932957 2.646098 2.925693 -1.396842 4.294127 11.250186 0.687695 10.059367 9.806107 0.072612 2.084970 1.683237 2.517593 -1.499155 5.891087 5.631417 -3.568844 -1.187611 -0.048595 1.116075 -7.585445 2.326904 2.002666 -5.194687 -3.781105 -2.541256 -4.997538 -1.934356 -0.309676 1.145701 12.677909 -3.188711 13.782543 5.649163 7.796709 -1.008126 7.408320 -1.209477 8.103366 3.369539 -6.980324 -0.174566 -7.375795 -4.032921 -0.211004 6.712196 -5.947115 1.610941 3.994748 -5.436793 -9.821539 5.676384 -1.540382 -1.769239 -6.840377 0.467794 4.858885 3.195419 -2.693016 -9.032814 -7.074531 5.555917 -5.303555 -5.246859 -2.062965 -0.208945 -1.046550 0.791969 -6.665259 -1.591667 7.612112 -6.012842 -4.642362 7.144596 -3.391794 5.913294 -1.969679 0.040426 0.135981 2.097930 3.519151 2.576310 3.206577 -4.909345 -13.246635 1.187655 0.893421 2.403298 -3.803636 -0.515596 3.885913 3.494090 3.091806 6.442977 -2.920119 6.990128 5.359410 -0.018327 -3.670442 -8.542400 -0.835314 -5.561008 2.857804 -4.722407 -2.518608 0.315474 6.704246 -0.186909 0.688403 7.616889 -6.224859 6.934029 -0.297452 1.464275 0.534907 -3.020787 2.494949 -4.272351 -6.857805 5.135683 8.092599 1.702696 2.664620 -2.998859 -0.098027 -2.812627 -7.186977 3.757882 -0.202208 1.001566 8.568615 3.903766 17.903004 -7.148126 1.244038 -1.404848 -0.830205 1.754547 -2.218960 -9.009992 3.674731 1.466311 2.898520 11.278367 -0.274245 -4.879629 1.999185 0.363914 0.590053 -6.467985 9.351839 -6.675464 -0.746320 -1.966129 -2.317947 -3.818091 -4.446297 -5.427838 0.743566 10.294358 -3.680054 -10.410129 4.009544 -2.364592 2.277032 -12.657150 8.556597 -4.582248 6.085009 -3.272236 -2.639131 -0.687612 3.214011 -0.141765 0.644067 4.574255 -6.536127 6.040917 7.098001 0.841297 1.752971 3.070072 2.173536 -1.344457 -2.434433 -5.340648 5.012572 0.340166 -1.984748 -2.385422 -4.077537 6.731744 1.296495 -2.527879 0.503381 7.513224 -3.869967 -0.721712 6.542725 -0.638067 -4.444424 3.149881 1.408647 6.369479 -3.793915 -1.377554 -4.652081 -0.227032 1.532514 3.972234 -9.381490 -4.342343 -3.671503 -9.751320 -3.373972 3.161730 4.023407 3.278335 1.301603 -11.686254 -5.762149 7.555946 -2.480443 6.188637 4.794069 6.432243 6.809697 4.212691 1.588615 -2.833874 -3.147662 -0.450718 -6.008050 -3.032111 -0.508491 3.374601 -4.276627 7.500722 3.010086 0.583212 2.903628 -0.599783 3.992095 -5.147834 11.296187 5.932233 -5.716682 1.325542 3.166469 9.904906 -9.066700 -5.665258 --10.030048 -18.099356 14.117803 13.323833 4.941016 12.288640 7.653280 -3.135224 4.467344 12.960282 -4.838064 11.933682 -8.328287 -6.507722 -1.217101 0.633796 -0.602881 -10.545899 3.105745 -1.545973 1.196216 -7.917366 -11.273623 16.096257 1.858574 -3.970077 -3.775136 -1.301029 -23.279761 -14.037986 -3.772266 0.104773 7.182285 -4.694779 4.927710 -15.744684 7.683283 19.280939 0.268617 -18.251626 0.193121 -4.121983 -3.012149 6.893294 -4.252408 5.930856 6.141759 -3.135427 -4.021012 3.608320 4.794559 -1.168862 10.186388 16.258674 5.300858 16.881470 15.714710 0.447028 6.924499 1.547309 4.066069 -3.955414 8.344208 4.927765 -3.812373 -0.689751 -2.673446 4.439843 -9.034660 0.223357 3.816778 -8.723022 -4.022996 -2.737924 -10.846311 -5.053284 0.306066 -0.319837 17.693352 -4.551530 22.711566 10.795240 12.395755 -1.006528 13.690793 -0.487479 10.475714 5.258541 -9.483870 3.850274 -12.554077 -2.227731 -0.817470 9.311017 -12.614556 -0.871868 7.492708 -11.526002 -17.084933 12.047608 -3.444258 -4.230760 -6.382063 -0.357396 5.435756 5.458102 -7.085460 -13.760752 -11.144597 11.010829 -7.301140 -9.048515 -1.460998 -0.317991 2.078355 0.687441 -7.876678 -0.037726 14.449595 -8.670541 -6.328048 12.916895 -1.737593 12.460961 -2.926234 -0.399288 0.049999 1.304733 7.732541 2.456400 -0.608646 -10.242340 -19.570776 0.737957 -0.876553 -1.902186 -6.671720 -2.301783 8.294330 7.279241 11.058974 14.242646 -2.467209 10.852696 5.559333 1.297740 -3.042896 -15.737383 -3.314536 -6.549906 2.217066 -4.714990 -7.657968 0.379561 9.674885 -1.682729 -0.920759 6.586505 -2.076902 8.427302 0.344667 1.053856 -1.108894 -7.602686 3.013098 -5.605210 -11.346295 7.662770 13.869910 6.639619 4.001175 -3.554838 -0.677647 -0.500487 -9.173212 2.514536 0.301417 1.746919 16.575797 7.964926 24.377531 -7.164948 -0.628518 -5.926249 -3.181813 3.543292 -5.530852 -14.018321 3.024809 3.368460 -0.201138 18.081555 -1.905980 -4.886646 6.826929 -0.130202 1.049065 -11.228046 15.907149 -10.807586 -1.401318 -3.474637 -4.365124 -7.989339 -6.593245 -12.373371 -2.558796 16.526811 -8.194002 -13.341826 2.614966 0.102002 0.581668 -16.743609 11.766046 -5.845369 10.568824 -2.675667 -5.448887 -0.606977 7.571203 0.487566 -0.239518 7.437225 -14.065005 10.526578 8.070447 0.647909 1.599881 5.709466 3.111495 -3.313139 -5.551012 -11.144254 7.481463 -0.206834 -3.957946 -2.947723 -5.864348 11.178616 3.903307 -3.329733 -3.227642 9.005011 -6.909355 -5.862728 11.087175 -4.347243 -5.959370 2.416448 1.475501 10.463287 -6.751114 -1.256598 -10.844083 -0.657819 5.657108 4.222315 -15.972126 -2.963361 -7.798506 -12.197776 -4.109291 4.911469 4.688985 7.885816 1.570101 -19.867048 -11.738366 13.357123 -4.467859 3.646097 9.276424 10.207733 13.095154 5.031393 5.924038 -3.180502 -4.548521 -0.386509 -8.858219 -4.492990 0.632861 3.406920 -6.966958 13.727703 3.638839 2.272871 6.722000 1.127591 2.872328 -9.565423 17.642984 9.642405 -11.383106 0.187561 6.641373 13.313062 -18.453301 -8.877662 --5.787157 -10.893664 8.883979 8.053619 3.017565 7.031457 4.370717 -1.906943 5.540227 7.275937 -3.624600 6.594570 -5.831879 -2.695359 0.363161 1.117078 -1.959320 -7.297608 2.129616 -0.957180 -0.457190 -6.335548 -5.137679 7.603322 1.552575 -0.666632 -2.986718 -0.468993 -13.467432 -8.070462 0.017640 -0.951641 4.673759 -2.237411 2.735550 -14.387242 4.993102 10.350082 -0.291901 -12.794008 0.042925 -3.266649 -0.895227 2.840111 -0.305222 4.211147 4.648608 0.957842 -1.088496 2.520774 1.886515 -1.835724 3.417917 11.514538 1.181259 9.981169 9.932861 -0.199738 2.098844 1.176008 2.723567 -2.593620 5.884064 5.094944 -3.766474 -0.866774 -0.590344 1.043657 -7.485010 1.775965 2.736312 -3.768919 -3.341708 -2.417642 -5.756360 -2.702223 0.877404 1.250643 12.582187 -3.235278 14.142813 6.070897 9.184205 -0.384391 7.595143 -0.758652 7.177782 3.232518 -7.468956 1.116352 -9.149965 -3.366960 -1.065375 5.217280 -5.580512 -0.301796 3.954154 -5.984815 -9.980532 6.330746 -1.821995 -0.860134 -6.604035 0.136134 5.207528 4.392819 -3.840845 -9.110529 -7.842912 5.421612 -5.128745 -4.891300 -0.433390 -0.745817 -0.800207 -1.139790 -5.940036 -1.629931 8.437965 -6.215710 -4.332176 7.827994 -4.064158 7.110000 -1.746908 0.151943 0.034434 2.451904 5.118920 1.738342 2.364985 -6.460272 -13.495202 0.572171 -0.260274 3.413370 -3.589252 -1.420992 3.994720 3.575250 4.062358 6.097965 -1.911668 6.286034 5.981036 -0.088122 -3.299619 -9.292064 -0.087436 -5.303899 2.549059 -4.029351 -2.075927 0.244750 6.461393 0.617803 0.499157 7.486789 -4.542787 6.097385 -0.767234 1.009692 0.211690 -1.539269 2.714441 -3.998529 -6.454188 4.377612 8.320878 2.465924 3.182279 -3.671532 -0.022549 -2.431608 -6.463413 2.707130 1.123434 1.232431 9.093140 4.145248 15.183451 -7.693726 -0.106715 -2.091403 -1.170263 1.742032 -2.273459 -9.076041 3.520094 1.557262 1.545420 10.466135 -0.869982 -4.460437 3.355112 0.254860 0.644112 -6.115133 8.366708 -6.954899 -0.977741 -2.480842 -1.138334 -5.293244 -3.951909 -6.438063 0.131777 10.496083 -2.060030 -10.062309 3.050969 -1.693802 2.589187 -12.493064 7.016932 -4.270917 6.337006 -3.486633 -2.343362 -0.929918 3.933244 0.596081 0.222633 4.645746 -7.331857 5.936287 6.422006 0.852814 1.291174 3.719317 2.631855 -1.149097 -3.033907 -5.318678 4.112537 -0.395529 -1.753722 -1.367166 -3.681105 7.620993 2.169424 -2.150762 0.130736 7.148599 -3.636381 -0.669029 7.379565 -2.026101 -4.312574 1.997973 1.133383 7.632936 -4.036758 -0.893600 -5.995846 0.654079 2.028668 3.122035 -9.739018 -4.425204 -3.238205 -10.015321 -3.396583 3.172548 2.150045 3.958262 1.346260 -12.138767 -5.484830 6.045985 -2.429237 5.635771 4.602982 5.940681 7.864940 4.123684 0.876642 -3.414308 -1.871737 -0.883584 -6.237830 -2.765397 -1.085184 2.601124 -4.936220 7.742208 3.356352 0.325236 2.657235 -0.034681 4.856277 -5.548214 11.606554 6.570448 -6.567468 1.047090 3.221886 11.122586 -8.974296 -5.683297 --15.626661 -31.227716 30.647968 28.223976 7.099088 20.084890 11.080691 -11.194480 12.691314 23.318948 -11.760309 20.061085 -18.976628 -5.800441 -0.006965 7.082824 -10.034820 -20.996579 2.591465 -5.556645 -3.593038 -16.273469 -13.364863 22.883262 7.495376 -1.626575 -10.540178 0.708927 -36.419482 -30.911654 -0.631215 -1.994990 15.160858 -2.415674 7.132877 -42.393206 19.403663 33.338367 -2.269471 -33.201534 1.956320 -10.320996 -8.258812 6.173974 -5.796940 11.030775 10.762349 0.533924 -2.461451 8.555766 9.374631 -3.617323 14.526044 36.321216 4.519478 30.907341 30.278756 -0.603868 6.400673 4.136183 8.328756 -5.051132 17.685167 14.660077 -8.733967 -5.922525 -1.492665 1.606615 -20.308288 7.107919 6.319265 -15.615379 -9.855641 -9.333080 -15.715936 -7.462624 0.177679 5.197149 38.422322 -12.952553 40.286954 17.830911 21.234295 -2.370316 23.035749 -2.705812 24.641509 10.953010 -18.838593 2.163628 -19.865497 -10.967500 0.935619 20.465998 -19.840615 -0.340813 14.226682 -20.716691 -32.027597 19.256710 -3.185753 -6.997084 -18.421981 -0.282452 12.572109 9.351877 -10.574224 -26.277280 -20.139352 15.960889 -13.670148 -16.745366 -7.351088 0.602462 -2.228278 2.602523 -22.832436 -2.404096 22.434775 -18.343121 -12.413440 23.002586 -6.473919 18.835487 -6.303151 0.987385 -0.838326 9.087711 10.057769 8.561377 5.868702 -12.282193 -35.857927 1.487034 4.241891 4.228221 -12.656817 -3.251199 11.785259 11.629062 9.012947 21.647772 -8.077433 24.289032 16.848605 -0.131404 -13.094905 -26.641187 -4.730698 -19.328559 7.129415 -15.548502 -11.443136 2.360945 21.054870 1.260418 2.175057 23.928425 -14.125338 20.454743 -0.769830 3.124130 2.398422 -11.091780 8.488366 -14.141527 -21.866032 16.539926 24.305743 7.221326 8.901947 -8.290255 0.421457 -9.657856 -21.524594 11.536530 0.437568 1.084414 27.986390 14.136165 53.908831 -20.503960 4.321484 -4.312034 -4.240975 5.160681 -5.829079 -28.686645 8.337680 4.889417 5.545507 35.580964 -0.526713 -14.862086 7.734455 -0.565640 1.632384 -20.386659 28.148094 -20.103750 -0.448382 -8.286935 -5.035896 -12.335262 -12.959866 -16.585472 -0.108416 32.889886 -16.367521 -29.549695 13.075571 -1.774361 6.790386 -38.571581 26.444992 -14.420731 21.675872 -9.856573 -11.242739 -0.652785 9.177374 -2.153519 4.523370 14.644476 -19.461196 16.109483 21.318942 2.985644 5.457788 9.000896 8.934391 -5.099786 -5.010684 -17.093921 16.617869 1.651383 -7.582054 -8.498230 -12.280012 17.607816 3.230642 -5.845057 0.878802 21.066986 -10.023807 -3.373641 20.253774 -0.526732 -14.395452 10.130224 3.435951 20.886073 -13.568762 -4.856916 -13.511821 1.539413 5.129267 12.007530 -30.952227 -14.986261 -16.240995 -27.431884 -10.845705 11.484760 12.033802 9.496713 2.246332 -33.788713 -19.250722 24.869907 -9.132203 19.243545 16.915293 20.561620 22.876694 12.950231 5.939037 -8.514384 -9.002807 0.723247 -16.103538 -7.648115 -4.005599 11.262567 -12.941019 22.673958 12.725599 1.668325 11.205143 0.564353 13.442420 -17.305835 35.005295 17.751241 -21.035848 5.468163 14.325280 27.543153 -27.144580 -18.151463 --4.214985 -7.626529 6.032403 5.501099 1.831383 4.908841 2.247035 -1.160743 2.895261 4.758252 -2.992595 4.157665 -4.306893 -2.744033 1.071340 0.101804 -1.481001 -5.144284 1.781748 -0.368919 -0.107763 -3.764841 -4.481183 6.064781 0.759222 -0.235528 -1.426542 0.720153 -8.756776 -5.461556 -0.916281 -0.684241 3.176367 0.786676 2.618917 -7.094125 3.599862 7.123677 0.049649 -7.787735 -0.705401 -2.458272 -0.875219 1.164541 -0.507966 3.047419 3.752326 0.193054 -1.377575 1.334365 0.746006 -2.446308 2.301793 5.946444 2.176699 6.737268 7.138213 -0.338317 2.115611 0.634506 1.947571 -2.429056 4.177951 2.967751 -3.193516 -0.184740 -0.018485 0.372013 -3.989437 0.758796 2.196796 -2.709636 -1.581912 -2.104498 -4.170549 -2.169403 0.872075 0.508817 8.340908 -2.572562 9.667606 5.107077 6.392009 0.088303 6.051178 -0.446817 5.747679 2.360560 -5.334734 1.652849 -6.195445 -3.218765 -0.612038 4.047012 -3.891422 1.252422 2.463507 -5.587809 -7.147140 4.747357 -1.795720 -0.623406 -4.273328 0.368134 3.504214 2.454242 -2.530038 -5.744161 -4.176446 3.211358 -4.421547 -3.399414 -0.757885 0.764046 -0.384586 0.207345 -4.482674 -1.152287 5.958090 -4.545443 -2.024698 5.653518 -2.000777 5.375587 -1.418836 -0.648923 0.191556 1.745540 3.450586 0.708296 0.955153 -4.565073 -8.181863 -0.199406 -0.125710 0.943633 -2.478741 -1.054136 4.052604 2.716957 2.983844 4.509380 -1.806159 5.160541 2.655818 0.061743 -2.198987 -6.877172 -1.569747 -3.353756 1.636732 -2.932436 -2.241991 0.538784 4.672772 0.390828 -0.225017 5.069698 -2.314101 4.022527 -0.934453 1.135134 -0.427681 -1.874902 1.948913 -2.970232 -4.085025 3.571206 5.847430 1.809947 2.747496 -3.245477 0.336044 -1.759498 -5.192026 2.004649 -0.131226 0.640899 6.651927 2.884031 9.124667 -4.525611 0.405878 -1.951463 -0.085789 1.201290 -1.136921 -5.990111 2.000212 0.886466 1.072399 6.951292 -0.292895 -3.205914 1.640016 0.304860 0.143708 -4.562683 5.652609 -4.623270 0.328019 -1.545349 -0.021046 -4.028801 -3.338906 -4.174690 0.004486 7.113062 -1.955080 -6.575725 1.658079 0.423058 2.621553 -7.995208 3.185215 -3.190211 5.694765 -1.830434 -2.440183 -0.176834 1.712035 1.010750 -0.097215 3.367289 -4.580996 3.772170 2.567121 0.582611 1.359532 3.147382 1.444180 -0.970288 -2.538855 -3.697170 2.294589 0.096467 -1.245404 -1.385485 -2.808408 5.181036 2.202546 -1.718694 -0.940555 4.851590 -2.594073 -0.686808 4.560312 -2.139565 -3.083856 0.494019 1.129848 5.456286 -3.126396 -0.772336 -4.573739 0.272695 1.693269 2.035393 -6.853451 -2.883715 -2.578449 -5.627443 -3.377173 2.956394 1.806747 3.451833 1.323778 -7.242192 -3.503815 4.923004 -1.764448 4.222597 3.085138 4.602302 5.592910 2.376838 1.500915 -3.501845 -0.857885 -0.192837 -4.709752 -1.131874 -1.055960 1.834131 -3.191304 5.828771 2.246459 0.252302 1.674512 -0.325809 3.438814 -4.001438 7.255139 4.542657 -5.650812 0.132386 3.269140 6.383451 -6.418341 -4.104257 --10.184916 -17.772344 18.906917 16.305064 4.674110 12.136281 7.760788 -9.119966 9.052625 14.838976 -4.452582 10.948945 -11.485873 -3.750575 -2.639717 4.247225 -4.715373 -12.230758 -0.082040 -5.968445 -2.596734 -10.365732 -6.943642 12.523667 4.320674 -3.532037 -7.126789 -0.219128 -23.233217 -21.533144 -0.434418 -0.811890 8.355560 -6.503277 3.165869 -26.721983 12.725141 21.489470 -2.326623 -19.293521 1.887543 -5.757348 -4.789448 5.132264 -3.190363 5.791032 4.241636 -2.408799 -0.530544 4.728322 8.245714 0.502924 8.744790 23.663641 0.246974 18.943205 17.023369 0.707211 3.329801 4.535186 4.490045 -1.359277 10.139822 7.951560 -4.332014 -3.386854 -0.406118 2.230735 -12.460130 5.007732 1.873636 -11.925835 -4.937080 -5.593023 -13.547728 -4.999036 -0.130193 1.602020 22.291910 -7.772017 23.442938 9.554107 11.344725 -0.834299 14.025807 -1.759798 16.204165 6.048079 -10.524424 1.449118 -10.914393 -4.187888 0.055120 13.289013 -12.601332 -2.809478 9.991327 -15.189505 -19.620747 11.720255 -1.103712 -4.317396 -14.287095 -1.979618 6.927928 5.078923 -7.822209 -17.037402 -13.698687 11.202958 -6.937517 -9.468827 -1.579275 -2.039008 -0.638541 1.447697 -13.218774 -1.344425 13.121114 -10.445910 -11.235489 14.555764 -3.580118 10.631491 -3.173654 1.959098 -1.638281 3.672918 3.616840 6.941149 1.599807 -5.133992 -23.549701 -2.966740 1.767559 1.638865 -6.179336 -1.570356 5.243658 7.141834 4.603281 14.541759 -6.190702 13.238461 10.712125 0.231559 -6.387108 -13.959274 -1.806844 -12.984243 3.832154 -8.346855 -8.339040 0.197482 12.520677 0.501459 1.411909 13.386287 -6.883663 10.381091 -0.190537 0.303626 2.389500 -9.844984 5.218886 -7.750267 -14.915886 8.570450 14.013606 5.828748 4.603699 -4.017332 -0.946873 -5.044831 -12.446298 3.867305 0.308191 -0.697377 16.186267 9.489130 33.331875 -14.841148 3.204640 -2.138260 -3.570896 4.531675 -5.369116 -17.203275 3.283937 4.332572 2.586739 21.955730 -0.830957 -8.383858 5.496746 -1.157247 2.071535 -12.564060 15.741665 -12.566425 -0.723334 -5.499329 -4.671355 -7.344104 -7.320701 -10.642507 -2.101260 18.989013 -10.714104 -18.233898 10.739787 -0.241801 3.234031 -23.704767 16.085359 -7.601800 12.258224 -6.018304 -4.255282 -0.687881 8.981085 -2.277027 2.708317 8.233919 -14.177163 11.468348 14.756373 1.592180 4.291213 3.718323 6.331244 -4.001500 -3.133266 -12.138316 12.972383 0.188024 -6.963848 -4.466327 -7.481006 10.596736 0.627844 -1.844442 -1.042817 12.063584 -6.752218 -3.059881 14.001915 0.533830 -7.772318 8.079394 2.836757 10.712454 -7.421435 -1.723616 -6.955293 0.789792 2.794487 7.571967 -18.077234 -7.939717 -9.879881 -17.964735 -4.312810 6.333373 6.654399 5.010816 0.980877 -21.210056 -12.581918 17.621329 -5.737597 7.619067 10.515162 12.767625 13.269105 9.152116 2.935013 -2.610366 -6.141757 -0.392174 -9.269926 -7.262547 -0.811913 6.973823 -8.232890 13.348335 6.174230 1.727359 7.553047 1.284561 5.830399 -10.582014 20.436307 10.186068 -9.744626 4.688375 10.214123 18.549154 -16.067826 -9.987125 --6.979887 -13.554530 10.742994 10.018125 4.495651 8.225639 5.860355 -2.399002 6.312368 10.740217 -4.255697 8.175938 -7.593647 -4.632939 1.914413 2.064534 -1.836036 -9.092918 3.271286 -0.496256 0.254736 -7.459772 -6.319199 9.550779 2.185492 -1.650497 -3.026795 -0.296039 -16.024146 -12.792368 -1.304811 -1.268539 5.897467 -1.730483 3.379911 -14.742572 6.982934 12.746721 -0.287682 -15.252565 -0.260428 -3.409801 -1.629321 2.874305 0.142170 5.917514 6.462580 0.212109 -1.945887 3.956249 2.131880 -3.076300 5.586822 11.631481 2.560057 12.490665 12.890750 -0.235912 3.505304 1.593368 3.595122 -3.737759 7.535814 5.880339 -4.572902 -0.515765 -0.735567 1.449594 -8.737241 1.704879 3.301363 -5.031100 -4.022207 -2.635135 -7.087062 -3.020337 0.701514 0.970140 15.005285 -4.129770 17.723185 8.506588 10.910645 -0.487970 9.417432 -0.930395 8.594366 4.352507 -9.436189 1.126539 -11.421243 -6.487459 -1.389622 6.868735 -6.471851 1.600196 4.765169 -7.556091 -12.681354 8.253529 -2.767187 -1.259740 -9.101870 -0.065395 6.402468 5.508283 -4.100889 -10.911254 -9.296149 5.875527 -7.259735 -6.330869 -0.931617 0.078009 -1.384916 0.438791 -7.612608 -2.493570 10.793952 -8.263836 -5.429099 9.167851 -4.368892 9.662812 -2.510967 -0.454312 0.243635 1.960275 6.380366 2.966407 4.402211 -8.111212 -17.080649 -0.153891 0.543779 2.359091 -3.771902 -0.699619 5.671497 4.875060 5.419218 8.972775 -2.622104 8.924765 5.959849 0.114810 -4.083055 -11.874136 -0.900089 -5.305322 4.234912 -5.079470 -2.147598 0.888462 8.205118 -1.369723 0.075433 8.882884 -6.091133 7.294701 -1.333710 2.197711 -0.535401 -2.845692 3.129037 -4.831730 -7.703098 5.913218 11.571282 2.866081 3.946878 -4.838528 0.883900 -2.641699 -9.349661 2.420573 -0.602358 0.087931 11.019778 4.609857 18.325899 -8.902686 -0.090682 -2.764940 -0.365333 2.278924 -2.691944 -11.324553 4.462590 1.227420 3.007185 12.675393 -0.581711 -6.269736 3.987558 0.265599 -0.188329 -7.280380 10.459061 -8.867185 -0.810157 -2.137487 -1.682704 -6.345253 -5.943416 -7.249561 1.641055 12.869747 -1.021733 -12.113636 3.142288 -2.129864 2.627685 -15.489592 9.078085 -5.309442 6.780006 -3.838269 -3.525834 -0.848030 5.073271 1.168045 -1.834249 5.957104 -8.742280 7.861303 6.967449 0.848479 1.561962 4.849357 2.348902 -1.349085 -4.182807 -6.475704 4.699728 -0.796271 -1.964265 -2.966222 -4.694442 10.317300 2.896880 -3.774272 -0.997708 8.288209 -5.629725 -0.852378 8.378429 -2.658844 -5.644757 2.717762 2.390768 9.895954 -4.975258 -0.898086 -7.685143 -0.358129 2.561044 5.281500 -11.621875 -4.469301 -2.599447 -11.352127 -5.490206 5.249831 3.913958 4.600418 2.010827 -14.363467 -6.460247 7.540069 -2.579277 4.420545 6.040403 7.598856 9.439355 4.140713 2.379378 -5.023025 -3.202689 -1.282827 -8.078807 -4.299101 0.237391 2.588307 -6.090810 9.722268 3.222951 0.849038 2.783676 -2.248511 5.686429 -6.733113 13.457819 7.814334 -7.944047 0.592557 5.044480 12.894723 -13.062752 -6.989499 --11.946910 -20.390479 16.788571 15.464721 6.198764 13.607135 8.984738 -4.777807 7.418554 15.539330 -6.632072 13.754098 -9.858090 -6.089098 -1.840091 2.139054 -1.829228 -12.659736 3.762884 -1.844047 0.292544 -11.326407 -11.099376 16.240650 3.018535 -2.462643 -5.251292 -0.513982 -26.135562 -20.085433 -2.433811 -0.555488 8.400390 -5.036935 4.761326 -23.100650 9.966753 22.073326 -0.244798 -21.979378 0.488333 -4.909460 -4.589614 7.554641 -3.128705 8.152096 7.412000 -1.400412 -3.271239 5.349284 6.967229 -2.210618 10.772014 19.332048 3.859591 20.094228 18.129232 0.184474 6.516253 2.285226 4.600707 -4.262400 10.386222 9.002666 -5.538918 -1.185465 -1.806238 4.759119 -13.008891 2.168275 4.393673 -10.319432 -6.690805 -3.604014 -10.471254 -4.614321 -1.489926 -0.861712 22.930556 -3.920884 27.690644 11.821559 15.097015 -2.864344 14.645998 -1.652724 13.435710 6.257212 -12.687559 2.124502 -14.086492 -4.407207 -1.014549 12.950724 -13.418104 1.641987 8.335223 -11.966159 -19.403868 12.243440 -3.553889 -4.591229 -9.895967 1.132355 7.668313 6.135453 -6.776950 -17.234550 -14.013387 12.106669 -9.527594 -10.248500 -2.741536 -0.954482 0.267968 1.472839 -10.048795 -1.420472 16.490510 -10.840529 -8.299360 14.160531 -2.945285 13.248252 -3.489174 -0.070842 0.521847 1.947389 8.462960 3.970102 2.455986 -10.695565 -26.474957 1.733905 0.506909 0.821990 -8.049213 -2.654609 8.984752 7.643139 10.000767 15.066388 -4.675019 12.678306 10.297849 0.875862 -5.639552 -17.700737 -2.383361 -8.149664 4.038469 -6.672240 -6.937157 -0.711030 11.675935 -2.338566 0.272928 10.216928 -6.897121 12.010346 0.006273 1.724127 -0.195018 -7.230431 4.205680 -7.190448 -13.082459 9.976923 16.425080 5.955006 4.940421 -4.559484 -0.475016 -2.337644 -12.000187 5.828281 0.244587 2.699889 18.345308 8.355492 32.880734 -10.502600 -0.011391 -4.871473 -2.379878 3.390789 -4.895258 -16.659457 5.935889 3.301018 2.614843 22.091323 -1.321543 -6.742020 6.746138 0.404584 1.243326 -13.115700 18.799448 -12.740645 -1.376856 -3.689133 -5.243690 -8.163520 -7.605296 -12.629920 -0.964487 19.421351 -7.837265 -17.705325 4.568512 -3.599706 1.937811 -21.900991 15.317847 -7.768217 10.884785 -5.222310 -5.280015 -1.302013 8.152978 0.464276 0.701880 8.516288 -14.717990 12.391477 12.398546 1.034800 2.055605 6.062328 3.833141 -3.232737 -5.694486 -10.971512 8.555886 0.603150 -3.269342 -3.654132 -6.929459 12.699709 3.619006 -4.761300 -1.005845 12.984219 -8.297053 -4.346090 12.657965 -3.377988 -7.510803 4.029749 2.420923 12.157488 -7.607749 -2.630112 -10.724345 -0.758034 4.991304 5.691953 -18.079864 -5.540157 -7.682471 -17.063826 -5.123190 5.641244 7.201422 8.026257 1.857371 -23.305267 -12.402332 17.294257 -4.684832 8.463367 9.989285 11.750076 13.832523 6.136665 5.047150 -3.996419 -6.852293 -0.633088 -10.597402 -5.653809 0.240875 4.628184 -8.798357 15.720386 4.662095 1.292807 6.583462 0.319814 6.283151 -10.648038 21.503751 11.215300 -12.165111 1.557969 5.377801 17.860330 -20.692832 -10.217004 --6.134371 -10.886631 10.720940 9.009010 3.023167 7.138850 4.207336 -4.001966 5.022701 8.042150 -4.155823 6.800702 -6.036774 -2.953008 -0.296127 1.447211 -2.670727 -7.546896 1.251149 -2.027041 -0.895669 -6.014518 -4.925861 7.444008 2.085161 -0.458898 -3.601730 0.735641 -13.489776 -12.635468 0.000320 -0.596379 4.623233 -2.153558 2.779163 -14.702770 7.080076 11.859385 -0.719454 -12.353372 0.375134 -2.761503 -3.271351 3.380980 -1.173333 4.422790 3.928462 -0.077781 -1.406755 2.968669 3.408349 -1.488006 4.112901 12.235077 1.819813 10.731770 11.076239 -0.167747 2.695280 2.420194 2.817535 -1.882260 5.760988 5.622054 -3.267558 -0.776537 0.465203 0.883588 -7.307658 2.685897 1.772139 -7.184864 -2.557225 -3.746481 -7.000819 -1.952445 0.857108 1.057255 13.655040 -3.614094 14.451212 5.937455 8.543856 -1.186679 8.042578 -1.293249 9.276639 3.867251 -7.028123 0.435021 -7.735640 -4.375918 -0.516801 8.212834 -6.780169 2.167617 5.164927 -8.717458 -10.559379 6.661519 -1.392155 -1.999266 -7.833075 0.245875 4.946640 3.384090 -3.342691 -9.074422 -7.768344 6.008396 -5.858194 -5.073079 -1.649887 0.386958 -1.387539 1.545224 -7.119217 -1.260407 8.473313 -6.306583 -5.554258 7.982025 -3.135665 6.670087 -2.265823 0.220046 -0.177730 1.910201 3.555415 2.711445 2.333089 -4.517716 -13.964984 -0.379140 0.740180 1.966920 -3.921771 -0.695845 4.683722 4.017929 3.088638 7.382764 -4.552334 7.775434 6.199506 -0.083504 -4.497925 -9.215154 -1.402122 -6.762137 2.260079 -5.064764 -4.081589 0.702210 7.231568 0.815540 0.202576 8.572032 -5.555841 6.899983 -0.418803 1.135936 -0.064803 -5.263751 2.572961 -4.703948 -7.728344 5.054759 8.452617 2.245538 3.523544 -3.572534 -0.348438 -3.384601 -8.292467 4.183523 0.282250 0.904065 8.997656 4.892170 18.228857 -8.344813 0.716053 -1.680469 -1.233766 1.487023 -2.415233 -9.666020 3.078828 1.768428 3.449324 12.534637 -0.052505 -4.639542 2.347768 0.033595 0.650769 -6.674405 9.665427 -7.065797 0.007102 -1.931936 -2.751945 -4.560026 -4.263850 -5.934186 -1.088524 11.059882 -5.168028 -11.894405 5.183192 -1.636598 2.962712 -13.866015 7.757797 -4.682467 8.213052 -2.904065 -2.249543 -0.989292 3.201094 -0.093375 1.857395 4.536128 -7.274589 6.482349 7.746584 0.766020 2.170493 3.061694 2.694567 -2.385378 -2.795709 -5.969968 5.894461 0.211823 -3.083485 -2.734815 -4.116964 6.847835 1.127120 -2.175861 -0.707968 7.149696 -4.074507 -1.153676 7.533861 -0.934464 -4.932530 3.684695 1.946350 7.220035 -4.240792 -1.747350 -4.720777 0.335601 1.934518 3.561779 -10.301150 -4.696725 -5.839011 -11.442614 -3.970471 2.804935 4.412435 3.404692 1.162279 -11.641646 -6.518719 9.507445 -2.526283 6.811473 5.559311 7.157276 7.648028 4.416223 1.601674 -2.580606 -3.509984 -0.019100 -6.643101 -3.498029 -0.930664 3.055021 -4.645723 7.858602 3.462339 1.083725 3.710627 0.723187 3.901296 -6.071143 11.609393 6.567435 -6.857656 1.326281 4.258850 10.752621 -9.561153 -6.220971 --7.561933 -14.172364 13.924162 12.598130 3.272899 9.089620 5.205327 -5.564215 7.452870 9.679823 -4.945936 9.198249 -8.469742 -2.640009 -0.884580 3.270759 -4.989299 -9.529815 1.428977 -2.671205 -1.470418 -9.178160 -6.279559 10.217349 2.459549 0.499866 -4.903358 0.588538 -18.069385 -14.226168 1.717286 -1.218866 6.363529 -1.262373 2.777162 -21.656409 9.360881 14.849177 -1.098156 -15.849049 0.563593 -5.141260 -3.102307 2.605647 -0.927489 4.437893 4.293922 0.954053 -0.783316 2.686020 4.021170 -1.425601 6.299746 18.009158 -0.371234 14.733496 14.262955 0.077391 3.435941 2.330725 3.535784 -1.738849 8.178848 8.493422 -4.947386 -2.340262 -0.030016 0.640740 -9.971811 3.752547 2.839098 -6.687397 -5.294409 -3.655361 -7.550552 -3.149555 -2.851111 2.453236 17.937122 -5.726070 20.253431 8.264955 11.620362 -1.064204 10.446337 -1.117343 11.995060 4.538311 -10.279555 0.554265 -11.552969 -3.829590 0.207046 9.146437 -9.324245 0.999707 5.813654 -9.890962 -14.413431 7.884462 -1.676465 -2.110645 -8.987646 -0.012336 5.919733 3.938281 -4.384633 -13.189148 -10.952320 7.619035 -6.984160 -7.053295 -2.446117 -0.791408 -1.002386 -0.644247 -10.082490 -1.843750 10.363088 -8.239095 -7.179214 10.534481 -3.622692 8.292826 -2.493805 0.460251 -0.241964 3.236776 4.411421 3.328670 3.495375 -6.803832 -18.704512 1.170381 1.431906 3.927263 -5.665683 -1.213865 5.304922 4.703147 4.263534 8.542224 -3.594610 9.882065 6.786992 -0.844469 -5.067166 -12.134711 -1.175536 -9.429196 4.019766 -6.596101 -5.138623 -0.536019 9.356980 1.305625 1.493104 9.882667 -7.348944 10.167207 -0.230630 1.805230 1.323719 -3.441551 3.804256 -6.051205 -10.098834 6.422507 10.397271 2.431678 3.646541 -4.280328 -0.626161 -4.400558 -9.188596 5.745181 -0.040101 0.650108 12.769638 5.946995 27.932645 -11.874292 2.397632 -1.554567 -1.355872 2.321767 -3.024607 -12.575018 5.053257 2.411223 2.355370 15.464041 -0.490126 -6.772841 2.758933 0.311842 1.331641 -8.996875 12.580638 -8.960872 -1.821231 -3.664385 -2.387652 -5.690749 -6.059740 -7.759827 0.397689 14.342461 -7.656409 -14.434855 6.991338 -1.440840 3.191362 -18.029320 12.518547 -6.457102 8.977431 -5.259563 -4.556851 -1.146859 5.215410 -0.931567 1.710194 6.429986 -10.631281 8.300783 10.224299 1.636316 3.392232 4.215084 3.804791 -1.841080 -3.037961 -7.684172 7.847436 0.680463 -3.976366 -2.823993 -5.773903 9.825474 1.694215 -2.480933 1.302106 11.383278 -4.222419 -1.230298 10.183079 -0.503290 -6.121760 4.628747 1.462582 8.669365 -5.473459 -1.729955 -6.294027 -0.680833 1.776147 5.381378 -13.471500 -6.889743 -5.970100 -12.810808 -4.211580 3.626347 5.304119 5.285560 1.784101 -18.309984 -8.837386 12.074204 -4.008315 7.027710 6.730384 8.861951 9.754943 6.807713 2.049219 -3.978178 -3.361406 0.398642 -7.907345 -3.626959 -2.212203 5.307807 -6.401980 10.872561 4.973636 0.479347 4.233887 0.417920 5.521512 -7.367377 16.555378 8.472208 -9.039379 2.390717 6.049592 14.585481 -11.534343 -7.985460 --4.922411 -7.727489 6.147989 5.553991 2.411221 4.582671 3.788827 -1.002240 4.111093 5.411068 -2.339714 4.631639 -4.508307 -2.090789 0.602479 0.946209 -1.231956 -5.447931 1.879413 -0.239792 -0.490730 -4.709178 -3.996542 5.076460 0.973232 -0.763203 -1.993936 -0.181506 -9.464844 -6.335312 0.633198 -0.802578 3.277745 -1.794101 1.803781 -11.675825 3.514614 7.063562 -0.169926 -8.890541 -0.229100 -2.420013 -0.466970 1.218788 -0.233886 2.836183 3.728305 1.012786 -0.830258 1.621517 1.249544 -1.893162 2.239067 9.042064 0.488364 7.072413 7.353984 -0.026202 1.534473 0.935497 1.953775 -2.181319 4.251752 4.100456 -3.202180 -0.063987 -0.053373 0.196194 -5.697997 1.266874 2.388633 -2.935649 -2.934561 -1.737705 -3.965740 -1.868114 -1.493062 0.737476 9.506964 -2.828141 10.461265 4.488630 7.213544 -0.105950 5.363365 -0.561953 5.481664 2.158663 -5.889953 0.293879 -6.898618 -2.583927 -1.053701 4.459675 -3.507806 0.763120 2.630050 -2.825779 -7.067013 4.390570 -1.762611 -0.164899 -5.265892 0.460528 3.877906 3.163431 -2.538211 -6.670669 -6.192953 3.743299 -4.218694 -3.315452 -0.182019 -0.359511 -0.921121 -1.224223 -4.571325 -1.676333 6.078780 -4.831530 -3.451032 5.364205 -3.588766 5.342752 -1.140554 -0.272512 0.233925 1.697619 4.034033 1.021962 2.523988 -5.161840 -11.360139 -0.101000 0.328362 4.319313 -2.173367 -0.258325 3.063542 2.455807 2.771253 3.939893 -1.039632 4.849944 3.483950 -0.339527 -2.601550 -6.755595 0.170409 -3.256006 2.357740 -3.233152 -0.621010 0.490844 4.577701 0.237553 0.120370 5.798297 -4.639599 5.909854 -0.775383 1.021536 -0.174076 -1.046339 1.908417 -2.855960 -4.425886 2.961139 6.121961 1.438055 2.105198 -3.120937 0.169991 -1.922467 -5.204881 1.533152 0.212833 0.361666 6.062032 2.431205 12.119637 -6.303446 0.215481 -1.443558 -0.127145 1.094823 -1.392140 -6.353946 3.237382 0.819501 0.876499 7.217462 -0.334499 -4.008962 2.102001 0.133320 0.287038 -4.144861 6.202566 -4.741993 -1.344566 -1.514828 -1.050546 -3.618716 -3.077406 -4.468557 0.458711 7.407968 -1.810857 -7.457940 1.797892 -1.434452 1.984493 -9.126785 7.008383 -2.983456 4.338756 -2.870474 -1.800647 -0.788023 3.504842 1.054043 -0.163309 3.263351 -4.900240 4.082803 5.144368 0.555136 1.393491 3.029764 1.695456 -0.328098 -2.610248 -3.210056 2.807856 -0.278340 -1.364439 -1.055010 -2.737425 6.060571 1.993592 -1.798011 0.472379 5.806012 -2.853889 0.081756 5.024932 -1.566696 -3.020198 0.887054 1.067721 5.824074 -2.783113 -0.382758 -4.457417 0.033452 1.140125 2.551997 -6.518463 -3.330850 -1.281807 -7.069840 -2.716782 2.807472 1.945610 2.694837 1.280838 -8.726686 -3.548296 4.529317 -1.732075 4.100772 2.996172 4.199893 5.377982 2.813561 0.460813 -3.145257 -0.941264 -0.635602 -4.624829 -1.778738 -0.540715 1.703612 -4.040658 5.588093 1.986406 0.358532 1.408071 -0.491885 3.841851 -3.763027 8.861870 4.640404 -4.627424 0.541841 2.794917 8.767978 -6.764732 -3.986509 --60.486150 -119.219444 140.454508 124.697349 28.691360 85.129079 46.602161 -64.523054 86.790572 86.455192 -22.369131 67.922437 -91.985235 -3.683544 -13.166412 45.316206 -52.118711 -94.173132 -4.110930 -44.728620 -20.757101 -86.419536 -21.381088 75.519313 36.561104 -6.592687 -60.710808 -6.059773 -157.121569 -130.762871 28.375060 -16.566636 70.622939 -35.852903 20.039433 -218.644606 100.995404 133.597112 -16.124725 -145.400850 19.476947 -53.171619 -9.022059 16.584387 -18.787968 44.459019 26.127591 -1.762926 24.327855 33.496653 36.947545 12.188061 42.176088 167.007615 -26.996232 115.956417 91.071154 2.054993 3.240650 19.862248 27.629669 0.800860 75.229470 63.323120 -41.225118 -44.116841 -8.147645 1.578558 -112.803835 49.989571 9.418601 -53.494349 -55.489807 -25.581077 -88.551763 -33.362048 7.652496 39.194893 164.775677 -59.634787 149.712471 45.255849 77.565125 -0.602247 91.271084 -8.667616 100.468107 40.386148 -77.355338 -1.454312 -88.311984 -24.907325 -0.791041 64.809189 -73.454544 -48.027158 57.696936 -86.723630 -131.105394 71.603922 -2.462002 -19.472548 -111.955235 -24.489361 62.822993 55.851442 -58.445002 -126.535735 -82.029196 71.637318 -30.222047 -65.792104 -1.962570 -29.789930 -18.377683 -27.571327 -97.209214 -19.475098 70.450432 -76.747883 -67.823193 105.640713 -51.883105 59.951061 -17.784741 23.654803 -22.011460 50.293464 24.762545 52.284632 23.158862 -43.317732 -140.592172 -16.886219 12.115948 58.684747 -44.116359 -15.000356 5.037602 41.300300 5.905678 65.483961 -27.345424 70.712555 97.932697 -9.942145 -49.668002 -78.602048 3.452204 -107.932717 27.552282 -68.252964 -34.170216 21.806933 91.150647 14.057248 31.819864 123.605971 -74.984558 76.535185 -6.527794 -2.128622 41.178066 -22.788553 40.772152 -56.271162 -103.225441 59.755936 80.950707 35.708383 27.098025 -30.399665 -2.667086 -46.847886 -72.661817 35.414689 19.087337 0.216392 107.758839 60.313849 184.592029 -107.999731 18.189002 5.966068 -29.628870 33.392118 -32.373218 -126.638699 35.628016 30.593715 8.297574 139.003323 -16.229755 -73.295397 48.206852 -4.761559 25.647579 -88.227217 89.448369 -95.499132 -10.255485 -56.646216 -34.224640 -51.402603 -52.527791 -73.923590 -12.160175 135.041259 -54.717204 -128.397233 80.858265 -17.549176 37.535183 -175.104107 99.499568 -61.108602 79.315346 -41.799198 -16.807818 -6.766078 52.790605 -24.943030 11.057895 62.729634 -81.945212 76.236419 119.545975 19.644349 14.059252 25.132833 57.015378 -10.890343 -3.619655 -75.109993 93.031074 -9.833187 -34.195538 -13.069202 -53.579030 67.442029 -7.174760 -11.989946 21.310679 92.445586 -24.335771 9.079919 95.008876 21.320197 -53.913427 59.700417 3.191735 76.686885 -48.465054 -9.440462 -39.942028 27.533378 8.333780 59.704353 -131.473822 -93.522658 -68.272215 -139.802514 -19.672495 36.787373 31.099421 24.377602 7.068367 -148.308317 -79.963961 87.047292 -39.768166 100.922733 66.543164 75.251928 92.529319 81.200825 -16.597267 -26.430191 -23.824561 -5.299498 -57.852869 -42.100602 -27.129230 59.220812 -65.147111 78.230406 67.506530 -4.721986 43.240234 -10.293514 56.410985 -74.897594 158.648659 74.328434 -59.451695 51.359908 52.830658 144.801458 -68.474986 -71.641683 --13.979267 -129.437809 235.710890 200.268382 -10.160639 96.720723 21.553367 -150.974470 147.034353 106.580760 -39.035118 67.199910 -110.700247 34.368474 -41.655199 113.413682 -138.305526 -104.793965 -45.737800 -107.930455 -69.858634 -110.328449 9.118955 57.909517 72.508420 43.420303 -93.106431 14.261207 -130.439666 -210.225488 65.942900 -25.239520 81.070125 -17.730368 44.683581 -305.400680 176.487213 158.935593 -46.960328 -184.199270 28.427213 -54.543734 -37.083471 6.597582 -33.957921 56.524942 -4.740237 57.443598 63.478507 65.791738 60.742042 43.164861 82.478175 268.736632 -51.726267 152.736394 105.753871 6.770334 -0.005223 51.089757 45.972389 43.243537 79.252159 89.646477 -5.152547 -103.369969 -18.924724 -18.554744 -136.665274 120.196617 -8.603466 -102.254574 -104.728083 -75.557231 -106.369230 -31.666523 -161.268650 111.571029 230.062345 -120.890197 149.808985 61.391133 71.341834 -2.584060 100.488307 -24.390054 170.224956 66.877722 -74.464649 5.845631 -54.996464 -69.077670 42.210229 4.610259 -119.539849 -165.932624 95.905057 -171.794043 -179.818140 99.409982 53.516289 -40.046676 -113.781046 -50.042203 84.343607 42.688728 -77.720674 -155.226922 -73.982964 90.231127 -9.401799 -75.918587 -11.174757 -25.336159 -11.335606 13.024650 -170.691746 -5.833272 66.843443 -77.656984 -60.185821 139.581064 -14.663844 27.390786 -26.498402 38.907897 -40.249533 114.164014 0.512744 119.320142 1.927486 46.579399 -141.595550 65.841770 58.485177 -3.580584 -33.128493 1.598226 -16.828833 63.203674 -56.993337 95.946002 -78.891944 85.414842 137.955078 -14.913179 -109.601733 -88.802952 -40.877391 -178.551260 44.910186 -112.088643 -93.047518 33.169294 129.386444 82.391724 74.649127 121.083665 -140.071881 68.440586 -25.643635 23.203996 74.864283 -20.315148 65.059015 -78.058228 -136.247447 83.060960 87.500599 37.855427 43.746692 -50.827498 0.159627 -85.945752 -63.744882 85.814360 52.709598 -19.390147 136.467570 104.109376 249.779872 -124.893800 36.367165 52.827057 -51.355816 33.094721 -28.923571 -184.942051 55.261332 39.517075 64.965236 183.137801 -24.432931 -49.744035 51.425783 -26.113720 39.995400 -104.734521 75.222207 -123.276972 -29.669389 -86.678750 15.570291 -66.605733 -48.135274 -74.548273 -40.015413 188.318682 -155.118024 -128.886134 191.360792 -61.829973 49.283473 -184.956182 159.832706 -80.546979 101.267734 -43.784109 -23.171882 -15.804546 20.362146 -74.616829 30.238920 80.599353 -75.629004 63.679261 186.372674 33.148825 16.193116 16.571698 111.116772 -56.496356 51.882720 -105.489787 167.187906 -18.588553 -38.345606 -29.961306 -68.994819 31.849543 -67.881045 11.817130 78.934925 94.134293 9.590686 28.059176 94.911230 76.209200 -88.460350 128.443945 0.752899 49.758314 -88.093764 -19.931596 8.678157 32.568065 -36.965766 78.054368 -187.140429 -138.958149 -194.469656 -130.262337 -41.947599 5.360662 62.104565 -15.371426 -24.204302 -150.042421 -139.240339 179.411857 -62.460485 53.070075 101.377247 94.854132 123.143569 157.529074 -26.914254 3.000339 -52.764957 -12.589550 -43.016976 -59.750267 -65.486316 130.411974 -67.698700 70.939838 137.987406 -19.973887 76.959967 -2.401006 85.491957 -103.793480 192.135360 85.513372 -62.748873 81.458855 118.761057 183.981603 -39.704705 -103.724750 --11.980022 -21.530778 20.678471 19.472726 6.272850 14.203949 9.627748 -8.228578 12.701247 18.270397 -7.815051 12.915247 -12.056217 -5.558930 0.887375 6.387077 -6.011543 -14.011463 2.682011 -3.593504 -1.445859 -14.177337 -9.728468 14.580389 4.116592 0.464510 -6.556819 2.169392 -24.581631 -28.914741 1.448222 -1.666711 9.788778 -1.118751 4.583751 -33.977577 15.581982 23.817350 -1.612556 -23.311729 0.272675 -5.580329 -6.561991 6.020133 0.363502 10.143345 7.366071 0.899692 -2.236130 6.438547 7.424338 -3.089600 11.907789 23.592087 0.605798 21.759142 21.361134 -0.352023 5.328718 3.731660 5.593049 -3.056727 12.660817 13.492235 -6.417349 -3.296146 -0.164682 3.405665 -17.109093 4.724052 4.644194 -11.604666 -8.753492 -5.723695 -11.423570 -4.754240 -8.463705 0.772379 29.669728 -6.401118 31.631086 13.539651 18.517009 -2.378834 16.164212 -2.583845 17.800296 7.821664 -17.407758 2.117073 -15.645661 -10.365337 0.613736 17.845910 -14.267091 3.777380 8.828670 -13.535748 -21.108653 13.065055 -2.665472 -3.770509 -15.363323 -0.083149 9.866296 5.340974 -5.841379 -20.665558 -17.128767 10.375520 -11.714136 -11.508251 -4.968177 -0.406557 -1.874999 3.330181 -15.394576 -3.176301 15.862369 -12.756675 -10.217014 14.842005 -5.228709 12.522608 -4.802821 0.692660 -0.536116 2.636939 6.786248 7.375278 7.431512 -10.092728 -33.227097 -0.171171 2.389733 6.376800 -8.074242 -3.853875 7.966606 7.869356 7.033616 16.328549 -4.951738 16.285681 14.257611 1.017049 -7.293776 -18.498406 -1.863332 -12.538258 8.684383 -9.670259 -4.838183 -1.770942 14.406146 -2.840719 1.872281 14.120609 -12.699892 16.497439 -1.505774 3.612702 1.455174 -6.555450 5.441526 -8.732049 -14.283082 11.510307 17.997352 4.590467 6.789369 -6.943712 0.291063 -5.168431 -15.900265 9.393541 -2.259101 0.570611 18.269966 8.724652 44.566464 -14.813344 3.185039 -3.063502 -1.616478 4.311611 -3.840341 -18.956765 9.027396 3.226281 6.611102 24.701950 -0.297698 -9.724636 4.346515 0.761962 0.537437 -14.169396 21.029972 -14.419517 -1.081786 -4.352654 -4.337388 -9.135178 -9.488581 -10.715971 3.756890 21.999794 -6.717514 -21.271139 9.337623 -5.323103 4.025598 -26.389552 22.472301 -9.781045 11.496615 -10.751324 -6.395418 -0.522459 8.609100 -0.760516 1.235003 9.906683 -14.847857 13.354817 15.508569 1.722554 3.662769 5.833067 4.632614 -3.594752 -5.123620 -12.096184 11.376715 1.190365 -3.908563 -6.809660 -8.421112 16.325291 2.149516 -5.510675 -1.018906 16.902376 -9.338772 -3.977748 13.712738 -1.414067 -9.786021 8.070777 4.320030 13.290262 -8.403481 -3.048856 -9.649394 -0.711849 3.215581 9.215886 -20.178773 -7.328145 -6.907276 -19.481679 -9.036123 9.959368 10.116968 7.927861 2.604512 -25.820408 -13.195193 18.771911 -5.019148 7.813368 10.652565 14.338911 14.314234 7.792320 5.140205 -6.672160 -9.019443 -1.189888 -12.262121 -7.148220 -0.655364 7.669521 -10.206066 16.039181 6.094108 0.761936 6.298958 -0.816748 12.618662 -11.164457 27.055592 12.110798 -12.153042 3.214773 8.809746 24.664060 -20.947079 -11.602480 --64.087874 -104.832284 103.099906 88.684987 21.723984 70.988104 24.426914 -34.548942 31.991576 72.978573 -25.040138 76.783252 -57.151213 -19.762951 -16.450462 14.552891 -21.458390 -69.141082 -2.812211 -29.584758 -21.426765 -39.288918 -58.789728 90.465639 21.117836 -43.411120 -46.327439 0.873558 -132.386525 -83.819233 -27.653621 0.795695 48.784555 -77.512245 26.450796 -148.768365 60.759710 117.985269 -6.361821 -110.259498 10.665168 -37.029308 -19.605917 31.527732 -57.963545 12.085203 29.965201 -23.637193 -12.657911 20.976136 34.408953 16.971306 42.914393 161.782569 25.194651 104.451732 100.280232 2.601337 6.809178 13.876539 27.324363 -18.537305 54.004065 20.475643 -22.856479 -21.024078 -2.046529 19.978363 -54.191969 11.791605 20.345728 -71.113963 -6.728510 -33.469632 -72.314848 -37.565917 72.754703 8.773937 111.022296 -52.303163 117.148696 49.178082 55.885670 16.943017 83.587951 -7.931039 79.692956 33.026079 -45.763321 8.034334 -45.731389 3.273130 5.029988 65.433519 -77.482075 -41.226573 61.272049 -77.243296 -114.777190 74.736954 -6.581169 -30.636739 -62.903913 -30.364332 38.443353 36.108757 -51.442742 -81.735944 -72.550299 71.119062 -30.259814 -60.905981 -9.351829 -15.060378 12.919985 -0.638675 -72.314640 6.830064 85.415964 -50.870731 -51.188681 86.765052 -28.586012 68.449395 -20.100950 14.695053 -5.373766 26.467417 31.522148 22.045411 -25.102605 -34.662685 -90.108460 -14.819155 -5.949195 -8.218774 -40.233064 -8.007333 38.037780 43.949424 43.407710 88.112386 -33.360933 79.088867 37.511023 14.340431 -38.047753 -90.297542 -24.566806 -63.230818 1.431303 -46.321032 -71.934706 25.572452 65.533621 9.714759 -5.827070 78.070383 -13.038809 64.036354 7.209220 -9.958032 10.643982 -75.468915 27.770019 -48.210553 -84.055874 51.356172 78.733437 42.180438 21.683106 -18.402824 -2.373201 -23.473667 -62.123051 10.382463 15.682633 11.710785 97.690785 55.810446 180.908306 -68.366063 8.484335 -30.090167 -31.118040 25.641982 -40.713040 -93.994708 -14.002212 31.463795 -6.810076 133.397537 -5.222690 -56.587456 38.293325 -3.929747 12.243783 -68.196983 96.319760 -65.691024 3.152368 -21.476907 -35.524512 -47.792390 -24.505629 -81.994390 -40.275003 112.488130 -102.547317 -107.750323 42.517422 24.481433 27.564683 -132.196971 83.226348 -39.735293 100.606159 -18.693456 -30.301173 -0.026351 37.777368 -14.821343 38.520056 49.161456 -70.699241 47.046767 73.546297 4.803211 27.079832 22.186185 33.534776 -24.687701 -12.169314 -68.650617 64.917227 -0.694691 -47.121914 -24.256941 -39.060489 47.437587 12.478139 -2.800451 -29.077714 56.768252 -32.908658 -26.497210 81.705168 -8.118006 -42.182729 36.821319 3.557242 63.365238 -46.548213 -7.785159 -47.490826 22.655326 31.684850 32.756343 -108.695719 -37.716434 -89.086796 -92.473996 -10.066914 42.345555 18.693877 23.894675 -4.779093 -109.294506 -74.906803 102.054871 -34.388093 88.618494 69.090773 78.686306 85.385474 47.347184 22.048122 -15.580702 -22.400446 -8.336830 -46.712672 -29.173681 -9.017923 32.441125 -39.288498 78.445391 39.668783 18.637589 54.564660 18.388739 -12.686480 -59.846253 107.973817 58.097171 -72.586897 14.402428 56.327972 84.120124 -101.962255 -62.460468 --6.201939 -12.769948 11.445955 11.073923 3.707782 8.335041 5.150640 -3.924498 6.496395 10.165118 -6.643619 8.487463 -6.490401 -3.506168 1.433132 3.346192 -3.540650 -8.080550 2.530281 -0.433477 0.136722 -8.284647 -5.495929 8.641068 2.693287 3.540078 -3.317339 2.314038 -13.931940 -17.959094 0.961815 -1.142604 5.540433 2.998288 3.001399 -16.095248 8.835975 13.958654 -0.366467 -14.361933 -0.264566 -2.524917 -5.233504 3.472595 1.884622 7.479836 5.183641 1.900031 -1.941314 4.115763 3.365245 -4.018846 7.015769 9.203979 1.777955 12.794789 13.632838 -0.468140 4.323197 1.450495 3.305583 -2.202692 6.972790 9.650349 -4.376795 -1.402988 0.047531 1.673580 -9.906498 2.894696 3.041198 -6.228531 -5.971243 -3.581555 -4.259496 -1.097100 -4.490587 0.417622 17.437952 -1.817589 19.524610 8.275743 11.343219 -3.469411 8.544793 -1.959946 9.449667 5.033625 -10.536568 0.601333 -9.693408 -8.252320 0.313914 11.112223 -7.863917 7.511513 4.375106 -7.567887 -11.631993 6.405750 -2.030984 -2.367272 -7.005846 2.879390 5.943787 2.647528 -1.383497 -11.295313 -8.506858 5.103561 -8.138179 -6.618440 -5.082972 1.991713 -2.273471 3.608583 -8.367229 -2.223152 9.413577 -7.884374 -4.062378 7.280222 -2.606029 7.181497 -3.231909 -0.700526 0.765232 1.324105 5.320513 3.691213 6.465769 -6.708611 -18.246616 2.867503 2.044673 2.996397 -5.894881 -2.089175 6.090470 4.096735 4.424296 8.103613 -4.283064 9.216555 8.213649 -0.020056 -5.133651 -11.650281 -1.993276 -6.506428 5.707867 -6.010276 -2.051914 -1.208313 8.057098 -2.417279 1.185631 8.926375 -9.248745 9.184146 -0.615696 3.496785 -0.011824 -1.744203 2.704351 -5.228947 -7.471675 7.742657 10.631975 0.842899 4.475138 -4.357821 0.317654 -3.571687 -9.861824 8.671136 -2.167595 1.380093 10.638190 4.059529 24.872918 -6.276312 1.271568 -1.510944 0.222707 1.217764 -0.533970 -10.901516 7.041414 0.631725 7.056118 14.118593 0.387564 -4.685110 1.668630 1.081804 -0.269075 -8.099821 13.601388 -8.159113 -0.044187 -1.891049 -1.887208 -4.148107 -5.854841 -5.101705 4.495224 12.691498 -1.621622 -12.749198 4.021157 -4.374068 2.690903 -14.723635 10.601702 -6.300231 6.170163 -5.319772 -4.054172 -0.213027 1.804757 0.429321 -0.405280 5.638174 -7.321291 7.380076 7.568440 0.932689 0.972204 4.236629 1.460138 -1.979110 -3.173335 -5.544578 4.526172 1.868182 -0.709972 -4.207163 -4.575547 8.988380 1.200208 -5.121247 0.619375 9.768804 -5.163289 -1.500436 6.278257 -1.070637 -6.143302 4.149613 2.812093 8.129844 -4.758364 -2.957050 -5.557376 -1.097797 1.761393 5.315118 -11.385623 -4.669295 -2.719218 -12.062215 -7.013209 4.270947 7.636412 5.089268 1.821867 -14.299989 -7.143735 10.821619 -2.206993 6.620766 5.376458 7.975863 7.414630 3.288787 3.356081 -4.491375 -6.058606 0.495242 -7.468926 -3.051284 -0.738100 4.045577 -5.117577 9.162424 3.766728 -0.235543 2.794540 -2.032883 8.242820 -6.168809 14.500053 7.195800 -8.123245 1.354595 2.378622 12.592481 -12.063349 -6.979546 --5.741753 -23.475127 38.973497 34.806397 -0.596807 17.033886 -0.781673 -22.415589 21.681085 15.875449 -6.305338 16.829361 -15.394491 4.070638 1.341252 17.139553 -23.196883 -19.095180 -5.998715 -15.368492 -11.977505 -15.230623 -3.075075 14.388314 10.299926 4.331987 -18.505179 4.404648 -22.933703 -30.667798 7.754936 -3.692978 16.798110 -5.092695 9.535986 -60.180492 29.236527 26.683351 -5.881896 -34.435695 3.195657 -10.432606 -5.166291 -0.724551 -13.031219 8.583921 1.748591 4.110675 7.241119 10.090531 5.346165 8.987277 10.913025 46.245486 -2.267018 25.647207 21.292873 -2.490251 -3.495301 4.350823 9.702885 4.787433 17.380019 12.949574 -4.113758 -17.752231 -1.912920 -2.801098 -24.400259 16.710444 4.300733 -18.718904 -12.535772 -12.871128 -17.183169 -7.157187 1.084992 18.442999 36.889322 -20.169378 25.559210 9.166745 13.272140 2.643717 20.367847 -3.821540 31.012264 12.325943 -12.387583 0.351924 -11.963300 -14.949082 7.525601 3.974075 -19.690170 -21.606799 13.448420 -26.377610 -30.096982 18.469457 8.115787 -5.564669 -27.298053 -13.455821 18.923754 11.221801 -10.958235 -23.326060 -14.606254 15.978921 -5.822542 -16.409097 -6.162347 -3.014969 -2.928722 0.467895 -29.477749 0.042266 16.536013 -11.146679 -9.743227 23.804816 -9.775807 5.457214 -8.161112 5.311550 -7.112037 18.738715 0.624353 15.393328 2.186748 -0.513865 -18.110654 6.828246 5.137520 2.627261 -6.873984 -5.128922 -1.257225 11.741002 -7.058353 17.182147 -10.561234 18.274034 23.887064 2.576214 -20.024472 -19.435362 -8.455785 -30.132931 5.318111 -19.719868 -13.798551 14.966542 22.749452 11.581647 10.548536 22.233943 -20.385897 16.779858 -3.924892 3.880334 13.161051 -5.231175 10.198817 -14.382294 -21.881392 17.056439 15.102721 8.148626 8.471264 -9.100441 1.501588 -13.118350 -18.835422 13.764076 9.582435 4.401496 22.088938 15.824519 48.881027 -20.869645 4.070276 4.771906 -7.740086 5.367967 -6.545810 -28.668188 3.214258 6.502948 8.164393 36.707406 -4.241962 -15.480130 5.411767 1.173350 5.348775 -16.157688 16.974632 -19.674964 1.334238 -11.088404 -4.979052 -13.867326 -7.098080 -18.183875 -9.226173 34.931098 -26.735819 -32.127219 29.794782 -12.571872 14.102021 -39.304831 22.769639 -14.742669 22.770745 -9.122856 -6.436442 -2.542194 -2.692500 -13.970174 11.150582 15.425057 -12.325999 6.431844 29.831522 5.395630 3.592293 1.646107 14.306206 -6.441120 9.414676 -16.632443 28.330466 -4.223134 -3.688773 -7.099633 -11.483696 7.626983 -8.173971 0.101180 5.710302 15.451734 2.432183 3.471623 19.117851 8.961109 -17.663476 19.738077 0.733549 10.765850 -13.408226 -3.725791 -1.243123 9.442955 -1.388533 12.086550 -31.052458 -22.144936 -34.486197 -27.323035 -7.585303 8.606777 9.056759 -2.022460 -4.393936 -24.694051 -21.025049 28.986301 -9.148184 25.012701 18.424626 17.448469 22.599859 23.505291 -5.341585 -4.115916 -7.975966 -5.454920 -9.291197 -8.557587 -13.792789 21.965482 -9.452949 14.696017 23.971958 -1.335655 13.790953 -2.335573 11.639324 -14.953652 32.678131 14.818095 -15.578798 9.045803 15.246490 26.633942 -12.318801 -19.784484 --5.795468 -9.437767 8.727964 7.963646 2.869969 6.428053 3.499788 -3.348090 5.598280 8.316897 -2.319392 5.440519 -5.837353 -2.197890 0.698770 2.333068 -2.178131 -6.660243 1.188434 -2.193199 -1.375765 -5.669958 -4.280894 6.118596 1.422283 -2.480931 -3.241243 0.160142 -10.971434 -9.935683 -0.491485 -1.012642 4.452678 -3.701448 2.198418 -14.411859 6.227522 9.594749 -0.887948 -10.822269 0.046752 -3.415652 -0.816693 2.596375 -1.476998 3.177042 3.491024 -0.228295 -0.358154 2.570646 3.028806 -0.478317 3.680556 12.426105 0.584207 9.224794 8.492397 -0.015486 0.889971 2.096188 2.601215 -1.682653 5.959551 4.266557 -3.172991 -1.394320 -0.049908 1.167019 -7.106229 2.172510 1.873935 -5.068712 -2.575878 -2.431818 -5.800614 -3.199391 0.709093 1.135671 11.666282 -4.019865 12.000681 5.567476 7.131776 0.853586 7.824144 -0.886854 8.359637 2.976939 -6.645144 0.862663 -6.263039 -3.222674 -0.119325 5.157298 -5.171131 -2.202133 3.868553 -5.968608 -9.876494 6.643287 -1.297351 -0.822175 -8.154917 -1.997408 5.394868 3.748739 -4.243991 -8.864518 -7.273032 5.166761 -4.756669 -5.038843 -0.210856 -1.728014 -0.484808 -0.047723 -6.510660 -1.670174 7.277869 -5.784266 -5.130701 7.949439 -3.170224 5.997009 -1.661813 0.564010 -0.484761 2.360941 3.011676 2.980503 1.213658 -4.161034 -12.117659 -0.612856 0.136561 1.103360 -2.154082 -0.809698 2.915268 3.730472 2.249536 7.109756 -2.527564 6.852275 5.836862 0.793304 -3.221805 -7.959910 -0.162872 -5.759714 2.604568 -4.461256 -3.135162 0.696930 6.676859 0.302032 0.752677 6.760881 -4.278433 5.996391 -1.252012 1.002102 1.128123 -3.399813 2.950697 -3.963710 -6.728539 4.107871 8.383195 2.616728 2.688448 -3.643991 0.040564 -2.360938 -6.507420 1.505756 0.688031 0.253389 8.135366 4.139557 16.279998 -7.808970 1.100493 -1.498130 -1.107990 2.410215 -2.941591 -8.862960 1.734815 2.129791 1.085040 10.332594 -0.774067 -5.408590 2.553932 0.055727 0.782060 -5.857706 7.229595 -6.687441 -0.554889 -2.140228 -1.754253 -5.110629 -3.867469 -5.835157 -0.455380 9.857306 -3.871677 -9.517276 4.630363 -1.408930 2.383862 -12.163490 8.008492 -4.149842 6.035968 -3.789804 -2.431111 -0.868016 4.636256 -0.233496 1.189460 4.668229 -6.406418 5.569645 6.993131 0.959578 2.448712 2.791469 2.990639 -1.197441 -2.549908 -5.646637 5.686470 -0.787139 -2.034703 -2.073713 -3.992472 6.826475 1.551818 -1.355546 -1.049721 6.465720 -4.146004 -0.860865 7.204004 -1.063663 -4.163440 3.444821 1.232549 6.463639 -3.884986 -0.256411 -4.876538 0.461114 1.318842 3.842392 -9.380790 -3.460253 -4.557243 -8.190039 -2.964719 5.020955 2.097984 2.920174 1.231315 -10.709374 -5.186621 7.700410 -2.832922 4.615169 4.881421 6.418307 7.373176 4.901934 1.402496 -3.167640 -2.608303 -2.008207 -5.841459 -3.442852 -0.432271 3.220784 -4.435072 7.562648 2.618527 0.889992 2.715740 0.005701 2.961974 -5.081248 10.266645 5.920164 -4.875085 1.432914 4.890440 10.726090 -8.841827 -5.384860 --1.640007 -3.552561 2.882472 2.820281 1.463059 1.863694 2.391292 -0.710652 2.908725 2.736941 -1.372134 2.279276 -2.601517 -0.347003 0.497183 1.228172 -0.890532 -2.887328 1.121771 0.135278 -0.034338 -3.102795 -0.428154 1.380008 0.852247 0.149853 -0.919363 -0.669106 -4.834568 -2.972273 1.391038 -0.776286 1.795126 -0.415617 0.150109 -6.630882 1.910657 2.916452 -0.268315 -5.159360 0.240763 -1.331501 -0.209950 0.403275 1.250894 1.682628 1.719276 1.789675 0.155624 1.376066 0.672631 -1.145236 0.660543 4.288069 -0.929454 3.638870 3.602183 0.104689 0.186984 0.497297 1.047476 -0.617795 2.349937 3.008845 -1.681279 -0.304490 -0.214531 -0.469964 -3.917986 1.106042 0.902547 -0.471469 -2.235775 -0.344010 -0.658369 -0.281175 -0.987297 0.910100 5.108737 -1.102664 5.723314 1.786674 3.395162 -0.877890 1.809173 -0.312957 1.927820 1.116331 -3.079028 -0.867363 -4.222802 -1.969585 -0.577996 1.449317 -0.985297 0.593774 1.017667 0.118069 -3.116235 1.414463 -0.718141 0.195225 -3.150852 1.002776 2.142267 2.104259 -0.951105 -3.652212 -3.353990 1.150857 -1.860060 -1.617880 -0.397397 -0.275261 -1.532824 -1.305417 -2.308571 -1.509849 2.755785 -2.833610 -1.949926 2.110610 -2.439281 2.261092 -0.519839 -0.159217 0.168037 1.215874 1.904487 0.798216 3.225721 -2.648542 -6.040888 0.800917 0.742758 3.666681 -1.037736 0.455777 0.908669 0.830595 0.492967 0.972157 -0.242570 1.804036 2.707462 -0.791763 -1.630992 -2.702345 1.254747 -1.859107 1.847887 -2.058242 1.200309 -0.141660 2.457362 0.040338 0.761452 4.049493 -3.710747 2.800155 -0.365027 0.833059 0.254999 1.267961 1.059362 -1.389117 -2.152138 1.356865 2.987835 -0.299589 0.906169 -1.351916 0.118826 -1.710994 -2.532680 1.169126 0.115358 -0.138883 2.483199 0.662506 6.130131 -3.681391 0.194399 0.154190 0.241303 0.386533 -0.260451 -3.560514 2.397139 -0.072547 1.300208 3.044450 -0.043764 -2.244465 0.913770 0.014863 -0.022477 -1.802825 2.601051 -2.508865 -1.084794 -1.035759 -0.035083 -1.136845 -1.870897 -1.252988 1.795696 3.501269 1.438388 -4.067684 0.885312 -1.997546 0.736884 -5.278102 3.969984 -1.806573 0.664987 -1.769277 -0.619818 -0.507820 1.536960 0.358369 -0.626670 1.660234 -1.924300 2.349451 3.283778 0.485384 0.119634 1.492868 0.923485 0.234943 -0.969928 -1.035550 1.339394 -0.194233 -0.197206 -0.235109 -1.428908 3.142065 0.393918 -1.358890 1.983988 3.263805 -1.256636 1.330432 2.338273 0.051605 -1.733070 1.169962 0.605059 3.180075 -0.968861 -0.175619 -1.735250 -0.176708 -0.102179 1.912780 -2.870154 -2.649511 0.770629 -4.669661 -1.294462 0.802244 1.337815 0.697717 0.940129 -5.011226 -1.281134 1.054494 -0.781818 2.754248 1.257591 1.681360 2.171628 1.505627 -0.759904 -1.442564 -0.531958 -0.124548 -2.397540 -1.220551 -0.101436 0.678896 -2.183914 2.209617 1.203604 -0.090193 0.022011 -1.415186 3.043026 -1.506802 4.542827 2.305542 -1.491504 0.943279 0.352854 4.837714 -2.358826 -1.885206 --9.082377 -19.186634 18.127371 16.739388 6.263259 12.346137 6.257822 -5.567874 9.775054 14.845258 -7.504460 11.516493 -11.386845 -4.885246 1.827472 4.971821 -5.347244 -14.665630 4.503137 -1.606641 -0.867111 -10.655153 -6.579910 12.680866 4.218395 -0.738080 -5.784498 0.062123 -22.727471 -18.973104 0.375876 -2.499127 9.302839 1.626983 4.606193 -20.466048 12.137942 17.951967 -0.993007 -21.675702 0.022125 -6.098827 -3.737202 2.629919 0.137738 8.501346 8.562986 0.882786 -1.264847 6.352523 3.884309 -4.224152 7.295625 16.881324 2.832371 17.500851 16.567923 -0.758204 4.990776 3.118564 5.740410 -3.913678 11.927438 10.313404 -6.997274 -2.638429 -1.255924 -0.002948 -13.257213 4.899354 3.884037 -7.445612 -6.234422 -3.675533 -7.680157 -3.482659 -1.204110 4.128977 22.596488 -7.148483 24.555449 11.538585 15.810531 -2.603593 13.643222 -1.736975 14.428834 7.078161 -13.116340 -1.422304 -15.867113 -9.285576 -1.248844 9.008837 -9.764632 5.020399 7.535958 -10.735510 -18.721143 11.476517 -2.726794 -1.908512 -13.402575 2.092558 10.283616 7.876391 -5.032565 -15.464834 -11.194181 8.654362 -10.886678 -9.903769 -4.105420 -0.273508 -3.405069 1.683060 -12.864343 -4.053756 13.463034 -12.416950 -7.315718 13.665537 -5.608777 11.179566 -4.275165 -0.613867 0.130627 4.782429 7.766421 5.073534 7.822175 -10.272710 -23.559059 4.397702 3.276617 2.981243 -6.735213 0.514363 6.968499 6.868191 4.537972 10.728173 -5.711174 13.778750 9.831777 -1.457145 -8.992704 -16.329788 -0.586236 -9.828008 5.231836 -10.260494 -3.534546 2.875085 13.340534 1.350624 2.153554 15.751329 -11.752278 12.951525 -1.770952 4.437390 0.696979 -3.380394 5.004790 -8.517383 -11.924064 9.556002 16.224071 1.930672 5.904223 -7.465217 1.143482 -6.767417 -14.582761 7.454892 0.001891 1.203766 15.921646 6.621483 25.384479 -13.902531 0.590692 -1.825532 -0.589709 2.106475 -3.194849 -17.980345 6.908361 1.389771 5.914552 19.305491 -0.555914 -10.346466 3.802682 0.541110 0.548168 -10.886045 15.041826 -13.047029 -0.992389 -3.236548 -2.600032 -8.346472 -9.213605 -9.101164 1.585350 19.735765 -3.890595 -18.802373 7.155439 -5.210797 4.188541 -23.704712 11.616873 -9.616499 10.018218 -4.823622 -5.485580 -3.085722 5.219430 0.119207 -0.925887 9.304729 -11.038377 11.540645 12.895834 2.021252 2.783084 7.039843 4.460226 -2.126356 -4.357436 -8.344904 8.525254 -0.523926 -2.973686 -4.481788 -7.755974 12.627037 2.458169 -5.892872 1.736741 13.197866 -6.440239 0.776764 10.621958 -0.881978 -9.729262 5.078868 2.630971 14.267582 -7.475948 -2.675654 -9.107220 -1.313497 2.003729 7.698824 -18.272229 -10.420589 -6.293782 -17.378430 -7.621440 4.896536 7.148905 5.345608 2.804691 -20.116468 -10.105725 10.394981 -4.426208 11.342634 9.168528 11.309019 13.832539 7.689481 1.407043 -7.291697 -5.297277 -0.927802 -11.576679 -5.667949 -2.030445 5.963241 -7.928685 13.944091 7.409837 1.035705 4.136686 -2.956428 7.954009 -9.861393 20.155995 12.003806 -12.071855 2.160441 5.619185 17.376896 -16.037750 -11.592789 --18.913923 -45.909132 41.312080 40.351082 12.161390 29.820555 18.566979 -13.999508 14.141166 35.629132 -18.361607 30.025180 -23.007531 -12.491419 -0.674414 8.628626 -8.878818 -28.194234 6.126150 -4.947209 1.479214 -20.794641 -22.346521 36.951639 10.454946 -4.679332 -11.977563 -1.688127 -54.301632 -46.374170 -3.641623 -1.309998 20.471631 -0.334840 10.888868 -47.209933 25.591315 49.514545 -1.655267 -45.700313 1.994313 -9.886681 -16.112759 13.188711 -5.537906 19.381299 15.513818 -0.400406 -7.619426 14.550866 14.813294 -6.047918 28.099476 41.017473 9.924922 45.256884 42.997482 -0.467234 18.182150 5.549375 11.980102 -7.108704 23.418833 20.913749 -7.921241 -6.447115 -6.312564 7.476179 -25.422410 6.555247 8.949820 -21.371449 -15.006966 -9.610404 -22.363585 -8.499413 -11.397606 3.010273 53.602499 -12.532500 60.977495 28.895805 34.390295 -9.169712 31.858174 -3.220839 29.808577 16.810126 -27.065415 6.417254 -31.802715 -17.927475 1.034087 28.747731 -32.067428 6.056304 19.998229 -28.285193 -44.696037 28.632663 -4.941872 -12.791637 -17.728370 3.062833 14.278577 11.120672 -12.997920 -34.995404 -27.332646 23.951994 -19.841899 -24.756187 -12.316608 3.269510 0.297352 8.582178 -27.114194 -1.954051 34.253803 -24.928397 -14.538807 29.931428 -6.213916 28.156903 -10.232944 -1.104632 -0.128626 5.145927 15.931146 13.028158 12.009896 -21.460755 -56.443601 6.737237 6.531100 0.788006 -18.638587 -4.181869 20.275023 18.681304 20.995492 37.267793 -6.451485 33.370374 19.938179 1.043229 -15.921168 -40.062580 -7.193699 -19.578009 12.162324 -17.851875 -15.433698 -0.609991 28.063288 -4.841553 1.902063 23.547212 -16.709315 27.378814 -0.077699 7.432884 -0.451159 -18.234512 9.021710 -17.317540 -29.716537 24.938478 36.671334 11.047009 13.606443 -9.703694 1.142190 -8.564241 -29.360054 15.331331 -2.603850 1.088832 41.845335 19.828997 70.607960 -18.879968 3.042944 -9.033151 -5.420754 7.052000 -8.772536 -39.746593 15.672048 5.217753 9.812971 50.129484 -1.286055 -14.876499 13.096655 -0.914167 0.429751 -28.404614 43.202171 -28.245674 -0.927514 -9.215983 -7.871265 -16.324707 -19.418725 -23.476755 3.246352 45.270110 -17.384499 -36.469981 12.809856 -8.094683 1.942742 -48.192215 37.728901 -18.808641 24.204702 -11.310193 -17.414595 -0.868393 13.404385 -2.822320 0.818052 20.348496 -31.570152 26.278067 25.186532 2.530001 3.585486 13.867452 8.979161 -9.339883 -9.380544 -25.636040 20.646924 3.090167 -8.666370 -13.501800 -15.933389 27.499001 4.034244 -11.070011 -2.352427 25.279051 -16.143173 -11.006044 25.762829 -3.957738 -19.900744 11.978139 5.939462 27.146212 -19.141103 -7.399489 -21.450937 -4.192243 9.814385 15.764120 -42.513461 -12.786450 -21.934005 -32.466462 -16.303729 12.490831 20.579395 16.243807 2.785395 -50.246751 -30.096557 31.270507 -11.704773 7.536341 25.909405 28.056281 31.332785 13.039066 14.999207 -8.906137 -18.637754 3.315963 -22.205011 -12.212875 -0.626399 12.930642 -18.007244 33.321902 13.740875 3.892979 16.574541 0.829602 19.539708 -24.236484 48.939304 24.512520 -29.885579 4.144172 17.779564 34.006776 -45.334858 -24.579119 --1.211615 -2.622691 2.284315 2.100836 0.555313 1.570583 1.068476 -0.696067 1.683901 1.467019 -1.116098 1.119985 -1.885193 -0.397702 0.060072 0.389115 -1.055400 -2.018506 0.543532 -0.297142 -0.313012 -1.839621 -0.846388 1.485209 0.410712 0.458117 -0.612331 0.065696 -3.083811 -1.631011 0.720296 -0.467481 1.144556 0.916337 0.617084 -3.483845 1.369090 2.107552 -0.223398 -2.879930 -0.111822 -1.274913 -0.210255 -0.050533 0.440494 1.052571 1.117830 0.960582 0.072698 0.422627 0.423983 -0.958227 0.378493 2.811632 -0.259023 2.333550 2.350343 -0.002809 0.533978 0.459599 0.677977 -0.527466 1.569343 1.808680 -1.321263 -0.288565 -0.041837 -0.533595 -1.883276 0.915368 0.745093 -0.415617 -1.231184 -0.636656 -1.128558 -0.657205 -1.436119 0.718314 3.483275 -1.201298 3.540936 1.606161 2.533752 -0.244038 1.974775 -0.140526 2.293177 0.756862 -2.152031 0.217589 -2.603338 -1.116306 -0.236330 1.035900 -1.034492 0.124836 0.791969 -1.469552 -2.522704 1.347952 -0.520544 0.043897 -1.484306 0.640219 1.365813 0.860713 -0.946456 -2.457248 -1.621589 0.899008 -1.475543 -1.031230 -0.160070 0.077946 -0.519664 -0.588508 -1.899985 -0.710093 1.631821 -1.828358 -0.828864 2.083514 -1.065388 1.498508 -0.322661 -0.257868 -0.032120 1.181519 1.075180 0.404705 1.002061 -1.453808 -3.702819 0.530574 0.497836 1.501603 -0.865478 -0.115538 1.017838 0.763522 0.284614 0.798414 -0.472220 1.650859 1.333626 -0.580876 -1.117056 -2.218538 0.047867 -1.621143 0.881694 -1.421551 -0.221634 -0.098068 1.864509 0.822604 0.474883 2.378274 -1.701601 1.811959 -0.453092 0.535800 0.221902 0.329735 0.912785 -1.135933 -1.551421 1.112028 1.802684 0.261948 0.910141 -1.256212 -0.002725 -1.213639 -1.748152 1.068674 0.203661 -0.004121 2.282230 0.988515 3.287980 -2.457583 0.563483 -0.040285 0.076860 0.308894 -0.138270 -2.373033 1.463661 0.255582 0.451606 2.030003 -0.103537 -1.262943 0.374317 -0.039386 0.281476 -1.652539 1.508098 -1.640731 -0.396842 -1.018955 0.583928 -1.210884 -1.398853 -0.917269 0.426366 2.638986 -0.437252 -2.253496 1.067697 -0.425986 0.973796 -3.021337 1.749918 -1.333280 1.574920 -1.090186 -0.756338 -0.257386 0.930499 0.228695 -0.017810 1.221689 -1.483401 1.402935 1.629263 0.466194 0.646712 1.176279 0.964457 -0.127452 -0.767662 -1.091787 1.048370 0.065590 -0.443506 -0.184035 -1.155989 1.867088 0.575372 -0.425781 1.096513 2.319204 -0.538899 0.543572 1.598096 -0.174412 -1.168069 0.259205 0.246231 1.981415 -1.104947 -0.291358 -1.326215 -0.095843 -0.003287 0.808125 -2.463017 -1.859544 -0.544161 -2.185619 -1.093945 0.562062 0.701946 1.035978 0.638434 -2.981357 -1.091781 1.181177 -0.862598 1.512774 0.884055 1.405222 1.871401 1.371257 -0.125614 -1.239274 -0.062916 0.171949 -1.646706 -0.304972 -0.809524 0.972668 -1.488754 1.915670 1.112703 -0.220114 0.347175 -0.165241 2.314123 -1.389626 3.023720 1.707338 -1.742651 0.559484 1.217667 2.900336 -1.173082 -1.470812 --10.441002 -21.620735 16.552844 16.119088 6.250390 15.398423 9.162253 -2.895582 6.218767 15.930767 -6.673425 14.071087 -9.199472 -7.456374 0.375270 1.544017 -1.334426 -12.442742 5.116780 -0.658296 1.689539 -10.549042 -12.154085 18.216182 2.451221 0.746897 -4.108375 -1.199119 -26.651908 -18.492418 -2.192689 -0.495793 8.480760 0.025753 5.885025 -17.817942 9.325143 21.651468 0.882356 -22.490284 -0.556812 -3.556089 -4.109216 8.990037 -0.559262 9.715766 7.645741 -0.714970 -4.104813 5.206559 4.961594 -3.355069 12.887891 15.527940 5.984081 19.273157 18.393496 0.144393 9.597048 1.464332 4.934351 -4.484737 9.355321 8.805428 -4.635468 -0.748094 -3.171751 4.510295 -11.184203 1.289542 5.491519 -8.743900 -6.581678 -2.722504 -9.106086 -4.460613 -5.630748 0.337962 22.320340 -3.538245 28.083885 12.766950 16.980103 -3.563224 15.521580 -1.212861 12.555531 6.663110 -12.966387 3.727221 -16.078783 -5.016077 -0.999240 11.537522 -14.078683 4.395422 7.100594 -10.794660 -19.243184 13.136065 -4.218842 -3.765143 -6.986904 2.099130 7.792129 5.752809 -6.334761 -16.105563 -12.543692 11.350310 -10.841340 -10.382180 -3.691341 0.434051 0.650341 2.864588 -8.803960 -1.420865 16.036067 -10.659994 -6.778462 13.721925 -1.343471 14.023270 -3.814855 -1.131065 0.539918 0.187135 10.408455 3.466602 3.791875 -13.063280 -24.248152 4.840404 -0.470032 -0.688341 -9.051693 -4.146906 9.495241 8.031357 12.658358 15.308176 -2.705410 12.347592 9.088428 0.446911 -4.405684 -18.383736 -1.940938 -6.953506 4.342192 -6.445761 -5.616296 -1.472857 11.292498 -2.711141 -0.070795 6.735346 -6.902287 11.676684 0.030544 3.916753 -1.566658 -3.518771 2.573447 -6.764660 -12.072048 8.683711 16.685999 5.209421 4.849160 -5.401963 -0.403040 -0.832018 -10.806237 6.703816 -0.984830 2.032689 19.316506 7.988020 30.686133 -8.252566 -1.901251 -5.967198 -2.902473 2.880056 -4.503911 -16.343863 6.810208 2.703185 3.381132 20.772706 -2.254292 -4.793327 7.107774 1.179618 0.823664 -12.753338 19.761635 -12.776584 -1.908930 -3.665107 -4.234299 -9.177393 -7.990661 -12.761038 1.109689 19.299422 -6.149988 -15.888128 2.713054 -4.363995 -0.036817 -19.465604 12.669401 -7.664180 7.539853 -4.419539 -6.852978 -1.686629 7.357199 1.073325 -1.276046 8.659710 -16.426683 12.815705 9.448066 0.822679 0.561125 7.206378 2.680762 -2.957702 -7.015816 -11.433657 7.970265 0.367937 -2.261898 -4.477788 -6.757758 13.956939 4.134903 -6.362554 -2.509486 11.227249 -8.379080 -6.722137 11.057049 -5.339678 -7.751919 2.841312 1.901767 12.709520 -7.894919 -2.599710 -12.452073 -2.251641 5.821280 5.233795 -18.832844 -3.575293 -5.339903 -14.474009 -7.356465 5.540515 7.508881 10.084438 2.587898 -23.816408 -13.062385 13.247145 -3.959744 3.455874 9.702509 10.797556 14.371767 4.818780 6.728278 -4.858351 -7.419875 -0.556676 -10.900272 -4.925774 0.732618 4.356734 -7.495274 15.642998 4.592415 1.852088 6.370804 -1.273994 6.700629 -10.768041 21.307072 11.805329 -13.182829 -0.342556 4.955323 17.191321 -20.728908 -10.585977 --11.861710 -20.839868 16.446027 15.532807 5.665940 14.249050 7.735284 -4.074443 4.401413 14.836534 -6.811776 13.866549 -9.323903 -7.540958 -1.861848 0.002262 -0.607100 -11.878002 3.489273 -1.683560 0.826894 -9.241148 -13.857020 18.915643 2.131309 -3.277571 -4.360612 -0.721558 -26.524109 -16.706426 -4.422190 0.360210 8.065133 -1.870749 5.992690 -17.590071 8.288302 22.095754 0.292427 -19.370770 -0.234621 -4.570344 -4.871939 7.843254 -3.704381 7.148691 7.403601 -3.780812 -5.040467 3.873911 6.803812 -2.766302 12.333164 17.249963 6.230546 19.573598 18.201050 -0.080720 9.189411 1.886775 4.525610 -4.959989 9.812086 6.763302 -4.637175 -0.519543 -2.251272 5.358532 -9.141957 0.532490 4.600401 -10.363881 -4.342888 -4.399311 -11.734908 -5.740359 -2.953712 -1.296694 20.786712 -4.383876 27.110717 13.464630 15.686868 -2.169614 16.128941 -0.909041 13.348792 6.111514 -11.979313 5.168333 -14.211249 -2.639241 -1.001137 13.404393 -15.177615 2.223540 8.883974 -14.852314 -19.503814 13.777198 -3.932633 -5.029318 -6.724593 1.030346 5.526382 4.555149 -7.315783 -16.066936 -12.924037 12.245752 -9.332735 -10.236614 -2.956003 0.087837 2.672538 2.214188 -9.146969 0.029491 16.699124 -10.165822 -7.147690 14.756106 -0.858201 14.020856 -3.554670 -0.549949 0.541521 1.038687 8.358362 2.717580 -0.819051 -11.460305 -24.368231 0.901172 -0.184774 -2.650709 -8.437258 -3.506076 10.591576 8.221694 12.568382 16.894248 -3.182382 13.739345 6.777838 1.369843 -4.225543 -18.625418 -3.872739 -7.444842 2.733108 -5.298542 -9.090216 -1.240371 11.038403 -1.511728 -1.355527 6.886137 -1.890757 10.722102 0.360980 1.350325 -1.676614 -9.501875 3.594036 -6.949083 -12.835603 9.507305 16.320098 7.106950 5.715982 -4.531433 -0.753756 -0.805847 -11.076725 4.647845 -0.220643 2.310347 19.647411 9.455176 30.604790 -8.704674 0.280094 -7.012754 -2.736880 3.597333 -5.620094 -15.698491 4.423522 3.714178 -0.006123 21.086041 -1.431157 -5.203548 6.891360 -0.182954 1.159611 -13.286673 18.948496 -11.833757 -0.457428 -3.692758 -4.382401 -9.092518 -7.546047 -13.001661 -2.165210 18.796814 -10.752099 -14.990308 3.179521 0.168023 0.777313 -18.903593 12.578959 -6.859700 12.303328 -4.350741 -7.257357 -1.005946 8.900699 0.942520 0.671814 8.347143 -16.371798 11.891432 8.697113 0.522087 2.839971 6.754411 3.408748 -3.992544 -6.731126 -12.241478 8.226557 1.432821 -4.224670 -4.151848 -6.814191 12.813279 4.860190 -4.127963 -3.888117 11.431647 -8.250981 -7.682080 12.495129 -5.149447 -6.820125 2.114813 2.223113 11.673310 -8.508860 -2.445846 -12.132161 -1.468299 6.159491 4.037772 -18.600583 -3.050322 -8.525834 -12.790222 -5.510616 5.892984 6.360994 10.099876 1.588102 -22.533704 -13.640821 16.015740 -5.236468 3.322086 10.264277 12.304287 14.719969 5.537813 7.797691 -4.113650 -6.226279 0.273368 -10.336986 -4.255742 -0.005013 4.318583 -7.868901 16.549576 3.945469 2.242034 7.936636 3.250928 5.035429 -11.255543 20.322768 11.167253 -14.322646 0.196184 7.690834 14.607003 -21.644682 -10.145318 --18.196997 -27.568641 24.407764 21.620536 8.139461 19.253559 8.209980 -7.845043 11.801382 22.676272 -8.435745 18.089649 -14.501245 -7.725854 0.619917 4.029879 -4.475067 -18.391522 3.250386 -5.285250 -2.943500 -14.272636 -15.103607 20.679565 3.903827 -7.438201 -9.602687 2.172796 -33.383134 -29.940206 -5.296407 -0.923935 12.113544 -14.331021 6.754460 -40.503709 16.655154 29.793772 -1.088705 -31.448346 0.784028 -8.820252 -5.113750 10.087588 -7.000423 9.365609 10.292373 -4.604254 -3.435447 6.585674 8.065634 -1.122372 10.777225 35.611975 5.306815 27.648119 27.154002 -0.392586 3.451833 5.608717 6.635480 -5.975137 15.361433 10.843705 -8.559255 -2.817195 0.863262 5.490023 -16.955562 4.594564 4.849838 -17.611179 -3.937353 -7.792620 -17.503146 -8.360650 10.575919 1.809018 31.163473 -9.888098 35.260122 14.269623 19.892365 1.680161 22.278963 -3.473506 22.847851 8.638117 -17.524665 1.455943 -15.516729 -7.625543 -0.830154 19.839910 -16.872351 0.476037 12.060203 -19.196414 -28.018078 18.446666 -4.422795 -4.780589 -21.727165 -4.411083 13.834709 9.455730 -9.661305 -23.402467 -21.317429 17.364454 -13.986595 -14.640541 -3.419008 -3.320023 -0.206253 3.034364 -17.219469 -2.378070 22.569507 -14.984856 -15.645490 21.750797 -8.343069 17.956101 -5.128412 2.361826 -0.515488 4.862970 9.112297 6.977940 1.524494 -12.427627 -35.064745 -1.679557 -1.236958 0.361680 -9.820183 -2.782160 10.857033 10.413790 9.452607 21.350127 -9.934943 21.143905 15.728090 3.158967 -9.034510 -23.828550 -2.898306 -15.562712 4.661010 -12.022973 -12.180290 3.355157 17.619916 0.239456 -0.459864 20.055493 -9.809764 17.302920 -0.957726 1.177699 1.316152 -14.274308 6.535346 -12.248467 -19.355082 12.584271 22.879837 7.972477 7.136476 -8.283143 -0.362478 -5.727931 -19.702855 7.689615 1.522008 3.938685 23.863736 12.633796 49.941452 -21.232735 1.984476 -6.819376 -5.302915 5.885079 -8.843726 -24.070237 2.597458 6.844855 4.775416 33.048316 -1.306816 -13.981479 6.708755 0.993873 2.204313 -17.241390 25.390504 -18.869790 1.020660 -3.759456 -9.828912 -13.482031 -9.606891 -18.245860 -3.214070 28.292042 -14.664767 -30.339017 11.767620 -1.973987 6.792421 -36.599137 21.382323 -11.500170 20.352564 -9.038673 -6.436508 -2.294512 11.431174 -0.220085 6.372944 12.368402 -20.077914 16.074993 18.553013 1.471201 6.906804 7.329033 6.867503 -4.563319 -7.583074 -16.220031 14.334187 -0.642729 -7.225156 -7.795772 -10.511212 17.862254 5.308503 -4.205062 -6.582076 17.557541 -12.628746 -5.944201 22.418648 -4.279787 -11.297945 9.162729 2.296389 18.335633 -11.143465 -3.439497 -14.111092 2.282137 7.121648 8.521284 -27.118598 -8.615938 -16.195315 -26.831890 -7.650743 12.461649 7.207707 9.171559 2.408563 -31.003327 -15.768149 24.046769 -6.771822 18.270277 14.109246 19.198060 20.650291 11.296482 6.288555 -7.561571 -9.277183 -4.132142 -16.726253 -9.320748 -0.590110 8.036656 -11.122738 21.644295 7.057117 3.899233 10.143135 3.166155 3.038420 -15.041726 27.907966 16.505378 -16.207454 2.338510 11.433140 25.521005 -28.221292 -15.748963 --8.117863 -12.596722 11.210324 9.810278 3.512547 8.227543 4.864105 -2.858406 5.847631 9.796295 -4.444994 7.706868 -6.925371 -2.935936 -0.123582 1.958790 -2.206450 -9.279965 2.331291 -1.596277 -1.325664 -6.724756 -5.798193 8.515436 1.898448 -2.768661 -4.424306 -0.702456 -15.767655 -11.821834 -0.961842 -1.513937 5.720546 -4.596123 2.840776 -17.269769 6.479389 12.302904 -0.526713 -13.999321 0.144057 -4.221440 -0.890662 3.128000 -1.475367 4.050058 5.618511 -0.314352 -0.913311 2.965306 3.057934 -1.506608 3.712834 14.360861 1.424983 11.589173 10.965112 0.084279 1.511689 2.149799 2.997739 -3.149620 7.216834 5.622378 -4.638914 -1.161127 -0.474183 1.365393 -8.405457 2.435451 2.397413 -5.189218 -2.797689 -2.560600 -6.516927 -3.544159 1.482765 1.456444 15.156419 -4.271826 15.827348 6.991774 10.044088 0.320054 9.407198 -0.810589 9.182041 3.888430 -8.451855 0.867168 -9.473026 -3.424554 -1.513635 7.506442 -6.506954 -0.065185 5.894058 -7.620835 -12.480208 8.207548 -2.225587 -0.921165 -9.130004 -0.820806 6.844236 5.227313 -5.186464 -10.797629 -9.757622 6.315816 -6.001024 -6.263873 -0.081085 -2.289487 -1.054051 -0.240331 -8.131338 -2.208058 8.829360 -7.763317 -6.776499 9.333505 -4.209507 8.090194 -1.946120 1.120588 -0.046412 3.499304 5.119993 2.532701 2.317981 -5.617190 -16.260410 -0.797554 -0.142780 2.273268 -4.300329 -1.282866 4.022919 4.368459 3.451681 7.459175 -3.778726 8.879105 7.848092 -0.319875 -4.487301 -10.405386 -0.094679 -6.756890 1.828425 -5.296524 -3.659598 0.491743 8.075918 0.488357 0.706471 10.905674 -5.630104 8.906583 -0.934070 1.161446 0.767812 -4.252519 3.641845 -4.965118 -8.509433 5.289224 10.754613 3.442220 3.648704 -4.654322 0.347898 -3.566651 -8.811899 3.307121 0.764402 1.059422 10.409159 4.905256 17.559983 -9.956166 0.801559 -2.352572 -1.464462 2.223435 -3.153636 -11.133317 2.135227 2.361117 1.394059 12.584879 -0.570289 -6.769113 3.695448 0.203118 1.215703 -7.359687 9.949164 -8.727478 -0.481262 -2.651891 -2.440646 -6.665052 -4.761128 -6.939872 -0.810031 12.400645 -3.848714 -13.008303 4.075454 -0.923633 2.874720 -15.818519 8.261098 -5.496102 8.351932 -4.276672 -2.588223 -1.853946 6.237702 0.514314 0.710614 5.795410 -8.931485 7.854455 8.390970 1.007446 2.823139 4.354458 3.655065 -1.205276 -3.518775 -6.066862 5.163041 -0.315395 -3.290558 -2.107017 -4.589480 8.098473 2.646167 -2.246442 -1.522513 8.422149 -5.260578 -0.739543 9.948586 -1.694916 -5.331930 2.683273 0.881713 9.883970 -5.059333 -0.833817 -6.887531 1.005474 2.021245 3.795359 -12.049000 -5.158873 -6.479246 -11.750965 -3.597012 5.090374 2.776816 4.425828 1.731352 -13.843975 -6.500037 7.109988 -3.121638 8.467590 6.034580 7.753416 9.709090 5.219183 0.761787 -4.806062 -2.324084 -1.677847 -7.613124 -3.878865 -1.192802 3.251373 -6.222770 9.613324 3.672128 1.317751 3.253568 1.533010 4.686604 -6.780057 14.039224 8.028353 -7.368111 1.526908 4.770563 12.658637 -11.106334 -7.043001 --4.641342 -9.048617 16.907285 13.910446 1.696909 6.850482 1.924055 -10.789560 12.280329 7.919200 -2.077865 4.931437 -8.029708 2.085106 0.025669 8.227981 -9.569637 -9.527682 -1.721884 -7.859083 -5.013967 -9.371886 1.131370 3.204121 4.077057 1.318409 -9.139272 1.446468 -10.306327 -16.986826 6.268578 -2.917569 7.101321 -2.703007 1.861011 -29.812789 14.178477 11.078507 -3.195600 -13.317598 1.562991 -5.634996 -0.789043 -0.655870 -2.436533 4.416201 1.065350 0.605531 5.306742 3.817792 5.826224 3.000600 2.547127 19.981766 -5.884994 10.251029 6.351741 -1.078632 -2.360249 3.294085 3.484600 2.233470 8.667731 8.798135 -3.913095 -7.007421 0.199826 -1.985238 -13.443372 8.842992 0.306232 -6.498712 -6.894915 -3.662620 -8.029253 -3.418467 -1.310649 7.090481 17.655294 -7.447269 12.285148 3.596842 7.639190 0.166905 8.325101 -1.710446 15.233342 4.253517 -7.971304 -1.378592 -6.229173 -5.884042 1.725230 5.223806 -5.434518 -5.766056 4.747840 -10.069908 -12.477770 6.395944 2.488256 -0.046165 -16.525924 -4.718717 9.277431 4.785127 -4.474718 -12.751487 -7.770679 5.543690 -3.677221 -5.956041 -1.374249 -4.395052 -3.247709 -1.584436 -12.565007 -2.928638 4.645396 -6.577082 -8.041473 10.372809 -6.293205 1.733666 -2.252958 3.070336 -3.390969 7.368132 -0.840532 7.530116 2.969946 -1.228135 -14.163636 -0.161117 2.839945 6.177506 -2.442458 -1.924737 -2.583476 3.499566 -6.134457 4.865194 -4.395290 7.419594 14.560139 -0.836541 -8.099847 -6.031334 0.325066 -15.218155 4.011002 -8.995191 -3.156787 3.586843 10.091865 4.798307 6.370037 12.777874 -11.307044 9.071091 -2.616066 1.070421 7.101748 -1.701481 5.412491 -5.999229 -10.334470 6.109384 6.902831 2.274478 3.657925 -5.030588 -0.099704 -7.196608 -8.828094 6.116606 3.366904 1.489963 8.193959 5.495659 23.168403 -14.359012 3.631856 4.228696 -1.420544 2.605999 -2.211344 -12.449853 4.284521 2.755934 2.943096 14.483677 -1.515564 -8.397960 1.266377 0.286679 3.422988 -7.718594 5.623963 -8.780436 -0.057145 -5.602589 -3.448818 -5.844655 -4.523424 -5.289710 -1.777910 13.727178 -7.202263 -15.580350 14.812304 -6.859358 6.161745 -19.423715 10.283937 -7.028996 8.171747 -7.095867 -1.044109 -2.299613 2.630596 -4.580944 4.659984 6.227513 -5.601612 5.472632 16.012489 3.132989 3.203018 0.843145 7.114641 -0.698362 2.798328 -5.744994 13.059516 -1.588794 -1.858964 -1.803316 -5.479309 5.155421 -2.677148 -0.040201 4.472443 10.187587 -0.679500 3.682946 9.989116 5.006195 -7.088748 9.136183 0.621803 5.826930 -4.611841 -1.370896 -0.298074 3.007380 -2.566669 5.700129 -12.691171 -11.235830 -10.674589 -14.803482 -2.947726 4.154596 3.162879 0.008790 0.239737 -12.395890 -6.529991 11.668721 -3.964317 11.980170 5.747694 6.800426 8.577100 11.209109 -4.446326 -3.358701 -3.487579 -2.635868 -5.195608 -4.434027 -6.102252 9.405664 -6.133585 6.741649 8.524163 -1.814845 3.294582 0.212283 6.940870 -6.291006 15.609845 6.854694 -3.862052 6.550047 4.735596 15.570848 -3.132605 -7.639858 --4.262639 -6.905852 4.631941 4.321941 2.106436 4.392461 2.636629 -0.047632 3.803946 3.747840 -2.407323 3.635257 -3.112009 -2.174127 1.104142 0.063386 -0.849581 -4.992044 2.202394 0.369660 0.070654 -4.119917 -3.691084 4.530536 0.103709 0.271542 -1.235558 0.411242 -8.453347 -4.313297 0.787412 -0.843819 2.625230 -0.011645 2.064545 -9.051603 2.724850 5.551178 0.374888 -8.769721 -0.777400 -2.294895 0.162971 1.565467 0.775012 2.643879 3.714459 0.536309 -1.234146 0.966115 -0.249665 -2.325827 0.238733 6.617970 0.936721 5.569906 6.548273 -0.361778 1.355260 0.564869 1.791116 -2.345665 3.777940 3.805870 -3.282969 0.634048 -0.053294 -0.333334 -5.002301 0.822759 1.200170 -2.113555 -1.708721 -1.395651 -3.479232 -1.380910 0.243956 1.146809 7.617044 -2.099177 9.289267 3.656011 6.772766 0.145622 4.838693 -0.504010 4.338728 1.936113 -5.227214 0.003085 -6.239262 -2.654627 -1.420637 2.643409 -2.591765 2.867238 1.836460 -2.936955 -5.369140 3.823937 -2.323757 0.516026 -5.236486 0.950113 3.974596 3.538683 -1.887752 -5.353100 -5.265353 2.761761 -3.739219 -2.758071 -0.165498 0.273181 -1.766380 -1.453159 -3.477882 -1.774666 5.144853 -4.091101 -2.760186 4.658395 -4.088742 4.608803 -1.106280 -0.764054 0.319184 2.357759 3.963673 -0.259343 2.465109 -5.650156 -9.476824 0.561274 -0.865644 4.029619 -2.314059 -0.543010 3.254220 1.789587 2.418223 1.781624 -1.689892 3.902310 3.500176 -0.127436 -2.184815 -5.979196 0.664299 -3.090812 1.528142 -3.107616 0.327973 1.863991 3.907611 1.402181 -0.046640 5.997863 -4.161302 4.276871 -0.845417 1.030705 -0.685703 0.188157 1.493449 -2.352903 -3.113785 2.407197 5.038544 0.786060 2.050887 -3.286465 -0.113545 -1.798266 -4.997538 2.896449 0.692873 1.766363 4.841810 1.553604 7.326239 -6.273923 -0.732220 -1.655306 -0.635767 0.604507 -1.157549 -5.132378 2.587821 0.391381 1.188513 4.881765 -0.551903 -2.929285 1.101606 0.417191 0.212108 -3.232908 4.828017 -4.108382 -1.054760 -0.904973 -1.187403 -3.286637 -2.687902 -3.512881 0.494666 6.071418 0.300955 -7.257409 1.238352 -2.265444 2.548857 -7.760724 2.702510 -2.841188 4.050118 -2.055498 -0.967641 -1.122558 2.092229 1.857687 -0.368964 2.921848 -4.320661 3.486858 3.607003 0.499309 0.910774 3.002188 1.052454 -0.239960 -2.847023 -2.554064 1.618894 -0.618570 -0.787686 -0.560935 -2.355540 5.558261 2.205438 -1.690982 0.357698 4.894096 -2.312111 0.382765 4.773816 -2.261615 -2.672091 0.131028 0.115984 5.847281 -1.679508 -0.478350 -4.496033 0.581019 1.575212 1.260799 -5.303336 -3.575038 -1.486443 -7.274887 -2.735276 1.484067 0.962161 2.686619 1.634027 -7.555200 -2.448295 2.264675 -1.119108 4.918358 1.872178 3.191146 4.965361 2.051999 -0.020554 -3.309299 -0.268948 -0.805958 -4.573910 -1.131502 -0.921914 0.953721 -3.610846 4.737635 1.852655 0.421289 0.624385 0.147868 3.053317 -2.978028 6.856045 4.172971 -4.300973 -0.053069 1.229587 6.919135 -4.992102 -3.617853 --14.255055 -22.925905 20.314218 17.738109 5.961936 16.402103 9.027249 -9.383103 11.355852 18.473506 -7.451732 14.159434 -11.537081 -7.447408 -0.966966 1.944181 -3.584452 -13.842066 1.331760 -5.282438 -2.404758 -13.503050 -13.276275 17.580607 2.544926 -3.534906 -6.643782 4.244218 -27.711954 -27.543984 -1.399382 0.083687 8.776626 -8.583564 6.851131 -32.333904 14.895665 26.577635 -1.046812 -24.837683 -0.392682 -5.453420 -7.744894 9.815297 -2.817490 8.197044 6.259905 -1.037383 -4.283263 4.918156 9.176232 -1.937511 10.183872 28.169239 3.336277 23.932458 23.768017 0.014286 6.015724 5.493740 5.302975 -3.278594 11.868802 12.062158 -6.192581 -1.128529 1.915100 5.248323 -15.461126 4.084395 4.268846 -17.687313 -4.862380 -8.499807 -14.740385 -5.453860 0.084386 -1.022107 28.791926 -5.914874 31.986490 13.103388 18.333953 -0.805458 19.402353 -3.366875 21.176638 7.734574 -16.662850 3.232351 -14.351620 -6.922562 0.359123 18.714427 -16.172423 4.397116 10.847169 -16.113971 -22.862334 15.313319 -3.174026 -5.529251 -15.722967 -1.633516 9.696111 4.385116 -7.558156 -20.710500 -18.796611 15.013383 -12.518356 -11.575132 -3.887823 0.041102 0.016403 3.776251 -13.431342 -1.382098 19.230654 -11.709860 -12.539716 17.573963 -7.217907 14.076696 -4.961759 0.566974 -0.110390 1.530833 6.267641 6.036614 2.614052 -10.649333 -31.972475 -0.986885 -0.717338 1.312851 -7.802045 -3.016554 11.273608 9.272834 9.244577 19.943679 -8.279717 16.975093 11.202646 2.937080 -6.879963 -19.660420 -3.554726 -13.353374 6.159720 -9.195691 -10.347943 -0.334242 14.820817 -0.384688 -1.333224 13.275241 -9.701322 15.393479 -0.386986 1.927996 -0.295742 -12.159535 4.894525 -9.657275 -16.556636 11.216768 18.148307 6.434776 7.052039 -6.845536 -1.609740 -4.157736 -16.669736 7.295664 -0.690210 2.769643 19.938735 11.215703 45.881110 -16.476145 2.669883 -5.721246 -3.523972 4.800306 -7.090652 -18.926706 4.796128 5.323704 6.092331 28.319998 -0.665169 -8.508978 4.151065 0.708699 1.751199 -15.394421 22.837857 -14.478979 -0.570922 -3.020749 -6.715668 -9.939611 -8.249420 -14.218789 -0.797043 23.240096 -12.053952 -24.406349 11.305131 -3.171309 5.403971 -27.188465 20.110539 -9.006067 15.850169 -8.052232 -5.487305 -1.136007 9.289997 -0.482895 5.631847 9.481209 -17.173565 13.559855 15.898766 0.712652 5.820271 5.391891 4.512891 -6.272318 -6.883263 -15.115536 13.094623 1.413321 -6.764782 -7.002102 -9.172951 16.148123 2.761898 -4.009420 -4.884371 16.019376 -10.820129 -7.058892 16.349849 -4.202336 -9.226665 7.999310 4.423403 11.921619 -9.179634 -3.265526 -10.096850 0.365125 6.064734 6.730626 -21.346614 -4.858802 -11.326499 -20.607619 -7.809074 9.062516 8.584877 8.790706 1.942766 -25.950260 -14.339840 22.477368 -5.583108 9.653745 12.058379 16.879978 15.937359 8.753331 7.312617 -4.236562 -9.429300 -1.761141 -13.972932 -7.552993 0.178171 6.690730 -10.280352 18.117467 4.553842 3.579833 9.502185 2.136188 6.171534 -12.686086 24.118088 13.093203 -12.931628 1.462081 9.711579 22.833933 -23.619662 -12.577431 --5.679968 -10.578072 10.189925 9.344337 3.856740 6.756509 4.363042 -3.638312 6.667379 9.070840 -3.207946 6.217201 -7.068873 -1.886014 0.599434 3.310590 -2.576809 -8.246080 1.662388 -1.840813 -0.946642 -6.569058 -2.923161 6.064812 2.493322 -2.570768 -3.842102 -0.816760 -13.083617 -10.525895 0.345628 -1.470370 5.369063 -3.336467 1.607800 -14.964454 7.068393 10.512892 -1.021808 -12.778920 0.827588 -3.953303 -1.128342 2.482858 -0.549544 3.843606 4.186250 0.592758 0.069903 3.713194 3.272840 -0.818887 3.543317 12.788031 0.066288 10.059640 9.227241 0.110955 0.628771 2.137226 3.065533 -1.677201 6.866915 5.461017 -3.779391 -1.916320 -0.454691 0.634504 -8.790004 2.744478 1.753432 -4.604631 -3.399393 -2.123171 -5.154532 -2.572837 1.794736 1.965296 13.311610 -4.366284 13.414389 5.641314 7.863312 -0.347558 7.458606 -0.988462 7.840470 3.538034 -7.114155 -0.861656 -8.387364 -3.940919 -0.581871 5.213596 -5.340566 -1.113210 4.518011 -5.255945 -10.793222 6.396144 -1.254849 -1.002403 -8.844098 -0.542213 5.973732 5.228849 -4.094527 -9.665390 -7.567778 5.095414 -4.849648 -5.745774 -0.934469 -1.981461 -1.893588 -0.759969 -7.573221 -2.393697 7.440033 -7.121998 -5.447425 8.133194 -4.653556 6.491684 -1.929241 0.727946 -0.367086 3.013935 3.797533 3.394245 3.680966 -5.143676 -13.197205 0.340775 0.886858 3.108205 -3.054215 0.339273 2.618566 3.675715 1.995399 6.563067 -2.773108 7.114152 6.992079 -0.322049 -4.407396 -8.394229 0.586303 -6.463683 3.140646 -5.604259 -1.997129 0.876037 7.610394 0.408199 1.452819 10.036598 -6.142013 6.853941 -0.816272 1.147489 1.448078 -2.631563 3.347208 -4.634998 -7.631052 4.756244 9.336334 1.616743 2.840825 -3.436018 0.226922 -3.972038 -7.379960 2.276406 0.730741 0.200871 8.676430 3.999634 16.140787 -8.482822 0.874532 -0.813029 -0.989451 2.227784 -2.742513 -10.647056 2.736084 1.643086 2.319034 11.303843 -0.475344 -6.589534 3.088690 -0.098026 0.693834 -6.327617 8.173940 -7.747206 -0.751573 -2.555095 -1.965203 -4.748083 -4.667791 -5.616873 0.517796 11.128599 -1.991602 -11.191465 4.537992 -2.336333 2.420666 -14.448285 8.865803 -5.160711 6.147764 -3.619376 -2.223469 -1.151085 4.447249 -0.491981 0.414340 5.277243 -6.075580 6.810143 8.469077 1.229923 1.759400 3.255650 3.313850 -1.035577 -2.110722 -5.421999 6.038984 -0.835589 -2.343448 -1.882670 -4.397149 7.337652 1.042709 -2.394215 0.582416 7.483556 -4.188337 0.676152 7.248627 0.109855 -5.123407 4.471898 1.374375 8.098722 -3.866772 -0.583823 -4.918387 0.434322 0.984200 5.028297 -10.356163 -5.734538 -3.687035 -11.038022 -2.808194 3.950509 3.007460 2.345138 1.469847 -12.058881 -5.793357 6.371042 -2.907854 7.422822 5.480200 6.765558 7.839401 5.272775 0.054826 -3.272151 -2.752091 -1.424330 -6.510605 -4.282431 -0.417937 3.289911 -4.854760 7.656375 3.723379 0.770334 2.516449 -1.311642 3.641220 -5.519959 11.867688 6.694853 -5.291901 2.459477 3.816623 12.172835 -8.982928 -6.208056 --3.900009 -6.776457 5.621468 5.259385 1.387112 4.083821 3.271346 -1.380087 2.565150 4.158588 -1.140518 4.167748 -3.947325 -2.371092 -0.065749 0.576938 -1.334499 -4.131558 0.876618 -0.703616 -0.281888 -3.349063 -4.347488 5.713002 0.779141 -1.031477 -1.484729 -0.288436 -8.622689 -4.523900 -0.557875 -0.224078 2.760052 -1.249305 2.051857 -8.263409 3.079947 6.849545 -0.240532 -6.767309 -0.265418 -1.919203 -0.439416 0.376169 -1.375480 1.826344 2.460160 -0.628974 -1.124607 0.743042 0.895864 -0.829886 3.404194 7.319385 0.878750 6.343725 6.591146 0.303996 2.511275 0.454844 1.641068 -1.604831 3.152520 2.129429 -2.056004 -0.269623 -0.773749 0.317974 -3.442170 0.538462 2.199962 -2.558871 -2.765606 -1.368278 -5.007115 -2.203507 -2.665135 0.612792 6.936951 -3.389968 8.820712 4.418480 5.303618 0.573374 5.186432 0.115659 4.858996 1.839179 -4.238831 1.843653 -5.824636 -1.542842 -0.437734 3.167394 -4.286688 -1.656913 2.815308 -4.155930 -6.620323 4.495212 -1.210719 -0.919084 -3.281176 -0.557228 1.981613 1.974539 -2.966447 -5.564809 -4.963819 3.933641 -2.762154 -2.876134 0.404107 0.390387 0.701288 -1.083344 -4.088063 -0.257419 5.587532 -3.514176 -2.523485 5.055123 -1.380423 4.718452 -0.962337 -0.515223 -0.280154 1.441437 3.128786 0.900266 -0.134546 -4.071840 -8.482516 -0.708769 0.316419 1.768484 -1.683636 -0.583272 2.889615 2.704213 3.587213 4.591428 -0.422908 4.092191 0.530860 -0.076201 -1.393805 -6.156427 -1.107938 -2.414140 1.634162 -1.993568 -2.272594 0.927942 3.710900 0.037340 -0.301857 2.904826 -1.659337 3.844329 -0.511125 0.535862 -0.320558 -1.922741 1.495513 -2.048132 -4.092356 2.699385 4.727704 2.709217 1.664545 -2.118694 0.173860 -0.603796 -3.751083 -0.214735 -0.200353 -0.641451 6.113215 2.938820 9.955007 -4.657509 0.347688 -1.797649 -0.555689 1.372088 -1.625143 -5.059644 1.751622 1.035042 -0.902121 6.166278 -0.673274 -2.658472 2.487948 -0.365833 0.372134 -3.863319 5.203391 -3.720707 -1.326427 -1.907543 -0.411652 -3.297034 -2.716563 -4.737377 -0.750222 6.374702 -3.932272 -4.800655 1.241013 0.997469 1.131052 -6.408540 5.797065 -1.957454 4.217604 -1.614919 -2.302943 -0.015759 3.459751 0.327218 -0.783942 2.840787 -5.580278 2.928043 3.244000 0.448584 1.172317 2.424561 1.549297 -0.838540 -1.963446 -3.941923 2.996815 -0.284616 -2.055358 -0.819118 -2.316964 4.916390 1.643119 -0.833054 -0.156784 4.188235 -1.667747 -1.178311 4.213780 -1.542912 -2.250305 -0.037425 1.063198 4.098293 -2.826002 0.159195 -4.057517 -0.134806 1.453953 2.072555 -5.773242 -1.806364 -1.869385 -3.970209 -2.069084 2.426434 1.572656 2.721476 0.544992 -7.717116 -4.261815 5.295340 -2.006641 0.148995 3.197830 3.701698 5.084352 2.704165 1.541340 -2.146638 -0.220949 -0.003933 -2.988913 -1.167150 -0.565019 2.043185 -3.584687 4.821709 1.795354 0.429409 2.186839 -0.181316 2.488049 -3.512049 7.164912 3.569502 -4.713303 0.152851 4.605782 5.920991 -6.169805 -3.245570 --16.696094 -24.793460 21.731908 19.146092 6.606625 16.492989 9.612113 -7.064756 11.803691 18.868214 -4.371477 14.654129 -15.345660 -6.580255 -1.048517 3.107084 -4.153669 -16.959751 1.718972 -5.891380 -3.338510 -13.011702 -12.806121 18.825714 3.648854 -8.839529 -8.528833 -0.468350 -31.139996 -21.779491 -3.443195 -1.253206 11.269307 -14.230422 6.031150 -36.419173 13.866249 26.770152 -1.558925 -27.337445 0.991047 -9.384720 -0.887709 6.541661 -7.811005 5.657474 8.707839 -3.771079 -1.724068 4.595819 6.585411 0.640247 8.729247 34.090167 2.957582 23.763318 22.231161 0.678493 2.255864 4.192559 6.026117 -5.301180 14.182814 7.035273 -7.963980 -2.913934 -0.625149 3.655023 -16.234275 3.815218 4.190585 -13.649840 -4.916565 -6.335144 -19.438525 -9.558172 8.287814 2.144475 27.796693 -11.644659 29.903123 13.334227 16.140461 4.146006 20.458683 -1.672473 19.364036 6.851014 -14.528239 3.310850 -15.635358 -3.758329 -1.335905 13.555866 -14.506706 -9.227642 11.601799 -18.251012 -26.302597 17.278465 -4.004637 -3.786866 -19.408726 -6.477755 11.497812 10.015022 -12.630696 -22.093413 -18.922719 15.128032 -9.392492 -12.722711 1.703281 -4.027840 0.834043 -2.449562 -16.010230 -2.190183 19.412633 -13.966585 -13.323236 21.342832 -8.376577 17.288795 -3.449896 2.175156 -1.511939 6.284529 8.139686 5.558175 -1.619620 -10.691044 -28.362198 -5.957599 -1.844181 3.276440 -6.603095 -2.100777 7.915346 9.756101 8.353958 18.309078 -6.131950 17.072970 11.247221 2.197101 -6.642096 -20.599777 -2.547361 -14.481425 3.839794 -9.771957 -10.636071 3.974652 15.941332 1.204018 -0.168862 17.686007 -6.262851 13.395236 -1.285839 -0.962226 2.346093 -12.288548 7.398063 -9.871169 -18.169997 10.298059 19.858613 10.001625 5.582574 -6.961759 -0.616233 -4.689784 -15.683588 0.576686 2.646396 1.129974 21.901786 11.854730 37.284885 -19.944864 2.269218 -5.861578 -4.766112 7.061809 -8.884051 -22.028624 1.940906 6.378895 -1.286778 26.911328 -2.449312 -13.168665 9.162572 -0.770223 2.833046 -16.064373 18.719204 -17.143196 -1.586443 -6.554028 -6.571151 -12.902577 -8.859367 -17.899871 -5.578097 25.176188 -14.032250 -23.857802 10.173032 2.146279 6.919231 -30.837428 19.094173 -9.267717 19.421210 -7.301839 -5.624304 -0.663387 12.697727 -0.275616 3.010280 11.566303 -18.187010 13.690976 16.632389 1.808592 6.296218 6.700853 8.027131 -3.519507 -5.958991 -15.936565 14.109410 -2.174254 -8.507633 -4.176521 -9.700014 16.378402 5.028096 -1.639522 -4.364777 15.238537 -9.467353 -3.486417 20.312999 -3.222870 -9.332099 6.921771 2.044288 16.544372 -9.935695 -0.217888 -13.288597 3.625533 5.329532 8.807002 -24.284302 -9.334879 -14.380710 -21.564525 -4.815153 11.192587 3.167641 7.671857 1.861055 -27.771831 -14.556381 19.718383 -7.574720 13.333145 13.244978 16.573227 19.955754 12.052653 3.791800 -6.378080 -3.433777 -3.826819 -13.512382 -8.483464 -1.253828 6.870589 -11.954896 19.468238 7.074671 2.762780 9.131504 2.252887 3.577174 -14.035331 26.282845 14.213702 -14.426651 3.725184 14.189284 25.521992 -23.221502 -13.495179 --7.935999 -41.847968 67.533596 59.116953 -1.047866 27.743621 11.395205 -40.631215 46.892226 25.868971 -11.586093 17.933632 -40.797125 11.631029 -10.780626 31.324271 -43.175717 -38.772213 -9.929894 -28.274724 -21.387687 -36.615635 8.445110 16.928393 22.146914 15.731068 -28.022810 -1.459587 -47.212985 -46.220309 27.823779 -11.405774 28.266633 10.992164 9.726154 -93.639262 47.746587 43.205224 -14.007061 -54.919618 8.634605 -24.164766 -5.118875 -7.538018 -6.072674 15.334346 2.475733 19.767290 22.650913 15.337526 17.492977 6.071518 14.089625 77.361260 -21.379446 43.952492 29.238711 0.705620 -2.953980 12.008360 15.022091 10.541633 30.067514 32.541117 -11.477935 -29.370514 -6.055971 -15.380990 -47.375085 37.852885 1.490888 -17.433131 -34.287186 -18.234736 -29.087711 -11.992462 -40.074481 34.910505 73.896738 -37.841001 48.773408 18.358497 26.773577 -5.407366 31.472525 -5.271756 52.340081 18.330502 -26.498351 -0.467531 -29.712418 -18.765637 6.791676 5.719433 -28.346326 -40.011691 26.205195 -44.442105 -55.880523 25.702358 12.216894 -5.268203 -38.897825 -5.981277 27.902569 17.029348 -25.462286 -50.802247 -23.418819 20.656454 -5.346762 -22.632451 -3.159999 -7.119631 -10.450129 -9.373977 -52.596665 -9.154955 16.603053 -30.729049 -17.424909 43.396742 -15.220186 10.927219 -6.800893 9.244826 -11.548231 38.750474 2.018860 29.595617 11.066370 3.382687 -45.714233 12.437574 18.162035 23.458013 -12.130450 -1.310817 -6.280873 16.073949 -20.546729 16.551876 -15.433885 26.090671 41.946699 -11.700912 -35.219245 -25.424523 -5.275981 -57.323760 14.050449 -38.080240 -14.959162 10.372711 41.499025 27.837356 24.997114 51.439457 -42.352174 28.348584 -7.166726 5.001092 26.034931 4.370685 23.251494 -24.941812 -41.016234 25.079495 24.110427 9.633239 14.078767 -17.027736 -1.815348 -32.943638 -26.814798 23.405936 15.639281 -4.945159 41.070106 26.777522 63.959113 -46.975957 15.920429 18.482522 -8.542538 10.134582 -5.184637 -57.245040 23.074439 8.324880 11.154744 47.804486 -6.789277 -23.436592 14.070378 -6.932029 14.034673 -34.953374 19.551084 -36.857742 -7.262690 -32.897679 8.122784 -19.116763 -19.956016 -18.302586 -6.582186 58.503378 -35.464321 -42.319044 53.307433 -14.787519 22.298364 -62.507945 43.824192 -27.867984 32.676951 -19.297052 -8.703477 -4.586376 8.155477 -17.988729 7.176067 25.908551 -21.176016 19.882910 55.965134 12.248810 8.008352 9.218053 34.999411 -8.367445 14.556130 -26.180102 48.853308 -2.533828 -13.420682 -2.876056 -23.374352 13.797007 -14.994255 2.239103 34.953561 38.422846 5.865389 18.942268 28.577956 24.053350 -28.710209 31.049920 1.366722 23.841344 -24.570956 -4.663515 -0.365959 10.680979 -13.802562 24.785538 -55.370050 -54.712827 -43.384294 -45.635042 -12.758470 1.633522 17.403567 -1.690962 -1.746845 -47.850099 -35.608139 37.223501 -21.064343 33.052311 26.616562 27.842320 38.262026 48.327753 -17.150500 -7.252079 -6.587656 1.291416 -15.722181 -13.630338 -26.690423 36.334513 -26.077286 24.658626 42.924415 -8.680442 17.400059 -5.100601 41.826319 -30.520413 64.144297 28.258610 -22.613108 31.198755 31.587273 59.352583 -1.899331 -32.283013 --7.725758 -13.490527 11.854939 10.557264 3.638995 9.760608 2.958403 -2.909671 5.310471 10.164555 -3.602033 9.219144 -7.104671 -4.532964 0.230107 1.003667 -1.761567 -8.455182 2.044289 -1.722808 -0.622644 -6.143440 -7.414133 11.821331 1.790092 -1.839836 -3.951859 0.185215 -16.984048 -10.488103 -2.927858 -0.314800 5.909329 -4.561084 4.150824 -12.529147 6.722780 13.932081 0.001440 -15.246454 0.279860 -3.958054 -1.157920 4.469323 -3.073079 3.646410 4.687629 -2.376786 -2.100853 2.662447 2.051767 -0.406924 6.845697 14.161333 4.081519 12.347506 11.960181 -0.022081 3.226715 1.533785 3.446691 -2.921016 7.038470 3.644053 -4.070924 -1.514834 -0.799409 2.684206 -7.244002 1.408935 1.956123 -7.435606 -1.748734 -3.417391 -7.596945 -3.553891 4.389348 2.093171 13.205426 -5.100169 15.468759 7.214105 8.936407 0.803656 10.735716 -0.941121 9.328811 4.265292 -7.255384 0.281268 -9.094983 -1.814823 -0.361013 5.312342 -8.581159 0.129662 6.060511 -9.683704 -13.779737 9.148142 -1.876199 -2.434598 -7.291475 -1.541519 5.896010 5.322893 -4.636885 -9.965701 -7.642663 8.949006 -6.087289 -7.221154 -1.966132 -1.189331 0.568878 1.185463 -6.954532 -0.378335 10.466643 -6.856634 -5.538219 10.672336 -2.707255 8.945145 -2.565821 0.744247 0.396269 1.749277 5.618098 2.464778 0.484255 -6.764151 -11.198095 1.843750 -1.063888 -1.933831 -5.399177 0.091776 5.498769 4.993641 6.376975 9.622287 -4.575418 8.546340 3.615165 0.641334 -3.550102 -11.532394 -2.679901 -6.704521 0.888936 -4.919194 -6.105403 2.776547 8.034615 1.067246 -0.717295 7.419749 -4.147889 6.510773 0.698787 1.154250 -0.051379 -4.584410 2.557701 -5.834072 -9.207718 5.300104 10.793265 3.025407 2.711337 -3.340172 -0.421967 -1.780866 -6.965612 2.806711 1.045840 2.078271 12.555614 6.153564 18.450840 -8.200697 -0.767195 -3.920499 -2.700339 2.337080 -5.165995 -11.669419 1.052243 2.881314 2.386710 15.002992 -1.365920 -5.408863 4.142689 0.506925 1.156440 -7.818911 11.760073 -9.097468 -1.268641 -1.649281 -4.070504 -6.566203 -4.790747 -9.963646 -2.433948 13.486825 -7.732466 -11.693104 4.302519 -0.033345 2.134323 -14.455419 7.348799 -5.356620 9.359383 -1.346107 -3.732393 -1.849358 3.633546 -0.323262 0.612898 6.165905 -9.416109 7.635455 7.232794 0.715676 2.277884 4.190287 2.395364 -2.501094 -3.269340 -8.129024 6.388153 -0.590504 -3.439726 -2.718681 -5.075201 8.348046 2.504061 -3.225585 -2.910003 7.407614 -4.826854 -2.998911 8.292098 -2.539281 -5.448740 3.732741 0.808826 8.469945 -5.529500 -1.199606 -7.386221 0.415495 4.158603 4.218537 -13.234863 -4.225834 -6.827037 -10.135899 -3.299055 3.121737 2.552608 4.516680 0.872911 -14.008050 -8.766220 8.615559 -3.000610 7.295358 6.581930 8.584905 10.567538 5.126507 3.086872 -3.111404 -3.262678 -2.228306 -7.591273 -4.162051 -0.245424 3.376164 -3.966044 9.872527 4.313252 2.229111 5.192018 -0.142422 -2.044478 -7.458500 12.781464 8.283954 -8.682897 0.162945 4.272702 10.832367 -13.574878 -8.129654 --6.142880 -11.895954 12.520996 11.061129 1.682970 7.801735 3.873375 -4.977272 5.190937 7.971434 -3.189849 7.573377 -7.488420 -1.831779 -1.697048 2.526623 -4.613947 -7.951748 -0.453204 -3.675416 -2.214861 -5.965771 -5.110886 9.235351 2.935625 -1.505254 -5.109529 0.027067 -14.268211 -11.352235 -0.633516 -0.376056 5.922854 -4.279557 2.809365 -19.011889 7.746412 13.282152 -1.486967 -13.046265 1.533571 -4.709978 -2.542892 1.915727 -4.540335 2.922572 3.037537 -0.516890 -0.427636 2.409811 3.119750 1.138302 5.436792 17.736175 0.951013 11.972123 11.721259 0.317245 1.489786 1.978174 3.083643 -1.244056 6.452513 4.267818 -2.943322 -3.080583 -0.648868 0.673366 -7.415701 3.255309 2.007337 -6.662146 -3.297667 -3.814475 -9.101788 -3.782003 1.819777 2.736318 14.293341 -6.535566 14.349227 5.920170 7.119412 0.886782 9.385584 -0.724597 10.043412 3.980509 -6.075178 1.303998 -6.844290 -2.542267 0.756836 6.404650 -8.278662 -5.464982 6.505585 -10.385808 -13.211152 7.956808 -0.398772 -3.330547 -7.516750 -2.723928 4.756694 3.957805 -5.488524 -10.530126 -8.265334 7.484653 -3.968482 -6.361503 -0.807302 -0.502312 0.604734 -0.198233 -9.294082 0.394415 8.774521 -6.116520 -5.290058 10.161118 -2.832406 6.975325 -2.043010 1.260576 -1.297077 4.196308 2.832326 3.558729 -0.318580 -3.117767 -12.217719 -0.783165 1.035060 1.074311 -4.475090 -1.514951 3.438991 5.001715 3.110580 8.569171 -3.306155 8.836789 5.722555 0.360133 -4.719492 -10.387136 -2.555584 -8.581695 1.560883 -5.575213 -6.322875 2.641446 8.181205 1.567281 0.963597 8.674222 -3.990211 6.883855 -0.080800 -0.147910 1.891401 -5.647441 3.598281 -5.331602 -9.618947 5.987408 8.304367 4.941050 2.646449 -2.476214 -0.259121 -3.305132 -7.783104 2.787683 1.801419 0.426649 11.242709 6.934650 19.666192 -9.041900 1.929986 -1.775755 -3.171280 2.728741 -3.549302 -11.320492 1.547408 3.287052 0.498860 14.245924 -0.857398 -5.814215 4.003444 -0.583416 1.501249 -8.058128 9.469718 -8.033967 -0.548101 -3.996548 -2.371797 -5.310795 -4.304467 -8.162133 -2.951814 13.323404 -9.966530 -11.490073 6.625352 0.617291 3.379563 -15.373163 10.211667 -4.924123 9.806418 -3.301657 -3.512170 0.009989 4.182156 -2.210573 2.601892 5.677872 -8.686650 5.698592 9.163146 1.399132 2.850010 2.657381 4.718912 -2.473920 -1.068346 -8.138995 7.760436 -0.402217 -4.531570 -2.528883 -4.666548 6.238379 0.887257 -0.035970 0.086412 7.458298 -2.501383 -1.389221 9.426722 0.420638 -5.193512 4.223056 0.623565 7.125440 -5.513964 -1.217250 -5.059668 1.889441 2.082301 4.480381 -12.743062 -5.969539 -9.607696 -10.492545 -2.423894 3.785227 3.287928 2.954873 -0.035002 -13.774136 -8.418312 10.482187 -4.250291 6.513885 7.448951 8.168474 9.656740 6.595369 1.692003 -2.011526 -2.369586 0.079142 -5.427136 -3.391086 -2.336636 5.030824 -5.416398 8.739997 5.493799 0.716471 5.774446 1.107864 3.597359 -7.131933 13.752967 6.773508 -8.187618 2.430940 7.510979 10.602308 -9.467668 -7.127543 --1.898742 -4.680181 4.586653 4.347622 1.511636 2.440022 3.206761 -1.471880 3.123058 3.011214 -1.609599 3.471609 -3.531174 0.013028 -0.486928 1.754805 -1.662272 -3.792256 0.662317 -0.334673 -0.029504 -3.683746 -0.332600 2.380513 1.702122 -0.007486 -1.797360 -1.471180 -6.924254 -3.637560 1.808757 -0.708204 2.682047 -1.468874 0.026114 -8.727015 2.680641 4.803866 -0.545995 -6.696442 1.155057 -1.842770 -0.690585 0.448873 -0.008200 1.714773 1.539265 1.783617 0.377050 1.878473 1.138144 -0.239195 1.427563 6.449409 -1.255168 4.886906 4.597976 0.354954 0.237135 0.330896 1.365980 -0.236452 2.841184 3.173527 -1.547262 -1.175868 -0.830973 -0.510650 -5.025045 1.523745 0.921494 -1.000090 -2.996209 -0.333550 -1.798522 -0.316830 0.213387 1.546892 6.578762 -1.819898 7.056572 1.826100 3.302901 -1.316293 2.122154 -0.151363 1.953314 1.588285 -2.747353 -1.197009 -5.222280 -1.540690 -0.360944 1.744012 -2.175674 -1.123897 2.089820 -0.841719 -4.476785 1.839706 -0.260250 -0.824137 -3.153183 0.940721 2.070956 2.885992 -1.638735 -4.697824 -3.858867 2.319970 -1.286922 -2.391241 -0.555462 -0.342613 -1.479443 -1.960951 -3.350279 -0.977704 3.405116 -3.264760 -2.188710 2.935827 -2.805539 2.682424 -0.681206 0.215068 -0.193278 1.897813 2.032081 1.205379 3.150998 -2.679507 -6.229910 0.646253 1.128286 4.610757 -1.923781 0.425113 0.624333 1.336723 0.863196 1.561093 -0.281679 2.115606 3.227596 -1.182135 -2.300645 -3.454615 0.914525 -2.970886 1.607213 -2.576933 0.418031 0.412919 3.252208 0.170230 1.230985 5.370313 -3.988078 3.154513 0.235027 0.336107 0.790581 0.482022 1.402305 -1.840311 -3.558938 2.148255 3.319044 0.426950 0.783298 -0.605506 0.012003 -2.271513 -2.857142 1.242289 0.700036 -0.099582 3.695138 1.582319 7.149702 -3.877760 0.203756 0.340024 -0.505070 0.605306 -0.658362 -5.007229 2.584759 0.235779 1.022984 4.971300 -0.176493 -2.706268 2.003494 -0.270965 0.265479 -2.752864 3.844944 -3.297238 -1.366858 -2.000232 -0.731773 -1.096014 -2.182110 -2.469270 0.915103 5.010663 -0.074569 -5.190761 1.361813 -1.812179 0.722858 -7.040023 5.480896 -2.272089 1.747493 -1.393994 -0.826091 -0.269896 1.473081 -0.669512 -0.507924 2.211995 -2.728249 2.920865 4.793469 0.761989 -0.287084 1.413585 1.649236 -0.083892 -0.168057 -2.012073 2.393019 -0.293865 -1.040609 -0.026197 -1.747979 3.007925 -0.172860 -1.206425 2.708046 3.637132 -0.726926 1.605448 3.126620 1.069219 -2.317412 1.922289 0.452477 3.729841 -1.392292 -0.353516 -1.817883 0.339961 0.012314 2.598255 -4.237103 -3.996343 -0.899484 -6.450577 -0.623857 0.071074 1.838498 0.431893 0.531303 -6.844172 -2.683421 1.755312 -1.336696 4.394614 2.548826 2.208707 3.115990 2.274349 -1.232605 -0.709557 -0.541016 0.590901 -2.321510 -1.677473 -0.518100 1.263536 -2.785276 2.621697 2.453524 -0.200442 1.050853 -1.445791 3.217825 -2.289692 6.473406 2.800601 -2.367581 1.733505 0.611988 5.443742 -2.951705 -2.620821 --10.845044 -160.398563 308.012876 261.335645 -15.306828 119.436280 25.994083 -200.460754 199.330241 127.042192 -45.236645 71.873512 -150.280912 52.649666 -56.861072 152.520402 -189.694211 -141.338728 -65.105247 -144.510223 -96.569107 -145.045690 32.400285 61.508266 98.339663 60.707324 -127.265723 13.277416 -160.309535 -253.965836 103.549833 -37.239534 107.538020 -8.428674 49.479131 -402.884865 234.810787 195.290416 -65.542770 -227.898300 40.271259 -77.769998 -39.941719 -8.524393 -47.618096 68.384088 -12.074529 82.841398 95.806700 82.766319 81.497859 57.143877 94.743691 354.158418 -81.050129 189.750532 122.368465 11.811963 -10.057223 67.527489 59.648936 64.423620 104.549880 118.324273 -9.551770 -137.339145 -25.916747 -40.588322 -183.409418 166.806131 -17.263585 -120.682778 -140.999232 -94.209060 -136.161843 -41.452887 -212.313294 156.293057 296.960687 -168.448557 180.690180 71.247177 86.902828 -2.374766 120.302052 -29.395751 219.651345 84.424117 -89.267064 2.191074 -74.502037 -87.452515 54.354710 -13.087013 -149.041759 -232.006695 122.941303 -219.371807 -232.557903 120.549968 74.379631 -46.189769 -149.810053 -64.377927 111.754512 55.401984 -103.023703 -200.438158 -86.184497 109.795321 -4.515688 -92.912225 -10.877971 -35.189305 -20.736866 1.621076 -228.719006 -9.996591 70.837217 -101.904221 -73.123881 183.300275 -31.189027 24.605371 -32.283781 50.498374 -58.275655 163.719932 -7.091540 156.000352 6.054495 70.156615 -169.791666 82.223187 81.944681 15.872131 -38.286259 3.992296 -35.166805 77.635720 -94.183086 108.100382 -95.580683 99.027982 180.757367 -28.694218 -149.303670 -103.569360 -54.354090 -246.554376 57.842734 -150.784773 -110.270001 54.927980 171.711218 123.834178 108.013204 173.887973 -189.039189 86.053390 -36.532255 24.555320 106.074016 -12.648016 88.971330 -101.442845 -177.893259 108.002976 102.590123 48.004002 56.029966 -65.435840 -1.574832 -123.412644 -80.278221 106.333288 72.260269 -27.799518 168.450827 132.838226 292.431929 -169.739334 55.257684 82.680185 -63.356102 44.650853 -32.455352 -241.175212 75.372554 48.922628 74.650603 224.484325 -32.349772 -68.640662 64.691464 -38.710466 56.569268 -137.283852 79.742169 -156.503556 -39.780958 -124.426222 28.505865 -83.057796 -62.903725 -86.814742 -57.058238 243.580622 -197.071441 -161.455613 256.623363 -76.627775 70.019448 -235.727669 203.486881 -107.508030 134.182415 -54.630816 -28.837810 -19.818582 19.762415 -98.264338 37.428794 102.518571 -87.760399 75.803642 248.682382 48.570818 21.942310 19.010276 152.164850 -67.451115 80.386152 -130.854247 220.888547 -25.592773 -54.536074 -28.233989 -91.765360 32.173510 -94.269741 19.994661 126.505043 126.884611 26.652966 54.515406 118.952151 112.912569 -117.662022 164.043629 0.902969 63.609046 -112.027197 -23.803515 22.027111 47.587739 -58.273842 100.795574 -240.221609 -199.681612 -254.481676 -170.825744 -48.185255 -2.778680 75.630453 -30.404589 -31.170595 -185.785209 -177.002074 218.482428 -87.553707 78.041013 127.943596 118.091579 159.268922 215.418919 -55.473853 3.587372 -52.936104 -12.541509 -49.496575 -72.355093 -101.392700 178.401657 -89.594004 84.573745 187.995836 -33.620290 96.195862 -6.016323 122.425674 -131.877384 250.758414 107.115234 -75.942378 118.339173 152.135402 238.111061 -22.717409 -134.540687 diff --git a/src/test-suite/oracle/FA_llvm16_f/ir2vec.txt b/src/test-suite/oracle/FA_llvm16_f/ir2vec.txt new file mode 100644 index 000000000..8cf2832c9 --- /dev/null +++ b/src/test-suite/oracle/FA_llvm16_f/ir2vec.txt @@ -0,0 +1,1692 @@ +PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -2.678065 -2.216553 0.107234 -6.239615 3.929675 4.679540 1.859487 -3.725369 -6.023449 -0.749117 2.186174 -5.440261 -0.445284 7.226981 -2.278788 6.183614 8.619035 1.229214 -3.439377 -0.460852 7.191316 -0.995502 8.236654 7.173544 -5.387482 -0.682138 0.497735 3.630219 1.830515 1.840426 -0.113579 -2.506283 2.664080 -7.223523 -2.110732 -4.376003 1.283225 2.277396 5.284420 -8.541622 1.754961 -0.697772 -0.610072 -1.955895 -2.427733 -1.832587 4.181765 5.677008 -1.217024 1.454535 4.798046 1.250101 -1.358363 1.651115 1.355680 2.006833 0.585812 -0.124146 -1.935598 -3.202884 -0.456945 -1.546151 2.028751 5.771831 6.775465 0.940852 0.107819 4.556145 0.979582 0.995237 3.455765 0.832920 -2.612505 0.200317 2.674616 -9.248750 -0.159061 -9.678520 -1.482230 -8.524511 -3.324816 0.289250 3.071360 0.094218 4.472290 1.089397 5.664615 -1.637456 -1.522492 5.897892 6.570336 -6.161518 -2.624094 -4.294259 -3.869164 1.856691 -3.295303 0.342163 1.568840 1.020765 -4.929594 -3.437183 2.196750 3.690121 -2.232178 -5.154282 1.597608 5.096906 -4.917384 -5.773646 0.347060 4.707124 -2.657449 -9.001079 -2.599470 -4.557526 4.458562 -0.431631 -1.939181 -6.856839 0.641772 4.249631 -1.300119 -4.089900 0.067915 3.269188 3.564196 2.455262 0.406117 0.141936 1.248823 10.142110 2.691642 -3.637091 0.542712 -0.086248 -1.845082 2.237054 -3.617154 -2.982829 0.551761 -6.148135 0.003366 5.983761 -3.442809 -1.285589 5.211642 2.281236 1.836420 20.919807 0.685358 6.665107 5.191294 -6.303809 1.246596 -2.484065 0.178727 2.079537 2.139782 -0.065863 -10.457749 -5.740324 3.312992 5.910217 4.833127 -6.191597 -2.664811 -1.382555 -0.469806 0.424007 -1.011817 1.450931 -0.248021 -4.882298 -1.416323 5.087555 11.702212 -2.941096 -1.294314 3.940481 2.009392 -3.736816 -7.557082 -3.083222 -4.595240 1.218555 2.053692 0.036501 3.634930 7.774177 -8.779363 5.049321 -1.397908 -0.129925 3.983838 2.166964 -5.701695 -6.066816 -1.630581 3.930522 6.512567 -2.293183 1.567246 2.555818 -5.402190 -0.430687 1.474276 -0.161387 -1.250651 2.392033 1.115257 -3.637735 -3.383256 2.806558 -2.020317 -1.688386 -0.008894 3.875946 -0.598455 -7.077929 5.934537 0.127684 -1.986952 2.821798 -2.111701 6.889155 -5.689274 -6.215713 4.906735 0.500316 -0.578764 -1.905974 1.348376 4.499220 2.272937 1.437741 -3.887336 -6.264035 2.846377 -2.067676 4.703457 2.345897 -0.302665 3.515248 -3.108400 -1.280537 -6.075481 -3.721724 -0.894096 1.174841 -6.032218 -4.001207 -1.217308 6.519035 4.332941 0.114192 -4.541526 0.708735 6.350092 -6.485748 -1.297006 3.871996 3.977875 -7.064729 0.293180 4.983831 -6.588035 0.146856 -2.061550 -0.320299 -1.956056 -5.039640 3.851667 1.386399 3.967461 -0.030481 1.354289 0.634470 2.568487 2.551443 2.192825 1.165750 7.354135 5.948882 -1.521285 -3.267638 -5.995775 2.180149 -7.524762 -7.607736 3.383534 1.341613 -4.231750 1.012071 0.955266 6.968410 1.301892 0.294075 -0.193366 -0.102119 +PE-benchmarks/channel-assignment.cpp__maxBPM(int (*) [4]) = -1.815875 -1.078835 -0.270386 -4.898485 3.557181 3.324115 1.640028 -1.312655 -5.695079 -1.621699 1.574183 -6.761114 -2.291373 6.714605 -1.722583 3.548639 8.207001 1.036579 -2.666343 0.044005 5.251732 -0.627688 7.081618 6.586085 -4.932067 -0.259360 -0.790949 2.197048 0.406678 2.535450 0.580925 -4.657521 1.840995 -3.682531 -0.488618 -3.426293 0.738626 1.171318 2.700118 -8.518587 1.424406 2.985595 1.457406 -1.974507 -1.369935 0.717633 4.975724 4.888109 -1.636299 0.784731 4.112939 1.277874 -0.659402 1.153226 1.045000 -0.010031 0.425631 -0.092251 -3.002240 -2.149300 -0.486831 -1.762916 0.373727 5.089786 6.487289 0.721197 -0.191865 2.307635 0.548408 1.487729 2.435711 0.784062 0.179961 0.309375 2.676489 -3.670860 -1.037006 -7.991620 -0.376551 -11.262173 -3.180987 -0.271386 5.240150 2.262764 1.805545 -1.955263 5.446360 -1.375850 -0.635906 5.998896 6.830050 -3.799318 -2.681544 -4.576119 -3.929612 2.439669 -2.821952 -0.077993 2.911466 0.682447 -4.878151 -2.307458 0.746618 1.925201 -1.919054 -2.584864 1.163088 4.102074 -4.831947 -2.767450 -0.840302 4.049093 0.013052 -8.701058 -2.626768 -3.373233 0.363206 0.531677 -2.169053 -3.846275 0.921347 1.993123 -2.160642 -1.746556 -3.079374 4.627197 1.818408 2.106995 0.950618 0.598525 1.982788 6.847184 1.388436 -3.447729 0.550276 0.022579 -1.250797 1.529095 -3.494155 -2.707283 1.855460 -5.173180 1.097386 3.218015 -3.352408 -1.510872 0.604960 0.910737 1.927557 17.063131 -0.174635 6.746646 3.497426 -5.507135 3.180283 -1.301999 -0.831522 0.801739 2.566857 0.826974 -5.582640 -4.673401 3.433199 5.813098 4.375422 -4.719470 -0.232756 -0.332054 -0.538727 -0.309441 0.354704 1.431994 0.122148 -4.441421 -1.428811 4.593831 10.490988 -1.439377 -1.809991 2.867851 3.815017 -1.732484 -4.499711 -1.593618 -3.500794 1.004572 1.395573 -0.393169 3.825482 7.120939 -9.522747 5.232841 0.165346 -0.057161 3.589894 0.812170 -5.106216 -6.598956 -1.069181 4.182651 6.676868 -0.944499 0.467109 1.151942 -4.668823 -0.464165 1.336281 0.300630 -1.356968 2.286650 -0.299536 -2.818834 -3.205297 -0.115529 -2.381521 -0.886234 -1.628301 2.960394 1.524329 -7.036240 5.965972 0.064122 -1.621467 -0.475397 -1.485345 3.700240 -5.204254 -5.812728 2.749025 -1.004913 -3.267663 -2.241113 0.271743 3.247271 1.630304 1.578682 -2.582820 -6.803713 5.065221 -1.668618 4.913114 2.349145 -0.175741 3.399050 1.346344 -1.471930 -4.797661 -4.407738 0.486115 -0.557361 -5.067927 -0.143722 -1.592783 4.885419 3.863750 -0.379015 -4.284718 -0.832977 5.706400 -2.722907 -1.705682 3.756402 -0.405472 -5.289756 1.185928 4.954421 -5.996507 -0.034154 -3.805742 0.165680 -2.019105 -4.451735 2.294139 0.247687 2.496621 0.739578 0.163679 -0.894399 1.708155 1.871223 -0.086839 0.728706 7.487852 3.832047 -2.242280 0.109595 -5.672561 2.567953 -6.904546 -6.812535 2.256552 0.086279 -3.919280 0.481593 0.788548 4.968046 0.429067 0.338530 -1.470051 1.285114 +PE-benchmarks/channel-assignment.cpp__main = -0.484014 -0.349485 1.090927 -1.946824 1.256646 0.467230 0.601797 -0.149534 -2.271602 -0.476911 0.295161 -2.110947 -0.672784 2.377218 -0.528822 0.815284 3.089810 0.920046 -0.979929 -0.309519 1.520699 -1.072587 2.210760 2.428770 -1.653411 0.163541 -0.303636 1.105032 0.245482 1.861940 -0.821834 -1.140639 0.242383 -0.814068 0.480930 -1.643903 -0.036724 0.471258 0.348175 -3.332197 0.624245 1.148187 0.971549 -0.670761 -0.113887 1.016299 1.863884 1.509817 -0.408117 0.266691 1.199653 0.040807 0.130749 0.387288 1.060539 0.666690 1.676414 0.558873 -1.209726 -0.226662 -0.412264 -1.037307 0.437149 1.678521 2.142703 0.250760 -0.191769 0.018933 0.491637 0.424273 0.959274 0.199328 -0.004195 -0.060371 0.732470 -1.424059 0.595038 -2.905924 0.081979 -4.238448 -1.258831 -0.239610 2.093167 0.381555 0.366477 -0.817696 1.936509 -0.712194 -0.015626 1.044724 2.300351 -1.275510 -0.939739 -1.326033 -1.443028 0.677736 -0.696635 -0.594543 1.347248 0.131072 -1.632976 -0.561449 1.060087 0.562407 -0.661215 0.322631 0.376182 1.780703 -1.756702 -0.922074 -0.684142 1.157519 0.157500 -2.635445 0.050623 -1.410225 0.190927 0.226393 -1.101058 -1.252126 0.637592 0.859069 -1.119326 -0.114567 -2.011187 2.303045 0.191131 0.422369 0.146923 -0.126339 0.367928 1.390026 0.853602 -1.462774 0.321418 0.351494 -1.029891 0.202104 -1.401712 -1.101301 0.809462 -1.589318 -0.249553 0.466932 -1.324962 0.159863 0.396243 0.641151 0.697297 5.545952 -0.458103 2.126369 0.750099 -1.757635 1.874017 0.410944 -0.160943 0.238128 1.207914 0.314180 -2.362676 -1.666711 0.985374 2.052413 1.580674 -1.821494 -0.456362 -0.581866 -0.397816 0.534479 0.308360 0.211702 -0.107638 -1.536440 -0.648867 0.647472 3.802708 -0.426046 -1.906328 0.605045 0.272014 -0.808089 -2.021066 -0.397544 -0.940383 0.467657 -0.630241 -0.418467 1.524428 2.485617 -4.416069 2.252312 -0.557403 -0.753172 2.319672 -0.291057 -1.199680 -2.961597 -0.685436 1.343650 2.846121 0.036233 -0.665826 0.556801 -1.653697 -0.259267 -0.016693 0.481137 -0.748507 0.851543 0.125505 -1.322313 -0.790986 -0.988930 -0.488300 -0.333777 -0.732671 0.912405 0.274728 -3.006303 1.991368 0.240582 -0.240009 0.155454 0.004444 0.335284 -1.629094 -1.941522 0.512733 0.059488 -1.054541 -1.286083 -0.121652 1.238165 -0.138743 0.128669 -1.029023 -2.500135 1.683601 -1.102882 1.884183 0.869302 -0.224887 1.340466 2.249654 -0.347444 -1.410624 -0.681220 -0.163740 -0.695297 -1.168612 0.018439 -0.808599 1.559309 1.480208 0.095975 -0.451515 -0.548927 2.323594 -0.720246 -0.734850 1.422433 -0.997561 -1.288683 0.605556 1.855365 -2.143910 -0.423798 -1.350258 -0.828615 -0.491909 -1.035432 1.017192 -0.175111 0.690853 0.152210 0.008185 -0.621863 0.533874 0.392856 -0.408707 0.268919 2.846908 1.969442 -0.797231 0.639675 -1.622101 1.079474 -2.222080 -1.579546 0.201879 0.231546 -1.652325 0.307691 0.564972 1.629852 0.080839 0.011870 -0.336217 0.385934 +PE-benchmarks/vertex-cover-problem.cpp__Graph::Graph(int) = -1.065045 -1.091240 0.397794 -2.880868 1.590059 1.126466 0.776590 -1.114850 -2.235303 -0.333864 1.324552 -1.360350 -1.092358 2.626712 -0.833288 1.475699 1.540103 -0.373644 -1.636414 -0.870990 2.513151 -0.978867 2.524549 1.468141 -2.523991 -0.288118 -0.348416 1.965832 0.763159 1.367521 0.353198 -0.049643 -0.269311 -0.934801 0.398762 0.069996 0.481554 0.487506 0.436485 -2.241242 0.554423 1.325369 0.997471 -0.619996 -0.761149 -0.442517 0.942338 2.202528 -0.172108 0.028468 2.385248 -0.212172 0.254844 0.396161 1.091862 0.104403 1.751852 -0.147152 -0.354071 -1.191988 -0.287479 -0.473503 0.887398 2.135641 2.535853 -0.430207 0.000705 1.018199 0.306452 1.410213 1.672500 0.332332 -1.194381 -0.648243 1.663784 -1.357908 0.333545 -2.394678 0.219915 -2.413931 -1.298022 0.206216 1.609627 0.843997 1.033075 -0.034750 2.249198 -0.040309 -1.122410 0.612685 1.333885 -0.613173 -0.760558 -1.308962 -1.725243 0.556193 -1.206310 -0.309625 0.768066 1.323558 -1.732910 0.551646 0.098295 0.998993 -1.158708 -0.611942 -0.292426 1.767619 -1.042306 -0.964747 0.473405 2.254369 -0.333811 -3.206310 -0.858204 -2.341069 -0.197264 -0.902446 -0.012082 -0.444756 0.158106 1.153668 -0.716948 -0.755397 -1.738925 1.345506 1.306281 0.662071 0.108552 0.217000 -0.035735 1.855967 0.307743 -1.159696 -0.664373 0.187220 -0.430331 1.204961 -0.557106 -0.530067 0.523422 -1.505518 -0.003106 0.517016 -0.424573 -0.342089 -0.073026 0.838113 0.543622 5.068871 -0.082308 2.282733 1.133219 -1.190609 1.033270 0.361715 0.382397 1.041877 0.874645 -0.985705 -1.441420 -2.059728 1.419178 1.784429 1.367234 -1.474311 0.167936 0.035512 -0.403690 -0.223470 -0.000430 0.289518 -0.232934 -1.315802 -0.611928 0.798850 3.012731 -0.651842 -2.021661 1.680521 1.186984 -1.618526 -1.404103 -0.755178 -1.279045 0.145343 -0.164566 0.190063 1.598327 2.504372 -2.521467 1.790185 0.073067 -0.349956 2.237067 -0.888105 -1.281493 -2.847615 -0.443117 0.233535 2.158615 -1.008885 -0.723917 0.786472 -1.919088 0.457762 -0.023938 -0.389713 -0.416701 0.986191 -0.699792 -0.522282 -1.071287 -0.750912 -1.111881 0.803972 -0.730959 0.868065 -0.103306 -2.042772 1.708602 -0.314217 -0.592377 0.148617 -0.107267 1.681541 -1.155550 -1.580943 1.102367 0.064346 -0.670224 -1.975229 0.390720 1.331388 0.007606 0.172596 -1.605902 -0.834893 1.423365 -1.842129 1.736998 0.873465 -0.303459 0.438122 1.510713 -0.286050 -1.386871 -0.637055 -0.261359 0.226648 -2.254418 -0.422969 -0.642164 1.821266 0.574819 0.202792 -0.753679 -0.188155 2.553901 -0.801211 -1.332272 0.844582 -1.008693 -1.756873 1.136931 1.594767 -1.346824 -0.107038 -1.598584 -0.262419 -1.243429 -2.015561 1.879096 1.106354 1.912102 -0.495679 0.887995 0.123995 0.569985 0.673676 -0.067161 -0.257990 3.177373 1.193679 -0.938137 -0.923121 -2.208999 1.318985 -1.535737 -1.358586 0.776772 -0.035305 -1.028146 0.538028 -0.298880 2.454892 0.663988 -0.151995 -0.460183 0.048109 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/vertex-cover-problem.cpp__Graph::addEdge(int, int) = -0.732709 0.131275 1.158565 -1.691132 1.282604 1.588591 0.467775 -1.001141 -1.352219 -0.423541 0.219422 -1.636945 -0.983001 1.961560 -1.084751 0.701790 2.473362 0.520061 -0.891399 -0.351780 1.413026 0.162923 2.560820 2.280299 -1.829199 -0.166679 0.494226 1.338625 0.525560 1.416344 -0.638854 -1.164082 0.669690 -0.686293 0.080693 -1.112735 0.168030 -0.027823 0.334928 -2.519223 0.277208 -0.000512 -0.543345 -0.318886 -0.127349 0.236960 1.933980 1.524032 -0.075622 0.057414 1.183899 0.856777 -0.091711 0.427234 0.689185 0.292905 1.353593 -0.252732 -0.591940 -0.689236 -0.448108 -0.726291 -0.018470 1.996445 2.094452 0.523174 0.018300 0.223322 0.044385 0.371603 0.526870 0.493345 -0.098310 1.055615 0.592506 -1.492855 0.669840 -2.142106 -0.278210 -2.181094 -1.000056 -0.654773 0.671493 0.447634 0.810695 -0.075125 2.012382 -0.058288 -0.024175 1.021920 2.426623 -1.687703 -0.647812 -1.011534 -1.047388 0.403589 -0.975008 0.325261 -0.188284 0.371922 -1.450776 -1.044070 0.380426 0.594775 -0.711595 -0.137881 0.052807 1.630737 -1.701654 -0.792813 -0.773553 0.654590 -0.256615 -2.856497 -1.110148 -1.211712 1.483235 -0.063738 -0.696131 -1.682666 0.540318 1.473488 -0.463287 -0.666982 -0.709301 1.399893 0.988951 0.148154 -0.125300 0.032183 0.431055 2.132614 0.926628 -0.916697 -0.011572 -0.053618 -0.933218 0.091817 -1.091561 -0.173702 0.038084 -1.476333 0.109531 1.671977 -1.059749 -0.323737 0.202949 -0.003975 0.906564 5.775425 -0.502744 1.575098 0.924275 -2.063030 0.415716 -0.342844 -0.193109 0.307085 0.706037 0.720541 -2.601160 -1.569494 1.177410 1.964529 1.240441 -1.673263 0.261996 -0.490764 -0.208251 -0.350520 0.207865 0.434322 -0.514542 -1.185199 -0.615634 1.215461 3.054384 -0.793970 -1.972472 0.806828 0.009233 -0.361743 -1.091462 -0.563444 -0.142515 0.396977 0.749632 -0.099849 1.130155 2.312993 -3.149788 1.709485 0.000190 -0.637363 1.854232 -0.000384 -1.056328 -0.555973 0.019778 1.626461 1.657111 -0.027776 -0.354799 0.272732 -1.781185 -0.227370 0.377507 0.813533 -0.732638 0.875270 0.961910 -1.567473 -1.391549 -0.651739 -0.081733 -0.460984 -0.805976 1.010867 -0.698691 -3.320444 2.254629 0.227798 -0.438682 0.372789 -0.744169 1.195233 -1.853768 -2.097688 0.949918 -0.207682 -0.689106 -0.654061 0.106043 1.233076 0.533945 0.953059 -1.683354 -1.756628 1.027851 -0.383981 1.451425 0.676464 0.620647 1.432174 -0.055366 -0.333298 -1.480213 -0.917217 0.832916 0.148866 -1.475900 -0.286104 -0.496562 1.660632 1.849023 -0.358996 -0.793655 -0.353196 1.834824 -1.518935 -0.526422 1.039307 0.843066 -1.576629 0.219388 1.301742 -1.469047 -0.761400 -0.812786 -0.745109 -0.763649 -1.628771 0.905632 -0.477809 0.862161 0.618082 0.214043 -0.656864 0.707882 0.352243 0.226649 0.591095 1.971821 2.057892 -0.677290 0.226615 -1.775901 1.114230 -2.445341 -2.011514 0.808448 -0.542757 -0.706542 0.111221 -0.192798 1.664871 0.240149 -0.017307 -0.116176 0.051508 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::push_back(int const&) = -0.393401 0.422519 1.031386 -1.031333 0.911656 0.566330 0.289656 -0.279628 -0.773459 -0.525266 -0.148460 -0.897224 -0.903899 1.280504 -0.616633 0.073999 1.790952 0.501754 -0.302807 -0.413763 0.851887 -0.381816 1.574160 1.505993 -1.357415 -0.030149 0.664674 0.861908 0.356394 1.202490 -0.612930 -0.953458 0.365006 -0.118637 0.544261 -0.984653 0.119830 -0.152330 -0.193692 -1.907424 0.155767 -0.015483 -0.204815 -0.182168 -0.031300 0.779597 1.547288 0.969966 -0.421378 -0.029383 0.874053 0.620141 -0.097963 0.297384 0.378952 0.174232 1.031777 0.169529 -0.481999 -0.155502 -0.293692 -0.832648 0.017336 1.302350 1.489585 0.233028 0.090516 0.007296 -0.041530 0.269086 0.155668 0.281825 0.394614 0.619241 0.531091 -0.970691 0.242467 -2.185488 -0.192089 -2.616972 -0.754199 -0.842108 0.533092 -0.078097 0.281471 -0.102190 1.382458 0.134932 0.371358 0.607444 1.754056 -0.984465 -0.436997 -0.858633 -0.801377 0.442703 -0.636845 0.104814 0.202661 0.027407 -0.937050 -0.945297 0.461861 0.185601 -0.488910 -0.001059 -0.093111 1.121425 -1.237884 -0.317652 -1.042174 0.074072 -0.001614 -1.868447 -0.179050 -0.785787 1.111922 0.056561 -0.349325 -0.966815 0.316298 1.033208 -0.484618 -0.318287 -0.754878 1.269090 0.517544 -0.075629 0.042366 -0.180365 0.280622 0.961390 0.974930 -0.665891 -0.209115 0.093297 -0.913571 -0.285879 -1.050647 -0.113064 0.664561 -0.889177 0.120973 0.784143 -0.762436 -0.322448 0.525266 -0.447182 0.868483 3.416189 -0.418630 0.818023 0.264811 -1.401633 0.626074 0.021844 -0.357153 0.243614 0.811920 0.630133 -1.440099 -1.010450 0.605399 1.272015 0.837819 -1.148896 -0.197742 -0.512979 -0.207236 -0.164074 0.156924 0.268295 -0.507400 -0.738695 -0.435400 0.615118 1.914148 -0.449047 -1.544312 0.355047 0.286026 -0.283268 -0.909225 -0.256530 -0.189793 0.222384 0.197102 -0.242304 0.853825 1.563733 -3.006717 1.193289 -0.108337 -0.541645 1.076828 -0.167630 -0.449786 -1.052387 0.368348 1.265526 1.273501 0.190920 -0.134402 0.039200 -1.167345 -0.168691 0.086990 0.810292 -0.584731 0.563585 0.487927 -1.173862 -1.013237 -0.690934 -0.063023 -0.385776 -0.485327 0.511122 -0.174620 -2.768394 1.648919 -0.130720 -0.191598 0.176767 -0.382907 0.517944 -1.317703 -1.511133 0.446208 -0.096081 -0.477232 -0.646495 -0.000830 0.949210 -0.083431 0.456571 -0.878972 -1.521547 0.725538 -0.311385 0.837731 0.488394 0.599123 1.310276 0.380108 -0.267713 -1.117797 -0.289140 0.571623 -0.237513 -0.781671 -0.017482 -0.380949 0.971460 1.535718 -0.270168 -0.175254 -0.264594 1.297858 -0.996112 -0.491824 0.806547 0.446839 -0.700777 0.378291 0.955423 -1.064124 -0.897462 -0.774836 -0.441146 -0.216755 -1.102292 0.437810 -0.726183 0.309425 0.667349 0.027998 -0.656052 0.586144 0.153043 0.024624 0.135450 1.306914 1.819926 -0.839331 0.431610 -1.036537 0.682646 -1.754411 -1.204426 0.264368 -0.371827 -0.333964 0.150210 -0.107557 0.890154 -0.132064 0.233602 -0.089607 -0.109375 +PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -3.701731 -1.860373 0.524489 -7.661907 6.186496 6.674832 2.883007 -3.808087 -8.419966 -2.335932 2.490865 -10.070120 -3.212405 10.898201 -3.203958 7.393270 13.514189 1.878161 -4.453721 0.191222 9.123120 -0.556396 12.160265 10.520398 -7.559268 -0.922023 -1.103840 4.322327 0.506356 3.521831 0.513800 -6.650584 3.858295 -7.462531 -2.223563 -4.983532 1.772698 2.510277 5.713683 -13.253571 2.356545 2.391704 0.864841 -3.250972 -2.907887 -2.292953 7.761707 8.270911 -1.362711 0.925269 6.183246 2.349569 -1.230891 2.569470 1.557062 1.169332 0.598236 -2.345371 -4.569198 -4.157829 -1.129858 -2.692734 0.968433 8.330701 10.449412 1.993082 0.036627 5.012917 0.397349 2.267872 4.093205 1.183812 -1.041346 1.019139 3.823724 -8.301691 -1.678003 -12.757593 -1.872070 -12.883690 -5.501844 -0.536730 5.937422 4.354078 5.018639 -0.929788 8.533930 -2.164157 -1.394986 8.636419 11.373015 -8.131758 -4.327999 -7.262730 -5.586873 3.200682 -5.061070 0.639913 1.699323 1.437148 -7.850130 -5.252131 2.360991 4.053151 -2.928877 -5.873254 2.038264 7.527352 -6.949903 -6.623484 -1.084295 6.498734 -1.879202 -13.546390 -3.783632 -5.454389 2.096907 1.013380 -3.145756 -8.491576 1.653978 4.554891 -2.791385 -5.009608 -3.360474 6.660269 3.830501 2.882388 1.177572 0.896867 2.599970 13.008728 2.828981 -5.213692 0.898227 -0.530615 -2.176742 2.888352 -5.575790 -4.230079 0.397050 -8.575565 0.472506 7.679023 -5.364859 -2.560667 0.783629 1.931906 3.347296 26.596931 0.157436 9.577527 6.355014 -9.627591 4.731808 -3.408975 -0.907832 1.298493 3.558303 1.193015 -11.847080 -8.336197 5.686737 8.985134 7.196872 -7.549939 -1.614747 -1.479923 -0.099100 -0.791619 0.029780 3.264503 0.077928 -7.464237 -2.137236 7.861545 17.488161 -3.601310 -2.668732 6.057009 3.873459 -2.568258 -9.301590 -3.957991 -5.660168 1.095450 3.511571 -0.029952 5.102882 11.797828 -12.636750 8.039785 -0.367650 -0.211261 6.263417 1.611078 -8.261619 -8.338284 -1.640643 7.181791 10.334762 -1.783805 1.430704 1.800455 -7.855392 -0.756279 2.130819 0.654092 -1.645526 3.593287 -0.108014 -5.500053 -5.724436 1.178647 -3.674585 -2.750025 -1.841675 5.237880 2.571311 -9.257539 9.999257 0.231482 -2.518417 1.861400 -3.189349 8.861852 -7.876102 -9.498179 6.074609 -1.593666 -3.284127 -3.065202 1.624180 5.627322 3.336757 2.361579 -4.533276 -9.859415 6.222359 -1.618028 7.447511 3.436634 0.471058 4.490585 1.648468 -2.845522 -7.620853 -6.997853 0.273318 0.500767 -8.675620 -3.709178 -2.173079 9.095823 6.773649 -0.344754 -7.435489 -1.585297 9.216426 -7.424703 -2.599146 6.611974 1.090588 -9.380270 0.683780 8.158405 -9.366031 -0.674932 -4.527006 0.873075 -3.561487 -8.142757 3.530273 0.667461 4.441525 0.972659 0.647321 -0.610283 2.950083 3.714955 1.283634 0.845885 11.789831 6.092234 -2.640484 -1.506430 -9.008796 3.598917 -11.511272 -11.100055 4.794090 0.916046 -6.482697 0.957710 1.175182 8.653055 0.527217 1.075644 -1.858668 0.198253 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/vertex-cover-problem.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/vertex-cover-problem.cpp__main = -1.673450 -0.254502 2.264042 -4.082078 3.252036 2.546969 1.477979 -0.936709 -4.388217 -1.933062 0.607556 -4.733732 -2.933114 5.530257 -1.964826 1.562877 7.073940 1.895985 -2.008580 -0.697567 3.423693 -0.314966 6.218160 5.868840 -4.217106 -0.087455 -0.359584 2.917879 0.428041 3.436074 -0.347364 -3.781951 1.779500 -1.287469 0.233774 -3.124756 0.255618 0.708687 0.211819 -7.358365 1.073887 1.751694 -0.181091 -1.177835 -0.277808 1.236918 4.769178 3.932598 -0.541082 0.734906 2.715202 1.750896 -0.070122 1.261758 1.521597 0.341096 1.767279 -1.380759 -2.458536 -1.228918 -1.170445 -2.637991 -0.248612 4.447809 5.272009 0.994475 -0.255560 0.345294 0.032257 1.466673 1.839948 0.883483 0.683736 0.972167 1.852891 -2.467625 0.054803 -5.899743 -0.481789 -8.259397 -3.072008 -1.252743 4.336223 2.437672 0.948993 -1.223973 4.960213 -0.736110 -0.088884 3.806030 6.128004 -3.348273 -2.066266 -3.053824 -2.592992 1.723673 -2.300246 0.046716 0.533607 1.140082 -4.028126 -2.052675 1.083721 0.739204 -1.679935 -0.657616 0.448464 4.498063 -4.849187 -1.568050 -2.216021 2.882986 0.507005 -6.846473 -2.115011 -2.661595 2.339667 0.619803 -2.166459 -2.742683 1.584874 2.161034 -1.731087 -0.832420 -3.163889 4.158335 1.215463 0.628789 0.255618 0.662879 0.951805 4.703157 1.968292 -2.645602 0.308143 0.281940 -1.530457 0.645509 -2.932568 -1.287210 0.534540 -3.882875 0.573875 2.696843 -3.056774 -1.699721 -1.250383 0.318130 2.039994 12.633008 -0.966612 4.461909 2.578236 -4.668376 2.096802 -0.685421 -0.446821 0.717874 2.507604 1.359426 -4.450476 -4.001666 2.761731 5.066044 3.624793 -3.854703 0.465804 -1.022497 -0.233517 -0.497833 0.951878 1.184935 -0.283612 -3.398442 -1.396305 2.945622 7.884986 -1.275262 -4.164890 1.920568 1.213956 -0.555385 -2.944412 -1.210399 -0.518666 0.709719 1.769349 -0.486987 2.801384 6.095332 -8.318032 4.733159 0.021242 -0.733236 3.715003 0.233674 -2.977677 -3.735075 -0.799646 3.869212 5.666423 0.094118 -0.523940 0.688012 -4.388029 -0.656141 0.997559 1.609987 -1.562184 2.225411 0.972812 -3.138429 -2.846567 -1.862312 -0.991576 -0.575182 -1.856220 2.517518 0.485333 -7.610752 5.300122 0.088671 -1.115907 0.189796 -1.073132 3.258137 -4.221043 -5.273675 2.158277 -0.983745 -3.486964 -2.183391 0.204690 3.085685 0.861694 1.499647 -2.662384 -4.629806 4.152771 -0.854410 4.135147 1.931586 0.639055 3.944979 1.949433 -1.422187 -3.097838 -3.106724 1.930414 -1.003362 -3.236059 0.212242 -1.508508 3.847275 4.400019 -0.295114 -2.783012 -1.074677 5.251351 -3.163122 -1.659237 3.449064 0.229609 -3.112069 2.006569 4.262398 -4.624064 -1.527016 -2.918972 -0.714252 -1.534909 -3.668340 2.160175 -0.999779 1.893772 1.168760 0.378832 -1.789413 1.641236 1.146931 -0.174517 0.759418 5.992438 4.845963 -2.019153 1.350024 -4.186628 2.595302 -5.944934 -4.661534 1.279342 -0.566441 -2.367518 0.517355 -0.481502 3.882492 0.322998 0.056598 -1.219346 0.794124 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/vertex-cover-problem.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.635914 0.463864 1.281313 -1.462158 1.598193 0.803151 0.621960 -0.379792 -1.207862 -0.889649 -0.090438 -1.247632 -1.502538 2.052717 -0.913442 0.449066 2.826967 0.715392 -0.376096 -0.722316 1.719090 -0.965348 2.683612 2.293182 -2.311495 -0.089599 1.034875 1.310367 0.657217 1.724008 -0.798546 -1.297871 0.923368 -0.778152 0.858821 -1.618381 0.331412 -0.170577 -0.167327 -2.948905 0.163859 -0.161612 -0.420037 -0.168808 -0.244682 1.575813 2.327489 1.661661 -0.921072 0.265226 1.493855 0.538721 -0.136404 0.628223 0.389403 0.260891 1.133152 0.563407 -0.970616 -0.305996 -0.552812 -1.754975 0.211331 1.968153 2.505407 0.141780 0.265884 0.522154 -0.235080 0.488962 0.456662 0.488527 0.751187 0.550087 1.314212 -1.923971 -0.060402 -3.832157 -0.665460 -4.906716 -1.243008 -1.494420 0.913026 -0.641079 0.757922 -0.076682 2.226840 0.361814 0.508450 1.227660 2.731051 -1.790356 -0.771060 -1.580789 -1.098448 0.634437 -1.226038 0.128313 0.919292 -0.147080 -1.562868 -1.543319 0.811336 0.379780 -0.702250 -0.682223 -0.317414 1.898663 -2.080096 -0.822783 -1.866792 0.001061 -0.235571 -3.093815 0.043789 -1.057601 2.067265 0.212480 -0.264556 -1.475933 0.452657 1.815523 -0.661254 -0.861077 -0.557000 2.108963 0.921483 0.114429 0.303616 -0.075653 0.262633 1.805394 2.160797 -0.859695 -0.565026 0.147179 -1.500766 -0.147067 -1.624848 -0.309320 1.503039 -1.644511 0.185635 1.251623 -1.122753 -0.583255 1.541843 -0.606574 1.481378 5.220425 -0.453654 1.372586 0.525053 -2.241049 1.041639 -0.132518 -0.347712 0.682780 1.457097 0.688143 -2.433908 -1.695378 0.935097 1.901794 1.311050 -2.309792 -0.688919 -0.902133 -0.034532 -0.276003 -0.107319 0.694784 -0.576076 -1.247462 -0.496023 0.952754 3.137521 -1.136182 -2.216293 0.801763 0.490957 -0.690794 -2.055872 -0.648578 -0.552538 0.232256 0.279081 -0.307540 1.121586 2.522139 -4.539029 1.823714 -0.461042 -0.670701 1.586730 -0.072012 -0.751829 -2.188624 0.528494 1.896703 1.925821 0.379227 -0.191020 0.204749 -1.860791 -0.036760 0.100837 1.205356 -0.681087 0.886537 0.420819 -1.693018 -1.747205 -0.885235 -0.111533 -0.571336 -0.363916 0.825574 -0.113187 -4.427910 2.441753 -0.512168 -0.621039 0.485853 -0.309114 1.169971 -2.046662 -2.539525 0.918355 -0.264769 -0.949952 -1.392181 0.186804 1.459229 -0.023541 0.302694 -1.208110 -2.699489 1.289880 -0.637092 1.270232 0.804454 0.960973 2.579906 0.331519 -0.823704 -2.117206 -0.485306 0.612659 -0.564980 -1.328853 -0.450454 -0.457063 1.691522 2.464456 -0.214696 -0.150291 -0.319332 2.243547 -2.147444 -0.960212 1.623656 1.346478 -1.080595 0.863950 1.755701 -1.848903 -1.462981 -1.118484 -0.581509 -0.199092 -1.786679 0.727021 -1.248708 0.567313 0.897780 0.283853 -0.808235 0.945648 0.269613 0.285445 -0.222459 2.273447 3.444153 -1.786833 0.217733 -1.599584 1.078187 -2.850929 -2.041919 0.506798 -0.163476 -0.402095 0.497336 0.216767 1.499899 -0.082625 -0.130324 -0.250058 -0.421446 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.650706 1.567372 2.280989 -2.983972 4.924957 2.762123 2.013060 -1.113980 -2.480392 -2.396289 -0.310901 -3.063355 -4.275604 5.316166 -1.999803 2.380266 6.959788 1.239636 -0.500672 -1.177404 4.935131 -2.857504 7.192676 5.071574 -5.752195 -0.207895 2.593519 2.558941 0.468686 4.657625 -2.159103 -3.948811 3.297978 -3.209615 1.802986 -3.619760 0.953896 -0.656002 0.224035 -6.872405 0.186864 -0.273736 -1.586412 -0.420407 -1.304945 2.907742 6.241337 4.392200 -2.396417 0.853138 3.285783 0.573049 -0.342453 2.136320 0.980405 0.967811 1.374731 1.187555 -3.214499 -1.159111 -1.890106 -4.963877 0.432809 4.596973 6.263118 0.032022 0.886518 2.708407 -1.918988 1.218749 0.934463 1.374598 2.237044 0.877559 3.999904 -5.119640 -1.278690 -9.046245 -2.823949 -12.268106 -3.406177 -4.209354 1.272106 -1.517667 3.332661 -0.319563 5.695496 0.974605 1.284478 3.019738 7.377012 -5.615081 -2.063487 -4.625995 -2.071562 0.930752 -3.420997 0.111889 2.940394 -1.659160 -4.270607 -4.354659 2.267624 1.402499 -1.456186 -3.583413 -1.075763 5.028590 -5.261597 -3.202089 -5.322424 -0.703434 -1.695606 -8.170906 0.565369 -1.292551 4.684111 1.049213 -0.111125 -4.653323 1.456412 5.344844 -1.426822 -3.829904 0.438283 5.497886 2.647063 0.674538 1.609162 0.194763 0.564965 5.921240 6.895107 -1.301965 -1.785182 -0.168364 -3.423354 0.249273 -3.250553 -1.028805 3.124998 -4.857885 0.180574 4.070173 -2.607780 -0.911731 4.083277 -1.600968 4.030087 12.455579 -1.237641 3.444725 1.139346 -6.397019 3.034949 -1.164282 -1.134284 1.464235 3.795217 1.688809 -6.475713 -4.401456 2.914710 4.514195 3.286061 -6.357697 -2.170002 -2.690032 0.756700 -1.071633 -0.982846 2.582771 -0.556174 -3.602503 -0.867302 2.488219 8.685601 -4.259521 -5.305028 3.382827 1.086933 -1.591783 -6.257775 -2.466450 -2.488671 0.011412 0.829577 -0.892422 2.003485 6.506519 -9.778941 4.438499 -1.900850 -2.097265 4.097099 0.104790 -1.864912 -5.529529 1.163674 5.270310 4.414616 1.117780 0.105923 -0.186912 -4.546434 0.376855 0.124570 2.918528 -1.055896 2.201782 -0.022251 -4.644537 -4.950241 -1.871032 -0.394363 -2.054874 -0.314482 1.934037 0.973964 -10.732516 6.364314 -1.275580 -1.932213 1.945550 -0.055278 4.068971 -4.732752 -7.104567 3.067623 -1.447310 -2.356395 -3.121952 0.952021 3.289272 0.722880 -0.335716 -2.476883 -7.231763 3.333208 -0.850085 3.195386 2.030909 3.169085 7.141443 0.560378 -3.464232 -5.562193 -2.116496 1.143256 -1.714361 -3.664344 -2.556135 -1.007224 4.997433 6.238059 0.114847 -0.396839 -1.420209 5.549174 -6.654250 -2.026226 5.281559 4.272763 -3.265422 1.541570 5.276570 -4.129249 -4.083779 -2.351917 -0.479049 -0.954632 -5.042350 0.954578 -3.524037 1.093328 2.366966 0.662233 -1.784501 2.010925 0.825883 1.317156 -1.737520 5.741298 8.365686 -5.522587 -0.434453 -3.729667 2.464038 -7.420249 -5.674196 1.987493 0.540649 -0.832928 1.310698 1.615921 3.581709 -0.550836 -0.914796 -0.533250 -2.426021 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/vertex-cover-problem.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/vertex-cover-problem.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/vertex-cover-problem.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__fact(int) = -0.553355 -0.902562 -0.369121 -1.365595 0.945256 0.139502 0.473749 -0.699363 -1.611882 -0.076040 0.708253 -1.450633 0.153286 1.454311 -0.281000 1.384168 1.584660 0.292380 -0.682206 -0.314547 1.170375 -0.354047 1.354240 1.384053 -0.826704 0.023059 -0.552866 0.215193 0.039946 -0.043971 0.187568 -0.616556 0.491311 -1.199099 -0.276998 -0.559526 -0.003141 0.855549 1.425986 -1.627895 0.461109 0.161723 0.707952 -0.337605 -0.423699 0.100508 0.473461 0.931520 -0.165751 0.739394 0.944191 0.015168 -0.062027 0.260531 0.432798 0.302336 0.009287 -0.134324 -0.508880 -0.469852 -0.210898 0.284495 0.450125 0.869889 1.105561 0.020090 -0.236033 0.772510 0.592773 0.347033 0.958484 0.161619 -0.529827 -0.505413 0.302524 -1.628605 -0.186953 -2.367290 -0.066775 -2.520134 -0.793239 0.638938 1.327799 0.095502 0.460183 0.004049 1.183879 -0.232906 -0.694209 0.939466 1.087759 -0.792783 -0.548476 -0.435640 -0.826715 0.189752 -0.196667 0.029569 0.955125 0.504891 -1.050336 -0.161148 0.456669 0.316262 -0.356263 -0.958078 0.561932 0.900332 -0.684552 -0.846493 0.509292 1.607579 -0.052475 -1.441196 0.253323 -0.942322 0.062683 -0.029982 -0.770197 -0.775464 0.134296 0.029937 -0.711548 -0.141052 -0.697499 0.607018 0.584750 0.712324 0.066318 0.289621 0.196084 1.712312 -0.306097 -1.158343 0.343118 0.044300 0.246254 0.809093 -0.653682 -0.829816 0.348047 -1.120916 0.439511 0.224670 -0.703161 -0.245700 0.814755 0.749275 -0.166717 2.725623 0.038742 1.663196 1.134078 -0.823612 0.505311 -0.402695 0.397232 0.400720 0.700402 -0.499378 -0.888392 -1.301767 0.791834 1.191155 0.960869 -1.029732 -0.844812 0.084552 -0.208086 0.307691 -0.057708 0.119915 0.078081 -0.699667 -0.212987 0.679088 2.144805 -0.180060 0.372004 0.547122 1.033956 -0.390362 -1.144814 -0.638066 -1.492622 0.260944 0.110684 0.339829 0.828853 1.554088 -2.241122 1.042084 -0.304584 0.358763 0.624654 0.659053 -1.252725 -2.333852 -0.829900 0.349292 1.421391 -0.653661 0.428281 0.764837 -0.883728 -0.029265 0.125042 -0.344876 -0.447926 0.372786 -0.177364 -0.358652 0.041383 0.652518 -0.723755 -0.101004 0.039765 0.836997 0.781559 -1.309522 0.731747 0.146057 -0.373884 0.294988 -0.195158 1.319318 -0.620022 -0.718446 0.645379 -0.083234 -0.195240 -0.417051 0.219728 0.600136 -0.418840 0.430774 -0.438391 -0.699292 0.941161 -0.668188 1.119597 0.515576 -0.648322 0.293859 -0.552379 -0.432702 -0.632089 -0.823521 -0.303175 0.020630 -0.858285 0.178467 -0.238510 0.951692 0.374666 0.511874 -1.159393 0.345263 1.106256 -0.837074 -0.000909 0.860606 -0.209139 -1.105426 0.478678 1.093788 -1.261979 0.467032 -0.704231 0.140537 -0.541655 -0.437784 0.969273 0.776491 0.676033 -0.654312 0.129704 0.331253 0.665475 0.631209 0.249081 0.295993 1.600819 0.633871 -0.001631 -0.576283 -1.070892 0.336456 -0.999420 -1.177944 0.395633 0.585377 -1.344728 0.044970 -0.132324 1.400154 0.147763 0.050712 -0.433785 0.572161 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findSmallerInRight(char*, int, int) = -1.267298 -1.440341 -0.674331 -2.657978 1.483756 1.979863 0.838543 -1.829273 -3.061926 -0.078333 1.173125 -2.606815 0.114041 3.193690 -1.047795 3.071451 3.859445 0.712935 -1.740363 -0.213501 3.486878 -0.631414 3.830969 3.435057 -2.275151 -0.355518 -0.008572 1.574606 1.015025 0.637037 0.136342 -0.701685 1.274902 -3.732249 -1.008099 -2.297526 0.602642 1.392725 2.782362 -3.897865 0.817993 -0.221023 0.631156 -0.819729 -1.104493 -0.308117 1.385958 2.553119 -0.386147 0.869995 2.322577 0.390698 -0.392280 0.724737 0.571649 1.040267 0.379104 0.104131 -0.818044 -1.551163 -0.178106 -0.660652 1.067583 2.527646 3.263937 0.372303 0.054917 2.091838 0.609481 0.550678 1.821311 0.375786 -1.593027 -0.194647 1.081540 -4.345590 0.171857 -4.352798 -0.598904 -4.405351 -1.233449 0.364398 1.486444 -0.084974 2.100151 0.701573 2.542873 -0.789834 -0.937742 2.706079 2.617790 -2.726807 -1.184393 -1.691984 -1.649349 0.832589 -1.508570 0.051224 1.462704 0.740385 -2.144095 -1.313195 0.955807 1.784812 -0.998806 -2.227574 0.696852 2.143740 -2.290109 -2.716693 0.443048 2.133301 -1.290202 -4.171767 -1.030767 -2.448891 1.591100 -0.257728 -0.904657 -2.970280 0.265479 1.744394 -0.430344 -1.756514 0.052093 1.345843 1.392237 1.129621 0.084300 0.124579 0.323781 4.776516 0.956009 -1.749731 0.316499 0.123540 -1.024862 1.201292 -1.842660 -1.557971 0.551330 -3.021481 0.328420 2.462176 -1.518911 -0.460421 2.800495 1.339006 0.663022 9.668644 0.440386 3.514895 2.705248 -2.620139 0.622158 -1.071099 0.443188 1.132593 0.937906 -0.346100 -4.655084 -2.603255 1.337366 2.647495 2.145417 -2.921104 -1.305483 -0.567248 -0.098102 0.431746 -0.541244 0.622162 -0.173026 -2.170883 -0.576432 2.052334 5.513191 -1.285199 0.319702 1.671349 0.852213 -2.206662 -3.755170 -1.419319 -2.416724 0.602515 0.434749 0.141274 1.488545 3.394945 -3.694317 2.341978 -0.720982 0.213480 2.001079 0.959985 -2.788233 -3.183310 -0.959388 1.388824 2.994245 -1.335357 0.503231 1.507341 -2.458005 -0.176214 0.614250 -0.185032 -0.575363 1.081912 0.561873 -1.311561 -1.343052 1.619689 -0.702557 -0.848659 0.209569 1.851098 -0.262517 -2.992005 2.296819 -0.027469 -1.088298 1.145767 -0.620633 2.572312 -2.514690 -2.523730 2.144932 0.409630 -0.160012 -1.189652 0.642757 2.059340 1.004707 0.668374 -1.686806 -2.871563 1.396891 -1.410653 2.032831 1.015831 -0.437219 1.278910 -1.604329 -0.505052 -3.093656 -1.305084 -1.298640 0.344849 -2.727743 -1.520632 -0.428361 2.951779 1.838091 0.280548 -2.038543 0.719281 3.174140 -2.524747 -0.658191 1.647791 1.898892 -3.238974 0.228546 2.128340 -3.328303 0.260991 -0.806484 -0.327862 -0.711717 -1.998771 2.058328 0.730386 1.966521 -0.322656 0.711191 0.518301 1.211188 1.270581 0.956953 0.638471 3.641219 2.397114 -0.384687 -1.565300 -2.668210 0.897899 -3.210230 -3.306888 1.357553 0.967299 -2.242151 0.614534 0.719903 3.465137 0.800943 -0.140834 -0.172406 -0.000588 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -1.522000 -1.989857 -0.625000 -3.582245 2.437066 1.443663 1.345974 -2.188111 -4.229212 -0.181695 1.922055 -3.804021 -0.216236 4.171447 -1.216556 3.908634 5.344871 0.903451 -1.995650 -1.158894 4.488946 -0.983296 5.483339 4.930259 -3.296396 -0.237440 -0.366993 1.930528 1.568682 0.050842 0.025706 -1.171230 2.112306 -4.719674 -1.085222 -2.789082 0.681064 1.769163 4.300415 -5.233500 1.066393 -0.789124 1.091713 -0.893718 -1.394703 1.566257 1.930707 3.324293 -0.908152 1.790182 3.704731 0.065375 -0.527600 1.020874 0.686999 0.673535 0.821228 0.910871 -1.252489 -1.633223 -0.262754 -0.655372 1.099537 3.181037 4.820082 0.196286 -0.250612 2.691070 1.250084 0.764009 2.596826 0.519035 -0.761381 -0.588700 1.789248 -6.064393 -0.595976 -8.567393 -1.024255 -8.253869 -2.208384 0.575903 3.118270 -1.749062 2.111315 0.499557 3.287560 -0.102912 -1.430105 3.256201 3.596042 -3.332617 -1.783573 -1.866202 -2.115006 1.163466 -1.931188 0.736665 2.838925 0.761252 -3.163198 -1.860075 1.997060 1.552873 -1.321041 -3.079711 1.065110 2.869036 -2.407673 -2.929652 0.266816 3.159258 -0.837251 -5.553734 0.165089 -3.365394 3.029586 -0.111332 -1.317848 -2.899860 0.120080 1.451236 -1.387444 -1.820493 -0.581326 2.406258 2.298096 1.995249 0.231368 0.448200 0.711134 6.112240 0.643191 -2.798658 0.341167 -0.124359 -1.277947 2.095877 -3.155850 -1.946248 2.530237 -3.476590 1.077269 2.001552 -2.062129 -1.053193 5.234958 1.829446 0.556861 11.398160 0.709625 4.955848 3.595206 -3.026092 1.469154 -1.615573 0.848373 1.768989 1.903339 -0.864050 -5.917729 -3.642517 1.866256 3.453789 2.774980 -5.098715 -2.619328 -0.319966 -0.074065 0.114107 -0.541866 0.861235 0.052190 -2.444591 -0.638510 2.993191 7.476414 -1.583196 0.276171 1.740931 2.010289 -2.123747 -5.272057 -2.050017 -2.816490 0.890025 0.467448 0.886760 2.341783 4.570799 -7.378973 2.831374 -0.929238 0.556532 2.508334 1.759104 -4.413425 -5.714403 -1.011836 1.512545 4.096932 -0.857626 1.096981 2.311117 -3.185594 -0.208994 0.423031 -0.437077 -0.793168 1.251170 0.357773 -1.476072 -1.471332 1.510788 -1.416513 -0.694594 0.373541 2.632328 0.731806 -5.812382 2.734007 -0.330208 -1.627818 1.073325 -1.255780 3.943569 -3.127660 -3.031054 2.440718 -0.152565 -0.587575 -2.433899 1.061666 2.227560 0.058930 1.573511 -2.013152 -3.930840 2.582997 -2.260260 2.766503 1.474366 -0.828414 1.929842 -2.234394 -1.019223 -4.439435 -1.648354 -0.877026 0.254082 -3.818970 -0.709529 -0.648165 3.384452 2.291439 0.489452 -2.815648 0.682895 4.070486 -4.470378 -0.948350 2.477504 3.134326 -3.944871 1.368466 3.074917 -4.677334 0.478922 -1.558013 -1.032745 -0.923240 -2.418824 2.786061 1.202122 2.446900 -0.826749 1.035759 0.788875 1.964126 1.289351 1.023915 0.519948 5.249495 5.381843 -0.988117 -2.134737 -3.846913 1.352708 -4.058671 -4.882414 1.881947 0.747725 -3.607895 0.707546 0.791706 4.787313 0.796709 -0.399131 -1.085612 0.778785 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = -0.330866 -0.219549 0.299844 -0.974877 0.844293 0.243029 0.440875 -0.207357 -1.267167 -0.512210 0.407558 -1.508295 -0.706147 1.380597 -0.382126 0.607518 1.767826 0.366256 -0.470508 -0.334114 0.864972 -0.320005 1.673562 1.571689 -1.105966 0.085359 -0.293157 0.604995 0.181467 0.575405 0.004193 -0.939555 0.551350 -0.553348 0.052232 -0.681263 0.038682 0.230866 0.426669 -1.874506 0.253915 0.546937 0.406479 -0.274612 -0.134238 0.768574 1.108230 0.996241 -0.219900 0.516629 0.901285 0.061210 0.088640 0.305755 0.383858 -0.123915 0.484005 -0.174151 -0.761976 -0.221479 -0.204135 -0.701229 -0.096066 1.038124 1.471896 0.062904 -0.158467 0.235850 0.112965 0.372581 0.625185 0.243210 0.265685 0.046545 0.592158 -0.790269 -0.084054 -2.057866 -0.188252 -2.964713 -0.918600 -0.131444 1.533774 0.314613 0.187740 -0.359608 1.218662 -0.018036 -0.188842 0.918083 1.506491 -0.787279 -0.639497 -0.611614 -0.583342 0.494409 -0.615060 0.086551 0.694080 0.263860 -1.101864 -0.342718 0.555825 0.117971 -0.439552 -0.244571 0.169163 1.002359 -1.171986 -0.408802 -0.486572 0.756941 0.295579 -1.791258 -0.040126 -0.615122 0.507181 0.272035 -0.566234 -0.456117 0.298962 0.218247 -0.559842 -0.117562 -1.069354 1.131978 0.334037 0.476545 0.208590 0.342701 0.407337 1.307461 0.265481 -0.781234 0.092673 0.013924 -0.299955 0.485605 -0.763336 -0.533496 0.572103 -0.993086 0.340484 0.265507 -0.770577 -0.435662 0.125901 0.294062 0.311175 2.850150 -0.079740 1.433650 0.799616 -1.015182 0.710811 -0.321159 -0.012893 0.255039 0.739527 0.125525 -0.905305 -1.033534 0.728344 1.291249 0.884970 -1.277296 -0.169658 -0.027285 0.032248 -0.088598 0.243854 0.319169 0.145554 -0.816994 -0.268705 0.813580 2.156179 -0.293907 -0.654835 0.416825 0.505852 -0.116701 -1.037258 -0.331692 -0.311762 0.231767 0.118042 0.102245 0.710972 1.518495 -2.543463 1.161504 -0.038097 -0.032519 0.976847 0.181035 -1.093203 -1.714712 -0.258787 0.758544 1.439097 0.085944 0.024915 0.355436 -1.067405 -0.144813 0.123085 0.153536 -0.365179 0.538862 -0.002985 -0.593578 -0.605349 -0.442701 -0.352255 -0.010867 -0.364526 0.722741 0.609437 -2.138449 1.133057 -0.056337 -0.491521 -0.150863 -0.246014 0.823558 -1.051829 -1.160415 0.405815 -0.502002 -1.054153 -0.782400 0.045100 0.502210 -0.070875 0.290648 -0.475828 -1.100005 1.292770 -0.467791 1.033272 0.557684 -0.080314 0.926219 0.492012 -0.482495 -0.831120 -0.639622 0.278232 -0.518174 -0.880608 0.409398 -0.396599 0.873138 0.964680 0.079683 -0.732386 -0.151791 1.262776 -0.886667 -0.525552 0.936013 0.105404 -0.801644 0.761524 1.121525 -1.313710 -0.080641 -0.899168 -0.341260 -0.375370 -0.791269 0.618951 -0.067076 0.472676 0.115226 0.073021 -0.311713 0.497504 0.185821 -0.130691 0.055027 1.723467 1.523678 -0.596265 0.217019 -1.203494 0.599758 -1.396899 -1.353467 0.371749 0.089234 -0.929234 0.088377 0.067213 1.045143 0.162827 -0.256782 -0.584302 0.465800 +PE-benchmarks/dfs.cpp__Graph::Graph(int) = -1.065045 -1.091240 0.397794 -2.880868 1.590059 1.126466 0.776590 -1.114850 -2.235303 -0.333864 1.324552 -1.360350 -1.092358 2.626712 -0.833288 1.475699 1.540103 -0.373644 -1.636414 -0.870990 2.513151 -0.978867 2.524549 1.468141 -2.523991 -0.288118 -0.348416 1.965832 0.763159 1.367521 0.353198 -0.049643 -0.269311 -0.934801 0.398762 0.069996 0.481554 0.487506 0.436485 -2.241242 0.554423 1.325369 0.997471 -0.619996 -0.761149 -0.442517 0.942338 2.202528 -0.172108 0.028468 2.385248 -0.212172 0.254844 0.396161 1.091862 0.104403 1.751852 -0.147152 -0.354071 -1.191988 -0.287479 -0.473503 0.887398 2.135641 2.535853 -0.430207 0.000705 1.018199 0.306452 1.410213 1.672500 0.332332 -1.194381 -0.648243 1.663784 -1.357908 0.333545 -2.394678 0.219915 -2.413931 -1.298022 0.206216 1.609627 0.843997 1.033075 -0.034750 2.249198 -0.040309 -1.122410 0.612685 1.333885 -0.613173 -0.760558 -1.308962 -1.725243 0.556193 -1.206310 -0.309625 0.768066 1.323558 -1.732910 0.551646 0.098295 0.998993 -1.158708 -0.611942 -0.292426 1.767619 -1.042306 -0.964747 0.473405 2.254369 -0.333811 -3.206310 -0.858204 -2.341069 -0.197264 -0.902446 -0.012082 -0.444756 0.158106 1.153668 -0.716948 -0.755397 -1.738925 1.345506 1.306281 0.662071 0.108552 0.217000 -0.035735 1.855967 0.307743 -1.159696 -0.664373 0.187220 -0.430331 1.204961 -0.557106 -0.530067 0.523422 -1.505518 -0.003106 0.517016 -0.424573 -0.342089 -0.073026 0.838113 0.543622 5.068871 -0.082308 2.282733 1.133219 -1.190609 1.033270 0.361715 0.382397 1.041877 0.874645 -0.985705 -1.441420 -2.059728 1.419178 1.784429 1.367234 -1.474311 0.167936 0.035512 -0.403690 -0.223470 -0.000430 0.289518 -0.232934 -1.315802 -0.611928 0.798850 3.012731 -0.651842 -2.021661 1.680521 1.186984 -1.618526 -1.404103 -0.755178 -1.279045 0.145343 -0.164566 0.190063 1.598327 2.504372 -2.521467 1.790185 0.073067 -0.349956 2.237067 -0.888105 -1.281493 -2.847615 -0.443117 0.233535 2.158615 -1.008885 -0.723917 0.786472 -1.919088 0.457762 -0.023938 -0.389713 -0.416701 0.986191 -0.699792 -0.522282 -1.071287 -0.750912 -1.111881 0.803972 -0.730959 0.868065 -0.103306 -2.042772 1.708602 -0.314217 -0.592377 0.148617 -0.107267 1.681541 -1.155550 -1.580943 1.102367 0.064346 -0.670224 -1.975229 0.390720 1.331388 0.007606 0.172596 -1.605902 -0.834893 1.423365 -1.842129 1.736998 0.873465 -0.303459 0.438122 1.510713 -0.286050 -1.386871 -0.637055 -0.261359 0.226648 -2.254418 -0.422969 -0.642164 1.821266 0.574819 0.202792 -0.753679 -0.188155 2.553901 -0.801211 -1.332272 0.844582 -1.008693 -1.756873 1.136931 1.594767 -1.346824 -0.107038 -1.598584 -0.262419 -1.243429 -2.015561 1.879096 1.106354 1.912102 -0.495679 0.887995 0.123995 0.569985 0.673676 -0.067161 -0.257990 3.177373 1.193679 -0.938137 -0.923121 -2.208999 1.318985 -1.535737 -1.358586 0.776772 -0.035305 -1.028146 0.538028 -0.298880 2.454892 0.663988 -0.151995 -0.460183 0.048109 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/dfs.cpp__Graph::addEdge(int, int) = -0.454251 0.014732 0.737724 -0.972307 0.719048 0.751984 0.286951 -0.568509 -0.833791 -0.270499 0.082470 -0.896132 -0.548274 1.184565 -0.622334 0.471466 1.539444 0.427119 -0.479657 -0.309499 0.865459 -0.210421 1.524448 1.421868 -1.094266 -0.095007 0.365177 0.856315 0.366998 0.911859 -0.474065 -0.587194 0.393821 -0.510509 0.172924 -0.832434 0.104214 0.100763 0.198484 -1.615454 0.160191 -0.052453 -0.142967 -0.165116 -0.075904 0.326587 1.103486 0.915913 -0.068903 0.141988 0.711291 0.390920 0.023148 0.270416 0.445985 0.306988 0.924477 -0.053131 -0.387082 -0.300005 -0.285318 -0.606537 0.108261 1.167968 1.311503 0.248529 0.019658 0.132022 0.034350 0.220839 0.354740 0.299018 -0.099247 0.520522 0.387399 -1.133039 0.468517 -1.526948 -0.185959 -1.624686 -0.612468 -0.443547 0.404118 0.108856 0.526793 0.056515 1.238147 -0.029719 0.015189 0.495658 1.422202 -1.070540 -0.401346 -0.576858 -0.599566 0.240514 -0.599605 0.101817 0.072012 0.217476 -0.847853 -0.683135 0.429039 0.374255 -0.429581 -0.077093 -0.010372 1.019889 -1.089876 -0.604593 -0.599520 0.263622 -0.221227 -1.669155 -0.319942 -0.782149 0.944887 0.009974 -0.426294 -1.047607 0.348574 0.935671 -0.272332 -0.425461 -0.493371 0.928113 0.524029 0.026143 -0.065022 -0.014139 0.151247 1.239612 0.698412 -0.590751 -0.053584 0.100201 -0.742685 0.011652 -0.758564 -0.206041 0.205106 -0.941423 -0.022334 0.882624 -0.662793 -0.125993 0.428439 0.012067 0.577855 3.354099 -0.293393 0.896381 0.533574 -1.216236 0.386493 -0.142657 -0.047121 0.254260 0.537465 0.389814 -1.655034 -0.963328 0.618786 1.179090 0.758463 -1.056510 -0.124293 -0.394841 -0.071765 -0.070947 0.100419 0.264635 -0.361278 -0.717938 -0.339809 0.546513 1.880693 -0.527294 -1.090521 0.422884 -0.085707 -0.376152 -0.967412 -0.337365 -0.233656 0.212137 0.176298 -0.070018 0.629806 1.382166 -2.073271 1.079765 -0.177932 -0.403914 1.186560 -0.056876 -0.568270 -0.704173 0.003596 0.925696 1.081285 -0.007391 -0.187303 0.234428 -1.096552 -0.119598 0.119038 0.557740 -0.477375 0.555793 0.535116 -0.981104 -0.798941 -0.350340 0.003859 -0.381989 -0.375710 0.597345 -0.309046 -2.042930 1.291191 0.062449 -0.275016 0.364273 -0.286141 0.636042 -1.128742 -1.245923 0.550594 -0.053018 -0.328843 -0.525010 0.048870 0.779591 0.147165 0.357933 -0.935953 -1.111113 0.570698 -0.359412 0.836117 0.408109 0.311575 0.919589 0.114779 -0.242586 -0.918799 -0.317622 0.227053 -0.076549 -0.771479 -0.253344 -0.276032 1.017717 1.198326 -0.119514 -0.293843 -0.100879 1.209096 -0.957608 -0.364021 0.666630 0.512789 -0.829413 0.195930 0.806882 -0.994268 -0.518365 -0.478781 -0.497277 -0.331114 -0.905421 0.603949 -0.399135 0.487806 0.330245 0.134013 -0.377564 0.466565 0.239347 0.128229 0.276984 1.278304 1.380350 -0.438043 0.124082 -1.015523 0.609952 -1.459528 -1.072124 0.343748 -0.103585 -0.470185 0.143912 0.015477 0.999450 0.159948 -0.046817 -0.062838 -0.077551 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::push_back(int const&) = -0.393401 0.422519 1.031386 -1.031333 0.911656 0.566330 0.289656 -0.279628 -0.773459 -0.525266 -0.148460 -0.897224 -0.903899 1.280504 -0.616633 0.073999 1.790952 0.501754 -0.302807 -0.413763 0.851887 -0.381816 1.574160 1.505993 -1.357415 -0.030149 0.664674 0.861908 0.356394 1.202490 -0.612930 -0.953458 0.365006 -0.118637 0.544261 -0.984653 0.119830 -0.152330 -0.193692 -1.907424 0.155767 -0.015483 -0.204815 -0.182168 -0.031300 0.779597 1.547288 0.969966 -0.421378 -0.029383 0.874053 0.620141 -0.097963 0.297384 0.378952 0.174232 1.031777 0.169529 -0.481999 -0.155502 -0.293692 -0.832648 0.017336 1.302350 1.489585 0.233028 0.090516 0.007296 -0.041530 0.269086 0.155668 0.281825 0.394614 0.619241 0.531091 -0.970691 0.242467 -2.185488 -0.192089 -2.616972 -0.754199 -0.842108 0.533092 -0.078097 0.281471 -0.102190 1.382458 0.134932 0.371358 0.607444 1.754056 -0.984465 -0.436997 -0.858633 -0.801377 0.442703 -0.636845 0.104814 0.202661 0.027407 -0.937050 -0.945297 0.461861 0.185601 -0.488910 -0.001059 -0.093111 1.121425 -1.237884 -0.317652 -1.042174 0.074072 -0.001614 -1.868447 -0.179050 -0.785787 1.111922 0.056561 -0.349325 -0.966815 0.316298 1.033208 -0.484618 -0.318287 -0.754878 1.269090 0.517544 -0.075629 0.042366 -0.180365 0.280622 0.961390 0.974930 -0.665891 -0.209115 0.093297 -0.913571 -0.285879 -1.050647 -0.113064 0.664561 -0.889177 0.120973 0.784143 -0.762436 -0.322448 0.525266 -0.447182 0.868483 3.416189 -0.418630 0.818023 0.264811 -1.401633 0.626074 0.021844 -0.357153 0.243614 0.811920 0.630133 -1.440099 -1.010450 0.605399 1.272015 0.837819 -1.148896 -0.197742 -0.512979 -0.207236 -0.164074 0.156924 0.268295 -0.507400 -0.738695 -0.435400 0.615118 1.914148 -0.449047 -1.544312 0.355047 0.286026 -0.283268 -0.909225 -0.256530 -0.189793 0.222384 0.197102 -0.242304 0.853825 1.563733 -3.006717 1.193289 -0.108337 -0.541645 1.076828 -0.167630 -0.449786 -1.052387 0.368348 1.265526 1.273501 0.190920 -0.134402 0.039200 -1.167345 -0.168691 0.086990 0.810292 -0.584731 0.563585 0.487927 -1.173862 -1.013237 -0.690934 -0.063023 -0.385776 -0.485327 0.511122 -0.174620 -2.768394 1.648919 -0.130720 -0.191598 0.176767 -0.382907 0.517944 -1.317703 -1.511133 0.446208 -0.096081 -0.477232 -0.646495 -0.000830 0.949210 -0.083431 0.456571 -0.878972 -1.521547 0.725538 -0.311385 0.837731 0.488394 0.599123 1.310276 0.380108 -0.267713 -1.117797 -0.289140 0.571623 -0.237513 -0.781671 -0.017482 -0.380949 0.971460 1.535718 -0.270168 -0.175254 -0.264594 1.297858 -0.996112 -0.491824 0.806547 0.446839 -0.700777 0.378291 0.955423 -1.064124 -0.897462 -0.774836 -0.441146 -0.216755 -1.102292 0.437810 -0.726183 0.309425 0.667349 0.027998 -0.656052 0.586144 0.153043 0.024624 0.135450 1.306914 1.819926 -0.839331 0.431610 -1.036537 0.682646 -1.754411 -1.204426 0.264368 -0.371827 -0.333964 0.150210 -0.107557 0.890154 -0.132064 0.233602 -0.089607 -0.109375 +PE-benchmarks/dfs.cpp__Graph::DFSUtil(int, bool*) = -2.146371 0.356798 2.516132 -4.832052 3.761179 3.666917 1.527455 -1.865513 -4.023013 -2.410168 0.812843 -5.756022 -3.743672 6.247716 -2.628533 1.976292 7.528531 1.123973 -2.246640 -0.542421 4.295617 0.377128 7.295540 6.480166 -5.398433 -0.577026 0.404163 3.512776 0.918617 3.161390 -0.106258 -4.510600 2.134593 -1.700492 0.139364 -2.688843 0.897745 0.146264 0.515274 -7.559430 0.944657 1.392573 -1.267021 -1.401679 -0.875625 0.605477 5.986597 4.838795 -1.154525 -0.074177 3.554633 2.244334 -0.623486 1.427449 1.100648 -0.715849 1.220217 -1.800139 -2.525306 -2.020633 -0.978747 -2.820461 -0.317587 5.696598 6.326854 1.329694 0.151680 1.414913 -0.231453 1.428191 1.563180 1.140089 1.098141 2.146031 2.482672 -3.141104 -0.019203 -6.981493 -0.935862 -8.495974 -3.330773 -1.735880 3.686630 2.904253 1.558736 -1.531200 5.707572 -0.033467 0.012926 5.108249 7.668085 -4.301998 -2.319970 -4.192251 -3.299154 2.059314 -3.159042 0.985309 -0.426461 1.139515 -4.670502 -2.769621 0.285354 1.236179 -1.981166 -1.685249 0.451108 4.635823 -5.139332 -1.810643 -2.294179 2.539199 0.263918 -8.545546 -2.867888 -2.934372 3.249048 0.257421 -1.781738 -3.783915 1.216315 3.043557 -1.572304 -1.650865 -3.586873 4.437712 2.360140 1.017819 0.410597 0.735911 1.812752 5.994963 2.136035 -2.701038 -0.142710 -0.426673 -1.962544 0.658264 -3.197242 -1.111610 1.334593 -4.419975 0.139370 4.126727 -3.235041 -2.134714 -0.856019 -0.360366 2.801287 15.511258 -0.800476 4.763764 2.969785 -5.965529 1.987481 -1.489716 -1.113279 0.723894 2.354496 1.960608 -5.698206 -4.734857 3.677487 5.771329 4.012118 -4.186296 0.992113 -0.805744 -0.328668 -1.570969 0.598711 1.713503 -0.821261 -3.901488 -1.622661 4.700175 8.584674 -1.781336 -4.130270 2.831380 1.942737 -0.226294 -2.997134 -1.584161 -0.545998 0.822567 2.663089 -0.273162 3.412712 7.162797 -8.841792 4.941256 0.724643 -0.642462 3.670968 0.127414 -3.890309 -3.506495 0.174250 5.213870 5.184785 -0.077725 0.117930 0.330296 -5.060598 -0.596335 1.432830 1.766442 -1.559158 2.363913 1.048411 -3.765658 -4.327782 -1.707688 -1.618830 -0.653761 -2.193798 2.917167 0.153725 -8.326790 6.981623 -0.065008 -1.377892 -0.031234 -2.376353 4.445324 -5.635903 -6.449542 2.764152 -1.669510 -3.636231 -2.178553 0.550567 3.302623 1.294126 1.597214 -3.566479 -5.385340 4.310929 -0.751771 4.378383 2.075449 1.662202 4.493038 1.123856 -1.511930 -4.072068 -4.048314 2.789424 -0.224418 -4.788949 -0.112278 -1.344746 4.708235 5.165921 -1.244208 -3.482446 -0.675648 5.162845 -4.015131 -2.291754 3.646902 1.171166 -4.581949 1.447093 4.493321 -4.823981 -1.721566 -3.533615 -0.489032 -2.155212 -5.394924 1.898637 -1.022170 2.213376 2.004256 0.375826 -1.894385 2.014966 1.440143 0.322350 1.004952 6.477075 5.447384 -2.510453 0.639880 -5.598090 2.906291 -7.495818 -6.588289 2.630449 -1.043080 -1.840407 0.296367 -0.543704 4.390133 0.381965 0.258646 -1.119277 0.735223 +PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/dfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/dfs.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/dfs.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/dfs.cpp__Graph::DFS(int) = -1.223473 -0.536375 0.801425 -2.950175 1.968313 1.899400 0.855965 -1.231009 -2.803880 -0.929267 0.688534 -2.883617 -1.087422 3.506779 -1.315381 1.900703 4.446321 0.823136 -1.396224 -0.372786 2.961337 -0.615774 4.021895 3.678340 -2.832612 -0.320541 0.287974 1.931117 0.727385 1.586590 -0.143183 -1.898307 1.101069 -2.131651 -0.183280 -2.169416 0.544068 0.740654 1.309966 -4.520963 0.726466 0.306101 -0.173339 -0.812742 -0.712907 0.301073 2.608707 2.683377 -0.745941 0.444050 2.324800 0.971250 -0.479900 0.759453 0.661979 0.405308 0.843444 -0.166160 -1.185262 -1.125584 -0.418974 -1.259195 0.536637 2.961958 3.536513 0.492280 0.106749 1.230069 0.250166 0.700011 1.348378 0.460994 -0.365954 0.491604 1.293568 -3.243202 0.003199 -4.843943 -0.466135 -5.294772 -1.713111 -0.481479 1.964558 0.652135 1.309427 -0.215722 2.983419 -0.419486 -0.284735 2.748818 3.646387 -2.504050 -1.292912 -2.216713 -1.967695 1.081342 -1.631906 0.127475 0.735493 0.639604 -2.436790 -1.551807 0.858738 1.156666 -1.070309 -1.498029 0.442251 2.623021 -2.764153 -1.835124 -0.690570 1.915321 -0.441709 -4.644097 -1.102224 -2.187424 1.920791 -0.033838 -1.030537 -2.541656 0.532152 1.876959 -0.880359 -1.188264 -1.275050 2.402405 1.343548 0.780488 0.158128 0.100424 0.647303 3.859859 1.327885 -1.781315 0.049572 0.064966 -1.239709 0.569919 -2.079878 -1.062860 0.815200 -2.753450 0.184440 2.318157 -1.782515 -0.889730 1.299202 0.400147 1.296909 9.829503 -0.155879 3.136853 1.975691 -3.124841 1.184242 -0.690490 -0.163330 0.782910 1.338626 0.441140 -4.263405 -2.681716 1.682143 3.038169 2.313329 -2.908777 -0.609472 -0.668095 -0.285428 -0.104573 -0.055898 0.758098 -0.486127 -2.228088 -0.827329 2.252202 5.519072 -1.015869 -1.495796 1.519085 1.158542 -1.262517 -2.983405 -1.086927 -1.425180 0.586374 0.936671 -0.167295 1.911236 3.873868 -5.437500 2.702769 -0.206325 -0.208346 2.131260 0.429179 -2.385049 -3.319808 -0.365613 2.330407 3.399370 -0.570115 0.374543 0.865834 -2.710198 -0.261124 0.636386 0.600995 -0.851550 1.216126 0.587392 -1.968999 -1.936208 0.066151 -0.943037 -0.633492 -0.638038 1.689384 -0.034224 -4.492487 3.310543 -0.100857 -0.827022 0.619976 -0.956919 2.568708 -2.964082 -3.258288 1.815864 -0.157753 -1.148069 -1.336362 0.399802 2.126467 0.602368 0.802740 -1.830021 -3.430477 1.909007 -0.983022 2.349203 1.136045 0.274230 2.214173 -0.025527 -0.623873 -2.791758 -1.823153 0.413671 -0.026295 -2.657669 -0.754119 -0.671098 2.800816 2.538175 -0.211818 -1.870282 0.058108 3.239256 -2.438830 -0.940176 1.946722 1.050089 -2.830369 0.613451 2.475872 -3.198281 -0.569421 -1.594348 -0.375971 -0.880232 -2.556602 1.564199 -0.054058 1.568713 0.463830 0.508597 -0.503894 1.209551 1.046322 0.497521 0.544648 3.783845 3.307020 -1.060550 -0.382250 -2.919730 1.324454 -3.906162 -3.553074 1.211589 0.083641 -1.645701 0.479595 0.131739 2.994728 0.360633 0.295081 -0.323266 0.213591 +PE-benchmarks/dfs.cpp__main = -0.794603 -0.017880 1.924176 -2.312314 1.732455 0.509593 0.841297 0.204515 -2.634440 -1.625406 0.072788 -2.540695 -2.169145 3.133349 -1.043214 -0.011900 4.180208 1.515809 -0.883399 -0.825104 1.462220 -0.753274 3.377469 3.532994 -2.511995 0.156664 -0.223979 1.915456 0.352516 2.438230 -0.162548 -2.236601 0.828826 0.201881 0.889098 -2.153895 -0.094963 0.379928 -1.042010 -4.639881 0.564648 1.427602 0.083759 -0.487962 0.295231 2.046992 2.905642 2.102413 -0.492085 0.720352 1.443298 0.944371 0.257337 0.670041 1.007496 -0.006844 1.355967 -0.749259 -1.568089 -0.090326 -0.800650 -2.309744 -0.257905 2.461525 3.007049 0.350124 -0.275305 -0.613057 0.027744 1.010574 1.033261 0.570951 0.961262 0.332204 1.180587 -0.876280 0.151756 -3.672702 -0.004124 -6.377095 -1.938806 -1.071355 3.430670 1.407493 -0.304564 -1.034727 3.007790 -0.294123 0.243161 2.122875 3.484599 -1.352519 -1.168074 -1.573000 -1.386121 1.204021 -1.182511 -0.279505 0.635182 0.874949 -2.263110 -0.794679 0.792399 -0.227639 -1.022592 0.430348 0.012433 2.787175 -3.366554 -0.195526 -2.031546 1.504515 1.034033 -3.747111 -0.691875 -1.466927 1.676184 0.528451 -1.416227 -0.622220 1.113959 0.889722 -1.159644 0.387128 -2.767265 2.844074 0.163308 0.073709 0.150932 0.545724 0.343669 1.659170 1.384582 -1.562409 0.048191 0.595884 -1.094700 0.042027 -1.822637 -0.641571 0.945073 -2.024986 0.396091 0.579643 -1.880888 -1.273024 -1.108284 -0.098124 1.266917 6.441180 -0.800017 2.393329 1.211034 -2.346297 1.371335 0.131145 -0.214278 0.545354 1.898987 0.925246 -1.639195 -2.129414 1.332498 3.027872 2.060545 -2.186836 0.351814 -0.636540 -0.163557 -0.104748 0.915807 0.465637 -0.199733 -1.774603 -0.824227 1.113870 4.044483 -0.342622 -3.015018 0.475009 0.658324 -0.191322 -1.403756 -0.258950 0.382904 0.393877 0.614670 -0.474911 1.630821 3.430839 -5.817800 2.956015 -0.004830 -0.419494 2.074048 -0.125373 -1.222828 -3.036219 -0.482569 2.131130 3.605935 0.402721 -0.611733 0.382108 -2.584286 -0.431732 0.434618 1.326721 -1.156270 1.423261 0.556776 -1.690071 -1.440403 -1.907346 -0.382900 0.090955 -1.224300 1.306960 0.443005 -5.277481 2.905581 -0.230846 -0.609505 -0.270530 -0.176329 1.281470 -2.449900 -3.043514 0.731112 -0.628199 -2.900856 -1.761504 -0.201421 1.802535 -0.176638 0.499286 -1.253489 -2.585664 2.903372 -0.725558 2.425223 1.209834 0.263585 3.007684 1.984500 -0.870130 -1.422380 -1.404295 1.412323 -1.432352 -1.206245 1.006724 -0.990997 1.733709 2.846030 -0.100376 -1.073597 -0.467146 3.292039 -1.433821 -1.271833 2.034486 -0.316423 -0.864113 2.119877 2.523174 -2.820670 -1.205575 -2.124067 -0.705861 -0.489037 -1.729250 1.390662 -1.120796 0.817762 0.836078 0.190231 -1.539364 1.034454 0.414202 -0.534157 0.320232 3.600226 3.609423 -1.516438 1.602560 -2.156502 1.618146 -3.317186 -2.085749 -0.021452 -0.293151 -1.018675 0.406438 -0.527292 1.889955 0.229884 -0.204482 -0.945114 0.809079 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/dfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.635914 0.463864 1.281313 -1.462158 1.598193 0.803151 0.621960 -0.379792 -1.207862 -0.889649 -0.090438 -1.247632 -1.502538 2.052717 -0.913442 0.449066 2.826967 0.715392 -0.376096 -0.722316 1.719090 -0.965348 2.683612 2.293182 -2.311495 -0.089599 1.034875 1.310367 0.657217 1.724008 -0.798546 -1.297871 0.923368 -0.778152 0.858821 -1.618381 0.331412 -0.170577 -0.167327 -2.948905 0.163859 -0.161612 -0.420037 -0.168808 -0.244682 1.575813 2.327489 1.661661 -0.921072 0.265226 1.493855 0.538721 -0.136404 0.628223 0.389403 0.260891 1.133152 0.563407 -0.970616 -0.305996 -0.552812 -1.754975 0.211331 1.968153 2.505407 0.141780 0.265884 0.522154 -0.235080 0.488962 0.456662 0.488527 0.751187 0.550087 1.314212 -1.923971 -0.060402 -3.832157 -0.665460 -4.906716 -1.243008 -1.494420 0.913026 -0.641079 0.757922 -0.076682 2.226840 0.361814 0.508450 1.227660 2.731051 -1.790356 -0.771060 -1.580789 -1.098448 0.634437 -1.226038 0.128313 0.919292 -0.147080 -1.562868 -1.543319 0.811336 0.379780 -0.702250 -0.682223 -0.317414 1.898663 -2.080096 -0.822783 -1.866792 0.001061 -0.235571 -3.093815 0.043789 -1.057601 2.067265 0.212480 -0.264556 -1.475933 0.452657 1.815523 -0.661254 -0.861077 -0.557000 2.108963 0.921483 0.114429 0.303616 -0.075653 0.262633 1.805394 2.160797 -0.859695 -0.565026 0.147179 -1.500766 -0.147067 -1.624848 -0.309320 1.503039 -1.644511 0.185635 1.251623 -1.122753 -0.583255 1.541843 -0.606574 1.481378 5.220425 -0.453654 1.372586 0.525053 -2.241049 1.041639 -0.132518 -0.347712 0.682780 1.457097 0.688143 -2.433908 -1.695378 0.935097 1.901794 1.311050 -2.309792 -0.688919 -0.902133 -0.034532 -0.276003 -0.107319 0.694784 -0.576076 -1.247462 -0.496023 0.952754 3.137521 -1.136182 -2.216293 0.801763 0.490957 -0.690794 -2.055872 -0.648578 -0.552538 0.232256 0.279081 -0.307540 1.121586 2.522139 -4.539029 1.823714 -0.461042 -0.670701 1.586730 -0.072012 -0.751829 -2.188624 0.528494 1.896703 1.925821 0.379227 -0.191020 0.204749 -1.860791 -0.036760 0.100837 1.205356 -0.681087 0.886537 0.420819 -1.693018 -1.747205 -0.885235 -0.111533 -0.571336 -0.363916 0.825574 -0.113187 -4.427910 2.441753 -0.512168 -0.621039 0.485853 -0.309114 1.169971 -2.046662 -2.539525 0.918355 -0.264769 -0.949952 -1.392181 0.186804 1.459229 -0.023541 0.302694 -1.208110 -2.699489 1.289880 -0.637092 1.270232 0.804454 0.960973 2.579906 0.331519 -0.823704 -2.117206 -0.485306 0.612659 -0.564980 -1.328853 -0.450454 -0.457063 1.691522 2.464456 -0.214696 -0.150291 -0.319332 2.243547 -2.147444 -0.960212 1.623656 1.346478 -1.080595 0.863950 1.755701 -1.848903 -1.462981 -1.118484 -0.581509 -0.199092 -1.786679 0.727021 -1.248708 0.567313 0.897780 0.283853 -0.808235 0.945648 0.269613 0.285445 -0.222459 2.273447 3.444153 -1.786833 0.217733 -1.599584 1.078187 -2.850929 -2.041919 0.506798 -0.163476 -0.402095 0.497336 0.216767 1.499899 -0.082625 -0.130324 -0.250058 -0.421446 +PE-benchmarks/dfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.650706 1.567372 2.280989 -2.983972 4.924957 2.762123 2.013060 -1.113980 -2.480392 -2.396289 -0.310901 -3.063355 -4.275604 5.316166 -1.999803 2.380266 6.959788 1.239636 -0.500672 -1.177404 4.935131 -2.857504 7.192676 5.071574 -5.752195 -0.207895 2.593519 2.558941 0.468686 4.657625 -2.159103 -3.948811 3.297978 -3.209615 1.802986 -3.619760 0.953896 -0.656002 0.224035 -6.872405 0.186864 -0.273736 -1.586412 -0.420407 -1.304945 2.907742 6.241337 4.392200 -2.396417 0.853138 3.285783 0.573049 -0.342453 2.136320 0.980405 0.967811 1.374731 1.187555 -3.214499 -1.159111 -1.890106 -4.963877 0.432809 4.596973 6.263118 0.032022 0.886518 2.708407 -1.918988 1.218749 0.934463 1.374598 2.237044 0.877559 3.999904 -5.119640 -1.278690 -9.046245 -2.823949 -12.268106 -3.406177 -4.209354 1.272106 -1.517667 3.332661 -0.319563 5.695496 0.974605 1.284478 3.019738 7.377012 -5.615081 -2.063487 -4.625995 -2.071562 0.930752 -3.420997 0.111889 2.940394 -1.659160 -4.270607 -4.354659 2.267624 1.402499 -1.456186 -3.583413 -1.075763 5.028590 -5.261597 -3.202089 -5.322424 -0.703434 -1.695606 -8.170906 0.565369 -1.292551 4.684111 1.049213 -0.111125 -4.653323 1.456412 5.344844 -1.426822 -3.829904 0.438283 5.497886 2.647063 0.674538 1.609162 0.194763 0.564965 5.921240 6.895107 -1.301965 -1.785182 -0.168364 -3.423354 0.249273 -3.250553 -1.028805 3.124998 -4.857885 0.180574 4.070173 -2.607780 -0.911731 4.083277 -1.600968 4.030087 12.455579 -1.237641 3.444725 1.139346 -6.397019 3.034949 -1.164282 -1.134284 1.464235 3.795217 1.688809 -6.475713 -4.401456 2.914710 4.514195 3.286061 -6.357697 -2.170002 -2.690032 0.756700 -1.071633 -0.982846 2.582771 -0.556174 -3.602503 -0.867302 2.488219 8.685601 -4.259521 -5.305028 3.382827 1.086933 -1.591783 -6.257775 -2.466450 -2.488671 0.011412 0.829577 -0.892422 2.003485 6.506519 -9.778941 4.438499 -1.900850 -2.097265 4.097099 0.104790 -1.864912 -5.529529 1.163674 5.270310 4.414616 1.117780 0.105923 -0.186912 -4.546434 0.376855 0.124570 2.918528 -1.055896 2.201782 -0.022251 -4.644537 -4.950241 -1.871032 -0.394363 -2.054874 -0.314482 1.934037 0.973964 -10.732516 6.364314 -1.275580 -1.932213 1.945550 -0.055278 4.068971 -4.732752 -7.104567 3.067623 -1.447310 -2.356395 -3.121952 0.952021 3.289272 0.722880 -0.335716 -2.476883 -7.231763 3.333208 -0.850085 3.195386 2.030909 3.169085 7.141443 0.560378 -3.464232 -5.562193 -2.116496 1.143256 -1.714361 -3.664344 -2.556135 -1.007224 4.997433 6.238059 0.114847 -0.396839 -1.420209 5.549174 -6.654250 -2.026226 5.281559 4.272763 -3.265422 1.541570 5.276570 -4.129249 -4.083779 -2.351917 -0.479049 -0.954632 -5.042350 0.954578 -3.524037 1.093328 2.366966 0.662233 -1.784501 2.010925 0.825883 1.317156 -1.737520 5.741298 8.365686 -5.522587 -0.434453 -3.729667 2.464038 -7.420249 -5.674196 1.987493 0.540649 -0.832928 1.310698 1.615921 3.581709 -0.550836 -0.914796 -0.533250 -2.426021 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/dfs.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/dfs.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/dfs.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/dfs.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/weighted-job-scheduling.cpp__jobComparataor(Job, Job) = -0.345767 -0.117668 0.663560 -0.730151 0.818240 0.509104 0.397681 -0.195654 -1.014476 -0.285693 0.148402 -1.227341 -0.725950 1.298455 -0.396847 0.480360 1.636022 0.499411 -0.383115 -0.205265 0.554163 -0.337226 1.390128 1.337565 -0.838185 0.047921 0.020234 0.511951 -0.163529 1.171529 -0.580129 -1.114482 0.353700 -0.301038 0.280924 -0.602529 -0.156615 0.096641 0.224131 -1.691370 0.155795 0.798042 0.307748 -0.254614 0.068252 0.293988 1.098936 0.805109 0.080640 0.428019 0.432506 -0.045468 0.279640 0.230360 0.810621 0.384898 1.032417 0.096958 -0.818499 -0.040120 -0.485925 -0.527518 -0.181820 0.905603 1.203285 0.109117 -0.211300 -0.206317 -0.087096 0.329554 0.373539 0.311786 0.155275 0.285258 0.470031 -0.388739 0.247467 -1.342010 -0.087908 -1.939494 -0.806773 -0.244782 0.922070 0.285714 0.382892 -0.385440 1.243307 -0.259344 -0.116406 0.159281 1.536023 -0.871397 -0.559670 -0.449256 -0.464929 0.162930 -0.511114 -0.159193 0.678806 -0.104348 -1.003174 -0.550176 0.598986 0.246442 -0.323984 0.230538 0.022426 1.101184 -0.970131 -0.591678 -0.854221 0.321694 0.052479 -1.516211 -0.323445 -0.339185 -0.043452 0.461391 -0.832383 -0.829735 0.679066 0.526679 -0.566638 -0.320498 -0.435610 1.201772 0.224478 0.187667 0.117728 0.171939 0.229497 1.026618 0.688572 -0.632672 0.179142 0.146376 -0.523582 0.244028 -0.567697 -0.460527 -0.060025 -0.833126 0.096134 0.401066 -0.771280 0.088786 -0.220280 0.206115 0.345535 2.637970 -0.522524 1.040139 0.370107 -1.098049 0.930024 0.007427 -0.026388 -0.094773 0.749924 0.425010 -0.982175 -0.852752 0.838819 1.284290 0.793011 -1.131486 -0.083822 -0.281569 0.168634 -0.005536 0.395196 0.340308 0.087287 -0.783663 -0.276823 0.292848 1.988500 -0.665847 -1.810146 0.348182 0.106151 0.042847 -0.884704 -0.210158 -0.511908 0.152448 -0.107565 -0.125122 0.588120 1.367276 -2.361609 1.256921 -0.195618 -0.615713 1.680710 -0.041558 -0.574635 -1.086667 -0.306743 0.821203 1.350943 0.396686 -0.392645 0.104548 -1.026197 -0.108170 -0.069957 0.521316 -0.459845 0.686190 0.011676 -0.931201 -0.578954 -0.862936 -0.046320 -0.540910 -0.579811 0.559812 0.475412 -2.073702 1.153910 0.360696 -0.263852 0.114898 0.105220 0.334640 -0.887104 -1.290233 0.309768 -0.418278 -0.723179 -0.455916 -0.180265 0.415083 0.207489 0.304634 -0.584602 -1.073134 1.038879 -0.222373 1.235454 0.438526 0.032587 0.879974 1.029994 -0.559944 -0.447834 -0.401463 0.370007 -0.509209 -0.521350 -0.254384 -0.418864 0.941722 0.944563 0.141432 -0.223542 -0.902460 1.197396 -0.761451 -0.127960 0.925090 -0.248627 -0.501844 0.265560 1.068630 -0.936509 -0.354063 -0.621090 -0.537276 -0.606021 -0.618413 0.373657 -0.491133 0.247235 0.148360 -0.166475 -0.466300 0.146714 0.203735 -0.269080 0.095268 1.314646 1.091566 -0.690425 0.552999 -0.964140 0.673681 -1.252538 -0.907284 0.209714 -0.109465 -0.931604 -0.001940 0.258880 0.652937 0.067802 -0.279373 -0.435576 0.092712 +PE-benchmarks/weighted-job-scheduling.cpp__latestNonConflict(Job*, int) = -1.209791 -1.043945 -0.006439 -2.781470 1.893668 2.122573 0.908697 -1.570557 -2.847803 -0.174291 0.848303 -2.556801 -0.143369 3.373734 -0.958077 3.037168 4.031354 0.792768 -1.471786 -0.040202 3.121644 -0.569200 3.656901 3.298521 -2.326803 -0.261950 0.081209 1.257443 0.406531 1.348058 -0.497388 -1.620180 1.243126 -3.103025 -0.613266 -2.184837 0.478812 1.212021 2.629265 -4.056252 0.872015 0.196364 0.433902 -0.953347 -0.955225 -0.799221 1.876629 2.543775 -0.505580 0.685719 2.062891 0.561261 -0.456578 0.758709 0.836091 1.278439 0.435344 -0.026660 -1.082880 -1.275511 -0.323218 -0.465728 0.894277 2.499619 3.187518 0.287097 0.038201 1.761405 0.486256 0.460134 1.510246 0.329011 -1.070652 -0.100891 0.968276 -3.931566 -0.073915 -4.477217 -0.551451 -4.137380 -1.569581 0.103990 1.334864 0.389382 2.101276 -0.135700 2.633463 -0.842942 -0.615822 1.961327 3.020290 -2.894159 -1.238685 -2.018427 -1.663309 0.736032 -1.432100 -0.171064 1.190911 -0.010594 -2.290235 -1.677672 1.121797 1.699632 -0.963294 -2.086220 0.750986 2.416566 -2.008259 -2.810972 0.003159 2.113114 -1.308071 -4.141015 -0.424585 -2.129447 0.853558 -0.039786 -1.034934 -3.248543 0.429308 1.897168 -0.897586 -1.935522 -0.457676 1.971192 1.656975 0.927170 0.249393 -0.121020 0.443854 4.492322 1.101378 -1.889378 0.298607 0.104968 -0.964162 0.926698 -1.970867 -1.502757 0.336758 -2.944253 -0.092788 2.467976 -1.653101 0.119222 2.266248 1.070997 0.867937 9.302918 -0.004286 3.203694 2.258139 -2.956574 1.483951 -0.781543 0.059737 0.746029 1.193874 -0.046001 -4.742678 -2.610373 1.472783 2.740910 2.269357 -2.679773 -1.460864 -0.847382 -0.233561 0.222003 -0.364957 0.691662 -0.175129 -2.312666 -0.644969 1.913917 5.589466 -1.367377 -0.609020 1.685050 1.227656 -1.751202 -3.465851 -1.458644 -2.868636 0.499934 0.431778 -0.037122 1.747147 3.570131 -4.324347 2.498606 -0.791963 -0.422161 2.326869 0.708941 -2.527330 -3.129511 -0.756084 1.780027 3.197416 -1.037665 0.881101 1.153203 -2.439318 -0.188425 0.348680 0.047899 -0.687000 0.998895 0.361155 -1.820599 -1.340051 1.019717 -0.992162 -1.390842 -0.176168 1.695555 0.611104 -3.317138 2.643941 0.208360 -0.842319 1.431947 -0.680015 2.720401 -2.517123 -2.722892 2.058025 0.363179 0.087335 -0.827694 0.543149 2.080890 0.574772 0.716508 -1.597751 -3.207134 1.289520 -0.946241 2.226171 1.066609 -0.221216 1.249920 -0.599521 -0.686529 -2.673199 -1.868891 -0.648151 0.346147 -2.574733 -1.600976 -0.656166 3.039490 1.999496 0.325848 -1.903727 -0.086580 2.945679 -2.637705 -0.150368 1.953590 1.155032 -3.034304 -0.276278 2.434663 -3.059703 -0.113622 -0.973032 0.062780 -0.868136 -2.111691 1.667264 0.458974 1.681490 -0.186476 0.440230 0.131437 1.068791 1.260826 0.614471 0.449702 3.534798 2.009759 -0.607707 -1.142075 -2.594632 0.966111 -3.356622 -3.199986 1.267144 0.527431 -2.414491 0.518224 0.731179 3.106464 0.254691 0.536839 -0.116335 -0.297766 +PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -2.864349 -1.966282 0.050795 -6.819447 4.838852 6.171547 2.257320 -4.071663 -6.452159 -1.248491 2.848343 -6.591659 -2.105347 7.899578 -2.814447 5.903750 9.152958 0.688453 -3.963898 -1.139283 7.801976 -0.195115 10.399242 8.107330 -6.586746 -0.649322 0.793324 3.779212 2.117551 2.370052 0.088017 -3.411234 3.233579 -6.690490 -1.381534 -3.690346 1.198795 1.293637 5.158578 -9.228978 1.635417 -0.058585 -0.711587 -1.888339 -2.216169 -0.441410 5.620266 6.311391 -1.132536 1.424583 6.113638 1.386538 -1.104388 1.699488 1.872900 1.035008 1.669073 -0.273071 -2.159942 -3.650577 -0.765025 -1.558375 1.130372 6.645807 8.231851 0.499733 0.035261 4.304457 0.739336 1.882957 3.597196 1.234844 -1.581194 0.911968 3.286475 -9.011684 -0.523006 -11.644721 -1.605536 -11.189123 -3.993421 -0.093698 3.976059 0.661120 4.181025 0.436488 6.667376 -0.766296 -1.912090 5.891596 8.100901 -5.962884 -2.926730 -4.371666 -3.732651 1.928878 -3.903628 0.815040 2.682278 0.977590 -5.776406 -2.988237 1.895749 3.394835 -2.696555 -5.175811 1.098364 5.699939 -5.214378 -4.690943 -0.231698 5.465808 -1.791092 -11.814445 -3.123844 -5.041791 4.587974 -0.516458 -1.911458 -6.589341 0.904822 4.657615 -1.855049 -3.953456 -0.390055 4.645864 4.663985 2.889754 0.579047 0.798927 1.785824 11.052286 3.012527 -3.736636 0.117018 -0.576494 -2.008868 2.890652 -3.781597 -2.420427 1.474041 -6.451496 1.655224 6.353082 -3.460077 -1.710152 5.025913 1.963550 2.000144 24.331123 0.036100 8.164355 5.568871 -7.247876 2.009844 -2.653038 0.052090 2.104478 2.636496 -0.056440 -11.122472 -6.174378 4.304917 6.721704 4.955474 -8.202763 -1.212019 -0.962585 -0.516154 -0.819657 -0.558279 1.787100 -0.038738 -4.953320 -1.712176 6.366604 13.587357 -3.425550 -2.672316 4.152981 2.950422 -3.311144 -7.514711 -3.144702 -3.949466 1.424154 2.806007 0.546501 4.198905 8.569813 -10.832032 5.574506 -0.699650 -0.570239 5.908624 2.183939 -6.485829 -6.610205 -1.119314 4.828496 7.063678 -1.934872 0.969840 2.472527 -6.168043 -0.303595 1.381100 0.023676 -1.471009 2.671936 1.072472 -3.876783 -4.059777 1.295825 -1.992579 -1.025909 -0.774920 4.147964 -0.197852 -10.883576 7.478773 -0.087365 -2.663764 1.548532 -2.365678 7.452278 -6.019324 -7.035891 4.759355 -0.508676 -1.928663 -2.918315 1.186325 4.458242 2.149721 3.017073 -4.960236 -7.173653 4.097892 -2.667786 5.529125 2.687862 0.272995 4.543160 -3.814296 -1.645735 -7.546512 -4.758841 0.424859 0.941370 -7.254261 -2.367147 -1.554058 6.783772 4.568549 -0.098405 -5.297859 -0.059729 7.161531 -7.559914 -1.755120 4.174569 5.427466 -8.211954 1.259072 5.413922 -6.969513 -0.249356 -2.994653 -1.103796 -2.882203 -6.665539 4.083187 1.281574 4.503948 0.106148 1.771373 0.097577 2.645636 2.147628 1.791152 0.967625 8.470144 7.781509 -2.702746 -2.969679 -7.114291 3.423111 -8.680459 -9.267976 4.003009 0.288804 -4.251871 0.823591 0.737038 7.831855 1.316126 -0.392083 -1.062965 0.449081 +PE-benchmarks/weighted-job-scheduling.cpp__void std::sort(Job*, Job*, bool (*)(Job, Job)) = -0.545382 0.400333 0.984006 -1.351054 1.256291 0.691208 0.444689 -0.387981 -1.046847 -0.650165 -0.080154 -1.296507 -1.117602 1.634474 -0.724785 0.404814 2.423335 0.570075 -0.398770 -0.541446 1.202914 -0.460170 2.196763 2.022540 -1.762036 -0.046632 0.799920 1.045186 0.381160 1.178157 -0.729572 -1.205409 0.612531 -0.570994 0.529693 -1.179977 0.174026 -0.192215 0.095338 -2.482680 0.223976 -0.163000 -0.261963 -0.260696 -0.208822 0.978580 1.994435 1.349013 -0.595064 0.085576 1.226930 0.612959 -0.137858 0.434569 0.377161 0.259670 0.980904 0.287253 -0.686022 -0.348903 -0.354762 -1.026040 0.087105 1.665055 1.931301 0.252100 0.033962 0.357519 0.050488 0.318281 0.297454 0.409490 0.474420 0.651720 0.823997 -1.561485 0.102081 -3.045053 -0.391087 -3.620246 -1.096905 -1.012527 0.756331 -0.339941 0.569085 0.001731 1.858370 0.121045 0.444242 0.944138 2.253312 -1.460424 -0.664429 -1.175219 -0.949288 0.569195 -0.857730 0.172083 0.547692 0.023880 -1.330863 -1.206676 0.653633 0.318007 -0.648059 -0.432068 0.003702 1.365124 -1.516493 -0.634109 -1.394503 0.219106 -0.055286 -2.533374 -0.175928 -0.868394 1.525374 0.122388 -0.482552 -1.429082 0.349140 1.292893 -0.651725 -0.578000 -0.657303 1.556844 0.804606 0.062457 0.237990 -0.083971 0.444378 1.671212 1.369775 -0.892981 -0.312077 0.109725 -1.155502 -0.209208 -1.299924 -0.316355 0.903872 -1.348113 0.354807 1.116473 -1.038273 -0.459360 1.043822 -0.438686 1.062031 4.486305 -0.448707 1.225810 0.530487 -1.830310 0.794735 -0.279424 -0.414016 0.335804 1.088428 0.725802 -1.940297 -1.376331 0.853977 1.702216 1.150434 -1.695270 -0.365033 -0.566727 -0.111932 -0.223943 0.068246 0.457893 -0.411710 -1.006141 -0.478001 1.009985 2.690777 -0.712105 -1.716459 0.585764 0.541859 -0.329986 -1.443322 -0.483824 -0.570275 0.230117 0.389320 -0.145236 1.052712 2.118321 -3.745724 1.472360 -0.227578 -0.556738 1.346549 0.054717 -0.793092 -1.574384 0.389623 1.606962 1.671057 0.154079 -0.029837 0.086246 -1.496558 -0.200019 0.183018 0.925759 -0.683548 0.762019 0.466752 -1.465305 -1.239726 -0.650289 -0.164291 -0.475972 -0.426234 0.762363 -0.108391 -3.547711 2.117704 -0.198058 -0.435693 0.313509 -0.588022 0.980882 -1.731054 -1.965629 0.762925 -0.198895 -0.550684 -0.785768 0.081880 1.193353 -0.010467 0.575744 -1.099098 -2.018736 1.079648 -0.313569 1.201078 0.681013 0.656696 1.742491 0.059191 -0.493047 -1.508318 -0.509991 0.533048 -0.278283 -1.173665 -0.217602 -0.481092 1.377813 1.969870 -0.329969 -0.327180 -0.259707 1.629292 -1.639123 -0.597617 1.140479 0.890817 -1.059883 0.550428 1.345299 -1.497396 -1.009026 -1.003397 -0.451181 -0.342389 -1.507167 0.574581 -0.895264 0.454211 0.817003 0.011499 -0.601121 0.787642 0.241109 0.192680 0.091834 1.746317 2.472433 -1.114256 0.245435 -1.471512 0.862126 -2.333520 -1.774566 0.525337 -0.294354 -0.581946 0.177769 0.024029 1.263283 -0.205794 0.092484 -0.280267 -0.129298 +PE-benchmarks/weighted-job-scheduling.cpp__int const& std::max(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/weighted-job-scheduling.cpp__main = -0.641565 -0.221873 0.628152 -1.853527 1.469667 1.184117 0.688907 -0.582893 -1.926511 -0.887652 0.692552 -2.326576 -1.279469 2.375646 -0.806193 0.986174 2.861835 0.353378 -0.951502 -0.474445 1.704251 -0.260728 2.969504 2.535196 -2.095806 0.012121 0.016975 1.163091 0.498444 1.109038 0.029653 -1.496747 0.829509 -0.998465 0.102713 -0.975994 0.166099 0.073860 0.564406 -3.051054 0.381434 0.734459 -0.010115 -0.491656 -0.294494 0.704131 2.118521 1.799220 -0.437021 0.531876 1.659559 0.309237 -0.037629 0.460594 0.634237 -0.184755 0.824344 -0.262456 -1.052011 -0.628539 -0.310112 -1.099907 -0.079545 1.998276 2.471222 0.111265 -0.111311 0.587364 0.109203 0.668359 0.930976 0.462874 0.222435 0.420681 1.106151 -1.587380 -0.073468 -3.272131 -0.316055 -4.314372 -1.475456 -0.358689 2.055965 0.684881 0.561553 -0.431500 2.160796 -0.080015 -0.288674 1.699264 2.728837 -1.412155 -0.988205 -1.270496 -1.088759 0.800837 -1.168714 0.175953 0.820216 0.377019 -1.833538 -0.629687 0.611851 0.478312 -0.830759 -0.666080 0.160173 1.775135 -1.978196 -0.756333 -0.744488 1.313844 0.242318 -3.445826 -0.734778 -1.098285 1.125002 0.226291 -0.758540 -1.208825 0.461269 0.934421 -0.767927 -0.507452 -1.236789 1.851513 0.927912 0.782810 0.311966 0.473851 0.756713 2.417824 0.919132 -1.117261 0.006414 -0.072306 -0.579736 0.705931 -1.069507 -0.677752 0.658863 -1.718486 0.529164 1.163296 -1.193938 -0.743418 0.263948 0.304567 0.697663 6.119079 -0.207198 2.333312 1.318186 -2.043182 0.931842 -0.538384 -0.194162 0.442462 1.051983 0.346941 -2.166154 -1.727689 1.352504 2.227959 1.470603 -2.254173 0.083612 -0.122401 -0.099911 -0.329368 0.292652 0.555612 0.111490 -1.441294 -0.548940 1.706505 3.704268 -0.722670 -1.580171 0.908009 0.812080 -0.372302 -1.696911 -0.556093 -0.495394 0.419802 0.654305 0.053917 1.287119 2.623476 -3.947899 1.923547 0.055923 -0.255100 1.841121 0.300759 -1.699151 -2.297368 -0.217980 1.585550 2.259176 -0.050506 -0.098441 0.481179 -1.899960 -0.181040 0.363503 0.303772 -0.597261 0.953896 0.161568 -1.158739 -1.312031 -0.656631 -0.527371 0.005316 -0.685675 1.167940 0.352698 -3.736598 2.346257 -0.090580 -0.830568 -0.159670 -0.603786 1.657803 -1.914138 -2.226157 0.914250 -0.668355 -1.612892 -1.143804 0.035553 1.050789 0.331527 0.658752 -1.218897 -2.049709 1.852188 -0.720360 1.791495 0.928565 0.155292 1.798629 0.266447 -0.653542 -1.689557 -1.307305 0.725910 -0.453823 -1.772437 0.099324 -0.649302 1.680080 1.649329 -0.131473 -1.271449 -0.328828 2.110761 -1.745294 -0.904257 1.399527 0.692713 -1.770246 0.982730 1.755259 -2.035351 -0.249987 -1.428094 -0.528613 -0.811410 -1.824880 1.025151 -0.100335 0.985258 0.374406 0.261962 -0.520764 0.764794 0.343542 0.017469 0.155368 2.658635 2.582608 -1.182571 0.089773 -2.153514 1.211481 -2.654539 -2.552499 0.882390 -0.051538 -1.124824 0.129161 0.039710 1.830084 0.343298 -0.392251 -0.708792 0.579102 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.319777 0.246690 0.619263 -3.245673 3.276981 1.809339 1.282975 -0.809789 -2.735937 -1.400695 0.370656 -4.161686 -2.420705 3.630791 -1.402873 2.051814 5.849571 0.778671 -1.039189 -0.704653 2.586876 0.112611 5.496427 4.661719 -3.583406 -0.136546 0.651093 1.726302 -0.340199 1.381064 -1.109849 -3.638873 1.786050 -2.113242 0.133891 -1.715412 0.302687 -0.431100 1.499014 -5.418334 0.769923 0.199490 -0.429820 -0.905556 -0.941066 1.178552 4.544846 3.295707 -1.078377 0.439054 2.807339 1.094708 -0.363276 1.132516 0.577778 0.409338 0.522673 -0.113690 -2.049156 -1.590409 -0.830615 -1.308581 -0.128317 3.510609 4.070345 0.560331 -0.430862 1.626361 0.383229 0.710894 1.080661 0.975754 1.043764 0.980704 1.966464 -3.087076 -0.741932 -6.265089 -1.123979 -7.915646 -2.906344 -1.499386 2.371757 -0.052628 1.707277 -0.359031 4.283820 -0.348638 0.693556 2.821747 5.050525 -3.564589 -1.949281 -2.856293 -1.800623 1.150034 -1.835359 0.361009 1.748677 0.185798 -3.554065 -2.131016 1.092140 0.828353 -1.322440 -2.210327 0.795822 2.487505 -2.941328 -1.826563 -2.867760 1.799110 0.190930 -6.108535 -1.047702 -1.074278 2.347138 0.499867 -1.574373 -3.560393 0.798927 2.142174 -1.845290 -1.460353 -0.919647 3.136590 2.071965 0.894446 1.252181 0.543472 1.508804 5.378964 2.516786 -2.182024 -0.496666 -0.041473 -1.728129 0.303245 -2.252370 -1.300276 1.142024 -3.669573 1.844539 2.875000 -2.546341 -1.142227 1.455321 -0.258568 1.900111 10.119731 -0.993358 3.704822 1.953345 -4.155355 1.816144 -1.849340 -0.832813 0.123918 2.208177 1.361407 -3.651471 -3.221596 2.611372 4.002288 2.908587 -3.974683 -0.022321 -0.458347 0.394205 -0.776308 -0.080015 1.488461 0.360655 -2.646260 -0.812681 3.291026 7.010284 -1.518499 -2.841892 1.967334 2.346420 0.128394 -2.885826 -1.570651 -2.290797 0.326911 2.005975 0.310790 2.213384 5.125613 -7.203634 3.041745 -0.192194 -0.618976 2.921431 1.081882 -2.768849 -3.476522 0.025296 3.596581 4.034365 -0.040691 0.621876 0.033189 -3.029804 -0.420989 0.815407 1.404095 -1.150165 1.656221 0.323476 -3.118176 -2.244060 -1.037611 -0.998985 -0.717605 -0.847539 2.030040 0.830369 -7.360990 4.795931 -0.001562 -1.488967 0.425705 -1.763504 3.402609 -3.684887 -4.291178 2.241055 -1.241123 -1.464797 -0.950123 0.461317 2.160924 0.659463 1.870406 -2.212146 -4.423158 3.449665 0.252768 3.527407 1.636276 0.821783 3.374356 -0.924487 -1.520374 -2.917180 -2.691675 1.112282 -0.456707 -3.290465 -0.266661 -1.175661 3.415861 3.764970 -0.746853 -1.836175 -0.862372 3.188564 -4.116322 -0.651235 2.949162 1.924610 -3.131328 1.181333 3.579179 -3.577402 -1.335320 -2.454476 -0.073063 -1.598361 -3.707158 0.974145 -1.416187 1.200757 1.553032 -0.267096 -0.750343 1.373305 0.744909 0.506677 0.148968 4.202775 4.615772 -2.003766 0.038875 -3.838150 1.857618 -5.312680 -4.887114 2.016793 -0.651298 -2.253659 0.100528 0.368651 3.146076 -0.805411 -0.120470 -1.464350 0.262599 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(bool (*)(Job, Job)) = -0.196288 0.267194 0.349756 -0.319689 0.552546 0.377530 0.208126 -0.113650 -0.364203 -0.319700 -0.100488 -0.503242 -0.550852 0.695003 -0.261512 0.220048 0.960256 0.290645 -0.060535 -0.129225 0.361629 -0.234372 0.901728 0.768529 -0.619830 0.031235 0.281459 0.274157 -0.090800 0.705537 -0.349163 -0.740688 0.386388 -0.188557 0.159021 -0.474850 0.024542 -0.067209 -0.019339 -1.004696 0.052822 0.082510 -0.111145 -0.105940 -0.067991 0.226704 0.860894 0.505894 -0.087428 0.163386 0.292168 0.255420 0.005994 0.222128 0.258464 0.203238 0.300225 -0.158445 -0.410469 -0.062981 -0.211607 -0.557251 -0.146199 0.589153 0.741593 0.069273 0.023720 0.087090 -0.286823 0.135822 0.061000 0.157824 0.267119 0.268116 0.281820 -0.405734 -0.045680 -0.888857 -0.265658 -1.367191 -0.454597 -0.478987 0.261158 0.145045 0.310707 -0.038082 0.747377 0.016162 0.200617 0.244963 1.007864 -0.705666 -0.294693 -0.405779 -0.198899 0.162557 -0.380666 0.008031 0.111220 -0.153941 -0.547316 -0.603756 0.350002 0.136363 -0.231641 -0.193822 -0.071648 0.603520 -0.785117 -0.337005 -0.722698 -0.094734 -0.106096 -0.957390 -0.041610 -0.108909 0.441418 0.231262 -0.221002 -0.648836 0.280369 0.565175 -0.197659 -0.383722 -0.165144 0.615429 0.194801 -0.026345 0.159294 0.004295 0.170336 0.776630 0.620916 -0.251531 -0.093535 0.043974 -0.367601 -0.054729 -0.400386 -0.155051 0.053485 -0.604497 0.140072 0.474284 -0.439874 -0.103851 0.072556 -0.207924 0.440552 1.428299 -0.242596 0.412990 0.128422 -0.837305 0.319350 -0.215865 -0.219232 0.022015 0.471310 0.365667 -0.570889 -0.503418 0.360478 0.685108 0.452934 -0.567219 -0.104400 -0.325607 0.089935 -0.093549 0.102635 0.248744 -0.076393 -0.453086 -0.169785 0.286365 1.149859 -0.398189 -0.630720 0.300258 0.071966 -0.036565 -0.532670 -0.190846 -0.222716 0.040729 0.144406 -0.124133 0.258243 0.826087 -1.270488 0.643139 -0.221556 -0.346710 0.518355 0.003835 -0.230084 -0.425058 0.130415 0.700059 0.693042 0.175170 0.118299 -0.072251 -0.610678 -0.105551 0.024358 0.433917 -0.248467 0.336409 0.170642 -0.727792 -0.545113 -0.293966 0.030401 -0.350503 -0.199377 0.272020 0.256980 -1.430530 0.852094 -0.017714 -0.184735 0.176224 -0.022409 0.415032 -0.653314 -0.877101 0.323640 -0.212657 -0.303724 -0.150099 -0.014430 0.415938 0.046173 0.076202 -0.281130 -0.718719 0.448092 0.077799 0.444729 0.266480 0.335197 0.725642 0.112514 -0.363593 -0.433484 -0.269633 0.258591 -0.355517 -0.313153 -0.027355 -0.220611 0.606161 0.866164 0.042753 -0.179093 -0.218989 0.669873 -0.614445 -0.131835 0.591686 0.360052 -0.324543 0.160157 0.623429 -0.533529 -0.487991 -0.332128 -0.050130 -0.164379 -0.591185 0.111109 -0.518816 0.102093 0.388031 -0.026975 -0.359512 0.262514 0.066859 0.016204 -0.075195 0.685010 0.760483 -0.529025 0.252004 -0.491022 0.291264 -0.912517 -0.647439 0.154053 0.019211 -0.252818 0.043658 0.016666 0.371010 -0.113367 0.040508 -0.116050 -0.220235 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__introsort_loop >(Job*, Job*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -1.597753 0.424166 0.712268 -3.669762 3.914624 2.660732 1.518435 -0.754991 -3.369487 -1.963391 0.184497 -4.886595 -3.043241 4.658611 -1.557378 2.653470 7.702522 1.104706 -1.069673 -0.599117 3.468666 -0.797246 6.839519 5.977898 -4.273768 -0.180702 1.412267 2.074068 -0.652450 2.406596 -1.563086 -5.079333 2.205974 -2.896331 0.257952 -2.859983 0.347507 -0.320863 1.928972 -7.267204 0.932748 0.445163 -0.707816 -1.238742 -1.171046 1.425724 5.950548 3.947495 -1.427444 0.612222 3.265320 1.362686 -0.599997 1.340585 0.862661 1.006445 0.738927 0.405532 -2.615865 -1.683206 -1.115114 -1.809554 -0.109728 4.128923 5.414394 0.488938 -0.390014 1.971453 -0.024352 0.828092 1.100908 1.073459 1.546682 0.996506 2.512457 -4.453058 -1.296735 -8.640713 -1.396111 -10.853035 -3.438499 -1.974261 2.555759 -0.215160 2.327272 -0.730716 5.120392 -0.839386 0.956954 3.658563 6.698970 -4.508736 -2.323025 -3.783764 -2.163277 1.328950 -2.345812 0.009102 2.638707 -0.551352 -4.276926 -3.493328 1.993603 1.288247 -1.533026 -3.053932 0.778650 3.294196 -3.863480 -2.678750 -3.820964 1.859634 -0.189533 -7.837924 -0.841877 -1.494678 2.724292 0.916405 -1.948204 -5.030740 1.207721 3.321946 -2.160634 -2.413008 -0.420737 4.626851 2.346711 0.962464 1.589252 0.323713 1.695285 6.944410 3.988717 -2.484627 -0.556592 0.109097 -2.744053 0.152000 -3.166562 -1.711355 1.625520 -4.503637 1.848370 3.890317 -3.128617 -1.148824 2.736797 -0.521801 2.477445 14.442649 -1.329227 4.502825 2.206793 -5.560431 3.120301 -2.001431 -1.237301 0.008901 2.792447 1.919557 -6.054604 -3.755600 3.108328 4.802443 3.593960 -5.630520 -0.735326 -1.001013 0.586772 -0.873106 -0.063770 1.817125 0.537822 -3.570766 -0.994950 3.956726 9.795276 -2.270135 -3.759318 2.462346 2.803290 -0.493050 -4.963302 -1.848989 -3.310900 0.303544 2.109464 -0.088025 2.631371 6.199359 -9.631932 3.847957 -0.659379 -1.264172 4.010139 1.208528 -3.228447 -5.248404 0.065815 4.924758 5.653453 0.207800 1.153706 -0.124325 -3.740201 -0.468952 0.810235 1.858569 -1.392430 2.091083 0.234427 -4.379251 -2.886535 -1.127558 -1.260629 -1.574465 -1.005174 2.256658 1.400763 -9.840053 6.295844 0.091366 -1.557948 0.770180 -1.579265 4.165892 -4.499713 -5.839942 2.882085 -1.411179 -1.600089 -1.272082 0.429415 2.778361 1.078593 2.015749 -2.389883 -6.898984 4.148388 0.182981 4.312002 1.934781 1.092192 4.575920 -0.628652 -1.892668 -4.409134 -3.312173 1.273112 -0.753332 -3.921177 -1.199274 -1.444815 4.373105 4.677064 -0.728518 -2.115211 -1.612293 4.574549 -5.365186 -0.427634 3.771890 2.916919 -3.855945 0.924084 4.547467 -4.842694 -1.840657 -3.003365 -0.070006 -1.884132 -4.844518 0.925336 -2.029312 1.306410 1.976065 -0.371675 -1.126135 1.403406 1.074883 0.430150 -0.117602 5.529062 6.452090 -2.821268 0.108677 -4.437879 2.155741 -6.876094 -5.956999 2.197610 -0.604969 -2.898918 0.174132 1.262946 3.757515 -1.044401 0.257627 -1.421495 -0.262533 +PE-benchmarks/weighted-job-scheduling.cpp__long std::__lg(long) = -0.267090 -0.404100 0.039775 -0.646698 0.253945 0.081622 0.257764 -0.497969 -0.737079 -0.237677 0.434039 -0.819007 -0.103823 0.710118 -0.309418 0.607144 0.790160 0.189168 -0.454421 -0.281361 0.454188 0.014988 0.925350 0.867074 -0.510525 0.010029 -0.318544 0.283868 0.427987 -0.011695 0.221375 -0.098277 0.463360 -0.430762 -0.090637 -0.276225 0.009721 0.333026 0.442853 -0.812332 0.201483 0.082644 0.418166 -0.117091 -0.068835 0.370231 0.302838 0.569331 0.175663 0.378326 0.449950 0.062505 0.147172 0.191016 0.266266 -0.046924 0.298565 -0.600109 -0.235968 -0.268156 -0.087202 -0.249162 0.034121 0.611851 0.696690 0.038173 -0.092730 0.257977 0.307477 0.240288 0.547858 0.174251 -0.235579 -0.010162 0.071570 -0.816303 0.285817 -0.684648 -0.144553 -1.261456 -0.410477 0.215913 0.736958 0.269280 0.236649 0.029239 0.614413 0.050984 -0.393058 0.259534 0.606452 -0.504390 -0.294432 -0.008952 -0.054300 0.146176 -0.340594 0.159399 0.247996 0.434925 -0.536474 0.164365 0.279650 0.141626 -0.264347 -0.128258 0.212981 0.491545 -0.667035 -0.308982 0.167263 0.557898 0.044483 -0.873053 0.271621 -0.520832 0.377356 -0.056164 -0.333401 -0.273157 0.124986 0.065443 -0.158990 -0.058943 -0.824018 0.321889 0.242569 0.359413 -0.072103 0.350984 0.100250 0.898664 -0.110461 -0.486623 0.157728 -0.038542 -0.040266 0.478954 -0.245347 -0.367246 0.203996 -0.603432 0.059402 0.215196 -0.356728 -0.167634 0.110120 0.449424 -0.026850 1.263605 0.014112 0.825382 0.743578 -0.417807 -0.094052 -0.344677 0.262278 0.227885 0.241172 -0.126067 -0.482901 -0.647581 0.397465 0.697332 0.450523 -0.540855 -0.005924 0.058465 -0.004033 -0.019565 0.036120 0.089193 0.055360 -0.461219 -0.139028 0.357338 0.953816 -0.116305 0.354055 0.174863 -0.021721 -0.135928 -0.479327 -0.283891 -0.099271 0.235916 0.009935 0.273311 0.283680 0.757721 -0.709024 0.623123 -0.079672 0.172030 0.523501 0.193593 -0.648381 -0.840680 -0.360296 0.180365 0.577677 -0.357074 0.115781 0.463433 -0.632512 -0.092081 0.007221 -0.085674 -0.203067 0.175945 0.303366 -0.109112 -0.150981 0.171018 0.016759 0.074637 0.002915 0.544751 0.333030 -0.709462 0.418633 -0.038950 -0.371653 0.060692 -0.156165 0.632477 -0.517375 -0.273768 0.242935 -0.206747 -0.462265 -0.423622 0.115872 0.293175 -0.262766 0.200143 -0.370940 -0.081527 0.544056 -0.411384 0.499585 0.270328 -0.189522 0.255656 -0.235107 -0.096355 -0.261570 -0.300197 -0.282977 -0.172489 -0.452372 0.398944 -0.111820 0.513336 0.395937 0.082055 -0.496390 0.484208 0.538946 -0.626606 -0.244643 0.370459 0.301406 -0.512649 0.467324 0.432555 -0.701129 0.176833 -0.278812 -0.348753 -0.212220 -0.337225 0.647058 0.285121 0.485604 -0.219385 0.203110 0.034911 0.372651 0.138985 0.006745 0.258186 0.850326 0.660753 0.055474 -0.220579 -0.654368 0.272304 -0.617710 -0.612434 0.290181 0.283131 -0.536514 0.072670 -0.112719 0.760339 0.347508 -0.297548 -0.335710 0.385444 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__final_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.633927 0.975500 1.559565 -3.780122 3.969996 3.120803 1.404869 -0.563785 -3.013205 -2.012660 -0.273720 -4.536187 -3.330879 4.989617 -1.760987 1.987533 7.403381 1.281345 -1.022477 -0.324843 3.322365 -0.249209 6.298922 5.478103 -4.479703 -0.319237 1.384605 2.159789 -0.792073 3.411211 -1.584097 -5.574256 1.963912 -1.818977 0.740585 -2.820823 0.504216 -0.458057 0.829811 -7.122015 0.889461 1.093446 -0.951566 -1.338987 -0.959439 0.609463 6.092173 3.989681 -1.575224 -0.054965 2.923291 2.070031 -0.800036 1.318177 0.905035 0.823175 0.697232 -0.206325 -2.675959 -1.497861 -1.150976 -2.019693 -0.256449 4.406691 5.206824 0.703693 -0.054816 1.435747 -0.411140 0.913726 0.731295 0.918889 1.759199 1.412833 2.362748 -3.049945 -1.278876 -7.486891 -1.126217 -9.197777 -3.280325 -2.489578 2.358950 1.049451 1.919384 -1.538339 5.203537 -0.724187 1.353575 3.544791 6.807556 -4.304648 -2.230830 -4.376188 -2.580142 1.539909 -2.436980 -0.088511 1.298998 -0.708514 -4.233952 -3.573360 1.031239 1.201501 -1.529159 -2.422272 0.528199 3.731140 -4.055439 -2.281494 -3.962684 1.676391 -0.153432 -7.505432 -1.565662 -1.517995 1.968142 0.864239 -1.757787 -4.672688 1.288665 3.428467 -2.156598 -2.246206 -1.268662 4.651524 2.163375 0.458115 1.365340 0.035203 1.637441 5.853980 3.682930 -2.416568 -0.616009 0.143375 -2.459085 -0.435347 -3.249711 -1.352973 1.149660 -4.382582 1.124959 3.925991 -3.161340 -0.997098 0.796916 -1.146387 3.037779 13.557579 -1.570693 3.853434 1.557084 -5.759261 3.085673 -1.392328 -1.673660 -0.147873 2.871155 2.283682 -5.170290 -3.775993 3.046102 4.895831 3.670909 -4.196619 -0.110927 -1.397773 0.132154 -0.997825 0.139369 1.804353 -0.168638 -3.587692 -1.235935 3.604285 8.646784 -2.063194 -4.483475 2.448235 3.007629 -0.151575 -3.413145 -1.599629 -2.871234 0.314562 2.260338 -0.582260 2.935653 6.347017 -9.169404 4.149547 -0.330824 -1.529986 3.501488 0.529517 -2.704240 -3.992195 0.506677 5.138800 5.375314 0.324475 1.005671 -0.498016 -3.878545 -0.498763 0.856199 2.326702 -1.457437 2.014929 0.316853 -4.552250 -3.387594 -1.749193 -1.450281 -1.805236 -1.662811 1.991772 1.337865 -8.807600 6.497728 0.045494 -1.104848 0.761451 -1.610292 3.769378 -4.794380 -6.053743 2.690318 -1.074917 -1.805996 -0.993295 0.287632 3.178568 1.006439 1.732415 -2.493157 -6.451503 3.704217 0.503197 4.188637 1.868411 1.648930 4.508170 0.700500 -1.791619 -3.820141 -3.867444 2.040983 -0.669988 -3.752570 -1.015431 -1.474832 4.392526 5.018408 -0.933523 -2.220158 -1.968605 4.360229 -4.394410 -0.555793 3.788031 1.329407 -3.676679 0.561193 4.593612 -4.329072 -2.471479 -3.072094 0.508102 -1.768306 -4.767669 0.620183 -2.394769 1.159990 2.360425 -0.380032 -1.767710 1.364075 1.200707 0.201377 -0.010906 5.204640 4.894893 -2.978676 0.832938 -4.397838 2.298432 -6.811219 -5.767698 1.915700 -1.107748 -2.180785 0.279798 0.464550 3.330944 -1.247785 1.031349 -1.035686 -0.539418 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__partial_sort >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.701000 0.320572 1.080454 -1.674488 1.496105 0.854497 0.555559 -0.293370 -1.382053 -0.900996 -0.163787 -1.349957 -1.257970 2.140124 -0.812317 0.668288 3.246815 0.875716 -0.394415 -0.709132 1.727690 -0.963052 2.763632 2.634976 -2.264361 -0.097470 1.190603 1.375733 0.548061 1.518664 -0.771933 -1.574671 0.833145 -1.063167 0.685741 -1.920633 0.306070 0.012554 0.173258 -3.413529 0.307634 -0.325879 -0.430284 -0.340137 -0.336376 1.252206 2.464381 1.741181 -0.976366 0.331287 1.590835 0.770552 -0.304536 0.547808 0.307162 0.560417 0.872105 0.535879 -0.856864 -0.316631 -0.379353 -1.510230 0.340163 2.022944 2.541593 0.137713 0.122760 0.647141 0.035403 0.386399 0.474794 0.437935 0.578044 0.459488 1.203664 -2.494964 -0.265328 -4.480121 -0.513206 -5.117913 -1.372005 -1.349057 1.051114 -0.656247 0.791122 -0.012858 2.321136 -0.008669 0.632657 1.502010 2.767302 -1.900856 -0.854099 -1.714177 -1.191469 0.830446 -1.159463 0.011415 0.873034 -0.121443 -1.638089 -1.812694 0.982853 0.503700 -0.823846 -1.033363 -0.039897 1.868146 -2.091007 -1.106870 -1.884180 0.379543 -0.266604 -3.189911 0.021830 -1.225484 2.118052 0.242723 -0.517616 -1.927253 0.379694 1.831577 -0.751383 -0.943452 -0.478538 2.063796 0.976798 0.043009 0.375632 -0.163324 0.393996 2.283763 2.126024 -1.127068 -0.480380 0.394348 -1.612438 -0.332199 -1.899064 -0.539540 1.373777 -1.846529 0.321176 1.443082 -1.346651 -0.646895 1.951493 -0.575364 1.434831 6.197472 -0.400708 1.480525 0.731113 -2.357276 1.133689 -0.323777 -0.458974 0.626402 1.530406 0.784709 -2.915996 -1.711916 0.829763 2.107091 1.519746 -2.298449 -0.955832 -0.910530 -0.110026 -0.101920 -0.041438 0.584040 -0.505613 -1.358689 -0.531080 1.190583 3.638685 -0.983881 -1.884994 0.675652 0.909834 -0.851540 -2.371530 -0.622019 -1.084642 0.232539 0.450780 -0.284836 1.293700 2.671828 -4.901575 1.850768 -0.564501 -0.587300 1.394516 0.220011 -0.951724 -2.544542 0.480243 1.986808 2.385191 0.123518 0.309863 0.260681 -1.908428 -0.201867 0.227839 1.160078 -0.813034 0.966040 0.467673 -1.931211 -1.516157 -0.474607 -0.322700 -0.768499 -0.335902 0.910517 0.004054 -4.507482 2.587778 -0.469939 -0.582679 0.700065 -0.532532 1.515031 -2.263361 -2.607472 1.148214 0.037601 -0.597426 -1.102657 0.095440 1.741752 -0.038347 0.471064 -1.164332 -2.967802 1.250510 -0.483249 1.447451 0.873140 0.661682 2.501033 -0.098206 -0.658907 -2.204414 -0.757580 0.459662 -0.448138 -1.391910 -0.692293 -0.552921 1.822996 2.578734 -0.282281 -0.440700 -0.233032 2.326750 -2.357069 -0.686917 1.501937 1.462355 -1.242490 0.748350 1.790099 -2.243531 -1.282814 -1.225727 -0.286805 -0.138990 -1.879172 0.820380 -1.226101 0.642990 0.945701 0.166849 -0.668215 1.037381 0.441759 0.329841 -0.075946 2.363070 3.417089 -1.542520 0.107402 -1.771084 0.988650 -3.010411 -2.199164 0.425469 -0.076219 -0.688641 0.426895 0.206312 1.641276 -0.214803 0.246366 -0.266051 -0.371642 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition_pivot >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.557309 0.903714 1.556009 -3.667744 3.439126 2.798319 1.139339 -1.144557 -2.521036 -1.503520 -0.069585 -3.924897 -2.688937 4.111007 -1.834855 1.799690 6.396085 0.829544 -1.029268 -0.731012 3.167243 -0.014235 5.884062 5.132109 -4.292086 -0.390976 1.600555 2.288627 0.075591 2.427688 -1.655483 -4.164448 1.713179 -2.001314 0.426039 -2.496222 0.590377 -0.458924 1.212084 -6.026100 0.813360 -0.450287 -1.269489 -0.948298 -1.047137 1.202090 5.473809 3.602076 -1.474157 -0.217305 3.160342 1.831894 -0.835145 1.130960 0.457317 0.527281 1.090809 0.489733 -1.787930 -1.661896 -0.856799 -1.407101 0.080158 4.181614 4.722012 0.865380 -0.086271 1.612989 0.113958 0.664393 0.511801 0.987765 1.407627 1.757757 2.062496 -3.704793 -0.627932 -7.367935 -1.140307 -7.655759 -2.772227 -2.176016 1.472930 -0.106927 1.948044 -0.820130 4.544987 -0.172047 1.077964 3.237425 5.911371 -4.056752 -1.774919 -3.600723 -2.371254 1.172477 -2.062392 0.554100 0.877850 -0.212677 -3.661357 -3.296893 0.973555 1.079513 -1.441393 -2.152387 0.531973 2.757626 -3.348534 -1.834490 -3.280618 1.340112 -0.129888 -6.891655 -1.205720 -1.829142 3.088019 0.169851 -1.344418 -4.421934 0.752387 3.346483 -1.850181 -2.016634 -0.953730 4.014320 2.547924 0.406867 0.990839 -0.164529 1.526502 5.469914 3.090206 -2.247401 -0.754886 -0.117990 -2.586292 -0.531379 -3.123377 -0.831597 1.585026 -3.830118 1.340740 3.822661 -2.594336 -0.933529 2.261450 -1.002432 2.639261 12.873068 -1.280861 3.484481 1.617723 -4.912198 2.355748 -1.524664 -1.294771 0.218174 2.090009 2.012707 -5.678345 -3.466742 2.714511 4.124525 3.093206 -4.320462 -0.231586 -1.061185 0.006444 -0.967171 -0.131579 1.448054 -0.397196 -3.012319 -1.095355 3.561167 7.926213 -1.806644 -3.576942 2.175139 2.170336 -0.362083 -3.397897 -1.674953 -2.212682 0.362037 2.302331 -0.053047 2.781272 5.584691 -8.401311 3.317867 -0.112733 -1.317331 2.947353 0.548714 -2.606952 -3.108344 0.738012 4.515866 4.269452 0.212586 0.803485 -0.198528 -3.522261 -0.405456 0.923316 1.999858 -1.527213 1.747385 0.983489 -4.146923 -3.076408 -1.294981 -1.271751 -1.225513 -1.320646 1.960589 -0.005459 -8.426577 5.776604 -0.059922 -1.110425 0.792858 -2.072460 3.480099 -4.324033 -5.071934 2.484511 -0.763938 -1.006621 -1.181280 0.655068 2.687764 0.724127 2.144055 -2.899030 -6.058203 2.842559 0.174634 3.453009 1.644115 1.675287 3.804861 -0.476858 -1.144327 -4.068084 -2.964438 1.875738 0.164812 -3.754192 -0.916111 -1.171263 3.811588 4.521216 -1.265186 -1.789908 -1.232828 3.736515 -4.378800 -0.816650 2.936970 2.245288 -3.655102 0.383208 3.680515 -3.758386 -2.096593 -2.684177 -0.261613 -1.572845 -4.481365 0.835430 -1.820734 1.273350 2.148606 -0.176461 -1.276965 1.564726 0.878610 0.459499 0.373006 4.546477 5.421459 -2.288455 0.052088 -4.122468 2.108819 -6.161476 -5.409711 2.124288 -1.300841 -1.781541 0.188976 0.333047 3.533083 -1.073333 0.711330 -0.721712 -0.338302 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__heap_select >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.470530 -0.017324 1.041291 -3.324827 2.950987 1.888373 1.196998 -0.648235 -2.961787 -1.525300 0.095563 -3.212180 -2.004481 4.273844 -1.320810 2.266994 6.221986 1.370238 -0.925940 -0.748961 3.475030 -1.406075 5.275313 4.845851 -3.888115 -0.299199 1.383115 2.127501 0.292764 2.351227 -1.066465 -3.460275 1.732703 -2.711375 0.531017 -3.263978 0.656007 0.489009 1.352016 -6.236943 0.858490 -0.148334 -0.447790 -0.985745 -1.057693 1.265869 4.384130 3.470257 -1.740641 0.666990 2.940809 1.154785 -0.731481 1.124388 0.468711 1.029155 0.456285 0.645257 -1.915759 -1.068044 -0.676969 -2.163890 0.685495 3.593392 4.640332 0.247700 0.091652 1.824239 0.122085 0.746742 1.173377 0.655594 0.855699 0.296415 2.222727 -4.520830 -1.122884 -8.056228 -1.051970 -8.973328 -2.647958 -1.749294 2.275707 -0.421925 1.844988 -0.571444 4.185252 -0.477852 0.749127 3.297120 5.150534 -3.734804 -1.841468 -3.512319 -2.235655 1.480487 -2.135167 -0.147446 1.863971 -0.325787 -3.348544 -3.163959 1.549792 1.242497 -1.376884 -2.842493 0.436339 3.264146 -3.566739 -2.575994 -2.868702 1.579368 -0.563354 -6.146065 -0.079377 -2.046569 2.768231 0.514047 -1.220899 -3.900675 0.690858 2.998238 -1.591815 -2.075883 -0.814779 3.777020 1.876135 0.573093 1.018443 -0.134681 0.888230 5.128337 3.397098 -2.308133 -0.614971 0.510392 -2.440091 -0.063579 -3.300677 -1.536312 2.039976 -3.900723 0.713005 2.984111 -2.587234 -0.965493 3.208647 -0.420779 2.348953 11.873179 -0.598695 3.382062 1.873403 -4.460737 2.539562 -1.083229 -0.763242 0.853416 2.603635 1.094423 -5.414778 -3.339852 1.927062 3.928062 3.127985 -4.169360 -1.701617 -1.384412 0.057501 -0.197804 -0.282959 1.320132 -0.331512 -2.962208 -0.868717 2.754319 7.439142 -1.817293 -2.563919 1.823258 2.371363 -1.436050 -4.543567 -1.527909 -2.991848 0.330084 1.164066 -0.326772 2.423661 5.211619 -8.259827 3.396594 -0.935953 -0.764712 2.449810 0.766647 -2.509211 -5.017016 0.271412 3.654834 4.690011 -0.119433 1.184907 0.541916 -3.390531 -0.312209 0.572145 1.524380 -1.217049 1.660534 0.265583 -3.466010 -2.541129 -0.359560 -1.258277 -1.517828 -0.548995 1.874465 0.903322 -7.370583 4.766975 -0.582843 -1.203535 1.319413 -1.029972 3.498843 -4.051366 -4.799425 2.487891 -0.174318 -1.019217 -1.657943 0.481870 2.992657 0.255350 0.824251 -1.831549 -5.700987 2.623176 -0.566550 3.098457 1.604296 0.752157 4.005391 -0.144580 -1.386194 -3.975057 -2.410933 0.571153 -0.656072 -3.061603 -1.490994 -1.000832 3.728404 4.183725 -0.335137 -1.634110 -0.598249 4.177642 -4.293278 -0.862312 3.093616 2.184297 -3.016400 0.942289 3.743458 -4.378173 -1.692890 -2.356336 0.242790 -0.710156 -3.669671 1.352428 -1.530329 1.392094 1.310362 0.228052 -0.828556 1.638325 1.215466 0.580392 -0.166227 4.768644 5.254444 -2.445676 -0.297636 -3.557998 1.641001 -5.592800 -4.645711 1.265242 0.123554 -1.986821 0.724758 0.765900 3.330549 -0.592873 0.629106 -0.692721 -0.549232 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.758675 -0.251943 -0.027478 -1.866745 1.548593 0.633489 0.640595 -0.471486 -1.485275 -0.671315 0.216830 -2.118814 -0.730978 1.618394 -0.657378 1.612732 3.229875 0.466406 -0.512901 -0.495198 1.537204 -0.370179 2.954763 2.622279 -1.851591 -0.118807 0.461271 1.220612 0.040587 0.447507 -0.664525 -1.549158 0.909023 -1.756884 0.008267 -1.340840 0.298151 0.142899 1.294807 -2.981759 0.540225 -0.284604 0.205054 -0.470583 -0.694141 0.678663 2.258094 1.789060 -0.769505 0.362858 1.759937 0.453654 -0.180377 0.641643 -0.022189 0.577783 0.382945 0.112270 -0.900761 -1.004694 -0.277697 -0.705491 0.486503 1.729498 2.219500 0.114831 -0.232205 1.301925 0.605130 0.215440 0.869404 0.489515 0.081638 0.058102 1.072735 -2.652719 -0.260404 -4.105275 -0.650773 -4.413480 -1.512749 -0.691813 1.063171 -0.512679 1.247603 0.131531 2.211719 -0.445969 0.458120 1.362156 2.195662 -2.088042 -1.020312 -1.519981 -0.907410 0.641805 -0.973867 -0.086014 1.219322 0.302765 -1.740337 -1.178396 1.031810 0.660572 -0.725376 -1.611987 0.589570 0.954736 -1.502154 -1.501513 -1.482800 1.085791 -0.162483 -3.128874 0.138911 -0.942368 1.395002 0.052100 -0.683245 -2.282602 0.152180 1.257583 -0.920988 -0.914961 -0.533572 1.617418 1.187578 0.484438 0.808181 0.087030 0.585430 3.275200 1.554949 -1.339514 -0.493704 0.243584 -1.357247 0.116307 -1.528178 -1.000060 0.953422 -2.195904 0.853762 1.548283 -1.339384 -0.423045 1.950225 0.059964 0.977710 5.861243 -0.273784 1.922535 1.324344 -2.084753 1.122772 -1.099613 -0.222666 0.315445 1.129865 0.454670 -2.682008 -1.755837 1.079082 1.909122 1.582730 -2.278529 -0.637585 -0.220852 0.425331 0.041175 -0.452011 0.778763 0.282260 -1.570197 -0.287906 1.566800 4.145985 -0.645528 -0.597791 1.054624 1.304958 -0.711217 -2.486804 -1.051772 -1.975543 0.094648 0.637032 0.346311 1.022278 2.663633 -3.800639 1.399001 -0.434289 -0.075093 1.520106 0.672321 -1.527370 -2.765147 -0.094818 1.656414 2.316039 -0.515086 0.874582 0.339350 -1.458927 -0.167487 0.301203 0.594996 -0.606248 0.774844 0.195500 -1.819517 -0.869078 -0.094096 -0.552649 -0.469590 -0.092801 1.120348 0.575612 -3.525414 2.305177 -0.247458 -0.943744 0.761185 -0.913130 2.014214 -1.976701 -1.982468 1.424876 -0.280833 -0.118370 -0.736808 0.477627 1.292006 0.070423 0.724699 -1.102465 -2.612114 1.474988 -0.159423 1.672291 0.862158 0.075339 1.551406 -0.678518 -0.542887 -1.973826 -1.086733 -0.537504 -0.265549 -1.714698 -0.602686 -0.527517 1.886523 2.023357 -0.390791 -0.676934 0.058642 1.789796 -2.562360 -0.295731 1.471959 1.289749 -1.746013 0.638733 1.827971 -2.314781 -0.567197 -1.181359 0.038562 -0.483895 -1.923168 0.816893 -0.649982 0.778093 0.723994 -0.073978 -0.061835 0.834019 0.553427 0.394801 -0.071769 2.495912 2.704646 -0.599097 -0.496161 -1.963480 0.610506 -2.833081 -2.401634 0.986406 0.106722 -1.470966 0.278598 0.692316 2.022807 -0.430030 0.121218 -0.686485 -0.061300 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__make_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -2.032451 -1.202162 -0.593591 -4.737359 4.629934 2.672810 2.223462 -1.632014 -5.077820 -1.276307 1.627780 -6.733066 -2.318159 5.616873 -1.632866 5.129347 8.704706 1.097255 -1.998730 -0.716994 4.337981 0.272600 8.280894 7.061639 -4.765788 -0.097021 -0.664625 1.696936 -0.633449 1.279904 -1.531454 -4.920030 3.308469 -5.111491 -1.078535 -2.494006 0.372033 0.639749 4.614371 -7.876454 1.623295 0.573005 0.631456 -1.611687 -1.867246 1.151621 5.447094 5.009684 -0.990362 1.674761 4.212072 0.265514 -0.289458 1.753522 1.034673 1.293499 -0.010498 0.021594 -3.339021 -2.780877 -1.124148 -1.063574 0.098086 4.611941 5.894381 0.547607 -1.016221 3.283353 1.099754 0.986854 2.422959 1.277609 0.798147 0.245421 2.785021 -5.201566 -1.406443 -8.720923 -1.996045 -10.810231 -4.382281 -0.713816 4.178505 -0.059207 3.554356 -1.075432 5.772092 -1.229155 -0.237603 3.779136 6.739345 -5.902465 -3.165398 -3.775511 -1.868900 1.284695 -2.696129 0.259897 3.804559 -0.238328 -5.520872 -2.727264 2.212965 1.904627 -1.796341 -4.012959 1.840110 3.266395 -3.836740 -3.984196 -3.063004 3.697074 -0.138060 -8.735166 -0.735852 -1.559265 1.937746 0.949766 -2.767251 -5.650535 1.127469 2.462721 -2.865288 -3.056777 -0.716508 4.746158 3.330719 2.216072 2.124108 1.123209 2.124694 9.339583 2.787869 -3.627420 -0.063731 -0.207864 -1.960778 1.792543 -3.213801 -2.953413 1.264198 -5.954302 2.787970 4.163643 -3.732687 -0.416884 3.288467 1.631179 1.713489 14.807055 -0.952671 6.752987 4.087884 -5.415350 3.422798 -3.337850 -0.337462 0.249396 2.723587 0.992996 -6.290065 -4.920030 3.950576 5.630267 4.486572 -6.570443 -0.739016 -0.433103 1.249813 -0.612202 -0.410486 2.253966 1.988004 -4.628499 -0.816658 4.955083 11.665420 -2.823063 -2.234058 3.312404 3.082723 -0.287815 -5.645031 -3.088544 -4.917965 0.454982 2.562495 1.192123 3.047179 7.536350 -9.043973 4.445638 -0.856351 -0.876173 4.764429 2.256164 -5.285571 -5.718814 -1.258084 4.136634 6.302529 -0.328761 1.523553 1.039949 -4.460680 -0.536187 0.965636 0.762484 -1.411361 2.295634 0.157937 -3.811822 -2.400160 -0.397512 -1.890907 -1.444772 -0.611673 3.530289 2.618699 -9.223215 5.820071 0.502263 -2.778863 1.159761 -2.057445 5.574167 -4.910094 -5.426180 3.678486 -1.720868 -1.756280 -1.528889 1.241193 2.491301 1.068582 2.605631 -2.899693 -6.827618 5.229042 0.187357 5.531745 2.468837 -0.095683 3.507043 -1.219426 -2.323872 -4.304970 -4.427324 0.295568 -0.560392 -5.228472 -1.096428 -1.734907 5.438651 4.550992 -0.252080 -3.385860 -1.560918 4.764952 -6.508193 -0.455397 4.713929 2.949527 -5.214091 1.134916 5.687612 -5.812452 -0.505681 -3.189986 -0.321341 -2.636692 -4.760469 1.987863 -0.685203 2.429236 0.927876 -0.259881 -0.051340 1.785123 1.308226 0.348948 0.174201 6.851325 6.149572 -2.233815 -1.232536 -5.755439 2.501660 -7.073126 -7.396503 3.461823 -0.114654 -5.257572 0.225004 1.645025 5.560299 -0.858784 -0.826700 -2.552687 0.536757 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(Job*, Job*) = -0.404698 0.758467 1.004589 -1.107468 2.095378 1.811630 0.782425 -0.096136 -1.458442 -0.975707 0.223255 -2.329741 -2.038200 2.361771 -0.693923 0.553288 2.991925 0.372052 -0.437348 -0.037724 0.937190 0.253342 2.893323 2.362583 -1.925334 0.267751 0.246792 0.300239 -0.727518 1.967497 -0.916648 -3.064054 1.236845 -0.358236 -0.027561 -0.590611 -0.262064 -0.789173 0.173303 -2.930466 0.166724 1.075532 -1.193624 -0.494900 -0.083427 0.535551 3.032217 1.545880 -0.266712 0.651286 0.861725 0.485401 -0.126819 0.516340 0.987919 0.062097 0.553739 -0.105406 -1.545836 -0.347762 -0.746181 -1.117548 -1.090851 1.802664 2.064337 0.208484 -0.304153 0.101344 -0.793392 0.420570 0.209722 0.589853 1.474600 0.960964 1.149652 -0.030753 -0.763250 -2.199339 -0.695295 -3.787143 -1.713016 -0.922998 1.718171 0.745806 0.648021 -1.160544 2.319515 -0.220253 0.187119 1.297885 3.444780 -1.936011 -1.096213 -1.292604 -0.722524 0.381705 -1.095023 0.269951 0.335372 -0.882749 -2.096181 -1.494735 0.539458 0.243827 -0.688068 -0.526809 0.013483 1.904431 -2.124578 -0.557094 -1.926298 0.461014 0.325612 -3.216547 -1.467217 0.284721 0.857581 1.022713 -1.184480 -1.599469 1.058144 1.168371 -1.024281 -1.020509 0.007501 2.088901 0.791997 0.667850 0.660680 0.398055 1.222501 2.445154 1.661904 -0.727125 0.142365 -0.373482 -0.237528 0.485832 -0.614541 -0.358578 -0.449401 -1.564906 0.881109 1.425884 -1.415799 -0.388747 -0.909957 -0.262978 0.838722 4.912709 -0.912483 1.939431 0.446712 -2.604272 1.074262 -0.896496 -0.835056 -0.339702 1.287210 1.282055 -1.434294 -1.396286 1.830222 2.431650 1.424864 -2.311143 0.824595 -0.317509 0.243109 -0.828737 0.736855 0.799721 0.632778 -1.486301 -0.578117 1.604553 3.941336 -1.349100 -3.232917 1.027946 0.610250 0.997344 -0.686143 -0.443406 -0.166415 0.271609 1.510201 -0.308055 1.140684 2.687067 -3.967966 1.952659 -0.244202 -1.232438 1.814928 0.552113 -1.249440 -0.409669 0.033666 2.173012 2.160822 1.203983 -0.114268 -0.429261 -1.819890 -0.349224 0.427059 0.845509 -0.621151 1.186849 0.239479 -2.047069 -1.606851 -1.648693 -0.270716 -0.566940 -1.243162 0.985363 0.599516 -4.767289 2.741973 0.565166 -0.690185 -0.365638 -0.452226 1.584781 -1.812723 -2.951516 0.966291 -1.356738 -1.932137 -0.168755 -0.319292 0.688482 1.006721 1.008463 -1.019540 -2.514399 2.277024 0.662972 2.193128 0.969243 0.799091 2.466056 0.556097 -1.289665 -1.053122 -2.057491 2.417451 -0.787101 -1.409133 0.096518 -0.970020 1.760222 1.973629 -0.078351 -1.165225 -1.935734 1.692779 -1.928174 -0.075971 1.897945 0.968055 -1.284926 0.554144 2.133178 -1.302091 -0.797065 -1.308899 -0.298770 -1.423591 -1.823148 0.065163 -1.063270 0.358407 1.033299 -0.160474 -1.109133 0.348251 -0.082582 -0.203552 -0.107182 1.975002 2.480706 -2.062737 1.020712 -1.941853 1.567023 -2.734287 -2.771400 1.060099 -0.701044 -1.099044 -0.387796 -0.129534 0.951898 -0.267503 -0.454149 -0.841503 0.277786 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__pop_heap >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -1.129542 0.050513 0.790821 -2.906925 3.366146 2.053516 1.444903 -0.656057 -3.115148 -1.365178 0.758249 -4.256995 -2.514614 3.884227 -1.339924 2.133144 5.956232 0.871749 -1.118668 -0.750136 2.450532 0.089745 5.628794 4.905373 -3.622911 0.104476 0.216814 1.258047 -0.299673 1.793474 -1.365652 -3.882978 2.226539 -2.231251 -0.096770 -1.725325 0.002121 -0.478175 1.649545 -5.587277 0.731258 0.572906 -0.794713 -0.866104 -0.692831 1.855452 4.519695 3.204073 -0.786629 1.195831 2.604563 0.578259 -0.213958 1.063760 0.997546 0.529247 0.825606 0.287197 -2.347462 -1.277198 -0.994561 -1.490949 -0.594003 3.377467 4.113834 0.337501 -0.594644 1.307668 0.188909 0.689965 1.256476 1.022212 1.552201 0.868465 2.120445 -2.635259 -0.975031 -5.903677 -1.311285 -8.122985 -3.054203 -1.281107 3.061085 -0.291611 1.700287 -1.013377 4.227943 -0.450079 0.261628 2.572155 5.193454 -3.786586 -2.095119 -2.477129 -1.353452 0.898062 -1.974818 0.381468 2.080685 -0.476466 -3.749424 -2.183747 1.427971 0.813449 -1.319029 -1.954118 0.675119 2.799070 -3.255380 -1.827829 -2.980159 1.792107 0.345811 -5.994826 -1.095505 -0.767784 2.301578 1.020171 -1.935713 -3.298920 1.136478 2.027273 -1.945993 -1.712898 -0.362633 3.593355 2.005019 1.296472 1.247226 0.762575 1.662512 5.380159 2.715620 -2.109434 -0.152788 -0.144170 -1.468157 0.852828 -2.097512 -1.363791 0.933203 -3.512660 1.949219 2.588203 -2.616296 -0.725342 1.456398 0.284383 1.507961 9.901957 -1.076477 4.092592 1.946322 -4.069521 1.977719 -1.937267 -0.614432 0.098975 2.290624 1.349946 -3.859466 -3.088917 2.786052 4.160843 2.855444 -4.734678 0.186631 -0.442648 0.597404 -0.817830 0.273342 1.468534 1.006112 -2.826209 -0.784232 3.067064 7.610794 -2.054776 -3.365263 1.772735 1.694355 0.438950 -3.002019 -1.485853 -1.821511 0.497989 2.090807 0.343954 2.163111 5.096314 -7.302103 3.249198 -0.650157 -1.108110 3.294937 1.385757 -2.898282 -3.064969 -0.283693 3.250507 4.253675 0.799981 0.318021 0.290339 -3.224264 -0.468192 0.667324 1.236147 -1.135518 1.812270 0.553103 -3.073975 -2.188956 -1.480941 -0.742995 -0.775989 -1.037654 2.164200 1.021765 -7.896480 4.439570 0.332950 -1.717276 0.197035 -1.279814 3.400871 -3.559788 -4.358020 2.142414 -1.544505 -2.181418 -1.203944 0.199343 1.770539 0.869011 2.013437 -2.166877 -4.805342 3.848091 0.245290 3.849050 1.745264 0.563015 3.743231 -0.409598 -1.730356 -2.823036 -3.008247 1.812602 -0.868437 -3.115842 -0.070267 -1.357239 3.412120 3.591424 -0.386797 -1.902499 -1.658509 3.360984 -4.381910 -0.472467 3.183376 2.530443 -2.842135 1.367176 3.762956 -3.630108 -1.032798 -2.306681 -0.750957 -1.853878 -3.268064 1.096765 -1.356387 1.331101 1.218739 -0.023036 -0.841524 1.174957 0.351119 0.109931 0.043617 4.304796 5.393107 -2.567513 0.276772 -3.851126 2.338905 -5.028598 -5.031423 2.025475 -0.641620 -2.699806 -0.026964 0.492464 3.064018 -0.442789 -0.868573 -1.751846 0.570386 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__adjust_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_iter) = -3.077926 -2.247174 0.870655 -7.380177 6.156553 4.846582 2.884736 -3.694015 -7.978315 -0.779706 2.783037 -8.318232 -2.516964 9.407035 -3.010718 6.455391 12.247285 2.050568 -3.712892 -1.632681 7.420374 -0.571097 11.235526 10.624409 -7.411833 -0.384371 -0.106494 3.075122 1.399739 3.231673 -1.876055 -5.656971 4.171445 -6.658045 -1.032570 -5.179771 0.646328 1.833035 6.418241 -11.940825 2.170762 0.119109 0.257376 -2.053267 -1.938813 3.075807 6.683944 7.036064 -1.414134 2.637544 6.292982 0.993325 -0.886485 1.950147 2.413102 1.784953 2.784516 2.253360 -3.588116 -2.980136 -1.461249 -0.577765 0.610924 7.337910 9.778867 1.026559 -0.723424 3.508135 1.815349 1.784872 3.554716 1.561688 0.420006 0.938389 3.458355 -8.639704 -1.124309 -14.695780 -1.860330 -15.291763 -5.143675 -0.333057 5.727425 -1.840883 4.244064 -1.677080 7.882926 -0.483863 -1.782008 5.676130 9.871254 -7.463997 -3.810079 -4.736971 -4.145744 1.888617 -3.855420 1.229705 5.691426 -0.301410 -7.334575 -4.833420 3.039806 2.883711 -2.724634 -4.542127 1.909441 6.352742 -5.284690 -5.017426 -1.778120 5.839144 -0.948381 -12.373030 -1.423056 -5.446842 3.732396 0.568195 -3.785290 -7.205784 1.543528 4.219362 -3.887492 -4.076112 -0.780123 7.203167 5.083890 3.024274 0.835692 0.665244 2.227340 11.530229 2.882936 -5.656963 0.813404 -0.340886 -3.034078 2.696751 -6.329574 -3.241683 3.293208 -7.201619 3.181581 5.392229 -4.849242 -0.615059 6.889070 2.475960 2.149015 24.711135 -1.075354 9.777545 5.707850 -7.694951 4.487892 -2.696858 0.303855 1.764787 4.029968 0.623682 -11.530248 -7.277502 5.136891 8.201938 6.117951 -10.349158 -2.760302 -1.358306 -0.377998 -0.876175 0.077968 2.081933 0.369960 -5.789867 -1.799616 6.130723 16.272747 -4.212121 -4.524862 3.624556 4.167575 -2.186255 -8.497807 -3.716316 -5.838029 1.682380 2.499237 0.973979 5.576214 10.372776 -16.038119 7.081805 -1.094332 -1.508272 7.206265 2.835310 -7.342286 -8.741570 -1.375653 5.355847 9.210897 -0.144373 0.650854 2.928882 -7.284820 -0.608006 1.046101 0.894277 -2.574021 3.202465 1.568720 -4.932457 -3.939531 0.110154 -2.471522 -2.552310 -1.433783 5.072838 1.717686 -14.114443 7.864236 0.712180 -2.980968 1.645304 -2.546476 7.217624 -7.058744 -7.793051 4.478750 -0.964292 -2.081713 -3.894413 1.266624 4.445814 0.909988 5.389656 -5.114135 -10.281151 5.858604 -2.482953 7.311314 3.320994 -0.124750 5.119903 -1.612855 -2.510675 -7.775459 -5.775124 1.923841 0.620444 -7.338394 -0.980141 -2.162285 7.449890 5.980435 0.183012 -5.404605 -2.339008 8.380765 -8.197831 -0.999300 5.785397 4.353372 -7.201659 1.193065 7.155170 -8.739374 -0.586298 -3.919000 -2.521869 -3.327910 -6.028103 4.252023 0.423245 4.260971 -0.291140 0.832156 -0.163474 3.241365 2.080151 0.598577 1.570622 9.874289 10.141818 -3.662502 -1.754569 -8.020902 4.341947 -9.674819 -9.984226 4.087438 -1.153623 -6.905200 0.739538 1.185213 8.245884 0.139777 -0.577084 -2.449251 1.193333 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.165260 0.172609 0.480746 -0.484062 0.447822 0.313515 0.134964 -0.237612 -0.392331 -0.110170 -0.085159 -0.343299 -0.225132 0.590460 -0.258322 0.251790 0.858581 0.266907 -0.150723 -0.209319 0.451958 -0.361041 0.743548 0.722732 -0.616053 0.030276 0.391064 0.384724 0.163231 0.676144 -0.531000 -0.335889 0.156621 -0.315402 0.221037 -0.562029 0.031921 -0.007971 0.137160 -0.943468 0.084497 -0.139213 0.000000 -0.092058 -0.059386 0.236794 0.697015 0.438310 -0.137585 0.070171 0.397552 0.192967 -0.008684 0.141448 0.287064 0.377961 0.688520 0.192225 -0.209090 -0.048235 -0.127973 -0.362255 0.142611 0.584705 0.684370 0.078163 0.031374 0.094888 -0.003155 0.030019 0.107377 0.136045 -0.031060 0.261319 0.201672 -0.796593 0.275509 -1.074509 -0.127360 -1.101609 -0.354148 -0.375697 0.051978 -0.197124 0.363493 0.114118 0.654595 -0.043972 0.176718 0.061937 0.764062 -0.653191 -0.200065 -0.344286 -0.363927 0.113227 -0.271070 -0.049480 0.151611 -0.099518 -0.411639 -0.550457 0.465967 0.252530 -0.242562 -0.043520 -0.024584 0.518540 -0.564055 -0.431203 -0.462307 -0.051883 -0.248215 -0.816738 0.107978 -0.399217 0.523123 0.028814 -0.170817 -0.748738 0.159455 0.655947 -0.222759 -0.329530 -0.225652 0.588729 0.283876 -0.046279 0.023602 -0.196413 0.096422 0.612708 0.561954 -0.340799 -0.081432 0.106282 -0.518426 -0.140091 -0.493050 -0.159123 0.203229 -0.494352 -0.059025 0.447341 -0.361900 0.101221 0.594377 -0.098148 0.381370 1.728146 -0.195142 0.372596 0.100062 -0.714254 0.365799 0.008559 -0.142137 0.128487 0.384615 0.258888 -1.008340 -0.492271 0.229349 0.579301 0.391650 -0.600218 -0.345494 -0.355124 -0.102620 0.110372 0.009436 0.093483 -0.246598 -0.383611 -0.195164 0.139806 1.127034 -0.315778 -0.631796 0.199142 -0.072951 -0.333510 -0.724168 -0.181455 -0.354843 0.112542 -0.122526 -0.128442 0.375142 0.713773 -1.435766 0.586789 -0.317021 -0.416063 0.668696 -0.086703 -0.173094 -0.555977 0.111039 0.538850 0.647979 0.035371 -0.015636 0.084840 -0.543664 -0.076265 -0.055906 0.361404 -0.309061 0.279890 0.287846 -0.701010 -0.414784 -0.175035 0.040723 -0.349928 -0.145958 0.237239 -0.105035 -1.267705 0.717965 0.013823 -0.080285 0.344102 -0.080838 0.213447 -0.594583 -0.670520 0.272608 0.104095 0.086817 -0.239364 -0.018914 0.475981 -0.068705 0.106941 -0.454880 -0.767351 0.149694 -0.205129 0.361470 0.246703 0.219186 0.509812 0.140742 -0.121134 -0.565221 0.023968 -0.015833 -0.110237 -0.311000 -0.230287 -0.212106 0.554386 0.736456 -0.006256 0.053225 -0.103853 0.644776 -0.548710 -0.133507 0.382347 0.285474 -0.401566 -0.004434 0.444243 -0.510232 -0.408821 -0.237362 -0.268084 -0.069737 -0.440124 0.266066 -0.342322 0.159695 0.260284 0.010235 -0.233139 0.287408 0.061866 0.064617 0.034427 0.634399 0.808011 -0.331565 0.085889 -0.437206 0.266057 -0.785343 -0.496255 0.087510 0.021690 -0.317486 0.089719 0.105258 0.479110 -0.048319 0.127987 0.076291 -0.227730 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__push_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_val&) = -1.376726 -0.680979 1.210278 -3.149987 2.620616 1.819493 1.108151 -1.151345 -3.210856 -0.812908 0.781307 -3.473039 -1.398566 4.053034 -1.370591 2.222539 5.393489 1.060193 -1.300644 -0.759902 3.242985 -0.886912 4.772794 4.599127 -3.321966 -0.213842 0.225462 1.732669 0.437335 2.067385 -1.032252 -2.862973 1.447172 -2.522312 -0.059907 -2.571810 0.258886 0.829051 2.111339 -5.457399 0.834743 0.345100 -0.265730 -0.798626 -0.661317 1.183446 3.181185 2.886484 -0.743205 1.065106 2.799407 0.504279 -0.388859 0.744936 1.034170 0.822097 1.370297 0.971103 -1.655404 -0.952804 -0.814888 -0.683504 0.386201 3.152157 4.173449 0.354410 -0.352889 1.050942 0.428195 0.782631 1.310521 0.682521 0.431056 0.484364 1.674068 -3.874223 -0.418787 -7.004678 -0.592388 -7.113466 -2.252233 -0.577426 2.600555 -0.219337 1.499401 -1.058094 3.602798 -0.475749 -0.384211 2.599393 4.438035 -3.072099 -1.540014 -2.322054 -2.041830 0.795843 -1.598140 0.166626 1.761083 -0.113791 -3.189949 -2.289500 1.440116 1.042540 -1.127198 -1.599930 0.478023 2.782797 -2.862673 -2.036635 -1.572448 2.452952 -0.051445 -5.423758 -0.450763 -2.272820 1.926943 0.441674 -1.693555 -2.988897 0.866037 2.085212 -1.630988 -1.506199 -0.822682 3.660319 2.095209 0.891614 0.402368 0.078431 0.821920 4.506583 1.807419 -2.299457 0.094543 0.193509 -1.707345 0.621505 -2.817118 -1.201532 1.465036 -3.024235 1.052091 2.205578 -2.159347 -0.373483 2.634253 0.641306 1.264458 11.277249 -0.699591 4.075360 2.162560 -3.282550 2.520891 -0.700293 -0.060493 0.678111 1.865199 0.661839 -5.485260 -3.051609 2.194281 3.531391 2.637447 -4.354159 -1.412144 -0.814504 -0.075560 -0.171960 0.212698 0.908873 0.060788 -2.555477 -0.811459 2.486702 7.289448 -1.702104 -2.764217 1.472426 1.520551 -0.901510 -3.838986 -1.337306 -2.290027 0.530500 1.202027 0.062755 2.396750 4.558042 -7.754131 3.169774 -0.518652 -0.933295 3.118736 0.823359 -2.818211 -4.165680 -0.614340 2.595224 4.221284 0.249466 0.370302 0.956525 -3.135514 -0.194668 0.465477 0.890703 -1.348106 1.578909 0.529867 -2.585564 -1.854398 -0.590879 -1.376749 -1.039379 -0.945947 1.913954 0.659101 -6.851514 3.636802 0.291077 -0.997558 0.862639 -0.810180 2.965539 -3.111884 -3.763610 1.872380 -0.367350 -1.199018 -1.755114 0.356256 1.822477 0.171220 1.586571 -2.112617 -4.832131 2.455811 -1.069028 3.160320 1.401381 0.119405 2.690288 0.164379 -1.068472 -3.456475 -2.403592 1.155043 -0.105598 -2.973512 -0.924583 -0.920386 3.099668 2.910345 -0.014997 -1.931585 -1.188913 3.888928 -3.538600 -0.525896 2.549726 1.417387 -2.941165 0.572872 3.327844 -3.721269 -0.692821 -2.194501 -0.873227 -1.347073 -2.568111 1.622513 -0.421988 1.523989 0.299027 0.119719 -0.679089 1.274030 1.013269 0.055288 0.450515 4.532439 4.754945 -1.744864 -0.157602 -3.312356 1.850197 -4.282210 -4.190092 1.266820 -0.343403 -2.702674 0.313256 0.562006 3.515822 -0.011385 -0.030573 -0.727020 0.305945 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(Job*, Job&) = -0.404698 0.758467 1.004589 -1.107468 2.095378 1.811630 0.782425 -0.096136 -1.458442 -0.975707 0.223255 -2.329741 -2.038200 2.361771 -0.693923 0.553288 2.991925 0.372052 -0.437348 -0.037724 0.937190 0.253342 2.893323 2.362583 -1.925334 0.267751 0.246792 0.300239 -0.727518 1.967497 -0.916648 -3.064054 1.236845 -0.358236 -0.027561 -0.590611 -0.262064 -0.789173 0.173303 -2.930466 0.166724 1.075532 -1.193624 -0.494900 -0.083427 0.535551 3.032217 1.545880 -0.266712 0.651286 0.861725 0.485401 -0.126819 0.516340 0.987919 0.062097 0.553739 -0.105406 -1.545836 -0.347762 -0.746181 -1.117548 -1.090851 1.802664 2.064337 0.208484 -0.304153 0.101344 -0.793392 0.420570 0.209722 0.589853 1.474600 0.960964 1.149652 -0.030753 -0.763250 -2.199339 -0.695295 -3.787143 -1.713016 -0.922998 1.718171 0.745806 0.648021 -1.160544 2.319515 -0.220253 0.187119 1.297885 3.444780 -1.936011 -1.096213 -1.292604 -0.722524 0.381705 -1.095023 0.269951 0.335372 -0.882749 -2.096181 -1.494735 0.539458 0.243827 -0.688068 -0.526809 0.013483 1.904431 -2.124578 -0.557094 -1.926298 0.461014 0.325612 -3.216547 -1.467217 0.284721 0.857581 1.022713 -1.184480 -1.599469 1.058144 1.168371 -1.024281 -1.020509 0.007501 2.088901 0.791997 0.667850 0.660680 0.398055 1.222501 2.445154 1.661904 -0.727125 0.142365 -0.373482 -0.237528 0.485832 -0.614541 -0.358578 -0.449401 -1.564906 0.881109 1.425884 -1.415799 -0.388747 -0.909957 -0.262978 0.838722 4.912709 -0.912483 1.939431 0.446712 -2.604272 1.074262 -0.896496 -0.835056 -0.339702 1.287210 1.282055 -1.434294 -1.396286 1.830222 2.431650 1.424864 -2.311143 0.824595 -0.317509 0.243109 -0.828737 0.736855 0.799721 0.632778 -1.486301 -0.578117 1.604553 3.941336 -1.349100 -3.232917 1.027946 0.610250 0.997344 -0.686143 -0.443406 -0.166415 0.271609 1.510201 -0.308055 1.140684 2.687067 -3.967966 1.952659 -0.244202 -1.232438 1.814928 0.552113 -1.249440 -0.409669 0.033666 2.173012 2.160822 1.203983 -0.114268 -0.429261 -1.819890 -0.349224 0.427059 0.845509 -0.621151 1.186849 0.239479 -2.047069 -1.606851 -1.648693 -0.270716 -0.566940 -1.243162 0.985363 0.599516 -4.767289 2.741973 0.565166 -0.690185 -0.365638 -0.452226 1.584781 -1.812723 -2.951516 0.966291 -1.356738 -1.932137 -0.168755 -0.319292 0.688482 1.006721 1.008463 -1.019540 -2.514399 2.277024 0.662972 2.193128 0.969243 0.799091 2.466056 0.556097 -1.289665 -1.053122 -2.057491 2.417451 -0.787101 -1.409133 0.096518 -0.970020 1.760222 1.973629 -0.078351 -1.165225 -1.935734 1.692779 -1.928174 -0.075971 1.897945 0.968055 -1.284926 0.554144 2.133178 -1.302091 -0.797065 -1.308899 -0.298770 -1.423591 -1.823148 0.065163 -1.063270 0.358407 1.033299 -0.160474 -1.109133 0.348251 -0.082582 -0.203552 -0.107182 1.975002 2.480706 -2.062737 1.020712 -1.941853 1.567023 -2.734287 -2.771400 1.060099 -0.701044 -1.099044 -0.387796 -0.129534 0.951898 -0.267503 -0.454149 -0.841503 0.277786 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__move_median_to_first >(Job*, Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.704822 0.494398 3.168302 -6.063855 5.209880 3.515291 1.914121 -0.649586 -5.188489 -3.485765 -0.286285 -4.692431 -4.447227 8.304258 -2.674326 2.481896 10.575346 2.717322 -1.415885 -1.251257 6.282866 -2.276497 8.780008 8.286560 -7.433213 -0.717163 2.562643 3.756446 0.849643 4.964906 -1.144962 -6.554569 2.828898 -3.124676 1.447456 -6.194424 1.398238 1.004502 0.496268 -11.136922 1.371013 0.245932 -2.386999 -1.627610 -1.378237 2.662716 7.691066 6.240281 -3.906098 0.991163 5.156864 3.231006 -1.897930 1.888395 0.431037 0.742010 -0.506271 0.480682 -3.102956 -1.232127 -1.141917 -4.790075 0.974434 6.795121 8.298954 0.457271 0.700392 2.260999 -0.536192 1.619717 1.696489 0.976505 2.718692 0.715907 4.100222 -6.528219 -2.754980 -14.053075 -1.392594 -16.245180 -4.380456 -3.590045 4.701446 0.907123 1.878130 -1.844887 7.516871 -0.176611 1.501357 7.464930 9.471472 -5.849035 -2.959156 -6.809609 -4.879081 3.173916 -3.959507 0.023833 1.192127 -0.363793 -5.756660 -5.979425 1.256805 1.445661 -2.531374 -4.532390 0.123722 6.714350 -7.354512 -3.286324 -5.062874 2.918638 -0.446686 -10.858833 -0.773892 -3.954228 5.991431 0.777186 -1.817252 -5.298813 1.243828 5.117740 -2.650879 -2.958781 -2.666608 6.779948 2.893588 0.481780 1.198994 -0.695421 1.315969 7.224904 5.686572 -3.994264 -1.250359 1.025033 -3.692754 -0.683824 -6.117879 -1.753017 4.278624 -6.478089 0.750586 4.638680 -4.544316 -2.822132 4.056025 -1.916001 4.739524 20.175302 -1.021045 5.474632 2.858421 -8.064266 3.951873 -1.078793 -1.697902 2.121147 4.962109 2.208815 -8.216247 -5.806444 3.162720 7.172167 5.617555 -6.139924 -2.510988 -2.686018 -0.735371 -0.961647 0.118204 2.079860 -1.846541 -5.031043 -1.873603 4.884870 11.356177 -2.536925 -4.819476 2.799041 4.839807 -2.130628 -6.012727 -1.983496 -3.544810 0.668872 3.320534 -1.429600 4.774788 9.311457 -15.297711 6.262554 -1.118302 -1.039992 2.288252 0.886498 -4.018309 -7.643391 1.225068 6.775419 8.084735 0.377134 2.240149 0.812995 -6.386808 -0.538363 1.404469 3.109184 -2.345867 2.983254 0.825480 -5.781122 -5.237821 -0.931345 -2.649432 -2.371406 -1.455695 3.045282 0.881871 -13.491771 8.665736 -1.654718 -1.571461 1.654543 -1.794956 6.361781 -7.557976 -9.064824 4.180452 -0.202623 -3.000257 -3.068468 0.566872 5.953861 0.150771 1.000452 -3.085444 -10.137366 4.626128 -0.821702 5.116731 2.790109 1.921244 8.098670 0.125426 -2.319125 -6.753018 -4.791976 3.466580 -1.292058 -5.175774 -1.418772 -1.673768 6.205477 7.829008 -0.796135 -3.453293 -0.513733 7.620051 -6.201433 -1.989212 5.343431 3.317898 -4.451296 2.293138 6.548453 -7.417461 -3.601544 -4.701683 1.579100 -0.783909 -6.561055 2.437419 -2.877417 2.429446 2.605084 1.103502 -2.552473 3.177158 2.304527 0.864887 -0.178744 8.313717 9.154093 -4.998750 0.611914 -6.167528 3.282361 -10.059418 -7.903828 1.469573 -0.431599 -1.945875 1.515331 -0.421646 5.450509 -0.895231 2.146677 -0.660600 -0.685239 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.213493 -0.047364 0.992052 -2.685083 2.127939 2.197928 0.806568 -0.370488 -2.318732 -1.305632 -0.167302 -2.629880 -1.443164 3.664376 -0.967246 1.661468 5.740865 1.214252 -0.644386 -0.336439 2.923764 -2.528426 4.094294 4.572352 -2.993170 -0.346715 1.531262 2.738015 0.175313 2.798882 -0.480719 -3.479689 1.042723 -1.851888 0.575719 -4.018015 0.692721 0.869687 0.693129 -6.043444 0.708985 0.178507 -0.465295 -0.874354 -0.816437 1.510681 4.169710 2.721884 -1.671198 0.367932 2.146493 1.219837 -0.789864 0.824773 0.236145 0.754368 1.407822 1.299020 -1.393948 -0.566705 -0.386130 -1.865463 0.833884 2.791566 4.693082 0.135547 0.342538 1.308833 -0.154429 0.644402 0.832431 0.296626 0.568748 -0.050407 1.644383 -4.384858 -1.107021 -8.298176 -0.503510 -7.758274 -1.825737 -1.317934 1.783729 -0.529861 1.170480 -1.312492 3.132092 -0.413900 0.611429 3.212976 4.399349 -2.609764 -1.285801 -3.126359 -2.208841 1.387203 -1.636603 -0.372480 1.947724 -0.232579 -2.411518 -3.123155 1.925764 0.983568 -1.042723 -2.369887 0.214745 2.831544 -2.965171 -2.041769 -1.843838 1.403732 -0.646274 -5.059693 0.645675 -3.005163 1.684584 0.293588 -0.738693 -3.246399 0.463203 2.786758 -1.126977 -1.542695 -1.139474 4.016471 1.162294 0.173344 0.595979 -0.449246 0.411497 3.875763 2.836695 -1.842168 -0.467717 0.624747 -2.788255 -0.312512 -3.851742 -1.179653 2.223523 -3.041959 -0.084953 2.186702 -1.949869 -0.819360 3.059636 -0.587292 2.016513 12.852359 -0.307148 2.353589 1.319460 -3.995797 3.251412 -0.344693 -0.714907 0.867260 2.099761 0.725541 -6.694412 -2.567398 1.209423 2.980282 2.520208 -3.961441 -2.264533 -1.329325 -0.349249 -0.008430 -0.154036 0.880216 -0.823640 -2.340403 -0.748510 2.055741 7.379157 -1.079383 -2.053315 1.385744 2.259314 -2.606869 -5.500472 -0.991783 -2.522577 0.200681 -0.187632 -0.690427 2.024331 3.984800 -7.950157 2.766535 -0.701840 -0.425501 2.246644 0.240861 -1.781417 -6.324285 0.296411 3.338615 4.830707 -0.329349 1.288488 0.440521 -2.654233 -0.168159 0.450510 1.133191 -0.956281 1.206468 -0.011110 -3.629507 -2.060785 -0.455018 -1.364489 -1.408814 -1.029652 1.252364 0.906615 -5.898474 4.117484 -0.681316 -0.564431 1.193565 -0.545868 2.863731 -3.186329 -4.263449 1.902505 0.262125 -0.695568 -2.314108 0.315016 2.681459 -0.031392 0.718257 -1.103107 -6.010369 1.629334 -1.656302 2.127235 1.174017 0.556276 3.460321 1.502005 -0.982077 -4.546300 -2.597845 0.138233 -0.513956 -2.193157 -1.194402 -0.686172 2.872475 3.214192 -0.097953 -1.504242 -0.685099 4.497226 -2.981989 -0.711865 2.337855 0.750722 -2.255960 0.500215 2.896313 -4.503015 -1.376247 -1.940032 -0.077041 -0.197071 -3.249490 1.065137 -1.024889 1.047151 0.895592 0.324742 -0.852284 1.319320 1.304958 0.401402 -0.164680 4.902711 4.712965 -1.810200 -0.066525 -2.566698 1.050973 -4.756103 -3.291145 0.503609 0.332035 -1.169839 0.782078 1.403714 2.429418 -0.449811 1.280432 -0.076065 -0.661204 +PE-benchmarks/weighted-job-scheduling.cpp__void std::iter_swap(Job*, Job*) = -0.198214 0.078958 0.464348 -0.500321 0.424520 0.041799 0.171689 -0.046262 -0.493004 -0.370981 -0.064378 -0.309805 -0.403752 0.679106 -0.294666 0.110260 1.026848 0.411049 -0.074612 -0.389774 0.499893 -0.497269 0.877032 0.889934 -0.776504 0.004662 0.406328 0.525098 0.326300 0.564811 -0.219588 -0.385749 0.276963 -0.264268 0.326945 -0.744117 0.102933 0.084421 -0.107481 -1.170451 0.080061 -0.164625 -0.036938 -0.032548 -0.036463 0.643558 0.696788 0.539168 -0.305139 0.278048 0.548826 0.258263 -0.031300 0.182575 0.114942 0.195794 0.408370 0.070706 -0.273954 0.040750 -0.112432 -0.713962 0.126439 0.648885 0.853815 -0.007188 0.073331 0.092200 -0.020985 0.164285 0.229986 0.134674 0.145006 0.104614 0.380182 -0.863843 0.006063 -1.533969 -0.165389 -1.970789 -0.438356 -0.512765 0.476133 -0.243417 0.158877 0.176829 0.754307 0.084195 0.221525 0.422958 0.822327 -0.553919 -0.274937 -0.427129 -0.342401 0.323222 -0.399513 -0.022316 0.264109 0.095136 -0.469339 -0.551138 0.439122 0.093181 -0.286321 -0.198521 -0.101933 0.655612 -0.884376 -0.315381 -0.697237 0.041864 -0.042154 -0.935484 0.191333 -0.450757 0.913549 0.100900 -0.133567 -0.452567 0.129619 0.573303 -0.200186 -0.182548 -0.315415 0.630912 0.206962 -0.037559 0.071835 -0.048100 0.035119 0.591326 0.705492 -0.380630 -0.192400 0.235797 -0.563637 -0.132968 -0.666759 -0.173931 0.554695 -0.579702 0.136518 0.282208 -0.441900 -0.319284 0.677303 -0.203570 0.488004 1.663002 -0.084076 0.417817 0.234156 -0.670782 0.243642 -0.041178 -0.052393 0.325452 0.573121 0.186703 -0.718561 -0.550502 0.132941 0.664032 0.465067 -0.701403 -0.440179 -0.353467 -0.028844 0.092710 0.015278 0.150284 -0.265176 -0.385531 -0.166781 0.203528 1.019010 -0.240647 -0.515401 0.087441 0.167162 -0.382610 -0.785195 -0.137695 -0.207987 0.112048 0.021274 -0.099462 0.360063 0.823953 -1.757178 0.643642 -0.257119 -0.131084 0.367478 0.023983 -0.207232 -0.974268 0.171746 0.532822 0.795853 0.059959 0.099960 0.208139 -0.656821 -0.077398 0.008007 0.443516 -0.311730 0.322783 0.248115 -0.585052 -0.483624 -0.146408 0.016672 -0.189630 -0.042724 0.290636 0.019550 -1.611625 0.717382 -0.280632 -0.227621 0.252767 -0.041149 0.410239 -0.756600 -0.776660 0.293300 0.047129 -0.288467 -0.483426 -0.006290 0.597651 -0.202931 0.036511 -0.301702 -0.797878 0.369890 -0.264800 0.348638 0.292720 0.171961 0.895070 -0.054063 -0.196759 -0.651659 0.035202 0.077109 -0.365056 -0.272599 -0.037508 -0.167156 0.519133 0.942078 0.005418 -0.041182 0.130645 0.852688 -0.709824 -0.344755 0.478319 0.532772 -0.195867 0.465636 0.544660 -0.805020 -0.475339 -0.396685 -0.165842 0.132749 -0.482460 0.394024 -0.479694 0.224671 0.288505 0.139431 -0.288440 0.434620 0.086890 0.079975 -0.058902 0.800443 1.272082 -0.518585 0.137997 -0.499789 0.276239 -0.923996 -0.555592 -0.046189 0.102969 -0.176066 0.230873 -0.045837 0.528986 0.020348 0.041358 -0.096500 -0.106686 +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.161346 0.210252 0.570000 -0.561865 0.634113 0.103252 0.245248 0.186104 -0.621662 -0.659231 -0.059878 -0.538557 -0.738250 0.914812 -0.342671 -0.052375 1.374527 0.431508 -0.026031 -0.432777 0.483983 -0.477981 1.116066 1.072855 -0.965821 0.035886 0.442346 0.452938 0.171828 0.735560 -0.173165 -0.919855 0.391089 -0.155222 0.405127 -0.721537 0.042982 -0.128037 -0.333047 -1.465799 0.071721 0.060064 -0.315818 -0.085072 -0.011768 0.849637 1.089035 0.638810 -0.382982 0.386405 0.601494 0.331594 -0.122920 0.192355 0.194597 0.099372 0.260596 0.066075 -0.531864 0.130254 -0.214780 -0.888600 -0.099792 0.789225 0.969561 -0.038387 0.034895 0.027107 -0.176708 0.243278 0.215609 0.155697 0.524971 0.175632 0.580630 -0.699358 -0.345783 -1.808414 -0.227485 -2.750109 -0.636047 -0.683760 0.865851 -0.197461 0.017198 -0.054132 0.949069 0.039119 0.329921 0.750325 1.223411 -0.584760 -0.441290 -0.650674 -0.375036 0.387357 -0.502748 -0.039367 0.358865 -0.051780 -0.703350 -0.632839 0.404556 0.018451 -0.300364 -0.275758 -0.120973 0.878217 -1.208103 -0.192902 -1.076762 0.126963 0.196824 -1.235151 -0.034872 -0.228895 1.073353 0.333689 -0.309774 -0.430262 0.292177 0.663905 -0.364971 -0.162825 -0.205054 0.891639 0.177668 0.098812 0.197035 0.106414 0.234786 0.700154 1.035312 -0.381855 -0.174461 0.222162 -0.525705 -0.150195 -0.634483 -0.214919 0.555617 -0.669191 0.365410 0.304692 -0.605172 -0.547118 0.422044 -0.340411 0.622247 2.014344 -0.244757 0.593694 0.144250 -0.899373 0.292645 -0.147987 -0.190412 0.164695 0.772970 0.371696 -0.569771 -0.595931 0.347185 0.903598 0.593184 -0.953681 -0.224725 -0.366359 -0.006444 0.000313 0.121422 0.251180 -0.117792 -0.506073 -0.226453 0.384524 1.376714 -0.340820 -0.964830 0.089689 0.364252 -0.072831 -0.667913 -0.059571 -0.061775 0.179482 0.342444 -0.182306 0.490948 1.073626 -2.288591 0.834407 -0.275976 -0.211695 0.355734 0.165086 -0.253411 -1.097712 0.161097 0.795738 1.074541 0.348851 0.079809 0.083579 -0.771536 -0.106549 0.076996 0.608589 -0.323230 0.418203 0.178561 -0.790179 -0.663166 -0.419746 -0.051965 -0.089656 -0.195868 0.296632 0.125082 -2.286761 1.032869 -0.256764 -0.271153 0.021951 -0.015375 0.588620 -0.936622 -1.136004 0.318354 -0.193507 -0.778471 -0.461086 -0.158624 0.617368 -0.077212 0.152481 -0.254079 -1.120198 0.771898 -0.078889 0.665741 0.379744 0.248959 1.431892 -0.026127 -0.345475 -0.660888 -0.337223 0.578083 -0.592680 -0.348711 0.119904 -0.261077 0.612756 1.085947 -0.053607 -0.200441 -0.148539 0.977027 -0.917389 -0.331154 0.684998 0.660118 -0.187390 0.680629 0.806352 -0.961941 -0.567900 -0.628430 -0.117443 -0.035796 -0.632715 0.235615 -0.701343 0.194981 0.432081 0.149763 -0.479796 0.371367 0.003048 0.009494 -0.133806 0.918506 1.713986 -0.929200 0.366136 -0.698696 0.509012 -1.173122 -0.917176 -0.013034 0.018375 -0.160444 0.181294 -0.147328 0.468862 -0.033785 -0.088130 -0.281425 0.053169 +PE-benchmarks/weighted-job-scheduling.cpp__int std::__bit_width(unsigned long) = -0.330474 -0.429773 0.214934 -0.698046 0.481560 -0.048437 0.383900 -0.339168 -0.956292 -0.268541 0.346009 -0.929029 -0.242474 1.042812 -0.233579 0.794553 1.272606 0.439687 -0.388616 -0.340714 0.666781 -0.497024 1.145070 1.137293 -0.680007 0.044345 -0.215583 0.288617 0.293501 0.360070 -0.170630 -0.349090 0.562659 -0.678770 0.115161 -0.622213 0.007835 0.442939 0.563219 -1.301900 0.258737 0.223384 0.614841 -0.221675 -0.130851 0.618172 0.563296 0.747827 -0.008247 0.514058 0.521456 -0.179329 0.189706 0.288985 0.448937 0.264384 0.449871 -0.179769 -0.545650 -0.121563 -0.210765 -0.551992 0.145613 0.690934 1.002153 -0.036331 -0.102722 0.310514 0.249955 0.248083 0.609249 0.162586 0.017838 -0.218175 0.320400 -1.103146 0.122671 -1.480069 -0.266639 -2.189057 -0.640172 0.044004 0.923862 -0.067293 0.404346 -0.135891 0.859151 -0.044745 -0.284341 0.204371 0.973275 -0.836525 -0.478632 -0.279684 -0.180543 0.200977 -0.467374 -0.030780 0.768937 0.071444 -0.773578 -0.249852 0.683791 0.244643 -0.304213 -0.267781 0.210454 0.799678 -0.782963 -0.656604 -0.285652 0.421577 -0.066282 -1.097309 0.703588 -0.546535 0.303596 0.185941 -0.490918 -0.581057 0.267279 0.264920 -0.394614 -0.324277 -0.809416 0.823562 0.217468 0.351341 0.087711 0.221442 0.070647 1.047513 0.340128 -0.688309 0.129933 0.102653 -0.378629 0.459264 -0.587934 -0.646851 0.565879 -0.805619 -0.103517 0.144969 -0.583249 0.038725 0.672218 0.471851 0.144985 1.594908 -0.062092 0.930661 0.659990 -0.695572 0.561275 -0.231909 0.214880 0.248145 0.638905 -0.080073 -0.897904 -0.864475 0.459808 0.919824 0.687435 -0.928159 -0.507447 -0.210491 0.111913 0.102945 0.035301 0.217345 0.100336 -0.690426 -0.150619 0.256114 1.536153 -0.440524 -0.076669 0.261324 0.079504 -0.267324 -1.163592 -0.386267 -0.571835 0.182880 -0.350046 0.159104 0.434231 1.091627 -1.567240 0.927183 -0.446844 -0.101413 0.897870 0.152567 -0.714200 -1.551067 -0.345998 0.384746 1.045318 -0.085636 0.153495 0.483026 -0.829862 -0.094581 -0.171565 0.087003 -0.263840 0.321543 0.055793 -0.409297 -0.251948 -0.011648 -0.075976 -0.295381 0.052101 0.602215 0.739519 -1.237913 0.655060 -0.043354 -0.376258 0.281122 0.061817 0.633356 -0.706686 -0.655106 0.335715 -0.190247 -0.410496 -0.642556 0.103079 0.448850 -0.419311 -0.045953 -0.297607 -0.691568 0.766606 -0.496840 0.753332 0.371890 -0.215140 0.567461 0.351115 -0.361109 -0.491649 -0.228969 -0.440765 -0.452848 -0.485929 0.074361 -0.215994 0.785019 0.691784 0.245710 -0.299577 0.160931 0.896588 -0.950824 -0.264035 0.761197 0.265414 -0.471886 0.494015 0.826208 -1.033543 -0.048446 -0.414610 -0.378332 -0.182545 -0.440221 0.633841 0.005723 0.422734 -0.198505 0.122979 -0.013143 0.402539 0.224947 -0.080631 0.032671 1.230511 1.109767 -0.326269 -0.143427 -0.752737 0.346823 -0.914997 -0.716030 0.221499 0.463201 -0.887949 0.168066 0.261576 0.817991 0.190381 -0.260914 -0.417452 0.143059 +PE-benchmarks/weighted-job-scheduling.cpp__int std::__countl_zero(unsigned long) = -0.636051 -0.644751 0.275596 -1.006688 1.147910 0.067767 0.864829 -0.237691 -1.797306 -0.554353 0.405554 -1.822630 -0.721582 2.305005 -0.126624 1.833342 2.871858 0.994525 -0.573320 -0.324546 1.567793 -1.553061 2.304440 2.131870 -1.244752 0.101062 -0.320042 0.477073 -0.080519 1.072607 -0.655853 -1.063075 1.176884 -1.957764 0.152122 -1.357066 0.069242 0.801912 1.106316 -2.839189 0.464335 0.796647 1.055371 -0.678050 -0.565520 0.496448 1.468271 1.555974 -0.103375 0.911804 0.664594 -0.871541 0.353997 0.696040 1.037924 1.032129 0.312085 0.019439 -1.623455 -0.152587 -0.544602 -1.586376 0.332985 1.197790 1.954738 -0.060138 -0.189019 1.001962 -0.050822 0.367332 1.032562 0.217312 0.282867 -0.678521 1.072350 -2.227971 -0.276636 -2.911581 -0.820455 -4.392252 -1.455429 -0.257081 1.711407 -0.221949 1.252844 -0.403155 1.763914 -0.560500 -0.240959 0.665020 2.357290 -2.135859 -1.181406 -1.202342 -0.315982 0.410922 -1.067538 -0.463903 1.911617 -0.597941 -1.747961 -1.091206 1.684908 0.837514 -0.521311 -1.094099 0.370387 1.855386 -1.541523 -1.980710 -1.269573 0.393346 -0.518511 -2.184574 1.257066 -0.421361 0.203240 0.918109 -1.016655 -1.810977 0.759834 0.930205 -0.748007 -1.358105 -0.690168 1.903282 0.208649 0.618106 0.626908 0.465263 0.211777 2.461639 1.524177 -1.098934 0.240115 0.325065 -0.986956 0.812006 -1.038694 -1.701731 0.834821 -1.834875 -0.673303 0.564471 -1.343875 0.348549 1.467068 0.936163 0.572644 3.324415 -0.085733 1.623036 0.985010 -1.749612 1.841225 -0.550033 0.086680 0.195147 1.514903 0.069308 -2.273844 -1.743354 0.961961 1.870800 1.547057 -1.956281 -1.403780 -0.857676 0.592331 0.352513 -0.034695 0.749532 0.629123 -1.650738 -0.202348 0.576339 3.652949 -1.570010 -0.714913 0.971846 0.006178 -0.527042 -3.185422 -0.884082 -1.705538 0.062019 -0.958710 0.000418 0.710127 2.377774 -2.787006 2.010436 -1.407965 -0.612630 1.974086 0.271614 -1.322295 -3.231115 -0.726974 1.165368 2.417540 0.251170 0.253575 0.518423 -1.650144 -0.172451 -0.342759 0.356521 -0.258021 0.864093 -0.648101 -1.157642 -0.765093 -0.074352 -0.371049 -1.061704 0.267454 1.045803 1.882180 -2.143440 1.625676 0.065347 -0.648965 0.911600 0.531150 1.321546 -1.486522 -1.997442 0.981662 -0.425232 -0.815139 -1.023549 0.153626 0.925747 -0.239232 -0.953555 -0.251625 -1.942908 1.742415 -0.546684 1.739044 0.771266 -0.290146 1.517582 1.448969 -1.292505 -1.012051 -0.641079 -1.150660 -1.192806 -0.997995 -1.076836 -0.519139 1.961747 1.593024 0.701049 -0.444883 -0.401176 2.009732 -2.247192 -0.565069 2.035191 0.409904 -0.985007 0.608407 2.157963 -2.157693 -0.368055 -0.810978 -0.327951 -0.418324 -1.100309 0.698730 -0.540251 0.545478 -0.083695 -0.056678 0.048880 0.514968 0.582279 -0.066166 -0.455053 2.593387 2.053845 -1.255818 -0.349374 -1.454239 0.639431 -2.049179 -1.542077 0.490617 1.455606 -1.890140 0.347806 1.329770 1.305439 0.142736 -0.683047 -0.800144 -0.429217 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.727876 1.058228 1.876516 -3.605120 3.686739 3.278450 1.303997 -0.552667 -2.928592 -2.263235 -0.448517 -3.901310 -3.354729 5.556429 -1.736102 1.740478 7.485030 1.504842 -0.890961 -0.311098 3.869364 -1.433633 5.961335 5.463064 -4.586237 -0.495643 2.087472 2.421449 -0.367594 4.017663 -1.119158 -5.567011 1.894426 -1.836872 1.088222 -3.645601 0.775776 -0.015874 0.353059 -7.492257 0.788124 0.981592 -1.147558 -1.368306 -1.056158 0.849197 6.030982 4.016805 -1.989401 -0.059643 2.831398 2.163391 -1.158374 1.271361 0.911049 0.732404 0.641992 0.313164 -2.580056 -0.987740 -1.062807 -2.626157 0.024286 4.489163 5.709568 0.579770 0.452490 1.505214 -0.973170 1.116201 0.526562 0.648406 1.817130 1.194819 2.486793 -3.754954 -1.729597 -8.788708 -1.087312 -10.181912 -2.931622 -2.635366 2.211281 0.801476 1.690200 -1.619255 4.981209 -0.342049 1.245904 4.130824 7.196242 -4.054056 -2.098215 -4.747801 -2.953691 1.794569 -2.638966 -0.103020 1.419344 -1.002406 -4.023004 -4.239202 1.091093 1.316659 -1.473354 -2.695922 0.123400 4.399326 -4.452896 -2.338652 -3.716763 1.244728 -0.541905 -7.548393 -1.048166 -2.190459 2.284667 0.918133 -1.436982 -4.565595 1.269120 3.940556 -1.842150 -2.516939 -1.139818 4.997997 1.859668 0.310482 1.035786 -0.270592 1.318209 5.318466 4.126187 -2.278245 -0.579183 0.243060 -2.822152 -0.630700 -3.869460 -1.332089 1.910123 -4.277521 0.445922 3.849390 -3.048502 -1.326903 1.612583 -1.558993 3.353785 14.603488 -1.300488 3.468859 1.282888 -6.034346 3.372936 -0.857395 -1.764474 0.248678 3.137949 2.134584 -5.941287 -3.768553 2.727384 4.820778 3.679577 -4.291153 -1.200197 -1.983775 -0.315346 -0.902401 0.148094 1.682982 -0.950870 -3.496012 -1.346163 3.370075 8.478329 -2.277134 -4.433659 2.338215 3.143249 -0.938547 -4.361588 -1.361129 -2.845642 0.400378 1.620948 -1.143246 3.059746 6.246256 -10.044507 4.370547 -0.533302 -1.458084 2.991714 0.271171 -2.466323 -5.293045 0.882404 5.397747 5.606619 0.406776 1.175182 -0.363086 -4.098665 -0.412146 0.752731 2.409410 -1.395806 1.957806 0.076038 -4.645511 -3.879199 -1.263697 -1.619193 -2.198973 -1.542085 1.780302 1.351294 -8.864021 6.654003 -0.417408 -0.742982 0.913263 -1.088375 3.730332 -4.950166 -6.551634 2.617618 -0.667322 -1.856566 -1.571471 0.185644 3.602639 0.760176 1.050415 -2.002653 -7.054977 3.132757 -0.256896 3.753358 1.723569 1.921381 5.170611 1.214431 -1.855332 -4.554230 -3.715331 2.110689 -0.822640 -3.574431 -1.485808 -1.202307 4.440659 5.108471 -0.635673 -2.329920 -1.729258 5.015327 -4.198511 -0.888409 3.806439 1.238580 -3.503809 0.462879 4.546035 -4.733635 -2.731529 -3.041770 0.606999 -1.303484 -4.879208 0.568915 -2.376439 1.121911 2.175813 -0.034358 -1.884459 1.549762 1.519642 0.397238 -0.150530 5.402969 5.333438 -3.599345 0.678977 -4.174297 2.163798 -6.963615 -5.679792 1.469066 -0.552350 -1.483094 0.564236 0.469858 3.052400 -1.053598 1.439445 -0.497770 -0.960220 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.803270 0.383334 1.013637 -1.705148 1.645565 1.317696 0.626665 -0.190107 -1.499518 -0.996577 -0.308339 -1.806710 -1.423258 2.629432 -0.756228 0.918525 3.784570 0.978738 -0.424765 -0.239790 1.839581 -1.195097 2.850114 2.811193 -2.140912 -0.175354 1.019519 1.447606 -0.098225 2.228129 -0.735754 -2.434800 0.817085 -0.983354 0.707106 -2.111239 0.357651 0.228504 0.115037 -3.923582 0.410266 0.362922 -0.099726 -0.633496 -0.450226 0.654899 2.908037 1.886414 -0.878184 0.062340 1.279013 0.846768 -0.349772 0.629047 0.554435 0.696461 0.843581 0.260578 -1.279040 -0.315216 -0.505138 -1.499967 0.250792 2.063650 2.891834 0.227155 0.215593 0.623917 -0.366077 0.497111 0.372734 0.280305 0.615709 0.365898 1.117503 -2.132673 -0.499333 -4.521880 -0.460038 -5.124144 -1.410662 -1.323310 1.096756 0.285302 0.882628 -0.761804 2.389109 -0.291556 0.662888 1.645459 3.365353 -2.003598 -1.001699 -2.213314 -1.347529 0.868932 -1.224208 -0.322432 0.972790 -0.438685 -1.843360 -2.065592 0.953193 0.700210 -0.727520 -1.197141 0.025343 2.177854 -2.181320 -1.361442 -1.870148 0.485426 -0.403890 -3.514266 -0.008022 -1.333070 0.939596 0.462902 -0.677716 -2.336267 0.629312 2.022551 -0.860482 -1.165695 -0.871829 2.659813 0.707306 -0.037587 0.478114 -0.192140 0.407532 2.477404 2.121149 -1.167563 -0.293342 0.376919 -1.735021 -0.389036 -2.131299 -0.815231 1.062476 -2.127318 -0.094469 1.711390 -1.494693 -0.358535 1.046639 -0.572134 1.628414 7.332844 -0.585100 1.565688 0.585809 -2.875388 2.043310 -0.167752 -0.714767 0.231703 1.604181 0.900684 -3.352620 -1.839081 1.053287 2.266430 1.775025 -2.197943 -0.924496 -1.165604 -0.131795 -0.107125 0.042412 0.743921 -0.521603 -1.686615 -0.613797 1.229665 4.355154 -1.078768 -2.086343 1.015938 1.179665 -0.885107 -2.738512 -0.663157 -1.574055 0.148393 0.135241 -0.582366 1.392544 2.945636 -5.054891 2.220599 -0.543424 -0.794172 1.847608 -0.093660 -1.005941 -3.264006 0.305201 2.522181 3.011157 0.086719 0.456670 -0.021204 -1.985482 -0.204616 0.184424 1.226512 -0.727657 0.960254 0.022573 -2.398454 -1.703774 -0.685916 -0.672900 -1.195901 -0.708523 0.829159 0.782280 -4.192881 3.099534 -0.252774 -0.342705 0.745943 -0.247064 1.496283 -2.345076 -3.093337 1.184413 -0.047165 -0.709473 -1.075539 0.069033 1.833495 0.088456 0.191672 -0.904405 -3.560672 1.372016 -0.499555 1.693110 0.846985 0.758930 2.436849 1.234882 -0.886133 -2.344473 -1.487327 0.437436 -0.617375 -1.459480 -0.843098 -0.607217 2.136877 2.569516 -0.096276 -0.792786 -0.756900 2.745041 -1.989124 -0.533830 1.858780 0.403604 -1.558588 0.240216 2.195403 -2.565625 -1.402986 -1.398848 0.027912 -0.348842 -2.201566 0.455150 -1.261142 0.527191 0.959097 -0.032457 -0.882709 0.804071 0.751039 0.111110 -0.143575 2.925585 2.695333 -1.580612 0.375308 -1.837592 0.929116 -3.321864 -2.391960 0.399051 0.086668 -0.860265 0.433777 0.550403 1.496658 -0.448704 0.671269 -0.167841 -0.667676 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::move_backward(Job*, Job*, Job*) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_linear_insert >(Job*, __gnu_cxx::__ops::_Val_comp_iter) = -0.726382 0.283325 1.337310 -1.843941 1.710605 1.194553 0.632456 -0.128642 -1.664290 -1.058283 -0.108047 -1.685250 -1.434554 2.605731 -0.895000 0.646057 3.690576 0.955105 -0.457201 -0.520411 1.808629 -1.153089 2.955618 2.868764 -2.356595 -0.146515 1.061168 1.386561 0.249773 2.081622 -0.835072 -2.242423 0.858136 -0.943042 0.664467 -2.116680 0.320700 0.047763 0.000552 -3.794324 0.392151 0.022579 -0.660375 -0.507881 -0.333095 1.284619 2.888715 1.869677 -1.008418 0.340503 1.529972 0.805211 -0.477241 0.561289 0.516132 0.525368 0.920155 0.661380 -1.197617 -0.210264 -0.498448 -1.612895 0.206613 2.147785 2.790931 0.162463 0.195633 0.475453 -0.209624 0.452767 0.537101 0.293962 0.865165 0.419450 1.275613 -2.268482 -0.552191 -4.786121 -0.508722 -5.503283 -1.441554 -1.310610 1.450925 -0.303663 0.640247 -0.691484 2.392378 -0.142232 0.588720 1.846171 3.275884 -1.960700 -1.049029 -2.055518 -1.417271 0.840989 -1.257364 -0.134800 0.901318 -0.353907 -1.863181 -1.979190 0.967157 0.567680 -0.747481 -0.973616 -0.016135 2.231153 -2.372569 -1.091776 -1.928090 0.598620 -0.128915 -3.530244 -0.073884 -1.276678 1.877850 0.445365 -0.747452 -1.984916 0.598907 2.025447 -0.952870 -0.936200 -0.709170 2.603837 0.806167 0.184699 0.383800 -0.202967 0.493340 2.293920 2.293094 -1.219386 -0.315915 0.347037 -1.642454 -0.294641 -2.033237 -0.655074 1.278710 -1.969745 0.192655 1.533373 -1.507178 -0.594239 1.526396 -0.485132 1.564769 7.184904 -0.557915 1.707714 0.582658 -2.747781 1.633386 -0.209697 -0.543594 0.413706 1.645820 0.813075 -3.318578 -1.804077 1.071824 2.306619 1.733294 -2.564482 -0.804094 -1.042958 -0.207920 -0.122204 0.068073 0.683692 -0.529430 -1.583936 -0.647888 1.278142 4.379438 -1.035339 -2.387980 0.786239 0.994352 -0.764149 -2.473483 -0.552904 -0.973685 0.349266 0.485214 -0.507931 1.527487 2.954735 -5.538367 2.156823 -0.636234 -0.758968 1.571160 0.142735 -1.057329 -2.842026 0.316479 2.330209 2.887468 0.455802 0.257258 0.229503 -2.006476 -0.209236 0.240472 1.229197 -0.757449 0.966144 0.362716 -2.371455 -1.714262 -0.873273 -0.563777 -0.802022 -0.714904 0.885162 0.148321 -4.997342 2.971145 -0.304184 -0.457792 0.531344 -0.353651 1.584552 -2.403068 -3.083673 1.143151 -0.097413 -1.005941 -1.221284 -0.018364 1.769481 0.043997 0.479836 -1.069446 -3.644402 1.513088 -0.524129 1.781027 0.881209 0.658735 2.886334 0.706556 -0.743717 -2.376398 -1.388541 0.983822 -0.650784 -1.491085 -0.482128 -0.618242 2.008474 2.511705 -0.207276 -0.697330 -0.666554 2.655171 -2.208575 -0.620869 1.763307 1.013345 -1.423291 0.659796 2.126747 -2.541792 -1.307050 -1.413166 -0.247119 -0.359674 -2.078227 0.637659 -1.185982 0.694115 0.867936 0.302489 -0.922408 0.848928 0.486349 0.157627 -0.077178 2.796202 3.597177 -1.805845 0.427142 -1.944034 1.223313 -3.289239 -2.607910 0.424238 -0.094207 -0.779611 0.459134 0.307260 1.593877 -0.277145 0.361989 -0.245439 -0.264080 +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.161397 0.239694 0.398147 -0.315985 0.506651 0.349453 0.190765 -0.078369 -0.377035 -0.254647 -0.106588 -0.519977 -0.498262 0.645894 -0.231001 0.179785 0.886268 0.298307 -0.084893 -0.086051 0.267870 -0.201289 0.799245 0.711266 -0.541699 0.058285 0.151141 0.272697 -0.134605 0.761575 -0.384457 -0.687524 0.291609 -0.070404 0.173105 -0.432819 -0.010721 -0.042471 -0.064233 -0.961442 0.065720 0.223196 0.011686 -0.112753 -0.006848 0.166243 0.797545 0.447370 -0.020243 0.122064 0.216416 0.217192 0.074377 0.195417 0.305772 0.215791 0.414561 -0.194857 -0.412175 -0.037113 -0.203490 -0.495488 -0.144193 0.526822 0.668253 0.085598 -0.006960 -0.036362 -0.235486 0.120067 0.068044 0.142965 0.209601 0.254913 0.202906 -0.221907 0.084782 -0.645131 -0.175542 -1.105113 -0.430923 -0.413862 0.299358 0.297956 0.251328 -0.139709 0.690443 -0.042639 0.183718 0.119884 0.911078 -0.617189 -0.267596 -0.348317 -0.197823 0.143852 -0.311750 -0.056132 0.075772 -0.122307 -0.500561 -0.484736 0.346271 0.111178 -0.214952 0.003631 -0.053301 0.557521 -0.699107 -0.291374 -0.634197 -0.051854 -0.066034 -0.844688 -0.035568 -0.115152 0.211273 0.215483 -0.239422 -0.561406 0.288174 0.463572 -0.216341 -0.273833 -0.363018 0.627647 0.125614 -0.066816 0.131435 -0.006198 0.144442 0.619424 0.465975 -0.258846 -0.047987 0.066876 -0.322185 -0.059261 -0.357005 -0.151507 -0.038000 -0.537699 0.051628 0.372689 -0.413027 0.010560 -0.165611 -0.129353 0.381132 1.276011 -0.259526 0.389409 0.094627 -0.747485 0.406198 -0.105752 -0.201510 -0.018480 0.413533 0.341652 -0.504707 -0.459966 0.325634 0.638988 0.421866 -0.445343 -0.023219 -0.297006 0.059820 -0.052824 0.153007 0.203845 -0.063158 -0.430259 -0.168101 0.193281 1.076339 -0.306872 -0.672922 0.262111 -0.005575 -0.026993 -0.426337 -0.152240 -0.180383 0.031103 0.033320 -0.131465 0.253924 0.754316 -1.151846 0.641565 -0.179181 -0.379806 0.612711 -0.099815 -0.186404 -0.357376 0.060183 0.626585 0.689088 0.160249 0.019213 -0.075128 -0.556936 -0.106889 -0.002046 0.395361 -0.253174 0.316781 0.156188 -0.675029 -0.452104 -0.399606 0.026713 -0.322626 -0.275783 0.241844 0.276025 -1.231855 0.765304 0.050371 -0.137968 0.151879 0.004707 0.255702 -0.569698 -0.769099 0.234848 -0.183746 -0.303496 -0.143489 -0.038708 0.356958 0.015367 0.056423 -0.284755 -0.626307 0.435342 0.050185 0.430937 0.256030 0.267823 0.555300 0.393266 -0.319211 -0.308488 -0.250070 0.218794 -0.348924 -0.241604 0.048751 -0.247773 0.534365 0.776665 0.060230 -0.129516 -0.276834 0.631810 -0.411970 -0.124111 0.543316 0.060431 -0.272250 0.110686 0.582479 -0.467547 -0.439562 -0.327113 -0.088093 -0.161080 -0.492840 0.119538 -0.462347 0.078498 0.343896 -0.069964 -0.384906 0.209999 0.048513 -0.079269 -0.042403 0.688053 0.540001 -0.406252 0.355235 -0.430623 0.279106 -0.803841 -0.497664 0.091650 -0.016842 -0.300592 0.034457 0.040364 0.325221 -0.104593 0.062568 -0.103654 -0.182188 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a(Job*, Job*, Job*) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__miter_base(Job*) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_wrap(Job* const&, Job*) = -0.094004 0.019219 0.230993 -0.225112 0.187042 -0.030752 0.085428 -0.093290 -0.252681 -0.122523 -0.046565 -0.124925 -0.094709 0.319760 -0.118501 0.192414 0.502530 0.239633 -0.038493 -0.218610 0.268158 -0.426262 0.432342 0.459415 -0.369990 0.034875 0.228867 0.286762 0.191823 0.338604 -0.233154 -0.057474 0.126169 -0.274716 0.177918 -0.444607 0.047246 0.115670 0.056593 -0.621531 0.040546 -0.138967 0.153557 -0.010648 -0.043617 0.287061 0.307364 0.264572 -0.109584 0.190091 0.261261 0.026773 0.061662 0.103396 0.112779 0.246852 0.360646 0.052262 -0.134540 0.045806 -0.037519 -0.415352 0.163016 0.303221 0.438937 -0.028649 0.034712 0.101136 0.004142 0.036669 0.142589 0.078950 -0.083405 0.017798 0.154701 -0.644639 0.168900 -0.779599 -0.105484 -0.950734 -0.224235 -0.250069 0.136642 -0.170907 0.214451 0.210247 0.384848 0.010318 0.109316 0.033402 0.362031 -0.385720 -0.129788 -0.150762 -0.141072 0.128338 -0.193763 -0.075030 0.194914 0.030762 -0.204689 -0.301452 0.407911 0.130580 -0.161329 -0.082359 -0.053898 0.307065 -0.446607 -0.331187 -0.336288 -0.085632 -0.163594 -0.420870 0.321795 -0.258513 0.419796 0.049303 -0.045832 -0.368465 0.058379 0.349028 -0.068463 -0.174062 -0.222270 0.316947 0.094680 -0.049694 0.044056 -0.072181 -0.024412 0.357065 0.381243 -0.209965 -0.104629 0.171709 -0.365863 -0.061602 -0.342645 -0.174113 0.262581 -0.349164 -0.045952 0.137273 -0.218569 -0.002949 0.525284 -0.026281 0.226708 0.785391 -0.013372 0.185301 0.124011 -0.341305 0.195407 -0.011175 -0.000115 0.199684 0.292826 0.058845 -0.512820 -0.296735 0.006983 0.318142 0.226080 -0.344711 -0.409065 -0.239731 0.004376 0.171450 -0.025376 0.059458 -0.148025 -0.212432 -0.066191 -0.015831 0.594363 -0.164054 -0.114908 0.060596 -0.085086 -0.346777 -0.633221 -0.106649 -0.265682 0.040668 -0.227608 -0.040820 0.129107 0.389632 -0.852524 0.348853 -0.277628 -0.134836 0.304871 -0.049532 -0.079772 -0.629323 0.058994 0.217252 0.411446 -0.041817 0.072536 0.153074 -0.337350 -0.038135 -0.075236 0.205007 -0.183565 0.176354 0.134165 -0.342014 -0.203292 0.014296 0.068804 -0.196446 0.049255 0.153905 0.064642 -0.706442 0.303600 -0.134490 -0.129007 0.287046 0.057879 0.140413 -0.368228 -0.332601 0.155942 0.097753 0.026009 -0.261081 0.000426 0.304311 -0.182946 -0.141232 -0.150793 -0.364421 0.067760 -0.219567 0.110135 0.159668 0.045596 0.345872 0.056895 -0.109158 -0.327838 0.201510 -0.248805 -0.238879 -0.077018 -0.127425 -0.094124 0.304681 0.510783 0.091867 0.101830 0.155542 0.455077 -0.362521 -0.187118 0.244811 0.236619 -0.112639 0.160108 0.258484 -0.418829 -0.233077 -0.140303 -0.137935 0.129883 -0.190660 0.258740 -0.250108 0.106671 0.118972 0.045783 -0.097718 0.255335 0.046769 0.056021 -0.063588 0.450504 0.573211 -0.193256 0.004564 -0.211116 0.067630 -0.436274 -0.177557 -0.066334 0.242864 -0.179586 0.138090 0.104633 0.295406 0.036230 0.005971 0.008597 -0.171667 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a1(Job*, Job*, Job*) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_base(Job*) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a2(Job*, Job*, Job*) = -0.479063 0.046100 0.457175 -1.170073 0.923984 0.448012 0.368742 -0.520663 -0.914311 -0.401128 0.105331 -1.007672 -0.554794 1.279645 -0.535344 0.744776 1.886788 0.393321 -0.379853 -0.503158 1.151633 -0.440791 1.776239 1.624535 -1.403673 -0.063286 0.622281 0.779145 0.502479 0.562396 -0.448814 -0.683388 0.562443 -0.930387 0.278421 -0.970719 0.213697 0.073241 0.572171 -1.932180 0.233555 -0.392056 0.021264 -0.215614 -0.324000 0.661723 1.327808 1.140465 -0.518377 0.226133 1.148742 0.371103 -0.138461 0.356193 0.190178 0.309848 0.599949 0.231439 -0.434952 -0.382986 -0.158944 -0.661598 0.312365 1.311107 1.559228 0.112320 0.030183 0.654110 0.261940 0.218655 0.414298 0.321642 0.058127 0.315533 0.650718 -1.856525 0.058270 -2.753273 -0.367167 -2.979852 -0.862747 -0.595287 0.533837 -0.521540 0.692481 0.265306 1.431590 0.094479 0.194915 0.770852 1.592818 -1.278246 -0.536876 -0.886549 -0.726652 0.459870 -0.704251 0.169246 0.625672 0.095834 -1.036304 -0.931743 0.638605 0.420101 -0.543773 -0.718802 0.125544 0.979639 -1.094834 -0.820003 -0.812269 0.341300 -0.263417 -2.000793 0.176763 -0.849561 1.282831 -0.016013 -0.310179 -1.313539 0.106913 1.013338 -0.481138 -0.630482 -0.419280 1.047475 0.802721 0.205483 0.203689 -0.055779 0.316523 1.670749 0.990162 -0.824634 -0.253247 0.112121 -0.884028 0.004416 -1.085142 -0.437908 0.878637 -1.209635 0.281262 0.942159 -0.790277 -0.321282 1.480968 -0.143441 0.724422 3.642210 -0.150549 1.094534 0.684153 -1.373632 0.515240 -0.385258 -0.169161 0.439595 0.829692 0.324320 -1.758415 -1.180297 0.596477 1.306620 0.932717 -1.410599 -0.678269 -0.400834 -0.086070 -0.048735 -0.139746 0.346189 -0.302952 -0.832100 -0.311846 0.857857 2.194808 -0.586448 -0.698668 0.502150 0.566919 -0.539742 -1.496625 -0.536788 -0.899744 0.208237 0.211791 0.057084 0.822671 1.669961 -2.843251 1.086874 -0.307569 -0.239644 0.941181 0.228161 -0.830158 -1.625737 0.229404 1.075422 1.276035 -0.195339 0.267973 0.322220 -1.181894 -0.118367 0.104902 0.498484 -0.514798 0.537577 0.341465 -1.019415 -0.847243 0.023720 -0.193690 -0.433834 -0.049475 0.706139 0.043821 -2.531709 1.497018 -0.261117 -0.474486 0.487305 -0.525397 1.046404 -1.380459 -1.348068 0.740980 -0.006782 -0.106769 -0.639309 0.180680 0.991086 -0.142100 0.412082 -0.846218 -1.517024 0.679065 -0.410996 0.870027 0.556551 0.307742 1.173588 -0.480966 -0.339414 -1.317406 -0.314874 -0.051564 -0.085815 -1.035241 -0.372172 -0.309892 1.184379 1.467458 -0.176274 -0.349330 0.154032 1.247594 -1.546404 -0.435085 0.853218 0.972448 -1.015582 0.390771 1.015793 -1.331385 -0.556167 -0.698934 -0.276205 -0.175871 -1.152275 0.663509 -0.443960 0.518754 0.420983 0.088510 -0.169216 0.752351 0.294234 0.310048 0.074079 1.423309 1.929012 -0.702283 -0.270445 -1.226854 0.536679 -1.802172 -1.464792 0.493635 0.040607 -0.650683 0.213439 0.113362 1.225603 -0.070184 0.072204 -0.222476 -0.119823 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward::__copy_move_b(Job*, Job*, Job*) = -1.252270 -0.878523 -0.075515 -3.327651 2.424847 1.548009 1.045960 -1.590382 -2.724776 -0.222751 0.902392 -3.171662 -0.484412 3.050062 -1.164433 2.979087 4.486729 0.597677 -1.359407 -0.675752 2.776604 0.302428 4.328894 3.737276 -2.884331 -0.244119 0.193480 1.293611 0.504656 0.389630 -0.793500 -1.882425 1.433588 -2.886008 -0.365360 -1.592631 0.492024 0.601326 2.894806 -4.176703 0.967127 -0.513500 0.533996 -0.834035 -1.055938 0.148475 2.550433 2.852574 -0.829479 0.585395 2.787506 0.797466 -0.440026 0.878825 0.404246 0.899308 0.489918 0.004305 -1.126003 -1.680107 -0.283197 0.030886 0.791861 2.882777 3.331051 0.389126 -0.267495 2.039613 1.327770 0.448226 1.566711 0.623392 -0.534967 0.267131 1.187637 -4.068632 -0.180852 -5.621430 -0.749125 -5.384585 -2.113197 -0.276034 1.586831 -0.554560 2.058712 0.152687 3.179040 -0.383582 -0.152164 1.927832 3.245835 -3.116720 -1.493227 -2.104217 -1.703671 0.880536 -1.400601 0.346216 1.622438 0.418022 -2.709998 -1.553824 1.017044 1.320472 -1.138838 -2.316341 1.140113 1.853184 -1.651339 -2.416563 -0.699055 2.430116 -0.669613 -4.696209 -0.170384 -1.944104 1.584647 -0.280476 -1.106266 -3.377860 0.087029 1.686833 -1.553599 -1.529689 -0.867562 1.982843 2.274721 1.072439 0.642636 0.113363 0.899614 5.006297 1.037483 -2.403937 -0.150701 0.018570 -1.130055 0.745340 -2.222043 -1.460268 1.135080 -3.188767 1.113326 2.491584 -1.895956 -0.297036 2.817155 0.764087 1.078741 8.792479 -0.237389 3.409812 2.362277 -3.014914 1.251058 -1.417866 0.007793 0.688186 1.476229 0.080575 -3.979343 -2.981004 1.760484 3.022906 2.446454 -3.099844 -1.086445 -0.369392 -0.112880 -0.143508 -0.604267 0.919726 -0.048859 -2.217910 -0.602275 2.571361 5.668446 -1.080359 -0.717010 1.614963 2.234953 -0.963315 -2.843476 -1.767855 -3.170637 0.523990 1.184678 0.700657 2.124164 4.092616 -5.455304 2.343656 -0.375294 -0.098651 2.326981 1.139232 -2.830484 -3.271047 -0.381055 2.067052 3.134486 -1.137603 1.070905 1.107792 -2.459078 -0.225236 0.447553 0.295895 -0.931532 0.960654 0.531431 -2.022676 -1.229179 0.671892 -1.087581 -0.896643 -0.132570 1.966708 0.707604 -4.689107 3.121274 -0.025894 -1.310966 1.257099 -1.721636 3.215968 -2.898201 -2.555181 2.081399 -0.021189 0.264159 -0.795608 0.793724 2.060524 -0.011508 1.884274 -2.110426 -3.218019 1.861879 -0.542651 2.588294 1.311137 -0.140460 1.393722 -1.884731 -0.696181 -2.655406 -2.007683 -0.363926 0.603615 -3.010348 -0.680895 -0.794140 3.034318 2.477136 -0.300441 -1.845208 0.122912 2.488198 -3.555624 -0.211200 2.045620 1.586818 -3.167997 0.338318 2.614673 -3.201974 -0.277484 -1.472360 -0.032660 -1.018806 -2.602458 1.724747 0.152505 1.714480 0.176112 0.166011 0.275483 1.465611 0.994340 0.693844 0.544848 3.517219 2.907755 -0.578400 -1.241762 -3.203339 1.164612 -3.916909 -3.835690 1.779835 -0.277936 -2.676750 0.428774 0.347948 3.455128 -0.328828 0.413140 -0.878160 0.220859 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__copy_move::__assign_one(Job*, Job*) = -0.109939 0.050344 0.370095 -0.390257 0.301228 -0.019192 0.112028 -0.019229 -0.385183 -0.268155 -0.043392 -0.214689 -0.233063 0.480971 -0.206880 0.076926 0.747331 0.296330 -0.050235 -0.316891 0.343257 -0.424673 0.607018 0.641483 -0.564385 0.026835 0.306791 0.376826 0.254777 0.441681 -0.198760 -0.263219 0.148714 -0.205215 0.262175 -0.550230 0.054666 0.060336 -0.069466 -0.867227 0.063063 -0.123094 0.009733 -0.022740 -0.015969 0.480609 0.502992 0.366249 -0.220214 0.233941 0.413618 0.169525 -0.019647 0.109214 0.117430 0.193542 0.385031 0.087132 -0.196322 0.075542 -0.069338 -0.502600 0.129241 0.462225 0.592650 -0.025391 0.041617 0.048538 0.015484 0.097168 0.185817 0.091563 0.053496 0.067630 0.262901 -0.697007 0.051164 -1.157500 -0.090663 -1.477565 -0.320529 -0.358589 0.359977 -0.216362 0.107939 0.160703 0.535273 0.023334 0.172076 0.270639 0.562391 -0.381195 -0.200406 -0.289648 -0.272141 0.220680 -0.261345 -0.061755 0.204129 0.072593 -0.322249 -0.374327 0.380842 0.085416 -0.205685 -0.101262 -0.064799 0.461355 -0.658835 -0.248458 -0.492464 0.044863 -0.034737 -0.640525 0.191410 -0.338926 0.674415 0.071922 -0.113452 -0.343217 0.094785 0.434884 -0.173232 -0.100614 -0.263681 0.463938 0.134564 -0.008534 0.043552 -0.059701 0.034269 0.396140 0.526443 -0.293924 -0.127176 0.202196 -0.416407 -0.118259 -0.468278 -0.157012 0.397883 -0.405889 0.086990 0.163470 -0.318726 -0.199054 0.547168 -0.128184 0.340477 1.220380 -0.072147 0.305887 0.137671 -0.468212 0.180519 0.003074 -0.031847 0.224005 0.419148 0.123264 -0.539041 -0.384038 0.077711 0.471056 0.327000 -0.511266 -0.366946 -0.261581 -0.057056 0.153054 0.008367 0.074542 -0.202391 -0.275919 -0.128118 0.088051 0.781800 -0.140517 -0.366875 0.025324 0.085839 -0.314630 -0.594538 -0.072305 -0.179828 0.111758 -0.044830 -0.085579 0.280993 0.576852 -1.371522 0.477367 -0.245069 -0.123275 0.283996 0.008563 -0.121094 -0.783395 0.091648 0.353921 0.608843 0.039936 0.067347 0.177811 -0.454027 -0.053450 -0.026872 0.317382 -0.246079 0.227557 0.195861 -0.457773 -0.315142 -0.097846 0.019729 -0.116394 -0.032094 0.188829 -0.009269 -1.193252 0.495066 -0.188320 -0.144522 0.201692 0.001350 0.255900 -0.535484 -0.524628 0.184712 0.071459 -0.177657 -0.344150 -0.046919 0.425610 -0.188534 0.011017 -0.215667 -0.583203 0.233491 -0.230333 0.257162 0.219948 0.078169 0.642136 -0.017834 -0.101256 -0.453254 0.079004 0.014504 -0.289805 -0.156687 -0.014095 -0.137873 0.360600 0.655158 0.017748 0.017356 0.112881 0.615530 -0.486332 -0.234587 0.317730 0.345711 -0.134604 0.332084 0.378635 -0.591785 -0.317503 -0.291272 -0.150527 0.109648 -0.292500 0.299286 -0.334666 0.159547 0.187091 0.107185 -0.212224 0.306382 0.034371 0.043831 -0.042044 0.579782 0.943578 -0.359956 0.110540 -0.351690 0.196612 -0.635741 -0.378431 -0.081146 0.119696 -0.160648 0.171387 -0.029583 0.381740 0.030470 0.036237 -0.047574 -0.057216 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(Job&, Job*) = -0.404698 0.758467 1.004589 -1.107468 2.095378 1.811630 0.782425 -0.096136 -1.458442 -0.975707 0.223255 -2.329741 -2.038200 2.361771 -0.693923 0.553288 2.991925 0.372052 -0.437348 -0.037724 0.937190 0.253342 2.893323 2.362583 -1.925334 0.267751 0.246792 0.300239 -0.727518 1.967497 -0.916648 -3.064054 1.236845 -0.358236 -0.027561 -0.590611 -0.262064 -0.789173 0.173303 -2.930466 0.166724 1.075532 -1.193624 -0.494900 -0.083427 0.535551 3.032217 1.545880 -0.266712 0.651286 0.861725 0.485401 -0.126819 0.516340 0.987919 0.062097 0.553739 -0.105406 -1.545836 -0.347762 -0.746181 -1.117548 -1.090851 1.802664 2.064337 0.208484 -0.304153 0.101344 -0.793392 0.420570 0.209722 0.589853 1.474600 0.960964 1.149652 -0.030753 -0.763250 -2.199339 -0.695295 -3.787143 -1.713016 -0.922998 1.718171 0.745806 0.648021 -1.160544 2.319515 -0.220253 0.187119 1.297885 3.444780 -1.936011 -1.096213 -1.292604 -0.722524 0.381705 -1.095023 0.269951 0.335372 -0.882749 -2.096181 -1.494735 0.539458 0.243827 -0.688068 -0.526809 0.013483 1.904431 -2.124578 -0.557094 -1.926298 0.461014 0.325612 -3.216547 -1.467217 0.284721 0.857581 1.022713 -1.184480 -1.599469 1.058144 1.168371 -1.024281 -1.020509 0.007501 2.088901 0.791997 0.667850 0.660680 0.398055 1.222501 2.445154 1.661904 -0.727125 0.142365 -0.373482 -0.237528 0.485832 -0.614541 -0.358578 -0.449401 -1.564906 0.881109 1.425884 -1.415799 -0.388747 -0.909957 -0.262978 0.838722 4.912709 -0.912483 1.939431 0.446712 -2.604272 1.074262 -0.896496 -0.835056 -0.339702 1.287210 1.282055 -1.434294 -1.396286 1.830222 2.431650 1.424864 -2.311143 0.824595 -0.317509 0.243109 -0.828737 0.736855 0.799721 0.632778 -1.486301 -0.578117 1.604553 3.941336 -1.349100 -3.232917 1.027946 0.610250 0.997344 -0.686143 -0.443406 -0.166415 0.271609 1.510201 -0.308055 1.140684 2.687067 -3.967966 1.952659 -0.244202 -1.232438 1.814928 0.552113 -1.249440 -0.409669 0.033666 2.173012 2.160822 1.203983 -0.114268 -0.429261 -1.819890 -0.349224 0.427059 0.845509 -0.621151 1.186849 0.239479 -2.047069 -1.606851 -1.648693 -0.270716 -0.566940 -1.243162 0.985363 0.599516 -4.767289 2.741973 0.565166 -0.690185 -0.365638 -0.452226 1.584781 -1.812723 -2.951516 0.966291 -1.356738 -1.932137 -0.168755 -0.319292 0.688482 1.006721 1.008463 -1.019540 -2.514399 2.277024 0.662972 2.193128 0.969243 0.799091 2.466056 0.556097 -1.289665 -1.053122 -2.057491 2.417451 -0.787101 -1.409133 0.096518 -0.970020 1.760222 1.973629 -0.078351 -1.165225 -1.935734 1.692779 -1.928174 -0.075971 1.897945 0.968055 -1.284926 0.554144 2.133178 -1.302091 -0.797065 -1.308899 -0.298770 -1.423591 -1.823148 0.065163 -1.063270 0.358407 1.033299 -0.160474 -1.109133 0.348251 -0.082582 -0.203552 -0.107182 1.975002 2.480706 -2.062737 1.020712 -1.941853 1.567023 -2.734287 -2.771400 1.060099 -0.701044 -1.099044 -0.387796 -0.129534 0.951898 -0.267503 -0.454149 -0.841503 0.277786 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.165260 0.172609 0.480746 -0.484062 0.447822 0.313515 0.134964 -0.237612 -0.392331 -0.110170 -0.085159 -0.343299 -0.225132 0.590460 -0.258322 0.251790 0.858581 0.266907 -0.150723 -0.209319 0.451958 -0.361041 0.743548 0.722732 -0.616053 0.030276 0.391064 0.384724 0.163231 0.676144 -0.531000 -0.335889 0.156621 -0.315402 0.221037 -0.562029 0.031921 -0.007971 0.137160 -0.943468 0.084497 -0.139213 0.000000 -0.092058 -0.059386 0.236794 0.697015 0.438310 -0.137585 0.070171 0.397552 0.192967 -0.008684 0.141448 0.287064 0.377961 0.688520 0.192225 -0.209090 -0.048235 -0.127973 -0.362255 0.142611 0.584705 0.684370 0.078163 0.031374 0.094888 -0.003155 0.030019 0.107377 0.136045 -0.031060 0.261319 0.201672 -0.796593 0.275509 -1.074509 -0.127360 -1.101609 -0.354148 -0.375697 0.051978 -0.197124 0.363493 0.114118 0.654595 -0.043972 0.176718 0.061937 0.764062 -0.653191 -0.200065 -0.344286 -0.363927 0.113227 -0.271070 -0.049480 0.151611 -0.099518 -0.411639 -0.550457 0.465967 0.252530 -0.242562 -0.043520 -0.024584 0.518540 -0.564055 -0.431203 -0.462307 -0.051883 -0.248215 -0.816738 0.107978 -0.399217 0.523123 0.028814 -0.170817 -0.748738 0.159455 0.655947 -0.222759 -0.329530 -0.225652 0.588729 0.283876 -0.046279 0.023602 -0.196413 0.096422 0.612708 0.561954 -0.340799 -0.081432 0.106282 -0.518426 -0.140091 -0.493050 -0.159123 0.203229 -0.494352 -0.059025 0.447341 -0.361900 0.101221 0.594377 -0.098148 0.381370 1.728146 -0.195142 0.372596 0.100062 -0.714254 0.365799 0.008559 -0.142137 0.128487 0.384615 0.258888 -1.008340 -0.492271 0.229349 0.579301 0.391650 -0.600218 -0.345494 -0.355124 -0.102620 0.110372 0.009436 0.093483 -0.246598 -0.383611 -0.195164 0.139806 1.127034 -0.315778 -0.631796 0.199142 -0.072951 -0.333510 -0.724168 -0.181455 -0.354843 0.112542 -0.122526 -0.128442 0.375142 0.713773 -1.435766 0.586789 -0.317021 -0.416063 0.668696 -0.086703 -0.173094 -0.555977 0.111039 0.538850 0.647979 0.035371 -0.015636 0.084840 -0.543664 -0.076265 -0.055906 0.361404 -0.309061 0.279890 0.287846 -0.701010 -0.414784 -0.175035 0.040723 -0.349928 -0.145958 0.237239 -0.105035 -1.267705 0.717965 0.013823 -0.080285 0.344102 -0.080838 0.213447 -0.594583 -0.670520 0.272608 0.104095 0.086817 -0.239364 -0.018914 0.475981 -0.068705 0.106941 -0.454880 -0.767351 0.149694 -0.205129 0.361470 0.246703 0.219186 0.509812 0.140742 -0.121134 -0.565221 0.023968 -0.015833 -0.110237 -0.311000 -0.230287 -0.212106 0.554386 0.736456 -0.006256 0.053225 -0.103853 0.644776 -0.548710 -0.133507 0.382347 0.285474 -0.401566 -0.004434 0.444243 -0.510232 -0.408821 -0.237362 -0.268084 -0.069737 -0.440124 0.266066 -0.342322 0.159695 0.260284 0.010235 -0.233139 0.287408 0.061866 0.064617 0.034427 0.634399 0.808011 -0.331565 0.085889 -0.437206 0.266057 -0.785343 -0.496255 0.087510 0.021690 -0.317486 0.089719 0.105258 0.479110 -0.048319 0.127987 0.076291 -0.227730 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(bool (*)(Job, Job)) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/finite-automata-algorithm.cpp__getNextState(char*, int, int, int) = -3.361584 -4.072464 -2.836118 -6.898857 4.158616 5.445330 2.500991 -4.966727 -7.720257 -0.077207 3.568578 -7.190787 0.342398 8.711588 -2.400097 9.055096 10.234652 1.453105 -4.600403 -0.242268 8.812621 -0.463259 9.802950 8.494349 -5.804414 -0.893155 -0.601788 2.595911 2.209523 0.603248 1.055953 -3.012236 4.241568 -9.629815 -2.982940 -4.940417 1.487223 3.667161 8.304523 -9.980558 2.372819 0.073270 1.862287 -2.523158 -3.167615 -1.624647 3.550515 6.907504 -1.020811 2.437291 5.694941 1.159710 -1.287736 1.995896 1.397635 2.381149 -0.773342 -0.337190 -2.443032 -4.490084 -0.383013 -0.450005 2.212071 6.480126 8.244323 0.700679 -0.019155 6.270819 1.944432 1.653868 4.817904 0.933612 -3.443297 -0.964301 2.740172 -10.712988 -1.043657 -10.900472 -1.852791 -11.707238 -3.506684 1.622062 4.256305 0.034402 5.750108 0.851701 6.560732 -1.926675 -2.925046 6.822052 7.154670 -7.238206 -3.339506 -4.620367 -3.803079 2.198603 -4.038117 0.561431 4.520601 0.978954 -6.096456 -3.458777 2.064421 4.675161 -2.574994 -7.260144 2.458793 5.445127 -5.189127 -7.214513 1.813031 6.504146 -3.379613 -10.809747 -1.997453 -5.706452 2.458583 -0.456167 -2.525166 -7.915535 0.508687 3.845800 -1.669064 -5.264898 0.594627 3.462334 4.467100 3.743426 0.608618 0.807287 1.341810 13.182389 1.768286 -4.928701 1.198174 -0.240067 -1.284463 3.946478 -4.480831 -4.531126 1.388425 -8.063840 1.217757 6.524141 -4.031445 -1.016729 6.636801 3.705423 1.308109 23.307655 1.157960 9.069589 7.476243 -6.981829 1.647864 -3.582105 1.003170 2.550611 2.654795 -1.173377 -10.889278 -7.007364 3.984605 7.099545 5.832105 -7.274209 -3.395988 -1.069250 -0.237099 0.293422 -1.516400 1.836241 0.334000 -6.010337 -1.383348 6.243198 13.794797 -3.677481 1.708595 4.578006 4.178157 -4.595907 -9.127720 -4.156872 -7.652959 1.618635 2.151577 0.880263 4.180020 9.107810 -8.753302 6.053124 -1.595000 0.871975 4.779046 3.542640 -7.812863 -8.603452 -2.589436 3.651839 7.800512 -3.884224 2.571450 3.927437 -6.376963 -0.446888 1.470874 -1.260023 -1.215400 2.394443 0.827617 -2.838758 -3.139863 5.097580 -2.323591 -2.706736 0.814689 5.092467 1.550007 -6.588527 6.019601 0.021854 -3.128303 3.035594 -2.044671 8.416516 -6.433209 -6.241366 5.724900 0.553700 -0.320754 -2.179674 1.893310 5.205465 2.314860 2.607818 -3.956136 -7.133762 3.928290 -2.825490 5.744151 2.759675 -1.409998 2.762509 -5.193357 -1.706336 -7.174484 -5.044553 -2.897790 1.361540 -7.335320 -3.804183 -1.157577 7.971264 4.257646 0.812877 -6.732348 1.407443 7.230398 -7.449823 -0.742037 4.720838 4.733148 -8.508560 0.298845 5.960190 -8.391668 1.347047 -2.151091 0.222202 -2.398224 -5.463356 5.122489 2.625081 5.255215 -1.445240 1.588819 1.878442 3.126173 3.533066 2.246487 1.588136 8.924682 4.901515 -1.199923 -4.782675 -7.299630 2.319363 -8.365420 -9.007700 4.299377 2.044383 -6.399728 1.315857 1.762101 8.710822 1.665370 -0.012579 -1.250048 0.354561 +PE-benchmarks/finite-automata-algorithm.cpp__computeTF(char*, int, int (*) [256]) = -1.707024 -2.234582 -1.197963 -3.632302 2.119911 2.044652 1.233936 -1.920098 -4.309804 -0.430464 1.534488 -3.352690 0.222888 4.507496 -1.023672 4.452904 5.896248 1.110753 -1.956492 -0.239275 4.755322 -1.809748 4.871238 4.723153 -2.986599 -0.428315 -0.159972 1.945318 0.980600 0.748184 0.492822 -1.517920 1.787526 -5.115061 -1.189659 -3.583101 0.856736 2.368827 4.005756 -6.030701 1.250317 0.004401 0.948325 -1.222489 -1.606525 0.041973 1.670140 3.505031 -1.119191 1.578323 3.219011 0.382395 -0.725086 1.039871 0.508025 1.421939 -0.357289 0.676685 -1.297741 -1.747025 -0.161126 -0.970335 1.657495 3.093921 4.626633 0.061899 0.076640 3.044567 0.837151 0.827526 2.555164 0.328527 -1.770872 -1.163056 1.665680 -6.301233 -0.837364 -7.333090 -0.780667 -7.749998 -1.949295 0.648099 2.592131 -0.105537 2.658156 0.496211 3.313654 -1.118204 -1.234587 3.920991 3.432551 -3.474477 -1.707312 -2.640829 -2.268539 1.375339 -1.994704 -0.263304 2.977098 0.621576 -2.947314 -1.974453 1.900104 2.216169 -1.286749 -4.000259 1.076376 3.056126 -2.992809 -3.925286 0.470244 3.517080 -1.648390 -5.450969 -0.101740 -3.424635 1.648549 -0.115942 -1.217415 -3.740367 0.238950 1.931276 -0.924046 -2.439406 -0.013646 2.628994 1.951037 1.648717 0.440487 0.078905 0.316231 6.320689 1.355722 -2.624134 0.346469 0.381377 -1.243934 1.717854 -3.077322 -2.433904 1.526133 -4.170973 0.579154 2.812950 -2.144270 -0.737858 4.491312 1.719665 0.850167 13.117628 0.759600 4.767749 3.734521 -3.415840 1.959200 -1.340856 0.583627 1.683292 1.716475 -0.789652 -6.588026 -3.502319 1.597082 3.492378 3.089826 -4.361605 -2.844302 -0.811079 -0.073627 0.697057 -0.784557 0.882603 -0.025478 -3.055951 -0.626572 2.842751 7.858790 -1.562526 0.987719 2.171329 2.327367 -3.225153 -6.555652 -1.983061 -4.263919 0.628446 0.551271 0.119753 2.085939 4.631761 -6.212720 3.089640 -1.129611 0.592002 2.553715 1.723258 -3.894736 -6.849677 -1.314320 1.743228 4.967384 -1.872701 1.703846 2.154002 -3.195654 -0.151539 0.653129 -0.510850 -0.705748 1.329628 0.006027 -1.592170 -1.480567 2.563394 -1.561943 -1.421972 0.580734 2.435598 1.040444 -3.906694 2.850510 -0.404418 -1.479202 1.739600 -0.616044 4.250616 -3.277055 -3.340842 2.979926 0.610445 -0.155028 -1.868258 0.943216 2.874310 0.710082 0.629661 -1.466134 -4.741137 1.978569 -2.034846 2.737915 1.420742 -0.979929 1.833869 -1.641900 -0.941247 -4.288808 -2.137490 -1.753187 0.129045 -3.495971 -2.189074 -0.577933 3.919122 2.375588 0.737942 -3.108037 0.978680 4.525520 -3.565960 -0.578727 2.559483 2.191577 -4.016272 0.513683 3.224394 -5.040805 0.488079 -1.364377 0.302265 -0.640452 -2.545103 2.709979 1.136683 2.517951 -0.742792 0.944311 0.797758 1.699463 2.013548 1.166718 0.373717 5.285781 3.698257 -0.746237 -2.277857 -3.418375 0.869692 -4.255254 -4.334190 1.488388 1.627133 -3.303520 1.002058 1.477109 4.524904 0.725560 0.417164 -0.397312 -0.067077 +PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -2.007062 -2.349446 -0.381192 -4.313596 2.793348 2.613884 1.606891 -2.574912 -5.184757 -0.662525 2.333165 -5.259615 -0.723654 5.601675 -1.846637 4.432687 7.037647 1.256204 -2.787446 -1.221991 5.854424 -0.763668 7.359434 6.257091 -4.630697 -0.545095 -0.306403 2.539252 2.486831 0.572470 0.726057 -1.875436 2.489935 -5.617419 -1.275567 -3.470291 1.231417 1.957135 4.406199 -6.932015 1.325256 -0.199483 1.069986 -1.336613 -1.645798 0.931023 3.131570 4.584129 -1.236154 1.714471 4.829455 0.594725 -0.646983 1.290514 0.393663 0.556898 0.902073 0.224003 -1.860354 -2.351666 -0.208802 -1.509875 1.266520 4.570592 6.233164 0.629420 0.090052 3.428556 1.500319 1.247870 3.361726 0.657525 -0.909808 -0.195132 2.645467 -6.723043 -0.699834 -9.915625 -1.221953 -9.826098 -2.594344 0.182006 4.008419 -0.772967 2.649977 0.673988 4.479661 -0.434184 -1.467744 5.205618 5.339354 -4.254118 -2.434669 -3.107614 -3.119058 2.031930 -3.041973 0.979877 2.730357 1.522857 -4.044003 -2.720652 1.712277 2.247653 -1.793913 -3.809736 1.134402 3.644703 -3.816085 -3.622294 -0.011580 3.899846 -0.961241 -7.563313 -1.296269 -4.264620 3.323151 0.053011 -1.447587 -4.063839 0.124211 2.125350 -1.523836 -2.457593 -0.805142 2.853922 2.650447 2.377416 0.269682 0.521390 1.051713 7.611003 1.421920 -3.518397 0.319518 -0.020623 -1.689729 2.328620 -3.908989 -2.630285 2.714255 -4.474946 1.101208 3.431717 -2.783802 -1.993026 4.731837 1.837702 1.330724 14.792711 1.120167 5.847853 4.564176 -4.471660 1.416523 -2.015795 0.814788 2.179721 2.362570 -0.643177 -7.054338 -4.847057 2.385809 4.648135 3.725278 -5.625451 -2.068796 -0.418135 0.050111 0.093626 -0.635125 1.448660 -0.290002 -3.645090 -0.941267 4.239816 9.316217 -2.017195 -0.191724 2.426316 2.429519 -2.732134 -6.086481 -2.272015 -3.230877 1.166256 1.239252 0.775934 3.043682 6.212903 -8.228407 4.040448 -0.771209 0.955390 3.096596 1.922611 -5.235672 -5.799068 -0.876328 2.686465 5.217844 -1.151629 0.806588 2.761525 -4.427038 -0.294858 0.784664 -0.158977 -0.933948 1.802555 0.483670 -2.160404 -2.666771 1.698686 -1.500476 -0.817490 0.112668 3.343806 0.624515 -6.343934 4.422577 -0.758313 -2.094036 1.035346 -1.704772 5.001691 -4.570294 -4.320146 3.173618 -0.294678 -1.491642 -3.105462 1.143955 3.210129 0.945425 1.958292 -2.777208 -5.089582 3.393860 -2.492180 3.626044 1.932768 -0.767301 2.703303 -2.059456 -1.022074 -5.562954 -2.164352 -1.039075 0.254686 -4.936091 -1.519275 -0.800281 4.644985 3.504400 -0.041323 -3.817515 0.639899 5.375831 -5.326988 -2.045352 3.157848 3.448210 -5.182912 1.864498 3.879395 -6.139648 0.313176 -2.139428 -0.739642 -1.021290 -3.787162 3.424536 0.962057 3.244225 -0.462897 1.236197 0.720745 2.400719 1.784522 1.002171 0.603399 6.715272 5.852723 -1.550557 -2.126984 -5.202128 1.939562 -6.012645 -6.390804 2.489743 0.861578 -4.060276 1.128477 0.838039 5.917371 1.337736 -0.440617 -1.558660 0.914451 +PE-benchmarks/finite-automata-algorithm.cpp__main = -0.565250 -0.444416 0.371215 -1.318336 0.902843 0.485045 0.477135 -0.561349 -1.515851 -0.385689 0.399969 -1.294868 -0.403128 1.713040 -0.570165 1.035735 2.308800 0.655418 -0.660163 -0.582986 1.629437 -0.727989 2.177761 2.020295 -1.544472 -0.070813 0.260899 0.971481 0.788924 0.661691 -0.168149 -0.563073 0.689166 -1.426693 0.055579 -1.403960 0.297591 0.522076 0.837787 -2.424659 0.364532 -0.184889 0.309428 -0.317497 -0.363619 0.779606 1.191831 1.361195 -0.485327 0.571457 1.397569 0.222420 -0.105738 0.417619 0.267057 0.412952 0.682248 0.235387 -0.610327 -0.409675 -0.154165 -0.930855 0.461640 1.436294 1.954543 0.116129 0.052980 0.761645 0.350780 0.360928 0.895635 0.236514 -0.134086 -0.031292 0.826756 -2.214840 -0.006197 -3.310765 -0.368829 -3.650359 -0.898701 -0.352970 1.197299 -0.461491 0.709085 0.296449 1.531419 -0.086900 -0.120646 1.275880 1.727003 -1.359370 -0.714535 -0.956402 -0.927218 0.643652 -0.899714 0.089377 0.894247 0.346743 -1.201967 -0.983841 0.847702 0.570011 -0.605362 -0.855234 0.170496 1.312794 -1.474653 -1.073805 -0.564220 0.794163 -0.284491 -2.255363 0.070616 -1.292948 1.391840 0.083636 -0.445774 -1.261756 0.158658 0.930374 -0.504696 -0.654689 -0.493854 1.175198 0.660984 0.428820 0.101263 0.011676 0.189009 1.976104 0.922247 -1.069187 -0.060627 0.233377 -0.894516 0.352541 -1.365937 -0.752668 1.044837 -1.398030 0.208901 0.871634 -0.944865 -0.523460 1.680319 0.297039 0.644573 4.393328 0.138628 1.534008 1.095903 -1.442455 0.620035 -0.350524 0.142401 0.725786 0.986130 0.001537 -2.188157 -1.458739 0.563497 1.493369 1.158574 -1.763906 -0.913417 -0.443874 -0.038331 0.209670 -0.124061 0.371200 -0.266933 -1.079714 -0.338437 0.910519 2.810142 -0.638837 -0.510180 0.553075 0.481457 -0.966876 -2.076031 -0.590685 -0.906161 0.328072 0.056229 0.041002 0.931679 1.940113 -3.184057 1.404622 -0.504603 -0.008789 1.084649 0.356567 -1.198554 -2.150649 -0.111917 0.951058 1.792997 -0.197905 0.157571 0.764624 -1.444533 -0.132353 0.100383 0.327898 -0.472480 0.644846 0.294315 -0.937918 -0.869279 0.208045 -0.260069 -0.367230 0.029418 0.918634 0.120737 -2.569741 1.456923 -0.348887 -0.571691 0.510911 -0.294748 1.241046 -1.508419 -1.493403 0.867340 0.072382 -0.448712 -1.094216 0.221401 1.172846 -0.047217 0.310365 -0.824164 -1.737308 0.961873 -0.830212 1.047424 0.644665 -0.063556 1.259134 -0.252945 -0.360782 -1.678941 -0.286112 -0.335838 -0.281853 -1.179404 -0.436641 -0.328878 1.388448 1.479828 0.052827 -0.676802 0.243235 1.846196 -1.659567 -0.708098 1.055436 1.041404 -1.203644 0.739059 1.259301 -1.930797 -0.339839 -0.738271 -0.392675 -0.070830 -1.096715 1.067278 -0.185167 0.827040 0.097619 0.345456 -0.058952 0.843871 0.436129 0.255863 0.069516 2.074332 2.272750 -0.720451 -0.340087 -1.417172 0.618782 -1.947419 -1.650370 0.415174 0.376937 -1.052257 0.432363 0.248786 1.658192 0.287170 -0.083523 -0.349913 0.048992 +PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -2.344173 -2.267758 -0.796806 -4.586365 3.455917 2.966466 1.970810 -1.860238 -5.433976 -1.613957 1.719813 -4.773846 -1.060691 6.673160 -1.222713 5.656360 7.999464 1.623272 -2.238862 -0.023397 6.015248 -2.322399 6.992983 6.302763 -4.235654 -0.434585 -0.386401 2.261694 0.298969 1.703888 0.398139 -3.249054 3.000464 -6.465789 -1.625926 -4.466766 1.073948 2.687949 4.185884 -8.060454 1.632597 0.407247 -0.116737 -1.805094 -2.269826 -0.225632 3.696031 4.956555 -1.736891 2.188098 3.587235 0.116796 -1.074782 1.732130 0.808891 1.504966 -1.714933 -0.073756 -2.689261 -2.169615 -0.593984 -2.861432 1.586609 4.159778 5.821393 0.073150 0.061895 4.160100 0.083282 1.080012 3.028350 0.468376 -0.804486 -1.574299 2.787481 -7.491899 -2.104668 -9.167779 -1.742425 -10.719778 -3.290309 0.242071 4.295594 0.902868 3.387204 -0.383120 4.877362 -1.469162 -1.210796 5.849824 5.988509 -5.443105 -2.681459 -4.212626 -2.691190 1.808956 -2.901157 -0.393226 2.822622 0.118011 -4.613602 -3.044698 2.253867 2.620731 -1.697996 -5.646223 1.184552 4.786311 -5.155159 -5.051003 -0.742321 3.921166 -1.742150 -7.799808 -0.206564 -2.942923 2.978498 0.665212 -1.934961 -5.115117 0.896660 2.873588 -1.329002 -3.551897 -0.494848 3.982150 2.057500 2.163637 1.261792 0.553126 0.775183 8.543040 3.047909 -3.144080 0.313406 0.333022 -1.451541 2.212466 -3.291891 -3.391985 1.394843 -6.144301 0.264211 3.976396 -3.304205 -1.193033 4.332294 2.054664 1.592458 16.111618 0.706353 6.111139 4.449052 -5.488678 2.519642 -2.454842 0.114284 1.818391 2.821977 -0.344638 -7.885243 -4.792744 2.729550 5.179006 4.485841 -5.497328 -3.122544 -1.396612 0.352577 0.401792 -0.735387 1.648784 0.668180 -4.597440 -0.873638 4.194257 10.600742 -2.693206 0.393051 3.422850 2.450693 -2.924014 -7.734090 -2.663394 -4.788141 0.522918 1.624989 -0.147350 2.613291 6.876424 -7.690421 4.564369 -1.956366 0.350742 2.434722 2.239711 -5.090989 -7.986571 -1.789506 3.486012 6.595620 -1.486107 2.374688 2.045661 -4.555906 -0.336118 1.153370 -0.317642 -0.777296 2.129009 -0.409264 -2.991255 -2.581253 2.324813 -2.316933 -1.753129 0.507582 3.252162 1.894823 -6.162955 4.862692 -0.597739 -2.110368 2.206944 -0.527075 6.443018 -4.656577 -5.782792 4.307765 -0.167984 -1.796249 -2.175166 1.140820 3.659976 1.180839 -0.703857 -1.496067 -6.479041 3.568556 -1.598937 4.224095 2.093036 -0.653929 4.154096 -1.209847 -2.217281 -4.995816 -4.031896 -0.860332 -0.976704 -4.644587 -2.851678 -0.962051 5.581241 3.826079 1.038243 -4.156497 0.915282 5.895998 -5.297768 -0.998210 4.433282 2.939039 -5.182856 1.197427 5.306116 -6.454391 0.115447 -2.381966 1.018371 -1.266777 -4.184783 2.775573 0.713436 2.919731 -0.253642 1.249763 0.430150 2.117829 2.498811 1.495048 -0.106902 7.267734 5.209447 -2.280759 -2.424825 -4.793272 1.677576 -6.457217 -6.383985 2.254780 2.873031 -3.708139 1.085322 1.371429 5.435486 0.613069 -0.077503 -0.702126 -0.285311 +PE-benchmarks/sudoku.cpp__FindUnassignedLocation(int (*) [9], int&, int&) = -1.288369 -1.052672 -0.350122 -3.011053 1.868319 1.742845 0.842472 -1.154103 -3.088682 -0.516514 0.468711 -2.281759 0.004087 3.649809 -0.755108 3.130530 4.706232 1.046085 -1.247627 -0.006001 3.764362 -1.747541 3.739348 3.356474 -2.416700 -0.358216 0.628554 1.497009 0.274724 1.513687 -0.194424 -1.805756 0.957016 -3.670325 -0.369698 -3.016853 0.714637 1.649497 2.577435 -4.859052 1.001446 0.006223 0.423240 -1.120502 -1.288652 -0.781500 2.044992 2.699089 -1.136679 0.573843 2.374690 0.740566 -0.795204 0.811570 0.541711 1.628268 -0.107176 0.456859 -1.127460 -1.113297 -0.209192 -0.858705 1.519719 2.512659 3.402529 0.162046 0.231549 2.200236 0.339669 0.518530 1.493366 0.116147 -1.281964 -0.686637 1.235045 -5.057861 -0.646966 -6.220047 -0.447730 -6.019049 -1.566075 -0.155272 1.378165 0.096507 2.104488 0.202461 2.693665 -1.166026 -0.201442 3.146195 3.187006 -2.778963 -1.274075 -2.783006 -2.168062 1.116791 -1.423430 -0.715604 1.813320 0.019991 -2.259623 -2.225559 1.466326 1.870866 -0.959935 -3.182107 0.752782 2.623971 -2.377270 -3.225915 -0.248300 2.546569 -1.554671 -4.486287 -0.352360 -2.472156 1.169730 -0.073881 -0.862634 -3.670341 0.307910 2.363678 -0.912112 -2.059294 -0.025021 2.304823 1.524548 0.728084 0.435740 -0.441584 0.205268 4.780232 1.814174 -1.999292 0.090303 0.528035 -1.362683 0.429076 -2.487844 -1.866502 0.911448 -3.320352 0.087432 2.611824 -1.785650 -0.263633 3.421452 0.672247 1.297325 10.932329 0.176362 3.297167 2.323710 -3.264923 1.898947 -0.530394 -0.157970 0.940459 1.537238 -0.107281 -5.429426 -2.709044 1.137707 2.702071 2.545162 -2.921702 -2.491635 -1.259145 -0.380761 0.789176 -0.665241 0.659307 -0.455808 -2.512299 -0.662146 2.178570 6.373084 -1.187081 0.038890 1.798319 1.956986 -2.622513 -4.658508 -1.452027 -3.807386 0.369235 0.428631 -0.479963 1.878080 3.775143 -5.517355 2.634470 -1.087450 -0.153984 1.689199 0.939675 -2.493885 -5.118284 -0.710960 2.170604 4.028771 -1.437544 1.442043 1.116417 -2.435446 -0.129172 0.394639 0.192356 -0.693047 1.020851 -0.146232 -2.112742 -1.424214 1.720416 -1.451592 -1.575401 0.250564 1.494849 0.850911 -3.630203 2.997997 -0.261168 -0.598365 1.742549 -0.365504 3.173826 -2.731201 -3.221539 2.332615 0.908963 0.385954 -0.940476 0.589664 2.685568 0.456663 0.357611 -1.101782 -4.281911 1.161154 -1.133042 2.136908 1.089357 -0.273744 1.790830 -0.926570 -0.674971 -3.437566 -1.727734 -1.061151 0.119937 -2.630267 -2.230991 -0.587682 3.225355 2.278531 0.436476 -2.193750 0.387150 3.513384 -2.704549 -0.283944 2.119898 1.315199 -3.299961 -0.250991 2.731865 -3.687432 -0.379814 -1.251754 0.714607 -0.363027 -2.384989 1.580754 0.254374 1.571289 -0.028146 0.428868 0.173996 1.201961 1.698307 0.861820 0.131588 3.908759 2.472495 -0.783100 -1.391051 -2.478214 0.575999 -3.792959 -3.374653 0.814258 1.175532 -2.312579 0.851614 0.986092 3.300656 -0.005707 1.205255 0.228431 -0.769162 +PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -2.222326 -2.403461 -0.287839 -5.041511 3.218493 2.912474 1.780598 -3.086048 -4.976991 -0.589225 2.345241 -4.812517 -0.356788 5.783783 -1.735090 4.905853 6.689323 1.087364 -2.597108 -0.945875 5.352026 -0.686429 6.614985 5.988446 -4.294924 -0.361702 -0.236333 2.007019 1.568965 0.750408 0.045859 -2.266196 2.449680 -5.561934 -1.570620 -3.323086 0.766306 2.056438 4.972993 -6.566012 1.543141 -0.295026 -0.123746 -1.283255 -1.446617 0.054496 3.163323 4.224926 -1.400716 2.092320 3.909842 0.398903 -0.815700 1.268234 1.257635 1.122784 0.699543 0.507618 -1.633048 -2.593973 -0.635862 -0.663465 1.223194 3.939475 4.841924 0.575305 -0.385720 3.350047 1.536724 0.798923 2.977754 0.933730 -1.310978 -0.208417 2.110679 -6.831894 -0.883142 -8.693755 -1.094489 -8.342485 -2.880773 1.006482 3.581611 -0.448736 3.025651 0.242708 4.569043 -0.792290 -1.990238 4.089289 5.187730 -4.797897 -2.083818 -2.528800 -2.861376 1.065387 -2.076219 0.944182 2.103811 0.967011 -4.246827 -2.712977 1.736240 2.230815 -1.709124 -3.904563 0.894746 3.975889 -4.122477 -3.691804 0.723835 4.014717 -1.343987 -6.722982 -1.271201 -3.623145 3.273249 -0.279169 -2.306587 -4.575358 0.699449 2.368538 -1.809887 -2.501482 -0.129130 2.930384 3.228291 2.266566 0.227285 0.520366 0.795646 7.835354 1.373455 -3.509545 0.679892 -0.213535 -0.712892 2.183909 -2.938787 -2.415669 1.307733 -4.748316 1.106201 3.581236 -2.735314 -1.148206 4.712956 2.208790 0.652075 14.817914 0.529595 6.126672 4.534364 -4.476974 1.070560 -2.141654 0.772471 1.775686 2.320965 -0.341668 -6.750972 -4.701689 3.121868 4.721001 3.458070 -5.350163 -2.204570 -0.423589 -0.176836 0.032843 -0.434633 0.772714 0.078816 -3.800584 -1.034357 3.990875 9.167087 -2.337430 -0.978275 2.528164 2.076774 -1.982327 -5.443595 -2.425527 -3.766210 1.120573 2.007689 0.826409 3.181339 6.254140 -8.158652 4.013692 -0.862165 0.462091 3.164915 2.610945 -4.999233 -5.603427 -1.785902 2.574111 5.053259 -1.512033 1.329035 2.518769 -4.326588 -0.253011 0.989697 -0.770246 -1.366719 2.076270 0.877229 -2.671413 -1.905356 1.520977 -1.796639 -1.192619 0.039562 3.424936 0.156702 -6.775565 4.127124 -0.133893 -1.912998 1.591706 -1.672928 5.710376 -3.951682 -4.447983 3.689204 -0.143758 -1.328076 -1.905748 0.887730 2.780623 1.003684 1.804954 -2.822200 -4.846539 3.221438 -2.348954 4.256986 1.986510 -0.763737 2.785176 -2.984583 -1.085101 -4.518012 -2.844821 -0.248349 0.498403 -4.767037 -1.964202 -0.826704 4.598461 2.836502 0.269086 -3.863068 0.504741 4.801674 -5.064322 -0.203110 3.132545 3.453962 -5.171105 1.066268 4.005732 -5.179210 0.815852 -1.938551 -0.816662 -2.061131 -3.387774 3.230520 1.642196 3.038083 -0.795535 1.191525 0.673588 2.237559 1.925551 1.187521 1.209289 5.916650 4.942032 -1.470755 -2.316662 -4.915646 2.284433 -5.489698 -6.107123 2.667199 0.859015 -4.074541 0.447322 0.177656 5.862421 1.346070 -0.345939 -0.601413 0.920544 +PE-benchmarks/sudoku.cpp__UsedInRow(int (*) [9], int, int) = -1.040641 -1.150546 -0.017460 -2.228199 1.329728 1.187056 0.742833 -0.992193 -2.517347 -0.254853 0.567339 -1.901911 0.002988 2.848185 -0.617725 2.553863 3.438514 0.970225 -1.143859 -0.085236 2.724107 -1.310634 2.838507 2.727007 -1.777026 -0.242355 0.014353 1.343596 0.328913 1.239270 -0.330434 -0.948106 0.815943 -2.857231 -0.314106 -2.250630 0.455862 1.429049 1.945675 -3.601644 0.753347 0.301059 0.814339 -0.803541 -0.852837 -0.539310 1.271843 2.098620 -0.528132 0.705008 1.617358 0.062440 -0.221034 0.653230 0.689924 1.317088 0.249894 0.172230 -1.037734 -0.813792 -0.278182 -0.945129 1.148651 1.895266 2.642030 0.128415 0.060545 1.466266 0.365722 0.431042 1.401692 0.175834 -1.150955 -0.589364 0.945141 -3.624117 0.016614 -4.000672 -0.376376 -3.968544 -1.275927 0.064394 1.370850 0.318938 1.686339 0.088759 2.147767 -0.917815 -0.442337 1.761465 2.292354 -2.295401 -1.065719 -1.790892 -1.430106 0.741415 -1.166316 -0.585430 1.392982 0.173123 -1.804256 -1.298564 1.216772 1.453173 -0.750665 -1.737644 0.540252 2.142167 -1.877700 -2.617094 -0.205646 1.660620 -1.139760 -3.244054 0.136173 -1.841433 0.668018 0.087265 -0.874345 -2.571546 0.420998 1.543402 -0.627575 -1.488413 -0.560122 1.749776 0.831785 0.591241 0.275257 -0.110204 0.025016 3.450765 1.214071 -1.573780 0.185978 0.488009 -1.143229 0.649766 -1.752085 -1.576104 0.534309 -2.605308 -0.407954 1.682109 -1.430772 0.085270 2.186615 1.039115 0.794170 7.549858 0.145656 2.560783 1.766268 -2.256145 1.611777 -0.359432 0.213797 0.789763 1.173037 -0.223075 -3.993573 -2.154549 0.932210 2.205008 1.962722 -2.121108 -1.809816 -0.930061 -0.055208 0.668582 -0.370875 0.572010 -0.168883 -1.959722 -0.448907 1.206385 4.584168 -1.107160 -0.310576 1.334170 0.801449 -1.939614 -3.638041 -1.138592 -2.658683 0.275462 -0.283427 -0.202350 1.276968 2.914437 -3.636836 2.202927 -0.955204 -0.209054 1.939669 0.385103 -1.936313 -3.612931 -0.853020 1.314053 2.956358 -0.939960 0.603325 1.082614 -2.007603 -0.107210 0.193950 0.115691 -0.538581 0.931680 -0.072679 -1.388704 -0.984498 0.962127 -0.871249 -1.198868 0.131834 1.323097 0.639503 -2.344301 1.970578 -0.039205 -0.653291 1.443796 -0.058300 1.991907 -2.053677 -2.292095 1.682958 0.555066 0.018137 -1.025081 0.433207 1.848486 0.329645 -0.271736 -0.965653 -2.701329 1.044858 -1.096607 1.787132 0.855633 -0.449287 1.188881 0.212779 -0.665010 -2.210018 -1.045913 -1.277179 -0.174531 -1.852478 -1.766425 -0.464273 2.515403 1.723790 0.522601 -1.234555 0.227272 2.810993 -1.964244 -0.429297 1.723973 0.395049 -2.229376 -0.000587 2.143262 -2.869212 -0.145675 -0.871060 0.170359 -0.346882 -1.529915 1.477066 0.217002 1.310652 -0.256543 0.364485 0.185168 0.872599 1.242671 0.519729 0.155651 3.243152 1.709645 -0.508239 -0.953740 -1.962553 0.585394 -2.694913 -2.219035 0.613337 1.158523 -1.975527 0.681542 0.999699 2.532679 0.296998 0.312368 -0.022011 -0.468338 +PE-benchmarks/sudoku.cpp__UsedInCol(int (*) [9], int, int) = -1.040640 -1.150546 -0.017460 -2.228199 1.329729 1.187056 0.742833 -0.992192 -2.517347 -0.254853 0.567339 -1.901911 0.002989 2.848185 -0.617725 2.553863 3.438516 0.970225 -1.143860 -0.085236 2.724107 -1.310636 2.838507 2.727008 -1.777026 -0.242355 0.014353 1.343597 0.328913 1.239270 -0.330435 -0.948106 0.815943 -2.857231 -0.314106 -2.250631 0.455862 1.429049 1.945675 -3.601645 0.753347 0.301059 0.814339 -0.803541 -0.852838 -0.539308 1.271844 2.098620 -0.528132 0.705008 1.617358 0.062440 -0.221034 0.653230 0.689924 1.317089 0.249896 0.172232 -1.037734 -0.813792 -0.278181 -0.945129 1.148651 1.895266 2.642031 0.128415 0.060545 1.466267 0.365722 0.431042 1.401692 0.175834 -1.150955 -0.589364 0.945141 -3.624118 0.016613 -4.000673 -0.376377 -3.968547 -1.275928 0.064394 1.370851 0.318936 1.686339 0.088759 2.147766 -0.917816 -0.442337 1.761465 2.292354 -2.295401 -1.065719 -1.790892 -1.430106 0.741415 -1.166316 -0.585431 1.392983 0.173122 -1.804256 -1.298564 1.216774 1.453173 -0.750665 -1.737644 0.540252 2.142167 -1.877700 -2.617093 -0.205645 1.660620 -1.139760 -3.244054 0.136174 -1.841434 0.668018 0.087265 -0.874345 -2.571546 0.420998 1.543402 -0.627576 -1.488413 -0.560122 1.749777 0.831784 0.591242 0.275257 -0.110204 0.025016 3.450765 1.214071 -1.573780 0.185978 0.488009 -1.143230 0.649766 -1.752086 -1.576104 0.534310 -2.605308 -0.407954 1.682109 -1.430772 0.085270 2.186616 1.039115 0.794170 7.549861 0.145656 2.560784 1.766267 -2.256145 1.611778 -0.359432 0.213796 0.789763 1.173037 -0.223075 -3.993575 -2.154549 0.932210 2.205008 1.962722 -2.121110 -1.809817 -0.930062 -0.055208 0.668582 -0.370875 0.572010 -0.168883 -1.959722 -0.448907 1.206385 4.584170 -1.107159 -0.310576 1.334170 0.801449 -1.939615 -3.638044 -1.138592 -2.658683 0.275463 -0.283428 -0.202351 1.276968 2.914438 -3.636838 2.202927 -0.955204 -0.209054 1.939670 0.385103 -1.936313 -3.612933 -0.853020 1.314053 2.956360 -0.939960 0.603325 1.082614 -2.007603 -0.107210 0.193950 0.115691 -0.538581 0.931680 -0.072679 -1.388704 -0.984498 0.962127 -0.871249 -1.198868 0.131834 1.323097 0.639503 -2.344301 1.970578 -0.039205 -0.653291 1.443796 -0.058300 1.991907 -2.053677 -2.292095 1.682958 0.555066 0.018137 -1.025082 0.433207 1.848486 0.329645 -0.271735 -0.965653 -2.701331 1.044858 -1.096608 1.787132 0.855634 -0.449287 1.188881 0.212780 -0.665010 -2.210019 -1.045914 -1.277180 -0.174531 -1.852478 -1.766425 -0.464273 2.515403 1.723790 0.522601 -1.234555 0.227272 2.810994 -1.964244 -0.429297 1.723974 0.395049 -2.229376 -0.000587 2.143263 -2.869213 -0.145675 -0.871060 0.170357 -0.346882 -1.529915 1.477065 0.217002 1.310652 -0.256543 0.364485 0.185168 0.872599 1.242670 0.519729 0.155651 3.243153 1.709646 -0.508240 -0.953740 -1.962553 0.585394 -2.694913 -2.219035 0.613337 1.158524 -1.975528 0.681542 0.999700 2.532679 0.296997 0.312368 -0.022011 -0.468338 +PE-benchmarks/sudoku.cpp__UsedInBox(int (*) [9], int, int, int) = -1.516606 -1.842236 -1.099129 -2.830478 1.828063 1.887850 1.071844 -1.453999 -3.730119 -0.007688 0.977538 -2.961616 0.098119 4.070626 -0.780967 3.865054 5.152935 1.285141 -1.703858 0.062644 4.102159 -1.779766 4.102509 3.944357 -2.422107 -0.389150 -0.262591 1.337662 0.366275 1.318307 -0.211670 -1.502226 1.410715 -4.370183 -0.761491 -3.255967 0.694051 2.172580 3.302686 -5.299593 1.103560 0.620840 1.553105 -1.209465 -1.368774 -0.058053 1.622317 3.023135 -0.869729 1.077917 2.381115 0.139184 -0.368579 0.923604 0.700682 1.724321 -0.142193 0.902451 -1.462239 -1.446037 -0.328931 -0.926538 1.484032 2.614022 3.937262 0.192898 0.055511 2.363117 0.527056 0.673489 2.049376 0.237436 -1.286340 -1.076920 1.433011 -4.613968 -0.513039 -5.659656 -0.584575 -6.452034 -1.477456 0.343065 2.033256 0.080751 2.437163 -0.017241 3.045440 -1.304766 -0.823749 3.131956 3.178389 -3.248091 -1.545093 -2.557776 -2.161129 1.083572 -1.680842 -0.626462 2.865919 0.132159 -2.641001 -2.120682 1.512545 2.091592 -1.044139 -3.002672 0.855445 2.617533 -2.537876 -3.557348 -0.002827 2.521487 -1.617509 -4.679849 -0.060447 -2.765990 0.305704 0.121420 -1.238585 -3.577956 0.477958 1.838581 -0.940285 -2.265474 -0.150162 2.523025 1.250155 1.048619 0.441437 -0.251492 0.092168 5.187628 1.293896 -2.377927 0.356179 0.586277 -1.419753 1.163788 -2.718727 -2.382247 1.291543 -3.830253 0.142239 2.245152 -1.996983 0.051708 3.423288 1.436924 0.968020 10.695451 0.373742 3.934459 2.761784 -3.205440 2.466854 -0.762725 0.374815 1.187536 1.723689 -0.473759 -5.369622 -3.086288 1.385135 3.108740 2.802919 -3.283029 -2.407027 -1.032915 0.065228 0.818338 -0.597459 0.852678 -0.163057 -2.836687 -0.575943 1.997370 6.952602 -1.593904 0.622738 1.976160 1.879132 -2.804665 -5.403529 -1.672948 -4.219559 0.393223 -0.152399 -0.188676 1.862449 4.125055 -5.101379 3.045563 -1.354100 0.040307 2.487917 0.960694 -3.090458 -5.445944 -1.185546 1.729867 4.462795 -1.313898 1.006181 1.608814 -2.804444 -0.128150 0.358752 -0.078830 -0.687929 1.302293 -0.235199 -1.712234 -1.329876 1.825072 -1.288010 -1.825165 0.350948 1.952963 1.114701 -3.010938 2.660771 -0.092117 -1.023185 1.619571 0.030297 2.728133 -2.853170 -3.167666 2.429062 0.681294 0.135297 -1.429760 0.703434 2.586585 0.710305 0.103471 -1.274949 -4.525719 1.855455 -1.559163 2.572029 1.204718 -0.796906 1.370936 -0.141502 -0.990336 -3.543077 -1.663598 -1.977767 -0.191515 -2.787043 -1.992134 -0.590573 3.605855 2.232845 0.782918 -2.307543 0.343104 4.051436 -2.346867 -0.461200 2.451061 0.855974 -3.294359 0.018773 3.048084 -4.241460 0.046874 -1.227408 0.453178 -0.555265 -2.174909 2.089539 0.441256 1.917841 -0.516404 0.507596 0.513091 1.224271 1.871785 0.632240 0.242668 4.773983 2.091393 -0.704869 -1.399947 -2.854598 0.813563 -3.780053 -3.343848 1.002906 1.523515 -3.130768 0.935666 1.721571 3.690771 0.352530 0.481821 -0.272174 -0.536767 +PE-benchmarks/sudoku.cpp__printGrid(int (*) [9]) = -0.807676 -0.716218 -0.281719 -2.072246 1.130355 1.067087 0.542618 -0.590766 -2.194363 -0.725434 0.512463 -2.235925 -0.408720 2.480612 -0.670955 1.778278 3.363381 0.513631 -0.904549 0.048421 2.307059 -1.037218 2.597360 2.496308 -1.814798 -0.289224 -0.165465 1.290319 0.255462 0.853058 0.557396 -1.472599 0.534494 -1.924175 -0.157690 -1.771813 0.583085 0.982629 1.279180 -3.602106 0.589829 0.861135 0.676515 -0.732923 -0.693271 -0.195758 1.382992 1.913112 -0.711936 0.324188 1.776536 0.591423 -0.359777 0.471855 0.139931 0.276131 -0.197641 -0.235883 -0.983461 -0.759398 0.007345 -0.794506 0.687218 1.861807 2.597247 0.152206 0.167993 1.192326 0.231990 0.537339 1.096645 0.139077 -0.759824 -0.187705 0.887403 -2.530123 -0.350602 -3.620714 -0.071768 -4.387931 -1.173242 -0.121397 1.665437 1.193838 0.947626 -0.341865 1.887714 -0.617797 -0.176190 2.438089 2.198595 -1.455366 -0.967099 -1.986470 -1.465742 1.078784 -1.146556 -0.347177 1.237845 0.561850 -1.601309 -0.828956 0.828372 1.009860 -0.690663 -1.614266 0.432426 1.679488 -1.832686 -1.706061 -0.099412 1.927018 -0.446459 -3.255736 -0.284376 -1.697573 0.174224 0.033205 -0.502835 -1.677770 0.122521 1.003973 -0.540742 -0.820850 -1.261524 1.889753 0.856664 0.579867 0.350671 0.186767 0.410819 2.912677 0.522786 -1.291370 0.014219 0.319722 -0.778265 0.419500 -1.647454 -1.169645 0.722709 -2.202161 0.166219 1.431553 -1.199252 -0.589576 0.851642 0.425286 0.907921 7.556799 0.237676 2.572927 1.690084 -1.967879 1.630488 -0.389852 -0.142542 0.534738 0.842604 -0.034035 -3.139755 -1.800745 0.881102 1.966433 1.683742 -1.796154 -0.952388 -0.412153 -0.234817 0.222310 -0.197738 0.584190 -0.259914 -1.689106 -0.434793 1.764015 4.292269 -0.356971 0.225470 1.152540 1.557059 -1.552601 -3.070348 -0.747272 -1.973445 0.270482 0.264612 -0.137655 1.258893 2.605765 -3.663994 1.855921 0.036162 0.317833 1.442574 0.293249 -1.958386 -3.959671 -0.427839 1.409856 2.869286 -1.039640 0.811683 0.696872 -1.697969 -0.075193 0.471183 0.058961 -0.420989 0.702668 -0.269856 -0.983860 -1.159693 0.695879 -1.179992 -0.557524 -0.283743 1.053484 0.898064 -2.075446 2.019493 -0.296440 -0.627347 0.435928 -0.527676 1.892354 -2.080653 -2.006648 1.286467 0.119342 -0.711121 -0.949246 0.285317 1.516884 0.343694 0.240985 -0.712328 -2.718310 1.329863 -0.911565 1.448519 0.790091 -0.233332 1.000658 0.420255 -0.435252 -2.050000 -1.543282 -0.564797 -0.119895 -1.958860 -0.647439 -0.394798 1.967272 1.530950 0.049106 -1.785980 0.356886 2.420590 -1.125460 -0.673984 1.330050 -0.116070 -2.157199 0.151086 1.785038 -2.696684 -0.004309 -1.303030 0.542661 -0.295210 -1.655187 1.040972 0.226996 1.116253 0.120548 0.221426 -0.160990 0.789125 1.082603 0.256095 0.170489 3.069432 1.455420 -0.386130 -0.462530 -2.025326 0.486431 -2.569833 -2.425690 0.582254 0.582241 -1.444761 0.541116 0.810275 2.173552 0.240075 0.606694 -0.209225 0.034544 +PE-benchmarks/sudoku.cpp__main = -0.865356 -0.672325 0.169385 -2.011981 1.517848 0.952139 0.808921 -0.268843 -2.532714 -1.044102 0.484910 -2.686774 -1.001831 3.072060 -0.559313 1.767197 3.721439 0.877083 -1.002903 0.038068 2.137916 -0.822795 2.921551 2.787967 -1.920053 -0.059096 -0.679502 1.040207 -0.165737 1.303846 0.396527 -2.003467 0.805870 -1.550066 -0.091153 -1.726124 0.334270 1.037802 0.923394 -4.019447 0.731741 1.477063 1.012606 -0.898728 -0.574719 -0.144155 2.010440 2.164678 -0.639498 0.559908 1.494920 0.384985 -0.079611 0.652452 0.381825 0.272111 -0.231616 -0.787338 -1.572670 -0.640414 -0.280295 -1.306968 0.387824 1.974565 2.693773 0.210606 -0.081513 0.936287 0.173560 0.808896 1.182835 0.236567 -0.125667 -0.425512 1.037383 -1.843005 -0.665276 -3.574231 -0.169880 -4.799807 -1.686270 -0.146155 2.638449 1.994133 0.769376 -0.748439 2.354916 -0.779953 -0.199403 2.415226 2.907246 -1.697912 -1.232099 -2.072743 -1.512201 1.168442 -1.191598 -0.442164 0.986079 0.487070 -2.117584 -0.986343 0.743119 0.719652 -0.781459 -1.252225 0.470635 2.188561 -2.319254 -1.586989 -0.586339 2.002206 -0.038354 -3.530082 -0.071681 -1.297962 -0.192123 0.557436 -0.988951 -1.577848 0.554719 0.701951 -0.965322 -0.729350 -2.043612 2.214700 0.421723 0.598215 0.544291 0.343507 0.494180 2.730466 0.804496 -1.585260 0.218389 0.349637 -0.467887 0.617098 -1.558996 -1.477109 0.354845 -2.557421 0.176293 1.171272 -1.585603 -0.707074 -0.502263 0.546611 0.897009 6.130340 -0.026515 2.690220 1.651395 -2.312025 1.959121 -0.455468 -0.262573 0.411179 1.349981 0.203219 -2.158592 -2.097414 1.237479 2.516711 2.061896 -1.539879 -0.807854 -0.448203 -0.094474 0.176567 0.281913 0.775998 0.164092 -2.088969 -0.525897 1.704658 4.360107 -0.492658 -0.520378 1.278564 1.381917 -0.819578 -2.583165 -0.782302 -1.875605 0.168307 0.488162 -0.229757 1.340781 3.147956 -3.826982 2.466323 -0.143455 0.109113 1.510091 0.202309 -2.016556 -3.549222 -0.714324 1.769478 3.275890 -0.595950 0.382429 0.528546 -2.066807 -0.203176 0.457089 0.160995 -0.579034 1.023330 -0.521609 -1.228712 -1.170896 0.012638 -1.160864 -0.664490 -0.540556 1.266021 1.552334 -2.346427 2.422060 -0.261729 -0.716146 0.374678 -0.292879 2.036418 -1.989233 -2.429352 1.277598 -0.341912 -1.498403 -1.117013 0.194056 1.556180 0.316599 -0.080955 -0.521370 -2.634630 1.977534 -0.620856 2.051138 1.041559 -0.278759 1.427066 1.650236 -0.905780 -1.575739 -1.806567 -0.169131 -0.750490 -1.781717 -0.552085 -0.703844 2.176263 1.873919 0.230283 -1.868397 -0.263256 2.681676 -1.241676 -0.840725 1.965145 -1.048830 -1.867712 0.714586 2.468102 -2.785601 -0.150144 -1.712168 0.807919 -0.540243 -1.789767 1.006703 0.011271 0.954878 0.134746 0.046349 -0.437634 0.801532 1.074791 -0.100577 -0.070717 3.540397 1.136611 -0.820365 0.210674 -2.194842 0.869783 -2.949313 -2.377355 0.543901 0.818635 -1.752119 0.433863 0.388326 2.040646 0.000342 0.335346 -0.668831 0.235415 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::Graph(int) = -1.821557 -2.091248 0.148451 -4.839068 2.734704 1.895652 1.375486 -1.827709 -4.127946 -0.710609 2.347748 -2.547977 -1.651485 4.659557 -1.340224 2.948750 3.215710 -0.501450 -2.744967 -1.426831 4.644771 -1.771716 4.601506 2.958626 -4.228142 -0.495110 -0.658483 3.113934 1.391627 1.928998 0.875310 -0.248695 -0.028618 -2.591739 0.259826 -0.463125 0.922068 1.028510 1.349851 -4.200054 1.011794 1.944666 1.461363 -1.148043 -1.463197 -0.506745 1.569776 3.842578 -0.540616 0.282924 4.176484 -0.454946 0.148986 0.748493 1.639374 0.270167 2.077461 -0.209071 -0.803863 -2.050822 -0.382528 -1.017295 1.560717 3.629057 4.324512 -0.714399 0.003882 2.230562 0.416098 2.263539 2.931407 0.512783 -1.902079 -1.291071 2.895530 -3.154755 0.024594 -4.816851 0.070130 -5.208671 -2.272034 0.480771 3.026196 1.254903 1.938595 0.150409 3.812833 -0.293405 -1.932241 1.873127 2.496891 -1.400729 -1.475631 -2.513239 -2.828973 1.126611 -2.149186 -0.541829 1.701668 1.995133 -3.116245 0.747079 0.370856 1.864879 -1.894153 -1.865415 -0.236096 3.169261 -2.137689 -2.005474 0.734503 4.047875 -0.661783 -5.751812 -1.080090 -3.860586 0.236367 -1.317004 -0.169036 -1.198605 0.287616 1.984321 -1.214044 -1.533134 -2.338094 2.520164 2.111222 1.472032 0.344024 0.539375 0.135593 3.851603 0.852821 -1.999003 -0.905236 0.243437 -0.801404 2.218258 -1.143597 -1.205806 1.324395 -2.952725 0.189237 1.217269 -0.970883 -0.818942 1.026772 1.615923 0.887968 10.120369 0.142116 4.402120 2.348385 -2.281053 1.846936 0.065561 0.637074 1.849851 1.562359 -1.705057 -3.395192 -3.570550 2.393441 3.171783 2.528505 -3.144483 -0.296945 -0.011182 -0.538993 -0.101891 -0.196402 0.679685 -0.107410 -2.457755 -0.991443 1.829226 5.885762 -1.322676 -2.303395 2.878516 2.194202 -2.933467 -3.349196 -1.445974 -2.357327 0.345959 -0.037266 0.413221 2.651297 4.478416 -4.348756 3.093146 -0.230261 -0.269640 3.508163 -0.988737 -2.684223 -5.481716 -0.971383 0.622611 4.002055 -1.691994 -0.766503 1.575062 -3.348758 0.662132 0.179799 -0.769866 -0.589596 1.670755 -1.198804 -0.865789 -1.857608 -0.447375 -2.012527 1.311874 -0.787741 1.683896 -0.088933 -3.780554 3.006398 -0.676766 -1.255104 0.378112 -0.194559 3.257987 -2.211382 -2.990102 2.194890 0.143497 -1.311434 -3.220149 0.707803 2.368968 0.263400 0.043227 -2.499254 -2.186831 2.458693 -3.078894 3.141896 1.526588 -0.629882 1.257018 1.611175 -0.654617 -2.919004 -1.477078 -0.871946 0.242356 -4.079330 -0.929646 -1.015986 3.344571 1.081570 0.401946 -1.695799 0.062727 4.517786 -1.957163 -2.233679 1.721895 -0.873456 -3.393428 1.859966 2.961195 -2.961721 0.062617 -2.579085 -0.273793 -1.917583 -3.468241 3.109715 1.916285 3.295097 -0.855101 1.719622 0.312870 1.017027 1.287856 0.267622 -0.446188 5.558298 2.655607 -1.662943 -1.971183 -3.898075 2.251147 -2.946275 -3.028900 1.518070 0.508024 -1.946770 0.983622 -0.102393 4.404787 1.205388 -0.433538 -0.766953 0.172804 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isEulerianCycle() = -2.250702 -1.610166 0.082465 -5.173754 4.063003 3.834706 1.855658 -2.340314 -5.618976 -0.983989 1.415845 -5.566716 -1.198754 6.839228 -1.690885 5.347996 7.973587 1.356983 -2.856409 0.236533 6.213046 -1.154631 7.106830 5.946634 -4.566190 -0.417311 -0.545183 2.650486 0.232641 2.922977 -0.203296 -3.493425 2.074941 -5.325464 -1.059889 -3.817710 1.057200 2.160843 4.032215 -8.048067 1.675352 1.562330 1.369997 -1.978786 -1.942368 -1.885027 4.142087 5.101210 -1.226838 0.778461 3.955906 1.006645 -0.711218 1.669578 1.195044 1.717323 0.467646 -0.694251 -2.807334 -2.560314 -0.761011 -1.588777 1.524953 4.817144 6.258133 0.784678 0.093100 3.431786 0.517379 1.412025 2.827155 0.608022 -1.700647 -0.400403 2.326575 -6.116929 -0.698337 -8.175745 -0.957724 -8.232123 -3.315831 -0.150548 3.407639 2.332193 3.556879 -0.370823 5.274764 -1.770907 -0.961778 4.708453 6.322227 -4.992221 -2.507363 -4.676927 -3.706472 1.832912 -2.838354 -0.622146 2.126544 0.598902 -4.641042 -2.937146 1.690635 2.832279 -1.739738 -3.780192 1.202325 4.907471 -4.236854 -4.882789 -0.282823 4.402500 -1.882069 -8.281550 -1.481330 -3.618373 0.676089 0.254825 -1.707086 -5.499881 1.003848 3.161542 -1.912226 -3.220638 -1.754088 4.068938 2.341434 1.724314 0.835422 0.074911 0.975280 7.928870 2.288337 -3.429414 0.429457 0.068683 -1.351690 1.778407 -3.505782 -2.957935 0.175159 -5.817402 0.073131 4.592081 -3.187342 -0.696534 1.721417 1.642278 2.021575 16.654458 0.030655 6.196156 3.892242 -5.756949 3.428822 -1.278799 -0.333892 1.224736 2.316902 0.123804 -7.545922 -5.194354 3.171335 5.310500 4.553636 -4.601508 -2.318353 -1.437960 -0.334963 0.393462 -0.478848 1.845952 -0.036708 -4.703337 -1.287063 3.973234 10.605356 -2.268714 -1.902388 3.922528 2.539352 -2.961880 -6.461050 -2.757499 -5.063508 0.575492 1.168000 -0.419323 3.211773 7.215894 -8.041872 5.156016 -0.727932 -0.473367 4.340511 0.790718 -4.767807 -6.162474 -1.623581 3.970083 6.483993 -1.870137 0.775102 1.516581 -4.704164 -0.190096 1.007466 0.128096 -1.058874 2.069312 -0.339346 -3.219881 -3.026964 1.173019 -2.297846 -2.056506 -0.686129 3.088257 1.605686 -5.589963 5.592793 0.007388 -1.489698 2.094155 -1.179071 5.138144 -4.465741 -5.639565 3.849867 0.015633 -1.164392 -2.033536 1.189445 3.891855 1.789209 0.944802 -2.560063 -6.165039 3.148874 -1.611171 4.442795 2.159544 -0.070346 2.592265 0.985610 -1.768508 -4.970675 -3.728400 -1.056071 0.233462 -5.024298 -3.220408 -1.348706 5.785840 3.904603 0.476017 -3.948985 -0.907628 6.001273 -4.371426 -1.259361 4.321054 -0.067685 -5.866445 0.088078 5.309584 -5.777766 -0.494029 -2.578290 0.982511 -1.816626 -4.438232 2.606911 0.746300 2.781194 0.090775 0.469269 -0.166160 1.859128 2.568776 0.915154 0.193049 7.419244 3.071244 -1.572475 -1.396701 -5.017637 1.932615 -6.832409 -6.171627 2.476637 1.131085 -4.322977 1.062375 1.378193 5.695575 0.142086 0.932724 -0.553212 -0.521008 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -5.630856 -3.490894 0.870978 -13.236707 11.280343 9.773416 4.943309 -5.158094 -13.870313 -3.091735 3.146635 -13.984912 -4.474921 17.357958 -4.624912 12.561430 20.564874 3.212179 -6.429876 0.202733 15.995692 -2.944128 18.615395 14.986163 -12.683530 -1.185636 -1.503682 7.378214 0.477419 8.410394 -0.181711 -10.015181 5.507919 -12.193096 -1.707005 -9.711129 3.100580 5.108289 8.724680 -20.803692 3.888369 4.644949 2.531627 -4.468635 -4.587998 -3.348249 11.338574 13.213168 -4.111749 2.024478 10.489428 3.004085 -1.752105 4.640555 2.407196 3.332509 1.133419 -1.865944 -7.649463 -6.316433 -2.394786 -4.993160 3.595825 12.353274 16.721816 1.749163 0.626817 8.387454 0.459673 3.866945 7.199193 1.812093 -2.600641 -1.052953 7.177808 -13.794156 -2.731554 -21.562047 -2.639843 -22.762260 -8.621516 -1.853889 9.021663 5.837583 8.596630 -2.177380 13.845198 -3.586985 -1.830740 12.801143 16.410898 -12.342769 -6.248079 -12.853693 -9.667969 4.777362 -7.623886 -1.478348 5.438983 1.516610 -11.858982 -7.812149 3.910246 6.288620 -4.284411 -9.947570 2.192962 12.746437 -11.225984 -11.565229 -2.103796 11.140894 -4.364833 -21.366278 -4.402598 -9.180612 2.177130 0.526138 -3.294435 -12.640597 2.465357 8.228165 -5.097766 -7.837490 -4.864491 11.484509 6.416952 4.060504 2.438002 0.452044 1.968755 19.474814 6.422889 -8.214116 -0.028657 0.271334 -3.531731 4.254759 -9.512821 -6.504401 1.986492 -14.363111 0.034960 11.289419 -7.772663 -2.489940 3.554037 2.920500 6.171516 42.510541 -0.053624 15.225104 9.435153 -14.804306 9.056567 -2.700134 -0.774330 3.613901 6.389983 0.288358 -18.658622 -13.436557 8.101598 13.075550 11.407359 -12.404033 -5.092793 -3.686972 -0.440109 0.148729 -1.579294 5.261352 -0.454757 -11.880091 -2.978250 9.783773 27.060023 -5.726386 -6.181086 10.289874 7.703624 -7.439904 -15.709607 -7.116601 -11.847034 0.976497 3.476458 -1.193229 8.149649 18.582934 -21.925644 12.955492 -1.154331 -0.933565 10.612047 1.445900 -11.471123 -16.205858 -3.481336 10.526548 16.598997 -3.915445 2.221683 3.381577 -12.015767 0.259189 2.519285 1.037410 -2.476707 5.178383 -1.406814 -8.437570 -8.475114 1.323321 -6.323474 -4.497990 -2.259693 7.435350 4.627204 -15.917589 14.458654 -0.701777 -3.909604 4.955137 -2.867283 13.427883 -11.549434 -14.968468 9.673063 -0.752165 -4.317994 -6.173240 3.417866 9.804750 4.216525 2.616636 -6.712070 -16.813912 9.080351 -4.050265 10.986590 5.608273 0.629816 7.840780 3.375360 -5.307251 -13.266988 -10.370250 -1.022287 0.391977 -12.795806 -7.003205 -3.296276 14.380315 10.622975 1.018020 -9.657242 -2.986894 15.977016 -11.400137 -3.759912 11.778836 0.080186 -14.276961 1.212196 14.081317 -14.702656 -2.416717 -7.095802 2.689720 -4.222970 -11.761986 6.430802 0.862849 6.850673 0.801304 1.466559 -1.439381 4.766526 6.327199 1.977601 -0.446822 19.669956 9.584417 -5.062549 -2.813234 -12.527933 5.031530 -17.880323 -15.703224 5.949963 1.427093 -9.963633 3.368357 3.314606 14.377989 0.326593 2.664892 -1.641814 -1.717102 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::size() const = -0.113991 -0.053337 0.407142 -0.629660 0.792717 0.007914 0.010749 0.026443 -0.425847 -0.292623 -0.185711 -0.250627 -0.409849 0.527731 -0.220906 0.365688 0.385154 -0.091932 -0.107016 -0.315485 0.677000 -0.282828 0.517493 -0.138232 -0.756901 -0.010550 0.066746 0.816280 0.441198 0.633250 -0.082853 -0.037661 -0.079294 -0.029853 0.286631 -0.417487 0.452564 0.279589 -0.258351 -0.545901 0.024467 0.096604 -0.118829 0.219727 -0.128608 0.661050 0.223804 0.515401 -0.569364 0.177697 0.772036 0.121648 -0.036293 0.263027 -0.489783 -0.111728 0.404405 -0.286675 -0.357211 -0.123941 0.107618 -0.761393 0.261535 0.271439 0.686227 -0.359140 0.087265 0.652330 0.045370 0.178276 0.358438 0.074328 -0.062834 -0.233209 0.500974 -0.273737 -0.095304 -0.763563 -0.012829 -1.350602 -0.187255 -0.569001 0.278999 0.200853 -0.086944 0.041475 0.726795 0.146779 -0.048245 0.504732 0.359762 -0.260243 -0.095677 -0.903081 -0.297251 0.260623 -0.429134 -0.509965 0.176346 0.640049 -0.024345 -0.101103 -0.022569 -0.270472 -0.179531 -0.238491 -0.521614 0.556925 -0.894467 -0.223520 -0.413919 0.516556 -0.036311 -0.621484 0.006401 -0.154473 0.553959 -0.333613 0.741100 0.108583 -0.084832 0.400048 -0.231766 0.199516 -0.594322 0.487938 0.362318 -0.186638 0.162840 0.144339 0.004940 0.180832 0.405851 -0.284622 -0.797104 0.371085 -0.033910 -0.062335 -0.526427 0.113283 0.457361 -0.609206 0.117367 0.233040 -0.019720 -0.199188 -0.061742 -0.323133 0.488510 0.686980 0.160080 0.000445 -0.032944 -0.296583 0.182083 0.211662 -0.070420 0.494590 -0.056004 -0.119127 -0.036566 -0.516208 0.206031 0.131692 0.285051 -0.504905 -0.179093 -0.240995 0.053533 0.123419 -0.347932 0.653324 -0.451972 0.004094 -0.092653 -0.229350 0.667241 0.051148 -0.339045 0.620730 0.309852 -0.805084 -0.507564 -0.325253 -0.001622 -0.376028 0.137121 -0.007108 0.192506 0.644276 -1.124020 0.386655 0.409310 0.002101 0.035257 -0.491627 0.235378 -0.797233 -0.249578 0.332009 0.472979 -0.280455 0.151990 0.034980 -0.369479 0.388541 0.175928 0.133767 0.142360 -0.091965 0.011080 -0.041860 -0.298018 -0.052564 -0.319873 0.507318 -0.000113 0.090272 -0.085503 -1.185201 0.384352 -0.764586 -0.059674 0.338993 0.142332 0.619134 -0.327763 -0.306005 0.365288 0.137924 -0.467980 -0.677981 0.387136 0.452888 -0.244814 -0.060989 -0.134538 -0.733505 0.025236 -0.435148 -0.299029 0.138530 0.175953 0.391439 0.080626 -0.219450 -0.545191 -0.002326 -0.050977 -0.164399 0.150501 0.360124 0.235002 0.343739 0.395221 0.120742 0.136950 0.103833 0.558779 -0.299167 -0.583201 0.445930 -0.019864 -0.365091 0.632575 0.498155 -0.414555 -0.430392 -0.460472 0.261991 0.101143 -0.274066 0.217348 -0.182928 -0.015002 0.424243 0.203629 -0.451576 0.484737 0.096679 -0.227494 -0.665127 1.167624 0.954693 -0.332895 0.202840 -0.278833 0.226095 -0.638823 -0.261348 -0.061374 -0.041956 0.133922 0.489264 0.149428 0.433687 -0.063502 0.165168 -0.003727 -0.447550 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::DFSUtil(int, bool*) = -2.110715 0.266646 2.278246 -4.582112 3.641304 3.681227 1.497262 -1.909632 -3.898571 -2.059717 0.673263 -5.331578 -3.310546 6.020808 -2.421761 2.238719 7.247535 1.230636 -2.190296 -0.349831 4.208199 0.256170 6.931647 6.129096 -4.922131 -0.535330 0.307809 3.249649 0.603595 3.234496 -0.406943 -4.236869 2.117528 -1.950774 -0.058073 -2.758218 0.820004 0.359768 0.777743 -7.206506 1.003431 1.217353 -1.113881 -1.430520 -0.943607 0.153286 5.610458 4.595356 -0.888348 -0.099812 3.150554 2.112245 -0.594575 1.454983 1.256093 -0.165104 1.138567 -1.763164 -2.425561 -2.010364 -1.031045 -2.574518 -0.170840 5.309759 5.922330 1.326935 0.136202 1.472374 -0.325263 1.273371 1.518088 1.003542 0.806899 1.863282 2.188253 -3.236624 0.061222 -6.340672 -0.998991 -7.579851 -3.104408 -1.560376 3.173666 2.785097 1.820978 -1.366190 5.387685 -0.293938 -0.009860 4.614813 7.238374 -4.400625 -2.199548 -3.978217 -3.055512 1.769704 -2.914899 0.730220 -0.417174 0.875091 -4.441430 -2.803888 0.460144 1.398684 -1.836238 -1.767528 0.535298 4.489742 -4.830491 -2.107510 -2.093633 2.412220 -0.132590 -7.987793 -2.596221 -2.804996 2.900180 0.235340 -1.778625 -4.043763 1.282389 3.106734 -1.477127 -1.887707 -3.117396 4.174060 2.175860 0.857438 0.378954 0.535870 1.536041 5.997855 2.101854 -2.589337 -0.016711 -0.369028 -1.907607 0.616442 -3.025310 -1.214352 0.897053 -4.373904 -0.085492 4.138671 -3.116749 -1.651110 -0.646159 -0.132778 2.641841 14.815713 -0.827988 4.486587 2.817127 -5.800888 2.009513 -1.435680 -1.024669 0.608029 2.232241 1.806168 -5.818498 -4.570982 3.463440 5.430140 3.904534 -3.909920 0.729086 -1.041583 -0.260333 -1.290090 0.457335 1.613462 -0.736187 -3.838540 -1.548025 4.255850 8.480175 -1.874369 -3.743482 2.881445 1.565503 -0.410588 -3.138986 -1.689639 -0.860790 0.722795 2.350365 -0.364216 3.163406 6.836588 -8.017882 4.766787 0.304166 -0.833270 3.647708 0.133514 -3.632822 -3.165322 -0.071550 4.965535 5.095803 -0.181829 0.217860 0.308258 -4.791843 -0.597438 1.275326 1.675976 -1.445644 2.221467 1.046755 -3.784439 -3.983570 -1.379274 -1.483545 -0.934421 -1.937227 2.769529 0.223686 -7.625008 6.603606 0.126457 -1.176933 0.385886 -2.019413 4.271778 -5.220253 -6.160936 2.815059 -1.355461 -3.014848 -1.858786 0.625321 3.285272 1.287243 1.353721 -3.376226 -5.171293 3.909001 -0.613463 4.188081 1.936421 1.551992 4.058211 1.074869 -1.499256 -3.869710 -3.880562 2.259724 -0.177909 -4.483826 -0.417807 -1.306714 4.692981 4.890600 -0.942787 -3.305774 -0.677690 5.023627 -3.876501 -1.908567 3.614019 1.112862 -4.484799 1.045520 4.406432 -4.590800 -1.728496 -3.093943 -0.357920 -2.073981 -5.075485 1.801384 -0.938987 2.119558 1.802986 0.355008 -1.703164 1.850196 1.485650 0.387647 0.950564 6.205931 4.813139 -2.211184 0.456423 -5.134832 2.647272 -7.059256 -6.103480 2.482997 -0.750508 -1.979681 0.327143 -0.316714 4.277160 0.253449 0.418092 -0.857240 0.324435 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::getTranspose() = -2.275534 0.245089 2.051733 -6.321911 5.986037 5.401015 2.247759 -2.062344 -5.513097 -1.964569 0.606939 -6.179089 -3.622946 7.755765 -2.772852 3.936418 9.442640 1.300131 -2.441228 -0.145336 6.500628 -0.572901 8.926591 7.328053 -6.964803 -0.258080 0.110464 3.983946 0.042123 5.956696 -1.000766 -5.911977 2.529941 -3.214658 0.500402 -4.401804 1.088462 0.896433 1.692490 -9.946902 1.351622 2.440889 -0.391119 -1.485942 -1.283135 -0.013472 7.140103 5.999554 -2.311249 0.463035 4.665166 2.569761 -0.633564 2.172677 1.370157 0.843254 1.822249 -1.076556 -3.436152 -2.673389 -1.594098 -3.029091 0.875248 6.367214 8.144176 0.893528 0.451276 2.434247 -0.641254 1.720130 2.434248 1.426603 0.302894 0.939671 3.524447 -4.248870 -0.462173 -9.056748 -1.086814 -11.004601 -4.088113 -2.527388 3.785936 3.476644 3.371333 -2.307582 7.193066 -0.827175 0.283331 5.626821 8.407397 -5.580211 -2.454017 -6.009195 -4.701750 1.991651 -3.434114 -0.408786 1.151705 0.304355 -5.556540 -3.673686 0.963049 2.058384 -2.203876 -3.201387 0.198610 5.911739 -6.196249 -3.708581 -2.457681 4.052996 -1.446043 -10.557537 -2.953996 -4.161150 1.851852 -0.113511 -1.152415 -5.286947 1.399673 4.599800 -2.478948 -2.916594 -3.338614 6.329262 3.338406 1.162024 1.075405 -0.054349 1.013202 7.831601 3.637941 -3.232568 -0.719141 -0.030601 -2.046573 0.911827 -4.400394 -1.500327 1.347783 -6.368298 0.060938 5.266915 -3.466069 -1.003462 -0.184383 -0.247443 3.781002 20.649261 -1.195240 6.444001 3.364805 -7.640354 4.007510 -0.608002 -1.088750 1.640195 3.258048 1.322233 -8.074440 -5.983970 3.975455 6.320323 4.939559 -5.727198 -0.382617 -1.815031 -0.663174 -0.800054 -0.332820 2.117293 -0.887043 -5.295824 -1.639786 4.233670 12.167977 -2.347275 -5.248012 4.432087 3.436906 -2.633392 -4.956398 -2.825742 -3.752535 0.536686 2.327000 -1.108591 4.084343 8.709316 -11.571437 6.198173 -0.112031 -1.459773 5.332025 -0.175109 -4.074954 -6.004345 -0.561054 5.888004 7.303975 -1.045281 0.438178 0.631028 -5.804093 0.198613 1.249895 1.711670 -1.867282 2.639762 0.474527 -5.081438 -4.799572 -1.838769 -2.362285 -1.571691 -2.460034 3.020071 0.994719 -10.071565 7.668920 -0.200564 -1.769432 1.668366 -1.522291 5.375415 -5.868429 -7.732209 3.869206 -0.859848 -3.025465 -2.982839 1.160997 4.581034 1.715107 1.743403 -4.213318 -8.353806 4.608719 -1.614855 4.991018 2.893402 1.810991 5.093778 2.165927 -2.566231 -6.274956 -5.429197 2.138254 -0.110730 -5.584300 -1.313899 -1.989616 6.188802 6.143656 -0.132252 -3.647290 -1.853781 7.619168 -4.517267 -1.803364 5.498889 0.007735 -5.990506 0.824956 6.464986 -5.992060 -2.612333 -3.870636 0.581179 -1.980169 -5.931961 2.796637 -1.079610 2.768854 1.724273 0.636606 -2.352813 2.329630 2.039073 0.528572 -0.041786 9.021168 5.298030 -3.221725 0.327462 -5.646662 3.024059 -8.929766 -7.114404 2.372178 -1.084441 -2.961993 1.384243 0.437610 6.144319 -0.058563 1.398068 -0.334017 -0.794128 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.398404 0.421827 1.045272 -1.044165 0.920457 0.564970 0.294023 -0.284174 -0.787247 -0.529178 -0.150502 -0.903574 -0.907328 1.297025 -0.622553 0.083428 1.816732 0.514709 -0.306507 -0.424024 0.866241 -0.403794 1.594873 1.529037 -1.375493 -0.028972 0.674962 0.877555 0.366840 1.220612 -0.627052 -0.953490 0.369748 -0.132459 0.554120 -1.007669 0.122361 -0.146045 -0.190986 -1.938653 0.158555 -0.021347 -0.195671 -0.183430 -0.033075 0.794558 1.561708 0.983202 -0.426650 -0.022221 0.886773 0.619513 -0.094567 0.302290 0.385955 0.187927 1.053314 0.176338 -0.489053 -0.153508 -0.295953 -0.852521 0.027254 1.317498 1.511639 0.232478 0.092411 0.011010 -0.038868 0.270593 0.163556 0.284929 0.389613 0.619510 0.538504 -1.002880 0.253614 -2.223771 -0.196289 -2.661527 -0.764879 -0.853759 0.540069 -0.088354 0.291948 -0.094235 1.401073 0.134287 0.376391 0.607239 1.771630 -1.003599 -0.443672 -0.867235 -0.809677 0.448790 -0.646141 0.099797 0.214873 0.028217 -0.947334 -0.959149 0.482449 0.193148 -0.496562 -0.002003 -0.095153 1.137832 -1.257400 -0.334645 -1.057661 0.070457 -0.009841 -1.889307 -0.162241 -0.800786 1.130460 0.058299 -0.352367 -0.985309 0.319331 1.051073 -0.488967 -0.326193 -0.767708 1.287559 0.521899 -0.078521 0.043665 -0.184984 0.278390 0.976552 0.993795 -0.677395 -0.213491 0.102141 -0.934175 -0.289204 -1.069076 -0.122363 0.679079 -0.905971 0.115406 0.790393 -0.773533 -0.319409 0.552727 -0.445861 0.879873 3.459043 -0.419679 0.827745 0.270346 -1.418085 0.639914 0.024630 -0.356313 0.253404 0.826224 0.632159 -1.470621 -1.025841 0.605562 1.287766 0.849609 -1.167290 -0.218287 -0.526071 -0.208048 -0.154908 0.155261 0.271005 -0.515372 -0.749576 -0.439144 0.613481 1.944512 -0.457847 -1.554733 0.357879 0.279675 -0.301698 -0.942710 -0.262107 -0.203047 0.224788 0.182599 -0.244761 0.861882 1.583568 -3.049959 1.211688 -0.122370 -0.550030 1.096827 -0.172185 -0.453736 -1.084793 0.370199 1.276036 1.295148 0.189385 -0.135111 0.047798 -1.184117 -0.170502 0.082568 0.820614 -0.593553 0.571975 0.494298 -1.190254 -1.022794 -0.692775 -0.060040 -0.396062 -0.483637 0.518758 -0.173837 -2.801859 1.664056 -0.136121 -0.196954 0.191681 -0.379912 0.521620 -1.335905 -1.527655 0.453113 -0.089029 -0.474868 -0.661799 -0.000474 0.964883 -0.092690 0.449319 -0.888204 -1.542051 0.728820 -0.324815 0.844476 0.495966 0.600569 1.326356 0.389795 -0.272085 -1.135085 -0.278470 0.557704 -0.247812 -0.786364 -0.026049 -0.385728 0.987009 1.559960 -0.266081 -0.167973 -0.258956 1.321473 -1.013181 -0.501921 0.818730 0.454798 -0.706709 0.384647 0.968625 -1.085659 -0.909325 -0.781501 -0.451142 -0.210442 -1.111198 0.451227 -0.737641 0.315357 0.671838 0.030343 -0.660356 0.597793 0.155800 0.026578 0.133343 1.330665 1.848821 -0.848271 0.431983 -1.047161 0.687343 -1.775918 -1.212141 0.261143 -0.360754 -0.344290 0.157881 -0.099501 0.905509 -0.130288 0.233373 -0.088471 -0.117932 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::~Graph() = -0.793309 -0.118446 0.354174 -2.058682 1.276780 1.399330 0.397630 -0.560443 -1.554649 -0.311709 0.029930 -1.869537 -0.522351 2.321510 -0.739444 1.187997 2.640415 0.580132 -0.697816 0.012939 1.756796 0.180748 2.045218 1.769723 -1.747061 -0.329795 0.414200 1.163632 -0.078611 1.567381 0.111226 -2.289346 0.147446 -0.550681 0.263372 -1.192166 0.518931 0.655117 0.813686 -2.871703 0.585670 1.035546 0.830718 -0.732028 -0.414463 -1.466833 1.736244 1.721969 -0.741584 -0.207185 1.494807 1.300728 -0.443703 0.380374 0.307326 0.380698 0.676872 -0.550188 -0.812384 -0.730735 -0.213341 0.172110 0.404881 1.821368 2.198092 0.362314 0.218129 0.533749 0.248926 0.657501 0.625888 0.095708 -0.536429 0.344023 0.627853 -1.023073 -0.195927 -3.067073 0.255434 -2.497347 -1.003729 -0.409352 0.985703 1.228106 0.707997 -0.406878 1.818732 -0.448288 0.191827 1.515417 2.200635 -0.956553 -0.731756 -1.875406 -1.807393 1.170946 -0.903128 -0.262546 0.386421 0.342506 -1.408904 -1.260301 -0.000160 0.800348 -0.623834 -0.736696 0.370207 1.520135 -1.229048 -1.256872 -0.236316 1.622264 -0.447205 -2.805604 -1.458902 -1.501295 -0.760217 -0.146863 -0.570693 -1.696315 0.141713 1.014988 -0.828190 -0.643952 -1.051046 1.190356 0.938547 0.107229 0.185838 -0.339576 0.307477 2.137487 0.257834 -1.387003 -0.024658 0.304936 -0.479202 -0.175309 -1.660268 -0.700361 -0.196644 -1.678841 0.251915 1.517915 -1.116742 -0.563859 -0.505543 -0.231667 1.141026 6.068576 -0.308399 1.624892 1.096995 -1.951567 0.976598 0.182798 -0.450077 0.118587 0.868995 0.424889 -1.440407 -1.660373 0.937809 1.772229 1.597312 -0.583906 -0.433903 -0.553220 -0.512869 0.022386 -0.013451 0.466240 -0.749740 -1.471164 -0.545873 1.365022 2.807483 -0.164344 -1.917526 0.963627 2.345201 -0.896336 -0.877641 -0.585864 -2.149616 0.237568 0.488770 -0.393635 1.514832 2.448913 -3.819110 1.796462 0.754067 -0.188551 1.276537 -0.128788 -1.324430 -1.994859 0.073246 1.638849 2.187819 -0.946775 0.643582 0.197495 -1.551162 -0.069536 0.317217 0.413967 -0.634466 0.604181 -0.164873 -1.348750 -1.157802 -0.153517 -1.003332 -0.993523 -0.907937 0.771828 0.917914 -2.306014 2.183398 0.007223 -0.180986 0.628780 -0.811508 1.372480 -1.948018 -1.937748 0.917413 0.185528 -0.067044 -0.227253 0.263548 1.637777 0.347941 1.265934 -0.920639 -1.674746 0.860569 -0.305089 1.316908 0.675910 0.126526 0.468373 0.333538 -0.234846 -1.369584 -1.327723 0.531339 0.383662 -1.588745 -0.825297 -0.479158 1.730863 1.615292 -0.252069 -1.450944 -0.963206 1.889145 -0.806620 -0.241764 1.165720 -1.321676 -1.689900 -0.289057 1.634434 -1.870503 -0.514294 -1.336415 0.814248 -0.456894 -1.659119 0.774550 -0.063122 0.800020 0.370929 -0.408985 -0.567014 0.694514 1.086934 -0.026142 0.347313 2.045377 0.081299 -0.407940 0.182871 -1.730957 0.338791 -2.521613 -1.799469 0.476854 -0.877170 -1.213150 0.350437 -0.206099 1.665089 -0.320924 1.573691 -0.061131 -0.195784 +PE-benchmarks/euler-circuit-directed-graph.cpp__main = -1.496538 -1.230485 1.965277 -5.022956 5.162642 2.228245 1.756953 -0.921987 -4.723850 -0.203359 0.319106 -4.084375 -1.457950 6.492201 -2.033082 4.265450 6.761076 1.312773 -1.595299 -0.185806 5.280987 -1.135595 6.268988 3.231906 -5.182173 -0.463880 -0.701635 2.971740 0.310414 4.868387 -0.751096 -3.253872 1.434167 -3.383691 -0.126954 -4.241440 1.517434 1.561913 1.635738 -7.870954 1.420552 2.479977 -0.056816 -1.349234 -0.366669 1.909379 3.861031 4.776635 -2.627402 1.755710 2.861155 0.919116 -0.380929 1.700784 -0.505859 1.311945 1.932411 -0.676480 -4.325589 -1.691264 -0.948081 -2.735530 2.279890 4.234630 5.900718 -0.353761 0.522321 3.609925 0.585205 1.275996 2.737082 0.550816 -0.923776 -0.037256 3.030662 -3.163004 -0.817370 -5.978336 -1.376068 -9.205755 -3.045071 -1.424664 3.504427 1.607858 1.610489 -0.979665 5.140506 -0.533030 0.238937 5.493364 5.247166 -3.797957 -2.172507 -5.782861 -3.854177 1.600534 -2.517154 -2.440174 2.475610 0.757511 -4.072104 -2.624003 0.323820 1.774680 -1.280406 -2.150481 0.120950 4.580429 -5.513792 -4.766707 -1.252518 3.810917 -2.245441 -7.507618 -1.120267 -1.618549 2.684780 0.243799 1.124308 -3.427412 0.965750 3.737360 -1.993849 -1.253313 -2.691535 4.963122 1.776978 1.237784 1.339496 0.078830 -0.155224 4.848770 3.479185 -2.686596 -1.288624 1.161567 -1.310190 0.648402 -3.111670 -2.054878 0.629252 -5.587574 0.329511 3.693010 -2.681401 -0.708287 -0.595231 0.788424 3.107657 12.153165 -0.403329 4.838394 1.802870 -5.971888 2.075267 -0.109109 -0.545253 1.048360 2.159310 0.359190 -4.741987 -4.422306 2.272869 3.738362 4.262102 -3.998002 -1.000055 -2.266696 -0.660546 1.384859 -1.024602 3.107060 -1.200968 -4.810455 -0.812557 0.906117 9.643239 -1.244854 -3.971039 3.726530 2.681529 -3.596351 -4.346584 -2.144321 -2.463940 -0.696201 0.819923 -1.286481 2.391196 6.410115 -8.941423 5.098686 -0.176793 -0.694819 2.773428 -1.006363 -3.167603 -5.957077 -2.575453 4.074618 5.906749 -1.464212 0.016835 1.170559 -3.342020 1.412590 0.551619 0.710694 0.241298 1.656181 -0.505997 -3.874073 -2.660343 0.193239 -1.444797 -0.192494 -0.831172 1.819110 1.056394 -7.367017 4.821214 -1.737511 -1.380358 2.704724 0.847390 4.413209 -4.007629 -5.350398 2.774457 0.231629 -2.352109 -3.444579 0.920199 3.367731 1.402471 0.584479 -2.071126 -6.457879 1.956397 -2.129342 2.226238 2.227819 -0.042369 4.389747 1.144630 -2.247628 -4.251038 -4.144520 -0.093243 -0.319569 -2.272401 0.012354 -1.253355 5.127795 3.497236 -0.124453 -2.291474 -2.038132 5.690874 -2.938366 -1.346865 4.662401 -1.843576 -4.451967 0.972477 5.700454 -4.736537 -1.110460 -2.122982 1.867148 -1.583286 -2.055732 2.005799 -0.348404 0.861739 0.108012 0.791086 -1.968821 1.043695 1.550405 -0.009958 -1.224263 7.590856 4.909229 -3.064609 0.719102 -2.717971 2.103768 -6.308397 -4.389954 0.970763 -0.379643 -1.946396 2.690957 1.298029 4.511575 0.135945 0.426434 0.219605 -1.380278 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::addEdge(int, int) = -0.630892 -0.286400 0.497979 -1.353475 0.971664 1.239447 0.456541 -0.994183 -1.427384 -0.091164 0.463072 -1.482673 -0.506827 1.707402 -0.834015 0.990944 2.100221 0.494553 -0.951630 -0.350917 1.399518 0.017226 2.241308 2.037607 -1.490584 -0.089167 0.160990 0.971860 0.654977 0.906739 -0.493324 -0.567760 0.722313 -1.128457 -0.180621 -1.046375 0.131193 0.243773 0.746010 -2.149559 0.304963 -0.067366 -0.006969 -0.290617 -0.229212 0.492440 1.352134 1.342214 -0.006330 0.349365 1.065964 0.393899 0.036209 0.378653 0.594712 0.407683 1.126537 0.056773 -0.506855 -0.712093 -0.321026 -0.598637 0.144604 1.633272 1.817882 0.385086 -0.055323 0.462010 0.234849 0.307352 0.758774 0.417755 -0.288910 0.559738 0.555795 -1.508336 0.625976 -1.802362 -0.317933 -2.156991 -0.733967 -0.238582 0.799761 -0.018967 0.875899 0.152562 1.702769 -0.157781 -0.305750 0.961237 1.856650 -1.572099 -0.619173 -0.661626 -0.869251 0.316590 -0.847668 0.271624 0.321874 0.391851 -1.272174 -0.820606 0.410426 0.669658 -0.636455 -0.280684 0.146851 1.240290 -1.486935 -0.886692 -0.346344 0.623682 -0.344967 -2.355616 -0.811916 -1.162924 1.200346 -0.066349 -0.658628 -1.473871 0.400285 1.096369 -0.360226 -0.661534 -0.385531 0.997046 0.754604 0.373688 -0.110611 0.045316 0.304237 2.055117 0.658173 -0.929499 0.119771 -0.005998 -0.722801 0.419115 -0.918618 -0.460340 0.246797 -1.431512 0.195232 1.246104 -0.912133 -0.167047 0.706042 0.411490 0.522229 4.645783 -0.194003 1.559294 1.047672 -1.634157 0.228654 -0.433085 0.113602 0.474134 0.632896 0.299096 -2.162237 -1.431870 0.943537 1.687994 1.088841 -1.585705 0.031329 -0.313589 -0.068027 -0.052156 0.062184 0.324151 -0.278045 -1.080234 -0.464111 0.951886 2.752710 -0.772109 -1.006982 0.700548 -0.100230 -0.566555 -1.229492 -0.580115 -0.401301 0.413306 0.399240 0.051093 0.919672 1.960775 -2.399060 1.499893 -0.317668 -0.365383 1.534547 0.203436 -1.114110 -0.689127 -0.249813 1.059048 1.470284 -0.131064 -0.392606 0.579487 -1.548592 -0.195810 0.273488 0.412109 -0.583670 0.776358 0.822599 -1.111932 -0.991805 -0.147632 0.052139 -0.369759 -0.391480 1.018887 -0.630175 -2.490567 1.625695 0.176177 -0.552564 0.366760 -0.411224 0.929454 -1.511319 -1.608796 0.863475 -0.089439 -0.489327 -0.708466 0.145196 1.025954 0.482618 0.670048 -1.409873 -1.479123 0.965776 -0.595453 1.265277 0.620599 0.176438 1.050565 -0.321751 -0.284456 -1.387372 -0.519412 0.117394 0.010028 -1.236784 -0.223026 -0.400600 1.497401 1.408780 -0.092055 -0.716169 -0.016766 1.669145 -1.262018 -0.522229 0.899612 0.926491 -1.397772 0.354934 1.116052 -1.452857 -0.322161 -0.570901 -0.795779 -0.586304 -1.190346 1.074769 -0.154062 0.915723 0.218179 0.300453 -0.222476 0.672969 0.312642 0.227105 0.517782 1.873670 1.669681 -0.471588 -0.081535 -1.544620 0.930924 -1.959608 -1.665836 0.719610 -0.054755 -0.943684 0.161557 0.022340 1.619226 0.417815 -0.354697 -0.221879 0.157600 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::~list() = -0.142496 -0.006886 0.317486 -0.347641 0.241475 -0.040258 0.100963 -0.029726 -0.361178 -0.232411 -0.045503 -0.206426 -0.228534 0.424989 -0.219002 0.041678 0.622626 0.325616 -0.055431 -0.247810 0.257306 -0.273929 0.531054 0.566406 -0.458769 -0.001610 0.135242 0.395144 0.195975 0.413706 -0.082882 -0.237680 0.144887 -0.029004 0.206466 -0.512567 0.081224 0.163278 -0.133717 -0.745185 0.082408 -0.027549 0.116181 -0.009135 0.025020 0.375471 0.355149 0.338157 -0.142968 0.186537 0.339810 0.252218 0.022198 0.130993 0.066454 0.095011 0.299905 -0.156286 -0.164571 0.026923 -0.066738 -0.449210 0.072432 0.397067 0.549410 0.018373 0.058044 -0.056211 -0.009367 0.143887 0.203785 0.059641 0.017932 0.035077 0.153559 -0.391200 0.090265 -0.844867 -0.047468 -1.144426 -0.246509 -0.287940 0.377765 0.072227 0.021867 0.109250 0.458548 0.064729 0.119443 0.230264 0.446681 -0.267342 -0.160411 -0.204939 -0.231904 0.241287 -0.232367 -0.043234 0.054130 0.217622 -0.259382 -0.271889 0.243345 0.004048 -0.175770 -0.001443 -0.061295 0.395971 -0.605843 -0.138408 -0.367416 0.113275 0.028203 -0.531540 0.128434 -0.370042 0.480117 0.014608 -0.077975 -0.159828 0.079755 0.260394 -0.122377 0.019327 -0.457445 0.353375 0.054865 -0.084869 -0.003011 -0.049724 -0.055232 0.287008 0.249227 -0.290101 -0.112629 0.185086 -0.308146 -0.089886 -0.462957 -0.089893 0.300432 -0.361981 0.097983 0.092266 -0.276203 -0.236728 0.176608 -0.103888 0.298868 0.871433 -0.040059 0.253188 0.195447 -0.361864 0.125013 0.036087 0.029104 0.233533 0.336383 0.055808 -0.253265 -0.361969 0.030085 0.388586 0.302783 -0.282095 -0.232294 -0.207097 -0.019218 0.098284 0.037901 0.073372 -0.239673 -0.237845 -0.109909 0.050704 0.532419 0.002781 -0.219780 0.030326 0.122766 -0.288281 -0.353513 -0.074941 -0.070793 0.070800 -0.022387 -0.057401 0.206706 0.506824 -1.072461 0.423545 -0.075727 -0.000622 0.198041 -0.064849 -0.113830 -0.593519 0.066282 0.279267 0.528601 -0.035282 0.094237 0.185385 -0.410237 -0.058192 -0.006299 0.276597 -0.217964 0.175504 0.205645 -0.333010 -0.256694 -0.122889 0.014680 -0.082074 -0.070043 0.190397 0.092685 -0.928899 0.386325 -0.201859 -0.129715 0.149259 -0.000866 0.208051 -0.456587 -0.407662 0.135644 0.042754 -0.207567 -0.328401 0.030849 0.390417 -0.225311 0.037852 -0.163602 -0.352471 0.218949 -0.190571 0.157976 0.171171 0.061269 0.423451 0.067987 -0.074834 -0.325217 0.072154 0.014631 -0.284561 -0.099683 0.183056 -0.100877 0.279758 0.595344 0.043391 -0.066233 0.173128 0.581138 -0.256803 -0.242130 0.289340 0.127251 -0.057872 0.349830 0.329463 -0.532538 -0.303885 -0.261666 -0.059285 0.145665 -0.257252 0.322656 -0.255489 0.168395 0.148202 0.105643 -0.245396 0.300422 0.082426 -0.018083 0.003753 0.569341 0.619033 -0.171699 0.201539 -0.268930 0.108235 -0.545025 -0.229004 -0.111149 0.025144 -0.134570 0.196071 -0.123380 0.365630 0.019645 0.142226 -0.059017 -0.033206 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::~_List_base() = -0.394564 0.293662 0.788808 -0.897689 0.989896 0.700204 0.309620 -0.139338 -0.774064 -0.500634 -0.197127 -0.875599 -0.899108 1.294235 -0.517137 0.284531 1.744904 0.499320 -0.242340 -0.244828 0.836370 -0.386640 1.548288 1.281021 -1.188268 -0.046985 0.482152 0.795431 0.067936 1.285005 -0.498619 -1.171529 0.417321 -0.147345 0.412566 -0.966251 0.196897 0.030123 -0.188441 -1.839345 0.172320 0.168721 -0.197479 -0.187667 -0.088967 0.518839 1.445307 0.958686 -0.370387 0.054348 0.719999 0.560143 -0.089287 0.369990 0.270076 0.232645 0.678578 -0.120852 -0.659014 -0.183737 -0.296722 -0.873505 -0.032282 1.079811 1.440937 0.128736 0.102463 0.146575 -0.217407 0.305095 0.216143 0.194950 0.366681 0.349846 0.530696 -0.716087 -0.032881 -1.905382 -0.232593 -2.484585 -0.705614 -0.818229 0.573652 0.271887 0.300177 -0.266614 1.317908 0.018891 0.308396 0.706039 1.709376 -0.975754 -0.463356 -1.006152 -0.635476 0.416353 -0.655764 -0.129787 0.284393 0.015639 -0.876921 -0.967575 0.404887 0.149804 -0.394544 -0.245728 -0.152096 1.142969 -1.275528 -0.450764 -1.045777 0.231731 -0.067877 -1.786709 -0.170936 -0.545223 0.766726 0.129097 -0.211583 -0.943663 0.361467 1.013067 -0.455577 -0.363537 -0.593106 1.254700 0.396031 -0.135476 0.169362 -0.064404 0.182446 1.093651 0.988766 -0.591744 -0.281610 0.177188 -0.737660 -0.203036 -0.972974 -0.171029 0.386742 -1.010663 0.129495 0.843239 -0.712169 -0.252439 0.139487 -0.376039 0.863522 3.140835 -0.357422 0.715351 0.227198 -1.412501 0.751395 -0.018803 -0.329740 0.181930 0.720243 0.488476 -1.241606 -0.969785 0.583047 1.121449 0.850135 -1.081377 -0.159475 -0.571514 -0.034985 -0.136380 0.075992 0.462352 -0.388500 -0.735900 -0.356299 0.517515 2.018433 -0.450233 -1.343386 0.546646 0.401697 -0.350035 -0.947834 -0.342089 -0.319222 0.036917 0.284308 -0.258015 0.674553 1.512907 -2.578988 1.152247 -0.056802 -0.469288 0.956411 -0.214476 -0.356262 -1.076661 0.146066 1.277980 1.365828 0.125603 0.044369 -0.030431 -1.057462 -0.072040 0.113684 0.725409 -0.383333 0.463749 0.266112 -1.159000 -0.910605 -0.604121 -0.176539 -0.385746 -0.439235 0.438270 0.189853 -2.570550 1.569609 -0.198596 -0.179353 0.287581 -0.136135 0.719448 -1.154737 -1.531575 0.531107 -0.110885 -0.560042 -0.554491 0.102408 0.904639 -0.011280 0.352723 -0.603554 -1.575143 0.724881 -0.153180 0.726415 0.423200 0.520528 1.238239 0.419794 -0.439571 -1.024145 -0.538194 0.521804 -0.361268 -0.596091 0.023225 -0.290929 1.000119 1.380072 -0.063431 -0.293543 -0.390013 1.339546 -0.939905 -0.393308 0.956914 0.337007 -0.713725 0.352055 1.090578 -1.094052 -0.882145 -0.715493 -0.077790 -0.207722 -1.091782 0.302513 -0.716003 0.241416 0.622036 0.030834 -0.677706 0.492617 0.241952 -0.072383 -0.096430 1.474519 1.509476 -0.791403 0.483278 -0.885280 0.567217 -1.703286 -1.132662 0.195465 -0.258894 -0.349066 0.259348 0.069424 0.788183 -0.215632 0.298600 -0.119954 -0.321288 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_clear() = -1.162899 1.259698 1.688999 -2.251529 3.340724 3.097066 0.929192 -0.648315 -1.719172 -1.308609 -0.685556 -2.785202 -2.794579 3.861390 -1.220138 1.664510 5.025982 0.712428 -0.670426 -0.139906 2.899773 -1.241704 4.647870 3.100282 -3.286227 -0.232474 1.983458 1.759498 -0.392902 3.626712 -1.875500 -3.902127 1.442039 -1.407650 0.874656 -2.212333 0.691988 -0.407591 0.191107 -4.855528 0.337983 0.269628 -1.325068 -0.716924 -0.879306 0.726026 4.778776 2.844370 -1.182612 -0.280921 1.846741 1.001870 -0.533665 1.166640 0.726192 0.894530 1.406362 0.322220 -2.244385 -0.901193 -0.934189 -2.301616 -0.165944 2.946776 4.079067 0.224160 0.296230 1.676381 -1.080567 0.632215 0.143074 0.594748 1.331939 1.108229 1.898634 -2.628446 -0.770671 -5.491011 -1.211136 -6.813650 -2.017872 -2.488772 0.484370 0.227438 1.705251 -1.043734 3.841303 -0.129405 0.840597 2.151367 5.651166 -3.591887 -1.428887 -3.691622 -1.561575 0.733111 -2.080129 -0.493643 1.524318 -1.034299 -2.672954 -3.420207 1.186932 0.905102 -0.980284 -1.918040 -0.518860 3.324765 -3.204326 -2.026093 -3.240658 0.112546 -0.912016 -5.648064 -0.559188 -0.612151 1.776274 0.604394 -0.334768 -4.029707 1.151899 3.774714 -1.284904 -2.246362 0.045161 3.902384 1.611398 -0.097582 0.965644 -0.019235 1.050765 4.203757 3.932797 -1.260243 -1.002126 0.076502 -2.181166 -0.434199 -2.303331 -0.709256 0.708808 -3.252618 0.088696 3.567299 -1.916469 -0.021252 1.170183 -1.232305 2.606979 10.044188 -1.163049 1.915580 0.183576 -4.826092 2.732566 -0.597238 -1.551381 -0.043204 1.794829 1.792675 -4.825833 -2.782168 2.368824 3.158067 2.434943 -3.928217 -0.528005 -1.855848 0.188967 -0.764109 -0.232393 1.952685 -0.657731 -2.222930 -0.958173 2.015556 6.960402 -2.433391 -4.154811 2.513448 1.095031 -0.750588 -3.790711 -1.408967 -1.767856 -0.260196 1.047498 -0.795908 1.802502 4.490739 -6.660678 3.167166 -0.425706 -2.017944 3.156270 -0.481426 -1.057802 -3.034881 0.392339 4.451137 3.671944 0.550361 0.267840 -0.858692 -2.888364 0.039589 0.427424 1.955566 -0.586456 1.232762 0.084925 -3.783427 -2.999399 -1.369240 -0.789949 -1.559392 -1.049842 1.130020 0.683312 -7.372973 5.234529 -0.325669 -0.406412 1.107192 -0.332196 2.711558 -3.204022 -5.067913 2.055347 -0.620829 -1.192200 -1.077354 0.453805 2.353897 0.812339 0.798011 -1.657374 -5.654230 1.910923 0.005790 2.244222 1.114573 2.050645 3.891916 0.850565 -1.830872 -3.453112 -2.291466 1.434134 -0.610340 -2.140475 -1.316936 -0.619025 3.475429 3.651018 -0.212971 -0.803064 -1.990581 3.395638 -3.710291 -0.771970 3.118728 1.837727 -3.102218 0.028747 3.438074 -2.736397 -2.583220 -1.852760 0.085624 -1.365143 -3.833454 -0.131208 -2.203255 0.295495 2.128770 -0.241116 -1.607226 1.058793 0.789973 0.092744 -0.858352 4.124571 4.463408 -3.007349 0.607701 -2.747118 1.811129 -5.293386 -4.210743 1.425142 -0.363820 -0.950385 0.415150 1.330939 1.934482 -1.020133 0.484308 -0.215170 -1.770985 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/euler-circuit-directed-graph.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.466000 0.022700 0.838434 -1.109126 0.898299 0.483608 0.354006 -0.346676 -1.010175 -0.355498 -0.051847 -0.639407 -0.484336 1.408912 -0.528578 0.614707 1.983590 0.697728 -0.341677 -0.475195 1.224737 -0.908910 1.640088 1.633777 -1.367773 -0.063638 0.737576 0.885671 0.476863 1.141017 -0.789990 -0.622657 0.480288 -0.928257 0.422222 -1.399716 0.208310 0.231506 0.303428 -2.105236 0.244152 -0.372299 -0.124769 -0.215891 -0.228669 0.759499 1.282892 1.070502 -0.537931 0.288676 0.986798 0.308750 -0.162730 0.352587 0.385102 0.689821 0.845916 0.574037 -0.492369 -0.126526 -0.264342 -0.973816 0.452543 1.241085 1.578543 0.080578 0.139644 0.393392 0.073324 0.171500 0.436620 0.196151 0.077367 0.160849 0.656432 -1.928273 0.125836 -2.822594 -0.340340 -2.987599 -0.759848 -0.734976 0.497759 -0.618238 0.665882 0.154277 1.381656 -0.064289 0.273302 0.660197 1.593038 -1.349279 -0.529537 -0.967536 -0.808599 0.400422 -0.709817 -0.117606 0.597052 -0.139783 -0.955216 -1.180479 0.837672 0.511659 -0.491614 -0.530467 -0.030086 1.286749 -1.282838 -0.967051 -1.002516 0.159744 -0.423479 -1.842259 0.341353 -0.967116 1.393467 0.093095 -0.359083 -1.361202 0.270529 1.308987 -0.462055 -0.699432 -0.289132 1.312228 0.554201 0.016322 0.093912 -0.315153 0.068843 1.348774 1.349214 -0.804412 -0.218762 0.306994 -1.151042 -0.163194 -1.262577 -0.451099 0.888055 -1.180538 -0.086877 0.845678 -0.837183 -0.088783 1.691093 -0.103298 0.853577 3.833574 -0.215510 0.918944 0.429860 -1.445524 0.835536 -0.007863 -0.110429 0.506419 0.968954 0.305801 -2.202620 -1.139620 0.416985 1.260652 0.963016 -1.479347 -0.967974 -0.777453 -0.126722 0.204612 -0.113856 0.293745 -0.481692 -0.866363 -0.360299 0.458687 2.328042 -0.721404 -1.129968 0.412571 0.178229 -0.832527 -1.812110 -0.454580 -0.826958 0.225792 -0.077676 -0.235569 0.834311 1.646955 -3.121974 1.242655 -0.690883 -0.533996 1.084160 0.031542 -0.543174 -1.680938 0.178413 1.065876 1.524117 0.081426 0.082176 0.403414 -1.220464 -0.122448 -0.024828 0.707263 -0.528294 0.575489 0.420103 -1.242390 -0.890221 -0.155103 -0.114066 -0.662196 -0.072301 0.589881 -0.162689 -2.699360 1.450751 -0.224424 -0.292392 0.733212 -0.115350 0.776270 -1.368811 -1.549032 0.729556 0.286838 -0.038790 -0.787756 0.088167 1.167668 -0.171662 0.062513 -0.780183 -1.873717 0.505919 -0.541142 0.844925 0.506629 0.304679 1.417336 0.120424 -0.328526 -1.424301 -0.112644 -0.031167 -0.300362 -0.780027 -0.644281 -0.324575 1.236312 1.553602 0.028763 -0.057475 -0.020880 1.573943 -1.411269 -0.416247 0.944730 0.902186 -0.769300 0.308034 1.097850 -1.445042 -0.813233 -0.577122 -0.366555 0.001576 -0.981940 0.683964 -0.646273 0.501075 0.373312 0.248917 -0.329111 0.666749 0.308200 0.249516 -0.009517 1.544042 2.124979 -0.860308 -0.053207 -1.008799 0.592074 -1.764696 -1.192301 0.166004 0.205052 -0.612034 0.383802 0.270910 1.148573 -0.047701 0.173186 0.035770 -0.395356 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/euler-circuit-directed-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.624118 0.335706 1.317333 -1.471664 1.199859 0.592435 0.452520 -0.381653 -1.193483 -0.767042 -0.063913 -1.155330 -1.213651 1.872267 -0.877985 0.213108 2.649784 0.788554 -0.463833 -0.761218 1.475994 -0.809035 2.335291 2.264874 -2.053774 -0.129092 1.071286 1.314689 0.851640 1.382677 -0.722554 -1.031571 0.657104 -0.573891 0.789629 -1.583156 0.290936 -0.097268 -0.157276 -2.783940 0.221135 -0.315014 -0.311301 -0.221426 -0.156940 1.553337 2.029420 1.482265 -0.803465 0.135148 1.450426 0.659523 -0.207798 0.440861 0.375669 0.223872 1.266660 0.638277 -0.674153 -0.227359 -0.372159 -1.411594 0.220611 1.888737 2.272929 0.233675 0.199991 0.272057 0.086186 0.423163 0.404784 0.374489 0.587819 0.642101 0.998376 -1.897447 0.143638 -3.746504 -0.402781 -4.454489 -1.055413 -1.202040 0.934152 -0.736989 0.438207 0.048741 1.979015 0.297471 0.447638 1.141763 2.448508 -1.471716 -0.703171 -1.308340 -1.138169 0.732883 -1.059848 0.213348 0.726240 0.069905 -1.369522 -1.407193 0.712647 0.333449 -0.710957 -0.333253 -0.158918 1.681040 -1.820553 -0.586086 -1.541195 0.086391 -0.028731 -2.757744 -0.030558 -1.257446 2.057860 0.097820 -0.439747 -1.322521 0.341086 1.534624 -0.627890 -0.548291 -0.733841 1.821880 0.782354 0.036145 0.086869 -0.191411 0.319620 1.473028 1.682086 -1.001433 -0.381159 0.208990 -1.517625 -0.285911 -1.688160 -0.296208 1.496991 -1.365063 0.230093 1.050042 -1.115708 -0.652949 1.604695 -0.529029 1.269217 5.033808 -0.381398 1.245806 0.537974 -1.929616 0.844355 -0.036280 -0.314959 0.616269 1.295782 0.688540 -2.286921 -1.523182 0.763932 1.831838 1.238148 -2.003575 -0.636601 -0.768535 -0.213515 -0.187053 0.046233 0.449525 -0.723839 -1.047225 -0.561078 0.961992 2.717143 -0.818483 -2.014712 0.447223 0.487420 -0.626793 -1.778059 -0.428262 -0.370722 0.357573 0.235863 -0.251304 1.224821 2.291757 -4.473493 1.681597 -0.304137 -0.544742 1.400867 -0.041665 -0.771197 -2.014171 0.564402 1.684718 1.843412 0.293738 -0.211589 0.321114 -1.739780 -0.199739 0.132477 1.118795 -0.753870 0.813075 0.623179 -1.486194 -1.490875 -0.722933 -0.086326 -0.509537 -0.383796 0.817183 -0.386799 -4.089847 2.259284 -0.434037 -0.448813 0.318919 -0.500691 0.885604 -2.012887 -2.210777 0.736931 -0.038559 -0.721599 -1.255836 0.074607 1.457918 -0.162071 0.509491 -1.194917 -2.382267 1.087852 -0.695395 1.190817 0.696093 0.733091 2.194086 0.196411 -0.414960 -1.913794 -0.223769 0.583863 -0.394753 -1.216032 -0.280730 -0.417744 1.452558 2.234166 -0.371310 -0.187624 -0.123367 2.003319 -1.802680 -0.904990 1.192107 1.193325 -0.950955 0.816656 1.393322 -1.827845 -1.225441 -1.085615 -0.742155 -0.134755 -1.584215 0.791368 -1.029463 0.589869 0.810096 0.234738 -0.697305 0.948514 0.275186 0.207992 0.112614 1.969883 3.222316 -1.409806 0.281971 -1.576685 1.012315 -2.583414 -1.849587 0.404040 -0.285868 -0.443230 0.374789 0.000122 1.404605 -0.054283 0.047074 -0.228463 -0.122179 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.463993 0.835491 2.354352 -2.791984 2.624463 1.413361 1.055597 -1.025485 -2.193519 -1.678985 -0.147619 -2.329481 -2.622564 3.998178 -1.711008 0.975229 5.546955 1.499880 -0.863061 -1.375730 3.414804 -1.985895 4.998474 4.561399 -4.149559 -0.388764 2.609248 2.478652 1.516917 2.630938 -1.598071 -2.216367 1.792613 -1.951255 1.427265 -3.202815 0.718913 -0.279135 0.134462 -5.535107 0.414907 -1.082301 -0.955412 -0.570832 -0.763083 2.856882 4.319217 3.202020 -1.710615 0.186175 2.891944 1.056906 -0.626111 1.093777 0.782135 0.623824 1.991207 1.523355 -1.533852 -0.670381 -0.888050 -3.094083 0.479790 3.881343 4.723941 0.446057 0.540687 1.299536 -0.213207 0.836773 0.645388 0.745197 1.333903 1.238556 2.252866 -4.661695 -0.158415 -8.070021 -1.388217 -9.391885 -2.242722 -2.569461 1.311834 -2.019289 1.496432 0.367154 4.079792 0.718060 0.906148 2.379503 5.429206 -3.626250 -1.565981 -2.944221 -2.083366 1.346857 -2.401431 0.554171 1.864850 -0.414489 -2.992727 -3.314820 1.645783 1.010748 -1.389427 -1.601331 -0.305297 3.611759 -3.664400 -1.745743 -3.423193 -0.324478 -0.524813 -5.947854 0.284312 -2.200298 4.496928 0.387577 -0.857741 -3.425545 0.775761 3.601647 -1.125292 -1.969542 -0.505739 3.741267 1.783348 0.246762 0.435085 -0.341617 0.742777 3.767155 4.163368 -1.851877 -0.849309 0.144845 -3.332991 -0.429610 -3.347547 -0.837192 3.076143 -3.117142 0.381130 2.716880 -2.342161 -1.260445 4.218009 -1.140782 2.747384 10.509445 -0.760919 2.545054 1.114894 -4.361571 1.819251 -0.579879 -0.831422 1.140011 2.761625 1.520103 -5.264251 -3.254109 1.830759 3.800746 2.648191 -4.505788 -1.784628 -1.842861 -0.139369 -0.580320 -0.214515 1.226804 -1.267717 -2.322317 -1.095389 2.303780 5.908416 -2.413248 -3.953953 1.389322 0.911322 -1.213824 -4.522848 -1.222557 -1.278103 0.613921 0.499765 -0.524086 2.313866 4.888988 -8.802695 3.398177 -0.993598 -1.273931 2.891436 0.206626 -1.773847 -4.400828 1.303913 3.819881 3.621345 0.653310 -0.088666 0.433992 -3.634099 -0.400957 0.248920 2.320518 -1.316692 1.673076 0.972473 -3.235544 -3.389801 -1.018359 -0.185162 -1.499895 -0.335105 1.747900 -0.500235 -8.409729 4.970448 -0.919306 -1.013946 0.967465 -0.958544 2.357773 -4.221930 -4.969807 1.924273 -0.275576 -1.177450 -2.420832 0.375265 3.025503 -0.079601 0.630669 -2.240560 -5.157997 2.129716 -1.185709 2.502333 1.356194 1.879008 4.877878 -0.117859 -1.248436 -4.244992 -0.561262 0.888378 -0.822002 -2.831058 -1.487260 -0.702124 3.419835 4.711669 -0.667494 -0.427210 -0.260737 4.015845 -4.562172 -1.753174 2.814451 3.343185 -2.318592 1.360383 3.111627 -3.739479 -2.695778 -2.026006 -1.332668 -0.490721 -3.684117 1.244663 -2.250724 1.127606 1.774968 0.442120 -1.124481 1.924683 0.747085 0.872911 -0.041599 3.880326 6.943021 -3.365114 -0.113729 -3.318927 1.978278 -5.585163 -4.292484 1.323855 -0.065630 -0.856472 0.683414 0.461720 2.868351 -0.319437 -0.115249 -0.412303 -0.787162 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::_M_node_count() const = -0.146201 0.040284 0.292002 -0.398118 0.333859 0.105448 0.121576 -0.182005 -0.387347 -0.204535 0.061682 -0.411493 -0.247349 0.472844 -0.233109 0.155581 0.600206 0.168044 -0.129551 -0.191152 0.295815 -0.160060 0.608289 0.587019 -0.491068 0.028720 0.117051 0.323779 0.172415 0.374805 -0.131696 -0.302116 0.165315 -0.099672 0.092131 -0.345035 0.041753 0.068651 0.069187 -0.684252 0.078980 -0.002310 0.065598 -0.044255 -0.021597 0.273016 0.458414 0.376163 -0.126118 0.168573 0.392983 0.194231 0.015899 0.125840 0.127433 0.008021 0.386884 -0.113477 -0.162899 -0.070785 -0.068293 -0.316437 0.010481 0.464323 0.570036 0.042872 0.007992 0.034117 -0.002172 0.122287 0.181173 0.117665 0.008292 0.149790 0.162473 -0.381496 0.146023 -0.819076 -0.077652 -0.996137 -0.297116 -0.165797 0.332573 0.099556 0.116538 0.087212 0.502596 0.082339 0.009090 0.218878 0.561079 -0.345028 -0.172420 -0.154884 -0.290036 0.185086 -0.238954 0.066157 0.016198 0.175391 -0.335023 -0.259775 0.230076 0.051504 -0.201589 -0.022920 -0.008619 0.347344 -0.546975 -0.149583 -0.230787 0.126655 0.020990 -0.649536 -0.000335 -0.329561 0.421653 -0.005413 -0.134489 -0.272010 0.086572 0.231249 -0.163959 -0.056427 -0.438648 0.338223 0.170767 0.068221 0.008693 -0.050102 0.102878 0.430333 0.167681 -0.309110 -0.051333 0.019644 -0.200326 0.049775 -0.350905 -0.092845 0.191260 -0.362334 0.137113 0.194813 -0.271634 -0.185472 0.145522 -0.055984 0.201114 1.033030 -0.060409 0.388224 0.247170 -0.448394 0.108494 -0.074865 -0.032589 0.177117 0.269687 0.112297 -0.312151 -0.400142 0.216808 0.465827 0.308854 -0.381421 -0.131378 -0.074845 -0.030843 0.016117 0.071750 0.077262 -0.157043 -0.283422 -0.139116 0.206532 0.671291 -0.053130 -0.289346 0.140147 0.109565 -0.167425 -0.326346 -0.114689 -0.097854 0.107718 0.050612 -0.015989 0.260702 0.563153 -1.101103 0.425876 -0.025648 -0.069313 0.318541 -0.008764 -0.268543 -0.486366 0.054212 0.330597 0.450862 -0.021861 0.078932 0.144745 -0.437948 -0.067854 0.016778 0.162138 -0.235902 0.210257 0.208846 -0.371094 -0.304481 -0.144394 -0.008847 -0.069755 -0.142791 0.262749 0.059373 -0.960739 0.476958 -0.081418 -0.156740 0.055386 -0.123673 0.276270 -0.453056 -0.440699 0.165160 -0.107428 -0.203211 -0.261020 0.033245 0.280466 -0.112657 0.140034 -0.260545 -0.349548 0.255003 -0.179045 0.249610 0.202456 0.095642 0.345751 0.025027 -0.084933 -0.344620 0.006332 0.124583 -0.185683 -0.247755 0.158354 -0.141712 0.331554 0.515950 0.001172 -0.144886 0.075806 0.480783 -0.291314 -0.209098 0.289795 0.150952 -0.262984 0.256031 0.329118 -0.423858 -0.178109 -0.289840 -0.137818 -0.058878 -0.337496 0.298513 -0.105953 0.175574 0.152450 0.053080 -0.207171 0.285954 0.055516 0.002393 0.052131 0.549560 0.590286 -0.181830 0.128407 -0.390562 0.163553 -0.593071 -0.425570 0.095792 -0.024737 -0.235922 0.058837 -0.122025 0.405869 0.034055 0.079591 -0.078488 0.065771 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_size() const = -0.119754 0.318362 0.476579 -0.549043 0.648624 0.773172 0.131318 -0.347139 -0.416528 -0.002495 -0.025390 -0.625362 -0.277113 0.618184 -0.302864 0.244449 0.763370 0.053709 -0.226833 0.030188 0.276833 0.223336 0.753492 0.634987 -0.530020 0.092316 0.165022 0.160946 -0.193135 0.837105 -0.607730 -0.791634 0.108966 -0.028976 -0.036438 -0.212940 -0.102308 -0.190388 0.271589 -0.777797 0.107161 0.161988 -0.220426 -0.161858 0.012833 -0.260343 0.865096 0.387634 0.045170 -0.032123 0.289193 0.417785 -0.054374 0.102277 0.432959 0.278199 0.733819 -0.061633 -0.209915 -0.188917 -0.183244 0.118356 -0.162640 0.597799 0.543784 0.194821 -0.085039 -0.081557 -0.103856 -0.000120 0.002096 0.175035 0.020554 0.524638 0.030795 -0.138511 0.278882 -0.449143 -0.027164 -0.250509 -0.365151 -0.175518 -0.008438 0.337889 0.346349 -0.179562 0.649297 -0.161533 0.069199 0.014180 0.865700 -0.599791 -0.168749 -0.246442 -0.448955 -0.028752 -0.148187 0.041623 -0.297260 -0.169149 -0.477166 -0.499527 0.202393 0.217011 -0.220335 0.128587 0.079050 0.409985 -0.434336 -0.245160 -0.207961 0.198712 -0.156323 -0.836986 -0.530496 -0.236309 0.082770 0.002923 -0.325077 -0.789763 0.264642 0.510326 -0.354228 -0.286355 -0.223000 0.487359 0.375649 0.052759 -0.014293 -0.233547 0.311641 0.697241 0.163009 -0.329784 0.100164 -0.135095 -0.085892 -0.040637 -0.227479 0.009498 -0.429817 -0.379319 0.107878 0.613190 -0.335896 0.210228 -0.260522 -0.092910 0.217852 1.810481 -0.383806 0.502338 0.058214 -0.821095 0.267584 -0.071226 -0.285003 -0.152797 0.181021 0.414479 -0.750146 -0.432066 0.513548 0.623728 0.372226 -0.429510 0.220977 -0.135598 -0.175453 -0.072997 0.192898 0.052260 -0.122762 -0.418888 -0.268251 0.293334 1.246048 -0.195359 -0.928395 0.328645 0.036473 0.061856 -0.020121 -0.155979 -0.214853 0.152366 0.294476 -0.153438 0.465965 0.716456 -1.248517 0.557416 -0.069400 -0.579133 0.742959 -0.044783 -0.266579 0.267057 0.002665 0.623080 0.571981 0.114400 -0.014782 -0.114437 -0.476432 -0.110285 0.042832 0.239225 -0.339980 0.279136 0.388155 -0.839725 -0.383465 -0.406004 -0.038502 -0.302474 -0.517502 0.242230 -0.124796 -1.241291 0.818508 0.376917 0.027903 0.107329 -0.261532 0.259174 -0.452261 -0.667567 0.257388 -0.121866 0.038073 0.172365 -0.076462 0.283848 0.224920 0.567120 -0.605596 -0.646944 0.232168 0.120289 0.533172 0.255962 0.270751 0.192795 0.136457 -0.077024 -0.324431 -0.423450 0.567890 0.123738 -0.405164 0.053259 -0.343309 0.529024 0.503575 -0.070780 -0.256830 -0.540545 0.427575 -0.250462 0.187282 0.335701 -0.034207 -0.618955 -0.286790 0.435137 -0.176155 -0.255304 -0.244829 -0.167769 -0.469237 -0.472412 0.113979 -0.124620 0.130845 0.290410 -0.103069 -0.378826 0.113876 -0.008183 -0.070051 0.201580 0.491070 0.242077 -0.167270 0.324169 -0.489903 0.362866 -0.721196 -0.657554 0.287843 -0.436876 -0.462068 -0.154496 -0.149807 0.430134 -0.135395 0.323641 0.085727 -0.037334 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::addEdge(int, int) = -0.732709 0.131275 1.158565 -1.691132 1.282604 1.588591 0.467775 -1.001141 -1.352219 -0.423541 0.219422 -1.636945 -0.983001 1.961560 -1.084751 0.701790 2.473362 0.520061 -0.891399 -0.351780 1.413026 0.162923 2.560820 2.280299 -1.829199 -0.166679 0.494226 1.338625 0.525560 1.416344 -0.638854 -1.164082 0.669690 -0.686293 0.080693 -1.112735 0.168030 -0.027823 0.334928 -2.519223 0.277208 -0.000512 -0.543345 -0.318886 -0.127349 0.236960 1.933980 1.524032 -0.075622 0.057414 1.183899 0.856777 -0.091711 0.427234 0.689185 0.292905 1.353593 -0.252732 -0.591940 -0.689236 -0.448108 -0.726291 -0.018470 1.996445 2.094452 0.523174 0.018300 0.223322 0.044385 0.371603 0.526870 0.493345 -0.098310 1.055615 0.592506 -1.492855 0.669840 -2.142106 -0.278210 -2.181094 -1.000056 -0.654773 0.671493 0.447634 0.810695 -0.075125 2.012382 -0.058288 -0.024175 1.021920 2.426623 -1.687703 -0.647812 -1.011534 -1.047388 0.403589 -0.975008 0.325261 -0.188284 0.371922 -1.450776 -1.044070 0.380426 0.594775 -0.711595 -0.137881 0.052807 1.630737 -1.701654 -0.792813 -0.773553 0.654590 -0.256615 -2.856497 -1.110148 -1.211712 1.483235 -0.063738 -0.696131 -1.682666 0.540318 1.473488 -0.463287 -0.666982 -0.709301 1.399893 0.988951 0.148154 -0.125300 0.032183 0.431055 2.132614 0.926628 -0.916697 -0.011572 -0.053618 -0.933218 0.091817 -1.091561 -0.173702 0.038084 -1.476333 0.109531 1.671977 -1.059749 -0.323737 0.202949 -0.003975 0.906564 5.775425 -0.502744 1.575098 0.924275 -2.063030 0.415716 -0.342844 -0.193109 0.307085 0.706037 0.720541 -2.601160 -1.569494 1.177410 1.964529 1.240441 -1.673263 0.261996 -0.490764 -0.208251 -0.350520 0.207865 0.434322 -0.514542 -1.185199 -0.615634 1.215461 3.054384 -0.793970 -1.972472 0.806828 0.009233 -0.361743 -1.091462 -0.563444 -0.142515 0.396977 0.749632 -0.099849 1.130155 2.312993 -3.149788 1.709485 0.000190 -0.637363 1.854232 -0.000384 -1.056328 -0.555973 0.019778 1.626461 1.657111 -0.027776 -0.354799 0.272732 -1.781185 -0.227370 0.377507 0.813533 -0.732638 0.875270 0.961910 -1.567473 -1.391549 -0.651739 -0.081733 -0.460984 -0.805976 1.010867 -0.698691 -3.320444 2.254629 0.227798 -0.438682 0.372789 -0.744169 1.195233 -1.853768 -2.097688 0.949918 -0.207682 -0.689106 -0.654061 0.106043 1.233076 0.533945 0.953059 -1.683354 -1.756628 1.027851 -0.383981 1.451425 0.676464 0.620647 1.432174 -0.055366 -0.333298 -1.480213 -0.917217 0.832916 0.148866 -1.475900 -0.286104 -0.496562 1.660632 1.849023 -0.358996 -0.793655 -0.353196 1.834824 -1.518935 -0.526422 1.039307 0.843066 -1.576629 0.219388 1.301742 -1.469047 -0.761400 -0.812786 -0.745109 -0.763649 -1.628771 0.905632 -0.477809 0.862161 0.618082 0.214043 -0.656864 0.707882 0.352243 0.226649 0.591095 1.971821 2.057892 -0.677290 0.226615 -1.775901 1.114230 -2.445341 -2.011514 0.808448 -0.542757 -0.706542 0.111221 -0.192798 1.664871 0.240149 -0.017307 -0.116176 0.051508 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::push_back(int const&) = -0.393401 0.422519 1.031386 -1.031333 0.911656 0.566330 0.289656 -0.279628 -0.773459 -0.525266 -0.148460 -0.897224 -0.903899 1.280504 -0.616633 0.073999 1.790952 0.501754 -0.302807 -0.413763 0.851887 -0.381816 1.574160 1.505993 -1.357415 -0.030149 0.664674 0.861908 0.356394 1.202490 -0.612930 -0.953458 0.365006 -0.118637 0.544261 -0.984653 0.119830 -0.152330 -0.193692 -1.907424 0.155767 -0.015483 -0.204815 -0.182168 -0.031300 0.779597 1.547288 0.969966 -0.421378 -0.029383 0.874053 0.620141 -0.097963 0.297384 0.378952 0.174232 1.031777 0.169529 -0.481999 -0.155502 -0.293692 -0.832648 0.017336 1.302350 1.489585 0.233028 0.090516 0.007296 -0.041530 0.269086 0.155668 0.281825 0.394614 0.619241 0.531091 -0.970691 0.242467 -2.185488 -0.192089 -2.616972 -0.754199 -0.842108 0.533092 -0.078097 0.281471 -0.102190 1.382458 0.134932 0.371358 0.607444 1.754056 -0.984465 -0.436997 -0.858633 -0.801377 0.442703 -0.636845 0.104814 0.202661 0.027407 -0.937050 -0.945297 0.461861 0.185601 -0.488910 -0.001059 -0.093111 1.121425 -1.237884 -0.317652 -1.042174 0.074072 -0.001614 -1.868447 -0.179050 -0.785787 1.111922 0.056561 -0.349325 -0.966815 0.316298 1.033208 -0.484618 -0.318287 -0.754878 1.269090 0.517544 -0.075629 0.042366 -0.180365 0.280622 0.961390 0.974930 -0.665891 -0.209115 0.093297 -0.913571 -0.285879 -1.050647 -0.113064 0.664561 -0.889177 0.120973 0.784143 -0.762436 -0.322448 0.525266 -0.447182 0.868483 3.416189 -0.418630 0.818023 0.264811 -1.401633 0.626074 0.021844 -0.357153 0.243614 0.811920 0.630133 -1.440099 -1.010450 0.605399 1.272015 0.837819 -1.148896 -0.197742 -0.512979 -0.207236 -0.164074 0.156924 0.268295 -0.507400 -0.738695 -0.435400 0.615118 1.914148 -0.449047 -1.544312 0.355047 0.286026 -0.283268 -0.909225 -0.256530 -0.189793 0.222384 0.197102 -0.242304 0.853825 1.563733 -3.006717 1.193289 -0.108337 -0.541645 1.076828 -0.167630 -0.449786 -1.052387 0.368348 1.265526 1.273501 0.190920 -0.134402 0.039200 -1.167345 -0.168691 0.086990 0.810292 -0.584731 0.563585 0.487927 -1.173862 -1.013237 -0.690934 -0.063023 -0.385776 -0.485327 0.511122 -0.174620 -2.768394 1.648919 -0.130720 -0.191598 0.176767 -0.382907 0.517944 -1.317703 -1.511133 0.446208 -0.096081 -0.477232 -0.646495 -0.000830 0.949210 -0.083431 0.456571 -0.878972 -1.521547 0.725538 -0.311385 0.837731 0.488394 0.599123 1.310276 0.380108 -0.267713 -1.117797 -0.289140 0.571623 -0.237513 -0.781671 -0.017482 -0.380949 0.971460 1.535718 -0.270168 -0.175254 -0.264594 1.297858 -0.996112 -0.491824 0.806547 0.446839 -0.700777 0.378291 0.955423 -1.064124 -0.897462 -0.774836 -0.441146 -0.216755 -1.102292 0.437810 -0.726183 0.309425 0.667349 0.027998 -0.656052 0.586144 0.153043 0.024624 0.135450 1.306914 1.819926 -0.839331 0.431610 -1.036537 0.682646 -1.754411 -1.204426 0.264368 -0.371827 -0.333964 0.150210 -0.107557 0.890154 -0.132064 0.233602 -0.089607 -0.109375 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::DFSUtil(int, bool*) = -2.110715 0.266646 2.278246 -4.582112 3.641304 3.681227 1.497262 -1.909632 -3.898571 -2.059717 0.673263 -5.331578 -3.310546 6.020808 -2.421761 2.238719 7.247535 1.230636 -2.190296 -0.349831 4.208199 0.256170 6.931647 6.129096 -4.922131 -0.535330 0.307809 3.249649 0.603595 3.234496 -0.406943 -4.236869 2.117528 -1.950774 -0.058073 -2.758218 0.820004 0.359768 0.777743 -7.206506 1.003431 1.217353 -1.113881 -1.430520 -0.943607 0.153286 5.610458 4.595356 -0.888348 -0.099812 3.150554 2.112245 -0.594575 1.454983 1.256093 -0.165104 1.138567 -1.763164 -2.425561 -2.010364 -1.031045 -2.574518 -0.170840 5.309759 5.922330 1.326935 0.136202 1.472374 -0.325263 1.273371 1.518088 1.003542 0.806899 1.863282 2.188253 -3.236624 0.061222 -6.340672 -0.998991 -7.579851 -3.104408 -1.560376 3.173666 2.785097 1.820978 -1.366190 5.387685 -0.293938 -0.009860 4.614813 7.238374 -4.400625 -2.199548 -3.978217 -3.055512 1.769704 -2.914899 0.730220 -0.417174 0.875091 -4.441430 -2.803888 0.460144 1.398684 -1.836238 -1.767528 0.535298 4.489742 -4.830491 -2.107510 -2.093633 2.412220 -0.132590 -7.987793 -2.596221 -2.804996 2.900180 0.235340 -1.778625 -4.043763 1.282389 3.106734 -1.477127 -1.887707 -3.117396 4.174060 2.175860 0.857438 0.378954 0.535870 1.536041 5.997855 2.101854 -2.589337 -0.016711 -0.369028 -1.907607 0.616442 -3.025310 -1.214352 0.897053 -4.373904 -0.085492 4.138671 -3.116749 -1.651110 -0.646159 -0.132778 2.641841 14.815713 -0.827988 4.486587 2.817127 -5.800888 2.009513 -1.435680 -1.024669 0.608029 2.232241 1.806168 -5.818498 -4.570982 3.463440 5.430140 3.904534 -3.909920 0.729086 -1.041583 -0.260333 -1.290090 0.457335 1.613462 -0.736187 -3.838540 -1.548025 4.255850 8.480175 -1.874369 -3.743482 2.881445 1.565503 -0.410588 -3.138986 -1.689639 -0.860790 0.722795 2.350365 -0.364216 3.163406 6.836588 -8.017882 4.766787 0.304166 -0.833270 3.647708 0.133514 -3.632822 -3.165322 -0.071550 4.965535 5.095803 -0.181829 0.217860 0.308258 -4.791843 -0.597438 1.275326 1.675976 -1.445644 2.221467 1.046755 -3.784439 -3.983570 -1.379274 -1.483545 -0.934421 -1.937227 2.769529 0.223686 -7.625008 6.603606 0.126457 -1.176933 0.385886 -2.019413 4.271778 -5.220253 -6.160936 2.815059 -1.355461 -3.014848 -1.858786 0.625321 3.285272 1.287243 1.353721 -3.376226 -5.171293 3.909001 -0.613463 4.188081 1.936421 1.551992 4.058211 1.074869 -1.499256 -3.869710 -3.880562 2.259724 -0.177909 -4.483826 -0.417807 -1.306714 4.692981 4.890600 -0.942787 -3.305774 -0.677690 5.023627 -3.876501 -1.908567 3.614019 1.112862 -4.484799 1.045520 4.406432 -4.590800 -1.728496 -3.093943 -0.357920 -2.073981 -5.075485 1.801384 -0.938987 2.119558 1.802986 0.355008 -1.703164 1.850196 1.485650 0.387647 0.950564 6.205931 4.813139 -2.211184 0.456423 -5.134832 2.647272 -7.059256 -6.103480 2.482997 -0.750508 -1.979681 0.327143 -0.316714 4.277160 0.253449 0.418092 -0.857240 0.324435 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -3.354097 -2.506525 0.896335 -8.017154 5.722746 5.118402 2.505060 -3.261685 -8.484697 -1.308050 1.985099 -8.096720 -1.592966 10.092267 -2.620844 7.188730 12.160065 2.305928 -4.215185 -0.114650 9.034479 -1.912539 10.237173 9.177160 -6.870819 -0.743767 -0.365303 4.372916 0.961387 4.242159 -0.684488 -4.997329 2.533646 -7.317909 -1.195454 -6.090339 1.628797 3.225269 5.760887 -12.278744 2.571919 1.939556 1.943767 -2.957898 -2.604417 -1.746137 6.020481 7.443469 -2.116457 0.979727 6.237934 1.773349 -1.294066 2.204046 1.755257 2.492710 1.730870 -0.029317 -3.820191 -3.421198 -0.927401 -2.037691 2.392118 7.260585 9.500437 1.257631 0.112529 4.473201 1.392591 1.969908 4.160240 0.722184 -2.200928 -0.344093 3.356457 -9.221065 -0.815332 -13.511053 -0.988970 -12.903966 -4.757577 -0.192907 5.244869 2.279387 4.541631 -0.568729 7.705006 -2.492712 -1.284314 6.947736 9.273684 -6.963702 -3.707121 -6.852435 -5.995018 2.998822 -4.103090 -0.777509 3.277652 1.097465 -6.689465 -4.680849 2.717579 3.973074 -2.645156 -4.900309 1.877171 7.203253 -5.964060 -6.757112 -0.496038 6.841388 -2.307496 -11.962274 -2.132273 -6.158599 1.644226 0.167034 -2.756883 -7.852491 1.302469 4.539699 -3.169962 -4.159381 -3.022747 6.360464 3.482919 2.339744 0.852554 -0.378501 1.498051 10.669510 3.036402 -5.596664 0.650319 0.372708 -2.694199 2.130282 -6.114448 -4.219847 1.361719 -7.977901 0.141523 6.300326 -4.854442 -1.236365 3.667189 2.208673 3.036865 25.381920 0.059471 8.916014 5.765372 -8.247245 5.325418 -1.352438 -0.446831 1.895869 3.570272 0.265352 -11.664097 -7.663985 4.449940 7.863878 6.781545 -7.136578 -3.720790 -2.119411 -0.842148 0.702659 -0.506999 2.448690 -0.701895 -6.670415 -2.090486 5.737767 15.656376 -2.943218 -3.511849 5.120272 4.127741 -4.539545 -9.641911 -3.698188 -7.068347 1.086495 1.421348 -0.628858 5.361064 10.665738 -13.859935 7.599730 -0.877260 -0.725180 6.494448 1.046148 -7.011992 -9.696107 -2.034521 5.796633 10.020857 -2.358932 1.091856 2.524975 -6.968628 -0.434214 1.362873 0.453560 -1.810422 3.005813 -0.124053 -4.848911 -4.320805 1.427884 -3.507546 -2.963824 -1.209342 4.532004 1.781019 -9.171852 8.333971 -0.042123 -1.793903 2.821513 -2.120244 7.056511 -6.922778 -8.214286 5.359514 0.452414 -1.380071 -3.431078 1.584222 5.976343 2.037851 2.066116 -4.041367 -9.700689 4.581617 -2.872700 6.585062 3.091579 -0.356603 3.765116 1.728799 -1.967165 -7.678820 -4.909053 -1.211367 0.608971 -7.329396 -4.279080 -1.966428 8.245727 5.778809 0.268589 -5.502022 -1.406825 9.024833 -6.278763 -1.940024 5.909294 -0.016516 -8.342113 0.341205 7.513904 -8.984806 -0.792682 -4.014979 0.679308 -2.479602 -6.384553 4.031271 1.081293 4.115893 0.155133 0.713261 -0.379306 2.879843 3.744691 1.046912 0.683190 11.001497 5.747824 -2.221470 -1.650538 -7.554109 2.992062 -10.084372 -8.789034 3.369163 0.895224 -6.583139 1.599482 1.844882 8.414684 0.135690 1.945859 -0.821693 -0.342435 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::size() const = -0.113991 -0.053337 0.407142 -0.629660 0.792717 0.007914 0.010749 0.026443 -0.425847 -0.292623 -0.185711 -0.250627 -0.409849 0.527731 -0.220906 0.365688 0.385154 -0.091932 -0.107016 -0.315485 0.677000 -0.282828 0.517493 -0.138232 -0.756901 -0.010550 0.066746 0.816280 0.441198 0.633250 -0.082853 -0.037661 -0.079294 -0.029853 0.286631 -0.417487 0.452564 0.279589 -0.258351 -0.545901 0.024467 0.096604 -0.118829 0.219727 -0.128608 0.661050 0.223804 0.515401 -0.569364 0.177697 0.772036 0.121648 -0.036293 0.263027 -0.489783 -0.111728 0.404405 -0.286675 -0.357211 -0.123941 0.107618 -0.761393 0.261535 0.271439 0.686227 -0.359140 0.087265 0.652330 0.045370 0.178276 0.358438 0.074328 -0.062834 -0.233209 0.500974 -0.273737 -0.095304 -0.763563 -0.012829 -1.350602 -0.187255 -0.569001 0.278999 0.200853 -0.086944 0.041475 0.726795 0.146779 -0.048245 0.504732 0.359762 -0.260243 -0.095677 -0.903081 -0.297251 0.260623 -0.429134 -0.509965 0.176346 0.640049 -0.024345 -0.101103 -0.022569 -0.270472 -0.179531 -0.238491 -0.521614 0.556925 -0.894467 -0.223520 -0.413919 0.516556 -0.036311 -0.621484 0.006401 -0.154473 0.553959 -0.333613 0.741100 0.108583 -0.084832 0.400048 -0.231766 0.199516 -0.594322 0.487938 0.362318 -0.186638 0.162840 0.144339 0.004940 0.180832 0.405851 -0.284622 -0.797104 0.371085 -0.033910 -0.062335 -0.526427 0.113283 0.457361 -0.609206 0.117367 0.233040 -0.019720 -0.199188 -0.061742 -0.323133 0.488510 0.686980 0.160080 0.000445 -0.032944 -0.296583 0.182083 0.211662 -0.070420 0.494590 -0.056004 -0.119127 -0.036566 -0.516208 0.206031 0.131692 0.285051 -0.504905 -0.179093 -0.240995 0.053533 0.123419 -0.347932 0.653324 -0.451972 0.004094 -0.092653 -0.229350 0.667241 0.051148 -0.339045 0.620730 0.309852 -0.805084 -0.507564 -0.325253 -0.001622 -0.376028 0.137121 -0.007108 0.192506 0.644276 -1.124020 0.386655 0.409310 0.002101 0.035257 -0.491627 0.235378 -0.797233 -0.249578 0.332009 0.472979 -0.280455 0.151990 0.034980 -0.369479 0.388541 0.175928 0.133767 0.142360 -0.091965 0.011080 -0.041860 -0.298018 -0.052564 -0.319873 0.507318 -0.000113 0.090272 -0.085503 -1.185201 0.384352 -0.764586 -0.059674 0.338993 0.142332 0.619134 -0.327763 -0.306005 0.365288 0.137924 -0.467980 -0.677981 0.387136 0.452888 -0.244814 -0.060989 -0.134538 -0.733505 0.025236 -0.435148 -0.299029 0.138530 0.175953 0.391439 0.080626 -0.219450 -0.545191 -0.002326 -0.050977 -0.164399 0.150501 0.360124 0.235002 0.343739 0.395221 0.120742 0.136950 0.103833 0.558779 -0.299167 -0.583201 0.445930 -0.019864 -0.365091 0.632575 0.498155 -0.414555 -0.430392 -0.460472 0.261991 0.101143 -0.274066 0.217348 -0.182928 -0.015002 0.424243 0.203629 -0.451576 0.484737 0.096679 -0.227494 -0.665127 1.167624 0.954693 -0.332895 0.202840 -0.278833 0.226095 -0.638823 -0.261348 -0.061374 -0.041956 0.133922 0.489264 0.149428 0.433687 -0.063502 0.165168 -0.003727 -0.447550 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isEulerian() = -2.115049 -1.964506 -0.457432 -4.910685 3.644942 2.494618 1.746543 -1.968017 -5.867550 -0.780984 1.424786 -5.251722 -0.810225 6.658556 -1.252045 5.309718 7.830699 1.577466 -2.824668 -0.098059 5.990416 -1.783086 6.415168 5.760894 -4.083886 -0.267353 -0.626524 2.239693 0.229439 2.596386 -0.056638 -3.021457 1.600221 -5.428422 -0.853433 -3.876134 0.894354 2.458570 4.450428 -8.002853 1.785224 1.777810 2.604390 -2.088660 -1.880672 -1.294862 3.521957 4.802884 -1.334969 0.909067 4.068627 0.627268 -0.526976 1.451909 1.180136 1.901405 1.016112 0.100790 -2.769613 -2.091728 -0.588154 -1.029763 1.721930 4.358107 5.903238 0.589329 -0.099799 3.345237 1.070251 1.609902 2.845565 0.427685 -1.691618 -1.055293 2.164933 -5.932480 -0.850176 -9.309226 -0.677190 -8.946424 -3.263371 0.307026 3.775173 1.618018 3.109761 0.227158 4.916382 -1.749527 -1.079722 3.961453 5.728033 -4.170883 -2.512445 -4.296378 -3.858666 2.135699 -2.535175 -0.957675 3.235539 0.756390 -4.422476 -2.805838 1.991038 2.673776 -1.673074 -3.482661 1.395511 4.688775 -3.401738 -4.698689 -0.095921 4.542173 -1.586377 -7.688902 -0.515027 -3.834940 -0.403351 0.438468 -1.962390 -5.120550 0.884814 2.363633 -2.279470 -2.696029 -1.610251 3.944850 1.823445 1.814413 0.815067 -0.120932 0.960402 7.065626 1.732357 -3.878323 0.678037 0.305577 -1.425276 1.764624 -3.948572 -3.402661 0.887648 -5.368617 0.694419 3.614649 -3.207235 -0.714673 3.003923 1.623223 1.533531 15.246218 0.099018 6.221218 3.799351 -5.008587 3.744520 -0.975449 -0.238441 1.207020 2.622059 -0.103931 -6.405037 -4.986692 2.861220 5.048357 4.491837 -4.419076 -3.263595 -1.224137 -0.459578 1.142100 -0.328056 1.705385 0.148893 -4.457935 -1.250974 3.545016 10.192135 -1.956284 -1.471805 3.345817 3.437334 -3.169655 -7.051558 -2.538957 -6.030330 0.629562 0.244243 -0.201144 3.122380 6.875961 -8.423682 5.109015 -0.865681 -0.218189 4.347369 0.705962 -4.816379 -7.464504 -1.652621 3.427216 6.714681 -1.832152 0.564094 1.755889 -4.423960 -0.263334 0.591102 -0.125376 -1.149009 2.003437 -0.804588 -2.557829 -2.405172 1.604609 -2.248384 -2.121017 -0.280424 3.006463 2.536919 -5.116054 5.037159 -0.224443 -1.291498 1.849711 -0.811014 4.400858 -4.029486 -4.969881 3.347446 0.168702 -0.662414 -2.433369 1.030560 3.824541 1.329866 0.965213 -1.961328 -5.528365 2.723231 -2.023439 4.371672 2.084429 -0.679040 1.912132 1.625577 -1.535028 -4.831303 -2.535268 -1.938011 -0.073658 -4.610370 -3.044889 -1.307036 5.317292 3.474553 0.731385 -3.683948 -1.206892 5.904534 -3.735939 -1.398950 4.107568 -1.047226 -5.356039 0.306609 5.110011 -5.981699 -0.147365 -2.641656 0.901858 -1.530909 -3.771422 2.613491 1.068756 2.452835 -0.377558 0.179108 0.268920 1.906039 2.637362 0.676912 0.065259 6.916935 2.853637 -1.554024 -1.383640 -4.737796 1.760628 -6.304053 -5.538161 2.107342 1.325500 -4.964548 1.001453 1.508824 5.421076 -0.090787 1.161851 -0.916364 -0.237187 +PE-benchmarks/eulerian-path-and-circuit.cpp__test(Graph&) = -0.896569 -0.881709 0.076910 -2.379315 1.285401 0.374908 0.640386 -0.369603 -2.443708 -0.862069 0.460890 -2.238307 -0.570116 2.911497 -0.530940 1.818845 3.375888 0.790343 -0.952337 -0.268360 2.469305 -1.112013 2.539071 2.531896 -2.137399 -0.188478 -0.121662 1.405131 0.496028 1.022083 0.613269 -1.440759 0.353168 -1.728935 0.296631 -1.916398 0.590018 1.292134 1.166364 -3.840678 0.732059 1.181641 1.472306 -0.833964 -0.681399 -0.311439 1.509940 2.198319 -1.209966 0.427072 2.038999 0.449536 -0.214734 0.526526 0.090460 0.256723 -0.056967 -0.286793 -1.171613 -0.584484 0.028645 -1.012912 1.001511 2.041971 2.785598 0.035642 0.087820 1.217828 0.638363 0.823549 1.259315 0.190889 -0.629821 -0.606529 1.194646 -2.510737 -0.462701 -4.753094 0.124057 -5.134110 -1.514209 -0.145340 2.337869 1.209413 0.747462 -0.233971 2.254116 -0.552387 -0.153302 2.386634 2.435876 -1.248858 -1.067286 -2.233124 -1.984661 1.526271 -1.201601 -0.529347 1.321522 0.751801 -1.826290 -1.023096 0.622701 0.835522 -0.861898 -1.399715 0.462968 1.986851 -1.866780 -1.744783 -0.278651 2.082950 -0.247198 -3.394754 0.129361 -1.896989 -0.101029 0.080277 -0.586504 -1.518807 0.067279 0.710482 -0.963697 -0.587670 -2.041219 1.857244 0.680838 0.581545 0.436605 0.023579 0.342295 2.426514 0.599509 -1.820164 -0.051285 0.564424 -0.718343 0.406612 -2.036854 -1.479985 1.293383 -2.332360 -0.016393 0.983276 -1.425482 -0.840858 0.961003 0.284773 0.978806 6.503848 0.298970 2.450095 1.742882 -1.966358 1.770068 0.003900 -0.168634 0.876660 1.377048 -0.099916 -2.095122 -2.144615 0.849965 2.275096 2.001414 -1.335059 -1.684131 -0.416741 -0.370946 0.488413 -0.067383 0.601283 -0.340353 -1.882125 -0.492471 1.579700 3.549969 -0.232500 -0.375953 1.065441 2.325893 -1.623668 -2.752190 -0.772873 -2.677021 0.212853 -0.083803 -0.184856 1.585375 3.015166 -4.485942 2.271633 0.126397 0.444842 1.218949 0.012570 -1.981739 -4.480664 -0.357527 1.487701 2.974246 -1.128250 0.689556 0.878802 -2.003082 -0.048748 0.303841 0.044961 -0.671658 0.894154 -0.695910 -0.820587 -1.112160 0.606894 -1.382251 -0.686718 -0.204896 1.205461 1.514590 -2.130571 2.182113 -0.675601 -0.640470 0.648115 -0.492653 1.872903 -2.215063 -2.133645 1.178677 0.206937 -0.775652 -1.334801 0.329162 1.836836 -0.086584 -0.116062 -0.583451 -2.325118 1.340554 -1.142593 1.655902 1.003427 -0.449926 1.098334 1.077742 -0.541007 -1.911223 -1.016149 -0.786518 -0.345996 -1.820525 -1.005849 -0.522065 2.016512 1.851428 0.104482 -1.527237 0.165570 2.625836 -1.199264 -1.080153 1.619725 -1.186716 -1.856379 0.650971 2.144437 -2.898697 -0.089480 -1.785876 0.867340 -0.054792 -1.683656 1.352951 0.240261 1.027412 0.032838 0.002638 -0.163713 1.100523 1.307623 0.059009 -0.042986 3.268536 1.196051 -0.686697 -0.318099 -2.188580 0.504376 -2.929519 -2.141039 0.368579 0.603437 -1.660590 0.691025 0.377492 2.197913 0.071358 0.857567 -0.473959 0.150595 +PE-benchmarks/eulerian-path-and-circuit.cpp__main = -7.015999 -3.907722 10.598256 -20.118090 17.917780 8.329071 6.026165 -2.774332 -17.078670 -2.120386 1.052636 -13.709816 -8.873568 24.301145 -7.970091 12.548437 23.127502 4.150581 -7.466781 -2.609868 19.251175 -4.559339 22.169325 11.322039 -20.139596 -2.535045 -0.413240 14.584212 2.301103 18.991276 -2.807735 -11.419245 2.042693 -7.250542 3.014635 -12.959488 6.416352 4.724947 1.434253 -28.304456 4.649147 10.955733 0.041710 -5.517523 -1.551322 5.991425 13.690764 18.311240 -8.417240 3.050737 12.676218 4.235982 -1.732949 5.177999 -0.009616 3.634855 10.364599 -2.987554 -14.295556 -6.143208 -2.658227 -10.068171 7.405526 16.864938 22.382838 -1.857902 2.118307 10.833154 1.913303 6.558781 8.787326 1.688421 -3.657284 0.427775 11.601234 -9.325339 -1.951276 -21.876619 -2.085581 -31.672035 -11.979614 -6.510943 13.209350 7.582984 4.187926 -4.579107 20.871632 -1.270403 -0.138302 17.564725 19.592107 -11.799994 -7.698925 -21.964957 -14.568230 7.026485 -10.582382 -8.956261 7.511818 4.780635 -14.920537 -7.686608 0.272929 5.852087 -5.885655 -4.807115 -1.698586 18.411258 -18.718648 -14.349771 -6.185874 15.107957 -5.241132 -28.158515 -5.713259 -8.394670 8.214441 -0.967174 4.013341 -9.941995 3.622000 14.059973 -7.706984 -3.593601 -13.213467 18.678721 7.316186 1.444105 4.422434 0.827955 -0.265053 14.667099 11.983840 -10.379596 -6.855122 5.373824 -6.697063 1.530741 -11.747310 -5.217122 2.490150 -18.470928 0.831543 11.885955 -9.050646 -3.547484 -5.346924 1.215632 12.263286 45.820996 -2.221353 15.951499 4.835118 -20.018202 9.791906 1.512396 -3.194403 3.924624 7.906501 0.867032 -16.051811 -16.569659 9.623010 15.017503 15.396500 -13.168834 -1.582075 -7.988073 -3.210033 2.116269 -1.639619 11.053017 -5.657610 -15.414509 -4.783702 3.376473 32.606108 -4.333160 -20.196141 13.695474 10.799901 -12.708983 -13.825151 -6.767334 -6.681277 -3.121506 2.616590 -4.533209 11.322272 24.239415 -34.102057 18.980846 2.130689 -4.411058 12.949044 -7.203575 -9.650303 -21.707530 -7.180992 14.929455 22.492354 -5.607043 -1.694796 2.927648 -14.125589 4.821097 1.663903 3.872478 -0.200399 6.749900 -2.394101 -13.126195 -10.927534 -3.911363 -6.850785 0.328063 -5.180506 5.786041 2.345968 -28.717385 20.017147 -6.721930 -3.352474 7.948073 2.152258 14.832922 -15.099832 -20.359373 9.805329 2.316042 -9.243637 -13.835698 2.764449 14.049865 3.193659 3.156201 -8.767712 -21.796975 8.241926 -7.985622 9.652830 6.748020 1.006698 15.160813 8.621408 -6.911181 -14.065205 -13.984096 2.355181 -0.725561 -9.440954 0.503963 -4.205018 18.118928 12.173674 -1.530151 -7.093750 -8.489483 21.836871 -9.612003 -7.087016 14.902665 -8.885533 -14.944692 4.956156 19.954956 -16.620982 -6.489229 -11.264049 5.038435 -7.064254 -10.207855 7.496372 -1.506391 4.384479 2.375957 2.825828 -7.980635 4.141842 6.493906 -1.941765 -4.506842 28.543783 18.375690 -11.751116 3.891078 -12.263421 9.034974 -22.106116 -14.551737 3.025570 -4.037931 -5.542156 9.054141 2.828062 16.142241 0.019694 2.531497 0.044383 -5.489870 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::Graph(int) = -1.065045 -1.091240 0.397794 -2.880868 1.590059 1.126466 0.776590 -1.114850 -2.235303 -0.333864 1.324552 -1.360350 -1.092358 2.626712 -0.833288 1.475699 1.540103 -0.373644 -1.636414 -0.870990 2.513151 -0.978867 2.524549 1.468141 -2.523991 -0.288118 -0.348416 1.965832 0.763159 1.367521 0.353198 -0.049643 -0.269311 -0.934801 0.398762 0.069996 0.481554 0.487506 0.436485 -2.241242 0.554423 1.325369 0.997471 -0.619996 -0.761149 -0.442517 0.942338 2.202528 -0.172108 0.028468 2.385248 -0.212172 0.254844 0.396161 1.091862 0.104403 1.751852 -0.147152 -0.354071 -1.191988 -0.287479 -0.473503 0.887398 2.135641 2.535853 -0.430207 0.000705 1.018199 0.306452 1.410213 1.672500 0.332332 -1.194381 -0.648243 1.663784 -1.357908 0.333545 -2.394678 0.219915 -2.413931 -1.298022 0.206216 1.609627 0.843997 1.033075 -0.034750 2.249198 -0.040309 -1.122410 0.612685 1.333885 -0.613173 -0.760558 -1.308962 -1.725243 0.556193 -1.206310 -0.309625 0.768066 1.323558 -1.732910 0.551646 0.098295 0.998993 -1.158708 -0.611942 -0.292426 1.767619 -1.042306 -0.964747 0.473405 2.254369 -0.333811 -3.206310 -0.858204 -2.341069 -0.197264 -0.902446 -0.012082 -0.444756 0.158106 1.153668 -0.716948 -0.755397 -1.738925 1.345506 1.306281 0.662071 0.108552 0.217000 -0.035735 1.855967 0.307743 -1.159696 -0.664373 0.187220 -0.430331 1.204961 -0.557106 -0.530067 0.523422 -1.505518 -0.003106 0.517016 -0.424573 -0.342089 -0.073026 0.838113 0.543622 5.068871 -0.082308 2.282733 1.133219 -1.190609 1.033270 0.361715 0.382397 1.041877 0.874645 -0.985705 -1.441420 -2.059728 1.419178 1.784429 1.367234 -1.474311 0.167936 0.035512 -0.403690 -0.223470 -0.000430 0.289518 -0.232934 -1.315802 -0.611928 0.798850 3.012731 -0.651842 -2.021661 1.680521 1.186984 -1.618526 -1.404103 -0.755178 -1.279045 0.145343 -0.164566 0.190063 1.598327 2.504372 -2.521467 1.790185 0.073067 -0.349956 2.237067 -0.888105 -1.281493 -2.847615 -0.443117 0.233535 2.158615 -1.008885 -0.723917 0.786472 -1.919088 0.457762 -0.023938 -0.389713 -0.416701 0.986191 -0.699792 -0.522282 -1.071287 -0.750912 -1.111881 0.803972 -0.730959 0.868065 -0.103306 -2.042772 1.708602 -0.314217 -0.592377 0.148617 -0.107267 1.681541 -1.155550 -1.580943 1.102367 0.064346 -0.670224 -1.975229 0.390720 1.331388 0.007606 0.172596 -1.605902 -0.834893 1.423365 -1.842129 1.736998 0.873465 -0.303459 0.438122 1.510713 -0.286050 -1.386871 -0.637055 -0.261359 0.226648 -2.254418 -0.422969 -0.642164 1.821266 0.574819 0.202792 -0.753679 -0.188155 2.553901 -0.801211 -1.332272 0.844582 -1.008693 -1.756873 1.136931 1.594767 -1.346824 -0.107038 -1.598584 -0.262419 -1.243429 -2.015561 1.879096 1.106354 1.912102 -0.495679 0.887995 0.123995 0.569985 0.673676 -0.067161 -0.257990 3.177373 1.193679 -0.938137 -0.923121 -2.208999 1.318985 -1.535737 -1.358586 0.776772 -0.035305 -1.028146 0.538028 -0.298880 2.454892 0.663988 -0.151995 -0.460183 0.048109 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::~Graph() = -0.620037 -0.072142 0.280624 -1.537047 0.982299 1.102020 0.318599 -0.519491 -1.187979 -0.190627 0.059854 -1.467340 -0.378510 1.750326 -0.588266 0.958425 1.987659 0.454969 -0.550191 -0.028971 1.338963 0.122047 1.610034 1.379035 -1.330635 -0.239200 0.334282 0.913683 -0.037378 1.233748 0.015693 -1.724991 0.171410 -0.439934 0.160537 -0.879759 0.392217 0.504416 0.690434 -2.155419 0.440124 0.692259 0.664798 -0.530629 -0.319819 -1.058433 1.363862 1.317597 -0.507610 -0.104060 1.152284 0.948151 -0.296351 0.314754 0.272684 0.312886 0.729029 -0.412972 -0.605002 -0.584283 -0.207989 0.134629 0.292357 1.391910 1.705617 0.284038 0.167354 0.418996 0.180113 0.499922 0.507733 0.090712 -0.430413 0.289673 0.458978 -0.795095 -0.046580 -2.322710 0.130590 -1.826146 -0.761766 -0.296378 0.698629 0.834081 0.606527 -0.229253 1.391590 -0.283999 0.097713 1.029115 1.669618 -0.800025 -0.558373 -1.311901 -1.327799 0.862005 -0.709605 -0.146354 0.317900 0.283586 -1.069664 -0.970779 0.082547 0.626679 -0.485547 -0.528937 0.270027 1.146443 -0.949083 -0.992195 -0.167423 1.153981 -0.383763 -2.132955 -1.117465 -1.159929 -0.554659 -0.121720 -0.463920 -1.327956 0.115209 0.787012 -0.598443 -0.529768 -0.752057 0.862220 0.737791 0.098002 0.124918 -0.267388 0.218368 1.692949 0.194282 -1.060666 -0.016857 0.197891 -0.395674 -0.069568 -1.263534 -0.530080 -0.245941 -1.285882 0.232581 1.175067 -0.846595 -0.407579 -0.358208 -0.121680 0.836880 4.577849 -0.249176 1.246361 0.876186 -1.486394 0.675863 0.090034 -0.293383 0.097976 0.651106 0.329611 -1.111609 -1.290099 0.752205 1.348190 1.204219 -0.519049 -0.287862 -0.423659 -0.342982 0.021075 -0.019936 0.364387 -0.570965 -1.111260 -0.410399 1.011522 2.215070 -0.176904 -1.541319 0.752688 1.655058 -0.678093 -0.736622 -0.485503 -1.599199 0.193791 0.315748 -0.258634 1.106445 1.861998 -2.903847 1.365053 0.543036 -0.196013 1.065236 -0.083766 -1.030443 -1.468170 0.059991 1.213922 1.621523 -0.711781 0.462017 0.167453 -1.206452 -0.065872 0.213246 0.305154 -0.490713 0.470395 -0.050423 -1.078356 -0.890476 -0.187197 -0.665197 -0.776483 -0.699342 0.632990 0.665781 -1.862351 1.631384 0.044158 -0.185708 0.514127 -0.612154 1.033712 -1.476704 -1.456148 0.706254 0.080202 -0.005672 -0.213891 0.236718 1.221164 0.252512 1.030381 -0.734891 -1.194228 0.654806 -0.274924 0.965239 0.513183 0.110236 0.325995 0.214719 -0.193567 -1.066440 -0.912756 0.413851 0.265953 -1.205052 -0.618080 -0.358381 1.336643 1.256794 -0.153749 -1.059762 -0.774768 1.450762 -0.682187 -0.206970 0.901952 -0.908155 -1.293139 -0.193198 1.227088 -1.416063 -0.396372 -0.984209 0.494949 -0.384603 -1.258828 0.647095 -0.034924 0.634579 0.267431 -0.326662 -0.408412 0.567596 0.799480 0.010142 0.272875 1.553570 0.147206 -0.299712 0.105810 -1.310542 0.245087 -1.917671 -1.364696 0.412238 -0.645677 -0.970418 0.232050 -0.144755 1.309086 -0.214985 1.128979 -0.054372 -0.167559 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::~list() = -0.142496 -0.006886 0.317486 -0.347641 0.241475 -0.040258 0.100963 -0.029726 -0.361178 -0.232411 -0.045503 -0.206426 -0.228534 0.424989 -0.219002 0.041678 0.622626 0.325616 -0.055431 -0.247810 0.257306 -0.273929 0.531054 0.566406 -0.458769 -0.001610 0.135242 0.395144 0.195975 0.413706 -0.082882 -0.237680 0.144887 -0.029004 0.206466 -0.512567 0.081224 0.163278 -0.133717 -0.745185 0.082408 -0.027549 0.116181 -0.009135 0.025020 0.375471 0.355149 0.338157 -0.142968 0.186537 0.339810 0.252218 0.022198 0.130993 0.066454 0.095011 0.299905 -0.156286 -0.164571 0.026923 -0.066738 -0.449210 0.072432 0.397067 0.549410 0.018373 0.058044 -0.056211 -0.009367 0.143887 0.203785 0.059641 0.017932 0.035077 0.153559 -0.391200 0.090265 -0.844867 -0.047468 -1.144426 -0.246509 -0.287940 0.377765 0.072227 0.021867 0.109250 0.458548 0.064729 0.119443 0.230264 0.446681 -0.267342 -0.160411 -0.204939 -0.231904 0.241287 -0.232367 -0.043234 0.054130 0.217622 -0.259382 -0.271889 0.243345 0.004048 -0.175770 -0.001443 -0.061295 0.395971 -0.605843 -0.138408 -0.367416 0.113275 0.028203 -0.531540 0.128434 -0.370042 0.480117 0.014608 -0.077975 -0.159828 0.079755 0.260394 -0.122377 0.019327 -0.457445 0.353375 0.054865 -0.084869 -0.003011 -0.049724 -0.055232 0.287008 0.249227 -0.290101 -0.112629 0.185086 -0.308146 -0.089886 -0.462957 -0.089893 0.300432 -0.361981 0.097983 0.092266 -0.276203 -0.236728 0.176608 -0.103888 0.298868 0.871433 -0.040059 0.253188 0.195447 -0.361864 0.125013 0.036087 0.029104 0.233533 0.336383 0.055808 -0.253265 -0.361969 0.030085 0.388586 0.302783 -0.282095 -0.232294 -0.207097 -0.019218 0.098284 0.037901 0.073372 -0.239673 -0.237845 -0.109909 0.050704 0.532419 0.002781 -0.219780 0.030326 0.122766 -0.288281 -0.353513 -0.074941 -0.070793 0.070800 -0.022387 -0.057401 0.206706 0.506824 -1.072461 0.423545 -0.075727 -0.000622 0.198041 -0.064849 -0.113830 -0.593519 0.066282 0.279267 0.528601 -0.035282 0.094237 0.185385 -0.410237 -0.058192 -0.006299 0.276597 -0.217964 0.175504 0.205645 -0.333010 -0.256694 -0.122889 0.014680 -0.082074 -0.070043 0.190397 0.092685 -0.928899 0.386325 -0.201859 -0.129715 0.149259 -0.000866 0.208051 -0.456587 -0.407662 0.135644 0.042754 -0.207567 -0.328401 0.030849 0.390417 -0.225311 0.037852 -0.163602 -0.352471 0.218949 -0.190571 0.157976 0.171171 0.061269 0.423451 0.067987 -0.074834 -0.325217 0.072154 0.014631 -0.284561 -0.099683 0.183056 -0.100877 0.279758 0.595344 0.043391 -0.066233 0.173128 0.581138 -0.256803 -0.242130 0.289340 0.127251 -0.057872 0.349830 0.329463 -0.532538 -0.303885 -0.261666 -0.059285 0.145665 -0.257252 0.322656 -0.255489 0.168395 0.148202 0.105643 -0.245396 0.300422 0.082426 -0.018083 0.003753 0.569341 0.619033 -0.171699 0.201539 -0.268930 0.108235 -0.545025 -0.229004 -0.111149 0.025144 -0.134570 0.196071 -0.123380 0.365630 0.019645 0.142226 -0.059017 -0.033206 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::~_List_base() = -0.394564 0.293662 0.788808 -0.897689 0.989896 0.700204 0.309620 -0.139338 -0.774064 -0.500634 -0.197127 -0.875599 -0.899108 1.294235 -0.517137 0.284531 1.744904 0.499320 -0.242340 -0.244828 0.836370 -0.386640 1.548288 1.281021 -1.188268 -0.046985 0.482152 0.795431 0.067936 1.285005 -0.498619 -1.171529 0.417321 -0.147345 0.412566 -0.966251 0.196897 0.030123 -0.188441 -1.839345 0.172320 0.168721 -0.197479 -0.187667 -0.088967 0.518839 1.445307 0.958686 -0.370387 0.054348 0.719999 0.560143 -0.089287 0.369990 0.270076 0.232645 0.678578 -0.120852 -0.659014 -0.183737 -0.296722 -0.873505 -0.032282 1.079811 1.440937 0.128736 0.102463 0.146575 -0.217407 0.305095 0.216143 0.194950 0.366681 0.349846 0.530696 -0.716087 -0.032881 -1.905382 -0.232593 -2.484585 -0.705614 -0.818229 0.573652 0.271887 0.300177 -0.266614 1.317908 0.018891 0.308396 0.706039 1.709376 -0.975754 -0.463356 -1.006152 -0.635476 0.416353 -0.655764 -0.129787 0.284393 0.015639 -0.876921 -0.967575 0.404887 0.149804 -0.394544 -0.245728 -0.152096 1.142969 -1.275528 -0.450764 -1.045777 0.231731 -0.067877 -1.786709 -0.170936 -0.545223 0.766726 0.129097 -0.211583 -0.943663 0.361467 1.013067 -0.455577 -0.363537 -0.593106 1.254700 0.396031 -0.135476 0.169362 -0.064404 0.182446 1.093651 0.988766 -0.591744 -0.281610 0.177188 -0.737660 -0.203036 -0.972974 -0.171029 0.386742 -1.010663 0.129495 0.843239 -0.712169 -0.252439 0.139487 -0.376039 0.863522 3.140835 -0.357422 0.715351 0.227198 -1.412501 0.751395 -0.018803 -0.329740 0.181930 0.720243 0.488476 -1.241606 -0.969785 0.583047 1.121449 0.850135 -1.081377 -0.159475 -0.571514 -0.034985 -0.136380 0.075992 0.462352 -0.388500 -0.735900 -0.356299 0.517515 2.018433 -0.450233 -1.343386 0.546646 0.401697 -0.350035 -0.947834 -0.342089 -0.319222 0.036917 0.284308 -0.258015 0.674553 1.512907 -2.578988 1.152247 -0.056802 -0.469288 0.956411 -0.214476 -0.356262 -1.076661 0.146066 1.277980 1.365828 0.125603 0.044369 -0.030431 -1.057462 -0.072040 0.113684 0.725409 -0.383333 0.463749 0.266112 -1.159000 -0.910605 -0.604121 -0.176539 -0.385746 -0.439235 0.438270 0.189853 -2.570550 1.569609 -0.198596 -0.179353 0.287581 -0.136135 0.719448 -1.154737 -1.531575 0.531107 -0.110885 -0.560042 -0.554491 0.102408 0.904639 -0.011280 0.352723 -0.603554 -1.575143 0.724881 -0.153180 0.726415 0.423200 0.520528 1.238239 0.419794 -0.439571 -1.024145 -0.538194 0.521804 -0.361268 -0.596091 0.023225 -0.290929 1.000119 1.380072 -0.063431 -0.293543 -0.390013 1.339546 -0.939905 -0.393308 0.956914 0.337007 -0.713725 0.352055 1.090578 -1.094052 -0.882145 -0.715493 -0.077790 -0.207722 -1.091782 0.302513 -0.716003 0.241416 0.622036 0.030834 -0.677706 0.492617 0.241952 -0.072383 -0.096430 1.474519 1.509476 -0.791403 0.483278 -0.885280 0.567217 -1.703286 -1.132662 0.195465 -0.258894 -0.349066 0.259348 0.069424 0.788183 -0.215632 0.298600 -0.119954 -0.321288 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_clear() = -1.162899 1.259698 1.688999 -2.251529 3.340724 3.097066 0.929192 -0.648315 -1.719172 -1.308609 -0.685556 -2.785202 -2.794579 3.861390 -1.220138 1.664510 5.025982 0.712428 -0.670426 -0.139906 2.899773 -1.241704 4.647870 3.100282 -3.286227 -0.232474 1.983458 1.759498 -0.392902 3.626712 -1.875500 -3.902127 1.442039 -1.407650 0.874656 -2.212333 0.691988 -0.407591 0.191107 -4.855528 0.337983 0.269628 -1.325068 -0.716924 -0.879306 0.726026 4.778776 2.844370 -1.182612 -0.280921 1.846741 1.001870 -0.533665 1.166640 0.726192 0.894530 1.406362 0.322220 -2.244385 -0.901193 -0.934189 -2.301616 -0.165944 2.946776 4.079067 0.224160 0.296230 1.676381 -1.080567 0.632215 0.143074 0.594748 1.331939 1.108229 1.898634 -2.628446 -0.770671 -5.491011 -1.211136 -6.813650 -2.017872 -2.488772 0.484370 0.227438 1.705251 -1.043734 3.841303 -0.129405 0.840597 2.151367 5.651166 -3.591887 -1.428887 -3.691622 -1.561575 0.733111 -2.080129 -0.493643 1.524318 -1.034299 -2.672954 -3.420207 1.186932 0.905102 -0.980284 -1.918040 -0.518860 3.324765 -3.204326 -2.026093 -3.240658 0.112546 -0.912016 -5.648064 -0.559188 -0.612151 1.776274 0.604394 -0.334768 -4.029707 1.151899 3.774714 -1.284904 -2.246362 0.045161 3.902384 1.611398 -0.097582 0.965644 -0.019235 1.050765 4.203757 3.932797 -1.260243 -1.002126 0.076502 -2.181166 -0.434199 -2.303331 -0.709256 0.708808 -3.252618 0.088696 3.567299 -1.916469 -0.021252 1.170183 -1.232305 2.606979 10.044188 -1.163049 1.915580 0.183576 -4.826092 2.732566 -0.597238 -1.551381 -0.043204 1.794829 1.792675 -4.825833 -2.782168 2.368824 3.158067 2.434943 -3.928217 -0.528005 -1.855848 0.188967 -0.764109 -0.232393 1.952685 -0.657731 -2.222930 -0.958173 2.015556 6.960402 -2.433391 -4.154811 2.513448 1.095031 -0.750588 -3.790711 -1.408967 -1.767856 -0.260196 1.047498 -0.795908 1.802502 4.490739 -6.660678 3.167166 -0.425706 -2.017944 3.156270 -0.481426 -1.057802 -3.034881 0.392339 4.451137 3.671944 0.550361 0.267840 -0.858692 -2.888364 0.039589 0.427424 1.955566 -0.586456 1.232762 0.084925 -3.783427 -2.999399 -1.369240 -0.789949 -1.559392 -1.049842 1.130020 0.683312 -7.372973 5.234529 -0.325669 -0.406412 1.107192 -0.332196 2.711558 -3.204022 -5.067913 2.055347 -0.620829 -1.192200 -1.077354 0.453805 2.353897 0.812339 0.798011 -1.657374 -5.654230 1.910923 0.005790 2.244222 1.114573 2.050645 3.891916 0.850565 -1.830872 -3.453112 -2.291466 1.434134 -0.610340 -2.140475 -1.316936 -0.619025 3.475429 3.651018 -0.212971 -0.803064 -1.990581 3.395638 -3.710291 -0.771970 3.118728 1.837727 -3.102218 0.028747 3.438074 -2.736397 -2.583220 -1.852760 0.085624 -1.365143 -3.833454 -0.131208 -2.203255 0.295495 2.128770 -0.241116 -1.607226 1.058793 0.789973 0.092744 -0.858352 4.124571 4.463408 -3.007349 0.607701 -2.747118 1.811129 -5.293386 -4.210743 1.425142 -0.363820 -0.950385 0.415150 1.330939 1.934482 -1.020133 0.484308 -0.215170 -1.770985 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/eulerian-path-and-circuit.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.466000 0.022700 0.838434 -1.109126 0.898299 0.483608 0.354006 -0.346676 -1.010175 -0.355498 -0.051847 -0.639407 -0.484336 1.408912 -0.528578 0.614707 1.983590 0.697728 -0.341677 -0.475195 1.224737 -0.908910 1.640088 1.633777 -1.367773 -0.063638 0.737576 0.885671 0.476863 1.141017 -0.789990 -0.622657 0.480288 -0.928257 0.422222 -1.399716 0.208310 0.231506 0.303428 -2.105236 0.244152 -0.372299 -0.124769 -0.215891 -0.228669 0.759499 1.282892 1.070502 -0.537931 0.288676 0.986798 0.308750 -0.162730 0.352587 0.385102 0.689821 0.845916 0.574037 -0.492369 -0.126526 -0.264342 -0.973816 0.452543 1.241085 1.578543 0.080578 0.139644 0.393392 0.073324 0.171500 0.436620 0.196151 0.077367 0.160849 0.656432 -1.928273 0.125836 -2.822594 -0.340340 -2.987599 -0.759848 -0.734976 0.497759 -0.618238 0.665882 0.154277 1.381656 -0.064289 0.273302 0.660197 1.593038 -1.349279 -0.529537 -0.967536 -0.808599 0.400422 -0.709817 -0.117606 0.597052 -0.139783 -0.955216 -1.180479 0.837672 0.511659 -0.491614 -0.530467 -0.030086 1.286749 -1.282838 -0.967051 -1.002516 0.159744 -0.423479 -1.842259 0.341353 -0.967116 1.393467 0.093095 -0.359083 -1.361202 0.270529 1.308987 -0.462055 -0.699432 -0.289132 1.312228 0.554201 0.016322 0.093912 -0.315153 0.068843 1.348774 1.349214 -0.804412 -0.218762 0.306994 -1.151042 -0.163194 -1.262577 -0.451099 0.888055 -1.180538 -0.086877 0.845678 -0.837183 -0.088783 1.691093 -0.103298 0.853577 3.833574 -0.215510 0.918944 0.429860 -1.445524 0.835536 -0.007863 -0.110429 0.506419 0.968954 0.305801 -2.202620 -1.139620 0.416985 1.260652 0.963016 -1.479347 -0.967974 -0.777453 -0.126722 0.204612 -0.113856 0.293745 -0.481692 -0.866363 -0.360299 0.458687 2.328042 -0.721404 -1.129968 0.412571 0.178229 -0.832527 -1.812110 -0.454580 -0.826958 0.225792 -0.077676 -0.235569 0.834311 1.646955 -3.121974 1.242655 -0.690883 -0.533996 1.084160 0.031542 -0.543174 -1.680938 0.178413 1.065876 1.524117 0.081426 0.082176 0.403414 -1.220464 -0.122448 -0.024828 0.707263 -0.528294 0.575489 0.420103 -1.242390 -0.890221 -0.155103 -0.114066 -0.662196 -0.072301 0.589881 -0.162689 -2.699360 1.450751 -0.224424 -0.292392 0.733212 -0.115350 0.776270 -1.368811 -1.549032 0.729556 0.286838 -0.038790 -0.787756 0.088167 1.167668 -0.171662 0.062513 -0.780183 -1.873717 0.505919 -0.541142 0.844925 0.506629 0.304679 1.417336 0.120424 -0.328526 -1.424301 -0.112644 -0.031167 -0.300362 -0.780027 -0.644281 -0.324575 1.236312 1.553602 0.028763 -0.057475 -0.020880 1.573943 -1.411269 -0.416247 0.944730 0.902186 -0.769300 0.308034 1.097850 -1.445042 -0.813233 -0.577122 -0.366555 0.001576 -0.981940 0.683964 -0.646273 0.501075 0.373312 0.248917 -0.329111 0.666749 0.308200 0.249516 -0.009517 1.544042 2.124979 -0.860308 -0.053207 -1.008799 0.592074 -1.764696 -1.192301 0.166004 0.205052 -0.612034 0.383802 0.270910 1.148573 -0.047701 0.173186 0.035770 -0.395356 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/eulerian-path-and-circuit.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.624118 0.335706 1.317333 -1.471664 1.199859 0.592435 0.452520 -0.381653 -1.193483 -0.767042 -0.063913 -1.155330 -1.213651 1.872267 -0.877985 0.213108 2.649784 0.788554 -0.463833 -0.761218 1.475994 -0.809035 2.335291 2.264874 -2.053774 -0.129092 1.071286 1.314689 0.851640 1.382677 -0.722554 -1.031571 0.657104 -0.573891 0.789629 -1.583156 0.290936 -0.097268 -0.157276 -2.783940 0.221135 -0.315014 -0.311301 -0.221426 -0.156940 1.553337 2.029420 1.482265 -0.803465 0.135148 1.450426 0.659523 -0.207798 0.440861 0.375669 0.223872 1.266660 0.638277 -0.674153 -0.227359 -0.372159 -1.411594 0.220611 1.888737 2.272929 0.233675 0.199991 0.272057 0.086186 0.423163 0.404784 0.374489 0.587819 0.642101 0.998376 -1.897447 0.143638 -3.746504 -0.402781 -4.454489 -1.055413 -1.202040 0.934152 -0.736989 0.438207 0.048741 1.979015 0.297471 0.447638 1.141763 2.448508 -1.471716 -0.703171 -1.308340 -1.138169 0.732883 -1.059848 0.213348 0.726240 0.069905 -1.369522 -1.407193 0.712647 0.333449 -0.710957 -0.333253 -0.158918 1.681040 -1.820553 -0.586086 -1.541195 0.086391 -0.028731 -2.757744 -0.030558 -1.257446 2.057860 0.097820 -0.439747 -1.322521 0.341086 1.534624 -0.627890 -0.548291 -0.733841 1.821880 0.782354 0.036145 0.086869 -0.191411 0.319620 1.473028 1.682086 -1.001433 -0.381159 0.208990 -1.517625 -0.285911 -1.688160 -0.296208 1.496991 -1.365063 0.230093 1.050042 -1.115708 -0.652949 1.604695 -0.529029 1.269217 5.033808 -0.381398 1.245806 0.537974 -1.929616 0.844355 -0.036280 -0.314959 0.616269 1.295782 0.688540 -2.286921 -1.523182 0.763932 1.831838 1.238148 -2.003575 -0.636601 -0.768535 -0.213515 -0.187053 0.046233 0.449525 -0.723839 -1.047225 -0.561078 0.961992 2.717143 -0.818483 -2.014712 0.447223 0.487420 -0.626793 -1.778059 -0.428262 -0.370722 0.357573 0.235863 -0.251304 1.224821 2.291757 -4.473493 1.681597 -0.304137 -0.544742 1.400867 -0.041665 -0.771197 -2.014171 0.564402 1.684718 1.843412 0.293738 -0.211589 0.321114 -1.739780 -0.199739 0.132477 1.118795 -0.753870 0.813075 0.623179 -1.486194 -1.490875 -0.722933 -0.086326 -0.509537 -0.383796 0.817183 -0.386799 -4.089847 2.259284 -0.434037 -0.448813 0.318919 -0.500691 0.885604 -2.012887 -2.210777 0.736931 -0.038559 -0.721599 -1.255836 0.074607 1.457918 -0.162071 0.509491 -1.194917 -2.382267 1.087852 -0.695395 1.190817 0.696093 0.733091 2.194086 0.196411 -0.414960 -1.913794 -0.223769 0.583863 -0.394753 -1.216032 -0.280730 -0.417744 1.452558 2.234166 -0.371310 -0.187624 -0.123367 2.003319 -1.802680 -0.904990 1.192107 1.193325 -0.950955 0.816656 1.393322 -1.827845 -1.225441 -1.085615 -0.742155 -0.134755 -1.584215 0.791368 -1.029463 0.589869 0.810096 0.234738 -0.697305 0.948514 0.275186 0.207992 0.112614 1.969883 3.222316 -1.409806 0.281971 -1.576685 1.012315 -2.583414 -1.849587 0.404040 -0.285868 -0.443230 0.374789 0.000122 1.404605 -0.054283 0.047074 -0.228463 -0.122179 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.463993 0.835491 2.354352 -2.791984 2.624463 1.413361 1.055597 -1.025485 -2.193519 -1.678985 -0.147619 -2.329481 -2.622564 3.998178 -1.711008 0.975229 5.546955 1.499880 -0.863061 -1.375730 3.414804 -1.985895 4.998474 4.561399 -4.149559 -0.388764 2.609248 2.478652 1.516917 2.630938 -1.598071 -2.216367 1.792613 -1.951255 1.427265 -3.202815 0.718913 -0.279135 0.134462 -5.535107 0.414907 -1.082301 -0.955412 -0.570832 -0.763083 2.856882 4.319217 3.202020 -1.710615 0.186175 2.891944 1.056906 -0.626111 1.093777 0.782135 0.623824 1.991207 1.523355 -1.533852 -0.670381 -0.888050 -3.094083 0.479790 3.881343 4.723941 0.446057 0.540687 1.299536 -0.213207 0.836773 0.645388 0.745197 1.333903 1.238556 2.252866 -4.661695 -0.158415 -8.070021 -1.388217 -9.391885 -2.242722 -2.569461 1.311834 -2.019289 1.496432 0.367154 4.079792 0.718060 0.906148 2.379503 5.429206 -3.626250 -1.565981 -2.944221 -2.083366 1.346857 -2.401431 0.554171 1.864850 -0.414489 -2.992727 -3.314820 1.645783 1.010748 -1.389427 -1.601331 -0.305297 3.611759 -3.664400 -1.745743 -3.423193 -0.324478 -0.524813 -5.947854 0.284312 -2.200298 4.496928 0.387577 -0.857741 -3.425545 0.775761 3.601647 -1.125292 -1.969542 -0.505739 3.741267 1.783348 0.246762 0.435085 -0.341617 0.742777 3.767155 4.163368 -1.851877 -0.849309 0.144845 -3.332991 -0.429610 -3.347547 -0.837192 3.076143 -3.117142 0.381130 2.716880 -2.342161 -1.260445 4.218009 -1.140782 2.747384 10.509445 -0.760919 2.545054 1.114894 -4.361571 1.819251 -0.579879 -0.831422 1.140011 2.761625 1.520103 -5.264251 -3.254109 1.830759 3.800746 2.648191 -4.505788 -1.784628 -1.842861 -0.139369 -0.580320 -0.214515 1.226804 -1.267717 -2.322317 -1.095389 2.303780 5.908416 -2.413248 -3.953953 1.389322 0.911322 -1.213824 -4.522848 -1.222557 -1.278103 0.613921 0.499765 -0.524086 2.313866 4.888988 -8.802695 3.398177 -0.993598 -1.273931 2.891436 0.206626 -1.773847 -4.400828 1.303913 3.819881 3.621345 0.653310 -0.088666 0.433992 -3.634099 -0.400957 0.248920 2.320518 -1.316692 1.673076 0.972473 -3.235544 -3.389801 -1.018359 -0.185162 -1.499895 -0.335105 1.747900 -0.500235 -8.409729 4.970448 -0.919306 -1.013946 0.967465 -0.958544 2.357773 -4.221930 -4.969807 1.924273 -0.275576 -1.177450 -2.420832 0.375265 3.025503 -0.079601 0.630669 -2.240560 -5.157997 2.129716 -1.185709 2.502333 1.356194 1.879008 4.877878 -0.117859 -1.248436 -4.244992 -0.561262 0.888378 -0.822002 -2.831058 -1.487260 -0.702124 3.419835 4.711669 -0.667494 -0.427210 -0.260737 4.015845 -4.562172 -1.753174 2.814451 3.343185 -2.318592 1.360383 3.111627 -3.739479 -2.695778 -2.026006 -1.332668 -0.490721 -3.684117 1.244663 -2.250724 1.127606 1.774968 0.442120 -1.124481 1.924683 0.747085 0.872911 -0.041599 3.880326 6.943021 -3.365114 -0.113729 -3.318927 1.978278 -5.585163 -4.292484 1.323855 -0.065630 -0.856472 0.683414 0.461720 2.868351 -0.319437 -0.115249 -0.412303 -0.787162 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::_M_node_count() const = -0.146201 0.040284 0.292002 -0.398118 0.333859 0.105448 0.121576 -0.182005 -0.387347 -0.204535 0.061682 -0.411493 -0.247349 0.472844 -0.233109 0.155581 0.600206 0.168044 -0.129551 -0.191152 0.295815 -0.160060 0.608289 0.587019 -0.491068 0.028720 0.117051 0.323779 0.172415 0.374805 -0.131696 -0.302116 0.165315 -0.099672 0.092131 -0.345035 0.041753 0.068651 0.069187 -0.684252 0.078980 -0.002310 0.065598 -0.044255 -0.021597 0.273016 0.458414 0.376163 -0.126118 0.168573 0.392983 0.194231 0.015899 0.125840 0.127433 0.008021 0.386884 -0.113477 -0.162899 -0.070785 -0.068293 -0.316437 0.010481 0.464323 0.570036 0.042872 0.007992 0.034117 -0.002172 0.122287 0.181173 0.117665 0.008292 0.149790 0.162473 -0.381496 0.146023 -0.819076 -0.077652 -0.996137 -0.297116 -0.165797 0.332573 0.099556 0.116538 0.087212 0.502596 0.082339 0.009090 0.218878 0.561079 -0.345028 -0.172420 -0.154884 -0.290036 0.185086 -0.238954 0.066157 0.016198 0.175391 -0.335023 -0.259775 0.230076 0.051504 -0.201589 -0.022920 -0.008619 0.347344 -0.546975 -0.149583 -0.230787 0.126655 0.020990 -0.649536 -0.000335 -0.329561 0.421653 -0.005413 -0.134489 -0.272010 0.086572 0.231249 -0.163959 -0.056427 -0.438648 0.338223 0.170767 0.068221 0.008693 -0.050102 0.102878 0.430333 0.167681 -0.309110 -0.051333 0.019644 -0.200326 0.049775 -0.350905 -0.092845 0.191260 -0.362334 0.137113 0.194813 -0.271634 -0.185472 0.145522 -0.055984 0.201114 1.033030 -0.060409 0.388224 0.247170 -0.448394 0.108494 -0.074865 -0.032589 0.177117 0.269687 0.112297 -0.312151 -0.400142 0.216808 0.465827 0.308854 -0.381421 -0.131378 -0.074845 -0.030843 0.016117 0.071750 0.077262 -0.157043 -0.283422 -0.139116 0.206532 0.671291 -0.053130 -0.289346 0.140147 0.109565 -0.167425 -0.326346 -0.114689 -0.097854 0.107718 0.050612 -0.015989 0.260702 0.563153 -1.101103 0.425876 -0.025648 -0.069313 0.318541 -0.008764 -0.268543 -0.486366 0.054212 0.330597 0.450862 -0.021861 0.078932 0.144745 -0.437948 -0.067854 0.016778 0.162138 -0.235902 0.210257 0.208846 -0.371094 -0.304481 -0.144394 -0.008847 -0.069755 -0.142791 0.262749 0.059373 -0.960739 0.476958 -0.081418 -0.156740 0.055386 -0.123673 0.276270 -0.453056 -0.440699 0.165160 -0.107428 -0.203211 -0.261020 0.033245 0.280466 -0.112657 0.140034 -0.260545 -0.349548 0.255003 -0.179045 0.249610 0.202456 0.095642 0.345751 0.025027 -0.084933 -0.344620 0.006332 0.124583 -0.185683 -0.247755 0.158354 -0.141712 0.331554 0.515950 0.001172 -0.144886 0.075806 0.480783 -0.291314 -0.209098 0.289795 0.150952 -0.262984 0.256031 0.329118 -0.423858 -0.178109 -0.289840 -0.137818 -0.058878 -0.337496 0.298513 -0.105953 0.175574 0.152450 0.053080 -0.207171 0.285954 0.055516 0.002393 0.052131 0.549560 0.590286 -0.181830 0.128407 -0.390562 0.163553 -0.593071 -0.425570 0.095792 -0.024737 -0.235922 0.058837 -0.122025 0.405869 0.034055 0.079591 -0.078488 0.065771 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_size() const = -0.119754 0.318362 0.476579 -0.549043 0.648624 0.773172 0.131318 -0.347139 -0.416528 -0.002495 -0.025390 -0.625362 -0.277113 0.618184 -0.302864 0.244449 0.763370 0.053709 -0.226833 0.030188 0.276833 0.223336 0.753492 0.634987 -0.530020 0.092316 0.165022 0.160946 -0.193135 0.837105 -0.607730 -0.791634 0.108966 -0.028976 -0.036438 -0.212940 -0.102308 -0.190388 0.271589 -0.777797 0.107161 0.161988 -0.220426 -0.161858 0.012833 -0.260343 0.865096 0.387634 0.045170 -0.032123 0.289193 0.417785 -0.054374 0.102277 0.432959 0.278199 0.733819 -0.061633 -0.209915 -0.188917 -0.183244 0.118356 -0.162640 0.597799 0.543784 0.194821 -0.085039 -0.081557 -0.103856 -0.000120 0.002096 0.175035 0.020554 0.524638 0.030795 -0.138511 0.278882 -0.449143 -0.027164 -0.250509 -0.365151 -0.175518 -0.008438 0.337889 0.346349 -0.179562 0.649297 -0.161533 0.069199 0.014180 0.865700 -0.599791 -0.168749 -0.246442 -0.448955 -0.028752 -0.148187 0.041623 -0.297260 -0.169149 -0.477166 -0.499527 0.202393 0.217011 -0.220335 0.128587 0.079050 0.409985 -0.434336 -0.245160 -0.207961 0.198712 -0.156323 -0.836986 -0.530496 -0.236309 0.082770 0.002923 -0.325077 -0.789763 0.264642 0.510326 -0.354228 -0.286355 -0.223000 0.487359 0.375649 0.052759 -0.014293 -0.233547 0.311641 0.697241 0.163009 -0.329784 0.100164 -0.135095 -0.085892 -0.040637 -0.227479 0.009498 -0.429817 -0.379319 0.107878 0.613190 -0.335896 0.210228 -0.260522 -0.092910 0.217852 1.810481 -0.383806 0.502338 0.058214 -0.821095 0.267584 -0.071226 -0.285003 -0.152797 0.181021 0.414479 -0.750146 -0.432066 0.513548 0.623728 0.372226 -0.429510 0.220977 -0.135598 -0.175453 -0.072997 0.192898 0.052260 -0.122762 -0.418888 -0.268251 0.293334 1.246048 -0.195359 -0.928395 0.328645 0.036473 0.061856 -0.020121 -0.155979 -0.214853 0.152366 0.294476 -0.153438 0.465965 0.716456 -1.248517 0.557416 -0.069400 -0.579133 0.742959 -0.044783 -0.266579 0.267057 0.002665 0.623080 0.571981 0.114400 -0.014782 -0.114437 -0.476432 -0.110285 0.042832 0.239225 -0.339980 0.279136 0.388155 -0.839725 -0.383465 -0.406004 -0.038502 -0.302474 -0.517502 0.242230 -0.124796 -1.241291 0.818508 0.376917 0.027903 0.107329 -0.261532 0.259174 -0.452261 -0.667567 0.257388 -0.121866 0.038073 0.172365 -0.076462 0.283848 0.224920 0.567120 -0.605596 -0.646944 0.232168 0.120289 0.533172 0.255962 0.270751 0.192795 0.136457 -0.077024 -0.324431 -0.423450 0.567890 0.123738 -0.405164 0.053259 -0.343309 0.529024 0.503575 -0.070780 -0.256830 -0.540545 0.427575 -0.250462 0.187282 0.335701 -0.034207 -0.618955 -0.286790 0.435137 -0.176155 -0.255304 -0.244829 -0.167769 -0.469237 -0.472412 0.113979 -0.124620 0.130845 0.290410 -0.103069 -0.378826 0.113876 -0.008183 -0.070051 0.201580 0.491070 0.242077 -0.167270 0.324169 -0.489903 0.362866 -0.721196 -0.657554 0.287843 -0.436876 -0.462068 -0.154496 -0.149807 0.430134 -0.135395 0.323641 0.085727 -0.037334 +PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/Iterative_QuickSort.cpp__partition(int*, int, int) = -2.290904 -1.865255 -0.421093 -4.990864 3.312381 4.607136 1.632921 -3.832196 -5.120406 -0.111832 2.322996 -4.969053 -0.557365 5.825547 -2.475429 5.041940 7.078700 0.955518 -3.269175 -0.704209 5.936759 0.442579 7.619037 6.607894 -4.884192 -0.606092 0.465278 2.546731 2.286512 1.150596 -0.281255 -2.011684 2.997956 -5.806995 -1.776313 -3.464504 0.968971 1.411094 4.883385 -6.874784 1.326731 -1.008882 -0.265934 -1.292904 -1.680791 0.225227 3.510503 4.804880 -0.653171 1.419852 4.463783 1.494673 -0.942595 1.333459 1.084414 1.261813 1.336721 0.174192 -1.290603 -3.129525 -0.475839 -0.692218 0.993861 5.242071 6.224018 0.895050 0.083472 3.496560 1.226057 0.973394 2.991504 1.017310 -1.712715 0.892685 1.975109 -7.154092 0.228347 -7.859150 -1.432746 -7.737097 -2.467051 0.183699 2.410670 -0.784049 3.738407 0.788049 5.051054 -0.605058 -1.655167 4.346052 5.615467 -5.399748 -2.168710 -2.858813 -2.844858 1.313546 -3.027323 1.217686 1.864928 0.895998 -4.271001 -2.868939 1.225871 2.923012 -2.035416 -3.867705 1.182782 3.974871 -4.061443 -4.080608 0.448800 3.617333 -1.972224 -8.195741 -2.570517 -4.311726 3.925387 -0.581346 -1.668885 -5.493186 0.461285 3.513507 -1.109208 -3.350771 0.407270 2.634824 3.763703 2.272300 -0.032727 0.284670 1.245480 8.874058 1.763305 -3.240551 0.482906 -0.502329 -1.632267 2.284367 -3.412162 -1.962659 1.146796 -5.146413 1.226934 5.091806 -2.817788 -0.983175 4.804097 1.887438 1.349602 17.626468 0.340195 6.269841 4.817266 -5.349052 0.390621 -2.431093 0.533523 1.952350 1.737522 -0.041890 -8.440810 -4.917733 3.043693 5.239726 3.803139 -5.954736 -1.145922 -0.764162 -0.378908 -0.445196 -0.737841 1.240953 -0.445702 -3.813521 -1.284663 4.467454 9.879842 -2.701128 -0.828010 2.923651 1.712161 -2.755386 -5.284042 -2.682259 -3.235114 1.434201 2.223469 0.642968 3.190607 6.545903 -7.400663 4.215776 -0.844810 -0.102478 3.833782 2.104410 -5.128466 -3.633707 -0.925637 3.089984 4.851617 -1.710819 0.753035 2.555647 -4.841718 -0.466561 1.249097 0.005871 -1.272602 1.938372 2.087264 -2.843135 -3.015143 2.060971 -0.889629 -1.439349 -0.250623 3.650303 -1.116648 -7.350431 4.937753 0.166626 -2.238414 1.600178 -2.184601 5.338583 -4.996406 -4.922476 3.877859 0.122563 -0.583313 -1.957908 1.154369 3.670522 1.870186 2.972717 -4.085697 -5.413900 2.803443 -2.008961 3.955841 1.994392 0.030895 2.883519 -4.148187 -0.868033 -5.751561 -3.133107 -0.290706 1.297483 -5.401313 -1.795925 -0.967363 5.416110 3.798690 -0.158949 -3.981620 0.592721 5.246029 -5.614319 -0.929188 2.977028 5.035327 -5.991970 0.511066 3.750889 -5.518364 0.068096 -1.485344 -1.351010 -1.932145 -4.269297 3.702217 1.070598 3.762492 -0.146032 1.453190 0.545569 2.440967 1.706453 1.679437 1.558226 6.079755 5.491698 -1.282902 -2.539652 -5.406280 2.486760 -6.421523 -6.902379 3.304840 0.058876 -3.789784 0.706806 0.360165 6.292829 1.311863 -0.398574 -0.676615 0.493920 +PE-benchmarks/Iterative_QuickSort.cpp__quickSortIterative(int*, int, int) = -2.255898 -2.998818 -2.792346 -4.649111 2.555378 4.262814 1.787485 -3.682829 -6.684346 0.030037 2.919741 -7.038613 -0.048052 6.108222 -2.000403 5.810743 8.814887 1.225149 -3.912202 -0.718838 7.923175 -1.514602 9.468720 8.180680 -4.338614 -0.488912 -0.902864 2.469078 2.614788 0.323219 0.891603 -0.915307 3.154028 -8.427374 -2.080834 -4.865319 0.922157 2.302372 6.974615 -8.653201 1.646434 -0.139894 1.309533 -1.629499 -2.031089 2.621902 3.051153 4.913849 -0.223444 1.731166 5.867438 0.574587 -0.412145 1.360692 1.025157 1.353744 2.381692 1.209292 -1.763294 -3.359565 -0.297905 -0.736823 1.411469 4.960141 7.800038 0.865037 -0.147281 4.166090 1.912534 1.377099 3.819578 0.837276 -2.337370 -0.006863 1.934106 -9.585610 0.178810 -11.128674 -1.350749 -12.922316 -2.221985 1.110177 3.944438 -1.582574 3.660972 1.052247 4.902533 -1.218545 -2.261402 6.784154 5.490675 -5.053692 -2.474183 -2.725991 -2.667144 1.580005 -2.967089 0.786317 5.944410 1.617762 -4.445274 -1.845239 2.730385 3.155386 -1.979091 -5.510130 1.638107 3.670684 -4.303226 -4.294165 1.375536 5.986426 -1.775028 -10.053418 -2.963840 -5.836076 3.214039 -0.345855 -1.961985 -5.398778 0.431573 2.540135 -1.061993 -3.006536 1.107828 3.758896 4.372567 2.835268 0.067051 0.929527 1.045736 10.551525 1.185512 -3.607031 1.056180 -0.199678 -2.798643 2.999146 -4.444997 -3.341172 2.726713 -5.771679 3.777375 4.523979 -2.921684 -1.291177 7.316794 2.999452 0.798889 22.865839 0.899807 9.515238 7.261358 -5.087320 1.904305 -2.642129 1.091489 2.028088 1.867505 -0.834912 -11.196617 -5.170192 2.871227 5.325604 4.038027 -8.566619 -1.937594 -0.462739 -0.224322 0.430618 -0.886988 1.208662 0.214584 -4.189147 -1.152605 6.082092 14.274322 -2.490279 2.270314 2.909668 1.567806 -4.483195 -9.052820 -2.722060 -3.961813 1.552890 1.507772 0.903041 2.958114 6.539589 -8.838982 4.710043 -1.329655 0.861572 5.477572 3.951722 -7.368184 -8.370240 -2.065809 2.745941 6.943487 -2.499501 0.075682 3.156781 -4.816672 -0.497751 1.143613 -0.731020 -0.988033 1.878787 1.341289 -1.955854 -2.344213 3.204649 -0.749689 -1.033861 0.590465 3.870686 -0.125719 -8.173116 4.659407 -0.132396 -2.505709 0.548569 -1.307317 5.617518 -4.582039 -4.180290 3.622557 0.062865 -1.315846 -3.878039 1.164342 3.652903 1.672655 4.606372 -3.730358 -7.094183 4.386055 -4.127868 4.243759 2.086435 -1.074222 2.276046 -4.923873 -0.875278 -8.427807 -3.290173 -2.324549 0.532019 -6.816427 -0.636443 -0.862749 5.504096 3.171431 0.281840 -6.123888 1.599077 7.072330 -5.786408 -1.614746 3.106852 6.791166 -7.947948 1.313163 4.003635 -7.845747 1.032041 -1.763942 -2.566138 -1.664440 -4.061129 4.134859 1.747845 3.985878 -1.032583 1.409633 1.410491 2.407173 1.983228 1.425389 1.497452 8.544924 7.333236 -0.819662 -2.929896 -5.616666 2.319440 -6.352733 -8.034219 3.083214 1.825312 -5.422782 0.947764 2.467832 8.142747 1.778131 -1.436398 -1.379754 1.063113 +PE-benchmarks/Iterative_QuickSort.cpp__printArr(int*, int) = -0.608681 -0.542805 0.130173 -1.464337 0.789145 0.601956 0.381479 -0.547099 -1.491163 -0.440979 0.388308 -1.338602 -0.286724 1.679243 -0.575714 1.142101 2.129314 0.452111 -0.623773 -0.259267 1.621158 -0.679276 1.883564 1.846718 -1.418705 -0.206189 0.163724 1.046456 0.540223 0.594055 0.133651 -0.710511 0.420563 -1.352666 0.019831 -1.326563 0.395896 0.667348 0.874576 -2.317393 0.360162 0.168602 0.386133 -0.367135 -0.405736 0.196239 0.936180 1.347702 -0.574801 0.396516 1.377386 0.327438 -0.197433 0.329085 0.119468 0.230413 0.259702 0.019385 -0.540433 -0.450362 -0.039449 -0.700752 0.568084 1.385594 1.890734 0.071748 0.121522 0.749780 0.287010 0.359141 0.815169 0.186958 -0.472552 -0.055036 0.709498 -2.048686 -0.036423 -2.968127 -0.119770 -3.096674 -0.815430 -0.171978 1.075425 0.247107 0.675459 0.036199 1.411926 -0.203200 -0.166385 1.415577 1.512360 -1.122445 -0.637008 -1.158359 -1.046566 0.703082 -0.851903 -0.077597 0.706674 0.453946 -1.087425 -0.735388 0.549635 0.647487 -0.540651 -0.919619 0.191391 1.223433 -1.322563 -1.160212 -0.228588 1.031310 -0.325850 -2.257403 -0.090368 -1.329476 0.774925 -0.040901 -0.356442 -1.152850 0.073558 0.823885 -0.378027 -0.562337 -0.815473 1.150072 0.643401 0.380147 0.123659 0.015259 0.188347 1.908385 0.586442 -0.980375 -0.088864 0.263657 -0.767136 0.293942 -1.290875 -0.699208 0.820815 -1.454516 0.061862 0.921166 -0.840176 -0.451654 1.227696 0.263466 0.634955 4.947051 0.166089 1.665344 1.108948 -1.343850 0.819296 -0.218665 0.068555 0.622524 0.709776 -0.044783 -2.173060 -1.312931 0.569454 1.411659 1.131762 -1.382561 -0.865566 -0.320549 -0.136356 0.164396 -0.142273 0.371741 -0.351853 -1.074295 -0.307274 1.003002 2.653488 -0.374234 -0.174251 0.644909 0.863619 -1.129721 -1.940282 -0.527083 -1.205442 0.246981 0.069484 -0.020263 0.903650 1.823489 -2.858622 1.281931 -0.109128 0.161837 0.947508 0.160930 -1.284486 -2.393562 -0.148541 0.890993 1.706230 -0.543161 0.415440 0.675871 -1.300986 -0.045037 0.240077 0.166155 -0.418059 0.569230 0.068748 -0.756680 -0.846340 0.382686 -0.603856 -0.410697 -0.117271 0.820818 0.256675 -1.969182 1.351841 -0.300456 -0.516950 0.437583 -0.390232 1.206725 -1.517392 -1.408520 0.881815 0.136940 -0.372541 -0.898024 0.217426 1.100203 0.066148 0.159535 -0.690083 -1.732300 0.799285 -0.814379 0.964979 0.560831 -0.132999 0.923522 -0.031944 -0.264837 -1.562507 -0.619611 -0.365613 -0.091261 -1.290774 -0.525602 -0.239037 1.344967 1.231077 0.010449 -0.842349 0.338641 1.733843 -1.094425 -0.575973 0.879526 0.362558 -1.333023 0.332696 1.148114 -1.869230 -0.120157 -0.831856 0.022589 -0.116401 -1.109114 0.952835 0.051987 0.835905 0.053124 0.283482 -0.090316 0.703319 0.666963 0.261514 0.151329 2.062826 1.525517 -0.398555 -0.373002 -1.427218 0.435643 -1.841886 -1.625960 0.380968 0.340007 -0.939803 0.425190 0.303349 1.588581 0.264595 0.246723 -0.150092 0.046662 +PE-benchmarks/Iterative_QuickSort.cpp__main = -0.733489 -0.718798 0.004360 -1.968266 1.443109 1.320058 0.817720 -0.833844 -2.634171 -0.461710 0.825385 -2.739208 -0.677861 2.666834 -0.768607 1.684819 3.627898 0.783836 -1.250311 -0.374318 2.246223 -0.465600 3.450142 3.168617 -1.899961 0.072087 -0.472549 0.862903 0.488616 1.096920 -0.144197 -1.382598 1.193409 -1.950472 -0.260338 -1.737669 0.055697 0.625118 1.624313 -3.705023 0.661748 0.677134 0.488530 -0.654211 -0.366881 1.126605 1.871031 1.912850 -0.116866 0.824489 1.799916 0.386511 0.003715 0.576167 0.839393 0.527046 1.082544 -0.071478 -1.144574 -0.804861 -0.389768 -0.734090 0.105759 1.998397 2.824213 0.240367 -0.225198 0.788922 0.494748 0.601594 1.322005 0.387941 -0.125524 0.055431 0.778988 -2.464869 0.004877 -3.752444 -0.394849 -5.218253 -1.385602 0.024842 2.218494 0.209313 0.938190 -0.441849 2.240205 -0.512951 -0.523717 1.924205 2.639798 -1.893374 -1.102743 -1.161239 -1.004072 0.660031 -1.088692 0.022712 1.708773 0.284937 -1.993695 -0.760282 1.101787 0.763181 -0.828429 -1.124973 0.545258 1.894658 -2.089737 -1.284735 -0.328682 2.016864 -0.140792 -3.657643 -0.644082 -1.686656 0.889191 0.241315 -1.122296 -1.724807 0.572602 0.906546 -0.908345 -0.773265 -0.823083 2.032824 1.134336 0.889887 0.175590 0.396894 0.538272 3.291670 0.696397 -1.530999 0.417882 0.058295 -0.787465 0.914746 -1.580543 -1.169614 0.712989 -2.132566 0.950371 1.271755 -1.426713 -0.339121 1.212987 0.891502 0.501457 7.395296 -0.198865 3.219676 2.029788 -2.158224 1.150931 -0.671249 0.127462 0.478740 1.170560 0.104883 -3.187215 -2.017158 1.295606 2.412685 1.745995 -2.838274 -0.325368 -0.345997 -0.130168 0.052479 0.155504 0.461035 0.217575 -1.754654 -0.575847 1.738124 5.101429 -0.833076 -0.598444 0.913202 0.669893 -0.906339 -2.508319 -0.839747 -1.131940 0.571060 0.511743 0.098813 1.380571 2.846122 -4.208797 2.249501 -0.526218 -0.234118 2.238242 0.937390 -2.250967 -2.922703 -0.797492 1.388316 3.014532 -0.366412 0.011455 0.901211 -2.038065 -0.301703 0.271433 0.154184 -0.647106 0.885767 0.497336 -1.227058 -0.929573 0.016612 -0.361180 -0.410687 -0.389352 1.422387 0.603553 -3.878751 2.127920 0.130579 -0.841772 0.126746 -0.353939 1.856043 -1.887258 -2.022051 1.122082 -0.289578 -1.208303 -1.284614 0.145427 1.388411 0.211123 1.369349 -1.289774 -2.656907 2.124274 -1.052399 2.038889 0.997708 -0.272211 1.438654 -0.300147 -0.608520 -2.257455 -1.587809 0.017501 -0.404870 -2.012700 0.319845 -0.711133 2.034575 1.642892 0.196483 -1.861496 -0.125173 2.660016 -2.003914 -0.475736 1.620307 1.305380 -2.229402 0.825578 2.001404 -2.758969 -0.054736 -1.126824 -0.810598 -0.768606 -1.495526 1.420432 0.147391 1.244186 -0.092023 0.343806 -0.210064 0.860269 0.518095 -0.003901 0.421241 3.268915 2.737582 -0.763603 -0.110831 -2.124270 1.192640 -2.626082 -2.723159 0.832893 0.281167 -2.069292 0.267137 0.447377 2.553082 0.385025 -0.329738 -0.745561 0.554387 +PE-benchmarks/find-parity.cpp__getParity(unsigned int) = -0.346057 -0.532619 -0.161023 -0.749911 0.494851 0.017391 0.214890 -0.353021 -0.982474 -0.097480 0.121630 -0.918170 0.185979 0.923261 -0.132649 1.143633 1.374793 0.447770 -0.516968 -0.115138 1.350606 -0.989255 1.346775 1.086036 -0.492248 -0.083494 -0.111642 0.602364 0.083277 0.314662 -0.070077 -0.038405 0.151392 -1.527752 -0.117569 -1.205741 0.175501 0.743195 1.287616 -1.483804 0.306893 0.105757 0.812916 -0.258588 -0.284005 0.224463 0.185671 0.518140 -0.296770 0.367877 0.917864 0.042935 -0.084880 0.209176 0.055657 0.550349 0.428878 0.479852 -0.315324 -0.113455 -0.063750 0.224262 0.553572 0.498568 1.246185 -0.065087 0.047528 0.435697 0.285871 0.178717 0.537983 -0.026808 -0.481105 -0.474371 0.269399 -2.090686 -0.084145 -2.816943 -0.034618 -2.206242 -0.361719 0.091704 0.513322 -0.092242 0.462609 0.293028 0.621755 -0.321452 -0.125978 0.667931 0.544421 -0.584480 -0.329877 -0.546153 -0.569294 0.304187 -0.302665 -0.231480 1.202895 0.271178 -0.486192 -0.465582 0.770330 0.432230 -0.200115 -0.760080 0.193428 0.652368 -0.500474 -0.920405 -0.035369 1.142061 -0.387363 -1.457201 0.719637 -1.015709 0.097026 -0.000501 -0.279918 -0.728073 0.102121 0.392681 -0.284698 -0.372765 -0.465774 0.793207 0.133152 0.139907 0.073895 -0.201282 -0.172327 1.426034 0.184978 -0.653644 0.033713 0.331765 -0.666617 0.128605 -1.018418 -0.632871 0.519819 -0.974534 0.111677 0.276454 -0.462283 -0.010793 1.584715 0.297651 0.128447 3.158966 0.090169 1.695215 0.952424 -0.597387 0.879020 -0.086427 0.170908 0.344759 0.503318 -0.241413 -1.929382 -0.689025 0.131416 0.602707 0.665011 -1.249532 -1.326315 -0.357049 -0.030624 0.475595 -0.170740 0.250782 -0.061986 -0.625599 -0.114051 0.253451 2.418828 -0.164471 0.559542 0.320805 0.530799 -1.142349 -2.095983 -0.337154 -1.597422 0.079551 -0.472149 -0.124763 0.413363 1.013170 -2.257148 0.706486 -0.400928 0.069766 0.689022 0.100657 -1.158330 -2.362124 -0.448771 0.270044 1.361493 -0.411747 0.202382 0.488456 -0.574515 0.002188 -0.076166 0.022383 -0.220256 0.240088 -0.000813 -0.428577 -0.151603 0.504832 -0.353507 -0.476602 0.180693 0.364231 0.644146 -0.961947 0.447734 -0.150837 -0.130500 0.514460 0.177317 0.768556 -0.590063 -0.589004 0.484322 0.198464 0.213103 -0.916384 0.158712 0.673103 -0.205095 0.381763 -0.202521 -0.924380 0.153085 -0.741112 0.473071 0.244523 -0.333262 0.260038 0.303912 -0.150545 -1.287785 -0.328523 -1.084848 -0.220872 -1.002173 -0.162288 -0.106456 0.743020 0.512056 0.317942 -0.592642 0.258625 1.260225 -0.829807 -0.332486 0.557537 0.092177 -0.758474 0.081289 0.703244 -1.202924 -0.040182 -0.303751 0.130804 0.099381 -0.317097 0.555632 0.374876 0.388894 -0.231460 0.134863 0.203187 0.325301 0.515380 0.111068 -0.029517 1.494955 1.040587 -0.056994 -0.286818 -0.748685 0.094791 -0.757068 -0.562738 0.066049 0.652799 -1.348406 0.356109 0.557979 1.291652 0.020502 0.276572 -0.096472 -0.205459 +PE-benchmarks/find-parity.cpp__main = -0.265793 -0.121526 0.459949 -1.104253 0.661608 -0.231743 0.300292 -0.188874 -1.165694 -0.836493 0.619589 -1.719636 -0.961141 1.268909 -0.600537 0.016788 1.550952 0.077626 -0.644981 -0.785084 0.825240 -0.104356 1.618140 1.560277 -1.505247 0.013925 -0.099949 0.910369 0.981642 0.090595 0.854894 -0.655133 0.129348 -0.100708 0.417245 -0.239122 0.166526 -0.118075 0.076479 -1.797691 0.129164 0.792313 0.753170 -0.169087 0.063603 0.936259 1.143022 1.044033 -0.566386 0.252879 1.571949 0.239215 0.148734 0.100174 -0.058182 -0.999861 1.023971 -0.282540 -0.604483 -0.190015 0.029513 -0.538454 -0.140843 1.373125 1.502145 0.093405 -0.064050 0.123123 0.567948 0.854194 0.603704 0.380993 0.287304 0.422473 0.790976 -0.500183 0.025241 -2.837781 0.113327 -3.412570 -0.961078 -0.210280 1.893033 0.437865 -0.333115 0.318613 1.290484 0.410282 -0.195275 0.932399 1.449834 0.085068 -0.593099 -0.625392 -1.018037 1.045900 -0.780456 0.479174 0.561659 1.145159 -1.028706 0.101990 0.088008 -0.116999 -0.555812 0.249652 0.007603 0.855068 -1.067848 0.293434 -0.350260 0.959909 0.884075 -2.138415 -0.166359 -0.922589 0.396517 0.147232 -0.367336 0.173844 -0.010448 -0.161723 -0.598044 0.595114 -1.648791 1.026368 0.395775 0.693860 0.084496 0.468330 0.728677 0.549267 -0.037632 -0.883546 -0.033118 -0.099691 -0.259279 0.446013 -0.887839 -0.301842 1.198298 -0.661594 0.877450 0.073796 -0.673126 -1.401125 -0.091813 -0.193059 0.347548 2.721152 0.075174 1.598463 0.947381 -0.674343 0.325594 -0.179924 -0.082939 0.431595 0.683172 0.223651 0.006663 -1.030610 0.780698 1.329781 0.752161 -1.130685 0.047428 0.481770 -0.240629 -0.089014 0.392386 0.432882 -0.120597 -0.633771 -0.354836 1.256081 1.393609 0.180334 -1.115115 0.078562 1.256599 -0.025990 -0.688292 -0.016704 -0.024259 0.424450 0.390339 0.404961 0.866625 1.546187 -2.827324 1.152994 0.832729 0.524553 0.878848 -0.157898 -1.254320 -2.162936 0.231917 0.751393 1.078726 -0.066024 -0.609591 0.445970 -1.150616 -0.098571 0.241633 0.123779 -0.507809 0.592265 -0.129220 -0.069594 -0.913813 -0.572054 -0.335137 0.600389 -0.532978 0.779008 0.378790 -2.218763 1.287256 -0.582432 -0.654660 -0.824804 -0.838715 0.599118 -1.228029 -0.957288 0.024501 -0.758956 -1.516251 -1.302088 -0.083834 0.442969 -0.017185 0.689833 -0.617493 -0.374059 1.101993 -0.917077 0.957908 0.612110 0.002211 0.896073 0.627349 -0.118648 -0.938396 0.035177 0.304039 -0.343696 -1.156810 0.529186 -0.309036 0.536113 1.003692 -0.514155 -0.767545 -0.128402 1.106240 -0.697487 -1.391158 0.541534 -0.648544 -0.702858 1.247838 0.760034 -1.275435 0.085413 -1.342879 -0.459442 -0.299148 -0.939202 0.726858 0.114635 0.498071 0.246217 0.042651 -0.389234 0.686888 0.132597 -0.145500 0.139576 1.438987 1.536410 -0.695144 0.353105 -1.610988 0.846857 -1.619475 -1.474604 0.506593 -0.321337 -0.622977 0.039129 -0.454331 1.015264 0.376107 -0.401041 -0.900175 1.134479 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWaysUtil(int, int) = -1.728960 -2.392363 -0.927845 -3.893316 2.242383 2.461691 1.307108 -2.216269 -4.744358 -0.453262 1.843435 -4.091893 0.225649 4.607321 -1.275177 4.448597 6.254397 1.129681 -2.433163 -0.537243 5.048521 -1.568280 5.611604 5.009724 -3.138484 -0.395209 -0.482029 1.803519 1.293671 0.636911 0.422784 -1.384277 1.979676 -5.202598 -1.014597 -3.297696 0.703615 2.217939 4.327700 -6.288303 1.324554 0.033282 1.128681 -1.214108 -1.409914 0.550178 2.009051 3.453426 -0.786380 1.563151 3.602843 0.410165 -0.628264 0.947787 0.707576 1.331569 0.665958 0.632267 -1.430383 -1.894928 -0.340227 -0.719803 1.577844 3.280496 4.792008 0.173013 0.003150 2.781288 1.356108 0.952724 2.818278 0.354410 -1.756554 -0.758564 1.491252 -6.627375 -0.526982 -7.870087 -0.720404 -7.990125 -2.162654 0.799756 3.011395 -0.115645 2.395841 0.370528 3.464073 -1.142131 -1.443495 3.881738 3.839104 -3.427861 -1.796480 -2.463403 -2.259541 1.166837 -1.942645 -0.127446 3.175356 0.878765 -3.125032 -1.568115 2.172437 2.098465 -1.264856 -3.611705 1.179154 3.325654 -2.971430 -3.657139 0.648931 4.157429 -1.223688 -6.138680 -0.178328 -3.654663 1.747923 0.005745 -1.540324 -3.749898 0.350114 1.878835 -1.210906 -2.054906 -0.435329 3.154092 2.254128 1.862773 0.232471 0.340514 0.467788 6.449171 1.159501 -2.857078 0.557780 0.248556 -1.323622 1.902961 -3.049140 -2.446092 1.380692 -4.144042 0.985252 2.899959 -2.233277 -0.747375 4.090379 2.021241 0.688285 14.002521 0.525210 5.449059 3.944230 -3.546241 2.206457 -1.268252 0.782518 1.504811 1.710916 -0.811600 -7.237588 -3.746778 1.912736 3.690526 3.109374 -5.004967 -2.407784 -0.687177 -0.278986 0.689522 -0.624960 0.916184 0.087281 -3.097988 -0.760956 3.090529 8.883398 -1.524296 0.750983 2.016763 1.783831 -2.913871 -6.614605 -2.007473 -3.840001 0.872921 0.773115 0.400965 2.264556 4.878823 -6.930424 3.341433 -1.108929 0.490196 3.360198 1.921477 -4.324710 -6.980590 -1.583555 1.923202 5.254414 -1.760033 1.066865 2.345887 -3.280843 -0.179767 0.570071 -0.456179 -0.843870 1.249776 0.277676 -1.579884 -1.366839 2.102209 -1.469648 -1.154112 0.327562 2.547746 0.921536 -4.649063 3.195045 -0.206446 -1.479107 1.393985 -0.799438 4.339514 -3.100003 -3.143140 2.778880 0.431629 -0.539879 -2.281383 0.846940 2.757412 0.576422 1.476508 -2.111956 -4.949884 2.321361 -2.349074 3.097935 1.468399 -1.100757 1.874772 -1.317588 -0.740193 -4.550485 -2.400255 -1.622029 0.235498 -3.827916 -1.814484 -0.619171 3.871340 2.241158 0.598550 -3.506950 0.727998 4.531453 -4.015086 -0.684146 2.575812 2.327634 -4.649680 0.768036 3.287788 -5.106220 0.586870 -1.515687 -0.417657 -0.987310 -2.622457 2.855154 1.382390 2.653805 -1.034017 1.039167 0.753350 1.694429 1.885376 1.001950 0.554028 5.638092 4.405735 -0.659701 -2.096047 -3.785535 1.326144 -4.444099 -4.864573 1.634814 1.582181 -3.712862 0.865126 1.355930 5.139583 0.842462 0.065048 -0.652471 0.494191 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = -0.635804 -0.891037 -0.276848 -1.217690 0.771510 0.662276 0.476792 -0.852175 -1.696257 -0.065957 0.733285 -1.461074 -0.063434 1.620247 -0.542597 1.399303 2.036565 0.466581 -0.857190 -0.378182 1.611548 -0.445477 1.998782 1.881138 -1.177990 -0.102883 -0.175772 0.592422 0.636847 0.253188 0.005475 -0.388058 0.771313 -1.615735 -0.334549 -1.148225 0.178736 0.785207 1.408499 -2.073403 0.411460 -0.028186 0.554946 -0.310839 -0.389390 0.813922 0.685356 1.241622 -0.274043 0.781296 1.272611 0.060827 -0.041989 0.343551 0.295626 0.316106 0.506666 0.383697 -0.468849 -0.630359 -0.191864 -0.374815 0.410597 1.228567 1.768287 0.070561 -0.076876 0.776289 0.454299 0.392252 1.048364 0.255967 -0.359945 -0.222394 0.612993 -1.870709 -0.007691 -2.675686 -0.286871 -3.066014 -0.646137 0.307530 1.207618 -0.341328 0.740781 0.237757 1.371544 -0.176223 -0.642395 1.273044 1.358671 -1.221148 -0.635293 -0.523694 -0.859430 0.382319 -0.731748 0.165373 1.113686 0.466332 -1.138879 -0.658366 0.581347 0.583481 -0.501254 -0.939900 0.307730 1.014055 -1.236994 -1.012588 0.105029 1.126554 -0.260038 -2.078519 -0.150914 -1.323964 0.825689 -0.014560 -0.654273 -1.071777 0.198853 0.489239 -0.454939 -0.570158 -0.220313 0.926475 0.656980 0.697891 -0.019898 0.038731 0.132760 2.050544 0.313639 -1.121504 0.187211 0.075729 -0.478533 0.784682 -1.106364 -0.798441 0.805643 -1.405770 0.551032 0.696718 -0.808280 -0.356522 1.497415 0.659117 0.151965 4.066143 0.153934 1.834793 1.369326 -1.193411 0.477911 -0.477578 0.440437 0.693187 0.733038 -0.266474 -1.842412 -1.355789 0.752443 1.406520 1.063769 -1.746284 -0.684756 -0.062763 0.053865 0.206589 -0.090046 0.289513 -0.077656 -1.031238 -0.275734 0.878776 2.757220 -0.545136 0.191211 0.579030 0.573642 -0.872727 -1.864447 -0.625192 -1.089138 0.372107 0.212040 0.207577 0.799970 1.724615 -2.601669 1.236619 -0.424795 0.215808 1.056186 0.635602 -1.471033 -2.045418 -0.487570 0.537822 1.647943 -0.333093 0.164286 0.948087 -1.282322 -0.083066 0.141770 -0.082819 -0.436990 0.588913 0.312852 -0.572279 -0.519900 0.526689 -0.246601 -0.348231 0.078264 1.019659 0.118938 -1.965953 1.024280 -0.092569 -0.629071 0.280566 -0.153243 1.189131 -1.141454 -1.119437 0.841696 -0.058271 -0.332861 -0.952383 0.270779 0.864453 0.123053 0.557215 -0.821259 -1.572936 0.991575 -0.905238 1.126345 0.542366 -0.407866 0.736761 -0.565466 -0.281471 -1.533267 -0.397514 -0.437301 -0.156394 -1.165001 -0.161880 -0.218992 1.289737 0.882962 0.224774 -1.005912 0.332713 1.633540 -1.178850 -0.371084 0.887879 0.956010 -1.323963 0.627207 1.090979 -1.736374 0.196512 -0.566253 -0.423036 -0.370841 -0.829839 1.193192 0.368649 0.941222 -0.363561 0.412705 0.198110 0.683295 0.543560 0.224536 0.280940 1.991217 1.660639 -0.317427 -0.484456 -1.372308 0.570439 -1.562059 -1.577119 0.545278 0.427026 -1.323798 0.274745 0.234310 1.736578 0.411197 -0.226312 -0.408155 0.374942 +PE-benchmarks/count-ways-reach-nth-stair.cpp__main = -0.298826 -0.502753 0.326119 -0.903023 0.579049 -0.003154 0.340875 -0.306330 -1.197149 -0.260590 0.500086 -0.925351 -0.189961 1.067183 -0.326868 0.616249 1.312958 0.383003 -0.478412 -0.428840 0.851626 -0.546314 1.223961 1.281591 -0.906560 0.073564 -0.106368 0.578021 0.543187 0.382431 -0.129483 -0.199799 0.390157 -0.739699 -0.019320 -0.762725 0.047857 0.402363 0.547746 -1.429927 0.268281 0.031841 0.282363 -0.147294 -0.121100 0.897049 0.567392 0.794682 -0.323364 0.660049 0.906514 -0.134413 0.040693 0.222280 0.289001 0.084845 0.635814 0.323630 -0.396059 -0.167117 -0.120405 -0.612383 0.250055 0.808903 1.144073 -0.044040 -0.088065 0.260830 0.340559 0.264949 0.749328 0.168835 -0.093732 -0.208077 0.504089 -1.122686 0.134045 -2.010588 -0.158071 -2.458256 -0.624139 0.112769 1.224999 -0.296517 0.226558 0.104323 0.914658 -0.016918 -0.350819 0.681207 0.908380 -0.653966 -0.469600 -0.252513 -0.601277 0.367155 -0.472992 0.043123 0.680988 0.358935 -0.759984 -0.262496 0.585356 0.195786 -0.376176 -0.250734 0.142255 0.781496 -0.985188 -0.479965 -0.141518 0.665416 0.119243 -1.262072 0.150541 -0.789166 0.882903 0.048418 -0.461994 -0.364220 0.147358 0.210008 -0.422207 -0.073885 -0.609370 0.756909 0.285607 0.515284 0.031275 0.021425 0.147297 0.919982 0.354853 -0.783542 0.083005 0.079849 -0.343801 0.525166 -0.715992 -0.499456 0.684108 -0.773942 0.287485 0.108026 -0.584902 -0.335296 0.925662 0.465432 0.092438 2.265042 0.100779 1.152554 0.783753 -0.659564 0.384798 -0.130775 0.276740 0.551553 0.604963 -0.175362 -0.912532 -0.864303 0.437049 0.966896 0.701173 -1.246359 -0.522484 -0.022451 -0.005861 0.233363 0.060037 0.122408 0.000634 -0.631869 -0.213190 0.443320 1.573676 -0.222143 -0.469228 0.222652 0.196182 -0.497218 -1.168195 -0.293061 -0.363067 0.305999 -0.025265 0.084140 0.594339 1.155494 -2.285273 0.880317 -0.281368 0.054870 0.765359 0.298032 -0.853814 -1.612726 -0.293375 0.292016 1.123999 -0.000637 -0.059426 0.694199 -0.869451 -0.100683 0.023391 -0.025647 -0.351375 0.433218 0.213261 -0.382110 -0.336566 -0.100189 -0.118864 0.029477 -0.045345 0.677979 0.039761 -1.750422 0.627034 -0.149244 -0.464566 0.083033 -0.086820 0.645465 -0.784400 -0.768949 0.380968 -0.125717 -0.562599 -0.870284 0.093296 0.490513 -0.178000 0.168518 -0.434131 -0.901562 0.751050 -0.724547 0.742585 0.435344 -0.304964 0.772967 0.105075 -0.180293 -0.846714 0.026248 -0.012294 -0.410502 -0.593721 0.072725 -0.256921 0.685410 0.667814 0.171764 -0.341704 0.176358 1.106387 -0.782014 -0.478151 0.639590 0.466055 -0.557681 0.784811 0.763513 -1.156433 0.082135 -0.548680 -0.511982 -0.135920 -0.423815 0.869026 0.201898 0.565938 -0.171432 0.300799 -0.038994 0.517526 0.157995 0.039991 0.090152 1.333894 1.615617 -0.413117 -0.083035 -0.864699 0.449133 -1.023395 -0.926452 0.234851 0.279560 -0.823143 0.198283 0.046087 1.013531 0.298078 -0.289929 -0.341999 0.451739 +PE-benchmarks/min-cost-path.cpp__minCost(int (*) [3], int, int) = -3.936347 -4.210115 -0.856416 -9.046689 5.849215 6.046019 3.142399 -6.223213 -9.162669 -0.815833 4.843769 -9.150279 -0.922444 10.511509 -3.483243 9.227247 11.445167 1.200443 -5.518405 -1.502481 9.633948 1.174971 12.135038 10.432874 -7.970833 -0.692668 -0.063210 3.102698 3.677191 0.786969 0.681455 -4.215828 5.142177 -9.269940 -2.867716 -4.422720 1.089707 3.010763 9.177836 -11.044081 2.616351 -0.397267 0.462895 -2.533200 -2.874209 -0.309504 5.392871 8.268503 -1.662672 3.408585 7.604842 1.620805 -1.513159 2.176878 2.156679 1.190585 0.953038 -0.314434 -2.567230 -4.998358 -0.884655 -0.245395 1.579456 8.495484 9.821444 0.750184 -0.534083 6.177810 2.993238 2.254775 5.539820 1.824774 -2.431512 0.140861 3.660583 -11.588706 -0.858816 -14.644151 -2.086939 -14.506551 -5.090115 2.014891 6.160840 -0.895480 5.590373 0.599424 8.513238 -0.882476 -3.986838 7.328720 9.521517 -8.029899 -3.892020 -4.304211 -4.935070 2.474201 -4.773685 2.138948 3.887058 1.435287 -7.758193 -3.846605 1.727158 4.193613 -3.419551 -6.843937 2.765733 6.855497 -6.236515 -6.603835 1.696954 7.786436 -2.247341 -13.419336 -3.310139 -6.556930 5.274224 -0.693415 -3.741176 -8.080710 0.834334 3.891772 -2.982719 -5.051166 -0.252953 4.095584 6.082031 5.237408 0.271156 1.083094 2.492694 14.448609 2.093040 -6.357511 1.443954 -1.222375 -0.789265 5.224093 -4.988784 -4.130645 2.144570 -8.298216 2.310983 7.105771 -4.919215 -2.242734 7.406307 3.781445 1.025770 26.244141 0.593929 10.945435 8.608217 -8.278891 0.537015 -4.173749 1.162477 3.250695 3.572430 -0.667323 -10.993192 -8.529160 5.962995 9.275672 6.794503 -9.586401 -2.758884 -0.129915 -0.669309 -0.891915 -0.769369 1.882098 0.429313 -6.714242 -2.035536 7.842745 14.802081 -4.207048 -1.955746 4.663298 5.193570 -3.123723 -7.767423 -4.552238 -6.821699 2.511645 4.149160 1.507835 5.889221 11.303342 -13.618014 7.241743 -0.787852 0.572484 5.880316 4.611823 -9.518315 -8.314721 -2.407729 4.575942 8.036748 -3.159830 2.285136 4.722786 -8.140336 -0.662069 1.703196 -1.317707 -2.276957 3.223229 1.983105 -3.579011 -3.994646 3.695746 -2.395164 -2.129972 -0.196230 6.612767 0.864558 -11.768137 7.772895 0.279112 -3.946456 2.270307 -3.800697 10.306009 -7.765431 -7.671320 6.133188 -0.812882 -1.853237 -3.067576 1.935047 5.472061 2.040900 5.098371 -5.793939 -7.379234 5.457163 -3.300275 7.679910 3.621284 -1.196288 4.619354 -6.991151 -1.840978 -7.956237 -5.708286 0.392819 1.914037 -8.958109 -3.136123 -1.765447 8.732449 5.213114 0.072450 -7.501426 0.513287 7.678582 -10.199570 -0.999491 5.471385 6.571984 -9.629558 1.964745 6.890541 -8.819533 1.618085 -3.377500 -1.369367 -3.973998 -6.673499 6.538144 3.433408 6.171845 -1.541423 1.938130 1.453179 4.123969 3.274182 2.300875 2.417277 9.615975 8.781474 -2.549534 -4.834171 -9.444256 3.991838 -10.371972 -11.599170 5.867208 0.145463 -7.305354 0.659327 -0.343892 10.249831 2.126540 -0.683868 -2.334955 2.465362 +PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -1.349039 -1.951328 -0.416016 -2.535563 1.764134 0.837392 0.856268 -1.130199 -3.100907 -0.294042 1.090408 -1.880698 0.398838 3.133524 -0.619453 3.148749 3.480964 0.955516 -1.124545 -0.433826 3.268095 -1.585843 2.811972 2.840575 -2.047785 -0.278801 0.096147 1.008082 0.457353 0.754794 -0.161197 -1.272462 1.052950 -3.482966 -0.518647 -2.325879 0.419731 2.064474 2.957791 -3.669657 0.869052 -0.006428 0.504299 -0.723492 -1.060685 -0.437688 0.839217 2.144876 -1.176168 1.670238 2.234032 -0.024120 -0.553672 0.565688 0.483850 1.379392 -0.318466 0.859067 -0.944494 -0.892104 -0.431347 -0.441521 1.507414 1.825109 2.674508 -0.299486 -0.012001 1.919708 0.663442 0.541241 1.952303 0.203516 -1.094995 -1.376865 1.427012 -4.273071 -0.851710 -5.987059 -0.408465 -5.249599 -1.420430 0.675400 1.963185 -0.464967 1.661495 0.325686 2.473534 -0.993776 -1.040764 2.350536 2.236291 -2.279348 -1.110953 -1.647505 -2.000421 0.649849 -1.090815 -0.491211 1.702674 0.194657 -2.005438 -1.784988 1.196419 1.356057 -0.760006 -2.806279 0.616214 2.256782 -1.997624 -2.892353 0.077914 2.522251 -1.005376 -3.194073 0.135834 -2.085052 1.080310 0.177879 -1.223222 -2.467215 0.290119 1.219582 -0.975432 -1.547059 0.464215 1.577745 1.296452 1.208039 0.325952 -0.306199 -0.030656 3.835109 1.247814 -2.127938 0.186083 0.536869 -0.592719 1.258745 -2.021788 -1.736675 1.029798 -2.590124 0.172796 1.350702 -1.553710 -0.374918 3.597323 1.150705 0.304347 7.402178 0.396342 2.942051 2.257927 -2.154517 1.481572 -0.484787 0.717676 1.351852 1.615648 -0.746264 -3.577086 -2.535179 1.209495 2.338206 2.145405 -2.654626 -2.876691 -0.542385 0.124141 0.942941 -0.506033 0.538619 0.047205 -2.048318 -0.348763 1.283774 4.644004 -1.226461 -0.258861 1.343739 1.981372 -2.065058 -3.903856 -1.380471 -3.842175 0.324580 0.376947 0.033462 1.511092 3.326892 -5.039550 2.104819 -1.208698 0.261586 1.272524 1.288549 -2.351460 -4.724705 -1.120600 0.895326 3.117848 -0.883740 1.383334 1.730911 -2.073581 0.074764 0.196305 -0.289024 -0.814027 1.083394 -0.347603 -1.268504 -0.607336 1.571615 -1.385788 -1.317334 0.434364 1.594615 1.008469 -3.040501 1.650277 -0.091151 -0.818062 1.603805 0.085988 3.017457 -1.900698 -2.416891 2.067385 0.482348 0.199384 -1.113523 0.584891 1.838065 0.072105 -0.080475 -0.812913 -2.930567 1.159580 -1.283327 2.090279 0.950018 -1.120437 1.448462 -0.981289 -0.763907 -2.460484 -0.887802 -0.775096 -0.122931 -1.865756 -2.317410 -0.308936 2.524538 1.459466 0.943896 -1.640760 0.144615 2.957385 -2.600126 0.001213 1.979980 1.083923 -2.224922 0.531519 2.440017 -3.060990 0.362736 -1.133210 0.683226 -0.548863 -1.208480 2.029590 0.809539 1.523563 -0.886518 0.577703 0.548274 1.175221 1.678855 0.732928 -0.027637 3.338297 2.411673 -0.767956 -1.494246 -2.114941 0.516374 -2.651950 -2.547556 0.647609 1.311650 -2.537369 0.597890 0.564043 3.046194 0.394494 0.549614 -0.192086 0.010972 +PE-benchmarks/min-cost-path.cpp__main = -0.771068 -0.737183 0.231222 -2.106631 1.554564 1.114310 0.818142 -0.985806 -2.374519 -0.617763 1.064560 -2.619921 -0.772170 2.664678 -0.775017 1.712085 2.981134 0.411190 -1.208090 -0.404836 1.872773 0.104541 2.969993 2.675522 -1.993063 0.068138 -0.350109 0.769147 0.566792 0.715630 0.126186 -1.538759 1.134312 -1.498483 -0.383726 -0.981908 0.037589 0.511929 1.493626 -3.042134 0.597977 0.679673 0.287743 -0.617448 -0.412135 0.414073 1.768837 1.954372 -0.355549 0.955955 1.672506 0.292229 -0.092813 0.519642 0.746975 0.016165 0.529911 -0.370850 -1.026100 -0.869343 -0.334325 -0.555923 0.003073 2.047668 2.402850 0.136931 -0.297084 0.913546 0.516903 0.657857 1.278159 0.509507 -0.093200 0.089641 0.957561 -1.879607 -0.148852 -3.263638 -0.364026 -4.237649 -1.533125 0.303740 2.300694 0.473981 0.852736 -0.362618 2.244017 -0.261860 -0.789326 1.738750 2.626001 -1.680133 -1.064700 -1.004482 -1.162290 0.721632 -1.108942 0.325235 0.933966 0.397352 -2.035804 -0.653283 0.553470 0.620839 -0.863539 -0.977895 0.567650 1.789765 -1.942201 -1.133350 -0.095540 1.826044 0.063744 -3.291657 -0.756055 -1.233712 0.933265 0.166587 -1.142284 -1.435132 0.470870 0.591768 -0.947040 -0.704199 -0.995001 1.446170 1.056094 1.225188 0.216340 0.471420 0.787954 2.961136 0.495678 -1.535238 0.399442 -0.215910 -0.068335 1.213839 -1.051831 -1.017355 0.413184 -1.926577 0.630293 1.185564 -1.347931 -0.650305 0.549752 0.804867 0.267267 5.756998 -0.102388 2.721733 1.841517 -2.002098 0.509147 -0.830937 0.088208 0.555995 1.076619 0.114619 -1.854097 -1.991858 1.576172 2.467979 1.694697 -2.228713 -0.198534 0.084879 -0.106497 -0.207338 0.246313 0.454189 0.341123 -1.682630 -0.550749 1.742636 3.685596 -0.771874 -1.115006 0.975938 1.122274 -0.290176 -1.513621 -0.816334 -1.116270 0.584744 0.867905 0.222124 1.444516 2.844485 -3.850815 2.047782 -0.077027 -0.039859 1.650345 0.843251 -2.156903 -2.278723 -0.683195 1.269192 2.291105 -0.354952 0.248199 0.889041 -2.032701 -0.246977 0.373383 -0.137232 -0.678600 0.951638 0.312221 -0.981040 -0.983038 -0.005007 -0.561363 -0.216604 -0.481616 1.543483 0.634318 -3.332387 2.043580 0.135435 -0.951385 0.052974 -0.709246 2.116957 -1.879251 -2.027533 1.134119 -0.646311 -1.354561 -0.890428 0.182741 1.095633 0.331219 1.013667 -1.201120 -1.756134 1.927758 -0.699488 2.091332 1.019099 -0.285771 1.437565 -0.453815 -0.636378 -1.470650 -1.470095 0.573838 -0.215330 -1.865906 -0.030406 -0.675930 1.902231 1.427354 0.064605 -1.698937 -0.228208 1.976123 -2.001396 -0.468933 1.533394 0.751693 -1.935092 0.948264 1.902590 -2.125689 0.283806 -1.269153 -0.438938 -1.039243 -1.525249 1.428415 0.515419 1.226943 -0.123540 0.263627 -0.143467 0.904869 0.544514 0.094013 0.442522 2.604608 2.222922 -0.884337 -0.323616 -2.296438 1.148533 -2.565476 -2.676083 1.150058 0.011782 -1.786389 0.032887 -0.191004 2.153506 0.463995 -0.363369 -0.861711 0.927508 +PE-benchmarks/box-stacking.cpp__min(int, int) = -0.506122 -0.740676 -0.092479 -0.956983 0.649825 0.207414 0.291580 -0.471655 -1.190386 -0.148388 0.406858 -0.696922 0.190655 1.115358 -0.282880 1.112725 1.249664 0.371480 -0.400063 -0.264940 1.142007 -0.647114 1.021565 1.083318 -0.746963 -0.080175 0.034822 0.395253 0.199163 0.324390 -0.082814 -0.464549 0.350031 -1.199372 -0.152985 -0.876810 0.101927 0.817838 1.073442 -1.353169 0.312326 -0.045471 0.230859 -0.210599 -0.333802 -0.051947 0.274627 0.730369 -0.372357 0.721092 0.845958 0.060387 -0.158821 0.182223 0.229212 0.528689 0.074788 0.228805 -0.297129 -0.277958 -0.200646 -0.129448 0.562662 0.669301 0.958174 -0.126394 -0.032565 0.604041 0.249997 0.205221 0.756756 0.107795 -0.467309 -0.483222 0.462818 -1.608805 -0.185725 -2.250096 -0.104758 -1.997042 -0.501536 0.288764 0.727434 -0.143931 0.548286 0.231379 0.949589 -0.360150 -0.422999 0.781694 0.772085 -0.787932 -0.366914 -0.442777 -0.758083 0.167415 -0.336955 -0.185220 0.524062 0.214089 -0.696943 -0.617000 0.505273 0.433607 -0.278845 -0.922592 0.202077 0.794928 -0.844851 -0.999061 0.044497 0.952872 -0.316027 -1.100827 0.099641 -0.839065 0.486328 0.039285 -0.512514 -0.850455 0.144883 0.418850 -0.368446 -0.442503 0.060461 0.540371 0.456343 0.428563 0.045953 -0.132273 -0.052393 1.359160 0.382634 -0.822255 0.074896 0.237945 -0.198805 0.448569 -0.726989 -0.602684 0.349131 -0.902411 0.126163 0.402259 -0.562015 -0.174589 1.304047 0.393664 0.051418 2.607624 0.091899 1.083710 0.829862 -0.744184 0.439688 -0.160003 0.338476 0.511116 0.600647 -0.276385 -1.200466 -0.941141 0.462447 0.853283 0.754777 -0.943990 -1.073251 -0.152318 0.043447 0.446368 -0.143730 0.136242 -0.043031 -0.717414 -0.139966 0.328975 1.723028 -0.353570 -0.006057 0.423087 0.650826 -0.774830 -1.373721 -0.468551 -1.362802 0.149362 0.106994 0.033910 0.529739 1.202386 -2.012777 0.780618 -0.487137 0.113236 0.453633 0.468709 -0.803172 -1.800127 -0.475861 0.261413 1.154996 -0.336851 0.546117 0.684322 -0.755124 0.033065 0.030223 -0.068953 -0.397678 0.415001 -0.012869 -0.525673 -0.150429 0.566993 -0.453443 -0.431849 0.130630 0.582824 0.344441 -1.241049 0.549916 -0.002728 -0.265210 0.573103 0.100819 1.073758 -0.641958 -0.810822 0.713610 0.152472 0.078566 -0.417744 0.178091 0.641573 -0.097251 0.001049 -0.327502 -0.967254 0.403576 -0.531552 0.753306 0.345348 -0.462686 0.500581 -0.424639 -0.219763 -0.842052 -0.182769 -0.292690 -0.114670 -0.572793 -0.674023 -0.103517 0.860380 0.528980 0.391663 -0.567662 0.161387 1.110284 -0.871347 0.039877 0.677753 0.391029 -0.770002 0.284146 0.845753 -1.098053 0.146494 -0.432074 0.190191 -0.217347 -0.337142 0.828197 0.311263 0.548466 -0.360405 0.231022 0.142318 0.466226 0.605515 0.240671 0.034637 1.240318 0.941659 -0.183660 -0.471459 -0.737943 0.161761 -0.901649 -0.856758 0.142935 0.523899 -0.958288 0.190591 0.081170 1.165604 0.200931 0.233877 -0.049789 0.080679 +PE-benchmarks/box-stacking.cpp__max(int, int) = -0.506122 -0.740676 -0.092479 -0.956983 0.649825 0.207414 0.291580 -0.471655 -1.190386 -0.148388 0.406858 -0.696922 0.190655 1.115358 -0.282880 1.112725 1.249664 0.371480 -0.400063 -0.264940 1.142007 -0.647114 1.021565 1.083318 -0.746963 -0.080175 0.034822 0.395253 0.199163 0.324390 -0.082814 -0.464549 0.350031 -1.199372 -0.152985 -0.876810 0.101927 0.817838 1.073442 -1.353169 0.312326 -0.045471 0.230859 -0.210599 -0.333802 -0.051947 0.274627 0.730369 -0.372357 0.721092 0.845958 0.060387 -0.158821 0.182223 0.229212 0.528689 0.074788 0.228805 -0.297129 -0.277958 -0.200646 -0.129448 0.562662 0.669301 0.958174 -0.126394 -0.032565 0.604041 0.249997 0.205221 0.756756 0.107795 -0.467309 -0.483222 0.462818 -1.608805 -0.185725 -2.250096 -0.104758 -1.997042 -0.501536 0.288764 0.727434 -0.143931 0.548286 0.231379 0.949589 -0.360150 -0.422999 0.781694 0.772085 -0.787932 -0.366914 -0.442777 -0.758083 0.167415 -0.336955 -0.185220 0.524062 0.214089 -0.696943 -0.617000 0.505273 0.433607 -0.278845 -0.922592 0.202077 0.794928 -0.844851 -0.999061 0.044497 0.952872 -0.316027 -1.100827 0.099641 -0.839065 0.486328 0.039285 -0.512514 -0.850455 0.144883 0.418850 -0.368446 -0.442503 0.060461 0.540371 0.456343 0.428563 0.045953 -0.132273 -0.052393 1.359160 0.382634 -0.822255 0.074896 0.237945 -0.198805 0.448569 -0.726989 -0.602684 0.349131 -0.902411 0.126163 0.402259 -0.562015 -0.174589 1.304047 0.393664 0.051418 2.607624 0.091899 1.083710 0.829862 -0.744184 0.439688 -0.160003 0.338476 0.511116 0.600647 -0.276385 -1.200466 -0.941141 0.462447 0.853283 0.754777 -0.943990 -1.073251 -0.152318 0.043447 0.446368 -0.143730 0.136242 -0.043031 -0.717414 -0.139966 0.328975 1.723028 -0.353570 -0.006057 0.423087 0.650826 -0.774830 -1.373721 -0.468551 -1.362802 0.149362 0.106994 0.033910 0.529739 1.202386 -2.012777 0.780618 -0.487137 0.113236 0.453633 0.468709 -0.803172 -1.800127 -0.475861 0.261413 1.154996 -0.336851 0.546117 0.684322 -0.755124 0.033065 0.030223 -0.068953 -0.397678 0.415001 -0.012869 -0.525673 -0.150429 0.566993 -0.453443 -0.431849 0.130630 0.582824 0.344441 -1.241049 0.549916 -0.002728 -0.265210 0.573103 0.100819 1.073758 -0.641958 -0.810822 0.713610 0.152472 0.078566 -0.417744 0.178091 0.641573 -0.097251 0.001049 -0.327502 -0.967254 0.403576 -0.531552 0.753306 0.345348 -0.462686 0.500581 -0.424639 -0.219763 -0.842052 -0.182769 -0.292690 -0.114670 -0.572793 -0.674023 -0.103517 0.860380 0.528980 0.391663 -0.567662 0.161387 1.110284 -0.871347 0.039877 0.677753 0.391029 -0.770002 0.284146 0.845753 -1.098053 0.146494 -0.432074 0.190191 -0.217347 -0.337142 0.828197 0.311263 0.548466 -0.360405 0.231022 0.142318 0.466226 0.605515 0.240671 0.034637 1.240318 0.941659 -0.183660 -0.471459 -0.737943 0.161761 -0.901649 -0.856758 0.142935 0.523899 -0.958288 0.190591 0.081170 1.165604 0.200931 0.233877 -0.049789 0.080679 +PE-benchmarks/box-stacking.cpp__compare(void const*, void const*) = -0.502784 0.237857 0.331733 -1.576385 1.767178 1.809267 0.531734 -1.374452 -1.197951 0.324622 0.501067 -1.705106 -0.493168 1.676758 -0.776131 1.195497 2.070479 -0.069180 -0.763156 -0.279492 1.228762 0.640807 2.372911 1.910988 -1.531070 0.043433 0.426514 0.360623 -0.050431 0.558986 -0.917083 -1.283067 0.755657 -1.178034 -0.517806 -0.284169 -0.018284 -0.408181 1.590466 -1.858691 0.243505 -0.751044 -0.785123 -0.297417 -0.449589 0.013948 1.852503 1.291594 -0.047812 0.251182 1.197394 0.596253 -0.343528 0.372070 0.721380 0.368616 0.939800 0.416799 -0.402783 -0.805160 -0.290244 0.612228 -0.165005 1.678558 1.663813 0.524941 -0.229402 0.819757 0.216693 0.090539 0.320146 0.499009 -0.111897 1.093735 0.364743 -1.695253 0.065698 -2.496860 -0.474455 -1.640084 -1.036292 -0.147617 0.178480 -0.645734 1.149105 0.209423 1.711576 0.263566 -0.273553 0.794158 2.209278 -1.793165 -0.640342 -0.661454 -1.046260 -0.009673 -0.483635 0.861554 0.297069 -0.093104 -1.455599 -1.161961 0.385274 0.624145 -0.605007 -0.934385 0.457954 1.107875 -0.579366 -0.831868 -0.050914 0.933026 -0.523711 -2.521272 -1.057045 -0.781703 1.255285 -0.144622 -0.703244 -2.037034 0.268379 1.194154 -0.871800 -0.927824 0.380147 0.774615 1.534281 0.630059 0.021951 0.007718 0.895709 2.674278 0.293760 -0.993395 0.219771 -0.547033 -0.108566 0.498905 -0.742502 -0.155361 -0.228808 -1.294724 1.020795 1.619025 -0.838696 -0.079039 1.073691 0.170893 0.374832 4.960082 -0.464908 1.754414 0.756256 -1.997577 0.175444 -0.947405 -0.259767 0.109115 0.623861 0.338677 -2.273966 -1.462649 1.368205 1.727026 1.010246 -1.973697 -0.019867 -0.146180 -0.507707 -0.524877 0.055522 0.337122 -0.341392 -0.630287 -0.509183 1.510088 3.228871 -0.869960 -1.395490 0.948102 0.710508 0.203429 -0.707176 -0.802538 -0.857972 0.462084 1.098493 0.290284 1.283433 2.003339 -3.195555 1.162239 -0.177687 -0.603345 1.394515 0.781832 -1.370057 -0.130271 0.020321 1.376070 1.194798 -0.013953 -0.050909 0.193663 -1.318900 -0.190863 0.419489 0.202147 -0.603736 0.633791 0.702165 -1.571975 -0.944738 0.045673 -0.354569 -0.397179 -0.586097 1.008178 -0.614871 -3.420716 1.924606 0.580649 -0.464698 0.326186 -1.206665 1.570869 -1.260512 -1.631895 1.006055 -0.322337 0.265811 0.114501 0.119099 0.785731 0.451592 1.894951 -1.591381 -1.521150 0.810475 -0.062668 1.415029 0.696592 0.486875 0.852102 -1.762021 -0.635900 -1.341739 -1.445923 1.225710 0.857705 -1.645059 0.187230 -0.583944 1.536634 1.100699 -0.061314 -1.242067 -0.580542 1.076292 -1.683143 0.200855 0.898641 1.224800 -1.917519 -0.284761 1.109868 -0.919944 -0.192944 -0.475803 -0.527222 -1.203183 -1.448896 0.575122 0.174452 0.746128 0.173689 0.090868 0.018362 0.776707 0.103904 0.692515 0.644780 1.311318 1.497446 -0.634095 -0.431672 -1.695626 1.059444 -1.945780 -2.384048 1.284400 -0.680863 -1.115769 -0.286378 -0.412252 1.467995 -0.208580 -0.012351 -0.254058 0.209821 +PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -9.698949 -6.404101 -1.115782 -22.975941 18.059342 27.376316 7.685130 -18.086633 -23.521020 -0.854301 11.942384 -27.269489 -4.281782 26.910201 -11.141639 23.272237 32.710147 0.762557 -16.111598 0.754359 25.447412 6.611930 35.324534 30.122773 -20.767519 -1.831186 -1.121964 13.182987 4.708580 6.557413 -0.757775 -13.610849 12.495009 -25.292065 -12.980472 -10.690006 3.041077 3.218057 22.765689 -30.934533 5.708746 -1.099905 -7.470187 -6.820228 -7.965400 -7.845760 18.988883 21.344068 -0.411170 5.271031 18.440711 6.331884 -4.724441 5.813960 6.451889 3.585700 6.595474 -1.829408 -7.286773 -16.105072 -2.796243 -0.499023 1.125791 23.547163 27.597731 5.807146 -1.099236 15.412426 2.752115 4.130131 12.356779 5.034332 -9.359934 7.421624 8.294209 -27.026461 0.863285 -28.874923 -6.235972 -22.879118 -13.169126 3.276749 11.584962 5.027551 17.419662 1.885526 22.581654 -4.957845 -9.060714 21.822601 27.850436 -24.204669 -10.189059 -12.733672 -13.579007 4.620499 -12.628485 6.194522 2.961564 4.438693 -20.612165 -10.641090 4.173027 13.394353 -8.741229 -16.743843 6.198782 18.342177 -17.441194 -17.910632 4.636050 20.148840 -7.587590 -38.436539 -21.412348 -16.277025 14.421315 -1.237116 -9.277579 -25.798078 3.782113 14.412852 -5.075099 -15.043111 4.118877 11.743998 16.853285 12.357364 0.857899 3.109785 9.358085 42.256389 5.724809 -12.439167 4.382175 -5.854810 -2.004042 12.949497 -10.965116 -7.401298 -6.257504 -22.832770 7.514738 26.817918 -12.577192 -5.097565 8.615210 10.264614 3.904475 86.872001 0.562285 30.592079 21.200444 -25.790631 1.995759 -13.380026 0.094310 5.162625 4.298960 1.728227 -40.044229 -21.344673 18.000837 24.572789 17.054986 -27.923540 0.588864 -0.666318 -1.655473 -3.831281 -0.937274 6.487674 1.949405 -17.567064 -6.324806 25.033071 49.254791 -11.957664 -11.111826 16.996759 5.116339 -7.913318 -22.655127 -12.080331 -11.171896 6.074119 16.250024 2.455146 13.737644 30.066402 -30.190472 18.510427 -0.258818 -2.034978 21.787941 10.874732 -25.180024 -10.646366 -6.627436 15.952613 22.677448 -6.444297 0.746270 8.063075 -20.974047 -2.545114 8.685849 -2.322150 -4.793444 9.935216 7.973849 -14.464793 -14.551314 5.570487 -5.891659 -3.998217 -5.758394 16.815386 -7.110989 -30.913574 24.372029 5.226511 -9.856301 4.761238 -12.536885 27.076452 -20.348910 -24.183307 18.696305 -3.766724 -6.300713 -5.562636 4.544114 12.934405 15.811292 15.924041 -19.429113 -23.205715 13.868085 -5.910579 20.358757 9.322776 1.121011 11.355504 -14.988744 -5.379814 -24.108372 -20.134913 6.799177 7.896876 -26.562924 -10.380014 -5.977839 24.681047 14.097768 -0.976534 -22.712017 -3.814145 23.201599 -23.545356 -3.118079 13.887837 17.052677 -31.241591 -0.536819 17.816167 -22.419816 3.132951 -7.220374 -5.946297 -14.513698 -20.872131 13.600409 7.995412 16.331440 0.493663 4.938864 1.561019 8.464756 6.929382 8.339497 7.571613 28.037781 21.243379 -5.196760 -9.958770 -25.876626 12.596858 -28.986445 -34.781172 18.883934 -1.476793 -17.396920 -0.369652 0.883728 27.322405 5.612524 -3.236975 -2.932085 4.424134 +PE-benchmarks/box-stacking.cpp__main = -2.024000 -1.309224 0.239311 -5.062806 4.120106 5.480222 1.801892 -3.488198 -5.441153 -0.597679 2.592190 -6.336115 -1.441704 6.154262 -2.401697 4.733700 7.500610 0.415161 -3.428633 -0.035552 5.298008 1.077462 7.899011 6.885895 -4.777640 -0.197318 -0.477745 2.947418 0.948095 1.913418 -0.259696 -3.374675 2.741126 -5.004973 -2.441428 -2.440202 0.503927 0.641005 4.415689 -7.286495 1.257551 0.387707 -1.341440 -1.490972 -1.500406 -0.960543 4.561567 4.766455 -0.202038 1.451430 4.060734 1.182416 -0.767057 1.310180 1.620468 0.578860 1.760267 -0.489542 -2.021190 -3.171728 -0.729303 -0.743114 0.018037 5.242597 6.242157 1.143783 -0.372150 2.907800 0.539905 1.056683 2.802754 1.175672 -1.536751 1.517132 2.027734 -5.359861 0.207539 -6.614066 -1.297520 -6.306777 -3.253023 0.525912 3.487097 1.422178 3.390816 -0.023081 5.241436 -1.043684 -1.869854 4.750353 6.475201 -5.174569 -2.426567 -2.793333 -2.998635 1.220391 -2.843171 1.185268 0.913058 0.997721 -4.756042 -2.189502 1.177661 2.590802 -2.006722 -3.128790 1.258989 4.279190 -4.319232 -3.624621 0.438566 4.359487 -1.112053 -8.590834 -4.339116 -3.370538 3.063390 0.055565 -2.278626 -5.178737 1.048425 2.870622 -1.397833 -2.869724 -0.026452 3.121334 3.362510 2.734746 0.344435 0.843198 2.157522 8.822106 1.403192 -2.895012 0.953769 -1.126978 -0.485343 2.870004 -2.468739 -1.756958 -1.079483 -5.030091 1.685594 5.278665 -2.993961 -1.239679 1.256045 2.217349 0.915373 18.507836 -0.035151 6.852786 4.537774 -5.684946 0.891887 -2.725895 -0.038269 1.116668 1.338604 0.522417 -8.101141 -4.757810 4.034682 5.706985 3.892150 -6.247163 0.257147 -0.102609 -0.272864 -0.787576 0.142570 1.453202 0.601793 -3.978471 -1.432238 5.313365 10.910421 -2.497110 -3.087367 3.530636 1.118947 -1.441040 -4.875580 -2.450418 -2.137791 1.345892 3.297936 0.454385 3.122800 6.849652 -7.580244 4.446252 -0.067551 -0.571088 5.025990 2.177639 -5.479987 -2.992588 -1.507969 3.611577 5.393038 -1.005025 -0.060598 1.745609 -4.801241 -0.629146 1.781162 -0.323312 -1.217578 2.377033 1.581420 -3.257443 -3.227616 0.424665 -1.271616 -0.690766 -1.540394 3.742393 -1.046229 -7.544355 5.496787 1.066626 -2.273399 0.699624 -2.515627 5.666893 -4.617590 -5.539553 3.809619 -1.186617 -2.216034 -1.590277 0.781648 2.740226 3.102957 3.216299 -4.070954 -5.191844 3.664292 -1.376807 4.733069 2.230155 0.156685 2.968635 -2.172807 -1.402205 -4.998750 -4.322488 1.815121 0.989279 -5.576985 -1.676276 -1.530593 5.308521 3.395104 -0.113402 -4.769576 -1.071458 5.330989 -4.996722 -0.992794 3.361025 3.167561 -6.408093 0.519076 4.237411 -5.116713 0.554567 -2.061169 -1.478954 -3.136596 -4.510500 3.038059 1.433912 3.429547 0.245584 0.973779 -0.062821 1.903983 1.336666 1.401052 1.475312 6.545138 5.139654 -1.536215 -1.493951 -5.778260 2.964696 -6.549704 -7.548783 3.864533 -0.269269 -3.957930 -0.080604 0.148344 5.820800 1.222994 -0.946766 -1.007552 1.288730 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -7.579468 -8.310283 -6.312658 -16.763550 11.571042 15.370772 6.608968 -11.796646 -19.648479 -0.444920 8.758191 -20.967461 -1.140029 21.897579 -5.556430 21.317189 27.587067 2.993644 -12.393938 0.468368 21.179502 -2.173937 26.104541 22.353528 -13.606752 -1.364054 -3.467270 8.187545 2.597031 2.132165 2.788801 -7.261448 9.725598 -23.968635 -8.683290 -10.966672 2.890913 6.694400 18.671927 -26.787691 5.442399 1.455831 3.110677 -6.544044 -8.106273 -4.760447 11.536072 16.913085 -0.157682 4.817294 12.670851 0.921701 -2.116423 5.192705 5.000010 5.225122 1.166455 -0.759786 -8.075537 -11.450274 -1.458368 -2.567005 4.067312 16.076826 20.013796 3.468686 -0.981113 15.037441 3.373832 4.269055 11.205610 2.503322 -9.812815 -0.241449 6.544266 -25.871134 -1.105796 -24.018234 -4.790302 -26.490695 -10.321811 3.607996 12.233952 1.698149 13.860170 2.839718 16.571107 -5.482711 -6.793989 18.421116 19.937165 -17.829623 -9.072364 -11.677169 -9.015128 5.218754 -9.160054 1.254311 12.119733 3.940005 -16.044268 -5.830652 7.029365 11.272125 -6.193597 -16.196538 6.243237 14.637564 -13.009213 -17.162492 3.969477 17.125584 -7.079205 -28.507005 -8.518566 -11.306056 5.905882 0.334807 -7.126355 -19.869639 2.612250 9.263409 -3.824695 -11.575361 1.338215 10.104648 9.856517 9.187208 2.390597 4.696901 4.933011 33.041606 4.479381 -10.482586 3.992665 -1.456911 -2.339858 10.173425 -7.969297 -11.352456 -2.199580 -20.751832 4.619735 17.144782 -10.381686 -3.435733 9.878701 10.619115 3.106974 62.441138 2.270595 23.997177 18.163103 -18.120945 5.392331 -9.858303 1.251325 4.233858 5.595801 -1.955857 -29.744094 -17.226590 11.250952 18.506052 14.486018 -20.031564 -6.171854 -2.547871 -0.827885 0.750175 -2.426017 5.283275 2.658711 -14.051665 -3.701492 17.643096 38.512270 -9.287937 0.047023 12.997982 5.944859 -8.875342 -24.994466 -9.937709 -15.222682 3.555613 5.040061 1.929668 9.453857 23.010631 -20.878805 15.872813 -2.990617 1.399988 15.688731 8.673510 -19.845555 -22.537574 -8.159024 10.989863 21.446289 -8.798456 1.200217 7.359899 -15.588272 -1.667981 5.411729 -2.966662 -2.260064 7.000870 0.475758 -7.507808 -8.525299 9.628008 -5.751795 -3.921264 0.303135 12.524357 1.564252 -16.361871 16.780142 1.698529 -7.830922 5.968153 -5.586363 20.227929 -14.899357 -16.994038 13.890813 -0.566592 -4.405894 -5.087641 3.828864 11.400450 9.143157 6.416165 -10.409744 -17.076394 11.864715 -7.159177 15.568242 7.271662 -2.501754 7.874218 -8.321840 -6.334484 -16.382806 -14.424275 -6.375131 2.633964 -18.892931 -9.439324 -3.893112 19.781023 10.262109 2.352457 -18.197800 1.443999 19.422218 -17.447111 -4.086376 12.521281 7.871638 -22.971744 1.035976 15.784639 -21.008715 3.484862 -5.957080 -2.476082 -7.882049 -14.558239 10.680046 6.194220 12.018538 -2.318855 2.662775 4.373878 6.941131 7.599353 6.627328 3.963455 24.167550 12.311050 -3.549525 -10.319121 -18.814480 7.007603 -21.213251 -23.416486 11.712263 6.881742 -15.073087 1.992092 5.570413 20.793445 3.945804 -3.899195 -3.755290 1.551227 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = -7.591662 -8.043868 -4.780011 -18.117368 12.751246 15.504335 7.134483 -11.309464 -21.369448 -1.622605 9.413854 -23.961075 -3.106430 23.632956 -5.958159 20.614041 29.461709 3.019479 -13.137149 0.287920 21.114632 -1.715782 27.771398 24.218968 -15.053736 -0.816690 -4.733444 8.858329 2.491833 3.442680 2.964900 -9.163294 9.715297 -22.410507 -8.183116 -10.697643 2.325493 6.102418 17.736031 -29.077061 5.653819 4.085444 3.452401 -6.913837 -7.448664 -3.245451 13.723030 17.932456 -0.411934 5.155666 13.467126 0.813345 -1.488634 5.269242 5.834619 3.706672 2.629460 -1.264676 -9.354459 -11.411105 -1.824961 -3.493348 3.015044 17.451325 21.499224 3.656600 -1.692871 13.849784 3.705192 4.944204 11.662253 3.130459 -8.494356 0.428047 7.303309 -23.869874 -0.663024 -24.926605 -4.225468 -29.628807 -11.909865 3.723987 15.700233 3.884535 12.720413 0.762541 18.284494 -5.519879 -7.152730 19.514434 22.226378 -17.660698 -9.814029 -12.111175 -10.053635 6.009445 -9.599379 1.455173 12.345950 4.594192 -17.622385 -5.067524 6.999363 10.427061 -6.858550 -14.449782 6.402711 15.759843 -14.491550 -15.978083 3.357952 18.408621 -5.042356 -30.730815 -9.709832 -11.474363 5.239820 0.876811 -8.376141 -18.864697 3.316753 8.198543 -5.048028 -10.205717 -2.135253 12.140655 9.823167 9.988549 2.645246 5.516977 6.174043 32.844324 3.943327 -11.436940 4.448720 -1.803071 -1.828499 10.968885 -8.130937 -11.519024 -2.009634 -21.151200 5.071032 16.464589 -11.360827 -4.135072 6.500785 10.859798 3.011561 64.977348 1.633166 26.001069 18.780522 -19.038444 6.727567 -9.602043 0.757561 4.024761 6.328937 -1.096187 -28.949663 -18.162366 12.837927 20.568264 15.449164 -21.168664 -4.291710 -1.538197 -1.073182 0.044558 -0.946861 5.407929 3.399314 -14.989605 -4.262396 18.846136 40.419089 -8.837419 -3.043761 13.138812 6.521354 -7.455648 -24.187927 -9.564111 -13.919819 3.908214 5.560957 1.892279 10.740660 24.867366 -24.509008 17.596266 -1.779477 1.036976 17.577179 8.305145 -21.108041 -23.870102 -8.624944 12.080355 23.138295 -7.942589 -0.097945 7.173489 -16.914961 -1.980843 5.802838 -2.942987 -3.030916 8.003194 0.249947 -7.854324 -9.180878 6.775207 -6.312347 -2.857184 -1.623579 13.412195 2.246519 -19.165005 18.440502 2.181564 -8.324098 4.040089 -6.290499 20.230438 -15.938467 -18.410084 13.416771 -2.291921 -7.723924 -6.212882 3.256037 11.133757 9.250433 7.164926 -11.211493 -17.979078 14.677376 -7.594964 17.533757 8.216851 -2.616323 9.049380 -4.970370 -6.849944 -16.187797 -15.758231 -4.030261 1.680527 -19.763960 -7.502566 -4.930867 20.039340 11.047880 1.896409 -19.009703 -0.003073 20.469752 -17.007042 -5.167259 13.487159 5.622133 -23.440428 2.641703 17.101282 -21.773281 3.805246 -8.079721 -3.484498 -9.115785 -15.358168 11.204255 6.320400 12.140809 -1.811512 2.159224 3.096759 7.141737 7.254062 5.368401 4.314216 26.222849 13.740113 -4.497474 -8.328693 -20.534890 8.491876 -22.802349 -24.890117 12.184126 5.818319 -16.033512 1.367824 4.998293 21.263756 4.253837 -4.722815 -5.092157 3.653867 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::Graph(int) = -1.065045 -1.091240 0.397794 -2.880868 1.590059 1.126466 0.776590 -1.114850 -2.235303 -0.333864 1.324552 -1.360350 -1.092358 2.626712 -0.833288 1.475699 1.540103 -0.373644 -1.636414 -0.870990 2.513151 -0.978867 2.524549 1.468141 -2.523991 -0.288118 -0.348416 1.965832 0.763159 1.367521 0.353198 -0.049643 -0.269311 -0.934801 0.398762 0.069996 0.481554 0.487506 0.436485 -2.241242 0.554423 1.325369 0.997471 -0.619996 -0.761149 -0.442517 0.942338 2.202528 -0.172108 0.028468 2.385248 -0.212172 0.254844 0.396161 1.091862 0.104403 1.751852 -0.147152 -0.354071 -1.191988 -0.287479 -0.473503 0.887398 2.135641 2.535853 -0.430207 0.000705 1.018199 0.306452 1.410213 1.672500 0.332332 -1.194381 -0.648243 1.663784 -1.357908 0.333545 -2.394678 0.219915 -2.413931 -1.298022 0.206216 1.609627 0.843997 1.033075 -0.034750 2.249198 -0.040309 -1.122410 0.612685 1.333885 -0.613173 -0.760558 -1.308962 -1.725243 0.556193 -1.206310 -0.309625 0.768066 1.323558 -1.732910 0.551646 0.098295 0.998993 -1.158708 -0.611942 -0.292426 1.767619 -1.042306 -0.964747 0.473405 2.254369 -0.333811 -3.206310 -0.858204 -2.341069 -0.197264 -0.902446 -0.012082 -0.444756 0.158106 1.153668 -0.716948 -0.755397 -1.738925 1.345506 1.306281 0.662071 0.108552 0.217000 -0.035735 1.855967 0.307743 -1.159696 -0.664373 0.187220 -0.430331 1.204961 -0.557106 -0.530067 0.523422 -1.505518 -0.003106 0.517016 -0.424573 -0.342089 -0.073026 0.838113 0.543622 5.068871 -0.082308 2.282733 1.133219 -1.190609 1.033270 0.361715 0.382397 1.041877 0.874645 -0.985705 -1.441420 -2.059728 1.419178 1.784429 1.367234 -1.474311 0.167936 0.035512 -0.403690 -0.223470 -0.000430 0.289518 -0.232934 -1.315802 -0.611928 0.798850 3.012731 -0.651842 -2.021661 1.680521 1.186984 -1.618526 -1.404103 -0.755178 -1.279045 0.145343 -0.164566 0.190063 1.598327 2.504372 -2.521467 1.790185 0.073067 -0.349956 2.237067 -0.888105 -1.281493 -2.847615 -0.443117 0.233535 2.158615 -1.008885 -0.723917 0.786472 -1.919088 0.457762 -0.023938 -0.389713 -0.416701 0.986191 -0.699792 -0.522282 -1.071287 -0.750912 -1.111881 0.803972 -0.730959 0.868065 -0.103306 -2.042772 1.708602 -0.314217 -0.592377 0.148617 -0.107267 1.681541 -1.155550 -1.580943 1.102367 0.064346 -0.670224 -1.975229 0.390720 1.331388 0.007606 0.172596 -1.605902 -0.834893 1.423365 -1.842129 1.736998 0.873465 -0.303459 0.438122 1.510713 -0.286050 -1.386871 -0.637055 -0.261359 0.226648 -2.254418 -0.422969 -0.642164 1.821266 0.574819 0.202792 -0.753679 -0.188155 2.553901 -0.801211 -1.332272 0.844582 -1.008693 -1.756873 1.136931 1.594767 -1.346824 -0.107038 -1.598584 -0.262419 -1.243429 -2.015561 1.879096 1.106354 1.912102 -0.495679 0.887995 0.123995 0.569985 0.673676 -0.067161 -0.257990 3.177373 1.193679 -0.938137 -0.923121 -2.208999 1.318985 -1.535737 -1.358586 0.776772 -0.035305 -1.028146 0.538028 -0.298880 2.454892 0.663988 -0.151995 -0.460183 0.048109 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::addEdge(int, int) = -0.732709 0.131275 1.158565 -1.691132 1.282604 1.588591 0.467775 -1.001141 -1.352219 -0.423541 0.219422 -1.636945 -0.983001 1.961560 -1.084751 0.701790 2.473362 0.520061 -0.891399 -0.351780 1.413026 0.162923 2.560820 2.280299 -1.829199 -0.166679 0.494226 1.338625 0.525560 1.416344 -0.638854 -1.164082 0.669690 -0.686293 0.080693 -1.112735 0.168030 -0.027823 0.334928 -2.519223 0.277208 -0.000512 -0.543345 -0.318886 -0.127349 0.236960 1.933980 1.524032 -0.075622 0.057414 1.183899 0.856777 -0.091711 0.427234 0.689185 0.292905 1.353593 -0.252732 -0.591940 -0.689236 -0.448108 -0.726291 -0.018470 1.996445 2.094452 0.523174 0.018300 0.223322 0.044385 0.371603 0.526870 0.493345 -0.098310 1.055615 0.592506 -1.492855 0.669840 -2.142106 -0.278210 -2.181094 -1.000056 -0.654773 0.671493 0.447634 0.810695 -0.075125 2.012382 -0.058288 -0.024175 1.021920 2.426623 -1.687703 -0.647812 -1.011534 -1.047388 0.403589 -0.975008 0.325261 -0.188284 0.371922 -1.450776 -1.044070 0.380426 0.594775 -0.711595 -0.137881 0.052807 1.630737 -1.701654 -0.792813 -0.773553 0.654590 -0.256615 -2.856497 -1.110148 -1.211712 1.483235 -0.063738 -0.696131 -1.682666 0.540318 1.473488 -0.463287 -0.666982 -0.709301 1.399893 0.988951 0.148154 -0.125300 0.032183 0.431055 2.132614 0.926628 -0.916697 -0.011572 -0.053618 -0.933218 0.091817 -1.091561 -0.173702 0.038084 -1.476333 0.109531 1.671977 -1.059749 -0.323737 0.202949 -0.003975 0.906564 5.775425 -0.502744 1.575098 0.924275 -2.063030 0.415716 -0.342844 -0.193109 0.307085 0.706037 0.720541 -2.601160 -1.569494 1.177410 1.964529 1.240441 -1.673263 0.261996 -0.490764 -0.208251 -0.350520 0.207865 0.434322 -0.514542 -1.185199 -0.615634 1.215461 3.054384 -0.793970 -1.972472 0.806828 0.009233 -0.361743 -1.091462 -0.563444 -0.142515 0.396977 0.749632 -0.099849 1.130155 2.312993 -3.149788 1.709485 0.000190 -0.637363 1.854232 -0.000384 -1.056328 -0.555973 0.019778 1.626461 1.657111 -0.027776 -0.354799 0.272732 -1.781185 -0.227370 0.377507 0.813533 -0.732638 0.875270 0.961910 -1.567473 -1.391549 -0.651739 -0.081733 -0.460984 -0.805976 1.010867 -0.698691 -3.320444 2.254629 0.227798 -0.438682 0.372789 -0.744169 1.195233 -1.853768 -2.097688 0.949918 -0.207682 -0.689106 -0.654061 0.106043 1.233076 0.533945 0.953059 -1.683354 -1.756628 1.027851 -0.383981 1.451425 0.676464 0.620647 1.432174 -0.055366 -0.333298 -1.480213 -0.917217 0.832916 0.148866 -1.475900 -0.286104 -0.496562 1.660632 1.849023 -0.358996 -0.793655 -0.353196 1.834824 -1.518935 -0.526422 1.039307 0.843066 -1.576629 0.219388 1.301742 -1.469047 -0.761400 -0.812786 -0.745109 -0.763649 -1.628771 0.905632 -0.477809 0.862161 0.618082 0.214043 -0.656864 0.707882 0.352243 0.226649 0.591095 1.971821 2.057892 -0.677290 0.226615 -1.775901 1.114230 -2.445341 -2.011514 0.808448 -0.542757 -0.706542 0.111221 -0.192798 1.664871 0.240149 -0.017307 -0.116176 0.051508 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.393401 0.422519 1.031386 -1.031333 0.911656 0.566330 0.289656 -0.279628 -0.773459 -0.525266 -0.148460 -0.897224 -0.903899 1.280504 -0.616633 0.073999 1.790952 0.501754 -0.302807 -0.413763 0.851887 -0.381816 1.574160 1.505993 -1.357415 -0.030149 0.664674 0.861908 0.356394 1.202490 -0.612930 -0.953458 0.365006 -0.118637 0.544261 -0.984653 0.119830 -0.152330 -0.193692 -1.907424 0.155767 -0.015483 -0.204815 -0.182168 -0.031300 0.779597 1.547288 0.969966 -0.421378 -0.029383 0.874053 0.620141 -0.097963 0.297384 0.378952 0.174232 1.031777 0.169529 -0.481999 -0.155502 -0.293692 -0.832648 0.017336 1.302350 1.489585 0.233028 0.090516 0.007296 -0.041530 0.269086 0.155668 0.281825 0.394614 0.619241 0.531091 -0.970691 0.242467 -2.185488 -0.192089 -2.616972 -0.754199 -0.842108 0.533092 -0.078097 0.281471 -0.102190 1.382458 0.134932 0.371358 0.607444 1.754056 -0.984465 -0.436997 -0.858633 -0.801377 0.442703 -0.636845 0.104814 0.202661 0.027407 -0.937050 -0.945297 0.461861 0.185601 -0.488910 -0.001059 -0.093111 1.121425 -1.237884 -0.317652 -1.042174 0.074072 -0.001614 -1.868447 -0.179050 -0.785787 1.111922 0.056561 -0.349325 -0.966815 0.316298 1.033208 -0.484618 -0.318287 -0.754878 1.269090 0.517544 -0.075629 0.042366 -0.180365 0.280622 0.961390 0.974930 -0.665891 -0.209115 0.093297 -0.913571 -0.285879 -1.050647 -0.113064 0.664561 -0.889177 0.120973 0.784143 -0.762436 -0.322448 0.525266 -0.447182 0.868483 3.416189 -0.418630 0.818023 0.264811 -1.401633 0.626074 0.021844 -0.357153 0.243614 0.811920 0.630133 -1.440099 -1.010450 0.605399 1.272015 0.837819 -1.148896 -0.197742 -0.512979 -0.207236 -0.164074 0.156924 0.268295 -0.507400 -0.738695 -0.435400 0.615118 1.914148 -0.449047 -1.544312 0.355047 0.286026 -0.283268 -0.909225 -0.256530 -0.189793 0.222384 0.197102 -0.242304 0.853825 1.563733 -3.006717 1.193289 -0.108337 -0.541645 1.076828 -0.167630 -0.449786 -1.052387 0.368348 1.265526 1.273501 0.190920 -0.134402 0.039200 -1.167345 -0.168691 0.086990 0.810292 -0.584731 0.563585 0.487927 -1.173862 -1.013237 -0.690934 -0.063023 -0.385776 -0.485327 0.511122 -0.174620 -2.768394 1.648919 -0.130720 -0.191598 0.176767 -0.382907 0.517944 -1.317703 -1.511133 0.446208 -0.096081 -0.477232 -0.646495 -0.000830 0.949210 -0.083431 0.456571 -0.878972 -1.521547 0.725538 -0.311385 0.837731 0.488394 0.599123 1.310276 0.380108 -0.267713 -1.117797 -0.289140 0.571623 -0.237513 -0.781671 -0.017482 -0.380949 0.971460 1.535718 -0.270168 -0.175254 -0.264594 1.297858 -0.996112 -0.491824 0.806547 0.446839 -0.700777 0.378291 0.955423 -1.064124 -0.897462 -0.774836 -0.441146 -0.216755 -1.102292 0.437810 -0.726183 0.309425 0.667349 0.027998 -0.656052 0.586144 0.153043 0.024624 0.135450 1.306914 1.819926 -0.839331 0.431610 -1.036537 0.682646 -1.754411 -1.204426 0.264368 -0.371827 -0.333964 0.150210 -0.107557 0.890154 -0.132064 0.233602 -0.089607 -0.109375 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclicUtil(int, bool*, int) = -2.955979 -0.647933 2.404942 -6.207906 4.659727 4.088806 2.098940 -2.237766 -5.704187 -2.498568 0.975656 -6.636847 -3.557930 8.336765 -2.687631 4.041177 9.829416 2.042667 -2.831887 -0.362224 6.245917 -1.093344 8.784368 8.015283 -6.263895 -0.773711 0.286062 4.068557 0.674548 4.144610 -0.617501 -5.155706 2.701553 -3.879633 -0.015878 -4.510313 1.241084 1.596210 1.963881 -9.913749 1.617684 1.665705 -0.494289 -2.118958 -1.659130 0.096554 6.624129 6.249873 -1.801082 0.394436 4.307823 1.913179 -0.866056 1.985281 1.554461 0.561416 0.655516 -1.317322 -3.394697 -2.415396 -1.249733 -3.612022 0.823252 6.627075 7.884626 1.251488 0.238432 2.605100 -0.084280 1.664159 2.481131 1.031824 0.591617 0.970530 3.176593 -5.683695 -0.489707 -9.939028 -1.296329 -11.327839 -4.141063 -1.546819 4.573073 3.058282 2.788656 -1.817744 6.992126 -0.855030 -0.235218 6.282942 9.091476 -6.001658 -3.074931 -5.681905 -4.327308 2.498725 -3.817089 0.179983 0.832792 0.752339 -5.880630 -3.941199 1.176789 2.271173 -2.335766 -3.329545 0.934944 6.172404 -6.199195 -3.941945 -2.531309 3.584990 -0.733745 -10.377744 -1.819554 -4.020662 3.226963 0.444045 -2.438594 -5.637872 1.558643 4.013080 -2.156643 -2.924722 -3.951187 5.832024 2.608597 1.298790 0.775866 0.311171 1.494946 8.048606 3.205799 -3.912817 -0.010637 0.076247 -2.805961 1.029264 -4.526812 -2.550956 2.008182 -6.359076 -0.614358 4.951640 -4.265969 -1.661922 1.130117 0.453344 3.362884 19.602569 -0.688706 6.192267 4.002343 -7.489768 3.788124 -1.525526 -0.975045 1.280816 3.447965 1.602346 -8.349992 -6.201576 4.147542 7.094187 5.525564 -5.331119 -0.987772 -1.759355 -0.253683 -0.873913 0.187203 2.139170 -0.867864 -5.395972 -1.836749 5.169522 11.501459 -2.668588 -3.982692 3.851066 2.716689 -1.659395 -5.923973 -2.496975 -3.122637 0.784068 2.074746 -0.646256 4.242859 9.127177 -11.140434 6.445435 -0.460061 -0.873067 4.633029 0.349631 -5.076697 -6.562841 -0.557199 6.072611 7.392081 -0.629109 0.902549 1.038518 -6.266031 -0.613671 1.339479 1.768529 -1.804722 2.896766 0.478351 -4.735930 -4.727438 -0.817691 -2.493148 -1.929622 -1.739312 3.686798 1.231595 -9.278605 8.147878 -0.171570 -1.596808 1.401588 -1.911646 5.848568 -6.783249 -8.045925 3.996576 -1.043247 -3.178020 -2.845149 1.008369 4.687866 1.149134 0.584719 -3.678936 -7.560843 4.851362 -1.394289 5.595205 2.565236 1.176815 5.265397 1.992419 -2.177858 -5.441440 -4.749309 1.511778 -0.609939 -5.786392 -1.772767 -1.595953 6.519106 6.195867 -0.546532 -4.111519 -0.522509 7.057362 -5.222309 -2.352291 5.144608 0.970516 -5.813431 1.272183 6.262271 -6.796785 -1.928129 -4.076737 0.263221 -2.184231 -6.307496 2.711706 -0.860070 2.900553 1.580738 0.593472 -1.613893 2.487116 2.585041 0.630892 0.773213 8.740490 6.146229 -2.958370 -0.159085 -6.584046 3.046226 -9.188971 -7.671824 2.804553 0.282109 -3.305624 0.918632 0.510115 5.890942 0.189474 0.835124 -0.976387 -0.023644 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -2.241369 -1.561397 0.483028 -5.102247 3.475930 3.173948 1.610945 -1.915014 -5.231082 -1.221807 1.102928 -4.842153 -1.084810 6.478745 -1.617770 4.628364 7.871018 1.598893 -2.317085 0.000713 5.754038 -1.784490 6.595917 6.056270 -4.372721 -0.584211 -0.137012 2.724694 0.360279 2.690413 -0.388015 -3.423521 1.927624 -5.019665 -0.865200 -4.253072 1.115081 2.286867 3.453736 -7.921182 1.617396 0.875019 0.334158 -1.910748 -1.841940 -0.914158 4.029624 4.777224 -1.520733 0.855673 3.695296 1.114903 -1.056524 1.501477 1.118879 1.631083 -0.092585 -0.238273 -2.402704 -1.998802 -0.612686 -1.965795 1.651935 4.600401 5.904037 0.664564 0.191546 3.043958 0.328985 0.951421 2.591573 0.390472 -0.899235 -0.460691 2.314326 -6.378299 -0.863356 -8.676472 -0.954197 -8.828329 -2.972793 -0.259870 3.314769 1.464545 2.989002 -0.792472 4.848416 -1.581925 -0.594211 5.121110 5.997851 -4.874830 -2.408780 -4.540325 -3.571512 1.813046 -2.676779 -0.534602 1.673720 0.347515 -4.293335 -3.214193 1.841429 2.609007 -1.668633 -3.967666 1.257535 4.570311 -4.321609 -4.511262 -0.731020 3.831205 -1.630005 -7.558894 -0.885708 -3.684748 2.035645 0.138907 -1.812777 -5.185836 0.849708 3.196294 -1.699952 -2.955774 -1.950598 4.168295 2.077220 1.440660 0.677760 -0.221928 0.809464 7.377283 2.233330 -3.337929 0.296740 0.383619 -1.934267 1.186826 -3.750616 -2.790052 1.352217 -5.256639 -0.589740 4.008947 -3.191864 -0.713849 3.187097 1.321733 2.122647 16.742751 0.127165 5.484062 3.553101 -5.507421 3.184611 -1.254480 -0.290272 1.287727 2.484100 0.209339 -8.105116 -4.817299 2.672587 4.985001 4.404292 -4.546279 -2.375376 -1.569026 -0.312735 0.428077 -0.536256 1.417665 -0.432092 -4.406823 -1.218695 3.701221 10.317593 -2.000073 -0.998954 3.225169 2.537488 -2.884517 -6.384882 -2.327441 -4.324560 0.651001 0.951742 -0.521777 3.273842 6.805886 -8.527056 4.693557 -1.307416 -0.347452 3.152706 0.895701 -4.478926 -6.613155 -1.247941 3.851815 6.466532 -1.339265 1.750423 1.579843 -4.427118 -0.332319 0.881637 0.444091 -1.101787 1.933877 -0.011563 -3.476530 -2.839847 1.288669 -2.461317 -1.883324 -0.454598 2.823090 1.297119 -6.022202 5.381363 -0.050551 -1.133251 2.007543 -1.059144 5.009930 -4.818125 -5.621221 3.692136 0.253860 -0.969896 -1.887972 0.997107 3.895149 0.931695 0.211968 -2.382508 -6.539300 3.112027 -1.496347 4.143079 1.937208 -0.190824 3.106259 0.523838 -1.422302 -4.850592 -3.712579 -0.624614 -0.044260 -4.654641 -2.384665 -1.164312 5.361151 3.949610 0.310994 -3.561514 0.115495 5.754447 -4.165371 -1.081617 3.890280 1.090994 -5.242663 0.243374 4.882742 -5.915074 -0.597717 -2.543237 0.766134 -1.326109 -4.271425 2.512947 0.404799 2.678951 0.244500 0.789100 -0.287133 1.850974 2.449081 0.915598 0.427618 7.062681 4.284582 -1.525549 -1.406226 -4.744681 1.682948 -6.515104 -5.938794 1.960044 1.257629 -3.742066 1.085330 1.227971 5.309224 0.253271 1.310344 -0.251537 -0.445369 +PE-benchmarks/detect-cycle-undirected-graph.cpp__main = -2.143901 -0.225814 3.079734 -5.609493 4.054680 2.294849 1.767619 -0.138731 -5.762438 -3.471371 0.387902 -6.364181 -4.259192 7.341393 -2.203445 1.443776 9.224421 2.431176 -2.218244 -0.841070 4.413979 -1.475617 7.442743 7.516038 -5.795344 -0.090367 -0.691205 3.803194 0.315433 4.595083 0.181087 -5.465824 1.711862 -0.952268 1.319127 -4.367521 0.389599 1.232345 -0.800388 -10.180507 1.374231 3.474732 0.055536 -1.614018 -0.295596 2.182958 6.530021 5.036179 -1.733954 0.782755 3.593943 2.181567 -0.133362 1.398265 1.471681 -0.234241 1.134925 -1.846834 -3.494374 -1.083287 -1.323893 -4.193782 0.161273 5.687811 6.727813 0.816976 -0.273402 0.316719 0.151252 1.895947 2.209783 1.094735 1.643419 0.590410 2.869077 -2.882157 -0.394966 -8.454907 -0.003943 -12.874319 -4.228422 -1.879684 6.791791 4.376161 0.212518 -3.072037 6.739068 -1.185837 0.394837 6.043122 8.073609 -3.633729 -2.605194 -4.952487 -3.916553 2.715550 -2.775549 -0.634987 0.908867 1.501848 -5.239486 -2.240428 1.096540 0.404207 -2.240829 -0.925799 0.452734 5.850427 -6.769647 -1.570919 -3.322223 4.041127 1.452484 -8.978578 -1.668427 -3.355090 2.218192 0.932930 -2.679799 -2.636589 1.782635 2.282769 -2.411916 -0.204401 -6.239625 6.361891 1.205516 0.555488 0.749612 1.037655 1.309262 5.002043 2.506127 -3.550897 -0.021642 0.990625 -1.975456 0.273458 -3.943196 -1.874349 2.017852 -5.079556 -0.115284 2.465724 -4.060414 -2.293486 -2.111531 -0.172478 2.910797 16.561707 -1.194929 5.789136 3.049523 -5.881009 3.920235 -0.210242 -1.035305 1.046251 3.673826 1.919756 -5.275448 -5.150144 3.387364 6.698356 4.850739 -4.218136 0.358598 -1.153856 -0.610687 -0.492879 1.384421 1.367352 -0.365811 -4.534676 -1.749169 3.795122 10.019440 -0.935589 -4.644432 2.205678 2.703829 -0.840812 -3.856523 -1.126834 -1.204921 0.574663 1.778152 -0.924909 3.955398 8.119188 -11.602619 6.324213 0.193969 -0.597278 3.853132 -0.285763 -3.680275 -7.232892 -0.984370 5.284245 7.788649 -0.138472 -0.073897 0.572845 -5.564684 -0.662493 1.394025 2.130153 -2.286502 2.937019 0.260985 -3.757862 -3.502438 -2.765582 -2.378182 -0.348518 -2.652261 2.878007 1.627010 -9.474174 7.075060 -0.323187 -1.206522 -0.251188 -1.114222 4.004305 -5.755769 -7.039481 2.435803 -1.239124 -5.474363 -3.180293 -0.045599 4.062515 0.151131 0.382559 -2.906108 -6.712071 6.041182 -1.383737 5.375953 2.678648 0.543980 5.686462 4.357741 -1.923038 -3.718319 -4.649845 2.518350 -1.930913 -3.958269 0.801527 -1.942397 4.536112 5.871467 -0.486774 -3.489280 -0.785574 6.819771 -3.029804 -2.608101 4.549003 -1.517890 -3.669578 3.037320 5.818401 -6.187824 -1.938284 -5.068213 0.160313 -1.539684 -4.679372 2.651697 -1.550792 1.979759 1.819995 0.161549 -2.798816 2.235622 1.848919 -0.741525 0.584275 8.426640 6.007370 -2.880016 2.240363 -5.470705 3.233938 -7.805044 -5.753133 0.840186 -0.071273 -2.507315 0.672995 -0.445094 4.709457 0.330790 0.537420 -1.517405 1.356050 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.635914 0.463864 1.281313 -1.462158 1.598193 0.803151 0.621960 -0.379792 -1.207862 -0.889649 -0.090438 -1.247632 -1.502538 2.052717 -0.913442 0.449066 2.826967 0.715392 -0.376096 -0.722316 1.719090 -0.965348 2.683612 2.293182 -2.311495 -0.089599 1.034875 1.310367 0.657217 1.724008 -0.798546 -1.297871 0.923368 -0.778152 0.858821 -1.618381 0.331412 -0.170577 -0.167327 -2.948905 0.163859 -0.161612 -0.420037 -0.168808 -0.244682 1.575813 2.327489 1.661661 -0.921072 0.265226 1.493855 0.538721 -0.136404 0.628223 0.389403 0.260891 1.133152 0.563407 -0.970616 -0.305996 -0.552812 -1.754975 0.211331 1.968153 2.505407 0.141780 0.265884 0.522154 -0.235080 0.488962 0.456662 0.488527 0.751187 0.550087 1.314212 -1.923971 -0.060402 -3.832157 -0.665460 -4.906716 -1.243008 -1.494420 0.913026 -0.641079 0.757922 -0.076682 2.226840 0.361814 0.508450 1.227660 2.731051 -1.790356 -0.771060 -1.580789 -1.098448 0.634437 -1.226038 0.128313 0.919292 -0.147080 -1.562868 -1.543319 0.811336 0.379780 -0.702250 -0.682223 -0.317414 1.898663 -2.080096 -0.822783 -1.866792 0.001061 -0.235571 -3.093815 0.043789 -1.057601 2.067265 0.212480 -0.264556 -1.475933 0.452657 1.815523 -0.661254 -0.861077 -0.557000 2.108963 0.921483 0.114429 0.303616 -0.075653 0.262633 1.805394 2.160797 -0.859695 -0.565026 0.147179 -1.500766 -0.147067 -1.624848 -0.309320 1.503039 -1.644511 0.185635 1.251623 -1.122753 -0.583255 1.541843 -0.606574 1.481378 5.220425 -0.453654 1.372586 0.525053 -2.241049 1.041639 -0.132518 -0.347712 0.682780 1.457097 0.688143 -2.433908 -1.695378 0.935097 1.901794 1.311050 -2.309792 -0.688919 -0.902133 -0.034532 -0.276003 -0.107319 0.694784 -0.576076 -1.247462 -0.496023 0.952754 3.137521 -1.136182 -2.216293 0.801763 0.490957 -0.690794 -2.055872 -0.648578 -0.552538 0.232256 0.279081 -0.307540 1.121586 2.522139 -4.539029 1.823714 -0.461042 -0.670701 1.586730 -0.072012 -0.751829 -2.188624 0.528494 1.896703 1.925821 0.379227 -0.191020 0.204749 -1.860791 -0.036760 0.100837 1.205356 -0.681087 0.886537 0.420819 -1.693018 -1.747205 -0.885235 -0.111533 -0.571336 -0.363916 0.825574 -0.113187 -4.427910 2.441753 -0.512168 -0.621039 0.485853 -0.309114 1.169971 -2.046662 -2.539525 0.918355 -0.264769 -0.949952 -1.392181 0.186804 1.459229 -0.023541 0.302694 -1.208110 -2.699489 1.289880 -0.637092 1.270232 0.804454 0.960973 2.579906 0.331519 -0.823704 -2.117206 -0.485306 0.612659 -0.564980 -1.328853 -0.450454 -0.457063 1.691522 2.464456 -0.214696 -0.150291 -0.319332 2.243547 -2.147444 -0.960212 1.623656 1.346478 -1.080595 0.863950 1.755701 -1.848903 -1.462981 -1.118484 -0.581509 -0.199092 -1.786679 0.727021 -1.248708 0.567313 0.897780 0.283853 -0.808235 0.945648 0.269613 0.285445 -0.222459 2.273447 3.444153 -1.786833 0.217733 -1.599584 1.078187 -2.850929 -2.041919 0.506798 -0.163476 -0.402095 0.497336 0.216767 1.499899 -0.082625 -0.130324 -0.250058 -0.421446 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.650706 1.567372 2.280989 -2.983972 4.924957 2.762123 2.013060 -1.113980 -2.480392 -2.396289 -0.310901 -3.063355 -4.275604 5.316166 -1.999803 2.380266 6.959788 1.239636 -0.500672 -1.177404 4.935131 -2.857504 7.192676 5.071574 -5.752195 -0.207895 2.593519 2.558941 0.468686 4.657625 -2.159103 -3.948811 3.297978 -3.209615 1.802986 -3.619760 0.953896 -0.656002 0.224035 -6.872405 0.186864 -0.273736 -1.586412 -0.420407 -1.304945 2.907742 6.241337 4.392200 -2.396417 0.853138 3.285783 0.573049 -0.342453 2.136320 0.980405 0.967811 1.374731 1.187555 -3.214499 -1.159111 -1.890106 -4.963877 0.432809 4.596973 6.263118 0.032022 0.886518 2.708407 -1.918988 1.218749 0.934463 1.374598 2.237044 0.877559 3.999904 -5.119640 -1.278690 -9.046245 -2.823949 -12.268106 -3.406177 -4.209354 1.272106 -1.517667 3.332661 -0.319563 5.695496 0.974605 1.284478 3.019738 7.377012 -5.615081 -2.063487 -4.625995 -2.071562 0.930752 -3.420997 0.111889 2.940394 -1.659160 -4.270607 -4.354659 2.267624 1.402499 -1.456186 -3.583413 -1.075763 5.028590 -5.261597 -3.202089 -5.322424 -0.703434 -1.695606 -8.170906 0.565369 -1.292551 4.684111 1.049213 -0.111125 -4.653323 1.456412 5.344844 -1.426822 -3.829904 0.438283 5.497886 2.647063 0.674538 1.609162 0.194763 0.564965 5.921240 6.895107 -1.301965 -1.785182 -0.168364 -3.423354 0.249273 -3.250553 -1.028805 3.124998 -4.857885 0.180574 4.070173 -2.607780 -0.911731 4.083277 -1.600968 4.030087 12.455579 -1.237641 3.444725 1.139346 -6.397019 3.034949 -1.164282 -1.134284 1.464235 3.795217 1.688809 -6.475713 -4.401456 2.914710 4.514195 3.286061 -6.357697 -2.170002 -2.690032 0.756700 -1.071633 -0.982846 2.582771 -0.556174 -3.602503 -0.867302 2.488219 8.685601 -4.259521 -5.305028 3.382827 1.086933 -1.591783 -6.257775 -2.466450 -2.488671 0.011412 0.829577 -0.892422 2.003485 6.506519 -9.778941 4.438499 -1.900850 -2.097265 4.097099 0.104790 -1.864912 -5.529529 1.163674 5.270310 4.414616 1.117780 0.105923 -0.186912 -4.546434 0.376855 0.124570 2.918528 -1.055896 2.201782 -0.022251 -4.644537 -4.950241 -1.871032 -0.394363 -2.054874 -0.314482 1.934037 0.973964 -10.732516 6.364314 -1.275580 -1.932213 1.945550 -0.055278 4.068971 -4.732752 -7.104567 3.067623 -1.447310 -2.356395 -3.121952 0.952021 3.289272 0.722880 -0.335716 -2.476883 -7.231763 3.333208 -0.850085 3.195386 2.030909 3.169085 7.141443 0.560378 -3.464232 -5.562193 -2.116496 1.143256 -1.714361 -3.664344 -2.556135 -1.007224 4.997433 6.238059 0.114847 -0.396839 -1.420209 5.549174 -6.654250 -2.026226 5.281559 4.272763 -3.265422 1.541570 5.276570 -4.129249 -4.083779 -2.351917 -0.479049 -0.954632 -5.042350 0.954578 -3.524037 1.093328 2.366966 0.662233 -1.784501 2.010925 0.825883 1.317156 -1.737520 5.741298 8.365686 -5.522587 -0.434453 -3.729667 2.464038 -7.420249 -5.674196 1.987493 0.540649 -0.832928 1.310698 1.615921 3.581709 -0.550836 -0.914796 -0.533250 -2.426021 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/detect-cycle-undirected-graph.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/birthday-paradox.cpp__find(double) = 0.134786 0.494109 0.432092 0.116729 -0.196826 -0.151976 0.205582 0.261737 -0.589572 -0.350190 0.920784 -0.064145 -0.782934 0.987321 -0.882401 -0.590902 0.480393 1.088575 -0.688027 0.180285 0.728111 -0.238939 0.844535 0.379438 -0.783935 0.376033 0.468889 -0.155879 0.245014 0.984224 0.403935 -0.352656 1.025336 0.674145 0.799448 -1.014691 0.262063 0.431732 -0.353228 -1.078160 0.100799 0.105964 0.327526 -0.283090 -0.270180 0.957883 0.127567 0.820142 0.304846 -0.307051 0.649809 0.379521 0.388337 0.119514 0.196230 -0.709831 0.806719 -0.113107 0.276205 -0.051978 -0.161338 -0.341771 -0.250203 0.913344 1.020636 -0.297139 0.067095 -0.605837 -0.541876 0.093672 0.040705 -0.501857 0.491060 0.423171 -0.768028 -0.003988 -0.539530 -1.169361 0.128711 -1.675732 -0.160931 -0.264101 0.658853 0.234333 -0.599620 0.109252 0.659536 1.040619 0.248269 0.614217 1.203891 0.394426 -0.461744 0.155551 -0.165048 1.077426 -0.142926 0.747939 0.334371 -0.316111 -0.534685 -0.011554 -0.966505 -0.046204 0.241226 0.525523 -0.076884 0.789943 -0.353175 0.660208 0.003810 0.389139 0.323205 -1.230198 0.228658 -0.454492 0.353149 0.259995 -0.128695 0.266023 0.209248 0.633437 0.077774 0.167580 -0.636918 0.402563 -1.051698 0.664932 -0.247908 -0.450362 0.581989 -0.670487 0.189585 -0.417130 0.211091 -0.731498 -0.377962 0.753503 -0.685688 0.215484 0.649933 -0.113148 0.106493 -0.210250 -0.398314 -0.836541 -0.328556 0.078355 0.106714 0.872231 0.105093 0.855057 0.047444 -0.733482 0.201335 0.011402 -0.552200 0.146563 0.378210 -0.334988 0.144365 -0.883469 -0.072709 1.043770 0.584190 -0.874422 0.362058 -0.096695 -0.505139 -0.397177 0.746542 0.021060 -0.493832 -0.471076 -0.425366 0.736528 -0.204991 -0.288481 -0.601496 -0.758395 0.254418 0.471819 -0.351535 0.198920 0.181508 0.566073 0.315806 -0.163234 0.212475 -0.186960 -1.568874 1.031038 0.040265 -0.169485 0.290763 -0.371417 -0.418284 -1.011172 0.680766 0.271640 0.388229 -0.223053 -0.402143 0.980137 -0.812123 0.003367 -0.048016 -0.598909 0.402603 0.150102 0.338685 0.208724 -0.956306 0.117717 0.473291 -0.327749 -0.240869 1.188975 0.712639 -1.130830 0.106018 -0.639089 -0.112522 -0.924098 -0.094736 -0.139847 -1.015226 -1.138244 0.250289 0.253163 -0.165548 -0.587074 -0.136365 1.144340 -0.560558 0.463448 0.304687 0.180236 0.248744 -0.537665 -0.298321 0.308741 0.544251 0.449305 0.218957 -0.053370 -0.529319 0.255074 0.645305 -0.602460 -0.570571 0.515852 -0.213188 0.613688 -0.089226 0.350132 -0.659202 0.176415 0.997984 -0.125444 -0.574353 -0.238677 0.248328 0.711858 0.194943 0.522761 -0.424425 -0.399958 -0.992371 0.138967 -0.232919 -0.556749 0.660718 0.141814 0.738667 -0.405387 0.362011 -0.538511 0.452218 0.229104 0.639720 0.701612 -0.382384 0.685320 -0.339550 0.480899 -0.021016 0.388218 -0.338153 -0.209184 -0.124143 -0.371959 0.225237 1.003788 -0.158012 0.780270 0.232796 0.289595 0.256556 0.925317 +PE-benchmarks/birthday-paradox.cpp__main = 0.007867 0.122619 0.271916 -0.187811 0.061836 -0.254531 0.085075 0.106205 -0.352031 -0.378192 0.264544 -0.376792 -0.412163 0.407757 -0.294581 -0.273325 0.325379 0.260595 -0.174955 -0.115808 0.118883 -0.093461 0.396515 0.341604 -0.393774 0.125672 -0.030282 0.151285 0.157385 0.315022 0.286719 -0.297979 0.202164 0.424663 0.292564 -0.244383 0.044576 0.105794 -0.301560 -0.531424 0.054876 0.271867 0.247101 -0.058249 0.023946 0.518778 0.249901 0.317743 -0.020871 0.051609 0.349230 0.203020 0.145010 0.054489 0.052717 -0.453502 0.324782 -0.328434 -0.072191 0.036094 -0.038141 -0.307203 -0.157222 0.401649 0.454218 -0.060481 -0.017213 -0.277088 -0.092746 0.175992 0.126614 -0.038193 0.206324 0.145297 -0.082142 0.164753 -0.041037 -0.557025 0.097841 -1.099674 -0.210179 -0.079016 0.657219 0.406587 -0.375438 -0.034894 0.354279 0.330170 0.030481 0.356432 0.494785 0.209437 -0.186303 0.029634 -0.195501 0.414205 -0.117203 0.199733 0.009883 0.271411 -0.260124 0.146607 -0.195480 -0.192981 -0.045938 0.311682 -0.026627 0.258938 -0.461962 0.372835 -0.079871 0.251204 0.408545 -0.523726 0.041585 -0.218589 0.183438 0.056653 -0.116735 0.328481 0.077742 -0.058004 -0.105110 0.358269 -0.832307 0.232221 -0.281478 0.223858 -0.050796 0.013063 0.226746 -0.208251 -0.113523 -0.252156 0.030613 -0.147529 -0.016928 0.205069 -0.228680 0.018645 0.306360 -0.098922 0.199659 -0.233578 -0.200370 -0.504446 -0.495765 -0.067870 0.065966 0.267350 -0.001132 0.396164 0.150892 -0.213942 0.011450 0.007147 -0.124905 0.088849 0.200768 -0.017256 0.459780 -0.327762 0.115657 0.441778 0.241766 -0.187587 0.217983 0.135628 -0.135770 -0.088075 0.304341 0.005398 -0.154259 -0.190727 -0.162880 0.258442 0.040455 0.193248 -0.178163 -0.191953 0.228735 0.178088 0.083790 0.120531 0.260902 0.198794 0.106472 -0.016258 0.172414 0.201788 -0.944750 0.424586 0.225472 0.124007 0.056770 -0.142865 -0.226838 -0.628785 0.129785 0.166858 0.287632 -0.056779 -0.067359 0.255198 -0.343506 -0.042325 0.018988 -0.080200 -0.054915 0.115175 0.101878 0.020962 -0.305003 -0.220497 0.047481 0.181563 -0.222488 0.353929 0.329953 -0.665084 0.212507 -0.249163 -0.110400 -0.471292 -0.090871 0.020896 -0.397144 -0.335542 -0.053718 -0.196537 -0.518001 -0.337279 -0.067931 0.243112 -0.306848 0.143627 0.061300 0.102473 0.362646 -0.236305 0.058094 0.172449 0.093870 0.262258 0.284988 -0.001082 -0.072483 0.067757 0.328267 -0.397908 -0.151832 0.624964 -0.117806 0.097395 0.164602 0.018549 -0.274255 0.192546 0.375593 0.115012 -0.370740 0.044551 -0.220001 0.155423 0.450666 0.231096 -0.282517 -0.071125 -0.539865 -0.017044 -0.064634 -0.216869 0.276539 0.044033 0.186384 0.004350 0.074228 -0.327897 0.233968 0.021331 -0.019953 0.181357 0.227686 0.378881 -0.117595 0.377996 -0.216799 0.143363 -0.299074 -0.202347 -0.060853 -0.117353 0.009582 0.197969 -0.283898 0.264489 0.112923 0.063005 -0.131178 0.510770 +PE-benchmarks/union-find.cpp__createGraph(int, int) = -0.693501 -0.516302 0.858676 -2.204203 1.534930 0.672538 0.610166 -0.838847 -1.781143 -0.390810 0.956630 -1.383090 -1.107512 2.082028 -0.916885 0.623930 1.839772 -0.115490 -1.099320 -1.127669 1.658288 -0.597766 2.366168 1.815755 -2.134975 -0.144294 0.101867 1.434362 0.844984 0.944925 -0.140918 -0.353231 0.073198 -0.759887 0.361249 -0.206062 0.252188 -0.152901 0.236433 -2.045161 0.299594 0.233749 -0.024759 -0.302143 -0.375422 1.030854 1.334174 1.633983 -0.281351 0.185498 1.935794 -0.101848 0.013131 0.287453 0.932085 -0.121699 1.653931 0.418060 -0.489416 -0.602330 -0.333035 -0.522919 0.328300 1.928854 1.959738 -0.034773 -0.106713 0.522917 0.204642 0.896592 1.054204 0.404154 -0.213405 0.228004 1.252272 -1.404657 0.249876 -2.879602 -0.107009 -3.190200 -1.147642 -0.148749 1.476420 -0.273369 0.480607 0.301934 1.960196 0.343740 -0.624387 0.901074 1.741686 -0.743169 -0.781019 -0.904711 -1.390228 0.416625 -0.868294 0.239202 0.767417 0.912546 -1.562958 0.156095 0.267416 0.487134 -0.802499 -0.307934 -0.106972 1.551287 -1.179433 -0.287998 -0.291344 1.430112 0.203373 -2.811800 -0.428726 -1.530708 1.349378 -0.442868 -0.439709 -0.570753 0.345196 1.058152 -0.893831 -0.187046 -0.972254 1.461980 1.008391 0.731564 -0.016208 0.312995 0.430545 1.400613 0.678594 -0.999860 -0.299918 -0.074316 -0.655593 0.728777 -0.634164 -0.240270 1.062468 -1.147097 0.662552 0.458139 -0.662138 -0.693542 0.870967 0.405280 0.545740 4.892999 -0.305771 1.956783 0.765075 -1.317496 0.630442 -0.137691 0.214444 0.666644 0.942004 -0.363326 -1.625026 -1.644989 1.339167 1.724303 1.099529 -2.098959 0.032449 0.008887 -0.409079 -0.105622 0.118713 0.356375 -0.382449 -0.765530 -0.599083 0.968085 2.789011 -0.643339 -1.913199 0.873998 0.687974 -0.560620 -1.188071 -0.452264 -0.109701 0.474606 0.290650 0.311051 1.442608 2.198292 -3.428933 1.537080 -0.136797 -0.295625 1.832299 -0.271912 -1.094848 -2.146072 -0.198198 0.748848 1.738925 0.027854 -0.930557 0.659020 -1.628169 0.144730 0.142706 0.218805 -0.531486 0.853413 0.013725 -0.901859 -1.093310 -0.790201 -0.575752 0.882211 -0.602199 0.847500 -0.851285 -3.493269 1.812246 -0.182320 -0.591480 -0.165157 -0.415193 1.142219 -1.254940 -1.681126 0.676445 -0.273464 -0.953477 -1.458643 0.040927 0.906454 -0.061092 0.656860 -1.512248 -1.306616 1.251426 -1.328811 1.714465 0.729631 0.081207 1.420972 0.189245 -0.372615 -1.382931 -0.522599 0.542128 -0.010259 -1.729018 0.428185 -0.514831 1.364840 0.825736 -0.110460 -0.520047 -0.086035 1.941754 -1.188436 -1.140781 0.808133 0.177442 -1.360159 1.120658 1.299032 -1.377940 -0.266683 -1.230624 -0.932640 -1.002703 -1.586394 1.176166 0.373151 1.255355 -0.104708 0.820089 -0.234364 0.584832 0.149370 0.274409 0.138034 2.257441 2.521312 -1.131302 -0.362662 -1.990266 1.507299 -1.697650 -1.853436 0.787845 -0.166929 -0.636932 0.262631 -0.395177 1.751353 0.442353 -0.651784 -0.512636 0.572384 +PE-benchmarks/union-find.cpp__find(int*, int) = -1.142904 -0.801523 0.294892 -2.325090 1.709081 1.851423 0.817761 -1.547968 -2.286039 -0.412044 0.935095 -2.134542 -0.542959 2.907469 -1.096705 2.362491 3.335181 0.587176 -1.285404 -0.360593 2.742217 -0.331796 3.506346 3.004349 -2.390355 -0.288763 0.477328 1.483554 0.863646 0.896108 -0.246128 -1.147070 1.331196 -2.699836 -0.646803 -1.690621 0.511832 0.762003 1.955710 -3.327936 0.569549 -0.415310 -0.433892 -0.596093 -0.855398 -0.277664 1.799912 2.361341 -0.580934 0.853189 2.038550 0.428770 -0.423671 0.710058 0.525939 0.617931 0.353398 0.025838 -0.835879 -1.207315 -0.308329 -0.955078 0.587611 2.451050 2.918109 0.278743 0.092484 1.643197 0.243164 0.507824 1.354281 0.479364 -0.747643 0.254800 1.220846 -3.471460 -0.048560 -4.156747 -0.772037 -3.790565 -1.431546 -0.136905 1.283818 -0.071023 1.782151 0.480558 2.507524 -0.252340 -0.634892 2.128649 2.884531 -2.634143 -1.120182 -1.535629 -1.432214 0.754172 -1.551098 0.362937 0.617947 0.357612 -2.078444 -1.574774 0.763336 1.336084 -0.955415 -1.944992 0.384492 2.176095 -2.192567 -2.193412 -0.328145 1.481505 -0.924277 -3.870175 -0.935001 -1.662303 2.138052 -0.020696 -0.805582 -2.619662 0.346361 1.769821 -0.510863 -1.672008 0.162828 1.355257 1.526196 0.983471 0.192013 0.086670 0.524493 3.997517 1.374021 -1.475773 0.045472 -0.091576 -0.868001 1.005395 -1.538924 -1.018959 0.407579 -2.551844 0.303687 2.322369 -1.452182 -0.625634 2.146914 0.740389 0.821505 7.828907 0.174073 2.633682 2.077050 -2.649869 0.466285 -1.058284 0.159689 1.000281 1.063034 0.068772 -3.747918 -2.342698 1.437664 2.561537 1.912020 -2.691135 -1.055958 -0.537653 0.031907 -0.083301 -0.294227 0.748706 -0.188685 -1.876523 -0.558295 2.053382 4.319300 -1.413670 -1.098558 1.489033 0.775633 -1.248131 -2.828292 -1.246859 -1.711121 0.507585 1.022867 0.120530 1.382822 3.237971 -3.888808 2.085371 -0.486542 -0.129715 1.752078 0.887512 -2.251438 -2.164255 -0.335238 1.633373 2.312111 -0.585409 0.499307 1.101030 -2.376822 -0.187345 0.543329 0.175603 -0.621916 1.108077 0.605242 -1.560733 -1.620595 0.730350 -0.561545 -0.840963 -0.087860 1.698640 -0.227884 -3.647193 2.462212 -0.085087 -1.095322 1.077697 -0.834572 2.769271 -2.480869 -2.720018 1.928062 -0.084163 -0.452805 -0.950362 0.536381 1.730904 0.828388 0.645956 -1.601170 -2.410989 1.186773 -0.775340 1.879904 0.967146 0.093604 1.812927 -1.409730 -0.709168 -2.444640 -1.195079 0.132525 0.169589 -2.342785 -1.533785 -0.456787 2.638016 2.077866 0.087607 -1.612522 0.145756 2.557787 -2.851036 -0.639002 1.691958 2.027104 -2.530601 0.399946 2.024199 -2.582872 -0.183776 -0.892569 -0.257865 -0.799483 -2.126416 1.621355 0.212837 1.594742 0.105297 0.612427 0.101070 1.177463 0.924021 0.874194 0.389103 2.879131 2.790519 -0.980509 -1.107146 -2.537725 1.041740 -3.247796 -3.149096 1.414872 0.390313 -1.560449 0.404320 0.218335 2.719124 0.514996 -0.182453 -0.278295 -0.017887 +PE-benchmarks/union-find.cpp__Union(int*, int, int) = -1.333733 -1.322154 0.553003 -2.800232 1.802086 1.356281 0.951957 -1.636503 -2.885076 -0.477385 1.225337 -2.280015 -0.479595 3.320996 -1.215345 2.556481 3.850077 0.880812 -1.468822 -0.813557 3.251728 -0.917230 3.905106 3.602616 -2.840454 -0.321979 0.591715 1.954457 1.522140 0.832905 -0.254186 -0.757441 1.399660 -3.108373 -0.462238 -2.257452 0.612208 1.155131 2.226975 -3.944014 0.702598 -0.676151 -0.140275 -0.568329 -0.883244 0.654805 1.701209 2.718359 -0.998477 1.283800 2.670865 0.161204 -0.401030 0.779817 0.517489 0.595502 0.791844 0.681186 -0.859562 -1.157956 -0.307633 -1.338931 0.989195 2.759817 3.532306 0.143972 0.097379 1.745064 0.685884 0.682896 1.833649 0.526668 -0.832097 -0.111307 1.590704 -4.352032 0.030548 -5.854606 -0.778526 -5.444952 -1.658436 -0.013886 1.972058 -0.876760 1.732038 0.743666 2.841459 -0.068810 -0.882969 2.408718 3.023147 -2.728927 -1.288883 -1.548338 -1.823225 1.043519 -1.773359 0.413977 1.310891 0.681175 -2.305462 -1.678543 1.128129 1.331197 -1.127059 -2.043816 0.402850 2.541623 -2.493500 -2.383757 -0.355946 1.780766 -0.802390 -4.299655 -0.487780 -2.351198 2.907190 -0.112365 -0.946687 -2.482144 0.265247 1.730752 -0.719140 -1.538737 -0.105556 1.708667 1.665829 1.221863 0.116952 -0.016369 0.369668 4.076871 1.610771 -1.975157 -0.020457 0.086689 -1.287245 1.261372 -2.191488 -1.256125 1.394484 -2.761099 0.427417 2.035372 -1.675046 -0.935821 3.440098 0.995869 0.823520 8.692314 0.397776 3.093212 2.527559 -2.658129 0.695975 -0.875249 0.535252 1.598168 1.472347 -0.262687 -4.206731 -2.749836 1.421683 2.900431 2.206357 -3.478373 -1.809481 -0.536906 0.019012 0.133478 -0.354016 0.740242 -0.360656 -2.029611 -0.596961 2.092561 4.640210 -1.464049 -1.400857 1.361840 1.022120 -1.780413 -3.712923 -1.354554 -1.951130 0.659061 0.724168 0.219421 1.701954 3.673358 -5.464134 2.393469 -0.594899 0.117127 2.057990 1.046678 -2.646413 -3.546916 -0.375953 1.491793 2.784561 -0.583004 0.404640 1.720690 -2.771303 -0.168758 0.454429 0.122345 -0.808629 1.286324 0.631219 -1.458211 -1.655327 0.763267 -0.610826 -0.789168 0.119706 2.038803 -0.346199 -4.564261 2.470466 -0.419285 -1.350149 1.185758 -0.854213 2.955657 -2.826956 -2.911934 2.014422 0.056939 -0.578702 -1.798471 0.664522 2.020313 0.441700 0.665896 -1.725776 -2.849776 1.415675 -1.523110 2.095673 1.124027 -0.234200 2.249343 -1.392001 -0.693572 -3.052666 -0.652492 -0.090345 -0.010840 -2.554761 -1.673920 -0.448864 2.802994 2.345236 0.163692 -1.469116 0.433449 3.172087 -3.340948 -1.047298 1.890734 2.415493 -2.526647 1.065457 2.261550 -3.296987 -0.112825 -1.135668 -0.705239 -0.581462 -2.151116 2.271839 0.393928 1.910936 -0.186655 0.865095 0.247172 1.545286 1.069572 0.948241 0.398191 3.491343 4.107581 -1.220783 -1.323895 -2.862445 1.173063 -3.619840 -3.367293 1.371085 0.535741 -1.910996 0.668841 0.292575 3.250680 0.730265 -0.362308 -0.466252 0.275960 +PE-benchmarks/union-find.cpp__isCycle(Graph*) = -2.964294 -1.227559 1.077301 -7.365446 6.177118 6.015555 2.440972 -4.109508 -6.663755 -1.077927 2.785789 -6.702509 -2.779921 8.573875 -3.135937 5.497631 9.353774 0.512096 -3.846591 -1.134745 7.502538 -0.064687 10.129180 8.153427 -7.217552 -0.555509 1.001809 3.745807 1.333639 3.159095 -0.949186 -4.475910 2.969276 -6.124902 -1.607050 -3.126354 1.055940 0.499373 4.812299 -9.178841 1.585275 -0.264959 -1.981227 -1.922449 -2.372359 -0.438548 6.319732 6.672924 -1.542512 1.301152 6.167921 1.555488 -1.477693 1.821494 2.270306 1.010287 1.858000 0.649812 -2.430952 -3.623631 -1.135848 -1.278480 0.747732 7.296025 8.052514 0.955999 -0.143513 4.141240 0.265555 1.860878 3.234634 1.432725 -1.012773 1.440899 3.698552 -7.587733 -0.815464 -11.331095 -1.778241 -10.607795 -4.446199 -0.422055 3.880399 0.011427 4.311920 0.466261 7.431813 -0.398893 -1.749275 5.974694 8.746363 -6.438415 -3.210460 -4.723549 -4.855717 1.801150 -3.803949 1.353043 1.786934 0.820831 -6.447240 -3.621842 1.265826 3.248873 -2.805590 -4.895545 1.088211 6.136153 -5.296316 -4.428217 -0.789268 5.140731 -1.621584 -11.634924 -4.103876 -4.505265 5.070283 -0.448193 -2.413186 -6.719884 1.250972 4.858126 -2.582387 -4.038709 0.240358 4.497795 4.708289 3.075359 0.652732 0.367958 2.424720 10.588183 3.227857 -4.036950 0.150868 -1.089773 -1.594115 2.813053 -3.591196 -1.989742 0.857467 -6.486041 2.222573 6.204462 -3.831148 -1.995347 4.243630 1.476216 2.278549 23.052226 -0.513035 8.149103 4.717923 -7.729135 1.817921 -2.823498 -0.414349 1.927668 3.057990 0.432810 -9.564194 -6.602997 5.229685 7.425908 5.312441 -8.060629 -1.057123 -0.905178 -0.793333 -1.035977 -0.241613 1.962409 -0.405561 -4.803004 -2.060397 6.317853 13.168115 -3.688630 -5.217705 4.670525 3.387979 -2.108669 -6.013189 -3.216408 -3.800774 1.561176 3.795902 0.290944 4.952325 9.440091 -12.086459 5.912387 -0.708139 -1.147461 5.456279 2.079463 -6.260931 -5.295796 -0.798042 5.133044 6.897565 -0.881447 0.245848 1.986942 -6.517042 -0.405900 1.795774 0.450724 -1.807016 3.183647 1.142490 -4.831883 -4.766647 0.375783 -2.345028 -0.858978 -1.534319 4.361789 -1.397556 -12.116544 7.978995 0.420606 -2.524876 1.358023 -2.940062 7.409345 -6.320672 -8.097776 5.028162 -0.939310 -1.906666 -2.324028 1.083158 4.482238 2.635841 3.516225 -5.178145 -7.259098 4.363834 -1.911762 6.335314 2.926033 0.939204 5.202339 -3.400005 -2.172136 -6.758871 -4.941468 2.574144 1.209436 -7.458805 -2.263694 -1.943668 7.149507 4.943277 -0.197125 -5.035969 -1.205122 7.028093 -7.058728 -1.608648 4.647839 4.210058 -7.696976 1.113455 5.984901 -6.266592 -0.716742 -3.343908 -0.915599 -3.795595 -6.720469 3.677854 1.049257 4.339317 0.611049 1.668008 -0.271466 2.777112 1.943308 2.204748 1.154911 8.040486 7.697065 -3.578981 -2.399805 -7.597736 4.142564 -8.906080 -9.700546 4.586362 -0.595959 -4.177415 0.406348 -0.360417 7.377485 0.674035 -0.354153 -1.070517 0.679192 +PE-benchmarks/union-find.cpp__main = -1.205043 -0.736358 1.700255 -3.769049 2.451780 1.075817 1.085324 -1.018146 -3.543216 -0.859651 0.879860 -3.010144 -1.265478 4.149600 -1.200992 1.822722 4.862043 1.038483 -1.724252 -1.044526 3.322773 -1.708308 4.184952 4.045917 -3.472446 -0.052954 0.403683 2.350751 1.151872 2.317130 -0.918909 -1.407661 0.614091 -2.148294 0.647041 -2.392931 0.365399 0.670477 1.117651 -5.216589 0.914264 0.604388 0.613833 -0.949712 -0.686043 1.325599 2.975942 3.015350 -1.158612 0.499177 2.894015 0.135197 -0.190491 0.746190 1.384842 0.787636 2.253752 1.103351 -1.470772 -0.815073 -0.546449 -1.631008 1.097632 3.334167 3.938555 0.247242 -0.095996 1.066273 0.818184 0.947755 1.711815 0.519125 -0.369651 0.025685 1.806286 -3.841497 0.510166 -6.435194 -0.234312 -7.149519 -2.269442 -0.499989 2.865122 -0.297930 1.185819 -0.233059 3.558370 -0.421816 -0.344301 2.232991 3.941114 -2.404760 -1.547007 -2.410708 -2.670575 1.253213 -1.574741 -0.297080 1.941529 0.577851 -2.885869 -1.237811 1.454136 1.193757 -1.356128 -0.835249 0.428553 3.211306 -2.751316 -1.869067 -0.975926 2.148800 -0.195341 -5.087232 -0.061446 -2.734693 1.957966 -0.122424 -1.327125 -2.444296 0.660012 2.031700 -1.660113 -0.851943 -2.171479 3.291957 1.349221 0.987865 0.230010 -0.131107 0.665920 3.166508 1.889933 -2.406532 0.003581 0.313887 -1.772980 0.661095 -2.412607 -1.478340 1.882655 -2.858696 0.002906 1.482470 -2.036720 -0.535101 2.396991 0.774061 1.336939 10.244993 -0.389227 3.560958 1.758462 -3.153267 2.304228 0.117077 -0.110078 1.112580 2.087204 0.155459 -4.507774 -3.166424 1.853438 3.546616 2.667548 -3.633741 -1.458977 -0.869648 -0.706919 0.448702 0.079880 0.569733 -0.553282 -2.349486 -1.066455 1.852306 5.942302 -1.198116 -3.186510 1.419126 1.176279 -1.665564 -3.818743 -1.068411 -1.899703 0.773585 -0.189688 -0.275097 2.689716 4.470744 -7.586782 3.429998 -0.739048 -0.808580 3.376240 -0.034021 -2.340117 -5.120711 -0.537524 2.262089 4.142783 -0.317932 -0.668343 1.219800 -3.122184 -0.214614 0.215854 0.647161 -1.209479 1.536953 0.170217 -2.123298 -1.853020 -0.779223 -1.075513 -0.348165 -0.733909 1.804518 -0.239399 -5.745931 3.609299 -0.179256 -0.819009 0.718340 -0.671245 1.994808 -3.060515 -3.580352 1.528039 0.164561 -1.228445 -2.311212 0.193208 2.404127 -0.125329 0.474639 -2.123681 -3.875452 2.235875 -2.033653 3.027569 1.487583 -0.022876 2.739216 1.466799 -0.714656 -3.034195 -1.016545 0.063154 -0.408368 -2.739831 -0.908143 -1.079382 2.972870 2.658700 -0.023725 -1.020624 -0.317360 3.887634 -2.577347 -1.536655 2.264220 0.027127 -2.660993 1.218651 2.990215 -3.560551 -0.743563 -2.206397 -1.114351 -0.930131 -2.517126 2.063248 0.039634 1.677535 0.207109 0.533643 -0.513375 1.392240 0.894205 0.285075 0.347446 4.496898 4.339347 -1.776192 -0.289575 -3.258902 1.906997 -4.129514 -3.393054 0.997465 0.332567 -2.149773 0.624331 0.439397 3.249804 0.294972 -0.106645 -0.499396 0.440524 +PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -1.993773 -2.278156 -0.799107 -4.657679 2.561855 2.345216 1.395604 -2.485546 -4.851975 -0.857716 2.209849 -4.904937 -0.460031 5.391108 -1.779589 4.457542 6.694259 0.775409 -2.501314 -0.721428 5.514981 -0.742974 6.258566 5.579995 -4.363418 -0.731572 -0.329550 2.694957 2.075987 0.171336 1.386382 -2.033514 2.021986 -5.099384 -1.314191 -3.043623 1.431773 2.078820 4.135834 -6.646600 1.312011 0.299806 0.888367 -1.462207 -1.807413 -0.381364 2.538916 4.467673 -1.359969 1.272781 4.447700 1.009091 -0.925800 1.175471 0.254718 0.275432 -0.223568 -0.412654 -1.659203 -2.382777 0.073749 -1.016352 1.368268 4.417663 5.749820 0.593936 0.227865 3.519634 1.228184 1.143048 3.148547 0.515635 -1.557653 -0.194433 2.388732 -6.274524 -0.806188 -8.539321 -0.866375 -8.634810 -2.449032 0.401569 3.559194 0.182165 2.646317 0.555998 4.091653 -0.653437 -1.397189 5.399219 4.716733 -3.738902 -2.239343 -3.449410 -3.123605 2.174913 -2.890719 0.705766 2.192925 1.608939 -3.729960 -2.274136 1.433430 2.414241 -1.684810 -4.146954 1.274519 3.351846 -3.439248 -3.779163 0.618784 4.234184 -1.152640 -6.757526 -1.582242 -4.014719 2.461773 -0.325537 -1.115619 -3.820595 -0.123045 2.035694 -1.166218 -2.363590 -1.123078 2.492089 2.743766 2.302536 0.348844 0.597850 1.124121 7.355903 0.700975 -3.154766 0.264977 -0.047625 -1.155956 2.114191 -3.466129 -2.497069 2.253113 -4.231026 0.590089 3.438367 -2.520234 -2.021764 3.891201 1.569698 1.355419 14.814174 1.267616 5.365187 4.524647 -4.043025 1.312032 -1.867594 0.531621 1.858602 1.748758 -0.673236 -6.396692 -4.557542 2.297398 4.288422 3.596340 -4.575840 -2.086454 -0.264121 -0.138114 0.038409 -0.845306 1.314167 -0.365928 -3.573570 -0.872737 4.387904 8.346252 -1.500234 0.578566 2.649465 3.274216 -2.904643 -5.797640 -2.179466 -3.556912 1.035014 1.362440 0.654644 2.947377 5.893219 -7.364408 3.655780 -0.030416 1.297933 2.482260 1.715312 -5.007664 -6.412026 -0.850562 2.464512 5.015135 -1.914910 1.733032 2.451184 -4.045962 -0.180603 1.015689 -0.471861 -0.723056 1.528232 0.103031 -1.657785 -2.606216 2.373496 -2.115247 -0.739699 0.105508 3.067382 1.030965 -4.760452 4.088175 -0.641670 -1.847039 1.056743 -1.992406 5.205950 -4.645796 -4.109381 3.234455 -0.166018 -1.217054 -2.200854 1.183266 3.095061 1.004010 1.652591 -2.433468 -4.604775 2.991861 -2.091182 3.285680 1.766488 -0.765270 2.042289 -2.254182 -0.800540 -4.742794 -2.648422 -1.036732 0.720293 -4.853629 -1.664022 -0.643065 4.494158 3.067098 -0.168770 -4.168567 1.069079 4.813654 -4.456320 -1.737521 2.785743 2.531972 -5.009258 1.102916 3.595231 -5.735713 0.661390 -2.185049 0.127250 -1.042756 -3.763707 3.123982 1.396602 3.208611 -0.323037 1.017179 0.674084 2.194359 2.103730 1.126451 0.782928 6.108812 4.540982 -0.915742 -2.377191 -4.994101 1.328016 -5.627683 -6.022106 2.504224 0.602461 -3.636144 1.070938 0.917403 5.405565 1.291377 0.433046 -1.110650 0.784377 +PE-benchmarks/naive-algorithm.cpp__main = -0.398239 -0.145509 0.350919 -1.111323 1.072293 0.657841 0.535266 -0.066296 -1.484847 -0.672479 0.305065 -1.799053 -0.946712 1.809442 -0.439189 0.743688 2.347948 0.529778 -0.519118 -0.128416 0.984349 -0.287544 1.981191 1.822586 -1.304544 0.075433 -0.374251 0.636519 -0.130838 1.053476 0.008910 -1.568644 0.654814 -0.582010 0.021338 -0.854906 0.063347 0.236278 0.268906 -2.476948 0.324907 1.068088 0.279091 -0.464173 -0.155202 0.244437 1.528743 1.252220 -0.163083 0.491420 0.809443 0.274746 0.072750 0.398543 0.534572 0.107438 0.247571 -0.549016 -1.116233 -0.285284 -0.296508 -0.909304 -0.222214 1.267425 1.674723 0.152838 -0.140364 0.248831 -0.126169 0.438990 0.679276 0.247295 0.310732 0.112516 0.724999 -0.571036 -0.265143 -1.788727 -0.214129 -3.130464 -1.121705 -0.340382 1.741258 0.957301 0.381483 -0.632667 1.543501 -0.375553 -0.034111 1.257636 2.001023 -1.095278 -0.831634 -1.066091 -0.669203 0.627494 -0.806413 -0.133199 0.604518 0.109568 -1.380751 -0.617871 0.586781 0.312541 -0.513786 -0.417926 0.200626 1.336450 -1.571141 -0.717126 -0.801979 0.949463 0.179663 -2.119874 -0.489661 -0.484984 0.136664 0.494948 -0.712418 -0.866874 0.507616 0.492461 -0.624786 -0.390130 -1.033789 1.419749 0.305890 0.418463 0.359130 0.416518 0.497670 1.728300 0.547440 -0.822417 0.150051 0.130446 -0.271674 0.414451 -0.788262 -0.723639 0.140130 -1.304825 0.213733 0.644907 -1.023636 -0.412715 -0.571285 0.253333 0.570839 3.681836 -0.190919 1.548913 0.834515 -1.464482 0.964447 -0.378045 -0.200998 0.065141 0.878027 0.347570 -1.094029 -1.236559 0.893164 1.622370 1.175186 -1.228218 0.068456 -0.237903 0.109414 -0.086939 0.314763 0.485480 0.253763 -1.197006 -0.337807 0.984923 2.788596 -0.479790 -1.015611 0.674519 0.650769 -0.113831 -1.148842 -0.370390 -0.535987 0.187502 0.346476 -0.095104 0.821639 1.946330 -2.596033 1.552675 -0.092586 -0.211921 1.215259 0.161295 -1.098669 -1.662493 -0.363095 1.155418 1.975742 0.098036 0.111136 0.197131 -1.324485 -0.190570 0.224580 0.337106 -0.373806 0.710057 -0.098531 -0.939814 -0.847881 -0.540688 -0.463129 -0.235818 -0.568443 0.777058 0.920488 -2.224941 1.584904 0.073552 -0.495510 -0.041915 -0.168141 1.081747 -1.377237 -1.669445 0.638118 -0.544154 -1.328580 -0.551792 -0.046611 0.748583 0.262458 0.257211 -0.523807 -1.498131 1.611757 -0.145555 1.376095 0.688904 -0.018546 1.158384 0.848068 -0.683861 -0.759675 -1.183180 0.425825 -0.645731 -0.977396 0.177847 -0.556610 1.261535 1.308483 0.103438 -1.035878 -0.512453 1.601400 -0.956701 -0.480592 1.274690 -0.151669 -0.943620 0.618731 1.524314 -1.580889 -0.247740 -1.038384 -0.003886 -0.502651 -1.085420 0.544779 -0.344601 0.534495 0.331704 -0.027054 -0.529133 0.425016 0.314113 -0.242715 0.002836 2.042501 1.259750 -0.780400 0.473082 -1.393904 0.721454 -1.822698 -1.571378 0.394827 0.068621 -1.086799 0.140499 0.197332 1.077993 0.124586 -0.088369 -0.630212 0.270070 +PE-benchmarks/matrix-chain-multiplication.cpp__MatrixChainOrder(int*, int) = -4.689246 -5.704959 -5.297362 -9.757589 7.424193 10.667534 4.152476 -9.167280 -11.827329 1.460990 6.700590 -13.465366 -0.069354 12.309246 -4.091355 13.382333 15.808780 0.958697 -8.011918 -0.692114 12.779656 1.120985 17.358173 14.551378 -8.343348 -1.053966 -2.893379 3.943229 2.484535 -2.240169 1.957339 -2.577589 6.991984 -15.440283 -6.622708 -5.244490 1.966335 3.560661 13.680792 -14.689470 2.940472 -2.603551 1.370052 -3.030363 -5.086086 -0.168556 6.573131 10.176040 0.539800 3.632729 8.778658 0.483421 -1.309053 3.149718 1.860192 1.831402 0.407780 0.078860 -3.780751 -7.670549 -0.516865 0.572206 2.026664 9.964167 13.442845 2.696656 -0.778501 9.855738 3.341396 2.453798 7.150993 1.915453 -5.661394 1.179839 3.282480 -16.807501 -1.121384 -16.254464 -3.597770 -14.316193 -5.857351 2.983570 6.780186 -1.230880 8.509081 3.124222 9.808787 -0.880163 -5.351910 11.368231 11.809901 -11.330759 -5.466594 -5.439393 -5.122230 2.286512 -5.274735 3.697888 7.533694 3.845009 -9.652861 -3.452397 3.514742 6.215087 -3.711860 -10.874310 4.099951 7.843051 -5.906816 -9.308245 4.191494 10.898319 -4.030154 -17.955170 -4.944435 -8.092888 5.706690 -0.433665 -3.948885 -11.693412 0.596324 4.750711 -2.555621 -6.551185 1.555532 4.690354 7.549844 6.219588 0.656795 3.488852 3.404069 21.189584 0.261377 -6.838129 2.428309 -1.959782 -1.463962 7.491384 -5.966432 -5.854050 0.028392 -12.427848 5.829271 10.429420 -5.673814 -2.933891 7.843302 6.977782 0.909020 36.449329 1.981649 15.508025 11.577160 -10.830923 2.111032 -7.840102 2.172569 3.452668 2.979550 -2.651162 -18.548671 -10.805454 7.024320 10.959679 7.989845 -13.606732 -3.273974 -0.239315 -0.907935 -0.959172 -1.687570 3.515526 0.646067 -6.613863 -1.965257 11.827012 23.812496 -5.392848 3.578390 7.529226 3.641714 -4.503018 -14.332895 -6.668753 -7.986236 2.580394 4.979271 3.440327 5.699807 13.407387 -11.958498 8.297771 -1.495941 2.519229 8.841132 6.830233 -13.395636 -10.713555 -4.285327 5.953980 11.145915 -5.047713 -0.017475 5.531342 -9.207350 -0.891278 3.796441 -2.547887 -1.232315 3.703737 1.492555 -3.833485 -4.787390 7.139308 -3.256206 -1.314967 0.686623 8.385082 -0.801877 -11.038739 9.552315 0.725079 -5.805395 2.825757 -5.306307 13.208072 -8.179810 -8.618477 8.441922 -0.977092 -1.494273 -4.388780 2.895237 6.078025 4.643732 7.426179 -7.792099 -9.623561 7.074445 -4.708126 8.795461 4.267098 -1.623184 3.780250 -10.162806 -4.072531 -11.611171 -9.635503 -2.747769 3.448478 -12.390938 -2.287179 -1.817744 11.492680 5.326260 1.442465 -12.410296 2.365071 11.171088 -11.288180 -2.570767 6.662940 7.526993 -14.842088 1.246349 8.287683 -12.799455 3.130258 -2.690323 -2.263669 -5.216993 -9.187579 7.064531 5.078302 8.130614 -2.866896 2.808688 4.287780 5.276527 3.918825 5.339665 3.304091 14.814032 7.991449 -1.139874 -7.483465 -12.114664 5.038566 -12.571527 -15.619177 8.289680 3.653853 -9.317342 0.957708 2.169258 13.473074 2.430955 -3.787171 -3.381305 2.305275 +PE-benchmarks/matrix-chain-multiplication.cpp__main = -1.016899 -1.038831 -0.388847 -2.519370 1.993487 2.025290 1.085516 -1.576334 -3.087618 -0.425169 1.567180 -3.857844 -0.957567 3.318485 -1.121068 2.423787 4.237884 0.387198 -1.806448 -0.425532 2.702951 0.052875 4.437616 3.907849 -2.548921 -0.088484 -0.809268 1.281007 0.671062 0.131839 0.533988 -1.360276 1.579383 -2.659924 -0.923543 -1.239782 0.355546 0.520768 2.203221 -4.200742 0.645495 0.341567 0.435969 -0.715112 -0.838589 0.891270 2.325009 2.637610 -0.156522 1.008267 2.309276 0.112702 -0.066960 0.742857 0.584367 -0.226903 0.589840 -0.230508 -1.428372 -1.442957 -0.236310 -0.737569 0.056982 2.739784 3.617403 0.548442 -0.266622 1.647590 0.688904 0.844756 1.725509 0.607698 -0.545641 0.494711 1.173614 -3.027300 -0.195616 -4.300818 -0.682080 -5.142534 -1.898390 0.283267 2.868905 0.405094 1.308698 0.017790 2.833189 -0.027713 -1.032299 2.926494 3.533642 -2.405231 -1.550741 -1.509311 -1.429906 0.970223 -1.515413 0.814331 1.810429 1.085462 -2.665150 -0.618275 0.864180 0.986201 -1.055270 -1.728849 0.754810 2.231502 -2.181338 -1.576124 0.164550 2.503919 -0.038762 -4.791531 -1.165776 -1.758613 1.368274 0.246872 -1.177401 -2.050379 0.370145 0.841437 -0.938639 -0.888742 -1.076147 1.921350 1.510788 1.534149 0.327565 1.090763 1.139498 4.387716 0.273985 -1.793418 0.460566 -0.372442 -0.444122 1.708921 -1.545233 -1.360637 0.491367 -2.911309 1.426489 1.894973 -1.663281 -1.127168 0.671419 1.342512 0.478889 8.614201 0.231302 3.914420 2.604452 -2.737074 0.963477 -1.566700 0.271674 0.758204 1.125820 -0.212646 -3.521985 -2.700529 1.945138 3.145794 2.108308 -3.388847 -0.224886 0.129788 -0.177266 -0.421302 0.106433 0.936626 0.245437 -1.788271 -0.609309 2.914204 5.714120 -1.039502 -0.412802 1.560926 1.048161 -0.558738 -2.982188 -1.230393 -1.174168 0.694209 1.146821 0.688402 1.647154 3.667147 -4.343259 2.511521 0.060898 0.478122 2.449850 1.213656 -3.193512 -3.239207 -0.838057 1.806703 3.095910 -0.646331 -0.360294 1.165819 -2.561953 -0.295858 0.884994 -0.242113 -0.549599 1.173921 0.222158 -1.064643 -1.516919 0.389011 -0.833702 0.079269 -0.474108 2.074144 0.249836 -3.869196 2.793038 0.017560 -1.540129 -0.062110 -1.276635 2.827706 -2.437570 -2.566756 1.601167 -0.870608 -1.761083 -1.579541 0.378176 1.333282 0.809751 1.594932 -1.803550 -2.528294 2.586830 -1.209922 2.492192 1.269531 -0.266459 1.697912 -0.885611 -1.124412 -2.511021 -2.313396 0.223739 0.002132 -2.876649 0.273195 -0.699018 2.596887 1.805172 0.119649 -2.762279 0.171153 2.948881 -2.449391 -1.210391 1.906406 1.024134 -3.092321 1.135899 2.351952 -3.290801 0.495153 -1.491422 -0.817676 -1.293037 -2.373991 1.683906 0.719694 1.773591 -0.236812 0.504883 0.280791 1.320290 0.688863 0.672418 0.649010 4.040946 2.745013 -0.897944 -0.743719 -3.282836 1.597269 -3.508104 -3.928568 1.781482 0.544170 -2.144942 0.173170 0.270937 2.999104 0.633638 -1.146554 -1.282898 1.136281 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -3.074142 -3.708842 -0.244006 -7.336949 4.456082 3.827823 2.204910 -3.571603 -7.980576 0.138407 2.345440 -5.122012 0.698351 8.463019 -2.074593 7.730470 11.188361 2.611323 -3.778335 -0.983460 9.303906 -4.094311 9.017848 9.123818 -6.220255 -0.734682 1.312114 4.691555 2.500242 2.887678 -1.520713 -2.113769 2.742861 -9.527057 -1.252716 -7.735102 1.591196 3.872959 7.271186 -11.445224 2.387902 -1.162030 1.364646 -2.205042 -2.769734 0.704916 3.714059 6.459333 -2.897415 2.462094 6.451682 0.458712 -1.633341 1.809733 1.509073 3.828723 2.247456 4.114742 -2.210145 -2.947574 -0.488408 -1.882366 3.876870 6.058004 9.215829 0.240311 0.361886 5.012586 2.097985 1.124651 4.561202 0.461164 -3.122338 -1.804758 3.442410 -13.025107 -0.617200 -16.278399 -1.342519 -14.557616 -3.628303 0.391488 3.978257 -3.501306 5.086937 1.213751 6.362180 -2.069353 -1.592285 6.033029 6.674632 -6.867009 -3.133247 -5.231301 -5.349013 2.463971 -3.595617 -0.799306 5.684057 0.207189 -5.400784 -4.977550 4.207104 4.475167 -2.467153 -6.051267 1.743002 6.184361 -5.037640 -7.556345 0.023180 5.510093 -3.483257 -10.273138 -0.182351 -7.299094 4.641852 -0.458428 -2.302657 -7.855546 0.434281 5.022111 -2.411613 -4.685458 0.493803 5.705914 3.699454 2.648420 0.546741 -1.398200 0.369895 10.652546 4.122627 -5.379644 0.374976 0.970924 -4.228397 2.268599 -7.015333 -4.253052 4.087681 -7.441450 0.222575 5.298978 -4.181505 -0.441502 11.366679 2.962738 2.205931 25.902696 0.989070 8.178478 5.674636 -6.802115 4.148387 -1.046884 0.926395 3.492103 3.760515 -1.237059 -14.472734 -6.697771 2.648077 6.492049 5.854942 -9.175804 -7.145792 -2.478444 -0.739367 1.912455 -1.659547 1.381783 -0.986795 -5.558072 -1.505937 4.273604 14.695705 -3.453936 -1.877078 3.687707 3.659188 -7.112115 -12.565785 -3.648843 -8.201034 1.467922 -0.042410 -0.407281 4.821167 8.909027 -14.779277 6.058096 -2.891309 -0.413684 5.850752 2.347008 -6.590425 -12.239437 -1.713882 3.614095 9.433283 -2.408104 1.845565 4.268042 -6.086370 -0.299405 0.690311 -0.124506 -1.765517 2.626478 0.603368 -4.123737 -3.069677 3.474437 -2.563896 -3.313145 0.858975 4.304027 -0.025900 -9.674096 5.837695 -0.567454 -2.218107 4.286771 -1.190178 6.534125 -6.412638 -6.964461 5.360090 2.306030 1.129171 -4.349017 1.631799 5.972764 1.173500 1.252334 -3.772092 -10.328059 2.726952 -4.687297 5.224844 2.686275 -1.441462 4.211862 -2.206851 -1.284565 -9.443852 -2.273210 -2.906992 0.657768 -6.361441 -5.697889 -1.369594 7.450931 4.991323 1.113587 -3.768321 0.512529 9.132844 -7.411956 -1.185395 4.788899 4.188146 -7.307458 0.488329 6.072739 -9.567375 -0.210744 -2.373711 -1.213117 -0.866595 -4.724479 5.207812 1.446093 4.574005 -1.109558 1.815801 1.204146 3.244994 3.396915 2.231297 0.676053 9.985167 8.821477 -2.264631 -3.857679 -6.342867 2.165776 -8.464790 -7.843231 2.512690 2.057633 -6.299094 2.180647 2.576195 8.601191 0.811910 1.233586 0.040185 -0.760920 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__findMaxSum(int (*) [5]) = -2.716922 -1.635083 0.287868 -6.230778 5.057602 3.755713 2.591353 -1.518373 -7.314941 -3.399254 2.537690 -8.916984 -4.268195 9.237292 -2.608961 5.130316 12.306476 1.582716 -3.002701 -0.728412 7.643735 -3.182471 10.748219 9.993468 -7.688451 -0.735580 0.316540 4.384077 1.387484 2.958197 1.108056 -6.380717 3.646703 -6.109499 0.049753 -5.311704 1.673487 1.259762 3.500864 -12.651128 1.401252 3.017864 0.288133 -2.184458 -2.112828 2.785452 6.894850 7.190530 -3.165484 2.204398 6.551049 0.454602 -0.989440 1.860654 0.796390 -0.815883 0.092455 1.209210 -4.764074 -2.430473 -0.696493 -4.810165 0.473121 7.144538 10.548363 0.180915 0.342241 3.827825 0.145170 2.299520 3.555628 1.155364 0.892090 0.261268 5.058027 -7.689066 -2.508001 -15.040213 -1.705322 -19.368379 -5.353972 -1.544970 7.732566 1.110946 2.756144 -2.131861 7.667161 -0.465662 -0.717058 8.712117 10.214140 -5.906170 -4.310577 -6.712547 -4.421979 3.909280 -5.232025 0.375848 5.757403 0.503334 -6.961721 -3.672697 2.799678 2.590639 -2.648943 -5.291999 0.750565 6.755608 -7.162789 -4.683558 -3.226641 4.718716 0.159956 -13.137650 -1.857611 -4.049143 3.150756 1.763141 -2.418443 -5.018066 1.092640 3.443792 -2.451839 -3.214748 -2.743341 7.977448 3.427095 3.285681 2.077150 1.737012 2.827938 10.089373 4.335585 -4.225335 -0.295746 0.075482 -3.524783 2.653665 -5.867525 -3.727423 4.250404 -7.543569 2.035380 4.540286 -4.827751 -3.140758 3.839371 1.047345 3.362458 24.998325 0.414100 9.256263 5.461477 -7.755451 5.674356 -2.409767 -0.794595 1.880606 4.260458 0.868287 -10.117357 -6.534429 4.572310 8.198593 5.992900 -9.358046 -2.543904 -0.887533 0.374533 -1.160626 0.090688 3.119931 0.424310 -5.877105 -1.500523 7.416878 14.903062 -3.382717 -4.106608 3.898191 5.085791 -2.670756 -10.391731 -2.471139 -4.653191 1.166759 2.132068 0.024848 4.560450 10.168524 -15.595452 6.939872 0.274114 0.302902 6.193085 1.925470 -7.543031 -13.027491 -0.248414 6.004929 9.450197 -0.328984 1.140596 2.044663 -6.899700 -0.443459 1.698033 0.951047 -1.385964 3.362123 -1.252793 -3.768400 -5.610984 -0.684634 -3.251588 -1.516619 -1.560353 4.389850 3.023525 -12.179863 8.412891 -1.210694 -3.597006 -0.085640 -2.224220 7.088417 -8.206614 -9.043822 4.189591 -2.260373 -5.610189 -5.083971 0.613725 4.173173 1.960882 1.374135 -2.840280 -10.497777 7.077803 -2.845923 6.368607 3.201226 0.260543 7.115838 1.442556 -3.163108 -7.999328 -5.321492 1.552498 -1.929182 -7.367660 -2.165769 -1.637546 7.006161 6.453642 -0.341764 -5.582557 -1.148365 8.662598 -6.884414 -3.490474 5.992060 2.698353 -6.710198 2.793762 7.191249 -9.687103 -0.635851 -5.403772 -0.680759 -2.154419 -6.904000 3.010290 -0.773664 3.561907 1.290148 0.769395 -1.057747 2.842252 2.515023 0.695499 -0.236774 11.051640 10.105562 -5.097903 -0.751997 -8.538315 3.582906 -10.473508 -10.605515 3.508829 1.042100 -4.669040 1.183324 2.646390 6.770448 0.851549 -1.071334 -2.759099 1.310010 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = -0.571668 -0.213550 0.415279 -1.435648 1.342675 0.744345 0.680082 -0.056993 -1.868999 -1.004228 0.425351 -2.250880 -1.314839 2.337047 -0.604294 0.959060 3.145192 0.641062 -0.625432 -0.213991 1.507093 -0.846052 2.627085 2.502717 -1.837133 -0.016954 -0.124033 1.034041 0.030986 1.259568 0.058104 -1.905705 0.874751 -0.982667 0.223070 -1.357415 0.226075 0.261928 0.352019 -3.325418 0.357206 1.154413 0.234512 -0.532408 -0.295733 0.849690 1.950234 1.692472 -0.587814 0.642211 1.331777 0.168594 -0.032474 0.495291 0.460398 -0.075233 0.280923 -0.071402 -1.419565 -0.346624 -0.326756 -1.467505 -0.119084 1.694221 2.497302 0.048750 -0.021058 0.472865 -0.155250 0.615407 0.829831 0.297060 0.469355 0.069428 1.146510 -1.273637 -0.496076 -3.240135 -0.356511 -4.937090 -1.454385 -0.565795 2.241063 0.751035 0.444839 -0.775793 2.002183 -0.232659 0.002620 1.854152 2.656524 -1.392551 -1.107335 -1.552161 -0.959631 0.941213 -1.195549 -0.136623 1.278746 0.085243 -1.771330 -0.831546 0.819926 0.416178 -0.652787 -0.789643 0.119911 1.800480 -2.073262 -0.949101 -1.199642 1.055087 0.275070 -3.099493 -0.343927 -0.757590 0.529548 0.647857 -0.783160 -1.047281 0.533433 0.757209 -0.740309 -0.533991 -1.181266 2.165419 0.498790 0.607649 0.553532 0.479972 0.648782 2.163103 1.107897 -1.044041 -0.014097 0.167976 -0.800388 0.506531 -1.340157 -0.925844 0.762080 -1.837836 0.463801 0.824817 -1.311423 -0.678021 0.078092 0.200815 0.882293 5.468058 -0.159774 2.161564 1.104719 -1.937421 1.550702 -0.432519 -0.272743 0.277105 1.225151 0.394149 -1.917626 -1.566384 1.116262 2.114497 1.519842 -2.065111 -0.352026 -0.340734 0.142818 -0.179303 0.282192 0.735204 0.194323 -1.490114 -0.412768 1.468654 3.680063 -0.717957 -1.414494 0.836843 1.005459 -0.398355 -2.176413 -0.468629 -0.856783 0.249401 0.374781 -0.140181 1.072203 2.544964 -3.985791 1.943228 -0.048791 -0.170969 1.666525 0.250207 -1.563258 -3.047790 -0.198716 1.568166 2.577033 0.160324 0.123229 0.340026 -1.733812 -0.189106 0.315219 0.476900 -0.454471 0.912372 -0.265317 -1.139395 -1.300417 -0.700977 -0.655769 -0.347745 -0.618197 1.003373 1.047517 -3.289397 2.125337 -0.191373 -0.798943 -0.099346 -0.252986 1.441798 -1.952136 -2.306248 0.834669 -0.684268 -1.749110 -1.185315 -0.018394 1.000513 0.297548 0.188705 -0.579100 -2.439650 1.999033 -0.513333 1.681326 0.852313 0.081815 1.889082 1.075986 -0.906786 -1.534608 -1.325897 0.563965 -0.941794 -1.437188 -0.058499 -0.578570 1.637798 1.775551 0.063698 -1.211661 -0.516306 2.238353 -1.406000 -0.833666 1.653898 0.130618 -1.275512 0.898226 1.951164 -2.324687 -0.391875 -1.458567 -0.173135 -0.513086 -1.554500 0.669583 -0.519720 0.697335 0.457295 0.071991 -0.625812 0.631806 0.470484 -0.140958 -0.129531 2.813551 2.328144 -1.327981 0.427582 -1.936056 0.950844 -2.547471 -2.290593 0.555440 0.252382 -1.192075 0.274086 0.508046 1.445759 0.110151 -0.257988 -0.778023 0.326643 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -1.754382 -1.682549 -0.075132 -3.660646 2.425607 2.601160 1.336540 -2.338163 -4.034696 -0.369421 1.398022 -3.772635 -0.252707 4.773922 -1.291801 4.378943 5.617010 1.118168 -2.268918 -0.314258 4.571455 -0.829123 5.320032 4.657734 -3.224564 -0.381687 -0.144586 1.917951 0.978832 1.210842 -0.225457 -1.557269 1.842164 -4.804077 -1.080302 -2.769161 0.730571 1.797181 3.715080 -5.581092 1.175636 0.092577 0.920233 -1.367238 -1.496449 -1.300242 2.532564 3.674910 -0.411007 1.020602 2.854745 0.364927 -0.376326 1.136627 1.070838 1.685525 0.505096 -0.502550 -1.644251 -1.869196 -0.439758 -1.026461 1.351574 3.567139 4.437362 0.595473 -0.049778 2.854492 0.844108 0.780996 2.354736 0.555855 -1.693954 -0.200876 1.581193 -5.940848 -0.038462 -6.210802 -0.955507 -5.547602 -2.319287 0.237971 2.122565 0.506079 3.100085 0.553632 3.726480 -1.227768 -1.067996 3.036557 4.287197 -4.171756 -1.845673 -2.727897 -2.193134 1.101950 -2.170029 -0.010005 1.496326 0.509556 -3.309363 -2.279357 1.715591 2.453300 -1.388971 -3.046060 1.089978 3.451271 -2.858304 -4.131487 0.041856 2.911990 -1.826723 -5.664227 -0.579787 -2.867218 1.575415 0.159558 -1.470800 -4.549653 0.621662 2.519685 -1.055819 -2.820286 -0.569059 2.318626 2.007294 1.442190 0.321957 0.265799 0.632983 6.483018 1.680242 -2.568114 0.518452 0.145315 -1.301952 1.593369 -2.474772 -2.421831 0.373720 -4.121267 -0.312318 3.471728 -2.345061 -0.338620 3.006626 1.757929 1.111388 11.956601 0.337203 4.349573 3.306706 -3.965481 1.720803 -1.458924 0.288236 1.135475 1.663315 -0.127571 -6.419631 -3.877302 2.120257 3.912628 3.196049 -3.645705 -2.170059 -1.062140 -0.067063 0.430599 -0.499259 1.156581 0.026284 -3.317015 -0.819476 2.857745 7.649748 -2.150878 -0.477187 2.509658 1.052655 -2.279386 -5.302282 -2.124673 -3.658218 0.633044 0.577983 0.208067 2.180136 5.075248 -5.177452 3.590853 -1.226806 -0.225669 3.190579 1.095043 -3.688880 -4.151433 -1.250771 2.387803 4.309818 -1.449153 0.748647 1.682179 -3.579825 -0.264958 0.547774 -0.024194 -0.811490 1.579361 0.255435 -2.244432 -1.959441 1.737391 -1.236901 -1.699577 0.099593 2.555455 0.790569 -3.794479 3.671301 0.128673 -1.311708 2.065691 -0.985187 4.085486 -3.419035 -3.747403 3.000141 0.253294 -0.216828 -1.429574 0.835345 2.828871 1.093288 0.643066 -2.208773 -3.858722 1.995752 -1.396809 3.215018 1.539413 -0.446364 1.772150 -0.802214 -1.115478 -3.583373 -2.152584 -1.544511 0.443078 -3.688489 -2.857140 -0.836001 4.368857 2.853668 0.379452 -2.737255 0.082892 4.169174 -4.259456 -0.859466 2.794159 1.596972 -4.278807 0.080051 3.444177 -4.385303 0.051163 -1.312904 0.036108 -1.223254 -3.014296 2.430729 0.690738 2.405434 -0.347716 0.586229 0.567833 1.565031 1.807621 1.046133 0.506692 5.067005 2.945714 -0.833896 -1.922940 -3.821909 1.381160 -4.720380 -4.479979 1.968673 1.387059 -3.425836 0.724918 1.111242 4.426452 0.719900 0.037549 -0.516703 -0.319081 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycleUtil(bool (*) [5], int*, int) = -3.156232 -2.933248 -0.585714 -6.727738 4.588885 4.808421 2.388073 -4.102447 -7.481043 -0.862504 2.667454 -6.992981 -0.584923 8.842371 -2.304864 7.627327 10.494404 1.751473 -4.180081 -0.576747 8.507046 -1.100610 9.640697 8.511438 -5.986079 -0.653198 -0.195595 3.069312 1.828420 1.694286 0.089290 -3.166311 3.348911 -8.507286 -2.200177 -5.015128 1.290369 3.081801 6.777580 -10.323715 2.259634 -0.051787 1.419760 -2.567927 -2.877315 -1.524945 4.897141 6.746249 -1.359029 1.788465 5.562503 1.128095 -1.182634 1.989571 1.429065 2.455466 0.482812 -0.159632 -2.778951 -3.594894 -0.697880 -1.438553 2.336567 6.607760 8.152925 1.095789 -0.127475 5.417055 1.691327 1.639980 4.168800 0.969415 -2.450361 -0.479101 3.040437 -10.491568 -1.025100 -12.223595 -1.665944 -11.281942 -4.077449 0.689833 4.300003 0.446984 5.113577 1.124421 6.797332 -2.082790 -1.994888 6.649188 7.973402 -7.105580 -3.315825 -5.095698 -4.638568 2.219315 -3.794711 0.342265 2.922137 1.087792 -6.145049 -4.329181 2.565850 4.124142 -2.532153 -5.990951 2.121870 5.999374 -5.355708 -6.718560 0.444024 5.761263 -2.799730 -10.584150 -1.638909 -5.450447 3.212234 0.142933 -2.723365 -7.891130 0.948140 4.165461 -2.258059 -4.813325 -0.696309 4.194056 3.628335 3.032734 0.576620 0.161003 1.457155 11.485875 2.967294 -4.918555 1.013346 -0.051719 -1.922497 2.922990 -4.701094 -4.294168 1.201215 -7.488804 0.533722 6.232137 -4.251375 -1.518749 5.527596 2.701507 1.913842 21.744480 0.635576 8.151788 6.039331 -7.333104 2.593720 -2.866096 0.277170 2.187548 3.159680 -0.181893 -10.898082 -7.021594 4.093875 7.201021 5.911393 -6.853928 -3.836241 -1.454447 -0.470708 0.654928 -0.829092 1.978430 0.015493 -6.047573 -1.643712 5.719035 13.919275 -3.451962 -0.479027 4.532158 2.978090 -3.871564 -9.219985 -3.719669 -6.609863 1.337601 2.154372 0.235161 4.333338 9.337914 -10.356572 6.409800 -1.941203 0.069269 4.767988 2.538515 -6.966175 -7.825569 -2.098996 4.538663 8.119927 -2.552879 1.425963 2.993496 -6.428998 -0.511523 1.318659 -0.321698 -1.557216 2.817866 0.475198 -3.914871 -3.586861 3.481217 -2.442195 -2.653554 0.219467 4.658042 1.009626 -7.252308 6.939764 -0.067407 -2.304653 3.026442 -2.069118 7.709721 -6.026212 -6.845029 5.459207 0.275831 -0.630785 -2.700610 1.531981 5.264220 2.206502 1.868673 -3.871201 -7.708783 3.824656 -2.542835 6.012967 2.859513 -0.773679 3.543752 -2.201614 -1.777914 -7.030188 -4.183113 -1.980971 0.961517 -6.913266 -4.628204 -1.537311 7.749604 4.911843 0.360646 -5.585143 0.210067 7.540768 -7.413285 -1.525662 4.966721 3.030585 -7.968586 0.660803 6.289630 -8.040739 0.322847 -2.756485 0.383174 -2.393932 -5.700505 4.300758 1.669664 4.337420 -0.640605 1.191088 1.079670 2.943741 3.282636 1.988757 0.951283 9.132547 5.661567 -1.834208 -3.420003 -7.082905 2.691652 -8.796360 -8.638535 3.773023 2.169344 -6.008243 1.134761 1.173612 8.055614 0.963528 0.370430 -1.074940 0.083177 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycle(bool (*) [5]) = -1.583399 -1.381455 0.340192 -3.792453 2.334009 1.422933 1.225232 -1.188998 -4.236609 -1.248880 0.981007 -3.788272 -0.845873 4.933826 -1.156993 3.216268 6.213614 1.420086 -1.907651 -0.571710 4.461054 -1.903156 4.979556 4.784385 -3.524406 -0.325866 0.039075 2.129686 1.043491 1.560765 0.232945 -1.962064 1.272317 -3.751976 -0.024798 -3.361655 0.793844 1.760129 2.374890 -6.489943 1.229213 0.709145 1.556683 -1.366531 -1.283759 0.407867 2.935120 3.672155 -1.407103 0.813701 3.276624 0.592086 -0.520833 1.012344 0.572385 1.019193 0.544670 0.225886 -1.879125 -1.234475 -0.334077 -1.804395 1.528110 3.618030 4.753500 0.363833 0.099924 2.270693 0.969730 1.149731 2.167839 0.375464 -0.879017 -0.607633 1.891379 -5.440711 -0.638922 -7.901829 -0.474282 -8.608457 -2.452532 -0.269681 3.302649 0.606020 1.834597 0.103144 3.832559 -1.025768 -0.426365 3.835771 4.493747 -3.127546 -1.902564 -3.364131 -2.883301 1.813510 -2.084595 -0.431053 2.331990 0.832175 -3.289636 -2.094404 1.663669 1.753672 -1.380441 -2.553681 0.859920 3.597508 -3.413487 -3.155462 -0.636085 2.993066 -0.777449 -5.958776 0.197975 -3.184632 1.453056 0.295770 -1.385156 -3.408001 0.504682 2.071068 -1.499772 -1.707370 -2.088974 3.338591 1.305090 1.211570 0.487345 0.025661 0.613507 4.929839 2.038823 -2.850615 0.199103 0.558167 -1.713563 0.890915 -3.207900 -2.463676 1.801190 -4.083473 0.151870 2.416162 -2.497351 -1.197580 2.673591 0.913675 1.601190 11.856625 0.218246 4.420585 2.808150 -3.809223 2.603990 -0.637946 -0.078065 1.286239 2.272936 0.017777 -5.397043 -3.742362 1.807953 4.001193 3.352599 -3.605559 -2.543213 -1.059329 -0.478776 0.692323 -0.246614 1.063964 -0.389226 -3.257106 -0.957033 2.706528 7.429466 -1.262935 -0.753066 1.963018 2.101237 -2.416505 -5.499279 -1.564786 -3.582223 0.647947 0.296510 -0.262837 2.568402 5.202331 -7.445328 3.866274 -0.828172 0.162861 2.609377 0.627076 -3.400742 -6.548731 -0.833911 2.705269 5.163735 -1.267905 0.532475 1.533371 -3.524410 -0.257073 0.542382 0.355426 -1.039084 1.556411 -0.287691 -2.051001 -2.065613 1.051399 -1.617588 -1.254013 -0.086095 2.217111 1.141758 -4.590923 3.980707 -0.680545 -1.116970 1.253744 -0.770359 3.348747 -3.566677 -3.903415 2.403292 0.304489 -1.108857 -2.322900 0.565203 3.126429 0.330902 0.264085 -1.524060 -4.876547 2.433957 -1.892368 3.185188 1.623529 -0.415052 2.614641 0.958849 -0.930890 -3.890616 -1.828673 -1.270606 -0.406896 -3.381811 -2.018466 -0.885530 3.853313 3.158865 0.122864 -2.428292 0.272888 4.611128 -3.280133 -1.525514 2.844885 0.154789 -3.592780 1.044166 3.654259 -4.950193 -0.374871 -2.332653 0.338773 -0.605143 -3.006771 2.208828 0.244241 1.989901 -0.033239 0.498427 -0.015247 1.702038 1.840658 0.605153 0.146213 5.535456 3.694473 -1.421176 -0.950786 -3.747775 1.417823 -5.038841 -4.277250 1.152733 1.431566 -2.927028 0.981461 0.837309 4.072956 0.241914 0.499780 -0.678139 0.133245 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -0.504566 0.020325 0.592873 -1.736891 0.982122 0.740543 0.334191 -0.323494 -1.398631 -1.040477 0.402984 -2.027657 -1.109262 1.854932 -0.873358 0.401619 2.395813 0.125303 -0.604446 -0.403255 1.449417 -0.199765 2.251725 2.136687 -2.094223 -0.215283 0.338240 1.304464 0.784519 0.658495 0.568645 -1.451206 0.273490 -0.478662 0.441673 -0.931337 0.468364 -0.010349 0.118614 -2.706502 0.203048 0.706070 0.082926 -0.347207 -0.210104 0.582145 1.762690 1.564041 -0.909319 0.098484 1.817932 0.781196 -0.268007 0.211207 -0.119823 -0.738779 0.434588 -0.299242 -0.716718 -0.424449 0.085648 -0.912714 0.109578 1.938545 2.298529 0.162584 0.159507 0.460332 0.290793 0.536579 0.592470 0.378094 0.122036 0.706438 1.012397 -1.307840 -0.120988 -3.326173 0.094369 -4.007584 -1.123511 -0.641591 1.665469 0.861280 0.115682 -0.451824 1.805243 0.163764 0.136752 2.048599 2.227465 -0.775311 -0.749850 -1.588864 -1.400063 1.139873 -1.119072 0.288627 0.359759 0.734523 -1.353033 -0.608507 0.091561 0.317344 -0.724291 -0.493029 0.030713 1.274955 -1.683843 -0.418095 -0.609971 1.082899 0.395399 -3.009713 -0.777341 -1.260550 0.895089 0.010101 -0.257740 -0.715008 -0.037233 0.735923 -0.544116 -0.071853 -1.764947 1.542257 0.875846 0.486416 0.215845 0.319715 0.804823 1.639684 0.497809 -0.974013 -0.295751 0.092455 -0.695246 0.090033 -1.338167 -0.368165 1.169205 -1.340684 0.384720 0.961216 -0.941479 -1.120168 0.101814 -0.372961 0.987991 5.756210 0.044875 1.876328 1.011269 -1.626171 0.773904 -0.228898 -0.390497 0.478756 0.745533 0.459835 -1.633969 -1.381077 0.906581 1.828406 1.168386 -1.400720 -0.008332 0.067507 -0.384665 -0.390564 0.173966 0.491775 -0.502997 -1.091895 -0.470335 1.715875 2.637444 -0.053577 -0.946710 0.551635 1.480155 -0.548598 -1.129933 -0.214046 -0.511983 0.381997 0.655578 0.015651 1.300134 2.181816 -3.849438 1.479729 0.762947 0.278288 0.913845 -0.072043 -1.450787 -2.385106 0.394267 1.464878 1.689582 -0.351030 0.204885 0.349446 -1.546921 -0.069862 0.517436 0.410209 -0.581734 0.699224 0.065608 -0.824381 -1.445121 -0.394281 -0.831560 0.093568 -0.787317 0.838100 0.188192 -2.868725 2.090147 -0.477939 -0.656703 -0.420898 -1.062992 1.211898 -2.098473 -1.801169 0.619375 -0.426727 -1.391082 -1.054168 -0.035069 1.015991 0.163807 0.663836 -0.989967 -1.940586 1.370885 -0.726545 1.165753 0.751705 0.272497 1.434377 0.309865 -0.203674 -1.603264 -1.102748 0.734317 -0.084466 -1.684102 0.206327 -0.378081 1.215313 1.622821 -0.633261 -1.122041 0.098286 1.656814 -0.939636 -1.090469 0.802176 -0.021914 -1.464515 0.686145 1.169657 -1.892226 -0.230614 -1.582099 -0.038902 -0.316491 -1.645980 0.757264 -0.234471 0.774013 0.646853 0.110557 -0.619316 0.817549 0.449419 0.005786 0.246922 2.214545 1.957309 -0.828037 0.236330 -2.056251 0.834611 -2.447109 -2.311993 0.588605 -0.408328 -0.521026 0.239138 -0.174021 1.466754 0.292971 0.213219 -0.480934 0.649433 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = -0.666419 -0.291605 0.650234 -1.792425 1.537511 0.727005 0.785390 -0.124951 -2.313762 -1.073007 0.422049 -2.604642 -1.302915 2.791835 -0.580750 1.155711 3.502728 0.837107 -0.879994 -0.218353 1.714741 -0.807695 2.828246 2.713432 -1.931413 0.102521 -0.415866 0.993543 -0.029511 1.513827 -0.033942 -1.940874 0.790809 -1.021461 0.215852 -1.460079 0.094290 0.501650 0.455804 -3.746562 0.564627 1.398184 0.760742 -0.733476 -0.317524 0.610077 2.245102 1.919113 -0.508548 0.580148 1.363101 0.232194 0.078331 0.578029 0.689510 0.177724 0.537216 -0.395138 -1.558027 -0.391770 -0.428286 -1.441637 0.050588 1.931390 2.537538 0.192825 -0.185716 0.485957 0.091208 0.737691 0.980662 0.350193 0.327728 -0.057910 1.073833 -1.382885 -0.327699 -3.342057 -0.226500 -4.998052 -1.694002 -0.390828 2.588403 1.264092 0.513639 -0.777177 2.327158 -0.545575 -0.080380 1.847757 2.966277 -1.550134 -1.182828 -1.677230 -1.280340 0.987472 -1.118940 -0.300218 1.124708 0.260972 -2.049486 -0.865471 0.884699 0.463545 -0.776688 -0.569028 0.325461 2.096927 -2.267558 -1.097617 -1.041666 1.405198 0.273597 -3.320608 -0.185592 -1.003756 0.229949 0.644056 -1.087720 -1.311920 0.704030 0.718198 -1.030216 -0.496923 -1.891538 2.282301 0.334315 0.613490 0.486854 0.392454 0.642530 2.240298 1.050214 -1.403204 0.211336 0.221686 -0.619523 0.546500 -1.352072 -1.209071 0.515049 -2.087317 0.234785 0.867963 -1.535305 -0.625465 -0.416377 0.372074 0.842799 5.525387 -0.299369 2.436655 1.214429 -2.175528 1.728886 -0.326250 -0.326483 0.263581 1.413935 0.474357 -1.834892 -1.903500 1.315875 2.479901 1.835513 -1.862448 -0.397484 -0.401724 -0.046134 0.055063 0.452722 0.665510 0.241966 -1.822853 -0.568384 1.398341 4.075932 -0.635564 -1.482604 0.984627 0.920895 -0.381625 -2.135102 -0.573155 -1.133460 0.278323 0.265593 -0.245976 1.329376 2.950894 -4.231760 2.401231 -0.219694 -0.294579 1.821356 0.103511 -1.680912 -3.116882 -0.533400 1.753999 2.994385 -0.027759 -0.089350 0.364450 -2.006298 -0.269061 0.296767 0.438794 -0.660656 1.071321 -0.276117 -1.300111 -1.209875 -0.695922 -0.746971 -0.435764 -0.697155 1.177670 1.191738 -3.165081 2.419621 -0.080071 -0.670311 0.023869 -0.229295 1.451475 -1.924587 -2.432863 0.927499 -0.599093 -1.768873 -1.180658 -0.016281 1.280156 0.213068 0.100823 -0.698281 -2.464386 2.168404 -0.586785 2.079919 1.031002 -0.049891 1.790007 1.768820 -0.906601 -1.396209 -1.411833 0.263740 -0.945093 -1.521175 -0.156041 -0.797169 1.891232 1.914025 0.118965 -1.291704 -0.596617 2.461569 -1.363268 -0.894801 1.875675 -0.656476 -1.488885 0.975470 2.287615 -2.423430 -0.379300 -1.677888 0.000862 -0.662350 -1.625487 0.880703 -0.339067 0.740137 0.360339 -0.041418 -0.651827 0.719279 0.628257 -0.251555 -0.042310 3.135849 1.944388 -1.186746 0.551531 -2.064889 1.091985 -2.801276 -2.261409 0.529296 0.456010 -1.584870 0.238223 0.289087 1.702087 0.037504 -0.105168 -0.811034 0.418135 +PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -4.797555 -5.839452 -3.416558 -11.427137 7.029672 7.667873 3.441849 -7.663365 -12.329612 -0.604838 5.566101 -12.337916 0.294667 12.725881 -4.078847 12.531346 16.038606 1.750171 -7.102815 -1.281683 14.576378 -1.176405 16.531596 13.932837 -9.689509 -1.469471 -0.879811 6.575802 4.501386 -0.147537 1.977031 -3.950485 5.805838 -15.350492 -4.835191 -8.231819 2.741473 4.963896 13.335727 -15.685917 3.380760 -1.024660 1.471038 -3.418232 -4.551489 -0.898278 5.537490 10.335426 -2.665965 3.491368 10.718802 1.613552 -2.593448 2.758294 1.386216 2.290287 0.584125 1.000885 -3.111969 -7.289185 -0.126045 -0.386354 3.709357 10.175167 14.175122 1.320252 0.194336 9.457489 3.946718 2.300615 7.478486 1.283371 -5.034074 -0.782171 4.866180 -18.243511 -2.045825 -21.138525 -2.329932 -19.607993 -5.560015 2.022088 7.662545 -2.328100 7.438452 2.064674 9.562131 -2.144866 -4.074856 12.297035 10.523591 -10.432014 -4.971334 -7.233528 -7.118391 3.981973 -6.093137 2.065466 7.217034 3.482499 -9.327938 -5.768184 3.639153 6.412156 -3.953176 -10.462896 3.458374 8.186448 -8.194863 -9.827040 3.769295 11.455766 -3.978235 -17.267082 -4.020190 -10.376971 7.357209 -1.272264 -3.240477 -10.536102 0.029854 5.640976 -2.756222 -6.509793 0.056698 5.788339 7.724487 5.826616 0.521125 0.986148 2.399433 20.120052 1.821661 -7.482717 1.269274 -0.485129 -2.585637 5.541417 -8.323750 -5.805622 4.399759 -11.198877 2.670400 9.289622 -5.851359 -3.456221 12.538109 5.941452 2.284385 39.490054 3.012314 15.698941 11.980720 -9.872785 2.805885 -5.331646 1.606574 4.554851 3.761067 -1.976166 -19.148313 -11.238899 5.693502 10.235802 8.495641 -13.563343 -5.847352 -1.012411 -0.879498 0.395632 -2.294343 2.552402 -0.438892 -8.283046 -2.216970 10.636336 23.353667 -4.327535 1.982803 6.498574 6.591633 -8.074991 -15.120082 -5.739187 -9.365160 2.743498 3.114214 2.062435 6.970764 13.678508 -17.698525 8.421614 -1.321062 2.650871 7.193414 5.802825 -13.667794 -14.927361 -3.588194 5.342110 12.237578 -5.182998 3.130316 6.244018 -9.409118 -0.554267 2.621932 -2.316856 -1.865735 3.596730 1.391651 -4.314878 -5.284544 6.733871 -4.882221 -2.249613 0.724144 7.535581 0.477329 -13.004772 9.121751 -1.091816 -4.418309 3.756384 -5.022958 13.562572 -10.073424 -9.515272 8.970037 0.716978 -1.659479 -5.163873 2.876849 7.647807 3.742943 5.453260 -6.908175 -11.696228 6.897473 -6.336757 8.180227 4.156829 -2.048854 4.817886 -8.494412 -1.790424 -13.595220 -7.457632 -3.696531 2.730013 -12.808380 -4.658793 -1.693702 11.112034 6.395275 0.336368 -11.063749 2.353513 12.041889 -12.090473 -2.438850 6.400693 7.741439 -14.510791 1.547609 8.375887 -13.794104 2.048107 -3.883392 -1.648523 -3.195994 -8.341441 7.915876 4.370466 8.070516 -1.713632 2.941676 2.485577 5.100850 4.884867 3.775368 3.006902 15.472673 11.798578 -1.885947 -6.978043 -12.514921 4.097061 -12.737609 -15.168221 6.411760 1.840480 -10.088582 2.179947 2.517583 15.175067 3.428150 -0.544104 -1.704257 1.579684 +PE-benchmarks/rabin-karp-algorithm.cpp__main = -1.016325 -0.950869 -0.096507 -2.645331 2.112018 1.781508 1.018963 -1.180640 -3.206564 -0.618684 1.066889 -3.390601 -0.785443 3.488528 -0.944208 2.530693 4.488770 0.801518 -1.533578 -0.318738 3.014878 -0.512516 4.275833 3.737311 -2.546407 -0.054319 -0.425603 1.499715 0.456478 1.078784 -0.004914 -1.960545 1.507483 -2.894621 -0.715924 -2.070865 0.325025 0.867552 2.296200 -4.552701 0.793803 0.699703 0.341537 -0.891316 -0.757972 0.288987 2.250122 2.576823 -0.504950 1.070598 2.234916 0.329821 -0.294307 0.761132 0.847404 0.635449 0.537333 -0.053422 -1.465968 -1.304259 -0.374145 -0.876144 0.334578 2.566874 3.562187 0.281666 -0.164956 1.548028 0.487081 0.680564 1.679246 0.428164 -0.407390 -0.061874 1.341942 -3.326144 -0.517341 -4.778408 -0.580267 -5.767322 -1.868188 -0.002094 2.706886 0.213618 1.468796 -0.276500 2.809604 -0.711402 -0.631415 2.737488 3.341421 -2.645481 -1.469726 -1.892053 -1.582995 1.014444 -1.533054 0.137253 1.781987 0.439500 -2.655016 -1.450966 1.192759 1.210018 -1.037882 -1.811778 0.674539 2.487555 -2.669305 -2.107579 -0.220137 2.491808 -0.451347 -4.460303 -0.943365 -1.896362 1.385416 0.320673 -1.236871 -2.401271 0.574503 1.354607 -1.034126 -1.343124 -0.697194 2.233698 1.405427 1.238824 0.407750 0.451133 0.778895 4.527335 0.969507 -1.830445 0.372575 0.050060 -0.665806 1.199704 -1.903650 -1.490940 0.689860 -2.855534 0.658971 1.909797 -1.808426 -0.695308 1.572893 1.242599 0.775713 9.182789 0.168048 3.829827 2.449005 -2.796251 1.352379 -1.106934 0.061159 0.718005 1.413726 0.055867 -4.014269 -2.740908 1.658691 2.995322 2.296369 -3.373276 -0.870924 -0.451191 -0.045491 0.048346 -0.003540 0.753583 0.261541 -2.267668 -0.649157 2.315393 6.173938 -1.190657 -0.923452 1.508384 1.303965 -1.274733 -3.347993 -1.174229 -1.835517 0.592566 0.703853 0.182210 1.757465 3.733413 -5.136577 2.663180 -0.511966 -0.012414 2.341207 1.093195 -2.984785 -3.635195 -0.968045 1.794388 3.643220 -0.516347 0.372877 1.095567 -2.563886 -0.283970 0.541861 -0.033928 -0.659984 1.213886 0.217538 -1.600528 -1.447839 0.354602 -1.027177 -0.593362 -0.407240 1.800775 0.724737 -4.284376 2.720056 -0.011950 -1.088926 0.604088 -0.782875 2.917746 -2.606745 -2.943969 1.918386 -0.329390 -1.416778 -1.284840 0.313789 1.784855 0.824848 1.055434 -1.530850 -3.189336 2.486516 -1.121973 2.524202 1.251475 -0.322458 1.921438 -0.479006 -0.930189 -2.763138 -2.140133 -0.104033 -0.267087 -2.705858 -0.576667 -0.824118 2.765832 2.100242 0.253085 -2.433559 -0.285064 3.266351 -2.770367 -0.651137 2.138828 1.144113 -2.985002 0.792672 2.644695 -3.409807 0.025652 -1.421279 -0.489041 -0.976781 -2.082502 1.661850 0.280363 1.624571 0.009217 0.435921 -0.125374 1.094803 0.893513 0.355953 0.449768 4.129897 3.135889 -1.114864 -0.551900 -3.050702 1.387811 -3.447140 -3.613265 1.253950 0.384389 -2.558179 0.398250 0.581766 3.241821 0.590334 -0.358028 -0.769186 0.448228 +PE-benchmarks/mergeSort_LinkedList.cpp__MergeSort(Node**) = -1.701254 0.566909 1.072229 -3.180507 2.932483 2.373970 1.109166 -0.903432 -2.498410 -1.704997 -0.344040 -2.863531 -2.403757 4.751838 -1.425816 2.045942 6.152304 1.423686 -0.826644 -0.555225 3.934097 -1.467510 5.182052 4.416499 -4.003798 -0.552791 2.393519 2.155810 0.329146 2.801893 -0.628316 -4.009404 1.700480 -2.408865 0.957141 -3.395647 0.910682 0.440260 0.963553 -6.234379 0.727883 0.019728 -0.413379 -1.144104 -1.222706 0.172946 4.522432 3.624606 -1.919799 0.031435 2.822141 1.824708 -1.025110 1.179525 0.573672 0.941130 0.223529 0.354286 -1.886563 -1.072039 -0.733693 -2.189189 0.579144 3.907076 4.909070 0.429385 0.536446 1.978936 -0.523838 1.096089 0.639319 0.559438 0.733486 0.721971 2.228813 -4.561466 -1.393645 -8.433090 -1.034217 -9.153278 -2.416916 -2.202180 1.435396 -0.182429 1.930568 -0.115220 4.279337 -0.132431 0.951963 3.586243 5.878174 -3.541259 -1.706267 -4.010417 -2.605845 1.813897 -2.390681 -0.013527 1.760943 -0.590751 -3.317718 -3.918657 1.079499 1.436588 -1.379038 -3.100341 0.136120 3.762010 -3.638649 -2.614817 -2.894179 1.015563 -1.064127 -6.528403 -0.693691 -2.180515 2.484216 0.488894 -0.917610 -4.338659 0.762915 3.581573 -1.320303 -2.570837 -0.134817 3.479679 1.889675 0.242497 0.844767 -0.343362 0.800491 5.143855 3.726387 -2.106491 -0.646548 0.364179 -2.473950 -0.485640 -3.495304 -1.388554 1.956354 -3.874672 0.490034 3.590084 -2.563323 -1.436272 2.991650 -1.327252 2.913379 12.305183 -0.674516 2.917592 1.602638 -5.033406 2.187093 -0.779011 -1.281694 0.753745 2.799199 1.474316 -4.973843 -3.474916 1.988258 4.039385 3.217702 -3.562435 -2.170304 -1.891817 -0.245251 -0.491438 -0.286298 1.406955 -1.070013 -2.971711 -1.058635 3.012680 6.645166 -2.156504 -3.161850 2.075646 3.124570 -1.584468 -4.309074 -1.459279 -3.407082 0.297658 1.175736 -0.858051 2.537908 5.369079 -8.542117 3.674105 -0.453122 -0.831297 2.238048 0.471736 -2.279329 -5.022015 0.927346 4.411095 4.447537 -0.417406 1.334136 0.091895 -3.663322 -0.297377 0.563735 1.904289 -1.213727 1.676408 -0.059050 -3.523198 -3.295572 0.111504 -1.256428 -2.246935 -0.490460 1.693967 1.244518 -7.325399 5.494382 -0.822175 -0.798066 1.411015 -1.007323 3.588932 -4.381073 -5.483460 2.512632 -0.055114 -0.780124 -1.305711 0.490929 3.525944 0.542927 0.920541 -1.668751 -5.423373 2.146643 -0.445556 2.859598 1.468539 1.545880 4.224848 -0.709134 -1.547127 -4.209686 -2.178429 0.744904 -0.413164 -3.216536 -2.297249 -0.810498 4.007838 4.602167 -0.434854 -1.946085 -0.777846 4.273635 -4.312300 -0.949242 3.208325 1.982823 -3.214658 0.447869 3.784388 -4.146708 -2.336865 -2.347777 0.786270 -0.663201 -4.259310 0.951459 -1.877961 1.153933 1.686745 -0.073841 -1.062280 1.761378 1.683373 0.827105 -0.164834 4.246285 4.515599 -2.989313 -0.324408 -3.536378 1.377468 -6.102625 -4.762512 1.309067 -0.146009 -1.374903 0.756299 0.411175 3.042862 -0.796269 1.387254 -0.322709 -1.231542 +PE-benchmarks/mergeSort_LinkedList.cpp__FrontBackSplit(Node*, Node**, Node**) = -0.821423 0.087223 0.849829 -1.996318 1.404576 2.137021 0.476763 -0.712881 -1.478018 -0.395493 -0.238463 -1.516552 -0.502577 2.399460 -0.674160 1.421052 3.753747 0.853341 -0.602749 -0.420164 2.309513 -1.855992 3.207042 2.882122 -2.121197 -0.216866 2.179649 1.882911 0.541730 2.059972 -0.983711 -2.169544 0.453575 -1.796142 0.654958 -2.720233 0.458187 0.489762 0.976495 -3.982360 0.472532 -1.069178 -0.285981 -0.618303 -0.653278 0.466253 3.190065 1.819703 -1.047536 -0.032191 1.618852 0.704207 -0.455678 0.497872 0.509966 1.249819 1.891646 1.417431 -0.717492 -0.451993 -0.235225 -0.915161 1.021451 2.038300 3.065498 0.188355 0.267471 1.114102 0.243285 0.278043 0.483194 0.264114 -0.376821 0.259306 1.006860 -4.376202 0.034130 -6.788556 -0.295562 -5.228898 -1.173257 -1.025566 0.290662 -1.219355 1.390479 -0.106076 2.188757 -0.406926 0.529925 1.813760 3.374317 -2.058745 -0.761696 -2.062261 -1.668852 0.810545 -1.051419 -0.360908 1.638327 -0.387047 -1.528382 -2.842461 1.668812 1.168193 -0.794084 -2.091837 0.167754 1.929006 -1.587416 -1.974277 -1.152076 0.547456 -1.119018 -3.889396 0.423975 -2.237761 1.651699 -0.028067 -0.428928 -3.558337 0.239744 2.979752 -0.768645 -1.475952 0.240986 2.481735 1.138656 -0.009868 0.258705 -0.652504 0.212644 3.314005 2.741946 -1.343899 -0.311226 0.498605 -2.263163 -0.464255 -2.611155 -0.940065 1.363307 -2.041723 -0.378604 2.608349 -1.287290 0.004230 3.671613 -0.346025 1.462256 10.124070 -0.285953 1.476855 0.760397 -3.271783 2.096082 0.072308 -0.533604 0.612834 1.411321 0.566762 -5.676395 -1.875776 0.706765 2.002225 1.658150 -3.206180 -2.105118 -1.269154 -0.473213 0.374134 -0.346340 0.445954 -0.855492 -1.563925 -0.590065 1.587626 5.467994 -1.120889 -1.933594 0.956981 1.147249 -2.196435 -4.142560 -0.822703 -2.456918 0.239434 -0.257915 -0.525447 1.540461 2.691832 -6.120870 1.990586 -0.790136 -0.810063 2.257487 -0.020892 -1.032539 -4.179893 0.337890 2.735112 3.034695 -0.539839 0.512051 0.392740 -1.872350 -0.105546 0.029682 0.904689 -0.819663 0.858025 0.167234 -3.091916 -1.425918 0.023237 -0.626199 -1.463797 -0.457898 0.828113 0.139812 -4.922002 3.349338 -0.294201 -0.227383 1.432866 -0.439446 1.953388 -2.240392 -3.271287 1.321340 0.768703 0.584676 -1.342003 0.194246 2.078110 0.003888 1.074851 -1.220674 -4.384227 0.459805 -1.340070 1.379024 0.810809 0.490334 2.466676 -0.341892 -0.453619 -3.713467 -0.875904 -0.206988 0.119769 -1.585605 -1.877346 -0.509417 2.195004 2.331276 -0.114876 -0.432398 -0.575784 2.912925 -2.908054 -0.424389 1.414784 1.837591 -2.583724 -0.276188 1.784790 -2.794473 -1.133140 -1.002375 -0.486611 -0.077852 -2.601091 0.877502 -0.784709 0.714034 0.626884 -0.015815 -0.310273 0.994135 0.908667 0.502939 0.020984 2.887897 3.556738 -1.163699 -0.493878 -1.723957 0.638833 -3.729049 -2.798063 0.412308 0.247710 -1.088069 0.554552 1.186836 1.872607 -0.301242 0.940271 0.301412 -0.945299 +PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -2.333099 0.641709 2.125905 -5.287345 4.182123 3.642254 1.364783 -2.070743 -3.736886 -1.466568 -0.350004 -3.563232 -2.157505 6.550987 -2.118430 3.397618 8.364690 1.728655 -1.637343 -0.812229 6.108901 -2.197264 6.824389 6.100050 -5.770677 -0.761594 3.617238 3.024690 1.075498 4.075886 -2.191913 -4.310107 1.714071 -4.278572 1.242399 -4.886218 1.230905 0.642524 2.470172 -8.449490 1.173302 -0.780363 -0.724924 -1.674191 -1.830743 -0.198132 5.927396 4.981021 -2.855150 -0.355688 4.393043 2.378942 -1.702360 1.402275 1.140508 2.278094 1.515246 1.950086 -1.929969 -1.648554 -0.863599 -2.073619 1.840457 5.708793 6.609875 0.729486 0.732458 3.033280 0.145431 0.905272 0.981122 0.780922 0.086696 1.259400 2.841654 -7.868604 -0.818573 -11.973008 -1.137606 -11.045592 -3.121407 -2.660676 0.808624 -1.338932 3.393743 0.182970 5.892906 -0.602519 1.173977 4.272634 7.584384 -5.463700 -2.126520 -5.608111 -4.456920 2.001457 -2.996843 -0.152025 2.075238 -1.131777 -4.421215 -5.546124 1.823506 2.772865 -2.013658 -3.929417 0.468278 5.113875 -4.293963 -4.363356 -3.078461 1.603950 -2.347148 -8.826369 -0.678050 -3.907308 3.808514 -0.049844 -1.323582 -7.024650 0.785700 5.644715 -2.128633 -3.955994 -0.146982 4.909503 3.323603 0.457612 0.690682 -1.487060 1.130453 6.998188 5.032408 -3.353275 -0.750899 0.452954 -3.849314 -0.890065 -5.006389 -1.932812 2.878143 -5.256007 -0.205796 5.307335 -3.419477 -0.761359 6.168333 -1.385739 3.872751 18.677649 -1.018258 4.230397 2.046660 -6.991735 3.380782 -0.513649 -1.699885 1.258408 3.568437 1.914320 -9.155346 -4.998264 2.755167 5.529106 4.422098 -5.173745 -3.722079 -2.839083 -1.104833 -0.066686 -0.775961 1.465862 -2.068691 -4.157870 -1.712727 3.803076 9.796158 -3.105898 -4.546585 2.903323 3.598901 -2.978153 -6.600298 -2.230509 -5.493714 0.768690 1.093221 -1.287834 4.231321 7.441904 -12.386501 5.052590 -1.421001 -1.962038 3.797771 0.481143 -3.195961 -6.558049 1.185724 5.718114 6.011611 -0.824269 1.498711 0.577424 -5.028547 -0.342433 0.543326 2.420553 -1.992565 2.241552 0.614337 -5.175714 -4.364355 0.656226 -1.868201 -3.454226 -0.590565 2.369040 0.059337 -9.710459 7.439196 -0.589674 -0.667408 2.776448 -1.766478 4.498940 -6.045437 -7.134449 3.710851 1.016781 0.695131 -1.653980 0.660078 5.194415 0.676914 1.298978 -3.388355 -8.175699 1.872719 -1.233687 4.070546 2.057310 1.953729 5.026354 -0.893389 -1.334470 -6.310995 -2.464251 0.432378 0.630838 -4.872217 -4.248406 -1.258678 5.853689 5.993898 -0.789689 -2.026212 -0.937187 5.741962 -5.870159 -0.927440 3.893465 2.635417 -5.165361 -0.568114 4.841078 -5.443896 -3.016191 -2.872314 0.477834 -1.097365 -5.489358 1.761448 -1.906742 1.923311 1.971815 0.137722 -1.036397 2.453174 2.311745 1.479046 0.261904 5.749966 6.234783 -3.561293 -1.222540 -5.031704 2.155742 -8.173451 -6.518097 1.989185 -0.258055 -2.440120 1.007862 0.874256 4.884533 -0.998694 2.363442 0.489227 -1.913282 +PE-benchmarks/mergeSort_LinkedList.cpp__printList(Node*) = -0.296711 0.047455 0.276293 -0.891003 0.549667 0.579538 0.161604 -0.147263 -0.645111 -0.464063 -0.003575 -0.921881 -0.429747 1.013703 -0.342159 0.380827 1.403676 0.200931 -0.200230 -0.161187 0.761610 -0.420427 1.253328 1.117524 -0.982322 -0.092491 0.567533 0.740523 0.196722 0.680464 0.134552 -1.133795 0.088120 -0.291588 0.301131 -0.814036 0.234459 0.196061 0.145203 -1.606698 0.168378 0.210489 0.094697 -0.241636 -0.178634 0.042006 1.262608 0.799317 -0.526091 0.033270 0.800917 0.507668 -0.166016 0.152216 -0.006772 -0.034835 0.376934 -0.064982 -0.360152 -0.160443 0.021142 -0.388855 0.217599 0.919017 1.253791 0.047878 0.097302 0.307498 0.074488 0.257974 0.233119 0.144570 -0.053364 0.189207 0.442455 -1.112370 -0.139339 -2.484989 0.071421 -2.240003 -0.557887 -0.369794 0.608318 0.346848 0.211437 -0.239798 0.942515 -0.051570 0.192768 1.052772 1.369049 -0.472661 -0.341853 -0.899176 -0.798648 0.576657 -0.483533 -0.058682 0.288556 0.223367 -0.655646 -0.835101 0.286490 0.242614 -0.360088 -0.561463 0.052267 0.674504 -0.842388 -0.460183 -0.371344 0.528194 -0.053457 -1.641570 -0.119009 -0.804744 0.355428 -0.006617 -0.127899 -0.908147 0.011087 0.751558 -0.343023 -0.211561 -0.689649 0.874718 0.403016 0.081260 0.145537 -0.063999 0.260100 1.124357 0.593172 -0.585106 -0.166089 0.186209 -0.508958 -0.133415 -0.929056 -0.308707 0.519705 -0.796856 0.052442 0.663299 -0.516696 -0.417789 0.464251 -0.311390 0.584406 3.601935 -0.038305 0.715188 0.445416 -1.182096 0.656494 -0.016207 -0.276776 0.229953 0.512488 0.244809 -1.313394 -0.738848 0.354752 0.890280 0.676561 -0.812971 -0.456931 -0.175563 -0.225019 0.002280 0.029958 0.207125 -0.362529 -0.635150 -0.239414 0.795069 1.786237 -0.028616 -0.497157 0.332965 0.967268 -0.611255 -0.966816 -0.172413 -0.801409 0.109190 0.163486 -0.139836 0.669531 1.131444 -2.428543 0.812272 0.189883 0.040800 0.488929 -0.077342 -0.564877 -1.671735 0.193285 1.063564 1.133524 -0.334634 0.403482 0.122574 -0.770532 -0.027550 0.147690 0.268615 -0.365209 0.348294 -0.067124 -0.979670 -0.642881 -0.082291 -0.477328 -0.280449 -0.406605 0.352597 0.406949 -1.761847 1.336041 -0.260339 -0.183177 0.162532 -0.367437 0.826190 -1.019531 -1.195218 0.391701 0.004222 -0.287758 -0.463202 0.014938 0.707852 -0.060794 0.409631 -0.365932 -1.368910 0.430562 -0.401384 0.541135 0.381155 0.129724 0.847614 0.037762 -0.140839 -1.129742 -0.588329 0.224478 -0.074293 -0.671135 -0.180696 -0.217844 0.716543 0.922189 -0.171892 -0.528287 -0.073494 1.030728 -0.700198 -0.345848 0.499310 -0.005296 -0.812273 0.146869 0.696158 -1.091562 -0.264882 -0.759037 0.194059 -0.040531 -1.066736 0.354774 -0.208087 0.293424 0.330834 -0.055807 -0.321594 0.446321 0.384679 0.009937 0.035214 1.224659 0.955034 -0.363132 0.091912 -0.882656 0.216481 -1.513268 -1.058987 0.122054 -0.081268 -0.328464 0.186711 0.063616 0.695984 -0.050554 0.517196 -0.084713 0.005128 +PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.353194 -0.059529 0.932640 -1.024147 0.652412 0.073304 0.270251 -0.209191 -0.911299 -0.434399 0.054789 -0.627959 -0.467102 1.159442 -0.531632 0.216953 1.660380 0.568284 -0.316385 -0.608333 0.932268 -0.860792 1.329622 1.403869 -1.202079 -0.084382 0.639530 0.873337 0.647457 0.878027 -0.567501 -0.402719 0.261363 -0.548750 0.556842 -1.092483 0.158384 0.104796 0.002365 -1.729641 0.186505 -0.263242 -0.021953 -0.134892 -0.090200 1.106790 1.039879 0.857360 -0.481104 0.254368 0.950208 0.175204 -0.111959 0.217784 0.366110 0.347294 1.046429 0.657148 -0.433977 0.019247 -0.239489 -0.873721 0.371000 1.092592 1.340772 0.056340 0.112782 0.123579 0.213220 0.223599 0.438063 0.158036 0.131292 0.196607 0.606662 -1.569595 0.239086 -2.607738 -0.189907 -2.960097 -0.623001 -0.587128 0.685894 -0.751639 0.254861 0.149816 1.127154 0.070105 0.189006 0.566244 1.322455 -0.854206 -0.478828 -0.718119 -0.754453 0.377267 -0.596637 -0.054698 0.674124 0.098465 -0.784029 -0.725130 0.684262 0.302017 -0.376185 -0.110292 -0.052488 1.076532 -1.128443 -0.523476 -0.866765 0.147021 -0.039464 -1.542612 0.329374 -0.903343 1.372927 0.063971 -0.387765 -0.801964 0.242864 0.989993 -0.465451 -0.233724 -0.498473 1.191035 0.378394 0.124306 -0.014971 -0.183097 0.087407 0.767781 1.138804 -0.722610 -0.171427 0.267248 -1.085231 -0.154141 -1.062418 -0.367159 1.050891 -0.814450 0.020665 0.429419 -0.694742 -0.276629 1.436665 -0.084285 0.706529 3.138644 -0.228364 0.816737 0.302909 -1.047577 0.632503 0.137883 0.008469 0.403845 0.838628 0.227683 -1.617634 -0.929653 0.399920 1.067196 0.765528 -1.372544 -0.716377 -0.536013 -0.168665 0.217672 -0.049347 0.209370 -0.489861 -0.640045 -0.338513 0.329150 1.783928 -0.471854 -1.236264 0.138821 0.106582 -0.592790 -1.419157 -0.220159 -0.354409 0.328057 -0.178390 -0.162564 0.789927 1.353303 -3.079088 1.078108 -0.444578 -0.351572 1.022427 -0.032996 -0.432445 -1.741778 0.132602 0.824531 1.272430 0.205137 -0.212390 0.435494 -1.003346 -0.083778 -0.075135 0.661110 -0.468810 0.457913 0.374614 -0.935921 -0.756644 -0.387660 -0.039262 -0.273634 -0.130634 0.472082 -0.321577 -2.538456 1.202964 -0.240831 -0.230080 0.332123 -0.100492 0.424513 -1.175533 -1.223073 0.380523 0.138077 -0.330116 -0.933323 -0.022537 0.871810 -0.294138 0.148933 -0.670464 -1.510392 0.555969 -0.697634 0.792823 0.394330 0.186022 1.366424 0.300305 -0.131563 -1.164120 0.138698 0.079513 -0.366544 -0.626031 -0.271638 -0.222141 0.877481 1.197574 -0.116447 0.107692 0.041805 1.310780 -1.105849 -0.541021 0.685770 0.659848 -0.507432 0.547366 0.840502 -1.280477 -0.629142 -0.616203 -0.648084 -0.016088 -0.731726 0.600096 -0.514079 0.425947 0.244526 0.267151 -0.335901 0.520730 0.162767 0.118150 0.073787 1.292075 2.239931 -0.803043 0.089102 -0.932015 0.605775 -1.435504 -1.020926 0.085740 0.096280 -0.437216 0.336942 0.145424 0.919376 0.073134 -0.061851 -0.090765 -0.004237 +PE-benchmarks/mergeSort_LinkedList.cpp__main = -1.032446 -0.196225 2.692921 -3.094330 1.842024 -0.150185 0.865527 0.374927 -2.996789 -1.856900 -0.119354 -2.211090 -2.167007 3.691042 -1.328137 -0.107363 5.252322 2.119524 -0.832204 -1.614344 2.413369 -2.127323 3.926699 4.352210 -3.620417 -0.104341 1.021862 2.914647 1.554410 2.787396 -0.496605 -1.925721 0.672330 -0.283626 1.957482 -3.515359 0.436504 0.667144 -1.222201 -5.935031 0.679861 0.621846 0.436704 -0.468148 0.144153 3.397591 3.297375 2.691898 -1.665587 0.696885 2.610893 1.043578 -0.054997 0.731227 0.665442 0.262220 2.133537 0.687177 -1.595118 0.187333 -0.618904 -3.147985 0.711645 3.165031 4.191700 0.170930 0.186691 -0.330844 0.639327 1.152233 1.352786 0.458225 0.974435 0.094896 1.873472 -2.909268 0.131404 -7.362194 0.006556 -9.650793 -2.175588 -1.905371 3.706905 -0.327697 -0.315563 -0.610491 3.564129 0.098356 0.794228 2.629874 4.034280 -1.598843 -1.411378 -2.524527 -2.280934 1.950273 -1.706994 -0.436894 1.807971 0.937183 -2.459546 -1.720203 1.407776 0.024222 -1.286964 0.060406 -0.194075 3.450974 -3.778854 -0.683517 -2.801256 1.338135 0.855384 -4.694296 0.480161 -2.728767 3.063083 0.328350 -1.084780 -1.044175 0.697734 1.855580 -1.473066 0.311902 -3.129691 3.812420 0.535776 -0.111727 0.153379 -0.027406 0.075445 1.591879 2.619864 -2.253397 -0.553321 1.194219 -2.608993 -0.574949 -3.481308 -0.934093 3.190603 -2.442657 0.199014 0.577004 -2.248042 -1.657504 1.767256 -0.542177 2.192657 8.818325 -0.529073 2.473703 1.248978 -2.824219 2.222142 0.835236 -0.136510 1.406432 2.753798 0.717695 -3.175490 -2.756865 0.852127 3.397141 2.526256 -3.222042 -1.407047 -1.331202 -0.529082 0.304809 0.443665 0.571629 -1.198538 -1.977314 -0.962803 1.202569 4.609857 -0.494578 -3.753412 0.189901 1.477018 -1.547604 -3.188564 -0.362836 -0.538806 0.593125 -0.135954 -0.634210 2.383487 4.200264 -9.050854 3.482121 -0.263006 -0.316871 2.393296 -0.394305 -1.273301 -5.640439 0.296633 2.593487 4.434143 0.299957 -0.564114 1.058971 -3.158168 -0.343166 0.181520 1.924012 -1.461317 1.504127 0.546419 -2.121905 -2.014795 -1.813868 -0.602360 -0.303355 -0.875452 1.414080 0.166364 -7.157683 3.587396 -1.183735 -0.749036 0.344421 -0.349704 1.322408 -3.535811 -3.759377 0.848781 0.234260 -2.445863 -3.067540 -0.064865 2.846949 -1.062278 0.417906 -1.492529 -4.162623 2.662318 -1.858123 2.374327 1.396884 0.335034 4.143769 2.095339 -0.663284 -2.972359 -0.452929 0.835599 -1.549802 -1.562668 0.243143 -0.891983 2.150660 3.923645 -0.347922 -0.389436 -0.006402 4.359474 -2.421044 -2.078499 2.288250 0.296683 -0.846506 2.607722 2.871801 -4.167932 -1.953650 -2.622950 -1.037956 0.426352 -2.252100 1.980257 -1.691638 1.121387 0.980603 0.482653 -1.560799 1.725775 0.712519 -0.306996 0.105914 4.452899 5.820567 -2.261365 1.320584 -2.637402 1.715719 -4.455680 -2.483959 -0.381815 -0.227356 -1.006669 1.168106 -0.127936 2.517817 0.110651 0.253579 -0.806375 0.462075 +PE-benchmarks/tarjan-algorithm.cpp__Graph::Graph(int) = -1.065045 -1.091240 0.397794 -2.880868 1.590059 1.126466 0.776590 -1.114850 -2.235303 -0.333864 1.324552 -1.360350 -1.092358 2.626712 -0.833288 1.475699 1.540103 -0.373644 -1.636414 -0.870990 2.513151 -0.978867 2.524549 1.468141 -2.523991 -0.288118 -0.348416 1.965832 0.763159 1.367521 0.353198 -0.049643 -0.269311 -0.934801 0.398762 0.069996 0.481554 0.487506 0.436485 -2.241242 0.554423 1.325369 0.997471 -0.619996 -0.761149 -0.442517 0.942338 2.202528 -0.172108 0.028468 2.385248 -0.212172 0.254844 0.396161 1.091862 0.104403 1.751852 -0.147152 -0.354071 -1.191988 -0.287479 -0.473503 0.887398 2.135641 2.535853 -0.430207 0.000705 1.018199 0.306452 1.410213 1.672500 0.332332 -1.194381 -0.648243 1.663784 -1.357908 0.333545 -2.394678 0.219915 -2.413931 -1.298022 0.206216 1.609627 0.843997 1.033075 -0.034750 2.249198 -0.040309 -1.122410 0.612685 1.333885 -0.613173 -0.760558 -1.308962 -1.725243 0.556193 -1.206310 -0.309625 0.768066 1.323558 -1.732910 0.551646 0.098295 0.998993 -1.158708 -0.611942 -0.292426 1.767619 -1.042306 -0.964747 0.473405 2.254369 -0.333811 -3.206310 -0.858204 -2.341069 -0.197264 -0.902446 -0.012082 -0.444756 0.158106 1.153668 -0.716948 -0.755397 -1.738925 1.345506 1.306281 0.662071 0.108552 0.217000 -0.035735 1.855967 0.307743 -1.159696 -0.664373 0.187220 -0.430331 1.204961 -0.557106 -0.530067 0.523422 -1.505518 -0.003106 0.517016 -0.424573 -0.342089 -0.073026 0.838113 0.543622 5.068871 -0.082308 2.282733 1.133219 -1.190609 1.033270 0.361715 0.382397 1.041877 0.874645 -0.985705 -1.441420 -2.059728 1.419178 1.784429 1.367234 -1.474311 0.167936 0.035512 -0.403690 -0.223470 -0.000430 0.289518 -0.232934 -1.315802 -0.611928 0.798850 3.012731 -0.651842 -2.021661 1.680521 1.186984 -1.618526 -1.404103 -0.755178 -1.279045 0.145343 -0.164566 0.190063 1.598327 2.504372 -2.521467 1.790185 0.073067 -0.349956 2.237067 -0.888105 -1.281493 -2.847615 -0.443117 0.233535 2.158615 -1.008885 -0.723917 0.786472 -1.919088 0.457762 -0.023938 -0.389713 -0.416701 0.986191 -0.699792 -0.522282 -1.071287 -0.750912 -1.111881 0.803972 -0.730959 0.868065 -0.103306 -2.042772 1.708602 -0.314217 -0.592377 0.148617 -0.107267 1.681541 -1.155550 -1.580943 1.102367 0.064346 -0.670224 -1.975229 0.390720 1.331388 0.007606 0.172596 -1.605902 -0.834893 1.423365 -1.842129 1.736998 0.873465 -0.303459 0.438122 1.510713 -0.286050 -1.386871 -0.637055 -0.261359 0.226648 -2.254418 -0.422969 -0.642164 1.821266 0.574819 0.202792 -0.753679 -0.188155 2.553901 -0.801211 -1.332272 0.844582 -1.008693 -1.756873 1.136931 1.594767 -1.346824 -0.107038 -1.598584 -0.262419 -1.243429 -2.015561 1.879096 1.106354 1.912102 -0.495679 0.887995 0.123995 0.569985 0.673676 -0.067161 -0.257990 3.177373 1.193679 -0.938137 -0.923121 -2.208999 1.318985 -1.535737 -1.358586 0.776772 -0.035305 -1.028146 0.538028 -0.298880 2.454892 0.663988 -0.151995 -0.460183 0.048109 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/tarjan-algorithm.cpp__Graph::addEdge(int, int) = -0.454251 0.014732 0.737724 -0.972307 0.719048 0.751984 0.286951 -0.568509 -0.833791 -0.270499 0.082470 -0.896132 -0.548274 1.184565 -0.622334 0.471466 1.539444 0.427119 -0.479657 -0.309499 0.865459 -0.210421 1.524448 1.421868 -1.094266 -0.095007 0.365177 0.856315 0.366998 0.911859 -0.474065 -0.587194 0.393821 -0.510509 0.172924 -0.832434 0.104214 0.100763 0.198484 -1.615454 0.160191 -0.052453 -0.142967 -0.165116 -0.075904 0.326587 1.103486 0.915913 -0.068903 0.141988 0.711291 0.390920 0.023148 0.270416 0.445985 0.306988 0.924477 -0.053131 -0.387082 -0.300005 -0.285318 -0.606537 0.108261 1.167968 1.311503 0.248529 0.019658 0.132022 0.034350 0.220839 0.354740 0.299018 -0.099247 0.520522 0.387399 -1.133039 0.468517 -1.526948 -0.185959 -1.624686 -0.612468 -0.443547 0.404118 0.108856 0.526793 0.056515 1.238147 -0.029719 0.015189 0.495658 1.422202 -1.070540 -0.401346 -0.576858 -0.599566 0.240514 -0.599605 0.101817 0.072012 0.217476 -0.847853 -0.683135 0.429039 0.374255 -0.429581 -0.077093 -0.010372 1.019889 -1.089876 -0.604593 -0.599520 0.263622 -0.221227 -1.669155 -0.319942 -0.782149 0.944887 0.009974 -0.426294 -1.047607 0.348574 0.935671 -0.272332 -0.425461 -0.493371 0.928113 0.524029 0.026143 -0.065022 -0.014139 0.151247 1.239612 0.698412 -0.590751 -0.053584 0.100201 -0.742685 0.011652 -0.758564 -0.206041 0.205106 -0.941423 -0.022334 0.882624 -0.662793 -0.125993 0.428439 0.012067 0.577855 3.354099 -0.293393 0.896381 0.533574 -1.216236 0.386493 -0.142657 -0.047121 0.254260 0.537465 0.389814 -1.655034 -0.963328 0.618786 1.179090 0.758463 -1.056510 -0.124293 -0.394841 -0.071765 -0.070947 0.100419 0.264635 -0.361278 -0.717938 -0.339809 0.546513 1.880693 -0.527294 -1.090521 0.422884 -0.085707 -0.376152 -0.967412 -0.337365 -0.233656 0.212137 0.176298 -0.070018 0.629806 1.382166 -2.073271 1.079765 -0.177932 -0.403914 1.186560 -0.056876 -0.568270 -0.704173 0.003596 0.925696 1.081285 -0.007391 -0.187303 0.234428 -1.096552 -0.119598 0.119038 0.557740 -0.477375 0.555793 0.535116 -0.981104 -0.798941 -0.350340 0.003859 -0.381989 -0.375710 0.597345 -0.309046 -2.042930 1.291191 0.062449 -0.275016 0.364273 -0.286141 0.636042 -1.128742 -1.245923 0.550594 -0.053018 -0.328843 -0.525010 0.048870 0.779591 0.147165 0.357933 -0.935953 -1.111113 0.570698 -0.359412 0.836117 0.408109 0.311575 0.919589 0.114779 -0.242586 -0.918799 -0.317622 0.227053 -0.076549 -0.771479 -0.253344 -0.276032 1.017717 1.198326 -0.119514 -0.293843 -0.100879 1.209096 -0.957608 -0.364021 0.666630 0.512789 -0.829413 0.195930 0.806882 -0.994268 -0.518365 -0.478781 -0.497277 -0.331114 -0.905421 0.603949 -0.399135 0.487806 0.330245 0.134013 -0.377564 0.466565 0.239347 0.128229 0.276984 1.278304 1.380350 -0.438043 0.124082 -1.015523 0.609952 -1.459528 -1.072124 0.343748 -0.103585 -0.470185 0.143912 0.015477 0.999450 0.159948 -0.046817 -0.062838 -0.077551 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::push_back(int const&) = -0.393401 0.422519 1.031386 -1.031333 0.911656 0.566330 0.289656 -0.279628 -0.773459 -0.525266 -0.148460 -0.897224 -0.903899 1.280504 -0.616633 0.073999 1.790952 0.501754 -0.302807 -0.413763 0.851887 -0.381816 1.574160 1.505993 -1.357415 -0.030149 0.664674 0.861908 0.356394 1.202490 -0.612930 -0.953458 0.365006 -0.118637 0.544261 -0.984653 0.119830 -0.152330 -0.193692 -1.907424 0.155767 -0.015483 -0.204815 -0.182168 -0.031300 0.779597 1.547288 0.969966 -0.421378 -0.029383 0.874053 0.620141 -0.097963 0.297384 0.378952 0.174232 1.031777 0.169529 -0.481999 -0.155502 -0.293692 -0.832648 0.017336 1.302350 1.489585 0.233028 0.090516 0.007296 -0.041530 0.269086 0.155668 0.281825 0.394614 0.619241 0.531091 -0.970691 0.242467 -2.185488 -0.192089 -2.616972 -0.754199 -0.842108 0.533092 -0.078097 0.281471 -0.102190 1.382458 0.134932 0.371358 0.607444 1.754056 -0.984465 -0.436997 -0.858633 -0.801377 0.442703 -0.636845 0.104814 0.202661 0.027407 -0.937050 -0.945297 0.461861 0.185601 -0.488910 -0.001059 -0.093111 1.121425 -1.237884 -0.317652 -1.042174 0.074072 -0.001614 -1.868447 -0.179050 -0.785787 1.111922 0.056561 -0.349325 -0.966815 0.316298 1.033208 -0.484618 -0.318287 -0.754878 1.269090 0.517544 -0.075629 0.042366 -0.180365 0.280622 0.961390 0.974930 -0.665891 -0.209115 0.093297 -0.913571 -0.285879 -1.050647 -0.113064 0.664561 -0.889177 0.120973 0.784143 -0.762436 -0.322448 0.525266 -0.447182 0.868483 3.416189 -0.418630 0.818023 0.264811 -1.401633 0.626074 0.021844 -0.357153 0.243614 0.811920 0.630133 -1.440099 -1.010450 0.605399 1.272015 0.837819 -1.148896 -0.197742 -0.512979 -0.207236 -0.164074 0.156924 0.268295 -0.507400 -0.738695 -0.435400 0.615118 1.914148 -0.449047 -1.544312 0.355047 0.286026 -0.283268 -0.909225 -0.256530 -0.189793 0.222384 0.197102 -0.242304 0.853825 1.563733 -3.006717 1.193289 -0.108337 -0.541645 1.076828 -0.167630 -0.449786 -1.052387 0.368348 1.265526 1.273501 0.190920 -0.134402 0.039200 -1.167345 -0.168691 0.086990 0.810292 -0.584731 0.563585 0.487927 -1.173862 -1.013237 -0.690934 -0.063023 -0.385776 -0.485327 0.511122 -0.174620 -2.768394 1.648919 -0.130720 -0.191598 0.176767 -0.382907 0.517944 -1.317703 -1.511133 0.446208 -0.096081 -0.477232 -0.646495 -0.000830 0.949210 -0.083431 0.456571 -0.878972 -1.521547 0.725538 -0.311385 0.837731 0.488394 0.599123 1.310276 0.380108 -0.267713 -1.117797 -0.289140 0.571623 -0.237513 -0.781671 -0.017482 -0.380949 0.971460 1.535718 -0.270168 -0.175254 -0.264594 1.297858 -0.996112 -0.491824 0.806547 0.446839 -0.700777 0.378291 0.955423 -1.064124 -0.897462 -0.774836 -0.441146 -0.216755 -1.102292 0.437810 -0.726183 0.309425 0.667349 0.027998 -0.656052 0.586144 0.153043 0.024624 0.135450 1.306914 1.819926 -0.839331 0.431610 -1.036537 0.682646 -1.754411 -1.204426 0.264368 -0.371827 -0.333964 0.150210 -0.107557 0.890154 -0.132064 0.233602 -0.089607 -0.109375 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCCUtil(int, int*, int*, std::stack > >*, bool*) = -6.433421 -2.445657 3.262415 -14.664098 10.289166 12.956732 4.641133 -8.305591 -13.359809 -4.542864 5.140980 -15.624505 -6.403266 17.731536 -7.340753 10.086004 21.621541 2.812323 -8.306684 -2.603476 16.170449 0.558497 23.183035 19.273032 -15.647451 -1.638097 3.043482 10.127872 6.146870 5.014242 0.494479 -8.007006 7.430407 -12.411381 -2.724043 -9.267210 2.884156 2.005079 7.925706 -21.428604 3.219113 -1.642602 -3.990506 -3.759298 -4.352114 0.864369 15.114205 14.371122 -3.598657 2.588527 12.894522 4.818012 -2.818349 3.973470 2.581926 0.312519 3.390729 -0.827540 -5.156321 -7.616854 -1.835371 -6.100729 1.806997 16.324487 18.452292 3.009452 0.387464 8.544643 1.872963 3.799740 7.063722 3.275521 -1.699952 4.577576 7.579602 -18.480564 -0.320036 -25.902857 -3.799101 -25.463324 -8.879076 -2.278777 9.711602 1.651040 7.734181 1.501520 15.854345 -0.857764 -2.588872 16.606177 20.717435 -13.917821 -6.665859 -10.433276 -9.482456 5.558975 -9.331672 3.492239 2.553579 3.760251 -13.154362 -8.668976 2.757562 6.326402 -6.142412 -9.643492 2.217348 13.088936 -14.163419 -8.837973 -2.690480 9.642788 -2.336234 -26.407243 -9.194653 -10.682061 14.578047 -0.478920 -4.811176 -14.517114 2.064007 10.504839 -3.519973 -7.342664 -2.470044 9.516335 9.209399 5.705954 0.724292 1.769888 4.743690 22.747310 8.104267 -8.475717 0.299594 -1.422714 -5.382573 4.717256 -9.437819 -4.753929 3.557851 -14.231621 3.040931 15.020736 -8.897640 -6.751027 8.073485 2.245448 5.971776 52.079495 0.208223 16.201164 12.087470 -17.353202 2.025149 -6.216615 -0.716421 4.975406 6.200304 2.531582 -22.487337 -14.226059 9.694143 16.344459 11.484044 -16.874820 -1.320400 -2.147692 -1.169811 -2.570044 -0.623696 4.266774 -1.448668 -11.123577 -4.269958 15.497981 27.413689 -6.955932 -8.781962 8.466287 5.142512 -5.213637 -14.195347 -6.271865 -5.192239 3.581497 8.317939 0.477392 9.604129 20.264170 -25.851537 13.213067 -0.029509 -0.258931 10.824387 4.884918 -13.571035 -11.683055 -1.011666 13.291810 14.665848 -2.940824 0.555652 4.806208 -14.772828 -1.570617 4.543620 2.197159 -4.050788 6.759782 4.334872 -9.479909 -11.162553 1.449628 -3.465791 -2.103155 -2.416229 9.950582 -3.374352 -25.151630 18.791449 -0.845930 -5.906377 2.670963 -7.023463 16.050074 -15.715889 -17.626990 10.403605 -2.272849 -6.987109 -6.836345 2.522326 10.657971 5.708886 6.334952 -11.537294 -15.789195 10.000235 -4.767717 12.231222 6.200855 2.368574 13.105828 -7.312521 -3.409245 -16.037341 -9.606714 4.074409 1.609455 -15.415033 -5.590393 -3.229416 14.896889 13.297834 -2.246356 -11.209369 0.580247 15.679525 -16.911146 -6.186518 9.546292 11.832388 -16.903764 4.453800 12.012132 -15.713813 -2.010999 -7.777050 -3.050830 -5.636850 -15.644799 8.740681 0.446611 9.086479 2.778048 3.135455 -1.018981 7.121027 4.577548 4.399918 3.359500 17.914930 19.620554 -6.720421 -4.349386 -16.479123 8.019576 -22.193372 -21.155252 9.082106 -0.237601 -7.148383 1.566962 -0.480879 16.157385 3.058096 -1.599921 -2.669826 2.267489 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = -0.413558 0.520414 0.918073 -1.000680 1.167729 1.111363 0.363366 -0.409894 -0.809124 -0.334697 -0.185619 -1.054074 -0.874397 1.462733 -0.571759 0.479407 1.973457 0.463213 -0.345049 -0.150545 0.939258 -0.266490 1.743616 1.534987 -1.316590 0.010890 0.659243 0.628381 -0.072929 1.512250 -0.986705 -1.354492 0.491661 -0.440593 0.327186 -0.939077 0.044680 -0.216140 0.200079 -2.020084 0.181612 0.136399 -0.320284 -0.318613 -0.139177 0.165356 1.784695 1.036830 -0.258466 -0.035986 0.707193 0.575288 -0.119295 0.347083 0.622148 0.557206 0.998461 0.187839 -0.657221 -0.270546 -0.393433 -0.628559 -0.071148 1.320021 1.491047 0.274455 0.031759 0.162583 -0.243773 0.161407 0.076277 0.302819 0.340540 0.708070 0.505178 -0.987275 0.172498 -1.896617 -0.314978 -2.117939 -0.852728 -0.823392 0.244782 0.092746 0.712894 -0.266449 1.500928 -0.138039 0.372286 0.438340 2.020364 -1.416161 -0.517341 -0.997348 -0.772596 0.258324 -0.653284 -0.002679 0.186395 -0.424102 -1.107367 -1.250694 0.586851 0.465177 -0.484917 -0.214534 -0.011614 1.227447 -1.170831 -0.740017 -1.100168 0.044657 -0.351707 -2.029487 -0.385520 -0.547494 0.697595 0.219561 -0.494902 -1.584939 0.487550 1.309114 -0.559641 -0.800498 -0.304837 1.378636 0.646246 -0.039468 0.168740 -0.252690 0.403768 1.481646 1.141670 -0.645318 -0.090159 0.014020 -0.836210 -0.218630 -0.918740 -0.241331 0.101664 -1.104196 0.025103 1.186214 -0.855873 0.111935 0.413294 -0.327846 0.872183 3.906630 -0.577244 0.936033 0.197275 -1.763992 0.886680 -0.137829 -0.517367 -0.004463 0.807979 0.776664 -1.900719 -1.072107 0.818932 1.407558 0.946336 -1.243556 -0.179189 -0.664026 -0.137493 -0.182379 0.162643 0.370932 -0.311897 -0.943849 -0.454070 0.686284 2.523994 -0.800267 -1.787862 0.644019 0.202549 -0.197247 -1.057096 -0.412223 -0.635664 0.170763 0.272427 -0.325469 0.871045 1.723919 -2.826367 1.320559 -0.356695 -0.940108 1.423020 -0.101188 -0.530766 -0.660345 0.250108 1.475730 1.423705 0.269507 -0.043771 -0.135033 -1.218137 -0.186395 0.072631 0.803396 -0.566810 0.647405 0.429440 -1.539802 -1.072958 -0.663683 -0.104948 -0.785077 -0.589623 0.534518 0.002435 -2.775168 1.860860 0.209396 -0.159756 0.430098 -0.319982 0.673216 -1.325312 -1.768722 0.666714 -0.120133 -0.206874 -0.259959 -0.033140 0.947916 0.251625 0.492061 -0.972132 -1.795928 0.709735 -0.009191 1.064555 0.535603 0.666437 1.206359 0.433648 -0.471658 -1.104026 -0.666440 0.614577 -0.136715 -0.906617 -0.425653 -0.509259 1.292945 1.557387 -0.134046 -0.299747 -0.746107 1.308723 -1.163720 -0.137361 1.018069 0.432503 -1.004742 -0.128537 1.178555 -0.975051 -0.916064 -0.649653 -0.295774 -0.507369 -1.230970 0.260688 -0.786665 0.284978 0.706108 -0.105135 -0.645451 0.437808 0.194686 0.045575 0.089161 1.344036 1.420196 -0.912694 0.387580 -1.104826 0.747483 -1.876151 -1.406909 0.454626 -0.349884 -0.642901 0.031553 0.131096 0.907069 -0.271396 0.309242 -0.001473 -0.407595 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/tarjan-algorithm.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::top() = -0.164064 0.269480 0.429867 -0.387625 0.396590 0.176320 0.126206 -0.117434 -0.298202 -0.334711 -0.081474 -0.526148 -0.506169 0.549941 -0.275137 -0.015630 0.726013 0.185111 -0.096871 -0.147607 0.245651 -0.128857 0.678610 0.622286 -0.547145 0.011959 0.189756 0.343294 0.050167 0.563117 -0.178114 -0.544188 0.165365 0.133754 0.250826 -0.324759 0.032804 -0.079257 -0.188146 -0.789202 0.054763 0.160134 0.050907 -0.081926 0.006792 0.295861 0.724364 0.411840 -0.109819 -0.031210 0.319925 0.313869 0.027449 0.149210 0.181230 -0.061824 0.440364 -0.216188 -0.268600 -0.060837 -0.140293 -0.409398 -0.113962 0.560619 0.633323 0.117677 0.026831 -0.065268 -0.125701 0.164265 0.025328 0.140595 0.210519 0.326957 0.168347 -0.167658 0.151225 -0.725875 -0.080732 -1.120754 -0.344674 -0.361534 0.284106 0.290099 0.052631 -0.076108 0.609657 0.112422 0.162247 0.222392 0.819467 -0.363690 -0.192291 -0.305724 -0.302486 0.206087 -0.272185 0.063017 -0.019815 0.105073 -0.413065 -0.316477 0.164308 -0.001618 -0.205763 0.107152 -0.051172 0.425100 -0.621077 -0.024994 -0.463445 -0.021330 0.100866 -0.806887 -0.056035 -0.249337 0.301729 0.051338 -0.160544 -0.320004 0.175973 0.323241 -0.197949 -0.044249 -0.617026 0.517993 0.133599 -0.044528 0.039583 -0.016991 0.165612 0.368138 0.267313 -0.266119 -0.082074 -0.008754 -0.297138 -0.109111 -0.360721 -0.045998 0.183409 -0.385525 0.093177 0.270392 -0.326531 -0.197066 -0.195022 -0.257849 0.365137 1.140607 -0.219598 0.342655 0.108126 -0.608118 0.237459 -0.041695 -0.208864 0.019348 0.326742 0.332417 -0.264316 -0.428391 0.323366 0.560920 0.351904 -0.314018 0.059731 -0.146772 -0.045458 -0.110880 0.142041 0.134857 -0.205144 -0.330396 -0.194235 0.262453 0.741294 -0.091529 -0.538234 0.184805 0.125582 0.006437 -0.216423 -0.078370 0.007355 0.077361 0.057236 -0.097300 0.304733 0.670526 -1.194938 0.539683 0.061930 -0.195405 0.430299 -0.155929 -0.193254 -0.440077 0.159181 0.594743 0.508823 0.058163 -0.003089 -0.074671 -0.498091 -0.091822 0.027556 0.355731 -0.267308 0.242284 0.177833 -0.505847 -0.463444 -0.383491 -0.012085 -0.119036 -0.282167 0.217502 0.141459 -1.113608 0.750940 -0.053605 -0.081798 -0.052256 -0.146431 0.179113 -0.549909 -0.624544 0.116533 -0.217422 -0.350728 -0.229696 -0.007343 0.319661 -0.093479 0.141302 -0.299895 -0.460650 0.383138 -0.066665 0.332541 0.209918 0.311897 0.479518 0.320935 -0.148396 -0.318995 -0.124754 0.257241 -0.240738 -0.285502 0.244521 -0.173959 0.375508 0.677933 -0.107228 -0.135400 -0.061142 0.500071 -0.245281 -0.254445 0.371647 -0.040635 -0.276305 0.211290 0.416987 -0.386128 -0.389820 -0.411890 -0.124179 -0.138107 -0.505493 0.122612 -0.327046 0.064020 0.355842 -0.064028 -0.382322 0.250024 0.054547 -0.072621 0.051549 0.577432 0.558762 -0.307655 0.329354 -0.445561 0.235055 -0.755989 -0.492521 0.115435 -0.135931 -0.123956 0.008489 -0.125650 0.312866 -0.079709 0.129180 -0.094286 0.000178 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::pop() = -0.292859 0.410027 0.735354 -0.822790 0.969373 0.842667 0.236726 -0.249301 -0.624200 -0.280817 -0.209354 -0.840921 -0.711343 1.099080 -0.447140 0.313265 1.381338 0.283227 -0.262641 -0.062211 0.656677 -0.057749 1.226127 0.955196 -0.964295 0.011087 0.335091 0.534422 -0.144597 1.283999 -0.678698 -1.118953 0.247991 -0.062405 0.272136 -0.632189 0.081676 -0.109255 -0.009729 -1.431586 0.150337 0.323430 -0.184833 -0.214099 -0.066463 0.023210 1.292752 0.767004 -0.190241 -0.107076 0.535082 0.560018 -0.084422 0.279000 0.394645 0.323709 0.769517 -0.138299 -0.538321 -0.225616 -0.279214 -0.426372 -0.099256 0.935191 1.074635 0.185465 0.024771 0.073061 -0.219536 0.166127 0.063666 0.199007 0.229019 0.504969 0.321304 -0.372085 0.138449 -1.110505 -0.125327 -1.380033 -0.591969 -0.637513 0.212200 0.457085 0.391370 -0.327500 1.137113 -0.123794 0.261304 0.346176 1.455047 -0.911361 -0.346294 -0.844193 -0.620733 0.201054 -0.458486 -0.135304 -0.030762 -0.136596 -0.752669 -0.799466 0.270475 0.218808 -0.329424 -0.027375 -0.077149 0.905180 -0.934654 -0.421080 -0.759769 0.221330 -0.170827 -1.455133 -0.426940 -0.376492 0.277595 0.062298 -0.246704 -0.997565 0.370754 0.886475 -0.474212 -0.402081 -0.521042 1.017256 0.443302 -0.122450 0.116492 -0.169559 0.280855 0.942259 0.651636 -0.493699 -0.152614 0.043682 -0.449745 -0.211598 -0.655566 -0.084879 -0.068128 -0.815201 0.040038 0.839987 -0.575023 0.072445 -0.237942 -0.325351 0.682610 2.686216 -0.463429 0.622690 0.068021 -1.260643 0.661149 0.008755 -0.424887 -0.047739 0.478123 0.556656 -1.076013 -0.799542 0.650654 0.966869 0.696934 -0.713666 0.066209 -0.461733 -0.127214 -0.135739 0.121566 0.348537 -0.315999 -0.654005 -0.363973 0.397648 1.788980 -0.398365 -1.343054 0.577186 0.258427 -0.160800 -0.482412 -0.303437 -0.367267 0.045938 0.271126 -0.275834 0.655654 1.278745 -2.025996 0.991825 -0.039181 -0.675012 0.988126 -0.259066 -0.271503 -0.364935 0.077263 1.115644 1.071728 0.112756 -0.007143 -0.187682 -0.854544 -0.067610 0.087493 0.590202 -0.377562 0.392733 0.301644 -1.096896 -0.763006 -0.600685 -0.174281 -0.428357 -0.557138 0.330795 0.073902 -1.987576 1.380351 0.106828 -0.016324 0.262985 -0.195797 0.485203 -0.897812 -1.233187 0.455830 -0.100297 -0.266141 -0.162481 0.030934 0.697682 0.144950 0.425901 -0.687482 -1.257290 0.518094 0.035200 0.705819 0.365364 0.519265 0.728638 0.509413 -0.322165 -0.692398 -0.596821 0.547002 -0.100607 -0.557959 -0.023907 -0.339830 0.899931 1.064367 -0.086390 -0.269959 -0.599049 0.949658 -0.584279 -0.112326 0.763496 -0.066406 -0.755229 -0.069126 0.901859 -0.633359 -0.726130 -0.565984 -0.054181 -0.407734 -0.885739 0.136133 -0.537211 0.150239 0.586375 -0.098307 -0.641967 0.307191 0.162782 -0.121672 0.001866 1.109868 0.773355 -0.555681 0.490868 -0.768006 0.530840 -1.351428 -0.944064 0.271451 -0.409697 -0.424399 0.069734 0.006934 0.645306 -0.267003 0.412111 0.022779 -0.327788 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -3.660378 -1.788099 1.172719 -9.968189 8.079036 7.546020 3.344124 -4.598869 -8.576246 -2.880155 3.688111 -8.252875 -4.465458 10.979778 -4.294061 6.784012 11.920968 -0.053700 -4.843073 -1.959733 10.843653 -1.402202 13.655980 9.690753 -10.469877 -0.847946 0.564194 6.036525 2.718719 4.942165 0.819948 -5.045312 3.627823 -7.466307 -0.774598 -4.141614 2.063049 0.921843 4.200702 -12.270643 1.869264 1.289751 -1.595739 -2.063164 -3.056083 0.053501 8.145686 9.004695 -2.707954 1.412967 8.856121 2.014425 -1.434217 2.713216 2.125456 0.306385 2.473652 -0.553921 -3.488813 -4.906313 -1.588446 -3.588469 1.797816 9.502870 10.955656 0.362610 0.561169 5.895991 -0.369634 3.329138 5.084085 1.986021 -1.556904 0.755609 6.171753 -9.550020 -1.272328 -14.166765 -2.224987 -15.854065 -5.694993 -1.623310 5.728562 1.785973 5.498204 0.292988 9.750616 -0.420000 -2.053647 8.685201 10.684327 -7.156852 -3.796898 -7.326393 -6.248862 2.624088 -5.592812 0.603450 2.737162 2.165275 -8.053765 -2.991774 1.626012 3.997557 -3.568388 -6.748726 0.243676 8.152278 -8.242129 -5.360743 -1.243267 7.361235 -2.067250 -15.856999 -4.718952 -6.513248 6.212762 -1.264183 -1.135939 -7.032706 1.298310 6.793694 -2.797201 -4.815645 -1.650027 7.083034 5.926462 4.021017 1.206159 1.215951 2.012715 12.884005 5.339710 -4.184335 -1.187237 -0.997772 -2.079991 3.778228 -4.204125 -2.257826 2.414219 -8.579856 1.738399 7.861518 -4.027939 -3.364086 3.892623 1.367939 3.919770 30.815445 -0.232464 10.538187 6.278427 -9.683221 2.417802 -2.701882 -0.126485 3.464340 3.851352 -0.374520 -12.388360 -8.721349 6.336276 8.672700 6.530195 -10.547085 -0.805877 -1.146872 -0.742550 -1.081627 -1.288302 2.943289 -0.368213 -6.877088 -2.338603 7.501743 17.272128 -4.245481 -5.474443 6.791613 4.572769 -4.619224 -8.623941 -4.314186 -4.265652 1.600899 4.294222 0.139870 5.737639 12.083954 -14.540946 7.720928 -0.507139 -0.581858 6.936177 1.172453 -7.197652 -9.745186 -1.307100 6.481088 9.382389 -2.217649 0.216745 2.670494 -8.394801 0.624058 2.024655 0.532808 -1.781166 3.754821 0.452018 -5.317524 -6.805372 -0.035562 -3.344057 0.616815 -1.706862 4.921331 -1.055461 -14.557109 10.268507 -1.095308 -3.673157 1.673455 -2.578451 9.911111 -7.816460 -10.243038 6.398505 -1.405117 -4.467807 -4.972866 1.916582 5.967342 3.162453 2.627742 -6.629218 -9.903326 6.023104 -3.760673 7.473514 3.929612 1.542195 7.575945 -2.102705 -2.844570 -9.589832 -6.549209 1.729065 0.734001 -9.804346 -2.776215 -2.194760 9.000118 6.433818 -0.300678 -5.912739 -0.369330 10.227157 -8.973133 -3.773753 6.448384 4.524225 -10.126943 2.844477 8.172289 -8.344110 -1.557770 -4.991446 -0.778274 -3.907612 -9.317088 5.254742 1.262534 6.058578 0.855359 3.157480 -1.066940 3.344011 2.582253 2.485452 -0.064206 11.910665 10.832367 -5.031324 -3.441348 -9.395238 5.132943 -11.752908 -11.901275 5.190034 -0.076462 -3.882845 1.885325 -0.035363 10.221826 1.864007 -0.736165 -1.145239 0.291967 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::stack >, void>() = -0.092970 0.087194 0.530415 -0.502313 0.379194 0.055492 0.117100 0.077446 -0.506440 -0.294032 -0.071035 -0.403497 -0.347261 0.559268 -0.254097 -0.111427 0.802033 0.343539 -0.102120 -0.225143 0.175554 -0.160641 0.596382 0.662760 -0.528524 0.062866 0.036166 0.387034 0.058593 0.688625 -0.185619 -0.538995 0.051990 0.221609 0.271502 -0.486596 -0.020439 0.052431 -0.285576 -0.935064 0.122362 0.250186 0.068660 -0.067516 0.129034 0.379785 0.597305 0.352595 -0.111741 0.143878 0.329800 0.363600 0.022504 0.102125 0.226516 0.097117 0.504435 -0.186431 -0.273010 0.076629 -0.132742 -0.377480 -0.042166 0.483017 0.567542 0.066060 -0.018339 -0.282338 -0.001047 0.162594 0.189173 0.072887 0.135786 0.141162 0.134602 -0.105216 0.128648 -0.777301 0.072168 -1.225703 -0.346728 -0.300970 0.599013 0.306199 -0.120614 -0.146730 0.565255 -0.059820 0.169901 0.263279 0.622935 -0.199401 -0.204088 -0.273521 -0.362279 0.241503 -0.176847 -0.122227 -0.030978 0.190042 -0.366040 -0.221598 0.213202 -0.058397 -0.193335 0.253786 -0.021583 0.494902 -0.703846 0.007541 -0.431024 0.286669 0.199534 -0.638231 -0.095896 -0.354913 0.327401 0.057984 -0.242172 -0.128152 0.198945 0.245748 -0.303212 0.179125 -0.695232 0.548123 0.015257 -0.068623 -0.015745 -0.059011 0.050387 0.186426 0.213612 -0.363397 -0.022221 0.181224 -0.230984 -0.151189 -0.436493 -0.068119 0.142107 -0.334093 0.132284 0.057330 -0.359695 -0.207056 -0.267146 -0.124385 0.316325 1.165391 -0.218856 0.374574 0.101792 -0.462193 0.251671 0.151222 -0.069211 0.081783 0.379727 0.189190 -0.194949 -0.383613 0.165416 0.525578 0.374842 -0.296355 0.023873 -0.185066 -0.128809 0.105740 0.185169 0.028599 -0.206889 -0.310812 -0.197605 0.057251 0.764542 0.097677 -0.651180 0.003199 0.165678 -0.115476 -0.093992 0.009612 0.056874 0.133204 0.074839 -0.152288 0.375576 0.630289 -1.436439 0.582487 -0.019907 -0.160475 0.373549 -0.125243 -0.098357 -0.512746 -0.027552 0.406296 0.744882 0.086637 -0.047465 0.097653 -0.452561 -0.092374 0.009184 0.347085 -0.301281 0.224012 0.246825 -0.489589 -0.260906 -0.444237 -0.040467 -0.001101 -0.328370 0.174962 0.070281 -1.217721 0.556511 -0.045703 -0.038134 -0.003806 -0.019567 0.120764 -0.483541 -0.522640 0.059478 -0.020314 -0.416697 -0.271564 -0.091030 0.393189 -0.185196 0.219560 -0.258530 -0.492627 0.413229 -0.127870 0.378695 0.233082 0.059279 0.496979 0.401934 -0.044956 -0.234367 -0.146286 0.340558 -0.315422 -0.105110 0.400033 -0.235029 0.279130 0.599409 -0.009969 -0.124719 -0.099516 0.644981 -0.108338 -0.175257 0.336235 -0.203760 -0.086825 0.357951 0.441990 -0.529183 -0.330237 -0.414278 -0.110609 -0.006229 -0.260931 0.278474 -0.278321 0.138550 0.205489 0.047490 -0.437476 0.221403 0.015420 -0.179953 0.075923 0.665397 0.614900 -0.217400 0.496919 -0.344787 0.264913 -0.618215 -0.304738 -0.148275 -0.186963 -0.226801 0.127456 -0.231974 0.352072 -0.028846 0.214557 -0.090141 0.124317 +PE-benchmarks/tarjan-algorithm.cpp__main = -7.184435 -1.338738 11.634311 -20.430813 16.017263 9.417989 7.285134 -2.213307 -20.630126 -11.128041 3.521598 -20.024215 -16.391035 25.437851 -9.227715 4.177781 31.331829 7.579830 -8.787581 -6.116499 16.371783 -3.800016 29.149255 26.330399 -22.282324 0.049186 -1.017955 15.349556 4.285898 16.872113 0.456307 -16.016708 7.303100 -3.573733 4.440185 -13.912969 1.086462 1.900168 -3.518815 -34.086613 4.260102 9.284155 -2.022428 -3.992059 -0.427032 11.564446 22.308140 18.503507 -4.929883 4.497328 14.870132 6.799938 0.321910 5.689069 6.865433 -0.948403 8.990524 -4.371303 -11.050174 -4.707812 -5.810163 -15.177023 -0.583508 20.945230 24.805572 2.189880 -1.109074 0.866033 -0.188668 8.567814 9.431843 4.936345 4.940893 2.712968 11.889317 -10.333341 -0.696362 -29.962519 -1.569870 -46.057176 -15.006458 -7.374782 23.501062 9.267499 2.033832 -6.208845 24.111148 -1.404196 -0.494223 18.773917 27.235839 -12.113805 -9.086282 -14.475663 -12.381895 8.583446 -10.900969 -0.516157 5.249528 6.634714 -18.725505 -5.946527 4.161883 1.250083 -8.402114 -2.604980 -0.219251 21.677366 -24.230515 -3.909070 -12.119923 14.427844 4.759697 -33.156830 -9.075805 -12.879439 14.068674 1.610251 -8.172688 -7.530780 7.048108 9.852494 -8.481640 -1.211096 -15.781549 21.082518 5.999342 3.564819 1.708929 4.541033 3.459429 18.261106 11.736714 -11.187963 -1.017293 2.065479 -7.045065 3.466940 -12.703953 -4.138395 7.202100 -17.084400 3.931054 9.274013 -12.954450 -10.194366 -4.484160 0.183860 9.980699 59.048119 -4.706805 21.181915 11.403768 -19.988020 8.950007 -1.144079 -1.225409 5.879410 13.148894 4.744592 -17.862288 -18.220545 12.575809 23.174239 15.983877 -20.416662 2.982071 -3.795064 -1.508361 -2.647711 4.216982 4.994059 -1.072324 -14.626119 -6.285042 12.471425 34.343917 -5.337632 -22.605156 7.960844 7.678423 -3.803338 -12.664985 -4.645494 0.321172 3.202636 8.039333 -2.266416 13.475848 27.993364 -42.009177 21.773967 0.736261 -2.580128 16.770858 0.104332 -12.042948 -22.381636 -3.333378 16.613509 26.217970 0.965207 -4.393239 3.778273 -20.668937 -1.538136 4.435770 7.635058 -7.450198 10.783985 3.156174 -12.563410 -13.463495 -11.689565 -4.829458 2.052558 -8.602638 10.845050 0.543076 -40.450617 23.923868 -2.235794 -6.395040 -1.102738 -3.463832 14.847680 -19.106390 -24.765147 8.824725 -5.007549 -20.556836 -13.906880 0.471237 14.205335 2.321555 5.675716 -12.658129 -21.586783 21.209342 -6.731087 19.331666 9.663411 3.127461 22.887021 9.107228 -7.168846 -15.237084 -13.702437 10.836435 -6.465989 -14.712965 3.588804 -7.100140 16.014308 20.160595 -1.398391 -10.595535 -3.831396 25.738154 -14.956782 -10.278902 15.941319 1.962499 -12.366163 14.397308 20.007622 -21.090699 -7.956380 -15.691496 -4.648773 -6.195370 -17.125376 11.599183 -5.090217 9.366069 5.342686 3.791551 -9.439133 7.933288 3.984311 -1.048652 1.639326 28.540533 28.546645 -12.863919 6.231444 -19.233913 13.701920 -27.123853 -20.742564 4.346105 -3.237535 -7.475595 3.603472 -3.511444 18.061362 2.915162 -2.458586 -6.458730 5.163548 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/tarjan-algorithm.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.635914 0.463864 1.281313 -1.462158 1.598193 0.803151 0.621960 -0.379792 -1.207862 -0.889649 -0.090438 -1.247632 -1.502538 2.052717 -0.913442 0.449066 2.826967 0.715392 -0.376096 -0.722316 1.719090 -0.965348 2.683612 2.293182 -2.311495 -0.089599 1.034875 1.310367 0.657217 1.724008 -0.798546 -1.297871 0.923368 -0.778152 0.858821 -1.618381 0.331412 -0.170577 -0.167327 -2.948905 0.163859 -0.161612 -0.420037 -0.168808 -0.244682 1.575813 2.327489 1.661661 -0.921072 0.265226 1.493855 0.538721 -0.136404 0.628223 0.389403 0.260891 1.133152 0.563407 -0.970616 -0.305996 -0.552812 -1.754975 0.211331 1.968153 2.505407 0.141780 0.265884 0.522154 -0.235080 0.488962 0.456662 0.488527 0.751187 0.550087 1.314212 -1.923971 -0.060402 -3.832157 -0.665460 -4.906716 -1.243008 -1.494420 0.913026 -0.641079 0.757922 -0.076682 2.226840 0.361814 0.508450 1.227660 2.731051 -1.790356 -0.771060 -1.580789 -1.098448 0.634437 -1.226038 0.128313 0.919292 -0.147080 -1.562868 -1.543319 0.811336 0.379780 -0.702250 -0.682223 -0.317414 1.898663 -2.080096 -0.822783 -1.866792 0.001061 -0.235571 -3.093815 0.043789 -1.057601 2.067265 0.212480 -0.264556 -1.475933 0.452657 1.815523 -0.661254 -0.861077 -0.557000 2.108963 0.921483 0.114429 0.303616 -0.075653 0.262633 1.805394 2.160797 -0.859695 -0.565026 0.147179 -1.500766 -0.147067 -1.624848 -0.309320 1.503039 -1.644511 0.185635 1.251623 -1.122753 -0.583255 1.541843 -0.606574 1.481378 5.220425 -0.453654 1.372586 0.525053 -2.241049 1.041639 -0.132518 -0.347712 0.682780 1.457097 0.688143 -2.433908 -1.695378 0.935097 1.901794 1.311050 -2.309792 -0.688919 -0.902133 -0.034532 -0.276003 -0.107319 0.694784 -0.576076 -1.247462 -0.496023 0.952754 3.137521 -1.136182 -2.216293 0.801763 0.490957 -0.690794 -2.055872 -0.648578 -0.552538 0.232256 0.279081 -0.307540 1.121586 2.522139 -4.539029 1.823714 -0.461042 -0.670701 1.586730 -0.072012 -0.751829 -2.188624 0.528494 1.896703 1.925821 0.379227 -0.191020 0.204749 -1.860791 -0.036760 0.100837 1.205356 -0.681087 0.886537 0.420819 -1.693018 -1.747205 -0.885235 -0.111533 -0.571336 -0.363916 0.825574 -0.113187 -4.427910 2.441753 -0.512168 -0.621039 0.485853 -0.309114 1.169971 -2.046662 -2.539525 0.918355 -0.264769 -0.949952 -1.392181 0.186804 1.459229 -0.023541 0.302694 -1.208110 -2.699489 1.289880 -0.637092 1.270232 0.804454 0.960973 2.579906 0.331519 -0.823704 -2.117206 -0.485306 0.612659 -0.564980 -1.328853 -0.450454 -0.457063 1.691522 2.464456 -0.214696 -0.150291 -0.319332 2.243547 -2.147444 -0.960212 1.623656 1.346478 -1.080595 0.863950 1.755701 -1.848903 -1.462981 -1.118484 -0.581509 -0.199092 -1.786679 0.727021 -1.248708 0.567313 0.897780 0.283853 -0.808235 0.945648 0.269613 0.285445 -0.222459 2.273447 3.444153 -1.786833 0.217733 -1.599584 1.078187 -2.850929 -2.041919 0.506798 -0.163476 -0.402095 0.497336 0.216767 1.499899 -0.082625 -0.130324 -0.250058 -0.421446 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.650706 1.567372 2.280989 -2.983972 4.924957 2.762123 2.013060 -1.113980 -2.480392 -2.396289 -0.310901 -3.063355 -4.275604 5.316166 -1.999803 2.380266 6.959788 1.239636 -0.500672 -1.177404 4.935131 -2.857504 7.192676 5.071574 -5.752195 -0.207895 2.593519 2.558941 0.468686 4.657625 -2.159103 -3.948811 3.297978 -3.209615 1.802986 -3.619760 0.953896 -0.656002 0.224035 -6.872405 0.186864 -0.273736 -1.586412 -0.420407 -1.304945 2.907742 6.241337 4.392200 -2.396417 0.853138 3.285783 0.573049 -0.342453 2.136320 0.980405 0.967811 1.374731 1.187555 -3.214499 -1.159111 -1.890106 -4.963877 0.432809 4.596973 6.263118 0.032022 0.886518 2.708407 -1.918988 1.218749 0.934463 1.374598 2.237044 0.877559 3.999904 -5.119640 -1.278690 -9.046245 -2.823949 -12.268106 -3.406177 -4.209354 1.272106 -1.517667 3.332661 -0.319563 5.695496 0.974605 1.284478 3.019738 7.377012 -5.615081 -2.063487 -4.625995 -2.071562 0.930752 -3.420997 0.111889 2.940394 -1.659160 -4.270607 -4.354659 2.267624 1.402499 -1.456186 -3.583413 -1.075763 5.028590 -5.261597 -3.202089 -5.322424 -0.703434 -1.695606 -8.170906 0.565369 -1.292551 4.684111 1.049213 -0.111125 -4.653323 1.456412 5.344844 -1.426822 -3.829904 0.438283 5.497886 2.647063 0.674538 1.609162 0.194763 0.564965 5.921240 6.895107 -1.301965 -1.785182 -0.168364 -3.423354 0.249273 -3.250553 -1.028805 3.124998 -4.857885 0.180574 4.070173 -2.607780 -0.911731 4.083277 -1.600968 4.030087 12.455579 -1.237641 3.444725 1.139346 -6.397019 3.034949 -1.164282 -1.134284 1.464235 3.795217 1.688809 -6.475713 -4.401456 2.914710 4.514195 3.286061 -6.357697 -2.170002 -2.690032 0.756700 -1.071633 -0.982846 2.582771 -0.556174 -3.602503 -0.867302 2.488219 8.685601 -4.259521 -5.305028 3.382827 1.086933 -1.591783 -6.257775 -2.466450 -2.488671 0.011412 0.829577 -0.892422 2.003485 6.506519 -9.778941 4.438499 -1.900850 -2.097265 4.097099 0.104790 -1.864912 -5.529529 1.163674 5.270310 4.414616 1.117780 0.105923 -0.186912 -4.546434 0.376855 0.124570 2.918528 -1.055896 2.201782 -0.022251 -4.644537 -4.950241 -1.871032 -0.394363 -2.054874 -0.314482 1.934037 0.973964 -10.732516 6.364314 -1.275580 -1.932213 1.945550 -0.055278 4.068971 -4.732752 -7.104567 3.067623 -1.447310 -2.356395 -3.121952 0.952021 3.289272 0.722880 -0.335716 -2.476883 -7.231763 3.333208 -0.850085 3.195386 2.030909 3.169085 7.141443 0.560378 -3.464232 -5.562193 -2.116496 1.143256 -1.714361 -3.664344 -2.556135 -1.007224 4.997433 6.238059 0.114847 -0.396839 -1.420209 5.549174 -6.654250 -2.026226 5.281559 4.272763 -3.265422 1.541570 5.276570 -4.129249 -4.083779 -2.351917 -0.479049 -0.954632 -5.042350 0.954578 -3.524037 1.093328 2.366966 0.662233 -1.784501 2.010925 0.825883 1.317156 -1.737520 5.741298 8.365686 -5.522587 -0.434453 -3.729667 2.464038 -7.420249 -5.674196 1.987493 0.540649 -0.832928 1.310698 1.615921 3.581709 -0.550836 -0.914796 -0.533250 -2.426021 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/tarjan-algorithm.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::push_back(int const&) = -1.488296 2.209396 2.806934 -3.241036 4.528690 5.197904 1.367617 -1.631541 -2.502893 -0.856619 -0.595220 -4.371124 -3.398611 5.325328 -1.862577 2.081085 6.818100 1.019087 -1.381727 0.429257 3.260996 0.042155 6.096627 4.869866 -4.187095 -0.061227 2.059236 1.371922 -1.388933 5.390002 -3.851879 -5.731530 1.918825 -1.676357 0.573276 -2.285403 0.006429 -1.398535 1.245163 -6.406137 0.621556 1.183278 -1.744517 -1.489393 -0.770155 -0.820729 6.753774 3.598662 -0.535907 -0.846302 1.867698 1.773730 -0.629635 1.230631 2.554941 1.912427 2.943737 0.875732 -2.697065 -1.449352 -1.667277 -1.309277 -0.899919 4.499905 4.844045 1.236053 -0.027620 0.866429 -1.322716 0.428888 -0.243806 1.020909 1.694256 2.923762 1.718573 -2.328511 0.110829 -5.123368 -1.359456 -5.501746 -2.960110 -2.592317 0.143201 0.848180 2.953812 -1.938777 5.121744 -0.839873 1.128880 1.372223 7.754749 -5.365171 -1.953082 -3.920720 -2.548949 0.408108 -2.254686 0.112584 0.657615 -2.570354 -4.215681 -4.535453 1.452743 1.962247 -1.459290 -1.027559 0.205625 4.271033 -3.277130 -2.703136 -3.693684 0.027566 -1.418102 -7.399707 -2.467038 -0.939105 0.933820 1.095935 -2.077304 -6.315252 2.069070 4.710089 -2.125734 -3.572406 0.080720 4.990586 2.492674 0.205521 0.846472 -0.744476 2.029024 5.759458 3.989449 -1.908070 0.077886 -0.711243 -2.415777 -0.482798 -2.464867 -0.860678 -0.841985 -3.852930 -0.048823 4.986379 -2.988071 1.148457 0.275146 -1.011695 2.915617 14.086500 -2.489548 3.444175 0.316198 -6.725106 3.624117 -0.853216 -2.376408 -1.042663 2.428543 3.243279 -6.957620 -3.643239 3.791635 5.012904 3.357909 -4.423426 0.396644 -2.223115 -0.299131 -1.366302 0.623584 1.668114 -0.441749 -3.525887 -1.642145 3.095851 9.402398 -3.590319 -7.305701 3.008475 0.754893 0.457112 -3.147749 -1.663725 -2.500464 0.468385 1.563809 -1.234229 3.103738 6.177850 -8.593147 4.566907 -0.995941 -4.017285 5.641087 -0.228247 -2.150943 -0.764659 0.722665 5.785416 4.660585 1.436650 -0.440784 -1.336113 -4.059974 -0.657838 0.457899 2.642337 -1.591348 2.205637 0.991014 -5.625207 -4.018399 -2.734092 -0.677396 -3.188118 -2.541244 1.817763 0.225569 -9.091257 7.118601 1.667735 -0.316306 1.153490 -1.355314 2.479629 -4.394727 -6.687356 2.534790 -1.070022 -0.695729 0.036705 -0.094805 2.803695 2.035534 2.102171 -3.536174 -6.700076 2.785275 0.874931 4.363958 1.746031 2.793885 3.881286 2.031870 -2.038433 -3.591762 -3.650272 2.958132 0.132035 -3.794366 -2.210800 -1.845160 4.928961 4.861932 -0.657164 -1.525100 -4.139291 3.869565 -4.136594 0.217165 3.860022 1.107575 -4.296488 -1.670940 4.420330 -2.629938 -3.060097 -2.105347 -0.812170 -2.968936 -4.820964 -0.152130 -2.595932 0.727701 2.628217 -0.843020 -2.177772 0.803908 0.729888 0.101533 0.344635 4.236406 3.794279 -3.514886 1.275118 -4.126857 2.987688 -6.648024 -5.692928 2.588493 -1.762169 -2.511378 -0.509155 0.970113 2.743871 -1.422226 0.954872 -0.056791 -1.618424 +PE-benchmarks/tarjan-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = -1.597232 1.912867 3.369801 -4.068448 4.858931 4.824190 1.416533 -1.617534 -3.319078 -1.216159 -0.271961 -5.503812 -3.913333 5.755202 -2.221657 1.679450 7.438982 1.156149 -1.804165 0.018657 3.213906 0.498228 6.731911 5.600149 -4.789446 0.030487 1.406027 2.133313 -0.765893 5.438834 -3.607623 -5.744216 1.837312 -0.901814 0.761644 -2.313556 -0.024489 -1.337367 0.834723 -7.063951 0.850011 1.683772 -1.316156 -1.363288 -0.460263 0.380450 7.144818 3.993566 -0.685358 -0.747944 2.583530 1.943286 -0.291550 1.292180 2.520436 1.114195 3.911836 0.568620 -2.837908 -1.621905 -1.697314 -1.599802 -1.183675 4.989980 5.510607 1.351087 -0.332733 0.344990 -0.630256 0.771478 0.354604 1.191739 1.981132 3.065960 1.859499 -1.604476 0.661049 -5.638461 -1.041138 -6.766095 -3.260229 -2.440355 1.610398 1.346419 2.110662 -2.342446 5.659224 -0.630339 0.873567 1.648899 8.163629 -4.986153 -2.187410 -3.860255 -2.912345 0.901381 -2.395138 0.297798 0.807597 -1.464009 -4.511870 -3.853551 1.266550 1.311728 -1.783723 -0.059135 0.266887 4.525387 -3.798421 -1.869247 -3.681657 0.848103 -0.335694 -8.076333 -2.959435 -1.539881 1.096262 0.858729 -2.370294 -5.438921 2.060896 3.985560 -2.569557 -2.436076 -1.647261 5.482565 2.549598 0.432450 0.638263 -0.412035 2.345138 5.478516 3.206689 -2.540687 0.075612 -0.715878 -2.292371 -0.245402 -2.961318 -0.782526 -0.230183 -3.939032 0.434183 4.512939 -3.301650 0.618396 -0.715983 -0.803871 2.820692 14.706008 -2.513531 4.092258 0.879005 -6.599468 3.681489 -0.534508 -2.111764 -0.728350 2.463240 3.300014 -6.276515 -4.112544 4.144315 5.559949 3.690735 -4.913688 1.217161 -1.710539 -0.340658 -1.528772 0.945227 1.705163 -0.547661 -3.559680 -1.802907 3.474219 9.590155 -3.003414 -8.196621 2.859649 1.004511 0.661863 -2.661347 -1.590006 -1.669269 0.636971 1.781836 -0.886984 3.567175 6.860611 -10.050923 5.056002 -0.012834 -3.654510 6.263132 -0.409214 -2.575873 -1.306656 0.506766 5.799368 5.176669 1.500176 -1.031746 -1.002976 -4.527577 -0.778175 0.755231 2.619405 -1.873084 2.300752 1.343065 -5.228249 -3.999410 -3.703722 -0.780667 -2.251735 -3.189627 2.351249 0.034120 -10.243489 7.376995 1.498105 -0.616989 0.371307 -1.951624 2.430466 -4.837878 -6.683971 2.242163 -1.576166 -1.922822 -0.834291 0.060985 2.819697 1.666430 2.848231 -4.065974 -6.709836 3.725903 0.228380 4.720225 2.071908 2.530734 3.891671 2.861029 -1.796971 -3.677549 -3.542385 3.504436 -0.077664 -4.047197 -0.909428 -1.965207 4.799122 5.224058 -0.952160 -1.719576 -4.088129 4.208000 -3.909497 -0.542660 3.962883 0.453382 -4.373032 -0.476168 4.625562 -3.160181 -2.889675 -2.841543 -1.543007 -3.105430 -5.063680 0.504362 -2.335947 1.039508 2.745792 -0.834294 -2.601323 1.251891 0.575071 -0.448380 0.652993 5.154537 4.733987 -3.363747 2.003327 -4.816016 3.550670 -7.206506 -6.050973 2.752775 -2.484751 -2.913911 -0.513427 0.533582 3.266975 -1.233547 0.778345 -0.746412 -0.509570 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::size() const = -0.389187 0.478416 0.476187 -1.346852 1.442644 1.442268 0.392639 -0.832331 -0.953838 -0.035071 0.195885 -2.039872 -0.765643 1.182347 -0.694582 0.751905 1.850018 -0.100356 -0.689597 0.023328 0.636284 1.033674 2.015987 1.598727 -1.221540 0.103309 -0.035486 0.351473 -0.373156 0.878272 -1.034814 -1.556375 0.421719 -0.270732 -0.220379 -0.028059 -0.148506 -0.575312 0.906443 -1.603693 0.316695 0.342675 -0.067023 -0.407649 -0.159470 -0.188807 1.980865 1.072141 0.067279 -0.295927 0.921885 0.745777 -0.001421 0.313823 0.574280 0.165245 1.239472 -0.249876 -0.555406 -0.926244 -0.364464 0.472545 -0.384809 1.436055 1.273720 0.546380 -0.366347 0.220669 0.289470 0.080522 0.175795 0.520949 0.202125 1.118973 0.218917 -0.225121 0.542250 -1.002958 -0.186349 -0.920279 -0.969282 -0.256797 0.278606 0.613600 0.792408 -0.382394 1.611618 -0.280376 0.118925 0.297808 1.901216 -1.389790 -0.542852 -0.645162 -0.886249 0.037235 -0.404616 0.355662 -0.161458 0.048471 -1.311552 -0.659009 0.153734 0.377784 -0.524477 0.043283 0.471301 0.497233 -0.646551 -0.376810 -0.476212 0.716873 0.053221 -2.210860 -1.164349 -0.431917 0.030941 -0.099283 -0.774705 -1.650647 0.388699 0.689929 -0.905562 -0.448555 -0.783184 1.005027 1.026922 0.359981 0.216825 -0.121940 0.911070 1.933756 0.106542 -0.897974 0.103456 -0.466801 -0.225096 0.144872 -0.455206 -0.162683 -0.532311 -1.080502 0.718767 1.391977 -0.821404 0.213261 -0.630957 -0.039533 0.409409 3.720589 -0.765649 1.485858 0.542336 -1.687855 0.577503 -0.641023 -0.547651 -0.406623 0.333835 0.866110 -1.284489 -1.159790 1.405427 1.512035 0.931380 -1.099915 0.963538 0.186728 -0.106146 -0.458890 0.244429 0.359832 0.105866 -1.012686 -0.501133 1.236773 2.801790 -0.336260 -1.493612 0.897312 0.466407 0.530650 0.018622 -0.581803 -0.604449 0.266437 0.943496 0.158539 1.029659 1.825272 -2.275595 1.111616 0.228725 -0.795003 1.727448 0.119140 -1.064893 0.403617 -0.050393 1.404118 1.146238 -0.005507 -0.159081 -0.273250 -1.026824 -0.246616 0.280506 0.384692 -0.649800 0.591116 0.656332 -1.480716 -0.758053 -0.902397 -0.197274 -0.299720 -0.986705 0.783315 -0.134251 -2.432050 1.947327 0.719998 -0.294453 -0.116674 -1.079580 0.765915 -1.094543 -1.288024 0.645484 -0.647551 -0.116844 0.204470 0.098485 0.474339 0.555362 1.548636 -1.501116 -1.355779 1.087325 0.344866 1.454408 0.622893 0.498582 0.249394 0.029963 -0.196935 -0.766867 -1.137214 0.833939 0.426976 -1.372166 0.382355 -0.699816 1.216895 1.078725 -0.544015 -0.740627 -0.930924 0.687971 -0.849116 0.160915 0.788844 -0.024262 -1.667366 -0.287159 1.050183 -0.552447 -0.335367 -0.792596 -0.391905 -1.246050 -1.351774 0.260103 -0.156889 0.386134 0.691252 -0.395046 -0.489609 0.295373 0.033425 -0.108937 0.511914 1.277466 0.584042 -0.144115 0.429969 -1.501886 0.883511 -1.805206 -1.860049 1.145674 -1.061442 -1.231151 -0.427587 -0.150853 1.218390 -0.414508 0.267374 -0.365854 0.326753 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::max_size() const = -0.259213 0.088588 0.536903 -0.656534 0.553188 0.014424 0.177284 -0.171670 -0.544391 -0.437094 0.005716 -0.587248 -0.552758 0.772236 -0.362562 0.148416 0.947700 0.235316 -0.190841 -0.359704 0.606270 -0.391341 0.928095 0.779841 -0.857746 -0.023515 0.276152 0.664607 0.415877 0.560691 -0.127479 -0.339648 0.220207 -0.103546 0.332483 -0.585427 0.194842 0.090826 -0.136221 -1.055124 0.094897 -0.011928 0.059960 -0.031306 -0.080088 0.741767 0.718734 0.647059 -0.379296 0.123958 0.699655 0.237305 -0.015698 0.236214 0.025869 -0.121740 0.548988 -0.060382 -0.324427 -0.111957 -0.094563 -0.729054 0.102344 0.731930 0.964741 0.005086 0.083383 0.208951 0.023166 0.251469 0.256298 0.161404 0.151958 0.151548 0.412244 -0.642297 0.119854 -1.454017 -0.143733 -1.963120 -0.442577 -0.446301 0.525433 -0.006655 0.059487 0.088617 0.841202 0.236278 0.068366 0.502040 0.928762 -0.480458 -0.268771 -0.518551 -0.462150 0.359882 -0.463879 0.018962 0.241986 0.344820 -0.492590 -0.361859 0.257562 -0.017820 -0.295644 -0.088765 -0.145492 0.645184 -0.907718 -0.156897 -0.527290 0.148146 0.100544 -1.093672 0.120306 -0.499049 0.803165 -0.066646 -0.006716 -0.275788 0.090724 0.435764 -0.252794 -0.014337 -0.743127 0.677722 0.270155 0.029514 0.060304 0.006742 0.119788 0.489858 0.483034 -0.447779 -0.282462 0.089303 -0.459424 -0.014865 -0.651900 -0.109323 0.647632 -0.599692 0.146972 0.281615 -0.387322 -0.396396 0.344664 -0.233775 0.479840 1.584591 -0.057959 0.492364 0.281164 -0.675927 0.264021 -0.014758 -0.100258 0.345169 0.431684 0.173190 -0.484239 -0.672728 0.345955 0.680425 0.496591 -0.693269 -0.244363 -0.200049 -0.035541 -0.034057 -0.008622 0.275841 -0.341879 -0.381905 -0.220413 0.298616 0.952613 -0.130419 -0.561700 0.296175 0.237273 -0.352329 -0.674901 -0.207747 -0.043469 0.062084 0.023712 -0.047862 0.424538 0.937094 -1.803808 0.681359 0.078261 -0.057499 0.445632 -0.157867 -0.304425 -1.065722 0.122012 0.623671 0.698302 -0.042456 0.019041 0.152392 -0.698822 -0.008236 0.056788 0.344228 -0.258784 0.264918 0.193483 -0.445738 -0.576901 -0.275881 -0.085756 0.030876 -0.127427 0.354735 0.025469 -1.589597 0.842330 -0.367849 -0.209100 0.062147 -0.146756 0.434050 -0.751624 -0.759341 0.262907 -0.131567 -0.482105 -0.657141 0.142680 0.525071 -0.242246 0.077635 -0.357783 -0.737080 0.437362 -0.401668 0.309009 0.276659 0.273800 0.763146 0.185202 -0.183588 -0.684213 0.045242 0.118034 -0.309548 -0.376129 0.212637 -0.092545 0.518615 0.843821 -0.081261 -0.086626 0.171769 0.796014 -0.553686 -0.553060 0.517542 0.245151 -0.391108 0.567248 0.577418 -0.718202 -0.446881 -0.559411 -0.206222 -0.025878 -0.607311 0.376495 -0.282770 0.193513 0.350627 0.105909 -0.360763 0.487070 0.127923 -0.008727 -0.083583 0.982992 1.250875 -0.473903 0.174269 -0.619166 0.309363 -1.022347 -0.675877 0.142603 -0.016632 -0.138520 0.206719 -0.058998 0.597782 0.005966 0.039726 -0.140068 -0.009580 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.531006 0.764457 1.172356 -4.640936 4.621065 5.505256 1.284710 -2.829308 -3.628428 0.417708 0.769429 -6.225003 -1.863111 4.692148 -2.105362 3.140234 6.288677 -0.034767 -2.515682 0.581717 3.047317 3.233145 6.237127 5.086536 -3.854653 0.068352 -0.322329 0.726107 -1.255598 3.181488 -3.226144 -5.379427 1.489448 -1.711937 -1.081256 -0.709331 -0.328138 -0.943758 3.686016 -5.466540 1.297294 1.482513 -0.503152 -1.647506 -0.655803 -1.632580 5.882142 3.523135 0.026416 -0.816792 2.783179 2.403297 -0.511660 0.941855 2.136096 1.256070 3.061652 -0.195952 -1.855002 -3.065323 -1.260083 2.115249 -0.838118 4.545900 4.243769 1.710176 -0.977341 1.028592 0.874952 0.215554 0.840799 1.316345 0.582790 2.861826 0.847626 -1.074933 0.876111 -3.596977 -0.461410 -2.683081 -2.801433 -0.259615 0.943532 1.896368 2.792035 -2.116685 5.015189 -1.534086 -0.161107 1.651625 6.277671 -4.658605 -1.788272 -2.739882 -3.338717 0.031126 -1.342217 0.799359 -0.281161 -0.648482 -4.381463 -2.904635 0.183462 1.794241 -1.556683 -0.709399 1.692162 2.330189 -1.950874 -1.959118 -0.703612 3.086168 -0.475135 -7.073139 -4.206211 -1.955314 -0.611838 -0.271809 -2.743651 -5.777416 1.312080 2.579209 -3.018960 -2.209335 -1.409278 3.423306 3.440943 1.287636 0.381392 -0.713524 2.554206 6.635345 0.284434 -3.146534 0.811431 -1.407411 -0.454775 0.659606 -1.906265 -0.873190 -1.655749 -3.594766 1.429151 4.719967 -2.723160 1.199629 -1.203675 0.324906 1.178195 13.652124 -2.320397 5.029430 1.896458 -5.664058 2.290404 -1.587466 -1.499928 -1.104420 1.287643 2.345628 -5.429121 -3.981261 4.572688 4.875496 3.246151 -3.644774 2.450712 0.111373 -0.602698 -1.380101 0.618408 1.006662 0.205059 -3.577672 -1.654469 3.937146 9.619851 -1.631928 -4.820271 3.090550 2.205468 1.142114 -0.295587 -2.065386 -2.866125 0.935052 3.091132 0.132487 3.809260 6.151616 -7.298731 3.854814 0.288894 -2.644968 5.277070 0.676294 -3.709512 1.118204 -0.641103 4.454913 4.291034 0.007163 -0.079069 -0.479233 -3.502135 -0.646660 0.884680 0.938198 -1.984700 1.843467 1.830625 -4.772302 -2.320269 -2.039813 -1.321101 -1.729480 -3.125206 2.420716 -0.160698 -7.243956 6.166013 2.620781 -0.482506 0.215090 -2.976567 2.979510 -3.556363 -4.549856 2.505236 -1.339198 0.033360 0.871240 0.427416 2.087772 2.083041 4.825959 -4.829830 -5.423369 3.434890 0.994850 5.067698 1.819113 1.076078 0.728717 0.047450 -0.660607 -2.984158 -4.566187 2.767064 1.878478 -4.665564 0.189090 -2.185328 4.424205 3.023969 -1.332981 -3.129468 -3.503244 2.694851 -2.826593 1.244731 2.817958 -0.060407 -5.697081 -1.741901 3.804312 -2.194524 -0.808835 -2.251513 -0.756513 -4.096060 -4.227017 1.035582 0.071497 1.632952 1.392580 -0.970595 -1.242209 0.739760 0.743078 -0.388842 1.796213 4.432978 1.346125 -0.624079 0.903670 -4.827783 2.922086 -5.786962 -6.105671 3.563184 -3.366224 -4.372181 -1.102837 -0.290319 4.205218 -1.182136 1.508181 -0.751927 0.711654 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.467795 -0.161951 0.606725 -1.258905 0.961689 0.286940 0.305114 -0.414688 -1.215522 -0.450175 0.183508 -1.193784 -0.571725 1.453187 -0.511194 0.580728 1.857935 0.470953 -0.465309 -0.447254 1.116815 -0.549529 1.566857 1.548537 -1.301985 -0.012327 0.264165 0.900338 0.496300 0.766310 -0.355534 -0.697202 0.383692 -0.673484 0.227142 -0.952222 0.149830 0.300508 0.390173 -1.918666 0.316817 -0.041328 0.126967 -0.162711 -0.192747 0.726557 1.185442 1.018052 -0.512372 0.359810 1.123854 0.221681 -0.047679 0.307752 0.323096 0.188764 0.793541 0.258368 -0.521589 -0.274984 -0.229224 -0.699504 0.222361 1.169860 1.535305 0.105099 -0.059582 0.369593 0.265036 0.306062 0.600752 0.232275 0.069370 0.112797 0.629677 -1.330028 0.093489 -2.612931 -0.187726 -2.980957 -0.786482 -0.323832 1.027611 -0.176277 0.259497 0.055230 1.335276 -0.008545 -0.058008 0.806237 1.590140 -0.919208 -0.567904 -0.781753 -0.886583 0.504724 -0.588479 0.026100 0.636470 0.359936 -0.980021 -0.709392 0.568106 0.197833 -0.507437 -0.353812 0.082638 1.155277 -1.238506 -0.553540 -0.575771 0.627265 0.084847 -1.829021 -0.087358 -0.916074 0.977965 0.032992 -0.491575 -0.860752 0.201041 0.659808 -0.590041 -0.212821 -0.692413 1.078294 0.560809 0.279328 0.029061 -0.011333 0.319574 1.269419 0.628088 -0.928743 -0.078307 0.100300 -0.604443 0.121625 -1.087021 -0.470092 0.765941 -1.077033 0.268395 0.542863 -0.804965 -0.393413 0.908252 0.029316 0.492494 3.351818 -0.154278 1.168383 0.684241 -1.141900 0.611941 -0.040098 -0.005736 0.492482 0.799176 0.230623 -1.292446 -1.179548 0.695802 1.267771 0.909960 -1.387068 -0.565467 -0.297076 -0.089510 0.089220 0.026557 0.273873 -0.327117 -0.692429 -0.333729 0.714768 2.059389 -0.401957 -1.134311 0.457403 0.506203 -0.487659 -1.320359 -0.414839 -0.628621 0.236746 0.123147 0.003249 0.865132 1.695018 -3.091276 1.187456 -0.063266 -0.148881 1.015597 0.141975 -0.801290 -1.810832 -0.064758 0.902731 1.432524 -0.008739 -0.000623 0.407360 -1.173753 -0.122314 0.175736 0.388958 -0.546775 0.529967 0.260002 -0.809730 -0.689756 -0.234330 -0.325578 -0.156752 -0.313013 0.702058 0.058712 -2.522244 1.307786 -0.192819 -0.348633 0.253538 -0.363412 0.890485 -1.217235 -1.275884 0.561936 -0.135768 -0.546849 -0.807551 0.190250 0.874065 -0.184620 0.328201 -0.741736 -1.416050 0.855673 -0.629868 0.912795 0.513491 0.046988 1.038641 0.166222 -0.288862 -1.160717 -0.143821 0.165100 -0.319002 -0.842113 -0.141506 -0.303103 1.024032 1.260872 0.002761 -0.432045 -0.016505 1.309436 -1.082602 -0.531014 0.887083 0.377325 -0.868000 0.642157 1.064187 -1.346501 -0.378713 -0.810923 -0.398824 -0.247794 -0.953811 0.742075 -0.200068 0.508050 0.238028 0.082787 -0.281691 0.745947 0.299365 0.065591 0.100125 1.612091 1.839167 -0.666813 0.075738 -1.199349 0.625326 -1.672218 -1.314220 0.363773 0.053511 -0.762271 0.189807 -0.016018 1.147252 -0.003144 0.070922 -0.312517 0.190700 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.400547 0.256464 0.966357 -1.112662 0.990546 0.754762 0.259205 -0.517168 -0.787865 -0.224557 -0.050160 -0.830993 -0.605250 1.217231 -0.615618 0.435151 1.579179 0.329654 -0.418052 -0.353002 1.035287 -0.342007 1.504694 1.282171 -1.330593 -0.058221 0.650429 0.902869 0.467628 1.160934 -0.815621 -0.642127 0.283147 -0.439000 0.369628 -0.911561 0.221670 -0.056516 0.205607 -1.662416 0.164408 -0.181725 -0.219979 -0.152064 -0.135927 0.547699 1.298816 0.971285 -0.430368 -0.034737 0.982022 0.449367 -0.130147 0.297401 0.318521 0.324298 1.224107 0.371753 -0.401285 -0.299703 -0.207796 -0.615560 0.213215 1.223465 1.448761 0.174693 0.114391 0.288785 0.088860 0.157693 0.256576 0.258586 0.059151 0.559957 0.512006 -1.205290 0.405133 -2.063211 -0.207024 -2.004542 -0.644079 -0.693697 0.201660 -0.267969 0.532113 0.013340 1.314291 0.091544 0.184078 0.427479 1.540665 -1.128826 -0.385744 -0.879289 -0.847018 0.308778 -0.643280 0.034643 0.225748 0.028053 -0.818049 -0.939939 0.490527 0.359372 -0.460668 -0.106313 -0.111652 1.039776 -1.013878 -0.602482 -0.723052 0.164108 -0.287445 -1.777746 -0.186442 -0.845097 1.042131 -0.121812 -0.155382 -1.159585 0.205245 1.145362 -0.466894 -0.476898 -0.530195 1.158411 0.722323 -0.012784 0.015717 -0.290769 0.259561 1.088748 0.895022 -0.693335 -0.282597 0.060259 -0.867280 -0.149656 -1.024165 -0.110891 0.551999 -0.917923 0.000520 0.950637 -0.629591 -0.017593 0.867951 -0.241026 0.771721 3.531068 -0.291808 0.797533 0.275489 -1.353338 0.649955 0.047800 -0.267487 0.334553 0.575192 0.433746 -1.809452 -1.040334 0.618304 1.111477 0.779403 -1.254795 -0.348452 -0.513167 -0.215049 -0.074689 -0.039632 0.352006 -0.564218 -0.682284 -0.409757 0.524937 2.005364 -0.535032 -1.468929 0.551123 0.146645 -0.568705 -1.111920 -0.415834 -0.410048 0.172755 0.104768 -0.165237 0.845624 1.491692 -2.777225 1.077962 -0.128603 -0.624252 1.229077 -0.226070 -0.468525 -0.886041 0.243132 1.108225 1.111112 0.049992 -0.144658 0.158182 -1.084744 -0.049781 0.062375 0.605719 -0.472025 0.457770 0.520821 -1.117706 -0.937454 -0.476014 -0.106224 -0.410726 -0.398183 0.520904 -0.401626 -2.520538 1.487108 -0.101090 -0.179960 0.427255 -0.396669 0.574177 -1.198315 -1.338249 0.563921 0.083736 -0.093001 -0.645739 0.139053 0.899580 -0.001491 0.487923 -0.999443 -1.565441 0.398551 -0.455885 0.683291 0.433113 0.518091 0.971882 0.237621 -0.200726 -1.239316 -0.175552 0.337471 0.040283 -0.814441 -0.281219 -0.287350 1.052143 1.290138 -0.197541 -0.066138 -0.301003 1.199665 -1.031708 -0.430943 0.736119 0.513501 -0.942552 0.110128 0.871022 -0.949541 -0.755305 -0.587431 -0.497164 -0.277606 -1.019440 0.502236 -0.463821 0.378537 0.534932 0.096471 -0.488881 0.578940 0.179248 0.087002 0.074844 1.343488 1.689486 -0.670784 0.162367 -1.014179 0.648709 -1.638783 -1.191605 0.404641 -0.356156 -0.468433 0.208778 0.112247 1.014625 -0.091369 0.245205 0.067921 -0.282743 +PE-benchmarks/tarjan-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.312645 0.161149 -1.060239 -3.542978 3.728485 2.989748 1.216431 -2.621731 -2.454572 0.140273 1.238105 -5.656226 -1.349910 2.309613 -1.726524 3.474916 4.909368 -0.792457 -1.934526 -0.423849 2.313338 3.312577 6.018640 4.303867 -3.221806 -0.057981 -0.275364 0.681063 -0.412704 -0.763187 -1.962350 -2.876007 1.946054 -2.953781 -1.461165 0.474149 0.082504 -1.368188 4.240498 -3.517066 0.961504 -0.835687 0.213267 -0.915641 -1.386073 0.306973 4.447630 3.224703 -0.197778 -0.343332 3.428784 1.326025 -0.179635 1.091858 0.094544 0.263748 1.412125 -0.395558 -1.237115 -3.594020 -0.615397 1.720324 -0.391560 3.619230 3.279908 1.180283 -1.172957 2.769586 1.900768 0.123867 1.226956 1.538291 0.193834 2.068960 1.172515 -2.578992 0.434637 -3.905005 -1.358598 -3.794860 -2.608458 -0.328561 0.588300 -0.528550 2.984261 0.564603 4.318180 -0.576560 0.084052 1.629870 4.106762 -4.357147 -1.761737 -1.789988 -1.698613 0.096664 -1.355582 1.452325 1.078175 0.904577 -3.633739 -1.368709 0.233554 1.258466 -1.371259 -2.266446 1.819843 0.183743 -1.103328 -1.741942 -1.204578 2.462540 0.004992 -6.105578 -2.396992 -0.868218 1.353680 -0.591431 -1.642337 -4.808963 0.205448 1.482289 -2.268423 -1.709793 -0.323768 1.522591 3.535169 1.755090 1.268481 0.384819 2.524281 7.083455 0.619922 -2.601167 -0.364603 -1.291307 -0.741846 1.106842 -1.180681 -1.104470 -0.184035 -3.734352 3.448019 4.138959 -2.111878 -0.189087 1.202983 0.417362 0.821081 8.821813 -1.191636 4.452794 2.611501 -3.948053 0.483867 -3.479872 -0.738673 -0.570126 0.746473 1.431344 -3.176677 -3.405167 3.729656 3.716362 2.515444 -3.811180 2.034069 1.250841 0.678933 -1.248505 -0.635465 1.622359 1.121288 -2.632896 -0.789140 4.259919 7.557530 -1.157733 -0.932690 2.811430 2.181824 1.221016 -1.076301 -2.464911 -2.935907 0.489552 3.412699 1.767202 2.214512 4.963527 -4.472554 2.016667 0.408960 -0.551447 3.527777 1.784898 -3.769486 0.252573 -0.332125 3.066758 2.455324 -0.957773 0.436663 -0.108571 -2.375356 -0.425616 1.081093 0.392217 -1.160356 1.267980 1.429097 -3.022246 -1.503982 -0.443046 -0.588109 -0.196529 -0.922622 2.585364 -0.355865 -5.764561 4.614800 1.054545 -1.897144 0.044407 -3.558571 3.562556 -2.916664 -2.610967 2.625025 -1.853711 0.470276 0.351259 1.143535 1.187018 1.583012 4.449259 -3.863501 -3.481508 3.163097 1.059687 3.796252 1.626547 0.699635 0.545631 -3.526989 -0.614397 -2.760518 -2.839115 0.249612 1.559121 -4.425183 0.523740 -1.272034 3.544375 2.598093 -1.769167 -2.239201 -0.883738 1.213783 -4.219776 0.298783 2.077960 2.578409 -5.091268 0.075922 2.751400 -2.159931 -0.141704 -1.826124 -0.549508 -3.166519 -3.884600 1.003654 -0.040112 1.537707 1.494469 -0.760008 0.349180 1.172592 0.301068 0.706910 0.981026 3.402515 2.551415 0.032401 -0.968355 -4.524050 1.997914 -4.863625 -5.865368 4.064288 -1.964575 -3.682849 -0.874254 0.212166 4.146718 -1.182038 -0.407906 -1.908470 1.052095 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.079402 -0.194715 0.203077 -0.611395 0.734311 -0.091153 -0.036029 0.057818 -0.485285 -0.221033 -0.147411 -0.288042 -0.224723 0.449795 -0.116778 0.425766 0.228889 -0.141715 -0.116416 -0.187017 0.594544 -0.200125 0.254409 -0.328225 -0.513749 0.023871 -0.232148 0.640533 0.250163 0.524643 0.008456 -0.078968 -0.180688 -0.001952 0.143756 -0.247762 0.375618 0.427284 -0.141329 -0.348744 0.093163 0.266468 0.033972 0.200379 -0.101547 0.383166 0.022859 0.328853 -0.469744 0.213254 0.638757 0.060151 -0.025585 0.209775 -0.445923 -0.053777 0.224382 -0.427348 -0.356021 -0.151156 0.092531 -0.463081 0.264804 0.056957 0.433853 -0.362321 0.007299 0.616514 0.087271 0.144740 0.398350 0.009771 -0.168772 -0.426594 0.367744 -0.015738 -0.170765 -0.404457 0.086589 -0.995512 -0.121218 -0.298519 0.356795 0.459451 -0.200299 -0.047204 0.549829 -0.044315 -0.176286 0.449802 0.152385 -0.052307 -0.059325 -0.784846 -0.296211 0.152463 -0.229333 -0.630289 0.122941 0.708450 0.037463 0.082810 -0.092785 -0.311040 -0.084131 -0.221875 -0.406713 0.426591 -0.779166 -0.169708 -0.119725 0.764659 0.071730 -0.337235 -0.047386 -0.074329 0.148580 -0.338045 0.630420 0.242434 -0.086909 0.146536 -0.292578 0.341496 -0.613176 0.303514 0.256748 -0.142463 0.123643 0.172563 -0.024609 0.085816 0.086983 -0.298407 -0.652943 0.328457 0.252750 -0.004830 -0.342708 0.036635 0.193832 -0.519991 0.131309 0.045870 0.044818 -0.129504 -0.394188 -0.189972 0.248802 0.206581 0.128827 0.031142 -0.037781 -0.071735 0.144341 0.253207 0.006141 0.393880 -0.137005 -0.230981 0.313754 -0.436092 0.249165 -0.030460 0.187880 -0.255065 -0.100268 -0.107999 0.061859 0.236933 -0.327509 0.549740 -0.318374 0.073764 -0.058468 -0.336602 0.563126 0.229342 -0.101482 0.620507 0.376446 -0.699656 -0.267869 -0.313557 -0.086721 -0.385098 0.140512 0.016370 0.146540 0.516991 -0.782379 0.281614 0.438768 0.109706 -0.106069 -0.433225 0.246070 -0.775203 -0.508861 0.153169 0.462214 -0.359944 0.221733 0.025851 -0.192987 0.405157 0.167823 -0.025886 0.140976 -0.163424 -0.090333 0.065440 -0.024602 0.051397 -0.443410 0.602213 -0.037665 -0.017584 0.111029 -0.746876 0.160972 -0.634161 0.067208 0.299287 0.251998 0.600170 -0.054409 -0.055112 0.303214 0.130426 -0.447332 -0.488752 0.406117 0.329557 -0.275727 -0.110039 -0.006024 -0.531996 0.048825 -0.340579 -0.273783 0.041508 -0.060885 0.074379 0.156535 -0.150953 -0.308840 -0.051873 -0.151673 -0.191716 0.276648 0.466169 0.218900 0.218490 0.077581 0.221059 -0.000598 0.098699 0.388971 -0.007675 -0.362821 0.395430 -0.386187 -0.339019 0.543449 0.475603 -0.284639 -0.219656 -0.425368 0.409298 0.015342 -0.056514 0.172981 0.060090 -0.060800 0.220105 0.127972 -0.358728 0.371143 0.137066 -0.322442 -0.625698 1.092301 0.469694 -0.095323 0.233057 -0.144867 0.108254 -0.367346 -0.095707 -0.125687 0.047204 0.018325 0.425398 0.071484 0.370461 -0.104066 0.247894 -0.007256 -0.325841 +PE-benchmarks/tarjan-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.327429 -0.541720 -0.250563 -0.817673 0.468122 -0.019868 0.083698 -0.359435 -0.969296 -0.056664 0.194318 -0.757189 0.224143 0.822662 -0.080890 0.841421 1.022145 0.268652 -0.326639 -0.032886 0.905333 -0.470108 0.483286 0.756256 -0.431431 0.038984 -0.352382 0.220354 0.035380 0.134618 -0.111022 -0.463374 0.118702 -0.913930 -0.190387 -0.440179 -0.015064 0.744882 0.873809 -1.037619 0.383653 0.086472 0.494882 -0.137241 -0.137767 -0.277520 0.291293 0.222818 -0.233326 0.468662 0.570466 -0.095030 -0.047276 0.075381 0.253407 0.584896 -0.052016 0.004345 -0.317731 -0.347162 -0.169534 0.228673 0.449753 0.315678 0.556743 0.019170 -0.160731 0.483020 0.343261 0.016175 0.526215 0.048322 -0.382044 -0.524368 0.238392 -0.944549 -0.205882 -1.403662 0.007313 -1.479196 -0.457595 0.351886 0.688312 0.217669 0.204654 0.046534 0.586340 -0.573112 -0.327418 0.454250 0.606169 -0.399428 -0.286993 -0.342277 -0.676001 0.038526 0.037725 -0.305577 0.433359 0.306636 -0.598475 -0.388161 0.475868 0.273325 -0.147834 -0.625247 0.339842 0.518454 -0.648351 -0.669160 0.303066 0.958437 0.061967 -0.640186 0.093663 -0.583616 -0.092612 0.034784 -0.561480 -0.646479 -0.004983 0.101245 -0.479537 -0.155698 -0.183534 0.267444 0.352668 0.224940 -0.040601 0.005915 0.037144 1.012613 -0.071374 -0.710415 0.211445 0.030982 0.057553 0.177411 -0.452970 -0.648346 0.054107 -0.703546 0.079894 0.067718 -0.415451 -0.026735 0.585030 0.325578 -0.245785 1.494956 -0.101041 0.957318 0.560549 -0.293716 0.385559 -0.029327 0.244157 0.315166 0.533187 -0.186379 -0.603168 -0.743932 0.539645 0.476010 0.329954 -0.475394 -0.667907 0.019966 0.018214 0.427035 -0.075025 -0.099405 0.109343 -0.355129 -0.092279 0.249572 1.460041 -0.037876 0.149580 0.383034 0.535792 -0.377661 -0.882989 -0.422988 -1.097782 0.104139 -0.009743 0.119812 0.474970 0.957817 -1.339441 0.531629 -0.277989 0.209257 0.308900 0.361815 -0.598951 -1.589697 -0.615724 0.196894 1.032818 -0.367488 0.404133 0.375328 -0.472082 0.001844 0.042214 -0.082258 -0.524858 0.304393 -0.068681 -0.465398 0.184824 0.488821 -0.591852 -0.161866 -0.113633 0.151272 0.619722 -0.648554 0.368004 0.093135 0.023255 0.480806 0.075593 0.798488 -0.255568 -0.316683 0.460342 0.121094 0.012248 -0.115331 0.260056 0.505793 -0.264100 -0.168467 -0.291286 -0.765809 0.551671 -0.220416 0.680265 0.057201 -0.645820 0.022934 -0.034573 -0.082889 -0.544525 -0.051469 -0.592360 -0.290611 -0.356037 -0.362148 -0.277278 0.571487 0.267002 0.300319 -0.619927 0.191528 0.622725 -0.402872 0.278854 0.558256 -0.208835 -0.647275 0.041325 0.754816 -0.780798 0.206215 -0.410641 0.147716 -0.253479 -0.144209 0.559876 0.378613 0.302607 -0.424480 -0.147965 0.274082 0.363206 0.449227 -0.006116 0.106955 1.040651 0.234868 0.092579 -0.193855 -0.525321 0.008798 -0.598732 -0.542778 0.066135 0.602087 -0.850068 0.054758 -0.068156 0.833618 -0.074877 0.231781 -0.108911 0.172724 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.527554 -0.012312 0.988322 -1.454098 1.531797 0.439207 0.328911 -0.330016 -1.133553 -0.494937 -0.227878 -0.647174 -0.738070 1.693051 -0.584656 1.022522 2.042162 0.422649 -0.399037 -0.680417 1.888787 -1.221103 1.844802 1.089917 -1.816855 -0.128843 0.958451 1.421080 0.863014 1.423431 -0.906163 -0.383413 0.411341 -1.206645 0.615769 -1.545847 0.653234 0.344006 0.198590 -2.126867 0.212527 -0.498252 -0.363022 -0.019260 -0.500352 1.311093 1.280853 1.390024 -1.058855 0.292919 1.539591 0.131243 -0.297718 0.570000 -0.114993 0.637575 1.044604 0.694344 -0.789840 -0.290125 -0.163862 -1.530846 0.742947 1.253270 1.923366 -0.300548 0.254564 1.298369 0.093942 0.259653 0.630334 0.185684 0.037445 -0.142075 1.152830 -2.321318 -0.131101 -3.320091 -0.504749 -3.947682 -0.764531 -1.198806 0.347817 -1.000406 0.692140 0.326034 1.783667 0.086909 0.188978 0.987754 1.751524 -1.566376 -0.570637 -1.822480 -0.891462 0.468034 -1.050463 -0.595137 1.088966 0.174557 -0.843772 -1.222543 0.765375 0.354795 -0.514430 -0.968552 -0.512822 1.661719 -1.750691 -1.238450 -1.316132 0.380261 -0.609747 -2.171549 0.418538 -0.822570 1.893799 -0.202439 0.447675 -1.348559 0.154399 1.760735 -0.584069 -0.723687 -0.133368 1.597973 0.900451 -0.058598 0.306210 -0.145663 0.086492 1.462614 1.972457 -0.851849 -0.968190 0.519424 -1.206068 -0.191601 -1.517137 -0.386132 1.330547 -1.604932 -0.023854 1.136239 -0.700316 -0.141414 2.094705 -0.366965 1.239961 4.030559 -0.034125 0.715613 0.202978 -1.580781 0.914917 0.112075 -0.217375 0.823675 0.779599 0.154981 -2.289655 -1.457299 0.624919 1.119174 1.080429 -2.043316 -1.232515 -1.049791 -0.010195 0.293386 -0.642374 0.973980 -0.764907 -0.727912 -0.378249 0.210740 2.714716 -0.941182 -1.438234 1.070863 0.326612 -1.498757 -2.458953 -0.806410 -0.892929 -0.180011 -0.044188 -0.235538 0.870112 2.002694 -3.629686 1.362289 -0.412226 -0.598355 1.065233 -0.323879 -0.221802 -2.329220 -0.068909 1.307863 1.647272 -0.117459 0.116348 0.307085 -1.325069 0.311564 0.099883 0.740040 -0.157011 0.343321 0.232198 -1.100909 -1.113641 0.007505 -0.354039 -0.202114 0.193873 0.541874 -0.381532 -3.434535 1.677344 -0.916104 -0.264771 1.078309 0.108637 1.285577 -1.438644 -1.716375 1.073726 0.441690 -0.254415 -1.324001 0.502917 1.434971 -0.230889 -0.103506 -0.756254 -2.523940 0.341642 -0.901440 0.467327 0.490704 0.543886 1.777971 -0.054348 -0.562757 -1.946001 -0.011489 -0.296923 -0.298964 -0.633998 -0.728506 0.051679 1.516323 1.597657 0.109909 0.249590 -0.027276 1.772610 -1.899329 -0.865228 1.295344 1.183155 -1.144492 0.697992 1.448564 -1.583395 -1.163851 -0.767885 -0.191219 0.004251 -1.161945 0.587610 -0.763088 0.350992 0.707083 0.402957 -0.493933 0.942852 0.370816 0.191615 -0.752356 2.247021 3.060327 -1.326948 -0.217884 -1.104829 0.754600 -2.121600 -1.421388 0.286132 0.303859 -0.347501 0.783493 0.689020 1.339798 -0.181484 0.093632 0.089460 -0.983139 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -4.798233 4.282443 6.627355 -13.598391 14.662205 17.906471 3.736138 -8.261749 -10.387075 0.266199 1.163307 -17.364189 -7.729672 15.903926 -6.912334 7.353997 19.642148 0.525483 -7.100026 1.691944 10.697699 7.346522 18.910121 15.553468 -13.183177 -0.059113 1.319710 3.400562 -2.978373 12.734444 -10.236192 -16.987765 4.460314 -4.154010 -1.729916 -3.611078 -0.430671 -3.402201 8.249657 -17.794888 3.200721 4.065782 -4.325648 -4.633045 -1.631482 -4.093499 19.485445 10.721255 -1.070607 -3.096596 8.285512 7.639701 -2.257307 2.920100 6.920659 3.520340 10.106022 1.075061 -6.047923 -7.961077 -4.354093 3.741717 -2.699263 14.683728 14.364709 5.488805 -1.640549 2.436036 0.336772 0.967868 1.276280 3.802637 3.449362 9.773769 3.738445 -3.466139 1.831660 -13.410446 -1.747774 -10.003042 -8.439005 -3.125733 2.166040 5.347704 7.775513 -6.994525 15.657020 -3.351675 0.163618 6.205466 21.690950 -14.300614 -5.211925 -9.994846 -11.376352 0.436410 -4.906512 2.780357 -1.840400 -3.255545 -13.383854 -11.474391 0.720500 5.309714 -4.755023 -1.892095 3.220667 9.902300 -7.492925 -5.459006 -3.670534 7.151797 -1.894618 -22.423652 -13.205448 -6.463229 0.481726 -0.094303 -7.458789 -17.408755 4.448900 10.267714 -8.636788 -7.557538 -3.338515 12.151272 10.355013 2.778855 0.404991 -2.745760 7.459986 18.325113 3.461404 -8.577645 2.008669 -4.489000 -2.607117 0.803644 -7.008172 -1.411102 -3.843985 -10.319818 2.472630 14.763912 -8.250400 2.725013 -3.184869 -1.140866 5.279359 44.077119 -7.264281 14.049379 3.922291 -18.687954 8.053763 -3.090687 -5.506119 -2.518554 5.032613 8.138195 -18.831942 -12.431815 13.922065 15.114070 9.639953 -12.071935 6.136693 -1.663433 -2.736893 -4.985990 2.414888 3.276644 -1.421739 -10.343400 -5.558448 11.790634 29.295147 -6.543712 -18.927261 9.647137 5.557932 2.976538 -2.360100 -5.744913 -6.516134 2.783862 9.032020 -1.286407 12.120332 19.349912 -25.385922 12.692166 0.658447 -9.306385 15.916133 0.715913 -9.927176 3.086285 -0.098059 15.489709 13.259551 2.142156 -1.689646 -2.305153 -11.850777 -1.749505 2.804970 4.611305 -6.278174 6.214538 5.409872 -15.776552 -9.698907 -7.575648 -4.255305 -6.058821 -10.387658 6.544638 -1.916205 -25.012018 20.511713 7.181377 -0.434338 0.816445 -8.261845 8.734708 -11.672014 -16.651221 7.572960 -3.838955 -1.341498 1.229050 0.945246 7.464073 6.648543 13.149432 -14.818755 -18.831034 9.973574 2.312867 14.816149 5.280750 5.528554 5.531780 2.670731 -3.006321 -10.944582 -13.434527 11.170914 5.237904 -14.076024 -1.141564 -6.525326 13.810754 10.945004 -3.856975 -8.998353 -11.992372 9.988473 -8.980454 2.296676 9.429888 0.440965 -16.636031 -5.479469 12.118842 -6.679242 -4.905392 -7.159067 -2.770476 -11.931124 -13.894710 2.333307 -1.547726 4.362423 5.259358 -2.439352 -5.205510 2.753202 2.317095 -0.726012 4.745709 13.896838 6.941885 -5.088694 3.839416 -14.475516 9.794841 -19.034167 -18.929653 10.132959 -10.163424 -10.694386 -2.919749 -1.249987 11.793188 -3.491947 4.795438 -0.961673 0.553045 +PE-benchmarks/tarjan-algorithm.cpp__int** std::copy(int**, int**, int**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/tarjan-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.866390 0.118223 1.043563 -1.971465 3.060778 1.176357 1.245981 -0.566986 -1.810616 -1.184560 -0.001233 -1.353569 -1.927199 2.927311 -1.108342 1.886677 3.686511 0.733084 -0.191094 -0.862660 3.158541 -2.116286 4.032711 2.592595 -3.408664 -0.071102 0.775080 1.809725 0.443435 2.823460 -0.942098 -1.598592 1.792211 -2.243219 1.063005 -2.390074 0.726889 0.399248 0.297486 -3.832970 0.169659 -0.058585 -0.426002 0.133265 -0.732138 1.747261 2.801907 2.534439 -1.645226 1.157129 2.160145 -0.054763 0.105221 1.397710 0.258016 0.750041 0.641310 0.508287 -1.883209 -0.593616 -1.114302 -3.114822 0.907351 2.262956 3.659510 -0.368462 0.574266 1.761818 -0.960583 0.783738 1.311584 0.782904 0.636883 -0.481968 2.571933 -3.186205 -0.711584 -5.309921 -1.532024 -7.116694 -1.838921 -2.283037 1.096068 -0.664074 2.050330 -0.082793 3.151431 0.516020 0.450782 1.755024 3.323409 -2.993145 -1.068409 -2.676485 -1.251477 0.432843 -1.873604 -0.460813 1.970505 -0.378723 -2.137620 -1.990624 1.444114 0.689105 -0.721589 -2.398843 -0.843343 2.940444 -3.150523 -2.235845 -2.656915 0.352439 -1.276601 -4.297436 0.866274 -1.099141 2.508968 0.316183 0.484926 -2.027130 0.643847 2.884885 -0.827423 -1.904303 -0.057068 3.105255 1.526340 0.464903 0.912034 0.180458 -0.390644 3.231540 3.807218 -0.762994 -1.349502 0.316338 -1.612129 0.493801 -1.972422 -0.648404 2.096329 -2.998347 -0.134535 1.816213 -1.184038 -0.368280 2.542742 -0.452524 2.227322 6.553426 -0.333140 2.020306 0.974788 -3.157159 1.868191 -0.175582 0.145603 1.585430 2.134688 0.010198 -3.558436 -2.639598 1.220255 2.066529 1.773992 -3.697690 -1.902777 -1.568000 0.585490 -0.024793 -1.067486 1.564529 -0.413244 -1.975995 -0.163083 0.657179 4.813607 -2.132852 -2.357343 2.084155 0.715794 -1.941735 -3.970556 -1.692156 -1.910592 -0.200574 0.085783 -0.380074 0.828889 3.530523 -5.382992 2.414851 -1.219969 -0.664048 2.178392 -0.094087 -0.814506 -4.033946 0.056303 2.191163 2.582548 0.229601 0.160175 0.521218 -2.411677 0.709198 -0.052199 1.311218 -0.430359 1.042859 -0.313499 -2.209374 -2.399990 -0.788944 -0.452782 -0.740617 0.108580 1.057919 0.792090 -5.585243 2.655594 -1.169414 -1.372948 1.737357 0.524254 2.607494 -2.255952 -3.499474 1.822057 -0.530153 -1.357915 -2.416170 0.914262 1.843367 0.028673 -0.694463 -1.237110 -4.001629 1.680006 -1.149915 1.384407 1.241445 1.225882 3.807627 0.519161 -2.153551 -3.289081 -0.979196 -0.068130 -1.139351 -1.723643 -1.421963 -0.392159 2.721729 3.316085 0.718422 0.037402 -0.332881 3.615455 -3.591307 -1.340438 3.238662 1.985741 -1.618662 1.333259 3.153107 -2.589686 -2.131050 -1.147099 0.127940 0.047959 -2.335354 1.182954 -1.633926 0.911191 0.688522 0.870638 -0.892157 1.291566 0.577864 0.773169 -1.493422 3.968271 4.627127 -2.789188 -0.541399 -1.714822 1.130823 -3.854131 -2.564262 0.598057 0.760923 -0.576441 1.446927 1.154861 2.451327 0.025350 -0.524146 -0.209108 -1.579492 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.840306 -0.121491 1.077032 -1.325219 1.335500 0.514384 0.707125 -0.315721 -1.529288 -0.833130 0.006255 -1.109433 -1.232819 2.300727 -0.772064 0.988315 3.221084 1.255146 -0.417876 -0.781691 1.890268 -1.609951 2.802029 2.700285 -2.145836 -0.167943 1.009647 1.402724 0.702018 1.529592 -0.884442 -1.032391 1.193874 -1.554383 0.681493 -2.190249 0.400089 0.426862 0.241506 -3.386935 0.277228 -0.390323 -0.164373 -0.273782 -0.391093 1.670832 1.960540 1.812328 -0.827771 0.754777 1.416992 0.103920 -0.067697 0.692563 0.461648 0.774043 0.753539 0.725572 -1.107448 -0.154533 -0.517196 -2.203495 0.455626 1.871604 2.677488 0.009258 0.243044 0.714836 -0.155999 0.468006 0.764236 0.355580 0.551261 0.022013 1.349191 -2.779482 -0.221481 -4.437106 -0.844420 -5.490976 -1.338477 -1.310432 1.255011 -0.961980 0.996307 0.133111 2.271081 0.137022 0.349838 1.234966 2.717982 -2.242848 -1.014680 -1.541139 -0.831468 0.771704 -1.418870 -0.069627 1.409905 -0.250454 -1.668815 -1.840796 1.325808 0.636746 -0.757218 -1.095982 -0.212211 2.215814 -2.264261 -1.524688 -2.087110 -0.042913 -0.467012 -3.057792 0.755888 -1.143400 2.280551 0.538742 -0.566436 -1.803371 0.538987 1.845394 -0.526903 -1.218462 -0.266237 2.192191 0.684966 0.063876 0.384652 -0.020665 0.042553 2.263554 2.433909 -1.098815 -0.457589 0.522417 -1.904859 0.032183 -1.977349 -0.833096 1.677666 -2.042796 -0.001238 1.145748 -1.418446 -0.450145 2.502725 -0.101222 1.396959 5.326448 -0.188393 1.470191 0.858846 -2.236293 1.403610 -0.313205 -0.032914 0.900737 1.749136 0.430627 -3.041388 -1.826794 0.685586 2.110540 1.570595 -2.571083 -1.497115 -1.216536 0.287883 0.019528 -0.125212 0.790925 -0.433373 -1.392130 -0.399931 0.863567 3.481141 -1.496514 -1.727033 0.694837 0.264862 -1.061502 -3.173326 -0.766619 -1.090755 0.174593 -0.106455 -0.212012 0.976773 2.688920 -4.531619 2.006963 -1.038602 -0.571721 1.662677 0.180759 -0.990584 -2.984297 0.330486 1.696286 2.384654 0.395910 0.092483 0.624762 -2.077564 -0.184212 0.016972 1.193246 -0.643354 1.038815 0.308525 -1.663821 -1.569108 -0.382471 -0.087900 -1.062621 0.081291 1.059540 0.281404 -4.331890 2.238870 -0.615269 -0.829145 0.998783 0.033807 1.418777 -2.277946 -2.686213 1.194963 0.017991 -0.747507 -1.579357 0.218526 1.701969 -0.206065 -0.315646 -0.879756 -2.867894 1.301032 -0.766993 1.370476 0.797777 0.508034 2.723757 0.344639 -1.014211 -2.175846 -0.232850 -0.080955 -0.991120 -1.205392 -1.042062 -0.381963 2.001759 2.680774 0.187676 -0.143588 -0.025230 2.628922 -2.601926 -0.975993 1.833581 1.809346 -0.866056 1.003570 1.962706 -2.518968 -1.349710 -0.978474 -0.554167 0.085418 -1.684337 1.015712 -1.355719 0.761690 0.615407 0.416043 -0.472085 1.081376 0.533362 0.393091 -0.300599 2.621378 3.769571 -1.792988 -0.072485 -1.668458 0.970410 -2.912762 -1.942532 0.323563 0.649615 -0.825057 0.684513 0.654850 1.644567 0.023493 -0.350703 -0.389341 -0.645053 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__miter_base(int**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.094004 0.019219 0.230993 -0.225112 0.187042 -0.030752 0.085428 -0.093290 -0.252681 -0.122523 -0.046565 -0.124925 -0.094709 0.319760 -0.118501 0.192414 0.502530 0.239633 -0.038493 -0.218610 0.268158 -0.426262 0.432342 0.459415 -0.369990 0.034875 0.228867 0.286762 0.191823 0.338604 -0.233154 -0.057474 0.126169 -0.274716 0.177918 -0.444607 0.047246 0.115670 0.056593 -0.621531 0.040546 -0.138967 0.153557 -0.010648 -0.043617 0.287061 0.307364 0.264572 -0.109584 0.190091 0.261261 0.026773 0.061662 0.103396 0.112779 0.246852 0.360646 0.052262 -0.134540 0.045806 -0.037519 -0.415352 0.163016 0.303221 0.438937 -0.028649 0.034712 0.101136 0.004142 0.036669 0.142589 0.078950 -0.083405 0.017798 0.154701 -0.644639 0.168900 -0.779599 -0.105484 -0.950734 -0.224235 -0.250069 0.136642 -0.170907 0.214451 0.210247 0.384848 0.010318 0.109316 0.033402 0.362031 -0.385720 -0.129788 -0.150762 -0.141072 0.128338 -0.193763 -0.075030 0.194914 0.030762 -0.204689 -0.301452 0.407911 0.130580 -0.161329 -0.082359 -0.053898 0.307065 -0.446607 -0.331187 -0.336288 -0.085632 -0.163594 -0.420870 0.321795 -0.258513 0.419796 0.049303 -0.045832 -0.368465 0.058379 0.349028 -0.068463 -0.174062 -0.222270 0.316947 0.094680 -0.049694 0.044056 -0.072181 -0.024412 0.357065 0.381243 -0.209965 -0.104629 0.171709 -0.365863 -0.061602 -0.342645 -0.174113 0.262581 -0.349164 -0.045952 0.137273 -0.218569 -0.002949 0.525284 -0.026281 0.226708 0.785391 -0.013372 0.185301 0.124011 -0.341305 0.195407 -0.011175 -0.000115 0.199684 0.292826 0.058845 -0.512820 -0.296735 0.006983 0.318142 0.226080 -0.344711 -0.409065 -0.239731 0.004376 0.171450 -0.025376 0.059458 -0.148025 -0.212432 -0.066191 -0.015831 0.594363 -0.164054 -0.114908 0.060596 -0.085086 -0.346777 -0.633221 -0.106649 -0.265682 0.040668 -0.227608 -0.040820 0.129107 0.389632 -0.852524 0.348853 -0.277628 -0.134836 0.304871 -0.049532 -0.079772 -0.629323 0.058994 0.217252 0.411446 -0.041817 0.072536 0.153074 -0.337350 -0.038135 -0.075236 0.205007 -0.183565 0.176354 0.134165 -0.342014 -0.203292 0.014296 0.068804 -0.196446 0.049255 0.153905 0.064642 -0.706442 0.303600 -0.134490 -0.129007 0.287046 0.057879 0.140413 -0.368228 -0.332601 0.155942 0.097753 0.026009 -0.261081 0.000426 0.304311 -0.182946 -0.141232 -0.150793 -0.364421 0.067760 -0.219567 0.110135 0.159668 0.045596 0.345872 0.056895 -0.109158 -0.327838 0.201510 -0.248805 -0.238879 -0.077018 -0.127425 -0.094124 0.304681 0.510783 0.091867 0.101830 0.155542 0.455077 -0.362521 -0.187118 0.244811 0.236619 -0.112639 0.160108 0.258484 -0.418829 -0.233077 -0.140303 -0.137935 0.129883 -0.190660 0.258740 -0.250108 0.106671 0.118972 0.045783 -0.097718 0.255335 0.046769 0.056021 -0.063588 0.450504 0.573211 -0.193256 0.004564 -0.211116 0.067630 -0.436274 -0.177557 -0.066334 0.242864 -0.179586 0.138090 0.104633 0.295406 0.036230 0.005971 0.008597 -0.171667 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_base(int**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.449509 0.049402 0.452496 -1.067446 0.848479 0.312131 0.329773 -0.414432 -0.844442 -0.422050 0.053123 -0.854037 -0.535591 1.178258 -0.485025 0.638435 1.771441 0.406164 -0.302685 -0.507652 1.107846 -0.576300 1.634502 1.517581 -1.327312 -0.066492 0.669219 0.823938 0.489292 0.544021 -0.415500 -0.577520 0.478439 -0.910414 0.295408 -0.996665 0.227189 0.090635 0.449951 -1.838321 0.201218 -0.434559 -0.017189 -0.177271 -0.324185 0.686269 1.227935 1.063550 -0.572757 0.241802 1.105928 0.308697 -0.141275 0.336485 0.126926 0.300999 0.532668 0.323180 -0.402368 -0.310333 -0.142747 -0.758045 0.358514 1.209945 1.471258 0.084124 0.050326 0.624413 0.199032 0.207563 0.385279 0.291629 0.044776 0.241493 0.682044 -1.811323 0.026478 -2.740729 -0.350241 -2.945146 -0.799594 -0.620813 0.514538 -0.581025 0.622514 0.369766 1.343522 0.093094 0.237375 0.812717 1.464004 -1.169213 -0.501246 -0.858174 -0.731156 0.475566 -0.666960 0.116567 0.611778 0.136299 -0.940415 -0.920609 0.633792 0.380025 -0.507075 -0.717932 0.066754 0.924325 -1.096134 -0.781695 -0.861566 0.253429 -0.241704 -1.850255 0.174951 -0.795116 1.359358 -0.001032 -0.258270 -1.199356 0.090985 0.976363 -0.416399 -0.567835 -0.313383 0.965278 0.696965 0.157187 0.213900 -0.091751 0.253843 1.502083 1.051345 -0.750665 -0.296137 0.165978 -0.911500 -0.051105 -1.054889 -0.416085 0.903737 -1.142997 0.284210 0.839870 -0.744804 -0.396792 1.525866 -0.192401 0.725036 3.395528 -0.099748 0.968788 0.615941 -1.266026 0.485587 -0.329005 -0.155077 0.476792 0.820525 0.298349 -1.622735 -1.088108 0.498189 1.200178 0.873103 -1.340754 -0.761326 -0.406893 -0.048526 0.031234 -0.153207 0.329915 -0.319379 -0.756205 -0.278686 0.768494 2.003746 -0.539174 -0.694426 0.459184 0.523878 -0.596722 -1.528347 -0.475438 -0.847111 0.169481 0.163006 0.005644 0.736669 1.553684 -2.778469 1.001743 -0.323146 -0.184038 0.805390 0.207375 -0.726928 -1.663606 0.250597 1.002345 1.215373 -0.151966 0.238022 0.305844 -1.099795 -0.101824 0.110868 0.511687 -0.484304 0.539689 0.274656 -0.966043 -0.822314 0.032055 -0.179017 -0.384291 0.009782 0.636631 -0.039601 -2.427578 1.386699 -0.324346 -0.445269 0.484085 -0.435112 0.957963 -1.309860 -1.315094 0.709451 0.025285 -0.108647 -0.661825 0.168295 0.958338 -0.120490 0.253867 -0.730909 -1.452805 0.606341 -0.418049 0.770690 0.516009 0.291887 1.208895 -0.443697 -0.331857 -1.289151 -0.142087 -0.085445 -0.165200 -0.921385 -0.450165 -0.269369 1.090013 1.428510 -0.150769 -0.242536 0.200741 1.238561 -1.436744 -0.490521 0.804502 0.953531 -0.884489 0.450943 0.955401 -1.294235 -0.571176 -0.675966 -0.226800 -0.079543 -1.070369 0.621101 -0.491084 0.456090 0.441204 0.096550 -0.162625 0.726730 0.289639 0.340303 0.007219 1.346920 1.935090 -0.720588 -0.248602 -1.115067 0.461164 -1.705549 -1.334013 0.393615 0.126743 -0.532272 0.242522 0.129733 1.125910 -0.068819 0.053732 -0.178538 -0.158020 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.116891 -0.861914 -0.104587 -2.815243 2.050643 0.888064 0.853362 -1.094547 -2.367907 -0.305383 0.640003 -2.394337 -0.371316 2.546771 -0.915183 2.485844 3.913357 0.661815 -0.981249 -0.695538 2.586977 -0.395155 3.632646 3.208075 -2.505978 -0.266382 0.455172 1.523490 0.450614 0.297131 -0.658365 -1.323497 1.024675 -2.836009 -0.287399 -1.737088 0.568118 0.695391 2.325300 -3.705250 0.805827 -0.766186 0.346681 -0.644737 -1.075407 0.256165 2.049212 2.477692 -1.100682 0.653926 2.579045 0.472243 -0.455404 0.787751 0.093081 0.883551 0.172216 0.491595 -0.954007 -1.333029 -0.202899 -0.449906 1.044936 2.385145 2.904349 0.252528 -0.159061 1.924969 1.014688 0.383183 1.419059 0.475848 -0.625476 -0.098495 1.344036 -3.907517 -0.318630 -5.582268 -0.683539 -5.188954 -1.792977 -0.405970 1.436098 -0.893964 1.754702 0.704058 2.744276 -0.386540 0.056437 2.113360 2.608570 -2.613720 -1.313155 -1.964730 -1.726960 0.947826 -1.222521 0.088707 1.568310 0.602606 -2.231938 -1.526777 1.015387 1.149123 -0.958773 -2.337295 0.847366 1.579183 -1.643100 -2.267339 -0.939898 1.961801 -0.605654 -3.956222 -0.153435 -1.687224 1.982818 -0.215195 -0.838501 -2.861736 0.002671 1.536612 -1.219667 -1.261149 -0.304499 1.571490 1.766932 0.827896 0.692447 -0.084088 0.579833 4.200460 1.365060 -2.036522 -0.370081 0.281391 -1.297038 0.470159 -2.083184 -1.360110 1.268425 -2.872679 1.106615 2.014635 -1.668278 -0.645015 3.122334 0.527050 1.087503 7.601438 0.021913 2.779439 2.027361 -2.496715 1.113210 -1.145701 0.078734 0.884122 1.429246 -0.050631 -3.374429 -2.534584 1.270607 2.491772 2.152168 -2.771710 -1.541473 -0.418787 0.079052 0.259440 -0.691334 0.843917 -0.141819 -1.845691 -0.436318 2.126720 4.738383 -0.877850 -0.682660 1.420680 1.994796 -1.277851 -3.063162 -1.483702 -2.946782 0.327185 0.914611 0.446450 1.691603 3.519188 -5.122721 1.918722 -0.478869 0.161532 1.675942 1.034161 -2.322149 -3.466347 -0.265121 1.709827 2.822137 -0.933453 0.925649 1.031135 -2.057784 -0.141609 0.469337 0.362247 -0.779212 0.973129 0.204674 -1.770900 -1.115839 0.743310 -1.005116 -0.684279 0.185194 1.627645 0.276555 -4.161280 2.579594 -0.339454 -1.167235 1.279248 -1.273086 2.780002 -2.553278 -2.399190 1.944246 0.156124 0.309508 -0.910812 0.747358 1.909256 0.100095 1.080101 -1.551200 -2.914226 1.468184 -0.590816 2.084070 1.106541 -0.206275 1.559921 -1.718841 -0.662548 -2.546263 -1.118791 -0.579675 0.226002 -2.458767 -1.125745 -0.585797 2.588870 2.295197 -0.168261 -1.295034 0.366784 2.448096 -3.041431 -0.486963 1.807639 1.531298 -2.540595 0.606332 2.312618 -3.017798 -0.362765 -1.336488 0.200245 -0.537675 -2.208626 1.518568 -0.083006 1.406904 0.276890 0.205832 0.329257 1.347010 0.982155 0.868513 0.210086 3.137059 2.946531 -0.668622 -1.172832 -2.648016 0.780398 -3.447680 -3.190530 1.300034 0.173600 -2.095651 0.576368 0.460726 2.975072 -0.324702 0.320573 -0.639671 -0.007026 +PE-benchmarks/tarjan-algorithm.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.171884 0.050852 0.341734 -0.393905 0.317832 0.078100 0.123261 -0.195829 -0.347576 -0.158248 -0.050141 -0.168938 -0.147673 0.499203 -0.218607 0.269230 0.764142 0.295944 -0.088650 -0.303474 0.489791 -0.524849 0.669199 0.669323 -0.581636 -0.004320 0.441817 0.406399 0.314245 0.438573 -0.355937 -0.115276 0.204254 -0.454548 0.227288 -0.623860 0.097837 0.095820 0.138491 -0.856437 0.064975 -0.323967 0.034488 -0.034839 -0.108680 0.405426 0.493706 0.414699 -0.216748 0.184873 0.441672 0.103551 -0.026209 0.146545 0.142900 0.335987 0.478542 0.230044 -0.150936 -0.005377 -0.072776 -0.495366 0.240901 0.503120 0.658381 -0.003478 0.080206 0.217743 0.022768 0.049250 0.173025 0.104188 -0.065267 0.090497 0.261726 -1.021463 0.157080 -1.275295 -0.185902 -1.367077 -0.298250 -0.370101 0.088795 -0.426243 0.337057 0.306068 0.563146 0.043168 0.153567 0.151650 0.596421 -0.592019 -0.190800 -0.301587 -0.275993 0.164728 -0.303223 -0.032325 0.280831 -0.016114 -0.329161 -0.517455 0.492872 0.230569 -0.222827 -0.227787 -0.058799 0.474202 -0.585136 -0.460047 -0.464277 -0.099946 -0.257764 -0.704027 0.321455 -0.415666 0.752107 0.023791 -0.072378 -0.617187 0.071202 0.608169 -0.122057 -0.324088 -0.095775 0.462107 0.239539 -0.023844 0.037332 -0.147655 0.002357 0.583609 0.634764 -0.306078 -0.151837 0.169874 -0.564533 -0.106141 -0.530296 -0.201820 0.437100 -0.491410 -0.020253 0.335946 -0.317145 -0.051187 0.950593 -0.089355 0.368931 1.432222 -0.045679 0.297661 0.168396 -0.567379 0.232604 -0.042446 -0.029247 0.273769 0.413396 0.116507 -0.906467 -0.456678 0.085536 0.476458 0.345931 -0.616702 -0.565659 -0.357100 -0.035974 0.168578 -0.090443 0.102359 -0.256508 -0.312201 -0.127340 0.098932 0.908025 -0.309831 -0.301195 0.128063 -0.038924 -0.462813 -0.899920 -0.185298 -0.376366 0.096651 -0.175534 -0.070629 0.268244 0.616641 -1.328159 0.480977 -0.373528 -0.212515 0.423591 0.002868 -0.160158 -0.813162 0.141500 0.394711 0.563648 -0.023640 0.089839 0.203932 -0.500038 -0.048899 -0.067109 0.319066 -0.246826 0.237134 0.232293 -0.533197 -0.371679 0.050872 0.065232 -0.293130 0.075305 0.231227 -0.078948 -1.157393 0.544650 -0.175405 -0.156286 0.392944 -0.013015 0.287094 -0.575853 -0.569038 0.287175 0.156347 0.096043 -0.357267 0.030873 0.487968 -0.170778 -0.054489 -0.302258 -0.669727 0.083118 -0.294844 0.219476 0.210516 0.145471 0.590455 -0.120099 -0.122018 -0.613904 0.203786 -0.217200 -0.193254 -0.245179 -0.288524 -0.109231 0.492492 0.719181 0.041027 0.098385 0.164519 0.640851 -0.656876 -0.227481 0.345716 0.541057 -0.274925 0.167872 0.378168 -0.599655 -0.368687 -0.186110 -0.221148 0.107103 -0.370987 0.328592 -0.334112 0.188278 0.185438 0.105295 -0.108133 0.353887 0.088327 0.160810 -0.044364 0.588696 0.985513 -0.353428 -0.090889 -0.369750 0.163415 -0.705164 -0.422098 0.020364 0.223973 -0.215445 0.182278 0.125045 0.473775 0.016962 0.035194 0.046417 -0.241725 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.479063 0.046100 0.457175 -1.170073 0.923984 0.448012 0.368742 -0.520663 -0.914311 -0.401128 0.105331 -1.007672 -0.554794 1.279645 -0.535344 0.744776 1.886788 0.393321 -0.379853 -0.503158 1.151633 -0.440791 1.776239 1.624535 -1.403673 -0.063286 0.622281 0.779145 0.502479 0.562396 -0.448814 -0.683388 0.562443 -0.930387 0.278421 -0.970719 0.213697 0.073241 0.572171 -1.932180 0.233555 -0.392056 0.021264 -0.215614 -0.324000 0.661723 1.327808 1.140465 -0.518377 0.226133 1.148742 0.371103 -0.138461 0.356193 0.190178 0.309848 0.599949 0.231439 -0.434952 -0.382986 -0.158944 -0.661598 0.312365 1.311107 1.559228 0.112320 0.030183 0.654110 0.261940 0.218655 0.414298 0.321642 0.058127 0.315533 0.650718 -1.856525 0.058270 -2.753273 -0.367167 -2.979852 -0.862747 -0.595287 0.533837 -0.521540 0.692481 0.265306 1.431590 0.094479 0.194915 0.770852 1.592818 -1.278246 -0.536876 -0.886549 -0.726652 0.459870 -0.704251 0.169246 0.625672 0.095834 -1.036304 -0.931743 0.638605 0.420101 -0.543773 -0.718802 0.125544 0.979639 -1.094834 -0.820003 -0.812269 0.341300 -0.263417 -2.000793 0.176763 -0.849561 1.282831 -0.016013 -0.310179 -1.313539 0.106913 1.013338 -0.481138 -0.630482 -0.419280 1.047475 0.802721 0.205483 0.203689 -0.055779 0.316523 1.670749 0.990162 -0.824634 -0.253247 0.112121 -0.884028 0.004416 -1.085142 -0.437908 0.878637 -1.209635 0.281262 0.942159 -0.790277 -0.321282 1.480968 -0.143441 0.724422 3.642210 -0.150549 1.094534 0.684153 -1.373632 0.515240 -0.385258 -0.169161 0.439595 0.829692 0.324320 -1.758415 -1.180297 0.596477 1.306620 0.932717 -1.410599 -0.678269 -0.400834 -0.086070 -0.048735 -0.139746 0.346189 -0.302952 -0.832100 -0.311846 0.857857 2.194808 -0.586448 -0.698668 0.502150 0.566919 -0.539742 -1.496625 -0.536788 -0.899744 0.208237 0.211791 0.057084 0.822671 1.669961 -2.843251 1.086874 -0.307569 -0.239644 0.941181 0.228161 -0.830158 -1.625737 0.229404 1.075422 1.276035 -0.195339 0.267973 0.322220 -1.181894 -0.118367 0.104902 0.498484 -0.514798 0.537577 0.341465 -1.019415 -0.847243 0.023720 -0.193690 -0.433834 -0.049475 0.706139 0.043821 -2.531709 1.497018 -0.261117 -0.474486 0.487305 -0.525397 1.046404 -1.380459 -1.348068 0.740980 -0.006782 -0.106769 -0.639309 0.180680 0.991086 -0.142100 0.412082 -0.846218 -1.517024 0.679065 -0.410996 0.870027 0.556551 0.307742 1.173588 -0.480966 -0.339414 -1.317406 -0.314874 -0.051564 -0.085815 -1.035241 -0.372172 -0.309892 1.184379 1.467458 -0.176274 -0.349330 0.154032 1.247594 -1.546404 -0.435085 0.853218 0.972448 -1.015582 0.390771 1.015793 -1.331385 -0.556167 -0.698934 -0.276205 -0.175871 -1.152275 0.663509 -0.443960 0.518754 0.420983 0.088510 -0.169216 0.752351 0.294234 0.310048 0.074079 1.423309 1.929012 -0.702283 -0.270445 -1.226854 0.536679 -1.802172 -1.464792 0.493635 0.040607 -0.650683 0.213439 0.113362 1.225603 -0.070184 0.072204 -0.222476 -0.119823 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.264659 -0.878422 -0.081187 -3.328381 2.428168 1.567468 1.048206 -1.625702 -2.717255 -0.200769 0.901042 -3.162512 -0.467334 3.053709 -1.166778 3.017547 4.490091 0.597599 -1.367090 -0.673069 2.805911 0.282392 4.341331 3.742844 -2.887781 -0.250350 0.220485 1.299526 0.516550 0.389008 -0.824935 -1.852837 1.444696 -2.935875 -0.372337 -1.607357 0.500658 0.608423 2.936398 -4.174545 0.967510 -0.553675 0.538947 -0.836455 -1.074480 0.133438 2.548576 2.862263 -0.828786 0.575582 2.793117 0.784271 -0.441339 0.886291 0.409340 0.927796 0.508620 0.032887 -1.116926 -1.696290 -0.283884 0.032332 0.814193 2.890956 3.344197 0.393509 -0.259778 2.073454 1.329227 0.438642 1.564153 0.625917 -0.558719 0.271704 1.187402 -4.133524 -0.159669 -5.644989 -0.768173 -5.362488 -2.108742 -0.278336 1.532594 -0.596536 2.104535 0.181760 3.184615 -0.379615 -0.155866 1.904034 3.252641 -3.158885 -1.491306 -2.106605 -1.704441 0.869345 -1.408977 0.352102 1.637779 0.400280 -2.711380 -1.582450 1.039450 1.349502 -1.142266 -2.341646 1.141313 1.855753 -1.636599 -2.458881 -0.693418 2.401154 -0.714218 -4.708909 -0.144375 -1.959452 1.600186 -0.290103 -1.098051 -3.432654 0.082312 1.721490 -1.543364 -1.574384 -0.833981 1.982477 2.295716 1.069377 0.641392 0.095772 0.893232 5.043791 1.059148 -2.406368 -0.155633 0.012105 -1.159680 0.747764 -2.234447 -1.469229 1.142924 -3.205871 1.091878 2.526079 -1.895640 -0.267463 2.897840 0.771853 1.084431 8.834847 -0.232095 3.408166 2.368422 -3.034747 1.261475 -1.426970 0.008313 0.698139 1.475079 0.079224 -4.052828 -2.995532 1.762049 3.023986 2.450240 -3.120931 -1.126187 -0.388495 -0.108664 -0.140403 -0.624029 0.925289 -0.059682 -2.225166 -0.602119 2.573537 5.693691 -1.114222 -0.703874 1.635511 2.210001 -0.992952 -2.904552 -1.790453 -3.209945 0.520969 1.158537 0.703647 2.121614 4.100574 -5.446631 2.344378 -0.400985 -0.116499 2.354900 1.138093 -2.838297 -3.277000 -0.371084 2.075210 3.125447 -1.150318 1.075404 1.113016 -2.468280 -0.224326 0.439505 0.296232 -0.931682 0.962569 0.538717 -2.037760 -1.240486 0.701636 -1.078481 -0.931990 -0.111090 1.975188 0.693668 -4.681935 3.131191 -0.023311 -1.313319 1.295349 -1.724509 3.222207 -2.906275 -2.564063 2.101892 -0.004211 0.318899 -0.798232 0.809282 2.072996 -0.007956 1.871173 -2.127745 -3.235324 1.831805 -0.555553 2.580757 1.309251 -0.126999 1.383386 -1.905184 -0.700334 -2.687536 -1.982726 -0.410266 0.622925 -3.028046 -0.735781 -0.788412 3.060696 2.489940 -0.295786 -1.829002 0.133240 2.493262 -3.589733 -0.209779 2.051217 1.625887 -3.196061 0.305476 2.614580 -3.203548 -0.287721 -1.451328 -0.046784 -1.019315 -2.618155 1.730608 0.152615 1.720226 0.175781 0.165633 0.296301 1.475112 1.005131 0.717239 0.544384 3.519002 2.916142 -0.577094 -1.282048 -3.206951 1.157972 -3.930794 -3.844423 1.800137 -0.257080 -2.687709 0.430952 0.378874 3.473535 -0.331529 0.412931 -0.859362 0.183957 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.310755 0.147580 0.699946 -0.671705 0.539508 0.103629 0.241426 -0.229616 -0.588818 -0.359932 -0.091261 -0.481361 -0.497314 0.923101 -0.364688 0.297061 1.370261 0.502425 -0.199682 -0.462954 0.803138 -0.855030 1.171321 1.184628 -1.028338 -0.017651 0.645612 0.747011 0.515325 0.773941 -0.551614 -0.245473 0.336708 -0.561660 0.507508 -0.980647 0.156481 0.066508 0.010547 -1.521838 0.099061 -0.284289 0.116807 -0.096939 -0.135963 0.855870 0.978325 0.753224 -0.389096 0.155626 0.705443 0.086042 0.028722 0.258402 0.260697 0.361461 0.843264 0.418668 -0.376613 -0.021385 -0.165170 -0.971969 0.313216 0.911230 1.192347 0.045013 0.117323 0.263307 0.058245 0.151716 0.238817 0.201611 0.105021 0.208194 0.515574 -1.430477 0.292269 -2.061375 -0.281998 -2.452062 -0.579518 -0.678575 0.350646 -0.566132 0.427341 0.233077 1.022943 0.122344 0.275974 0.308236 1.189204 -0.937226 -0.362972 -0.621394 -0.478121 0.351495 -0.559686 -0.027796 0.599116 -0.033159 -0.653487 -0.762786 0.738820 0.292159 -0.390706 -0.188529 -0.115837 0.882703 -0.961581 -0.605680 -0.891489 -0.213564 -0.237994 -1.334660 0.509910 -0.659539 1.082602 0.097594 -0.166647 -0.883081 0.164011 0.917059 -0.244924 -0.434131 -0.461086 1.004025 0.347385 -0.056224 0.099470 -0.131051 0.066831 0.809531 1.063262 -0.510117 -0.250506 0.236817 -1.011547 -0.167135 -0.905819 -0.330036 0.871518 -0.808495 -0.127860 0.489607 -0.580667 -0.106569 1.268325 -0.166245 0.668690 2.455986 -0.128310 0.556844 0.261600 -0.979719 0.621454 0.011363 -0.126268 0.402551 0.736191 0.299251 -1.476662 -0.809526 0.249045 0.912552 0.628350 -1.075536 -0.739434 -0.558362 -0.048523 0.114998 -0.053896 0.229882 -0.369821 -0.561124 -0.239438 0.285198 1.500581 -0.553266 -0.824917 0.234225 -0.064224 -0.597889 -1.478069 -0.278286 -0.449667 0.128200 -0.350965 -0.126148 0.511837 1.138188 -2.272875 0.912775 -0.454519 -0.386188 0.913052 -0.128385 -0.319254 -1.469081 0.274195 0.800352 0.988480 0.060807 -0.092390 0.232765 -0.913937 -0.097580 -0.076605 0.588913 -0.405162 0.448131 0.259354 -0.806242 -0.719535 -0.234662 0.059662 -0.431136 -0.004865 0.416118 -0.067151 -1.954937 1.072050 -0.288238 -0.273427 0.454326 -0.080126 0.348127 -1.035560 -1.081474 0.391532 0.114802 -0.148835 -0.763880 0.043245 0.780520 -0.262912 -0.145330 -0.542853 -1.210420 0.393054 -0.532364 0.492546 0.377526 0.328854 1.099215 0.317477 -0.284195 -1.010852 0.234380 -0.248911 -0.373158 -0.504452 -0.425066 -0.210435 0.816335 1.266015 -0.036840 0.186392 0.120906 1.104097 -1.044812 -0.563123 0.661806 0.627491 -0.439602 0.373681 0.721737 -1.016776 -0.678166 -0.478552 -0.484940 0.104322 -0.736799 0.481115 -0.631254 0.260797 0.397216 0.081767 -0.263005 0.561112 0.150615 0.158849 -0.069252 1.101679 1.722282 -0.719712 -0.000212 -0.723246 0.401129 -1.299878 -0.758661 0.100553 0.278863 -0.310006 0.262394 0.293824 0.728718 0.010271 -0.084249 -0.045124 -0.306429 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::back() = -0.370569 0.476898 0.712018 -0.713595 0.846182 0.520043 0.305537 -0.155890 -0.600786 -0.647890 -0.151794 -1.039357 -1.085921 1.190730 -0.504778 0.073908 1.556890 0.398017 -0.189180 -0.193913 0.593866 -0.181428 1.430655 1.254513 -1.095150 -0.023450 0.369140 0.610624 -0.020318 1.068770 -0.302275 -1.228456 0.464864 0.101534 0.416497 -0.662352 0.096768 -0.158818 -0.305164 -1.630499 0.111141 0.379628 -0.060684 -0.209821 -0.048331 0.466360 1.463096 0.886934 -0.259634 -0.039731 0.589874 0.571686 -0.009972 0.330609 0.320260 -0.082119 0.534734 -0.347744 -0.635708 -0.178065 -0.313896 -0.838930 -0.273657 1.100194 1.298830 0.219468 0.063587 -0.010526 -0.319445 0.348552 0.051439 0.259422 0.545354 0.560904 0.458803 -0.304534 0.004728 -1.474618 -0.245620 -2.286313 -0.730198 -0.753264 0.619970 0.528570 0.190571 -0.288843 1.245057 0.160786 0.320603 0.612877 1.734661 -0.834379 -0.450247 -0.785834 -0.543120 0.435884 -0.622327 0.117499 0.105473 0.018456 -0.918671 -0.761407 0.248133 0.053126 -0.394974 -0.046387 -0.094599 0.966699 -1.200664 -0.172604 -1.034231 0.009079 0.142589 -1.711950 -0.262993 -0.370820 0.542024 0.222367 -0.339870 -0.722903 0.383180 0.695889 -0.384563 -0.283864 -0.847704 1.089483 0.308479 -0.059998 0.176719 0.048761 0.334781 0.928506 0.707081 -0.486372 -0.160902 -0.016582 -0.575442 -0.154036 -0.739948 -0.135047 0.330728 -0.864202 0.209661 0.668285 -0.703139 -0.403929 -0.344454 -0.477645 0.772226 2.469691 -0.412441 0.731480 0.254806 -1.298676 0.566863 -0.169091 -0.431050 0.023450 0.712062 0.658781 -0.654690 -0.873380 0.680983 1.172394 0.770174 -0.751811 0.115182 -0.357032 0.001276 -0.339260 0.251230 0.379366 -0.270388 -0.721414 -0.350058 0.667047 1.579146 -0.388181 -1.213974 0.457183 0.404608 0.073994 -0.522946 -0.223519 -0.112268 0.092828 0.291680 -0.203370 0.597902 1.422077 -2.241966 1.089290 0.106619 -0.387946 0.840283 -0.178743 -0.462430 -0.814029 0.310251 1.256289 1.083704 0.194845 0.020353 -0.186081 -1.031037 -0.170439 0.128124 0.709021 -0.438963 0.515952 0.208494 -0.983007 -0.977877 -0.721134 -0.104868 -0.352413 -0.518749 0.456552 0.373987 -2.228938 1.551392 -0.101054 -0.224856 -0.056040 -0.279248 0.540569 -1.145535 -1.422669 0.365409 -0.446391 -0.768653 -0.413906 0.015706 0.685525 0.014255 0.282740 -0.546706 -1.105252 0.888246 0.005795 0.772310 0.423523 0.628594 1.112046 0.547763 -0.454557 -0.706539 -0.517064 0.621378 -0.441742 -0.672972 0.224157 -0.335551 0.864961 1.378368 -0.188806 -0.396639 -0.328393 1.053568 -0.710751 -0.442025 0.876447 0.089847 -0.575567 0.379239 0.972497 -0.850288 -0.794653 -0.796297 -0.107152 -0.318010 -1.101299 0.169931 -0.722477 0.155649 0.700658 -0.121228 -0.697203 0.445165 0.179417 -0.092661 0.026832 1.171879 1.149065 -0.789632 0.569649 -0.937496 0.530401 -1.592165 -1.112604 0.312736 -0.293190 -0.259745 0.041169 -0.139989 0.611899 -0.201269 0.184513 -0.256960 -0.088171 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::end() = -0.202872 0.386286 0.833724 -0.768901 0.740881 0.663745 0.189043 -0.256858 -0.591395 -0.176435 -0.161819 -0.690996 -0.517768 0.896668 -0.399165 0.147309 1.264190 0.331733 -0.258820 -0.189273 0.501414 -0.160129 1.084665 1.059747 -0.910557 0.088716 0.392530 0.531347 0.062486 1.142907 -0.746586 -0.784597 0.139268 -0.050805 0.323805 -0.661185 -0.043111 -0.154620 0.005727 -1.416468 0.125679 0.142903 -0.105700 -0.165007 0.055067 0.224360 1.196741 0.621110 -0.144701 -0.032234 0.501326 0.459086 0.015406 0.169219 0.468155 0.382453 1.055980 0.104745 -0.338463 -0.096058 -0.220767 -0.368177 -0.006361 0.894945 0.967628 0.200404 -0.037782 -0.128244 -0.013309 0.075126 0.060947 0.242278 0.126259 0.556816 0.235297 -0.560368 0.415169 -1.187655 -0.025019 -1.270032 -0.570493 -0.537621 0.234890 0.159621 0.337959 -0.187365 1.012782 -0.120191 0.279404 0.138672 1.220847 -0.796707 -0.263686 -0.529516 -0.607878 0.184427 -0.324243 -0.043659 -0.031420 -0.123919 -0.656769 -0.710872 0.454843 0.219050 -0.373789 0.221603 -0.018293 0.760374 -0.780992 -0.352142 -0.649748 0.104121 -0.146817 -1.246945 -0.260797 -0.522911 0.447637 0.043989 -0.333308 -0.923972 0.298948 0.789129 -0.426832 -0.286496 -0.594495 0.943956 0.412188 -0.118188 0.011412 -0.243427 0.250311 0.732486 0.572093 -0.494487 -0.047655 0.089640 -0.549570 -0.238206 -0.644003 -0.069346 0.051769 -0.611464 -0.037110 0.640851 -0.541499 0.137012 0.103735 -0.221219 0.526795 2.615566 -0.422937 0.596790 0.093695 -1.067311 0.592579 0.102466 -0.331137 0.046037 0.497640 0.538340 -1.244930 -0.678197 0.458356 0.927890 0.576733 -0.730285 -0.042129 -0.386019 -0.234039 -0.019455 0.217387 0.100492 -0.305176 -0.563418 -0.340214 0.301482 1.623293 -0.309597 -1.306758 0.280143 0.022696 -0.204843 -0.537440 -0.172870 -0.268376 0.149110 0.061376 -0.232281 0.652475 1.074539 -2.092426 0.902023 -0.179852 -0.683033 1.052886 -0.212143 -0.251461 -0.391656 0.145842 0.887979 0.981433 0.134289 -0.163550 -0.047398 -0.801328 -0.139136 0.017949 0.538595 -0.505640 0.448055 0.439181 -1.031418 -0.601283 -0.610279 -0.021681 -0.405799 -0.538191 0.330878 -0.162025 -1.886209 1.158023 0.176155 -0.041625 0.254066 -0.259352 0.226737 -0.835394 -1.020850 0.304624 0.022253 -0.121845 -0.228702 -0.102536 0.628955 0.032408 0.425198 -0.779203 -1.101091 0.417209 -0.136735 0.660075 0.397519 0.372359 0.654764 0.511793 -0.163682 -0.655640 -0.293573 0.435375 -0.055881 -0.483305 -0.060902 -0.421511 0.719646 1.037167 -0.125295 -0.074435 -0.472824 0.887336 -0.533418 -0.130440 0.533079 0.008439 -0.591755 -0.039051 0.667923 -0.590876 -0.588803 -0.481663 -0.355119 -0.270137 -0.676031 0.313934 -0.485343 0.178051 0.477706 -0.099053 -0.535670 0.332993 0.040843 -0.089465 0.154734 0.922134 0.905502 -0.436491 0.453935 -0.681219 0.518308 -1.158492 -0.737233 0.144851 -0.364537 -0.449572 0.009440 -0.031445 0.620249 -0.122308 0.290000 0.053010 -0.152096 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator--() = -0.672124 0.842697 1.301463 -1.926494 1.842057 2.204664 0.386375 -0.982143 -1.135305 -0.225538 -0.250621 -1.651671 -1.000928 2.158709 -1.035166 0.714242 2.695714 0.308747 -0.685707 0.010259 1.523184 0.417436 2.409838 1.968448 -1.920192 -0.147117 1.070661 0.876785 -0.168839 2.178125 -1.363160 -2.276307 0.373160 -0.410066 0.263134 -1.073979 0.153011 -0.410026 0.626313 -2.602933 0.369926 0.176531 -0.687730 -0.589667 -0.266379 -0.691284 2.572636 1.517003 -0.426896 -0.580504 1.246676 1.494068 -0.554675 0.393657 0.847251 0.686557 1.535839 0.189240 -0.628566 -0.744863 -0.492528 0.120152 -0.078010 2.103536 2.064894 0.634259 0.106216 0.261673 -0.184000 0.217233 -0.027321 0.372583 0.164149 1.425062 0.469819 -1.202866 0.301658 -2.610215 -0.161008 -1.885012 -1.005638 -0.931336 -0.204639 0.441327 1.031330 -0.415231 2.079858 -0.270198 0.460342 0.818559 2.895428 -1.795000 -0.593202 -1.616040 -1.662483 0.324924 -0.785470 0.148694 -0.352060 -0.459334 -1.531405 -1.854998 0.240421 0.809457 -0.651062 -0.307721 0.178113 1.571702 -1.280092 -0.895379 -0.885101 0.610319 -0.601257 -3.050136 -1.495217 -1.140422 0.669272 -0.151775 -0.675260 -2.528045 0.561071 1.974361 -0.975741 -1.090415 -0.334601 1.668720 1.317334 0.004834 -0.005743 -0.715597 0.736422 2.219737 1.058821 -1.073231 -0.023578 -0.260762 -0.875863 -0.485266 -1.330395 -0.061173 -0.269679 -1.414427 0.197362 2.203297 -1.103552 0.116747 0.231897 -0.691824 1.265503 6.586493 -0.972992 1.431150 0.278505 -2.680537 0.953184 -0.073739 -0.927257 -0.224166 0.787554 1.193908 -2.780418 -1.581207 1.432722 1.940708 1.375067 -1.432898 0.098915 -0.768982 -0.615330 -0.401035 0.151754 0.413387 -0.830937 -1.357880 -0.830946 1.308485 3.552938 -0.808414 -2.786369 1.109624 0.938682 -0.242569 -0.674957 -0.618400 -1.101310 0.395177 0.947605 -0.552788 1.646690 2.519941 -4.205288 1.769632 0.055300 -1.340866 1.924860 -0.162547 -0.896523 -0.180718 0.420076 2.298944 1.860141 0.050852 0.098862 -0.310435 -1.628796 -0.216854 0.259223 1.023118 -0.868280 0.739793 0.830616 -2.342280 -1.602926 -0.762184 -0.450288 -1.109887 -1.179326 0.705150 -0.434772 -3.811926 2.935994 0.560778 0.121186 0.505179 -0.982414 1.105747 -1.883983 -2.455687 1.019121 -0.006476 0.229047 0.120661 0.047707 1.467019 0.652093 1.601562 -1.783602 -2.562766 0.644592 0.141276 1.589893 0.673317 1.097576 1.133582 0.037664 -0.224435 -1.702859 -1.348405 1.379349 0.660020 -1.689849 -0.577608 -0.709416 1.889948 1.881555 -0.558375 -0.872205 -1.302324 1.607855 -1.308726 0.191251 1.148531 0.223220 -2.042165 -0.815102 1.507035 -1.088907 -1.193996 -0.922594 -0.152217 -1.094839 -1.967509 0.260141 -0.630456 0.514392 1.006435 -0.209952 -0.975378 0.519546 0.449077 0.114874 0.532045 1.635475 1.290560 -0.885895 0.480164 -1.740437 1.048928 -2.744623 -2.343434 0.956483 -1.352414 -0.941601 -0.083776 -0.258957 1.509141 -0.573239 1.242529 0.319855 -0.450720 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.123077 0.225392 0.274166 -0.343964 0.398271 0.352908 0.086009 -0.235578 -0.231895 -0.130017 -0.067307 -0.282133 -0.207557 0.425753 -0.234330 0.174848 0.587781 0.105968 -0.070452 -0.118856 0.293246 -0.081703 0.575746 0.485162 -0.444234 0.015046 0.329864 0.187070 0.018350 0.479682 -0.325322 -0.459486 0.158813 -0.166888 0.068299 -0.308627 0.015340 -0.075509 0.137863 -0.601169 0.050550 -0.142102 -0.153359 -0.066477 -0.066159 0.019557 0.576456 0.312948 -0.077722 0.048001 0.297870 0.321537 -0.089772 0.107172 0.187172 0.208395 0.377282 -0.031450 -0.117961 -0.085157 -0.106023 -0.132396 -0.015081 0.451651 0.462427 0.079170 0.025860 0.095506 -0.119323 0.030982 0.014166 0.111206 0.020472 0.298133 0.106285 -0.474466 0.082230 -0.715441 -0.124626 -0.696368 -0.238319 -0.269197 -0.065989 -0.027399 0.271790 0.135215 0.478559 0.002333 0.130304 0.126139 0.614164 -0.469253 -0.131095 -0.225867 -0.273939 0.047377 -0.188663 0.048577 -0.096678 -0.065971 -0.307730 -0.463030 0.222731 0.163024 -0.163892 -0.140144 -0.008807 0.320688 -0.461051 -0.241821 -0.309973 -0.005395 -0.173105 -0.624191 -0.124869 -0.216698 0.427489 0.003403 -0.128494 -0.587388 0.132515 0.491765 -0.164270 -0.274039 -0.029161 0.297246 0.260119 0.004732 0.012275 -0.156042 0.143903 0.566946 0.348648 -0.214198 -0.051505 -0.016011 -0.232170 -0.108298 -0.278306 -0.037171 -0.019142 -0.349980 0.127931 0.441037 -0.246808 -0.040153 0.271628 -0.199386 0.278206 1.228205 -0.192774 0.270785 0.064166 -0.592897 0.061244 -0.126843 -0.169219 0.014792 0.234800 0.257837 -0.539112 -0.337398 0.257156 0.416757 0.270542 -0.362706 -0.120955 -0.198281 -0.076401 0.007113 0.017540 0.075441 -0.193748 -0.275885 -0.162404 0.187213 0.815376 -0.187613 -0.376127 0.196732 0.077469 -0.115037 -0.278253 -0.130853 -0.223321 0.103138 0.158311 -0.099602 0.264472 0.521088 -1.011992 0.374145 -0.159526 -0.277536 0.307323 0.027872 -0.142004 -0.150445 0.119612 0.461335 0.398838 0.023099 0.153665 -0.020467 -0.372552 -0.063271 0.006167 0.266425 -0.230909 0.184138 0.276215 -0.597106 -0.352425 -0.059692 0.021293 -0.236952 -0.149500 0.162622 -0.060916 -1.020900 0.592305 0.044247 -0.034330 0.178952 -0.123539 0.298742 -0.422547 -0.513160 0.241659 -0.029091 0.071742 0.014631 -0.013120 0.320552 0.027687 0.247164 -0.324203 -0.487114 0.089253 0.020093 0.260350 0.165815 0.246475 0.359340 -0.230821 -0.075573 -0.376703 -0.111402 0.198348 -0.032721 -0.257016 -0.037591 -0.150514 0.406864 0.515752 -0.038083 -0.122636 -0.083495 0.381567 -0.390651 0.025719 0.260562 0.332117 -0.369678 -0.049314 0.305171 -0.276074 -0.296537 -0.165638 -0.057310 -0.153427 -0.387590 0.108994 -0.228803 0.102211 0.249481 0.008481 -0.220212 0.197696 0.035473 0.081766 0.054117 0.349084 0.483251 -0.231001 0.077169 -0.334159 0.169371 -0.590628 -0.487865 0.138269 -0.097346 -0.183942 -0.004102 -0.105349 0.336666 -0.085343 0.212705 0.069908 -0.142053 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.505811 0.844616 1.322920 -1.512303 1.543086 1.701722 0.340376 -0.888870 -0.877962 -0.216542 -0.219635 -1.105424 -0.822816 1.705381 -0.873020 0.532119 2.354085 0.313364 -0.516282 -0.302882 1.374117 -0.139575 2.150913 1.851168 -1.761620 -0.046119 1.361837 0.768937 0.208633 1.788520 -1.549284 -1.508089 0.457858 -0.720190 0.350787 -1.095301 0.052617 -0.560286 0.555997 -2.253224 0.214088 -0.529385 -0.930975 -0.368556 -0.252023 0.188499 2.329663 1.223884 -0.438266 -0.295118 1.140243 0.981395 -0.467182 0.325530 0.801724 0.816218 1.675608 0.820840 -0.418444 -0.469495 -0.463624 -0.243812 0.072946 1.819619 1.778177 0.445055 0.084881 0.362482 -0.115091 0.032075 -0.060941 0.404633 0.288146 1.256346 0.560906 -1.838358 0.373091 -2.830979 -0.384961 -2.270691 -0.891524 -1.001361 -0.388674 -0.688778 1.044067 0.029867 1.812071 -0.096075 0.478471 0.508217 2.486521 -1.831783 -0.496669 -1.200166 -1.257950 0.108387 -0.703644 0.234126 -0.002634 -0.630016 -1.282868 -1.782907 0.658860 0.755326 -0.606258 -0.369580 0.043853 1.395568 -1.201265 -0.872777 -1.104524 0.015726 -0.655304 -2.579327 -0.784526 -0.962982 1.536262 -0.062532 -0.579416 -2.383778 0.488551 2.057523 -0.768371 -1.147983 0.243045 1.542849 1.214691 0.064564 -0.015733 -0.669022 0.634838 1.939155 1.580637 -0.824879 -0.112802 -0.201128 -1.174325 -0.454448 -1.173022 -0.058521 0.210406 -1.163985 0.139391 1.879109 -0.947083 0.176151 1.463117 -0.610206 1.097887 5.739965 -0.838882 1.131834 0.095316 -2.326031 0.725722 -0.172156 -0.736517 -0.019036 0.848514 1.088384 -3.043456 -1.321419 1.145724 1.670373 1.071417 -1.846932 -0.285975 -0.821790 -0.489678 -0.223539 0.027592 0.288817 -0.689010 -1.058124 -0.698162 0.972681 3.285316 -1.052822 -2.477503 0.785187 0.215951 -0.317656 -1.248858 -0.535383 -0.773265 0.423075 0.608821 -0.441472 1.350501 2.090903 -3.991970 1.457376 -0.526783 -1.380986 1.753827 0.042586 -0.625631 -0.391340 0.507366 1.920486 1.521613 0.332285 -0.087146 -0.164610 -1.445111 -0.213649 0.102828 1.031496 -0.802525 0.716641 0.951244 -2.183639 -1.428247 -0.606435 -0.068232 -0.957687 -0.718884 0.618316 -0.880156 -3.902045 2.489764 0.403172 0.009238 0.599747 -0.734896 0.892431 -1.649228 -2.176514 0.925325 0.086326 0.351120 -0.148337 -0.046631 1.280206 0.439514 1.178358 -1.640775 -2.504522 0.451348 -0.090856 1.326487 0.608428 1.040953 1.523490 -0.342223 -0.218451 -1.786860 -0.694332 1.025453 0.436496 -1.379208 -0.778223 -0.599348 1.636616 1.793706 -0.463921 -0.267363 -0.921395 1.427207 -1.727754 0.067649 0.954529 1.226786 -1.642496 -0.508261 1.193348 -0.983774 -1.169381 -0.626488 -0.662335 -0.830230 -1.613734 0.297870 -0.794726 0.422757 0.913520 -0.015935 -0.688041 0.556871 0.150883 0.341613 0.359500 1.278355 2.245120 -1.121778 0.134800 -1.442318 1.047979 -2.357376 -2.073384 0.814217 -0.799838 -0.691124 -0.088603 -0.028103 1.300686 -0.379169 0.588725 0.328840 -0.490634 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::pop_back() = -1.066997 2.017789 2.608367 -3.027397 4.062518 4.321150 0.840909 -1.132518 -1.918078 -0.739790 -0.878776 -3.495507 -2.900491 4.157276 -1.576080 1.382524 4.955737 0.347605 -1.133462 0.434558 2.602729 0.584915 4.468089 2.950000 -3.435408 -0.050568 1.378694 1.485296 -1.171439 4.873179 -2.997601 -4.743119 0.844017 -0.328241 0.723273 -1.535113 0.262545 -1.099950 0.335884 -4.708172 0.477824 1.505432 -1.506182 -1.000937 -0.495166 -0.882867 5.306189 2.808173 -0.658046 -1.197667 1.716729 1.972368 -0.607587 0.984877 1.587097 1.174840 2.674147 0.018549 -2.130666 -1.262133 -1.170217 -0.780338 -0.703166 3.439587 3.688692 0.851655 -0.000815 0.705675 -1.016826 0.403521 -0.308229 0.768657 1.240632 2.379975 1.261922 -0.770550 0.187994 -3.170670 -0.555931 -3.536188 -2.107592 -2.339879 -0.151532 1.741649 1.812827 -1.970682 4.197040 -0.711937 0.927648 1.221648 5.902937 -3.689308 -1.257429 -3.741862 -2.356805 0.306294 -1.652717 -0.447537 -0.166417 -1.363667 -2.926433 -3.175387 0.432906 1.051179 -1.077456 -0.349509 -0.234389 3.331314 -2.708404 -1.604665 -2.708834 0.725829 -0.889050 -5.685019 -2.592272 -0.725221 0.128194 0.246342 -0.906994 -4.419373 1.523770 3.667359 -1.941712 -2.102277 -0.869759 3.981022 2.122012 -0.285814 0.585526 -0.622045 1.610948 3.816391 2.626924 -1.516886 -0.496044 -0.398947 -1.369073 -0.790473 -1.922288 -0.109658 -0.973599 -2.931801 -0.062139 3.974893 -1.992558 0.945913 -1.388667 -1.369977 2.549984 10.835658 -2.110661 2.269964 -0.258013 -5.137061 2.857492 -0.091461 -2.182473 -0.900566 1.321251 2.593370 -4.687650 -2.868214 3.166714 3.571938 2.531117 -2.873698 1.028226 -1.673941 -0.534461 -1.109982 0.356296 1.608753 -0.877836 -2.442425 -1.446037 2.003435 7.150229 -2.121682 -6.072878 2.796784 1.034219 0.115021 -1.419319 -1.308856 -1.556705 -0.001140 1.581406 -1.139304 2.641745 4.832921 -6.755940 3.542176 0.150655 -3.240890 4.173244 -0.993092 -1.027028 -0.048208 0.287925 4.729505 3.598766 0.744630 -0.354228 -1.505752 -2.981633 -0.122408 0.556759 2.109631 -1.093535 1.343242 0.806626 -4.280735 -3.104081 -2.523745 -0.986460 -1.798144 -2.461787 1.076345 -0.090227 -7.101870 5.722083 1.023019 0.282272 0.785995 -1.084968 1.908610 -3.143521 -4.948446 1.911721 -0.649743 -0.754356 0.093826 0.147454 2.302025 1.489814 2.037665 -2.915911 -5.348867 1.919653 0.718816 2.999175 1.249151 2.466845 2.507763 2.098614 -1.366234 -2.635299 -3.234473 2.760706 0.490107 -2.603343 -0.863105 -1.239525 3.633536 3.460452 -0.677040 -1.150835 -3.487150 2.869121 -2.351427 0.086369 2.896233 -0.385998 -3.617161 -1.342132 3.449643 -1.573029 -2.703060 -2.006592 -0.094617 -2.468337 -3.748005 -0.396027 -1.912268 0.264711 2.491254 -0.737373 -2.345219 0.629994 0.589362 -0.447287 -0.043892 3.709677 2.280319 -2.403908 1.639378 -3.085247 2.396861 -5.131849 -4.177413 1.825151 -2.162428 -1.538554 -0.222731 0.478094 2.076914 -1.405373 1.519375 0.238071 -1.516338 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_pop_back_aux() = -0.914908 2.209603 3.398147 -3.273215 3.574336 4.502806 0.735549 -1.539844 -1.963309 -0.265971 -0.570208 -3.583380 -2.475156 3.745593 -1.891733 0.420345 4.772798 0.453547 -1.406943 0.315554 1.862212 1.352801 4.295203 3.619405 -3.284031 0.081381 1.339574 1.367625 -0.888032 4.860215 -3.439545 -4.494430 0.473008 0.554317 0.644846 -1.289791 -0.293907 -1.606907 0.324470 -4.567857 0.552185 1.220878 -1.606176 -1.068191 0.127153 -0.734615 5.453345 2.396190 -0.127861 -1.488135 1.561492 2.466207 -0.518315 0.598226 2.279629 1.054045 4.130609 0.484083 -1.420275 -1.182062 -1.253859 0.300822 -0.944160 3.754750 3.413910 1.466771 -0.183248 -0.720146 -0.452160 0.210728 -0.472193 0.874298 1.105196 3.358805 0.529304 -0.268155 1.411035 -2.801445 -0.081248 -1.980902 -1.994252 -1.757137 -0.169359 1.537056 1.427062 -2.008053 3.831585 -0.629823 0.906644 0.504639 5.640869 -3.194893 -1.021121 -2.495930 -2.784573 0.102089 -1.103580 0.314941 -1.090462 -1.259343 -2.916842 -2.887890 0.432643 1.059554 -1.155177 1.173219 0.267341 2.838716 -2.044516 -0.734678 -1.919120 0.689059 -0.426296 -5.397390 -3.212330 -1.510485 0.375275 -0.009601 -1.731334 -4.222902 1.542921 3.296879 -2.082789 -1.439764 -1.539906 3.775971 2.112777 -0.157047 -0.116990 -1.185667 1.726640 3.078668 1.606122 -1.724049 0.315467 -0.840182 -1.456518 -0.900043 -1.822937 0.344190 -1.295440 -1.990399 0.026877 3.683008 -2.019729 1.058522 -1.653885 -1.091669 2.038179 11.445226 -2.510322 2.595055 -0.182580 -4.914336 2.425607 0.242877 -2.018745 -1.126013 1.217627 2.857187 -5.021438 -2.598349 3.103190 3.712193 2.279811 -2.686452 1.824105 -1.177128 -1.188635 -1.181789 1.022175 0.612511 -1.086396 -2.364456 -1.698534 2.142575 6.768454 -1.493669 -6.910054 1.876707 0.434219 0.770315 -0.152122 -0.799725 -0.551751 0.746000 1.619703 -1.116695 3.090089 4.451082 -7.386386 3.419062 0.235760 -3.490120 4.787184 -0.887181 -1.293359 1.296772 0.599863 4.420036 3.309940 1.076387 -1.152689 -1.207376 -2.888846 -0.583224 0.416850 2.112802 -1.738706 1.520940 1.836842 -4.585723 -2.856864 -3.335452 -0.478933 -1.736710 -3.219148 1.182789 -1.250227 -7.297514 5.595842 1.944295 0.482017 0.127102 -1.824997 0.862781 -3.047160 -4.533384 1.248390 -0.625026 -0.369410 0.302958 -0.329891 2.001427 1.439396 3.245344 -3.789261 -4.736111 1.831323 0.559940 3.376436 1.285857 2.326451 1.948695 2.275883 -0.474435 -2.385665 -2.872969 3.680523 1.097804 -2.859585 -0.127383 -1.748687 3.088872 3.233315 -1.225684 -1.104558 -3.663993 2.595512 -1.600216 0.435124 2.072157 -0.670758 -3.468115 -1.691997 2.698551 -1.146010 -2.341213 -1.803020 -1.330510 -2.727336 -3.399858 0.045349 -1.407815 0.537548 2.159108 -0.755176 -2.418147 0.431084 0.158884 -0.504657 1.238670 2.887124 2.161922 -1.670005 2.126537 -3.078452 2.631165 -4.738211 -4.012147 1.855290 -3.254342 -1.809980 -0.742011 -0.402069 2.178677 -1.131830 1.682909 0.422126 -0.373941 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.570818 -0.149209 0.845658 -1.381717 1.023419 0.418648 0.406583 -0.416904 -1.327974 -0.455096 0.091144 -0.986062 -0.565806 1.674882 -0.592791 0.727508 2.259905 0.745967 -0.481472 -0.512758 1.443311 -0.935301 1.842989 1.907385 -1.558336 -0.059028 0.544992 1.030446 0.580745 1.115770 -0.668150 -0.731790 0.525170 -1.000358 0.390047 -1.465271 0.220412 0.400283 0.420495 -2.402676 0.343623 -0.230968 0.015387 -0.249184 -0.226441 0.877909 1.383216 1.208699 -0.647793 0.401385 1.218393 0.284076 -0.145452 0.384484 0.400395 0.577174 0.849024 0.522999 -0.593250 -0.241984 -0.294542 -1.003513 0.493399 1.402670 1.822654 0.101152 0.089038 0.441824 0.213953 0.261453 0.622359 0.235773 0.079967 0.054181 0.770571 -1.976390 0.092195 -3.229649 -0.305305 -3.522225 -0.925567 -0.605338 0.926649 -0.446527 0.576106 0.060410 1.581595 -0.092580 0.119140 0.910092 1.810734 -1.352561 -0.628300 -1.042015 -1.027265 0.516228 -0.761394 -0.092672 0.703418 0.084636 -1.161921 -1.149387 0.847582 0.469906 -0.566464 -0.575845 0.049494 1.442763 -1.487475 -0.958818 -0.891360 0.488013 -0.219048 -2.122786 0.278086 -1.175466 1.405514 0.075467 -0.508390 -1.290347 0.253539 1.164190 -0.601794 -0.577641 -0.611918 1.437454 0.631335 0.142384 0.075560 -0.238285 0.125184 1.500581 1.201328 -1.030904 -0.166669 0.260209 -1.089500 -0.013239 -1.412101 -0.565084 1.038626 -1.329852 -0.003134 0.772357 -0.962314 -0.259914 1.627523 -0.002722 0.776308 4.222239 -0.192975 1.260563 0.679401 -1.492534 0.928467 -0.005554 -0.028047 0.648164 1.100202 0.245002 -2.179729 -1.372689 0.607682 1.466562 1.090083 -1.644992 -0.981905 -0.644368 -0.124183 0.192972 -0.058417 0.290386 -0.443371 -0.972318 -0.403104 0.651247 2.587383 -0.644722 -1.199578 0.493409 0.397457 -0.842577 -1.913998 -0.532014 -0.893974 0.273189 -0.008048 -0.162009 1.006474 1.955128 -3.582646 1.416949 -0.556812 -0.368615 1.178587 0.100709 -0.814323 -2.138880 0.051028 1.122000 1.775154 0.013408 0.088234 0.539151 -1.409771 -0.135896 0.041372 0.637690 -0.658523 0.677011 0.386915 -1.224031 -0.901929 -0.196824 -0.290693 -0.552416 -0.176334 0.720489 -0.014214 -2.945784 1.581153 -0.259251 -0.364251 0.647532 -0.204991 0.979709 -1.498108 -1.660192 0.788926 0.180226 -0.302403 -0.984490 0.174822 1.252195 -0.249856 0.095465 -0.876053 -2.008107 0.810184 -0.682247 1.057266 0.561519 0.149131 1.473865 0.254313 -0.350399 -1.564621 -0.162873 -0.002855 -0.392146 -0.954365 -0.537857 -0.395582 1.330576 1.633484 0.033554 -0.283081 0.041231 1.766750 -1.456028 -0.520206 1.095999 0.759695 -0.918106 0.523806 1.299792 -1.686502 -0.709641 -0.810013 -0.404713 -0.088175 -1.081475 0.896958 -0.472849 0.621177 0.278410 0.235807 -0.311993 0.801396 0.412624 0.193730 0.058090 1.899563 2.313556 -0.863961 -0.024118 -1.245199 0.664783 -1.988302 -1.407592 0.246885 0.228426 -0.802265 0.386404 0.172553 1.393593 -0.005942 0.151736 -0.108920 -0.150000 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::deque() = -0.134985 0.044647 0.354579 -0.483050 0.549910 0.088847 0.201529 -0.076119 -0.407593 -0.278064 -0.051622 -0.180261 -0.325538 0.508851 -0.287880 0.175487 0.685734 0.233144 -0.013232 -0.281671 0.504541 -0.378768 0.741296 0.550209 -0.705318 0.024032 0.113630 0.478491 0.178216 0.686325 -0.124277 -0.301142 0.235834 -0.141753 0.304135 -0.578276 0.132328 0.152816 -0.140631 -0.819860 0.057798 -0.000649 0.042683 0.076769 -0.017101 0.407801 0.497784 0.453760 -0.305719 0.254868 0.487982 0.245467 0.043596 0.254718 0.039321 0.121099 0.323786 -0.150682 -0.267560 -0.045194 -0.181933 -0.602183 0.195018 0.471546 0.717687 -0.050878 0.134087 0.101580 -0.145468 0.189439 0.302293 0.144318 0.017558 -0.064976 0.377894 -0.501782 0.032796 -1.026964 -0.154732 -1.410365 -0.331059 -0.483727 0.314472 0.081345 0.233004 0.075510 0.612696 0.129432 0.150404 0.304597 0.508293 -0.395476 -0.138557 -0.394031 -0.335471 0.155184 -0.298252 -0.118973 0.119839 0.181319 -0.328582 -0.302921 0.279213 0.022939 -0.164612 -0.222198 -0.186577 0.521719 -0.756563 -0.260011 -0.457251 0.191631 -0.141264 -0.732082 0.163584 -0.416548 0.575146 -0.062501 0.129748 -0.190198 0.089220 0.484241 -0.180338 -0.105689 -0.412918 0.526413 0.225250 -0.027770 0.073586 -0.059290 -0.179646 0.419442 0.532085 -0.221229 -0.284187 0.153560 -0.277176 -0.021859 -0.470031 -0.018652 0.402115 -0.502966 0.042335 0.208508 -0.209486 -0.205406 0.253148 -0.177671 0.457101 1.142493 -0.074755 0.344908 0.202824 -0.515001 0.204794 0.102414 0.077607 0.392987 0.415288 -0.043707 -0.417980 -0.502799 0.098033 0.357492 0.318506 -0.495146 -0.327218 -0.279669 0.003384 0.106822 -0.145075 0.174713 -0.253007 -0.345423 -0.072836 -0.030371 0.763861 -0.095040 -0.351627 0.261544 0.180152 -0.494158 -0.487499 -0.242835 -0.204330 0.019747 0.006511 -0.109986 0.195625 0.633348 -1.258435 0.482187 -0.152620 -0.036584 0.295043 -0.124494 -0.047141 -0.758621 0.027789 0.344465 0.556591 -0.070394 0.089278 0.189560 -0.463995 0.116494 -0.043675 0.307502 -0.202035 0.176221 0.131822 -0.453949 -0.402199 -0.218670 -0.036267 -0.025069 -0.060315 0.167531 0.116068 -1.172288 0.438645 -0.299046 -0.212263 0.310834 0.100566 0.397027 -0.427307 -0.539629 0.247191 -0.003275 -0.274563 -0.500111 0.152708 0.436881 -0.197254 -0.018578 -0.264172 -0.582288 0.257773 -0.279509 0.156583 0.248568 0.199692 0.637110 0.093809 -0.252740 -0.562935 -0.041329 0.027289 -0.281780 -0.190195 0.097328 -0.116946 0.389802 0.703643 0.135435 0.012186 0.128760 0.789240 -0.437606 -0.292289 0.526305 0.192629 -0.178379 0.398957 0.528033 -0.528447 -0.473294 -0.274077 0.039679 0.168959 -0.347146 0.388474 -0.300562 0.212159 0.144694 0.221534 -0.326272 0.331715 0.079280 0.064328 -0.204890 0.800798 0.811812 -0.339140 0.105242 -0.240678 0.132154 -0.690593 -0.302954 -0.095449 0.016909 -0.068008 0.355615 -0.050349 0.537416 0.036175 0.130601 0.021996 -0.215045 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_base() = -0.624147 0.669796 1.707802 -2.892849 3.752884 2.452940 1.052472 -1.023866 -1.881044 -0.529541 -0.085298 -1.697935 -1.820760 2.719529 -1.465119 1.415946 3.136288 -0.079939 -0.638329 -0.508332 3.134070 -0.421202 3.757270 2.062496 -3.656766 0.133281 0.186741 1.841770 0.259510 3.724801 -1.525758 -2.042964 0.950894 -0.878811 0.983989 -1.549122 0.529495 -0.144653 0.185729 -3.278839 0.289851 0.551918 -0.779459 0.245873 -0.282086 0.862188 3.191805 2.263630 -1.528751 0.261261 2.453191 0.976881 -0.089144 1.196242 0.501463 0.583600 2.006417 0.207795 -1.444900 -1.145443 -1.151246 -1.429881 0.725493 2.472450 3.382215 0.043420 0.465037 1.082094 -0.617506 0.641345 1.065268 0.951370 0.349820 0.309329 2.118023 -1.376137 0.113393 -3.646559 -0.723146 -4.423132 -1.654425 -2.098664 0.496510 0.539057 1.800368 -0.928159 3.216599 0.231820 0.292543 1.336609 3.077549 -2.379439 -0.549982 -2.675387 -2.203993 -0.085604 -1.307921 -0.452739 0.465106 0.019292 -2.000053 -1.544671 0.559850 0.466251 -0.694281 -1.213195 -0.789071 2.510079 -2.599444 -1.287949 -1.465942 1.458180 -0.958629 -4.183063 -0.936795 -1.667321 1.472712 -0.704692 0.715565 -1.747763 0.484772 2.810108 -1.475319 -1.179982 -0.990810 2.976919 2.226404 0.297126 0.433872 -0.399867 -0.194657 2.555776 2.482422 -0.890975 -1.283657 -0.243270 -0.642157 0.236531 -1.610388 0.366588 1.008224 -2.321497 -0.063230 2.086954 -0.653440 0.161843 0.394591 -0.797741 1.973874 7.362045 -0.979540 2.146511 0.526748 -3.058730 1.632920 0.550184 -0.147009 1.316802 1.394795 0.147503 -3.314951 -2.641040 1.780058 1.760020 1.383428 -3.079504 -0.213435 -0.965706 -0.275718 -0.354920 -0.876220 1.120703 -0.792278 -1.722408 -0.532830 0.503129 4.936077 -1.142651 -3.570959 2.416601 0.976712 -1.658986 -1.577691 -1.706238 -1.157924 -0.036228 0.900097 -0.543719 1.602387 3.443892 -5.495758 2.208305 -0.231630 -1.196894 2.659811 -0.712259 -0.477413 -1.720448 -0.195313 2.264728 2.311007 -0.046689 -0.453176 0.112200 -2.160047 0.955425 0.078748 1.114759 -0.843909 0.796965 0.452467 -2.570665 -2.248157 -1.823448 -0.810509 -0.026504 -1.188380 0.650376 -0.360108 -5.625975 2.869000 -0.429604 -0.606054 1.310035 -0.133862 2.147002 -1.563528 -2.936110 1.515634 -0.321259 -1.063220 -1.848985 0.996588 1.741841 0.369304 1.016236 -2.504780 -4.044817 1.520295 -0.901813 1.543665 1.142006 1.460569 2.573483 0.949974 -1.372193 -3.194012 -1.745170 1.288123 0.158837 -1.971956 -0.214982 -0.824741 2.295297 2.537484 0.174655 -0.162386 -1.259943 3.227046 -2.242008 -0.687836 2.739460 0.502918 -2.368007 0.470957 2.898654 -1.436275 -2.144360 -1.282380 -0.032830 -0.723132 -2.246598 1.218248 -0.785534 0.959596 0.754187 0.704569 -1.477678 1.005657 0.263144 0.177057 -0.943607 3.922265 3.229851 -1.907258 0.230905 -1.650063 1.459097 -3.551470 -2.459590 0.817926 -1.245188 -0.616818 1.176044 0.169724 2.741823 -0.228012 0.510189 0.343749 -1.159672 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.302740 0.045903 0.614985 -0.679681 0.531472 0.170376 0.216135 -0.192216 -0.615585 -0.293899 -0.068824 -0.376353 -0.384900 0.861122 -0.394108 0.242275 1.257287 0.518139 -0.184663 -0.396427 0.704861 -0.589652 1.061287 1.062772 -0.896171 -0.051506 0.494943 0.666891 0.389520 0.754280 -0.446113 -0.359789 0.317958 -0.415034 0.359963 -0.932442 0.158762 0.143928 0.001580 -1.352332 0.143779 -0.261436 0.001538 -0.088511 -0.089430 0.655751 0.797811 0.674863 -0.315570 0.184514 0.647209 0.283282 -0.064668 0.243072 0.223966 0.358258 0.655623 0.235544 -0.314569 -0.046844 -0.175701 -0.736609 0.235236 0.807978 1.049011 0.070800 0.127749 0.135880 0.022629 0.170152 0.290054 0.116899 0.070045 0.148197 0.390758 -1.128382 0.154715 -1.792578 -0.221582 -2.064834 -0.464467 -0.561942 0.372784 -0.383028 0.310397 0.194140 0.881792 0.070392 0.223316 0.367652 1.005986 -0.774068 -0.332695 -0.546661 -0.475747 0.316603 -0.478200 -0.042041 0.360807 0.052375 -0.572913 -0.702957 0.535163 0.235096 -0.314364 -0.191730 -0.074204 0.820674 -0.917141 -0.484160 -0.724437 0.029547 -0.174465 -1.153461 0.244904 -0.659207 1.005679 0.043389 -0.186741 -0.716331 0.170482 0.803041 -0.259377 -0.311972 -0.337871 0.809970 0.288633 -0.062500 0.025938 -0.174135 -0.011986 0.743495 0.829724 -0.508478 -0.186712 0.225611 -0.793473 -0.161744 -0.862297 -0.232379 0.640684 -0.717628 0.029889 0.458137 -0.533943 -0.193791 0.959272 -0.138554 0.605826 2.222706 -0.137565 0.520538 0.267958 -0.868374 0.419599 0.026998 -0.036046 0.357312 0.639454 0.191999 -1.167726 -0.729906 0.203195 0.780413 0.596630 -0.886001 -0.570466 -0.513404 -0.061994 0.124167 -0.055892 0.193105 -0.398001 -0.504622 -0.235157 0.230540 1.315846 -0.374936 -0.743381 0.193859 0.082885 -0.535171 -1.056482 -0.251631 -0.339452 0.157504 -0.091502 -0.138110 0.489135 1.036037 -2.069950 0.805717 -0.348850 -0.267770 0.669506 -0.047431 -0.277297 -1.091639 0.176717 0.677767 0.956936 0.052200 0.013518 0.278712 -0.794640 -0.094003 -0.032541 0.542290 -0.354170 0.347832 0.344173 -0.760474 -0.602536 -0.186923 0.023587 -0.350093 -0.052952 0.367809 -0.094224 -1.847293 0.917085 -0.239284 -0.203751 0.408836 -0.061890 0.409255 -0.905816 -0.957634 0.384481 0.153193 -0.128907 -0.598035 0.072539 0.764280 -0.217076 0.079565 -0.475161 -1.051162 0.339408 -0.383334 0.451976 0.306638 0.244329 0.942920 0.076461 -0.184042 -0.878262 0.083527 -0.025211 -0.300637 -0.422246 -0.200679 -0.179529 0.722169 1.085170 -0.000792 0.007689 0.090174 1.047364 -0.852163 -0.375592 0.594749 0.575723 -0.364363 0.356895 0.670717 -0.958349 -0.619494 -0.385063 -0.308617 0.095071 -0.623673 0.471481 -0.499318 0.315242 0.288566 0.176839 -0.295856 0.481671 0.165215 0.126367 0.004439 0.985419 1.451353 -0.542858 0.086112 -0.607656 0.345968 -1.137241 -0.680089 0.040135 0.076030 -0.304491 0.298685 0.071256 0.719320 -0.022048 0.113815 -0.016137 -0.227637 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -3.035259 1.593473 5.615211 -10.255275 11.123829 9.411683 2.628087 -4.315016 -7.264186 -0.726121 0.061809 -8.398721 -5.657045 10.514706 -4.684642 5.378198 12.198003 0.212695 -4.033084 -0.870699 10.259364 0.216883 12.220192 8.390295 -11.189190 -0.052624 1.203950 5.974273 1.259021 10.312849 -6.338525 -7.469280 2.359196 -3.617375 1.681698 -4.596560 1.600044 -0.435381 2.804756 -12.105020 1.765702 1.691547 -2.466836 -0.699832 -1.310827 1.974473 11.121495 7.745829 -3.956081 -0.509787 8.185696 3.186137 -1.176653 2.815995 2.486980 2.490642 7.618034 2.091192 -4.491229 -4.488233 -2.700631 -2.311990 1.368311 9.083022 11.415803 1.216412 0.427260 3.764216 0.158028 1.513101 2.704002 2.586248 1.161517 2.792363 5.570506 -4.880778 0.858469 -12.422851 -1.429335 -13.100705 -5.543563 -4.818373 2.224807 1.329760 4.936579 -3.756424 11.146761 -0.799385 -0.095066 4.635270 12.467039 -8.759180 -2.867000 -9.081141 -7.833262 0.584086 -4.517515 -0.794201 1.806516 -0.028352 -7.585380 -6.460394 1.583228 2.435775 -3.123214 -2.786384 -0.942933 8.482939 -7.479428 -4.506098 -3.836611 5.254610 -1.783953 -14.758655 -5.066122 -5.851445 3.605227 -1.800134 -0.480444 -8.389668 1.628447 8.524119 -5.549559 -4.106644 -3.187765 9.682971 7.553632 0.843949 0.815173 -1.393798 2.125408 9.954287 5.864116 -5.098929 -2.519052 -1.010616 -2.991233 0.355907 -6.391890 -0.215234 2.196921 -7.905572 0.307257 7.857037 -3.747434 1.244311 1.737653 -1.640596 5.112203 28.213614 -3.451008 7.920639 2.045134 -10.651651 6.326150 0.686975 -1.803709 2.567571 4.045775 2.325552 -13.076553 -9.096014 7.480515 8.039444 5.580289 -10.299530 0.486225 -2.626128 -1.432293 -1.966192 -1.105347 3.522087 -2.576128 -5.369736 -2.892240 4.339360 18.507499 -4.298755 -12.900369 7.485708 3.413872 -3.530982 -5.698282 -5.061553 -4.143584 0.358580 3.548789 -1.050647 7.403032 12.893650 -19.273081 8.125035 0.298989 -4.956032 10.214008 -1.633558 -3.811825 -4.608121 -0.710478 8.779394 9.216408 0.194008 -1.775999 0.017037 -8.210177 1.370912 1.284913 3.433360 -3.516456 3.304074 2.450517 -8.781933 -6.971477 -5.077865 -3.516008 -1.396644 -5.071580 3.153765 -2.184924 -18.858614 11.734914 0.309466 -0.901453 3.251752 -2.636229 6.792211 -6.902697 -10.342595 5.323472 -0.443544 -2.462640 -4.419741 2.549007 6.466275 2.014103 5.194124 -9.346788 -14.606137 5.652652 -2.232090 7.085367 3.255011 3.547620 6.592007 3.152651 -2.961298 -10.194528 -6.214456 4.638436 1.709071 -7.704247 -1.324474 -3.013937 8.635169 7.936453 -0.933649 -2.355985 -5.424363 9.386342 -7.272033 -1.491858 7.648475 1.457988 -9.648910 -0.203894 9.183643 -5.839886 -5.438383 -5.165392 -1.698493 -4.683432 -8.501117 3.469197 -1.703818 3.285756 3.046361 0.554427 -3.822706 3.529300 1.574503 -0.479043 -0.727978 12.985289 10.054901 -5.464643 1.268549 -8.253843 6.156171 -12.744794 -10.305281 4.474472 -4.671149 -4.426262 1.762704 0.684023 8.869469 -1.582437 1.952354 0.106434 -2.271282 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.169571 0.045099 1.021964 -0.814683 0.494689 0.124351 0.191988 -0.002163 -0.816987 -0.134451 -0.149211 -0.607300 -0.364131 0.857532 -0.306858 0.031026 1.264953 0.640065 -0.316842 -0.306753 0.399686 -0.537422 0.885508 1.110620 -0.820302 0.132818 0.032077 0.797015 0.254652 1.224531 -0.695721 -0.312131 -0.050626 0.113967 0.550635 -0.929721 -0.037475 0.188806 -0.278629 -1.594883 0.203350 0.416700 0.483269 -0.132870 0.219889 0.599170 0.857733 0.571585 -0.122254 0.071335 0.448231 0.187034 0.273297 0.157847 0.496263 0.446277 1.331992 0.113856 -0.410503 0.100620 -0.174095 -0.679726 0.228522 0.747218 0.978286 0.140522 -0.055089 -0.433354 0.259879 0.134506 0.322412 0.155415 -0.056739 0.183606 0.182845 -0.468692 0.748245 -1.121964 0.182480 -1.493345 -0.564467 -0.453296 0.745654 0.293494 0.067390 -0.311533 0.924808 -0.204075 0.245243 -0.050172 0.888019 -0.538402 -0.272824 -0.430804 -0.586842 0.337059 -0.259228 -0.327977 0.256293 0.167653 -0.543538 -0.342894 0.654994 0.098461 -0.372799 0.697652 -0.029307 0.825158 -0.797267 -0.319598 -0.592952 0.240258 0.035072 -0.975453 0.237026 -0.771093 0.196190 0.033624 -0.337563 -0.462633 0.265996 0.485864 -0.438202 0.137746 -1.366485 1.123968 0.075026 -0.271243 -0.048967 -0.202360 -0.042597 0.199487 0.363146 -0.638677 -0.031139 0.397201 -0.711390 -0.235175 -0.830260 -0.229210 0.352441 -0.569114 -0.337319 0.090869 -0.560738 0.247405 -0.036798 0.102536 0.462280 2.152414 -0.283963 0.564826 0.165133 -0.699462 0.937995 0.518461 -0.060971 0.253940 0.572830 0.249813 -1.117950 -0.683245 0.129210 0.847863 0.594862 -0.578886 -0.242382 -0.446630 -0.240982 0.276524 0.269769 0.005713 -0.341779 -0.524820 -0.289492 -0.083128 1.361507 -0.048329 -1.248453 0.037427 -0.203338 -0.523037 -0.762996 -0.084172 -0.174607 0.117985 -0.535978 -0.221353 0.616661 0.980289 -2.127362 1.021597 -0.207886 -0.537175 1.260659 -0.507166 -0.140470 -1.019277 -0.072177 0.560318 1.209016 0.040938 -0.459976 0.237623 -0.785367 -0.135801 -0.112003 0.499548 -0.520362 0.426571 0.334626 -0.716976 -0.325334 -0.814637 -0.002841 -0.265495 -0.496986 0.324054 -0.016777 -1.507679 0.799893 0.030260 -0.059445 0.317861 -0.005638 -0.196344 -0.756217 -0.752293 0.062907 0.257331 -0.300489 -0.683676 -0.102154 0.663078 -0.356638 0.036969 -0.641570 -0.931672 0.485682 -0.547313 0.560689 0.405007 0.018554 0.491881 1.416955 -0.087923 -0.489074 0.084758 -0.054407 -0.350757 -0.193091 0.120412 -0.427252 0.535502 1.008357 0.040612 0.215715 -0.259705 1.122688 -0.161574 -0.437950 0.520150 -0.670221 -0.200376 0.281523 0.665824 -0.843291 -0.537739 -0.551149 -0.548586 0.096880 -0.341382 0.615459 -0.434224 0.223456 0.252251 -0.055426 -0.542670 0.376797 0.066184 -0.321973 0.130827 1.241953 0.858414 -0.208401 0.666691 -0.512964 0.445140 -0.953985 -0.187363 -0.252887 -0.125270 -0.566024 0.247517 0.148606 0.633813 0.021602 0.187160 -0.017694 -0.048256 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.078854 -0.074014 0.599562 -0.432386 0.166230 -0.159474 0.106740 -0.036340 -0.481460 -0.015328 -0.088108 -0.192976 -0.032029 0.440711 -0.095578 0.198370 0.749446 0.450558 -0.171316 -0.337885 0.358198 -0.778264 0.503601 0.723464 -0.543336 0.118389 0.182346 0.589918 0.419095 0.640044 -0.529943 0.250235 -0.052456 -0.304487 0.441496 -0.752935 0.009734 0.228769 -0.019859 -1.066644 0.087150 0.012133 0.515760 -0.026113 0.074103 0.567353 0.388152 0.345097 -0.154466 0.190505 0.343759 -0.188216 0.276741 0.086188 0.269031 0.473254 0.975772 0.344893 -0.197531 0.160271 -0.013207 -0.654808 0.421207 0.412464 0.647380 -0.032191 -0.018997 -0.067968 0.297685 -0.000120 0.270985 0.127087 -0.250175 -0.039542 0.199824 -0.908869 0.636422 -1.041336 0.063495 -1.214268 -0.365046 -0.321273 0.372465 -0.249328 0.229979 0.086367 0.565178 -0.121216 0.166986 -0.192189 0.387117 -0.472299 -0.150848 -0.216206 -0.291744 0.225371 -0.193227 -0.280121 0.465398 0.071230 -0.255189 -0.254182 0.752824 0.187244 -0.283145 0.329164 -0.065954 0.489653 -0.473074 -0.502060 -0.414033 -0.072942 -0.201760 -0.517848 0.653379 -0.564713 0.324904 0.030121 -0.092954 -0.434162 0.057827 0.414967 -0.167282 -0.059846 -0.796400 0.714104 0.072555 -0.188358 0.011000 -0.144686 -0.114592 0.166986 0.458236 -0.397610 -0.112873 0.408008 -0.694018 -0.136886 -0.599887 -0.303332 0.513990 -0.424097 -0.418980 -0.022785 -0.321752 0.306926 0.732848 0.178098 0.270937 1.321025 -0.007375 0.280081 0.144695 -0.344805 0.690381 0.347223 0.054152 0.368995 0.424107 0.036470 -1.093175 -0.431354 -0.127088 0.481935 0.323435 -0.512737 -0.644999 -0.379571 -0.118883 0.382063 0.051270 -0.024664 -0.218727 -0.294846 -0.103739 -0.207903 0.882329 -0.167780 -0.496713 -0.045607 -0.364945 -0.683488 -1.108619 -0.091615 -0.380515 0.036772 -0.758670 -0.080219 0.294193 0.525615 -1.353055 0.613408 -0.419927 -0.343167 0.876697 -0.336986 -0.049074 -1.142319 -0.011591 0.186453 0.732440 -0.083026 -0.287507 0.311191 -0.506022 -0.051905 -0.180077 0.263011 -0.337964 0.303335 0.151296 -0.378274 -0.135798 -0.256744 0.087613 -0.269532 -0.044754 0.213662 -0.037618 -0.796794 0.323584 -0.126730 -0.140331 0.480697 0.105452 -0.191037 -0.496513 -0.359152 0.066805 0.363773 0.055721 -0.627998 -0.068423 0.453677 -0.383749 -0.345585 -0.367132 -0.617773 0.110125 -0.614561 0.195505 0.284399 -0.107214 0.332851 0.874961 -0.080086 -0.442726 0.459097 -0.593975 -0.297374 -0.038745 -0.296404 -0.230783 0.360883 0.714606 0.129577 0.438070 0.100259 0.761150 -0.314493 -0.426466 0.282354 -0.198345 -0.067303 0.202706 0.339645 -0.646178 -0.293142 -0.258901 -0.492667 0.301757 -0.099810 0.545250 -0.326648 0.150977 0.090214 -0.015765 -0.141369 0.355117 0.036914 -0.088307 -0.042865 0.831681 0.789989 -0.157629 0.141479 -0.269928 0.184653 -0.542344 0.045125 -0.264652 0.344807 -0.390302 0.248287 0.384907 0.437387 0.137171 -0.081048 0.041243 -0.201288 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.133699 -0.090848 1.425581 -3.696459 4.145615 1.751359 0.952872 -0.533418 -2.268478 -1.305514 -0.617582 -0.896280 -1.839660 3.491626 -1.285049 2.597388 3.791441 -0.040665 -0.507400 -1.142961 4.992806 -2.771003 4.030010 1.422166 -4.569074 -0.358826 1.259029 3.621916 1.244423 3.946980 -0.768818 -1.346617 0.504418 -2.224873 1.958588 -3.270443 1.876804 1.231793 -0.128366 -4.370912 0.317640 -0.019113 -0.499676 0.320887 -1.324524 1.655818 2.753999 3.236433 -3.120812 0.307213 3.800124 0.681637 -0.547755 1.535287 -0.940238 0.908825 1.194772 0.503692 -1.711895 -1.078440 -0.515149 -3.242773 2.423625 2.525798 4.640659 -1.117135 1.025665 3.309797 -0.546508 0.986903 1.681818 0.604370 -0.400271 -1.464365 3.334645 -4.311792 -1.074206 -7.008067 -0.672575 -8.026173 -1.619290 -3.094351 0.471445 -0.268201 2.030894 -0.399381 4.040786 0.259336 0.417800 3.070994 3.035488 -2.700676 -0.658431 -5.116693 -2.598477 0.775896 -2.193285 -1.933331 2.070007 0.785579 -1.609934 -2.025951 0.824849 0.611268 -0.891606 -3.538625 -1.756022 3.508796 -3.604731 -2.657111 -2.271956 2.240236 -1.819406 -4.971591 0.841043 -2.453887 2.391459 -1.317809 2.514120 -1.996744 -0.089061 4.099760 -1.323367 -1.625726 -1.123265 3.897207 2.503404 -0.320881 0.991978 -0.243235 -0.839144 3.017243 4.287238 -1.195334 -3.107428 1.215712 -1.824843 -0.204433 -3.186324 -0.138451 3.115677 -3.678648 -0.811261 2.458911 -0.516273 -0.298062 3.011463 -1.403272 3.266384 9.561630 0.085820 1.475541 0.483928 -3.342935 2.775900 1.086136 -0.192431 2.621593 1.583305 -0.805343 -4.925612 -3.353969 1.227775 1.529459 1.989522 -3.724174 -2.760077 -2.050298 -0.144601 0.408700 -2.215938 2.239072 -1.784874 -1.726369 -0.445002 0.042554 5.918531 -1.409006 -2.072823 3.413663 2.267004 -4.703704 -4.944017 -2.292720 -3.020688 -1.061733 0.132487 -0.769408 1.704062 4.174143 -6.956597 2.527109 -0.331036 -0.573297 1.667611 -1.549613 0.180609 -6.202170 -0.331291 2.587843 3.518447 -1.386763 0.828651 0.420504 -2.540088 1.814490 0.171315 1.160839 -0.152233 0.393489 -0.778257 -2.252226 -2.584997 -0.264117 -1.994861 0.192735 0.073507 0.484965 0.087434 -5.885342 3.270029 -2.636642 -0.619495 2.799563 0.700980 3.687025 -2.198504 -3.565186 2.584126 1.074319 -0.748751 -3.543272 1.759065 3.180798 -0.601833 -0.657261 -1.592101 -6.065891 0.685860 -2.404782 0.568197 1.081015 1.423558 3.561054 0.772680 -1.735431 -4.966741 -1.468680 -0.705364 -0.143286 -1.734133 -1.637913 0.262742 3.088853 3.017986 0.675516 0.365074 0.113828 4.506675 -3.335076 -1.995597 3.225472 0.899498 -2.867157 1.372227 3.557076 -2.971418 -2.889650 -2.060426 1.523547 0.478702 -2.944648 1.441669 -1.142982 1.033364 1.197256 1.349641 -1.302242 1.882544 1.344105 0.465051 -2.713996 6.090956 5.009747 -2.566458 -0.960230 -1.847331 1.054017 -4.391409 -2.469565 0.067162 0.437246 0.155450 2.566990 1.688308 3.376847 -0.353762 1.205249 0.742416 -2.958976 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.729386 -0.137544 0.563931 -1.539741 1.040421 0.665234 0.407149 -0.410435 -1.266180 -0.574666 -0.144080 -0.892773 -0.475292 1.930934 -0.591090 1.065576 2.745638 0.864623 -0.371961 -0.454265 1.869375 -1.374170 2.096039 2.102849 -1.719281 -0.250440 1.095868 1.289317 0.525048 1.289444 -0.444272 -1.098731 0.550803 -1.432226 0.514405 -2.086239 0.489036 0.654818 0.566652 -2.922450 0.397330 -0.495764 0.123728 -0.400056 -0.530364 0.493177 1.687307 1.495565 -0.958176 0.231315 1.374997 0.624625 -0.416675 0.474216 0.159763 0.829086 0.514025 0.576962 -0.594571 -0.285815 -0.191693 -1.098521 0.838316 1.583886 2.231376 0.057094 0.308806 0.909210 0.094110 0.325048 0.570133 0.137418 -0.125607 -0.099232 0.889437 -2.910669 -0.308063 -4.405536 -0.343956 -4.197415 -0.902303 -0.872474 0.586567 -0.589050 0.897492 0.138084 1.721105 -0.173759 0.396242 1.393772 2.094186 -1.570494 -0.670886 -1.661568 -1.231655 0.763038 -0.947136 -0.277999 0.958069 -0.040488 -1.200106 -1.737943 0.952977 0.764079 -0.602718 -1.444945 0.060273 1.614756 -1.607118 -1.467181 -1.056878 0.539839 -0.696570 -2.555281 0.510291 -1.550454 1.404020 0.014057 -0.283751 -1.950536 0.148692 1.741494 -0.525973 -1.017354 -0.380410 1.629337 0.726743 -0.019921 0.206268 -0.412898 -0.012847 2.081267 1.698497 -1.099370 -0.362914 0.506444 -1.514989 -0.320141 -1.947168 -0.763740 1.323378 -1.734345 -0.161218 1.333582 -1.060521 -0.392782 2.394439 -0.317636 1.226103 5.830253 -0.071971 1.159971 0.755007 -1.981312 1.226235 -0.043117 -0.206412 0.721035 1.263096 0.244882 -3.073575 -1.533767 0.418528 1.540861 1.352925 -1.726388 -1.674953 -1.018375 -0.212468 0.319389 -0.351523 0.425530 -0.750484 -1.211195 -0.407861 0.799923 3.192238 -0.745241 -0.782129 0.675984 1.051943 -1.532912 -2.756785 -0.664365 -1.762619 0.177056 -0.174859 -0.350519 1.097069 2.178009 -4.052211 1.537756 -0.679533 -0.236906 0.953750 0.101226 -0.830617 -3.085810 0.262792 1.556593 2.188222 -0.411568 0.689564 0.511597 -1.523056 -0.075883 0.066235 0.779316 -0.597585 0.636397 0.146634 -1.655968 -1.140893 0.353653 -0.552304 -0.994509 0.007005 0.694708 0.293508 -3.018341 2.014793 -0.563218 -0.310812 1.107079 -0.190360 1.386360 -1.851202 -2.096785 1.114866 0.559942 0.165536 -1.005204 0.267775 1.750188 -0.251531 -0.003608 -0.703141 -2.666956 0.497177 -0.789385 0.970484 0.599024 0.297533 1.746825 -0.032721 -0.403089 -2.200847 -0.512854 -0.473030 -0.246047 -1.136777 -1.148003 -0.272509 1.686964 1.966852 0.029102 -0.477007 0.197228 2.198565 -1.838499 -0.493105 1.222016 0.941711 -1.280500 0.243463 1.483563 -2.224063 -0.959305 -0.862860 0.153198 0.194126 -1.543245 0.825763 -0.682125 0.671312 0.420557 0.256915 -0.255888 0.926055 0.797982 0.445574 -0.086865 2.197611 2.348401 -0.941256 -0.395585 -1.328205 0.420257 -2.487944 -1.696418 0.147674 0.457443 -0.689156 0.643288 0.480435 1.554954 -0.179719 0.725249 0.123262 -0.679228 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/quicksort-for-linked-list.cpp__lastNode(Node*) = -0.442183 -0.062713 -0.050389 -1.117384 0.830267 0.733099 0.219966 -0.281121 -0.964828 -0.374009 -0.074998 -0.965822 -0.091515 1.298473 -0.207331 0.923605 1.753355 0.305879 -0.285789 -0.049748 1.199270 -0.756266 1.273951 1.167641 -0.920329 -0.035102 0.645164 0.539660 -0.153153 0.895705 -0.070473 -1.415135 0.128215 -0.862114 0.189823 -1.110925 0.127094 0.517643 0.728396 -1.946187 0.339626 0.210782 0.264925 -0.430234 -0.423727 -0.573429 1.320163 0.814631 -0.547653 0.094233 0.787187 0.611419 -0.322110 0.185223 0.238108 0.628138 0.272506 0.082486 -0.424707 -0.311568 -0.138461 -0.025862 0.521921 0.882028 1.193914 0.009663 0.038992 0.692322 0.073204 0.218784 0.316455 0.087791 -0.381635 -0.161742 0.410715 -1.807040 -0.315443 -2.961099 0.056445 -2.539340 -0.632074 -0.176752 0.413684 0.232108 0.568419 -0.085213 1.145997 -0.564271 0.147538 1.098148 1.509727 -0.741464 -0.334793 -1.091734 -1.036102 0.395907 -0.281849 -0.405956 0.562049 -0.061598 -0.800120 -1.152216 0.570969 0.510474 -0.356652 -1.091929 0.243313 0.856168 -0.902440 -0.983820 -0.224244 0.880090 -0.437852 -1.675501 -0.078012 -0.926587 0.022772 0.021872 -0.367211 -1.592109 0.126389 1.016692 -0.501166 -0.576264 -0.134133 0.932459 0.501977 0.135087 0.224228 -0.258397 0.184902 1.694528 0.804751 -0.777813 -0.008251 0.268301 -0.405149 -0.138462 -0.974156 -0.623781 0.197601 -1.044778 -0.027344 0.947460 -0.656321 -0.161592 0.999894 -0.224588 0.498922 4.356895 -0.153656 0.930088 0.502224 -1.443295 0.872420 -0.016430 -0.347860 0.144528 0.686129 0.226882 -1.795804 -0.990927 0.504366 0.989213 0.899833 -0.876777 -1.061194 -0.406458 -0.292729 0.406067 -0.120662 0.115543 -0.197204 -0.905920 -0.293707 0.690050 2.520325 -0.238793 -0.353253 0.615132 1.206398 -0.938444 -1.533479 -0.414138 -1.821985 0.058886 0.062952 -0.310447 0.789049 1.431908 -2.727117 1.010119 -0.283707 -0.170968 0.582677 0.165245 -0.603102 -2.300036 -0.184970 1.197053 1.608133 -0.651120 0.761526 0.105790 -0.791180 -0.018298 0.098532 0.194445 -0.504104 0.407017 -0.234197 -1.260620 -0.418367 0.430862 -0.696564 -0.664312 -0.221065 0.353798 0.702820 -1.703148 1.492496 -0.005172 0.047719 0.597814 -0.092748 1.147599 -0.878359 -1.406522 0.718351 0.295388 0.217298 -0.146530 0.061658 0.986271 -0.008611 0.299450 -0.342697 -1.683720 0.359952 -0.375610 0.797853 0.448560 -0.022086 0.766575 -0.220224 -0.220888 -1.299867 -0.729197 -0.227485 0.041570 -0.704703 -0.846531 -0.285525 1.016990 0.897389 0.133404 -0.739082 -0.217311 1.271563 -0.950998 0.104935 0.764296 -0.116286 -1.207451 -0.178068 1.039532 -1.192793 -0.261893 -0.754049 0.545435 -0.224795 -1.002707 0.402545 -0.053002 0.258551 0.199171 -0.215327 -0.169561 0.470135 0.711305 0.160994 -0.023363 1.365900 0.676792 -0.329944 -0.233542 -0.792960 0.075369 -1.559189 -1.124834 0.102144 0.297132 -0.771926 0.098679 0.214414 1.011366 -0.220448 0.915782 0.161868 -0.282425 +PE-benchmarks/quicksort-for-linked-list.cpp__partition(Node*, Node*) = -1.988202 0.692432 1.532096 -4.840077 4.029788 4.537677 1.101241 -1.970734 -3.478252 -1.193628 -0.173705 -3.514249 -1.476343 5.630661 -1.926324 3.038394 7.462914 1.194415 -1.508112 -0.358459 5.132358 -1.364347 6.208841 5.427734 -4.736809 -0.583809 3.256247 2.512144 0.220866 3.958886 -1.891910 -5.311151 1.347064 -3.384774 0.482318 -4.236869 0.820987 0.562430 2.628297 -7.402604 1.160535 -0.926256 -1.448476 -1.539318 -1.522811 -0.913482 6.001082 4.020072 -2.210536 -0.264311 3.708633 2.834433 -1.838066 1.057857 1.154013 2.141161 1.934231 1.641407 -1.481176 -1.701033 -1.035553 -0.486473 1.288886 4.778799 5.637180 0.741635 0.478065 2.413872 0.017845 0.694196 0.867908 0.589885 0.026336 1.207551 2.039937 -6.707755 -1.013248 -11.075992 -0.704882 -8.981793 -2.540292 -1.754259 0.540588 -0.795609 2.825329 -0.351105 4.995788 -1.026645 0.770397 4.105087 6.905118 -4.449602 -1.679224 -4.644234 -4.179691 1.337819 -2.127202 -0.172615 1.265195 -0.987859 -3.784745 -5.313947 1.503965 2.357297 -1.601019 -4.026057 0.663335 4.182213 -3.569561 -3.523468 -1.928188 2.370227 -1.940443 -7.837339 -1.674683 -3.730296 2.920350 -0.193987 -1.620343 -6.684571 0.791636 5.198643 -2.114096 -3.245164 0.697304 4.209787 3.070889 0.604816 0.429613 -1.520412 1.161298 6.839236 4.070777 -2.986883 -0.285390 0.123014 -2.726960 -0.666688 -4.345849 -1.363471 1.386962 -4.261596 0.344250 5.384919 -2.868212 -0.626015 4.915589 -1.204674 2.931380 18.550912 -1.323264 3.887292 1.721120 -6.596808 2.857057 -0.534221 -1.519849 0.670426 2.724179 1.815511 -8.750888 -4.233202 2.899055 4.628218 3.770236 -4.975789 -2.750972 -2.109477 -1.186811 0.011202 -0.542647 1.026671 -1.628416 -3.605247 -1.600856 3.604023 10.107650 -2.248912 -4.369919 2.669974 3.659528 -2.607759 -5.223464 -1.928702 -4.922413 0.793157 1.822187 -1.193575 3.835229 6.398969 -11.466410 4.163621 -1.018023 -1.917877 3.280825 0.813280 -2.783183 -5.276531 0.560748 5.367788 5.660713 -0.818542 1.750239 0.219816 -4.016585 -0.295259 0.673639 1.807331 -1.847725 1.793468 0.824463 -5.523350 -3.377873 0.445435 -1.936822 -2.852663 -1.244794 1.936465 -0.047640 -9.505871 6.865756 0.166426 -0.192217 2.189484 -1.645302 4.549971 -4.733107 -6.513240 3.343894 0.675556 0.856800 -0.878488 0.500370 4.321501 0.991489 2.624618 -3.087491 -7.794024 1.685717 -0.891150 3.746125 1.726119 1.490432 4.209210 -1.708027 -0.848798 -6.024531 -3.220753 1.608132 1.100028 -4.181885 -3.221950 -1.214977 4.917136 4.534442 -0.583063 -2.554369 -1.783281 5.091999 -5.043443 0.183494 3.200261 2.687995 -5.377541 -0.990859 4.152028 -4.612669 -2.235725 -2.554801 0.567584 -1.732732 -4.987402 1.406381 -1.021199 1.706391 1.504263 0.097131 -1.062816 1.851962 2.060103 1.181007 0.547213 5.045417 5.224645 -2.532677 -0.825113 -4.193530 1.840051 -7.188572 -6.328102 1.822410 -0.933558 -2.462670 0.353353 0.424068 4.379998 -1.029386 2.857627 0.669973 -1.291012 +PE-benchmarks/quicksort-for-linked-list.cpp___quickSort(Node*, Node*) = -1.940189 1.243149 1.431820 -4.328073 3.885137 3.749290 1.086648 -1.941905 -2.748278 -1.590500 -0.273613 -3.368930 -2.437140 5.418720 -2.050672 2.263739 6.890805 0.887245 -1.203671 -0.712622 4.806944 -0.461263 6.064764 4.940351 -4.925023 -0.659049 3.586417 2.245268 0.618426 3.146501 -1.162303 -4.970301 1.678866 -2.747928 0.709643 -3.322199 0.897992 -0.264421 1.920397 -6.682672 0.844181 -0.787000 -1.513070 -1.348965 -1.492903 -0.611254 5.595669 4.105046 -2.269609 -0.426872 3.814505 3.080977 -1.847237 1.125546 0.856472 1.098256 1.119253 0.942953 -1.460137 -1.732918 -0.867049 -0.896822 0.515494 4.985163 5.480633 0.812902 0.554417 2.457364 -0.366215 1.064313 0.367016 0.812245 0.560299 1.932953 2.337295 -5.583185 -1.400707 -10.016741 -1.046302 -9.307075 -2.604906 -2.302931 0.447128 -1.054191 2.496488 0.533059 5.007212 -0.091080 0.998019 4.069592 6.922486 -4.066390 -1.679716 -4.416814 -3.748479 1.717866 -2.477419 0.635717 1.122283 -0.793029 -3.819095 -4.877826 0.756719 1.904042 -1.657761 -3.584802 0.382273 4.009592 -3.744858 -2.703852 -2.573887 1.539965 -1.491457 -7.779356 -2.500617 -2.852781 3.629840 -0.079640 -1.190544 -5.765984 0.750227 4.633613 -1.819339 -3.193575 1.100245 3.368755 3.207673 0.670755 0.561499 -1.000010 1.503095 6.420332 4.029446 -2.525039 -0.562594 -0.256412 -2.422387 -0.744925 -3.794400 -0.956579 1.577517 -4.004142 1.338821 5.124653 -2.770131 -1.819856 4.044196 -2.046607 3.221326 15.890882 -1.207863 3.586803 1.713548 -6.160226 1.335630 -1.111902 -1.864289 0.581352 2.779028 2.179374 -6.141871 -4.025080 2.949376 4.702770 3.568036 -4.374854 -2.012452 -1.836060 -0.968084 -0.805509 -0.397807 1.273373 -1.633400 -3.300044 -1.565133 3.976988 7.911190 -2.427423 -4.641343 2.545194 4.080253 -1.490341 -3.827114 -1.704272 -3.899246 0.798305 2.493540 -1.053158 3.571966 6.252982 -10.812615 3.944557 -0.120390 -1.420432 2.574996 1.064913 -2.800944 -4.120738 1.373286 5.347444 4.620961 -0.575507 1.619177 -0.132991 -4.142824 -0.355073 0.864442 2.097158 -1.710142 1.852504 0.799801 -4.568888 -4.010881 0.431868 -1.401094 -2.486385 -0.954675 1.950722 -0.056379 -9.473651 6.817998 -0.353800 -0.508759 1.415530 -2.140106 4.440730 -5.021166 -6.293851 3.101816 -0.008414 0.058596 -0.606637 0.491619 4.115421 1.292454 2.882432 -2.923414 -6.278205 1.904125 -0.225140 3.534499 1.684238 2.243139 4.517226 -2.928753 -1.104503 -5.269612 -2.682473 2.063466 0.941515 -4.379347 -2.797971 -1.051748 4.686756 4.940363 -1.166081 -2.646569 -1.442519 4.355454 -5.273881 -0.308599 3.120852 3.174525 -4.703729 -0.275873 3.926601 -4.020667 -2.547625 -2.523956 0.583931 -1.646030 -5.132261 0.988578 -1.580129 1.459713 2.126228 -0.124145 -1.221994 2.006783 1.748806 1.369091 0.475506 3.936492 5.393297 -3.343242 -0.744080 -4.395858 1.858153 -7.098828 -6.364054 2.273790 -1.566781 -1.613418 0.295824 -0.465935 3.898937 -1.074239 2.295484 0.129187 -1.075148 +PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.753804 0.388821 0.755691 -1.656591 1.388778 1.005313 0.427021 -0.604444 -1.167133 -0.813156 -0.119243 -1.268414 -1.021779 2.058554 -0.834282 0.673196 2.736882 0.563852 -0.418041 -0.504487 1.773090 -0.586195 2.387436 2.093769 -1.980295 -0.221795 1.316578 1.116051 0.463715 1.285641 -0.379495 -1.701501 0.658856 -0.882259 0.506697 -1.538586 0.370882 0.062981 0.387563 -2.779150 0.321003 -0.335385 -0.368852 -0.411183 -0.467266 0.410856 2.139171 1.577730 -0.911653 0.003679 1.534399 1.119542 -0.554154 0.466005 0.278277 0.334263 0.645467 0.263409 -0.603543 -0.495007 -0.336840 -0.810944 0.281018 1.925244 2.245491 0.248162 0.248943 0.762722 -0.094238 0.476987 0.294104 0.311074 0.271414 0.591411 0.924222 -2.259191 -0.357208 -4.171071 -0.392474 -4.288678 -1.035637 -1.008858 0.528997 -0.394754 0.723155 0.248014 1.991190 0.094743 0.426513 1.565843 2.632431 -1.476934 -0.665609 -1.591357 -1.384965 0.762426 -0.993109 0.176210 0.526863 -0.008512 -1.425642 -1.756234 0.500213 0.548205 -0.674089 -1.154534 0.036021 1.612209 -1.752069 -0.895722 -1.185736 0.503661 -0.354924 -2.964606 -0.465487 -1.277000 1.698304 -0.013069 -0.422971 -1.898359 0.279290 1.706552 -0.659179 -0.915765 -0.160262 1.470652 1.017831 0.150381 0.178052 -0.316804 0.420176 2.198824 1.596152 -1.043890 -0.320747 0.079712 -1.147521 -0.322140 -1.648424 -0.397533 1.011870 -1.555766 0.449638 1.608746 -1.109542 -0.851186 1.629680 -0.778678 1.290100 5.829274 -0.387995 1.338728 0.695211 -2.255296 0.605297 -0.299675 -0.552745 0.432139 1.213801 0.731301 -2.251422 -1.609090 0.955200 1.817311 1.375188 -1.738992 -0.910234 -0.743668 -0.310979 -0.162319 -0.118617 0.465862 -0.735674 -1.225511 -0.587675 1.318839 2.993300 -0.760431 -1.565339 0.799495 1.345121 -0.751506 -1.711771 -0.590649 -1.231173 0.310400 0.665528 -0.361123 1.297076 2.427386 -4.474251 1.610450 -0.134535 -0.384073 0.960686 0.249756 -0.967217 -2.162387 0.521678 1.980756 1.920044 -0.203001 0.556417 0.129622 -1.667188 -0.155172 0.254361 0.930910 -0.736661 0.733097 0.384743 -1.723376 -1.509488 -0.006578 -0.443578 -0.777757 -0.315106 0.778380 0.057981 -3.877901 2.547358 -0.370973 -0.277902 0.504566 -0.646301 1.563683 -1.992343 -2.385315 1.059334 0.000868 -0.261572 -0.654651 0.193003 1.628369 0.092855 0.816922 -1.028612 -2.390905 0.841758 -0.373710 1.230876 0.672695 0.785449 1.956700 -0.766403 -0.409725 -2.062523 -0.699542 0.583644 -0.031536 -1.462592 -0.700166 -0.371347 1.675888 2.100875 -0.354932 -0.812241 -0.168197 1.911887 -1.950556 -0.442466 1.240277 1.177495 -1.508541 0.350092 1.515724 -1.789541 -1.096496 -1.100556 0.046565 -0.351383 -1.888050 0.592808 -0.745345 0.574012 0.818220 0.066917 -0.582326 0.937523 0.633900 0.433434 0.119835 1.804567 2.513648 -1.263382 -0.101299 -1.627990 0.686702 -2.765988 -2.223213 0.604963 -0.330043 -0.538198 0.264124 -0.186259 1.543750 -0.295584 0.750919 -0.033049 -0.321968 +PE-benchmarks/quicksort-for-linked-list.cpp__printList(Node*) = -0.265270 0.098353 0.379944 -0.923134 0.528549 0.515804 0.143307 -0.056982 -0.620829 -0.608917 0.023817 -1.050078 -0.582938 1.024462 -0.414462 0.207150 1.439903 0.148967 -0.180558 -0.228162 0.699283 -0.391456 1.301578 1.168005 -1.123329 -0.121094 0.589883 0.828070 0.300739 0.653471 0.268490 -1.235160 0.034868 -0.113944 0.437044 -0.731455 0.281171 0.079887 -0.060658 -1.676105 0.120702 0.348718 0.094171 -0.219136 -0.126245 0.187882 1.365234 0.833838 -0.601137 0.007278 0.906500 0.538569 -0.159244 0.110156 -0.084362 -0.264990 0.417955 -0.117834 -0.426305 -0.107141 0.066051 -0.493800 0.148913 1.014601 1.343789 0.038609 0.129981 0.225328 0.096406 0.303522 0.229355 0.164829 0.049638 0.318203 0.530264 -0.972918 -0.147293 -2.588458 0.126007 -2.509154 -0.605971 -0.479263 0.792335 0.453170 0.056475 -0.341310 0.993215 0.044457 0.256683 1.180679 1.472328 -0.358881 -0.388380 -0.994832 -0.849279 0.691458 -0.569391 -0.005976 0.281224 0.322547 -0.685974 -0.755160 0.206267 0.177948 -0.378212 -0.439464 -0.005414 0.679076 -0.925449 -0.315607 -0.477357 0.518027 0.128150 -1.769791 -0.175893 -0.788400 0.373662 0.033392 -0.089090 -0.742453 -0.028834 0.719269 -0.357484 -0.061891 -0.943750 0.974986 0.412094 0.110097 0.168360 0.038708 0.365754 1.000679 0.588515 -0.577858 -0.232813 0.200815 -0.546628 -0.176239 -0.951220 -0.272629 0.674823 -0.765135 0.094817 0.593583 -0.530142 -0.571502 0.252225 -0.411717 0.674816 3.688236 -0.028062 0.740552 0.416479 -1.183253 0.676921 0.010545 -0.317365 0.212578 0.523094 0.295865 -1.169825 -0.734490 0.379526 0.949815 0.665908 -0.811691 -0.315095 -0.095422 -0.252115 -0.080710 0.076025 0.257500 -0.414405 -0.617326 -0.249429 0.907005 1.724974 0.051226 -0.620782 0.263638 1.079152 -0.519981 -0.842832 -0.077211 -0.643736 0.147039 0.210977 -0.105531 0.726971 1.175832 -2.634997 0.847786 0.376057 0.118672 0.486945 -0.161544 -0.584545 -1.789763 0.307056 1.130961 1.120312 -0.278336 0.330919 0.107797 -0.802589 -0.012526 0.180875 0.332869 -0.373097 0.357945 -0.106293 -0.947590 -0.767929 -0.256049 -0.524684 -0.150175 -0.528123 0.338372 0.419909 -1.906552 1.436117 -0.342825 -0.242613 -0.023868 -0.468959 0.778146 -1.162601 -1.239727 0.292912 -0.110038 -0.548341 -0.567793 -0.055354 0.660131 -0.088120 0.442948 -0.384741 -1.393777 0.547001 -0.439951 0.557010 0.402729 0.162458 0.971782 0.190707 -0.117957 -1.113854 -0.627997 0.388488 -0.136215 -0.720392 -0.016313 -0.210199 0.664328 0.986627 -0.301896 -0.534488 -0.076041 1.019787 -0.643290 -0.514669 0.464544 -0.124132 -0.770403 0.262810 0.679791 -1.150807 -0.266172 -0.923640 0.156375 -0.025597 -1.140582 0.320630 -0.291155 0.294862 0.416842 -0.061945 -0.421743 0.456539 0.335970 -0.063458 0.032962 1.282135 1.081896 -0.455574 0.228050 -1.023226 0.290386 -1.612129 -1.168073 0.117684 -0.177557 -0.224161 0.198257 0.011600 0.644204 -0.000863 0.448011 -0.184924 0.151471 +PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -0.683668 -0.070875 0.954304 -1.628181 1.049919 0.553440 0.395235 -0.645997 -1.247566 -0.416244 0.001015 -0.872620 -0.470605 1.859697 -0.723167 0.897278 2.527035 0.722613 -0.522246 -0.682187 1.841080 -1.183503 2.059735 2.017856 -1.838074 -0.229638 1.248314 1.250260 0.895647 1.161596 -0.807738 -0.638968 0.440914 -1.406947 0.633222 -1.730963 0.392158 0.311365 0.631274 -2.630124 0.324053 -0.595816 0.040236 -0.339883 -0.442667 0.759052 1.522954 1.459104 -0.868371 0.164065 1.520373 0.409899 -0.344964 0.382863 0.405029 0.776454 1.152212 1.001604 -0.508778 -0.279855 -0.242149 -0.970383 0.810798 1.728390 2.116703 0.124115 0.252255 0.770422 0.321177 0.280821 0.543930 0.245418 -0.176079 0.281104 0.927848 -2.940767 0.189623 -4.168606 -0.346150 -3.989212 -0.904974 -0.840142 0.416258 -1.157612 0.923938 0.469159 1.756715 -0.009330 0.294918 0.989189 2.048327 -1.592586 -0.655149 -1.391577 -1.298703 0.623345 -0.952845 -0.060420 1.024675 -0.068306 -1.210383 -1.508657 0.959689 0.814177 -0.628457 -0.841155 0.031212 1.586256 -1.420115 -1.339310 -1.035142 0.277622 -0.648494 -2.525455 0.337910 -1.488105 1.789157 -0.057343 -0.391011 -1.901127 0.191432 1.760540 -0.594551 -0.955341 -0.206898 1.564034 0.925821 0.143505 0.065353 -0.455662 0.135189 1.811334 1.737833 -1.113236 -0.309580 0.353256 -1.610848 -0.261630 -1.720518 -0.660021 1.422491 -1.493062 -0.102740 1.238678 -1.023607 -0.266705 2.701495 -0.218333 1.148884 5.490938 -0.195797 1.237791 0.652157 -1.843791 0.964937 0.043683 -0.165374 0.676341 1.192304 0.349275 -2.985305 -1.536488 0.598941 1.618866 1.259937 -1.930097 -1.526411 -0.932109 -0.313028 0.278878 -0.304741 0.370055 -0.807621 -1.114565 -0.484700 0.790318 2.840961 -0.940300 -1.470771 0.558442 0.617051 -1.251747 -2.510616 -0.596211 -1.429531 0.360488 -0.201989 -0.275575 1.235604 2.150245 -4.308314 1.565139 -0.653816 -0.524392 1.440329 0.066113 -0.852875 -2.615764 0.340874 1.414749 1.845229 -0.164922 0.121876 0.574817 -1.568583 -0.079334 -0.031329 0.830302 -0.676099 0.691744 0.384918 -1.458163 -1.232275 0.121961 -0.268675 -0.891023 0.018673 0.757500 -0.328428 -3.310225 1.973077 -0.377070 -0.320441 0.949466 -0.365352 1.040267 -1.876124 -1.955981 0.940246 0.482046 0.212762 -1.064146 0.160800 1.573984 -0.174790 0.244251 -1.086777 -2.399172 0.462252 -0.931188 1.106770 0.607697 0.385895 1.718640 -0.179615 -0.261875 -2.057712 0.039463 -0.298170 -0.054982 -1.274647 -1.239058 -0.292001 1.648947 1.883911 -0.183763 -0.100450 0.076853 1.940189 -1.947710 -0.607986 1.061388 1.122813 -1.261871 0.243296 1.310435 -1.910768 -0.922717 -0.790465 -0.497364 -0.032442 -1.391519 0.882158 -0.641005 0.692467 0.407531 0.242184 -0.227810 0.884193 0.570034 0.470680 0.089562 1.859957 2.765562 -1.103949 -0.423131 -1.480880 0.678542 -2.361672 -1.722225 0.375685 0.187217 -0.756364 0.506192 0.394318 1.586301 -0.034990 0.327351 0.102356 -0.463801 +PE-benchmarks/quicksort-for-linked-list.cpp__main = -1.204207 0.042635 2.593564 -3.508950 2.065570 0.372228 0.812806 -0.057858 -2.914388 -1.950107 -0.120900 -2.400614 -2.238180 3.938256 -1.581416 0.112970 5.536037 1.831572 -0.892977 -1.690254 2.943672 -1.897595 4.371018 4.603298 -4.169157 -0.275653 1.718622 3.138243 1.891825 2.626452 -0.308941 -2.258614 0.682927 -0.609648 1.966984 -3.591496 0.674915 0.510719 -0.827913 -6.228776 0.649843 0.212560 0.113035 -0.519376 -0.101138 2.998761 3.726143 3.032589 -2.076022 0.462839 3.202565 1.569027 -0.405353 0.721315 0.378151 0.080839 2.054470 0.768768 -1.372138 -0.118973 -0.457575 -2.872544 0.864876 3.697011 4.660314 0.245911 0.342415 0.191323 0.716395 1.177717 1.220354 0.591485 0.815762 0.547104 2.086847 -3.709085 -0.036888 -8.528565 -0.008586 -10.067277 -2.254674 -2.115882 3.249116 -0.546310 -0.002298 -0.277548 3.911697 0.297597 0.907495 3.206184 4.512447 -1.832403 -1.395591 -2.974102 -2.773408 2.176100 -1.949012 -0.095234 1.596741 1.007442 -2.622936 -2.273506 1.202268 0.270484 -1.472587 -0.559730 -0.188289 3.488670 -3.849941 -0.894736 -2.713952 1.447730 0.565373 -5.439177 0.010666 -3.125334 3.559118 0.060469 -0.863792 -1.681261 0.434671 2.353697 -1.470386 -0.072534 -2.816142 3.743189 1.186449 -0.017777 0.148219 -0.194142 0.355833 2.303483 2.802010 -2.386555 -0.770004 1.055185 -2.745103 -0.738082 -3.821145 -0.808216 3.463447 -2.673125 0.403288 1.306888 -2.292635 -2.027804 2.497958 -1.038161 2.503653 10.598578 -0.447354 2.658017 1.467744 -3.352864 1.957208 0.600991 -0.417692 1.566213 2.758574 0.934974 -3.831328 -3.031071 1.056795 3.663779 2.670884 -3.448510 -1.647636 -1.282852 -0.775852 0.064982 0.263167 0.645364 -1.582803 -2.113800 -1.073418 1.870763 4.995067 -0.577300 -3.714628 0.431058 2.241961 -1.810396 -3.359883 -0.501600 -1.059010 0.670870 0.353850 -0.609296 2.731521 4.583361 -9.858446 3.514075 0.060418 -0.198506 2.206280 -0.237439 -1.596393 -5.805431 0.781415 3.080973 4.385046 -0.067334 -0.117316 1.011452 -3.427290 -0.293017 0.383596 1.970630 -1.616073 1.577362 0.660942 -2.434646 -2.494355 -1.328394 -0.851293 -0.490467 -0.913399 1.537642 -0.092339 -7.734859 4.217660 -1.368763 -0.806941 0.449799 -0.970360 1.925538 -4.059340 -4.155870 1.187632 0.309288 -2.065741 -2.941371 0.031137 3.197025 -0.846392 0.937625 -1.890849 -4.604492 2.429661 -1.883505 2.392427 1.499962 0.667623 4.314062 1.001754 -0.544917 -3.658609 -0.666835 1.052252 -0.966888 -2.173597 -0.200739 -0.850773 2.479787 4.284880 -0.734892 -0.759693 0.127664 4.429488 -2.937447 -2.112259 2.205338 0.865977 -1.521654 2.321493 2.862993 -4.326872 -2.030313 -2.819495 -0.779933 0.324967 -2.886372 2.036672 -1.666614 1.282135 1.270729 0.447588 -1.515040 2.018200 0.925687 0.036049 0.230783 4.478112 6.108429 -2.401246 0.892365 -3.133244 1.727425 -5.110726 -3.227216 -0.000966 -0.578820 -0.867754 1.127594 -0.346441 2.893318 0.060863 0.701253 -0.643865 0.366294 +PE-benchmarks/coin-change.cpp__count(int*, int, int) = -3.595276 -4.594157 -3.569636 -7.348389 5.336111 7.116424 3.031034 -6.000647 -9.266920 0.515023 4.444029 -9.969640 0.122019 9.521498 -2.740270 9.995976 12.202622 1.414825 -5.696027 -0.476970 9.938755 -0.630806 12.681180 10.453697 -6.068395 -0.882304 -2.179744 2.825616 1.773393 -0.945563 1.544177 -2.296345 4.719037 -11.590400 -4.034740 -4.236403 1.334699 3.568559 9.856956 -11.669284 2.438072 -1.006323 2.149275 -2.536275 -3.728250 -0.566272 4.746915 7.398776 -0.035824 2.568680 6.636265 0.302989 -0.850286 2.347449 1.311301 1.973466 -0.204374 -0.275642 -3.145537 -5.105105 -0.415803 -0.024376 2.270638 7.231219 9.520778 1.687650 -0.407912 7.117010 2.635584 2.017047 5.445051 1.147337 -4.275387 -0.005996 2.522696 -12.718161 -1.016193 -12.935178 -2.265860 -12.414544 -4.398245 2.024918 5.685097 0.469199 5.863555 1.882298 7.311695 -1.576546 -3.566178 8.494164 8.747672 -8.156006 -4.099834 -4.777417 -4.082891 1.830343 -3.722826 1.622211 5.975186 2.711570 -7.084119 -2.762175 2.937346 4.717979 -2.685191 -8.112532 3.004423 6.241924 -4.764667 -7.226961 2.625851 8.723487 -2.850649 -13.425001 -1.895584 -6.231634 2.746051 -0.073162 -3.244222 -8.778160 0.573570 3.574909 -2.090085 -4.570793 0.016075 4.274687 5.027451 4.121566 0.592152 2.183810 1.894675 15.013311 0.822378 -5.435744 1.685216 -0.620931 -1.217344 4.945173 -4.443668 -5.055748 0.201276 -9.234930 3.364491 7.058114 -4.444574 -1.871561 5.367754 5.009848 0.859496 26.994610 1.410646 11.434873 8.708793 -8.068153 3.033915 -4.880698 1.562204 2.593246 2.744809 -1.980919 -13.470634 -8.101554 4.970178 8.116422 6.299937 -9.541711 -3.021015 -0.539633 -0.674757 0.077721 -1.290632 2.603492 0.531010 -5.498813 -1.447987 8.128919 18.452980 -3.752383 3.023810 5.364553 3.084226 -3.748599 -11.798276 -4.812649 -7.163538 1.685260 2.927632 2.017913 4.293071 10.110755 -9.510760 6.691386 -1.565749 1.828536 6.784786 4.505018 -9.734514 -10.272440 -3.618465 4.569998 9.177535 -4.087863 0.426455 4.192396 -6.902849 -0.561239 2.325998 -1.575273 -1.037046 2.720551 0.408801 -3.108231 -3.080677 5.176967 -2.775523 -1.466693 0.761430 5.929291 0.735239 -7.659487 7.186885 0.332214 -3.903080 2.397611 -3.074174 9.513465 -5.906813 -6.401671 6.139377 -0.318580 -1.189016 -3.317600 2.080951 4.858361 2.739024 4.345339 -5.100362 -7.861755 5.278813 -3.647130 6.578593 3.144178 -1.611813 2.789589 -5.436587 -2.853255 -8.334482 -6.795882 -2.852476 1.834813 -8.945325 -2.633709 -1.312873 8.671310 4.013904 1.250430 -8.796915 1.388144 8.582606 -8.146201 -2.018463 5.245177 4.247121 -10.793970 0.906668 6.589618 -9.646418 1.947365 -2.401998 -0.275841 -3.392887 -6.429132 5.269248 3.366422 5.795417 -2.256007 1.901417 2.926726 3.773942 3.523464 3.399225 1.965800 11.312029 5.554030 -0.773534 -5.213094 -8.636979 3.321243 -9.295646 -10.784490 5.162641 3.549731 -7.141034 0.989135 2.320481 10.130620 1.573154 -1.930060 -2.291768 1.391696 +PE-benchmarks/coin-change.cpp__main = -0.862985 -0.931002 -0.137924 -2.096215 1.723803 1.502685 0.929554 -1.133825 -2.735806 -0.365952 1.099699 -2.956011 -0.616758 2.882747 -0.780563 2.178057 3.691725 0.621511 -1.402802 -0.357065 2.401189 -0.524363 3.604472 3.174080 -2.021863 -0.007940 -0.535346 0.959864 0.431768 0.552835 0.042784 -1.184552 1.270352 -2.464162 -0.610352 -1.331232 0.169627 0.700598 1.924962 -3.704717 0.640385 0.288730 0.501155 -0.675644 -0.712029 0.640268 1.918531 2.119933 -0.211123 0.950879 1.840058 -0.021758 -0.047316 0.664708 0.682072 0.387275 0.534901 0.020519 -1.258397 -0.995677 -0.310451 -0.759493 0.316621 2.150922 2.824980 0.327553 -0.226361 1.351563 0.531348 0.643895 1.468624 0.425348 -0.483882 0.048938 0.987073 -2.857298 -0.181344 -3.891394 -0.587230 -4.694656 -1.609473 0.189839 2.341813 0.265484 1.201855 0.030456 2.374004 -0.387256 -0.744835 2.175258 2.901340 -2.183232 -1.289267 -1.333294 -1.212122 0.679921 -1.149873 0.265395 1.668002 0.564364 -2.201631 -0.798553 1.075592 0.950404 -0.856377 -1.523548 0.633290 2.050512 -1.943075 -1.635963 -0.108985 2.073670 -0.241433 -3.853394 -0.391191 -1.471731 1.005245 0.308689 -1.153459 -2.021477 0.461856 0.929377 -0.885969 -0.921383 -0.737659 1.815516 1.095051 1.140834 0.309121 0.602126 0.699617 3.595056 0.701606 -1.598987 0.405596 -0.074032 -0.503055 1.262204 -1.313168 -1.367816 0.349404 -2.464676 0.863719 1.473349 -1.487781 -0.595557 0.999158 1.163323 0.408648 7.125761 0.082806 3.168193 2.077187 -2.362156 1.197812 -1.052626 0.226691 0.653159 1.177339 -0.162259 -3.167166 -2.267959 1.527026 2.597803 1.877513 -2.875746 -0.629241 -0.196900 -0.101244 0.031058 0.035548 0.709553 0.287214 -1.689687 -0.517072 2.010624 5.132817 -1.023299 -0.486680 1.273405 0.705415 -0.698507 -3.019048 -1.072480 -1.461519 0.520986 0.634281 0.321836 1.368902 3.095484 -3.934790 2.251077 -0.490595 0.080699 2.200273 0.968944 -2.475333 -3.168478 -0.895851 1.498413 2.906266 -0.480922 -0.140358 1.018105 -2.150856 -0.253059 0.498369 -0.081348 -0.531146 1.016236 0.128499 -1.182859 -1.059225 0.342328 -0.646950 -0.276734 -0.210624 1.649028 0.434251 -3.347633 2.284886 0.085111 -1.109922 0.328372 -0.631797 2.280646 -1.901476 -2.228441 1.419813 -0.459717 -1.173438 -1.242284 0.294448 1.283742 0.498552 0.929685 -1.322981 -2.440698 2.022073 -1.001995 2.140090 1.063959 -0.333130 1.521351 -0.324734 -0.947058 -2.086843 -1.662791 -0.105274 -0.245254 -2.189439 -0.291084 -0.645810 2.298911 1.564469 0.329840 -1.972846 -0.070139 2.610072 -2.209200 -0.798825 1.775714 0.854361 -2.462297 0.842829 2.157716 -2.749080 0.208426 -1.155236 -0.451897 -0.960289 -1.761235 1.440219 0.431466 1.384741 -0.261738 0.407444 0.201802 1.041001 0.679963 0.487470 0.349908 3.370816 2.424379 -0.838949 -0.615606 -2.474762 1.222845 -2.857483 -2.972918 1.190073 0.784149 -2.004149 0.216621 0.498694 2.543973 0.397343 -0.712809 -0.867371 0.630385 +PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -2.958523 -3.562690 -2.558407 -7.084039 4.231972 5.866160 2.133317 -3.461462 -8.252444 -1.007155 2.647858 -8.044158 0.353119 8.424578 -1.821619 8.342672 11.244229 1.457964 -4.236366 1.031668 8.663524 -2.290233 9.300024 8.883486 -4.788151 -0.730501 -1.638499 3.746423 0.230232 2.143230 1.812064 -3.974476 2.631785 -9.037272 -3.294574 -6.206943 1.195550 4.053679 7.051594 -11.414897 2.492544 1.820274 1.508535 -2.827814 -3.040525 -3.424716 3.788242 6.049717 -0.947493 1.630173 5.098568 1.487221 -1.434755 1.865419 1.189249 2.456888 -0.332910 -0.714751 -2.734671 -3.886208 -0.245481 -0.628543 2.484159 5.626074 8.242770 0.824001 -0.002221 5.400004 1.016719 1.498995 4.378745 0.372426 -4.407811 -1.504980 2.207798 -10.608396 -1.076200 -10.378205 -0.859162 -11.307988 -3.596933 1.643036 4.970635 3.201960 4.596361 0.183256 5.755338 -3.594176 -2.172125 8.085311 6.758114 -5.890832 -3.073394 -5.477173 -4.174755 2.229066 -2.981891 -0.998796 4.036116 1.766656 -5.450867 -2.320644 3.123059 4.396685 -2.187240 -7.007359 2.432867 5.568215 -5.511286 -6.843129 2.000047 8.473327 -2.697183 -10.639157 -2.627647 -6.067311 0.367837 -0.331099 -2.622072 -7.439056 0.776078 3.335590 -1.352841 -3.881254 -0.758634 4.698946 3.289323 2.871601 0.906509 0.758954 1.086575 12.183096 1.183455 -4.132741 1.302526 0.275710 -1.227649 3.017391 -4.389653 -4.395170 -0.894809 -7.708571 0.983872 6.335368 -3.846034 -1.305443 3.354192 3.556644 1.214766 27.741915 1.100164 9.536524 7.072367 -6.806613 3.930821 -2.726221 0.247219 1.739829 1.866104 -0.936287 -13.326310 -6.153083 3.694676 6.358336 5.760170 -6.873850 -3.523229 -1.023959 -0.527757 1.223810 -1.124587 1.700507 0.850832 -5.998856 -1.393906 6.381015 16.699747 -2.069785 1.673075 4.935942 3.745715 -5.791644 -11.934504 -3.516097 -7.273984 1.006466 1.389934 -0.263046 3.657950 8.478915 -9.076622 5.822846 -0.976745 0.938110 5.771846 2.832113 -7.476503 -12.158433 -3.705093 4.119817 9.841694 -4.428145 2.538044 2.846813 -5.463112 -0.453866 1.993039 -1.352107 -0.898882 2.295672 -0.293577 -3.247885 -2.487036 4.069621 -3.510723 -1.675826 -0.312883 4.163008 1.912459 -4.721250 6.094025 0.571883 -2.119055 2.453402 -1.475220 8.250176 -5.402310 -6.232942 5.601370 0.630716 -1.366963 -2.346517 1.585796 4.777225 3.058360 1.581209 -2.901902 -8.107394 4.071109 -2.975124 5.349293 2.551240 -1.573097 2.117259 -1.302175 -1.532267 -7.274928 -6.297201 -2.862209 0.830143 -7.078058 -4.093892 -1.403401 7.302832 3.366949 1.139846 -7.525304 0.823597 8.747832 -5.108378 -0.912702 4.545957 1.241997 -9.005175 -0.391401 6.066532 -9.089913 1.363911 -2.648381 0.980093 -2.344303 -4.874447 4.122026 2.805971 4.528368 -0.872829 1.158664 0.989800 2.291327 3.883423 1.963102 1.197955 10.638709 3.859617 -0.148744 -3.634791 -6.421836 1.446282 -7.482165 -8.266252 3.120395 2.928052 -6.118075 1.090409 3.079178 8.388281 1.292921 1.327832 -0.215692 0.217606 +PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -0.826469 -1.045046 -0.421278 -2.144253 1.149560 1.045718 0.605954 -0.681722 -2.460989 -0.553244 0.747109 -2.288970 -0.190746 2.520208 -0.600530 2.050502 3.312951 0.539649 -1.034049 0.061625 2.391187 -0.995858 2.623196 2.573487 -1.757831 -0.215029 -0.459503 1.280596 0.317658 0.714402 0.595211 -1.247219 0.600499 -2.161129 -0.429403 -1.806384 0.533827 1.220290 1.636937 -3.597315 0.667953 0.854082 0.753190 -0.729004 -0.696636 -0.205877 1.128393 1.945963 -0.688899 0.608936 1.840628 0.391831 -0.292765 0.493534 0.161146 0.320452 -0.231164 -0.179321 -0.933159 -0.836012 0.039790 -0.715753 0.763016 1.779077 2.601907 0.092762 0.066910 1.251933 0.393339 0.535362 1.345682 0.149547 -0.945565 -0.455770 0.887185 -2.585574 -0.321176 -3.632133 -0.060290 -4.226253 -1.216389 0.219932 1.950017 1.174053 1.015166 -0.310840 1.857807 -0.694176 -0.470058 2.446923 1.992030 -1.480952 -0.977390 -1.765842 -1.470110 1.072093 -1.108471 -0.336231 1.300855 0.667926 -1.622328 -0.713832 0.909588 1.018504 -0.730643 -1.689737 0.529669 1.673864 -1.781985 -1.831786 0.227955 2.237304 -0.463052 -3.164813 -0.307991 -1.811280 0.169535 -0.010360 -0.582015 -1.566265 0.086698 0.742321 -0.562956 -0.802405 -1.226243 1.767756 0.879159 0.752607 0.328759 0.188403 0.350261 3.039035 0.276944 -1.421268 0.132130 0.302493 -0.559380 0.762489 -1.640537 -1.248906 0.638362 -2.230703 0.221223 1.306453 -1.200581 -0.542736 0.990285 0.797725 0.621505 7.480072 0.411625 2.786213 1.981144 -1.816737 1.596428 -0.431468 0.084261 0.748511 0.807119 -0.294694 -3.159202 -1.852704 0.857925 1.980155 1.720163 -1.941945 -1.062867 -0.262547 -0.176987 0.309356 -0.172033 0.519167 -0.075564 -1.719014 -0.388651 1.755836 4.328212 -0.319761 0.362819 1.174537 1.523743 -1.684131 -3.179234 -0.839472 -2.052859 0.280275 0.281658 -0.032928 1.242438 2.598561 -3.578674 1.826754 -0.013817 0.440122 1.472803 0.478723 -2.179826 -3.992211 -0.668123 1.111159 2.919188 -1.108663 0.828349 0.967717 -1.724186 -0.083515 0.493372 -0.249658 -0.415696 0.743023 -0.257082 -0.788531 -0.936895 0.826291 -1.202610 -0.488118 -0.209055 1.218936 0.902732 -1.928301 1.723529 -0.250360 -0.760746 0.499724 -0.510077 2.043370 -1.949816 -1.860413 1.367469 0.147811 -0.700802 -1.048362 0.371850 1.454221 0.365843 0.267098 -0.705395 -2.585390 1.376188 -1.052582 1.480350 0.841739 -0.537159 0.802157 0.317981 -0.450635 -2.048089 -1.498943 -0.627548 -0.094196 -1.965922 -0.671780 -0.437404 1.956740 1.354777 0.239081 -1.897840 0.390376 2.493780 -1.145244 -0.640558 1.352987 -0.048645 -2.180607 0.291181 1.804271 -2.766708 0.298880 -1.224578 0.481179 -0.301033 -1.480552 1.341244 0.583123 1.276527 -0.153748 0.321200 0.017698 0.848221 1.105976 0.268404 0.199221 3.198953 1.449800 -0.224093 -0.611802 -2.009951 0.468661 -2.433770 -2.367938 0.622447 0.661439 -1.730001 0.551967 0.812650 2.356918 0.383720 0.494738 -0.278228 0.207968 +PE-benchmarks/transitive-closure-of-a-graph.cpp__main = -0.619988 -0.599072 -0.153976 -1.606300 1.177549 1.166434 0.588475 -0.445611 -2.056499 -0.525808 0.447385 -2.076315 -0.390577 2.174504 -0.446825 1.601532 2.932743 0.616112 -0.872165 0.138025 1.711051 -0.667604 2.337446 2.280721 -1.257074 -0.015938 -0.515041 0.906511 -0.200464 1.096575 0.198905 -1.424456 0.671767 -1.568221 -0.445795 -1.536462 0.130488 0.820711 1.062165 -3.078172 0.575465 0.914895 0.478593 -0.661079 -0.481272 -0.392344 1.328913 1.464310 -0.144216 0.527366 1.041281 0.375118 -0.121537 0.496244 0.538969 0.579322 0.195850 -0.456194 -1.013685 -0.637771 -0.236554 -0.631180 0.283124 1.390528 2.036183 0.177367 -0.089951 0.787301 0.019060 0.455302 0.994455 0.140472 -0.590625 -0.283822 0.576465 -1.857503 -0.209716 -2.307734 -0.187279 -3.325011 -1.102977 0.071806 1.688677 1.169238 0.812883 -0.312770 1.619818 -0.858362 -0.288393 1.728790 1.965319 -1.389483 -0.859899 -1.305086 -0.910186 0.605171 -0.745522 -0.411551 0.934488 0.337907 -1.469159 -0.561135 0.884602 0.777387 -0.560446 -1.132715 0.456371 1.563002 -1.742962 -1.381015 -0.154305 1.806009 -0.296357 -2.599794 -0.497934 -1.161223 -0.027036 0.229009 -0.823886 -1.531479 0.470121 0.735569 -0.520510 -0.667293 -0.784325 1.509718 0.471236 0.524832 0.319403 0.284360 0.300509 2.581848 0.477471 -1.025522 0.305557 0.208022 -0.340961 0.579276 -1.044583 -1.059393 -0.266963 -1.870837 0.253500 1.183833 -1.115080 -0.310958 -0.018944 0.702675 0.452755 6.016776 -0.022561 2.217616 1.426897 -1.747653 1.201995 -0.495810 -0.064380 0.248950 0.746280 0.033234 -2.559417 -1.490115 0.940736 1.746446 1.473295 -1.568271 -0.547891 -0.368019 -0.037640 0.297584 0.039137 0.451320 0.279628 -1.514464 -0.391445 1.261481 4.039400 -0.455370 -0.258558 1.044394 0.737444 -1.022533 -2.484968 -0.677621 -1.380942 0.217343 0.226354 -0.197760 0.891703 2.207042 -2.682025 1.719823 -0.298962 -0.043928 1.582277 0.431536 -1.549952 -2.873978 -0.890051 1.191143 2.655332 -0.659508 0.402719 0.500456 -1.446494 -0.191187 0.374220 0.016269 -0.357055 0.699082 -0.073474 -1.035292 -0.675627 0.249874 -0.707596 -0.379586 -0.368703 0.958005 0.825303 -1.797674 1.661564 0.165142 -0.503353 0.408462 -0.103186 1.674149 -1.391275 -1.744072 1.117024 -0.106050 -0.900465 -0.637824 0.176020 1.121323 0.517044 0.230120 -0.591425 -1.961573 1.397694 -0.539173 1.477463 0.722316 -0.284913 0.889366 0.527040 -0.580618 -1.389728 -1.521038 -0.318976 -0.389929 -1.379267 -0.444123 -0.531741 1.697132 1.158213 0.360020 -1.600210 -0.121914 2.255400 -1.050793 -0.318111 1.364677 -0.160653 -1.734508 0.261193 1.726220 -2.205249 0.008077 -0.907489 0.159035 -0.551062 -1.148590 0.891930 0.196207 0.890627 0.024700 0.149845 -0.216303 0.521621 0.744164 0.112563 0.157415 2.730964 1.078955 -0.338149 -0.148977 -1.512760 0.523519 -1.949203 -1.822741 0.477753 0.629572 -1.481882 0.255503 0.594603 1.769326 0.198426 0.221845 -0.269342 0.108162 +PE-benchmarks/biconnectivity.cpp__Graph::Graph(int) = -1.065045 -1.091240 0.397794 -2.880868 1.590059 1.126466 0.776590 -1.114850 -2.235303 -0.333864 1.324552 -1.360350 -1.092358 2.626712 -0.833288 1.475699 1.540103 -0.373644 -1.636414 -0.870990 2.513151 -0.978867 2.524549 1.468141 -2.523991 -0.288118 -0.348416 1.965832 0.763159 1.367521 0.353198 -0.049643 -0.269311 -0.934801 0.398762 0.069996 0.481554 0.487506 0.436485 -2.241242 0.554423 1.325369 0.997471 -0.619996 -0.761149 -0.442517 0.942338 2.202528 -0.172108 0.028468 2.385248 -0.212172 0.254844 0.396161 1.091862 0.104403 1.751852 -0.147152 -0.354071 -1.191988 -0.287479 -0.473503 0.887398 2.135641 2.535853 -0.430207 0.000705 1.018199 0.306452 1.410213 1.672500 0.332332 -1.194381 -0.648243 1.663784 -1.357908 0.333545 -2.394678 0.219915 -2.413931 -1.298022 0.206216 1.609627 0.843997 1.033075 -0.034750 2.249198 -0.040309 -1.122410 0.612685 1.333885 -0.613173 -0.760558 -1.308962 -1.725243 0.556193 -1.206310 -0.309625 0.768066 1.323558 -1.732910 0.551646 0.098295 0.998993 -1.158708 -0.611942 -0.292426 1.767619 -1.042306 -0.964747 0.473405 2.254369 -0.333811 -3.206310 -0.858204 -2.341069 -0.197264 -0.902446 -0.012082 -0.444756 0.158106 1.153668 -0.716948 -0.755397 -1.738925 1.345506 1.306281 0.662071 0.108552 0.217000 -0.035735 1.855967 0.307743 -1.159696 -0.664373 0.187220 -0.430331 1.204961 -0.557106 -0.530067 0.523422 -1.505518 -0.003106 0.517016 -0.424573 -0.342089 -0.073026 0.838113 0.543622 5.068871 -0.082308 2.282733 1.133219 -1.190609 1.033270 0.361715 0.382397 1.041877 0.874645 -0.985705 -1.441420 -2.059728 1.419178 1.784429 1.367234 -1.474311 0.167936 0.035512 -0.403690 -0.223470 -0.000430 0.289518 -0.232934 -1.315802 -0.611928 0.798850 3.012731 -0.651842 -2.021661 1.680521 1.186984 -1.618526 -1.404103 -0.755178 -1.279045 0.145343 -0.164566 0.190063 1.598327 2.504372 -2.521467 1.790185 0.073067 -0.349956 2.237067 -0.888105 -1.281493 -2.847615 -0.443117 0.233535 2.158615 -1.008885 -0.723917 0.786472 -1.919088 0.457762 -0.023938 -0.389713 -0.416701 0.986191 -0.699792 -0.522282 -1.071287 -0.750912 -1.111881 0.803972 -0.730959 0.868065 -0.103306 -2.042772 1.708602 -0.314217 -0.592377 0.148617 -0.107267 1.681541 -1.155550 -1.580943 1.102367 0.064346 -0.670224 -1.975229 0.390720 1.331388 0.007606 0.172596 -1.605902 -0.834893 1.423365 -1.842129 1.736998 0.873465 -0.303459 0.438122 1.510713 -0.286050 -1.386871 -0.637055 -0.261359 0.226648 -2.254418 -0.422969 -0.642164 1.821266 0.574819 0.202792 -0.753679 -0.188155 2.553901 -0.801211 -1.332272 0.844582 -1.008693 -1.756873 1.136931 1.594767 -1.346824 -0.107038 -1.598584 -0.262419 -1.243429 -2.015561 1.879096 1.106354 1.912102 -0.495679 0.887995 0.123995 0.569985 0.673676 -0.067161 -0.257990 3.177373 1.193679 -0.938137 -0.923121 -2.208999 1.318985 -1.535737 -1.358586 0.776772 -0.035305 -1.028146 0.538028 -0.298880 2.454892 0.663988 -0.151995 -0.460183 0.048109 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/biconnectivity.cpp__Graph::addEdge(int, int) = -0.732709 0.131275 1.158565 -1.691132 1.282604 1.588591 0.467775 -1.001141 -1.352219 -0.423541 0.219422 -1.636945 -0.983001 1.961560 -1.084751 0.701790 2.473362 0.520061 -0.891399 -0.351780 1.413026 0.162923 2.560820 2.280299 -1.829199 -0.166679 0.494226 1.338625 0.525560 1.416344 -0.638854 -1.164082 0.669690 -0.686293 0.080693 -1.112735 0.168030 -0.027823 0.334928 -2.519223 0.277208 -0.000512 -0.543345 -0.318886 -0.127349 0.236960 1.933980 1.524032 -0.075622 0.057414 1.183899 0.856777 -0.091711 0.427234 0.689185 0.292905 1.353593 -0.252732 -0.591940 -0.689236 -0.448108 -0.726291 -0.018470 1.996445 2.094452 0.523174 0.018300 0.223322 0.044385 0.371603 0.526870 0.493345 -0.098310 1.055615 0.592506 -1.492855 0.669840 -2.142106 -0.278210 -2.181094 -1.000056 -0.654773 0.671493 0.447634 0.810695 -0.075125 2.012382 -0.058288 -0.024175 1.021920 2.426623 -1.687703 -0.647812 -1.011534 -1.047388 0.403589 -0.975008 0.325261 -0.188284 0.371922 -1.450776 -1.044070 0.380426 0.594775 -0.711595 -0.137881 0.052807 1.630737 -1.701654 -0.792813 -0.773553 0.654590 -0.256615 -2.856497 -1.110148 -1.211712 1.483235 -0.063738 -0.696131 -1.682666 0.540318 1.473488 -0.463287 -0.666982 -0.709301 1.399893 0.988951 0.148154 -0.125300 0.032183 0.431055 2.132614 0.926628 -0.916697 -0.011572 -0.053618 -0.933218 0.091817 -1.091561 -0.173702 0.038084 -1.476333 0.109531 1.671977 -1.059749 -0.323737 0.202949 -0.003975 0.906564 5.775425 -0.502744 1.575098 0.924275 -2.063030 0.415716 -0.342844 -0.193109 0.307085 0.706037 0.720541 -2.601160 -1.569494 1.177410 1.964529 1.240441 -1.673263 0.261996 -0.490764 -0.208251 -0.350520 0.207865 0.434322 -0.514542 -1.185199 -0.615634 1.215461 3.054384 -0.793970 -1.972472 0.806828 0.009233 -0.361743 -1.091462 -0.563444 -0.142515 0.396977 0.749632 -0.099849 1.130155 2.312993 -3.149788 1.709485 0.000190 -0.637363 1.854232 -0.000384 -1.056328 -0.555973 0.019778 1.626461 1.657111 -0.027776 -0.354799 0.272732 -1.781185 -0.227370 0.377507 0.813533 -0.732638 0.875270 0.961910 -1.567473 -1.391549 -0.651739 -0.081733 -0.460984 -0.805976 1.010867 -0.698691 -3.320444 2.254629 0.227798 -0.438682 0.372789 -0.744169 1.195233 -1.853768 -2.097688 0.949918 -0.207682 -0.689106 -0.654061 0.106043 1.233076 0.533945 0.953059 -1.683354 -1.756628 1.027851 -0.383981 1.451425 0.676464 0.620647 1.432174 -0.055366 -0.333298 -1.480213 -0.917217 0.832916 0.148866 -1.475900 -0.286104 -0.496562 1.660632 1.849023 -0.358996 -0.793655 -0.353196 1.834824 -1.518935 -0.526422 1.039307 0.843066 -1.576629 0.219388 1.301742 -1.469047 -0.761400 -0.812786 -0.745109 -0.763649 -1.628771 0.905632 -0.477809 0.862161 0.618082 0.214043 -0.656864 0.707882 0.352243 0.226649 0.591095 1.971821 2.057892 -0.677290 0.226615 -1.775901 1.114230 -2.445341 -2.011514 0.808448 -0.542757 -0.706542 0.111221 -0.192798 1.664871 0.240149 -0.017307 -0.116176 0.051508 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::push_back(int const&) = -0.393401 0.422519 1.031386 -1.031333 0.911656 0.566330 0.289656 -0.279628 -0.773459 -0.525266 -0.148460 -0.897224 -0.903899 1.280504 -0.616633 0.073999 1.790952 0.501754 -0.302807 -0.413763 0.851887 -0.381816 1.574160 1.505993 -1.357415 -0.030149 0.664674 0.861908 0.356394 1.202490 -0.612930 -0.953458 0.365006 -0.118637 0.544261 -0.984653 0.119830 -0.152330 -0.193692 -1.907424 0.155767 -0.015483 -0.204815 -0.182168 -0.031300 0.779597 1.547288 0.969966 -0.421378 -0.029383 0.874053 0.620141 -0.097963 0.297384 0.378952 0.174232 1.031777 0.169529 -0.481999 -0.155502 -0.293692 -0.832648 0.017336 1.302350 1.489585 0.233028 0.090516 0.007296 -0.041530 0.269086 0.155668 0.281825 0.394614 0.619241 0.531091 -0.970691 0.242467 -2.185488 -0.192089 -2.616972 -0.754199 -0.842108 0.533092 -0.078097 0.281471 -0.102190 1.382458 0.134932 0.371358 0.607444 1.754056 -0.984465 -0.436997 -0.858633 -0.801377 0.442703 -0.636845 0.104814 0.202661 0.027407 -0.937050 -0.945297 0.461861 0.185601 -0.488910 -0.001059 -0.093111 1.121425 -1.237884 -0.317652 -1.042174 0.074072 -0.001614 -1.868447 -0.179050 -0.785787 1.111922 0.056561 -0.349325 -0.966815 0.316298 1.033208 -0.484618 -0.318287 -0.754878 1.269090 0.517544 -0.075629 0.042366 -0.180365 0.280622 0.961390 0.974930 -0.665891 -0.209115 0.093297 -0.913571 -0.285879 -1.050647 -0.113064 0.664561 -0.889177 0.120973 0.784143 -0.762436 -0.322448 0.525266 -0.447182 0.868483 3.416189 -0.418630 0.818023 0.264811 -1.401633 0.626074 0.021844 -0.357153 0.243614 0.811920 0.630133 -1.440099 -1.010450 0.605399 1.272015 0.837819 -1.148896 -0.197742 -0.512979 -0.207236 -0.164074 0.156924 0.268295 -0.507400 -0.738695 -0.435400 0.615118 1.914148 -0.449047 -1.544312 0.355047 0.286026 -0.283268 -0.909225 -0.256530 -0.189793 0.222384 0.197102 -0.242304 0.853825 1.563733 -3.006717 1.193289 -0.108337 -0.541645 1.076828 -0.167630 -0.449786 -1.052387 0.368348 1.265526 1.273501 0.190920 -0.134402 0.039200 -1.167345 -0.168691 0.086990 0.810292 -0.584731 0.563585 0.487927 -1.173862 -1.013237 -0.690934 -0.063023 -0.385776 -0.485327 0.511122 -0.174620 -2.768394 1.648919 -0.130720 -0.191598 0.176767 -0.382907 0.517944 -1.317703 -1.511133 0.446208 -0.096081 -0.477232 -0.646495 -0.000830 0.949210 -0.083431 0.456571 -0.878972 -1.521547 0.725538 -0.311385 0.837731 0.488394 0.599123 1.310276 0.380108 -0.267713 -1.117797 -0.289140 0.571623 -0.237513 -0.781671 -0.017482 -0.380949 0.971460 1.535718 -0.270168 -0.175254 -0.264594 1.297858 -0.996112 -0.491824 0.806547 0.446839 -0.700777 0.378291 0.955423 -1.064124 -0.897462 -0.774836 -0.441146 -0.216755 -1.102292 0.437810 -0.726183 0.309425 0.667349 0.027998 -0.656052 0.586144 0.153043 0.024624 0.135450 1.306914 1.819926 -0.839331 0.431610 -1.036537 0.682646 -1.754411 -1.204426 0.264368 -0.371827 -0.333964 0.150210 -0.107557 0.890154 -0.132064 0.233602 -0.089607 -0.109375 +PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -6.243997 -3.676016 1.140407 -13.976755 9.725582 13.596780 4.563721 -8.739723 -13.339762 -2.706839 5.219512 -14.650631 -3.806822 17.051948 -6.129662 12.604483 20.435338 2.583586 -8.310395 -1.177813 16.216757 0.172769 21.678948 17.901490 -13.451893 -1.482501 1.996310 8.984114 4.410950 4.825184 -0.334747 -7.071043 7.193874 -14.868628 -4.421579 -9.414647 2.612296 3.326764 10.527377 -20.034585 3.572167 -1.524098 -3.132878 -4.221945 -5.078513 -2.455000 13.034278 13.514241 -2.481101 2.960944 11.304630 3.405417 -2.793508 3.928942 3.376220 2.653155 2.038566 -0.530736 -4.990420 -7.878506 -1.669765 -4.498244 2.738156 14.478876 16.863923 2.642559 0.144069 9.645021 1.575140 2.861020 7.299481 2.647525 -3.879797 2.929210 6.563719 -19.621786 -0.110993 -22.990200 -3.935660 -21.066959 -8.052610 -0.453411 7.940562 1.636206 9.493839 1.615754 14.303070 -2.632047 -3.349182 15.039577 18.622457 -14.536161 -6.354418 -9.750953 -8.528163 4.329083 -8.327212 2.076990 3.274543 2.326724 -12.332430 -8.241889 3.725190 7.725885 -5.502753 -10.875427 3.034982 12.182239 -12.561955 -11.197565 -0.728238 9.951735 -4.522586 -24.290172 -8.595267 -10.060433 11.972346 -0.532894 -4.907208 -16.120733 2.144401 10.449344 -2.984235 -8.855283 -0.206148 8.365536 8.762410 5.866857 1.004033 1.279303 3.973445 24.020294 7.366173 -7.984945 1.135177 -1.201983 -4.505837 5.369391 -8.286002 -5.891967 1.260023 -14.428627 1.682539 15.337254 -8.329921 -4.010779 9.458900 4.309254 4.698156 51.584372 0.597882 16.009351 12.080000 -16.652264 2.338547 -6.436624 -0.253514 4.342377 5.179965 1.340227 -24.248828 -13.448279 9.051407 14.963027 11.168842 -16.058565 -2.715306 -2.654435 -0.805325 -1.170999 -1.447464 3.861165 -0.318429 -11.244554 -3.712358 14.147701 28.139496 -7.500181 -6.196795 9.160334 4.081447 -6.654153 -15.747087 -6.844745 -7.750662 3.137357 6.725549 0.257010 8.579919 18.847529 -21.777440 12.353550 -1.785037 -0.870650 11.207083 5.298366 -13.502661 -11.364996 -2.855414 11.845901 14.552019 -3.981704 1.736051 5.000567 -13.420535 -1.370668 4.041375 0.671790 -3.231930 6.161602 3.549452 -9.243534 -9.345366 3.710381 -3.631732 -3.261636 -1.312096 9.457977 -2.485892 -21.057389 16.792656 0.481593 -5.354279 4.530829 -5.544675 15.896375 -14.055127 -16.271867 10.942466 -1.009929 -4.272325 -5.206097 2.756882 10.043935 6.286651 4.807798 -10.582191 -15.075651 8.469165 -4.578625 11.734722 5.709425 0.967171 10.548768 -7.962996 -3.528351 -15.278193 -9.913253 1.315649 2.100143 -14.748502 -7.486217 -3.086607 15.162308 11.191000 -0.667494 -11.103219 0.581385 15.053821 -16.125643 -4.135344 9.364026 11.217652 -17.523826 1.940522 11.778025 -15.139423 -0.603792 -5.897510 -2.267846 -5.719787 -14.202146 8.441579 1.891169 9.031626 1.309397 2.952426 0.376646 6.062726 5.037751 4.757049 3.143125 17.347814 16.142725 -5.117736 -6.044258 -14.966841 6.655867 -20.084583 -19.729384 8.914088 1.621413 -8.531402 1.547979 1.302469 15.949035 3.024716 -1.175197 -1.494267 0.787111 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/biconnectivity.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/biconnectivity.cpp__Graph::isBC() = -4.153833 -3.007272 0.484643 -10.461238 7.299678 7.375296 3.223114 -5.295055 -9.671801 -2.146416 4.556386 -8.978070 -3.551794 11.816638 -3.850233 7.867387 11.920130 -0.045823 -6.131613 -2.039460 11.219960 -1.131852 13.415043 10.032412 -9.754549 -0.951656 -0.144355 5.707736 2.922668 3.627736 1.041968 -4.048547 2.838640 -8.587131 -1.852083 -3.456282 1.927730 1.624313 5.918129 -12.327767 2.491953 1.587028 0.113731 -3.154147 -3.601826 -1.735486 7.302407 9.315661 -1.611811 0.872956 9.052207 1.377828 -1.387696 2.267840 2.913203 1.021176 2.786663 -0.879252 -3.058583 -5.311260 -1.028024 -2.075601 2.101024 9.729986 10.641400 0.650802 -0.108458 6.373128 0.763372 3.619729 5.511256 1.601263 -2.745172 0.366999 5.551399 -10.408975 -1.026192 -14.160882 -1.632738 -13.821770 -5.812394 0.372141 6.242145 2.370180 5.684333 1.232323 9.641182 -1.511683 -3.197932 8.266859 10.455512 -7.040931 -4.199398 -6.863651 -6.709143 2.935893 -5.409280 0.647841 2.456858 2.761123 -8.487601 -2.679293 1.716621 4.906082 -4.022798 -6.518418 1.268695 8.066955 -7.057806 -5.993726 0.469632 8.580212 -2.085390 -15.662316 -4.507860 -7.401314 4.610366 -1.276477 -2.323862 -7.914259 1.333171 5.977544 -3.137467 -5.194044 -2.174385 6.269102 5.577367 4.377489 0.836464 1.055323 2.650163 13.442306 3.719235 -5.243659 -0.098904 -0.961285 -1.870395 4.429762 -4.022095 -3.474165 1.578671 -8.551947 1.702333 7.660787 -4.409259 -3.137682 4.094182 2.803736 2.756951 30.657919 0.157068 11.245266 6.916176 -9.270706 2.921822 -3.188224 -0.146367 2.933418 3.627687 -0.716426 -12.657803 -9.078436 6.743100 9.329700 7.109740 -9.671482 -1.235857 -0.671410 -1.113525 -0.490950 -0.491464 2.564085 0.080843 -7.205506 -2.756738 8.124742 17.910752 -4.249722 -4.234784 6.863675 4.445164 -4.511080 -9.353627 -4.180474 -5.194638 1.824358 3.805245 0.676390 6.426524 12.410358 -13.144953 8.140238 -0.907770 -0.652798 7.500196 1.182895 -8.432622 -9.520668 -1.985716 5.831248 10.136374 -2.770171 -0.124753 3.084282 -8.734331 0.021644 1.987548 -0.551091 -1.871182 4.118239 -0.027712 -4.841124 -5.951894 1.296889 -3.831269 0.430121 -1.548736 5.436724 -0.945047 -12.273611 10.388799 -0.424175 -3.202989 1.559399 -2.984510 9.925257 -7.507387 -9.684482 6.645090 -0.828053 -3.237421 -4.556521 1.622702 6.194463 3.330623 2.731110 -6.663595 -8.883415 5.793590 -4.162128 8.509648 3.921824 0.175132 5.439682 -1.572292 -2.021771 -8.970412 -6.034489 0.068208 1.424488 -10.551316 -3.660171 -2.516531 9.555130 5.277318 -0.403923 -6.857418 -0.489174 10.065373 -8.582128 -3.824042 5.621872 2.992659 -10.958760 2.319902 7.960534 -8.728867 -0.053598 -5.138112 -0.641438 -4.868528 -9.463555 5.632751 2.930650 6.673642 -0.032039 2.911862 0.124499 3.120070 3.153646 2.263676 0.649711 12.119385 8.795113 -3.946118 -4.183167 -10.342323 5.460759 -11.108960 -11.972115 5.764056 0.847200 -5.660003 1.161293 -0.097659 10.700555 1.951149 -0.534760 -1.574944 0.952872 +PE-benchmarks/biconnectivity.cpp__main = -7.158972 -1.974463 7.365558 -18.999468 13.666515 10.025081 5.895521 -3.661980 -18.346212 -9.390494 4.450346 -19.732289 -12.994946 23.188176 -7.575546 6.659588 26.417875 4.071325 -9.251715 -3.929838 16.275008 -2.602858 24.902887 22.194143 -19.531920 -0.676043 -1.746247 12.187800 3.319510 11.829392 2.141805 -14.019767 5.067212 -5.812369 2.159960 -9.602754 1.819609 2.195930 0.485893 -29.073061 4.167586 9.321527 -0.367045 -5.200613 -2.501657 4.362468 19.204387 16.822919 -4.447605 1.720838 14.121547 5.590413 -0.753362 4.114082 5.157725 -1.514374 5.228263 -5.063847 -9.128403 -6.084782 -3.578961 -10.174866 0.756032 19.000227 21.100858 2.009895 -0.960384 4.191665 0.859042 7.295490 8.189031 3.904294 2.373898 2.348514 10.354077 -10.755090 -1.389986 -25.952202 -0.625859 -36.069101 -13.127332 -3.916799 19.505431 11.697002 3.114319 -5.787043 21.179735 -2.778002 -1.674152 18.205107 24.169825 -10.897887 -8.103827 -14.601116 -12.723650 7.805356 -9.530832 -0.201784 2.933226 6.013648 -16.989701 -4.885066 2.174319 3.222645 -7.808668 -4.958717 1.118102 17.697194 -18.979522 -5.145033 -6.794081 14.715292 3.205646 -30.087290 -8.064226 -11.802794 7.802446 0.850067 -6.956735 -9.000445 4.714879 8.203681 -7.265689 -2.745972 -15.294706 17.613647 6.587505 4.339038 2.033562 3.946191 5.165390 18.217506 7.481908 -10.450340 -0.480306 0.952023 -4.609538 3.959795 -9.821413 -5.108035 5.220430 -15.570370 1.987945 9.766824 -11.046165 -8.127434 -4.470640 0.976164 7.712119 54.520496 -2.805038 19.896723 10.832965 -18.061631 9.333437 -2.493798 -2.479712 4.171995 9.978881 3.815650 -17.456750 -16.752840 12.414755 20.667321 14.483739 -15.388745 2.311487 -1.729058 -2.311519 -2.460128 3.443470 4.544447 -0.274228 -13.804717 -5.766563 14.028970 31.840328 -4.562792 -14.648954 9.069009 8.803294 -3.452011 -12.133580 -4.578586 -3.707118 2.495235 7.529006 -0.993449 12.845935 25.372374 -32.552695 18.715430 1.206335 -1.627588 13.579040 -0.353467 -13.059450 -20.274087 -3.010781 14.926269 22.462047 -1.744964 -2.111412 2.758744 -17.830366 -1.213090 4.698094 4.088749 -6.242742 9.336947 0.430865 -10.286915 -11.724790 -6.774792 -7.386184 1.554408 -7.660642 9.618121 1.637708 -29.060803 22.313307 -1.159055 -5.035699 -1.295619 -4.910137 14.796722 -16.735223 -21.272919 8.922130 -4.207990 -15.791848 -10.382709 0.538281 12.116293 3.031669 3.576551 -11.427608 -18.817446 17.548778 -5.921906 17.516174 8.495140 1.756454 16.196723 8.505661 -5.320168 -13.229659 -14.062589 7.169224 -2.924762 -15.785351 0.534910 -6.035390 15.186881 15.513136 -2.120266 -12.001389 -2.710640 20.757162 -11.807609 -9.137066 12.738050 -1.821409 -14.767173 9.392622 17.203302 -17.771809 -4.058903 -15.039867 -0.869988 -7.415040 -16.745020 9.445640 -1.172031 8.812163 4.210418 2.459991 -6.341941 6.643170 5.270257 -0.439634 1.669925 25.493465 19.035461 -9.512617 2.596862 -19.055677 11.764786 -23.640440 -20.241763 6.043479 -0.855226 -7.842297 1.619649 -2.408401 16.790268 2.510402 -0.595578 -5.097726 4.831997 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/biconnectivity.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.635914 0.463864 1.281313 -1.462158 1.598193 0.803151 0.621960 -0.379792 -1.207862 -0.889649 -0.090438 -1.247632 -1.502538 2.052717 -0.913442 0.449066 2.826967 0.715392 -0.376096 -0.722316 1.719090 -0.965348 2.683612 2.293182 -2.311495 -0.089599 1.034875 1.310367 0.657217 1.724008 -0.798546 -1.297871 0.923368 -0.778152 0.858821 -1.618381 0.331412 -0.170577 -0.167327 -2.948905 0.163859 -0.161612 -0.420037 -0.168808 -0.244682 1.575813 2.327489 1.661661 -0.921072 0.265226 1.493855 0.538721 -0.136404 0.628223 0.389403 0.260891 1.133152 0.563407 -0.970616 -0.305996 -0.552812 -1.754975 0.211331 1.968153 2.505407 0.141780 0.265884 0.522154 -0.235080 0.488962 0.456662 0.488527 0.751187 0.550087 1.314212 -1.923971 -0.060402 -3.832157 -0.665460 -4.906716 -1.243008 -1.494420 0.913026 -0.641079 0.757922 -0.076682 2.226840 0.361814 0.508450 1.227660 2.731051 -1.790356 -0.771060 -1.580789 -1.098448 0.634437 -1.226038 0.128313 0.919292 -0.147080 -1.562868 -1.543319 0.811336 0.379780 -0.702250 -0.682223 -0.317414 1.898663 -2.080096 -0.822783 -1.866792 0.001061 -0.235571 -3.093815 0.043789 -1.057601 2.067265 0.212480 -0.264556 -1.475933 0.452657 1.815523 -0.661254 -0.861077 -0.557000 2.108963 0.921483 0.114429 0.303616 -0.075653 0.262633 1.805394 2.160797 -0.859695 -0.565026 0.147179 -1.500766 -0.147067 -1.624848 -0.309320 1.503039 -1.644511 0.185635 1.251623 -1.122753 -0.583255 1.541843 -0.606574 1.481378 5.220425 -0.453654 1.372586 0.525053 -2.241049 1.041639 -0.132518 -0.347712 0.682780 1.457097 0.688143 -2.433908 -1.695378 0.935097 1.901794 1.311050 -2.309792 -0.688919 -0.902133 -0.034532 -0.276003 -0.107319 0.694784 -0.576076 -1.247462 -0.496023 0.952754 3.137521 -1.136182 -2.216293 0.801763 0.490957 -0.690794 -2.055872 -0.648578 -0.552538 0.232256 0.279081 -0.307540 1.121586 2.522139 -4.539029 1.823714 -0.461042 -0.670701 1.586730 -0.072012 -0.751829 -2.188624 0.528494 1.896703 1.925821 0.379227 -0.191020 0.204749 -1.860791 -0.036760 0.100837 1.205356 -0.681087 0.886537 0.420819 -1.693018 -1.747205 -0.885235 -0.111533 -0.571336 -0.363916 0.825574 -0.113187 -4.427910 2.441753 -0.512168 -0.621039 0.485853 -0.309114 1.169971 -2.046662 -2.539525 0.918355 -0.264769 -0.949952 -1.392181 0.186804 1.459229 -0.023541 0.302694 -1.208110 -2.699489 1.289880 -0.637092 1.270232 0.804454 0.960973 2.579906 0.331519 -0.823704 -2.117206 -0.485306 0.612659 -0.564980 -1.328853 -0.450454 -0.457063 1.691522 2.464456 -0.214696 -0.150291 -0.319332 2.243547 -2.147444 -0.960212 1.623656 1.346478 -1.080595 0.863950 1.755701 -1.848903 -1.462981 -1.118484 -0.581509 -0.199092 -1.786679 0.727021 -1.248708 0.567313 0.897780 0.283853 -0.808235 0.945648 0.269613 0.285445 -0.222459 2.273447 3.444153 -1.786833 0.217733 -1.599584 1.078187 -2.850929 -2.041919 0.506798 -0.163476 -0.402095 0.497336 0.216767 1.499899 -0.082625 -0.130324 -0.250058 -0.421446 +PE-benchmarks/biconnectivity.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.650706 1.567372 2.280989 -2.983972 4.924957 2.762123 2.013060 -1.113980 -2.480392 -2.396289 -0.310901 -3.063355 -4.275604 5.316166 -1.999803 2.380266 6.959788 1.239636 -0.500672 -1.177404 4.935131 -2.857504 7.192676 5.071574 -5.752195 -0.207895 2.593519 2.558941 0.468686 4.657625 -2.159103 -3.948811 3.297978 -3.209615 1.802986 -3.619760 0.953896 -0.656002 0.224035 -6.872405 0.186864 -0.273736 -1.586412 -0.420407 -1.304945 2.907742 6.241337 4.392200 -2.396417 0.853138 3.285783 0.573049 -0.342453 2.136320 0.980405 0.967811 1.374731 1.187555 -3.214499 -1.159111 -1.890106 -4.963877 0.432809 4.596973 6.263118 0.032022 0.886518 2.708407 -1.918988 1.218749 0.934463 1.374598 2.237044 0.877559 3.999904 -5.119640 -1.278690 -9.046245 -2.823949 -12.268106 -3.406177 -4.209354 1.272106 -1.517667 3.332661 -0.319563 5.695496 0.974605 1.284478 3.019738 7.377012 -5.615081 -2.063487 -4.625995 -2.071562 0.930752 -3.420997 0.111889 2.940394 -1.659160 -4.270607 -4.354659 2.267624 1.402499 -1.456186 -3.583413 -1.075763 5.028590 -5.261597 -3.202089 -5.322424 -0.703434 -1.695606 -8.170906 0.565369 -1.292551 4.684111 1.049213 -0.111125 -4.653323 1.456412 5.344844 -1.426822 -3.829904 0.438283 5.497886 2.647063 0.674538 1.609162 0.194763 0.564965 5.921240 6.895107 -1.301965 -1.785182 -0.168364 -3.423354 0.249273 -3.250553 -1.028805 3.124998 -4.857885 0.180574 4.070173 -2.607780 -0.911731 4.083277 -1.600968 4.030087 12.455579 -1.237641 3.444725 1.139346 -6.397019 3.034949 -1.164282 -1.134284 1.464235 3.795217 1.688809 -6.475713 -4.401456 2.914710 4.514195 3.286061 -6.357697 -2.170002 -2.690032 0.756700 -1.071633 -0.982846 2.582771 -0.556174 -3.602503 -0.867302 2.488219 8.685601 -4.259521 -5.305028 3.382827 1.086933 -1.591783 -6.257775 -2.466450 -2.488671 0.011412 0.829577 -0.892422 2.003485 6.506519 -9.778941 4.438499 -1.900850 -2.097265 4.097099 0.104790 -1.864912 -5.529529 1.163674 5.270310 4.414616 1.117780 0.105923 -0.186912 -4.546434 0.376855 0.124570 2.918528 -1.055896 2.201782 -0.022251 -4.644537 -4.950241 -1.871032 -0.394363 -2.054874 -0.314482 1.934037 0.973964 -10.732516 6.364314 -1.275580 -1.932213 1.945550 -0.055278 4.068971 -4.732752 -7.104567 3.067623 -1.447310 -2.356395 -3.121952 0.952021 3.289272 0.722880 -0.335716 -2.476883 -7.231763 3.333208 -0.850085 3.195386 2.030909 3.169085 7.141443 0.560378 -3.464232 -5.562193 -2.116496 1.143256 -1.714361 -3.664344 -2.556135 -1.007224 4.997433 6.238059 0.114847 -0.396839 -1.420209 5.549174 -6.654250 -2.026226 5.281559 4.272763 -3.265422 1.541570 5.276570 -4.129249 -4.083779 -2.351917 -0.479049 -0.954632 -5.042350 0.954578 -3.524037 1.093328 2.366966 0.662233 -1.784501 2.010925 0.825883 1.317156 -1.737520 5.741298 8.365686 -5.522587 -0.434453 -3.729667 2.464038 -7.420249 -5.674196 1.987493 0.540649 -0.832928 1.310698 1.615921 3.581709 -0.550836 -0.914796 -0.533250 -2.426021 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/biconnectivity.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/biconnectivity.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/biconnectivity.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/biconnectivity.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/bfs.cpp__Graph::Graph(int) = -1.065045 -1.091240 0.397794 -2.880868 1.590059 1.126466 0.776590 -1.114850 -2.235303 -0.333864 1.324552 -1.360350 -1.092358 2.626712 -0.833288 1.475699 1.540103 -0.373644 -1.636414 -0.870990 2.513151 -0.978867 2.524549 1.468141 -2.523991 -0.288118 -0.348416 1.965832 0.763159 1.367521 0.353198 -0.049643 -0.269311 -0.934801 0.398762 0.069996 0.481554 0.487506 0.436485 -2.241242 0.554423 1.325369 0.997471 -0.619996 -0.761149 -0.442517 0.942338 2.202528 -0.172108 0.028468 2.385248 -0.212172 0.254844 0.396161 1.091862 0.104403 1.751852 -0.147152 -0.354071 -1.191988 -0.287479 -0.473503 0.887398 2.135641 2.535853 -0.430207 0.000705 1.018199 0.306452 1.410213 1.672500 0.332332 -1.194381 -0.648243 1.663784 -1.357908 0.333545 -2.394678 0.219915 -2.413931 -1.298022 0.206216 1.609627 0.843997 1.033075 -0.034750 2.249198 -0.040309 -1.122410 0.612685 1.333885 -0.613173 -0.760558 -1.308962 -1.725243 0.556193 -1.206310 -0.309625 0.768066 1.323558 -1.732910 0.551646 0.098295 0.998993 -1.158708 -0.611942 -0.292426 1.767619 -1.042306 -0.964747 0.473405 2.254369 -0.333811 -3.206310 -0.858204 -2.341069 -0.197264 -0.902446 -0.012082 -0.444756 0.158106 1.153668 -0.716948 -0.755397 -1.738925 1.345506 1.306281 0.662071 0.108552 0.217000 -0.035735 1.855967 0.307743 -1.159696 -0.664373 0.187220 -0.430331 1.204961 -0.557106 -0.530067 0.523422 -1.505518 -0.003106 0.517016 -0.424573 -0.342089 -0.073026 0.838113 0.543622 5.068871 -0.082308 2.282733 1.133219 -1.190609 1.033270 0.361715 0.382397 1.041877 0.874645 -0.985705 -1.441420 -2.059728 1.419178 1.784429 1.367234 -1.474311 0.167936 0.035512 -0.403690 -0.223470 -0.000430 0.289518 -0.232934 -1.315802 -0.611928 0.798850 3.012731 -0.651842 -2.021661 1.680521 1.186984 -1.618526 -1.404103 -0.755178 -1.279045 0.145343 -0.164566 0.190063 1.598327 2.504372 -2.521467 1.790185 0.073067 -0.349956 2.237067 -0.888105 -1.281493 -2.847615 -0.443117 0.233535 2.158615 -1.008885 -0.723917 0.786472 -1.919088 0.457762 -0.023938 -0.389713 -0.416701 0.986191 -0.699792 -0.522282 -1.071287 -0.750912 -1.111881 0.803972 -0.730959 0.868065 -0.103306 -2.042772 1.708602 -0.314217 -0.592377 0.148617 -0.107267 1.681541 -1.155550 -1.580943 1.102367 0.064346 -0.670224 -1.975229 0.390720 1.331388 0.007606 0.172596 -1.605902 -0.834893 1.423365 -1.842129 1.736998 0.873465 -0.303459 0.438122 1.510713 -0.286050 -1.386871 -0.637055 -0.261359 0.226648 -2.254418 -0.422969 -0.642164 1.821266 0.574819 0.202792 -0.753679 -0.188155 2.553901 -0.801211 -1.332272 0.844582 -1.008693 -1.756873 1.136931 1.594767 -1.346824 -0.107038 -1.598584 -0.262419 -1.243429 -2.015561 1.879096 1.106354 1.912102 -0.495679 0.887995 0.123995 0.569985 0.673676 -0.067161 -0.257990 3.177373 1.193679 -0.938137 -0.923121 -2.208999 1.318985 -1.535737 -1.358586 0.776772 -0.035305 -1.028146 0.538028 -0.298880 2.454892 0.663988 -0.151995 -0.460183 0.048109 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/bfs.cpp__Graph::addEdge(int, int) = -0.454251 0.014732 0.737724 -0.972307 0.719048 0.751984 0.286951 -0.568509 -0.833791 -0.270499 0.082470 -0.896132 -0.548274 1.184565 -0.622334 0.471466 1.539444 0.427119 -0.479657 -0.309499 0.865459 -0.210421 1.524448 1.421868 -1.094266 -0.095007 0.365177 0.856315 0.366998 0.911859 -0.474065 -0.587194 0.393821 -0.510509 0.172924 -0.832434 0.104214 0.100763 0.198484 -1.615454 0.160191 -0.052453 -0.142967 -0.165116 -0.075904 0.326587 1.103486 0.915913 -0.068903 0.141988 0.711291 0.390920 0.023148 0.270416 0.445985 0.306988 0.924477 -0.053131 -0.387082 -0.300005 -0.285318 -0.606537 0.108261 1.167968 1.311503 0.248529 0.019658 0.132022 0.034350 0.220839 0.354740 0.299018 -0.099247 0.520522 0.387399 -1.133039 0.468517 -1.526948 -0.185959 -1.624686 -0.612468 -0.443547 0.404118 0.108856 0.526793 0.056515 1.238147 -0.029719 0.015189 0.495658 1.422202 -1.070540 -0.401346 -0.576858 -0.599566 0.240514 -0.599605 0.101817 0.072012 0.217476 -0.847853 -0.683135 0.429039 0.374255 -0.429581 -0.077093 -0.010372 1.019889 -1.089876 -0.604593 -0.599520 0.263622 -0.221227 -1.669155 -0.319942 -0.782149 0.944887 0.009974 -0.426294 -1.047607 0.348574 0.935671 -0.272332 -0.425461 -0.493371 0.928113 0.524029 0.026143 -0.065022 -0.014139 0.151247 1.239612 0.698412 -0.590751 -0.053584 0.100201 -0.742685 0.011652 -0.758564 -0.206041 0.205106 -0.941423 -0.022334 0.882624 -0.662793 -0.125993 0.428439 0.012067 0.577855 3.354099 -0.293393 0.896381 0.533574 -1.216236 0.386493 -0.142657 -0.047121 0.254260 0.537465 0.389814 -1.655034 -0.963328 0.618786 1.179090 0.758463 -1.056510 -0.124293 -0.394841 -0.071765 -0.070947 0.100419 0.264635 -0.361278 -0.717938 -0.339809 0.546513 1.880693 -0.527294 -1.090521 0.422884 -0.085707 -0.376152 -0.967412 -0.337365 -0.233656 0.212137 0.176298 -0.070018 0.629806 1.382166 -2.073271 1.079765 -0.177932 -0.403914 1.186560 -0.056876 -0.568270 -0.704173 0.003596 0.925696 1.081285 -0.007391 -0.187303 0.234428 -1.096552 -0.119598 0.119038 0.557740 -0.477375 0.555793 0.535116 -0.981104 -0.798941 -0.350340 0.003859 -0.381989 -0.375710 0.597345 -0.309046 -2.042930 1.291191 0.062449 -0.275016 0.364273 -0.286141 0.636042 -1.128742 -1.245923 0.550594 -0.053018 -0.328843 -0.525010 0.048870 0.779591 0.147165 0.357933 -0.935953 -1.111113 0.570698 -0.359412 0.836117 0.408109 0.311575 0.919589 0.114779 -0.242586 -0.918799 -0.317622 0.227053 -0.076549 -0.771479 -0.253344 -0.276032 1.017717 1.198326 -0.119514 -0.293843 -0.100879 1.209096 -0.957608 -0.364021 0.666630 0.512789 -0.829413 0.195930 0.806882 -0.994268 -0.518365 -0.478781 -0.497277 -0.331114 -0.905421 0.603949 -0.399135 0.487806 0.330245 0.134013 -0.377564 0.466565 0.239347 0.128229 0.276984 1.278304 1.380350 -0.438043 0.124082 -1.015523 0.609952 -1.459528 -1.072124 0.343748 -0.103585 -0.470185 0.143912 0.015477 0.999450 0.159948 -0.046817 -0.062838 -0.077551 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::push_back(int const&) = -0.393401 0.422519 1.031386 -1.031333 0.911656 0.566330 0.289656 -0.279628 -0.773459 -0.525266 -0.148460 -0.897224 -0.903899 1.280504 -0.616633 0.073999 1.790952 0.501754 -0.302807 -0.413763 0.851887 -0.381816 1.574160 1.505993 -1.357415 -0.030149 0.664674 0.861908 0.356394 1.202490 -0.612930 -0.953458 0.365006 -0.118637 0.544261 -0.984653 0.119830 -0.152330 -0.193692 -1.907424 0.155767 -0.015483 -0.204815 -0.182168 -0.031300 0.779597 1.547288 0.969966 -0.421378 -0.029383 0.874053 0.620141 -0.097963 0.297384 0.378952 0.174232 1.031777 0.169529 -0.481999 -0.155502 -0.293692 -0.832648 0.017336 1.302350 1.489585 0.233028 0.090516 0.007296 -0.041530 0.269086 0.155668 0.281825 0.394614 0.619241 0.531091 -0.970691 0.242467 -2.185488 -0.192089 -2.616972 -0.754199 -0.842108 0.533092 -0.078097 0.281471 -0.102190 1.382458 0.134932 0.371358 0.607444 1.754056 -0.984465 -0.436997 -0.858633 -0.801377 0.442703 -0.636845 0.104814 0.202661 0.027407 -0.937050 -0.945297 0.461861 0.185601 -0.488910 -0.001059 -0.093111 1.121425 -1.237884 -0.317652 -1.042174 0.074072 -0.001614 -1.868447 -0.179050 -0.785787 1.111922 0.056561 -0.349325 -0.966815 0.316298 1.033208 -0.484618 -0.318287 -0.754878 1.269090 0.517544 -0.075629 0.042366 -0.180365 0.280622 0.961390 0.974930 -0.665891 -0.209115 0.093297 -0.913571 -0.285879 -1.050647 -0.113064 0.664561 -0.889177 0.120973 0.784143 -0.762436 -0.322448 0.525266 -0.447182 0.868483 3.416189 -0.418630 0.818023 0.264811 -1.401633 0.626074 0.021844 -0.357153 0.243614 0.811920 0.630133 -1.440099 -1.010450 0.605399 1.272015 0.837819 -1.148896 -0.197742 -0.512979 -0.207236 -0.164074 0.156924 0.268295 -0.507400 -0.738695 -0.435400 0.615118 1.914148 -0.449047 -1.544312 0.355047 0.286026 -0.283268 -0.909225 -0.256530 -0.189793 0.222384 0.197102 -0.242304 0.853825 1.563733 -3.006717 1.193289 -0.108337 -0.541645 1.076828 -0.167630 -0.449786 -1.052387 0.368348 1.265526 1.273501 0.190920 -0.134402 0.039200 -1.167345 -0.168691 0.086990 0.810292 -0.584731 0.563585 0.487927 -1.173862 -1.013237 -0.690934 -0.063023 -0.385776 -0.485327 0.511122 -0.174620 -2.768394 1.648919 -0.130720 -0.191598 0.176767 -0.382907 0.517944 -1.317703 -1.511133 0.446208 -0.096081 -0.477232 -0.646495 -0.000830 0.949210 -0.083431 0.456571 -0.878972 -1.521547 0.725538 -0.311385 0.837731 0.488394 0.599123 1.310276 0.380108 -0.267713 -1.117797 -0.289140 0.571623 -0.237513 -0.781671 -0.017482 -0.380949 0.971460 1.535718 -0.270168 -0.175254 -0.264594 1.297858 -0.996112 -0.491824 0.806547 0.446839 -0.700777 0.378291 0.955423 -1.064124 -0.897462 -0.774836 -0.441146 -0.216755 -1.102292 0.437810 -0.726183 0.309425 0.667349 0.027998 -0.656052 0.586144 0.153043 0.024624 0.135450 1.306914 1.819926 -0.839331 0.431610 -1.036537 0.682646 -1.754411 -1.204426 0.264368 -0.371827 -0.333964 0.150210 -0.107557 0.890154 -0.132064 0.233602 -0.089607 -0.109375 +PE-benchmarks/bfs.cpp__Graph::BFS(int) = -3.151393 -0.000155 3.504192 -7.880344 7.414660 5.411759 2.711661 -2.497283 -6.767415 -3.234540 0.966513 -8.365529 -5.318553 10.099516 -3.919133 4.482216 12.013293 1.736072 -3.023211 -0.518708 7.822144 -0.883963 11.530794 8.819888 -8.755268 -0.824930 -0.282851 5.634004 0.853045 6.311623 -0.228890 -6.646839 3.431179 -3.692162 0.400724 -5.153961 1.900995 1.007695 1.141800 -12.345588 1.757807 2.836541 -1.265730 -1.860484 -1.417542 1.775157 8.729858 7.661708 -2.845241 0.667744 5.626551 2.906253 -0.790874 2.859361 0.774559 -0.319802 1.866055 -2.400157 -5.152221 -3.397639 -1.859360 -5.003556 0.936353 8.317211 10.343111 1.187293 0.698018 3.623702 -0.579393 2.538537 3.289456 1.606124 0.792899 1.802206 4.622259 -4.958643 -0.591171 -10.987152 -2.072356 -14.821296 -5.348018 -3.143100 5.657137 4.287705 2.974414 -2.499380 8.876751 -0.047606 0.274053 8.432760 11.201667 -6.703801 -3.541256 -7.851273 -5.463983 2.879576 -4.890974 -0.276999 1.330693 1.616586 -7.241413 -4.192336 0.867413 2.028046 -2.681516 -3.513934 0.298223 7.671649 -8.548946 -4.338716 -3.425033 4.715121 -0.992509 -13.592350 -3.062529 -4.222830 4.595947 0.220640 -0.916287 -5.651736 1.812461 5.425132 -2.737764 -2.640831 -5.483772 8.082527 3.659395 1.617221 1.407395 0.981805 1.480265 9.221838 4.421007 -3.963783 -1.186685 -0.187177 -2.805766 1.292700 -5.204827 -2.070297 2.433603 -7.932521 0.036597 6.432762 -4.643039 -2.718322 -1.270128 -0.303240 4.846969 23.611982 -1.155512 7.934726 4.174210 -9.666099 3.805587 -1.443659 -1.313260 1.712358 3.874739 2.027037 -8.975107 -7.669170 5.216240 7.973871 6.477837 -7.312021 0.330214 -2.153211 -0.519578 -1.310370 -0.350482 3.562247 -1.328449 -6.826885 -2.046813 5.555689 14.780136 -2.733125 -6.023472 5.620681 3.634534 -2.486592 -6.153393 -3.367568 -2.148826 0.394134 3.054366 -0.932003 4.674115 11.245367 -14.201807 7.704773 0.716728 -0.921128 5.743934 -0.532844 -5.687966 -8.224880 -1.101941 7.975500 8.910269 -1.046582 0.466553 0.802202 -7.298133 0.264304 1.859942 2.409085 -1.484567 3.262670 0.500396 -5.874282 -6.408133 -2.062074 -2.702295 -0.689740 -2.627907 4.020688 1.207888 -12.844452 10.174681 -1.263094 -2.438528 1.254345 -1.834895 7.427826 -7.815150 -9.894226 4.555688 -2.003236 -5.502741 -4.626362 1.632719 5.328950 1.969429 1.520715 -4.845430 -9.689703 5.851377 -2.065403 5.787866 3.435665 2.334754 7.509934 2.648216 -3.314467 -7.118082 -6.783247 2.805575 -0.592923 -6.738901 0.055666 -2.007917 7.789595 7.721279 -1.002476 -4.900755 -1.189854 9.095879 -5.908567 -3.457896 7.037205 0.454540 -7.402442 2.268974 8.246611 -7.553798 -3.069670 -4.995916 0.459102 -2.865314 -7.480258 3.155963 -1.307603 2.957480 2.364530 1.210272 -3.190091 2.897595 2.483184 0.565004 -0.082368 11.584482 8.764879 -4.494073 0.699185 -7.297888 4.082759 -11.671885 -9.332674 3.273231 -1.244784 -2.714355 2.027912 0.284280 7.381480 0.179092 0.515585 -1.039641 -0.400850 +PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::empty() const = -0.167610 0.627513 0.651503 -0.818618 0.959460 1.236992 0.173293 -0.538589 -0.506356 0.029383 -0.089901 -1.087780 -0.502333 0.908061 -0.438421 0.262909 1.106240 -0.019048 -0.384495 0.145076 0.376926 0.555666 1.043779 0.793366 -0.724745 0.116141 0.315410 0.207562 -0.382112 1.264434 -0.822887 -1.336838 0.044645 0.153010 0.052215 -0.094324 -0.183640 -0.452108 0.359550 -1.065493 0.143770 0.520021 -0.112585 -0.315664 0.025624 -0.758372 1.354832 0.543998 0.147768 -0.347794 0.365875 0.711714 -0.061571 0.115548 0.746578 0.359265 1.238089 -0.125575 -0.343860 -0.364924 -0.308242 0.457506 -0.356887 0.918178 0.761458 0.395989 -0.144803 -0.171153 -0.141566 0.074162 -0.150274 0.272399 -0.037412 0.977541 -0.016209 0.072212 0.481707 -0.438814 0.067751 -0.108664 -0.530634 -0.277454 -0.175254 0.597419 0.496897 -0.297353 0.952291 -0.275955 0.142677 -0.114102 1.400388 -0.710327 -0.228371 -0.441388 -0.710767 -0.017016 -0.181081 0.067749 -0.313482 -0.296743 -0.729674 -0.667784 0.152464 0.345373 -0.303594 0.378023 0.150189 0.575406 -0.407493 -0.259356 -0.259430 0.279151 -0.195074 -1.291882 -1.143470 -0.292403 -0.373317 -0.011189 -0.514781 -1.241621 0.429346 0.728967 -0.573643 -0.405938 -0.255581 0.677365 0.585902 0.061833 -0.027089 -0.288038 0.564082 0.979806 0.134029 -0.443416 0.224333 -0.313182 -0.068969 -0.133486 -0.252373 0.038530 -0.824400 -0.448602 0.176566 1.017433 -0.476696 0.312528 -0.781077 -0.262523 0.350132 2.782466 -0.694023 0.718283 -0.000700 -1.229020 0.415960 0.001805 -0.580910 -0.460135 0.202022 0.770728 -0.898290 -0.628168 0.893229 0.938292 0.529087 -0.477963 0.499144 -0.165569 -0.322598 -0.211199 0.329845 0.080404 -0.171598 -0.607049 -0.447323 0.533756 1.688963 -0.311957 -1.792106 0.541533 0.260435 0.249867 0.205905 -0.204069 -0.431159 0.228387 0.387991 -0.270685 0.764033 1.065419 -1.778485 0.864467 0.192725 -0.939811 1.362484 -0.167032 -0.366013 0.476047 0.055034 1.068666 0.770032 0.079472 -0.203633 -0.376834 -0.678542 -0.171851 0.065822 0.399973 -0.498065 0.403705 0.418554 -1.170636 -0.634014 -0.719772 -0.081241 -0.516077 -0.896197 0.308827 -0.072611 -1.637559 1.380131 0.685662 0.156449 0.013623 -0.500953 0.195129 -0.650197 -1.015561 0.278935 -0.242857 0.065855 0.423850 -0.146348 0.386211 0.511792 1.072223 -0.954310 -0.789164 0.372368 0.261648 0.883994 0.353352 0.540092 0.101564 0.336831 -0.091501 -0.381088 -0.664702 0.841786 0.367206 -0.692844 -0.095251 -0.530306 0.774421 0.680335 -0.243373 -0.433766 -1.120243 0.507745 -0.286855 0.318502 0.461009 -0.467354 -1.023390 -0.634488 0.623088 -0.092564 -0.426562 -0.415620 -0.285128 -0.868408 -0.780438 -0.019592 -0.202891 0.085377 0.530957 -0.406559 -0.583794 0.064658 0.035208 -0.168338 0.383482 0.531790 -0.025707 -0.252295 0.540100 -0.768083 0.531349 -1.091663 -0.998340 0.542412 -0.929124 -0.694705 -0.342618 -0.211559 0.533064 -0.293789 0.560182 0.087071 -0.056929 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::front() = -0.276527 0.339518 0.694684 -0.649110 0.556123 0.210757 0.187673 -0.188467 -0.466886 -0.477250 -0.099051 -0.741343 -0.723045 0.839846 -0.428501 -0.041527 1.120187 0.298975 -0.189800 -0.264187 0.472679 -0.267508 1.013599 0.958349 -0.862348 -0.028769 0.348972 0.595129 0.217602 0.775555 -0.274540 -0.656308 0.224281 0.127533 0.429160 -0.550891 0.094569 -0.101851 -0.280512 -1.190947 0.095747 0.138543 0.066350 -0.125447 -0.012680 0.576875 1.041888 0.644977 -0.242158 -0.107585 0.552586 0.417359 0.003132 0.217975 0.240784 -0.098033 0.705016 -0.117414 -0.367590 -0.107310 -0.200836 -0.634864 -0.066215 0.875171 0.995896 0.184838 0.075603 -0.055401 -0.083518 0.250253 0.070041 0.188978 0.307372 0.454391 0.302820 -0.423809 0.247888 -1.297919 -0.119302 -1.803540 -0.492870 -0.546030 0.420968 0.209389 0.065920 -0.095944 0.903763 0.200660 0.234338 0.378776 1.214332 -0.537928 -0.292189 -0.520879 -0.512777 0.336294 -0.432934 0.107992 0.098670 0.168894 -0.617473 -0.471363 0.241865 0.026684 -0.308196 0.146639 -0.072428 0.678612 -0.869299 -0.045890 -0.673001 -0.030792 0.148480 -1.247731 -0.019537 -0.492133 0.582210 0.024465 -0.220880 -0.470832 0.218741 0.533858 -0.300199 -0.059339 -0.892742 0.833680 0.232688 -0.054458 0.026825 -0.053603 0.210884 0.493241 0.477646 -0.433151 -0.143904 -0.004483 -0.575321 -0.178813 -0.638333 -0.080224 0.486395 -0.565537 0.077955 0.402376 -0.490094 -0.309096 -0.003505 -0.357450 0.580847 1.900457 -0.291787 0.525178 0.177499 -0.888393 0.407335 0.009526 -0.271154 0.099753 0.509754 0.450701 -0.593416 -0.679136 0.459155 0.837323 0.543978 -0.584566 -0.007722 -0.254445 -0.105871 -0.160812 0.149634 0.199782 -0.367578 -0.485493 -0.300380 0.420680 1.089351 -0.175353 -0.883976 0.253805 0.186895 -0.076287 -0.474688 -0.134488 0.009350 0.140440 0.024394 -0.140197 0.518730 1.030928 -1.907772 0.811213 0.086821 -0.267148 0.694126 -0.240889 -0.311698 -0.818543 0.268544 0.884516 0.767808 0.083498 -0.098775 -0.042750 -0.765480 -0.124500 0.037628 0.544069 -0.385943 0.346813 0.262011 -0.700921 -0.717590 -0.559422 -0.035993 -0.164507 -0.364170 0.339332 0.068305 -1.696070 1.138329 -0.133183 -0.118267 -0.058260 -0.254097 0.239197 -0.867920 -0.952972 0.179250 -0.238728 -0.486591 -0.484459 0.024898 0.540026 -0.168442 0.202948 -0.499539 -0.802127 0.553586 -0.230017 0.509107 0.299920 0.462894 0.788985 0.502007 -0.174526 -0.614768 -0.111183 0.319363 -0.289928 -0.498559 0.244499 -0.221340 0.576680 1.013756 -0.214890 -0.131047 -0.045931 0.793414 -0.455336 -0.462694 0.539639 0.017191 -0.432171 0.343283 0.614885 -0.653626 -0.604099 -0.617728 -0.288633 -0.164773 -0.777845 0.228712 -0.464047 0.139610 0.494966 -0.047923 -0.508852 0.396001 0.111473 -0.061102 0.099580 0.889929 1.047668 -0.499642 0.394209 -0.700517 0.389289 -1.168839 -0.765420 0.194717 -0.206584 -0.157151 0.063708 -0.120150 0.524684 -0.100431 0.151238 -0.123221 0.009653 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::pop_front() = -0.439639 0.538190 1.052768 -1.044385 1.166846 0.772363 0.342810 -0.256146 -0.786158 -0.625456 -0.209341 -1.075177 -1.174751 1.451994 -0.659816 0.154708 1.913293 0.443491 -0.307658 -0.321619 0.935501 -0.284010 1.746860 1.447828 -1.442866 -0.048819 0.629264 0.867406 0.166829 1.415790 -0.668499 -1.268671 0.475841 -0.061155 0.533719 -0.920782 0.178131 -0.224393 -0.277088 -1.954334 0.143982 0.170268 -0.348942 -0.202310 -0.091330 0.733196 1.751370 1.086929 -0.429075 -0.087484 0.875846 0.660449 -0.130685 0.393558 0.371714 0.116860 0.938803 0.007219 -0.693344 -0.244421 -0.374993 -0.952699 -0.139142 1.353943 1.595852 0.221013 0.105822 0.127209 -0.245492 0.328691 0.114200 0.293482 0.580245 0.660032 0.631278 -0.722043 0.067675 -2.039883 -0.298238 -2.730564 -0.823811 -0.995634 0.525408 0.149793 0.324627 -0.282186 1.550306 0.144555 0.376569 0.702852 2.037348 -1.137098 -0.510356 -1.104954 -0.769246 0.418677 -0.758518 0.041073 0.210298 -0.042394 -1.049161 -1.027748 0.357820 0.146136 -0.473409 -0.104769 -0.186328 1.275017 -1.402922 -0.330298 -1.247954 0.085400 0.012085 -2.084790 -0.350890 -0.582505 1.004391 0.116024 -0.291494 -1.038752 0.426833 1.145481 -0.545743 -0.418470 -0.701539 1.422359 0.562216 -0.092049 0.151896 -0.082588 0.363891 1.119475 1.121390 -0.632379 -0.311544 0.033390 -0.848173 -0.259609 -1.019715 -0.082143 0.525859 -1.045102 0.186868 0.960934 -0.801853 -0.319490 0.152413 -0.554518 1.002571 3.484702 -0.512572 0.839428 0.179261 -1.608775 0.730236 -0.064223 -0.485664 0.133070 0.805286 0.733770 -1.343728 -1.108380 0.826371 1.353894 0.924652 -1.236981 0.003447 -0.576738 -0.099906 -0.314991 0.133968 0.498542 -0.464525 -0.805770 -0.468820 0.684340 2.148091 -0.592265 -1.786244 0.615522 0.350978 -0.158524 -0.856441 -0.355320 -0.147046 0.120019 0.375787 -0.281570 0.855993 1.757985 -3.009340 1.304214 -0.006821 -0.657876 1.157811 -0.239885 -0.429086 -0.923483 0.321603 1.511479 1.354675 0.281021 -0.116807 -0.148104 -1.245284 -0.116064 0.146707 0.899320 -0.495956 0.561021 0.408366 -1.285855 -1.184144 -0.852732 -0.134511 -0.382826 -0.572806 0.516356 -0.032262 -3.027705 1.895698 -0.144285 -0.183445 0.140880 -0.330042 0.683079 -1.371182 -1.746852 0.554448 -0.269909 -0.693658 -0.613433 0.073007 0.964430 0.047457 0.478848 -0.866102 -1.712087 0.886567 -0.145921 0.915903 0.489819 0.787576 1.455484 0.498300 -0.457161 -1.138468 -0.559001 0.772566 -0.310571 -0.828368 0.054647 -0.354714 1.123903 1.608972 -0.250318 -0.267211 -0.495739 1.350903 -1.085527 -0.499251 1.033394 0.424979 -0.829058 0.379953 1.175232 -1.044446 -1.063414 -0.866960 -0.310754 -0.395299 -1.294275 0.257215 -0.855359 0.240945 0.836420 -0.005075 -0.809312 0.556757 0.175705 -0.043900 -0.019493 1.484720 1.842299 -1.031542 0.554285 -1.126607 0.783303 -1.946823 -1.400911 0.398158 -0.453929 -0.306091 0.150170 -0.045802 0.871087 -0.254030 0.224851 -0.146338 -0.257153 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/bfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/bfs.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/bfs.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::~list() = -0.142496 -0.006886 0.317486 -0.347641 0.241475 -0.040258 0.100963 -0.029726 -0.361178 -0.232411 -0.045503 -0.206426 -0.228534 0.424989 -0.219002 0.041678 0.622626 0.325616 -0.055431 -0.247810 0.257306 -0.273929 0.531054 0.566406 -0.458769 -0.001610 0.135242 0.395144 0.195975 0.413706 -0.082882 -0.237680 0.144887 -0.029004 0.206466 -0.512567 0.081224 0.163278 -0.133717 -0.745185 0.082408 -0.027549 0.116181 -0.009135 0.025020 0.375471 0.355149 0.338157 -0.142968 0.186537 0.339810 0.252218 0.022198 0.130993 0.066454 0.095011 0.299905 -0.156286 -0.164571 0.026923 -0.066738 -0.449210 0.072432 0.397067 0.549410 0.018373 0.058044 -0.056211 -0.009367 0.143887 0.203785 0.059641 0.017932 0.035077 0.153559 -0.391200 0.090265 -0.844867 -0.047468 -1.144426 -0.246509 -0.287940 0.377765 0.072227 0.021867 0.109250 0.458548 0.064729 0.119443 0.230264 0.446681 -0.267342 -0.160411 -0.204939 -0.231904 0.241287 -0.232367 -0.043234 0.054130 0.217622 -0.259382 -0.271889 0.243345 0.004048 -0.175770 -0.001443 -0.061295 0.395971 -0.605843 -0.138408 -0.367416 0.113275 0.028203 -0.531540 0.128434 -0.370042 0.480117 0.014608 -0.077975 -0.159828 0.079755 0.260394 -0.122377 0.019327 -0.457445 0.353375 0.054865 -0.084869 -0.003011 -0.049724 -0.055232 0.287008 0.249227 -0.290101 -0.112629 0.185086 -0.308146 -0.089886 -0.462957 -0.089893 0.300432 -0.361981 0.097983 0.092266 -0.276203 -0.236728 0.176608 -0.103888 0.298868 0.871433 -0.040059 0.253188 0.195447 -0.361864 0.125013 0.036087 0.029104 0.233533 0.336383 0.055808 -0.253265 -0.361969 0.030085 0.388586 0.302783 -0.282095 -0.232294 -0.207097 -0.019218 0.098284 0.037901 0.073372 -0.239673 -0.237845 -0.109909 0.050704 0.532419 0.002781 -0.219780 0.030326 0.122766 -0.288281 -0.353513 -0.074941 -0.070793 0.070800 -0.022387 -0.057401 0.206706 0.506824 -1.072461 0.423545 -0.075727 -0.000622 0.198041 -0.064849 -0.113830 -0.593519 0.066282 0.279267 0.528601 -0.035282 0.094237 0.185385 -0.410237 -0.058192 -0.006299 0.276597 -0.217964 0.175504 0.205645 -0.333010 -0.256694 -0.122889 0.014680 -0.082074 -0.070043 0.190397 0.092685 -0.928899 0.386325 -0.201859 -0.129715 0.149259 -0.000866 0.208051 -0.456587 -0.407662 0.135644 0.042754 -0.207567 -0.328401 0.030849 0.390417 -0.225311 0.037852 -0.163602 -0.352471 0.218949 -0.190571 0.157976 0.171171 0.061269 0.423451 0.067987 -0.074834 -0.325217 0.072154 0.014631 -0.284561 -0.099683 0.183056 -0.100877 0.279758 0.595344 0.043391 -0.066233 0.173128 0.581138 -0.256803 -0.242130 0.289340 0.127251 -0.057872 0.349830 0.329463 -0.532538 -0.303885 -0.261666 -0.059285 0.145665 -0.257252 0.322656 -0.255489 0.168395 0.148202 0.105643 -0.245396 0.300422 0.082426 -0.018083 0.003753 0.569341 0.619033 -0.171699 0.201539 -0.268930 0.108235 -0.545025 -0.229004 -0.111149 0.025144 -0.134570 0.196071 -0.123380 0.365630 0.019645 0.142226 -0.059017 -0.033206 +PE-benchmarks/bfs.cpp__main = -1.163684 0.177621 2.582299 -3.345503 2.816891 1.145024 1.202365 0.034414 -3.411353 -2.252000 0.134247 -3.790534 -3.221741 4.485250 -1.621606 0.307500 5.749820 1.652028 -1.200031 -0.918874 2.387926 -0.767843 4.946339 4.640544 -3.847547 0.047088 -0.320256 2.756467 0.480172 3.364672 -0.034141 -3.285512 1.249924 0.107159 1.151983 -2.685029 0.200184 0.316510 -1.303031 -6.310732 0.728563 2.082487 -0.132235 -0.679370 0.213882 2.529799 4.278721 3.149241 -1.001345 0.714183 2.203908 1.380412 0.219941 1.062320 0.956534 -0.410603 1.603250 -1.263562 -2.411120 -0.508415 -1.056397 -3.184462 -0.256842 3.648392 4.478868 0.493611 -0.148853 -0.220757 -0.110422 1.439914 1.390296 0.848241 1.337128 0.725400 1.936760 -1.058884 0.035498 -5.020158 -0.261587 -8.596104 -2.739185 -1.712744 4.372482 2.269229 -0.143529 -1.607494 4.277370 -0.111802 0.415873 3.408975 5.134768 -2.075654 -1.644560 -2.787982 -2.149665 1.690945 -1.905248 -0.287541 0.738352 1.185016 -3.275276 -1.246415 0.704567 -0.161120 -1.388940 0.161084 -0.070145 3.816709 -4.618537 -0.507667 -2.689542 2.058126 1.128546 -5.695246 -1.151337 -1.880211 2.239972 0.600118 -1.365986 -1.064197 1.339281 1.531058 -1.552889 0.260199 -3.920805 4.096786 0.639603 0.248906 0.420439 0.826854 0.616913 2.600228 1.982846 -2.002167 -0.262546 0.543973 -1.433898 0.144585 -2.482514 -0.786268 1.445206 -3.031258 0.406716 1.331782 -2.476407 -1.816995 -1.865643 -0.371708 2.056287 9.301852 -1.003867 3.391495 1.647148 -3.668911 1.921473 0.009999 -0.514686 0.734935 2.437276 1.334525 -2.425796 -3.143379 2.086796 4.111126 2.899205 -3.068627 0.701183 -0.837314 -0.247451 -0.463392 0.938248 1.056771 -0.407024 -2.685992 -1.090390 1.907861 5.831934 -0.598588 -4.065505 1.238174 1.279335 -0.325841 -1.910603 -0.626412 0.421312 0.371552 1.094659 -0.604809 2.254283 4.975818 -7.802002 4.011047 0.390481 -0.488686 2.796730 -0.402383 -1.915923 -4.149649 -0.509664 3.359774 4.709320 0.346836 -0.675675 0.319636 -3.567938 -0.325055 0.730787 1.750047 -1.320792 1.871702 0.500351 -2.424722 -2.457777 -2.529825 -0.783209 0.217874 -1.751893 1.781846 0.708556 -7.111902 4.412028 -0.550587 -0.981989 -0.354693 -0.476665 2.214243 -3.557182 -4.438525 1.186652 -1.130170 -4.062814 -2.542452 -0.012061 2.417788 0.064314 0.679936 -1.895368 -3.861396 3.853216 -0.984683 3.146454 1.711783 0.739083 4.204992 2.697818 -1.405115 -2.286309 -2.445068 2.072213 -1.597171 -2.085482 1.347953 -1.271751 2.674342 3.984230 -0.401073 -1.700209 -0.715552 4.470703 -2.074804 -1.963102 3.033601 -0.570050 -1.748296 2.607234 3.676629 -3.734202 -1.727005 -3.002344 -0.580980 -0.884806 -2.814297 1.693473 -1.453496 1.075508 1.334374 0.291738 -2.190367 1.412284 0.663980 -0.597498 0.202779 5.233970 4.846861 -2.303723 1.967067 -3.172051 2.252760 -4.997019 -3.344071 0.396212 -0.675081 -1.115057 0.697714 -0.576216 2.728253 0.230550 -0.222340 -1.196490 0.844432 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::~_List_base() = -0.394564 0.293662 0.788808 -0.897689 0.989896 0.700204 0.309620 -0.139338 -0.774064 -0.500634 -0.197127 -0.875599 -0.899108 1.294235 -0.517137 0.284531 1.744904 0.499320 -0.242340 -0.244828 0.836370 -0.386640 1.548288 1.281021 -1.188268 -0.046985 0.482152 0.795431 0.067936 1.285005 -0.498619 -1.171529 0.417321 -0.147345 0.412566 -0.966251 0.196897 0.030123 -0.188441 -1.839345 0.172320 0.168721 -0.197479 -0.187667 -0.088967 0.518839 1.445307 0.958686 -0.370387 0.054348 0.719999 0.560143 -0.089287 0.369990 0.270076 0.232645 0.678578 -0.120852 -0.659014 -0.183737 -0.296722 -0.873505 -0.032282 1.079811 1.440937 0.128736 0.102463 0.146575 -0.217407 0.305095 0.216143 0.194950 0.366681 0.349846 0.530696 -0.716087 -0.032881 -1.905382 -0.232593 -2.484585 -0.705614 -0.818229 0.573652 0.271887 0.300177 -0.266614 1.317908 0.018891 0.308396 0.706039 1.709376 -0.975754 -0.463356 -1.006152 -0.635476 0.416353 -0.655764 -0.129787 0.284393 0.015639 -0.876921 -0.967575 0.404887 0.149804 -0.394544 -0.245728 -0.152096 1.142969 -1.275528 -0.450764 -1.045777 0.231731 -0.067877 -1.786709 -0.170936 -0.545223 0.766726 0.129097 -0.211583 -0.943663 0.361467 1.013067 -0.455577 -0.363537 -0.593106 1.254700 0.396031 -0.135476 0.169362 -0.064404 0.182446 1.093651 0.988766 -0.591744 -0.281610 0.177188 -0.737660 -0.203036 -0.972974 -0.171029 0.386742 -1.010663 0.129495 0.843239 -0.712169 -0.252439 0.139487 -0.376039 0.863522 3.140835 -0.357422 0.715351 0.227198 -1.412501 0.751395 -0.018803 -0.329740 0.181930 0.720243 0.488476 -1.241606 -0.969785 0.583047 1.121449 0.850135 -1.081377 -0.159475 -0.571514 -0.034985 -0.136380 0.075992 0.462352 -0.388500 -0.735900 -0.356299 0.517515 2.018433 -0.450233 -1.343386 0.546646 0.401697 -0.350035 -0.947834 -0.342089 -0.319222 0.036917 0.284308 -0.258015 0.674553 1.512907 -2.578988 1.152247 -0.056802 -0.469288 0.956411 -0.214476 -0.356262 -1.076661 0.146066 1.277980 1.365828 0.125603 0.044369 -0.030431 -1.057462 -0.072040 0.113684 0.725409 -0.383333 0.463749 0.266112 -1.159000 -0.910605 -0.604121 -0.176539 -0.385746 -0.439235 0.438270 0.189853 -2.570550 1.569609 -0.198596 -0.179353 0.287581 -0.136135 0.719448 -1.154737 -1.531575 0.531107 -0.110885 -0.560042 -0.554491 0.102408 0.904639 -0.011280 0.352723 -0.603554 -1.575143 0.724881 -0.153180 0.726415 0.423200 0.520528 1.238239 0.419794 -0.439571 -1.024145 -0.538194 0.521804 -0.361268 -0.596091 0.023225 -0.290929 1.000119 1.380072 -0.063431 -0.293543 -0.390013 1.339546 -0.939905 -0.393308 0.956914 0.337007 -0.713725 0.352055 1.090578 -1.094052 -0.882145 -0.715493 -0.077790 -0.207722 -1.091782 0.302513 -0.716003 0.241416 0.622036 0.030834 -0.677706 0.492617 0.241952 -0.072383 -0.096430 1.474519 1.509476 -0.791403 0.483278 -0.885280 0.567217 -1.703286 -1.132662 0.195465 -0.258894 -0.349066 0.259348 0.069424 0.788183 -0.215632 0.298600 -0.119954 -0.321288 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_clear() = -1.162899 1.259698 1.688999 -2.251529 3.340724 3.097066 0.929192 -0.648315 -1.719172 -1.308609 -0.685556 -2.785202 -2.794579 3.861390 -1.220138 1.664510 5.025982 0.712428 -0.670426 -0.139906 2.899773 -1.241704 4.647870 3.100282 -3.286227 -0.232474 1.983458 1.759498 -0.392902 3.626712 -1.875500 -3.902127 1.442039 -1.407650 0.874656 -2.212333 0.691988 -0.407591 0.191107 -4.855528 0.337983 0.269628 -1.325068 -0.716924 -0.879306 0.726026 4.778776 2.844370 -1.182612 -0.280921 1.846741 1.001870 -0.533665 1.166640 0.726192 0.894530 1.406362 0.322220 -2.244385 -0.901193 -0.934189 -2.301616 -0.165944 2.946776 4.079067 0.224160 0.296230 1.676381 -1.080567 0.632215 0.143074 0.594748 1.331939 1.108229 1.898634 -2.628446 -0.770671 -5.491011 -1.211136 -6.813650 -2.017872 -2.488772 0.484370 0.227438 1.705251 -1.043734 3.841303 -0.129405 0.840597 2.151367 5.651166 -3.591887 -1.428887 -3.691622 -1.561575 0.733111 -2.080129 -0.493643 1.524318 -1.034299 -2.672954 -3.420207 1.186932 0.905102 -0.980284 -1.918040 -0.518860 3.324765 -3.204326 -2.026093 -3.240658 0.112546 -0.912016 -5.648064 -0.559188 -0.612151 1.776274 0.604394 -0.334768 -4.029707 1.151899 3.774714 -1.284904 -2.246362 0.045161 3.902384 1.611398 -0.097582 0.965644 -0.019235 1.050765 4.203757 3.932797 -1.260243 -1.002126 0.076502 -2.181166 -0.434199 -2.303331 -0.709256 0.708808 -3.252618 0.088696 3.567299 -1.916469 -0.021252 1.170183 -1.232305 2.606979 10.044188 -1.163049 1.915580 0.183576 -4.826092 2.732566 -0.597238 -1.551381 -0.043204 1.794829 1.792675 -4.825833 -2.782168 2.368824 3.158067 2.434943 -3.928217 -0.528005 -1.855848 0.188967 -0.764109 -0.232393 1.952685 -0.657731 -2.222930 -0.958173 2.015556 6.960402 -2.433391 -4.154811 2.513448 1.095031 -0.750588 -3.790711 -1.408967 -1.767856 -0.260196 1.047498 -0.795908 1.802502 4.490739 -6.660678 3.167166 -0.425706 -2.017944 3.156270 -0.481426 -1.057802 -3.034881 0.392339 4.451137 3.671944 0.550361 0.267840 -0.858692 -2.888364 0.039589 0.427424 1.955566 -0.586456 1.232762 0.084925 -3.783427 -2.999399 -1.369240 -0.789949 -1.559392 -1.049842 1.130020 0.683312 -7.372973 5.234529 -0.325669 -0.406412 1.107192 -0.332196 2.711558 -3.204022 -5.067913 2.055347 -0.620829 -1.192200 -1.077354 0.453805 2.353897 0.812339 0.798011 -1.657374 -5.654230 1.910923 0.005790 2.244222 1.114573 2.050645 3.891916 0.850565 -1.830872 -3.453112 -2.291466 1.434134 -0.610340 -2.140475 -1.316936 -0.619025 3.475429 3.651018 -0.212971 -0.803064 -1.990581 3.395638 -3.710291 -0.771970 3.118728 1.837727 -3.102218 0.028747 3.438074 -2.736397 -2.583220 -1.852760 0.085624 -1.365143 -3.833454 -0.131208 -2.203255 0.295495 2.128770 -0.241116 -1.607226 1.058793 0.789973 0.092744 -0.858352 4.124571 4.463408 -3.007349 0.607701 -2.747118 1.811129 -5.293386 -4.210743 1.425142 -0.363820 -0.950385 0.415150 1.330939 1.934482 -1.020133 0.484308 -0.215170 -1.770985 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/bfs.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/bfs.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.466000 0.022700 0.838434 -1.109126 0.898299 0.483608 0.354006 -0.346676 -1.010175 -0.355498 -0.051847 -0.639407 -0.484336 1.408912 -0.528578 0.614707 1.983590 0.697728 -0.341677 -0.475195 1.224737 -0.908910 1.640088 1.633777 -1.367773 -0.063638 0.737576 0.885671 0.476863 1.141017 -0.789990 -0.622657 0.480288 -0.928257 0.422222 -1.399716 0.208310 0.231506 0.303428 -2.105236 0.244152 -0.372299 -0.124769 -0.215891 -0.228669 0.759499 1.282892 1.070502 -0.537931 0.288676 0.986798 0.308750 -0.162730 0.352587 0.385102 0.689821 0.845916 0.574037 -0.492369 -0.126526 -0.264342 -0.973816 0.452543 1.241085 1.578543 0.080578 0.139644 0.393392 0.073324 0.171500 0.436620 0.196151 0.077367 0.160849 0.656432 -1.928273 0.125836 -2.822594 -0.340340 -2.987599 -0.759848 -0.734976 0.497759 -0.618238 0.665882 0.154277 1.381656 -0.064289 0.273302 0.660197 1.593038 -1.349279 -0.529537 -0.967536 -0.808599 0.400422 -0.709817 -0.117606 0.597052 -0.139783 -0.955216 -1.180479 0.837672 0.511659 -0.491614 -0.530467 -0.030086 1.286749 -1.282838 -0.967051 -1.002516 0.159744 -0.423479 -1.842259 0.341353 -0.967116 1.393467 0.093095 -0.359083 -1.361202 0.270529 1.308987 -0.462055 -0.699432 -0.289132 1.312228 0.554201 0.016322 0.093912 -0.315153 0.068843 1.348774 1.349214 -0.804412 -0.218762 0.306994 -1.151042 -0.163194 -1.262577 -0.451099 0.888055 -1.180538 -0.086877 0.845678 -0.837183 -0.088783 1.691093 -0.103298 0.853577 3.833574 -0.215510 0.918944 0.429860 -1.445524 0.835536 -0.007863 -0.110429 0.506419 0.968954 0.305801 -2.202620 -1.139620 0.416985 1.260652 0.963016 -1.479347 -0.967974 -0.777453 -0.126722 0.204612 -0.113856 0.293745 -0.481692 -0.866363 -0.360299 0.458687 2.328042 -0.721404 -1.129968 0.412571 0.178229 -0.832527 -1.812110 -0.454580 -0.826958 0.225792 -0.077676 -0.235569 0.834311 1.646955 -3.121974 1.242655 -0.690883 -0.533996 1.084160 0.031542 -0.543174 -1.680938 0.178413 1.065876 1.524117 0.081426 0.082176 0.403414 -1.220464 -0.122448 -0.024828 0.707263 -0.528294 0.575489 0.420103 -1.242390 -0.890221 -0.155103 -0.114066 -0.662196 -0.072301 0.589881 -0.162689 -2.699360 1.450751 -0.224424 -0.292392 0.733212 -0.115350 0.776270 -1.368811 -1.549032 0.729556 0.286838 -0.038790 -0.787756 0.088167 1.167668 -0.171662 0.062513 -0.780183 -1.873717 0.505919 -0.541142 0.844925 0.506629 0.304679 1.417336 0.120424 -0.328526 -1.424301 -0.112644 -0.031167 -0.300362 -0.780027 -0.644281 -0.324575 1.236312 1.553602 0.028763 -0.057475 -0.020880 1.573943 -1.411269 -0.416247 0.944730 0.902186 -0.769300 0.308034 1.097850 -1.445042 -0.813233 -0.577122 -0.366555 0.001576 -0.981940 0.683964 -0.646273 0.501075 0.373312 0.248917 -0.329111 0.666749 0.308200 0.249516 -0.009517 1.544042 2.124979 -0.860308 -0.053207 -1.008799 0.592074 -1.764696 -1.192301 0.166004 0.205052 -0.612034 0.383802 0.270910 1.148573 -0.047701 0.173186 0.035770 -0.395356 +PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/bfs.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/bfs.cpp__std::__new_allocator >::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/bfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.624118 0.335706 1.317333 -1.471664 1.199859 0.592435 0.452520 -0.381653 -1.193483 -0.767042 -0.063913 -1.155330 -1.213651 1.872267 -0.877985 0.213108 2.649784 0.788554 -0.463833 -0.761218 1.475994 -0.809035 2.335291 2.264874 -2.053774 -0.129092 1.071286 1.314689 0.851640 1.382677 -0.722554 -1.031571 0.657104 -0.573891 0.789629 -1.583156 0.290936 -0.097268 -0.157276 -2.783940 0.221135 -0.315014 -0.311301 -0.221426 -0.156940 1.553337 2.029420 1.482265 -0.803465 0.135148 1.450426 0.659523 -0.207798 0.440861 0.375669 0.223872 1.266660 0.638277 -0.674153 -0.227359 -0.372159 -1.411594 0.220611 1.888737 2.272929 0.233675 0.199991 0.272057 0.086186 0.423163 0.404784 0.374489 0.587819 0.642101 0.998376 -1.897447 0.143638 -3.746504 -0.402781 -4.454489 -1.055413 -1.202040 0.934152 -0.736989 0.438207 0.048741 1.979015 0.297471 0.447638 1.141763 2.448508 -1.471716 -0.703171 -1.308340 -1.138169 0.732883 -1.059848 0.213348 0.726240 0.069905 -1.369522 -1.407193 0.712647 0.333449 -0.710957 -0.333253 -0.158918 1.681040 -1.820553 -0.586086 -1.541195 0.086391 -0.028731 -2.757744 -0.030558 -1.257446 2.057860 0.097820 -0.439747 -1.322521 0.341086 1.534624 -0.627890 -0.548291 -0.733841 1.821880 0.782354 0.036145 0.086869 -0.191411 0.319620 1.473028 1.682086 -1.001433 -0.381159 0.208990 -1.517625 -0.285911 -1.688160 -0.296208 1.496991 -1.365063 0.230093 1.050042 -1.115708 -0.652949 1.604695 -0.529029 1.269217 5.033808 -0.381398 1.245806 0.537974 -1.929616 0.844355 -0.036280 -0.314959 0.616269 1.295782 0.688540 -2.286921 -1.523182 0.763932 1.831838 1.238148 -2.003575 -0.636601 -0.768535 -0.213515 -0.187053 0.046233 0.449525 -0.723839 -1.047225 -0.561078 0.961992 2.717143 -0.818483 -2.014712 0.447223 0.487420 -0.626793 -1.778059 -0.428262 -0.370722 0.357573 0.235863 -0.251304 1.224821 2.291757 -4.473493 1.681597 -0.304137 -0.544742 1.400867 -0.041665 -0.771197 -2.014171 0.564402 1.684718 1.843412 0.293738 -0.211589 0.321114 -1.739780 -0.199739 0.132477 1.118795 -0.753870 0.813075 0.623179 -1.486194 -1.490875 -0.722933 -0.086326 -0.509537 -0.383796 0.817183 -0.386799 -4.089847 2.259284 -0.434037 -0.448813 0.318919 -0.500691 0.885604 -2.012887 -2.210777 0.736931 -0.038559 -0.721599 -1.255836 0.074607 1.457918 -0.162071 0.509491 -1.194917 -2.382267 1.087852 -0.695395 1.190817 0.696093 0.733091 2.194086 0.196411 -0.414960 -1.913794 -0.223769 0.583863 -0.394753 -1.216032 -0.280730 -0.417744 1.452558 2.234166 -0.371310 -0.187624 -0.123367 2.003319 -1.802680 -0.904990 1.192107 1.193325 -0.950955 0.816656 1.393322 -1.827845 -1.225441 -1.085615 -0.742155 -0.134755 -1.584215 0.791368 -1.029463 0.589869 0.810096 0.234738 -0.697305 0.948514 0.275186 0.207992 0.112614 1.969883 3.222316 -1.409806 0.281971 -1.576685 1.012315 -2.583414 -1.849587 0.404040 -0.285868 -0.443230 0.374789 0.000122 1.404605 -0.054283 0.047074 -0.228463 -0.122179 +PE-benchmarks/bfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.463993 0.835491 2.354352 -2.791984 2.624463 1.413361 1.055597 -1.025485 -2.193519 -1.678985 -0.147619 -2.329481 -2.622564 3.998178 -1.711008 0.975229 5.546955 1.499880 -0.863061 -1.375730 3.414804 -1.985895 4.998474 4.561399 -4.149559 -0.388764 2.609248 2.478652 1.516917 2.630938 -1.598071 -2.216367 1.792613 -1.951255 1.427265 -3.202815 0.718913 -0.279135 0.134462 -5.535107 0.414907 -1.082301 -0.955412 -0.570832 -0.763083 2.856882 4.319217 3.202020 -1.710615 0.186175 2.891944 1.056906 -0.626111 1.093777 0.782135 0.623824 1.991207 1.523355 -1.533852 -0.670381 -0.888050 -3.094083 0.479790 3.881343 4.723941 0.446057 0.540687 1.299536 -0.213207 0.836773 0.645388 0.745197 1.333903 1.238556 2.252866 -4.661695 -0.158415 -8.070021 -1.388217 -9.391885 -2.242722 -2.569461 1.311834 -2.019289 1.496432 0.367154 4.079792 0.718060 0.906148 2.379503 5.429206 -3.626250 -1.565981 -2.944221 -2.083366 1.346857 -2.401431 0.554171 1.864850 -0.414489 -2.992727 -3.314820 1.645783 1.010748 -1.389427 -1.601331 -0.305297 3.611759 -3.664400 -1.745743 -3.423193 -0.324478 -0.524813 -5.947854 0.284312 -2.200298 4.496928 0.387577 -0.857741 -3.425545 0.775761 3.601647 -1.125292 -1.969542 -0.505739 3.741267 1.783348 0.246762 0.435085 -0.341617 0.742777 3.767155 4.163368 -1.851877 -0.849309 0.144845 -3.332991 -0.429610 -3.347547 -0.837192 3.076143 -3.117142 0.381130 2.716880 -2.342161 -1.260445 4.218009 -1.140782 2.747384 10.509445 -0.760919 2.545054 1.114894 -4.361571 1.819251 -0.579879 -0.831422 1.140011 2.761625 1.520103 -5.264251 -3.254109 1.830759 3.800746 2.648191 -4.505788 -1.784628 -1.842861 -0.139369 -0.580320 -0.214515 1.226804 -1.267717 -2.322317 -1.095389 2.303780 5.908416 -2.413248 -3.953953 1.389322 0.911322 -1.213824 -4.522848 -1.222557 -1.278103 0.613921 0.499765 -0.524086 2.313866 4.888988 -8.802695 3.398177 -0.993598 -1.273931 2.891436 0.206626 -1.773847 -4.400828 1.303913 3.819881 3.621345 0.653310 -0.088666 0.433992 -3.634099 -0.400957 0.248920 2.320518 -1.316692 1.673076 0.972473 -3.235544 -3.389801 -1.018359 -0.185162 -1.499895 -0.335105 1.747900 -0.500235 -8.409729 4.970448 -0.919306 -1.013946 0.967465 -0.958544 2.357773 -4.221930 -4.969807 1.924273 -0.275576 -1.177450 -2.420832 0.375265 3.025503 -0.079601 0.630669 -2.240560 -5.157997 2.129716 -1.185709 2.502333 1.356194 1.879008 4.877878 -0.117859 -1.248436 -4.244992 -0.561262 0.888378 -0.822002 -2.831058 -1.487260 -0.702124 3.419835 4.711669 -0.667494 -0.427210 -0.260737 4.015845 -4.562172 -1.753174 2.814451 3.343185 -2.318592 1.360383 3.111627 -3.739479 -2.695778 -2.026006 -1.332668 -0.490721 -3.684117 1.244663 -2.250724 1.127606 1.774968 0.442120 -1.124481 1.924683 0.747085 0.872911 -0.041599 3.880326 6.943021 -3.365114 -0.113729 -3.318927 1.978278 -5.585163 -4.292484 1.323855 -0.065630 -0.856472 0.683414 0.461720 2.868351 -0.319437 -0.115249 -0.412303 -0.787162 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/bfs.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::_M_erase(std::_List_iterator) = -0.992143 0.929943 1.905711 -2.013496 2.798086 1.613066 0.839834 -0.354231 -1.671780 -1.477921 -0.478526 -2.140748 -2.723255 3.286381 -1.225156 0.956970 4.238038 0.880138 -0.562779 -0.768856 2.524039 -1.192255 3.960546 2.828809 -3.276344 -0.161771 1.507329 1.925033 0.479522 2.881505 -1.464402 -2.500202 1.398058 -1.005934 1.160146 -2.121816 0.673777 -0.343656 -0.424931 -4.232626 0.198955 0.166753 -1.030232 -0.296626 -0.555625 2.023668 3.658727 2.553067 -1.246317 0.168938 2.032000 0.737318 -0.302241 1.046862 0.432356 0.439417 1.395230 0.366206 -1.884417 -0.534691 -0.780962 -2.823349 -0.115445 2.698721 3.619141 0.029884 0.293295 1.224433 -0.697170 0.698350 0.432845 0.620863 1.463632 0.832664 1.966562 -2.250626 -0.541983 -4.846943 -1.097956 -6.956060 -1.864833 -2.508902 1.126352 -0.371853 1.059281 -0.561357 3.539396 0.321756 0.724920 1.767994 4.508399 -2.986927 -1.286465 -3.016240 -1.213082 0.879294 -2.037682 -0.248612 1.356390 -0.399381 -2.281533 -2.434453 1.001003 0.385417 -0.994683 -1.176177 -0.753634 3.122719 -3.289398 -1.348847 -3.290846 0.001826 -0.321022 -4.664553 -0.225590 -0.732691 2.520683 0.495913 -0.163852 -2.438779 0.897510 2.859272 -1.066547 -1.478767 -0.568524 3.336919 1.378763 -0.123682 0.742157 0.234755 0.763740 2.925297 3.413691 -1.180273 -1.169939 0.310925 -1.999575 -0.327464 -2.267240 -0.445181 1.593588 -2.750510 0.299953 2.257768 -1.704400 -0.555970 1.319075 -1.119367 2.370742 7.354357 -0.807978 1.655973 0.319045 -3.552001 1.886564 -0.400825 -0.984101 0.556388 1.827733 1.364019 -3.353725 -2.524447 1.812284 2.848326 2.062551 -3.414233 -0.560891 -1.583525 0.258371 -0.688217 -0.182028 1.707841 -0.720769 -1.688130 -0.805228 1.393862 5.066278 -2.042118 -3.689089 1.778277 0.677313 -0.726623 -3.044181 -1.121032 -0.744342 -0.133873 0.745182 -0.478163 1.560008 3.975627 -6.180593 2.813832 -0.358264 -1.444880 2.425184 -0.395132 -0.791101 -2.727058 0.521119 3.292545 3.001028 0.722601 -0.090482 -0.329837 -2.772865 0.037038 0.374394 1.920580 -0.618844 1.141406 0.389872 -2.544525 -2.688230 -1.437646 -0.420199 -0.840175 -0.656181 1.131462 0.187375 -6.773890 4.035420 -0.820008 -0.684909 0.777407 -0.282458 2.089586 -3.022533 -4.033855 1.643926 -0.559682 -1.714591 -1.697195 0.412146 2.168758 0.213123 0.333510 -1.525191 -4.360206 1.997632 -0.401905 1.813182 1.054556 1.724564 3.779206 0.813526 -1.576680 -2.837200 -1.293026 1.152519 -0.966479 -1.693962 -0.631497 -0.436361 2.782661 3.580672 -0.206906 -0.311453 -1.100092 3.061188 -3.319246 -1.334373 2.707941 1.851131 -1.833475 1.115454 2.923584 -2.553167 -2.448701 -1.806952 -0.450961 -0.723118 -2.918334 0.386665 -2.199283 0.453659 1.893442 0.162062 -1.498549 1.321121 0.447812 0.057096 -0.853897 3.649618 4.878313 -2.932078 0.660943 -2.493205 1.814197 -4.389407 -3.241323 0.977052 -0.243212 -0.548297 0.626603 0.707052 1.844932 -0.552351 -0.153204 -0.508324 -1.203186 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_dec_size(unsigned long) = -0.249565 -0.312723 0.208031 -0.588004 0.358702 0.195249 0.228587 -0.449417 -0.642776 -0.014007 0.254040 -0.496357 0.010281 0.669313 -0.276525 0.651498 0.864992 0.291365 -0.313962 -0.311061 0.545593 -0.249996 0.872432 0.867514 -0.589582 0.001862 0.058182 0.275020 0.395111 0.269623 -0.290529 -0.115161 0.391181 -0.606426 0.048217 -0.532893 0.042628 0.298747 0.591524 -0.919899 0.168649 -0.169161 0.287437 -0.087196 -0.076525 0.408553 0.349424 0.535756 -0.019987 0.389865 0.509120 0.021914 0.072444 0.170956 0.277995 0.327579 0.549393 0.012448 -0.192858 -0.143711 -0.093504 -0.221419 0.203832 0.572941 0.771322 -0.020881 -0.025421 0.251963 0.286774 0.096735 0.443489 0.148538 -0.186050 -0.005997 0.160034 -1.091398 0.246975 -1.200015 -0.176520 -1.290485 -0.386514 -0.005751 0.359815 -0.281916 0.442246 0.082324 0.634196 0.017233 -0.198134 0.013189 0.595347 -0.719247 -0.269462 -0.132122 -0.186707 0.090478 -0.341621 0.060646 0.410341 0.052731 -0.477748 -0.320900 0.516857 0.284362 -0.261505 -0.218561 0.122172 0.535889 -0.499013 -0.583823 -0.098405 0.296915 -0.251129 -0.827527 0.446153 -0.589533 0.473781 -0.011984 -0.259473 -0.618149 0.096425 0.402318 -0.240491 -0.340447 -0.373956 0.512142 0.382201 0.200389 -0.037313 0.004695 0.018120 0.884908 0.258151 -0.527557 0.031836 0.094765 -0.363838 0.265246 -0.540155 -0.333679 0.385568 -0.590006 -0.024301 0.307708 -0.370358 0.132899 0.879654 0.318893 0.126142 1.576600 -0.030180 0.656421 0.499867 -0.550124 0.259575 -0.158676 0.208460 0.303644 0.382891 -0.089117 -1.039627 -0.622173 0.246750 0.632445 0.441585 -0.767475 -0.459524 -0.199045 -0.024635 0.084903 -0.049292 0.104454 -0.113696 -0.434765 -0.122733 0.169076 1.161221 -0.333774 -0.048442 0.142429 0.013335 -0.395446 -0.854968 -0.321247 -0.498622 0.187470 -0.160345 0.157833 0.359825 0.744168 -1.242280 0.591822 -0.355132 -0.138157 0.692137 0.142258 -0.489216 -0.858168 -0.132864 0.220940 0.656718 -0.155463 0.156619 0.470577 -0.615591 -0.052002 -0.118206 0.077323 -0.262371 0.208334 0.319075 -0.401935 -0.193613 0.139049 0.028843 -0.315247 0.036078 0.449541 0.196692 -1.072181 0.432618 -0.026974 -0.299227 0.396711 -0.093309 0.498194 -0.565504 -0.401677 0.317613 0.075077 0.057647 -0.421253 0.092268 0.422015 -0.291799 0.218157 -0.440230 -0.578353 0.263092 -0.424478 0.426782 0.264013 -0.127161 0.319349 -0.182478 -0.122895 -0.540505 -0.078926 -0.294401 -0.078900 -0.397852 -0.046158 -0.140845 0.603416 0.549958 0.135969 -0.160939 0.179730 0.644909 -0.794072 -0.080961 0.402288 0.520573 -0.441731 0.179485 0.448177 -0.724527 -0.057007 -0.150929 -0.371264 -0.075281 -0.313411 0.601854 0.030994 0.420413 -0.164410 0.188779 0.030191 0.376325 0.136772 0.055706 0.123392 0.804338 0.886027 -0.125247 -0.226338 -0.552421 0.266523 -0.673516 -0.539124 0.177362 0.178723 -0.629390 0.161831 0.115736 0.731617 0.172723 -0.072149 -0.144445 0.017762 +PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/partition-problem.cpp__findPartiion(int*, int) = -5.416084 -7.114643 -5.286976 -12.052043 7.923253 9.265001 4.786437 -9.211847 -14.334732 1.015718 7.030100 -15.989868 0.550684 14.655482 -3.873382 15.690142 18.968249 2.069422 -8.855291 -1.655804 15.345719 -0.693025 19.660382 16.230841 -9.284208 -1.102040 -4.651171 5.699741 2.908173 -2.416757 2.290107 -2.644369 6.738035 -18.651634 -7.289269 -6.694114 2.289583 6.073909 15.933884 -17.736569 4.328181 -2.361668 4.277170 -4.003723 -6.267973 -1.711689 7.402748 11.535901 0.473419 3.760927 9.933726 -0.545315 -1.134642 3.754344 2.251372 3.351404 0.124722 -0.314573 -5.106389 -8.114522 -0.661708 0.495003 3.651617 10.723041 13.954217 3.757924 -1.422197 11.595108 4.675797 2.931981 8.350435 1.734853 -6.828723 0.031130 3.886199 -20.479264 -1.225101 -20.078136 -3.575537 -17.262975 -7.163781 3.557435 9.011977 0.125576 9.566331 3.882164 10.574348 -2.516576 -5.710829 13.045482 13.390892 -12.550156 -6.372614 -7.210112 -5.931838 2.725496 -5.025262 3.247323 8.499643 5.290155 -11.230680 -4.301772 5.372757 7.164683 -3.944561 -11.336025 5.091844 8.581018 -7.186743 -11.095756 4.045358 13.482193 -3.938122 -19.576532 -2.997979 -9.727337 5.430114 -0.589224 -5.232403 -13.665515 0.876679 5.320682 -3.811145 -6.950216 -0.573894 6.286892 7.343718 6.259833 1.111957 3.891890 3.026737 23.421294 -0.011813 -8.514762 3.043233 -1.193427 -1.851925 7.122399 -7.039329 -8.105822 0.602250 -14.176059 4.819175 10.829595 -6.744424 -3.307792 9.367397 8.705851 1.199916 40.210825 2.545088 17.717249 13.578554 -11.020184 4.563050 -8.142136 2.635970 3.423220 3.332111 -3.007180 -21.019030 -13.038876 7.616215 11.636334 9.622646 -14.457087 -5.361384 -1.121633 -0.647707 0.943080 -2.152521 3.716942 1.591005 -8.788605 -2.086090 12.528386 28.644135 -5.742698 4.745338 8.685595 3.239078 -5.835762 -18.494185 -7.950691 -10.311051 2.391797 3.882534 3.863490 7.077956 15.998977 -14.490774 10.215537 -1.926756 2.572714 9.858830 6.349700 -15.403879 -15.210442 -6.408268 6.822561 14.253647 -6.023272 0.001485 6.338611 -10.617130 -0.905352 3.807717 -2.847382 -1.850355 4.366210 0.491798 -4.712803 -4.458539 7.963729 -5.353028 -1.221515 1.411111 9.278847 1.167954 -10.764568 10.674861 0.762839 -5.666890 4.291604 -5.238616 14.768882 -8.929151 -9.445819 9.399722 -0.214979 -1.892156 -5.386477 3.953110 6.626746 4.291762 6.223454 -8.053434 -11.571614 8.685831 -5.613913 10.480411 4.996210 -2.689630 2.965535 -7.162934 -4.105029 -12.296979 -9.842362 -5.905704 3.636554 -14.287432 -4.770589 -2.230028 13.020658 6.074004 1.774630 -13.424142 2.315947 13.301435 -13.419732 -4.163015 8.171661 5.143143 -16.747886 1.053081 10.592977 -15.057487 3.566016 -4.285774 -1.716472 -5.363017 -9.819594 7.765386 5.849481 8.806696 -3.345700 2.201762 4.835371 5.849650 5.037227 4.624949 3.593144 18.182384 8.873925 -0.488132 -8.805395 -13.837083 4.844537 -13.929634 -16.140305 8.329458 5.492864 -12.386869 1.545036 3.538734 16.585478 2.569497 -3.458081 -3.493321 2.058933 +PE-benchmarks/partition-problem.cpp__main = -1.365024 -1.916991 -0.723606 -3.321419 2.207392 1.774719 1.348451 -1.721429 -4.234292 -0.431902 1.867548 -4.715823 -0.487157 4.339827 -1.033705 3.655835 5.368744 0.824946 -2.305510 -0.507451 3.800194 -0.453802 5.177209 4.547775 -2.826089 -0.152429 -1.609267 1.647201 0.743336 -0.027048 0.884947 -1.326369 1.552683 -3.990459 -1.322014 -1.859502 0.558250 1.677367 3.336703 -5.377968 1.198503 0.626892 1.801382 -1.163621 -1.313482 0.004105 2.312983 3.296350 -0.266680 1.190863 2.844842 -0.161611 -0.043455 0.965084 0.533887 0.351011 0.192851 -0.527710 -1.893990 -1.728621 -0.192671 -0.643303 0.810621 3.061668 4.076617 0.791346 -0.409573 2.401062 1.312418 1.146551 2.423205 0.480284 -1.302937 -0.274128 1.339803 -4.375082 -0.468601 -5.795290 -0.587763 -5.982252 -2.358856 0.786734 3.811981 1.248360 1.806483 0.319624 3.198338 -0.728966 -1.372389 3.692527 3.946638 -2.854589 -1.936262 -2.219845 -2.011720 1.307080 -1.584421 0.502834 2.188028 1.666219 -3.255424 -0.929658 1.309530 1.478731 -1.172439 -2.267258 1.212983 2.693837 -2.514512 -2.569504 0.603259 3.820204 -0.243896 -5.477011 -0.470531 -2.545207 0.722420 0.281431 -1.583175 -2.753779 0.384384 0.830147 -1.400677 -1.165382 -1.881012 2.318734 1.438365 1.710983 0.457985 1.083594 0.949014 5.305676 0.068197 -2.616958 0.762769 -0.054475 -0.382554 1.927548 -2.117212 -2.357239 0.489768 -3.829838 1.229205 2.096663 -2.099701 -1.284333 0.933964 2.128232 0.489130 9.792232 0.593205 4.889367 3.525813 -2.941565 1.969619 -1.632210 0.553880 0.967476 1.351407 -0.649882 -4.261082 -3.566039 2.092166 3.567269 2.851034 -3.459243 -1.319129 -0.088206 -0.196375 0.304570 -0.038215 1.121817 0.480005 -2.655532 -0.654548 3.260110 7.237689 -1.035034 0.395207 2.078580 1.351472 -1.278388 -4.504284 -1.755578 -2.607626 0.644359 0.922841 0.806706 2.099917 4.635887 -4.995542 3.274816 -0.113800 0.806952 2.727101 1.206629 -4.102266 -4.840608 -1.636671 1.930986 4.309634 -1.302141 -0.268124 1.706287 -3.092923 -0.275956 0.928031 -0.623671 -0.689876 1.383380 -0.312619 -1.150810 -1.347888 1.133674 -1.613557 -0.200820 -0.172733 2.512232 1.139572 -3.165789 3.060838 -0.113613 -1.620686 0.607931 -1.248047 3.607956 -2.616401 -2.764709 2.108805 -0.473301 -1.640648 -2.003958 0.769877 1.795415 0.800578 1.265233 -1.709496 -3.174315 2.906474 -1.637549 3.109220 1.553613 -0.943730 1.177274 0.139890 -1.170976 -2.886404 -2.484784 -1.080366 0.105371 -3.543784 -0.812689 -0.837939 3.329426 1.955955 0.407098 -3.463338 0.192521 3.844977 -2.934432 -1.632640 2.491215 -0.211730 -3.848271 1.076332 3.225650 -4.337152 0.890604 -1.960097 -0.084575 -1.266257 -2.584748 2.170240 1.335037 2.203690 -0.770769 0.437399 0.688505 1.564008 1.367769 0.568653 0.633276 5.410636 2.270182 -0.489489 -1.254610 -3.907827 1.501878 -4.061603 -4.177627 1.802723 1.397902 -3.416803 0.518841 0.682996 4.138414 0.625205 -0.805672 -1.400719 1.089621 +PE-benchmarks/topological-sorting.cpp__Graph::Graph(int) = -1.065045 -1.091240 0.397794 -2.880868 1.590059 1.126466 0.776590 -1.114850 -2.235303 -0.333864 1.324552 -1.360350 -1.092358 2.626712 -0.833288 1.475699 1.540103 -0.373644 -1.636414 -0.870990 2.513151 -0.978867 2.524549 1.468141 -2.523991 -0.288118 -0.348416 1.965832 0.763159 1.367521 0.353198 -0.049643 -0.269311 -0.934801 0.398762 0.069996 0.481554 0.487506 0.436485 -2.241242 0.554423 1.325369 0.997471 -0.619996 -0.761149 -0.442517 0.942338 2.202528 -0.172108 0.028468 2.385248 -0.212172 0.254844 0.396161 1.091862 0.104403 1.751852 -0.147152 -0.354071 -1.191988 -0.287479 -0.473503 0.887398 2.135641 2.535853 -0.430207 0.000705 1.018199 0.306452 1.410213 1.672500 0.332332 -1.194381 -0.648243 1.663784 -1.357908 0.333545 -2.394678 0.219915 -2.413931 -1.298022 0.206216 1.609627 0.843997 1.033075 -0.034750 2.249198 -0.040309 -1.122410 0.612685 1.333885 -0.613173 -0.760558 -1.308962 -1.725243 0.556193 -1.206310 -0.309625 0.768066 1.323558 -1.732910 0.551646 0.098295 0.998993 -1.158708 -0.611942 -0.292426 1.767619 -1.042306 -0.964747 0.473405 2.254369 -0.333811 -3.206310 -0.858204 -2.341069 -0.197264 -0.902446 -0.012082 -0.444756 0.158106 1.153668 -0.716948 -0.755397 -1.738925 1.345506 1.306281 0.662071 0.108552 0.217000 -0.035735 1.855967 0.307743 -1.159696 -0.664373 0.187220 -0.430331 1.204961 -0.557106 -0.530067 0.523422 -1.505518 -0.003106 0.517016 -0.424573 -0.342089 -0.073026 0.838113 0.543622 5.068871 -0.082308 2.282733 1.133219 -1.190609 1.033270 0.361715 0.382397 1.041877 0.874645 -0.985705 -1.441420 -2.059728 1.419178 1.784429 1.367234 -1.474311 0.167936 0.035512 -0.403690 -0.223470 -0.000430 0.289518 -0.232934 -1.315802 -0.611928 0.798850 3.012731 -0.651842 -2.021661 1.680521 1.186984 -1.618526 -1.404103 -0.755178 -1.279045 0.145343 -0.164566 0.190063 1.598327 2.504372 -2.521467 1.790185 0.073067 -0.349956 2.237067 -0.888105 -1.281493 -2.847615 -0.443117 0.233535 2.158615 -1.008885 -0.723917 0.786472 -1.919088 0.457762 -0.023938 -0.389713 -0.416701 0.986191 -0.699792 -0.522282 -1.071287 -0.750912 -1.111881 0.803972 -0.730959 0.868065 -0.103306 -2.042772 1.708602 -0.314217 -0.592377 0.148617 -0.107267 1.681541 -1.155550 -1.580943 1.102367 0.064346 -0.670224 -1.975229 0.390720 1.331388 0.007606 0.172596 -1.605902 -0.834893 1.423365 -1.842129 1.736998 0.873465 -0.303459 0.438122 1.510713 -0.286050 -1.386871 -0.637055 -0.261359 0.226648 -2.254418 -0.422969 -0.642164 1.821266 0.574819 0.202792 -0.753679 -0.188155 2.553901 -0.801211 -1.332272 0.844582 -1.008693 -1.756873 1.136931 1.594767 -1.346824 -0.107038 -1.598584 -0.262419 -1.243429 -2.015561 1.879096 1.106354 1.912102 -0.495679 0.887995 0.123995 0.569985 0.673676 -0.067161 -0.257990 3.177373 1.193679 -0.938137 -0.923121 -2.208999 1.318985 -1.535737 -1.358586 0.776772 -0.035305 -1.028146 0.538028 -0.298880 2.454892 0.663988 -0.151995 -0.460183 0.048109 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/topological-sorting.cpp__Graph::addEdge(int, int) = -0.454251 0.014732 0.737724 -0.972307 0.719048 0.751984 0.286951 -0.568509 -0.833791 -0.270499 0.082470 -0.896132 -0.548274 1.184565 -0.622334 0.471466 1.539444 0.427119 -0.479657 -0.309499 0.865459 -0.210421 1.524448 1.421868 -1.094266 -0.095007 0.365177 0.856315 0.366998 0.911859 -0.474065 -0.587194 0.393821 -0.510509 0.172924 -0.832434 0.104214 0.100763 0.198484 -1.615454 0.160191 -0.052453 -0.142967 -0.165116 -0.075904 0.326587 1.103486 0.915913 -0.068903 0.141988 0.711291 0.390920 0.023148 0.270416 0.445985 0.306988 0.924477 -0.053131 -0.387082 -0.300005 -0.285318 -0.606537 0.108261 1.167968 1.311503 0.248529 0.019658 0.132022 0.034350 0.220839 0.354740 0.299018 -0.099247 0.520522 0.387399 -1.133039 0.468517 -1.526948 -0.185959 -1.624686 -0.612468 -0.443547 0.404118 0.108856 0.526793 0.056515 1.238147 -0.029719 0.015189 0.495658 1.422202 -1.070540 -0.401346 -0.576858 -0.599566 0.240514 -0.599605 0.101817 0.072012 0.217476 -0.847853 -0.683135 0.429039 0.374255 -0.429581 -0.077093 -0.010372 1.019889 -1.089876 -0.604593 -0.599520 0.263622 -0.221227 -1.669155 -0.319942 -0.782149 0.944887 0.009974 -0.426294 -1.047607 0.348574 0.935671 -0.272332 -0.425461 -0.493371 0.928113 0.524029 0.026143 -0.065022 -0.014139 0.151247 1.239612 0.698412 -0.590751 -0.053584 0.100201 -0.742685 0.011652 -0.758564 -0.206041 0.205106 -0.941423 -0.022334 0.882624 -0.662793 -0.125993 0.428439 0.012067 0.577855 3.354099 -0.293393 0.896381 0.533574 -1.216236 0.386493 -0.142657 -0.047121 0.254260 0.537465 0.389814 -1.655034 -0.963328 0.618786 1.179090 0.758463 -1.056510 -0.124293 -0.394841 -0.071765 -0.070947 0.100419 0.264635 -0.361278 -0.717938 -0.339809 0.546513 1.880693 -0.527294 -1.090521 0.422884 -0.085707 -0.376152 -0.967412 -0.337365 -0.233656 0.212137 0.176298 -0.070018 0.629806 1.382166 -2.073271 1.079765 -0.177932 -0.403914 1.186560 -0.056876 -0.568270 -0.704173 0.003596 0.925696 1.081285 -0.007391 -0.187303 0.234428 -1.096552 -0.119598 0.119038 0.557740 -0.477375 0.555793 0.535116 -0.981104 -0.798941 -0.350340 0.003859 -0.381989 -0.375710 0.597345 -0.309046 -2.042930 1.291191 0.062449 -0.275016 0.364273 -0.286141 0.636042 -1.128742 -1.245923 0.550594 -0.053018 -0.328843 -0.525010 0.048870 0.779591 0.147165 0.357933 -0.935953 -1.111113 0.570698 -0.359412 0.836117 0.408109 0.311575 0.919589 0.114779 -0.242586 -0.918799 -0.317622 0.227053 -0.076549 -0.771479 -0.253344 -0.276032 1.017717 1.198326 -0.119514 -0.293843 -0.100879 1.209096 -0.957608 -0.364021 0.666630 0.512789 -0.829413 0.195930 0.806882 -0.994268 -0.518365 -0.478781 -0.497277 -0.331114 -0.905421 0.603949 -0.399135 0.487806 0.330245 0.134013 -0.377564 0.466565 0.239347 0.128229 0.276984 1.278304 1.380350 -0.438043 0.124082 -1.015523 0.609952 -1.459528 -1.072124 0.343748 -0.103585 -0.470185 0.143912 0.015477 0.999450 0.159948 -0.046817 -0.062838 -0.077551 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::push_back(int const&) = -0.393401 0.422519 1.031386 -1.031333 0.911656 0.566330 0.289656 -0.279628 -0.773459 -0.525266 -0.148460 -0.897224 -0.903899 1.280504 -0.616633 0.073999 1.790952 0.501754 -0.302807 -0.413763 0.851887 -0.381816 1.574160 1.505993 -1.357415 -0.030149 0.664674 0.861908 0.356394 1.202490 -0.612930 -0.953458 0.365006 -0.118637 0.544261 -0.984653 0.119830 -0.152330 -0.193692 -1.907424 0.155767 -0.015483 -0.204815 -0.182168 -0.031300 0.779597 1.547288 0.969966 -0.421378 -0.029383 0.874053 0.620141 -0.097963 0.297384 0.378952 0.174232 1.031777 0.169529 -0.481999 -0.155502 -0.293692 -0.832648 0.017336 1.302350 1.489585 0.233028 0.090516 0.007296 -0.041530 0.269086 0.155668 0.281825 0.394614 0.619241 0.531091 -0.970691 0.242467 -2.185488 -0.192089 -2.616972 -0.754199 -0.842108 0.533092 -0.078097 0.281471 -0.102190 1.382458 0.134932 0.371358 0.607444 1.754056 -0.984465 -0.436997 -0.858633 -0.801377 0.442703 -0.636845 0.104814 0.202661 0.027407 -0.937050 -0.945297 0.461861 0.185601 -0.488910 -0.001059 -0.093111 1.121425 -1.237884 -0.317652 -1.042174 0.074072 -0.001614 -1.868447 -0.179050 -0.785787 1.111922 0.056561 -0.349325 -0.966815 0.316298 1.033208 -0.484618 -0.318287 -0.754878 1.269090 0.517544 -0.075629 0.042366 -0.180365 0.280622 0.961390 0.974930 -0.665891 -0.209115 0.093297 -0.913571 -0.285879 -1.050647 -0.113064 0.664561 -0.889177 0.120973 0.784143 -0.762436 -0.322448 0.525266 -0.447182 0.868483 3.416189 -0.418630 0.818023 0.264811 -1.401633 0.626074 0.021844 -0.357153 0.243614 0.811920 0.630133 -1.440099 -1.010450 0.605399 1.272015 0.837819 -1.148896 -0.197742 -0.512979 -0.207236 -0.164074 0.156924 0.268295 -0.507400 -0.738695 -0.435400 0.615118 1.914148 -0.449047 -1.544312 0.355047 0.286026 -0.283268 -0.909225 -0.256530 -0.189793 0.222384 0.197102 -0.242304 0.853825 1.563733 -3.006717 1.193289 -0.108337 -0.541645 1.076828 -0.167630 -0.449786 -1.052387 0.368348 1.265526 1.273501 0.190920 -0.134402 0.039200 -1.167345 -0.168691 0.086990 0.810292 -0.584731 0.563585 0.487927 -1.173862 -1.013237 -0.690934 -0.063023 -0.385776 -0.485327 0.511122 -0.174620 -2.768394 1.648919 -0.130720 -0.191598 0.176767 -0.382907 0.517944 -1.317703 -1.511133 0.446208 -0.096081 -0.477232 -0.646495 -0.000830 0.949210 -0.083431 0.456571 -0.878972 -1.521547 0.725538 -0.311385 0.837731 0.488394 0.599123 1.310276 0.380108 -0.267713 -1.117797 -0.289140 0.571623 -0.237513 -0.781671 -0.017482 -0.380949 0.971460 1.535718 -0.270168 -0.175254 -0.264594 1.297858 -0.996112 -0.491824 0.806547 0.446839 -0.700777 0.378291 0.955423 -1.064124 -0.897462 -0.774836 -0.441146 -0.216755 -1.102292 0.437810 -0.726183 0.309425 0.667349 0.027998 -0.656052 0.586144 0.153043 0.024624 0.135450 1.306914 1.819926 -0.839331 0.431610 -1.036537 0.682646 -1.754411 -1.204426 0.264368 -0.371827 -0.333964 0.150210 -0.107557 0.890154 -0.132064 0.233602 -0.089607 -0.109375 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -2.306350 0.367642 2.683018 -5.036721 4.003554 3.880629 1.627775 -1.993264 -4.244549 -2.304946 0.623573 -5.577920 -3.691502 6.577687 -2.681644 2.266685 8.073128 1.490771 -2.301805 -0.622049 4.694401 0.018364 7.652967 6.845036 -5.587330 -0.580660 0.715351 3.681359 0.913222 3.610558 -0.589515 -4.533316 2.329902 -2.151745 0.193426 -3.304181 0.912027 0.330314 0.711209 -8.098949 1.055731 1.023696 -1.346968 -1.468709 -0.979025 0.673902 6.223797 5.050848 -1.197745 -0.020029 3.622455 2.358456 -0.692444 1.581931 1.308226 -0.082715 1.433329 -1.514025 -2.573323 -2.061162 -1.133314 -3.026057 -0.076720 5.889690 6.627840 1.374237 0.194639 1.573998 -0.278532 1.398602 1.627355 1.137161 1.021040 2.039787 2.541906 -3.912177 0.013151 -7.631015 -1.113171 -9.015454 -3.438173 -1.975192 3.455931 2.452880 1.944545 -1.318353 6.011786 -0.195443 0.154877 5.050266 7.957853 -4.844824 -2.387455 -4.405132 -3.401381 2.017384 -3.240453 0.814741 -0.214941 0.887327 -4.846658 -3.302617 0.663918 1.472106 -2.075227 -1.964884 0.461785 5.038810 -5.394618 -2.288283 -2.618889 2.471980 -0.158812 -8.833155 -2.649497 -3.216404 3.696172 0.257823 -1.883516 -4.436553 1.361802 3.606336 -1.649831 -2.079434 -3.193322 4.716516 2.469070 0.831895 0.402730 0.480915 1.603887 6.468890 2.701172 -2.878460 -0.174021 -0.257884 -2.388450 0.493386 -3.596454 -1.250156 1.415210 -4.781108 0.014098 4.488875 -3.455599 -1.923385 -0.002070 -0.353833 3.048116 16.479164 -0.921613 4.839552 3.002953 -6.379266 2.216140 -1.449463 -1.113604 0.871986 2.661791 2.024230 -6.607291 -5.021038 3.645152 5.993858 4.277265 -4.581108 0.478209 -1.294507 -0.337550 -1.373887 0.468832 1.736623 -0.965436 -4.128658 -1.705084 4.568895 9.285050 -2.144102 -4.391335 2.975877 1.786243 -0.641307 -3.711504 -1.815056 -0.969048 0.807889 2.526397 -0.444731 3.542269 7.527982 -9.442487 5.244610 0.205277 -0.968452 3.980104 0.191551 -3.846226 -3.770303 0.144711 5.468555 5.666562 -0.090156 0.195678 0.416593 -5.341968 -0.648872 1.356020 2.038079 -1.689282 2.493768 1.255662 -4.222532 -4.431473 -1.544925 -1.522071 -1.091598 -2.018320 3.017461 0.026608 -8.968030 7.273218 -0.060413 -1.327858 0.529139 -2.204798 4.635634 -5.851441 -6.861612 3.091159 -1.304021 -3.222529 -2.253823 0.644817 3.794501 1.260164 1.550786 -3.757169 -5.959863 4.230147 -0.811930 4.538608 2.161443 1.777081 4.830802 0.949456 -1.637480 -4.522013 -3.983650 2.512922 -0.241026 -4.855581 -0.591845 -1.428891 5.123643 5.623532 -1.074450 -3.370933 -0.709033 5.671344 -4.546352 -2.167249 3.958343 1.659535 -4.739468 1.344054 4.819304 -5.177241 -2.128443 -3.414746 -0.544882 -2.060504 -5.559442 2.081544 -1.298838 2.311745 2.064976 0.457333 -1.900531 2.176703 1.579256 0.501879 0.970663 6.778352 5.948812 -2.691028 0.497214 -5.602150 2.971514 -7.860168 -6.667584 2.568383 -0.878931 -2.045163 0.462258 -0.360195 4.721235 0.248246 0.442077 -0.918186 0.267616 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/topological-sorting.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = -0.413558 0.520414 0.918073 -1.000680 1.167729 1.111363 0.363366 -0.409894 -0.809124 -0.334697 -0.185619 -1.054074 -0.874397 1.462733 -0.571759 0.479407 1.973457 0.463213 -0.345049 -0.150545 0.939258 -0.266490 1.743616 1.534987 -1.316590 0.010890 0.659243 0.628381 -0.072929 1.512250 -0.986705 -1.354492 0.491661 -0.440593 0.327186 -0.939077 0.044680 -0.216140 0.200079 -2.020084 0.181612 0.136399 -0.320284 -0.318613 -0.139177 0.165356 1.784695 1.036830 -0.258466 -0.035986 0.707193 0.575288 -0.119295 0.347083 0.622148 0.557206 0.998461 0.187839 -0.657221 -0.270546 -0.393433 -0.628559 -0.071148 1.320021 1.491047 0.274455 0.031759 0.162583 -0.243773 0.161407 0.076277 0.302819 0.340540 0.708070 0.505178 -0.987275 0.172498 -1.896617 -0.314978 -2.117939 -0.852728 -0.823392 0.244782 0.092746 0.712894 -0.266449 1.500928 -0.138039 0.372286 0.438340 2.020364 -1.416161 -0.517341 -0.997348 -0.772596 0.258324 -0.653284 -0.002679 0.186395 -0.424102 -1.107367 -1.250694 0.586851 0.465177 -0.484917 -0.214534 -0.011614 1.227447 -1.170831 -0.740017 -1.100168 0.044657 -0.351707 -2.029487 -0.385520 -0.547494 0.697595 0.219561 -0.494902 -1.584939 0.487550 1.309114 -0.559641 -0.800498 -0.304837 1.378636 0.646246 -0.039468 0.168740 -0.252690 0.403768 1.481646 1.141670 -0.645318 -0.090159 0.014020 -0.836210 -0.218630 -0.918740 -0.241331 0.101664 -1.104196 0.025103 1.186214 -0.855873 0.111935 0.413294 -0.327846 0.872183 3.906630 -0.577244 0.936033 0.197275 -1.763992 0.886680 -0.137829 -0.517367 -0.004463 0.807979 0.776664 -1.900719 -1.072107 0.818932 1.407558 0.946336 -1.243556 -0.179189 -0.664026 -0.137493 -0.182379 0.162643 0.370932 -0.311897 -0.943849 -0.454070 0.686284 2.523994 -0.800267 -1.787862 0.644019 0.202549 -0.197247 -1.057096 -0.412223 -0.635664 0.170763 0.272427 -0.325469 0.871045 1.723919 -2.826367 1.320559 -0.356695 -0.940108 1.423020 -0.101188 -0.530766 -0.660345 0.250108 1.475730 1.423705 0.269507 -0.043771 -0.135033 -1.218137 -0.186395 0.072631 0.803396 -0.566810 0.647405 0.429440 -1.539802 -1.072958 -0.663683 -0.104948 -0.785077 -0.589623 0.534518 0.002435 -2.775168 1.860860 0.209396 -0.159756 0.430098 -0.319982 0.673216 -1.325312 -1.768722 0.666714 -0.120133 -0.206874 -0.259959 -0.033140 0.947916 0.251625 0.492061 -0.972132 -1.795928 0.709735 -0.009191 1.064555 0.535603 0.666437 1.206359 0.433648 -0.471658 -1.104026 -0.666440 0.614577 -0.136715 -0.906617 -0.425653 -0.509259 1.292945 1.557387 -0.134046 -0.299747 -0.746107 1.308723 -1.163720 -0.137361 1.018069 0.432503 -1.004742 -0.128537 1.178555 -0.975051 -0.916064 -0.649653 -0.295774 -0.507369 -1.230970 0.260688 -0.786665 0.284978 0.706108 -0.105135 -0.645451 0.437808 0.194686 0.045575 0.089161 1.344036 1.420196 -0.912694 0.387580 -1.104826 0.747483 -1.876151 -1.406909 0.454626 -0.349884 -0.642901 0.031553 0.131096 0.907069 -0.271396 0.309242 -0.001473 -0.407595 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -2.406357 -1.246230 1.275497 -6.043022 6.276857 3.739224 2.302992 -2.168701 -5.806083 -1.061999 0.933913 -6.025440 -2.224304 8.305620 -2.608069 6.025265 9.182249 1.156193 -2.265242 0.020989 7.480816 -1.249243 8.785319 5.254852 -6.496342 -0.856460 -0.395858 3.411431 0.367569 4.397190 -0.132807 -4.538168 2.582879 -5.563554 -0.894369 -4.726543 2.120216 1.848989 3.559852 -9.745957 1.706058 2.032798 -0.050283 -1.999541 -1.586228 0.434237 5.293336 6.403265 -2.934691 1.459784 4.474234 1.537902 -1.015245 2.324421 -0.582190 1.130557 0.871043 -1.325628 -4.794157 -2.822881 -1.024379 -2.978422 2.272383 5.858029 7.985590 0.240653 0.771351 5.343046 0.225998 1.746141 3.151575 0.777036 -1.033779 0.316520 3.812589 -5.852314 -1.950245 -9.572487 -2.196982 -11.381279 -4.096772 -1.584915 3.593957 2.229810 3.275107 -0.371797 6.485628 -0.558527 -0.108639 7.211269 7.701412 -5.700349 -2.970101 -7.219764 -4.747090 2.168507 -3.759379 -1.452365 2.484660 0.839449 -5.542229 -4.227154 0.941618 2.782450 -1.751871 -4.657661 0.570698 5.810520 -6.163262 -6.184696 -1.338895 4.656459 -2.869557 -10.298768 -1.500563 -2.706782 3.223991 0.482628 0.689790 -5.640178 0.987666 4.722674 -2.270613 -3.203190 -2.382448 5.722330 2.985498 2.005017 1.653384 0.235877 0.689242 8.290231 4.111235 -3.406143 -1.164516 0.346568 -1.692129 1.437618 -4.227070 -2.781650 0.952205 -7.101343 0.646235 5.869300 -3.501525 -1.758449 0.741997 0.632530 3.788245 17.195786 -0.008954 6.652480 3.262526 -7.913274 3.001976 -1.570113 -0.937386 1.308039 2.713207 0.584399 -7.497007 -6.106534 3.575309 5.289700 5.446462 -5.597157 -2.095420 -2.327368 -0.382629 0.576485 -1.300054 3.930338 -1.078995 -6.100991 -1.142900 3.433738 12.842057 -2.367899 -3.134572 5.360269 3.767406 -3.848697 -6.949550 -3.292082 -4.184073 -0.476041 1.995589 -0.948765 3.120675 8.618402 -10.682266 6.047838 -0.122636 -0.294092 3.468066 -0.178315 -5.205002 -7.432081 -2.023675 5.691424 7.210494 -1.889680 1.111981 1.241161 -4.837264 1.161580 1.065462 0.697678 0.050739 2.176042 -0.894361 -4.715141 -4.304832 1.338391 -2.468773 -1.241361 -0.662757 2.922948 2.080927 -8.463719 7.028198 -1.859967 -1.939269 2.932387 -0.530349 6.946042 -5.422019 -7.200092 4.421752 -0.524613 -2.326368 -3.668089 1.644519 4.325354 2.259293 1.118257 -2.653823 -8.306641 2.867635 -1.974689 3.503683 2.683150 0.683921 4.922938 0.429151 -2.911344 -6.291525 -5.341195 -0.379523 0.268028 -4.845865 -1.820023 -1.359366 7.024044 4.855356 -0.323951 -4.211003 -1.924964 7.028709 -5.346684 -1.868240 5.904828 -0.324744 -6.835149 0.647333 7.015358 -6.365642 -1.317565 -2.802667 2.556212 -2.321138 -4.509546 2.145067 -0.055016 1.808052 0.509837 0.900788 -1.496639 1.789072 2.568637 0.933764 -1.261738 9.304479 5.929826 -3.549106 -0.634931 -4.761206 2.389074 -8.707912 -7.393775 2.696330 0.132028 -3.201769 2.564203 1.597203 6.269146 -0.079537 0.979627 -0.223423 -1.667351 +PE-benchmarks/topological-sorting.cpp__std::stack > >::stack >, void>() = -0.092970 0.087194 0.530415 -0.502313 0.379194 0.055492 0.117100 0.077446 -0.506440 -0.294032 -0.071035 -0.403497 -0.347261 0.559268 -0.254097 -0.111427 0.802033 0.343539 -0.102120 -0.225143 0.175554 -0.160641 0.596382 0.662760 -0.528524 0.062866 0.036166 0.387034 0.058593 0.688625 -0.185619 -0.538995 0.051990 0.221609 0.271502 -0.486596 -0.020439 0.052431 -0.285576 -0.935064 0.122362 0.250186 0.068660 -0.067516 0.129034 0.379785 0.597305 0.352595 -0.111741 0.143878 0.329800 0.363600 0.022504 0.102125 0.226516 0.097117 0.504435 -0.186431 -0.273010 0.076629 -0.132742 -0.377480 -0.042166 0.483017 0.567542 0.066060 -0.018339 -0.282338 -0.001047 0.162594 0.189173 0.072887 0.135786 0.141162 0.134602 -0.105216 0.128648 -0.777301 0.072168 -1.225703 -0.346728 -0.300970 0.599013 0.306199 -0.120614 -0.146730 0.565255 -0.059820 0.169901 0.263279 0.622935 -0.199401 -0.204088 -0.273521 -0.362279 0.241503 -0.176847 -0.122227 -0.030978 0.190042 -0.366040 -0.221598 0.213202 -0.058397 -0.193335 0.253786 -0.021583 0.494902 -0.703846 0.007541 -0.431024 0.286669 0.199534 -0.638231 -0.095896 -0.354913 0.327401 0.057984 -0.242172 -0.128152 0.198945 0.245748 -0.303212 0.179125 -0.695232 0.548123 0.015257 -0.068623 -0.015745 -0.059011 0.050387 0.186426 0.213612 -0.363397 -0.022221 0.181224 -0.230984 -0.151189 -0.436493 -0.068119 0.142107 -0.334093 0.132284 0.057330 -0.359695 -0.207056 -0.267146 -0.124385 0.316325 1.165391 -0.218856 0.374574 0.101792 -0.462193 0.251671 0.151222 -0.069211 0.081783 0.379727 0.189190 -0.194949 -0.383613 0.165416 0.525578 0.374842 -0.296355 0.023873 -0.185066 -0.128809 0.105740 0.185169 0.028599 -0.206889 -0.310812 -0.197605 0.057251 0.764542 0.097677 -0.651180 0.003199 0.165678 -0.115476 -0.093992 0.009612 0.056874 0.133204 0.074839 -0.152288 0.375576 0.630289 -1.436439 0.582487 -0.019907 -0.160475 0.373549 -0.125243 -0.098357 -0.512746 -0.027552 0.406296 0.744882 0.086637 -0.047465 0.097653 -0.452561 -0.092374 0.009184 0.347085 -0.301281 0.224012 0.246825 -0.489589 -0.260906 -0.444237 -0.040467 -0.001101 -0.328370 0.174962 0.070281 -1.217721 0.556511 -0.045703 -0.038134 -0.003806 -0.019567 0.120764 -0.483541 -0.522640 0.059478 -0.020314 -0.416697 -0.271564 -0.091030 0.393189 -0.185196 0.219560 -0.258530 -0.492627 0.413229 -0.127870 0.378695 0.233082 0.059279 0.496979 0.401934 -0.044956 -0.234367 -0.146286 0.340558 -0.315422 -0.105110 0.400033 -0.235029 0.279130 0.599409 -0.009969 -0.124719 -0.099516 0.644981 -0.108338 -0.175257 0.336235 -0.203760 -0.086825 0.357951 0.441990 -0.529183 -0.330237 -0.414278 -0.110609 -0.006229 -0.260931 0.278474 -0.278321 0.138550 0.205489 0.047490 -0.437476 0.221403 0.015420 -0.179953 0.075923 0.665397 0.614900 -0.217400 0.496919 -0.344787 0.264913 -0.618215 -0.304738 -0.148275 -0.186963 -0.226801 0.127456 -0.231974 0.352072 -0.028846 0.214557 -0.090141 0.124317 +PE-benchmarks/topological-sorting.cpp__std::stack > >::empty() const = -0.146834 0.178332 0.459434 -0.506570 0.472445 0.335594 0.137206 -0.217885 -0.439797 -0.182001 0.024221 -0.623143 -0.367505 0.585579 -0.284731 0.109356 0.718740 0.140785 -0.199744 -0.100455 0.260275 0.010713 0.703438 0.662740 -0.548969 0.060866 0.061857 0.323684 0.029621 0.625819 -0.294166 -0.542673 0.115534 0.080105 0.109630 -0.281834 -0.022181 -0.047935 0.030331 -0.797782 0.099174 0.213134 0.039435 -0.105728 0.035579 0.136768 0.696152 0.416733 -0.057107 0.031500 0.361115 0.295416 0.038999 0.124295 0.272110 0.011702 0.614363 -0.162935 -0.234194 -0.117559 -0.128934 -0.204868 -0.101651 0.572435 0.623247 0.135231 -0.040579 -0.106657 -0.025317 0.118730 0.109854 0.156633 0.071438 0.340717 0.112298 -0.123642 0.273865 -0.635055 -0.011565 -0.782041 -0.367800 -0.185958 0.328629 0.360084 0.116935 -0.133427 0.617844 0.011414 0.038414 0.149629 0.768167 -0.395942 -0.187833 -0.215613 -0.395309 0.152390 -0.217757 0.059775 -0.111798 0.110129 -0.436104 -0.282955 0.187293 0.055062 -0.229518 0.191296 0.022193 0.407172 -0.542811 -0.087516 -0.245680 0.176136 0.064938 -0.800762 -0.225073 -0.324866 0.188456 -0.001855 -0.238932 -0.381670 0.179486 0.268687 -0.274845 -0.036359 -0.635115 0.496849 0.213427 0.042644 -0.005640 -0.087964 0.209123 0.440201 0.088231 -0.353202 0.015349 -0.051845 -0.164494 0.010303 -0.327472 -0.042848 -0.015134 -0.367562 0.097986 0.300730 -0.327565 -0.055969 -0.261429 -0.082888 0.229109 1.361702 -0.220463 0.477839 0.182077 -0.609492 0.260295 -0.013286 -0.159766 0.029130 0.250994 0.275134 -0.397745 -0.451650 0.380629 0.594205 0.367296 -0.368489 0.120277 -0.064103 -0.103780 -0.065868 0.187749 0.074057 -0.155659 -0.363645 -0.217376 0.270952 0.892481 -0.049260 -0.661807 0.213632 0.090652 -0.017017 -0.134672 -0.104867 -0.044853 0.125158 0.106526 -0.076222 0.386432 0.687856 -1.254971 0.554395 0.066066 -0.270097 0.583874 -0.119018 -0.292529 -0.253076 0.036867 0.505160 0.548137 0.043277 -0.049596 0.012625 -0.502121 -0.099324 0.035521 0.219376 -0.307701 0.262046 0.260313 -0.537588 -0.371392 -0.415268 -0.041450 -0.111379 -0.389554 0.277263 0.038843 -1.104304 0.688370 0.100996 -0.081468 -0.028167 -0.210464 0.192790 -0.495055 -0.566587 0.138680 -0.183796 -0.260585 -0.169456 -0.016546 0.273592 -0.017133 0.309366 -0.426695 -0.459137 0.358213 -0.098635 0.409314 0.245954 0.188941 0.286332 0.341818 -0.087105 -0.301974 -0.185146 0.353901 -0.110443 -0.332328 0.247975 -0.250080 0.394342 0.556337 -0.068416 -0.196681 -0.199108 0.497941 -0.172546 -0.146684 0.337155 -0.142072 -0.394347 0.107771 0.408833 -0.343925 -0.233926 -0.376652 -0.198285 -0.245812 -0.433869 0.234615 -0.124418 0.143463 0.248259 -0.052509 -0.355721 0.226859 0.031101 -0.108989 0.139028 0.620136 0.434922 -0.174949 0.334660 -0.482657 0.283833 -0.706174 -0.519005 0.171880 -0.251803 -0.327309 -0.038717 -0.152301 0.414313 -0.034312 0.169651 -0.064326 0.101828 +PE-benchmarks/topological-sorting.cpp__std::stack > >::top() = -0.164064 0.269480 0.429867 -0.387625 0.396590 0.176320 0.126206 -0.117434 -0.298202 -0.334711 -0.081474 -0.526148 -0.506169 0.549941 -0.275137 -0.015630 0.726013 0.185111 -0.096871 -0.147607 0.245651 -0.128857 0.678610 0.622286 -0.547145 0.011959 0.189756 0.343294 0.050167 0.563117 -0.178114 -0.544188 0.165365 0.133754 0.250826 -0.324759 0.032804 -0.079257 -0.188146 -0.789202 0.054763 0.160134 0.050907 -0.081926 0.006792 0.295861 0.724364 0.411840 -0.109819 -0.031210 0.319925 0.313869 0.027449 0.149210 0.181230 -0.061824 0.440364 -0.216188 -0.268600 -0.060837 -0.140293 -0.409398 -0.113962 0.560619 0.633323 0.117677 0.026831 -0.065268 -0.125701 0.164265 0.025328 0.140595 0.210519 0.326957 0.168347 -0.167658 0.151225 -0.725875 -0.080732 -1.120754 -0.344674 -0.361534 0.284106 0.290099 0.052631 -0.076108 0.609657 0.112422 0.162247 0.222392 0.819467 -0.363690 -0.192291 -0.305724 -0.302486 0.206087 -0.272185 0.063017 -0.019815 0.105073 -0.413065 -0.316477 0.164308 -0.001618 -0.205763 0.107152 -0.051172 0.425100 -0.621077 -0.024994 -0.463445 -0.021330 0.100866 -0.806887 -0.056035 -0.249337 0.301729 0.051338 -0.160544 -0.320004 0.175973 0.323241 -0.197949 -0.044249 -0.617026 0.517993 0.133599 -0.044528 0.039583 -0.016991 0.165612 0.368138 0.267313 -0.266119 -0.082074 -0.008754 -0.297138 -0.109111 -0.360721 -0.045998 0.183409 -0.385525 0.093177 0.270392 -0.326531 -0.197066 -0.195022 -0.257849 0.365137 1.140607 -0.219598 0.342655 0.108126 -0.608118 0.237459 -0.041695 -0.208864 0.019348 0.326742 0.332417 -0.264316 -0.428391 0.323366 0.560920 0.351904 -0.314018 0.059731 -0.146772 -0.045458 -0.110880 0.142041 0.134857 -0.205144 -0.330396 -0.194235 0.262453 0.741294 -0.091529 -0.538234 0.184805 0.125582 0.006437 -0.216423 -0.078370 0.007355 0.077361 0.057236 -0.097300 0.304733 0.670526 -1.194938 0.539683 0.061930 -0.195405 0.430299 -0.155929 -0.193254 -0.440077 0.159181 0.594743 0.508823 0.058163 -0.003089 -0.074671 -0.498091 -0.091822 0.027556 0.355731 -0.267308 0.242284 0.177833 -0.505847 -0.463444 -0.383491 -0.012085 -0.119036 -0.282167 0.217502 0.141459 -1.113608 0.750940 -0.053605 -0.081798 -0.052256 -0.146431 0.179113 -0.549909 -0.624544 0.116533 -0.217422 -0.350728 -0.229696 -0.007343 0.319661 -0.093479 0.141302 -0.299895 -0.460650 0.383138 -0.066665 0.332541 0.209918 0.311897 0.479518 0.320935 -0.148396 -0.318995 -0.124754 0.257241 -0.240738 -0.285502 0.244521 -0.173959 0.375508 0.677933 -0.107228 -0.135400 -0.061142 0.500071 -0.245281 -0.254445 0.371647 -0.040635 -0.276305 0.211290 0.416987 -0.386128 -0.389820 -0.411890 -0.124179 -0.138107 -0.505493 0.122612 -0.327046 0.064020 0.355842 -0.064028 -0.382322 0.250024 0.054547 -0.072621 0.051549 0.577432 0.558762 -0.307655 0.329354 -0.445561 0.235055 -0.755989 -0.492521 0.115435 -0.135931 -0.123956 0.008489 -0.125650 0.312866 -0.079709 0.129180 -0.094286 0.000178 +PE-benchmarks/topological-sorting.cpp__std::stack > >::pop() = -0.292859 0.410027 0.735354 -0.822790 0.969373 0.842667 0.236726 -0.249301 -0.624200 -0.280817 -0.209354 -0.840921 -0.711343 1.099080 -0.447140 0.313265 1.381338 0.283227 -0.262641 -0.062211 0.656677 -0.057749 1.226127 0.955196 -0.964295 0.011087 0.335091 0.534422 -0.144597 1.283999 -0.678698 -1.118953 0.247991 -0.062405 0.272136 -0.632189 0.081676 -0.109255 -0.009729 -1.431586 0.150337 0.323430 -0.184833 -0.214099 -0.066463 0.023210 1.292752 0.767004 -0.190241 -0.107076 0.535082 0.560018 -0.084422 0.279000 0.394645 0.323709 0.769517 -0.138299 -0.538321 -0.225616 -0.279214 -0.426372 -0.099256 0.935191 1.074635 0.185465 0.024771 0.073061 -0.219536 0.166127 0.063666 0.199007 0.229019 0.504969 0.321304 -0.372085 0.138449 -1.110505 -0.125327 -1.380033 -0.591969 -0.637513 0.212200 0.457085 0.391370 -0.327500 1.137113 -0.123794 0.261304 0.346176 1.455047 -0.911361 -0.346294 -0.844193 -0.620733 0.201054 -0.458486 -0.135304 -0.030762 -0.136596 -0.752669 -0.799466 0.270475 0.218808 -0.329424 -0.027375 -0.077149 0.905180 -0.934654 -0.421080 -0.759769 0.221330 -0.170827 -1.455133 -0.426940 -0.376492 0.277595 0.062298 -0.246704 -0.997565 0.370754 0.886475 -0.474212 -0.402081 -0.521042 1.017256 0.443302 -0.122450 0.116492 -0.169559 0.280855 0.942259 0.651636 -0.493699 -0.152614 0.043682 -0.449745 -0.211598 -0.655566 -0.084879 -0.068128 -0.815201 0.040038 0.839987 -0.575023 0.072445 -0.237942 -0.325351 0.682610 2.686216 -0.463429 0.622690 0.068021 -1.260643 0.661149 0.008755 -0.424887 -0.047739 0.478123 0.556656 -1.076013 -0.799542 0.650654 0.966869 0.696934 -0.713666 0.066209 -0.461733 -0.127214 -0.135739 0.121566 0.348537 -0.315999 -0.654005 -0.363973 0.397648 1.788980 -0.398365 -1.343054 0.577186 0.258427 -0.160800 -0.482412 -0.303437 -0.367267 0.045938 0.271126 -0.275834 0.655654 1.278745 -2.025996 0.991825 -0.039181 -0.675012 0.988126 -0.259066 -0.271503 -0.364935 0.077263 1.115644 1.071728 0.112756 -0.007143 -0.187682 -0.854544 -0.067610 0.087493 0.590202 -0.377562 0.392733 0.301644 -1.096896 -0.763006 -0.600685 -0.174281 -0.428357 -0.557138 0.330795 0.073902 -1.987576 1.380351 0.106828 -0.016324 0.262985 -0.195797 0.485203 -0.897812 -1.233187 0.455830 -0.100297 -0.266141 -0.162481 0.030934 0.697682 0.144950 0.425901 -0.687482 -1.257290 0.518094 0.035200 0.705819 0.365364 0.519265 0.728638 0.509413 -0.322165 -0.692398 -0.596821 0.547002 -0.100607 -0.557959 -0.023907 -0.339830 0.899931 1.064367 -0.086390 -0.269959 -0.599049 0.949658 -0.584279 -0.112326 0.763496 -0.066406 -0.755229 -0.069126 0.901859 -0.633359 -0.726130 -0.565984 -0.054181 -0.407734 -0.885739 0.136133 -0.537211 0.150239 0.586375 -0.098307 -0.641967 0.307191 0.162782 -0.121672 0.001866 1.109868 0.773355 -0.555681 0.490868 -0.768006 0.530840 -1.351428 -0.944064 0.271451 -0.409697 -0.424399 0.069734 0.006934 0.645306 -0.267003 0.412111 0.022779 -0.327788 +PE-benchmarks/topological-sorting.cpp__std::stack > >::~stack() = -0.168099 0.123011 0.468565 -0.457998 0.501713 0.166102 0.139788 0.011299 -0.432637 -0.312156 -0.126859 -0.410257 -0.497140 0.613328 -0.269853 0.054436 0.793507 0.290278 -0.097309 -0.198763 0.341101 -0.178161 0.714328 0.583166 -0.620751 0.016275 0.095813 0.492328 0.086374 0.706834 -0.184652 -0.508027 0.162825 0.112307 0.271428 -0.506783 0.111816 0.085849 -0.269381 -0.919767 0.078180 0.209287 0.013877 -0.021934 0.032261 0.395056 0.612931 0.466731 -0.185507 0.111435 0.393881 0.320923 0.032455 0.198664 0.077647 0.046984 0.392948 -0.269576 -0.342376 -0.032567 -0.122793 -0.569893 -0.036517 0.502605 0.704571 0.015693 0.039807 -0.028361 -0.104591 0.193314 0.172376 0.106979 0.171072 0.116176 0.253885 -0.146906 0.046528 -0.770580 -0.048855 -1.280128 -0.357608 -0.459219 0.449089 0.332208 0.013632 -0.121980 0.689309 0.043836 0.150830 0.310837 0.726156 -0.379410 -0.207712 -0.459042 -0.289795 0.260420 -0.325225 -0.131806 0.033100 0.204074 -0.373913 -0.331625 0.173539 -0.064883 -0.213390 0.047492 -0.157508 0.574209 -0.775474 -0.115835 -0.559421 0.193100 0.076303 -0.778895 -0.066911 -0.281319 0.367458 0.028792 -0.026244 -0.203415 0.170113 0.357126 -0.228879 0.013076 -0.605882 0.588492 0.130141 -0.148745 0.072224 0.016580 0.032724 0.355182 0.348670 -0.314436 -0.219332 0.183119 -0.274263 -0.112497 -0.501351 -0.026867 0.209857 -0.493041 0.106032 0.228319 -0.330204 -0.200888 -0.228518 -0.214248 0.433005 1.155124 -0.145473 0.303517 0.118026 -0.558988 0.303222 0.065712 -0.112101 0.177051 0.343822 0.187582 -0.266589 -0.479493 0.219502 0.523910 0.400748 -0.380974 -0.019744 -0.256102 0.000000 -0.023883 0.075257 0.241308 -0.239815 -0.304634 -0.169055 0.096979 0.809818 -0.065542 -0.603058 0.231048 0.184216 -0.227548 -0.291477 -0.135756 -0.002445 -0.023811 0.104981 -0.111763 0.294004 0.726980 -1.273184 0.587896 0.064352 -0.158671 0.380558 -0.208801 -0.079600 -0.513850 0.024894 0.519643 0.682474 0.026924 0.022028 0.021525 -0.532961 -0.010976 0.059369 0.372954 -0.207377 0.214837 0.173458 -0.451702 -0.399855 -0.382331 -0.072144 -0.045998 -0.243700 0.206245 0.143691 -1.255055 0.647901 -0.207555 -0.105258 0.113622 -0.006362 0.293526 -0.542464 -0.630349 0.204384 -0.056934 -0.435112 -0.362334 0.063439 0.450956 -0.135526 0.110043 -0.257148 -0.595430 0.393983 -0.115154 0.258800 0.221651 0.215095 0.546030 0.343019 -0.212598 -0.369570 -0.172287 0.241957 -0.307410 -0.143029 0.281635 -0.134153 0.402641 0.719212 0.023498 -0.107265 -0.088231 0.695148 -0.284381 -0.297780 0.471725 -0.039278 -0.184003 0.374973 0.533131 -0.535157 -0.469129 -0.419888 -0.007623 0.001124 -0.422882 0.237153 -0.382493 0.109729 0.336753 0.045387 -0.446688 0.311561 0.084952 -0.142069 -0.106840 0.820841 0.682687 -0.325184 0.406689 -0.384993 0.258156 -0.763064 -0.372581 -0.042175 -0.141301 -0.131524 0.197928 -0.086148 0.389001 -0.070497 0.168490 -0.099183 -0.126116 +PE-benchmarks/topological-sorting.cpp__main = -1.048547 -0.175663 2.012483 -2.925162 2.583191 0.893100 1.130439 -0.002910 -3.220053 -1.641819 0.127711 -3.162832 -2.400078 4.090524 -1.321816 0.828047 5.123354 1.588694 -1.059617 -0.747356 2.382538 -0.870402 4.349091 3.858105 -3.263279 0.026318 -0.350773 2.242471 0.309863 2.981743 -0.146092 -2.742459 1.140779 -0.498554 0.747376 -2.675564 0.251914 0.615216 -0.587449 -5.682690 0.754328 1.754585 0.114975 -0.716929 0.114529 2.066764 3.421734 2.864128 -0.935646 0.916712 1.891861 1.063208 0.151819 0.989828 0.728569 0.120735 1.350595 -0.994354 -2.286649 -0.446923 -0.911234 -2.672020 0.096104 3.054577 3.929189 0.304912 -0.118976 0.222900 0.023154 1.225385 1.404028 0.632499 0.813328 0.309025 1.692448 -1.408338 -0.231185 -4.628531 -0.362110 -7.571776 -2.406224 -1.311183 3.737483 1.727187 0.105401 -1.055292 3.711765 -0.292557 0.277812 3.018713 4.296085 -2.010047 -1.507346 -2.587460 -1.937815 1.439551 -1.639266 -0.575452 0.981205 0.933446 -2.880720 -1.346255 0.796126 0.110064 -1.161759 -0.216040 0.024204 3.426884 -4.040647 -1.084633 -2.163962 2.035667 0.531554 -4.899627 -0.768691 -1.592102 1.946541 0.624748 -1.042198 -1.244125 1.185021 1.471965 -1.412494 -0.032630 -2.993713 3.504124 0.510278 0.304470 0.448549 0.577101 0.339017 2.564296 1.933342 -1.886656 -0.217699 0.656262 -1.212868 0.218781 -2.283537 -0.976689 1.000058 -2.909832 0.480806 1.311708 -2.222222 -1.455225 -1.202574 -0.051957 1.787640 7.934064 -0.744634 3.089103 1.489395 -3.308658 1.736534 -0.050814 -0.352944 0.676068 2.166370 0.937603 -2.311414 -2.827520 1.695295 3.475082 2.687830 -2.722886 0.044522 -0.975630 -0.167355 0.008200 0.649940 1.123807 -0.345930 -2.546830 -0.879174 1.370058 5.485589 -0.624418 -3.322131 1.252445 1.188318 -0.735445 -2.216212 -0.714287 -0.173586 0.174547 0.825519 -0.611988 1.862193 4.387269 -6.838609 3.619173 0.039519 -0.411287 2.345598 -0.262521 -1.800063 -3.848864 -0.782083 2.804526 4.346605 0.125154 -0.458179 0.476050 -3.022948 -0.141633 0.526226 1.353737 -0.966265 1.611598 0.264763 -2.225892 -1.942145 -1.640887 -0.687842 -0.049282 -1.222789 1.564064 0.867076 -6.056311 3.650259 -0.608823 -0.856275 0.209150 -0.111054 2.167059 -2.972627 -3.837155 1.263016 -0.696271 -3.125049 -2.252543 0.070168 2.252495 0.155145 0.560374 -1.429892 -3.558046 3.078131 -0.935076 2.628522 1.512839 0.356800 3.537874 2.062386 -1.331450 -2.147048 -2.095501 1.234610 -1.361132 -1.664024 0.777181 -1.109505 2.591842 3.335787 -0.129966 -1.544415 -0.842121 4.061524 -2.028927 -1.486828 2.826631 -0.567836 -1.667226 2.120108 3.424017 -3.475055 -1.367662 -2.357317 -0.116766 -0.753851 -2.145495 1.521367 -1.132133 0.886257 0.848472 0.280902 -1.731202 1.167104 0.734270 -0.435340 -0.041434 4.720498 4.130326 -2.005662 1.536633 -2.540931 1.822932 -4.300344 -2.860882 0.288012 -0.293414 -1.317007 0.846836 -0.221299 2.560544 0.151095 -0.066680 -0.927435 0.411419 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/topological-sorting.cpp__std::deque >::~deque() = -0.465508 0.560119 1.348740 -1.358309 1.821671 0.935364 0.389199 0.187749 -1.149369 -0.961424 -0.488776 -1.463881 -1.869157 1.901485 -0.718589 0.161713 2.249656 0.498184 -0.329733 -0.313465 1.093267 -0.097527 2.081519 1.302854 -1.880133 0.029523 0.151762 1.403801 -0.001125 2.180807 -0.524418 -1.830501 0.413818 0.544126 0.775400 -1.101225 0.403371 -0.009976 -0.957544 -2.508292 0.161223 1.062533 -0.362164 -0.060405 0.032246 0.964558 2.033094 1.429761 -0.681388 0.022105 1.124807 0.877114 0.033761 0.613621 0.040935 -0.134009 0.893659 -0.796433 -1.217823 -0.267013 -0.376351 -1.617206 -0.347525 1.402727 2.026649 -0.016611 0.041809 0.158688 -0.413661 0.586233 0.328674 0.354354 0.871275 0.409146 0.961567 0.261151 -0.216759 -1.722934 -0.106879 -3.391126 -1.073685 -1.499230 1.259805 1.328056 -0.059630 -0.936972 2.154365 0.058704 0.409895 1.129912 2.381363 -1.092385 -0.608865 -1.879437 -0.818818 0.725009 -1.027924 -0.511533 0.132946 0.443190 -1.129134 -0.910189 0.068950 -0.370395 -0.594950 0.048127 -0.632577 1.803410 -2.143997 -0.179537 -1.779622 0.741353 0.340764 -2.471945 -0.782959 -0.385379 0.572705 0.092683 0.152947 -0.511618 0.543393 1.033484 -0.786078 0.006081 -1.579252 1.947358 0.572086 -0.458649 0.386727 0.295679 0.363911 1.012081 1.097389 -0.759655 -0.843705 0.423152 -0.496996 -0.311963 -1.297529 0.112299 0.408536 -1.475496 0.286583 0.914722 -0.877046 -0.466886 -1.438939 -0.820934 1.355978 3.521158 -0.518669 0.803329 0.108866 -1.741778 1.151455 0.232420 -0.627144 0.318215 0.769622 0.762979 -0.671232 -1.391772 0.994911 1.527103 1.174288 -1.217162 0.493901 -0.680162 0.064434 -0.456722 0.197337 1.056384 -0.533587 -0.809774 -0.502023 0.493713 2.485713 -0.380552 -2.401969 1.071080 0.786665 -0.368972 -0.556215 -0.479118 0.119116 -0.351508 0.719655 -0.351180 0.920094 2.252919 -3.383016 1.705173 0.660066 -0.657829 1.208426 -0.774387 -0.126188 -1.048771 -0.012850 1.808221 1.913738 0.217736 -0.115985 -0.390841 -1.527440 0.139819 0.421670 1.052336 -0.364259 0.553632 0.193565 -1.162612 -1.301382 -1.444525 -0.518830 0.071656 -0.966100 0.527111 0.407939 -3.665838 2.151226 -0.594230 -0.211770 0.125802 -0.134073 1.039657 -1.507267 -2.035816 0.701168 -0.388047 -1.668291 -0.959549 0.281872 1.208749 0.009312 0.459737 -0.808561 -2.110529 1.386758 -0.091542 0.832404 0.640582 0.875073 1.633069 1.357628 -0.856128 -1.057629 -1.132965 1.204506 -0.648055 -0.523639 0.730593 -0.308379 1.235620 1.941367 -0.064586 -0.414760 -0.904732 1.821891 -0.849244 -0.889307 1.532043 -0.408635 -0.789704 0.983139 1.739308 -1.271635 -1.445423 -1.411733 0.211432 -0.355675 -1.471328 0.281442 -1.185610 0.114150 1.279955 -0.043006 -1.470382 0.771947 0.244378 -0.611085 -0.593468 2.517935 1.843466 -1.238124 1.338469 -1.259542 1.036346 -2.356828 -1.333405 0.150480 -0.797753 -0.208279 0.472902 -0.052656 0.935145 -0.398810 0.422391 -0.396987 -0.500101 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.086960 0.007450 0.225831 -0.211146 0.169658 -0.050496 0.082272 -0.081162 -0.248976 -0.114555 -0.045527 -0.118980 -0.083242 0.302936 -0.107654 0.186736 0.478788 0.241598 -0.036889 -0.211864 0.247560 -0.427696 0.406023 0.440610 -0.347358 0.038353 0.201968 0.281744 0.184535 0.333062 -0.226223 -0.038754 0.114509 -0.259008 0.177896 -0.434551 0.043542 0.125748 0.046752 -0.602423 0.040672 -0.117332 0.179683 -0.008855 -0.035543 0.281366 0.281603 0.249885 -0.097546 0.190398 0.242715 0.010670 0.075410 0.099511 0.113234 0.244356 0.360454 0.040666 -0.135334 0.053536 -0.033947 -0.413083 0.163485 0.281529 0.419075 -0.031230 0.031184 0.085228 0.009145 0.035447 0.146072 0.073544 -0.092414 0.003105 0.142572 -0.612089 0.181247 -0.731169 -0.094819 -0.910930 -0.216033 -0.236248 0.147012 -0.147962 0.201482 0.198907 0.365501 0.004164 0.103786 0.013365 0.333344 -0.364821 -0.125023 -0.135467 -0.128546 0.126088 -0.182616 -0.086527 0.196266 0.038521 -0.190779 -0.274484 0.406871 0.122972 -0.154663 -0.057771 -0.052814 0.293587 -0.430781 -0.323324 -0.321613 -0.083763 -0.155081 -0.388926 0.335742 -0.250643 0.380731 0.050963 -0.043963 -0.341008 0.056942 0.322316 -0.063867 -0.154504 -0.248873 0.309237 0.074501 -0.055283 0.042833 -0.066631 -0.034185 0.325980 0.354768 -0.204877 -0.099020 0.177883 -0.354852 -0.057219 -0.329936 -0.177203 0.252290 -0.336160 -0.059154 0.109408 -0.209947 0.010250 0.488537 -0.009811 0.212679 0.719638 -0.007904 0.174337 0.120283 -0.313920 0.203810 0.002153 0.009236 0.196014 0.282352 0.046103 -0.482344 -0.283261 -0.006866 0.301053 0.215910 -0.318034 -0.401777 -0.233038 0.008047 0.179821 -0.020583 0.054277 -0.139876 -0.203489 -0.059742 -0.036162 0.563237 -0.148395 -0.098517 0.051129 -0.099113 -0.345447 -0.619229 -0.099454 -0.257296 0.035395 -0.250725 -0.038033 0.115926 0.367148 -0.807720 0.340143 -0.272540 -0.128101 0.305223 -0.062910 -0.070185 -0.626245 0.045650 0.194094 0.402332 -0.045447 0.061814 0.155560 -0.321655 -0.036858 -0.080833 0.193846 -0.177067 0.169346 0.122923 -0.319479 -0.182238 0.006708 0.070177 -0.188262 0.048549 0.146623 0.079425 -0.653634 0.274228 -0.131401 -0.125860 0.282353 0.071096 0.114864 -0.347362 -0.305254 0.139124 0.099797 0.021460 -0.262518 -0.001258 0.288243 -0.192140 -0.159393 -0.135591 -0.335067 0.064657 -0.223509 0.098413 0.154078 0.028874 0.316880 0.097701 -0.105747 -0.299533 0.211825 -0.267826 -0.247813 -0.056670 -0.114128 -0.092274 0.286175 0.489659 0.100939 0.111540 0.157729 0.443225 -0.328050 -0.189358 0.235945 0.192466 -0.091853 0.160675 0.247827 -0.407755 -0.220114 -0.134862 -0.137724 0.138862 -0.167037 0.258194 -0.240344 0.100893 0.106233 0.041313 -0.095016 0.245711 0.044340 0.042065 -0.065312 0.445378 0.532505 -0.172406 0.015401 -0.192958 0.057261 -0.407117 -0.143055 -0.081066 0.251643 -0.181812 0.139935 0.112146 0.280380 0.040519 0.000711 0.005849 -0.166405 +PE-benchmarks/topological-sorting.cpp__std::deque >::begin() = -0.202872 0.386286 0.833724 -0.768901 0.740881 0.663745 0.189043 -0.256858 -0.591395 -0.176435 -0.161819 -0.690996 -0.517768 0.896668 -0.399165 0.147309 1.264190 0.331733 -0.258820 -0.189273 0.501414 -0.160129 1.084665 1.059747 -0.910557 0.088716 0.392530 0.531347 0.062486 1.142907 -0.746586 -0.784597 0.139268 -0.050805 0.323805 -0.661185 -0.043111 -0.154620 0.005727 -1.416468 0.125679 0.142903 -0.105700 -0.165007 0.055067 0.224360 1.196741 0.621110 -0.144701 -0.032234 0.501326 0.459086 0.015406 0.169219 0.468155 0.382453 1.055980 0.104745 -0.338463 -0.096058 -0.220767 -0.368177 -0.006361 0.894945 0.967628 0.200404 -0.037782 -0.128244 -0.013309 0.075126 0.060947 0.242278 0.126259 0.556816 0.235297 -0.560368 0.415169 -1.187655 -0.025019 -1.270032 -0.570493 -0.537621 0.234890 0.159621 0.337959 -0.187365 1.012782 -0.120191 0.279404 0.138672 1.220847 -0.796707 -0.263686 -0.529516 -0.607878 0.184427 -0.324243 -0.043659 -0.031420 -0.123919 -0.656769 -0.710872 0.454843 0.219050 -0.373789 0.221603 -0.018293 0.760374 -0.780992 -0.352142 -0.649748 0.104121 -0.146817 -1.246945 -0.260797 -0.522911 0.447637 0.043989 -0.333308 -0.923972 0.298948 0.789129 -0.426832 -0.286496 -0.594495 0.943956 0.412188 -0.118188 0.011412 -0.243427 0.250311 0.732486 0.572093 -0.494487 -0.047655 0.089640 -0.549570 -0.238206 -0.644003 -0.069346 0.051769 -0.611464 -0.037110 0.640851 -0.541499 0.137012 0.103735 -0.221219 0.526795 2.615566 -0.422937 0.596790 0.093695 -1.067311 0.592579 0.102466 -0.331137 0.046037 0.497640 0.538340 -1.244930 -0.678197 0.458356 0.927890 0.576733 -0.730285 -0.042129 -0.386019 -0.234039 -0.019455 0.217387 0.100492 -0.305176 -0.563418 -0.340214 0.301482 1.623293 -0.309597 -1.306758 0.280143 0.022696 -0.204843 -0.537440 -0.172870 -0.268376 0.149110 0.061376 -0.232281 0.652475 1.074539 -2.092426 0.902023 -0.179852 -0.683033 1.052886 -0.212143 -0.251461 -0.391656 0.145842 0.887979 0.981433 0.134289 -0.163550 -0.047398 -0.801328 -0.139136 0.017949 0.538595 -0.505640 0.448055 0.439181 -1.031418 -0.601283 -0.610279 -0.021681 -0.405799 -0.538191 0.330878 -0.162025 -1.886209 1.158023 0.176155 -0.041625 0.254066 -0.259352 0.226737 -0.835394 -1.020850 0.304624 0.022253 -0.121845 -0.228702 -0.102536 0.628955 0.032408 0.425198 -0.779203 -1.101091 0.417209 -0.136735 0.660075 0.397519 0.372359 0.654764 0.511793 -0.163682 -0.655640 -0.293573 0.435375 -0.055881 -0.483305 -0.060902 -0.421511 0.719646 1.037167 -0.125295 -0.074435 -0.472824 0.887336 -0.533418 -0.130440 0.533079 0.008439 -0.591755 -0.039051 0.667923 -0.590876 -0.588803 -0.481663 -0.355119 -0.270137 -0.676031 0.313934 -0.485343 0.178051 0.477706 -0.099053 -0.535670 0.332993 0.040843 -0.089465 0.154734 0.922134 0.905502 -0.436491 0.453935 -0.681219 0.518308 -1.158492 -0.737233 0.144851 -0.364537 -0.449572 0.009440 -0.031445 0.620249 -0.122308 0.290000 0.053010 -0.152096 +PE-benchmarks/topological-sorting.cpp__std::deque >::end() = -0.202872 0.386286 0.833724 -0.768901 0.740881 0.663745 0.189043 -0.256858 -0.591395 -0.176435 -0.161819 -0.690996 -0.517768 0.896668 -0.399165 0.147309 1.264190 0.331733 -0.258820 -0.189273 0.501414 -0.160129 1.084665 1.059747 -0.910557 0.088716 0.392530 0.531347 0.062486 1.142907 -0.746586 -0.784597 0.139268 -0.050805 0.323805 -0.661185 -0.043111 -0.154620 0.005727 -1.416468 0.125679 0.142903 -0.105700 -0.165007 0.055067 0.224360 1.196741 0.621110 -0.144701 -0.032234 0.501326 0.459086 0.015406 0.169219 0.468155 0.382453 1.055980 0.104745 -0.338463 -0.096058 -0.220767 -0.368177 -0.006361 0.894945 0.967628 0.200404 -0.037782 -0.128244 -0.013309 0.075126 0.060947 0.242278 0.126259 0.556816 0.235297 -0.560368 0.415169 -1.187655 -0.025019 -1.270032 -0.570493 -0.537621 0.234890 0.159621 0.337959 -0.187365 1.012782 -0.120191 0.279404 0.138672 1.220847 -0.796707 -0.263686 -0.529516 -0.607878 0.184427 -0.324243 -0.043659 -0.031420 -0.123919 -0.656769 -0.710872 0.454843 0.219050 -0.373789 0.221603 -0.018293 0.760374 -0.780992 -0.352142 -0.649748 0.104121 -0.146817 -1.246945 -0.260797 -0.522911 0.447637 0.043989 -0.333308 -0.923972 0.298948 0.789129 -0.426832 -0.286496 -0.594495 0.943956 0.412188 -0.118188 0.011412 -0.243427 0.250311 0.732486 0.572093 -0.494487 -0.047655 0.089640 -0.549570 -0.238206 -0.644003 -0.069346 0.051769 -0.611464 -0.037110 0.640851 -0.541499 0.137012 0.103735 -0.221219 0.526795 2.615566 -0.422937 0.596790 0.093695 -1.067311 0.592579 0.102466 -0.331137 0.046037 0.497640 0.538340 -1.244930 -0.678197 0.458356 0.927890 0.576733 -0.730285 -0.042129 -0.386019 -0.234039 -0.019455 0.217387 0.100492 -0.305176 -0.563418 -0.340214 0.301482 1.623293 -0.309597 -1.306758 0.280143 0.022696 -0.204843 -0.537440 -0.172870 -0.268376 0.149110 0.061376 -0.232281 0.652475 1.074539 -2.092426 0.902023 -0.179852 -0.683033 1.052886 -0.212143 -0.251461 -0.391656 0.145842 0.887979 0.981433 0.134289 -0.163550 -0.047398 -0.801328 -0.139136 0.017949 0.538595 -0.505640 0.448055 0.439181 -1.031418 -0.601283 -0.610279 -0.021681 -0.405799 -0.538191 0.330878 -0.162025 -1.886209 1.158023 0.176155 -0.041625 0.254066 -0.259352 0.226737 -0.835394 -1.020850 0.304624 0.022253 -0.121845 -0.228702 -0.102536 0.628955 0.032408 0.425198 -0.779203 -1.101091 0.417209 -0.136735 0.660075 0.397519 0.372359 0.654764 0.511793 -0.163682 -0.655640 -0.293573 0.435375 -0.055881 -0.483305 -0.060902 -0.421511 0.719646 1.037167 -0.125295 -0.074435 -0.472824 0.887336 -0.533418 -0.130440 0.533079 0.008439 -0.591755 -0.039051 0.667923 -0.590876 -0.588803 -0.481663 -0.355119 -0.270137 -0.676031 0.313934 -0.485343 0.178051 0.477706 -0.099053 -0.535670 0.332993 0.040843 -0.089465 0.154734 0.922134 0.905502 -0.436491 0.453935 -0.681219 0.518308 -1.158492 -0.737233 0.144851 -0.364537 -0.449572 0.009440 -0.031445 0.620249 -0.122308 0.290000 0.053010 -0.152096 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/topological-sorting.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::~_Deque_base() = -0.853431 1.531773 2.312855 -2.951417 3.055930 3.837206 0.653660 -1.149561 -1.952866 -0.350063 -0.423691 -3.131373 -1.957773 3.423975 -1.489927 0.685292 4.243777 0.455799 -1.141382 0.389244 1.749905 1.310904 3.688843 3.138785 -2.781577 0.046726 0.887011 1.109684 -0.992728 3.950409 -2.227452 -4.307718 0.421825 0.310221 0.305595 -1.292814 -0.182621 -0.892587 0.546962 -4.215108 0.603496 1.376626 -1.151003 -1.020101 0.010662 -1.302183 4.450678 2.196520 -0.297404 -0.958253 1.446988 2.410339 -0.575640 0.529208 1.687442 0.863651 2.591885 -0.157293 -1.233409 -1.062912 -0.936232 0.446236 -0.727993 3.154381 2.992125 1.124963 -0.195977 -0.417254 -0.393933 0.350001 -0.191606 0.687419 0.713083 2.412882 0.510445 -0.212463 0.568791 -2.764137 0.116626 -2.016670 -1.787586 -1.238712 0.359702 1.967865 1.163307 -1.742482 3.311028 -0.778501 0.673380 1.122049 4.693174 -2.486261 -0.912210 -2.333472 -2.543816 0.402369 -0.931489 0.113958 -1.023102 -0.833289 -2.554676 -2.530795 0.136120 0.876712 -1.027828 0.357630 0.380862 2.456741 -1.932071 -0.820508 -1.362140 1.357794 -0.369320 -4.659105 -3.055261 -1.405208 -0.078846 0.010458 -1.490800 -3.487404 1.218422 2.479003 -1.808277 -1.209000 -1.296446 2.934450 1.768526 -0.058622 0.016061 -0.923156 1.384011 3.028185 1.029332 -1.637421 0.324274 -0.508827 -0.754461 -0.645191 -1.687408 0.110584 -1.307507 -1.945191 0.294005 3.132583 -1.801091 0.465713 -1.771748 -0.934217 1.659766 10.035945 -1.906695 2.421938 0.276227 -4.157581 1.915567 0.086432 -1.653858 -0.803021 1.132122 2.196097 -3.758573 -2.268851 2.519656 3.234036 2.139679 -1.922853 1.298922 -0.861810 -1.012021 -0.892548 0.890535 0.495937 -0.814044 -2.181031 -1.368088 2.018275 5.750188 -0.942567 -5.224333 1.647833 1.378322 0.414601 0.036570 -0.703100 -1.106059 0.547003 1.773717 -0.979288 2.658691 3.902491 -6.294244 2.931107 0.432393 -2.433546 3.403941 -0.437604 -1.365295 0.645592 0.308096 3.656903 3.163460 0.465628 -0.277689 -0.881814 -2.491660 -0.463084 0.534472 1.514318 -1.480712 1.324720 1.236621 -3.739028 -2.234867 -2.251846 -0.814850 -1.511282 -2.672304 1.070697 -0.395411 -5.844220 4.621030 1.470715 0.332241 0.202580 -1.547997 1.356282 -2.630793 -3.860475 1.282831 -0.438533 -0.400728 0.500374 -0.230435 1.911126 1.297416 2.833014 -2.868606 -3.894701 1.667046 0.645933 2.921475 1.181600 1.596097 1.498671 1.392702 -0.476911 -1.961373 -2.948303 3.128176 0.931047 -2.451120 -0.138183 -1.508312 2.677565 2.706392 -0.860858 -1.633371 -2.976750 2.413700 -1.247606 0.575638 1.846612 -0.886391 -3.008943 -1.304149 2.488762 -1.312380 -1.679552 -1.705112 -0.250942 -2.161989 -2.895105 0.230049 -0.931848 0.597732 1.645719 -0.646143 -1.981152 0.459156 0.473765 -0.425690 0.999888 2.657839 1.186440 -1.217308 1.710864 -2.658815 1.955408 -4.083497 -3.456516 1.384267 -2.716281 -1.701754 -0.504371 -0.635634 2.016856 -0.964151 1.928686 0.256911 -0.212900 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.505811 0.844616 1.322920 -1.512303 1.543086 1.701722 0.340376 -0.888870 -0.877962 -0.216542 -0.219635 -1.105424 -0.822816 1.705381 -0.873020 0.532119 2.354085 0.313364 -0.516282 -0.302882 1.374117 -0.139575 2.150913 1.851168 -1.761620 -0.046119 1.361837 0.768937 0.208633 1.788520 -1.549284 -1.508089 0.457858 -0.720190 0.350787 -1.095301 0.052617 -0.560286 0.555997 -2.253224 0.214088 -0.529385 -0.930975 -0.368556 -0.252023 0.188499 2.329663 1.223884 -0.438266 -0.295118 1.140243 0.981395 -0.467182 0.325530 0.801724 0.816218 1.675608 0.820840 -0.418444 -0.469495 -0.463624 -0.243812 0.072946 1.819619 1.778177 0.445055 0.084881 0.362482 -0.115091 0.032075 -0.060941 0.404633 0.288146 1.256346 0.560906 -1.838358 0.373091 -2.830979 -0.384961 -2.270691 -0.891524 -1.001361 -0.388674 -0.688778 1.044067 0.029867 1.812071 -0.096075 0.478471 0.508217 2.486521 -1.831783 -0.496669 -1.200166 -1.257950 0.108387 -0.703644 0.234126 -0.002634 -0.630016 -1.282868 -1.782907 0.658860 0.755326 -0.606258 -0.369580 0.043853 1.395568 -1.201265 -0.872777 -1.104524 0.015726 -0.655304 -2.579327 -0.784526 -0.962982 1.536262 -0.062532 -0.579416 -2.383778 0.488551 2.057523 -0.768371 -1.147983 0.243045 1.542849 1.214691 0.064564 -0.015733 -0.669022 0.634838 1.939155 1.580637 -0.824879 -0.112802 -0.201128 -1.174325 -0.454448 -1.173022 -0.058521 0.210406 -1.163985 0.139391 1.879109 -0.947083 0.176151 1.463117 -0.610206 1.097887 5.739965 -0.838882 1.131834 0.095316 -2.326031 0.725722 -0.172156 -0.736517 -0.019036 0.848514 1.088384 -3.043456 -1.321419 1.145724 1.670373 1.071417 -1.846932 -0.285975 -0.821790 -0.489678 -0.223539 0.027592 0.288817 -0.689010 -1.058124 -0.698162 0.972681 3.285316 -1.052822 -2.477503 0.785187 0.215951 -0.317656 -1.248858 -0.535383 -0.773265 0.423075 0.608821 -0.441472 1.350501 2.090903 -3.991970 1.457376 -0.526783 -1.380986 1.753827 0.042586 -0.625631 -0.391340 0.507366 1.920486 1.521613 0.332285 -0.087146 -0.164610 -1.445111 -0.213649 0.102828 1.031496 -0.802525 0.716641 0.951244 -2.183639 -1.428247 -0.606435 -0.068232 -0.957687 -0.718884 0.618316 -0.880156 -3.902045 2.489764 0.403172 0.009238 0.599747 -0.734896 0.892431 -1.649228 -2.176514 0.925325 0.086326 0.351120 -0.148337 -0.046631 1.280206 0.439514 1.178358 -1.640775 -2.504522 0.451348 -0.090856 1.326487 0.608428 1.040953 1.523490 -0.342223 -0.218451 -1.786860 -0.694332 1.025453 0.436496 -1.379208 -0.778223 -0.599348 1.636616 1.793706 -0.463921 -0.267363 -0.921395 1.427207 -1.727754 0.067649 0.954529 1.226786 -1.642496 -0.508261 1.193348 -0.983774 -1.169381 -0.626488 -0.662335 -0.830230 -1.613734 0.297870 -0.794726 0.422757 0.913520 -0.015935 -0.688041 0.556871 0.150883 0.341613 0.359500 1.278355 2.245120 -1.121778 0.134800 -1.442318 1.047979 -2.357376 -2.073384 0.814217 -0.799838 -0.691124 -0.088603 -0.028103 1.300686 -0.379169 0.588725 0.328840 -0.490634 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.709235 -0.073459 0.551905 -1.471759 1.160995 0.727957 0.416206 -0.345351 -1.203372 -0.601203 -0.209255 -0.886838 -0.596819 1.939514 -0.557882 1.126320 2.688392 0.785533 -0.337170 -0.414650 1.891771 -1.364098 2.105966 1.927832 -1.733368 -0.241844 1.086641 1.294017 0.450636 1.375984 -0.469219 -1.146320 0.574418 -1.416393 0.523268 -2.030294 0.544430 0.610935 0.491414 -2.861716 0.352875 -0.406235 0.032855 -0.370517 -0.567297 0.514369 1.710990 1.526282 -0.990783 0.223706 1.348559 0.565070 -0.408211 0.522492 0.072890 0.799513 0.446167 0.506752 -0.702494 -0.297815 -0.186942 -1.228052 0.790962 1.524226 2.226910 -0.022303 0.316663 1.048742 -0.011829 0.332056 0.533704 0.145286 -0.050506 -0.131216 0.968847 -2.775126 -0.412201 -4.220471 -0.400182 -4.187474 -0.909787 -0.990386 0.526998 -0.519850 0.923710 0.069175 1.773214 -0.156185 0.405189 1.411165 2.128366 -1.630310 -0.672819 -1.813842 -1.138443 0.739812 -1.010290 -0.376159 1.000892 -0.083695 -1.174870 -1.740640 0.904170 0.714626 -0.585252 -1.517174 -0.055848 1.655486 -1.662999 -1.505080 -1.185748 0.500294 -0.742189 -2.568802 0.488520 -1.352539 1.348268 0.035028 -0.117744 -1.931847 0.172954 1.794738 -0.514474 -1.070248 -0.306121 1.682170 0.743761 -0.062987 0.305985 -0.329760 0.009747 2.091482 1.823845 -1.016917 -0.501496 0.531351 -1.458336 -0.307079 -1.886669 -0.724002 1.261938 -1.798574 -0.163787 1.397616 -1.016245 -0.345258 2.224567 -0.382421 1.295304 5.650662 -0.062300 1.063423 0.651041 -2.019489 1.274303 -0.074545 -0.283636 0.694708 1.199157 0.265854 -2.986980 -1.525387 0.464206 1.496561 1.349019 -1.755292 -1.604638 -1.065911 -0.134078 0.264731 -0.404698 0.594646 -0.711210 -1.186754 -0.387691 0.740483 3.226799 -0.830439 -0.844899 0.826593 1.034966 -1.541596 -2.777165 -0.714430 -1.726128 0.045439 -0.132963 -0.365951 1.023534 2.184196 -3.894950 1.533124 -0.629818 -0.305911 0.937686 0.014220 -0.729407 -3.004825 0.221093 1.621697 2.155302 -0.388186 0.695988 0.390546 -1.504584 0.005219 0.094226 0.786493 -0.477558 0.600436 0.051272 -1.630145 -1.189034 0.312545 -0.575074 -0.945151 0.030028 0.657760 0.350665 -3.045322 2.044706 -0.646941 -0.314792 1.137955 -0.102746 1.455647 -1.811193 -2.143257 1.168843 0.512764 0.067281 -1.013190 0.312122 1.721569 -0.182315 -0.081606 -0.634652 -2.736518 0.498962 -0.723703 0.889602 0.593173 0.392852 1.803477 0.022545 -0.534449 -2.179343 -0.613491 -0.447507 -0.280321 -1.061243 -1.142455 -0.214776 1.722066 1.952429 0.068931 -0.426830 0.081806 2.174095 -1.882157 -0.534765 1.312531 0.942176 -1.298853 0.262764 1.555403 -2.150264 -1.037501 -0.873645 0.258930 0.157070 -1.570082 0.701689 -0.772640 0.577959 0.531526 0.243706 -0.324271 0.906462 0.779214 0.399940 -0.278777 2.270779 2.357544 -1.060045 -0.360387 -1.293829 0.448423 -2.503210 -1.696996 0.173832 0.467310 -0.603631 0.677984 0.596210 1.476384 -0.228620 0.663691 0.111540 -0.844893 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.840306 -0.121491 1.077032 -1.325219 1.335500 0.514384 0.707125 -0.315721 -1.529288 -0.833130 0.006255 -1.109433 -1.232819 2.300727 -0.772064 0.988315 3.221084 1.255146 -0.417876 -0.781691 1.890268 -1.609951 2.802029 2.700285 -2.145836 -0.167943 1.009647 1.402724 0.702018 1.529592 -0.884442 -1.032391 1.193874 -1.554383 0.681493 -2.190249 0.400089 0.426862 0.241506 -3.386935 0.277228 -0.390323 -0.164373 -0.273782 -0.391093 1.670832 1.960540 1.812328 -0.827771 0.754777 1.416992 0.103920 -0.067697 0.692563 0.461648 0.774043 0.753539 0.725572 -1.107448 -0.154533 -0.517196 -2.203495 0.455626 1.871604 2.677488 0.009258 0.243044 0.714836 -0.155999 0.468006 0.764236 0.355580 0.551261 0.022013 1.349191 -2.779482 -0.221481 -4.437106 -0.844420 -5.490976 -1.338477 -1.310432 1.255011 -0.961980 0.996307 0.133111 2.271081 0.137022 0.349838 1.234966 2.717982 -2.242848 -1.014680 -1.541139 -0.831468 0.771704 -1.418870 -0.069627 1.409905 -0.250454 -1.668815 -1.840796 1.325808 0.636746 -0.757218 -1.095982 -0.212211 2.215814 -2.264261 -1.524688 -2.087110 -0.042913 -0.467012 -3.057792 0.755888 -1.143400 2.280551 0.538742 -0.566436 -1.803371 0.538987 1.845394 -0.526903 -1.218462 -0.266237 2.192191 0.684966 0.063876 0.384652 -0.020665 0.042553 2.263554 2.433909 -1.098815 -0.457589 0.522417 -1.904859 0.032183 -1.977349 -0.833096 1.677666 -2.042796 -0.001238 1.145748 -1.418446 -0.450145 2.502725 -0.101222 1.396959 5.326448 -0.188393 1.470191 0.858846 -2.236293 1.403610 -0.313205 -0.032914 0.900737 1.749136 0.430627 -3.041388 -1.826794 0.685586 2.110540 1.570595 -2.571083 -1.497115 -1.216536 0.287883 0.019528 -0.125212 0.790925 -0.433373 -1.392130 -0.399931 0.863567 3.481141 -1.496514 -1.727033 0.694837 0.264862 -1.061502 -3.173326 -0.766619 -1.090755 0.174593 -0.106455 -0.212012 0.976773 2.688920 -4.531619 2.006963 -1.038602 -0.571721 1.662677 0.180759 -0.990584 -2.984297 0.330486 1.696286 2.384654 0.395910 0.092483 0.624762 -2.077564 -0.184212 0.016972 1.193246 -0.643354 1.038815 0.308525 -1.663821 -1.569108 -0.382471 -0.087900 -1.062621 0.081291 1.059540 0.281404 -4.331890 2.238870 -0.615269 -0.829145 0.998783 0.033807 1.418777 -2.277946 -2.686213 1.194963 0.017991 -0.747507 -1.579357 0.218526 1.701969 -0.206065 -0.315646 -0.879756 -2.867894 1.301032 -0.766993 1.370476 0.797777 0.508034 2.723757 0.344639 -1.014211 -2.175846 -0.232850 -0.080955 -0.991120 -1.205392 -1.042062 -0.381963 2.001759 2.680774 0.187676 -0.143588 -0.025230 2.628922 -2.601926 -0.975993 1.833581 1.809346 -0.866056 1.003570 1.962706 -2.518968 -1.349710 -0.978474 -0.554167 0.085418 -1.684337 1.015712 -1.355719 0.761690 0.615407 0.416043 -0.472085 1.081376 0.533362 0.393091 -0.300599 2.621378 3.769571 -1.792988 -0.072485 -1.668458 0.970410 -2.912762 -1.942532 0.323563 0.649615 -0.825057 0.684513 0.654850 1.644567 0.023493 -0.350703 -0.389341 -0.645053 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.578792 0.032268 0.850649 -1.325502 1.799190 0.696759 0.473044 -0.133104 -1.325587 -0.706830 -0.225915 -1.199456 -1.226877 2.024236 -0.519463 1.191693 2.400050 0.509857 -0.383380 -0.415151 1.812611 -1.092261 2.150219 1.347308 -1.878909 -0.030959 0.468766 1.271968 0.319896 1.689759 -0.835730 -1.119707 0.693360 -1.115019 0.496700 -1.435918 0.546247 0.385051 0.126174 -2.543220 0.222375 0.231616 -0.321642 -0.099722 -0.433882 1.113219 1.676436 1.514518 -0.933536 0.510315 1.332974 0.006135 -0.089828 0.673347 -0.001908 0.553825 0.598040 0.165310 -1.267266 -0.337044 -0.321203 -1.805971 0.364084 1.277536 2.102435 -0.308314 0.104446 1.225701 -0.219500 0.343315 0.641983 0.290852 0.428968 -0.211196 1.300342 -1.606492 -0.459901 -2.885444 -0.592665 -4.198886 -1.105488 -1.247275 0.923558 -0.054865 0.692959 -0.289962 2.099898 -0.104565 0.148099 1.171585 2.259559 -1.799787 -0.772325 -2.005451 -0.744727 0.507995 -1.166757 -0.690029 1.084649 0.025012 -1.210304 -1.304611 0.760216 0.244910 -0.567387 -1.049495 -0.515595 1.910968 -2.097074 -1.310318 -1.656337 0.516354 -0.384815 -2.497297 0.232728 -0.400444 1.242943 0.214419 0.197488 -1.345535 0.393662 1.538434 -0.682992 -0.827758 -0.424437 1.923403 0.800289 -0.058315 0.558775 0.210424 0.259262 1.815165 1.916644 -0.851760 -0.886832 0.490402 -0.921900 0.026316 -1.388223 -0.538503 0.914645 -1.919844 0.003750 1.115986 -0.921004 -0.087242 0.965868 -0.296597 1.194497 3.932705 -0.169032 1.013676 0.311845 -1.833970 1.343506 -0.107578 -0.335374 0.656149 0.975167 0.348012 -1.976280 -1.589933 0.949028 1.454045 1.233609 -2.027422 -0.827087 -0.964612 0.293596 0.038543 -0.353386 1.186598 -0.326749 -0.953879 -0.337093 0.426495 3.226143 -1.106429 -1.616442 1.318321 0.449234 -1.057778 -2.360148 -0.877299 -0.944450 -0.361058 0.183770 -0.204991 0.793861 2.355850 -3.423950 1.640195 -0.338399 -0.663613 1.247577 -0.309521 -0.428679 -2.300534 -0.261372 1.570509 1.995176 0.094755 0.192651 0.064554 -1.540882 0.265487 0.221689 0.773928 -0.202020 0.585855 -0.063419 -1.243374 -1.190682 -0.371400 -0.551044 -0.318827 -0.128015 0.631231 0.402260 -3.530846 1.920846 -0.756842 -0.432281 0.935016 0.235339 1.550220 -1.533139 -2.083602 1.181790 -0.032167 -0.924515 -1.202362 0.466865 1.326242 -0.037890 -0.346784 -0.644042 -2.694755 1.014424 -0.503971 0.821980 0.601490 0.498490 1.918645 0.632047 -1.043559 -1.680973 -0.645677 0.006338 -0.729555 -0.666495 -0.551459 -0.147909 1.708730 1.827730 0.296825 -0.137746 -0.460277 1.933052 -1.856761 -0.806199 1.749153 0.750324 -1.140596 0.781061 1.910693 -1.684419 -1.157789 -1.049854 0.115202 -0.258572 -1.346709 0.466900 -0.979750 0.267889 0.819637 0.178577 -0.689361 0.885101 0.426391 -0.075050 -0.914643 2.696834 2.682623 -1.527143 0.196660 -1.306886 0.897243 -2.384012 -1.609451 0.349806 0.420137 -0.574284 0.652149 0.761698 1.257454 -0.257827 -0.096454 -0.252011 -0.947223 +PE-benchmarks/topological-sorting.cpp__std::__deque_buf_size(unsigned long) = -0.327429 -0.541720 -0.250563 -0.817673 0.468122 -0.019868 0.083698 -0.359435 -0.969296 -0.056664 0.194318 -0.757189 0.224143 0.822662 -0.080890 0.841421 1.022145 0.268652 -0.326639 -0.032886 0.905333 -0.470108 0.483286 0.756256 -0.431431 0.038984 -0.352382 0.220354 0.035380 0.134618 -0.111022 -0.463374 0.118702 -0.913930 -0.190387 -0.440179 -0.015064 0.744882 0.873809 -1.037619 0.383653 0.086472 0.494882 -0.137241 -0.137767 -0.277520 0.291293 0.222818 -0.233326 0.468662 0.570466 -0.095030 -0.047276 0.075381 0.253407 0.584896 -0.052016 0.004345 -0.317731 -0.347162 -0.169534 0.228673 0.449753 0.315678 0.556743 0.019170 -0.160731 0.483020 0.343261 0.016175 0.526215 0.048322 -0.382044 -0.524368 0.238392 -0.944549 -0.205882 -1.403662 0.007313 -1.479196 -0.457595 0.351886 0.688312 0.217669 0.204654 0.046534 0.586340 -0.573112 -0.327418 0.454250 0.606169 -0.399428 -0.286993 -0.342277 -0.676001 0.038526 0.037725 -0.305577 0.433359 0.306636 -0.598475 -0.388161 0.475868 0.273325 -0.147834 -0.625247 0.339842 0.518454 -0.648351 -0.669160 0.303066 0.958437 0.061967 -0.640186 0.093663 -0.583616 -0.092612 0.034784 -0.561480 -0.646479 -0.004983 0.101245 -0.479537 -0.155698 -0.183534 0.267444 0.352668 0.224940 -0.040601 0.005915 0.037144 1.012613 -0.071374 -0.710415 0.211445 0.030982 0.057553 0.177411 -0.452970 -0.648346 0.054107 -0.703546 0.079894 0.067718 -0.415451 -0.026735 0.585030 0.325578 -0.245785 1.494956 -0.101041 0.957318 0.560549 -0.293716 0.385559 -0.029327 0.244157 0.315166 0.533187 -0.186379 -0.603168 -0.743932 0.539645 0.476010 0.329954 -0.475394 -0.667907 0.019966 0.018214 0.427035 -0.075025 -0.099405 0.109343 -0.355129 -0.092279 0.249572 1.460041 -0.037876 0.149580 0.383034 0.535792 -0.377661 -0.882989 -0.422988 -1.097782 0.104139 -0.009743 0.119812 0.474970 0.957817 -1.339441 0.531629 -0.277989 0.209257 0.308900 0.361815 -0.598951 -1.589697 -0.615724 0.196894 1.032818 -0.367488 0.404133 0.375328 -0.472082 0.001844 0.042214 -0.082258 -0.524858 0.304393 -0.068681 -0.465398 0.184824 0.488821 -0.591852 -0.161866 -0.113633 0.151272 0.619722 -0.648554 0.368004 0.093135 0.023255 0.480806 0.075593 0.798488 -0.255568 -0.316683 0.460342 0.121094 0.012248 -0.115331 0.260056 0.505793 -0.264100 -0.168467 -0.291286 -0.765809 0.551671 -0.220416 0.680265 0.057201 -0.645820 0.022934 -0.034573 -0.082889 -0.544525 -0.051469 -0.592360 -0.290611 -0.356037 -0.362148 -0.277278 0.571487 0.267002 0.300319 -0.619927 0.191528 0.622725 -0.402872 0.278854 0.558256 -0.208835 -0.647275 0.041325 0.754816 -0.780798 0.206215 -0.410641 0.147716 -0.253479 -0.144209 0.559876 0.378613 0.302607 -0.424480 -0.147965 0.274082 0.363206 0.449227 -0.006116 0.106955 1.040651 0.234868 0.092579 -0.193855 -0.525321 0.008798 -0.598732 -0.542778 0.066135 0.602087 -0.850068 0.054758 -0.068156 0.833618 -0.074877 0.231781 -0.108911 0.172724 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.310755 0.147580 0.699946 -0.671705 0.539508 0.103629 0.241426 -0.229616 -0.588818 -0.359932 -0.091261 -0.481361 -0.497314 0.923101 -0.364688 0.297061 1.370261 0.502425 -0.199682 -0.462954 0.803138 -0.855030 1.171321 1.184628 -1.028338 -0.017651 0.645612 0.747011 0.515325 0.773941 -0.551614 -0.245473 0.336708 -0.561660 0.507508 -0.980647 0.156481 0.066508 0.010547 -1.521838 0.099061 -0.284289 0.116807 -0.096939 -0.135963 0.855870 0.978325 0.753224 -0.389096 0.155626 0.705443 0.086042 0.028722 0.258402 0.260697 0.361461 0.843264 0.418668 -0.376613 -0.021385 -0.165170 -0.971969 0.313216 0.911230 1.192347 0.045013 0.117323 0.263307 0.058245 0.151716 0.238817 0.201611 0.105021 0.208194 0.515574 -1.430477 0.292269 -2.061375 -0.281998 -2.452062 -0.579518 -0.678575 0.350646 -0.566132 0.427341 0.233077 1.022943 0.122344 0.275974 0.308236 1.189204 -0.937226 -0.362972 -0.621394 -0.478121 0.351495 -0.559686 -0.027796 0.599116 -0.033159 -0.653487 -0.762786 0.738820 0.292159 -0.390706 -0.188529 -0.115837 0.882703 -0.961581 -0.605680 -0.891489 -0.213564 -0.237994 -1.334660 0.509910 -0.659539 1.082602 0.097594 -0.166647 -0.883081 0.164011 0.917059 -0.244924 -0.434131 -0.461086 1.004025 0.347385 -0.056224 0.099470 -0.131051 0.066831 0.809531 1.063262 -0.510117 -0.250506 0.236817 -1.011547 -0.167135 -0.905819 -0.330036 0.871518 -0.808495 -0.127860 0.489607 -0.580667 -0.106569 1.268325 -0.166245 0.668690 2.455986 -0.128310 0.556844 0.261600 -0.979719 0.621454 0.011363 -0.126268 0.402551 0.736191 0.299251 -1.476662 -0.809526 0.249045 0.912552 0.628350 -1.075536 -0.739434 -0.558362 -0.048523 0.114998 -0.053896 0.229882 -0.369821 -0.561124 -0.239438 0.285198 1.500581 -0.553266 -0.824917 0.234225 -0.064224 -0.597889 -1.478069 -0.278286 -0.449667 0.128200 -0.350965 -0.126148 0.511837 1.138188 -2.272875 0.912775 -0.454519 -0.386188 0.913052 -0.128385 -0.319254 -1.469081 0.274195 0.800352 0.988480 0.060807 -0.092390 0.232765 -0.913937 -0.097580 -0.076605 0.588913 -0.405162 0.448131 0.259354 -0.806242 -0.719535 -0.234662 0.059662 -0.431136 -0.004865 0.416118 -0.067151 -1.954937 1.072050 -0.288238 -0.273427 0.454326 -0.080126 0.348127 -1.035560 -1.081474 0.391532 0.114802 -0.148835 -0.763880 0.043245 0.780520 -0.262912 -0.145330 -0.542853 -1.210420 0.393054 -0.532364 0.492546 0.377526 0.328854 1.099215 0.317477 -0.284195 -1.010852 0.234380 -0.248911 -0.373158 -0.504452 -0.425066 -0.210435 0.816335 1.266015 -0.036840 0.186392 0.120906 1.104097 -1.044812 -0.563123 0.661806 0.627491 -0.439602 0.373681 0.721737 -1.016776 -0.678166 -0.478552 -0.484940 0.104322 -0.736799 0.481115 -0.631254 0.260797 0.397216 0.081767 -0.263005 0.561112 0.150615 0.158849 -0.069252 1.101679 1.722282 -0.719712 -0.000212 -0.723246 0.401129 -1.299878 -0.758661 0.100553 0.278863 -0.310006 0.262394 0.293824 0.728718 0.010271 -0.084249 -0.045124 -0.306429 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/topological-sorting.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.635914 0.463864 1.281313 -1.462158 1.598193 0.803151 0.621960 -0.379792 -1.207862 -0.889649 -0.090438 -1.247632 -1.502538 2.052717 -0.913442 0.449066 2.826967 0.715392 -0.376096 -0.722316 1.719090 -0.965348 2.683612 2.293182 -2.311495 -0.089599 1.034875 1.310367 0.657217 1.724008 -0.798546 -1.297871 0.923368 -0.778152 0.858821 -1.618381 0.331412 -0.170577 -0.167327 -2.948905 0.163859 -0.161612 -0.420037 -0.168808 -0.244682 1.575813 2.327489 1.661661 -0.921072 0.265226 1.493855 0.538721 -0.136404 0.628223 0.389403 0.260891 1.133152 0.563407 -0.970616 -0.305996 -0.552812 -1.754975 0.211331 1.968153 2.505407 0.141780 0.265884 0.522154 -0.235080 0.488962 0.456662 0.488527 0.751187 0.550087 1.314212 -1.923971 -0.060402 -3.832157 -0.665460 -4.906716 -1.243008 -1.494420 0.913026 -0.641079 0.757922 -0.076682 2.226840 0.361814 0.508450 1.227660 2.731051 -1.790356 -0.771060 -1.580789 -1.098448 0.634437 -1.226038 0.128313 0.919292 -0.147080 -1.562868 -1.543319 0.811336 0.379780 -0.702250 -0.682223 -0.317414 1.898663 -2.080096 -0.822783 -1.866792 0.001061 -0.235571 -3.093815 0.043789 -1.057601 2.067265 0.212480 -0.264556 -1.475933 0.452657 1.815523 -0.661254 -0.861077 -0.557000 2.108963 0.921483 0.114429 0.303616 -0.075653 0.262633 1.805394 2.160797 -0.859695 -0.565026 0.147179 -1.500766 -0.147067 -1.624848 -0.309320 1.503039 -1.644511 0.185635 1.251623 -1.122753 -0.583255 1.541843 -0.606574 1.481378 5.220425 -0.453654 1.372586 0.525053 -2.241049 1.041639 -0.132518 -0.347712 0.682780 1.457097 0.688143 -2.433908 -1.695378 0.935097 1.901794 1.311050 -2.309792 -0.688919 -0.902133 -0.034532 -0.276003 -0.107319 0.694784 -0.576076 -1.247462 -0.496023 0.952754 3.137521 -1.136182 -2.216293 0.801763 0.490957 -0.690794 -2.055872 -0.648578 -0.552538 0.232256 0.279081 -0.307540 1.121586 2.522139 -4.539029 1.823714 -0.461042 -0.670701 1.586730 -0.072012 -0.751829 -2.188624 0.528494 1.896703 1.925821 0.379227 -0.191020 0.204749 -1.860791 -0.036760 0.100837 1.205356 -0.681087 0.886537 0.420819 -1.693018 -1.747205 -0.885235 -0.111533 -0.571336 -0.363916 0.825574 -0.113187 -4.427910 2.441753 -0.512168 -0.621039 0.485853 -0.309114 1.169971 -2.046662 -2.539525 0.918355 -0.264769 -0.949952 -1.392181 0.186804 1.459229 -0.023541 0.302694 -1.208110 -2.699489 1.289880 -0.637092 1.270232 0.804454 0.960973 2.579906 0.331519 -0.823704 -2.117206 -0.485306 0.612659 -0.564980 -1.328853 -0.450454 -0.457063 1.691522 2.464456 -0.214696 -0.150291 -0.319332 2.243547 -2.147444 -0.960212 1.623656 1.346478 -1.080595 0.863950 1.755701 -1.848903 -1.462981 -1.118484 -0.581509 -0.199092 -1.786679 0.727021 -1.248708 0.567313 0.897780 0.283853 -0.808235 0.945648 0.269613 0.285445 -0.222459 2.273447 3.444153 -1.786833 0.217733 -1.599584 1.078187 -2.850929 -2.041919 0.506798 -0.163476 -0.402095 0.497336 0.216767 1.499899 -0.082625 -0.130324 -0.250058 -0.421446 +PE-benchmarks/topological-sorting.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.650706 1.567372 2.280989 -2.983972 4.924957 2.762123 2.013060 -1.113980 -2.480392 -2.396289 -0.310901 -3.063355 -4.275604 5.316166 -1.999803 2.380266 6.959788 1.239636 -0.500672 -1.177404 4.935131 -2.857504 7.192676 5.071574 -5.752195 -0.207895 2.593519 2.558941 0.468686 4.657625 -2.159103 -3.948811 3.297978 -3.209615 1.802986 -3.619760 0.953896 -0.656002 0.224035 -6.872405 0.186864 -0.273736 -1.586412 -0.420407 -1.304945 2.907742 6.241337 4.392200 -2.396417 0.853138 3.285783 0.573049 -0.342453 2.136320 0.980405 0.967811 1.374731 1.187555 -3.214499 -1.159111 -1.890106 -4.963877 0.432809 4.596973 6.263118 0.032022 0.886518 2.708407 -1.918988 1.218749 0.934463 1.374598 2.237044 0.877559 3.999904 -5.119640 -1.278690 -9.046245 -2.823949 -12.268106 -3.406177 -4.209354 1.272106 -1.517667 3.332661 -0.319563 5.695496 0.974605 1.284478 3.019738 7.377012 -5.615081 -2.063487 -4.625995 -2.071562 0.930752 -3.420997 0.111889 2.940394 -1.659160 -4.270607 -4.354659 2.267624 1.402499 -1.456186 -3.583413 -1.075763 5.028590 -5.261597 -3.202089 -5.322424 -0.703434 -1.695606 -8.170906 0.565369 -1.292551 4.684111 1.049213 -0.111125 -4.653323 1.456412 5.344844 -1.426822 -3.829904 0.438283 5.497886 2.647063 0.674538 1.609162 0.194763 0.564965 5.921240 6.895107 -1.301965 -1.785182 -0.168364 -3.423354 0.249273 -3.250553 -1.028805 3.124998 -4.857885 0.180574 4.070173 -2.607780 -0.911731 4.083277 -1.600968 4.030087 12.455579 -1.237641 3.444725 1.139346 -6.397019 3.034949 -1.164282 -1.134284 1.464235 3.795217 1.688809 -6.475713 -4.401456 2.914710 4.514195 3.286061 -6.357697 -2.170002 -2.690032 0.756700 -1.071633 -0.982846 2.582771 -0.556174 -3.602503 -0.867302 2.488219 8.685601 -4.259521 -5.305028 3.382827 1.086933 -1.591783 -6.257775 -2.466450 -2.488671 0.011412 0.829577 -0.892422 2.003485 6.506519 -9.778941 4.438499 -1.900850 -2.097265 4.097099 0.104790 -1.864912 -5.529529 1.163674 5.270310 4.414616 1.117780 0.105923 -0.186912 -4.546434 0.376855 0.124570 2.918528 -1.055896 2.201782 -0.022251 -4.644537 -4.950241 -1.871032 -0.394363 -2.054874 -0.314482 1.934037 0.973964 -10.732516 6.364314 -1.275580 -1.932213 1.945550 -0.055278 4.068971 -4.732752 -7.104567 3.067623 -1.447310 -2.356395 -3.121952 0.952021 3.289272 0.722880 -0.335716 -2.476883 -7.231763 3.333208 -0.850085 3.195386 2.030909 3.169085 7.141443 0.560378 -3.464232 -5.562193 -2.116496 1.143256 -1.714361 -3.664344 -2.556135 -1.007224 4.997433 6.238059 0.114847 -0.396839 -1.420209 5.549174 -6.654250 -2.026226 5.281559 4.272763 -3.265422 1.541570 5.276570 -4.129249 -4.083779 -2.351917 -0.479049 -0.954632 -5.042350 0.954578 -3.524037 1.093328 2.366966 0.662233 -1.784501 2.010925 0.825883 1.317156 -1.737520 5.741298 8.365686 -5.522587 -0.434453 -3.729667 2.464038 -7.420249 -5.674196 1.987493 0.540649 -0.832928 1.310698 1.615921 3.581709 -0.550836 -0.914796 -0.533250 -2.426021 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/topological-sorting.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/topological-sorting.cpp__std::deque >::push_back(int const&) = -1.488296 2.209396 2.806934 -3.241036 4.528690 5.197904 1.367617 -1.631541 -2.502893 -0.856619 -0.595220 -4.371124 -3.398611 5.325328 -1.862577 2.081085 6.818100 1.019087 -1.381727 0.429257 3.260996 0.042155 6.096627 4.869866 -4.187095 -0.061227 2.059236 1.371922 -1.388933 5.390002 -3.851879 -5.731530 1.918825 -1.676357 0.573276 -2.285403 0.006429 -1.398535 1.245163 -6.406137 0.621556 1.183278 -1.744517 -1.489393 -0.770155 -0.820729 6.753774 3.598662 -0.535907 -0.846302 1.867698 1.773730 -0.629635 1.230631 2.554941 1.912427 2.943737 0.875732 -2.697065 -1.449352 -1.667277 -1.309277 -0.899919 4.499905 4.844045 1.236053 -0.027620 0.866429 -1.322716 0.428888 -0.243806 1.020909 1.694256 2.923762 1.718573 -2.328511 0.110829 -5.123368 -1.359456 -5.501746 -2.960110 -2.592317 0.143201 0.848180 2.953812 -1.938777 5.121744 -0.839873 1.128880 1.372223 7.754749 -5.365171 -1.953082 -3.920720 -2.548949 0.408108 -2.254686 0.112584 0.657615 -2.570354 -4.215681 -4.535453 1.452743 1.962247 -1.459290 -1.027559 0.205625 4.271033 -3.277130 -2.703136 -3.693684 0.027566 -1.418102 -7.399707 -2.467038 -0.939105 0.933820 1.095935 -2.077304 -6.315252 2.069070 4.710089 -2.125734 -3.572406 0.080720 4.990586 2.492674 0.205521 0.846472 -0.744476 2.029024 5.759458 3.989449 -1.908070 0.077886 -0.711243 -2.415777 -0.482798 -2.464867 -0.860678 -0.841985 -3.852930 -0.048823 4.986379 -2.988071 1.148457 0.275146 -1.011695 2.915617 14.086500 -2.489548 3.444175 0.316198 -6.725106 3.624117 -0.853216 -2.376408 -1.042663 2.428543 3.243279 -6.957620 -3.643239 3.791635 5.012904 3.357909 -4.423426 0.396644 -2.223115 -0.299131 -1.366302 0.623584 1.668114 -0.441749 -3.525887 -1.642145 3.095851 9.402398 -3.590319 -7.305701 3.008475 0.754893 0.457112 -3.147749 -1.663725 -2.500464 0.468385 1.563809 -1.234229 3.103738 6.177850 -8.593147 4.566907 -0.995941 -4.017285 5.641087 -0.228247 -2.150943 -0.764659 0.722665 5.785416 4.660585 1.436650 -0.440784 -1.336113 -4.059974 -0.657838 0.457899 2.642337 -1.591348 2.205637 0.991014 -5.625207 -4.018399 -2.734092 -0.677396 -3.188118 -2.541244 1.817763 0.225569 -9.091257 7.118601 1.667735 -0.316306 1.153490 -1.355314 2.479629 -4.394727 -6.687356 2.534790 -1.070022 -0.695729 0.036705 -0.094805 2.803695 2.035534 2.102171 -3.536174 -6.700076 2.785275 0.874931 4.363958 1.746031 2.793885 3.881286 2.031870 -2.038433 -3.591762 -3.650272 2.958132 0.132035 -3.794366 -2.210800 -1.845160 4.928961 4.861932 -0.657164 -1.525100 -4.139291 3.869565 -4.136594 0.217165 3.860022 1.107575 -4.296488 -1.670940 4.420330 -2.629938 -3.060097 -2.105347 -0.812170 -2.968936 -4.820964 -0.152130 -2.595932 0.727701 2.628217 -0.843020 -2.177772 0.803908 0.729888 0.101533 0.344635 4.236406 3.794279 -3.514886 1.275118 -4.126857 2.987688 -6.648024 -5.692928 2.588493 -1.762169 -2.511378 -0.509155 0.970113 2.743871 -1.422226 0.954872 -0.056791 -1.618424 +PE-benchmarks/topological-sorting.cpp__void std::deque >::_M_push_back_aux(int const&) = -1.597232 1.912867 3.369801 -4.068448 4.858931 4.824190 1.416533 -1.617534 -3.319078 -1.216159 -0.271961 -5.503812 -3.913333 5.755202 -2.221657 1.679450 7.438982 1.156149 -1.804165 0.018657 3.213906 0.498228 6.731911 5.600149 -4.789446 0.030487 1.406027 2.133313 -0.765893 5.438834 -3.607623 -5.744216 1.837312 -0.901814 0.761644 -2.313556 -0.024489 -1.337367 0.834723 -7.063951 0.850011 1.683772 -1.316156 -1.363288 -0.460263 0.380450 7.144818 3.993566 -0.685358 -0.747944 2.583530 1.943286 -0.291550 1.292180 2.520436 1.114195 3.911836 0.568620 -2.837908 -1.621905 -1.697314 -1.599802 -1.183675 4.989980 5.510607 1.351087 -0.332733 0.344990 -0.630256 0.771478 0.354604 1.191739 1.981132 3.065960 1.859499 -1.604476 0.661049 -5.638461 -1.041138 -6.766095 -3.260229 -2.440355 1.610398 1.346419 2.110662 -2.342446 5.659224 -0.630339 0.873567 1.648899 8.163629 -4.986153 -2.187410 -3.860255 -2.912345 0.901381 -2.395138 0.297798 0.807597 -1.464009 -4.511870 -3.853551 1.266550 1.311728 -1.783723 -0.059135 0.266887 4.525387 -3.798421 -1.869247 -3.681657 0.848103 -0.335694 -8.076333 -2.959435 -1.539881 1.096262 0.858729 -2.370294 -5.438921 2.060896 3.985560 -2.569557 -2.436076 -1.647261 5.482565 2.549598 0.432450 0.638263 -0.412035 2.345138 5.478516 3.206689 -2.540687 0.075612 -0.715878 -2.292371 -0.245402 -2.961318 -0.782526 -0.230183 -3.939032 0.434183 4.512939 -3.301650 0.618396 -0.715983 -0.803871 2.820692 14.706008 -2.513531 4.092258 0.879005 -6.599468 3.681489 -0.534508 -2.111764 -0.728350 2.463240 3.300014 -6.276515 -4.112544 4.144315 5.559949 3.690735 -4.913688 1.217161 -1.710539 -0.340658 -1.528772 0.945227 1.705163 -0.547661 -3.559680 -1.802907 3.474219 9.590155 -3.003414 -8.196621 2.859649 1.004511 0.661863 -2.661347 -1.590006 -1.669269 0.636971 1.781836 -0.886984 3.567175 6.860611 -10.050923 5.056002 -0.012834 -3.654510 6.263132 -0.409214 -2.575873 -1.306656 0.506766 5.799368 5.176669 1.500176 -1.031746 -1.002976 -4.527577 -0.778175 0.755231 2.619405 -1.873084 2.300752 1.343065 -5.228249 -3.999410 -3.703722 -0.780667 -2.251735 -3.189627 2.351249 0.034120 -10.243489 7.376995 1.498105 -0.616989 0.371307 -1.951624 2.430466 -4.837878 -6.683971 2.242163 -1.576166 -1.922822 -0.834291 0.060985 2.819697 1.666430 2.848231 -4.065974 -6.709836 3.725903 0.228380 4.720225 2.071908 2.530734 3.891671 2.861029 -1.796971 -3.677549 -3.542385 3.504436 -0.077664 -4.047197 -0.909428 -1.965207 4.799122 5.224058 -0.952160 -1.719576 -4.088129 4.208000 -3.909497 -0.542660 3.962883 0.453382 -4.373032 -0.476168 4.625562 -3.160181 -2.889675 -2.841543 -1.543007 -3.105430 -5.063680 0.504362 -2.335947 1.039508 2.745792 -0.834294 -2.601323 1.251891 0.575071 -0.448380 0.652993 5.154537 4.733987 -3.363747 2.003327 -4.816016 3.550670 -7.206506 -6.050973 2.752775 -2.484751 -2.913911 -0.513427 0.533582 3.266975 -1.233547 0.778345 -0.746412 -0.509570 +PE-benchmarks/topological-sorting.cpp__std::deque >::size() const = -0.389187 0.478416 0.476187 -1.346852 1.442644 1.442268 0.392639 -0.832331 -0.953838 -0.035071 0.195885 -2.039872 -0.765643 1.182347 -0.694582 0.751905 1.850018 -0.100356 -0.689597 0.023328 0.636284 1.033674 2.015987 1.598727 -1.221540 0.103309 -0.035486 0.351473 -0.373156 0.878272 -1.034814 -1.556375 0.421719 -0.270732 -0.220379 -0.028059 -0.148506 -0.575312 0.906443 -1.603693 0.316695 0.342675 -0.067023 -0.407649 -0.159470 -0.188807 1.980865 1.072141 0.067279 -0.295927 0.921885 0.745777 -0.001421 0.313823 0.574280 0.165245 1.239472 -0.249876 -0.555406 -0.926244 -0.364464 0.472545 -0.384809 1.436055 1.273720 0.546380 -0.366347 0.220669 0.289470 0.080522 0.175795 0.520949 0.202125 1.118973 0.218917 -0.225121 0.542250 -1.002958 -0.186349 -0.920279 -0.969282 -0.256797 0.278606 0.613600 0.792408 -0.382394 1.611618 -0.280376 0.118925 0.297808 1.901216 -1.389790 -0.542852 -0.645162 -0.886249 0.037235 -0.404616 0.355662 -0.161458 0.048471 -1.311552 -0.659009 0.153734 0.377784 -0.524477 0.043283 0.471301 0.497233 -0.646551 -0.376810 -0.476212 0.716873 0.053221 -2.210860 -1.164349 -0.431917 0.030941 -0.099283 -0.774705 -1.650647 0.388699 0.689929 -0.905562 -0.448555 -0.783184 1.005027 1.026922 0.359981 0.216825 -0.121940 0.911070 1.933756 0.106542 -0.897974 0.103456 -0.466801 -0.225096 0.144872 -0.455206 -0.162683 -0.532311 -1.080502 0.718767 1.391977 -0.821404 0.213261 -0.630957 -0.039533 0.409409 3.720589 -0.765649 1.485858 0.542336 -1.687855 0.577503 -0.641023 -0.547651 -0.406623 0.333835 0.866110 -1.284489 -1.159790 1.405427 1.512035 0.931380 -1.099915 0.963538 0.186728 -0.106146 -0.458890 0.244429 0.359832 0.105866 -1.012686 -0.501133 1.236773 2.801790 -0.336260 -1.493612 0.897312 0.466407 0.530650 0.018622 -0.581803 -0.604449 0.266437 0.943496 0.158539 1.029659 1.825272 -2.275595 1.111616 0.228725 -0.795003 1.727448 0.119140 -1.064893 0.403617 -0.050393 1.404118 1.146238 -0.005507 -0.159081 -0.273250 -1.026824 -0.246616 0.280506 0.384692 -0.649800 0.591116 0.656332 -1.480716 -0.758053 -0.902397 -0.197274 -0.299720 -0.986705 0.783315 -0.134251 -2.432050 1.947327 0.719998 -0.294453 -0.116674 -1.079580 0.765915 -1.094543 -1.288024 0.645484 -0.647551 -0.116844 0.204470 0.098485 0.474339 0.555362 1.548636 -1.501116 -1.355779 1.087325 0.344866 1.454408 0.622893 0.498582 0.249394 0.029963 -0.196935 -0.766867 -1.137214 0.833939 0.426976 -1.372166 0.382355 -0.699816 1.216895 1.078725 -0.544015 -0.740627 -0.930924 0.687971 -0.849116 0.160915 0.788844 -0.024262 -1.667366 -0.287159 1.050183 -0.552447 -0.335367 -0.792596 -0.391905 -1.246050 -1.351774 0.260103 -0.156889 0.386134 0.691252 -0.395046 -0.489609 0.295373 0.033425 -0.108937 0.511914 1.277466 0.584042 -0.144115 0.429969 -1.501886 0.883511 -1.805206 -1.860049 1.145674 -1.061442 -1.231151 -0.427587 -0.150853 1.218390 -0.414508 0.267374 -0.365854 0.326753 +PE-benchmarks/topological-sorting.cpp__std::deque >::max_size() const = -0.259213 0.088588 0.536903 -0.656534 0.553188 0.014424 0.177284 -0.171670 -0.544391 -0.437094 0.005716 -0.587248 -0.552758 0.772236 -0.362562 0.148416 0.947700 0.235316 -0.190841 -0.359704 0.606270 -0.391341 0.928095 0.779841 -0.857746 -0.023515 0.276152 0.664607 0.415877 0.560691 -0.127479 -0.339648 0.220207 -0.103546 0.332483 -0.585427 0.194842 0.090826 -0.136221 -1.055124 0.094897 -0.011928 0.059960 -0.031306 -0.080088 0.741767 0.718734 0.647059 -0.379296 0.123958 0.699655 0.237305 -0.015698 0.236214 0.025869 -0.121740 0.548988 -0.060382 -0.324427 -0.111957 -0.094563 -0.729054 0.102344 0.731930 0.964741 0.005086 0.083383 0.208951 0.023166 0.251469 0.256298 0.161404 0.151958 0.151548 0.412244 -0.642297 0.119854 -1.454017 -0.143733 -1.963120 -0.442577 -0.446301 0.525433 -0.006655 0.059487 0.088617 0.841202 0.236278 0.068366 0.502040 0.928762 -0.480458 -0.268771 -0.518551 -0.462150 0.359882 -0.463879 0.018962 0.241986 0.344820 -0.492590 -0.361859 0.257562 -0.017820 -0.295644 -0.088765 -0.145492 0.645184 -0.907718 -0.156897 -0.527290 0.148146 0.100544 -1.093672 0.120306 -0.499049 0.803165 -0.066646 -0.006716 -0.275788 0.090724 0.435764 -0.252794 -0.014337 -0.743127 0.677722 0.270155 0.029514 0.060304 0.006742 0.119788 0.489858 0.483034 -0.447779 -0.282462 0.089303 -0.459424 -0.014865 -0.651900 -0.109323 0.647632 -0.599692 0.146972 0.281615 -0.387322 -0.396396 0.344664 -0.233775 0.479840 1.584591 -0.057959 0.492364 0.281164 -0.675927 0.264021 -0.014758 -0.100258 0.345169 0.431684 0.173190 -0.484239 -0.672728 0.345955 0.680425 0.496591 -0.693269 -0.244363 -0.200049 -0.035541 -0.034057 -0.008622 0.275841 -0.341879 -0.381905 -0.220413 0.298616 0.952613 -0.130419 -0.561700 0.296175 0.237273 -0.352329 -0.674901 -0.207747 -0.043469 0.062084 0.023712 -0.047862 0.424538 0.937094 -1.803808 0.681359 0.078261 -0.057499 0.445632 -0.157867 -0.304425 -1.065722 0.122012 0.623671 0.698302 -0.042456 0.019041 0.152392 -0.698822 -0.008236 0.056788 0.344228 -0.258784 0.264918 0.193483 -0.445738 -0.576901 -0.275881 -0.085756 0.030876 -0.127427 0.354735 0.025469 -1.589597 0.842330 -0.367849 -0.209100 0.062147 -0.146756 0.434050 -0.751624 -0.759341 0.262907 -0.131567 -0.482105 -0.657141 0.142680 0.525071 -0.242246 0.077635 -0.357783 -0.737080 0.437362 -0.401668 0.309009 0.276659 0.273800 0.763146 0.185202 -0.183588 -0.684213 0.045242 0.118034 -0.309548 -0.376129 0.212637 -0.092545 0.518615 0.843821 -0.081261 -0.086626 0.171769 0.796014 -0.553686 -0.553060 0.517542 0.245151 -0.391108 0.567248 0.577418 -0.718202 -0.446881 -0.559411 -0.206222 -0.025878 -0.607311 0.376495 -0.282770 0.193513 0.350627 0.105909 -0.360763 0.487070 0.127923 -0.008727 -0.083583 0.982992 1.250875 -0.473903 0.174269 -0.619166 0.309363 -1.022347 -0.675877 0.142603 -0.016632 -0.138520 0.206719 -0.058998 0.597782 0.005966 0.039726 -0.140068 -0.009580 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.531006 0.764457 1.172356 -4.640936 4.621065 5.505256 1.284710 -2.829308 -3.628428 0.417708 0.769429 -6.225003 -1.863111 4.692148 -2.105362 3.140234 6.288677 -0.034767 -2.515682 0.581717 3.047317 3.233145 6.237127 5.086536 -3.854653 0.068352 -0.322329 0.726107 -1.255598 3.181488 -3.226144 -5.379427 1.489448 -1.711937 -1.081256 -0.709331 -0.328138 -0.943758 3.686016 -5.466540 1.297294 1.482513 -0.503152 -1.647506 -0.655803 -1.632580 5.882142 3.523135 0.026416 -0.816792 2.783179 2.403297 -0.511660 0.941855 2.136096 1.256070 3.061652 -0.195952 -1.855002 -3.065323 -1.260083 2.115249 -0.838118 4.545900 4.243769 1.710176 -0.977341 1.028592 0.874952 0.215554 0.840799 1.316345 0.582790 2.861826 0.847626 -1.074933 0.876111 -3.596977 -0.461410 -2.683081 -2.801433 -0.259615 0.943532 1.896368 2.792035 -2.116685 5.015189 -1.534086 -0.161107 1.651625 6.277671 -4.658605 -1.788272 -2.739882 -3.338717 0.031126 -1.342217 0.799359 -0.281161 -0.648482 -4.381463 -2.904635 0.183462 1.794241 -1.556683 -0.709399 1.692162 2.330189 -1.950874 -1.959118 -0.703612 3.086168 -0.475135 -7.073139 -4.206211 -1.955314 -0.611838 -0.271809 -2.743651 -5.777416 1.312080 2.579209 -3.018960 -2.209335 -1.409278 3.423306 3.440943 1.287636 0.381392 -0.713524 2.554206 6.635345 0.284434 -3.146534 0.811431 -1.407411 -0.454775 0.659606 -1.906265 -0.873190 -1.655749 -3.594766 1.429151 4.719967 -2.723160 1.199629 -1.203675 0.324906 1.178195 13.652124 -2.320397 5.029430 1.896458 -5.664058 2.290404 -1.587466 -1.499928 -1.104420 1.287643 2.345628 -5.429121 -3.981261 4.572688 4.875496 3.246151 -3.644774 2.450712 0.111373 -0.602698 -1.380101 0.618408 1.006662 0.205059 -3.577672 -1.654469 3.937146 9.619851 -1.631928 -4.820271 3.090550 2.205468 1.142114 -0.295587 -2.065386 -2.866125 0.935052 3.091132 0.132487 3.809260 6.151616 -7.298731 3.854814 0.288894 -2.644968 5.277070 0.676294 -3.709512 1.118204 -0.641103 4.454913 4.291034 0.007163 -0.079069 -0.479233 -3.502135 -0.646660 0.884680 0.938198 -1.984700 1.843467 1.830625 -4.772302 -2.320269 -2.039813 -1.321101 -1.729480 -3.125206 2.420716 -0.160698 -7.243956 6.166013 2.620781 -0.482506 0.215090 -2.976567 2.979510 -3.556363 -4.549856 2.505236 -1.339198 0.033360 0.871240 0.427416 2.087772 2.083041 4.825959 -4.829830 -5.423369 3.434890 0.994850 5.067698 1.819113 1.076078 0.728717 0.047450 -0.660607 -2.984158 -4.566187 2.767064 1.878478 -4.665564 0.189090 -2.185328 4.424205 3.023969 -1.332981 -3.129468 -3.503244 2.694851 -2.826593 1.244731 2.817958 -0.060407 -5.697081 -1.741901 3.804312 -2.194524 -0.808835 -2.251513 -0.756513 -4.096060 -4.227017 1.035582 0.071497 1.632952 1.392580 -0.970595 -1.242209 0.739760 0.743078 -0.388842 1.796213 4.432978 1.346125 -0.624079 0.903670 -4.827783 2.922086 -5.786962 -6.105671 3.563184 -3.366224 -4.372181 -1.102837 -0.290319 4.205218 -1.182136 1.508181 -0.751927 0.711654 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_node() = -0.467795 -0.161951 0.606725 -1.258905 0.961689 0.286940 0.305114 -0.414688 -1.215522 -0.450175 0.183508 -1.193784 -0.571725 1.453187 -0.511194 0.580728 1.857935 0.470953 -0.465309 -0.447254 1.116815 -0.549529 1.566857 1.548537 -1.301985 -0.012327 0.264165 0.900338 0.496300 0.766310 -0.355534 -0.697202 0.383692 -0.673484 0.227142 -0.952222 0.149830 0.300508 0.390173 -1.918666 0.316817 -0.041328 0.126967 -0.162711 -0.192747 0.726557 1.185442 1.018052 -0.512372 0.359810 1.123854 0.221681 -0.047679 0.307752 0.323096 0.188764 0.793541 0.258368 -0.521589 -0.274984 -0.229224 -0.699504 0.222361 1.169860 1.535305 0.105099 -0.059582 0.369593 0.265036 0.306062 0.600752 0.232275 0.069370 0.112797 0.629677 -1.330028 0.093489 -2.612931 -0.187726 -2.980957 -0.786482 -0.323832 1.027611 -0.176277 0.259497 0.055230 1.335276 -0.008545 -0.058008 0.806237 1.590140 -0.919208 -0.567904 -0.781753 -0.886583 0.504724 -0.588479 0.026100 0.636470 0.359936 -0.980021 -0.709392 0.568106 0.197833 -0.507437 -0.353812 0.082638 1.155277 -1.238506 -0.553540 -0.575771 0.627265 0.084847 -1.829021 -0.087358 -0.916074 0.977965 0.032992 -0.491575 -0.860752 0.201041 0.659808 -0.590041 -0.212821 -0.692413 1.078294 0.560809 0.279328 0.029061 -0.011333 0.319574 1.269419 0.628088 -0.928743 -0.078307 0.100300 -0.604443 0.121625 -1.087021 -0.470092 0.765941 -1.077033 0.268395 0.542863 -0.804965 -0.393413 0.908252 0.029316 0.492494 3.351818 -0.154278 1.168383 0.684241 -1.141900 0.611941 -0.040098 -0.005736 0.492482 0.799176 0.230623 -1.292446 -1.179548 0.695802 1.267771 0.909960 -1.387068 -0.565467 -0.297076 -0.089510 0.089220 0.026557 0.273873 -0.327117 -0.692429 -0.333729 0.714768 2.059389 -0.401957 -1.134311 0.457403 0.506203 -0.487659 -1.320359 -0.414839 -0.628621 0.236746 0.123147 0.003249 0.865132 1.695018 -3.091276 1.187456 -0.063266 -0.148881 1.015597 0.141975 -0.801290 -1.810832 -0.064758 0.902731 1.432524 -0.008739 -0.000623 0.407360 -1.173753 -0.122314 0.175736 0.388958 -0.546775 0.529967 0.260002 -0.809730 -0.689756 -0.234330 -0.325578 -0.156752 -0.313013 0.702058 0.058712 -2.522244 1.307786 -0.192819 -0.348633 0.253538 -0.363412 0.890485 -1.217235 -1.275884 0.561936 -0.135768 -0.546849 -0.807551 0.190250 0.874065 -0.184620 0.328201 -0.741736 -1.416050 0.855673 -0.629868 0.912795 0.513491 0.046988 1.038641 0.166222 -0.288862 -1.160717 -0.143821 0.165100 -0.319002 -0.842113 -0.141506 -0.303103 1.024032 1.260872 0.002761 -0.432045 -0.016505 1.309436 -1.082602 -0.531014 0.887083 0.377325 -0.868000 0.642157 1.064187 -1.346501 -0.378713 -0.810923 -0.398824 -0.247794 -0.953811 0.742075 -0.200068 0.508050 0.238028 0.082787 -0.281691 0.745947 0.299365 0.065591 0.100125 1.612091 1.839167 -0.666813 0.075738 -1.199349 0.625326 -1.672218 -1.314220 0.363773 0.053511 -0.762271 0.189807 -0.016018 1.147252 -0.003144 0.070922 -0.312517 0.190700 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.408233 0.257630 0.937473 -1.063627 0.886327 0.736787 0.275502 -0.540819 -0.782455 -0.226792 -0.001331 -0.858809 -0.578711 1.201998 -0.617772 0.380242 1.620213 0.391096 -0.415676 -0.341364 0.955859 -0.334712 1.515175 1.422408 -1.279209 -0.056730 0.651994 0.823326 0.436632 1.087845 -0.795715 -0.674461 0.331819 -0.445996 0.342291 -0.905889 0.151945 -0.082278 0.245003 -1.687864 0.176012 -0.204789 -0.171302 -0.192709 -0.114622 0.506729 1.327260 0.943592 -0.355302 -0.027843 0.916509 0.456223 -0.114208 0.271231 0.417704 0.327462 1.200707 0.397114 -0.363482 -0.279291 -0.236596 -0.559085 0.166109 1.252888 1.430497 0.245121 0.101542 0.166707 0.087551 0.155173 0.237689 0.260313 0.082426 0.615052 0.453570 -1.225374 0.441258 -2.093179 -0.219142 -1.983886 -0.657219 -0.619265 0.242814 -0.289313 0.542955 0.025152 1.261689 0.090123 0.196299 0.386219 1.568630 -1.124976 -0.405915 -0.737439 -0.834306 0.312440 -0.612901 0.144411 0.211330 -0.035453 -0.867485 -0.953888 0.534535 0.403572 -0.465284 -0.065142 -0.019233 1.001951 -0.958073 -0.572611 -0.698485 0.089734 -0.253977 -1.775171 -0.167207 -0.883213 1.027757 -0.054764 -0.318091 -1.196956 0.229929 1.093694 -0.446002 -0.501690 -0.520812 1.128453 0.669533 0.035390 -0.016614 -0.312443 0.273313 1.117576 0.842707 -0.699301 -0.147070 0.005493 -0.904772 -0.130812 -1.005196 -0.156566 0.538993 -0.870645 0.006961 0.916739 -0.679662 -0.038648 0.913543 -0.189493 0.719612 3.560284 -0.318841 0.862427 0.338717 -1.360440 0.632413 0.000742 -0.243856 0.288446 0.640857 0.468151 -1.831533 -1.015770 0.603357 1.168254 0.783077 -1.229169 -0.347635 -0.480255 -0.220518 -0.091393 0.035501 0.245797 -0.514572 -0.725169 -0.410610 0.608674 1.974043 -0.544671 -1.435816 0.442919 0.114755 -0.452415 -1.087212 -0.368552 -0.415668 0.263752 0.080850 -0.156262 0.848430 1.473059 -2.770199 1.081595 -0.197456 -0.607119 1.261012 -0.133752 -0.561417 -0.866425 0.305160 1.093397 1.106164 0.101227 -0.156646 0.192135 -1.096716 -0.138120 0.038086 0.613893 -0.537983 0.507662 0.550969 -1.150601 -0.934500 -0.488558 -0.049670 -0.501416 -0.415940 0.557739 -0.363283 -2.469630 1.487918 0.004204 -0.209406 0.362675 -0.446344 0.508562 -1.230673 -1.352685 0.516227 0.031581 -0.070129 -0.590920 0.077494 0.866574 0.003163 0.506800 -1.005410 -1.481536 0.450797 -0.424136 0.773115 0.444468 0.490768 0.971418 0.235271 -0.171428 -1.198592 -0.154477 0.356544 0.014299 -0.880727 -0.305990 -0.345092 1.037440 1.322208 -0.218509 -0.116956 -0.276265 1.185160 -1.027741 -0.386221 0.703358 0.547791 -0.898736 0.075383 0.832852 -0.972624 -0.704142 -0.562038 -0.572233 -0.283307 -1.029873 0.525004 -0.455659 0.419616 0.480683 0.075995 -0.440188 0.553083 0.172927 0.126884 0.205623 1.233039 1.641132 -0.642547 0.149943 -1.037485 0.634594 -1.629379 -1.214021 0.422230 -0.336064 -0.527961 0.138381 0.060389 1.004571 -0.065968 0.220079 0.035946 -0.170876 +PE-benchmarks/topological-sorting.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.320331 0.162315 -1.089123 -3.493943 3.624266 2.971774 1.232728 -2.645382 -2.449161 0.138038 1.286933 -5.684043 -1.323371 2.294380 -1.728677 3.420007 4.950402 -0.731016 -1.932150 -0.412211 2.233910 3.319872 6.029121 4.444104 -3.170422 -0.056490 -0.273799 0.601520 -0.443700 -0.836276 -1.942444 -2.908341 1.994725 -2.960777 -1.488502 0.479822 0.012779 -1.393950 4.279893 -3.542514 0.973108 -0.858752 0.261944 -0.956285 -1.364768 0.266003 4.476074 3.197010 -0.122712 -0.336438 3.363271 1.332881 -0.163696 1.065688 0.193728 0.266913 1.388726 -0.370197 -1.199312 -3.573608 -0.644196 1.776799 -0.438667 3.648653 3.261645 1.250712 -1.185806 2.647508 1.899460 0.121347 1.208069 1.540018 0.217109 2.124055 1.114079 -2.599076 0.470763 -3.934973 -1.370716 -3.774204 -2.621597 -0.254128 0.629454 -0.549893 2.995103 0.576414 4.265578 -0.577981 0.096273 1.588610 4.134726 -4.353296 -1.781908 -1.648138 -1.685901 0.100326 -1.325203 1.562094 1.063756 0.841070 -3.683176 -1.382658 0.277562 1.302667 -1.375874 -2.225275 1.912262 0.145918 -1.047523 -1.712070 -1.180010 2.388166 0.038460 -6.103003 -2.377757 -0.906334 1.339307 -0.524383 -1.805046 -4.846334 0.230133 1.430622 -2.247531 -1.734585 -0.314386 1.492633 3.482379 1.803264 1.236151 0.363145 2.538033 7.112283 0.567608 -2.607133 -0.229076 -1.346073 -0.779338 1.125687 -1.161712 -1.150145 -0.197041 -3.687074 3.454460 4.105061 -2.161949 -0.210142 1.248574 0.468895 0.768971 8.851030 -1.218668 4.517688 2.674729 -3.955154 0.466325 -3.526929 -0.715043 -0.616233 0.812138 1.465749 -3.198758 -3.380603 3.714708 3.773138 2.519118 -3.785554 2.034885 1.283752 0.673464 -1.265209 -0.560332 1.516151 1.170934 -2.675781 -0.789992 4.343656 7.526210 -1.167371 -0.899577 2.703226 2.149935 1.337306 -1.051594 -2.417630 -2.941528 0.580549 3.388780 1.776177 2.217318 4.944894 -4.465527 2.020300 0.340107 -0.534313 3.559713 1.877217 -3.862377 0.272189 -0.270098 3.051931 2.450376 -0.906539 0.424675 -0.074618 -2.387327 -0.513956 1.056805 0.400391 -1.226314 1.317873 1.459245 -3.055141 -1.501029 -0.455590 -0.531555 -0.287218 -0.940378 2.622199 -0.317521 -5.713653 4.615610 1.159839 -1.926590 -0.020173 -3.608246 3.496941 -2.949022 -2.625403 2.577332 -1.905867 0.493149 0.406079 1.081976 1.154012 1.587666 4.468137 -3.869468 -3.397603 3.215343 1.091436 3.886075 1.637902 0.672313 0.545166 -3.529339 -0.585099 -2.719794 -2.818040 0.268684 1.533137 -4.491469 0.498970 -1.329775 3.529671 2.630162 -1.790135 -2.290019 -0.858999 1.199278 -4.215810 0.343505 2.045200 2.612699 -5.047453 0.041177 2.713230 -2.183014 -0.090542 -1.800730 -0.624578 -3.172219 -3.895033 1.026422 -0.031950 1.578786 1.440220 -0.780485 0.397874 1.146736 0.294748 0.746792 1.111805 3.292066 2.503061 0.060639 -0.980780 -4.547357 1.983799 -4.854221 -5.887784 4.081877 -1.944484 -3.742377 -0.944651 0.160308 4.136663 -1.156638 -0.433032 -1.940446 1.163962 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_S_buffer_size() = -0.112110 -0.169443 0.031958 -0.327706 0.186556 -0.158090 0.067596 -0.103717 -0.424287 -0.173252 0.118412 -0.381119 -0.045186 0.341113 -0.102915 0.188108 0.380773 0.138979 -0.110422 -0.108159 0.206083 -0.162970 0.286025 0.362034 -0.218925 0.046730 -0.198037 0.174160 0.062216 0.140254 0.079130 -0.213855 0.070833 -0.084752 -0.023574 -0.193212 -0.002289 0.275769 0.134866 -0.437274 0.137753 0.128216 0.284420 -0.033607 -0.001934 0.112218 0.141529 0.171815 -0.062562 0.245555 0.268895 0.071311 0.042837 0.073210 0.092869 0.000808 0.108121 -0.262055 -0.143910 -0.066817 -0.053060 -0.109818 0.054879 0.199233 0.301161 0.001509 -0.049966 0.024699 0.064221 0.113237 0.256817 0.034632 -0.100920 -0.139550 0.054347 -0.166553 0.032835 -0.515991 0.012756 -0.780152 -0.202867 0.113650 0.478909 0.296971 -0.056634 0.059071 0.270319 -0.053519 -0.133741 0.204321 0.258150 -0.062147 -0.130053 -0.008479 -0.239253 0.120845 -0.051379 -0.050925 0.037375 0.319466 -0.225699 -0.007930 0.157301 -0.030847 -0.093627 -0.041748 0.085587 0.188082 -0.436828 -0.066849 0.067160 0.352398 0.170746 -0.294318 0.073130 -0.258615 0.080740 -0.011629 -0.194049 -0.003017 0.038294 -0.098492 -0.172549 0.142993 -0.491712 0.104477 0.009194 0.113379 -0.025335 0.024153 0.019110 0.254046 -0.156773 -0.305569 0.058522 0.013368 0.066883 0.126987 -0.182772 -0.190342 0.069138 -0.254550 0.152586 -0.100560 -0.180808 -0.203337 -0.095294 0.088279 -0.050656 0.324722 -0.011630 0.376005 0.277796 -0.116161 0.028232 -0.031199 0.105854 0.148502 0.199179 -0.076573 0.155774 -0.296359 0.180052 0.247146 0.184118 -0.104782 -0.131864 0.075725 0.013424 0.150374 0.060228 -0.023412 -0.025391 -0.169904 -0.068375 0.070186 0.402383 0.161324 0.113164 0.089078 0.189319 -0.110327 -0.147092 -0.088497 -0.150959 0.083624 -0.006549 0.041117 0.155045 0.376550 -0.680038 0.272231 0.015337 0.163422 0.062613 0.058633 -0.247581 -0.625703 -0.194868 0.068336 0.392995 -0.133179 0.168009 0.192030 -0.234702 -0.038341 0.001749 -0.022501 -0.202871 0.113857 0.056044 -0.136478 0.000000 0.028128 -0.124913 0.083783 -0.084701 0.149307 0.297731 -0.416652 0.152527 -0.057737 -0.067903 0.000999 0.024026 0.250359 -0.161770 -0.117729 0.074344 -0.107163 -0.232342 -0.165362 0.077226 0.145105 -0.220082 -0.017118 -0.038797 -0.062681 0.273873 -0.149154 0.196817 0.084495 -0.187048 0.051571 0.073191 -0.014937 -0.099330 0.059679 -0.087490 -0.279833 -0.073919 0.283289 -0.103763 0.145650 0.180642 0.118711 -0.249772 0.215564 0.304514 0.002027 -0.075486 0.216686 -0.176971 -0.140960 0.286940 0.267957 -0.336436 0.058278 -0.253945 0.022190 -0.043837 -0.074064 0.286494 0.145784 0.133488 -0.090896 0.012776 -0.064840 0.202220 0.108970 -0.075264 0.053608 0.466291 0.165245 0.059521 0.106505 -0.217131 -0.008666 -0.267121 -0.187231 -0.018445 0.164326 -0.287807 0.043818 -0.188420 0.320584 0.032797 0.100562 -0.118289 0.209595 +PE-benchmarks/topological-sorting.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.527554 -0.012312 0.988322 -1.454098 1.531797 0.439207 0.328911 -0.330016 -1.133553 -0.494937 -0.227878 -0.647174 -0.738070 1.693051 -0.584656 1.022522 2.042162 0.422649 -0.399037 -0.680417 1.888787 -1.221103 1.844802 1.089917 -1.816855 -0.128843 0.958451 1.421080 0.863014 1.423431 -0.906163 -0.383413 0.411341 -1.206645 0.615769 -1.545847 0.653234 0.344006 0.198590 -2.126867 0.212527 -0.498252 -0.363022 -0.019260 -0.500352 1.311093 1.280853 1.390024 -1.058855 0.292919 1.539591 0.131243 -0.297718 0.570000 -0.114993 0.637575 1.044604 0.694344 -0.789840 -0.290125 -0.163862 -1.530846 0.742947 1.253270 1.923366 -0.300548 0.254564 1.298369 0.093942 0.259653 0.630334 0.185684 0.037445 -0.142075 1.152830 -2.321318 -0.131101 -3.320091 -0.504749 -3.947682 -0.764531 -1.198806 0.347817 -1.000406 0.692140 0.326034 1.783667 0.086909 0.188978 0.987754 1.751524 -1.566376 -0.570637 -1.822480 -0.891462 0.468034 -1.050463 -0.595137 1.088966 0.174557 -0.843772 -1.222543 0.765375 0.354795 -0.514430 -0.968552 -0.512822 1.661719 -1.750691 -1.238450 -1.316132 0.380261 -0.609747 -2.171549 0.418538 -0.822570 1.893799 -0.202439 0.447675 -1.348559 0.154399 1.760735 -0.584069 -0.723687 -0.133368 1.597973 0.900451 -0.058598 0.306210 -0.145663 0.086492 1.462614 1.972457 -0.851849 -0.968190 0.519424 -1.206068 -0.191601 -1.517137 -0.386132 1.330547 -1.604932 -0.023854 1.136239 -0.700316 -0.141414 2.094705 -0.366965 1.239961 4.030559 -0.034125 0.715613 0.202978 -1.580781 0.914917 0.112075 -0.217375 0.823675 0.779599 0.154981 -2.289655 -1.457299 0.624919 1.119174 1.080429 -2.043316 -1.232515 -1.049791 -0.010195 0.293386 -0.642374 0.973980 -0.764907 -0.727912 -0.378249 0.210740 2.714716 -0.941182 -1.438234 1.070863 0.326612 -1.498757 -2.458953 -0.806410 -0.892929 -0.180011 -0.044188 -0.235538 0.870112 2.002694 -3.629686 1.362289 -0.412226 -0.598355 1.065233 -0.323879 -0.221802 -2.329220 -0.068909 1.307863 1.647272 -0.117459 0.116348 0.307085 -1.325069 0.311564 0.099883 0.740040 -0.157011 0.343321 0.232198 -1.100909 -1.113641 0.007505 -0.354039 -0.202114 0.193873 0.541874 -0.381532 -3.434535 1.677344 -0.916104 -0.264771 1.078309 0.108637 1.285577 -1.438644 -1.716375 1.073726 0.441690 -0.254415 -1.324001 0.502917 1.434971 -0.230889 -0.103506 -0.756254 -2.523940 0.341642 -0.901440 0.467327 0.490704 0.543886 1.777971 -0.054348 -0.562757 -1.946001 -0.011489 -0.296923 -0.298964 -0.633998 -0.728506 0.051679 1.516323 1.597657 0.109909 0.249590 -0.027276 1.772610 -1.899329 -0.865228 1.295344 1.183155 -1.144492 0.697992 1.448564 -1.583395 -1.163851 -0.767885 -0.191219 0.004251 -1.161945 0.587610 -0.763088 0.350992 0.707083 0.402957 -0.493933 0.942852 0.370816 0.191615 -0.752356 2.247021 3.060327 -1.326948 -0.217884 -1.104829 0.754600 -2.121600 -1.421388 0.286132 0.303859 -0.347501 0.783493 0.689020 1.339798 -0.181484 0.093632 0.089460 -0.983139 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -4.823609 4.286355 6.664836 -13.626503 14.656398 17.899388 3.759331 -8.285724 -10.430657 0.237442 1.176735 -17.405378 -7.750364 15.963190 -6.941362 7.354661 19.757325 0.591475 -7.110250 1.657810 10.720736 7.282913 18.998673 15.697113 -13.236626 -0.060298 1.364849 3.425786 -2.951538 12.761618 -10.263419 -17.018257 4.503795 -4.197548 -1.703555 -3.685512 -0.446022 -3.399316 8.264839 -17.918095 3.212519 4.035121 -4.292564 -4.653216 -1.630414 -4.046027 19.559675 10.763862 -1.067250 -3.071600 8.312015 7.651292 -2.246839 2.927988 6.977077 3.550457 10.156143 1.106148 -6.059793 -7.949376 -4.376413 3.690175 -2.693389 14.759290 14.444415 5.516779 -1.636445 2.402442 0.339615 0.979174 1.292090 3.817077 3.460149 9.805900 3.751170 -3.580675 1.866869 -13.575520 -1.771254 -10.179141 -8.484910 -3.144882 2.213751 5.302562 7.808467 -6.966271 15.709442 -3.343557 0.187904 6.211744 21.781037 -14.364072 -5.246728 -9.978355 -11.403967 0.464987 -4.935457 2.818871 -1.806060 -3.274908 -13.447640 -11.534308 0.794782 5.347112 -4.784680 -1.889733 3.247245 9.950643 -7.548227 -5.493579 -3.726648 7.110664 -1.898272 -22.514059 -13.155466 -6.529064 0.558502 -0.059296 -7.535433 -17.482087 4.470562 10.311420 -8.644394 -7.594231 -3.372098 12.207504 10.355224 2.792007 0.397834 -2.763132 7.464538 18.395060 3.514658 -8.618793 2.042966 -4.485919 -2.694809 0.798556 -7.068929 -1.454747 -3.786202 -10.361253 2.469829 14.779287 -8.312598 2.704204 -3.075272 -1.131154 5.306822 44.256586 -7.281639 14.114075 3.969527 -18.757149 8.086272 -3.108506 -5.498420 -2.503554 5.113855 8.167532 -18.938436 -12.479549 13.927593 15.200701 9.686320 -12.134822 6.077293 -1.691236 -2.739998 -4.977181 2.440869 3.250445 -1.432420 -10.399760 -5.573966 11.836651 29.388009 -6.581461 -18.960969 9.615467 5.542277 2.972911 -2.456460 -5.744006 -6.552417 2.830008 8.995730 -1.290373 12.154413 19.422181 -25.550754 12.759439 0.595653 -9.320338 15.987555 0.744242 -9.984697 2.981405 -0.056327 15.534261 13.332184 2.164604 -1.693546 -2.267441 -11.921224 -1.790794 2.787760 4.658411 -6.335146 6.266573 5.443305 -15.848142 -9.745908 -7.592152 -4.226785 -6.125356 -10.392739 6.588947 -1.900305 -25.134480 20.581288 7.197971 -0.468359 0.827849 -8.281312 8.735884 -11.760244 -16.730114 7.581492 -3.848908 -1.343577 1.194336 0.922517 7.508298 6.624671 13.143926 -14.855355 -18.878481 10.020056 2.285280 14.883357 5.312159 5.534013 5.610087 2.685860 -3.013907 -10.997343 -13.403467 11.155848 5.192633 -14.130901 -1.174519 -6.561818 13.861773 11.050838 -3.862535 -9.005603 -11.964494 10.067160 -9.050768 2.274379 9.463244 0.500852 -16.642457 -5.459656 12.154406 -6.768388 -4.932337 -7.182359 -2.830841 -11.918280 -13.945755 2.383360 -1.591768 4.400483 5.262003 -2.436909 -5.206592 2.785623 2.326268 -0.699927 4.791759 13.935960 7.046182 -5.124114 3.837610 -14.534520 9.813441 -19.120766 -18.986737 10.137565 -10.129701 -10.741633 -2.923231 -1.254131 11.843381 -3.477013 4.781991 -0.978662 0.576115 +PE-benchmarks/topological-sorting.cpp__int** std::copy(int**, int**, int**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/topological-sorting.cpp__int** std::copy_backward(int**, int**, int**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.869720 0.124094 1.053992 -1.982164 3.072509 1.185078 1.248885 -0.573247 -1.819601 -1.187929 -0.003763 -1.363482 -1.932890 2.940846 -1.114988 1.892636 3.705398 0.738567 -0.193706 -0.866388 3.165972 -2.121583 4.050068 2.608544 -3.421771 -0.069497 0.782125 1.816910 0.443296 2.841827 -0.954059 -1.611545 1.795842 -2.246986 1.066546 -2.401227 0.726683 0.399037 0.300504 -3.854046 0.171736 -0.059128 -0.425012 0.131059 -0.732809 1.748100 2.819141 2.543937 -1.645866 1.159570 2.168025 -0.046732 0.105499 1.401205 0.265813 0.758436 0.657402 0.505274 -1.888529 -0.594785 -1.117644 -3.121140 0.907669 2.276225 3.674214 -0.366164 0.574430 1.761991 -0.963598 0.784684 1.313439 0.786258 0.635384 -0.474042 2.573932 -3.199098 -0.704632 -5.328764 -1.534519 -7.137518 -1.847104 -2.291075 1.096753 -0.660670 2.058453 -0.080014 3.166698 0.514528 0.454914 1.755065 3.341531 -3.007657 -1.072794 -2.682284 -1.259526 0.434653 -1.878904 -0.462096 1.968433 -0.379609 -2.146960 -2.002979 1.454110 0.694058 -0.726974 -2.398329 -0.843649 2.950864 -3.165744 -2.244563 -2.666732 0.352223 -1.281789 -4.315416 0.866188 -1.106553 2.517350 0.317016 0.480232 -2.044470 0.648793 2.898666 -0.832942 -1.910823 -0.065481 3.116543 1.531895 0.463490 0.912463 0.175644 -0.387516 3.246877 3.816006 -0.770760 -1.350522 0.317965 -1.620113 0.490471 -1.981443 -0.651299 2.094499 -3.009898 -0.133475 1.826854 -1.192310 -0.366256 2.546644 -0.456095 2.235468 6.588338 -0.339258 2.028819 0.976733 -3.174565 1.874008 -0.176957 0.141284 1.585952 2.142389 0.017352 -3.574601 -2.650429 1.226785 2.079776 1.782801 -3.706923 -1.907244 -1.574976 0.583383 -0.021976 -1.065655 1.566395 -0.419044 -1.985245 -0.167992 0.659479 4.839843 -2.137246 -2.369103 2.089575 0.714793 -1.947161 -3.980813 -1.695821 -1.918148 -0.197841 0.085051 -0.383397 0.836522 3.546638 -5.414364 2.428562 -1.225989 -0.673902 2.192094 -0.096598 -0.817964 -4.041660 0.057926 2.204149 2.597345 0.229664 0.163080 0.521551 -2.423581 0.706951 -0.053579 1.319524 -0.438346 1.049077 -0.305367 -2.227955 -2.409191 -0.793448 -0.451439 -0.748549 0.102776 1.063013 0.793276 -5.614273 2.672461 -1.167392 -1.374037 1.744193 0.522839 2.612979 -2.268593 -3.513996 1.827799 -0.530238 -1.356311 -2.417336 0.913247 1.852959 0.026979 -0.690121 -1.246709 -4.015156 1.683193 -1.151214 1.392230 1.247174 1.231433 3.815967 0.521320 -2.156185 -3.298149 -0.980278 -0.066136 -1.143484 -1.729048 -1.421325 -0.397965 2.734057 3.332778 0.719358 0.035819 -0.335448 3.629067 -3.599597 -1.340958 3.247490 1.988518 -1.628233 1.332058 3.163304 -2.599244 -2.140192 -1.152784 0.124802 0.044730 -2.345251 1.188023 -1.641443 0.914063 0.695498 0.869892 -0.900201 1.297731 0.578764 0.773067 -1.492057 3.982304 4.638471 -2.794073 -0.535843 -1.724177 1.135420 -3.871494 -2.575263 0.599592 0.760199 -0.584753 1.447699 1.153583 2.461663 0.023326 -0.517717 -0.207140 -1.584331 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/topological-sorting.cpp__int** std::__miter_base(int**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/topological-sorting.cpp__int** std::__niter_wrap(int** const&, int**) = -0.094004 0.019219 0.230993 -0.225112 0.187042 -0.030752 0.085428 -0.093290 -0.252681 -0.122523 -0.046565 -0.124925 -0.094709 0.319760 -0.118501 0.192414 0.502530 0.239633 -0.038493 -0.218610 0.268158 -0.426262 0.432342 0.459415 -0.369990 0.034875 0.228867 0.286762 0.191823 0.338604 -0.233154 -0.057474 0.126169 -0.274716 0.177918 -0.444607 0.047246 0.115670 0.056593 -0.621531 0.040546 -0.138967 0.153557 -0.010648 -0.043617 0.287061 0.307364 0.264572 -0.109584 0.190091 0.261261 0.026773 0.061662 0.103396 0.112779 0.246852 0.360646 0.052262 -0.134540 0.045806 -0.037519 -0.415352 0.163016 0.303221 0.438937 -0.028649 0.034712 0.101136 0.004142 0.036669 0.142589 0.078950 -0.083405 0.017798 0.154701 -0.644639 0.168900 -0.779599 -0.105484 -0.950734 -0.224235 -0.250069 0.136642 -0.170907 0.214451 0.210247 0.384848 0.010318 0.109316 0.033402 0.362031 -0.385720 -0.129788 -0.150762 -0.141072 0.128338 -0.193763 -0.075030 0.194914 0.030762 -0.204689 -0.301452 0.407911 0.130580 -0.161329 -0.082359 -0.053898 0.307065 -0.446607 -0.331187 -0.336288 -0.085632 -0.163594 -0.420870 0.321795 -0.258513 0.419796 0.049303 -0.045832 -0.368465 0.058379 0.349028 -0.068463 -0.174062 -0.222270 0.316947 0.094680 -0.049694 0.044056 -0.072181 -0.024412 0.357065 0.381243 -0.209965 -0.104629 0.171709 -0.365863 -0.061602 -0.342645 -0.174113 0.262581 -0.349164 -0.045952 0.137273 -0.218569 -0.002949 0.525284 -0.026281 0.226708 0.785391 -0.013372 0.185301 0.124011 -0.341305 0.195407 -0.011175 -0.000115 0.199684 0.292826 0.058845 -0.512820 -0.296735 0.006983 0.318142 0.226080 -0.344711 -0.409065 -0.239731 0.004376 0.171450 -0.025376 0.059458 -0.148025 -0.212432 -0.066191 -0.015831 0.594363 -0.164054 -0.114908 0.060596 -0.085086 -0.346777 -0.633221 -0.106649 -0.265682 0.040668 -0.227608 -0.040820 0.129107 0.389632 -0.852524 0.348853 -0.277628 -0.134836 0.304871 -0.049532 -0.079772 -0.629323 0.058994 0.217252 0.411446 -0.041817 0.072536 0.153074 -0.337350 -0.038135 -0.075236 0.205007 -0.183565 0.176354 0.134165 -0.342014 -0.203292 0.014296 0.068804 -0.196446 0.049255 0.153905 0.064642 -0.706442 0.303600 -0.134490 -0.129007 0.287046 0.057879 0.140413 -0.368228 -0.332601 0.155942 0.097753 0.026009 -0.261081 0.000426 0.304311 -0.182946 -0.141232 -0.150793 -0.364421 0.067760 -0.219567 0.110135 0.159668 0.045596 0.345872 0.056895 -0.109158 -0.327838 0.201510 -0.248805 -0.238879 -0.077018 -0.127425 -0.094124 0.304681 0.510783 0.091867 0.101830 0.155542 0.455077 -0.362521 -0.187118 0.244811 0.236619 -0.112639 0.160108 0.258484 -0.418829 -0.233077 -0.140303 -0.137935 0.129883 -0.190660 0.258740 -0.250108 0.106671 0.118972 0.045783 -0.097718 0.255335 0.046769 0.056021 -0.063588 0.450504 0.573211 -0.193256 0.004564 -0.211116 0.067630 -0.436274 -0.177557 -0.066334 0.242864 -0.179586 0.138090 0.104633 0.295406 0.036230 0.005971 0.008597 -0.171667 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/topological-sorting.cpp__int** std::__niter_base(int**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.449509 0.049402 0.452496 -1.067446 0.848479 0.312131 0.329773 -0.414432 -0.844442 -0.422050 0.053123 -0.854037 -0.535591 1.178258 -0.485025 0.638435 1.771441 0.406164 -0.302685 -0.507652 1.107846 -0.576300 1.634502 1.517581 -1.327312 -0.066492 0.669219 0.823938 0.489292 0.544021 -0.415500 -0.577520 0.478439 -0.910414 0.295408 -0.996665 0.227189 0.090635 0.449951 -1.838321 0.201218 -0.434559 -0.017189 -0.177271 -0.324185 0.686269 1.227935 1.063550 -0.572757 0.241802 1.105928 0.308697 -0.141275 0.336485 0.126926 0.300999 0.532668 0.323180 -0.402368 -0.310333 -0.142747 -0.758045 0.358514 1.209945 1.471258 0.084124 0.050326 0.624413 0.199032 0.207563 0.385279 0.291629 0.044776 0.241493 0.682044 -1.811323 0.026478 -2.740729 -0.350241 -2.945146 -0.799594 -0.620813 0.514538 -0.581025 0.622514 0.369766 1.343522 0.093094 0.237375 0.812717 1.464004 -1.169213 -0.501246 -0.858174 -0.731156 0.475566 -0.666960 0.116567 0.611778 0.136299 -0.940415 -0.920609 0.633792 0.380025 -0.507075 -0.717932 0.066754 0.924325 -1.096134 -0.781695 -0.861566 0.253429 -0.241704 -1.850255 0.174951 -0.795116 1.359358 -0.001032 -0.258270 -1.199356 0.090985 0.976363 -0.416399 -0.567835 -0.313383 0.965278 0.696965 0.157187 0.213900 -0.091751 0.253843 1.502083 1.051345 -0.750665 -0.296137 0.165978 -0.911500 -0.051105 -1.054889 -0.416085 0.903737 -1.142997 0.284210 0.839870 -0.744804 -0.396792 1.525866 -0.192401 0.725036 3.395528 -0.099748 0.968788 0.615941 -1.266026 0.485587 -0.329005 -0.155077 0.476792 0.820525 0.298349 -1.622735 -1.088108 0.498189 1.200178 0.873103 -1.340754 -0.761326 -0.406893 -0.048526 0.031234 -0.153207 0.329915 -0.319379 -0.756205 -0.278686 0.768494 2.003746 -0.539174 -0.694426 0.459184 0.523878 -0.596722 -1.528347 -0.475438 -0.847111 0.169481 0.163006 0.005644 0.736669 1.553684 -2.778469 1.001743 -0.323146 -0.184038 0.805390 0.207375 -0.726928 -1.663606 0.250597 1.002345 1.215373 -0.151966 0.238022 0.305844 -1.099795 -0.101824 0.110868 0.511687 -0.484304 0.539689 0.274656 -0.966043 -0.822314 0.032055 -0.179017 -0.384291 0.009782 0.636631 -0.039601 -2.427578 1.386699 -0.324346 -0.445269 0.484085 -0.435112 0.957963 -1.309860 -1.315094 0.709451 0.025285 -0.108647 -0.661825 0.168295 0.958338 -0.120490 0.253867 -0.730909 -1.452805 0.606341 -0.418049 0.770690 0.516009 0.291887 1.208895 -0.443697 -0.331857 -1.289151 -0.142087 -0.085445 -0.165200 -0.921385 -0.450165 -0.269369 1.090013 1.428510 -0.150769 -0.242536 0.200741 1.238561 -1.436744 -0.490521 0.804502 0.953531 -0.884489 0.450943 0.955401 -1.294235 -0.571176 -0.675966 -0.226800 -0.079543 -1.070369 0.621101 -0.491084 0.456090 0.441204 0.096550 -0.162625 0.726730 0.289639 0.340303 0.007219 1.346920 1.935090 -0.720588 -0.248602 -1.115067 0.461164 -1.705549 -1.334013 0.393615 0.126743 -0.532272 0.242522 0.129733 1.125910 -0.068819 0.053732 -0.178538 -0.158020 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.116891 -0.861914 -0.104587 -2.815243 2.050643 0.888064 0.853362 -1.094547 -2.367907 -0.305383 0.640003 -2.394337 -0.371316 2.546771 -0.915183 2.485844 3.913357 0.661815 -0.981249 -0.695538 2.586977 -0.395155 3.632646 3.208075 -2.505978 -0.266382 0.455172 1.523490 0.450614 0.297131 -0.658365 -1.323497 1.024675 -2.836009 -0.287399 -1.737088 0.568118 0.695391 2.325300 -3.705250 0.805827 -0.766186 0.346681 -0.644737 -1.075407 0.256165 2.049212 2.477692 -1.100682 0.653926 2.579045 0.472243 -0.455404 0.787751 0.093081 0.883551 0.172216 0.491595 -0.954007 -1.333029 -0.202899 -0.449906 1.044936 2.385145 2.904349 0.252528 -0.159061 1.924969 1.014688 0.383183 1.419059 0.475848 -0.625476 -0.098495 1.344036 -3.907517 -0.318630 -5.582268 -0.683539 -5.188954 -1.792977 -0.405970 1.436098 -0.893964 1.754702 0.704058 2.744276 -0.386540 0.056437 2.113360 2.608570 -2.613720 -1.313155 -1.964730 -1.726960 0.947826 -1.222521 0.088707 1.568310 0.602606 -2.231938 -1.526777 1.015387 1.149123 -0.958773 -2.337295 0.847366 1.579183 -1.643100 -2.267339 -0.939898 1.961801 -0.605654 -3.956222 -0.153435 -1.687224 1.982818 -0.215195 -0.838501 -2.861736 0.002671 1.536612 -1.219667 -1.261149 -0.304499 1.571490 1.766932 0.827896 0.692447 -0.084088 0.579833 4.200460 1.365060 -2.036522 -0.370081 0.281391 -1.297038 0.470159 -2.083184 -1.360110 1.268425 -2.872679 1.106615 2.014635 -1.668278 -0.645015 3.122334 0.527050 1.087503 7.601438 0.021913 2.779439 2.027361 -2.496715 1.113210 -1.145701 0.078734 0.884122 1.429246 -0.050631 -3.374429 -2.534584 1.270607 2.491772 2.152168 -2.771710 -1.541473 -0.418787 0.079052 0.259440 -0.691334 0.843917 -0.141819 -1.845691 -0.436318 2.126720 4.738383 -0.877850 -0.682660 1.420680 1.994796 -1.277851 -3.063162 -1.483702 -2.946782 0.327185 0.914611 0.446450 1.691603 3.519188 -5.122721 1.918722 -0.478869 0.161532 1.675942 1.034161 -2.322149 -3.466347 -0.265121 1.709827 2.822137 -0.933453 0.925649 1.031135 -2.057784 -0.141609 0.469337 0.362247 -0.779212 0.973129 0.204674 -1.770900 -1.115839 0.743310 -1.005116 -0.684279 0.185194 1.627645 0.276555 -4.161280 2.579594 -0.339454 -1.167235 1.279248 -1.273086 2.780002 -2.553278 -2.399190 1.944246 0.156124 0.309508 -0.910812 0.747358 1.909256 0.100095 1.080101 -1.551200 -2.914226 1.468184 -0.590816 2.084070 1.106541 -0.206275 1.559921 -1.718841 -0.662548 -2.546263 -1.118791 -0.579675 0.226002 -2.458767 -1.125745 -0.585797 2.588870 2.295197 -0.168261 -1.295034 0.366784 2.448096 -3.041431 -0.486963 1.807639 1.531298 -2.540595 0.606332 2.312618 -3.017798 -0.362765 -1.336488 0.200245 -0.537675 -2.208626 1.518568 -0.083006 1.406904 0.276890 0.205832 0.329257 1.347010 0.982155 0.868513 0.210086 3.137059 2.946531 -0.668622 -1.172832 -2.648016 0.780398 -3.447680 -3.190530 1.300034 0.173600 -2.095651 0.576368 0.460726 2.975072 -0.324702 0.320573 -0.639671 -0.007026 +PE-benchmarks/topological-sorting.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.171884 0.050852 0.341734 -0.393905 0.317832 0.078100 0.123261 -0.195829 -0.347576 -0.158248 -0.050141 -0.168938 -0.147673 0.499203 -0.218607 0.269230 0.764142 0.295944 -0.088650 -0.303474 0.489791 -0.524849 0.669199 0.669323 -0.581636 -0.004320 0.441817 0.406399 0.314245 0.438573 -0.355937 -0.115276 0.204254 -0.454548 0.227288 -0.623860 0.097837 0.095820 0.138491 -0.856437 0.064975 -0.323967 0.034488 -0.034839 -0.108680 0.405426 0.493706 0.414699 -0.216748 0.184873 0.441672 0.103551 -0.026209 0.146545 0.142900 0.335987 0.478542 0.230044 -0.150936 -0.005377 -0.072776 -0.495366 0.240901 0.503120 0.658381 -0.003478 0.080206 0.217743 0.022768 0.049250 0.173025 0.104188 -0.065267 0.090497 0.261726 -1.021463 0.157080 -1.275295 -0.185902 -1.367077 -0.298250 -0.370101 0.088795 -0.426243 0.337057 0.306068 0.563146 0.043168 0.153567 0.151650 0.596421 -0.592019 -0.190800 -0.301587 -0.275993 0.164728 -0.303223 -0.032325 0.280831 -0.016114 -0.329161 -0.517455 0.492872 0.230569 -0.222827 -0.227787 -0.058799 0.474202 -0.585136 -0.460047 -0.464277 -0.099946 -0.257764 -0.704027 0.321455 -0.415666 0.752107 0.023791 -0.072378 -0.617187 0.071202 0.608169 -0.122057 -0.324088 -0.095775 0.462107 0.239539 -0.023844 0.037332 -0.147655 0.002357 0.583609 0.634764 -0.306078 -0.151837 0.169874 -0.564533 -0.106141 -0.530296 -0.201820 0.437100 -0.491410 -0.020253 0.335946 -0.317145 -0.051187 0.950593 -0.089355 0.368931 1.432222 -0.045679 0.297661 0.168396 -0.567379 0.232604 -0.042446 -0.029247 0.273769 0.413396 0.116507 -0.906467 -0.456678 0.085536 0.476458 0.345931 -0.616702 -0.565659 -0.357100 -0.035974 0.168578 -0.090443 0.102359 -0.256508 -0.312201 -0.127340 0.098932 0.908025 -0.309831 -0.301195 0.128063 -0.038924 -0.462813 -0.899920 -0.185298 -0.376366 0.096651 -0.175534 -0.070629 0.268244 0.616641 -1.328159 0.480977 -0.373528 -0.212515 0.423591 0.002868 -0.160158 -0.813162 0.141500 0.394711 0.563648 -0.023640 0.089839 0.203932 -0.500038 -0.048899 -0.067109 0.319066 -0.246826 0.237134 0.232293 -0.533197 -0.371679 0.050872 0.065232 -0.293130 0.075305 0.231227 -0.078948 -1.157393 0.544650 -0.175405 -0.156286 0.392944 -0.013015 0.287094 -0.575853 -0.569038 0.287175 0.156347 0.096043 -0.357267 0.030873 0.487968 -0.170778 -0.054489 -0.302258 -0.669727 0.083118 -0.294844 0.219476 0.210516 0.145471 0.590455 -0.120099 -0.122018 -0.613904 0.203786 -0.217200 -0.193254 -0.245179 -0.288524 -0.109231 0.492492 0.719181 0.041027 0.098385 0.164519 0.640851 -0.656876 -0.227481 0.345716 0.541057 -0.274925 0.167872 0.378168 -0.599655 -0.368687 -0.186110 -0.221148 0.107103 -0.370987 0.328592 -0.334112 0.188278 0.185438 0.105295 -0.108133 0.353887 0.088327 0.160810 -0.044364 0.588696 0.985513 -0.353428 -0.090889 -0.369750 0.163415 -0.705164 -0.422098 0.020364 0.223973 -0.215445 0.182278 0.125045 0.473775 0.016962 0.035194 0.046417 -0.241725 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.479063 0.046100 0.457175 -1.170073 0.923984 0.448012 0.368742 -0.520663 -0.914311 -0.401128 0.105331 -1.007672 -0.554794 1.279645 -0.535344 0.744776 1.886788 0.393321 -0.379853 -0.503158 1.151633 -0.440791 1.776239 1.624535 -1.403673 -0.063286 0.622281 0.779145 0.502479 0.562396 -0.448814 -0.683388 0.562443 -0.930387 0.278421 -0.970719 0.213697 0.073241 0.572171 -1.932180 0.233555 -0.392056 0.021264 -0.215614 -0.324000 0.661723 1.327808 1.140465 -0.518377 0.226133 1.148742 0.371103 -0.138461 0.356193 0.190178 0.309848 0.599949 0.231439 -0.434952 -0.382986 -0.158944 -0.661598 0.312365 1.311107 1.559228 0.112320 0.030183 0.654110 0.261940 0.218655 0.414298 0.321642 0.058127 0.315533 0.650718 -1.856525 0.058270 -2.753273 -0.367167 -2.979852 -0.862747 -0.595287 0.533837 -0.521540 0.692481 0.265306 1.431590 0.094479 0.194915 0.770852 1.592818 -1.278246 -0.536876 -0.886549 -0.726652 0.459870 -0.704251 0.169246 0.625672 0.095834 -1.036304 -0.931743 0.638605 0.420101 -0.543773 -0.718802 0.125544 0.979639 -1.094834 -0.820003 -0.812269 0.341300 -0.263417 -2.000793 0.176763 -0.849561 1.282831 -0.016013 -0.310179 -1.313539 0.106913 1.013338 -0.481138 -0.630482 -0.419280 1.047475 0.802721 0.205483 0.203689 -0.055779 0.316523 1.670749 0.990162 -0.824634 -0.253247 0.112121 -0.884028 0.004416 -1.085142 -0.437908 0.878637 -1.209635 0.281262 0.942159 -0.790277 -0.321282 1.480968 -0.143441 0.724422 3.642210 -0.150549 1.094534 0.684153 -1.373632 0.515240 -0.385258 -0.169161 0.439595 0.829692 0.324320 -1.758415 -1.180297 0.596477 1.306620 0.932717 -1.410599 -0.678269 -0.400834 -0.086070 -0.048735 -0.139746 0.346189 -0.302952 -0.832100 -0.311846 0.857857 2.194808 -0.586448 -0.698668 0.502150 0.566919 -0.539742 -1.496625 -0.536788 -0.899744 0.208237 0.211791 0.057084 0.822671 1.669961 -2.843251 1.086874 -0.307569 -0.239644 0.941181 0.228161 -0.830158 -1.625737 0.229404 1.075422 1.276035 -0.195339 0.267973 0.322220 -1.181894 -0.118367 0.104902 0.498484 -0.514798 0.537577 0.341465 -1.019415 -0.847243 0.023720 -0.193690 -0.433834 -0.049475 0.706139 0.043821 -2.531709 1.497018 -0.261117 -0.474486 0.487305 -0.525397 1.046404 -1.380459 -1.348068 0.740980 -0.006782 -0.106769 -0.639309 0.180680 0.991086 -0.142100 0.412082 -0.846218 -1.517024 0.679065 -0.410996 0.870027 0.556551 0.307742 1.173588 -0.480966 -0.339414 -1.317406 -0.314874 -0.051564 -0.085815 -1.035241 -0.372172 -0.309892 1.184379 1.467458 -0.176274 -0.349330 0.154032 1.247594 -1.546404 -0.435085 0.853218 0.972448 -1.015582 0.390771 1.015793 -1.331385 -0.556167 -0.698934 -0.276205 -0.175871 -1.152275 0.663509 -0.443960 0.518754 0.420983 0.088510 -0.169216 0.752351 0.294234 0.310048 0.074079 1.423309 1.929012 -0.702283 -0.270445 -1.226854 0.536679 -1.802172 -1.464792 0.493635 0.040607 -0.650683 0.213439 0.113362 1.225603 -0.070184 0.072204 -0.222476 -0.119823 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.264659 -0.878422 -0.081187 -3.328381 2.428168 1.567468 1.048206 -1.625702 -2.717255 -0.200769 0.901042 -3.162512 -0.467334 3.053709 -1.166778 3.017547 4.490091 0.597599 -1.367090 -0.673069 2.805911 0.282392 4.341331 3.742844 -2.887781 -0.250350 0.220485 1.299526 0.516550 0.389008 -0.824935 -1.852837 1.444696 -2.935875 -0.372337 -1.607357 0.500658 0.608423 2.936398 -4.174545 0.967510 -0.553675 0.538947 -0.836455 -1.074480 0.133438 2.548576 2.862263 -0.828786 0.575582 2.793117 0.784271 -0.441339 0.886291 0.409340 0.927796 0.508620 0.032887 -1.116926 -1.696290 -0.283884 0.032332 0.814193 2.890956 3.344197 0.393509 -0.259778 2.073454 1.329227 0.438642 1.564153 0.625917 -0.558719 0.271704 1.187402 -4.133524 -0.159669 -5.644989 -0.768173 -5.362488 -2.108742 -0.278336 1.532594 -0.596536 2.104535 0.181760 3.184615 -0.379615 -0.155866 1.904034 3.252641 -3.158885 -1.491306 -2.106605 -1.704441 0.869345 -1.408977 0.352102 1.637779 0.400280 -2.711380 -1.582450 1.039450 1.349502 -1.142266 -2.341646 1.141313 1.855753 -1.636599 -2.458881 -0.693418 2.401154 -0.714218 -4.708909 -0.144375 -1.959452 1.600186 -0.290103 -1.098051 -3.432654 0.082312 1.721490 -1.543364 -1.574384 -0.833981 1.982477 2.295716 1.069377 0.641392 0.095772 0.893232 5.043791 1.059148 -2.406368 -0.155633 0.012105 -1.159680 0.747764 -2.234447 -1.469229 1.142924 -3.205871 1.091878 2.526079 -1.895640 -0.267463 2.897840 0.771853 1.084431 8.834847 -0.232095 3.408166 2.368422 -3.034747 1.261475 -1.426970 0.008313 0.698139 1.475079 0.079224 -4.052828 -2.995532 1.762049 3.023986 2.450240 -3.120931 -1.126187 -0.388495 -0.108664 -0.140403 -0.624029 0.925289 -0.059682 -2.225166 -0.602119 2.573537 5.693691 -1.114222 -0.703874 1.635511 2.210001 -0.992952 -2.904552 -1.790453 -3.209945 0.520969 1.158537 0.703647 2.121614 4.100574 -5.446631 2.344378 -0.400985 -0.116499 2.354900 1.138093 -2.838297 -3.277000 -0.371084 2.075210 3.125447 -1.150318 1.075404 1.113016 -2.468280 -0.224326 0.439505 0.296232 -0.931682 0.962569 0.538717 -2.037760 -1.240486 0.701636 -1.078481 -0.931990 -0.111090 1.975188 0.693668 -4.681935 3.131191 -0.023311 -1.313319 1.295349 -1.724509 3.222207 -2.906275 -2.564063 2.101892 -0.004211 0.318899 -0.798232 0.809282 2.072996 -0.007956 1.871173 -2.127745 -3.235324 1.831805 -0.555553 2.580757 1.309251 -0.126999 1.383386 -1.905184 -0.700334 -2.687536 -1.982726 -0.410266 0.622925 -3.028046 -0.735781 -0.788412 3.060696 2.489940 -0.295786 -1.829002 0.133240 2.493262 -3.589733 -0.209779 2.051217 1.625887 -3.196061 0.305476 2.614580 -3.203548 -0.287721 -1.451328 -0.046784 -1.019315 -2.618155 1.730608 0.152615 1.720226 0.175781 0.165633 0.296301 1.475112 1.005131 0.717239 0.544384 3.519002 2.916142 -0.577094 -1.282048 -3.206951 1.157972 -3.930794 -3.844423 1.800137 -0.257080 -2.687709 0.430952 0.378874 3.473535 -0.331529 0.412931 -0.859362 0.183957 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/topological-sorting.cpp__std::deque >::deque() = -0.134985 0.044647 0.354579 -0.483050 0.549910 0.088847 0.201529 -0.076119 -0.407593 -0.278064 -0.051622 -0.180261 -0.325538 0.508851 -0.287880 0.175487 0.685734 0.233144 -0.013232 -0.281671 0.504541 -0.378768 0.741296 0.550209 -0.705318 0.024032 0.113630 0.478491 0.178216 0.686325 -0.124277 -0.301142 0.235834 -0.141753 0.304135 -0.578276 0.132328 0.152816 -0.140631 -0.819860 0.057798 -0.000649 0.042683 0.076769 -0.017101 0.407801 0.497784 0.453760 -0.305719 0.254868 0.487982 0.245467 0.043596 0.254718 0.039321 0.121099 0.323786 -0.150682 -0.267560 -0.045194 -0.181933 -0.602183 0.195018 0.471546 0.717687 -0.050878 0.134087 0.101580 -0.145468 0.189439 0.302293 0.144318 0.017558 -0.064976 0.377894 -0.501782 0.032796 -1.026964 -0.154732 -1.410365 -0.331059 -0.483727 0.314472 0.081345 0.233004 0.075510 0.612696 0.129432 0.150404 0.304597 0.508293 -0.395476 -0.138557 -0.394031 -0.335471 0.155184 -0.298252 -0.118973 0.119839 0.181319 -0.328582 -0.302921 0.279213 0.022939 -0.164612 -0.222198 -0.186577 0.521719 -0.756563 -0.260011 -0.457251 0.191631 -0.141264 -0.732082 0.163584 -0.416548 0.575146 -0.062501 0.129748 -0.190198 0.089220 0.484241 -0.180338 -0.105689 -0.412918 0.526413 0.225250 -0.027770 0.073586 -0.059290 -0.179646 0.419442 0.532085 -0.221229 -0.284187 0.153560 -0.277176 -0.021859 -0.470031 -0.018652 0.402115 -0.502966 0.042335 0.208508 -0.209486 -0.205406 0.253148 -0.177671 0.457101 1.142493 -0.074755 0.344908 0.202824 -0.515001 0.204794 0.102414 0.077607 0.392987 0.415288 -0.043707 -0.417980 -0.502799 0.098033 0.357492 0.318506 -0.495146 -0.327218 -0.279669 0.003384 0.106822 -0.145075 0.174713 -0.253007 -0.345423 -0.072836 -0.030371 0.763861 -0.095040 -0.351627 0.261544 0.180152 -0.494158 -0.487499 -0.242835 -0.204330 0.019747 0.006511 -0.109986 0.195625 0.633348 -1.258435 0.482187 -0.152620 -0.036584 0.295043 -0.124494 -0.047141 -0.758621 0.027789 0.344465 0.556591 -0.070394 0.089278 0.189560 -0.463995 0.116494 -0.043675 0.307502 -0.202035 0.176221 0.131822 -0.453949 -0.402199 -0.218670 -0.036267 -0.025069 -0.060315 0.167531 0.116068 -1.172288 0.438645 -0.299046 -0.212263 0.310834 0.100566 0.397027 -0.427307 -0.539629 0.247191 -0.003275 -0.274563 -0.500111 0.152708 0.436881 -0.197254 -0.018578 -0.264172 -0.582288 0.257773 -0.279509 0.156583 0.248568 0.199692 0.637110 0.093809 -0.252740 -0.562935 -0.041329 0.027289 -0.281780 -0.190195 0.097328 -0.116946 0.389802 0.703643 0.135435 0.012186 0.128760 0.789240 -0.437606 -0.292289 0.526305 0.192629 -0.178379 0.398957 0.528033 -0.528447 -0.473294 -0.274077 0.039679 0.168959 -0.347146 0.388474 -0.300562 0.212159 0.144694 0.221534 -0.326272 0.331715 0.079280 0.064328 -0.204890 0.800798 0.811812 -0.339140 0.105242 -0.240678 0.132154 -0.690593 -0.302954 -0.095449 0.016909 -0.068008 0.355615 -0.050349 0.537416 0.036175 0.130601 0.021996 -0.215045 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_base() = -0.627181 0.670745 1.713219 -2.899518 3.759007 2.452366 1.054755 -1.027844 -1.888266 -0.533929 -0.086584 -1.701600 -1.823028 2.728789 -1.469646 1.422070 3.150286 -0.073343 -0.638755 -0.514704 3.141252 -0.432064 3.770218 2.075285 -3.667066 0.133988 0.193505 1.849310 0.263870 3.734842 -1.531376 -2.047191 0.955257 -0.886064 0.987738 -1.561598 0.531214 -0.140666 0.188069 -3.295611 0.291287 0.546803 -0.775404 0.245706 -0.283809 0.868231 3.200373 2.271264 -1.531147 0.267548 2.461182 0.980751 -0.088442 1.199622 0.504489 0.590413 2.015496 0.205193 -1.448340 -1.144616 -1.152486 -1.440470 0.729122 2.481409 3.394596 0.042807 0.466571 1.085196 -0.619291 0.642841 1.069566 0.953265 0.346521 0.310484 2.121135 -1.394138 0.117304 -3.668542 -0.726811 -4.449886 -1.660144 -2.105502 0.499183 0.536507 1.806658 -0.919813 3.227399 0.232781 0.295499 1.338171 3.087979 -2.390380 -0.553708 -2.678641 -2.208193 -0.082242 -1.313475 -0.454294 0.467441 0.021755 -2.005624 -1.553948 0.570667 0.469915 -0.698519 -1.217020 -0.790438 2.518032 -2.614207 -1.297052 -1.474749 1.456499 -0.963511 -4.194944 -0.928742 -1.674705 1.485862 -0.703905 0.714290 -1.758705 0.486670 2.820337 -1.477145 -1.184886 -0.996844 2.983421 2.229001 0.296050 0.434669 -0.402648 -0.195381 2.567864 2.491695 -0.897211 -1.286612 -0.239070 -0.650870 0.234654 -1.619719 0.362044 1.013435 -2.331996 -0.061847 2.091838 -0.659588 0.159755 0.407672 -0.799810 1.980576 7.382271 -0.980275 2.151722 0.530698 -3.069232 1.634914 0.548086 -0.146879 1.321898 1.402687 0.148977 -3.325485 -2.649696 1.780779 1.768586 1.389967 -3.087331 -0.224707 -0.972257 -0.275334 -0.349550 -0.877368 1.122484 -0.797811 -1.728622 -0.535005 0.502575 4.952730 -1.145699 -3.570497 2.418958 0.975816 -1.668624 -1.592780 -1.709503 -1.165583 -0.034411 0.895903 -0.544911 1.605490 3.455120 -5.520258 2.217850 -0.239160 -1.199469 2.665369 -0.712766 -0.479737 -1.736510 -0.193653 2.271211 2.322324 -0.048860 -0.447542 0.116685 -2.169346 0.954184 0.076585 1.120836 -0.849345 0.801244 0.457923 -2.581999 -2.254377 -1.820979 -0.808248 -0.031943 -1.186860 0.654735 -0.356969 -5.647456 2.877935 -0.433664 -0.609446 1.318155 -0.132047 2.153068 -1.574014 -2.945244 1.520629 -0.319453 -1.061642 -1.854187 0.997109 1.750654 0.363533 1.013866 -2.508177 -4.052937 1.521035 -0.906391 1.545895 1.146119 1.462437 2.582384 0.946431 -1.374606 -3.202627 -1.739502 1.282011 0.151282 -1.973676 -0.215310 -0.826982 2.304205 2.552053 0.177831 -0.161751 -1.253404 3.239659 -2.251376 -0.691654 2.746417 0.510977 -2.371832 0.475541 2.905868 -1.448002 -2.151213 -1.285958 -0.034388 -0.719807 -2.252458 1.225361 -0.792061 0.962997 0.757734 0.706664 -1.481356 1.013332 0.264748 0.179138 -0.944994 3.934399 3.244127 -1.911342 0.231363 -1.655838 1.459512 -3.564022 -2.465589 0.816142 -1.238526 -0.621891 1.180036 0.169657 2.750879 -0.227546 0.513139 0.344519 -1.164591 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.302740 0.045903 0.614985 -0.679681 0.531472 0.170376 0.216135 -0.192216 -0.615585 -0.293899 -0.068824 -0.376353 -0.384900 0.861122 -0.394108 0.242275 1.257287 0.518139 -0.184663 -0.396427 0.704861 -0.589652 1.061287 1.062772 -0.896171 -0.051506 0.494943 0.666891 0.389520 0.754280 -0.446113 -0.359789 0.317958 -0.415034 0.359963 -0.932442 0.158762 0.143928 0.001580 -1.352332 0.143779 -0.261436 0.001538 -0.088511 -0.089430 0.655751 0.797811 0.674863 -0.315570 0.184514 0.647209 0.283282 -0.064668 0.243072 0.223966 0.358258 0.655623 0.235544 -0.314569 -0.046844 -0.175701 -0.736609 0.235236 0.807978 1.049011 0.070800 0.127749 0.135880 0.022629 0.170152 0.290054 0.116899 0.070045 0.148197 0.390758 -1.128382 0.154715 -1.792578 -0.221582 -2.064834 -0.464467 -0.561942 0.372784 -0.383028 0.310397 0.194140 0.881792 0.070392 0.223316 0.367652 1.005986 -0.774068 -0.332695 -0.546661 -0.475747 0.316603 -0.478200 -0.042041 0.360807 0.052375 -0.572913 -0.702957 0.535163 0.235096 -0.314364 -0.191730 -0.074204 0.820674 -0.917141 -0.484160 -0.724437 0.029547 -0.174465 -1.153461 0.244904 -0.659207 1.005679 0.043389 -0.186741 -0.716331 0.170482 0.803041 -0.259377 -0.311972 -0.337871 0.809970 0.288633 -0.062500 0.025938 -0.174135 -0.011986 0.743495 0.829724 -0.508478 -0.186712 0.225611 -0.793473 -0.161744 -0.862297 -0.232379 0.640684 -0.717628 0.029889 0.458137 -0.533943 -0.193791 0.959272 -0.138554 0.605826 2.222706 -0.137565 0.520538 0.267958 -0.868374 0.419599 0.026998 -0.036046 0.357312 0.639454 0.191999 -1.167726 -0.729906 0.203195 0.780413 0.596630 -0.886001 -0.570466 -0.513404 -0.061994 0.124167 -0.055892 0.193105 -0.398001 -0.504622 -0.235157 0.230540 1.315846 -0.374936 -0.743381 0.193859 0.082885 -0.535171 -1.056482 -0.251631 -0.339452 0.157504 -0.091502 -0.138110 0.489135 1.036037 -2.069950 0.805717 -0.348850 -0.267770 0.669506 -0.047431 -0.277297 -1.091639 0.176717 0.677767 0.956936 0.052200 0.013518 0.278712 -0.794640 -0.094003 -0.032541 0.542290 -0.354170 0.347832 0.344173 -0.760474 -0.602536 -0.186923 0.023587 -0.350093 -0.052952 0.367809 -0.094224 -1.847293 0.917085 -0.239284 -0.203751 0.408836 -0.061890 0.409255 -0.905816 -0.957634 0.384481 0.153193 -0.128907 -0.598035 0.072539 0.764280 -0.217076 0.079565 -0.475161 -1.051162 0.339408 -0.383334 0.451976 0.306638 0.244329 0.942920 0.076461 -0.184042 -0.878262 0.083527 -0.025211 -0.300637 -0.422246 -0.200679 -0.179529 0.722169 1.085170 -0.000792 0.007689 0.090174 1.047364 -0.852163 -0.375592 0.594749 0.575723 -0.364363 0.356895 0.670717 -0.958349 -0.619494 -0.385063 -0.308617 0.095071 -0.623673 0.471481 -0.499318 0.315242 0.288566 0.176839 -0.295856 0.481671 0.165215 0.126367 0.004439 0.985419 1.451353 -0.542858 0.086112 -0.607656 0.345968 -1.137241 -0.680089 0.040135 0.076030 -0.304491 0.298685 0.071256 0.719320 -0.022048 0.113815 -0.016137 -0.227637 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -3.039000 1.595114 5.605743 -10.237801 11.084487 9.406237 2.635187 -4.325728 -7.263819 -0.727688 0.080835 -8.411830 -5.647567 10.511320 -4.686833 5.357427 12.218193 0.238368 -4.032656 -0.866789 10.229079 0.218742 12.227855 8.449579 -11.171257 -0.051707 1.205985 5.943893 1.246594 10.287287 -6.332955 -7.484804 2.379390 -3.620927 1.671472 -4.596522 1.572113 -0.445728 2.821118 -12.119414 1.770759 1.682213 -2.447167 -0.716531 -1.302439 1.958253 11.136319 7.736651 -3.926183 -0.506541 8.161067 3.190485 -1.170222 2.806226 2.528213 2.493586 7.611893 2.100734 -4.477171 -4.480302 -2.712819 -2.290663 1.349532 9.097445 11.411438 1.245043 0.422153 3.715419 0.156901 1.512281 2.696817 2.587610 1.170527 2.815986 5.547532 -4.891390 0.874310 -12.438607 -1.434681 -13.096607 -5.550456 -4.790207 2.241406 1.321903 4.942540 -3.751143 11.128774 -0.800252 -0.089351 4.618774 12.481850 -8.760542 -2.875945 -9.025561 -7.829787 0.585913 -4.506424 -0.750550 1.800335 -0.053932 -7.607022 -6.468445 1.602830 2.454446 -3.126137 -2.769812 -0.906026 8.469894 -7.460150 -4.495893 -3.828747 5.224817 -1.771603 -14.761221 -5.058446 -5.868174 3.601154 -1.773148 -0.546467 -8.408085 1.639309 8.506208 -5.542306 -4.117864 -3.185694 9.673245 7.533627 0.862936 0.802327 -1.403430 2.131534 9.968885 5.844948 -5.102868 -2.465045 -1.032197 -3.007826 0.362779 -6.386106 -0.234083 2.191352 -7.888971 0.310046 7.845606 -3.769117 1.236294 1.756670 -1.620697 5.092988 28.232283 -3.463045 7.948299 2.070815 -10.657973 6.320297 0.667877 -1.795121 2.549232 4.073581 2.340745 -13.088618 -9.088354 7.475842 8.064804 5.583521 -10.291127 0.485658 -2.614359 -1.434902 -1.972311 -1.074927 3.479977 -2.557429 -5.388740 -2.893563 4.373314 18.500218 -4.303489 -12.889476 7.443510 3.400916 -3.485551 -5.690450 -5.043374 -4.147344 0.395526 3.539075 -1.047721 7.405680 12.889420 -19.276545 8.129230 0.270244 -4.951149 10.229522 -1.597133 -3.849673 -4.601818 -0.685342 8.776060 9.217388 0.214515 -1.780213 0.030685 -8.217347 1.335127 1.274922 3.438291 -3.544436 3.325275 2.464203 -8.798808 -6.972136 -5.083784 -3.493118 -1.434506 -5.079844 3.169517 -2.169349 -18.844057 11.738612 0.351988 -0.913449 3.227287 -2.656383 6.767062 -6.918168 -10.351274 5.305543 -0.464424 -2.453171 -4.398046 2.524180 6.454991 2.015626 5.202543 -9.351095 -14.575281 5.674188 -2.219650 7.122861 3.260699 3.537801 6.593489 3.152143 -2.950105 -10.180052 -6.206243 4.646464 1.697851 -7.731843 -1.334254 -3.038195 8.631754 7.952619 -0.941850 -2.376628 -5.414981 9.383263 -7.272105 -1.474074 7.637136 1.472259 -9.633298 -0.218032 9.170414 -5.851031 -5.419746 -5.156372 -1.729149 -4.686358 -8.507269 3.479318 -1.702057 3.302763 3.026056 0.546087 -3.804838 3.520190 1.572155 -0.463111 -0.675393 12.943916 10.037828 -5.454324 1.264690 -8.265036 6.151445 -12.744505 -10.316447 4.481814 -4.663257 -4.451735 1.734700 0.663024 8.867515 -1.572682 1.943589 0.094038 -2.227503 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.169571 0.045099 1.021964 -0.814683 0.494689 0.124351 0.191988 -0.002163 -0.816987 -0.134451 -0.149211 -0.607300 -0.364131 0.857532 -0.306858 0.031026 1.264953 0.640065 -0.316842 -0.306753 0.399686 -0.537422 0.885508 1.110620 -0.820302 0.132818 0.032077 0.797015 0.254652 1.224531 -0.695721 -0.312131 -0.050626 0.113967 0.550635 -0.929721 -0.037475 0.188806 -0.278629 -1.594883 0.203350 0.416700 0.483269 -0.132870 0.219889 0.599170 0.857733 0.571585 -0.122254 0.071335 0.448231 0.187034 0.273297 0.157847 0.496263 0.446277 1.331992 0.113856 -0.410503 0.100620 -0.174095 -0.679726 0.228522 0.747218 0.978286 0.140522 -0.055089 -0.433354 0.259879 0.134506 0.322412 0.155415 -0.056739 0.183606 0.182845 -0.468692 0.748245 -1.121964 0.182480 -1.493345 -0.564467 -0.453296 0.745654 0.293494 0.067390 -0.311533 0.924808 -0.204075 0.245243 -0.050172 0.888019 -0.538402 -0.272824 -0.430804 -0.586842 0.337059 -0.259228 -0.327977 0.256293 0.167653 -0.543538 -0.342894 0.654994 0.098461 -0.372799 0.697652 -0.029307 0.825158 -0.797267 -0.319598 -0.592952 0.240258 0.035072 -0.975453 0.237026 -0.771093 0.196190 0.033624 -0.337563 -0.462633 0.265996 0.485864 -0.438202 0.137746 -1.366485 1.123968 0.075026 -0.271243 -0.048967 -0.202360 -0.042597 0.199487 0.363146 -0.638677 -0.031139 0.397201 -0.711390 -0.235175 -0.830260 -0.229210 0.352441 -0.569114 -0.337319 0.090869 -0.560738 0.247405 -0.036798 0.102536 0.462280 2.152414 -0.283963 0.564826 0.165133 -0.699462 0.937995 0.518461 -0.060971 0.253940 0.572830 0.249813 -1.117950 -0.683245 0.129210 0.847863 0.594862 -0.578886 -0.242382 -0.446630 -0.240982 0.276524 0.269769 0.005713 -0.341779 -0.524820 -0.289492 -0.083128 1.361507 -0.048329 -1.248453 0.037427 -0.203338 -0.523037 -0.762996 -0.084172 -0.174607 0.117985 -0.535978 -0.221353 0.616661 0.980289 -2.127362 1.021597 -0.207886 -0.537175 1.260659 -0.507166 -0.140470 -1.019277 -0.072177 0.560318 1.209016 0.040938 -0.459976 0.237623 -0.785367 -0.135801 -0.112003 0.499548 -0.520362 0.426571 0.334626 -0.716976 -0.325334 -0.814637 -0.002841 -0.265495 -0.496986 0.324054 -0.016777 -1.507679 0.799893 0.030260 -0.059445 0.317861 -0.005638 -0.196344 -0.756217 -0.752293 0.062907 0.257331 -0.300489 -0.683676 -0.102154 0.663078 -0.356638 0.036969 -0.641570 -0.931672 0.485682 -0.547313 0.560689 0.405007 0.018554 0.491881 1.416955 -0.087923 -0.489074 0.084758 -0.054407 -0.350757 -0.193091 0.120412 -0.427252 0.535502 1.008357 0.040612 0.215715 -0.259705 1.122688 -0.161574 -0.437950 0.520150 -0.670221 -0.200376 0.281523 0.665824 -0.843291 -0.537739 -0.551149 -0.548586 0.096880 -0.341382 0.615459 -0.434224 0.223456 0.252251 -0.055426 -0.542670 0.376797 0.066184 -0.321973 0.130827 1.241953 0.858414 -0.208401 0.666691 -0.512964 0.445140 -0.953985 -0.187363 -0.252887 -0.125270 -0.566024 0.247517 0.148606 0.633813 0.021602 0.187160 -0.017694 -0.048256 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator() = -0.078854 -0.074014 0.599562 -0.432386 0.166230 -0.159474 0.106740 -0.036340 -0.481460 -0.015328 -0.088108 -0.192976 -0.032029 0.440711 -0.095578 0.198370 0.749446 0.450558 -0.171316 -0.337885 0.358198 -0.778264 0.503601 0.723464 -0.543336 0.118389 0.182346 0.589918 0.419095 0.640044 -0.529943 0.250235 -0.052456 -0.304487 0.441496 -0.752935 0.009734 0.228769 -0.019859 -1.066644 0.087150 0.012133 0.515760 -0.026113 0.074103 0.567353 0.388152 0.345097 -0.154466 0.190505 0.343759 -0.188216 0.276741 0.086188 0.269031 0.473254 0.975772 0.344893 -0.197531 0.160271 -0.013207 -0.654808 0.421207 0.412464 0.647380 -0.032191 -0.018997 -0.067968 0.297685 -0.000120 0.270985 0.127087 -0.250175 -0.039542 0.199824 -0.908869 0.636422 -1.041336 0.063495 -1.214268 -0.365046 -0.321273 0.372465 -0.249328 0.229979 0.086367 0.565178 -0.121216 0.166986 -0.192189 0.387117 -0.472299 -0.150848 -0.216206 -0.291744 0.225371 -0.193227 -0.280121 0.465398 0.071230 -0.255189 -0.254182 0.752824 0.187244 -0.283145 0.329164 -0.065954 0.489653 -0.473074 -0.502060 -0.414033 -0.072942 -0.201760 -0.517848 0.653379 -0.564713 0.324904 0.030121 -0.092954 -0.434162 0.057827 0.414967 -0.167282 -0.059846 -0.796400 0.714104 0.072555 -0.188358 0.011000 -0.144686 -0.114592 0.166986 0.458236 -0.397610 -0.112873 0.408008 -0.694018 -0.136886 -0.599887 -0.303332 0.513990 -0.424097 -0.418980 -0.022785 -0.321752 0.306926 0.732848 0.178098 0.270937 1.321025 -0.007375 0.280081 0.144695 -0.344805 0.690381 0.347223 0.054152 0.368995 0.424107 0.036470 -1.093175 -0.431354 -0.127088 0.481935 0.323435 -0.512737 -0.644999 -0.379571 -0.118883 0.382063 0.051270 -0.024664 -0.218727 -0.294846 -0.103739 -0.207903 0.882329 -0.167780 -0.496713 -0.045607 -0.364945 -0.683488 -1.108619 -0.091615 -0.380515 0.036772 -0.758670 -0.080219 0.294193 0.525615 -1.353055 0.613408 -0.419927 -0.343167 0.876697 -0.336986 -0.049074 -1.142319 -0.011591 0.186453 0.732440 -0.083026 -0.287507 0.311191 -0.506022 -0.051905 -0.180077 0.263011 -0.337964 0.303335 0.151296 -0.378274 -0.135798 -0.256744 0.087613 -0.269532 -0.044754 0.213662 -0.037618 -0.796794 0.323584 -0.126730 -0.140331 0.480697 0.105452 -0.191037 -0.496513 -0.359152 0.066805 0.363773 0.055721 -0.627998 -0.068423 0.453677 -0.383749 -0.345585 -0.367132 -0.617773 0.110125 -0.614561 0.195505 0.284399 -0.107214 0.332851 0.874961 -0.080086 -0.442726 0.459097 -0.593975 -0.297374 -0.038745 -0.296404 -0.230783 0.360883 0.714606 0.129577 0.438070 0.100259 0.761150 -0.314493 -0.426466 0.282354 -0.198345 -0.067303 0.202706 0.339645 -0.646178 -0.293142 -0.258901 -0.492667 0.301757 -0.099810 0.545250 -0.326648 0.150977 0.090214 -0.015765 -0.141369 0.355117 0.036914 -0.088307 -0.042865 0.831681 0.789989 -0.157629 0.141479 -0.269928 0.184653 -0.542344 0.045125 -0.264652 0.344807 -0.390302 0.248287 0.384907 0.437387 0.137171 -0.081048 0.041243 -0.201288 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.152502 -0.083999 1.457002 -3.738131 4.210666 1.780650 0.970947 -0.537077 -2.309035 -1.329025 -0.626971 -0.934536 -1.886597 3.560338 -1.302119 2.638637 3.870388 -0.026644 -0.519700 -1.155548 5.055018 -2.806401 4.105715 1.463458 -4.634225 -0.359468 1.278983 3.664074 1.252770 4.008919 -0.800534 -1.385407 0.530148 -2.261720 1.975962 -3.317865 1.896699 1.239028 -0.126594 -4.454872 0.322494 -0.010446 -0.517235 0.316828 -1.340968 1.695172 2.814064 3.290925 -3.153245 0.321746 3.843572 0.681089 -0.551881 1.560322 -0.941597 0.925997 1.215162 0.510570 -1.757209 -1.090519 -0.525980 -3.308820 2.433890 2.569972 4.712672 -1.128968 1.030798 3.355377 -0.559138 0.998763 1.699426 0.615375 -0.382052 -1.468594 3.381350 -4.363739 -1.091345 -7.100240 -0.696033 -8.165074 -1.657810 -3.142147 0.496597 -0.272222 2.059182 -0.410747 4.114472 0.259147 0.424355 3.110876 3.114753 -2.766741 -0.683950 -5.188828 -2.620925 0.791900 -2.236371 -1.956670 2.106708 0.780323 -1.651364 -2.072466 0.848991 0.620174 -0.910771 -3.576105 -1.777266 3.574653 -3.675406 -2.703043 -2.333385 2.251848 -1.837292 -5.059207 0.847812 -2.461323 2.436529 -1.310597 2.526986 -2.044620 -0.074067 4.156977 -1.345139 -1.659410 -1.132884 3.965272 2.532061 -0.323799 1.014944 -0.236139 -0.829618 3.079309 4.360361 -1.220079 -3.141811 1.231102 -1.857092 -0.202350 -3.230708 -0.153107 3.144934 -3.744688 -0.811900 2.502612 -0.545911 -0.298954 3.042590 -1.416337 3.311276 9.694601 0.080036 1.506654 0.490310 -3.410272 2.822652 1.079629 -0.208997 2.642254 1.614526 -0.791348 -4.995482 -3.407200 1.261218 1.579261 2.032344 -3.795754 -2.785290 -2.085580 -0.133891 0.405487 -2.228910 2.284511 -1.794754 -1.760373 -0.457092 0.056716 6.028939 -1.451835 -2.133360 3.463521 2.279507 -4.739143 -5.024653 -2.324014 -3.049149 -1.077129 0.140544 -0.778975 1.729614 4.253585 -7.068451 2.582860 -0.343366 -0.601842 1.711541 -1.562986 0.168279 -6.271528 -0.337590 2.645744 3.582869 -1.381550 0.833465 0.417859 -2.592785 1.825274 0.178568 1.187782 -0.154568 0.413378 -0.781852 -2.296022 -2.630702 -0.280212 -2.011043 0.180510 0.071058 0.506395 0.098297 -6.008570 3.339257 -2.663757 -0.634861 2.831639 0.710304 3.740071 -2.250426 -3.640888 2.626478 1.072092 -0.780498 -3.584249 1.774927 3.225162 -0.597984 -0.669042 -1.613445 -6.160128 0.718625 -2.418935 0.594311 1.102305 1.448587 3.631339 0.793906 -1.775719 -5.025025 -1.495322 -0.700373 -0.165826 -1.757201 -1.658317 0.258465 3.149096 3.080440 0.684824 0.363786 0.092393 4.572451 -3.402049 -2.024737 3.287415 0.929979 -2.907552 1.397039 3.623436 -3.024118 -2.933675 -2.094983 1.528505 0.467764 -2.993275 1.452733 -1.179999 1.039540 1.230587 1.356432 -1.328398 1.910681 1.356856 0.463673 -2.750055 6.181572 5.104118 -2.624775 -0.954155 -1.890263 1.086242 -4.473995 -2.525984 0.082269 0.448356 0.140465 2.589386 1.718365 3.416877 -0.363780 1.199007 0.735715 -2.998109 +PE-benchmarks/topological-sorting.cpp__std::deque >::empty() const = -0.178614 0.525037 0.778518 -0.803974 0.880454 0.997870 0.186322 -0.410164 -0.568377 -0.103683 -0.062039 -1.054328 -0.589954 0.906531 -0.438553 0.145868 1.102368 0.068441 -0.356537 0.061467 0.333768 0.372157 1.048815 0.902144 -0.775103 0.118119 0.158182 0.312424 -0.255392 1.202119 -0.741611 -1.156812 0.080654 0.243019 0.104293 -0.216204 -0.146610 -0.342636 0.137858 -1.135067 0.143618 0.488580 -0.153019 -0.254064 0.080267 -0.269287 1.312017 0.570341 0.051753 -0.228121 0.392187 0.595475 -0.004668 0.138192 0.616476 0.173009 1.125457 -0.154533 -0.363281 -0.271460 -0.276403 0.106828 -0.308730 0.901708 0.820895 0.335310 -0.128062 -0.251629 -0.106593 0.087432 -0.056331 0.265787 0.147602 0.822793 0.056436 0.108814 0.475668 -0.534078 0.051232 -0.454264 -0.552631 -0.292145 0.143364 0.679208 0.305714 -0.436004 0.957641 -0.163902 0.128152 0.041504 1.336598 -0.681005 -0.243823 -0.415594 -0.676365 0.055513 -0.221996 0.080153 -0.353517 -0.143229 -0.715664 -0.552260 0.167613 0.190255 -0.321957 0.431903 0.097020 0.602591 -0.580257 -0.127476 -0.335191 0.266812 -0.012784 -1.269502 -0.809955 -0.347803 -0.108797 0.001645 -0.474061 -0.917130 0.388356 0.579329 -0.532767 -0.213915 -0.687831 0.814533 0.460813 0.032122 -0.023679 -0.235737 0.483503 0.755130 0.119273 -0.470491 0.144092 -0.227333 -0.145678 -0.095302 -0.334357 0.046585 -0.496648 -0.470906 0.099046 0.761530 -0.489383 0.215760 -0.768282 -0.204404 0.351789 2.507700 -0.591262 0.721294 0.059485 -1.126887 0.503951 0.020841 -0.476262 -0.279435 0.262575 0.676484 -0.849587 -0.631632 0.791130 0.942326 0.541002 -0.514967 0.510618 -0.124061 -0.277357 -0.223849 0.365974 0.088176 -0.184947 -0.589545 -0.412074 0.488527 1.604527 -0.195081 -1.543874 0.444850 0.123807 0.226444 0.117810 -0.157197 -0.136182 0.198482 0.336330 -0.226500 0.715969 1.060810 -1.810806 0.863466 0.150673 -0.787532 1.185091 -0.226614 -0.383521 0.259028 0.052827 0.981300 0.808597 0.166683 -0.218581 -0.265215 -0.710386 -0.168764 0.082526 0.389274 -0.493924 0.410506 0.440846 -1.065401 -0.606602 -0.834963 -0.095222 -0.334307 -0.862537 0.341374 -0.091898 -1.685982 1.275208 0.513632 0.067797 -0.067762 -0.443055 0.189034 -0.680787 -0.977543 0.225834 -0.288619 -0.201217 0.123825 -0.119356 0.368620 0.290247 0.804717 -0.873703 -0.853786 0.503359 0.118981 0.810715 0.368131 0.459705 0.272112 0.623661 -0.111734 -0.388905 -0.618839 0.863006 0.149422 -0.617961 0.207027 -0.497289 0.678641 0.742714 -0.221259 -0.354477 -0.841595 0.595927 -0.193912 0.091862 0.482866 -0.432836 -0.835019 -0.315768 0.632328 -0.225678 -0.412293 -0.512697 -0.315180 -0.701349 -0.741427 0.103450 -0.213633 0.118261 0.496428 -0.262612 -0.631248 0.144521 0.001145 -0.220716 0.325190 0.742819 0.276720 -0.265455 0.628743 -0.756284 0.565475 -1.084771 -0.909403 0.423335 -0.754951 -0.577492 -0.255160 -0.218682 0.536892 -0.209695 0.418711 0.023326 0.066069 +PE-benchmarks/topological-sorting.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/topological-sorting.cpp__std::deque >::back() = -0.390802 0.510683 0.764935 -0.774087 0.907905 0.588112 0.319152 -0.191445 -0.635904 -0.656552 -0.160579 -1.083574 -1.118833 1.258946 -0.539699 0.095193 1.651053 0.410552 -0.209831 -0.206028 0.648831 -0.187011 1.516692 1.328559 -1.165615 -0.025295 0.423613 0.641382 -0.011973 1.140311 -0.364246 -1.288780 0.483178 0.072726 0.430528 -0.706164 0.098872 -0.181229 -0.282924 -1.720628 0.119705 0.358452 -0.097923 -0.224563 -0.058412 0.473900 1.556283 0.935889 -0.277165 -0.051535 0.635484 0.610942 -0.028659 0.343631 0.352329 -0.049470 0.601758 -0.314911 -0.652445 -0.196845 -0.332441 -0.848683 -0.270739 1.172979 1.369957 0.237270 0.066982 0.003973 -0.324049 0.349835 0.049002 0.275607 0.556880 0.611158 0.481239 -0.378068 0.019652 -1.587857 -0.261018 -2.377140 -0.765859 -0.793318 0.604423 0.501019 0.232334 -0.287648 1.317540 0.156943 0.339742 0.633206 1.834122 -0.907651 -0.470114 -0.833841 -0.593438 0.440219 -0.650473 0.126864 0.105367 -0.006744 -0.969986 -0.832723 0.274487 0.083339 -0.419225 -0.061170 -0.092845 1.022521 -1.248714 -0.207515 -1.078412 0.009708 0.116377 -1.815123 -0.294374 -0.409340 0.603474 0.219866 -0.363047 -0.818254 0.402722 0.778190 -0.415298 -0.329783 -0.837983 1.151197 0.357066 -0.057415 0.176090 0.022000 0.360174 1.006072 0.770307 -0.519367 -0.165415 -0.024627 -0.622415 -0.172214 -0.786869 -0.137388 0.339144 -0.910761 0.215236 0.743449 -0.741022 -0.396883 -0.285929 -0.502054 0.816141 2.699290 -0.445996 0.776753 0.258619 -1.391717 0.595892 -0.175977 -0.460511 0.022688 0.746003 0.702316 -0.776428 -0.926236 0.726812 1.239209 0.813031 -0.825688 0.103743 -0.389903 -0.018311 -0.348202 0.252333 0.390918 -0.297948 -0.763739 -0.377985 0.705955 1.710559 -0.430294 -1.313074 0.488591 0.413246 0.061288 -0.572901 -0.244934 -0.143199 0.109751 0.316032 -0.221029 0.651922 1.505713 -2.401645 1.147585 0.085548 -0.443185 0.910436 -0.177040 -0.487456 -0.829682 0.330545 1.333109 1.144569 0.208136 0.016867 -0.192665 -1.088842 -0.178985 0.132237 0.750281 -0.471064 0.544618 0.246544 -1.070352 -1.035007 -0.745392 -0.107597 -0.390721 -0.547505 0.481285 0.338781 -2.385020 1.650982 -0.084927 -0.224487 -0.032050 -0.308643 0.576267 -1.211505 -1.509730 0.402422 -0.442938 -0.754608 -0.419839 0.013841 0.736734 0.031835 0.329875 -0.612337 -1.205433 0.906300 0.002161 0.825369 0.447860 0.670232 1.172986 0.534074 -0.463295 -0.778013 -0.544837 0.662396 -0.424282 -0.728141 0.193028 -0.359525 0.930426 1.450116 -0.207363 -0.407334 -0.365249 1.110656 -0.779861 -0.439319 0.914628 0.138918 -0.641267 0.358909 1.020231 -0.889639 -0.841429 -0.821356 -0.133646 -0.351219 -1.165848 0.181846 -0.754266 0.172560 0.737199 -0.121866 -0.724725 0.467440 0.185453 -0.078996 0.041212 1.223013 1.238870 -0.834503 0.575041 -0.995189 0.572320 -1.686461 -1.195540 0.345305 -0.325183 -0.287390 0.037624 -0.141113 0.663926 -0.216436 0.208062 -0.243806 -0.107796 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator--() = -0.673661 0.842930 1.295686 -1.916687 1.821214 2.201069 0.389635 -0.986874 -1.134223 -0.225985 -0.240855 -1.657234 -0.995621 2.155663 -1.035597 0.703260 2.703921 0.321035 -0.685232 0.012586 1.507298 0.418895 2.411934 1.996496 -1.909915 -0.146819 1.070974 0.860876 -0.175038 2.163507 -1.359179 -2.282774 0.382895 -0.411465 0.257667 -1.072844 0.139066 -0.415178 0.634192 -2.608023 0.372247 0.171918 -0.677994 -0.597796 -0.262118 -0.699478 2.578325 1.511465 -0.411883 -0.579125 1.233573 1.495439 -0.551487 0.388423 0.867087 0.687190 1.531159 0.194312 -0.621005 -0.740781 -0.498288 0.131447 -0.087431 2.109420 2.061241 0.648345 0.103646 0.237257 -0.184262 0.216729 -0.031098 0.372929 0.168804 1.436081 0.458132 -1.206882 0.308883 -2.616209 -0.163432 -1.880880 -1.008266 -0.916449 -0.196409 0.437058 1.033498 -0.412869 2.069337 -0.270482 0.462787 0.810307 2.901021 -1.794229 -0.597236 -1.587670 -1.659940 0.325656 -0.779394 0.170648 -0.354943 -0.472035 -1.541293 -1.857788 0.249222 0.818297 -0.651985 -0.299486 0.196597 1.564137 -1.268931 -0.889405 -0.880188 0.595445 -0.594563 -3.049621 -1.491370 -1.148045 0.666398 -0.138365 -0.707802 -2.535519 0.566008 1.964028 -0.971562 -1.095374 -0.332725 1.662728 1.306776 0.014469 -0.012209 -0.719932 0.739172 2.225503 1.048358 -1.074424 0.003527 -0.271715 -0.883361 -0.481497 -1.326601 -0.070308 -0.272280 -1.404972 0.198650 2.196517 -1.113566 0.112536 0.241016 -0.681517 1.255082 6.592336 -0.978399 1.444128 0.291150 -2.681957 0.949675 -0.083151 -0.922531 -0.233388 0.800687 1.200789 -2.784835 -1.576294 1.429733 1.952063 1.375802 -1.427773 0.099078 -0.762400 -0.616424 -0.404375 0.166780 0.392145 -0.821007 -1.366457 -0.831117 1.325232 3.546674 -0.810341 -2.779747 1.087983 0.932305 -0.219311 -0.670016 -0.608944 -1.102434 0.413376 0.942822 -0.550993 1.647251 2.516214 -4.203883 1.770359 0.041530 -1.337439 1.931247 -0.144083 -0.915102 -0.176795 0.432481 2.295978 1.859151 0.061099 0.096464 -0.303644 -1.631190 -0.234522 0.254365 1.024753 -0.881471 0.749772 0.836646 -2.348859 -1.602335 -0.764692 -0.438977 -1.128025 -1.182878 0.712516 -0.427103 -3.801745 2.936156 0.581837 0.115297 0.492263 -0.992349 1.092624 -1.890455 -2.458575 1.009583 -0.016908 0.233621 0.131625 0.035395 1.460418 0.653023 1.605338 -1.784795 -2.545985 0.655042 0.147626 1.607857 0.675588 1.092111 1.133489 0.037194 -0.218575 -1.694715 -1.344190 1.383164 0.654824 -1.703106 -0.582562 -0.720964 1.887007 1.887969 -0.562569 -0.882368 -1.297376 1.604954 -1.307933 0.200195 1.141979 0.230078 -2.033402 -0.822051 1.499401 -1.093524 -1.183763 -0.917515 -0.167231 -1.095979 -1.969596 0.264695 -0.628824 0.522608 0.995585 -0.214047 -0.965639 0.514375 0.447813 0.122851 0.558201 1.613385 1.280889 -0.880248 0.477679 -1.745099 1.046105 -2.742742 -2.347917 0.960001 -1.348395 -0.953507 -0.097856 -0.269329 1.507130 -0.568159 1.237504 0.313460 -0.428346 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator*() const = -0.123077 0.225392 0.274166 -0.343964 0.398271 0.352908 0.086009 -0.235578 -0.231895 -0.130017 -0.067307 -0.282133 -0.207557 0.425753 -0.234330 0.174848 0.587781 0.105968 -0.070452 -0.118856 0.293246 -0.081703 0.575746 0.485162 -0.444234 0.015046 0.329864 0.187070 0.018350 0.479682 -0.325322 -0.459486 0.158813 -0.166888 0.068299 -0.308627 0.015340 -0.075509 0.137863 -0.601169 0.050550 -0.142102 -0.153359 -0.066477 -0.066159 0.019557 0.576456 0.312948 -0.077722 0.048001 0.297870 0.321537 -0.089772 0.107172 0.187172 0.208395 0.377282 -0.031450 -0.117961 -0.085157 -0.106023 -0.132396 -0.015081 0.451651 0.462427 0.079170 0.025860 0.095506 -0.119323 0.030982 0.014166 0.111206 0.020472 0.298133 0.106285 -0.474466 0.082230 -0.715441 -0.124626 -0.696368 -0.238319 -0.269197 -0.065989 -0.027399 0.271790 0.135215 0.478559 0.002333 0.130304 0.126139 0.614164 -0.469253 -0.131095 -0.225867 -0.273939 0.047377 -0.188663 0.048577 -0.096678 -0.065971 -0.307730 -0.463030 0.222731 0.163024 -0.163892 -0.140144 -0.008807 0.320688 -0.461051 -0.241821 -0.309973 -0.005395 -0.173105 -0.624191 -0.124869 -0.216698 0.427489 0.003403 -0.128494 -0.587388 0.132515 0.491765 -0.164270 -0.274039 -0.029161 0.297246 0.260119 0.004732 0.012275 -0.156042 0.143903 0.566946 0.348648 -0.214198 -0.051505 -0.016011 -0.232170 -0.108298 -0.278306 -0.037171 -0.019142 -0.349980 0.127931 0.441037 -0.246808 -0.040153 0.271628 -0.199386 0.278206 1.228205 -0.192774 0.270785 0.064166 -0.592897 0.061244 -0.126843 -0.169219 0.014792 0.234800 0.257837 -0.539112 -0.337398 0.257156 0.416757 0.270542 -0.362706 -0.120955 -0.198281 -0.076401 0.007113 0.017540 0.075441 -0.193748 -0.275885 -0.162404 0.187213 0.815376 -0.187613 -0.376127 0.196732 0.077469 -0.115037 -0.278253 -0.130853 -0.223321 0.103138 0.158311 -0.099602 0.264472 0.521088 -1.011992 0.374145 -0.159526 -0.277536 0.307323 0.027872 -0.142004 -0.150445 0.119612 0.461335 0.398838 0.023099 0.153665 -0.020467 -0.372552 -0.063271 0.006167 0.266425 -0.230909 0.184138 0.276215 -0.597106 -0.352425 -0.059692 0.021293 -0.236952 -0.149500 0.162622 -0.060916 -1.020900 0.592305 0.044247 -0.034330 0.178952 -0.123539 0.298742 -0.422547 -0.513160 0.241659 -0.029091 0.071742 0.014631 -0.013120 0.320552 0.027687 0.247164 -0.324203 -0.487114 0.089253 0.020093 0.260350 0.165815 0.246475 0.359340 -0.230821 -0.075573 -0.376703 -0.111402 0.198348 -0.032721 -0.257016 -0.037591 -0.150514 0.406864 0.515752 -0.038083 -0.122636 -0.083495 0.381567 -0.390651 0.025719 0.260562 0.332117 -0.369678 -0.049314 0.305171 -0.276074 -0.296537 -0.165638 -0.057310 -0.153427 -0.387590 0.108994 -0.228803 0.102211 0.249481 0.008481 -0.220212 0.197696 0.035473 0.081766 0.054117 0.349084 0.483251 -0.231001 0.077169 -0.334159 0.169371 -0.590628 -0.487865 0.138269 -0.097346 -0.183942 -0.004102 -0.105349 0.336666 -0.085343 0.212705 0.069908 -0.142053 +PE-benchmarks/topological-sorting.cpp__std::deque >::pop_back() = -1.066997 2.017789 2.608367 -3.027397 4.062518 4.321150 0.840909 -1.132518 -1.918078 -0.739790 -0.878776 -3.495507 -2.900491 4.157276 -1.576080 1.382524 4.955737 0.347605 -1.133462 0.434558 2.602729 0.584915 4.468089 2.950000 -3.435408 -0.050568 1.378694 1.485296 -1.171439 4.873179 -2.997601 -4.743119 0.844017 -0.328241 0.723273 -1.535113 0.262545 -1.099950 0.335884 -4.708172 0.477824 1.505432 -1.506182 -1.000937 -0.495166 -0.882867 5.306189 2.808173 -0.658046 -1.197667 1.716729 1.972368 -0.607587 0.984877 1.587097 1.174840 2.674147 0.018549 -2.130666 -1.262133 -1.170217 -0.780338 -0.703166 3.439587 3.688692 0.851655 -0.000815 0.705675 -1.016826 0.403521 -0.308229 0.768657 1.240632 2.379975 1.261922 -0.770550 0.187994 -3.170670 -0.555931 -3.536188 -2.107592 -2.339879 -0.151532 1.741649 1.812827 -1.970682 4.197040 -0.711937 0.927648 1.221648 5.902937 -3.689308 -1.257429 -3.741862 -2.356805 0.306294 -1.652717 -0.447537 -0.166417 -1.363667 -2.926433 -3.175387 0.432906 1.051179 -1.077456 -0.349509 -0.234389 3.331314 -2.708404 -1.604665 -2.708834 0.725829 -0.889050 -5.685019 -2.592272 -0.725221 0.128194 0.246342 -0.906994 -4.419373 1.523770 3.667359 -1.941712 -2.102277 -0.869759 3.981022 2.122012 -0.285814 0.585526 -0.622045 1.610948 3.816391 2.626924 -1.516886 -0.496044 -0.398947 -1.369073 -0.790473 -1.922288 -0.109658 -0.973599 -2.931801 -0.062139 3.974893 -1.992558 0.945913 -1.388667 -1.369977 2.549984 10.835658 -2.110661 2.269964 -0.258013 -5.137061 2.857492 -0.091461 -2.182473 -0.900566 1.321251 2.593370 -4.687650 -2.868214 3.166714 3.571938 2.531117 -2.873698 1.028226 -1.673941 -0.534461 -1.109982 0.356296 1.608753 -0.877836 -2.442425 -1.446037 2.003435 7.150229 -2.121682 -6.072878 2.796784 1.034219 0.115021 -1.419319 -1.308856 -1.556705 -0.001140 1.581406 -1.139304 2.641745 4.832921 -6.755940 3.542176 0.150655 -3.240890 4.173244 -0.993092 -1.027028 -0.048208 0.287925 4.729505 3.598766 0.744630 -0.354228 -1.505752 -2.981633 -0.122408 0.556759 2.109631 -1.093535 1.343242 0.806626 -4.280735 -3.104081 -2.523745 -0.986460 -1.798144 -2.461787 1.076345 -0.090227 -7.101870 5.722083 1.023019 0.282272 0.785995 -1.084968 1.908610 -3.143521 -4.948446 1.911721 -0.649743 -0.754356 0.093826 0.147454 2.302025 1.489814 2.037665 -2.915911 -5.348867 1.919653 0.718816 2.999175 1.249151 2.466845 2.507763 2.098614 -1.366234 -2.635299 -3.234473 2.760706 0.490107 -2.603343 -0.863105 -1.239525 3.633536 3.460452 -0.677040 -1.150835 -3.487150 2.869121 -2.351427 0.086369 2.896233 -0.385998 -3.617161 -1.342132 3.449643 -1.573029 -2.703060 -2.006592 -0.094617 -2.468337 -3.748005 -0.396027 -1.912268 0.264711 2.491254 -0.737373 -2.345219 0.629994 0.589362 -0.447287 -0.043892 3.709677 2.280319 -2.403908 1.639378 -3.085247 2.396861 -5.131849 -4.177413 1.825151 -2.162428 -1.538554 -0.222731 0.478094 2.076914 -1.405373 1.519375 0.238071 -1.516338 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_pop_back_aux() = -0.938641 2.222230 3.401052 -3.301201 3.737895 4.552319 0.760764 -1.504795 -2.017291 -0.328784 -0.617754 -3.671035 -2.603382 3.867203 -1.891115 0.541670 4.883652 0.445179 -1.403199 0.321443 1.973387 1.281540 4.406107 3.596253 -3.380316 0.087392 1.323881 1.429893 -0.930753 4.984863 -3.483420 -4.603119 0.528035 0.481656 0.667048 -1.327624 -0.238769 -1.578810 0.305703 -4.682157 0.547777 1.307183 -1.638968 -1.052227 0.083988 -0.683097 5.547928 2.478549 -0.188167 -1.436009 1.612199 2.411332 -0.503596 0.659118 2.233992 1.082663 4.093542 0.423987 -1.569779 -1.207547 -1.275354 0.134844 -0.952831 3.769274 3.518361 1.398805 -0.186115 -0.566828 -0.523164 0.232181 -0.441111 0.892052 1.164646 3.297970 0.645872 -0.269835 1.306154 -2.847161 -0.145038 -2.234961 -2.064554 -1.873112 -0.119527 1.609100 1.467645 -2.067487 3.972977 -0.652895 0.908012 0.575755 5.785001 -3.319016 -1.074807 -2.687238 -2.763548 0.112768 -1.191284 0.202217 -0.986372 -1.266978 -2.974513 -2.954271 0.461315 1.039686 -1.171219 1.059076 0.181952 2.967826 -2.208651 -0.840705 -2.078518 0.716987 -0.453955 -5.527150 -3.199987 -1.404755 0.363929 0.036653 -1.649718 -4.282859 1.580001 3.385662 -2.119475 -1.506784 -1.522416 3.901677 2.156062 -0.181631 -0.027352 -1.101665 1.755419 3.204870 1.760000 -1.731505 0.199855 -0.792217 -1.453311 -0.885996 -1.857073 0.306229 -1.298126 -2.146902 0.031302 3.754258 -2.052549 1.082145 -1.725370 -1.130011 2.118049 11.509258 -2.516882 2.609906 -0.213104 -5.015937 2.534367 0.214260 -2.063414 -1.108681 1.246256 2.880776 -5.040585 -2.685332 3.192186 3.761587 2.337435 -2.800964 1.808746 -1.247274 -1.105226 -1.192851 0.974804 0.772216 -1.060142 -2.395947 -1.693599 2.126482 6.982304 -1.599047 -6.997591 2.036341 0.459993 0.717752 -0.305813 -0.880587 -0.616783 0.644865 1.644256 -1.120686 3.078035 4.592002 -7.465322 3.508209 0.243806 -3.542078 4.839033 -0.939749 -1.264729 1.165333 0.529777 4.529231 3.420983 1.089909 -1.118501 -1.270090 -2.958527 -0.521800 0.447202 2.154258 -1.692135 1.535980 1.757227 -4.633351 -2.921653 -3.358793 -0.541847 -1.723766 -3.218045 1.187945 -1.134129 -7.479239 5.699470 1.860031 0.455320 0.203226 -1.742333 1.004228 -3.096767 -4.657251 1.343940 -0.668598 -0.495299 0.244617 -0.273952 2.049179 1.462372 3.149925 -3.766726 -4.914469 1.914446 0.578455 3.385465 1.307210 2.367501 2.065765 2.356922 -0.616574 -2.444387 -2.960004 3.656255 1.000278 -2.837056 -0.155132 -1.725691 3.202227 3.320393 -1.163900 -1.105781 -3.745593 2.681215 -1.718083 0.384077 2.233363 -0.660561 -3.534198 -1.631902 2.860078 -1.210870 -2.427620 -1.874201 -1.245642 -2.765714 -3.474279 0.001888 -1.509451 0.495580 2.245829 -0.771517 -2.480888 0.471059 0.182595 -0.549005 1.072727 3.096021 2.278199 -1.808110 2.164279 -3.133311 2.683891 -4.868708 -4.092685 1.877676 -3.180174 -1.817916 -0.690408 -0.292680 2.200861 -1.176630 1.635826 0.379985 -0.509572 +PE-benchmarks/magic-square.cpp__generateSquare(int) = -4.061888 -5.462202 -3.298383 -9.520530 6.189864 4.576363 3.333851 -5.802785 -11.017953 0.283238 5.218297 -11.740770 -0.541436 11.047419 -3.323810 9.713380 17.347928 1.391912 -5.720261 -1.775355 10.808506 -3.712807 13.508211 15.896366 -7.950657 -1.280139 -2.230631 6.220855 2.451268 -1.764243 2.443386 -2.773275 3.682438 -11.576043 -3.462433 -8.535880 2.271183 4.093172 10.367979 -16.972348 2.809187 -1.276946 4.044400 -2.538339 -4.211769 4.956665 4.879212 9.020366 -1.566895 2.877355 9.273792 -0.036345 -1.138816 2.329410 0.690862 0.397309 3.720122 4.095225 -3.815394 -4.937966 -0.055803 0.585976 2.899620 8.648937 14.359478 2.138243 -0.604567 7.276104 3.962808 2.995648 5.944603 1.280199 -4.410732 -0.196560 3.713815 -17.090261 -1.688172 -22.538182 -1.584564 -21.082275 -5.626227 2.060392 8.060388 -4.537576 5.223496 1.875228 8.391659 0.003360 -3.802647 10.228561 9.746522 -7.309023 -4.943570 -6.044283 -6.359040 3.571507 -4.153819 2.539377 11.722040 4.620555 -8.278130 -2.874309 6.005222 4.163270 -2.988927 -7.665797 3.392131 6.642288 -4.524536 -6.956307 2.479181 10.284190 -1.437536 -15.145061 1.467780 -10.571042 3.391337 -0.420471 -3.345213 -7.468401 -0.117286 2.857009 -3.673151 -3.288780 -2.487999 8.726544 6.158583 4.657581 0.844665 2.556127 2.549672 15.237892 -0.225297 -7.170954 1.356960 -0.416911 -5.408001 4.919179 -9.652120 -5.314283 6.199741 -10.042995 5.633967 5.980683 -5.086513 -3.933908 11.329338 4.994920 1.686576 36.900185 1.770860 13.989650 9.723990 -7.501381 7.966308 -4.484389 1.979314 3.397223 3.422248 -2.781766 -19.575541 -9.465290 5.306053 9.161558 7.306254 -14.462360 -8.237428 -0.144346 -1.379646 0.041532 -1.132878 3.002484 -0.715863 -5.312562 -1.563348 9.737598 22.248134 -2.881970 1.306526 5.412546 6.384495 -6.949597 -19.131879 -5.025282 -8.383283 1.915492 -1.061659 2.871277 6.239310 11.909854 -19.455248 7.517532 0.790808 3.217577 10.008215 4.053534 -11.401608 -20.959890 -2.933420 4.702021 13.782036 -4.049377 -0.255881 5.086650 -7.878507 -0.278776 2.995079 -1.612862 -1.766536 3.248896 -0.855054 -2.684025 -3.985816 4.812227 -4.888387 -0.595343 0.083689 6.708533 1.054983 -11.231098 7.716873 -0.748450 -4.561437 1.401955 -4.805032 9.192005 -7.489181 -7.221730 5.836514 -0.366540 -1.815814 -8.787382 2.562874 5.164550 1.485062 6.125721 -4.867370 -12.850462 6.669968 -8.898339 7.600713 3.734928 -2.163982 3.212104 -1.601380 -3.211087 -12.353372 -6.703146 -5.766961 2.508299 -10.583121 -1.232975 -1.426437 8.824505 4.864914 0.766084 -9.234404 1.454264 13.782262 -7.822585 -3.815177 5.715379 2.086399 -10.759575 2.066157 7.627826 -15.379281 2.434695 -4.663398 -4.347459 -3.190414 -7.204229 5.905972 4.055472 6.357612 -2.656567 1.545402 3.077649 4.928543 4.036702 3.417306 2.465994 16.890899 11.298436 -1.337060 -5.236329 -10.544436 3.758729 -10.708130 -12.520540 5.508700 2.187409 -8.585871 1.734547 4.984823 11.303235 0.982545 -1.783859 -3.489108 2.753322 +PE-benchmarks/magic-square.cpp__main = -0.926791 -1.268731 -0.378943 -2.283419 1.486523 0.772015 0.808695 -1.176789 -2.727349 -0.087950 1.106764 -2.570006 -0.165653 2.669572 -0.791661 2.128734 4.100236 0.629512 -1.269141 -0.585830 2.455290 -1.161013 3.167083 3.724891 -1.933803 -0.199622 -0.453768 1.548124 0.645503 0.052883 0.298074 -0.660342 0.872790 -2.536998 -0.583486 -2.229463 0.459738 1.072330 2.122865 -4.105116 0.708392 -0.265325 1.007145 -0.562906 -0.848925 1.403754 1.219076 2.105173 -0.412392 0.876730 2.149242 0.009334 -0.188373 0.594779 0.343316 0.328038 1.104827 0.871928 -0.971369 -0.937618 -0.112497 -0.280554 0.736950 2.024470 3.324799 0.402297 -0.131876 1.436544 0.865344 0.709818 1.510747 0.271167 -0.945373 -0.213209 0.886773 -3.934879 -0.226951 -5.360799 -0.380379 -5.382003 -1.384814 0.333357 2.116716 -1.012320 1.108587 0.474502 2.062671 -0.071080 -0.775563 2.191665 2.298047 -1.748520 -1.187083 -1.321088 -1.492631 0.866042 -0.986941 0.357155 2.605652 1.060703 -1.933508 -0.740117 1.585763 0.896955 -0.737380 -1.537774 0.709441 1.745278 -1.450067 -1.635625 0.264683 2.274929 -0.277431 -3.443087 0.555845 -2.466619 1.102416 -0.038622 -0.878173 -1.669557 0.110437 0.764073 -0.934310 -0.646182 -0.852983 2.118535 1.204717 0.990130 0.169939 0.436372 0.429640 3.327122 0.227187 -1.783111 0.286106 0.089522 -1.340175 1.043627 -2.312555 -1.304941 1.494839 -2.365362 1.173704 1.167061 -1.308024 -0.873862 2.650624 1.157197 0.476244 8.163599 0.323453 3.156842 2.163336 -1.782876 1.812043 -0.829562 0.522703 0.901606 1.035529 -0.628705 -4.258642 -2.255082 1.117432 2.200658 1.789179 -3.313982 -2.006922 -0.233874 -0.283770 0.272412 -0.210785 0.620743 -0.228828 -1.338372 -0.417240 1.891518 5.113041 -0.624885 0.017596 1.116337 1.247288 -1.712258 -4.367858 -1.111256 -1.842222 0.498066 -0.382562 0.505743 1.467074 2.866828 -4.975019 1.949834 -0.123812 0.580842 2.322369 0.837099 -2.446578 -4.966108 -0.749191 1.075698 3.380668 -0.799416 -0.043202 1.312493 -1.934921 -0.120801 0.524829 -0.182704 -0.536312 0.815392 -0.023046 -0.829274 -0.891257 0.872947 -0.959153 -0.175594 0.031506 1.559008 0.297300 -3.090789 1.790061 -0.245517 -1.024431 0.475294 -0.816253 2.010748 -1.815367 -1.785090 1.302728 0.011421 -0.531851 -2.123340 0.535244 1.360818 0.060704 1.164295 -1.070551 -2.946020 1.581190 -2.067949 1.785590 0.920019 -0.555086 1.032258 -0.123258 -0.715144 -2.762021 -1.205441 -1.277530 0.156234 -2.174777 -0.163496 -0.416792 2.056052 1.373689 0.328745 -1.853659 0.414357 3.348755 -1.844150 -0.931368 1.477653 0.511126 -2.218167 0.779032 1.910375 -3.633883 0.333594 -1.130159 -1.044122 -0.551870 -1.537103 1.554954 0.735233 1.466352 -0.573460 0.453870 0.492414 1.214765 0.872105 0.660234 0.484733 3.978509 2.946816 -0.427384 -0.944635 -2.323222 0.876969 -2.552461 -2.688795 0.992721 0.645440 -2.055030 0.531389 1.005047 2.657033 0.248274 -0.343466 -0.762399 0.585848 +PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -6.090374 -5.896110 -1.663647 -16.606253 12.212706 14.870391 5.978677 -9.368968 -17.469284 -2.708161 7.024584 -18.921879 -2.919264 20.048543 -6.062908 17.758671 24.404262 1.998275 -10.515964 1.031240 18.545263 -1.312318 24.850957 19.199330 -14.563084 -0.731561 -3.530742 8.925471 2.310337 6.633624 2.599226 -8.971387 7.989989 -19.593611 -7.396108 -9.308860 2.710193 4.979939 13.293853 -25.132679 4.559631 4.271636 -2.360613 -5.211295 -5.311465 -5.922973 12.630999 15.596463 -1.269305 5.325295 11.550968 2.484742 -1.763723 4.849608 3.478351 3.528402 0.472483 -5.037219 -8.282934 -9.940687 -1.657338 -5.318047 3.551181 15.236390 18.942013 1.934818 -0.604363 13.024784 2.114010 3.699609 10.132721 3.017718 -8.083313 0.834852 7.225387 -19.756173 -0.079474 -18.982381 -4.083221 -23.696087 -10.511165 1.279741 12.071680 8.493845 11.245802 -0.974990 15.920495 -4.704260 -4.950082 17.925674 18.293009 -15.635195 -7.562448 -12.205448 -8.751672 4.796492 -8.927542 -0.769849 5.985549 4.304466 -14.448615 -4.748892 5.639377 9.102854 -5.964703 -13.080806 3.990826 14.277886 -15.634112 -15.093765 1.986979 15.850253 -6.046277 -27.436008 -9.842762 -8.585311 7.767133 0.229534 -4.189625 -16.068817 2.630435 9.658373 -3.165497 -9.140523 -1.504543 11.094249 9.319757 7.905887 2.551949 4.331554 4.270622 29.513524 5.686777 -8.310488 1.836469 -0.891256 -1.780836 8.464676 -5.685106 -8.172076 -4.268367 -18.493218 2.351227 16.772953 -9.101500 -3.294016 2.945670 8.313800 3.978859 58.181652 1.389572 22.259022 15.450262 -17.413185 4.038262 -7.582419 0.101971 4.216964 4.446344 -0.048100 -26.262684 -15.080594 10.298329 16.482792 13.003631 -18.347035 -0.216308 -2.343049 -0.972779 0.327405 -1.808982 5.307711 2.696087 -14.330838 -3.379628 15.362277 36.513736 -7.082019 -4.720347 12.312168 4.303325 -8.282595 -20.540357 -8.396409 -10.024908 2.253412 8.195851 0.333271 8.189551 21.212948 -18.391388 14.718172 -1.536812 -0.137666 14.060505 6.111174 -17.060071 -17.884236 -8.132906 10.864117 19.235934 -7.667115 1.879368 5.748293 -14.004266 -0.387139 5.157090 -2.014816 -1.838375 6.802827 1.403160 -8.429760 -8.838026 5.238687 -5.295208 -1.307743 -2.469557 10.630022 0.998993 -18.337853 15.810394 0.591410 -7.218862 5.428687 -4.569908 20.438498 -14.206592 -16.706853 12.762138 -1.386758 -7.989698 -5.352396 3.077179 10.087199 9.449695 3.806737 -9.986824 -15.248373 10.816363 -4.711251 13.058709 7.356727 -1.265530 9.568814 -4.494976 -5.503261 -14.179286 -15.145486 -0.210428 1.888130 -16.581669 -7.311010 -4.346471 17.497387 10.425926 1.025909 -16.025470 -0.182196 18.118574 -15.610336 -3.581138 11.921340 6.855215 -21.331894 1.808505 15.139749 -17.726387 2.107564 -6.283389 0.801969 -7.540888 -12.221717 9.855909 4.584984 9.982203 -0.309646 3.204794 0.504919 5.648587 5.758574 4.288890 2.265746 23.162224 14.603777 -4.538944 -7.092810 -16.260069 7.251659 -19.898828 -21.975254 9.567323 3.913595 -11.226907 2.667827 4.722547 19.136269 4.994833 -3.225918 -2.098469 1.169934 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::queue >, void>() = -0.092970 0.087194 0.530415 -0.502313 0.379194 0.055492 0.117100 0.077446 -0.506440 -0.294032 -0.071035 -0.403497 -0.347261 0.559268 -0.254097 -0.111427 0.802033 0.343539 -0.102120 -0.225143 0.175554 -0.160641 0.596382 0.662760 -0.528524 0.062866 0.036166 0.387034 0.058593 0.688625 -0.185619 -0.538995 0.051990 0.221609 0.271502 -0.486596 -0.020439 0.052431 -0.285576 -0.935064 0.122362 0.250186 0.068660 -0.067516 0.129034 0.379785 0.597305 0.352595 -0.111741 0.143878 0.329800 0.363600 0.022504 0.102125 0.226516 0.097117 0.504435 -0.186431 -0.273010 0.076629 -0.132742 -0.377480 -0.042166 0.483017 0.567542 0.066060 -0.018339 -0.282338 -0.001047 0.162594 0.189173 0.072887 0.135786 0.141162 0.134602 -0.105216 0.128648 -0.777301 0.072168 -1.225703 -0.346728 -0.300970 0.599013 0.306199 -0.120614 -0.146730 0.565255 -0.059820 0.169901 0.263279 0.622935 -0.199401 -0.204088 -0.273521 -0.362279 0.241503 -0.176847 -0.122227 -0.030978 0.190042 -0.366040 -0.221598 0.213202 -0.058397 -0.193335 0.253786 -0.021583 0.494902 -0.703846 0.007541 -0.431024 0.286669 0.199534 -0.638231 -0.095896 -0.354913 0.327401 0.057984 -0.242172 -0.128152 0.198945 0.245748 -0.303212 0.179125 -0.695232 0.548123 0.015257 -0.068623 -0.015745 -0.059011 0.050387 0.186426 0.213612 -0.363397 -0.022221 0.181224 -0.230984 -0.151189 -0.436493 -0.068119 0.142107 -0.334093 0.132284 0.057330 -0.359695 -0.207056 -0.267146 -0.124385 0.316325 1.165391 -0.218856 0.374574 0.101792 -0.462193 0.251671 0.151222 -0.069211 0.081783 0.379727 0.189190 -0.194949 -0.383613 0.165416 0.525578 0.374842 -0.296355 0.023873 -0.185066 -0.128809 0.105740 0.185169 0.028599 -0.206889 -0.310812 -0.197605 0.057251 0.764542 0.097677 -0.651180 0.003199 0.165678 -0.115476 -0.093992 0.009612 0.056874 0.133204 0.074839 -0.152288 0.375576 0.630289 -1.436439 0.582487 -0.019907 -0.160475 0.373549 -0.125243 -0.098357 -0.512746 -0.027552 0.406296 0.744882 0.086637 -0.047465 0.097653 -0.452561 -0.092374 0.009184 0.347085 -0.301281 0.224012 0.246825 -0.489589 -0.260906 -0.444237 -0.040467 -0.001101 -0.328370 0.174962 0.070281 -1.217721 0.556511 -0.045703 -0.038134 -0.003806 -0.019567 0.120764 -0.483541 -0.522640 0.059478 -0.020314 -0.416697 -0.271564 -0.091030 0.393189 -0.185196 0.219560 -0.258530 -0.492627 0.413229 -0.127870 0.378695 0.233082 0.059279 0.496979 0.401934 -0.044956 -0.234367 -0.146286 0.340558 -0.315422 -0.105110 0.400033 -0.235029 0.279130 0.599409 -0.009969 -0.124719 -0.099516 0.644981 -0.108338 -0.175257 0.336235 -0.203760 -0.086825 0.357951 0.441990 -0.529183 -0.330237 -0.414278 -0.110609 -0.006229 -0.260931 0.278474 -0.278321 0.138550 0.205489 0.047490 -0.437476 0.221403 0.015420 -0.179953 0.075923 0.665397 0.614900 -0.217400 0.496919 -0.344787 0.264913 -0.618215 -0.304738 -0.148275 -0.186963 -0.226801 0.127456 -0.231974 0.352072 -0.028846 0.214557 -0.090141 0.124317 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = -0.413558 0.520414 0.918073 -1.000680 1.167729 1.111363 0.363366 -0.409894 -0.809124 -0.334697 -0.185619 -1.054074 -0.874397 1.462733 -0.571759 0.479407 1.973457 0.463213 -0.345049 -0.150545 0.939258 -0.266490 1.743616 1.534987 -1.316590 0.010890 0.659243 0.628381 -0.072929 1.512250 -0.986705 -1.354492 0.491661 -0.440593 0.327186 -0.939077 0.044680 -0.216140 0.200079 -2.020084 0.181612 0.136399 -0.320284 -0.318613 -0.139177 0.165356 1.784695 1.036830 -0.258466 -0.035986 0.707193 0.575288 -0.119295 0.347083 0.622148 0.557206 0.998461 0.187839 -0.657221 -0.270546 -0.393433 -0.628559 -0.071148 1.320021 1.491047 0.274455 0.031759 0.162583 -0.243773 0.161407 0.076277 0.302819 0.340540 0.708070 0.505178 -0.987275 0.172498 -1.896617 -0.314978 -2.117939 -0.852728 -0.823392 0.244782 0.092746 0.712894 -0.266449 1.500928 -0.138039 0.372286 0.438340 2.020364 -1.416161 -0.517341 -0.997348 -0.772596 0.258324 -0.653284 -0.002679 0.186395 -0.424102 -1.107367 -1.250694 0.586851 0.465177 -0.484917 -0.214534 -0.011614 1.227447 -1.170831 -0.740017 -1.100168 0.044657 -0.351707 -2.029487 -0.385520 -0.547494 0.697595 0.219561 -0.494902 -1.584939 0.487550 1.309114 -0.559641 -0.800498 -0.304837 1.378636 0.646246 -0.039468 0.168740 -0.252690 0.403768 1.481646 1.141670 -0.645318 -0.090159 0.014020 -0.836210 -0.218630 -0.918740 -0.241331 0.101664 -1.104196 0.025103 1.186214 -0.855873 0.111935 0.413294 -0.327846 0.872183 3.906630 -0.577244 0.936033 0.197275 -1.763992 0.886680 -0.137829 -0.517367 -0.004463 0.807979 0.776664 -1.900719 -1.072107 0.818932 1.407558 0.946336 -1.243556 -0.179189 -0.664026 -0.137493 -0.182379 0.162643 0.370932 -0.311897 -0.943849 -0.454070 0.686284 2.523994 -0.800267 -1.787862 0.644019 0.202549 -0.197247 -1.057096 -0.412223 -0.635664 0.170763 0.272427 -0.325469 0.871045 1.723919 -2.826367 1.320559 -0.356695 -0.940108 1.423020 -0.101188 -0.530766 -0.660345 0.250108 1.475730 1.423705 0.269507 -0.043771 -0.135033 -1.218137 -0.186395 0.072631 0.803396 -0.566810 0.647405 0.429440 -1.539802 -1.072958 -0.663683 -0.104948 -0.785077 -0.589623 0.534518 0.002435 -2.775168 1.860860 0.209396 -0.159756 0.430098 -0.319982 0.673216 -1.325312 -1.768722 0.666714 -0.120133 -0.206874 -0.259959 -0.033140 0.947916 0.251625 0.492061 -0.972132 -1.795928 0.709735 -0.009191 1.064555 0.535603 0.666437 1.206359 0.433648 -0.471658 -1.104026 -0.666440 0.614577 -0.136715 -0.906617 -0.425653 -0.509259 1.292945 1.557387 -0.134046 -0.299747 -0.746107 1.308723 -1.163720 -0.137361 1.018069 0.432503 -1.004742 -0.128537 1.178555 -0.975051 -0.916064 -0.649653 -0.295774 -0.507369 -1.230970 0.260688 -0.786665 0.284978 0.706108 -0.105135 -0.645451 0.437808 0.194686 0.045575 0.089161 1.344036 1.420196 -0.912694 0.387580 -1.104826 0.747483 -1.876151 -1.406909 0.454626 -0.349884 -0.642901 0.031553 0.131096 0.907069 -0.271396 0.309242 -0.001473 -0.407595 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::size() const = -0.146834 0.178332 0.459434 -0.506570 0.472445 0.335594 0.137206 -0.217885 -0.439797 -0.182001 0.024221 -0.623143 -0.367505 0.585579 -0.284731 0.109356 0.718740 0.140785 -0.199744 -0.100455 0.260275 0.010713 0.703438 0.662740 -0.548969 0.060866 0.061857 0.323684 0.029621 0.625819 -0.294166 -0.542673 0.115534 0.080105 0.109630 -0.281834 -0.022181 -0.047935 0.030331 -0.797782 0.099174 0.213134 0.039435 -0.105728 0.035579 0.136768 0.696152 0.416733 -0.057107 0.031500 0.361115 0.295416 0.038999 0.124295 0.272110 0.011702 0.614363 -0.162935 -0.234194 -0.117559 -0.128934 -0.204868 -0.101651 0.572435 0.623247 0.135231 -0.040579 -0.106657 -0.025317 0.118730 0.109854 0.156633 0.071438 0.340717 0.112298 -0.123642 0.273865 -0.635055 -0.011565 -0.782041 -0.367800 -0.185958 0.328629 0.360084 0.116935 -0.133427 0.617844 0.011414 0.038414 0.149629 0.768167 -0.395942 -0.187833 -0.215613 -0.395309 0.152390 -0.217757 0.059775 -0.111798 0.110129 -0.436104 -0.282955 0.187293 0.055062 -0.229518 0.191296 0.022193 0.407172 -0.542811 -0.087516 -0.245680 0.176136 0.064938 -0.800762 -0.225073 -0.324866 0.188456 -0.001855 -0.238932 -0.381670 0.179486 0.268687 -0.274845 -0.036359 -0.635115 0.496849 0.213427 0.042644 -0.005640 -0.087964 0.209123 0.440201 0.088231 -0.353202 0.015349 -0.051845 -0.164494 0.010303 -0.327472 -0.042848 -0.015134 -0.367562 0.097986 0.300730 -0.327565 -0.055969 -0.261429 -0.082888 0.229109 1.361702 -0.220463 0.477839 0.182077 -0.609492 0.260295 -0.013286 -0.159766 0.029130 0.250994 0.275134 -0.397745 -0.451650 0.380629 0.594205 0.367296 -0.368489 0.120277 -0.064103 -0.103780 -0.065868 0.187749 0.074057 -0.155659 -0.363645 -0.217376 0.270952 0.892481 -0.049260 -0.661807 0.213632 0.090652 -0.017017 -0.134672 -0.104867 -0.044853 0.125158 0.106526 -0.076222 0.386432 0.687856 -1.254971 0.554395 0.066066 -0.270097 0.583874 -0.119018 -0.292529 -0.253076 0.036867 0.505160 0.548137 0.043277 -0.049596 0.012625 -0.502121 -0.099324 0.035521 0.219376 -0.307701 0.262046 0.260313 -0.537588 -0.371392 -0.415268 -0.041450 -0.111379 -0.389554 0.277263 0.038843 -1.104304 0.688370 0.100996 -0.081468 -0.028167 -0.210464 0.192790 -0.495055 -0.566587 0.138680 -0.183796 -0.260585 -0.169456 -0.016546 0.273592 -0.017133 0.309366 -0.426695 -0.459137 0.358213 -0.098635 0.409314 0.245954 0.188941 0.286332 0.341818 -0.087105 -0.301974 -0.185146 0.353901 -0.110443 -0.332328 0.247975 -0.250080 0.394342 0.556337 -0.068416 -0.196681 -0.199108 0.497941 -0.172546 -0.146684 0.337155 -0.142072 -0.394347 0.107771 0.408833 -0.343925 -0.233926 -0.376652 -0.198285 -0.245812 -0.433869 0.234615 -0.124418 0.143463 0.248259 -0.052509 -0.355721 0.226859 0.031101 -0.108989 0.139028 0.620136 0.434922 -0.174949 0.334660 -0.482657 0.283833 -0.706174 -0.519005 0.171880 -0.251803 -0.327309 -0.038717 -0.152301 0.414313 -0.034312 0.169651 -0.064326 0.101828 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::front() = -0.156982 0.254591 0.415333 -0.379716 0.388872 0.180858 0.121647 -0.123141 -0.296189 -0.308608 -0.080178 -0.496233 -0.466060 0.532473 -0.266126 0.005722 0.707278 0.185480 -0.094062 -0.145829 0.243533 -0.134924 0.659304 0.606114 -0.529389 0.015429 0.191136 0.330889 0.047377 0.558664 -0.194910 -0.522017 0.159202 0.104815 0.234956 -0.329190 0.029725 -0.067141 -0.158084 -0.771784 0.055985 0.138016 0.049958 -0.078870 0.004190 0.269353 0.695718 0.397206 -0.101093 -0.016221 0.311613 0.304927 0.025343 0.144261 0.184392 -0.026411 0.441843 -0.201923 -0.255255 -0.056497 -0.134687 -0.387427 -0.097566 0.540540 0.611672 0.110649 0.025197 -0.057475 -0.119918 0.149748 0.031771 0.134917 0.180359 0.312111 0.156885 -0.194941 0.155894 -0.711556 -0.079660 -1.069884 -0.332448 -0.347627 0.258298 0.266142 0.071976 -0.055765 0.590916 0.095359 0.157435 0.199591 0.783684 -0.369317 -0.185353 -0.290064 -0.294643 0.190956 -0.259717 0.050576 -0.022637 0.093488 -0.396274 -0.321233 0.179922 0.014116 -0.200559 0.095270 -0.047041 0.412702 -0.603644 -0.051751 -0.444091 -0.017548 0.072780 -0.773799 -0.046691 -0.248646 0.300065 0.047935 -0.156800 -0.337772 0.171194 0.331408 -0.192998 -0.058913 -0.575864 0.496057 0.135537 -0.044964 0.036081 -0.030753 0.154017 0.376212 0.266742 -0.262979 -0.077385 0.000805 -0.291398 -0.107724 -0.353150 -0.051140 0.161086 -0.381007 0.086913 0.272071 -0.317338 -0.171155 -0.155131 -0.239358 0.351304 1.125334 -0.212331 0.331773 0.104604 -0.594441 0.228613 -0.040392 -0.196139 0.023039 0.316955 0.314919 -0.286884 -0.416309 0.304559 0.540546 0.341758 -0.309584 0.033871 -0.154348 -0.046688 -0.086659 0.130886 0.125549 -0.202499 -0.323065 -0.187681 0.238405 0.741853 -0.094055 -0.512474 0.179604 0.109324 -0.016695 -0.228752 -0.081608 -0.018506 0.077683 0.047401 -0.096711 0.294824 0.647841 -1.165934 0.523971 0.034054 -0.201982 0.423650 -0.145726 -0.182463 -0.421558 0.146062 0.567410 0.502161 0.050502 0.008276 -0.060997 -0.481692 -0.088615 0.019722 0.343093 -0.263390 0.235177 0.185075 -0.507780 -0.440109 -0.352458 -0.006082 -0.130673 -0.266643 0.210240 0.129630 -1.084656 0.718510 -0.044698 -0.077676 -0.021736 -0.132837 0.178224 -0.530357 -0.600726 0.122696 -0.190300 -0.306528 -0.211350 -0.008975 0.317559 -0.091582 0.137924 -0.295878 -0.452742 0.350055 -0.066152 0.318908 0.205169 0.292128 0.454712 0.289195 -0.139856 -0.314261 -0.111222 0.231857 -0.229515 -0.269176 0.219776 -0.172456 0.373065 0.657899 -0.090331 -0.124878 -0.058065 0.491868 -0.246037 -0.229497 0.358944 -0.024215 -0.273285 0.188268 0.403674 -0.378484 -0.376124 -0.383913 -0.119792 -0.128406 -0.479153 0.129325 -0.315147 0.068211 0.336700 -0.056495 -0.364889 0.244243 0.052213 -0.064192 0.049415 0.560819 0.537334 -0.288459 0.309714 -0.425050 0.222423 -0.727491 -0.470702 0.104043 -0.120681 -0.137006 0.013516 -0.116422 0.313453 -0.075828 0.135829 -0.077721 -0.015620 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::pop() = -0.297000 0.428750 0.758409 -0.838852 0.991488 0.889888 0.239111 -0.263133 -0.628736 -0.271118 -0.214085 -0.870272 -0.727174 1.116496 -0.460477 0.314764 1.399888 0.279476 -0.274162 -0.047141 0.657067 -0.026870 1.247284 0.969419 -0.977949 0.010821 0.332541 0.539028 -0.162388 1.321109 -0.706266 -1.154149 0.245261 -0.044049 0.271157 -0.625424 0.078669 -0.125190 -0.007449 -1.448655 0.152139 0.347734 -0.192805 -0.222136 -0.060583 -0.006829 1.326217 0.777500 -0.179689 -0.128598 0.534669 0.579076 -0.082945 0.280341 0.411975 0.326940 0.803021 -0.146517 -0.547428 -0.238345 -0.286628 -0.408249 -0.114598 0.955695 1.089862 0.201180 0.022647 0.057393 -0.224661 0.164365 0.054357 0.204834 0.232613 0.539423 0.314610 -0.340310 0.159055 -1.085058 -0.119642 -1.334090 -0.600419 -0.645127 0.199652 0.494474 0.401894 -0.356389 1.156424 -0.130678 0.265917 0.334327 1.488052 -0.929322 -0.349496 -0.857104 -0.636598 0.196958 -0.462229 -0.131683 -0.054229 -0.147460 -0.767952 -0.812990 0.262749 0.226755 -0.334448 -0.002608 -0.074843 0.915221 -0.931778 -0.421927 -0.762120 0.225140 -0.174546 -1.484342 -0.465040 -0.380011 0.245924 0.061188 -0.256509 -1.024601 0.381204 0.901660 -0.485967 -0.409890 -0.540945 1.039148 0.458362 -0.129041 0.113931 -0.177680 0.295212 0.956320 0.640758 -0.500202 -0.146964 0.032837 -0.450145 -0.217263 -0.658681 -0.074921 -0.100237 -0.821281 0.033321 0.868498 -0.583312 0.094782 -0.290075 -0.329249 0.692262 2.751208 -0.483527 0.635304 0.061952 -1.290931 0.683317 0.014185 -0.441659 -0.065940 0.472720 0.578946 -1.104079 -0.810794 0.673469 0.986190 0.706382 -0.714091 0.100706 -0.464096 -0.135341 -0.152728 0.133901 0.353606 -0.322274 -0.666968 -0.374543 0.412465 1.825216 -0.404370 -1.397207 0.593048 0.256572 -0.145315 -0.458732 -0.307317 -0.365868 0.047717 0.283300 -0.281426 0.673307 1.300466 -2.043748 1.009805 -0.023267 -0.704752 1.031342 -0.276521 -0.278348 -0.318495 0.081824 1.144014 1.082159 0.120051 -0.022315 -0.203904 -0.867510 -0.071128 0.091650 0.600949 -0.386820 0.400159 0.313870 -1.125642 -0.780310 -0.635601 -0.178653 -0.443905 -0.593610 0.335410 0.067603 -2.010090 1.414602 0.132563 -0.009671 0.259453 -0.214313 0.478576 -0.911641 -1.255781 0.458313 -0.108298 -0.264250 -0.148025 0.028200 0.700353 0.163950 0.455806 -0.718795 -1.277464 0.525788 0.048485 0.725086 0.370776 0.537110 0.715863 0.545435 -0.323422 -0.694040 -0.626221 0.579690 -0.081961 -0.577134 -0.019735 -0.353073 0.916507 1.076773 -0.097591 -0.279794 -0.640278 0.954818 -0.573742 -0.103061 0.771158 -0.098507 -0.780502 -0.100565 0.912968 -0.624624 -0.737931 -0.573481 -0.061616 -0.433710 -0.907307 0.129002 -0.542724 0.151222 0.601844 -0.111045 -0.662241 0.301198 0.162424 -0.133452 0.015610 1.122423 0.747435 -0.552683 0.516036 -0.786153 0.547955 -1.374941 -0.963392 0.288199 -0.448304 -0.438479 0.059321 0.005638 0.652195 -0.276577 0.429094 0.027751 -0.331417 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::~queue() = -0.168099 0.123011 0.468565 -0.457998 0.501713 0.166102 0.139788 0.011299 -0.432637 -0.312156 -0.126859 -0.410257 -0.497140 0.613328 -0.269853 0.054436 0.793507 0.290278 -0.097309 -0.198763 0.341101 -0.178161 0.714328 0.583166 -0.620751 0.016275 0.095813 0.492328 0.086374 0.706834 -0.184652 -0.508027 0.162825 0.112307 0.271428 -0.506783 0.111816 0.085849 -0.269381 -0.919767 0.078180 0.209287 0.013877 -0.021934 0.032261 0.395056 0.612931 0.466731 -0.185507 0.111435 0.393881 0.320923 0.032455 0.198664 0.077647 0.046984 0.392948 -0.269576 -0.342376 -0.032567 -0.122793 -0.569893 -0.036517 0.502605 0.704571 0.015693 0.039807 -0.028361 -0.104591 0.193314 0.172376 0.106979 0.171072 0.116176 0.253885 -0.146906 0.046528 -0.770580 -0.048855 -1.280128 -0.357608 -0.459219 0.449089 0.332208 0.013632 -0.121980 0.689309 0.043836 0.150830 0.310837 0.726156 -0.379410 -0.207712 -0.459042 -0.289795 0.260420 -0.325225 -0.131806 0.033100 0.204074 -0.373913 -0.331625 0.173539 -0.064883 -0.213390 0.047492 -0.157508 0.574209 -0.775474 -0.115835 -0.559421 0.193100 0.076303 -0.778895 -0.066911 -0.281319 0.367458 0.028792 -0.026244 -0.203415 0.170113 0.357126 -0.228879 0.013076 -0.605882 0.588492 0.130141 -0.148745 0.072224 0.016580 0.032724 0.355182 0.348670 -0.314436 -0.219332 0.183119 -0.274263 -0.112497 -0.501351 -0.026867 0.209857 -0.493041 0.106032 0.228319 -0.330204 -0.200888 -0.228518 -0.214248 0.433005 1.155124 -0.145473 0.303517 0.118026 -0.558988 0.303222 0.065712 -0.112101 0.177051 0.343822 0.187582 -0.266589 -0.479493 0.219502 0.523910 0.400748 -0.380974 -0.019744 -0.256102 0.000000 -0.023883 0.075257 0.241308 -0.239815 -0.304634 -0.169055 0.096979 0.809818 -0.065542 -0.603058 0.231048 0.184216 -0.227548 -0.291477 -0.135756 -0.002445 -0.023811 0.104981 -0.111763 0.294004 0.726980 -1.273184 0.587896 0.064352 -0.158671 0.380558 -0.208801 -0.079600 -0.513850 0.024894 0.519643 0.682474 0.026924 0.022028 0.021525 -0.532961 -0.010976 0.059369 0.372954 -0.207377 0.214837 0.173458 -0.451702 -0.399855 -0.382331 -0.072144 -0.045998 -0.243700 0.206245 0.143691 -1.255055 0.647901 -0.207555 -0.105258 0.113622 -0.006362 0.293526 -0.542464 -0.630349 0.204384 -0.056934 -0.435112 -0.362334 0.063439 0.450956 -0.135526 0.110043 -0.257148 -0.595430 0.393983 -0.115154 0.258800 0.221651 0.215095 0.546030 0.343019 -0.212598 -0.369570 -0.172287 0.241957 -0.307410 -0.143029 0.281635 -0.134153 0.402641 0.719212 0.023498 -0.107265 -0.088231 0.695148 -0.284381 -0.297780 0.471725 -0.039278 -0.184003 0.374973 0.533131 -0.535157 -0.469129 -0.419888 -0.007623 0.001124 -0.422882 0.237153 -0.382493 0.109729 0.336753 0.045387 -0.446688 0.311561 0.084952 -0.142069 -0.106840 0.820841 0.682687 -0.325184 0.406689 -0.384993 0.258156 -0.763064 -0.372581 -0.042175 -0.141301 -0.131524 0.197928 -0.086148 0.389001 -0.070497 0.168490 -0.099183 -0.126116 +PE-benchmarks/aho-corasick-algorithm.cpp__findNextState(int, char) = -0.972335 -1.050862 0.081386 -2.522274 1.420248 2.334356 0.793302 -2.045388 -2.486154 -0.134311 1.265717 -2.812171 -0.051487 2.731667 -1.050998 2.764281 3.164620 0.341570 -1.929000 -0.154062 2.677472 0.259642 3.768014 3.039589 -1.992712 -0.095982 -0.417487 1.502345 0.880664 0.739190 0.177285 -0.799549 1.209131 -3.046499 -1.226898 -1.289868 0.211973 0.784452 2.432257 -3.193170 0.676206 0.022082 -0.201388 -0.692717 -0.698975 -1.005075 1.672548 2.161047 0.435385 0.746227 1.856412 0.366341 -0.095838 0.590005 0.925415 0.722409 0.960550 -1.070591 -0.712984 -1.596727 -0.226162 -0.353776 0.486050 2.349195 2.552115 0.464431 -0.218438 1.666295 0.664092 0.400403 1.580541 0.552774 -1.659383 0.536338 0.614879 -3.690168 0.917249 -2.681218 -0.479925 -2.282681 -1.373436 0.532406 1.432709 1.009773 1.851149 0.166677 2.297727 -0.741151 -1.060489 1.981936 2.447212 -2.488080 -0.998304 -1.036390 -1.021786 0.440211 -1.221730 0.270728 0.286911 0.880535 -1.996000 -0.374407 0.850519 1.465227 -0.976013 -1.570167 0.739010 1.951233 -2.113949 -2.150224 0.682474 2.374589 -0.929141 -3.912654 -1.508215 -1.777967 1.520363 -0.239844 -1.019936 -2.586763 0.417970 1.414391 -0.371272 -1.363322 -0.401511 1.103326 1.704650 1.156251 -0.044776 0.713267 0.641026 4.674698 0.453124 -1.366847 0.551624 -0.216275 -0.359271 1.360605 -0.735484 -1.125220 -0.844786 -2.589148 0.034979 2.531722 -1.298681 -0.125412 0.907537 1.671757 0.238966 8.996863 0.125868 3.283700 2.776610 -2.308508 -0.016939 -1.317059 0.326192 0.664060 0.440645 -0.050684 -4.537089 -2.240213 1.547806 2.534815 1.755036 -2.588948 -0.017348 -0.214340 -0.217161 0.051396 -0.137933 0.435803 0.257093 -1.890403 -0.597180 2.253034 5.076682 -1.106365 -0.421615 1.472733 -0.228140 -1.187800 -2.489804 -1.224078 -1.224127 0.654159 0.919569 0.362011 1.273996 2.949677 -2.288485 2.114868 -0.418363 -0.158749 2.333499 0.973453 -2.584086 -1.611455 -1.282881 1.233846 2.322883 -1.316257 0.078621 1.169386 -2.227749 -0.271435 0.632983 -0.325801 -0.571360 0.980117 0.941379 -1.183496 -1.074712 0.769494 -0.395578 -0.215515 -0.422122 1.778702 -0.439996 -2.655424 2.100997 0.484025 -1.046991 0.997463 -0.928881 3.030370 -2.068436 -2.018234 1.771231 -0.028606 -0.763822 -0.697696 0.392353 1.441661 1.167301 0.936893 -1.955757 -1.443395 1.223746 -0.970141 2.029137 1.007750 -0.313420 0.939306 -1.426379 -0.406144 -2.104081 -1.847027 -0.350668 0.541788 -2.549661 -1.096347 -0.612468 2.514656 1.447334 0.113149 -2.231988 0.388672 2.328106 -2.684520 -0.454693 1.312106 1.702243 -3.287941 0.114320 1.734477 -2.379188 0.513133 -0.649910 -0.785608 -1.158797 -1.728266 1.874295 0.928482 1.810301 -0.259987 0.558921 0.298837 0.961168 0.738567 0.707359 0.892828 3.086290 2.046644 -0.064224 -1.354460 -2.636356 1.146330 -2.675477 -3.232605 1.535290 0.699129 -1.813795 0.145238 0.281875 3.232460 1.124761 -0.740370 -0.281900 0.452648 +PE-benchmarks/aho-corasick-algorithm.cpp__searchWords(std::__cxx11::basic_string, std::allocator >*, int, std::__cxx11::basic_string, std::allocator >) = -3.422850 -3.362320 -1.153194 -9.368304 5.532137 6.467707 2.880363 -4.915482 -9.420893 -2.426066 4.409147 -11.065044 -2.432962 10.676794 -3.855332 8.071849 13.071505 0.733751 -5.742878 -0.401169 9.720249 -0.041969 13.129573 11.129551 -8.555675 -0.812450 -1.632757 5.511321 2.840139 1.731166 2.980252 -4.674873 3.841230 -8.932437 -2.959004 -4.671443 1.825359 2.413910 6.500828 -13.445102 2.294242 2.474467 0.032890 -2.629710 -2.642950 -0.622980 6.610953 8.622121 -1.484951 2.261017 7.658196 2.069757 -1.117300 2.115936 1.051111 -0.535405 0.658532 -1.950392 -3.912043 -5.059778 -0.255124 -2.431430 1.480415 9.052453 10.936281 1.297235 -0.189093 6.186977 2.062893 2.375688 5.505230 1.709591 -3.407787 1.071695 4.011532 -10.159528 -0.102286 -12.982783 -1.372288 -15.061613 -5.506519 0.767888 8.228929 4.155293 4.524194 -0.886704 8.612656 -1.231496 -2.820618 10.854474 10.138791 -6.986733 -4.220929 -6.428720 -5.530968 3.736774 -5.278154 0.808352 3.412226 3.817991 -7.809692 -2.068989 1.947914 4.156134 -3.438850 -6.151453 2.241595 7.134756 -8.074257 -6.121120 1.386114 8.867840 -1.171148 -15.297977 -4.999337 -6.224597 4.201419 -0.350494 -2.547173 -6.875059 0.558366 3.820328 -2.020110 -3.412153 -3.241066 5.797322 5.128583 4.499882 0.848145 2.575198 3.093715 14.502952 1.356230 -5.223286 0.898850 -0.674278 -1.246794 4.445778 -4.459792 -4.176710 1.078520 -9.155698 2.206457 7.581290 -4.932852 -3.674219 2.461033 3.504187 2.093471 31.346029 1.191368 12.241526 8.966516 -8.563291 1.695949 -3.833010 0.218952 2.643739 2.587290 -0.044827 -12.279114 -8.254746 5.669212 9.414908 6.868772 -9.377912 -0.357653 0.295146 -0.989445 -0.596610 -0.544024 2.559662 0.743663 -7.179447 -2.007872 9.538560 17.521620 -2.664693 -1.150053 5.467433 4.471289 -3.977534 -9.858032 -3.799450 -4.764177 2.002610 4.036377 1.069832 5.216010 11.607524 -12.598843 7.816751 1.155681 1.355800 6.701048 3.052636 -9.982935 -10.808241 -2.857795 5.699737 9.806228 -4.007118 1.086175 3.607908 -7.966519 -0.496787 3.021264 -0.991993 -1.509696 3.541634 0.944361 -3.130185 -5.303359 2.529086 -3.209652 0.167898 -1.635928 6.034995 0.833818 -9.950837 8.845992 -0.444402 -4.194133 0.636807 -3.899657 9.985730 -8.724482 -8.517229 5.835043 -1.776875 -5.722052 -4.248606 1.441998 5.262910 3.920764 3.359922 -5.510389 -7.703669 6.689086 -3.538164 7.203916 3.896155 -0.801964 4.964871 -2.221488 -1.923207 -8.105772 -7.313241 0.418719 0.986630 -9.678861 -1.762576 -1.948223 8.503150 5.786817 -0.639639 -8.890794 1.034002 9.323005 -7.221149 -3.423804 5.415593 3.155721 -10.816814 2.278964 7.340073 -10.181543 1.626470 -4.922179 -0.524306 -3.589724 -7.343103 5.646831 2.831542 5.842905 0.025701 1.665971 0.199205 3.699341 3.162012 1.857568 2.117894 12.198798 8.591807 -2.246744 -3.363323 -10.251529 4.186346 -11.215532 -12.466995 5.376977 0.937264 -5.722950 1.227887 1.432211 10.288576 2.924485 -1.442586 -2.295425 2.813462 +PE-benchmarks/aho-corasick-algorithm.cpp__main = -6.331750 0.666326 6.798973 -12.150917 17.262972 10.130712 7.252036 -1.605954 -11.696452 -5.593276 -0.407430 -10.949407 -13.205737 20.035234 -5.206145 12.873074 21.579859 3.253900 -4.260450 -2.284463 19.341044 -10.781875 22.376767 12.505176 -19.064645 -1.135039 2.850088 11.239723 -0.168232 18.675224 -6.194651 -11.797049 7.206084 -10.914985 6.424260 -11.369917 5.495778 2.262020 0.534462 -24.104245 1.384209 7.666869 0.084501 -2.984974 -5.149598 5.490067 16.598337 16.540860 -7.835976 2.417772 11.493947 -1.285373 -0.199041 6.974019 2.296269 4.865027 4.743004 1.233222 -14.083627 -5.014049 -4.566750 -16.803170 4.751273 13.743278 21.530214 -2.593141 3.188230 11.694964 -5.262693 5.151543 5.759116 3.119471 2.442899 -2.661554 14.682719 -12.815860 -4.504189 -23.353816 -6.093441 -35.566169 -12.165389 -12.533554 8.045413 2.991304 11.449766 -6.226700 20.721255 -0.504038 1.323471 11.271815 21.410936 -17.854266 -7.265278 -20.869672 -7.995357 3.823814 -12.575891 -6.349485 12.215798 -3.335867 -14.120925 -10.377406 6.386354 6.095961 -4.743682 -11.439621 -5.079918 18.459255 -16.827324 -14.615065 -14.811115 4.916038 -6.609342 -26.662128 1.957288 -4.650587 5.170553 2.087983 3.188586 -12.717733 4.310894 16.713609 -5.655746 -11.983783 -4.872452 20.354819 8.153106 0.146712 7.455688 2.318970 -0.301688 18.094093 20.517958 -5.496572 -8.683649 3.445131 -9.340003 2.990102 -10.156943 -5.060597 6.842189 -18.637429 -2.948647 11.460037 -7.273876 0.690813 4.315715 -1.173838 13.569800 41.169004 -2.169142 11.988945 3.043032 -19.276948 16.611193 -0.842332 -3.366123 5.611630 10.660540 0.715838 -21.030071 -15.815827 9.844700 14.158052 12.133415 -17.776119 -6.606447 -9.525525 2.447421 -2.095577 -3.881416 11.474776 -0.813382 -12.817775 -2.918859 4.547516 31.679815 -12.865987 -17.139805 15.397421 5.306502 -10.575520 -22.421184 -9.476103 -11.482327 -3.765987 -0.808705 -3.471914 7.564482 22.539038 -27.193357 16.368129 -4.426733 -7.705714 16.273183 -5.274632 -5.621095 -22.252315 -1.574865 15.279487 18.656776 -0.693419 -0.721466 -0.152546 -15.037903 4.149240 -0.105820 6.407641 -0.921991 6.753920 -5.350162 -12.730418 -14.342464 -7.484891 -5.700882 -5.374561 -2.039802 4.903667 6.706880 -27.622888 19.511432 -5.735737 -5.349908 8.862503 3.970346 13.495589 -13.583947 -22.328779 11.231468 -0.907665 -8.874929 -12.934717 4.118800 12.096086 2.209425 -4.592821 -6.600750 -24.900245 11.604261 -4.633065 10.378256 5.722862 6.484933 18.782666 12.522065 -12.722995 -16.154564 -10.939531 -0.182288 -5.677912 -10.961754 -8.535376 -2.660023 17.964291 16.054300 2.882169 -1.467594 -7.673563 21.322385 -16.867735 -8.395660 18.505633 2.000686 -11.817704 4.279808 20.317354 -14.681149 -12.056405 -10.576751 2.707943 -3.765446 -14.868680 4.132700 -8.308450 4.046036 5.890401 2.270410 -5.739776 5.184035 5.564795 0.538103 -9.670544 26.665314 20.016739 -16.321525 -0.576333 -12.244196 7.724379 -21.959788 -14.501159 4.236432 3.378831 -4.570255 7.424329 9.666485 13.007236 -1.360321 -2.443825 -1.438572 -11.419791 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.944690 0.419912 1.692729 -3.046449 4.226919 1.827091 1.199719 -0.670022 -2.011258 -1.176685 -0.268846 -1.941571 -2.301725 3.610730 -1.721653 2.111599 4.391711 0.378343 -0.260882 -0.883683 3.842159 -1.397348 4.838171 2.348111 -4.586349 -0.328837 1.183279 2.532356 0.792720 3.552883 -1.090200 -2.348374 1.599086 -2.093038 1.216415 -2.635335 1.301142 -0.037053 0.195851 -4.630594 0.289638 0.207208 -1.194735 0.101197 -0.637762 2.016105 3.590236 3.221954 -2.570425 0.870596 2.992874 0.800089 -0.301235 1.522543 -0.566511 0.450568 1.330336 0.332163 -2.420880 -1.054489 -0.991057 -3.092871 1.142732 3.023313 4.538081 -0.494202 0.814084 2.540184 -0.608561 0.852358 1.487903 0.834341 0.621216 0.262715 3.104816 -3.046919 -0.934026 -6.058519 -1.618537 -7.991142 -2.086833 -2.986616 0.976588 -0.519910 1.827282 -0.239866 3.891888 0.738471 0.943756 2.759860 4.066152 -3.176430 -1.266789 -4.196682 -2.132678 0.857892 -2.328302 -0.844798 1.862786 -0.049451 -2.437924 -2.455592 0.758486 0.733126 -0.924846 -2.534559 -1.055600 3.354427 -3.785560 -2.594818 -2.900320 1.030587 -1.554881 -5.586244 -0.225279 -1.111464 3.227682 -0.018753 1.503899 -2.433079 0.402856 3.740443 -1.216468 -1.716672 -0.390973 3.770740 2.352762 0.553026 1.122174 0.069149 -0.009746 3.626960 4.272331 -1.040624 -2.138085 0.421727 -1.693462 0.020102 -2.570470 -0.360736 2.230827 -3.581089 0.286991 2.922257 -1.374489 -0.706470 1.945172 -1.101744 3.135024 8.651739 -0.440707 2.314267 0.752971 -4.205201 1.650424 0.006145 -0.397326 1.548561 1.943121 0.465727 -3.901222 -3.131803 1.588597 2.265710 2.254204 -4.150068 -1.358741 -1.819688 0.198722 -0.106307 -1.513238 2.414726 -1.177080 -2.430220 -0.325985 0.984835 5.886522 -1.943223 -3.762174 2.767953 1.839388 -2.477079 -3.651618 -1.904245 -1.858077 -0.473358 0.932071 -0.565188 1.346744 4.446134 -7.124556 2.843196 -0.192523 -0.770523 2.268884 -0.594388 -1.000732 -4.067867 0.106162 3.154148 2.981680 -0.113740 0.262145 0.316535 -2.570061 1.197417 0.314517 1.576786 -0.114365 0.907406 -0.168750 -2.821951 -3.054920 -0.889045 -0.802153 -0.263304 -0.412736 1.065322 0.325306 -7.237683 3.707654 -1.812619 -1.429909 1.963490 -0.041779 3.427322 -3.092521 -4.178978 2.162852 -0.470698 -1.605352 -2.773340 1.141416 2.360154 0.489686 0.339907 -1.907981 -5.200456 1.415293 -1.331924 1.122653 1.531491 1.642562 4.344709 -0.024073 -2.082530 -4.118654 -1.849951 0.616529 -0.449683 -2.100318 -1.017821 -0.387633 3.349720 3.819993 -0.066451 -0.224704 -1.068874 3.828123 -3.965209 -1.523554 3.574295 1.673767 -2.638527 1.244686 3.706252 -2.870916 -2.495262 -1.504431 0.704698 -0.327697 -2.828121 1.047214 -1.842667 0.760852 1.295884 0.892791 -1.626232 1.437282 0.597904 0.650108 -1.823665 4.748521 5.577787 -3.362444 -0.106556 -2.181098 1.619877 -5.051522 -3.580903 1.017678 -0.569838 -0.283152 1.947154 1.081761 2.960698 -0.253670 0.152707 -0.002746 -1.859913 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::~deque() = -0.465508 0.560119 1.348740 -1.358309 1.821671 0.935364 0.389199 0.187749 -1.149369 -0.961424 -0.488776 -1.463881 -1.869157 1.901485 -0.718589 0.161713 2.249656 0.498184 -0.329733 -0.313465 1.093267 -0.097527 2.081519 1.302854 -1.880133 0.029523 0.151762 1.403801 -0.001125 2.180807 -0.524418 -1.830501 0.413818 0.544126 0.775400 -1.101225 0.403371 -0.009976 -0.957544 -2.508292 0.161223 1.062533 -0.362164 -0.060405 0.032246 0.964558 2.033094 1.429761 -0.681388 0.022105 1.124807 0.877114 0.033761 0.613621 0.040935 -0.134009 0.893659 -0.796433 -1.217823 -0.267013 -0.376351 -1.617206 -0.347525 1.402727 2.026649 -0.016611 0.041809 0.158688 -0.413661 0.586233 0.328674 0.354354 0.871275 0.409146 0.961567 0.261151 -0.216759 -1.722934 -0.106879 -3.391126 -1.073685 -1.499230 1.259805 1.328056 -0.059630 -0.936972 2.154365 0.058704 0.409895 1.129912 2.381363 -1.092385 -0.608865 -1.879437 -0.818818 0.725009 -1.027924 -0.511533 0.132946 0.443190 -1.129134 -0.910189 0.068950 -0.370395 -0.594950 0.048127 -0.632577 1.803410 -2.143997 -0.179537 -1.779622 0.741353 0.340764 -2.471945 -0.782959 -0.385379 0.572705 0.092683 0.152947 -0.511618 0.543393 1.033484 -0.786078 0.006081 -1.579252 1.947358 0.572086 -0.458649 0.386727 0.295679 0.363911 1.012081 1.097389 -0.759655 -0.843705 0.423152 -0.496996 -0.311963 -1.297529 0.112299 0.408536 -1.475496 0.286583 0.914722 -0.877046 -0.466886 -1.438939 -0.820934 1.355978 3.521158 -0.518669 0.803329 0.108866 -1.741778 1.151455 0.232420 -0.627144 0.318215 0.769622 0.762979 -0.671232 -1.391772 0.994911 1.527103 1.174288 -1.217162 0.493901 -0.680162 0.064434 -0.456722 0.197337 1.056384 -0.533587 -0.809774 -0.502023 0.493713 2.485713 -0.380552 -2.401969 1.071080 0.786665 -0.368972 -0.556215 -0.479118 0.119116 -0.351508 0.719655 -0.351180 0.920094 2.252919 -3.383016 1.705173 0.660066 -0.657829 1.208426 -0.774387 -0.126188 -1.048771 -0.012850 1.808221 1.913738 0.217736 -0.115985 -0.390841 -1.527440 0.139819 0.421670 1.052336 -0.364259 0.553632 0.193565 -1.162612 -1.301382 -1.444525 -0.518830 0.071656 -0.966100 0.527111 0.407939 -3.665838 2.151226 -0.594230 -0.211770 0.125802 -0.134073 1.039657 -1.507267 -2.035816 0.701168 -0.388047 -1.668291 -0.959549 0.281872 1.208749 0.009312 0.459737 -0.808561 -2.110529 1.386758 -0.091542 0.832404 0.640582 0.875073 1.633069 1.357628 -0.856128 -1.057629 -1.132965 1.204506 -0.648055 -0.523639 0.730593 -0.308379 1.235620 1.941367 -0.064586 -0.414760 -0.904732 1.821891 -0.849244 -0.889307 1.532043 -0.408635 -0.789704 0.983139 1.739308 -1.271635 -1.445423 -1.411733 0.211432 -0.355675 -1.471328 0.281442 -1.185610 0.114150 1.279955 -0.043006 -1.470382 0.771947 0.244378 -0.611085 -0.593468 2.517935 1.843466 -1.238124 1.338469 -1.259542 1.036346 -2.356828 -1.333405 0.150480 -0.797753 -0.208279 0.472902 -0.052656 0.935145 -0.398810 0.422391 -0.396987 -0.500101 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.086960 0.007450 0.225831 -0.211146 0.169658 -0.050496 0.082272 -0.081162 -0.248976 -0.114555 -0.045527 -0.118980 -0.083242 0.302936 -0.107654 0.186736 0.478788 0.241598 -0.036889 -0.211864 0.247560 -0.427696 0.406023 0.440610 -0.347358 0.038353 0.201968 0.281744 0.184535 0.333062 -0.226223 -0.038754 0.114509 -0.259008 0.177896 -0.434551 0.043542 0.125748 0.046752 -0.602423 0.040672 -0.117332 0.179683 -0.008855 -0.035543 0.281366 0.281603 0.249885 -0.097546 0.190398 0.242715 0.010670 0.075410 0.099511 0.113234 0.244356 0.360454 0.040666 -0.135334 0.053536 -0.033947 -0.413083 0.163485 0.281529 0.419075 -0.031230 0.031184 0.085228 0.009145 0.035447 0.146072 0.073544 -0.092414 0.003105 0.142572 -0.612089 0.181247 -0.731169 -0.094819 -0.910930 -0.216033 -0.236248 0.147012 -0.147962 0.201482 0.198907 0.365501 0.004164 0.103786 0.013365 0.333344 -0.364821 -0.125023 -0.135467 -0.128546 0.126088 -0.182616 -0.086527 0.196266 0.038521 -0.190779 -0.274484 0.406871 0.122972 -0.154663 -0.057771 -0.052814 0.293587 -0.430781 -0.323324 -0.321613 -0.083763 -0.155081 -0.388926 0.335742 -0.250643 0.380731 0.050963 -0.043963 -0.341008 0.056942 0.322316 -0.063867 -0.154504 -0.248873 0.309237 0.074501 -0.055283 0.042833 -0.066631 -0.034185 0.325980 0.354768 -0.204877 -0.099020 0.177883 -0.354852 -0.057219 -0.329936 -0.177203 0.252290 -0.336160 -0.059154 0.109408 -0.209947 0.010250 0.488537 -0.009811 0.212679 0.719638 -0.007904 0.174337 0.120283 -0.313920 0.203810 0.002153 0.009236 0.196014 0.282352 0.046103 -0.482344 -0.283261 -0.006866 0.301053 0.215910 -0.318034 -0.401777 -0.233038 0.008047 0.179821 -0.020583 0.054277 -0.139876 -0.203489 -0.059742 -0.036162 0.563237 -0.148395 -0.098517 0.051129 -0.099113 -0.345447 -0.619229 -0.099454 -0.257296 0.035395 -0.250725 -0.038033 0.115926 0.367148 -0.807720 0.340143 -0.272540 -0.128101 0.305223 -0.062910 -0.070185 -0.626245 0.045650 0.194094 0.402332 -0.045447 0.061814 0.155560 -0.321655 -0.036858 -0.080833 0.193846 -0.177067 0.169346 0.122923 -0.319479 -0.182238 0.006708 0.070177 -0.188262 0.048549 0.146623 0.079425 -0.653634 0.274228 -0.131401 -0.125860 0.282353 0.071096 0.114864 -0.347362 -0.305254 0.139124 0.099797 0.021460 -0.262518 -0.001258 0.288243 -0.192140 -0.159393 -0.135591 -0.335067 0.064657 -0.223509 0.098413 0.154078 0.028874 0.316880 0.097701 -0.105747 -0.299533 0.211825 -0.267826 -0.247813 -0.056670 -0.114128 -0.092274 0.286175 0.489659 0.100939 0.111540 0.157729 0.443225 -0.328050 -0.189358 0.235945 0.192466 -0.091853 0.160675 0.247827 -0.407755 -0.220114 -0.134862 -0.137724 0.138862 -0.167037 0.258194 -0.240344 0.100893 0.106233 0.041313 -0.095016 0.245711 0.044340 0.042065 -0.065312 0.445378 0.532505 -0.172406 0.015401 -0.192958 0.057261 -0.407117 -0.143055 -0.081066 0.251643 -0.181812 0.139935 0.112146 0.280380 0.040519 0.000711 0.005849 -0.166405 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::begin() = -0.202872 0.386286 0.833724 -0.768901 0.740881 0.663745 0.189043 -0.256858 -0.591395 -0.176435 -0.161819 -0.690996 -0.517768 0.896668 -0.399165 0.147309 1.264190 0.331733 -0.258820 -0.189273 0.501414 -0.160129 1.084665 1.059747 -0.910557 0.088716 0.392530 0.531347 0.062486 1.142907 -0.746586 -0.784597 0.139268 -0.050805 0.323805 -0.661185 -0.043111 -0.154620 0.005727 -1.416468 0.125679 0.142903 -0.105700 -0.165007 0.055067 0.224360 1.196741 0.621110 -0.144701 -0.032234 0.501326 0.459086 0.015406 0.169219 0.468155 0.382453 1.055980 0.104745 -0.338463 -0.096058 -0.220767 -0.368177 -0.006361 0.894945 0.967628 0.200404 -0.037782 -0.128244 -0.013309 0.075126 0.060947 0.242278 0.126259 0.556816 0.235297 -0.560368 0.415169 -1.187655 -0.025019 -1.270032 -0.570493 -0.537621 0.234890 0.159621 0.337959 -0.187365 1.012782 -0.120191 0.279404 0.138672 1.220847 -0.796707 -0.263686 -0.529516 -0.607878 0.184427 -0.324243 -0.043659 -0.031420 -0.123919 -0.656769 -0.710872 0.454843 0.219050 -0.373789 0.221603 -0.018293 0.760374 -0.780992 -0.352142 -0.649748 0.104121 -0.146817 -1.246945 -0.260797 -0.522911 0.447637 0.043989 -0.333308 -0.923972 0.298948 0.789129 -0.426832 -0.286496 -0.594495 0.943956 0.412188 -0.118188 0.011412 -0.243427 0.250311 0.732486 0.572093 -0.494487 -0.047655 0.089640 -0.549570 -0.238206 -0.644003 -0.069346 0.051769 -0.611464 -0.037110 0.640851 -0.541499 0.137012 0.103735 -0.221219 0.526795 2.615566 -0.422937 0.596790 0.093695 -1.067311 0.592579 0.102466 -0.331137 0.046037 0.497640 0.538340 -1.244930 -0.678197 0.458356 0.927890 0.576733 -0.730285 -0.042129 -0.386019 -0.234039 -0.019455 0.217387 0.100492 -0.305176 -0.563418 -0.340214 0.301482 1.623293 -0.309597 -1.306758 0.280143 0.022696 -0.204843 -0.537440 -0.172870 -0.268376 0.149110 0.061376 -0.232281 0.652475 1.074539 -2.092426 0.902023 -0.179852 -0.683033 1.052886 -0.212143 -0.251461 -0.391656 0.145842 0.887979 0.981433 0.134289 -0.163550 -0.047398 -0.801328 -0.139136 0.017949 0.538595 -0.505640 0.448055 0.439181 -1.031418 -0.601283 -0.610279 -0.021681 -0.405799 -0.538191 0.330878 -0.162025 -1.886209 1.158023 0.176155 -0.041625 0.254066 -0.259352 0.226737 -0.835394 -1.020850 0.304624 0.022253 -0.121845 -0.228702 -0.102536 0.628955 0.032408 0.425198 -0.779203 -1.101091 0.417209 -0.136735 0.660075 0.397519 0.372359 0.654764 0.511793 -0.163682 -0.655640 -0.293573 0.435375 -0.055881 -0.483305 -0.060902 -0.421511 0.719646 1.037167 -0.125295 -0.074435 -0.472824 0.887336 -0.533418 -0.130440 0.533079 0.008439 -0.591755 -0.039051 0.667923 -0.590876 -0.588803 -0.481663 -0.355119 -0.270137 -0.676031 0.313934 -0.485343 0.178051 0.477706 -0.099053 -0.535670 0.332993 0.040843 -0.089465 0.154734 0.922134 0.905502 -0.436491 0.453935 -0.681219 0.518308 -1.158492 -0.737233 0.144851 -0.364537 -0.449572 0.009440 -0.031445 0.620249 -0.122308 0.290000 0.053010 -0.152096 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::end() = -0.202872 0.386286 0.833724 -0.768901 0.740881 0.663745 0.189043 -0.256858 -0.591395 -0.176435 -0.161819 -0.690996 -0.517768 0.896668 -0.399165 0.147309 1.264190 0.331733 -0.258820 -0.189273 0.501414 -0.160129 1.084665 1.059747 -0.910557 0.088716 0.392530 0.531347 0.062486 1.142907 -0.746586 -0.784597 0.139268 -0.050805 0.323805 -0.661185 -0.043111 -0.154620 0.005727 -1.416468 0.125679 0.142903 -0.105700 -0.165007 0.055067 0.224360 1.196741 0.621110 -0.144701 -0.032234 0.501326 0.459086 0.015406 0.169219 0.468155 0.382453 1.055980 0.104745 -0.338463 -0.096058 -0.220767 -0.368177 -0.006361 0.894945 0.967628 0.200404 -0.037782 -0.128244 -0.013309 0.075126 0.060947 0.242278 0.126259 0.556816 0.235297 -0.560368 0.415169 -1.187655 -0.025019 -1.270032 -0.570493 -0.537621 0.234890 0.159621 0.337959 -0.187365 1.012782 -0.120191 0.279404 0.138672 1.220847 -0.796707 -0.263686 -0.529516 -0.607878 0.184427 -0.324243 -0.043659 -0.031420 -0.123919 -0.656769 -0.710872 0.454843 0.219050 -0.373789 0.221603 -0.018293 0.760374 -0.780992 -0.352142 -0.649748 0.104121 -0.146817 -1.246945 -0.260797 -0.522911 0.447637 0.043989 -0.333308 -0.923972 0.298948 0.789129 -0.426832 -0.286496 -0.594495 0.943956 0.412188 -0.118188 0.011412 -0.243427 0.250311 0.732486 0.572093 -0.494487 -0.047655 0.089640 -0.549570 -0.238206 -0.644003 -0.069346 0.051769 -0.611464 -0.037110 0.640851 -0.541499 0.137012 0.103735 -0.221219 0.526795 2.615566 -0.422937 0.596790 0.093695 -1.067311 0.592579 0.102466 -0.331137 0.046037 0.497640 0.538340 -1.244930 -0.678197 0.458356 0.927890 0.576733 -0.730285 -0.042129 -0.386019 -0.234039 -0.019455 0.217387 0.100492 -0.305176 -0.563418 -0.340214 0.301482 1.623293 -0.309597 -1.306758 0.280143 0.022696 -0.204843 -0.537440 -0.172870 -0.268376 0.149110 0.061376 -0.232281 0.652475 1.074539 -2.092426 0.902023 -0.179852 -0.683033 1.052886 -0.212143 -0.251461 -0.391656 0.145842 0.887979 0.981433 0.134289 -0.163550 -0.047398 -0.801328 -0.139136 0.017949 0.538595 -0.505640 0.448055 0.439181 -1.031418 -0.601283 -0.610279 -0.021681 -0.405799 -0.538191 0.330878 -0.162025 -1.886209 1.158023 0.176155 -0.041625 0.254066 -0.259352 0.226737 -0.835394 -1.020850 0.304624 0.022253 -0.121845 -0.228702 -0.102536 0.628955 0.032408 0.425198 -0.779203 -1.101091 0.417209 -0.136735 0.660075 0.397519 0.372359 0.654764 0.511793 -0.163682 -0.655640 -0.293573 0.435375 -0.055881 -0.483305 -0.060902 -0.421511 0.719646 1.037167 -0.125295 -0.074435 -0.472824 0.887336 -0.533418 -0.130440 0.533079 0.008439 -0.591755 -0.039051 0.667923 -0.590876 -0.588803 -0.481663 -0.355119 -0.270137 -0.676031 0.313934 -0.485343 0.178051 0.477706 -0.099053 -0.535670 0.332993 0.040843 -0.089465 0.154734 0.922134 0.905502 -0.436491 0.453935 -0.681219 0.518308 -1.158492 -0.737233 0.144851 -0.364537 -0.449572 0.009440 -0.031445 0.620249 -0.122308 0.290000 0.053010 -0.152096 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/aho-corasick-algorithm.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::~_Deque_base() = -0.853431 1.531773 2.312855 -2.951417 3.055930 3.837206 0.653660 -1.149561 -1.952866 -0.350063 -0.423691 -3.131373 -1.957773 3.423975 -1.489927 0.685292 4.243777 0.455799 -1.141382 0.389244 1.749905 1.310904 3.688843 3.138785 -2.781577 0.046726 0.887011 1.109684 -0.992728 3.950409 -2.227452 -4.307718 0.421825 0.310221 0.305595 -1.292814 -0.182621 -0.892587 0.546962 -4.215108 0.603496 1.376626 -1.151003 -1.020101 0.010662 -1.302183 4.450678 2.196520 -0.297404 -0.958253 1.446988 2.410339 -0.575640 0.529208 1.687442 0.863651 2.591885 -0.157293 -1.233409 -1.062912 -0.936232 0.446236 -0.727993 3.154381 2.992125 1.124963 -0.195977 -0.417254 -0.393933 0.350001 -0.191606 0.687419 0.713083 2.412882 0.510445 -0.212463 0.568791 -2.764137 0.116626 -2.016670 -1.787586 -1.238712 0.359702 1.967865 1.163307 -1.742482 3.311028 -0.778501 0.673380 1.122049 4.693174 -2.486261 -0.912210 -2.333472 -2.543816 0.402369 -0.931489 0.113958 -1.023102 -0.833289 -2.554676 -2.530795 0.136120 0.876712 -1.027828 0.357630 0.380862 2.456741 -1.932071 -0.820508 -1.362140 1.357794 -0.369320 -4.659105 -3.055261 -1.405208 -0.078846 0.010458 -1.490800 -3.487404 1.218422 2.479003 -1.808277 -1.209000 -1.296446 2.934450 1.768526 -0.058622 0.016061 -0.923156 1.384011 3.028185 1.029332 -1.637421 0.324274 -0.508827 -0.754461 -0.645191 -1.687408 0.110584 -1.307507 -1.945191 0.294005 3.132583 -1.801091 0.465713 -1.771748 -0.934217 1.659766 10.035945 -1.906695 2.421938 0.276227 -4.157581 1.915567 0.086432 -1.653858 -0.803021 1.132122 2.196097 -3.758573 -2.268851 2.519656 3.234036 2.139679 -1.922853 1.298922 -0.861810 -1.012021 -0.892548 0.890535 0.495937 -0.814044 -2.181031 -1.368088 2.018275 5.750188 -0.942567 -5.224333 1.647833 1.378322 0.414601 0.036570 -0.703100 -1.106059 0.547003 1.773717 -0.979288 2.658691 3.902491 -6.294244 2.931107 0.432393 -2.433546 3.403941 -0.437604 -1.365295 0.645592 0.308096 3.656903 3.163460 0.465628 -0.277689 -0.881814 -2.491660 -0.463084 0.534472 1.514318 -1.480712 1.324720 1.236621 -3.739028 -2.234867 -2.251846 -0.814850 -1.511282 -2.672304 1.070697 -0.395411 -5.844220 4.621030 1.470715 0.332241 0.202580 -1.547997 1.356282 -2.630793 -3.860475 1.282831 -0.438533 -0.400728 0.500374 -0.230435 1.911126 1.297416 2.833014 -2.868606 -3.894701 1.667046 0.645933 2.921475 1.181600 1.596097 1.498671 1.392702 -0.476911 -1.961373 -2.948303 3.128176 0.931047 -2.451120 -0.138183 -1.508312 2.677565 2.706392 -0.860858 -1.633371 -2.976750 2.413700 -1.247606 0.575638 1.846612 -0.886391 -3.008943 -1.304149 2.488762 -1.312380 -1.679552 -1.705112 -0.250942 -2.161989 -2.895105 0.230049 -0.931848 0.597732 1.645719 -0.646143 -1.981152 0.459156 0.473765 -0.425690 0.999888 2.657839 1.186440 -1.217308 1.710864 -2.658815 1.955408 -4.083497 -3.456516 1.384267 -2.716281 -1.701754 -0.504371 -0.635634 2.016856 -0.964151 1.928686 0.256911 -0.212900 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.505811 0.844616 1.322920 -1.512303 1.543086 1.701722 0.340376 -0.888870 -0.877962 -0.216542 -0.219635 -1.105424 -0.822816 1.705381 -0.873020 0.532119 2.354085 0.313364 -0.516282 -0.302882 1.374117 -0.139575 2.150913 1.851168 -1.761620 -0.046119 1.361837 0.768937 0.208633 1.788520 -1.549284 -1.508089 0.457858 -0.720190 0.350787 -1.095301 0.052617 -0.560286 0.555997 -2.253224 0.214088 -0.529385 -0.930975 -0.368556 -0.252023 0.188499 2.329663 1.223884 -0.438266 -0.295118 1.140243 0.981395 -0.467182 0.325530 0.801724 0.816218 1.675608 0.820840 -0.418444 -0.469495 -0.463624 -0.243812 0.072946 1.819619 1.778177 0.445055 0.084881 0.362482 -0.115091 0.032075 -0.060941 0.404633 0.288146 1.256346 0.560906 -1.838358 0.373091 -2.830979 -0.384961 -2.270691 -0.891524 -1.001361 -0.388674 -0.688778 1.044067 0.029867 1.812071 -0.096075 0.478471 0.508217 2.486521 -1.831783 -0.496669 -1.200166 -1.257950 0.108387 -0.703644 0.234126 -0.002634 -0.630016 -1.282868 -1.782907 0.658860 0.755326 -0.606258 -0.369580 0.043853 1.395568 -1.201265 -0.872777 -1.104524 0.015726 -0.655304 -2.579327 -0.784526 -0.962982 1.536262 -0.062532 -0.579416 -2.383778 0.488551 2.057523 -0.768371 -1.147983 0.243045 1.542849 1.214691 0.064564 -0.015733 -0.669022 0.634838 1.939155 1.580637 -0.824879 -0.112802 -0.201128 -1.174325 -0.454448 -1.173022 -0.058521 0.210406 -1.163985 0.139391 1.879109 -0.947083 0.176151 1.463117 -0.610206 1.097887 5.739965 -0.838882 1.131834 0.095316 -2.326031 0.725722 -0.172156 -0.736517 -0.019036 0.848514 1.088384 -3.043456 -1.321419 1.145724 1.670373 1.071417 -1.846932 -0.285975 -0.821790 -0.489678 -0.223539 0.027592 0.288817 -0.689010 -1.058124 -0.698162 0.972681 3.285316 -1.052822 -2.477503 0.785187 0.215951 -0.317656 -1.248858 -0.535383 -0.773265 0.423075 0.608821 -0.441472 1.350501 2.090903 -3.991970 1.457376 -0.526783 -1.380986 1.753827 0.042586 -0.625631 -0.391340 0.507366 1.920486 1.521613 0.332285 -0.087146 -0.164610 -1.445111 -0.213649 0.102828 1.031496 -0.802525 0.716641 0.951244 -2.183639 -1.428247 -0.606435 -0.068232 -0.957687 -0.718884 0.618316 -0.880156 -3.902045 2.489764 0.403172 0.009238 0.599747 -0.734896 0.892431 -1.649228 -2.176514 0.925325 0.086326 0.351120 -0.148337 -0.046631 1.280206 0.439514 1.178358 -1.640775 -2.504522 0.451348 -0.090856 1.326487 0.608428 1.040953 1.523490 -0.342223 -0.218451 -1.786860 -0.694332 1.025453 0.436496 -1.379208 -0.778223 -0.599348 1.636616 1.793706 -0.463921 -0.267363 -0.921395 1.427207 -1.727754 0.067649 0.954529 1.226786 -1.642496 -0.508261 1.193348 -0.983774 -1.169381 -0.626488 -0.662335 -0.830230 -1.613734 0.297870 -0.794726 0.422757 0.913520 -0.015935 -0.688041 0.556871 0.150883 0.341613 0.359500 1.278355 2.245120 -1.121778 0.134800 -1.442318 1.047979 -2.357376 -2.073384 0.814217 -0.799838 -0.691124 -0.088603 -0.028103 1.300686 -0.379169 0.588725 0.328840 -0.490634 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.709235 -0.073459 0.551905 -1.471759 1.160995 0.727957 0.416206 -0.345351 -1.203372 -0.601203 -0.209255 -0.886838 -0.596819 1.939514 -0.557882 1.126320 2.688392 0.785533 -0.337170 -0.414650 1.891771 -1.364098 2.105966 1.927832 -1.733368 -0.241844 1.086641 1.294017 0.450636 1.375984 -0.469219 -1.146320 0.574418 -1.416393 0.523268 -2.030294 0.544430 0.610935 0.491414 -2.861716 0.352875 -0.406235 0.032855 -0.370517 -0.567297 0.514369 1.710990 1.526282 -0.990783 0.223706 1.348559 0.565070 -0.408211 0.522492 0.072890 0.799513 0.446167 0.506752 -0.702494 -0.297815 -0.186942 -1.228052 0.790962 1.524226 2.226910 -0.022303 0.316663 1.048742 -0.011829 0.332056 0.533704 0.145286 -0.050506 -0.131216 0.968847 -2.775126 -0.412201 -4.220471 -0.400182 -4.187474 -0.909787 -0.990386 0.526998 -0.519850 0.923710 0.069175 1.773214 -0.156185 0.405189 1.411165 2.128366 -1.630310 -0.672819 -1.813842 -1.138443 0.739812 -1.010290 -0.376159 1.000892 -0.083695 -1.174870 -1.740640 0.904170 0.714626 -0.585252 -1.517174 -0.055848 1.655486 -1.662999 -1.505080 -1.185748 0.500294 -0.742189 -2.568802 0.488520 -1.352539 1.348268 0.035028 -0.117744 -1.931847 0.172954 1.794738 -0.514474 -1.070248 -0.306121 1.682170 0.743761 -0.062987 0.305985 -0.329760 0.009747 2.091482 1.823845 -1.016917 -0.501496 0.531351 -1.458336 -0.307079 -1.886669 -0.724002 1.261938 -1.798574 -0.163787 1.397616 -1.016245 -0.345258 2.224567 -0.382421 1.295304 5.650662 -0.062300 1.063423 0.651041 -2.019489 1.274303 -0.074545 -0.283636 0.694708 1.199157 0.265854 -2.986980 -1.525387 0.464206 1.496561 1.349019 -1.755292 -1.604638 -1.065911 -0.134078 0.264731 -0.404698 0.594646 -0.711210 -1.186754 -0.387691 0.740483 3.226799 -0.830439 -0.844899 0.826593 1.034966 -1.541596 -2.777165 -0.714430 -1.726128 0.045439 -0.132963 -0.365951 1.023534 2.184196 -3.894950 1.533124 -0.629818 -0.305911 0.937686 0.014220 -0.729407 -3.004825 0.221093 1.621697 2.155302 -0.388186 0.695988 0.390546 -1.504584 0.005219 0.094226 0.786493 -0.477558 0.600436 0.051272 -1.630145 -1.189034 0.312545 -0.575074 -0.945151 0.030028 0.657760 0.350665 -3.045322 2.044706 -0.646941 -0.314792 1.137955 -0.102746 1.455647 -1.811193 -2.143257 1.168843 0.512764 0.067281 -1.013190 0.312122 1.721569 -0.182315 -0.081606 -0.634652 -2.736518 0.498962 -0.723703 0.889602 0.593173 0.392852 1.803477 0.022545 -0.534449 -2.179343 -0.613491 -0.447507 -0.280321 -1.061243 -1.142455 -0.214776 1.722066 1.952429 0.068931 -0.426830 0.081806 2.174095 -1.882157 -0.534765 1.312531 0.942176 -1.298853 0.262764 1.555403 -2.150264 -1.037501 -0.873645 0.258930 0.157070 -1.570082 0.701689 -0.772640 0.577959 0.531526 0.243706 -0.324271 0.906462 0.779214 0.399940 -0.278777 2.270779 2.357544 -1.060045 -0.360387 -1.293829 0.448423 -2.503210 -1.696996 0.173832 0.467310 -0.603631 0.677984 0.596210 1.476384 -0.228620 0.663691 0.111540 -0.844893 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.840306 -0.121491 1.077032 -1.325219 1.335500 0.514384 0.707125 -0.315721 -1.529288 -0.833130 0.006255 -1.109433 -1.232819 2.300727 -0.772064 0.988315 3.221084 1.255146 -0.417876 -0.781691 1.890268 -1.609951 2.802029 2.700285 -2.145836 -0.167943 1.009647 1.402724 0.702018 1.529592 -0.884442 -1.032391 1.193874 -1.554383 0.681493 -2.190249 0.400089 0.426862 0.241506 -3.386935 0.277228 -0.390323 -0.164373 -0.273782 -0.391093 1.670832 1.960540 1.812328 -0.827771 0.754777 1.416992 0.103920 -0.067697 0.692563 0.461648 0.774043 0.753539 0.725572 -1.107448 -0.154533 -0.517196 -2.203495 0.455626 1.871604 2.677488 0.009258 0.243044 0.714836 -0.155999 0.468006 0.764236 0.355580 0.551261 0.022013 1.349191 -2.779482 -0.221481 -4.437106 -0.844420 -5.490976 -1.338477 -1.310432 1.255011 -0.961980 0.996307 0.133111 2.271081 0.137022 0.349838 1.234966 2.717982 -2.242848 -1.014680 -1.541139 -0.831468 0.771704 -1.418870 -0.069627 1.409905 -0.250454 -1.668815 -1.840796 1.325808 0.636746 -0.757218 -1.095982 -0.212211 2.215814 -2.264261 -1.524688 -2.087110 -0.042913 -0.467012 -3.057792 0.755888 -1.143400 2.280551 0.538742 -0.566436 -1.803371 0.538987 1.845394 -0.526903 -1.218462 -0.266237 2.192191 0.684966 0.063876 0.384652 -0.020665 0.042553 2.263554 2.433909 -1.098815 -0.457589 0.522417 -1.904859 0.032183 -1.977349 -0.833096 1.677666 -2.042796 -0.001238 1.145748 -1.418446 -0.450145 2.502725 -0.101222 1.396959 5.326448 -0.188393 1.470191 0.858846 -2.236293 1.403610 -0.313205 -0.032914 0.900737 1.749136 0.430627 -3.041388 -1.826794 0.685586 2.110540 1.570595 -2.571083 -1.497115 -1.216536 0.287883 0.019528 -0.125212 0.790925 -0.433373 -1.392130 -0.399931 0.863567 3.481141 -1.496514 -1.727033 0.694837 0.264862 -1.061502 -3.173326 -0.766619 -1.090755 0.174593 -0.106455 -0.212012 0.976773 2.688920 -4.531619 2.006963 -1.038602 -0.571721 1.662677 0.180759 -0.990584 -2.984297 0.330486 1.696286 2.384654 0.395910 0.092483 0.624762 -2.077564 -0.184212 0.016972 1.193246 -0.643354 1.038815 0.308525 -1.663821 -1.569108 -0.382471 -0.087900 -1.062621 0.081291 1.059540 0.281404 -4.331890 2.238870 -0.615269 -0.829145 0.998783 0.033807 1.418777 -2.277946 -2.686213 1.194963 0.017991 -0.747507 -1.579357 0.218526 1.701969 -0.206065 -0.315646 -0.879756 -2.867894 1.301032 -0.766993 1.370476 0.797777 0.508034 2.723757 0.344639 -1.014211 -2.175846 -0.232850 -0.080955 -0.991120 -1.205392 -1.042062 -0.381963 2.001759 2.680774 0.187676 -0.143588 -0.025230 2.628922 -2.601926 -0.975993 1.833581 1.809346 -0.866056 1.003570 1.962706 -2.518968 -1.349710 -0.978474 -0.554167 0.085418 -1.684337 1.015712 -1.355719 0.761690 0.615407 0.416043 -0.472085 1.081376 0.533362 0.393091 -0.300599 2.621378 3.769571 -1.792988 -0.072485 -1.668458 0.970410 -2.912762 -1.942532 0.323563 0.649615 -0.825057 0.684513 0.654850 1.644567 0.023493 -0.350703 -0.389341 -0.645053 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.578792 0.032268 0.850649 -1.325502 1.799190 0.696759 0.473044 -0.133104 -1.325587 -0.706830 -0.225915 -1.199456 -1.226877 2.024236 -0.519463 1.191693 2.400050 0.509857 -0.383380 -0.415151 1.812611 -1.092261 2.150219 1.347308 -1.878909 -0.030959 0.468766 1.271968 0.319896 1.689759 -0.835730 -1.119707 0.693360 -1.115019 0.496700 -1.435918 0.546247 0.385051 0.126174 -2.543220 0.222375 0.231616 -0.321642 -0.099722 -0.433882 1.113219 1.676436 1.514518 -0.933536 0.510315 1.332974 0.006135 -0.089828 0.673347 -0.001908 0.553825 0.598040 0.165310 -1.267266 -0.337044 -0.321203 -1.805971 0.364084 1.277536 2.102435 -0.308314 0.104446 1.225701 -0.219500 0.343315 0.641983 0.290852 0.428968 -0.211196 1.300342 -1.606492 -0.459901 -2.885444 -0.592665 -4.198886 -1.105488 -1.247275 0.923558 -0.054865 0.692959 -0.289962 2.099898 -0.104565 0.148099 1.171585 2.259559 -1.799787 -0.772325 -2.005451 -0.744727 0.507995 -1.166757 -0.690029 1.084649 0.025012 -1.210304 -1.304611 0.760216 0.244910 -0.567387 -1.049495 -0.515595 1.910968 -2.097074 -1.310318 -1.656337 0.516354 -0.384815 -2.497297 0.232728 -0.400444 1.242943 0.214419 0.197488 -1.345535 0.393662 1.538434 -0.682992 -0.827758 -0.424437 1.923403 0.800289 -0.058315 0.558775 0.210424 0.259262 1.815165 1.916644 -0.851760 -0.886832 0.490402 -0.921900 0.026316 -1.388223 -0.538503 0.914645 -1.919844 0.003750 1.115986 -0.921004 -0.087242 0.965868 -0.296597 1.194497 3.932705 -0.169032 1.013676 0.311845 -1.833970 1.343506 -0.107578 -0.335374 0.656149 0.975167 0.348012 -1.976280 -1.589933 0.949028 1.454045 1.233609 -2.027422 -0.827087 -0.964612 0.293596 0.038543 -0.353386 1.186598 -0.326749 -0.953879 -0.337093 0.426495 3.226143 -1.106429 -1.616442 1.318321 0.449234 -1.057778 -2.360148 -0.877299 -0.944450 -0.361058 0.183770 -0.204991 0.793861 2.355850 -3.423950 1.640195 -0.338399 -0.663613 1.247577 -0.309521 -0.428679 -2.300534 -0.261372 1.570509 1.995176 0.094755 0.192651 0.064554 -1.540882 0.265487 0.221689 0.773928 -0.202020 0.585855 -0.063419 -1.243374 -1.190682 -0.371400 -0.551044 -0.318827 -0.128015 0.631231 0.402260 -3.530846 1.920846 -0.756842 -0.432281 0.935016 0.235339 1.550220 -1.533139 -2.083602 1.181790 -0.032167 -0.924515 -1.202362 0.466865 1.326242 -0.037890 -0.346784 -0.644042 -2.694755 1.014424 -0.503971 0.821980 0.601490 0.498490 1.918645 0.632047 -1.043559 -1.680973 -0.645677 0.006338 -0.729555 -0.666495 -0.551459 -0.147909 1.708730 1.827730 0.296825 -0.137746 -0.460277 1.933052 -1.856761 -0.806199 1.749153 0.750324 -1.140596 0.781061 1.910693 -1.684419 -1.157789 -1.049854 0.115202 -0.258572 -1.346709 0.466900 -0.979750 0.267889 0.819637 0.178577 -0.689361 0.885101 0.426391 -0.075050 -0.914643 2.696834 2.682623 -1.527143 0.196660 -1.306886 0.897243 -2.384012 -1.609451 0.349806 0.420137 -0.574284 0.652149 0.761698 1.257454 -0.257827 -0.096454 -0.252011 -0.947223 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.327429 -0.541720 -0.250563 -0.817673 0.468122 -0.019868 0.083698 -0.359435 -0.969296 -0.056664 0.194318 -0.757189 0.224143 0.822662 -0.080890 0.841421 1.022145 0.268652 -0.326639 -0.032886 0.905333 -0.470108 0.483286 0.756256 -0.431431 0.038984 -0.352382 0.220354 0.035380 0.134618 -0.111022 -0.463374 0.118702 -0.913930 -0.190387 -0.440179 -0.015064 0.744882 0.873809 -1.037619 0.383653 0.086472 0.494882 -0.137241 -0.137767 -0.277520 0.291293 0.222818 -0.233326 0.468662 0.570466 -0.095030 -0.047276 0.075381 0.253407 0.584896 -0.052016 0.004345 -0.317731 -0.347162 -0.169534 0.228673 0.449753 0.315678 0.556743 0.019170 -0.160731 0.483020 0.343261 0.016175 0.526215 0.048322 -0.382044 -0.524368 0.238392 -0.944549 -0.205882 -1.403662 0.007313 -1.479196 -0.457595 0.351886 0.688312 0.217669 0.204654 0.046534 0.586340 -0.573112 -0.327418 0.454250 0.606169 -0.399428 -0.286993 -0.342277 -0.676001 0.038526 0.037725 -0.305577 0.433359 0.306636 -0.598475 -0.388161 0.475868 0.273325 -0.147834 -0.625247 0.339842 0.518454 -0.648351 -0.669160 0.303066 0.958437 0.061967 -0.640186 0.093663 -0.583616 -0.092612 0.034784 -0.561480 -0.646479 -0.004983 0.101245 -0.479537 -0.155698 -0.183534 0.267444 0.352668 0.224940 -0.040601 0.005915 0.037144 1.012613 -0.071374 -0.710415 0.211445 0.030982 0.057553 0.177411 -0.452970 -0.648346 0.054107 -0.703546 0.079894 0.067718 -0.415451 -0.026735 0.585030 0.325578 -0.245785 1.494956 -0.101041 0.957318 0.560549 -0.293716 0.385559 -0.029327 0.244157 0.315166 0.533187 -0.186379 -0.603168 -0.743932 0.539645 0.476010 0.329954 -0.475394 -0.667907 0.019966 0.018214 0.427035 -0.075025 -0.099405 0.109343 -0.355129 -0.092279 0.249572 1.460041 -0.037876 0.149580 0.383034 0.535792 -0.377661 -0.882989 -0.422988 -1.097782 0.104139 -0.009743 0.119812 0.474970 0.957817 -1.339441 0.531629 -0.277989 0.209257 0.308900 0.361815 -0.598951 -1.589697 -0.615724 0.196894 1.032818 -0.367488 0.404133 0.375328 -0.472082 0.001844 0.042214 -0.082258 -0.524858 0.304393 -0.068681 -0.465398 0.184824 0.488821 -0.591852 -0.161866 -0.113633 0.151272 0.619722 -0.648554 0.368004 0.093135 0.023255 0.480806 0.075593 0.798488 -0.255568 -0.316683 0.460342 0.121094 0.012248 -0.115331 0.260056 0.505793 -0.264100 -0.168467 -0.291286 -0.765809 0.551671 -0.220416 0.680265 0.057201 -0.645820 0.022934 -0.034573 -0.082889 -0.544525 -0.051469 -0.592360 -0.290611 -0.356037 -0.362148 -0.277278 0.571487 0.267002 0.300319 -0.619927 0.191528 0.622725 -0.402872 0.278854 0.558256 -0.208835 -0.647275 0.041325 0.754816 -0.780798 0.206215 -0.410641 0.147716 -0.253479 -0.144209 0.559876 0.378613 0.302607 -0.424480 -0.147965 0.274082 0.363206 0.449227 -0.006116 0.106955 1.040651 0.234868 0.092579 -0.193855 -0.525321 0.008798 -0.598732 -0.542778 0.066135 0.602087 -0.850068 0.054758 -0.068156 0.833618 -0.074877 0.231781 -0.108911 0.172724 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.310755 0.147580 0.699946 -0.671705 0.539508 0.103629 0.241426 -0.229616 -0.588818 -0.359932 -0.091261 -0.481361 -0.497314 0.923101 -0.364688 0.297061 1.370261 0.502425 -0.199682 -0.462954 0.803138 -0.855030 1.171321 1.184628 -1.028338 -0.017651 0.645612 0.747011 0.515325 0.773941 -0.551614 -0.245473 0.336708 -0.561660 0.507508 -0.980647 0.156481 0.066508 0.010547 -1.521838 0.099061 -0.284289 0.116807 -0.096939 -0.135963 0.855870 0.978325 0.753224 -0.389096 0.155626 0.705443 0.086042 0.028722 0.258402 0.260697 0.361461 0.843264 0.418668 -0.376613 -0.021385 -0.165170 -0.971969 0.313216 0.911230 1.192347 0.045013 0.117323 0.263307 0.058245 0.151716 0.238817 0.201611 0.105021 0.208194 0.515574 -1.430477 0.292269 -2.061375 -0.281998 -2.452062 -0.579518 -0.678575 0.350646 -0.566132 0.427341 0.233077 1.022943 0.122344 0.275974 0.308236 1.189204 -0.937226 -0.362972 -0.621394 -0.478121 0.351495 -0.559686 -0.027796 0.599116 -0.033159 -0.653487 -0.762786 0.738820 0.292159 -0.390706 -0.188529 -0.115837 0.882703 -0.961581 -0.605680 -0.891489 -0.213564 -0.237994 -1.334660 0.509910 -0.659539 1.082602 0.097594 -0.166647 -0.883081 0.164011 0.917059 -0.244924 -0.434131 -0.461086 1.004025 0.347385 -0.056224 0.099470 -0.131051 0.066831 0.809531 1.063262 -0.510117 -0.250506 0.236817 -1.011547 -0.167135 -0.905819 -0.330036 0.871518 -0.808495 -0.127860 0.489607 -0.580667 -0.106569 1.268325 -0.166245 0.668690 2.455986 -0.128310 0.556844 0.261600 -0.979719 0.621454 0.011363 -0.126268 0.402551 0.736191 0.299251 -1.476662 -0.809526 0.249045 0.912552 0.628350 -1.075536 -0.739434 -0.558362 -0.048523 0.114998 -0.053896 0.229882 -0.369821 -0.561124 -0.239438 0.285198 1.500581 -0.553266 -0.824917 0.234225 -0.064224 -0.597889 -1.478069 -0.278286 -0.449667 0.128200 -0.350965 -0.126148 0.511837 1.138188 -2.272875 0.912775 -0.454519 -0.386188 0.913052 -0.128385 -0.319254 -1.469081 0.274195 0.800352 0.988480 0.060807 -0.092390 0.232765 -0.913937 -0.097580 -0.076605 0.588913 -0.405162 0.448131 0.259354 -0.806242 -0.719535 -0.234662 0.059662 -0.431136 -0.004865 0.416118 -0.067151 -1.954937 1.072050 -0.288238 -0.273427 0.454326 -0.080126 0.348127 -1.035560 -1.081474 0.391532 0.114802 -0.148835 -0.763880 0.043245 0.780520 -0.262912 -0.145330 -0.542853 -1.210420 0.393054 -0.532364 0.492546 0.377526 0.328854 1.099215 0.317477 -0.284195 -1.010852 0.234380 -0.248911 -0.373158 -0.504452 -0.425066 -0.210435 0.816335 1.266015 -0.036840 0.186392 0.120906 1.104097 -1.044812 -0.563123 0.661806 0.627491 -0.439602 0.373681 0.721737 -1.016776 -0.678166 -0.478552 -0.484940 0.104322 -0.736799 0.481115 -0.631254 0.260797 0.397216 0.081767 -0.263005 0.561112 0.150615 0.158849 -0.069252 1.101679 1.722282 -0.719712 -0.000212 -0.723246 0.401129 -1.299878 -0.758661 0.100553 0.278863 -0.310006 0.262394 0.293824 0.728718 0.010271 -0.084249 -0.045124 -0.306429 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/aho-corasick-algorithm.cpp__std::char_traits::length(char const*) = -0.096722 -0.045213 0.204765 -0.277349 0.182037 -0.060294 0.081948 -0.083201 -0.288270 -0.214539 0.091606 -0.286591 -0.172814 0.324777 -0.197587 0.090201 0.432303 0.138259 -0.066975 -0.216012 0.208055 -0.209370 0.446878 0.442908 -0.406809 -0.010111 0.094699 0.296655 0.236799 0.191505 0.007800 -0.164444 0.120905 -0.093997 0.120114 -0.267535 0.090564 0.079788 -0.008443 -0.511359 0.039391 -0.014510 0.105743 -0.000388 -0.016886 0.316994 0.264207 0.287020 -0.139102 0.198517 0.362074 0.096987 0.014978 0.079818 0.018305 -0.068402 0.248518 -0.097265 -0.147682 -0.001123 -0.006286 -0.343971 0.038885 0.343397 0.458152 -0.014877 0.051499 0.036609 0.020536 0.113561 0.203804 0.064308 -0.014122 0.071044 0.174263 -0.346001 0.079975 -0.735793 -0.065503 -0.959904 -0.212990 -0.155724 0.356918 0.027035 0.030658 0.116340 0.346152 0.121498 0.013729 0.221372 0.370789 -0.201987 -0.164343 -0.130021 -0.195898 0.204185 -0.239200 0.049109 0.080658 0.214210 -0.223537 -0.139192 0.185917 0.033321 -0.139697 -0.032816 -0.042303 0.248312 -0.465653 -0.112602 -0.208493 0.080003 0.067811 -0.476420 0.104333 -0.254164 0.399065 0.022522 -0.047768 -0.091381 0.013866 0.153857 -0.087880 0.019831 -0.393105 0.244930 0.095993 0.082269 0.021460 0.018513 0.064582 0.270423 0.149713 -0.229026 -0.090342 0.069401 -0.199083 0.047220 -0.295014 -0.105285 0.288597 -0.275142 0.125456 0.055223 -0.195964 -0.234847 0.183917 -0.029378 0.183742 0.670335 0.034321 0.278283 0.204750 -0.268159 0.053431 -0.057517 0.042115 0.187120 0.216149 0.003374 -0.144640 -0.288536 0.093140 0.318943 0.212673 -0.292335 -0.165872 -0.042755 0.006390 0.047372 0.013133 0.093134 -0.151714 -0.183920 -0.073819 0.149293 0.411462 -0.003034 -0.107453 0.043481 0.111836 -0.180226 -0.299978 -0.053658 -0.047225 0.103540 -0.007665 0.033724 0.165214 0.399068 -0.870327 0.301069 0.002725 0.065933 0.165200 -0.016248 -0.204466 -0.550638 0.073261 0.185138 0.318212 -0.017814 0.076468 0.196601 -0.316276 -0.029291 -0.001260 0.127424 -0.143785 0.131775 0.121774 -0.207880 -0.252010 -0.076832 -0.009458 0.012316 -0.058051 0.188265 0.082269 -0.722256 0.297119 -0.170421 -0.186049 0.019174 -0.072150 0.204790 -0.396789 -0.290060 0.085525 -0.087582 -0.237166 -0.298288 0.016060 0.189855 -0.157940 0.027775 -0.125107 -0.224554 0.189426 -0.207519 0.126750 0.139677 0.015755 0.319574 0.003620 -0.047019 -0.259577 0.092416 0.028839 -0.232718 -0.159655 0.165307 -0.054619 0.214941 0.394730 0.000000 -0.077798 0.178885 0.372993 -0.225689 -0.264347 0.195604 0.148281 -0.115828 0.300770 0.219456 -0.413800 -0.103842 -0.245007 -0.107693 0.054741 -0.228486 0.253455 -0.102066 0.167557 0.084033 0.100300 -0.138993 0.238611 0.032313 0.003074 -0.001002 0.445741 0.550241 -0.160661 0.081559 -0.321270 0.098058 -0.439212 -0.318371 0.023184 0.063264 -0.132596 0.118207 -0.076956 0.293369 0.087360 -0.010288 -0.109960 0.093829 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -1.533596 -0.188933 2.070476 -4.448228 5.174714 1.811431 1.646188 -0.597310 -3.243866 -1.806904 -0.126507 -2.859501 -2.943544 4.702638 -2.069150 3.075018 6.297585 0.853093 -0.872288 -1.408360 5.337265 -2.221914 6.487498 3.815006 -5.958630 -0.472085 1.378510 3.841798 1.403689 3.889753 -1.565659 -2.508836 1.996699 -3.096590 1.792116 -3.809600 1.838984 0.384651 0.436876 -6.479256 0.539118 0.255220 -0.967649 -0.085041 -1.107647 3.163708 4.387852 4.536904 -3.466550 1.033785 4.562273 0.762600 -0.470532 2.044075 -0.782227 0.748596 1.524815 0.660179 -3.018401 -1.606687 -1.011034 -4.435743 1.857609 4.038780 6.115844 -0.793316 0.906493 3.443399 0.008280 1.067687 2.459258 1.028611 0.707888 -0.560039 4.174598 -4.953836 -1.080873 -8.962505 -1.780991 -11.727424 -3.039106 -3.745751 2.117254 -1.058651 2.433758 -0.350272 5.640201 0.427712 1.017395 3.675555 5.073801 -4.505375 -1.914810 -5.637837 -2.833899 1.492185 -3.360231 -1.344629 3.027311 0.498910 -3.347958 -2.811032 1.425811 0.977363 -1.406005 -3.625778 -1.139409 4.553277 -4.925551 -3.524395 -4.022641 2.026300 -1.483401 -7.393903 0.452778 -2.123992 4.321246 -0.277654 1.427611 -3.117508 0.366892 4.445925 -1.832007 -2.034030 -1.334656 5.033172 3.041637 0.562854 1.649014 0.169569 -0.023841 4.978646 5.664532 -2.097587 -2.995241 1.018613 -2.857329 0.285633 -3.904844 -0.941036 3.818782 -5.023587 0.234651 3.399095 -2.123451 -0.992220 3.633554 -1.007319 3.956643 11.951805 -0.234793 3.301805 1.536310 -5.142162 2.867323 -0.161580 -0.308044 2.437838 2.880413 0.120083 -5.657157 -4.493210 2.115355 3.552625 3.299997 -5.727807 -2.118346 -2.072503 0.511285 -0.144752 -2.039809 3.175723 -1.255936 -3.120351 -0.623260 1.595107 7.955713 -2.322621 -4.176990 3.520316 2.658143 -3.572467 -5.663425 -2.663875 -2.902218 -0.535671 0.959037 -0.420837 2.173748 6.269885 -9.677430 3.839407 -0.612712 -0.650154 3.373769 -0.562713 -1.589369 -6.565079 -0.028215 3.881327 4.643687 -0.568705 0.521262 0.858252 -3.700302 1.272050 0.386126 2.009677 -0.313273 1.254204 -0.210369 -3.273636 -3.637295 -1.232123 -1.308848 -0.352426 -0.088416 1.716476 0.408836 -9.371288 4.971517 -2.557247 -1.953305 2.551834 -0.292036 4.603952 -4.381431 -5.396002 3.228607 -0.131979 -2.008161 -4.044928 1.603954 3.715034 0.041946 0.090349 -2.499431 -7.067443 2.598812 -1.955119 2.144029 1.891014 1.582129 5.666096 0.356059 -2.480476 -5.552136 -2.087647 -0.157435 -0.967751 -3.014247 -1.428898 -0.403998 4.506297 5.013331 -0.076512 -0.039064 -0.471306 5.384562 -5.609036 -2.297984 4.651064 2.652902 -3.413030 2.421393 4.981286 -4.679496 -3.270843 -2.509214 0.652339 -0.143000 -3.949050 1.954243 -2.315929 1.470900 1.763964 1.310239 -1.651017 2.186187 1.169803 0.794625 -2.369426 7.007043 7.872776 -3.887195 -0.383049 -3.500496 2.140796 -6.764878 -4.748907 1.297203 -0.137715 -1.012261 2.595044 1.848904 4.337018 -0.331295 0.044633 -0.473998 -2.134621 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.283003 0.165987 0.499465 -1.142342 1.220625 0.704424 0.075645 -0.123326 -0.679680 -0.324561 -0.372602 -0.592827 -0.567202 1.100454 -0.363173 0.615590 1.090408 -0.019016 -0.243929 -0.152621 1.103728 -0.073765 0.975556 0.241135 -1.121614 -0.065685 0.335288 0.906334 0.148267 1.195006 -0.288495 -0.853531 -0.095973 -0.157012 0.349332 -0.693630 0.474407 0.264768 -0.033366 -1.230488 0.161043 0.341356 -0.180475 -0.028582 -0.265902 -0.120132 0.840508 0.868136 -0.690255 -0.112404 0.991558 0.660838 -0.266290 0.331147 -0.262979 0.219090 0.417405 -0.353258 -0.484398 -0.329634 0.005623 -0.468980 0.288628 0.725874 1.080322 -0.180423 0.100241 0.748072 -0.037316 0.240894 0.263736 0.115364 -0.120998 0.006430 0.568156 -0.535017 -0.238678 -1.337223 0.096689 -1.578389 -0.408279 -0.769353 0.127992 0.573364 0.237025 -0.166495 1.201582 -0.166576 0.151835 0.813509 1.034833 -0.608865 -0.203220 -1.494019 -0.792068 0.382795 -0.527087 -0.615532 0.048852 0.399163 -0.387494 -0.633155 -0.084792 0.006652 -0.311727 -0.516148 -0.390198 0.945086 -1.065783 -0.540861 -0.557597 0.882321 -0.296454 -1.316286 -0.564752 -0.435001 0.236998 -0.374780 0.524091 -0.674490 0.053504 0.890499 -0.514342 -0.183680 -0.503277 0.813564 0.686005 -0.275125 0.200638 -0.081657 0.157274 0.832385 0.608394 -0.543158 -0.735297 0.385994 -0.108832 -0.319227 -0.841485 0.033877 0.174212 -0.992554 0.095620 0.882711 -0.291323 -0.121915 -0.182259 -0.585014 0.836058 2.567308 -0.122271 0.308539 0.025250 -0.971592 0.512206 0.269576 -0.411134 0.326076 0.147623 0.198522 -0.693673 -0.865762 0.518357 0.590953 0.667700 -0.566205 -0.242408 -0.487927 -0.183996 0.062285 -0.324050 0.685340 -0.621701 -0.378479 -0.295071 0.142681 1.517054 -0.103874 -0.938541 0.934253 0.927326 -0.902615 -0.548548 -0.472979 -0.711311 -0.325258 0.453462 -0.259347 0.663659 1.250429 -1.979051 0.819790 0.460199 -0.320302 0.377103 -0.489020 0.065271 -0.834925 -0.180259 0.950125 1.047042 -0.451753 0.374573 -0.171086 -0.714490 0.339546 0.281189 0.361181 -0.085868 0.065738 0.019564 -0.613376 -0.611479 -0.042574 -0.631768 0.050706 -0.304550 0.165281 0.028851 -1.740824 1.134855 -0.539278 0.117693 0.568086 -0.102046 0.966028 -0.740322 -0.922193 0.684452 0.302108 -0.219138 -0.330247 0.370305 0.941895 0.031899 0.360940 -0.485425 -1.386936 0.141659 -0.204835 0.182345 0.294987 0.403150 0.492204 0.043706 -0.270049 -0.883293 -0.602173 0.230685 0.155697 -0.303751 -0.077014 0.033039 0.844821 0.799839 0.006423 -0.265852 -0.344694 0.936783 -0.516429 -0.310484 0.718015 -0.296379 -0.935508 0.166993 0.921688 -0.662377 -0.717651 -0.709834 0.616399 -0.147067 -0.797058 0.172258 -0.326591 0.088183 0.669422 0.018782 -0.656607 0.531562 0.371473 -0.202031 -0.526709 1.472731 0.679297 -0.452805 0.269608 -0.669102 0.366745 -1.278334 -0.772667 0.086181 -0.420159 -0.142093 0.454790 0.067288 0.761949 -0.334072 0.811739 0.155777 -0.686819 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::deque() = -0.134985 0.044647 0.354579 -0.483050 0.549910 0.088847 0.201529 -0.076119 -0.407593 -0.278064 -0.051622 -0.180261 -0.325538 0.508851 -0.287880 0.175487 0.685734 0.233144 -0.013232 -0.281671 0.504541 -0.378768 0.741296 0.550209 -0.705318 0.024032 0.113630 0.478491 0.178216 0.686325 -0.124277 -0.301142 0.235834 -0.141753 0.304135 -0.578276 0.132328 0.152816 -0.140631 -0.819860 0.057798 -0.000649 0.042683 0.076769 -0.017101 0.407801 0.497784 0.453760 -0.305719 0.254868 0.487982 0.245467 0.043596 0.254718 0.039321 0.121099 0.323786 -0.150682 -0.267560 -0.045194 -0.181933 -0.602183 0.195018 0.471546 0.717687 -0.050878 0.134087 0.101580 -0.145468 0.189439 0.302293 0.144318 0.017558 -0.064976 0.377894 -0.501782 0.032796 -1.026964 -0.154732 -1.410365 -0.331059 -0.483727 0.314472 0.081345 0.233004 0.075510 0.612696 0.129432 0.150404 0.304597 0.508293 -0.395476 -0.138557 -0.394031 -0.335471 0.155184 -0.298252 -0.118973 0.119839 0.181319 -0.328582 -0.302921 0.279213 0.022939 -0.164612 -0.222198 -0.186577 0.521719 -0.756563 -0.260011 -0.457251 0.191631 -0.141264 -0.732082 0.163584 -0.416548 0.575146 -0.062501 0.129748 -0.190198 0.089220 0.484241 -0.180338 -0.105689 -0.412918 0.526413 0.225250 -0.027770 0.073586 -0.059290 -0.179646 0.419442 0.532085 -0.221229 -0.284187 0.153560 -0.277176 -0.021859 -0.470031 -0.018652 0.402115 -0.502966 0.042335 0.208508 -0.209486 -0.205406 0.253148 -0.177671 0.457101 1.142493 -0.074755 0.344908 0.202824 -0.515001 0.204794 0.102414 0.077607 0.392987 0.415288 -0.043707 -0.417980 -0.502799 0.098033 0.357492 0.318506 -0.495146 -0.327218 -0.279669 0.003384 0.106822 -0.145075 0.174713 -0.253007 -0.345423 -0.072836 -0.030371 0.763861 -0.095040 -0.351627 0.261544 0.180152 -0.494158 -0.487499 -0.242835 -0.204330 0.019747 0.006511 -0.109986 0.195625 0.633348 -1.258435 0.482187 -0.152620 -0.036584 0.295043 -0.124494 -0.047141 -0.758621 0.027789 0.344465 0.556591 -0.070394 0.089278 0.189560 -0.463995 0.116494 -0.043675 0.307502 -0.202035 0.176221 0.131822 -0.453949 -0.402199 -0.218670 -0.036267 -0.025069 -0.060315 0.167531 0.116068 -1.172288 0.438645 -0.299046 -0.212263 0.310834 0.100566 0.397027 -0.427307 -0.539629 0.247191 -0.003275 -0.274563 -0.500111 0.152708 0.436881 -0.197254 -0.018578 -0.264172 -0.582288 0.257773 -0.279509 0.156583 0.248568 0.199692 0.637110 0.093809 -0.252740 -0.562935 -0.041329 0.027289 -0.281780 -0.190195 0.097328 -0.116946 0.389802 0.703643 0.135435 0.012186 0.128760 0.789240 -0.437606 -0.292289 0.526305 0.192629 -0.178379 0.398957 0.528033 -0.528447 -0.473294 -0.274077 0.039679 0.168959 -0.347146 0.388474 -0.300562 0.212159 0.144694 0.221534 -0.326272 0.331715 0.079280 0.064328 -0.204890 0.800798 0.811812 -0.339140 0.105242 -0.240678 0.132154 -0.690593 -0.302954 -0.095449 0.016909 -0.068008 0.355615 -0.050349 0.537416 0.036175 0.130601 0.021996 -0.215045 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_base() = -0.627181 0.670745 1.713219 -2.899518 3.759007 2.452366 1.054755 -1.027844 -1.888266 -0.533929 -0.086584 -1.701600 -1.823028 2.728789 -1.469646 1.422070 3.150286 -0.073343 -0.638755 -0.514704 3.141252 -0.432064 3.770218 2.075285 -3.667066 0.133988 0.193505 1.849310 0.263870 3.734842 -1.531376 -2.047191 0.955257 -0.886064 0.987738 -1.561598 0.531214 -0.140666 0.188069 -3.295611 0.291287 0.546803 -0.775404 0.245706 -0.283809 0.868231 3.200373 2.271264 -1.531147 0.267548 2.461182 0.980751 -0.088442 1.199622 0.504489 0.590413 2.015496 0.205193 -1.448340 -1.144616 -1.152486 -1.440470 0.729122 2.481409 3.394596 0.042807 0.466571 1.085196 -0.619291 0.642841 1.069566 0.953265 0.346521 0.310484 2.121135 -1.394138 0.117304 -3.668542 -0.726811 -4.449886 -1.660144 -2.105502 0.499183 0.536507 1.806658 -0.919813 3.227399 0.232781 0.295499 1.338171 3.087979 -2.390380 -0.553708 -2.678641 -2.208193 -0.082242 -1.313475 -0.454294 0.467441 0.021755 -2.005624 -1.553948 0.570667 0.469915 -0.698519 -1.217020 -0.790438 2.518032 -2.614207 -1.297052 -1.474749 1.456499 -0.963511 -4.194944 -0.928742 -1.674705 1.485862 -0.703905 0.714290 -1.758705 0.486670 2.820337 -1.477145 -1.184886 -0.996844 2.983421 2.229001 0.296050 0.434669 -0.402648 -0.195381 2.567864 2.491695 -0.897211 -1.286612 -0.239070 -0.650870 0.234654 -1.619719 0.362044 1.013435 -2.331996 -0.061847 2.091838 -0.659588 0.159755 0.407672 -0.799810 1.980576 7.382271 -0.980275 2.151722 0.530698 -3.069232 1.634914 0.548086 -0.146879 1.321898 1.402687 0.148977 -3.325485 -2.649696 1.780779 1.768586 1.389967 -3.087331 -0.224707 -0.972257 -0.275334 -0.349550 -0.877368 1.122484 -0.797811 -1.728622 -0.535005 0.502575 4.952730 -1.145699 -3.570497 2.418958 0.975816 -1.668624 -1.592780 -1.709503 -1.165583 -0.034411 0.895903 -0.544911 1.605490 3.455120 -5.520258 2.217850 -0.239160 -1.199469 2.665369 -0.712766 -0.479737 -1.736510 -0.193653 2.271211 2.322324 -0.048860 -0.447542 0.116685 -2.169346 0.954184 0.076585 1.120836 -0.849345 0.801244 0.457923 -2.581999 -2.254377 -1.820979 -0.808248 -0.031943 -1.186860 0.654735 -0.356969 -5.647456 2.877935 -0.433664 -0.609446 1.318155 -0.132047 2.153068 -1.574014 -2.945244 1.520629 -0.319453 -1.061642 -1.854187 0.997109 1.750654 0.363533 1.013866 -2.508177 -4.052937 1.521035 -0.906391 1.545895 1.146119 1.462437 2.582384 0.946431 -1.374606 -3.202627 -1.739502 1.282011 0.151282 -1.973676 -0.215310 -0.826982 2.304205 2.552053 0.177831 -0.161751 -1.253404 3.239659 -2.251376 -0.691654 2.746417 0.510977 -2.371832 0.475541 2.905868 -1.448002 -2.151213 -1.285958 -0.034388 -0.719807 -2.252458 1.225361 -0.792061 0.962997 0.757734 0.706664 -1.481356 1.013332 0.264748 0.179138 -0.944994 3.934399 3.244127 -1.911342 0.231363 -1.655838 1.459512 -3.564022 -2.465589 0.816142 -1.238526 -0.621891 1.180036 0.169657 2.750879 -0.227546 0.513139 0.344519 -1.164591 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.302740 0.045903 0.614985 -0.679681 0.531472 0.170376 0.216135 -0.192216 -0.615585 -0.293899 -0.068824 -0.376353 -0.384900 0.861122 -0.394108 0.242275 1.257287 0.518139 -0.184663 -0.396427 0.704861 -0.589652 1.061287 1.062772 -0.896171 -0.051506 0.494943 0.666891 0.389520 0.754280 -0.446113 -0.359789 0.317958 -0.415034 0.359963 -0.932442 0.158762 0.143928 0.001580 -1.352332 0.143779 -0.261436 0.001538 -0.088511 -0.089430 0.655751 0.797811 0.674863 -0.315570 0.184514 0.647209 0.283282 -0.064668 0.243072 0.223966 0.358258 0.655623 0.235544 -0.314569 -0.046844 -0.175701 -0.736609 0.235236 0.807978 1.049011 0.070800 0.127749 0.135880 0.022629 0.170152 0.290054 0.116899 0.070045 0.148197 0.390758 -1.128382 0.154715 -1.792578 -0.221582 -2.064834 -0.464467 -0.561942 0.372784 -0.383028 0.310397 0.194140 0.881792 0.070392 0.223316 0.367652 1.005986 -0.774068 -0.332695 -0.546661 -0.475747 0.316603 -0.478200 -0.042041 0.360807 0.052375 -0.572913 -0.702957 0.535163 0.235096 -0.314364 -0.191730 -0.074204 0.820674 -0.917141 -0.484160 -0.724437 0.029547 -0.174465 -1.153461 0.244904 -0.659207 1.005679 0.043389 -0.186741 -0.716331 0.170482 0.803041 -0.259377 -0.311972 -0.337871 0.809970 0.288633 -0.062500 0.025938 -0.174135 -0.011986 0.743495 0.829724 -0.508478 -0.186712 0.225611 -0.793473 -0.161744 -0.862297 -0.232379 0.640684 -0.717628 0.029889 0.458137 -0.533943 -0.193791 0.959272 -0.138554 0.605826 2.222706 -0.137565 0.520538 0.267958 -0.868374 0.419599 0.026998 -0.036046 0.357312 0.639454 0.191999 -1.167726 -0.729906 0.203195 0.780413 0.596630 -0.886001 -0.570466 -0.513404 -0.061994 0.124167 -0.055892 0.193105 -0.398001 -0.504622 -0.235157 0.230540 1.315846 -0.374936 -0.743381 0.193859 0.082885 -0.535171 -1.056482 -0.251631 -0.339452 0.157504 -0.091502 -0.138110 0.489135 1.036037 -2.069950 0.805717 -0.348850 -0.267770 0.669506 -0.047431 -0.277297 -1.091639 0.176717 0.677767 0.956936 0.052200 0.013518 0.278712 -0.794640 -0.094003 -0.032541 0.542290 -0.354170 0.347832 0.344173 -0.760474 -0.602536 -0.186923 0.023587 -0.350093 -0.052952 0.367809 -0.094224 -1.847293 0.917085 -0.239284 -0.203751 0.408836 -0.061890 0.409255 -0.905816 -0.957634 0.384481 0.153193 -0.128907 -0.598035 0.072539 0.764280 -0.217076 0.079565 -0.475161 -1.051162 0.339408 -0.383334 0.451976 0.306638 0.244329 0.942920 0.076461 -0.184042 -0.878262 0.083527 -0.025211 -0.300637 -0.422246 -0.200679 -0.179529 0.722169 1.085170 -0.000792 0.007689 0.090174 1.047364 -0.852163 -0.375592 0.594749 0.575723 -0.364363 0.356895 0.670717 -0.958349 -0.619494 -0.385063 -0.308617 0.095071 -0.623673 0.471481 -0.499318 0.315242 0.288566 0.176839 -0.295856 0.481671 0.165215 0.126367 0.004439 0.985419 1.451353 -0.542858 0.086112 -0.607656 0.345968 -1.137241 -0.680089 0.040135 0.076030 -0.304491 0.298685 0.071256 0.719320 -0.022048 0.113815 -0.016137 -0.227637 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -2.991655 1.627083 5.553298 -10.119600 10.996318 9.411715 2.607966 -4.292037 -7.141048 -0.676051 0.073863 -8.313604 -5.604573 10.368584 -4.634692 5.288095 12.028740 0.168073 -4.000223 -0.803132 10.125009 0.311803 12.070909 8.299498 -11.045681 -0.045847 1.171672 5.834220 1.188226 10.205770 -6.304105 -7.435882 2.339809 -3.540719 1.637658 -4.471269 1.542945 -0.502718 2.792850 -11.920247 1.738043 1.704715 -2.493758 -0.710282 -1.274683 1.875180 11.041921 7.629201 -3.878257 -0.561770 8.046253 3.168577 -1.175015 2.767625 2.505033 2.456994 7.530944 2.097891 -4.421204 -4.471936 -2.696218 -2.184818 1.314858 8.990300 11.251094 1.245762 0.420362 3.672639 0.137243 1.475676 2.617511 2.575096 1.188232 2.824339 5.489793 -4.724175 0.858760 -12.158883 -1.409415 -12.760804 -5.484521 -4.742504 2.139396 1.347577 4.915808 -3.795154 11.000819 -0.806757 -0.094693 4.550706 12.340855 -8.666133 -2.812411 -8.946862 -7.760087 0.522124 -4.438986 -0.733763 1.717738 -0.112526 -7.528407 -6.399237 1.525007 2.435589 -3.075797 -2.727504 -0.903111 8.349015 -7.315557 -4.419902 -3.749556 5.174672 -1.763152 -14.593514 -5.093282 -5.772779 3.491421 -1.779407 -0.513851 -8.323292 1.620019 8.430807 -5.495500 -4.101999 -3.106845 9.574425 7.498377 0.848999 0.798450 -1.404852 2.118497 9.838822 5.774515 -5.007383 -2.442066 -1.074648 -2.930308 0.363436 -6.257859 -0.170777 2.099845 -7.762247 0.281094 7.803347 -3.685764 1.279895 1.640577 -1.626068 5.025047 27.937441 -3.462793 7.856567 2.000966 -10.551234 6.264980 0.666511 -1.812285 2.488356 3.990996 2.335482 -12.979935 -8.969929 7.439818 7.949826 5.485785 -10.164002 0.585077 -2.557351 -1.437683 -2.013126 -1.059601 3.440332 -2.499620 -5.327838 -2.869086 4.332635 18.309157 -4.267320 -12.820594 7.406082 3.358478 -3.396904 -5.523583 -5.002056 -4.063735 0.377585 3.561202 -1.050892 7.340615 12.726150 -18.965763 8.005498 0.288546 -4.951601 10.141618 -1.600652 -3.791017 -4.377509 -0.677021 8.700801 9.064595 0.228550 -1.799494 -0.027521 -8.102212 1.345331 1.264339 3.387845 -3.500820 3.285144 2.439488 -8.724982 -6.907554 -5.089441 -3.472574 -1.415911 -5.074330 3.096674 -2.194545 -18.594908 11.628503 0.399806 -0.869585 3.173447 -2.643455 6.679934 -6.786538 -10.235793 5.250895 -0.466440 -2.411011 -4.305331 2.499896 6.356246 2.063407 5.196522 -9.304088 -14.454691 5.614665 -2.138010 7.064027 3.207339 3.541295 6.493183 3.147879 -2.918201 -10.071428 -6.229146 4.681283 1.759485 -7.677244 -1.328403 -3.026309 8.526040 7.806214 -0.966798 -2.350808 -5.453454 9.237756 -7.164918 -1.401676 7.545596 1.433347 -9.569937 -0.303743 9.066683 -5.688180 -5.370089 -5.086316 -1.703409 -4.700872 -8.419227 3.397006 -1.660756 3.248521 3.001775 0.525165 -3.773655 3.429221 1.538591 -0.472989 -0.667651 12.769711 9.853777 -5.395927 1.259254 -8.156487 6.107136 -12.579420 -10.211087 4.473434 -4.706147 -4.375834 1.688394 0.652149 8.754317 -1.574120 1.926583 0.126574 -2.220773 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.169571 0.045099 1.021964 -0.814683 0.494689 0.124351 0.191988 -0.002163 -0.816987 -0.134451 -0.149211 -0.607300 -0.364131 0.857532 -0.306858 0.031026 1.264953 0.640065 -0.316842 -0.306753 0.399686 -0.537422 0.885508 1.110620 -0.820302 0.132818 0.032077 0.797015 0.254652 1.224531 -0.695721 -0.312131 -0.050626 0.113967 0.550635 -0.929721 -0.037475 0.188806 -0.278629 -1.594883 0.203350 0.416700 0.483269 -0.132870 0.219889 0.599170 0.857733 0.571585 -0.122254 0.071335 0.448231 0.187034 0.273297 0.157847 0.496263 0.446277 1.331992 0.113856 -0.410503 0.100620 -0.174095 -0.679726 0.228522 0.747218 0.978286 0.140522 -0.055089 -0.433354 0.259879 0.134506 0.322412 0.155415 -0.056739 0.183606 0.182845 -0.468692 0.748245 -1.121964 0.182480 -1.493345 -0.564467 -0.453296 0.745654 0.293494 0.067390 -0.311533 0.924808 -0.204075 0.245243 -0.050172 0.888019 -0.538402 -0.272824 -0.430804 -0.586842 0.337059 -0.259228 -0.327977 0.256293 0.167653 -0.543538 -0.342894 0.654994 0.098461 -0.372799 0.697652 -0.029307 0.825158 -0.797267 -0.319598 -0.592952 0.240258 0.035072 -0.975453 0.237026 -0.771093 0.196190 0.033624 -0.337563 -0.462633 0.265996 0.485864 -0.438202 0.137746 -1.366485 1.123968 0.075026 -0.271243 -0.048967 -0.202360 -0.042597 0.199487 0.363146 -0.638677 -0.031139 0.397201 -0.711390 -0.235175 -0.830260 -0.229210 0.352441 -0.569114 -0.337319 0.090869 -0.560738 0.247405 -0.036798 0.102536 0.462280 2.152414 -0.283963 0.564826 0.165133 -0.699462 0.937995 0.518461 -0.060971 0.253940 0.572830 0.249813 -1.117950 -0.683245 0.129210 0.847863 0.594862 -0.578886 -0.242382 -0.446630 -0.240982 0.276524 0.269769 0.005713 -0.341779 -0.524820 -0.289492 -0.083128 1.361507 -0.048329 -1.248453 0.037427 -0.203338 -0.523037 -0.762996 -0.084172 -0.174607 0.117985 -0.535978 -0.221353 0.616661 0.980289 -2.127362 1.021597 -0.207886 -0.537175 1.260659 -0.507166 -0.140470 -1.019277 -0.072177 0.560318 1.209016 0.040938 -0.459976 0.237623 -0.785367 -0.135801 -0.112003 0.499548 -0.520362 0.426571 0.334626 -0.716976 -0.325334 -0.814637 -0.002841 -0.265495 -0.496986 0.324054 -0.016777 -1.507679 0.799893 0.030260 -0.059445 0.317861 -0.005638 -0.196344 -0.756217 -0.752293 0.062907 0.257331 -0.300489 -0.683676 -0.102154 0.663078 -0.356638 0.036969 -0.641570 -0.931672 0.485682 -0.547313 0.560689 0.405007 0.018554 0.491881 1.416955 -0.087923 -0.489074 0.084758 -0.054407 -0.350757 -0.193091 0.120412 -0.427252 0.535502 1.008357 0.040612 0.215715 -0.259705 1.122688 -0.161574 -0.437950 0.520150 -0.670221 -0.200376 0.281523 0.665824 -0.843291 -0.537739 -0.551149 -0.548586 0.096880 -0.341382 0.615459 -0.434224 0.223456 0.252251 -0.055426 -0.542670 0.376797 0.066184 -0.321973 0.130827 1.241953 0.858414 -0.208401 0.666691 -0.512964 0.445140 -0.953985 -0.187363 -0.252887 -0.125270 -0.566024 0.247517 0.148606 0.633813 0.021602 0.187160 -0.017694 -0.048256 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.078854 -0.074014 0.599562 -0.432386 0.166230 -0.159474 0.106740 -0.036340 -0.481460 -0.015328 -0.088108 -0.192976 -0.032029 0.440711 -0.095578 0.198370 0.749446 0.450558 -0.171316 -0.337885 0.358198 -0.778264 0.503601 0.723464 -0.543336 0.118389 0.182346 0.589918 0.419095 0.640044 -0.529943 0.250235 -0.052456 -0.304487 0.441496 -0.752935 0.009734 0.228769 -0.019859 -1.066644 0.087150 0.012133 0.515760 -0.026113 0.074103 0.567353 0.388152 0.345097 -0.154466 0.190505 0.343759 -0.188216 0.276741 0.086188 0.269031 0.473254 0.975772 0.344893 -0.197531 0.160271 -0.013207 -0.654808 0.421207 0.412464 0.647380 -0.032191 -0.018997 -0.067968 0.297685 -0.000120 0.270985 0.127087 -0.250175 -0.039542 0.199824 -0.908869 0.636422 -1.041336 0.063495 -1.214268 -0.365046 -0.321273 0.372465 -0.249328 0.229979 0.086367 0.565178 -0.121216 0.166986 -0.192189 0.387117 -0.472299 -0.150848 -0.216206 -0.291744 0.225371 -0.193227 -0.280121 0.465398 0.071230 -0.255189 -0.254182 0.752824 0.187244 -0.283145 0.329164 -0.065954 0.489653 -0.473074 -0.502060 -0.414033 -0.072942 -0.201760 -0.517848 0.653379 -0.564713 0.324904 0.030121 -0.092954 -0.434162 0.057827 0.414967 -0.167282 -0.059846 -0.796400 0.714104 0.072555 -0.188358 0.011000 -0.144686 -0.114592 0.166986 0.458236 -0.397610 -0.112873 0.408008 -0.694018 -0.136886 -0.599887 -0.303332 0.513990 -0.424097 -0.418980 -0.022785 -0.321752 0.306926 0.732848 0.178098 0.270937 1.321025 -0.007375 0.280081 0.144695 -0.344805 0.690381 0.347223 0.054152 0.368995 0.424107 0.036470 -1.093175 -0.431354 -0.127088 0.481935 0.323435 -0.512737 -0.644999 -0.379571 -0.118883 0.382063 0.051270 -0.024664 -0.218727 -0.294846 -0.103739 -0.207903 0.882329 -0.167780 -0.496713 -0.045607 -0.364945 -0.683488 -1.108619 -0.091615 -0.380515 0.036772 -0.758670 -0.080219 0.294193 0.525615 -1.353055 0.613408 -0.419927 -0.343167 0.876697 -0.336986 -0.049074 -1.142319 -0.011591 0.186453 0.732440 -0.083026 -0.287507 0.311191 -0.506022 -0.051905 -0.180077 0.263011 -0.337964 0.303335 0.151296 -0.378274 -0.135798 -0.256744 0.087613 -0.269532 -0.044754 0.213662 -0.037618 -0.796794 0.323584 -0.126730 -0.140331 0.480697 0.105452 -0.191037 -0.496513 -0.359152 0.066805 0.363773 0.055721 -0.627998 -0.068423 0.453677 -0.383749 -0.345585 -0.367132 -0.617773 0.110125 -0.614561 0.195505 0.284399 -0.107214 0.332851 0.874961 -0.080086 -0.442726 0.459097 -0.593975 -0.297374 -0.038745 -0.296404 -0.230783 0.360883 0.714606 0.129577 0.438070 0.100259 0.761150 -0.314493 -0.426466 0.282354 -0.198345 -0.067303 0.202706 0.339645 -0.646178 -0.293142 -0.258901 -0.492667 0.301757 -0.099810 0.545250 -0.326648 0.150977 0.090214 -0.015765 -0.141369 0.355117 0.036914 -0.088307 -0.042865 0.831681 0.789989 -0.157629 0.141479 -0.269928 0.184653 -0.542344 0.045125 -0.264652 0.344807 -0.390302 0.248287 0.384907 0.437387 0.137171 -0.081048 0.041243 -0.201288 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.869720 0.124094 1.053992 -1.982164 3.072509 1.185078 1.248885 -0.573247 -1.819601 -1.187929 -0.003763 -1.363482 -1.932890 2.940846 -1.114988 1.892636 3.705398 0.738567 -0.193706 -0.866388 3.165972 -2.121583 4.050068 2.608544 -3.421771 -0.069497 0.782125 1.816910 0.443296 2.841827 -0.954059 -1.611545 1.795842 -2.246986 1.066546 -2.401227 0.726683 0.399037 0.300504 -3.854046 0.171736 -0.059128 -0.425012 0.131059 -0.732809 1.748100 2.819141 2.543937 -1.645866 1.159570 2.168025 -0.046732 0.105499 1.401205 0.265813 0.758436 0.657402 0.505274 -1.888529 -0.594785 -1.117644 -3.121140 0.907669 2.276225 3.674214 -0.366164 0.574430 1.761991 -0.963598 0.784684 1.313439 0.786258 0.635384 -0.474042 2.573932 -3.199098 -0.704632 -5.328764 -1.534519 -7.137518 -1.847104 -2.291075 1.096753 -0.660670 2.058453 -0.080014 3.166698 0.514528 0.454914 1.755065 3.341531 -3.007657 -1.072794 -2.682284 -1.259526 0.434653 -1.878904 -0.462096 1.968433 -0.379609 -2.146960 -2.002979 1.454110 0.694058 -0.726974 -2.398329 -0.843649 2.950864 -3.165744 -2.244563 -2.666732 0.352223 -1.281789 -4.315416 0.866188 -1.106553 2.517350 0.317016 0.480232 -2.044470 0.648793 2.898666 -0.832942 -1.910823 -0.065481 3.116543 1.531895 0.463490 0.912463 0.175644 -0.387516 3.246877 3.816006 -0.770760 -1.350522 0.317965 -1.620113 0.490471 -1.981443 -0.651299 2.094499 -3.009898 -0.133475 1.826854 -1.192310 -0.366256 2.546644 -0.456095 2.235468 6.588338 -0.339258 2.028819 0.976733 -3.174565 1.874008 -0.176957 0.141284 1.585952 2.142389 0.017352 -3.574601 -2.650429 1.226785 2.079776 1.782801 -3.706923 -1.907244 -1.574976 0.583383 -0.021976 -1.065655 1.566395 -0.419044 -1.985245 -0.167992 0.659479 4.839843 -2.137246 -2.369103 2.089575 0.714793 -1.947161 -3.980813 -1.695821 -1.918148 -0.197841 0.085051 -0.383397 0.836522 3.546638 -5.414364 2.428562 -1.225989 -0.673902 2.192094 -0.096598 -0.817964 -4.041660 0.057926 2.204149 2.597345 0.229664 0.163080 0.521551 -2.423581 0.706951 -0.053579 1.319524 -0.438346 1.049077 -0.305367 -2.227955 -2.409191 -0.793448 -0.451439 -0.748549 0.102776 1.063013 0.793276 -5.614273 2.672461 -1.167392 -1.374037 1.744193 0.522839 2.612979 -2.268593 -3.513996 1.827799 -0.530238 -1.356311 -2.417336 0.913247 1.852959 0.026979 -0.690121 -1.246709 -4.015156 1.683193 -1.151214 1.392230 1.247174 1.231433 3.815967 0.521320 -2.156185 -3.298149 -0.980278 -0.066136 -1.143484 -1.729048 -1.421325 -0.397965 2.734057 3.332778 0.719358 0.035819 -0.335448 3.629067 -3.599597 -1.340958 3.247490 1.988518 -1.628233 1.332058 3.163304 -2.599244 -2.140192 -1.152784 0.124802 0.044730 -2.345251 1.188023 -1.641443 0.914063 0.695498 0.869892 -0.900201 1.297731 0.578764 0.773067 -1.492057 3.982304 4.638471 -2.794073 -0.535843 -1.724177 1.135420 -3.871494 -2.575263 0.599592 0.760199 -0.584753 1.447699 1.153583 2.461663 0.023326 -0.517717 -0.207140 -1.584331 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.114288 -0.027447 1.459976 -3.640564 4.145033 1.777589 0.958669 -0.508696 -2.203922 -1.311246 -0.641575 -0.850981 -1.884198 3.454267 -1.277323 2.561366 3.736963 -0.067577 -0.486648 -1.129964 4.963225 -2.755977 4.017336 1.372952 -4.563736 -0.351346 1.287913 3.600954 1.226729 3.982124 -0.792437 -1.345917 0.511781 -2.174087 1.978722 -3.247598 1.877890 1.173021 -0.187904 -4.327000 0.286147 -0.004130 -0.556002 0.323862 -1.314535 1.682939 2.770944 3.230138 -3.117614 0.278716 3.762522 0.681389 -0.548046 1.540452 -0.955059 0.884799 1.197664 0.498062 -1.716906 -1.067260 -0.513217 -3.284622 2.398207 2.515454 4.617699 -1.128627 1.041770 3.304259 -0.594120 0.979372 1.629346 0.614780 -0.353424 -1.431404 3.341455 -4.250176 -1.073227 -6.909613 -0.688764 -7.960438 -1.617097 -3.145876 0.413726 -0.262727 2.046133 -0.426623 4.037825 0.287270 0.443599 3.049169 3.028893 -2.714305 -0.636720 -5.123003 -2.560033 0.756405 -2.208652 -1.931065 2.031467 0.733714 -1.594570 -2.031221 0.808291 0.602557 -0.883747 -3.517314 -1.793904 3.491003 -3.597441 -2.637360 -2.319065 2.164316 -1.837935 -4.956343 0.850083 -2.395084 2.408046 -1.314255 2.566304 -1.981073 -0.079659 4.125167 -1.298731 -1.650561 -1.113606 3.912998 2.496888 -0.345662 1.016888 -0.246764 -0.841982 2.969420 4.342461 -1.142133 -3.141923 1.205857 -1.835334 -0.211909 -3.146609 -0.091011 3.101211 -3.652267 -0.835466 2.477867 -0.489281 -0.278562 2.963007 -1.443667 3.293200 9.480712 0.078412 1.424089 0.429659 -3.356572 2.776848 1.073668 -0.236157 2.601902 1.563249 -0.777381 -4.920695 -3.320518 1.220781 1.511032 1.969073 -3.709065 -2.711139 -2.059069 -0.137791 0.368127 -2.209014 2.261316 -1.770958 -1.728049 -0.446846 0.017976 5.881634 -1.428865 -2.095874 3.425851 2.217851 -4.681365 -4.909406 -2.283750 -2.949445 -1.085450 0.140267 -0.792995 1.677033 4.134784 -6.876977 2.506737 -0.341510 -0.621536 1.658985 -1.588225 0.223252 -6.099139 -0.296090 2.609906 3.465852 -1.359498 0.812567 0.372279 -2.525145 1.825923 0.158370 1.175852 -0.124867 0.391792 -0.776952 -2.261971 -2.617687 -0.315441 -1.960441 0.186749 0.079005 0.462389 0.065807 -5.877593 3.281495 -2.645422 -0.615452 2.785368 0.721346 3.654313 -2.179820 -3.578618 2.577649 1.062926 -0.760409 -3.539263 1.745030 3.158549 -0.575079 -0.677551 -1.581738 -6.066325 0.667321 -2.367335 0.537291 1.075829 1.490173 3.595647 0.803045 -1.756560 -4.951518 -1.489857 -0.661562 -0.140341 -1.712194 -1.627180 0.264678 3.073501 3.013313 0.657434 0.413065 0.078354 4.485822 -3.332667 -2.004154 3.222333 0.929822 -2.844455 1.356084 3.542168 -2.908582 -2.931738 -2.048545 1.525235 0.474760 -2.944273 1.395457 -1.186542 0.996265 1.245787 1.352279 -1.335629 1.853344 1.316086 0.458632 -2.749559 6.054729 5.017577 -2.603757 -0.939308 -1.810147 1.057622 -4.373850 -2.447551 0.069163 0.409375 0.218398 2.561998 1.707852 3.329904 -0.357058 1.179596 0.764623 -3.006380 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.408233 0.257630 0.937473 -1.063627 0.886327 0.736787 0.275502 -0.540819 -0.782455 -0.226792 -0.001331 -0.858809 -0.578711 1.201998 -0.617772 0.380242 1.620213 0.391096 -0.415676 -0.341364 0.955859 -0.334712 1.515175 1.422408 -1.279209 -0.056730 0.651994 0.823326 0.436632 1.087845 -0.795715 -0.674461 0.331819 -0.445996 0.342291 -0.905889 0.151945 -0.082278 0.245003 -1.687864 0.176012 -0.204789 -0.171302 -0.192709 -0.114622 0.506729 1.327260 0.943592 -0.355302 -0.027843 0.916509 0.456223 -0.114208 0.271231 0.417704 0.327462 1.200707 0.397114 -0.363482 -0.279291 -0.236596 -0.559085 0.166109 1.252888 1.430497 0.245121 0.101542 0.166707 0.087551 0.155173 0.237689 0.260313 0.082426 0.615052 0.453570 -1.225374 0.441258 -2.093179 -0.219142 -1.983886 -0.657219 -0.619265 0.242814 -0.289313 0.542955 0.025152 1.261689 0.090123 0.196299 0.386219 1.568630 -1.124976 -0.405915 -0.737439 -0.834306 0.312440 -0.612901 0.144411 0.211330 -0.035453 -0.867485 -0.953888 0.534535 0.403572 -0.465284 -0.065142 -0.019233 1.001951 -0.958073 -0.572611 -0.698485 0.089734 -0.253977 -1.775171 -0.167207 -0.883213 1.027757 -0.054764 -0.318091 -1.196956 0.229929 1.093694 -0.446002 -0.501690 -0.520812 1.128453 0.669533 0.035390 -0.016614 -0.312443 0.273313 1.117576 0.842707 -0.699301 -0.147070 0.005493 -0.904772 -0.130812 -1.005196 -0.156566 0.538993 -0.870645 0.006961 0.916739 -0.679662 -0.038648 0.913543 -0.189493 0.719612 3.560284 -0.318841 0.862427 0.338717 -1.360440 0.632413 0.000742 -0.243856 0.288446 0.640857 0.468151 -1.831533 -1.015770 0.603357 1.168254 0.783077 -1.229169 -0.347635 -0.480255 -0.220518 -0.091393 0.035501 0.245797 -0.514572 -0.725169 -0.410610 0.608674 1.974043 -0.544671 -1.435816 0.442919 0.114755 -0.452415 -1.087212 -0.368552 -0.415668 0.263752 0.080850 -0.156262 0.848430 1.473059 -2.770199 1.081595 -0.197456 -0.607119 1.261012 -0.133752 -0.561417 -0.866425 0.305160 1.093397 1.106164 0.101227 -0.156646 0.192135 -1.096716 -0.138120 0.038086 0.613893 -0.537983 0.507662 0.550969 -1.150601 -0.934500 -0.488558 -0.049670 -0.501416 -0.415940 0.557739 -0.363283 -2.469630 1.487918 0.004204 -0.209406 0.362675 -0.446344 0.508562 -1.230673 -1.352685 0.516227 0.031581 -0.070129 -0.590920 0.077494 0.866574 0.003163 0.506800 -1.005410 -1.481536 0.450797 -0.424136 0.773115 0.444468 0.490768 0.971418 0.235271 -0.171428 -1.198592 -0.154477 0.356544 0.014299 -0.880727 -0.305990 -0.345092 1.037440 1.322208 -0.218509 -0.116956 -0.276265 1.185160 -1.027741 -0.386221 0.703358 0.547791 -0.898736 0.075383 0.832852 -0.972624 -0.704142 -0.562038 -0.572233 -0.283307 -1.029873 0.525004 -0.455659 0.419616 0.480683 0.075995 -0.440188 0.553083 0.172927 0.126884 0.205623 1.233039 1.641132 -0.642547 0.149943 -1.037485 0.634594 -1.629379 -1.214021 0.422230 -0.336064 -0.527961 0.138381 0.060389 1.004571 -0.065968 0.220079 0.035946 -0.170876 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.467795 -0.161951 0.606725 -1.258905 0.961689 0.286940 0.305114 -0.414688 -1.215522 -0.450175 0.183508 -1.193784 -0.571725 1.453187 -0.511194 0.580728 1.857935 0.470953 -0.465309 -0.447254 1.116815 -0.549529 1.566857 1.548537 -1.301985 -0.012327 0.264165 0.900338 0.496300 0.766310 -0.355534 -0.697202 0.383692 -0.673484 0.227142 -0.952222 0.149830 0.300508 0.390173 -1.918666 0.316817 -0.041328 0.126967 -0.162711 -0.192747 0.726557 1.185442 1.018052 -0.512372 0.359810 1.123854 0.221681 -0.047679 0.307752 0.323096 0.188764 0.793541 0.258368 -0.521589 -0.274984 -0.229224 -0.699504 0.222361 1.169860 1.535305 0.105099 -0.059582 0.369593 0.265036 0.306062 0.600752 0.232275 0.069370 0.112797 0.629677 -1.330028 0.093489 -2.612931 -0.187726 -2.980957 -0.786482 -0.323832 1.027611 -0.176277 0.259497 0.055230 1.335276 -0.008545 -0.058008 0.806237 1.590140 -0.919208 -0.567904 -0.781753 -0.886583 0.504724 -0.588479 0.026100 0.636470 0.359936 -0.980021 -0.709392 0.568106 0.197833 -0.507437 -0.353812 0.082638 1.155277 -1.238506 -0.553540 -0.575771 0.627265 0.084847 -1.829021 -0.087358 -0.916074 0.977965 0.032992 -0.491575 -0.860752 0.201041 0.659808 -0.590041 -0.212821 -0.692413 1.078294 0.560809 0.279328 0.029061 -0.011333 0.319574 1.269419 0.628088 -0.928743 -0.078307 0.100300 -0.604443 0.121625 -1.087021 -0.470092 0.765941 -1.077033 0.268395 0.542863 -0.804965 -0.393413 0.908252 0.029316 0.492494 3.351818 -0.154278 1.168383 0.684241 -1.141900 0.611941 -0.040098 -0.005736 0.492482 0.799176 0.230623 -1.292446 -1.179548 0.695802 1.267771 0.909960 -1.387068 -0.565467 -0.297076 -0.089510 0.089220 0.026557 0.273873 -0.327117 -0.692429 -0.333729 0.714768 2.059389 -0.401957 -1.134311 0.457403 0.506203 -0.487659 -1.320359 -0.414839 -0.628621 0.236746 0.123147 0.003249 0.865132 1.695018 -3.091276 1.187456 -0.063266 -0.148881 1.015597 0.141975 -0.801290 -1.810832 -0.064758 0.902731 1.432524 -0.008739 -0.000623 0.407360 -1.173753 -0.122314 0.175736 0.388958 -0.546775 0.529967 0.260002 -0.809730 -0.689756 -0.234330 -0.325578 -0.156752 -0.313013 0.702058 0.058712 -2.522244 1.307786 -0.192819 -0.348633 0.253538 -0.363412 0.890485 -1.217235 -1.275884 0.561936 -0.135768 -0.546849 -0.807551 0.190250 0.874065 -0.184620 0.328201 -0.741736 -1.416050 0.855673 -0.629868 0.912795 0.513491 0.046988 1.038641 0.166222 -0.288862 -1.160717 -0.143821 0.165100 -0.319002 -0.842113 -0.141506 -0.303103 1.024032 1.260872 0.002761 -0.432045 -0.016505 1.309436 -1.082602 -0.531014 0.887083 0.377325 -0.868000 0.642157 1.064187 -1.346501 -0.378713 -0.810923 -0.398824 -0.247794 -0.953811 0.742075 -0.200068 0.508050 0.238028 0.082787 -0.281691 0.745947 0.299365 0.065591 0.100125 1.612091 1.839167 -0.666813 0.075738 -1.199349 0.625326 -1.672218 -1.314220 0.363773 0.053511 -0.762271 0.189807 -0.016018 1.147252 -0.003144 0.070922 -0.312517 0.190700 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.112110 -0.169443 0.031958 -0.327706 0.186556 -0.158090 0.067596 -0.103717 -0.424287 -0.173252 0.118412 -0.381119 -0.045186 0.341113 -0.102915 0.188108 0.380773 0.138979 -0.110422 -0.108159 0.206083 -0.162970 0.286025 0.362034 -0.218925 0.046730 -0.198037 0.174160 0.062216 0.140254 0.079130 -0.213855 0.070833 -0.084752 -0.023574 -0.193212 -0.002289 0.275769 0.134866 -0.437274 0.137753 0.128216 0.284420 -0.033607 -0.001934 0.112218 0.141529 0.171815 -0.062562 0.245555 0.268895 0.071311 0.042837 0.073210 0.092869 0.000808 0.108121 -0.262055 -0.143910 -0.066817 -0.053060 -0.109818 0.054879 0.199233 0.301161 0.001509 -0.049966 0.024699 0.064221 0.113237 0.256817 0.034632 -0.100920 -0.139550 0.054347 -0.166553 0.032835 -0.515991 0.012756 -0.780152 -0.202867 0.113650 0.478909 0.296971 -0.056634 0.059071 0.270319 -0.053519 -0.133741 0.204321 0.258150 -0.062147 -0.130053 -0.008479 -0.239253 0.120845 -0.051379 -0.050925 0.037375 0.319466 -0.225699 -0.007930 0.157301 -0.030847 -0.093627 -0.041748 0.085587 0.188082 -0.436828 -0.066849 0.067160 0.352398 0.170746 -0.294318 0.073130 -0.258615 0.080740 -0.011629 -0.194049 -0.003017 0.038294 -0.098492 -0.172549 0.142993 -0.491712 0.104477 0.009194 0.113379 -0.025335 0.024153 0.019110 0.254046 -0.156773 -0.305569 0.058522 0.013368 0.066883 0.126987 -0.182772 -0.190342 0.069138 -0.254550 0.152586 -0.100560 -0.180808 -0.203337 -0.095294 0.088279 -0.050656 0.324722 -0.011630 0.376005 0.277796 -0.116161 0.028232 -0.031199 0.105854 0.148502 0.199179 -0.076573 0.155774 -0.296359 0.180052 0.247146 0.184118 -0.104782 -0.131864 0.075725 0.013424 0.150374 0.060228 -0.023412 -0.025391 -0.169904 -0.068375 0.070186 0.402383 0.161324 0.113164 0.089078 0.189319 -0.110327 -0.147092 -0.088497 -0.150959 0.083624 -0.006549 0.041117 0.155045 0.376550 -0.680038 0.272231 0.015337 0.163422 0.062613 0.058633 -0.247581 -0.625703 -0.194868 0.068336 0.392995 -0.133179 0.168009 0.192030 -0.234702 -0.038341 0.001749 -0.022501 -0.202871 0.113857 0.056044 -0.136478 0.000000 0.028128 -0.124913 0.083783 -0.084701 0.149307 0.297731 -0.416652 0.152527 -0.057737 -0.067903 0.000999 0.024026 0.250359 -0.161770 -0.117729 0.074344 -0.107163 -0.232342 -0.165362 0.077226 0.145105 -0.220082 -0.017118 -0.038797 -0.062681 0.273873 -0.149154 0.196817 0.084495 -0.187048 0.051571 0.073191 -0.014937 -0.099330 0.059679 -0.087490 -0.279833 -0.073919 0.283289 -0.103763 0.145650 0.180642 0.118711 -0.249772 0.215564 0.304514 0.002027 -0.075486 0.216686 -0.176971 -0.140960 0.286940 0.267957 -0.336436 0.058278 -0.253945 0.022190 -0.043837 -0.074064 0.286494 0.145784 0.133488 -0.090896 0.012776 -0.064840 0.202220 0.108970 -0.075264 0.053608 0.466291 0.165245 0.059521 0.106505 -0.217131 -0.008666 -0.267121 -0.187231 -0.018445 0.164326 -0.287807 0.043818 -0.188420 0.320584 0.032797 0.100562 -0.118289 0.209595 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::push_back(int const&) = -1.488296 2.209396 2.806934 -3.241036 4.528690 5.197904 1.367617 -1.631541 -2.502893 -0.856619 -0.595220 -4.371124 -3.398611 5.325328 -1.862577 2.081085 6.818100 1.019087 -1.381727 0.429257 3.260996 0.042155 6.096627 4.869866 -4.187095 -0.061227 2.059236 1.371922 -1.388933 5.390002 -3.851879 -5.731530 1.918825 -1.676357 0.573276 -2.285403 0.006429 -1.398535 1.245163 -6.406137 0.621556 1.183278 -1.744517 -1.489393 -0.770155 -0.820729 6.753774 3.598662 -0.535907 -0.846302 1.867698 1.773730 -0.629635 1.230631 2.554941 1.912427 2.943737 0.875732 -2.697065 -1.449352 -1.667277 -1.309277 -0.899919 4.499905 4.844045 1.236053 -0.027620 0.866429 -1.322716 0.428888 -0.243806 1.020909 1.694256 2.923762 1.718573 -2.328511 0.110829 -5.123368 -1.359456 -5.501746 -2.960110 -2.592317 0.143201 0.848180 2.953812 -1.938777 5.121744 -0.839873 1.128880 1.372223 7.754749 -5.365171 -1.953082 -3.920720 -2.548949 0.408108 -2.254686 0.112584 0.657615 -2.570354 -4.215681 -4.535453 1.452743 1.962247 -1.459290 -1.027559 0.205625 4.271033 -3.277130 -2.703136 -3.693684 0.027566 -1.418102 -7.399707 -2.467038 -0.939105 0.933820 1.095935 -2.077304 -6.315252 2.069070 4.710089 -2.125734 -3.572406 0.080720 4.990586 2.492674 0.205521 0.846472 -0.744476 2.029024 5.759458 3.989449 -1.908070 0.077886 -0.711243 -2.415777 -0.482798 -2.464867 -0.860678 -0.841985 -3.852930 -0.048823 4.986379 -2.988071 1.148457 0.275146 -1.011695 2.915617 14.086500 -2.489548 3.444175 0.316198 -6.725106 3.624117 -0.853216 -2.376408 -1.042663 2.428543 3.243279 -6.957620 -3.643239 3.791635 5.012904 3.357909 -4.423426 0.396644 -2.223115 -0.299131 -1.366302 0.623584 1.668114 -0.441749 -3.525887 -1.642145 3.095851 9.402398 -3.590319 -7.305701 3.008475 0.754893 0.457112 -3.147749 -1.663725 -2.500464 0.468385 1.563809 -1.234229 3.103738 6.177850 -8.593147 4.566907 -0.995941 -4.017285 5.641087 -0.228247 -2.150943 -0.764659 0.722665 5.785416 4.660585 1.436650 -0.440784 -1.336113 -4.059974 -0.657838 0.457899 2.642337 -1.591348 2.205637 0.991014 -5.625207 -4.018399 -2.734092 -0.677396 -3.188118 -2.541244 1.817763 0.225569 -9.091257 7.118601 1.667735 -0.316306 1.153490 -1.355314 2.479629 -4.394727 -6.687356 2.534790 -1.070022 -0.695729 0.036705 -0.094805 2.803695 2.035534 2.102171 -3.536174 -6.700076 2.785275 0.874931 4.363958 1.746031 2.793885 3.881286 2.031870 -2.038433 -3.591762 -3.650272 2.958132 0.132035 -3.794366 -2.210800 -1.845160 4.928961 4.861932 -0.657164 -1.525100 -4.139291 3.869565 -4.136594 0.217165 3.860022 1.107575 -4.296488 -1.670940 4.420330 -2.629938 -3.060097 -2.105347 -0.812170 -2.968936 -4.820964 -0.152130 -2.595932 0.727701 2.628217 -0.843020 -2.177772 0.803908 0.729888 0.101533 0.344635 4.236406 3.794279 -3.514886 1.275118 -4.126857 2.987688 -6.648024 -5.692928 2.588493 -1.762169 -2.511378 -0.509155 0.970113 2.743871 -1.422226 0.954872 -0.056791 -1.618424 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = -1.637311 1.853872 3.370110 -4.172582 4.928282 4.821086 1.430845 -1.647188 -3.433408 -1.240414 -0.254175 -5.596553 -3.919332 5.868337 -2.249922 1.757514 7.579460 1.200492 -1.839022 -0.010990 3.306699 0.445046 6.827864 5.699086 -4.865241 0.023922 1.391994 2.201636 -0.737646 5.470162 -3.611666 -5.788553 1.857562 -0.985527 0.759465 -2.388029 -0.005651 -1.266288 0.894437 -7.201013 0.888799 1.681894 -1.269972 -1.370569 -0.485672 0.399392 7.191269 4.059443 -0.721625 -0.698840 2.670772 1.946599 -0.293293 1.314375 2.535585 1.150746 3.934075 0.570611 -2.881425 -1.645060 -1.710843 -1.630223 -1.149395 5.049942 5.613171 1.350654 -0.344419 0.393230 -0.595451 0.795269 0.430746 1.193333 1.951524 3.027383 1.899661 -1.717145 0.645891 -5.838499 -1.047955 -6.990104 -3.305396 -2.434896 1.706918 1.347062 2.119809 -2.324579 5.741993 -0.656018 0.851593 1.715145 8.254966 -5.037880 -2.237546 -3.923681 -2.977399 0.941402 -2.425215 0.272601 0.880867 -1.407075 -4.572904 -3.892008 1.309735 1.325924 -1.813309 -0.114594 0.284229 4.612413 -3.888673 -1.932250 -3.695715 0.942064 -0.328717 -8.185849 -2.959530 -1.611796 1.128715 0.861644 -2.412883 -5.497417 2.068059 4.012620 -2.619031 -2.437961 -1.684739 5.536878 2.582318 0.457048 0.635631 -0.400491 2.357969 5.590466 3.218888 -2.625172 0.076373 -0.690346 -2.311913 -0.232182 -3.049105 -0.847049 -0.184128 -4.036006 0.463213 4.533119 -3.362189 0.590084 -0.644892 -0.775616 2.838708 14.920926 -2.511564 4.182205 0.946283 -6.655466 3.725338 -0.529561 -2.082324 -0.684580 2.518218 3.284475 -6.340246 -4.205129 4.187636 5.634256 3.758732 -5.000766 1.143078 -1.734181 -0.336366 -1.488813 0.928341 1.728216 -0.573348 -3.595959 -1.815150 3.513770 9.741874 -3.019628 -8.230776 2.897818 1.069454 0.602693 -2.775414 -1.630425 -1.766229 0.647804 1.781930 -0.872278 3.622158 6.986811 -10.258882 5.138761 -0.011853 -3.629953 6.315721 -0.384524 -2.635959 -1.491356 0.462397 5.836363 5.301143 1.475737 -1.007361 -0.952716 -4.600828 -0.780372 0.775161 2.631093 -1.906701 2.324457 1.340955 -5.264036 -4.013902 -3.671278 -0.831531 -2.253327 -3.200052 2.400017 0.073562 -10.385944 7.437914 1.476715 -0.639299 0.413772 -1.962310 2.519851 -4.912911 -6.748416 2.290283 -1.572256 -1.952303 -0.884969 0.091891 2.888068 1.636834 2.857403 -4.096903 -6.800020 3.783749 0.172576 4.779676 2.101306 2.486832 3.929242 2.855094 -1.816064 -3.750674 -3.545051 3.466864 -0.112018 -4.092312 -0.926337 -1.973352 4.875972 5.296276 -0.922424 -1.773887 -4.067000 4.301827 -3.975576 -0.568494 4.032166 0.448130 -4.436590 -0.424066 4.711510 -3.282929 -2.890931 -2.894854 -1.540031 -3.112152 -5.114490 0.568619 -2.326602 1.085701 2.730351 -0.828447 -2.598879 1.314411 0.616607 -0.446301 0.653786 5.291707 4.825259 -3.383124 1.994291 -4.900615 3.578873 -7.312546 -6.132553 2.764613 -2.444013 -2.996556 -0.484725 0.537104 3.360101 -1.238358 0.799924 -0.779181 -0.494297 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::size() const = -0.389187 0.478416 0.476187 -1.346852 1.442644 1.442268 0.392639 -0.832331 -0.953838 -0.035071 0.195885 -2.039872 -0.765643 1.182347 -0.694582 0.751905 1.850018 -0.100356 -0.689597 0.023328 0.636284 1.033674 2.015987 1.598727 -1.221540 0.103309 -0.035486 0.351473 -0.373156 0.878272 -1.034814 -1.556375 0.421719 -0.270732 -0.220379 -0.028059 -0.148506 -0.575312 0.906443 -1.603693 0.316695 0.342675 -0.067023 -0.407649 -0.159470 -0.188807 1.980865 1.072141 0.067279 -0.295927 0.921885 0.745777 -0.001421 0.313823 0.574280 0.165245 1.239472 -0.249876 -0.555406 -0.926244 -0.364464 0.472545 -0.384809 1.436055 1.273720 0.546380 -0.366347 0.220669 0.289470 0.080522 0.175795 0.520949 0.202125 1.118973 0.218917 -0.225121 0.542250 -1.002958 -0.186349 -0.920279 -0.969282 -0.256797 0.278606 0.613600 0.792408 -0.382394 1.611618 -0.280376 0.118925 0.297808 1.901216 -1.389790 -0.542852 -0.645162 -0.886249 0.037235 -0.404616 0.355662 -0.161458 0.048471 -1.311552 -0.659009 0.153734 0.377784 -0.524477 0.043283 0.471301 0.497233 -0.646551 -0.376810 -0.476212 0.716873 0.053221 -2.210860 -1.164349 -0.431917 0.030941 -0.099283 -0.774705 -1.650647 0.388699 0.689929 -0.905562 -0.448555 -0.783184 1.005027 1.026922 0.359981 0.216825 -0.121940 0.911070 1.933756 0.106542 -0.897974 0.103456 -0.466801 -0.225096 0.144872 -0.455206 -0.162683 -0.532311 -1.080502 0.718767 1.391977 -0.821404 0.213261 -0.630957 -0.039533 0.409409 3.720589 -0.765649 1.485858 0.542336 -1.687855 0.577503 -0.641023 -0.547651 -0.406623 0.333835 0.866110 -1.284489 -1.159790 1.405427 1.512035 0.931380 -1.099915 0.963538 0.186728 -0.106146 -0.458890 0.244429 0.359832 0.105866 -1.012686 -0.501133 1.236773 2.801790 -0.336260 -1.493612 0.897312 0.466407 0.530650 0.018622 -0.581803 -0.604449 0.266437 0.943496 0.158539 1.029659 1.825272 -2.275595 1.111616 0.228725 -0.795003 1.727448 0.119140 -1.064893 0.403617 -0.050393 1.404118 1.146238 -0.005507 -0.159081 -0.273250 -1.026824 -0.246616 0.280506 0.384692 -0.649800 0.591116 0.656332 -1.480716 -0.758053 -0.902397 -0.197274 -0.299720 -0.986705 0.783315 -0.134251 -2.432050 1.947327 0.719998 -0.294453 -0.116674 -1.079580 0.765915 -1.094543 -1.288024 0.645484 -0.647551 -0.116844 0.204470 0.098485 0.474339 0.555362 1.548636 -1.501116 -1.355779 1.087325 0.344866 1.454408 0.622893 0.498582 0.249394 0.029963 -0.196935 -0.766867 -1.137214 0.833939 0.426976 -1.372166 0.382355 -0.699816 1.216895 1.078725 -0.544015 -0.740627 -0.930924 0.687971 -0.849116 0.160915 0.788844 -0.024262 -1.667366 -0.287159 1.050183 -0.552447 -0.335367 -0.792596 -0.391905 -1.246050 -1.351774 0.260103 -0.156889 0.386134 0.691252 -0.395046 -0.489609 0.295373 0.033425 -0.108937 0.511914 1.277466 0.584042 -0.144115 0.429969 -1.501886 0.883511 -1.805206 -1.860049 1.145674 -1.061442 -1.231151 -0.427587 -0.150853 1.218390 -0.414508 0.267374 -0.365854 0.326753 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::max_size() const = -0.259213 0.088588 0.536903 -0.656534 0.553188 0.014424 0.177284 -0.171670 -0.544391 -0.437094 0.005716 -0.587248 -0.552758 0.772236 -0.362562 0.148416 0.947700 0.235316 -0.190841 -0.359704 0.606270 -0.391341 0.928095 0.779841 -0.857746 -0.023515 0.276152 0.664607 0.415877 0.560691 -0.127479 -0.339648 0.220207 -0.103546 0.332483 -0.585427 0.194842 0.090826 -0.136221 -1.055124 0.094897 -0.011928 0.059960 -0.031306 -0.080088 0.741767 0.718734 0.647059 -0.379296 0.123958 0.699655 0.237305 -0.015698 0.236214 0.025869 -0.121740 0.548988 -0.060382 -0.324427 -0.111957 -0.094563 -0.729054 0.102344 0.731930 0.964741 0.005086 0.083383 0.208951 0.023166 0.251469 0.256298 0.161404 0.151958 0.151548 0.412244 -0.642297 0.119854 -1.454017 -0.143733 -1.963120 -0.442577 -0.446301 0.525433 -0.006655 0.059487 0.088617 0.841202 0.236278 0.068366 0.502040 0.928762 -0.480458 -0.268771 -0.518551 -0.462150 0.359882 -0.463879 0.018962 0.241986 0.344820 -0.492590 -0.361859 0.257562 -0.017820 -0.295644 -0.088765 -0.145492 0.645184 -0.907718 -0.156897 -0.527290 0.148146 0.100544 -1.093672 0.120306 -0.499049 0.803165 -0.066646 -0.006716 -0.275788 0.090724 0.435764 -0.252794 -0.014337 -0.743127 0.677722 0.270155 0.029514 0.060304 0.006742 0.119788 0.489858 0.483034 -0.447779 -0.282462 0.089303 -0.459424 -0.014865 -0.651900 -0.109323 0.647632 -0.599692 0.146972 0.281615 -0.387322 -0.396396 0.344664 -0.233775 0.479840 1.584591 -0.057959 0.492364 0.281164 -0.675927 0.264021 -0.014758 -0.100258 0.345169 0.431684 0.173190 -0.484239 -0.672728 0.345955 0.680425 0.496591 -0.693269 -0.244363 -0.200049 -0.035541 -0.034057 -0.008622 0.275841 -0.341879 -0.381905 -0.220413 0.298616 0.952613 -0.130419 -0.561700 0.296175 0.237273 -0.352329 -0.674901 -0.207747 -0.043469 0.062084 0.023712 -0.047862 0.424538 0.937094 -1.803808 0.681359 0.078261 -0.057499 0.445632 -0.157867 -0.304425 -1.065722 0.122012 0.623671 0.698302 -0.042456 0.019041 0.152392 -0.698822 -0.008236 0.056788 0.344228 -0.258784 0.264918 0.193483 -0.445738 -0.576901 -0.275881 -0.085756 0.030876 -0.127427 0.354735 0.025469 -1.589597 0.842330 -0.367849 -0.209100 0.062147 -0.146756 0.434050 -0.751624 -0.759341 0.262907 -0.131567 -0.482105 -0.657141 0.142680 0.525071 -0.242246 0.077635 -0.357783 -0.737080 0.437362 -0.401668 0.309009 0.276659 0.273800 0.763146 0.185202 -0.183588 -0.684213 0.045242 0.118034 -0.309548 -0.376129 0.212637 -0.092545 0.518615 0.843821 -0.081261 -0.086626 0.171769 0.796014 -0.553686 -0.553060 0.517542 0.245151 -0.391108 0.567248 0.577418 -0.718202 -0.446881 -0.559411 -0.206222 -0.025878 -0.607311 0.376495 -0.282770 0.193513 0.350627 0.105909 -0.360763 0.487070 0.127923 -0.008727 -0.083583 0.982992 1.250875 -0.473903 0.174269 -0.619166 0.309363 -1.022347 -0.675877 0.142603 -0.016632 -0.138520 0.206719 -0.058998 0.597782 0.005966 0.039726 -0.140068 -0.009580 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.531006 0.764457 1.172356 -4.640936 4.621065 5.505256 1.284710 -2.829308 -3.628428 0.417708 0.769429 -6.225003 -1.863111 4.692148 -2.105362 3.140234 6.288677 -0.034767 -2.515682 0.581717 3.047317 3.233145 6.237127 5.086536 -3.854653 0.068352 -0.322329 0.726107 -1.255598 3.181488 -3.226144 -5.379427 1.489448 -1.711937 -1.081256 -0.709331 -0.328138 -0.943758 3.686016 -5.466540 1.297294 1.482513 -0.503152 -1.647506 -0.655803 -1.632580 5.882142 3.523135 0.026416 -0.816792 2.783179 2.403297 -0.511660 0.941855 2.136096 1.256070 3.061652 -0.195952 -1.855002 -3.065323 -1.260083 2.115249 -0.838118 4.545900 4.243769 1.710176 -0.977341 1.028592 0.874952 0.215554 0.840799 1.316345 0.582790 2.861826 0.847626 -1.074933 0.876111 -3.596977 -0.461410 -2.683081 -2.801433 -0.259615 0.943532 1.896368 2.792035 -2.116685 5.015189 -1.534086 -0.161107 1.651625 6.277671 -4.658605 -1.788272 -2.739882 -3.338717 0.031126 -1.342217 0.799359 -0.281161 -0.648482 -4.381463 -2.904635 0.183462 1.794241 -1.556683 -0.709399 1.692162 2.330189 -1.950874 -1.959118 -0.703612 3.086168 -0.475135 -7.073139 -4.206211 -1.955314 -0.611838 -0.271809 -2.743651 -5.777416 1.312080 2.579209 -3.018960 -2.209335 -1.409278 3.423306 3.440943 1.287636 0.381392 -0.713524 2.554206 6.635345 0.284434 -3.146534 0.811431 -1.407411 -0.454775 0.659606 -1.906265 -0.873190 -1.655749 -3.594766 1.429151 4.719967 -2.723160 1.199629 -1.203675 0.324906 1.178195 13.652124 -2.320397 5.029430 1.896458 -5.664058 2.290404 -1.587466 -1.499928 -1.104420 1.287643 2.345628 -5.429121 -3.981261 4.572688 4.875496 3.246151 -3.644774 2.450712 0.111373 -0.602698 -1.380101 0.618408 1.006662 0.205059 -3.577672 -1.654469 3.937146 9.619851 -1.631928 -4.820271 3.090550 2.205468 1.142114 -0.295587 -2.065386 -2.866125 0.935052 3.091132 0.132487 3.809260 6.151616 -7.298731 3.854814 0.288894 -2.644968 5.277070 0.676294 -3.709512 1.118204 -0.641103 4.454913 4.291034 0.007163 -0.079069 -0.479233 -3.502135 -0.646660 0.884680 0.938198 -1.984700 1.843467 1.830625 -4.772302 -2.320269 -2.039813 -1.321101 -1.729480 -3.125206 2.420716 -0.160698 -7.243956 6.166013 2.620781 -0.482506 0.215090 -2.976567 2.979510 -3.556363 -4.549856 2.505236 -1.339198 0.033360 0.871240 0.427416 2.087772 2.083041 4.825959 -4.829830 -5.423369 3.434890 0.994850 5.067698 1.819113 1.076078 0.728717 0.047450 -0.660607 -2.984158 -4.566187 2.767064 1.878478 -4.665564 0.189090 -2.185328 4.424205 3.023969 -1.332981 -3.129468 -3.503244 2.694851 -2.826593 1.244731 2.817958 -0.060407 -5.697081 -1.741901 3.804312 -2.194524 -0.808835 -2.251513 -0.756513 -4.096060 -4.227017 1.035582 0.071497 1.632952 1.392580 -0.970595 -1.242209 0.739760 0.743078 -0.388842 1.796213 4.432978 1.346125 -0.624079 0.903670 -4.827783 2.922086 -5.786962 -6.105671 3.563184 -3.366224 -4.372181 -1.102837 -0.290319 4.205218 -1.182136 1.508181 -0.751927 0.711654 +PE-benchmarks/aho-corasick-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.333429 0.140646 -1.099146 -3.526650 3.642990 2.970979 1.236075 -2.659759 -2.487933 0.135771 1.294706 -5.714330 -1.314405 2.327287 -1.731913 3.453664 4.991287 -0.720270 -1.945215 -0.413526 2.270123 3.301068 6.048452 4.474354 -3.187679 -0.054931 -0.287894 0.610334 -0.442285 -0.830891 -1.946885 -2.926876 1.999473 -2.997334 -1.496118 0.462215 0.012176 -1.364154 4.314846 -3.584019 0.988454 -0.855293 0.281740 -0.961775 -1.370279 0.254903 4.487726 3.205922 -0.132045 -0.317691 3.386090 1.329080 -0.165587 1.068704 0.203864 0.290309 1.386645 -0.370024 -1.212021 -3.587494 -0.650977 1.785946 -0.420677 3.661280 3.283914 1.251479 -1.192235 2.666829 1.913190 0.121994 1.229118 1.541951 0.201827 2.103081 1.123614 -2.636858 0.462527 -3.991120 -1.370423 -3.833372 -2.639901 -0.240053 0.656986 -0.541187 3.003289 0.578275 4.289032 -0.600905 0.083176 1.606780 4.158973 -4.369273 -1.793388 -1.661829 -1.712941 0.101867 -1.323694 1.549871 1.081091 0.853336 -3.707115 -1.398184 0.296597 1.313600 -1.381788 -2.250285 1.925856 0.166656 -1.073457 -1.738837 -1.167888 2.426504 0.040938 -6.128610 -2.374010 -0.929679 1.335602 -0.522992 -1.827505 -4.872193 0.229933 1.434672 -2.266712 -1.740813 -0.321727 1.503331 3.496485 1.812261 1.234527 0.363382 2.539519 7.152788 0.564753 -2.635549 -0.220618 -1.344834 -0.777036 1.132783 -1.179831 -1.176079 -0.194877 -3.715216 3.457656 4.107770 -2.178567 -0.211212 1.271975 0.481918 0.759140 8.910828 -1.222710 4.555981 2.697151 -3.966903 0.481748 -3.528102 -0.705276 -0.603626 0.833466 1.458294 -3.222885 -3.410360 3.736294 3.792179 2.532316 -3.804570 2.008169 1.284551 0.674193 -1.248128 -0.563333 1.512174 1.175308 -2.689986 -0.793683 4.353639 7.584611 -1.168886 -0.893594 2.718547 2.171366 1.322199 -1.086913 -2.434549 -2.985439 0.584714 3.388390 1.780970 2.236317 4.983207 -4.519105 2.041565 0.328988 -0.525943 3.572069 1.891689 -3.886335 0.208601 -0.294727 3.059806 2.491689 -0.921238 0.440841 -0.059604 -2.406211 -0.513883 1.058493 0.397100 -1.247309 1.330048 1.456497 -3.073757 -1.493636 -0.436037 -0.555229 -0.293693 -0.944924 2.628250 -0.292732 -5.739595 4.630331 1.163565 -1.925660 -0.000941 -3.605223 3.528881 -2.959245 -2.638071 2.595745 -1.901023 0.493639 0.401466 1.092378 1.174244 1.577102 4.461398 -3.881120 -3.428235 3.237410 1.082620 3.913286 1.640190 0.646480 0.546083 -3.530722 -0.588414 -2.741575 -2.820099 0.244990 1.521513 -4.505710 0.484484 -1.340866 3.552531 2.640842 -1.778122 -2.314816 -0.851338 1.224187 -4.231924 0.354659 2.067530 2.604345 -5.073344 0.042830 2.743423 -2.214246 -0.082293 -1.817156 -0.618669 -3.182359 -3.900801 1.048818 -0.016805 1.590891 1.423241 -0.786404 0.408837 1.161264 0.312717 0.746548 1.116083 3.333692 2.512456 0.064343 -0.988534 -4.568370 1.984151 -4.878170 -5.909495 4.084523 -1.920400 -3.776380 -0.942461 0.157581 4.170008 -1.159633 -0.423761 -1.944803 1.170871 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.527554 -0.012312 0.988322 -1.454098 1.531797 0.439207 0.328911 -0.330016 -1.133553 -0.494937 -0.227878 -0.647174 -0.738070 1.693051 -0.584656 1.022522 2.042162 0.422649 -0.399037 -0.680417 1.888787 -1.221103 1.844802 1.089917 -1.816855 -0.128843 0.958451 1.421080 0.863014 1.423431 -0.906163 -0.383413 0.411341 -1.206645 0.615769 -1.545847 0.653234 0.344006 0.198590 -2.126867 0.212527 -0.498252 -0.363022 -0.019260 -0.500352 1.311093 1.280853 1.390024 -1.058855 0.292919 1.539591 0.131243 -0.297718 0.570000 -0.114993 0.637575 1.044604 0.694344 -0.789840 -0.290125 -0.163862 -1.530846 0.742947 1.253270 1.923366 -0.300548 0.254564 1.298369 0.093942 0.259653 0.630334 0.185684 0.037445 -0.142075 1.152830 -2.321318 -0.131101 -3.320091 -0.504749 -3.947682 -0.764531 -1.198806 0.347817 -1.000406 0.692140 0.326034 1.783667 0.086909 0.188978 0.987754 1.751524 -1.566376 -0.570637 -1.822480 -0.891462 0.468034 -1.050463 -0.595137 1.088966 0.174557 -0.843772 -1.222543 0.765375 0.354795 -0.514430 -0.968552 -0.512822 1.661719 -1.750691 -1.238450 -1.316132 0.380261 -0.609747 -2.171549 0.418538 -0.822570 1.893799 -0.202439 0.447675 -1.348559 0.154399 1.760735 -0.584069 -0.723687 -0.133368 1.597973 0.900451 -0.058598 0.306210 -0.145663 0.086492 1.462614 1.972457 -0.851849 -0.968190 0.519424 -1.206068 -0.191601 -1.517137 -0.386132 1.330547 -1.604932 -0.023854 1.136239 -0.700316 -0.141414 2.094705 -0.366965 1.239961 4.030559 -0.034125 0.715613 0.202978 -1.580781 0.914917 0.112075 -0.217375 0.823675 0.779599 0.154981 -2.289655 -1.457299 0.624919 1.119174 1.080429 -2.043316 -1.232515 -1.049791 -0.010195 0.293386 -0.642374 0.973980 -0.764907 -0.727912 -0.378249 0.210740 2.714716 -0.941182 -1.438234 1.070863 0.326612 -1.498757 -2.458953 -0.806410 -0.892929 -0.180011 -0.044188 -0.235538 0.870112 2.002694 -3.629686 1.362289 -0.412226 -0.598355 1.065233 -0.323879 -0.221802 -2.329220 -0.068909 1.307863 1.647272 -0.117459 0.116348 0.307085 -1.325069 0.311564 0.099883 0.740040 -0.157011 0.343321 0.232198 -1.100909 -1.113641 0.007505 -0.354039 -0.202114 0.193873 0.541874 -0.381532 -3.434535 1.677344 -0.916104 -0.264771 1.078309 0.108637 1.285577 -1.438644 -1.716375 1.073726 0.441690 -0.254415 -1.324001 0.502917 1.434971 -0.230889 -0.103506 -0.756254 -2.523940 0.341642 -0.901440 0.467327 0.490704 0.543886 1.777971 -0.054348 -0.562757 -1.946001 -0.011489 -0.296923 -0.298964 -0.633998 -0.728506 0.051679 1.516323 1.597657 0.109909 0.249590 -0.027276 1.772610 -1.899329 -0.865228 1.295344 1.183155 -1.144492 0.697992 1.448564 -1.583395 -1.163851 -0.767885 -0.191219 0.004251 -1.161945 0.587610 -0.763088 0.350992 0.707083 0.402957 -0.493933 0.942852 0.370816 0.191615 -0.752356 2.247021 3.060327 -1.326948 -0.217884 -1.104829 0.754600 -2.121600 -1.421388 0.286132 0.303859 -0.347501 0.783493 0.689020 1.339798 -0.181484 0.093632 0.089460 -0.983139 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -4.867224 4.259273 6.710716 -13.731570 14.737133 17.906240 3.782484 -8.316869 -10.534994 0.198758 1.177343 -17.485229 -7.786157 16.091799 -6.986564 7.422407 19.932671 0.654950 -7.139076 1.602280 10.822804 7.195367 19.140470 15.830332 -13.351590 -0.069271 1.409367 3.525052 -2.897580 12.834069 -10.300376 -17.057484 4.539609 -4.285598 -1.670902 -3.802350 -0.416912 -3.352470 8.296298 -18.098882 3.240353 4.003745 -4.260809 -4.658972 -1.660220 -3.976371 19.647412 10.861132 -1.113903 -3.028518 8.414445 7.665976 -2.246229 2.961938 6.996882 3.596342 10.227610 1.130025 -6.109331 -7.957952 -4.391482 3.596773 -2.655910 14.855547 14.589575 5.516246 -1.633229 2.450975 0.359628 1.006980 1.359271 3.827593 3.444405 9.800321 3.808376 -3.749678 1.876498 -13.836424 -1.797423 -10.476198 -8.541937 -3.196048 2.288461 5.256614 7.843004 -6.926242 15.825153 -3.341939 0.198706 6.270734 21.911079 -14.459901 -5.304449 -10.061852 -11.465343 0.519725 -4.998181 2.801269 -1.719519 -3.236966 -13.517775 -11.609092 0.867635 5.372809 -4.829895 -1.938706 3.242921 10.064771 -7.668248 -5.574928 -3.806363 7.147952 -1.919392 -22.668463 -13.124981 -6.613107 0.660294 -0.051550 -7.561508 -17.576982 4.486709 10.396320 -8.685069 -7.624026 -3.414547 12.302245 10.395381 2.800472 0.403087 -2.763548 7.476640 18.521002 3.596491 -8.701199 2.018689 -4.444042 -2.776757 0.790579 -7.189803 -1.513199 -3.699360 -10.478869 2.487852 14.830675 -8.388133 2.676442 -2.942195 -1.127637 5.374883 44.549369 -7.282577 14.191043 4.026120 -18.859294 8.145499 -3.105113 -5.485818 -2.449516 5.189036 8.175938 -19.069231 -12.586169 13.957846 15.303523 9.774605 -12.261170 5.977737 -1.753982 -2.737999 -4.941562 2.419524 3.290372 -1.486448 -10.452752 -5.594448 11.875708 29.570241 -6.631143 -19.036511 9.651898 5.578141 2.887047 -2.625688 -5.785012 -6.641514 2.842925 8.973971 -1.288574 12.214674 19.570652 -25.828564 12.869899 0.571676 -9.329612 16.075393 0.748860 -10.033129 2.781717 -0.058910 15.607203 13.470063 2.155343 -1.681240 -2.218592 -12.025136 -1.797901 2.798878 4.709341 -6.370931 6.302466 5.462437 -15.918496 -9.807538 -7.580924 -4.246806 -6.153244 -10.393295 6.652266 -1.889012 -25.360672 20.685083 7.156262 -0.506418 0.889302 -8.294953 8.815759 -11.883022 -16.841243 7.637558 -3.836381 -1.366953 1.113005 0.944785 7.603526 6.590271 13.148620 -14.903919 -19.006309 10.066496 2.212045 14.937330 5.359675 5.535150 5.706633 2.683715 -3.045943 -11.106733 -13.386162 11.118551 5.148736 -14.185283 -1.208828 -6.569840 13.964979 11.187064 -3.842278 -9.021360 -11.940202 10.198270 -9.164564 2.212482 9.546381 0.550580 -16.704898 -5.396239 12.248778 -6.916817 -4.983357 -7.238669 -2.855993 -11.904315 -14.030180 2.451710 -1.638673 4.448887 5.286765 -2.419376 -5.228203 2.866227 2.358302 -0.684125 4.781440 14.089512 7.220771 -5.185791 3.831425 -14.634104 9.858583 -19.274061 -19.085803 10.148479 -10.090324 -10.808110 -2.879554 -1.229273 11.944270 -3.479396 4.794660 -1.003478 0.555381 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy(int**, int**, int**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__miter_base(int**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.094004 0.019219 0.230993 -0.225112 0.187042 -0.030752 0.085428 -0.093290 -0.252681 -0.122523 -0.046565 -0.124925 -0.094709 0.319760 -0.118501 0.192414 0.502530 0.239633 -0.038493 -0.218610 0.268158 -0.426262 0.432342 0.459415 -0.369990 0.034875 0.228867 0.286762 0.191823 0.338604 -0.233154 -0.057474 0.126169 -0.274716 0.177918 -0.444607 0.047246 0.115670 0.056593 -0.621531 0.040546 -0.138967 0.153557 -0.010648 -0.043617 0.287061 0.307364 0.264572 -0.109584 0.190091 0.261261 0.026773 0.061662 0.103396 0.112779 0.246852 0.360646 0.052262 -0.134540 0.045806 -0.037519 -0.415352 0.163016 0.303221 0.438937 -0.028649 0.034712 0.101136 0.004142 0.036669 0.142589 0.078950 -0.083405 0.017798 0.154701 -0.644639 0.168900 -0.779599 -0.105484 -0.950734 -0.224235 -0.250069 0.136642 -0.170907 0.214451 0.210247 0.384848 0.010318 0.109316 0.033402 0.362031 -0.385720 -0.129788 -0.150762 -0.141072 0.128338 -0.193763 -0.075030 0.194914 0.030762 -0.204689 -0.301452 0.407911 0.130580 -0.161329 -0.082359 -0.053898 0.307065 -0.446607 -0.331187 -0.336288 -0.085632 -0.163594 -0.420870 0.321795 -0.258513 0.419796 0.049303 -0.045832 -0.368465 0.058379 0.349028 -0.068463 -0.174062 -0.222270 0.316947 0.094680 -0.049694 0.044056 -0.072181 -0.024412 0.357065 0.381243 -0.209965 -0.104629 0.171709 -0.365863 -0.061602 -0.342645 -0.174113 0.262581 -0.349164 -0.045952 0.137273 -0.218569 -0.002949 0.525284 -0.026281 0.226708 0.785391 -0.013372 0.185301 0.124011 -0.341305 0.195407 -0.011175 -0.000115 0.199684 0.292826 0.058845 -0.512820 -0.296735 0.006983 0.318142 0.226080 -0.344711 -0.409065 -0.239731 0.004376 0.171450 -0.025376 0.059458 -0.148025 -0.212432 -0.066191 -0.015831 0.594363 -0.164054 -0.114908 0.060596 -0.085086 -0.346777 -0.633221 -0.106649 -0.265682 0.040668 -0.227608 -0.040820 0.129107 0.389632 -0.852524 0.348853 -0.277628 -0.134836 0.304871 -0.049532 -0.079772 -0.629323 0.058994 0.217252 0.411446 -0.041817 0.072536 0.153074 -0.337350 -0.038135 -0.075236 0.205007 -0.183565 0.176354 0.134165 -0.342014 -0.203292 0.014296 0.068804 -0.196446 0.049255 0.153905 0.064642 -0.706442 0.303600 -0.134490 -0.129007 0.287046 0.057879 0.140413 -0.368228 -0.332601 0.155942 0.097753 0.026009 -0.261081 0.000426 0.304311 -0.182946 -0.141232 -0.150793 -0.364421 0.067760 -0.219567 0.110135 0.159668 0.045596 0.345872 0.056895 -0.109158 -0.327838 0.201510 -0.248805 -0.238879 -0.077018 -0.127425 -0.094124 0.304681 0.510783 0.091867 0.101830 0.155542 0.455077 -0.362521 -0.187118 0.244811 0.236619 -0.112639 0.160108 0.258484 -0.418829 -0.233077 -0.140303 -0.137935 0.129883 -0.190660 0.258740 -0.250108 0.106671 0.118972 0.045783 -0.097718 0.255335 0.046769 0.056021 -0.063588 0.450504 0.573211 -0.193256 0.004564 -0.211116 0.067630 -0.436274 -0.177557 -0.066334 0.242864 -0.179586 0.138090 0.104633 0.295406 0.036230 0.005971 0.008597 -0.171667 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_base(int**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.449509 0.049402 0.452496 -1.067446 0.848479 0.312131 0.329773 -0.414432 -0.844442 -0.422050 0.053123 -0.854037 -0.535591 1.178258 -0.485025 0.638435 1.771441 0.406164 -0.302685 -0.507652 1.107846 -0.576300 1.634502 1.517581 -1.327312 -0.066492 0.669219 0.823938 0.489292 0.544021 -0.415500 -0.577520 0.478439 -0.910414 0.295408 -0.996665 0.227189 0.090635 0.449951 -1.838321 0.201218 -0.434559 -0.017189 -0.177271 -0.324185 0.686269 1.227935 1.063550 -0.572757 0.241802 1.105928 0.308697 -0.141275 0.336485 0.126926 0.300999 0.532668 0.323180 -0.402368 -0.310333 -0.142747 -0.758045 0.358514 1.209945 1.471258 0.084124 0.050326 0.624413 0.199032 0.207563 0.385279 0.291629 0.044776 0.241493 0.682044 -1.811323 0.026478 -2.740729 -0.350241 -2.945146 -0.799594 -0.620813 0.514538 -0.581025 0.622514 0.369766 1.343522 0.093094 0.237375 0.812717 1.464004 -1.169213 -0.501246 -0.858174 -0.731156 0.475566 -0.666960 0.116567 0.611778 0.136299 -0.940415 -0.920609 0.633792 0.380025 -0.507075 -0.717932 0.066754 0.924325 -1.096134 -0.781695 -0.861566 0.253429 -0.241704 -1.850255 0.174951 -0.795116 1.359358 -0.001032 -0.258270 -1.199356 0.090985 0.976363 -0.416399 -0.567835 -0.313383 0.965278 0.696965 0.157187 0.213900 -0.091751 0.253843 1.502083 1.051345 -0.750665 -0.296137 0.165978 -0.911500 -0.051105 -1.054889 -0.416085 0.903737 -1.142997 0.284210 0.839870 -0.744804 -0.396792 1.525866 -0.192401 0.725036 3.395528 -0.099748 0.968788 0.615941 -1.266026 0.485587 -0.329005 -0.155077 0.476792 0.820525 0.298349 -1.622735 -1.088108 0.498189 1.200178 0.873103 -1.340754 -0.761326 -0.406893 -0.048526 0.031234 -0.153207 0.329915 -0.319379 -0.756205 -0.278686 0.768494 2.003746 -0.539174 -0.694426 0.459184 0.523878 -0.596722 -1.528347 -0.475438 -0.847111 0.169481 0.163006 0.005644 0.736669 1.553684 -2.778469 1.001743 -0.323146 -0.184038 0.805390 0.207375 -0.726928 -1.663606 0.250597 1.002345 1.215373 -0.151966 0.238022 0.305844 -1.099795 -0.101824 0.110868 0.511687 -0.484304 0.539689 0.274656 -0.966043 -0.822314 0.032055 -0.179017 -0.384291 0.009782 0.636631 -0.039601 -2.427578 1.386699 -0.324346 -0.445269 0.484085 -0.435112 0.957963 -1.309860 -1.315094 0.709451 0.025285 -0.108647 -0.661825 0.168295 0.958338 -0.120490 0.253867 -0.730909 -1.452805 0.606341 -0.418049 0.770690 0.516009 0.291887 1.208895 -0.443697 -0.331857 -1.289151 -0.142087 -0.085445 -0.165200 -0.921385 -0.450165 -0.269369 1.090013 1.428510 -0.150769 -0.242536 0.200741 1.238561 -1.436744 -0.490521 0.804502 0.953531 -0.884489 0.450943 0.955401 -1.294235 -0.571176 -0.675966 -0.226800 -0.079543 -1.070369 0.621101 -0.491084 0.456090 0.441204 0.096550 -0.162625 0.726730 0.289639 0.340303 0.007219 1.346920 1.935090 -0.720588 -0.248602 -1.115067 0.461164 -1.705549 -1.334013 0.393615 0.126743 -0.532272 0.242522 0.129733 1.125910 -0.068819 0.053732 -0.178538 -0.158020 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.116891 -0.861914 -0.104587 -2.815243 2.050643 0.888064 0.853362 -1.094547 -2.367907 -0.305383 0.640003 -2.394337 -0.371316 2.546771 -0.915183 2.485844 3.913357 0.661815 -0.981249 -0.695538 2.586977 -0.395155 3.632646 3.208075 -2.505978 -0.266382 0.455172 1.523490 0.450614 0.297131 -0.658365 -1.323497 1.024675 -2.836009 -0.287399 -1.737088 0.568118 0.695391 2.325300 -3.705250 0.805827 -0.766186 0.346681 -0.644737 -1.075407 0.256165 2.049212 2.477692 -1.100682 0.653926 2.579045 0.472243 -0.455404 0.787751 0.093081 0.883551 0.172216 0.491595 -0.954007 -1.333029 -0.202899 -0.449906 1.044936 2.385145 2.904349 0.252528 -0.159061 1.924969 1.014688 0.383183 1.419059 0.475848 -0.625476 -0.098495 1.344036 -3.907517 -0.318630 -5.582268 -0.683539 -5.188954 -1.792977 -0.405970 1.436098 -0.893964 1.754702 0.704058 2.744276 -0.386540 0.056437 2.113360 2.608570 -2.613720 -1.313155 -1.964730 -1.726960 0.947826 -1.222521 0.088707 1.568310 0.602606 -2.231938 -1.526777 1.015387 1.149123 -0.958773 -2.337295 0.847366 1.579183 -1.643100 -2.267339 -0.939898 1.961801 -0.605654 -3.956222 -0.153435 -1.687224 1.982818 -0.215195 -0.838501 -2.861736 0.002671 1.536612 -1.219667 -1.261149 -0.304499 1.571490 1.766932 0.827896 0.692447 -0.084088 0.579833 4.200460 1.365060 -2.036522 -0.370081 0.281391 -1.297038 0.470159 -2.083184 -1.360110 1.268425 -2.872679 1.106615 2.014635 -1.668278 -0.645015 3.122334 0.527050 1.087503 7.601438 0.021913 2.779439 2.027361 -2.496715 1.113210 -1.145701 0.078734 0.884122 1.429246 -0.050631 -3.374429 -2.534584 1.270607 2.491772 2.152168 -2.771710 -1.541473 -0.418787 0.079052 0.259440 -0.691334 0.843917 -0.141819 -1.845691 -0.436318 2.126720 4.738383 -0.877850 -0.682660 1.420680 1.994796 -1.277851 -3.063162 -1.483702 -2.946782 0.327185 0.914611 0.446450 1.691603 3.519188 -5.122721 1.918722 -0.478869 0.161532 1.675942 1.034161 -2.322149 -3.466347 -0.265121 1.709827 2.822137 -0.933453 0.925649 1.031135 -2.057784 -0.141609 0.469337 0.362247 -0.779212 0.973129 0.204674 -1.770900 -1.115839 0.743310 -1.005116 -0.684279 0.185194 1.627645 0.276555 -4.161280 2.579594 -0.339454 -1.167235 1.279248 -1.273086 2.780002 -2.553278 -2.399190 1.944246 0.156124 0.309508 -0.910812 0.747358 1.909256 0.100095 1.080101 -1.551200 -2.914226 1.468184 -0.590816 2.084070 1.106541 -0.206275 1.559921 -1.718841 -0.662548 -2.546263 -1.118791 -0.579675 0.226002 -2.458767 -1.125745 -0.585797 2.588870 2.295197 -0.168261 -1.295034 0.366784 2.448096 -3.041431 -0.486963 1.807639 1.531298 -2.540595 0.606332 2.312618 -3.017798 -0.362765 -1.336488 0.200245 -0.537675 -2.208626 1.518568 -0.083006 1.406904 0.276890 0.205832 0.329257 1.347010 0.982155 0.868513 0.210086 3.137059 2.946531 -0.668622 -1.172832 -2.648016 0.780398 -3.447680 -3.190530 1.300034 0.173600 -2.095651 0.576368 0.460726 2.975072 -0.324702 0.320573 -0.639671 -0.007026 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.171884 0.050852 0.341734 -0.393905 0.317832 0.078100 0.123261 -0.195829 -0.347576 -0.158248 -0.050141 -0.168938 -0.147673 0.499203 -0.218607 0.269230 0.764142 0.295944 -0.088650 -0.303474 0.489791 -0.524849 0.669199 0.669323 -0.581636 -0.004320 0.441817 0.406399 0.314245 0.438573 -0.355937 -0.115276 0.204254 -0.454548 0.227288 -0.623860 0.097837 0.095820 0.138491 -0.856437 0.064975 -0.323967 0.034488 -0.034839 -0.108680 0.405426 0.493706 0.414699 -0.216748 0.184873 0.441672 0.103551 -0.026209 0.146545 0.142900 0.335987 0.478542 0.230044 -0.150936 -0.005377 -0.072776 -0.495366 0.240901 0.503120 0.658381 -0.003478 0.080206 0.217743 0.022768 0.049250 0.173025 0.104188 -0.065267 0.090497 0.261726 -1.021463 0.157080 -1.275295 -0.185902 -1.367077 -0.298250 -0.370101 0.088795 -0.426243 0.337057 0.306068 0.563146 0.043168 0.153567 0.151650 0.596421 -0.592019 -0.190800 -0.301587 -0.275993 0.164728 -0.303223 -0.032325 0.280831 -0.016114 -0.329161 -0.517455 0.492872 0.230569 -0.222827 -0.227787 -0.058799 0.474202 -0.585136 -0.460047 -0.464277 -0.099946 -0.257764 -0.704027 0.321455 -0.415666 0.752107 0.023791 -0.072378 -0.617187 0.071202 0.608169 -0.122057 -0.324088 -0.095775 0.462107 0.239539 -0.023844 0.037332 -0.147655 0.002357 0.583609 0.634764 -0.306078 -0.151837 0.169874 -0.564533 -0.106141 -0.530296 -0.201820 0.437100 -0.491410 -0.020253 0.335946 -0.317145 -0.051187 0.950593 -0.089355 0.368931 1.432222 -0.045679 0.297661 0.168396 -0.567379 0.232604 -0.042446 -0.029247 0.273769 0.413396 0.116507 -0.906467 -0.456678 0.085536 0.476458 0.345931 -0.616702 -0.565659 -0.357100 -0.035974 0.168578 -0.090443 0.102359 -0.256508 -0.312201 -0.127340 0.098932 0.908025 -0.309831 -0.301195 0.128063 -0.038924 -0.462813 -0.899920 -0.185298 -0.376366 0.096651 -0.175534 -0.070629 0.268244 0.616641 -1.328159 0.480977 -0.373528 -0.212515 0.423591 0.002868 -0.160158 -0.813162 0.141500 0.394711 0.563648 -0.023640 0.089839 0.203932 -0.500038 -0.048899 -0.067109 0.319066 -0.246826 0.237134 0.232293 -0.533197 -0.371679 0.050872 0.065232 -0.293130 0.075305 0.231227 -0.078948 -1.157393 0.544650 -0.175405 -0.156286 0.392944 -0.013015 0.287094 -0.575853 -0.569038 0.287175 0.156347 0.096043 -0.357267 0.030873 0.487968 -0.170778 -0.054489 -0.302258 -0.669727 0.083118 -0.294844 0.219476 0.210516 0.145471 0.590455 -0.120099 -0.122018 -0.613904 0.203786 -0.217200 -0.193254 -0.245179 -0.288524 -0.109231 0.492492 0.719181 0.041027 0.098385 0.164519 0.640851 -0.656876 -0.227481 0.345716 0.541057 -0.274925 0.167872 0.378168 -0.599655 -0.368687 -0.186110 -0.221148 0.107103 -0.370987 0.328592 -0.334112 0.188278 0.185438 0.105295 -0.108133 0.353887 0.088327 0.160810 -0.044364 0.588696 0.985513 -0.353428 -0.090889 -0.369750 0.163415 -0.705164 -0.422098 0.020364 0.223973 -0.215445 0.182278 0.125045 0.473775 0.016962 0.035194 0.046417 -0.241725 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.479063 0.046100 0.457175 -1.170073 0.923984 0.448012 0.368742 -0.520663 -0.914311 -0.401128 0.105331 -1.007672 -0.554794 1.279645 -0.535344 0.744776 1.886788 0.393321 -0.379853 -0.503158 1.151633 -0.440791 1.776239 1.624535 -1.403673 -0.063286 0.622281 0.779145 0.502479 0.562396 -0.448814 -0.683388 0.562443 -0.930387 0.278421 -0.970719 0.213697 0.073241 0.572171 -1.932180 0.233555 -0.392056 0.021264 -0.215614 -0.324000 0.661723 1.327808 1.140465 -0.518377 0.226133 1.148742 0.371103 -0.138461 0.356193 0.190178 0.309848 0.599949 0.231439 -0.434952 -0.382986 -0.158944 -0.661598 0.312365 1.311107 1.559228 0.112320 0.030183 0.654110 0.261940 0.218655 0.414298 0.321642 0.058127 0.315533 0.650718 -1.856525 0.058270 -2.753273 -0.367167 -2.979852 -0.862747 -0.595287 0.533837 -0.521540 0.692481 0.265306 1.431590 0.094479 0.194915 0.770852 1.592818 -1.278246 -0.536876 -0.886549 -0.726652 0.459870 -0.704251 0.169246 0.625672 0.095834 -1.036304 -0.931743 0.638605 0.420101 -0.543773 -0.718802 0.125544 0.979639 -1.094834 -0.820003 -0.812269 0.341300 -0.263417 -2.000793 0.176763 -0.849561 1.282831 -0.016013 -0.310179 -1.313539 0.106913 1.013338 -0.481138 -0.630482 -0.419280 1.047475 0.802721 0.205483 0.203689 -0.055779 0.316523 1.670749 0.990162 -0.824634 -0.253247 0.112121 -0.884028 0.004416 -1.085142 -0.437908 0.878637 -1.209635 0.281262 0.942159 -0.790277 -0.321282 1.480968 -0.143441 0.724422 3.642210 -0.150549 1.094534 0.684153 -1.373632 0.515240 -0.385258 -0.169161 0.439595 0.829692 0.324320 -1.758415 -1.180297 0.596477 1.306620 0.932717 -1.410599 -0.678269 -0.400834 -0.086070 -0.048735 -0.139746 0.346189 -0.302952 -0.832100 -0.311846 0.857857 2.194808 -0.586448 -0.698668 0.502150 0.566919 -0.539742 -1.496625 -0.536788 -0.899744 0.208237 0.211791 0.057084 0.822671 1.669961 -2.843251 1.086874 -0.307569 -0.239644 0.941181 0.228161 -0.830158 -1.625737 0.229404 1.075422 1.276035 -0.195339 0.267973 0.322220 -1.181894 -0.118367 0.104902 0.498484 -0.514798 0.537577 0.341465 -1.019415 -0.847243 0.023720 -0.193690 -0.433834 -0.049475 0.706139 0.043821 -2.531709 1.497018 -0.261117 -0.474486 0.487305 -0.525397 1.046404 -1.380459 -1.348068 0.740980 -0.006782 -0.106769 -0.639309 0.180680 0.991086 -0.142100 0.412082 -0.846218 -1.517024 0.679065 -0.410996 0.870027 0.556551 0.307742 1.173588 -0.480966 -0.339414 -1.317406 -0.314874 -0.051564 -0.085815 -1.035241 -0.372172 -0.309892 1.184379 1.467458 -0.176274 -0.349330 0.154032 1.247594 -1.546404 -0.435085 0.853218 0.972448 -1.015582 0.390771 1.015793 -1.331385 -0.556167 -0.698934 -0.276205 -0.175871 -1.152275 0.663509 -0.443960 0.518754 0.420983 0.088510 -0.169216 0.752351 0.294234 0.310048 0.074079 1.423309 1.929012 -0.702283 -0.270445 -1.226854 0.536679 -1.802172 -1.464792 0.493635 0.040607 -0.650683 0.213439 0.113362 1.225603 -0.070184 0.072204 -0.222476 -0.119823 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.264659 -0.878422 -0.081187 -3.328381 2.428168 1.567468 1.048206 -1.625702 -2.717255 -0.200769 0.901042 -3.162512 -0.467334 3.053709 -1.166778 3.017547 4.490091 0.597599 -1.367090 -0.673069 2.805911 0.282392 4.341331 3.742844 -2.887781 -0.250350 0.220485 1.299526 0.516550 0.389008 -0.824935 -1.852837 1.444696 -2.935875 -0.372337 -1.607357 0.500658 0.608423 2.936398 -4.174545 0.967510 -0.553675 0.538947 -0.836455 -1.074480 0.133438 2.548576 2.862263 -0.828786 0.575582 2.793117 0.784271 -0.441339 0.886291 0.409340 0.927796 0.508620 0.032887 -1.116926 -1.696290 -0.283884 0.032332 0.814193 2.890956 3.344197 0.393509 -0.259778 2.073454 1.329227 0.438642 1.564153 0.625917 -0.558719 0.271704 1.187402 -4.133524 -0.159669 -5.644989 -0.768173 -5.362488 -2.108742 -0.278336 1.532594 -0.596536 2.104535 0.181760 3.184615 -0.379615 -0.155866 1.904034 3.252641 -3.158885 -1.491306 -2.106605 -1.704441 0.869345 -1.408977 0.352102 1.637779 0.400280 -2.711380 -1.582450 1.039450 1.349502 -1.142266 -2.341646 1.141313 1.855753 -1.636599 -2.458881 -0.693418 2.401154 -0.714218 -4.708909 -0.144375 -1.959452 1.600186 -0.290103 -1.098051 -3.432654 0.082312 1.721490 -1.543364 -1.574384 -0.833981 1.982477 2.295716 1.069377 0.641392 0.095772 0.893232 5.043791 1.059148 -2.406368 -0.155633 0.012105 -1.159680 0.747764 -2.234447 -1.469229 1.142924 -3.205871 1.091878 2.526079 -1.895640 -0.267463 2.897840 0.771853 1.084431 8.834847 -0.232095 3.408166 2.368422 -3.034747 1.261475 -1.426970 0.008313 0.698139 1.475079 0.079224 -4.052828 -2.995532 1.762049 3.023986 2.450240 -3.120931 -1.126187 -0.388495 -0.108664 -0.140403 -0.624029 0.925289 -0.059682 -2.225166 -0.602119 2.573537 5.693691 -1.114222 -0.703874 1.635511 2.210001 -0.992952 -2.904552 -1.790453 -3.209945 0.520969 1.158537 0.703647 2.121614 4.100574 -5.446631 2.344378 -0.400985 -0.116499 2.354900 1.138093 -2.838297 -3.277000 -0.371084 2.075210 3.125447 -1.150318 1.075404 1.113016 -2.468280 -0.224326 0.439505 0.296232 -0.931682 0.962569 0.538717 -2.037760 -1.240486 0.701636 -1.078481 -0.931990 -0.111090 1.975188 0.693668 -4.681935 3.131191 -0.023311 -1.313319 1.295349 -1.724509 3.222207 -2.906275 -2.564063 2.101892 -0.004211 0.318899 -0.798232 0.809282 2.072996 -0.007956 1.871173 -2.127745 -3.235324 1.831805 -0.555553 2.580757 1.309251 -0.126999 1.383386 -1.905184 -0.700334 -2.687536 -1.982726 -0.410266 0.622925 -3.028046 -0.735781 -0.788412 3.060696 2.489940 -0.295786 -1.829002 0.133240 2.493262 -3.589733 -0.209779 2.051217 1.625887 -3.196061 0.305476 2.614580 -3.203548 -0.287721 -1.451328 -0.046784 -1.019315 -2.618155 1.730608 0.152615 1.720226 0.175781 0.165633 0.296301 1.475112 1.005131 0.717239 0.544384 3.519002 2.916142 -0.577094 -1.282048 -3.206951 1.157972 -3.930794 -3.844423 1.800137 -0.257080 -2.687709 0.430952 0.378874 3.473535 -0.331529 0.412931 -0.859362 0.183957 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::front() = -0.236992 0.277955 0.470625 -0.393751 0.540527 0.200058 0.229451 -0.044235 -0.430293 -0.489912 -0.105979 -0.636905 -0.742311 0.788557 -0.312233 0.076512 1.081401 0.363831 -0.075366 -0.213311 0.375015 -0.314512 0.998383 0.905297 -0.746020 0.019147 0.242401 0.440114 0.026550 0.728857 -0.208223 -0.748346 0.389055 -0.007516 0.313336 -0.549985 0.061746 -0.040904 -0.249651 -1.179447 0.058410 0.205286 0.026079 -0.097430 -0.023586 0.501522 0.950481 0.598174 -0.165371 0.138119 0.383869 0.285393 0.066542 0.252047 0.211429 0.003260 0.350946 -0.266562 -0.476058 -0.038159 -0.214216 -0.787484 -0.164626 0.700818 0.906674 0.082267 0.042148 0.002154 -0.254781 0.240112 0.096941 0.183045 0.375618 0.274310 0.350445 -0.322123 -0.001129 -1.076751 -0.231738 -1.825971 -0.529362 -0.565266 0.524373 0.282248 0.144082 -0.102355 0.860437 0.129330 0.230977 0.372586 1.137750 -0.621936 -0.332213 -0.467502 -0.255609 0.311930 -0.456768 0.036305 0.170696 0.028315 -0.612469 -0.523099 0.324093 0.014491 -0.281419 -0.063285 -0.112279 0.687778 -0.946085 -0.186323 -0.833545 -0.086879 0.084701 -1.110766 0.043934 -0.211607 0.502983 0.228336 -0.215490 -0.447868 0.274821 0.469964 -0.214069 -0.204094 -0.586462 0.754112 0.132186 -0.061076 0.160357 0.084680 0.165293 0.646049 0.591489 -0.316758 -0.148560 0.077730 -0.453231 -0.074213 -0.523904 -0.155296 0.303544 -0.642000 0.144466 0.349209 -0.499534 -0.291380 -0.098136 -0.280875 0.524746 1.446869 -0.226735 0.468014 0.196329 -0.841356 0.387026 -0.152802 -0.222132 0.099357 0.562569 0.393394 -0.405561 -0.591198 0.370966 0.793659 0.518461 -0.567129 -0.059280 -0.294514 0.090002 -0.149874 0.164625 0.275785 -0.141106 -0.482801 -0.195411 0.345015 1.082981 -0.302646 -0.685756 0.262707 0.150083 -0.028608 -0.544028 -0.154074 -0.068645 0.039237 0.081529 -0.114134 0.306864 0.947968 -1.526655 0.758218 -0.070034 -0.232868 0.541382 -0.102559 -0.272938 -0.736384 0.190662 0.780985 0.783671 0.161664 0.048130 -0.055883 -0.724477 -0.121570 0.043719 0.506697 -0.296700 0.379434 0.137461 -0.656268 -0.635245 -0.456831 0.008225 -0.243357 -0.249948 0.324785 0.350527 -1.578694 0.961120 -0.156592 -0.235310 0.036607 -0.060059 0.373639 -0.784879 -0.953030 0.251968 -0.302683 -0.583135 -0.378072 0.001701 0.468799 -0.089158 0.012190 -0.275508 -0.715961 0.627910 -0.041764 0.466557 0.306774 0.372599 0.861115 0.377345 -0.383736 -0.463341 -0.214522 0.273108 -0.498557 -0.341119 0.173578 -0.221620 0.582306 1.025241 -0.019106 -0.182928 -0.101440 0.796056 -0.563166 -0.370067 0.650848 0.196913 -0.255440 0.411225 0.687098 -0.671622 -0.564359 -0.520447 -0.101157 -0.094853 -0.681426 0.183473 -0.587229 0.105777 0.461602 -0.038351 -0.462041 0.357784 0.091137 -0.056345 -0.072872 0.866593 0.941195 -0.588176 0.387304 -0.585116 0.325325 -1.060597 -0.665422 0.113236 0.007303 -0.183055 0.087865 -0.038688 0.405620 -0.086038 0.002611 -0.222240 -0.107953 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.123077 0.225392 0.274166 -0.343964 0.398271 0.352908 0.086009 -0.235578 -0.231895 -0.130017 -0.067307 -0.282133 -0.207557 0.425753 -0.234330 0.174848 0.587781 0.105968 -0.070452 -0.118856 0.293246 -0.081703 0.575746 0.485162 -0.444234 0.015046 0.329864 0.187070 0.018350 0.479682 -0.325322 -0.459486 0.158813 -0.166888 0.068299 -0.308627 0.015340 -0.075509 0.137863 -0.601169 0.050550 -0.142102 -0.153359 -0.066477 -0.066159 0.019557 0.576456 0.312948 -0.077722 0.048001 0.297870 0.321537 -0.089772 0.107172 0.187172 0.208395 0.377282 -0.031450 -0.117961 -0.085157 -0.106023 -0.132396 -0.015081 0.451651 0.462427 0.079170 0.025860 0.095506 -0.119323 0.030982 0.014166 0.111206 0.020472 0.298133 0.106285 -0.474466 0.082230 -0.715441 -0.124626 -0.696368 -0.238319 -0.269197 -0.065989 -0.027399 0.271790 0.135215 0.478559 0.002333 0.130304 0.126139 0.614164 -0.469253 -0.131095 -0.225867 -0.273939 0.047377 -0.188663 0.048577 -0.096678 -0.065971 -0.307730 -0.463030 0.222731 0.163024 -0.163892 -0.140144 -0.008807 0.320688 -0.461051 -0.241821 -0.309973 -0.005395 -0.173105 -0.624191 -0.124869 -0.216698 0.427489 0.003403 -0.128494 -0.587388 0.132515 0.491765 -0.164270 -0.274039 -0.029161 0.297246 0.260119 0.004732 0.012275 -0.156042 0.143903 0.566946 0.348648 -0.214198 -0.051505 -0.016011 -0.232170 -0.108298 -0.278306 -0.037171 -0.019142 -0.349980 0.127931 0.441037 -0.246808 -0.040153 0.271628 -0.199386 0.278206 1.228205 -0.192774 0.270785 0.064166 -0.592897 0.061244 -0.126843 -0.169219 0.014792 0.234800 0.257837 -0.539112 -0.337398 0.257156 0.416757 0.270542 -0.362706 -0.120955 -0.198281 -0.076401 0.007113 0.017540 0.075441 -0.193748 -0.275885 -0.162404 0.187213 0.815376 -0.187613 -0.376127 0.196732 0.077469 -0.115037 -0.278253 -0.130853 -0.223321 0.103138 0.158311 -0.099602 0.264472 0.521088 -1.011992 0.374145 -0.159526 -0.277536 0.307323 0.027872 -0.142004 -0.150445 0.119612 0.461335 0.398838 0.023099 0.153665 -0.020467 -0.372552 -0.063271 0.006167 0.266425 -0.230909 0.184138 0.276215 -0.597106 -0.352425 -0.059692 0.021293 -0.236952 -0.149500 0.162622 -0.060916 -1.020900 0.592305 0.044247 -0.034330 0.178952 -0.123539 0.298742 -0.422547 -0.513160 0.241659 -0.029091 0.071742 0.014631 -0.013120 0.320552 0.027687 0.247164 -0.324203 -0.487114 0.089253 0.020093 0.260350 0.165815 0.246475 0.359340 -0.230821 -0.075573 -0.376703 -0.111402 0.198348 -0.032721 -0.257016 -0.037591 -0.150514 0.406864 0.515752 -0.038083 -0.122636 -0.083495 0.381567 -0.390651 0.025719 0.260562 0.332117 -0.369678 -0.049314 0.305171 -0.276074 -0.296537 -0.165638 -0.057310 -0.153427 -0.387590 0.108994 -0.228803 0.102211 0.249481 0.008481 -0.220212 0.197696 0.035473 0.081766 0.054117 0.349084 0.483251 -0.231001 0.077169 -0.334159 0.169371 -0.590628 -0.487865 0.138269 -0.097346 -0.183942 -0.004102 -0.105349 0.336666 -0.085343 0.212705 0.069908 -0.142053 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::pop_front() = -1.083481 2.092742 2.701119 -3.091656 4.150992 4.510596 0.850438 -1.187822 -1.936286 -0.700474 -0.897794 -3.613501 -2.963891 4.226934 -1.629449 1.388443 5.029811 0.332677 -1.179829 0.495376 2.603750 0.708992 4.552547 3.006824 -3.489791 -0.051541 1.367618 1.503845 -1.243152 5.022477 -3.108448 -4.884088 0.832684 -0.253956 0.719439 -1.507726 0.250373 -1.163724 0.344737 -4.776505 0.485077 1.603958 -1.537322 -1.033225 -0.471234 -1.003827 5.440138 2.850059 -0.615235 -1.284270 1.714553 2.048468 -0.601122 0.990181 1.656877 1.187835 2.809176 -0.014795 -2.167414 -1.313114 -1.199937 -0.707528 -0.764810 3.521530 3.749546 0.914826 -0.009454 0.642116 -1.037225 0.396396 -0.345528 0.791972 1.254773 2.518194 1.234676 -0.641806 0.271467 -3.066915 -0.532722 -3.350221 -2.141425 -2.370201 -0.201639 1.892808 1.854859 -2.087345 4.274289 -0.739830 0.946076 1.173271 6.034976 -3.761087 -1.270211 -3.793436 -2.420295 0.289814 -1.667532 -0.433361 -0.260677 -1.407153 -2.987573 -3.229045 0.401922 1.082991 -1.097533 -0.248984 -0.225118 3.371427 -2.696388 -1.607976 -2.717963 0.741145 -0.903820 -5.801731 -2.745029 -0.739254 -0.000488 0.241958 -0.946377 -4.527419 1.565774 3.727736 -1.988868 -2.133152 -0.950880 4.069087 2.182032 -0.312589 0.575203 -0.654548 1.668389 3.872057 2.582425 -1.542963 -0.473185 -0.442308 -1.370550 -0.813149 -1.934591 -0.069736 -1.102995 -2.955975 -0.089740 4.088793 -2.025720 1.036329 -1.599493 -1.385085 2.588482 11.095490 -2.191343 2.320437 -0.282506 -5.258185 2.947206 -0.069110 -2.249658 -0.973831 1.299258 2.682677 -4.799978 -2.913184 3.258057 3.649279 2.568893 -2.874705 1.167169 -1.683338 -0.567038 -1.178084 0.406090 1.629045 -0.902879 -2.494382 -1.488374 2.062432 7.295255 -2.145466 -6.290470 2.860340 1.026214 0.177226 -1.323880 -1.324290 -1.550896 0.005831 1.629482 -1.161707 2.712420 4.919764 -6.826170 3.614398 0.214823 -3.360441 4.347458 -1.063882 -1.054315 0.138578 0.305912 4.843016 3.640584 0.773872 -0.415749 -1.570890 -3.033461 -0.136528 0.573286 2.152602 -1.130636 1.372986 0.855475 -4.395758 -3.173144 -2.664609 -1.004000 -1.860570 -2.608614 1.094754 -0.115105 -7.190930 5.859090 1.126643 0.309068 0.771753 -1.159081 1.881073 -3.198680 -5.038632 1.921207 -0.681809 -0.746896 0.151767 0.136413 2.312363 1.565948 2.157339 -3.041565 -5.429303 1.950558 0.772014 3.076373 1.270815 2.538138 2.455499 2.245168 -1.371246 -2.641145 -3.352389 2.891507 0.564829 -2.679932 -0.846043 -1.292795 3.699772 3.509919 -0.721826 -1.189994 -3.653033 2.889695 -2.308040 0.123429 2.926873 -0.516628 -3.718234 -1.468633 3.494099 -1.537687 -2.750231 -2.036642 -0.124666 -2.572514 -3.834140 -0.424628 -1.934268 0.268538 2.553147 -0.788794 -2.426744 0.605654 0.587873 -0.495153 0.011345 3.760265 2.174878 -2.391243 1.741031 -3.157808 2.465474 -5.225726 -4.254114 1.892072 -2.317475 -1.595359 -0.264506 0.473289 2.104256 -1.443726 1.587484 0.257977 -1.530868 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_pop_front_aux() = -0.917547 2.128899 3.288454 -3.220953 3.627391 4.319015 0.748801 -1.435504 -1.994920 -0.374694 -0.594584 -3.527237 -2.524624 3.780098 -1.824525 0.533789 4.790263 0.464309 -1.347011 0.248779 1.968733 1.129975 4.299493 3.524799 -3.310885 0.089201 1.332255 1.407498 -0.844550 4.803587 -3.348459 -4.428053 0.539610 0.394163 0.672361 -1.359828 -0.224466 -1.499286 0.292971 -4.597095 0.539004 1.192210 -1.595366 -1.012755 0.056649 -0.536911 5.381032 2.425576 -0.237912 -1.330966 1.611646 2.315398 -0.508186 0.652110 2.149658 1.066859 3.931089 0.462723 -1.525839 -1.144224 -1.238599 0.045834 -0.877502 3.666381 3.441951 1.321780 -0.176194 -0.492920 -0.497049 0.240596 -0.394876 0.862952 1.145509 3.127704 0.677006 -0.420483 1.208376 -2.964547 -0.171126 -2.453704 -2.022468 -1.834369 -0.056373 1.430173 1.414713 -1.928577 3.876434 -0.620248 0.884842 0.630102 5.620084 -3.228894 -1.058680 -2.622343 -2.684368 0.132774 -1.171785 0.182578 -0.870989 -1.212810 -2.898130 -2.884451 0.499559 1.000048 -1.146009 0.942534 0.170665 2.917372 -2.220457 -0.836080 -2.065372 0.698327 -0.434810 -5.380488 -3.011266 -1.386939 0.512311 0.042471 -1.601493 -4.147193 1.528769 3.307921 -2.061394 -1.465932 -1.430428 3.794715 2.079661 -0.150723 -0.014938 -1.061161 1.683704 3.131672 1.809442 -1.699318 0.172891 -0.737893 -1.450688 -0.857733 -1.840726 0.256884 -1.142380 -2.115789 0.061227 3.610980 -2.011124 0.975809 -1.476186 -1.108100 2.069243 11.183617 -2.417826 2.546921 -0.183836 -4.864357 2.428751 0.190264 -1.980043 -1.019968 1.271373 2.770082 -4.900577 -2.628886 3.078538 3.665252 2.290118 -2.795365 1.641036 -1.235190 -1.064932 -1.108642 0.915412 0.746940 -1.028496 -2.331653 -1.641045 2.051048 6.801542 -1.567823 -6.731713 1.957576 0.466336 0.641653 -0.420610 -0.860755 -0.622706 0.635226 1.580280 -1.092897 2.990085 4.483192 -7.372658 3.419835 0.166787 -3.396339 4.629691 -0.857336 -1.230022 0.938253 0.505693 4.387520 3.369302 1.053737 -1.046787 -1.190244 -2.893520 -0.504450 0.425927 2.100441 -1.646179 1.499052 1.695807 -4.489824 -2.834366 -3.190201 -0.520239 -1.647201 -3.040389 1.164617 -1.101050 -7.361686 5.528237 1.734774 0.422959 0.220324 -1.650007 1.032234 -3.026840 -4.543323 1.329314 -0.628902 -0.505267 0.172919 -0.260820 2.034096 1.368035 3.000671 -3.612171 -4.812296 1.876634 0.512316 3.289781 1.280225 2.277862 2.123832 2.189139 -0.610229 -2.432563 -2.814585 3.493076 0.907732 -2.740623 -0.174123 -1.660968 3.119020 3.257576 -1.107793 -1.055717 -3.544281 2.655086 -1.764558 0.337746 2.195016 -0.511191 -3.407736 -1.478429 2.804626 -1.252536 -2.368464 -1.837034 -1.210008 -2.637192 -3.365749 0.037170 -1.481605 0.490124 2.168564 -0.710164 -2.381666 0.499177 0.184099 -0.493852 1.005300 3.035083 2.398988 -1.819736 2.043338 -3.042429 2.599091 -4.750257 -3.992986 1.793590 -2.990239 -1.749944 -0.638940 -0.284323 2.165358 -1.129045 1.551790 0.355220 -0.491497 +PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -3.918016 -4.572589 -2.467714 -7.438611 5.512348 5.414846 3.138171 -6.529467 -9.403006 0.531165 5.048451 -9.477123 -0.259992 10.376011 -3.099311 9.888794 11.524473 1.372723 -5.775958 -1.933791 10.544139 1.554151 12.521518 10.355843 -7.594890 -0.730178 -1.077583 2.274636 4.045583 -0.890815 0.722361 -2.664678 5.224160 -11.180243 -4.248602 -4.063116 1.576616 3.678586 10.759059 -10.585169 2.768545 -1.506645 2.859464 -2.803657 -3.826423 -0.730797 5.035881 8.389168 -1.091237 3.160947 7.829345 0.837494 -1.081355 2.417066 1.251875 1.873973 0.738018 0.221204 -2.885326 -5.538621 -0.656197 0.348919 1.908990 8.264957 9.941506 1.925201 -0.773395 7.474577 3.258933 2.369467 5.834988 1.675946 -2.294752 -0.099309 4.150255 -11.372658 -1.610484 -15.055360 -2.720698 -12.936422 -4.476121 2.127509 5.678495 -2.263716 6.650225 3.084034 8.094307 -1.306048 -4.125697 8.346920 9.392633 -8.703799 -4.202395 -4.322697 -5.548326 2.492829 -4.841426 2.967688 3.785704 2.226373 -7.875313 -5.913466 1.848662 4.808261 -3.227546 -7.437696 3.057261 5.496794 -5.338218 -7.207808 1.860440 7.133759 -2.761840 -12.345266 -3.784631 -6.675234 4.674451 -0.136787 -3.513921 -9.005798 0.508180 3.562486 -3.169218 -6.094953 1.422179 2.563398 5.507102 5.248839 0.246341 0.548086 2.468241 15.074787 1.475597 -6.757650 1.800994 -1.303898 -0.780850 5.401631 -5.501936 -5.191530 2.547296 -8.220411 3.208248 7.071480 -4.839774 -3.053588 8.232544 4.022813 0.954562 21.434458 1.723640 10.229279 8.649826 -7.803684 0.628375 -5.112795 1.613023 3.306259 3.446347 -1.022072 -9.691915 -9.200294 5.679365 8.533386 6.793820 -8.865625 -3.812640 0.012079 0.270551 0.100607 -1.061014 2.492324 0.666479 -7.049494 -1.733665 7.912614 15.343117 -4.722386 0.620143 5.498516 4.283758 -3.138467 -8.796958 -5.132294 -7.444632 2.173860 4.068600 2.166685 5.532613 11.323942 -11.573532 7.158037 -1.586392 1.274790 4.619261 4.676568 -9.932915 -5.620755 -2.336624 4.207091 7.853711 -2.244107 1.092139 4.819342 -8.143264 -0.624017 1.633303 -1.516392 -1.925891 3.533850 1.270737 -3.498357 -4.170369 5.191499 -2.299171 -2.442058 0.919614 6.783111 0.731178 -8.935741 7.454702 0.004728 -3.739881 2.479788 -3.613570 9.613029 -6.896373 -7.104386 6.468653 -0.954074 -0.559145 -3.293993 2.663201 5.159128 3.203534 5.362056 -5.616585 -7.595560 5.502708 -2.848165 7.463452 3.601969 -1.572510 2.695336 -6.869684 -1.919394 -8.660332 -3.501062 -1.986872 2.394861 -9.120668 -4.432515 -1.675878 9.149817 5.200498 0.004314 -7.844516 -0.174605 8.137360 -10.235447 -2.405864 5.643248 6.313597 -9.810614 1.990016 7.049096 -9.170991 1.892804 -2.936639 -0.714906 -3.711719 -6.719819 6.154739 3.349376 6.046726 -1.720265 1.480682 2.775607 4.174391 3.361326 2.229989 1.833662 10.234052 7.076680 -1.979931 -5.203828 -9.507520 3.613685 -10.236206 -11.419626 6.305377 0.973705 -8.916911 0.893661 0.257961 10.673511 1.826224 -1.036253 -3.126646 1.790585 +PE-benchmarks/count-1s-sorted-binary-array.cpp__main = -0.849185 -0.777646 0.046874 -2.101084 1.647172 1.061595 0.928374 -1.181754 -2.626670 -0.548698 1.221600 -3.115301 -0.881991 2.979904 -0.858238 1.941934 3.469960 0.469594 -1.414940 -0.667263 2.249130 0.243437 3.513828 3.085845 -2.318367 0.049854 -0.504096 0.653387 0.907339 0.373663 0.187735 -1.458641 1.372610 -1.909211 -0.455813 -0.969779 0.155596 0.546262 1.868054 -3.417372 0.675320 0.536365 0.891429 -0.742246 -0.603865 0.723967 2.095001 2.266086 -0.300085 0.897630 1.993124 0.244532 -0.001476 0.620229 0.639997 0.013988 0.671351 -0.376607 -1.243390 -1.055162 -0.309689 -0.542747 0.011345 2.391425 2.831252 0.383635 -0.350272 1.283773 0.775451 0.784483 1.432694 0.585210 0.131382 0.214356 1.174628 -2.193080 -0.288098 -3.922737 -0.554015 -4.905515 -1.669682 0.199155 2.503253 0.136390 1.097279 -0.082487 2.512824 -0.213444 -0.817195 2.061064 3.091283 -2.043816 -1.283276 -1.231220 -1.329563 0.851537 -1.339260 0.642233 1.183218 0.540592 -2.371950 -1.090303 0.660217 0.769710 -0.973622 -1.123722 0.696171 1.781691 -1.978537 -1.267703 -0.200692 1.817565 0.061576 -3.652998 -0.630641 -1.460654 0.959623 0.293627 -1.192939 -1.780746 0.412997 0.673444 -1.158079 -0.971230 -1.120636 1.535609 1.182869 1.371211 0.232869 0.554221 0.977336 3.412682 0.492395 -1.830897 0.460832 -0.283584 -0.218121 1.313973 -1.376818 -1.339733 0.893961 -2.130734 0.813814 1.321013 -1.518417 -0.875627 0.872441 0.830818 0.405575 5.600154 0.034721 2.926653 2.025294 -2.213175 0.652097 -1.131112 0.113507 0.582881 1.255559 0.157223 -1.941357 -2.428960 1.747763 2.711812 1.899126 -2.441385 -0.337714 0.101212 -0.027606 -0.213183 0.212221 0.658661 0.364479 -1.954891 -0.589009 2.057965 4.287146 -1.009678 -0.680296 1.157524 1.137624 -0.196836 -1.891317 -1.021314 -1.284150 0.644327 0.886533 0.477901 1.658084 3.269736 -4.083746 2.352252 -0.193942 0.063445 1.700069 0.886010 -2.507438 -2.222936 -0.589457 1.488345 2.517368 -0.234907 0.028567 0.981619 -2.357546 -0.276214 0.345015 -0.080102 -0.720124 1.065157 0.263512 -1.067457 -1.230579 0.203013 -0.588360 -0.290583 -0.343001 1.770659 0.820876 -3.372928 2.409931 0.011834 -1.063037 0.000417 -0.909767 2.211686 -2.090928 -2.144700 1.238117 -0.801351 -1.368174 -1.167845 0.310869 1.210737 0.362939 1.310987 -1.418142 -2.128996 2.284649 -0.767015 2.335322 1.171132 -0.270185 1.367327 -0.436630 -0.705252 -1.840182 -1.340357 0.147474 -0.108221 -2.226594 -0.070319 -0.735079 2.225531 1.735151 -0.110254 -1.936448 -0.306944 2.229933 -2.464825 -0.891538 1.744164 0.878707 -2.217403 1.115456 2.151462 -2.511958 0.270979 -1.442487 -0.525076 -1.102741 -1.844148 1.495681 0.437239 1.349995 -0.105249 0.184306 0.058319 1.093099 0.562066 0.023215 0.416119 3.063246 2.418664 -0.985788 -0.440948 -2.725006 1.336517 -2.979754 -3.088200 1.428890 0.091337 -2.255914 0.076405 -0.090694 2.496440 0.454293 -0.544966 -1.238023 0.970929 +PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.576821 -2.411625 0.785883 -6.326317 6.664456 3.086379 3.230882 -1.583278 -6.654516 -2.582567 2.419728 -6.676611 -4.179023 8.649575 -2.750520 6.688337 9.240575 0.300264 -2.866341 -1.453689 8.856092 -2.780369 10.410473 6.182832 -8.579004 -0.726125 -1.618858 5.131377 2.201159 3.793652 1.731037 -3.382357 3.545431 -5.839660 0.802207 -4.209595 2.991098 2.028926 2.175867 -10.485920 0.997069 3.759889 1.156944 -1.284331 -2.082258 3.137949 4.874696 7.594018 -3.298507 2.587566 6.431110 -0.409634 -0.089200 2.760672 -0.873213 -0.562311 0.402401 -2.099706 -5.893177 -3.116214 -0.720988 -6.056717 2.315111 6.301669 10.061247 -1.235732 1.192722 6.428674 -0.054900 2.819009 4.720693 1.396195 -0.744287 -1.561013 6.267415 -6.759704 -2.506035 -10.678829 -2.356393 -16.541831 -5.355909 -2.844373 6.610065 2.360775 3.841082 -1.711181 8.180969 0.426498 -1.363911 7.833983 7.826991 -6.038607 -3.435700 -8.274614 -3.555449 2.673697 -5.676843 -1.513404 5.237607 1.794548 -6.231467 -1.889670 1.827411 2.377696 -2.163296 -5.800192 -1.049289 6.955112 -7.464112 -5.972924 -2.533432 5.753111 -1.752467 -11.786626 0.536063 -3.458421 3.199227 0.323567 2.152601 -3.086401 0.514649 4.602506 -2.077473 -3.315990 -4.380211 7.366720 3.975727 2.512580 2.792579 2.946506 0.406914 8.829554 5.413087 -2.963485 -3.038633 0.897311 -2.042539 3.654111 -4.278813 -2.747469 4.145591 -7.894082 0.172043 4.372808 -2.812895 -2.360083 1.066087 1.389295 4.276938 18.118571 1.241829 7.573530 4.312282 -6.940292 4.574647 -1.871235 0.168593 3.370440 3.330027 -1.724138 -7.907517 -7.217158 4.018659 5.885244 5.195298 -7.791918 -2.324355 -1.632933 0.704914 -0.815880 -1.938241 5.028792 0.281321 -5.860821 -0.809026 3.674152 13.283897 -3.375906 -2.097395 6.297078 3.857617 -5.228423 -9.182901 -4.101781 -3.582993 -0.910805 0.917750 0.318229 3.102795 9.518399 -10.346885 6.490631 0.137011 0.676209 5.123726 -0.804765 -5.194729 -11.498545 -2.197284 4.795063 7.757124 -2.384379 0.472050 2.206690 -6.162982 2.166795 0.794173 0.193230 0.431852 2.304043 -2.360393 -2.632339 -5.262358 -0.199245 -3.186291 0.587483 -0.144608 3.177241 3.559757 -9.199381 6.789043 -3.611349 -3.873544 2.318103 0.206141 8.061550 -5.806572 -7.432930 4.704143 -1.263867 -5.917725 -7.118397 2.162315 4.210133 1.028011 -0.524402 -2.691238 -8.791734 5.653213 -3.877437 3.998386 2.854246 0.511775 6.744646 1.930330 -4.514622 -7.264269 -5.929034 -1.624047 -1.385367 -5.755984 -0.971598 -0.796511 7.116928 5.078982 0.587269 -3.715103 -0.481906 9.015908 -7.211014 -4.612558 7.037059 1.072205 -6.310175 3.718343 8.030595 -8.043330 -1.606559 -4.561964 1.286295 -1.587268 -5.494452 3.554201 -0.171185 3.279005 0.385631 2.174218 -1.187234 2.651386 2.471522 0.441318 -3.257124 12.763804 8.895325 -5.085367 -1.688705 -6.230064 3.100099 -8.910360 -7.626577 2.704271 1.609932 -2.695219 3.676578 3.122992 7.242301 1.585385 -2.173320 -2.007113 -1.542972 +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.150706 0.084694 0.564602 -0.480695 0.301167 -0.080052 0.130854 0.029221 -0.414509 -0.417052 -0.035295 -0.385842 -0.470822 0.595277 -0.311606 -0.044052 0.938768 0.344538 -0.077929 -0.432685 0.414018 -0.521367 0.807872 0.865644 -0.844279 -0.019412 0.384809 0.633531 0.487464 0.474246 -0.118542 -0.262324 0.152341 -0.108060 0.486075 -0.634776 0.151641 0.001507 -0.288166 -1.148909 0.019572 -0.015368 0.094919 0.001519 0.027845 0.777749 0.678869 0.521562 -0.357109 0.194959 0.600617 0.153385 0.050858 0.117258 0.026981 -0.018429 0.535690 0.103974 -0.294505 0.098893 -0.027982 -0.807035 0.137812 0.672461 0.886526 -0.019198 0.099929 0.006154 0.088706 0.172035 0.219342 0.153630 0.158155 0.197573 0.433054 -0.733940 0.144048 -1.495111 -0.067977 -1.994854 -0.442439 -0.571305 0.590913 -0.170979 0.024282 0.062781 0.729513 0.173498 0.258536 0.406677 0.790471 -0.407311 -0.275355 -0.470245 -0.358258 0.421355 -0.447460 0.006300 0.322128 0.196883 -0.426025 -0.386553 0.396392 0.047058 -0.297806 0.025075 -0.160610 0.591139 -0.808642 -0.203237 -0.710019 -0.035987 0.095079 -0.949060 0.259693 -0.461575 0.788526 0.106752 -0.044020 -0.253790 0.039252 0.479816 -0.166298 -0.016232 -0.660926 0.721433 0.197315 -0.050827 0.079380 0.047392 0.094874 0.345891 0.624055 -0.351101 -0.259400 0.271802 -0.645758 -0.163285 -0.672061 -0.151219 0.752253 -0.491379 0.024901 0.142973 -0.399320 -0.334792 0.519725 -0.217396 0.521339 1.604063 -0.019288 0.380859 0.198381 -0.560320 0.360685 0.068777 -0.059709 0.341198 0.522372 0.187508 -0.667352 -0.506010 0.080591 0.649650 0.396968 -0.643206 -0.350473 -0.261855 -0.061036 0.033743 0.049755 0.171759 -0.309682 -0.319975 -0.144792 0.246126 0.833154 -0.159673 -0.586381 -0.007636 0.154744 -0.363803 -0.754874 -0.041465 -0.078481 0.112271 -0.127044 -0.035261 0.375148 0.764782 -1.754687 0.627904 -0.069041 -0.064289 0.463095 -0.152223 -0.199733 -1.118841 0.279052 0.501393 0.692373 0.064747 -0.076252 0.214340 -0.639615 -0.047226 0.007335 0.445372 -0.300009 0.314785 0.159465 -0.436041 -0.535013 -0.318718 -0.015321 -0.077936 -0.132847 0.259467 0.005952 -1.463885 0.698793 -0.355202 -0.280502 0.110481 -0.135642 0.212622 -0.829252 -0.696285 0.138801 0.003585 -0.452596 -0.647919 -0.061767 0.498711 -0.264445 -0.045317 -0.330678 -0.748308 0.403323 -0.401255 0.286356 0.293531 0.156219 0.860024 0.302759 -0.148939 -0.601686 0.120566 0.045396 -0.372998 -0.288152 0.021964 -0.141696 0.411875 0.935774 -0.117608 0.077991 0.152294 0.782317 -0.568500 -0.568244 0.373995 0.269805 -0.119932 0.512093 0.442959 -0.802051 -0.424498 -0.510856 -0.285534 0.203588 -0.479771 0.387066 -0.513335 0.206134 0.325060 0.093249 -0.314356 0.430992 0.041164 -0.010069 -0.060476 0.831686 1.270016 -0.518331 0.221919 -0.579868 0.311628 -0.916150 -0.510082 -0.072428 0.065288 -0.077813 0.246898 0.031417 0.440862 0.105938 -0.086687 -0.168225 0.006114 +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.889765 0.468310 1.668221 -2.380108 3.552286 1.330754 1.454430 -0.428522 -1.975706 -1.742925 0.120651 -1.776833 -2.813259 3.367985 -1.563816 1.438071 4.318572 0.641473 -0.193754 -1.267027 3.556013 -2.084735 4.938400 3.235319 -4.534999 -0.108380 1.105491 2.304288 0.993035 3.211536 -0.718932 -2.113068 2.048692 -1.906551 1.591672 -2.559413 0.918333 -0.114865 -0.351959 -4.652583 0.014173 0.157529 -0.901195 0.237080 -0.569555 2.838645 3.677453 3.056488 -2.242296 1.265076 2.877745 0.238521 0.029160 1.506224 0.003226 0.042747 0.956242 0.606221 -2.240656 -0.642911 -1.187645 -3.883326 0.783496 3.037421 4.552304 -0.412242 0.799947 1.737403 -1.042299 1.055473 1.397671 1.070820 1.271812 -0.021763 3.327373 -3.137774 -0.899684 -6.512237 -1.675726 -9.128252 -2.330521 -3.050806 1.793596 -0.769063 1.903179 -0.361082 3.881612 1.048683 0.727965 2.590387 4.159022 -3.125965 -1.251779 -3.257897 -1.701605 0.812428 -2.427074 -0.139595 2.059215 -0.238527 -2.648991 -2.201441 1.293273 0.533744 -0.938721 -2.389481 -1.178650 3.372011 -3.956621 -1.924543 -3.363534 0.346144 -0.906193 -5.453855 0.529697 -1.317702 3.546290 0.361976 0.774272 -1.725020 0.588962 3.290592 -0.990801 -1.785247 -0.590690 3.857317 1.953161 0.657949 1.098732 0.386045 -0.185940 3.300981 4.550152 -0.804078 -1.794810 0.242957 -1.953792 0.502548 -2.342587 -0.348519 2.986725 -3.217419 0.180775 2.006552 -1.359058 -1.108442 2.456295 -0.976528 2.842174 7.977692 -0.378282 2.500054 1.066757 -3.735401 1.877740 -0.215321 -0.026582 1.938564 2.563755 0.230151 -3.721970 -3.036287 1.510388 2.607365 1.980024 -4.464851 -1.541439 -1.474039 0.487073 -0.486495 -1.021913 1.853947 -0.577219 -2.307286 -0.286218 1.173256 5.321540 -2.212683 -3.357388 2.172340 1.187889 -1.898963 -3.909267 -1.676229 -1.302230 -0.063709 0.600423 -0.417623 1.219404 4.204382 -7.031937 2.830722 -0.865117 -0.578036 2.360457 -0.216626 -1.063418 -4.535514 0.559342 2.798021 2.840960 0.515197 -0.131671 0.564383 -2.949384 0.862282 0.063134 1.701884 -0.593982 1.336735 -0.210135 -2.536874 -3.251696 -1.578160 -0.481226 -0.373422 -0.239664 1.192721 0.551790 -7.338384 3.448999 -1.637086 -1.798622 1.314577 0.193962 2.920759 -3.000869 -4.294901 1.857521 -0.946349 -2.417934 -3.205970 0.847186 2.061708 0.112125 -0.341768 -1.699533 -4.801049 2.373252 -1.378205 1.673825 1.536577 1.705320 5.085191 0.594123 -2.389850 -4.005532 -1.328465 0.861539 -1.316943 -2.249821 -0.987163 -0.555862 2.920914 4.071639 0.252518 -0.004688 -0.487842 4.236419 -4.168965 -2.013976 3.623336 2.488879 -1.753242 2.035527 3.578144 -3.029057 -2.574404 -1.780638 -0.128996 0.045975 -2.918934 1.398161 -2.106387 1.080891 1.115173 1.100811 -1.395782 1.538664 0.401358 0.768903 -1.653188 4.613909 6.218988 -3.685751 -0.206817 -2.310085 1.624547 -4.796632 -3.383691 0.775309 0.175071 -0.158936 1.674893 0.887529 2.797297 0.231480 -0.884008 -0.458442 -1.285566 +PE-benchmarks/z-algorithm-linear-time.cpp__getZarr(std::__cxx11::basic_string, std::allocator >, int*) = -3.521942 -5.289041 -3.515953 -9.062600 4.801401 5.472461 2.885974 -5.646641 -10.360180 -1.417350 5.520083 -9.917676 0.624845 9.743800 -2.910804 9.869708 13.739252 0.799983 -5.700738 -1.170358 10.579834 -1.895291 12.221000 12.736143 -7.266651 -0.624597 -1.622432 5.337793 3.920926 -1.180810 3.315375 -2.850798 4.808352 -11.285145 -4.031369 -6.947657 1.530767 4.046670 9.935128 -13.590368 2.803285 -0.206135 1.174494 -2.643311 -3.488947 1.331776 4.186351 7.752967 -1.361913 3.758690 8.169850 1.407711 -1.793412 1.985870 1.148577 1.060613 1.331655 0.204929 -2.407396 -5.217036 -0.001609 -0.468136 2.453697 7.606225 11.703398 0.502001 -0.366803 7.531023 3.254799 2.014175 6.628296 1.191168 -4.308205 -1.142473 3.428923 -15.971227 -1.395043 -16.932099 -1.842777 -17.781527 -4.750549 2.922679 7.362106 -1.970246 5.327085 1.329684 7.340658 -2.069311 -4.282260 9.639562 8.046053 -7.061676 -3.848663 -4.636386 -4.394423 2.845440 -4.429634 1.308700 6.858471 2.903625 -7.030208 -2.119225 4.804723 4.558605 -3.202458 -8.700787 3.215973 6.183753 -6.616142 -7.155472 3.509877 9.962015 -2.213512 -12.970801 -1.523179 -9.441721 5.127739 -0.880845 -2.955895 -7.513615 -0.065109 3.215908 -1.954529 -4.395132 -0.406890 5.581801 5.672556 5.802201 0.528415 2.247623 2.400806 15.713566 1.017688 -5.726580 1.639114 -0.802230 -2.155027 5.774283 -6.862920 -4.933100 4.149977 -8.298863 2.667653 6.949360 -4.437932 -3.168087 10.169028 4.958160 0.366264 34.544217 2.233388 12.426669 9.870355 -7.208642 2.056893 -4.776568 1.693895 3.522032 2.503201 -2.050348 -16.949753 -8.210083 4.866378 8.152747 6.430115 -11.896638 -4.788241 0.332723 -0.704024 0.416702 -1.602354 1.567466 1.374311 -6.599825 -1.615506 8.505207 19.239054 -2.921315 3.403465 4.844831 4.805300 -7.110332 -14.479533 -4.545440 -6.746408 2.454845 1.801800 1.891552 5.026378 10.513587 -13.485705 6.439002 -1.025615 2.527553 6.712625 5.475039 -10.316623 -15.527489 -3.788083 3.612069 11.038636 -5.013407 3.357597 5.390039 -7.174843 -0.563577 2.319457 -2.709558 -1.392980 2.555150 1.231965 -2.092009 -3.025027 6.140492 -3.326893 -0.320320 0.919946 6.303288 1.264950 -9.157737 6.641647 -0.273701 -4.092972 1.632127 -3.455857 11.035136 -7.134667 -6.458276 6.504785 -0.181468 -2.595104 -5.749763 2.082623 5.284670 2.203238 4.246101 -4.817160 -9.564854 5.977101 -6.567403 6.679284 3.522058 -2.585526 3.834041 -7.388058 -1.268810 -11.063182 -6.556147 -4.478779 1.775050 -9.291641 -2.501619 -1.373126 8.152293 3.975815 0.631790 -9.170457 2.998346 10.350364 -9.530147 -1.671973 4.849964 7.190335 -10.820096 2.428242 6.432581 -12.451876 3.223815 -3.285492 -2.881711 -3.041856 -6.084131 6.888120 4.903555 6.699312 -2.159711 2.519726 2.470531 4.145623 3.537851 2.851528 2.120957 12.984689 10.918089 -0.964738 -6.264061 -8.920885 2.913058 -9.402177 -11.801828 5.353010 2.603621 -7.713612 1.054229 2.752057 11.260812 3.246072 -0.951650 -2.103484 2.941110 +PE-benchmarks/z-algorithm-linear-time.cpp__main = -2.902604 -0.390064 3.416753 -5.764706 9.231782 3.437711 3.988092 0.250148 -5.655274 -3.556591 0.091369 -3.786067 -7.511596 9.310393 -2.629760 6.128419 9.179975 0.765969 -1.549730 -2.179180 10.300626 -6.459316 11.028918 4.738577 -10.493424 -0.539584 0.573043 6.427783 0.906680 9.073825 -1.703681 -4.165219 3.623565 -4.891480 4.385674 -5.396104 3.750782 1.397378 -1.602995 -11.060607 0.060957 4.347229 -0.042954 -0.486874 -2.559391 5.079686 6.610307 8.400089 -4.964423 2.170640 6.702933 -1.483963 0.197127 3.842183 -0.300628 1.188438 0.935724 -0.194882 -7.534997 -2.257323 -1.949427 -10.590357 3.020801 6.243738 11.057143 -2.708097 2.260111 6.639024 -3.342643 3.231625 3.678982 1.727566 1.335764 -3.132200 9.022890 -5.946995 -3.487641 -11.550518 -3.214463 -20.155332 -6.229253 -7.480972 5.029633 1.608293 5.343110 -2.988282 10.664412 1.007936 0.280803 6.466488 9.202099 -8.058507 -3.273159 -11.235469 -3.506808 1.915411 -6.951491 -3.847758 6.591369 -0.568594 -6.527335 -3.722713 2.757850 2.062187 -2.070764 -6.639591 -4.245637 9.327168 -9.313359 -6.704746 -8.086875 3.144993 -2.842630 -12.780371 2.697518 -2.116004 4.039294 0.493361 4.302409 -3.286740 1.622360 8.262633 -2.602825 -5.265594 -3.389048 10.415448 4.188937 -0.039579 4.423219 2.221197 -1.385932 7.473169 11.423788 -1.806182 -6.449616 2.336570 -4.285863 2.323969 -4.655282 -1.565605 5.698819 -9.176609 -1.435433 4.148262 -2.337054 -0.702367 1.930507 -1.079143 7.403463 16.598791 0.000247 5.307192 1.164603 -8.366928 8.269202 -0.050516 -0.817700 4.587873 5.381632 -1.804722 -8.470744 -7.916111 4.238106 5.800056 5.266959 -9.117749 -3.937229 -4.480990 1.862769 -1.301751 -2.888547 6.703207 -0.311511 -5.746885 -0.938766 0.665471 13.952398 -6.002946 -6.764699 8.368901 2.929478 -6.737406 -11.067092 -5.092788 -4.388707 -2.816590 -0.449945 -1.469306 2.993341 10.693922 -12.645157 7.462194 -2.011017 -2.459594 6.693615 -3.620750 -1.502363 -12.588314 -1.067113 6.453802 8.639639 -0.587270 -0.436910 0.448742 -7.196285 3.561328 -0.405175 2.924165 0.380459 2.906536 -3.805809 -4.810415 -7.386605 -3.970685 -3.286105 -0.599314 0.038531 1.648479 3.706299 -13.580033 8.450572 -5.167769 -3.514177 4.565589 3.459346 7.417666 -5.667044 -10.471057 5.610583 -0.416650 -6.299504 -8.732205 2.697479 5.728050 0.062512 -3.976524 -2.435835 -12.398501 6.029306 -3.193546 3.954140 2.577413 3.317408 10.695871 6.322463 -7.275409 -8.370444 -5.137711 -0.842290 -3.866543 -4.641012 -2.802313 -0.581771 8.175540 7.351862 2.111939 0.348466 -2.252704 11.436132 -8.531943 -5.711726 9.750764 1.664576 -4.623075 4.477831 10.449307 -7.324680 -6.658254 -5.629171 2.192083 -0.637167 -6.858708 2.467381 -4.235762 2.269586 2.677488 2.697202 -3.149229 2.750217 2.529325 0.069840 -7.116252 14.805649 11.596170 -9.073378 -0.500783 -5.259545 3.628665 -10.019275 -6.032581 1.106500 2.319377 -0.506036 5.347959 4.884632 6.544444 0.009387 -2.436884 -0.995690 -6.376306 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.975526 0.485543 1.649524 -3.043127 4.121315 1.870506 1.235700 -0.661355 -2.070057 -1.435101 -0.208761 -2.015128 -2.511650 3.560774 -1.706103 1.886456 4.464988 0.432818 -0.310197 -0.977044 3.812656 -1.429583 4.925743 2.709769 -4.621506 -0.252659 1.147736 2.583319 0.825107 3.510821 -0.976867 -2.413711 1.678335 -1.917921 1.370103 -2.591600 1.177107 -0.030854 0.028163 -4.646152 0.256054 0.210355 -1.055300 0.173565 -0.681001 1.935933 3.733738 3.209309 -2.468811 0.806730 3.120823 0.859400 -0.219936 1.546687 -0.333854 0.331871 1.228590 0.275714 -2.221243 -1.040915 -1.070194 -3.197815 0.965822 3.078824 4.585185 -0.394550 0.758461 2.213048 -0.711153 0.942206 1.500566 0.923719 0.796481 0.163840 3.124605 -3.038827 -0.869495 -6.264432 -1.501877 -8.192299 -2.135141 -3.037105 1.180710 -0.360430 1.866750 -0.342166 3.976021 0.718416 0.885506 2.633813 4.149366 -3.138393 -1.234937 -3.971042 -2.087359 0.890739 -2.334771 -0.608573 1.769541 0.024012 -2.471039 -2.342775 0.865337 0.599400 -0.986476 -2.518434 -1.078224 3.415315 -3.790497 -2.252790 -3.021456 1.045799 -1.276051 -5.618193 -0.257945 -1.380305 3.072801 -0.054557 1.183644 -2.279293 0.445368 3.573625 -1.234449 -1.702720 -0.543020 3.761109 2.353595 0.513658 1.039226 0.125744 0.000472 3.657693 4.183523 -1.055726 -2.033927 0.344162 -1.675992 0.098488 -2.610650 -0.282140 2.408180 -3.491534 0.253131 2.743796 -1.381113 -0.817006 1.967385 -1.164859 3.069471 8.873229 -0.479008 2.365157 0.949162 -4.053281 1.784462 0.049406 -0.297682 1.706500 2.090482 0.435940 -3.873618 -3.194135 1.642975 2.433331 2.205185 -4.204188 -1.332132 -1.672831 0.260932 -0.300869 -1.386232 2.175378 -1.055398 -2.322759 -0.362887 1.194443 5.717241 -1.952888 -3.742753 2.653637 1.824185 -2.314665 -3.590157 -1.895851 -1.864925 -0.317790 0.978429 -0.492563 1.426804 4.494581 -7.174223 2.854884 -0.211998 -0.711678 2.412508 -0.469400 -0.959930 -4.095836 0.295672 3.085162 3.011133 -0.023230 0.216609 0.328880 -2.765341 1.040316 0.342037 1.649336 -0.376349 0.984529 -0.104272 -2.689911 -3.115587 -1.184060 -0.839889 -0.287818 -0.506107 1.161558 0.363846 -7.291525 3.723849 -1.677284 -1.474699 1.740761 -0.196202 3.357783 -3.102289 -4.207344 2.138921 -0.603749 -1.800157 -2.775564 1.151505 2.398114 0.356507 0.339124 -1.999557 -5.089431 1.784126 -1.306813 1.385583 1.560622 1.725526 4.361870 0.186878 -2.083782 -4.133983 -1.736463 0.768171 -0.586136 -2.291459 -1.072004 -0.427264 3.229179 4.003930 0.033268 -0.246508 -0.879142 3.961726 -4.018436 -1.649489 3.576428 1.838874 -2.496476 1.481549 3.663185 -2.929150 -2.612957 -1.688069 0.497687 -0.207252 -3.082948 1.212150 -1.898459 0.977327 1.369128 0.906207 -1.604014 1.585761 0.606800 0.656940 -1.707435 4.762193 5.551035 -3.285431 -0.124883 -2.367898 1.648790 -5.082484 -3.585648 0.998699 -0.519939 -0.350203 1.800425 0.916759 3.031155 -0.201129 0.134667 -0.165573 -1.656255 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator > std::__str_concat, std::allocator > >(std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::allocator_type const&) = -1.307141 -0.576446 2.288517 -3.371562 3.660152 1.229349 1.539222 -0.689744 -3.096534 -1.013883 0.188277 -1.833917 -2.057082 4.467874 -1.802457 2.376029 5.754957 1.522530 -0.750387 -1.695390 4.697328 -3.107323 5.645286 4.241024 -5.225598 -0.379023 1.543296 3.084247 1.937586 3.613174 -1.622687 -1.346349 1.894487 -3.390072 1.690617 -4.226375 1.211152 0.731897 0.547956 -6.418218 0.414869 -0.341698 -0.560854 -0.095288 -0.587026 4.067091 3.599751 3.785822 -2.773439 1.738608 3.464388 -0.140733 -0.071971 1.474713 0.018921 1.210893 2.099826 2.210237 -2.530488 -0.598821 -1.068129 -4.201465 2.042745 3.727541 5.612039 -0.516581 0.815704 2.290664 0.093599 0.927094 2.092563 0.968496 0.613013 -0.310634 3.687808 -5.323599 -0.445556 -8.827836 -1.626216 -10.976427 -2.525634 -2.906583 2.233475 -2.373585 2.198857 -0.072368 4.620520 0.622718 0.669369 3.201341 4.541594 -4.035109 -1.649543 -4.041230 -2.589786 1.151117 -2.759770 -0.757393 3.315394 -0.227744 -3.123747 -3.121887 1.943361 1.300582 -1.271337 -2.452372 -0.932861 4.198877 -4.432213 -3.397973 -3.421099 0.775614 -1.671776 -6.348128 1.260830 -2.467339 4.731377 0.332323 0.582823 -2.864991 0.581417 4.203087 -1.321969 -2.081242 -0.630855 4.873362 2.179921 0.614630 0.934043 -0.160655 -0.539265 3.849691 5.374884 -1.854547 -1.834036 1.145203 -3.352409 0.274382 -3.737715 -1.177327 4.128367 -4.130079 -0.264157 2.328469 -2.045400 -0.601569 5.066335 -0.228913 3.185570 11.046047 -0.188609 3.193120 1.402246 -4.461399 2.716121 0.224595 0.326888 2.504822 3.141149 0.035425 -6.354782 -3.771001 1.278323 3.339078 2.833990 -5.649211 -2.938945 -2.277876 0.126211 0.441599 -1.242177 2.045063 -1.267544 -2.983988 -0.459662 0.856786 7.209062 -2.674106 -3.904067 2.047412 1.138898 -3.388446 -6.056225 -1.862715 -2.301480 -0.006365 -0.249243 -0.577228 1.984520 5.158709 -9.441935 3.787395 -1.731207 -0.884770 3.242643 -0.322694 -1.664288 -6.392625 0.076251 2.983192 4.282333 0.336448 -0.485107 1.556128 -3.609319 0.937675 -0.094504 1.893632 -0.755547 1.735218 0.094370 -3.166921 -3.177881 -0.870011 -0.525394 -1.014515 0.117244 1.618888 -0.270052 -8.554679 3.867566 -1.922411 -1.851722 2.466173 0.483803 2.994091 -3.970454 -4.946612 2.315967 0.317643 -1.596462 -4.275791 0.785658 3.115330 -0.087717 -0.453540 -2.330327 -6.647779 2.078469 -2.596912 2.098726 1.805783 0.907165 5.690955 0.769510 -2.192908 -5.228499 -0.958718 -0.265414 -1.090412 -2.427599 -1.881958 -0.648123 3.910521 4.618262 0.188878 0.341056 -0.458068 5.487970 -4.886983 -2.205494 3.864005 2.740041 -2.263081 1.974591 4.158524 -4.552789 -2.504176 -1.786013 -0.672585 0.258934 -2.720302 2.335832 -2.145952 1.461660 0.604512 1.415314 -1.117317 1.844527 0.850571 0.842929 -1.427981 5.977268 7.976883 -3.935039 -0.483181 -2.813981 2.106226 -5.652256 -3.669273 0.493583 0.579655 -0.994475 2.361240 1.723827 3.788076 0.478741 -0.931922 -0.183003 -1.585836 +PE-benchmarks/z-algorithm-linear-time.cpp__std::char_traits::length(char const*) = -0.096722 -0.045213 0.204765 -0.277349 0.182037 -0.060294 0.081948 -0.083201 -0.288270 -0.214539 0.091606 -0.286591 -0.172814 0.324777 -0.197587 0.090201 0.432303 0.138259 -0.066975 -0.216012 0.208055 -0.209370 0.446878 0.442908 -0.406809 -0.010111 0.094699 0.296655 0.236799 0.191505 0.007800 -0.164444 0.120905 -0.093997 0.120114 -0.267535 0.090564 0.079788 -0.008443 -0.511359 0.039391 -0.014510 0.105743 -0.000388 -0.016886 0.316994 0.264207 0.287020 -0.139102 0.198517 0.362074 0.096987 0.014978 0.079818 0.018305 -0.068402 0.248518 -0.097265 -0.147682 -0.001123 -0.006286 -0.343971 0.038885 0.343397 0.458152 -0.014877 0.051499 0.036609 0.020536 0.113561 0.203804 0.064308 -0.014122 0.071044 0.174263 -0.346001 0.079975 -0.735793 -0.065503 -0.959904 -0.212990 -0.155724 0.356918 0.027035 0.030658 0.116340 0.346152 0.121498 0.013729 0.221372 0.370789 -0.201987 -0.164343 -0.130021 -0.195898 0.204185 -0.239200 0.049109 0.080658 0.214210 -0.223537 -0.139192 0.185917 0.033321 -0.139697 -0.032816 -0.042303 0.248312 -0.465653 -0.112602 -0.208493 0.080003 0.067811 -0.476420 0.104333 -0.254164 0.399065 0.022522 -0.047768 -0.091381 0.013866 0.153857 -0.087880 0.019831 -0.393105 0.244930 0.095993 0.082269 0.021460 0.018513 0.064582 0.270423 0.149713 -0.229026 -0.090342 0.069401 -0.199083 0.047220 -0.295014 -0.105285 0.288597 -0.275142 0.125456 0.055223 -0.195964 -0.234847 0.183917 -0.029378 0.183742 0.670335 0.034321 0.278283 0.204750 -0.268159 0.053431 -0.057517 0.042115 0.187120 0.216149 0.003374 -0.144640 -0.288536 0.093140 0.318943 0.212673 -0.292335 -0.165872 -0.042755 0.006390 0.047372 0.013133 0.093134 -0.151714 -0.183920 -0.073819 0.149293 0.411462 -0.003034 -0.107453 0.043481 0.111836 -0.180226 -0.299978 -0.053658 -0.047225 0.103540 -0.007665 0.033724 0.165214 0.399068 -0.870327 0.301069 0.002725 0.065933 0.165200 -0.016248 -0.204466 -0.550638 0.073261 0.185138 0.318212 -0.017814 0.076468 0.196601 -0.316276 -0.029291 -0.001260 0.127424 -0.143785 0.131775 0.121774 -0.207880 -0.252010 -0.076832 -0.009458 0.012316 -0.058051 0.188265 0.082269 -0.722256 0.297119 -0.170421 -0.186049 0.019174 -0.072150 0.204790 -0.396789 -0.290060 0.085525 -0.087582 -0.237166 -0.298288 0.016060 0.189855 -0.157940 0.027775 -0.125107 -0.224554 0.189426 -0.207519 0.126750 0.139677 0.015755 0.319574 0.003620 -0.047019 -0.259577 0.092416 0.028839 -0.232718 -0.159655 0.165307 -0.054619 0.214941 0.394730 0.000000 -0.077798 0.178885 0.372993 -0.225689 -0.264347 0.195604 0.148281 -0.115828 0.300770 0.219456 -0.413800 -0.103842 -0.245007 -0.107693 0.054741 -0.228486 0.253455 -0.102066 0.167557 0.084033 0.100300 -0.138993 0.238611 0.032313 0.003074 -0.001002 0.445741 0.550241 -0.160661 0.081559 -0.321270 0.098058 -0.439212 -0.318371 0.023184 0.063264 -0.132596 0.118207 -0.076956 0.293369 0.087360 -0.010288 -0.109960 0.093829 +PE-benchmarks/z-algorithm-linear-time.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -1.533596 -0.188933 2.070476 -4.448228 5.174714 1.811431 1.646188 -0.597310 -3.243866 -1.806904 -0.126507 -2.859501 -2.943544 4.702638 -2.069150 3.075018 6.297585 0.853093 -0.872288 -1.408360 5.337265 -2.221914 6.487498 3.815006 -5.958630 -0.472085 1.378510 3.841798 1.403689 3.889753 -1.565659 -2.508836 1.996699 -3.096590 1.792116 -3.809600 1.838984 0.384651 0.436876 -6.479256 0.539118 0.255220 -0.967649 -0.085041 -1.107647 3.163708 4.387852 4.536904 -3.466550 1.033785 4.562273 0.762600 -0.470532 2.044075 -0.782227 0.748596 1.524815 0.660179 -3.018401 -1.606687 -1.011034 -4.435743 1.857609 4.038780 6.115844 -0.793316 0.906493 3.443399 0.008280 1.067687 2.459258 1.028611 0.707888 -0.560039 4.174598 -4.953836 -1.080873 -8.962505 -1.780991 -11.727424 -3.039106 -3.745751 2.117254 -1.058651 2.433758 -0.350272 5.640201 0.427712 1.017395 3.675555 5.073801 -4.505375 -1.914810 -5.637837 -2.833899 1.492185 -3.360231 -1.344629 3.027311 0.498910 -3.347958 -2.811032 1.425811 0.977363 -1.406005 -3.625778 -1.139409 4.553277 -4.925551 -3.524395 -4.022641 2.026300 -1.483401 -7.393903 0.452778 -2.123992 4.321246 -0.277654 1.427611 -3.117508 0.366892 4.445925 -1.832007 -2.034030 -1.334656 5.033172 3.041637 0.562854 1.649014 0.169569 -0.023841 4.978646 5.664532 -2.097587 -2.995241 1.018613 -2.857329 0.285633 -3.904844 -0.941036 3.818782 -5.023587 0.234651 3.399095 -2.123451 -0.992220 3.633554 -1.007319 3.956643 11.951805 -0.234793 3.301805 1.536310 -5.142162 2.867323 -0.161580 -0.308044 2.437838 2.880413 0.120083 -5.657157 -4.493210 2.115355 3.552625 3.299997 -5.727807 -2.118346 -2.072503 0.511285 -0.144752 -2.039809 3.175723 -1.255936 -3.120351 -0.623260 1.595107 7.955713 -2.322621 -4.176990 3.520316 2.658143 -3.572467 -5.663425 -2.663875 -2.902218 -0.535671 0.959037 -0.420837 2.173748 6.269885 -9.677430 3.839407 -0.612712 -0.650154 3.373769 -0.562713 -1.589369 -6.565079 -0.028215 3.881327 4.643687 -0.568705 0.521262 0.858252 -3.700302 1.272050 0.386126 2.009677 -0.313273 1.254204 -0.210369 -3.273636 -3.637295 -1.232123 -1.308848 -0.352426 -0.088416 1.716476 0.408836 -9.371288 4.971517 -2.557247 -1.953305 2.551834 -0.292036 4.603952 -4.381431 -5.396002 3.228607 -0.131979 -2.008161 -4.044928 1.603954 3.715034 0.041946 0.090349 -2.499431 -7.067443 2.598812 -1.955119 2.144029 1.891014 1.582129 5.666096 0.356059 -2.480476 -5.552136 -2.087647 -0.157435 -0.967751 -3.014247 -1.428898 -0.403998 4.506297 5.013331 -0.076512 -0.039064 -0.471306 5.384562 -5.609036 -2.297984 4.651064 2.652902 -3.413030 2.421393 4.981286 -4.679496 -3.270843 -2.509214 0.652339 -0.143000 -3.949050 1.954243 -2.315929 1.470900 1.763964 1.310239 -1.651017 2.186187 1.169803 0.794625 -2.369426 7.007043 7.872776 -3.887195 -0.383049 -3.500496 2.140796 -6.764878 -4.748907 1.297203 -0.137715 -1.012261 2.595044 1.848904 4.337018 -0.331295 0.044633 -0.473998 -2.134621 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.283003 0.165987 0.499465 -1.142342 1.220625 0.704424 0.075645 -0.123326 -0.679680 -0.324561 -0.372602 -0.592827 -0.567202 1.100454 -0.363173 0.615590 1.090408 -0.019016 -0.243929 -0.152621 1.103728 -0.073765 0.975556 0.241135 -1.121614 -0.065685 0.335288 0.906334 0.148267 1.195006 -0.288495 -0.853531 -0.095973 -0.157012 0.349332 -0.693630 0.474407 0.264768 -0.033366 -1.230488 0.161043 0.341356 -0.180475 -0.028582 -0.265902 -0.120132 0.840508 0.868136 -0.690255 -0.112404 0.991558 0.660838 -0.266290 0.331147 -0.262979 0.219090 0.417405 -0.353258 -0.484398 -0.329634 0.005623 -0.468980 0.288628 0.725874 1.080322 -0.180423 0.100241 0.748072 -0.037316 0.240894 0.263736 0.115364 -0.120998 0.006430 0.568156 -0.535017 -0.238678 -1.337223 0.096689 -1.578389 -0.408279 -0.769353 0.127992 0.573364 0.237025 -0.166495 1.201582 -0.166576 0.151835 0.813509 1.034833 -0.608865 -0.203220 -1.494019 -0.792068 0.382795 -0.527087 -0.615532 0.048852 0.399163 -0.387494 -0.633155 -0.084792 0.006652 -0.311727 -0.516148 -0.390198 0.945086 -1.065783 -0.540861 -0.557597 0.882321 -0.296454 -1.316286 -0.564752 -0.435001 0.236998 -0.374780 0.524091 -0.674490 0.053504 0.890499 -0.514342 -0.183680 -0.503277 0.813564 0.686005 -0.275125 0.200638 -0.081657 0.157274 0.832385 0.608394 -0.543158 -0.735297 0.385994 -0.108832 -0.319227 -0.841485 0.033877 0.174212 -0.992554 0.095620 0.882711 -0.291323 -0.121915 -0.182259 -0.585014 0.836058 2.567308 -0.122271 0.308539 0.025250 -0.971592 0.512206 0.269576 -0.411134 0.326076 0.147623 0.198522 -0.693673 -0.865762 0.518357 0.590953 0.667700 -0.566205 -0.242408 -0.487927 -0.183996 0.062285 -0.324050 0.685340 -0.621701 -0.378479 -0.295071 0.142681 1.517054 -0.103874 -0.938541 0.934253 0.927326 -0.902615 -0.548548 -0.472979 -0.711311 -0.325258 0.453462 -0.259347 0.663659 1.250429 -1.979051 0.819790 0.460199 -0.320302 0.377103 -0.489020 0.065271 -0.834925 -0.180259 0.950125 1.047042 -0.451753 0.374573 -0.171086 -0.714490 0.339546 0.281189 0.361181 -0.085868 0.065738 0.019564 -0.613376 -0.611479 -0.042574 -0.631768 0.050706 -0.304550 0.165281 0.028851 -1.740824 1.134855 -0.539278 0.117693 0.568086 -0.102046 0.966028 -0.740322 -0.922193 0.684452 0.302108 -0.219138 -0.330247 0.370305 0.941895 0.031899 0.360940 -0.485425 -1.386936 0.141659 -0.204835 0.182345 0.294987 0.403150 0.492204 0.043706 -0.270049 -0.883293 -0.602173 0.230685 0.155697 -0.303751 -0.077014 0.033039 0.844821 0.799839 0.006423 -0.265852 -0.344694 0.936783 -0.516429 -0.310484 0.718015 -0.296379 -0.935508 0.166993 0.921688 -0.662377 -0.717651 -0.709834 0.616399 -0.147067 -0.797058 0.172258 -0.326591 0.088183 0.669422 0.018782 -0.656607 0.531562 0.371473 -0.202031 -0.526709 1.472731 0.679297 -0.452805 0.269608 -0.669102 0.366745 -1.278334 -0.772667 0.086181 -0.420159 -0.142093 0.454790 0.067288 0.761949 -0.334072 0.811739 0.155777 -0.686819 +PE-benchmarks/z-algorithm-linear-time.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/strongly-connected-components.cpp__Graph::Graph(int) = -1.065045 -1.091240 0.397794 -2.880868 1.590059 1.126466 0.776590 -1.114850 -2.235303 -0.333864 1.324552 -1.360350 -1.092358 2.626712 -0.833288 1.475699 1.540103 -0.373644 -1.636414 -0.870990 2.513151 -0.978867 2.524549 1.468141 -2.523991 -0.288118 -0.348416 1.965832 0.763159 1.367521 0.353198 -0.049643 -0.269311 -0.934801 0.398762 0.069996 0.481554 0.487506 0.436485 -2.241242 0.554423 1.325369 0.997471 -0.619996 -0.761149 -0.442517 0.942338 2.202528 -0.172108 0.028468 2.385248 -0.212172 0.254844 0.396161 1.091862 0.104403 1.751852 -0.147152 -0.354071 -1.191988 -0.287479 -0.473503 0.887398 2.135641 2.535853 -0.430207 0.000705 1.018199 0.306452 1.410213 1.672500 0.332332 -1.194381 -0.648243 1.663784 -1.357908 0.333545 -2.394678 0.219915 -2.413931 -1.298022 0.206216 1.609627 0.843997 1.033075 -0.034750 2.249198 -0.040309 -1.122410 0.612685 1.333885 -0.613173 -0.760558 -1.308962 -1.725243 0.556193 -1.206310 -0.309625 0.768066 1.323558 -1.732910 0.551646 0.098295 0.998993 -1.158708 -0.611942 -0.292426 1.767619 -1.042306 -0.964747 0.473405 2.254369 -0.333811 -3.206310 -0.858204 -2.341069 -0.197264 -0.902446 -0.012082 -0.444756 0.158106 1.153668 -0.716948 -0.755397 -1.738925 1.345506 1.306281 0.662071 0.108552 0.217000 -0.035735 1.855967 0.307743 -1.159696 -0.664373 0.187220 -0.430331 1.204961 -0.557106 -0.530067 0.523422 -1.505518 -0.003106 0.517016 -0.424573 -0.342089 -0.073026 0.838113 0.543622 5.068871 -0.082308 2.282733 1.133219 -1.190609 1.033270 0.361715 0.382397 1.041877 0.874645 -0.985705 -1.441420 -2.059728 1.419178 1.784429 1.367234 -1.474311 0.167936 0.035512 -0.403690 -0.223470 -0.000430 0.289518 -0.232934 -1.315802 -0.611928 0.798850 3.012731 -0.651842 -2.021661 1.680521 1.186984 -1.618526 -1.404103 -0.755178 -1.279045 0.145343 -0.164566 0.190063 1.598327 2.504372 -2.521467 1.790185 0.073067 -0.349956 2.237067 -0.888105 -1.281493 -2.847615 -0.443117 0.233535 2.158615 -1.008885 -0.723917 0.786472 -1.919088 0.457762 -0.023938 -0.389713 -0.416701 0.986191 -0.699792 -0.522282 -1.071287 -0.750912 -1.111881 0.803972 -0.730959 0.868065 -0.103306 -2.042772 1.708602 -0.314217 -0.592377 0.148617 -0.107267 1.681541 -1.155550 -1.580943 1.102367 0.064346 -0.670224 -1.975229 0.390720 1.331388 0.007606 0.172596 -1.605902 -0.834893 1.423365 -1.842129 1.736998 0.873465 -0.303459 0.438122 1.510713 -0.286050 -1.386871 -0.637055 -0.261359 0.226648 -2.254418 -0.422969 -0.642164 1.821266 0.574819 0.202792 -0.753679 -0.188155 2.553901 -0.801211 -1.332272 0.844582 -1.008693 -1.756873 1.136931 1.594767 -1.346824 -0.107038 -1.598584 -0.262419 -1.243429 -2.015561 1.879096 1.106354 1.912102 -0.495679 0.887995 0.123995 0.569985 0.673676 -0.067161 -0.257990 3.177373 1.193679 -0.938137 -0.923121 -2.208999 1.318985 -1.535737 -1.358586 0.776772 -0.035305 -1.028146 0.538028 -0.298880 2.454892 0.663988 -0.151995 -0.460183 0.048109 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/strongly-connected-components.cpp__Graph::DFSUtil(int, bool*) = -2.131000 0.354466 2.573899 -4.930123 3.969617 3.702866 1.494861 -1.818211 -4.033834 -2.405698 0.715186 -5.700389 -3.796750 6.278181 -2.624227 2.086110 7.446463 1.001090 -2.251392 -0.565697 4.454474 0.362537 7.274578 6.199691 -5.501201 -0.580009 0.401033 3.671862 0.980609 3.307567 -0.146070 -4.445932 2.037250 -1.686501 0.194038 -2.700189 1.037195 0.197788 0.436483 -7.508534 0.921449 1.438702 -1.364377 -1.320391 -0.918235 0.687416 5.929708 4.894181 -1.304656 -0.087965 3.685658 2.230623 -0.655364 1.479788 0.902280 -0.722178 1.267017 -1.850861 -2.600912 -2.061457 -0.921148 -2.933411 -0.223373 5.637753 6.363381 1.188837 0.177378 1.659069 -0.228836 1.433232 1.600955 1.136635 1.051590 2.035840 2.599545 -3.100937 -0.091454 -6.921557 -0.911626 -8.537287 -3.304494 -1.884745 3.604321 2.946940 1.537052 -1.554822 5.812775 -0.030626 -0.011516 5.190768 7.612156 -4.309699 -2.279628 -4.475950 -3.324578 2.051991 -3.219800 0.765771 -0.397625 1.266528 -4.571629 -2.741724 0.197339 1.147779 -1.971934 -1.767591 0.266270 4.711472 -5.250942 -1.870387 -2.343313 2.687946 0.196983 -8.550697 -2.906357 -2.858140 3.277794 0.123326 -1.456321 -3.709174 1.166947 3.146892 -1.614089 -1.601282 -3.605638 4.497628 2.465721 0.921471 0.475258 0.779258 1.785249 5.937306 2.240665 -2.689107 -0.413765 -0.317141 -1.887561 0.620574 -3.235180 -1.020260 1.360606 -4.514531 0.126487 4.194523 -3.134899 -2.092604 -0.947202 -0.463432 2.905505 15.452825 -0.746411 4.633976 2.843328 -5.951326 2.022565 -1.395600 -1.160539 0.816108 2.223166 1.891798 -5.654043 -4.783985 3.707382 5.657776 4.004770 -4.237547 0.990480 -0.871567 -0.317730 -1.537561 0.448445 1.925919 -0.920554 -3.815719 -1.620955 4.532701 8.647315 -1.762059 -4.196497 3.047789 2.006516 -0.458875 -3.046550 -1.678723 -0.534757 0.640574 2.710926 -0.291112 3.407100 7.200063 -8.855845 4.933989 0.862348 -0.676729 3.607098 -0.057222 -3.704526 -3.545727 0.050195 5.243526 5.194681 -0.180195 0.141905 0.262390 -5.036654 -0.419655 1.481407 1.750094 -1.427243 2.264127 0.988115 -3.699868 -4.333689 -1.682601 -1.731939 -0.472383 -2.158284 2.843498 0.077038 -8.428605 6.980003 -0.275597 -1.319000 0.097927 -2.277002 4.576553 -5.571188 -6.420669 2.859539 -1.565198 -3.681976 -2.288191 0.673685 3.368635 1.284819 1.559459 -3.554545 -5.553150 4.206436 -0.815269 4.198736 2.052740 1.716848 4.493967 1.128556 -1.570526 -4.153515 -4.090463 2.751278 -0.172450 -4.656377 -0.062737 -1.229263 4.737642 5.101782 -1.202272 -3.380810 -0.725125 5.191856 -4.023063 -2.381197 3.712424 1.102588 -4.669579 1.516583 4.569661 -4.777817 -1.823890 -3.584403 -0.338893 -2.143811 -5.374058 1.853099 -1.038496 2.131216 2.112754 0.416780 -1.991772 2.066679 1.452784 0.242585 0.743394 6.697972 5.544092 -2.566929 0.664729 -5.551477 2.934520 -7.514627 -6.543457 2.595271 -1.083263 -1.721351 0.437161 -0.439988 4.410243 0.331164 0.308898 -1.055326 0.511488 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/strongly-connected-components.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator*() const = -0.155400 0.320713 0.620162 -0.774513 1.043962 0.417682 0.013904 -0.079362 -0.358961 -0.363266 -0.350932 -0.427369 -0.660556 0.709175 -0.357656 0.268462 0.642269 -0.155818 -0.120384 -0.245797 0.739720 -0.086650 0.743136 -0.018901 -0.934577 -0.030499 0.330422 0.800224 0.268006 0.973152 -0.328796 -0.505759 -0.068719 0.122388 0.372121 -0.395844 0.419932 0.000000 -0.335047 -0.725168 0.015172 0.118652 -0.391102 0.141320 -0.141204 0.487644 0.717634 0.611684 -0.564484 -0.094944 0.794342 0.445607 -0.157204 0.282834 -0.348158 -0.061322 0.600302 -0.294501 -0.409224 -0.208086 -0.002071 -0.629769 0.109819 0.523748 0.814104 -0.216944 0.100239 0.616994 -0.110621 0.166644 0.128424 0.137345 0.124094 0.161302 0.492897 -0.216246 -0.089129 -0.829973 -0.038459 -1.341129 -0.262208 -0.802080 -0.014411 0.300073 0.007142 -0.079331 0.950698 0.129607 0.137677 0.538628 0.810817 -0.452363 -0.112662 -1.130330 -0.463968 0.200293 -0.462828 -0.443998 -0.032030 0.442313 -0.185762 -0.382705 -0.106962 -0.208791 -0.218889 -0.207811 -0.525025 0.681052 -0.982162 -0.173690 -0.631807 0.415798 -0.092003 -0.970979 -0.326767 -0.131219 0.577721 -0.339460 0.656700 -0.279499 0.042047 0.741102 -0.353214 0.036265 -0.512840 0.685115 0.533976 -0.258949 0.156773 0.036535 0.185574 0.377913 0.599662 -0.286058 -0.801652 0.244149 -0.126728 -0.284772 -0.557017 0.232978 0.279085 -0.677243 0.157754 0.617902 -0.112991 -0.153610 -0.257228 -0.631020 0.709760 1.426561 -0.126879 0.040185 -0.212155 -0.704867 0.239297 0.175382 -0.365986 0.257075 -0.011881 0.244954 -0.310157 -0.613492 0.472899 0.330292 0.380536 -0.573423 0.064339 -0.350698 -0.066880 -0.045680 -0.290137 0.695785 -0.576250 -0.112439 -0.231644 -0.047984 1.066251 -0.075488 -0.822179 0.767932 0.393086 -0.599483 -0.329790 -0.340849 -0.000740 -0.337480 0.375001 -0.144928 0.388615 0.885701 -1.514589 0.546953 0.454425 -0.313485 0.232993 -0.555891 0.264685 -0.466622 -0.090040 0.779778 0.577453 -0.176711 0.137260 -0.256096 -0.494414 0.349981 0.221871 0.384534 0.033126 -0.027484 0.150549 -0.460055 -0.570529 -0.262668 -0.339841 0.350986 -0.245417 0.067075 -0.218187 -1.692212 0.894827 -0.592619 0.085787 0.293409 -0.024259 0.666656 -0.509669 -0.654532 0.442711 0.055005 -0.412605 -0.454107 0.325887 0.581492 -0.071708 0.240487 -0.391843 -1.067157 0.076831 -0.214350 -0.092666 0.178845 0.525711 0.566734 0.055056 -0.233145 -0.679668 -0.295443 0.326721 -0.001324 -0.049488 0.344216 0.138375 0.534405 0.615113 -0.071263 0.049467 -0.202548 0.586480 -0.404405 -0.441210 0.531262 0.005914 -0.641611 0.363589 0.623694 -0.322686 -0.704988 -0.561108 0.270765 -0.163065 -0.586987 0.001054 -0.398780 -0.092574 0.714361 0.082250 -0.673874 0.447690 0.086434 -0.222420 -0.573752 1.148904 0.998361 -0.503835 0.363428 -0.447236 0.392116 -0.961061 -0.588883 0.104957 -0.362618 0.182143 0.355040 0.047905 0.454591 -0.251342 0.385138 0.097572 -0.564233 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/strongly-connected-components.cpp__Graph::getTranspose() = -1.621846 0.658741 1.641320 -3.960461 3.855583 4.073988 1.401453 -1.252895 -3.489638 -1.846049 0.320879 -4.980159 -3.323929 5.563415 -1.893669 2.160142 6.934758 1.034156 -1.762198 0.300362 3.689842 0.317345 6.253394 5.438239 -4.306888 -0.282723 0.311953 2.519870 -0.562323 3.901771 -0.778638 -5.150790 1.947207 -1.507460 -0.098731 -2.572833 0.574882 0.031247 0.789396 -6.963448 0.894046 1.939418 -0.975209 -1.382128 -0.781094 -0.177598 5.420338 4.066193 -0.865985 -0.140071 2.670801 2.083128 -0.631117 1.454517 1.226321 0.149960 0.934771 -1.481180 -2.462287 -1.756463 -1.056857 -2.037199 -0.596600 4.524651 5.509420 0.976764 0.076206 1.149938 -0.838853 1.152737 1.027618 0.872276 1.031001 1.592142 1.853502 -1.972385 -0.567685 -5.446986 -0.849135 -7.151083 -2.945680 -1.685966 2.645158 3.267204 1.822422 -1.989267 4.891797 -0.597037 0.296332 3.872839 6.775280 -3.961559 -2.013446 -3.898113 -2.671603 1.507501 -2.517159 0.126710 0.090754 0.002676 -4.094573 -2.827204 0.374191 1.189052 -1.577033 -1.698694 0.348560 4.155164 -4.408958 -2.031776 -2.187248 2.231971 -0.343665 -7.513003 -2.695619 -2.113334 1.184396 0.450206 -1.583140 -3.948396 1.408297 2.832366 -1.624973 -2.038352 -2.360957 4.434002 1.890377 0.572822 0.750031 0.293649 1.524145 5.610534 2.122315 -2.232729 -0.060780 -0.384099 -1.552696 0.400433 -2.890526 -1.007469 0.106976 -4.271421 0.492706 4.003346 -2.863087 -0.969580 -1.565499 -0.422986 2.428145 14.259915 -1.176167 4.414896 2.095435 -5.642639 2.761979 -1.155621 -1.442676 0.075422 2.044310 1.888808 -5.163427 -3.886058 3.220546 4.969875 3.592335 -3.765430 0.860591 -1.082527 -0.227463 -1.299309 0.606365 1.645089 -0.398027 -3.557618 -1.429315 3.768999 8.529048 -1.729179 -4.029813 2.919166 2.101246 -0.361356 -2.811975 -1.553250 -1.586608 0.517143 2.341857 -0.709858 2.843274 6.123526 -7.738818 4.418655 0.339620 -1.324999 3.765044 0.037282 -3.086512 -3.073250 -0.058148 4.833440 5.169708 -0.071973 0.478937 -0.225780 -4.181451 -0.507577 1.217107 1.595569 -1.192616 2.000786 0.618800 -3.771189 -3.556167 -1.621186 -1.516949 -1.323074 -2.093706 2.261377 0.982298 -7.454093 6.147949 0.342864 -0.965790 0.258252 -1.466511 3.688157 -4.508556 -5.806720 2.647896 -1.261259 -2.638062 -1.229557 0.425461 2.926243 1.552673 1.557064 -2.645351 -5.616379 3.634849 -0.148477 3.864698 1.921141 1.711893 3.596553 1.648603 -1.752901 -3.654622 -4.360787 2.539489 -0.357418 -3.846395 -0.286517 -1.530715 4.331249 4.346001 -0.472741 -3.161265 -1.742720 4.819695 -3.031372 -0.970288 3.652532 0.249638 -4.092352 0.345790 4.364121 -4.066086 -1.860480 -2.794959 0.183920 -2.076745 -4.647050 1.105403 -1.225487 1.587214 1.866769 0.024063 -1.991841 1.313724 1.238592 0.057341 0.489332 5.783365 3.573527 -2.302330 1.007627 -4.379695 2.425472 -6.456192 -5.661201 2.157512 -1.051036 -2.040650 0.216609 -0.037098 3.535384 -0.432370 0.887124 -0.667516 -0.201761 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::push_back(int const&) = -0.398404 0.421827 1.045272 -1.044165 0.920457 0.564970 0.294023 -0.284174 -0.787247 -0.529178 -0.150502 -0.903574 -0.907328 1.297025 -0.622553 0.083428 1.816732 0.514709 -0.306507 -0.424024 0.866241 -0.403794 1.594873 1.529037 -1.375493 -0.028972 0.674962 0.877555 0.366840 1.220612 -0.627052 -0.953490 0.369748 -0.132459 0.554120 -1.007669 0.122361 -0.146045 -0.190986 -1.938653 0.158555 -0.021347 -0.195671 -0.183430 -0.033075 0.794558 1.561708 0.983202 -0.426650 -0.022221 0.886773 0.619513 -0.094567 0.302290 0.385955 0.187927 1.053314 0.176338 -0.489053 -0.153508 -0.295953 -0.852521 0.027254 1.317498 1.511639 0.232478 0.092411 0.011010 -0.038868 0.270593 0.163556 0.284929 0.389613 0.619510 0.538504 -1.002880 0.253614 -2.223771 -0.196289 -2.661527 -0.764879 -0.853759 0.540069 -0.088354 0.291948 -0.094235 1.401073 0.134287 0.376391 0.607239 1.771630 -1.003599 -0.443672 -0.867235 -0.809677 0.448790 -0.646141 0.099797 0.214873 0.028217 -0.947334 -0.959149 0.482449 0.193148 -0.496562 -0.002003 -0.095153 1.137832 -1.257400 -0.334645 -1.057661 0.070457 -0.009841 -1.889307 -0.162241 -0.800786 1.130460 0.058299 -0.352367 -0.985309 0.319331 1.051073 -0.488967 -0.326193 -0.767708 1.287559 0.521899 -0.078521 0.043665 -0.184984 0.278390 0.976552 0.993795 -0.677395 -0.213491 0.102141 -0.934175 -0.289204 -1.069076 -0.122363 0.679079 -0.905971 0.115406 0.790393 -0.773533 -0.319409 0.552727 -0.445861 0.879873 3.459043 -0.419679 0.827745 0.270346 -1.418085 0.639914 0.024630 -0.356313 0.253404 0.826224 0.632159 -1.470621 -1.025841 0.605562 1.287766 0.849609 -1.167290 -0.218287 -0.526071 -0.208048 -0.154908 0.155261 0.271005 -0.515372 -0.749576 -0.439144 0.613481 1.944512 -0.457847 -1.554733 0.357879 0.279675 -0.301698 -0.942710 -0.262107 -0.203047 0.224788 0.182599 -0.244761 0.861882 1.583568 -3.049959 1.211688 -0.122370 -0.550030 1.096827 -0.172185 -0.453736 -1.084793 0.370199 1.276036 1.295148 0.189385 -0.135111 0.047798 -1.184117 -0.170502 0.082568 0.820614 -0.593553 0.571975 0.494298 -1.190254 -1.022794 -0.692775 -0.060040 -0.396062 -0.483637 0.518758 -0.173837 -2.801859 1.664056 -0.136121 -0.196954 0.191681 -0.379912 0.521620 -1.335905 -1.527655 0.453113 -0.089029 -0.474868 -0.661799 -0.000474 0.964883 -0.092690 0.449319 -0.888204 -1.542051 0.728820 -0.324815 0.844476 0.495966 0.600569 1.326356 0.389795 -0.272085 -1.135085 -0.278470 0.557704 -0.247812 -0.786364 -0.026049 -0.385728 0.987009 1.559960 -0.266081 -0.167973 -0.258956 1.321473 -1.013181 -0.501921 0.818730 0.454798 -0.706709 0.384647 0.968625 -1.085659 -0.909325 -0.781501 -0.451142 -0.210442 -1.111198 0.451227 -0.737641 0.315357 0.671838 0.030343 -0.660356 0.597793 0.155800 0.026578 0.133343 1.330665 1.848821 -0.848271 0.431983 -1.047161 0.687343 -1.775918 -1.212141 0.261143 -0.360754 -0.344290 0.157881 -0.099501 0.905509 -0.130288 0.233373 -0.088471 -0.117932 +PE-benchmarks/strongly-connected-components.cpp__Graph::addEdge(int, int) = -0.475590 0.045244 0.799813 -1.030475 0.780508 0.797563 0.306252 -0.582427 -0.881119 -0.301227 0.071917 -0.956915 -0.607544 1.264774 -0.658110 0.478704 1.651061 0.456860 -0.496836 -0.328087 0.910781 -0.227192 1.622615 1.513006 -1.174152 -0.093525 0.399810 0.900917 0.373697 0.995357 -0.518138 -0.661118 0.418472 -0.515022 0.201976 -0.886903 0.106921 0.086672 0.187543 -1.733835 0.169030 -0.040991 -0.158653 -0.178375 -0.075991 0.362006 1.205319 0.973695 -0.087418 0.142549 0.756324 0.428154 0.019649 0.288755 0.475983 0.322659 0.986366 -0.049736 -0.423895 -0.308577 -0.306369 -0.654615 0.100247 1.245089 1.399100 0.263094 0.021745 0.128242 0.023916 0.235503 0.361374 0.317139 -0.071141 0.561823 0.418105 -1.176711 0.480526 -1.641210 -0.198682 -1.771207 -0.662098 -0.495538 0.437615 0.118144 0.547629 0.040316 1.324388 -0.028516 0.039129 0.527342 1.535121 -1.135707 -0.430302 -0.629497 -0.643903 0.263199 -0.637423 0.104641 0.080277 0.209356 -0.908671 -0.743089 0.458555 0.386886 -0.458565 -0.074516 -0.015514 1.089604 -1.166642 -0.626895 -0.668302 0.267805 -0.222430 -1.783396 -0.339388 -0.817596 0.997204 0.021377 -0.452731 -1.112614 0.374492 0.999338 -0.304437 -0.449764 -0.535038 1.008808 0.553888 0.021662 -0.058258 -0.022586 0.173084 1.304262 0.758365 -0.628380 -0.062534 0.104703 -0.791294 -0.004114 -0.814648 -0.213954 0.226416 -0.997560 -0.014178 0.933893 -0.711405 -0.137005 0.438026 -0.013207 0.629439 3.559895 -0.324974 0.947859 0.545100 -1.307423 0.430185 -0.144846 -0.073557 0.259412 0.586504 0.433785 -1.739669 -1.022679 0.660921 1.259562 0.810193 -1.124550 -0.125982 -0.426789 -0.081263 -0.082878 0.115205 0.283377 -0.383703 -0.766226 -0.366286 0.583395 2.008410 -0.559092 -1.194386 0.448261 -0.071667 -0.383515 -1.014914 -0.352594 -0.246623 0.223999 0.192755 -0.086870 0.679948 1.478668 -2.248878 1.155551 -0.187315 -0.446597 1.259205 -0.067013 -0.594579 -0.752453 0.021649 1.006731 1.162698 0.010870 -0.195790 0.229640 -1.167071 -0.130940 0.124480 0.608003 -0.512484 0.592572 0.562834 -1.060462 -0.860429 -0.400709 0.000234 -0.410263 -0.413077 0.627238 -0.311021 -2.212957 1.394693 0.064164 -0.286332 0.374434 -0.305860 0.667575 -1.206790 -1.342563 0.578449 -0.065020 -0.362050 -0.553332 0.044353 0.832535 0.150156 0.387307 -0.988690 -1.205318 0.620366 -0.366712 0.893202 0.439407 0.348780 0.997780 0.147120 -0.265308 -0.977813 -0.347988 0.271066 -0.094691 -0.816825 -0.252928 -0.304197 1.079836 1.291294 -0.132155 -0.308247 -0.132992 1.286390 -1.015500 -0.385395 0.720745 0.532250 -0.872843 0.211375 0.870325 -1.054121 -0.572823 -0.525384 -0.520272 -0.352159 -0.972394 0.623714 -0.447823 0.503423 0.373519 0.131101 -0.422472 0.496113 0.245660 0.124693 0.283154 1.357954 1.477783 -0.491567 0.159376 -1.078517 0.654572 -1.565906 -1.147027 0.360951 -0.128510 -0.496491 0.148519 0.010906 1.048386 0.148969 -0.033537 -0.070201 -0.086693 +PE-benchmarks/strongly-connected-components.cpp__Graph::fillOrder(int, bool*, std::stack > >&) = -2.313082 0.374028 2.808479 -5.203499 4.266364 3.919204 1.602000 -1.948460 -4.315967 -2.349713 0.507708 -5.586011 -3.797905 6.688415 -2.717352 2.380871 8.109140 1.414820 -2.318977 -0.683351 4.894519 -0.046990 7.723830 6.653969 -5.776166 -0.586189 0.736007 3.920930 1.012918 3.838781 -0.661720 -4.513194 2.246243 -2.138462 0.295113 -3.392670 1.069554 0.398037 0.597950 -8.175324 1.047579 1.075027 -1.426108 -1.383129 -1.021742 0.826507 6.251294 5.165329 -1.377315 -0.022084 3.817184 2.375061 -0.712296 1.654762 1.120181 -0.077434 1.557224 -1.578179 -2.686537 -2.095398 -1.087993 -3.227106 0.021846 5.899416 6.764027 1.236035 0.222638 1.813415 -0.269929 1.422695 1.700974 1.142422 0.992787 1.948825 2.690126 -3.929980 -0.031913 -7.708755 -1.095182 -9.253377 -3.447588 -2.184709 3.433853 2.514555 1.913437 -1.347942 6.199100 -0.187869 0.158136 5.158902 8.001057 -4.902801 -2.383291 -4.751025 -3.463067 2.053231 -3.345337 0.576443 -0.161243 1.050960 -4.786948 -3.315112 0.616437 1.377244 -2.099995 -2.029927 0.258728 5.192499 -5.607714 -2.366471 -2.749879 2.629954 -0.211429 -8.942161 -2.669758 -3.191561 3.779142 0.131065 -1.570387 -4.400052 1.328466 3.763169 -1.720447 -2.019086 -3.306249 4.864661 2.587681 0.720791 0.465317 0.525949 1.592872 6.455841 2.851226 -2.916839 -0.471491 -0.115104 -2.373873 0.425471 -3.720106 -1.179909 1.502258 -4.944158 -0.000613 4.579589 -3.407459 -1.896495 -0.076345 -0.478491 3.212965 16.596793 -0.882857 4.742880 2.893525 -6.433806 2.304452 -1.330995 -1.165549 0.990166 2.574624 1.987965 -6.627315 -5.134808 3.693841 5.949166 4.324106 -4.697200 0.452894 -1.403686 -0.325968 -1.325506 0.318999 1.977498 -1.114113 -4.073758 -1.722105 4.418022 9.459900 -2.138769 -4.533446 3.205803 1.855057 -0.915801 -3.838991 -1.921270 -0.971817 0.631602 2.559408 -0.466516 3.576591 7.665594 -9.648691 5.319032 0.349342 -1.022216 3.982211 -0.024908 -3.668156 -3.918592 0.032299 5.560723 5.769596 -0.181974 0.215611 0.363115 -5.389525 -0.480888 1.414560 2.079286 -1.588067 2.414400 1.224748 -4.209882 -4.488553 -1.562331 -1.644123 -0.913414 -2.015659 2.979178 -0.042458 -9.237865 7.354574 -0.302148 -1.287217 0.677343 -2.118511 4.792872 -5.878797 -6.907327 3.204049 -1.205284 -3.319151 -2.425330 0.775971 3.920570 1.213680 1.512103 -3.785317 -6.218442 4.166270 -0.920356 4.384849 2.172700 1.849826 4.897930 1.020165 -1.706444 -4.661423 -4.013691 2.475618 -0.237043 -4.743185 -0.521337 -1.321464 5.208011 5.671989 -1.032781 -3.264396 -0.749306 5.783030 -4.597999 -2.315151 4.075048 1.587770 -4.851408 1.467570 4.953182 -5.221900 -2.287237 -3.521101 -0.419316 -2.034317 -5.601067 2.071737 -1.374133 2.250554 2.220232 0.503904 -2.050911 2.283082 1.598972 0.402657 0.700516 7.111327 6.160752 -2.786649 0.568861 -5.622382 3.042466 -7.990099 -6.677334 2.526453 -0.914883 -1.953422 0.629925 -0.249253 4.793544 0.191698 0.512985 -0.873769 0.035865 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = -0.413558 0.520414 0.918073 -1.000680 1.167729 1.111363 0.363366 -0.409894 -0.809124 -0.334697 -0.185619 -1.054074 -0.874397 1.462733 -0.571759 0.479407 1.973457 0.463213 -0.345049 -0.150545 0.939258 -0.266490 1.743616 1.534987 -1.316590 0.010890 0.659243 0.628381 -0.072929 1.512250 -0.986705 -1.354492 0.491661 -0.440593 0.327186 -0.939077 0.044680 -0.216140 0.200079 -2.020084 0.181612 0.136399 -0.320284 -0.318613 -0.139177 0.165356 1.784695 1.036830 -0.258466 -0.035986 0.707193 0.575288 -0.119295 0.347083 0.622148 0.557206 0.998461 0.187839 -0.657221 -0.270546 -0.393433 -0.628559 -0.071148 1.320021 1.491047 0.274455 0.031759 0.162583 -0.243773 0.161407 0.076277 0.302819 0.340540 0.708070 0.505178 -0.987275 0.172498 -1.896617 -0.314978 -2.117939 -0.852728 -0.823392 0.244782 0.092746 0.712894 -0.266449 1.500928 -0.138039 0.372286 0.438340 2.020364 -1.416161 -0.517341 -0.997348 -0.772596 0.258324 -0.653284 -0.002679 0.186395 -0.424102 -1.107367 -1.250694 0.586851 0.465177 -0.484917 -0.214534 -0.011614 1.227447 -1.170831 -0.740017 -1.100168 0.044657 -0.351707 -2.029487 -0.385520 -0.547494 0.697595 0.219561 -0.494902 -1.584939 0.487550 1.309114 -0.559641 -0.800498 -0.304837 1.378636 0.646246 -0.039468 0.168740 -0.252690 0.403768 1.481646 1.141670 -0.645318 -0.090159 0.014020 -0.836210 -0.218630 -0.918740 -0.241331 0.101664 -1.104196 0.025103 1.186214 -0.855873 0.111935 0.413294 -0.327846 0.872183 3.906630 -0.577244 0.936033 0.197275 -1.763992 0.886680 -0.137829 -0.517367 -0.004463 0.807979 0.776664 -1.900719 -1.072107 0.818932 1.407558 0.946336 -1.243556 -0.179189 -0.664026 -0.137493 -0.182379 0.162643 0.370932 -0.311897 -0.943849 -0.454070 0.686284 2.523994 -0.800267 -1.787862 0.644019 0.202549 -0.197247 -1.057096 -0.412223 -0.635664 0.170763 0.272427 -0.325469 0.871045 1.723919 -2.826367 1.320559 -0.356695 -0.940108 1.423020 -0.101188 -0.530766 -0.660345 0.250108 1.475730 1.423705 0.269507 -0.043771 -0.135033 -1.218137 -0.186395 0.072631 0.803396 -0.566810 0.647405 0.429440 -1.539802 -1.072958 -0.663683 -0.104948 -0.785077 -0.589623 0.534518 0.002435 -2.775168 1.860860 0.209396 -0.159756 0.430098 -0.319982 0.673216 -1.325312 -1.768722 0.666714 -0.120133 -0.206874 -0.259959 -0.033140 0.947916 0.251625 0.492061 -0.972132 -1.795928 0.709735 -0.009191 1.064555 0.535603 0.666437 1.206359 0.433648 -0.471658 -1.104026 -0.666440 0.614577 -0.136715 -0.906617 -0.425653 -0.509259 1.292945 1.557387 -0.134046 -0.299747 -0.746107 1.308723 -1.163720 -0.137361 1.018069 0.432503 -1.004742 -0.128537 1.178555 -0.975051 -0.916064 -0.649653 -0.295774 -0.507369 -1.230970 0.260688 -0.786665 0.284978 0.706108 -0.105135 -0.645451 0.437808 0.194686 0.045575 0.089161 1.344036 1.420196 -0.912694 0.387580 -1.104826 0.747483 -1.876151 -1.406909 0.454626 -0.349884 -0.642901 0.031553 0.131096 0.907069 -0.271396 0.309242 -0.001473 -0.407595 +PE-benchmarks/strongly-connected-components.cpp__Graph::printSCCs() = -4.398794 -2.183043 2.041030 -10.365586 10.034694 7.168295 3.822852 -4.143569 -9.875404 -2.029458 2.154959 -10.254793 -4.270502 14.053032 -4.349092 9.821414 15.432607 1.699622 -4.493402 -0.313707 12.606286 -1.986286 15.055542 9.677874 -10.911615 -1.486068 -0.231786 5.973543 0.897032 6.882394 -0.482989 -7.376496 4.247729 -9.297349 -1.576810 -7.036676 3.322821 2.730366 5.977992 -16.120553 2.826687 3.002423 -0.237805 -3.564098 -3.160032 0.012186 9.014575 10.840929 -3.952060 1.808244 7.938445 2.419458 -1.740116 3.689486 0.267223 2.016251 1.802737 -1.854998 -7.044337 -5.029312 -1.669905 -4.606597 3.148863 10.216664 13.481338 0.639554 0.957485 8.390646 0.129452 3.022639 5.270719 1.356371 -1.677020 0.719836 6.389628 -10.173789 -2.953580 -15.970643 -3.352209 -18.155283 -6.883123 -2.287884 5.948089 3.516687 5.941915 -0.654829 11.102090 -1.235725 -0.820390 11.447904 13.273029 -9.827341 -5.105099 -11.339537 -7.667848 3.513343 -6.515041 -1.613581 3.821566 1.296780 -9.548295 -6.862159 1.895636 4.965430 -3.402354 -7.828606 0.993739 9.876742 -9.763017 -9.762221 -2.234979 7.808762 -4.335784 -17.457078 -3.381265 -5.352866 5.231193 0.502631 0.028376 -9.841678 1.849035 7.962783 -3.751312 -6.150637 -3.436744 9.330879 5.346003 3.277705 2.408807 0.537898 1.686783 14.653531 6.562143 -5.794324 -1.600814 0.263135 -3.139881 2.789921 -6.776483 -4.542938 1.437879 -11.492982 0.948317 9.806779 -5.888104 -2.759918 1.765564 1.399860 5.851081 30.516730 -0.102693 11.219237 5.803739 -12.996531 5.285834 -2.968616 -1.494328 2.193793 4.591423 0.889699 -13.555020 -10.394251 6.528847 9.611472 9.063474 -9.885748 -3.002434 -3.487876 -0.488113 0.091263 -1.592293 5.862565 -1.410486 -9.784019 -2.291056 6.671344 21.687767 -4.702807 -5.485721 8.948593 5.680327 -5.801898 -11.703591 -5.398556 -6.853069 -0.270641 3.575432 -1.195929 5.851363 14.648938 -17.575519 10.088320 -0.543818 -1.046266 6.800036 0.064225 -8.813092 -11.675619 -2.793254 9.233449 12.329872 -2.741067 1.632756 2.061540 -8.840665 1.299898 1.918230 1.181277 -0.432512 4.028196 -1.132800 -7.731799 -7.391660 1.705398 -4.286521 -2.159983 -1.441169 5.222361 2.654622 -14.247108 12.264726 -2.224478 -3.166020 4.303381 -1.501167 11.626893 -9.282589 -12.307107 7.706941 -0.928256 -3.685491 -5.670961 2.547345 7.384780 3.793337 2.235249 -5.206343 -13.790597 5.570996 -3.148725 7.004101 4.433956 1.249369 7.834864 0.756426 -4.495693 -10.421150 -8.788579 -0.111972 0.641417 -9.152109 -3.645839 -2.454084 11.901230 8.041600 -0.497532 -7.204180 -2.992908 11.874692 -9.472798 -3.235751 9.265456 0.842054 -11.586308 1.176564 11.317626 -10.635580 -2.196478 -4.994430 3.017051 -4.418860 -8.816505 3.939763 0.132486 4.081987 1.069146 1.704654 -1.972896 3.085703 4.250499 1.614173 -1.487962 15.419580 10.175311 -5.825046 -1.669928 -9.128969 4.583645 -14.358791 -12.836483 5.130021 0.304506 -5.815201 3.475338 2.267569 10.727274 0.084395 1.343173 -0.837800 -2.393969 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::stack >, void>() = -0.092970 0.087194 0.530415 -0.502313 0.379194 0.055492 0.117100 0.077446 -0.506440 -0.294032 -0.071035 -0.403497 -0.347261 0.559268 -0.254097 -0.111427 0.802033 0.343539 -0.102120 -0.225143 0.175554 -0.160641 0.596382 0.662760 -0.528524 0.062866 0.036166 0.387034 0.058593 0.688625 -0.185619 -0.538995 0.051990 0.221609 0.271502 -0.486596 -0.020439 0.052431 -0.285576 -0.935064 0.122362 0.250186 0.068660 -0.067516 0.129034 0.379785 0.597305 0.352595 -0.111741 0.143878 0.329800 0.363600 0.022504 0.102125 0.226516 0.097117 0.504435 -0.186431 -0.273010 0.076629 -0.132742 -0.377480 -0.042166 0.483017 0.567542 0.066060 -0.018339 -0.282338 -0.001047 0.162594 0.189173 0.072887 0.135786 0.141162 0.134602 -0.105216 0.128648 -0.777301 0.072168 -1.225703 -0.346728 -0.300970 0.599013 0.306199 -0.120614 -0.146730 0.565255 -0.059820 0.169901 0.263279 0.622935 -0.199401 -0.204088 -0.273521 -0.362279 0.241503 -0.176847 -0.122227 -0.030978 0.190042 -0.366040 -0.221598 0.213202 -0.058397 -0.193335 0.253786 -0.021583 0.494902 -0.703846 0.007541 -0.431024 0.286669 0.199534 -0.638231 -0.095896 -0.354913 0.327401 0.057984 -0.242172 -0.128152 0.198945 0.245748 -0.303212 0.179125 -0.695232 0.548123 0.015257 -0.068623 -0.015745 -0.059011 0.050387 0.186426 0.213612 -0.363397 -0.022221 0.181224 -0.230984 -0.151189 -0.436493 -0.068119 0.142107 -0.334093 0.132284 0.057330 -0.359695 -0.207056 -0.267146 -0.124385 0.316325 1.165391 -0.218856 0.374574 0.101792 -0.462193 0.251671 0.151222 -0.069211 0.081783 0.379727 0.189190 -0.194949 -0.383613 0.165416 0.525578 0.374842 -0.296355 0.023873 -0.185066 -0.128809 0.105740 0.185169 0.028599 -0.206889 -0.310812 -0.197605 0.057251 0.764542 0.097677 -0.651180 0.003199 0.165678 -0.115476 -0.093992 0.009612 0.056874 0.133204 0.074839 -0.152288 0.375576 0.630289 -1.436439 0.582487 -0.019907 -0.160475 0.373549 -0.125243 -0.098357 -0.512746 -0.027552 0.406296 0.744882 0.086637 -0.047465 0.097653 -0.452561 -0.092374 0.009184 0.347085 -0.301281 0.224012 0.246825 -0.489589 -0.260906 -0.444237 -0.040467 -0.001101 -0.328370 0.174962 0.070281 -1.217721 0.556511 -0.045703 -0.038134 -0.003806 -0.019567 0.120764 -0.483541 -0.522640 0.059478 -0.020314 -0.416697 -0.271564 -0.091030 0.393189 -0.185196 0.219560 -0.258530 -0.492627 0.413229 -0.127870 0.378695 0.233082 0.059279 0.496979 0.401934 -0.044956 -0.234367 -0.146286 0.340558 -0.315422 -0.105110 0.400033 -0.235029 0.279130 0.599409 -0.009969 -0.124719 -0.099516 0.644981 -0.108338 -0.175257 0.336235 -0.203760 -0.086825 0.357951 0.441990 -0.529183 -0.330237 -0.414278 -0.110609 -0.006229 -0.260931 0.278474 -0.278321 0.138550 0.205489 0.047490 -0.437476 0.221403 0.015420 -0.179953 0.075923 0.665397 0.614900 -0.217400 0.496919 -0.344787 0.264913 -0.618215 -0.304738 -0.148275 -0.186963 -0.226801 0.127456 -0.231974 0.352072 -0.028846 0.214557 -0.090141 0.124317 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::empty() const = -0.146834 0.178332 0.459434 -0.506570 0.472445 0.335594 0.137206 -0.217885 -0.439797 -0.182001 0.024221 -0.623143 -0.367505 0.585579 -0.284731 0.109356 0.718740 0.140785 -0.199744 -0.100455 0.260275 0.010713 0.703438 0.662740 -0.548969 0.060866 0.061857 0.323684 0.029621 0.625819 -0.294166 -0.542673 0.115534 0.080105 0.109630 -0.281834 -0.022181 -0.047935 0.030331 -0.797782 0.099174 0.213134 0.039435 -0.105728 0.035579 0.136768 0.696152 0.416733 -0.057107 0.031500 0.361115 0.295416 0.038999 0.124295 0.272110 0.011702 0.614363 -0.162935 -0.234194 -0.117559 -0.128934 -0.204868 -0.101651 0.572435 0.623247 0.135231 -0.040579 -0.106657 -0.025317 0.118730 0.109854 0.156633 0.071438 0.340717 0.112298 -0.123642 0.273865 -0.635055 -0.011565 -0.782041 -0.367800 -0.185958 0.328629 0.360084 0.116935 -0.133427 0.617844 0.011414 0.038414 0.149629 0.768167 -0.395942 -0.187833 -0.215613 -0.395309 0.152390 -0.217757 0.059775 -0.111798 0.110129 -0.436104 -0.282955 0.187293 0.055062 -0.229518 0.191296 0.022193 0.407172 -0.542811 -0.087516 -0.245680 0.176136 0.064938 -0.800762 -0.225073 -0.324866 0.188456 -0.001855 -0.238932 -0.381670 0.179486 0.268687 -0.274845 -0.036359 -0.635115 0.496849 0.213427 0.042644 -0.005640 -0.087964 0.209123 0.440201 0.088231 -0.353202 0.015349 -0.051845 -0.164494 0.010303 -0.327472 -0.042848 -0.015134 -0.367562 0.097986 0.300730 -0.327565 -0.055969 -0.261429 -0.082888 0.229109 1.361702 -0.220463 0.477839 0.182077 -0.609492 0.260295 -0.013286 -0.159766 0.029130 0.250994 0.275134 -0.397745 -0.451650 0.380629 0.594205 0.367296 -0.368489 0.120277 -0.064103 -0.103780 -0.065868 0.187749 0.074057 -0.155659 -0.363645 -0.217376 0.270952 0.892481 -0.049260 -0.661807 0.213632 0.090652 -0.017017 -0.134672 -0.104867 -0.044853 0.125158 0.106526 -0.076222 0.386432 0.687856 -1.254971 0.554395 0.066066 -0.270097 0.583874 -0.119018 -0.292529 -0.253076 0.036867 0.505160 0.548137 0.043277 -0.049596 0.012625 -0.502121 -0.099324 0.035521 0.219376 -0.307701 0.262046 0.260313 -0.537588 -0.371392 -0.415268 -0.041450 -0.111379 -0.389554 0.277263 0.038843 -1.104304 0.688370 0.100996 -0.081468 -0.028167 -0.210464 0.192790 -0.495055 -0.566587 0.138680 -0.183796 -0.260585 -0.169456 -0.016546 0.273592 -0.017133 0.309366 -0.426695 -0.459137 0.358213 -0.098635 0.409314 0.245954 0.188941 0.286332 0.341818 -0.087105 -0.301974 -0.185146 0.353901 -0.110443 -0.332328 0.247975 -0.250080 0.394342 0.556337 -0.068416 -0.196681 -0.199108 0.497941 -0.172546 -0.146684 0.337155 -0.142072 -0.394347 0.107771 0.408833 -0.343925 -0.233926 -0.376652 -0.198285 -0.245812 -0.433869 0.234615 -0.124418 0.143463 0.248259 -0.052509 -0.355721 0.226859 0.031101 -0.108989 0.139028 0.620136 0.434922 -0.174949 0.334660 -0.482657 0.283833 -0.706174 -0.519005 0.171880 -0.251803 -0.327309 -0.038717 -0.152301 0.414313 -0.034312 0.169651 -0.064326 0.101828 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::top() = -0.164064 0.269480 0.429867 -0.387625 0.396590 0.176320 0.126206 -0.117434 -0.298202 -0.334711 -0.081474 -0.526148 -0.506169 0.549941 -0.275137 -0.015630 0.726013 0.185111 -0.096871 -0.147607 0.245651 -0.128857 0.678610 0.622286 -0.547145 0.011959 0.189756 0.343294 0.050167 0.563117 -0.178114 -0.544188 0.165365 0.133754 0.250826 -0.324759 0.032804 -0.079257 -0.188146 -0.789202 0.054763 0.160134 0.050907 -0.081926 0.006792 0.295861 0.724364 0.411840 -0.109819 -0.031210 0.319925 0.313869 0.027449 0.149210 0.181230 -0.061824 0.440364 -0.216188 -0.268600 -0.060837 -0.140293 -0.409398 -0.113962 0.560619 0.633323 0.117677 0.026831 -0.065268 -0.125701 0.164265 0.025328 0.140595 0.210519 0.326957 0.168347 -0.167658 0.151225 -0.725875 -0.080732 -1.120754 -0.344674 -0.361534 0.284106 0.290099 0.052631 -0.076108 0.609657 0.112422 0.162247 0.222392 0.819467 -0.363690 -0.192291 -0.305724 -0.302486 0.206087 -0.272185 0.063017 -0.019815 0.105073 -0.413065 -0.316477 0.164308 -0.001618 -0.205763 0.107152 -0.051172 0.425100 -0.621077 -0.024994 -0.463445 -0.021330 0.100866 -0.806887 -0.056035 -0.249337 0.301729 0.051338 -0.160544 -0.320004 0.175973 0.323241 -0.197949 -0.044249 -0.617026 0.517993 0.133599 -0.044528 0.039583 -0.016991 0.165612 0.368138 0.267313 -0.266119 -0.082074 -0.008754 -0.297138 -0.109111 -0.360721 -0.045998 0.183409 -0.385525 0.093177 0.270392 -0.326531 -0.197066 -0.195022 -0.257849 0.365137 1.140607 -0.219598 0.342655 0.108126 -0.608118 0.237459 -0.041695 -0.208864 0.019348 0.326742 0.332417 -0.264316 -0.428391 0.323366 0.560920 0.351904 -0.314018 0.059731 -0.146772 -0.045458 -0.110880 0.142041 0.134857 -0.205144 -0.330396 -0.194235 0.262453 0.741294 -0.091529 -0.538234 0.184805 0.125582 0.006437 -0.216423 -0.078370 0.007355 0.077361 0.057236 -0.097300 0.304733 0.670526 -1.194938 0.539683 0.061930 -0.195405 0.430299 -0.155929 -0.193254 -0.440077 0.159181 0.594743 0.508823 0.058163 -0.003089 -0.074671 -0.498091 -0.091822 0.027556 0.355731 -0.267308 0.242284 0.177833 -0.505847 -0.463444 -0.383491 -0.012085 -0.119036 -0.282167 0.217502 0.141459 -1.113608 0.750940 -0.053605 -0.081798 -0.052256 -0.146431 0.179113 -0.549909 -0.624544 0.116533 -0.217422 -0.350728 -0.229696 -0.007343 0.319661 -0.093479 0.141302 -0.299895 -0.460650 0.383138 -0.066665 0.332541 0.209918 0.311897 0.479518 0.320935 -0.148396 -0.318995 -0.124754 0.257241 -0.240738 -0.285502 0.244521 -0.173959 0.375508 0.677933 -0.107228 -0.135400 -0.061142 0.500071 -0.245281 -0.254445 0.371647 -0.040635 -0.276305 0.211290 0.416987 -0.386128 -0.389820 -0.411890 -0.124179 -0.138107 -0.505493 0.122612 -0.327046 0.064020 0.355842 -0.064028 -0.382322 0.250024 0.054547 -0.072621 0.051549 0.577432 0.558762 -0.307655 0.329354 -0.445561 0.235055 -0.755989 -0.492521 0.115435 -0.135931 -0.123956 0.008489 -0.125650 0.312866 -0.079709 0.129180 -0.094286 0.000178 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::pop() = -0.292859 0.410027 0.735354 -0.822790 0.969373 0.842667 0.236726 -0.249301 -0.624200 -0.280817 -0.209354 -0.840921 -0.711343 1.099080 -0.447140 0.313265 1.381338 0.283227 -0.262641 -0.062211 0.656677 -0.057749 1.226127 0.955196 -0.964295 0.011087 0.335091 0.534422 -0.144597 1.283999 -0.678698 -1.118953 0.247991 -0.062405 0.272136 -0.632189 0.081676 -0.109255 -0.009729 -1.431586 0.150337 0.323430 -0.184833 -0.214099 -0.066463 0.023210 1.292752 0.767004 -0.190241 -0.107076 0.535082 0.560018 -0.084422 0.279000 0.394645 0.323709 0.769517 -0.138299 -0.538321 -0.225616 -0.279214 -0.426372 -0.099256 0.935191 1.074635 0.185465 0.024771 0.073061 -0.219536 0.166127 0.063666 0.199007 0.229019 0.504969 0.321304 -0.372085 0.138449 -1.110505 -0.125327 -1.380033 -0.591969 -0.637513 0.212200 0.457085 0.391370 -0.327500 1.137113 -0.123794 0.261304 0.346176 1.455047 -0.911361 -0.346294 -0.844193 -0.620733 0.201054 -0.458486 -0.135304 -0.030762 -0.136596 -0.752669 -0.799466 0.270475 0.218808 -0.329424 -0.027375 -0.077149 0.905180 -0.934654 -0.421080 -0.759769 0.221330 -0.170827 -1.455133 -0.426940 -0.376492 0.277595 0.062298 -0.246704 -0.997565 0.370754 0.886475 -0.474212 -0.402081 -0.521042 1.017256 0.443302 -0.122450 0.116492 -0.169559 0.280855 0.942259 0.651636 -0.493699 -0.152614 0.043682 -0.449745 -0.211598 -0.655566 -0.084879 -0.068128 -0.815201 0.040038 0.839987 -0.575023 0.072445 -0.237942 -0.325351 0.682610 2.686216 -0.463429 0.622690 0.068021 -1.260643 0.661149 0.008755 -0.424887 -0.047739 0.478123 0.556656 -1.076013 -0.799542 0.650654 0.966869 0.696934 -0.713666 0.066209 -0.461733 -0.127214 -0.135739 0.121566 0.348537 -0.315999 -0.654005 -0.363973 0.397648 1.788980 -0.398365 -1.343054 0.577186 0.258427 -0.160800 -0.482412 -0.303437 -0.367267 0.045938 0.271126 -0.275834 0.655654 1.278745 -2.025996 0.991825 -0.039181 -0.675012 0.988126 -0.259066 -0.271503 -0.364935 0.077263 1.115644 1.071728 0.112756 -0.007143 -0.187682 -0.854544 -0.067610 0.087493 0.590202 -0.377562 0.392733 0.301644 -1.096896 -0.763006 -0.600685 -0.174281 -0.428357 -0.557138 0.330795 0.073902 -1.987576 1.380351 0.106828 -0.016324 0.262985 -0.195797 0.485203 -0.897812 -1.233187 0.455830 -0.100297 -0.266141 -0.162481 0.030934 0.697682 0.144950 0.425901 -0.687482 -1.257290 0.518094 0.035200 0.705819 0.365364 0.519265 0.728638 0.509413 -0.322165 -0.692398 -0.596821 0.547002 -0.100607 -0.557959 -0.023907 -0.339830 0.899931 1.064367 -0.086390 -0.269959 -0.599049 0.949658 -0.584279 -0.112326 0.763496 -0.066406 -0.755229 -0.069126 0.901859 -0.633359 -0.726130 -0.565984 -0.054181 -0.407734 -0.885739 0.136133 -0.537211 0.150239 0.586375 -0.098307 -0.641967 0.307191 0.162782 -0.121672 0.001866 1.109868 0.773355 -0.555681 0.490868 -0.768006 0.530840 -1.351428 -0.944064 0.271451 -0.409697 -0.424399 0.069734 0.006934 0.645306 -0.267003 0.412111 0.022779 -0.327788 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::~stack() = -0.168099 0.123011 0.468565 -0.457998 0.501713 0.166102 0.139788 0.011299 -0.432637 -0.312156 -0.126859 -0.410257 -0.497140 0.613328 -0.269853 0.054436 0.793507 0.290278 -0.097309 -0.198763 0.341101 -0.178161 0.714328 0.583166 -0.620751 0.016275 0.095813 0.492328 0.086374 0.706834 -0.184652 -0.508027 0.162825 0.112307 0.271428 -0.506783 0.111816 0.085849 -0.269381 -0.919767 0.078180 0.209287 0.013877 -0.021934 0.032261 0.395056 0.612931 0.466731 -0.185507 0.111435 0.393881 0.320923 0.032455 0.198664 0.077647 0.046984 0.392948 -0.269576 -0.342376 -0.032567 -0.122793 -0.569893 -0.036517 0.502605 0.704571 0.015693 0.039807 -0.028361 -0.104591 0.193314 0.172376 0.106979 0.171072 0.116176 0.253885 -0.146906 0.046528 -0.770580 -0.048855 -1.280128 -0.357608 -0.459219 0.449089 0.332208 0.013632 -0.121980 0.689309 0.043836 0.150830 0.310837 0.726156 -0.379410 -0.207712 -0.459042 -0.289795 0.260420 -0.325225 -0.131806 0.033100 0.204074 -0.373913 -0.331625 0.173539 -0.064883 -0.213390 0.047492 -0.157508 0.574209 -0.775474 -0.115835 -0.559421 0.193100 0.076303 -0.778895 -0.066911 -0.281319 0.367458 0.028792 -0.026244 -0.203415 0.170113 0.357126 -0.228879 0.013076 -0.605882 0.588492 0.130141 -0.148745 0.072224 0.016580 0.032724 0.355182 0.348670 -0.314436 -0.219332 0.183119 -0.274263 -0.112497 -0.501351 -0.026867 0.209857 -0.493041 0.106032 0.228319 -0.330204 -0.200888 -0.228518 -0.214248 0.433005 1.155124 -0.145473 0.303517 0.118026 -0.558988 0.303222 0.065712 -0.112101 0.177051 0.343822 0.187582 -0.266589 -0.479493 0.219502 0.523910 0.400748 -0.380974 -0.019744 -0.256102 0.000000 -0.023883 0.075257 0.241308 -0.239815 -0.304634 -0.169055 0.096979 0.809818 -0.065542 -0.603058 0.231048 0.184216 -0.227548 -0.291477 -0.135756 -0.002445 -0.023811 0.104981 -0.111763 0.294004 0.726980 -1.273184 0.587896 0.064352 -0.158671 0.380558 -0.208801 -0.079600 -0.513850 0.024894 0.519643 0.682474 0.026924 0.022028 0.021525 -0.532961 -0.010976 0.059369 0.372954 -0.207377 0.214837 0.173458 -0.451702 -0.399855 -0.382331 -0.072144 -0.045998 -0.243700 0.206245 0.143691 -1.255055 0.647901 -0.207555 -0.105258 0.113622 -0.006362 0.293526 -0.542464 -0.630349 0.204384 -0.056934 -0.435112 -0.362334 0.063439 0.450956 -0.135526 0.110043 -0.257148 -0.595430 0.393983 -0.115154 0.258800 0.221651 0.215095 0.546030 0.343019 -0.212598 -0.369570 -0.172287 0.241957 -0.307410 -0.143029 0.281635 -0.134153 0.402641 0.719212 0.023498 -0.107265 -0.088231 0.695148 -0.284381 -0.297780 0.471725 -0.039278 -0.184003 0.374973 0.533131 -0.535157 -0.469129 -0.419888 -0.007623 0.001124 -0.422882 0.237153 -0.382493 0.109729 0.336753 0.045387 -0.446688 0.311561 0.084952 -0.142069 -0.106840 0.820841 0.682687 -0.325184 0.406689 -0.384993 0.258156 -0.763064 -0.372581 -0.042175 -0.141301 -0.131524 0.197928 -0.086148 0.389001 -0.070497 0.168490 -0.099183 -0.126116 +PE-benchmarks/strongly-connected-components.cpp__main = -1.379785 -0.328111 1.989921 -3.585569 3.209187 1.557561 1.366089 -0.428616 -3.795144 -1.708610 0.359435 -3.815685 -2.640818 4.986757 -1.584756 1.621510 6.042457 1.554231 -1.416847 -0.740391 3.302709 -0.981286 5.347912 4.456366 -3.965078 -0.112510 -0.261114 2.587357 0.381128 3.284321 -0.220234 -3.155376 1.420021 -1.298854 0.542128 -2.956895 0.516516 0.740768 0.012856 -6.592094 0.922049 1.819980 0.079577 -0.993712 -0.247865 1.788916 3.960572 3.593136 -1.117096 0.923221 2.485526 1.158661 -0.020769 1.213066 0.803396 0.301336 1.422440 -1.035291 -2.621555 -0.885650 -0.961118 -2.823798 0.292325 3.738560 4.806560 0.348913 -0.044308 0.926796 -0.022504 1.387137 1.726725 0.705655 0.606300 0.385835 2.126137 -2.240763 -0.455383 -5.650152 -0.618122 -8.440436 -2.816741 -1.394877 3.885852 1.860061 0.707258 -1.010929 4.401032 -0.389770 0.137568 3.685278 5.159172 -2.766814 -1.848162 -3.310026 -2.409600 1.617951 -2.117326 -0.576199 1.209824 0.918790 -3.504848 -1.852179 0.949761 0.592931 -1.414861 -0.928144 0.100160 4.002779 -4.488908 -1.825768 -2.201168 2.495676 0.118119 -6.056751 -1.059707 -1.982387 2.201815 0.598412 -1.032439 -2.091352 1.251437 2.083312 -1.607257 -0.706434 -2.965961 4.004552 0.994158 0.558595 0.613436 0.584191 0.538217 3.751796 2.338427 -2.229993 -0.329799 0.581315 -1.430124 0.480978 -2.651900 -1.289833 1.029527 -3.646461 0.506590 2.088122 -2.547785 -1.536836 -0.862655 0.084793 2.120714 10.103118 -0.687479 3.805297 1.888471 -4.171969 2.102609 -0.370156 -0.477377 0.803512 2.391182 0.937934 -3.421808 -3.518972 2.180991 4.097157 3.244064 -3.412583 -0.199761 -1.166157 -0.167185 -0.087971 0.500484 1.493082 -0.400567 -3.150465 -1.038026 1.951782 6.965345 -1.090707 -3.514226 1.957931 1.532358 -1.124062 -3.103517 -1.127996 -0.795741 0.178159 1.076020 -0.619346 2.271201 5.326321 -7.761087 4.185458 -0.055805 -0.543481 2.845915 -0.210063 -2.434475 -4.477581 -0.855529 3.369666 5.067577 -0.083686 -0.263306 0.593470 -3.618318 -0.076778 0.654719 1.345213 -0.965767 1.867009 0.155759 -2.721347 -2.478114 -1.387533 -1.025656 -0.277006 -1.270588 1.916018 0.984834 -6.795489 4.492026 -0.674152 -1.067421 0.523170 -0.304896 3.014455 -3.573946 -4.631319 1.875590 -0.737801 -3.127664 -2.494100 0.269255 2.715572 0.478517 0.722537 -1.833395 -4.473624 3.361702 -1.099271 3.111895 1.770674 0.476001 3.874364 1.951857 -1.594986 -2.882015 -2.665586 1.147117 -1.174614 -2.448183 0.297896 -1.248296 3.451921 3.771328 -0.157433 -2.052388 -1.017140 4.752492 -2.764387 -1.662586 3.345643 -0.283423 -2.577020 2.015666 4.084692 -4.101044 -1.456591 -2.626609 0.052004 -1.130388 -2.901062 1.744138 -1.026833 1.266058 0.921724 0.411016 -1.698370 1.354195 1.036292 -0.242198 -0.138523 5.652863 4.677392 -2.361707 1.177866 -3.257246 2.115831 -5.192673 -3.816727 0.799914 -0.212821 -1.763071 0.992345 -0.014693 3.295196 0.150326 0.035427 -0.967025 0.160530 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::~deque() = -0.465508 0.560119 1.348740 -1.358309 1.821671 0.935364 0.389199 0.187749 -1.149369 -0.961424 -0.488776 -1.463881 -1.869157 1.901485 -0.718589 0.161713 2.249656 0.498184 -0.329733 -0.313465 1.093267 -0.097527 2.081519 1.302854 -1.880133 0.029523 0.151762 1.403801 -0.001125 2.180807 -0.524418 -1.830501 0.413818 0.544126 0.775400 -1.101225 0.403371 -0.009976 -0.957544 -2.508292 0.161223 1.062533 -0.362164 -0.060405 0.032246 0.964558 2.033094 1.429761 -0.681388 0.022105 1.124807 0.877114 0.033761 0.613621 0.040935 -0.134009 0.893659 -0.796433 -1.217823 -0.267013 -0.376351 -1.617206 -0.347525 1.402727 2.026649 -0.016611 0.041809 0.158688 -0.413661 0.586233 0.328674 0.354354 0.871275 0.409146 0.961567 0.261151 -0.216759 -1.722934 -0.106879 -3.391126 -1.073685 -1.499230 1.259805 1.328056 -0.059630 -0.936972 2.154365 0.058704 0.409895 1.129912 2.381363 -1.092385 -0.608865 -1.879437 -0.818818 0.725009 -1.027924 -0.511533 0.132946 0.443190 -1.129134 -0.910189 0.068950 -0.370395 -0.594950 0.048127 -0.632577 1.803410 -2.143997 -0.179537 -1.779622 0.741353 0.340764 -2.471945 -0.782959 -0.385379 0.572705 0.092683 0.152947 -0.511618 0.543393 1.033484 -0.786078 0.006081 -1.579252 1.947358 0.572086 -0.458649 0.386727 0.295679 0.363911 1.012081 1.097389 -0.759655 -0.843705 0.423152 -0.496996 -0.311963 -1.297529 0.112299 0.408536 -1.475496 0.286583 0.914722 -0.877046 -0.466886 -1.438939 -0.820934 1.355978 3.521158 -0.518669 0.803329 0.108866 -1.741778 1.151455 0.232420 -0.627144 0.318215 0.769622 0.762979 -0.671232 -1.391772 0.994911 1.527103 1.174288 -1.217162 0.493901 -0.680162 0.064434 -0.456722 0.197337 1.056384 -0.533587 -0.809774 -0.502023 0.493713 2.485713 -0.380552 -2.401969 1.071080 0.786665 -0.368972 -0.556215 -0.479118 0.119116 -0.351508 0.719655 -0.351180 0.920094 2.252919 -3.383016 1.705173 0.660066 -0.657829 1.208426 -0.774387 -0.126188 -1.048771 -0.012850 1.808221 1.913738 0.217736 -0.115985 -0.390841 -1.527440 0.139819 0.421670 1.052336 -0.364259 0.553632 0.193565 -1.162612 -1.301382 -1.444525 -0.518830 0.071656 -0.966100 0.527111 0.407939 -3.665838 2.151226 -0.594230 -0.211770 0.125802 -0.134073 1.039657 -1.507267 -2.035816 0.701168 -0.388047 -1.668291 -0.959549 0.281872 1.208749 0.009312 0.459737 -0.808561 -2.110529 1.386758 -0.091542 0.832404 0.640582 0.875073 1.633069 1.357628 -0.856128 -1.057629 -1.132965 1.204506 -0.648055 -0.523639 0.730593 -0.308379 1.235620 1.941367 -0.064586 -0.414760 -0.904732 1.821891 -0.849244 -0.889307 1.532043 -0.408635 -0.789704 0.983139 1.739308 -1.271635 -1.445423 -1.411733 0.211432 -0.355675 -1.471328 0.281442 -1.185610 0.114150 1.279955 -0.043006 -1.470382 0.771947 0.244378 -0.611085 -0.593468 2.517935 1.843466 -1.238124 1.338469 -1.259542 1.036346 -2.356828 -1.333405 0.150480 -0.797753 -0.208279 0.472902 -0.052656 0.935145 -0.398810 0.422391 -0.396987 -0.500101 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.086960 0.007450 0.225831 -0.211146 0.169658 -0.050496 0.082272 -0.081162 -0.248976 -0.114555 -0.045527 -0.118980 -0.083242 0.302936 -0.107654 0.186736 0.478788 0.241598 -0.036889 -0.211864 0.247560 -0.427696 0.406023 0.440610 -0.347358 0.038353 0.201968 0.281744 0.184535 0.333062 -0.226223 -0.038754 0.114509 -0.259008 0.177896 -0.434551 0.043542 0.125748 0.046752 -0.602423 0.040672 -0.117332 0.179683 -0.008855 -0.035543 0.281366 0.281603 0.249885 -0.097546 0.190398 0.242715 0.010670 0.075410 0.099511 0.113234 0.244356 0.360454 0.040666 -0.135334 0.053536 -0.033947 -0.413083 0.163485 0.281529 0.419075 -0.031230 0.031184 0.085228 0.009145 0.035447 0.146072 0.073544 -0.092414 0.003105 0.142572 -0.612089 0.181247 -0.731169 -0.094819 -0.910930 -0.216033 -0.236248 0.147012 -0.147962 0.201482 0.198907 0.365501 0.004164 0.103786 0.013365 0.333344 -0.364821 -0.125023 -0.135467 -0.128546 0.126088 -0.182616 -0.086527 0.196266 0.038521 -0.190779 -0.274484 0.406871 0.122972 -0.154663 -0.057771 -0.052814 0.293587 -0.430781 -0.323324 -0.321613 -0.083763 -0.155081 -0.388926 0.335742 -0.250643 0.380731 0.050963 -0.043963 -0.341008 0.056942 0.322316 -0.063867 -0.154504 -0.248873 0.309237 0.074501 -0.055283 0.042833 -0.066631 -0.034185 0.325980 0.354768 -0.204877 -0.099020 0.177883 -0.354852 -0.057219 -0.329936 -0.177203 0.252290 -0.336160 -0.059154 0.109408 -0.209947 0.010250 0.488537 -0.009811 0.212679 0.719638 -0.007904 0.174337 0.120283 -0.313920 0.203810 0.002153 0.009236 0.196014 0.282352 0.046103 -0.482344 -0.283261 -0.006866 0.301053 0.215910 -0.318034 -0.401777 -0.233038 0.008047 0.179821 -0.020583 0.054277 -0.139876 -0.203489 -0.059742 -0.036162 0.563237 -0.148395 -0.098517 0.051129 -0.099113 -0.345447 -0.619229 -0.099454 -0.257296 0.035395 -0.250725 -0.038033 0.115926 0.367148 -0.807720 0.340143 -0.272540 -0.128101 0.305223 -0.062910 -0.070185 -0.626245 0.045650 0.194094 0.402332 -0.045447 0.061814 0.155560 -0.321655 -0.036858 -0.080833 0.193846 -0.177067 0.169346 0.122923 -0.319479 -0.182238 0.006708 0.070177 -0.188262 0.048549 0.146623 0.079425 -0.653634 0.274228 -0.131401 -0.125860 0.282353 0.071096 0.114864 -0.347362 -0.305254 0.139124 0.099797 0.021460 -0.262518 -0.001258 0.288243 -0.192140 -0.159393 -0.135591 -0.335067 0.064657 -0.223509 0.098413 0.154078 0.028874 0.316880 0.097701 -0.105747 -0.299533 0.211825 -0.267826 -0.247813 -0.056670 -0.114128 -0.092274 0.286175 0.489659 0.100939 0.111540 0.157729 0.443225 -0.328050 -0.189358 0.235945 0.192466 -0.091853 0.160675 0.247827 -0.407755 -0.220114 -0.134862 -0.137724 0.138862 -0.167037 0.258194 -0.240344 0.100893 0.106233 0.041313 -0.095016 0.245711 0.044340 0.042065 -0.065312 0.445378 0.532505 -0.172406 0.015401 -0.192958 0.057261 -0.407117 -0.143055 -0.081066 0.251643 -0.181812 0.139935 0.112146 0.280380 0.040519 0.000711 0.005849 -0.166405 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::begin() = -0.202872 0.386286 0.833724 -0.768901 0.740881 0.663745 0.189043 -0.256858 -0.591395 -0.176435 -0.161819 -0.690996 -0.517768 0.896668 -0.399165 0.147309 1.264190 0.331733 -0.258820 -0.189273 0.501414 -0.160129 1.084665 1.059747 -0.910557 0.088716 0.392530 0.531347 0.062486 1.142907 -0.746586 -0.784597 0.139268 -0.050805 0.323805 -0.661185 -0.043111 -0.154620 0.005727 -1.416468 0.125679 0.142903 -0.105700 -0.165007 0.055067 0.224360 1.196741 0.621110 -0.144701 -0.032234 0.501326 0.459086 0.015406 0.169219 0.468155 0.382453 1.055980 0.104745 -0.338463 -0.096058 -0.220767 -0.368177 -0.006361 0.894945 0.967628 0.200404 -0.037782 -0.128244 -0.013309 0.075126 0.060947 0.242278 0.126259 0.556816 0.235297 -0.560368 0.415169 -1.187655 -0.025019 -1.270032 -0.570493 -0.537621 0.234890 0.159621 0.337959 -0.187365 1.012782 -0.120191 0.279404 0.138672 1.220847 -0.796707 -0.263686 -0.529516 -0.607878 0.184427 -0.324243 -0.043659 -0.031420 -0.123919 -0.656769 -0.710872 0.454843 0.219050 -0.373789 0.221603 -0.018293 0.760374 -0.780992 -0.352142 -0.649748 0.104121 -0.146817 -1.246945 -0.260797 -0.522911 0.447637 0.043989 -0.333308 -0.923972 0.298948 0.789129 -0.426832 -0.286496 -0.594495 0.943956 0.412188 -0.118188 0.011412 -0.243427 0.250311 0.732486 0.572093 -0.494487 -0.047655 0.089640 -0.549570 -0.238206 -0.644003 -0.069346 0.051769 -0.611464 -0.037110 0.640851 -0.541499 0.137012 0.103735 -0.221219 0.526795 2.615566 -0.422937 0.596790 0.093695 -1.067311 0.592579 0.102466 -0.331137 0.046037 0.497640 0.538340 -1.244930 -0.678197 0.458356 0.927890 0.576733 -0.730285 -0.042129 -0.386019 -0.234039 -0.019455 0.217387 0.100492 -0.305176 -0.563418 -0.340214 0.301482 1.623293 -0.309597 -1.306758 0.280143 0.022696 -0.204843 -0.537440 -0.172870 -0.268376 0.149110 0.061376 -0.232281 0.652475 1.074539 -2.092426 0.902023 -0.179852 -0.683033 1.052886 -0.212143 -0.251461 -0.391656 0.145842 0.887979 0.981433 0.134289 -0.163550 -0.047398 -0.801328 -0.139136 0.017949 0.538595 -0.505640 0.448055 0.439181 -1.031418 -0.601283 -0.610279 -0.021681 -0.405799 -0.538191 0.330878 -0.162025 -1.886209 1.158023 0.176155 -0.041625 0.254066 -0.259352 0.226737 -0.835394 -1.020850 0.304624 0.022253 -0.121845 -0.228702 -0.102536 0.628955 0.032408 0.425198 -0.779203 -1.101091 0.417209 -0.136735 0.660075 0.397519 0.372359 0.654764 0.511793 -0.163682 -0.655640 -0.293573 0.435375 -0.055881 -0.483305 -0.060902 -0.421511 0.719646 1.037167 -0.125295 -0.074435 -0.472824 0.887336 -0.533418 -0.130440 0.533079 0.008439 -0.591755 -0.039051 0.667923 -0.590876 -0.588803 -0.481663 -0.355119 -0.270137 -0.676031 0.313934 -0.485343 0.178051 0.477706 -0.099053 -0.535670 0.332993 0.040843 -0.089465 0.154734 0.922134 0.905502 -0.436491 0.453935 -0.681219 0.518308 -1.158492 -0.737233 0.144851 -0.364537 -0.449572 0.009440 -0.031445 0.620249 -0.122308 0.290000 0.053010 -0.152096 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::end() = -0.202872 0.386286 0.833724 -0.768901 0.740881 0.663745 0.189043 -0.256858 -0.591395 -0.176435 -0.161819 -0.690996 -0.517768 0.896668 -0.399165 0.147309 1.264190 0.331733 -0.258820 -0.189273 0.501414 -0.160129 1.084665 1.059747 -0.910557 0.088716 0.392530 0.531347 0.062486 1.142907 -0.746586 -0.784597 0.139268 -0.050805 0.323805 -0.661185 -0.043111 -0.154620 0.005727 -1.416468 0.125679 0.142903 -0.105700 -0.165007 0.055067 0.224360 1.196741 0.621110 -0.144701 -0.032234 0.501326 0.459086 0.015406 0.169219 0.468155 0.382453 1.055980 0.104745 -0.338463 -0.096058 -0.220767 -0.368177 -0.006361 0.894945 0.967628 0.200404 -0.037782 -0.128244 -0.013309 0.075126 0.060947 0.242278 0.126259 0.556816 0.235297 -0.560368 0.415169 -1.187655 -0.025019 -1.270032 -0.570493 -0.537621 0.234890 0.159621 0.337959 -0.187365 1.012782 -0.120191 0.279404 0.138672 1.220847 -0.796707 -0.263686 -0.529516 -0.607878 0.184427 -0.324243 -0.043659 -0.031420 -0.123919 -0.656769 -0.710872 0.454843 0.219050 -0.373789 0.221603 -0.018293 0.760374 -0.780992 -0.352142 -0.649748 0.104121 -0.146817 -1.246945 -0.260797 -0.522911 0.447637 0.043989 -0.333308 -0.923972 0.298948 0.789129 -0.426832 -0.286496 -0.594495 0.943956 0.412188 -0.118188 0.011412 -0.243427 0.250311 0.732486 0.572093 -0.494487 -0.047655 0.089640 -0.549570 -0.238206 -0.644003 -0.069346 0.051769 -0.611464 -0.037110 0.640851 -0.541499 0.137012 0.103735 -0.221219 0.526795 2.615566 -0.422937 0.596790 0.093695 -1.067311 0.592579 0.102466 -0.331137 0.046037 0.497640 0.538340 -1.244930 -0.678197 0.458356 0.927890 0.576733 -0.730285 -0.042129 -0.386019 -0.234039 -0.019455 0.217387 0.100492 -0.305176 -0.563418 -0.340214 0.301482 1.623293 -0.309597 -1.306758 0.280143 0.022696 -0.204843 -0.537440 -0.172870 -0.268376 0.149110 0.061376 -0.232281 0.652475 1.074539 -2.092426 0.902023 -0.179852 -0.683033 1.052886 -0.212143 -0.251461 -0.391656 0.145842 0.887979 0.981433 0.134289 -0.163550 -0.047398 -0.801328 -0.139136 0.017949 0.538595 -0.505640 0.448055 0.439181 -1.031418 -0.601283 -0.610279 -0.021681 -0.405799 -0.538191 0.330878 -0.162025 -1.886209 1.158023 0.176155 -0.041625 0.254066 -0.259352 0.226737 -0.835394 -1.020850 0.304624 0.022253 -0.121845 -0.228702 -0.102536 0.628955 0.032408 0.425198 -0.779203 -1.101091 0.417209 -0.136735 0.660075 0.397519 0.372359 0.654764 0.511793 -0.163682 -0.655640 -0.293573 0.435375 -0.055881 -0.483305 -0.060902 -0.421511 0.719646 1.037167 -0.125295 -0.074435 -0.472824 0.887336 -0.533418 -0.130440 0.533079 0.008439 -0.591755 -0.039051 0.667923 -0.590876 -0.588803 -0.481663 -0.355119 -0.270137 -0.676031 0.313934 -0.485343 0.178051 0.477706 -0.099053 -0.535670 0.332993 0.040843 -0.089465 0.154734 0.922134 0.905502 -0.436491 0.453935 -0.681219 0.518308 -1.158492 -0.737233 0.144851 -0.364537 -0.449572 0.009440 -0.031445 0.620249 -0.122308 0.290000 0.053010 -0.152096 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/strongly-connected-components.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::~_Deque_base() = -0.853431 1.531773 2.312855 -2.951417 3.055930 3.837206 0.653660 -1.149561 -1.952866 -0.350063 -0.423691 -3.131373 -1.957773 3.423975 -1.489927 0.685292 4.243777 0.455799 -1.141382 0.389244 1.749905 1.310904 3.688843 3.138785 -2.781577 0.046726 0.887011 1.109684 -0.992728 3.950409 -2.227452 -4.307718 0.421825 0.310221 0.305595 -1.292814 -0.182621 -0.892587 0.546962 -4.215108 0.603496 1.376626 -1.151003 -1.020101 0.010662 -1.302183 4.450678 2.196520 -0.297404 -0.958253 1.446988 2.410339 -0.575640 0.529208 1.687442 0.863651 2.591885 -0.157293 -1.233409 -1.062912 -0.936232 0.446236 -0.727993 3.154381 2.992125 1.124963 -0.195977 -0.417254 -0.393933 0.350001 -0.191606 0.687419 0.713083 2.412882 0.510445 -0.212463 0.568791 -2.764137 0.116626 -2.016670 -1.787586 -1.238712 0.359702 1.967865 1.163307 -1.742482 3.311028 -0.778501 0.673380 1.122049 4.693174 -2.486261 -0.912210 -2.333472 -2.543816 0.402369 -0.931489 0.113958 -1.023102 -0.833289 -2.554676 -2.530795 0.136120 0.876712 -1.027828 0.357630 0.380862 2.456741 -1.932071 -0.820508 -1.362140 1.357794 -0.369320 -4.659105 -3.055261 -1.405208 -0.078846 0.010458 -1.490800 -3.487404 1.218422 2.479003 -1.808277 -1.209000 -1.296446 2.934450 1.768526 -0.058622 0.016061 -0.923156 1.384011 3.028185 1.029332 -1.637421 0.324274 -0.508827 -0.754461 -0.645191 -1.687408 0.110584 -1.307507 -1.945191 0.294005 3.132583 -1.801091 0.465713 -1.771748 -0.934217 1.659766 10.035945 -1.906695 2.421938 0.276227 -4.157581 1.915567 0.086432 -1.653858 -0.803021 1.132122 2.196097 -3.758573 -2.268851 2.519656 3.234036 2.139679 -1.922853 1.298922 -0.861810 -1.012021 -0.892548 0.890535 0.495937 -0.814044 -2.181031 -1.368088 2.018275 5.750188 -0.942567 -5.224333 1.647833 1.378322 0.414601 0.036570 -0.703100 -1.106059 0.547003 1.773717 -0.979288 2.658691 3.902491 -6.294244 2.931107 0.432393 -2.433546 3.403941 -0.437604 -1.365295 0.645592 0.308096 3.656903 3.163460 0.465628 -0.277689 -0.881814 -2.491660 -0.463084 0.534472 1.514318 -1.480712 1.324720 1.236621 -3.739028 -2.234867 -2.251846 -0.814850 -1.511282 -2.672304 1.070697 -0.395411 -5.844220 4.621030 1.470715 0.332241 0.202580 -1.547997 1.356282 -2.630793 -3.860475 1.282831 -0.438533 -0.400728 0.500374 -0.230435 1.911126 1.297416 2.833014 -2.868606 -3.894701 1.667046 0.645933 2.921475 1.181600 1.596097 1.498671 1.392702 -0.476911 -1.961373 -2.948303 3.128176 0.931047 -2.451120 -0.138183 -1.508312 2.677565 2.706392 -0.860858 -1.633371 -2.976750 2.413700 -1.247606 0.575638 1.846612 -0.886391 -3.008943 -1.304149 2.488762 -1.312380 -1.679552 -1.705112 -0.250942 -2.161989 -2.895105 0.230049 -0.931848 0.597732 1.645719 -0.646143 -1.981152 0.459156 0.473765 -0.425690 0.999888 2.657839 1.186440 -1.217308 1.710864 -2.658815 1.955408 -4.083497 -3.456516 1.384267 -2.716281 -1.701754 -0.504371 -0.635634 2.016856 -0.964151 1.928686 0.256911 -0.212900 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.505811 0.844616 1.322920 -1.512303 1.543086 1.701722 0.340376 -0.888870 -0.877962 -0.216542 -0.219635 -1.105424 -0.822816 1.705381 -0.873020 0.532119 2.354085 0.313364 -0.516282 -0.302882 1.374117 -0.139575 2.150913 1.851168 -1.761620 -0.046119 1.361837 0.768937 0.208633 1.788520 -1.549284 -1.508089 0.457858 -0.720190 0.350787 -1.095301 0.052617 -0.560286 0.555997 -2.253224 0.214088 -0.529385 -0.930975 -0.368556 -0.252023 0.188499 2.329663 1.223884 -0.438266 -0.295118 1.140243 0.981395 -0.467182 0.325530 0.801724 0.816218 1.675608 0.820840 -0.418444 -0.469495 -0.463624 -0.243812 0.072946 1.819619 1.778177 0.445055 0.084881 0.362482 -0.115091 0.032075 -0.060941 0.404633 0.288146 1.256346 0.560906 -1.838358 0.373091 -2.830979 -0.384961 -2.270691 -0.891524 -1.001361 -0.388674 -0.688778 1.044067 0.029867 1.812071 -0.096075 0.478471 0.508217 2.486521 -1.831783 -0.496669 -1.200166 -1.257950 0.108387 -0.703644 0.234126 -0.002634 -0.630016 -1.282868 -1.782907 0.658860 0.755326 -0.606258 -0.369580 0.043853 1.395568 -1.201265 -0.872777 -1.104524 0.015726 -0.655304 -2.579327 -0.784526 -0.962982 1.536262 -0.062532 -0.579416 -2.383778 0.488551 2.057523 -0.768371 -1.147983 0.243045 1.542849 1.214691 0.064564 -0.015733 -0.669022 0.634838 1.939155 1.580637 -0.824879 -0.112802 -0.201128 -1.174325 -0.454448 -1.173022 -0.058521 0.210406 -1.163985 0.139391 1.879109 -0.947083 0.176151 1.463117 -0.610206 1.097887 5.739965 -0.838882 1.131834 0.095316 -2.326031 0.725722 -0.172156 -0.736517 -0.019036 0.848514 1.088384 -3.043456 -1.321419 1.145724 1.670373 1.071417 -1.846932 -0.285975 -0.821790 -0.489678 -0.223539 0.027592 0.288817 -0.689010 -1.058124 -0.698162 0.972681 3.285316 -1.052822 -2.477503 0.785187 0.215951 -0.317656 -1.248858 -0.535383 -0.773265 0.423075 0.608821 -0.441472 1.350501 2.090903 -3.991970 1.457376 -0.526783 -1.380986 1.753827 0.042586 -0.625631 -0.391340 0.507366 1.920486 1.521613 0.332285 -0.087146 -0.164610 -1.445111 -0.213649 0.102828 1.031496 -0.802525 0.716641 0.951244 -2.183639 -1.428247 -0.606435 -0.068232 -0.957687 -0.718884 0.618316 -0.880156 -3.902045 2.489764 0.403172 0.009238 0.599747 -0.734896 0.892431 -1.649228 -2.176514 0.925325 0.086326 0.351120 -0.148337 -0.046631 1.280206 0.439514 1.178358 -1.640775 -2.504522 0.451348 -0.090856 1.326487 0.608428 1.040953 1.523490 -0.342223 -0.218451 -1.786860 -0.694332 1.025453 0.436496 -1.379208 -0.778223 -0.599348 1.636616 1.793706 -0.463921 -0.267363 -0.921395 1.427207 -1.727754 0.067649 0.954529 1.226786 -1.642496 -0.508261 1.193348 -0.983774 -1.169381 -0.626488 -0.662335 -0.830230 -1.613734 0.297870 -0.794726 0.422757 0.913520 -0.015935 -0.688041 0.556871 0.150883 0.341613 0.359500 1.278355 2.245120 -1.121778 0.134800 -1.442318 1.047979 -2.357376 -2.073384 0.814217 -0.799838 -0.691124 -0.088603 -0.028103 1.300686 -0.379169 0.588725 0.328840 -0.490634 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.709235 -0.073459 0.551905 -1.471759 1.160995 0.727957 0.416206 -0.345351 -1.203372 -0.601203 -0.209255 -0.886838 -0.596819 1.939514 -0.557882 1.126320 2.688392 0.785533 -0.337170 -0.414650 1.891771 -1.364098 2.105966 1.927832 -1.733368 -0.241844 1.086641 1.294017 0.450636 1.375984 -0.469219 -1.146320 0.574418 -1.416393 0.523268 -2.030294 0.544430 0.610935 0.491414 -2.861716 0.352875 -0.406235 0.032855 -0.370517 -0.567297 0.514369 1.710990 1.526282 -0.990783 0.223706 1.348559 0.565070 -0.408211 0.522492 0.072890 0.799513 0.446167 0.506752 -0.702494 -0.297815 -0.186942 -1.228052 0.790962 1.524226 2.226910 -0.022303 0.316663 1.048742 -0.011829 0.332056 0.533704 0.145286 -0.050506 -0.131216 0.968847 -2.775126 -0.412201 -4.220471 -0.400182 -4.187474 -0.909787 -0.990386 0.526998 -0.519850 0.923710 0.069175 1.773214 -0.156185 0.405189 1.411165 2.128366 -1.630310 -0.672819 -1.813842 -1.138443 0.739812 -1.010290 -0.376159 1.000892 -0.083695 -1.174870 -1.740640 0.904170 0.714626 -0.585252 -1.517174 -0.055848 1.655486 -1.662999 -1.505080 -1.185748 0.500294 -0.742189 -2.568802 0.488520 -1.352539 1.348268 0.035028 -0.117744 -1.931847 0.172954 1.794738 -0.514474 -1.070248 -0.306121 1.682170 0.743761 -0.062987 0.305985 -0.329760 0.009747 2.091482 1.823845 -1.016917 -0.501496 0.531351 -1.458336 -0.307079 -1.886669 -0.724002 1.261938 -1.798574 -0.163787 1.397616 -1.016245 -0.345258 2.224567 -0.382421 1.295304 5.650662 -0.062300 1.063423 0.651041 -2.019489 1.274303 -0.074545 -0.283636 0.694708 1.199157 0.265854 -2.986980 -1.525387 0.464206 1.496561 1.349019 -1.755292 -1.604638 -1.065911 -0.134078 0.264731 -0.404698 0.594646 -0.711210 -1.186754 -0.387691 0.740483 3.226799 -0.830439 -0.844899 0.826593 1.034966 -1.541596 -2.777165 -0.714430 -1.726128 0.045439 -0.132963 -0.365951 1.023534 2.184196 -3.894950 1.533124 -0.629818 -0.305911 0.937686 0.014220 -0.729407 -3.004825 0.221093 1.621697 2.155302 -0.388186 0.695988 0.390546 -1.504584 0.005219 0.094226 0.786493 -0.477558 0.600436 0.051272 -1.630145 -1.189034 0.312545 -0.575074 -0.945151 0.030028 0.657760 0.350665 -3.045322 2.044706 -0.646941 -0.314792 1.137955 -0.102746 1.455647 -1.811193 -2.143257 1.168843 0.512764 0.067281 -1.013190 0.312122 1.721569 -0.182315 -0.081606 -0.634652 -2.736518 0.498962 -0.723703 0.889602 0.593173 0.392852 1.803477 0.022545 -0.534449 -2.179343 -0.613491 -0.447507 -0.280321 -1.061243 -1.142455 -0.214776 1.722066 1.952429 0.068931 -0.426830 0.081806 2.174095 -1.882157 -0.534765 1.312531 0.942176 -1.298853 0.262764 1.555403 -2.150264 -1.037501 -0.873645 0.258930 0.157070 -1.570082 0.701689 -0.772640 0.577959 0.531526 0.243706 -0.324271 0.906462 0.779214 0.399940 -0.278777 2.270779 2.357544 -1.060045 -0.360387 -1.293829 0.448423 -2.503210 -1.696996 0.173832 0.467310 -0.603631 0.677984 0.596210 1.476384 -0.228620 0.663691 0.111540 -0.844893 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.840306 -0.121491 1.077032 -1.325219 1.335500 0.514384 0.707125 -0.315721 -1.529288 -0.833130 0.006255 -1.109433 -1.232819 2.300727 -0.772064 0.988315 3.221084 1.255146 -0.417876 -0.781691 1.890268 -1.609951 2.802029 2.700285 -2.145836 -0.167943 1.009647 1.402724 0.702018 1.529592 -0.884442 -1.032391 1.193874 -1.554383 0.681493 -2.190249 0.400089 0.426862 0.241506 -3.386935 0.277228 -0.390323 -0.164373 -0.273782 -0.391093 1.670832 1.960540 1.812328 -0.827771 0.754777 1.416992 0.103920 -0.067697 0.692563 0.461648 0.774043 0.753539 0.725572 -1.107448 -0.154533 -0.517196 -2.203495 0.455626 1.871604 2.677488 0.009258 0.243044 0.714836 -0.155999 0.468006 0.764236 0.355580 0.551261 0.022013 1.349191 -2.779482 -0.221481 -4.437106 -0.844420 -5.490976 -1.338477 -1.310432 1.255011 -0.961980 0.996307 0.133111 2.271081 0.137022 0.349838 1.234966 2.717982 -2.242848 -1.014680 -1.541139 -0.831468 0.771704 -1.418870 -0.069627 1.409905 -0.250454 -1.668815 -1.840796 1.325808 0.636746 -0.757218 -1.095982 -0.212211 2.215814 -2.264261 -1.524688 -2.087110 -0.042913 -0.467012 -3.057792 0.755888 -1.143400 2.280551 0.538742 -0.566436 -1.803371 0.538987 1.845394 -0.526903 -1.218462 -0.266237 2.192191 0.684966 0.063876 0.384652 -0.020665 0.042553 2.263554 2.433909 -1.098815 -0.457589 0.522417 -1.904859 0.032183 -1.977349 -0.833096 1.677666 -2.042796 -0.001238 1.145748 -1.418446 -0.450145 2.502725 -0.101222 1.396959 5.326448 -0.188393 1.470191 0.858846 -2.236293 1.403610 -0.313205 -0.032914 0.900737 1.749136 0.430627 -3.041388 -1.826794 0.685586 2.110540 1.570595 -2.571083 -1.497115 -1.216536 0.287883 0.019528 -0.125212 0.790925 -0.433373 -1.392130 -0.399931 0.863567 3.481141 -1.496514 -1.727033 0.694837 0.264862 -1.061502 -3.173326 -0.766619 -1.090755 0.174593 -0.106455 -0.212012 0.976773 2.688920 -4.531619 2.006963 -1.038602 -0.571721 1.662677 0.180759 -0.990584 -2.984297 0.330486 1.696286 2.384654 0.395910 0.092483 0.624762 -2.077564 -0.184212 0.016972 1.193246 -0.643354 1.038815 0.308525 -1.663821 -1.569108 -0.382471 -0.087900 -1.062621 0.081291 1.059540 0.281404 -4.331890 2.238870 -0.615269 -0.829145 0.998783 0.033807 1.418777 -2.277946 -2.686213 1.194963 0.017991 -0.747507 -1.579357 0.218526 1.701969 -0.206065 -0.315646 -0.879756 -2.867894 1.301032 -0.766993 1.370476 0.797777 0.508034 2.723757 0.344639 -1.014211 -2.175846 -0.232850 -0.080955 -0.991120 -1.205392 -1.042062 -0.381963 2.001759 2.680774 0.187676 -0.143588 -0.025230 2.628922 -2.601926 -0.975993 1.833581 1.809346 -0.866056 1.003570 1.962706 -2.518968 -1.349710 -0.978474 -0.554167 0.085418 -1.684337 1.015712 -1.355719 0.761690 0.615407 0.416043 -0.472085 1.081376 0.533362 0.393091 -0.300599 2.621378 3.769571 -1.792988 -0.072485 -1.668458 0.970410 -2.912762 -1.942532 0.323563 0.649615 -0.825057 0.684513 0.654850 1.644567 0.023493 -0.350703 -0.389341 -0.645053 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.578792 0.032268 0.850649 -1.325502 1.799190 0.696759 0.473044 -0.133104 -1.325587 -0.706830 -0.225915 -1.199456 -1.226877 2.024236 -0.519463 1.191693 2.400050 0.509857 -0.383380 -0.415151 1.812611 -1.092261 2.150219 1.347308 -1.878909 -0.030959 0.468766 1.271968 0.319896 1.689759 -0.835730 -1.119707 0.693360 -1.115019 0.496700 -1.435918 0.546247 0.385051 0.126174 -2.543220 0.222375 0.231616 -0.321642 -0.099722 -0.433882 1.113219 1.676436 1.514518 -0.933536 0.510315 1.332974 0.006135 -0.089828 0.673347 -0.001908 0.553825 0.598040 0.165310 -1.267266 -0.337044 -0.321203 -1.805971 0.364084 1.277536 2.102435 -0.308314 0.104446 1.225701 -0.219500 0.343315 0.641983 0.290852 0.428968 -0.211196 1.300342 -1.606492 -0.459901 -2.885444 -0.592665 -4.198886 -1.105488 -1.247275 0.923558 -0.054865 0.692959 -0.289962 2.099898 -0.104565 0.148099 1.171585 2.259559 -1.799787 -0.772325 -2.005451 -0.744727 0.507995 -1.166757 -0.690029 1.084649 0.025012 -1.210304 -1.304611 0.760216 0.244910 -0.567387 -1.049495 -0.515595 1.910968 -2.097074 -1.310318 -1.656337 0.516354 -0.384815 -2.497297 0.232728 -0.400444 1.242943 0.214419 0.197488 -1.345535 0.393662 1.538434 -0.682992 -0.827758 -0.424437 1.923403 0.800289 -0.058315 0.558775 0.210424 0.259262 1.815165 1.916644 -0.851760 -0.886832 0.490402 -0.921900 0.026316 -1.388223 -0.538503 0.914645 -1.919844 0.003750 1.115986 -0.921004 -0.087242 0.965868 -0.296597 1.194497 3.932705 -0.169032 1.013676 0.311845 -1.833970 1.343506 -0.107578 -0.335374 0.656149 0.975167 0.348012 -1.976280 -1.589933 0.949028 1.454045 1.233609 -2.027422 -0.827087 -0.964612 0.293596 0.038543 -0.353386 1.186598 -0.326749 -0.953879 -0.337093 0.426495 3.226143 -1.106429 -1.616442 1.318321 0.449234 -1.057778 -2.360148 -0.877299 -0.944450 -0.361058 0.183770 -0.204991 0.793861 2.355850 -3.423950 1.640195 -0.338399 -0.663613 1.247577 -0.309521 -0.428679 -2.300534 -0.261372 1.570509 1.995176 0.094755 0.192651 0.064554 -1.540882 0.265487 0.221689 0.773928 -0.202020 0.585855 -0.063419 -1.243374 -1.190682 -0.371400 -0.551044 -0.318827 -0.128015 0.631231 0.402260 -3.530846 1.920846 -0.756842 -0.432281 0.935016 0.235339 1.550220 -1.533139 -2.083602 1.181790 -0.032167 -0.924515 -1.202362 0.466865 1.326242 -0.037890 -0.346784 -0.644042 -2.694755 1.014424 -0.503971 0.821980 0.601490 0.498490 1.918645 0.632047 -1.043559 -1.680973 -0.645677 0.006338 -0.729555 -0.666495 -0.551459 -0.147909 1.708730 1.827730 0.296825 -0.137746 -0.460277 1.933052 -1.856761 -0.806199 1.749153 0.750324 -1.140596 0.781061 1.910693 -1.684419 -1.157789 -1.049854 0.115202 -0.258572 -1.346709 0.466900 -0.979750 0.267889 0.819637 0.178577 -0.689361 0.885101 0.426391 -0.075050 -0.914643 2.696834 2.682623 -1.527143 0.196660 -1.306886 0.897243 -2.384012 -1.609451 0.349806 0.420137 -0.574284 0.652149 0.761698 1.257454 -0.257827 -0.096454 -0.252011 -0.947223 +PE-benchmarks/strongly-connected-components.cpp__std::__deque_buf_size(unsigned long) = -0.327429 -0.541720 -0.250563 -0.817673 0.468122 -0.019868 0.083698 -0.359435 -0.969296 -0.056664 0.194318 -0.757189 0.224143 0.822662 -0.080890 0.841421 1.022145 0.268652 -0.326639 -0.032886 0.905333 -0.470108 0.483286 0.756256 -0.431431 0.038984 -0.352382 0.220354 0.035380 0.134618 -0.111022 -0.463374 0.118702 -0.913930 -0.190387 -0.440179 -0.015064 0.744882 0.873809 -1.037619 0.383653 0.086472 0.494882 -0.137241 -0.137767 -0.277520 0.291293 0.222818 -0.233326 0.468662 0.570466 -0.095030 -0.047276 0.075381 0.253407 0.584896 -0.052016 0.004345 -0.317731 -0.347162 -0.169534 0.228673 0.449753 0.315678 0.556743 0.019170 -0.160731 0.483020 0.343261 0.016175 0.526215 0.048322 -0.382044 -0.524368 0.238392 -0.944549 -0.205882 -1.403662 0.007313 -1.479196 -0.457595 0.351886 0.688312 0.217669 0.204654 0.046534 0.586340 -0.573112 -0.327418 0.454250 0.606169 -0.399428 -0.286993 -0.342277 -0.676001 0.038526 0.037725 -0.305577 0.433359 0.306636 -0.598475 -0.388161 0.475868 0.273325 -0.147834 -0.625247 0.339842 0.518454 -0.648351 -0.669160 0.303066 0.958437 0.061967 -0.640186 0.093663 -0.583616 -0.092612 0.034784 -0.561480 -0.646479 -0.004983 0.101245 -0.479537 -0.155698 -0.183534 0.267444 0.352668 0.224940 -0.040601 0.005915 0.037144 1.012613 -0.071374 -0.710415 0.211445 0.030982 0.057553 0.177411 -0.452970 -0.648346 0.054107 -0.703546 0.079894 0.067718 -0.415451 -0.026735 0.585030 0.325578 -0.245785 1.494956 -0.101041 0.957318 0.560549 -0.293716 0.385559 -0.029327 0.244157 0.315166 0.533187 -0.186379 -0.603168 -0.743932 0.539645 0.476010 0.329954 -0.475394 -0.667907 0.019966 0.018214 0.427035 -0.075025 -0.099405 0.109343 -0.355129 -0.092279 0.249572 1.460041 -0.037876 0.149580 0.383034 0.535792 -0.377661 -0.882989 -0.422988 -1.097782 0.104139 -0.009743 0.119812 0.474970 0.957817 -1.339441 0.531629 -0.277989 0.209257 0.308900 0.361815 -0.598951 -1.589697 -0.615724 0.196894 1.032818 -0.367488 0.404133 0.375328 -0.472082 0.001844 0.042214 -0.082258 -0.524858 0.304393 -0.068681 -0.465398 0.184824 0.488821 -0.591852 -0.161866 -0.113633 0.151272 0.619722 -0.648554 0.368004 0.093135 0.023255 0.480806 0.075593 0.798488 -0.255568 -0.316683 0.460342 0.121094 0.012248 -0.115331 0.260056 0.505793 -0.264100 -0.168467 -0.291286 -0.765809 0.551671 -0.220416 0.680265 0.057201 -0.645820 0.022934 -0.034573 -0.082889 -0.544525 -0.051469 -0.592360 -0.290611 -0.356037 -0.362148 -0.277278 0.571487 0.267002 0.300319 -0.619927 0.191528 0.622725 -0.402872 0.278854 0.558256 -0.208835 -0.647275 0.041325 0.754816 -0.780798 0.206215 -0.410641 0.147716 -0.253479 -0.144209 0.559876 0.378613 0.302607 -0.424480 -0.147965 0.274082 0.363206 0.449227 -0.006116 0.106955 1.040651 0.234868 0.092579 -0.193855 -0.525321 0.008798 -0.598732 -0.542778 0.066135 0.602087 -0.850068 0.054758 -0.068156 0.833618 -0.074877 0.231781 -0.108911 0.172724 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.310755 0.147580 0.699946 -0.671705 0.539508 0.103629 0.241426 -0.229616 -0.588818 -0.359932 -0.091261 -0.481361 -0.497314 0.923101 -0.364688 0.297061 1.370261 0.502425 -0.199682 -0.462954 0.803138 -0.855030 1.171321 1.184628 -1.028338 -0.017651 0.645612 0.747011 0.515325 0.773941 -0.551614 -0.245473 0.336708 -0.561660 0.507508 -0.980647 0.156481 0.066508 0.010547 -1.521838 0.099061 -0.284289 0.116807 -0.096939 -0.135963 0.855870 0.978325 0.753224 -0.389096 0.155626 0.705443 0.086042 0.028722 0.258402 0.260697 0.361461 0.843264 0.418668 -0.376613 -0.021385 -0.165170 -0.971969 0.313216 0.911230 1.192347 0.045013 0.117323 0.263307 0.058245 0.151716 0.238817 0.201611 0.105021 0.208194 0.515574 -1.430477 0.292269 -2.061375 -0.281998 -2.452062 -0.579518 -0.678575 0.350646 -0.566132 0.427341 0.233077 1.022943 0.122344 0.275974 0.308236 1.189204 -0.937226 -0.362972 -0.621394 -0.478121 0.351495 -0.559686 -0.027796 0.599116 -0.033159 -0.653487 -0.762786 0.738820 0.292159 -0.390706 -0.188529 -0.115837 0.882703 -0.961581 -0.605680 -0.891489 -0.213564 -0.237994 -1.334660 0.509910 -0.659539 1.082602 0.097594 -0.166647 -0.883081 0.164011 0.917059 -0.244924 -0.434131 -0.461086 1.004025 0.347385 -0.056224 0.099470 -0.131051 0.066831 0.809531 1.063262 -0.510117 -0.250506 0.236817 -1.011547 -0.167135 -0.905819 -0.330036 0.871518 -0.808495 -0.127860 0.489607 -0.580667 -0.106569 1.268325 -0.166245 0.668690 2.455986 -0.128310 0.556844 0.261600 -0.979719 0.621454 0.011363 -0.126268 0.402551 0.736191 0.299251 -1.476662 -0.809526 0.249045 0.912552 0.628350 -1.075536 -0.739434 -0.558362 -0.048523 0.114998 -0.053896 0.229882 -0.369821 -0.561124 -0.239438 0.285198 1.500581 -0.553266 -0.824917 0.234225 -0.064224 -0.597889 -1.478069 -0.278286 -0.449667 0.128200 -0.350965 -0.126148 0.511837 1.138188 -2.272875 0.912775 -0.454519 -0.386188 0.913052 -0.128385 -0.319254 -1.469081 0.274195 0.800352 0.988480 0.060807 -0.092390 0.232765 -0.913937 -0.097580 -0.076605 0.588913 -0.405162 0.448131 0.259354 -0.806242 -0.719535 -0.234662 0.059662 -0.431136 -0.004865 0.416118 -0.067151 -1.954937 1.072050 -0.288238 -0.273427 0.454326 -0.080126 0.348127 -1.035560 -1.081474 0.391532 0.114802 -0.148835 -0.763880 0.043245 0.780520 -0.262912 -0.145330 -0.542853 -1.210420 0.393054 -0.532364 0.492546 0.377526 0.328854 1.099215 0.317477 -0.284195 -1.010852 0.234380 -0.248911 -0.373158 -0.504452 -0.425066 -0.210435 0.816335 1.266015 -0.036840 0.186392 0.120906 1.104097 -1.044812 -0.563123 0.661806 0.627491 -0.439602 0.373681 0.721737 -1.016776 -0.678166 -0.478552 -0.484940 0.104322 -0.736799 0.481115 -0.631254 0.260797 0.397216 0.081767 -0.263005 0.561112 0.150615 0.158849 -0.069252 1.101679 1.722282 -0.719712 -0.000212 -0.723246 0.401129 -1.299878 -0.758661 0.100553 0.278863 -0.310006 0.262394 0.293824 0.728718 0.010271 -0.084249 -0.045124 -0.306429 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/strongly-connected-components.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/strongly-connected-components.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.624118 0.335706 1.317333 -1.471664 1.199859 0.592435 0.452520 -0.381653 -1.193483 -0.767042 -0.063913 -1.155330 -1.213651 1.872267 -0.877985 0.213108 2.649784 0.788554 -0.463833 -0.761218 1.475994 -0.809035 2.335291 2.264874 -2.053774 -0.129092 1.071286 1.314689 0.851640 1.382677 -0.722554 -1.031571 0.657104 -0.573891 0.789629 -1.583156 0.290936 -0.097268 -0.157276 -2.783940 0.221135 -0.315014 -0.311301 -0.221426 -0.156940 1.553337 2.029420 1.482265 -0.803465 0.135148 1.450426 0.659523 -0.207798 0.440861 0.375669 0.223872 1.266660 0.638277 -0.674153 -0.227359 -0.372159 -1.411594 0.220611 1.888737 2.272929 0.233675 0.199991 0.272057 0.086186 0.423163 0.404784 0.374489 0.587819 0.642101 0.998376 -1.897447 0.143638 -3.746504 -0.402781 -4.454489 -1.055413 -1.202040 0.934152 -0.736989 0.438207 0.048741 1.979015 0.297471 0.447638 1.141763 2.448508 -1.471716 -0.703171 -1.308340 -1.138169 0.732883 -1.059848 0.213348 0.726240 0.069905 -1.369522 -1.407193 0.712647 0.333449 -0.710957 -0.333253 -0.158918 1.681040 -1.820553 -0.586086 -1.541195 0.086391 -0.028731 -2.757744 -0.030558 -1.257446 2.057860 0.097820 -0.439747 -1.322521 0.341086 1.534624 -0.627890 -0.548291 -0.733841 1.821880 0.782354 0.036145 0.086869 -0.191411 0.319620 1.473028 1.682086 -1.001433 -0.381159 0.208990 -1.517625 -0.285911 -1.688160 -0.296208 1.496991 -1.365063 0.230093 1.050042 -1.115708 -0.652949 1.604695 -0.529029 1.269217 5.033808 -0.381398 1.245806 0.537974 -1.929616 0.844355 -0.036280 -0.314959 0.616269 1.295782 0.688540 -2.286921 -1.523182 0.763932 1.831838 1.238148 -2.003575 -0.636601 -0.768535 -0.213515 -0.187053 0.046233 0.449525 -0.723839 -1.047225 -0.561078 0.961992 2.717143 -0.818483 -2.014712 0.447223 0.487420 -0.626793 -1.778059 -0.428262 -0.370722 0.357573 0.235863 -0.251304 1.224821 2.291757 -4.473493 1.681597 -0.304137 -0.544742 1.400867 -0.041665 -0.771197 -2.014171 0.564402 1.684718 1.843412 0.293738 -0.211589 0.321114 -1.739780 -0.199739 0.132477 1.118795 -0.753870 0.813075 0.623179 -1.486194 -1.490875 -0.722933 -0.086326 -0.509537 -0.383796 0.817183 -0.386799 -4.089847 2.259284 -0.434037 -0.448813 0.318919 -0.500691 0.885604 -2.012887 -2.210777 0.736931 -0.038559 -0.721599 -1.255836 0.074607 1.457918 -0.162071 0.509491 -1.194917 -2.382267 1.087852 -0.695395 1.190817 0.696093 0.733091 2.194086 0.196411 -0.414960 -1.913794 -0.223769 0.583863 -0.394753 -1.216032 -0.280730 -0.417744 1.452558 2.234166 -0.371310 -0.187624 -0.123367 2.003319 -1.802680 -0.904990 1.192107 1.193325 -0.950955 0.816656 1.393322 -1.827845 -1.225441 -1.085615 -0.742155 -0.134755 -1.584215 0.791368 -1.029463 0.589869 0.810096 0.234738 -0.697305 0.948514 0.275186 0.207992 0.112614 1.969883 3.222316 -1.409806 0.281971 -1.576685 1.012315 -2.583414 -1.849587 0.404040 -0.285868 -0.443230 0.374789 0.000122 1.404605 -0.054283 0.047074 -0.228463 -0.122179 +PE-benchmarks/strongly-connected-components.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.463993 0.835491 2.354352 -2.791984 2.624463 1.413361 1.055597 -1.025485 -2.193519 -1.678985 -0.147619 -2.329481 -2.622564 3.998178 -1.711008 0.975229 5.546955 1.499880 -0.863061 -1.375730 3.414804 -1.985895 4.998474 4.561399 -4.149559 -0.388764 2.609248 2.478652 1.516917 2.630938 -1.598071 -2.216367 1.792613 -1.951255 1.427265 -3.202815 0.718913 -0.279135 0.134462 -5.535107 0.414907 -1.082301 -0.955412 -0.570832 -0.763083 2.856882 4.319217 3.202020 -1.710615 0.186175 2.891944 1.056906 -0.626111 1.093777 0.782135 0.623824 1.991207 1.523355 -1.533852 -0.670381 -0.888050 -3.094083 0.479790 3.881343 4.723941 0.446057 0.540687 1.299536 -0.213207 0.836773 0.645388 0.745197 1.333903 1.238556 2.252866 -4.661695 -0.158415 -8.070021 -1.388217 -9.391885 -2.242722 -2.569461 1.311834 -2.019289 1.496432 0.367154 4.079792 0.718060 0.906148 2.379503 5.429206 -3.626250 -1.565981 -2.944221 -2.083366 1.346857 -2.401431 0.554171 1.864850 -0.414489 -2.992727 -3.314820 1.645783 1.010748 -1.389427 -1.601331 -0.305297 3.611759 -3.664400 -1.745743 -3.423193 -0.324478 -0.524813 -5.947854 0.284312 -2.200298 4.496928 0.387577 -0.857741 -3.425545 0.775761 3.601647 -1.125292 -1.969542 -0.505739 3.741267 1.783348 0.246762 0.435085 -0.341617 0.742777 3.767155 4.163368 -1.851877 -0.849309 0.144845 -3.332991 -0.429610 -3.347547 -0.837192 3.076143 -3.117142 0.381130 2.716880 -2.342161 -1.260445 4.218009 -1.140782 2.747384 10.509445 -0.760919 2.545054 1.114894 -4.361571 1.819251 -0.579879 -0.831422 1.140011 2.761625 1.520103 -5.264251 -3.254109 1.830759 3.800746 2.648191 -4.505788 -1.784628 -1.842861 -0.139369 -0.580320 -0.214515 1.226804 -1.267717 -2.322317 -1.095389 2.303780 5.908416 -2.413248 -3.953953 1.389322 0.911322 -1.213824 -4.522848 -1.222557 -1.278103 0.613921 0.499765 -0.524086 2.313866 4.888988 -8.802695 3.398177 -0.993598 -1.273931 2.891436 0.206626 -1.773847 -4.400828 1.303913 3.819881 3.621345 0.653310 -0.088666 0.433992 -3.634099 -0.400957 0.248920 2.320518 -1.316692 1.673076 0.972473 -3.235544 -3.389801 -1.018359 -0.185162 -1.499895 -0.335105 1.747900 -0.500235 -8.409729 4.970448 -0.919306 -1.013946 0.967465 -0.958544 2.357773 -4.221930 -4.969807 1.924273 -0.275576 -1.177450 -2.420832 0.375265 3.025503 -0.079601 0.630669 -2.240560 -5.157997 2.129716 -1.185709 2.502333 1.356194 1.879008 4.877878 -0.117859 -1.248436 -4.244992 -0.561262 0.888378 -0.822002 -2.831058 -1.487260 -0.702124 3.419835 4.711669 -0.667494 -0.427210 -0.260737 4.015845 -4.562172 -1.753174 2.814451 3.343185 -2.318592 1.360383 3.111627 -3.739479 -2.695778 -2.026006 -1.332668 -0.490721 -3.684117 1.244663 -2.250724 1.127606 1.774968 0.442120 -1.124481 1.924683 0.747085 0.872911 -0.041599 3.880326 6.943021 -3.365114 -0.113729 -3.318927 1.978278 -5.585163 -4.292484 1.323855 -0.065630 -0.856472 0.683414 0.461720 2.868351 -0.319437 -0.115249 -0.412303 -0.787162 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::push_back(int const&) = -1.488296 2.209396 2.806934 -3.241036 4.528690 5.197904 1.367617 -1.631541 -2.502893 -0.856619 -0.595220 -4.371124 -3.398611 5.325328 -1.862577 2.081085 6.818100 1.019087 -1.381727 0.429257 3.260996 0.042155 6.096627 4.869866 -4.187095 -0.061227 2.059236 1.371922 -1.388933 5.390002 -3.851879 -5.731530 1.918825 -1.676357 0.573276 -2.285403 0.006429 -1.398535 1.245163 -6.406137 0.621556 1.183278 -1.744517 -1.489393 -0.770155 -0.820729 6.753774 3.598662 -0.535907 -0.846302 1.867698 1.773730 -0.629635 1.230631 2.554941 1.912427 2.943737 0.875732 -2.697065 -1.449352 -1.667277 -1.309277 -0.899919 4.499905 4.844045 1.236053 -0.027620 0.866429 -1.322716 0.428888 -0.243806 1.020909 1.694256 2.923762 1.718573 -2.328511 0.110829 -5.123368 -1.359456 -5.501746 -2.960110 -2.592317 0.143201 0.848180 2.953812 -1.938777 5.121744 -0.839873 1.128880 1.372223 7.754749 -5.365171 -1.953082 -3.920720 -2.548949 0.408108 -2.254686 0.112584 0.657615 -2.570354 -4.215681 -4.535453 1.452743 1.962247 -1.459290 -1.027559 0.205625 4.271033 -3.277130 -2.703136 -3.693684 0.027566 -1.418102 -7.399707 -2.467038 -0.939105 0.933820 1.095935 -2.077304 -6.315252 2.069070 4.710089 -2.125734 -3.572406 0.080720 4.990586 2.492674 0.205521 0.846472 -0.744476 2.029024 5.759458 3.989449 -1.908070 0.077886 -0.711243 -2.415777 -0.482798 -2.464867 -0.860678 -0.841985 -3.852930 -0.048823 4.986379 -2.988071 1.148457 0.275146 -1.011695 2.915617 14.086500 -2.489548 3.444175 0.316198 -6.725106 3.624117 -0.853216 -2.376408 -1.042663 2.428543 3.243279 -6.957620 -3.643239 3.791635 5.012904 3.357909 -4.423426 0.396644 -2.223115 -0.299131 -1.366302 0.623584 1.668114 -0.441749 -3.525887 -1.642145 3.095851 9.402398 -3.590319 -7.305701 3.008475 0.754893 0.457112 -3.147749 -1.663725 -2.500464 0.468385 1.563809 -1.234229 3.103738 6.177850 -8.593147 4.566907 -0.995941 -4.017285 5.641087 -0.228247 -2.150943 -0.764659 0.722665 5.785416 4.660585 1.436650 -0.440784 -1.336113 -4.059974 -0.657838 0.457899 2.642337 -1.591348 2.205637 0.991014 -5.625207 -4.018399 -2.734092 -0.677396 -3.188118 -2.541244 1.817763 0.225569 -9.091257 7.118601 1.667735 -0.316306 1.153490 -1.355314 2.479629 -4.394727 -6.687356 2.534790 -1.070022 -0.695729 0.036705 -0.094805 2.803695 2.035534 2.102171 -3.536174 -6.700076 2.785275 0.874931 4.363958 1.746031 2.793885 3.881286 2.031870 -2.038433 -3.591762 -3.650272 2.958132 0.132035 -3.794366 -2.210800 -1.845160 4.928961 4.861932 -0.657164 -1.525100 -4.139291 3.869565 -4.136594 0.217165 3.860022 1.107575 -4.296488 -1.670940 4.420330 -2.629938 -3.060097 -2.105347 -0.812170 -2.968936 -4.820964 -0.152130 -2.595932 0.727701 2.628217 -0.843020 -2.177772 0.803908 0.729888 0.101533 0.344635 4.236406 3.794279 -3.514886 1.275118 -4.126857 2.987688 -6.648024 -5.692928 2.588493 -1.762169 -2.511378 -0.509155 0.970113 2.743871 -1.422226 0.954872 -0.056791 -1.618424 +PE-benchmarks/strongly-connected-components.cpp__void std::deque >::_M_push_back_aux(int const&) = -1.597232 1.912867 3.369801 -4.068448 4.858931 4.824190 1.416533 -1.617534 -3.319078 -1.216159 -0.271961 -5.503812 -3.913333 5.755202 -2.221657 1.679450 7.438982 1.156149 -1.804165 0.018657 3.213906 0.498228 6.731911 5.600149 -4.789446 0.030487 1.406027 2.133313 -0.765893 5.438834 -3.607623 -5.744216 1.837312 -0.901814 0.761644 -2.313556 -0.024489 -1.337367 0.834723 -7.063951 0.850011 1.683772 -1.316156 -1.363288 -0.460263 0.380450 7.144818 3.993566 -0.685358 -0.747944 2.583530 1.943286 -0.291550 1.292180 2.520436 1.114195 3.911836 0.568620 -2.837908 -1.621905 -1.697314 -1.599802 -1.183675 4.989980 5.510607 1.351087 -0.332733 0.344990 -0.630256 0.771478 0.354604 1.191739 1.981132 3.065960 1.859499 -1.604476 0.661049 -5.638461 -1.041138 -6.766095 -3.260229 -2.440355 1.610398 1.346419 2.110662 -2.342446 5.659224 -0.630339 0.873567 1.648899 8.163629 -4.986153 -2.187410 -3.860255 -2.912345 0.901381 -2.395138 0.297798 0.807597 -1.464009 -4.511870 -3.853551 1.266550 1.311728 -1.783723 -0.059135 0.266887 4.525387 -3.798421 -1.869247 -3.681657 0.848103 -0.335694 -8.076333 -2.959435 -1.539881 1.096262 0.858729 -2.370294 -5.438921 2.060896 3.985560 -2.569557 -2.436076 -1.647261 5.482565 2.549598 0.432450 0.638263 -0.412035 2.345138 5.478516 3.206689 -2.540687 0.075612 -0.715878 -2.292371 -0.245402 -2.961318 -0.782526 -0.230183 -3.939032 0.434183 4.512939 -3.301650 0.618396 -0.715983 -0.803871 2.820692 14.706008 -2.513531 4.092258 0.879005 -6.599468 3.681489 -0.534508 -2.111764 -0.728350 2.463240 3.300014 -6.276515 -4.112544 4.144315 5.559949 3.690735 -4.913688 1.217161 -1.710539 -0.340658 -1.528772 0.945227 1.705163 -0.547661 -3.559680 -1.802907 3.474219 9.590155 -3.003414 -8.196621 2.859649 1.004511 0.661863 -2.661347 -1.590006 -1.669269 0.636971 1.781836 -0.886984 3.567175 6.860611 -10.050923 5.056002 -0.012834 -3.654510 6.263132 -0.409214 -2.575873 -1.306656 0.506766 5.799368 5.176669 1.500176 -1.031746 -1.002976 -4.527577 -0.778175 0.755231 2.619405 -1.873084 2.300752 1.343065 -5.228249 -3.999410 -3.703722 -0.780667 -2.251735 -3.189627 2.351249 0.034120 -10.243489 7.376995 1.498105 -0.616989 0.371307 -1.951624 2.430466 -4.837878 -6.683971 2.242163 -1.576166 -1.922822 -0.834291 0.060985 2.819697 1.666430 2.848231 -4.065974 -6.709836 3.725903 0.228380 4.720225 2.071908 2.530734 3.891671 2.861029 -1.796971 -3.677549 -3.542385 3.504436 -0.077664 -4.047197 -0.909428 -1.965207 4.799122 5.224058 -0.952160 -1.719576 -4.088129 4.208000 -3.909497 -0.542660 3.962883 0.453382 -4.373032 -0.476168 4.625562 -3.160181 -2.889675 -2.841543 -1.543007 -3.105430 -5.063680 0.504362 -2.335947 1.039508 2.745792 -0.834294 -2.601323 1.251891 0.575071 -0.448380 0.652993 5.154537 4.733987 -3.363747 2.003327 -4.816016 3.550670 -7.206506 -6.050973 2.752775 -2.484751 -2.913911 -0.513427 0.533582 3.266975 -1.233547 0.778345 -0.746412 -0.509570 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::size() const = -0.389187 0.478416 0.476187 -1.346852 1.442644 1.442268 0.392639 -0.832331 -0.953838 -0.035071 0.195885 -2.039872 -0.765643 1.182347 -0.694582 0.751905 1.850018 -0.100356 -0.689597 0.023328 0.636284 1.033674 2.015987 1.598727 -1.221540 0.103309 -0.035486 0.351473 -0.373156 0.878272 -1.034814 -1.556375 0.421719 -0.270732 -0.220379 -0.028059 -0.148506 -0.575312 0.906443 -1.603693 0.316695 0.342675 -0.067023 -0.407649 -0.159470 -0.188807 1.980865 1.072141 0.067279 -0.295927 0.921885 0.745777 -0.001421 0.313823 0.574280 0.165245 1.239472 -0.249876 -0.555406 -0.926244 -0.364464 0.472545 -0.384809 1.436055 1.273720 0.546380 -0.366347 0.220669 0.289470 0.080522 0.175795 0.520949 0.202125 1.118973 0.218917 -0.225121 0.542250 -1.002958 -0.186349 -0.920279 -0.969282 -0.256797 0.278606 0.613600 0.792408 -0.382394 1.611618 -0.280376 0.118925 0.297808 1.901216 -1.389790 -0.542852 -0.645162 -0.886249 0.037235 -0.404616 0.355662 -0.161458 0.048471 -1.311552 -0.659009 0.153734 0.377784 -0.524477 0.043283 0.471301 0.497233 -0.646551 -0.376810 -0.476212 0.716873 0.053221 -2.210860 -1.164349 -0.431917 0.030941 -0.099283 -0.774705 -1.650647 0.388699 0.689929 -0.905562 -0.448555 -0.783184 1.005027 1.026922 0.359981 0.216825 -0.121940 0.911070 1.933756 0.106542 -0.897974 0.103456 -0.466801 -0.225096 0.144872 -0.455206 -0.162683 -0.532311 -1.080502 0.718767 1.391977 -0.821404 0.213261 -0.630957 -0.039533 0.409409 3.720589 -0.765649 1.485858 0.542336 -1.687855 0.577503 -0.641023 -0.547651 -0.406623 0.333835 0.866110 -1.284489 -1.159790 1.405427 1.512035 0.931380 -1.099915 0.963538 0.186728 -0.106146 -0.458890 0.244429 0.359832 0.105866 -1.012686 -0.501133 1.236773 2.801790 -0.336260 -1.493612 0.897312 0.466407 0.530650 0.018622 -0.581803 -0.604449 0.266437 0.943496 0.158539 1.029659 1.825272 -2.275595 1.111616 0.228725 -0.795003 1.727448 0.119140 -1.064893 0.403617 -0.050393 1.404118 1.146238 -0.005507 -0.159081 -0.273250 -1.026824 -0.246616 0.280506 0.384692 -0.649800 0.591116 0.656332 -1.480716 -0.758053 -0.902397 -0.197274 -0.299720 -0.986705 0.783315 -0.134251 -2.432050 1.947327 0.719998 -0.294453 -0.116674 -1.079580 0.765915 -1.094543 -1.288024 0.645484 -0.647551 -0.116844 0.204470 0.098485 0.474339 0.555362 1.548636 -1.501116 -1.355779 1.087325 0.344866 1.454408 0.622893 0.498582 0.249394 0.029963 -0.196935 -0.766867 -1.137214 0.833939 0.426976 -1.372166 0.382355 -0.699816 1.216895 1.078725 -0.544015 -0.740627 -0.930924 0.687971 -0.849116 0.160915 0.788844 -0.024262 -1.667366 -0.287159 1.050183 -0.552447 -0.335367 -0.792596 -0.391905 -1.246050 -1.351774 0.260103 -0.156889 0.386134 0.691252 -0.395046 -0.489609 0.295373 0.033425 -0.108937 0.511914 1.277466 0.584042 -0.144115 0.429969 -1.501886 0.883511 -1.805206 -1.860049 1.145674 -1.061442 -1.231151 -0.427587 -0.150853 1.218390 -0.414508 0.267374 -0.365854 0.326753 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::max_size() const = -0.259213 0.088588 0.536903 -0.656534 0.553188 0.014424 0.177284 -0.171670 -0.544391 -0.437094 0.005716 -0.587248 -0.552758 0.772236 -0.362562 0.148416 0.947700 0.235316 -0.190841 -0.359704 0.606270 -0.391341 0.928095 0.779841 -0.857746 -0.023515 0.276152 0.664607 0.415877 0.560691 -0.127479 -0.339648 0.220207 -0.103546 0.332483 -0.585427 0.194842 0.090826 -0.136221 -1.055124 0.094897 -0.011928 0.059960 -0.031306 -0.080088 0.741767 0.718734 0.647059 -0.379296 0.123958 0.699655 0.237305 -0.015698 0.236214 0.025869 -0.121740 0.548988 -0.060382 -0.324427 -0.111957 -0.094563 -0.729054 0.102344 0.731930 0.964741 0.005086 0.083383 0.208951 0.023166 0.251469 0.256298 0.161404 0.151958 0.151548 0.412244 -0.642297 0.119854 -1.454017 -0.143733 -1.963120 -0.442577 -0.446301 0.525433 -0.006655 0.059487 0.088617 0.841202 0.236278 0.068366 0.502040 0.928762 -0.480458 -0.268771 -0.518551 -0.462150 0.359882 -0.463879 0.018962 0.241986 0.344820 -0.492590 -0.361859 0.257562 -0.017820 -0.295644 -0.088765 -0.145492 0.645184 -0.907718 -0.156897 -0.527290 0.148146 0.100544 -1.093672 0.120306 -0.499049 0.803165 -0.066646 -0.006716 -0.275788 0.090724 0.435764 -0.252794 -0.014337 -0.743127 0.677722 0.270155 0.029514 0.060304 0.006742 0.119788 0.489858 0.483034 -0.447779 -0.282462 0.089303 -0.459424 -0.014865 -0.651900 -0.109323 0.647632 -0.599692 0.146972 0.281615 -0.387322 -0.396396 0.344664 -0.233775 0.479840 1.584591 -0.057959 0.492364 0.281164 -0.675927 0.264021 -0.014758 -0.100258 0.345169 0.431684 0.173190 -0.484239 -0.672728 0.345955 0.680425 0.496591 -0.693269 -0.244363 -0.200049 -0.035541 -0.034057 -0.008622 0.275841 -0.341879 -0.381905 -0.220413 0.298616 0.952613 -0.130419 -0.561700 0.296175 0.237273 -0.352329 -0.674901 -0.207747 -0.043469 0.062084 0.023712 -0.047862 0.424538 0.937094 -1.803808 0.681359 0.078261 -0.057499 0.445632 -0.157867 -0.304425 -1.065722 0.122012 0.623671 0.698302 -0.042456 0.019041 0.152392 -0.698822 -0.008236 0.056788 0.344228 -0.258784 0.264918 0.193483 -0.445738 -0.576901 -0.275881 -0.085756 0.030876 -0.127427 0.354735 0.025469 -1.589597 0.842330 -0.367849 -0.209100 0.062147 -0.146756 0.434050 -0.751624 -0.759341 0.262907 -0.131567 -0.482105 -0.657141 0.142680 0.525071 -0.242246 0.077635 -0.357783 -0.737080 0.437362 -0.401668 0.309009 0.276659 0.273800 0.763146 0.185202 -0.183588 -0.684213 0.045242 0.118034 -0.309548 -0.376129 0.212637 -0.092545 0.518615 0.843821 -0.081261 -0.086626 0.171769 0.796014 -0.553686 -0.553060 0.517542 0.245151 -0.391108 0.567248 0.577418 -0.718202 -0.446881 -0.559411 -0.206222 -0.025878 -0.607311 0.376495 -0.282770 0.193513 0.350627 0.105909 -0.360763 0.487070 0.127923 -0.008727 -0.083583 0.982992 1.250875 -0.473903 0.174269 -0.619166 0.309363 -1.022347 -0.675877 0.142603 -0.016632 -0.138520 0.206719 -0.058998 0.597782 0.005966 0.039726 -0.140068 -0.009580 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.531006 0.764457 1.172356 -4.640936 4.621065 5.505256 1.284710 -2.829308 -3.628428 0.417708 0.769429 -6.225003 -1.863111 4.692148 -2.105362 3.140234 6.288677 -0.034767 -2.515682 0.581717 3.047317 3.233145 6.237127 5.086536 -3.854653 0.068352 -0.322329 0.726107 -1.255598 3.181488 -3.226144 -5.379427 1.489448 -1.711937 -1.081256 -0.709331 -0.328138 -0.943758 3.686016 -5.466540 1.297294 1.482513 -0.503152 -1.647506 -0.655803 -1.632580 5.882142 3.523135 0.026416 -0.816792 2.783179 2.403297 -0.511660 0.941855 2.136096 1.256070 3.061652 -0.195952 -1.855002 -3.065323 -1.260083 2.115249 -0.838118 4.545900 4.243769 1.710176 -0.977341 1.028592 0.874952 0.215554 0.840799 1.316345 0.582790 2.861826 0.847626 -1.074933 0.876111 -3.596977 -0.461410 -2.683081 -2.801433 -0.259615 0.943532 1.896368 2.792035 -2.116685 5.015189 -1.534086 -0.161107 1.651625 6.277671 -4.658605 -1.788272 -2.739882 -3.338717 0.031126 -1.342217 0.799359 -0.281161 -0.648482 -4.381463 -2.904635 0.183462 1.794241 -1.556683 -0.709399 1.692162 2.330189 -1.950874 -1.959118 -0.703612 3.086168 -0.475135 -7.073139 -4.206211 -1.955314 -0.611838 -0.271809 -2.743651 -5.777416 1.312080 2.579209 -3.018960 -2.209335 -1.409278 3.423306 3.440943 1.287636 0.381392 -0.713524 2.554206 6.635345 0.284434 -3.146534 0.811431 -1.407411 -0.454775 0.659606 -1.906265 -0.873190 -1.655749 -3.594766 1.429151 4.719967 -2.723160 1.199629 -1.203675 0.324906 1.178195 13.652124 -2.320397 5.029430 1.896458 -5.664058 2.290404 -1.587466 -1.499928 -1.104420 1.287643 2.345628 -5.429121 -3.981261 4.572688 4.875496 3.246151 -3.644774 2.450712 0.111373 -0.602698 -1.380101 0.618408 1.006662 0.205059 -3.577672 -1.654469 3.937146 9.619851 -1.631928 -4.820271 3.090550 2.205468 1.142114 -0.295587 -2.065386 -2.866125 0.935052 3.091132 0.132487 3.809260 6.151616 -7.298731 3.854814 0.288894 -2.644968 5.277070 0.676294 -3.709512 1.118204 -0.641103 4.454913 4.291034 0.007163 -0.079069 -0.479233 -3.502135 -0.646660 0.884680 0.938198 -1.984700 1.843467 1.830625 -4.772302 -2.320269 -2.039813 -1.321101 -1.729480 -3.125206 2.420716 -0.160698 -7.243956 6.166013 2.620781 -0.482506 0.215090 -2.976567 2.979510 -3.556363 -4.549856 2.505236 -1.339198 0.033360 0.871240 0.427416 2.087772 2.083041 4.825959 -4.829830 -5.423369 3.434890 0.994850 5.067698 1.819113 1.076078 0.728717 0.047450 -0.660607 -2.984158 -4.566187 2.767064 1.878478 -4.665564 0.189090 -2.185328 4.424205 3.023969 -1.332981 -3.129468 -3.503244 2.694851 -2.826593 1.244731 2.817958 -0.060407 -5.697081 -1.741901 3.804312 -2.194524 -0.808835 -2.251513 -0.756513 -4.096060 -4.227017 1.035582 0.071497 1.632952 1.392580 -0.970595 -1.242209 0.739760 0.743078 -0.388842 1.796213 4.432978 1.346125 -0.624079 0.903670 -4.827783 2.922086 -5.786962 -6.105671 3.563184 -3.366224 -4.372181 -1.102837 -0.290319 4.205218 -1.182136 1.508181 -0.751927 0.711654 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_node() = -0.467795 -0.161951 0.606725 -1.258905 0.961689 0.286940 0.305114 -0.414688 -1.215522 -0.450175 0.183508 -1.193784 -0.571725 1.453187 -0.511194 0.580728 1.857935 0.470953 -0.465309 -0.447254 1.116815 -0.549529 1.566857 1.548537 -1.301985 -0.012327 0.264165 0.900338 0.496300 0.766310 -0.355534 -0.697202 0.383692 -0.673484 0.227142 -0.952222 0.149830 0.300508 0.390173 -1.918666 0.316817 -0.041328 0.126967 -0.162711 -0.192747 0.726557 1.185442 1.018052 -0.512372 0.359810 1.123854 0.221681 -0.047679 0.307752 0.323096 0.188764 0.793541 0.258368 -0.521589 -0.274984 -0.229224 -0.699504 0.222361 1.169860 1.535305 0.105099 -0.059582 0.369593 0.265036 0.306062 0.600752 0.232275 0.069370 0.112797 0.629677 -1.330028 0.093489 -2.612931 -0.187726 -2.980957 -0.786482 -0.323832 1.027611 -0.176277 0.259497 0.055230 1.335276 -0.008545 -0.058008 0.806237 1.590140 -0.919208 -0.567904 -0.781753 -0.886583 0.504724 -0.588479 0.026100 0.636470 0.359936 -0.980021 -0.709392 0.568106 0.197833 -0.507437 -0.353812 0.082638 1.155277 -1.238506 -0.553540 -0.575771 0.627265 0.084847 -1.829021 -0.087358 -0.916074 0.977965 0.032992 -0.491575 -0.860752 0.201041 0.659808 -0.590041 -0.212821 -0.692413 1.078294 0.560809 0.279328 0.029061 -0.011333 0.319574 1.269419 0.628088 -0.928743 -0.078307 0.100300 -0.604443 0.121625 -1.087021 -0.470092 0.765941 -1.077033 0.268395 0.542863 -0.804965 -0.393413 0.908252 0.029316 0.492494 3.351818 -0.154278 1.168383 0.684241 -1.141900 0.611941 -0.040098 -0.005736 0.492482 0.799176 0.230623 -1.292446 -1.179548 0.695802 1.267771 0.909960 -1.387068 -0.565467 -0.297076 -0.089510 0.089220 0.026557 0.273873 -0.327117 -0.692429 -0.333729 0.714768 2.059389 -0.401957 -1.134311 0.457403 0.506203 -0.487659 -1.320359 -0.414839 -0.628621 0.236746 0.123147 0.003249 0.865132 1.695018 -3.091276 1.187456 -0.063266 -0.148881 1.015597 0.141975 -0.801290 -1.810832 -0.064758 0.902731 1.432524 -0.008739 -0.000623 0.407360 -1.173753 -0.122314 0.175736 0.388958 -0.546775 0.529967 0.260002 -0.809730 -0.689756 -0.234330 -0.325578 -0.156752 -0.313013 0.702058 0.058712 -2.522244 1.307786 -0.192819 -0.348633 0.253538 -0.363412 0.890485 -1.217235 -1.275884 0.561936 -0.135768 -0.546849 -0.807551 0.190250 0.874065 -0.184620 0.328201 -0.741736 -1.416050 0.855673 -0.629868 0.912795 0.513491 0.046988 1.038641 0.166222 -0.288862 -1.160717 -0.143821 0.165100 -0.319002 -0.842113 -0.141506 -0.303103 1.024032 1.260872 0.002761 -0.432045 -0.016505 1.309436 -1.082602 -0.531014 0.887083 0.377325 -0.868000 0.642157 1.064187 -1.346501 -0.378713 -0.810923 -0.398824 -0.247794 -0.953811 0.742075 -0.200068 0.508050 0.238028 0.082787 -0.281691 0.745947 0.299365 0.065591 0.100125 1.612091 1.839167 -0.666813 0.075738 -1.199349 0.625326 -1.672218 -1.314220 0.363773 0.053511 -0.762271 0.189807 -0.016018 1.147252 -0.003144 0.070922 -0.312517 0.190700 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.408233 0.257630 0.937473 -1.063627 0.886327 0.736787 0.275502 -0.540819 -0.782455 -0.226792 -0.001331 -0.858809 -0.578711 1.201998 -0.617772 0.380242 1.620213 0.391096 -0.415676 -0.341364 0.955859 -0.334712 1.515175 1.422408 -1.279209 -0.056730 0.651994 0.823326 0.436632 1.087845 -0.795715 -0.674461 0.331819 -0.445996 0.342291 -0.905889 0.151945 -0.082278 0.245003 -1.687864 0.176012 -0.204789 -0.171302 -0.192709 -0.114622 0.506729 1.327260 0.943592 -0.355302 -0.027843 0.916509 0.456223 -0.114208 0.271231 0.417704 0.327462 1.200707 0.397114 -0.363482 -0.279291 -0.236596 -0.559085 0.166109 1.252888 1.430497 0.245121 0.101542 0.166707 0.087551 0.155173 0.237689 0.260313 0.082426 0.615052 0.453570 -1.225374 0.441258 -2.093179 -0.219142 -1.983886 -0.657219 -0.619265 0.242814 -0.289313 0.542955 0.025152 1.261689 0.090123 0.196299 0.386219 1.568630 -1.124976 -0.405915 -0.737439 -0.834306 0.312440 -0.612901 0.144411 0.211330 -0.035453 -0.867485 -0.953888 0.534535 0.403572 -0.465284 -0.065142 -0.019233 1.001951 -0.958073 -0.572611 -0.698485 0.089734 -0.253977 -1.775171 -0.167207 -0.883213 1.027757 -0.054764 -0.318091 -1.196956 0.229929 1.093694 -0.446002 -0.501690 -0.520812 1.128453 0.669533 0.035390 -0.016614 -0.312443 0.273313 1.117576 0.842707 -0.699301 -0.147070 0.005493 -0.904772 -0.130812 -1.005196 -0.156566 0.538993 -0.870645 0.006961 0.916739 -0.679662 -0.038648 0.913543 -0.189493 0.719612 3.560284 -0.318841 0.862427 0.338717 -1.360440 0.632413 0.000742 -0.243856 0.288446 0.640857 0.468151 -1.831533 -1.015770 0.603357 1.168254 0.783077 -1.229169 -0.347635 -0.480255 -0.220518 -0.091393 0.035501 0.245797 -0.514572 -0.725169 -0.410610 0.608674 1.974043 -0.544671 -1.435816 0.442919 0.114755 -0.452415 -1.087212 -0.368552 -0.415668 0.263752 0.080850 -0.156262 0.848430 1.473059 -2.770199 1.081595 -0.197456 -0.607119 1.261012 -0.133752 -0.561417 -0.866425 0.305160 1.093397 1.106164 0.101227 -0.156646 0.192135 -1.096716 -0.138120 0.038086 0.613893 -0.537983 0.507662 0.550969 -1.150601 -0.934500 -0.488558 -0.049670 -0.501416 -0.415940 0.557739 -0.363283 -2.469630 1.487918 0.004204 -0.209406 0.362675 -0.446344 0.508562 -1.230673 -1.352685 0.516227 0.031581 -0.070129 -0.590920 0.077494 0.866574 0.003163 0.506800 -1.005410 -1.481536 0.450797 -0.424136 0.773115 0.444468 0.490768 0.971418 0.235271 -0.171428 -1.198592 -0.154477 0.356544 0.014299 -0.880727 -0.305990 -0.345092 1.037440 1.322208 -0.218509 -0.116956 -0.276265 1.185160 -1.027741 -0.386221 0.703358 0.547791 -0.898736 0.075383 0.832852 -0.972624 -0.704142 -0.562038 -0.572233 -0.283307 -1.029873 0.525004 -0.455659 0.419616 0.480683 0.075995 -0.440188 0.553083 0.172927 0.126884 0.205623 1.233039 1.641132 -0.642547 0.149943 -1.037485 0.634594 -1.629379 -1.214021 0.422230 -0.336064 -0.527961 0.138381 0.060389 1.004571 -0.065968 0.220079 0.035946 -0.170876 +PE-benchmarks/strongly-connected-components.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.320331 0.162315 -1.089123 -3.493943 3.624266 2.971774 1.232728 -2.645382 -2.449161 0.138038 1.286933 -5.684043 -1.323371 2.294380 -1.728677 3.420007 4.950402 -0.731016 -1.932150 -0.412211 2.233910 3.319872 6.029121 4.444104 -3.170422 -0.056490 -0.273799 0.601520 -0.443700 -0.836276 -1.942444 -2.908341 1.994725 -2.960777 -1.488502 0.479822 0.012779 -1.393950 4.279893 -3.542514 0.973108 -0.858752 0.261944 -0.956285 -1.364768 0.266003 4.476074 3.197010 -0.122712 -0.336438 3.363271 1.332881 -0.163696 1.065688 0.193728 0.266913 1.388726 -0.370197 -1.199312 -3.573608 -0.644196 1.776799 -0.438667 3.648653 3.261645 1.250712 -1.185806 2.647508 1.899460 0.121347 1.208069 1.540018 0.217109 2.124055 1.114079 -2.599076 0.470763 -3.934973 -1.370716 -3.774204 -2.621597 -0.254128 0.629454 -0.549893 2.995103 0.576414 4.265578 -0.577981 0.096273 1.588610 4.134726 -4.353296 -1.781908 -1.648138 -1.685901 0.100326 -1.325203 1.562094 1.063756 0.841070 -3.683176 -1.382658 0.277562 1.302667 -1.375874 -2.225275 1.912262 0.145918 -1.047523 -1.712070 -1.180010 2.388166 0.038460 -6.103003 -2.377757 -0.906334 1.339307 -0.524383 -1.805046 -4.846334 0.230133 1.430622 -2.247531 -1.734585 -0.314386 1.492633 3.482379 1.803264 1.236151 0.363145 2.538033 7.112283 0.567608 -2.607133 -0.229076 -1.346073 -0.779338 1.125687 -1.161712 -1.150145 -0.197041 -3.687074 3.454460 4.105061 -2.161949 -0.210142 1.248574 0.468895 0.768971 8.851030 -1.218668 4.517688 2.674729 -3.955154 0.466325 -3.526929 -0.715043 -0.616233 0.812138 1.465749 -3.198758 -3.380603 3.714708 3.773138 2.519118 -3.785554 2.034885 1.283752 0.673464 -1.265209 -0.560332 1.516151 1.170934 -2.675781 -0.789992 4.343656 7.526210 -1.167371 -0.899577 2.703226 2.149935 1.337306 -1.051594 -2.417630 -2.941528 0.580549 3.388780 1.776177 2.217318 4.944894 -4.465527 2.020300 0.340107 -0.534313 3.559713 1.877217 -3.862377 0.272189 -0.270098 3.051931 2.450376 -0.906539 0.424675 -0.074618 -2.387327 -0.513956 1.056805 0.400391 -1.226314 1.317873 1.459245 -3.055141 -1.501029 -0.455590 -0.531555 -0.287218 -0.940378 2.622199 -0.317521 -5.713653 4.615610 1.159839 -1.926590 -0.020173 -3.608246 3.496941 -2.949022 -2.625403 2.577332 -1.905867 0.493149 0.406079 1.081976 1.154012 1.587666 4.468137 -3.869468 -3.397603 3.215343 1.091436 3.886075 1.637902 0.672313 0.545166 -3.529339 -0.585099 -2.719794 -2.818040 0.268684 1.533137 -4.491469 0.498970 -1.329775 3.529671 2.630162 -1.790135 -2.290019 -0.858999 1.199278 -4.215810 0.343505 2.045200 2.612699 -5.047453 0.041177 2.713230 -2.183014 -0.090542 -1.800730 -0.624578 -3.172219 -3.895033 1.026422 -0.031950 1.578786 1.440220 -0.780485 0.397874 1.146736 0.294748 0.746792 1.111805 3.292066 2.503061 0.060639 -0.980780 -4.547357 1.983799 -4.854221 -5.887784 4.081877 -1.944484 -3.742377 -0.944651 0.160308 4.136663 -1.156638 -0.433032 -1.940446 1.163962 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_S_buffer_size() = -0.112110 -0.169443 0.031958 -0.327706 0.186556 -0.158090 0.067596 -0.103717 -0.424287 -0.173252 0.118412 -0.381119 -0.045186 0.341113 -0.102915 0.188108 0.380773 0.138979 -0.110422 -0.108159 0.206083 -0.162970 0.286025 0.362034 -0.218925 0.046730 -0.198037 0.174160 0.062216 0.140254 0.079130 -0.213855 0.070833 -0.084752 -0.023574 -0.193212 -0.002289 0.275769 0.134866 -0.437274 0.137753 0.128216 0.284420 -0.033607 -0.001934 0.112218 0.141529 0.171815 -0.062562 0.245555 0.268895 0.071311 0.042837 0.073210 0.092869 0.000808 0.108121 -0.262055 -0.143910 -0.066817 -0.053060 -0.109818 0.054879 0.199233 0.301161 0.001509 -0.049966 0.024699 0.064221 0.113237 0.256817 0.034632 -0.100920 -0.139550 0.054347 -0.166553 0.032835 -0.515991 0.012756 -0.780152 -0.202867 0.113650 0.478909 0.296971 -0.056634 0.059071 0.270319 -0.053519 -0.133741 0.204321 0.258150 -0.062147 -0.130053 -0.008479 -0.239253 0.120845 -0.051379 -0.050925 0.037375 0.319466 -0.225699 -0.007930 0.157301 -0.030847 -0.093627 -0.041748 0.085587 0.188082 -0.436828 -0.066849 0.067160 0.352398 0.170746 -0.294318 0.073130 -0.258615 0.080740 -0.011629 -0.194049 -0.003017 0.038294 -0.098492 -0.172549 0.142993 -0.491712 0.104477 0.009194 0.113379 -0.025335 0.024153 0.019110 0.254046 -0.156773 -0.305569 0.058522 0.013368 0.066883 0.126987 -0.182772 -0.190342 0.069138 -0.254550 0.152586 -0.100560 -0.180808 -0.203337 -0.095294 0.088279 -0.050656 0.324722 -0.011630 0.376005 0.277796 -0.116161 0.028232 -0.031199 0.105854 0.148502 0.199179 -0.076573 0.155774 -0.296359 0.180052 0.247146 0.184118 -0.104782 -0.131864 0.075725 0.013424 0.150374 0.060228 -0.023412 -0.025391 -0.169904 -0.068375 0.070186 0.402383 0.161324 0.113164 0.089078 0.189319 -0.110327 -0.147092 -0.088497 -0.150959 0.083624 -0.006549 0.041117 0.155045 0.376550 -0.680038 0.272231 0.015337 0.163422 0.062613 0.058633 -0.247581 -0.625703 -0.194868 0.068336 0.392995 -0.133179 0.168009 0.192030 -0.234702 -0.038341 0.001749 -0.022501 -0.202871 0.113857 0.056044 -0.136478 0.000000 0.028128 -0.124913 0.083783 -0.084701 0.149307 0.297731 -0.416652 0.152527 -0.057737 -0.067903 0.000999 0.024026 0.250359 -0.161770 -0.117729 0.074344 -0.107163 -0.232342 -0.165362 0.077226 0.145105 -0.220082 -0.017118 -0.038797 -0.062681 0.273873 -0.149154 0.196817 0.084495 -0.187048 0.051571 0.073191 -0.014937 -0.099330 0.059679 -0.087490 -0.279833 -0.073919 0.283289 -0.103763 0.145650 0.180642 0.118711 -0.249772 0.215564 0.304514 0.002027 -0.075486 0.216686 -0.176971 -0.140960 0.286940 0.267957 -0.336436 0.058278 -0.253945 0.022190 -0.043837 -0.074064 0.286494 0.145784 0.133488 -0.090896 0.012776 -0.064840 0.202220 0.108970 -0.075264 0.053608 0.466291 0.165245 0.059521 0.106505 -0.217131 -0.008666 -0.267121 -0.187231 -0.018445 0.164326 -0.287807 0.043818 -0.188420 0.320584 0.032797 0.100562 -0.118289 0.209595 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.527554 -0.012312 0.988322 -1.454098 1.531797 0.439207 0.328911 -0.330016 -1.133553 -0.494937 -0.227878 -0.647174 -0.738070 1.693051 -0.584656 1.022522 2.042162 0.422649 -0.399037 -0.680417 1.888787 -1.221103 1.844802 1.089917 -1.816855 -0.128843 0.958451 1.421080 0.863014 1.423431 -0.906163 -0.383413 0.411341 -1.206645 0.615769 -1.545847 0.653234 0.344006 0.198590 -2.126867 0.212527 -0.498252 -0.363022 -0.019260 -0.500352 1.311093 1.280853 1.390024 -1.058855 0.292919 1.539591 0.131243 -0.297718 0.570000 -0.114993 0.637575 1.044604 0.694344 -0.789840 -0.290125 -0.163862 -1.530846 0.742947 1.253270 1.923366 -0.300548 0.254564 1.298369 0.093942 0.259653 0.630334 0.185684 0.037445 -0.142075 1.152830 -2.321318 -0.131101 -3.320091 -0.504749 -3.947682 -0.764531 -1.198806 0.347817 -1.000406 0.692140 0.326034 1.783667 0.086909 0.188978 0.987754 1.751524 -1.566376 -0.570637 -1.822480 -0.891462 0.468034 -1.050463 -0.595137 1.088966 0.174557 -0.843772 -1.222543 0.765375 0.354795 -0.514430 -0.968552 -0.512822 1.661719 -1.750691 -1.238450 -1.316132 0.380261 -0.609747 -2.171549 0.418538 -0.822570 1.893799 -0.202439 0.447675 -1.348559 0.154399 1.760735 -0.584069 -0.723687 -0.133368 1.597973 0.900451 -0.058598 0.306210 -0.145663 0.086492 1.462614 1.972457 -0.851849 -0.968190 0.519424 -1.206068 -0.191601 -1.517137 -0.386132 1.330547 -1.604932 -0.023854 1.136239 -0.700316 -0.141414 2.094705 -0.366965 1.239961 4.030559 -0.034125 0.715613 0.202978 -1.580781 0.914917 0.112075 -0.217375 0.823675 0.779599 0.154981 -2.289655 -1.457299 0.624919 1.119174 1.080429 -2.043316 -1.232515 -1.049791 -0.010195 0.293386 -0.642374 0.973980 -0.764907 -0.727912 -0.378249 0.210740 2.714716 -0.941182 -1.438234 1.070863 0.326612 -1.498757 -2.458953 -0.806410 -0.892929 -0.180011 -0.044188 -0.235538 0.870112 2.002694 -3.629686 1.362289 -0.412226 -0.598355 1.065233 -0.323879 -0.221802 -2.329220 -0.068909 1.307863 1.647272 -0.117459 0.116348 0.307085 -1.325069 0.311564 0.099883 0.740040 -0.157011 0.343321 0.232198 -1.100909 -1.113641 0.007505 -0.354039 -0.202114 0.193873 0.541874 -0.381532 -3.434535 1.677344 -0.916104 -0.264771 1.078309 0.108637 1.285577 -1.438644 -1.716375 1.073726 0.441690 -0.254415 -1.324001 0.502917 1.434971 -0.230889 -0.103506 -0.756254 -2.523940 0.341642 -0.901440 0.467327 0.490704 0.543886 1.777971 -0.054348 -0.562757 -1.946001 -0.011489 -0.296923 -0.298964 -0.633998 -0.728506 0.051679 1.516323 1.597657 0.109909 0.249590 -0.027276 1.772610 -1.899329 -0.865228 1.295344 1.183155 -1.144492 0.697992 1.448564 -1.583395 -1.163851 -0.767885 -0.191219 0.004251 -1.161945 0.587610 -0.763088 0.350992 0.707083 0.402957 -0.493933 0.942852 0.370816 0.191615 -0.752356 2.247021 3.060327 -1.326948 -0.217884 -1.104829 0.754600 -2.121600 -1.421388 0.286132 0.303859 -0.347501 0.783493 0.689020 1.339798 -0.181484 0.093632 0.089460 -0.983139 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -4.823609 4.286355 6.664836 -13.626503 14.656398 17.899388 3.759331 -8.285724 -10.430657 0.237442 1.176735 -17.405378 -7.750364 15.963190 -6.941362 7.354661 19.757325 0.591475 -7.110250 1.657810 10.720736 7.282913 18.998673 15.697113 -13.236626 -0.060298 1.364849 3.425786 -2.951538 12.761618 -10.263419 -17.018257 4.503795 -4.197548 -1.703555 -3.685512 -0.446022 -3.399316 8.264839 -17.918095 3.212519 4.035121 -4.292564 -4.653216 -1.630414 -4.046027 19.559675 10.763862 -1.067250 -3.071600 8.312015 7.651292 -2.246839 2.927988 6.977077 3.550457 10.156143 1.106148 -6.059793 -7.949376 -4.376413 3.690175 -2.693389 14.759290 14.444415 5.516779 -1.636445 2.402442 0.339615 0.979174 1.292090 3.817077 3.460149 9.805900 3.751170 -3.580675 1.866869 -13.575520 -1.771254 -10.179141 -8.484910 -3.144882 2.213751 5.302562 7.808467 -6.966271 15.709442 -3.343557 0.187904 6.211744 21.781037 -14.364072 -5.246728 -9.978355 -11.403967 0.464987 -4.935457 2.818871 -1.806060 -3.274908 -13.447640 -11.534308 0.794782 5.347112 -4.784680 -1.889733 3.247245 9.950643 -7.548227 -5.493579 -3.726648 7.110664 -1.898272 -22.514059 -13.155466 -6.529064 0.558502 -0.059296 -7.535433 -17.482087 4.470562 10.311420 -8.644394 -7.594231 -3.372098 12.207504 10.355224 2.792007 0.397834 -2.763132 7.464538 18.395060 3.514658 -8.618793 2.042966 -4.485919 -2.694809 0.798556 -7.068929 -1.454747 -3.786202 -10.361253 2.469829 14.779287 -8.312598 2.704204 -3.075272 -1.131154 5.306822 44.256586 -7.281639 14.114075 3.969527 -18.757149 8.086272 -3.108506 -5.498420 -2.503554 5.113855 8.167532 -18.938436 -12.479549 13.927593 15.200701 9.686320 -12.134822 6.077293 -1.691236 -2.739998 -4.977181 2.440869 3.250445 -1.432420 -10.399760 -5.573966 11.836651 29.388009 -6.581461 -18.960969 9.615467 5.542277 2.972911 -2.456460 -5.744006 -6.552417 2.830008 8.995730 -1.290373 12.154413 19.422181 -25.550754 12.759439 0.595653 -9.320338 15.987555 0.744242 -9.984697 2.981405 -0.056327 15.534261 13.332184 2.164604 -1.693546 -2.267441 -11.921224 -1.790794 2.787760 4.658411 -6.335146 6.266573 5.443305 -15.848142 -9.745908 -7.592152 -4.226785 -6.125356 -10.392739 6.588947 -1.900305 -25.134480 20.581288 7.197971 -0.468359 0.827849 -8.281312 8.735884 -11.760244 -16.730114 7.581492 -3.848908 -1.343577 1.194336 0.922517 7.508298 6.624671 13.143926 -14.855355 -18.878481 10.020056 2.285280 14.883357 5.312159 5.534013 5.610087 2.685860 -3.013907 -10.997343 -13.403467 11.155848 5.192633 -14.130901 -1.174519 -6.561818 13.861773 11.050838 -3.862535 -9.005603 -11.964494 10.067160 -9.050768 2.274379 9.463244 0.500852 -16.642457 -5.459656 12.154406 -6.768388 -4.932337 -7.182359 -2.830841 -11.918280 -13.945755 2.383360 -1.591768 4.400483 5.262003 -2.436909 -5.206592 2.785623 2.326268 -0.699927 4.791759 13.935960 7.046182 -5.124114 3.837610 -14.534520 9.813441 -19.120766 -18.986737 10.137565 -10.129701 -10.741633 -2.923231 -1.254131 11.843381 -3.477013 4.781991 -0.978662 0.576115 +PE-benchmarks/strongly-connected-components.cpp__int** std::copy(int**, int**, int**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/strongly-connected-components.cpp__int** std::copy_backward(int**, int**, int**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.869720 0.124094 1.053992 -1.982164 3.072509 1.185078 1.248885 -0.573247 -1.819601 -1.187929 -0.003763 -1.363482 -1.932890 2.940846 -1.114988 1.892636 3.705398 0.738567 -0.193706 -0.866388 3.165972 -2.121583 4.050068 2.608544 -3.421771 -0.069497 0.782125 1.816910 0.443296 2.841827 -0.954059 -1.611545 1.795842 -2.246986 1.066546 -2.401227 0.726683 0.399037 0.300504 -3.854046 0.171736 -0.059128 -0.425012 0.131059 -0.732809 1.748100 2.819141 2.543937 -1.645866 1.159570 2.168025 -0.046732 0.105499 1.401205 0.265813 0.758436 0.657402 0.505274 -1.888529 -0.594785 -1.117644 -3.121140 0.907669 2.276225 3.674214 -0.366164 0.574430 1.761991 -0.963598 0.784684 1.313439 0.786258 0.635384 -0.474042 2.573932 -3.199098 -0.704632 -5.328764 -1.534519 -7.137518 -1.847104 -2.291075 1.096753 -0.660670 2.058453 -0.080014 3.166698 0.514528 0.454914 1.755065 3.341531 -3.007657 -1.072794 -2.682284 -1.259526 0.434653 -1.878904 -0.462096 1.968433 -0.379609 -2.146960 -2.002979 1.454110 0.694058 -0.726974 -2.398329 -0.843649 2.950864 -3.165744 -2.244563 -2.666732 0.352223 -1.281789 -4.315416 0.866188 -1.106553 2.517350 0.317016 0.480232 -2.044470 0.648793 2.898666 -0.832942 -1.910823 -0.065481 3.116543 1.531895 0.463490 0.912463 0.175644 -0.387516 3.246877 3.816006 -0.770760 -1.350522 0.317965 -1.620113 0.490471 -1.981443 -0.651299 2.094499 -3.009898 -0.133475 1.826854 -1.192310 -0.366256 2.546644 -0.456095 2.235468 6.588338 -0.339258 2.028819 0.976733 -3.174565 1.874008 -0.176957 0.141284 1.585952 2.142389 0.017352 -3.574601 -2.650429 1.226785 2.079776 1.782801 -3.706923 -1.907244 -1.574976 0.583383 -0.021976 -1.065655 1.566395 -0.419044 -1.985245 -0.167992 0.659479 4.839843 -2.137246 -2.369103 2.089575 0.714793 -1.947161 -3.980813 -1.695821 -1.918148 -0.197841 0.085051 -0.383397 0.836522 3.546638 -5.414364 2.428562 -1.225989 -0.673902 2.192094 -0.096598 -0.817964 -4.041660 0.057926 2.204149 2.597345 0.229664 0.163080 0.521551 -2.423581 0.706951 -0.053579 1.319524 -0.438346 1.049077 -0.305367 -2.227955 -2.409191 -0.793448 -0.451439 -0.748549 0.102776 1.063013 0.793276 -5.614273 2.672461 -1.167392 -1.374037 1.744193 0.522839 2.612979 -2.268593 -3.513996 1.827799 -0.530238 -1.356311 -2.417336 0.913247 1.852959 0.026979 -0.690121 -1.246709 -4.015156 1.683193 -1.151214 1.392230 1.247174 1.231433 3.815967 0.521320 -2.156185 -3.298149 -0.980278 -0.066136 -1.143484 -1.729048 -1.421325 -0.397965 2.734057 3.332778 0.719358 0.035819 -0.335448 3.629067 -3.599597 -1.340958 3.247490 1.988518 -1.628233 1.332058 3.163304 -2.599244 -2.140192 -1.152784 0.124802 0.044730 -2.345251 1.188023 -1.641443 0.914063 0.695498 0.869892 -0.900201 1.297731 0.578764 0.773067 -1.492057 3.982304 4.638471 -2.794073 -0.535843 -1.724177 1.135420 -3.871494 -2.575263 0.599592 0.760199 -0.584753 1.447699 1.153583 2.461663 0.023326 -0.517717 -0.207140 -1.584331 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/strongly-connected-components.cpp__int** std::__miter_base(int**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_wrap(int** const&, int**) = -0.094004 0.019219 0.230993 -0.225112 0.187042 -0.030752 0.085428 -0.093290 -0.252681 -0.122523 -0.046565 -0.124925 -0.094709 0.319760 -0.118501 0.192414 0.502530 0.239633 -0.038493 -0.218610 0.268158 -0.426262 0.432342 0.459415 -0.369990 0.034875 0.228867 0.286762 0.191823 0.338604 -0.233154 -0.057474 0.126169 -0.274716 0.177918 -0.444607 0.047246 0.115670 0.056593 -0.621531 0.040546 -0.138967 0.153557 -0.010648 -0.043617 0.287061 0.307364 0.264572 -0.109584 0.190091 0.261261 0.026773 0.061662 0.103396 0.112779 0.246852 0.360646 0.052262 -0.134540 0.045806 -0.037519 -0.415352 0.163016 0.303221 0.438937 -0.028649 0.034712 0.101136 0.004142 0.036669 0.142589 0.078950 -0.083405 0.017798 0.154701 -0.644639 0.168900 -0.779599 -0.105484 -0.950734 -0.224235 -0.250069 0.136642 -0.170907 0.214451 0.210247 0.384848 0.010318 0.109316 0.033402 0.362031 -0.385720 -0.129788 -0.150762 -0.141072 0.128338 -0.193763 -0.075030 0.194914 0.030762 -0.204689 -0.301452 0.407911 0.130580 -0.161329 -0.082359 -0.053898 0.307065 -0.446607 -0.331187 -0.336288 -0.085632 -0.163594 -0.420870 0.321795 -0.258513 0.419796 0.049303 -0.045832 -0.368465 0.058379 0.349028 -0.068463 -0.174062 -0.222270 0.316947 0.094680 -0.049694 0.044056 -0.072181 -0.024412 0.357065 0.381243 -0.209965 -0.104629 0.171709 -0.365863 -0.061602 -0.342645 -0.174113 0.262581 -0.349164 -0.045952 0.137273 -0.218569 -0.002949 0.525284 -0.026281 0.226708 0.785391 -0.013372 0.185301 0.124011 -0.341305 0.195407 -0.011175 -0.000115 0.199684 0.292826 0.058845 -0.512820 -0.296735 0.006983 0.318142 0.226080 -0.344711 -0.409065 -0.239731 0.004376 0.171450 -0.025376 0.059458 -0.148025 -0.212432 -0.066191 -0.015831 0.594363 -0.164054 -0.114908 0.060596 -0.085086 -0.346777 -0.633221 -0.106649 -0.265682 0.040668 -0.227608 -0.040820 0.129107 0.389632 -0.852524 0.348853 -0.277628 -0.134836 0.304871 -0.049532 -0.079772 -0.629323 0.058994 0.217252 0.411446 -0.041817 0.072536 0.153074 -0.337350 -0.038135 -0.075236 0.205007 -0.183565 0.176354 0.134165 -0.342014 -0.203292 0.014296 0.068804 -0.196446 0.049255 0.153905 0.064642 -0.706442 0.303600 -0.134490 -0.129007 0.287046 0.057879 0.140413 -0.368228 -0.332601 0.155942 0.097753 0.026009 -0.261081 0.000426 0.304311 -0.182946 -0.141232 -0.150793 -0.364421 0.067760 -0.219567 0.110135 0.159668 0.045596 0.345872 0.056895 -0.109158 -0.327838 0.201510 -0.248805 -0.238879 -0.077018 -0.127425 -0.094124 0.304681 0.510783 0.091867 0.101830 0.155542 0.455077 -0.362521 -0.187118 0.244811 0.236619 -0.112639 0.160108 0.258484 -0.418829 -0.233077 -0.140303 -0.137935 0.129883 -0.190660 0.258740 -0.250108 0.106671 0.118972 0.045783 -0.097718 0.255335 0.046769 0.056021 -0.063588 0.450504 0.573211 -0.193256 0.004564 -0.211116 0.067630 -0.436274 -0.177557 -0.066334 0.242864 -0.179586 0.138090 0.104633 0.295406 0.036230 0.005971 0.008597 -0.171667 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_base(int**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.449509 0.049402 0.452496 -1.067446 0.848479 0.312131 0.329773 -0.414432 -0.844442 -0.422050 0.053123 -0.854037 -0.535591 1.178258 -0.485025 0.638435 1.771441 0.406164 -0.302685 -0.507652 1.107846 -0.576300 1.634502 1.517581 -1.327312 -0.066492 0.669219 0.823938 0.489292 0.544021 -0.415500 -0.577520 0.478439 -0.910414 0.295408 -0.996665 0.227189 0.090635 0.449951 -1.838321 0.201218 -0.434559 -0.017189 -0.177271 -0.324185 0.686269 1.227935 1.063550 -0.572757 0.241802 1.105928 0.308697 -0.141275 0.336485 0.126926 0.300999 0.532668 0.323180 -0.402368 -0.310333 -0.142747 -0.758045 0.358514 1.209945 1.471258 0.084124 0.050326 0.624413 0.199032 0.207563 0.385279 0.291629 0.044776 0.241493 0.682044 -1.811323 0.026478 -2.740729 -0.350241 -2.945146 -0.799594 -0.620813 0.514538 -0.581025 0.622514 0.369766 1.343522 0.093094 0.237375 0.812717 1.464004 -1.169213 -0.501246 -0.858174 -0.731156 0.475566 -0.666960 0.116567 0.611778 0.136299 -0.940415 -0.920609 0.633792 0.380025 -0.507075 -0.717932 0.066754 0.924325 -1.096134 -0.781695 -0.861566 0.253429 -0.241704 -1.850255 0.174951 -0.795116 1.359358 -0.001032 -0.258270 -1.199356 0.090985 0.976363 -0.416399 -0.567835 -0.313383 0.965278 0.696965 0.157187 0.213900 -0.091751 0.253843 1.502083 1.051345 -0.750665 -0.296137 0.165978 -0.911500 -0.051105 -1.054889 -0.416085 0.903737 -1.142997 0.284210 0.839870 -0.744804 -0.396792 1.525866 -0.192401 0.725036 3.395528 -0.099748 0.968788 0.615941 -1.266026 0.485587 -0.329005 -0.155077 0.476792 0.820525 0.298349 -1.622735 -1.088108 0.498189 1.200178 0.873103 -1.340754 -0.761326 -0.406893 -0.048526 0.031234 -0.153207 0.329915 -0.319379 -0.756205 -0.278686 0.768494 2.003746 -0.539174 -0.694426 0.459184 0.523878 -0.596722 -1.528347 -0.475438 -0.847111 0.169481 0.163006 0.005644 0.736669 1.553684 -2.778469 1.001743 -0.323146 -0.184038 0.805390 0.207375 -0.726928 -1.663606 0.250597 1.002345 1.215373 -0.151966 0.238022 0.305844 -1.099795 -0.101824 0.110868 0.511687 -0.484304 0.539689 0.274656 -0.966043 -0.822314 0.032055 -0.179017 -0.384291 0.009782 0.636631 -0.039601 -2.427578 1.386699 -0.324346 -0.445269 0.484085 -0.435112 0.957963 -1.309860 -1.315094 0.709451 0.025285 -0.108647 -0.661825 0.168295 0.958338 -0.120490 0.253867 -0.730909 -1.452805 0.606341 -0.418049 0.770690 0.516009 0.291887 1.208895 -0.443697 -0.331857 -1.289151 -0.142087 -0.085445 -0.165200 -0.921385 -0.450165 -0.269369 1.090013 1.428510 -0.150769 -0.242536 0.200741 1.238561 -1.436744 -0.490521 0.804502 0.953531 -0.884489 0.450943 0.955401 -1.294235 -0.571176 -0.675966 -0.226800 -0.079543 -1.070369 0.621101 -0.491084 0.456090 0.441204 0.096550 -0.162625 0.726730 0.289639 0.340303 0.007219 1.346920 1.935090 -0.720588 -0.248602 -1.115067 0.461164 -1.705549 -1.334013 0.393615 0.126743 -0.532272 0.242522 0.129733 1.125910 -0.068819 0.053732 -0.178538 -0.158020 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.116891 -0.861914 -0.104587 -2.815243 2.050643 0.888064 0.853362 -1.094547 -2.367907 -0.305383 0.640003 -2.394337 -0.371316 2.546771 -0.915183 2.485844 3.913357 0.661815 -0.981249 -0.695538 2.586977 -0.395155 3.632646 3.208075 -2.505978 -0.266382 0.455172 1.523490 0.450614 0.297131 -0.658365 -1.323497 1.024675 -2.836009 -0.287399 -1.737088 0.568118 0.695391 2.325300 -3.705250 0.805827 -0.766186 0.346681 -0.644737 -1.075407 0.256165 2.049212 2.477692 -1.100682 0.653926 2.579045 0.472243 -0.455404 0.787751 0.093081 0.883551 0.172216 0.491595 -0.954007 -1.333029 -0.202899 -0.449906 1.044936 2.385145 2.904349 0.252528 -0.159061 1.924969 1.014688 0.383183 1.419059 0.475848 -0.625476 -0.098495 1.344036 -3.907517 -0.318630 -5.582268 -0.683539 -5.188954 -1.792977 -0.405970 1.436098 -0.893964 1.754702 0.704058 2.744276 -0.386540 0.056437 2.113360 2.608570 -2.613720 -1.313155 -1.964730 -1.726960 0.947826 -1.222521 0.088707 1.568310 0.602606 -2.231938 -1.526777 1.015387 1.149123 -0.958773 -2.337295 0.847366 1.579183 -1.643100 -2.267339 -0.939898 1.961801 -0.605654 -3.956222 -0.153435 -1.687224 1.982818 -0.215195 -0.838501 -2.861736 0.002671 1.536612 -1.219667 -1.261149 -0.304499 1.571490 1.766932 0.827896 0.692447 -0.084088 0.579833 4.200460 1.365060 -2.036522 -0.370081 0.281391 -1.297038 0.470159 -2.083184 -1.360110 1.268425 -2.872679 1.106615 2.014635 -1.668278 -0.645015 3.122334 0.527050 1.087503 7.601438 0.021913 2.779439 2.027361 -2.496715 1.113210 -1.145701 0.078734 0.884122 1.429246 -0.050631 -3.374429 -2.534584 1.270607 2.491772 2.152168 -2.771710 -1.541473 -0.418787 0.079052 0.259440 -0.691334 0.843917 -0.141819 -1.845691 -0.436318 2.126720 4.738383 -0.877850 -0.682660 1.420680 1.994796 -1.277851 -3.063162 -1.483702 -2.946782 0.327185 0.914611 0.446450 1.691603 3.519188 -5.122721 1.918722 -0.478869 0.161532 1.675942 1.034161 -2.322149 -3.466347 -0.265121 1.709827 2.822137 -0.933453 0.925649 1.031135 -2.057784 -0.141609 0.469337 0.362247 -0.779212 0.973129 0.204674 -1.770900 -1.115839 0.743310 -1.005116 -0.684279 0.185194 1.627645 0.276555 -4.161280 2.579594 -0.339454 -1.167235 1.279248 -1.273086 2.780002 -2.553278 -2.399190 1.944246 0.156124 0.309508 -0.910812 0.747358 1.909256 0.100095 1.080101 -1.551200 -2.914226 1.468184 -0.590816 2.084070 1.106541 -0.206275 1.559921 -1.718841 -0.662548 -2.546263 -1.118791 -0.579675 0.226002 -2.458767 -1.125745 -0.585797 2.588870 2.295197 -0.168261 -1.295034 0.366784 2.448096 -3.041431 -0.486963 1.807639 1.531298 -2.540595 0.606332 2.312618 -3.017798 -0.362765 -1.336488 0.200245 -0.537675 -2.208626 1.518568 -0.083006 1.406904 0.276890 0.205832 0.329257 1.347010 0.982155 0.868513 0.210086 3.137059 2.946531 -0.668622 -1.172832 -2.648016 0.780398 -3.447680 -3.190530 1.300034 0.173600 -2.095651 0.576368 0.460726 2.975072 -0.324702 0.320573 -0.639671 -0.007026 +PE-benchmarks/strongly-connected-components.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.171884 0.050852 0.341734 -0.393905 0.317832 0.078100 0.123261 -0.195829 -0.347576 -0.158248 -0.050141 -0.168938 -0.147673 0.499203 -0.218607 0.269230 0.764142 0.295944 -0.088650 -0.303474 0.489791 -0.524849 0.669199 0.669323 -0.581636 -0.004320 0.441817 0.406399 0.314245 0.438573 -0.355937 -0.115276 0.204254 -0.454548 0.227288 -0.623860 0.097837 0.095820 0.138491 -0.856437 0.064975 -0.323967 0.034488 -0.034839 -0.108680 0.405426 0.493706 0.414699 -0.216748 0.184873 0.441672 0.103551 -0.026209 0.146545 0.142900 0.335987 0.478542 0.230044 -0.150936 -0.005377 -0.072776 -0.495366 0.240901 0.503120 0.658381 -0.003478 0.080206 0.217743 0.022768 0.049250 0.173025 0.104188 -0.065267 0.090497 0.261726 -1.021463 0.157080 -1.275295 -0.185902 -1.367077 -0.298250 -0.370101 0.088795 -0.426243 0.337057 0.306068 0.563146 0.043168 0.153567 0.151650 0.596421 -0.592019 -0.190800 -0.301587 -0.275993 0.164728 -0.303223 -0.032325 0.280831 -0.016114 -0.329161 -0.517455 0.492872 0.230569 -0.222827 -0.227787 -0.058799 0.474202 -0.585136 -0.460047 -0.464277 -0.099946 -0.257764 -0.704027 0.321455 -0.415666 0.752107 0.023791 -0.072378 -0.617187 0.071202 0.608169 -0.122057 -0.324088 -0.095775 0.462107 0.239539 -0.023844 0.037332 -0.147655 0.002357 0.583609 0.634764 -0.306078 -0.151837 0.169874 -0.564533 -0.106141 -0.530296 -0.201820 0.437100 -0.491410 -0.020253 0.335946 -0.317145 -0.051187 0.950593 -0.089355 0.368931 1.432222 -0.045679 0.297661 0.168396 -0.567379 0.232604 -0.042446 -0.029247 0.273769 0.413396 0.116507 -0.906467 -0.456678 0.085536 0.476458 0.345931 -0.616702 -0.565659 -0.357100 -0.035974 0.168578 -0.090443 0.102359 -0.256508 -0.312201 -0.127340 0.098932 0.908025 -0.309831 -0.301195 0.128063 -0.038924 -0.462813 -0.899920 -0.185298 -0.376366 0.096651 -0.175534 -0.070629 0.268244 0.616641 -1.328159 0.480977 -0.373528 -0.212515 0.423591 0.002868 -0.160158 -0.813162 0.141500 0.394711 0.563648 -0.023640 0.089839 0.203932 -0.500038 -0.048899 -0.067109 0.319066 -0.246826 0.237134 0.232293 -0.533197 -0.371679 0.050872 0.065232 -0.293130 0.075305 0.231227 -0.078948 -1.157393 0.544650 -0.175405 -0.156286 0.392944 -0.013015 0.287094 -0.575853 -0.569038 0.287175 0.156347 0.096043 -0.357267 0.030873 0.487968 -0.170778 -0.054489 -0.302258 -0.669727 0.083118 -0.294844 0.219476 0.210516 0.145471 0.590455 -0.120099 -0.122018 -0.613904 0.203786 -0.217200 -0.193254 -0.245179 -0.288524 -0.109231 0.492492 0.719181 0.041027 0.098385 0.164519 0.640851 -0.656876 -0.227481 0.345716 0.541057 -0.274925 0.167872 0.378168 -0.599655 -0.368687 -0.186110 -0.221148 0.107103 -0.370987 0.328592 -0.334112 0.188278 0.185438 0.105295 -0.108133 0.353887 0.088327 0.160810 -0.044364 0.588696 0.985513 -0.353428 -0.090889 -0.369750 0.163415 -0.705164 -0.422098 0.020364 0.223973 -0.215445 0.182278 0.125045 0.473775 0.016962 0.035194 0.046417 -0.241725 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.479063 0.046100 0.457175 -1.170073 0.923984 0.448012 0.368742 -0.520663 -0.914311 -0.401128 0.105331 -1.007672 -0.554794 1.279645 -0.535344 0.744776 1.886788 0.393321 -0.379853 -0.503158 1.151633 -0.440791 1.776239 1.624535 -1.403673 -0.063286 0.622281 0.779145 0.502479 0.562396 -0.448814 -0.683388 0.562443 -0.930387 0.278421 -0.970719 0.213697 0.073241 0.572171 -1.932180 0.233555 -0.392056 0.021264 -0.215614 -0.324000 0.661723 1.327808 1.140465 -0.518377 0.226133 1.148742 0.371103 -0.138461 0.356193 0.190178 0.309848 0.599949 0.231439 -0.434952 -0.382986 -0.158944 -0.661598 0.312365 1.311107 1.559228 0.112320 0.030183 0.654110 0.261940 0.218655 0.414298 0.321642 0.058127 0.315533 0.650718 -1.856525 0.058270 -2.753273 -0.367167 -2.979852 -0.862747 -0.595287 0.533837 -0.521540 0.692481 0.265306 1.431590 0.094479 0.194915 0.770852 1.592818 -1.278246 -0.536876 -0.886549 -0.726652 0.459870 -0.704251 0.169246 0.625672 0.095834 -1.036304 -0.931743 0.638605 0.420101 -0.543773 -0.718802 0.125544 0.979639 -1.094834 -0.820003 -0.812269 0.341300 -0.263417 -2.000793 0.176763 -0.849561 1.282831 -0.016013 -0.310179 -1.313539 0.106913 1.013338 -0.481138 -0.630482 -0.419280 1.047475 0.802721 0.205483 0.203689 -0.055779 0.316523 1.670749 0.990162 -0.824634 -0.253247 0.112121 -0.884028 0.004416 -1.085142 -0.437908 0.878637 -1.209635 0.281262 0.942159 -0.790277 -0.321282 1.480968 -0.143441 0.724422 3.642210 -0.150549 1.094534 0.684153 -1.373632 0.515240 -0.385258 -0.169161 0.439595 0.829692 0.324320 -1.758415 -1.180297 0.596477 1.306620 0.932717 -1.410599 -0.678269 -0.400834 -0.086070 -0.048735 -0.139746 0.346189 -0.302952 -0.832100 -0.311846 0.857857 2.194808 -0.586448 -0.698668 0.502150 0.566919 -0.539742 -1.496625 -0.536788 -0.899744 0.208237 0.211791 0.057084 0.822671 1.669961 -2.843251 1.086874 -0.307569 -0.239644 0.941181 0.228161 -0.830158 -1.625737 0.229404 1.075422 1.276035 -0.195339 0.267973 0.322220 -1.181894 -0.118367 0.104902 0.498484 -0.514798 0.537577 0.341465 -1.019415 -0.847243 0.023720 -0.193690 -0.433834 -0.049475 0.706139 0.043821 -2.531709 1.497018 -0.261117 -0.474486 0.487305 -0.525397 1.046404 -1.380459 -1.348068 0.740980 -0.006782 -0.106769 -0.639309 0.180680 0.991086 -0.142100 0.412082 -0.846218 -1.517024 0.679065 -0.410996 0.870027 0.556551 0.307742 1.173588 -0.480966 -0.339414 -1.317406 -0.314874 -0.051564 -0.085815 -1.035241 -0.372172 -0.309892 1.184379 1.467458 -0.176274 -0.349330 0.154032 1.247594 -1.546404 -0.435085 0.853218 0.972448 -1.015582 0.390771 1.015793 -1.331385 -0.556167 -0.698934 -0.276205 -0.175871 -1.152275 0.663509 -0.443960 0.518754 0.420983 0.088510 -0.169216 0.752351 0.294234 0.310048 0.074079 1.423309 1.929012 -0.702283 -0.270445 -1.226854 0.536679 -1.802172 -1.464792 0.493635 0.040607 -0.650683 0.213439 0.113362 1.225603 -0.070184 0.072204 -0.222476 -0.119823 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.264659 -0.878422 -0.081187 -3.328381 2.428168 1.567468 1.048206 -1.625702 -2.717255 -0.200769 0.901042 -3.162512 -0.467334 3.053709 -1.166778 3.017547 4.490091 0.597599 -1.367090 -0.673069 2.805911 0.282392 4.341331 3.742844 -2.887781 -0.250350 0.220485 1.299526 0.516550 0.389008 -0.824935 -1.852837 1.444696 -2.935875 -0.372337 -1.607357 0.500658 0.608423 2.936398 -4.174545 0.967510 -0.553675 0.538947 -0.836455 -1.074480 0.133438 2.548576 2.862263 -0.828786 0.575582 2.793117 0.784271 -0.441339 0.886291 0.409340 0.927796 0.508620 0.032887 -1.116926 -1.696290 -0.283884 0.032332 0.814193 2.890956 3.344197 0.393509 -0.259778 2.073454 1.329227 0.438642 1.564153 0.625917 -0.558719 0.271704 1.187402 -4.133524 -0.159669 -5.644989 -0.768173 -5.362488 -2.108742 -0.278336 1.532594 -0.596536 2.104535 0.181760 3.184615 -0.379615 -0.155866 1.904034 3.252641 -3.158885 -1.491306 -2.106605 -1.704441 0.869345 -1.408977 0.352102 1.637779 0.400280 -2.711380 -1.582450 1.039450 1.349502 -1.142266 -2.341646 1.141313 1.855753 -1.636599 -2.458881 -0.693418 2.401154 -0.714218 -4.708909 -0.144375 -1.959452 1.600186 -0.290103 -1.098051 -3.432654 0.082312 1.721490 -1.543364 -1.574384 -0.833981 1.982477 2.295716 1.069377 0.641392 0.095772 0.893232 5.043791 1.059148 -2.406368 -0.155633 0.012105 -1.159680 0.747764 -2.234447 -1.469229 1.142924 -3.205871 1.091878 2.526079 -1.895640 -0.267463 2.897840 0.771853 1.084431 8.834847 -0.232095 3.408166 2.368422 -3.034747 1.261475 -1.426970 0.008313 0.698139 1.475079 0.079224 -4.052828 -2.995532 1.762049 3.023986 2.450240 -3.120931 -1.126187 -0.388495 -0.108664 -0.140403 -0.624029 0.925289 -0.059682 -2.225166 -0.602119 2.573537 5.693691 -1.114222 -0.703874 1.635511 2.210001 -0.992952 -2.904552 -1.790453 -3.209945 0.520969 1.158537 0.703647 2.121614 4.100574 -5.446631 2.344378 -0.400985 -0.116499 2.354900 1.138093 -2.838297 -3.277000 -0.371084 2.075210 3.125447 -1.150318 1.075404 1.113016 -2.468280 -0.224326 0.439505 0.296232 -0.931682 0.962569 0.538717 -2.037760 -1.240486 0.701636 -1.078481 -0.931990 -0.111090 1.975188 0.693668 -4.681935 3.131191 -0.023311 -1.313319 1.295349 -1.724509 3.222207 -2.906275 -2.564063 2.101892 -0.004211 0.318899 -0.798232 0.809282 2.072996 -0.007956 1.871173 -2.127745 -3.235324 1.831805 -0.555553 2.580757 1.309251 -0.126999 1.383386 -1.905184 -0.700334 -2.687536 -1.982726 -0.410266 0.622925 -3.028046 -0.735781 -0.788412 3.060696 2.489940 -0.295786 -1.829002 0.133240 2.493262 -3.589733 -0.209779 2.051217 1.625887 -3.196061 0.305476 2.614580 -3.203548 -0.287721 -1.451328 -0.046784 -1.019315 -2.618155 1.730608 0.152615 1.720226 0.175781 0.165633 0.296301 1.475112 1.005131 0.717239 0.544384 3.519002 2.916142 -0.577094 -1.282048 -3.206951 1.157972 -3.930794 -3.844423 1.800137 -0.257080 -2.687709 0.430952 0.378874 3.473535 -0.331529 0.412931 -0.859362 0.183957 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::deque() = -0.134985 0.044647 0.354579 -0.483050 0.549910 0.088847 0.201529 -0.076119 -0.407593 -0.278064 -0.051622 -0.180261 -0.325538 0.508851 -0.287880 0.175487 0.685734 0.233144 -0.013232 -0.281671 0.504541 -0.378768 0.741296 0.550209 -0.705318 0.024032 0.113630 0.478491 0.178216 0.686325 -0.124277 -0.301142 0.235834 -0.141753 0.304135 -0.578276 0.132328 0.152816 -0.140631 -0.819860 0.057798 -0.000649 0.042683 0.076769 -0.017101 0.407801 0.497784 0.453760 -0.305719 0.254868 0.487982 0.245467 0.043596 0.254718 0.039321 0.121099 0.323786 -0.150682 -0.267560 -0.045194 -0.181933 -0.602183 0.195018 0.471546 0.717687 -0.050878 0.134087 0.101580 -0.145468 0.189439 0.302293 0.144318 0.017558 -0.064976 0.377894 -0.501782 0.032796 -1.026964 -0.154732 -1.410365 -0.331059 -0.483727 0.314472 0.081345 0.233004 0.075510 0.612696 0.129432 0.150404 0.304597 0.508293 -0.395476 -0.138557 -0.394031 -0.335471 0.155184 -0.298252 -0.118973 0.119839 0.181319 -0.328582 -0.302921 0.279213 0.022939 -0.164612 -0.222198 -0.186577 0.521719 -0.756563 -0.260011 -0.457251 0.191631 -0.141264 -0.732082 0.163584 -0.416548 0.575146 -0.062501 0.129748 -0.190198 0.089220 0.484241 -0.180338 -0.105689 -0.412918 0.526413 0.225250 -0.027770 0.073586 -0.059290 -0.179646 0.419442 0.532085 -0.221229 -0.284187 0.153560 -0.277176 -0.021859 -0.470031 -0.018652 0.402115 -0.502966 0.042335 0.208508 -0.209486 -0.205406 0.253148 -0.177671 0.457101 1.142493 -0.074755 0.344908 0.202824 -0.515001 0.204794 0.102414 0.077607 0.392987 0.415288 -0.043707 -0.417980 -0.502799 0.098033 0.357492 0.318506 -0.495146 -0.327218 -0.279669 0.003384 0.106822 -0.145075 0.174713 -0.253007 -0.345423 -0.072836 -0.030371 0.763861 -0.095040 -0.351627 0.261544 0.180152 -0.494158 -0.487499 -0.242835 -0.204330 0.019747 0.006511 -0.109986 0.195625 0.633348 -1.258435 0.482187 -0.152620 -0.036584 0.295043 -0.124494 -0.047141 -0.758621 0.027789 0.344465 0.556591 -0.070394 0.089278 0.189560 -0.463995 0.116494 -0.043675 0.307502 -0.202035 0.176221 0.131822 -0.453949 -0.402199 -0.218670 -0.036267 -0.025069 -0.060315 0.167531 0.116068 -1.172288 0.438645 -0.299046 -0.212263 0.310834 0.100566 0.397027 -0.427307 -0.539629 0.247191 -0.003275 -0.274563 -0.500111 0.152708 0.436881 -0.197254 -0.018578 -0.264172 -0.582288 0.257773 -0.279509 0.156583 0.248568 0.199692 0.637110 0.093809 -0.252740 -0.562935 -0.041329 0.027289 -0.281780 -0.190195 0.097328 -0.116946 0.389802 0.703643 0.135435 0.012186 0.128760 0.789240 -0.437606 -0.292289 0.526305 0.192629 -0.178379 0.398957 0.528033 -0.528447 -0.473294 -0.274077 0.039679 0.168959 -0.347146 0.388474 -0.300562 0.212159 0.144694 0.221534 -0.326272 0.331715 0.079280 0.064328 -0.204890 0.800798 0.811812 -0.339140 0.105242 -0.240678 0.132154 -0.690593 -0.302954 -0.095449 0.016909 -0.068008 0.355615 -0.050349 0.537416 0.036175 0.130601 0.021996 -0.215045 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_base() = -0.627181 0.670745 1.713219 -2.899518 3.759007 2.452366 1.054755 -1.027844 -1.888266 -0.533929 -0.086584 -1.701600 -1.823028 2.728789 -1.469646 1.422070 3.150286 -0.073343 -0.638755 -0.514704 3.141252 -0.432064 3.770218 2.075285 -3.667066 0.133988 0.193505 1.849310 0.263870 3.734842 -1.531376 -2.047191 0.955257 -0.886064 0.987738 -1.561598 0.531214 -0.140666 0.188069 -3.295611 0.291287 0.546803 -0.775404 0.245706 -0.283809 0.868231 3.200373 2.271264 -1.531147 0.267548 2.461182 0.980751 -0.088442 1.199622 0.504489 0.590413 2.015496 0.205193 -1.448340 -1.144616 -1.152486 -1.440470 0.729122 2.481409 3.394596 0.042807 0.466571 1.085196 -0.619291 0.642841 1.069566 0.953265 0.346521 0.310484 2.121135 -1.394138 0.117304 -3.668542 -0.726811 -4.449886 -1.660144 -2.105502 0.499183 0.536507 1.806658 -0.919813 3.227399 0.232781 0.295499 1.338171 3.087979 -2.390380 -0.553708 -2.678641 -2.208193 -0.082242 -1.313475 -0.454294 0.467441 0.021755 -2.005624 -1.553948 0.570667 0.469915 -0.698519 -1.217020 -0.790438 2.518032 -2.614207 -1.297052 -1.474749 1.456499 -0.963511 -4.194944 -0.928742 -1.674705 1.485862 -0.703905 0.714290 -1.758705 0.486670 2.820337 -1.477145 -1.184886 -0.996844 2.983421 2.229001 0.296050 0.434669 -0.402648 -0.195381 2.567864 2.491695 -0.897211 -1.286612 -0.239070 -0.650870 0.234654 -1.619719 0.362044 1.013435 -2.331996 -0.061847 2.091838 -0.659588 0.159755 0.407672 -0.799810 1.980576 7.382271 -0.980275 2.151722 0.530698 -3.069232 1.634914 0.548086 -0.146879 1.321898 1.402687 0.148977 -3.325485 -2.649696 1.780779 1.768586 1.389967 -3.087331 -0.224707 -0.972257 -0.275334 -0.349550 -0.877368 1.122484 -0.797811 -1.728622 -0.535005 0.502575 4.952730 -1.145699 -3.570497 2.418958 0.975816 -1.668624 -1.592780 -1.709503 -1.165583 -0.034411 0.895903 -0.544911 1.605490 3.455120 -5.520258 2.217850 -0.239160 -1.199469 2.665369 -0.712766 -0.479737 -1.736510 -0.193653 2.271211 2.322324 -0.048860 -0.447542 0.116685 -2.169346 0.954184 0.076585 1.120836 -0.849345 0.801244 0.457923 -2.581999 -2.254377 -1.820979 -0.808248 -0.031943 -1.186860 0.654735 -0.356969 -5.647456 2.877935 -0.433664 -0.609446 1.318155 -0.132047 2.153068 -1.574014 -2.945244 1.520629 -0.319453 -1.061642 -1.854187 0.997109 1.750654 0.363533 1.013866 -2.508177 -4.052937 1.521035 -0.906391 1.545895 1.146119 1.462437 2.582384 0.946431 -1.374606 -3.202627 -1.739502 1.282011 0.151282 -1.973676 -0.215310 -0.826982 2.304205 2.552053 0.177831 -0.161751 -1.253404 3.239659 -2.251376 -0.691654 2.746417 0.510977 -2.371832 0.475541 2.905868 -1.448002 -2.151213 -1.285958 -0.034388 -0.719807 -2.252458 1.225361 -0.792061 0.962997 0.757734 0.706664 -1.481356 1.013332 0.264748 0.179138 -0.944994 3.934399 3.244127 -1.911342 0.231363 -1.655838 1.459512 -3.564022 -2.465589 0.816142 -1.238526 -0.621891 1.180036 0.169657 2.750879 -0.227546 0.513139 0.344519 -1.164591 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.302740 0.045903 0.614985 -0.679681 0.531472 0.170376 0.216135 -0.192216 -0.615585 -0.293899 -0.068824 -0.376353 -0.384900 0.861122 -0.394108 0.242275 1.257287 0.518139 -0.184663 -0.396427 0.704861 -0.589652 1.061287 1.062772 -0.896171 -0.051506 0.494943 0.666891 0.389520 0.754280 -0.446113 -0.359789 0.317958 -0.415034 0.359963 -0.932442 0.158762 0.143928 0.001580 -1.352332 0.143779 -0.261436 0.001538 -0.088511 -0.089430 0.655751 0.797811 0.674863 -0.315570 0.184514 0.647209 0.283282 -0.064668 0.243072 0.223966 0.358258 0.655623 0.235544 -0.314569 -0.046844 -0.175701 -0.736609 0.235236 0.807978 1.049011 0.070800 0.127749 0.135880 0.022629 0.170152 0.290054 0.116899 0.070045 0.148197 0.390758 -1.128382 0.154715 -1.792578 -0.221582 -2.064834 -0.464467 -0.561942 0.372784 -0.383028 0.310397 0.194140 0.881792 0.070392 0.223316 0.367652 1.005986 -0.774068 -0.332695 -0.546661 -0.475747 0.316603 -0.478200 -0.042041 0.360807 0.052375 -0.572913 -0.702957 0.535163 0.235096 -0.314364 -0.191730 -0.074204 0.820674 -0.917141 -0.484160 -0.724437 0.029547 -0.174465 -1.153461 0.244904 -0.659207 1.005679 0.043389 -0.186741 -0.716331 0.170482 0.803041 -0.259377 -0.311972 -0.337871 0.809970 0.288633 -0.062500 0.025938 -0.174135 -0.011986 0.743495 0.829724 -0.508478 -0.186712 0.225611 -0.793473 -0.161744 -0.862297 -0.232379 0.640684 -0.717628 0.029889 0.458137 -0.533943 -0.193791 0.959272 -0.138554 0.605826 2.222706 -0.137565 0.520538 0.267958 -0.868374 0.419599 0.026998 -0.036046 0.357312 0.639454 0.191999 -1.167726 -0.729906 0.203195 0.780413 0.596630 -0.886001 -0.570466 -0.513404 -0.061994 0.124167 -0.055892 0.193105 -0.398001 -0.504622 -0.235157 0.230540 1.315846 -0.374936 -0.743381 0.193859 0.082885 -0.535171 -1.056482 -0.251631 -0.339452 0.157504 -0.091502 -0.138110 0.489135 1.036037 -2.069950 0.805717 -0.348850 -0.267770 0.669506 -0.047431 -0.277297 -1.091639 0.176717 0.677767 0.956936 0.052200 0.013518 0.278712 -0.794640 -0.094003 -0.032541 0.542290 -0.354170 0.347832 0.344173 -0.760474 -0.602536 -0.186923 0.023587 -0.350093 -0.052952 0.367809 -0.094224 -1.847293 0.917085 -0.239284 -0.203751 0.408836 -0.061890 0.409255 -0.905816 -0.957634 0.384481 0.153193 -0.128907 -0.598035 0.072539 0.764280 -0.217076 0.079565 -0.475161 -1.051162 0.339408 -0.383334 0.451976 0.306638 0.244329 0.942920 0.076461 -0.184042 -0.878262 0.083527 -0.025211 -0.300637 -0.422246 -0.200679 -0.179529 0.722169 1.085170 -0.000792 0.007689 0.090174 1.047364 -0.852163 -0.375592 0.594749 0.575723 -0.364363 0.356895 0.670717 -0.958349 -0.619494 -0.385063 -0.308617 0.095071 -0.623673 0.471481 -0.499318 0.315242 0.288566 0.176839 -0.295856 0.481671 0.165215 0.126367 0.004439 0.985419 1.451353 -0.542858 0.086112 -0.607656 0.345968 -1.137241 -0.680089 0.040135 0.076030 -0.304491 0.298685 0.071256 0.719320 -0.022048 0.113815 -0.016137 -0.227637 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -3.039000 1.595114 5.605743 -10.237801 11.084487 9.406237 2.635187 -4.325728 -7.263819 -0.727688 0.080835 -8.411830 -5.647567 10.511320 -4.686833 5.357427 12.218193 0.238368 -4.032656 -0.866789 10.229079 0.218742 12.227855 8.449579 -11.171257 -0.051707 1.205985 5.943893 1.246594 10.287287 -6.332955 -7.484804 2.379390 -3.620927 1.671472 -4.596522 1.572113 -0.445728 2.821118 -12.119414 1.770759 1.682213 -2.447167 -0.716531 -1.302439 1.958253 11.136319 7.736651 -3.926183 -0.506541 8.161067 3.190485 -1.170222 2.806226 2.528213 2.493586 7.611893 2.100734 -4.477171 -4.480302 -2.712819 -2.290663 1.349532 9.097445 11.411438 1.245043 0.422153 3.715419 0.156901 1.512281 2.696817 2.587610 1.170527 2.815986 5.547532 -4.891390 0.874310 -12.438607 -1.434681 -13.096607 -5.550456 -4.790207 2.241406 1.321903 4.942540 -3.751143 11.128774 -0.800252 -0.089351 4.618774 12.481850 -8.760542 -2.875945 -9.025561 -7.829787 0.585913 -4.506424 -0.750550 1.800335 -0.053932 -7.607022 -6.468445 1.602830 2.454446 -3.126137 -2.769812 -0.906026 8.469894 -7.460150 -4.495893 -3.828747 5.224817 -1.771603 -14.761221 -5.058446 -5.868174 3.601154 -1.773148 -0.546467 -8.408085 1.639309 8.506208 -5.542306 -4.117864 -3.185694 9.673245 7.533627 0.862936 0.802327 -1.403430 2.131534 9.968885 5.844948 -5.102868 -2.465045 -1.032197 -3.007826 0.362779 -6.386106 -0.234083 2.191352 -7.888971 0.310046 7.845606 -3.769117 1.236294 1.756670 -1.620697 5.092988 28.232283 -3.463045 7.948299 2.070815 -10.657973 6.320297 0.667877 -1.795121 2.549232 4.073581 2.340745 -13.088618 -9.088354 7.475842 8.064804 5.583521 -10.291127 0.485658 -2.614359 -1.434902 -1.972311 -1.074927 3.479977 -2.557429 -5.388740 -2.893563 4.373314 18.500218 -4.303489 -12.889476 7.443510 3.400916 -3.485551 -5.690450 -5.043374 -4.147344 0.395526 3.539075 -1.047721 7.405680 12.889420 -19.276545 8.129230 0.270244 -4.951149 10.229522 -1.597133 -3.849673 -4.601818 -0.685342 8.776060 9.217388 0.214515 -1.780213 0.030685 -8.217347 1.335127 1.274922 3.438291 -3.544436 3.325275 2.464203 -8.798808 -6.972136 -5.083784 -3.493118 -1.434506 -5.079844 3.169517 -2.169349 -18.844057 11.738612 0.351988 -0.913449 3.227287 -2.656383 6.767062 -6.918168 -10.351274 5.305543 -0.464424 -2.453171 -4.398046 2.524180 6.454991 2.015626 5.202543 -9.351095 -14.575281 5.674188 -2.219650 7.122861 3.260699 3.537801 6.593489 3.152143 -2.950105 -10.180052 -6.206243 4.646464 1.697851 -7.731843 -1.334254 -3.038195 8.631754 7.952619 -0.941850 -2.376628 -5.414981 9.383263 -7.272105 -1.474074 7.637136 1.472259 -9.633298 -0.218032 9.170414 -5.851031 -5.419746 -5.156372 -1.729149 -4.686358 -8.507269 3.479318 -1.702057 3.302763 3.026056 0.546087 -3.804838 3.520190 1.572155 -0.463111 -0.675393 12.943916 10.037828 -5.454324 1.264690 -8.265036 6.151445 -12.744505 -10.316447 4.481814 -4.663257 -4.451735 1.734700 0.663024 8.867515 -1.572682 1.943589 0.094038 -2.227503 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.169571 0.045099 1.021964 -0.814683 0.494689 0.124351 0.191988 -0.002163 -0.816987 -0.134451 -0.149211 -0.607300 -0.364131 0.857532 -0.306858 0.031026 1.264953 0.640065 -0.316842 -0.306753 0.399686 -0.537422 0.885508 1.110620 -0.820302 0.132818 0.032077 0.797015 0.254652 1.224531 -0.695721 -0.312131 -0.050626 0.113967 0.550635 -0.929721 -0.037475 0.188806 -0.278629 -1.594883 0.203350 0.416700 0.483269 -0.132870 0.219889 0.599170 0.857733 0.571585 -0.122254 0.071335 0.448231 0.187034 0.273297 0.157847 0.496263 0.446277 1.331992 0.113856 -0.410503 0.100620 -0.174095 -0.679726 0.228522 0.747218 0.978286 0.140522 -0.055089 -0.433354 0.259879 0.134506 0.322412 0.155415 -0.056739 0.183606 0.182845 -0.468692 0.748245 -1.121964 0.182480 -1.493345 -0.564467 -0.453296 0.745654 0.293494 0.067390 -0.311533 0.924808 -0.204075 0.245243 -0.050172 0.888019 -0.538402 -0.272824 -0.430804 -0.586842 0.337059 -0.259228 -0.327977 0.256293 0.167653 -0.543538 -0.342894 0.654994 0.098461 -0.372799 0.697652 -0.029307 0.825158 -0.797267 -0.319598 -0.592952 0.240258 0.035072 -0.975453 0.237026 -0.771093 0.196190 0.033624 -0.337563 -0.462633 0.265996 0.485864 -0.438202 0.137746 -1.366485 1.123968 0.075026 -0.271243 -0.048967 -0.202360 -0.042597 0.199487 0.363146 -0.638677 -0.031139 0.397201 -0.711390 -0.235175 -0.830260 -0.229210 0.352441 -0.569114 -0.337319 0.090869 -0.560738 0.247405 -0.036798 0.102536 0.462280 2.152414 -0.283963 0.564826 0.165133 -0.699462 0.937995 0.518461 -0.060971 0.253940 0.572830 0.249813 -1.117950 -0.683245 0.129210 0.847863 0.594862 -0.578886 -0.242382 -0.446630 -0.240982 0.276524 0.269769 0.005713 -0.341779 -0.524820 -0.289492 -0.083128 1.361507 -0.048329 -1.248453 0.037427 -0.203338 -0.523037 -0.762996 -0.084172 -0.174607 0.117985 -0.535978 -0.221353 0.616661 0.980289 -2.127362 1.021597 -0.207886 -0.537175 1.260659 -0.507166 -0.140470 -1.019277 -0.072177 0.560318 1.209016 0.040938 -0.459976 0.237623 -0.785367 -0.135801 -0.112003 0.499548 -0.520362 0.426571 0.334626 -0.716976 -0.325334 -0.814637 -0.002841 -0.265495 -0.496986 0.324054 -0.016777 -1.507679 0.799893 0.030260 -0.059445 0.317861 -0.005638 -0.196344 -0.756217 -0.752293 0.062907 0.257331 -0.300489 -0.683676 -0.102154 0.663078 -0.356638 0.036969 -0.641570 -0.931672 0.485682 -0.547313 0.560689 0.405007 0.018554 0.491881 1.416955 -0.087923 -0.489074 0.084758 -0.054407 -0.350757 -0.193091 0.120412 -0.427252 0.535502 1.008357 0.040612 0.215715 -0.259705 1.122688 -0.161574 -0.437950 0.520150 -0.670221 -0.200376 0.281523 0.665824 -0.843291 -0.537739 -0.551149 -0.548586 0.096880 -0.341382 0.615459 -0.434224 0.223456 0.252251 -0.055426 -0.542670 0.376797 0.066184 -0.321973 0.130827 1.241953 0.858414 -0.208401 0.666691 -0.512964 0.445140 -0.953985 -0.187363 -0.252887 -0.125270 -0.566024 0.247517 0.148606 0.633813 0.021602 0.187160 -0.017694 -0.048256 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator() = -0.078854 -0.074014 0.599562 -0.432386 0.166230 -0.159474 0.106740 -0.036340 -0.481460 -0.015328 -0.088108 -0.192976 -0.032029 0.440711 -0.095578 0.198370 0.749446 0.450558 -0.171316 -0.337885 0.358198 -0.778264 0.503601 0.723464 -0.543336 0.118389 0.182346 0.589918 0.419095 0.640044 -0.529943 0.250235 -0.052456 -0.304487 0.441496 -0.752935 0.009734 0.228769 -0.019859 -1.066644 0.087150 0.012133 0.515760 -0.026113 0.074103 0.567353 0.388152 0.345097 -0.154466 0.190505 0.343759 -0.188216 0.276741 0.086188 0.269031 0.473254 0.975772 0.344893 -0.197531 0.160271 -0.013207 -0.654808 0.421207 0.412464 0.647380 -0.032191 -0.018997 -0.067968 0.297685 -0.000120 0.270985 0.127087 -0.250175 -0.039542 0.199824 -0.908869 0.636422 -1.041336 0.063495 -1.214268 -0.365046 -0.321273 0.372465 -0.249328 0.229979 0.086367 0.565178 -0.121216 0.166986 -0.192189 0.387117 -0.472299 -0.150848 -0.216206 -0.291744 0.225371 -0.193227 -0.280121 0.465398 0.071230 -0.255189 -0.254182 0.752824 0.187244 -0.283145 0.329164 -0.065954 0.489653 -0.473074 -0.502060 -0.414033 -0.072942 -0.201760 -0.517848 0.653379 -0.564713 0.324904 0.030121 -0.092954 -0.434162 0.057827 0.414967 -0.167282 -0.059846 -0.796400 0.714104 0.072555 -0.188358 0.011000 -0.144686 -0.114592 0.166986 0.458236 -0.397610 -0.112873 0.408008 -0.694018 -0.136886 -0.599887 -0.303332 0.513990 -0.424097 -0.418980 -0.022785 -0.321752 0.306926 0.732848 0.178098 0.270937 1.321025 -0.007375 0.280081 0.144695 -0.344805 0.690381 0.347223 0.054152 0.368995 0.424107 0.036470 -1.093175 -0.431354 -0.127088 0.481935 0.323435 -0.512737 -0.644999 -0.379571 -0.118883 0.382063 0.051270 -0.024664 -0.218727 -0.294846 -0.103739 -0.207903 0.882329 -0.167780 -0.496713 -0.045607 -0.364945 -0.683488 -1.108619 -0.091615 -0.380515 0.036772 -0.758670 -0.080219 0.294193 0.525615 -1.353055 0.613408 -0.419927 -0.343167 0.876697 -0.336986 -0.049074 -1.142319 -0.011591 0.186453 0.732440 -0.083026 -0.287507 0.311191 -0.506022 -0.051905 -0.180077 0.263011 -0.337964 0.303335 0.151296 -0.378274 -0.135798 -0.256744 0.087613 -0.269532 -0.044754 0.213662 -0.037618 -0.796794 0.323584 -0.126730 -0.140331 0.480697 0.105452 -0.191037 -0.496513 -0.359152 0.066805 0.363773 0.055721 -0.627998 -0.068423 0.453677 -0.383749 -0.345585 -0.367132 -0.617773 0.110125 -0.614561 0.195505 0.284399 -0.107214 0.332851 0.874961 -0.080086 -0.442726 0.459097 -0.593975 -0.297374 -0.038745 -0.296404 -0.230783 0.360883 0.714606 0.129577 0.438070 0.100259 0.761150 -0.314493 -0.426466 0.282354 -0.198345 -0.067303 0.202706 0.339645 -0.646178 -0.293142 -0.258901 -0.492667 0.301757 -0.099810 0.545250 -0.326648 0.150977 0.090214 -0.015765 -0.141369 0.355117 0.036914 -0.088307 -0.042865 0.831681 0.789989 -0.157629 0.141479 -0.269928 0.184653 -0.542344 0.045125 -0.264652 0.344807 -0.390302 0.248287 0.384907 0.437387 0.137171 -0.081048 0.041243 -0.201288 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.152502 -0.083999 1.457002 -3.738131 4.210666 1.780650 0.970947 -0.537077 -2.309035 -1.329025 -0.626971 -0.934536 -1.886597 3.560338 -1.302119 2.638637 3.870388 -0.026644 -0.519700 -1.155548 5.055018 -2.806401 4.105715 1.463458 -4.634225 -0.359468 1.278983 3.664074 1.252770 4.008919 -0.800534 -1.385407 0.530148 -2.261720 1.975962 -3.317865 1.896699 1.239028 -0.126594 -4.454872 0.322494 -0.010446 -0.517235 0.316828 -1.340968 1.695172 2.814064 3.290925 -3.153245 0.321746 3.843572 0.681089 -0.551881 1.560322 -0.941597 0.925997 1.215162 0.510570 -1.757209 -1.090519 -0.525980 -3.308820 2.433890 2.569972 4.712672 -1.128968 1.030798 3.355377 -0.559138 0.998763 1.699426 0.615375 -0.382052 -1.468594 3.381350 -4.363739 -1.091345 -7.100240 -0.696033 -8.165074 -1.657810 -3.142147 0.496597 -0.272222 2.059182 -0.410747 4.114472 0.259147 0.424355 3.110876 3.114753 -2.766741 -0.683950 -5.188828 -2.620925 0.791900 -2.236371 -1.956670 2.106708 0.780323 -1.651364 -2.072466 0.848991 0.620174 -0.910771 -3.576105 -1.777266 3.574653 -3.675406 -2.703043 -2.333385 2.251848 -1.837292 -5.059207 0.847812 -2.461323 2.436529 -1.310597 2.526986 -2.044620 -0.074067 4.156977 -1.345139 -1.659410 -1.132884 3.965272 2.532061 -0.323799 1.014944 -0.236139 -0.829618 3.079309 4.360361 -1.220079 -3.141811 1.231102 -1.857092 -0.202350 -3.230708 -0.153107 3.144934 -3.744688 -0.811900 2.502612 -0.545911 -0.298954 3.042590 -1.416337 3.311276 9.694601 0.080036 1.506654 0.490310 -3.410272 2.822652 1.079629 -0.208997 2.642254 1.614526 -0.791348 -4.995482 -3.407200 1.261218 1.579261 2.032344 -3.795754 -2.785290 -2.085580 -0.133891 0.405487 -2.228910 2.284511 -1.794754 -1.760373 -0.457092 0.056716 6.028939 -1.451835 -2.133360 3.463521 2.279507 -4.739143 -5.024653 -2.324014 -3.049149 -1.077129 0.140544 -0.778975 1.729614 4.253585 -7.068451 2.582860 -0.343366 -0.601842 1.711541 -1.562986 0.168279 -6.271528 -0.337590 2.645744 3.582869 -1.381550 0.833465 0.417859 -2.592785 1.825274 0.178568 1.187782 -0.154568 0.413378 -0.781852 -2.296022 -2.630702 -0.280212 -2.011043 0.180510 0.071058 0.506395 0.098297 -6.008570 3.339257 -2.663757 -0.634861 2.831639 0.710304 3.740071 -2.250426 -3.640888 2.626478 1.072092 -0.780498 -3.584249 1.774927 3.225162 -0.597984 -0.669042 -1.613445 -6.160128 0.718625 -2.418935 0.594311 1.102305 1.448587 3.631339 0.793906 -1.775719 -5.025025 -1.495322 -0.700373 -0.165826 -1.757201 -1.658317 0.258465 3.149096 3.080440 0.684824 0.363786 0.092393 4.572451 -3.402049 -2.024737 3.287415 0.929979 -2.907552 1.397039 3.623436 -3.024118 -2.933675 -2.094983 1.528505 0.467764 -2.993275 1.452733 -1.179999 1.039540 1.230587 1.356432 -1.328398 1.910681 1.356856 0.463673 -2.750055 6.181572 5.104118 -2.624775 -0.954155 -1.890263 1.086242 -4.473995 -2.525984 0.082269 0.448356 0.140465 2.589386 1.718365 3.416877 -0.363780 1.199007 0.735715 -2.998109 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::empty() const = -0.178614 0.525037 0.778518 -0.803974 0.880454 0.997870 0.186322 -0.410164 -0.568377 -0.103683 -0.062039 -1.054328 -0.589954 0.906531 -0.438553 0.145868 1.102368 0.068441 -0.356537 0.061467 0.333768 0.372157 1.048815 0.902144 -0.775103 0.118119 0.158182 0.312424 -0.255392 1.202119 -0.741611 -1.156812 0.080654 0.243019 0.104293 -0.216204 -0.146610 -0.342636 0.137858 -1.135067 0.143618 0.488580 -0.153019 -0.254064 0.080267 -0.269287 1.312017 0.570341 0.051753 -0.228121 0.392187 0.595475 -0.004668 0.138192 0.616476 0.173009 1.125457 -0.154533 -0.363281 -0.271460 -0.276403 0.106828 -0.308730 0.901708 0.820895 0.335310 -0.128062 -0.251629 -0.106593 0.087432 -0.056331 0.265787 0.147602 0.822793 0.056436 0.108814 0.475668 -0.534078 0.051232 -0.454264 -0.552631 -0.292145 0.143364 0.679208 0.305714 -0.436004 0.957641 -0.163902 0.128152 0.041504 1.336598 -0.681005 -0.243823 -0.415594 -0.676365 0.055513 -0.221996 0.080153 -0.353517 -0.143229 -0.715664 -0.552260 0.167613 0.190255 -0.321957 0.431903 0.097020 0.602591 -0.580257 -0.127476 -0.335191 0.266812 -0.012784 -1.269502 -0.809955 -0.347803 -0.108797 0.001645 -0.474061 -0.917130 0.388356 0.579329 -0.532767 -0.213915 -0.687831 0.814533 0.460813 0.032122 -0.023679 -0.235737 0.483503 0.755130 0.119273 -0.470491 0.144092 -0.227333 -0.145678 -0.095302 -0.334357 0.046585 -0.496648 -0.470906 0.099046 0.761530 -0.489383 0.215760 -0.768282 -0.204404 0.351789 2.507700 -0.591262 0.721294 0.059485 -1.126887 0.503951 0.020841 -0.476262 -0.279435 0.262575 0.676484 -0.849587 -0.631632 0.791130 0.942326 0.541002 -0.514967 0.510618 -0.124061 -0.277357 -0.223849 0.365974 0.088176 -0.184947 -0.589545 -0.412074 0.488527 1.604527 -0.195081 -1.543874 0.444850 0.123807 0.226444 0.117810 -0.157197 -0.136182 0.198482 0.336330 -0.226500 0.715969 1.060810 -1.810806 0.863466 0.150673 -0.787532 1.185091 -0.226614 -0.383521 0.259028 0.052827 0.981300 0.808597 0.166683 -0.218581 -0.265215 -0.710386 -0.168764 0.082526 0.389274 -0.493924 0.410506 0.440846 -1.065401 -0.606602 -0.834963 -0.095222 -0.334307 -0.862537 0.341374 -0.091898 -1.685982 1.275208 0.513632 0.067797 -0.067762 -0.443055 0.189034 -0.680787 -0.977543 0.225834 -0.288619 -0.201217 0.123825 -0.119356 0.368620 0.290247 0.804717 -0.873703 -0.853786 0.503359 0.118981 0.810715 0.368131 0.459705 0.272112 0.623661 -0.111734 -0.388905 -0.618839 0.863006 0.149422 -0.617961 0.207027 -0.497289 0.678641 0.742714 -0.221259 -0.354477 -0.841595 0.595927 -0.193912 0.091862 0.482866 -0.432836 -0.835019 -0.315768 0.632328 -0.225678 -0.412293 -0.512697 -0.315180 -0.701349 -0.741427 0.103450 -0.213633 0.118261 0.496428 -0.262612 -0.631248 0.144521 0.001145 -0.220716 0.325190 0.742819 0.276720 -0.265455 0.628743 -0.756284 0.565475 -1.084771 -0.909403 0.423335 -0.754951 -0.577492 -0.255160 -0.218682 0.536892 -0.209695 0.418711 0.023326 0.066069 +PE-benchmarks/strongly-connected-components.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::back() = -0.390802 0.510683 0.764935 -0.774087 0.907905 0.588112 0.319152 -0.191445 -0.635904 -0.656552 -0.160579 -1.083574 -1.118833 1.258946 -0.539699 0.095193 1.651053 0.410552 -0.209831 -0.206028 0.648831 -0.187011 1.516692 1.328559 -1.165615 -0.025295 0.423613 0.641382 -0.011973 1.140311 -0.364246 -1.288780 0.483178 0.072726 0.430528 -0.706164 0.098872 -0.181229 -0.282924 -1.720628 0.119705 0.358452 -0.097923 -0.224563 -0.058412 0.473900 1.556283 0.935889 -0.277165 -0.051535 0.635484 0.610942 -0.028659 0.343631 0.352329 -0.049470 0.601758 -0.314911 -0.652445 -0.196845 -0.332441 -0.848683 -0.270739 1.172979 1.369957 0.237270 0.066982 0.003973 -0.324049 0.349835 0.049002 0.275607 0.556880 0.611158 0.481239 -0.378068 0.019652 -1.587857 -0.261018 -2.377140 -0.765859 -0.793318 0.604423 0.501019 0.232334 -0.287648 1.317540 0.156943 0.339742 0.633206 1.834122 -0.907651 -0.470114 -0.833841 -0.593438 0.440219 -0.650473 0.126864 0.105367 -0.006744 -0.969986 -0.832723 0.274487 0.083339 -0.419225 -0.061170 -0.092845 1.022521 -1.248714 -0.207515 -1.078412 0.009708 0.116377 -1.815123 -0.294374 -0.409340 0.603474 0.219866 -0.363047 -0.818254 0.402722 0.778190 -0.415298 -0.329783 -0.837983 1.151197 0.357066 -0.057415 0.176090 0.022000 0.360174 1.006072 0.770307 -0.519367 -0.165415 -0.024627 -0.622415 -0.172214 -0.786869 -0.137388 0.339144 -0.910761 0.215236 0.743449 -0.741022 -0.396883 -0.285929 -0.502054 0.816141 2.699290 -0.445996 0.776753 0.258619 -1.391717 0.595892 -0.175977 -0.460511 0.022688 0.746003 0.702316 -0.776428 -0.926236 0.726812 1.239209 0.813031 -0.825688 0.103743 -0.389903 -0.018311 -0.348202 0.252333 0.390918 -0.297948 -0.763739 -0.377985 0.705955 1.710559 -0.430294 -1.313074 0.488591 0.413246 0.061288 -0.572901 -0.244934 -0.143199 0.109751 0.316032 -0.221029 0.651922 1.505713 -2.401645 1.147585 0.085548 -0.443185 0.910436 -0.177040 -0.487456 -0.829682 0.330545 1.333109 1.144569 0.208136 0.016867 -0.192665 -1.088842 -0.178985 0.132237 0.750281 -0.471064 0.544618 0.246544 -1.070352 -1.035007 -0.745392 -0.107597 -0.390721 -0.547505 0.481285 0.338781 -2.385020 1.650982 -0.084927 -0.224487 -0.032050 -0.308643 0.576267 -1.211505 -1.509730 0.402422 -0.442938 -0.754608 -0.419839 0.013841 0.736734 0.031835 0.329875 -0.612337 -1.205433 0.906300 0.002161 0.825369 0.447860 0.670232 1.172986 0.534074 -0.463295 -0.778013 -0.544837 0.662396 -0.424282 -0.728141 0.193028 -0.359525 0.930426 1.450116 -0.207363 -0.407334 -0.365249 1.110656 -0.779861 -0.439319 0.914628 0.138918 -0.641267 0.358909 1.020231 -0.889639 -0.841429 -0.821356 -0.133646 -0.351219 -1.165848 0.181846 -0.754266 0.172560 0.737199 -0.121866 -0.724725 0.467440 0.185453 -0.078996 0.041212 1.223013 1.238870 -0.834503 0.575041 -0.995189 0.572320 -1.686461 -1.195540 0.345305 -0.325183 -0.287390 0.037624 -0.141113 0.663926 -0.216436 0.208062 -0.243806 -0.107796 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator--() = -0.673661 0.842930 1.295686 -1.916687 1.821214 2.201069 0.389635 -0.986874 -1.134223 -0.225985 -0.240855 -1.657234 -0.995621 2.155663 -1.035597 0.703260 2.703921 0.321035 -0.685232 0.012586 1.507298 0.418895 2.411934 1.996496 -1.909915 -0.146819 1.070974 0.860876 -0.175038 2.163507 -1.359179 -2.282774 0.382895 -0.411465 0.257667 -1.072844 0.139066 -0.415178 0.634192 -2.608023 0.372247 0.171918 -0.677994 -0.597796 -0.262118 -0.699478 2.578325 1.511465 -0.411883 -0.579125 1.233573 1.495439 -0.551487 0.388423 0.867087 0.687190 1.531159 0.194312 -0.621005 -0.740781 -0.498288 0.131447 -0.087431 2.109420 2.061241 0.648345 0.103646 0.237257 -0.184262 0.216729 -0.031098 0.372929 0.168804 1.436081 0.458132 -1.206882 0.308883 -2.616209 -0.163432 -1.880880 -1.008266 -0.916449 -0.196409 0.437058 1.033498 -0.412869 2.069337 -0.270482 0.462787 0.810307 2.901021 -1.794229 -0.597236 -1.587670 -1.659940 0.325656 -0.779394 0.170648 -0.354943 -0.472035 -1.541293 -1.857788 0.249222 0.818297 -0.651985 -0.299486 0.196597 1.564137 -1.268931 -0.889405 -0.880188 0.595445 -0.594563 -3.049621 -1.491370 -1.148045 0.666398 -0.138365 -0.707802 -2.535519 0.566008 1.964028 -0.971562 -1.095374 -0.332725 1.662728 1.306776 0.014469 -0.012209 -0.719932 0.739172 2.225503 1.048358 -1.074424 0.003527 -0.271715 -0.883361 -0.481497 -1.326601 -0.070308 -0.272280 -1.404972 0.198650 2.196517 -1.113566 0.112536 0.241016 -0.681517 1.255082 6.592336 -0.978399 1.444128 0.291150 -2.681957 0.949675 -0.083151 -0.922531 -0.233388 0.800687 1.200789 -2.784835 -1.576294 1.429733 1.952063 1.375802 -1.427773 0.099078 -0.762400 -0.616424 -0.404375 0.166780 0.392145 -0.821007 -1.366457 -0.831117 1.325232 3.546674 -0.810341 -2.779747 1.087983 0.932305 -0.219311 -0.670016 -0.608944 -1.102434 0.413376 0.942822 -0.550993 1.647251 2.516214 -4.203883 1.770359 0.041530 -1.337439 1.931247 -0.144083 -0.915102 -0.176795 0.432481 2.295978 1.859151 0.061099 0.096464 -0.303644 -1.631190 -0.234522 0.254365 1.024753 -0.881471 0.749772 0.836646 -2.348859 -1.602335 -0.764692 -0.438977 -1.128025 -1.182878 0.712516 -0.427103 -3.801745 2.936156 0.581837 0.115297 0.492263 -0.992349 1.092624 -1.890455 -2.458575 1.009583 -0.016908 0.233621 0.131625 0.035395 1.460418 0.653023 1.605338 -1.784795 -2.545985 0.655042 0.147626 1.607857 0.675588 1.092111 1.133489 0.037194 -0.218575 -1.694715 -1.344190 1.383164 0.654824 -1.703106 -0.582562 -0.720964 1.887007 1.887969 -0.562569 -0.882368 -1.297376 1.604954 -1.307933 0.200195 1.141979 0.230078 -2.033402 -0.822051 1.499401 -1.093524 -1.183763 -0.917515 -0.167231 -1.095979 -1.969596 0.264695 -0.628824 0.522608 0.995585 -0.214047 -0.965639 0.514375 0.447813 0.122851 0.558201 1.613385 1.280889 -0.880248 0.477679 -1.745099 1.046105 -2.742742 -2.347917 0.960001 -1.348395 -0.953507 -0.097856 -0.269329 1.507130 -0.568159 1.237504 0.313460 -0.428346 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator*() const = -0.123077 0.225392 0.274166 -0.343964 0.398271 0.352908 0.086009 -0.235578 -0.231895 -0.130017 -0.067307 -0.282133 -0.207557 0.425753 -0.234330 0.174848 0.587781 0.105968 -0.070452 -0.118856 0.293246 -0.081703 0.575746 0.485162 -0.444234 0.015046 0.329864 0.187070 0.018350 0.479682 -0.325322 -0.459486 0.158813 -0.166888 0.068299 -0.308627 0.015340 -0.075509 0.137863 -0.601169 0.050550 -0.142102 -0.153359 -0.066477 -0.066159 0.019557 0.576456 0.312948 -0.077722 0.048001 0.297870 0.321537 -0.089772 0.107172 0.187172 0.208395 0.377282 -0.031450 -0.117961 -0.085157 -0.106023 -0.132396 -0.015081 0.451651 0.462427 0.079170 0.025860 0.095506 -0.119323 0.030982 0.014166 0.111206 0.020472 0.298133 0.106285 -0.474466 0.082230 -0.715441 -0.124626 -0.696368 -0.238319 -0.269197 -0.065989 -0.027399 0.271790 0.135215 0.478559 0.002333 0.130304 0.126139 0.614164 -0.469253 -0.131095 -0.225867 -0.273939 0.047377 -0.188663 0.048577 -0.096678 -0.065971 -0.307730 -0.463030 0.222731 0.163024 -0.163892 -0.140144 -0.008807 0.320688 -0.461051 -0.241821 -0.309973 -0.005395 -0.173105 -0.624191 -0.124869 -0.216698 0.427489 0.003403 -0.128494 -0.587388 0.132515 0.491765 -0.164270 -0.274039 -0.029161 0.297246 0.260119 0.004732 0.012275 -0.156042 0.143903 0.566946 0.348648 -0.214198 -0.051505 -0.016011 -0.232170 -0.108298 -0.278306 -0.037171 -0.019142 -0.349980 0.127931 0.441037 -0.246808 -0.040153 0.271628 -0.199386 0.278206 1.228205 -0.192774 0.270785 0.064166 -0.592897 0.061244 -0.126843 -0.169219 0.014792 0.234800 0.257837 -0.539112 -0.337398 0.257156 0.416757 0.270542 -0.362706 -0.120955 -0.198281 -0.076401 0.007113 0.017540 0.075441 -0.193748 -0.275885 -0.162404 0.187213 0.815376 -0.187613 -0.376127 0.196732 0.077469 -0.115037 -0.278253 -0.130853 -0.223321 0.103138 0.158311 -0.099602 0.264472 0.521088 -1.011992 0.374145 -0.159526 -0.277536 0.307323 0.027872 -0.142004 -0.150445 0.119612 0.461335 0.398838 0.023099 0.153665 -0.020467 -0.372552 -0.063271 0.006167 0.266425 -0.230909 0.184138 0.276215 -0.597106 -0.352425 -0.059692 0.021293 -0.236952 -0.149500 0.162622 -0.060916 -1.020900 0.592305 0.044247 -0.034330 0.178952 -0.123539 0.298742 -0.422547 -0.513160 0.241659 -0.029091 0.071742 0.014631 -0.013120 0.320552 0.027687 0.247164 -0.324203 -0.487114 0.089253 0.020093 0.260350 0.165815 0.246475 0.359340 -0.230821 -0.075573 -0.376703 -0.111402 0.198348 -0.032721 -0.257016 -0.037591 -0.150514 0.406864 0.515752 -0.038083 -0.122636 -0.083495 0.381567 -0.390651 0.025719 0.260562 0.332117 -0.369678 -0.049314 0.305171 -0.276074 -0.296537 -0.165638 -0.057310 -0.153427 -0.387590 0.108994 -0.228803 0.102211 0.249481 0.008481 -0.220212 0.197696 0.035473 0.081766 0.054117 0.349084 0.483251 -0.231001 0.077169 -0.334159 0.169371 -0.590628 -0.487865 0.138269 -0.097346 -0.183942 -0.004102 -0.105349 0.336666 -0.085343 0.212705 0.069908 -0.142053 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::pop_back() = -1.066997 2.017789 2.608367 -3.027397 4.062518 4.321150 0.840909 -1.132518 -1.918078 -0.739790 -0.878776 -3.495507 -2.900491 4.157276 -1.576080 1.382524 4.955737 0.347605 -1.133462 0.434558 2.602729 0.584915 4.468089 2.950000 -3.435408 -0.050568 1.378694 1.485296 -1.171439 4.873179 -2.997601 -4.743119 0.844017 -0.328241 0.723273 -1.535113 0.262545 -1.099950 0.335884 -4.708172 0.477824 1.505432 -1.506182 -1.000937 -0.495166 -0.882867 5.306189 2.808173 -0.658046 -1.197667 1.716729 1.972368 -0.607587 0.984877 1.587097 1.174840 2.674147 0.018549 -2.130666 -1.262133 -1.170217 -0.780338 -0.703166 3.439587 3.688692 0.851655 -0.000815 0.705675 -1.016826 0.403521 -0.308229 0.768657 1.240632 2.379975 1.261922 -0.770550 0.187994 -3.170670 -0.555931 -3.536188 -2.107592 -2.339879 -0.151532 1.741649 1.812827 -1.970682 4.197040 -0.711937 0.927648 1.221648 5.902937 -3.689308 -1.257429 -3.741862 -2.356805 0.306294 -1.652717 -0.447537 -0.166417 -1.363667 -2.926433 -3.175387 0.432906 1.051179 -1.077456 -0.349509 -0.234389 3.331314 -2.708404 -1.604665 -2.708834 0.725829 -0.889050 -5.685019 -2.592272 -0.725221 0.128194 0.246342 -0.906994 -4.419373 1.523770 3.667359 -1.941712 -2.102277 -0.869759 3.981022 2.122012 -0.285814 0.585526 -0.622045 1.610948 3.816391 2.626924 -1.516886 -0.496044 -0.398947 -1.369073 -0.790473 -1.922288 -0.109658 -0.973599 -2.931801 -0.062139 3.974893 -1.992558 0.945913 -1.388667 -1.369977 2.549984 10.835658 -2.110661 2.269964 -0.258013 -5.137061 2.857492 -0.091461 -2.182473 -0.900566 1.321251 2.593370 -4.687650 -2.868214 3.166714 3.571938 2.531117 -2.873698 1.028226 -1.673941 -0.534461 -1.109982 0.356296 1.608753 -0.877836 -2.442425 -1.446037 2.003435 7.150229 -2.121682 -6.072878 2.796784 1.034219 0.115021 -1.419319 -1.308856 -1.556705 -0.001140 1.581406 -1.139304 2.641745 4.832921 -6.755940 3.542176 0.150655 -3.240890 4.173244 -0.993092 -1.027028 -0.048208 0.287925 4.729505 3.598766 0.744630 -0.354228 -1.505752 -2.981633 -0.122408 0.556759 2.109631 -1.093535 1.343242 0.806626 -4.280735 -3.104081 -2.523745 -0.986460 -1.798144 -2.461787 1.076345 -0.090227 -7.101870 5.722083 1.023019 0.282272 0.785995 -1.084968 1.908610 -3.143521 -4.948446 1.911721 -0.649743 -0.754356 0.093826 0.147454 2.302025 1.489814 2.037665 -2.915911 -5.348867 1.919653 0.718816 2.999175 1.249151 2.466845 2.507763 2.098614 -1.366234 -2.635299 -3.234473 2.760706 0.490107 -2.603343 -0.863105 -1.239525 3.633536 3.460452 -0.677040 -1.150835 -3.487150 2.869121 -2.351427 0.086369 2.896233 -0.385998 -3.617161 -1.342132 3.449643 -1.573029 -2.703060 -2.006592 -0.094617 -2.468337 -3.748005 -0.396027 -1.912268 0.264711 2.491254 -0.737373 -2.345219 0.629994 0.589362 -0.447287 -0.043892 3.709677 2.280319 -2.403908 1.639378 -3.085247 2.396861 -5.131849 -4.177413 1.825151 -2.162428 -1.538554 -0.222731 0.478094 2.076914 -1.405373 1.519375 0.238071 -1.516338 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_pop_back_aux() = -0.938641 2.222230 3.401052 -3.301201 3.737895 4.552319 0.760764 -1.504795 -2.017291 -0.328784 -0.617754 -3.671035 -2.603382 3.867203 -1.891115 0.541670 4.883652 0.445179 -1.403199 0.321443 1.973387 1.281540 4.406107 3.596253 -3.380316 0.087392 1.323881 1.429893 -0.930753 4.984863 -3.483420 -4.603119 0.528035 0.481656 0.667048 -1.327624 -0.238769 -1.578810 0.305703 -4.682157 0.547777 1.307183 -1.638968 -1.052227 0.083988 -0.683097 5.547928 2.478549 -0.188167 -1.436009 1.612199 2.411332 -0.503596 0.659118 2.233992 1.082663 4.093542 0.423987 -1.569779 -1.207547 -1.275354 0.134844 -0.952831 3.769274 3.518361 1.398805 -0.186115 -0.566828 -0.523164 0.232181 -0.441111 0.892052 1.164646 3.297970 0.645872 -0.269835 1.306154 -2.847161 -0.145038 -2.234961 -2.064554 -1.873112 -0.119527 1.609100 1.467645 -2.067487 3.972977 -0.652895 0.908012 0.575755 5.785001 -3.319016 -1.074807 -2.687238 -2.763548 0.112768 -1.191284 0.202217 -0.986372 -1.266978 -2.974513 -2.954271 0.461315 1.039686 -1.171219 1.059076 0.181952 2.967826 -2.208651 -0.840705 -2.078518 0.716987 -0.453955 -5.527150 -3.199987 -1.404755 0.363929 0.036653 -1.649718 -4.282859 1.580001 3.385662 -2.119475 -1.506784 -1.522416 3.901677 2.156062 -0.181631 -0.027352 -1.101665 1.755419 3.204870 1.760000 -1.731505 0.199855 -0.792217 -1.453311 -0.885996 -1.857073 0.306229 -1.298126 -2.146902 0.031302 3.754258 -2.052549 1.082145 -1.725370 -1.130011 2.118049 11.509258 -2.516882 2.609906 -0.213104 -5.015937 2.534367 0.214260 -2.063414 -1.108681 1.246256 2.880776 -5.040585 -2.685332 3.192186 3.761587 2.337435 -2.800964 1.808746 -1.247274 -1.105226 -1.192851 0.974804 0.772216 -1.060142 -2.395947 -1.693599 2.126482 6.982304 -1.599047 -6.997591 2.036341 0.459993 0.717752 -0.305813 -0.880587 -0.616783 0.644865 1.644256 -1.120686 3.078035 4.592002 -7.465322 3.508209 0.243806 -3.542078 4.839033 -0.939749 -1.264729 1.165333 0.529777 4.529231 3.420983 1.089909 -1.118501 -1.270090 -2.958527 -0.521800 0.447202 2.154258 -1.692135 1.535980 1.757227 -4.633351 -2.921653 -3.358793 -0.541847 -1.723766 -3.218045 1.187945 -1.134129 -7.479239 5.699470 1.860031 0.455320 0.203226 -1.742333 1.004228 -3.096767 -4.657251 1.343940 -0.668598 -0.495299 0.244617 -0.273952 2.049179 1.462372 3.149925 -3.766726 -4.914469 1.914446 0.578455 3.385465 1.307210 2.367501 2.065765 2.356922 -0.616574 -2.444387 -2.960004 3.656255 1.000278 -2.837056 -0.155132 -1.725691 3.202227 3.320393 -1.163900 -1.105781 -3.745593 2.681215 -1.718083 0.384077 2.233363 -0.660561 -3.534198 -1.631902 2.860078 -1.210870 -2.427620 -1.874201 -1.245642 -2.765714 -3.474279 0.001888 -1.509451 0.495580 2.245829 -0.771517 -2.480888 0.471059 0.182595 -0.549005 1.072727 3.096021 2.278199 -1.808110 2.164279 -3.133311 2.683891 -4.868708 -4.092685 1.877676 -3.180174 -1.817916 -0.690408 -0.292680 2.200861 -1.176630 1.635826 0.379985 -0.509572 +PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -3.163889 -2.889146 -0.536371 -7.691511 7.459730 5.724997 2.977131 -3.158993 -8.432995 -1.048832 2.418550 -8.068292 -1.905914 10.378882 -2.896346 8.446893 12.501584 1.614523 -3.506435 0.089107 9.414962 -1.310219 11.132014 8.749277 -7.657291 -0.727729 -1.500284 3.672383 0.363658 4.504373 0.156475 -5.955660 4.128959 -8.217549 -2.115739 -6.221197 1.960061 3.142089 6.033896 -12.708753 2.454355 2.438929 0.078452 -2.394933 -2.548576 0.469539 6.057351 7.603531 -2.891153 2.963326 5.819254 1.597642 -1.342604 2.768193 0.473927 2.007612 -0.267415 -0.130955 -5.217585 -4.149574 -1.362680 -2.653189 2.350592 7.015722 10.350080 0.211323 0.376702 6.370232 0.349737 2.093697 5.020551 1.011088 -1.476130 -0.977590 4.662987 -7.784488 -2.487191 -11.883682 -2.518806 -15.399422 -4.785996 -0.516844 5.806380 1.208923 4.840302 -1.306722 8.057996 -1.787584 -1.411062 9.291417 9.177144 -7.483479 -3.863405 -7.573691 -5.444810 2.329286 -4.484874 -1.278184 4.681919 0.644562 -7.203528 -4.772261 1.708095 3.746839 -2.378750 -6.998421 1.451466 6.932105 -7.657308 -7.474432 -0.716513 7.045935 -3.168065 -12.473958 -2.933512 -4.510200 3.013822 0.423719 -1.032461 -7.201095 1.303403 4.978202 -2.883930 -4.459324 -1.081433 6.796738 4.097261 3.377775 1.884018 0.601887 1.032398 12.161046 3.796004 -4.746074 -0.293121 0.221251 -1.087852 3.252483 -5.295100 -4.085810 2.065346 -8.969146 1.181577 6.607988 -4.547178 -1.580820 3.181269 2.226044 3.123991 24.806765 0.252712 9.411671 5.634077 -9.134995 3.510070 -2.544287 0.037535 2.252270 3.695882 -0.283333 -10.631849 -7.784613 4.707849 7.237612 6.801689 -8.640092 -2.683836 -2.012060 -0.096984 0.628089 -1.623150 3.559184 0.056611 -7.484153 -1.385435 5.137423 17.337283 -3.426645 -1.944796 6.262162 5.248467 -4.991411 -9.608713 -4.395355 -6.559885 0.392705 2.853475 -0.472168 4.347658 10.870727 -12.675041 7.176192 -1.284884 -0.016385 4.944096 1.911125 -7.202682 -10.285837 -3.339867 5.809476 10.286207 -2.411981 2.439946 2.702385 -6.477045 0.707666 1.618210 -0.026597 -0.632081 2.885231 -0.465954 -5.081941 -4.390309 2.329520 -3.268187 -1.682194 -0.580892 4.384257 2.518080 -10.264978 7.816895 -0.929448 -2.955456 2.988936 -0.443590 9.144895 -6.671529 -8.672308 5.886776 -0.589853 -2.933314 -3.748926 2.028134 5.300976 2.834400 1.817859 -3.701491 -10.770425 4.988427 -2.682988 5.769566 3.463507 -0.470000 5.648850 -1.610845 -3.463010 -8.351210 -7.247846 -0.659841 0.085350 -6.627377 -1.812519 -1.801593 8.677201 5.500120 0.836036 -6.506865 -1.097651 9.794610 -6.599128 -1.339885 7.259606 1.889807 -8.525620 1.212529 8.656229 -9.129841 -0.427709 -3.452357 1.436298 -2.943236 -5.671346 4.144968 1.081237 3.814198 -0.269762 1.787701 -0.753440 2.604622 3.319668 1.270091 -0.565272 12.424145 6.982203 -3.644814 -2.011901 -6.716609 3.109736 -10.214246 -9.441054 3.434393 0.686657 -5.547724 2.523193 2.046918 8.603626 0.607242 0.629331 -0.927308 -0.772676 +PE-benchmarks/snake-ladder.cpp__std::queue > >::queue >, void>() = -0.092970 0.087194 0.530415 -0.502313 0.379194 0.055492 0.117100 0.077446 -0.506440 -0.294032 -0.071035 -0.403497 -0.347261 0.559268 -0.254097 -0.111427 0.802033 0.343539 -0.102120 -0.225143 0.175554 -0.160641 0.596382 0.662760 -0.528524 0.062866 0.036166 0.387034 0.058593 0.688625 -0.185619 -0.538995 0.051990 0.221609 0.271502 -0.486596 -0.020439 0.052431 -0.285576 -0.935064 0.122362 0.250186 0.068660 -0.067516 0.129034 0.379785 0.597305 0.352595 -0.111741 0.143878 0.329800 0.363600 0.022504 0.102125 0.226516 0.097117 0.504435 -0.186431 -0.273010 0.076629 -0.132742 -0.377480 -0.042166 0.483017 0.567542 0.066060 -0.018339 -0.282338 -0.001047 0.162594 0.189173 0.072887 0.135786 0.141162 0.134602 -0.105216 0.128648 -0.777301 0.072168 -1.225703 -0.346728 -0.300970 0.599013 0.306199 -0.120614 -0.146730 0.565255 -0.059820 0.169901 0.263279 0.622935 -0.199401 -0.204088 -0.273521 -0.362279 0.241503 -0.176847 -0.122227 -0.030978 0.190042 -0.366040 -0.221598 0.213202 -0.058397 -0.193335 0.253786 -0.021583 0.494902 -0.703846 0.007541 -0.431024 0.286669 0.199534 -0.638231 -0.095896 -0.354913 0.327401 0.057984 -0.242172 -0.128152 0.198945 0.245748 -0.303212 0.179125 -0.695232 0.548123 0.015257 -0.068623 -0.015745 -0.059011 0.050387 0.186426 0.213612 -0.363397 -0.022221 0.181224 -0.230984 -0.151189 -0.436493 -0.068119 0.142107 -0.334093 0.132284 0.057330 -0.359695 -0.207056 -0.267146 -0.124385 0.316325 1.165391 -0.218856 0.374574 0.101792 -0.462193 0.251671 0.151222 -0.069211 0.081783 0.379727 0.189190 -0.194949 -0.383613 0.165416 0.525578 0.374842 -0.296355 0.023873 -0.185066 -0.128809 0.105740 0.185169 0.028599 -0.206889 -0.310812 -0.197605 0.057251 0.764542 0.097677 -0.651180 0.003199 0.165678 -0.115476 -0.093992 0.009612 0.056874 0.133204 0.074839 -0.152288 0.375576 0.630289 -1.436439 0.582487 -0.019907 -0.160475 0.373549 -0.125243 -0.098357 -0.512746 -0.027552 0.406296 0.744882 0.086637 -0.047465 0.097653 -0.452561 -0.092374 0.009184 0.347085 -0.301281 0.224012 0.246825 -0.489589 -0.260906 -0.444237 -0.040467 -0.001101 -0.328370 0.174962 0.070281 -1.217721 0.556511 -0.045703 -0.038134 -0.003806 -0.019567 0.120764 -0.483541 -0.522640 0.059478 -0.020314 -0.416697 -0.271564 -0.091030 0.393189 -0.185196 0.219560 -0.258530 -0.492627 0.413229 -0.127870 0.378695 0.233082 0.059279 0.496979 0.401934 -0.044956 -0.234367 -0.146286 0.340558 -0.315422 -0.105110 0.400033 -0.235029 0.279130 0.599409 -0.009969 -0.124719 -0.099516 0.644981 -0.108338 -0.175257 0.336235 -0.203760 -0.086825 0.357951 0.441990 -0.529183 -0.330237 -0.414278 -0.110609 -0.006229 -0.260931 0.278474 -0.278321 0.138550 0.205489 0.047490 -0.437476 0.221403 0.015420 -0.179953 0.075923 0.665397 0.614900 -0.217400 0.496919 -0.344787 0.264913 -0.618215 -0.304738 -0.148275 -0.186963 -0.226801 0.127456 -0.231974 0.352072 -0.028846 0.214557 -0.090141 0.124317 +PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = -0.402545 0.546489 0.932810 -0.994950 1.165065 1.095896 0.357375 -0.371302 -0.796858 -0.367494 -0.204686 -1.056928 -0.907256 1.458193 -0.573613 0.423702 1.975483 0.463673 -0.328587 -0.151822 0.907207 -0.250114 1.729765 1.523413 -1.314122 0.011557 0.655471 0.621610 -0.093388 1.525909 -0.962191 -1.400271 0.478285 -0.375643 0.352208 -0.925418 0.038626 -0.238481 0.135020 -2.021879 0.177300 0.172621 -0.331613 -0.318042 -0.122595 0.178630 1.806327 1.025253 -0.259290 -0.050797 0.693576 0.605526 -0.124160 0.340572 0.618352 0.530742 0.980966 0.155747 -0.668433 -0.251689 -0.398302 -0.633904 -0.098102 1.317592 1.476832 0.276691 0.031260 0.126719 -0.259524 0.171267 0.058128 0.299112 0.378460 0.721460 0.502776 -0.921679 0.148918 -1.871203 -0.299367 -2.148335 -0.852794 -0.845440 0.270536 0.133734 0.665812 -0.295495 1.498142 -0.137497 0.397382 0.459298 2.030567 -1.376162 -0.517067 -1.010787 -0.771320 0.266985 -0.645695 -0.009787 0.166328 -0.417159 -1.105200 -1.234680 0.558884 0.436277 -0.478175 -0.187226 -0.018359 1.227055 -1.188252 -0.690026 -1.129366 0.049116 -0.310203 -2.023306 -0.408624 -0.525380 0.683320 0.230261 -0.499028 -1.544470 0.497420 1.296453 -0.568390 -0.761794 -0.335392 1.387148 0.623176 -0.051656 0.170472 -0.238912 0.411446 1.438361 1.139981 -0.633799 -0.092369 0.019603 -0.823856 -0.247445 -0.907876 -0.226532 0.097615 -1.086773 0.041298 1.165264 -0.856771 0.081351 0.327222 -0.364096 0.887748 3.870548 -0.598208 0.920977 0.169679 -1.758447 0.878667 -0.126326 -0.535953 -0.030982 0.812894 0.799019 -1.829856 -1.055804 0.820857 1.405474 0.941816 -1.211633 -0.133853 -0.659823 -0.145662 -0.191969 0.179314 0.369271 -0.315161 -0.936038 -0.458837 0.683199 2.498472 -0.772237 -1.810168 0.625620 0.227963 -0.158596 -0.991072 -0.386313 -0.593458 0.171663 0.296782 -0.338781 0.874476 1.718126 -2.838242 1.322810 -0.331329 -0.934482 1.393336 -0.112502 -0.505825 -0.649261 0.256391 1.492722 1.430389 0.285788 -0.047755 -0.162936 -1.207842 -0.187800 0.078512 0.827048 -0.567557 0.642484 0.422767 -1.541932 -1.077397 -0.699828 -0.111025 -0.759511 -0.613543 0.514493 0.015677 -2.792630 1.875325 0.205374 -0.143924 0.391076 -0.316343 0.657357 -1.324250 -1.773059 0.643566 -0.137255 -0.255759 -0.247482 -0.051720 0.943894 0.246846 0.503085 -0.955747 -1.789799 0.734771 0.016167 1.070726 0.532811 0.679131 1.230571 0.458479 -0.467586 -1.074588 -0.694578 0.662186 -0.155886 -0.888978 -0.372712 -0.511858 1.270312 1.558709 -0.150977 -0.308283 -0.758645 1.299792 -1.130689 -0.137215 1.013719 0.391802 -0.977780 -0.109056 1.179568 -0.966510 -0.932630 -0.673376 -0.275832 -0.508417 -1.230076 0.231666 -0.812770 0.266067 0.727191 -0.113091 -0.678508 0.424267 0.184982 0.023852 0.088429 1.331461 1.410487 -0.925140 0.435920 -1.099029 0.753931 -1.873186 -1.401345 0.433099 -0.375686 -0.611654 0.027528 0.100274 0.877083 -0.283358 0.321886 -0.011796 -0.389029 +PE-benchmarks/snake-ladder.cpp__std::queue > >::empty() const = -0.146834 0.178332 0.459434 -0.506570 0.472445 0.335594 0.137206 -0.217885 -0.439797 -0.182001 0.024221 -0.623143 -0.367505 0.585579 -0.284731 0.109356 0.718740 0.140785 -0.199744 -0.100455 0.260275 0.010713 0.703438 0.662740 -0.548969 0.060866 0.061857 0.323684 0.029621 0.625819 -0.294166 -0.542673 0.115534 0.080105 0.109630 -0.281834 -0.022181 -0.047935 0.030331 -0.797782 0.099174 0.213134 0.039435 -0.105728 0.035579 0.136768 0.696152 0.416733 -0.057107 0.031500 0.361115 0.295416 0.038999 0.124295 0.272110 0.011702 0.614363 -0.162935 -0.234194 -0.117559 -0.128934 -0.204868 -0.101651 0.572435 0.623247 0.135231 -0.040579 -0.106657 -0.025317 0.118730 0.109854 0.156633 0.071438 0.340717 0.112298 -0.123642 0.273865 -0.635055 -0.011565 -0.782041 -0.367800 -0.185958 0.328629 0.360084 0.116935 -0.133427 0.617844 0.011414 0.038414 0.149629 0.768167 -0.395942 -0.187833 -0.215613 -0.395309 0.152390 -0.217757 0.059775 -0.111798 0.110129 -0.436104 -0.282955 0.187293 0.055062 -0.229518 0.191296 0.022193 0.407172 -0.542811 -0.087516 -0.245680 0.176136 0.064938 -0.800762 -0.225073 -0.324866 0.188456 -0.001855 -0.238932 -0.381670 0.179486 0.268687 -0.274845 -0.036359 -0.635115 0.496849 0.213427 0.042644 -0.005640 -0.087964 0.209123 0.440201 0.088231 -0.353202 0.015349 -0.051845 -0.164494 0.010303 -0.327472 -0.042848 -0.015134 -0.367562 0.097986 0.300730 -0.327565 -0.055969 -0.261429 -0.082888 0.229109 1.361702 -0.220463 0.477839 0.182077 -0.609492 0.260295 -0.013286 -0.159766 0.029130 0.250994 0.275134 -0.397745 -0.451650 0.380629 0.594205 0.367296 -0.368489 0.120277 -0.064103 -0.103780 -0.065868 0.187749 0.074057 -0.155659 -0.363645 -0.217376 0.270952 0.892481 -0.049260 -0.661807 0.213632 0.090652 -0.017017 -0.134672 -0.104867 -0.044853 0.125158 0.106526 -0.076222 0.386432 0.687856 -1.254971 0.554395 0.066066 -0.270097 0.583874 -0.119018 -0.292529 -0.253076 0.036867 0.505160 0.548137 0.043277 -0.049596 0.012625 -0.502121 -0.099324 0.035521 0.219376 -0.307701 0.262046 0.260313 -0.537588 -0.371392 -0.415268 -0.041450 -0.111379 -0.389554 0.277263 0.038843 -1.104304 0.688370 0.100996 -0.081468 -0.028167 -0.210464 0.192790 -0.495055 -0.566587 0.138680 -0.183796 -0.260585 -0.169456 -0.016546 0.273592 -0.017133 0.309366 -0.426695 -0.459137 0.358213 -0.098635 0.409314 0.245954 0.188941 0.286332 0.341818 -0.087105 -0.301974 -0.185146 0.353901 -0.110443 -0.332328 0.247975 -0.250080 0.394342 0.556337 -0.068416 -0.196681 -0.199108 0.497941 -0.172546 -0.146684 0.337155 -0.142072 -0.394347 0.107771 0.408833 -0.343925 -0.233926 -0.376652 -0.198285 -0.245812 -0.433869 0.234615 -0.124418 0.143463 0.248259 -0.052509 -0.355721 0.226859 0.031101 -0.108989 0.139028 0.620136 0.434922 -0.174949 0.334660 -0.482657 0.283833 -0.706174 -0.519005 0.171880 -0.251803 -0.327309 -0.038717 -0.152301 0.414313 -0.034312 0.169651 -0.064326 0.101828 +PE-benchmarks/snake-ladder.cpp__std::queue > >::front() = -0.156982 0.254591 0.415333 -0.379716 0.388872 0.180858 0.121647 -0.123141 -0.296189 -0.308608 -0.080178 -0.496233 -0.466060 0.532473 -0.266126 0.005722 0.707278 0.185480 -0.094062 -0.145829 0.243533 -0.134924 0.659304 0.606114 -0.529389 0.015429 0.191136 0.330889 0.047377 0.558664 -0.194910 -0.522017 0.159202 0.104815 0.234956 -0.329190 0.029725 -0.067141 -0.158084 -0.771784 0.055985 0.138016 0.049958 -0.078870 0.004190 0.269353 0.695718 0.397206 -0.101093 -0.016221 0.311613 0.304927 0.025343 0.144261 0.184392 -0.026411 0.441843 -0.201923 -0.255255 -0.056497 -0.134687 -0.387427 -0.097566 0.540540 0.611672 0.110649 0.025197 -0.057475 -0.119918 0.149748 0.031771 0.134917 0.180359 0.312111 0.156885 -0.194941 0.155894 -0.711556 -0.079660 -1.069884 -0.332448 -0.347627 0.258298 0.266142 0.071976 -0.055765 0.590916 0.095359 0.157435 0.199591 0.783684 -0.369317 -0.185353 -0.290064 -0.294643 0.190956 -0.259717 0.050576 -0.022637 0.093488 -0.396274 -0.321233 0.179922 0.014116 -0.200559 0.095270 -0.047041 0.412702 -0.603644 -0.051751 -0.444091 -0.017548 0.072780 -0.773799 -0.046691 -0.248646 0.300065 0.047935 -0.156800 -0.337772 0.171194 0.331408 -0.192998 -0.058913 -0.575864 0.496057 0.135537 -0.044964 0.036081 -0.030753 0.154017 0.376212 0.266742 -0.262979 -0.077385 0.000805 -0.291398 -0.107724 -0.353150 -0.051140 0.161086 -0.381007 0.086913 0.272071 -0.317338 -0.171155 -0.155131 -0.239358 0.351304 1.125334 -0.212331 0.331773 0.104604 -0.594441 0.228613 -0.040392 -0.196139 0.023039 0.316955 0.314919 -0.286884 -0.416309 0.304559 0.540546 0.341758 -0.309584 0.033871 -0.154348 -0.046688 -0.086659 0.130886 0.125549 -0.202499 -0.323065 -0.187681 0.238405 0.741853 -0.094055 -0.512474 0.179604 0.109324 -0.016695 -0.228752 -0.081608 -0.018506 0.077683 0.047401 -0.096711 0.294824 0.647841 -1.165934 0.523971 0.034054 -0.201982 0.423650 -0.145726 -0.182463 -0.421558 0.146062 0.567410 0.502161 0.050502 0.008276 -0.060997 -0.481692 -0.088615 0.019722 0.343093 -0.263390 0.235177 0.185075 -0.507780 -0.440109 -0.352458 -0.006082 -0.130673 -0.266643 0.210240 0.129630 -1.084656 0.718510 -0.044698 -0.077676 -0.021736 -0.132837 0.178224 -0.530357 -0.600726 0.122696 -0.190300 -0.306528 -0.211350 -0.008975 0.317559 -0.091582 0.137924 -0.295878 -0.452742 0.350055 -0.066152 0.318908 0.205169 0.292128 0.454712 0.289195 -0.139856 -0.314261 -0.111222 0.231857 -0.229515 -0.269176 0.219776 -0.172456 0.373065 0.657899 -0.090331 -0.124878 -0.058065 0.491868 -0.246037 -0.229497 0.358944 -0.024215 -0.273285 0.188268 0.403674 -0.378484 -0.376124 -0.383913 -0.119792 -0.128406 -0.479153 0.129325 -0.315147 0.068211 0.336700 -0.056495 -0.364889 0.244243 0.052213 -0.064192 0.049415 0.560819 0.537334 -0.288459 0.309714 -0.425050 0.222423 -0.727491 -0.470702 0.104043 -0.120681 -0.137006 0.013516 -0.116422 0.313453 -0.075828 0.135829 -0.077721 -0.015620 +PE-benchmarks/snake-ladder.cpp__std::queue > >::pop() = -0.297000 0.428750 0.758409 -0.838852 0.991488 0.889888 0.239111 -0.263133 -0.628736 -0.271118 -0.214085 -0.870272 -0.727174 1.116496 -0.460477 0.314764 1.399888 0.279476 -0.274162 -0.047141 0.657067 -0.026870 1.247284 0.969419 -0.977949 0.010821 0.332541 0.539028 -0.162388 1.321109 -0.706266 -1.154149 0.245261 -0.044049 0.271157 -0.625424 0.078669 -0.125190 -0.007449 -1.448655 0.152139 0.347734 -0.192805 -0.222136 -0.060583 -0.006829 1.326217 0.777500 -0.179689 -0.128598 0.534669 0.579076 -0.082945 0.280341 0.411975 0.326940 0.803021 -0.146517 -0.547428 -0.238345 -0.286628 -0.408249 -0.114598 0.955695 1.089862 0.201180 0.022647 0.057393 -0.224661 0.164365 0.054357 0.204834 0.232613 0.539423 0.314610 -0.340310 0.159055 -1.085058 -0.119642 -1.334090 -0.600419 -0.645127 0.199652 0.494474 0.401894 -0.356389 1.156424 -0.130678 0.265917 0.334327 1.488052 -0.929322 -0.349496 -0.857104 -0.636598 0.196958 -0.462229 -0.131683 -0.054229 -0.147460 -0.767952 -0.812990 0.262749 0.226755 -0.334448 -0.002608 -0.074843 0.915221 -0.931778 -0.421927 -0.762120 0.225140 -0.174546 -1.484342 -0.465040 -0.380011 0.245924 0.061188 -0.256509 -1.024601 0.381204 0.901660 -0.485967 -0.409890 -0.540945 1.039148 0.458362 -0.129041 0.113931 -0.177680 0.295212 0.956320 0.640758 -0.500202 -0.146964 0.032837 -0.450145 -0.217263 -0.658681 -0.074921 -0.100237 -0.821281 0.033321 0.868498 -0.583312 0.094782 -0.290075 -0.329249 0.692262 2.751208 -0.483527 0.635304 0.061952 -1.290931 0.683317 0.014185 -0.441659 -0.065940 0.472720 0.578946 -1.104079 -0.810794 0.673469 0.986190 0.706382 -0.714091 0.100706 -0.464096 -0.135341 -0.152728 0.133901 0.353606 -0.322274 -0.666968 -0.374543 0.412465 1.825216 -0.404370 -1.397207 0.593048 0.256572 -0.145315 -0.458732 -0.307317 -0.365868 0.047717 0.283300 -0.281426 0.673307 1.300466 -2.043748 1.009805 -0.023267 -0.704752 1.031342 -0.276521 -0.278348 -0.318495 0.081824 1.144014 1.082159 0.120051 -0.022315 -0.203904 -0.867510 -0.071128 0.091650 0.600949 -0.386820 0.400159 0.313870 -1.125642 -0.780310 -0.635601 -0.178653 -0.443905 -0.593610 0.335410 0.067603 -2.010090 1.414602 0.132563 -0.009671 0.259453 -0.214313 0.478576 -0.911641 -1.255781 0.458313 -0.108298 -0.264250 -0.148025 0.028200 0.700353 0.163950 0.455806 -0.718795 -1.277464 0.525788 0.048485 0.725086 0.370776 0.537110 0.715863 0.545435 -0.323422 -0.694040 -0.626221 0.579690 -0.081961 -0.577134 -0.019735 -0.353073 0.916507 1.076773 -0.097591 -0.279794 -0.640278 0.954818 -0.573742 -0.103061 0.771158 -0.098507 -0.780502 -0.100565 0.912968 -0.624624 -0.737931 -0.573481 -0.061616 -0.433710 -0.907307 0.129002 -0.542724 0.151222 0.601844 -0.111045 -0.662241 0.301198 0.162424 -0.133452 0.015610 1.122423 0.747435 -0.552683 0.516036 -0.786153 0.547955 -1.374941 -0.963392 0.288199 -0.448304 -0.438479 0.059321 0.005638 0.652195 -0.276577 0.429094 0.027751 -0.331417 +PE-benchmarks/snake-ladder.cpp__std::queue > >::~queue() = -0.168099 0.123011 0.468565 -0.457998 0.501713 0.166102 0.139788 0.011299 -0.432637 -0.312156 -0.126859 -0.410257 -0.497140 0.613328 -0.269853 0.054436 0.793507 0.290278 -0.097309 -0.198763 0.341101 -0.178161 0.714328 0.583166 -0.620751 0.016275 0.095813 0.492328 0.086374 0.706834 -0.184652 -0.508027 0.162825 0.112307 0.271428 -0.506783 0.111816 0.085849 -0.269381 -0.919767 0.078180 0.209287 0.013877 -0.021934 0.032261 0.395056 0.612931 0.466731 -0.185507 0.111435 0.393881 0.320923 0.032455 0.198664 0.077647 0.046984 0.392948 -0.269576 -0.342376 -0.032567 -0.122793 -0.569893 -0.036517 0.502605 0.704571 0.015693 0.039807 -0.028361 -0.104591 0.193314 0.172376 0.106979 0.171072 0.116176 0.253885 -0.146906 0.046528 -0.770580 -0.048855 -1.280128 -0.357608 -0.459219 0.449089 0.332208 0.013632 -0.121980 0.689309 0.043836 0.150830 0.310837 0.726156 -0.379410 -0.207712 -0.459042 -0.289795 0.260420 -0.325225 -0.131806 0.033100 0.204074 -0.373913 -0.331625 0.173539 -0.064883 -0.213390 0.047492 -0.157508 0.574209 -0.775474 -0.115835 -0.559421 0.193100 0.076303 -0.778895 -0.066911 -0.281319 0.367458 0.028792 -0.026244 -0.203415 0.170113 0.357126 -0.228879 0.013076 -0.605882 0.588492 0.130141 -0.148745 0.072224 0.016580 0.032724 0.355182 0.348670 -0.314436 -0.219332 0.183119 -0.274263 -0.112497 -0.501351 -0.026867 0.209857 -0.493041 0.106032 0.228319 -0.330204 -0.200888 -0.228518 -0.214248 0.433005 1.155124 -0.145473 0.303517 0.118026 -0.558988 0.303222 0.065712 -0.112101 0.177051 0.343822 0.187582 -0.266589 -0.479493 0.219502 0.523910 0.400748 -0.380974 -0.019744 -0.256102 0.000000 -0.023883 0.075257 0.241308 -0.239815 -0.304634 -0.169055 0.096979 0.809818 -0.065542 -0.603058 0.231048 0.184216 -0.227548 -0.291477 -0.135756 -0.002445 -0.023811 0.104981 -0.111763 0.294004 0.726980 -1.273184 0.587896 0.064352 -0.158671 0.380558 -0.208801 -0.079600 -0.513850 0.024894 0.519643 0.682474 0.026924 0.022028 0.021525 -0.532961 -0.010976 0.059369 0.372954 -0.207377 0.214837 0.173458 -0.451702 -0.399855 -0.382331 -0.072144 -0.045998 -0.243700 0.206245 0.143691 -1.255055 0.647901 -0.207555 -0.105258 0.113622 -0.006362 0.293526 -0.542464 -0.630349 0.204384 -0.056934 -0.435112 -0.362334 0.063439 0.450956 -0.135526 0.110043 -0.257148 -0.595430 0.393983 -0.115154 0.258800 0.221651 0.215095 0.546030 0.343019 -0.212598 -0.369570 -0.172287 0.241957 -0.307410 -0.143029 0.281635 -0.134153 0.402641 0.719212 0.023498 -0.107265 -0.088231 0.695148 -0.284381 -0.297780 0.471725 -0.039278 -0.184003 0.374973 0.533131 -0.535157 -0.469129 -0.419888 -0.007623 0.001124 -0.422882 0.237153 -0.382493 0.109729 0.336753 0.045387 -0.446688 0.311561 0.084952 -0.142069 -0.106840 0.820841 0.682687 -0.325184 0.406689 -0.384993 0.258156 -0.763064 -0.372581 -0.042175 -0.141301 -0.131524 0.197928 -0.086148 0.389001 -0.070497 0.168490 -0.099183 -0.126116 +PE-benchmarks/snake-ladder.cpp__main = -1.593690 -1.756275 1.387683 -4.295027 3.015792 1.378567 1.503210 -1.168988 -4.970151 -0.881568 1.233835 -4.013845 -0.911202 5.418167 -1.482476 3.381171 7.060880 1.850409 -2.173989 -0.922658 4.841420 -2.632577 5.655163 5.466617 -4.211972 -0.239879 -0.186363 2.797839 1.520439 2.607893 -0.872633 -1.542704 1.465206 -4.040544 0.251518 -4.083949 0.847402 1.755534 2.286205 -7.409682 1.351162 0.734190 1.402517 -1.227750 -1.006764 2.198245 3.208170 3.960879 -1.616093 1.320799 3.611771 -0.073928 -0.251377 1.201904 0.910727 1.431039 2.185628 1.540719 -2.498050 -1.193133 -0.642736 -2.568282 1.874307 3.924082 5.608312 0.229210 0.169610 2.099493 1.270854 1.123149 2.836052 0.403096 -0.796646 -0.723121 2.369264 -5.653018 0.077436 -8.564557 -0.792520 -10.023421 -2.761042 -0.553271 3.969561 -0.612004 1.916792 -0.286579 4.295390 -0.907820 -0.495934 3.554875 4.826969 -3.708794 -2.213747 -3.541451 -3.138702 1.679516 -2.373525 -0.802093 3.444952 0.671295 -3.662423 -2.144868 2.365152 1.878138 -1.456706 -1.867794 0.664215 4.244319 -3.915293 -3.560570 -1.089885 2.955108 -0.857254 -6.496825 0.631332 -3.543243 2.308061 0.375137 -1.329877 -3.393160 0.713161 2.625566 -1.856717 -1.540734 -2.391474 4.624085 1.441634 1.398433 0.524962 -0.110688 0.355491 4.742113 2.781621 -3.186284 0.017358 0.727538 -2.438438 1.185648 -3.782447 -2.586179 2.610969 -4.369852 -0.076729 2.214790 -2.767125 -0.597232 3.542171 1.609102 1.803467 13.163742 0.105298 4.953586 2.705390 -4.176631 3.420683 -0.101047 0.369032 1.686733 2.633661 -0.259604 -6.780938 -4.218974 1.883296 4.259531 3.647846 -5.201697 -2.698093 -1.495539 -0.425099 1.039051 -0.425938 1.348123 -0.474179 -3.593305 -1.017193 2.171038 8.807536 -1.719588 -2.459775 2.077307 1.210653 -3.039451 -6.692138 -1.814980 -3.112527 0.756395 -0.413431 -0.296030 2.844208 5.797171 -9.193732 4.438864 -1.349084 -0.451315 4.137255 0.278412 -3.467060 -7.490816 -1.253704 2.728073 5.995139 -0.647845 -0.464525 2.145640 -3.866311 -0.088309 0.270505 0.606210 -1.007709 1.731773 0.056701 -2.525869 -2.234467 -0.009110 -1.279388 -1.055566 -0.274421 2.447063 0.469206 -6.344423 4.102171 -0.703470 -1.448498 1.549636 -0.283003 2.985235 -3.875263 -4.398610 2.345251 0.437930 -1.532288 -3.594586 0.652984 3.210391 0.141238 0.240051 -2.109671 -6.116176 2.743014 -2.841881 3.418994 1.854974 -0.573548 3.456681 2.188596 -1.160993 -4.664439 -1.491917 -1.278649 -0.792759 -3.336130 -1.698615 -1.080788 4.223900 3.500562 0.341525 -1.655141 -0.244925 5.644257 -3.665480 -1.966428 3.477726 0.380926 -3.543637 1.508104 4.257857 -5.625043 -0.698592 -2.305604 -1.044741 -0.629813 -2.759553 2.801864 0.077602 2.213951 -0.269852 0.965302 -0.304757 1.763338 1.512207 0.400468 -0.041896 6.761904 5.715841 -2.049409 -0.591005 -3.838219 2.070681 -5.482767 -4.356311 1.101648 1.251337 -3.371158 1.493843 1.590299 4.591468 0.473990 -0.284141 -0.691029 0.099385 +PE-benchmarks/snake-ladder.cpp__std::deque >::~deque() = -0.465508 0.560119 1.348740 -1.358309 1.821671 0.935364 0.389199 0.187749 -1.149369 -0.961424 -0.488776 -1.463881 -1.869157 1.901485 -0.718589 0.161713 2.249656 0.498184 -0.329733 -0.313465 1.093267 -0.097527 2.081519 1.302854 -1.880133 0.029523 0.151762 1.403801 -0.001125 2.180807 -0.524418 -1.830501 0.413818 0.544126 0.775400 -1.101225 0.403371 -0.009976 -0.957544 -2.508292 0.161223 1.062533 -0.362164 -0.060405 0.032246 0.964558 2.033094 1.429761 -0.681388 0.022105 1.124807 0.877114 0.033761 0.613621 0.040935 -0.134009 0.893659 -0.796433 -1.217823 -0.267013 -0.376351 -1.617206 -0.347525 1.402727 2.026649 -0.016611 0.041809 0.158688 -0.413661 0.586233 0.328674 0.354354 0.871275 0.409146 0.961567 0.261151 -0.216759 -1.722934 -0.106879 -3.391126 -1.073685 -1.499230 1.259805 1.328056 -0.059630 -0.936972 2.154365 0.058704 0.409895 1.129912 2.381363 -1.092385 -0.608865 -1.879437 -0.818818 0.725009 -1.027924 -0.511533 0.132946 0.443190 -1.129134 -0.910189 0.068950 -0.370395 -0.594950 0.048127 -0.632577 1.803410 -2.143997 -0.179537 -1.779622 0.741353 0.340764 -2.471945 -0.782959 -0.385379 0.572705 0.092683 0.152947 -0.511618 0.543393 1.033484 -0.786078 0.006081 -1.579252 1.947358 0.572086 -0.458649 0.386727 0.295679 0.363911 1.012081 1.097389 -0.759655 -0.843705 0.423152 -0.496996 -0.311963 -1.297529 0.112299 0.408536 -1.475496 0.286583 0.914722 -0.877046 -0.466886 -1.438939 -0.820934 1.355978 3.521158 -0.518669 0.803329 0.108866 -1.741778 1.151455 0.232420 -0.627144 0.318215 0.769622 0.762979 -0.671232 -1.391772 0.994911 1.527103 1.174288 -1.217162 0.493901 -0.680162 0.064434 -0.456722 0.197337 1.056384 -0.533587 -0.809774 -0.502023 0.493713 2.485713 -0.380552 -2.401969 1.071080 0.786665 -0.368972 -0.556215 -0.479118 0.119116 -0.351508 0.719655 -0.351180 0.920094 2.252919 -3.383016 1.705173 0.660066 -0.657829 1.208426 -0.774387 -0.126188 -1.048771 -0.012850 1.808221 1.913738 0.217736 -0.115985 -0.390841 -1.527440 0.139819 0.421670 1.052336 -0.364259 0.553632 0.193565 -1.162612 -1.301382 -1.444525 -0.518830 0.071656 -0.966100 0.527111 0.407939 -3.665838 2.151226 -0.594230 -0.211770 0.125802 -0.134073 1.039657 -1.507267 -2.035816 0.701168 -0.388047 -1.668291 -0.959549 0.281872 1.208749 0.009312 0.459737 -0.808561 -2.110529 1.386758 -0.091542 0.832404 0.640582 0.875073 1.633069 1.357628 -0.856128 -1.057629 -1.132965 1.204506 -0.648055 -0.523639 0.730593 -0.308379 1.235620 1.941367 -0.064586 -0.414760 -0.904732 1.821891 -0.849244 -0.889307 1.532043 -0.408635 -0.789704 0.983139 1.739308 -1.271635 -1.445423 -1.411733 0.211432 -0.355675 -1.471328 0.281442 -1.185610 0.114150 1.279955 -0.043006 -1.470382 0.771947 0.244378 -0.611085 -0.593468 2.517935 1.843466 -1.238124 1.338469 -1.259542 1.036346 -2.356828 -1.333405 0.150480 -0.797753 -0.208279 0.472902 -0.052656 0.935145 -0.398810 0.422391 -0.396987 -0.500101 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.086960 0.007450 0.225831 -0.211146 0.169658 -0.050496 0.082272 -0.081162 -0.248976 -0.114555 -0.045527 -0.118980 -0.083242 0.302936 -0.107654 0.186736 0.478788 0.241598 -0.036889 -0.211864 0.247560 -0.427696 0.406023 0.440610 -0.347358 0.038353 0.201968 0.281744 0.184535 0.333062 -0.226223 -0.038754 0.114509 -0.259008 0.177896 -0.434551 0.043542 0.125748 0.046752 -0.602423 0.040672 -0.117332 0.179683 -0.008855 -0.035543 0.281366 0.281603 0.249885 -0.097546 0.190398 0.242715 0.010670 0.075410 0.099511 0.113234 0.244356 0.360454 0.040666 -0.135334 0.053536 -0.033947 -0.413083 0.163485 0.281529 0.419075 -0.031230 0.031184 0.085228 0.009145 0.035447 0.146072 0.073544 -0.092414 0.003105 0.142572 -0.612089 0.181247 -0.731169 -0.094819 -0.910930 -0.216033 -0.236248 0.147012 -0.147962 0.201482 0.198907 0.365501 0.004164 0.103786 0.013365 0.333344 -0.364821 -0.125023 -0.135467 -0.128546 0.126088 -0.182616 -0.086527 0.196266 0.038521 -0.190779 -0.274484 0.406871 0.122972 -0.154663 -0.057771 -0.052814 0.293587 -0.430781 -0.323324 -0.321613 -0.083763 -0.155081 -0.388926 0.335742 -0.250643 0.380731 0.050963 -0.043963 -0.341008 0.056942 0.322316 -0.063867 -0.154504 -0.248873 0.309237 0.074501 -0.055283 0.042833 -0.066631 -0.034185 0.325980 0.354768 -0.204877 -0.099020 0.177883 -0.354852 -0.057219 -0.329936 -0.177203 0.252290 -0.336160 -0.059154 0.109408 -0.209947 0.010250 0.488537 -0.009811 0.212679 0.719638 -0.007904 0.174337 0.120283 -0.313920 0.203810 0.002153 0.009236 0.196014 0.282352 0.046103 -0.482344 -0.283261 -0.006866 0.301053 0.215910 -0.318034 -0.401777 -0.233038 0.008047 0.179821 -0.020583 0.054277 -0.139876 -0.203489 -0.059742 -0.036162 0.563237 -0.148395 -0.098517 0.051129 -0.099113 -0.345447 -0.619229 -0.099454 -0.257296 0.035395 -0.250725 -0.038033 0.115926 0.367148 -0.807720 0.340143 -0.272540 -0.128101 0.305223 -0.062910 -0.070185 -0.626245 0.045650 0.194094 0.402332 -0.045447 0.061814 0.155560 -0.321655 -0.036858 -0.080833 0.193846 -0.177067 0.169346 0.122923 -0.319479 -0.182238 0.006708 0.070177 -0.188262 0.048549 0.146623 0.079425 -0.653634 0.274228 -0.131401 -0.125860 0.282353 0.071096 0.114864 -0.347362 -0.305254 0.139124 0.099797 0.021460 -0.262518 -0.001258 0.288243 -0.192140 -0.159393 -0.135591 -0.335067 0.064657 -0.223509 0.098413 0.154078 0.028874 0.316880 0.097701 -0.105747 -0.299533 0.211825 -0.267826 -0.247813 -0.056670 -0.114128 -0.092274 0.286175 0.489659 0.100939 0.111540 0.157729 0.443225 -0.328050 -0.189358 0.235945 0.192466 -0.091853 0.160675 0.247827 -0.407755 -0.220114 -0.134862 -0.137724 0.138862 -0.167037 0.258194 -0.240344 0.100893 0.106233 0.041313 -0.095016 0.245711 0.044340 0.042065 -0.065312 0.445378 0.532505 -0.172406 0.015401 -0.192958 0.057261 -0.407117 -0.143055 -0.081066 0.251643 -0.181812 0.139935 0.112146 0.280380 0.040519 0.000711 0.005849 -0.166405 +PE-benchmarks/snake-ladder.cpp__std::deque >::begin() = -0.202872 0.386286 0.833724 -0.768901 0.740881 0.663745 0.189043 -0.256858 -0.591395 -0.176435 -0.161819 -0.690996 -0.517768 0.896668 -0.399165 0.147309 1.264190 0.331733 -0.258820 -0.189273 0.501414 -0.160129 1.084665 1.059747 -0.910557 0.088716 0.392530 0.531347 0.062486 1.142907 -0.746586 -0.784597 0.139268 -0.050805 0.323805 -0.661185 -0.043111 -0.154620 0.005727 -1.416468 0.125679 0.142903 -0.105700 -0.165007 0.055067 0.224360 1.196741 0.621110 -0.144701 -0.032234 0.501326 0.459086 0.015406 0.169219 0.468155 0.382453 1.055980 0.104745 -0.338463 -0.096058 -0.220767 -0.368177 -0.006361 0.894945 0.967628 0.200404 -0.037782 -0.128244 -0.013309 0.075126 0.060947 0.242278 0.126259 0.556816 0.235297 -0.560368 0.415169 -1.187655 -0.025019 -1.270032 -0.570493 -0.537621 0.234890 0.159621 0.337959 -0.187365 1.012782 -0.120191 0.279404 0.138672 1.220847 -0.796707 -0.263686 -0.529516 -0.607878 0.184427 -0.324243 -0.043659 -0.031420 -0.123919 -0.656769 -0.710872 0.454843 0.219050 -0.373789 0.221603 -0.018293 0.760374 -0.780992 -0.352142 -0.649748 0.104121 -0.146817 -1.246945 -0.260797 -0.522911 0.447637 0.043989 -0.333308 -0.923972 0.298948 0.789129 -0.426832 -0.286496 -0.594495 0.943956 0.412188 -0.118188 0.011412 -0.243427 0.250311 0.732486 0.572093 -0.494487 -0.047655 0.089640 -0.549570 -0.238206 -0.644003 -0.069346 0.051769 -0.611464 -0.037110 0.640851 -0.541499 0.137012 0.103735 -0.221219 0.526795 2.615566 -0.422937 0.596790 0.093695 -1.067311 0.592579 0.102466 -0.331137 0.046037 0.497640 0.538340 -1.244930 -0.678197 0.458356 0.927890 0.576733 -0.730285 -0.042129 -0.386019 -0.234039 -0.019455 0.217387 0.100492 -0.305176 -0.563418 -0.340214 0.301482 1.623293 -0.309597 -1.306758 0.280143 0.022696 -0.204843 -0.537440 -0.172870 -0.268376 0.149110 0.061376 -0.232281 0.652475 1.074539 -2.092426 0.902023 -0.179852 -0.683033 1.052886 -0.212143 -0.251461 -0.391656 0.145842 0.887979 0.981433 0.134289 -0.163550 -0.047398 -0.801328 -0.139136 0.017949 0.538595 -0.505640 0.448055 0.439181 -1.031418 -0.601283 -0.610279 -0.021681 -0.405799 -0.538191 0.330878 -0.162025 -1.886209 1.158023 0.176155 -0.041625 0.254066 -0.259352 0.226737 -0.835394 -1.020850 0.304624 0.022253 -0.121845 -0.228702 -0.102536 0.628955 0.032408 0.425198 -0.779203 -1.101091 0.417209 -0.136735 0.660075 0.397519 0.372359 0.654764 0.511793 -0.163682 -0.655640 -0.293573 0.435375 -0.055881 -0.483305 -0.060902 -0.421511 0.719646 1.037167 -0.125295 -0.074435 -0.472824 0.887336 -0.533418 -0.130440 0.533079 0.008439 -0.591755 -0.039051 0.667923 -0.590876 -0.588803 -0.481663 -0.355119 -0.270137 -0.676031 0.313934 -0.485343 0.178051 0.477706 -0.099053 -0.535670 0.332993 0.040843 -0.089465 0.154734 0.922134 0.905502 -0.436491 0.453935 -0.681219 0.518308 -1.158492 -0.737233 0.144851 -0.364537 -0.449572 0.009440 -0.031445 0.620249 -0.122308 0.290000 0.053010 -0.152096 +PE-benchmarks/snake-ladder.cpp__std::deque >::end() = -0.202872 0.386286 0.833724 -0.768901 0.740881 0.663745 0.189043 -0.256858 -0.591395 -0.176435 -0.161819 -0.690996 -0.517768 0.896668 -0.399165 0.147309 1.264190 0.331733 -0.258820 -0.189273 0.501414 -0.160129 1.084665 1.059747 -0.910557 0.088716 0.392530 0.531347 0.062486 1.142907 -0.746586 -0.784597 0.139268 -0.050805 0.323805 -0.661185 -0.043111 -0.154620 0.005727 -1.416468 0.125679 0.142903 -0.105700 -0.165007 0.055067 0.224360 1.196741 0.621110 -0.144701 -0.032234 0.501326 0.459086 0.015406 0.169219 0.468155 0.382453 1.055980 0.104745 -0.338463 -0.096058 -0.220767 -0.368177 -0.006361 0.894945 0.967628 0.200404 -0.037782 -0.128244 -0.013309 0.075126 0.060947 0.242278 0.126259 0.556816 0.235297 -0.560368 0.415169 -1.187655 -0.025019 -1.270032 -0.570493 -0.537621 0.234890 0.159621 0.337959 -0.187365 1.012782 -0.120191 0.279404 0.138672 1.220847 -0.796707 -0.263686 -0.529516 -0.607878 0.184427 -0.324243 -0.043659 -0.031420 -0.123919 -0.656769 -0.710872 0.454843 0.219050 -0.373789 0.221603 -0.018293 0.760374 -0.780992 -0.352142 -0.649748 0.104121 -0.146817 -1.246945 -0.260797 -0.522911 0.447637 0.043989 -0.333308 -0.923972 0.298948 0.789129 -0.426832 -0.286496 -0.594495 0.943956 0.412188 -0.118188 0.011412 -0.243427 0.250311 0.732486 0.572093 -0.494487 -0.047655 0.089640 -0.549570 -0.238206 -0.644003 -0.069346 0.051769 -0.611464 -0.037110 0.640851 -0.541499 0.137012 0.103735 -0.221219 0.526795 2.615566 -0.422937 0.596790 0.093695 -1.067311 0.592579 0.102466 -0.331137 0.046037 0.497640 0.538340 -1.244930 -0.678197 0.458356 0.927890 0.576733 -0.730285 -0.042129 -0.386019 -0.234039 -0.019455 0.217387 0.100492 -0.305176 -0.563418 -0.340214 0.301482 1.623293 -0.309597 -1.306758 0.280143 0.022696 -0.204843 -0.537440 -0.172870 -0.268376 0.149110 0.061376 -0.232281 0.652475 1.074539 -2.092426 0.902023 -0.179852 -0.683033 1.052886 -0.212143 -0.251461 -0.391656 0.145842 0.887979 0.981433 0.134289 -0.163550 -0.047398 -0.801328 -0.139136 0.017949 0.538595 -0.505640 0.448055 0.439181 -1.031418 -0.601283 -0.610279 -0.021681 -0.405799 -0.538191 0.330878 -0.162025 -1.886209 1.158023 0.176155 -0.041625 0.254066 -0.259352 0.226737 -0.835394 -1.020850 0.304624 0.022253 -0.121845 -0.228702 -0.102536 0.628955 0.032408 0.425198 -0.779203 -1.101091 0.417209 -0.136735 0.660075 0.397519 0.372359 0.654764 0.511793 -0.163682 -0.655640 -0.293573 0.435375 -0.055881 -0.483305 -0.060902 -0.421511 0.719646 1.037167 -0.125295 -0.074435 -0.472824 0.887336 -0.533418 -0.130440 0.533079 0.008439 -0.591755 -0.039051 0.667923 -0.590876 -0.588803 -0.481663 -0.355119 -0.270137 -0.676031 0.313934 -0.485343 0.178051 0.477706 -0.099053 -0.535670 0.332993 0.040843 -0.089465 0.154734 0.922134 0.905502 -0.436491 0.453935 -0.681219 0.518308 -1.158492 -0.737233 0.144851 -0.364537 -0.449572 0.009440 -0.031445 0.620249 -0.122308 0.290000 0.053010 -0.152096 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/snake-ladder.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::~_Deque_base() = -0.853431 1.531773 2.312855 -2.951417 3.055930 3.837206 0.653660 -1.149561 -1.952866 -0.350063 -0.423691 -3.131373 -1.957773 3.423975 -1.489927 0.685292 4.243777 0.455799 -1.141382 0.389244 1.749905 1.310904 3.688843 3.138785 -2.781577 0.046726 0.887011 1.109684 -0.992728 3.950409 -2.227452 -4.307718 0.421825 0.310221 0.305595 -1.292814 -0.182621 -0.892587 0.546962 -4.215108 0.603496 1.376626 -1.151003 -1.020101 0.010662 -1.302183 4.450678 2.196520 -0.297404 -0.958253 1.446988 2.410339 -0.575640 0.529208 1.687442 0.863651 2.591885 -0.157293 -1.233409 -1.062912 -0.936232 0.446236 -0.727993 3.154381 2.992125 1.124963 -0.195977 -0.417254 -0.393933 0.350001 -0.191606 0.687419 0.713083 2.412882 0.510445 -0.212463 0.568791 -2.764137 0.116626 -2.016670 -1.787586 -1.238712 0.359702 1.967865 1.163307 -1.742482 3.311028 -0.778501 0.673380 1.122049 4.693174 -2.486261 -0.912210 -2.333472 -2.543816 0.402369 -0.931489 0.113958 -1.023102 -0.833289 -2.554676 -2.530795 0.136120 0.876712 -1.027828 0.357630 0.380862 2.456741 -1.932071 -0.820508 -1.362140 1.357794 -0.369320 -4.659105 -3.055261 -1.405208 -0.078846 0.010458 -1.490800 -3.487404 1.218422 2.479003 -1.808277 -1.209000 -1.296446 2.934450 1.768526 -0.058622 0.016061 -0.923156 1.384011 3.028185 1.029332 -1.637421 0.324274 -0.508827 -0.754461 -0.645191 -1.687408 0.110584 -1.307507 -1.945191 0.294005 3.132583 -1.801091 0.465713 -1.771748 -0.934217 1.659766 10.035945 -1.906695 2.421938 0.276227 -4.157581 1.915567 0.086432 -1.653858 -0.803021 1.132122 2.196097 -3.758573 -2.268851 2.519656 3.234036 2.139679 -1.922853 1.298922 -0.861810 -1.012021 -0.892548 0.890535 0.495937 -0.814044 -2.181031 -1.368088 2.018275 5.750188 -0.942567 -5.224333 1.647833 1.378322 0.414601 0.036570 -0.703100 -1.106059 0.547003 1.773717 -0.979288 2.658691 3.902491 -6.294244 2.931107 0.432393 -2.433546 3.403941 -0.437604 -1.365295 0.645592 0.308096 3.656903 3.163460 0.465628 -0.277689 -0.881814 -2.491660 -0.463084 0.534472 1.514318 -1.480712 1.324720 1.236621 -3.739028 -2.234867 -2.251846 -0.814850 -1.511282 -2.672304 1.070697 -0.395411 -5.844220 4.621030 1.470715 0.332241 0.202580 -1.547997 1.356282 -2.630793 -3.860475 1.282831 -0.438533 -0.400728 0.500374 -0.230435 1.911126 1.297416 2.833014 -2.868606 -3.894701 1.667046 0.645933 2.921475 1.181600 1.596097 1.498671 1.392702 -0.476911 -1.961373 -2.948303 3.128176 0.931047 -2.451120 -0.138183 -1.508312 2.677565 2.706392 -0.860858 -1.633371 -2.976750 2.413700 -1.247606 0.575638 1.846612 -0.886391 -3.008943 -1.304149 2.488762 -1.312380 -1.679552 -1.705112 -0.250942 -2.161989 -2.895105 0.230049 -0.931848 0.597732 1.645719 -0.646143 -1.981152 0.459156 0.473765 -0.425690 0.999888 2.657839 1.186440 -1.217308 1.710864 -2.658815 1.955408 -4.083497 -3.456516 1.384267 -2.716281 -1.701754 -0.504371 -0.635634 2.016856 -0.964151 1.928686 0.256911 -0.212900 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.505811 0.844616 1.322920 -1.512303 1.543086 1.701722 0.340376 -0.888870 -0.877962 -0.216542 -0.219635 -1.105424 -0.822816 1.705381 -0.873020 0.532119 2.354085 0.313364 -0.516282 -0.302882 1.374117 -0.139575 2.150913 1.851168 -1.761620 -0.046119 1.361837 0.768937 0.208633 1.788520 -1.549284 -1.508089 0.457858 -0.720190 0.350787 -1.095301 0.052617 -0.560286 0.555997 -2.253224 0.214088 -0.529385 -0.930975 -0.368556 -0.252023 0.188499 2.329663 1.223884 -0.438266 -0.295118 1.140243 0.981395 -0.467182 0.325530 0.801724 0.816218 1.675608 0.820840 -0.418444 -0.469495 -0.463624 -0.243812 0.072946 1.819619 1.778177 0.445055 0.084881 0.362482 -0.115091 0.032075 -0.060941 0.404633 0.288146 1.256346 0.560906 -1.838358 0.373091 -2.830979 -0.384961 -2.270691 -0.891524 -1.001361 -0.388674 -0.688778 1.044067 0.029867 1.812071 -0.096075 0.478471 0.508217 2.486521 -1.831783 -0.496669 -1.200166 -1.257950 0.108387 -0.703644 0.234126 -0.002634 -0.630016 -1.282868 -1.782907 0.658860 0.755326 -0.606258 -0.369580 0.043853 1.395568 -1.201265 -0.872777 -1.104524 0.015726 -0.655304 -2.579327 -0.784526 -0.962982 1.536262 -0.062532 -0.579416 -2.383778 0.488551 2.057523 -0.768371 -1.147983 0.243045 1.542849 1.214691 0.064564 -0.015733 -0.669022 0.634838 1.939155 1.580637 -0.824879 -0.112802 -0.201128 -1.174325 -0.454448 -1.173022 -0.058521 0.210406 -1.163985 0.139391 1.879109 -0.947083 0.176151 1.463117 -0.610206 1.097887 5.739965 -0.838882 1.131834 0.095316 -2.326031 0.725722 -0.172156 -0.736517 -0.019036 0.848514 1.088384 -3.043456 -1.321419 1.145724 1.670373 1.071417 -1.846932 -0.285975 -0.821790 -0.489678 -0.223539 0.027592 0.288817 -0.689010 -1.058124 -0.698162 0.972681 3.285316 -1.052822 -2.477503 0.785187 0.215951 -0.317656 -1.248858 -0.535383 -0.773265 0.423075 0.608821 -0.441472 1.350501 2.090903 -3.991970 1.457376 -0.526783 -1.380986 1.753827 0.042586 -0.625631 -0.391340 0.507366 1.920486 1.521613 0.332285 -0.087146 -0.164610 -1.445111 -0.213649 0.102828 1.031496 -0.802525 0.716641 0.951244 -2.183639 -1.428247 -0.606435 -0.068232 -0.957687 -0.718884 0.618316 -0.880156 -3.902045 2.489764 0.403172 0.009238 0.599747 -0.734896 0.892431 -1.649228 -2.176514 0.925325 0.086326 0.351120 -0.148337 -0.046631 1.280206 0.439514 1.178358 -1.640775 -2.504522 0.451348 -0.090856 1.326487 0.608428 1.040953 1.523490 -0.342223 -0.218451 -1.786860 -0.694332 1.025453 0.436496 -1.379208 -0.778223 -0.599348 1.636616 1.793706 -0.463921 -0.267363 -0.921395 1.427207 -1.727754 0.067649 0.954529 1.226786 -1.642496 -0.508261 1.193348 -0.983774 -1.169381 -0.626488 -0.662335 -0.830230 -1.613734 0.297870 -0.794726 0.422757 0.913520 -0.015935 -0.688041 0.556871 0.150883 0.341613 0.359500 1.278355 2.245120 -1.121778 0.134800 -1.442318 1.047979 -2.357376 -2.073384 0.814217 -0.799838 -0.691124 -0.088603 -0.028103 1.300686 -0.379169 0.588725 0.328840 -0.490634 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_destroy_nodes(queueEntry**, queueEntry**) = -0.709235 -0.073459 0.551905 -1.471759 1.160995 0.727957 0.416206 -0.345351 -1.203372 -0.601203 -0.209255 -0.886838 -0.596819 1.939514 -0.557882 1.126320 2.688392 0.785533 -0.337170 -0.414650 1.891771 -1.364098 2.105966 1.927832 -1.733368 -0.241844 1.086641 1.294017 0.450636 1.375984 -0.469219 -1.146320 0.574418 -1.416393 0.523268 -2.030294 0.544430 0.610935 0.491414 -2.861716 0.352875 -0.406235 0.032855 -0.370517 -0.567297 0.514369 1.710990 1.526282 -0.990783 0.223706 1.348559 0.565070 -0.408211 0.522492 0.072890 0.799513 0.446167 0.506752 -0.702494 -0.297815 -0.186942 -1.228052 0.790962 1.524226 2.226910 -0.022303 0.316663 1.048742 -0.011829 0.332056 0.533704 0.145286 -0.050506 -0.131216 0.968847 -2.775126 -0.412201 -4.220471 -0.400182 -4.187474 -0.909787 -0.990386 0.526998 -0.519850 0.923710 0.069175 1.773214 -0.156185 0.405189 1.411165 2.128366 -1.630310 -0.672819 -1.813842 -1.138443 0.739812 -1.010290 -0.376159 1.000892 -0.083695 -1.174870 -1.740640 0.904170 0.714626 -0.585252 -1.517174 -0.055848 1.655486 -1.662999 -1.505080 -1.185748 0.500294 -0.742189 -2.568802 0.488520 -1.352539 1.348268 0.035028 -0.117744 -1.931847 0.172954 1.794738 -0.514474 -1.070248 -0.306121 1.682170 0.743761 -0.062987 0.305985 -0.329760 0.009747 2.091482 1.823845 -1.016917 -0.501496 0.531351 -1.458336 -0.307079 -1.886669 -0.724002 1.261938 -1.798574 -0.163787 1.397616 -1.016245 -0.345258 2.224567 -0.382421 1.295304 5.650662 -0.062300 1.063423 0.651041 -2.019489 1.274303 -0.074545 -0.283636 0.694708 1.199157 0.265854 -2.986980 -1.525387 0.464206 1.496561 1.349019 -1.755292 -1.604638 -1.065911 -0.134078 0.264731 -0.404698 0.594646 -0.711210 -1.186754 -0.387691 0.740483 3.226799 -0.830439 -0.844899 0.826593 1.034966 -1.541596 -2.777165 -0.714430 -1.726128 0.045439 -0.132963 -0.365951 1.023534 2.184196 -3.894950 1.533124 -0.629818 -0.305911 0.937686 0.014220 -0.729407 -3.004825 0.221093 1.621697 2.155302 -0.388186 0.695988 0.390546 -1.504584 0.005219 0.094226 0.786493 -0.477558 0.600436 0.051272 -1.630145 -1.189034 0.312545 -0.575074 -0.945151 0.030028 0.657760 0.350665 -3.045322 2.044706 -0.646941 -0.314792 1.137955 -0.102746 1.455647 -1.811193 -2.143257 1.168843 0.512764 0.067281 -1.013190 0.312122 1.721569 -0.182315 -0.081606 -0.634652 -2.736518 0.498962 -0.723703 0.889602 0.593173 0.392852 1.803477 0.022545 -0.534449 -2.179343 -0.613491 -0.447507 -0.280321 -1.061243 -1.142455 -0.214776 1.722066 1.952429 0.068931 -0.426830 0.081806 2.174095 -1.882157 -0.534765 1.312531 0.942176 -1.298853 0.262764 1.555403 -2.150264 -1.037501 -0.873645 0.258930 0.157070 -1.570082 0.701689 -0.772640 0.577959 0.531526 0.243706 -0.324271 0.906462 0.779214 0.399940 -0.278777 2.270779 2.357544 -1.060045 -0.360387 -1.293829 0.448423 -2.503210 -1.696996 0.173832 0.467310 -0.603631 0.677984 0.596210 1.476384 -0.228620 0.663691 0.111540 -0.844893 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_map(queueEntry**, unsigned long) = -0.840306 -0.121491 1.077032 -1.325219 1.335500 0.514384 0.707125 -0.315721 -1.529288 -0.833130 0.006255 -1.109433 -1.232819 2.300727 -0.772064 0.988315 3.221084 1.255146 -0.417876 -0.781691 1.890268 -1.609951 2.802029 2.700285 -2.145836 -0.167943 1.009647 1.402724 0.702018 1.529592 -0.884442 -1.032391 1.193874 -1.554383 0.681493 -2.190249 0.400089 0.426862 0.241506 -3.386935 0.277228 -0.390323 -0.164373 -0.273782 -0.391093 1.670832 1.960540 1.812328 -0.827771 0.754777 1.416992 0.103920 -0.067697 0.692563 0.461648 0.774043 0.753539 0.725572 -1.107448 -0.154533 -0.517196 -2.203495 0.455626 1.871604 2.677488 0.009258 0.243044 0.714836 -0.155999 0.468006 0.764236 0.355580 0.551261 0.022013 1.349191 -2.779482 -0.221481 -4.437106 -0.844420 -5.490976 -1.338477 -1.310432 1.255011 -0.961980 0.996307 0.133111 2.271081 0.137022 0.349838 1.234966 2.717982 -2.242848 -1.014680 -1.541139 -0.831468 0.771704 -1.418870 -0.069627 1.409905 -0.250454 -1.668815 -1.840796 1.325808 0.636746 -0.757218 -1.095982 -0.212211 2.215814 -2.264261 -1.524688 -2.087110 -0.042913 -0.467012 -3.057792 0.755888 -1.143400 2.280551 0.538742 -0.566436 -1.803371 0.538987 1.845394 -0.526903 -1.218462 -0.266237 2.192191 0.684966 0.063876 0.384652 -0.020665 0.042553 2.263554 2.433909 -1.098815 -0.457589 0.522417 -1.904859 0.032183 -1.977349 -0.833096 1.677666 -2.042796 -0.001238 1.145748 -1.418446 -0.450145 2.502725 -0.101222 1.396959 5.326448 -0.188393 1.470191 0.858846 -2.236293 1.403610 -0.313205 -0.032914 0.900737 1.749136 0.430627 -3.041388 -1.826794 0.685586 2.110540 1.570595 -2.571083 -1.497115 -1.216536 0.287883 0.019528 -0.125212 0.790925 -0.433373 -1.392130 -0.399931 0.863567 3.481141 -1.496514 -1.727033 0.694837 0.264862 -1.061502 -3.173326 -0.766619 -1.090755 0.174593 -0.106455 -0.212012 0.976773 2.688920 -4.531619 2.006963 -1.038602 -0.571721 1.662677 0.180759 -0.990584 -2.984297 0.330486 1.696286 2.384654 0.395910 0.092483 0.624762 -2.077564 -0.184212 0.016972 1.193246 -0.643354 1.038815 0.308525 -1.663821 -1.569108 -0.382471 -0.087900 -1.062621 0.081291 1.059540 0.281404 -4.331890 2.238870 -0.615269 -0.829145 0.998783 0.033807 1.418777 -2.277946 -2.686213 1.194963 0.017991 -0.747507 -1.579357 0.218526 1.701969 -0.206065 -0.315646 -0.879756 -2.867894 1.301032 -0.766993 1.370476 0.797777 0.508034 2.723757 0.344639 -1.014211 -2.175846 -0.232850 -0.080955 -0.991120 -1.205392 -1.042062 -0.381963 2.001759 2.680774 0.187676 -0.143588 -0.025230 2.628922 -2.601926 -0.975993 1.833581 1.809346 -0.866056 1.003570 1.962706 -2.518968 -1.349710 -0.978474 -0.554167 0.085418 -1.684337 1.015712 -1.355719 0.761690 0.615407 0.416043 -0.472085 1.081376 0.533362 0.393091 -0.300599 2.621378 3.769571 -1.792988 -0.072485 -1.668458 0.970410 -2.912762 -1.942532 0.323563 0.649615 -0.825057 0.684513 0.654850 1.644567 0.023493 -0.350703 -0.389341 -0.645053 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_node(queueEntry*) = -0.578792 0.032268 0.850649 -1.325502 1.799190 0.696759 0.473044 -0.133104 -1.325587 -0.706830 -0.225915 -1.199456 -1.226877 2.024236 -0.519463 1.191693 2.400050 0.509857 -0.383380 -0.415151 1.812611 -1.092261 2.150219 1.347308 -1.878909 -0.030959 0.468766 1.271968 0.319896 1.689759 -0.835730 -1.119707 0.693360 -1.115019 0.496700 -1.435918 0.546247 0.385051 0.126174 -2.543220 0.222375 0.231616 -0.321642 -0.099722 -0.433882 1.113219 1.676436 1.514518 -0.933536 0.510315 1.332974 0.006135 -0.089828 0.673347 -0.001908 0.553825 0.598040 0.165310 -1.267266 -0.337044 -0.321203 -1.805971 0.364084 1.277536 2.102435 -0.308314 0.104446 1.225701 -0.219500 0.343315 0.641983 0.290852 0.428968 -0.211196 1.300342 -1.606492 -0.459901 -2.885444 -0.592665 -4.198886 -1.105488 -1.247275 0.923558 -0.054865 0.692959 -0.289962 2.099898 -0.104565 0.148099 1.171585 2.259559 -1.799787 -0.772325 -2.005451 -0.744727 0.507995 -1.166757 -0.690029 1.084649 0.025012 -1.210304 -1.304611 0.760216 0.244910 -0.567387 -1.049495 -0.515595 1.910968 -2.097074 -1.310318 -1.656337 0.516354 -0.384815 -2.497297 0.232728 -0.400444 1.242943 0.214419 0.197488 -1.345535 0.393662 1.538434 -0.682992 -0.827758 -0.424437 1.923403 0.800289 -0.058315 0.558775 0.210424 0.259262 1.815165 1.916644 -0.851760 -0.886832 0.490402 -0.921900 0.026316 -1.388223 -0.538503 0.914645 -1.919844 0.003750 1.115986 -0.921004 -0.087242 0.965868 -0.296597 1.194497 3.932705 -0.169032 1.013676 0.311845 -1.833970 1.343506 -0.107578 -0.335374 0.656149 0.975167 0.348012 -1.976280 -1.589933 0.949028 1.454045 1.233609 -2.027422 -0.827087 -0.964612 0.293596 0.038543 -0.353386 1.186598 -0.326749 -0.953879 -0.337093 0.426495 3.226143 -1.106429 -1.616442 1.318321 0.449234 -1.057778 -2.360148 -0.877299 -0.944450 -0.361058 0.183770 -0.204991 0.793861 2.355850 -3.423950 1.640195 -0.338399 -0.663613 1.247577 -0.309521 -0.428679 -2.300534 -0.261372 1.570509 1.995176 0.094755 0.192651 0.064554 -1.540882 0.265487 0.221689 0.773928 -0.202020 0.585855 -0.063419 -1.243374 -1.190682 -0.371400 -0.551044 -0.318827 -0.128015 0.631231 0.402260 -3.530846 1.920846 -0.756842 -0.432281 0.935016 0.235339 1.550220 -1.533139 -2.083602 1.181790 -0.032167 -0.924515 -1.202362 0.466865 1.326242 -0.037890 -0.346784 -0.644042 -2.694755 1.014424 -0.503971 0.821980 0.601490 0.498490 1.918645 0.632047 -1.043559 -1.680973 -0.645677 0.006338 -0.729555 -0.666495 -0.551459 -0.147909 1.708730 1.827730 0.296825 -0.137746 -0.460277 1.933052 -1.856761 -0.806199 1.749153 0.750324 -1.140596 0.781061 1.910693 -1.684419 -1.157789 -1.049854 0.115202 -0.258572 -1.346709 0.466900 -0.979750 0.267889 0.819637 0.178577 -0.689361 0.885101 0.426391 -0.075050 -0.914643 2.696834 2.682623 -1.527143 0.196660 -1.306886 0.897243 -2.384012 -1.609451 0.349806 0.420137 -0.574284 0.652149 0.761698 1.257454 -0.257827 -0.096454 -0.252011 -0.947223 +PE-benchmarks/snake-ladder.cpp__std::__deque_buf_size(unsigned long) = -0.327429 -0.541720 -0.250563 -0.817673 0.468122 -0.019868 0.083698 -0.359435 -0.969296 -0.056664 0.194318 -0.757189 0.224143 0.822662 -0.080890 0.841421 1.022145 0.268652 -0.326639 -0.032886 0.905333 -0.470108 0.483286 0.756256 -0.431431 0.038984 -0.352382 0.220354 0.035380 0.134618 -0.111022 -0.463374 0.118702 -0.913930 -0.190387 -0.440179 -0.015064 0.744882 0.873809 -1.037619 0.383653 0.086472 0.494882 -0.137241 -0.137767 -0.277520 0.291293 0.222818 -0.233326 0.468662 0.570466 -0.095030 -0.047276 0.075381 0.253407 0.584896 -0.052016 0.004345 -0.317731 -0.347162 -0.169534 0.228673 0.449753 0.315678 0.556743 0.019170 -0.160731 0.483020 0.343261 0.016175 0.526215 0.048322 -0.382044 -0.524368 0.238392 -0.944549 -0.205882 -1.403662 0.007313 -1.479196 -0.457595 0.351886 0.688312 0.217669 0.204654 0.046534 0.586340 -0.573112 -0.327418 0.454250 0.606169 -0.399428 -0.286993 -0.342277 -0.676001 0.038526 0.037725 -0.305577 0.433359 0.306636 -0.598475 -0.388161 0.475868 0.273325 -0.147834 -0.625247 0.339842 0.518454 -0.648351 -0.669160 0.303066 0.958437 0.061967 -0.640186 0.093663 -0.583616 -0.092612 0.034784 -0.561480 -0.646479 -0.004983 0.101245 -0.479537 -0.155698 -0.183534 0.267444 0.352668 0.224940 -0.040601 0.005915 0.037144 1.012613 -0.071374 -0.710415 0.211445 0.030982 0.057553 0.177411 -0.452970 -0.648346 0.054107 -0.703546 0.079894 0.067718 -0.415451 -0.026735 0.585030 0.325578 -0.245785 1.494956 -0.101041 0.957318 0.560549 -0.293716 0.385559 -0.029327 0.244157 0.315166 0.533187 -0.186379 -0.603168 -0.743932 0.539645 0.476010 0.329954 -0.475394 -0.667907 0.019966 0.018214 0.427035 -0.075025 -0.099405 0.109343 -0.355129 -0.092279 0.249572 1.460041 -0.037876 0.149580 0.383034 0.535792 -0.377661 -0.882989 -0.422988 -1.097782 0.104139 -0.009743 0.119812 0.474970 0.957817 -1.339441 0.531629 -0.277989 0.209257 0.308900 0.361815 -0.598951 -1.589697 -0.615724 0.196894 1.032818 -0.367488 0.404133 0.375328 -0.472082 0.001844 0.042214 -0.082258 -0.524858 0.304393 -0.068681 -0.465398 0.184824 0.488821 -0.591852 -0.161866 -0.113633 0.151272 0.619722 -0.648554 0.368004 0.093135 0.023255 0.480806 0.075593 0.798488 -0.255568 -0.316683 0.460342 0.121094 0.012248 -0.115331 0.260056 0.505793 -0.264100 -0.168467 -0.291286 -0.765809 0.551671 -0.220416 0.680265 0.057201 -0.645820 0.022934 -0.034573 -0.082889 -0.544525 -0.051469 -0.592360 -0.290611 -0.356037 -0.362148 -0.277278 0.571487 0.267002 0.300319 -0.619927 0.191528 0.622725 -0.402872 0.278854 0.558256 -0.208835 -0.647275 0.041325 0.754816 -0.780798 0.206215 -0.410641 0.147716 -0.253479 -0.144209 0.559876 0.378613 0.302607 -0.424480 -0.147965 0.274082 0.363206 0.449227 -0.006116 0.106955 1.040651 0.234868 0.092579 -0.193855 -0.525321 0.008798 -0.598732 -0.542778 0.066135 0.602087 -0.850068 0.054758 -0.068156 0.833618 -0.074877 0.231781 -0.108911 0.172724 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::deallocate(queueEntry*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.310755 0.147580 0.699946 -0.671705 0.539508 0.103629 0.241426 -0.229616 -0.588818 -0.359932 -0.091261 -0.481361 -0.497314 0.923101 -0.364688 0.297061 1.370261 0.502425 -0.199682 -0.462954 0.803138 -0.855030 1.171321 1.184628 -1.028338 -0.017651 0.645612 0.747011 0.515325 0.773941 -0.551614 -0.245473 0.336708 -0.561660 0.507508 -0.980647 0.156481 0.066508 0.010547 -1.521838 0.099061 -0.284289 0.116807 -0.096939 -0.135963 0.855870 0.978325 0.753224 -0.389096 0.155626 0.705443 0.086042 0.028722 0.258402 0.260697 0.361461 0.843264 0.418668 -0.376613 -0.021385 -0.165170 -0.971969 0.313216 0.911230 1.192347 0.045013 0.117323 0.263307 0.058245 0.151716 0.238817 0.201611 0.105021 0.208194 0.515574 -1.430477 0.292269 -2.061375 -0.281998 -2.452062 -0.579518 -0.678575 0.350646 -0.566132 0.427341 0.233077 1.022943 0.122344 0.275974 0.308236 1.189204 -0.937226 -0.362972 -0.621394 -0.478121 0.351495 -0.559686 -0.027796 0.599116 -0.033159 -0.653487 -0.762786 0.738820 0.292159 -0.390706 -0.188529 -0.115837 0.882703 -0.961581 -0.605680 -0.891489 -0.213564 -0.237994 -1.334660 0.509910 -0.659539 1.082602 0.097594 -0.166647 -0.883081 0.164011 0.917059 -0.244924 -0.434131 -0.461086 1.004025 0.347385 -0.056224 0.099470 -0.131051 0.066831 0.809531 1.063262 -0.510117 -0.250506 0.236817 -1.011547 -0.167135 -0.905819 -0.330036 0.871518 -0.808495 -0.127860 0.489607 -0.580667 -0.106569 1.268325 -0.166245 0.668690 2.455986 -0.128310 0.556844 0.261600 -0.979719 0.621454 0.011363 -0.126268 0.402551 0.736191 0.299251 -1.476662 -0.809526 0.249045 0.912552 0.628350 -1.075536 -0.739434 -0.558362 -0.048523 0.114998 -0.053896 0.229882 -0.369821 -0.561124 -0.239438 0.285198 1.500581 -0.553266 -0.824917 0.234225 -0.064224 -0.597889 -1.478069 -0.278286 -0.449667 0.128200 -0.350965 -0.126148 0.511837 1.138188 -2.272875 0.912775 -0.454519 -0.386188 0.913052 -0.128385 -0.319254 -1.469081 0.274195 0.800352 0.988480 0.060807 -0.092390 0.232765 -0.913937 -0.097580 -0.076605 0.588913 -0.405162 0.448131 0.259354 -0.806242 -0.719535 -0.234662 0.059662 -0.431136 -0.004865 0.416118 -0.067151 -1.954937 1.072050 -0.288238 -0.273427 0.454326 -0.080126 0.348127 -1.035560 -1.081474 0.391532 0.114802 -0.148835 -0.763880 0.043245 0.780520 -0.262912 -0.145330 -0.542853 -1.210420 0.393054 -0.532364 0.492546 0.377526 0.328854 1.099215 0.317477 -0.284195 -1.010852 0.234380 -0.248911 -0.373158 -0.504452 -0.425066 -0.210435 0.816335 1.266015 -0.036840 0.186392 0.120906 1.104097 -1.044812 -0.563123 0.661806 0.627491 -0.439602 0.373681 0.721737 -1.016776 -0.678166 -0.478552 -0.484940 0.104322 -0.736799 0.481115 -0.631254 0.260797 0.397216 0.081767 -0.263005 0.561112 0.150615 0.158849 -0.069252 1.101679 1.722282 -0.719712 -0.000212 -0.723246 0.401129 -1.299878 -0.758661 0.100553 0.278863 -0.310006 0.262394 0.293824 0.728718 0.010271 -0.084249 -0.045124 -0.306429 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::deallocate(queueEntry**, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/snake-ladder.cpp__std::deque >::deque() = -0.134985 0.044647 0.354579 -0.483050 0.549910 0.088847 0.201529 -0.076119 -0.407593 -0.278064 -0.051622 -0.180261 -0.325538 0.508851 -0.287880 0.175487 0.685734 0.233144 -0.013232 -0.281671 0.504541 -0.378768 0.741296 0.550209 -0.705318 0.024032 0.113630 0.478491 0.178216 0.686325 -0.124277 -0.301142 0.235834 -0.141753 0.304135 -0.578276 0.132328 0.152816 -0.140631 -0.819860 0.057798 -0.000649 0.042683 0.076769 -0.017101 0.407801 0.497784 0.453760 -0.305719 0.254868 0.487982 0.245467 0.043596 0.254718 0.039321 0.121099 0.323786 -0.150682 -0.267560 -0.045194 -0.181933 -0.602183 0.195018 0.471546 0.717687 -0.050878 0.134087 0.101580 -0.145468 0.189439 0.302293 0.144318 0.017558 -0.064976 0.377894 -0.501782 0.032796 -1.026964 -0.154732 -1.410365 -0.331059 -0.483727 0.314472 0.081345 0.233004 0.075510 0.612696 0.129432 0.150404 0.304597 0.508293 -0.395476 -0.138557 -0.394031 -0.335471 0.155184 -0.298252 -0.118973 0.119839 0.181319 -0.328582 -0.302921 0.279213 0.022939 -0.164612 -0.222198 -0.186577 0.521719 -0.756563 -0.260011 -0.457251 0.191631 -0.141264 -0.732082 0.163584 -0.416548 0.575146 -0.062501 0.129748 -0.190198 0.089220 0.484241 -0.180338 -0.105689 -0.412918 0.526413 0.225250 -0.027770 0.073586 -0.059290 -0.179646 0.419442 0.532085 -0.221229 -0.284187 0.153560 -0.277176 -0.021859 -0.470031 -0.018652 0.402115 -0.502966 0.042335 0.208508 -0.209486 -0.205406 0.253148 -0.177671 0.457101 1.142493 -0.074755 0.344908 0.202824 -0.515001 0.204794 0.102414 0.077607 0.392987 0.415288 -0.043707 -0.417980 -0.502799 0.098033 0.357492 0.318506 -0.495146 -0.327218 -0.279669 0.003384 0.106822 -0.145075 0.174713 -0.253007 -0.345423 -0.072836 -0.030371 0.763861 -0.095040 -0.351627 0.261544 0.180152 -0.494158 -0.487499 -0.242835 -0.204330 0.019747 0.006511 -0.109986 0.195625 0.633348 -1.258435 0.482187 -0.152620 -0.036584 0.295043 -0.124494 -0.047141 -0.758621 0.027789 0.344465 0.556591 -0.070394 0.089278 0.189560 -0.463995 0.116494 -0.043675 0.307502 -0.202035 0.176221 0.131822 -0.453949 -0.402199 -0.218670 -0.036267 -0.025069 -0.060315 0.167531 0.116068 -1.172288 0.438645 -0.299046 -0.212263 0.310834 0.100566 0.397027 -0.427307 -0.539629 0.247191 -0.003275 -0.274563 -0.500111 0.152708 0.436881 -0.197254 -0.018578 -0.264172 -0.582288 0.257773 -0.279509 0.156583 0.248568 0.199692 0.637110 0.093809 -0.252740 -0.562935 -0.041329 0.027289 -0.281780 -0.190195 0.097328 -0.116946 0.389802 0.703643 0.135435 0.012186 0.128760 0.789240 -0.437606 -0.292289 0.526305 0.192629 -0.178379 0.398957 0.528033 -0.528447 -0.473294 -0.274077 0.039679 0.168959 -0.347146 0.388474 -0.300562 0.212159 0.144694 0.221534 -0.326272 0.331715 0.079280 0.064328 -0.204890 0.800798 0.811812 -0.339140 0.105242 -0.240678 0.132154 -0.690593 -0.302954 -0.095449 0.016909 -0.068008 0.355615 -0.050349 0.537416 0.036175 0.130601 0.021996 -0.215045 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_base() = -0.627181 0.670745 1.713219 -2.899518 3.759007 2.452366 1.054755 -1.027844 -1.888266 -0.533929 -0.086584 -1.701600 -1.823028 2.728789 -1.469646 1.422070 3.150286 -0.073343 -0.638755 -0.514704 3.141252 -0.432064 3.770218 2.075285 -3.667066 0.133988 0.193505 1.849310 0.263870 3.734842 -1.531376 -2.047191 0.955257 -0.886064 0.987738 -1.561598 0.531214 -0.140666 0.188069 -3.295611 0.291287 0.546803 -0.775404 0.245706 -0.283809 0.868231 3.200373 2.271264 -1.531147 0.267548 2.461182 0.980751 -0.088442 1.199622 0.504489 0.590413 2.015496 0.205193 -1.448340 -1.144616 -1.152486 -1.440470 0.729122 2.481409 3.394596 0.042807 0.466571 1.085196 -0.619291 0.642841 1.069566 0.953265 0.346521 0.310484 2.121135 -1.394138 0.117304 -3.668542 -0.726811 -4.449886 -1.660144 -2.105502 0.499183 0.536507 1.806658 -0.919813 3.227399 0.232781 0.295499 1.338171 3.087979 -2.390380 -0.553708 -2.678641 -2.208193 -0.082242 -1.313475 -0.454294 0.467441 0.021755 -2.005624 -1.553948 0.570667 0.469915 -0.698519 -1.217020 -0.790438 2.518032 -2.614207 -1.297052 -1.474749 1.456499 -0.963511 -4.194944 -0.928742 -1.674705 1.485862 -0.703905 0.714290 -1.758705 0.486670 2.820337 -1.477145 -1.184886 -0.996844 2.983421 2.229001 0.296050 0.434669 -0.402648 -0.195381 2.567864 2.491695 -0.897211 -1.286612 -0.239070 -0.650870 0.234654 -1.619719 0.362044 1.013435 -2.331996 -0.061847 2.091838 -0.659588 0.159755 0.407672 -0.799810 1.980576 7.382271 -0.980275 2.151722 0.530698 -3.069232 1.634914 0.548086 -0.146879 1.321898 1.402687 0.148977 -3.325485 -2.649696 1.780779 1.768586 1.389967 -3.087331 -0.224707 -0.972257 -0.275334 -0.349550 -0.877368 1.122484 -0.797811 -1.728622 -0.535005 0.502575 4.952730 -1.145699 -3.570497 2.418958 0.975816 -1.668624 -1.592780 -1.709503 -1.165583 -0.034411 0.895903 -0.544911 1.605490 3.455120 -5.520258 2.217850 -0.239160 -1.199469 2.665369 -0.712766 -0.479737 -1.736510 -0.193653 2.271211 2.322324 -0.048860 -0.447542 0.116685 -2.169346 0.954184 0.076585 1.120836 -0.849345 0.801244 0.457923 -2.581999 -2.254377 -1.820979 -0.808248 -0.031943 -1.186860 0.654735 -0.356969 -5.647456 2.877935 -0.433664 -0.609446 1.318155 -0.132047 2.153068 -1.574014 -2.945244 1.520629 -0.319453 -1.061642 -1.854187 0.997109 1.750654 0.363533 1.013866 -2.508177 -4.052937 1.521035 -0.906391 1.545895 1.146119 1.462437 2.582384 0.946431 -1.374606 -3.202627 -1.739502 1.282011 0.151282 -1.973676 -0.215310 -0.826982 2.304205 2.552053 0.177831 -0.161751 -1.253404 3.239659 -2.251376 -0.691654 2.746417 0.510977 -2.371832 0.475541 2.905868 -1.448002 -2.151213 -1.285958 -0.034388 -0.719807 -2.252458 1.225361 -0.792061 0.962997 0.757734 0.706664 -1.481356 1.013332 0.264748 0.179138 -0.944994 3.934399 3.244127 -1.911342 0.231363 -1.655838 1.459512 -3.564022 -2.465589 0.816142 -1.238526 -0.621891 1.180036 0.169657 2.750879 -0.227546 0.513139 0.344519 -1.164591 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.302740 0.045903 0.614985 -0.679681 0.531472 0.170376 0.216135 -0.192216 -0.615585 -0.293899 -0.068824 -0.376353 -0.384900 0.861122 -0.394108 0.242275 1.257287 0.518139 -0.184663 -0.396427 0.704861 -0.589652 1.061287 1.062772 -0.896171 -0.051506 0.494943 0.666891 0.389520 0.754280 -0.446113 -0.359789 0.317958 -0.415034 0.359963 -0.932442 0.158762 0.143928 0.001580 -1.352332 0.143779 -0.261436 0.001538 -0.088511 -0.089430 0.655751 0.797811 0.674863 -0.315570 0.184514 0.647209 0.283282 -0.064668 0.243072 0.223966 0.358258 0.655623 0.235544 -0.314569 -0.046844 -0.175701 -0.736609 0.235236 0.807978 1.049011 0.070800 0.127749 0.135880 0.022629 0.170152 0.290054 0.116899 0.070045 0.148197 0.390758 -1.128382 0.154715 -1.792578 -0.221582 -2.064834 -0.464467 -0.561942 0.372784 -0.383028 0.310397 0.194140 0.881792 0.070392 0.223316 0.367652 1.005986 -0.774068 -0.332695 -0.546661 -0.475747 0.316603 -0.478200 -0.042041 0.360807 0.052375 -0.572913 -0.702957 0.535163 0.235096 -0.314364 -0.191730 -0.074204 0.820674 -0.917141 -0.484160 -0.724437 0.029547 -0.174465 -1.153461 0.244904 -0.659207 1.005679 0.043389 -0.186741 -0.716331 0.170482 0.803041 -0.259377 -0.311972 -0.337871 0.809970 0.288633 -0.062500 0.025938 -0.174135 -0.011986 0.743495 0.829724 -0.508478 -0.186712 0.225611 -0.793473 -0.161744 -0.862297 -0.232379 0.640684 -0.717628 0.029889 0.458137 -0.533943 -0.193791 0.959272 -0.138554 0.605826 2.222706 -0.137565 0.520538 0.267958 -0.868374 0.419599 0.026998 -0.036046 0.357312 0.639454 0.191999 -1.167726 -0.729906 0.203195 0.780413 0.596630 -0.886001 -0.570466 -0.513404 -0.061994 0.124167 -0.055892 0.193105 -0.398001 -0.504622 -0.235157 0.230540 1.315846 -0.374936 -0.743381 0.193859 0.082885 -0.535171 -1.056482 -0.251631 -0.339452 0.157504 -0.091502 -0.138110 0.489135 1.036037 -2.069950 0.805717 -0.348850 -0.267770 0.669506 -0.047431 -0.277297 -1.091639 0.176717 0.677767 0.956936 0.052200 0.013518 0.278712 -0.794640 -0.094003 -0.032541 0.542290 -0.354170 0.347832 0.344173 -0.760474 -0.602536 -0.186923 0.023587 -0.350093 -0.052952 0.367809 -0.094224 -1.847293 0.917085 -0.239284 -0.203751 0.408836 -0.061890 0.409255 -0.905816 -0.957634 0.384481 0.153193 -0.128907 -0.598035 0.072539 0.764280 -0.217076 0.079565 -0.475161 -1.051162 0.339408 -0.383334 0.451976 0.306638 0.244329 0.942920 0.076461 -0.184042 -0.878262 0.083527 -0.025211 -0.300637 -0.422246 -0.200679 -0.179529 0.722169 1.085170 -0.000792 0.007689 0.090174 1.047364 -0.852163 -0.375592 0.594749 0.575723 -0.364363 0.356895 0.670717 -0.958349 -0.619494 -0.385063 -0.308617 0.095071 -0.623673 0.471481 -0.499318 0.315242 0.288566 0.176839 -0.295856 0.481671 0.165215 0.126367 0.004439 0.985419 1.451353 -0.542858 0.086112 -0.607656 0.345968 -1.137241 -0.680089 0.040135 0.076030 -0.304491 0.298685 0.071256 0.719320 -0.022048 0.113815 -0.016137 -0.227637 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -2.991655 1.627083 5.553298 -10.119600 10.996318 9.411715 2.607966 -4.292037 -7.141048 -0.676051 0.073863 -8.313604 -5.604573 10.368584 -4.634692 5.288095 12.028740 0.168073 -4.000223 -0.803132 10.125009 0.311803 12.070909 8.299498 -11.045681 -0.045847 1.171672 5.834220 1.188226 10.205770 -6.304105 -7.435882 2.339809 -3.540719 1.637658 -4.471269 1.542945 -0.502718 2.792850 -11.920247 1.738043 1.704715 -2.493758 -0.710282 -1.274683 1.875180 11.041921 7.629201 -3.878257 -0.561770 8.046253 3.168577 -1.175015 2.767625 2.505033 2.456994 7.530944 2.097891 -4.421204 -4.471936 -2.696218 -2.184818 1.314858 8.990300 11.251094 1.245762 0.420362 3.672639 0.137243 1.475676 2.617511 2.575096 1.188232 2.824339 5.489793 -4.724175 0.858760 -12.158883 -1.409415 -12.760804 -5.484521 -4.742504 2.139396 1.347577 4.915808 -3.795154 11.000819 -0.806757 -0.094693 4.550706 12.340855 -8.666133 -2.812411 -8.946862 -7.760087 0.522124 -4.438986 -0.733763 1.717738 -0.112526 -7.528407 -6.399237 1.525007 2.435589 -3.075797 -2.727504 -0.903111 8.349015 -7.315557 -4.419902 -3.749556 5.174672 -1.763152 -14.593514 -5.093282 -5.772779 3.491421 -1.779407 -0.513851 -8.323292 1.620019 8.430807 -5.495500 -4.101999 -3.106845 9.574425 7.498377 0.848999 0.798450 -1.404852 2.118497 9.838822 5.774515 -5.007383 -2.442066 -1.074648 -2.930308 0.363436 -6.257859 -0.170777 2.099845 -7.762247 0.281094 7.803347 -3.685764 1.279895 1.640577 -1.626068 5.025047 27.937441 -3.462793 7.856567 2.000966 -10.551234 6.264980 0.666511 -1.812285 2.488356 3.990996 2.335482 -12.979935 -8.969929 7.439818 7.949826 5.485785 -10.164002 0.585077 -2.557351 -1.437683 -2.013126 -1.059601 3.440332 -2.499620 -5.327838 -2.869086 4.332635 18.309157 -4.267320 -12.820594 7.406082 3.358478 -3.396904 -5.523583 -5.002056 -4.063735 0.377585 3.561202 -1.050892 7.340615 12.726150 -18.965763 8.005498 0.288546 -4.951601 10.141618 -1.600652 -3.791017 -4.377509 -0.677021 8.700801 9.064595 0.228550 -1.799494 -0.027521 -8.102212 1.345331 1.264339 3.387845 -3.500820 3.285144 2.439488 -8.724982 -6.907554 -5.089441 -3.472574 -1.415911 -5.074330 3.096674 -2.194545 -18.594908 11.628503 0.399806 -0.869585 3.173447 -2.643455 6.679934 -6.786538 -10.235793 5.250895 -0.466440 -2.411011 -4.305331 2.499896 6.356246 2.063407 5.196522 -9.304088 -14.454691 5.614665 -2.138010 7.064027 3.207339 3.541295 6.493183 3.147879 -2.918201 -10.071428 -6.229146 4.681283 1.759485 -7.677244 -1.328403 -3.026309 8.526040 7.806214 -0.966798 -2.350808 -5.453454 9.237756 -7.164918 -1.401676 7.545596 1.433347 -9.569937 -0.303743 9.066683 -5.688180 -5.370089 -5.086316 -1.703409 -4.700872 -8.419227 3.397006 -1.660756 3.248521 3.001775 0.525165 -3.773655 3.429221 1.538591 -0.472989 -0.667651 12.769711 9.853777 -5.395927 1.259254 -8.156487 6.107136 -12.579420 -10.211087 4.473434 -4.706147 -4.375834 1.688394 0.652149 8.754317 -1.574120 1.926583 0.126574 -2.220773 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.169571 0.045099 1.021964 -0.814683 0.494689 0.124351 0.191988 -0.002163 -0.816987 -0.134451 -0.149211 -0.607300 -0.364131 0.857532 -0.306858 0.031026 1.264953 0.640065 -0.316842 -0.306753 0.399686 -0.537422 0.885508 1.110620 -0.820302 0.132818 0.032077 0.797015 0.254652 1.224531 -0.695721 -0.312131 -0.050626 0.113967 0.550635 -0.929721 -0.037475 0.188806 -0.278629 -1.594883 0.203350 0.416700 0.483269 -0.132870 0.219889 0.599170 0.857733 0.571585 -0.122254 0.071335 0.448231 0.187034 0.273297 0.157847 0.496263 0.446277 1.331992 0.113856 -0.410503 0.100620 -0.174095 -0.679726 0.228522 0.747218 0.978286 0.140522 -0.055089 -0.433354 0.259879 0.134506 0.322412 0.155415 -0.056739 0.183606 0.182845 -0.468692 0.748245 -1.121964 0.182480 -1.493345 -0.564467 -0.453296 0.745654 0.293494 0.067390 -0.311533 0.924808 -0.204075 0.245243 -0.050172 0.888019 -0.538402 -0.272824 -0.430804 -0.586842 0.337059 -0.259228 -0.327977 0.256293 0.167653 -0.543538 -0.342894 0.654994 0.098461 -0.372799 0.697652 -0.029307 0.825158 -0.797267 -0.319598 -0.592952 0.240258 0.035072 -0.975453 0.237026 -0.771093 0.196190 0.033624 -0.337563 -0.462633 0.265996 0.485864 -0.438202 0.137746 -1.366485 1.123968 0.075026 -0.271243 -0.048967 -0.202360 -0.042597 0.199487 0.363146 -0.638677 -0.031139 0.397201 -0.711390 -0.235175 -0.830260 -0.229210 0.352441 -0.569114 -0.337319 0.090869 -0.560738 0.247405 -0.036798 0.102536 0.462280 2.152414 -0.283963 0.564826 0.165133 -0.699462 0.937995 0.518461 -0.060971 0.253940 0.572830 0.249813 -1.117950 -0.683245 0.129210 0.847863 0.594862 -0.578886 -0.242382 -0.446630 -0.240982 0.276524 0.269769 0.005713 -0.341779 -0.524820 -0.289492 -0.083128 1.361507 -0.048329 -1.248453 0.037427 -0.203338 -0.523037 -0.762996 -0.084172 -0.174607 0.117985 -0.535978 -0.221353 0.616661 0.980289 -2.127362 1.021597 -0.207886 -0.537175 1.260659 -0.507166 -0.140470 -1.019277 -0.072177 0.560318 1.209016 0.040938 -0.459976 0.237623 -0.785367 -0.135801 -0.112003 0.499548 -0.520362 0.426571 0.334626 -0.716976 -0.325334 -0.814637 -0.002841 -0.265495 -0.496986 0.324054 -0.016777 -1.507679 0.799893 0.030260 -0.059445 0.317861 -0.005638 -0.196344 -0.756217 -0.752293 0.062907 0.257331 -0.300489 -0.683676 -0.102154 0.663078 -0.356638 0.036969 -0.641570 -0.931672 0.485682 -0.547313 0.560689 0.405007 0.018554 0.491881 1.416955 -0.087923 -0.489074 0.084758 -0.054407 -0.350757 -0.193091 0.120412 -0.427252 0.535502 1.008357 0.040612 0.215715 -0.259705 1.122688 -0.161574 -0.437950 0.520150 -0.670221 -0.200376 0.281523 0.665824 -0.843291 -0.537739 -0.551149 -0.548586 0.096880 -0.341382 0.615459 -0.434224 0.223456 0.252251 -0.055426 -0.542670 0.376797 0.066184 -0.321973 0.130827 1.241953 0.858414 -0.208401 0.666691 -0.512964 0.445140 -0.953985 -0.187363 -0.252887 -0.125270 -0.566024 0.247517 0.148606 0.633813 0.021602 0.187160 -0.017694 -0.048256 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator() = -0.078854 -0.074014 0.599562 -0.432386 0.166230 -0.159474 0.106740 -0.036340 -0.481460 -0.015328 -0.088108 -0.192976 -0.032029 0.440711 -0.095578 0.198370 0.749446 0.450558 -0.171316 -0.337885 0.358198 -0.778264 0.503601 0.723464 -0.543336 0.118389 0.182346 0.589918 0.419095 0.640044 -0.529943 0.250235 -0.052456 -0.304487 0.441496 -0.752935 0.009734 0.228769 -0.019859 -1.066644 0.087150 0.012133 0.515760 -0.026113 0.074103 0.567353 0.388152 0.345097 -0.154466 0.190505 0.343759 -0.188216 0.276741 0.086188 0.269031 0.473254 0.975772 0.344893 -0.197531 0.160271 -0.013207 -0.654808 0.421207 0.412464 0.647380 -0.032191 -0.018997 -0.067968 0.297685 -0.000120 0.270985 0.127087 -0.250175 -0.039542 0.199824 -0.908869 0.636422 -1.041336 0.063495 -1.214268 -0.365046 -0.321273 0.372465 -0.249328 0.229979 0.086367 0.565178 -0.121216 0.166986 -0.192189 0.387117 -0.472299 -0.150848 -0.216206 -0.291744 0.225371 -0.193227 -0.280121 0.465398 0.071230 -0.255189 -0.254182 0.752824 0.187244 -0.283145 0.329164 -0.065954 0.489653 -0.473074 -0.502060 -0.414033 -0.072942 -0.201760 -0.517848 0.653379 -0.564713 0.324904 0.030121 -0.092954 -0.434162 0.057827 0.414967 -0.167282 -0.059846 -0.796400 0.714104 0.072555 -0.188358 0.011000 -0.144686 -0.114592 0.166986 0.458236 -0.397610 -0.112873 0.408008 -0.694018 -0.136886 -0.599887 -0.303332 0.513990 -0.424097 -0.418980 -0.022785 -0.321752 0.306926 0.732848 0.178098 0.270937 1.321025 -0.007375 0.280081 0.144695 -0.344805 0.690381 0.347223 0.054152 0.368995 0.424107 0.036470 -1.093175 -0.431354 -0.127088 0.481935 0.323435 -0.512737 -0.644999 -0.379571 -0.118883 0.382063 0.051270 -0.024664 -0.218727 -0.294846 -0.103739 -0.207903 0.882329 -0.167780 -0.496713 -0.045607 -0.364945 -0.683488 -1.108619 -0.091615 -0.380515 0.036772 -0.758670 -0.080219 0.294193 0.525615 -1.353055 0.613408 -0.419927 -0.343167 0.876697 -0.336986 -0.049074 -1.142319 -0.011591 0.186453 0.732440 -0.083026 -0.287507 0.311191 -0.506022 -0.051905 -0.180077 0.263011 -0.337964 0.303335 0.151296 -0.378274 -0.135798 -0.256744 0.087613 -0.269532 -0.044754 0.213662 -0.037618 -0.796794 0.323584 -0.126730 -0.140331 0.480697 0.105452 -0.191037 -0.496513 -0.359152 0.066805 0.363773 0.055721 -0.627998 -0.068423 0.453677 -0.383749 -0.345585 -0.367132 -0.617773 0.110125 -0.614561 0.195505 0.284399 -0.107214 0.332851 0.874961 -0.080086 -0.442726 0.459097 -0.593975 -0.297374 -0.038745 -0.296404 -0.230783 0.360883 0.714606 0.129577 0.438070 0.100259 0.761150 -0.314493 -0.426466 0.282354 -0.198345 -0.067303 0.202706 0.339645 -0.646178 -0.293142 -0.258901 -0.492667 0.301757 -0.099810 0.545250 -0.326648 0.150977 0.090214 -0.015765 -0.141369 0.355117 0.036914 -0.088307 -0.042865 0.831681 0.789989 -0.157629 0.141479 -0.269928 0.184653 -0.542344 0.045125 -0.264652 0.344807 -0.390302 0.248287 0.384907 0.437387 0.137171 -0.081048 0.041243 -0.201288 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.869720 0.124094 1.053992 -1.982164 3.072509 1.185078 1.248885 -0.573247 -1.819601 -1.187929 -0.003763 -1.363482 -1.932890 2.940846 -1.114988 1.892636 3.705398 0.738567 -0.193706 -0.866388 3.165972 -2.121583 4.050068 2.608544 -3.421771 -0.069497 0.782125 1.816910 0.443296 2.841827 -0.954059 -1.611545 1.795842 -2.246986 1.066546 -2.401227 0.726683 0.399037 0.300504 -3.854046 0.171736 -0.059128 -0.425012 0.131059 -0.732809 1.748100 2.819141 2.543937 -1.645866 1.159570 2.168025 -0.046732 0.105499 1.401205 0.265813 0.758436 0.657402 0.505274 -1.888529 -0.594785 -1.117644 -3.121140 0.907669 2.276225 3.674214 -0.366164 0.574430 1.761991 -0.963598 0.784684 1.313439 0.786258 0.635384 -0.474042 2.573932 -3.199098 -0.704632 -5.328764 -1.534519 -7.137518 -1.847104 -2.291075 1.096753 -0.660670 2.058453 -0.080014 3.166698 0.514528 0.454914 1.755065 3.341531 -3.007657 -1.072794 -2.682284 -1.259526 0.434653 -1.878904 -0.462096 1.968433 -0.379609 -2.146960 -2.002979 1.454110 0.694058 -0.726974 -2.398329 -0.843649 2.950864 -3.165744 -2.244563 -2.666732 0.352223 -1.281789 -4.315416 0.866188 -1.106553 2.517350 0.317016 0.480232 -2.044470 0.648793 2.898666 -0.832942 -1.910823 -0.065481 3.116543 1.531895 0.463490 0.912463 0.175644 -0.387516 3.246877 3.816006 -0.770760 -1.350522 0.317965 -1.620113 0.490471 -1.981443 -0.651299 2.094499 -3.009898 -0.133475 1.826854 -1.192310 -0.366256 2.546644 -0.456095 2.235468 6.588338 -0.339258 2.028819 0.976733 -3.174565 1.874008 -0.176957 0.141284 1.585952 2.142389 0.017352 -3.574601 -2.650429 1.226785 2.079776 1.782801 -3.706923 -1.907244 -1.574976 0.583383 -0.021976 -1.065655 1.566395 -0.419044 -1.985245 -0.167992 0.659479 4.839843 -2.137246 -2.369103 2.089575 0.714793 -1.947161 -3.980813 -1.695821 -1.918148 -0.197841 0.085051 -0.383397 0.836522 3.546638 -5.414364 2.428562 -1.225989 -0.673902 2.192094 -0.096598 -0.817964 -4.041660 0.057926 2.204149 2.597345 0.229664 0.163080 0.521551 -2.423581 0.706951 -0.053579 1.319524 -0.438346 1.049077 -0.305367 -2.227955 -2.409191 -0.793448 -0.451439 -0.748549 0.102776 1.063013 0.793276 -5.614273 2.672461 -1.167392 -1.374037 1.744193 0.522839 2.612979 -2.268593 -3.513996 1.827799 -0.530238 -1.356311 -2.417336 0.913247 1.852959 0.026979 -0.690121 -1.246709 -4.015156 1.683193 -1.151214 1.392230 1.247174 1.231433 3.815967 0.521320 -2.156185 -3.298149 -0.980278 -0.066136 -1.143484 -1.729048 -1.421325 -0.397965 2.734057 3.332778 0.719358 0.035819 -0.335448 3.629067 -3.599597 -1.340958 3.247490 1.988518 -1.628233 1.332058 3.163304 -2.599244 -2.140192 -1.152784 0.124802 0.044730 -2.345251 1.188023 -1.641443 0.914063 0.695498 0.869892 -0.900201 1.297731 0.578764 0.773067 -1.492057 3.982304 4.638471 -2.794073 -0.535843 -1.724177 1.135420 -3.871494 -2.575263 0.599592 0.760199 -0.584753 1.447699 1.153583 2.461663 0.023326 -0.517717 -0.207140 -1.584331 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_create_nodes(queueEntry**, queueEntry**) = -1.114288 -0.027447 1.459976 -3.640564 4.145033 1.777589 0.958669 -0.508696 -2.203922 -1.311246 -0.641575 -0.850981 -1.884198 3.454267 -1.277323 2.561366 3.736963 -0.067577 -0.486648 -1.129964 4.963225 -2.755977 4.017336 1.372952 -4.563736 -0.351346 1.287913 3.600954 1.226729 3.982124 -0.792437 -1.345917 0.511781 -2.174087 1.978722 -3.247598 1.877890 1.173021 -0.187904 -4.327000 0.286147 -0.004130 -0.556002 0.323862 -1.314535 1.682939 2.770944 3.230138 -3.117614 0.278716 3.762522 0.681389 -0.548046 1.540452 -0.955059 0.884799 1.197664 0.498062 -1.716906 -1.067260 -0.513217 -3.284622 2.398207 2.515454 4.617699 -1.128627 1.041770 3.304259 -0.594120 0.979372 1.629346 0.614780 -0.353424 -1.431404 3.341455 -4.250176 -1.073227 -6.909613 -0.688764 -7.960438 -1.617097 -3.145876 0.413726 -0.262727 2.046133 -0.426623 4.037825 0.287270 0.443599 3.049169 3.028893 -2.714305 -0.636720 -5.123003 -2.560033 0.756405 -2.208652 -1.931065 2.031467 0.733714 -1.594570 -2.031221 0.808291 0.602557 -0.883747 -3.517314 -1.793904 3.491003 -3.597441 -2.637360 -2.319065 2.164316 -1.837935 -4.956343 0.850083 -2.395084 2.408046 -1.314255 2.566304 -1.981073 -0.079659 4.125167 -1.298731 -1.650561 -1.113606 3.912998 2.496888 -0.345662 1.016888 -0.246764 -0.841982 2.969420 4.342461 -1.142133 -3.141923 1.205857 -1.835334 -0.211909 -3.146609 -0.091011 3.101211 -3.652267 -0.835466 2.477867 -0.489281 -0.278562 2.963007 -1.443667 3.293200 9.480712 0.078412 1.424089 0.429659 -3.356572 2.776848 1.073668 -0.236157 2.601902 1.563249 -0.777381 -4.920695 -3.320518 1.220781 1.511032 1.969073 -3.709065 -2.711139 -2.059069 -0.137791 0.368127 -2.209014 2.261316 -1.770958 -1.728049 -0.446846 0.017976 5.881634 -1.428865 -2.095874 3.425851 2.217851 -4.681365 -4.909406 -2.283750 -2.949445 -1.085450 0.140267 -0.792995 1.677033 4.134784 -6.876977 2.506737 -0.341510 -0.621536 1.658985 -1.588225 0.223252 -6.099139 -0.296090 2.609906 3.465852 -1.359498 0.812567 0.372279 -2.525145 1.825923 0.158370 1.175852 -0.124867 0.391792 -0.776952 -2.261971 -2.617687 -0.315441 -1.960441 0.186749 0.079005 0.462389 0.065807 -5.877593 3.281495 -2.645422 -0.615452 2.785368 0.721346 3.654313 -2.179820 -3.578618 2.577649 1.062926 -0.760409 -3.539263 1.745030 3.158549 -0.575079 -0.677551 -1.581738 -6.066325 0.667321 -2.367335 0.537291 1.075829 1.490173 3.595647 0.803045 -1.756560 -4.951518 -1.489857 -0.661562 -0.140341 -1.712194 -1.627180 0.264678 3.073501 3.013313 0.657434 0.413065 0.078354 4.485822 -3.332667 -2.004154 3.222333 0.929822 -2.844455 1.356084 3.542168 -2.908582 -2.931738 -2.048545 1.525235 0.474760 -2.944273 1.395457 -1.186542 0.996265 1.245787 1.352279 -1.335629 1.853344 1.316086 0.458632 -2.749559 6.054729 5.017577 -2.603757 -0.939308 -1.810147 1.057622 -4.373850 -2.447551 0.069163 0.409375 0.218398 2.561998 1.707852 3.329904 -0.357058 1.179596 0.764623 -3.006380 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_M_set_node(queueEntry**) = -0.408233 0.257630 0.937473 -1.063627 0.886327 0.736787 0.275502 -0.540819 -0.782455 -0.226792 -0.001331 -0.858809 -0.578711 1.201998 -0.617772 0.380242 1.620213 0.391096 -0.415676 -0.341364 0.955859 -0.334712 1.515175 1.422408 -1.279209 -0.056730 0.651994 0.823326 0.436632 1.087845 -0.795715 -0.674461 0.331819 -0.445996 0.342291 -0.905889 0.151945 -0.082278 0.245003 -1.687864 0.176012 -0.204789 -0.171302 -0.192709 -0.114622 0.506729 1.327260 0.943592 -0.355302 -0.027843 0.916509 0.456223 -0.114208 0.271231 0.417704 0.327462 1.200707 0.397114 -0.363482 -0.279291 -0.236596 -0.559085 0.166109 1.252888 1.430497 0.245121 0.101542 0.166707 0.087551 0.155173 0.237689 0.260313 0.082426 0.615052 0.453570 -1.225374 0.441258 -2.093179 -0.219142 -1.983886 -0.657219 -0.619265 0.242814 -0.289313 0.542955 0.025152 1.261689 0.090123 0.196299 0.386219 1.568630 -1.124976 -0.405915 -0.737439 -0.834306 0.312440 -0.612901 0.144411 0.211330 -0.035453 -0.867485 -0.953888 0.534535 0.403572 -0.465284 -0.065142 -0.019233 1.001951 -0.958073 -0.572611 -0.698485 0.089734 -0.253977 -1.775171 -0.167207 -0.883213 1.027757 -0.054764 -0.318091 -1.196956 0.229929 1.093694 -0.446002 -0.501690 -0.520812 1.128453 0.669533 0.035390 -0.016614 -0.312443 0.273313 1.117576 0.842707 -0.699301 -0.147070 0.005493 -0.904772 -0.130812 -1.005196 -0.156566 0.538993 -0.870645 0.006961 0.916739 -0.679662 -0.038648 0.913543 -0.189493 0.719612 3.560284 -0.318841 0.862427 0.338717 -1.360440 0.632413 0.000742 -0.243856 0.288446 0.640857 0.468151 -1.831533 -1.015770 0.603357 1.168254 0.783077 -1.229169 -0.347635 -0.480255 -0.220518 -0.091393 0.035501 0.245797 -0.514572 -0.725169 -0.410610 0.608674 1.974043 -0.544671 -1.435816 0.442919 0.114755 -0.452415 -1.087212 -0.368552 -0.415668 0.263752 0.080850 -0.156262 0.848430 1.473059 -2.770199 1.081595 -0.197456 -0.607119 1.261012 -0.133752 -0.561417 -0.866425 0.305160 1.093397 1.106164 0.101227 -0.156646 0.192135 -1.096716 -0.138120 0.038086 0.613893 -0.537983 0.507662 0.550969 -1.150601 -0.934500 -0.488558 -0.049670 -0.501416 -0.415940 0.557739 -0.363283 -2.469630 1.487918 0.004204 -0.209406 0.362675 -0.446344 0.508562 -1.230673 -1.352685 0.516227 0.031581 -0.070129 -0.590920 0.077494 0.866574 0.003163 0.506800 -1.005410 -1.481536 0.450797 -0.424136 0.773115 0.444468 0.490768 0.971418 0.235271 -0.171428 -1.198592 -0.154477 0.356544 0.014299 -0.880727 -0.305990 -0.345092 1.037440 1.322208 -0.218509 -0.116956 -0.276265 1.185160 -1.027741 -0.386221 0.703358 0.547791 -0.898736 0.075383 0.832852 -0.972624 -0.704142 -0.562038 -0.572233 -0.283307 -1.029873 0.525004 -0.455659 0.419616 0.480683 0.075995 -0.440188 0.553083 0.172927 0.126884 0.205623 1.233039 1.641132 -0.642547 0.149943 -1.037485 0.634594 -1.629379 -1.214021 0.422230 -0.336064 -0.527961 0.138381 0.060389 1.004571 -0.065968 0.220079 0.035946 -0.170876 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_node() = -0.467795 -0.161951 0.606725 -1.258905 0.961689 0.286940 0.305114 -0.414688 -1.215522 -0.450175 0.183508 -1.193784 -0.571725 1.453187 -0.511194 0.580728 1.857935 0.470953 -0.465309 -0.447254 1.116815 -0.549529 1.566857 1.548537 -1.301985 -0.012327 0.264165 0.900338 0.496300 0.766310 -0.355534 -0.697202 0.383692 -0.673484 0.227142 -0.952222 0.149830 0.300508 0.390173 -1.918666 0.316817 -0.041328 0.126967 -0.162711 -0.192747 0.726557 1.185442 1.018052 -0.512372 0.359810 1.123854 0.221681 -0.047679 0.307752 0.323096 0.188764 0.793541 0.258368 -0.521589 -0.274984 -0.229224 -0.699504 0.222361 1.169860 1.535305 0.105099 -0.059582 0.369593 0.265036 0.306062 0.600752 0.232275 0.069370 0.112797 0.629677 -1.330028 0.093489 -2.612931 -0.187726 -2.980957 -0.786482 -0.323832 1.027611 -0.176277 0.259497 0.055230 1.335276 -0.008545 -0.058008 0.806237 1.590140 -0.919208 -0.567904 -0.781753 -0.886583 0.504724 -0.588479 0.026100 0.636470 0.359936 -0.980021 -0.709392 0.568106 0.197833 -0.507437 -0.353812 0.082638 1.155277 -1.238506 -0.553540 -0.575771 0.627265 0.084847 -1.829021 -0.087358 -0.916074 0.977965 0.032992 -0.491575 -0.860752 0.201041 0.659808 -0.590041 -0.212821 -0.692413 1.078294 0.560809 0.279328 0.029061 -0.011333 0.319574 1.269419 0.628088 -0.928743 -0.078307 0.100300 -0.604443 0.121625 -1.087021 -0.470092 0.765941 -1.077033 0.268395 0.542863 -0.804965 -0.393413 0.908252 0.029316 0.492494 3.351818 -0.154278 1.168383 0.684241 -1.141900 0.611941 -0.040098 -0.005736 0.492482 0.799176 0.230623 -1.292446 -1.179548 0.695802 1.267771 0.909960 -1.387068 -0.565467 -0.297076 -0.089510 0.089220 0.026557 0.273873 -0.327117 -0.692429 -0.333729 0.714768 2.059389 -0.401957 -1.134311 0.457403 0.506203 -0.487659 -1.320359 -0.414839 -0.628621 0.236746 0.123147 0.003249 0.865132 1.695018 -3.091276 1.187456 -0.063266 -0.148881 1.015597 0.141975 -0.801290 -1.810832 -0.064758 0.902731 1.432524 -0.008739 -0.000623 0.407360 -1.173753 -0.122314 0.175736 0.388958 -0.546775 0.529967 0.260002 -0.809730 -0.689756 -0.234330 -0.325578 -0.156752 -0.313013 0.702058 0.058712 -2.522244 1.307786 -0.192819 -0.348633 0.253538 -0.363412 0.890485 -1.217235 -1.275884 0.561936 -0.135768 -0.546849 -0.807551 0.190250 0.874065 -0.184620 0.328201 -0.741736 -1.416050 0.855673 -0.629868 0.912795 0.513491 0.046988 1.038641 0.166222 -0.288862 -1.160717 -0.143821 0.165100 -0.319002 -0.842113 -0.141506 -0.303103 1.024032 1.260872 0.002761 -0.432045 -0.016505 1.309436 -1.082602 -0.531014 0.887083 0.377325 -0.868000 0.642157 1.064187 -1.346501 -0.378713 -0.810923 -0.398824 -0.247794 -0.953811 0.742075 -0.200068 0.508050 0.238028 0.082787 -0.281691 0.745947 0.299365 0.065591 0.100125 1.612091 1.839167 -0.666813 0.075738 -1.199349 0.625326 -1.672218 -1.314220 0.363773 0.053511 -0.762271 0.189807 -0.016018 1.147252 -0.003144 0.070922 -0.312517 0.190700 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_S_buffer_size() = -0.112110 -0.169443 0.031958 -0.327706 0.186556 -0.158090 0.067596 -0.103717 -0.424287 -0.173252 0.118412 -0.381119 -0.045186 0.341113 -0.102915 0.188108 0.380773 0.138979 -0.110422 -0.108159 0.206083 -0.162970 0.286025 0.362034 -0.218925 0.046730 -0.198037 0.174160 0.062216 0.140254 0.079130 -0.213855 0.070833 -0.084752 -0.023574 -0.193212 -0.002289 0.275769 0.134866 -0.437274 0.137753 0.128216 0.284420 -0.033607 -0.001934 0.112218 0.141529 0.171815 -0.062562 0.245555 0.268895 0.071311 0.042837 0.073210 0.092869 0.000808 0.108121 -0.262055 -0.143910 -0.066817 -0.053060 -0.109818 0.054879 0.199233 0.301161 0.001509 -0.049966 0.024699 0.064221 0.113237 0.256817 0.034632 -0.100920 -0.139550 0.054347 -0.166553 0.032835 -0.515991 0.012756 -0.780152 -0.202867 0.113650 0.478909 0.296971 -0.056634 0.059071 0.270319 -0.053519 -0.133741 0.204321 0.258150 -0.062147 -0.130053 -0.008479 -0.239253 0.120845 -0.051379 -0.050925 0.037375 0.319466 -0.225699 -0.007930 0.157301 -0.030847 -0.093627 -0.041748 0.085587 0.188082 -0.436828 -0.066849 0.067160 0.352398 0.170746 -0.294318 0.073130 -0.258615 0.080740 -0.011629 -0.194049 -0.003017 0.038294 -0.098492 -0.172549 0.142993 -0.491712 0.104477 0.009194 0.113379 -0.025335 0.024153 0.019110 0.254046 -0.156773 -0.305569 0.058522 0.013368 0.066883 0.126987 -0.182772 -0.190342 0.069138 -0.254550 0.152586 -0.100560 -0.180808 -0.203337 -0.095294 0.088279 -0.050656 0.324722 -0.011630 0.376005 0.277796 -0.116161 0.028232 -0.031199 0.105854 0.148502 0.199179 -0.076573 0.155774 -0.296359 0.180052 0.247146 0.184118 -0.104782 -0.131864 0.075725 0.013424 0.150374 0.060228 -0.023412 -0.025391 -0.169904 -0.068375 0.070186 0.402383 0.161324 0.113164 0.089078 0.189319 -0.110327 -0.147092 -0.088497 -0.150959 0.083624 -0.006549 0.041117 0.155045 0.376550 -0.680038 0.272231 0.015337 0.163422 0.062613 0.058633 -0.247581 -0.625703 -0.194868 0.068336 0.392995 -0.133179 0.168009 0.192030 -0.234702 -0.038341 0.001749 -0.022501 -0.202871 0.113857 0.056044 -0.136478 0.000000 0.028128 -0.124913 0.083783 -0.084701 0.149307 0.297731 -0.416652 0.152527 -0.057737 -0.067903 0.000999 0.024026 0.250359 -0.161770 -0.117729 0.074344 -0.107163 -0.232342 -0.165362 0.077226 0.145105 -0.220082 -0.017118 -0.038797 -0.062681 0.273873 -0.149154 0.196817 0.084495 -0.187048 0.051571 0.073191 -0.014937 -0.099330 0.059679 -0.087490 -0.279833 -0.073919 0.283289 -0.103763 0.145650 0.180642 0.118711 -0.249772 0.215564 0.304514 0.002027 -0.075486 0.216686 -0.176971 -0.140960 0.286940 0.267957 -0.336436 0.058278 -0.253945 0.022190 -0.043837 -0.074064 0.286494 0.145784 0.133488 -0.090896 0.012776 -0.064840 0.202220 0.108970 -0.075264 0.053608 0.466291 0.165245 0.059521 0.106505 -0.217131 -0.008666 -0.267121 -0.187231 -0.018445 0.164326 -0.287807 0.043818 -0.188420 0.320584 0.032797 0.100562 -0.118289 0.209595 +PE-benchmarks/snake-ladder.cpp__std::deque >::push_back(queueEntry const&) = -1.422221 2.365843 2.895358 -3.206657 4.512703 5.105102 1.331673 -1.399988 -2.429297 -1.053401 -0.709627 -4.388250 -3.595763 5.298090 -1.873702 1.746858 6.830260 1.021845 -1.282955 0.421595 3.068687 0.140405 6.013523 4.800419 -4.172287 -0.057229 2.036602 1.331296 -1.511686 5.471953 -3.704794 -6.006201 1.838570 -1.286656 0.723405 -2.203453 -0.029897 -1.532580 0.854813 -6.416907 0.595686 1.400609 -1.812490 -1.485972 -0.670661 -0.741085 6.883569 3.529203 -0.540851 -0.935172 1.785994 1.955156 -0.658825 1.191565 2.532166 1.753647 2.838768 0.683182 -2.764339 -1.336215 -1.696487 -1.341350 -1.061640 4.485330 4.758752 1.249468 -0.030614 0.651243 -1.417222 0.488045 -0.352700 0.998668 1.921778 3.004102 1.704162 -1.934935 -0.030652 -4.970881 -1.265791 -5.684119 -2.960503 -2.724605 0.297727 1.094103 2.671323 -2.113058 5.105027 -0.836622 1.279459 1.497970 7.815965 -5.125179 -1.951440 -4.001353 -2.541287 0.460074 -2.209153 0.069934 0.537218 -2.528696 -4.202679 -4.439367 1.284943 1.788847 -1.418841 -0.863714 0.165154 4.268679 -3.381658 -2.403192 -3.868869 0.054318 -1.169082 -7.362621 -2.605663 -0.806424 0.848168 1.160137 -2.102057 -6.072441 2.128290 4.634119 -2.178228 -3.340183 -0.102611 5.041655 2.354251 0.132395 0.856867 -0.661807 2.075096 5.499750 3.979317 -1.838960 0.064629 -0.677747 -2.341650 -0.655690 -2.399686 -0.771881 -0.866277 -3.748394 0.048344 4.860683 -2.993461 0.964953 -0.241282 -1.229196 3.009009 13.870010 -2.615331 3.353835 0.150619 -6.691839 3.576039 -0.784200 -2.487925 -1.201771 2.458032 3.377407 -6.532444 -3.545420 3.803187 5.000398 3.330792 -4.231888 0.668659 -2.197896 -0.348146 -1.423841 0.723613 1.658146 -0.461333 -3.479017 -1.670748 3.077340 9.249265 -3.422139 -7.439536 2.898082 0.907377 0.689020 -2.751604 -1.508268 -2.247224 0.473785 1.709940 -1.314102 3.124322 6.143092 -8.664394 4.580410 -0.843743 -3.983530 5.462983 -0.296134 -2.001292 -0.698155 0.760364 5.887370 4.700688 1.534337 -0.464688 -1.503530 -3.998203 -0.666271 0.493184 2.784249 -1.595828 2.176108 0.950978 -5.637989 -4.045037 -2.950959 -0.713858 -3.034719 -2.684761 1.697615 0.305017 -9.196028 7.205394 1.643606 -0.221314 0.919356 -1.333480 2.384471 -4.388349 -6.713378 2.395901 -1.172752 -0.989039 0.111565 -0.206282 2.779565 2.006863 2.168314 -3.437863 -6.663300 2.935491 1.027076 4.400983 1.729280 2.870048 4.026559 2.180856 -2.013996 -3.415133 -3.819099 3.243785 0.017009 -3.688529 -1.893150 -1.860753 4.793163 4.869864 -0.758747 -1.576315 -4.214518 3.815981 -3.938407 0.218041 3.833920 0.863366 -4.134717 -1.554051 4.426407 -2.578690 -3.159489 -2.247683 -0.692517 -2.975226 -4.815600 -0.326262 -2.752567 0.614239 2.754712 -0.890757 -2.376116 0.722660 0.671666 -0.028807 0.340244 4.160955 3.736023 -3.589562 1.565157 -4.092074 3.026374 -6.630231 -5.659545 2.459332 -1.916986 -2.323896 -0.533305 0.785187 2.563955 -1.493999 1.030734 -0.118728 -1.507030 +PE-benchmarks/snake-ladder.cpp__void std::deque >::_M_push_back_aux(queueEntry const&) = -1.582248 1.984244 3.443797 -4.143932 4.914960 4.743751 1.400892 -1.454227 -3.372078 -1.404400 -0.349514 -5.610825 -4.083626 5.845639 -2.259193 1.478991 7.589593 1.202790 -1.756711 -0.017375 3.146442 0.526922 6.758611 5.641213 -4.852900 0.027253 1.373132 2.167781 -0.839941 5.538455 -3.489096 -6.017446 1.790683 -0.660776 0.884572 -2.319738 -0.035924 -1.377993 0.569146 -7.209988 0.867241 1.863003 -1.326615 -1.367717 -0.402760 0.465763 7.299432 4.001561 -0.725745 -0.772899 2.602685 2.097788 -0.317618 1.281820 2.516606 1.018429 3.846601 0.410153 -2.937486 -1.550778 -1.735185 -1.656950 -1.284163 5.037796 5.542094 1.361833 -0.346913 0.213909 -0.674205 0.844567 0.340001 1.174799 2.141125 3.094333 1.887651 -1.389165 0.527990 -5.711426 -0.969901 -7.142081 -3.305724 -2.545136 1.835690 1.551998 1.884401 -2.469813 5.728063 -0.653309 0.977075 1.819934 8.305979 -4.837886 -2.236178 -3.990875 -2.971014 0.984707 -2.387270 0.237059 0.780536 -1.372361 -4.562069 -3.811937 1.169902 1.181425 -1.779602 0.021944 0.250503 4.610451 -3.975779 -1.682297 -3.841703 0.964357 -0.121200 -8.154944 -3.075051 -1.501229 1.057339 0.915145 -2.433510 -5.295074 2.117409 3.949312 -2.662775 -2.244441 -1.837515 5.579436 2.466965 0.396109 0.644293 -0.331599 2.396362 5.374043 3.210445 -2.567581 0.065326 -0.662433 -2.250141 -0.376258 -2.994787 -0.773052 -0.204371 -3.948893 0.544185 4.428373 -3.366680 0.437164 -1.075249 -0.956866 2.916535 14.740518 -2.616383 4.106922 0.808301 -6.627743 3.685273 -0.472048 -2.175254 -0.817170 2.542792 3.396249 -5.985932 -4.123613 4.197263 5.623834 3.736135 -4.841152 1.369758 -1.713165 -0.377211 -1.536762 1.011698 1.719910 -0.589668 -3.556901 -1.838985 3.498343 9.614264 -2.879478 -8.342305 2.805823 1.196523 0.795950 -2.445293 -1.500877 -1.555196 0.652304 1.903706 -0.938839 3.639311 6.957846 -10.318255 5.150014 0.114978 -3.601823 6.167301 -0.441096 -2.511249 -1.435936 0.493813 5.921324 5.334562 1.557143 -1.027280 -1.092231 -4.549353 -0.787400 0.804565 2.749353 -1.910434 2.299849 1.307592 -5.274688 -4.036100 -3.852000 -0.861916 -2.125495 -3.319649 2.299894 0.139769 -10.473254 7.510241 1.456608 -0.560139 0.218661 -1.944115 2.440552 -4.907596 -6.770102 2.174542 -1.657864 -2.196727 -0.822586 -0.001007 2.867960 1.612942 2.912522 -4.014977 -6.769374 3.908928 0.299364 4.810530 2.087347 2.550302 4.050303 2.979249 -1.795700 -3.603482 -3.685740 3.704909 -0.207874 -4.004114 -0.661629 -1.986346 4.762807 5.302885 -1.007077 -1.816566 -4.129689 4.257174 -3.810420 -0.567764 4.010415 0.244623 -4.301781 -0.326659 4.716574 -3.240222 -2.973757 -3.013467 -1.440321 -3.117393 -5.110020 0.423509 -2.457131 0.991150 2.835764 -0.868227 -2.764166 1.246705 0.568089 -0.554917 0.650126 5.228831 4.776712 -3.445354 2.235990 -4.871630 3.611111 -7.297718 -6.104735 2.656979 -2.573027 -2.840320 -0.504850 0.382999 3.210172 -1.298169 0.863143 -0.830795 -0.401469 +PE-benchmarks/snake-ladder.cpp__std::deque >::size() const = -0.389187 0.478416 0.476187 -1.346852 1.442644 1.442268 0.392639 -0.832331 -0.953838 -0.035071 0.195885 -2.039872 -0.765643 1.182347 -0.694582 0.751905 1.850018 -0.100356 -0.689597 0.023328 0.636284 1.033674 2.015987 1.598727 -1.221540 0.103309 -0.035486 0.351473 -0.373156 0.878272 -1.034814 -1.556375 0.421719 -0.270732 -0.220379 -0.028059 -0.148506 -0.575312 0.906443 -1.603693 0.316695 0.342675 -0.067023 -0.407649 -0.159470 -0.188807 1.980865 1.072141 0.067279 -0.295927 0.921885 0.745777 -0.001421 0.313823 0.574280 0.165245 1.239472 -0.249876 -0.555406 -0.926244 -0.364464 0.472545 -0.384809 1.436055 1.273720 0.546380 -0.366347 0.220669 0.289470 0.080522 0.175795 0.520949 0.202125 1.118973 0.218917 -0.225121 0.542250 -1.002958 -0.186349 -0.920279 -0.969282 -0.256797 0.278606 0.613600 0.792408 -0.382394 1.611618 -0.280376 0.118925 0.297808 1.901216 -1.389790 -0.542852 -0.645162 -0.886249 0.037235 -0.404616 0.355662 -0.161458 0.048471 -1.311552 -0.659009 0.153734 0.377784 -0.524477 0.043283 0.471301 0.497233 -0.646551 -0.376810 -0.476212 0.716873 0.053221 -2.210860 -1.164349 -0.431917 0.030941 -0.099283 -0.774705 -1.650647 0.388699 0.689929 -0.905562 -0.448555 -0.783184 1.005027 1.026922 0.359981 0.216825 -0.121940 0.911070 1.933756 0.106542 -0.897974 0.103456 -0.466801 -0.225096 0.144872 -0.455206 -0.162683 -0.532311 -1.080502 0.718767 1.391977 -0.821404 0.213261 -0.630957 -0.039533 0.409409 3.720589 -0.765649 1.485858 0.542336 -1.687855 0.577503 -0.641023 -0.547651 -0.406623 0.333835 0.866110 -1.284489 -1.159790 1.405427 1.512035 0.931380 -1.099915 0.963538 0.186728 -0.106146 -0.458890 0.244429 0.359832 0.105866 -1.012686 -0.501133 1.236773 2.801790 -0.336260 -1.493612 0.897312 0.466407 0.530650 0.018622 -0.581803 -0.604449 0.266437 0.943496 0.158539 1.029659 1.825272 -2.275595 1.111616 0.228725 -0.795003 1.727448 0.119140 -1.064893 0.403617 -0.050393 1.404118 1.146238 -0.005507 -0.159081 -0.273250 -1.026824 -0.246616 0.280506 0.384692 -0.649800 0.591116 0.656332 -1.480716 -0.758053 -0.902397 -0.197274 -0.299720 -0.986705 0.783315 -0.134251 -2.432050 1.947327 0.719998 -0.294453 -0.116674 -1.079580 0.765915 -1.094543 -1.288024 0.645484 -0.647551 -0.116844 0.204470 0.098485 0.474339 0.555362 1.548636 -1.501116 -1.355779 1.087325 0.344866 1.454408 0.622893 0.498582 0.249394 0.029963 -0.196935 -0.766867 -1.137214 0.833939 0.426976 -1.372166 0.382355 -0.699816 1.216895 1.078725 -0.544015 -0.740627 -0.930924 0.687971 -0.849116 0.160915 0.788844 -0.024262 -1.667366 -0.287159 1.050183 -0.552447 -0.335367 -0.792596 -0.391905 -1.246050 -1.351774 0.260103 -0.156889 0.386134 0.691252 -0.395046 -0.489609 0.295373 0.033425 -0.108937 0.511914 1.277466 0.584042 -0.144115 0.429969 -1.501886 0.883511 -1.805206 -1.860049 1.145674 -1.061442 -1.231151 -0.427587 -0.150853 1.218390 -0.414508 0.267374 -0.365854 0.326753 +PE-benchmarks/snake-ladder.cpp__std::deque >::max_size() const = -0.259213 0.088588 0.536903 -0.656534 0.553188 0.014424 0.177284 -0.171670 -0.544391 -0.437094 0.005716 -0.587248 -0.552758 0.772236 -0.362562 0.148416 0.947700 0.235316 -0.190841 -0.359704 0.606270 -0.391341 0.928095 0.779841 -0.857746 -0.023515 0.276152 0.664607 0.415877 0.560691 -0.127479 -0.339648 0.220207 -0.103546 0.332483 -0.585427 0.194842 0.090826 -0.136221 -1.055124 0.094897 -0.011928 0.059960 -0.031306 -0.080088 0.741767 0.718734 0.647059 -0.379296 0.123958 0.699655 0.237305 -0.015698 0.236214 0.025869 -0.121740 0.548988 -0.060382 -0.324427 -0.111957 -0.094563 -0.729054 0.102344 0.731930 0.964741 0.005086 0.083383 0.208951 0.023166 0.251469 0.256298 0.161404 0.151958 0.151548 0.412244 -0.642297 0.119854 -1.454017 -0.143733 -1.963120 -0.442577 -0.446301 0.525433 -0.006655 0.059487 0.088617 0.841202 0.236278 0.068366 0.502040 0.928762 -0.480458 -0.268771 -0.518551 -0.462150 0.359882 -0.463879 0.018962 0.241986 0.344820 -0.492590 -0.361859 0.257562 -0.017820 -0.295644 -0.088765 -0.145492 0.645184 -0.907718 -0.156897 -0.527290 0.148146 0.100544 -1.093672 0.120306 -0.499049 0.803165 -0.066646 -0.006716 -0.275788 0.090724 0.435764 -0.252794 -0.014337 -0.743127 0.677722 0.270155 0.029514 0.060304 0.006742 0.119788 0.489858 0.483034 -0.447779 -0.282462 0.089303 -0.459424 -0.014865 -0.651900 -0.109323 0.647632 -0.599692 0.146972 0.281615 -0.387322 -0.396396 0.344664 -0.233775 0.479840 1.584591 -0.057959 0.492364 0.281164 -0.675927 0.264021 -0.014758 -0.100258 0.345169 0.431684 0.173190 -0.484239 -0.672728 0.345955 0.680425 0.496591 -0.693269 -0.244363 -0.200049 -0.035541 -0.034057 -0.008622 0.275841 -0.341879 -0.381905 -0.220413 0.298616 0.952613 -0.130419 -0.561700 0.296175 0.237273 -0.352329 -0.674901 -0.207747 -0.043469 0.062084 0.023712 -0.047862 0.424538 0.937094 -1.803808 0.681359 0.078261 -0.057499 0.445632 -0.157867 -0.304425 -1.065722 0.122012 0.623671 0.698302 -0.042456 0.019041 0.152392 -0.698822 -0.008236 0.056788 0.344228 -0.258784 0.264918 0.193483 -0.445738 -0.576901 -0.275881 -0.085756 0.030876 -0.127427 0.354735 0.025469 -1.589597 0.842330 -0.367849 -0.209100 0.062147 -0.146756 0.434050 -0.751624 -0.759341 0.262907 -0.131567 -0.482105 -0.657141 0.142680 0.525071 -0.242246 0.077635 -0.357783 -0.737080 0.437362 -0.401668 0.309009 0.276659 0.273800 0.763146 0.185202 -0.183588 -0.684213 0.045242 0.118034 -0.309548 -0.376129 0.212637 -0.092545 0.518615 0.843821 -0.081261 -0.086626 0.171769 0.796014 -0.553686 -0.553060 0.517542 0.245151 -0.391108 0.567248 0.577418 -0.718202 -0.446881 -0.559411 -0.206222 -0.025878 -0.607311 0.376495 -0.282770 0.193513 0.350627 0.105909 -0.360763 0.487070 0.127923 -0.008727 -0.083583 0.982992 1.250875 -0.473903 0.174269 -0.619166 0.309363 -1.022347 -0.675877 0.142603 -0.016632 -0.138520 0.206719 -0.058998 0.597782 0.005966 0.039726 -0.140068 -0.009580 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.531006 0.764457 1.172356 -4.640936 4.621065 5.505256 1.284710 -2.829308 -3.628428 0.417708 0.769429 -6.225003 -1.863111 4.692148 -2.105362 3.140234 6.288677 -0.034767 -2.515682 0.581717 3.047317 3.233145 6.237127 5.086536 -3.854653 0.068352 -0.322329 0.726107 -1.255598 3.181488 -3.226144 -5.379427 1.489448 -1.711937 -1.081256 -0.709331 -0.328138 -0.943758 3.686016 -5.466540 1.297294 1.482513 -0.503152 -1.647506 -0.655803 -1.632580 5.882142 3.523135 0.026416 -0.816792 2.783179 2.403297 -0.511660 0.941855 2.136096 1.256070 3.061652 -0.195952 -1.855002 -3.065323 -1.260083 2.115249 -0.838118 4.545900 4.243769 1.710176 -0.977341 1.028592 0.874952 0.215554 0.840799 1.316345 0.582790 2.861826 0.847626 -1.074933 0.876111 -3.596977 -0.461410 -2.683081 -2.801433 -0.259615 0.943532 1.896368 2.792035 -2.116685 5.015189 -1.534086 -0.161107 1.651625 6.277671 -4.658605 -1.788272 -2.739882 -3.338717 0.031126 -1.342217 0.799359 -0.281161 -0.648482 -4.381463 -2.904635 0.183462 1.794241 -1.556683 -0.709399 1.692162 2.330189 -1.950874 -1.959118 -0.703612 3.086168 -0.475135 -7.073139 -4.206211 -1.955314 -0.611838 -0.271809 -2.743651 -5.777416 1.312080 2.579209 -3.018960 -2.209335 -1.409278 3.423306 3.440943 1.287636 0.381392 -0.713524 2.554206 6.635345 0.284434 -3.146534 0.811431 -1.407411 -0.454775 0.659606 -1.906265 -0.873190 -1.655749 -3.594766 1.429151 4.719967 -2.723160 1.199629 -1.203675 0.324906 1.178195 13.652124 -2.320397 5.029430 1.896458 -5.664058 2.290404 -1.587466 -1.499928 -1.104420 1.287643 2.345628 -5.429121 -3.981261 4.572688 4.875496 3.246151 -3.644774 2.450712 0.111373 -0.602698 -1.380101 0.618408 1.006662 0.205059 -3.577672 -1.654469 3.937146 9.619851 -1.631928 -4.820271 3.090550 2.205468 1.142114 -0.295587 -2.065386 -2.866125 0.935052 3.091132 0.132487 3.809260 6.151616 -7.298731 3.854814 0.288894 -2.644968 5.277070 0.676294 -3.709512 1.118204 -0.641103 4.454913 4.291034 0.007163 -0.079069 -0.479233 -3.502135 -0.646660 0.884680 0.938198 -1.984700 1.843467 1.830625 -4.772302 -2.320269 -2.039813 -1.321101 -1.729480 -3.125206 2.420716 -0.160698 -7.243956 6.166013 2.620781 -0.482506 0.215090 -2.976567 2.979510 -3.556363 -4.549856 2.505236 -1.339198 0.033360 0.871240 0.427416 2.087772 2.083041 4.825959 -4.829830 -5.423369 3.434890 0.994850 5.067698 1.819113 1.076078 0.728717 0.047450 -0.660607 -2.984158 -4.566187 2.767064 1.878478 -4.665564 0.189090 -2.185328 4.424205 3.023969 -1.332981 -3.129468 -3.503244 2.694851 -2.826593 1.244731 2.817958 -0.060407 -5.697081 -1.741901 3.804312 -2.194524 -0.808835 -2.251513 -0.756513 -4.096060 -4.227017 1.035582 0.071497 1.632952 1.392580 -0.970595 -1.242209 0.739760 0.743078 -0.388842 1.796213 4.432978 1.346125 -0.624079 0.903670 -4.827783 2.922086 -5.786962 -6.105671 3.563184 -3.366224 -4.372181 -1.102837 -0.290319 4.205218 -1.182136 1.508181 -0.751927 0.711654 +PE-benchmarks/snake-ladder.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.333429 0.140646 -1.099146 -3.526650 3.642990 2.970979 1.236075 -2.659759 -2.487933 0.135771 1.294706 -5.714330 -1.314405 2.327287 -1.731913 3.453664 4.991287 -0.720270 -1.945215 -0.413526 2.270123 3.301068 6.048452 4.474354 -3.187679 -0.054931 -0.287894 0.610334 -0.442285 -0.830891 -1.946885 -2.926876 1.999473 -2.997334 -1.496118 0.462215 0.012176 -1.364154 4.314846 -3.584019 0.988454 -0.855293 0.281740 -0.961775 -1.370279 0.254903 4.487726 3.205922 -0.132045 -0.317691 3.386090 1.329080 -0.165587 1.068704 0.203864 0.290309 1.386645 -0.370024 -1.212021 -3.587494 -0.650977 1.785946 -0.420677 3.661280 3.283914 1.251479 -1.192235 2.666829 1.913190 0.121994 1.229118 1.541951 0.201827 2.103081 1.123614 -2.636858 0.462527 -3.991120 -1.370423 -3.833372 -2.639901 -0.240053 0.656986 -0.541187 3.003289 0.578275 4.289032 -0.600905 0.083176 1.606780 4.158973 -4.369273 -1.793388 -1.661829 -1.712941 0.101867 -1.323694 1.549871 1.081091 0.853336 -3.707115 -1.398184 0.296597 1.313600 -1.381788 -2.250285 1.925856 0.166656 -1.073457 -1.738837 -1.167888 2.426504 0.040938 -6.128610 -2.374010 -0.929679 1.335602 -0.522992 -1.827505 -4.872193 0.229933 1.434672 -2.266712 -1.740813 -0.321727 1.503331 3.496485 1.812261 1.234527 0.363382 2.539519 7.152788 0.564753 -2.635549 -0.220618 -1.344834 -0.777036 1.132783 -1.179831 -1.176079 -0.194877 -3.715216 3.457656 4.107770 -2.178567 -0.211212 1.271975 0.481918 0.759140 8.910828 -1.222710 4.555981 2.697151 -3.966903 0.481748 -3.528102 -0.705276 -0.603626 0.833466 1.458294 -3.222885 -3.410360 3.736294 3.792179 2.532316 -3.804570 2.008169 1.284551 0.674193 -1.248128 -0.563333 1.512174 1.175308 -2.689986 -0.793683 4.353639 7.584611 -1.168886 -0.893594 2.718547 2.171366 1.322199 -1.086913 -2.434549 -2.985439 0.584714 3.388390 1.780970 2.236317 4.983207 -4.519105 2.041565 0.328988 -0.525943 3.572069 1.891689 -3.886335 0.208601 -0.294727 3.059806 2.491689 -0.921238 0.440841 -0.059604 -2.406211 -0.513883 1.058493 0.397100 -1.247309 1.330048 1.456497 -3.073757 -1.493636 -0.436037 -0.555229 -0.293693 -0.944924 2.628250 -0.292732 -5.739595 4.630331 1.163565 -1.925660 -0.000941 -3.605223 3.528881 -2.959245 -2.638071 2.595745 -1.901023 0.493639 0.401466 1.092378 1.174244 1.577102 4.461398 -3.881120 -3.428235 3.237410 1.082620 3.913286 1.640190 0.646480 0.546083 -3.530722 -0.588414 -2.741575 -2.820099 0.244990 1.521513 -4.505710 0.484484 -1.340866 3.552531 2.640842 -1.778122 -2.314816 -0.851338 1.224187 -4.231924 0.354659 2.067530 2.604345 -5.073344 0.042830 2.743423 -2.214246 -0.082293 -1.817156 -0.618669 -3.182359 -3.900801 1.048818 -0.016805 1.590891 1.423241 -0.786404 0.408837 1.161264 0.312717 0.746548 1.116083 3.333692 2.512456 0.064343 -0.988534 -4.568370 1.984151 -4.878170 -5.909495 4.084523 -1.920400 -3.776380 -0.942461 0.157581 4.170008 -1.159633 -0.423761 -1.944803 1.170871 +PE-benchmarks/snake-ladder.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.527554 -0.012312 0.988322 -1.454098 1.531797 0.439207 0.328911 -0.330016 -1.133553 -0.494937 -0.227878 -0.647174 -0.738070 1.693051 -0.584656 1.022522 2.042162 0.422649 -0.399037 -0.680417 1.888787 -1.221103 1.844802 1.089917 -1.816855 -0.128843 0.958451 1.421080 0.863014 1.423431 -0.906163 -0.383413 0.411341 -1.206645 0.615769 -1.545847 0.653234 0.344006 0.198590 -2.126867 0.212527 -0.498252 -0.363022 -0.019260 -0.500352 1.311093 1.280853 1.390024 -1.058855 0.292919 1.539591 0.131243 -0.297718 0.570000 -0.114993 0.637575 1.044604 0.694344 -0.789840 -0.290125 -0.163862 -1.530846 0.742947 1.253270 1.923366 -0.300548 0.254564 1.298369 0.093942 0.259653 0.630334 0.185684 0.037445 -0.142075 1.152830 -2.321318 -0.131101 -3.320091 -0.504749 -3.947682 -0.764531 -1.198806 0.347817 -1.000406 0.692140 0.326034 1.783667 0.086909 0.188978 0.987754 1.751524 -1.566376 -0.570637 -1.822480 -0.891462 0.468034 -1.050463 -0.595137 1.088966 0.174557 -0.843772 -1.222543 0.765375 0.354795 -0.514430 -0.968552 -0.512822 1.661719 -1.750691 -1.238450 -1.316132 0.380261 -0.609747 -2.171549 0.418538 -0.822570 1.893799 -0.202439 0.447675 -1.348559 0.154399 1.760735 -0.584069 -0.723687 -0.133368 1.597973 0.900451 -0.058598 0.306210 -0.145663 0.086492 1.462614 1.972457 -0.851849 -0.968190 0.519424 -1.206068 -0.191601 -1.517137 -0.386132 1.330547 -1.604932 -0.023854 1.136239 -0.700316 -0.141414 2.094705 -0.366965 1.239961 4.030559 -0.034125 0.715613 0.202978 -1.580781 0.914917 0.112075 -0.217375 0.823675 0.779599 0.154981 -2.289655 -1.457299 0.624919 1.119174 1.080429 -2.043316 -1.232515 -1.049791 -0.010195 0.293386 -0.642374 0.973980 -0.764907 -0.727912 -0.378249 0.210740 2.714716 -0.941182 -1.438234 1.070863 0.326612 -1.498757 -2.458953 -0.806410 -0.892929 -0.180011 -0.044188 -0.235538 0.870112 2.002694 -3.629686 1.362289 -0.412226 -0.598355 1.065233 -0.323879 -0.221802 -2.329220 -0.068909 1.307863 1.647272 -0.117459 0.116348 0.307085 -1.325069 0.311564 0.099883 0.740040 -0.157011 0.343321 0.232198 -1.100909 -1.113641 0.007505 -0.354039 -0.202114 0.193873 0.541874 -0.381532 -3.434535 1.677344 -0.916104 -0.264771 1.078309 0.108637 1.285577 -1.438644 -1.716375 1.073726 0.441690 -0.254415 -1.324001 0.502917 1.434971 -0.230889 -0.103506 -0.756254 -2.523940 0.341642 -0.901440 0.467327 0.490704 0.543886 1.777971 -0.054348 -0.562757 -1.946001 -0.011489 -0.296923 -0.298964 -0.633998 -0.728506 0.051679 1.516323 1.597657 0.109909 0.249590 -0.027276 1.772610 -1.899329 -0.865228 1.295344 1.183155 -1.144492 0.697992 1.448564 -1.583395 -1.163851 -0.767885 -0.191219 0.004251 -1.161945 0.587610 -0.763088 0.350992 0.707083 0.402957 -0.493933 0.942852 0.370816 0.191615 -0.752356 2.247021 3.060327 -1.326948 -0.217884 -1.104829 0.754600 -2.121600 -1.421388 0.286132 0.303859 -0.347501 0.783493 0.689020 1.339798 -0.181484 0.093632 0.089460 -0.983139 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -4.867224 4.259273 6.710716 -13.731570 14.737133 17.906240 3.782484 -8.316869 -10.534994 0.198758 1.177343 -17.485229 -7.786157 16.091799 -6.986564 7.422407 19.932671 0.654950 -7.139076 1.602280 10.822804 7.195367 19.140470 15.830332 -13.351590 -0.069271 1.409367 3.525052 -2.897580 12.834069 -10.300376 -17.057484 4.539609 -4.285598 -1.670902 -3.802350 -0.416912 -3.352470 8.296298 -18.098882 3.240353 4.003745 -4.260809 -4.658972 -1.660220 -3.976371 19.647412 10.861132 -1.113903 -3.028518 8.414445 7.665976 -2.246229 2.961938 6.996882 3.596342 10.227610 1.130025 -6.109331 -7.957952 -4.391482 3.596773 -2.655910 14.855547 14.589575 5.516246 -1.633229 2.450975 0.359628 1.006980 1.359271 3.827593 3.444405 9.800321 3.808376 -3.749678 1.876498 -13.836424 -1.797423 -10.476198 -8.541937 -3.196048 2.288461 5.256614 7.843004 -6.926242 15.825153 -3.341939 0.198706 6.270734 21.911079 -14.459901 -5.304449 -10.061852 -11.465343 0.519725 -4.998181 2.801269 -1.719519 -3.236966 -13.517775 -11.609092 0.867635 5.372809 -4.829895 -1.938706 3.242921 10.064771 -7.668248 -5.574928 -3.806363 7.147952 -1.919392 -22.668463 -13.124981 -6.613107 0.660294 -0.051550 -7.561508 -17.576982 4.486709 10.396320 -8.685069 -7.624026 -3.414547 12.302245 10.395381 2.800472 0.403087 -2.763548 7.476640 18.521002 3.596491 -8.701199 2.018689 -4.444042 -2.776757 0.790579 -7.189803 -1.513199 -3.699360 -10.478869 2.487852 14.830675 -8.388133 2.676442 -2.942195 -1.127637 5.374883 44.549369 -7.282577 14.191043 4.026120 -18.859294 8.145499 -3.105113 -5.485818 -2.449516 5.189036 8.175938 -19.069231 -12.586169 13.957846 15.303523 9.774605 -12.261170 5.977737 -1.753982 -2.737999 -4.941562 2.419524 3.290372 -1.486448 -10.452752 -5.594448 11.875708 29.570241 -6.631143 -19.036511 9.651898 5.578141 2.887047 -2.625688 -5.785012 -6.641514 2.842925 8.973971 -1.288574 12.214674 19.570652 -25.828564 12.869899 0.571676 -9.329612 16.075393 0.748860 -10.033129 2.781717 -0.058910 15.607203 13.470063 2.155343 -1.681240 -2.218592 -12.025136 -1.797901 2.798878 4.709341 -6.370931 6.302466 5.462437 -15.918496 -9.807538 -7.580924 -4.246806 -6.153244 -10.393295 6.652266 -1.889012 -25.360672 20.685083 7.156262 -0.506418 0.889302 -8.294953 8.815759 -11.883022 -16.841243 7.637558 -3.836381 -1.366953 1.113005 0.944785 7.603526 6.590271 13.148620 -14.903919 -19.006309 10.066496 2.212045 14.937330 5.359675 5.535150 5.706633 2.683715 -3.045943 -11.106733 -13.386162 11.118551 5.148736 -14.185283 -1.208828 -6.569840 13.964979 11.187064 -3.842278 -9.021360 -11.940202 10.198270 -9.164564 2.212482 9.546381 0.550580 -16.704898 -5.396239 12.248778 -6.916817 -4.983357 -7.238669 -2.855993 -11.904315 -14.030180 2.451710 -1.638673 4.448887 5.286765 -2.419376 -5.228203 2.866227 2.358302 -0.684125 4.781440 14.089512 7.220771 -5.185791 3.831425 -14.634104 9.858583 -19.274061 -19.085803 10.148479 -10.090324 -10.808110 -2.879554 -1.229273 11.944270 -3.479396 4.794660 -1.003478 0.555381 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy(queueEntry**, queueEntry**, queueEntry**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy_backward(queueEntry**, queueEntry**, queueEntry**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a(queueEntry**, queueEntry**, queueEntry**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__miter_base(queueEntry**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_wrap(queueEntry** const&, queueEntry**) = -0.094004 0.019219 0.230993 -0.225112 0.187042 -0.030752 0.085428 -0.093290 -0.252681 -0.122523 -0.046565 -0.124925 -0.094709 0.319760 -0.118501 0.192414 0.502530 0.239633 -0.038493 -0.218610 0.268158 -0.426262 0.432342 0.459415 -0.369990 0.034875 0.228867 0.286762 0.191823 0.338604 -0.233154 -0.057474 0.126169 -0.274716 0.177918 -0.444607 0.047246 0.115670 0.056593 -0.621531 0.040546 -0.138967 0.153557 -0.010648 -0.043617 0.287061 0.307364 0.264572 -0.109584 0.190091 0.261261 0.026773 0.061662 0.103396 0.112779 0.246852 0.360646 0.052262 -0.134540 0.045806 -0.037519 -0.415352 0.163016 0.303221 0.438937 -0.028649 0.034712 0.101136 0.004142 0.036669 0.142589 0.078950 -0.083405 0.017798 0.154701 -0.644639 0.168900 -0.779599 -0.105484 -0.950734 -0.224235 -0.250069 0.136642 -0.170907 0.214451 0.210247 0.384848 0.010318 0.109316 0.033402 0.362031 -0.385720 -0.129788 -0.150762 -0.141072 0.128338 -0.193763 -0.075030 0.194914 0.030762 -0.204689 -0.301452 0.407911 0.130580 -0.161329 -0.082359 -0.053898 0.307065 -0.446607 -0.331187 -0.336288 -0.085632 -0.163594 -0.420870 0.321795 -0.258513 0.419796 0.049303 -0.045832 -0.368465 0.058379 0.349028 -0.068463 -0.174062 -0.222270 0.316947 0.094680 -0.049694 0.044056 -0.072181 -0.024412 0.357065 0.381243 -0.209965 -0.104629 0.171709 -0.365863 -0.061602 -0.342645 -0.174113 0.262581 -0.349164 -0.045952 0.137273 -0.218569 -0.002949 0.525284 -0.026281 0.226708 0.785391 -0.013372 0.185301 0.124011 -0.341305 0.195407 -0.011175 -0.000115 0.199684 0.292826 0.058845 -0.512820 -0.296735 0.006983 0.318142 0.226080 -0.344711 -0.409065 -0.239731 0.004376 0.171450 -0.025376 0.059458 -0.148025 -0.212432 -0.066191 -0.015831 0.594363 -0.164054 -0.114908 0.060596 -0.085086 -0.346777 -0.633221 -0.106649 -0.265682 0.040668 -0.227608 -0.040820 0.129107 0.389632 -0.852524 0.348853 -0.277628 -0.134836 0.304871 -0.049532 -0.079772 -0.629323 0.058994 0.217252 0.411446 -0.041817 0.072536 0.153074 -0.337350 -0.038135 -0.075236 0.205007 -0.183565 0.176354 0.134165 -0.342014 -0.203292 0.014296 0.068804 -0.196446 0.049255 0.153905 0.064642 -0.706442 0.303600 -0.134490 -0.129007 0.287046 0.057879 0.140413 -0.368228 -0.332601 0.155942 0.097753 0.026009 -0.261081 0.000426 0.304311 -0.182946 -0.141232 -0.150793 -0.364421 0.067760 -0.219567 0.110135 0.159668 0.045596 0.345872 0.056895 -0.109158 -0.327838 0.201510 -0.248805 -0.238879 -0.077018 -0.127425 -0.094124 0.304681 0.510783 0.091867 0.101830 0.155542 0.455077 -0.362521 -0.187118 0.244811 0.236619 -0.112639 0.160108 0.258484 -0.418829 -0.233077 -0.140303 -0.137935 0.129883 -0.190660 0.258740 -0.250108 0.106671 0.118972 0.045783 -0.097718 0.255335 0.046769 0.056021 -0.063588 0.450504 0.573211 -0.193256 0.004564 -0.211116 0.067630 -0.436274 -0.177557 -0.066334 0.242864 -0.179586 0.138090 0.104633 0.295406 0.036230 0.005971 0.008597 -0.171667 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a1(queueEntry**, queueEntry**, queueEntry**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_base(queueEntry**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a2(queueEntry**, queueEntry**, queueEntry**) = -0.449509 0.049402 0.452496 -1.067446 0.848479 0.312131 0.329773 -0.414432 -0.844442 -0.422050 0.053123 -0.854037 -0.535591 1.178258 -0.485025 0.638435 1.771441 0.406164 -0.302685 -0.507652 1.107846 -0.576300 1.634502 1.517581 -1.327312 -0.066492 0.669219 0.823938 0.489292 0.544021 -0.415500 -0.577520 0.478439 -0.910414 0.295408 -0.996665 0.227189 0.090635 0.449951 -1.838321 0.201218 -0.434559 -0.017189 -0.177271 -0.324185 0.686269 1.227935 1.063550 -0.572757 0.241802 1.105928 0.308697 -0.141275 0.336485 0.126926 0.300999 0.532668 0.323180 -0.402368 -0.310333 -0.142747 -0.758045 0.358514 1.209945 1.471258 0.084124 0.050326 0.624413 0.199032 0.207563 0.385279 0.291629 0.044776 0.241493 0.682044 -1.811323 0.026478 -2.740729 -0.350241 -2.945146 -0.799594 -0.620813 0.514538 -0.581025 0.622514 0.369766 1.343522 0.093094 0.237375 0.812717 1.464004 -1.169213 -0.501246 -0.858174 -0.731156 0.475566 -0.666960 0.116567 0.611778 0.136299 -0.940415 -0.920609 0.633792 0.380025 -0.507075 -0.717932 0.066754 0.924325 -1.096134 -0.781695 -0.861566 0.253429 -0.241704 -1.850255 0.174951 -0.795116 1.359358 -0.001032 -0.258270 -1.199356 0.090985 0.976363 -0.416399 -0.567835 -0.313383 0.965278 0.696965 0.157187 0.213900 -0.091751 0.253843 1.502083 1.051345 -0.750665 -0.296137 0.165978 -0.911500 -0.051105 -1.054889 -0.416085 0.903737 -1.142997 0.284210 0.839870 -0.744804 -0.396792 1.525866 -0.192401 0.725036 3.395528 -0.099748 0.968788 0.615941 -1.266026 0.485587 -0.329005 -0.155077 0.476792 0.820525 0.298349 -1.622735 -1.088108 0.498189 1.200178 0.873103 -1.340754 -0.761326 -0.406893 -0.048526 0.031234 -0.153207 0.329915 -0.319379 -0.756205 -0.278686 0.768494 2.003746 -0.539174 -0.694426 0.459184 0.523878 -0.596722 -1.528347 -0.475438 -0.847111 0.169481 0.163006 0.005644 0.736669 1.553684 -2.778469 1.001743 -0.323146 -0.184038 0.805390 0.207375 -0.726928 -1.663606 0.250597 1.002345 1.215373 -0.151966 0.238022 0.305844 -1.099795 -0.101824 0.110868 0.511687 -0.484304 0.539689 0.274656 -0.966043 -0.822314 0.032055 -0.179017 -0.384291 0.009782 0.636631 -0.039601 -2.427578 1.386699 -0.324346 -0.445269 0.484085 -0.435112 0.957963 -1.309860 -1.315094 0.709451 0.025285 -0.108647 -0.661825 0.168295 0.958338 -0.120490 0.253867 -0.730909 -1.452805 0.606341 -0.418049 0.770690 0.516009 0.291887 1.208895 -0.443697 -0.331857 -1.289151 -0.142087 -0.085445 -0.165200 -0.921385 -0.450165 -0.269369 1.090013 1.428510 -0.150769 -0.242536 0.200741 1.238561 -1.436744 -0.490521 0.804502 0.953531 -0.884489 0.450943 0.955401 -1.294235 -0.571176 -0.675966 -0.226800 -0.079543 -1.070369 0.621101 -0.491084 0.456090 0.441204 0.096550 -0.162625 0.726730 0.289639 0.340303 0.007219 1.346920 1.935090 -0.720588 -0.248602 -1.115067 0.461164 -1.705549 -1.334013 0.393615 0.126743 -0.532272 0.242522 0.129733 1.125910 -0.068819 0.053732 -0.178538 -0.158020 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move::__copy_m(queueEntry**, queueEntry**, queueEntry**) = -1.116891 -0.861914 -0.104587 -2.815243 2.050643 0.888064 0.853362 -1.094547 -2.367907 -0.305383 0.640003 -2.394337 -0.371316 2.546771 -0.915183 2.485844 3.913357 0.661815 -0.981249 -0.695538 2.586977 -0.395155 3.632646 3.208075 -2.505978 -0.266382 0.455172 1.523490 0.450614 0.297131 -0.658365 -1.323497 1.024675 -2.836009 -0.287399 -1.737088 0.568118 0.695391 2.325300 -3.705250 0.805827 -0.766186 0.346681 -0.644737 -1.075407 0.256165 2.049212 2.477692 -1.100682 0.653926 2.579045 0.472243 -0.455404 0.787751 0.093081 0.883551 0.172216 0.491595 -0.954007 -1.333029 -0.202899 -0.449906 1.044936 2.385145 2.904349 0.252528 -0.159061 1.924969 1.014688 0.383183 1.419059 0.475848 -0.625476 -0.098495 1.344036 -3.907517 -0.318630 -5.582268 -0.683539 -5.188954 -1.792977 -0.405970 1.436098 -0.893964 1.754702 0.704058 2.744276 -0.386540 0.056437 2.113360 2.608570 -2.613720 -1.313155 -1.964730 -1.726960 0.947826 -1.222521 0.088707 1.568310 0.602606 -2.231938 -1.526777 1.015387 1.149123 -0.958773 -2.337295 0.847366 1.579183 -1.643100 -2.267339 -0.939898 1.961801 -0.605654 -3.956222 -0.153435 -1.687224 1.982818 -0.215195 -0.838501 -2.861736 0.002671 1.536612 -1.219667 -1.261149 -0.304499 1.571490 1.766932 0.827896 0.692447 -0.084088 0.579833 4.200460 1.365060 -2.036522 -0.370081 0.281391 -1.297038 0.470159 -2.083184 -1.360110 1.268425 -2.872679 1.106615 2.014635 -1.668278 -0.645015 3.122334 0.527050 1.087503 7.601438 0.021913 2.779439 2.027361 -2.496715 1.113210 -1.145701 0.078734 0.884122 1.429246 -0.050631 -3.374429 -2.534584 1.270607 2.491772 2.152168 -2.771710 -1.541473 -0.418787 0.079052 0.259440 -0.691334 0.843917 -0.141819 -1.845691 -0.436318 2.126720 4.738383 -0.877850 -0.682660 1.420680 1.994796 -1.277851 -3.063162 -1.483702 -2.946782 0.327185 0.914611 0.446450 1.691603 3.519188 -5.122721 1.918722 -0.478869 0.161532 1.675942 1.034161 -2.322149 -3.466347 -0.265121 1.709827 2.822137 -0.933453 0.925649 1.031135 -2.057784 -0.141609 0.469337 0.362247 -0.779212 0.973129 0.204674 -1.770900 -1.115839 0.743310 -1.005116 -0.684279 0.185194 1.627645 0.276555 -4.161280 2.579594 -0.339454 -1.167235 1.279248 -1.273086 2.780002 -2.553278 -2.399190 1.944246 0.156124 0.309508 -0.910812 0.747358 1.909256 0.100095 1.080101 -1.551200 -2.914226 1.468184 -0.590816 2.084070 1.106541 -0.206275 1.559921 -1.718841 -0.662548 -2.546263 -1.118791 -0.579675 0.226002 -2.458767 -1.125745 -0.585797 2.588870 2.295197 -0.168261 -1.295034 0.366784 2.448096 -3.041431 -0.486963 1.807639 1.531298 -2.540595 0.606332 2.312618 -3.017798 -0.362765 -1.336488 0.200245 -0.537675 -2.208626 1.518568 -0.083006 1.406904 0.276890 0.205832 0.329257 1.347010 0.982155 0.868513 0.210086 3.137059 2.946531 -0.668622 -1.172832 -2.648016 0.780398 -3.447680 -3.190530 1.300034 0.173600 -2.095651 0.576368 0.460726 2.975072 -0.324702 0.320573 -0.639671 -0.007026 +PE-benchmarks/snake-ladder.cpp__void std::__copy_move::__assign_one(queueEntry**, queueEntry**) = -0.171884 0.050852 0.341734 -0.393905 0.317832 0.078100 0.123261 -0.195829 -0.347576 -0.158248 -0.050141 -0.168938 -0.147673 0.499203 -0.218607 0.269230 0.764142 0.295944 -0.088650 -0.303474 0.489791 -0.524849 0.669199 0.669323 -0.581636 -0.004320 0.441817 0.406399 0.314245 0.438573 -0.355937 -0.115276 0.204254 -0.454548 0.227288 -0.623860 0.097837 0.095820 0.138491 -0.856437 0.064975 -0.323967 0.034488 -0.034839 -0.108680 0.405426 0.493706 0.414699 -0.216748 0.184873 0.441672 0.103551 -0.026209 0.146545 0.142900 0.335987 0.478542 0.230044 -0.150936 -0.005377 -0.072776 -0.495366 0.240901 0.503120 0.658381 -0.003478 0.080206 0.217743 0.022768 0.049250 0.173025 0.104188 -0.065267 0.090497 0.261726 -1.021463 0.157080 -1.275295 -0.185902 -1.367077 -0.298250 -0.370101 0.088795 -0.426243 0.337057 0.306068 0.563146 0.043168 0.153567 0.151650 0.596421 -0.592019 -0.190800 -0.301587 -0.275993 0.164728 -0.303223 -0.032325 0.280831 -0.016114 -0.329161 -0.517455 0.492872 0.230569 -0.222827 -0.227787 -0.058799 0.474202 -0.585136 -0.460047 -0.464277 -0.099946 -0.257764 -0.704027 0.321455 -0.415666 0.752107 0.023791 -0.072378 -0.617187 0.071202 0.608169 -0.122057 -0.324088 -0.095775 0.462107 0.239539 -0.023844 0.037332 -0.147655 0.002357 0.583609 0.634764 -0.306078 -0.151837 0.169874 -0.564533 -0.106141 -0.530296 -0.201820 0.437100 -0.491410 -0.020253 0.335946 -0.317145 -0.051187 0.950593 -0.089355 0.368931 1.432222 -0.045679 0.297661 0.168396 -0.567379 0.232604 -0.042446 -0.029247 0.273769 0.413396 0.116507 -0.906467 -0.456678 0.085536 0.476458 0.345931 -0.616702 -0.565659 -0.357100 -0.035974 0.168578 -0.090443 0.102359 -0.256508 -0.312201 -0.127340 0.098932 0.908025 -0.309831 -0.301195 0.128063 -0.038924 -0.462813 -0.899920 -0.185298 -0.376366 0.096651 -0.175534 -0.070629 0.268244 0.616641 -1.328159 0.480977 -0.373528 -0.212515 0.423591 0.002868 -0.160158 -0.813162 0.141500 0.394711 0.563648 -0.023640 0.089839 0.203932 -0.500038 -0.048899 -0.067109 0.319066 -0.246826 0.237134 0.232293 -0.533197 -0.371679 0.050872 0.065232 -0.293130 0.075305 0.231227 -0.078948 -1.157393 0.544650 -0.175405 -0.156286 0.392944 -0.013015 0.287094 -0.575853 -0.569038 0.287175 0.156347 0.096043 -0.357267 0.030873 0.487968 -0.170778 -0.054489 -0.302258 -0.669727 0.083118 -0.294844 0.219476 0.210516 0.145471 0.590455 -0.120099 -0.122018 -0.613904 0.203786 -0.217200 -0.193254 -0.245179 -0.288524 -0.109231 0.492492 0.719181 0.041027 0.098385 0.164519 0.640851 -0.656876 -0.227481 0.345716 0.541057 -0.274925 0.167872 0.378168 -0.599655 -0.368687 -0.186110 -0.221148 0.107103 -0.370987 0.328592 -0.334112 0.188278 0.185438 0.105295 -0.108133 0.353887 0.088327 0.160810 -0.044364 0.588696 0.985513 -0.353428 -0.090889 -0.369750 0.163415 -0.705164 -0.422098 0.020364 0.223973 -0.215445 0.182278 0.125045 0.473775 0.016962 0.035194 0.046417 -0.241725 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a(queueEntry**, queueEntry**, queueEntry**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a1(queueEntry**, queueEntry**, queueEntry**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a2(queueEntry**, queueEntry**, queueEntry**) = -0.479063 0.046100 0.457175 -1.170073 0.923984 0.448012 0.368742 -0.520663 -0.914311 -0.401128 0.105331 -1.007672 -0.554794 1.279645 -0.535344 0.744776 1.886788 0.393321 -0.379853 -0.503158 1.151633 -0.440791 1.776239 1.624535 -1.403673 -0.063286 0.622281 0.779145 0.502479 0.562396 -0.448814 -0.683388 0.562443 -0.930387 0.278421 -0.970719 0.213697 0.073241 0.572171 -1.932180 0.233555 -0.392056 0.021264 -0.215614 -0.324000 0.661723 1.327808 1.140465 -0.518377 0.226133 1.148742 0.371103 -0.138461 0.356193 0.190178 0.309848 0.599949 0.231439 -0.434952 -0.382986 -0.158944 -0.661598 0.312365 1.311107 1.559228 0.112320 0.030183 0.654110 0.261940 0.218655 0.414298 0.321642 0.058127 0.315533 0.650718 -1.856525 0.058270 -2.753273 -0.367167 -2.979852 -0.862747 -0.595287 0.533837 -0.521540 0.692481 0.265306 1.431590 0.094479 0.194915 0.770852 1.592818 -1.278246 -0.536876 -0.886549 -0.726652 0.459870 -0.704251 0.169246 0.625672 0.095834 -1.036304 -0.931743 0.638605 0.420101 -0.543773 -0.718802 0.125544 0.979639 -1.094834 -0.820003 -0.812269 0.341300 -0.263417 -2.000793 0.176763 -0.849561 1.282831 -0.016013 -0.310179 -1.313539 0.106913 1.013338 -0.481138 -0.630482 -0.419280 1.047475 0.802721 0.205483 0.203689 -0.055779 0.316523 1.670749 0.990162 -0.824634 -0.253247 0.112121 -0.884028 0.004416 -1.085142 -0.437908 0.878637 -1.209635 0.281262 0.942159 -0.790277 -0.321282 1.480968 -0.143441 0.724422 3.642210 -0.150549 1.094534 0.684153 -1.373632 0.515240 -0.385258 -0.169161 0.439595 0.829692 0.324320 -1.758415 -1.180297 0.596477 1.306620 0.932717 -1.410599 -0.678269 -0.400834 -0.086070 -0.048735 -0.139746 0.346189 -0.302952 -0.832100 -0.311846 0.857857 2.194808 -0.586448 -0.698668 0.502150 0.566919 -0.539742 -1.496625 -0.536788 -0.899744 0.208237 0.211791 0.057084 0.822671 1.669961 -2.843251 1.086874 -0.307569 -0.239644 0.941181 0.228161 -0.830158 -1.625737 0.229404 1.075422 1.276035 -0.195339 0.267973 0.322220 -1.181894 -0.118367 0.104902 0.498484 -0.514798 0.537577 0.341465 -1.019415 -0.847243 0.023720 -0.193690 -0.433834 -0.049475 0.706139 0.043821 -2.531709 1.497018 -0.261117 -0.474486 0.487305 -0.525397 1.046404 -1.380459 -1.348068 0.740980 -0.006782 -0.106769 -0.639309 0.180680 0.991086 -0.142100 0.412082 -0.846218 -1.517024 0.679065 -0.410996 0.870027 0.556551 0.307742 1.173588 -0.480966 -0.339414 -1.317406 -0.314874 -0.051564 -0.085815 -1.035241 -0.372172 -0.309892 1.184379 1.467458 -0.176274 -0.349330 0.154032 1.247594 -1.546404 -0.435085 0.853218 0.972448 -1.015582 0.390771 1.015793 -1.331385 -0.556167 -0.698934 -0.276205 -0.175871 -1.152275 0.663509 -0.443960 0.518754 0.420983 0.088510 -0.169216 0.752351 0.294234 0.310048 0.074079 1.423309 1.929012 -0.702283 -0.270445 -1.226854 0.536679 -1.802172 -1.464792 0.493635 0.040607 -0.650683 0.213439 0.113362 1.225603 -0.070184 0.072204 -0.222476 -0.119823 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward::__copy_move_b(queueEntry**, queueEntry**, queueEntry**) = -1.264659 -0.878422 -0.081187 -3.328381 2.428168 1.567468 1.048206 -1.625702 -2.717255 -0.200769 0.901042 -3.162512 -0.467334 3.053709 -1.166778 3.017547 4.490091 0.597599 -1.367090 -0.673069 2.805911 0.282392 4.341331 3.742844 -2.887781 -0.250350 0.220485 1.299526 0.516550 0.389008 -0.824935 -1.852837 1.444696 -2.935875 -0.372337 -1.607357 0.500658 0.608423 2.936398 -4.174545 0.967510 -0.553675 0.538947 -0.836455 -1.074480 0.133438 2.548576 2.862263 -0.828786 0.575582 2.793117 0.784271 -0.441339 0.886291 0.409340 0.927796 0.508620 0.032887 -1.116926 -1.696290 -0.283884 0.032332 0.814193 2.890956 3.344197 0.393509 -0.259778 2.073454 1.329227 0.438642 1.564153 0.625917 -0.558719 0.271704 1.187402 -4.133524 -0.159669 -5.644989 -0.768173 -5.362488 -2.108742 -0.278336 1.532594 -0.596536 2.104535 0.181760 3.184615 -0.379615 -0.155866 1.904034 3.252641 -3.158885 -1.491306 -2.106605 -1.704441 0.869345 -1.408977 0.352102 1.637779 0.400280 -2.711380 -1.582450 1.039450 1.349502 -1.142266 -2.341646 1.141313 1.855753 -1.636599 -2.458881 -0.693418 2.401154 -0.714218 -4.708909 -0.144375 -1.959452 1.600186 -0.290103 -1.098051 -3.432654 0.082312 1.721490 -1.543364 -1.574384 -0.833981 1.982477 2.295716 1.069377 0.641392 0.095772 0.893232 5.043791 1.059148 -2.406368 -0.155633 0.012105 -1.159680 0.747764 -2.234447 -1.469229 1.142924 -3.205871 1.091878 2.526079 -1.895640 -0.267463 2.897840 0.771853 1.084431 8.834847 -0.232095 3.408166 2.368422 -3.034747 1.261475 -1.426970 0.008313 0.698139 1.475079 0.079224 -4.052828 -2.995532 1.762049 3.023986 2.450240 -3.120931 -1.126187 -0.388495 -0.108664 -0.140403 -0.624029 0.925289 -0.059682 -2.225166 -0.602119 2.573537 5.693691 -1.114222 -0.703874 1.635511 2.210001 -0.992952 -2.904552 -1.790453 -3.209945 0.520969 1.158537 0.703647 2.121614 4.100574 -5.446631 2.344378 -0.400985 -0.116499 2.354900 1.138093 -2.838297 -3.277000 -0.371084 2.075210 3.125447 -1.150318 1.075404 1.113016 -2.468280 -0.224326 0.439505 0.296232 -0.931682 0.962569 0.538717 -2.037760 -1.240486 0.701636 -1.078481 -0.931990 -0.111090 1.975188 0.693668 -4.681935 3.131191 -0.023311 -1.313319 1.295349 -1.724509 3.222207 -2.906275 -2.564063 2.101892 -0.004211 0.318899 -0.798232 0.809282 2.072996 -0.007956 1.871173 -2.127745 -3.235324 1.831805 -0.555553 2.580757 1.309251 -0.126999 1.383386 -1.905184 -0.700334 -2.687536 -1.982726 -0.410266 0.622925 -3.028046 -0.735781 -0.788412 3.060696 2.489940 -0.295786 -1.829002 0.133240 2.493262 -3.589733 -0.209779 2.051217 1.625887 -3.196061 0.305476 2.614580 -3.203548 -0.287721 -1.451328 -0.046784 -1.019315 -2.618155 1.730608 0.152615 1.720226 0.175781 0.165633 0.296301 1.475112 1.005131 0.717239 0.544384 3.519002 2.916142 -0.577094 -1.282048 -3.206951 1.157972 -3.930794 -3.844423 1.800137 -0.257080 -2.687709 0.430952 0.378874 3.473535 -0.331529 0.412931 -0.859362 0.183957 +PE-benchmarks/snake-ladder.cpp__std::deque >::empty() const = -0.178614 0.525037 0.778518 -0.803974 0.880454 0.997870 0.186322 -0.410164 -0.568377 -0.103683 -0.062039 -1.054328 -0.589954 0.906531 -0.438553 0.145868 1.102368 0.068441 -0.356537 0.061467 0.333768 0.372157 1.048815 0.902144 -0.775103 0.118119 0.158182 0.312424 -0.255392 1.202119 -0.741611 -1.156812 0.080654 0.243019 0.104293 -0.216204 -0.146610 -0.342636 0.137858 -1.135067 0.143618 0.488580 -0.153019 -0.254064 0.080267 -0.269287 1.312017 0.570341 0.051753 -0.228121 0.392187 0.595475 -0.004668 0.138192 0.616476 0.173009 1.125457 -0.154533 -0.363281 -0.271460 -0.276403 0.106828 -0.308730 0.901708 0.820895 0.335310 -0.128062 -0.251629 -0.106593 0.087432 -0.056331 0.265787 0.147602 0.822793 0.056436 0.108814 0.475668 -0.534078 0.051232 -0.454264 -0.552631 -0.292145 0.143364 0.679208 0.305714 -0.436004 0.957641 -0.163902 0.128152 0.041504 1.336598 -0.681005 -0.243823 -0.415594 -0.676365 0.055513 -0.221996 0.080153 -0.353517 -0.143229 -0.715664 -0.552260 0.167613 0.190255 -0.321957 0.431903 0.097020 0.602591 -0.580257 -0.127476 -0.335191 0.266812 -0.012784 -1.269502 -0.809955 -0.347803 -0.108797 0.001645 -0.474061 -0.917130 0.388356 0.579329 -0.532767 -0.213915 -0.687831 0.814533 0.460813 0.032122 -0.023679 -0.235737 0.483503 0.755130 0.119273 -0.470491 0.144092 -0.227333 -0.145678 -0.095302 -0.334357 0.046585 -0.496648 -0.470906 0.099046 0.761530 -0.489383 0.215760 -0.768282 -0.204404 0.351789 2.507700 -0.591262 0.721294 0.059485 -1.126887 0.503951 0.020841 -0.476262 -0.279435 0.262575 0.676484 -0.849587 -0.631632 0.791130 0.942326 0.541002 -0.514967 0.510618 -0.124061 -0.277357 -0.223849 0.365974 0.088176 -0.184947 -0.589545 -0.412074 0.488527 1.604527 -0.195081 -1.543874 0.444850 0.123807 0.226444 0.117810 -0.157197 -0.136182 0.198482 0.336330 -0.226500 0.715969 1.060810 -1.810806 0.863466 0.150673 -0.787532 1.185091 -0.226614 -0.383521 0.259028 0.052827 0.981300 0.808597 0.166683 -0.218581 -0.265215 -0.710386 -0.168764 0.082526 0.389274 -0.493924 0.410506 0.440846 -1.065401 -0.606602 -0.834963 -0.095222 -0.334307 -0.862537 0.341374 -0.091898 -1.685982 1.275208 0.513632 0.067797 -0.067762 -0.443055 0.189034 -0.680787 -0.977543 0.225834 -0.288619 -0.201217 0.123825 -0.119356 0.368620 0.290247 0.804717 -0.873703 -0.853786 0.503359 0.118981 0.810715 0.368131 0.459705 0.272112 0.623661 -0.111734 -0.388905 -0.618839 0.863006 0.149422 -0.617961 0.207027 -0.497289 0.678641 0.742714 -0.221259 -0.354477 -0.841595 0.595927 -0.193912 0.091862 0.482866 -0.432836 -0.835019 -0.315768 0.632328 -0.225678 -0.412293 -0.512697 -0.315180 -0.701349 -0.741427 0.103450 -0.213633 0.118261 0.496428 -0.262612 -0.631248 0.144521 0.001145 -0.220716 0.325190 0.742819 0.276720 -0.265455 0.628743 -0.756284 0.565475 -1.084771 -0.909403 0.423335 -0.754951 -0.577492 -0.255160 -0.218682 0.536892 -0.209695 0.418711 0.023326 0.066069 +PE-benchmarks/snake-ladder.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/snake-ladder.cpp__std::deque >::front() = -0.236992 0.277955 0.470625 -0.393751 0.540527 0.200058 0.229451 -0.044235 -0.430293 -0.489912 -0.105979 -0.636905 -0.742311 0.788557 -0.312233 0.076512 1.081401 0.363831 -0.075366 -0.213311 0.375015 -0.314512 0.998383 0.905297 -0.746020 0.019147 0.242401 0.440114 0.026550 0.728857 -0.208223 -0.748346 0.389055 -0.007516 0.313336 -0.549985 0.061746 -0.040904 -0.249651 -1.179447 0.058410 0.205286 0.026079 -0.097430 -0.023586 0.501522 0.950481 0.598174 -0.165371 0.138119 0.383869 0.285393 0.066542 0.252047 0.211429 0.003260 0.350946 -0.266562 -0.476058 -0.038159 -0.214216 -0.787484 -0.164626 0.700818 0.906674 0.082267 0.042148 0.002154 -0.254781 0.240112 0.096941 0.183045 0.375618 0.274310 0.350445 -0.322123 -0.001129 -1.076751 -0.231738 -1.825971 -0.529362 -0.565266 0.524373 0.282248 0.144082 -0.102355 0.860437 0.129330 0.230977 0.372586 1.137750 -0.621936 -0.332213 -0.467502 -0.255609 0.311930 -0.456768 0.036305 0.170696 0.028315 -0.612469 -0.523099 0.324093 0.014491 -0.281419 -0.063285 -0.112279 0.687778 -0.946085 -0.186323 -0.833545 -0.086879 0.084701 -1.110766 0.043934 -0.211607 0.502983 0.228336 -0.215490 -0.447868 0.274821 0.469964 -0.214069 -0.204094 -0.586462 0.754112 0.132186 -0.061076 0.160357 0.084680 0.165293 0.646049 0.591489 -0.316758 -0.148560 0.077730 -0.453231 -0.074213 -0.523904 -0.155296 0.303544 -0.642000 0.144466 0.349209 -0.499534 -0.291380 -0.098136 -0.280875 0.524746 1.446869 -0.226735 0.468014 0.196329 -0.841356 0.387026 -0.152802 -0.222132 0.099357 0.562569 0.393394 -0.405561 -0.591198 0.370966 0.793659 0.518461 -0.567129 -0.059280 -0.294514 0.090002 -0.149874 0.164625 0.275785 -0.141106 -0.482801 -0.195411 0.345015 1.082981 -0.302646 -0.685756 0.262707 0.150083 -0.028608 -0.544028 -0.154074 -0.068645 0.039237 0.081529 -0.114134 0.306864 0.947968 -1.526655 0.758218 -0.070034 -0.232868 0.541382 -0.102559 -0.272938 -0.736384 0.190662 0.780985 0.783671 0.161664 0.048130 -0.055883 -0.724477 -0.121570 0.043719 0.506697 -0.296700 0.379434 0.137461 -0.656268 -0.635245 -0.456831 0.008225 -0.243357 -0.249948 0.324785 0.350527 -1.578694 0.961120 -0.156592 -0.235310 0.036607 -0.060059 0.373639 -0.784879 -0.953030 0.251968 -0.302683 -0.583135 -0.378072 0.001701 0.468799 -0.089158 0.012190 -0.275508 -0.715961 0.627910 -0.041764 0.466557 0.306774 0.372599 0.861115 0.377345 -0.383736 -0.463341 -0.214522 0.273108 -0.498557 -0.341119 0.173578 -0.221620 0.582306 1.025241 -0.019106 -0.182928 -0.101440 0.796056 -0.563166 -0.370067 0.650848 0.196913 -0.255440 0.411225 0.687098 -0.671622 -0.564359 -0.520447 -0.101157 -0.094853 -0.681426 0.183473 -0.587229 0.105777 0.461602 -0.038351 -0.462041 0.357784 0.091137 -0.056345 -0.072872 0.866593 0.941195 -0.588176 0.387304 -0.585116 0.325325 -1.060597 -0.665422 0.113236 0.007303 -0.183055 0.087865 -0.038688 0.405620 -0.086038 0.002611 -0.222240 -0.107953 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::operator*() const = -0.123077 0.225392 0.274166 -0.343964 0.398271 0.352908 0.086009 -0.235578 -0.231895 -0.130017 -0.067307 -0.282133 -0.207557 0.425753 -0.234330 0.174848 0.587781 0.105968 -0.070452 -0.118856 0.293246 -0.081703 0.575746 0.485162 -0.444234 0.015046 0.329864 0.187070 0.018350 0.479682 -0.325322 -0.459486 0.158813 -0.166888 0.068299 -0.308627 0.015340 -0.075509 0.137863 -0.601169 0.050550 -0.142102 -0.153359 -0.066477 -0.066159 0.019557 0.576456 0.312948 -0.077722 0.048001 0.297870 0.321537 -0.089772 0.107172 0.187172 0.208395 0.377282 -0.031450 -0.117961 -0.085157 -0.106023 -0.132396 -0.015081 0.451651 0.462427 0.079170 0.025860 0.095506 -0.119323 0.030982 0.014166 0.111206 0.020472 0.298133 0.106285 -0.474466 0.082230 -0.715441 -0.124626 -0.696368 -0.238319 -0.269197 -0.065989 -0.027399 0.271790 0.135215 0.478559 0.002333 0.130304 0.126139 0.614164 -0.469253 -0.131095 -0.225867 -0.273939 0.047377 -0.188663 0.048577 -0.096678 -0.065971 -0.307730 -0.463030 0.222731 0.163024 -0.163892 -0.140144 -0.008807 0.320688 -0.461051 -0.241821 -0.309973 -0.005395 -0.173105 -0.624191 -0.124869 -0.216698 0.427489 0.003403 -0.128494 -0.587388 0.132515 0.491765 -0.164270 -0.274039 -0.029161 0.297246 0.260119 0.004732 0.012275 -0.156042 0.143903 0.566946 0.348648 -0.214198 -0.051505 -0.016011 -0.232170 -0.108298 -0.278306 -0.037171 -0.019142 -0.349980 0.127931 0.441037 -0.246808 -0.040153 0.271628 -0.199386 0.278206 1.228205 -0.192774 0.270785 0.064166 -0.592897 0.061244 -0.126843 -0.169219 0.014792 0.234800 0.257837 -0.539112 -0.337398 0.257156 0.416757 0.270542 -0.362706 -0.120955 -0.198281 -0.076401 0.007113 0.017540 0.075441 -0.193748 -0.275885 -0.162404 0.187213 0.815376 -0.187613 -0.376127 0.196732 0.077469 -0.115037 -0.278253 -0.130853 -0.223321 0.103138 0.158311 -0.099602 0.264472 0.521088 -1.011992 0.374145 -0.159526 -0.277536 0.307323 0.027872 -0.142004 -0.150445 0.119612 0.461335 0.398838 0.023099 0.153665 -0.020467 -0.372552 -0.063271 0.006167 0.266425 -0.230909 0.184138 0.276215 -0.597106 -0.352425 -0.059692 0.021293 -0.236952 -0.149500 0.162622 -0.060916 -1.020900 0.592305 0.044247 -0.034330 0.178952 -0.123539 0.298742 -0.422547 -0.513160 0.241659 -0.029091 0.071742 0.014631 -0.013120 0.320552 0.027687 0.247164 -0.324203 -0.487114 0.089253 0.020093 0.260350 0.165815 0.246475 0.359340 -0.230821 -0.075573 -0.376703 -0.111402 0.198348 -0.032721 -0.257016 -0.037591 -0.150514 0.406864 0.515752 -0.038083 -0.122636 -0.083495 0.381567 -0.390651 0.025719 0.260562 0.332117 -0.369678 -0.049314 0.305171 -0.276074 -0.296537 -0.165638 -0.057310 -0.153427 -0.387590 0.108994 -0.228803 0.102211 0.249481 0.008481 -0.220212 0.197696 0.035473 0.081766 0.054117 0.349084 0.483251 -0.231001 0.077169 -0.334159 0.169371 -0.590628 -0.487865 0.138269 -0.097346 -0.183942 -0.004102 -0.105349 0.336666 -0.085343 0.212705 0.069908 -0.142053 +PE-benchmarks/snake-ladder.cpp__std::deque >::pop_front() = -1.083481 2.092742 2.701119 -3.091656 4.150992 4.510596 0.850438 -1.187822 -1.936286 -0.700474 -0.897794 -3.613501 -2.963891 4.226934 -1.629449 1.388443 5.029811 0.332677 -1.179829 0.495376 2.603750 0.708992 4.552547 3.006824 -3.489791 -0.051541 1.367618 1.503845 -1.243152 5.022477 -3.108448 -4.884088 0.832684 -0.253956 0.719439 -1.507726 0.250373 -1.163724 0.344737 -4.776505 0.485077 1.603958 -1.537322 -1.033225 -0.471234 -1.003827 5.440138 2.850059 -0.615235 -1.284270 1.714553 2.048468 -0.601122 0.990181 1.656877 1.187835 2.809176 -0.014795 -2.167414 -1.313114 -1.199937 -0.707528 -0.764810 3.521530 3.749546 0.914826 -0.009454 0.642116 -1.037225 0.396396 -0.345528 0.791972 1.254773 2.518194 1.234676 -0.641806 0.271467 -3.066915 -0.532722 -3.350221 -2.141425 -2.370201 -0.201639 1.892808 1.854859 -2.087345 4.274289 -0.739830 0.946076 1.173271 6.034976 -3.761087 -1.270211 -3.793436 -2.420295 0.289814 -1.667532 -0.433361 -0.260677 -1.407153 -2.987573 -3.229045 0.401922 1.082991 -1.097533 -0.248984 -0.225118 3.371427 -2.696388 -1.607976 -2.717963 0.741145 -0.903820 -5.801731 -2.745029 -0.739254 -0.000488 0.241958 -0.946377 -4.527419 1.565774 3.727736 -1.988868 -2.133152 -0.950880 4.069087 2.182032 -0.312589 0.575203 -0.654548 1.668389 3.872057 2.582425 -1.542963 -0.473185 -0.442308 -1.370550 -0.813149 -1.934591 -0.069736 -1.102995 -2.955975 -0.089740 4.088793 -2.025720 1.036329 -1.599493 -1.385085 2.588482 11.095490 -2.191343 2.320437 -0.282506 -5.258185 2.947206 -0.069110 -2.249658 -0.973831 1.299258 2.682677 -4.799978 -2.913184 3.258057 3.649279 2.568893 -2.874705 1.167169 -1.683338 -0.567038 -1.178084 0.406090 1.629045 -0.902879 -2.494382 -1.488374 2.062432 7.295255 -2.145466 -6.290470 2.860340 1.026214 0.177226 -1.323880 -1.324290 -1.550896 0.005831 1.629482 -1.161707 2.712420 4.919764 -6.826170 3.614398 0.214823 -3.360441 4.347458 -1.063882 -1.054315 0.138578 0.305912 4.843016 3.640584 0.773872 -0.415749 -1.570890 -3.033461 -0.136528 0.573286 2.152602 -1.130636 1.372986 0.855475 -4.395758 -3.173144 -2.664609 -1.004000 -1.860570 -2.608614 1.094754 -0.115105 -7.190930 5.859090 1.126643 0.309068 0.771753 -1.159081 1.881073 -3.198680 -5.038632 1.921207 -0.681809 -0.746896 0.151767 0.136413 2.312363 1.565948 2.157339 -3.041565 -5.429303 1.950558 0.772014 3.076373 1.270815 2.538138 2.455499 2.245168 -1.371246 -2.641145 -3.352389 2.891507 0.564829 -2.679932 -0.846043 -1.292795 3.699772 3.509919 -0.721826 -1.189994 -3.653033 2.889695 -2.308040 0.123429 2.926873 -0.516628 -3.718234 -1.468633 3.494099 -1.537687 -2.750231 -2.036642 -0.124666 -2.572514 -3.834140 -0.424628 -1.934268 0.268538 2.553147 -0.788794 -2.426744 0.605654 0.587873 -0.495153 0.011345 3.760265 2.174878 -2.391243 1.741031 -3.157808 2.465474 -5.225726 -4.254114 1.892072 -2.317475 -1.595359 -0.264506 0.473289 2.104256 -1.443726 1.587484 0.257977 -1.530868 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_pop_front_aux() = -0.917547 2.128899 3.288454 -3.220953 3.627391 4.319015 0.748801 -1.435504 -1.994920 -0.374694 -0.594584 -3.527237 -2.524624 3.780098 -1.824525 0.533789 4.790263 0.464309 -1.347011 0.248779 1.968733 1.129975 4.299493 3.524799 -3.310885 0.089201 1.332255 1.407498 -0.844550 4.803587 -3.348459 -4.428053 0.539610 0.394163 0.672361 -1.359828 -0.224466 -1.499286 0.292971 -4.597095 0.539004 1.192210 -1.595366 -1.012755 0.056649 -0.536911 5.381032 2.425576 -0.237912 -1.330966 1.611646 2.315398 -0.508186 0.652110 2.149658 1.066859 3.931089 0.462723 -1.525839 -1.144224 -1.238599 0.045834 -0.877502 3.666381 3.441951 1.321780 -0.176194 -0.492920 -0.497049 0.240596 -0.394876 0.862952 1.145509 3.127704 0.677006 -0.420483 1.208376 -2.964547 -0.171126 -2.453704 -2.022468 -1.834369 -0.056373 1.430173 1.414713 -1.928577 3.876434 -0.620248 0.884842 0.630102 5.620084 -3.228894 -1.058680 -2.622343 -2.684368 0.132774 -1.171785 0.182578 -0.870989 -1.212810 -2.898130 -2.884451 0.499559 1.000048 -1.146009 0.942534 0.170665 2.917372 -2.220457 -0.836080 -2.065372 0.698327 -0.434810 -5.380488 -3.011266 -1.386939 0.512311 0.042471 -1.601493 -4.147193 1.528769 3.307921 -2.061394 -1.465932 -1.430428 3.794715 2.079661 -0.150723 -0.014938 -1.061161 1.683704 3.131672 1.809442 -1.699318 0.172891 -0.737893 -1.450688 -0.857733 -1.840726 0.256884 -1.142380 -2.115789 0.061227 3.610980 -2.011124 0.975809 -1.476186 -1.108100 2.069243 11.183617 -2.417826 2.546921 -0.183836 -4.864357 2.428751 0.190264 -1.980043 -1.019968 1.271373 2.770082 -4.900577 -2.628886 3.078538 3.665252 2.290118 -2.795365 1.641036 -1.235190 -1.064932 -1.108642 0.915412 0.746940 -1.028496 -2.331653 -1.641045 2.051048 6.801542 -1.567823 -6.731713 1.957576 0.466336 0.641653 -0.420610 -0.860755 -0.622706 0.635226 1.580280 -1.092897 2.990085 4.483192 -7.372658 3.419835 0.166787 -3.396339 4.629691 -0.857336 -1.230022 0.938253 0.505693 4.387520 3.369302 1.053737 -1.046787 -1.190244 -2.893520 -0.504450 0.425927 2.100441 -1.646179 1.499052 1.695807 -4.489824 -2.834366 -3.190201 -0.520239 -1.647201 -3.040389 1.164617 -1.101050 -7.361686 5.528237 1.734774 0.422959 0.220324 -1.650007 1.032234 -3.026840 -4.543323 1.329314 -0.628902 -0.505267 0.172919 -0.260820 2.034096 1.368035 3.000671 -3.612171 -4.812296 1.876634 0.512316 3.289781 1.280225 2.277862 2.123832 2.189139 -0.610229 -2.432563 -2.814585 3.493076 0.907732 -2.740623 -0.174123 -1.660968 3.119020 3.257576 -1.107793 -1.055717 -3.544281 2.655086 -1.764558 0.337746 2.195016 -0.511191 -3.407736 -1.478429 2.804626 -1.252536 -2.368464 -1.837034 -1.210008 -2.637192 -3.365749 0.037170 -1.481605 0.490124 2.168564 -0.710164 -2.381666 0.499177 0.184099 -0.493852 1.005300 3.035083 2.398988 -1.819736 2.043338 -3.042429 2.599091 -4.750257 -3.992986 1.793590 -2.990239 -1.749944 -0.638940 -0.284323 2.165358 -1.129045 1.551790 0.355220 -0.491497 +PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -3.368088 -3.765394 -3.132336 -8.088828 4.776645 8.455373 2.513784 -4.956102 -9.209358 -0.863578 3.658552 -9.567930 -0.000324 9.560112 -2.644264 9.391352 12.681507 1.132586 -5.390719 1.005225 9.933501 -0.971770 11.815248 10.643008 -5.970323 -0.767447 -1.876830 4.540520 0.937803 2.348793 2.080199 -4.667771 3.770865 -10.477926 -4.322393 -6.612625 1.528902 3.742573 8.250606 -12.660010 2.631034 1.428542 0.422647 -3.014934 -3.406480 -3.509548 5.142896 7.368426 -0.540995 1.965756 6.117949 1.880788 -1.595932 2.124340 1.603625 2.174070 -0.099279 -1.042447 -2.887728 -5.248444 -0.329896 -1.036439 2.095517 7.042577 10.033479 1.305754 -0.150311 6.319703 1.005987 1.651357 5.084949 0.852316 -4.854957 -0.574940 2.595081 -11.614440 -0.678418 -10.606223 -1.392817 -11.510558 -4.099935 1.909039 5.323454 3.392880 5.786231 0.124183 6.945115 -3.397609 -2.921737 9.741547 8.456865 -7.274667 -3.554369 -5.667084 -4.515027 2.545847 -4.012262 -0.239497 3.764643 2.202093 -6.540964 -2.471096 2.915195 5.070833 -2.748347 -7.823552 2.704240 6.202600 -6.685499 -7.568756 2.540296 8.937058 -3.162953 -13.105244 -5.021456 -6.760257 2.110456 -0.537878 -2.795155 -8.876693 0.926750 4.049719 -1.238068 -4.852285 -0.060564 4.841466 4.432872 3.831950 0.796242 1.360682 1.910200 14.960840 1.086834 -4.459189 1.627711 -0.420949 -1.339611 4.068204 -4.653761 -4.480962 -1.200669 -9.065806 1.676079 8.548880 -4.356201 -1.702535 3.663990 4.262846 1.411517 33.179618 1.249129 11.198315 8.537943 -8.364023 2.998347 -3.898757 0.352901 2.038835 1.661119 -0.725503 -15.899912 -7.184136 4.610780 7.709333 6.393966 -8.676370 -2.060435 -0.872317 -0.524649 0.659556 -1.128632 1.851101 0.949378 -6.772459 -1.754081 8.074902 19.446580 -2.779201 1.654368 5.841103 3.278644 -6.110726 -12.461313 -4.105402 -6.560052 1.535957 2.745831 0.185497 4.188292 9.910539 -9.479390 6.605841 -0.851318 0.991388 7.045036 3.801296 -9.025264 -10.942611 -3.834606 5.099343 10.503093 -4.700022 2.411071 3.301576 -6.627650 -0.687181 2.766489 -1.630675 -1.067815 2.865573 0.788098 -4.034197 -3.681604 4.519669 -3.342775 -1.482813 -0.935874 5.246451 0.568293 -6.643854 7.605225 0.729787 -2.956988 2.317078 -2.431369 9.572667 -6.770429 -7.376663 6.604008 0.287295 -2.014559 -2.439539 1.779177 5.412196 4.452110 2.740178 -4.687868 -8.990132 4.910752 -3.223368 6.375105 3.069466 -1.336409 2.839737 -3.485730 -1.671992 -8.776032 -7.751806 -2.265523 1.412388 -8.596390 -3.749407 -1.690775 8.497937 4.254925 0.818041 -9.101342 1.144385 9.735000 -6.275736 -1.182127 4.955941 3.427536 -11.376579 -0.122829 6.625922 -10.292473 1.830485 -2.837266 -0.180117 -3.159707 -6.428710 4.991692 3.376011 5.637571 -0.690324 1.660734 1.178113 2.778564 3.824937 2.563926 1.935181 11.941555 5.400402 -0.332384 -4.299432 -8.018363 2.452494 -9.305378 -10.698233 4.591390 2.585817 -6.531675 1.058494 2.882273 9.999922 2.110073 0.265599 -0.551968 0.692625 +PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -1.193599 -0.809905 -0.123490 -3.337751 1.783870 2.025812 0.792129 -1.099869 -3.128780 -1.246976 0.946680 -3.698232 -0.986006 3.772050 -1.228029 2.372887 4.846804 0.421820 -1.577011 0.015075 3.331591 -0.664645 4.105219 3.812019 -3.081163 -0.420205 -0.193825 2.140488 0.700674 1.064766 1.161921 -2.323325 0.786418 -2.449099 -0.304071 -2.106067 0.839914 1.004312 1.613670 -5.240870 0.783110 1.383761 0.531256 -1.064721 -0.941306 -0.623002 2.484906 3.004272 -1.042545 0.291703 2.779418 1.141906 -0.546763 0.627544 0.138083 -0.174764 -0.209394 -0.813696 -1.371565 -1.380530 0.086132 -1.076727 0.723656 3.182534 3.926145 0.395935 0.167739 1.751405 0.483150 0.880521 1.548219 0.439860 -1.056417 0.340992 1.434014 -3.369528 -0.324325 -4.958286 -0.000339 -5.918258 -1.908422 -0.226766 2.678068 2.200564 1.270714 -0.581001 3.076129 -0.739850 -0.333599 3.953031 3.638253 -2.070889 -1.423153 -2.984701 -2.326775 1.749165 -1.832939 -0.086016 1.112180 1.149329 -2.566152 -1.018297 0.662873 1.392223 -1.209572 -2.109612 0.628263 2.502669 -2.841953 -2.134510 -0.014885 2.989924 -0.361140 -5.240044 -1.348166 -2.430060 0.582464 -0.080882 -0.736946 -2.386302 0.111261 1.440032 -0.763492 -1.037587 -2.150596 2.551856 1.571853 1.040067 0.456704 0.581057 1.030197 4.387673 0.580020 -1.855336 0.024753 0.206511 -0.814863 0.729879 -2.126882 -1.438379 0.788386 -3.198933 0.295376 2.466053 -1.788663 -1.278598 0.349667 0.476306 1.341631 11.593158 0.333641 3.860643 2.667437 -3.082789 1.764721 -0.786531 -0.402999 0.780637 1.053770 0.254342 -4.333489 -2.762538 1.650450 3.247179 2.490060 -2.506787 -0.631700 -0.230504 -0.526447 -0.117838 -0.089582 0.864965 -0.337515 -2.507450 -0.762701 3.192087 5.967800 -0.459479 -0.298335 1.767365 2.394112 -1.797896 -3.593125 -1.022913 -2.308459 0.518113 1.063376 -0.062488 2.081118 4.077391 -5.223041 2.818484 0.661020 0.551552 2.084186 0.434305 -3.060580 -4.909149 -0.465897 2.357154 3.863760 -1.598124 0.882221 0.893152 -2.750564 -0.154740 1.024735 0.039867 -0.729648 1.196875 -0.170618 -1.379612 -2.036945 0.743269 -1.759352 -0.404577 -0.812302 1.739071 0.816016 -3.224283 3.403337 -0.371771 -1.090356 0.283342 -1.403956 3.071457 -3.371211 -3.162998 1.905512 -0.160849 -1.619145 -1.281991 0.338018 2.177335 0.920808 0.752648 -1.562015 -3.569551 2.170072 -1.198968 2.351118 1.316649 -0.112408 1.657332 0.242257 -0.564464 -2.873753 -2.663488 -0.078004 0.194591 -3.227893 -0.857361 -0.685074 2.908843 2.394537 -0.382682 -2.933665 0.413142 3.357778 -1.814706 -1.275381 1.805551 -0.188508 -3.468805 0.377280 2.547173 -3.742399 0.143165 -2.205778 0.638543 -0.776503 -2.815458 1.624942 0.445401 1.780634 0.461369 0.256578 -0.365935 1.273938 1.459307 0.413637 0.535873 4.407385 2.124240 -0.662922 -0.615688 -3.478390 1.066072 -4.141634 -4.021991 1.273474 0.320639 -1.790181 0.551302 0.619822 3.241276 0.589420 0.613630 -0.481983 0.538733 +PE-benchmarks/floyd-warshall.cpp__main = -0.701901 -0.639612 -0.268762 -1.807258 1.286484 1.684277 0.664569 -0.744539 -2.247882 -0.497092 0.649524 -2.381069 -0.461265 2.401611 -0.611354 1.811268 3.220199 0.551036 -1.103036 0.132736 1.965047 -0.403912 2.840491 2.632625 -1.493508 -0.023327 -0.562707 1.065330 -0.058950 1.137687 0.252532 -1.563115 0.899583 -1.856352 -0.651359 -1.617599 0.197158 0.758490 1.301968 -3.327195 0.603163 0.836549 0.261415 -0.698503 -0.554464 -0.409310 1.599844 1.728051 -0.062916 0.594482 1.245157 0.453831 -0.153772 0.548028 0.621845 0.522758 0.242576 -0.521734 -1.044296 -0.910219 -0.253437 -0.712759 0.205396 1.673829 2.394325 0.273718 -0.119569 0.971241 0.016914 0.485775 1.135695 0.236450 -0.680054 -0.097814 0.653921 -2.058711 -0.130159 -2.353337 -0.294010 -3.365526 -1.203577 0.125007 1.759241 1.207422 1.050857 -0.324584 1.857774 -0.819049 -0.438316 2.060038 2.305069 -1.666250 -0.956094 -1.343068 -0.978241 0.668527 -0.951597 -0.259692 0.880194 0.424995 -1.687179 -0.591225 0.843029 0.912217 -0.672667 -1.295954 0.510646 1.689879 -1.977804 -1.526141 -0.046255 1.898756 -0.389512 -3.093011 -0.976696 -1.299813 0.321488 0.187653 -0.858503 -1.819007 0.500255 0.878395 -0.497555 -0.861499 -0.644711 1.538222 0.699946 0.716902 0.297350 0.404706 0.465234 3.137396 0.458147 -1.090811 0.370594 0.068690 -0.363353 0.789439 -1.097404 -1.076552 -0.328135 -2.142284 0.391941 1.626536 -1.217113 -0.390377 0.043015 0.843915 0.492105 7.104316 0.007232 2.549975 1.720012 -2.059135 1.015500 -0.730317 -0.043244 0.308751 0.705283 0.075391 -3.074137 -1.696325 1.123956 2.016645 1.600055 -1.928775 -0.255332 -0.337691 -0.037018 0.184734 0.038328 0.481439 0.299337 -1.669184 -0.463479 1.600259 4.588767 -0.597253 -0.262299 1.225426 0.644030 -1.086349 -2.590329 -0.795482 -1.238155 0.323241 0.497534 -0.108051 0.997771 2.493367 -2.762579 1.876422 -0.273877 -0.033272 1.836915 0.625372 -1.859704 -2.630814 -0.915954 1.387048 2.787612 -0.713884 0.377324 0.591409 -1.679401 -0.237850 0.528910 -0.039444 -0.390842 0.813062 0.142861 -1.192555 -0.914541 0.339883 -0.674007 -0.340984 -0.493301 1.174694 0.556470 -2.182195 1.963804 0.196723 -0.670939 0.381198 -0.294416 1.938648 -1.664899 -1.972816 1.317552 -0.174734 -1.029984 -0.656428 0.214696 1.248317 0.795794 0.461913 -0.948618 -2.138121 1.565623 -0.588822 1.682626 0.825961 -0.237575 1.033862 0.090329 -0.608563 -1.689949 -1.811959 -0.199639 -0.273480 -1.682934 -0.375226 -0.589216 1.936153 1.335808 0.295659 -1.915418 -0.057756 2.452834 -1.284264 -0.371996 1.446674 0.276455 -2.208788 0.314907 1.838098 -2.445761 0.101392 -0.945266 -0.073007 -0.714143 -1.459442 1.065864 0.310215 1.112467 0.061201 0.250259 -0.178640 0.619069 0.732467 0.232728 0.304860 2.991534 1.387112 -0.374877 -0.281905 -1.832065 0.724762 -2.313845 -2.309137 0.771952 0.561125 -1.564602 0.249120 0.555222 2.091654 0.361856 0.009399 -0.336597 0.203166 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.398091 -0.047478 0.798583 -0.925319 0.628319 0.208091 0.262225 -0.388846 -0.783032 -0.299414 0.048903 -0.540570 -0.371425 1.085847 -0.518050 0.411556 1.540916 0.511492 -0.315859 -0.544518 1.003474 -0.849208 1.322628 1.335000 -1.144703 -0.117419 0.733994 0.834303 0.650351 0.786574 -0.647241 -0.264146 0.330731 -0.760822 0.453263 -1.068594 0.202603 0.130398 0.226589 -1.584498 0.158957 -0.452113 -0.028336 -0.123435 -0.178812 0.913503 0.954267 0.854368 -0.438616 0.213448 0.915396 0.125489 -0.109720 0.244779 0.331472 0.433849 1.005259 0.687035 -0.351817 -0.078543 -0.217460 -0.805635 0.422660 1.060756 1.325874 0.070250 0.148506 0.300147 0.171478 0.164795 0.387077 0.174358 0.009745 0.230164 0.569345 -1.750467 0.293806 -2.514155 -0.287704 -2.598012 -0.557877 -0.569515 0.349565 -0.858856 0.484991 0.298352 1.085963 0.110761 0.151778 0.429709 1.269308 -1.021594 -0.433030 -0.670269 -0.681847 0.302267 -0.619040 0.013932 0.652463 0.013954 -0.735808 -0.845296 0.720605 0.420083 -0.373190 -0.274690 -0.058662 0.999295 -0.989503 -0.704300 -0.787145 -0.015354 -0.271114 -1.512819 0.390066 -0.891970 1.360543 0.021028 -0.297022 -1.020070 0.193109 1.085821 -0.353428 -0.468453 -0.258364 1.066768 0.482714 0.095885 -0.009584 -0.237118 0.058490 0.956012 1.146194 -0.665245 -0.202433 0.209185 -1.125818 -0.114431 -1.042523 -0.361364 0.982991 -0.855719 -0.049797 0.603655 -0.638038 -0.141474 1.693200 -0.064661 0.687235 3.104380 -0.168502 0.745142 0.337824 -1.084647 0.594424 0.032077 0.010529 0.436406 0.762103 0.210423 -1.829722 -0.932150 0.381624 1.000035 0.721732 -1.363321 -0.840172 -0.573158 -0.107115 0.176060 -0.138806 0.244328 -0.506168 -0.625631 -0.300136 0.349361 1.763673 -0.614449 -1.034169 0.245745 0.010025 -0.683171 -1.585220 -0.324650 -0.524899 0.274199 -0.232907 -0.114252 0.692302 1.294289 -2.759528 0.984194 -0.507565 -0.386121 1.043599 -0.015506 -0.456962 -1.574248 0.202265 0.809195 1.102250 0.120789 -0.122664 0.423232 -0.987139 -0.069644 -0.089016 0.611991 -0.432566 0.443571 0.390372 -0.943315 -0.780925 -0.185056 0.009967 -0.444228 -0.018681 0.491481 -0.338535 -2.322841 1.163795 -0.224620 -0.257286 0.498993 -0.130835 0.479759 -1.147490 -1.186992 0.478562 0.180275 -0.042334 -0.851044 0.065378 0.861218 -0.227460 0.095001 -0.706532 -1.458519 0.364516 -0.670444 0.675361 0.358192 0.254854 1.209002 0.085851 -0.167160 -1.235582 0.222601 -0.119863 -0.237996 -0.678403 -0.514713 -0.169105 0.952152 1.198971 -0.083718 0.137206 0.096198 1.232020 -1.213693 -0.487503 0.664802 0.864690 -0.613899 0.343349 0.771642 -1.187913 -0.629942 -0.460128 -0.626948 -0.018284 -0.782393 0.586549 -0.491723 0.431641 0.242360 0.248060 -0.211960 0.544780 0.210085 0.238325 0.058270 1.199539 2.087436 -0.736749 -0.121756 -0.896339 0.516987 -1.415409 -1.013498 0.197870 0.174141 -0.443286 0.319409 0.261058 0.944600 0.062256 -0.053923 -0.005372 -0.198643 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__printList(Node*) = -0.295439 -0.188265 0.181369 -0.928906 0.548885 0.561334 0.196512 -0.195018 -0.813599 -0.346090 0.165315 -0.948020 -0.262573 1.023269 -0.305213 0.562749 1.357095 0.210505 -0.276918 -0.159105 0.800761 -0.398361 1.259162 1.153851 -0.947002 -0.053712 0.375870 0.731479 0.246688 0.580127 0.162217 -0.988153 0.121072 -0.460069 0.124693 -0.820956 0.215968 0.345980 0.381161 -1.587322 0.212277 0.210072 0.145357 -0.233362 -0.179516 0.020425 1.072103 0.810948 -0.507359 0.238095 0.851541 0.363578 -0.128067 0.153708 -0.001381 -0.002748 0.357029 -0.022511 -0.338788 -0.194946 0.055418 -0.332564 0.270330 0.855616 1.247943 -0.002509 0.044194 0.343333 0.181612 0.248266 0.412942 0.138627 -0.195508 0.017667 0.446685 -1.152283 -0.124356 -2.486460 0.080007 -2.120908 -0.575969 -0.150794 0.799126 0.325036 0.255880 -0.216996 0.901942 -0.104745 0.004619 1.051942 1.212806 -0.482120 -0.360937 -0.760538 -0.794426 0.572741 -0.470306 -0.061099 0.334319 0.290867 -0.656831 -0.749702 0.343653 0.267730 -0.374182 -0.608486 0.109636 0.659416 -0.805717 -0.560480 -0.158201 0.730139 -0.066876 -1.567280 -0.130193 -0.863804 0.345103 -0.020706 -0.169359 -0.829808 -0.022267 0.593754 -0.352884 -0.196689 -0.650749 0.789251 0.416140 0.208185 0.135472 -0.055841 0.226547 1.202071 0.437943 -0.662716 -0.094868 0.188362 -0.370877 0.090603 -0.916078 -0.370516 0.460091 -0.810509 0.090737 0.572953 -0.510990 -0.379996 0.560065 -0.051568 0.403761 3.540732 0.087973 0.848286 0.621614 -1.070220 0.632307 -0.042802 -0.112074 0.360463 0.477076 0.051696 -1.323838 -0.757568 0.323694 0.880829 0.687586 -0.906021 -0.533698 -0.078604 -0.183128 0.076318 0.031798 0.176513 -0.248153 -0.646059 -0.200523 0.781637 1.805524 -0.001812 -0.398549 0.332774 0.942099 -0.705314 -1.033701 -0.221442 -0.859491 0.128667 0.169851 -0.060785 0.652263 1.109655 -2.366137 0.782023 0.153313 0.129149 0.506487 0.040080 -0.703176 -1.692441 0.037505 0.846773 1.155778 -0.368355 0.415187 0.321181 -0.768910 -0.023919 0.154021 0.067112 -0.345963 0.360203 -0.062588 -0.853446 -0.500337 0.007271 -0.493961 -0.229639 -0.360043 0.447028 0.408929 -1.656575 1.121316 -0.232758 -0.282160 0.208467 -0.348462 0.915811 -0.942987 -1.083106 0.433877 0.028408 -0.279810 -0.524231 0.057322 0.648120 -0.045235 0.423492 -0.350389 -1.279748 0.441517 -0.495636 0.550246 0.406532 -0.090656 0.713444 -0.033724 -0.138787 -1.115610 -0.554310 0.180476 -0.067458 -0.666911 -0.196745 -0.235078 0.705471 0.787669 -0.045857 -0.591543 -0.053409 1.065985 -0.705715 -0.323991 0.499896 0.038816 -0.814910 0.224505 0.695550 -1.149050 -0.049016 -0.698079 0.153580 -0.032262 -0.935755 0.542855 0.021121 0.410434 0.136121 0.026748 -0.200662 0.469489 0.388338 0.014160 0.046389 1.303314 0.945423 -0.255576 -0.004835 -0.879388 0.203263 -1.408884 -1.025677 0.138766 -0.020718 -0.517875 0.210945 0.078852 0.804108 0.057868 0.431536 -0.132667 0.122787 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__getTail(Node*) = -0.442183 -0.062713 -0.050389 -1.117384 0.830267 0.733099 0.219966 -0.281121 -0.964828 -0.374009 -0.074998 -0.965822 -0.091515 1.298473 -0.207331 0.923605 1.753355 0.305879 -0.285789 -0.049748 1.199270 -0.756266 1.273951 1.167641 -0.920329 -0.035102 0.645164 0.539660 -0.153153 0.895705 -0.070473 -1.415135 0.128215 -0.862114 0.189823 -1.110925 0.127094 0.517643 0.728396 -1.946187 0.339626 0.210782 0.264925 -0.430234 -0.423727 -0.573429 1.320163 0.814631 -0.547653 0.094233 0.787187 0.611419 -0.322110 0.185223 0.238108 0.628138 0.272506 0.082486 -0.424707 -0.311568 -0.138461 -0.025862 0.521921 0.882028 1.193914 0.009663 0.038992 0.692322 0.073204 0.218784 0.316455 0.087791 -0.381635 -0.161742 0.410715 -1.807040 -0.315443 -2.961099 0.056445 -2.539340 -0.632074 -0.176752 0.413684 0.232108 0.568419 -0.085213 1.145997 -0.564271 0.147538 1.098148 1.509727 -0.741464 -0.334793 -1.091734 -1.036102 0.395907 -0.281849 -0.405956 0.562049 -0.061598 -0.800120 -1.152216 0.570969 0.510474 -0.356652 -1.091929 0.243313 0.856168 -0.902440 -0.983820 -0.224244 0.880090 -0.437852 -1.675501 -0.078012 -0.926587 0.022772 0.021872 -0.367211 -1.592109 0.126389 1.016692 -0.501166 -0.576264 -0.134133 0.932459 0.501977 0.135087 0.224228 -0.258397 0.184902 1.694528 0.804751 -0.777813 -0.008251 0.268301 -0.405149 -0.138462 -0.974156 -0.623781 0.197601 -1.044778 -0.027344 0.947460 -0.656321 -0.161592 0.999894 -0.224588 0.498922 4.356895 -0.153656 0.930088 0.502224 -1.443295 0.872420 -0.016430 -0.347860 0.144528 0.686129 0.226882 -1.795804 -0.990927 0.504366 0.989213 0.899833 -0.876777 -1.061194 -0.406458 -0.292729 0.406067 -0.120662 0.115543 -0.197204 -0.905920 -0.293707 0.690050 2.520325 -0.238793 -0.353253 0.615132 1.206398 -0.938444 -1.533479 -0.414138 -1.821985 0.058886 0.062952 -0.310447 0.789049 1.431908 -2.727117 1.010119 -0.283707 -0.170968 0.582677 0.165245 -0.603102 -2.300036 -0.184970 1.197053 1.608133 -0.651120 0.761526 0.105790 -0.791180 -0.018298 0.098532 0.194445 -0.504104 0.407017 -0.234197 -1.260620 -0.418367 0.430862 -0.696564 -0.664312 -0.221065 0.353798 0.702820 -1.703148 1.492496 -0.005172 0.047719 0.597814 -0.092748 1.147599 -0.878359 -1.406522 0.718351 0.295388 0.217298 -0.146530 0.061658 0.986271 -0.008611 0.299450 -0.342697 -1.683720 0.359952 -0.375610 0.797853 0.448560 -0.022086 0.766575 -0.220224 -0.220888 -1.299867 -0.729197 -0.227485 0.041570 -0.704703 -0.846531 -0.285525 1.016990 0.897389 0.133404 -0.739082 -0.217311 1.271563 -0.950998 0.104935 0.764296 -0.116286 -1.207451 -0.178068 1.039532 -1.192793 -0.261893 -0.754049 0.545435 -0.224795 -1.002707 0.402545 -0.053002 0.258551 0.199171 -0.215327 -0.169561 0.470135 0.711305 0.160994 -0.023363 1.365900 0.676792 -0.329944 -0.233542 -0.792960 0.075369 -1.559189 -1.124834 0.102144 0.297132 -0.771926 0.098679 0.214414 1.011366 -0.220448 0.915782 0.161868 -0.282425 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__partition(Node*, Node*, Node**, Node**) = -1.961081 0.200895 0.782964 -4.193398 3.315664 3.777931 1.076628 -1.858767 -2.943555 -1.059177 -0.195698 -2.839596 -1.205120 5.275323 -1.551300 3.439527 8.036252 1.257525 -1.178768 -0.627306 5.333889 -2.996847 6.159894 6.232615 -4.513907 -0.739630 4.029237 3.635614 0.833449 3.040561 -1.288657 -4.325017 1.542497 -4.376820 0.595643 -5.282248 1.171923 0.848829 2.825256 -8.227771 0.993630 -1.814290 -1.020153 -1.415212 -1.895063 0.241309 5.384197 4.067043 -2.490254 0.020311 3.714743 2.036703 -1.735249 1.146321 0.632449 2.155656 1.818701 2.784881 -1.383889 -1.497082 -0.517495 -1.254193 1.762437 4.435040 6.609873 0.393188 0.695260 3.258059 0.037734 0.742641 0.895697 0.514417 -0.470168 0.613732 2.393011 -8.939750 -1.393865 -13.261188 -1.094061 -11.179986 -2.385158 -1.917642 0.241492 -2.850834 3.216095 0.580918 4.561089 -0.618909 0.839559 4.293753 6.551953 -4.477683 -1.709523 -4.636995 -3.581127 1.689721 -2.454163 -0.144909 2.901792 -1.030282 -3.465024 -5.577580 2.643004 2.597105 -1.560066 -5.093559 0.516706 3.978036 -3.363911 -4.170768 -2.151918 1.570198 -2.479039 -7.738140 -0.211597 -4.361628 3.626616 -0.076401 -0.873932 -6.902122 0.414828 5.462625 -1.545834 -3.796223 1.696718 4.834169 2.928386 0.606277 0.704663 -1.259007 0.824229 7.242335 4.991352 -2.669066 -0.638778 0.433063 -4.227512 -0.598987 -5.281730 -1.833283 3.112261 -4.479345 0.224557 5.390298 -2.675860 -0.929711 7.705415 -1.148506 3.067853 20.236055 -0.479211 3.391120 1.959659 -6.368700 3.102027 -0.851537 -1.289567 1.156541 2.866500 1.213171 -10.883151 -4.003407 2.047890 4.246596 3.599107 -6.228509 -4.601960 -2.354376 -0.810650 0.185949 -1.038416 1.231677 -1.602914 -3.394373 -1.226568 3.680200 10.275955 -2.670376 -3.067716 2.522843 3.704170 -3.725338 -8.694233 -2.004013 -5.507505 0.585113 0.930130 -1.006588 3.253333 5.890953 -11.888100 3.789866 -1.306205 -1.153671 3.437807 1.020171 -2.769732 -8.680628 0.919828 5.159387 6.151646 -1.181166 2.097403 0.652679 -3.906040 -0.168139 0.494444 1.630400 -1.424350 1.688203 0.218010 -5.142497 -3.402587 1.498942 -1.664079 -3.090204 -0.204357 1.886065 0.380776 -8.891286 6.480263 -0.703231 -0.624180 2.737188 -1.376115 4.862620 -4.826837 -6.393828 3.424661 1.109297 1.253394 -1.920369 0.687840 4.384080 0.795396 1.909990 -2.336971 -8.530897 1.034320 -1.870963 3.086798 1.592927 1.347584 4.659826 -2.305993 -1.122348 -7.308417 -2.347939 -0.076458 0.764682 -4.034476 -4.249279 -0.810801 4.933267 4.638795 -0.434801 -2.084034 -0.789434 5.929299 -6.031317 -0.333858 3.112713 4.011100 -5.139673 -0.698357 3.894630 -5.949445 -2.134156 -2.002178 -0.174919 -0.727135 -5.167223 1.427626 -1.274240 1.689237 1.336246 0.186189 -0.331933 2.055187 2.181711 1.673202 0.036050 5.420797 7.036601 -2.863524 -1.844023 -3.981623 1.270289 -7.239278 -6.162308 1.696069 0.148319 -2.055363 0.946738 1.660614 4.095372 -0.843536 2.245124 0.517693 -1.874068 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSortRecur(Node*, Node*) = -3.428450 1.333484 2.544035 -6.502408 5.796391 4.963201 2.167248 -2.490372 -4.720939 -2.922553 -0.670109 -5.546803 -4.240189 9.385401 -2.789225 4.619433 12.649937 2.571530 -1.907948 -1.345389 8.618432 -4.377616 10.588230 9.214447 -8.209801 -1.157443 6.166713 4.718305 1.440519 5.588183 -2.531889 -6.907254 3.232493 -6.226033 2.245783 -7.234142 1.856629 0.488141 2.774101 -12.649924 1.353314 -1.440705 -1.000426 -2.339816 -2.882506 1.168013 9.632490 7.227641 -4.074664 -0.416807 5.908182 2.677746 -2.141716 2.260235 1.496856 2.675601 2.147186 3.096820 -3.490759 -2.211283 -1.457777 -4.372683 2.064363 8.026216 10.182891 0.855181 1.185863 4.824343 -0.542042 1.685880 1.058067 1.209542 1.063260 1.701121 4.691162 -11.927746 -1.914561 -18.947876 -2.426957 -18.985499 -4.744830 -4.531754 1.441895 -3.018949 4.826550 0.297264 8.579728 -0.258608 1.964809 6.457216 12.161473 -7.987232 -3.346721 -8.184442 -5.409858 3.118631 -4.813074 0.010475 4.803839 -2.018665 -6.604805 -8.523835 3.361651 3.703595 -2.801840 -6.633691 0.297588 7.533677 -6.595149 -6.132529 -5.796330 0.905727 -3.068016 -13.514602 -0.122193 -4.974788 5.963413 0.768031 -1.750267 -10.362603 1.359497 8.603993 -2.605097 -6.086083 0.770482 7.797952 4.353978 0.694111 1.624560 -1.181783 1.750413 10.791335 8.974098 -4.195843 -1.393028 0.549965 -6.510101 -1.131657 -7.380625 -3.125965 5.020958 -7.766643 0.021053 7.953881 -5.036405 -1.780197 9.666032 -2.423419 5.924091 27.521927 -1.387959 5.761586 2.796200 -10.654146 5.253674 -1.420002 -2.703494 1.586155 5.627018 3.096562 -13.586998 -7.136511 4.105744 8.068619 6.321744 -8.876168 -5.674194 -4.265390 -0.745205 -0.624336 -1.152366 2.734999 -2.341754 -5.955305 -2.204004 6.022958 14.883355 -5.389945 -6.864304 4.320399 5.012348 -4.017803 -11.428893 -3.218353 -7.610436 0.766356 1.040385 -1.719247 5.338871 10.769316 -18.270799 7.344519 -2.034314 -2.592774 5.929846 0.821814 -4.515257 -11.652642 2.137883 9.256691 8.899497 -0.740637 1.997741 0.266939 -7.366466 -0.515237 0.724399 3.900793 -2.477763 3.384395 -0.018048 -7.840193 -6.839064 0.481240 -2.238867 -5.055626 -0.519799 3.377276 1.267815 -15.321640 11.588356 -1.428238 -1.444599 3.555140 -2.074550 6.775879 -8.899218 -11.372677 5.210779 0.485542 -0.179728 -3.276499 0.979863 7.156628 1.036777 1.449266 -4.009111 -12.476474 3.510044 -1.985993 5.787724 2.903397 3.404057 8.997291 -1.270829 -2.909365 -9.980247 -3.425384 0.255036 -0.238683 -6.914256 -6.440634 -1.516695 8.480105 9.212093 -1.090381 -2.650855 -1.573722 8.701849 -9.988809 -2.072314 6.253162 5.417761 -7.374923 0.033070 7.341971 -8.488102 -4.833927 -4.310551 0.036236 -1.473897 -8.908867 1.831069 -3.805775 2.252249 3.359755 -0.183394 -1.429666 3.556696 3.272132 2.271509 -0.354482 8.541997 11.057546 -6.428900 -1.872348 -7.259266 3.003155 -12.626550 -10.089602 3.125786 0.521286 -2.889037 1.378222 2.301628 6.316200 -1.529998 2.108794 -0.067274 -3.100807 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -1.101263 0.622882 0.997065 -2.191569 1.901306 1.424137 0.636900 -0.877827 -1.480314 -1.196516 -0.203431 -1.827374 -1.536282 2.934535 -1.087140 1.111879 3.965570 0.737866 -0.565694 -0.652066 2.659103 -1.243309 3.452965 3.006927 -2.794927 -0.364187 2.095461 1.592197 0.676309 1.726492 -0.636772 -2.287215 1.024406 -1.590350 0.811344 -2.226501 0.587833 0.015194 0.616257 -3.963740 0.393699 -0.641512 -0.518819 -0.629774 -0.832586 0.762681 3.208926 2.290236 -1.373922 -0.130771 2.104912 1.226721 -0.761713 0.701658 0.374596 0.499004 0.839416 0.738157 -0.950793 -0.700969 -0.473662 -1.411683 0.516930 2.730296 3.288711 0.314885 0.406170 1.389630 -0.197918 0.616574 0.296197 0.455258 0.497255 0.795995 1.459528 -3.681747 -0.551742 -6.256399 -0.746769 -6.418527 -1.492454 -1.537558 0.521307 -0.915763 1.246863 0.297230 2.823698 0.193631 0.656263 2.226416 3.950322 -2.346168 -0.997580 -2.445467 -1.846174 1.034283 -1.524136 0.248102 1.150301 -0.288071 -2.076373 -2.645074 0.903427 0.930651 -0.939536 -1.940874 0.020600 2.318089 -2.377667 -1.498229 -1.868923 0.302109 -0.673984 -4.382573 -0.191176 -1.715871 2.439942 0.087345 -0.528845 -3.008044 0.389618 2.668949 -0.845500 -1.613597 -0.058122 2.342848 1.444666 0.245446 0.382743 -0.391306 0.646511 3.269276 2.703729 -1.370141 -0.528308 0.060946 -1.982593 -0.448296 -2.363431 -0.737615 1.770049 -2.329430 0.336471 2.435382 -1.576818 -1.017591 2.920594 -1.103959 1.925222 8.588611 -0.506252 1.836643 0.898642 -3.375879 1.215686 -0.521344 -0.888164 0.572924 1.786511 1.103540 -3.827763 -2.304010 1.399936 2.600627 1.955101 -2.768948 -1.559332 -1.175831 -0.333792 -0.294013 -0.296042 0.788638 -0.965724 -1.791198 -0.791081 1.990841 4.516652 -1.427041 -2.096427 1.261888 1.700329 -1.119247 -3.163180 -0.921970 -1.952571 0.363443 0.635240 -0.506355 1.766951 3.468452 -6.248484 2.291929 -0.422336 -0.651735 1.554064 0.295206 -1.404973 -3.584069 0.855305 3.014685 2.687579 -0.224095 0.730982 0.075496 -2.389924 -0.195819 0.295435 1.358460 -0.938623 1.062118 0.302569 -2.536028 -2.298883 0.054497 -0.638965 -1.287078 -0.266170 1.098158 0.171786 -5.399254 3.812389 -0.586120 -0.441035 0.814279 -0.846466 2.218607 -2.905095 -3.587571 1.567406 -0.039061 -0.287717 -1.097937 0.304419 2.279022 0.146229 0.750386 -1.383243 -3.771119 1.170042 -0.646399 1.758573 0.931867 1.261480 3.027489 -0.833936 -0.747893 -3.197172 -0.952008 0.471838 -0.111710 -2.198531 -1.447793 -0.453524 2.528533 3.047093 -0.525841 -0.934849 -0.190436 2.711462 -3.092379 -0.778116 1.861842 1.940799 -2.294460 0.352973 2.202335 -2.617465 -1.630184 -1.540225 -0.057088 -0.498785 -2.901892 0.649739 -1.209407 0.717395 1.232904 0.032439 -0.657776 1.297518 0.941351 0.738110 0.013555 2.631639 3.880725 -2.034138 -0.430585 -2.377493 0.987268 -4.095485 -3.331263 1.004225 -0.067671 -0.677838 0.362134 0.224363 2.085311 -0.452982 0.782241 -0.042537 -0.696692 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = -0.960152 -0.075671 2.393800 -2.840478 1.653619 0.003159 0.729160 0.165825 -2.581059 -1.757983 -0.029692 -2.109337 -2.050258 3.252470 -1.316988 -0.170119 4.645849 1.706999 -0.750292 -1.524514 2.213877 -1.737314 3.688599 4.008760 -3.450363 -0.139958 1.119652 2.767420 1.638811 2.293413 -0.217981 -1.776430 0.611460 -0.164881 1.739719 -3.066704 0.480555 0.492311 -1.071526 -5.306527 0.537628 0.371498 0.207359 -0.342515 0.118291 3.148482 3.113071 2.484886 -1.636515 0.586147 2.587025 1.122222 -0.105092 0.627477 0.367299 -0.124090 1.947476 0.538847 -1.264252 0.058979 -0.443664 -2.779508 0.589856 3.008152 3.942528 0.170276 0.213194 -0.200280 0.620807 1.059778 1.165972 0.511579 0.892653 0.323559 1.742156 -2.712153 0.128342 -6.996116 0.023951 -8.756346 -1.952340 -1.749742 3.261859 -0.282181 -0.325712 -0.458778 3.273959 0.336891 0.682277 2.601963 3.735592 -1.377423 -1.206674 -2.248954 -2.156410 1.856817 -1.623646 -0.107072 1.406146 1.063061 -2.193695 -1.632430 1.119827 -0.050579 -1.238539 -0.063046 -0.232452 2.973103 -3.413942 -0.450152 -2.407167 1.202157 0.845401 -4.455851 0.246531 -2.613129 3.043419 0.153498 -0.814289 -0.905836 0.454316 1.674297 -1.240758 0.331839 -2.909198 3.329148 0.711166 -0.046363 0.098301 0.005567 0.206865 1.561059 2.237393 -2.017028 -0.620565 0.954002 -2.318121 -0.485138 -3.215179 -0.647994 3.052346 -2.145380 0.334004 0.659215 -1.952378 -1.767566 1.682798 -0.698282 1.985452 8.353165 -0.362390 2.251072 1.258091 -2.618586 1.772140 0.614602 -0.169456 1.405292 2.378674 0.698296 -2.913565 -2.507469 0.818024 3.088865 2.206801 -2.989868 -1.158923 -0.977298 -0.525194 0.057975 0.406306 0.522662 -1.212274 -1.705466 -0.872352 1.387608 4.097296 -0.326469 -3.219015 0.180133 1.551643 -1.402418 -2.765569 -0.314388 -0.347815 0.554198 0.132547 -0.444049 2.180896 3.791536 -8.327184 3.011164 0.073681 -0.081908 1.971412 -0.319636 -1.280379 -5.035798 0.522478 2.435986 3.778962 0.158130 -0.373383 0.957997 -2.900587 -0.289516 0.284451 1.672944 -1.371321 1.366324 0.597297 -1.916680 -1.972864 -1.574404 -0.588470 -0.138674 -0.875859 1.342877 0.004808 -6.658229 3.369398 -1.202767 -0.781564 0.141913 -0.643231 1.390432 -3.317262 -3.415985 0.785894 0.078103 -2.249546 -2.834623 -0.009891 2.526765 -0.935971 0.638292 -1.486712 -3.744554 2.346002 -1.745036 2.002043 1.280524 0.426642 3.760161 1.446034 -0.514790 -2.911114 -0.428799 0.987867 -1.203823 -1.583798 0.360504 -0.750414 1.871635 3.607944 -0.507878 -0.491989 0.163582 3.854183 -2.268710 -2.014861 1.906420 0.558977 -0.923198 2.419417 2.417381 -3.725375 -1.689391 -2.463301 -0.949856 0.372004 -2.260454 1.854140 -1.442081 1.064726 1.003284 0.453006 -1.410244 1.708985 0.634448 -0.190053 0.167139 3.989228 5.440014 -1.997162 1.100542 -2.541836 1.538295 -4.192786 -2.474746 -0.186181 -0.407000 -0.724438 0.984584 -0.302832 2.344532 0.181628 0.273483 -0.751761 0.567921 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__maxSubArraySum(int*, int) = -1.491232 -1.896929 0.823704 -4.386311 2.326109 1.000933 1.039773 -1.000865 -4.595020 -1.202760 1.515733 -4.124592 -1.152434 4.879123 -1.703301 2.470528 6.558928 1.314751 -2.081244 -1.333919 4.676305 -2.162944 5.369356 5.326793 -4.545535 -0.616353 0.530904 3.386123 2.572264 1.338416 0.206018 -1.581451 1.165437 -3.524876 0.653735 -3.606218 1.220996 1.353352 1.957648 -6.781935 1.072559 0.558213 1.040877 -0.855691 -0.979770 2.859037 2.766272 3.827541 -2.376248 1.168497 4.567906 0.189470 -0.631187 0.729379 0.173689 -0.051799 1.876171 2.256558 -1.841273 -1.137583 -0.075062 -2.349038 1.445459 3.965954 5.835648 0.017070 0.291677 1.795620 1.645166 1.180575 2.789582 0.325846 -0.264575 -0.334965 2.743869 -5.374773 -0.384289 -9.963342 -0.284312 -11.291763 -2.229793 -0.610106 4.428259 -1.484964 0.793768 -0.432481 3.899203 -0.198975 -0.508588 4.381223 4.506590 -2.511531 -2.221545 -3.601358 -3.283130 2.438361 -2.645938 -0.080443 3.700522 1.273343 -3.154881 -1.701895 1.425886 1.359549 -1.529980 -1.815355 0.393979 3.673574 -3.580507 -2.322095 -1.112764 2.921251 0.241331 -6.674384 -0.348332 -3.878006 2.853944 0.070785 -1.130241 -2.156957 0.016201 1.978650 -1.673518 -0.685416 -2.182176 4.233843 1.758054 1.731058 0.306228 0.201471 1.016688 4.312042 2.080521 -3.148475 -0.339867 0.723656 -2.591540 0.936019 -4.270246 -2.096028 4.217149 -3.792802 0.671943 1.635328 -2.533965 -1.640947 4.476687 0.944685 1.861592 13.963057 0.601348 4.761272 2.808616 -3.342647 2.775099 0.103377 0.480762 1.992238 2.293834 -0.299009 -5.978484 -3.759073 1.690916 4.052070 3.236958 -5.442013 -2.460569 -0.713017 -0.447545 0.409353 -0.511446 1.236994 -1.030938 -2.669208 -0.907553 3.061903 7.275943 -1.220721 -2.598670 1.253611 2.765889 -2.878874 -5.758243 -1.168730 -2.651123 1.090273 0.035853 0.159593 3.182812 5.427520 -10.323391 3.783395 0.179100 0.540318 3.230304 0.523337 -3.768348 -8.013236 -0.209124 2.314315 5.225172 -0.400579 -0.172161 2.370928 -3.688098 -0.096452 0.731950 0.561548 -0.977448 1.401736 0.022091 -1.428397 -2.505731 -0.053903 -1.728779 -0.239444 -0.548387 2.441048 -0.094131 -7.053797 3.811934 -1.217390 -1.702688 0.414692 -1.353905 2.838331 -4.646811 -4.064426 1.856581 0.128926 -2.197434 -3.830629 0.530879 2.881468 0.098689 1.017129 -2.226608 -6.048303 3.015973 -3.257042 3.037081 1.683452 -0.676477 3.509178 0.933699 -0.475971 -5.078595 -1.075362 -0.307735 -0.543639 -3.727430 -1.256560 -0.515384 3.453877 3.342466 -0.393286 -1.865126 0.245417 4.877613 -3.541186 -2.513111 2.508090 1.186435 -3.348880 2.143348 3.310980 -5.845911 -0.237156 -2.839757 -1.469462 -0.249093 -3.072272 2.727636 0.061570 2.495103 0.059783 1.027469 -0.267899 2.059280 1.359278 0.280824 0.274844 6.204785 6.752922 -2.233721 -0.642349 -4.720233 2.161839 -5.456351 -5.186375 1.268846 0.266970 -2.760655 1.376064 1.168622 4.391238 0.784481 -0.197866 -1.232218 1.187789 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = -0.426238 -0.408402 0.652336 -1.334707 0.999186 0.243716 0.495221 -0.120347 -1.662590 -0.570646 0.410913 -1.580048 -0.722806 1.798459 -0.489729 0.714897 2.379144 0.653079 -0.627164 -0.434879 1.249205 -0.880654 1.929189 1.948236 -1.485725 0.033440 -0.042605 0.991741 0.462555 1.027318 -0.310918 -0.889412 0.518827 -0.858563 0.310781 -1.209009 0.143956 0.344217 0.344629 -2.528452 0.365047 0.582556 0.417551 -0.334043 -0.165543 1.129661 1.323457 1.275527 -0.545783 0.591378 1.207513 -0.098978 0.049088 0.344028 0.478799 0.160167 0.912779 0.473757 -0.959027 -0.177316 -0.250161 -1.159967 0.203261 1.308579 1.901534 0.003847 -0.063387 0.258555 0.279166 0.420301 0.880288 0.195414 0.202536 -0.105037 0.884062 -1.320171 0.025100 -2.894622 -0.192760 -3.982732 -1.042060 -0.315936 1.832493 -0.084054 0.254495 -0.398105 1.521453 -0.182498 -0.101217 1.092972 1.835740 -1.041362 -0.843806 -1.018647 -0.907958 0.699488 -0.840176 -0.188092 1.199459 0.200211 -1.271828 -0.559652 0.805938 0.320775 -0.546399 -0.215561 0.109373 1.439590 -1.535180 -0.736689 -0.805189 0.779263 0.230945 -2.223752 0.080684 -0.929874 0.773942 0.331604 -0.675126 -0.736058 0.360274 0.610761 -0.713369 -0.198008 -1.096888 1.699595 0.321445 0.517253 0.235214 0.150408 0.375031 1.348449 0.893557 -1.051652 0.016265 0.247803 -0.799335 0.387099 -1.208723 -0.792906 0.998974 -1.326282 0.168141 0.353808 -1.027083 -0.335628 0.773557 0.405082 0.581801 4.068397 -0.083778 1.631500 0.792764 -1.299836 1.192231 0.011391 0.043380 0.465273 1.007356 0.118803 -1.645776 -1.295813 0.731144 1.594172 1.182087 -1.824405 -0.585908 -0.339258 -0.009756 0.182558 0.135796 0.415711 -0.034829 -1.059234 -0.358388 0.777219 2.715409 -0.525539 -1.408136 0.445542 0.463132 -0.593954 -1.823708 -0.359018 -0.643930 0.325942 -0.149429 -0.077710 0.993699 1.965973 -3.606776 1.572138 -0.246339 -0.228452 1.480712 0.073527 -1.115866 -2.553071 -0.265548 0.940797 2.013642 0.198009 -0.252063 0.608172 -1.366971 -0.148649 0.103564 0.349582 -0.452153 0.670093 0.015672 -0.803497 -0.814337 -0.612560 -0.372354 -0.157213 -0.381520 0.849805 0.345017 -2.785902 1.429639 -0.178410 -0.576643 0.088572 -0.131619 0.774176 -1.475349 -1.595735 0.525886 -0.241385 -1.131667 -1.232359 0.017380 0.857206 -0.067160 0.098020 -0.643757 -1.919400 1.375699 -0.865799 1.281723 0.682934 -0.161887 1.426484 1.071120 -0.463202 -1.292698 -0.412110 0.121068 -0.717542 -0.978543 -0.111565 -0.436052 1.204275 1.327709 0.100029 -0.462636 -0.272449 1.775952 -1.133372 -0.793404 1.181031 0.088056 -0.863248 0.900436 1.418791 -1.861995 -0.271172 -1.060551 -0.621863 -0.244239 -0.954635 0.849706 -0.257253 0.650961 0.146851 0.193523 -0.383467 0.613483 0.275629 -0.144982 -0.019368 2.216625 2.276741 -0.966604 0.275628 -1.467086 0.848424 -1.877286 -1.558988 0.307897 0.242597 -1.109599 0.329228 0.393417 1.281648 0.183166 -0.295819 -0.548816 0.379896 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -1.532584 -0.334749 1.815953 -5.163527 5.227369 3.394916 2.007901 -1.292476 -4.319342 -1.715128 0.999751 -4.077198 -3.227657 5.750790 -2.298827 3.145808 5.958302 0.001612 -1.982651 -1.032905 5.840514 -1.075820 6.948807 4.164172 -6.368623 -0.168305 -0.120984 3.647791 1.134855 4.672013 -0.156820 -3.202497 1.552440 -2.484144 1.347358 -2.616390 1.409558 0.497207 0.400613 -6.735638 0.584674 2.473447 -0.084671 -0.574389 -1.105184 0.985573 4.625449 4.888470 -2.433580 0.849722 4.617726 0.968882 -0.239369 1.752171 0.542757 0.018998 1.648015 -0.596583 -3.137256 -2.132060 -1.078154 -3.336888 1.377087 4.829614 6.312165 -0.281202 0.711129 2.764577 -0.560802 1.812972 2.571602 1.348657 -0.365661 -0.150273 4.142301 -3.273534 -0.504792 -6.747647 -0.775469 -9.700591 -3.348635 -2.625672 3.467968 2.016089 2.706966 -1.408357 6.057751 -0.033531 -0.326045 4.678747 5.641155 -3.737642 -1.743331 -5.324862 -3.732645 1.350154 -3.202382 -0.925672 1.877163 1.010988 -4.114705 -1.524539 0.477857 1.410087 -1.562215 -2.698159 -1.010681 4.722538 -5.207741 -2.778460 -2.048783 3.749057 -1.008857 -8.206728 -1.985259 -2.855043 2.173804 -0.660935 0.809960 -2.455792 0.761767 3.945169 -1.986826 -1.867266 -2.660413 4.799850 3.092428 1.243109 1.275644 0.745645 0.249535 5.174815 3.960133 -1.973624 -1.937616 0.305923 -1.074630 1.466652 -2.459256 -0.726499 1.939914 -4.849632 0.081053 3.296856 -1.741974 -1.203606 -0.130189 -0.197538 3.287837 14.019539 -0.399222 4.792938 2.210807 -5.124147 2.654545 0.006978 -0.294490 2.285103 2.402370 -0.393546 -4.911454 -4.831048 3.174756 4.257702 3.300368 -4.858081 -0.517759 -1.116372 -0.352562 -0.528822 -1.055067 2.330664 -0.578398 -3.723391 -1.085334 2.241004 8.366228 -1.917910 -4.428302 4.115576 2.687244 -3.082430 -3.633441 -2.457163 -2.349196 0.013909 1.487630 -0.685727 3.043734 6.572366 -8.723930 4.615755 0.178773 -0.743586 4.030881 -0.927932 -2.342881 -5.405424 -0.918707 3.756655 4.916086 -1.135515 -0.626533 0.900534 -4.398395 1.341612 0.605373 0.999932 -0.892947 1.854308 -0.496505 -2.983425 -4.035141 -1.917252 -1.986706 0.377481 -1.406675 1.817177 0.258497 -7.988032 5.321875 -1.387300 -1.829876 1.349166 -0.226444 4.327251 -3.886229 -5.641996 2.910107 -0.558648 -3.509625 -3.663716 1.145135 3.254144 1.130448 0.717495 -3.258169 -6.084656 3.679622 -2.038400 3.474443 2.097390 1.364409 4.804212 1.562224 -2.443524 -4.889084 -3.616396 1.194586 -0.380457 -4.077830 -0.809301 -1.081950 4.516085 3.930103 0.130992 -1.757721 -1.112026 6.125614 -3.839980 -2.589474 4.466142 0.095856 -4.371171 1.959610 5.237644 -4.109882 -2.197969 -3.411948 0.472662 -1.313239 -4.195050 2.526606 -0.590811 2.336152 1.053485 1.331731 -1.793540 1.749691 1.308193 0.299704 -1.455645 7.677038 5.236555 -3.426355 -0.221379 -4.262815 2.531281 -6.364598 -5.010192 1.548609 -0.613478 -1.328100 2.062951 0.644141 4.978929 0.704613 -0.342450 -0.429391 -0.924399 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::push_back(int const&) = -0.393401 0.422519 1.031386 -1.031333 0.911656 0.566330 0.289656 -0.279628 -0.773459 -0.525266 -0.148460 -0.897224 -0.903899 1.280504 -0.616633 0.073999 1.790952 0.501754 -0.302807 -0.413763 0.851887 -0.381816 1.574160 1.505993 -1.357415 -0.030149 0.664674 0.861908 0.356394 1.202490 -0.612930 -0.953458 0.365006 -0.118637 0.544261 -0.984653 0.119830 -0.152330 -0.193692 -1.907424 0.155767 -0.015483 -0.204815 -0.182168 -0.031300 0.779597 1.547288 0.969966 -0.421378 -0.029383 0.874053 0.620141 -0.097963 0.297384 0.378952 0.174232 1.031777 0.169529 -0.481999 -0.155502 -0.293692 -0.832648 0.017336 1.302350 1.489585 0.233028 0.090516 0.007296 -0.041530 0.269086 0.155668 0.281825 0.394614 0.619241 0.531091 -0.970691 0.242467 -2.185488 -0.192089 -2.616972 -0.754199 -0.842108 0.533092 -0.078097 0.281471 -0.102190 1.382458 0.134932 0.371358 0.607444 1.754056 -0.984465 -0.436997 -0.858633 -0.801377 0.442703 -0.636845 0.104814 0.202661 0.027407 -0.937050 -0.945297 0.461861 0.185601 -0.488910 -0.001059 -0.093111 1.121425 -1.237884 -0.317652 -1.042174 0.074072 -0.001614 -1.868447 -0.179050 -0.785787 1.111922 0.056561 -0.349325 -0.966815 0.316298 1.033208 -0.484618 -0.318287 -0.754878 1.269090 0.517544 -0.075629 0.042366 -0.180365 0.280622 0.961390 0.974930 -0.665891 -0.209115 0.093297 -0.913571 -0.285879 -1.050647 -0.113064 0.664561 -0.889177 0.120973 0.784143 -0.762436 -0.322448 0.525266 -0.447182 0.868483 3.416189 -0.418630 0.818023 0.264811 -1.401633 0.626074 0.021844 -0.357153 0.243614 0.811920 0.630133 -1.440099 -1.010450 0.605399 1.272015 0.837819 -1.148896 -0.197742 -0.512979 -0.207236 -0.164074 0.156924 0.268295 -0.507400 -0.738695 -0.435400 0.615118 1.914148 -0.449047 -1.544312 0.355047 0.286026 -0.283268 -0.909225 -0.256530 -0.189793 0.222384 0.197102 -0.242304 0.853825 1.563733 -3.006717 1.193289 -0.108337 -0.541645 1.076828 -0.167630 -0.449786 -1.052387 0.368348 1.265526 1.273501 0.190920 -0.134402 0.039200 -1.167345 -0.168691 0.086990 0.810292 -0.584731 0.563585 0.487927 -1.173862 -1.013237 -0.690934 -0.063023 -0.385776 -0.485327 0.511122 -0.174620 -2.768394 1.648919 -0.130720 -0.191598 0.176767 -0.382907 0.517944 -1.317703 -1.511133 0.446208 -0.096081 -0.477232 -0.646495 -0.000830 0.949210 -0.083431 0.456571 -0.878972 -1.521547 0.725538 -0.311385 0.837731 0.488394 0.599123 1.310276 0.380108 -0.267713 -1.117797 -0.289140 0.571623 -0.237513 -0.781671 -0.017482 -0.380949 0.971460 1.535718 -0.270168 -0.175254 -0.264594 1.297858 -0.996112 -0.491824 0.806547 0.446839 -0.700777 0.378291 0.955423 -1.064124 -0.897462 -0.774836 -0.441146 -0.216755 -1.102292 0.437810 -0.726183 0.309425 0.667349 0.027998 -0.656052 0.586144 0.153043 0.024624 0.135450 1.306914 1.819926 -0.839331 0.431610 -1.036537 0.682646 -1.754411 -1.204426 0.264368 -0.371827 -0.333964 0.150210 -0.107557 0.890154 -0.132064 0.233602 -0.089607 -0.109375 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::SuffixTrieNode() = -0.460878 -0.630712 0.268194 -1.321775 0.510337 -0.061606 0.332999 -0.099057 -1.515763 -0.421178 0.163783 -1.015908 -0.091038 1.477325 -0.322668 0.845597 1.984779 0.769903 -0.525181 -0.265831 1.322767 -1.132230 1.365273 1.574003 -1.043683 -0.092295 -0.144855 1.035172 0.412463 0.812935 0.056532 -0.354530 0.149881 -1.000005 0.311805 -1.534124 0.302192 0.898236 0.392651 -2.269244 0.450610 0.452473 0.979261 -0.380664 -0.253199 0.428419 0.626515 1.075202 -0.472591 0.307755 1.020863 0.134262 -0.009670 0.309116 0.243315 0.488015 0.416488 0.002563 -0.614266 -0.143332 -0.051997 -0.902688 0.745735 1.003296 1.549426 0.021979 0.101201 0.378419 0.384328 0.352812 0.852503 -0.009771 -0.531454 -0.497466 0.483524 -1.757023 0.173501 -2.517543 0.074522 -3.141882 -0.695887 -0.158178 1.315454 0.362263 0.327337 -0.100172 1.108981 -0.414555 -0.000585 1.027609 1.066200 -0.730992 -0.568103 -1.053265 -0.902150 0.715765 -0.573034 -0.542723 0.967490 0.494426 -0.841526 -0.357143 0.756783 0.476882 -0.418298 -0.403106 0.212031 1.173152 -1.231642 -1.002264 -0.258957 0.986833 -0.169539 -1.640062 0.539822 -1.318277 0.303808 -0.013266 -0.361932 -0.726286 0.122185 0.560926 -0.424224 -0.131904 -1.414356 1.247472 0.081330 0.104998 0.098754 -0.053177 -0.143425 1.131560 0.475706 -0.976860 -0.016325 0.551117 -0.854132 0.061958 -1.285799 -0.861873 0.913549 -1.270402 -0.274982 0.299359 -0.792527 -0.210886 0.928115 0.422749 0.592526 3.840723 0.134661 1.358358 0.837438 -0.914245 1.147459 0.267842 0.154560 0.560851 0.775057 -0.218630 -1.735215 -1.131071 0.166614 1.108539 1.059810 -0.939557 -1.042670 -0.531657 -0.197308 0.583143 -0.119402 0.185888 -0.338549 -0.966535 -0.272225 0.373003 2.234917 -0.058465 -0.033349 0.374299 0.554671 -1.304416 -1.967001 -0.372126 -1.118231 0.178611 -0.625894 -0.192756 0.779781 1.518701 -2.597424 1.303629 -0.326207 0.130039 0.947258 -0.175562 -0.860604 -2.858340 -0.404489 0.614402 1.898276 -0.589049 0.182321 0.696656 -1.043673 -0.072408 0.019852 0.213688 -0.372256 0.414318 -0.101908 -0.529620 -0.437259 0.193058 -0.529667 -0.304619 -0.002155 0.583934 0.514328 -1.364507 0.959120 -0.361214 -0.273921 0.505594 0.078617 0.570814 -1.173738 -1.040595 0.540053 0.445617 -0.383088 -1.053373 0.157655 1.112850 -0.381832 -0.347871 -0.318979 -1.483017 0.741557 -0.982666 0.782576 0.480388 -0.366888 0.714800 0.949407 -0.157903 -1.179759 -0.243345 -0.930080 -0.471331 -0.754234 -0.283225 -0.261040 1.038540 1.062901 0.227446 -0.436475 0.477128 1.765140 -0.532222 -0.652194 0.849840 -0.502368 -0.801198 0.485593 1.117527 -1.867864 -0.230138 -0.797031 0.002050 0.259866 -0.638055 0.928437 -0.012745 0.639139 -0.084550 0.215423 -0.158134 0.586724 0.625336 -0.007408 0.044546 2.062746 1.149797 -0.181424 -0.063237 -0.932942 0.236368 -1.403210 -0.836493 -0.155653 0.657047 -0.939751 0.596592 0.475147 1.326800 0.167144 0.338112 -0.078937 -0.038416 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -0.878517 0.686375 1.457637 -3.515794 4.023601 2.768708 1.437927 -0.804103 -2.554079 -1.742110 0.277334 -3.364203 -2.726668 4.167223 -1.654208 2.000569 4.774612 0.002763 -0.898511 -0.332941 3.734519 -0.659906 5.185947 3.227636 -4.624289 -0.025510 0.239473 2.217966 0.063262 3.788570 -0.199541 -3.556857 1.392105 -1.587136 1.086083 -1.781579 0.739247 -0.238218 0.115279 -5.150556 0.347916 1.979712 -0.454385 -0.458753 -0.697242 -0.154771 4.462025 3.410911 -1.806216 0.375164 2.837347 1.045931 -0.125238 1.361543 0.540954 -0.054861 0.830331 -0.904866 -2.541821 -1.311115 -1.078125 -2.474945 0.563955 3.615949 4.466789 0.081218 0.499653 1.769492 -0.894627 1.140498 1.335896 1.120276 0.316355 0.629084 2.871482 -2.214672 -0.509968 -4.907642 -0.869075 -7.020531 -2.674829 -2.362404 2.075904 2.128075 2.099588 -1.340757 4.254455 -0.032767 0.559535 3.239335 4.878921 -2.897403 -1.348769 -4.030589 -2.576752 0.964809 -2.180156 -0.502336 0.937642 0.021472 -3.162620 -1.578372 0.503851 1.013939 -1.074906 -2.051866 -0.512821 3.445535 -3.842719 -2.093977 -2.105393 1.978688 -0.895719 -6.274441 -1.457944 -1.347181 1.164049 0.089077 0.288384 -2.512478 0.762901 3.118825 -1.433396 -1.655067 -1.894988 3.817009 2.224927 0.979788 1.113150 0.558370 0.608748 4.097415 3.224363 -1.078212 -1.115232 -0.121746 -0.736366 0.551672 -1.590473 -0.609557 0.892331 -3.583284 -0.189927 2.968888 -1.546020 -0.774185 -0.766957 -0.722001 2.704975 10.626277 -0.783895 3.402696 1.406020 -4.402820 2.082206 -0.152006 -0.777766 0.958769 1.926278 0.700496 -3.706969 -3.334175 2.415561 3.239959 2.435325 -3.303737 -0.210497 -1.005260 -0.255551 -0.530270 -0.648735 1.678209 -0.294218 -3.012083 -0.677567 2.148215 6.341172 -1.572292 -3.786773 2.921578 2.068343 -1.449992 -2.506633 -1.665937 -2.050606 0.106102 1.283554 -0.706906 1.986100 4.851511 -6.488928 3.457518 0.147970 -0.840665 3.002512 -0.531762 -1.696136 -3.778055 -0.191812 3.523381 3.403113 -0.501043 -0.094356 -0.029491 -3.078263 0.778708 0.522126 1.172014 -0.765010 1.412709 -0.529652 -2.847260 -3.312501 -1.634399 -1.411877 -0.247103 -1.405382 1.264975 0.982500 -5.995234 4.425263 -0.618257 -1.337056 0.956640 -0.550045 3.293308 -3.176689 -4.552605 1.986317 -1.100815 -2.666426 -1.903920 0.598488 2.106497 1.112898 0.376916 -2.278472 -4.479675 2.684673 -0.812632 2.614129 1.808163 1.587369 3.850272 1.454468 -2.077133 -3.306267 -3.192965 1.376012 -0.380514 -3.088684 -1.052881 -1.080457 3.388485 3.575748 -0.127036 -1.450230 -1.326319 4.013391 -3.051103 -1.521860 3.565666 -0.275135 -3.299478 0.758011 3.959882 -2.703090 -1.857442 -2.430246 0.770750 -1.057633 -3.448645 1.132272 -1.140998 1.226230 1.257778 0.402517 -1.710176 1.112373 0.777101 0.379880 -0.970992 4.957198 3.356323 -2.803890 0.119762 -3.091378 1.769916 -5.214545 -4.131920 1.320595 -0.522031 -0.807077 1.135502 0.499264 3.127360 0.150991 0.090582 -0.253666 -0.768666 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = -1.402963 1.047871 2.389125 -3.953359 4.806641 2.133123 1.985101 -0.025835 -3.136078 -3.524487 0.205321 -5.213520 -5.210323 5.808038 -2.256844 1.475780 7.049806 0.645611 -0.667934 -0.850739 4.215724 -1.316245 7.102278 5.067263 -6.351112 -0.333811 0.041755 3.137013 0.253365 4.456854 0.526213 -5.542250 2.351640 -0.689670 2.353784 -2.404430 1.319085 -0.324046 -1.365840 -7.514448 0.309604 3.440870 -0.027321 -0.657687 -0.644724 2.107765 6.372894 4.800764 -2.693376 0.468359 3.716692 1.266748 0.100724 1.911657 0.170571 -1.593406 0.361348 -1.947606 -4.146450 -1.085043 -1.389472 -4.846088 -0.130637 4.978837 6.768229 0.085390 0.823948 1.642392 -1.426957 1.965085 1.593008 1.354584 2.587093 0.884249 4.224701 -1.492802 -1.583232 -7.705168 -1.386209 -12.475523 -3.889037 -3.833589 4.387709 3.320762 1.402097 -2.920013 5.846877 0.965565 1.144183 4.888930 7.509029 -3.524038 -2.346199 -5.715439 -2.912763 2.177359 -3.616504 -0.120252 1.732372 0.276979 -4.563677 -2.314116 0.499380 0.385017 -1.471253 -2.269069 -0.908645 4.791966 -5.586665 -1.681097 -4.395106 1.709732 0.378544 -8.605173 -0.550829 -1.557158 1.489234 0.989280 0.191164 -1.901252 1.045550 3.153692 -1.966741 -1.451827 -4.704436 6.135285 2.162845 0.972094 1.762467 1.477197 1.072158 4.434232 4.030944 -1.674949 -1.803811 0.044451 -1.841664 0.537335 -3.125409 -0.996579 3.413093 -4.545043 -0.227190 2.631381 -2.554512 -2.134327 -1.946526 -1.662536 4.139642 11.947273 -0.868569 4.131584 1.733269 -5.741226 3.802786 -0.421461 -1.176842 1.117988 3.363068 1.329192 -3.285730 -4.573465 3.168004 4.743013 3.490572 -4.255825 0.137543 -1.176297 0.354591 -1.677126 -0.261981 2.827850 -0.530659 -3.949576 -0.817875 3.305085 7.631356 -1.940205 -4.603523 3.255638 3.480764 -0.690457 -3.324928 -1.752742 -1.493154 -0.055237 1.383499 -0.548624 2.590315 6.865864 -9.596339 4.891289 0.864011 -0.365554 3.460331 -1.149107 -2.538629 -6.612752 0.713741 5.250694 4.893052 0.396220 0.220413 -0.271034 -4.487277 0.748194 0.579033 2.306069 -0.904724 1.948355 -1.361382 -3.371771 -4.969765 -3.290841 -2.105962 -0.252090 -2.021469 1.829412 3.231012 -8.655930 6.471143 -1.680499 -2.065355 -0.015285 -0.839766 4.073627 -5.129954 -6.500325 1.995986 -2.647146 -5.366432 -3.677660 0.718797 2.594804 0.224995 -0.189206 -2.135376 -6.238395 5.060136 -1.027452 3.492323 2.321727 2.331424 6.006950 3.953291 -3.226382 -4.073220 -4.271387 2.347894 -1.940885 -3.952436 0.379762 -1.178607 4.183683 5.664305 -0.588227 -2.001456 -1.435923 5.512267 -3.983724 -3.187736 5.162822 -0.678458 -3.078365 2.464638 5.549166 -4.578268 -2.994743 -4.271654 0.949000 -0.967914 -5.162124 1.011348 -2.650581 1.244109 2.234021 0.322813 -2.837763 1.734969 1.081906 -0.335276 -1.590367 7.333280 5.719843 -4.497541 1.345979 -4.645392 2.481832 -7.540994 -5.676359 1.522150 -0.683042 -0.736732 1.575495 0.642478 3.388279 -0.016100 -0.177708 -1.641923 -0.457579 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/trie-suffixes.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/trie-suffixes.cpp__main = -6.619151 1.684299 10.190944 -13.289438 22.309974 7.874150 8.711605 1.238936 -11.456540 -8.454877 -1.374664 -10.616671 -19.512627 22.805344 -6.546299 12.990166 21.972518 1.029931 -2.849265 -4.305397 22.826782 -13.695300 25.629533 9.466917 -25.178087 -1.782202 3.245185 14.715795 1.456941 22.010736 -4.730013 -12.269091 7.488636 -9.283851 10.763337 -11.624085 9.194934 0.729080 -5.245175 -26.848009 -0.130192 11.708045 -1.910028 -2.145210 -5.121797 13.395150 18.023514 20.062411 -12.794895 3.459201 14.477101 -2.678217 -0.077468 8.429476 -2.121054 1.087708 3.482744 -0.640593 -19.494326 -4.918840 -4.036877 -24.774448 6.144611 15.760353 26.134936 -6.159174 5.292597 16.353429 -7.667238 7.194656 6.112313 4.084831 5.114809 -3.437171 21.157401 -10.925890 -8.488138 -25.957745 -7.880765 -47.802618 -15.128094 -18.630882 10.791097 4.373793 10.358408 -8.019716 25.590530 3.520432 2.605127 16.771711 24.424682 -18.607813 -8.147532 -28.702524 -9.100763 5.406719 -16.588973 -9.251234 14.885054 -2.323610 -16.034850 -10.336304 4.430077 4.533140 -5.069628 -13.557743 -9.880670 21.449008 -22.234900 -15.510696 -20.498735 5.023729 -6.350258 -31.618312 4.879537 -1.817610 10.137325 2.248927 11.304837 -8.785776 3.968880 20.069680 -6.376724 -11.546382 -9.547931 25.777450 9.697293 -0.436326 11.195721 5.266556 -0.978332 16.089692 27.297056 -4.072639 -15.802011 5.232889 -10.849523 3.236947 -10.625808 -3.519978 12.778889 -21.460946 -2.900755 11.216169 -6.351459 -2.156253 0.833852 -4.907594 18.778833 38.167481 -1.089316 11.609052 0.231935 -22.132112 18.983874 -0.688718 -5.288028 7.874281 12.152743 -0.478076 -18.052834 -17.965897 11.053361 14.296048 13.032679 -20.167573 -6.608432 -10.827411 3.472736 -3.907747 -5.687425 17.429119 -1.959953 -14.266496 -2.698213 2.347064 33.171086 -13.880114 -19.334182 19.819230 8.166331 -13.312545 -23.911076 -10.616419 -8.253389 -7.652337 -0.410765 -4.361621 7.550738 25.771688 -31.942341 18.267013 -2.347843 -7.128032 14.982202 -10.267577 -4.067448 -28.551008 -1.438679 18.628865 19.782991 -0.544811 -1.273309 -1.626638 -16.404376 8.498511 -0.477177 7.965970 1.766167 7.214867 -9.563405 -13.154287 -18.709442 -10.028893 -7.616812 -1.358530 -1.379201 3.268264 8.908620 -33.893133 23.061315 -12.661404 -7.372665 9.411549 7.140139 16.719382 -15.163290 -26.308967 12.213973 -2.254263 -15.657337 -19.618704 5.081949 12.862399 1.299791 -8.633755 -5.641892 -30.199884 13.361129 -6.219904 8.517750 6.223652 9.349375 26.391844 15.752402 -17.171756 -18.642870 -13.669747 0.392041 -8.440590 -10.339070 -4.783300 -1.706750 19.732089 17.857267 1.897150 0.682811 -8.076651 24.653158 -18.972429 -13.479058 22.590753 1.145403 -11.844323 8.948930 24.732271 -15.887689 -15.857145 -14.191113 6.102673 -3.627097 -16.424776 2.706392 -11.643294 2.239829 8.668213 4.104195 -9.329140 5.514634 5.443126 -0.896143 -16.640020 33.641929 27.864092 -23.485180 1.460701 -12.729395 9.372908 -25.342146 -15.815196 3.605446 3.041863 0.615022 11.673476 11.359513 13.079622 -1.337339 -5.344083 -2.179218 -15.150327 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.944690 0.419912 1.692729 -3.046449 4.226919 1.827091 1.199719 -0.670022 -2.011258 -1.176685 -0.268846 -1.941571 -2.301725 3.610730 -1.721653 2.111599 4.391711 0.378343 -0.260882 -0.883683 3.842159 -1.397348 4.838171 2.348111 -4.586349 -0.328837 1.183279 2.532356 0.792720 3.552883 -1.090200 -2.348374 1.599086 -2.093038 1.216415 -2.635335 1.301142 -0.037053 0.195851 -4.630594 0.289638 0.207208 -1.194735 0.101197 -0.637762 2.016105 3.590236 3.221954 -2.570425 0.870596 2.992874 0.800089 -0.301235 1.522543 -0.566511 0.450568 1.330336 0.332163 -2.420880 -1.054489 -0.991057 -3.092871 1.142732 3.023313 4.538081 -0.494202 0.814084 2.540184 -0.608561 0.852358 1.487903 0.834341 0.621216 0.262715 3.104816 -3.046919 -0.934026 -6.058519 -1.618537 -7.991142 -2.086833 -2.986616 0.976588 -0.519910 1.827282 -0.239866 3.891888 0.738471 0.943756 2.759860 4.066152 -3.176430 -1.266789 -4.196682 -2.132678 0.857892 -2.328302 -0.844798 1.862786 -0.049451 -2.437924 -2.455592 0.758486 0.733126 -0.924846 -2.534559 -1.055600 3.354427 -3.785560 -2.594818 -2.900320 1.030587 -1.554881 -5.586244 -0.225279 -1.111464 3.227682 -0.018753 1.503899 -2.433079 0.402856 3.740443 -1.216468 -1.716672 -0.390973 3.770740 2.352762 0.553026 1.122174 0.069149 -0.009746 3.626960 4.272331 -1.040624 -2.138085 0.421727 -1.693462 0.020102 -2.570470 -0.360736 2.230827 -3.581089 0.286991 2.922257 -1.374489 -0.706470 1.945172 -1.101744 3.135024 8.651739 -0.440707 2.314267 0.752971 -4.205201 1.650424 0.006145 -0.397326 1.548561 1.943121 0.465727 -3.901222 -3.131803 1.588597 2.265710 2.254204 -4.150068 -1.358741 -1.819688 0.198722 -0.106307 -1.513238 2.414726 -1.177080 -2.430220 -0.325985 0.984835 5.886522 -1.943223 -3.762174 2.767953 1.839388 -2.477079 -3.651618 -1.904245 -1.858077 -0.473358 0.932071 -0.565188 1.346744 4.446134 -7.124556 2.843196 -0.192523 -0.770523 2.268884 -0.594388 -1.000732 -4.067867 0.106162 3.154148 2.981680 -0.113740 0.262145 0.316535 -2.570061 1.197417 0.314517 1.576786 -0.114365 0.907406 -0.168750 -2.821951 -3.054920 -0.889045 -0.802153 -0.263304 -0.412736 1.065322 0.325306 -7.237683 3.707654 -1.812619 -1.429909 1.963490 -0.041779 3.427322 -3.092521 -4.178978 2.162852 -0.470698 -1.605352 -2.773340 1.141416 2.360154 0.489686 0.339907 -1.907981 -5.200456 1.415293 -1.331924 1.122653 1.531491 1.642562 4.344709 -0.024073 -2.082530 -4.118654 -1.849951 0.616529 -0.449683 -2.100318 -1.017821 -0.387633 3.349720 3.819993 -0.066451 -0.224704 -1.068874 3.828123 -3.965209 -1.523554 3.574295 1.673767 -2.638527 1.244686 3.706252 -2.870916 -2.495262 -1.504431 0.704698 -0.327697 -2.828121 1.047214 -1.842667 0.760852 1.295884 0.892791 -1.626232 1.437282 0.597904 0.650108 -1.823665 4.748521 5.577787 -3.362444 -0.106556 -2.181098 1.619877 -5.051522 -3.580903 1.017678 -0.569838 -0.283152 1.947154 1.081761 2.960698 -0.253670 0.152707 -0.002746 -1.859913 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::SuffixTrie(std::__cxx11::basic_string, std::allocator >) = -0.936893 -0.592115 0.871263 -3.554616 3.602314 1.945976 1.505213 -0.633282 -3.305029 -1.411267 0.682835 -2.702003 -1.859563 3.893199 -1.498819 2.418909 4.520939 0.427375 -1.049618 -0.616099 4.136802 -1.462292 4.943868 3.271266 -4.295610 -0.047272 -0.625030 2.612760 0.556198 3.370688 0.243414 -2.185526 1.379703 -2.241099 0.836440 -2.565854 0.953463 0.920327 0.419433 -5.077565 0.529668 1.683085 0.287844 -0.215666 -0.705744 0.744018 2.973124 3.306062 -1.783664 1.134013 3.137571 0.563983 0.028727 1.447328 0.256178 0.273266 0.601468 -0.735340 -2.295211 -1.236310 -0.923575 -2.809463 1.266837 3.046235 4.514098 -0.273107 0.592190 1.817529 -0.531658 1.234494 2.268492 0.843627 -0.442947 -0.784602 2.852716 -2.855733 -0.504374 -5.190434 -0.736760 -7.519682 -2.344142 -1.822841 2.801326 1.703708 1.997785 -0.993214 3.851862 -0.176217 -0.041731 3.314664 3.496850 -2.573150 -1.253719 -3.604291 -2.364263 0.966631 -2.098414 -0.950051 1.606551 0.793936 -2.725924 -0.905764 0.899286 0.939679 -0.944844 -2.305621 -0.588680 3.420906 -3.917084 -2.331364 -1.420587 2.812705 -0.935154 -5.525951 -0.574437 -2.221706 1.454258 -0.262672 0.573874 -1.507140 0.509855 2.598100 -1.226448 -1.223876 -2.093392 3.580292 1.800377 0.948635 0.926212 0.569434 -0.345596 3.833573 2.796015 -1.265740 -1.221740 0.416398 -0.796249 1.089873 -2.030168 -0.784848 1.590310 -3.621101 -0.183461 2.048517 -1.274498 -0.826537 0.341052 0.202799 2.299491 10.054868 -0.084875 3.679173 1.930923 -3.392772 2.159416 0.181440 0.312292 1.899515 1.868112 -0.660420 -3.878098 -3.340522 1.641195 2.659317 2.323717 -3.573547 -1.026888 -1.015927 -0.029762 0.146316 -1.033618 1.523000 -0.279184 -2.773088 -0.432422 1.283226 6.215647 -1.118891 -2.149702 2.711733 1.765388 -2.789159 -3.417703 -1.851325 -2.044545 0.038318 0.600344 -0.487225 1.644094 4.424139 -6.002501 3.171033 -0.297843 -0.029071 2.635795 -0.447217 -1.696468 -4.932236 -0.925623 2.232661 3.768265 -0.944023 -0.001226 1.035104 -2.882490 0.979998 0.361403 0.648116 -0.536017 1.151371 -0.509241 -1.977447 -2.541024 -1.013836 -1.434634 0.225602 -0.686556 1.303793 0.887801 -5.270165 3.045471 -1.133068 -1.552608 1.312116 0.199830 3.195280 -2.604537 -3.706769 2.069278 -0.368355 -2.564613 -2.889625 0.985524 2.257434 0.495805 -0.120862 -1.822605 -4.361843 2.624161 -1.740654 2.137055 1.623626 0.614805 3.439602 1.397250 -1.898842 -3.661631 -2.551172 0.109925 -0.736550 -2.677281 -0.620777 -0.774606 3.068328 3.001266 0.633955 -1.258206 -0.235977 4.762454 -2.700479 -1.767992 3.474297 0.016031 -2.785778 1.569555 3.834484 -3.451528 -1.472864 -2.070055 0.650304 -0.220121 -2.593637 2.072385 -0.450428 1.783681 0.309452 1.207856 -1.212916 1.289419 0.972237 0.414046 -1.194262 5.735904 3.743492 -2.085034 -0.328197 -2.521408 1.371537 -4.362608 -3.243257 0.615760 0.268989 -1.149572 1.867457 0.807915 3.732868 0.647656 -0.103144 -0.220607 -0.734835 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/trie-suffixes.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.635914 0.463864 1.281313 -1.462158 1.598193 0.803151 0.621960 -0.379792 -1.207862 -0.889649 -0.090438 -1.247632 -1.502538 2.052717 -0.913442 0.449066 2.826967 0.715392 -0.376096 -0.722316 1.719090 -0.965348 2.683612 2.293182 -2.311495 -0.089599 1.034875 1.310367 0.657217 1.724008 -0.798546 -1.297871 0.923368 -0.778152 0.858821 -1.618381 0.331412 -0.170577 -0.167327 -2.948905 0.163859 -0.161612 -0.420037 -0.168808 -0.244682 1.575813 2.327489 1.661661 -0.921072 0.265226 1.493855 0.538721 -0.136404 0.628223 0.389403 0.260891 1.133152 0.563407 -0.970616 -0.305996 -0.552812 -1.754975 0.211331 1.968153 2.505407 0.141780 0.265884 0.522154 -0.235080 0.488962 0.456662 0.488527 0.751187 0.550087 1.314212 -1.923971 -0.060402 -3.832157 -0.665460 -4.906716 -1.243008 -1.494420 0.913026 -0.641079 0.757922 -0.076682 2.226840 0.361814 0.508450 1.227660 2.731051 -1.790356 -0.771060 -1.580789 -1.098448 0.634437 -1.226038 0.128313 0.919292 -0.147080 -1.562868 -1.543319 0.811336 0.379780 -0.702250 -0.682223 -0.317414 1.898663 -2.080096 -0.822783 -1.866792 0.001061 -0.235571 -3.093815 0.043789 -1.057601 2.067265 0.212480 -0.264556 -1.475933 0.452657 1.815523 -0.661254 -0.861077 -0.557000 2.108963 0.921483 0.114429 0.303616 -0.075653 0.262633 1.805394 2.160797 -0.859695 -0.565026 0.147179 -1.500766 -0.147067 -1.624848 -0.309320 1.503039 -1.644511 0.185635 1.251623 -1.122753 -0.583255 1.541843 -0.606574 1.481378 5.220425 -0.453654 1.372586 0.525053 -2.241049 1.041639 -0.132518 -0.347712 0.682780 1.457097 0.688143 -2.433908 -1.695378 0.935097 1.901794 1.311050 -2.309792 -0.688919 -0.902133 -0.034532 -0.276003 -0.107319 0.694784 -0.576076 -1.247462 -0.496023 0.952754 3.137521 -1.136182 -2.216293 0.801763 0.490957 -0.690794 -2.055872 -0.648578 -0.552538 0.232256 0.279081 -0.307540 1.121586 2.522139 -4.539029 1.823714 -0.461042 -0.670701 1.586730 -0.072012 -0.751829 -2.188624 0.528494 1.896703 1.925821 0.379227 -0.191020 0.204749 -1.860791 -0.036760 0.100837 1.205356 -0.681087 0.886537 0.420819 -1.693018 -1.747205 -0.885235 -0.111533 -0.571336 -0.363916 0.825574 -0.113187 -4.427910 2.441753 -0.512168 -0.621039 0.485853 -0.309114 1.169971 -2.046662 -2.539525 0.918355 -0.264769 -0.949952 -1.392181 0.186804 1.459229 -0.023541 0.302694 -1.208110 -2.699489 1.289880 -0.637092 1.270232 0.804454 0.960973 2.579906 0.331519 -0.823704 -2.117206 -0.485306 0.612659 -0.564980 -1.328853 -0.450454 -0.457063 1.691522 2.464456 -0.214696 -0.150291 -0.319332 2.243547 -2.147444 -0.960212 1.623656 1.346478 -1.080595 0.863950 1.755701 -1.848903 -1.462981 -1.118484 -0.581509 -0.199092 -1.786679 0.727021 -1.248708 0.567313 0.897780 0.283853 -0.808235 0.945648 0.269613 0.285445 -0.222459 2.273447 3.444153 -1.786833 0.217733 -1.599584 1.078187 -2.850929 -2.041919 0.506798 -0.163476 -0.402095 0.497336 0.216767 1.499899 -0.082625 -0.130324 -0.250058 -0.421446 +PE-benchmarks/trie-suffixes.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.650706 1.567372 2.280989 -2.983972 4.924957 2.762123 2.013060 -1.113980 -2.480392 -2.396289 -0.310901 -3.063355 -4.275604 5.316166 -1.999803 2.380266 6.959788 1.239636 -0.500672 -1.177404 4.935131 -2.857504 7.192676 5.071574 -5.752195 -0.207895 2.593519 2.558941 0.468686 4.657625 -2.159103 -3.948811 3.297978 -3.209615 1.802986 -3.619760 0.953896 -0.656002 0.224035 -6.872405 0.186864 -0.273736 -1.586412 -0.420407 -1.304945 2.907742 6.241337 4.392200 -2.396417 0.853138 3.285783 0.573049 -0.342453 2.136320 0.980405 0.967811 1.374731 1.187555 -3.214499 -1.159111 -1.890106 -4.963877 0.432809 4.596973 6.263118 0.032022 0.886518 2.708407 -1.918988 1.218749 0.934463 1.374598 2.237044 0.877559 3.999904 -5.119640 -1.278690 -9.046245 -2.823949 -12.268106 -3.406177 -4.209354 1.272106 -1.517667 3.332661 -0.319563 5.695496 0.974605 1.284478 3.019738 7.377012 -5.615081 -2.063487 -4.625995 -2.071562 0.930752 -3.420997 0.111889 2.940394 -1.659160 -4.270607 -4.354659 2.267624 1.402499 -1.456186 -3.583413 -1.075763 5.028590 -5.261597 -3.202089 -5.322424 -0.703434 -1.695606 -8.170906 0.565369 -1.292551 4.684111 1.049213 -0.111125 -4.653323 1.456412 5.344844 -1.426822 -3.829904 0.438283 5.497886 2.647063 0.674538 1.609162 0.194763 0.564965 5.921240 6.895107 -1.301965 -1.785182 -0.168364 -3.423354 0.249273 -3.250553 -1.028805 3.124998 -4.857885 0.180574 4.070173 -2.607780 -0.911731 4.083277 -1.600968 4.030087 12.455579 -1.237641 3.444725 1.139346 -6.397019 3.034949 -1.164282 -1.134284 1.464235 3.795217 1.688809 -6.475713 -4.401456 2.914710 4.514195 3.286061 -6.357697 -2.170002 -2.690032 0.756700 -1.071633 -0.982846 2.582771 -0.556174 -3.602503 -0.867302 2.488219 8.685601 -4.259521 -5.305028 3.382827 1.086933 -1.591783 -6.257775 -2.466450 -2.488671 0.011412 0.829577 -0.892422 2.003485 6.506519 -9.778941 4.438499 -1.900850 -2.097265 4.097099 0.104790 -1.864912 -5.529529 1.163674 5.270310 4.414616 1.117780 0.105923 -0.186912 -4.546434 0.376855 0.124570 2.918528 -1.055896 2.201782 -0.022251 -4.644537 -4.950241 -1.871032 -0.394363 -2.054874 -0.314482 1.934037 0.973964 -10.732516 6.364314 -1.275580 -1.932213 1.945550 -0.055278 4.068971 -4.732752 -7.104567 3.067623 -1.447310 -2.356395 -3.121952 0.952021 3.289272 0.722880 -0.335716 -2.476883 -7.231763 3.333208 -0.850085 3.195386 2.030909 3.169085 7.141443 0.560378 -3.464232 -5.562193 -2.116496 1.143256 -1.714361 -3.664344 -2.556135 -1.007224 4.997433 6.238059 0.114847 -0.396839 -1.420209 5.549174 -6.654250 -2.026226 5.281559 4.272763 -3.265422 1.541570 5.276570 -4.129249 -4.083779 -2.351917 -0.479049 -0.954632 -5.042350 0.954578 -3.524037 1.093328 2.366966 0.662233 -1.784501 2.010925 0.825883 1.317156 -1.737520 5.741298 8.365686 -5.522587 -0.434453 -3.729667 2.464038 -7.420249 -5.674196 1.987493 0.540649 -0.832928 1.310698 1.615921 3.581709 -0.550836 -0.914796 -0.533250 -2.426021 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/trie-suffixes.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/trie-suffixes.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/trie-suffixes.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/trie-suffixes.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/trie-suffixes.cpp__std::char_traits::length(char const*) = -0.096722 -0.045213 0.204765 -0.277349 0.182037 -0.060294 0.081948 -0.083201 -0.288270 -0.214539 0.091606 -0.286591 -0.172814 0.324777 -0.197587 0.090201 0.432303 0.138259 -0.066975 -0.216012 0.208055 -0.209370 0.446878 0.442908 -0.406809 -0.010111 0.094699 0.296655 0.236799 0.191505 0.007800 -0.164444 0.120905 -0.093997 0.120114 -0.267535 0.090564 0.079788 -0.008443 -0.511359 0.039391 -0.014510 0.105743 -0.000388 -0.016886 0.316994 0.264207 0.287020 -0.139102 0.198517 0.362074 0.096987 0.014978 0.079818 0.018305 -0.068402 0.248518 -0.097265 -0.147682 -0.001123 -0.006286 -0.343971 0.038885 0.343397 0.458152 -0.014877 0.051499 0.036609 0.020536 0.113561 0.203804 0.064308 -0.014122 0.071044 0.174263 -0.346001 0.079975 -0.735793 -0.065503 -0.959904 -0.212990 -0.155724 0.356918 0.027035 0.030658 0.116340 0.346152 0.121498 0.013729 0.221372 0.370789 -0.201987 -0.164343 -0.130021 -0.195898 0.204185 -0.239200 0.049109 0.080658 0.214210 -0.223537 -0.139192 0.185917 0.033321 -0.139697 -0.032816 -0.042303 0.248312 -0.465653 -0.112602 -0.208493 0.080003 0.067811 -0.476420 0.104333 -0.254164 0.399065 0.022522 -0.047768 -0.091381 0.013866 0.153857 -0.087880 0.019831 -0.393105 0.244930 0.095993 0.082269 0.021460 0.018513 0.064582 0.270423 0.149713 -0.229026 -0.090342 0.069401 -0.199083 0.047220 -0.295014 -0.105285 0.288597 -0.275142 0.125456 0.055223 -0.195964 -0.234847 0.183917 -0.029378 0.183742 0.670335 0.034321 0.278283 0.204750 -0.268159 0.053431 -0.057517 0.042115 0.187120 0.216149 0.003374 -0.144640 -0.288536 0.093140 0.318943 0.212673 -0.292335 -0.165872 -0.042755 0.006390 0.047372 0.013133 0.093134 -0.151714 -0.183920 -0.073819 0.149293 0.411462 -0.003034 -0.107453 0.043481 0.111836 -0.180226 -0.299978 -0.053658 -0.047225 0.103540 -0.007665 0.033724 0.165214 0.399068 -0.870327 0.301069 0.002725 0.065933 0.165200 -0.016248 -0.204466 -0.550638 0.073261 0.185138 0.318212 -0.017814 0.076468 0.196601 -0.316276 -0.029291 -0.001260 0.127424 -0.143785 0.131775 0.121774 -0.207880 -0.252010 -0.076832 -0.009458 0.012316 -0.058051 0.188265 0.082269 -0.722256 0.297119 -0.170421 -0.186049 0.019174 -0.072150 0.204790 -0.396789 -0.290060 0.085525 -0.087582 -0.237166 -0.298288 0.016060 0.189855 -0.157940 0.027775 -0.125107 -0.224554 0.189426 -0.207519 0.126750 0.139677 0.015755 0.319574 0.003620 -0.047019 -0.259577 0.092416 0.028839 -0.232718 -0.159655 0.165307 -0.054619 0.214941 0.394730 0.000000 -0.077798 0.178885 0.372993 -0.225689 -0.264347 0.195604 0.148281 -0.115828 0.300770 0.219456 -0.413800 -0.103842 -0.245007 -0.107693 0.054741 -0.228486 0.253455 -0.102066 0.167557 0.084033 0.100300 -0.138993 0.238611 0.032313 0.003074 -0.001002 0.445741 0.550241 -0.160661 0.081559 -0.321270 0.098058 -0.439212 -0.318371 0.023184 0.063264 -0.132596 0.118207 -0.076956 0.293369 0.087360 -0.010288 -0.109960 0.093829 +PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -1.533596 -0.188933 2.070476 -4.448228 5.174714 1.811431 1.646188 -0.597310 -3.243866 -1.806904 -0.126507 -2.859501 -2.943544 4.702638 -2.069150 3.075018 6.297585 0.853093 -0.872288 -1.408360 5.337265 -2.221914 6.487498 3.815006 -5.958630 -0.472085 1.378510 3.841798 1.403689 3.889753 -1.565659 -2.508836 1.996699 -3.096590 1.792116 -3.809600 1.838984 0.384651 0.436876 -6.479256 0.539118 0.255220 -0.967649 -0.085041 -1.107647 3.163708 4.387852 4.536904 -3.466550 1.033785 4.562273 0.762600 -0.470532 2.044075 -0.782227 0.748596 1.524815 0.660179 -3.018401 -1.606687 -1.011034 -4.435743 1.857609 4.038780 6.115844 -0.793316 0.906493 3.443399 0.008280 1.067687 2.459258 1.028611 0.707888 -0.560039 4.174598 -4.953836 -1.080873 -8.962505 -1.780991 -11.727424 -3.039106 -3.745751 2.117254 -1.058651 2.433758 -0.350272 5.640201 0.427712 1.017395 3.675555 5.073801 -4.505375 -1.914810 -5.637837 -2.833899 1.492185 -3.360231 -1.344629 3.027311 0.498910 -3.347958 -2.811032 1.425811 0.977363 -1.406005 -3.625778 -1.139409 4.553277 -4.925551 -3.524395 -4.022641 2.026300 -1.483401 -7.393903 0.452778 -2.123992 4.321246 -0.277654 1.427611 -3.117508 0.366892 4.445925 -1.832007 -2.034030 -1.334656 5.033172 3.041637 0.562854 1.649014 0.169569 -0.023841 4.978646 5.664532 -2.097587 -2.995241 1.018613 -2.857329 0.285633 -3.904844 -0.941036 3.818782 -5.023587 0.234651 3.399095 -2.123451 -0.992220 3.633554 -1.007319 3.956643 11.951805 -0.234793 3.301805 1.536310 -5.142162 2.867323 -0.161580 -0.308044 2.437838 2.880413 0.120083 -5.657157 -4.493210 2.115355 3.552625 3.299997 -5.727807 -2.118346 -2.072503 0.511285 -0.144752 -2.039809 3.175723 -1.255936 -3.120351 -0.623260 1.595107 7.955713 -2.322621 -4.176990 3.520316 2.658143 -3.572467 -5.663425 -2.663875 -2.902218 -0.535671 0.959037 -0.420837 2.173748 6.269885 -9.677430 3.839407 -0.612712 -0.650154 3.373769 -0.562713 -1.589369 -6.565079 -0.028215 3.881327 4.643687 -0.568705 0.521262 0.858252 -3.700302 1.272050 0.386126 2.009677 -0.313273 1.254204 -0.210369 -3.273636 -3.637295 -1.232123 -1.308848 -0.352426 -0.088416 1.716476 0.408836 -9.371288 4.971517 -2.557247 -1.953305 2.551834 -0.292036 4.603952 -4.381431 -5.396002 3.228607 -0.131979 -2.008161 -4.044928 1.603954 3.715034 0.041946 0.090349 -2.499431 -7.067443 2.598812 -1.955119 2.144029 1.891014 1.582129 5.666096 0.356059 -2.480476 -5.552136 -2.087647 -0.157435 -0.967751 -3.014247 -1.428898 -0.403998 4.506297 5.013331 -0.076512 -0.039064 -0.471306 5.384562 -5.609036 -2.297984 4.651064 2.652902 -3.413030 2.421393 4.981286 -4.679496 -3.270843 -2.509214 0.652339 -0.143000 -3.949050 1.954243 -2.315929 1.470900 1.763964 1.310239 -1.651017 2.186187 1.169803 0.794625 -2.369426 7.007043 7.872776 -3.887195 -0.383049 -3.500496 2.140796 -6.764878 -4.748907 1.297203 -0.137715 -1.012261 2.595044 1.848904 4.337018 -0.331295 0.044633 -0.473998 -2.134621 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.283003 0.165987 0.499465 -1.142342 1.220625 0.704424 0.075645 -0.123326 -0.679680 -0.324561 -0.372602 -0.592827 -0.567202 1.100454 -0.363173 0.615590 1.090408 -0.019016 -0.243929 -0.152621 1.103728 -0.073765 0.975556 0.241135 -1.121614 -0.065685 0.335288 0.906334 0.148267 1.195006 -0.288495 -0.853531 -0.095973 -0.157012 0.349332 -0.693630 0.474407 0.264768 -0.033366 -1.230488 0.161043 0.341356 -0.180475 -0.028582 -0.265902 -0.120132 0.840508 0.868136 -0.690255 -0.112404 0.991558 0.660838 -0.266290 0.331147 -0.262979 0.219090 0.417405 -0.353258 -0.484398 -0.329634 0.005623 -0.468980 0.288628 0.725874 1.080322 -0.180423 0.100241 0.748072 -0.037316 0.240894 0.263736 0.115364 -0.120998 0.006430 0.568156 -0.535017 -0.238678 -1.337223 0.096689 -1.578389 -0.408279 -0.769353 0.127992 0.573364 0.237025 -0.166495 1.201582 -0.166576 0.151835 0.813509 1.034833 -0.608865 -0.203220 -1.494019 -0.792068 0.382795 -0.527087 -0.615532 0.048852 0.399163 -0.387494 -0.633155 -0.084792 0.006652 -0.311727 -0.516148 -0.390198 0.945086 -1.065783 -0.540861 -0.557597 0.882321 -0.296454 -1.316286 -0.564752 -0.435001 0.236998 -0.374780 0.524091 -0.674490 0.053504 0.890499 -0.514342 -0.183680 -0.503277 0.813564 0.686005 -0.275125 0.200638 -0.081657 0.157274 0.832385 0.608394 -0.543158 -0.735297 0.385994 -0.108832 -0.319227 -0.841485 0.033877 0.174212 -0.992554 0.095620 0.882711 -0.291323 -0.121915 -0.182259 -0.585014 0.836058 2.567308 -0.122271 0.308539 0.025250 -0.971592 0.512206 0.269576 -0.411134 0.326076 0.147623 0.198522 -0.693673 -0.865762 0.518357 0.590953 0.667700 -0.566205 -0.242408 -0.487927 -0.183996 0.062285 -0.324050 0.685340 -0.621701 -0.378479 -0.295071 0.142681 1.517054 -0.103874 -0.938541 0.934253 0.927326 -0.902615 -0.548548 -0.472979 -0.711311 -0.325258 0.453462 -0.259347 0.663659 1.250429 -1.979051 0.819790 0.460199 -0.320302 0.377103 -0.489020 0.065271 -0.834925 -0.180259 0.950125 1.047042 -0.451753 0.374573 -0.171086 -0.714490 0.339546 0.281189 0.361181 -0.085868 0.065738 0.019564 -0.613376 -0.611479 -0.042574 -0.631768 0.050706 -0.304550 0.165281 0.028851 -1.740824 1.134855 -0.539278 0.117693 0.568086 -0.102046 0.966028 -0.740322 -0.922193 0.684452 0.302108 -0.219138 -0.330247 0.370305 0.941895 0.031899 0.360940 -0.485425 -1.386936 0.141659 -0.204835 0.182345 0.294987 0.403150 0.492204 0.043706 -0.270049 -0.883293 -0.602173 0.230685 0.155697 -0.303751 -0.077014 0.033039 0.844821 0.799839 0.006423 -0.265852 -0.344694 0.936783 -0.516429 -0.310484 0.718015 -0.296379 -0.935508 0.166993 0.921688 -0.662377 -0.717651 -0.709834 0.616399 -0.147067 -0.797058 0.172258 -0.326591 0.088183 0.669422 0.018782 -0.656607 0.531562 0.371473 -0.202031 -0.526709 1.472731 0.679297 -0.452805 0.269608 -0.669102 0.366745 -1.278334 -0.772667 0.086181 -0.420159 -0.142093 0.454790 0.067288 0.761949 -0.334072 0.811739 0.155777 -0.686819 +PE-benchmarks/optimal-binary-search-tree.cpp__optimalSearchTree(int*, int*, int) = -5.045988 -6.524529 -5.399867 -10.271481 7.715360 10.019554 4.263465 -8.518407 -13.009819 0.822048 6.545738 -13.512476 0.186567 13.255050 -3.831629 14.223435 16.996389 1.695639 -7.844955 -0.625053 13.992607 -0.411292 17.485770 14.840071 -8.778814 -1.217332 -2.630305 4.278897 2.579567 -1.501156 2.194292 -3.163728 6.945930 -16.279714 -6.239322 -6.511327 2.101754 4.917332 14.166573 -16.232068 3.341066 -1.886831 2.121149 -3.396907 -5.382781 -0.428004 6.288040 10.536228 -0.738680 4.195352 9.527470 0.453096 -1.639528 3.305292 1.489192 2.436083 -0.688673 0.790112 -4.129008 -7.443367 -0.441354 -0.064885 3.013331 10.057053 13.915291 2.099508 -0.501751 10.286496 3.352924 2.722592 7.735977 1.625336 -5.740944 -0.324768 4.056541 -17.678077 -2.132306 -18.910491 -3.427040 -17.544826 -6.122155 2.992464 7.951484 -0.765965 8.424750 2.890958 10.173530 -1.829467 -5.237457 12.423746 11.938241 -11.443378 -5.728897 -6.531289 -6.000963 2.847168 -5.497621 2.655836 8.382107 3.548815 -9.900946 -4.435396 3.853846 6.575992 -3.839964 -12.024294 4.078844 8.520713 -6.765794 -10.223549 3.747807 11.785635 -4.121781 -18.482614 -3.969503 -8.738645 5.110730 -0.224994 -4.231977 -11.960551 0.527679 4.873600 -2.835902 -6.811436 1.347166 5.547032 7.295072 6.251543 1.011558 2.708769 2.843029 21.482422 1.153845 -7.566857 2.162298 -1.169440 -1.218453 7.385858 -6.893357 -6.716544 0.827380 -12.948281 5.320485 9.974186 -6.145880 -3.144676 9.108970 6.880646 1.091310 38.064463 2.424779 15.948171 12.113131 -11.132687 3.603305 -7.165064 2.254559 4.184737 3.823452 -2.989818 -18.783310 -11.236277 6.876580 11.245498 8.770860 -13.954525 -5.042752 -0.486408 -0.658068 -0.133797 -1.953554 3.637646 0.814992 -7.605974 -1.923196 11.624037 24.938328 -5.381042 3.749619 7.673586 5.190502 -5.676339 -16.646070 -6.829633 -10.093674 2.391022 4.752016 2.817288 6.053393 14.149117 -14.200365 8.872793 -1.954259 2.808668 8.746006 6.818009 -13.841368 -14.192060 -4.599866 5.989067 12.711064 -5.368491 1.303719 6.147569 -9.644455 -0.753567 3.528510 -2.607825 -1.378174 3.935583 0.652505 -3.937649 -4.598589 7.561097 -4.029166 -2.030880 1.178201 8.492439 0.597739 -11.222591 9.628103 0.229010 -5.811291 3.232105 -4.572667 13.849541 -8.554807 -9.310421 8.989141 -0.547442 -1.522196 -4.625099 3.128425 6.754892 4.450588 6.266902 -7.008323 -11.487557 7.355468 -5.032542 8.997199 4.441250 -2.287776 4.239671 -9.139222 -4.077417 -12.468214 -9.225258 -3.128119 2.705104 -12.476838 -3.858636 -1.809111 12.065155 5.646158 1.842516 -12.436310 2.169466 12.247384 -11.555226 -2.624038 7.371867 7.127320 -14.812901 1.531503 9.173506 -13.791157 2.996173 -3.270539 -0.426253 -4.664951 -9.029316 7.600021 5.010662 8.324667 -3.064349 2.932307 4.205873 5.465511 4.860208 5.091773 2.592700 15.848871 8.624679 -1.560969 -7.657060 -12.234176 4.514451 -13.043275 -15.670175 7.607733 4.326744 -10.074522 1.434445 2.962568 14.137193 2.276578 -2.546137 -3.167080 2.014969 +PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -0.808931 -0.945783 -0.198004 -1.686424 1.011909 0.977611 0.531009 -1.036264 -2.028231 0.007319 0.547744 -1.370111 0.073726 2.009333 -0.608285 1.975929 2.673356 0.698944 -0.939494 -0.326078 2.395826 -1.041081 2.511876 2.363035 -1.509132 -0.225438 0.285751 1.270020 0.626880 0.735343 -0.332769 -0.481668 0.825324 -2.519722 -0.264869 -1.964498 0.401647 1.042941 1.898499 -2.788597 0.500404 -0.323342 0.435849 -0.424886 -0.599532 0.328250 0.827451 1.575138 -0.564386 0.766733 1.669533 0.096766 -0.253740 0.464537 0.354466 0.884583 0.575036 0.678549 -0.535495 -0.719257 -0.168054 -0.699524 0.906782 1.488947 2.439594 0.029350 0.096714 1.109916 0.377940 0.289096 1.129997 0.192431 -0.800076 -0.361048 0.810494 -3.346596 -0.004823 -4.103930 -0.366553 -3.729069 -0.893918 0.020360 0.922840 -0.597940 1.259120 0.373179 1.615789 -0.392728 -0.421127 1.461702 1.592142 -1.764813 -0.748522 -1.121289 -1.128603 0.535167 -0.951442 -0.157914 1.211919 0.238562 -1.272799 -1.169650 1.015477 1.027273 -0.603938 -1.545151 0.301481 1.545064 -1.416713 -1.885890 -0.164184 1.166486 -0.853962 -2.725823 0.150987 -1.798274 1.382004 -0.052456 -0.562153 -1.826630 0.184406 1.224389 -0.440709 -1.117204 -0.079837 1.390946 0.988973 0.519422 0.086457 -0.218445 -0.018212 2.887731 0.991782 -1.238445 0.004587 0.334116 -1.179227 0.555513 -1.726708 -0.968896 0.981640 -1.959713 0.132805 1.242369 -1.011994 -0.139947 2.792183 0.694396 0.560788 6.437536 0.222005 2.227717 1.534246 -1.622716 1.114398 -0.342125 0.355262 0.898857 0.907932 -0.279444 -3.670025 -1.618897 0.629155 1.603865 1.376512 -2.320126 -1.702236 -0.607016 -0.020516 0.432217 -0.341480 0.406860 -0.319476 -1.309938 -0.313072 0.915126 3.838739 -0.852493 -0.092220 0.849416 0.628240 -1.768341 -3.177374 -0.865487 -1.813765 0.295953 -0.200196 -0.011741 0.978121 2.127978 -3.573136 1.470823 -0.731917 -0.038342 1.484979 0.485368 -1.788796 -2.860942 -0.410542 0.813201 2.215983 -0.552794 0.531859 1.064306 -1.547667 -0.048985 0.142507 0.098714 -0.471728 0.704713 0.244012 -1.052084 -0.790368 0.799416 -0.527653 -0.836716 0.194349 1.077624 0.067488 -2.665382 1.333884 -0.185778 -0.626954 1.062249 -0.199653 1.725311 -1.604754 -1.655843 1.313247 0.441418 0.172046 -1.176003 0.384137 1.386403 0.271260 0.266434 -1.005551 -2.479203 0.791616 -1.181065 1.191112 0.625242 -0.333601 1.057111 -0.613663 -0.392089 -2.449268 -0.468965 -0.896347 -0.016335 -1.582566 -1.209147 -0.261227 1.806920 1.351201 0.336434 -0.938410 0.335670 2.325315 -1.889169 -0.350059 1.155415 1.390887 -1.878981 0.214169 1.419672 -2.394746 -0.105480 -0.545683 -0.312231 -0.161857 -1.117242 1.331028 0.192385 1.119465 -0.257052 0.512238 0.207727 0.826023 0.839668 0.544018 0.152496 2.663046 2.366481 -0.455149 -0.861656 -1.639444 0.488977 -2.029210 -2.071668 0.503430 0.675498 -1.574391 0.565351 0.756312 2.331741 0.330767 0.176490 -0.016063 -0.243418 +PE-benchmarks/optimal-binary-search-tree.cpp__main = -1.049169 -0.932678 -0.305423 -2.536121 2.278310 2.156838 1.185319 -1.289199 -3.347643 -0.649506 1.376188 -4.067116 -1.218291 3.691899 -1.011497 2.569510 4.759631 0.604269 -1.723161 -0.284486 2.844714 -0.229097 4.642380 4.086572 -2.668143 -0.008866 -0.789708 1.202239 0.286089 0.693294 0.340793 -1.987551 1.677036 -2.714651 -0.798107 -1.489564 0.230401 0.605598 2.156003 -4.807541 0.708444 0.831636 0.479238 -0.871431 -0.847461 0.730256 2.709075 2.749868 -0.292343 1.118740 2.239160 0.119921 -0.051625 0.822393 0.744387 0.061157 0.387495 -0.204385 -1.766276 -1.336676 -0.371253 -0.999330 0.011224 2.801880 3.746578 0.454915 -0.316543 1.618777 0.442345 0.890797 1.687372 0.620375 -0.275920 0.312665 1.371679 -2.894821 -0.502651 -4.568901 -0.705314 -5.920318 -2.151939 0.093583 3.185016 0.797993 1.370614 -0.340805 3.122040 -0.400337 -0.853508 3.069719 3.947034 -2.647790 -1.688110 -1.870963 -1.513465 1.016164 -1.566587 0.481295 1.996011 0.690799 -2.917638 -0.987287 1.043294 1.047091 -1.113990 -1.889251 0.732925 2.558148 -2.531527 -1.811750 -0.321817 2.569364 -0.056772 -5.080559 -1.110746 -1.570096 0.968299 0.550753 -1.415589 -2.347174 0.606353 0.996708 -1.108491 -1.107176 -1.068158 2.387593 1.399343 1.462249 0.550256 1.019533 1.161099 4.618497 0.713645 -1.876411 0.469298 -0.205935 -0.365703 1.620217 -1.618991 -1.580116 0.300115 -3.148553 1.300479 1.932181 -1.906733 -0.984608 0.410733 1.235394 0.606802 9.125529 0.064109 4.058218 2.542262 -3.095363 1.541078 -1.494641 0.048956 0.646375 1.444590 0.026899 -3.622207 -2.807108 2.103740 3.426567 2.370189 -3.524804 -0.347250 -0.049453 -0.060106 -0.342095 0.236300 1.037850 0.500931 -2.142187 -0.643614 2.882127 6.402355 -1.254007 -0.844002 1.702496 1.266709 -0.509461 -3.410705 -1.253540 -1.622581 0.577753 1.171212 0.425486 1.732778 3.999636 -4.881261 2.853163 -0.176975 0.174290 2.706945 1.178718 -3.213589 -3.744491 -0.958581 2.118455 3.677315 -0.479786 -0.164818 0.987805 -2.758688 -0.325986 0.839285 -0.075949 -0.632202 1.372929 -0.025828 -1.399168 -1.570564 0.138414 -0.969876 -0.241649 -0.584607 2.075551 0.783875 -4.228691 3.106951 0.129231 -1.505135 0.004690 -1.008314 2.952774 -2.559841 -3.035843 1.755069 -0.957574 -1.990961 -1.424675 0.280403 1.473527 0.951714 1.325468 -1.658623 -3.153471 2.936713 -0.972918 2.801311 1.404128 -0.249056 2.021442 -0.279918 -1.391001 -2.549269 -2.598678 0.401226 -0.333562 -2.862412 -0.062170 -0.880350 2.865405 2.076829 0.260787 -2.807894 -0.331132 3.261358 -2.579447 -1.072909 2.303512 0.778056 -3.102738 1.091119 2.802661 -3.444048 0.281951 -1.708572 -0.386433 -1.385559 -2.459813 1.578422 0.384985 1.656148 -0.059679 0.342542 0.047459 1.249702 0.811224 0.487212 0.410265 4.353733 2.791863 -1.244247 -0.472233 -3.346816 1.654718 -3.775128 -4.033977 1.646378 0.655241 -2.393660 0.137289 0.520053 2.996339 0.459652 -0.952687 -1.311301 0.940433 +PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -0.837625 -1.002601 -0.480240 -2.077852 1.150755 1.112085 0.595764 -0.728367 -2.387052 -0.462739 0.653730 -2.133486 -0.088311 2.479245 -0.561395 2.133511 3.280480 0.575150 -1.000553 0.117335 2.408304 -1.044547 2.554480 2.481893 -1.638244 -0.221635 -0.379202 1.193265 0.201136 0.779819 0.450872 -1.225856 0.620497 -2.270062 -0.469800 -1.861370 0.517606 1.248580 1.720899 -3.513209 0.681399 0.722376 0.727554 -0.747127 -0.746472 -0.362682 1.089937 1.889901 -0.618455 0.555170 1.721467 0.416376 -0.328747 0.515301 0.223001 0.538549 -0.258591 -0.139910 -0.895858 -0.846780 -0.003369 -0.633104 0.808647 1.702488 2.501045 0.110857 0.082055 1.310171 0.317144 0.481997 1.279974 0.112832 -1.004478 -0.488544 0.803863 -2.709491 -0.328146 -3.519410 -0.117683 -4.000548 -1.143235 0.207095 1.672234 1.064978 1.146714 -0.217556 1.796256 -0.767079 -0.428073 2.309259 1.938889 -1.578255 -0.939543 -1.752034 -1.410965 0.959908 -1.047106 -0.402485 1.291244 0.529750 -1.572029 -0.823669 0.965956 1.099357 -0.686530 -1.783365 0.547495 1.659681 -1.712849 -1.950631 0.219485 2.139024 -0.641297 -3.052753 -0.238262 -1.772769 0.145795 -0.020779 -0.583266 -1.764936 0.129181 0.878317 -0.536473 -0.955495 -0.968110 1.704090 0.860514 0.678004 0.317842 0.091922 0.271625 3.113536 0.372551 -1.376235 0.152203 0.307327 -0.602430 0.686107 -1.612295 -1.267526 0.508307 -2.247176 0.162393 1.410421 -1.180046 -0.398099 1.160143 0.785075 0.636726 7.408516 0.353470 2.680434 1.894750 -1.854660 1.585981 -0.443010 0.062576 0.682488 0.796873 -0.278080 -3.293306 -1.823531 0.825212 1.897248 1.705300 -1.890594 -1.171408 -0.395333 -0.165952 0.379592 -0.241872 0.502949 -0.093556 -1.717676 -0.385892 1.638230 4.372721 -0.409883 0.447535 1.221365 1.420333 -1.737757 -3.261163 -0.891279 -2.189377 0.252118 0.223404 -0.093161 1.184266 2.539307 -3.395996 1.789983 -0.186974 0.328107 1.461676 0.495110 -2.076683 -3.862829 -0.697383 1.125563 2.904874 -1.129296 0.896182 0.910060 -1.663995 -0.086575 0.444125 -0.206759 -0.393959 0.704880 -0.226331 -0.889857 -0.891765 0.959155 -1.149295 -0.636961 -0.115527 1.161870 0.887222 -1.825955 1.704507 -0.186361 -0.666576 0.668121 -0.406868 2.029840 -1.860631 -1.849897 1.427241 0.257827 -0.442414 -0.905543 0.397764 1.504779 0.386265 0.221542 -0.677575 -2.604577 1.224360 -0.967159 1.441808 0.793875 -0.486522 0.742616 0.195736 -0.456047 -2.051693 -1.469390 -0.772554 -0.051354 -1.904970 -0.827740 -0.419765 2.008085 1.331740 0.305237 -1.842725 0.379290 2.466604 -1.187834 -0.482894 1.365349 0.046975 -2.201319 0.112947 1.800765 -2.694710 0.212795 -1.077526 0.539980 -0.301853 -1.449983 1.262913 0.539170 1.231434 -0.160200 0.310020 0.060034 0.801944 1.134807 0.333615 0.183695 3.090215 1.319376 -0.186468 -0.695265 -1.881092 0.399237 -2.366237 -2.283064 0.602989 0.739106 -1.738464 0.553650 0.877393 2.333083 0.298493 0.590459 -0.156918 0.005925 +PE-benchmarks/n-queen-problem.cpp__solveNQUtil(int (*) [4], int) = -3.627491 -5.416393 -4.018820 -8.952692 5.169723 7.119606 3.441723 -6.848330 -11.025823 0.621155 5.724333 -10.620533 0.832087 11.153765 -2.838785 11.381240 12.921771 1.558422 -7.313855 -0.829388 10.727491 0.868920 12.982965 11.478211 -7.356666 -0.050291 -2.503293 2.126515 3.871357 0.152637 1.022681 -2.452646 5.888881 -12.222759 -4.571595 -5.363126 0.663769 3.943780 10.880531 -12.623628 3.302891 0.423384 3.377361 -3.309223 -3.601421 0.399455 5.214270 8.557611 -0.077194 3.673999 6.811558 0.662865 -0.782331 2.332790 2.938466 2.993131 1.214467 -0.112536 -3.035366 -6.230540 -0.560210 -0.042435 2.182521 8.490872 9.830621 1.181894 -1.164314 7.760743 3.867892 1.940072 6.881808 1.718131 -4.020283 -1.108796 3.072470 -12.714665 0.227228 -11.067437 -2.258234 -15.282305 -4.446568 3.395157 7.299944 -1.180309 6.926186 0.800649 8.712870 -3.039049 -4.785286 8.324825 9.071230 -9.275057 -4.297787 -4.199045 -4.450727 2.127483 -4.473566 1.221826 6.395179 1.602024 -8.314303 -2.670446 2.504766 5.674620 -3.736817 -7.098197 3.863356 6.266660 -7.140861 -7.824774 3.709908 8.622796 -3.338973 -13.559661 -3.459270 -7.213724 3.410151 -0.838034 -4.309803 -9.603150 0.969984 3.844152 -2.638483 -5.696099 -0.261791 3.919384 4.969399 6.066339 0.319476 1.753058 2.557485 16.634034 1.209638 -6.720167 2.811801 -0.923613 -0.333191 6.312857 -4.194920 -6.280135 1.496535 -10.072580 1.923497 7.409799 -5.232952 -0.655464 7.478593 6.371144 0.072873 28.164104 1.221178 12.630064 9.668767 -8.533549 0.101087 -5.138243 1.647717 3.166174 3.199189 -1.487868 -12.772851 -9.115120 5.801104 9.797799 7.304851 -9.880361 -1.839371 -0.224132 -0.857904 0.759459 -1.283508 1.307520 1.835324 -7.811327 -2.148902 7.632932 18.379675 -4.536791 2.937854 5.308994 3.194220 -4.648711 -9.552754 -5.066291 -7.750904 2.981740 2.542630 1.633222 5.862807 11.612443 -9.822101 8.382153 -3.103709 0.652239 6.429337 5.097578 -10.322928 -9.019865 -4.907672 3.923757 10.002458 -4.720769 1.031779 5.556970 -8.388507 -1.068492 1.926302 -2.611671 -1.946402 3.314403 2.511202 -3.034571 -2.926273 6.038082 -1.644548 -1.618644 0.826525 7.168584 0.210487 -8.310030 7.357323 1.070927 -4.287374 2.453454 -2.412251 9.205660 -7.497003 -7.016542 6.598211 0.253387 -1.849229 -2.961736 1.783576 6.045855 3.170519 4.056875 -6.373108 -8.249467 6.652221 -4.300667 8.456839 4.154523 -2.682534 3.423620 -6.928782 -1.653720 -8.465757 -6.529672 -4.057019 1.521494 -9.083325 -2.252840 -2.300856 9.801848 4.528651 0.987554 -8.593024 2.229258 8.771379 -9.027316 -1.221381 5.622549 6.037447 -11.225559 1.793317 7.382747 -10.191812 3.118934 -2.769482 -2.508624 -4.046606 -5.997252 7.659289 4.518692 7.126859 -2.452791 2.177540 2.872067 4.043560 3.110063 2.213690 3.061504 11.552723 6.566953 -1.246229 -5.829059 -9.646659 4.376174 -9.975688 -11.441595 5.999100 2.958335 -9.139787 0.765235 1.250408 11.493788 3.239148 -2.530313 -2.486701 2.666238 +PE-benchmarks/n-queen-problem.cpp__solveNQ() = -1.223316 -1.534563 -0.515338 -3.023911 2.125120 1.896847 1.285675 -1.364024 -4.046182 -0.558421 1.487305 -4.089269 -0.608070 4.335141 -0.878651 3.346503 5.107844 1.012640 -2.165270 -0.111507 3.367631 -0.396695 4.485241 4.136264 -2.645452 0.065851 -1.221413 0.981848 0.460659 1.149393 0.289635 -1.952430 1.670827 -3.208914 -0.894089 -2.103589 0.210270 1.441153 2.663695 -5.246809 1.179762 1.462396 1.681540 -1.303501 -0.972510 0.073876 2.431136 3.101420 -0.289923 1.159864 2.229621 0.228836 -0.029707 0.902180 1.042657 0.832006 0.366557 -0.563992 -1.878420 -1.541215 -0.411274 -0.901640 0.537891 2.939177 3.721853 0.393397 -0.388190 1.864201 0.894135 1.009438 2.207044 0.483548 -0.764269 -0.569258 1.251799 -3.254785 -0.320295 -4.358646 -0.505274 -6.241847 -2.119301 0.631975 3.530691 1.337338 1.757672 -0.519414 3.323703 -1.229691 -1.116470 2.978620 3.811175 -2.881943 -1.764827 -2.108306 -1.880168 1.180625 -1.637524 -0.179586 2.064274 0.586923 -3.148433 -1.076318 1.080083 1.511915 -1.230891 -1.826721 1.110405 2.787443 -2.932610 -2.514226 0.239206 3.085124 -0.480210 -4.972252 -0.634116 -2.154162 0.068459 0.413488 -1.718361 -2.786951 0.738318 1.020943 -1.363740 -1.454919 -1.689587 2.417061 1.037600 1.636425 0.453410 0.589332 0.873235 4.843787 0.724836 -2.480338 0.851708 0.042855 -0.284138 1.765958 -1.813039 -2.333170 0.325870 -3.648447 0.567364 1.973543 -2.178356 -0.482271 0.557868 1.771232 0.523152 9.029400 0.077389 4.371787 2.904345 -3.177850 1.682384 -1.163135 0.163739 0.746686 1.627353 -0.136647 -3.541258 -3.209274 2.062356 3.702631 2.872069 -2.948438 -0.790194 -0.323232 -0.184357 0.346660 0.134234 0.814203 0.638783 -2.991348 -0.807589 2.478847 6.572039 -1.205205 -0.239873 1.865997 1.404012 -1.228450 -3.488294 -1.472769 -2.728896 0.720190 0.662762 0.126966 2.067338 4.444226 -4.639545 3.483369 -0.729635 0.025435 2.645309 1.022859 -3.354611 -4.081089 -1.597432 1.914133 4.324432 -1.094822 0.109271 1.423671 -3.047669 -0.395287 0.576279 -0.377724 -0.800212 1.389188 0.036311 -1.418839 -1.276291 0.781861 -1.022565 -0.790787 -0.372488 2.275172 1.334787 -3.237120 3.042276 0.187053 -1.306043 0.592756 -0.510510 2.886788 -2.658421 -2.993195 1.977160 -0.334536 -1.582073 -1.403863 0.394744 2.110824 0.819376 0.800833 -1.507233 -3.322902 2.842388 -1.227334 3.227698 1.554676 -0.814538 1.546514 0.511372 -1.014898 -2.478283 -2.401801 -0.853218 -0.441934 -2.834337 -0.680662 -1.060317 3.355594 2.092652 0.462256 -2.859090 -0.166587 3.567483 -2.423999 -0.828238 2.571649 -0.079862 -3.267592 0.936549 3.253689 -3.836482 0.507543 -1.771065 -0.034200 -1.269729 -2.233313 2.139222 0.868860 1.958815 -0.468282 0.343407 0.162751 1.216825 1.247573 0.121320 0.495989 4.740834 1.862431 -0.845651 -0.635997 -3.337067 1.553206 -3.880264 -3.701793 1.478212 1.093988 -3.258789 0.395272 0.578900 3.514124 0.548537 -0.385341 -1.130827 0.812762 +PE-benchmarks/n-queen-problem.cpp__main = -0.303694 -0.388213 0.059119 -0.812288 0.546232 0.194777 0.335051 -0.291624 -1.112257 -0.261360 0.353070 -1.049637 -0.197946 1.120806 -0.253526 0.744500 1.330879 0.375608 -0.502377 -0.155493 0.767673 -0.321241 1.144145 1.123698 -0.702233 0.065571 -0.336001 0.376545 0.166516 0.458762 0.025011 -0.468728 0.388994 -0.648320 -0.099892 -0.651868 0.035263 0.448798 0.505002 -1.423041 0.319617 0.393164 0.592275 -0.290503 -0.181243 0.266173 0.624318 0.786757 -0.080272 0.400413 0.607433 0.055125 0.074300 0.259429 0.332619 0.191739 0.322198 -0.250132 -0.516882 -0.272837 -0.132348 -0.438523 0.150537 0.755880 0.999661 0.069557 -0.095821 0.313827 0.199513 0.300411 0.628649 0.116360 -0.199387 -0.195804 0.289641 -0.809692 0.076583 -1.254229 -0.113852 -1.931671 -0.580838 0.123868 1.070510 0.402376 0.318742 -0.050823 0.879771 -0.239893 -0.260658 0.649584 0.965757 -0.664406 -0.464508 -0.415207 -0.497707 0.345149 -0.406783 -0.107672 0.511674 0.308276 -0.782074 -0.197912 0.423442 0.278350 -0.326734 -0.262063 0.242509 0.740028 -0.943479 -0.554181 -0.037028 0.733102 0.000543 -1.216411 0.075697 -0.618622 0.148035 0.098536 -0.468220 -0.548298 0.228126 0.192383 -0.384894 -0.174653 -0.811453 0.670016 0.126861 0.376387 0.088287 0.110626 0.153363 1.053853 0.153834 -0.706414 0.190323 0.075235 -0.140733 0.419950 -0.527332 -0.615127 0.192574 -0.917630 0.155281 0.284722 -0.590932 -0.193009 0.089828 0.436343 0.149427 2.015420 -0.001910 1.091382 0.727458 -0.757687 0.438660 -0.202288 0.097501 0.250314 0.500127 -0.064581 -0.658093 -0.849686 0.475177 0.951447 0.750631 -0.714282 -0.292029 -0.102328 -0.028960 0.220263 0.082339 0.166517 0.077433 -0.755109 -0.226437 0.452945 1.605089 -0.162213 -0.073433 0.394329 0.256100 -0.375613 -0.910295 -0.327251 -0.571628 0.213038 -0.029046 0.006451 0.509615 1.152468 -1.514342 0.964441 -0.220728 0.026134 0.698683 0.153675 -0.785202 -1.325896 -0.428231 0.450620 1.186835 -0.253659 0.040547 0.435499 -0.807106 -0.126183 0.057093 -0.025981 -0.281056 0.365123 0.070537 -0.407775 -0.302871 0.054254 -0.188513 -0.119187 -0.105270 0.589025 0.439362 -1.043862 0.741253 -0.029684 -0.330149 0.128610 -0.016147 0.621335 -0.692223 -0.731612 0.398793 -0.125483 -0.512433 -0.506754 0.092932 0.537626 -0.047657 0.076336 -0.307753 -0.719244 0.748189 -0.431150 0.767723 0.410675 -0.235311 0.443884 0.351956 -0.233779 -0.557542 -0.345009 -0.275565 -0.376163 -0.566523 0.100013 -0.288810 0.784719 0.627140 0.196322 -0.596729 0.120968 1.010172 -0.491987 -0.327032 0.696190 -0.155786 -0.673181 0.461535 0.851138 -1.049207 0.052903 -0.531169 -0.102551 -0.219297 -0.494675 0.639063 0.176663 0.472428 -0.106116 0.111811 -0.083641 0.386462 0.277952 -0.049812 0.104519 1.316596 0.636599 -0.191994 0.009292 -0.794469 0.335523 -0.989641 -0.810364 0.228938 0.371670 -0.847093 0.153453 0.067583 0.902470 0.151988 -0.065308 -0.303687 0.261501 +PE-benchmarks/graph-coloring.cpp__Graph::addEdge(int, int) = -0.732709 0.131275 1.158565 -1.691132 1.282604 1.588591 0.467775 -1.001141 -1.352219 -0.423541 0.219422 -1.636945 -0.983001 1.961560 -1.084751 0.701790 2.473362 0.520061 -0.891399 -0.351780 1.413026 0.162923 2.560820 2.280299 -1.829199 -0.166679 0.494226 1.338625 0.525560 1.416344 -0.638854 -1.164082 0.669690 -0.686293 0.080693 -1.112735 0.168030 -0.027823 0.334928 -2.519223 0.277208 -0.000512 -0.543345 -0.318886 -0.127349 0.236960 1.933980 1.524032 -0.075622 0.057414 1.183899 0.856777 -0.091711 0.427234 0.689185 0.292905 1.353593 -0.252732 -0.591940 -0.689236 -0.448108 -0.726291 -0.018470 1.996445 2.094452 0.523174 0.018300 0.223322 0.044385 0.371603 0.526870 0.493345 -0.098310 1.055615 0.592506 -1.492855 0.669840 -2.142106 -0.278210 -2.181094 -1.000056 -0.654773 0.671493 0.447634 0.810695 -0.075125 2.012382 -0.058288 -0.024175 1.021920 2.426623 -1.687703 -0.647812 -1.011534 -1.047388 0.403589 -0.975008 0.325261 -0.188284 0.371922 -1.450776 -1.044070 0.380426 0.594775 -0.711595 -0.137881 0.052807 1.630737 -1.701654 -0.792813 -0.773553 0.654590 -0.256615 -2.856497 -1.110148 -1.211712 1.483235 -0.063738 -0.696131 -1.682666 0.540318 1.473488 -0.463287 -0.666982 -0.709301 1.399893 0.988951 0.148154 -0.125300 0.032183 0.431055 2.132614 0.926628 -0.916697 -0.011572 -0.053618 -0.933218 0.091817 -1.091561 -0.173702 0.038084 -1.476333 0.109531 1.671977 -1.059749 -0.323737 0.202949 -0.003975 0.906564 5.775425 -0.502744 1.575098 0.924275 -2.063030 0.415716 -0.342844 -0.193109 0.307085 0.706037 0.720541 -2.601160 -1.569494 1.177410 1.964529 1.240441 -1.673263 0.261996 -0.490764 -0.208251 -0.350520 0.207865 0.434322 -0.514542 -1.185199 -0.615634 1.215461 3.054384 -0.793970 -1.972472 0.806828 0.009233 -0.361743 -1.091462 -0.563444 -0.142515 0.396977 0.749632 -0.099849 1.130155 2.312993 -3.149788 1.709485 0.000190 -0.637363 1.854232 -0.000384 -1.056328 -0.555973 0.019778 1.626461 1.657111 -0.027776 -0.354799 0.272732 -1.781185 -0.227370 0.377507 0.813533 -0.732638 0.875270 0.961910 -1.567473 -1.391549 -0.651739 -0.081733 -0.460984 -0.805976 1.010867 -0.698691 -3.320444 2.254629 0.227798 -0.438682 0.372789 -0.744169 1.195233 -1.853768 -2.097688 0.949918 -0.207682 -0.689106 -0.654061 0.106043 1.233076 0.533945 0.953059 -1.683354 -1.756628 1.027851 -0.383981 1.451425 0.676464 0.620647 1.432174 -0.055366 -0.333298 -1.480213 -0.917217 0.832916 0.148866 -1.475900 -0.286104 -0.496562 1.660632 1.849023 -0.358996 -0.793655 -0.353196 1.834824 -1.518935 -0.526422 1.039307 0.843066 -1.576629 0.219388 1.301742 -1.469047 -0.761400 -0.812786 -0.745109 -0.763649 -1.628771 0.905632 -0.477809 0.862161 0.618082 0.214043 -0.656864 0.707882 0.352243 0.226649 0.591095 1.971821 2.057892 -0.677290 0.226615 -1.775901 1.114230 -2.445341 -2.011514 0.808448 -0.542757 -0.706542 0.111221 -0.192798 1.664871 0.240149 -0.017307 -0.116176 0.051508 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::push_back(int const&) = -0.393401 0.422519 1.031386 -1.031333 0.911656 0.566330 0.289656 -0.279628 -0.773459 -0.525266 -0.148460 -0.897224 -0.903899 1.280504 -0.616633 0.073999 1.790952 0.501754 -0.302807 -0.413763 0.851887 -0.381816 1.574160 1.505993 -1.357415 -0.030149 0.664674 0.861908 0.356394 1.202490 -0.612930 -0.953458 0.365006 -0.118637 0.544261 -0.984653 0.119830 -0.152330 -0.193692 -1.907424 0.155767 -0.015483 -0.204815 -0.182168 -0.031300 0.779597 1.547288 0.969966 -0.421378 -0.029383 0.874053 0.620141 -0.097963 0.297384 0.378952 0.174232 1.031777 0.169529 -0.481999 -0.155502 -0.293692 -0.832648 0.017336 1.302350 1.489585 0.233028 0.090516 0.007296 -0.041530 0.269086 0.155668 0.281825 0.394614 0.619241 0.531091 -0.970691 0.242467 -2.185488 -0.192089 -2.616972 -0.754199 -0.842108 0.533092 -0.078097 0.281471 -0.102190 1.382458 0.134932 0.371358 0.607444 1.754056 -0.984465 -0.436997 -0.858633 -0.801377 0.442703 -0.636845 0.104814 0.202661 0.027407 -0.937050 -0.945297 0.461861 0.185601 -0.488910 -0.001059 -0.093111 1.121425 -1.237884 -0.317652 -1.042174 0.074072 -0.001614 -1.868447 -0.179050 -0.785787 1.111922 0.056561 -0.349325 -0.966815 0.316298 1.033208 -0.484618 -0.318287 -0.754878 1.269090 0.517544 -0.075629 0.042366 -0.180365 0.280622 0.961390 0.974930 -0.665891 -0.209115 0.093297 -0.913571 -0.285879 -1.050647 -0.113064 0.664561 -0.889177 0.120973 0.784143 -0.762436 -0.322448 0.525266 -0.447182 0.868483 3.416189 -0.418630 0.818023 0.264811 -1.401633 0.626074 0.021844 -0.357153 0.243614 0.811920 0.630133 -1.440099 -1.010450 0.605399 1.272015 0.837819 -1.148896 -0.197742 -0.512979 -0.207236 -0.164074 0.156924 0.268295 -0.507400 -0.738695 -0.435400 0.615118 1.914148 -0.449047 -1.544312 0.355047 0.286026 -0.283268 -0.909225 -0.256530 -0.189793 0.222384 0.197102 -0.242304 0.853825 1.563733 -3.006717 1.193289 -0.108337 -0.541645 1.076828 -0.167630 -0.449786 -1.052387 0.368348 1.265526 1.273501 0.190920 -0.134402 0.039200 -1.167345 -0.168691 0.086990 0.810292 -0.584731 0.563585 0.487927 -1.173862 -1.013237 -0.690934 -0.063023 -0.385776 -0.485327 0.511122 -0.174620 -2.768394 1.648919 -0.130720 -0.191598 0.176767 -0.382907 0.517944 -1.317703 -1.511133 0.446208 -0.096081 -0.477232 -0.646495 -0.000830 0.949210 -0.083431 0.456571 -0.878972 -1.521547 0.725538 -0.311385 0.837731 0.488394 0.599123 1.310276 0.380108 -0.267713 -1.117797 -0.289140 0.571623 -0.237513 -0.781671 -0.017482 -0.380949 0.971460 1.535718 -0.270168 -0.175254 -0.264594 1.297858 -0.996112 -0.491824 0.806547 0.446839 -0.700777 0.378291 0.955423 -1.064124 -0.897462 -0.774836 -0.441146 -0.216755 -1.102292 0.437810 -0.726183 0.309425 0.667349 0.027998 -0.656052 0.586144 0.153043 0.024624 0.135450 1.306914 1.819926 -0.839331 0.431610 -1.036537 0.682646 -1.754411 -1.204426 0.264368 -0.371827 -0.333964 0.150210 -0.107557 0.890154 -0.132064 0.233602 -0.089607 -0.109375 +PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -5.924670 -1.560302 1.541769 -13.074218 10.518838 12.489630 4.544141 -6.097537 -13.117952 -4.559720 3.770240 -17.136783 -6.711640 17.783743 -5.902612 10.577780 22.350036 2.405251 -7.357478 1.027748 14.011386 0.138057 19.965669 17.503798 -12.863623 -1.529577 -0.958806 7.707979 0.253368 7.257618 0.796357 -12.647199 6.101261 -9.932936 -2.861533 -7.769912 2.571016 2.447626 7.462940 -22.050341 3.564683 5.014848 -0.237555 -5.128784 -4.178158 -2.717050 14.076133 13.451776 -2.452121 0.510471 9.997582 4.991213 -2.344903 3.915547 2.860909 0.499293 1.536707 -3.389690 -7.361791 -7.109307 -2.068193 -4.280213 0.343307 14.294176 17.455183 3.280454 0.224895 6.950733 -0.039121 3.933164 5.556286 2.227270 -1.076853 3.369891 5.857549 -11.419733 -2.064013 -19.225524 -2.580858 -21.679308 -8.946931 -1.542555 9.600717 8.629110 7.166040 -3.306720 14.444205 -2.909540 -1.788017 14.246259 19.663675 -12.503613 -6.843039 -12.101530 -9.203567 5.308290 -8.233753 1.184524 2.857386 2.022913 -13.014812 -7.370253 2.556355 6.033625 -4.893700 -8.218392 2.858995 12.382165 -12.109845 -8.942274 -2.211274 10.341128 -1.937980 -23.827183 -8.106965 -8.665040 3.022649 1.212888 -5.246207 -13.280206 3.013252 7.740253 -4.464014 -7.143738 -6.087905 12.221267 6.625894 4.577636 1.976418 1.720403 5.093012 20.463532 4.659472 -7.938667 1.252013 -1.577203 -3.520869 4.079928 -8.757681 -5.574921 0.131569 -14.178737 1.878638 13.204517 -8.732050 -4.142389 -1.283283 2.082257 5.923578 47.595727 -1.040466 16.302874 9.873577 -16.521545 7.697247 -5.155326 -2.600493 1.373782 5.322354 3.211633 -19.331112 -13.002099 10.183296 15.345911 11.588237 -12.861302 -0.089398 -2.063968 -0.892734 -2.622314 0.614915 5.116445 -0.185313 -11.902866 -4.021638 13.873455 28.486140 -5.413774 -7.215741 9.727752 6.967829 -3.300501 -13.537827 -5.830652 -7.909952 2.149313 7.080739 -0.628283 8.839663 19.439948 -21.937831 13.320174 1.214321 -1.129111 11.712428 2.220637 -13.171665 -13.872300 -2.012636 13.018754 16.845562 -2.969341 1.574416 1.901015 -12.923666 -1.439489 4.193982 1.690215 -3.108032 5.894426 0.687601 -9.368504 -10.247560 -0.146368 -5.785881 -3.865689 -4.706273 8.352447 2.935049 -17.485113 17.689102 0.840594 -4.234818 1.388239 -5.860890 13.689498 -13.634564 -16.436314 9.272888 -3.244697 -6.943385 -4.788284 2.117767 9.009118 6.112210 5.013281 -8.158186 -16.847126 10.564687 -2.564761 12.484754 5.618973 2.210939 8.492915 3.059183 -4.381460 -12.619535 -12.993400 3.478359 0.777643 -14.556183 -4.345678 -3.757858 14.483067 11.312421 -1.419862 -12.454607 -3.167995 14.845509 -10.620264 -3.919066 10.446777 1.094324 -15.694642 0.707479 13.084080 -14.696032 -1.730734 -8.266539 0.517990 -6.746221 -14.114251 5.101178 0.587303 7.014612 2.828538 0.775862 -2.441501 4.567927 5.580860 1.819643 2.233838 18.869589 10.265184 -5.028159 -1.135808 -15.185855 6.726931 -19.556774 -19.024018 8.270203 -0.384374 -8.909729 0.868879 1.222527 13.543720 0.480277 1.629152 -2.680092 1.126412 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/graph-coloring.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/graph-coloring.cpp__main = -5.135766 -1.646101 6.541415 -14.251155 13.177553 9.043413 4.551133 -3.805802 -12.542267 -2.423037 1.611192 -13.124815 -6.847580 18.063270 -6.525041 9.417588 19.631392 2.840387 -5.863216 -0.745462 13.714595 -1.212841 18.508460 11.781903 -14.564645 -1.680612 -0.314931 9.540720 1.077329 12.325723 -1.754820 -10.636747 3.786114 -6.884470 -0.141636 -9.154949 3.699657 2.092705 3.235855 -21.785095 3.434083 6.463397 -1.884185 -4.258166 -1.534278 3.174548 12.678195 13.478227 -4.863737 2.078976 8.994781 4.284246 -1.657010 4.024056 0.827606 1.810042 6.526052 -2.688350 -10.030420 -5.483163 -2.500406 -6.429524 3.167795 13.540938 17.054421 0.610216 1.022204 7.628485 0.776213 4.170937 5.961437 1.893790 -1.520241 2.993294 7.503703 -8.105279 -1.352046 -16.582125 -2.784216 -22.875124 -9.016753 -4.067378 9.262010 6.102475 4.309832 -3.214339 15.158005 -1.184816 -0.097701 13.831140 17.191305 -10.622085 -6.221115 -14.704972 -10.116212 4.773557 -7.859302 -3.578282 4.083009 2.636820 -12.062951 -6.870248 0.888144 4.799778 -4.462367 -4.632739 0.327482 13.271498 -14.106566 -10.113382 -4.177485 10.180814 -3.546406 -22.541170 -6.548325 -6.075722 7.057458 0.412596 0.267271 -10.087045 3.221267 10.226229 -5.238954 -4.068908 -7.731924 13.750409 6.059435 2.767991 2.729264 1.069460 2.041020 14.638488 8.113911 -7.387752 -2.654713 1.501104 -4.462467 1.861739 -8.440765 -4.077105 0.450168 -13.986755 1.660186 11.493673 -7.770156 -3.280357 -3.711915 1.097692 8.257015 39.484746 -2.074244 13.707878 5.452377 -16.643029 6.154351 -1.613286 -2.737947 1.691940 5.475115 2.730297 -15.098176 -12.423246 8.547239 12.695852 11.562173 -11.821081 0.446414 -4.834738 -1.943044 0.103768 -0.550372 7.544253 -2.959177 -12.069313 -3.667682 6.544345 26.892440 -4.220927 -13.773270 9.995351 6.658683 -6.476876 -10.805583 -5.220905 -4.324883 -0.624312 4.739740 -2.594793 8.195443 18.679855 -24.973869 14.032354 1.485157 -2.990067 10.520691 -2.345867 -9.460477 -13.788540 -4.395095 12.680778 16.502738 -2.940201 -0.755151 1.759359 -11.130438 1.888285 2.550387 2.991152 -0.920644 5.427111 0.137274 -10.834387 -9.262420 -2.253973 -4.369711 -0.844137 -4.604952 5.868442 1.150810 -22.044357 16.422067 -2.671700 -3.334672 4.282688 -1.239908 12.269527 -12.438134 -16.173049 7.896893 -0.839570 -7.492397 -8.191670 1.845239 9.473710 4.630540 4.302379 -7.752439 -17.001060 7.486020 -4.433312 8.804541 5.599968 1.892964 11.532944 3.975189 -5.081668 -11.464095 -12.085000 3.679643 0.173022 -9.399216 -0.357681 -3.674739 14.095085 10.393729 -1.899332 -7.915362 -6.071416 15.438655 -9.032194 -4.289875 11.209480 -2.818078 -13.191114 2.412425 14.405499 -12.814378 -3.840516 -7.573484 2.014584 -6.489893 -9.560476 4.952900 -1.131854 3.953744 2.460300 1.653051 -5.495415 3.288279 4.272165 -0.034357 -1.034612 19.976572 14.230265 -8.086767 2.219086 -10.921394 7.344356 -18.268471 -14.641416 4.903425 -3.043205 -5.333138 4.589694 1.530017 12.417531 0.248636 1.164692 -0.683903 -2.002309 +PE-benchmarks/graph-coloring.cpp__Graph::Graph(int) = -1.065045 -1.091240 0.397794 -2.880868 1.590059 1.126466 0.776590 -1.114850 -2.235303 -0.333864 1.324552 -1.360350 -1.092358 2.626712 -0.833288 1.475699 1.540103 -0.373644 -1.636414 -0.870990 2.513151 -0.978867 2.524549 1.468141 -2.523991 -0.288118 -0.348416 1.965832 0.763159 1.367521 0.353198 -0.049643 -0.269311 -0.934801 0.398762 0.069996 0.481554 0.487506 0.436485 -2.241242 0.554423 1.325369 0.997471 -0.619996 -0.761149 -0.442517 0.942338 2.202528 -0.172108 0.028468 2.385248 -0.212172 0.254844 0.396161 1.091862 0.104403 1.751852 -0.147152 -0.354071 -1.191988 -0.287479 -0.473503 0.887398 2.135641 2.535853 -0.430207 0.000705 1.018199 0.306452 1.410213 1.672500 0.332332 -1.194381 -0.648243 1.663784 -1.357908 0.333545 -2.394678 0.219915 -2.413931 -1.298022 0.206216 1.609627 0.843997 1.033075 -0.034750 2.249198 -0.040309 -1.122410 0.612685 1.333885 -0.613173 -0.760558 -1.308962 -1.725243 0.556193 -1.206310 -0.309625 0.768066 1.323558 -1.732910 0.551646 0.098295 0.998993 -1.158708 -0.611942 -0.292426 1.767619 -1.042306 -0.964747 0.473405 2.254369 -0.333811 -3.206310 -0.858204 -2.341069 -0.197264 -0.902446 -0.012082 -0.444756 0.158106 1.153668 -0.716948 -0.755397 -1.738925 1.345506 1.306281 0.662071 0.108552 0.217000 -0.035735 1.855967 0.307743 -1.159696 -0.664373 0.187220 -0.430331 1.204961 -0.557106 -0.530067 0.523422 -1.505518 -0.003106 0.517016 -0.424573 -0.342089 -0.073026 0.838113 0.543622 5.068871 -0.082308 2.282733 1.133219 -1.190609 1.033270 0.361715 0.382397 1.041877 0.874645 -0.985705 -1.441420 -2.059728 1.419178 1.784429 1.367234 -1.474311 0.167936 0.035512 -0.403690 -0.223470 -0.000430 0.289518 -0.232934 -1.315802 -0.611928 0.798850 3.012731 -0.651842 -2.021661 1.680521 1.186984 -1.618526 -1.404103 -0.755178 -1.279045 0.145343 -0.164566 0.190063 1.598327 2.504372 -2.521467 1.790185 0.073067 -0.349956 2.237067 -0.888105 -1.281493 -2.847615 -0.443117 0.233535 2.158615 -1.008885 -0.723917 0.786472 -1.919088 0.457762 -0.023938 -0.389713 -0.416701 0.986191 -0.699792 -0.522282 -1.071287 -0.750912 -1.111881 0.803972 -0.730959 0.868065 -0.103306 -2.042772 1.708602 -0.314217 -0.592377 0.148617 -0.107267 1.681541 -1.155550 -1.580943 1.102367 0.064346 -0.670224 -1.975229 0.390720 1.331388 0.007606 0.172596 -1.605902 -0.834893 1.423365 -1.842129 1.736998 0.873465 -0.303459 0.438122 1.510713 -0.286050 -1.386871 -0.637055 -0.261359 0.226648 -2.254418 -0.422969 -0.642164 1.821266 0.574819 0.202792 -0.753679 -0.188155 2.553901 -0.801211 -1.332272 0.844582 -1.008693 -1.756873 1.136931 1.594767 -1.346824 -0.107038 -1.598584 -0.262419 -1.243429 -2.015561 1.879096 1.106354 1.912102 -0.495679 0.887995 0.123995 0.569985 0.673676 -0.067161 -0.257990 3.177373 1.193679 -0.938137 -0.923121 -2.208999 1.318985 -1.535737 -1.358586 0.776772 -0.035305 -1.028146 0.538028 -0.298880 2.454892 0.663988 -0.151995 -0.460183 0.048109 +PE-benchmarks/graph-coloring.cpp__Graph::~Graph() = -0.620037 -0.072142 0.280624 -1.537047 0.982299 1.102020 0.318599 -0.519491 -1.187979 -0.190627 0.059854 -1.467340 -0.378510 1.750326 -0.588266 0.958425 1.987659 0.454969 -0.550191 -0.028971 1.338963 0.122047 1.610034 1.379035 -1.330635 -0.239200 0.334282 0.913683 -0.037378 1.233748 0.015693 -1.724991 0.171410 -0.439934 0.160537 -0.879759 0.392217 0.504416 0.690434 -2.155419 0.440124 0.692259 0.664798 -0.530629 -0.319819 -1.058433 1.363862 1.317597 -0.507610 -0.104060 1.152284 0.948151 -0.296351 0.314754 0.272684 0.312886 0.729029 -0.412972 -0.605002 -0.584283 -0.207989 0.134629 0.292357 1.391910 1.705617 0.284038 0.167354 0.418996 0.180113 0.499922 0.507733 0.090712 -0.430413 0.289673 0.458978 -0.795095 -0.046580 -2.322710 0.130590 -1.826146 -0.761766 -0.296378 0.698629 0.834081 0.606527 -0.229253 1.391590 -0.283999 0.097713 1.029115 1.669618 -0.800025 -0.558373 -1.311901 -1.327799 0.862005 -0.709605 -0.146354 0.317900 0.283586 -1.069664 -0.970779 0.082547 0.626679 -0.485547 -0.528937 0.270027 1.146443 -0.949083 -0.992195 -0.167423 1.153981 -0.383763 -2.132955 -1.117465 -1.159929 -0.554659 -0.121720 -0.463920 -1.327956 0.115209 0.787012 -0.598443 -0.529768 -0.752057 0.862220 0.737791 0.098002 0.124918 -0.267388 0.218368 1.692949 0.194282 -1.060666 -0.016857 0.197891 -0.395674 -0.069568 -1.263534 -0.530080 -0.245941 -1.285882 0.232581 1.175067 -0.846595 -0.407579 -0.358208 -0.121680 0.836880 4.577849 -0.249176 1.246361 0.876186 -1.486394 0.675863 0.090034 -0.293383 0.097976 0.651106 0.329611 -1.111609 -1.290099 0.752205 1.348190 1.204219 -0.519049 -0.287862 -0.423659 -0.342982 0.021075 -0.019936 0.364387 -0.570965 -1.111260 -0.410399 1.011522 2.215070 -0.176904 -1.541319 0.752688 1.655058 -0.678093 -0.736622 -0.485503 -1.599199 0.193791 0.315748 -0.258634 1.106445 1.861998 -2.903847 1.365053 0.543036 -0.196013 1.065236 -0.083766 -1.030443 -1.468170 0.059991 1.213922 1.621523 -0.711781 0.462017 0.167453 -1.206452 -0.065872 0.213246 0.305154 -0.490713 0.470395 -0.050423 -1.078356 -0.890476 -0.187197 -0.665197 -0.776483 -0.699342 0.632990 0.665781 -1.862351 1.631384 0.044158 -0.185708 0.514127 -0.612154 1.033712 -1.476704 -1.456148 0.706254 0.080202 -0.005672 -0.213891 0.236718 1.221164 0.252512 1.030381 -0.734891 -1.194228 0.654806 -0.274924 0.965239 0.513183 0.110236 0.325995 0.214719 -0.193567 -1.066440 -0.912756 0.413851 0.265953 -1.205052 -0.618080 -0.358381 1.336643 1.256794 -0.153749 -1.059762 -0.774768 1.450762 -0.682187 -0.206970 0.901952 -0.908155 -1.293139 -0.193198 1.227088 -1.416063 -0.396372 -0.984209 0.494949 -0.384603 -1.258828 0.647095 -0.034924 0.634579 0.267431 -0.326662 -0.408412 0.567596 0.799480 0.010142 0.272875 1.553570 0.147206 -0.299712 0.105810 -1.310542 0.245087 -1.917671 -1.364696 0.412238 -0.645677 -0.970418 0.232050 -0.144755 1.309086 -0.214985 1.128979 -0.054372 -0.167559 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::~list() = -0.142496 -0.006886 0.317486 -0.347641 0.241475 -0.040258 0.100963 -0.029726 -0.361178 -0.232411 -0.045503 -0.206426 -0.228534 0.424989 -0.219002 0.041678 0.622626 0.325616 -0.055431 -0.247810 0.257306 -0.273929 0.531054 0.566406 -0.458769 -0.001610 0.135242 0.395144 0.195975 0.413706 -0.082882 -0.237680 0.144887 -0.029004 0.206466 -0.512567 0.081224 0.163278 -0.133717 -0.745185 0.082408 -0.027549 0.116181 -0.009135 0.025020 0.375471 0.355149 0.338157 -0.142968 0.186537 0.339810 0.252218 0.022198 0.130993 0.066454 0.095011 0.299905 -0.156286 -0.164571 0.026923 -0.066738 -0.449210 0.072432 0.397067 0.549410 0.018373 0.058044 -0.056211 -0.009367 0.143887 0.203785 0.059641 0.017932 0.035077 0.153559 -0.391200 0.090265 -0.844867 -0.047468 -1.144426 -0.246509 -0.287940 0.377765 0.072227 0.021867 0.109250 0.458548 0.064729 0.119443 0.230264 0.446681 -0.267342 -0.160411 -0.204939 -0.231904 0.241287 -0.232367 -0.043234 0.054130 0.217622 -0.259382 -0.271889 0.243345 0.004048 -0.175770 -0.001443 -0.061295 0.395971 -0.605843 -0.138408 -0.367416 0.113275 0.028203 -0.531540 0.128434 -0.370042 0.480117 0.014608 -0.077975 -0.159828 0.079755 0.260394 -0.122377 0.019327 -0.457445 0.353375 0.054865 -0.084869 -0.003011 -0.049724 -0.055232 0.287008 0.249227 -0.290101 -0.112629 0.185086 -0.308146 -0.089886 -0.462957 -0.089893 0.300432 -0.361981 0.097983 0.092266 -0.276203 -0.236728 0.176608 -0.103888 0.298868 0.871433 -0.040059 0.253188 0.195447 -0.361864 0.125013 0.036087 0.029104 0.233533 0.336383 0.055808 -0.253265 -0.361969 0.030085 0.388586 0.302783 -0.282095 -0.232294 -0.207097 -0.019218 0.098284 0.037901 0.073372 -0.239673 -0.237845 -0.109909 0.050704 0.532419 0.002781 -0.219780 0.030326 0.122766 -0.288281 -0.353513 -0.074941 -0.070793 0.070800 -0.022387 -0.057401 0.206706 0.506824 -1.072461 0.423545 -0.075727 -0.000622 0.198041 -0.064849 -0.113830 -0.593519 0.066282 0.279267 0.528601 -0.035282 0.094237 0.185385 -0.410237 -0.058192 -0.006299 0.276597 -0.217964 0.175504 0.205645 -0.333010 -0.256694 -0.122889 0.014680 -0.082074 -0.070043 0.190397 0.092685 -0.928899 0.386325 -0.201859 -0.129715 0.149259 -0.000866 0.208051 -0.456587 -0.407662 0.135644 0.042754 -0.207567 -0.328401 0.030849 0.390417 -0.225311 0.037852 -0.163602 -0.352471 0.218949 -0.190571 0.157976 0.171171 0.061269 0.423451 0.067987 -0.074834 -0.325217 0.072154 0.014631 -0.284561 -0.099683 0.183056 -0.100877 0.279758 0.595344 0.043391 -0.066233 0.173128 0.581138 -0.256803 -0.242130 0.289340 0.127251 -0.057872 0.349830 0.329463 -0.532538 -0.303885 -0.261666 -0.059285 0.145665 -0.257252 0.322656 -0.255489 0.168395 0.148202 0.105643 -0.245396 0.300422 0.082426 -0.018083 0.003753 0.569341 0.619033 -0.171699 0.201539 -0.268930 0.108235 -0.545025 -0.229004 -0.111149 0.025144 -0.134570 0.196071 -0.123380 0.365630 0.019645 0.142226 -0.059017 -0.033206 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::~_List_base() = -0.394564 0.293662 0.788808 -0.897689 0.989896 0.700204 0.309620 -0.139338 -0.774064 -0.500634 -0.197127 -0.875599 -0.899108 1.294235 -0.517137 0.284531 1.744904 0.499320 -0.242340 -0.244828 0.836370 -0.386640 1.548288 1.281021 -1.188268 -0.046985 0.482152 0.795431 0.067936 1.285005 -0.498619 -1.171529 0.417321 -0.147345 0.412566 -0.966251 0.196897 0.030123 -0.188441 -1.839345 0.172320 0.168721 -0.197479 -0.187667 -0.088967 0.518839 1.445307 0.958686 -0.370387 0.054348 0.719999 0.560143 -0.089287 0.369990 0.270076 0.232645 0.678578 -0.120852 -0.659014 -0.183737 -0.296722 -0.873505 -0.032282 1.079811 1.440937 0.128736 0.102463 0.146575 -0.217407 0.305095 0.216143 0.194950 0.366681 0.349846 0.530696 -0.716087 -0.032881 -1.905382 -0.232593 -2.484585 -0.705614 -0.818229 0.573652 0.271887 0.300177 -0.266614 1.317908 0.018891 0.308396 0.706039 1.709376 -0.975754 -0.463356 -1.006152 -0.635476 0.416353 -0.655764 -0.129787 0.284393 0.015639 -0.876921 -0.967575 0.404887 0.149804 -0.394544 -0.245728 -0.152096 1.142969 -1.275528 -0.450764 -1.045777 0.231731 -0.067877 -1.786709 -0.170936 -0.545223 0.766726 0.129097 -0.211583 -0.943663 0.361467 1.013067 -0.455577 -0.363537 -0.593106 1.254700 0.396031 -0.135476 0.169362 -0.064404 0.182446 1.093651 0.988766 -0.591744 -0.281610 0.177188 -0.737660 -0.203036 -0.972974 -0.171029 0.386742 -1.010663 0.129495 0.843239 -0.712169 -0.252439 0.139487 -0.376039 0.863522 3.140835 -0.357422 0.715351 0.227198 -1.412501 0.751395 -0.018803 -0.329740 0.181930 0.720243 0.488476 -1.241606 -0.969785 0.583047 1.121449 0.850135 -1.081377 -0.159475 -0.571514 -0.034985 -0.136380 0.075992 0.462352 -0.388500 -0.735900 -0.356299 0.517515 2.018433 -0.450233 -1.343386 0.546646 0.401697 -0.350035 -0.947834 -0.342089 -0.319222 0.036917 0.284308 -0.258015 0.674553 1.512907 -2.578988 1.152247 -0.056802 -0.469288 0.956411 -0.214476 -0.356262 -1.076661 0.146066 1.277980 1.365828 0.125603 0.044369 -0.030431 -1.057462 -0.072040 0.113684 0.725409 -0.383333 0.463749 0.266112 -1.159000 -0.910605 -0.604121 -0.176539 -0.385746 -0.439235 0.438270 0.189853 -2.570550 1.569609 -0.198596 -0.179353 0.287581 -0.136135 0.719448 -1.154737 -1.531575 0.531107 -0.110885 -0.560042 -0.554491 0.102408 0.904639 -0.011280 0.352723 -0.603554 -1.575143 0.724881 -0.153180 0.726415 0.423200 0.520528 1.238239 0.419794 -0.439571 -1.024145 -0.538194 0.521804 -0.361268 -0.596091 0.023225 -0.290929 1.000119 1.380072 -0.063431 -0.293543 -0.390013 1.339546 -0.939905 -0.393308 0.956914 0.337007 -0.713725 0.352055 1.090578 -1.094052 -0.882145 -0.715493 -0.077790 -0.207722 -1.091782 0.302513 -0.716003 0.241416 0.622036 0.030834 -0.677706 0.492617 0.241952 -0.072383 -0.096430 1.474519 1.509476 -0.791403 0.483278 -0.885280 0.567217 -1.703286 -1.132662 0.195465 -0.258894 -0.349066 0.259348 0.069424 0.788183 -0.215632 0.298600 -0.119954 -0.321288 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_clear() = -1.162899 1.259698 1.688999 -2.251529 3.340724 3.097066 0.929192 -0.648315 -1.719172 -1.308609 -0.685556 -2.785202 -2.794579 3.861390 -1.220138 1.664510 5.025982 0.712428 -0.670426 -0.139906 2.899773 -1.241704 4.647870 3.100282 -3.286227 -0.232474 1.983458 1.759498 -0.392902 3.626712 -1.875500 -3.902127 1.442039 -1.407650 0.874656 -2.212333 0.691988 -0.407591 0.191107 -4.855528 0.337983 0.269628 -1.325068 -0.716924 -0.879306 0.726026 4.778776 2.844370 -1.182612 -0.280921 1.846741 1.001870 -0.533665 1.166640 0.726192 0.894530 1.406362 0.322220 -2.244385 -0.901193 -0.934189 -2.301616 -0.165944 2.946776 4.079067 0.224160 0.296230 1.676381 -1.080567 0.632215 0.143074 0.594748 1.331939 1.108229 1.898634 -2.628446 -0.770671 -5.491011 -1.211136 -6.813650 -2.017872 -2.488772 0.484370 0.227438 1.705251 -1.043734 3.841303 -0.129405 0.840597 2.151367 5.651166 -3.591887 -1.428887 -3.691622 -1.561575 0.733111 -2.080129 -0.493643 1.524318 -1.034299 -2.672954 -3.420207 1.186932 0.905102 -0.980284 -1.918040 -0.518860 3.324765 -3.204326 -2.026093 -3.240658 0.112546 -0.912016 -5.648064 -0.559188 -0.612151 1.776274 0.604394 -0.334768 -4.029707 1.151899 3.774714 -1.284904 -2.246362 0.045161 3.902384 1.611398 -0.097582 0.965644 -0.019235 1.050765 4.203757 3.932797 -1.260243 -1.002126 0.076502 -2.181166 -0.434199 -2.303331 -0.709256 0.708808 -3.252618 0.088696 3.567299 -1.916469 -0.021252 1.170183 -1.232305 2.606979 10.044188 -1.163049 1.915580 0.183576 -4.826092 2.732566 -0.597238 -1.551381 -0.043204 1.794829 1.792675 -4.825833 -2.782168 2.368824 3.158067 2.434943 -3.928217 -0.528005 -1.855848 0.188967 -0.764109 -0.232393 1.952685 -0.657731 -2.222930 -0.958173 2.015556 6.960402 -2.433391 -4.154811 2.513448 1.095031 -0.750588 -3.790711 -1.408967 -1.767856 -0.260196 1.047498 -0.795908 1.802502 4.490739 -6.660678 3.167166 -0.425706 -2.017944 3.156270 -0.481426 -1.057802 -3.034881 0.392339 4.451137 3.671944 0.550361 0.267840 -0.858692 -2.888364 0.039589 0.427424 1.955566 -0.586456 1.232762 0.084925 -3.783427 -2.999399 -1.369240 -0.789949 -1.559392 -1.049842 1.130020 0.683312 -7.372973 5.234529 -0.325669 -0.406412 1.107192 -0.332196 2.711558 -3.204022 -5.067913 2.055347 -0.620829 -1.192200 -1.077354 0.453805 2.353897 0.812339 0.798011 -1.657374 -5.654230 1.910923 0.005790 2.244222 1.114573 2.050645 3.891916 0.850565 -1.830872 -3.453112 -2.291466 1.434134 -0.610340 -2.140475 -1.316936 -0.619025 3.475429 3.651018 -0.212971 -0.803064 -1.990581 3.395638 -3.710291 -0.771970 3.118728 1.837727 -3.102218 0.028747 3.438074 -2.736397 -2.583220 -1.852760 0.085624 -1.365143 -3.833454 -0.131208 -2.203255 0.295495 2.128770 -0.241116 -1.607226 1.058793 0.789973 0.092744 -0.858352 4.124571 4.463408 -3.007349 0.607701 -2.747118 1.811129 -5.293386 -4.210743 1.425142 -0.363820 -0.950385 0.415150 1.330939 1.934482 -1.020133 0.484308 -0.215170 -1.770985 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/graph-coloring.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/graph-coloring.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.466000 0.022700 0.838434 -1.109126 0.898299 0.483608 0.354006 -0.346676 -1.010175 -0.355498 -0.051847 -0.639407 -0.484336 1.408912 -0.528578 0.614707 1.983590 0.697728 -0.341677 -0.475195 1.224737 -0.908910 1.640088 1.633777 -1.367773 -0.063638 0.737576 0.885671 0.476863 1.141017 -0.789990 -0.622657 0.480288 -0.928257 0.422222 -1.399716 0.208310 0.231506 0.303428 -2.105236 0.244152 -0.372299 -0.124769 -0.215891 -0.228669 0.759499 1.282892 1.070502 -0.537931 0.288676 0.986798 0.308750 -0.162730 0.352587 0.385102 0.689821 0.845916 0.574037 -0.492369 -0.126526 -0.264342 -0.973816 0.452543 1.241085 1.578543 0.080578 0.139644 0.393392 0.073324 0.171500 0.436620 0.196151 0.077367 0.160849 0.656432 -1.928273 0.125836 -2.822594 -0.340340 -2.987599 -0.759848 -0.734976 0.497759 -0.618238 0.665882 0.154277 1.381656 -0.064289 0.273302 0.660197 1.593038 -1.349279 -0.529537 -0.967536 -0.808599 0.400422 -0.709817 -0.117606 0.597052 -0.139783 -0.955216 -1.180479 0.837672 0.511659 -0.491614 -0.530467 -0.030086 1.286749 -1.282838 -0.967051 -1.002516 0.159744 -0.423479 -1.842259 0.341353 -0.967116 1.393467 0.093095 -0.359083 -1.361202 0.270529 1.308987 -0.462055 -0.699432 -0.289132 1.312228 0.554201 0.016322 0.093912 -0.315153 0.068843 1.348774 1.349214 -0.804412 -0.218762 0.306994 -1.151042 -0.163194 -1.262577 -0.451099 0.888055 -1.180538 -0.086877 0.845678 -0.837183 -0.088783 1.691093 -0.103298 0.853577 3.833574 -0.215510 0.918944 0.429860 -1.445524 0.835536 -0.007863 -0.110429 0.506419 0.968954 0.305801 -2.202620 -1.139620 0.416985 1.260652 0.963016 -1.479347 -0.967974 -0.777453 -0.126722 0.204612 -0.113856 0.293745 -0.481692 -0.866363 -0.360299 0.458687 2.328042 -0.721404 -1.129968 0.412571 0.178229 -0.832527 -1.812110 -0.454580 -0.826958 0.225792 -0.077676 -0.235569 0.834311 1.646955 -3.121974 1.242655 -0.690883 -0.533996 1.084160 0.031542 -0.543174 -1.680938 0.178413 1.065876 1.524117 0.081426 0.082176 0.403414 -1.220464 -0.122448 -0.024828 0.707263 -0.528294 0.575489 0.420103 -1.242390 -0.890221 -0.155103 -0.114066 -0.662196 -0.072301 0.589881 -0.162689 -2.699360 1.450751 -0.224424 -0.292392 0.733212 -0.115350 0.776270 -1.368811 -1.549032 0.729556 0.286838 -0.038790 -0.787756 0.088167 1.167668 -0.171662 0.062513 -0.780183 -1.873717 0.505919 -0.541142 0.844925 0.506629 0.304679 1.417336 0.120424 -0.328526 -1.424301 -0.112644 -0.031167 -0.300362 -0.780027 -0.644281 -0.324575 1.236312 1.553602 0.028763 -0.057475 -0.020880 1.573943 -1.411269 -0.416247 0.944730 0.902186 -0.769300 0.308034 1.097850 -1.445042 -0.813233 -0.577122 -0.366555 0.001576 -0.981940 0.683964 -0.646273 0.501075 0.373312 0.248917 -0.329111 0.666749 0.308200 0.249516 -0.009517 1.544042 2.124979 -0.860308 -0.053207 -1.008799 0.592074 -1.764696 -1.192301 0.166004 0.205052 -0.612034 0.383802 0.270910 1.148573 -0.047701 0.173186 0.035770 -0.395356 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/graph-coloring.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.624118 0.335706 1.317333 -1.471664 1.199859 0.592435 0.452520 -0.381653 -1.193483 -0.767042 -0.063913 -1.155330 -1.213651 1.872267 -0.877985 0.213108 2.649784 0.788554 -0.463833 -0.761218 1.475994 -0.809035 2.335291 2.264874 -2.053774 -0.129092 1.071286 1.314689 0.851640 1.382677 -0.722554 -1.031571 0.657104 -0.573891 0.789629 -1.583156 0.290936 -0.097268 -0.157276 -2.783940 0.221135 -0.315014 -0.311301 -0.221426 -0.156940 1.553337 2.029420 1.482265 -0.803465 0.135148 1.450426 0.659523 -0.207798 0.440861 0.375669 0.223872 1.266660 0.638277 -0.674153 -0.227359 -0.372159 -1.411594 0.220611 1.888737 2.272929 0.233675 0.199991 0.272057 0.086186 0.423163 0.404784 0.374489 0.587819 0.642101 0.998376 -1.897447 0.143638 -3.746504 -0.402781 -4.454489 -1.055413 -1.202040 0.934152 -0.736989 0.438207 0.048741 1.979015 0.297471 0.447638 1.141763 2.448508 -1.471716 -0.703171 -1.308340 -1.138169 0.732883 -1.059848 0.213348 0.726240 0.069905 -1.369522 -1.407193 0.712647 0.333449 -0.710957 -0.333253 -0.158918 1.681040 -1.820553 -0.586086 -1.541195 0.086391 -0.028731 -2.757744 -0.030558 -1.257446 2.057860 0.097820 -0.439747 -1.322521 0.341086 1.534624 -0.627890 -0.548291 -0.733841 1.821880 0.782354 0.036145 0.086869 -0.191411 0.319620 1.473028 1.682086 -1.001433 -0.381159 0.208990 -1.517625 -0.285911 -1.688160 -0.296208 1.496991 -1.365063 0.230093 1.050042 -1.115708 -0.652949 1.604695 -0.529029 1.269217 5.033808 -0.381398 1.245806 0.537974 -1.929616 0.844355 -0.036280 -0.314959 0.616269 1.295782 0.688540 -2.286921 -1.523182 0.763932 1.831838 1.238148 -2.003575 -0.636601 -0.768535 -0.213515 -0.187053 0.046233 0.449525 -0.723839 -1.047225 -0.561078 0.961992 2.717143 -0.818483 -2.014712 0.447223 0.487420 -0.626793 -1.778059 -0.428262 -0.370722 0.357573 0.235863 -0.251304 1.224821 2.291757 -4.473493 1.681597 -0.304137 -0.544742 1.400867 -0.041665 -0.771197 -2.014171 0.564402 1.684718 1.843412 0.293738 -0.211589 0.321114 -1.739780 -0.199739 0.132477 1.118795 -0.753870 0.813075 0.623179 -1.486194 -1.490875 -0.722933 -0.086326 -0.509537 -0.383796 0.817183 -0.386799 -4.089847 2.259284 -0.434037 -0.448813 0.318919 -0.500691 0.885604 -2.012887 -2.210777 0.736931 -0.038559 -0.721599 -1.255836 0.074607 1.457918 -0.162071 0.509491 -1.194917 -2.382267 1.087852 -0.695395 1.190817 0.696093 0.733091 2.194086 0.196411 -0.414960 -1.913794 -0.223769 0.583863 -0.394753 -1.216032 -0.280730 -0.417744 1.452558 2.234166 -0.371310 -0.187624 -0.123367 2.003319 -1.802680 -0.904990 1.192107 1.193325 -0.950955 0.816656 1.393322 -1.827845 -1.225441 -1.085615 -0.742155 -0.134755 -1.584215 0.791368 -1.029463 0.589869 0.810096 0.234738 -0.697305 0.948514 0.275186 0.207992 0.112614 1.969883 3.222316 -1.409806 0.281971 -1.576685 1.012315 -2.583414 -1.849587 0.404040 -0.285868 -0.443230 0.374789 0.000122 1.404605 -0.054283 0.047074 -0.228463 -0.122179 +PE-benchmarks/graph-coloring.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.463993 0.835491 2.354352 -2.791984 2.624463 1.413361 1.055597 -1.025485 -2.193519 -1.678985 -0.147619 -2.329481 -2.622564 3.998178 -1.711008 0.975229 5.546955 1.499880 -0.863061 -1.375730 3.414804 -1.985895 4.998474 4.561399 -4.149559 -0.388764 2.609248 2.478652 1.516917 2.630938 -1.598071 -2.216367 1.792613 -1.951255 1.427265 -3.202815 0.718913 -0.279135 0.134462 -5.535107 0.414907 -1.082301 -0.955412 -0.570832 -0.763083 2.856882 4.319217 3.202020 -1.710615 0.186175 2.891944 1.056906 -0.626111 1.093777 0.782135 0.623824 1.991207 1.523355 -1.533852 -0.670381 -0.888050 -3.094083 0.479790 3.881343 4.723941 0.446057 0.540687 1.299536 -0.213207 0.836773 0.645388 0.745197 1.333903 1.238556 2.252866 -4.661695 -0.158415 -8.070021 -1.388217 -9.391885 -2.242722 -2.569461 1.311834 -2.019289 1.496432 0.367154 4.079792 0.718060 0.906148 2.379503 5.429206 -3.626250 -1.565981 -2.944221 -2.083366 1.346857 -2.401431 0.554171 1.864850 -0.414489 -2.992727 -3.314820 1.645783 1.010748 -1.389427 -1.601331 -0.305297 3.611759 -3.664400 -1.745743 -3.423193 -0.324478 -0.524813 -5.947854 0.284312 -2.200298 4.496928 0.387577 -0.857741 -3.425545 0.775761 3.601647 -1.125292 -1.969542 -0.505739 3.741267 1.783348 0.246762 0.435085 -0.341617 0.742777 3.767155 4.163368 -1.851877 -0.849309 0.144845 -3.332991 -0.429610 -3.347547 -0.837192 3.076143 -3.117142 0.381130 2.716880 -2.342161 -1.260445 4.218009 -1.140782 2.747384 10.509445 -0.760919 2.545054 1.114894 -4.361571 1.819251 -0.579879 -0.831422 1.140011 2.761625 1.520103 -5.264251 -3.254109 1.830759 3.800746 2.648191 -4.505788 -1.784628 -1.842861 -0.139369 -0.580320 -0.214515 1.226804 -1.267717 -2.322317 -1.095389 2.303780 5.908416 -2.413248 -3.953953 1.389322 0.911322 -1.213824 -4.522848 -1.222557 -1.278103 0.613921 0.499765 -0.524086 2.313866 4.888988 -8.802695 3.398177 -0.993598 -1.273931 2.891436 0.206626 -1.773847 -4.400828 1.303913 3.819881 3.621345 0.653310 -0.088666 0.433992 -3.634099 -0.400957 0.248920 2.320518 -1.316692 1.673076 0.972473 -3.235544 -3.389801 -1.018359 -0.185162 -1.499895 -0.335105 1.747900 -0.500235 -8.409729 4.970448 -0.919306 -1.013946 0.967465 -0.958544 2.357773 -4.221930 -4.969807 1.924273 -0.275576 -1.177450 -2.420832 0.375265 3.025503 -0.079601 0.630669 -2.240560 -5.157997 2.129716 -1.185709 2.502333 1.356194 1.879008 4.877878 -0.117859 -1.248436 -4.244992 -0.561262 0.888378 -0.822002 -2.831058 -1.487260 -0.702124 3.419835 4.711669 -0.667494 -0.427210 -0.260737 4.015845 -4.562172 -1.753174 2.814451 3.343185 -2.318592 1.360383 3.111627 -3.739479 -2.695778 -2.026006 -1.332668 -0.490721 -3.684117 1.244663 -2.250724 1.127606 1.774968 0.442120 -1.124481 1.924683 0.747085 0.872911 -0.041599 3.880326 6.943021 -3.365114 -0.113729 -3.318927 1.978278 -5.585163 -4.292484 1.323855 -0.065630 -0.856472 0.683414 0.461720 2.868351 -0.319437 -0.115249 -0.412303 -0.787162 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/reservoir-sampling.cpp__printArray(int*, int) = -0.577240 -0.491907 0.233824 -1.496468 0.768027 0.538222 0.363181 -0.456817 -1.466881 -0.585834 0.415700 -1.466798 -0.439916 1.690003 -0.648018 0.968424 2.165541 0.400147 -0.604101 -0.326242 1.558831 -0.650306 1.931814 1.897199 -1.559712 -0.234792 0.186074 1.134003 0.644241 0.567062 0.267590 -0.811876 0.367311 -1.175021 0.155744 -1.243982 0.442608 0.551173 0.668714 -2.386799 0.312487 0.306830 0.385607 -0.344635 -0.353347 0.342116 1.038807 1.382223 -0.649847 0.370524 1.482969 0.358339 -0.190661 0.287025 0.041878 0.000258 0.300723 -0.033468 -0.606587 -0.397059 0.005460 -0.805697 0.499398 1.481178 1.980732 0.062480 0.154201 0.667610 0.308928 0.404689 0.811405 0.207217 -0.369550 0.073960 0.797307 -1.909234 -0.044377 -3.071595 -0.065184 -3.365824 -0.863514 -0.281447 1.259442 0.353429 0.520496 -0.065313 1.462626 -0.107173 -0.102470 1.543484 1.615639 -1.008664 -0.683535 -1.254015 -1.097197 0.817883 -0.937761 -0.024891 0.699343 0.553126 -1.117753 -0.655447 0.469413 0.582821 -0.558775 -0.797620 0.133709 1.228004 -1.405625 -1.015636 -0.334601 1.021144 -0.144243 -2.385624 -0.147252 -1.313132 0.793159 -0.000892 -0.317633 -0.987156 0.033636 0.791597 -0.392488 -0.412667 -1.069575 1.250340 0.652479 0.408984 0.146482 0.117966 0.294001 1.784707 0.581785 -0.973127 -0.155588 0.278263 -0.804807 0.251118 -1.313039 -0.663130 0.975934 -1.422795 0.104237 0.851450 -0.853623 -0.605367 1.015669 0.163139 0.725365 5.033352 0.176333 1.690708 1.080011 -1.345006 0.839723 -0.191913 0.027966 0.605149 0.720382 0.006272 -2.029492 -1.308574 0.594228 1.471194 1.121108 -1.381281 -0.723731 -0.240408 -0.163452 0.081406 -0.096206 0.422117 -0.403729 -1.056471 -0.317288 1.114938 2.592225 -0.294392 -0.297876 0.575583 0.975503 -1.038447 -1.816298 -0.431880 -1.047768 0.284830 0.116976 0.014042 0.961090 1.867877 -3.065076 1.317446 0.077046 0.239709 0.945523 0.076728 -1.304154 -2.511590 -0.034769 0.958389 1.693018 -0.486863 0.342877 0.661093 -1.333042 -0.030013 0.273262 0.230409 -0.425947 0.578881 0.029579 -0.724600 -0.971388 0.208928 -0.651211 -0.280423 -0.238789 0.806593 0.269635 -2.113887 1.451917 -0.382941 -0.576387 0.251182 -0.491755 1.158680 -1.660462 -1.453029 0.783025 0.022679 -0.633124 -1.002614 0.147134 1.052482 0.038822 0.192852 -0.708891 -1.757167 0.915724 -0.852946 0.980854 0.582406 -0.100265 1.047690 0.121001 -0.241956 -1.546619 -0.659279 -0.201603 -0.153183 -1.340031 -0.361219 -0.231392 1.292752 1.295515 -0.119555 -0.848550 0.336094 1.722902 -1.037517 -0.744795 0.844760 0.243721 -1.291152 0.448637 1.131746 -1.928476 -0.121447 -0.996459 -0.015095 -0.101467 -1.182960 0.918691 -0.031081 0.837343 0.139132 0.277344 -0.190466 0.713537 0.618253 0.188118 0.149077 2.120302 1.652380 -0.490997 -0.236864 -1.567788 0.509547 -1.940747 -1.735047 0.376599 0.243718 -0.835500 0.436737 0.251333 1.536800 0.314287 0.177538 -0.250303 0.193005 +PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -2.208360 -2.657422 -0.389097 -4.707646 2.806757 2.512745 1.687093 -2.331963 -5.358258 -1.030573 2.380445 -5.210766 -0.915583 5.931903 -1.998944 4.422673 7.538500 1.416556 -2.645346 -1.004872 5.785301 -1.060299 7.109541 6.796920 -4.829117 -0.735878 -0.473524 3.393638 2.222820 0.529713 1.132088 -1.993804 2.276236 -5.487994 -1.233492 -4.092147 1.490978 2.256325 3.987970 -7.641891 1.369598 0.290361 0.945845 -1.293912 -1.552841 0.554019 2.979802 4.786109 -1.682907 1.873450 4.700714 0.486225 -0.659934 1.326612 0.235775 0.340876 0.322865 0.375730 -2.094419 -2.357043 -0.197987 -1.971765 1.369469 4.515127 6.509559 0.673513 0.138953 3.247075 1.399025 1.337041 3.449491 0.695397 -1.326078 -0.268651 2.770064 -6.755506 -1.072580 -9.912914 -0.990604 -9.924112 -2.865933 0.182399 4.584873 -0.050781 2.595671 0.540743 4.663997 -0.554136 -1.532903 5.433883 5.346950 -4.294509 -2.534920 -3.519683 -3.265078 2.284927 -3.088580 0.812274 2.477492 1.932469 -4.226236 -2.707882 1.514641 2.288423 -1.800742 -3.765305 0.716262 4.157391 -4.380886 -3.796649 0.022318 4.036481 -0.884615 -7.513854 -1.490399 -4.502855 3.090851 0.110423 -1.559927 -3.761378 0.261881 2.185994 -1.398840 -2.194617 -1.253077 3.162537 2.541363 2.119242 0.401158 0.763621 0.827180 7.410639 1.482448 -3.482775 0.194302 0.252354 -1.658489 2.165296 -4.292140 -2.622771 2.453178 -4.976387 1.133857 3.363999 -2.906997 -2.338435 4.207036 1.917681 1.511002 15.901341 1.288470 6.149309 4.681681 -4.405317 1.843621 -1.835026 0.904356 2.282707 2.358576 -0.669994 -7.154897 -4.879443 2.457374 4.854122 3.778464 -5.524108 -2.613460 -0.459964 0.120130 0.051444 -0.509841 1.548067 -0.373387 -3.832237 -0.913059 4.407215 9.297680 -1.906498 -0.533273 2.558854 2.618364 -3.179419 -6.797293 -2.219132 -3.351674 1.019415 1.528747 0.788996 3.012172 6.508044 -8.600274 4.254198 -0.122953 1.388825 3.294008 1.747626 -5.278321 -6.703758 -1.027499 2.679629 5.743372 -1.386116 0.742126 2.821378 -4.635678 -0.208642 1.223995 -0.279210 -0.959489 2.112533 0.221117 -2.053860 -2.846404 1.469347 -1.984266 -0.907073 -0.026922 3.450711 0.480440 -6.176476 4.355179 -1.068158 -2.388516 1.097444 -1.811404 5.151241 -4.837598 -4.762976 3.503361 -0.239413 -2.167842 -3.497273 1.065190 3.207702 1.287709 1.394081 -2.518867 -5.586354 3.596302 -2.981623 3.813682 1.991795 -0.825646 3.013387 -1.387700 -1.167887 -5.588064 -2.414186 -0.954679 0.010698 -5.026769 -1.982895 -0.684882 4.747059 3.627403 -0.015783 -3.915893 0.706105 6.107332 -4.669766 -2.067125 3.258098 2.550538 -4.830277 1.844681 4.123313 -6.809160 0.468394 -2.461434 -0.630682 -1.043122 -3.938774 3.404009 0.981570 3.376854 -0.428137 1.365309 0.531107 2.410261 2.132698 1.080848 0.692148 7.379977 5.531985 -1.563271 -1.802523 -5.407358 2.096654 -6.273381 -6.294616 2.355457 0.979385 -3.849792 1.294551 0.764457 5.857999 1.478827 -0.450983 -1.301726 0.910337 +PE-benchmarks/reservoir-sampling.cpp__main = -0.584615 -0.604220 0.432014 -1.491253 1.184830 0.614023 0.648125 -0.377272 -1.930041 -0.524052 0.575049 -1.719539 -0.623658 2.100232 -0.572625 1.162019 2.735501 0.761405 -0.742281 -0.425825 1.571904 -0.698189 2.379422 2.351722 -1.618557 0.018643 -0.164646 1.010009 0.402526 0.952036 -0.200998 -1.045335 0.792455 -1.383144 -0.099703 -1.470143 0.189049 0.569759 0.824071 -2.859350 0.461169 0.401931 0.257878 -0.426174 -0.291646 0.699267 1.410554 1.513693 -0.452634 0.846942 1.304215 0.043285 -0.033628 0.480533 0.521340 0.406199 0.583452 0.187674 -1.003997 -0.407325 -0.302412 -1.085504 0.237334 1.464235 2.094348 0.114400 -0.097489 0.579967 0.234608 0.443034 1.076568 0.259710 -0.019955 -0.150242 0.931824 -1.809546 -0.217534 -3.154356 -0.360420 -3.932680 -1.205350 -0.191953 1.901440 0.035430 0.670518 -0.132409 1.745566 -0.325481 -0.284089 1.399082 2.041139 -1.493379 -0.935592 -1.051865 -0.957921 0.667417 -0.939176 -0.052313 0.968058 0.281510 -1.533572 -0.907155 0.892585 0.551522 -0.623993 -0.745631 0.187334 1.649205 -1.810965 -1.133475 -0.646372 1.114698 -0.065626 -2.451770 -0.202713 -1.126188 1.056896 0.347454 -0.810420 -1.178535 0.439897 0.787831 -0.712388 -0.577473 -0.681934 1.511835 0.528431 0.605451 0.246661 0.199205 0.300955 2.119767 0.933130 -1.180403 0.127242 0.217581 -0.643520 0.608473 -1.312807 -0.916095 0.643435 -1.638676 0.341848 0.778837 -1.164401 -0.508961 0.981217 0.604713 0.550164 4.780215 0.035154 1.968501 1.195312 -1.599027 0.962877 -0.389729 0.161380 0.584754 1.111247 0.024258 -2.064965 -1.571543 0.865886 1.812554 1.359600 -1.993438 -0.740337 -0.382479 0.078682 0.190791 0.105096 0.461744 0.079525 -1.338673 -0.380282 1.028288 3.326704 -0.713527 -1.077205 0.697062 0.491399 -0.753754 -2.126851 -0.602017 -0.872240 0.346668 0.268161 0.004161 1.024846 2.272919 -3.534196 1.720770 -0.450705 -0.095946 1.454144 0.443434 -1.418496 -2.322312 -0.469381 1.030006 2.281646 0.027368 0.008103 0.775109 -1.614546 -0.179477 0.212475 0.226779 -0.484461 0.842713 0.146155 -1.055078 -0.876085 -0.223750 -0.423610 -0.336959 -0.236559 1.075699 0.368852 -2.909862 1.570669 -0.153811 -0.715570 0.349420 -0.187669 1.383713 -1.566298 -1.836771 0.963726 -0.203747 -1.060066 -1.148863 0.115266 1.058864 0.192121 0.268871 -0.739021 -2.003195 1.490005 -0.795079 1.508736 0.779434 -0.229812 1.484460 0.351879 -0.604444 -1.518310 -0.734657 0.066734 -0.600418 -1.244033 -0.333044 -0.502798 1.547421 1.462551 0.226133 -0.915616 -0.204408 2.165908 -1.536741 -0.609553 1.389400 0.608832 -1.181679 0.878414 1.666076 -2.183579 -0.178930 -0.956554 -0.423119 -0.377792 -1.124525 1.065712 -0.108290 0.895715 0.024904 0.347325 -0.225121 0.722386 0.440364 0.073880 0.060527 2.508464 2.262668 -0.901900 0.007854 -1.615132 0.878690 -2.112360 -1.853741 0.479997 0.376167 -1.390010 0.368230 0.260455 1.683123 0.312392 -0.282377 -0.527053 0.284901 +PE-benchmarks/dfa-based-division.cpp__preprocess(int, int (*) [2]) = -1.713420 -2.595970 -2.046913 -3.722793 2.577606 2.043509 1.446093 -2.335829 -4.737304 -0.184840 2.174767 -3.808825 0.514697 4.608518 -1.128028 4.888739 5.586092 0.928760 -2.165509 -0.558841 4.636844 -0.917244 5.020948 4.839943 -3.019061 -0.159615 -0.623138 0.980277 0.981810 0.053154 -0.103110 -1.621913 2.318794 -5.568908 -1.656926 -2.755073 0.479470 2.303036 5.047210 -5.462037 1.335649 -0.062290 0.863545 -1.023454 -1.443479 0.188535 1.742338 3.394254 -0.981321 2.233697 3.165392 0.219469 -0.750823 1.001378 0.723738 1.640171 0.025130 1.139145 -1.523283 -1.922529 -0.383163 -0.222611 1.475164 3.072228 3.844266 -0.022705 -0.359748 3.522835 1.270804 0.649727 2.934168 0.466246 -1.409036 -1.351437 1.538611 -6.217202 -1.115388 -8.005190 -1.071404 -7.526410 -2.206846 1.240014 3.126611 -0.938258 2.823167 -0.162832 3.371665 -0.832462 -1.840009 3.691494 3.599389 -3.820327 -1.809757 -2.072842 -2.343371 0.823083 -1.760272 -0.105330 2.739465 0.462609 -3.290320 -2.179681 1.976565 2.129502 -1.232092 -3.994608 1.439487 3.054871 -3.149525 -3.804567 0.966549 3.823214 -1.489140 -5.250556 -0.078232 -2.941709 1.755529 0.042146 -1.729923 -3.867272 0.105941 1.584629 -1.485426 -2.505891 0.857911 2.216234 2.292861 2.108405 0.311957 0.011596 0.666775 6.883265 0.855866 -3.052171 0.758966 0.009072 -0.323681 2.542935 -2.604959 -2.675563 1.438827 -4.152806 1.366847 2.522444 -2.240889 -0.796336 5.280151 2.265739 -0.038831 11.491744 0.793594 5.148468 3.869893 -3.371032 0.697130 -1.532764 1.005055 1.673189 2.034125 -1.026074 -5.594747 -3.826244 2.119829 3.744392 3.099082 -4.732254 -2.783426 -0.370042 -0.127366 0.799627 -0.791378 0.795891 0.864082 -3.184461 -0.522037 2.838781 7.952483 -1.962977 1.110976 2.156992 2.441237 -2.283861 -5.745700 -2.337789 -4.345543 0.831239 0.878999 0.847035 2.196931 4.942328 -6.393197 3.078774 -1.614883 0.091006 2.228826 2.492684 -4.214876 -5.606697 -1.767134 1.439483 4.564725 -1.455743 2.045174 2.499864 -3.126260 -0.229151 0.685938 -0.914294 -0.749856 1.397945 0.116080 -1.367162 -1.005129 2.725110 -1.271877 -1.376763 0.695419 2.762376 1.441964 -4.206752 2.663965 -0.132004 -1.727817 1.501904 -0.721458 4.373280 -2.859473 -3.252430 3.055272 -0.046444 -0.490468 -1.412940 0.932194 2.442513 0.600751 1.122581 -1.575022 -3.690494 2.563298 -1.949258 3.227172 1.607075 -1.466463 1.716791 -2.284281 -1.021473 -3.720839 -2.103991 -1.423364 0.251152 -3.473234 -1.672637 -0.695846 3.870204 1.978477 0.948379 -3.377171 0.546125 4.093799 -3.883757 0.252836 2.781949 2.488157 -4.088659 0.738637 3.674403 -4.563602 1.037827 -1.303769 -0.030835 -1.262543 -2.190829 2.908468 1.726579 2.598284 -1.208526 1.013825 0.888338 1.804800 1.801024 1.070736 0.527756 5.051188 3.655464 -0.912803 -2.694864 -3.590883 1.462326 -4.065605 -4.661138 1.945498 1.526163 -4.053476 0.701559 0.981025 4.821191 0.791818 -0.178228 -0.888913 0.591141 +PE-benchmarks/dfa-based-division.cpp__isDivisibleUtil(int, int*, int (*) [2]) = -1.041933 -0.718409 0.215626 -2.568865 1.891742 1.479074 0.840384 -1.833524 -2.357620 -0.430821 0.915756 -2.063101 -0.629911 2.818694 -1.069313 2.304496 3.337553 0.479642 -1.292065 -0.654808 2.552914 -0.064218 3.540195 3.048990 -2.409595 -0.167449 0.386648 1.469598 0.820228 0.848718 -0.416429 -0.905513 1.085516 -2.656997 -0.727522 -1.504334 0.222089 0.552265 2.022695 -3.225172 0.589105 -0.596272 -0.563622 -0.580800 -0.709954 -0.058764 1.922616 2.193684 -0.489590 0.729408 2.122409 0.671447 -0.323705 0.674526 0.450919 0.702402 0.816815 0.352523 -0.675018 -1.089092 -0.312550 -0.403209 0.621825 2.481943 2.583020 0.541820 -0.171240 1.613021 0.662382 0.451163 1.430153 0.560494 -0.870011 0.477722 1.177863 -3.182211 0.297752 -4.140863 -0.543900 -3.194345 -1.499470 -0.079452 1.286511 -0.289011 1.743595 0.594808 2.395750 -0.078684 -0.417454 2.033243 2.858831 -2.394478 -1.078507 -1.330547 -1.629434 0.630407 -1.369125 0.167360 0.644107 0.652474 -2.105460 -1.372159 0.858894 1.282593 -1.019187 -1.759645 0.623195 2.152455 -1.796642 -1.837871 -0.236077 1.714950 -0.870397 -3.782929 -1.421662 -1.789166 2.224625 -0.231188 -0.888653 -2.675387 0.380121 1.709848 -0.740949 -1.325080 0.394653 1.320602 1.678855 0.848127 0.022117 -0.018193 0.622015 4.041417 1.132805 -1.584056 0.130215 -0.133905 -0.898752 0.912401 -1.410385 -0.986785 0.218810 -2.373204 0.780504 2.288214 -1.410349 -0.497159 2.451854 0.669226 0.623507 7.725830 0.069669 2.550374 2.134707 -2.505754 -0.309296 -0.878315 0.168880 0.884748 0.845104 0.017578 -3.394305 -2.280743 1.482585 2.495682 1.832633 -2.636086 -1.129404 -0.429706 -0.098841 0.098401 -0.265792 0.610787 0.080239 -1.825554 -0.754345 2.024385 4.427751 -1.154970 -0.960044 1.409626 0.734351 -1.192899 -2.599523 -1.234290 -1.840574 0.584743 0.930835 0.357370 1.212036 3.195282 -3.982791 2.069979 -0.556886 -0.040101 1.777392 1.098540 -2.253134 -1.891876 -0.531819 1.510136 2.295435 -0.607251 0.138501 1.069756 -2.174513 -0.213136 0.500972 0.184546 -0.716233 0.925022 0.987641 -1.573554 -1.429000 0.614210 -0.356394 -0.696299 -0.062787 1.681165 -0.337685 -3.435178 2.446513 0.191861 -1.070479 0.972990 -0.684189 2.744212 -2.273774 -2.365184 1.937248 -0.247664 -0.277615 -0.955703 0.611727 1.600993 0.802171 1.150486 -1.963506 -1.957853 1.030066 -0.836588 2.000633 1.020630 0.097181 1.705565 -1.610024 -0.432479 -2.317055 -0.986354 0.484535 0.480166 -2.362213 -1.047892 -0.390707 2.334773 2.017248 0.066584 -1.747074 0.108546 2.503652 -2.463818 -0.520328 1.469839 2.153346 -2.648940 0.511956 1.774273 -2.506755 -0.126284 -0.806302 -0.453481 -0.924179 -2.008606 1.637445 0.357410 1.526619 0.102372 0.538998 0.113615 1.097021 0.738471 0.879599 0.525692 2.504860 3.055569 -0.893231 -1.273394 -2.547001 1.121338 -3.075897 -3.225637 1.473471 0.019669 -1.744316 0.247694 -0.109868 2.936796 0.687922 -0.246434 -0.423480 0.254439 +PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -1.154641 -1.220816 0.140221 -2.614245 1.825129 1.073930 0.941267 -1.518396 -2.822306 -0.413077 1.172187 -2.332812 -0.505377 3.044124 -1.146405 2.193485 3.758138 0.816300 -1.357642 -0.914012 2.732062 -0.705395 3.699884 3.483801 -2.466828 -0.221715 0.169782 1.583805 1.063823 0.496266 -0.228587 -0.779271 1.314710 -2.795118 -0.520914 -1.842685 0.364460 0.923298 2.004029 -3.686732 0.647037 -0.675151 -0.145627 -0.452150 -0.734783 1.117679 1.700379 2.361919 -0.600222 1.242215 2.275893 0.223478 -0.310604 0.713137 0.594184 0.579680 0.786785 0.699743 -0.941009 -0.974614 -0.409009 -0.891758 0.742571 2.496089 2.991776 0.312194 -0.124789 1.565373 0.715891 0.622094 1.729386 0.490609 -0.645238 -0.035727 1.268179 -3.825327 -0.059009 -5.323674 -0.700792 -5.228982 -1.571031 0.049528 2.089106 -0.962415 1.387312 0.540522 2.598231 0.077959 -0.795442 2.366504 2.862655 -2.402778 -1.268593 -1.285703 -1.610595 0.720507 -1.363593 0.379163 1.475166 0.880352 -2.230297 -1.269636 1.088561 1.033305 -0.943464 -1.813295 0.554968 2.358795 -2.258127 -1.828708 -0.287432 1.917562 -0.490117 -3.879485 -0.479697 -2.028682 2.671124 -0.045941 -1.115447 -2.145314 0.347363 1.448090 -0.885541 -1.030329 -0.002577 1.595841 1.449560 1.077425 0.022666 0.263925 0.421849 3.846224 1.147956 -1.856986 0.166658 0.066812 -0.983014 1.176336 -1.832820 -1.204297 1.190477 -2.556247 0.982843 1.612561 -1.576825 -0.997865 2.983715 1.009086 0.589830 7.723713 0.185406 3.011554 2.228171 -2.374824 0.290283 -0.916610 0.620822 1.206708 1.421678 -0.347269 -3.512466 -2.559945 1.447685 2.713196 1.995536 -3.322546 -1.384036 -0.428422 -0.115856 0.195644 -0.277803 0.648738 -0.178456 -1.646682 -0.573173 1.887013 4.681103 -1.219878 -0.897227 1.158630 0.913636 -1.194623 -3.208785 -1.230268 -1.530500 0.672754 0.711004 0.452682 1.523319 3.398377 -5.086815 2.240742 -0.697522 0.181306 1.816573 1.214451 -2.392597 -3.280469 -0.681331 1.360895 2.764380 -0.423770 0.136566 1.497871 -2.387601 -0.192788 0.513978 0.202434 -0.716766 1.103676 0.618582 -1.348729 -1.289496 0.677382 -0.510704 -0.379597 0.096971 1.839561 -0.297103 -4.343197 2.271937 -0.206571 -1.201162 0.786563 -0.683546 2.621128 -2.356402 -2.552545 1.746132 -0.183189 -0.805904 -1.534845 0.507062 1.710614 0.265041 0.974018 -1.598613 -2.360577 1.700526 -1.371277 2.158386 1.050072 -0.307212 2.153994 -1.498471 -0.757375 -2.526186 -0.947448 0.079514 -0.030766 -2.251657 -0.584185 -0.410378 2.421245 1.978955 0.278857 -1.658243 0.501238 2.947312 -2.765555 -0.769590 1.745702 2.064845 -2.286516 1.181065 2.163253 -3.072274 -0.040799 -1.054301 -0.783388 -0.748216 -1.820974 1.932083 0.379013 1.682544 -0.314294 0.816416 0.232912 1.380936 0.828995 0.911814 0.541403 3.253210 3.812173 -1.056983 -1.148237 -2.630136 1.303104 -3.130813 -3.170965 1.203921 0.565114 -1.818130 0.522763 0.082043 2.974038 0.634190 -0.664874 -0.693667 0.553016 +PE-benchmarks/dfa-based-division.cpp__main = -0.679699 -1.084011 0.326901 -1.911245 1.104928 0.161943 0.624066 -0.559362 -2.190636 -0.440736 0.848387 -1.607967 -0.202612 2.161584 -0.559744 1.457840 2.518121 0.691446 -0.872166 -0.580826 1.857069 -0.917490 2.184610 2.252940 -1.711173 -0.046248 -0.136521 1.152521 0.830086 0.566244 0.027151 -0.544094 0.609054 -1.670137 -0.106177 -1.484401 0.300252 0.970946 1.213778 -2.719794 0.572791 0.137364 0.502351 -0.415802 -0.435533 0.754490 0.930244 1.637123 -0.811854 1.005408 1.725636 -0.090951 -0.155339 0.433098 0.325611 0.275361 0.456682 0.473743 -0.757030 -0.432002 -0.109408 -0.904097 0.738133 1.550344 2.121504 -0.052557 -0.051195 0.849043 0.671625 0.505048 1.391838 0.196445 -0.461685 -0.561522 1.000389 -2.371639 -0.108856 -3.984865 -0.202574 -4.213454 -1.172756 0.210140 2.125249 -0.253819 0.613052 0.089390 1.677909 -0.172922 -0.559832 1.662552 1.695764 -1.234976 -0.909581 -1.010652 -1.342859 0.862814 -0.929834 -0.087880 1.190320 0.626197 -1.450434 -0.656898 0.826854 0.599890 -0.674040 -1.007631 0.385009 1.585350 -1.613491 -1.277546 -0.093003 1.584481 -0.067878 -2.456666 0.129227 -1.531560 1.286398 0.010433 -0.718024 -0.964884 0.116946 0.542164 -0.771891 -0.377897 -0.938029 1.299378 0.671897 0.863469 0.149511 0.007511 0.211651 2.004500 0.633421 -1.503094 0.096044 0.261990 -0.577526 0.852150 -1.463065 -1.059661 1.183159 -1.662768 0.321944 0.511954 -1.114535 -0.661854 1.804008 0.827196 0.355880 4.825074 0.335030 2.102766 1.566506 -1.339114 0.822354 -0.188879 0.432057 1.031475 1.103201 -0.454097 -1.927236 -1.700260 0.727485 1.786713 1.461646 -1.984233 -1.324134 -0.196041 -0.123484 0.435607 -0.100983 0.329499 -0.097087 -1.277135 -0.362277 1.081025 2.831731 -0.421769 -0.690968 0.623369 1.018712 -1.158975 -2.263989 -0.682148 -1.364494 0.452557 0.085109 0.108198 1.210396 2.287752 -3.996190 1.625169 -0.355801 0.289539 1.133858 0.562953 -1.683752 -3.193190 -0.526470 0.672818 2.152282 -0.383087 0.248143 1.262688 -1.596027 -0.106504 0.183160 -0.119883 -0.529193 0.733773 0.036223 -0.650216 -0.682398 0.287567 -0.650536 -0.186954 0.019434 1.215401 0.328542 -2.664129 1.276367 -0.371552 -0.804681 0.491234 -0.307921 1.585012 -1.614960 -1.573166 0.964116 0.046663 -0.737240 -1.364030 0.302691 1.176552 -0.187378 0.181329 -0.692242 -1.720936 1.185473 -1.205982 1.390553 0.786724 -0.613413 1.292417 0.001679 -0.380337 -1.611685 -0.370805 -0.161006 -0.404837 -1.333846 -0.468270 -0.391159 1.482622 1.237174 0.300548 -0.936625 0.335181 2.093574 -1.489465 -0.772144 1.240231 0.488801 -1.252417 1.063380 1.561844 -2.304601 0.177974 -1.053089 -0.274172 -0.160933 -0.987988 1.523868 0.478513 1.132206 -0.364489 0.507732 0.080645 0.954878 0.651001 0.257763 0.141382 2.495288 2.372247 -0.676312 -0.507032 -1.701144 0.670308 -2.052796 -1.821363 0.467172 0.522052 -1.475424 0.528620 0.160321 1.953026 0.421503 -0.115570 -0.496555 0.566319 +PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -9.536625 -11.880675 -9.717082 -19.894794 14.435807 21.346195 8.069883 -18.895197 -24.005487 3.147747 14.062337 -27.301951 0.306955 25.010406 -8.676096 26.632131 31.738758 1.592201 -17.174142 -0.796923 25.236908 3.808308 33.473856 29.605357 -16.874502 -2.168182 -6.601589 10.223080 5.961348 -4.300313 4.424243 -4.328583 13.002026 -29.733542 -14.225692 -10.125813 3.973005 7.272431 26.702988 -29.701719 6.189062 -3.951255 3.546470 -6.471836 -10.019938 -1.960910 12.437353 20.686334 1.518597 6.418784 17.322158 1.519531 -2.374438 6.024313 3.567953 3.294949 2.779796 0.184382 -7.239998 -16.205625 -0.829240 2.178770 4.116899 20.632397 27.183831 6.215071 -1.664898 19.381675 7.595930 5.321714 14.862349 3.971638 -12.749452 2.507031 6.409910 -32.169362 -0.727732 -29.609671 -6.358579 -26.724411 -11.192796 6.940734 13.918682 -0.959306 17.100036 6.722251 19.851524 -2.879566 -11.460205 22.381796 22.997900 -22.306981 -10.744136 -10.681664 -11.658384 5.013991 -10.768000 7.481834 13.326403 9.110876 -19.408489 -6.562099 5.854106 13.032321 -7.691536 -19.406069 8.319998 15.297475 -12.130121 -18.349159 10.176497 22.489280 -7.901578 -34.974599 -11.135948 -18.182760 9.539972 -1.359868 -8.110916 -22.926541 1.178207 9.027732 -4.871063 -12.745226 1.680692 8.714984 14.401889 12.810678 0.657609 6.358524 7.076170 41.039176 -0.031299 -14.053559 5.521603 -4.313438 -1.964370 15.448836 -11.949994 -11.717375 -0.323158 -24.524509 10.648072 21.277542 -11.314674 -6.263339 12.928370 14.588394 1.369123 73.138820 4.302250 30.811441 23.789912 -21.148516 3.563635 -15.198036 4.360607 7.014535 4.856617 -4.986047 -36.890607 -22.022211 14.566022 22.322796 16.191123 -26.362016 -5.613464 0.446303 -2.097768 -1.681005 -2.860168 6.871442 1.403580 -14.147927 -4.377364 23.710912 46.771634 -10.159641 5.349479 15.610200 6.430954 -9.954172 -28.731063 -13.160888 -15.385721 5.537788 9.766745 6.728719 11.732272 27.161317 -22.419426 17.178338 -1.677848 5.160084 18.710737 12.392157 -26.522532 -19.806949 -9.088236 11.244680 22.548464 -10.681605 -2.059420 11.366703 -18.856136 -1.916650 8.183999 -5.780355 -2.719859 7.871483 3.716336 -7.226804 -9.936796 13.935656 -6.061941 -2.324491 0.379897 17.216219 -3.332646 -18.404110 18.877663 1.958390 -11.507489 5.318402 -11.187588 25.343948 -16.272930 -17.096732 16.898412 -1.880119 -3.392130 -9.371767 5.879585 12.253128 11.328686 14.633764 -15.894332 -18.684311 13.465423 -10.797198 18.049813 8.667022 -3.579120 5.909885 -16.995558 -6.856427 -23.228520 -18.307516 -7.146475 7.841029 -24.952400 -6.280073 -3.908373 23.233251 10.224915 1.947329 -24.562676 3.719896 22.882444 -20.808910 -6.004566 12.689678 12.040713 -29.411008 2.205956 16.287706 -25.749746 7.131456 -5.533066 -5.523768 -11.094213 -18.015472 14.911776 11.354370 16.897312 -5.699860 5.396565 8.476029 10.202392 8.095476 10.145033 7.401981 30.110869 13.414407 -1.162711 -14.261943 -24.693909 10.522248 -24.982565 -30.149497 17.303467 6.305152 -19.112792 1.681092 3.766939 26.914075 5.614303 -7.530594 -6.553643 5.557168 +PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -1.445538 -0.512155 0.805053 -3.642662 2.409713 2.541749 1.116214 -1.931185 -3.171052 -1.586870 1.775202 -4.643769 -2.230499 4.341392 -2.195770 1.891388 5.027216 0.161080 -2.070793 -0.937257 3.436304 0.815927 5.638066 4.790865 -4.458067 -0.521250 0.471199 2.205407 2.098030 0.658505 0.889699 -2.568842 1.879135 -2.078393 -0.164246 -1.303974 0.837284 -0.142775 1.403629 -5.016020 0.552317 0.538386 -0.565872 -0.784656 -0.789407 1.309818 3.711897 3.689543 -1.140614 0.661662 3.652738 1.246108 -0.574014 0.744813 0.280511 -1.380251 0.843289 -0.576997 -1.523677 -1.832745 -0.229832 -1.510283 -0.222264 4.463487 4.820887 0.617457 0.155009 1.751274 0.729691 1.211950 1.767738 1.009992 0.312727 1.671552 2.169080 -3.112453 -0.149911 -5.992520 -0.745456 -7.503713 -2.299324 -0.676341 3.319082 0.669103 1.161853 -0.429154 4.107759 0.582707 -0.743830 4.183233 5.225972 -2.824601 -1.868041 -2.612125 -2.390099 1.773624 -2.725656 1.513744 0.830864 1.316487 -3.463388 -1.388113 -0.170177 1.129607 -1.594336 -1.648318 0.386437 2.883374 -3.627785 -1.189822 -0.752356 2.231737 0.462934 -6.773498 -2.380495 -2.348681 3.000401 -0.014480 -1.104145 -2.295524 0.249724 1.852256 -1.038339 -1.076463 -1.860384 2.504516 2.399338 1.929922 0.244773 1.065027 1.884054 4.917303 1.245831 -2.182265 -0.105712 -0.639776 -0.974034 1.422200 -2.129460 -0.970224 1.851711 -3.262039 1.264789 2.880105 -2.156901 -2.221389 0.848282 0.216652 1.536440 11.527052 0.068739 4.326779 2.940113 -3.903898 0.189528 -1.674706 -0.234338 1.091037 1.489839 0.745918 -3.573917 -3.476373 2.800190 4.351841 2.668808 -3.875310 0.693779 0.316535 -0.339144 -1.339837 0.121164 1.274010 -0.457513 -2.591934 -1.072056 4.226167 5.712518 -1.336118 -2.145044 1.691189 2.175763 -0.298684 -1.991113 -1.141968 -0.629202 1.204352 2.404933 0.611592 2.687426 5.116572 -6.672644 3.300375 1.039484 0.455203 2.336627 0.934060 -3.707148 -3.018781 0.306567 3.045246 2.979795 -0.447830 -0.080538 1.244461 -3.760571 -0.314570 1.196569 0.528973 -1.036560 1.590840 0.978398 -1.741227 -3.221873 -0.357320 -0.978390 0.149626 -1.209283 2.564954 -0.415289 -6.406293 4.594502 -0.476876 -1.951799 -0.685291 -2.353212 3.545979 -4.467407 -4.112736 1.895949 -1.447176 -2.971263 -1.977838 0.336578 2.029073 1.105244 2.138201 -2.854373 -3.489466 3.203822 -1.243193 3.148796 1.611602 0.654671 3.347094 -1.518684 -0.713129 -3.407494 -2.573938 1.887206 0.173346 -4.086566 0.171945 -0.704207 3.307683 3.235723 -1.196884 -2.943725 0.194738 3.225956 -3.544407 -2.036696 2.097022 2.264464 -3.699466 1.661782 2.715921 -3.764090 -0.120807 -2.617676 -1.016720 -1.636102 -3.826415 2.060892 0.083088 2.326701 0.833596 0.731877 -0.580817 1.807277 0.792436 0.549907 1.012434 4.358488 4.763832 -2.014556 -0.511639 -4.893914 2.412541 -5.445690 -5.740897 2.565139 -0.822487 -1.524984 0.214763 -0.641936 3.654964 1.056013 -0.946529 -1.471376 1.712151 +PE-benchmarks/word-wrap.cpp__main = -2.050268 -2.448871 -1.433583 -4.528683 3.510640 4.380713 1.924683 -3.689919 -5.659487 0.311612 2.911428 -6.137777 -0.379150 5.915933 -1.908055 5.603911 7.575553 0.796534 -3.648040 -0.384235 5.462226 0.275533 7.652285 6.913409 -4.027634 -0.267818 -1.390259 2.375898 1.150231 -0.013969 0.457433 -1.512291 2.937613 -6.232254 -2.698143 -2.676877 0.685455 1.572980 5.367075 -7.271316 1.425062 -0.446392 0.778003 -1.461759 -1.985065 0.196282 3.302064 4.693738 0.187667 1.756009 3.828504 0.249946 -0.376529 1.420073 1.187776 0.997014 1.074838 0.149405 -2.033113 -3.177042 -0.428663 -0.255397 0.786821 4.687689 6.229203 1.222711 -0.458259 3.806887 1.473989 1.239969 3.359140 0.914958 -2.304630 0.404895 1.659793 -6.892317 -0.148564 -7.093707 -1.434015 -7.292740 -2.870722 1.159714 3.768202 -0.146275 3.571391 1.103893 4.783072 -0.790567 -2.269550 4.788664 5.571329 -5.095873 -2.577436 -2.484261 -2.636582 1.213230 -2.475060 1.281599 3.137841 1.717191 -4.570023 -1.677998 1.760478 2.700302 -1.802151 -3.873784 1.708081 3.877222 -3.360812 -4.043977 1.384464 4.805258 -1.469018 -7.943919 -2.131823 -3.862169 2.346720 0.053396 -2.120617 -5.011568 0.623162 2.156179 -1.406832 -2.687595 -0.095181 2.622324 2.900536 2.743739 0.297951 1.318185 1.550753 8.845475 0.630381 -3.294560 1.192702 -0.695577 -0.704697 3.265181 -2.844378 -2.735016 0.088167 -5.548301 2.244691 4.361546 -2.845937 -1.293942 2.725484 3.138855 0.521788 16.227711 0.637910 6.900927 5.016958 -4.947667 1.306880 -3.062331 0.852630 1.531120 1.610856 -0.838953 -8.012107 -5.000097 3.287616 5.306289 3.842132 -6.161020 -1.340338 -0.201226 -0.364898 -0.155699 -0.364970 1.526419 0.434919 -3.401811 -1.073143 4.889028 10.821495 -2.364156 0.099346 3.307332 1.253917 -2.108704 -6.513605 -2.790368 -3.279049 1.250343 1.915761 1.192105 2.768866 6.403573 -6.298026 4.305598 -0.761684 0.658305 4.537490 2.572340 -5.667338 -4.942951 -2.081528 2.743016 5.642664 -1.831729 -0.552206 2.484174 -4.458638 -0.521079 1.604475 -0.873451 -0.836536 1.994503 0.845199 -2.089667 -2.294164 2.269512 -1.239145 -0.620442 -0.155195 3.828801 -0.393765 -5.355389 4.475166 0.451498 -2.539365 1.193612 -2.062906 5.422255 -3.853364 -4.303522 3.642736 -0.531888 -1.304924 -2.323762 1.078145 2.867949 2.200317 2.916808 -3.414114 -4.622786 3.463829 -2.358194 4.355962 2.114479 -0.780507 2.063760 -2.769693 -1.742152 -5.046401 -3.913324 -1.171625 0.965648 -5.229159 -1.192479 -1.147496 5.244660 2.782053 0.618755 -5.044973 0.398350 5.520930 -4.764570 -1.397041 3.275716 2.506867 -6.097825 0.950669 4.098955 -5.971696 1.153682 -1.570881 -1.401737 -2.388010 -3.939865 3.367265 1.966270 3.599807 -1.029441 1.153576 1.363863 2.280812 1.632920 1.886717 1.402494 7.054643 3.839152 -0.821788 -2.484030 -5.472443 2.563809 -5.854197 -6.624717 3.469599 1.441320 -4.442610 0.445538 0.860951 5.894338 1.139487 -1.698299 -1.577437 1.214268 +PE-benchmarks/tower-of-hanoi.cpp__towerOfHanoi(int, char, char, char) = -1.585830 -1.423703 1.904809 -4.524532 2.270978 0.616584 1.138733 -1.106541 -3.813396 -2.906472 2.359130 -5.107962 -3.091296 4.754912 -2.707932 0.686276 5.593424 0.290490 -1.681793 -2.308269 3.316967 0.276827 5.929966 5.726330 -5.644267 -0.857387 0.647364 3.015722 3.535131 -0.114749 2.240982 -3.114545 1.559210 -0.753651 1.214101 -1.547992 1.117716 0.152850 0.496341 -5.912537 0.441183 0.983127 -0.524045 -0.362017 -0.126560 4.233807 3.515135 4.129120 -2.579031 1.704505 5.267048 1.316553 -0.662659 0.444783 -0.559657 -3.335073 0.899979 -0.076121 -1.604629 -0.871939 -0.050994 -2.194053 -0.156396 5.047349 5.991837 -0.070947 0.218117 0.822007 1.699916 1.916668 2.401013 1.199402 1.546076 1.367448 3.188302 -3.169504 -1.090847 -10.241231 -0.075808 -12.144830 -2.912069 -0.755203 5.854566 0.088224 -0.693606 -1.191311 4.580699 1.838191 -0.991568 5.410117 5.435122 -1.411622 -2.169364 -2.804033 -3.148157 2.799945 -3.274046 2.059421 1.587144 2.531581 -3.699435 -0.958774 -0.461667 -0.097750 -1.755589 -1.315096 0.056368 3.378315 -4.189132 0.067352 -1.421180 3.303888 2.381018 -7.548478 -1.362981 -3.393485 4.316472 0.083864 -1.263018 0.120339 -0.124749 0.715474 -1.775193 0.646304 -4.008451 3.624599 2.684016 2.423253 0.068382 1.535698 1.929333 3.453253 1.082516 -3.052526 -0.687526 -0.111064 -1.396530 1.558180 -3.549067 -0.668332 4.958214 -2.730068 2.106013 1.088834 -2.381567 -4.131212 1.694857 -0.432844 1.730723 11.922125 0.306358 4.958659 3.451268 -3.226206 0.659963 -1.015550 0.477635 2.022066 2.405898 0.295314 -2.370657 -3.686187 2.813239 4.899591 2.843520 -4.894657 0.105505 1.226706 -0.487790 -1.844691 0.585819 1.405607 -1.154497 -2.297684 -0.999680 4.557083 4.824479 -0.343633 -3.007569 0.375686 4.492804 -0.056412 -1.770737 -0.450929 0.043168 1.538610 2.812165 1.140825 3.489844 5.554588 -11.094242 3.436477 2.384694 1.893415 1.749851 1.076980 -4.316529 -6.354670 0.981565 2.654513 3.426460 0.174641 0.320843 2.229786 -4.222582 0.002376 1.100333 0.749558 -1.461117 1.693877 0.548623 -0.979307 -3.386233 -1.365862 -1.765357 1.110501 -1.623500 2.834194 0.339472 -9.009413 4.463449 -1.733398 -2.515534 -1.952480 -2.979827 4.069595 -5.334077 -4.054690 1.168246 -2.125882 -4.832663 -3.950311 0.062476 1.910948 -0.538552 2.891822 -2.543386 -4.130941 4.304442 -2.454275 3.514864 1.776300 -0.072290 4.771418 -1.033246 -0.479239 -3.795802 -2.375537 3.562441 -0.425850 -4.261882 1.748722 -0.411906 2.540179 3.489145 -1.820147 -2.925342 0.638364 3.718816 -3.898626 -2.952781 1.931496 2.257742 -2.567349 3.892688 2.710136 -5.043730 0.222257 -4.083350 -1.287131 -1.107724 -3.767843 2.833226 0.108036 2.634578 0.332208 1.286171 -1.071283 2.328074 0.886540 -0.064379 0.951507 5.196833 7.942596 -2.793848 0.168196 -5.852077 2.853379 -5.942638 -6.305326 1.912542 -1.776356 -1.248237 0.685253 -1.587460 3.822647 1.522132 -0.997675 -2.641677 3.578983 +PE-benchmarks/tower-of-hanoi.cpp__main = -0.379479 -0.413596 0.681218 -1.301382 0.735663 -0.066567 0.370460 -0.177880 -1.330919 -0.756293 0.517388 -1.262125 -0.664957 1.418851 -0.608293 0.278212 1.761453 0.390406 -0.454204 -0.689392 0.907714 -0.391783 1.594624 1.661457 -1.416911 -0.045586 0.091914 0.814238 0.774344 0.438603 0.214449 -0.794939 0.401370 -0.330357 0.350334 -0.801155 0.134100 0.243403 0.134786 -1.899725 0.253506 0.241758 0.073642 -0.152821 -0.013768 1.279763 1.008762 1.073709 -0.597388 0.662522 1.291867 0.263393 -0.097794 0.197476 0.183494 -0.366026 0.573472 0.077262 -0.538872 -0.072998 -0.143026 -0.781268 0.105167 1.262637 1.554298 -0.054881 -0.037566 0.105639 0.412034 0.477269 0.771645 0.259989 0.289093 0.064077 0.757502 -1.120020 -0.130729 -2.871049 -0.043179 -3.662376 -0.869926 -0.172338 1.732750 -0.099637 -0.125318 -0.170754 1.289881 0.207766 -0.211642 1.217932 1.434324 -0.514234 -0.620742 -0.631488 -0.863010 0.657439 -0.717204 0.201101 0.590103 0.587323 -1.028204 -0.307492 0.330933 0.007114 -0.482150 -0.224250 0.084042 1.085856 -1.400173 -0.173316 -0.507135 0.930093 0.537007 -1.859026 -0.018864 -0.967199 1.258291 0.083235 -0.551626 -0.145207 0.169068 0.296465 -0.630321 0.191154 -1.142168 1.109952 0.454062 0.585696 0.018983 0.219427 0.344693 0.913038 0.512478 -0.961583 -0.053573 0.138517 -0.454828 0.361784 -0.997561 -0.401672 1.163782 -0.856974 0.491045 0.123183 -0.774438 -0.887950 0.672274 0.072572 0.417707 3.109106 -0.047442 1.372700 0.845810 -0.913817 0.345816 -0.117692 0.173932 0.549509 0.854858 0.035595 -0.741169 -1.059836 0.666378 1.357553 0.894656 -1.405320 -0.308028 0.062043 -0.152327 -0.035043 0.184061 0.230202 -0.233685 -0.742455 -0.329008 0.795772 1.698784 -0.083048 -0.907150 0.081367 0.844284 -0.252962 -0.837948 -0.153467 -0.142797 0.443231 0.395007 0.102004 0.948727 1.573205 -3.387252 1.151188 0.112130 0.239941 0.658131 0.288735 -0.989830 -2.074492 -0.062490 0.662619 1.374218 0.086350 0.053943 0.684491 -1.163988 -0.081244 0.128500 0.266741 -0.503872 0.515328 0.244677 -0.528552 -0.687290 -0.398704 -0.335163 0.221563 -0.329298 0.752967 0.151075 -2.692702 1.135935 -0.364043 -0.542287 -0.247187 -0.391098 0.955900 -1.290926 -1.135843 0.336896 -0.356346 -1.169621 -1.081845 -0.032771 0.679550 -0.345213 0.523563 -0.570824 -1.210668 1.158984 -0.745583 1.051211 0.547541 -0.170578 1.378809 0.029518 -0.157297 -0.976362 -0.377124 0.645576 -0.467663 -0.850109 0.481929 -0.271325 0.758724 1.019571 -0.167012 -0.583824 0.186257 1.301283 -1.018752 -0.670742 0.719305 0.474732 -0.573251 1.163972 0.948000 -1.504035 -0.071517 -1.039393 -0.440030 -0.205435 -0.772860 0.896811 -0.020818 0.659865 0.014717 0.365326 -0.357505 0.644434 0.195258 -0.070809 0.183001 1.591262 2.286624 -0.744202 0.182443 -1.336350 0.720314 -1.530938 -1.424775 0.235942 -0.117492 -0.626149 0.251102 -0.348112 1.113797 0.328455 -0.188910 -0.586043 0.815397 +PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.506122 -0.740676 -0.092479 -0.956983 0.649825 0.207414 0.291580 -0.471655 -1.190386 -0.148388 0.406858 -0.696922 0.190655 1.115358 -0.282880 1.112725 1.249664 0.371480 -0.400063 -0.264940 1.142007 -0.647114 1.021565 1.083318 -0.746963 -0.080175 0.034822 0.395253 0.199163 0.324390 -0.082814 -0.464549 0.350031 -1.199372 -0.152985 -0.876810 0.101927 0.817838 1.073442 -1.353169 0.312326 -0.045471 0.230859 -0.210599 -0.333802 -0.051947 0.274627 0.730369 -0.372357 0.721092 0.845958 0.060387 -0.158821 0.182223 0.229212 0.528689 0.074788 0.228805 -0.297129 -0.277958 -0.200646 -0.129448 0.562662 0.669301 0.958174 -0.126394 -0.032565 0.604041 0.249997 0.205221 0.756756 0.107795 -0.467309 -0.483222 0.462818 -1.608805 -0.185725 -2.250096 -0.104758 -1.997042 -0.501536 0.288764 0.727434 -0.143931 0.548286 0.231379 0.949589 -0.360150 -0.422999 0.781694 0.772085 -0.787932 -0.366914 -0.442777 -0.758083 0.167415 -0.336955 -0.185220 0.524062 0.214089 -0.696943 -0.617000 0.505273 0.433607 -0.278845 -0.922592 0.202077 0.794928 -0.844851 -0.999061 0.044497 0.952872 -0.316027 -1.100827 0.099641 -0.839065 0.486328 0.039285 -0.512514 -0.850455 0.144883 0.418850 -0.368446 -0.442503 0.060461 0.540371 0.456343 0.428563 0.045953 -0.132273 -0.052393 1.359160 0.382634 -0.822255 0.074896 0.237945 -0.198805 0.448569 -0.726989 -0.602684 0.349131 -0.902411 0.126163 0.402259 -0.562015 -0.174589 1.304047 0.393664 0.051418 2.607624 0.091899 1.083710 0.829862 -0.744184 0.439688 -0.160003 0.338476 0.511116 0.600647 -0.276385 -1.200466 -0.941141 0.462447 0.853283 0.754777 -0.943990 -1.073251 -0.152318 0.043447 0.446368 -0.143730 0.136242 -0.043031 -0.717414 -0.139966 0.328975 1.723028 -0.353570 -0.006057 0.423087 0.650826 -0.774830 -1.373721 -0.468551 -1.362802 0.149362 0.106994 0.033910 0.529739 1.202386 -2.012777 0.780618 -0.487137 0.113236 0.453633 0.468709 -0.803172 -1.800127 -0.475861 0.261413 1.154996 -0.336851 0.546117 0.684322 -0.755124 0.033065 0.030223 -0.068953 -0.397678 0.415001 -0.012869 -0.525673 -0.150429 0.566993 -0.453443 -0.431849 0.130630 0.582824 0.344441 -1.241049 0.549916 -0.002728 -0.265210 0.573103 0.100819 1.073758 -0.641958 -0.810822 0.713610 0.152472 0.078566 -0.417744 0.178091 0.641573 -0.097251 0.001049 -0.327502 -0.967254 0.403576 -0.531552 0.753306 0.345348 -0.462686 0.500581 -0.424639 -0.219763 -0.842052 -0.182769 -0.292690 -0.114670 -0.572793 -0.674023 -0.103517 0.860380 0.528980 0.391663 -0.567662 0.161387 1.110284 -0.871347 0.039877 0.677753 0.391029 -0.770002 0.284146 0.845753 -1.098053 0.146494 -0.432074 0.190191 -0.217347 -0.337142 0.828197 0.311263 0.548466 -0.360405 0.231022 0.142318 0.466226 0.605515 0.240671 0.034637 1.240318 0.941659 -0.183660 -0.471459 -0.737943 0.161761 -0.901649 -0.856758 0.142935 0.523899 -0.958288 0.190591 0.081170 1.165604 0.200931 0.233877 -0.049789 0.080679 +PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -6.877890 -8.659475 -6.458201 -14.389334 9.762407 13.879362 5.600525 -12.408352 -17.583344 0.689363 9.570273 -19.277461 0.517261 18.214674 -5.856416 19.111379 22.811533 1.685663 -11.880887 -0.910459 19.292005 1.165701 23.826940 20.354759 -12.208740 -1.669527 -4.577827 6.664099 5.159502 -2.834358 4.140429 -3.405214 8.850906 -21.966241 -9.840265 -8.176242 3.215798 6.326862 18.893690 -21.423279 4.779454 -2.029385 3.438642 -5.177859 -7.396137 -3.848811 8.727224 14.835701 0.402040 4.422318 12.874545 1.689101 -2.064808 4.461209 2.014185 3.002087 1.133664 -2.022508 -5.353942 -11.069118 -0.419187 0.252671 3.782397 14.641737 18.782658 4.244137 -0.788628 14.524529 5.244515 3.895956 11.252568 2.372425 -9.137778 0.722273 5.242649 -24.279322 -1.316673 -22.900739 -4.488062 -19.537277 -8.132587 4.576490 10.351942 0.718737 12.191775 5.816740 13.824343 -3.439385 -7.630536 16.911511 16.324370 -15.585623 -7.712364 -8.740973 -8.597767 4.258405 -8.168801 4.459420 7.691098 6.755873 -13.618025 -5.794441 5.211549 9.757986 -5.513491 -14.816365 5.966073 11.277232 -9.676082 -14.058970 6.666969 16.458796 -5.879158 -24.278122 -7.456577 -13.152737 6.927802 -0.749434 -5.533055 -16.759104 0.719086 6.796293 -3.300592 -9.694716 0.839815 5.624593 9.613593 9.067837 0.588779 3.976186 4.553953 29.329828 0.847469 -10.115256 3.739348 -2.439598 -1.625285 10.471754 -8.557521 -9.250241 -0.516709 -16.832615 5.609467 15.309291 -8.276146 -5.555820 9.275239 9.791937 1.474573 50.546747 3.941563 21.160512 17.277455 -14.983384 2.446885 -10.456360 2.859372 5.136197 3.786215 -3.305485 -25.385572 -16.042133 9.863080 15.432020 11.967597 -17.078312 -5.264426 -0.142898 -0.942626 0.027664 -2.498276 5.025614 1.397708 -11.451048 -3.104697 16.636471 33.192832 -7.025275 5.160607 11.307749 4.814306 -8.015695 -20.984371 -9.385074 -11.571268 3.775042 6.518861 3.999870 8.262312 19.800849 -15.620080 12.507386 -1.829992 3.997498 11.683667 8.508476 -18.867253 -14.623108 -6.611239 8.172471 16.577502 -8.016613 0.293375 8.233157 -13.601449 -1.321046 5.207343 -3.952599 -1.721855 5.495768 1.962804 -5.331579 -7.189863 10.825338 -4.866647 -2.026689 1.124376 11.982631 -0.506606 -11.375835 13.709114 0.693531 -7.478295 4.363212 -7.444248 19.117785 -11.910897 -12.378210 12.580377 -1.010990 -2.583274 -6.523661 4.464682 9.456647 7.914868 8.719493 -10.481767 -13.215340 9.664033 -7.062058 12.599219 6.158006 -2.893576 4.094820 -10.651506 -4.127684 -16.118921 -11.708805 -6.759624 5.094086 -17.896433 -6.863095 -2.690058 16.871496 7.763789 1.106366 -17.357433 2.790844 16.620512 -16.267183 -4.983557 9.419230 8.897313 -21.016670 1.921738 12.081487 -18.682803 4.714265 -4.248965 -1.835540 -7.024591 -12.861786 10.706703 7.847038 11.983493 -3.600669 3.797027 5.767695 7.131513 6.509271 6.680797 4.305075 21.578407 10.124256 -0.743965 -10.545490 -17.354319 6.393530 -18.096760 -21.155352 11.658179 5.433756 -14.233807 1.716146 2.918785 19.816670 4.494314 -3.585715 -4.308311 3.247721 +PE-benchmarks/palindrome-partitioning.cpp__main = -1.401057 -1.665003 -0.904753 -3.161430 2.310869 2.718279 1.309137 -2.270562 -4.023069 -0.292403 2.023894 -4.630413 -0.492764 4.199087 -1.297806 3.724993 5.244713 0.523292 -2.486381 -0.288848 3.843799 0.125644 5.353822 4.683440 -2.885135 -0.182823 -1.229098 1.555715 0.933600 -0.053292 0.852497 -1.323561 1.913477 -4.071474 -1.777046 -1.757196 0.538763 1.207840 3.447797 -5.112717 1.015626 0.309194 0.898744 -1.126237 -1.331013 -0.310253 2.385706 3.310383 0.043449 1.142412 2.771267 0.319105 -0.199420 0.992810 0.646251 0.336535 0.539897 -0.744148 -1.575718 -2.124627 -0.216039 -0.500543 0.460125 3.310131 4.272670 0.847993 -0.291812 2.614958 0.967743 0.999495 2.445015 0.615052 -1.468937 0.234335 1.293309 -4.442296 -0.221829 -4.939244 -0.872609 -5.189505 -2.119265 0.770120 3.093156 0.806806 2.213405 0.706404 3.314717 -0.702745 -1.519430 3.663343 3.987726 -3.235122 -1.837969 -1.925075 -1.884785 1.121905 -1.862992 0.837380 1.685630 1.505937 -3.199423 -1.082465 1.219510 1.763823 -1.289177 -2.607088 1.174315 2.679414 -2.616365 -2.670439 0.891859 3.519537 -0.703201 -5.515209 -1.578497 -2.604000 1.287302 0.138591 -1.428746 -3.176092 0.399721 1.204113 -0.950133 -1.673164 -0.788372 1.742527 1.807000 1.957328 0.276423 1.060326 1.168910 5.983104 0.227581 -2.285062 0.803146 -0.449615 -0.301981 2.271086 -1.841086 -2.020537 -0.052871 -3.670099 1.271645 2.878675 -2.013394 -1.333219 0.964701 2.006224 0.410920 10.664624 0.629534 4.747103 3.625750 -3.354216 0.895088 -2.101941 0.466335 0.994748 1.101297 -0.452121 -4.793770 -3.525993 2.318182 3.691818 2.730897 -3.723192 -0.723888 0.064916 -0.123618 -0.079254 -0.140354 1.139824 0.468506 -2.624344 -0.744980 3.549096 7.307367 -1.362855 0.357806 2.326907 1.066153 -1.333097 -4.203156 -1.817236 -2.077491 0.820991 1.339602 0.766650 1.893897 4.562042 -4.183680 3.086859 -0.219188 0.705999 2.821067 1.585024 -4.058477 -3.516858 -1.446861 1.991360 3.947524 -1.359079 -0.135593 1.636419 -3.156722 -0.365434 1.088116 -0.645779 -0.544665 1.397395 0.318571 -1.299376 -1.689322 1.449738 -1.055167 -0.240737 -0.202002 2.642395 0.362584 -3.216926 3.233577 0.155548 -1.716124 0.512830 -1.486048 3.903605 -2.783079 -2.981582 2.449300 -0.673214 -1.473048 -1.640910 0.743016 1.916988 1.506968 1.733053 -2.166629 -2.916514 2.728412 -1.478688 3.008962 1.511045 -0.598164 1.304907 -1.217206 -1.102901 -3.162503 -2.640435 -0.902431 0.450334 -3.701907 -0.815068 -0.814901 3.562410 2.000660 0.254197 -3.676556 0.279239 3.792335 -3.247403 -1.336264 2.324220 1.273289 -4.217691 0.923955 2.923849 -4.148534 0.873141 -1.423252 -0.525794 -1.593279 -2.824479 2.297003 1.371397 2.438777 -0.527726 0.664766 0.735542 1.546567 1.228984 0.997763 0.819149 5.035842 2.482698 -0.502856 -1.502819 -3.917171 1.609340 -4.165172 -4.604101 2.338290 1.045584 -3.141163 0.300593 0.492492 4.104568 0.959739 -0.941593 -1.261878 1.032446 +PE-benchmarks/subset-sum.cpp__printSubset(int*, int) = -0.589704 -0.762352 0.041945 -1.507877 0.799500 0.567794 0.416595 -0.574455 -1.674530 -0.333236 0.551092 -1.370823 -0.115953 1.691277 -0.518299 1.308539 2.086704 0.455331 -0.697783 -0.256171 1.643449 -0.667053 1.869892 1.872917 -1.364459 -0.143874 -0.037919 1.005827 0.560279 0.512725 0.146507 -0.587472 0.437553 -1.506593 -0.156914 -1.323115 0.345238 0.803385 1.105789 -2.300123 0.410355 0.186838 0.430106 -0.367335 -0.400398 0.181834 0.766779 1.341160 -0.550337 0.608206 1.408990 0.177770 -0.161089 0.323627 0.155359 0.280255 0.250935 0.075605 -0.522293 -0.467265 -0.015841 -0.625629 0.613826 1.307957 1.851984 0.016086 0.044662 0.771842 0.393841 0.343717 0.984534 0.182654 -0.599831 -0.238653 0.705537 -2.077938 -0.029476 -2.959578 -0.099114 -3.000641 -0.842895 0.066370 1.285441 0.220820 0.702658 0.048047 1.367633 -0.286117 -0.353816 1.411126 1.355499 -1.113176 -0.652123 -1.005626 -1.046642 0.680758 -0.806821 -0.100388 0.756419 0.502406 -1.092006 -0.633420 0.619875 0.659719 -0.551772 -0.951867 0.262822 1.205971 -1.291477 -1.240868 -0.012817 1.250411 -0.322040 -2.160947 -0.104206 -1.366870 0.754532 -0.047842 -0.428280 -1.072130 0.060529 0.652694 -0.413603 -0.530366 -0.771466 1.068714 0.637606 0.521305 0.115067 0.018837 0.167975 1.966360 0.439260 -1.058720 0.005707 0.261740 -0.601023 0.514517 -1.246120 -0.769680 0.733447 -1.452439 0.107972 0.808396 -0.836908 -0.405173 1.306294 0.523364 0.431533 4.865423 0.265883 1.805670 1.263541 -1.227119 0.793702 -0.238922 0.216798 0.726909 0.682107 -0.221318 -2.157415 -1.318146 0.554359 1.405172 1.142015 -1.477209 -0.932274 -0.216267 -0.110358 0.262045 -0.123092 0.317005 -0.209534 -1.087458 -0.276639 0.969157 2.696406 -0.335789 -0.096786 0.635221 0.830354 -1.196444 -1.987554 -0.561486 -1.258865 0.273346 0.076667 0.039195 0.897071 1.793873 -2.825162 1.257482 -0.173738 0.224339 0.960715 0.294159 -1.409141 -2.424305 -0.336715 0.672938 1.750326 -0.562798 0.421087 0.855211 -1.285743 -0.047010 0.240393 -0.043063 -0.408537 0.584776 0.068768 -0.644118 -0.675254 0.459878 -0.620735 -0.341089 -0.077303 0.904534 0.257766 -1.879687 1.135829 -0.246346 -0.591100 0.466015 -0.350832 1.285823 -1.409079 -1.290948 0.912941 0.155781 -0.376019 -0.933974 0.236770 1.030053 0.081099 0.175509 -0.662554 -1.646216 0.827349 -0.897232 1.001988 0.592658 -0.364802 0.801025 -0.089936 -0.258886 -1.523271 -0.598027 -0.390101 -0.097005 -1.265901 -0.524951 -0.275703 1.320010 1.069764 0.143767 -0.902656 0.336515 1.757224 -1.086011 -0.524115 0.879529 0.382602 -1.333187 0.416900 1.154587 -1.905353 0.108233 -0.779437 -0.020514 -0.131759 -0.951948 1.125989 0.292370 0.931771 -0.144814 0.353531 0.023710 0.709413 0.654739 0.253856 0.162777 2.124916 1.519600 -0.299702 -0.453916 -1.407356 0.430602 -1.714186 -1.585330 0.384788 0.410434 -1.142273 0.425584 0.305510 1.680514 0.363409 0.160428 -0.195684 0.186030 +PE-benchmarks/subset-sum.cpp__comparator(void const*, void const*) = -0.461843 -0.119648 0.244361 -0.870993 0.861623 0.589416 0.355947 -0.779323 -0.941948 -0.209095 0.348772 -0.749231 -0.249718 1.230721 -0.537026 0.943498 1.639972 0.322995 -0.496790 -0.549170 1.383025 -0.407604 1.697951 1.442698 -1.269583 -0.070293 0.805073 0.571681 0.753874 0.284376 -0.333287 -0.321981 0.651506 -1.381076 -0.053210 -0.859146 0.224485 0.108331 1.030105 -1.606815 0.191082 -0.810567 0.009754 -0.171919 -0.422998 0.380993 0.967142 1.052653 -0.428866 0.435871 1.252412 0.269244 -0.236204 0.310241 0.119151 0.450958 0.710559 0.513582 -0.268621 -0.424386 -0.145417 -0.426918 0.341609 1.219240 1.497036 0.123721 0.090985 0.880548 0.268910 0.304966 0.512343 0.279969 -0.277044 0.261426 0.641551 -2.220792 -0.148980 -3.024535 -0.495209 -2.515662 -0.713787 -0.361530 0.276311 -0.975370 0.915565 1.005134 1.222543 0.113903 -0.110255 0.691105 1.423678 -1.264720 -0.500383 -0.601827 -0.760898 0.369895 -0.757958 0.373586 0.587720 0.108290 -0.928477 -1.189458 0.678328 0.613139 -0.480995 -0.939147 0.057515 1.017392 -0.944873 -1.011489 -0.444416 0.319280 -0.517991 -1.826217 -0.036896 -0.909232 1.483816 0.093682 -0.281524 -1.431897 0.092188 1.075088 -0.373291 -0.940220 0.594771 0.575603 0.836477 0.451286 0.050546 -0.189655 0.298231 1.773876 1.177615 -0.769265 -0.090554 -0.065918 -0.694114 0.300721 -1.017958 -0.456176 0.536586 -1.095223 0.636450 1.116267 -0.672045 -0.581271 1.886267 -0.027834 0.506399 3.122222 0.047238 1.094772 0.760879 -1.271635 0.160066 -0.512198 0.010395 0.575298 0.737704 0.142899 -1.675365 -1.129411 0.585114 1.175540 0.804461 -1.575572 -1.112542 -0.368799 -0.065060 0.087821 -0.169598 0.390164 -0.273727 -0.751168 -0.300430 0.867252 1.992095 -0.817745 -0.742118 0.543294 0.329226 -0.651774 -1.758814 -0.593313 -1.008988 0.323277 0.449234 0.087157 0.661973 1.492347 -2.614404 0.951951 -0.418878 -0.149896 0.855790 0.542578 -0.902029 -1.152764 0.246095 0.806517 1.013783 -0.114127 0.020824 0.538423 -1.152126 -0.103515 0.097438 0.292606 -0.418806 0.542499 0.388318 -0.866218 -0.887851 0.478211 0.044647 -0.601601 0.188727 0.764721 -0.280939 -2.280123 1.239788 -0.307935 -0.529972 0.592232 -0.477917 1.190265 -1.068742 -1.211586 0.867995 0.039915 0.180691 -0.665818 0.208794 0.943183 0.281212 0.702406 -0.724069 -1.305823 0.261678 -0.498249 0.759604 0.479275 0.245889 1.056797 -1.040845 -0.268213 -1.537350 0.187813 -0.138220 0.103420 -1.045277 -1.095415 -0.212167 1.221201 1.215557 -0.056852 -0.449967 -0.088124 1.228292 -1.862897 -0.404168 0.747551 1.448053 -1.059464 0.356745 0.846566 -1.236393 -0.358962 -0.343297 -0.284744 -0.234493 -0.990704 0.709600 -0.167385 0.622343 0.133416 0.249720 0.154884 0.739243 0.305363 0.578756 -0.004671 1.099918 1.917194 -0.789324 -0.581128 -1.144203 0.530538 -1.623028 -1.526470 0.652486 0.198914 -0.779242 0.194370 0.003769 1.274120 0.039809 -0.098145 -0.200224 -0.138171 +PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -7.039929 -7.432297 -5.520735 -13.903888 10.105451 14.034556 4.943812 -11.943506 -15.645802 1.412062 8.559370 -14.502067 -0.467346 17.589427 -6.663320 16.638426 19.771663 1.753046 -9.816943 -2.134293 18.693751 3.733249 22.067614 18.730885 -14.361910 -1.857559 1.446900 4.692427 7.055263 0.268253 0.650718 -6.595868 9.744314 -19.250453 -7.486643 -9.280802 2.815750 5.073285 18.151313 -18.766616 4.085569 -3.596368 -0.740507 -3.912048 -6.038448 0.602183 8.830722 14.534903 -3.842617 6.355838 14.259320 4.128734 -3.819986 3.644237 1.742846 2.931196 0.196390 3.681735 -2.966560 -10.419945 -0.984610 0.870865 2.822131 15.099358 18.174422 1.949974 -0.337966 12.476222 4.185257 3.288243 9.579797 3.266451 -3.997380 0.878257 7.366569 -19.674071 -3.119778 -25.707034 -4.417034 -24.421926 -6.183098 2.955483 8.010151 -5.870326 11.427253 3.665961 14.995188 -1.565886 -6.858479 16.191899 15.816317 -15.395914 -6.466014 -7.655324 -10.171921 4.155571 -8.886936 5.179050 6.927399 2.265053 -13.064362 -10.558354 0.642995 8.693640 -6.071845 -14.861541 4.067854 9.803869 -11.232465 -11.796606 3.328912 12.065141 -5.891988 -23.787318 -10.986352 -12.623424 11.368875 -1.901728 -5.394815 -15.914494 0.564720 8.318605 -4.030367 -10.918793 7.041276 4.450612 11.449603 9.141529 0.116769 -0.212020 4.206247 27.538724 4.013679 -10.782325 1.928978 -2.184252 -1.795424 8.871007 -10.134930 -6.395663 4.859980 -15.308763 7.356088 14.316704 -8.111762 -4.802507 17.533278 5.396439 2.220134 48.405094 2.306733 18.893547 15.169904 -15.458296 -1.814786 -8.767862 2.452536 7.165546 5.833835 -1.433664 -20.046186 -14.613252 9.712933 15.564159 11.378083 -17.833419 -4.493094 0.035722 -0.486564 -1.452169 -2.522114 3.471718 -0.607126 -11.278436 -3.378382 14.425775 27.067922 -8.306862 -0.229822 8.788074 10.399915 -7.617224 -13.132586 -8.163920 -12.855028 4.569346 9.860038 2.426544 10.125936 19.285746 -22.412732 11.421980 -2.393818 1.891020 7.147849 9.684199 -16.883062 -9.032381 -2.697022 7.620647 13.247545 -4.620891 3.835519 8.829455 -14.146801 -0.993179 4.247616 -2.164657 -3.767594 6.176345 5.236548 -7.024804 -8.164737 9.419440 -3.187879 -4.566510 0.661866 11.603384 -3.366216 -21.093225 13.232880 0.127415 -7.391975 3.812416 -6.436693 17.318489 -14.156256 -14.283116 12.297013 -0.237969 -0.548611 -4.561814 3.784675 10.440988 7.270003 10.952120 -11.458956 -16.082044 8.646658 -5.283279 12.358364 6.053243 -1.631869 7.917585 -19.100447 -2.728487 -17.823091 -8.916709 0.691574 4.777976 -16.274085 -5.792554 -2.503882 15.987806 9.431499 -0.133035 -13.984803 1.252163 14.629534 -16.514956 -1.336375 8.547761 16.932098 -17.800207 2.574826 10.990825 -15.987609 2.696737 -4.295206 -1.890902 -6.433344 -12.203822 11.744134 5.106909 11.677877 -2.029899 4.566562 3.666146 7.495306 5.696490 5.475555 4.539782 16.656887 14.615168 -4.701497 -9.160449 -16.614579 7.107363 -18.637207 -21.501546 10.818408 -0.885790 -12.384544 1.622050 -0.857806 18.775631 3.886639 -1.032687 -3.242603 3.101442 +PE-benchmarks/subset-sum.cpp__generateSubsets(int*, int, int) = -3.058129 -3.127590 -1.182320 -6.818044 4.582420 5.072333 2.151895 -4.487975 -7.207511 -0.183196 3.193846 -6.244421 -0.547690 8.016269 -2.938142 6.698327 9.506696 1.300666 -3.991418 -1.293886 8.350804 -0.075773 9.781226 8.522478 -6.494651 -0.908274 1.006199 3.444934 2.813668 0.986339 0.260595 -3.067193 3.575436 -8.204286 -2.263106 -4.825347 1.397292 2.363327 6.893851 -9.260691 1.828763 -1.426371 -0.345090 -1.719925 -2.524728 0.398705 4.145622 6.427737 -2.041008 2.631328 6.550599 1.646720 -1.746775 1.626923 0.999404 1.442770 0.611545 1.610280 -1.786466 -3.786833 -0.531450 -0.705320 1.815620 6.679720 8.399705 0.768699 0.050160 4.898502 1.697889 1.584411 4.184350 1.150586 -2.128325 0.170996 3.389423 -9.909148 -1.215366 -13.371806 -1.613068 -12.526311 -3.341919 0.614675 4.164624 -2.224466 4.364135 1.645699 6.625917 -0.719190 -2.294548 7.287328 7.196476 -6.257274 -3.054145 -4.112748 -4.783338 2.240183 -3.814491 1.437548 3.323517 1.442091 -5.686791 -4.202553 1.194273 3.577966 -2.535696 -6.066900 1.621264 5.279462 -5.322873 -5.361182 0.504663 5.577139 -2.187214 -10.816425 -3.694428 -5.756202 5.778146 -0.599956 -2.411819 -6.611701 0.446578 4.063424 -2.003240 -3.996661 1.692151 3.098012 4.520063 3.470186 0.192756 0.064156 1.534066 11.459448 2.625070 -4.732873 0.533966 -0.280370 -1.834538 3.057810 -4.976442 -2.946901 2.475012 -6.874064 2.751578 5.806216 -3.828734 -2.541273 7.791105 2.153634 1.702449 22.978212 0.784743 8.426965 6.128141 -6.716100 0.531509 -2.969272 0.945171 3.020012 2.989989 -0.646783 -9.841391 -6.454625 3.912017 6.875560 5.255660 -8.170490 -3.142318 -0.721807 -0.544845 -0.014823 -1.074896 1.617521 -0.769505 -4.792363 -1.552806 5.948907 12.484006 -3.200775 -1.520064 3.609749 4.390537 -3.882175 -7.224896 -3.282908 -5.467945 1.893425 3.308567 0.616398 4.583529 8.720579 -12.213835 5.397823 -0.970108 0.773608 3.808211 3.558293 -7.157497 -6.709238 -1.255050 3.748697 6.858904 -1.996092 1.486592 3.736137 -6.182764 -0.368508 1.739928 -0.245434 -1.699869 2.721058 1.621401 -3.497306 -3.732361 3.322269 -1.963792 -1.682639 0.104847 4.713113 -1.206418 -10.521356 6.159165 -0.331184 -2.898362 2.062022 -2.624705 7.537467 -6.492671 -6.735967 5.157902 0.240142 -0.765913 -2.770058 1.432285 4.917932 2.484710 3.959064 -4.590644 -7.488708 3.840659 -2.871951 5.490837 2.640568 -0.686572 4.463870 -6.592292 -1.359724 -7.988116 -3.685932 0.207135 1.422802 -6.997404 -2.953630 -1.112915 6.902231 4.588000 0.058080 -5.616014 0.667559 7.242899 -7.429212 -1.180674 4.044629 6.115162 -7.579022 1.490573 5.255399 -7.832981 0.518207 -2.468593 -0.794570 -2.284086 -5.339361 4.874632 1.693665 4.829759 -0.694920 1.980202 1.068097 3.303517 2.670622 2.509344 1.657630 8.103035 7.909650 -2.387165 -3.556910 -7.307319 2.954596 -8.430679 -9.423562 3.896057 0.216134 -5.075330 1.186018 0.044419 8.277203 1.434162 -0.132319 -1.162469 1.110584 +PE-benchmarks/subset-sum.cpp__main = -0.756010 -0.767883 0.303650 -2.068857 1.631369 1.162437 0.776119 -0.836818 -2.467157 -0.450318 0.919158 -2.142522 -0.655495 2.629749 -0.826822 1.622563 3.238511 0.654914 -1.080687 -0.590731 2.172669 -0.389532 3.125348 2.913764 -2.202867 0.018363 0.102296 1.122797 0.724337 0.917209 -0.204881 -1.323730 1.096415 -1.951128 -0.357121 -1.581367 0.176724 0.548518 1.484116 -3.370048 0.540774 0.089048 -0.127710 -0.480833 -0.458284 0.862018 1.749416 1.974985 -0.676087 1.184499 1.940481 0.277537 -0.258873 0.520540 0.579373 0.379373 0.641429 0.458221 -0.937364 -0.730516 -0.300620 -0.892623 0.280717 2.064425 2.672287 0.086202 -0.165496 0.950672 0.415019 0.543673 1.343827 0.448630 -0.123127 -0.009706 1.226882 -2.478006 -0.314270 -4.230690 -0.450692 -4.848823 -1.451974 -0.054575 2.179686 -0.396780 0.955654 0.062738 2.300025 -0.267405 -0.544590 2.057776 2.529733 -1.868631 -1.093422 -1.175519 -1.391182 0.801461 -1.189259 0.232289 1.118623 0.336232 -1.947762 -1.184586 0.788706 0.742857 -0.883967 -1.267119 0.363854 1.924156 -2.142859 -1.376448 -0.506174 1.636781 -0.165713 -3.362237 -0.849457 -1.470507 1.845633 0.199020 -0.996071 -1.612936 0.402178 1.042565 -0.887207 -0.853594 -0.207368 1.537180 1.088962 1.057187 0.226409 0.157289 0.598474 3.054056 1.100060 -1.529845 0.170123 0.073449 -0.568234 0.964144 -1.515238 -0.942248 0.801724 -2.052214 0.851176 1.251036 -1.400262 -0.791549 1.730171 0.672330 0.528420 6.592106 0.043221 2.664132 1.697961 -2.094089 0.608868 -0.710326 0.202054 0.907215 1.278467 0.008125 -2.586695 -1.974657 1.247909 2.402530 1.708058 -2.761697 -0.777178 -0.227153 -0.080025 0.070653 0.075950 0.483001 0.059595 -1.565176 -0.519650 1.592194 4.069241 -0.919335 -1.390640 0.885751 1.057927 -0.867166 -2.180151 -0.798543 -1.201690 0.580332 0.870094 0.070686 1.463733 2.865595 -4.667084 1.994485 -0.447697 -0.075682 1.523754 0.946417 -2.030397 -2.451669 -0.469036 1.229121 2.552696 -0.077527 0.168596 1.088004 -2.071568 -0.212099 0.427700 0.118494 -0.701876 1.070547 0.458016 -1.271556 -1.129558 0.096370 -0.499460 -0.315434 -0.302545 1.477362 -0.043860 -4.129923 1.985459 -0.084784 -1.001663 0.377297 -0.564003 2.084597 -2.058182 -2.313311 1.338799 -0.244396 -1.058146 -1.155898 0.164972 1.382295 0.485927 0.965711 -1.268189 -2.451093 1.736562 -0.874102 1.943124 1.025543 -0.283549 1.929454 -0.881771 -0.656309 -2.124365 -1.082301 0.596038 -0.289336 -1.805773 -0.420394 -0.645143 1.981506 1.726643 0.165586 -1.419077 -0.206164 2.473239 -2.230749 -0.575940 1.546603 1.502997 -1.818251 1.060523 1.922834 -2.518800 -0.000659 -1.137291 -0.523082 -0.671002 -1.488599 1.553872 0.149326 1.311293 -0.027910 0.529222 -0.120772 1.031197 0.507796 0.364442 0.282371 2.808640 3.095370 -1.170647 -0.353719 -2.235442 1.180439 -2.707301 -2.743184 0.891510 0.095296 -1.685619 0.314091 -0.032287 2.311934 0.446316 -0.346789 -0.653491 0.612596 +PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -0.837625 -1.002601 -0.480240 -2.077852 1.150755 1.112085 0.595764 -0.728367 -2.387052 -0.462739 0.653730 -2.133486 -0.088311 2.479245 -0.561395 2.133511 3.280480 0.575150 -1.000553 0.117335 2.408304 -1.044547 2.554480 2.481893 -1.638244 -0.221635 -0.379202 1.193265 0.201136 0.779819 0.450872 -1.225856 0.620497 -2.270062 -0.469800 -1.861370 0.517606 1.248580 1.720899 -3.513209 0.681399 0.722376 0.727554 -0.747127 -0.746472 -0.362682 1.089937 1.889901 -0.618455 0.555170 1.721467 0.416376 -0.328747 0.515301 0.223001 0.538549 -0.258591 -0.139910 -0.895858 -0.846780 -0.003369 -0.633104 0.808647 1.702488 2.501045 0.110857 0.082055 1.310171 0.317144 0.481997 1.279974 0.112832 -1.004478 -0.488544 0.803863 -2.709491 -0.328146 -3.519410 -0.117683 -4.000548 -1.143235 0.207095 1.672234 1.064978 1.146714 -0.217556 1.796256 -0.767079 -0.428073 2.309259 1.938889 -1.578255 -0.939543 -1.752034 -1.410965 0.959908 -1.047106 -0.402485 1.291244 0.529750 -1.572029 -0.823669 0.965956 1.099357 -0.686530 -1.783365 0.547495 1.659681 -1.712849 -1.950631 0.219485 2.139024 -0.641297 -3.052753 -0.238262 -1.772769 0.145795 -0.020779 -0.583266 -1.764936 0.129181 0.878317 -0.536473 -0.955495 -0.968110 1.704090 0.860514 0.678004 0.317842 0.091922 0.271625 3.113536 0.372551 -1.376235 0.152203 0.307327 -0.602430 0.686107 -1.612295 -1.267526 0.508307 -2.247176 0.162393 1.410421 -1.180046 -0.398099 1.160143 0.785075 0.636726 7.408516 0.353470 2.680434 1.894750 -1.854660 1.585981 -0.443010 0.062576 0.682488 0.796873 -0.278080 -3.293306 -1.823531 0.825212 1.897248 1.705300 -1.890594 -1.171408 -0.395333 -0.165952 0.379592 -0.241872 0.502949 -0.093556 -1.717676 -0.385892 1.638230 4.372721 -0.409883 0.447535 1.221365 1.420333 -1.737757 -3.261163 -0.891279 -2.189377 0.252118 0.223404 -0.093161 1.184266 2.539307 -3.395996 1.789983 -0.186974 0.328107 1.461676 0.495110 -2.076683 -3.862829 -0.697383 1.125563 2.904874 -1.129296 0.896182 0.910060 -1.663995 -0.086575 0.444125 -0.206759 -0.393959 0.704880 -0.226331 -0.889857 -0.891765 0.959155 -1.149295 -0.636961 -0.115527 1.161870 0.887222 -1.825955 1.704507 -0.186361 -0.666576 0.668121 -0.406868 2.029840 -1.860631 -1.849897 1.427241 0.257827 -0.442414 -0.905543 0.397764 1.504779 0.386265 0.221542 -0.677575 -2.604577 1.224360 -0.967159 1.441808 0.793875 -0.486522 0.742616 0.195736 -0.456047 -2.051693 -1.469390 -0.772554 -0.051354 -1.904970 -0.827740 -0.419765 2.008085 1.331740 0.305237 -1.842725 0.379290 2.466604 -1.187834 -0.482894 1.365349 0.046975 -2.201319 0.112947 1.800765 -2.694710 0.212795 -1.077526 0.539980 -0.301853 -1.449983 1.262913 0.539170 1.231434 -0.160200 0.310020 0.060034 0.801944 1.134807 0.333615 0.183695 3.090215 1.319376 -0.186468 -0.695265 -1.881092 0.399237 -2.366237 -2.283064 0.602989 0.739106 -1.738464 0.553650 0.877393 2.333083 0.298493 0.590459 -0.156918 0.005925 +PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -1.212541 -1.477951 -0.316083 -2.752230 1.630749 1.319781 0.874866 -1.443352 -2.877509 -0.136563 0.972515 -2.381350 0.149318 3.387279 -0.652599 3.136628 3.655201 0.759690 -1.457551 -0.225266 3.148735 -0.769997 3.154143 2.760140 -2.034112 -0.238697 0.245430 1.375971 0.551503 0.937647 0.064527 -1.245141 0.866413 -3.269896 -0.621085 -1.938240 0.428980 1.507023 2.740960 -3.753706 0.928024 0.437830 1.113013 -1.028191 -1.107957 -1.518588 1.254918 2.477422 -0.649432 0.924490 2.046779 0.140809 -0.387095 0.672338 0.906563 1.247126 0.322224 0.132779 -1.099708 -1.209859 -0.244844 -0.314922 1.151719 2.230161 2.843947 0.146367 -0.082085 1.950170 0.661594 0.741826 1.668021 0.272789 -1.725842 -0.573175 1.176677 -3.966345 -0.147623 -4.745193 -0.343840 -4.285793 -1.549543 0.570426 1.690178 0.009662 1.966476 0.744955 2.440541 -0.979122 -0.864017 2.058841 2.640064 -2.211829 -1.217907 -1.745376 -1.892341 1.035448 -1.270221 -0.361669 1.732457 0.354994 -2.171655 -1.349877 1.054216 1.688914 -0.894551 -2.127435 0.850039 2.280123 -1.866084 -2.924121 0.327433 2.342063 -1.247809 -3.704822 -0.873446 -1.939356 0.639590 -0.018621 -1.135962 -2.958937 0.400738 1.397356 -0.873048 -1.709975 0.185198 1.200416 1.311226 1.190955 0.330039 -0.045750 0.300120 4.228684 1.102406 -1.945879 0.442260 0.261771 -0.608524 1.108049 -1.626258 -1.886770 0.094101 -2.797251 0.214182 2.081050 -1.598384 -0.438472 2.304772 1.231539 0.576203 8.194011 0.252997 2.994842 2.403339 -2.447674 0.878352 -0.621727 0.213016 0.851775 1.261760 -0.337115 -3.309390 -2.516000 1.378693 2.616264 2.293527 -2.284709 -2.121331 -0.639003 -0.172958 0.710505 -0.385291 0.569275 0.032084 -2.249635 -0.537707 1.778620 4.412199 -1.253804 -1.156896 1.608533 1.781037 -1.886288 -3.398256 -1.313209 -3.444976 0.478315 0.151152 -0.142466 1.639099 3.371535 -4.461490 2.463818 -0.460150 0.017757 2.172088 0.967506 -2.528857 -3.897657 -1.059395 1.400177 3.066633 -1.378443 0.729135 1.311060 -2.290866 -0.104132 0.300608 -0.312171 -0.641134 1.100732 -0.297972 -1.238833 -1.031061 1.457698 -0.957857 -1.244659 0.185188 1.663877 0.831767 -2.645015 2.226694 0.046403 -0.812496 1.507638 -0.444150 2.711675 -2.243696 -2.504027 1.890951 0.407466 0.076404 -0.746498 0.525751 1.964492 0.783112 0.527923 -1.107685 -2.100715 1.106081 -1.132240 2.258843 1.033177 -0.691832 1.069157 -1.014846 -0.702113 -2.207002 -0.953137 -1.105674 0.202359 -2.313813 -2.465073 -0.554602 2.847287 1.602197 0.446567 -1.849914 -0.150640 2.795159 -2.600187 -0.305939 1.878952 0.421948 -2.781010 0.109501 2.425264 -2.954678 0.332532 -1.003660 0.237166 -0.763419 -1.774726 1.787107 0.820393 1.558310 -0.496850 0.121926 0.475098 1.025438 1.489372 0.724926 0.346666 3.041421 1.607502 -0.720758 -1.431422 -2.455284 0.538391 -3.052725 -2.773331 1.158702 0.767776 -2.454714 0.546415 0.572101 2.893215 0.366069 0.390613 -0.270577 -0.079285 +PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = -0.998252 -0.977897 0.309071 -2.370820 1.854626 1.050769 1.014867 -0.649286 -3.189930 -0.848667 0.840510 -3.038641 -0.877067 3.612256 -0.675203 2.254374 4.296219 1.061221 -1.454545 -0.253134 2.719658 -0.982900 3.516963 3.344221 -2.280035 0.041383 -0.556475 1.103536 0.251084 1.378346 0.000513 -1.726589 1.036419 -2.298795 -0.229794 -1.951636 0.209399 1.110384 1.579065 -4.518596 0.884456 1.167391 1.265905 -1.013035 -0.712348 0.200876 2.235531 2.528140 -0.631149 0.882883 1.919992 0.099015 -0.028668 0.737193 0.731483 0.694482 0.441002 -0.148722 -1.696390 -0.814487 -0.441771 -1.305398 0.599809 2.399156 3.142149 0.273387 -0.233700 1.222846 0.559153 0.939640 1.577491 0.369560 -0.356908 -0.509856 1.282558 -2.729279 -0.469236 -4.618249 -0.339642 -5.636627 -1.964261 0.054856 2.960233 1.162103 1.175207 -0.228513 2.823624 -0.929617 -0.521012 2.431929 3.335630 -2.192608 -1.467158 -2.005806 -1.851575 1.152917 -1.368950 -0.353740 1.538228 0.478780 -2.551346 -1.269256 1.086587 1.026363 -0.967421 -1.321223 0.638890 2.613619 -2.527603 -2.022306 -0.542748 2.229584 -0.207410 -4.085959 -0.093987 -1.666387 0.329370 0.632354 -1.394325 -2.131660 0.726055 0.980498 -1.270657 -1.051734 -1.549675 2.333839 0.633307 1.020384 0.467432 0.225169 0.603739 3.294214 1.310177 -2.031696 0.453556 0.271902 -0.652163 1.021232 -1.782748 -1.848131 0.458984 -2.909621 0.447654 1.387446 -1.887638 -0.721347 0.453120 0.965768 0.780071 6.923949 -0.068349 3.268130 1.989880 -2.649456 2.038373 -0.548227 -0.059970 0.650901 1.677626 0.132315 -2.721735 -2.580045 1.580858 3.060921 2.410502 -2.380739 -1.274962 -0.518959 -0.136866 0.445793 0.285926 0.815943 0.297271 -2.406838 -0.681894 1.841601 5.132279 -0.964759 -1.236405 1.427904 1.130390 -0.987827 -3.297940 -1.031952 -2.271040 0.422676 0.447664 -0.186675 1.679103 3.721102 -4.843383 2.961991 -0.590568 -0.133749 2.231956 0.541314 -2.421003 -3.808550 -0.966616 1.814634 3.694262 -0.475370 -0.166472 0.937708 -2.534639 -0.282954 0.389181 0.117272 -0.775945 1.315852 -0.327248 -1.432317 -1.275420 0.110048 -0.931387 -0.838737 -0.393734 1.680066 1.134295 -3.171344 2.701639 -0.134603 -0.912986 0.598611 -0.298196 2.227888 -2.163340 -2.782035 1.532650 -0.279195 -1.386611 -1.488758 0.219092 1.839143 0.544883 0.288404 -0.910916 -3.014907 2.172665 -0.999632 2.633344 1.268668 -0.460099 1.778198 1.437510 -0.970647 -2.092916 -1.404027 -0.405268 -0.707831 -2.111586 -1.188192 -0.890061 2.666690 2.078993 0.326787 -1.850517 -0.565185 3.162148 -2.044654 -0.985637 2.272032 -0.550644 -2.237754 0.986993 2.834942 -3.194236 -0.066623 -1.727686 0.299131 -0.813106 -1.886636 1.481271 0.195287 1.260246 -0.120441 0.149022 -0.159973 0.994040 1.091516 0.083695 0.015631 3.921154 1.992529 -1.149034 -0.079498 -2.622169 1.264150 -3.393227 -2.844282 0.859855 1.003234 -2.416461 0.430470 0.506061 2.594547 0.123007 -0.119291 -0.869830 0.420926 +PE-benchmarks/rat-in-a-maze.cpp__solveMazeUtil(int (*) [4], int, int, int (*) [4]) = -3.511397 -4.520762 -0.834255 -7.540883 4.698024 3.834039 2.780978 -4.644638 -9.247273 -0.718273 3.871078 -7.484747 -0.031895 9.974049 -2.420262 8.563789 11.164637 2.277592 -5.323034 -1.543316 9.878897 -1.927056 10.467130 9.494309 -6.691321 -0.484434 -0.120362 3.502356 3.471680 1.024796 0.449963 -1.558332 3.565109 -10.287190 -2.460293 -5.623612 1.119622 3.884560 7.880407 -11.189776 2.659976 -0.672615 2.693748 -2.620794 -3.194725 -0.076493 4.401185 7.562516 -1.887273 3.111191 6.829524 -0.006115 -0.955588 2.029803 1.610840 2.697061 1.247942 1.413375 -2.856487 -3.919398 -0.778230 -1.971875 3.290447 7.322290 8.920693 0.886978 -0.464814 6.132877 3.047139 2.385002 5.531725 1.227925 -3.572124 -1.609980 3.838561 -12.446668 -0.730734 -14.959895 -1.685191 -14.382781 -4.498288 1.721876 6.290428 -1.247954 5.282888 2.971363 7.701811 -2.223484 -3.160147 7.572323 8.140366 -7.208470 -3.778775 -4.583435 -5.660064 2.757075 -4.116213 0.424868 4.677963 2.219363 -6.895371 -4.025940 2.650224 4.440524 -2.958605 -6.140454 2.334294 6.779225 -6.361233 -7.249570 1.113662 6.776165 -2.558727 -11.668521 -1.542767 -6.452202 4.741040 0.147641 -3.564532 -7.795293 1.047905 3.858212 -2.668213 -4.562071 0.129145 3.746297 3.602130 4.249583 0.385082 0.155850 1.325215 11.926872 3.923889 -6.085218 1.457613 0.157799 -1.965414 4.138295 -5.028338 -5.388744 1.982641 -8.538123 1.909832 5.748119 -4.818435 -2.612670 7.609813 3.951850 1.282482 22.128195 1.133001 9.703286 7.485294 -7.221351 2.113260 -2.865439 1.291526 3.516023 3.963933 -1.032103 -10.164204 -7.917339 4.456948 8.365432 6.648433 -8.278013 -5.322388 -1.097220 -0.595204 1.743202 -0.807998 1.868929 0.311294 -6.545523 -1.845190 6.021794 13.940714 -3.828360 -1.426475 4.408484 2.908169 -4.646361 -10.583007 -3.955300 -7.548821 1.967258 2.086218 0.409945 4.881280 10.347102 -12.498010 7.435458 -2.409969 0.764564 5.430098 3.589183 -8.034289 -9.706342 -2.999175 3.850290 8.782911 -2.888381 -0.202464 4.609862 -7.416008 -0.585104 1.440312 -0.968351 -2.027486 3.571965 0.551688 -3.234943 -3.433669 4.200350 -1.889492 -2.289820 0.997043 5.711921 -0.293423 -8.441908 6.730607 -0.627095 -3.200773 3.166896 -1.756802 8.046408 -6.241949 -7.157579 5.762423 0.576828 -1.178203 -4.241253 1.596816 5.866167 2.610275 2.087321 -4.051880 -7.580246 4.239263 -4.160227 7.078551 3.361620 -1.920850 4.599351 -3.053612 -1.712103 -7.984732 -2.279107 -2.958723 0.439042 -7.310375 -6.019498 -1.638411 8.333835 4.992930 0.707143 -5.608631 0.625602 8.689218 -8.456461 -2.570073 5.332691 3.579146 -8.199283 2.530698 6.889526 -9.259932 1.213307 -3.144935 -0.407332 -2.414906 -5.371513 6.015212 2.645159 5.215730 -1.750533 1.701093 2.055003 3.655103 3.559957 2.541224 1.128511 9.966978 7.384361 -2.534449 -4.239655 -7.998853 3.358148 -9.438087 -9.170858 4.022236 3.361456 -6.990340 1.431818 0.999635 9.335121 1.695650 -1.313022 -1.754795 1.320529 +PE-benchmarks/rat-in-a-maze.cpp__main = -0.229882 -0.080224 0.377036 -0.671965 0.720899 0.221157 0.375223 0.035456 -1.049448 -0.495968 0.168993 -1.190094 -0.645251 1.217861 -0.213606 0.445257 1.493753 0.435501 -0.354195 -0.099640 0.541085 -0.367874 1.202526 1.167853 -0.761567 0.152262 -0.324012 0.341184 -0.174923 0.855832 -0.137672 -0.955940 0.367119 -0.267662 0.104023 -0.572584 -0.079297 0.193183 0.077969 -1.629834 0.246104 0.791449 0.433680 -0.308625 -0.049763 0.319684 1.034892 0.776420 -0.084889 0.380550 0.443843 0.024415 0.167003 0.266720 0.452893 0.128642 0.366939 -0.320319 -0.798118 -0.075690 -0.262247 -0.719837 -0.119239 0.766455 1.020850 0.067039 -0.161353 0.023159 -0.055006 0.341328 0.433599 0.171744 0.213411 -0.049695 0.408140 -0.284898 -0.062635 -1.154920 -0.106133 -2.150715 -0.798138 -0.155451 1.291288 0.759351 0.160858 -0.387089 1.036174 -0.285217 -0.042272 0.606309 1.314628 -0.662720 -0.543520 -0.561265 -0.461235 0.372761 -0.432193 -0.205063 0.445133 0.089851 -0.918430 -0.302537 0.464847 0.112883 -0.327866 -0.018255 0.124131 0.921986 -1.105064 -0.404701 -0.564840 0.553276 0.222214 -1.335558 -0.017085 -0.255346 -0.054869 0.407136 -0.593236 -0.476327 0.442992 0.201165 -0.507878 -0.120385 -0.960046 1.004774 -0.010233 0.260622 0.242351 0.202173 0.289115 0.855830 0.437367 -0.609177 0.162695 0.108135 -0.159390 0.286820 -0.449658 -0.561984 -0.003294 -0.899362 0.170329 0.207977 -0.706505 -0.199316 -0.590864 0.223298 0.290765 1.844938 -0.232905 1.036214 0.461727 -0.921556 0.796068 -0.133267 -0.140739 0.023593 0.665398 0.250937 -0.414725 -0.789393 0.610762 1.113012 0.792974 -0.720291 -0.059991 -0.163325 0.049663 0.092646 0.332447 0.278294 0.226617 -0.805806 -0.251895 0.447559 1.737032 -0.252453 -0.810891 0.394131 0.209001 0.003813 -0.763472 -0.199183 -0.378517 0.117984 0.053555 -0.137160 0.504019 1.264270 -1.811560 1.126430 -0.175804 -0.245660 0.906911 0.010485 -0.640965 -1.209184 -0.346017 0.726056 1.346523 0.125129 -0.145182 0.114107 -0.865921 -0.157752 0.065503 0.217806 -0.328118 0.514920 -0.106553 -0.633012 -0.451115 -0.531445 -0.204906 -0.172234 -0.392937 0.508182 0.670747 -1.450134 0.997635 0.057105 -0.298098 -0.041265 0.064798 0.505998 -0.730472 -1.039465 0.304368 -0.393172 -0.931438 -0.466834 -0.084324 0.446983 0.053728 -0.013334 -0.214558 -0.894727 1.044157 -0.168780 0.960207 0.477011 -0.059622 0.774233 1.048613 -0.474518 -0.356842 -0.537351 0.193730 -0.663175 -0.464987 0.134503 -0.431695 0.773075 0.834649 0.174370 -0.502030 -0.398387 1.061941 -0.452438 -0.356028 0.898323 -0.498953 -0.475508 0.530298 1.059743 -0.967237 -0.177243 -0.746054 -0.028237 -0.339871 -0.584318 0.359930 -0.216986 0.240534 0.160497 -0.075668 -0.397872 0.264692 0.172628 -0.245284 -0.063126 1.370176 0.707142 -0.541522 0.491130 -0.818181 0.499299 -1.136626 -0.836328 0.145575 0.257687 -0.779930 0.049383 0.088099 0.623765 -0.006649 -0.143355 -0.433367 0.231688 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -2.367307 -2.249852 0.943411 -6.056240 5.900784 4.111251 2.400064 -3.108510 -6.623825 -0.859319 2.136702 -6.572644 -1.589431 8.052917 -2.623479 6.550908 9.468836 1.153551 -3.278789 -0.532250 7.414252 -1.120186 9.271400 6.327974 -6.172467 -0.462725 -1.629933 3.875614 1.303557 3.195350 0.377916 -2.837540 2.935848 -6.509351 -1.832797 -4.048833 1.573982 2.146064 4.373500 -9.671569 1.811729 1.420999 0.427425 -1.670200 -1.711482 -0.013909 4.721661 6.092353 -1.381053 2.182897 4.604657 0.749620 -0.255119 2.329069 0.287525 1.439749 1.550002 -1.525169 -4.297085 -3.338111 -1.132789 -2.642691 2.111811 5.872560 7.810581 0.691277 0.131450 5.126071 0.899169 1.957099 4.320354 1.142482 -2.370092 -0.002201 3.604679 -6.816434 -0.567707 -8.545041 -2.132382 -9.830312 -4.265148 -0.520445 4.483803 1.970916 4.043359 0.778599 6.380676 -1.183654 -1.338635 6.707032 7.156984 -5.915480 -3.015618 -5.496349 -4.107427 1.733766 -3.709911 -0.724205 2.508514 2.015508 -5.647790 -3.135132 2.286992 2.958074 -1.958976 -4.307298 0.986826 5.871768 -5.976261 -6.196612 -0.263782 5.614985 -2.651282 -9.754127 -1.785223 -3.402075 3.453442 0.432965 -0.392184 -5.564820 1.179785 4.060757 -2.032087 -3.180787 -1.736698 4.950809 3.267945 2.594895 1.113119 1.121369 0.704262 9.201994 3.263311 -3.465731 -0.201490 0.034983 -0.968497 2.873767 -3.428054 -3.157114 0.083110 -6.857786 0.610068 5.649633 -3.418260 -1.904619 0.730307 2.259108 2.394189 17.196715 0.385186 7.193157 4.707308 -6.929204 2.240894 -2.085125 0.366490 1.818727 2.394170 -0.112488 -8.355979 -6.429801 3.797745 5.672540 5.177442 -6.597940 -1.955225 -1.525450 -0.118824 0.798004 -1.047511 3.255723 0.067614 -5.918882 -1.094773 3.879033 13.218562 -2.709667 -2.529863 5.224002 1.719680 -3.747092 -8.031503 -3.600887 -3.470944 0.189357 2.062268 0.047308 2.842304 8.496346 -9.091751 5.873788 -0.615804 0.060237 5.102727 0.904888 -5.561683 -7.052703 -3.070970 4.438580 7.449576 -2.059953 -0.006065 2.176935 -5.338610 0.708394 1.273425 0.011982 -0.268782 2.517952 -0.162666 -3.772856 -3.701622 1.484600 -1.760022 -0.549792 -0.451659 3.685573 0.975896 -7.056657 6.123234 -1.019097 -2.527285 2.761878 -0.750253 7.410008 -4.684024 -6.296399 4.521518 -0.800047 -2.800346 -3.856103 1.707722 3.890657 2.834827 1.603377 -3.461546 -6.771637 3.349343 -2.492431 4.336898 2.859808 -0.236520 4.175690 0.124905 -2.712628 -5.732372 -4.458937 -1.000038 0.495929 -5.173506 -2.351433 -1.504148 6.913943 4.447242 0.220240 -4.694388 -1.061131 7.386801 -6.064398 -2.380105 5.602034 0.870561 -6.907924 1.498482 6.630174 -6.406690 -0.260835 -2.311109 0.842741 -2.512927 -4.282535 3.549740 1.078542 2.961741 -0.332461 1.434498 -0.438733 2.080968 2.247479 1.254570 -0.577890 9.573834 6.240949 -2.483254 -1.567731 -5.340876 2.790115 -8.067336 -7.029469 2.999304 0.887282 -4.215596 2.156392 1.631570 7.007150 1.090112 -0.814851 -0.986441 -0.532421 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::queue >, void>() = -0.092970 0.087194 0.530415 -0.502313 0.379194 0.055492 0.117100 0.077446 -0.506440 -0.294032 -0.071035 -0.403497 -0.347261 0.559268 -0.254097 -0.111427 0.802033 0.343539 -0.102120 -0.225143 0.175554 -0.160641 0.596382 0.662760 -0.528524 0.062866 0.036166 0.387034 0.058593 0.688625 -0.185619 -0.538995 0.051990 0.221609 0.271502 -0.486596 -0.020439 0.052431 -0.285576 -0.935064 0.122362 0.250186 0.068660 -0.067516 0.129034 0.379785 0.597305 0.352595 -0.111741 0.143878 0.329800 0.363600 0.022504 0.102125 0.226516 0.097117 0.504435 -0.186431 -0.273010 0.076629 -0.132742 -0.377480 -0.042166 0.483017 0.567542 0.066060 -0.018339 -0.282338 -0.001047 0.162594 0.189173 0.072887 0.135786 0.141162 0.134602 -0.105216 0.128648 -0.777301 0.072168 -1.225703 -0.346728 -0.300970 0.599013 0.306199 -0.120614 -0.146730 0.565255 -0.059820 0.169901 0.263279 0.622935 -0.199401 -0.204088 -0.273521 -0.362279 0.241503 -0.176847 -0.122227 -0.030978 0.190042 -0.366040 -0.221598 0.213202 -0.058397 -0.193335 0.253786 -0.021583 0.494902 -0.703846 0.007541 -0.431024 0.286669 0.199534 -0.638231 -0.095896 -0.354913 0.327401 0.057984 -0.242172 -0.128152 0.198945 0.245748 -0.303212 0.179125 -0.695232 0.548123 0.015257 -0.068623 -0.015745 -0.059011 0.050387 0.186426 0.213612 -0.363397 -0.022221 0.181224 -0.230984 -0.151189 -0.436493 -0.068119 0.142107 -0.334093 0.132284 0.057330 -0.359695 -0.207056 -0.267146 -0.124385 0.316325 1.165391 -0.218856 0.374574 0.101792 -0.462193 0.251671 0.151222 -0.069211 0.081783 0.379727 0.189190 -0.194949 -0.383613 0.165416 0.525578 0.374842 -0.296355 0.023873 -0.185066 -0.128809 0.105740 0.185169 0.028599 -0.206889 -0.310812 -0.197605 0.057251 0.764542 0.097677 -0.651180 0.003199 0.165678 -0.115476 -0.093992 0.009612 0.056874 0.133204 0.074839 -0.152288 0.375576 0.630289 -1.436439 0.582487 -0.019907 -0.160475 0.373549 -0.125243 -0.098357 -0.512746 -0.027552 0.406296 0.744882 0.086637 -0.047465 0.097653 -0.452561 -0.092374 0.009184 0.347085 -0.301281 0.224012 0.246825 -0.489589 -0.260906 -0.444237 -0.040467 -0.001101 -0.328370 0.174962 0.070281 -1.217721 0.556511 -0.045703 -0.038134 -0.003806 -0.019567 0.120764 -0.483541 -0.522640 0.059478 -0.020314 -0.416697 -0.271564 -0.091030 0.393189 -0.185196 0.219560 -0.258530 -0.492627 0.413229 -0.127870 0.378695 0.233082 0.059279 0.496979 0.401934 -0.044956 -0.234367 -0.146286 0.340558 -0.315422 -0.105110 0.400033 -0.235029 0.279130 0.599409 -0.009969 -0.124719 -0.099516 0.644981 -0.108338 -0.175257 0.336235 -0.203760 -0.086825 0.357951 0.441990 -0.529183 -0.330237 -0.414278 -0.110609 -0.006229 -0.260931 0.278474 -0.278321 0.138550 0.205489 0.047490 -0.437476 0.221403 0.015420 -0.179953 0.075923 0.665397 0.614900 -0.217400 0.496919 -0.344787 0.264913 -0.618215 -0.304738 -0.148275 -0.186963 -0.226801 0.127456 -0.231974 0.352072 -0.028846 0.214557 -0.090141 0.124317 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = -0.413558 0.520414 0.918073 -1.000680 1.167729 1.111363 0.363366 -0.409894 -0.809124 -0.334697 -0.185619 -1.054074 -0.874397 1.462733 -0.571759 0.479407 1.973457 0.463213 -0.345049 -0.150545 0.939258 -0.266490 1.743616 1.534987 -1.316590 0.010890 0.659243 0.628381 -0.072929 1.512250 -0.986705 -1.354492 0.491661 -0.440593 0.327186 -0.939077 0.044680 -0.216140 0.200079 -2.020084 0.181612 0.136399 -0.320284 -0.318613 -0.139177 0.165356 1.784695 1.036830 -0.258466 -0.035986 0.707193 0.575288 -0.119295 0.347083 0.622148 0.557206 0.998461 0.187839 -0.657221 -0.270546 -0.393433 -0.628559 -0.071148 1.320021 1.491047 0.274455 0.031759 0.162583 -0.243773 0.161407 0.076277 0.302819 0.340540 0.708070 0.505178 -0.987275 0.172498 -1.896617 -0.314978 -2.117939 -0.852728 -0.823392 0.244782 0.092746 0.712894 -0.266449 1.500928 -0.138039 0.372286 0.438340 2.020364 -1.416161 -0.517341 -0.997348 -0.772596 0.258324 -0.653284 -0.002679 0.186395 -0.424102 -1.107367 -1.250694 0.586851 0.465177 -0.484917 -0.214534 -0.011614 1.227447 -1.170831 -0.740017 -1.100168 0.044657 -0.351707 -2.029487 -0.385520 -0.547494 0.697595 0.219561 -0.494902 -1.584939 0.487550 1.309114 -0.559641 -0.800498 -0.304837 1.378636 0.646246 -0.039468 0.168740 -0.252690 0.403768 1.481646 1.141670 -0.645318 -0.090159 0.014020 -0.836210 -0.218630 -0.918740 -0.241331 0.101664 -1.104196 0.025103 1.186214 -0.855873 0.111935 0.413294 -0.327846 0.872183 3.906630 -0.577244 0.936033 0.197275 -1.763992 0.886680 -0.137829 -0.517367 -0.004463 0.807979 0.776664 -1.900719 -1.072107 0.818932 1.407558 0.946336 -1.243556 -0.179189 -0.664026 -0.137493 -0.182379 0.162643 0.370932 -0.311897 -0.943849 -0.454070 0.686284 2.523994 -0.800267 -1.787862 0.644019 0.202549 -0.197247 -1.057096 -0.412223 -0.635664 0.170763 0.272427 -0.325469 0.871045 1.723919 -2.826367 1.320559 -0.356695 -0.940108 1.423020 -0.101188 -0.530766 -0.660345 0.250108 1.475730 1.423705 0.269507 -0.043771 -0.135033 -1.218137 -0.186395 0.072631 0.803396 -0.566810 0.647405 0.429440 -1.539802 -1.072958 -0.663683 -0.104948 -0.785077 -0.589623 0.534518 0.002435 -2.775168 1.860860 0.209396 -0.159756 0.430098 -0.319982 0.673216 -1.325312 -1.768722 0.666714 -0.120133 -0.206874 -0.259959 -0.033140 0.947916 0.251625 0.492061 -0.972132 -1.795928 0.709735 -0.009191 1.064555 0.535603 0.666437 1.206359 0.433648 -0.471658 -1.104026 -0.666440 0.614577 -0.136715 -0.906617 -0.425653 -0.509259 1.292945 1.557387 -0.134046 -0.299747 -0.746107 1.308723 -1.163720 -0.137361 1.018069 0.432503 -1.004742 -0.128537 1.178555 -0.975051 -0.916064 -0.649653 -0.295774 -0.507369 -1.230970 0.260688 -0.786665 0.284978 0.706108 -0.105135 -0.645451 0.437808 0.194686 0.045575 0.089161 1.344036 1.420196 -0.912694 0.387580 -1.104826 0.747483 -1.876151 -1.406909 0.454626 -0.349884 -0.642901 0.031553 0.131096 0.907069 -0.271396 0.309242 -0.001473 -0.407595 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::empty() const = -0.146834 0.178332 0.459434 -0.506570 0.472445 0.335594 0.137206 -0.217885 -0.439797 -0.182001 0.024221 -0.623143 -0.367505 0.585579 -0.284731 0.109356 0.718740 0.140785 -0.199744 -0.100455 0.260275 0.010713 0.703438 0.662740 -0.548969 0.060866 0.061857 0.323684 0.029621 0.625819 -0.294166 -0.542673 0.115534 0.080105 0.109630 -0.281834 -0.022181 -0.047935 0.030331 -0.797782 0.099174 0.213134 0.039435 -0.105728 0.035579 0.136768 0.696152 0.416733 -0.057107 0.031500 0.361115 0.295416 0.038999 0.124295 0.272110 0.011702 0.614363 -0.162935 -0.234194 -0.117559 -0.128934 -0.204868 -0.101651 0.572435 0.623247 0.135231 -0.040579 -0.106657 -0.025317 0.118730 0.109854 0.156633 0.071438 0.340717 0.112298 -0.123642 0.273865 -0.635055 -0.011565 -0.782041 -0.367800 -0.185958 0.328629 0.360084 0.116935 -0.133427 0.617844 0.011414 0.038414 0.149629 0.768167 -0.395942 -0.187833 -0.215613 -0.395309 0.152390 -0.217757 0.059775 -0.111798 0.110129 -0.436104 -0.282955 0.187293 0.055062 -0.229518 0.191296 0.022193 0.407172 -0.542811 -0.087516 -0.245680 0.176136 0.064938 -0.800762 -0.225073 -0.324866 0.188456 -0.001855 -0.238932 -0.381670 0.179486 0.268687 -0.274845 -0.036359 -0.635115 0.496849 0.213427 0.042644 -0.005640 -0.087964 0.209123 0.440201 0.088231 -0.353202 0.015349 -0.051845 -0.164494 0.010303 -0.327472 -0.042848 -0.015134 -0.367562 0.097986 0.300730 -0.327565 -0.055969 -0.261429 -0.082888 0.229109 1.361702 -0.220463 0.477839 0.182077 -0.609492 0.260295 -0.013286 -0.159766 0.029130 0.250994 0.275134 -0.397745 -0.451650 0.380629 0.594205 0.367296 -0.368489 0.120277 -0.064103 -0.103780 -0.065868 0.187749 0.074057 -0.155659 -0.363645 -0.217376 0.270952 0.892481 -0.049260 -0.661807 0.213632 0.090652 -0.017017 -0.134672 -0.104867 -0.044853 0.125158 0.106526 -0.076222 0.386432 0.687856 -1.254971 0.554395 0.066066 -0.270097 0.583874 -0.119018 -0.292529 -0.253076 0.036867 0.505160 0.548137 0.043277 -0.049596 0.012625 -0.502121 -0.099324 0.035521 0.219376 -0.307701 0.262046 0.260313 -0.537588 -0.371392 -0.415268 -0.041450 -0.111379 -0.389554 0.277263 0.038843 -1.104304 0.688370 0.100996 -0.081468 -0.028167 -0.210464 0.192790 -0.495055 -0.566587 0.138680 -0.183796 -0.260585 -0.169456 -0.016546 0.273592 -0.017133 0.309366 -0.426695 -0.459137 0.358213 -0.098635 0.409314 0.245954 0.188941 0.286332 0.341818 -0.087105 -0.301974 -0.185146 0.353901 -0.110443 -0.332328 0.247975 -0.250080 0.394342 0.556337 -0.068416 -0.196681 -0.199108 0.497941 -0.172546 -0.146684 0.337155 -0.142072 -0.394347 0.107771 0.408833 -0.343925 -0.233926 -0.376652 -0.198285 -0.245812 -0.433869 0.234615 -0.124418 0.143463 0.248259 -0.052509 -0.355721 0.226859 0.031101 -0.108989 0.139028 0.620136 0.434922 -0.174949 0.334660 -0.482657 0.283833 -0.706174 -0.519005 0.171880 -0.251803 -0.327309 -0.038717 -0.152301 0.414313 -0.034312 0.169651 -0.064326 0.101828 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::front() = -0.156982 0.254591 0.415333 -0.379716 0.388872 0.180858 0.121647 -0.123141 -0.296189 -0.308608 -0.080178 -0.496233 -0.466060 0.532473 -0.266126 0.005722 0.707278 0.185480 -0.094062 -0.145829 0.243533 -0.134924 0.659304 0.606114 -0.529389 0.015429 0.191136 0.330889 0.047377 0.558664 -0.194910 -0.522017 0.159202 0.104815 0.234956 -0.329190 0.029725 -0.067141 -0.158084 -0.771784 0.055985 0.138016 0.049958 -0.078870 0.004190 0.269353 0.695718 0.397206 -0.101093 -0.016221 0.311613 0.304927 0.025343 0.144261 0.184392 -0.026411 0.441843 -0.201923 -0.255255 -0.056497 -0.134687 -0.387427 -0.097566 0.540540 0.611672 0.110649 0.025197 -0.057475 -0.119918 0.149748 0.031771 0.134917 0.180359 0.312111 0.156885 -0.194941 0.155894 -0.711556 -0.079660 -1.069884 -0.332448 -0.347627 0.258298 0.266142 0.071976 -0.055765 0.590916 0.095359 0.157435 0.199591 0.783684 -0.369317 -0.185353 -0.290064 -0.294643 0.190956 -0.259717 0.050576 -0.022637 0.093488 -0.396274 -0.321233 0.179922 0.014116 -0.200559 0.095270 -0.047041 0.412702 -0.603644 -0.051751 -0.444091 -0.017548 0.072780 -0.773799 -0.046691 -0.248646 0.300065 0.047935 -0.156800 -0.337772 0.171194 0.331408 -0.192998 -0.058913 -0.575864 0.496057 0.135537 -0.044964 0.036081 -0.030753 0.154017 0.376212 0.266742 -0.262979 -0.077385 0.000805 -0.291398 -0.107724 -0.353150 -0.051140 0.161086 -0.381007 0.086913 0.272071 -0.317338 -0.171155 -0.155131 -0.239358 0.351304 1.125334 -0.212331 0.331773 0.104604 -0.594441 0.228613 -0.040392 -0.196139 0.023039 0.316955 0.314919 -0.286884 -0.416309 0.304559 0.540546 0.341758 -0.309584 0.033871 -0.154348 -0.046688 -0.086659 0.130886 0.125549 -0.202499 -0.323065 -0.187681 0.238405 0.741853 -0.094055 -0.512474 0.179604 0.109324 -0.016695 -0.228752 -0.081608 -0.018506 0.077683 0.047401 -0.096711 0.294824 0.647841 -1.165934 0.523971 0.034054 -0.201982 0.423650 -0.145726 -0.182463 -0.421558 0.146062 0.567410 0.502161 0.050502 0.008276 -0.060997 -0.481692 -0.088615 0.019722 0.343093 -0.263390 0.235177 0.185075 -0.507780 -0.440109 -0.352458 -0.006082 -0.130673 -0.266643 0.210240 0.129630 -1.084656 0.718510 -0.044698 -0.077676 -0.021736 -0.132837 0.178224 -0.530357 -0.600726 0.122696 -0.190300 -0.306528 -0.211350 -0.008975 0.317559 -0.091582 0.137924 -0.295878 -0.452742 0.350055 -0.066152 0.318908 0.205169 0.292128 0.454712 0.289195 -0.139856 -0.314261 -0.111222 0.231857 -0.229515 -0.269176 0.219776 -0.172456 0.373065 0.657899 -0.090331 -0.124878 -0.058065 0.491868 -0.246037 -0.229497 0.358944 -0.024215 -0.273285 0.188268 0.403674 -0.378484 -0.376124 -0.383913 -0.119792 -0.128406 -0.479153 0.129325 -0.315147 0.068211 0.336700 -0.056495 -0.364889 0.244243 0.052213 -0.064192 0.049415 0.560819 0.537334 -0.288459 0.309714 -0.425050 0.222423 -0.727491 -0.470702 0.104043 -0.120681 -0.137006 0.013516 -0.116422 0.313453 -0.075828 0.135829 -0.077721 -0.015620 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::pop() = -0.297000 0.428750 0.758409 -0.838852 0.991488 0.889888 0.239111 -0.263133 -0.628736 -0.271118 -0.214085 -0.870272 -0.727174 1.116496 -0.460477 0.314764 1.399888 0.279476 -0.274162 -0.047141 0.657067 -0.026870 1.247284 0.969419 -0.977949 0.010821 0.332541 0.539028 -0.162388 1.321109 -0.706266 -1.154149 0.245261 -0.044049 0.271157 -0.625424 0.078669 -0.125190 -0.007449 -1.448655 0.152139 0.347734 -0.192805 -0.222136 -0.060583 -0.006829 1.326217 0.777500 -0.179689 -0.128598 0.534669 0.579076 -0.082945 0.280341 0.411975 0.326940 0.803021 -0.146517 -0.547428 -0.238345 -0.286628 -0.408249 -0.114598 0.955695 1.089862 0.201180 0.022647 0.057393 -0.224661 0.164365 0.054357 0.204834 0.232613 0.539423 0.314610 -0.340310 0.159055 -1.085058 -0.119642 -1.334090 -0.600419 -0.645127 0.199652 0.494474 0.401894 -0.356389 1.156424 -0.130678 0.265917 0.334327 1.488052 -0.929322 -0.349496 -0.857104 -0.636598 0.196958 -0.462229 -0.131683 -0.054229 -0.147460 -0.767952 -0.812990 0.262749 0.226755 -0.334448 -0.002608 -0.074843 0.915221 -0.931778 -0.421927 -0.762120 0.225140 -0.174546 -1.484342 -0.465040 -0.380011 0.245924 0.061188 -0.256509 -1.024601 0.381204 0.901660 -0.485967 -0.409890 -0.540945 1.039148 0.458362 -0.129041 0.113931 -0.177680 0.295212 0.956320 0.640758 -0.500202 -0.146964 0.032837 -0.450145 -0.217263 -0.658681 -0.074921 -0.100237 -0.821281 0.033321 0.868498 -0.583312 0.094782 -0.290075 -0.329249 0.692262 2.751208 -0.483527 0.635304 0.061952 -1.290931 0.683317 0.014185 -0.441659 -0.065940 0.472720 0.578946 -1.104079 -0.810794 0.673469 0.986190 0.706382 -0.714091 0.100706 -0.464096 -0.135341 -0.152728 0.133901 0.353606 -0.322274 -0.666968 -0.374543 0.412465 1.825216 -0.404370 -1.397207 0.593048 0.256572 -0.145315 -0.458732 -0.307317 -0.365868 0.047717 0.283300 -0.281426 0.673307 1.300466 -2.043748 1.009805 -0.023267 -0.704752 1.031342 -0.276521 -0.278348 -0.318495 0.081824 1.144014 1.082159 0.120051 -0.022315 -0.203904 -0.867510 -0.071128 0.091650 0.600949 -0.386820 0.400159 0.313870 -1.125642 -0.780310 -0.635601 -0.178653 -0.443905 -0.593610 0.335410 0.067603 -2.010090 1.414602 0.132563 -0.009671 0.259453 -0.214313 0.478576 -0.911641 -1.255781 0.458313 -0.108298 -0.264250 -0.148025 0.028200 0.700353 0.163950 0.455806 -0.718795 -1.277464 0.525788 0.048485 0.725086 0.370776 0.537110 0.715863 0.545435 -0.323422 -0.694040 -0.626221 0.579690 -0.081961 -0.577134 -0.019735 -0.353073 0.916507 1.076773 -0.097591 -0.279794 -0.640278 0.954818 -0.573742 -0.103061 0.771158 -0.098507 -0.780502 -0.100565 0.912968 -0.624624 -0.737931 -0.573481 -0.061616 -0.433710 -0.907307 0.129002 -0.542724 0.151222 0.601844 -0.111045 -0.662241 0.301198 0.162424 -0.133452 0.015610 1.122423 0.747435 -0.552683 0.516036 -0.786153 0.547955 -1.374941 -0.963392 0.288199 -0.448304 -0.438479 0.059321 0.005638 0.652195 -0.276577 0.429094 0.027751 -0.331417 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::~queue() = -0.168099 0.123011 0.468565 -0.457998 0.501713 0.166102 0.139788 0.011299 -0.432637 -0.312156 -0.126859 -0.410257 -0.497140 0.613328 -0.269853 0.054436 0.793507 0.290278 -0.097309 -0.198763 0.341101 -0.178161 0.714328 0.583166 -0.620751 0.016275 0.095813 0.492328 0.086374 0.706834 -0.184652 -0.508027 0.162825 0.112307 0.271428 -0.506783 0.111816 0.085849 -0.269381 -0.919767 0.078180 0.209287 0.013877 -0.021934 0.032261 0.395056 0.612931 0.466731 -0.185507 0.111435 0.393881 0.320923 0.032455 0.198664 0.077647 0.046984 0.392948 -0.269576 -0.342376 -0.032567 -0.122793 -0.569893 -0.036517 0.502605 0.704571 0.015693 0.039807 -0.028361 -0.104591 0.193314 0.172376 0.106979 0.171072 0.116176 0.253885 -0.146906 0.046528 -0.770580 -0.048855 -1.280128 -0.357608 -0.459219 0.449089 0.332208 0.013632 -0.121980 0.689309 0.043836 0.150830 0.310837 0.726156 -0.379410 -0.207712 -0.459042 -0.289795 0.260420 -0.325225 -0.131806 0.033100 0.204074 -0.373913 -0.331625 0.173539 -0.064883 -0.213390 0.047492 -0.157508 0.574209 -0.775474 -0.115835 -0.559421 0.193100 0.076303 -0.778895 -0.066911 -0.281319 0.367458 0.028792 -0.026244 -0.203415 0.170113 0.357126 -0.228879 0.013076 -0.605882 0.588492 0.130141 -0.148745 0.072224 0.016580 0.032724 0.355182 0.348670 -0.314436 -0.219332 0.183119 -0.274263 -0.112497 -0.501351 -0.026867 0.209857 -0.493041 0.106032 0.228319 -0.330204 -0.200888 -0.228518 -0.214248 0.433005 1.155124 -0.145473 0.303517 0.118026 -0.558988 0.303222 0.065712 -0.112101 0.177051 0.343822 0.187582 -0.266589 -0.479493 0.219502 0.523910 0.400748 -0.380974 -0.019744 -0.256102 0.000000 -0.023883 0.075257 0.241308 -0.239815 -0.304634 -0.169055 0.096979 0.809818 -0.065542 -0.603058 0.231048 0.184216 -0.227548 -0.291477 -0.135756 -0.002445 -0.023811 0.104981 -0.111763 0.294004 0.726980 -1.273184 0.587896 0.064352 -0.158671 0.380558 -0.208801 -0.079600 -0.513850 0.024894 0.519643 0.682474 0.026924 0.022028 0.021525 -0.532961 -0.010976 0.059369 0.372954 -0.207377 0.214837 0.173458 -0.451702 -0.399855 -0.382331 -0.072144 -0.045998 -0.243700 0.206245 0.143691 -1.255055 0.647901 -0.207555 -0.105258 0.113622 -0.006362 0.293526 -0.542464 -0.630349 0.204384 -0.056934 -0.435112 -0.362334 0.063439 0.450956 -0.135526 0.110043 -0.257148 -0.595430 0.393983 -0.115154 0.258800 0.221651 0.215095 0.546030 0.343019 -0.212598 -0.369570 -0.172287 0.241957 -0.307410 -0.143029 0.281635 -0.134153 0.402641 0.719212 0.023498 -0.107265 -0.088231 0.695148 -0.284381 -0.297780 0.471725 -0.039278 -0.184003 0.374973 0.533131 -0.535157 -0.469129 -0.419888 -0.007623 0.001124 -0.422882 0.237153 -0.382493 0.109729 0.336753 0.045387 -0.446688 0.311561 0.084952 -0.142069 -0.106840 0.820841 0.682687 -0.325184 0.406689 -0.384993 0.258156 -0.763064 -0.372581 -0.042175 -0.141301 -0.131524 0.197928 -0.086148 0.389001 -0.070497 0.168490 -0.099183 -0.126116 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__dfs(int (*) [6], int, bool*) = -1.637501 -1.485902 0.181906 -3.940968 2.274170 2.471973 1.073903 -2.182485 -3.837213 -0.419849 1.218146 -3.248765 -0.105256 4.382615 -1.402785 3.620844 5.225968 0.945039 -2.064883 -0.421787 4.393028 -0.682566 4.902605 4.417441 -3.223276 -0.439551 0.168733 2.386066 1.193443 1.236940 -0.032462 -1.421596 1.380652 -4.233281 -1.110739 -2.912475 0.809936 1.657093 3.130674 -5.235861 1.139419 -0.317406 0.051295 -1.196533 -1.369368 -1.160065 2.337543 3.404406 -0.696594 0.840877 2.987909 0.924952 -0.753140 0.987983 0.869824 1.366313 0.528851 -0.337456 -1.127831 -1.807775 -0.273174 -0.862603 1.407990 3.478712 4.167991 0.632161 0.062647 2.531605 0.737234 0.628614 2.220828 0.437877 -1.745184 -0.009620 1.517773 -5.662776 0.087855 -6.121708 -0.680353 -5.232613 -1.948560 0.185995 1.942326 0.204964 2.551465 0.729680 3.394502 -1.096977 -0.867722 3.525318 3.767753 -3.525137 -1.550436 -2.596085 -2.506056 1.191361 -1.899829 0.044219 0.812115 0.908608 -2.879928 -2.067744 1.358010 2.179874 -1.337217 -2.880962 1.008343 3.089749 -2.958785 -3.478052 0.271123 3.061261 -1.571840 -5.222605 -1.440826 -3.141497 2.567190 -0.377190 -1.197008 -3.990315 0.379955 2.486839 -0.879868 -2.215631 -0.429663 1.889680 2.018895 1.297011 0.085761 -0.029237 0.532836 5.936199 1.346968 -2.369960 0.348861 0.173167 -1.253292 1.165655 -2.470085 -1.849723 0.564956 -3.581648 -0.159655 3.355506 -2.096275 -0.818198 3.219284 1.360811 1.162722 12.562839 0.427676 3.995448 3.135120 -3.621955 0.872145 -1.203485 0.249376 1.299510 1.351229 -0.146507 -6.197284 -3.548655 1.822480 3.480844 2.957444 -3.439596 -1.809016 -0.911595 -0.358630 0.515261 -0.606965 0.765407 -0.399915 -2.944910 -0.875158 2.771049 7.013008 -1.491148 -0.584472 2.239594 1.309837 -2.549619 -4.500861 -1.801817 -2.808177 0.744106 0.900180 -0.016916 2.286503 4.685151 -5.562622 3.130400 -0.845144 0.034203 2.394687 1.107426 -3.364148 -3.805971 -1.087977 2.227137 4.076791 -1.499839 1.013085 1.667259 -3.252770 -0.240949 0.763996 0.004283 -0.838040 1.403899 0.686052 -2.204939 -1.890702 1.714088 -1.305345 -0.997710 -0.017037 2.283189 -0.229929 -4.184951 3.450086 0.038636 -0.994815 1.767169 -1.184515 3.942569 -3.418623 -3.585697 2.860399 0.519269 -0.208509 -1.282062 0.821796 2.860853 1.068617 0.920928 -2.333769 -3.645092 1.724568 -1.445220 2.797217 1.394231 -0.363303 1.858208 -1.714067 -0.597661 -3.678769 -2.005863 -0.870461 0.712564 -3.526698 -2.184986 -0.733646 3.856871 2.635667 0.094643 -2.677139 0.576613 4.068045 -3.670615 -0.825433 2.270486 2.006547 -4.149607 0.246953 2.985289 -4.186019 0.021965 -1.283164 -0.080710 -0.983187 -2.849425 2.481743 0.847364 2.410629 -0.112387 0.812783 0.307529 1.581319 1.645385 1.168316 0.781806 4.656954 3.422078 -0.604938 -1.808309 -3.517975 1.169226 -4.422638 -4.329223 1.729159 0.748847 -2.745643 0.772450 0.544847 4.358041 0.824536 0.538855 -0.067656 -0.073671 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__minCut(int (*) [6], int, int) = -5.309122 -5.172103 -1.967000 -12.423218 8.621573 10.989223 4.151718 -6.999947 -13.410489 -2.331992 5.076010 -14.644607 -1.885456 15.504124 -4.262818 13.669787 20.561016 1.981766 -7.354810 0.573102 15.580682 -2.446314 19.310322 16.409993 -10.338335 -1.300359 -2.100045 8.265741 1.305696 4.215379 2.417209 -8.548186 5.907930 -15.472298 -5.593993 -9.959215 2.538614 5.221630 12.222850 -20.391736 3.798349 2.488127 -1.218445 -4.515750 -4.854849 -3.436390 9.160108 11.789556 -1.841777 3.490433 10.410265 2.588620 -2.446802 3.526676 2.292928 2.579256 -0.438588 -1.190681 -5.585532 -7.204778 -1.072217 -2.561119 2.913934 11.252828 16.149261 1.731716 -0.186925 9.502643 1.238926 2.777347 7.537111 1.558528 -4.994099 -0.557011 5.536730 -18.319436 -2.120345 -21.448031 -2.636200 -21.297070 -7.352555 1.638282 8.962612 4.207630 8.189741 -0.660892 11.495510 -4.175675 -3.786835 15.924197 14.484441 -11.616943 -5.929884 -9.630747 -7.574132 4.148486 -6.784540 -0.026831 5.856570 2.854653 -10.756693 -5.499043 5.493635 6.951545 -4.193062 -12.500310 3.634696 10.389689 -10.691805 -11.348116 1.421137 13.768242 -4.105655 -21.219215 -6.345445 -10.073139 5.374623 0.150764 -4.258139 -12.856988 1.812145 6.496365 -3.073257 -7.431821 -0.592988 9.425853 7.865621 5.786242 1.671060 2.153522 3.073138 23.085495 3.172742 -7.272214 1.689761 -0.474207 -2.942974 5.845738 -8.312773 -6.662676 0.665642 -13.452770 2.391597 12.143418 -7.168361 -3.488213 7.001153 5.400650 3.147322 50.566949 1.448084 16.820598 12.991218 -13.373858 5.769771 -5.871442 0.206868 3.085460 4.016253 -0.381227 -24.725449 -11.721391 7.678117 12.246175 10.250921 -15.434350 -4.397681 -1.608742 -0.273192 0.110228 -1.347309 3.793385 1.053228 -10.741143 -2.599408 12.969279 30.114288 -4.974824 -0.921221 8.968850 5.986853 -8.515724 -19.611566 -6.211184 -9.536954 1.915458 5.500476 0.287195 6.960371 16.184016 -19.249809 10.571244 -1.128237 0.959979 11.031348 5.926910 -14.251750 -18.154313 -5.095415 8.759586 16.782349 -5.316355 4.033003 4.541523 -10.656460 -0.616656 3.607157 -1.357043 -1.757849 4.866902 0.198225 -7.189035 -6.572488 4.830231 -5.631189 -2.463406 -1.683928 7.936058 2.541658 -14.380004 12.642127 0.558047 -4.371438 3.815402 -3.775786 16.700334 -10.959139 -12.664885 9.928968 -0.952966 -4.270537 -5.254214 2.661982 8.072137 5.969866 4.530669 -6.688512 -14.797056 8.080356 -5.050260 10.339627 4.948141 -1.494241 6.174526 -4.291974 -3.629275 -14.352569 -11.656389 -1.128139 1.564081 -13.741830 -5.907075 -2.735858 13.230085 7.646520 0.783214 -13.799519 0.042646 15.155354 -12.326321 -2.371080 8.821964 6.476482 -16.744669 0.932458 11.282621 -15.762078 1.645097 -5.351180 0.126844 -5.065451 -10.300839 6.968552 3.731436 7.787345 -0.526662 2.288123 0.789090 4.258980 5.735020 3.280794 1.800399 18.902083 12.355512 -2.629844 -5.631598 -12.978258 4.269370 -15.278897 -17.629106 6.927057 2.916617 -9.747716 1.868428 4.366879 15.529410 2.784516 0.541480 -1.640899 0.804004 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = -1.055375 -0.889331 -0.022680 -2.685578 2.077414 2.159963 0.992681 -1.113535 -3.117763 -0.811043 0.921320 -3.408858 -0.831180 3.595600 -0.894937 2.636887 4.804179 0.708324 -1.491025 0.048326 3.061637 -0.717951 4.301632 3.766404 -2.330034 -0.083585 -0.627295 1.748468 -0.043993 1.548219 0.291171 -2.383427 1.295813 -2.827118 -0.906670 -2.266430 0.335805 1.027059 2.087249 -4.877920 0.849103 1.085179 -0.080013 -1.015452 -0.832061 -0.380958 2.444954 2.576801 -0.311452 0.912993 2.066269 0.584384 -0.327048 0.814910 0.819893 0.638737 0.196497 -0.524978 -1.590294 -1.267209 -0.422895 -0.980834 0.355359 2.488202 3.552833 0.348684 -0.173709 1.581105 0.063014 0.699804 1.605872 0.381013 -0.679146 -0.117905 1.226139 -3.379239 -0.434040 -4.501459 -0.519054 -5.368069 -1.872730 0.109138 2.525204 1.362055 1.497902 -0.502898 2.760787 -1.033409 -0.610199 3.289872 3.509622 -2.498169 -1.423530 -2.108101 -1.598432 0.952861 -1.443530 -0.257201 1.306199 0.518450 -2.537281 -1.163803 1.384415 1.263268 -0.955902 -2.202383 0.724573 2.522878 -2.790524 -2.243628 -0.264584 2.899142 -0.544234 -4.672643 -1.247198 -1.919784 0.954887 0.339375 -1.211027 -2.610665 0.717417 1.341524 -0.914995 -1.343860 -0.741259 2.462971 1.349335 1.136049 0.475181 0.554701 0.723902 4.724224 0.891148 -1.654854 0.429150 0.049922 -0.628657 1.138517 -1.766284 -1.530175 -0.010040 -2.989142 0.550333 2.301771 -1.784481 -0.730598 0.676146 1.072094 0.794355 10.542529 -0.004974 3.689135 2.568679 -3.051753 1.566479 -1.112786 -0.104741 0.466699 1.191376 0.176835 -4.788247 -2.577493 1.769096 2.930206 2.370128 -3.283624 -0.702577 -0.470504 -0.018012 0.121394 0.028664 0.822452 0.375353 -2.467627 -0.648879 2.539373 6.769291 -1.013598 -0.818701 1.832577 1.169228 -1.513576 -3.981926 -1.188026 -1.824113 0.412835 1.050332 -0.126144 1.573218 3.733015 -4.772952 2.681213 -0.384484 -0.090266 2.625801 1.081793 -2.878513 -4.092773 -1.232312 2.116712 4.086573 -0.809842 0.689577 0.801646 -2.458665 -0.234861 0.685457 0.000000 -0.547944 1.220621 0.016211 -1.850337 -1.436684 0.377973 -1.132100 -0.499777 -0.655822 1.691833 0.949061 -3.760259 2.968890 0.214684 -0.905187 0.646466 -0.523223 3.343937 -2.440361 -3.019901 1.961092 -0.433385 -1.504113 -1.169976 0.345967 1.759940 1.098549 0.824043 -1.325461 -3.305207 2.233477 -0.931832 2.530724 1.214528 -0.291695 1.723945 -0.044820 -0.992368 -2.755827 -2.617679 0.065988 -0.267853 -2.671741 -0.774036 -0.836525 2.855608 1.961484 0.303019 -2.849705 -0.321384 3.513716 -2.467311 -0.551022 2.218831 0.839135 -3.278092 0.539054 2.783547 -3.497857 0.089232 -1.464878 -0.016930 -1.142027 -2.182558 1.432173 0.403591 1.501169 0.087548 0.351271 -0.269866 0.881661 1.083274 0.352963 0.278681 4.351350 2.785451 -0.851342 -0.517556 -2.791777 1.104413 -3.462933 -3.681327 1.214053 0.647165 -2.233574 0.364155 0.826342 3.166139 0.478254 0.062788 -0.549804 0.268386 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::~deque() = -0.465508 0.560119 1.348740 -1.358309 1.821671 0.935364 0.389199 0.187749 -1.149369 -0.961424 -0.488776 -1.463881 -1.869157 1.901485 -0.718589 0.161713 2.249656 0.498184 -0.329733 -0.313465 1.093267 -0.097527 2.081519 1.302854 -1.880133 0.029523 0.151762 1.403801 -0.001125 2.180807 -0.524418 -1.830501 0.413818 0.544126 0.775400 -1.101225 0.403371 -0.009976 -0.957544 -2.508292 0.161223 1.062533 -0.362164 -0.060405 0.032246 0.964558 2.033094 1.429761 -0.681388 0.022105 1.124807 0.877114 0.033761 0.613621 0.040935 -0.134009 0.893659 -0.796433 -1.217823 -0.267013 -0.376351 -1.617206 -0.347525 1.402727 2.026649 -0.016611 0.041809 0.158688 -0.413661 0.586233 0.328674 0.354354 0.871275 0.409146 0.961567 0.261151 -0.216759 -1.722934 -0.106879 -3.391126 -1.073685 -1.499230 1.259805 1.328056 -0.059630 -0.936972 2.154365 0.058704 0.409895 1.129912 2.381363 -1.092385 -0.608865 -1.879437 -0.818818 0.725009 -1.027924 -0.511533 0.132946 0.443190 -1.129134 -0.910189 0.068950 -0.370395 -0.594950 0.048127 -0.632577 1.803410 -2.143997 -0.179537 -1.779622 0.741353 0.340764 -2.471945 -0.782959 -0.385379 0.572705 0.092683 0.152947 -0.511618 0.543393 1.033484 -0.786078 0.006081 -1.579252 1.947358 0.572086 -0.458649 0.386727 0.295679 0.363911 1.012081 1.097389 -0.759655 -0.843705 0.423152 -0.496996 -0.311963 -1.297529 0.112299 0.408536 -1.475496 0.286583 0.914722 -0.877046 -0.466886 -1.438939 -0.820934 1.355978 3.521158 -0.518669 0.803329 0.108866 -1.741778 1.151455 0.232420 -0.627144 0.318215 0.769622 0.762979 -0.671232 -1.391772 0.994911 1.527103 1.174288 -1.217162 0.493901 -0.680162 0.064434 -0.456722 0.197337 1.056384 -0.533587 -0.809774 -0.502023 0.493713 2.485713 -0.380552 -2.401969 1.071080 0.786665 -0.368972 -0.556215 -0.479118 0.119116 -0.351508 0.719655 -0.351180 0.920094 2.252919 -3.383016 1.705173 0.660066 -0.657829 1.208426 -0.774387 -0.126188 -1.048771 -0.012850 1.808221 1.913738 0.217736 -0.115985 -0.390841 -1.527440 0.139819 0.421670 1.052336 -0.364259 0.553632 0.193565 -1.162612 -1.301382 -1.444525 -0.518830 0.071656 -0.966100 0.527111 0.407939 -3.665838 2.151226 -0.594230 -0.211770 0.125802 -0.134073 1.039657 -1.507267 -2.035816 0.701168 -0.388047 -1.668291 -0.959549 0.281872 1.208749 0.009312 0.459737 -0.808561 -2.110529 1.386758 -0.091542 0.832404 0.640582 0.875073 1.633069 1.357628 -0.856128 -1.057629 -1.132965 1.204506 -0.648055 -0.523639 0.730593 -0.308379 1.235620 1.941367 -0.064586 -0.414760 -0.904732 1.821891 -0.849244 -0.889307 1.532043 -0.408635 -0.789704 0.983139 1.739308 -1.271635 -1.445423 -1.411733 0.211432 -0.355675 -1.471328 0.281442 -1.185610 0.114150 1.279955 -0.043006 -1.470382 0.771947 0.244378 -0.611085 -0.593468 2.517935 1.843466 -1.238124 1.338469 -1.259542 1.036346 -2.356828 -1.333405 0.150480 -0.797753 -0.208279 0.472902 -0.052656 0.935145 -0.398810 0.422391 -0.396987 -0.500101 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.086960 0.007450 0.225831 -0.211146 0.169658 -0.050496 0.082272 -0.081162 -0.248976 -0.114555 -0.045527 -0.118980 -0.083242 0.302936 -0.107654 0.186736 0.478788 0.241598 -0.036889 -0.211864 0.247560 -0.427696 0.406023 0.440610 -0.347358 0.038353 0.201968 0.281744 0.184535 0.333062 -0.226223 -0.038754 0.114509 -0.259008 0.177896 -0.434551 0.043542 0.125748 0.046752 -0.602423 0.040672 -0.117332 0.179683 -0.008855 -0.035543 0.281366 0.281603 0.249885 -0.097546 0.190398 0.242715 0.010670 0.075410 0.099511 0.113234 0.244356 0.360454 0.040666 -0.135334 0.053536 -0.033947 -0.413083 0.163485 0.281529 0.419075 -0.031230 0.031184 0.085228 0.009145 0.035447 0.146072 0.073544 -0.092414 0.003105 0.142572 -0.612089 0.181247 -0.731169 -0.094819 -0.910930 -0.216033 -0.236248 0.147012 -0.147962 0.201482 0.198907 0.365501 0.004164 0.103786 0.013365 0.333344 -0.364821 -0.125023 -0.135467 -0.128546 0.126088 -0.182616 -0.086527 0.196266 0.038521 -0.190779 -0.274484 0.406871 0.122972 -0.154663 -0.057771 -0.052814 0.293587 -0.430781 -0.323324 -0.321613 -0.083763 -0.155081 -0.388926 0.335742 -0.250643 0.380731 0.050963 -0.043963 -0.341008 0.056942 0.322316 -0.063867 -0.154504 -0.248873 0.309237 0.074501 -0.055283 0.042833 -0.066631 -0.034185 0.325980 0.354768 -0.204877 -0.099020 0.177883 -0.354852 -0.057219 -0.329936 -0.177203 0.252290 -0.336160 -0.059154 0.109408 -0.209947 0.010250 0.488537 -0.009811 0.212679 0.719638 -0.007904 0.174337 0.120283 -0.313920 0.203810 0.002153 0.009236 0.196014 0.282352 0.046103 -0.482344 -0.283261 -0.006866 0.301053 0.215910 -0.318034 -0.401777 -0.233038 0.008047 0.179821 -0.020583 0.054277 -0.139876 -0.203489 -0.059742 -0.036162 0.563237 -0.148395 -0.098517 0.051129 -0.099113 -0.345447 -0.619229 -0.099454 -0.257296 0.035395 -0.250725 -0.038033 0.115926 0.367148 -0.807720 0.340143 -0.272540 -0.128101 0.305223 -0.062910 -0.070185 -0.626245 0.045650 0.194094 0.402332 -0.045447 0.061814 0.155560 -0.321655 -0.036858 -0.080833 0.193846 -0.177067 0.169346 0.122923 -0.319479 -0.182238 0.006708 0.070177 -0.188262 0.048549 0.146623 0.079425 -0.653634 0.274228 -0.131401 -0.125860 0.282353 0.071096 0.114864 -0.347362 -0.305254 0.139124 0.099797 0.021460 -0.262518 -0.001258 0.288243 -0.192140 -0.159393 -0.135591 -0.335067 0.064657 -0.223509 0.098413 0.154078 0.028874 0.316880 0.097701 -0.105747 -0.299533 0.211825 -0.267826 -0.247813 -0.056670 -0.114128 -0.092274 0.286175 0.489659 0.100939 0.111540 0.157729 0.443225 -0.328050 -0.189358 0.235945 0.192466 -0.091853 0.160675 0.247827 -0.407755 -0.220114 -0.134862 -0.137724 0.138862 -0.167037 0.258194 -0.240344 0.100893 0.106233 0.041313 -0.095016 0.245711 0.044340 0.042065 -0.065312 0.445378 0.532505 -0.172406 0.015401 -0.192958 0.057261 -0.407117 -0.143055 -0.081066 0.251643 -0.181812 0.139935 0.112146 0.280380 0.040519 0.000711 0.005849 -0.166405 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::begin() = -0.202872 0.386286 0.833724 -0.768901 0.740881 0.663745 0.189043 -0.256858 -0.591395 -0.176435 -0.161819 -0.690996 -0.517768 0.896668 -0.399165 0.147309 1.264190 0.331733 -0.258820 -0.189273 0.501414 -0.160129 1.084665 1.059747 -0.910557 0.088716 0.392530 0.531347 0.062486 1.142907 -0.746586 -0.784597 0.139268 -0.050805 0.323805 -0.661185 -0.043111 -0.154620 0.005727 -1.416468 0.125679 0.142903 -0.105700 -0.165007 0.055067 0.224360 1.196741 0.621110 -0.144701 -0.032234 0.501326 0.459086 0.015406 0.169219 0.468155 0.382453 1.055980 0.104745 -0.338463 -0.096058 -0.220767 -0.368177 -0.006361 0.894945 0.967628 0.200404 -0.037782 -0.128244 -0.013309 0.075126 0.060947 0.242278 0.126259 0.556816 0.235297 -0.560368 0.415169 -1.187655 -0.025019 -1.270032 -0.570493 -0.537621 0.234890 0.159621 0.337959 -0.187365 1.012782 -0.120191 0.279404 0.138672 1.220847 -0.796707 -0.263686 -0.529516 -0.607878 0.184427 -0.324243 -0.043659 -0.031420 -0.123919 -0.656769 -0.710872 0.454843 0.219050 -0.373789 0.221603 -0.018293 0.760374 -0.780992 -0.352142 -0.649748 0.104121 -0.146817 -1.246945 -0.260797 -0.522911 0.447637 0.043989 -0.333308 -0.923972 0.298948 0.789129 -0.426832 -0.286496 -0.594495 0.943956 0.412188 -0.118188 0.011412 -0.243427 0.250311 0.732486 0.572093 -0.494487 -0.047655 0.089640 -0.549570 -0.238206 -0.644003 -0.069346 0.051769 -0.611464 -0.037110 0.640851 -0.541499 0.137012 0.103735 -0.221219 0.526795 2.615566 -0.422937 0.596790 0.093695 -1.067311 0.592579 0.102466 -0.331137 0.046037 0.497640 0.538340 -1.244930 -0.678197 0.458356 0.927890 0.576733 -0.730285 -0.042129 -0.386019 -0.234039 -0.019455 0.217387 0.100492 -0.305176 -0.563418 -0.340214 0.301482 1.623293 -0.309597 -1.306758 0.280143 0.022696 -0.204843 -0.537440 -0.172870 -0.268376 0.149110 0.061376 -0.232281 0.652475 1.074539 -2.092426 0.902023 -0.179852 -0.683033 1.052886 -0.212143 -0.251461 -0.391656 0.145842 0.887979 0.981433 0.134289 -0.163550 -0.047398 -0.801328 -0.139136 0.017949 0.538595 -0.505640 0.448055 0.439181 -1.031418 -0.601283 -0.610279 -0.021681 -0.405799 -0.538191 0.330878 -0.162025 -1.886209 1.158023 0.176155 -0.041625 0.254066 -0.259352 0.226737 -0.835394 -1.020850 0.304624 0.022253 -0.121845 -0.228702 -0.102536 0.628955 0.032408 0.425198 -0.779203 -1.101091 0.417209 -0.136735 0.660075 0.397519 0.372359 0.654764 0.511793 -0.163682 -0.655640 -0.293573 0.435375 -0.055881 -0.483305 -0.060902 -0.421511 0.719646 1.037167 -0.125295 -0.074435 -0.472824 0.887336 -0.533418 -0.130440 0.533079 0.008439 -0.591755 -0.039051 0.667923 -0.590876 -0.588803 -0.481663 -0.355119 -0.270137 -0.676031 0.313934 -0.485343 0.178051 0.477706 -0.099053 -0.535670 0.332993 0.040843 -0.089465 0.154734 0.922134 0.905502 -0.436491 0.453935 -0.681219 0.518308 -1.158492 -0.737233 0.144851 -0.364537 -0.449572 0.009440 -0.031445 0.620249 -0.122308 0.290000 0.053010 -0.152096 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::end() = -0.202872 0.386286 0.833724 -0.768901 0.740881 0.663745 0.189043 -0.256858 -0.591395 -0.176435 -0.161819 -0.690996 -0.517768 0.896668 -0.399165 0.147309 1.264190 0.331733 -0.258820 -0.189273 0.501414 -0.160129 1.084665 1.059747 -0.910557 0.088716 0.392530 0.531347 0.062486 1.142907 -0.746586 -0.784597 0.139268 -0.050805 0.323805 -0.661185 -0.043111 -0.154620 0.005727 -1.416468 0.125679 0.142903 -0.105700 -0.165007 0.055067 0.224360 1.196741 0.621110 -0.144701 -0.032234 0.501326 0.459086 0.015406 0.169219 0.468155 0.382453 1.055980 0.104745 -0.338463 -0.096058 -0.220767 -0.368177 -0.006361 0.894945 0.967628 0.200404 -0.037782 -0.128244 -0.013309 0.075126 0.060947 0.242278 0.126259 0.556816 0.235297 -0.560368 0.415169 -1.187655 -0.025019 -1.270032 -0.570493 -0.537621 0.234890 0.159621 0.337959 -0.187365 1.012782 -0.120191 0.279404 0.138672 1.220847 -0.796707 -0.263686 -0.529516 -0.607878 0.184427 -0.324243 -0.043659 -0.031420 -0.123919 -0.656769 -0.710872 0.454843 0.219050 -0.373789 0.221603 -0.018293 0.760374 -0.780992 -0.352142 -0.649748 0.104121 -0.146817 -1.246945 -0.260797 -0.522911 0.447637 0.043989 -0.333308 -0.923972 0.298948 0.789129 -0.426832 -0.286496 -0.594495 0.943956 0.412188 -0.118188 0.011412 -0.243427 0.250311 0.732486 0.572093 -0.494487 -0.047655 0.089640 -0.549570 -0.238206 -0.644003 -0.069346 0.051769 -0.611464 -0.037110 0.640851 -0.541499 0.137012 0.103735 -0.221219 0.526795 2.615566 -0.422937 0.596790 0.093695 -1.067311 0.592579 0.102466 -0.331137 0.046037 0.497640 0.538340 -1.244930 -0.678197 0.458356 0.927890 0.576733 -0.730285 -0.042129 -0.386019 -0.234039 -0.019455 0.217387 0.100492 -0.305176 -0.563418 -0.340214 0.301482 1.623293 -0.309597 -1.306758 0.280143 0.022696 -0.204843 -0.537440 -0.172870 -0.268376 0.149110 0.061376 -0.232281 0.652475 1.074539 -2.092426 0.902023 -0.179852 -0.683033 1.052886 -0.212143 -0.251461 -0.391656 0.145842 0.887979 0.981433 0.134289 -0.163550 -0.047398 -0.801328 -0.139136 0.017949 0.538595 -0.505640 0.448055 0.439181 -1.031418 -0.601283 -0.610279 -0.021681 -0.405799 -0.538191 0.330878 -0.162025 -1.886209 1.158023 0.176155 -0.041625 0.254066 -0.259352 0.226737 -0.835394 -1.020850 0.304624 0.022253 -0.121845 -0.228702 -0.102536 0.628955 0.032408 0.425198 -0.779203 -1.101091 0.417209 -0.136735 0.660075 0.397519 0.372359 0.654764 0.511793 -0.163682 -0.655640 -0.293573 0.435375 -0.055881 -0.483305 -0.060902 -0.421511 0.719646 1.037167 -0.125295 -0.074435 -0.472824 0.887336 -0.533418 -0.130440 0.533079 0.008439 -0.591755 -0.039051 0.667923 -0.590876 -0.588803 -0.481663 -0.355119 -0.270137 -0.676031 0.313934 -0.485343 0.178051 0.477706 -0.099053 -0.535670 0.332993 0.040843 -0.089465 0.154734 0.922134 0.905502 -0.436491 0.453935 -0.681219 0.518308 -1.158492 -0.737233 0.144851 -0.364537 -0.449572 0.009440 -0.031445 0.620249 -0.122308 0.290000 0.053010 -0.152096 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::~_Deque_base() = -0.853431 1.531773 2.312855 -2.951417 3.055930 3.837206 0.653660 -1.149561 -1.952866 -0.350063 -0.423691 -3.131373 -1.957773 3.423975 -1.489927 0.685292 4.243777 0.455799 -1.141382 0.389244 1.749905 1.310904 3.688843 3.138785 -2.781577 0.046726 0.887011 1.109684 -0.992728 3.950409 -2.227452 -4.307718 0.421825 0.310221 0.305595 -1.292814 -0.182621 -0.892587 0.546962 -4.215108 0.603496 1.376626 -1.151003 -1.020101 0.010662 -1.302183 4.450678 2.196520 -0.297404 -0.958253 1.446988 2.410339 -0.575640 0.529208 1.687442 0.863651 2.591885 -0.157293 -1.233409 -1.062912 -0.936232 0.446236 -0.727993 3.154381 2.992125 1.124963 -0.195977 -0.417254 -0.393933 0.350001 -0.191606 0.687419 0.713083 2.412882 0.510445 -0.212463 0.568791 -2.764137 0.116626 -2.016670 -1.787586 -1.238712 0.359702 1.967865 1.163307 -1.742482 3.311028 -0.778501 0.673380 1.122049 4.693174 -2.486261 -0.912210 -2.333472 -2.543816 0.402369 -0.931489 0.113958 -1.023102 -0.833289 -2.554676 -2.530795 0.136120 0.876712 -1.027828 0.357630 0.380862 2.456741 -1.932071 -0.820508 -1.362140 1.357794 -0.369320 -4.659105 -3.055261 -1.405208 -0.078846 0.010458 -1.490800 -3.487404 1.218422 2.479003 -1.808277 -1.209000 -1.296446 2.934450 1.768526 -0.058622 0.016061 -0.923156 1.384011 3.028185 1.029332 -1.637421 0.324274 -0.508827 -0.754461 -0.645191 -1.687408 0.110584 -1.307507 -1.945191 0.294005 3.132583 -1.801091 0.465713 -1.771748 -0.934217 1.659766 10.035945 -1.906695 2.421938 0.276227 -4.157581 1.915567 0.086432 -1.653858 -0.803021 1.132122 2.196097 -3.758573 -2.268851 2.519656 3.234036 2.139679 -1.922853 1.298922 -0.861810 -1.012021 -0.892548 0.890535 0.495937 -0.814044 -2.181031 -1.368088 2.018275 5.750188 -0.942567 -5.224333 1.647833 1.378322 0.414601 0.036570 -0.703100 -1.106059 0.547003 1.773717 -0.979288 2.658691 3.902491 -6.294244 2.931107 0.432393 -2.433546 3.403941 -0.437604 -1.365295 0.645592 0.308096 3.656903 3.163460 0.465628 -0.277689 -0.881814 -2.491660 -0.463084 0.534472 1.514318 -1.480712 1.324720 1.236621 -3.739028 -2.234867 -2.251846 -0.814850 -1.511282 -2.672304 1.070697 -0.395411 -5.844220 4.621030 1.470715 0.332241 0.202580 -1.547997 1.356282 -2.630793 -3.860475 1.282831 -0.438533 -0.400728 0.500374 -0.230435 1.911126 1.297416 2.833014 -2.868606 -3.894701 1.667046 0.645933 2.921475 1.181600 1.596097 1.498671 1.392702 -0.476911 -1.961373 -2.948303 3.128176 0.931047 -2.451120 -0.138183 -1.508312 2.677565 2.706392 -0.860858 -1.633371 -2.976750 2.413700 -1.247606 0.575638 1.846612 -0.886391 -3.008943 -1.304149 2.488762 -1.312380 -1.679552 -1.705112 -0.250942 -2.161989 -2.895105 0.230049 -0.931848 0.597732 1.645719 -0.646143 -1.981152 0.459156 0.473765 -0.425690 0.999888 2.657839 1.186440 -1.217308 1.710864 -2.658815 1.955408 -4.083497 -3.456516 1.384267 -2.716281 -1.701754 -0.504371 -0.635634 2.016856 -0.964151 1.928686 0.256911 -0.212900 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.505811 0.844616 1.322920 -1.512303 1.543086 1.701722 0.340376 -0.888870 -0.877962 -0.216542 -0.219635 -1.105424 -0.822816 1.705381 -0.873020 0.532119 2.354085 0.313364 -0.516282 -0.302882 1.374117 -0.139575 2.150913 1.851168 -1.761620 -0.046119 1.361837 0.768937 0.208633 1.788520 -1.549284 -1.508089 0.457858 -0.720190 0.350787 -1.095301 0.052617 -0.560286 0.555997 -2.253224 0.214088 -0.529385 -0.930975 -0.368556 -0.252023 0.188499 2.329663 1.223884 -0.438266 -0.295118 1.140243 0.981395 -0.467182 0.325530 0.801724 0.816218 1.675608 0.820840 -0.418444 -0.469495 -0.463624 -0.243812 0.072946 1.819619 1.778177 0.445055 0.084881 0.362482 -0.115091 0.032075 -0.060941 0.404633 0.288146 1.256346 0.560906 -1.838358 0.373091 -2.830979 -0.384961 -2.270691 -0.891524 -1.001361 -0.388674 -0.688778 1.044067 0.029867 1.812071 -0.096075 0.478471 0.508217 2.486521 -1.831783 -0.496669 -1.200166 -1.257950 0.108387 -0.703644 0.234126 -0.002634 -0.630016 -1.282868 -1.782907 0.658860 0.755326 -0.606258 -0.369580 0.043853 1.395568 -1.201265 -0.872777 -1.104524 0.015726 -0.655304 -2.579327 -0.784526 -0.962982 1.536262 -0.062532 -0.579416 -2.383778 0.488551 2.057523 -0.768371 -1.147983 0.243045 1.542849 1.214691 0.064564 -0.015733 -0.669022 0.634838 1.939155 1.580637 -0.824879 -0.112802 -0.201128 -1.174325 -0.454448 -1.173022 -0.058521 0.210406 -1.163985 0.139391 1.879109 -0.947083 0.176151 1.463117 -0.610206 1.097887 5.739965 -0.838882 1.131834 0.095316 -2.326031 0.725722 -0.172156 -0.736517 -0.019036 0.848514 1.088384 -3.043456 -1.321419 1.145724 1.670373 1.071417 -1.846932 -0.285975 -0.821790 -0.489678 -0.223539 0.027592 0.288817 -0.689010 -1.058124 -0.698162 0.972681 3.285316 -1.052822 -2.477503 0.785187 0.215951 -0.317656 -1.248858 -0.535383 -0.773265 0.423075 0.608821 -0.441472 1.350501 2.090903 -3.991970 1.457376 -0.526783 -1.380986 1.753827 0.042586 -0.625631 -0.391340 0.507366 1.920486 1.521613 0.332285 -0.087146 -0.164610 -1.445111 -0.213649 0.102828 1.031496 -0.802525 0.716641 0.951244 -2.183639 -1.428247 -0.606435 -0.068232 -0.957687 -0.718884 0.618316 -0.880156 -3.902045 2.489764 0.403172 0.009238 0.599747 -0.734896 0.892431 -1.649228 -2.176514 0.925325 0.086326 0.351120 -0.148337 -0.046631 1.280206 0.439514 1.178358 -1.640775 -2.504522 0.451348 -0.090856 1.326487 0.608428 1.040953 1.523490 -0.342223 -0.218451 -1.786860 -0.694332 1.025453 0.436496 -1.379208 -0.778223 -0.599348 1.636616 1.793706 -0.463921 -0.267363 -0.921395 1.427207 -1.727754 0.067649 0.954529 1.226786 -1.642496 -0.508261 1.193348 -0.983774 -1.169381 -0.626488 -0.662335 -0.830230 -1.613734 0.297870 -0.794726 0.422757 0.913520 -0.015935 -0.688041 0.556871 0.150883 0.341613 0.359500 1.278355 2.245120 -1.121778 0.134800 -1.442318 1.047979 -2.357376 -2.073384 0.814217 -0.799838 -0.691124 -0.088603 -0.028103 1.300686 -0.379169 0.588725 0.328840 -0.490634 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.709235 -0.073459 0.551905 -1.471759 1.160995 0.727957 0.416206 -0.345351 -1.203372 -0.601203 -0.209255 -0.886838 -0.596819 1.939514 -0.557882 1.126320 2.688392 0.785533 -0.337170 -0.414650 1.891771 -1.364098 2.105966 1.927832 -1.733368 -0.241844 1.086641 1.294017 0.450636 1.375984 -0.469219 -1.146320 0.574418 -1.416393 0.523268 -2.030294 0.544430 0.610935 0.491414 -2.861716 0.352875 -0.406235 0.032855 -0.370517 -0.567297 0.514369 1.710990 1.526282 -0.990783 0.223706 1.348559 0.565070 -0.408211 0.522492 0.072890 0.799513 0.446167 0.506752 -0.702494 -0.297815 -0.186942 -1.228052 0.790962 1.524226 2.226910 -0.022303 0.316663 1.048742 -0.011829 0.332056 0.533704 0.145286 -0.050506 -0.131216 0.968847 -2.775126 -0.412201 -4.220471 -0.400182 -4.187474 -0.909787 -0.990386 0.526998 -0.519850 0.923710 0.069175 1.773214 -0.156185 0.405189 1.411165 2.128366 -1.630310 -0.672819 -1.813842 -1.138443 0.739812 -1.010290 -0.376159 1.000892 -0.083695 -1.174870 -1.740640 0.904170 0.714626 -0.585252 -1.517174 -0.055848 1.655486 -1.662999 -1.505080 -1.185748 0.500294 -0.742189 -2.568802 0.488520 -1.352539 1.348268 0.035028 -0.117744 -1.931847 0.172954 1.794738 -0.514474 -1.070248 -0.306121 1.682170 0.743761 -0.062987 0.305985 -0.329760 0.009747 2.091482 1.823845 -1.016917 -0.501496 0.531351 -1.458336 -0.307079 -1.886669 -0.724002 1.261938 -1.798574 -0.163787 1.397616 -1.016245 -0.345258 2.224567 -0.382421 1.295304 5.650662 -0.062300 1.063423 0.651041 -2.019489 1.274303 -0.074545 -0.283636 0.694708 1.199157 0.265854 -2.986980 -1.525387 0.464206 1.496561 1.349019 -1.755292 -1.604638 -1.065911 -0.134078 0.264731 -0.404698 0.594646 -0.711210 -1.186754 -0.387691 0.740483 3.226799 -0.830439 -0.844899 0.826593 1.034966 -1.541596 -2.777165 -0.714430 -1.726128 0.045439 -0.132963 -0.365951 1.023534 2.184196 -3.894950 1.533124 -0.629818 -0.305911 0.937686 0.014220 -0.729407 -3.004825 0.221093 1.621697 2.155302 -0.388186 0.695988 0.390546 -1.504584 0.005219 0.094226 0.786493 -0.477558 0.600436 0.051272 -1.630145 -1.189034 0.312545 -0.575074 -0.945151 0.030028 0.657760 0.350665 -3.045322 2.044706 -0.646941 -0.314792 1.137955 -0.102746 1.455647 -1.811193 -2.143257 1.168843 0.512764 0.067281 -1.013190 0.312122 1.721569 -0.182315 -0.081606 -0.634652 -2.736518 0.498962 -0.723703 0.889602 0.593173 0.392852 1.803477 0.022545 -0.534449 -2.179343 -0.613491 -0.447507 -0.280321 -1.061243 -1.142455 -0.214776 1.722066 1.952429 0.068931 -0.426830 0.081806 2.174095 -1.882157 -0.534765 1.312531 0.942176 -1.298853 0.262764 1.555403 -2.150264 -1.037501 -0.873645 0.258930 0.157070 -1.570082 0.701689 -0.772640 0.577959 0.531526 0.243706 -0.324271 0.906462 0.779214 0.399940 -0.278777 2.270779 2.357544 -1.060045 -0.360387 -1.293829 0.448423 -2.503210 -1.696996 0.173832 0.467310 -0.603631 0.677984 0.596210 1.476384 -0.228620 0.663691 0.111540 -0.844893 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.840306 -0.121491 1.077032 -1.325219 1.335500 0.514384 0.707125 -0.315721 -1.529288 -0.833130 0.006255 -1.109433 -1.232819 2.300727 -0.772064 0.988315 3.221084 1.255146 -0.417876 -0.781691 1.890268 -1.609951 2.802029 2.700285 -2.145836 -0.167943 1.009647 1.402724 0.702018 1.529592 -0.884442 -1.032391 1.193874 -1.554383 0.681493 -2.190249 0.400089 0.426862 0.241506 -3.386935 0.277228 -0.390323 -0.164373 -0.273782 -0.391093 1.670832 1.960540 1.812328 -0.827771 0.754777 1.416992 0.103920 -0.067697 0.692563 0.461648 0.774043 0.753539 0.725572 -1.107448 -0.154533 -0.517196 -2.203495 0.455626 1.871604 2.677488 0.009258 0.243044 0.714836 -0.155999 0.468006 0.764236 0.355580 0.551261 0.022013 1.349191 -2.779482 -0.221481 -4.437106 -0.844420 -5.490976 -1.338477 -1.310432 1.255011 -0.961980 0.996307 0.133111 2.271081 0.137022 0.349838 1.234966 2.717982 -2.242848 -1.014680 -1.541139 -0.831468 0.771704 -1.418870 -0.069627 1.409905 -0.250454 -1.668815 -1.840796 1.325808 0.636746 -0.757218 -1.095982 -0.212211 2.215814 -2.264261 -1.524688 -2.087110 -0.042913 -0.467012 -3.057792 0.755888 -1.143400 2.280551 0.538742 -0.566436 -1.803371 0.538987 1.845394 -0.526903 -1.218462 -0.266237 2.192191 0.684966 0.063876 0.384652 -0.020665 0.042553 2.263554 2.433909 -1.098815 -0.457589 0.522417 -1.904859 0.032183 -1.977349 -0.833096 1.677666 -2.042796 -0.001238 1.145748 -1.418446 -0.450145 2.502725 -0.101222 1.396959 5.326448 -0.188393 1.470191 0.858846 -2.236293 1.403610 -0.313205 -0.032914 0.900737 1.749136 0.430627 -3.041388 -1.826794 0.685586 2.110540 1.570595 -2.571083 -1.497115 -1.216536 0.287883 0.019528 -0.125212 0.790925 -0.433373 -1.392130 -0.399931 0.863567 3.481141 -1.496514 -1.727033 0.694837 0.264862 -1.061502 -3.173326 -0.766619 -1.090755 0.174593 -0.106455 -0.212012 0.976773 2.688920 -4.531619 2.006963 -1.038602 -0.571721 1.662677 0.180759 -0.990584 -2.984297 0.330486 1.696286 2.384654 0.395910 0.092483 0.624762 -2.077564 -0.184212 0.016972 1.193246 -0.643354 1.038815 0.308525 -1.663821 -1.569108 -0.382471 -0.087900 -1.062621 0.081291 1.059540 0.281404 -4.331890 2.238870 -0.615269 -0.829145 0.998783 0.033807 1.418777 -2.277946 -2.686213 1.194963 0.017991 -0.747507 -1.579357 0.218526 1.701969 -0.206065 -0.315646 -0.879756 -2.867894 1.301032 -0.766993 1.370476 0.797777 0.508034 2.723757 0.344639 -1.014211 -2.175846 -0.232850 -0.080955 -0.991120 -1.205392 -1.042062 -0.381963 2.001759 2.680774 0.187676 -0.143588 -0.025230 2.628922 -2.601926 -0.975993 1.833581 1.809346 -0.866056 1.003570 1.962706 -2.518968 -1.349710 -0.978474 -0.554167 0.085418 -1.684337 1.015712 -1.355719 0.761690 0.615407 0.416043 -0.472085 1.081376 0.533362 0.393091 -0.300599 2.621378 3.769571 -1.792988 -0.072485 -1.668458 0.970410 -2.912762 -1.942532 0.323563 0.649615 -0.825057 0.684513 0.654850 1.644567 0.023493 -0.350703 -0.389341 -0.645053 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.578792 0.032268 0.850649 -1.325502 1.799190 0.696759 0.473044 -0.133104 -1.325587 -0.706830 -0.225915 -1.199456 -1.226877 2.024236 -0.519463 1.191693 2.400050 0.509857 -0.383380 -0.415151 1.812611 -1.092261 2.150219 1.347308 -1.878909 -0.030959 0.468766 1.271968 0.319896 1.689759 -0.835730 -1.119707 0.693360 -1.115019 0.496700 -1.435918 0.546247 0.385051 0.126174 -2.543220 0.222375 0.231616 -0.321642 -0.099722 -0.433882 1.113219 1.676436 1.514518 -0.933536 0.510315 1.332974 0.006135 -0.089828 0.673347 -0.001908 0.553825 0.598040 0.165310 -1.267266 -0.337044 -0.321203 -1.805971 0.364084 1.277536 2.102435 -0.308314 0.104446 1.225701 -0.219500 0.343315 0.641983 0.290852 0.428968 -0.211196 1.300342 -1.606492 -0.459901 -2.885444 -0.592665 -4.198886 -1.105488 -1.247275 0.923558 -0.054865 0.692959 -0.289962 2.099898 -0.104565 0.148099 1.171585 2.259559 -1.799787 -0.772325 -2.005451 -0.744727 0.507995 -1.166757 -0.690029 1.084649 0.025012 -1.210304 -1.304611 0.760216 0.244910 -0.567387 -1.049495 -0.515595 1.910968 -2.097074 -1.310318 -1.656337 0.516354 -0.384815 -2.497297 0.232728 -0.400444 1.242943 0.214419 0.197488 -1.345535 0.393662 1.538434 -0.682992 -0.827758 -0.424437 1.923403 0.800289 -0.058315 0.558775 0.210424 0.259262 1.815165 1.916644 -0.851760 -0.886832 0.490402 -0.921900 0.026316 -1.388223 -0.538503 0.914645 -1.919844 0.003750 1.115986 -0.921004 -0.087242 0.965868 -0.296597 1.194497 3.932705 -0.169032 1.013676 0.311845 -1.833970 1.343506 -0.107578 -0.335374 0.656149 0.975167 0.348012 -1.976280 -1.589933 0.949028 1.454045 1.233609 -2.027422 -0.827087 -0.964612 0.293596 0.038543 -0.353386 1.186598 -0.326749 -0.953879 -0.337093 0.426495 3.226143 -1.106429 -1.616442 1.318321 0.449234 -1.057778 -2.360148 -0.877299 -0.944450 -0.361058 0.183770 -0.204991 0.793861 2.355850 -3.423950 1.640195 -0.338399 -0.663613 1.247577 -0.309521 -0.428679 -2.300534 -0.261372 1.570509 1.995176 0.094755 0.192651 0.064554 -1.540882 0.265487 0.221689 0.773928 -0.202020 0.585855 -0.063419 -1.243374 -1.190682 -0.371400 -0.551044 -0.318827 -0.128015 0.631231 0.402260 -3.530846 1.920846 -0.756842 -0.432281 0.935016 0.235339 1.550220 -1.533139 -2.083602 1.181790 -0.032167 -0.924515 -1.202362 0.466865 1.326242 -0.037890 -0.346784 -0.644042 -2.694755 1.014424 -0.503971 0.821980 0.601490 0.498490 1.918645 0.632047 -1.043559 -1.680973 -0.645677 0.006338 -0.729555 -0.666495 -0.551459 -0.147909 1.708730 1.827730 0.296825 -0.137746 -0.460277 1.933052 -1.856761 -0.806199 1.749153 0.750324 -1.140596 0.781061 1.910693 -1.684419 -1.157789 -1.049854 0.115202 -0.258572 -1.346709 0.466900 -0.979750 0.267889 0.819637 0.178577 -0.689361 0.885101 0.426391 -0.075050 -0.914643 2.696834 2.682623 -1.527143 0.196660 -1.306886 0.897243 -2.384012 -1.609451 0.349806 0.420137 -0.574284 0.652149 0.761698 1.257454 -0.257827 -0.096454 -0.252011 -0.947223 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__deque_buf_size(unsigned long) = -0.327429 -0.541720 -0.250563 -0.817673 0.468122 -0.019868 0.083698 -0.359435 -0.969296 -0.056664 0.194318 -0.757189 0.224143 0.822662 -0.080890 0.841421 1.022145 0.268652 -0.326639 -0.032886 0.905333 -0.470108 0.483286 0.756256 -0.431431 0.038984 -0.352382 0.220354 0.035380 0.134618 -0.111022 -0.463374 0.118702 -0.913930 -0.190387 -0.440179 -0.015064 0.744882 0.873809 -1.037619 0.383653 0.086472 0.494882 -0.137241 -0.137767 -0.277520 0.291293 0.222818 -0.233326 0.468662 0.570466 -0.095030 -0.047276 0.075381 0.253407 0.584896 -0.052016 0.004345 -0.317731 -0.347162 -0.169534 0.228673 0.449753 0.315678 0.556743 0.019170 -0.160731 0.483020 0.343261 0.016175 0.526215 0.048322 -0.382044 -0.524368 0.238392 -0.944549 -0.205882 -1.403662 0.007313 -1.479196 -0.457595 0.351886 0.688312 0.217669 0.204654 0.046534 0.586340 -0.573112 -0.327418 0.454250 0.606169 -0.399428 -0.286993 -0.342277 -0.676001 0.038526 0.037725 -0.305577 0.433359 0.306636 -0.598475 -0.388161 0.475868 0.273325 -0.147834 -0.625247 0.339842 0.518454 -0.648351 -0.669160 0.303066 0.958437 0.061967 -0.640186 0.093663 -0.583616 -0.092612 0.034784 -0.561480 -0.646479 -0.004983 0.101245 -0.479537 -0.155698 -0.183534 0.267444 0.352668 0.224940 -0.040601 0.005915 0.037144 1.012613 -0.071374 -0.710415 0.211445 0.030982 0.057553 0.177411 -0.452970 -0.648346 0.054107 -0.703546 0.079894 0.067718 -0.415451 -0.026735 0.585030 0.325578 -0.245785 1.494956 -0.101041 0.957318 0.560549 -0.293716 0.385559 -0.029327 0.244157 0.315166 0.533187 -0.186379 -0.603168 -0.743932 0.539645 0.476010 0.329954 -0.475394 -0.667907 0.019966 0.018214 0.427035 -0.075025 -0.099405 0.109343 -0.355129 -0.092279 0.249572 1.460041 -0.037876 0.149580 0.383034 0.535792 -0.377661 -0.882989 -0.422988 -1.097782 0.104139 -0.009743 0.119812 0.474970 0.957817 -1.339441 0.531629 -0.277989 0.209257 0.308900 0.361815 -0.598951 -1.589697 -0.615724 0.196894 1.032818 -0.367488 0.404133 0.375328 -0.472082 0.001844 0.042214 -0.082258 -0.524858 0.304393 -0.068681 -0.465398 0.184824 0.488821 -0.591852 -0.161866 -0.113633 0.151272 0.619722 -0.648554 0.368004 0.093135 0.023255 0.480806 0.075593 0.798488 -0.255568 -0.316683 0.460342 0.121094 0.012248 -0.115331 0.260056 0.505793 -0.264100 -0.168467 -0.291286 -0.765809 0.551671 -0.220416 0.680265 0.057201 -0.645820 0.022934 -0.034573 -0.082889 -0.544525 -0.051469 -0.592360 -0.290611 -0.356037 -0.362148 -0.277278 0.571487 0.267002 0.300319 -0.619927 0.191528 0.622725 -0.402872 0.278854 0.558256 -0.208835 -0.647275 0.041325 0.754816 -0.780798 0.206215 -0.410641 0.147716 -0.253479 -0.144209 0.559876 0.378613 0.302607 -0.424480 -0.147965 0.274082 0.363206 0.449227 -0.006116 0.106955 1.040651 0.234868 0.092579 -0.193855 -0.525321 0.008798 -0.598732 -0.542778 0.066135 0.602087 -0.850068 0.054758 -0.068156 0.833618 -0.074877 0.231781 -0.108911 0.172724 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.310755 0.147580 0.699946 -0.671705 0.539508 0.103629 0.241426 -0.229616 -0.588818 -0.359932 -0.091261 -0.481361 -0.497314 0.923101 -0.364688 0.297061 1.370261 0.502425 -0.199682 -0.462954 0.803138 -0.855030 1.171321 1.184628 -1.028338 -0.017651 0.645612 0.747011 0.515325 0.773941 -0.551614 -0.245473 0.336708 -0.561660 0.507508 -0.980647 0.156481 0.066508 0.010547 -1.521838 0.099061 -0.284289 0.116807 -0.096939 -0.135963 0.855870 0.978325 0.753224 -0.389096 0.155626 0.705443 0.086042 0.028722 0.258402 0.260697 0.361461 0.843264 0.418668 -0.376613 -0.021385 -0.165170 -0.971969 0.313216 0.911230 1.192347 0.045013 0.117323 0.263307 0.058245 0.151716 0.238817 0.201611 0.105021 0.208194 0.515574 -1.430477 0.292269 -2.061375 -0.281998 -2.452062 -0.579518 -0.678575 0.350646 -0.566132 0.427341 0.233077 1.022943 0.122344 0.275974 0.308236 1.189204 -0.937226 -0.362972 -0.621394 -0.478121 0.351495 -0.559686 -0.027796 0.599116 -0.033159 -0.653487 -0.762786 0.738820 0.292159 -0.390706 -0.188529 -0.115837 0.882703 -0.961581 -0.605680 -0.891489 -0.213564 -0.237994 -1.334660 0.509910 -0.659539 1.082602 0.097594 -0.166647 -0.883081 0.164011 0.917059 -0.244924 -0.434131 -0.461086 1.004025 0.347385 -0.056224 0.099470 -0.131051 0.066831 0.809531 1.063262 -0.510117 -0.250506 0.236817 -1.011547 -0.167135 -0.905819 -0.330036 0.871518 -0.808495 -0.127860 0.489607 -0.580667 -0.106569 1.268325 -0.166245 0.668690 2.455986 -0.128310 0.556844 0.261600 -0.979719 0.621454 0.011363 -0.126268 0.402551 0.736191 0.299251 -1.476662 -0.809526 0.249045 0.912552 0.628350 -1.075536 -0.739434 -0.558362 -0.048523 0.114998 -0.053896 0.229882 -0.369821 -0.561124 -0.239438 0.285198 1.500581 -0.553266 -0.824917 0.234225 -0.064224 -0.597889 -1.478069 -0.278286 -0.449667 0.128200 -0.350965 -0.126148 0.511837 1.138188 -2.272875 0.912775 -0.454519 -0.386188 0.913052 -0.128385 -0.319254 -1.469081 0.274195 0.800352 0.988480 0.060807 -0.092390 0.232765 -0.913937 -0.097580 -0.076605 0.588913 -0.405162 0.448131 0.259354 -0.806242 -0.719535 -0.234662 0.059662 -0.431136 -0.004865 0.416118 -0.067151 -1.954937 1.072050 -0.288238 -0.273427 0.454326 -0.080126 0.348127 -1.035560 -1.081474 0.391532 0.114802 -0.148835 -0.763880 0.043245 0.780520 -0.262912 -0.145330 -0.542853 -1.210420 0.393054 -0.532364 0.492546 0.377526 0.328854 1.099215 0.317477 -0.284195 -1.010852 0.234380 -0.248911 -0.373158 -0.504452 -0.425066 -0.210435 0.816335 1.266015 -0.036840 0.186392 0.120906 1.104097 -1.044812 -0.563123 0.661806 0.627491 -0.439602 0.373681 0.721737 -1.016776 -0.678166 -0.478552 -0.484940 0.104322 -0.736799 0.481115 -0.631254 0.260797 0.397216 0.081767 -0.263005 0.561112 0.150615 0.158849 -0.069252 1.101679 1.722282 -0.719712 -0.000212 -0.723246 0.401129 -1.299878 -0.758661 0.100553 0.278863 -0.310006 0.262394 0.293824 0.728718 0.010271 -0.084249 -0.045124 -0.306429 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::deque() = -0.134985 0.044647 0.354579 -0.483050 0.549910 0.088847 0.201529 -0.076119 -0.407593 -0.278064 -0.051622 -0.180261 -0.325538 0.508851 -0.287880 0.175487 0.685734 0.233144 -0.013232 -0.281671 0.504541 -0.378768 0.741296 0.550209 -0.705318 0.024032 0.113630 0.478491 0.178216 0.686325 -0.124277 -0.301142 0.235834 -0.141753 0.304135 -0.578276 0.132328 0.152816 -0.140631 -0.819860 0.057798 -0.000649 0.042683 0.076769 -0.017101 0.407801 0.497784 0.453760 -0.305719 0.254868 0.487982 0.245467 0.043596 0.254718 0.039321 0.121099 0.323786 -0.150682 -0.267560 -0.045194 -0.181933 -0.602183 0.195018 0.471546 0.717687 -0.050878 0.134087 0.101580 -0.145468 0.189439 0.302293 0.144318 0.017558 -0.064976 0.377894 -0.501782 0.032796 -1.026964 -0.154732 -1.410365 -0.331059 -0.483727 0.314472 0.081345 0.233004 0.075510 0.612696 0.129432 0.150404 0.304597 0.508293 -0.395476 -0.138557 -0.394031 -0.335471 0.155184 -0.298252 -0.118973 0.119839 0.181319 -0.328582 -0.302921 0.279213 0.022939 -0.164612 -0.222198 -0.186577 0.521719 -0.756563 -0.260011 -0.457251 0.191631 -0.141264 -0.732082 0.163584 -0.416548 0.575146 -0.062501 0.129748 -0.190198 0.089220 0.484241 -0.180338 -0.105689 -0.412918 0.526413 0.225250 -0.027770 0.073586 -0.059290 -0.179646 0.419442 0.532085 -0.221229 -0.284187 0.153560 -0.277176 -0.021859 -0.470031 -0.018652 0.402115 -0.502966 0.042335 0.208508 -0.209486 -0.205406 0.253148 -0.177671 0.457101 1.142493 -0.074755 0.344908 0.202824 -0.515001 0.204794 0.102414 0.077607 0.392987 0.415288 -0.043707 -0.417980 -0.502799 0.098033 0.357492 0.318506 -0.495146 -0.327218 -0.279669 0.003384 0.106822 -0.145075 0.174713 -0.253007 -0.345423 -0.072836 -0.030371 0.763861 -0.095040 -0.351627 0.261544 0.180152 -0.494158 -0.487499 -0.242835 -0.204330 0.019747 0.006511 -0.109986 0.195625 0.633348 -1.258435 0.482187 -0.152620 -0.036584 0.295043 -0.124494 -0.047141 -0.758621 0.027789 0.344465 0.556591 -0.070394 0.089278 0.189560 -0.463995 0.116494 -0.043675 0.307502 -0.202035 0.176221 0.131822 -0.453949 -0.402199 -0.218670 -0.036267 -0.025069 -0.060315 0.167531 0.116068 -1.172288 0.438645 -0.299046 -0.212263 0.310834 0.100566 0.397027 -0.427307 -0.539629 0.247191 -0.003275 -0.274563 -0.500111 0.152708 0.436881 -0.197254 -0.018578 -0.264172 -0.582288 0.257773 -0.279509 0.156583 0.248568 0.199692 0.637110 0.093809 -0.252740 -0.562935 -0.041329 0.027289 -0.281780 -0.190195 0.097328 -0.116946 0.389802 0.703643 0.135435 0.012186 0.128760 0.789240 -0.437606 -0.292289 0.526305 0.192629 -0.178379 0.398957 0.528033 -0.528447 -0.473294 -0.274077 0.039679 0.168959 -0.347146 0.388474 -0.300562 0.212159 0.144694 0.221534 -0.326272 0.331715 0.079280 0.064328 -0.204890 0.800798 0.811812 -0.339140 0.105242 -0.240678 0.132154 -0.690593 -0.302954 -0.095449 0.016909 -0.068008 0.355615 -0.050349 0.537416 0.036175 0.130601 0.021996 -0.215045 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_base() = -0.627181 0.670745 1.713219 -2.899518 3.759007 2.452366 1.054755 -1.027844 -1.888266 -0.533929 -0.086584 -1.701600 -1.823028 2.728789 -1.469646 1.422070 3.150286 -0.073343 -0.638755 -0.514704 3.141252 -0.432064 3.770218 2.075285 -3.667066 0.133988 0.193505 1.849310 0.263870 3.734842 -1.531376 -2.047191 0.955257 -0.886064 0.987738 -1.561598 0.531214 -0.140666 0.188069 -3.295611 0.291287 0.546803 -0.775404 0.245706 -0.283809 0.868231 3.200373 2.271264 -1.531147 0.267548 2.461182 0.980751 -0.088442 1.199622 0.504489 0.590413 2.015496 0.205193 -1.448340 -1.144616 -1.152486 -1.440470 0.729122 2.481409 3.394596 0.042807 0.466571 1.085196 -0.619291 0.642841 1.069566 0.953265 0.346521 0.310484 2.121135 -1.394138 0.117304 -3.668542 -0.726811 -4.449886 -1.660144 -2.105502 0.499183 0.536507 1.806658 -0.919813 3.227399 0.232781 0.295499 1.338171 3.087979 -2.390380 -0.553708 -2.678641 -2.208193 -0.082242 -1.313475 -0.454294 0.467441 0.021755 -2.005624 -1.553948 0.570667 0.469915 -0.698519 -1.217020 -0.790438 2.518032 -2.614207 -1.297052 -1.474749 1.456499 -0.963511 -4.194944 -0.928742 -1.674705 1.485862 -0.703905 0.714290 -1.758705 0.486670 2.820337 -1.477145 -1.184886 -0.996844 2.983421 2.229001 0.296050 0.434669 -0.402648 -0.195381 2.567864 2.491695 -0.897211 -1.286612 -0.239070 -0.650870 0.234654 -1.619719 0.362044 1.013435 -2.331996 -0.061847 2.091838 -0.659588 0.159755 0.407672 -0.799810 1.980576 7.382271 -0.980275 2.151722 0.530698 -3.069232 1.634914 0.548086 -0.146879 1.321898 1.402687 0.148977 -3.325485 -2.649696 1.780779 1.768586 1.389967 -3.087331 -0.224707 -0.972257 -0.275334 -0.349550 -0.877368 1.122484 -0.797811 -1.728622 -0.535005 0.502575 4.952730 -1.145699 -3.570497 2.418958 0.975816 -1.668624 -1.592780 -1.709503 -1.165583 -0.034411 0.895903 -0.544911 1.605490 3.455120 -5.520258 2.217850 -0.239160 -1.199469 2.665369 -0.712766 -0.479737 -1.736510 -0.193653 2.271211 2.322324 -0.048860 -0.447542 0.116685 -2.169346 0.954184 0.076585 1.120836 -0.849345 0.801244 0.457923 -2.581999 -2.254377 -1.820979 -0.808248 -0.031943 -1.186860 0.654735 -0.356969 -5.647456 2.877935 -0.433664 -0.609446 1.318155 -0.132047 2.153068 -1.574014 -2.945244 1.520629 -0.319453 -1.061642 -1.854187 0.997109 1.750654 0.363533 1.013866 -2.508177 -4.052937 1.521035 -0.906391 1.545895 1.146119 1.462437 2.582384 0.946431 -1.374606 -3.202627 -1.739502 1.282011 0.151282 -1.973676 -0.215310 -0.826982 2.304205 2.552053 0.177831 -0.161751 -1.253404 3.239659 -2.251376 -0.691654 2.746417 0.510977 -2.371832 0.475541 2.905868 -1.448002 -2.151213 -1.285958 -0.034388 -0.719807 -2.252458 1.225361 -0.792061 0.962997 0.757734 0.706664 -1.481356 1.013332 0.264748 0.179138 -0.944994 3.934399 3.244127 -1.911342 0.231363 -1.655838 1.459512 -3.564022 -2.465589 0.816142 -1.238526 -0.621891 1.180036 0.169657 2.750879 -0.227546 0.513139 0.344519 -1.164591 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.302740 0.045903 0.614985 -0.679681 0.531472 0.170376 0.216135 -0.192216 -0.615585 -0.293899 -0.068824 -0.376353 -0.384900 0.861122 -0.394108 0.242275 1.257287 0.518139 -0.184663 -0.396427 0.704861 -0.589652 1.061287 1.062772 -0.896171 -0.051506 0.494943 0.666891 0.389520 0.754280 -0.446113 -0.359789 0.317958 -0.415034 0.359963 -0.932442 0.158762 0.143928 0.001580 -1.352332 0.143779 -0.261436 0.001538 -0.088511 -0.089430 0.655751 0.797811 0.674863 -0.315570 0.184514 0.647209 0.283282 -0.064668 0.243072 0.223966 0.358258 0.655623 0.235544 -0.314569 -0.046844 -0.175701 -0.736609 0.235236 0.807978 1.049011 0.070800 0.127749 0.135880 0.022629 0.170152 0.290054 0.116899 0.070045 0.148197 0.390758 -1.128382 0.154715 -1.792578 -0.221582 -2.064834 -0.464467 -0.561942 0.372784 -0.383028 0.310397 0.194140 0.881792 0.070392 0.223316 0.367652 1.005986 -0.774068 -0.332695 -0.546661 -0.475747 0.316603 -0.478200 -0.042041 0.360807 0.052375 -0.572913 -0.702957 0.535163 0.235096 -0.314364 -0.191730 -0.074204 0.820674 -0.917141 -0.484160 -0.724437 0.029547 -0.174465 -1.153461 0.244904 -0.659207 1.005679 0.043389 -0.186741 -0.716331 0.170482 0.803041 -0.259377 -0.311972 -0.337871 0.809970 0.288633 -0.062500 0.025938 -0.174135 -0.011986 0.743495 0.829724 -0.508478 -0.186712 0.225611 -0.793473 -0.161744 -0.862297 -0.232379 0.640684 -0.717628 0.029889 0.458137 -0.533943 -0.193791 0.959272 -0.138554 0.605826 2.222706 -0.137565 0.520538 0.267958 -0.868374 0.419599 0.026998 -0.036046 0.357312 0.639454 0.191999 -1.167726 -0.729906 0.203195 0.780413 0.596630 -0.886001 -0.570466 -0.513404 -0.061994 0.124167 -0.055892 0.193105 -0.398001 -0.504622 -0.235157 0.230540 1.315846 -0.374936 -0.743381 0.193859 0.082885 -0.535171 -1.056482 -0.251631 -0.339452 0.157504 -0.091502 -0.138110 0.489135 1.036037 -2.069950 0.805717 -0.348850 -0.267770 0.669506 -0.047431 -0.277297 -1.091639 0.176717 0.677767 0.956936 0.052200 0.013518 0.278712 -0.794640 -0.094003 -0.032541 0.542290 -0.354170 0.347832 0.344173 -0.760474 -0.602536 -0.186923 0.023587 -0.350093 -0.052952 0.367809 -0.094224 -1.847293 0.917085 -0.239284 -0.203751 0.408836 -0.061890 0.409255 -0.905816 -0.957634 0.384481 0.153193 -0.128907 -0.598035 0.072539 0.764280 -0.217076 0.079565 -0.475161 -1.051162 0.339408 -0.383334 0.451976 0.306638 0.244329 0.942920 0.076461 -0.184042 -0.878262 0.083527 -0.025211 -0.300637 -0.422246 -0.200679 -0.179529 0.722169 1.085170 -0.000792 0.007689 0.090174 1.047364 -0.852163 -0.375592 0.594749 0.575723 -0.364363 0.356895 0.670717 -0.958349 -0.619494 -0.385063 -0.308617 0.095071 -0.623673 0.471481 -0.499318 0.315242 0.288566 0.176839 -0.295856 0.481671 0.165215 0.126367 0.004439 0.985419 1.451353 -0.542858 0.086112 -0.607656 0.345968 -1.137241 -0.680089 0.040135 0.076030 -0.304491 0.298685 0.071256 0.719320 -0.022048 0.113815 -0.016137 -0.227637 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -2.991655 1.627083 5.553298 -10.119600 10.996318 9.411715 2.607966 -4.292037 -7.141048 -0.676051 0.073863 -8.313604 -5.604573 10.368584 -4.634692 5.288095 12.028740 0.168073 -4.000223 -0.803132 10.125009 0.311803 12.070909 8.299498 -11.045681 -0.045847 1.171672 5.834220 1.188226 10.205770 -6.304105 -7.435882 2.339809 -3.540719 1.637658 -4.471269 1.542945 -0.502718 2.792850 -11.920247 1.738043 1.704715 -2.493758 -0.710282 -1.274683 1.875180 11.041921 7.629201 -3.878257 -0.561770 8.046253 3.168577 -1.175015 2.767625 2.505033 2.456994 7.530944 2.097891 -4.421204 -4.471936 -2.696218 -2.184818 1.314858 8.990300 11.251094 1.245762 0.420362 3.672639 0.137243 1.475676 2.617511 2.575096 1.188232 2.824339 5.489793 -4.724175 0.858760 -12.158883 -1.409415 -12.760804 -5.484521 -4.742504 2.139396 1.347577 4.915808 -3.795154 11.000819 -0.806757 -0.094693 4.550706 12.340855 -8.666133 -2.812411 -8.946862 -7.760087 0.522124 -4.438986 -0.733763 1.717738 -0.112526 -7.528407 -6.399237 1.525007 2.435589 -3.075797 -2.727504 -0.903111 8.349015 -7.315557 -4.419902 -3.749556 5.174672 -1.763152 -14.593514 -5.093282 -5.772779 3.491421 -1.779407 -0.513851 -8.323292 1.620019 8.430807 -5.495500 -4.101999 -3.106845 9.574425 7.498377 0.848999 0.798450 -1.404852 2.118497 9.838822 5.774515 -5.007383 -2.442066 -1.074648 -2.930308 0.363436 -6.257859 -0.170777 2.099845 -7.762247 0.281094 7.803347 -3.685764 1.279895 1.640577 -1.626068 5.025047 27.937441 -3.462793 7.856567 2.000966 -10.551234 6.264980 0.666511 -1.812285 2.488356 3.990996 2.335482 -12.979935 -8.969929 7.439818 7.949826 5.485785 -10.164002 0.585077 -2.557351 -1.437683 -2.013126 -1.059601 3.440332 -2.499620 -5.327838 -2.869086 4.332635 18.309157 -4.267320 -12.820594 7.406082 3.358478 -3.396904 -5.523583 -5.002056 -4.063735 0.377585 3.561202 -1.050892 7.340615 12.726150 -18.965763 8.005498 0.288546 -4.951601 10.141618 -1.600652 -3.791017 -4.377509 -0.677021 8.700801 9.064595 0.228550 -1.799494 -0.027521 -8.102212 1.345331 1.264339 3.387845 -3.500820 3.285144 2.439488 -8.724982 -6.907554 -5.089441 -3.472574 -1.415911 -5.074330 3.096674 -2.194545 -18.594908 11.628503 0.399806 -0.869585 3.173447 -2.643455 6.679934 -6.786538 -10.235793 5.250895 -0.466440 -2.411011 -4.305331 2.499896 6.356246 2.063407 5.196522 -9.304088 -14.454691 5.614665 -2.138010 7.064027 3.207339 3.541295 6.493183 3.147879 -2.918201 -10.071428 -6.229146 4.681283 1.759485 -7.677244 -1.328403 -3.026309 8.526040 7.806214 -0.966798 -2.350808 -5.453454 9.237756 -7.164918 -1.401676 7.545596 1.433347 -9.569937 -0.303743 9.066683 -5.688180 -5.370089 -5.086316 -1.703409 -4.700872 -8.419227 3.397006 -1.660756 3.248521 3.001775 0.525165 -3.773655 3.429221 1.538591 -0.472989 -0.667651 12.769711 9.853777 -5.395927 1.259254 -8.156487 6.107136 -12.579420 -10.211087 4.473434 -4.706147 -4.375834 1.688394 0.652149 8.754317 -1.574120 1.926583 0.126574 -2.220773 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.169571 0.045099 1.021964 -0.814683 0.494689 0.124351 0.191988 -0.002163 -0.816987 -0.134451 -0.149211 -0.607300 -0.364131 0.857532 -0.306858 0.031026 1.264953 0.640065 -0.316842 -0.306753 0.399686 -0.537422 0.885508 1.110620 -0.820302 0.132818 0.032077 0.797015 0.254652 1.224531 -0.695721 -0.312131 -0.050626 0.113967 0.550635 -0.929721 -0.037475 0.188806 -0.278629 -1.594883 0.203350 0.416700 0.483269 -0.132870 0.219889 0.599170 0.857733 0.571585 -0.122254 0.071335 0.448231 0.187034 0.273297 0.157847 0.496263 0.446277 1.331992 0.113856 -0.410503 0.100620 -0.174095 -0.679726 0.228522 0.747218 0.978286 0.140522 -0.055089 -0.433354 0.259879 0.134506 0.322412 0.155415 -0.056739 0.183606 0.182845 -0.468692 0.748245 -1.121964 0.182480 -1.493345 -0.564467 -0.453296 0.745654 0.293494 0.067390 -0.311533 0.924808 -0.204075 0.245243 -0.050172 0.888019 -0.538402 -0.272824 -0.430804 -0.586842 0.337059 -0.259228 -0.327977 0.256293 0.167653 -0.543538 -0.342894 0.654994 0.098461 -0.372799 0.697652 -0.029307 0.825158 -0.797267 -0.319598 -0.592952 0.240258 0.035072 -0.975453 0.237026 -0.771093 0.196190 0.033624 -0.337563 -0.462633 0.265996 0.485864 -0.438202 0.137746 -1.366485 1.123968 0.075026 -0.271243 -0.048967 -0.202360 -0.042597 0.199487 0.363146 -0.638677 -0.031139 0.397201 -0.711390 -0.235175 -0.830260 -0.229210 0.352441 -0.569114 -0.337319 0.090869 -0.560738 0.247405 -0.036798 0.102536 0.462280 2.152414 -0.283963 0.564826 0.165133 -0.699462 0.937995 0.518461 -0.060971 0.253940 0.572830 0.249813 -1.117950 -0.683245 0.129210 0.847863 0.594862 -0.578886 -0.242382 -0.446630 -0.240982 0.276524 0.269769 0.005713 -0.341779 -0.524820 -0.289492 -0.083128 1.361507 -0.048329 -1.248453 0.037427 -0.203338 -0.523037 -0.762996 -0.084172 -0.174607 0.117985 -0.535978 -0.221353 0.616661 0.980289 -2.127362 1.021597 -0.207886 -0.537175 1.260659 -0.507166 -0.140470 -1.019277 -0.072177 0.560318 1.209016 0.040938 -0.459976 0.237623 -0.785367 -0.135801 -0.112003 0.499548 -0.520362 0.426571 0.334626 -0.716976 -0.325334 -0.814637 -0.002841 -0.265495 -0.496986 0.324054 -0.016777 -1.507679 0.799893 0.030260 -0.059445 0.317861 -0.005638 -0.196344 -0.756217 -0.752293 0.062907 0.257331 -0.300489 -0.683676 -0.102154 0.663078 -0.356638 0.036969 -0.641570 -0.931672 0.485682 -0.547313 0.560689 0.405007 0.018554 0.491881 1.416955 -0.087923 -0.489074 0.084758 -0.054407 -0.350757 -0.193091 0.120412 -0.427252 0.535502 1.008357 0.040612 0.215715 -0.259705 1.122688 -0.161574 -0.437950 0.520150 -0.670221 -0.200376 0.281523 0.665824 -0.843291 -0.537739 -0.551149 -0.548586 0.096880 -0.341382 0.615459 -0.434224 0.223456 0.252251 -0.055426 -0.542670 0.376797 0.066184 -0.321973 0.130827 1.241953 0.858414 -0.208401 0.666691 -0.512964 0.445140 -0.953985 -0.187363 -0.252887 -0.125270 -0.566024 0.247517 0.148606 0.633813 0.021602 0.187160 -0.017694 -0.048256 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.078854 -0.074014 0.599562 -0.432386 0.166230 -0.159474 0.106740 -0.036340 -0.481460 -0.015328 -0.088108 -0.192976 -0.032029 0.440711 -0.095578 0.198370 0.749446 0.450558 -0.171316 -0.337885 0.358198 -0.778264 0.503601 0.723464 -0.543336 0.118389 0.182346 0.589918 0.419095 0.640044 -0.529943 0.250235 -0.052456 -0.304487 0.441496 -0.752935 0.009734 0.228769 -0.019859 -1.066644 0.087150 0.012133 0.515760 -0.026113 0.074103 0.567353 0.388152 0.345097 -0.154466 0.190505 0.343759 -0.188216 0.276741 0.086188 0.269031 0.473254 0.975772 0.344893 -0.197531 0.160271 -0.013207 -0.654808 0.421207 0.412464 0.647380 -0.032191 -0.018997 -0.067968 0.297685 -0.000120 0.270985 0.127087 -0.250175 -0.039542 0.199824 -0.908869 0.636422 -1.041336 0.063495 -1.214268 -0.365046 -0.321273 0.372465 -0.249328 0.229979 0.086367 0.565178 -0.121216 0.166986 -0.192189 0.387117 -0.472299 -0.150848 -0.216206 -0.291744 0.225371 -0.193227 -0.280121 0.465398 0.071230 -0.255189 -0.254182 0.752824 0.187244 -0.283145 0.329164 -0.065954 0.489653 -0.473074 -0.502060 -0.414033 -0.072942 -0.201760 -0.517848 0.653379 -0.564713 0.324904 0.030121 -0.092954 -0.434162 0.057827 0.414967 -0.167282 -0.059846 -0.796400 0.714104 0.072555 -0.188358 0.011000 -0.144686 -0.114592 0.166986 0.458236 -0.397610 -0.112873 0.408008 -0.694018 -0.136886 -0.599887 -0.303332 0.513990 -0.424097 -0.418980 -0.022785 -0.321752 0.306926 0.732848 0.178098 0.270937 1.321025 -0.007375 0.280081 0.144695 -0.344805 0.690381 0.347223 0.054152 0.368995 0.424107 0.036470 -1.093175 -0.431354 -0.127088 0.481935 0.323435 -0.512737 -0.644999 -0.379571 -0.118883 0.382063 0.051270 -0.024664 -0.218727 -0.294846 -0.103739 -0.207903 0.882329 -0.167780 -0.496713 -0.045607 -0.364945 -0.683488 -1.108619 -0.091615 -0.380515 0.036772 -0.758670 -0.080219 0.294193 0.525615 -1.353055 0.613408 -0.419927 -0.343167 0.876697 -0.336986 -0.049074 -1.142319 -0.011591 0.186453 0.732440 -0.083026 -0.287507 0.311191 -0.506022 -0.051905 -0.180077 0.263011 -0.337964 0.303335 0.151296 -0.378274 -0.135798 -0.256744 0.087613 -0.269532 -0.044754 0.213662 -0.037618 -0.796794 0.323584 -0.126730 -0.140331 0.480697 0.105452 -0.191037 -0.496513 -0.359152 0.066805 0.363773 0.055721 -0.627998 -0.068423 0.453677 -0.383749 -0.345585 -0.367132 -0.617773 0.110125 -0.614561 0.195505 0.284399 -0.107214 0.332851 0.874961 -0.080086 -0.442726 0.459097 -0.593975 -0.297374 -0.038745 -0.296404 -0.230783 0.360883 0.714606 0.129577 0.438070 0.100259 0.761150 -0.314493 -0.426466 0.282354 -0.198345 -0.067303 0.202706 0.339645 -0.646178 -0.293142 -0.258901 -0.492667 0.301757 -0.099810 0.545250 -0.326648 0.150977 0.090214 -0.015765 -0.141369 0.355117 0.036914 -0.088307 -0.042865 0.831681 0.789989 -0.157629 0.141479 -0.269928 0.184653 -0.542344 0.045125 -0.264652 0.344807 -0.390302 0.248287 0.384907 0.437387 0.137171 -0.081048 0.041243 -0.201288 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.869720 0.124094 1.053992 -1.982164 3.072509 1.185078 1.248885 -0.573247 -1.819601 -1.187929 -0.003763 -1.363482 -1.932890 2.940846 -1.114988 1.892636 3.705398 0.738567 -0.193706 -0.866388 3.165972 -2.121583 4.050068 2.608544 -3.421771 -0.069497 0.782125 1.816910 0.443296 2.841827 -0.954059 -1.611545 1.795842 -2.246986 1.066546 -2.401227 0.726683 0.399037 0.300504 -3.854046 0.171736 -0.059128 -0.425012 0.131059 -0.732809 1.748100 2.819141 2.543937 -1.645866 1.159570 2.168025 -0.046732 0.105499 1.401205 0.265813 0.758436 0.657402 0.505274 -1.888529 -0.594785 -1.117644 -3.121140 0.907669 2.276225 3.674214 -0.366164 0.574430 1.761991 -0.963598 0.784684 1.313439 0.786258 0.635384 -0.474042 2.573932 -3.199098 -0.704632 -5.328764 -1.534519 -7.137518 -1.847104 -2.291075 1.096753 -0.660670 2.058453 -0.080014 3.166698 0.514528 0.454914 1.755065 3.341531 -3.007657 -1.072794 -2.682284 -1.259526 0.434653 -1.878904 -0.462096 1.968433 -0.379609 -2.146960 -2.002979 1.454110 0.694058 -0.726974 -2.398329 -0.843649 2.950864 -3.165744 -2.244563 -2.666732 0.352223 -1.281789 -4.315416 0.866188 -1.106553 2.517350 0.317016 0.480232 -2.044470 0.648793 2.898666 -0.832942 -1.910823 -0.065481 3.116543 1.531895 0.463490 0.912463 0.175644 -0.387516 3.246877 3.816006 -0.770760 -1.350522 0.317965 -1.620113 0.490471 -1.981443 -0.651299 2.094499 -3.009898 -0.133475 1.826854 -1.192310 -0.366256 2.546644 -0.456095 2.235468 6.588338 -0.339258 2.028819 0.976733 -3.174565 1.874008 -0.176957 0.141284 1.585952 2.142389 0.017352 -3.574601 -2.650429 1.226785 2.079776 1.782801 -3.706923 -1.907244 -1.574976 0.583383 -0.021976 -1.065655 1.566395 -0.419044 -1.985245 -0.167992 0.659479 4.839843 -2.137246 -2.369103 2.089575 0.714793 -1.947161 -3.980813 -1.695821 -1.918148 -0.197841 0.085051 -0.383397 0.836522 3.546638 -5.414364 2.428562 -1.225989 -0.673902 2.192094 -0.096598 -0.817964 -4.041660 0.057926 2.204149 2.597345 0.229664 0.163080 0.521551 -2.423581 0.706951 -0.053579 1.319524 -0.438346 1.049077 -0.305367 -2.227955 -2.409191 -0.793448 -0.451439 -0.748549 0.102776 1.063013 0.793276 -5.614273 2.672461 -1.167392 -1.374037 1.744193 0.522839 2.612979 -2.268593 -3.513996 1.827799 -0.530238 -1.356311 -2.417336 0.913247 1.852959 0.026979 -0.690121 -1.246709 -4.015156 1.683193 -1.151214 1.392230 1.247174 1.231433 3.815967 0.521320 -2.156185 -3.298149 -0.980278 -0.066136 -1.143484 -1.729048 -1.421325 -0.397965 2.734057 3.332778 0.719358 0.035819 -0.335448 3.629067 -3.599597 -1.340958 3.247490 1.988518 -1.628233 1.332058 3.163304 -2.599244 -2.140192 -1.152784 0.124802 0.044730 -2.345251 1.188023 -1.641443 0.914063 0.695498 0.869892 -0.900201 1.297731 0.578764 0.773067 -1.492057 3.982304 4.638471 -2.794073 -0.535843 -1.724177 1.135420 -3.871494 -2.575263 0.599592 0.760199 -0.584753 1.447699 1.153583 2.461663 0.023326 -0.517717 -0.207140 -1.584331 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.114288 -0.027447 1.459976 -3.640564 4.145033 1.777589 0.958669 -0.508696 -2.203922 -1.311246 -0.641575 -0.850981 -1.884198 3.454267 -1.277323 2.561366 3.736963 -0.067577 -0.486648 -1.129964 4.963225 -2.755977 4.017336 1.372952 -4.563736 -0.351346 1.287913 3.600954 1.226729 3.982124 -0.792437 -1.345917 0.511781 -2.174087 1.978722 -3.247598 1.877890 1.173021 -0.187904 -4.327000 0.286147 -0.004130 -0.556002 0.323862 -1.314535 1.682939 2.770944 3.230138 -3.117614 0.278716 3.762522 0.681389 -0.548046 1.540452 -0.955059 0.884799 1.197664 0.498062 -1.716906 -1.067260 -0.513217 -3.284622 2.398207 2.515454 4.617699 -1.128627 1.041770 3.304259 -0.594120 0.979372 1.629346 0.614780 -0.353424 -1.431404 3.341455 -4.250176 -1.073227 -6.909613 -0.688764 -7.960438 -1.617097 -3.145876 0.413726 -0.262727 2.046133 -0.426623 4.037825 0.287270 0.443599 3.049169 3.028893 -2.714305 -0.636720 -5.123003 -2.560033 0.756405 -2.208652 -1.931065 2.031467 0.733714 -1.594570 -2.031221 0.808291 0.602557 -0.883747 -3.517314 -1.793904 3.491003 -3.597441 -2.637360 -2.319065 2.164316 -1.837935 -4.956343 0.850083 -2.395084 2.408046 -1.314255 2.566304 -1.981073 -0.079659 4.125167 -1.298731 -1.650561 -1.113606 3.912998 2.496888 -0.345662 1.016888 -0.246764 -0.841982 2.969420 4.342461 -1.142133 -3.141923 1.205857 -1.835334 -0.211909 -3.146609 -0.091011 3.101211 -3.652267 -0.835466 2.477867 -0.489281 -0.278562 2.963007 -1.443667 3.293200 9.480712 0.078412 1.424089 0.429659 -3.356572 2.776848 1.073668 -0.236157 2.601902 1.563249 -0.777381 -4.920695 -3.320518 1.220781 1.511032 1.969073 -3.709065 -2.711139 -2.059069 -0.137791 0.368127 -2.209014 2.261316 -1.770958 -1.728049 -0.446846 0.017976 5.881634 -1.428865 -2.095874 3.425851 2.217851 -4.681365 -4.909406 -2.283750 -2.949445 -1.085450 0.140267 -0.792995 1.677033 4.134784 -6.876977 2.506737 -0.341510 -0.621536 1.658985 -1.588225 0.223252 -6.099139 -0.296090 2.609906 3.465852 -1.359498 0.812567 0.372279 -2.525145 1.825923 0.158370 1.175852 -0.124867 0.391792 -0.776952 -2.261971 -2.617687 -0.315441 -1.960441 0.186749 0.079005 0.462389 0.065807 -5.877593 3.281495 -2.645422 -0.615452 2.785368 0.721346 3.654313 -2.179820 -3.578618 2.577649 1.062926 -0.760409 -3.539263 1.745030 3.158549 -0.575079 -0.677551 -1.581738 -6.066325 0.667321 -2.367335 0.537291 1.075829 1.490173 3.595647 0.803045 -1.756560 -4.951518 -1.489857 -0.661562 -0.140341 -1.712194 -1.627180 0.264678 3.073501 3.013313 0.657434 0.413065 0.078354 4.485822 -3.332667 -2.004154 3.222333 0.929822 -2.844455 1.356084 3.542168 -2.908582 -2.931738 -2.048545 1.525235 0.474760 -2.944273 1.395457 -1.186542 0.996265 1.245787 1.352279 -1.335629 1.853344 1.316086 0.458632 -2.749559 6.054729 5.017577 -2.603757 -0.939308 -1.810147 1.057622 -4.373850 -2.447551 0.069163 0.409375 0.218398 2.561998 1.707852 3.329904 -0.357058 1.179596 0.764623 -3.006380 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.408233 0.257630 0.937473 -1.063627 0.886327 0.736787 0.275502 -0.540819 -0.782455 -0.226792 -0.001331 -0.858809 -0.578711 1.201998 -0.617772 0.380242 1.620213 0.391096 -0.415676 -0.341364 0.955859 -0.334712 1.515175 1.422408 -1.279209 -0.056730 0.651994 0.823326 0.436632 1.087845 -0.795715 -0.674461 0.331819 -0.445996 0.342291 -0.905889 0.151945 -0.082278 0.245003 -1.687864 0.176012 -0.204789 -0.171302 -0.192709 -0.114622 0.506729 1.327260 0.943592 -0.355302 -0.027843 0.916509 0.456223 -0.114208 0.271231 0.417704 0.327462 1.200707 0.397114 -0.363482 -0.279291 -0.236596 -0.559085 0.166109 1.252888 1.430497 0.245121 0.101542 0.166707 0.087551 0.155173 0.237689 0.260313 0.082426 0.615052 0.453570 -1.225374 0.441258 -2.093179 -0.219142 -1.983886 -0.657219 -0.619265 0.242814 -0.289313 0.542955 0.025152 1.261689 0.090123 0.196299 0.386219 1.568630 -1.124976 -0.405915 -0.737439 -0.834306 0.312440 -0.612901 0.144411 0.211330 -0.035453 -0.867485 -0.953888 0.534535 0.403572 -0.465284 -0.065142 -0.019233 1.001951 -0.958073 -0.572611 -0.698485 0.089734 -0.253977 -1.775171 -0.167207 -0.883213 1.027757 -0.054764 -0.318091 -1.196956 0.229929 1.093694 -0.446002 -0.501690 -0.520812 1.128453 0.669533 0.035390 -0.016614 -0.312443 0.273313 1.117576 0.842707 -0.699301 -0.147070 0.005493 -0.904772 -0.130812 -1.005196 -0.156566 0.538993 -0.870645 0.006961 0.916739 -0.679662 -0.038648 0.913543 -0.189493 0.719612 3.560284 -0.318841 0.862427 0.338717 -1.360440 0.632413 0.000742 -0.243856 0.288446 0.640857 0.468151 -1.831533 -1.015770 0.603357 1.168254 0.783077 -1.229169 -0.347635 -0.480255 -0.220518 -0.091393 0.035501 0.245797 -0.514572 -0.725169 -0.410610 0.608674 1.974043 -0.544671 -1.435816 0.442919 0.114755 -0.452415 -1.087212 -0.368552 -0.415668 0.263752 0.080850 -0.156262 0.848430 1.473059 -2.770199 1.081595 -0.197456 -0.607119 1.261012 -0.133752 -0.561417 -0.866425 0.305160 1.093397 1.106164 0.101227 -0.156646 0.192135 -1.096716 -0.138120 0.038086 0.613893 -0.537983 0.507662 0.550969 -1.150601 -0.934500 -0.488558 -0.049670 -0.501416 -0.415940 0.557739 -0.363283 -2.469630 1.487918 0.004204 -0.209406 0.362675 -0.446344 0.508562 -1.230673 -1.352685 0.516227 0.031581 -0.070129 -0.590920 0.077494 0.866574 0.003163 0.506800 -1.005410 -1.481536 0.450797 -0.424136 0.773115 0.444468 0.490768 0.971418 0.235271 -0.171428 -1.198592 -0.154477 0.356544 0.014299 -0.880727 -0.305990 -0.345092 1.037440 1.322208 -0.218509 -0.116956 -0.276265 1.185160 -1.027741 -0.386221 0.703358 0.547791 -0.898736 0.075383 0.832852 -0.972624 -0.704142 -0.562038 -0.572233 -0.283307 -1.029873 0.525004 -0.455659 0.419616 0.480683 0.075995 -0.440188 0.553083 0.172927 0.126884 0.205623 1.233039 1.641132 -0.642547 0.149943 -1.037485 0.634594 -1.629379 -1.214021 0.422230 -0.336064 -0.527961 0.138381 0.060389 1.004571 -0.065968 0.220079 0.035946 -0.170876 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.467795 -0.161951 0.606725 -1.258905 0.961689 0.286940 0.305114 -0.414688 -1.215522 -0.450175 0.183508 -1.193784 -0.571725 1.453187 -0.511194 0.580728 1.857935 0.470953 -0.465309 -0.447254 1.116815 -0.549529 1.566857 1.548537 -1.301985 -0.012327 0.264165 0.900338 0.496300 0.766310 -0.355534 -0.697202 0.383692 -0.673484 0.227142 -0.952222 0.149830 0.300508 0.390173 -1.918666 0.316817 -0.041328 0.126967 -0.162711 -0.192747 0.726557 1.185442 1.018052 -0.512372 0.359810 1.123854 0.221681 -0.047679 0.307752 0.323096 0.188764 0.793541 0.258368 -0.521589 -0.274984 -0.229224 -0.699504 0.222361 1.169860 1.535305 0.105099 -0.059582 0.369593 0.265036 0.306062 0.600752 0.232275 0.069370 0.112797 0.629677 -1.330028 0.093489 -2.612931 -0.187726 -2.980957 -0.786482 -0.323832 1.027611 -0.176277 0.259497 0.055230 1.335276 -0.008545 -0.058008 0.806237 1.590140 -0.919208 -0.567904 -0.781753 -0.886583 0.504724 -0.588479 0.026100 0.636470 0.359936 -0.980021 -0.709392 0.568106 0.197833 -0.507437 -0.353812 0.082638 1.155277 -1.238506 -0.553540 -0.575771 0.627265 0.084847 -1.829021 -0.087358 -0.916074 0.977965 0.032992 -0.491575 -0.860752 0.201041 0.659808 -0.590041 -0.212821 -0.692413 1.078294 0.560809 0.279328 0.029061 -0.011333 0.319574 1.269419 0.628088 -0.928743 -0.078307 0.100300 -0.604443 0.121625 -1.087021 -0.470092 0.765941 -1.077033 0.268395 0.542863 -0.804965 -0.393413 0.908252 0.029316 0.492494 3.351818 -0.154278 1.168383 0.684241 -1.141900 0.611941 -0.040098 -0.005736 0.492482 0.799176 0.230623 -1.292446 -1.179548 0.695802 1.267771 0.909960 -1.387068 -0.565467 -0.297076 -0.089510 0.089220 0.026557 0.273873 -0.327117 -0.692429 -0.333729 0.714768 2.059389 -0.401957 -1.134311 0.457403 0.506203 -0.487659 -1.320359 -0.414839 -0.628621 0.236746 0.123147 0.003249 0.865132 1.695018 -3.091276 1.187456 -0.063266 -0.148881 1.015597 0.141975 -0.801290 -1.810832 -0.064758 0.902731 1.432524 -0.008739 -0.000623 0.407360 -1.173753 -0.122314 0.175736 0.388958 -0.546775 0.529967 0.260002 -0.809730 -0.689756 -0.234330 -0.325578 -0.156752 -0.313013 0.702058 0.058712 -2.522244 1.307786 -0.192819 -0.348633 0.253538 -0.363412 0.890485 -1.217235 -1.275884 0.561936 -0.135768 -0.546849 -0.807551 0.190250 0.874065 -0.184620 0.328201 -0.741736 -1.416050 0.855673 -0.629868 0.912795 0.513491 0.046988 1.038641 0.166222 -0.288862 -1.160717 -0.143821 0.165100 -0.319002 -0.842113 -0.141506 -0.303103 1.024032 1.260872 0.002761 -0.432045 -0.016505 1.309436 -1.082602 -0.531014 0.887083 0.377325 -0.868000 0.642157 1.064187 -1.346501 -0.378713 -0.810923 -0.398824 -0.247794 -0.953811 0.742075 -0.200068 0.508050 0.238028 0.082787 -0.281691 0.745947 0.299365 0.065591 0.100125 1.612091 1.839167 -0.666813 0.075738 -1.199349 0.625326 -1.672218 -1.314220 0.363773 0.053511 -0.762271 0.189807 -0.016018 1.147252 -0.003144 0.070922 -0.312517 0.190700 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.112110 -0.169443 0.031958 -0.327706 0.186556 -0.158090 0.067596 -0.103717 -0.424287 -0.173252 0.118412 -0.381119 -0.045186 0.341113 -0.102915 0.188108 0.380773 0.138979 -0.110422 -0.108159 0.206083 -0.162970 0.286025 0.362034 -0.218925 0.046730 -0.198037 0.174160 0.062216 0.140254 0.079130 -0.213855 0.070833 -0.084752 -0.023574 -0.193212 -0.002289 0.275769 0.134866 -0.437274 0.137753 0.128216 0.284420 -0.033607 -0.001934 0.112218 0.141529 0.171815 -0.062562 0.245555 0.268895 0.071311 0.042837 0.073210 0.092869 0.000808 0.108121 -0.262055 -0.143910 -0.066817 -0.053060 -0.109818 0.054879 0.199233 0.301161 0.001509 -0.049966 0.024699 0.064221 0.113237 0.256817 0.034632 -0.100920 -0.139550 0.054347 -0.166553 0.032835 -0.515991 0.012756 -0.780152 -0.202867 0.113650 0.478909 0.296971 -0.056634 0.059071 0.270319 -0.053519 -0.133741 0.204321 0.258150 -0.062147 -0.130053 -0.008479 -0.239253 0.120845 -0.051379 -0.050925 0.037375 0.319466 -0.225699 -0.007930 0.157301 -0.030847 -0.093627 -0.041748 0.085587 0.188082 -0.436828 -0.066849 0.067160 0.352398 0.170746 -0.294318 0.073130 -0.258615 0.080740 -0.011629 -0.194049 -0.003017 0.038294 -0.098492 -0.172549 0.142993 -0.491712 0.104477 0.009194 0.113379 -0.025335 0.024153 0.019110 0.254046 -0.156773 -0.305569 0.058522 0.013368 0.066883 0.126987 -0.182772 -0.190342 0.069138 -0.254550 0.152586 -0.100560 -0.180808 -0.203337 -0.095294 0.088279 -0.050656 0.324722 -0.011630 0.376005 0.277796 -0.116161 0.028232 -0.031199 0.105854 0.148502 0.199179 -0.076573 0.155774 -0.296359 0.180052 0.247146 0.184118 -0.104782 -0.131864 0.075725 0.013424 0.150374 0.060228 -0.023412 -0.025391 -0.169904 -0.068375 0.070186 0.402383 0.161324 0.113164 0.089078 0.189319 -0.110327 -0.147092 -0.088497 -0.150959 0.083624 -0.006549 0.041117 0.155045 0.376550 -0.680038 0.272231 0.015337 0.163422 0.062613 0.058633 -0.247581 -0.625703 -0.194868 0.068336 0.392995 -0.133179 0.168009 0.192030 -0.234702 -0.038341 0.001749 -0.022501 -0.202871 0.113857 0.056044 -0.136478 0.000000 0.028128 -0.124913 0.083783 -0.084701 0.149307 0.297731 -0.416652 0.152527 -0.057737 -0.067903 0.000999 0.024026 0.250359 -0.161770 -0.117729 0.074344 -0.107163 -0.232342 -0.165362 0.077226 0.145105 -0.220082 -0.017118 -0.038797 -0.062681 0.273873 -0.149154 0.196817 0.084495 -0.187048 0.051571 0.073191 -0.014937 -0.099330 0.059679 -0.087490 -0.279833 -0.073919 0.283289 -0.103763 0.145650 0.180642 0.118711 -0.249772 0.215564 0.304514 0.002027 -0.075486 0.216686 -0.176971 -0.140960 0.286940 0.267957 -0.336436 0.058278 -0.253945 0.022190 -0.043837 -0.074064 0.286494 0.145784 0.133488 -0.090896 0.012776 -0.064840 0.202220 0.108970 -0.075264 0.053608 0.466291 0.165245 0.059521 0.106505 -0.217131 -0.008666 -0.267121 -0.187231 -0.018445 0.164326 -0.287807 0.043818 -0.188420 0.320584 0.032797 0.100562 -0.118289 0.209595 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::push_back(int const&) = -1.488296 2.209396 2.806934 -3.241036 4.528690 5.197904 1.367617 -1.631541 -2.502893 -0.856619 -0.595220 -4.371124 -3.398611 5.325328 -1.862577 2.081085 6.818100 1.019087 -1.381727 0.429257 3.260996 0.042155 6.096627 4.869866 -4.187095 -0.061227 2.059236 1.371922 -1.388933 5.390002 -3.851879 -5.731530 1.918825 -1.676357 0.573276 -2.285403 0.006429 -1.398535 1.245163 -6.406137 0.621556 1.183278 -1.744517 -1.489393 -0.770155 -0.820729 6.753774 3.598662 -0.535907 -0.846302 1.867698 1.773730 -0.629635 1.230631 2.554941 1.912427 2.943737 0.875732 -2.697065 -1.449352 -1.667277 -1.309277 -0.899919 4.499905 4.844045 1.236053 -0.027620 0.866429 -1.322716 0.428888 -0.243806 1.020909 1.694256 2.923762 1.718573 -2.328511 0.110829 -5.123368 -1.359456 -5.501746 -2.960110 -2.592317 0.143201 0.848180 2.953812 -1.938777 5.121744 -0.839873 1.128880 1.372223 7.754749 -5.365171 -1.953082 -3.920720 -2.548949 0.408108 -2.254686 0.112584 0.657615 -2.570354 -4.215681 -4.535453 1.452743 1.962247 -1.459290 -1.027559 0.205625 4.271033 -3.277130 -2.703136 -3.693684 0.027566 -1.418102 -7.399707 -2.467038 -0.939105 0.933820 1.095935 -2.077304 -6.315252 2.069070 4.710089 -2.125734 -3.572406 0.080720 4.990586 2.492674 0.205521 0.846472 -0.744476 2.029024 5.759458 3.989449 -1.908070 0.077886 -0.711243 -2.415777 -0.482798 -2.464867 -0.860678 -0.841985 -3.852930 -0.048823 4.986379 -2.988071 1.148457 0.275146 -1.011695 2.915617 14.086500 -2.489548 3.444175 0.316198 -6.725106 3.624117 -0.853216 -2.376408 -1.042663 2.428543 3.243279 -6.957620 -3.643239 3.791635 5.012904 3.357909 -4.423426 0.396644 -2.223115 -0.299131 -1.366302 0.623584 1.668114 -0.441749 -3.525887 -1.642145 3.095851 9.402398 -3.590319 -7.305701 3.008475 0.754893 0.457112 -3.147749 -1.663725 -2.500464 0.468385 1.563809 -1.234229 3.103738 6.177850 -8.593147 4.566907 -0.995941 -4.017285 5.641087 -0.228247 -2.150943 -0.764659 0.722665 5.785416 4.660585 1.436650 -0.440784 -1.336113 -4.059974 -0.657838 0.457899 2.642337 -1.591348 2.205637 0.991014 -5.625207 -4.018399 -2.734092 -0.677396 -3.188118 -2.541244 1.817763 0.225569 -9.091257 7.118601 1.667735 -0.316306 1.153490 -1.355314 2.479629 -4.394727 -6.687356 2.534790 -1.070022 -0.695729 0.036705 -0.094805 2.803695 2.035534 2.102171 -3.536174 -6.700076 2.785275 0.874931 4.363958 1.746031 2.793885 3.881286 2.031870 -2.038433 -3.591762 -3.650272 2.958132 0.132035 -3.794366 -2.210800 -1.845160 4.928961 4.861932 -0.657164 -1.525100 -4.139291 3.869565 -4.136594 0.217165 3.860022 1.107575 -4.296488 -1.670940 4.420330 -2.629938 -3.060097 -2.105347 -0.812170 -2.968936 -4.820964 -0.152130 -2.595932 0.727701 2.628217 -0.843020 -2.177772 0.803908 0.729888 0.101533 0.344635 4.236406 3.794279 -3.514886 1.275118 -4.126857 2.987688 -6.648024 -5.692928 2.588493 -1.762169 -2.511378 -0.509155 0.970113 2.743871 -1.422226 0.954872 -0.056791 -1.618424 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = -1.637311 1.853872 3.370110 -4.172582 4.928282 4.821086 1.430845 -1.647188 -3.433408 -1.240414 -0.254175 -5.596553 -3.919332 5.868337 -2.249922 1.757514 7.579460 1.200492 -1.839022 -0.010990 3.306699 0.445046 6.827864 5.699086 -4.865241 0.023922 1.391994 2.201636 -0.737646 5.470162 -3.611666 -5.788553 1.857562 -0.985527 0.759465 -2.388029 -0.005651 -1.266288 0.894437 -7.201013 0.888799 1.681894 -1.269972 -1.370569 -0.485672 0.399392 7.191269 4.059443 -0.721625 -0.698840 2.670772 1.946599 -0.293293 1.314375 2.535585 1.150746 3.934075 0.570611 -2.881425 -1.645060 -1.710843 -1.630223 -1.149395 5.049942 5.613171 1.350654 -0.344419 0.393230 -0.595451 0.795269 0.430746 1.193333 1.951524 3.027383 1.899661 -1.717145 0.645891 -5.838499 -1.047955 -6.990104 -3.305396 -2.434896 1.706918 1.347062 2.119809 -2.324579 5.741993 -0.656018 0.851593 1.715145 8.254966 -5.037880 -2.237546 -3.923681 -2.977399 0.941402 -2.425215 0.272601 0.880867 -1.407075 -4.572904 -3.892008 1.309735 1.325924 -1.813309 -0.114594 0.284229 4.612413 -3.888673 -1.932250 -3.695715 0.942064 -0.328717 -8.185849 -2.959530 -1.611796 1.128715 0.861644 -2.412883 -5.497417 2.068059 4.012620 -2.619031 -2.437961 -1.684739 5.536878 2.582318 0.457048 0.635631 -0.400491 2.357969 5.590466 3.218888 -2.625172 0.076373 -0.690346 -2.311913 -0.232182 -3.049105 -0.847049 -0.184128 -4.036006 0.463213 4.533119 -3.362189 0.590084 -0.644892 -0.775616 2.838708 14.920926 -2.511564 4.182205 0.946283 -6.655466 3.725338 -0.529561 -2.082324 -0.684580 2.518218 3.284475 -6.340246 -4.205129 4.187636 5.634256 3.758732 -5.000766 1.143078 -1.734181 -0.336366 -1.488813 0.928341 1.728216 -0.573348 -3.595959 -1.815150 3.513770 9.741874 -3.019628 -8.230776 2.897818 1.069454 0.602693 -2.775414 -1.630425 -1.766229 0.647804 1.781930 -0.872278 3.622158 6.986811 -10.258882 5.138761 -0.011853 -3.629953 6.315721 -0.384524 -2.635959 -1.491356 0.462397 5.836363 5.301143 1.475737 -1.007361 -0.952716 -4.600828 -0.780372 0.775161 2.631093 -1.906701 2.324457 1.340955 -5.264036 -4.013902 -3.671278 -0.831531 -2.253327 -3.200052 2.400017 0.073562 -10.385944 7.437914 1.476715 -0.639299 0.413772 -1.962310 2.519851 -4.912911 -6.748416 2.290283 -1.572256 -1.952303 -0.884969 0.091891 2.888068 1.636834 2.857403 -4.096903 -6.800020 3.783749 0.172576 4.779676 2.101306 2.486832 3.929242 2.855094 -1.816064 -3.750674 -3.545051 3.466864 -0.112018 -4.092312 -0.926337 -1.973352 4.875972 5.296276 -0.922424 -1.773887 -4.067000 4.301827 -3.975576 -0.568494 4.032166 0.448130 -4.436590 -0.424066 4.711510 -3.282929 -2.890931 -2.894854 -1.540031 -3.112152 -5.114490 0.568619 -2.326602 1.085701 2.730351 -0.828447 -2.598879 1.314411 0.616607 -0.446301 0.653786 5.291707 4.825259 -3.383124 1.994291 -4.900615 3.578873 -7.312546 -6.132553 2.764613 -2.444013 -2.996556 -0.484725 0.537104 3.360101 -1.238358 0.799924 -0.779181 -0.494297 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::size() const = -0.389187 0.478416 0.476187 -1.346852 1.442644 1.442268 0.392639 -0.832331 -0.953838 -0.035071 0.195885 -2.039872 -0.765643 1.182347 -0.694582 0.751905 1.850018 -0.100356 -0.689597 0.023328 0.636284 1.033674 2.015987 1.598727 -1.221540 0.103309 -0.035486 0.351473 -0.373156 0.878272 -1.034814 -1.556375 0.421719 -0.270732 -0.220379 -0.028059 -0.148506 -0.575312 0.906443 -1.603693 0.316695 0.342675 -0.067023 -0.407649 -0.159470 -0.188807 1.980865 1.072141 0.067279 -0.295927 0.921885 0.745777 -0.001421 0.313823 0.574280 0.165245 1.239472 -0.249876 -0.555406 -0.926244 -0.364464 0.472545 -0.384809 1.436055 1.273720 0.546380 -0.366347 0.220669 0.289470 0.080522 0.175795 0.520949 0.202125 1.118973 0.218917 -0.225121 0.542250 -1.002958 -0.186349 -0.920279 -0.969282 -0.256797 0.278606 0.613600 0.792408 -0.382394 1.611618 -0.280376 0.118925 0.297808 1.901216 -1.389790 -0.542852 -0.645162 -0.886249 0.037235 -0.404616 0.355662 -0.161458 0.048471 -1.311552 -0.659009 0.153734 0.377784 -0.524477 0.043283 0.471301 0.497233 -0.646551 -0.376810 -0.476212 0.716873 0.053221 -2.210860 -1.164349 -0.431917 0.030941 -0.099283 -0.774705 -1.650647 0.388699 0.689929 -0.905562 -0.448555 -0.783184 1.005027 1.026922 0.359981 0.216825 -0.121940 0.911070 1.933756 0.106542 -0.897974 0.103456 -0.466801 -0.225096 0.144872 -0.455206 -0.162683 -0.532311 -1.080502 0.718767 1.391977 -0.821404 0.213261 -0.630957 -0.039533 0.409409 3.720589 -0.765649 1.485858 0.542336 -1.687855 0.577503 -0.641023 -0.547651 -0.406623 0.333835 0.866110 -1.284489 -1.159790 1.405427 1.512035 0.931380 -1.099915 0.963538 0.186728 -0.106146 -0.458890 0.244429 0.359832 0.105866 -1.012686 -0.501133 1.236773 2.801790 -0.336260 -1.493612 0.897312 0.466407 0.530650 0.018622 -0.581803 -0.604449 0.266437 0.943496 0.158539 1.029659 1.825272 -2.275595 1.111616 0.228725 -0.795003 1.727448 0.119140 -1.064893 0.403617 -0.050393 1.404118 1.146238 -0.005507 -0.159081 -0.273250 -1.026824 -0.246616 0.280506 0.384692 -0.649800 0.591116 0.656332 -1.480716 -0.758053 -0.902397 -0.197274 -0.299720 -0.986705 0.783315 -0.134251 -2.432050 1.947327 0.719998 -0.294453 -0.116674 -1.079580 0.765915 -1.094543 -1.288024 0.645484 -0.647551 -0.116844 0.204470 0.098485 0.474339 0.555362 1.548636 -1.501116 -1.355779 1.087325 0.344866 1.454408 0.622893 0.498582 0.249394 0.029963 -0.196935 -0.766867 -1.137214 0.833939 0.426976 -1.372166 0.382355 -0.699816 1.216895 1.078725 -0.544015 -0.740627 -0.930924 0.687971 -0.849116 0.160915 0.788844 -0.024262 -1.667366 -0.287159 1.050183 -0.552447 -0.335367 -0.792596 -0.391905 -1.246050 -1.351774 0.260103 -0.156889 0.386134 0.691252 -0.395046 -0.489609 0.295373 0.033425 -0.108937 0.511914 1.277466 0.584042 -0.144115 0.429969 -1.501886 0.883511 -1.805206 -1.860049 1.145674 -1.061442 -1.231151 -0.427587 -0.150853 1.218390 -0.414508 0.267374 -0.365854 0.326753 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::max_size() const = -0.259213 0.088588 0.536903 -0.656534 0.553188 0.014424 0.177284 -0.171670 -0.544391 -0.437094 0.005716 -0.587248 -0.552758 0.772236 -0.362562 0.148416 0.947700 0.235316 -0.190841 -0.359704 0.606270 -0.391341 0.928095 0.779841 -0.857746 -0.023515 0.276152 0.664607 0.415877 0.560691 -0.127479 -0.339648 0.220207 -0.103546 0.332483 -0.585427 0.194842 0.090826 -0.136221 -1.055124 0.094897 -0.011928 0.059960 -0.031306 -0.080088 0.741767 0.718734 0.647059 -0.379296 0.123958 0.699655 0.237305 -0.015698 0.236214 0.025869 -0.121740 0.548988 -0.060382 -0.324427 -0.111957 -0.094563 -0.729054 0.102344 0.731930 0.964741 0.005086 0.083383 0.208951 0.023166 0.251469 0.256298 0.161404 0.151958 0.151548 0.412244 -0.642297 0.119854 -1.454017 -0.143733 -1.963120 -0.442577 -0.446301 0.525433 -0.006655 0.059487 0.088617 0.841202 0.236278 0.068366 0.502040 0.928762 -0.480458 -0.268771 -0.518551 -0.462150 0.359882 -0.463879 0.018962 0.241986 0.344820 -0.492590 -0.361859 0.257562 -0.017820 -0.295644 -0.088765 -0.145492 0.645184 -0.907718 -0.156897 -0.527290 0.148146 0.100544 -1.093672 0.120306 -0.499049 0.803165 -0.066646 -0.006716 -0.275788 0.090724 0.435764 -0.252794 -0.014337 -0.743127 0.677722 0.270155 0.029514 0.060304 0.006742 0.119788 0.489858 0.483034 -0.447779 -0.282462 0.089303 -0.459424 -0.014865 -0.651900 -0.109323 0.647632 -0.599692 0.146972 0.281615 -0.387322 -0.396396 0.344664 -0.233775 0.479840 1.584591 -0.057959 0.492364 0.281164 -0.675927 0.264021 -0.014758 -0.100258 0.345169 0.431684 0.173190 -0.484239 -0.672728 0.345955 0.680425 0.496591 -0.693269 -0.244363 -0.200049 -0.035541 -0.034057 -0.008622 0.275841 -0.341879 -0.381905 -0.220413 0.298616 0.952613 -0.130419 -0.561700 0.296175 0.237273 -0.352329 -0.674901 -0.207747 -0.043469 0.062084 0.023712 -0.047862 0.424538 0.937094 -1.803808 0.681359 0.078261 -0.057499 0.445632 -0.157867 -0.304425 -1.065722 0.122012 0.623671 0.698302 -0.042456 0.019041 0.152392 -0.698822 -0.008236 0.056788 0.344228 -0.258784 0.264918 0.193483 -0.445738 -0.576901 -0.275881 -0.085756 0.030876 -0.127427 0.354735 0.025469 -1.589597 0.842330 -0.367849 -0.209100 0.062147 -0.146756 0.434050 -0.751624 -0.759341 0.262907 -0.131567 -0.482105 -0.657141 0.142680 0.525071 -0.242246 0.077635 -0.357783 -0.737080 0.437362 -0.401668 0.309009 0.276659 0.273800 0.763146 0.185202 -0.183588 -0.684213 0.045242 0.118034 -0.309548 -0.376129 0.212637 -0.092545 0.518615 0.843821 -0.081261 -0.086626 0.171769 0.796014 -0.553686 -0.553060 0.517542 0.245151 -0.391108 0.567248 0.577418 -0.718202 -0.446881 -0.559411 -0.206222 -0.025878 -0.607311 0.376495 -0.282770 0.193513 0.350627 0.105909 -0.360763 0.487070 0.127923 -0.008727 -0.083583 0.982992 1.250875 -0.473903 0.174269 -0.619166 0.309363 -1.022347 -0.675877 0.142603 -0.016632 -0.138520 0.206719 -0.058998 0.597782 0.005966 0.039726 -0.140068 -0.009580 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.531006 0.764457 1.172356 -4.640936 4.621065 5.505256 1.284710 -2.829308 -3.628428 0.417708 0.769429 -6.225003 -1.863111 4.692148 -2.105362 3.140234 6.288677 -0.034767 -2.515682 0.581717 3.047317 3.233145 6.237127 5.086536 -3.854653 0.068352 -0.322329 0.726107 -1.255598 3.181488 -3.226144 -5.379427 1.489448 -1.711937 -1.081256 -0.709331 -0.328138 -0.943758 3.686016 -5.466540 1.297294 1.482513 -0.503152 -1.647506 -0.655803 -1.632580 5.882142 3.523135 0.026416 -0.816792 2.783179 2.403297 -0.511660 0.941855 2.136096 1.256070 3.061652 -0.195952 -1.855002 -3.065323 -1.260083 2.115249 -0.838118 4.545900 4.243769 1.710176 -0.977341 1.028592 0.874952 0.215554 0.840799 1.316345 0.582790 2.861826 0.847626 -1.074933 0.876111 -3.596977 -0.461410 -2.683081 -2.801433 -0.259615 0.943532 1.896368 2.792035 -2.116685 5.015189 -1.534086 -0.161107 1.651625 6.277671 -4.658605 -1.788272 -2.739882 -3.338717 0.031126 -1.342217 0.799359 -0.281161 -0.648482 -4.381463 -2.904635 0.183462 1.794241 -1.556683 -0.709399 1.692162 2.330189 -1.950874 -1.959118 -0.703612 3.086168 -0.475135 -7.073139 -4.206211 -1.955314 -0.611838 -0.271809 -2.743651 -5.777416 1.312080 2.579209 -3.018960 -2.209335 -1.409278 3.423306 3.440943 1.287636 0.381392 -0.713524 2.554206 6.635345 0.284434 -3.146534 0.811431 -1.407411 -0.454775 0.659606 -1.906265 -0.873190 -1.655749 -3.594766 1.429151 4.719967 -2.723160 1.199629 -1.203675 0.324906 1.178195 13.652124 -2.320397 5.029430 1.896458 -5.664058 2.290404 -1.587466 -1.499928 -1.104420 1.287643 2.345628 -5.429121 -3.981261 4.572688 4.875496 3.246151 -3.644774 2.450712 0.111373 -0.602698 -1.380101 0.618408 1.006662 0.205059 -3.577672 -1.654469 3.937146 9.619851 -1.631928 -4.820271 3.090550 2.205468 1.142114 -0.295587 -2.065386 -2.866125 0.935052 3.091132 0.132487 3.809260 6.151616 -7.298731 3.854814 0.288894 -2.644968 5.277070 0.676294 -3.709512 1.118204 -0.641103 4.454913 4.291034 0.007163 -0.079069 -0.479233 -3.502135 -0.646660 0.884680 0.938198 -1.984700 1.843467 1.830625 -4.772302 -2.320269 -2.039813 -1.321101 -1.729480 -3.125206 2.420716 -0.160698 -7.243956 6.166013 2.620781 -0.482506 0.215090 -2.976567 2.979510 -3.556363 -4.549856 2.505236 -1.339198 0.033360 0.871240 0.427416 2.087772 2.083041 4.825959 -4.829830 -5.423369 3.434890 0.994850 5.067698 1.819113 1.076078 0.728717 0.047450 -0.660607 -2.984158 -4.566187 2.767064 1.878478 -4.665564 0.189090 -2.185328 4.424205 3.023969 -1.332981 -3.129468 -3.503244 2.694851 -2.826593 1.244731 2.817958 -0.060407 -5.697081 -1.741901 3.804312 -2.194524 -0.808835 -2.251513 -0.756513 -4.096060 -4.227017 1.035582 0.071497 1.632952 1.392580 -0.970595 -1.242209 0.739760 0.743078 -0.388842 1.796213 4.432978 1.346125 -0.624079 0.903670 -4.827783 2.922086 -5.786962 -6.105671 3.563184 -3.366224 -4.372181 -1.102837 -0.290319 4.205218 -1.182136 1.508181 -0.751927 0.711654 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.333429 0.140646 -1.099146 -3.526650 3.642990 2.970979 1.236075 -2.659759 -2.487933 0.135771 1.294706 -5.714330 -1.314405 2.327287 -1.731913 3.453664 4.991287 -0.720270 -1.945215 -0.413526 2.270123 3.301068 6.048452 4.474354 -3.187679 -0.054931 -0.287894 0.610334 -0.442285 -0.830891 -1.946885 -2.926876 1.999473 -2.997334 -1.496118 0.462215 0.012176 -1.364154 4.314846 -3.584019 0.988454 -0.855293 0.281740 -0.961775 -1.370279 0.254903 4.487726 3.205922 -0.132045 -0.317691 3.386090 1.329080 -0.165587 1.068704 0.203864 0.290309 1.386645 -0.370024 -1.212021 -3.587494 -0.650977 1.785946 -0.420677 3.661280 3.283914 1.251479 -1.192235 2.666829 1.913190 0.121994 1.229118 1.541951 0.201827 2.103081 1.123614 -2.636858 0.462527 -3.991120 -1.370423 -3.833372 -2.639901 -0.240053 0.656986 -0.541187 3.003289 0.578275 4.289032 -0.600905 0.083176 1.606780 4.158973 -4.369273 -1.793388 -1.661829 -1.712941 0.101867 -1.323694 1.549871 1.081091 0.853336 -3.707115 -1.398184 0.296597 1.313600 -1.381788 -2.250285 1.925856 0.166656 -1.073457 -1.738837 -1.167888 2.426504 0.040938 -6.128610 -2.374010 -0.929679 1.335602 -0.522992 -1.827505 -4.872193 0.229933 1.434672 -2.266712 -1.740813 -0.321727 1.503331 3.496485 1.812261 1.234527 0.363382 2.539519 7.152788 0.564753 -2.635549 -0.220618 -1.344834 -0.777036 1.132783 -1.179831 -1.176079 -0.194877 -3.715216 3.457656 4.107770 -2.178567 -0.211212 1.271975 0.481918 0.759140 8.910828 -1.222710 4.555981 2.697151 -3.966903 0.481748 -3.528102 -0.705276 -0.603626 0.833466 1.458294 -3.222885 -3.410360 3.736294 3.792179 2.532316 -3.804570 2.008169 1.284551 0.674193 -1.248128 -0.563333 1.512174 1.175308 -2.689986 -0.793683 4.353639 7.584611 -1.168886 -0.893594 2.718547 2.171366 1.322199 -1.086913 -2.434549 -2.985439 0.584714 3.388390 1.780970 2.236317 4.983207 -4.519105 2.041565 0.328988 -0.525943 3.572069 1.891689 -3.886335 0.208601 -0.294727 3.059806 2.491689 -0.921238 0.440841 -0.059604 -2.406211 -0.513883 1.058493 0.397100 -1.247309 1.330048 1.456497 -3.073757 -1.493636 -0.436037 -0.555229 -0.293693 -0.944924 2.628250 -0.292732 -5.739595 4.630331 1.163565 -1.925660 -0.000941 -3.605223 3.528881 -2.959245 -2.638071 2.595745 -1.901023 0.493639 0.401466 1.092378 1.174244 1.577102 4.461398 -3.881120 -3.428235 3.237410 1.082620 3.913286 1.640190 0.646480 0.546083 -3.530722 -0.588414 -2.741575 -2.820099 0.244990 1.521513 -4.505710 0.484484 -1.340866 3.552531 2.640842 -1.778122 -2.314816 -0.851338 1.224187 -4.231924 0.354659 2.067530 2.604345 -5.073344 0.042830 2.743423 -2.214246 -0.082293 -1.817156 -0.618669 -3.182359 -3.900801 1.048818 -0.016805 1.590891 1.423241 -0.786404 0.408837 1.161264 0.312717 0.746548 1.116083 3.333692 2.512456 0.064343 -0.988534 -4.568370 1.984151 -4.878170 -5.909495 4.084523 -1.920400 -3.776380 -0.942461 0.157581 4.170008 -1.159633 -0.423761 -1.944803 1.170871 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.527554 -0.012312 0.988322 -1.454098 1.531797 0.439207 0.328911 -0.330016 -1.133553 -0.494937 -0.227878 -0.647174 -0.738070 1.693051 -0.584656 1.022522 2.042162 0.422649 -0.399037 -0.680417 1.888787 -1.221103 1.844802 1.089917 -1.816855 -0.128843 0.958451 1.421080 0.863014 1.423431 -0.906163 -0.383413 0.411341 -1.206645 0.615769 -1.545847 0.653234 0.344006 0.198590 -2.126867 0.212527 -0.498252 -0.363022 -0.019260 -0.500352 1.311093 1.280853 1.390024 -1.058855 0.292919 1.539591 0.131243 -0.297718 0.570000 -0.114993 0.637575 1.044604 0.694344 -0.789840 -0.290125 -0.163862 -1.530846 0.742947 1.253270 1.923366 -0.300548 0.254564 1.298369 0.093942 0.259653 0.630334 0.185684 0.037445 -0.142075 1.152830 -2.321318 -0.131101 -3.320091 -0.504749 -3.947682 -0.764531 -1.198806 0.347817 -1.000406 0.692140 0.326034 1.783667 0.086909 0.188978 0.987754 1.751524 -1.566376 -0.570637 -1.822480 -0.891462 0.468034 -1.050463 -0.595137 1.088966 0.174557 -0.843772 -1.222543 0.765375 0.354795 -0.514430 -0.968552 -0.512822 1.661719 -1.750691 -1.238450 -1.316132 0.380261 -0.609747 -2.171549 0.418538 -0.822570 1.893799 -0.202439 0.447675 -1.348559 0.154399 1.760735 -0.584069 -0.723687 -0.133368 1.597973 0.900451 -0.058598 0.306210 -0.145663 0.086492 1.462614 1.972457 -0.851849 -0.968190 0.519424 -1.206068 -0.191601 -1.517137 -0.386132 1.330547 -1.604932 -0.023854 1.136239 -0.700316 -0.141414 2.094705 -0.366965 1.239961 4.030559 -0.034125 0.715613 0.202978 -1.580781 0.914917 0.112075 -0.217375 0.823675 0.779599 0.154981 -2.289655 -1.457299 0.624919 1.119174 1.080429 -2.043316 -1.232515 -1.049791 -0.010195 0.293386 -0.642374 0.973980 -0.764907 -0.727912 -0.378249 0.210740 2.714716 -0.941182 -1.438234 1.070863 0.326612 -1.498757 -2.458953 -0.806410 -0.892929 -0.180011 -0.044188 -0.235538 0.870112 2.002694 -3.629686 1.362289 -0.412226 -0.598355 1.065233 -0.323879 -0.221802 -2.329220 -0.068909 1.307863 1.647272 -0.117459 0.116348 0.307085 -1.325069 0.311564 0.099883 0.740040 -0.157011 0.343321 0.232198 -1.100909 -1.113641 0.007505 -0.354039 -0.202114 0.193873 0.541874 -0.381532 -3.434535 1.677344 -0.916104 -0.264771 1.078309 0.108637 1.285577 -1.438644 -1.716375 1.073726 0.441690 -0.254415 -1.324001 0.502917 1.434971 -0.230889 -0.103506 -0.756254 -2.523940 0.341642 -0.901440 0.467327 0.490704 0.543886 1.777971 -0.054348 -0.562757 -1.946001 -0.011489 -0.296923 -0.298964 -0.633998 -0.728506 0.051679 1.516323 1.597657 0.109909 0.249590 -0.027276 1.772610 -1.899329 -0.865228 1.295344 1.183155 -1.144492 0.697992 1.448564 -1.583395 -1.163851 -0.767885 -0.191219 0.004251 -1.161945 0.587610 -0.763088 0.350992 0.707083 0.402957 -0.493933 0.942852 0.370816 0.191615 -0.752356 2.247021 3.060327 -1.326948 -0.217884 -1.104829 0.754600 -2.121600 -1.421388 0.286132 0.303859 -0.347501 0.783493 0.689020 1.339798 -0.181484 0.093632 0.089460 -0.983139 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -4.867224 4.259273 6.710716 -13.731570 14.737133 17.906240 3.782484 -8.316869 -10.534994 0.198758 1.177343 -17.485229 -7.786157 16.091799 -6.986564 7.422407 19.932671 0.654950 -7.139076 1.602280 10.822804 7.195367 19.140470 15.830332 -13.351590 -0.069271 1.409367 3.525052 -2.897580 12.834069 -10.300376 -17.057484 4.539609 -4.285598 -1.670902 -3.802350 -0.416912 -3.352470 8.296298 -18.098882 3.240353 4.003745 -4.260809 -4.658972 -1.660220 -3.976371 19.647412 10.861132 -1.113903 -3.028518 8.414445 7.665976 -2.246229 2.961938 6.996882 3.596342 10.227610 1.130025 -6.109331 -7.957952 -4.391482 3.596773 -2.655910 14.855547 14.589575 5.516246 -1.633229 2.450975 0.359628 1.006980 1.359271 3.827593 3.444405 9.800321 3.808376 -3.749678 1.876498 -13.836424 -1.797423 -10.476198 -8.541937 -3.196048 2.288461 5.256614 7.843004 -6.926242 15.825153 -3.341939 0.198706 6.270734 21.911079 -14.459901 -5.304449 -10.061852 -11.465343 0.519725 -4.998181 2.801269 -1.719519 -3.236966 -13.517775 -11.609092 0.867635 5.372809 -4.829895 -1.938706 3.242921 10.064771 -7.668248 -5.574928 -3.806363 7.147952 -1.919392 -22.668463 -13.124981 -6.613107 0.660294 -0.051550 -7.561508 -17.576982 4.486709 10.396320 -8.685069 -7.624026 -3.414547 12.302245 10.395381 2.800472 0.403087 -2.763548 7.476640 18.521002 3.596491 -8.701199 2.018689 -4.444042 -2.776757 0.790579 -7.189803 -1.513199 -3.699360 -10.478869 2.487852 14.830675 -8.388133 2.676442 -2.942195 -1.127637 5.374883 44.549369 -7.282577 14.191043 4.026120 -18.859294 8.145499 -3.105113 -5.485818 -2.449516 5.189036 8.175938 -19.069231 -12.586169 13.957846 15.303523 9.774605 -12.261170 5.977737 -1.753982 -2.737999 -4.941562 2.419524 3.290372 -1.486448 -10.452752 -5.594448 11.875708 29.570241 -6.631143 -19.036511 9.651898 5.578141 2.887047 -2.625688 -5.785012 -6.641514 2.842925 8.973971 -1.288574 12.214674 19.570652 -25.828564 12.869899 0.571676 -9.329612 16.075393 0.748860 -10.033129 2.781717 -0.058910 15.607203 13.470063 2.155343 -1.681240 -2.218592 -12.025136 -1.797901 2.798878 4.709341 -6.370931 6.302466 5.462437 -15.918496 -9.807538 -7.580924 -4.246806 -6.153244 -10.393295 6.652266 -1.889012 -25.360672 20.685083 7.156262 -0.506418 0.889302 -8.294953 8.815759 -11.883022 -16.841243 7.637558 -3.836381 -1.366953 1.113005 0.944785 7.603526 6.590271 13.148620 -14.903919 -19.006309 10.066496 2.212045 14.937330 5.359675 5.535150 5.706633 2.683715 -3.045943 -11.106733 -13.386162 11.118551 5.148736 -14.185283 -1.208828 -6.569840 13.964979 11.187064 -3.842278 -9.021360 -11.940202 10.198270 -9.164564 2.212482 9.546381 0.550580 -16.704898 -5.396239 12.248778 -6.916817 -4.983357 -7.238669 -2.855993 -11.904315 -14.030180 2.451710 -1.638673 4.448887 5.286765 -2.419376 -5.228203 2.866227 2.358302 -0.684125 4.781440 14.089512 7.220771 -5.185791 3.831425 -14.634104 9.858583 -19.274061 -19.085803 10.148479 -10.090324 -10.808110 -2.879554 -1.229273 11.944270 -3.479396 4.794660 -1.003478 0.555381 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy(int**, int**, int**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy_backward(int**, int**, int**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__miter_base(int**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.094004 0.019219 0.230993 -0.225112 0.187042 -0.030752 0.085428 -0.093290 -0.252681 -0.122523 -0.046565 -0.124925 -0.094709 0.319760 -0.118501 0.192414 0.502530 0.239633 -0.038493 -0.218610 0.268158 -0.426262 0.432342 0.459415 -0.369990 0.034875 0.228867 0.286762 0.191823 0.338604 -0.233154 -0.057474 0.126169 -0.274716 0.177918 -0.444607 0.047246 0.115670 0.056593 -0.621531 0.040546 -0.138967 0.153557 -0.010648 -0.043617 0.287061 0.307364 0.264572 -0.109584 0.190091 0.261261 0.026773 0.061662 0.103396 0.112779 0.246852 0.360646 0.052262 -0.134540 0.045806 -0.037519 -0.415352 0.163016 0.303221 0.438937 -0.028649 0.034712 0.101136 0.004142 0.036669 0.142589 0.078950 -0.083405 0.017798 0.154701 -0.644639 0.168900 -0.779599 -0.105484 -0.950734 -0.224235 -0.250069 0.136642 -0.170907 0.214451 0.210247 0.384848 0.010318 0.109316 0.033402 0.362031 -0.385720 -0.129788 -0.150762 -0.141072 0.128338 -0.193763 -0.075030 0.194914 0.030762 -0.204689 -0.301452 0.407911 0.130580 -0.161329 -0.082359 -0.053898 0.307065 -0.446607 -0.331187 -0.336288 -0.085632 -0.163594 -0.420870 0.321795 -0.258513 0.419796 0.049303 -0.045832 -0.368465 0.058379 0.349028 -0.068463 -0.174062 -0.222270 0.316947 0.094680 -0.049694 0.044056 -0.072181 -0.024412 0.357065 0.381243 -0.209965 -0.104629 0.171709 -0.365863 -0.061602 -0.342645 -0.174113 0.262581 -0.349164 -0.045952 0.137273 -0.218569 -0.002949 0.525284 -0.026281 0.226708 0.785391 -0.013372 0.185301 0.124011 -0.341305 0.195407 -0.011175 -0.000115 0.199684 0.292826 0.058845 -0.512820 -0.296735 0.006983 0.318142 0.226080 -0.344711 -0.409065 -0.239731 0.004376 0.171450 -0.025376 0.059458 -0.148025 -0.212432 -0.066191 -0.015831 0.594363 -0.164054 -0.114908 0.060596 -0.085086 -0.346777 -0.633221 -0.106649 -0.265682 0.040668 -0.227608 -0.040820 0.129107 0.389632 -0.852524 0.348853 -0.277628 -0.134836 0.304871 -0.049532 -0.079772 -0.629323 0.058994 0.217252 0.411446 -0.041817 0.072536 0.153074 -0.337350 -0.038135 -0.075236 0.205007 -0.183565 0.176354 0.134165 -0.342014 -0.203292 0.014296 0.068804 -0.196446 0.049255 0.153905 0.064642 -0.706442 0.303600 -0.134490 -0.129007 0.287046 0.057879 0.140413 -0.368228 -0.332601 0.155942 0.097753 0.026009 -0.261081 0.000426 0.304311 -0.182946 -0.141232 -0.150793 -0.364421 0.067760 -0.219567 0.110135 0.159668 0.045596 0.345872 0.056895 -0.109158 -0.327838 0.201510 -0.248805 -0.238879 -0.077018 -0.127425 -0.094124 0.304681 0.510783 0.091867 0.101830 0.155542 0.455077 -0.362521 -0.187118 0.244811 0.236619 -0.112639 0.160108 0.258484 -0.418829 -0.233077 -0.140303 -0.137935 0.129883 -0.190660 0.258740 -0.250108 0.106671 0.118972 0.045783 -0.097718 0.255335 0.046769 0.056021 -0.063588 0.450504 0.573211 -0.193256 0.004564 -0.211116 0.067630 -0.436274 -0.177557 -0.066334 0.242864 -0.179586 0.138090 0.104633 0.295406 0.036230 0.005971 0.008597 -0.171667 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_base(int**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.449509 0.049402 0.452496 -1.067446 0.848479 0.312131 0.329773 -0.414432 -0.844442 -0.422050 0.053123 -0.854037 -0.535591 1.178258 -0.485025 0.638435 1.771441 0.406164 -0.302685 -0.507652 1.107846 -0.576300 1.634502 1.517581 -1.327312 -0.066492 0.669219 0.823938 0.489292 0.544021 -0.415500 -0.577520 0.478439 -0.910414 0.295408 -0.996665 0.227189 0.090635 0.449951 -1.838321 0.201218 -0.434559 -0.017189 -0.177271 -0.324185 0.686269 1.227935 1.063550 -0.572757 0.241802 1.105928 0.308697 -0.141275 0.336485 0.126926 0.300999 0.532668 0.323180 -0.402368 -0.310333 -0.142747 -0.758045 0.358514 1.209945 1.471258 0.084124 0.050326 0.624413 0.199032 0.207563 0.385279 0.291629 0.044776 0.241493 0.682044 -1.811323 0.026478 -2.740729 -0.350241 -2.945146 -0.799594 -0.620813 0.514538 -0.581025 0.622514 0.369766 1.343522 0.093094 0.237375 0.812717 1.464004 -1.169213 -0.501246 -0.858174 -0.731156 0.475566 -0.666960 0.116567 0.611778 0.136299 -0.940415 -0.920609 0.633792 0.380025 -0.507075 -0.717932 0.066754 0.924325 -1.096134 -0.781695 -0.861566 0.253429 -0.241704 -1.850255 0.174951 -0.795116 1.359358 -0.001032 -0.258270 -1.199356 0.090985 0.976363 -0.416399 -0.567835 -0.313383 0.965278 0.696965 0.157187 0.213900 -0.091751 0.253843 1.502083 1.051345 -0.750665 -0.296137 0.165978 -0.911500 -0.051105 -1.054889 -0.416085 0.903737 -1.142997 0.284210 0.839870 -0.744804 -0.396792 1.525866 -0.192401 0.725036 3.395528 -0.099748 0.968788 0.615941 -1.266026 0.485587 -0.329005 -0.155077 0.476792 0.820525 0.298349 -1.622735 -1.088108 0.498189 1.200178 0.873103 -1.340754 -0.761326 -0.406893 -0.048526 0.031234 -0.153207 0.329915 -0.319379 -0.756205 -0.278686 0.768494 2.003746 -0.539174 -0.694426 0.459184 0.523878 -0.596722 -1.528347 -0.475438 -0.847111 0.169481 0.163006 0.005644 0.736669 1.553684 -2.778469 1.001743 -0.323146 -0.184038 0.805390 0.207375 -0.726928 -1.663606 0.250597 1.002345 1.215373 -0.151966 0.238022 0.305844 -1.099795 -0.101824 0.110868 0.511687 -0.484304 0.539689 0.274656 -0.966043 -0.822314 0.032055 -0.179017 -0.384291 0.009782 0.636631 -0.039601 -2.427578 1.386699 -0.324346 -0.445269 0.484085 -0.435112 0.957963 -1.309860 -1.315094 0.709451 0.025285 -0.108647 -0.661825 0.168295 0.958338 -0.120490 0.253867 -0.730909 -1.452805 0.606341 -0.418049 0.770690 0.516009 0.291887 1.208895 -0.443697 -0.331857 -1.289151 -0.142087 -0.085445 -0.165200 -0.921385 -0.450165 -0.269369 1.090013 1.428510 -0.150769 -0.242536 0.200741 1.238561 -1.436744 -0.490521 0.804502 0.953531 -0.884489 0.450943 0.955401 -1.294235 -0.571176 -0.675966 -0.226800 -0.079543 -1.070369 0.621101 -0.491084 0.456090 0.441204 0.096550 -0.162625 0.726730 0.289639 0.340303 0.007219 1.346920 1.935090 -0.720588 -0.248602 -1.115067 0.461164 -1.705549 -1.334013 0.393615 0.126743 -0.532272 0.242522 0.129733 1.125910 -0.068819 0.053732 -0.178538 -0.158020 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.116891 -0.861914 -0.104587 -2.815243 2.050643 0.888064 0.853362 -1.094547 -2.367907 -0.305383 0.640003 -2.394337 -0.371316 2.546771 -0.915183 2.485844 3.913357 0.661815 -0.981249 -0.695538 2.586977 -0.395155 3.632646 3.208075 -2.505978 -0.266382 0.455172 1.523490 0.450614 0.297131 -0.658365 -1.323497 1.024675 -2.836009 -0.287399 -1.737088 0.568118 0.695391 2.325300 -3.705250 0.805827 -0.766186 0.346681 -0.644737 -1.075407 0.256165 2.049212 2.477692 -1.100682 0.653926 2.579045 0.472243 -0.455404 0.787751 0.093081 0.883551 0.172216 0.491595 -0.954007 -1.333029 -0.202899 -0.449906 1.044936 2.385145 2.904349 0.252528 -0.159061 1.924969 1.014688 0.383183 1.419059 0.475848 -0.625476 -0.098495 1.344036 -3.907517 -0.318630 -5.582268 -0.683539 -5.188954 -1.792977 -0.405970 1.436098 -0.893964 1.754702 0.704058 2.744276 -0.386540 0.056437 2.113360 2.608570 -2.613720 -1.313155 -1.964730 -1.726960 0.947826 -1.222521 0.088707 1.568310 0.602606 -2.231938 -1.526777 1.015387 1.149123 -0.958773 -2.337295 0.847366 1.579183 -1.643100 -2.267339 -0.939898 1.961801 -0.605654 -3.956222 -0.153435 -1.687224 1.982818 -0.215195 -0.838501 -2.861736 0.002671 1.536612 -1.219667 -1.261149 -0.304499 1.571490 1.766932 0.827896 0.692447 -0.084088 0.579833 4.200460 1.365060 -2.036522 -0.370081 0.281391 -1.297038 0.470159 -2.083184 -1.360110 1.268425 -2.872679 1.106615 2.014635 -1.668278 -0.645015 3.122334 0.527050 1.087503 7.601438 0.021913 2.779439 2.027361 -2.496715 1.113210 -1.145701 0.078734 0.884122 1.429246 -0.050631 -3.374429 -2.534584 1.270607 2.491772 2.152168 -2.771710 -1.541473 -0.418787 0.079052 0.259440 -0.691334 0.843917 -0.141819 -1.845691 -0.436318 2.126720 4.738383 -0.877850 -0.682660 1.420680 1.994796 -1.277851 -3.063162 -1.483702 -2.946782 0.327185 0.914611 0.446450 1.691603 3.519188 -5.122721 1.918722 -0.478869 0.161532 1.675942 1.034161 -2.322149 -3.466347 -0.265121 1.709827 2.822137 -0.933453 0.925649 1.031135 -2.057784 -0.141609 0.469337 0.362247 -0.779212 0.973129 0.204674 -1.770900 -1.115839 0.743310 -1.005116 -0.684279 0.185194 1.627645 0.276555 -4.161280 2.579594 -0.339454 -1.167235 1.279248 -1.273086 2.780002 -2.553278 -2.399190 1.944246 0.156124 0.309508 -0.910812 0.747358 1.909256 0.100095 1.080101 -1.551200 -2.914226 1.468184 -0.590816 2.084070 1.106541 -0.206275 1.559921 -1.718841 -0.662548 -2.546263 -1.118791 -0.579675 0.226002 -2.458767 -1.125745 -0.585797 2.588870 2.295197 -0.168261 -1.295034 0.366784 2.448096 -3.041431 -0.486963 1.807639 1.531298 -2.540595 0.606332 2.312618 -3.017798 -0.362765 -1.336488 0.200245 -0.537675 -2.208626 1.518568 -0.083006 1.406904 0.276890 0.205832 0.329257 1.347010 0.982155 0.868513 0.210086 3.137059 2.946531 -0.668622 -1.172832 -2.648016 0.780398 -3.447680 -3.190530 1.300034 0.173600 -2.095651 0.576368 0.460726 2.975072 -0.324702 0.320573 -0.639671 -0.007026 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.171884 0.050852 0.341734 -0.393905 0.317832 0.078100 0.123261 -0.195829 -0.347576 -0.158248 -0.050141 -0.168938 -0.147673 0.499203 -0.218607 0.269230 0.764142 0.295944 -0.088650 -0.303474 0.489791 -0.524849 0.669199 0.669323 -0.581636 -0.004320 0.441817 0.406399 0.314245 0.438573 -0.355937 -0.115276 0.204254 -0.454548 0.227288 -0.623860 0.097837 0.095820 0.138491 -0.856437 0.064975 -0.323967 0.034488 -0.034839 -0.108680 0.405426 0.493706 0.414699 -0.216748 0.184873 0.441672 0.103551 -0.026209 0.146545 0.142900 0.335987 0.478542 0.230044 -0.150936 -0.005377 -0.072776 -0.495366 0.240901 0.503120 0.658381 -0.003478 0.080206 0.217743 0.022768 0.049250 0.173025 0.104188 -0.065267 0.090497 0.261726 -1.021463 0.157080 -1.275295 -0.185902 -1.367077 -0.298250 -0.370101 0.088795 -0.426243 0.337057 0.306068 0.563146 0.043168 0.153567 0.151650 0.596421 -0.592019 -0.190800 -0.301587 -0.275993 0.164728 -0.303223 -0.032325 0.280831 -0.016114 -0.329161 -0.517455 0.492872 0.230569 -0.222827 -0.227787 -0.058799 0.474202 -0.585136 -0.460047 -0.464277 -0.099946 -0.257764 -0.704027 0.321455 -0.415666 0.752107 0.023791 -0.072378 -0.617187 0.071202 0.608169 -0.122057 -0.324088 -0.095775 0.462107 0.239539 -0.023844 0.037332 -0.147655 0.002357 0.583609 0.634764 -0.306078 -0.151837 0.169874 -0.564533 -0.106141 -0.530296 -0.201820 0.437100 -0.491410 -0.020253 0.335946 -0.317145 -0.051187 0.950593 -0.089355 0.368931 1.432222 -0.045679 0.297661 0.168396 -0.567379 0.232604 -0.042446 -0.029247 0.273769 0.413396 0.116507 -0.906467 -0.456678 0.085536 0.476458 0.345931 -0.616702 -0.565659 -0.357100 -0.035974 0.168578 -0.090443 0.102359 -0.256508 -0.312201 -0.127340 0.098932 0.908025 -0.309831 -0.301195 0.128063 -0.038924 -0.462813 -0.899920 -0.185298 -0.376366 0.096651 -0.175534 -0.070629 0.268244 0.616641 -1.328159 0.480977 -0.373528 -0.212515 0.423591 0.002868 -0.160158 -0.813162 0.141500 0.394711 0.563648 -0.023640 0.089839 0.203932 -0.500038 -0.048899 -0.067109 0.319066 -0.246826 0.237134 0.232293 -0.533197 -0.371679 0.050872 0.065232 -0.293130 0.075305 0.231227 -0.078948 -1.157393 0.544650 -0.175405 -0.156286 0.392944 -0.013015 0.287094 -0.575853 -0.569038 0.287175 0.156347 0.096043 -0.357267 0.030873 0.487968 -0.170778 -0.054489 -0.302258 -0.669727 0.083118 -0.294844 0.219476 0.210516 0.145471 0.590455 -0.120099 -0.122018 -0.613904 0.203786 -0.217200 -0.193254 -0.245179 -0.288524 -0.109231 0.492492 0.719181 0.041027 0.098385 0.164519 0.640851 -0.656876 -0.227481 0.345716 0.541057 -0.274925 0.167872 0.378168 -0.599655 -0.368687 -0.186110 -0.221148 0.107103 -0.370987 0.328592 -0.334112 0.188278 0.185438 0.105295 -0.108133 0.353887 0.088327 0.160810 -0.044364 0.588696 0.985513 -0.353428 -0.090889 -0.369750 0.163415 -0.705164 -0.422098 0.020364 0.223973 -0.215445 0.182278 0.125045 0.473775 0.016962 0.035194 0.046417 -0.241725 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.479063 0.046100 0.457175 -1.170073 0.923984 0.448012 0.368742 -0.520663 -0.914311 -0.401128 0.105331 -1.007672 -0.554794 1.279645 -0.535344 0.744776 1.886788 0.393321 -0.379853 -0.503158 1.151633 -0.440791 1.776239 1.624535 -1.403673 -0.063286 0.622281 0.779145 0.502479 0.562396 -0.448814 -0.683388 0.562443 -0.930387 0.278421 -0.970719 0.213697 0.073241 0.572171 -1.932180 0.233555 -0.392056 0.021264 -0.215614 -0.324000 0.661723 1.327808 1.140465 -0.518377 0.226133 1.148742 0.371103 -0.138461 0.356193 0.190178 0.309848 0.599949 0.231439 -0.434952 -0.382986 -0.158944 -0.661598 0.312365 1.311107 1.559228 0.112320 0.030183 0.654110 0.261940 0.218655 0.414298 0.321642 0.058127 0.315533 0.650718 -1.856525 0.058270 -2.753273 -0.367167 -2.979852 -0.862747 -0.595287 0.533837 -0.521540 0.692481 0.265306 1.431590 0.094479 0.194915 0.770852 1.592818 -1.278246 -0.536876 -0.886549 -0.726652 0.459870 -0.704251 0.169246 0.625672 0.095834 -1.036304 -0.931743 0.638605 0.420101 -0.543773 -0.718802 0.125544 0.979639 -1.094834 -0.820003 -0.812269 0.341300 -0.263417 -2.000793 0.176763 -0.849561 1.282831 -0.016013 -0.310179 -1.313539 0.106913 1.013338 -0.481138 -0.630482 -0.419280 1.047475 0.802721 0.205483 0.203689 -0.055779 0.316523 1.670749 0.990162 -0.824634 -0.253247 0.112121 -0.884028 0.004416 -1.085142 -0.437908 0.878637 -1.209635 0.281262 0.942159 -0.790277 -0.321282 1.480968 -0.143441 0.724422 3.642210 -0.150549 1.094534 0.684153 -1.373632 0.515240 -0.385258 -0.169161 0.439595 0.829692 0.324320 -1.758415 -1.180297 0.596477 1.306620 0.932717 -1.410599 -0.678269 -0.400834 -0.086070 -0.048735 -0.139746 0.346189 -0.302952 -0.832100 -0.311846 0.857857 2.194808 -0.586448 -0.698668 0.502150 0.566919 -0.539742 -1.496625 -0.536788 -0.899744 0.208237 0.211791 0.057084 0.822671 1.669961 -2.843251 1.086874 -0.307569 -0.239644 0.941181 0.228161 -0.830158 -1.625737 0.229404 1.075422 1.276035 -0.195339 0.267973 0.322220 -1.181894 -0.118367 0.104902 0.498484 -0.514798 0.537577 0.341465 -1.019415 -0.847243 0.023720 -0.193690 -0.433834 -0.049475 0.706139 0.043821 -2.531709 1.497018 -0.261117 -0.474486 0.487305 -0.525397 1.046404 -1.380459 -1.348068 0.740980 -0.006782 -0.106769 -0.639309 0.180680 0.991086 -0.142100 0.412082 -0.846218 -1.517024 0.679065 -0.410996 0.870027 0.556551 0.307742 1.173588 -0.480966 -0.339414 -1.317406 -0.314874 -0.051564 -0.085815 -1.035241 -0.372172 -0.309892 1.184379 1.467458 -0.176274 -0.349330 0.154032 1.247594 -1.546404 -0.435085 0.853218 0.972448 -1.015582 0.390771 1.015793 -1.331385 -0.556167 -0.698934 -0.276205 -0.175871 -1.152275 0.663509 -0.443960 0.518754 0.420983 0.088510 -0.169216 0.752351 0.294234 0.310048 0.074079 1.423309 1.929012 -0.702283 -0.270445 -1.226854 0.536679 -1.802172 -1.464792 0.493635 0.040607 -0.650683 0.213439 0.113362 1.225603 -0.070184 0.072204 -0.222476 -0.119823 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.264659 -0.878422 -0.081187 -3.328381 2.428168 1.567468 1.048206 -1.625702 -2.717255 -0.200769 0.901042 -3.162512 -0.467334 3.053709 -1.166778 3.017547 4.490091 0.597599 -1.367090 -0.673069 2.805911 0.282392 4.341331 3.742844 -2.887781 -0.250350 0.220485 1.299526 0.516550 0.389008 -0.824935 -1.852837 1.444696 -2.935875 -0.372337 -1.607357 0.500658 0.608423 2.936398 -4.174545 0.967510 -0.553675 0.538947 -0.836455 -1.074480 0.133438 2.548576 2.862263 -0.828786 0.575582 2.793117 0.784271 -0.441339 0.886291 0.409340 0.927796 0.508620 0.032887 -1.116926 -1.696290 -0.283884 0.032332 0.814193 2.890956 3.344197 0.393509 -0.259778 2.073454 1.329227 0.438642 1.564153 0.625917 -0.558719 0.271704 1.187402 -4.133524 -0.159669 -5.644989 -0.768173 -5.362488 -2.108742 -0.278336 1.532594 -0.596536 2.104535 0.181760 3.184615 -0.379615 -0.155866 1.904034 3.252641 -3.158885 -1.491306 -2.106605 -1.704441 0.869345 -1.408977 0.352102 1.637779 0.400280 -2.711380 -1.582450 1.039450 1.349502 -1.142266 -2.341646 1.141313 1.855753 -1.636599 -2.458881 -0.693418 2.401154 -0.714218 -4.708909 -0.144375 -1.959452 1.600186 -0.290103 -1.098051 -3.432654 0.082312 1.721490 -1.543364 -1.574384 -0.833981 1.982477 2.295716 1.069377 0.641392 0.095772 0.893232 5.043791 1.059148 -2.406368 -0.155633 0.012105 -1.159680 0.747764 -2.234447 -1.469229 1.142924 -3.205871 1.091878 2.526079 -1.895640 -0.267463 2.897840 0.771853 1.084431 8.834847 -0.232095 3.408166 2.368422 -3.034747 1.261475 -1.426970 0.008313 0.698139 1.475079 0.079224 -4.052828 -2.995532 1.762049 3.023986 2.450240 -3.120931 -1.126187 -0.388495 -0.108664 -0.140403 -0.624029 0.925289 -0.059682 -2.225166 -0.602119 2.573537 5.693691 -1.114222 -0.703874 1.635511 2.210001 -0.992952 -2.904552 -1.790453 -3.209945 0.520969 1.158537 0.703647 2.121614 4.100574 -5.446631 2.344378 -0.400985 -0.116499 2.354900 1.138093 -2.838297 -3.277000 -0.371084 2.075210 3.125447 -1.150318 1.075404 1.113016 -2.468280 -0.224326 0.439505 0.296232 -0.931682 0.962569 0.538717 -2.037760 -1.240486 0.701636 -1.078481 -0.931990 -0.111090 1.975188 0.693668 -4.681935 3.131191 -0.023311 -1.313319 1.295349 -1.724509 3.222207 -2.906275 -2.564063 2.101892 -0.004211 0.318899 -0.798232 0.809282 2.072996 -0.007956 1.871173 -2.127745 -3.235324 1.831805 -0.555553 2.580757 1.309251 -0.126999 1.383386 -1.905184 -0.700334 -2.687536 -1.982726 -0.410266 0.622925 -3.028046 -0.735781 -0.788412 3.060696 2.489940 -0.295786 -1.829002 0.133240 2.493262 -3.589733 -0.209779 2.051217 1.625887 -3.196061 0.305476 2.614580 -3.203548 -0.287721 -1.451328 -0.046784 -1.019315 -2.618155 1.730608 0.152615 1.720226 0.175781 0.165633 0.296301 1.475112 1.005131 0.717239 0.544384 3.519002 2.916142 -0.577094 -1.282048 -3.206951 1.157972 -3.930794 -3.844423 1.800137 -0.257080 -2.687709 0.430952 0.378874 3.473535 -0.331529 0.412931 -0.859362 0.183957 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::empty() const = -0.178614 0.525037 0.778518 -0.803974 0.880454 0.997870 0.186322 -0.410164 -0.568377 -0.103683 -0.062039 -1.054328 -0.589954 0.906531 -0.438553 0.145868 1.102368 0.068441 -0.356537 0.061467 0.333768 0.372157 1.048815 0.902144 -0.775103 0.118119 0.158182 0.312424 -0.255392 1.202119 -0.741611 -1.156812 0.080654 0.243019 0.104293 -0.216204 -0.146610 -0.342636 0.137858 -1.135067 0.143618 0.488580 -0.153019 -0.254064 0.080267 -0.269287 1.312017 0.570341 0.051753 -0.228121 0.392187 0.595475 -0.004668 0.138192 0.616476 0.173009 1.125457 -0.154533 -0.363281 -0.271460 -0.276403 0.106828 -0.308730 0.901708 0.820895 0.335310 -0.128062 -0.251629 -0.106593 0.087432 -0.056331 0.265787 0.147602 0.822793 0.056436 0.108814 0.475668 -0.534078 0.051232 -0.454264 -0.552631 -0.292145 0.143364 0.679208 0.305714 -0.436004 0.957641 -0.163902 0.128152 0.041504 1.336598 -0.681005 -0.243823 -0.415594 -0.676365 0.055513 -0.221996 0.080153 -0.353517 -0.143229 -0.715664 -0.552260 0.167613 0.190255 -0.321957 0.431903 0.097020 0.602591 -0.580257 -0.127476 -0.335191 0.266812 -0.012784 -1.269502 -0.809955 -0.347803 -0.108797 0.001645 -0.474061 -0.917130 0.388356 0.579329 -0.532767 -0.213915 -0.687831 0.814533 0.460813 0.032122 -0.023679 -0.235737 0.483503 0.755130 0.119273 -0.470491 0.144092 -0.227333 -0.145678 -0.095302 -0.334357 0.046585 -0.496648 -0.470906 0.099046 0.761530 -0.489383 0.215760 -0.768282 -0.204404 0.351789 2.507700 -0.591262 0.721294 0.059485 -1.126887 0.503951 0.020841 -0.476262 -0.279435 0.262575 0.676484 -0.849587 -0.631632 0.791130 0.942326 0.541002 -0.514967 0.510618 -0.124061 -0.277357 -0.223849 0.365974 0.088176 -0.184947 -0.589545 -0.412074 0.488527 1.604527 -0.195081 -1.543874 0.444850 0.123807 0.226444 0.117810 -0.157197 -0.136182 0.198482 0.336330 -0.226500 0.715969 1.060810 -1.810806 0.863466 0.150673 -0.787532 1.185091 -0.226614 -0.383521 0.259028 0.052827 0.981300 0.808597 0.166683 -0.218581 -0.265215 -0.710386 -0.168764 0.082526 0.389274 -0.493924 0.410506 0.440846 -1.065401 -0.606602 -0.834963 -0.095222 -0.334307 -0.862537 0.341374 -0.091898 -1.685982 1.275208 0.513632 0.067797 -0.067762 -0.443055 0.189034 -0.680787 -0.977543 0.225834 -0.288619 -0.201217 0.123825 -0.119356 0.368620 0.290247 0.804717 -0.873703 -0.853786 0.503359 0.118981 0.810715 0.368131 0.459705 0.272112 0.623661 -0.111734 -0.388905 -0.618839 0.863006 0.149422 -0.617961 0.207027 -0.497289 0.678641 0.742714 -0.221259 -0.354477 -0.841595 0.595927 -0.193912 0.091862 0.482866 -0.432836 -0.835019 -0.315768 0.632328 -0.225678 -0.412293 -0.512697 -0.315180 -0.701349 -0.741427 0.103450 -0.213633 0.118261 0.496428 -0.262612 -0.631248 0.144521 0.001145 -0.220716 0.325190 0.742819 0.276720 -0.265455 0.628743 -0.756284 0.565475 -1.084771 -0.909403 0.423335 -0.754951 -0.577492 -0.255160 -0.218682 0.536892 -0.209695 0.418711 0.023326 0.066069 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::front() = -0.236992 0.277955 0.470625 -0.393751 0.540527 0.200058 0.229451 -0.044235 -0.430293 -0.489912 -0.105979 -0.636905 -0.742311 0.788557 -0.312233 0.076512 1.081401 0.363831 -0.075366 -0.213311 0.375015 -0.314512 0.998383 0.905297 -0.746020 0.019147 0.242401 0.440114 0.026550 0.728857 -0.208223 -0.748346 0.389055 -0.007516 0.313336 -0.549985 0.061746 -0.040904 -0.249651 -1.179447 0.058410 0.205286 0.026079 -0.097430 -0.023586 0.501522 0.950481 0.598174 -0.165371 0.138119 0.383869 0.285393 0.066542 0.252047 0.211429 0.003260 0.350946 -0.266562 -0.476058 -0.038159 -0.214216 -0.787484 -0.164626 0.700818 0.906674 0.082267 0.042148 0.002154 -0.254781 0.240112 0.096941 0.183045 0.375618 0.274310 0.350445 -0.322123 -0.001129 -1.076751 -0.231738 -1.825971 -0.529362 -0.565266 0.524373 0.282248 0.144082 -0.102355 0.860437 0.129330 0.230977 0.372586 1.137750 -0.621936 -0.332213 -0.467502 -0.255609 0.311930 -0.456768 0.036305 0.170696 0.028315 -0.612469 -0.523099 0.324093 0.014491 -0.281419 -0.063285 -0.112279 0.687778 -0.946085 -0.186323 -0.833545 -0.086879 0.084701 -1.110766 0.043934 -0.211607 0.502983 0.228336 -0.215490 -0.447868 0.274821 0.469964 -0.214069 -0.204094 -0.586462 0.754112 0.132186 -0.061076 0.160357 0.084680 0.165293 0.646049 0.591489 -0.316758 -0.148560 0.077730 -0.453231 -0.074213 -0.523904 -0.155296 0.303544 -0.642000 0.144466 0.349209 -0.499534 -0.291380 -0.098136 -0.280875 0.524746 1.446869 -0.226735 0.468014 0.196329 -0.841356 0.387026 -0.152802 -0.222132 0.099357 0.562569 0.393394 -0.405561 -0.591198 0.370966 0.793659 0.518461 -0.567129 -0.059280 -0.294514 0.090002 -0.149874 0.164625 0.275785 -0.141106 -0.482801 -0.195411 0.345015 1.082981 -0.302646 -0.685756 0.262707 0.150083 -0.028608 -0.544028 -0.154074 -0.068645 0.039237 0.081529 -0.114134 0.306864 0.947968 -1.526655 0.758218 -0.070034 -0.232868 0.541382 -0.102559 -0.272938 -0.736384 0.190662 0.780985 0.783671 0.161664 0.048130 -0.055883 -0.724477 -0.121570 0.043719 0.506697 -0.296700 0.379434 0.137461 -0.656268 -0.635245 -0.456831 0.008225 -0.243357 -0.249948 0.324785 0.350527 -1.578694 0.961120 -0.156592 -0.235310 0.036607 -0.060059 0.373639 -0.784879 -0.953030 0.251968 -0.302683 -0.583135 -0.378072 0.001701 0.468799 -0.089158 0.012190 -0.275508 -0.715961 0.627910 -0.041764 0.466557 0.306774 0.372599 0.861115 0.377345 -0.383736 -0.463341 -0.214522 0.273108 -0.498557 -0.341119 0.173578 -0.221620 0.582306 1.025241 -0.019106 -0.182928 -0.101440 0.796056 -0.563166 -0.370067 0.650848 0.196913 -0.255440 0.411225 0.687098 -0.671622 -0.564359 -0.520447 -0.101157 -0.094853 -0.681426 0.183473 -0.587229 0.105777 0.461602 -0.038351 -0.462041 0.357784 0.091137 -0.056345 -0.072872 0.866593 0.941195 -0.588176 0.387304 -0.585116 0.325325 -1.060597 -0.665422 0.113236 0.007303 -0.183055 0.087865 -0.038688 0.405620 -0.086038 0.002611 -0.222240 -0.107953 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::operator*() const = -0.123077 0.225392 0.274166 -0.343964 0.398271 0.352908 0.086009 -0.235578 -0.231895 -0.130017 -0.067307 -0.282133 -0.207557 0.425753 -0.234330 0.174848 0.587781 0.105968 -0.070452 -0.118856 0.293246 -0.081703 0.575746 0.485162 -0.444234 0.015046 0.329864 0.187070 0.018350 0.479682 -0.325322 -0.459486 0.158813 -0.166888 0.068299 -0.308627 0.015340 -0.075509 0.137863 -0.601169 0.050550 -0.142102 -0.153359 -0.066477 -0.066159 0.019557 0.576456 0.312948 -0.077722 0.048001 0.297870 0.321537 -0.089772 0.107172 0.187172 0.208395 0.377282 -0.031450 -0.117961 -0.085157 -0.106023 -0.132396 -0.015081 0.451651 0.462427 0.079170 0.025860 0.095506 -0.119323 0.030982 0.014166 0.111206 0.020472 0.298133 0.106285 -0.474466 0.082230 -0.715441 -0.124626 -0.696368 -0.238319 -0.269197 -0.065989 -0.027399 0.271790 0.135215 0.478559 0.002333 0.130304 0.126139 0.614164 -0.469253 -0.131095 -0.225867 -0.273939 0.047377 -0.188663 0.048577 -0.096678 -0.065971 -0.307730 -0.463030 0.222731 0.163024 -0.163892 -0.140144 -0.008807 0.320688 -0.461051 -0.241821 -0.309973 -0.005395 -0.173105 -0.624191 -0.124869 -0.216698 0.427489 0.003403 -0.128494 -0.587388 0.132515 0.491765 -0.164270 -0.274039 -0.029161 0.297246 0.260119 0.004732 0.012275 -0.156042 0.143903 0.566946 0.348648 -0.214198 -0.051505 -0.016011 -0.232170 -0.108298 -0.278306 -0.037171 -0.019142 -0.349980 0.127931 0.441037 -0.246808 -0.040153 0.271628 -0.199386 0.278206 1.228205 -0.192774 0.270785 0.064166 -0.592897 0.061244 -0.126843 -0.169219 0.014792 0.234800 0.257837 -0.539112 -0.337398 0.257156 0.416757 0.270542 -0.362706 -0.120955 -0.198281 -0.076401 0.007113 0.017540 0.075441 -0.193748 -0.275885 -0.162404 0.187213 0.815376 -0.187613 -0.376127 0.196732 0.077469 -0.115037 -0.278253 -0.130853 -0.223321 0.103138 0.158311 -0.099602 0.264472 0.521088 -1.011992 0.374145 -0.159526 -0.277536 0.307323 0.027872 -0.142004 -0.150445 0.119612 0.461335 0.398838 0.023099 0.153665 -0.020467 -0.372552 -0.063271 0.006167 0.266425 -0.230909 0.184138 0.276215 -0.597106 -0.352425 -0.059692 0.021293 -0.236952 -0.149500 0.162622 -0.060916 -1.020900 0.592305 0.044247 -0.034330 0.178952 -0.123539 0.298742 -0.422547 -0.513160 0.241659 -0.029091 0.071742 0.014631 -0.013120 0.320552 0.027687 0.247164 -0.324203 -0.487114 0.089253 0.020093 0.260350 0.165815 0.246475 0.359340 -0.230821 -0.075573 -0.376703 -0.111402 0.198348 -0.032721 -0.257016 -0.037591 -0.150514 0.406864 0.515752 -0.038083 -0.122636 -0.083495 0.381567 -0.390651 0.025719 0.260562 0.332117 -0.369678 -0.049314 0.305171 -0.276074 -0.296537 -0.165638 -0.057310 -0.153427 -0.387590 0.108994 -0.228803 0.102211 0.249481 0.008481 -0.220212 0.197696 0.035473 0.081766 0.054117 0.349084 0.483251 -0.231001 0.077169 -0.334159 0.169371 -0.590628 -0.487865 0.138269 -0.097346 -0.183942 -0.004102 -0.105349 0.336666 -0.085343 0.212705 0.069908 -0.142053 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::pop_front() = -1.083481 2.092742 2.701119 -3.091656 4.150992 4.510596 0.850438 -1.187822 -1.936286 -0.700474 -0.897794 -3.613501 -2.963891 4.226934 -1.629449 1.388443 5.029811 0.332677 -1.179829 0.495376 2.603750 0.708992 4.552547 3.006824 -3.489791 -0.051541 1.367618 1.503845 -1.243152 5.022477 -3.108448 -4.884088 0.832684 -0.253956 0.719439 -1.507726 0.250373 -1.163724 0.344737 -4.776505 0.485077 1.603958 -1.537322 -1.033225 -0.471234 -1.003827 5.440138 2.850059 -0.615235 -1.284270 1.714553 2.048468 -0.601122 0.990181 1.656877 1.187835 2.809176 -0.014795 -2.167414 -1.313114 -1.199937 -0.707528 -0.764810 3.521530 3.749546 0.914826 -0.009454 0.642116 -1.037225 0.396396 -0.345528 0.791972 1.254773 2.518194 1.234676 -0.641806 0.271467 -3.066915 -0.532722 -3.350221 -2.141425 -2.370201 -0.201639 1.892808 1.854859 -2.087345 4.274289 -0.739830 0.946076 1.173271 6.034976 -3.761087 -1.270211 -3.793436 -2.420295 0.289814 -1.667532 -0.433361 -0.260677 -1.407153 -2.987573 -3.229045 0.401922 1.082991 -1.097533 -0.248984 -0.225118 3.371427 -2.696388 -1.607976 -2.717963 0.741145 -0.903820 -5.801731 -2.745029 -0.739254 -0.000488 0.241958 -0.946377 -4.527419 1.565774 3.727736 -1.988868 -2.133152 -0.950880 4.069087 2.182032 -0.312589 0.575203 -0.654548 1.668389 3.872057 2.582425 -1.542963 -0.473185 -0.442308 -1.370550 -0.813149 -1.934591 -0.069736 -1.102995 -2.955975 -0.089740 4.088793 -2.025720 1.036329 -1.599493 -1.385085 2.588482 11.095490 -2.191343 2.320437 -0.282506 -5.258185 2.947206 -0.069110 -2.249658 -0.973831 1.299258 2.682677 -4.799978 -2.913184 3.258057 3.649279 2.568893 -2.874705 1.167169 -1.683338 -0.567038 -1.178084 0.406090 1.629045 -0.902879 -2.494382 -1.488374 2.062432 7.295255 -2.145466 -6.290470 2.860340 1.026214 0.177226 -1.323880 -1.324290 -1.550896 0.005831 1.629482 -1.161707 2.712420 4.919764 -6.826170 3.614398 0.214823 -3.360441 4.347458 -1.063882 -1.054315 0.138578 0.305912 4.843016 3.640584 0.773872 -0.415749 -1.570890 -3.033461 -0.136528 0.573286 2.152602 -1.130636 1.372986 0.855475 -4.395758 -3.173144 -2.664609 -1.004000 -1.860570 -2.608614 1.094754 -0.115105 -7.190930 5.859090 1.126643 0.309068 0.771753 -1.159081 1.881073 -3.198680 -5.038632 1.921207 -0.681809 -0.746896 0.151767 0.136413 2.312363 1.565948 2.157339 -3.041565 -5.429303 1.950558 0.772014 3.076373 1.270815 2.538138 2.455499 2.245168 -1.371246 -2.641145 -3.352389 2.891507 0.564829 -2.679932 -0.846043 -1.292795 3.699772 3.509919 -0.721826 -1.189994 -3.653033 2.889695 -2.308040 0.123429 2.926873 -0.516628 -3.718234 -1.468633 3.494099 -1.537687 -2.750231 -2.036642 -0.124666 -2.572514 -3.834140 -0.424628 -1.934268 0.268538 2.553147 -0.788794 -2.426744 0.605654 0.587873 -0.495153 0.011345 3.760265 2.174878 -2.391243 1.741031 -3.157808 2.465474 -5.225726 -4.254114 1.892072 -2.317475 -1.595359 -0.264506 0.473289 2.104256 -1.443726 1.587484 0.257977 -1.530868 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_pop_front_aux() = -0.917547 2.128899 3.288454 -3.220953 3.627391 4.319015 0.748801 -1.435504 -1.994920 -0.374694 -0.594584 -3.527237 -2.524624 3.780098 -1.824525 0.533789 4.790263 0.464309 -1.347011 0.248779 1.968733 1.129975 4.299493 3.524799 -3.310885 0.089201 1.332255 1.407498 -0.844550 4.803587 -3.348459 -4.428053 0.539610 0.394163 0.672361 -1.359828 -0.224466 -1.499286 0.292971 -4.597095 0.539004 1.192210 -1.595366 -1.012755 0.056649 -0.536911 5.381032 2.425576 -0.237912 -1.330966 1.611646 2.315398 -0.508186 0.652110 2.149658 1.066859 3.931089 0.462723 -1.525839 -1.144224 -1.238599 0.045834 -0.877502 3.666381 3.441951 1.321780 -0.176194 -0.492920 -0.497049 0.240596 -0.394876 0.862952 1.145509 3.127704 0.677006 -0.420483 1.208376 -2.964547 -0.171126 -2.453704 -2.022468 -1.834369 -0.056373 1.430173 1.414713 -1.928577 3.876434 -0.620248 0.884842 0.630102 5.620084 -3.228894 -1.058680 -2.622343 -2.684368 0.132774 -1.171785 0.182578 -0.870989 -1.212810 -2.898130 -2.884451 0.499559 1.000048 -1.146009 0.942534 0.170665 2.917372 -2.220457 -0.836080 -2.065372 0.698327 -0.434810 -5.380488 -3.011266 -1.386939 0.512311 0.042471 -1.601493 -4.147193 1.528769 3.307921 -2.061394 -1.465932 -1.430428 3.794715 2.079661 -0.150723 -0.014938 -1.061161 1.683704 3.131672 1.809442 -1.699318 0.172891 -0.737893 -1.450688 -0.857733 -1.840726 0.256884 -1.142380 -2.115789 0.061227 3.610980 -2.011124 0.975809 -1.476186 -1.108100 2.069243 11.183617 -2.417826 2.546921 -0.183836 -4.864357 2.428751 0.190264 -1.980043 -1.019968 1.271373 2.770082 -4.900577 -2.628886 3.078538 3.665252 2.290118 -2.795365 1.641036 -1.235190 -1.064932 -1.108642 0.915412 0.746940 -1.028496 -2.331653 -1.641045 2.051048 6.801542 -1.567823 -6.731713 1.957576 0.466336 0.641653 -0.420610 -0.860755 -0.622706 0.635226 1.580280 -1.092897 2.990085 4.483192 -7.372658 3.419835 0.166787 -3.396339 4.629691 -0.857336 -1.230022 0.938253 0.505693 4.387520 3.369302 1.053737 -1.046787 -1.190244 -2.893520 -0.504450 0.425927 2.100441 -1.646179 1.499052 1.695807 -4.489824 -2.834366 -3.190201 -0.520239 -1.647201 -3.040389 1.164617 -1.101050 -7.361686 5.528237 1.734774 0.422959 0.220324 -1.650007 1.032234 -3.026840 -4.543323 1.329314 -0.628902 -0.505267 0.172919 -0.260820 2.034096 1.368035 3.000671 -3.612171 -4.812296 1.876634 0.512316 3.289781 1.280225 2.277862 2.123832 2.189139 -0.610229 -2.432563 -2.814585 3.493076 0.907732 -2.740623 -0.174123 -1.660968 3.119020 3.257576 -1.107793 -1.055717 -3.544281 2.655086 -1.764558 0.337746 2.195016 -0.511191 -3.407736 -1.478429 2.804626 -1.252536 -2.368464 -1.837034 -1.210008 -2.637192 -3.365749 0.037170 -1.481605 0.490124 2.168564 -0.710164 -2.381666 0.499177 0.184099 -0.493852 1.005300 3.035083 2.398988 -1.819736 2.043338 -3.042429 2.599091 -4.750257 -3.992986 1.793590 -2.990239 -1.749944 -0.638940 -0.284323 2.165358 -1.129045 1.551790 0.355220 -0.491497 +PE-benchmarks/cutting-a-rod.cpp__max(int, int) = -0.506122 -0.740676 -0.092479 -0.956983 0.649825 0.207414 0.291580 -0.471655 -1.190386 -0.148388 0.406858 -0.696922 0.190655 1.115358 -0.282880 1.112725 1.249664 0.371480 -0.400063 -0.264940 1.142007 -0.647114 1.021565 1.083318 -0.746963 -0.080175 0.034822 0.395253 0.199163 0.324390 -0.082814 -0.464549 0.350031 -1.199372 -0.152985 -0.876810 0.101927 0.817838 1.073442 -1.353169 0.312326 -0.045471 0.230859 -0.210599 -0.333802 -0.051947 0.274627 0.730369 -0.372357 0.721092 0.845958 0.060387 -0.158821 0.182223 0.229212 0.528689 0.074788 0.228805 -0.297129 -0.277958 -0.200646 -0.129448 0.562662 0.669301 0.958174 -0.126394 -0.032565 0.604041 0.249997 0.205221 0.756756 0.107795 -0.467309 -0.483222 0.462818 -1.608805 -0.185725 -2.250096 -0.104758 -1.997042 -0.501536 0.288764 0.727434 -0.143931 0.548286 0.231379 0.949589 -0.360150 -0.422999 0.781694 0.772085 -0.787932 -0.366914 -0.442777 -0.758083 0.167415 -0.336955 -0.185220 0.524062 0.214089 -0.696943 -0.617000 0.505273 0.433607 -0.278845 -0.922592 0.202077 0.794928 -0.844851 -0.999061 0.044497 0.952872 -0.316027 -1.100827 0.099641 -0.839065 0.486328 0.039285 -0.512514 -0.850455 0.144883 0.418850 -0.368446 -0.442503 0.060461 0.540371 0.456343 0.428563 0.045953 -0.132273 -0.052393 1.359160 0.382634 -0.822255 0.074896 0.237945 -0.198805 0.448569 -0.726989 -0.602684 0.349131 -0.902411 0.126163 0.402259 -0.562015 -0.174589 1.304047 0.393664 0.051418 2.607624 0.091899 1.083710 0.829862 -0.744184 0.439688 -0.160003 0.338476 0.511116 0.600647 -0.276385 -1.200466 -0.941141 0.462447 0.853283 0.754777 -0.943990 -1.073251 -0.152318 0.043447 0.446368 -0.143730 0.136242 -0.043031 -0.717414 -0.139966 0.328975 1.723028 -0.353570 -0.006057 0.423087 0.650826 -0.774830 -1.373721 -0.468551 -1.362802 0.149362 0.106994 0.033910 0.529739 1.202386 -2.012777 0.780618 -0.487137 0.113236 0.453633 0.468709 -0.803172 -1.800127 -0.475861 0.261413 1.154996 -0.336851 0.546117 0.684322 -0.755124 0.033065 0.030223 -0.068953 -0.397678 0.415001 -0.012869 -0.525673 -0.150429 0.566993 -0.453443 -0.431849 0.130630 0.582824 0.344441 -1.241049 0.549916 -0.002728 -0.265210 0.573103 0.100819 1.073758 -0.641958 -0.810822 0.713610 0.152472 0.078566 -0.417744 0.178091 0.641573 -0.097251 0.001049 -0.327502 -0.967254 0.403576 -0.531552 0.753306 0.345348 -0.462686 0.500581 -0.424639 -0.219763 -0.842052 -0.182769 -0.292690 -0.114670 -0.572793 -0.674023 -0.103517 0.860380 0.528980 0.391663 -0.567662 0.161387 1.110284 -0.871347 0.039877 0.677753 0.391029 -0.770002 0.284146 0.845753 -1.098053 0.146494 -0.432074 0.190191 -0.217347 -0.337142 0.828197 0.311263 0.548466 -0.360405 0.231022 0.142318 0.466226 0.605515 0.240671 0.034637 1.240318 0.941659 -0.183660 -0.471459 -0.737943 0.161761 -0.901649 -0.856758 0.142935 0.523899 -0.958288 0.190591 0.081170 1.165604 0.200931 0.233877 -0.049789 0.080679 +PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -1.731879 -2.025685 -1.107313 -3.578651 2.337193 2.996323 1.361996 -2.430977 -4.473785 -0.329873 1.824713 -4.358403 -0.333374 4.662754 -1.451111 4.454300 6.525124 1.037197 -2.461401 -0.415615 5.131136 -1.375416 6.166106 5.376178 -3.345264 -0.431556 -0.368606 1.957890 1.293598 0.785788 0.438007 -1.617981 2.382699 -5.346338 -1.222261 -3.327053 0.790247 1.825322 4.426754 -6.463138 1.194784 -0.080074 0.616271 -1.188448 -1.445968 1.007721 2.381892 3.671903 -0.643588 1.449730 3.685000 0.569606 -0.576663 1.069929 0.610930 0.990255 0.680309 0.677310 -1.500802 -2.128712 -0.319481 -0.900699 1.130325 3.558097 5.388911 0.354881 0.051432 2.888689 1.036415 0.940573 2.619645 0.506033 -1.343128 -0.294394 1.565192 -6.435753 -0.580272 -7.988026 -1.032770 -8.473790 -2.100853 0.453348 2.994575 -0.015932 2.552726 0.327193 3.655409 -0.845593 -1.335515 4.274941 4.203903 -3.904691 -1.895943 -2.518238 -2.064391 1.193000 -2.272260 0.296782 3.055647 0.830136 -3.307292 -1.955948 2.069617 2.198184 -1.370760 -3.816106 1.060422 3.222535 -3.134378 -3.438794 0.345692 3.879276 -1.229794 -6.790258 -0.231903 -3.593095 2.189164 0.075804 -1.400038 -3.850332 0.388389 1.988141 -1.058488 -2.327390 -0.277173 3.262682 2.527936 1.830339 0.296242 0.407672 0.704060 7.041162 1.243743 -2.703163 0.469289 0.014997 -1.563216 1.941922 -3.197657 -2.291666 1.570900 -4.392393 1.388732 3.285389 -2.276705 -0.890731 4.015601 1.808901 0.921226 14.651102 0.492389 5.692225 4.208684 -3.921142 2.280927 -1.730902 0.593737 1.445490 1.674257 -0.514271 -7.619935 -3.780200 2.072594 3.900522 3.111995 -5.437755 -2.125707 -0.542574 -0.098494 0.188690 -0.580622 1.151493 0.033034 -3.163681 -0.786049 3.734983 9.311959 -1.852496 0.730721 2.210779 1.659004 -2.762651 -6.783188 -2.078671 -3.326274 0.882973 1.137597 0.485556 2.204228 4.999236 -6.879963 3.394903 -0.897595 0.364774 3.633321 2.061934 -4.720639 -6.375308 -1.183465 2.204279 5.196128 -1.496188 0.952231 2.137679 -3.516550 -0.263572 0.709017 -0.273746 -0.769074 1.356985 0.585876 -1.941994 -1.860046 1.856840 -1.163490 -1.175428 0.214198 2.687280 0.715407 -5.240915 3.505156 -0.223024 -1.740126 1.220448 -1.019371 4.598143 -3.447674 -3.453375 2.900808 -0.022004 -0.933823 -2.431433 0.878974 2.761852 0.999476 1.906735 -2.322667 -5.329989 2.630448 -2.150888 3.085822 1.519090 -0.645572 2.025651 -1.591294 -0.941166 -5.045711 -2.610384 -1.079436 0.248654 -4.210139 -1.458209 -0.668638 4.136731 2.625794 0.402291 -3.805112 0.630830 4.657457 -4.400474 -0.939117 2.656634 3.138017 -4.875073 0.793119 3.288521 -5.217260 0.362424 -1.541353 -0.518184 -1.114978 -3.042657 2.698419 0.987129 2.723596 -0.659052 1.067749 0.659079 1.739225 1.682579 1.032954 0.605646 5.941955 4.900868 -0.897020 -1.955193 -4.196726 1.559205 -4.789820 -5.401446 2.007778 1.272203 -3.551183 0.813653 1.678697 5.199070 0.812839 -0.206934 -0.818984 0.458611 +PE-benchmarks/cutting-a-rod.cpp__main = -0.440941 -0.502763 0.293637 -1.261563 0.982429 0.546198 0.554842 -0.331385 -1.717778 -0.572207 0.672834 -1.910424 -0.737319 1.765677 -0.523085 0.912009 2.308489 0.449860 -0.743936 -0.310067 1.237917 -0.469624 2.143651 2.020420 -1.394984 0.062932 -0.415975 0.787511 0.364320 0.703937 0.109932 -1.006360 0.716856 -0.927328 -0.067807 -0.920571 0.089700 0.355961 0.682275 -2.449805 0.357810 0.707774 0.305607 -0.359667 -0.166631 0.942721 1.256085 1.297481 -0.302489 0.721931 1.226304 0.014048 0.074101 0.353590 0.404948 -0.141656 0.594989 -0.026636 -0.916195 -0.386879 -0.209782 -0.887228 -0.023787 1.322620 1.904375 0.051122 -0.134575 0.353022 0.256054 0.481001 0.939101 0.278715 0.114574 -0.005615 0.750193 -1.122477 -0.083645 -2.543425 -0.224457 -3.628459 -1.089517 -0.012265 2.021135 0.512095 0.298963 -0.423004 1.500298 -0.146158 -0.380475 1.372723 1.808899 -1.034074 -0.822507 -0.775516 -0.758942 0.632751 -0.844403 0.067528 0.951805 0.410969 -1.351389 -0.348229 0.685510 0.295407 -0.554078 -0.466311 0.225636 1.283006 -1.522523 -0.626584 -0.395107 1.209147 0.326238 -2.379138 -0.169906 -0.883861 0.636489 0.322171 -0.714494 -0.609928 0.340255 0.274077 -0.625109 -0.188324 -1.134138 1.486010 0.503144 0.714714 0.232152 0.381702 0.485853 1.721493 0.412062 -1.003669 0.163085 0.023505 -0.370546 0.751332 -0.954006 -0.731192 0.607832 -1.339569 0.522908 0.488570 -0.960459 -0.537314 0.180116 0.561305 0.318174 4.135136 0.000260 1.985189 1.224030 -1.288330 0.960318 -0.386973 0.103358 0.419345 0.818890 0.033274 -1.486873 -1.291540 0.897787 1.642771 1.134382 -1.803887 -0.181874 0.029676 0.039532 -0.047613 0.253540 0.421294 0.215506 -1.112663 -0.334239 1.169364 2.886679 -0.399449 -0.801630 0.551108 0.525304 -0.358967 -1.622832 -0.419575 -0.440087 0.350822 0.333313 0.116187 0.875971 1.912375 -3.088209 1.466469 -0.031074 0.024190 1.417294 0.398717 -1.500509 -2.259546 -0.406049 0.857967 1.917060 0.011340 -0.083796 0.633407 -1.363873 -0.170119 0.224220 0.054796 -0.412781 0.675051 0.080399 -0.667447 -0.748727 -0.441119 -0.379587 0.005556 -0.426617 0.975553 0.536994 -2.511390 1.355485 -0.077630 -0.731400 -0.166419 -0.296847 1.189974 -1.328678 -1.417649 0.600923 -0.546243 -1.377725 -1.105681 0.049460 0.664252 0.120016 0.467197 -0.667945 -1.605302 1.556096 -0.706363 1.325911 0.694537 -0.239147 1.154529 0.624327 -0.499986 -1.194750 -0.848341 0.371753 -0.585833 -1.183304 0.265963 -0.465731 1.174684 1.105010 0.105311 -1.056538 -0.167441 1.658369 -1.126190 -0.700006 1.123989 0.296144 -1.130837 0.940777 1.353822 -1.765663 0.069679 -1.049558 -0.450420 -0.471521 -0.989308 0.920147 0.092939 0.770977 -0.001568 0.235014 -0.279695 0.588195 0.278387 -0.115010 0.108467 2.239507 1.991568 -0.704213 0.176029 -1.571527 0.819862 -1.785730 -1.778667 0.531060 0.203228 -1.195806 0.173242 0.252121 1.436909 0.330432 -0.416043 -0.695369 0.681566 +PE-benchmarks/longest-palindromic-subsequence.cpp__max(int, int) = -0.506122 -0.740676 -0.092479 -0.956983 0.649825 0.207414 0.291580 -0.471655 -1.190386 -0.148388 0.406858 -0.696922 0.190655 1.115358 -0.282880 1.112725 1.249664 0.371480 -0.400063 -0.264940 1.142007 -0.647114 1.021565 1.083318 -0.746963 -0.080175 0.034822 0.395253 0.199163 0.324390 -0.082814 -0.464549 0.350031 -1.199372 -0.152985 -0.876810 0.101927 0.817838 1.073442 -1.353169 0.312326 -0.045471 0.230859 -0.210599 -0.333802 -0.051947 0.274627 0.730369 -0.372357 0.721092 0.845958 0.060387 -0.158821 0.182223 0.229212 0.528689 0.074788 0.228805 -0.297129 -0.277958 -0.200646 -0.129448 0.562662 0.669301 0.958174 -0.126394 -0.032565 0.604041 0.249997 0.205221 0.756756 0.107795 -0.467309 -0.483222 0.462818 -1.608805 -0.185725 -2.250096 -0.104758 -1.997042 -0.501536 0.288764 0.727434 -0.143931 0.548286 0.231379 0.949589 -0.360150 -0.422999 0.781694 0.772085 -0.787932 -0.366914 -0.442777 -0.758083 0.167415 -0.336955 -0.185220 0.524062 0.214089 -0.696943 -0.617000 0.505273 0.433607 -0.278845 -0.922592 0.202077 0.794928 -0.844851 -0.999061 0.044497 0.952872 -0.316027 -1.100827 0.099641 -0.839065 0.486328 0.039285 -0.512514 -0.850455 0.144883 0.418850 -0.368446 -0.442503 0.060461 0.540371 0.456343 0.428563 0.045953 -0.132273 -0.052393 1.359160 0.382634 -0.822255 0.074896 0.237945 -0.198805 0.448569 -0.726989 -0.602684 0.349131 -0.902411 0.126163 0.402259 -0.562015 -0.174589 1.304047 0.393664 0.051418 2.607624 0.091899 1.083710 0.829862 -0.744184 0.439688 -0.160003 0.338476 0.511116 0.600647 -0.276385 -1.200466 -0.941141 0.462447 0.853283 0.754777 -0.943990 -1.073251 -0.152318 0.043447 0.446368 -0.143730 0.136242 -0.043031 -0.717414 -0.139966 0.328975 1.723028 -0.353570 -0.006057 0.423087 0.650826 -0.774830 -1.373721 -0.468551 -1.362802 0.149362 0.106994 0.033910 0.529739 1.202386 -2.012777 0.780618 -0.487137 0.113236 0.453633 0.468709 -0.803172 -1.800127 -0.475861 0.261413 1.154996 -0.336851 0.546117 0.684322 -0.755124 0.033065 0.030223 -0.068953 -0.397678 0.415001 -0.012869 -0.525673 -0.150429 0.566993 -0.453443 -0.431849 0.130630 0.582824 0.344441 -1.241049 0.549916 -0.002728 -0.265210 0.573103 0.100819 1.073758 -0.641958 -0.810822 0.713610 0.152472 0.078566 -0.417744 0.178091 0.641573 -0.097251 0.001049 -0.327502 -0.967254 0.403576 -0.531552 0.753306 0.345348 -0.462686 0.500581 -0.424639 -0.219763 -0.842052 -0.182769 -0.292690 -0.114670 -0.572793 -0.674023 -0.103517 0.860380 0.528980 0.391663 -0.567662 0.161387 1.110284 -0.871347 0.039877 0.677753 0.391029 -0.770002 0.284146 0.845753 -1.098053 0.146494 -0.432074 0.190191 -0.217347 -0.337142 0.828197 0.311263 0.548466 -0.360405 0.231022 0.142318 0.466226 0.605515 0.240671 0.034637 1.240318 0.941659 -0.183660 -0.471459 -0.737943 0.161761 -0.901649 -0.856758 0.142935 0.523899 -0.958288 0.190591 0.081170 1.165604 0.200931 0.233877 -0.049789 0.080679 +PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -5.161228 -6.670738 -5.285452 -11.373706 7.499910 11.569697 4.477933 -10.076371 -13.274807 0.700616 7.851541 -15.318328 0.194201 13.732672 -4.676624 14.487055 16.910442 0.989808 -9.269824 -1.031111 14.172989 1.579009 19.078397 15.613958 -9.403190 -1.117835 -3.620138 5.176383 4.055801 -2.887966 3.505272 -2.263095 7.342686 -16.925245 -7.641776 -5.510394 2.261827 4.249676 14.238516 -15.715549 3.493617 -2.571360 1.487934 -3.588293 -5.717459 -1.585553 7.289192 11.382106 0.965390 3.829316 9.725882 0.824444 -1.426480 3.445557 2.148670 1.728323 0.284400 -1.714864 -3.979705 -8.656735 -0.353302 0.116922 2.557902 11.373795 13.981980 3.162930 -0.860278 11.298149 4.101216 2.838345 8.630116 2.071035 -7.192979 1.431054 3.689572 -18.754945 -0.358674 -16.441432 -3.815886 -14.753957 -6.308896 3.705176 8.491612 -0.060994 9.144643 4.210562 10.754043 -1.713161 -6.220693 13.117769 13.009503 -12.152180 -6.003223 -5.938756 -5.677813 2.882994 -6.047509 3.850334 6.574274 5.499129 -10.610050 -2.854154 3.410019 7.201416 -4.311003 -11.512756 4.768873 8.588515 -7.580588 -10.108878 5.446068 12.578363 -4.127901 -19.561047 -6.393868 -9.400657 6.753282 -0.945469 -4.328540 -12.840899 0.537050 5.085615 -2.283020 -6.756913 0.554442 3.824727 7.809134 7.366192 0.401684 4.284021 3.799312 23.219239 0.232032 -7.465790 2.994310 -2.172645 -0.824107 8.513620 -5.584595 -6.895520 -0.513572 -13.309761 5.048421 12.070417 -6.269263 -4.141420 7.193614 8.212754 0.819252 40.123481 2.739841 16.860098 13.558575 -11.832023 0.158260 -8.776054 2.578186 3.977939 2.766777 -2.940673 -19.514287 -12.203382 7.723927 12.123653 8.932651 -13.712044 -2.372840 0.154443 -1.049662 -0.382407 -2.104193 3.478780 1.112996 -7.934833 -2.363916 13.223710 25.640105 -5.528294 4.374319 8.395681 3.066881 -5.537785 -14.646162 -7.262868 -7.628336 3.257710 5.307050 3.743101 6.287277 14.970492 -11.395356 9.459706 -1.476758 3.334502 9.118624 7.338962 -14.618437 -10.857281 -5.485810 6.570020 11.835541 -6.479401 -0.111895 6.546305 -10.404261 -1.134384 4.350274 -3.186742 -1.269921 4.074438 2.179440 -4.020361 -5.317205 8.431527 -3.307127 -0.215706 1.101592 9.470711 -1.561212 -10.416881 10.825253 0.669164 -6.328923 2.949324 -5.826861 14.830831 -9.349841 -9.282485 9.442489 -1.076725 -2.890318 -4.798515 3.260345 7.003053 5.437562 7.185391 -8.908616 -8.781996 7.881046 -5.605210 9.776273 4.817764 -2.160956 4.126214 -11.132654 -3.584796 -11.879736 -10.336352 -4.063171 3.744584 -13.666315 -3.010929 -1.980211 12.736681 5.791383 1.133908 -13.571827 3.461338 11.974984 -12.681373 -3.823235 7.021213 8.180327 -16.734162 2.259237 8.988826 -13.942936 4.002675 -3.232318 -2.589172 -5.640312 -10.321685 8.534887 6.285944 9.515202 -3.045162 3.346284 4.846401 5.886777 4.336049 5.841641 4.035648 15.885896 8.606438 -0.652572 -8.794507 -13.493394 5.422409 -14.152164 -16.859050 9.312047 4.624638 -9.892252 1.140657 1.603774 15.116327 3.837223 -4.567789 -3.627738 3.333128 +PE-benchmarks/longest-palindromic-subsequence.cpp__main = -1.156420 -1.405427 -0.309353 -2.948509 2.079065 2.220833 1.214587 -1.902016 -3.584658 -0.423181 1.961686 -4.597726 -0.857780 3.730750 -1.263586 2.813508 4.534592 0.391117 -2.197108 -0.480966 3.027845 0.375186 4.938661 4.218985 -2.744120 -0.097142 -1.391006 1.601115 0.962518 -0.034691 0.830363 -1.296498 1.650677 -2.991846 -1.349945 -1.132946 0.436622 0.802293 2.561638 -4.393942 0.824723 0.602951 0.661436 -0.933500 -0.966957 0.221590 2.444167 2.961550 0.170920 1.033353 2.485539 0.094292 0.043095 0.865487 0.815232 -0.243682 0.756910 -0.933257 -1.603844 -1.746465 -0.234342 -0.669051 0.096225 3.065668 3.800148 0.818541 -0.377859 1.914824 0.903036 0.898423 2.236605 0.636861 -0.902095 0.583388 1.260966 -3.186632 0.132671 -4.105759 -0.723228 -4.657812 -2.061600 0.634584 3.373133 0.864072 1.540013 0.148557 3.028848 -0.309717 -1.403537 3.250999 3.843486 -2.677040 -1.751850 -1.553392 -1.604999 1.063045 -1.709758 0.932476 1.377987 1.577126 -2.964203 -0.521096 0.951896 1.252724 -1.183529 -1.735185 1.042172 2.368056 -2.349514 -1.855871 0.627017 3.065684 -0.051261 -4.977971 -1.709834 -2.110225 1.305936 0.151856 -1.370179 -2.319856 0.400407 0.723377 -0.978532 -0.946034 -1.583184 1.661900 1.589684 1.863832 0.207349 1.325220 1.258506 4.980847 -0.196939 -2.046577 0.742005 -0.503545 -0.161348 2.152032 -1.450419 -1.683674 0.238745 -2.933177 0.979485 2.192371 -1.829410 -1.302351 0.199804 1.871566 0.336346 9.173707 0.495164 4.220485 3.169824 -2.907727 0.634686 -1.804739 0.484203 0.779275 1.006098 -0.358362 -3.750964 -3.191471 2.225066 3.397797 2.372554 -3.324581 0.124101 0.332212 -0.070789 -0.310297 0.073444 0.977730 0.439500 -2.182408 -0.683875 3.236852 6.299065 -1.070341 -0.253736 1.903752 0.807507 -0.660146 -2.962016 -1.450063 -0.951037 0.828600 1.088033 0.891057 1.826739 4.113902 -4.041610 2.829557 0.113433 0.670500 2.727202 1.245174 -3.652697 -2.931399 -1.279187 1.866829 3.300196 -0.840449 -0.398497 1.434546 -2.868748 -0.354921 0.933739 -0.491700 -0.498270 1.279714 0.282562 -1.110055 -1.589865 0.539099 -0.967210 0.356434 -0.502312 2.420446 0.342494 -3.395283 3.044967 0.232477 -1.577438 -0.057697 -1.482103 3.226379 -2.662643 -2.665779 1.827506 -1.077929 -2.091942 -1.642158 0.546677 1.381831 1.008418 1.642307 -2.185012 -2.124730 2.991201 -1.360881 2.834896 1.405969 -0.539143 1.344142 -0.755311 -1.052981 -2.397919 -2.508847 -0.129026 0.190859 -3.256451 0.229935 -0.796382 2.932737 1.801555 0.076562 -3.163000 0.206199 3.161775 -2.747534 -1.545691 2.074648 0.909072 -3.616272 1.304324 2.585751 -3.552819 0.838431 -1.579759 -0.992783 -1.551423 -2.615420 2.064779 1.178904 2.141455 -0.379929 0.544535 0.441329 1.387704 0.804737 0.614387 0.878456 4.497859 2.655868 -0.533682 -0.969514 -3.687006 1.655485 -3.802155 -4.218316 2.147274 0.595642 -2.686999 0.180792 0.237927 3.473749 1.064791 -1.257936 -1.485764 1.439885 +PE-benchmarks/subset-sum-problem.cpp__isSubsetSum(int*, int, int) = -4.958337 -6.285878 -4.505679 -10.606533 7.342466 9.896287 4.279934 -9.034516 -12.399085 0.845312 6.683313 -14.564163 0.263278 13.101171 -4.018498 14.144235 16.452746 1.353047 -8.386490 -1.111022 13.545886 0.469572 17.832644 14.370204 -8.475405 -1.146049 -3.839654 4.484220 3.065180 -2.676027 2.390919 -2.580331 6.635634 -15.991849 -6.648974 -5.158295 1.975038 4.514379 14.165443 -15.355030 3.371586 -1.803696 2.714014 -3.568427 -5.217514 -1.769605 6.652824 10.517066 0.813058 3.376710 8.697785 0.594157 -1.119805 3.321444 1.954987 2.346308 0.396237 -1.679112 -4.152024 -7.427654 -0.511390 0.590309 2.660522 10.305314 12.789343 3.081283 -0.862100 10.450153 4.194247 2.557552 7.984846 1.804417 -6.106232 0.677553 3.255966 -18.058553 -0.806092 -16.712473 -3.360087 -14.531372 -6.237030 3.278426 7.438351 0.480261 8.649695 3.579600 10.055744 -1.757087 -5.445391 11.262631 12.102729 -11.601394 -5.673291 -6.079174 -5.291301 2.403441 -5.309366 3.682073 6.892174 4.708598 -9.977184 -3.625984 4.298579 6.599594 -3.840569 -10.725955 4.639745 8.356535 -6.094075 -10.047688 4.511813 11.928215 -4.192651 -17.885378 -3.357402 -8.945385 4.769750 -0.509641 -4.346920 -12.244456 0.682756 4.794806 -2.827312 -6.618308 -0.565166 4.638536 7.191297 6.184031 0.529536 3.695872 3.137859 21.593179 -0.080735 -7.409583 2.717039 -1.537536 -0.941619 7.445338 -5.757658 -6.761790 -0.122987 -12.281770 3.713348 10.369872 -6.012748 -3.212364 6.984594 7.445508 0.945653 35.774152 2.368940 15.547829 12.134072 -10.967334 2.503460 -7.887822 2.284784 3.296888 3.205279 -2.748170 -18.721225 -11.792962 7.189179 11.259158 8.579394 -12.651463 -3.243232 -0.433024 -1.000233 -0.449878 -1.815212 3.754385 0.826912 -7.494974 -2.048293 11.680993 25.080150 -5.279301 4.662904 7.734578 3.415458 -4.742364 -15.107332 -6.923055 -8.413182 2.557310 4.195832 3.456894 6.075589 14.307436 -11.726576 9.037337 -1.869105 2.639821 9.025910 6.150257 -13.884648 -11.662561 -5.111788 6.132978 11.897351 -5.805872 0.124411 5.768798 -9.615299 -0.870995 3.385707 -2.618452 -1.269386 3.638846 1.100048 -4.173673 -4.428583 7.553938 -3.808361 -1.442110 0.870060 8.551044 0.901720 -8.923389 9.919078 0.881011 -5.384160 3.470940 -5.461569 14.172346 -8.395248 -8.537116 8.630188 -0.787480 -1.567798 -4.426334 3.049131 6.503871 4.071468 6.561014 -7.873387 -8.985511 7.569636 -4.889918 9.294850 4.429228 -2.180870 2.959425 -7.619580 -3.871186 -10.556547 -10.026487 -4.699238 3.789073 -13.067291 -3.270199 -1.913679 12.045081 5.402686 1.385906 -12.494139 2.433410 11.047554 -12.625616 -3.293367 7.019828 5.995845 -15.214661 1.157617 8.844807 -12.871364 3.279909 -2.990948 -1.148175 -5.216704 -9.208711 7.472569 5.421993 8.366284 -3.191361 2.630314 4.369595 5.304597 4.510304 4.901103 3.372043 15.496666 7.762370 -0.467599 -7.838853 -12.723789 4.767902 -12.753290 -15.105943 8.092870 4.558976 -10.499715 1.130057 2.417789 14.283258 3.009594 -3.084846 -3.449391 2.283137 +PE-benchmarks/subset-sum-problem.cpp__main = -1.322188 -1.777840 -0.544516 -3.139103 2.235219 2.022372 1.305740 -1.794394 -3.992685 -0.383055 1.788677 -4.382014 -0.448343 4.185076 -1.050485 3.582322 5.097946 0.778319 -2.262984 -0.437977 3.661362 -0.408888 4.982359 4.341782 -2.744267 -0.123716 -1.297525 1.407126 0.780783 0.064435 0.641944 -1.293645 1.633541 -3.816762 -1.253060 -1.780096 0.459600 1.427045 3.243617 -5.116471 1.060421 0.514067 1.399538 -1.117849 -1.189200 0.009333 2.271060 3.182324 -0.228152 1.219450 2.658370 0.017087 -0.088323 0.933297 0.608650 0.477155 0.357356 -0.545450 -1.709757 -1.621266 -0.224672 -0.652549 0.744524 3.052491 3.947110 0.641324 -0.323292 2.338237 1.227724 1.019859 2.403909 0.513953 -1.229916 -0.222429 1.270245 -4.379959 -0.389514 -5.497839 -0.652881 -5.683692 -2.250328 0.720543 3.393048 0.973151 1.874162 0.404684 3.226543 -0.689314 -1.328659 3.309926 3.809039 -2.961947 -1.835469 -2.038245 -1.938648 1.171005 -1.657507 0.529408 2.020105 1.370169 -3.106945 -1.037274 1.332264 1.522015 -1.202567 -2.359711 1.166614 2.808608 -2.381841 -2.648122 0.625317 3.508715 -0.529007 -5.266463 -0.445806 -2.481049 0.850056 0.307701 -1.496035 -2.844530 0.411071 0.980278 -1.266461 -1.364887 -1.543371 2.083105 1.510751 1.730915 0.355645 0.921423 0.940278 5.253107 0.350005 -2.485887 0.727787 -0.094484 -0.334595 2.013516 -1.968799 -2.198630 0.344908 -3.614066 0.979312 2.187443 -2.047559 -1.124934 1.038812 1.958057 0.457153 9.414549 0.520031 4.563726 3.280732 -3.123825 1.632815 -1.630419 0.490609 1.013465 1.455939 -0.589903 -4.307944 -3.442316 2.047589 3.609457 2.755918 -3.400931 -1.189596 -0.120671 -0.274570 0.153387 -0.039856 1.115066 0.353286 -2.513379 -0.680648 3.060964 6.952363 -1.167328 0.270327 1.977088 1.281954 -1.240445 -4.244413 -1.675230 -2.497355 0.699801 0.940958 0.666569 1.974070 4.456995 -4.757225 3.154987 -0.429424 0.634573 2.722440 1.303658 -3.846145 -4.281288 -1.448478 1.861379 4.044221 -1.245729 -0.194221 1.663454 -3.009201 -0.290757 0.802866 -0.550316 -0.632430 1.316380 -0.106353 -1.260356 -1.348946 1.201311 -1.262656 -0.432467 -0.161876 2.442147 0.979746 -3.118103 3.008760 -0.031159 -1.565181 0.709138 -1.219550 3.643110 -2.565895 -2.756702 2.142584 -0.441588 -1.340155 -1.812128 0.611241 1.940461 0.794305 1.321741 -1.770723 -2.946788 2.639317 -1.539938 2.997598 1.501650 -0.847741 1.336657 -0.159427 -1.187703 -2.769433 -2.488096 -0.964750 0.160133 -3.365684 -0.828855 -0.836007 3.344320 1.945405 0.435472 -3.231928 0.171245 3.581180 -3.112492 -1.345174 2.395190 0.312729 -3.692037 1.028797 3.021271 -4.032091 0.762247 -1.620672 -0.045078 -1.268303 -2.502400 2.212375 1.222332 2.174626 -0.769134 0.568914 0.675171 1.516994 1.295079 0.750827 0.565736 4.978051 2.362629 -0.600806 -1.239923 -3.713507 1.539059 -3.958571 -4.086088 1.795574 1.355465 -3.217273 0.454626 0.576519 3.853515 0.685757 -0.730826 -1.302574 0.969980 +PE-benchmarks/bellman-ford-algorithm.cpp__createGraph(int, int) = -0.682091 -0.647916 0.706767 -1.815319 1.091528 0.437016 0.504395 -0.758703 -1.479661 -0.455511 0.900652 -0.895627 -0.899962 1.731053 -0.802076 0.685946 1.378271 -0.086377 -0.954516 -1.079313 1.612018 -0.785025 1.988429 1.478966 -1.911595 -0.202669 0.207542 1.381192 1.108177 0.803604 0.006511 0.038673 0.122953 -0.842516 0.401528 -0.325555 0.346822 0.074132 0.195232 -1.657883 0.242618 0.196418 0.126640 -0.220982 -0.345075 0.922685 0.838799 1.455469 -0.330160 0.248147 1.803214 -0.209673 0.071293 0.254516 0.681044 -0.083628 1.435987 0.282263 -0.296070 -0.543425 -0.232517 -0.784819 0.462509 1.630674 1.753948 -0.243998 0.031955 0.578152 0.146359 0.842688 1.057417 0.341507 -0.290178 -0.043680 1.239350 -1.462559 0.270927 -2.523140 -0.156747 -2.826350 -0.899880 -0.136946 1.180711 -0.254620 0.548471 0.412228 1.639298 0.298241 -0.638228 0.618918 1.247062 -0.651526 -0.612708 -0.733646 -1.064149 0.422792 -0.963623 0.099937 0.629501 0.808051 -1.235014 0.149001 0.320332 0.535217 -0.741617 -0.370056 -0.264495 1.324376 -1.165440 -0.436540 -0.284962 1.059967 0.021623 -2.370381 -0.030733 -1.492612 1.277844 -0.445034 -0.167656 -0.409600 0.217376 0.993100 -0.542570 -0.374881 -0.824752 1.265718 0.858746 0.623067 -0.017040 0.199826 0.169467 1.168390 0.810291 -0.790679 -0.443195 0.038247 -0.780780 0.721221 -0.607029 -0.236895 1.213403 -0.988718 0.278466 0.381829 -0.475695 -0.569465 1.192491 0.382644 0.485197 4.064184 -0.072686 1.572079 0.800057 -0.990187 0.510796 -0.059432 0.326110 0.836398 0.789084 -0.438955 -1.558416 -1.397820 0.994859 1.361873 0.900140 -1.802291 -0.217079 -0.024467 -0.150177 -0.024145 -0.011918 0.338300 -0.295876 -0.798872 -0.451998 0.671975 2.172627 -0.675581 -1.327244 0.752352 0.446521 -0.896594 -1.411475 -0.423411 -0.168189 0.354847 0.046098 0.297167 1.069823 1.810334 -2.587382 1.258930 -0.235222 -0.201700 1.558799 -0.382315 -0.904852 -2.087995 -0.075122 0.414269 1.388003 -0.083471 -0.602156 0.765813 -1.472272 0.198384 -0.013793 0.129943 -0.411900 0.737737 0.018990 -0.589469 -0.990572 -0.520684 -0.384045 0.674486 -0.303692 0.736033 -0.636618 -2.718300 1.373767 -0.410878 -0.629188 0.037448 -0.158037 1.040386 -1.127597 -1.355575 0.661961 -0.131946 -0.768266 -1.544122 0.139811 0.840192 -0.125945 0.137373 -1.240021 -1.090010 0.870026 -1.364067 1.280659 0.584791 0.009497 1.206964 0.270842 -0.194368 -1.348654 -0.030052 0.005636 -0.155859 -1.473738 -0.033712 -0.327308 1.206783 0.761493 -0.089177 -0.202082 0.172464 1.754170 -1.210422 -1.149649 0.643312 0.499181 -1.071349 1.082658 1.032482 -1.257246 -0.241848 -0.985372 -0.821902 -0.649667 -1.372088 1.231528 0.325998 1.223198 -0.129435 0.888148 -0.161013 0.514611 0.213083 0.195257 -0.074506 1.997481 2.382957 -0.993953 -0.547632 -1.664987 1.191013 -1.402549 -1.417303 0.622508 0.073268 -0.480343 0.385283 -0.169323 1.635207 0.602853 -0.589706 -0.369169 0.310029 +PE-benchmarks/bellman-ford-algorithm.cpp__printArr(int*, int) = -0.649141 -0.844019 0.016065 -1.620324 0.899186 0.685809 0.457925 -0.690351 -1.795329 -0.315967 0.655928 -1.439763 -0.103328 1.806847 -0.588761 1.452320 2.233522 0.452689 -0.758675 -0.299073 1.807210 -0.655950 2.058841 2.047754 -1.506110 -0.166768 0.016461 1.083089 0.662892 0.472311 0.142958 -0.609770 0.541017 -1.699964 -0.254750 -1.415537 0.388006 0.837024 1.296654 -2.431242 0.431738 0.051702 0.311651 -0.368632 -0.454003 0.239028 0.801908 1.459249 -0.621452 0.715870 1.578060 0.200422 -0.224992 0.354240 0.129589 0.279643 0.257770 0.179589 -0.510799 -0.550918 -0.010591 -0.625831 0.640461 1.424768 2.030573 0.009894 0.058158 0.894313 0.427025 0.358053 1.082090 0.208502 -0.630533 -0.233743 0.793384 -2.313312 -0.092298 -3.295354 -0.167994 -3.208491 -0.898495 0.093912 1.337747 0.057970 0.807892 0.128483 1.468648 -0.247247 -0.432949 1.549551 1.453038 -1.253176 -0.702895 -1.036879 -1.125464 0.714779 -0.900622 -0.009720 0.802259 0.520946 -1.182179 -0.752566 0.661866 0.726624 -0.601863 -1.132613 0.278610 1.286271 -1.369838 -1.349200 0.018942 1.350717 -0.377208 -2.346186 -0.182528 -1.494945 0.991994 -0.071643 -0.443116 -1.180952 0.034204 0.729002 -0.432205 -0.640933 -0.612405 1.095777 0.781534 0.626192 0.114333 -0.000988 0.203633 2.210925 0.497757 -1.139908 -0.005606 0.222718 -0.635339 0.624580 -1.369901 -0.779607 0.819626 -1.552400 0.216763 0.939014 -0.888234 -0.485881 1.605194 0.573293 0.435741 5.306870 0.326191 1.960280 1.409056 -1.335720 0.755440 -0.339216 0.270211 0.843195 0.720254 -0.270244 -2.399164 -1.428212 0.617833 1.508218 1.216250 -1.721778 -1.034406 -0.199844 -0.096189 0.227588 -0.163557 0.356041 -0.219848 -1.149846 -0.290450 1.114008 2.907033 -0.418281 -0.131236 0.700955 0.918825 -1.295066 -2.163482 -0.642879 -1.332392 0.318045 0.203902 0.086135 0.967151 1.935594 -3.085128 1.295048 -0.186551 0.264380 0.999626 0.427478 -1.569330 -2.506218 -0.317961 0.696298 1.829026 -0.565795 0.491115 0.974184 -1.395902 -0.048385 0.285583 -0.082993 -0.427573 0.629713 0.141935 -0.694593 -0.754613 0.552327 -0.644348 -0.364617 -0.050262 1.016047 0.171442 -2.145513 1.202666 -0.273873 -0.690769 0.511786 -0.443735 1.497466 -1.527978 -1.404379 1.043105 0.148458 -0.358121 -1.016696 0.291278 1.099133 0.144516 0.305745 -0.756818 -1.802610 0.858234 -0.965974 1.064459 0.635822 -0.379731 0.899177 -0.353522 -0.278534 -1.734541 -0.637251 -0.322677 -0.034034 -1.415052 -0.604375 -0.279202 1.437863 1.141828 0.147434 -1.009096 0.352115 1.886974 -1.301151 -0.533890 0.938129 0.686444 -1.466558 0.465253 1.218805 -2.056551 0.144997 -0.783278 -0.072315 -0.168762 -1.050117 1.249212 0.360715 1.056946 -0.177291 0.442868 0.075790 0.794521 0.684968 0.345387 0.183938 2.249198 1.796461 -0.362530 -0.579267 -1.543293 0.486719 -1.861125 -1.798908 0.501597 0.373270 -1.231780 0.449480 0.296551 1.851904 0.409284 0.140581 -0.217970 0.221705 +PE-benchmarks/bellman-ford-algorithm.cpp__BellmanFord(Graph*, int) = -6.000110 -3.214411 -0.370118 -13.330578 11.147179 15.531807 4.848756 -9.332099 -13.909360 -0.831652 5.528927 -15.499844 -3.307619 17.274272 -6.046578 14.333449 20.856820 1.989773 -8.667376 0.536220 16.023986 1.110264 21.308017 17.441223 -12.944919 -1.230452 0.821501 6.455606 1.943269 6.320630 -2.228720 -9.739902 7.848727 -15.544972 -5.579928 -8.268165 2.154706 2.471011 13.186295 -19.953258 3.651786 0.473942 -2.584758 -4.696061 -5.039643 -4.047903 12.427516 13.362899 -1.726901 2.793320 10.853642 3.568627 -2.946888 3.876517 4.140382 3.943179 2.920358 0.564339 -5.704382 -8.677274 -2.045654 -1.920450 1.373831 14.133662 16.831562 2.835281 -0.098018 9.332170 0.966408 2.531741 6.799737 2.573946 -3.760171 3.293142 5.874053 -16.710543 -0.907404 -19.770040 -4.112700 -18.306734 -8.237812 0.075981 6.602947 2.013931 10.980605 -0.142838 14.241167 -3.424460 -3.677245 12.493441 18.159529 -15.595111 -6.666698 -9.852354 -8.488690 3.408190 -8.222279 2.068611 4.333909 -0.068557 -12.895191 -8.940292 3.910249 8.553971 -5.210780 -10.732501 3.380639 12.024537 -10.923360 -12.198139 -0.231087 10.194820 -5.488678 -23.847691 -9.568144 -8.814717 7.111150 0.315817 -5.532882 -17.094412 2.689803 10.119590 -3.940766 -10.588944 2.279194 9.264770 9.400127 6.341759 1.474154 0.563797 4.953451 25.094023 6.186239 -8.115368 1.917905 -2.267632 -3.397776 6.153354 -7.865068 -5.765155 -1.384467 -14.812130 3.112423 15.750870 -8.415952 -1.605670 7.786341 4.840314 4.193859 50.879708 -0.337474 17.536533 11.270986 -16.893588 4.679075 -6.731071 -0.917839 2.841370 4.719868 1.724238 -24.070925 -13.224023 10.164191 15.144999 11.196158 -16.281724 -2.150687 -2.543216 -0.634422 -1.720416 -0.978729 4.459796 0.605058 -11.686101 -3.804712 13.767181 30.092049 -8.468446 -7.634641 10.154382 4.825558 -5.445662 -15.192000 -7.407328 -10.084420 3.123583 7.451795 0.220853 8.841349 19.035571 -20.757934 12.379958 -1.907791 -2.699494 12.968035 5.439155 -14.361707 -9.177444 -2.883673 11.052081 14.928784 -3.054411 1.647984 4.285341 -13.084114 -1.452635 3.921462 0.199893 -3.054867 6.069521 3.328461 -10.052391 -9.373938 3.066421 -3.894415 -5.247851 -2.725918 9.479863 -1.174682 -19.993449 15.952282 2.359522 -5.382209 4.333268 -5.859977 15.268470 -13.366403 -16.112667 11.237302 -1.296634 -2.623485 -3.242213 2.597213 9.208119 8.123191 7.474291 -10.628301 -16.700585 8.486215 -2.827283 12.554691 5.723563 1.210688 8.195847 -6.148855 -4.099274 -14.696708 -11.546057 2.299302 3.072061 -15.430701 -7.926014 -3.778874 15.920112 10.333507 -0.147102 -12.108445 -3.320287 14.252113 -14.872342 -1.527258 9.969367 9.362299 -17.889345 -1.027386 12.312993 -13.952083 -0.317565 -4.954078 -1.640963 -7.485017 -13.182972 7.247579 2.231862 8.890469 1.050339 2.234953 0.215025 4.993913 4.872067 4.103090 3.056673 16.995587 12.521968 -5.120644 -5.193192 -15.290679 7.214561 -18.850866 -20.434576 10.084415 -0.237154 -11.118613 0.735958 2.508693 15.861533 1.750581 -0.245718 -1.582840 0.222235 +PE-benchmarks/bellman-ford-algorithm.cpp__main = -1.925551 -1.396277 3.667635 -6.274070 4.101424 2.816430 1.927748 -2.175225 -6.546170 -0.164765 1.165502 -4.894936 -0.872277 7.071450 -1.908183 3.962586 9.221542 2.736562 -3.502043 -1.313923 5.961251 -3.654554 7.266898 7.426657 -5.272950 0.196025 0.751759 3.895372 1.845492 5.406306 -4.132585 -1.476767 1.292564 -4.982295 0.820986 -5.404872 0.133714 1.374332 2.938792 -9.524199 1.872825 0.442860 1.281194 -1.858835 -0.989590 2.340874 5.192200 4.783584 -1.042875 0.772096 4.046430 -0.412328 -0.053114 1.353906 3.607723 3.777815 6.188303 3.632883 -2.690917 -1.395768 -1.399505 -2.654884 2.421063 5.373566 6.592530 0.826826 -0.297819 1.466422 1.866473 0.765192 3.072270 0.690552 -1.379924 0.079379 2.313486 -8.063644 2.547835 -10.077289 -0.689182 -10.692106 -3.621597 -0.746997 3.712744 -2.025901 3.208201 -0.529642 5.866025 -2.040390 -0.468752 1.965397 6.704875 -5.669130 -2.638833 -3.723376 -4.154447 1.162419 -2.368365 -1.365677 4.205377 -0.458452 -4.833346 -2.835754 4.258531 3.072749 -2.135139 -0.423171 1.101154 5.926850 -4.406773 -4.667618 -1.711740 2.885653 -1.639968 -8.231305 0.537104 -4.983935 3.216406 0.059694 -3.019189 -6.201443 1.753526 4.727234 -2.911335 -2.446441 -2.550949 6.561083 2.103463 1.358185 0.054722 -1.126150 0.645358 5.914663 4.332305 -4.293622 0.776314 0.752489 -4.292371 0.883490 -4.471547 -3.149223 2.203537 -5.128247 -1.332183 3.368659 -3.819164 1.554511 5.874023 2.659149 2.122141 19.461424 -1.197705 6.161226 2.603464 -5.895884 5.163041 0.831895 0.037691 1.480409 3.447768 0.549343 -11.482153 -5.468785 2.920146 6.037492 4.705061 -7.390097 -3.125728 -2.763603 -1.217246 1.791744 -0.099929 0.691116 -0.659414 -4.556005 -1.981633 2.024592 12.388781 -3.161904 -6.750955 2.409181 -0.904545 -3.712890 -8.672919 -2.238014 -3.734944 1.558618 -1.852982 -0.993890 4.561381 7.608545 -12.986137 6.424755 -3.179261 -3.286450 8.360232 -0.148593 -3.631284 -8.013142 -1.820711 3.899493 7.987303 -0.077367 -2.301838 2.392776 -5.323449 -0.685980 -0.252325 1.465912 -2.164870 2.614702 1.431101 -4.714256 -2.657389 -1.642658 -0.766439 -2.069298 -1.104695 3.131312 -1.516933 -9.801762 6.048653 0.972753 -0.906912 2.704361 -0.318436 2.174527 -4.953731 -6.174601 2.805985 1.484087 -0.538817 -3.938472 0.249027 4.455766 0.225072 0.732300 -4.459904 -8.157466 3.211837 -3.834572 5.527805 2.472978 -0.237700 4.324019 4.100798 -0.930149 -5.824683 -1.054148 -1.351848 -0.528185 -4.292167 -3.279930 -2.176018 5.770161 4.655742 0.453746 -0.542599 -1.597513 7.195702 -5.074139 -1.732972 4.192040 0.680270 -4.995581 0.621056 5.319144 -6.323807 -1.686462 -2.493573 -3.717535 -1.641537 -3.522048 3.726257 -0.247709 2.862179 0.026588 0.797014 -0.659320 1.929354 1.290298 0.380366 0.950527 7.939525 8.039296 -2.624181 -0.474988 -4.938234 3.521276 -6.933652 -5.251058 1.600925 1.085832 -5.098143 1.133807 2.546429 5.990518 0.468204 -0.495551 0.009999 -0.275245 +PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -2.043773 -0.346294 1.809005 -5.199283 6.177526 4.262775 2.066473 -1.858370 -4.884992 -0.900935 0.372645 -5.401942 -3.036497 7.164258 -2.731114 4.546374 8.314977 0.966004 -2.000455 -0.083672 6.621639 -1.048859 8.418209 4.949084 -6.287932 -0.703981 -0.005637 3.665984 0.381757 5.330971 -1.333108 -4.011581 2.473402 -4.238477 0.126498 -4.495843 1.770226 0.750067 2.006515 -8.690689 1.162675 1.971608 -0.528526 -1.167974 -1.047968 2.282276 5.538450 5.592816 -2.487684 0.865894 4.038325 1.202072 -0.411119 2.201117 -0.102622 0.996994 2.257493 -0.043024 -4.439063 -2.538133 -1.485527 -3.464430 1.488342 5.310399 7.719317 0.182579 0.752163 4.016124 -0.324546 1.539771 2.526225 1.014844 -0.049325 0.914110 3.701753 -4.376836 -0.880895 -7.775034 -2.119924 -10.746036 -3.379439 -2.612605 2.590830 1.335972 2.871438 -1.275332 6.284027 -0.100231 0.260801 5.429931 7.337162 -5.423736 -2.501474 -6.583107 -3.771066 1.385719 -3.521950 -1.419702 3.190777 0.286490 -4.835951 -3.511173 0.664357 2.064636 -1.565842 -3.007676 -0.400909 5.548390 -5.804976 -4.711992 -2.493277 3.039261 -2.380387 -9.918500 -1.800842 -2.469683 2.923311 0.320192 0.904486 -4.814200 1.303225 5.069922 -2.003863 -2.719791 -1.880486 6.179503 2.872877 1.248617 1.400123 0.387585 0.516027 6.967207 4.659673 -2.478551 -1.640412 0.275048 -2.278799 0.884189 -4.050727 -1.639006 1.518280 -6.377182 0.556826 5.357640 -2.916736 -0.583058 0.673985 0.126617 3.965851 16.962927 -0.815744 5.913436 2.163146 -7.357261 3.338976 -0.664640 -0.855555 1.189761 2.380796 1.019692 -7.878802 -5.375750 3.506892 4.723255 4.514675 -6.396247 -0.784882 -2.527544 -0.097840 -0.097445 -1.270798 3.790806 -1.225811 -4.985624 -1.064434 2.478275 12.236926 -2.895684 -4.884411 4.905215 2.168775 -3.585615 -6.359462 -2.971815 -2.696335 -0.570528 1.418765 -0.958144 2.677520 7.775219 -10.045657 5.610518 -0.003384 -1.386404 4.785527 -1.002933 -3.724358 -5.984138 -1.490592 5.482570 6.349334 -0.767659 -0.514668 0.569143 -4.521088 1.254170 0.965146 1.576398 -0.050697 1.930586 -0.196555 -4.495484 -4.408023 -0.766043 -1.559377 -0.879622 -1.327537 2.411255 0.642548 -9.678639 6.662246 -1.464708 -1.852494 2.229897 -0.127791 4.894077 -4.925275 -6.919795 3.615050 -0.733933 -2.802676 -4.187816 1.496186 3.735182 2.165684 1.279420 -3.323365 -8.750215 3.126346 -2.321650 3.128798 2.396163 1.634779 5.250787 1.445014 -2.957441 -6.524347 -4.694263 0.311516 -0.060447 -4.336246 -0.965255 -1.111921 6.222936 4.959645 -0.302006 -2.477671 -2.497229 6.799244 -4.738182 -1.992742 5.552745 0.429715 -5.992736 0.713621 6.319476 -5.465495 -2.402283 -2.473012 0.929011 -2.218313 -4.414778 1.679478 -1.282072 1.488222 1.205144 0.916482 -2.148619 1.536266 1.668065 0.472290 -1.378825 8.886770 6.736331 -3.986128 0.276826 -4.216482 3.062617 -8.096389 -6.578140 2.409150 -0.645308 -2.268631 2.359582 2.052141 5.517511 -0.163530 -0.001424 -0.165739 -1.996573 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::priority_queue(int*, int*, std::greater const&) = -1.514189 2.215251 3.491562 -3.795296 6.374476 4.272939 2.220230 -0.967256 -2.850786 -1.982685 -0.741799 -3.455747 -5.071847 5.776479 -2.136171 2.475353 6.801235 0.581044 -0.901552 -0.784228 5.236919 -2.255532 7.466909 4.376832 -6.417696 0.151306 1.779893 3.023424 -0.470484 7.106747 -3.348457 -4.761473 2.460872 -1.899101 2.432095 -3.113428 0.909999 -1.063283 -0.574621 -7.199341 0.100876 1.706565 -1.602370 -0.471261 -0.985510 2.063693 7.036394 4.675412 -2.246191 0.138039 3.355927 0.808919 0.000549 2.254757 1.561234 1.328972 2.956181 0.653011 -3.861487 -1.471444 -2.143746 -4.729322 0.390838 4.804363 6.515305 -0.110023 0.766921 2.290943 -2.356581 1.281611 0.742479 1.673535 2.045773 1.079693 4.257663 -3.088037 -0.566990 -6.918324 -2.090699 -10.322933 -3.881881 -4.866277 1.060373 0.644179 3.666583 -2.010111 6.749986 0.388033 1.249829 2.379309 7.689435 -5.802904 -1.772658 -5.681098 -2.737189 0.371214 -3.346742 -0.963770 2.186787 -1.834037 -4.502652 -3.916154 1.974030 1.297694 -1.524546 -2.444914 -1.748065 5.546481 -5.318237 -3.119315 -5.451306 0.326679 -1.856826 -8.641855 -0.474269 -1.234983 2.723878 0.500367 0.588329 -4.557268 1.887721 5.938045 -2.200139 -3.689839 -1.136390 6.703666 3.172811 -0.031029 1.868242 0.059863 0.463628 5.347891 6.874469 -1.214890 -2.446868 -0.008070 -2.837343 0.187676 -2.769027 -0.225825 1.741079 -4.976715 -0.563782 4.332499 -2.194948 0.472377 0.876133 -1.796355 4.467192 13.497171 -2.012787 3.509382 0.168156 -6.906420 4.566255 -0.127359 -1.757415 1.209979 3.425096 1.717748 -6.839359 -4.745642 3.712801 4.617803 3.310613 -6.081058 -0.802673 -2.824015 0.337372 -1.375325 -0.729412 2.957983 -0.533736 -3.826152 -1.229625 1.554061 9.988278 -4.113860 -7.508405 4.592688 0.850165 -1.863032 -5.092517 -2.756506 -2.257185 -0.636298 0.796682 -1.453894 2.612994 6.988309 -9.951440 5.041081 -1.451680 -3.609342 5.787726 -1.557006 -0.986764 -4.166300 0.469018 5.777190 5.047871 1.020267 -0.875059 -1.068120 -4.739776 1.040445 -0.030560 3.016009 -1.170603 2.316768 -0.252424 -5.380747 -5.142659 -3.924499 -0.982275 -1.709850 -1.709657 1.404822 0.764318 -11.074987 7.051727 -0.755338 -1.332953 2.155802 0.395312 3.606407 -4.084806 -7.480903 3.119836 -1.203832 -2.718117 -3.158903 0.938386 3.369555 1.060320 0.048554 -3.430356 -8.158729 3.673309 -0.648447 3.642609 2.128730 3.686603 6.570777 3.392949 -3.878083 -5.281882 -3.446218 2.096303 -1.245311 -3.604650 -1.889938 -1.495644 5.242778 5.873113 0.282355 0.064797 -3.258347 6.155921 -5.495732 -1.876331 5.771911 1.689100 -3.869754 0.833843 6.036225 -3.172280 -4.863103 -3.004239 -0.237454 -1.802114 -5.168667 0.749048 -3.524310 0.850903 2.879689 0.437496 -2.913024 1.537994 0.704660 0.289436 -2.407529 7.118190 7.009621 -5.516411 0.841992 -3.651232 3.072956 -7.385296 -5.119395 1.766316 -0.736757 -0.927515 1.449137 1.851657 3.762873 -0.877946 -0.371904 -0.022902 -3.278200 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::top() const = -0.163011 0.251825 0.462947 -0.434685 0.380924 0.164431 0.110824 -0.150981 -0.309447 -0.297910 -0.077638 -0.499835 -0.441845 0.536212 -0.285780 -0.012855 0.712238 0.181426 -0.117880 -0.167520 0.268617 -0.147868 0.654470 0.618860 -0.553399 0.007164 0.215675 0.373106 0.105709 0.562881 -0.211521 -0.471799 0.118260 0.117066 0.264178 -0.346474 0.038784 -0.064737 -0.158874 -0.779670 0.065028 0.109821 0.072751 -0.080104 0.007633 0.297752 0.695603 0.403959 -0.121849 -0.055346 0.352230 0.320759 0.017007 0.134982 0.186803 -0.032652 0.525773 -0.156331 -0.225049 -0.062849 -0.125126 -0.364048 -0.056372 0.570679 0.629930 0.124955 0.033093 -0.066920 -0.069360 0.147907 0.037512 0.134128 0.147495 0.333237 0.147724 -0.247770 0.219046 -0.777596 -0.051797 -1.076308 -0.321971 -0.341262 0.240298 0.228172 0.058324 -0.038726 0.595103 0.106669 0.157354 0.193419 0.777831 -0.350282 -0.174206 -0.295155 -0.347981 0.199182 -0.252307 0.056261 -0.024780 0.129826 -0.387917 -0.307745 0.179871 0.020768 -0.208104 0.139394 -0.039969 0.409970 -0.586163 -0.036142 -0.405641 -0.004202 0.076893 -0.788478 -0.034061 -0.322000 0.329872 0.001034 -0.151747 -0.339995 0.151462 0.345748 -0.207103 -0.025759 -0.642445 0.510138 0.154092 -0.047659 0.005181 -0.064602 0.150431 0.337125 0.247018 -0.292132 -0.080066 -0.000606 -0.328335 -0.130848 -0.387613 -0.042539 0.216431 -0.365333 0.062643 0.270513 -0.313112 -0.168719 -0.094783 -0.243673 0.359724 1.217077 -0.213899 0.339152 0.105634 -0.590261 0.235726 0.004177 -0.192890 0.040741 0.308956 0.311292 -0.344080 -0.433736 0.302627 0.542517 0.344510 -0.316887 0.015117 -0.152241 -0.089933 -0.069699 0.121087 0.103004 -0.254876 -0.319172 -0.205313 0.237319 0.737950 -0.063930 -0.536870 0.166595 0.107155 -0.055024 -0.241730 -0.077397 -0.014022 0.098775 0.012780 -0.099775 0.336368 0.656898 -1.251518 0.532579 0.051939 -0.203493 0.455029 -0.175910 -0.185151 -0.466682 0.158214 0.569839 0.503076 0.024808 -0.023065 -0.039700 -0.488565 -0.087070 0.012213 0.346487 -0.283762 0.227502 0.213068 -0.508585 -0.444665 -0.358820 -0.011642 -0.114727 -0.276096 0.212840 0.063389 -1.098788 0.735058 -0.049878 -0.056533 -0.023064 -0.164829 0.143701 -0.545510 -0.586589 0.106757 -0.154981 -0.270943 -0.248159 -0.003827 0.339106 -0.122743 0.162740 -0.340357 -0.469405 0.320575 -0.125507 0.316589 0.204540 0.294455 0.435611 0.313862 -0.090017 -0.351808 -0.064420 0.211048 -0.188784 -0.291137 0.221707 -0.170307 0.367911 0.655776 -0.122617 -0.097745 -0.027855 0.499933 -0.226638 -0.255475 0.329077 -0.056425 -0.299616 0.181065 0.381941 -0.386523 -0.379684 -0.397492 -0.166059 -0.121768 -0.483267 0.156907 -0.286579 0.080908 0.332099 -0.051293 -0.364351 0.259597 0.057162 -0.061824 0.082162 0.571209 0.571745 -0.261787 0.300135 -0.440730 0.228866 -0.740136 -0.472114 0.104944 -0.147088 -0.135830 0.020319 -0.124056 0.344772 -0.069614 0.163662 -0.051954 0.004200 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::pop() = -0.668922 1.353698 2.126914 -1.882797 2.257342 2.209729 0.659287 -0.464282 -1.446019 -0.843015 -0.390107 -2.640605 -2.293778 2.731140 -1.142480 0.067874 3.519986 0.665112 -0.742385 0.044340 1.119887 0.365049 3.076484 2.680882 -2.276358 0.081416 0.576203 1.055644 -0.633754 3.136290 -1.641422 -3.197605 0.659648 0.593329 0.741030 -1.066184 -0.137609 -0.857715 -0.471835 -3.518675 0.336097 1.365058 -0.582766 -0.690304 0.118852 0.284341 3.715905 1.788315 -0.195670 -0.629611 0.960296 1.352849 -0.066469 0.570085 1.362022 0.253945 2.105363 -0.233256 -1.455685 -0.541073 -0.906167 -0.881312 -0.848080 2.474347 2.569627 0.801020 -0.105591 -0.551883 -0.568650 0.491551 -0.147824 0.587562 1.253007 1.792213 0.694557 0.172025 0.492807 -2.146053 -0.230825 -3.145464 -1.626453 -1.436576 0.970443 1.469768 0.547506 -1.517844 2.755749 -0.207975 0.692492 0.767980 4.064589 -1.978748 -0.937226 -1.799394 -1.506855 0.490886 -1.024203 0.109113 -0.154975 -0.594142 -2.169618 -1.692948 0.398914 0.329565 -0.810552 0.703973 0.020937 2.185851 -2.023442 -0.294427 -1.972331 0.302805 0.241166 -3.798687 -1.556194 -0.705125 0.247286 0.447198 -1.193098 -2.126177 1.159115 1.761704 -1.290420 -0.682399 -1.715100 2.821327 0.889415 -0.129532 0.230090 -0.224136 1.050991 1.897464 1.323139 -1.115770 0.075082 -0.326977 -1.059653 -0.445491 -1.319536 -0.073180 -0.310525 -1.608050 0.145929 1.871692 -1.573924 0.095295 -1.691633 -0.783626 1.527491 6.621947 -1.512340 1.804953 0.087711 -3.176701 1.830956 0.022531 -1.268931 -0.604461 1.265193 1.855740 -2.330825 -1.836905 1.975373 2.712100 1.705420 -1.767476 1.142133 -0.796749 -0.377728 -0.874850 0.843362 0.662455 -0.430401 -1.702192 -1.007427 1.464950 4.256602 -0.994493 -4.309493 1.158762 0.480251 0.688433 -0.423991 -0.446255 -0.113602 0.331224 0.848323 -0.694853 1.784101 3.196490 -5.000903 2.565270 0.244637 -1.857919 2.939585 -0.623795 -0.939909 -0.317730 0.386007 3.031034 2.551186 0.846253 -0.707344 -0.798681 -2.156700 -0.437760 0.290493 1.569758 -1.072222 1.170578 0.714581 -2.701405 -2.037628 -2.475169 -0.317485 -0.961858 -1.959932 0.894549 0.157571 -5.014883 3.762286 0.788318 -0.032368 -0.232738 -0.841190 0.670605 -2.264202 -3.286249 0.704793 -0.887485 -1.377955 -0.344051 -0.218859 1.330135 0.633557 1.413779 -1.901679 -2.970441 1.991087 0.329357 2.302825 0.957457 1.483236 1.975639 2.199435 -0.808747 -1.363908 -1.876376 2.235835 -0.265891 -1.696712 0.343451 -1.120099 2.011042 2.600177 -0.617457 -0.822437 -2.107192 2.098155 -1.153260 -0.315861 1.846293 -0.659977 -1.735313 -0.157503 2.200426 -1.286786 -1.712491 -1.635950 -0.678103 -1.484616 -2.367853 0.051201 -1.383253 0.256122 1.556920 -0.536829 -1.776816 0.448691 0.178657 -0.528556 0.452911 2.412140 1.868964 -1.577268 1.739899 -2.121004 1.693478 -3.400198 -2.581046 0.972038 -1.579299 -1.033709 -0.308075 -0.184522 1.263351 -0.678171 0.626965 -0.287911 -0.105610 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = -0.895474 1.540133 2.426785 -2.291236 2.758916 2.676788 0.863388 -0.716845 -1.775986 -1.013579 -0.387893 -3.101144 -2.711842 3.403151 -1.365341 0.400117 4.426456 0.822814 -0.922489 -0.071751 1.695644 0.149719 3.938828 3.418863 -2.922511 0.060561 0.975996 1.298214 -0.507741 3.563641 -2.034054 -3.633839 1.029960 0.128277 0.866599 -1.479676 -0.085257 -0.983867 -0.232585 -4.397482 0.392482 1.223456 -0.816572 -0.825810 -0.041090 0.576158 4.511258 2.313859 -0.401083 -0.608984 1.346575 1.433803 -0.149084 0.751047 1.570754 0.450917 2.400793 0.070409 -1.730598 -0.717399 -1.070601 -1.261182 -0.823746 3.095335 3.302364 0.875767 -0.080553 -0.234143 -0.616652 0.558357 -0.103052 0.758715 1.498381 2.044612 1.054712 -0.609006 0.447904 -3.284611 -0.512021 -4.409319 -2.043738 -1.799291 1.054744 1.135450 0.975944 -1.575696 3.450791 -0.170071 0.792478 1.050017 5.026474 -2.748243 -1.195466 -2.283018 -1.771021 0.602507 -1.404231 0.226039 0.177532 -0.887575 -2.722669 -2.302943 0.709383 0.583469 -1.053333 0.350061 0.019457 2.771622 -2.495279 -0.713254 -2.494342 0.217373 0.024785 -4.814786 -1.550681 -0.938224 0.805918 0.565099 -1.380707 -2.908045 1.322619 2.398939 -1.491716 -1.217674 -1.604708 3.468169 1.288794 -0.033687 0.354353 -0.254086 1.268249 2.718635 2.035241 -1.381360 -0.002306 -0.386762 -1.528101 -0.423663 -1.755326 -0.237676 0.010739 -2.153696 0.137934 2.464739 -1.958515 0.111221 -0.985700 -0.891046 1.899531 8.472791 -1.681874 2.279942 0.265563 -3.988957 2.220169 -0.179190 -1.476234 -0.504799 1.682631 2.173947 -3.435285 -2.367200 2.380456 3.385750 2.136448 -2.592507 0.910655 -1.087715 -0.381125 -1.056636 0.828809 0.881465 -0.480825 -2.131643 -1.177283 1.915849 5.432625 -1.568538 -4.997343 1.484017 0.555860 0.593821 -1.221050 -0.715461 -0.459314 0.399758 0.969596 -0.755358 2.161232 4.009872 -6.228628 3.118555 -0.011803 -2.233352 3.561397 -0.522206 -1.297675 -0.824489 0.561773 3.698336 3.110241 0.982885 -0.717694 -0.812210 -2.760124 -0.509447 0.335736 1.873531 -1.272512 1.477683 0.844180 -3.289220 -2.574665 -2.618580 -0.354776 -1.336384 -2.039363 1.210667 0.124505 -6.306519 4.616777 0.794144 -0.215577 -0.017218 -1.035684 1.127106 -2.911066 -4.135933 1.096259 -0.975127 -1.470953 -0.593401 -0.175457 1.763269 0.761009 1.550188 -2.343042 -3.901720 2.359070 0.241523 2.803066 1.210139 1.813142 2.704823 2.161622 -1.105208 -2.044476 -2.163490 2.401823 -0.282511 -2.242200 -0.075395 -1.292226 2.661173 3.324441 -0.703160 -0.933530 -2.345378 2.663159 -2.032017 -0.456705 2.347117 -0.033946 -2.255509 -0.140783 2.742935 -1.785580 -2.086909 -1.901387 -0.908271 -1.719394 -3.006062 0.191399 -1.721132 0.421297 1.842306 -0.537295 -1.890622 0.707447 0.279986 -0.370872 0.438522 3.002858 2.877822 -2.160297 1.625071 -2.698397 2.081011 -4.310335 -3.371820 1.326600 -1.586172 -1.289120 -0.307191 0.012412 1.718765 -0.750755 0.531227 -0.356766 -0.300402 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::empty() const = -0.178981 0.100314 0.458506 -0.511807 0.401394 0.141950 0.145734 -0.180550 -0.458839 -0.257440 0.044914 -0.582118 -0.389418 0.595500 -0.289984 0.080243 0.747961 0.201695 -0.192375 -0.189156 0.324372 -0.146125 0.717081 0.708487 -0.595298 0.026328 0.091903 0.424224 0.182727 0.521036 -0.183930 -0.391733 0.141504 0.035923 0.189012 -0.374370 0.038212 0.024855 -0.043796 -0.842015 0.099249 0.141720 0.121353 -0.080879 0.015598 0.360081 0.626288 0.456708 -0.140440 0.064368 0.435589 0.231866 0.048860 0.143214 0.191894 -0.060589 0.563504 -0.115951 -0.236423 -0.091666 -0.107302 -0.378617 -0.023000 0.589548 0.698708 0.103242 0.002498 -0.060034 0.024525 0.166557 0.171635 0.142530 0.085516 0.244583 0.184228 -0.275873 0.251756 -0.873346 -0.038292 -1.136042 -0.368750 -0.222424 0.440323 0.227164 0.058840 -0.057648 0.622831 0.097853 0.037315 0.236626 0.747182 -0.360365 -0.208478 -0.242774 -0.388341 0.237187 -0.277234 0.070750 0.032360 0.208214 -0.429972 -0.247247 0.214788 0.023353 -0.239228 0.145915 -0.007710 0.444015 -0.604364 -0.075915 -0.295882 0.142503 0.114380 -0.826547 -0.045301 -0.406287 0.354428 -0.011079 -0.190583 -0.267968 0.131061 0.243735 -0.235728 0.016462 -0.721632 0.523454 0.174478 0.043103 -0.002742 -0.045983 0.146626 0.378523 0.155789 -0.376933 -0.043759 -0.001056 -0.277361 0.017724 -0.427592 -0.085132 0.252022 -0.395185 0.085226 0.206495 -0.338462 -0.181111 -0.048132 -0.082777 0.271972 1.300426 -0.135119 0.472345 0.244074 -0.549608 0.262148 0.006877 -0.091773 0.146556 0.315117 0.201551 -0.377342 -0.490326 0.310766 0.593587 0.385058 -0.425156 -0.017957 -0.082323 -0.074508 -0.045630 0.138916 0.095928 -0.200509 -0.350662 -0.197882 0.272518 0.789428 -0.042688 -0.554237 0.168928 0.113064 -0.114489 -0.309152 -0.108014 -0.019455 0.123971 0.011827 -0.045805 0.370285 0.709011 -1.345284 0.564453 0.068946 -0.139529 0.521580 -0.125149 -0.311116 -0.564461 0.075782 0.472248 0.561095 0.012753 -0.057830 0.101257 -0.538937 -0.089884 0.025907 0.237206 -0.291488 0.257371 0.217316 -0.430572 -0.397265 -0.365680 -0.037288 -0.060453 -0.279244 0.302861 0.057151 -1.125073 0.659451 -0.052583 -0.139277 -0.030448 -0.186348 0.200074 -0.557141 -0.565740 0.126789 -0.163010 -0.339914 -0.360712 0.026071 0.323405 -0.129223 0.184327 -0.366657 -0.460887 0.388100 -0.231885 0.360347 0.241766 0.166169 0.402451 0.350083 -0.092107 -0.383992 -0.046057 0.214915 -0.199139 -0.333002 0.240056 -0.192108 0.379779 0.620346 -0.071530 -0.143107 -0.017128 0.573095 -0.245249 -0.307595 0.354999 -0.058153 -0.318563 0.283812 0.414539 -0.475806 -0.259126 -0.418701 -0.235537 -0.122340 -0.445145 0.307043 -0.149086 0.173809 0.226791 0.002540 -0.313849 0.301139 0.065059 -0.075257 0.101953 0.693305 0.657944 -0.226487 0.268144 -0.499148 0.259542 -0.746069 -0.500434 0.132033 -0.136032 -0.262424 0.043724 -0.117577 0.448547 0.010858 0.090409 -0.111267 0.120687 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::~priority_queue() = -0.210395 0.211284 0.623350 -0.673148 0.655544 0.409278 0.145140 -0.135695 -0.515413 -0.253566 -0.154435 -0.503071 -0.476624 0.760845 -0.363726 0.129157 0.982446 0.276540 -0.181866 -0.188829 0.490695 -0.139327 0.865654 0.716358 -0.765388 0.003971 0.239365 0.549770 0.094735 0.910139 -0.409245 -0.633994 0.123869 0.037167 0.283972 -0.590650 0.110444 0.027691 -0.139748 -1.082725 0.118455 0.134384 -0.086893 -0.079341 0.002517 0.280852 0.823617 0.559016 -0.218784 -0.000261 0.508340 0.459328 -0.050713 0.202367 0.184320 0.184224 0.638195 -0.130659 -0.322111 -0.104910 -0.156149 -0.433252 0.023884 0.682287 0.828075 0.089339 0.046888 0.000680 -0.064046 0.153694 0.146141 0.131335 0.114933 0.278408 0.245009 -0.356698 0.158293 -0.998240 -0.030871 -1.249918 -0.398790 -0.500801 0.285049 0.269635 0.144667 -0.132820 0.828782 -0.017243 0.189582 0.313074 0.921258 -0.545382 -0.221599 -0.582105 -0.490049 0.222407 -0.338016 -0.127756 -0.045703 0.126642 -0.466330 -0.504538 0.208823 0.059986 -0.259591 0.049118 -0.114802 0.667919 -0.793179 -0.218221 -0.544151 0.246466 -0.041604 -0.994783 -0.191536 -0.437868 0.441257 -0.050640 -0.089081 -0.513318 0.200310 0.595381 -0.334291 -0.100875 -0.586170 0.717317 0.288306 -0.144916 0.022659 -0.136803 0.100891 0.519665 0.430235 -0.417660 -0.198764 0.140714 -0.374763 -0.195556 -0.604798 -0.013330 0.165996 -0.568074 0.061203 0.461339 -0.394016 -0.087250 -0.059081 -0.260641 0.519680 1.851421 -0.257358 0.408162 0.091331 -0.790035 0.391190 0.106934 -0.201181 0.136708 0.363210 0.294898 -0.684082 -0.597473 0.343181 0.651233 0.491009 -0.511036 -0.041183 -0.333794 -0.126540 -0.009605 0.058001 0.222020 -0.361535 -0.403157 -0.262123 0.174878 1.157469 -0.127132 -0.855811 0.317734 0.201239 -0.290115 -0.359577 -0.189456 -0.137477 0.042821 0.155966 -0.177734 0.482789 0.902740 -1.655378 0.706908 0.010977 -0.348647 0.584867 -0.235979 -0.128208 -0.455646 0.054966 0.699215 0.807147 0.015997 0.004394 0.000377 -0.631689 -0.024504 0.058729 0.446672 -0.300612 0.251879 0.307468 -0.705023 -0.506253 -0.412868 -0.112098 -0.160311 -0.350988 0.240551 -0.044237 -1.543935 0.892191 -0.093944 -0.027063 0.204657 -0.118148 0.336420 -0.665616 -0.792890 0.291271 0.028987 -0.247708 -0.304352 0.055568 0.581817 -0.077488 0.292394 -0.486184 -0.865292 0.334315 -0.134167 0.391729 0.263300 0.309102 0.568457 0.316911 -0.145286 -0.552433 -0.255110 0.338082 -0.134497 -0.302510 0.164840 -0.200614 0.561905 0.811565 -0.052346 -0.124827 -0.206899 0.784105 -0.371557 -0.214212 0.496978 -0.015178 -0.426513 0.177596 0.600618 -0.566342 -0.554488 -0.448634 -0.073074 -0.122235 -0.558791 0.254955 -0.376520 0.157137 0.397855 0.036150 -0.499034 0.330502 0.110251 -0.105998 -0.010624 0.900016 0.770345 -0.337588 0.393137 -0.514040 0.355619 -0.952949 -0.565362 0.051224 -0.283593 -0.230933 0.168472 -0.093379 0.538025 -0.128425 0.332537 0.021359 -0.181491 +PE-benchmarks/Nearly_sorted_Algo.cpp__printArray(int*, int) = -0.577240 -0.491907 0.233824 -1.496468 0.768027 0.538222 0.363181 -0.456817 -1.466881 -0.585834 0.415700 -1.466798 -0.439916 1.690003 -0.648018 0.968424 2.165541 0.400147 -0.604101 -0.326242 1.558831 -0.650306 1.931814 1.897199 -1.559712 -0.234792 0.186074 1.134003 0.644241 0.567062 0.267590 -0.811876 0.367311 -1.175021 0.155744 -1.243982 0.442608 0.551173 0.668714 -2.386799 0.312487 0.306830 0.385607 -0.344635 -0.353347 0.342116 1.038807 1.382223 -0.649847 0.370524 1.482969 0.358339 -0.190661 0.287025 0.041878 0.000258 0.300723 -0.033468 -0.606587 -0.397059 0.005460 -0.805697 0.499398 1.481178 1.980732 0.062480 0.154201 0.667610 0.308928 0.404689 0.811405 0.207217 -0.369550 0.073960 0.797307 -1.909234 -0.044377 -3.071595 -0.065184 -3.365824 -0.863514 -0.281447 1.259442 0.353429 0.520496 -0.065313 1.462626 -0.107173 -0.102470 1.543484 1.615639 -1.008664 -0.683535 -1.254015 -1.097197 0.817883 -0.937761 -0.024891 0.699343 0.553126 -1.117753 -0.655447 0.469413 0.582821 -0.558775 -0.797620 0.133709 1.228004 -1.405625 -1.015636 -0.334601 1.021144 -0.144243 -2.385624 -0.147252 -1.313132 0.793159 -0.000892 -0.317633 -0.987156 0.033636 0.791597 -0.392488 -0.412667 -1.069575 1.250340 0.652479 0.408984 0.146482 0.117966 0.294001 1.784707 0.581785 -0.973127 -0.155588 0.278263 -0.804807 0.251118 -1.313039 -0.663130 0.975934 -1.422795 0.104237 0.851450 -0.853623 -0.605367 1.015669 0.163139 0.725365 5.033352 0.176333 1.690708 1.080011 -1.345006 0.839723 -0.191913 0.027966 0.605149 0.720382 0.006272 -2.029492 -1.308574 0.594228 1.471194 1.121108 -1.381281 -0.723731 -0.240408 -0.163452 0.081406 -0.096206 0.422117 -0.403729 -1.056471 -0.317288 1.114938 2.592225 -0.294392 -0.297876 0.575583 0.975503 -1.038447 -1.816298 -0.431880 -1.047768 0.284830 0.116976 0.014042 0.961090 1.867877 -3.065076 1.317446 0.077046 0.239709 0.945523 0.076728 -1.304154 -2.511590 -0.034769 0.958389 1.693018 -0.486863 0.342877 0.661093 -1.333042 -0.030013 0.273262 0.230409 -0.425947 0.578881 0.029579 -0.724600 -0.971388 0.208928 -0.651211 -0.280423 -0.238789 0.806593 0.269635 -2.113887 1.451917 -0.382941 -0.576387 0.251182 -0.491755 1.158680 -1.660462 -1.453029 0.783025 0.022679 -0.633124 -1.002614 0.147134 1.052482 0.038822 0.192852 -0.708891 -1.757167 0.915724 -0.852946 0.980854 0.582406 -0.100265 1.047690 0.121001 -0.241956 -1.546619 -0.659279 -0.201603 -0.153183 -1.340031 -0.361219 -0.231392 1.292752 1.295515 -0.119555 -0.848550 0.336094 1.722902 -1.037517 -0.744795 0.844760 0.243721 -1.291152 0.448637 1.131746 -1.928476 -0.121447 -0.996459 -0.015095 -0.101467 -1.182960 0.918691 -0.031081 0.837343 0.139132 0.277344 -0.190466 0.713537 0.618253 0.188118 0.149077 2.120302 1.652380 -0.490997 -0.236864 -1.567788 0.509547 -1.940747 -1.735047 0.376599 0.243718 -0.835500 0.436737 0.251333 1.536800 0.314287 0.177538 -0.250303 0.193005 +PE-benchmarks/Nearly_sorted_Algo.cpp__main = -0.711457 -0.135745 1.158704 -2.180615 2.275017 1.288271 0.877864 -0.414652 -2.370244 -0.808102 0.401224 -2.578668 -1.518103 3.001108 -1.001689 1.286483 3.661971 0.664973 -0.879675 -0.352024 2.151748 -0.587102 3.437384 2.740970 -2.614910 0.021218 -0.093887 1.451951 0.257041 2.154473 -0.567769 -1.981707 0.959179 -1.169066 0.237353 -1.726280 0.303094 0.193002 0.499024 -3.940990 0.488995 1.085255 -0.109889 -0.513495 -0.191606 1.324513 2.581536 2.202614 -0.879397 0.737886 1.752569 0.367985 -0.008967 0.725914 0.495956 0.179413 1.223918 0.051744 -1.729112 -0.619957 -0.580554 -1.634873 0.163430 2.280216 3.096736 0.087671 -0.022528 0.781089 0.017898 0.675820 1.098525 0.516749 0.405670 0.365394 1.473639 -1.485765 -0.179316 -3.696117 -0.542106 -5.283950 -1.758250 -0.847426 2.222829 0.659511 0.710554 -0.795006 2.723961 -0.159605 -0.004940 2.037577 3.246863 -1.970735 -1.181957 -2.061054 -1.532496 0.827235 -1.371837 -0.307267 1.179962 0.181912 -2.182664 -1.210139 0.708184 0.517260 -0.849641 -0.616104 -0.003436 2.362289 -2.617804 -1.325087 -1.301553 1.344694 -0.099881 -3.963110 -0.699828 -1.078663 1.280678 0.415575 -0.515667 -1.517175 0.694979 1.443293 -1.089138 -0.640489 -1.438243 2.662395 0.921149 0.683728 0.509494 0.266208 0.589291 2.531150 1.620230 -1.335864 -0.259487 0.142634 -0.849002 0.543569 -1.625417 -0.776523 0.744536 -2.295150 0.421758 1.436913 -1.496522 -0.511128 0.072768 0.209113 1.228031 6.804771 -0.415116 2.639941 1.082741 -2.722412 1.529236 -0.251892 -0.312452 0.523453 1.355185 0.555861 -2.639315 -2.140834 1.516924 2.484347 1.900647 -2.742430 -0.169040 -0.628839 -0.068900 -0.088568 0.147542 1.053743 -0.120001 -1.937969 -0.584408 1.279766 4.788986 -0.947036 -2.570968 1.361748 0.845836 -0.807268 -2.230427 -0.819680 -0.734687 0.163189 0.589175 -0.303085 1.431513 3.288580 -5.154142 2.504272 -0.089225 -0.623855 2.192625 -0.074806 -1.680623 -2.742037 -0.488126 2.055833 2.937230 0.172798 -0.319269 0.426121 -2.152090 0.063258 0.367077 0.649584 -0.534073 1.111430 0.112476 -1.782324 -1.634406 -1.032681 -0.596269 -0.224639 -0.891756 1.232613 0.417013 -4.689064 2.723733 -0.272410 -0.868098 0.290061 -0.273963 1.740855 -2.219208 -2.891316 1.162033 -0.608714 -1.820273 -1.656484 0.177338 1.383347 0.503134 0.606934 -1.315968 -3.232956 2.015265 -0.876754 1.884846 1.155540 0.331135 2.399237 1.149964 -1.081788 -2.160339 -1.631430 0.855826 -0.621909 -1.697306 0.045567 -0.790863 2.207322 2.207621 -0.046886 -1.041123 -1.022189 2.813929 -1.852932 -0.941409 2.147414 0.145603 -1.899224 0.968874 2.521734 -2.432571 -0.737648 -1.527378 -0.264493 -0.881741 -1.753440 1.017950 -0.538692 0.774068 0.542485 0.260693 -0.996126 0.800434 0.427940 -0.119665 -0.224033 3.548457 3.215656 -1.700993 0.603949 -2.110937 1.471012 -3.280683 -2.723649 0.792541 -0.251518 -1.333931 0.543398 0.384852 2.092576 0.108459 -0.251723 -0.561750 0.101348 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::~vector() = -0.622249 0.729463 1.695859 -2.186029 2.370796 1.668952 0.356167 -0.429294 -1.344454 -0.657454 -0.542874 -1.630573 -1.556773 2.180059 -1.039502 0.629611 2.708112 0.255410 -0.633320 -0.347330 1.753303 0.053767 2.521070 1.523785 -2.337602 -0.088275 0.727576 1.638953 0.183831 2.524423 -1.360822 -1.904767 0.229426 -0.030459 0.724190 -1.294140 0.526757 -0.193958 -0.252658 -2.724460 0.308852 0.385165 -0.832449 -0.184509 -0.235129 0.659216 2.532414 1.720176 -0.918956 -0.421216 1.707977 1.258918 -0.374635 0.639494 0.159430 0.386813 1.638913 -0.115888 -1.000273 -0.676676 -0.411339 -0.987019 0.097540 1.915331 2.311839 0.150682 0.086619 0.644808 -0.078187 0.341790 0.315536 0.411191 0.519996 0.827480 0.976336 -0.875571 0.133945 -2.634148 -0.126758 -3.148340 -1.089438 -1.601625 0.362398 0.650997 0.523875 -0.712131 2.541899 -0.141305 0.500887 1.148071 2.745137 -1.725839 -0.607939 -2.374237 -1.476938 0.468507 -1.052493 -0.538539 -0.045873 0.296985 -1.301260 -1.410735 0.144513 0.115458 -0.690607 -0.264694 -0.470700 1.910865 -2.020446 -0.649224 -1.611554 1.006448 -0.181093 -3.092852 -1.060057 -0.926476 1.130798 -0.410273 0.152161 -1.662402 0.476271 1.949728 -1.138663 -0.430924 -1.198474 2.206065 1.301533 -0.377540 0.247832 -0.276886 0.567187 1.683483 1.474645 -1.110047 -0.971769 0.268360 -0.904386 -0.594182 -1.624967 0.171078 0.451308 -1.757808 0.203309 1.830086 -0.958083 -0.028336 -0.212949 -0.950667 1.634488 5.804222 -0.797479 1.072531 0.013048 -2.391557 1.294952 0.263233 -0.841381 0.259160 0.653697 0.961683 -2.287277 -1.789467 1.407022 1.730243 1.403202 -1.797332 0.290324 -0.893347 -0.312048 -0.321956 -0.189896 1.085672 -0.982921 -1.034787 -0.769275 0.729392 3.650782 -0.581972 -2.877735 1.487355 0.846900 -0.774652 -0.973715 -0.816840 -0.491177 -0.174115 0.972521 -0.436571 1.518028 2.759912 -4.463159 1.859419 0.423067 -1.197004 1.736013 -0.783568 -0.247535 -0.882524 0.024021 2.282249 2.131751 0.013180 -0.046824 -0.393433 -1.689318 0.215532 0.429137 1.206612 -0.545416 0.505660 0.692805 -1.932454 -1.555271 -1.239927 -0.703829 -0.149678 -1.060411 0.607709 -0.531017 -4.523711 2.849116 -0.339312 0.055986 0.600696 -0.583082 1.358242 -1.816816 -2.359973 1.141790 0.052068 -0.682801 -0.782652 0.438806 1.647550 0.169051 1.104963 -1.632342 -3.111464 0.943701 -0.216170 1.133231 0.691111 1.159896 1.599911 0.736603 -0.489158 -1.855667 -1.278858 1.226686 0.162185 -1.109420 0.193488 -0.359524 1.778109 2.043340 -0.397809 -0.311005 -1.043582 1.931172 -1.365695 -0.566792 1.504338 0.089254 -1.794686 0.278575 1.854224 -1.324034 -1.679783 -1.386507 0.019980 -0.765978 -1.901856 0.324803 -1.021550 0.309110 1.450839 0.043664 -1.427335 0.849190 0.340400 -0.327434 -0.365178 2.724610 2.365865 -1.137242 0.906778 -1.670159 1.298001 -2.898819 -2.053407 0.601950 -1.204152 -0.501191 0.451152 0.074529 1.570996 -0.642426 0.953095 0.095298 -0.794236 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/Nearly_sorted_Algo.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::~_Vector_base() = -0.582019 0.612970 1.082853 -2.256830 2.580469 1.937201 0.466930 -0.652778 -1.388706 -0.368744 -0.225613 -2.455122 -1.392869 1.775628 -0.987439 1.159305 2.713655 -0.131940 -0.769956 -0.100032 1.298257 1.083696 2.838648 1.691631 -2.074715 0.046089 0.101143 1.250966 -0.452158 1.884409 -1.635254 -2.234647 0.373133 -0.279639 0.082014 -0.493217 0.234793 -0.544329 0.630636 -2.417467 0.424142 0.569841 -0.672077 -0.311226 -0.301559 0.038505 2.716254 1.703661 -0.485776 -0.392502 1.666070 1.117388 -0.158610 0.649214 0.238520 0.395515 1.562302 -0.511166 -1.062817 -1.234690 -0.462754 -0.133024 -0.218974 1.825449 1.962768 0.297977 -0.376275 0.758532 0.274785 0.126448 0.426859 0.633626 0.388535 1.039122 0.792118 -0.386875 0.356284 -1.676022 -0.229482 -1.987527 -1.378974 -1.103436 0.367736 0.989544 0.936661 -0.778109 2.606832 -0.534294 0.412757 0.742091 2.554915 -2.031120 -0.744157 -1.936917 -1.209245 0.175571 -0.836925 -0.358143 -0.157506 0.336962 -1.572954 -0.974045 0.144226 0.210228 -0.703250 -0.320651 0.081337 1.185294 -1.498526 -0.770682 -1.442884 1.408315 -0.000316 -3.152789 -1.576108 -0.406943 0.485368 -0.376437 -0.294161 -2.076141 0.499901 1.444219 -1.364701 -0.481978 -1.099850 1.881787 1.609098 0.011871 0.571715 -0.066947 1.001795 2.547869 0.920176 -1.206752 -0.764785 -0.057078 -0.496393 -0.193568 -1.027260 0.007167 -0.442693 -1.880224 0.791637 2.117841 -1.051332 0.327052 -0.873067 -0.458595 1.154878 5.542487 -0.992550 1.584999 0.403640 -2.356161 1.165502 -0.479648 -0.838101 -0.245218 0.346409 1.094483 -1.990290 -1.752145 1.857863 1.841826 1.422109 -1.815134 1.163949 -0.209423 0.075905 -0.490064 -0.145290 1.131605 -0.131545 -1.259921 -0.650158 1.213455 4.160189 -0.469962 -2.629788 1.717578 0.898165 -0.029696 -0.408535 -1.046926 -0.838909 -0.187707 1.505270 0.052477 1.383977 2.809575 -3.603838 1.590838 0.562028 -1.213460 2.231356 -0.329431 -0.788385 0.040018 -0.328683 2.142900 1.978959 -0.114328 0.093921 -0.556635 -1.437624 0.094168 0.542426 0.849517 -0.572749 0.578542 0.743983 -2.050839 -1.125784 -1.438368 -0.670263 -0.018275 -1.262714 0.848887 -0.285249 -4.150224 2.794587 0.302318 -0.269741 0.404521 -1.128441 1.605692 -1.620628 -2.009009 1.283527 -0.502090 -0.459808 -0.120996 0.501057 1.095501 0.601822 1.751133 -1.949466 -2.694838 1.385001 0.428719 1.626374 0.807528 0.850803 0.837754 0.287832 -0.478655 -1.366664 -1.757536 1.170391 0.418813 -1.489321 0.413581 -0.630252 1.834131 1.729846 -0.619907 -0.565706 -1.381538 1.322161 -1.513673 -0.021802 1.469843 0.071764 -2.277760 0.010360 1.878620 -1.012219 -1.107114 -1.333113 -0.003105 -1.413419 -1.960283 0.251626 -0.710900 0.370094 1.444164 -0.332802 -1.148049 0.565030 0.169138 -0.379151 -0.134920 2.543142 1.671218 -0.518549 0.800129 -1.950771 1.295266 -2.778561 -2.430289 1.244914 -1.552990 -1.275788 -0.007452 0.187490 1.774051 -0.811708 0.690016 -0.332553 -0.332482 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*) = -0.176293 0.026629 0.390352 -0.416211 0.314245 -0.008696 0.135938 -0.087588 -0.414762 -0.254077 -0.060469 -0.219945 -0.261283 0.539907 -0.236817 0.152405 0.823959 0.375031 -0.075180 -0.338845 0.432011 -0.488645 0.708703 0.744680 -0.630179 0.008633 0.331354 0.485841 0.321554 0.478770 -0.223270 -0.190809 0.209986 -0.269318 0.281477 -0.676664 0.099342 0.145256 -0.041362 -0.978668 0.073976 -0.178469 0.088288 -0.015512 -0.033144 0.524209 0.509541 0.446696 -0.236014 0.239154 0.458525 0.177976 0.022114 0.160122 0.099124 0.222295 0.428149 0.054028 -0.195442 0.033136 -0.072694 -0.616589 0.179564 0.525653 0.723856 -0.008338 0.069060 0.087917 0.021188 0.121496 0.219561 0.112838 0.012520 0.055417 0.280442 -0.813839 0.123815 -1.270090 -0.128191 -1.563150 -0.346151 -0.409441 0.342736 -0.210573 0.182764 0.216096 0.618247 0.071050 0.170767 0.255528 0.615626 -0.489032 -0.206919 -0.308793 -0.280577 0.268718 -0.324339 -0.043245 0.232941 0.120955 -0.352915 -0.452498 0.438545 0.106477 -0.250514 -0.130336 -0.087218 0.525208 -0.713085 -0.333603 -0.531532 0.001587 -0.104023 -0.734295 0.279403 -0.447237 0.735960 0.046015 -0.078535 -0.407260 0.081135 0.478273 -0.135369 -0.161326 -0.350781 0.506722 0.166150 -0.073967 0.039771 -0.077158 -0.028448 0.485407 0.542908 -0.340146 -0.171703 0.233115 -0.518455 -0.109990 -0.593141 -0.169479 0.483739 -0.500092 0.038403 0.215287 -0.354233 -0.194611 0.653854 -0.120981 0.392061 1.338307 -0.031238 0.322982 0.225635 -0.526307 0.234278 0.002179 -0.003113 0.328046 0.464523 0.108842 -0.670600 -0.474493 0.048282 0.526434 0.379443 -0.547596 -0.468301 -0.320109 -0.022276 0.136983 -0.008329 0.105723 -0.261443 -0.316072 -0.126990 0.099060 0.825188 -0.186503 -0.325747 0.070262 0.060461 -0.435803 -0.761467 -0.138476 -0.238706 0.077958 -0.120476 -0.067821 0.271878 0.660174 -1.416199 0.536079 -0.251343 -0.107629 0.357728 -0.034994 -0.161000 -0.876897 0.135313 0.389336 0.652298 -0.022532 0.085638 0.225021 -0.551151 -0.062183 -0.029155 0.349406 -0.275998 0.266004 0.225746 -0.468376 -0.366384 -0.068705 0.042474 -0.201167 0.005453 0.253352 0.025201 -1.232192 0.536281 -0.252471 -0.195416 0.300154 -0.010637 0.289939 -0.617883 -0.583163 0.240636 0.107834 -0.133029 -0.445150 0.023500 0.515758 -0.235111 -0.044024 -0.262802 -0.611497 0.225339 -0.297666 0.223449 0.241997 0.111222 0.643076 0.011509 -0.145403 -0.551084 0.155327 -0.111093 -0.305016 -0.193843 -0.071016 -0.131545 0.435310 0.801696 0.045399 0.030924 0.194086 0.734075 -0.557485 -0.318636 0.379643 0.395089 -0.155974 0.362212 0.422298 -0.683109 -0.392819 -0.292530 -0.169687 0.176660 -0.365701 0.397994 -0.377729 0.200076 0.210597 0.113270 -0.208781 0.399864 0.092720 0.072533 -0.046926 0.700692 0.995080 -0.346377 0.078687 -0.380483 0.175520 -0.741639 -0.366266 -0.074527 0.158401 -0.182566 0.224446 0.013571 0.476264 0.039498 0.053865 -0.041793 -0.145339 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy_aux::__destroy(int*, int*) = -0.051742 -0.051394 0.200021 -0.141315 0.082734 -0.149221 0.066493 -0.020527 -0.230454 -0.074713 -0.040334 -0.089257 -0.025904 0.218819 -0.053423 0.158347 0.360080 0.251421 -0.028870 -0.178132 0.144572 -0.434863 0.274426 0.346587 -0.234198 0.055741 0.067473 0.256653 0.148097 0.305352 -0.191572 0.054845 0.056209 -0.180472 0.177787 -0.384272 0.025023 0.176134 -0.002452 -0.506882 0.041300 -0.009156 0.310313 0.000109 0.004826 0.252892 0.152799 0.176452 -0.037359 0.191934 0.149988 -0.069843 0.144149 0.080088 0.115511 0.231875 0.359491 -0.017313 -0.139306 0.092185 -0.016090 -0.401737 0.165833 0.173067 0.319767 -0.044135 0.013539 0.005690 0.034157 0.029334 0.163483 0.046515 -0.137462 -0.070356 0.081928 -0.449338 0.242981 -0.489019 -0.041493 -0.711914 -0.175023 -0.167142 0.198862 -0.033240 0.136634 0.142202 0.268770 -0.026604 0.076134 -0.086823 0.189909 -0.260327 -0.101198 -0.058993 -0.065919 0.114841 -0.126878 -0.144015 0.203026 0.077315 -0.121230 -0.139641 0.401670 0.084931 -0.121330 0.065166 -0.047397 0.226198 -0.351651 -0.284011 -0.248234 -0.074419 -0.112518 -0.229209 0.405479 -0.211296 0.185410 0.059263 -0.034618 -0.203725 0.049756 0.188756 -0.040888 -0.056712 -0.381885 0.270690 -0.026396 -0.083227 0.036714 -0.038877 -0.083050 0.170560 0.222393 -0.179438 -0.070976 0.208752 -0.299792 -0.035306 -0.266392 -0.192657 0.200836 -0.271141 -0.125164 -0.029914 -0.166839 0.076245 0.304797 0.072539 0.142531 0.390873 0.019438 0.119517 0.101644 -0.176995 0.245824 0.068797 0.055989 0.177662 0.229982 -0.017610 -0.329969 -0.215888 -0.076109 0.215610 0.165061 -0.184647 -0.365334 -0.199569 0.026399 0.221676 0.003383 0.028372 -0.099128 -0.158774 -0.027498 -0.137819 0.407607 -0.070097 -0.016560 0.003793 -0.169252 -0.338795 -0.549271 -0.063478 -0.215370 0.009032 -0.366309 -0.024099 0.050022 0.254730 -0.583699 0.296593 -0.247100 -0.094422 0.306985 -0.129800 -0.022248 -0.610856 -0.021070 0.078305 0.356767 -0.063601 0.008200 0.167989 -0.243182 -0.030470 -0.108818 0.138040 -0.144573 0.134306 0.066713 -0.206800 -0.076963 -0.031235 0.077041 -0.147342 0.045018 0.110213 0.153338 -0.389592 0.127365 -0.115960 -0.110126 0.258887 0.137181 -0.012881 -0.243035 -0.168522 0.055035 0.110018 -0.001284 -0.269707 -0.009676 0.207906 -0.238112 -0.250198 -0.059582 -0.188294 0.049142 -0.243220 0.039798 0.126129 -0.054736 0.171920 0.301731 -0.088695 -0.158008 0.263402 -0.362928 -0.292481 0.045069 -0.047641 -0.083025 0.193643 0.384039 0.146299 0.160088 0.168661 0.383965 -0.155695 -0.200560 0.191619 -0.028297 0.012077 0.163508 0.194541 -0.352385 -0.155301 -0.107653 -0.136668 0.183760 -0.048921 0.255465 -0.191521 0.072008 0.042539 0.018959 -0.081505 0.197587 0.032194 -0.027715 -0.073931 0.419747 0.328974 -0.068160 0.069586 -0.102169 0.005416 -0.261333 0.029454 -0.154726 0.295533 -0.192940 0.149159 0.149712 0.205252 0.061965 -0.025593 -0.007892 -0.140095 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -0.742111 0.019738 0.633042 -1.186518 1.352118 0.882871 0.640190 -0.484628 -1.304841 -0.592065 0.014809 -1.239934 -1.008427 2.160358 -0.578116 1.282645 2.860623 0.848509 -0.413202 -0.437184 1.777195 -1.185567 2.514086 2.250645 -1.825964 -0.107903 0.969133 0.958872 0.274512 1.378381 -0.842324 -1.302795 1.036002 -1.661465 0.382083 -1.672752 0.279766 0.272789 0.726308 -2.961510 0.257267 -0.119457 -0.067857 -0.409254 -0.517898 0.613570 1.891632 1.649203 -0.654732 0.568506 1.183503 0.096723 -0.120589 0.594123 0.559167 0.843020 0.550522 0.576645 -1.046856 -0.314441 -0.446695 -1.498369 0.335465 1.674941 2.297508 0.034033 0.124764 0.931802 -0.239140 0.363990 0.520983 0.371611 0.278678 0.158604 1.167662 -2.494150 -0.299344 -3.729492 -0.751981 -4.358050 -1.263667 -0.986860 0.779051 -0.651400 1.253916 0.132598 2.066193 -0.102288 0.251326 1.034650 2.595981 -2.152249 -0.906019 -1.466847 -0.819452 0.594309 -1.207457 -0.078280 1.263714 -0.530254 -1.595074 -1.791592 1.155688 0.813571 -0.678199 -1.247963 -0.041377 1.878679 -1.793102 -1.673183 -1.642550 0.035624 -0.716145 -2.848556 0.286809 -0.784243 1.430198 0.532350 -0.583966 -2.142072 0.527449 1.716466 -0.531203 -1.480206 0.193453 1.800799 0.819977 0.209626 0.473149 -0.046098 0.279111 2.511917 2.108012 -0.944992 -0.268315 0.300497 -1.414719 0.118007 -1.497620 -0.877819 0.924539 -1.921507 0.032479 1.407174 -1.259911 -0.170580 2.045091 -0.089602 1.143507 5.135057 -0.254151 1.436481 0.779369 -2.225800 1.264061 -0.479524 -0.285320 0.519089 1.446989 0.541923 -2.778080 -1.629939 0.871676 1.963580 1.445304 -2.181786 -1.337541 -1.011825 0.221272 -0.022247 -0.102447 0.731440 -0.179838 -1.391699 -0.366895 0.987600 3.397502 -1.520755 -1.607097 0.905275 0.508548 -0.824340 -2.785997 -0.775320 -1.574914 0.113067 0.004062 -0.240649 0.916860 2.449357 -3.822492 1.803584 -0.880789 -0.716499 1.649337 0.287947 -1.058506 -2.435837 0.219830 1.680294 2.089285 0.181560 0.285644 0.313170 -1.815644 -0.148162 0.043105 0.868361 -0.563588 0.974480 0.050021 -1.631826 -1.408821 -0.082796 -0.206983 -1.231317 -0.001866 0.939376 0.520797 -3.551737 2.171789 -0.255084 -0.668273 0.980540 -0.080355 1.455923 -1.969000 -2.477673 1.208267 -0.074563 -0.352462 -0.898268 0.149454 1.423977 0.195486 -0.114778 -0.811684 -2.517173 1.068764 -0.417353 1.392641 0.752881 0.487085 2.103539 0.062239 -1.011918 -1.848580 -0.508995 -0.111032 -0.606147 -1.280879 -1.387494 -0.433234 1.987895 2.229103 0.170836 -0.385858 -0.417534 2.125455 -2.381276 -0.525451 1.673876 1.391648 -1.203948 0.362138 1.829647 -2.005715 -1.003279 -0.830091 -0.229686 -0.270240 -1.634290 0.682742 -1.049060 0.589607 0.578398 0.079004 -0.311181 0.827446 0.570874 0.404751 -0.266723 2.151989 2.677646 -1.592719 -0.260340 -1.595236 0.787871 -2.633930 -1.970427 0.567362 0.528717 -0.988015 0.378964 0.685726 1.432783 -0.102878 -0.142013 -0.282362 -0.714009 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector(int*, int*, std::allocator const&) = -0.832262 0.709642 1.454004 -2.391782 3.521950 1.789686 1.285638 -0.655148 -1.776420 -1.187454 -0.205281 -1.828361 -2.287508 2.922099 -1.269960 1.782088 4.039410 0.498561 -0.336229 -0.778998 3.150709 -1.506293 4.476849 2.880572 -3.811162 0.058363 0.872540 1.937788 0.226587 3.271455 -1.539422 -2.109361 1.675227 -1.879907 1.210900 -2.205848 0.615780 -0.167868 0.236300 -4.169439 0.181121 0.133281 -0.671820 0.033103 -0.656102 1.569222 3.662428 2.709630 -1.661371 0.643223 2.381485 0.384755 0.095888 1.434509 0.354760 0.795086 1.229185 0.394563 -1.911187 -0.930077 -1.167545 -2.838392 0.767870 2.664173 3.804821 -0.160269 0.436213 1.660379 -0.818026 0.636510 1.043249 1.034451 0.835666 0.113903 2.575070 -2.904223 -0.311558 -5.073979 -1.414299 -6.756094 -2.175447 -2.671444 0.813075 -0.288138 2.291809 -0.456221 3.665236 0.311105 0.814249 1.604408 3.750028 -3.351253 -1.030629 -2.983169 -1.519958 0.343799 -1.858260 -0.441611 1.513358 -0.498194 -2.418451 -2.100153 1.411951 0.712824 -0.890848 -2.086087 -0.762535 2.834583 -3.132008 -2.110748 -2.979336 0.462916 -1.201733 -4.842225 0.365516 -1.107212 2.386147 0.097250 0.449339 -2.543555 0.675832 3.192962 -1.145309 -1.956491 -0.557243 3.508270 1.983099 0.291136 1.066114 0.022451 -0.047574 3.515526 3.910417 -0.868129 -1.517713 0.163552 -1.736103 0.216286 -1.953365 -0.373297 1.788657 -3.105355 -0.101856 2.370521 -1.285101 -0.060513 1.974736 -0.771370 2.464406 7.730009 -0.740370 2.225461 0.829812 -3.620679 2.159314 -0.240798 -0.344525 1.316451 2.064768 0.534820 -4.104457 -2.824952 1.610589 2.391624 1.885128 -3.795192 -1.174297 -1.445284 0.422252 -0.315687 -0.963470 1.581911 -0.311443 -2.225612 -0.369698 0.977364 5.573095 -2.047723 -3.072966 2.361898 0.747898 -1.667871 -3.544666 -1.818850 -1.872778 -0.225194 0.488157 -0.418763 1.203628 3.917614 -5.807575 2.575973 -1.052206 -1.213395 2.792821 -0.334384 -0.819518 -3.307820 0.225284 2.754737 2.758745 0.173005 0.018448 0.083237 -2.570815 0.659955 0.032153 1.551884 -0.705138 1.188776 0.018486 -2.788649 -2.611965 -1.486742 -0.512491 -0.738048 -0.390415 1.069492 0.469050 -6.219171 3.374158 -0.854307 -1.285546 1.657290 -0.001709 2.571741 -2.468005 -3.778129 1.954017 -0.593123 -1.246761 -2.151082 0.883659 1.973953 0.246667 -0.112639 -1.940926 -4.513642 1.944458 -0.771914 1.763878 1.415163 1.647756 3.761135 0.818351 -2.057984 -3.437528 -1.466902 0.370179 -0.752934 -2.112048 -1.258409 -0.734623 2.900882 3.648420 0.257808 0.116066 -0.811836 3.596668 -3.696320 -1.204427 3.297336 1.791750 -2.144550 0.995415 3.326665 -2.354986 -2.478492 -1.472220 -0.001125 -0.339823 -2.768030 1.078370 -1.878452 0.841931 1.276672 0.569999 -1.239100 1.260449 0.421739 0.610384 -1.369916 4.158364 4.613052 -2.699917 -0.206947 -2.028988 1.411750 -4.312367 -2.950187 0.909444 0.020111 -0.713190 1.206063 1.112149 2.697095 -0.262667 -0.265477 -0.130635 -1.621042 +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.470510 0.474671 0.704510 -0.668804 1.549682 0.883857 0.799821 0.338320 -1.323733 -1.117988 -0.058121 -2.076207 -2.033916 2.227603 -0.401307 0.603325 2.980033 0.856269 -0.237275 -0.041759 0.812655 -0.570199 2.554669 2.224517 -1.550341 0.186188 -0.115811 0.494513 -0.792311 1.862455 -0.558889 -2.536609 1.245151 -0.371794 0.392456 -1.007362 -0.088835 -0.184651 -0.305187 -3.077361 0.199926 1.440316 0.013946 -0.493530 -0.129648 0.804998 2.518024 1.484338 -0.136953 0.585472 0.458824 0.020746 0.282761 0.645557 0.831170 0.194593 0.141016 -0.534654 -1.835821 -0.098273 -0.708955 -1.860124 -0.800623 1.416708 2.054914 0.112578 -0.181343 0.090351 -0.844065 0.585107 0.268312 0.408929 1.353371 0.315696 1.075025 -0.043810 -0.682774 -1.872724 -0.713248 -4.352165 -1.622793 -1.114191 1.958388 1.135569 0.532809 -1.221261 2.092476 -0.227781 0.374392 1.017002 3.114355 -1.766069 -1.126625 -1.418162 -0.221412 0.604433 -1.119625 -0.195865 1.083146 -0.709891 -1.905066 -1.170514 0.828411 0.149306 -0.568733 -0.385951 -0.081647 1.897914 -2.139682 -0.764987 -2.267606 0.072056 0.320113 -2.821723 -0.192344 0.317330 0.087425 1.218577 -0.966341 -1.226463 1.030304 0.891902 -0.745498 -0.875396 -0.836925 2.318552 0.158646 0.180101 0.838082 0.691643 0.677669 2.008031 1.639240 -0.635259 -0.009224 0.108458 -0.704091 0.287947 -0.849951 -0.789407 0.078837 -1.784726 0.338754 0.834320 -1.407734 -0.227186 -1.082483 -0.091827 1.023324 3.581126 -0.691454 1.582169 0.471408 -2.160396 1.734913 -0.624990 -0.635024 -0.256201 1.438302 0.996136 -1.058190 -1.361013 1.266270 2.144605 1.437144 -1.755029 0.259904 -0.695648 0.567993 -0.535297 0.606847 0.933305 0.661856 -1.482718 -0.350664 1.098074 3.441929 -1.298262 -2.245185 0.915927 0.367546 0.574543 -1.483722 -0.473018 -0.487419 -0.070714 0.394838 -0.274168 0.683463 2.476580 -3.072390 2.047761 -0.370503 -0.914693 1.811863 0.029515 -0.965493 -1.705860 -0.088243 1.979528 2.351465 0.881701 -0.103523 -0.389703 -1.736697 -0.308015 0.194656 0.984425 -0.442681 1.074533 -0.348910 -1.541739 -1.382244 -1.483624 -0.268027 -0.759675 -0.783493 0.836140 1.624825 -3.577156 2.352353 0.117950 -0.733949 -0.070825 0.175626 1.071278 -1.716341 -2.649872 0.725194 -1.133964 -2.053711 -0.653837 -0.145557 0.751231 0.393461 -0.167980 -0.351736 -2.216222 2.313091 0.386606 1.799331 0.852031 0.617112 2.240901 1.801151 -1.538503 -0.764522 -1.583111 1.007200 -1.454533 -0.945372 0.020433 -0.760141 1.650802 2.167548 0.255581 -0.797728 -1.362983 1.951299 -1.575590 -0.565016 2.099803 0.044232 -0.666348 0.773299 2.247974 -1.695480 -1.025172 -1.340992 -0.085697 -0.732293 -1.607193 0.032341 -1.437629 0.165638 0.932678 -0.332050 -1.012069 0.390624 0.182244 -0.423396 -0.439754 2.353576 1.919624 -1.861891 1.046676 -1.543681 1.101169 -2.502267 -1.893117 0.501509 0.195303 -0.997396 0.011539 0.501218 0.726427 -0.318214 -0.599306 -0.974094 -0.206568 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() = -0.204025 0.506859 0.595250 -0.508978 0.820128 0.832812 0.235480 -0.218893 -0.447005 -0.260056 -0.162057 -0.813828 -0.712568 0.892766 -0.359093 0.204598 1.179806 0.232324 -0.168892 0.014166 0.351268 0.054653 1.096602 0.905273 -0.736474 0.079237 0.268334 0.246843 -0.330140 1.119490 -0.660862 -1.169529 0.337689 0.007473 0.144448 -0.392027 -0.076923 -0.272219 0.006207 -1.196263 0.085324 0.335178 -0.245667 -0.207632 -0.007172 -0.049526 1.273455 0.583717 0.015199 -0.033416 0.266676 0.455631 -0.005139 0.223524 0.499678 0.277716 0.650148 -0.195506 -0.504442 -0.158574 -0.314880 -0.330861 -0.317538 0.784672 0.835344 0.215515 -0.048911 -0.077420 -0.347174 0.106714 -0.061729 0.225510 0.350493 0.599467 0.210524 -0.107017 0.116811 -0.673964 -0.195826 -1.015915 -0.568508 -0.523588 0.166223 0.473809 0.389274 -0.331474 0.951295 -0.113506 0.253716 0.149641 1.367837 -0.862778 -0.322051 -0.517866 -0.381434 0.079500 -0.354937 0.013075 -0.118098 -0.315632 -0.723098 -0.732277 0.300743 0.193126 -0.281195 0.048538 -0.015777 0.711406 -0.790237 -0.305295 -0.755110 -0.016463 -0.111891 -1.232375 -0.448390 -0.099648 0.159043 0.233678 -0.392394 -0.944497 0.433431 0.716869 -0.380139 -0.445545 -0.306881 0.844280 0.325320 -0.047529 0.138317 -0.093826 0.357546 0.910831 0.564920 -0.322093 0.011444 -0.084366 -0.313376 -0.123893 -0.367809 -0.071096 -0.320171 -0.641937 0.115416 0.740770 -0.536871 0.114867 -0.437074 -0.270421 0.498295 2.101443 -0.511491 0.568194 0.021918 -1.159507 0.514394 -0.168952 -0.436686 -0.217292 0.447449 0.641750 -0.817345 -0.597814 0.643687 0.902495 0.556033 -0.607252 0.254242 -0.337461 -0.033078 -0.217532 0.258217 0.247576 -0.082083 -0.596529 -0.302301 0.412968 1.600056 -0.448143 -1.230989 0.447274 0.056817 0.183864 -0.261977 -0.203393 -0.206295 0.082731 0.305208 -0.229413 0.474015 1.048752 -1.567460 0.841665 -0.135843 -0.707196 0.924714 -0.108499 -0.277956 0.012995 0.115534 1.006854 0.855428 0.284786 -0.026950 -0.283011 -0.723758 -0.155177 0.060116 0.534536 -0.369932 0.425258 0.296535 -1.072780 -0.675145 -0.653109 -0.015585 -0.466887 -0.572847 0.300555 0.171816 -1.758012 1.224623 0.295812 -0.062694 0.102645 -0.175148 0.362721 -0.738711 -1.121054 0.344820 -0.309476 -0.305904 0.060018 -0.093446 0.436838 0.246875 0.404808 -0.579383 -0.959045 0.567275 0.245962 0.715730 0.340808 0.507242 0.664713 0.432610 -0.369354 -0.425295 -0.606240 0.657961 -0.187294 -0.480345 0.039606 -0.398305 0.759212 0.947881 -0.063508 -0.287080 -0.679505 0.703186 -0.522066 0.038107 0.675315 0.049619 -0.596841 -0.135586 0.761647 -0.407156 -0.589534 -0.431853 -0.125503 -0.491554 -0.772732 0.002816 -0.556048 0.068890 0.549270 -0.175142 -0.578661 0.173925 0.028541 -0.107684 0.064552 0.769821 0.563952 -0.546311 0.521361 -0.653247 0.491634 -1.124597 -0.868921 0.310353 -0.351925 -0.416922 -0.120211 -0.043120 0.419047 -0.237238 0.215807 -0.057181 -0.209000 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() = -0.204025 0.506859 0.595250 -0.508978 0.820128 0.832812 0.235480 -0.218893 -0.447005 -0.260056 -0.162057 -0.813828 -0.712568 0.892766 -0.359093 0.204598 1.179806 0.232324 -0.168892 0.014166 0.351268 0.054653 1.096602 0.905273 -0.736474 0.079237 0.268334 0.246843 -0.330140 1.119490 -0.660862 -1.169529 0.337689 0.007473 0.144448 -0.392027 -0.076923 -0.272219 0.006207 -1.196263 0.085324 0.335178 -0.245667 -0.207632 -0.007172 -0.049526 1.273455 0.583717 0.015199 -0.033416 0.266676 0.455631 -0.005139 0.223524 0.499678 0.277716 0.650148 -0.195506 -0.504442 -0.158574 -0.314880 -0.330861 -0.317538 0.784672 0.835344 0.215515 -0.048911 -0.077420 -0.347174 0.106714 -0.061729 0.225510 0.350493 0.599467 0.210524 -0.107017 0.116811 -0.673964 -0.195826 -1.015915 -0.568508 -0.523588 0.166223 0.473809 0.389274 -0.331474 0.951295 -0.113506 0.253716 0.149641 1.367837 -0.862778 -0.322051 -0.517866 -0.381434 0.079500 -0.354937 0.013075 -0.118098 -0.315632 -0.723098 -0.732277 0.300743 0.193126 -0.281195 0.048538 -0.015777 0.711406 -0.790237 -0.305295 -0.755110 -0.016463 -0.111891 -1.232375 -0.448390 -0.099648 0.159043 0.233678 -0.392394 -0.944497 0.433431 0.716869 -0.380139 -0.445545 -0.306881 0.844280 0.325320 -0.047529 0.138317 -0.093826 0.357546 0.910831 0.564920 -0.322093 0.011444 -0.084366 -0.313376 -0.123893 -0.367809 -0.071096 -0.320171 -0.641937 0.115416 0.740770 -0.536871 0.114867 -0.437074 -0.270421 0.498295 2.101443 -0.511491 0.568194 0.021918 -1.159507 0.514394 -0.168952 -0.436686 -0.217292 0.447449 0.641750 -0.817345 -0.597814 0.643687 0.902495 0.556033 -0.607252 0.254242 -0.337461 -0.033078 -0.217532 0.258217 0.247576 -0.082083 -0.596529 -0.302301 0.412968 1.600056 -0.448143 -1.230989 0.447274 0.056817 0.183864 -0.261977 -0.203393 -0.206295 0.082731 0.305208 -0.229413 0.474015 1.048752 -1.567460 0.841665 -0.135843 -0.707196 0.924714 -0.108499 -0.277956 0.012995 0.115534 1.006854 0.855428 0.284786 -0.026950 -0.283011 -0.723758 -0.155177 0.060116 0.534536 -0.369932 0.425258 0.296535 -1.072780 -0.675145 -0.653109 -0.015585 -0.466887 -0.572847 0.300555 0.171816 -1.758012 1.224623 0.295812 -0.062694 0.102645 -0.175148 0.362721 -0.738711 -1.121054 0.344820 -0.309476 -0.305904 0.060018 -0.093446 0.436838 0.246875 0.404808 -0.579383 -0.959045 0.567275 0.245962 0.715730 0.340808 0.507242 0.664713 0.432610 -0.369354 -0.425295 -0.606240 0.657961 -0.187294 -0.480345 0.039606 -0.398305 0.759212 0.947881 -0.063508 -0.287080 -0.679505 0.703186 -0.522066 0.038107 0.675315 0.049619 -0.596841 -0.135586 0.761647 -0.407156 -0.589534 -0.431853 -0.125503 -0.491554 -0.772732 0.002816 -0.556048 0.068890 0.549270 -0.175142 -0.578661 0.173925 0.028541 -0.107684 0.064552 0.769821 0.563952 -0.546311 0.521361 -0.653247 0.491634 -1.124597 -0.868921 0.310353 -0.351925 -0.416922 -0.120211 -0.043120 0.419047 -0.237238 0.215807 -0.057181 -0.209000 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base(std::allocator const&) = -0.254869 0.161417 0.626257 -0.651114 0.565745 0.290721 0.198434 -0.195442 -0.562763 -0.276819 -0.097380 -0.437847 -0.429457 0.824162 -0.368701 0.206553 1.204259 0.432202 -0.174453 -0.344053 0.619771 -0.462277 1.039833 1.030336 -0.887345 0.001817 0.480319 0.598803 0.302003 0.799786 -0.481132 -0.466352 0.273494 -0.316997 0.340072 -0.819767 0.094131 0.040768 0.002618 -1.334235 0.113854 -0.163098 -0.050199 -0.090614 -0.049444 0.535365 0.894746 0.636539 -0.277977 0.152693 0.594300 0.317674 -0.032869 0.211557 0.252973 0.332354 0.701072 0.175966 -0.299369 -0.046978 -0.165855 -0.643940 0.152549 0.803612 0.994880 0.082591 0.070517 0.088301 0.000000 0.135051 0.201444 0.170167 0.099497 0.260739 0.359966 -0.964186 0.190455 -1.600444 -0.169815 -1.837780 -0.494329 -0.558486 0.325559 -0.235819 0.315485 0.113995 0.902078 0.033306 0.242319 0.318355 1.031318 -0.759669 -0.294688 -0.515933 -0.474079 0.282461 -0.428348 -0.021374 0.236936 0.000169 -0.573577 -0.699549 0.507180 0.208729 -0.336129 -0.116245 -0.073241 0.763026 -0.871238 -0.434896 -0.709927 0.022862 -0.165994 -1.144767 0.106525 -0.571954 0.864027 0.056616 -0.198021 -0.747117 0.185370 0.766684 -0.275990 -0.313342 -0.366524 0.798651 0.330421 -0.074558 0.041195 -0.163395 0.077710 0.742787 0.757442 -0.466639 -0.164865 0.189261 -0.687121 -0.174012 -0.762095 -0.172169 0.474138 -0.669027 0.032614 0.494679 -0.512420 -0.129909 0.724792 -0.190613 0.560606 2.230430 -0.191532 0.512887 0.222016 -0.892004 0.418792 0.009064 -0.130394 0.282949 0.589451 0.296603 -1.129313 -0.678669 0.254484 0.801434 0.557223 -0.821270 -0.424468 -0.444278 -0.095336 0.066680 0.028678 0.162064 -0.339874 -0.492767 -0.242636 0.259225 1.343466 -0.353928 -0.823571 0.202646 0.082316 -0.425156 -0.896381 -0.214844 -0.315265 0.134771 -0.023894 -0.147339 0.495841 0.999795 -1.998187 0.787453 -0.294275 -0.354778 0.701668 -0.064505 -0.260822 -0.877480 0.191237 0.709798 0.910185 0.066777 0.001899 0.168115 -0.776765 -0.100939 -0.005497 0.516619 -0.390697 0.381585 0.348655 -0.799064 -0.588084 -0.263339 0.016436 -0.348616 -0.164982 0.347579 -0.092829 -1.811009 0.944570 -0.146437 -0.179848 0.352137 -0.124716 0.381895 -0.864301 -0.943164 0.361241 0.095177 -0.138756 -0.469507 0.010382 0.695325 -0.136335 0.152895 -0.529320 -1.017091 0.353482 -0.289602 0.472949 0.335509 0.277816 0.864017 0.116955 -0.195884 -0.790898 -0.018856 0.104665 -0.235416 -0.417167 -0.168989 -0.241741 0.687572 1.063602 -0.035749 -0.019190 -0.042126 0.956975 -0.775099 -0.307075 0.550475 0.469211 -0.403308 0.264982 0.635118 -0.819309 -0.581634 -0.407684 -0.288330 0.009550 -0.622380 0.416117 -0.504838 0.254881 0.355530 0.086497 -0.344454 0.448175 0.114652 0.079155 0.020618 0.919727 1.284394 -0.523541 0.165357 -0.610496 0.373455 -1.109320 -0.680205 0.062735 -0.021132 -0.306132 0.197772 0.029515 0.654448 -0.035130 0.132889 -0.011342 -0.203008 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_range_initialize(int*, int*, std::forward_iterator_tag) = -1.692816 0.651441 2.368830 -3.877794 3.555872 2.292515 1.310861 -1.671655 -2.950166 -1.294604 0.302025 -4.201209 -2.687959 4.327421 -2.029668 1.980119 6.472911 1.112943 -1.543542 -1.120296 3.560326 -0.795361 6.182233 5.456779 -4.621529 -0.279414 1.807808 2.711810 1.028702 2.662955 -2.561484 -2.843758 1.842736 -2.374915 0.878655 -2.633295 0.519793 -0.599629 1.414284 -6.112700 0.763723 -0.567295 -0.631975 -0.871420 -0.898946 2.286813 5.267319 3.794963 -1.442025 -0.084114 3.506958 0.984464 -0.336763 1.241030 1.109433 0.740480 2.976295 1.382837 -1.891704 -1.672336 -1.061619 -2.174743 0.359590 4.509692 5.168682 0.802532 -0.046110 1.524375 0.601644 0.642629 1.066618 1.143278 1.070729 1.785675 2.261532 -4.460070 0.723075 -7.811286 -1.371044 -8.554673 -2.946637 -2.124223 1.586873 -1.322833 2.190286 -0.213867 4.967598 0.112392 0.715001 2.042144 6.083459 -4.563012 -1.952981 -3.111773 -2.503587 1.137542 -2.427884 0.622548 1.869179 -0.159965 -3.807291 -3.011013 1.780086 1.312612 -1.678156 -1.323396 0.376459 3.348926 -3.358679 -2.183617 -3.285366 0.645495 -0.316593 -7.124643 -0.538954 -2.275340 3.646155 0.163742 -1.539057 -4.504984 0.889559 3.462572 -1.866007 -2.025937 -1.406631 4.327255 2.629810 0.724823 0.748379 -0.283136 1.489674 5.191509 3.548299 -2.579455 -0.709308 -0.244475 -3.267514 0.040024 -3.274697 -1.122385 2.308236 -3.784873 0.743648 3.538880 -2.802498 -0.447334 3.455349 -0.400237 2.500498 12.651797 -1.199878 3.798560 1.774003 -5.015105 2.580826 -1.088231 -0.939292 0.677931 2.484673 1.869092 -6.248552 -3.950435 2.916284 4.599548 3.193099 -5.220556 -0.680675 -1.182742 0.091477 -0.806151 -0.169966 1.508264 -0.596013 -3.022853 -1.248132 3.215293 7.873014 -2.431584 -4.816095 2.141755 0.986562 -0.689931 -4.441458 -1.810213 -1.999660 0.652345 1.019467 0.036982 2.873525 5.956780 -9.361385 3.815463 -0.596659 -1.768291 4.688919 0.273531 -2.792763 -3.870710 0.752960 4.265252 4.171250 0.437775 -0.352610 0.352360 -3.956911 -0.511980 0.474219 2.074708 -1.632225 1.958007 1.247598 -3.861513 -3.284050 -1.871244 -0.509608 -1.415896 -1.116013 2.407681 -0.551522 -9.030807 5.797593 -0.008928 -1.386463 0.887129 -1.987874 2.757559 -4.615765 -5.196387 2.332160 -0.849401 -1.007880 -2.170208 0.643037 2.787384 0.407317 1.710876 -3.467929 -5.757424 2.968725 -0.934684 3.626157 1.764516 1.652318 4.036739 0.467720 -1.196318 -4.334539 -1.376750 0.971896 -0.224142 -3.899063 -1.351203 -1.201639 4.097037 4.837836 -1.114239 -0.725022 -1.076965 3.942518 -4.917277 -1.472027 3.170348 2.701302 -3.711927 0.913192 3.687850 -3.853929 -2.269056 -2.495525 -1.798984 -1.636634 -4.335953 1.517352 -1.802523 1.466015 1.981118 -0.058400 -1.104940 1.856586 0.729834 0.588956 0.389611 4.803161 6.706061 -2.682611 -0.026994 -4.407365 2.517852 -6.387286 -5.403659 2.440830 -0.886339 -2.330441 0.214806 0.892670 3.854376 -0.585004 -0.205000 -0.872672 -0.220687 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = -0.456736 0.053331 0.874236 -0.951687 0.754417 0.255122 0.335140 -0.342560 -0.848866 -0.361332 -0.089217 -0.459533 -0.501018 1.263237 -0.519455 0.514091 1.893142 0.742769 -0.285746 -0.625334 1.212743 -1.122201 1.595771 1.593781 -1.371040 -0.088486 0.940775 0.987527 0.715694 1.004636 -0.807358 -0.288720 0.518305 -0.984011 0.567621 -1.441534 0.260868 0.169966 0.179478 -2.018659 0.174765 -0.611128 -0.040561 -0.133199 -0.237442 1.078814 1.186857 1.023729 -0.550015 0.275344 0.992341 0.161567 -0.100677 0.358494 0.330219 0.675759 1.006059 0.747220 -0.454068 -0.070601 -0.239663 -1.194553 0.510089 1.200184 1.591466 0.053346 0.207768 0.442929 0.100301 0.173695 0.407833 0.197982 0.073454 0.175116 0.710066 -2.153101 0.237607 -2.947180 -0.441489 -3.230968 -0.708682 -0.884745 0.371391 -1.053381 0.675167 0.404784 1.319716 0.103600 0.341748 0.485742 1.514267 -1.350848 -0.507678 -0.885724 -0.660731 0.426215 -0.767586 -0.057923 0.840115 -0.131069 -0.864684 -1.167995 0.978798 0.503746 -0.485503 -0.478968 -0.126889 1.254407 -1.249773 -0.962624 -1.156715 -0.173096 -0.460929 -1.763379 0.600250 -0.962597 1.672486 0.104169 -0.229165 -1.312416 0.207912 1.388784 -0.331474 -0.722846 -0.163941 1.283935 0.535228 -0.046981 0.098283 -0.267567 -0.005458 1.239078 1.561834 -0.712197 -0.325991 0.348170 -1.401593 -0.217477 -1.311866 -0.448841 1.165459 -1.122861 -0.111985 0.782515 -0.789161 -0.133557 2.107696 -0.142115 0.920481 3.551499 -0.137146 0.756918 0.378451 -1.337398 0.756574 -0.000967 -0.060460 0.603025 1.001764 0.278970 -2.241604 -1.104472 0.276354 1.169624 0.875238 -1.590568 -1.142169 -0.864206 -0.062353 0.213679 -0.200310 0.322703 -0.536302 -0.757203 -0.312920 0.371021 2.102150 -0.842256 -1.129713 0.323845 -0.036010 -0.933013 -2.079502 -0.447375 -0.717459 0.211382 -0.325404 -0.182015 0.714219 1.541693 -3.080970 1.178055 -0.747135 -0.506991 1.145428 -0.014410 -0.435385 -1.863210 0.326873 1.013828 1.378585 0.105864 -0.054456 0.442942 -1.207690 -0.113920 -0.091642 0.795447 -0.487540 0.553961 0.429651 -1.132396 -0.941010 -0.132062 0.071006 -0.659008 0.106837 0.561637 -0.264541 -2.737179 1.376642 -0.384685 -0.360347 0.783837 -0.074151 0.619849 -1.392512 -1.490197 0.660739 0.330305 -0.001234 -0.989806 0.115132 1.163787 -0.274919 -0.073237 -0.748424 -1.782662 0.416197 -0.692032 0.675992 0.466020 0.383485 1.545644 0.049169 -0.344748 -1.512089 0.263237 -0.303910 -0.383894 -0.715385 -0.766298 -0.234610 1.180588 1.653693 0.001047 0.207072 0.138686 1.559707 -1.601096 -0.612947 0.905042 1.192555 -0.619995 0.433943 0.996226 -1.468656 -0.927436 -0.489144 -0.609227 0.174125 -0.962205 0.694870 -0.806886 0.466509 0.417049 0.261684 -0.252878 0.736488 0.248926 0.333909 -0.080279 1.441773 2.471694 -0.981741 -0.163987 -0.938675 0.549834 -1.733924 -1.079601 0.144816 0.339532 -0.460321 0.451834 0.402712 1.084511 0.000928 -0.048815 0.014901 -0.499855 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.069297 -0.064289 0.477072 -0.348515 0.141210 -0.147876 0.090377 -0.036963 -0.401599 -0.028956 -0.072823 -0.160208 -0.023861 0.367380 -0.086421 0.179958 0.619896 0.381598 -0.129142 -0.284803 0.287787 -0.653378 0.425727 0.599025 -0.443586 0.097557 0.145411 0.483291 0.332459 0.535866 -0.423907 0.184658 -0.026646 -0.254068 0.354523 -0.630111 0.013419 0.209093 -0.012570 -0.880928 0.074490 0.004177 0.444824 -0.018387 0.054903 0.456166 0.312462 0.288176 -0.115777 0.182556 0.284578 -0.137101 0.229129 0.080910 0.221254 0.394399 0.788333 0.227911 -0.170640 0.135031 -0.013192 -0.554447 0.339174 0.338223 0.538093 -0.031201 -0.009075 -0.051472 0.218365 0.007737 0.234455 0.100402 -0.219516 -0.040806 0.154155 -0.753472 0.517189 -0.857862 0.038050 -1.028158 -0.299275 -0.266414 0.309018 -0.174257 0.195586 0.102759 0.467201 -0.092598 0.136797 -0.159428 0.319669 -0.396478 -0.130467 -0.163372 -0.229398 0.187230 -0.165699 -0.234177 0.365330 0.078513 -0.208820 -0.214907 0.630926 0.153819 -0.230515 0.253701 -0.056658 0.400104 -0.427292 -0.423609 -0.347220 -0.062881 -0.171192 -0.422710 0.557799 -0.459845 0.277036 0.029587 -0.075347 -0.359687 0.053436 0.341766 -0.131129 -0.051088 -0.668267 0.566579 0.045425 -0.154975 0.011703 -0.118960 -0.102687 0.161935 0.368544 -0.330821 -0.096115 0.339969 -0.561206 -0.108919 -0.492343 -0.259763 0.405201 -0.367436 -0.322089 -0.021396 -0.268963 0.233642 0.585458 0.141228 0.227557 1.034991 -0.003292 0.228925 0.128548 -0.290012 0.540749 0.263968 0.053114 0.304006 0.354315 0.020638 -0.847627 -0.360777 -0.108122 0.393627 0.270732 -0.400123 -0.545088 -0.317252 -0.082176 0.330575 0.037274 -0.013843 -0.188438 -0.248792 -0.083338 -0.184803 0.726920 -0.125309 -0.349160 -0.031310 -0.296840 -0.571192 -0.908280 -0.080127 -0.322769 0.032344 -0.624109 -0.064129 0.223562 0.436282 -1.111906 0.508826 -0.355648 -0.265050 0.692700 -0.272629 -0.039342 -0.953278 -0.014999 0.151413 0.608672 -0.080373 -0.193816 0.264534 -0.418020 -0.045087 -0.155575 0.221286 -0.279323 0.245483 0.133518 -0.326376 -0.114406 -0.186612 0.081555 -0.225914 -0.024950 0.178391 0.009884 -0.665837 0.261818 -0.116561 -0.122512 0.405407 0.106955 -0.137304 -0.411840 -0.292267 0.060297 0.286674 0.045969 -0.505306 -0.050164 0.375256 -0.335374 -0.296703 -0.277579 -0.477388 0.083341 -0.494463 0.145917 0.232019 -0.089636 0.269035 0.685082 -0.070880 -0.350506 0.392643 -0.507459 -0.281417 -0.014370 -0.207729 -0.184781 0.303205 0.600605 0.128377 0.344656 0.118798 0.634878 -0.251328 -0.346508 0.244164 -0.153580 -0.048401 0.181387 0.286497 -0.544081 -0.246491 -0.209735 -0.378970 0.258322 -0.081952 0.452709 -0.273572 0.127267 0.073906 -0.004315 -0.125640 0.302277 0.034674 -0.070667 -0.042976 0.693190 0.630832 -0.117687 0.122517 -0.215844 0.128123 -0.448763 0.039478 -0.228055 0.311218 -0.327219 0.213471 0.297652 0.365859 0.111155 -0.048926 0.032314 -0.175135 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -0.690893 -0.187617 0.371625 -1.345368 1.364340 0.603046 0.507148 -0.396151 -1.514660 -0.660211 0.120314 -1.511645 -0.755238 2.025057 -0.458793 1.199322 2.554458 0.641848 -0.475600 -0.352359 1.605024 -1.048129 2.050765 1.910772 -1.550815 -0.028135 0.451408 0.770278 0.069638 1.131913 -0.504827 -1.353414 0.703769 -1.350958 0.286386 -1.320616 0.137412 0.486193 0.776306 -2.658978 0.353785 0.255758 0.164231 -0.381747 -0.490326 0.354008 1.624606 1.360415 -0.625836 0.559532 1.145882 0.153110 -0.100852 0.435434 0.513802 0.648495 0.424720 0.324085 -0.949111 -0.327669 -0.443320 -0.972999 0.349638 1.385083 1.865753 -0.017155 -0.064844 0.833573 -0.006550 0.373548 0.662472 0.296826 0.132304 -0.102400 0.958095 -2.015266 -0.310407 -3.362388 -0.399084 -4.013945 -1.115067 -0.490920 1.109737 -0.083978 0.767880 -0.093724 1.899575 -0.369023 0.013564 1.134007 2.267574 -1.572064 -0.785815 -1.326118 -0.981979 0.488232 -0.795226 -0.258378 1.111226 -0.138277 -1.407144 -1.251642 0.884291 0.509284 -0.595540 -1.075858 0.092027 1.638493 -1.625686 -1.280348 -1.084812 0.670122 -0.306836 -2.417520 0.070803 -0.764323 0.706211 0.418957 -0.733788 -1.664350 0.468494 1.121846 -0.681659 -0.861772 -0.235215 1.593612 0.675132 0.356196 0.364456 0.068308 0.386162 2.132978 1.338242 -1.048409 -0.094919 0.287330 -0.762588 0.203343 -1.217793 -0.884771 0.673290 -1.651738 0.104797 0.975418 -1.142431 -0.208313 1.301649 0.015136 0.727713 4.539320 -0.260326 1.495354 0.783581 -1.802817 1.214177 -0.260399 -0.191536 0.383548 1.199997 0.412764 -2.003971 -1.556401 0.980425 1.754269 1.340869 -1.746388 -1.113133 -0.635170 0.092471 0.210467 -0.035426 0.540537 -0.059000 -1.193471 -0.348579 0.874016 3.154424 -1.018933 -1.234495 0.850310 0.783728 -0.648880 -2.249242 -0.661845 -1.678386 0.083888 0.089550 -0.147970 0.938082 2.313661 -3.587062 1.658657 -0.575473 -0.448573 1.318758 0.313569 -0.995974 -2.675315 -0.225602 1.373940 2.048256 -0.038036 0.348045 0.285005 -1.500612 -0.097054 0.172314 0.542893 -0.610119 0.803953 -0.149445 -1.239610 -0.905693 -0.006785 -0.569051 -0.757376 -0.183454 0.864690 0.681315 -2.901441 1.845171 -0.065435 -0.429973 0.627686 -0.058985 1.397661 -1.527867 -2.027792 1.008629 -0.178291 -0.537899 -0.695624 0.131514 1.147360 0.023282 -0.083864 -0.670019 -2.114915 1.156290 -0.506902 1.373178 0.733149 0.106550 1.545919 0.298928 -0.788902 -1.402936 -0.628696 -0.056831 -0.507838 -1.061653 -0.969749 -0.360209 1.612044 1.687121 0.285304 -0.642537 -0.354225 1.793295 -1.698665 -0.382038 1.469615 0.458949 -1.233237 0.474475 1.695125 -1.723212 -0.554707 -1.042730 0.047548 -0.463431 -1.263165 0.671396 -0.531602 0.474336 0.362158 -0.065539 -0.298582 0.784033 0.654709 0.192713 -0.185494 2.099556 1.963315 -1.140190 -0.138199 -1.467518 0.710177 -2.182385 -1.745451 0.438738 0.584540 -1.135505 0.151534 0.423389 1.394084 -0.095795 0.101639 -0.324018 -0.228672 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = -0.881280 -0.422458 0.894158 -1.664579 1.541848 0.485787 0.555050 -0.463747 -1.738028 -0.772794 0.063794 -1.338165 -1.016097 2.408627 -0.804421 1.271095 3.162500 1.070497 -0.552407 -0.808085 2.094573 -1.441300 2.712059 2.338002 -2.153965 -0.247707 0.913477 1.652404 0.947670 1.379228 -0.761729 -0.851622 1.000363 -1.707511 0.530978 -2.077475 0.585335 0.649663 0.509133 -3.144489 0.417261 -0.442905 -0.017865 -0.170753 -0.564754 1.454058 1.692000 1.868356 -0.975288 0.708765 1.757209 0.085147 -0.126451 0.702576 0.262555 0.705287 0.927690 0.732692 -1.060672 -0.324314 -0.412275 -1.972927 0.526914 1.753996 2.700815 -0.092113 0.167971 1.062443 0.123966 0.525325 1.076493 0.230159 0.248919 -0.153473 1.366664 -2.821223 -0.235971 -4.550975 -0.755775 -5.395717 -1.108301 -1.087987 1.257804 -1.038338 0.812521 0.302200 2.179204 0.064075 0.117997 1.242746 2.589614 -2.033210 -1.063810 -1.759043 -0.927569 0.884922 -1.423021 -0.252873 1.651612 0.158605 -1.450608 -1.611794 1.135187 0.531360 -0.762031 -1.171764 -0.233804 2.252471 -2.198316 -1.538667 -1.759198 0.417098 -0.432116 -3.025789 0.380211 -1.230349 2.051386 0.298498 -0.382291 -1.739254 0.404816 1.728612 -0.639269 -0.997853 -0.120903 2.010543 0.842237 0.229438 0.276393 0.042390 0.197215 2.367389 2.107235 -1.272584 -0.560550 0.553309 -1.624814 0.073202 -2.117632 -0.916011 1.680104 -2.126705 0.168736 1.231274 -1.354900 -0.454803 2.552536 0.014514 1.324390 5.445140 -0.035879 1.417907 0.966538 -2.046159 1.244704 -0.107145 0.104797 0.973918 1.403376 0.283786 -2.769164 -1.924854 0.779779 1.921759 1.625367 -2.701523 -1.555856 -1.181091 0.307523 0.198002 -0.414171 0.986807 -0.626449 -1.189270 -0.368016 0.893109 3.398660 -1.414856 -1.885417 0.904845 0.539066 -1.346654 -3.219754 -0.884111 -1.341405 0.106522 -0.040597 -0.061255 1.028259 2.789097 -4.658942 1.965314 -0.517161 -0.397535 1.697575 0.162088 -0.970472 -3.183146 0.062656 1.537764 2.372739 0.190026 0.136352 0.727762 -1.989614 -0.057570 0.212488 0.969283 -0.445687 0.740465 0.250114 -1.272243 -1.412205 -0.088259 -0.309389 -0.705725 0.067696 1.156158 0.152292 -4.283715 2.087900 -0.771879 -0.777636 1.043697 -0.132342 1.654387 -2.253831 -2.426215 1.245251 0.050835 -0.718959 -1.638002 0.503064 1.701566 -0.188789 -0.030457 -0.889929 -2.830665 1.087938 -1.077496 1.154024 0.785033 0.312845 2.275066 0.105652 -0.819623 -2.265202 -0.034251 -0.275374 -0.766110 -1.204817 -1.120917 -0.105087 2.037572 2.462485 0.227905 -0.221913 -0.052993 2.425182 -2.599973 -1.084079 1.775457 1.613017 -1.170633 1.116288 1.925766 -2.583000 -1.123776 -0.968380 -0.509556 0.028617 -1.724163 1.043487 -1.014833 0.842527 0.572441 0.415137 -0.411643 1.238078 0.608179 0.293455 -0.415007 2.760138 3.741693 -1.637968 -0.224726 -1.820393 1.020618 -2.937510 -2.072398 0.508503 0.514857 -1.020964 0.774325 0.738375 1.783639 -0.038896 -0.120062 -0.473471 -0.581138 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a(int*, int*, int*, std::allocator&) = -0.296827 0.241403 0.711158 -0.693377 0.572062 0.111697 0.235184 -0.218831 -0.568315 -0.447204 -0.108991 -0.499517 -0.589567 0.935667 -0.365262 0.233466 1.410154 0.453754 -0.172500 -0.523942 0.828822 -0.843668 1.232405 1.245496 -1.130532 0.011638 0.753611 0.759870 0.581207 0.728942 -0.489061 -0.299639 0.346647 -0.544950 0.544667 -0.979810 0.136972 -0.013766 -0.022431 -1.604445 0.066983 -0.337283 0.006443 -0.074839 -0.131176 0.956954 1.099098 0.780842 -0.477344 0.183723 0.781023 0.142796 0.009136 0.245653 0.207303 0.282587 0.808188 0.434554 -0.337446 -0.008328 -0.142011 -1.018251 0.291274 0.979205 1.241736 0.022218 0.092076 0.306434 0.064801 0.158028 0.187305 0.266844 0.188186 0.272048 0.589892 -1.509469 0.225792 -2.258113 -0.274915 -2.693233 -0.640326 -0.743614 0.386665 -0.626859 0.402487 0.273562 1.105941 0.167871 0.315295 0.435739 1.264749 -0.931433 -0.345272 -0.647568 -0.512451 0.396987 -0.574714 0.040516 0.569932 -0.022805 -0.684559 -0.818360 0.730629 0.240109 -0.447059 -0.259395 -0.141738 0.890127 -1.035988 -0.548405 -0.965148 -0.220976 -0.201142 -1.426848 0.450379 -0.657750 1.258651 0.095576 -0.146119 -0.883368 0.138486 0.929783 -0.250052 -0.438165 -0.430949 1.009200 0.424578 -0.041008 0.120570 -0.101673 0.140474 0.854843 1.140002 -0.499922 -0.295007 0.232772 -0.996936 -0.192362 -0.918335 -0.280974 0.957445 -0.808404 -0.052226 0.522115 -0.590753 -0.230729 1.352100 -0.293871 0.686795 2.610731 -0.126381 0.577032 0.281683 -1.023370 0.541979 -0.044010 -0.196445 0.450933 0.781520 0.385617 -1.479187 -0.814655 0.274902 0.982895 0.627344 -1.146274 -0.736579 -0.509091 -0.082540 0.058886 -0.016197 0.210081 -0.361063 -0.553219 -0.249395 0.376537 1.529679 -0.553118 -0.845492 0.211418 0.035091 -0.567804 -1.474601 -0.251071 -0.420836 0.124194 -0.236346 -0.124790 0.549470 1.174194 -2.448007 0.911763 -0.423397 -0.367843 0.820124 -0.063282 -0.338033 -1.518659 0.357658 0.859929 0.986361 0.060781 -0.043943 0.188666 -0.967001 -0.101079 -0.026914 0.602558 -0.458797 0.504454 0.273950 -0.822111 -0.768728 -0.215396 0.048467 -0.383552 -0.011780 0.433635 -0.115799 -2.139075 1.147022 -0.343710 -0.304285 0.401157 -0.165804 0.442687 -1.094389 -1.140607 0.418256 0.075333 -0.220503 -0.767866 0.005709 0.809850 -0.244035 -0.093072 -0.581766 -1.265241 0.445636 -0.520643 0.509483 0.428967 0.380524 1.238256 0.138500 -0.303518 -1.078141 0.200514 -0.132289 -0.350257 -0.544799 -0.424870 -0.238039 0.804342 1.355477 -0.101933 0.154211 0.145620 1.107532 -1.152082 -0.596556 0.643419 0.783510 -0.465398 0.461792 0.714284 -1.016650 -0.686080 -0.557140 -0.469518 0.101230 -0.796330 0.497014 -0.682312 0.239815 0.485969 0.060829 -0.283975 0.627663 0.123749 0.193241 -0.082275 1.085968 1.905561 -0.819145 -0.015190 -0.782011 0.440145 -1.377709 -0.851249 0.114174 0.244416 -0.234421 0.215796 0.209114 0.735876 0.025726 -0.105197 -0.072017 -0.258181 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_max_size(std::allocator const&) = -0.527554 -0.012312 0.988322 -1.454098 1.531797 0.439207 0.328911 -0.330016 -1.133553 -0.494937 -0.227878 -0.647174 -0.738070 1.693051 -0.584656 1.022522 2.042162 0.422649 -0.399037 -0.680417 1.888787 -1.221103 1.844802 1.089917 -1.816855 -0.128843 0.958451 1.421080 0.863014 1.423431 -0.906163 -0.383413 0.411341 -1.206645 0.615769 -1.545847 0.653234 0.344006 0.198590 -2.126867 0.212527 -0.498252 -0.363022 -0.019260 -0.500352 1.311093 1.280853 1.390024 -1.058855 0.292919 1.539591 0.131243 -0.297718 0.570000 -0.114993 0.637575 1.044604 0.694344 -0.789840 -0.290125 -0.163862 -1.530846 0.742947 1.253270 1.923366 -0.300548 0.254564 1.298369 0.093942 0.259653 0.630334 0.185684 0.037445 -0.142075 1.152830 -2.321318 -0.131101 -3.320091 -0.504749 -3.947682 -0.764531 -1.198806 0.347817 -1.000406 0.692140 0.326034 1.783667 0.086909 0.188978 0.987754 1.751524 -1.566376 -0.570637 -1.822480 -0.891462 0.468034 -1.050463 -0.595137 1.088966 0.174557 -0.843772 -1.222543 0.765375 0.354795 -0.514430 -0.968552 -0.512822 1.661719 -1.750691 -1.238450 -1.316132 0.380261 -0.609747 -2.171549 0.418538 -0.822570 1.893799 -0.202439 0.447675 -1.348559 0.154399 1.760735 -0.584069 -0.723687 -0.133368 1.597973 0.900451 -0.058598 0.306210 -0.145663 0.086492 1.462614 1.972457 -0.851849 -0.968190 0.519424 -1.206068 -0.191601 -1.517137 -0.386132 1.330547 -1.604932 -0.023854 1.136239 -0.700316 -0.141414 2.094705 -0.366965 1.239961 4.030559 -0.034125 0.715613 0.202978 -1.580781 0.914917 0.112075 -0.217375 0.823675 0.779599 0.154981 -2.289655 -1.457299 0.624919 1.119174 1.080429 -2.043316 -1.232515 -1.049791 -0.010195 0.293386 -0.642374 0.973980 -0.764907 -0.727912 -0.378249 0.210740 2.714716 -0.941182 -1.438234 1.070863 0.326612 -1.498757 -2.458953 -0.806410 -0.892929 -0.180011 -0.044188 -0.235538 0.870112 2.002694 -3.629686 1.362289 -0.412226 -0.598355 1.065233 -0.323879 -0.221802 -2.329220 -0.068909 1.307863 1.647272 -0.117459 0.116348 0.307085 -1.325069 0.311564 0.099883 0.740040 -0.157011 0.343321 0.232198 -1.100909 -1.113641 0.007505 -0.354039 -0.202114 0.193873 0.541874 -0.381532 -3.434535 1.677344 -0.916104 -0.264771 1.078309 0.108637 1.285577 -1.438644 -1.716375 1.073726 0.441690 -0.254415 -1.324001 0.502917 1.434971 -0.230889 -0.103506 -0.756254 -2.523940 0.341642 -0.901440 0.467327 0.490704 0.543886 1.777971 -0.054348 -0.562757 -1.946001 -0.011489 -0.296923 -0.298964 -0.633998 -0.728506 0.051679 1.516323 1.597657 0.109909 0.249590 -0.027276 1.772610 -1.899329 -0.865228 1.295344 1.183155 -1.144492 0.697992 1.448564 -1.583395 -1.163851 -0.767885 -0.191219 0.004251 -1.161945 0.587610 -0.763088 0.350992 0.707083 0.402957 -0.493933 0.942852 0.370816 0.191615 -0.752356 2.247021 3.060327 -1.326948 -0.217884 -1.104829 0.754600 -2.121600 -1.421388 0.286132 0.303859 -0.347501 0.783493 0.689020 1.339798 -0.181484 0.093632 0.089460 -0.983139 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy(int*, int*, int*) = -0.310126 0.214091 0.765694 -0.748080 0.612283 0.078495 0.262547 -0.209570 -0.652518 -0.448595 -0.109089 -0.527561 -0.572383 1.014583 -0.362418 0.269436 1.513779 0.514175 -0.203343 -0.529570 0.875807 -0.949949 1.263674 1.289931 -1.126321 0.019053 0.743613 0.762743 0.551955 0.824345 -0.585725 -0.309106 0.354062 -0.601754 0.564913 -1.049713 0.118212 0.014951 -0.007478 -1.675382 0.106234 -0.326559 0.049444 -0.112156 -0.148918 1.007324 1.136813 0.802923 -0.464275 0.184110 0.772994 0.096144 0.002360 0.266167 0.301249 0.381636 0.890222 0.520665 -0.396038 0.004911 -0.190957 -1.047591 0.328593 0.993599 1.260731 0.029914 0.086469 0.302789 0.069613 0.162094 0.223174 0.240380 0.187704 0.217943 0.591773 -1.597804 0.248381 -2.341293 -0.297887 -2.837947 -0.662258 -0.730307 0.424215 -0.700767 0.423030 0.258727 1.129684 0.112434 0.312265 0.405756 1.323313 -0.983877 -0.385008 -0.676220 -0.539819 0.370332 -0.568737 -0.027231 0.675279 -0.071425 -0.730670 -0.826435 0.808889 0.278377 -0.435452 -0.240259 -0.111212 0.965137 -1.075006 -0.599431 -0.996129 -0.210219 -0.212325 -1.456263 0.531026 -0.681855 1.267552 0.115300 -0.221519 -0.951383 0.197140 0.987806 -0.307889 -0.454202 -0.434357 1.099145 0.379884 -0.018186 0.119214 -0.134873 0.120494 0.865721 1.227517 -0.547785 -0.254024 0.240186 -1.061125 -0.193340 -0.942833 -0.356609 0.973039 -0.850630 -0.090349 0.512171 -0.638143 -0.170708 1.443724 -0.232307 0.701409 2.707596 -0.175714 0.625783 0.258157 -1.071034 0.633239 -0.005512 -0.186595 0.419135 0.836567 0.378791 -1.577293 -0.861657 0.310976 1.019725 0.683301 -1.226344 -0.799840 -0.579479 -0.089240 0.133375 -0.032401 0.208554 -0.351408 -0.607517 -0.276871 0.328155 1.670348 -0.599806 -0.941446 0.231220 -0.033039 -0.590180 -1.594751 -0.272946 -0.465502 0.153137 -0.323008 -0.167700 0.592000 1.241070 -2.590003 0.992520 -0.532428 -0.441345 0.930949 -0.068351 -0.338913 -1.656036 0.282979 0.893967 1.102046 0.097692 -0.095573 0.208874 -0.989609 -0.114018 -0.069550 0.633550 -0.464120 0.508550 0.270647 -0.890656 -0.762717 -0.251931 0.055871 -0.412385 0.004686 0.442331 -0.113001 -2.232470 1.196573 -0.304365 -0.269318 0.438069 -0.088736 0.412767 -1.099134 -1.200010 0.425933 0.101951 -0.212337 -0.805962 0.003710 0.848858 -0.273639 -0.135847 -0.578272 -1.361503 0.480481 -0.561892 0.593444 0.433593 0.364776 1.301073 0.263788 -0.310131 -1.108513 0.220815 -0.191019 -0.409586 -0.546264 -0.459186 -0.257366 0.863040 1.358647 -0.062992 0.194730 0.113842 1.180175 -1.188397 -0.582445 0.714305 0.751833 -0.486499 0.463879 0.795560 -1.079891 -0.722392 -0.561279 -0.530304 0.072506 -0.790222 0.496639 -0.684015 0.244983 0.454497 0.073457 -0.287181 0.606034 0.133186 0.185482 -0.082712 1.153027 2.000768 -0.859418 -0.010907 -0.785964 0.470533 -1.409716 -0.869440 0.107952 0.311954 -0.312795 0.232506 0.272009 0.770238 -0.000315 -0.117749 -0.059010 -0.275641 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy(int*, int*, int*) = -0.295897 0.298776 0.626175 -0.655265 0.553289 0.147195 0.202524 -0.234123 -0.468789 -0.498555 -0.093873 -0.522369 -0.644147 0.862339 -0.398304 0.122375 1.260296 0.340278 -0.142349 -0.467053 0.738305 -0.602845 1.158672 1.118930 -1.062759 -0.026507 0.713472 0.680811 0.515922 0.607482 -0.313072 -0.418833 0.339502 -0.355849 0.475545 -0.801044 0.150548 -0.078236 -0.085067 -1.393743 0.050725 -0.309358 -0.097554 -0.064566 -0.126195 0.848616 1.063060 0.733142 -0.459526 0.100328 0.758532 0.293249 -0.060693 0.229027 0.124174 0.076605 0.629450 0.252117 -0.279188 -0.063281 -0.134259 -0.864991 0.161766 0.953153 1.149157 0.059028 0.107978 0.272748 -0.002789 0.193718 0.118049 0.252162 0.261646 0.354238 0.529887 -1.224927 0.115449 -2.054061 -0.256196 -2.465730 -0.565256 -0.692356 0.336688 -0.451873 0.285633 0.247370 1.019415 0.249695 0.288408 0.531832 1.230132 -0.775495 -0.305718 -0.605934 -0.507097 0.389945 -0.545074 0.148372 0.368540 0.061510 -0.640155 -0.743790 0.496293 0.150754 -0.401670 -0.272744 -0.133911 0.776240 -0.983748 -0.341936 -0.859551 -0.168249 -0.085690 -1.376170 0.236354 -0.590187 1.204023 0.044620 -0.117144 -0.728664 0.115007 0.808155 -0.226431 -0.343413 -0.419255 0.848405 0.421904 -0.011816 0.090043 -0.072969 0.188587 0.786870 0.950828 -0.440259 -0.285395 0.118895 -0.823439 -0.188535 -0.816362 -0.163236 0.864567 -0.706537 0.089349 0.530445 -0.525433 -0.391403 1.040934 -0.407187 0.657438 2.363350 -0.141358 0.533627 0.270909 -0.969046 0.338446 -0.112597 -0.231362 0.371657 0.678723 0.410888 -1.126987 -0.746886 0.334778 0.906879 0.568575 -0.976975 -0.510880 -0.381894 -0.088230 -0.068681 0.002088 0.211057 -0.381919 -0.490478 -0.253987 0.470207 1.294388 -0.427653 -0.741416 0.219695 0.193074 -0.386828 -1.101022 -0.211453 -0.259568 0.134053 -0.009104 -0.104761 0.522326 1.097364 -2.249678 0.796703 -0.214922 -0.245706 0.593016 -0.027158 -0.346081 -1.248976 0.403592 0.867620 0.819836 0.049287 0.038152 0.105561 -0.884845 -0.096931 0.036191 0.569211 -0.419215 0.436944 0.283805 -0.748247 -0.786214 -0.207410 0.012755 -0.272814 -0.067505 0.399856 -0.108580 -2.034093 1.141000 -0.341082 -0.265188 0.217768 -0.257968 0.491541 -1.030789 -1.073020 0.378099 -0.051870 -0.295884 -0.641704 0.029351 0.724281 -0.190045 0.063021 -0.535990 -1.089132 0.446665 -0.387481 0.461069 0.372834 0.448560 1.152643 -0.057619 -0.247883 -0.980602 0.086196 0.086798 -0.275204 -0.565824 -0.216149 -0.189122 0.706740 1.237842 -0.186068 0.001699 0.165570 0.947148 -1.011357 -0.544393 0.564121 0.755863 -0.472033 0.460429 0.629513 -0.875009 -0.644441 -0.566311 -0.345844 0.021969 -0.828205 0.390255 -0.601086 0.213369 0.511862 0.058588 -0.319906 0.582900 0.122379 0.187663 -0.029012 0.927269 1.713937 -0.752430 0.024236 -0.766795 0.401580 -1.314395 -0.900305 0.182869 0.072943 -0.111043 0.152969 0.017423 0.664662 -0.009797 -0.014074 -0.090922 -0.152047 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy(int*, int*, int*) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__miter_base(int*) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_wrap(int* const&, int*) = -0.094004 0.019219 0.230993 -0.225112 0.187042 -0.030752 0.085428 -0.093290 -0.252681 -0.122523 -0.046565 -0.124925 -0.094709 0.319760 -0.118501 0.192414 0.502530 0.239633 -0.038493 -0.218610 0.268158 -0.426262 0.432342 0.459415 -0.369990 0.034875 0.228867 0.286762 0.191823 0.338604 -0.233154 -0.057474 0.126169 -0.274716 0.177918 -0.444607 0.047246 0.115670 0.056593 -0.621531 0.040546 -0.138967 0.153557 -0.010648 -0.043617 0.287061 0.307364 0.264572 -0.109584 0.190091 0.261261 0.026773 0.061662 0.103396 0.112779 0.246852 0.360646 0.052262 -0.134540 0.045806 -0.037519 -0.415352 0.163016 0.303221 0.438937 -0.028649 0.034712 0.101136 0.004142 0.036669 0.142589 0.078950 -0.083405 0.017798 0.154701 -0.644639 0.168900 -0.779599 -0.105484 -0.950734 -0.224235 -0.250069 0.136642 -0.170907 0.214451 0.210247 0.384848 0.010318 0.109316 0.033402 0.362031 -0.385720 -0.129788 -0.150762 -0.141072 0.128338 -0.193763 -0.075030 0.194914 0.030762 -0.204689 -0.301452 0.407911 0.130580 -0.161329 -0.082359 -0.053898 0.307065 -0.446607 -0.331187 -0.336288 -0.085632 -0.163594 -0.420870 0.321795 -0.258513 0.419796 0.049303 -0.045832 -0.368465 0.058379 0.349028 -0.068463 -0.174062 -0.222270 0.316947 0.094680 -0.049694 0.044056 -0.072181 -0.024412 0.357065 0.381243 -0.209965 -0.104629 0.171709 -0.365863 -0.061602 -0.342645 -0.174113 0.262581 -0.349164 -0.045952 0.137273 -0.218569 -0.002949 0.525284 -0.026281 0.226708 0.785391 -0.013372 0.185301 0.124011 -0.341305 0.195407 -0.011175 -0.000115 0.199684 0.292826 0.058845 -0.512820 -0.296735 0.006983 0.318142 0.226080 -0.344711 -0.409065 -0.239731 0.004376 0.171450 -0.025376 0.059458 -0.148025 -0.212432 -0.066191 -0.015831 0.594363 -0.164054 -0.114908 0.060596 -0.085086 -0.346777 -0.633221 -0.106649 -0.265682 0.040668 -0.227608 -0.040820 0.129107 0.389632 -0.852524 0.348853 -0.277628 -0.134836 0.304871 -0.049532 -0.079772 -0.629323 0.058994 0.217252 0.411446 -0.041817 0.072536 0.153074 -0.337350 -0.038135 -0.075236 0.205007 -0.183565 0.176354 0.134165 -0.342014 -0.203292 0.014296 0.068804 -0.196446 0.049255 0.153905 0.064642 -0.706442 0.303600 -0.134490 -0.129007 0.287046 0.057879 0.140413 -0.368228 -0.332601 0.155942 0.097753 0.026009 -0.261081 0.000426 0.304311 -0.182946 -0.141232 -0.150793 -0.364421 0.067760 -0.219567 0.110135 0.159668 0.045596 0.345872 0.056895 -0.109158 -0.327838 0.201510 -0.248805 -0.238879 -0.077018 -0.127425 -0.094124 0.304681 0.510783 0.091867 0.101830 0.155542 0.455077 -0.362521 -0.187118 0.244811 0.236619 -0.112639 0.160108 0.258484 -0.418829 -0.233077 -0.140303 -0.137935 0.129883 -0.190660 0.258740 -0.250108 0.106671 0.118972 0.045783 -0.097718 0.255335 0.046769 0.056021 -0.063588 0.450504 0.573211 -0.193256 0.004564 -0.211116 0.067630 -0.436274 -0.177557 -0.066334 0.242864 -0.179586 0.138090 0.104633 0.295406 0.036230 0.005971 0.008597 -0.171667 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base(int*) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = -0.449509 0.049402 0.452496 -1.067446 0.848479 0.312131 0.329773 -0.414432 -0.844442 -0.422050 0.053123 -0.854037 -0.535591 1.178258 -0.485025 0.638435 1.771441 0.406164 -0.302685 -0.507652 1.107846 -0.576300 1.634502 1.517581 -1.327312 -0.066492 0.669219 0.823938 0.489292 0.544021 -0.415500 -0.577520 0.478439 -0.910414 0.295408 -0.996665 0.227189 0.090635 0.449951 -1.838321 0.201218 -0.434559 -0.017189 -0.177271 -0.324185 0.686269 1.227935 1.063550 -0.572757 0.241802 1.105928 0.308697 -0.141275 0.336485 0.126926 0.300999 0.532668 0.323180 -0.402368 -0.310333 -0.142747 -0.758045 0.358514 1.209945 1.471258 0.084124 0.050326 0.624413 0.199032 0.207563 0.385279 0.291629 0.044776 0.241493 0.682044 -1.811323 0.026478 -2.740729 -0.350241 -2.945146 -0.799594 -0.620813 0.514538 -0.581025 0.622514 0.369766 1.343522 0.093094 0.237375 0.812717 1.464004 -1.169213 -0.501246 -0.858174 -0.731156 0.475566 -0.666960 0.116567 0.611778 0.136299 -0.940415 -0.920609 0.633792 0.380025 -0.507075 -0.717932 0.066754 0.924325 -1.096134 -0.781695 -0.861566 0.253429 -0.241704 -1.850255 0.174951 -0.795116 1.359358 -0.001032 -0.258270 -1.199356 0.090985 0.976363 -0.416399 -0.567835 -0.313383 0.965278 0.696965 0.157187 0.213900 -0.091751 0.253843 1.502083 1.051345 -0.750665 -0.296137 0.165978 -0.911500 -0.051105 -1.054889 -0.416085 0.903737 -1.142997 0.284210 0.839870 -0.744804 -0.396792 1.525866 -0.192401 0.725036 3.395528 -0.099748 0.968788 0.615941 -1.266026 0.485587 -0.329005 -0.155077 0.476792 0.820525 0.298349 -1.622735 -1.088108 0.498189 1.200178 0.873103 -1.340754 -0.761326 -0.406893 -0.048526 0.031234 -0.153207 0.329915 -0.319379 -0.756205 -0.278686 0.768494 2.003746 -0.539174 -0.694426 0.459184 0.523878 -0.596722 -1.528347 -0.475438 -0.847111 0.169481 0.163006 0.005644 0.736669 1.553684 -2.778469 1.001743 -0.323146 -0.184038 0.805390 0.207375 -0.726928 -1.663606 0.250597 1.002345 1.215373 -0.151966 0.238022 0.305844 -1.099795 -0.101824 0.110868 0.511687 -0.484304 0.539689 0.274656 -0.966043 -0.822314 0.032055 -0.179017 -0.384291 0.009782 0.636631 -0.039601 -2.427578 1.386699 -0.324346 -0.445269 0.484085 -0.435112 0.957963 -1.309860 -1.315094 0.709451 0.025285 -0.108647 -0.661825 0.168295 0.958338 -0.120490 0.253867 -0.730909 -1.452805 0.606341 -0.418049 0.770690 0.516009 0.291887 1.208895 -0.443697 -0.331857 -1.289151 -0.142087 -0.085445 -0.165200 -0.921385 -0.450165 -0.269369 1.090013 1.428510 -0.150769 -0.242536 0.200741 1.238561 -1.436744 -0.490521 0.804502 0.953531 -0.884489 0.450943 0.955401 -1.294235 -0.571176 -0.675966 -0.226800 -0.079543 -1.070369 0.621101 -0.491084 0.456090 0.441204 0.096550 -0.162625 0.726730 0.289639 0.340303 0.007219 1.346920 1.935090 -0.720588 -0.248602 -1.115067 0.461164 -1.705549 -1.334013 0.393615 0.126743 -0.532272 0.242522 0.129733 1.125910 -0.068819 0.053732 -0.178538 -0.158020 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int*, int*, int*) = -1.116654 -0.888682 -0.113696 -2.821275 2.051005 0.885210 0.857527 -1.099144 -2.388325 -0.294440 0.660809 -2.400920 -0.355312 2.549134 -0.912233 2.504306 3.909410 0.661957 -0.990567 -0.696599 2.591349 -0.391351 3.635416 3.214519 -2.505187 -0.262006 0.432666 1.524451 0.458766 0.284733 -0.652279 -1.308427 1.028133 -2.852524 -0.306184 -1.736729 0.566470 0.711095 2.349893 -3.705311 0.810411 -0.763712 0.352172 -0.643488 -1.074564 0.257170 2.029573 2.480539 -1.100368 0.677772 2.587690 0.456198 -0.450753 0.787508 0.092351 0.882288 0.170633 0.495598 -0.952436 -1.336861 -0.198247 -0.445328 1.049645 2.380314 2.906331 0.246652 -0.165239 1.927949 1.028102 0.383309 1.440342 0.476128 -0.639718 -0.116352 1.346549 -3.909687 -0.317102 -5.585798 -0.681522 -5.181301 -1.796774 -0.381623 1.463134 -0.894292 1.757000 0.704676 2.741564 -0.390720 0.034716 2.116768 2.593107 -2.613058 -1.316206 -1.949971 -1.728134 0.949868 -1.222619 0.090213 1.573377 0.612962 -2.233520 -1.515467 1.020376 1.150282 -0.961445 -2.340940 0.853356 1.578082 -1.640867 -2.275924 -0.916282 1.986446 -0.603350 -3.951200 -0.156804 -1.694762 1.982932 -0.216593 -0.843174 -2.849286 -0.001900 1.516657 -1.221505 -1.256531 -0.305278 1.563542 1.769299 0.843799 0.691571 -0.081201 0.578155 4.208170 1.346158 -2.046244 -0.362680 0.281273 -1.280852 0.496632 -2.082564 -1.366408 1.264685 -2.874073 1.112548 2.003024 -1.668281 -0.644303 3.129712 0.555769 1.067392 7.597779 0.037006 2.796844 2.048885 -2.484133 1.110505 -1.148730 0.097221 0.900026 1.425692 -0.072077 -3.373204 -2.537593 1.268320 2.492954 2.153944 -2.783704 -1.547523 -0.405158 0.083335 0.265832 -0.689637 0.840984 -0.128895 -1.847145 -0.432247 2.128367 4.740280 -0.873178 -0.674079 1.419892 1.994675 -1.286972 -3.068786 -1.488150 -2.950327 0.330118 0.917318 0.456478 1.691319 3.518597 -5.120800 1.916359 -0.479095 0.173609 1.678139 1.047149 -2.340031 -3.471244 -0.281488 1.686026 2.825092 -0.936628 0.925700 1.054313 -2.059259 -0.141179 0.471297 0.339157 -0.777712 0.975436 0.204806 -1.755228 -1.101503 0.750397 -1.008209 -0.675508 0.188160 1.639547 0.276754 -4.153069 2.556914 -0.337741 -1.180317 1.280620 -1.273648 2.790851 -2.547183 -2.387607 1.947979 0.156237 0.304767 -0.920546 0.751513 1.901807 0.101692 1.083271 -1.550499 -2.904532 1.472849 -0.602945 2.086265 1.110533 -0.231431 1.546887 -1.725031 -0.662239 -2.545180 -1.116084 -0.580669 0.226123 -2.460160 -1.124246 -0.588178 2.586917 2.281159 -0.155989 -1.303629 0.369050 2.452789 -3.041761 -0.487844 1.807606 1.534967 -2.541000 0.618759 2.312860 -3.025893 -0.337154 -1.333102 0.194491 -0.537109 -2.195334 1.541109 -0.056728 1.421012 0.255730 0.215310 0.341615 1.350750 0.981958 0.867812 0.211789 3.148241 2.949060 -0.657923 -1.181877 -2.650943 0.780738 -3.438238 -3.189581 1.302745 0.178195 -2.116470 0.578887 0.460693 2.987925 -0.310929 0.309174 -0.647600 0.010460 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__copy_move::__assign_one(int*, int*) = -0.170699 -0.082984 0.296186 -0.424067 0.319642 0.063832 0.144083 -0.218817 -0.449667 -0.103533 0.053891 -0.201853 -0.067653 0.511017 -0.203855 0.361541 0.744407 0.296656 -0.135241 -0.308779 0.511649 -0.505829 0.683046 0.701544 -0.577677 0.017563 0.329288 0.411206 0.355008 0.376584 -0.325506 -0.039927 0.221542 -0.537123 0.133365 -0.622062 0.089597 0.174341 0.261458 -0.856743 0.087894 -0.311596 0.061942 -0.028595 -0.104466 0.410450 0.395512 0.428931 -0.215176 0.304101 0.484896 0.023331 -0.002952 0.145331 0.139247 0.329674 0.470627 0.250058 -0.143078 -0.024539 -0.049517 -0.472474 0.264444 0.478960 0.668292 -0.032855 0.049316 0.232643 0.089838 0.049880 0.279443 0.105585 -0.136478 0.001213 0.274290 -1.032313 0.164717 -1.292946 -0.175817 -1.328810 -0.317239 -0.248364 0.223971 -0.427883 0.348545 0.309158 0.549583 0.022271 0.044966 0.168688 0.519105 -0.588709 -0.206057 -0.227794 -0.281863 0.174937 -0.303714 -0.024792 0.306170 0.035670 -0.337073 -0.460902 0.517817 0.236363 -0.236189 -0.246010 -0.028848 0.468700 -0.573972 -0.502975 -0.346196 0.023279 -0.246241 -0.678915 0.304610 -0.453357 0.752680 0.016803 -0.095743 -0.554938 0.048351 0.508394 -0.131250 -0.300997 -0.099670 0.422365 0.251376 0.055675 0.032954 -0.133221 -0.006033 0.622158 0.540257 -0.354688 -0.114832 0.169285 -0.483603 0.026225 -0.527195 -0.233310 0.418398 -0.498379 0.009412 0.277890 -0.317162 -0.047625 0.987486 0.054241 0.268373 1.413930 0.029784 0.384686 0.276016 -0.504469 0.219081 -0.057595 0.063186 0.353290 0.395630 0.009276 -0.900342 -0.471721 0.074104 0.482365 0.354814 -0.676675 -0.595911 -0.288955 -0.014559 0.200537 -0.081953 0.087694 -0.191890 -0.319471 -0.106986 0.107163 0.917509 -0.286470 -0.258291 0.124124 -0.039527 -0.508420 -0.928042 -0.207537 -0.394095 0.111316 -0.162002 -0.020490 0.266828 0.613686 -1.318555 0.469160 -0.374656 -0.152125 0.434576 0.067805 -0.249568 -0.837647 0.059668 0.275708 0.578423 -0.039510 0.090094 0.319821 -0.507414 -0.046751 -0.057307 0.203613 -0.239324 0.248669 0.232953 -0.454834 -0.299999 0.086307 0.049770 -0.249271 0.090134 0.290740 -0.077952 -1.116336 0.431247 -0.166841 -0.221694 0.399802 -0.015823 0.341338 -0.545377 -0.511121 0.305838 0.156915 0.072337 -0.405936 0.051648 0.450722 -0.162791 -0.038638 -0.298752 -0.621258 0.106440 -0.355489 0.230452 0.230476 0.019690 0.525285 -0.151053 -0.120474 -0.608487 0.217318 -0.222172 -0.192646 -0.252146 -0.281028 -0.121140 0.482727 0.648994 0.102385 0.055410 0.175848 0.664317 -0.658526 -0.231885 0.345550 0.559402 -0.276951 0.230004 0.379380 -0.640131 -0.240632 -0.169181 -0.249918 0.109936 -0.304528 0.441299 -0.202725 0.258816 0.079636 0.152684 -0.046343 0.372590 0.087342 0.157303 -0.035848 0.644607 0.998158 -0.299933 -0.136113 -0.384386 0.165116 -0.657951 -0.417354 0.033917 0.246945 -0.319541 0.194873 0.124881 0.538040 0.085831 -0.021800 0.006773 -0.154294 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_iter >::_Iter_comp_iter(std::greater) = -0.095961 0.196020 0.183904 -0.137335 0.344557 0.250237 0.127172 -0.106145 -0.196902 -0.159761 -0.074375 -0.324890 -0.291207 0.400163 -0.128067 0.222301 0.550088 0.157285 -0.022131 -0.046588 0.177972 -0.195953 0.529614 0.433573 -0.325007 0.054336 0.160459 0.106815 -0.133932 0.487149 -0.303459 -0.462579 0.234736 -0.172293 0.071148 -0.255815 -0.016069 -0.043298 0.064422 -0.585510 0.023264 0.075529 0.010443 -0.073898 -0.057663 0.029768 0.533873 0.279110 0.018468 0.123308 0.114003 0.095286 0.051109 0.137967 0.223539 0.212169 0.249376 -0.138455 -0.276579 -0.024310 -0.133222 -0.326818 -0.093593 0.320185 0.407564 0.031378 -0.004850 0.076376 -0.223734 0.043868 0.016071 0.105551 0.096224 0.175895 0.126998 -0.270471 0.045798 -0.409226 -0.186155 -0.701643 -0.282127 -0.273179 0.067702 0.138724 0.282771 0.009991 0.443740 -0.034409 0.121500 0.011079 0.606932 -0.499786 -0.178040 -0.193830 -0.071446 0.038863 -0.209439 -0.036178 0.063924 -0.156800 -0.322061 -0.376588 0.308946 0.135145 -0.134110 -0.102864 -0.036634 0.327572 -0.467766 -0.298052 -0.435462 -0.139299 -0.147107 -0.535031 0.056403 0.008280 0.150632 0.175304 -0.146720 -0.505091 0.199920 0.370652 -0.109886 -0.305627 -0.099372 0.357776 0.100362 -0.016049 0.122618 -0.011054 0.121542 0.531232 0.377778 -0.130642 -0.035127 0.022098 -0.208497 -0.019077 -0.166048 -0.145021 -0.097022 -0.391421 0.036794 0.305470 -0.259478 0.065000 0.015163 -0.089017 0.236376 0.757318 -0.169861 0.232376 0.042174 -0.533070 0.230856 -0.165638 -0.157363 -0.045002 0.265593 0.240624 -0.365155 -0.288355 0.230486 0.402185 0.256720 -0.303051 -0.098626 -0.216245 0.081615 -0.001775 0.065903 0.150897 -0.005795 -0.292300 -0.093101 0.108964 0.773136 -0.280948 -0.310241 0.219106 -0.069896 -0.026407 -0.384218 -0.129928 -0.227649 0.011330 -0.017200 -0.079350 0.104932 0.469882 -0.669284 0.396855 -0.225369 -0.295695 0.389685 -0.025621 -0.117193 -0.232053 0.043687 0.417899 0.406063 0.096127 0.100318 -0.077017 -0.346868 -0.068027 -0.032654 0.245841 -0.154845 0.210395 0.091655 -0.506390 -0.306411 -0.153284 0.056296 -0.283189 -0.115353 0.151400 0.239327 -0.779927 0.499240 0.053205 -0.105106 0.169804 0.046895 0.212205 -0.354622 -0.502971 0.194796 -0.145952 -0.098202 -0.010823 -0.031124 0.200238 0.028149 -0.035852 -0.148900 -0.386670 0.217297 0.077424 0.254089 0.164521 0.198906 0.351715 0.131043 -0.250641 -0.193952 -0.121227 0.042486 -0.261168 -0.143128 -0.054250 -0.155795 0.394186 0.509947 0.087639 -0.065222 -0.152012 0.365145 -0.342764 -0.027913 0.371065 0.160175 -0.221653 -0.002647 0.376373 -0.265294 -0.277269 -0.158508 -0.030233 -0.128388 -0.328122 0.031827 -0.324905 0.023775 0.237795 -0.064101 -0.210447 0.133914 0.020772 -0.000560 -0.073660 0.400180 0.317016 -0.287237 0.148825 -0.266011 0.136382 -0.512919 -0.352038 0.094344 0.116258 -0.221209 -0.007788 0.080735 0.191964 -0.077896 0.014147 -0.042582 -0.205959 +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.999647 -1.043577 0.493427 -4.201416 3.730624 1.667223 2.045373 -1.236088 -4.950773 -1.811372 1.393783 -5.836937 -2.810366 6.111353 -1.468560 3.735099 8.286052 1.659997 -1.901529 -0.984634 4.512819 -1.399683 7.248551 6.902177 -4.743129 -0.106076 -0.288532 2.435513 0.503774 2.098593 -0.514253 -3.953045 2.897482 -3.845873 0.032069 -3.501738 0.529609 1.234116 2.778402 -8.223311 1.359286 1.119049 1.225068 -1.423525 -1.416854 2.656088 4.858462 4.765691 -1.381052 1.574383 3.815122 -0.008462 -0.087271 1.613470 1.191227 0.435395 0.741362 0.377171 -3.176132 -1.689187 -1.015594 -2.572312 0.245342 4.534316 6.492799 0.415714 -0.446761 2.400836 0.596527 1.563775 2.143202 1.011819 1.100036 -0.082406 2.817758 -4.733442 -1.162727 -9.519869 -1.526727 -12.364943 -3.894614 -0.882913 4.878676 0.179582 2.261664 -1.337850 5.319460 -0.261661 -0.548442 4.003021 6.895080 -4.608256 -2.777992 -3.606694 -2.164700 1.918007 -2.817798 0.314118 4.279206 0.024814 -4.976175 -2.603124 2.118567 1.299032 -1.800722 -2.824446 1.002696 4.195755 -4.338229 -3.000604 -2.679852 2.772381 0.201339 -8.196069 0.201885 -2.629061 1.987368 0.997286 -2.291593 -3.924175 1.133583 2.078003 -2.311443 -2.276762 -2.163068 5.328040 2.275041 1.731569 1.401254 1.063871 1.457614 6.892598 2.632377 -3.367637 0.068725 -0.004229 -2.408738 1.639530 -3.989195 -2.657430 2.885776 -5.139580 1.562903 2.744768 -3.432273 -1.134707 2.949366 1.143950 1.853182 14.054812 -0.497483 5.972834 3.671130 -4.904159 3.883900 -1.848424 -0.263567 1.070552 3.121845 0.754453 -5.732353 -4.738473 3.223178 5.456252 4.215442 -6.216969 -1.664908 -0.936910 0.583974 -0.594995 0.165510 1.804670 0.893036 -4.085298 -0.974154 4.128941 9.908567 -2.619036 -2.768077 2.583982 2.641561 -0.957508 -6.243622 -2.330805 -3.550890 0.520642 0.968771 0.465753 3.054781 7.003608 -10.039267 4.858854 -0.502679 -0.573972 4.521036 1.236464 -4.639564 -7.846368 -0.718573 3.997764 6.324850 -0.069985 0.636875 1.278682 -4.814492 -0.515073 0.692293 0.874765 -1.458960 2.311954 -0.267277 -2.814549 -2.849321 -0.709728 -1.727632 -1.358239 -0.619626 3.256992 2.692141 -8.690061 5.482851 -0.366475 -2.287123 0.603308 -1.177728 4.319411 -4.813156 -5.527873 2.719215 -1.421155 -2.900056 -3.191485 0.976117 2.746051 0.175022 1.219255 -2.109531 -6.490077 4.889049 -1.509423 4.644761 2.281367 0.212475 4.169768 1.222742 -2.363375 -4.609476 -3.173055 0.418662 -1.291020 -4.422834 -0.851348 -1.410656 4.722784 4.656077 0.147287 -2.962346 -1.032171 5.656672 -5.265798 -1.816753 4.524297 1.638891 -3.941263 1.980856 5.276605 -6.075615 -0.898119 -3.438893 -1.076892 -1.651333 -4.314006 2.250692 -0.671690 2.120728 0.664141 -0.003780 -0.502641 2.181528 1.481552 0.068220 0.083397 7.102823 6.742539 -3.010144 -0.642641 -5.111654 2.383351 -6.737201 -6.157385 2.385035 0.504528 -3.970599 0.573730 1.273387 4.761059 -0.226654 -0.885104 -2.193009 0.569309 +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.475603 0.074953 0.104956 -1.160914 0.970395 0.162451 0.368599 -0.491420 -0.716234 -0.536313 0.203749 -1.523361 -0.694285 0.708814 -0.584212 0.739882 1.696316 0.054207 -0.339068 -0.448591 0.697427 0.236650 1.894026 1.559552 -1.213631 -0.070842 0.206932 0.748964 0.193830 -0.101541 -0.444764 -0.733224 0.593295 -0.727033 0.032082 -0.330866 0.162424 -0.257726 0.664925 -1.418325 0.263519 -0.383320 0.087357 -0.171569 -0.366696 0.761330 1.411780 1.085140 -0.388988 0.036001 1.235465 0.368934 0.001155 0.413575 -0.122469 -0.104985 0.415582 -0.251068 -0.431854 -0.809243 -0.182779 -0.400817 0.081946 1.193652 1.248077 0.188855 -0.203257 0.715243 0.481851 0.128542 0.450632 0.458022 0.219757 0.440430 0.592115 -1.246504 0.212451 -2.025509 -0.483995 -2.497412 -0.951243 -0.481802 0.528772 -0.228905 0.642734 0.324802 1.427283 0.055859 0.303898 0.638065 1.301332 -1.246040 -0.585391 -0.640028 -0.470135 0.332529 -0.609405 0.301008 0.409180 0.539448 -1.068797 -0.365218 0.407434 0.185787 -0.484350 -0.675393 0.366192 0.248254 -0.879912 -0.481711 -0.971399 0.443755 0.233732 -1.955690 -0.003349 -0.416452 1.191119 -0.144898 -0.384585 -1.131479 0.022260 0.513217 -0.548969 -0.278014 -0.764936 0.766587 0.866466 0.351899 0.469635 0.150831 0.555434 1.859322 0.644907 -0.795630 -0.429503 -0.113694 -0.775074 0.098593 -0.677838 -0.380741 0.686606 -1.208621 0.818636 0.955054 -0.759847 -0.446192 0.841724 -0.122129 0.560484 2.692021 -0.258823 1.197402 0.857392 -1.137903 0.253158 -0.913807 -0.175748 0.123400 0.527786 0.462474 -0.955895 -1.088871 0.874684 1.176568 0.848976 -1.247068 0.187880 0.212311 0.361682 -0.247358 -0.246323 0.513663 0.161672 -0.853103 -0.204963 1.158524 2.059827 -0.210544 -0.230286 0.646743 0.602812 0.055322 -0.902399 -0.646272 -0.665091 0.103910 0.664714 0.462258 0.563662 1.620270 -2.079995 0.699278 0.060539 0.047002 0.927543 0.352280 -1.012329 -1.104251 0.137258 1.006457 0.929008 -0.290268 0.397784 0.085425 -0.864951 -0.148990 0.226407 0.429155 -0.441888 0.451713 0.398430 -0.930479 -0.629349 -0.320969 -0.134919 0.061116 -0.093358 0.780389 0.106536 -2.266243 1.472016 -0.161260 -0.698839 0.080006 -0.935138 1.123268 -1.242609 -0.972883 0.736984 -0.579632 -0.232053 -0.430452 0.382258 0.546452 -0.056214 0.664007 -0.933486 -1.090544 1.047606 0.046499 0.969419 0.516341 0.283661 0.784448 -0.705910 -0.197653 -0.962577 -0.354568 -0.161447 -0.131911 -1.190156 0.218464 -0.298110 0.994162 1.299835 -0.568921 -0.287345 0.356276 0.677240 -1.485942 -0.381634 0.753925 1.027464 -1.160990 0.627475 0.915264 -1.064897 -0.380705 -0.825180 -0.231220 -0.481255 -1.275236 0.472982 -0.409142 0.431031 0.688696 -0.116266 -0.118923 0.585922 0.140979 0.231244 0.098324 1.292134 1.760895 -0.213660 -0.205255 -1.353619 0.431570 -1.727328 -1.650628 0.910549 -0.224033 -0.772381 -0.019707 0.121080 1.278727 -0.274730 -0.138445 -0.593669 0.264218 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator+(long) const = -0.429838 0.357965 0.770290 -0.803565 1.039529 1.052533 0.353564 -0.480416 -0.711077 -0.271059 -0.063922 -0.973240 -0.817918 1.296320 -0.580389 0.516799 1.714529 0.400885 -0.313945 -0.161089 0.829670 -0.180726 1.659454 1.427985 -1.168025 -0.040447 0.565540 0.569253 -0.034732 1.253895 -0.868550 -1.182410 0.569804 -0.479830 0.192068 -0.784849 0.059506 -0.161038 0.284562 -1.712465 0.120497 0.041428 -0.371614 -0.228304 -0.124159 0.232028 1.506013 0.952862 -0.153551 0.109785 0.640012 0.433229 -0.062017 0.333035 0.543723 0.426594 0.874161 0.143815 -0.592930 -0.278780 -0.393297 -0.596660 -0.140697 1.182194 1.392641 0.233936 0.030775 0.158290 -0.279872 0.165516 0.123915 0.312134 0.323591 0.665768 0.485920 -0.864438 0.146557 -1.663014 -0.379633 -1.800715 -0.744509 -0.685344 0.197545 0.027772 0.706388 -0.180106 1.358389 -0.015414 0.201842 0.354933 1.814249 -1.364852 -0.488348 -0.758063 -0.587577 0.169513 -0.668721 0.123419 0.157616 -0.334905 -1.008986 -1.146007 0.513879 0.416703 -0.419219 -0.251607 -0.054600 1.095375 -1.067745 -0.698231 -1.003008 -0.028571 -0.324871 -1.849933 -0.375096 -0.454776 0.744743 0.242683 -0.470631 -1.390810 0.471653 1.146298 -0.428220 -0.786581 -0.106968 1.177121 0.625332 0.019190 0.132639 -0.152690 0.338361 1.452944 1.011760 -0.551106 -0.091887 -0.032544 -0.758715 -0.047223 -0.800919 -0.182536 0.076025 -1.008367 0.111972 1.084685 -0.756965 0.065630 0.425541 -0.222086 0.725616 3.380968 -0.486319 0.873663 0.270730 -1.574495 0.704978 -0.260702 -0.333428 0.040505 0.701168 0.645744 -1.696619 -0.971644 0.798947 1.276235 0.822283 -1.240210 -0.118516 -0.531537 0.027556 -0.262917 0.151212 0.416965 -0.254884 -0.822180 -0.362081 0.640830 2.244546 -0.830311 -1.564037 0.598383 0.091619 -0.111167 -0.973094 -0.408488 -0.479600 0.147193 0.322844 -0.184164 0.676431 1.536565 -2.413921 1.138605 -0.304897 -0.779785 1.317791 -0.013522 -0.557641 -0.447099 0.225751 1.255109 1.164178 0.337422 -0.032728 -0.049708 -1.129549 -0.148596 0.070057 0.711373 -0.478662 0.612552 0.432404 -1.359828 -1.002656 -0.595207 -0.019379 -0.733424 -0.507105 0.554750 -0.005569 -2.565324 1.599622 0.197467 -0.257659 0.373146 -0.276273 0.695221 -1.196785 -1.593450 0.639525 -0.247806 -0.235156 -0.287360 0.012438 0.748634 0.281462 0.478357 -0.888933 -1.538290 0.667312 -0.001822 0.953984 0.448559 0.585854 1.100485 0.224717 -0.498042 -0.995810 -0.561373 0.613489 -0.156455 -0.838215 -0.362240 -0.390189 1.187418 1.385158 -0.081287 -0.291532 -0.657501 1.172765 -1.153348 -0.122646 0.933006 0.661308 -0.877889 -0.058796 1.032764 -0.879311 -0.770256 -0.502221 -0.351798 -0.517220 -1.118866 0.275817 -0.701823 0.315093 0.564890 -0.020469 -0.534934 0.391299 0.176529 0.080396 0.086735 1.214869 1.398570 -0.827885 0.298662 -1.041775 0.690856 -1.674433 -1.325229 0.495688 -0.303846 -0.592848 0.023588 0.126039 0.838476 -0.157274 0.107365 -0.082995 -0.338702 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.123077 0.225392 0.274166 -0.343964 0.398271 0.352908 0.086009 -0.235578 -0.231895 -0.130017 -0.067307 -0.282133 -0.207557 0.425753 -0.234330 0.174848 0.587781 0.105968 -0.070452 -0.118856 0.293246 -0.081703 0.575746 0.485162 -0.444234 0.015046 0.329864 0.187070 0.018350 0.479682 -0.325322 -0.459486 0.158813 -0.166888 0.068299 -0.308627 0.015340 -0.075509 0.137863 -0.601169 0.050550 -0.142102 -0.153359 -0.066477 -0.066159 0.019557 0.576456 0.312948 -0.077722 0.048001 0.297870 0.321537 -0.089772 0.107172 0.187172 0.208395 0.377282 -0.031450 -0.117961 -0.085157 -0.106023 -0.132396 -0.015081 0.451651 0.462427 0.079170 0.025860 0.095506 -0.119323 0.030982 0.014166 0.111206 0.020472 0.298133 0.106285 -0.474466 0.082230 -0.715441 -0.124626 -0.696368 -0.238319 -0.269197 -0.065989 -0.027399 0.271790 0.135215 0.478559 0.002333 0.130304 0.126139 0.614164 -0.469253 -0.131095 -0.225867 -0.273939 0.047377 -0.188663 0.048577 -0.096678 -0.065971 -0.307730 -0.463030 0.222731 0.163024 -0.163892 -0.140144 -0.008807 0.320688 -0.461051 -0.241821 -0.309973 -0.005395 -0.173105 -0.624191 -0.124869 -0.216698 0.427489 0.003403 -0.128494 -0.587388 0.132515 0.491765 -0.164270 -0.274039 -0.029161 0.297246 0.260119 0.004732 0.012275 -0.156042 0.143903 0.566946 0.348648 -0.214198 -0.051505 -0.016011 -0.232170 -0.108298 -0.278306 -0.037171 -0.019142 -0.349980 0.127931 0.441037 -0.246808 -0.040153 0.271628 -0.199386 0.278206 1.228205 -0.192774 0.270785 0.064166 -0.592897 0.061244 -0.126843 -0.169219 0.014792 0.234800 0.257837 -0.539112 -0.337398 0.257156 0.416757 0.270542 -0.362706 -0.120955 -0.198281 -0.076401 0.007113 0.017540 0.075441 -0.193748 -0.275885 -0.162404 0.187213 0.815376 -0.187613 -0.376127 0.196732 0.077469 -0.115037 -0.278253 -0.130853 -0.223321 0.103138 0.158311 -0.099602 0.264472 0.521088 -1.011992 0.374145 -0.159526 -0.277536 0.307323 0.027872 -0.142004 -0.150445 0.119612 0.461335 0.398838 0.023099 0.153665 -0.020467 -0.372552 -0.063271 0.006167 0.266425 -0.230909 0.184138 0.276215 -0.597106 -0.352425 -0.059692 0.021293 -0.236952 -0.149500 0.162622 -0.060916 -1.020900 0.592305 0.044247 -0.034330 0.178952 -0.123539 0.298742 -0.422547 -0.513160 0.241659 -0.029091 0.071742 0.014631 -0.013120 0.320552 0.027687 0.247164 -0.324203 -0.487114 0.089253 0.020093 0.260350 0.165815 0.246475 0.359340 -0.230821 -0.075573 -0.376703 -0.111402 0.198348 -0.032721 -0.257016 -0.037591 -0.150514 0.406864 0.515752 -0.038083 -0.122636 -0.083495 0.381567 -0.390651 0.025719 0.260562 0.332117 -0.369678 -0.049314 0.305171 -0.276074 -0.296537 -0.165638 -0.057310 -0.153427 -0.387590 0.108994 -0.228803 0.102211 0.249481 0.008481 -0.220212 0.197696 0.035473 0.081766 0.054117 0.349084 0.483251 -0.231001 0.077169 -0.334159 0.169371 -0.590628 -0.487865 0.138269 -0.097346 -0.183942 -0.004102 -0.105349 0.336666 -0.085343 0.212705 0.069908 -0.142053 +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 >) = -3.833369 -1.479197 1.645701 -7.899385 7.196173 4.698745 3.589494 -3.966063 -8.718326 -2.254533 2.683541 -10.369807 -4.749109 11.309379 -3.384023 6.795517 15.127277 2.643751 -4.004948 -1.984404 8.562818 -2.007156 13.462502 13.124800 -8.829303 -0.346810 0.404012 4.490061 1.539268 4.347270 -2.122664 -6.807831 5.383542 -7.021807 -0.193671 -6.517451 0.746072 1.651153 5.892758 -14.781897 2.252639 0.622559 0.855498 -2.423701 -2.386373 5.581300 9.076848 8.522950 -1.885468 2.536892 6.928916 0.604398 -0.475875 2.735251 2.968189 1.181435 3.868140 2.111644 -4.886712 -3.283480 -2.126458 -3.021691 0.254338 8.870106 12.450159 1.229489 -0.693620 4.155194 1.151116 2.511333 3.512989 2.095731 1.791490 1.271103 4.534907 -9.545839 -1.094176 -17.848628 -2.858806 -20.862591 -6.466624 -1.373551 6.903810 -1.597241 4.661150 -2.030574 9.831935 0.243532 -1.577991 6.471981 13.016819 -9.026829 -4.622002 -5.736377 -4.413733 2.532876 -5.008247 1.598880 7.744343 -0.421464 -8.967574 -5.646432 3.899459 2.791704 -3.333442 -4.913744 1.718030 7.891380 -7.170399 -5.285643 -3.732453 4.778361 -0.551885 -15.138008 -0.295718 -6.161380 4.623208 1.199353 -4.366071 -8.223200 2.259283 4.886810 -4.206605 -4.773037 -2.379996 9.735781 5.131053 3.210184 1.434812 1.233325 2.742770 12.862192 4.555503 -6.206701 0.531681 -0.709775 -4.935195 3.005836 -7.770502 -3.987359 5.298367 -8.726580 3.105151 5.937736 -5.969591 -1.313096 7.141239 1.940623 3.137718 28.194790 -1.515292 10.942256 6.287906 -9.681109 6.370970 -3.350681 -0.393452 1.928416 5.454263 1.685511 -12.873579 -8.798659 6.479283 10.142871 7.347146 -12.588410 -3.002386 -1.837939 0.200742 -1.600389 0.394567 2.895984 0.539493 -6.991941 -2.200404 7.263687 19.111387 -5.493913 -5.889000 4.620270 4.037880 -1.804574 -11.398225 -4.288876 -5.925185 1.568768 1.865357 0.825749 6.026054 12.634839 -19.443374 8.849645 -1.316238 -1.971669 9.478510 2.558571 -8.344153 -12.835949 -0.911521 7.521665 11.157781 0.284731 0.345821 2.436740 -9.042004 -0.930417 1.042941 1.825307 -3.037436 4.162722 1.126675 -5.954234 -5.588253 -1.093284 -2.376020 -3.064525 -1.578382 6.036170 3.004160 -17.010154 10.439592 0.206220 -3.616815 1.268640 -2.555636 7.881741 -8.680930 -10.149304 4.964948 -2.366781 -3.863757 -5.939317 1.570108 5.157244 0.591687 4.355561 -5.382871 -12.329979 7.794567 -3.524568 8.531963 3.960254 1.101645 7.393682 0.857805 -3.855550 -9.532959 -5.889512 1.796052 -0.876414 -8.464853 -1.072995 -2.470201 8.847382 8.212160 0.072361 -5.502497 -2.336739 10.480201 -9.869250 -2.506210 7.625909 4.726823 -7.970130 2.486789 8.886606 -10.626168 -1.836291 -5.314277 -3.800787 -3.877731 -7.955974 4.317347 -0.771839 4.126545 0.834945 0.385938 -0.774593 4.074881 2.446190 0.657808 1.175087 12.413998 13.378758 -5.525179 -1.503118 -9.459802 5.046127 -12.221631 -11.698741 4.988352 -0.221492 -7.148320 0.579595 1.836016 8.940789 -0.118034 -1.546582 -3.286361 0.974972 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.166072 0.059590 0.357457 -0.396728 0.323814 0.097085 0.122695 -0.193211 -0.351220 -0.146037 -0.054284 -0.189027 -0.150467 0.500195 -0.216590 0.262865 0.760771 0.293275 -0.096158 -0.285712 0.470233 -0.503093 0.661248 0.663682 -0.570700 0.002900 0.416088 0.399904 0.288210 0.467720 -0.375439 -0.132916 0.189541 -0.424315 0.226405 -0.608289 0.086110 0.088403 0.131472 -0.855255 0.067774 -0.283283 0.047839 -0.041541 -0.096227 0.378050 0.504054 0.407779 -0.197394 0.169156 0.422666 0.104787 -0.014228 0.143139 0.163239 0.340083 0.507572 0.216738 -0.159564 -0.005962 -0.077962 -0.475303 0.227576 0.499387 0.648198 0.006069 0.070973 0.189633 0.022641 0.045730 0.166326 0.104858 -0.066772 0.104019 0.244962 -0.967627 0.182102 -1.213776 -0.170365 -1.302566 -0.300318 -0.361280 0.090883 -0.378487 0.331722 0.271532 0.562412 0.026792 0.152942 0.125275 0.599783 -0.586002 -0.188778 -0.296896 -0.279508 0.156013 -0.291016 -0.042692 0.263823 -0.022310 -0.330956 -0.503310 0.488413 0.228335 -0.220938 -0.185120 -0.053295 0.471000 -0.571218 -0.450581 -0.453812 -0.091973 -0.250526 -0.697498 0.301491 -0.407917 0.693176 0.025641 -0.084753 -0.616391 0.082461 0.596255 -0.132852 -0.311262 -0.132287 0.474340 0.231684 -0.030841 0.034575 -0.150573 0.008634 0.566064 0.606267 -0.307367 -0.138163 0.165329 -0.550482 -0.107813 -0.516297 -0.198036 0.397471 -0.482788 -0.034806 0.332067 -0.317374 -0.020854 0.875599 -0.079138 0.360916 1.427661 -0.062640 0.300455 0.156316 -0.568761 0.256938 -0.026106 -0.038433 0.251042 0.402125 0.127433 -0.899453 -0.452264 0.095893 0.478875 0.345219 -0.595887 -0.530019 -0.352177 -0.042682 0.166307 -0.073242 0.097528 -0.249472 -0.315908 -0.132281 0.090490 0.916827 -0.299782 -0.335729 0.131361 -0.053391 -0.443930 -0.865794 -0.179768 -0.367554 0.095196 -0.184225 -0.076723 0.273938 0.614518 -1.311990 0.489625 -0.362147 -0.236108 0.457878 -0.018863 -0.155297 -0.775305 0.128003 0.398649 0.569032 -0.017965 0.067743 0.189117 -0.495198 -0.051812 -0.069440 0.317195 -0.250956 0.238205 0.232202 -0.540855 -0.363044 0.014226 0.062782 -0.295335 0.044084 0.227005 -0.072305 -1.136041 0.548324 -0.146979 -0.143545 0.382901 -0.013256 0.259123 -0.563965 -0.564142 0.273472 0.150510 0.091603 -0.341890 0.022789 0.475146 -0.162986 -0.044680 -0.312899 -0.662901 0.090210 -0.285121 0.231057 0.211661 0.144097 0.559121 -0.055533 -0.119527 -0.587487 0.185975 -0.202441 -0.187928 -0.240190 -0.271201 -0.122235 0.488236 0.706911 0.040760 0.098856 0.128763 0.633166 -0.617914 -0.215985 0.344647 0.474898 -0.278080 0.144334 0.379944 -0.579545 -0.365259 -0.189449 -0.227520 0.088778 -0.364185 0.319529 -0.328472 0.180296 0.186986 0.088988 -0.123618 0.337970 0.082965 0.137758 -0.034618 0.591484 0.932592 -0.335913 -0.058811 -0.366509 0.170470 -0.696052 -0.408438 0.019459 0.201974 -0.231163 0.170704 0.127514 0.464082 0.010874 0.044428 0.048658 -0.236127 +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.334109 0.296006 0.971257 -1.008251 0.738045 0.261094 0.265235 -0.294917 -0.806669 -0.513013 0.009699 -1.067538 -0.836154 1.145343 -0.522000 0.047399 1.523001 0.379140 -0.375457 -0.432871 0.728008 -0.390466 1.392413 1.412432 -1.265727 0.047842 0.399744 0.906013 0.516179 0.959888 -0.384856 -0.633068 0.213778 0.022564 0.549055 -0.778110 0.075485 -0.078885 -0.171787 -1.748313 0.143958 0.211626 0.191862 -0.151744 0.030892 0.856931 1.329430 0.903747 -0.404329 0.000934 0.895882 0.380754 0.098378 0.241238 0.335553 -0.108188 1.180174 0.079608 -0.421041 -0.147151 -0.183162 -0.814124 0.047141 1.210737 1.417567 0.194008 0.002438 -0.053536 0.162452 0.305884 0.231875 0.332201 0.238312 0.538491 0.484858 -0.760321 0.502466 -1.974595 -0.038019 -2.460409 -0.762451 -0.583506 0.789846 0.124178 0.122803 -0.112402 1.280654 0.205338 0.182591 0.497228 1.524293 -0.702441 -0.376134 -0.617400 -0.794882 0.519747 -0.560868 0.149971 0.276166 0.300059 -0.850756 -0.551964 0.458938 0.058491 -0.518984 0.281904 -0.059935 0.923406 -1.082155 -0.155325 -0.722323 0.150085 0.192899 -1.703861 -0.057435 -0.835046 0.800684 -0.021183 -0.315506 -0.597394 0.204920 0.592852 -0.452656 -0.026670 -1.288612 1.153237 0.434908 0.025465 0.018674 -0.065093 0.319011 0.672525 0.548269 -0.696978 -0.155864 0.049012 -0.735501 -0.083024 -0.921609 -0.147782 0.749685 -0.735983 0.050523 0.450948 -0.663296 -0.345949 0.246610 -0.276132 0.616400 2.891866 -0.263850 0.870603 0.413601 -1.090538 0.630078 0.107107 -0.272823 0.336373 0.686373 0.502889 -1.054836 -0.956584 0.569503 1.212413 0.737624 -0.983070 -0.145088 -0.219154 -0.217828 -0.141454 0.259071 0.171791 -0.403900 -0.652388 -0.390335 0.596705 1.545375 -0.215214 -1.338315 0.273594 0.246849 -0.279309 -0.833057 -0.184758 -0.092475 0.209398 -0.069095 -0.114312 0.800703 1.401981 -2.795847 1.118827 0.130961 -0.349367 1.135582 -0.273847 -0.556996 -1.303148 0.287327 1.008506 1.094292 0.033920 -0.275941 0.128459 -1.104187 -0.160467 0.067951 0.540623 -0.597421 0.562235 0.346259 -0.795080 -0.841049 -0.745732 -0.080968 -0.156699 -0.507069 0.566403 -0.046418 -2.270122 1.390225 -0.165331 -0.263834 -0.035853 -0.449017 0.311832 -1.171641 -1.191883 0.243854 -0.213069 -0.641397 -0.815652 0.001993 0.718383 -0.211608 0.326963 -0.816866 -1.100324 0.771350 -0.550600 0.735622 0.508326 0.407235 0.969234 0.738363 -0.198098 -0.913742 -0.037505 0.356456 -0.268226 -0.725912 0.154148 -0.384920 0.747161 1.323822 -0.268882 -0.123761 -0.110201 1.142221 -0.680934 -0.710020 0.655345 -0.017257 -0.630394 0.545256 0.786868 -0.948362 -0.594091 -0.873684 -0.585743 -0.185579 -0.931589 0.580670 -0.437032 0.285354 0.545019 -0.074937 -0.563169 0.622875 0.122710 -0.096052 0.172233 1.313194 1.565134 -0.622679 0.432738 -1.023645 0.592707 -1.544846 -0.997506 0.257620 -0.292463 -0.396622 0.074792 -0.096724 0.843701 0.026980 0.066661 -0.212593 0.175447 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter >&&) = -0.134499 0.271360 0.460485 -0.448869 0.490242 0.435525 0.123947 -0.236886 -0.340976 -0.111969 -0.102529 -0.409035 -0.283202 0.565204 -0.250188 0.208252 0.801206 0.185442 -0.136020 -0.135439 0.360941 -0.188638 0.721301 0.666271 -0.577473 0.058388 0.348165 0.292063 0.033500 0.707666 -0.525193 -0.495960 0.142281 -0.192280 0.169390 -0.429680 -0.018171 -0.099584 0.124178 -0.877225 0.066773 -0.035013 -0.078689 -0.102768 -0.032118 0.093029 0.771495 0.400987 -0.084567 0.028614 0.330830 0.264574 -0.010996 0.123726 0.309795 0.322761 0.653641 0.081551 -0.209706 -0.068258 -0.139381 -0.246487 0.023189 0.569587 0.615167 0.102952 -0.008210 0.042742 -0.067156 0.018585 0.026842 0.161337 0.027671 0.358714 0.156870 -0.561979 0.246271 -0.842430 -0.099425 -0.862860 -0.359741 -0.355356 0.012341 -0.014573 0.342674 0.023667 0.648360 -0.067292 0.180490 0.050177 0.797268 -0.618133 -0.176276 -0.317980 -0.351575 0.072681 -0.227758 -0.017733 0.005902 -0.139819 -0.417384 -0.537567 0.377883 0.214761 -0.235775 0.000000 -0.014022 0.463740 -0.528987 -0.346600 -0.437097 -0.032064 -0.210393 -0.802794 -0.073107 -0.291191 0.377382 0.044568 -0.195740 -0.744896 0.191094 0.603855 -0.240752 -0.319616 -0.214962 0.547207 0.298635 -0.041423 0.033621 -0.179064 0.175188 0.616797 0.466912 -0.294085 -0.046420 0.039827 -0.379521 -0.139678 -0.380583 -0.093005 0.010367 -0.444998 -0.006655 0.488589 -0.341559 0.115603 0.289817 -0.154699 0.342972 1.660319 -0.259542 0.366735 0.055405 -0.738514 0.321113 -0.034377 -0.222881 0.023801 0.326751 0.346504 -0.869330 -0.441240 0.304434 0.581549 0.361333 -0.510040 -0.154706 -0.284216 -0.114085 0.031547 0.079524 0.083685 -0.191761 -0.374712 -0.205892 0.184388 1.118153 -0.282802 -0.689725 0.226112 -0.033372 -0.176577 -0.487839 -0.152077 -0.294952 0.099942 0.009114 -0.140779 0.370574 0.683172 -1.318098 0.557267 -0.235043 -0.465066 0.642807 -0.079547 -0.165382 -0.293836 0.110835 0.580836 0.592870 0.065759 0.001698 -0.029871 -0.508675 -0.085157 -0.020186 0.342559 -0.315855 0.285182 0.290641 -0.734089 -0.411715 -0.245923 0.025077 -0.333075 -0.253071 0.213632 -0.075890 -1.232246 0.751555 0.106538 -0.045653 0.252323 -0.129574 0.218388 -0.541459 -0.666492 0.254369 0.010758 0.045290 -0.087184 -0.056844 0.401026 0.023692 0.211111 -0.470025 -0.707123 0.182120 -0.067147 0.390061 0.249367 0.265961 0.438423 0.131265 -0.131993 -0.459930 -0.121017 0.165071 -0.060546 -0.312003 -0.140360 -0.250056 0.521218 0.683817 -0.037811 -0.029398 -0.232623 0.544149 -0.455503 -0.040793 0.358236 0.193163 -0.435186 -0.083205 0.425446 -0.372763 -0.380277 -0.249881 -0.204616 -0.179085 -0.453357 0.175750 -0.330406 0.107733 0.312805 -0.054700 -0.290403 0.230912 0.027156 0.020888 0.058006 0.550147 0.613885 -0.309993 0.173628 -0.432919 0.283348 -0.753353 -0.523984 0.130867 -0.100018 -0.305606 -0.003480 0.024142 0.408831 -0.084701 0.171967 0.069479 -0.189356 +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 >&) = -1.898293 -0.348909 1.781098 -3.728901 3.339111 1.877065 1.543965 -1.569334 -3.846946 -1.521788 0.798409 -4.670460 -2.503974 5.313014 -1.687714 2.682123 7.317097 1.472500 -1.605016 -1.093911 4.209918 -1.857255 6.302808 6.356752 -4.380605 -0.194093 0.705902 2.792247 0.792307 2.810797 -1.406409 -3.345504 2.167950 -3.091941 0.393901 -3.735207 0.363718 0.846324 2.150391 -7.411989 0.941720 0.319826 0.076910 -1.014717 -0.980765 2.725444 4.617770 3.910631 -1.119240 1.104637 3.449428 0.302735 -0.189236 1.227938 1.405820 0.703111 2.381583 1.157112 -2.299673 -1.214509 -1.168820 -2.078423 0.425009 4.247700 6.014807 0.479520 -0.318674 1.583152 0.232867 1.155319 1.437735 1.042525 0.967099 0.697150 2.350500 -5.030809 -0.185791 -9.466712 -1.191042 -10.559558 -3.083153 -1.161915 3.184910 -0.420473 1.993449 -1.031608 4.914691 -0.067558 -0.329491 3.048988 6.335506 -4.251365 -2.025183 -2.921806 -2.411881 1.189348 -2.337921 0.412278 3.042911 -0.142032 -4.209567 -2.979846 2.162264 1.176783 -1.597402 -1.931986 0.401751 3.800990 -4.023861 -2.490936 -2.603782 1.934359 -0.065973 -7.253247 0.192005 -3.093602 2.811381 0.662406 -2.033981 -3.930445 1.214439 2.723413 -1.865682 -2.084622 -1.685407 5.236974 2.366973 1.040270 0.672446 0.218207 1.087294 5.582185 2.888755 -2.821754 -0.094704 0.026033 -3.045463 0.837807 -3.953366 -1.685367 2.815925 -4.066779 0.958806 2.725281 -2.882331 -0.682697 3.491336 0.439142 1.866111 14.211328 -0.888369 4.925901 2.676365 -4.610500 3.681237 -1.054556 -0.376930 1.013065 2.759190 1.202256 -6.963290 -4.139629 2.964094 4.801987 3.464009 -6.008383 -1.894049 -1.184990 0.161228 -0.459881 0.304317 1.335440 -0.000845 -3.350802 -1.097020 3.179361 9.361192 -2.542953 -3.628137 2.102207 1.398718 -1.052656 -5.987914 -1.803509 -2.611229 0.543898 0.755695 0.000468 2.828520 6.068913 -10.305953 4.312472 -0.817855 -1.284656 4.709352 0.719538 -3.544161 -6.829560 -0.327476 3.863893 5.544807 0.372493 0.226871 0.910878 -4.341255 -0.385022 0.437176 1.408857 -1.746961 2.213016 0.486910 -3.356690 -2.859904 -1.113333 -1.303932 -1.475567 -0.973181 2.620837 1.132467 -8.886215 5.222864 -0.018460 -1.428288 0.931988 -0.927618 3.498242 -4.231785 -5.224214 2.328346 -0.949345 -1.904384 -3.125340 0.599737 2.453670 -0.060102 1.107115 -2.543499 -6.315178 3.421105 -1.962774 3.909900 1.857821 0.777510 4.024713 1.377051 -1.769597 -4.874289 -2.295562 0.921961 -0.803143 -3.794015 -1.242773 -1.143366 4.113378 4.376306 -0.055810 -1.936869 -1.084597 5.381399 -4.792926 -1.422457 3.635209 1.948652 -3.626282 1.267158 4.372929 -5.063379 -1.423975 -2.963394 -1.834553 -1.620571 -3.759382 1.968713 -1.017451 1.633650 0.888453 -0.034810 -0.940711 1.943778 1.281744 0.229593 0.301738 6.250359 7.038890 -2.787830 -0.233007 -4.293616 2.307494 -5.965240 -5.332940 1.851419 0.217180 -3.049674 0.299890 0.988525 4.262800 -0.083053 -0.511299 -1.088614 0.107828 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::greater::operator()(int const&, int const&) const = -0.304120 -0.053128 0.180379 -0.748405 0.653479 0.379324 0.250491 -0.529427 -0.691205 -0.176983 0.239926 -0.525341 -0.195881 0.879340 -0.366102 0.661309 1.188289 0.217221 -0.278658 -0.452673 0.970624 -0.369439 1.233955 1.082876 -1.016718 0.002960 0.706962 0.539407 0.582358 0.322736 -0.241549 -0.349896 0.446455 -0.958725 0.032950 -0.702829 0.133468 0.075371 0.725721 -1.256378 0.113373 -0.514878 -0.106089 -0.086301 -0.270024 0.283903 0.721712 0.763938 -0.412916 0.449546 0.960578 0.215489 -0.165252 0.211491 0.174752 0.326360 0.548803 0.414256 -0.152001 -0.260994 -0.072354 -0.360780 0.238807 0.895461 1.117351 -0.012838 0.035773 0.610137 0.138988 0.171043 0.376693 0.252870 -0.233952 0.197590 0.539651 -1.627478 -0.028224 -2.287183 -0.308017 -2.116361 -0.561564 -0.294219 0.270342 -0.841394 0.650846 0.669365 0.944977 0.102728 -0.058335 0.522904 1.011658 -0.867987 -0.337049 -0.395978 -0.544864 0.329735 -0.541706 0.222302 0.522613 0.031035 -0.658446 -0.830219 0.572973 0.415322 -0.417022 -0.708189 0.017327 0.711772 -0.787825 -0.742096 -0.390857 0.228505 -0.380216 -1.324732 -0.198178 -0.658698 1.214066 -0.013987 -0.182080 -1.015473 0.035122 0.776888 -0.247743 -0.642668 0.469978 0.403307 0.695274 0.345613 0.079212 -0.113534 0.237237 1.375835 0.810652 -0.544940 -0.120403 0.009102 -0.483389 0.212562 -0.740467 -0.283027 0.496073 -0.746994 0.411704 0.752065 -0.492616 -0.400802 1.594346 -0.066555 0.348343 2.685774 0.057010 0.792182 0.603405 -0.906008 -0.027314 -0.326539 -0.011092 0.500859 0.573950 0.113041 -1.221018 -0.795943 0.381790 0.877716 0.572443 -1.231574 -0.820899 -0.240948 -0.039774 0.078814 -0.132706 0.172408 -0.188749 -0.512483 -0.204095 0.596766 1.418851 -0.566289 -0.675988 0.334002 0.452941 -0.604512 -1.217625 -0.390642 -0.784441 0.240287 0.228835 0.032926 0.535330 1.080006 -2.212305 0.671990 -0.267565 -0.132070 0.610600 0.439467 -0.639576 -1.121580 0.197110 0.553189 0.762063 -0.146608 0.253348 0.422408 -0.863422 -0.075603 0.062858 0.195374 -0.368977 0.442029 0.300683 -0.635808 -0.617475 0.333117 -0.000828 -0.376583 0.120170 0.565593 -0.146490 -1.960124 0.862997 -0.208247 -0.420351 0.438807 -0.338391 0.891064 -0.924381 -0.943701 0.622375 0.053961 0.083922 -0.400844 0.108845 0.687252 0.120974 0.464616 -0.570908 -0.876047 0.253137 -0.392412 0.517646 0.399756 0.145266 0.855092 -1.056301 -0.215703 -1.093033 0.131792 0.003237 0.020892 -0.708505 -0.688961 -0.196806 0.835996 0.952558 0.008939 -0.284574 0.027010 0.916121 -1.367462 -0.233210 0.525003 1.230674 -0.740535 0.313470 0.595094 -0.906964 -0.240662 -0.308420 -0.317147 -0.114890 -0.684225 0.631940 -0.156895 0.457199 0.183174 0.141239 0.045031 0.609562 0.186501 0.403398 0.028470 0.764352 1.601469 -0.628346 -0.451625 -0.825410 0.306211 -1.186246 -1.100063 0.405695 0.030183 -0.535598 0.130751 -0.023647 0.931041 0.126490 -0.019556 -0.112299 -0.080750 +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.312970 0.244191 0.786078 -0.897791 0.722811 0.338382 0.256227 -0.335774 -0.736438 -0.412566 0.026979 -0.870861 -0.668605 1.056080 -0.466466 0.206466 1.429035 0.341283 -0.321162 -0.416500 0.767879 -0.410773 1.335046 1.311509 -1.179924 0.042152 0.499720 0.769509 0.480087 0.836504 -0.428180 -0.574051 0.284556 -0.252119 0.409167 -0.772410 0.078615 -0.063137 0.046222 -1.609818 0.124463 -0.014594 0.032552 -0.131497 -0.047754 0.714365 1.203190 0.842949 -0.393411 0.114749 0.856946 0.325100 0.021443 0.232715 0.302350 0.063189 0.990168 0.196012 -0.355357 -0.152364 -0.164732 -0.719109 0.096321 1.102014 1.301921 0.133818 0.012225 0.118388 0.114264 0.228954 0.231536 0.307992 0.161641 0.455418 0.492885 -0.998155 0.347175 -1.992851 -0.133751 -2.303247 -0.700256 -0.544726 0.585528 -0.141830 0.290643 0.054172 1.182731 0.153176 0.159164 0.475810 1.389867 -0.805034 -0.358167 -0.573743 -0.695473 0.422854 -0.542170 0.146355 0.301582 0.147987 -0.789117 -0.672277 0.513231 0.165484 -0.480804 0.002029 -0.051439 0.867628 -1.006156 -0.336961 -0.691533 0.108086 0.000000 -1.575054 -0.044466 -0.735038 0.933448 0.007581 -0.277408 -0.761141 0.179693 0.700757 -0.389326 -0.239475 -0.774096 0.989005 0.495575 0.074661 0.048034 -0.100023 0.291914 0.859111 0.687652 -0.621806 -0.157202 0.053846 -0.696933 -0.044904 -0.851409 -0.174550 0.651746 -0.746016 0.100193 0.554481 -0.615098 -0.285154 0.630287 -0.233121 0.564129 2.821871 -0.207722 0.806506 0.401426 -1.071851 0.496101 -0.020124 -0.229153 0.352215 0.658549 0.431429 -1.192955 -0.885140 0.507687 1.107585 0.681967 -1.052385 -0.315327 -0.269783 -0.165041 -0.081789 0.152569 0.176394 -0.337716 -0.614706 -0.335100 0.560357 1.570613 -0.348552 -1.148308 0.292203 0.220318 -0.347532 -0.957395 -0.236461 -0.263596 0.198688 0.012482 -0.097889 0.708317 1.294397 -2.579765 0.987905 -0.060434 -0.360096 0.983324 -0.094099 -0.530511 -1.167743 0.268617 0.908255 1.006960 0.037921 -0.125955 0.166163 -1.020476 -0.136675 0.059087 0.480227 -0.530077 0.529204 0.352856 -0.818611 -0.779308 -0.473753 -0.047020 -0.250956 -0.341247 0.534809 -0.102760 -2.197185 1.255815 -0.150542 -0.284063 0.131960 -0.384050 0.456030 -1.089449 -1.143550 0.359108 -0.123905 -0.409906 -0.667959 0.011447 0.707714 -0.116243 0.311513 -0.751141 -1.114132 0.610406 -0.460707 0.671597 0.473201 0.362278 0.973152 0.293846 -0.222765 -0.954560 -0.034899 0.280270 -0.201939 -0.692415 -0.085896 -0.341320 0.781342 1.235964 -0.184114 -0.124438 -0.096061 1.067548 -0.870802 -0.540409 0.627341 0.363356 -0.645690 0.428852 0.739701 -0.907790 -0.535550 -0.691232 -0.497101 -0.165981 -0.860699 0.548417 -0.419361 0.304485 0.471197 -0.009229 -0.417348 0.592207 0.117333 0.040506 0.109458 1.153973 1.579348 -0.645753 0.212109 -0.937157 0.531429 -1.434197 -1.006692 0.277392 -0.171377 -0.407960 0.083546 -0.040642 0.829525 0.029377 0.040170 -0.147906 0.044421 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::front() const = -0.260723 0.285857 0.646705 -0.600742 0.503682 0.147852 0.179715 -0.168116 -0.453654 -0.447301 -0.091157 -0.671922 -0.654177 0.786462 -0.393825 -0.015431 1.058892 0.311948 -0.172625 -0.269650 0.451595 -0.316154 0.950153 0.911583 -0.808429 -0.024188 0.323610 0.578300 0.228157 0.726552 -0.259113 -0.568926 0.216449 0.082367 0.414518 -0.558243 0.096829 -0.055942 -0.258765 -1.140625 0.092839 0.114098 0.110139 -0.110467 -0.014968 0.573619 0.945084 0.608149 -0.229276 -0.064507 0.523119 0.359669 0.021322 0.210790 0.223257 -0.062497 0.669129 -0.107325 -0.351842 -0.082185 -0.182116 -0.644113 -0.029995 0.809482 0.945582 0.156577 0.076564 -0.042493 -0.069669 0.235395 0.094459 0.171552 0.258817 0.384313 0.289888 -0.456891 0.247676 -1.255658 -0.119766 -1.755166 -0.464571 -0.516182 0.417005 0.170376 0.072812 -0.056842 0.846577 0.186149 0.219318 0.338909 1.113893 -0.516538 -0.280598 -0.478755 -0.465827 0.325835 -0.414217 0.077784 0.132095 0.172557 -0.570713 -0.439809 0.273480 0.033431 -0.291784 0.130123 -0.074281 0.645488 -0.837681 -0.080885 -0.644218 -0.040589 0.122269 -1.153346 0.057502 -0.477406 0.566570 0.030740 -0.198649 -0.438434 0.199759 0.503363 -0.269942 -0.057683 -0.856555 0.785607 0.198318 -0.059184 0.029855 -0.048625 0.168466 0.463640 0.467180 -0.415747 -0.144618 0.029257 -0.568659 -0.162659 -0.620326 -0.104718 0.489982 -0.550411 0.055012 0.348117 -0.464782 -0.282795 0.060417 -0.309125 0.546710 1.745649 -0.249778 0.487171 0.180871 -0.816147 0.396677 0.016804 -0.225460 0.125159 0.496449 0.390842 -0.570045 -0.644165 0.394534 0.779275 0.514271 -0.555201 -0.072573 -0.260179 -0.084321 -0.111344 0.126722 0.188572 -0.348393 -0.457319 -0.270699 0.358261 1.022144 -0.167738 -0.779156 0.225837 0.148197 -0.124751 -0.519197 -0.131933 -0.019108 0.127611 -0.035442 -0.125812 0.467933 0.963518 -1.797102 0.769604 0.042678 -0.235811 0.654327 -0.231992 -0.285463 -0.850062 0.240241 0.800955 0.740286 0.064013 -0.083961 -0.004085 -0.723519 -0.114984 0.017383 0.510167 -0.361380 0.326970 0.239607 -0.646931 -0.658276 -0.497776 -0.020864 -0.164032 -0.305908 0.322638 0.088982 -1.578273 1.035244 -0.152681 -0.128070 -0.015636 -0.202650 0.217857 -0.818749 -0.879821 0.169373 -0.198454 -0.445687 -0.490694 0.028349 0.519107 -0.195550 0.133979 -0.445425 -0.744347 0.506913 -0.250593 0.456848 0.283825 0.405444 0.745235 0.487066 -0.170896 -0.581509 -0.050482 0.221678 -0.313670 -0.440724 0.214182 -0.201349 0.544920 0.968496 -0.169805 -0.093748 0.003123 0.774223 -0.439186 -0.457607 0.516175 0.025103 -0.376988 0.350127 0.581979 -0.651888 -0.567695 -0.570804 -0.277469 -0.109496 -0.706769 0.246375 -0.445392 0.140218 0.445427 -0.031121 -0.463005 0.389221 0.110102 -0.053658 0.074209 0.864418 1.007640 -0.463345 0.355248 -0.643257 0.345387 -1.089202 -0.682485 0.150064 -0.130285 -0.161400 0.089119 -0.084297 0.503410 -0.078388 0.125162 -0.117389 -0.010791 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() const = -0.204025 0.506859 0.595250 -0.508978 0.820128 0.832812 0.235480 -0.218893 -0.447005 -0.260056 -0.162057 -0.813828 -0.712568 0.892766 -0.359093 0.204598 1.179806 0.232324 -0.168892 0.014166 0.351268 0.054653 1.096602 0.905273 -0.736474 0.079237 0.268334 0.246843 -0.330140 1.119490 -0.660862 -1.169529 0.337689 0.007473 0.144448 -0.392027 -0.076923 -0.272219 0.006207 -1.196263 0.085324 0.335178 -0.245667 -0.207632 -0.007172 -0.049526 1.273455 0.583717 0.015199 -0.033416 0.266676 0.455631 -0.005139 0.223524 0.499678 0.277716 0.650148 -0.195506 -0.504442 -0.158574 -0.314880 -0.330861 -0.317538 0.784672 0.835344 0.215515 -0.048911 -0.077420 -0.347174 0.106714 -0.061729 0.225510 0.350493 0.599467 0.210524 -0.107017 0.116811 -0.673964 -0.195826 -1.015915 -0.568508 -0.523588 0.166223 0.473809 0.389274 -0.331474 0.951295 -0.113506 0.253716 0.149641 1.367837 -0.862778 -0.322051 -0.517866 -0.381434 0.079500 -0.354937 0.013075 -0.118098 -0.315632 -0.723098 -0.732277 0.300743 0.193126 -0.281195 0.048538 -0.015777 0.711406 -0.790237 -0.305295 -0.755110 -0.016463 -0.111891 -1.232375 -0.448390 -0.099648 0.159043 0.233678 -0.392394 -0.944497 0.433431 0.716869 -0.380139 -0.445545 -0.306881 0.844280 0.325320 -0.047529 0.138317 -0.093826 0.357546 0.910831 0.564920 -0.322093 0.011444 -0.084366 -0.313376 -0.123893 -0.367809 -0.071096 -0.320171 -0.641937 0.115416 0.740770 -0.536871 0.114867 -0.437074 -0.270421 0.498295 2.101443 -0.511491 0.568194 0.021918 -1.159507 0.514394 -0.168952 -0.436686 -0.217292 0.447449 0.641750 -0.817345 -0.597814 0.643687 0.902495 0.556033 -0.607252 0.254242 -0.337461 -0.033078 -0.217532 0.258217 0.247576 -0.082083 -0.596529 -0.302301 0.412968 1.600056 -0.448143 -1.230989 0.447274 0.056817 0.183864 -0.261977 -0.203393 -0.206295 0.082731 0.305208 -0.229413 0.474015 1.048752 -1.567460 0.841665 -0.135843 -0.707196 0.924714 -0.108499 -0.277956 0.012995 0.115534 1.006854 0.855428 0.284786 -0.026950 -0.283011 -0.723758 -0.155177 0.060116 0.534536 -0.369932 0.425258 0.296535 -1.072780 -0.675145 -0.653109 -0.015585 -0.466887 -0.572847 0.300555 0.171816 -1.758012 1.224623 0.295812 -0.062694 0.102645 -0.175148 0.362721 -0.738711 -1.121054 0.344820 -0.309476 -0.305904 0.060018 -0.093446 0.436838 0.246875 0.404808 -0.579383 -0.959045 0.567275 0.245962 0.715730 0.340808 0.507242 0.664713 0.432610 -0.369354 -0.425295 -0.606240 0.657961 -0.187294 -0.480345 0.039606 -0.398305 0.759212 0.947881 -0.063508 -0.287080 -0.679505 0.703186 -0.522066 0.038107 0.675315 0.049619 -0.596841 -0.135586 0.761647 -0.407156 -0.589534 -0.431853 -0.125503 -0.491554 -0.772732 0.002816 -0.556048 0.068890 0.549270 -0.175142 -0.578661 0.173925 0.028541 -0.107684 0.064552 0.769821 0.563952 -0.546311 0.521361 -0.653247 0.491634 -1.124597 -0.868921 0.310353 -0.351925 -0.416922 -0.120211 -0.043120 0.419047 -0.237238 0.215807 -0.057181 -0.209000 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.123077 0.225392 0.274166 -0.343964 0.398271 0.352908 0.086009 -0.235578 -0.231895 -0.130017 -0.067307 -0.282133 -0.207557 0.425753 -0.234330 0.174848 0.587781 0.105968 -0.070452 -0.118856 0.293246 -0.081703 0.575746 0.485162 -0.444234 0.015046 0.329864 0.187070 0.018350 0.479682 -0.325322 -0.459486 0.158813 -0.166888 0.068299 -0.308627 0.015340 -0.075509 0.137863 -0.601169 0.050550 -0.142102 -0.153359 -0.066477 -0.066159 0.019557 0.576456 0.312948 -0.077722 0.048001 0.297870 0.321537 -0.089772 0.107172 0.187172 0.208395 0.377282 -0.031450 -0.117961 -0.085157 -0.106023 -0.132396 -0.015081 0.451651 0.462427 0.079170 0.025860 0.095506 -0.119323 0.030982 0.014166 0.111206 0.020472 0.298133 0.106285 -0.474466 0.082230 -0.715441 -0.124626 -0.696368 -0.238319 -0.269197 -0.065989 -0.027399 0.271790 0.135215 0.478559 0.002333 0.130304 0.126139 0.614164 -0.469253 -0.131095 -0.225867 -0.273939 0.047377 -0.188663 0.048577 -0.096678 -0.065971 -0.307730 -0.463030 0.222731 0.163024 -0.163892 -0.140144 -0.008807 0.320688 -0.461051 -0.241821 -0.309973 -0.005395 -0.173105 -0.624191 -0.124869 -0.216698 0.427489 0.003403 -0.128494 -0.587388 0.132515 0.491765 -0.164270 -0.274039 -0.029161 0.297246 0.260119 0.004732 0.012275 -0.156042 0.143903 0.566946 0.348648 -0.214198 -0.051505 -0.016011 -0.232170 -0.108298 -0.278306 -0.037171 -0.019142 -0.349980 0.127931 0.441037 -0.246808 -0.040153 0.271628 -0.199386 0.278206 1.228205 -0.192774 0.270785 0.064166 -0.592897 0.061244 -0.126843 -0.169219 0.014792 0.234800 0.257837 -0.539112 -0.337398 0.257156 0.416757 0.270542 -0.362706 -0.120955 -0.198281 -0.076401 0.007113 0.017540 0.075441 -0.193748 -0.275885 -0.162404 0.187213 0.815376 -0.187613 -0.376127 0.196732 0.077469 -0.115037 -0.278253 -0.130853 -0.223321 0.103138 0.158311 -0.099602 0.264472 0.521088 -1.011992 0.374145 -0.159526 -0.277536 0.307323 0.027872 -0.142004 -0.150445 0.119612 0.461335 0.398838 0.023099 0.153665 -0.020467 -0.372552 -0.063271 0.006167 0.266425 -0.230909 0.184138 0.276215 -0.597106 -0.352425 -0.059692 0.021293 -0.236952 -0.149500 0.162622 -0.060916 -1.020900 0.592305 0.044247 -0.034330 0.178952 -0.123539 0.298742 -0.422547 -0.513160 0.241659 -0.029091 0.071742 0.014631 -0.013120 0.320552 0.027687 0.247164 -0.324203 -0.487114 0.089253 0.020093 0.260350 0.165815 0.246475 0.359340 -0.230821 -0.075573 -0.376703 -0.111402 0.198348 -0.032721 -0.257016 -0.037591 -0.150514 0.406864 0.515752 -0.038083 -0.122636 -0.083495 0.381567 -0.390651 0.025719 0.260562 0.332117 -0.369678 -0.049314 0.305171 -0.276074 -0.296537 -0.165638 -0.057310 -0.153427 -0.387590 0.108994 -0.228803 0.102211 0.249481 0.008481 -0.220212 0.197696 0.035473 0.081766 0.054117 0.349084 0.483251 -0.231001 0.077169 -0.334159 0.169371 -0.590628 -0.487865 0.138269 -0.097346 -0.183942 -0.004102 -0.105349 0.336666 -0.085343 0.212705 0.069908 -0.142053 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.166072 0.059590 0.357457 -0.396728 0.323814 0.097085 0.122695 -0.193211 -0.351220 -0.146037 -0.054284 -0.189027 -0.150467 0.500195 -0.216590 0.262865 0.760771 0.293275 -0.096158 -0.285712 0.470233 -0.503093 0.661248 0.663682 -0.570700 0.002900 0.416088 0.399904 0.288210 0.467720 -0.375439 -0.132916 0.189541 -0.424315 0.226405 -0.608289 0.086110 0.088403 0.131472 -0.855255 0.067774 -0.283283 0.047839 -0.041541 -0.096227 0.378050 0.504054 0.407779 -0.197394 0.169156 0.422666 0.104787 -0.014228 0.143139 0.163239 0.340083 0.507572 0.216738 -0.159564 -0.005962 -0.077962 -0.475303 0.227576 0.499387 0.648198 0.006069 0.070973 0.189633 0.022641 0.045730 0.166326 0.104858 -0.066772 0.104019 0.244962 -0.967627 0.182102 -1.213776 -0.170365 -1.302566 -0.300318 -0.361280 0.090883 -0.378487 0.331722 0.271532 0.562412 0.026792 0.152942 0.125275 0.599783 -0.586002 -0.188778 -0.296896 -0.279508 0.156013 -0.291016 -0.042692 0.263823 -0.022310 -0.330956 -0.503310 0.488413 0.228335 -0.220938 -0.185120 -0.053295 0.471000 -0.571218 -0.450581 -0.453812 -0.091973 -0.250526 -0.697498 0.301491 -0.407917 0.693176 0.025641 -0.084753 -0.616391 0.082461 0.596255 -0.132852 -0.311262 -0.132287 0.474340 0.231684 -0.030841 0.034575 -0.150573 0.008634 0.566064 0.606267 -0.307367 -0.138163 0.165329 -0.550482 -0.107813 -0.516297 -0.198036 0.397471 -0.482788 -0.034806 0.332067 -0.317374 -0.020854 0.875599 -0.079138 0.360916 1.427661 -0.062640 0.300455 0.156316 -0.568761 0.256938 -0.026106 -0.038433 0.251042 0.402125 0.127433 -0.899453 -0.452264 0.095893 0.478875 0.345219 -0.595887 -0.530019 -0.352177 -0.042682 0.166307 -0.073242 0.097528 -0.249472 -0.315908 -0.132281 0.090490 0.916827 -0.299782 -0.335729 0.131361 -0.053391 -0.443930 -0.865794 -0.179768 -0.367554 0.095196 -0.184225 -0.076723 0.273938 0.614518 -1.311990 0.489625 -0.362147 -0.236108 0.457878 -0.018863 -0.155297 -0.775305 0.128003 0.398649 0.569032 -0.017965 0.067743 0.189117 -0.495198 -0.051812 -0.069440 0.317195 -0.250956 0.238205 0.232202 -0.540855 -0.363044 0.014226 0.062782 -0.295335 0.044084 0.227005 -0.072305 -1.136041 0.548324 -0.146979 -0.143545 0.382901 -0.013256 0.259123 -0.563965 -0.564142 0.273472 0.150510 0.091603 -0.341890 0.022789 0.475146 -0.162986 -0.044680 -0.312899 -0.662901 0.090210 -0.285121 0.231057 0.211661 0.144097 0.559121 -0.055533 -0.119527 -0.587487 0.185975 -0.202441 -0.187928 -0.240190 -0.271201 -0.122235 0.488236 0.706911 0.040760 0.098856 0.128763 0.633166 -0.617914 -0.215985 0.344647 0.474898 -0.278080 0.144334 0.379944 -0.579545 -0.365259 -0.189449 -0.227520 0.088778 -0.364185 0.319529 -0.328472 0.180296 0.186986 0.088988 -0.123618 0.337970 0.082965 0.137758 -0.034618 0.591484 0.932592 -0.335913 -0.058811 -0.366509 0.170470 -0.696052 -0.408438 0.019459 0.201974 -0.231163 0.170704 0.127514 0.464082 0.010874 0.044428 0.048658 -0.236127 +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.684376 0.708267 1.246099 -1.361091 2.104410 1.073880 0.982114 0.383991 -1.796611 -1.582127 -0.112644 -2.990921 -2.764460 2.978727 -0.701992 0.521168 3.976116 1.025328 -0.459684 -0.116499 1.124203 -0.507060 3.387601 2.967056 -2.273241 0.176615 -0.052421 0.960339 -0.826455 2.451069 -0.663626 -3.347712 1.302944 -0.063218 0.755922 -1.237037 -0.057264 -0.380108 -0.622973 -4.113989 0.325383 2.053041 0.122458 -0.709655 -0.096326 1.000912 3.500627 2.081486 -0.429483 0.380155 0.917962 0.382865 0.300044 0.801397 1.002597 -0.051065 0.542022 -0.746524 -2.284798 -0.282846 -0.874408 -2.268719 -0.928102 2.162816 2.806992 0.269505 -0.224087 -0.028737 -0.775705 0.830248 0.381961 0.585270 1.689836 0.639612 1.419824 0.059397 -0.580237 -2.738166 -0.652528 -5.784733 -2.175124 -1.479953 2.657967 1.678241 0.433849 -1.603005 2.950226 -0.259649 0.613176 1.517767 4.163714 -2.048487 -1.445871 -2.034401 -0.802990 1.013904 -1.459725 -0.215050 1.161869 -0.511143 -2.544449 -1.351394 0.809926 0.100520 -0.842282 -0.203085 -0.021243 2.453085 -2.767795 -0.706924 -2.819017 0.383670 0.675077 -3.957797 -0.573290 0.069852 0.136605 1.286122 -1.267473 -1.475897 1.229360 1.071354 -1.150780 -0.729575 -1.818057 3.033222 0.313530 0.227500 0.989909 0.746320 0.993142 2.354910 1.919438 -1.068329 -0.096787 0.109581 -0.964430 0.190216 -1.239931 -0.921289 0.310762 -2.265313 0.441193 1.115423 -1.899369 -0.555402 -1.730899 -0.361226 1.476600 5.171757 -0.982141 2.144260 0.656825 -2.909297 2.180473 -0.572546 -0.969936 -0.314652 1.888429 1.436215 -1.176487 -1.933781 1.793219 2.981573 1.992912 -2.065469 0.579776 -0.693972 0.478157 -0.757180 0.820300 1.147652 0.554343 -1.985646 -0.612966 1.625464 4.268385 -1.284432 -3.335752 1.175122 0.917610 0.745842 -1.499688 -0.526473 -0.562235 0.011654 0.603590 -0.414209 1.226471 3.459761 -4.639235 2.778394 -0.034085 -1.055223 2.465906 -0.156425 -1.341474 -2.338917 0.024716 2.776571 3.089017 0.905635 -0.272786 -0.546857 -2.331056 -0.411878 0.325556 1.357246 -0.735014 1.407950 -0.377663 -2.027441 -1.910698 -2.209408 -0.475200 -0.768768 -1.285324 1.129556 1.839707 -4.799277 3.407040 0.096573 -0.841157 -0.324532 -0.192407 1.318036 -2.467665 -3.506748 0.851486 -1.476663 -2.722514 -0.932438 -0.189954 1.166037 0.435813 0.100952 -0.773799 -2.808048 3.077165 0.361547 2.484955 1.163346 0.875664 2.852750 2.527818 -1.707191 -1.044499 -1.992421 1.452181 -1.671753 -1.468191 0.246545 -1.042722 2.115312 2.915328 -0.068502 -1.036524 -1.667828 2.491117 -1.804124 -0.914585 2.598248 -0.462980 -1.081671 1.131552 2.889264 -2.195229 -1.399309 -2.067310 -0.092766 -1.026186 -2.312154 0.158378 -1.762831 0.246496 1.395579 -0.531768 -1.487776 0.588176 0.326768 -0.601672 -0.358501 3.123544 2.451252 -2.263105 1.571265 -2.273339 1.501620 -3.549983 -2.612360 0.737138 -0.207824 -1.223219 -0.008800 0.389118 1.099247 -0.466683 -0.434382 -1.250829 0.040161 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::pop_back() = -0.494389 0.639411 1.220636 -1.289153 1.356075 1.471289 0.358446 -0.760396 -0.847913 -0.138152 -0.188521 -1.067274 -0.747130 1.593807 -0.772840 0.589013 2.177393 0.424625 -0.501575 -0.198745 1.210030 -0.270158 1.952338 1.688361 -1.508403 -0.066619 1.038259 0.741931 0.094165 1.747030 -1.496890 -1.297374 0.461777 -0.680381 0.345316 -1.048562 0.083181 -0.378575 0.463485 -2.076150 0.222372 -0.276530 -0.563057 -0.368781 -0.224199 0.147732 2.016868 1.132359 -0.271260 -0.270620 0.904941 0.693996 -0.291309 0.350312 0.817963 0.827333 1.589451 0.679386 -0.555357 -0.412600 -0.468466 -0.386289 0.075571 1.583147 1.650739 0.417954 0.108952 0.258485 -0.146827 0.053839 0.034877 0.304863 0.211475 1.023330 0.475550 -1.527325 0.465342 -2.305011 -0.397442 -1.959778 -0.810328 -0.901573 -0.261534 -0.452839 0.995210 -0.106934 1.617258 -0.130479 0.406198 0.258875 2.261492 -1.746746 -0.529236 -1.100436 -1.030496 0.096363 -0.695101 0.085826 0.175840 -0.601154 -1.187440 -1.538842 0.703350 0.742701 -0.504924 -0.188072 0.033865 1.337688 -1.074591 -0.923374 -1.058465 -0.076482 -0.619576 -2.305090 -0.484471 -0.829984 1.073071 0.043934 -0.557209 -2.146114 0.512395 1.832754 -0.670346 -1.055731 0.001608 1.537934 0.941184 0.000191 0.026076 -0.556882 0.470763 1.708873 1.406626 -0.762889 -0.073768 -0.126480 -1.176965 -0.347145 -1.087556 -0.191663 0.151570 -1.144498 -0.057981 1.607662 -0.902546 0.360131 1.121585 -0.345259 1.019477 4.953861 -0.746559 1.024973 0.084659 -2.090968 0.940986 -0.079259 -0.579140 -0.058758 0.787493 0.892958 -2.775604 -1.242416 1.000597 1.504573 1.018839 -1.623708 -0.288360 -0.853457 -0.316068 -0.152936 0.013990 0.357887 -0.580127 -1.022394 -0.599913 0.759260 3.007463 -1.035105 -2.273198 0.765395 -0.015851 -0.333248 -1.314000 -0.536169 -0.746928 0.338013 0.250616 -0.388167 1.134007 1.925646 -3.393714 1.423900 -0.537948 -1.298978 1.863315 -0.131885 -0.563976 -0.480843 0.358404 1.712730 1.463038 0.337429 -0.213767 -0.101061 -1.322860 -0.198839 0.008059 0.962874 -0.655693 0.637026 0.753136 -1.944851 -1.283835 -0.692475 -0.029124 -0.980984 -0.649349 0.575768 -0.563685 -3.308079 2.206724 0.395713 -0.030546 0.623857 -0.493095 0.636515 -1.494927 -1.981375 0.789791 0.065042 0.262896 -0.256138 0.005821 1.121224 0.336110 0.819483 -1.402484 -2.235049 0.466013 -0.139234 1.205952 0.521558 0.884478 1.277018 0.239260 -0.295911 -1.516258 -0.560036 0.665985 0.205853 -1.187752 -0.728147 -0.526696 1.549821 1.641981 -0.290302 -0.142772 -0.887975 1.386243 -1.458696 -0.029653 1.002145 0.803647 -1.395777 -0.495832 1.185959 -0.984214 -1.104584 -0.531578 -0.665046 -0.705327 -1.431718 0.265411 -0.773420 0.392050 0.755350 -0.032446 -0.629452 0.446392 0.181255 0.210690 0.271188 1.334239 1.841779 -0.971024 0.211545 -1.273930 0.921731 -2.123335 -1.732841 0.700169 -0.561839 -0.754986 0.010135 0.220030 1.151600 -0.345343 0.432385 0.248505 -0.554838 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator--() = -0.140959 0.132529 0.377704 -0.380058 0.355316 0.310147 0.096156 -0.229181 -0.294672 -0.048844 -0.064864 -0.305605 -0.160136 0.449753 -0.242919 0.206832 0.626345 0.202121 -0.128617 -0.112347 0.301193 -0.175218 0.570801 0.532323 -0.446722 0.002916 0.236623 0.301251 0.066318 0.579504 -0.420120 -0.321019 0.108384 -0.160341 0.135769 -0.394693 0.042482 0.014288 0.108234 -0.679377 0.075591 -0.043875 0.046341 -0.077139 -0.029290 0.046209 0.512815 0.334726 -0.038809 0.013405 0.283461 0.223871 0.001759 0.115540 0.236018 0.276738 0.570340 0.010061 -0.167613 -0.071935 -0.103660 -0.204963 0.065503 0.453500 0.523504 0.100039 0.043096 0.010960 -0.037368 0.030206 0.087427 0.086967 -0.075541 0.257373 0.080577 -0.460635 0.275566 -0.647859 -0.079912 -0.605727 -0.238994 -0.268933 -0.008493 0.033260 0.282198 0.055881 0.485197 -0.030105 0.123345 -0.014940 0.581368 -0.494053 -0.151565 -0.240903 -0.289215 0.074601 -0.207628 -0.033717 -0.004300 -0.029771 -0.302320 -0.405858 0.304261 0.203495 -0.168530 0.042706 -0.012494 0.368990 -0.417837 -0.316732 -0.294346 -0.014625 -0.193975 -0.616704 0.010377 -0.318976 0.266407 -0.002610 -0.128142 -0.573819 0.131856 0.486375 -0.167180 -0.226713 -0.276133 0.418339 0.208448 -0.064035 -0.008914 -0.175254 0.064807 0.470263 0.294077 -0.271751 -0.047350 0.057391 -0.355306 -0.110248 -0.368462 -0.092947 0.031385 -0.377937 -0.041113 0.371954 -0.268340 0.111933 0.228643 -0.064928 0.298950 1.270878 -0.170494 0.278849 0.076221 -0.561086 0.271162 0.016064 -0.101324 0.051969 0.236654 0.190916 -0.690226 -0.382713 0.191358 0.422828 0.298570 -0.347630 -0.170750 -0.262352 -0.074730 0.067313 0.017699 0.086577 -0.238588 -0.300701 -0.159557 0.096868 0.836649 -0.184206 -0.467091 0.183972 -0.056340 -0.235542 -0.412398 -0.146418 -0.251761 0.092040 -0.077177 -0.092382 0.277586 0.544418 -1.010953 0.451941 -0.166936 -0.319266 0.543171 -0.130415 -0.133766 -0.266145 0.078492 0.420402 0.471269 0.001625 0.005890 0.058153 -0.402496 -0.061684 -0.046581 0.282212 -0.234664 0.186000 0.262017 -0.567237 -0.329101 -0.173323 0.030086 -0.289509 -0.184121 0.178547 -0.039295 -0.900317 0.555596 0.054375 -0.042359 0.255728 -0.078719 0.132399 -0.451065 -0.485947 0.190252 0.057399 0.096087 -0.125160 0.007589 0.342782 -0.048290 0.143751 -0.368651 -0.507468 0.077900 -0.114125 0.250989 0.166397 0.183045 0.253453 0.166046 -0.063832 -0.370483 -0.009507 0.017240 -0.065842 -0.235608 -0.072462 -0.158789 0.428880 0.545187 -0.000900 -0.007485 -0.100611 0.474835 -0.293316 -0.071002 0.284234 0.079175 -0.328927 -0.080972 0.327395 -0.355046 -0.319720 -0.163409 -0.171105 -0.081385 -0.349583 0.190898 -0.233370 0.137274 0.197584 0.001413 -0.227416 0.198574 0.061121 0.009306 0.068138 0.493208 0.410370 -0.149740 0.139709 -0.332327 0.175309 -0.593714 -0.360786 0.080003 -0.064118 -0.271776 0.072700 0.038322 0.373967 -0.055662 0.191447 0.078515 -0.183069 +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.403093 -0.082852 1.823362 -3.364024 3.048942 1.479464 1.418758 -1.003807 -3.532173 -1.520216 0.769922 -4.174165 -2.638652 4.567686 -1.561492 1.739812 6.262384 1.368293 -1.456451 -1.170557 3.134797 -1.106009 5.633179 5.490630 -4.146413 0.027339 0.540188 2.349479 0.951941 2.453501 -1.140547 -2.896526 1.930616 -1.872422 0.661317 -2.786380 0.254595 0.187152 1.059310 -6.416387 0.779281 0.544690 0.049924 -0.814856 -0.530626 2.999112 4.368845 3.525699 -1.173174 1.013192 3.038953 0.502113 -0.013077 1.105055 1.175359 0.170435 2.197813 0.739635 -2.140473 -0.962202 -0.904122 -2.389105 -0.020968 3.916657 5.144612 0.438462 -0.240984 0.959612 0.426720 1.072481 1.422013 0.992085 1.228638 0.824251 2.166424 -3.353431 -0.035432 -7.463783 -0.984113 -9.520351 -2.958976 -1.334049 3.478777 -0.381515 1.267789 -0.874449 4.454633 0.209251 -0.039535 2.646791 5.579593 -3.463504 -1.940505 -2.479985 -2.071935 1.435124 -2.216206 0.506302 2.486594 0.153007 -3.687638 -2.242406 1.711665 0.697766 -1.578751 -1.089683 0.327322 3.521244 -3.694858 -1.601646 -2.535433 1.513253 0.377090 -6.374274 -0.226882 -2.319651 2.753287 0.612319 -1.713370 -2.776070 0.999141 2.071733 -1.802823 -1.258954 -2.080603 4.282487 1.798460 1.007152 0.648900 0.423232 1.207283 4.369033 2.472843 -2.534149 -0.158547 0.004649 -2.269676 0.789096 -3.187446 -1.328132 2.416311 -3.425475 1.077331 2.045370 -2.651737 -1.011120 2.142497 0.224441 1.732835 11.064902 -0.753752 4.135800 2.188870 -4.075599 2.557780 -0.904720 -0.411119 0.987567 2.612149 1.121128 -4.606312 -3.584483 2.490437 4.452254 3.040040 -4.963193 -0.798287 -0.795279 0.030987 -0.637779 0.477348 1.171338 -0.051201 -2.808825 -1.044354 2.779022 7.275020 -1.877639 -3.779326 1.534579 1.368052 -0.599370 -4.105698 -1.349911 -1.421765 0.671943 0.772364 0.060890 2.600420 5.387456 -9.049371 3.890155 -0.395863 -0.972385 3.893584 0.557430 -2.952968 -5.055061 0.053488 3.344456 4.631823 0.533608 -0.316297 0.852736 -3.901052 -0.491718 0.451131 1.332946 -1.501943 1.964558 0.682864 -2.730601 -2.623034 -1.643331 -0.705978 -0.842248 -1.078451 2.395171 0.729378 -8.162477 4.636732 -0.247459 -1.544705 0.208759 -1.148915 2.729957 -3.982906 -4.574528 1.760649 -1.097066 -2.429117 -2.727088 0.330394 2.319716 0.007108 1.415695 -2.364253 -4.986164 3.568910 -1.396864 3.487328 1.811926 0.719926 3.925665 1.202938 -1.516045 -3.652453 -1.824488 1.339364 -1.025452 -3.137831 -0.050801 -1.247131 3.384518 4.107280 -0.291170 -1.548714 -0.953425 4.397186 -3.908303 -1.646682 3.167516 1.698475 -2.677799 1.878180 3.689293 -4.276252 -1.356338 -2.676118 -1.680129 -1.245899 -3.350832 1.897599 -1.104389 1.509501 1.040621 0.166939 -1.057136 1.836157 0.664549 0.025758 0.291981 5.167754 6.288196 -2.701101 0.389210 -3.942842 2.348906 -5.437929 -4.608484 1.614379 -0.359726 -2.419769 0.335019 0.405933 3.423685 0.005454 -0.690904 -1.425483 0.622550 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::push_back(int const&) = -1.915516 2.172230 3.073718 -3.896146 4.891319 4.934079 1.620629 -1.919727 -2.905314 -1.443938 -0.414790 -4.735686 -3.947263 6.001403 -2.300008 2.265640 7.948490 1.263378 -1.537767 -0.203946 4.232666 -0.573259 7.284690 5.971674 -5.239238 -0.289573 2.853787 2.085647 -0.508429 5.142766 -3.759484 -5.682409 2.473284 -2.419991 0.916063 -3.012255 0.353286 -1.422176 1.347495 -7.433859 0.682737 0.305330 -2.026255 -1.509003 -1.106841 0.535785 7.450254 4.402118 -1.240111 -0.704068 2.904219 1.898125 -0.910216 1.506796 2.288424 1.651266 2.973555 1.432254 -2.823969 -1.720942 -1.745500 -2.207302 -0.549761 5.432555 5.980203 1.240935 0.200377 1.552188 -1.115173 0.690944 0.041503 1.213397 2.044451 2.998504 2.464809 -4.052694 -0.142588 -7.793583 -1.859004 -8.540119 -3.438473 -3.149780 0.542474 -0.381516 3.215696 -1.343980 5.978195 -0.295940 1.268043 2.338631 8.730390 -6.073442 -2.305491 -4.505121 -2.984713 0.855018 -2.931027 0.545238 1.362318 -2.292290 -4.855359 -5.123846 1.743635 2.104607 -1.774093 -1.875108 0.158807 4.865940 -4.110954 -2.965004 -4.444975 -0.083640 -1.357172 -8.796795 -2.007775 -1.624032 2.900486 0.993656 -2.080306 -6.771877 1.949802 5.390497 -2.231830 -3.913084 0.118902 5.571124 3.013499 0.470525 0.982675 -0.705006 2.115709 6.641716 5.103292 -2.344679 -0.342854 -0.736125 -3.396313 -0.447493 -3.342490 -1.055403 0.711046 -4.542476 0.342252 5.463852 -3.440301 0.257576 2.301127 -1.342682 3.535512 16.170141 -2.350363 4.067903 0.870447 -7.450586 3.584040 -1.285401 -2.344942 -0.423049 3.121723 3.327189 -7.995817 -4.428002 4.096118 5.769034 3.899421 -5.707325 -0.303820 -2.407546 -0.212743 -1.567124 0.298141 1.975940 -0.754207 -3.949496 -1.803718 3.865309 10.300115 -4.044603 -7.469761 3.207829 1.201741 0.058527 -4.486766 -2.012041 -2.662289 0.667371 1.810586 -1.095435 3.549215 7.228864 -10.656643 5.047694 -1.180021 -3.707197 5.753968 0.133038 -2.769450 -2.411913 1.220698 6.462775 5.187400 1.403951 -0.267375 -0.958536 -4.850015 -0.700789 0.552961 3.075054 -1.811457 2.518227 1.201251 -5.995159 -4.823547 -2.552397 -0.687902 -3.193660 -2.112055 2.313935 -0.101413 -11.070260 8.098537 0.986353 -0.801076 1.243762 -1.762854 3.310999 -5.447363 -7.647944 3.047194 -1.177412 -1.005039 -0.925559 0.188728 3.513740 1.787253 2.163546 -3.934314 -7.736910 3.295068 0.362814 4.772199 1.989364 3.180592 5.325948 1.100221 -2.209308 -4.891179 -3.399609 2.862706 -0.061176 -4.626709 -2.517330 -1.774806 5.576548 5.916016 -1.018409 -1.565837 -3.418966 4.713126 -5.630808 -0.513925 4.369042 2.760150 -4.768775 -0.814707 4.959406 -3.703493 -3.569347 -2.611931 -1.189085 -2.847346 -5.724456 0.322242 -2.976226 1.123783 2.945689 -0.499409 -2.089410 1.448368 0.947064 0.636571 0.306053 5.020916 6.245822 -4.335938 0.697607 -4.970503 3.297214 -7.939327 -6.865257 3.030181 -1.551220 -2.416034 -0.229572 0.994750 3.588837 -1.357455 0.610796 -0.307689 -1.558035 +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) = -1.050915 0.274414 1.477927 -2.150209 2.363596 1.124896 1.185304 -0.506613 -2.428199 -1.491173 0.389353 -3.483105 -2.567860 3.503315 -1.098626 1.196954 4.779677 1.125122 -0.955559 -0.675981 1.984305 -0.754049 4.359675 4.071432 -2.976260 0.107994 0.128849 1.450803 0.187764 2.158131 -0.917917 -2.787233 1.775207 -0.952138 0.676661 -1.845159 0.040290 -0.063375 0.353868 -4.857804 0.515608 1.098293 0.200930 -0.678935 -0.275913 2.177703 3.692234 2.631587 -0.544112 0.682568 1.812536 0.308842 0.263940 0.955672 1.106371 0.017762 1.426902 -0.221342 -2.059563 -0.652449 -0.912752 -2.221727 -0.508647 2.864257 3.761204 0.311791 -0.266760 0.493609 -0.096290 0.893453 0.869054 0.811110 1.483567 0.708972 1.570493 -1.786378 -0.114209 -4.728462 -0.926104 -7.315576 -2.434765 -1.258702 2.803338 0.566627 0.893140 -1.262431 3.512983 0.114664 0.134669 1.610148 4.622858 -2.792889 -1.571040 -1.907105 -1.053674 0.980183 -1.758637 0.282385 1.756354 -0.213898 -2.985785 -1.570803 1.326495 0.332240 -1.152341 -0.555966 0.168303 2.771062 -3.032943 -1.075648 -2.510226 0.754439 0.506194 -4.888103 0.141612 -1.085821 1.426557 0.880544 -1.441700 -2.030796 1.081757 1.448883 -1.339407 -1.019247 -2.122947 3.556823 1.080818 0.610178 0.727132 0.677944 1.010299 3.289443 2.018705 -1.698935 -0.100717 -0.061109 -1.597217 0.615811 -2.045733 -1.070007 1.443762 -2.690652 0.570193 1.472641 -2.124734 -0.553238 0.341386 0.059880 1.410793 7.360723 -0.868979 3.015223 1.447334 -3.256449 2.252924 -0.846227 -0.560500 0.309938 2.110282 1.206912 -2.954799 -2.677138 2.111241 3.522764 2.331298 -3.439418 -0.054173 -0.687467 0.339619 -0.808602 0.600231 1.110356 0.334238 -2.275224 -0.763212 2.047006 5.533334 -1.629371 -2.999123 1.273341 0.738861 0.231488 -2.782153 -1.000708 -0.796897 0.318683 0.527754 0.014813 1.705353 4.165128 -6.176528 3.139032 -0.338904 -1.011663 3.181085 0.195906 -2.097722 -3.546797 -0.020582 2.853014 3.509383 0.638576 -0.192425 0.179963 -2.988180 -0.449658 0.252067 1.250775 -1.068876 1.530616 0.280435 -2.193523 -2.073331 -1.813542 -0.429698 -0.789766 -1.018066 1.759943 1.420841 -6.123956 3.763884 -0.042076 -1.198160 -0.012795 -0.629122 1.967970 -2.980085 -3.665613 1.211392 -1.344460 -2.420722 -1.841869 0.150258 1.528836 -0.093703 0.626315 -1.543614 -3.557848 3.177585 -0.591125 2.791402 1.385703 0.810987 3.137472 1.741348 -1.559828 -2.209025 -1.813330 1.078309 -1.309448 -2.203353 0.254829 -1.028775 2.616162 3.328453 -0.143973 -1.154495 -1.009826 3.134818 -3.004841 -1.179246 2.758784 0.872609 -1.814255 1.466432 3.085958 -2.989493 -1.305375 -2.177477 -1.097714 -1.150938 -2.672934 1.038665 -1.318846 0.844443 1.073416 -0.167488 -1.149119 1.202360 0.435690 -0.297043 0.003802 3.953409 4.308918 -2.250123 0.782627 -2.921642 1.843283 -4.183044 -3.405311 1.229939 -0.097720 -1.799172 0.074484 0.448712 2.227562 -0.152152 -0.740775 -1.336901 0.321135 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = -3.458362 1.723598 5.171413 -8.139811 7.161179 5.262666 2.424286 -3.627961 -5.816466 -2.766254 0.603643 -7.993397 -5.591102 9.086765 -4.451393 3.061849 12.732202 1.978308 -3.176958 -2.282288 7.545571 -0.975574 12.173813 10.749873 -9.640976 -0.777710 4.372855 5.417409 2.629049 5.538960 -4.387859 -6.183908 3.472867 -3.898565 1.862501 -5.343956 1.187758 -1.427540 2.340369 -12.078344 1.448895 -1.398465 -2.345475 -1.738073 -1.647614 4.478882 10.649535 7.610779 -3.364921 -0.570963 7.378111 3.195314 -1.460819 2.277318 2.078529 0.745568 5.840818 2.966970 -3.186828 -3.296942 -2.042158 -3.755459 0.489417 9.519815 10.578860 1.809763 0.292012 2.752945 0.963853 1.571887 1.766905 2.181415 2.449872 4.173199 4.481114 -8.603650 0.880167 -16.486055 -2.374182 -17.214730 -5.480660 -4.260129 2.938826 -2.738775 3.702740 -0.446058 9.845327 0.804737 1.270027 5.145985 12.555224 -8.349981 -3.590857 -6.435880 -5.897411 2.533762 -4.883357 1.893766 2.794609 -0.192649 -7.491004 -6.511803 2.493722 2.412665 -3.383080 -2.687462 0.532665 7.073919 -6.861230 -3.414016 -5.828420 1.658175 -0.468459 -14.530649 -2.460937 -5.329088 8.096653 -0.145563 -2.875255 -8.507186 1.631914 7.144871 -3.732981 -3.799610 -2.373493 8.303691 5.562022 1.530552 0.836094 -0.997548 3.078919 9.779291 6.770559 -5.152312 -1.274040 -0.905630 -6.066465 -0.179874 -6.888082 -1.431934 4.928022 -6.956598 1.811991 7.349573 -5.402161 -1.958684 6.795679 -1.734680 5.206754 26.619490 -2.432529 7.504666 3.382840 -10.290423 4.160112 -1.771428 -2.157718 1.585978 4.937799 3.902945 -12.176382 -7.876053 5.978539 9.257147 6.307676 -10.254103 -1.114277 -2.294424 -0.718108 -2.128107 -0.128084 2.656855 -2.183619 -5.773415 -2.873446 6.874476 14.959856 -4.497820 -10.312338 4.058713 3.050106 -1.304811 -7.559522 -3.240091 -3.175230 1.723694 3.074966 -0.395598 6.414882 11.908019 -19.933202 7.591278 -0.419932 -3.267514 8.309740 0.707681 -5.565861 -7.000870 2.137481 8.890910 8.042690 0.932178 -0.618153 0.676907 -8.097969 -1.005881 1.244865 4.211356 -3.417150 3.793257 2.948349 -7.690585 -7.159751 -3.498865 -1.243992 -2.627971 -2.628639 4.681437 -2.074536 -18.886035 12.042509 -0.206027 -2.251412 1.113666 -4.458572 5.763885 -9.413976 -10.769832 4.564095 -1.526770 -2.201439 -4.223944 1.145750 6.026313 1.054982 4.585739 -7.192988 -11.641004 5.582757 -2.007065 7.120550 3.404262 3.865109 8.537811 -0.320068 -1.904940 -9.246681 -3.170899 3.692749 0.382706 -8.126199 -2.260515 -2.273096 7.966833 9.516118 -2.679041 -2.250455 -2.223374 7.959332 -9.470389 -2.855859 5.892966 5.782076 -7.610982 1.796326 7.008074 -7.454113 -4.698083 -5.115147 -3.391410 -3.408397 -8.951237 3.019339 -3.174824 3.078015 3.990826 0.267158 -2.570852 3.879771 1.587188 1.398942 1.298517 9.022245 13.685650 -5.754188 0.076611 -8.912084 5.262359 -12.979581 -11.313273 4.916117 -2.961206 -3.778358 0.351422 0.423720 7.689654 -1.066138 0.505267 -1.283120 -0.009637 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -1.851668 -1.278525 0.322181 -4.095180 3.141015 1.305913 1.358594 -1.556401 -4.165880 -1.398932 1.499980 -5.290970 -2.007092 4.664383 -1.663094 2.869164 5.866524 0.937280 -1.998258 -0.864906 3.642485 0.062863 5.676821 5.037770 -4.080591 -0.269722 -0.458868 2.251356 1.177918 0.999891 0.025868 -2.760914 1.959952 -2.358263 -0.112987 -2.080596 0.659404 1.054242 2.343096 -5.702932 1.217672 1.066272 1.224887 -0.942976 -1.019133 1.645135 3.479621 3.902919 -1.523395 0.971521 3.852376 0.785757 -0.095795 1.190498 0.391705 -0.554543 1.023224 -0.310898 -1.976266 -2.085455 -0.619875 -1.469203 0.214426 3.894463 5.023764 0.380334 -0.364912 1.869582 1.305718 1.356757 2.437700 0.866506 0.431826 0.083658 2.157109 -2.914341 -0.250224 -7.187643 -0.767104 -9.021491 -2.684170 -0.160339 4.122232 0.677994 1.138124 -0.655988 4.511851 -0.075661 -0.812834 3.338957 5.038823 -3.049834 -2.105040 -2.626117 -2.576718 1.902488 -2.297444 0.583767 2.349556 1.462123 -3.693113 -1.463881 0.642382 0.655403 -1.662074 -1.838987 0.868014 2.927425 -3.403218 -1.677517 -1.129098 3.033732 0.713738 -6.547300 -1.145882 -2.611105 1.457748 0.016156 -1.661654 -2.401622 0.414022 0.844186 -1.903585 -0.761423 -2.726097 3.132932 2.086687 1.749970 0.681429 0.608280 1.435605 5.177457 0.766806 -3.252578 -0.147790 -0.218874 -1.006686 1.612090 -3.082216 -1.793522 2.323691 -3.861717 1.563126 2.092296 -2.675244 -1.552471 1.372996 0.750101 1.190826 10.235463 -0.054441 4.705562 3.415780 -3.664223 1.809233 -1.199060 0.095427 1.310249 2.096960 0.411450 -2.773245 -4.114768 2.842203 4.403938 3.377068 -4.086895 -0.467822 0.206943 0.371542 -0.612110 -0.046278 1.435289 0.061112 -2.993891 -0.894502 3.595601 6.394902 -1.121332 -2.205564 2.112167 3.057331 -0.801024 -3.176831 -1.816814 -2.640648 0.613901 1.445046 0.745476 2.680595 5.857245 -7.945641 3.654717 0.861369 0.454135 3.116910 0.959076 -3.953739 -5.194440 -0.507408 2.784445 4.232295 -0.729704 0.556726 1.419864 -3.743872 -0.385889 0.927458 0.311549 -1.276017 1.575379 0.245768 -1.557766 -2.110884 -0.584593 -1.434475 -0.309034 -0.919948 2.974581 1.432518 -6.511124 4.252683 -0.480984 -1.915141 -0.107932 -1.904844 3.596422 -4.040033 -3.903064 2.098843 -1.430629 -2.369864 -2.388930 1.113641 2.262063 0.083438 1.800778 -2.334888 -3.912119 3.819559 -1.497898 3.433761 1.846912 -0.143252 2.360050 0.057737 -1.083509 -3.368563 -1.844580 0.450216 -0.536268 -3.740700 0.105634 -0.833754 3.498864 3.515871 -0.386864 -2.607962 -0.152813 3.687009 -3.489289 -1.718881 3.100661 0.824302 -3.547187 2.281514 3.701624 -4.350380 -0.261043 -2.985458 -0.509400 -1.490091 -3.600127 2.487297 0.251735 2.060475 0.599012 0.079352 -0.496454 2.163268 1.394512 -0.017868 0.456313 5.439573 4.414732 -1.520251 -0.244809 -4.567245 1.937132 -5.565083 -5.064529 2.351583 -0.524542 -3.258048 0.340210 0.107774 4.247496 0.067719 0.004399 -1.950094 1.457751 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.369785 0.381896 0.793921 -0.828010 0.708539 0.241743 0.259092 -0.297431 -0.582012 -0.592583 -0.118447 -0.631451 -0.803052 1.091072 -0.485083 0.174935 1.610084 0.416463 -0.190967 -0.585449 0.976303 -0.770019 1.471762 1.421714 -1.360725 -0.032785 0.952263 0.849146 0.671715 0.749599 -0.445259 -0.496766 0.433512 -0.526991 0.597313 -1.019019 0.183550 -0.134279 -0.062742 -1.773582 0.055310 -0.435790 -0.195668 -0.085973 -0.172267 1.080887 1.364437 0.929070 -0.607254 0.117031 0.962645 0.325336 -0.093150 0.279582 0.159564 0.139692 0.795353 0.450875 -0.341517 -0.086618 -0.168446 -1.079685 0.230970 1.208377 1.452914 0.068571 0.128433 0.387804 0.024899 0.217569 0.132472 0.329486 0.347234 0.450869 0.708582 -1.631624 0.123608 -2.654133 -0.334912 -3.108013 -0.724826 -0.887076 0.385582 -0.697980 0.406981 0.299034 1.297342 0.293218 0.370301 0.678346 1.566044 -1.026215 -0.384529 -0.801268 -0.644021 0.476541 -0.692316 0.192378 0.522623 -0.002198 -0.821227 -0.985831 0.645649 0.224747 -0.516009 -0.390867 -0.168239 1.001851 -1.192859 -0.478330 -1.104962 -0.230586 -0.152974 -1.759905 0.280966 -0.738516 1.563318 0.066335 -0.148051 -0.987213 0.138614 1.074857 -0.289294 -0.501771 -0.394791 1.104312 0.582576 -0.004615 0.125507 -0.098757 0.253517 1.028903 1.288489 -0.543662 -0.363070 0.149992 -1.076713 -0.238124 -1.039438 -0.206902 1.119296 -0.892105 0.082500 0.717530 -0.665487 -0.448456 1.464961 -0.502181 0.831296 3.131489 -0.176570 0.680002 0.329619 -1.245319 0.466569 -0.141613 -0.306230 0.480592 0.867334 0.534353 -1.589534 -0.941118 0.426849 1.159214 0.717547 -1.324135 -0.679128 -0.503318 -0.122045 -0.102276 -0.011677 0.267701 -0.454613 -0.620292 -0.317488 0.621531 1.694024 -0.619028 -1.024181 0.282528 0.227887 -0.499729 -1.475013 -0.280427 -0.367059 0.163531 -0.000567 -0.135877 0.682134 1.392356 -2.857914 0.999329 -0.315999 -0.360234 0.794146 -0.001890 -0.443631 -1.564288 0.524081 1.106439 1.036739 0.091253 0.008248 0.127297 -1.126096 -0.116630 0.055240 0.715970 -0.523577 0.569679 0.347375 -0.953463 -0.999640 -0.251937 0.010543 -0.377351 -0.068786 0.506910 -0.212871 -2.599017 1.455506 -0.412404 -0.339636 0.310415 -0.345817 0.635196 -1.310335 -1.390469 0.510138 -0.027632 -0.331554 -0.814462 0.027369 0.929855 -0.185691 0.088076 -0.718225 -1.472522 0.558850 -0.495747 0.612403 0.480468 0.572476 1.505547 -0.103643 -0.329181 -1.299812 0.082801 0.120611 -0.286183 -0.752883 -0.408347 -0.246998 0.918801 1.565510 -0.251484 0.032875 0.144804 1.197640 -1.373293 -0.671300 0.712490 1.050126 -0.625749 0.539889 0.799741 -1.103623 -0.813600 -0.694785 -0.473469 0.013671 -1.056624 0.487576 -0.774179 0.272734 0.647690 0.072099 -0.363942 0.727665 0.148686 0.269549 -0.045498 1.153643 2.253370 -1.007522 -0.028925 -0.983424 0.548802 -1.673966 -1.171175 0.259501 0.085614 -0.142918 0.183168 0.081274 0.843646 -0.010054 -0.064225 -0.102789 -0.219555 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::max_size() const = -0.285133 0.078989 0.550683 -0.710325 0.599180 0.037320 0.189831 -0.185125 -0.593359 -0.464345 0.004500 -0.625562 -0.576657 0.844729 -0.386262 0.190825 1.043135 0.263029 -0.202982 -0.377496 0.670996 -0.427754 1.005792 0.846856 -0.922720 -0.033588 0.307072 0.707271 0.437534 0.596198 -0.139677 -0.380025 0.247675 -0.159482 0.343203 -0.647387 0.215764 0.112713 -0.114288 -1.149213 0.109294 -0.027626 0.053580 -0.039028 -0.102727 0.759284 0.771863 0.703184 -0.415066 0.141373 0.755436 0.255031 -0.029387 0.255035 0.025188 -0.099801 0.551030 -0.049241 -0.350643 -0.123247 -0.101538 -0.776708 0.120118 0.785521 1.042195 0.002419 0.090640 0.248454 0.024323 0.264573 0.286049 0.165088 0.156510 0.147237 0.450477 -0.732802 0.097952 -1.596768 -0.163228 -2.117902 -0.472266 -0.478262 0.556362 -0.022918 0.085221 0.097059 0.902764 0.232416 0.078038 0.555044 1.005744 -0.539193 -0.300275 -0.582044 -0.496117 0.390589 -0.504838 0.010723 0.276385 0.348075 -0.533848 -0.417771 0.282102 0.002444 -0.318808 -0.142884 -0.148092 0.708021 -0.972960 -0.206784 -0.573914 0.170044 0.082790 -1.185261 0.124440 -0.536451 0.857191 -0.059647 -0.015873 -0.337043 0.096870 0.490518 -0.271561 -0.049319 -0.741980 0.729408 0.298784 0.037380 0.069336 0.003502 0.131042 0.571266 0.539410 -0.486189 -0.299009 0.106434 -0.498857 -0.020259 -0.716453 -0.138126 0.692994 -0.667200 0.153207 0.327595 -0.427958 -0.414677 0.420142 -0.242456 0.522983 1.762394 -0.056586 0.533091 0.311509 -0.741844 0.296415 -0.021884 -0.103082 0.371409 0.471078 0.183983 -0.566023 -0.728187 0.366211 0.735706 0.546455 -0.759546 -0.294642 -0.235038 -0.031575 -0.026495 -0.025258 0.302897 -0.365443 -0.419008 -0.231080 0.335708 1.055004 -0.165406 -0.593830 0.324417 0.275189 -0.394753 -0.762816 -0.233405 -0.101740 0.066311 0.037274 -0.051514 0.458276 1.020848 -1.937237 0.735452 0.065324 -0.062159 0.472613 -0.147007 -0.335363 -1.158044 0.129149 0.673028 0.769018 -0.046038 0.045608 0.171296 -0.754593 -0.010672 0.068818 0.370862 -0.272274 0.282897 0.198789 -0.487282 -0.620017 -0.259024 -0.107199 0.006100 -0.125565 0.386735 0.036715 -1.704917 0.907861 -0.392208 -0.229470 0.096325 -0.158588 0.497483 -0.823792 -0.831570 0.306121 -0.125761 -0.493274 -0.688526 0.157247 0.581337 -0.245384 0.078173 -0.380368 -0.825167 0.461410 -0.423549 0.340265 0.300770 0.282545 0.824505 0.167810 -0.202269 -0.752413 0.029337 0.113183 -0.324506 -0.416794 0.174493 -0.094812 0.581688 0.918128 -0.076755 -0.108488 0.177657 0.861997 -0.626732 -0.576502 0.565756 0.291231 -0.433928 0.588879 0.632562 -0.796631 -0.476522 -0.590317 -0.195720 -0.022229 -0.664950 0.402626 -0.310400 0.220667 0.370588 0.118243 -0.371772 0.525373 0.151540 0.004278 -0.094644 1.059921 1.339885 -0.516259 0.161376 -0.676549 0.333972 -1.113295 -0.745732 0.157026 -0.000800 -0.166897 0.229094 -0.044860 0.651595 -0.000176 0.057471 -0.148965 -0.028851 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::size() const = -0.310029 0.276259 0.171092 -1.134050 1.187650 0.974334 0.319128 -0.614453 -0.669242 -0.021386 0.131332 -1.665872 -0.432961 0.600616 -0.508291 0.875901 1.465415 -0.161131 -0.446287 0.035136 0.345245 0.915132 1.649872 1.242105 -0.841346 0.073099 -0.126103 0.304559 -0.531320 0.420214 -1.056214 -1.202816 0.352063 -0.484984 -0.316767 0.100599 -0.121624 -0.494563 0.990305 -1.102099 0.308334 0.081748 -0.084322 -0.314688 -0.228063 -0.314097 1.528633 0.820235 0.088298 -0.208692 0.771118 0.491296 0.028699 0.300415 0.327346 0.323961 0.806414 -0.339472 -0.442004 -0.908433 -0.288773 0.477341 -0.186884 0.987699 0.789031 0.364343 -0.403377 0.369030 0.375596 -0.121078 0.234043 0.439096 0.035788 0.762756 0.163114 -0.402357 0.500477 -0.627588 -0.273441 -0.473713 -0.862144 -0.187709 0.036940 0.410711 0.863922 -0.173566 1.257046 -0.443377 0.251392 0.021396 1.207560 -1.318914 -0.479459 -0.474048 -0.486930 -0.107294 -0.256778 0.117806 -0.140078 0.080984 -1.019664 -0.349734 0.298117 0.368155 -0.371661 -0.217865 0.548598 0.055132 -0.382107 -0.553750 -0.585496 0.642328 0.011504 -1.641793 -0.716074 -0.095225 0.107838 -0.128345 -0.637955 -1.553745 0.251099 0.534182 -0.746105 -0.411591 -0.531548 0.702037 0.918784 0.306821 0.403277 -0.081727 0.728519 1.891401 0.189672 -0.709721 -0.078654 -0.304250 -0.303304 0.081048 -0.206619 -0.244402 -0.572751 -0.995980 0.662184 1.235028 -0.671780 0.371086 -0.244094 0.108123 0.290446 2.783096 -0.642985 1.183142 0.518912 -1.250160 0.463435 -0.793925 -0.383341 -0.455964 0.154885 0.669953 -1.131344 -0.867783 1.111549 1.064522 0.739336 -0.895755 0.831646 0.257497 0.208137 -0.242073 -0.037772 0.378184 0.376977 -0.884508 -0.279731 0.982859 2.423051 -0.198002 -0.823390 0.807941 0.312410 0.440415 -0.122491 -0.621918 -0.771573 0.106768 0.832211 0.314367 0.631658 1.416987 -1.433159 0.646807 0.030525 -0.603613 1.433522 0.226983 -0.870789 0.327106 -0.182888 1.008898 0.874971 -0.147212 0.206454 -0.249376 -0.596230 -0.180627 0.197268 0.290583 -0.455523 0.401740 0.537192 -1.298190 -0.363290 -0.670163 -0.159389 -0.178242 -0.622139 0.618290 -0.009022 -1.798577 1.434886 0.638075 -0.358180 0.129888 -0.946676 0.814391 -0.826163 -0.822010 0.679220 -0.546858 0.210502 0.366537 0.203379 0.258624 0.408744 1.137899 -1.198023 -1.029538 0.853815 0.538918 1.184373 0.474892 0.253078 0.018646 -0.258089 -0.100882 -0.477269 -0.905871 0.283805 0.303998 -1.110522 0.209239 -0.550587 0.998186 0.817882 -0.503896 -0.386993 -0.563380 0.310813 -0.927193 0.349742 0.630163 0.256644 -1.425111 -0.289629 0.850579 -0.431215 -0.207187 -0.550896 -0.187890 -1.013759 -1.059539 0.155749 -0.184070 0.300833 0.630758 -0.372841 -0.258964 0.131390 -0.001379 -0.022910 0.309966 0.977334 0.502187 0.186330 0.144717 -1.169985 0.532172 -1.363174 -1.499762 1.022536 -0.741089 -1.170405 -0.341989 0.138234 1.081229 -0.470205 0.197145 -0.339051 0.177255 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = -0.614347 0.404150 1.003762 -1.402960 1.089890 0.212386 0.426348 -0.435116 -0.989750 -0.942766 -0.011393 -1.390415 -1.295889 1.619330 -0.776763 0.249933 2.385671 0.512679 -0.389674 -0.781617 1.321861 -0.732356 2.251499 2.125046 -1.956531 -0.103247 0.949525 1.303149 0.842622 0.818874 -0.349698 -0.868697 0.609942 -0.518134 0.760056 -1.208095 0.305257 -0.159251 -0.095512 -2.512705 0.174134 -0.327259 -0.027144 -0.184682 -0.265384 1.534017 1.974922 1.462513 -0.842029 0.045341 1.507555 0.536790 -0.089836 0.452672 0.128761 -0.198803 0.972279 0.273550 -0.602643 -0.345265 -0.246777 -1.384840 0.207014 1.821142 2.148811 0.210644 0.110805 0.511304 0.186390 0.451409 0.320950 0.478961 0.533474 0.649070 0.984966 -1.869843 0.180869 -3.642586 -0.411949 -4.468869 -1.129771 -1.085552 0.945525 -0.515974 0.381090 0.244403 1.929424 0.485731 0.425935 1.191687 2.306072 -1.292304 -0.652025 -1.176373 -1.017598 0.805412 -0.994363 0.377171 0.732686 0.400034 -1.321691 -1.046536 0.633189 0.162035 -0.730712 -0.459525 -0.075289 1.309184 -1.659562 -0.421876 -1.418414 0.056004 0.164266 -2.711595 0.192235 -1.080750 1.932550 -0.000294 -0.313836 -1.116815 0.164754 1.136380 -0.546163 -0.366845 -1.160766 1.554196 0.814712 0.117040 0.227645 0.041764 0.465422 1.493124 1.356789 -0.937913 -0.487436 0.085217 -1.346281 -0.188524 -1.453639 -0.325329 1.601444 -1.347886 0.381401 0.920342 -1.011380 -0.886286 1.395975 -0.618601 1.132214 4.331147 -0.255141 1.238103 0.709149 -1.711968 0.667899 -0.311305 -0.388619 0.596251 1.160772 0.693980 -1.707825 -1.477947 0.819249 1.752710 1.140148 -1.745252 -0.553353 -0.411113 -0.112133 -0.304847 0.021689 0.471772 -0.568962 -0.946534 -0.468926 1.180448 2.336735 -0.580970 -1.353124 0.511039 0.671584 -0.436605 -1.700911 -0.450075 -0.409308 0.241633 0.204197 -0.020722 1.054185 2.169297 -4.037320 1.459478 0.002679 -0.197012 1.148580 -0.016762 -0.917593 -2.320280 0.625185 1.624914 1.514531 -0.012410 -0.015494 0.179289 -1.612313 -0.184020 0.200652 0.915864 -0.726899 0.777469 0.383454 -1.180392 -1.398758 -0.556228 -0.170477 -0.236314 -0.251700 0.854892 -0.080920 -3.590847 2.179982 -0.586231 -0.577057 0.100585 -0.743324 0.992081 -1.915671 -1.920521 0.665143 -0.337209 -0.804443 -1.222379 0.174563 1.211821 -0.304394 0.353029 -1.043789 -1.870984 1.154848 -0.660955 1.041004 0.702677 0.739176 1.932015 0.019875 -0.447911 -1.694583 -0.117847 0.282366 -0.405870 -1.282562 -0.072404 -0.353031 1.273325 2.139750 -0.498575 -0.246271 0.292078 1.648309 -1.716656 -1.095871 1.073852 1.005601 -1.022500 0.985024 1.243663 -1.649713 -1.007446 -1.246193 -0.580868 -0.153677 -1.658967 0.713736 -0.877731 0.458103 0.903647 0.027701 -0.543876 1.040228 0.287778 0.271706 0.068027 1.850401 2.952591 -1.201732 0.083206 -1.625553 0.788620 -2.497036 -1.855018 0.565798 -0.102386 -0.325720 0.222080 -0.032576 1.331468 -0.080800 -0.081492 -0.411356 0.057825 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = -0.773242 -0.620546 -0.013282 -2.051389 1.610434 0.600247 0.693817 -0.910995 -1.749948 -0.085834 0.586600 -2.026547 -0.320612 1.690132 -0.696019 1.921514 2.939404 0.417116 -0.791831 -0.650804 1.745530 -0.238977 2.919351 2.571968 -1.913182 -0.095939 0.240479 1.202857 0.383116 0.047637 -0.845021 -0.715629 0.834537 -2.235729 -0.256264 -1.078580 0.322258 0.266428 1.878359 -2.736177 0.547229 -0.740067 0.309368 -0.393979 -0.766534 0.598801 1.668000 1.836671 -0.652320 0.573650 1.959651 0.015415 -0.097378 0.606086 0.148933 0.676388 0.596840 0.548189 -0.770143 -1.074518 -0.173164 -0.389060 0.715324 1.786832 2.168019 0.216587 -0.280519 1.441743 0.951894 0.164529 1.116419 0.507026 -0.463163 0.096560 1.032643 -2.974513 0.143541 -3.993848 -0.637652 -3.790705 -1.495782 -0.332082 1.087772 -1.013555 1.462610 0.630693 2.161504 -0.231760 0.044392 1.189161 1.925723 -2.198799 -1.044734 -1.216341 -1.085348 0.568902 -0.900539 0.187201 1.398537 0.493219 -1.742101 -0.953133 1.043255 0.843444 -0.772215 -1.519526 0.674942 1.006699 -1.090233 -1.723122 -0.878458 1.270491 -0.379899 -3.001779 0.035892 -1.092024 1.652705 -0.115344 -0.695232 -2.235531 0.004293 1.102452 -0.949256 -0.906693 -0.296164 1.251131 1.449802 0.687111 0.621866 0.094372 0.576360 3.289040 1.066555 -1.518427 -0.324598 0.157786 -1.126364 0.493370 -1.417896 -1.036974 0.936632 -2.171022 0.955572 1.474997 -1.271071 -0.254181 2.483735 0.626660 0.693589 5.508795 -0.024418 2.187865 1.544180 -1.820168 0.904048 -1.059103 0.131477 0.630771 1.026991 -0.003008 -2.720244 -1.918210 1.041127 1.932867 1.541072 -2.427039 -0.941955 -0.166072 0.220697 0.148879 -0.503646 0.694753 0.125945 -1.311117 -0.271544 1.615605 3.797894 -0.785759 -0.687221 1.063771 1.025949 -0.773002 -2.467263 -1.186626 -2.036458 0.232169 0.542870 0.591403 1.174167 2.637017 -3.768756 1.390927 -0.460368 -0.024093 1.754340 0.795277 -1.805396 -2.446557 -0.236466 1.201882 2.012844 -0.563888 0.359349 0.779845 -1.532529 -0.137816 0.324461 0.269020 -0.612851 0.812829 0.271031 -1.373420 -0.755249 0.245755 -0.537257 -0.369856 0.112367 1.331168 0.006763 -3.350808 1.891993 -0.120393 -1.096948 0.929419 -1.098769 1.925803 -1.891369 -1.685666 1.412822 -0.067532 0.222086 -0.802473 0.549621 1.191937 0.070654 0.889558 -1.404768 -2.115023 1.273663 -0.486802 1.642035 0.902191 -0.186200 1.132116 -1.207491 -0.588996 -1.849259 -0.653698 -0.584218 0.123149 -1.882748 -0.712358 -0.524023 1.926764 1.771092 -0.171796 -0.674647 0.222767 1.718069 -2.502801 -0.473964 1.353538 1.379103 -1.931189 0.559772 1.690945 -2.193225 -0.206901 -0.958376 -0.345052 -0.523936 -1.631089 1.201468 -0.154470 1.047917 0.266242 0.071466 0.348057 1.029697 0.495225 0.661689 0.163787 2.407180 2.565760 -0.465901 -0.885294 -2.089730 0.730588 -2.564834 -2.436897 1.163542 0.165374 -1.755144 0.318315 0.578701 2.266438 -0.198065 -0.273600 -0.681246 0.104513 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(std::greater) = -0.095961 0.196020 0.183904 -0.137335 0.344557 0.250237 0.127172 -0.106145 -0.196902 -0.159761 -0.074375 -0.324890 -0.291207 0.400163 -0.128067 0.222301 0.550088 0.157285 -0.022131 -0.046588 0.177972 -0.195953 0.529614 0.433573 -0.325007 0.054336 0.160459 0.106815 -0.133932 0.487149 -0.303459 -0.462579 0.234736 -0.172293 0.071148 -0.255815 -0.016069 -0.043298 0.064422 -0.585510 0.023264 0.075529 0.010443 -0.073898 -0.057663 0.029768 0.533873 0.279110 0.018468 0.123308 0.114003 0.095286 0.051109 0.137967 0.223539 0.212169 0.249376 -0.138455 -0.276579 -0.024310 -0.133222 -0.326818 -0.093593 0.320185 0.407564 0.031378 -0.004850 0.076376 -0.223734 0.043868 0.016071 0.105551 0.096224 0.175895 0.126998 -0.270471 0.045798 -0.409226 -0.186155 -0.701643 -0.282127 -0.273179 0.067702 0.138724 0.282771 0.009991 0.443740 -0.034409 0.121500 0.011079 0.606932 -0.499786 -0.178040 -0.193830 -0.071446 0.038863 -0.209439 -0.036178 0.063924 -0.156800 -0.322061 -0.376588 0.308946 0.135145 -0.134110 -0.102864 -0.036634 0.327572 -0.467766 -0.298052 -0.435462 -0.139299 -0.147107 -0.535031 0.056403 0.008280 0.150632 0.175304 -0.146720 -0.505091 0.199920 0.370652 -0.109886 -0.305627 -0.099372 0.357776 0.100362 -0.016049 0.122618 -0.011054 0.121542 0.531232 0.377778 -0.130642 -0.035127 0.022098 -0.208497 -0.019077 -0.166048 -0.145021 -0.097022 -0.391421 0.036794 0.305470 -0.259478 0.065000 0.015163 -0.089017 0.236376 0.757318 -0.169861 0.232376 0.042174 -0.533070 0.230856 -0.165638 -0.157363 -0.045002 0.265593 0.240624 -0.365155 -0.288355 0.230486 0.402185 0.256720 -0.303051 -0.098626 -0.216245 0.081615 -0.001775 0.065903 0.150897 -0.005795 -0.292300 -0.093101 0.108964 0.773136 -0.280948 -0.310241 0.219106 -0.069896 -0.026407 -0.384218 -0.129928 -0.227649 0.011330 -0.017200 -0.079350 0.104932 0.469882 -0.669284 0.396855 -0.225369 -0.295695 0.389685 -0.025621 -0.117193 -0.232053 0.043687 0.417899 0.406063 0.096127 0.100318 -0.077017 -0.346868 -0.068027 -0.032654 0.245841 -0.154845 0.210395 0.091655 -0.506390 -0.306411 -0.153284 0.056296 -0.283189 -0.115353 0.151400 0.239327 -0.779927 0.499240 0.053205 -0.105106 0.169804 0.046895 0.212205 -0.354622 -0.502971 0.194796 -0.145952 -0.098202 -0.010823 -0.031124 0.200238 0.028149 -0.035852 -0.148900 -0.386670 0.217297 0.077424 0.254089 0.164521 0.198906 0.351715 0.131043 -0.250641 -0.193952 -0.121227 0.042486 -0.261168 -0.143128 -0.054250 -0.155795 0.394186 0.509947 0.087639 -0.065222 -0.152012 0.365145 -0.342764 -0.027913 0.371065 0.160175 -0.221653 -0.002647 0.376373 -0.265294 -0.277269 -0.158508 -0.030233 -0.128388 -0.328122 0.031827 -0.324905 0.023775 0.237795 -0.064101 -0.210447 0.133914 0.020772 -0.000560 -0.073660 0.400180 0.317016 -0.287237 0.148825 -0.266011 0.136382 -0.512919 -0.352038 0.094344 0.116258 -0.221209 -0.007788 0.080735 0.191964 -0.077896 0.014147 -0.042582 -0.205959 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator-(long) const = -0.447464 0.304477 0.684433 -0.920536 1.068753 1.099760 0.416726 -0.611922 -0.803156 -0.275946 0.032208 -1.178339 -0.793717 1.402225 -0.599399 0.694039 1.843649 0.387739 -0.418222 -0.196220 0.845140 -0.014002 1.802061 1.540677 -1.210818 -0.014182 0.429514 0.396366 0.023719 1.147790 -0.819661 -1.267381 0.734081 -0.508721 0.208185 -0.715619 0.011049 -0.149303 0.473838 -1.804922 0.180502 0.111995 -0.174396 -0.286070 -0.118429 0.301775 1.574498 1.025390 -0.030706 0.119576 0.652125 0.485181 -0.028034 0.357332 0.638152 0.436543 0.894474 -0.087013 -0.635682 -0.348450 -0.402077 -0.442183 -0.197768 1.268125 1.449249 0.227366 -0.018628 0.236622 -0.116379 0.191163 0.190183 0.344326 0.358317 0.676016 0.390273 -1.010067 0.159184 -1.641880 -0.408615 -2.015546 -0.831221 -0.594377 0.281612 0.070280 0.768395 -0.349279 1.429211 -0.005621 0.115217 0.228151 1.919078 -1.470278 -0.532917 -0.745018 -0.458953 0.128788 -0.689022 0.183211 0.296134 -0.399252 -1.123675 -1.040161 0.556343 0.440328 -0.459313 -0.273476 0.073571 1.145112 -1.035786 -0.728982 -0.880346 0.121397 -0.331594 -1.976787 -0.133291 -0.515980 0.571382 0.225669 -0.548845 -1.482091 0.478744 1.119556 -0.525679 -0.842042 -0.361734 1.273569 0.733995 0.118794 0.118258 -0.015996 0.407023 1.666333 0.881724 -0.659934 -0.001441 -0.093626 -0.675499 0.062611 -0.801562 -0.280449 0.129744 -1.085193 0.076014 1.124601 -0.802545 0.193158 0.411832 -0.107601 0.669328 3.463479 -0.551314 1.045460 0.386928 -1.638789 0.703845 -0.368911 -0.318663 -0.029535 0.733698 0.629672 -1.788210 -1.083702 0.900545 1.394229 0.883926 -1.292049 -0.030891 -0.511532 -0.039119 -0.359270 0.151014 0.407297 -0.175684 -0.913956 -0.388096 0.706697 2.448287 -0.871511 -1.295839 0.589465 0.160378 -0.001542 -0.933292 -0.493541 -0.575221 0.213705 0.300474 -0.060504 0.768185 1.640976 -2.365976 1.244019 -0.344305 -0.800016 1.440373 0.054056 -0.692488 -0.559273 0.135754 1.283677 1.238557 0.197531 0.077465 0.003830 -1.207981 -0.173129 0.007469 0.644563 -0.499073 0.546377 0.499965 -1.327592 -0.931983 -0.500103 -0.018671 -0.768698 -0.495630 0.642937 0.280352 -2.571263 1.669582 0.250422 -0.303988 0.367405 -0.356848 0.828856 -1.235316 -1.503474 0.633729 -0.285544 -0.250715 -0.265586 0.019428 0.780510 0.101096 0.659659 -0.970971 -1.529016 0.799064 -0.025803 1.078145 0.500670 0.542874 1.023793 0.117833 -0.499540 -0.952186 -0.832556 0.493146 -0.086540 -0.943249 -0.136640 -0.428741 1.275854 1.375875 -0.089322 -0.450872 -0.586179 1.109782 -1.354205 -0.014450 0.984548 0.697083 -1.008035 -0.080547 1.093467 -0.940544 -0.692435 -0.518155 -0.423148 -0.614913 -1.157930 0.349370 -0.590907 0.395987 0.453823 -0.025753 -0.483315 0.433854 0.170936 0.011387 0.174264 1.286084 1.369652 -0.764688 0.196232 -1.154067 0.768163 -1.715469 -1.438615 0.596822 -0.309775 -0.776116 -0.015261 0.107056 0.955270 -0.137261 0.084515 -0.202903 -0.240620 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::empty() const = -0.431041 0.320197 0.989989 -1.014008 0.802468 0.253667 0.319030 -0.275475 -0.818905 -0.651664 -0.010418 -1.169536 -1.032476 1.292820 -0.608583 0.015634 1.687924 0.462299 -0.371874 -0.405995 0.789602 -0.408041 1.533310 1.478542 -1.304033 -0.044518 0.407611 0.942440 0.438840 1.028329 -0.332240 -0.821054 0.352753 0.076551 0.593522 -0.821938 0.152591 -0.077174 -0.311902 -1.801156 0.168218 0.262973 0.180300 -0.195813 -0.023481 0.936758 1.432255 1.006930 -0.401163 -0.086100 0.893808 0.451668 0.041719 0.324466 0.346146 -0.195454 1.046737 -0.025561 -0.568063 -0.198786 -0.279160 -0.960547 -0.046804 1.296645 1.541253 0.251280 0.086455 -0.044090 0.014037 0.408209 0.232868 0.280211 0.407812 0.551124 0.529506 -0.665022 0.366625 -2.046630 -0.162209 -2.771438 -0.772986 -0.690878 0.840382 0.197857 0.088088 -0.179528 1.342518 0.293723 0.218249 0.613695 1.759890 -0.768869 -0.474061 -0.760989 -0.780065 0.561370 -0.681470 0.176231 0.351960 0.296546 -0.960251 -0.608040 0.370380 0.049275 -0.478111 0.213820 -0.076109 1.056835 -1.219021 -0.106869 -0.895826 0.082887 0.270588 -1.887500 -0.050616 -0.803120 0.838058 0.039714 -0.356256 -0.594766 0.288374 0.669395 -0.461428 -0.057023 -1.312692 1.265587 0.364017 0.022248 0.046918 -0.014694 0.301517 0.733889 0.662892 -0.705849 -0.175820 -0.011014 -0.840168 -0.099779 -0.995955 -0.181565 0.837297 -0.842625 0.107506 0.516900 -0.744935 -0.480350 0.114629 -0.347016 0.773635 2.908426 -0.327587 0.904056 0.404960 -1.231880 0.676694 0.050501 -0.292816 0.258618 0.770510 0.542600 -0.940403 -1.057655 0.679764 1.282745 0.840625 -1.019327 -0.071644 -0.311713 -0.127749 -0.246127 0.219255 0.307160 -0.453730 -0.734437 -0.423203 0.692096 1.591402 -0.299350 -1.423657 0.371211 0.313934 -0.169008 -0.840468 -0.234464 -0.013884 0.219438 -0.009184 -0.143288 0.804776 1.569808 -2.868785 1.223943 0.183396 -0.311415 1.148815 -0.300729 -0.597808 -1.395814 0.327989 1.203671 1.172734 0.116031 -0.269497 0.075237 -1.179835 -0.178143 0.074965 0.688736 -0.540701 0.542488 0.304922 -0.861667 -1.020388 -0.843017 -0.091167 -0.194216 -0.504038 0.591920 0.093596 -2.459149 1.600611 -0.219874 -0.269577 -0.113265 -0.405811 0.373938 -1.296204 -1.400019 0.273181 -0.348398 -0.818415 -0.885325 0.077542 0.782211 -0.216216 0.302545 -0.752376 -1.190708 0.920011 -0.483236 0.816480 0.470089 0.554823 1.164398 0.829738 -0.281886 -0.969931 -0.129840 0.425261 -0.406271 -0.814100 0.245807 -0.326918 0.859738 1.441959 -0.292738 -0.209958 -0.110159 1.240742 -0.754981 -0.784129 0.829307 0.016733 -0.641238 0.621445 0.944471 -1.070195 -0.770540 -0.936224 -0.541317 -0.237221 -1.118150 0.469037 -0.556446 0.293273 0.612034 -0.042288 -0.645121 0.609558 0.193855 -0.091300 0.154194 1.411483 1.682288 -0.761411 0.494536 -1.103706 0.623183 -1.732021 -1.157672 0.341768 -0.300912 -0.340542 0.126199 -0.092353 0.855942 -0.061338 0.070080 -0.279959 0.130628 +PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::operator== > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.375051 0.390798 0.471959 -0.834318 0.722868 0.341701 0.223930 -0.451575 -0.518461 -0.569338 0.010133 -0.821334 -0.753558 1.013263 -0.541591 0.165473 1.355536 0.191308 -0.226314 -0.443748 0.858895 -0.216858 1.349401 1.139020 -1.170393 -0.081823 0.833046 0.674978 0.494142 0.549170 -0.078717 -0.798055 0.390064 -0.276903 0.385355 -0.604267 0.177303 -0.188369 0.093375 -1.367323 0.080321 -0.226535 -0.075655 -0.132188 -0.202030 0.460518 1.189223 0.855208 -0.454675 -0.014293 0.960062 0.623038 -0.194755 0.250846 0.161303 -0.109532 0.634968 0.033600 -0.267024 -0.279900 -0.173896 -0.510364 -0.024133 1.159769 1.280814 0.168556 0.118524 0.367002 -0.054147 0.347289 0.093852 0.287392 0.169160 0.596219 0.515363 -1.105705 0.002874 -2.232267 -0.251466 -2.520026 -0.598967 -0.626993 0.270309 -0.345582 0.314422 0.431372 1.127367 0.336779 0.198498 0.696615 1.490856 -0.678444 -0.344797 -0.641874 -0.681901 0.468753 -0.612088 0.341018 0.304988 0.195641 -0.772154 -0.794113 0.257144 0.178885 -0.424145 -0.383684 -0.062907 0.781553 -0.995590 -0.232502 -0.703032 0.039290 -0.020615 -1.662873 -0.358044 -0.654847 1.110131 -0.048961 -0.184267 -0.842428 0.130368 0.798821 -0.310955 -0.368648 -0.204803 0.639288 0.605097 0.164208 0.052176 -0.045331 0.368287 1.089531 0.768198 -0.515496 -0.211718 -0.120213 -0.607289 -0.108492 -0.801868 -0.101683 0.661975 -0.712559 0.462645 0.799632 -0.560096 -0.723706 0.774845 -0.586620 0.675880 2.748714 -0.214420 0.717936 0.411676 -1.129699 0.006504 -0.249379 -0.329595 0.247250 0.636487 0.509172 -0.750549 -0.876654 0.615639 1.034986 0.642732 -0.961003 -0.344684 -0.232574 -0.131764 -0.223860 0.006804 0.249717 -0.440062 -0.551939 -0.348647 0.792225 1.274122 -0.388524 -0.978471 0.373752 0.676516 -0.227995 -0.742721 -0.267300 -0.373850 0.243587 0.339216 -0.086587 0.667652 1.288237 -2.532423 0.849022 0.166346 -0.136266 0.602916 0.122002 -0.546444 -1.137000 0.474046 1.062598 0.772543 -0.096340 0.157512 0.035791 -0.974487 -0.122318 0.122875 0.553509 -0.456754 0.440297 0.297872 -0.775039 -0.972844 -0.120446 -0.046611 -0.260699 -0.175946 0.496702 -0.016959 -2.274025 1.418287 -0.285577 -0.256670 0.012584 -0.510580 0.718058 -1.144819 -1.211609 0.439094 -0.255274 -0.338348 -0.433108 0.088095 0.756526 0.022207 0.585204 -0.630422 -0.896349 0.514269 -0.258745 0.601431 0.381969 0.604260 1.073596 -0.607868 -0.196658 -1.044166 -0.033526 0.357279 -0.075675 -0.825156 -0.184002 -0.190810 0.804210 1.233203 -0.323106 -0.372766 0.018975 0.904681 -1.106441 -0.457319 0.587000 0.770264 -0.766757 0.415468 0.673287 -0.835846 -0.625218 -0.664322 -0.264736 -0.247649 -1.062295 0.334439 -0.455814 0.268250 0.590656 -0.040769 -0.350399 0.616134 0.212646 0.248392 0.121267 0.800302 1.567134 -0.769004 -0.023007 -0.982131 0.388334 -1.525105 -1.278290 0.463386 -0.307895 -0.183411 0.038972 -0.281370 0.795896 -0.073195 0.192277 -0.174361 -0.000760 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() const = -0.204025 0.506859 0.595250 -0.508978 0.820128 0.832812 0.235480 -0.218893 -0.447005 -0.260056 -0.162057 -0.813828 -0.712568 0.892766 -0.359093 0.204598 1.179806 0.232324 -0.168892 0.014166 0.351268 0.054653 1.096602 0.905273 -0.736474 0.079237 0.268334 0.246843 -0.330140 1.119490 -0.660862 -1.169529 0.337689 0.007473 0.144448 -0.392027 -0.076923 -0.272219 0.006207 -1.196263 0.085324 0.335178 -0.245667 -0.207632 -0.007172 -0.049526 1.273455 0.583717 0.015199 -0.033416 0.266676 0.455631 -0.005139 0.223524 0.499678 0.277716 0.650148 -0.195506 -0.504442 -0.158574 -0.314880 -0.330861 -0.317538 0.784672 0.835344 0.215515 -0.048911 -0.077420 -0.347174 0.106714 -0.061729 0.225510 0.350493 0.599467 0.210524 -0.107017 0.116811 -0.673964 -0.195826 -1.015915 -0.568508 -0.523588 0.166223 0.473809 0.389274 -0.331474 0.951295 -0.113506 0.253716 0.149641 1.367837 -0.862778 -0.322051 -0.517866 -0.381434 0.079500 -0.354937 0.013075 -0.118098 -0.315632 -0.723098 -0.732277 0.300743 0.193126 -0.281195 0.048538 -0.015777 0.711406 -0.790237 -0.305295 -0.755110 -0.016463 -0.111891 -1.232375 -0.448390 -0.099648 0.159043 0.233678 -0.392394 -0.944497 0.433431 0.716869 -0.380139 -0.445545 -0.306881 0.844280 0.325320 -0.047529 0.138317 -0.093826 0.357546 0.910831 0.564920 -0.322093 0.011444 -0.084366 -0.313376 -0.123893 -0.367809 -0.071096 -0.320171 -0.641937 0.115416 0.740770 -0.536871 0.114867 -0.437074 -0.270421 0.498295 2.101443 -0.511491 0.568194 0.021918 -1.159507 0.514394 -0.168952 -0.436686 -0.217292 0.447449 0.641750 -0.817345 -0.597814 0.643687 0.902495 0.556033 -0.607252 0.254242 -0.337461 -0.033078 -0.217532 0.258217 0.247576 -0.082083 -0.596529 -0.302301 0.412968 1.600056 -0.448143 -1.230989 0.447274 0.056817 0.183864 -0.261977 -0.203393 -0.206295 0.082731 0.305208 -0.229413 0.474015 1.048752 -1.567460 0.841665 -0.135843 -0.707196 0.924714 -0.108499 -0.277956 0.012995 0.115534 1.006854 0.855428 0.284786 -0.026950 -0.283011 -0.723758 -0.155177 0.060116 0.534536 -0.369932 0.425258 0.296535 -1.072780 -0.675145 -0.653109 -0.015585 -0.466887 -0.572847 0.300555 0.171816 -1.758012 1.224623 0.295812 -0.062694 0.102645 -0.175148 0.362721 -0.738711 -1.121054 0.344820 -0.309476 -0.305904 0.060018 -0.093446 0.436838 0.246875 0.404808 -0.579383 -0.959045 0.567275 0.245962 0.715730 0.340808 0.507242 0.664713 0.432610 -0.369354 -0.425295 -0.606240 0.657961 -0.187294 -0.480345 0.039606 -0.398305 0.759212 0.947881 -0.063508 -0.287080 -0.679505 0.703186 -0.522066 0.038107 0.675315 0.049619 -0.596841 -0.135586 0.761647 -0.407156 -0.589534 -0.431853 -0.125503 -0.491554 -0.772732 0.002816 -0.556048 0.068890 0.549270 -0.175142 -0.578661 0.173925 0.028541 -0.107684 0.064552 0.769821 0.563952 -0.546311 0.521361 -0.653247 0.491634 -1.124597 -0.868921 0.310353 -0.351925 -0.416922 -0.120211 -0.043120 0.419047 -0.237238 0.215807 -0.057181 -0.209000 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/karatsuba.cpp__makeEqualLength(std::__cxx11::basic_string, std::allocator >&, std::__cxx11::basic_string, std::allocator >&) = -2.437446 -2.139396 0.267197 -5.049113 4.195475 1.814015 2.267348 -1.438693 -5.658552 -2.043744 1.649465 -5.106495 -2.186894 7.146085 -1.875546 4.985057 8.805664 2.026429 -1.784667 -1.273075 6.710970 -2.627017 8.058921 6.893031 -5.943242 -0.736080 0.209666 2.976777 1.512361 2.223563 0.393138 -3.897260 3.283762 -5.705868 0.182575 -4.755535 1.728341 2.480925 3.564191 -8.832560 1.404428 0.872178 0.988727 -1.513474 -1.974453 1.202947 4.207806 5.710862 -2.687357 2.237965 5.120739 0.514017 -0.834475 2.042085 0.496102 0.969097 -0.814423 -0.043033 -3.406019 -1.707387 -0.817815 -3.616736 1.628316 5.111288 7.607489 -0.048305 0.594719 3.835561 0.304981 1.660273 3.558823 0.645443 0.397115 -1.318144 4.098376 -7.365208 -2.484305 -12.668823 -1.897210 -14.357623 -3.879910 -1.437973 4.912322 -0.459372 3.217572 -0.617054 5.716477 -0.299540 -0.566076 5.758671 6.867522 -5.349231 -3.137603 -5.317175 -3.307632 2.607698 -4.008420 -0.047985 3.885102 0.191243 -5.061642 -4.065392 2.429986 2.310195 -1.865380 -5.444925 0.679294 5.504833 -5.072671 -4.991996 -2.477778 3.667792 -1.377999 -8.689112 0.511917 -3.826052 3.288802 0.833350 -1.204157 -4.436940 0.580286 3.357217 -2.096880 -3.506435 -1.533562 4.942449 2.754566 2.105692 1.344297 0.627013 0.591757 8.228994 3.720638 -3.699967 -0.622834 0.636581 -2.524056 2.004167 -5.113517 -3.197271 4.357094 -5.697255 0.071326 3.333172 -3.547657 -2.017285 5.636655 0.941761 2.941876 15.914732 0.789533 5.941264 4.207229 -5.692775 3.609561 -1.552497 0.449702 2.471363 4.001260 -0.552268 -7.281379 -5.803285 2.601808 5.427439 4.778001 -6.321003 -3.968583 -1.756710 0.648919 -0.105759 -1.126804 2.434735 -0.301688 -4.716055 -0.793973 3.989618 10.378143 -3.039742 -1.435590 3.252395 4.309898 -3.284720 -7.797640 -2.914963 -5.062926 0.590021 0.767243 0.168398 3.337961 7.864414 -11.156455 5.149532 -1.347858 0.581526 3.115309 1.435296 -5.060231 -9.312766 -0.434705 3.854233 6.738431 -0.690698 2.386904 2.481902 -5.303915 0.119807 0.413708 0.878335 -0.884202 2.105753 -0.997926 -3.060860 -3.750810 1.101654 -2.616748 -2.017696 0.362640 3.334255 3.429101 -8.654055 5.513460 -1.586420 -2.451440 2.104901 -0.914220 6.269924 -5.880540 -6.440667 3.938227 -0.576291 -2.291658 -3.716997 1.469852 4.163697 -0.047047 0.269185 -1.918434 -7.268654 4.506877 -2.122290 4.262078 2.352591 -0.162631 5.045373 -0.429746 -2.665099 -6.029309 -3.300552 -0.766415 -1.103664 -5.130759 -2.468453 -0.918157 5.832209 5.306639 0.635006 -3.413105 0.086404 6.863694 -6.853744 -2.193984 5.300223 3.199243 -4.470115 2.244450 5.960134 -7.466036 -1.258123 -3.131411 0.842377 -0.509659 -4.830924 3.145726 -0.593750 3.105050 0.077087 1.280865 -0.163224 2.679891 2.517635 0.961903 -0.820134 8.220832 7.460664 -3.453778 -1.917121 -5.474634 1.851437 -7.698041 -6.885884 2.042682 1.274238 -4.121405 2.085245 1.662222 5.898313 0.553215 0.439033 -1.707059 -0.549548 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char, std::__cxx11::basic_string, std::allocator > const&) = -0.778023 0.351784 1.534182 -2.062791 3.269425 1.138884 1.369576 -0.285638 -1.781083 -1.527937 0.008959 -1.476418 -2.521333 3.037068 -1.359135 1.408154 3.901921 0.661614 -0.094874 -1.122894 3.225487 -2.166200 4.422993 2.815129 -4.029821 -0.082810 0.873093 2.073774 0.718269 3.186315 -0.804463 -1.867953 1.846112 -1.802753 1.579890 -2.416017 0.806504 0.011088 -0.405599 -4.225260 -0.008165 0.327160 -0.634537 0.256571 -0.486586 2.574251 3.258744 2.723130 -1.964719 1.226122 2.427675 0.005644 0.181034 1.422295 0.108166 0.280786 0.929729 0.568612 -2.196553 -0.478592 -1.208928 -3.680616 0.835541 2.607237 4.080006 -0.452574 0.737514 1.539089 -1.067231 0.950402 1.318265 0.973096 1.102539 -0.225725 3.070446 -2.828383 -0.761928 -5.678313 -1.550933 -8.241437 -2.101983 -2.860258 1.549677 -0.637483 1.854696 -0.436793 3.514151 0.841453 0.702087 2.129244 3.663273 -2.902460 -1.122306 -3.007927 -1.438071 0.575964 -2.162330 -0.394595 2.070943 -0.338278 -2.366308 -1.944103 1.326223 0.520230 -0.759292 -2.135248 -1.159102 3.136757 -3.607813 -1.940887 -3.210362 0.229360 -0.988756 -4.819456 0.781907 -1.096037 2.945401 0.415537 0.749360 -1.577946 0.660364 3.098117 -0.903624 -1.685649 -0.534471 3.678845 1.649642 0.496617 1.053088 0.375506 -0.402172 2.900103 4.353747 -0.632126 -1.682380 0.367774 -1.863411 0.430604 -2.058876 -0.400220 2.664389 -2.992825 -0.082362 1.712471 -1.187780 -0.720596 2.162168 -0.797520 2.642503 6.977724 -0.435604 2.182037 0.831966 -3.367015 1.983181 -0.031598 0.081928 1.730592 2.394578 0.117147 -3.481899 -2.737510 1.309349 2.252563 1.769397 -4.038794 -1.541503 -1.512480 0.550497 -0.278031 -1.011737 1.752823 -0.475697 -2.139238 -0.177994 0.695325 4.942085 -2.129022 -3.083035 2.030609 0.860110 -1.867831 -3.768712 -1.570160 -1.346575 -0.168242 0.222617 -0.455422 0.954726 3.746499 -6.189578 2.630128 -1.030178 -0.653307 2.357793 -0.367924 -0.747851 -4.308900 0.317023 2.466863 2.659211 0.514494 -0.229352 0.484998 -2.608552 0.908764 -0.090730 1.631661 -0.481835 1.204708 -0.360682 -2.371732 -2.873155 -1.544738 -0.400676 -0.441847 -0.165616 0.966530 0.691373 -6.473400 2.987235 -1.458507 -1.599811 1.423308 0.540751 2.507746 -2.560124 -3.874537 1.657453 -0.804184 -2.168547 -2.999052 0.768793 1.828999 0.046198 -0.637560 -1.452663 -4.444428 2.139009 -1.303415 1.516292 1.376037 1.503475 4.645622 1.006814 -2.339394 -3.554232 -1.181159 0.481221 -1.368390 -1.850945 -1.034982 -0.490147 2.685608 3.667600 0.426354 0.248122 -0.543112 3.972831 -3.727474 -1.775027 3.447431 1.991308 -1.451422 1.778003 3.373848 -2.729305 -2.456512 -1.516545 -0.069977 0.113821 -2.492012 1.223327 -2.066757 0.900013 0.904037 1.010064 -1.306260 1.263216 0.383086 0.635463 -1.688905 4.331067 5.511791 -3.374208 -0.138551 -1.899645 1.428707 -4.232859 -2.785993 0.503930 0.389173 -0.162332 1.664076 1.084481 2.474796 0.214461 -0.898842 -0.353333 -1.427954 +PE-benchmarks/karatsuba.cpp__addBitStrings(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.496148 -2.511502 0.395327 -6.651986 7.448687 3.321818 3.262507 -2.841176 -7.417195 -2.111243 2.566531 -7.219441 -3.361006 9.517588 -2.750937 7.862774 11.183602 1.518816 -3.181099 -1.262439 9.049245 -3.044327 12.042432 8.064567 -8.698884 -0.360262 -1.508865 4.049902 2.152027 3.590581 0.393940 -3.701790 4.960848 -8.790836 -0.336147 -5.381043 2.098442 2.017150 5.134232 -11.614672 1.684625 1.767217 -0.055037 -1.237170 -2.043604 3.996254 6.205622 7.378037 -3.389616 4.330959 6.341390 -0.421906 -0.104185 3.059611 -0.246037 0.924246 0.225411 0.100343 -6.022186 -3.111809 -1.363449 -5.217564 2.375224 6.849545 10.826935 -0.728495 0.524887 6.675685 0.908283 2.285343 5.354511 1.646671 -0.119714 -1.249583 6.176042 -8.729000 -2.188098 -13.831852 -3.592923 -18.308349 -5.755534 -2.298167 6.828099 -0.585113 4.635870 -1.167965 8.094934 0.417617 -0.869127 8.036288 9.047963 -7.544504 -4.053328 -7.343056 -3.694582 2.456645 -5.413345 -0.947920 6.344799 0.742155 -7.170681 -4.061644 2.939307 2.806403 -2.514342 -6.696650 0.406784 7.373953 -7.766428 -7.219162 -2.966958 4.909502 -2.702333 -13.192055 0.574491 -3.138799 5.494311 1.205633 0.336736 -5.419559 0.961101 5.085980 -2.622103 -4.204181 -1.953596 7.288572 4.614515 3.465415 2.593779 2.299670 0.831177 11.745159 5.576936 -3.845550 -1.587090 0.496084 -2.271396 3.741873 -4.956053 -4.015950 4.746350 -8.492620 0.371527 5.024723 -4.177987 -1.832511 5.759236 1.935342 3.455597 19.374462 0.645610 9.442062 5.429437 -8.233360 3.326409 -2.542819 0.646735 3.267109 4.606609 -0.492390 -9.327748 -7.649294 3.993975 6.955615 6.042947 -9.912408 -3.250222 -2.094847 0.581467 -0.115955 -1.995258 4.250684 1.042940 -6.937361 -0.686385 4.236928 16.002652 -4.527156 -2.397078 5.549765 3.825648 -4.630796 -10.159548 -4.468422 -5.717355 0.090287 0.916738 0.549768 3.309503 10.649726 -12.841307 6.760969 -1.757020 0.124861 5.100008 1.379102 -7.248493 -11.353388 -2.528628 5.242148 8.381896 -1.359878 1.418427 2.997795 -6.720247 1.206350 0.899444 0.549315 -0.132386 2.927658 -0.749256 -3.857942 -4.886665 1.092219 -2.136212 -0.629705 0.445082 4.310941 3.386940 -11.816131 7.060607 -2.607004 -4.451643 2.832954 0.130364 9.206731 -6.749938 -8.174576 4.983891 -1.913948 -4.927132 -6.718261 1.981551 4.469134 1.451032 0.374024 -3.621799 -8.825969 5.572617 -3.421816 4.917833 3.811249 -0.052970 8.058594 -0.510765 -4.690775 -7.871290 -5.772175 -0.971330 -1.311092 -6.781545 -1.098785 -1.577793 8.008088 6.584558 0.863491 -4.721857 -0.273785 9.072707 -9.059900 -3.436173 7.867740 4.416863 -7.414858 3.493486 8.631537 -8.460931 -1.130685 -3.498675 0.506248 -1.975491 -5.357167 4.480182 -0.090037 3.412216 -0.086203 2.333873 -0.050846 3.200809 2.019749 1.213467 -2.134074 12.076786 11.559959 -5.774752 -2.407384 -7.076460 3.709026 -10.217586 -8.975871 3.243889 1.428178 -4.831124 3.277193 2.801174 8.063085 1.326676 -2.508419 -2.575358 -0.893493 +PE-benchmarks/karatsuba.cpp__multiplyiSingleBit(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.193283 -0.246461 -0.213160 -0.939109 0.462725 0.338495 0.333850 -0.724079 -0.836003 -0.331754 0.688971 -1.449781 -0.272316 0.868127 -0.412441 0.651831 0.984356 -0.141968 -0.674809 -0.340363 0.425233 0.557683 1.313536 1.066001 -0.736950 0.074289 -0.544245 0.183659 0.438854 -0.500085 0.660470 -0.300021 0.581790 -0.451492 -0.270235 0.254761 -0.033891 -0.049751 0.542287 -0.934933 0.187021 0.082703 0.313926 -0.175502 -0.177747 0.295782 0.714552 0.727553 0.377431 0.281624 0.584233 0.196085 0.103600 0.181119 0.302367 -0.432543 0.097489 -1.081397 -0.340275 -0.488935 0.017473 0.060311 -0.218070 0.927680 0.751515 0.210566 -0.220095 0.548759 0.480339 0.297108 0.561681 0.294253 -0.301613 0.388689 0.020712 -0.913261 0.234734 -0.512882 -0.166240 -1.477976 -0.648497 0.283095 1.056894 0.488290 0.205280 0.019279 0.810967 0.207386 -0.466118 0.683962 0.984691 -0.519687 -0.437297 -0.121164 -0.029326 0.198085 -0.329300 0.519589 0.258012 0.704792 -0.814625 0.575894 0.056698 0.122679 -0.368731 -0.273108 0.433599 0.497027 -0.666482 -0.089540 0.463193 0.971027 0.253325 -1.321139 -0.113858 -0.368682 0.459023 -0.108391 -0.388856 -0.333075 0.042392 -0.000533 -0.261950 0.100694 -1.101840 0.168479 0.516817 0.669716 -0.017587 0.898729 0.582121 1.398681 -0.468026 -0.492706 0.296887 -0.298302 0.391677 0.670680 0.101668 -0.397238 -0.032203 -0.764439 0.444033 0.432073 -0.407871 -0.476507 -0.484482 0.532006 -0.079113 1.804862 -0.005117 1.237738 0.931137 -0.598647 -0.525548 -0.816851 0.114104 0.024867 0.138397 -0.091047 -0.306595 -0.821193 0.725738 1.001526 0.499991 -0.619768 0.573345 0.330932 -0.288124 -0.297948 0.074621 0.116388 0.179975 -0.376061 -0.219724 0.981893 1.290523 -0.026728 0.639009 0.295868 0.190337 0.358435 -0.027090 -0.322916 0.155321 0.401436 0.448710 0.552475 0.497867 0.990430 -0.574392 0.728643 0.213258 0.392819 0.454944 0.449531 -0.977591 -0.743591 -0.463346 0.423252 0.546440 -0.625746 -0.036044 0.354159 -0.727824 -0.149055 0.284870 -0.248549 -0.176156 0.155026 0.315521 -0.040122 -0.258933 0.326110 -0.134613 0.583784 -0.140364 0.693967 0.256071 -0.872385 0.773756 0.056821 -0.546371 -0.310414 -0.666290 1.014395 -0.676012 -0.299986 0.250374 -0.502538 -0.888436 -0.192061 0.015696 0.216721 -0.149275 0.703068 -0.620202 0.222632 0.939536 -0.311953 0.758927 0.431579 -0.112980 0.350802 -0.967089 -0.210936 -0.108275 -1.058056 0.018061 0.105646 -0.844117 1.029853 -0.215347 0.596470 0.338197 -0.092527 -1.112542 0.694950 0.339938 -0.802059 -0.374683 0.333681 0.273251 -0.976015 0.561662 0.475861 -0.711105 0.462483 -0.500686 -0.397126 -0.562909 -0.620197 0.591891 0.527452 0.617515 -0.182853 0.153646 0.164105 0.512756 -0.019211 0.189205 0.518367 0.896090 0.559429 0.056906 -0.404307 -1.107246 0.540990 -0.814070 -1.214758 0.680280 0.245782 -0.477531 -0.142303 -0.442536 0.860112 0.434672 -0.675307 -0.631128 0.847526 +PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -11.988984 -11.894621 6.089411 -26.305701 31.213030 11.071769 14.760877 -1.542518 -27.244268 -7.720075 7.387474 -17.189117 -21.702848 35.909237 -8.425891 29.968315 28.154866 -1.354313 -13.120299 -7.955885 41.074198 -18.515698 38.332422 12.943681 -36.968284 -2.694329 -8.153796 25.413475 7.108651 23.555933 0.787029 -5.618320 8.477373 -21.936843 10.558069 -13.934398 16.539914 11.153638 0.401008 -37.612083 2.034550 21.063193 6.142527 -4.049117 -11.325294 15.403926 13.605258 33.017937 -15.914941 8.837271 27.560253 -9.935360 0.382674 12.121929 -3.900608 1.782917 -0.270839 -4.105215 -27.768522 -12.596927 -1.267543 -32.386226 15.453495 22.430438 38.564644 -11.692885 6.387117 31.100477 -4.352377 13.070906 18.594930 4.866642 -5.704824 -17.053946 31.990777 -21.021106 -11.716535 -34.181216 -6.643062 -63.455514 -23.080603 -17.571764 26.812697 12.200938 18.202958 -12.850111 39.102646 2.019715 -8.493681 30.641935 26.837870 -25.914759 -12.393422 -42.529509 -14.761805 8.512756 -25.448237 -16.679700 25.004282 7.392863 -24.181022 -3.497355 4.812322 9.341956 -8.249369 -24.353723 -13.117385 31.954557 -30.797973 -26.136337 -15.706811 25.854114 -8.372895 -45.499689 7.626491 -10.278789 9.228620 -3.482266 18.608201 -5.972479 1.968477 23.290881 -10.258205 -14.689728 -20.396583 32.575633 16.429966 1.708186 16.198853 12.677650 -4.669782 27.873894 29.016369 -10.516803 -23.520999 10.519102 -8.548737 16.019442 -13.044165 -8.399950 18.356003 -35.139425 -4.056622 11.105107 -6.026142 -3.278804 0.959636 5.904617 20.872350 56.787642 6.489465 24.316546 9.229075 -23.994115 27.598102 -1.555099 0.223058 19.226725 14.053100 -16.348563 -26.230782 -30.654013 16.496907 21.096974 20.020406 -28.846102 -11.441765 -10.687764 3.855394 -3.615763 -10.646440 25.121031 1.694428 -20.001225 -4.045327 3.153145 49.702858 -16.762707 -11.899075 33.599154 13.774227 -28.044859 -37.390225 -19.915595 -15.607931 -11.946510 -1.785609 -0.830561 14.081576 38.986702 -35.164270 26.497149 -2.472315 -3.792496 21.298813 -14.608450 -11.229146 -47.156055 -12.957457 16.806184 32.268982 -11.357254 -2.652803 6.790747 -25.895799 14.980432 0.519550 0.679605 4.641479 9.636162 -17.291009 -7.838625 -21.273323 -7.424997 -17.494915 5.834373 2.123991 7.252253 11.982641 -34.655089 26.314324 -20.856253 -13.470601 15.177453 12.432251 29.461291 -17.296338 -31.605127 21.445187 3.008178 -24.681578 -33.880124 11.093603 20.276323 -0.060131 -14.024798 -8.611761 -37.503563 22.736184 -15.377112 15.015071 7.885686 2.782047 29.088246 21.762348 -23.973811 -25.762013 -23.032230 -8.539509 -9.090040 -18.595668 -3.659303 -0.655943 29.457756 15.092426 8.337043 -5.252854 -2.881575 41.167334 -23.689114 -23.563986 31.263898 -3.746136 -21.469156 17.834955 37.577738 -27.709143 -13.810303 -23.566143 10.216431 -5.324470 -21.120462 13.845233 -1.849660 12.365934 3.257140 12.115377 -5.497883 10.041444 12.073603 -2.141662 -24.538555 60.317241 32.811176 -25.528060 -6.920277 -22.562514 13.558558 -30.281158 -19.989694 5.039679 10.596148 -5.105714 21.116390 17.496334 28.128195 4.193778 -12.986231 -5.798051 -18.542527 +PE-benchmarks/karatsuba.cpp__main = -30.337966 -14.230524 25.029445 -57.247739 83.929685 31.231683 37.606774 0.220149 -59.312159 -25.939450 7.782386 -41.964810 -67.424549 92.782856 -21.937978 68.546059 80.934409 2.524872 -23.918041 -18.590562 99.889187 -54.386650 101.713492 37.363983 -95.774792 -6.639133 -3.804575 61.012743 10.696058 72.894118 -11.129043 -29.553901 29.219923 -52.337300 33.012492 -42.198856 39.256948 17.835756 -6.975576 -102.074483 2.351834 48.323940 4.302946 -10.025175 -27.296454 46.417663 51.731696 83.256869 -43.413472 20.475430 63.220278 -22.686090 0.886282 33.282214 -6.712740 8.504011 3.317699 -3.652706 -75.113821 -26.611011 -10.103352 -94.149328 31.220887 58.815760 101.707513 -28.217702 17.893403 74.724247 -22.822319 31.200232 36.690189 14.055112 3.119109 -32.842577 84.067687 -52.590679 -33.928238 -95.511763 -26.516415 -177.844725 -60.665515 -59.002198 56.620572 20.789266 47.996537 -31.537904 102.638735 7.951911 -8.425579 70.442981 84.132948 -75.603889 -33.551386 -110.567325 -33.028400 20.853894 -67.492923 -40.082268 66.244131 1.745011 -64.320588 -27.013718 18.675442 22.724667 -21.252027 -62.260059 -37.039289 86.281409 -84.051456 -67.898526 -63.898320 41.342031 -24.711341 -121.412886 22.252323 -15.266180 32.292490 2.214273 43.719217 -28.195914 12.086534 70.659021 -24.844352 -47.278509 -37.946792 92.851427 39.743486 0.600472 44.611588 28.021637 -8.394229 72.916300 95.238693 -21.817186 -61.241900 24.668123 -34.093948 30.327767 -37.700170 -20.160577 47.782938 -90.635286 -10.750169 36.778626 -21.526111 -6.099858 9.300196 1.388352 62.642794 147.329361 7.305198 54.654154 13.708383 -74.737028 76.089506 -6.426677 -9.079275 41.732028 43.969285 -23.725427 -73.301677 -76.078231 43.877602 57.644270 52.648675 -80.991635 -31.351858 -37.119915 15.575039 -13.327617 -24.671538 67.948332 2.285801 -53.778444 -10.443861 9.019683 132.626502 -55.220611 -52.583239 84.311832 29.859086 -62.783339 -102.906883 -48.886219 -39.432743 -31.662384 -4.333955 -8.752412 31.867641 102.727163 -104.124056 71.040029 -12.847859 -21.287249 59.801551 -36.572916 -23.161261 -117.281412 -20.503632 57.590834 82.789324 -13.924316 -5.941785 6.245566 -68.330735 34.611182 -0.415866 16.319157 9.778355 28.357826 -42.059808 -35.389995 -64.143785 -28.225073 -36.641805 1.027986 3.232919 17.567520 34.262047 -112.321844 79.245174 -51.140912 -33.580234 40.642638 33.004748 72.635481 -52.001256 -95.283182 55.090610 0.213149 -61.956766 -82.408647 25.210185 52.840683 3.355431 -38.938833 -20.653975 -109.308231 58.002795 -30.602697 38.609594 21.816390 21.365091 91.219257 58.662961 -68.262589 -70.467657 -55.377501 -13.289427 -31.596214 -44.806970 -19.757394 -3.705609 79.710746 55.654021 18.610722 -4.903108 -19.918391 104.059444 -73.153173 -56.912128 87.449539 4.835928 -50.222765 41.752624 99.476651 -69.130593 -50.058202 -57.540942 23.665831 -14.341186 -61.217206 23.912286 -26.649569 21.975942 21.150384 24.378615 -22.399997 24.742971 27.473046 -3.475728 -66.417046 145.912472 99.454453 -81.610327 -9.074390 -55.359726 36.747169 -88.918923 -57.024186 14.725674 25.413718 -8.309675 49.658620 48.815292 62.584815 2.406701 -31.725549 -13.643301 -57.076294 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.944690 0.419912 1.692729 -3.046449 4.226919 1.827091 1.199719 -0.670022 -2.011258 -1.176685 -0.268846 -1.941571 -2.301725 3.610730 -1.721653 2.111599 4.391711 0.378343 -0.260882 -0.883683 3.842159 -1.397348 4.838171 2.348111 -4.586349 -0.328837 1.183279 2.532356 0.792720 3.552883 -1.090200 -2.348374 1.599086 -2.093038 1.216415 -2.635335 1.301142 -0.037053 0.195851 -4.630594 0.289638 0.207208 -1.194735 0.101197 -0.637762 2.016105 3.590236 3.221954 -2.570425 0.870596 2.992874 0.800089 -0.301235 1.522543 -0.566511 0.450568 1.330336 0.332163 -2.420880 -1.054489 -0.991057 -3.092871 1.142732 3.023313 4.538081 -0.494202 0.814084 2.540184 -0.608561 0.852358 1.487903 0.834341 0.621216 0.262715 3.104816 -3.046919 -0.934026 -6.058519 -1.618537 -7.991142 -2.086833 -2.986616 0.976588 -0.519910 1.827282 -0.239866 3.891888 0.738471 0.943756 2.759860 4.066152 -3.176430 -1.266789 -4.196682 -2.132678 0.857892 -2.328302 -0.844798 1.862786 -0.049451 -2.437924 -2.455592 0.758486 0.733126 -0.924846 -2.534559 -1.055600 3.354427 -3.785560 -2.594818 -2.900320 1.030587 -1.554881 -5.586244 -0.225279 -1.111464 3.227682 -0.018753 1.503899 -2.433079 0.402856 3.740443 -1.216468 -1.716672 -0.390973 3.770740 2.352762 0.553026 1.122174 0.069149 -0.009746 3.626960 4.272331 -1.040624 -2.138085 0.421727 -1.693462 0.020102 -2.570470 -0.360736 2.230827 -3.581089 0.286991 2.922257 -1.374489 -0.706470 1.945172 -1.101744 3.135024 8.651739 -0.440707 2.314267 0.752971 -4.205201 1.650424 0.006145 -0.397326 1.548561 1.943121 0.465727 -3.901222 -3.131803 1.588597 2.265710 2.254204 -4.150068 -1.358741 -1.819688 0.198722 -0.106307 -1.513238 2.414726 -1.177080 -2.430220 -0.325985 0.984835 5.886522 -1.943223 -3.762174 2.767953 1.839388 -2.477079 -3.651618 -1.904245 -1.858077 -0.473358 0.932071 -0.565188 1.346744 4.446134 -7.124556 2.843196 -0.192523 -0.770523 2.268884 -0.594388 -1.000732 -4.067867 0.106162 3.154148 2.981680 -0.113740 0.262145 0.316535 -2.570061 1.197417 0.314517 1.576786 -0.114365 0.907406 -0.168750 -2.821951 -3.054920 -0.889045 -0.802153 -0.263304 -0.412736 1.065322 0.325306 -7.237683 3.707654 -1.812619 -1.429909 1.963490 -0.041779 3.427322 -3.092521 -4.178978 2.162852 -0.470698 -1.605352 -2.773340 1.141416 2.360154 0.489686 0.339907 -1.907981 -5.200456 1.415293 -1.331924 1.122653 1.531491 1.642562 4.344709 -0.024073 -2.082530 -4.118654 -1.849951 0.616529 -0.449683 -2.100318 -1.017821 -0.387633 3.349720 3.819993 -0.066451 -0.224704 -1.068874 3.828123 -3.965209 -1.523554 3.574295 1.673767 -2.638527 1.244686 3.706252 -2.870916 -2.495262 -1.504431 0.704698 -0.327697 -2.828121 1.047214 -1.842667 0.760852 1.295884 0.892791 -1.626232 1.437282 0.597904 0.650108 -1.823665 4.748521 5.577787 -3.362444 -0.106556 -2.181098 1.619877 -5.051522 -3.580903 1.017678 -0.569838 -0.283152 1.947154 1.081761 2.960698 -0.253670 0.152707 -0.002746 -1.859913 +PE-benchmarks/karatsuba.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::__str_concat, std::allocator > >(std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::allocator_type const&) = -1.307141 -0.576446 2.288517 -3.371562 3.660152 1.229349 1.539222 -0.689744 -3.096534 -1.013883 0.188277 -1.833917 -2.057082 4.467874 -1.802457 2.376029 5.754957 1.522530 -0.750387 -1.695390 4.697328 -3.107323 5.645286 4.241024 -5.225598 -0.379023 1.543296 3.084247 1.937586 3.613174 -1.622687 -1.346349 1.894487 -3.390072 1.690617 -4.226375 1.211152 0.731897 0.547956 -6.418218 0.414869 -0.341698 -0.560854 -0.095288 -0.587026 4.067091 3.599751 3.785822 -2.773439 1.738608 3.464388 -0.140733 -0.071971 1.474713 0.018921 1.210893 2.099826 2.210237 -2.530488 -0.598821 -1.068129 -4.201465 2.042745 3.727541 5.612039 -0.516581 0.815704 2.290664 0.093599 0.927094 2.092563 0.968496 0.613013 -0.310634 3.687808 -5.323599 -0.445556 -8.827836 -1.626216 -10.976427 -2.525634 -2.906583 2.233475 -2.373585 2.198857 -0.072368 4.620520 0.622718 0.669369 3.201341 4.541594 -4.035109 -1.649543 -4.041230 -2.589786 1.151117 -2.759770 -0.757393 3.315394 -0.227744 -3.123747 -3.121887 1.943361 1.300582 -1.271337 -2.452372 -0.932861 4.198877 -4.432213 -3.397973 -3.421099 0.775614 -1.671776 -6.348128 1.260830 -2.467339 4.731377 0.332323 0.582823 -2.864991 0.581417 4.203087 -1.321969 -2.081242 -0.630855 4.873362 2.179921 0.614630 0.934043 -0.160655 -0.539265 3.849691 5.374884 -1.854547 -1.834036 1.145203 -3.352409 0.274382 -3.737715 -1.177327 4.128367 -4.130079 -0.264157 2.328469 -2.045400 -0.601569 5.066335 -0.228913 3.185570 11.046047 -0.188609 3.193120 1.402246 -4.461399 2.716121 0.224595 0.326888 2.504822 3.141149 0.035425 -6.354782 -3.771001 1.278323 3.339078 2.833990 -5.649211 -2.938945 -2.277876 0.126211 0.441599 -1.242177 2.045063 -1.267544 -2.983988 -0.459662 0.856786 7.209062 -2.674106 -3.904067 2.047412 1.138898 -3.388446 -6.056225 -1.862715 -2.301480 -0.006365 -0.249243 -0.577228 1.984520 5.158709 -9.441935 3.787395 -1.731207 -0.884770 3.242643 -0.322694 -1.664288 -6.392625 0.076251 2.983192 4.282333 0.336448 -0.485107 1.556128 -3.609319 0.937675 -0.094504 1.893632 -0.755547 1.735218 0.094370 -3.166921 -3.177881 -0.870011 -0.525394 -1.014515 0.117244 1.618888 -0.270052 -8.554679 3.867566 -1.922411 -1.851722 2.466173 0.483803 2.994091 -3.970454 -4.946612 2.315967 0.317643 -1.596462 -4.275791 0.785658 3.115330 -0.087717 -0.453540 -2.330327 -6.647779 2.078469 -2.596912 2.098726 1.805783 0.907165 5.690955 0.769510 -2.192908 -5.228499 -0.958718 -0.265414 -1.090412 -2.427599 -1.881958 -0.648123 3.910521 4.618262 0.188878 0.341056 -0.458068 5.487970 -4.886983 -2.205494 3.864005 2.740041 -2.263081 1.974591 4.158524 -4.552789 -2.504176 -1.786013 -0.672585 0.258934 -2.720302 2.335832 -2.145952 1.461660 0.604512 1.415314 -1.117317 1.844527 0.850571 0.842929 -1.427981 5.977268 7.976883 -3.935039 -0.483181 -2.813981 2.106226 -5.652256 -3.669273 0.493583 0.579655 -0.994475 2.361240 1.723827 3.788076 0.478741 -0.931922 -0.183003 -1.585836 +PE-benchmarks/karatsuba.cpp__std::char_traits::length(char const*) = -0.096722 -0.045213 0.204765 -0.277349 0.182037 -0.060294 0.081948 -0.083201 -0.288270 -0.214539 0.091606 -0.286591 -0.172814 0.324777 -0.197587 0.090201 0.432303 0.138259 -0.066975 -0.216012 0.208055 -0.209370 0.446878 0.442908 -0.406809 -0.010111 0.094699 0.296655 0.236799 0.191505 0.007800 -0.164444 0.120905 -0.093997 0.120114 -0.267535 0.090564 0.079788 -0.008443 -0.511359 0.039391 -0.014510 0.105743 -0.000388 -0.016886 0.316994 0.264207 0.287020 -0.139102 0.198517 0.362074 0.096987 0.014978 0.079818 0.018305 -0.068402 0.248518 -0.097265 -0.147682 -0.001123 -0.006286 -0.343971 0.038885 0.343397 0.458152 -0.014877 0.051499 0.036609 0.020536 0.113561 0.203804 0.064308 -0.014122 0.071044 0.174263 -0.346001 0.079975 -0.735793 -0.065503 -0.959904 -0.212990 -0.155724 0.356918 0.027035 0.030658 0.116340 0.346152 0.121498 0.013729 0.221372 0.370789 -0.201987 -0.164343 -0.130021 -0.195898 0.204185 -0.239200 0.049109 0.080658 0.214210 -0.223537 -0.139192 0.185917 0.033321 -0.139697 -0.032816 -0.042303 0.248312 -0.465653 -0.112602 -0.208493 0.080003 0.067811 -0.476420 0.104333 -0.254164 0.399065 0.022522 -0.047768 -0.091381 0.013866 0.153857 -0.087880 0.019831 -0.393105 0.244930 0.095993 0.082269 0.021460 0.018513 0.064582 0.270423 0.149713 -0.229026 -0.090342 0.069401 -0.199083 0.047220 -0.295014 -0.105285 0.288597 -0.275142 0.125456 0.055223 -0.195964 -0.234847 0.183917 -0.029378 0.183742 0.670335 0.034321 0.278283 0.204750 -0.268159 0.053431 -0.057517 0.042115 0.187120 0.216149 0.003374 -0.144640 -0.288536 0.093140 0.318943 0.212673 -0.292335 -0.165872 -0.042755 0.006390 0.047372 0.013133 0.093134 -0.151714 -0.183920 -0.073819 0.149293 0.411462 -0.003034 -0.107453 0.043481 0.111836 -0.180226 -0.299978 -0.053658 -0.047225 0.103540 -0.007665 0.033724 0.165214 0.399068 -0.870327 0.301069 0.002725 0.065933 0.165200 -0.016248 -0.204466 -0.550638 0.073261 0.185138 0.318212 -0.017814 0.076468 0.196601 -0.316276 -0.029291 -0.001260 0.127424 -0.143785 0.131775 0.121774 -0.207880 -0.252010 -0.076832 -0.009458 0.012316 -0.058051 0.188265 0.082269 -0.722256 0.297119 -0.170421 -0.186049 0.019174 -0.072150 0.204790 -0.396789 -0.290060 0.085525 -0.087582 -0.237166 -0.298288 0.016060 0.189855 -0.157940 0.027775 -0.125107 -0.224554 0.189426 -0.207519 0.126750 0.139677 0.015755 0.319574 0.003620 -0.047019 -0.259577 0.092416 0.028839 -0.232718 -0.159655 0.165307 -0.054619 0.214941 0.394730 0.000000 -0.077798 0.178885 0.372993 -0.225689 -0.264347 0.195604 0.148281 -0.115828 0.300770 0.219456 -0.413800 -0.103842 -0.245007 -0.107693 0.054741 -0.228486 0.253455 -0.102066 0.167557 0.084033 0.100300 -0.138993 0.238611 0.032313 0.003074 -0.001002 0.445741 0.550241 -0.160661 0.081559 -0.321270 0.098058 -0.439212 -0.318371 0.023184 0.063264 -0.132596 0.118207 -0.076956 0.293369 0.087360 -0.010288 -0.109960 0.093829 +PE-benchmarks/karatsuba.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -1.533596 -0.188933 2.070476 -4.448228 5.174714 1.811431 1.646188 -0.597310 -3.243866 -1.806904 -0.126507 -2.859501 -2.943544 4.702638 -2.069150 3.075018 6.297585 0.853093 -0.872288 -1.408360 5.337265 -2.221914 6.487498 3.815006 -5.958630 -0.472085 1.378510 3.841798 1.403689 3.889753 -1.565659 -2.508836 1.996699 -3.096590 1.792116 -3.809600 1.838984 0.384651 0.436876 -6.479256 0.539118 0.255220 -0.967649 -0.085041 -1.107647 3.163708 4.387852 4.536904 -3.466550 1.033785 4.562273 0.762600 -0.470532 2.044075 -0.782227 0.748596 1.524815 0.660179 -3.018401 -1.606687 -1.011034 -4.435743 1.857609 4.038780 6.115844 -0.793316 0.906493 3.443399 0.008280 1.067687 2.459258 1.028611 0.707888 -0.560039 4.174598 -4.953836 -1.080873 -8.962505 -1.780991 -11.727424 -3.039106 -3.745751 2.117254 -1.058651 2.433758 -0.350272 5.640201 0.427712 1.017395 3.675555 5.073801 -4.505375 -1.914810 -5.637837 -2.833899 1.492185 -3.360231 -1.344629 3.027311 0.498910 -3.347958 -2.811032 1.425811 0.977363 -1.406005 -3.625778 -1.139409 4.553277 -4.925551 -3.524395 -4.022641 2.026300 -1.483401 -7.393903 0.452778 -2.123992 4.321246 -0.277654 1.427611 -3.117508 0.366892 4.445925 -1.832007 -2.034030 -1.334656 5.033172 3.041637 0.562854 1.649014 0.169569 -0.023841 4.978646 5.664532 -2.097587 -2.995241 1.018613 -2.857329 0.285633 -3.904844 -0.941036 3.818782 -5.023587 0.234651 3.399095 -2.123451 -0.992220 3.633554 -1.007319 3.956643 11.951805 -0.234793 3.301805 1.536310 -5.142162 2.867323 -0.161580 -0.308044 2.437838 2.880413 0.120083 -5.657157 -4.493210 2.115355 3.552625 3.299997 -5.727807 -2.118346 -2.072503 0.511285 -0.144752 -2.039809 3.175723 -1.255936 -3.120351 -0.623260 1.595107 7.955713 -2.322621 -4.176990 3.520316 2.658143 -3.572467 -5.663425 -2.663875 -2.902218 -0.535671 0.959037 -0.420837 2.173748 6.269885 -9.677430 3.839407 -0.612712 -0.650154 3.373769 -0.562713 -1.589369 -6.565079 -0.028215 3.881327 4.643687 -0.568705 0.521262 0.858252 -3.700302 1.272050 0.386126 2.009677 -0.313273 1.254204 -0.210369 -3.273636 -3.637295 -1.232123 -1.308848 -0.352426 -0.088416 1.716476 0.408836 -9.371288 4.971517 -2.557247 -1.953305 2.551834 -0.292036 4.603952 -4.381431 -5.396002 3.228607 -0.131979 -2.008161 -4.044928 1.603954 3.715034 0.041946 0.090349 -2.499431 -7.067443 2.598812 -1.955119 2.144029 1.891014 1.582129 5.666096 0.356059 -2.480476 -5.552136 -2.087647 -0.157435 -0.967751 -3.014247 -1.428898 -0.403998 4.506297 5.013331 -0.076512 -0.039064 -0.471306 5.384562 -5.609036 -2.297984 4.651064 2.652902 -3.413030 2.421393 4.981286 -4.679496 -3.270843 -2.509214 0.652339 -0.143000 -3.949050 1.954243 -2.315929 1.470900 1.763964 1.310239 -1.651017 2.186187 1.169803 0.794625 -2.369426 7.007043 7.872776 -3.887195 -0.383049 -3.500496 2.140796 -6.764878 -4.748907 1.297203 -0.137715 -1.012261 2.595044 1.848904 4.337018 -0.331295 0.044633 -0.473998 -2.134621 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.283003 0.165987 0.499465 -1.142342 1.220625 0.704424 0.075645 -0.123326 -0.679680 -0.324561 -0.372602 -0.592827 -0.567202 1.100454 -0.363173 0.615590 1.090408 -0.019016 -0.243929 -0.152621 1.103728 -0.073765 0.975556 0.241135 -1.121614 -0.065685 0.335288 0.906334 0.148267 1.195006 -0.288495 -0.853531 -0.095973 -0.157012 0.349332 -0.693630 0.474407 0.264768 -0.033366 -1.230488 0.161043 0.341356 -0.180475 -0.028582 -0.265902 -0.120132 0.840508 0.868136 -0.690255 -0.112404 0.991558 0.660838 -0.266290 0.331147 -0.262979 0.219090 0.417405 -0.353258 -0.484398 -0.329634 0.005623 -0.468980 0.288628 0.725874 1.080322 -0.180423 0.100241 0.748072 -0.037316 0.240894 0.263736 0.115364 -0.120998 0.006430 0.568156 -0.535017 -0.238678 -1.337223 0.096689 -1.578389 -0.408279 -0.769353 0.127992 0.573364 0.237025 -0.166495 1.201582 -0.166576 0.151835 0.813509 1.034833 -0.608865 -0.203220 -1.494019 -0.792068 0.382795 -0.527087 -0.615532 0.048852 0.399163 -0.387494 -0.633155 -0.084792 0.006652 -0.311727 -0.516148 -0.390198 0.945086 -1.065783 -0.540861 -0.557597 0.882321 -0.296454 -1.316286 -0.564752 -0.435001 0.236998 -0.374780 0.524091 -0.674490 0.053504 0.890499 -0.514342 -0.183680 -0.503277 0.813564 0.686005 -0.275125 0.200638 -0.081657 0.157274 0.832385 0.608394 -0.543158 -0.735297 0.385994 -0.108832 -0.319227 -0.841485 0.033877 0.174212 -0.992554 0.095620 0.882711 -0.291323 -0.121915 -0.182259 -0.585014 0.836058 2.567308 -0.122271 0.308539 0.025250 -0.971592 0.512206 0.269576 -0.411134 0.326076 0.147623 0.198522 -0.693673 -0.865762 0.518357 0.590953 0.667700 -0.566205 -0.242408 -0.487927 -0.183996 0.062285 -0.324050 0.685340 -0.621701 -0.378479 -0.295071 0.142681 1.517054 -0.103874 -0.938541 0.934253 0.927326 -0.902615 -0.548548 -0.472979 -0.711311 -0.325258 0.453462 -0.259347 0.663659 1.250429 -1.979051 0.819790 0.460199 -0.320302 0.377103 -0.489020 0.065271 -0.834925 -0.180259 0.950125 1.047042 -0.451753 0.374573 -0.171086 -0.714490 0.339546 0.281189 0.361181 -0.085868 0.065738 0.019564 -0.613376 -0.611479 -0.042574 -0.631768 0.050706 -0.304550 0.165281 0.028851 -1.740824 1.134855 -0.539278 0.117693 0.568086 -0.102046 0.966028 -0.740322 -0.922193 0.684452 0.302108 -0.219138 -0.330247 0.370305 0.941895 0.031899 0.360940 -0.485425 -1.386936 0.141659 -0.204835 0.182345 0.294987 0.403150 0.492204 0.043706 -0.270049 -0.883293 -0.602173 0.230685 0.155697 -0.303751 -0.077014 0.033039 0.844821 0.799839 0.006423 -0.265852 -0.344694 0.936783 -0.516429 -0.310484 0.718015 -0.296379 -0.935508 0.166993 0.921688 -0.662377 -0.717651 -0.709834 0.616399 -0.147067 -0.797058 0.172258 -0.326591 0.088183 0.669422 0.018782 -0.656607 0.531562 0.371473 -0.202031 -0.526709 1.472731 0.679297 -0.452805 0.269608 -0.669102 0.366745 -1.278334 -0.772667 0.086181 -0.420159 -0.142093 0.454790 0.067288 0.761949 -0.334072 0.811739 0.155777 -0.686819 +PE-benchmarks/karatsuba.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -0.800013 -1.205863 -0.334717 -1.701264 0.958250 0.211050 0.576901 -0.603213 -1.967820 -0.120094 0.477380 -1.303607 0.269704 2.256900 -0.185676 2.138912 2.450144 0.758407 -0.720178 -0.210836 2.072385 -1.154460 1.733366 1.660200 -1.135942 -0.157327 0.170370 0.779462 0.192171 0.707091 0.021092 -0.838565 0.425005 -2.202273 -0.121109 -1.603205 0.300069 1.389492 1.824107 -2.583433 0.687889 0.475029 1.338253 -0.721505 -0.762810 -0.838305 0.512753 1.559441 -0.671198 0.778581 1.292870 -0.128053 -0.220680 0.451540 0.575707 1.063487 0.023049 0.366975 -0.847133 -0.488587 -0.170656 -0.324979 1.034688 1.186570 1.829877 -0.116817 -0.027840 1.245998 0.452746 0.549711 1.151401 0.029768 -1.098581 -0.951487 0.830795 -2.745033 -0.383930 -3.768409 -0.140460 -3.622148 -0.994013 0.420453 1.279026 -0.219658 1.173413 0.486028 1.477928 -0.732078 -0.482695 1.232306 1.506924 -1.245604 -0.826294 -1.226808 -1.315285 0.781151 -0.734927 -0.604173 1.716859 0.098616 -1.328166 -0.999113 0.934270 1.050823 -0.485502 -1.525207 0.569855 1.511167 -1.151960 -2.101849 0.051063 1.521844 -0.844946 -2.119824 0.178576 -1.330094 -0.000809 0.114870 -0.777839 -1.791742 0.271470 0.735923 -0.730139 -1.060969 -0.006252 0.935582 0.558063 0.677589 0.318890 -0.224225 -0.091525 2.433593 0.839449 -1.446590 0.247741 0.478565 -0.559837 0.599163 -1.356629 -1.543510 0.520053 -1.852313 0.051204 0.857708 -1.084945 -0.213516 2.009724 0.775761 0.406845 4.668021 0.203626 1.815984 1.454278 -1.403789 1.060946 -0.098201 0.233334 0.624237 1.137599 -0.440433 -1.813869 -1.608454 0.644924 1.560839 1.577266 -1.337756 -2.161040 -0.598238 -0.042485 0.824986 -0.319309 0.351424 -0.042243 -1.494439 -0.260165 0.723984 2.705160 -0.729083 -0.513984 0.901004 1.591983 -1.540121 -2.667033 -0.817571 -2.928440 0.204755 -0.472150 -0.233824 1.044273 2.119411 -3.421951 1.651228 -0.542928 0.110543 1.262138 0.560129 -1.521222 -3.636296 -0.763847 0.736699 2.295649 -0.919891 0.768525 0.965078 -1.373621 0.001585 -0.067860 -0.189820 -0.419929 0.662138 -0.642940 -0.725066 -0.415659 1.123901 -0.776610 -1.090124 0.387794 0.949506 1.224714 -1.535662 1.190290 -0.174489 -0.405335 1.195356 0.145512 1.584722 -1.327945 -1.515166 1.119099 0.474180 0.293386 -0.647152 0.347116 1.367883 0.053121 -0.088224 -0.212738 -1.512056 0.647453 -0.906557 1.408994 0.625657 -0.735359 0.644551 -0.177566 -0.539151 -1.385564 -0.257654 -1.252094 -0.235234 -1.192175 -1.767464 -0.303075 1.788429 0.989164 0.564940 -0.963772 -0.045630 1.971189 -1.517598 -0.115780 1.370501 -0.223115 -1.433988 0.173079 1.729796 -2.161253 0.164277 -0.722326 0.481065 -0.172110 -0.891770 1.140951 0.452580 0.848113 -0.544701 -0.003681 0.364994 0.647016 1.176765 0.333944 -0.042976 2.089222 0.914477 -0.533710 -0.896011 -1.339806 0.050952 -1.827236 -1.393698 0.332468 0.852526 -1.804052 0.563143 0.609100 1.750143 0.037358 0.566947 -0.187768 -0.251780 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isadjacent(char, char) = -0.369437 -0.563278 -0.163139 -0.821604 0.303435 0.335728 0.317466 -0.813796 -0.915862 -0.144614 0.583565 -0.973501 0.054241 0.909105 -0.382786 1.023550 1.028706 0.191483 -0.675429 -0.316951 0.807995 -0.006047 1.230332 1.044607 -0.616422 -0.028958 -0.156169 0.476693 0.585059 -0.080817 0.291838 0.028346 0.554664 -1.027424 -0.256531 -0.345426 0.031702 0.405281 0.843764 -1.011306 0.227957 -0.037731 0.511064 -0.186381 -0.236258 -0.103279 0.298755 0.743791 0.323735 0.454502 0.579817 -0.003368 0.158049 0.227349 0.437822 0.243193 0.432181 -0.594777 -0.256419 -0.474927 -0.117817 -0.172898 0.173903 0.807485 0.859066 0.099438 -0.118234 0.605079 0.368599 0.286009 0.708432 0.245914 -0.760236 0.054721 0.146602 -1.497588 0.447821 -0.858205 -0.221750 -1.245559 -0.486932 0.293354 0.606635 0.052825 0.651892 0.487411 0.797323 -0.127320 -0.542189 0.334218 0.764852 -0.768417 -0.377218 -0.059057 -0.080313 0.145275 -0.466062 0.143799 0.469670 0.511335 -0.683247 0.105895 0.439489 0.482624 -0.342528 -0.387343 0.279468 0.674005 -0.765891 -0.768644 0.282013 0.682003 -0.280222 -1.164996 -0.081929 -0.636793 0.522158 -0.071161 -0.429384 -0.793229 0.184719 0.367475 -0.064552 -0.390370 -0.259564 0.155147 0.429737 0.510987 -0.082934 0.481951 0.130783 1.547027 0.113980 -0.514305 0.253048 -0.041587 -0.114574 0.635392 -0.189107 -0.572587 -0.090961 -0.862083 0.067721 0.645539 -0.447120 -0.195699 0.481544 0.660308 -0.035755 2.219144 0.070853 1.060926 1.025409 -0.602817 -0.319262 -0.513524 0.341223 0.259338 0.225227 -0.149907 -0.987949 -0.847478 0.534195 0.900720 0.570056 -0.800498 -0.225443 -0.030637 0.033987 0.126466 -0.089065 0.135410 0.132874 -0.609193 -0.167885 0.534021 1.334600 -0.427461 0.219193 0.371836 -0.124879 -0.398899 -0.948604 -0.448005 -0.472672 0.306945 -0.008674 0.313600 0.304972 0.975377 -0.670566 0.798523 -0.178077 0.152057 0.899123 0.380020 -0.831515 -1.019371 -0.538685 0.239784 0.695480 -0.626865 0.021101 0.591008 -0.832036 -0.100114 0.062618 -0.122261 -0.211130 0.313610 0.319825 -0.163637 -0.262335 0.547532 0.091107 -0.063541 0.153685 0.713099 0.166723 -0.707722 0.569959 0.054510 -0.484901 0.338331 -0.181937 0.895342 -0.688968 -0.467976 0.501417 -0.098790 -0.318573 -0.349391 0.142204 0.456108 0.098706 0.263320 -0.575232 0.002333 0.491717 -0.514899 0.696364 0.334094 -0.233771 0.301823 -0.777540 -0.147722 -0.456097 -0.229502 -0.667917 -0.010851 -0.686089 -0.274257 -0.114873 0.842392 0.487847 0.132585 -0.642073 0.490503 0.749175 -1.096386 -0.257305 0.441020 0.617271 -0.896455 0.340140 0.534915 -0.896728 0.268246 -0.172992 -0.497557 -0.351651 -0.461929 0.821953 0.357481 0.674915 -0.273796 0.183836 0.264406 0.430881 0.270677 0.259005 0.355915 0.929374 0.750757 0.043850 -0.623739 -0.881490 0.294772 -0.822137 -0.873698 0.496983 0.492176 -0.729819 0.082676 0.037256 1.056786 0.541101 -0.520151 -0.322146 0.276287 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLenUtil(char (*) [3], int, int, char) = -4.117290 -3.896367 -0.728427 -8.909500 6.325439 8.702653 3.315682 -6.563923 -9.966407 -0.499492 4.772643 -10.210259 -1.607753 11.387482 -3.851688 9.991266 12.857707 1.510365 -6.426889 -0.437755 10.765465 0.498304 14.014053 12.019812 -8.465817 -0.602949 -0.672136 4.828673 2.944706 2.476194 -0.271058 -3.788596 5.355614 -11.396515 -4.411993 -5.606354 1.208427 2.858280 8.925842 -12.766225 2.472531 -0.114794 -1.171353 -2.751706 -3.309701 -1.111056 6.933935 8.999910 -0.784165 3.383047 7.232629 0.924001 -1.056793 2.527653 2.644927 2.190564 1.375333 -0.175173 -3.332462 -5.805486 -1.093637 -2.384237 1.635833 9.282947 10.783353 1.555713 -0.607825 6.629942 1.601065 1.792370 5.823589 2.130858 -3.426717 0.886844 4.229826 -12.035768 0.525642 -12.263492 -2.630641 -12.963863 -5.226293 1.402685 6.370608 0.868986 7.083931 0.838463 9.610479 -2.307824 -3.823526 9.149909 10.865764 -10.204741 -4.337813 -5.100436 -5.217675 2.316912 -5.422612 1.573868 2.764125 1.732508 -8.463414 -4.377999 2.255326 5.453969 -3.813974 -7.007630 2.352504 7.619326 -8.248444 -8.070015 0.989013 7.278885 -3.286399 -15.226178 -5.931519 -6.287101 6.466014 -0.187212 -3.964265 -9.955259 1.618314 5.496748 -1.854783 -6.171916 0.493024 4.701155 5.716083 4.874632 0.598532 1.316028 2.729055 16.597953 3.382664 -5.603654 1.549140 -0.981507 -1.743349 5.412865 -4.386330 -4.455193 0.021442 -10.076615 1.603053 9.056340 -5.493663 -1.584181 6.007616 4.851353 1.543869 31.585434 0.823499 11.951919 9.103097 -9.898984 1.134325 -4.965731 0.871635 3.319927 3.023697 0.056085 -14.833930 -8.952355 6.401511 10.322005 7.357211 -10.695040 -1.450731 -0.759158 -0.006233 -0.391155 -0.600365 2.413416 1.011726 -7.653573 -2.214747 8.738092 18.458108 -5.349363 -2.788924 6.214216 1.780273 -4.187969 -9.923307 -4.806729 -5.657478 2.213700 4.471453 0.866478 5.346603 12.323107 -11.845589 8.272113 -1.911735 -0.407600 7.478993 4.234258 -9.981280 -6.281280 -3.280379 5.725440 9.265697 -2.682151 0.404030 4.299938 -9.069372 -0.939431 2.833908 -0.919414 -2.141280 4.516144 2.637265 -5.033536 -5.269737 2.964002 -1.953301 -2.032459 -0.825647 7.074553 -1.938643 -12.057257 9.080860 1.145977 -4.450984 2.869485 -3.212393 10.309391 -8.702070 -9.784651 7.439749 -0.824225 -3.057107 -3.219257 1.774563 5.832266 5.038465 3.317288 -6.997203 -8.968519 6.261173 -3.185125 8.339311 4.043067 -0.745002 5.606091 -5.411734 -2.624063 -9.160538 -6.344429 0.057774 1.304294 -9.754890 -4.655775 -2.273832 10.213811 6.393872 0.408014 -7.832130 0.274271 9.709151 -9.771773 -2.336561 6.153348 7.256851 -11.231330 1.523857 7.734978 -9.697314 1.352332 -3.352149 -2.008711 -4.471139 -7.790912 6.725915 2.544433 6.683651 -0.388385 2.236216 1.135962 3.882618 3.156132 2.948697 2.466963 11.818970 9.024222 -2.666361 -4.386982 -10.208134 4.849092 -11.811378 -12.651697 6.357349 1.771229 -7.153785 0.675207 1.220710 11.111527 3.012788 -2.478259 -1.607239 1.481106 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__int const& std::max(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLen(char (*) [3], char) = -2.958996 -3.173032 -2.146131 -6.439953 4.385108 5.599844 2.331326 -3.990951 -7.804074 -0.464852 3.087286 -7.503258 -0.677583 8.480962 -2.259842 7.681595 10.645923 1.440035 -4.320564 0.079087 8.473956 -1.327913 9.825542 8.823715 -5.795445 -0.499265 -0.828957 3.203415 1.449006 1.758581 0.611338 -3.409085 3.585465 -8.862107 -3.001500 -5.294650 1.148446 3.028216 7.004618 -10.748769 2.107885 0.771420 0.631111 -2.359300 -2.771819 -0.294236 4.569700 6.552670 -1.205959 2.368979 5.553158 1.053696 -1.069657 1.863112 1.420410 2.031756 -0.146911 0.625391 -2.634610 -4.050929 -0.518429 -1.456562 1.753144 6.319858 8.276720 0.864160 -0.257900 5.261600 1.096620 1.470023 4.342301 1.077458 -2.687557 -0.606060 3.035810 -9.229971 -0.827765 -10.484169 -1.529252 -12.577152 -3.549374 1.115024 5.043307 0.802192 4.977981 0.394855 6.715559 -2.293708 -2.400599 7.841913 7.498267 -6.823728 -3.218152 -4.618182 -4.254437 2.229318 -3.736354 0.236831 4.094500 1.153832 -6.003208 -3.468697 2.395458 4.093468 -2.616338 -6.387952 1.958797 5.317152 -5.974507 -6.264217 0.946213 6.289220 -2.586764 -11.017435 -3.230867 -5.328289 2.912347 -0.104144 -2.651940 -7.170500 0.892889 3.598787 -1.600860 -4.462409 0.226972 4.305629 3.808949 3.345628 0.765513 0.582400 1.615251 12.245864 2.043981 -4.426947 1.103236 -0.132996 -1.471819 3.508028 -4.292737 -3.979314 1.155185 -7.735427 1.751222 6.034022 -4.056547 -1.314578 5.240642 3.185642 1.370908 24.454608 0.914268 9.180380 6.861664 -7.017933 2.549763 -3.189738 0.462434 2.399571 2.587641 -0.425116 -11.185898 -6.494192 4.025535 7.148669 5.634736 -7.873604 -2.446912 -0.825727 -0.135819 0.466047 -0.790606 1.672858 0.561859 -5.827777 -1.500100 6.334721 14.860004 -3.203858 0.221575 4.554323 3.245315 -4.448453 -9.480482 -3.487223 -6.105792 1.386070 2.524579 0.211969 4.013323 8.928116 -9.962376 6.077050 -1.545792 0.398872 5.076864 3.316531 -7.468444 -8.492417 -2.551370 4.088799 8.533418 -2.786508 1.533711 3.153840 -6.242018 -0.582415 1.923668 -0.879216 -1.415040 2.972193 0.839325 -3.337068 -3.401009 3.345090 -2.271646 -1.944798 -0.059865 4.769549 0.321755 -7.858806 6.367497 0.299635 -2.872076 2.059325 -1.678427 7.470583 -6.217413 -6.878996 5.458655 0.089762 -1.704279 -2.472736 1.379252 4.807300 3.177041 2.271453 -3.921225 -8.211812 4.762329 -2.709672 5.803875 2.898476 -1.083659 3.452095 -3.206304 -1.856677 -7.471148 -4.883957 -1.480677 0.576129 -7.030280 -3.149276 -1.579121 7.434301 4.474335 0.749201 -6.554901 0.674037 7.866054 -6.056941 -1.429227 4.667416 4.215338 -8.248625 0.929066 5.976382 -8.200893 1.025905 -2.832594 -0.105356 -2.499840 -5.457539 4.667244 1.919643 4.659626 -0.500837 1.390590 0.990901 2.811177 2.999606 1.898934 1.345910 9.457409 5.926406 -1.599244 -3.232335 -7.000503 2.670870 -8.478314 -8.965498 3.787658 1.929528 -5.834369 0.968431 2.102016 8.285470 1.622589 -0.359379 -1.046311 0.590854 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = -2.355246 -1.721566 0.000837 -6.277294 4.380200 4.450864 2.154787 -2.434233 -7.128919 -2.159943 2.850462 -8.915996 -3.101787 8.221351 -2.661447 4.547164 10.199380 0.938280 -3.828064 -0.254286 6.412978 -0.382311 9.436102 8.594219 -6.406806 -0.328850 -1.283694 3.487902 1.343494 2.464551 1.290511 -5.095430 2.717738 -4.708240 -1.225624 -3.576482 0.885375 1.226315 3.525149 -10.520779 1.608984 3.257704 0.647407 -2.129030 -1.562366 1.406489 6.069995 6.239403 -1.457923 1.526462 5.452307 1.364430 -0.545776 1.450784 1.360072 -0.780543 1.006030 -0.492138 -3.501944 -3.089138 -0.607684 -2.373585 0.050088 6.701327 8.238348 0.998280 -0.355744 2.887784 0.860475 2.013716 3.533778 1.318465 -0.392619 0.968239 3.313115 -4.865974 -0.512323 -9.341270 -0.700520 -13.674814 -4.131894 0.098574 7.092474 3.085352 2.327324 -1.796967 6.912241 -1.201660 -1.613746 7.769495 8.606616 -4.826330 -3.398475 -4.783490 -4.429611 2.938026 -3.856489 0.685903 3.181961 1.835350 -6.183277 -2.000761 1.178516 2.329078 -2.565735 -3.234711 1.350710 5.173114 -6.379895 -3.205669 -0.488870 5.641646 0.370879 -11.327776 -3.912092 -4.211129 1.841371 0.493481 -2.793082 -4.326561 1.143039 2.220803 -2.227263 -1.896876 -3.685145 5.505592 3.003496 3.224206 0.903599 1.525003 2.748054 9.061153 1.308434 -4.110087 0.809126 -0.479813 -1.149554 2.873995 -3.718996 -2.999426 1.765829 -6.394966 2.013594 4.307374 -4.078088 -2.492998 0.141835 1.806843 1.871176 21.842749 0.068365 8.771635 5.563161 -6.618416 3.070791 -2.296107 -0.447295 1.352009 2.657823 0.812652 -7.380656 -5.944455 4.697578 7.521783 5.241879 -6.855752 0.454326 0.268285 -0.400056 -0.821764 0.593209 1.869549 0.456047 -5.331110 -1.773538 6.669287 12.909763 -1.875507 -2.823316 3.610900 3.722285 -1.784757 -6.015765 -2.090581 -2.965706 1.560367 2.826924 0.178308 4.454048 8.903878 -11.561553 6.382507 0.802526 0.377971 5.357086 1.760165 -6.879741 -8.028658 -1.558573 4.916905 7.941255 -1.270653 0.000877 1.967540 -6.143602 -0.660327 2.012474 0.012573 -1.662432 3.028517 0.362181 -3.032746 -4.216504 -0.447116 -2.459410 -0.263566 -2.176926 4.291752 0.960607 -9.241634 7.322382 0.163754 -2.770261 -0.838801 -2.421020 5.714689 -6.624202 -7.071498 3.528581 -1.945149 -5.132858 -3.140990 0.454848 3.546822 2.517559 2.664440 -3.798733 -7.417795 6.463456 -2.357416 6.154457 2.984552 -0.265593 4.367090 0.692897 -1.761371 -5.787311 -5.298019 1.559832 -0.567158 -6.651935 -0.038646 -1.878563 6.022321 4.691310 -0.579265 -6.020284 -0.570401 6.966732 -4.157616 -2.768883 4.423657 1.035902 -6.849543 2.295176 5.787530 -7.346913 0.568679 -4.691970 -0.803790 -2.966493 -5.738531 3.529533 0.916573 3.713322 0.723882 0.650767 -0.908942 2.373395 2.005274 0.245397 1.371662 9.261309 6.190127 -2.540878 -0.250813 -7.604739 3.564124 -8.741858 -9.029129 3.526796 0.021713 -4.564242 0.380755 0.870415 6.619941 1.453134 -0.898329 -2.237870 2.498228 +PE-benchmarks/cut-vertices.cpp__Graph::Graph(int) = -1.065045 -1.091240 0.397794 -2.880868 1.590059 1.126466 0.776590 -1.114850 -2.235303 -0.333864 1.324552 -1.360350 -1.092358 2.626712 -0.833288 1.475699 1.540103 -0.373644 -1.636414 -0.870990 2.513151 -0.978867 2.524549 1.468141 -2.523991 -0.288118 -0.348416 1.965832 0.763159 1.367521 0.353198 -0.049643 -0.269311 -0.934801 0.398762 0.069996 0.481554 0.487506 0.436485 -2.241242 0.554423 1.325369 0.997471 -0.619996 -0.761149 -0.442517 0.942338 2.202528 -0.172108 0.028468 2.385248 -0.212172 0.254844 0.396161 1.091862 0.104403 1.751852 -0.147152 -0.354071 -1.191988 -0.287479 -0.473503 0.887398 2.135641 2.535853 -0.430207 0.000705 1.018199 0.306452 1.410213 1.672500 0.332332 -1.194381 -0.648243 1.663784 -1.357908 0.333545 -2.394678 0.219915 -2.413931 -1.298022 0.206216 1.609627 0.843997 1.033075 -0.034750 2.249198 -0.040309 -1.122410 0.612685 1.333885 -0.613173 -0.760558 -1.308962 -1.725243 0.556193 -1.206310 -0.309625 0.768066 1.323558 -1.732910 0.551646 0.098295 0.998993 -1.158708 -0.611942 -0.292426 1.767619 -1.042306 -0.964747 0.473405 2.254369 -0.333811 -3.206310 -0.858204 -2.341069 -0.197264 -0.902446 -0.012082 -0.444756 0.158106 1.153668 -0.716948 -0.755397 -1.738925 1.345506 1.306281 0.662071 0.108552 0.217000 -0.035735 1.855967 0.307743 -1.159696 -0.664373 0.187220 -0.430331 1.204961 -0.557106 -0.530067 0.523422 -1.505518 -0.003106 0.517016 -0.424573 -0.342089 -0.073026 0.838113 0.543622 5.068871 -0.082308 2.282733 1.133219 -1.190609 1.033270 0.361715 0.382397 1.041877 0.874645 -0.985705 -1.441420 -2.059728 1.419178 1.784429 1.367234 -1.474311 0.167936 0.035512 -0.403690 -0.223470 -0.000430 0.289518 -0.232934 -1.315802 -0.611928 0.798850 3.012731 -0.651842 -2.021661 1.680521 1.186984 -1.618526 -1.404103 -0.755178 -1.279045 0.145343 -0.164566 0.190063 1.598327 2.504372 -2.521467 1.790185 0.073067 -0.349956 2.237067 -0.888105 -1.281493 -2.847615 -0.443117 0.233535 2.158615 -1.008885 -0.723917 0.786472 -1.919088 0.457762 -0.023938 -0.389713 -0.416701 0.986191 -0.699792 -0.522282 -1.071287 -0.750912 -1.111881 0.803972 -0.730959 0.868065 -0.103306 -2.042772 1.708602 -0.314217 -0.592377 0.148617 -0.107267 1.681541 -1.155550 -1.580943 1.102367 0.064346 -0.670224 -1.975229 0.390720 1.331388 0.007606 0.172596 -1.605902 -0.834893 1.423365 -1.842129 1.736998 0.873465 -0.303459 0.438122 1.510713 -0.286050 -1.386871 -0.637055 -0.261359 0.226648 -2.254418 -0.422969 -0.642164 1.821266 0.574819 0.202792 -0.753679 -0.188155 2.553901 -0.801211 -1.332272 0.844582 -1.008693 -1.756873 1.136931 1.594767 -1.346824 -0.107038 -1.598584 -0.262419 -1.243429 -2.015561 1.879096 1.106354 1.912102 -0.495679 0.887995 0.123995 0.569985 0.673676 -0.067161 -0.257990 3.177373 1.193679 -0.938137 -0.923121 -2.208999 1.318985 -1.535737 -1.358586 0.776772 -0.035305 -1.028146 0.538028 -0.298880 2.454892 0.663988 -0.151995 -0.460183 0.048109 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/cut-vertices.cpp__Graph::addEdge(int, int) = -0.732709 0.131275 1.158565 -1.691132 1.282604 1.588591 0.467775 -1.001141 -1.352219 -0.423541 0.219422 -1.636945 -0.983001 1.961560 -1.084751 0.701790 2.473362 0.520061 -0.891399 -0.351780 1.413026 0.162923 2.560820 2.280299 -1.829199 -0.166679 0.494226 1.338625 0.525560 1.416344 -0.638854 -1.164082 0.669690 -0.686293 0.080693 -1.112735 0.168030 -0.027823 0.334928 -2.519223 0.277208 -0.000512 -0.543345 -0.318886 -0.127349 0.236960 1.933980 1.524032 -0.075622 0.057414 1.183899 0.856777 -0.091711 0.427234 0.689185 0.292905 1.353593 -0.252732 -0.591940 -0.689236 -0.448108 -0.726291 -0.018470 1.996445 2.094452 0.523174 0.018300 0.223322 0.044385 0.371603 0.526870 0.493345 -0.098310 1.055615 0.592506 -1.492855 0.669840 -2.142106 -0.278210 -2.181094 -1.000056 -0.654773 0.671493 0.447634 0.810695 -0.075125 2.012382 -0.058288 -0.024175 1.021920 2.426623 -1.687703 -0.647812 -1.011534 -1.047388 0.403589 -0.975008 0.325261 -0.188284 0.371922 -1.450776 -1.044070 0.380426 0.594775 -0.711595 -0.137881 0.052807 1.630737 -1.701654 -0.792813 -0.773553 0.654590 -0.256615 -2.856497 -1.110148 -1.211712 1.483235 -0.063738 -0.696131 -1.682666 0.540318 1.473488 -0.463287 -0.666982 -0.709301 1.399893 0.988951 0.148154 -0.125300 0.032183 0.431055 2.132614 0.926628 -0.916697 -0.011572 -0.053618 -0.933218 0.091817 -1.091561 -0.173702 0.038084 -1.476333 0.109531 1.671977 -1.059749 -0.323737 0.202949 -0.003975 0.906564 5.775425 -0.502744 1.575098 0.924275 -2.063030 0.415716 -0.342844 -0.193109 0.307085 0.706037 0.720541 -2.601160 -1.569494 1.177410 1.964529 1.240441 -1.673263 0.261996 -0.490764 -0.208251 -0.350520 0.207865 0.434322 -0.514542 -1.185199 -0.615634 1.215461 3.054384 -0.793970 -1.972472 0.806828 0.009233 -0.361743 -1.091462 -0.563444 -0.142515 0.396977 0.749632 -0.099849 1.130155 2.312993 -3.149788 1.709485 0.000190 -0.637363 1.854232 -0.000384 -1.056328 -0.555973 0.019778 1.626461 1.657111 -0.027776 -0.354799 0.272732 -1.781185 -0.227370 0.377507 0.813533 -0.732638 0.875270 0.961910 -1.567473 -1.391549 -0.651739 -0.081733 -0.460984 -0.805976 1.010867 -0.698691 -3.320444 2.254629 0.227798 -0.438682 0.372789 -0.744169 1.195233 -1.853768 -2.097688 0.949918 -0.207682 -0.689106 -0.654061 0.106043 1.233076 0.533945 0.953059 -1.683354 -1.756628 1.027851 -0.383981 1.451425 0.676464 0.620647 1.432174 -0.055366 -0.333298 -1.480213 -0.917217 0.832916 0.148866 -1.475900 -0.286104 -0.496562 1.660632 1.849023 -0.358996 -0.793655 -0.353196 1.834824 -1.518935 -0.526422 1.039307 0.843066 -1.576629 0.219388 1.301742 -1.469047 -0.761400 -0.812786 -0.745109 -0.763649 -1.628771 0.905632 -0.477809 0.862161 0.618082 0.214043 -0.656864 0.707882 0.352243 0.226649 0.591095 1.971821 2.057892 -0.677290 0.226615 -1.775901 1.114230 -2.445341 -2.011514 0.808448 -0.542757 -0.706542 0.111221 -0.192798 1.664871 0.240149 -0.017307 -0.116176 0.051508 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::push_back(int const&) = -0.393401 0.422519 1.031386 -1.031333 0.911656 0.566330 0.289656 -0.279628 -0.773459 -0.525266 -0.148460 -0.897224 -0.903899 1.280504 -0.616633 0.073999 1.790952 0.501754 -0.302807 -0.413763 0.851887 -0.381816 1.574160 1.505993 -1.357415 -0.030149 0.664674 0.861908 0.356394 1.202490 -0.612930 -0.953458 0.365006 -0.118637 0.544261 -0.984653 0.119830 -0.152330 -0.193692 -1.907424 0.155767 -0.015483 -0.204815 -0.182168 -0.031300 0.779597 1.547288 0.969966 -0.421378 -0.029383 0.874053 0.620141 -0.097963 0.297384 0.378952 0.174232 1.031777 0.169529 -0.481999 -0.155502 -0.293692 -0.832648 0.017336 1.302350 1.489585 0.233028 0.090516 0.007296 -0.041530 0.269086 0.155668 0.281825 0.394614 0.619241 0.531091 -0.970691 0.242467 -2.185488 -0.192089 -2.616972 -0.754199 -0.842108 0.533092 -0.078097 0.281471 -0.102190 1.382458 0.134932 0.371358 0.607444 1.754056 -0.984465 -0.436997 -0.858633 -0.801377 0.442703 -0.636845 0.104814 0.202661 0.027407 -0.937050 -0.945297 0.461861 0.185601 -0.488910 -0.001059 -0.093111 1.121425 -1.237884 -0.317652 -1.042174 0.074072 -0.001614 -1.868447 -0.179050 -0.785787 1.111922 0.056561 -0.349325 -0.966815 0.316298 1.033208 -0.484618 -0.318287 -0.754878 1.269090 0.517544 -0.075629 0.042366 -0.180365 0.280622 0.961390 0.974930 -0.665891 -0.209115 0.093297 -0.913571 -0.285879 -1.050647 -0.113064 0.664561 -0.889177 0.120973 0.784143 -0.762436 -0.322448 0.525266 -0.447182 0.868483 3.416189 -0.418630 0.818023 0.264811 -1.401633 0.626074 0.021844 -0.357153 0.243614 0.811920 0.630133 -1.440099 -1.010450 0.605399 1.272015 0.837819 -1.148896 -0.197742 -0.512979 -0.207236 -0.164074 0.156924 0.268295 -0.507400 -0.738695 -0.435400 0.615118 1.914148 -0.449047 -1.544312 0.355047 0.286026 -0.283268 -0.909225 -0.256530 -0.189793 0.222384 0.197102 -0.242304 0.853825 1.563733 -3.006717 1.193289 -0.108337 -0.541645 1.076828 -0.167630 -0.449786 -1.052387 0.368348 1.265526 1.273501 0.190920 -0.134402 0.039200 -1.167345 -0.168691 0.086990 0.810292 -0.584731 0.563585 0.487927 -1.173862 -1.013237 -0.690934 -0.063023 -0.385776 -0.485327 0.511122 -0.174620 -2.768394 1.648919 -0.130720 -0.191598 0.176767 -0.382907 0.517944 -1.317703 -1.511133 0.446208 -0.096081 -0.477232 -0.646495 -0.000830 0.949210 -0.083431 0.456571 -0.878972 -1.521547 0.725538 -0.311385 0.837731 0.488394 0.599123 1.310276 0.380108 -0.267713 -1.117797 -0.289140 0.571623 -0.237513 -0.781671 -0.017482 -0.380949 0.971460 1.535718 -0.270168 -0.175254 -0.264594 1.297858 -0.996112 -0.491824 0.806547 0.446839 -0.700777 0.378291 0.955423 -1.064124 -0.897462 -0.774836 -0.441146 -0.216755 -1.102292 0.437810 -0.726183 0.309425 0.667349 0.027998 -0.656052 0.586144 0.153043 0.024624 0.135450 1.306914 1.819926 -0.839331 0.431610 -1.036537 0.682646 -1.754411 -1.204426 0.264368 -0.371827 -0.333964 0.150210 -0.107557 0.890154 -0.132064 0.233602 -0.089607 -0.109375 +PE-benchmarks/cut-vertices.cpp__Graph::APUtil(int, bool*, int*, int*, int*, bool*) = -6.162454 -3.498812 0.835667 -13.915804 9.593691 14.292578 4.423149 -9.376551 -12.995046 -2.667329 5.634813 -14.720123 -3.791973 16.529690 -6.497087 12.297731 20.072448 1.979550 -8.501528 -1.398575 16.020132 1.233090 21.945678 17.769136 -13.540874 -1.509139 2.232318 9.084881 5.025710 3.935076 0.376721 -6.760330 7.362763 -14.702295 -4.998154 -8.611484 2.571312 2.752918 10.643344 -19.549020 3.338340 -2.242173 -4.052042 -3.912397 -4.982637 -2.488369 12.934702 13.352624 -2.094314 3.034564 11.544253 3.964745 -2.917772 3.784365 3.124250 1.994066 2.408743 -0.855527 -4.357752 -8.311209 -1.522485 -3.880779 2.227774 14.664329 16.624130 2.834944 0.077684 9.754171 1.636770 2.892963 7.255753 2.916091 -4.250213 3.831438 6.398266 -19.475633 0.094212 -22.194449 -3.978151 -19.980538 -7.835041 -0.280032 7.548003 1.215230 9.454982 2.475856 14.165121 -2.214011 -3.696826 15.265930 18.415149 -14.231603 -6.107824 -9.044025 -8.249080 4.208055 -8.346842 2.939581 2.624171 3.011426 -12.128956 -7.868757 3.426393 7.587955 -5.593383 -10.886935 2.961391 11.743939 -12.526895 -10.593303 -0.129922 10.124787 -4.357940 -24.341075 -10.219030 -9.994096 13.071710 -0.907333 -4.698592 -15.922379 1.928050 10.351756 -2.544377 -8.689074 0.770582 7.516472 9.305096 6.189230 0.682640 1.709257 4.322367 24.478829 6.871385 -7.587815 1.171008 -1.705680 -3.856521 5.688672 -7.665900 -5.192677 0.493685 -13.995979 2.532624 15.954249 -7.998338 -4.840861 8.981705 4.141591 4.348153 52.122620 0.765186 16.023381 12.472239 -16.456786 0.477822 -7.103500 -0.114564 4.432523 4.538887 1.431168 -24.063778 -13.237915 9.247400 14.841027 10.726511 -16.425266 -1.623584 -2.002409 -0.857590 -1.670531 -1.409838 3.726360 -0.279677 -10.802580 -3.725782 14.736830 27.791649 -7.335583 -6.063311 9.072074 3.919373 -6.211310 -14.831482 -6.765834 -6.611329 3.386308 7.952871 0.686392 8.371345 18.489113 -21.133604 11.807147 -1.047377 -0.405022 10.779494 5.872273 -13.634078 -10.128920 -2.668880 11.660450 13.870443 -4.213351 1.616714 5.045434 -13.364786 -1.409892 4.487538 0.438235 -3.206666 6.131191 4.319472 -8.883392 -9.489673 4.064230 -3.206632 -2.518312 -1.399903 9.627355 -3.625608 -21.239925 16.687146 0.539797 -5.631385 4.024895 -6.304730 16.387722 -13.977280 -15.919491 11.021242 -1.371807 -4.531259 -4.785616 2.763259 9.737040 6.991541 5.998303 -11.186025 -14.243567 8.292474 -4.326275 11.477462 5.656015 1.212006 10.437305 -10.047325 -3.180874 -15.222343 -10.015742 2.142474 2.822895 -15.007213 -7.104073 -2.953172 14.847737 10.935549 -1.108085 -11.651570 0.893252 14.503124 -16.513936 -4.124006 8.708150 12.654713 -17.900605 2.170602 11.065532 -14.582850 -0.198149 -5.574174 -2.997850 -6.071911 -14.338830 8.636174 2.281194 9.325221 1.437467 3.164013 0.545909 6.202439 4.692111 5.180150 3.634748 16.509320 16.721168 -4.829045 -6.417351 -15.154139 6.781099 -19.941521 -20.186784 9.477506 0.890911 -7.993273 1.208241 0.358231 16.097067 3.544871 -1.652492 -1.609789 1.405620 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/cut-vertices.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/cut-vertices.cpp__Graph::AP() = -4.903833 -3.330403 0.410024 -12.492252 8.579748 9.411622 3.664978 -6.744157 -11.310879 -2.622143 5.586488 -11.272742 -4.140186 13.774312 -5.015919 9.110804 14.456586 -0.347386 -7.265891 -2.292363 13.243573 -0.160802 16.342479 12.310650 -11.753886 -1.295080 -0.004486 6.956947 3.855545 3.492254 1.869867 -5.302516 3.679888 -10.102914 -2.840712 -3.950206 2.432443 1.621676 7.380936 -14.648777 2.817702 1.340545 -0.895352 -3.595720 -4.188762 -2.298199 8.867055 11.055658 -1.877010 1.084040 11.005226 2.573365 -2.048063 2.627882 2.942298 0.474711 3.089520 -1.484882 -3.344851 -6.651290 -1.017064 -1.909997 1.975923 11.885080 12.867900 1.239547 -0.071346 7.630028 1.027588 4.043526 6.457400 2.050542 -3.265280 1.476689 6.410225 -12.364982 -1.259598 -16.857435 -1.980153 -15.920674 -6.762318 0.440973 7.224616 2.604212 6.631199 1.652963 11.353889 -1.510711 -3.817894 10.774102 12.697244 -8.424460 -4.933268 -8.023099 -8.005147 3.640964 -6.592026 1.674943 2.107843 3.746398 -10.005018 -3.530602 1.740924 5.718925 -4.768234 -7.987178 1.708219 9.245725 -8.491084 -6.818588 0.935675 10.402776 -2.278761 -18.761238 -7.070841 -8.849948 6.504818 -1.661174 -2.731541 -9.481678 1.292552 6.975535 -3.427067 -6.030812 -2.033271 6.838937 7.190129 5.467802 0.731561 1.518167 3.639033 16.774404 3.720087 -6.126829 0.040091 -1.569760 -1.850069 5.290689 -4.904797 -3.645183 1.537924 -9.847845 2.514751 9.905626 -5.254196 -4.588661 4.606514 2.990906 3.257480 37.870404 0.466170 13.486659 8.711948 -11.161567 2.134575 -4.446328 -0.200935 3.411069 3.767985 -0.467558 -15.342435 -10.769132 8.179193 11.141488 8.305558 -11.749863 -0.663103 -0.293310 -1.340043 -1.172877 -0.619014 3.063308 -0.102823 -8.412411 -3.276012 10.599886 21.373521 -4.734936 -4.750086 8.059471 5.635744 -4.929284 -10.347551 -4.928752 -5.324659 2.434694 5.729245 1.069310 7.680344 14.747998 -15.904877 9.289680 -0.135802 -0.142777 8.246903 2.123434 -10.547298 -10.218177 -2.041526 7.198731 11.634046 -3.368218 0.393807 3.675908 -10.383064 -0.117156 2.906771 -0.672735 -2.202465 4.787257 0.727631 -5.732474 -7.439834 1.935201 -4.542544 0.736383 -2.094380 6.728717 -1.705335 -14.936886 12.519707 -0.341479 -3.936448 1.348398 -4.657436 12.437000 -9.462917 -11.523918 8.073769 -1.413492 -4.143412 -4.895629 2.011844 7.194660 4.602738 4.598556 -8.387766 -10.445556 7.053218 -4.461102 9.910224 4.615166 0.448696 6.407431 -3.764369 -2.092573 -10.910458 -7.782596 1.148751 2.483170 -12.974553 -3.893345 -2.817569 11.225381 6.439336 -1.097504 -9.061744 -0.377883 11.602006 -10.588708 -4.380144 6.322481 4.914225 -13.555978 2.645310 9.013120 -10.439134 0.273930 -5.955532 -1.081347 -5.958055 -11.440251 6.679815 3.625117 8.078489 0.310013 3.397806 0.123759 3.935179 3.662197 2.970267 1.439935 13.992636 11.066090 -4.265823 -5.025808 -12.684209 6.364617 -13.567037 -15.189576 7.413960 -0.026361 -6.571650 1.128627 -0.710051 12.927029 2.657786 -0.452376 -1.974574 1.758927 +PE-benchmarks/cut-vertices.cpp__main = -5.303210 -1.335220 6.156769 -14.180402 10.368541 8.897665 4.513495 -4.132011 -13.642192 -5.878387 3.664787 -14.349081 -9.335133 17.027222 -6.569457 4.887372 20.134559 3.460689 -7.266377 -3.363680 11.929017 -0.064541 19.867491 17.403133 -14.594928 -0.552552 -0.372238 9.775271 3.453865 8.919084 0.612798 -9.944289 4.730986 -4.689570 0.435172 -7.489330 1.228246 0.935294 1.185231 -21.310740 3.042972 4.731803 -1.853599 -3.451440 -1.456519 3.592134 14.243495 12.714522 -2.169531 1.820007 10.683628 5.037731 -0.697629 3.386209 4.523260 -0.519675 5.927018 -3.402939 -6.119417 -5.005881 -2.943437 -6.919077 -0.401731 14.723217 16.306231 2.337386 -0.789100 2.570360 0.624679 5.262605 6.285514 3.170470 1.110607 3.406346 7.095467 -8.589974 0.024880 -18.918091 -1.196678 -24.969926 -9.470349 -3.076383 13.272258 6.158360 3.189999 -2.409257 15.595742 -1.339716 -1.629139 12.600189 18.119140 -9.073368 -6.101601 -9.350029 -8.778264 5.452885 -7.533485 1.204060 1.624398 4.722554 -12.608001 -4.474440 2.027377 2.758734 -5.897078 -3.080404 0.927850 13.401161 -14.185561 -3.913101 -5.011763 10.443128 1.712291 -22.599028 -8.504175 -9.259581 8.914293 0.197438 -5.515744 -7.650762 3.901212 7.047226 -5.121078 -2.675148 -8.413501 11.829784 5.677338 3.421194 0.602113 2.694997 3.758804 15.090154 5.773574 -7.706118 0.147778 -0.016940 -3.853633 3.289694 -7.693024 -2.928417 2.608695 -11.331544 2.924801 8.839195 -8.344617 -6.509871 -2.005016 1.117570 5.699816 42.278224 -2.300176 14.848931 8.674029 -13.832659 4.334903 -2.641328 -1.132872 3.273863 6.961695 3.067158 -14.168051 -12.488539 9.348545 15.559755 10.628932 -13.225647 2.566296 -1.584213 -1.469131 -2.351724 2.492373 3.341804 -0.747699 -9.902325 -4.514596 10.659640 23.863236 -4.104634 -13.102261 6.495006 5.113707 -2.425364 -8.317634 -3.725996 -0.768142 2.667402 6.825463 -0.485111 9.480193 18.750821 -24.966409 13.755848 1.131149 -1.612065 11.276333 0.898906 -9.954497 -11.412351 -1.969239 11.003074 16.195054 -0.612545 -2.300147 2.723775 -13.792584 -1.367764 3.624519 3.562330 -4.601370 7.010768 2.797490 -8.363215 -9.301148 -5.087553 -3.648318 0.904193 -5.682364 7.916258 -1.212889 -24.359789 16.536047 -0.326354 -4.184868 -0.547684 -4.575075 11.326822 -12.969433 -15.994411 7.054472 -3.107109 -11.047579 -7.359108 0.687773 9.269269 3.518751 5.766926 -9.850064 -13.332854 12.546240 -4.004133 13.028419 6.179283 1.958778 12.310348 2.436046 -3.588192 -10.635973 -9.705076 6.634352 -1.251253 -12.044782 0.567765 -4.563681 11.739571 12.076189 -1.877002 -9.046021 -2.534307 15.736024 -10.661334 -6.182660 9.208369 2.678458 -11.249246 6.966716 12.208622 -13.385997 -3.446206 -9.488745 -3.043740 -5.831297 -12.581628 7.678107 -1.056452 7.372175 3.191760 2.481832 -4.597091 5.171011 3.105574 0.412879 2.449247 17.952582 16.540598 -6.896963 1.764925 -14.325909 9.150377 -18.022216 -15.882105 5.439566 -2.699973 -6.164999 1.330025 -2.599741 13.120277 2.313647 -1.064750 -3.864335 3.649830 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/cut-vertices.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.635914 0.463864 1.281313 -1.462158 1.598193 0.803151 0.621960 -0.379792 -1.207862 -0.889649 -0.090438 -1.247632 -1.502538 2.052717 -0.913442 0.449066 2.826967 0.715392 -0.376096 -0.722316 1.719090 -0.965348 2.683612 2.293182 -2.311495 -0.089599 1.034875 1.310367 0.657217 1.724008 -0.798546 -1.297871 0.923368 -0.778152 0.858821 -1.618381 0.331412 -0.170577 -0.167327 -2.948905 0.163859 -0.161612 -0.420037 -0.168808 -0.244682 1.575813 2.327489 1.661661 -0.921072 0.265226 1.493855 0.538721 -0.136404 0.628223 0.389403 0.260891 1.133152 0.563407 -0.970616 -0.305996 -0.552812 -1.754975 0.211331 1.968153 2.505407 0.141780 0.265884 0.522154 -0.235080 0.488962 0.456662 0.488527 0.751187 0.550087 1.314212 -1.923971 -0.060402 -3.832157 -0.665460 -4.906716 -1.243008 -1.494420 0.913026 -0.641079 0.757922 -0.076682 2.226840 0.361814 0.508450 1.227660 2.731051 -1.790356 -0.771060 -1.580789 -1.098448 0.634437 -1.226038 0.128313 0.919292 -0.147080 -1.562868 -1.543319 0.811336 0.379780 -0.702250 -0.682223 -0.317414 1.898663 -2.080096 -0.822783 -1.866792 0.001061 -0.235571 -3.093815 0.043789 -1.057601 2.067265 0.212480 -0.264556 -1.475933 0.452657 1.815523 -0.661254 -0.861077 -0.557000 2.108963 0.921483 0.114429 0.303616 -0.075653 0.262633 1.805394 2.160797 -0.859695 -0.565026 0.147179 -1.500766 -0.147067 -1.624848 -0.309320 1.503039 -1.644511 0.185635 1.251623 -1.122753 -0.583255 1.541843 -0.606574 1.481378 5.220425 -0.453654 1.372586 0.525053 -2.241049 1.041639 -0.132518 -0.347712 0.682780 1.457097 0.688143 -2.433908 -1.695378 0.935097 1.901794 1.311050 -2.309792 -0.688919 -0.902133 -0.034532 -0.276003 -0.107319 0.694784 -0.576076 -1.247462 -0.496023 0.952754 3.137521 -1.136182 -2.216293 0.801763 0.490957 -0.690794 -2.055872 -0.648578 -0.552538 0.232256 0.279081 -0.307540 1.121586 2.522139 -4.539029 1.823714 -0.461042 -0.670701 1.586730 -0.072012 -0.751829 -2.188624 0.528494 1.896703 1.925821 0.379227 -0.191020 0.204749 -1.860791 -0.036760 0.100837 1.205356 -0.681087 0.886537 0.420819 -1.693018 -1.747205 -0.885235 -0.111533 -0.571336 -0.363916 0.825574 -0.113187 -4.427910 2.441753 -0.512168 -0.621039 0.485853 -0.309114 1.169971 -2.046662 -2.539525 0.918355 -0.264769 -0.949952 -1.392181 0.186804 1.459229 -0.023541 0.302694 -1.208110 -2.699489 1.289880 -0.637092 1.270232 0.804454 0.960973 2.579906 0.331519 -0.823704 -2.117206 -0.485306 0.612659 -0.564980 -1.328853 -0.450454 -0.457063 1.691522 2.464456 -0.214696 -0.150291 -0.319332 2.243547 -2.147444 -0.960212 1.623656 1.346478 -1.080595 0.863950 1.755701 -1.848903 -1.462981 -1.118484 -0.581509 -0.199092 -1.786679 0.727021 -1.248708 0.567313 0.897780 0.283853 -0.808235 0.945648 0.269613 0.285445 -0.222459 2.273447 3.444153 -1.786833 0.217733 -1.599584 1.078187 -2.850929 -2.041919 0.506798 -0.163476 -0.402095 0.497336 0.216767 1.499899 -0.082625 -0.130324 -0.250058 -0.421446 +PE-benchmarks/cut-vertices.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.650706 1.567372 2.280989 -2.983972 4.924957 2.762123 2.013060 -1.113980 -2.480392 -2.396289 -0.310901 -3.063355 -4.275604 5.316166 -1.999803 2.380266 6.959788 1.239636 -0.500672 -1.177404 4.935131 -2.857504 7.192676 5.071574 -5.752195 -0.207895 2.593519 2.558941 0.468686 4.657625 -2.159103 -3.948811 3.297978 -3.209615 1.802986 -3.619760 0.953896 -0.656002 0.224035 -6.872405 0.186864 -0.273736 -1.586412 -0.420407 -1.304945 2.907742 6.241337 4.392200 -2.396417 0.853138 3.285783 0.573049 -0.342453 2.136320 0.980405 0.967811 1.374731 1.187555 -3.214499 -1.159111 -1.890106 -4.963877 0.432809 4.596973 6.263118 0.032022 0.886518 2.708407 -1.918988 1.218749 0.934463 1.374598 2.237044 0.877559 3.999904 -5.119640 -1.278690 -9.046245 -2.823949 -12.268106 -3.406177 -4.209354 1.272106 -1.517667 3.332661 -0.319563 5.695496 0.974605 1.284478 3.019738 7.377012 -5.615081 -2.063487 -4.625995 -2.071562 0.930752 -3.420997 0.111889 2.940394 -1.659160 -4.270607 -4.354659 2.267624 1.402499 -1.456186 -3.583413 -1.075763 5.028590 -5.261597 -3.202089 -5.322424 -0.703434 -1.695606 -8.170906 0.565369 -1.292551 4.684111 1.049213 -0.111125 -4.653323 1.456412 5.344844 -1.426822 -3.829904 0.438283 5.497886 2.647063 0.674538 1.609162 0.194763 0.564965 5.921240 6.895107 -1.301965 -1.785182 -0.168364 -3.423354 0.249273 -3.250553 -1.028805 3.124998 -4.857885 0.180574 4.070173 -2.607780 -0.911731 4.083277 -1.600968 4.030087 12.455579 -1.237641 3.444725 1.139346 -6.397019 3.034949 -1.164282 -1.134284 1.464235 3.795217 1.688809 -6.475713 -4.401456 2.914710 4.514195 3.286061 -6.357697 -2.170002 -2.690032 0.756700 -1.071633 -0.982846 2.582771 -0.556174 -3.602503 -0.867302 2.488219 8.685601 -4.259521 -5.305028 3.382827 1.086933 -1.591783 -6.257775 -2.466450 -2.488671 0.011412 0.829577 -0.892422 2.003485 6.506519 -9.778941 4.438499 -1.900850 -2.097265 4.097099 0.104790 -1.864912 -5.529529 1.163674 5.270310 4.414616 1.117780 0.105923 -0.186912 -4.546434 0.376855 0.124570 2.918528 -1.055896 2.201782 -0.022251 -4.644537 -4.950241 -1.871032 -0.394363 -2.054874 -0.314482 1.934037 0.973964 -10.732516 6.364314 -1.275580 -1.932213 1.945550 -0.055278 4.068971 -4.732752 -7.104567 3.067623 -1.447310 -2.356395 -3.121952 0.952021 3.289272 0.722880 -0.335716 -2.476883 -7.231763 3.333208 -0.850085 3.195386 2.030909 3.169085 7.141443 0.560378 -3.464232 -5.562193 -2.116496 1.143256 -1.714361 -3.664344 -2.556135 -1.007224 4.997433 6.238059 0.114847 -0.396839 -1.420209 5.549174 -6.654250 -2.026226 5.281559 4.272763 -3.265422 1.541570 5.276570 -4.129249 -4.083779 -2.351917 -0.479049 -0.954632 -5.042350 0.954578 -3.524037 1.093328 2.366966 0.662233 -1.784501 2.010925 0.825883 1.317156 -1.737520 5.741298 8.365686 -5.522587 -0.434453 -3.729667 2.464038 -7.420249 -5.674196 1.987493 0.540649 -0.832928 1.310698 1.615921 3.581709 -0.550836 -0.914796 -0.533250 -2.426021 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/cut-vertices.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/cut-vertices.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/cut-vertices.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/cut-vertices.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/sort-array-wave-form-2.cpp__sortInWave(int*, int) = -2.795606 -2.266269 -1.024834 -6.517008 4.182877 5.937571 1.991103 -4.870018 -6.205428 -0.170975 2.957757 -6.394624 -0.421034 7.372747 -2.876052 6.621231 8.542848 0.761675 -4.170132 -0.472798 7.244384 1.394680 9.023999 7.586669 -5.802479 -0.725888 0.357994 2.870704 2.397427 1.110804 0.395315 -3.104244 3.512211 -6.972632 -2.553616 -3.641854 1.183982 1.756299 6.338069 -8.200990 1.841953 -0.655208 -0.080526 -1.947821 -2.332373 -1.722207 4.260228 5.980779 -0.720070 1.383869 5.319994 2.314158 -1.460418 1.608099 1.373133 1.422381 0.890459 -0.776419 -1.611512 -4.236185 -0.407701 0.105886 1.119407 6.443914 7.275175 1.194322 0.038617 4.731584 1.581028 1.358536 3.619575 1.123815 -2.699884 1.085898 2.170219 -8.498037 -0.083129 -8.919906 -1.532646 -8.425917 -3.118150 0.721342 2.954239 0.029847 4.681919 1.030977 6.040645 -1.095042 -2.154648 5.653503 6.930206 -6.216001 -2.655841 -3.771078 -3.711664 1.823627 -3.531625 1.410521 1.850480 1.168389 -5.337609 -3.177141 0.983640 3.776129 -2.467371 -5.003118 1.898929 4.724529 -4.690802 -5.114276 1.410947 5.318589 -2.517404 -9.971371 -3.932057 -5.056547 3.734613 -0.904297 -2.063397 -7.003758 0.443331 4.013340 -1.499993 -4.182985 0.550611 2.555460 4.484085 3.119643 0.085475 0.484954 1.851670 11.274393 1.494099 -4.036760 0.908712 -0.905329 -1.018478 2.924796 -3.665076 -2.632740 0.354941 -6.379053 1.603456 6.702419 -3.418105 -1.463396 4.578209 2.335212 1.488752 21.489015 0.447693 7.644803 5.898556 -6.611859 -0.107063 -3.192975 0.285239 1.962539 1.820335 -0.071627 -9.349274 -6.071600 3.991915 6.422203 4.825404 -6.315870 -1.290859 -0.686496 -0.798390 -0.552652 -0.968442 1.427383 -0.283644 -4.909644 -1.656420 6.026160 11.518015 -2.958353 -0.887721 3.952517 3.160711 -3.129600 -5.575143 -3.381634 -4.704750 1.817345 3.248142 0.706460 4.116829 8.114376 -8.324051 5.166363 -0.384454 0.141508 4.313953 2.844412 -6.487088 -4.264809 -1.429854 3.960325 5.895609 -2.943233 1.490134 2.893048 -5.766914 -0.587419 1.720145 -0.524133 -1.439613 2.164437 2.144030 -3.230991 -3.544587 3.210229 -1.528338 -1.691218 -0.379711 4.444285 -0.668427 -7.740584 6.244760 0.398588 -2.547023 2.011647 -3.074736 7.117144 -5.995177 -5.867283 4.856868 0.117837 -0.574296 -1.477133 1.484134 4.541593 2.667023 4.037469 -4.801270 -5.676113 3.193019 -1.987329 5.010716 2.480403 -0.070180 2.813888 -5.740267 -0.923976 -6.404984 -4.566544 -0.313466 2.124694 -6.822105 -2.563061 -1.275899 6.745504 4.187034 -0.309930 -5.824242 0.550885 5.930060 -6.716794 -0.718897 3.607741 4.785020 -7.858023 0.136558 4.715453 -6.460257 0.568455 -1.939770 -0.769686 -2.732431 -5.415657 4.314076 2.037382 4.632973 -0.267151 1.397049 0.818225 2.871645 2.376506 2.105917 2.082841 6.998701 5.004142 -1.228780 -3.456663 -6.754444 2.710036 -7.845602 -8.618832 4.422070 -0.225972 -4.737370 0.653425 -0.026715 7.623511 1.403715 0.204303 -0.797920 0.791809 +PE-benchmarks/sort-array-wave-form-2.cpp__main = -1.092007 -0.905387 0.120513 -2.893265 1.967890 1.862934 0.947081 -1.176588 -3.132235 -0.703266 1.022177 -3.093264 -0.753067 3.539553 -1.089073 2.366613 4.320277 0.754987 -1.525804 -0.258730 2.970694 -0.346286 3.969168 3.642331 -2.698397 -0.153380 -0.150334 1.512057 0.628655 1.284080 0.117773 -1.962302 1.252851 -2.492862 -0.500545 -2.063905 0.430763 0.892465 1.901092 -4.456287 0.828507 0.678330 0.330484 -0.901051 -0.760960 0.002041 2.275144 2.669902 -0.663983 0.835221 2.348286 0.742956 -0.416627 0.722165 0.697380 0.511224 0.449875 -0.287644 -1.302155 -1.221933 -0.289280 -0.914020 0.466381 2.760001 3.456780 0.314451 -0.044931 1.439482 0.466783 0.734924 1.630569 0.424104 -0.610583 0.076711 1.260107 -3.160885 -0.261888 -4.627704 -0.427933 -5.446936 -1.790884 -0.047285 2.460867 0.726256 1.418301 -0.300340 2.879877 -0.665450 -0.571139 2.725827 3.362717 -2.414103 -1.391554 -2.063358 -1.813898 1.146556 -1.573292 0.023767 1.215825 0.503300 -2.511544 -1.287549 0.833345 1.258100 -1.090556 -1.702822 0.651304 2.497913 -2.636627 -2.039532 -0.247952 2.386621 -0.470076 -4.529525 -1.131111 -2.067333 1.242508 0.086228 -1.117974 -2.436792 0.453725 1.471528 -0.985695 -1.252221 -1.024965 2.095729 1.335332 1.154337 0.319629 0.287698 0.768382 4.207855 0.991795 -1.900584 0.284887 0.052382 -0.732372 1.029126 -1.929642 -1.372887 0.596944 -2.873632 0.526524 2.119243 -1.788300 -0.761167 1.279196 0.874160 0.916509 9.434923 0.040956 3.552166 2.263217 -2.896071 1.132933 -0.853505 -0.026949 0.805858 1.311843 0.105669 -3.741026 -2.641662 1.638666 3.052502 2.340193 -2.858416 -0.725986 -0.451757 -0.264036 0.027282 -0.051122 0.704222 -0.014573 -2.310900 -0.736038 2.310573 5.516972 -0.990223 -1.061848 1.512828 1.533385 -1.365171 -2.861499 -1.158862 -1.946105 0.647378 0.901817 -0.021803 1.900815 3.808596 -5.021505 2.699761 -0.233118 -0.046311 2.104290 0.786280 -2.701128 -3.341215 -0.715624 1.922274 3.438152 -0.808636 0.513117 1.124687 -2.626764 -0.274817 0.639395 0.100086 -0.753684 1.166353 0.375137 -1.587847 -1.574683 0.435171 -0.993256 -0.611571 -0.515131 1.801360 0.469013 -4.109024 2.888563 -0.018124 -1.067406 0.554536 -0.871655 2.677257 -2.781655 -2.961932 1.824345 -0.143258 -1.204633 -1.195085 0.359158 1.988537 0.721160 1.017914 -1.581418 -3.133710 2.103939 -1.014737 2.445023 1.244301 -0.204960 1.860270 -0.475362 -0.700095 -2.651118 -2.037975 0.100823 -0.066876 -2.656003 -0.679641 -0.783525 2.797768 2.186809 0.067753 -2.227624 -0.084772 3.171472 -2.411370 -0.702699 1.997249 0.901104 -2.867560 0.650933 2.557834 -3.323368 -0.034889 -1.534549 -0.145438 -0.915596 -2.243867 1.754169 0.364633 1.720157 0.092137 0.470789 -0.216424 1.182257 1.017383 0.396981 0.493547 3.821601 2.686285 -0.974452 -0.567124 -2.922723 1.273517 -3.631902 -3.567051 1.265721 0.207776 -2.179077 0.453230 0.249715 3.081404 0.454277 0.135623 -0.579748 0.466726 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -0.899525 -1.131221 -0.501552 -1.572862 1.227210 0.618344 0.764000 -0.544026 -2.354252 -0.200392 0.384845 -1.556779 -0.072906 2.564575 -0.241985 2.538172 3.574808 1.118295 -0.775428 -0.086463 3.047028 -2.174777 2.989795 2.731747 -1.426920 -0.166879 0.067054 1.015125 -0.032794 1.172729 -0.457489 -1.053002 1.053368 -3.404140 -0.097928 -2.560170 0.424705 1.485394 2.440235 -3.710791 0.671730 0.358222 1.128340 -0.727116 -0.860650 0.376617 0.991304 1.825283 -0.774612 0.984822 1.849542 -0.378935 -0.184105 0.678654 0.545324 1.373997 0.028070 0.894986 -1.227631 -0.528097 -0.315669 -1.254951 1.071714 1.337759 2.908369 -0.187083 0.101384 1.415315 0.080677 0.408601 1.250574 0.019795 -0.562911 -1.145030 1.092050 -3.925320 -0.642583 -5.475078 -0.575183 -5.764346 -1.224425 -0.065284 1.447070 -0.490575 1.509126 -0.037293 1.811107 -0.776515 -0.273342 1.715164 2.017513 -2.123841 -1.091731 -1.705066 -1.091633 0.719102 -1.094533 -0.768841 2.558572 -0.359858 -1.625704 -1.507708 1.727642 1.217799 -0.557634 -2.110287 0.403157 1.984249 -1.670096 -2.572834 -0.711412 1.280492 -1.044456 -3.306661 1.136935 -1.606321 0.763803 0.472622 -0.779395 -2.187766 0.431401 1.255688 -0.684754 -1.561257 -0.024654 2.244427 0.592218 0.532112 0.558954 -0.198031 -0.142042 3.585002 1.424141 -1.434082 0.052434 0.611740 -1.597743 0.627108 -2.093612 -1.711970 1.414909 -2.532863 -0.030556 1.035393 -1.359035 0.160877 3.462425 0.879614 0.763628 7.404025 0.207503 2.784141 1.509454 -1.944780 2.442932 -0.289682 0.220701 0.769680 1.481176 -0.368660 -4.285091 -1.850937 0.634225 1.839045 1.811160 -3.013153 -2.526645 -1.054604 0.276808 0.740528 -0.409652 0.675586 0.050560 -1.779742 -0.237380 0.901458 5.121462 -1.240705 0.115893 1.141912 1.041083 -2.088126 -4.707719 -1.061825 -2.956375 0.070853 -0.806904 -0.270423 0.961791 2.555162 -4.451910 1.937860 -1.285847 -0.199213 1.923733 0.593277 -2.292765 -4.842311 -0.677333 1.076899 3.271666 -0.487611 0.898028 0.987107 -1.687524 -0.055163 -0.078671 0.146092 -0.354854 0.816297 -0.599046 -1.220605 -0.771172 0.899033 -0.848814 -1.441310 0.474624 1.083273 1.430103 -3.300003 1.532884 -0.280369 -0.659306 1.311910 0.451533 1.755162 -1.721436 -2.144686 1.492352 0.440011 0.069499 -1.378672 0.417503 1.602732 0.076878 -0.531928 -0.319800 -3.324444 1.181319 -1.206360 1.520872 0.735761 -0.531732 1.358144 0.216617 -0.977418 -2.928755 -0.692374 -1.691708 -0.757852 -1.872232 -1.649701 -0.367123 2.242266 1.607406 0.848145 -1.090615 0.037496 3.028763 -2.324059 -0.298376 1.918234 1.101815 -2.137326 0.205903 2.196793 -3.190500 -0.286121 -0.787232 0.185108 -0.026000 -1.208299 1.115217 -0.116096 0.940605 -0.332180 0.288337 0.237312 0.749791 1.176526 0.383425 -0.379779 3.499905 2.592066 -0.928153 -0.834914 -1.609295 0.316537 -2.323799 -2.419492 0.290946 1.480424 -2.080702 0.764779 1.704746 2.620497 -0.024281 0.292255 -0.191338 -0.737313 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = -0.303193 -0.524715 0.258231 -0.868217 0.527090 -0.132517 0.340061 -0.137037 -1.184272 -0.370348 0.440703 -0.993722 -0.288021 1.100883 -0.279392 0.609384 1.389316 0.416626 -0.411293 -0.331350 0.918759 -0.704362 1.252819 1.286705 -0.877392 0.023252 -0.206886 0.659748 0.403800 0.422828 0.040947 -0.353059 0.345933 -0.740547 0.086323 -0.817820 0.132881 0.480977 0.494973 -1.543467 0.267319 0.332607 0.485215 -0.189339 -0.129923 0.793056 0.520968 0.822477 -0.394601 0.596239 0.962379 -0.173032 0.059581 0.234698 0.204935 -0.030605 0.429841 0.171464 -0.541110 -0.117177 -0.083143 -0.759957 0.250314 0.757197 1.269599 -0.080965 -0.026755 0.223342 0.254483 0.320095 0.736646 0.102065 -0.062979 -0.315074 0.544049 -1.046227 0.011217 -2.197220 -0.107982 -2.751765 -0.663495 0.048968 1.377668 0.018638 0.129927 -0.095702 0.871425 -0.024655 -0.268280 0.796743 0.920891 -0.538367 -0.522192 -0.444339 -0.593347 0.506303 -0.529784 -0.082779 0.816561 0.373436 -0.755879 -0.190413 0.577291 0.166783 -0.336904 -0.271674 0.117527 0.816492 -0.986618 -0.504496 -0.233297 0.697835 0.196258 -1.381320 0.310697 -0.754066 0.612670 0.135365 -0.397420 -0.213308 0.128345 0.108497 -0.405969 -0.006969 -0.904821 0.926512 0.170787 0.447987 0.132907 0.096848 0.123687 0.915615 0.281892 -0.756748 0.025887 0.157894 -0.433400 0.473125 -0.806065 -0.572113 0.806049 -0.836952 0.200787 -0.006094 -0.601291 -0.372708 0.739308 0.428040 0.195749 2.425939 0.149712 1.235429 0.768960 -0.617839 0.702176 -0.044878 0.226125 0.496322 0.625058 -0.204237 -0.896019 -0.838648 0.373210 0.936627 0.737706 -1.198688 -0.597346 -0.050443 0.046405 0.212653 0.065031 0.213984 0.000316 -0.665513 -0.172035 0.478524 1.620686 -0.136852 -0.376378 0.246969 0.395106 -0.559942 -1.320216 -0.255745 -0.467762 0.223822 -0.183292 0.047579 0.552722 1.163261 -2.342903 0.905101 -0.126748 0.157784 0.777028 0.153842 -0.971604 -2.022194 -0.260332 0.331700 1.243506 -0.044389 0.038517 0.631674 -0.834622 -0.073486 0.020382 -0.007815 -0.276429 0.400611 -0.053184 -0.294914 -0.380182 -0.174671 -0.281465 -0.001650 -0.084975 0.616035 0.407874 -1.698917 0.630202 -0.245634 -0.470174 0.024229 -0.039536 0.605860 -0.844824 -0.801130 0.324369 -0.172374 -0.717697 -0.955614 0.100736 0.469020 -0.224518 -0.037287 -0.237264 -0.963212 0.833261 -0.737850 0.696720 0.412986 -0.324185 0.737517 0.467289 -0.256114 -0.895987 -0.066650 -0.136613 -0.554648 -0.670263 0.090861 -0.225391 0.666741 0.689355 0.190405 -0.404884 0.162035 1.199204 -0.675816 -0.576989 0.711783 0.143532 -0.570985 0.769431 0.839991 -1.315943 0.057137 -0.673433 -0.316433 -0.036126 -0.460259 0.753602 0.132792 0.507633 -0.136208 0.230738 -0.110611 0.469376 0.252010 -0.054535 -0.018499 1.531745 1.489187 -0.420408 0.024615 -0.884716 0.346359 -1.044500 -0.981238 0.144650 0.345681 -0.797404 0.277511 0.222094 1.016007 0.238743 -0.186581 -0.388155 0.394228 +PE-benchmarks/rotate-bits-of-an-integer.cpp__main = -0.616716 -0.081696 1.346880 -2.348309 1.573427 0.015206 0.731882 -0.324626 -2.053748 -2.287494 1.473813 -3.603343 -2.774891 2.615054 -1.537606 -0.451601 3.118817 -0.186591 -0.858804 -1.381935 1.373385 0.286341 3.616212 3.398177 -3.566921 -0.165299 0.153399 1.898115 2.005381 -0.147521 1.409404 -1.945809 0.893059 0.323718 0.747804 -0.228201 0.455868 -0.783014 -0.556025 -3.363444 0.029893 1.094656 -0.696148 -0.068211 0.146679 3.151911 2.816956 2.336184 -1.610511 0.934067 3.106886 0.537072 -0.125838 0.281379 -0.465739 -2.946848 0.811502 -0.002069 -1.255376 -0.406555 0.029559 -2.032714 -0.769720 3.053339 3.400876 0.082815 -0.069696 0.254365 0.795533 1.239564 1.171602 0.904735 1.645785 1.311843 2.159647 -0.597238 -0.500501 -5.576349 -0.140365 -7.598342 -2.088117 -0.770329 4.210678 0.369279 -0.932553 -1.020099 2.725007 1.647932 -0.335251 3.247592 3.685424 -0.491290 -1.372831 -1.460078 -1.825017 1.881942 -2.010557 1.509347 0.660031 1.773286 -2.341377 -0.161803 -0.260883 -0.582265 -1.160753 -0.040943 -0.146641 1.822975 -2.816508 1.020179 -1.281259 1.364360 2.242425 -4.634886 -1.358416 -1.292482 2.853786 0.334452 -0.632839 0.819621 -0.099245 -0.071863 -1.039447 0.986003 -2.980173 2.300856 1.442886 1.561323 0.294421 1.183712 1.799345 1.525596 0.529705 -1.500303 -0.485621 -0.505265 -0.548454 1.119793 -1.585356 -0.148697 2.946015 -1.326803 1.781435 0.285394 -1.391248 -3.015268 -0.169939 -0.543702 0.924455 5.723282 0.258060 2.924128 1.849111 -1.820433 0.001247 -0.667656 -0.152696 1.053460 1.321698 0.580739 -0.103767 -1.999556 1.926842 3.029815 1.488411 -3.017692 1.024374 1.209808 -0.170387 -1.527826 0.759227 0.912277 -0.122408 -1.231679 -0.665412 3.175836 2.520233 0.022003 -2.720965 0.281406 2.226309 0.811614 -0.487669 0.001087 1.309944 0.866198 1.851820 0.808327 1.866787 3.291783 -6.650741 1.991831 1.924386 1.055636 1.011640 0.534806 -2.618378 -3.377856 0.895453 1.826197 1.682808 0.697765 -0.481572 0.821682 -2.408020 -0.170317 0.909693 0.419541 -0.811877 1.162042 0.170200 -0.382385 -2.384356 -1.923699 -0.808740 1.407355 -1.357421 1.715996 0.117748 -5.772905 2.931595 -1.098507 -1.801739 -2.235351 -2.055523 2.017475 -3.147183 -2.592684 0.368049 -2.278624 -4.190537 -2.600729 -0.086939 0.489664 -0.046407 1.484317 -1.425216 -1.797787 3.342129 -1.337164 2.036146 1.244019 0.394578 3.259239 0.378189 -0.484864 -1.901395 -1.076052 2.993423 -0.734934 -2.536789 1.839091 -0.434258 1.041087 2.269502 -1.350850 -1.679353 0.126498 1.948389 -1.818304 -2.385731 1.188332 1.082250 -1.319410 3.062655 1.583565 -2.584806 0.110046 -2.899943 -1.208650 -0.923233 -2.438420 1.303628 -0.179362 1.180776 0.889974 0.491336 -1.080553 1.399076 -0.079852 -0.289137 0.353856 2.987082 5.125753 -2.235334 0.692193 -3.627870 2.004760 -3.665269 -4.041713 1.445466 -1.305432 -0.385527 -0.000619 -1.158214 1.838335 0.970527 -1.419403 -2.043668 2.720994 +PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::leftRotate(int, unsigned int) = -0.520510 -0.711624 -0.373120 -1.166207 0.915390 0.378912 0.539748 -1.196095 -1.256746 -0.118257 0.727937 -1.117762 -0.131777 1.291445 -0.537500 1.338721 1.589190 0.240011 -0.591313 -0.500270 1.003194 -0.118006 1.804761 1.649779 -1.064511 -0.040596 -0.140182 0.488453 0.509161 -0.298088 -0.398259 -0.097447 0.763875 -1.610536 -0.464771 -0.584872 -0.027013 0.427214 1.550315 -1.388942 0.279760 -0.285553 -0.090216 -0.094370 -0.175961 0.323742 0.664676 1.020489 -0.031941 0.875820 1.032465 0.034211 0.069661 0.376532 0.222246 0.348012 0.457230 0.534639 -0.382488 -0.432018 -0.176991 -0.190096 0.303980 1.111230 1.087870 0.170094 -0.319583 0.958035 0.778329 0.316808 0.937149 0.369683 -0.314734 0.040345 0.482700 -2.011334 0.139850 -2.560345 -0.381119 -1.979768 -0.826286 0.240654 0.776434 -0.874416 0.974818 0.021123 1.006741 0.476432 -0.458438 0.236395 1.236683 -1.295564 -0.581548 -0.195472 -0.582361 0.067370 -0.664665 0.231133 0.468060 0.545429 -1.058058 -0.652375 0.838374 0.542964 -0.459802 -0.735107 0.432804 0.984279 -0.854600 -0.885253 0.041478 0.690917 -0.440907 -1.695449 0.063965 -0.928195 1.282536 0.026499 -0.556479 -1.175909 0.098828 0.623558 -0.463015 -0.584283 0.158974 0.727198 1.104865 0.464176 -0.125947 -0.083035 0.241671 2.183456 0.213438 -0.990775 0.161074 -0.085331 -0.450745 0.832398 -0.781212 -0.676427 0.719363 -1.186767 0.659796 0.794789 -0.654010 -0.209764 2.138809 0.646198 -0.046661 2.365985 0.157088 1.370937 1.263214 -0.965823 -0.514943 -0.333239 0.512019 0.524225 0.514605 -0.310624 -1.562805 -1.160997 0.747295 1.205960 0.814720 -1.655313 -0.672940 -0.107181 0.069119 -0.090463 -0.155771 0.318262 0.269430 -0.861362 -0.243819 0.815774 2.258632 -0.627858 -0.274628 0.512213 0.229732 -0.413943 -1.518990 -0.724862 -0.870686 0.267935 0.212008 0.701285 0.444562 1.469046 -2.004653 0.906833 -0.537849 -0.003469 0.871930 0.855079 -1.331455 -1.264714 -0.419368 0.348366 0.992346 -0.138281 0.279007 0.791003 -0.882266 -0.085873 0.075176 -0.068178 -0.277283 0.352773 0.395031 -0.573773 -0.409451 0.454365 0.030048 -0.519685 0.243773 0.990311 0.283350 -1.699436 0.814953 0.027611 -0.793055 0.417761 -0.365872 1.393719 -0.896978 -0.781367 0.970506 -0.392268 -0.121212 -0.717853 0.397717 0.455932 -0.032037 0.438696 -0.843515 -0.341003 0.932540 -0.747482 1.014520 0.511516 -0.264699 0.594728 -0.666295 -0.257773 -0.977788 -0.036172 -0.212396 0.277321 -1.091239 -0.223258 -0.064230 1.055009 0.827371 0.152984 -0.866436 0.394194 1.162286 -1.307757 0.222200 0.681383 1.388251 -1.134052 0.524235 0.859666 -1.323068 0.194835 -0.196768 -0.530009 -0.617462 -0.714318 0.933924 0.291405 0.780911 -0.345484 0.434959 0.177751 0.561588 0.255687 0.248235 0.277329 1.387858 1.568149 -0.333069 -0.942554 -1.274227 0.680370 -1.262795 -1.521052 0.718051 0.117819 -1.283490 0.154074 0.063525 1.588633 0.510728 -0.597290 -0.561855 0.339907 +PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::rightRotate(int, unsigned int) = -0.520510 -0.711624 -0.373120 -1.166207 0.915390 0.378912 0.539748 -1.196095 -1.256746 -0.118257 0.727937 -1.117762 -0.131777 1.291445 -0.537500 1.338721 1.589190 0.240011 -0.591313 -0.500270 1.003194 -0.118006 1.804761 1.649779 -1.064511 -0.040596 -0.140182 0.488453 0.509161 -0.298088 -0.398259 -0.097447 0.763875 -1.610536 -0.464771 -0.584872 -0.027013 0.427214 1.550315 -1.388942 0.279760 -0.285553 -0.090216 -0.094370 -0.175961 0.323742 0.664676 1.020489 -0.031941 0.875820 1.032465 0.034211 0.069661 0.376532 0.222246 0.348012 0.457230 0.534639 -0.382488 -0.432018 -0.176991 -0.190096 0.303980 1.111230 1.087870 0.170094 -0.319583 0.958035 0.778329 0.316808 0.937149 0.369683 -0.314734 0.040345 0.482700 -2.011334 0.139850 -2.560345 -0.381119 -1.979768 -0.826286 0.240654 0.776434 -0.874416 0.974818 0.021123 1.006741 0.476432 -0.458438 0.236395 1.236683 -1.295564 -0.581548 -0.195472 -0.582361 0.067370 -0.664665 0.231133 0.468060 0.545429 -1.058058 -0.652375 0.838374 0.542964 -0.459802 -0.735107 0.432804 0.984279 -0.854600 -0.885253 0.041478 0.690917 -0.440907 -1.695449 0.063965 -0.928195 1.282536 0.026499 -0.556479 -1.175909 0.098828 0.623558 -0.463015 -0.584283 0.158974 0.727198 1.104865 0.464176 -0.125947 -0.083035 0.241671 2.183456 0.213438 -0.990775 0.161074 -0.085331 -0.450745 0.832398 -0.781212 -0.676427 0.719363 -1.186767 0.659796 0.794789 -0.654010 -0.209764 2.138809 0.646198 -0.046661 2.365985 0.157088 1.370937 1.263214 -0.965823 -0.514943 -0.333239 0.512019 0.524225 0.514605 -0.310624 -1.562805 -1.160997 0.747295 1.205960 0.814720 -1.655313 -0.672940 -0.107181 0.069119 -0.090463 -0.155771 0.318262 0.269430 -0.861362 -0.243819 0.815774 2.258632 -0.627858 -0.274628 0.512213 0.229732 -0.413943 -1.518990 -0.724862 -0.870686 0.267935 0.212008 0.701285 0.444562 1.469046 -2.004653 0.906833 -0.537849 -0.003469 0.871930 0.855079 -1.331455 -1.264714 -0.419368 0.348366 0.992346 -0.138281 0.279007 0.791003 -0.882266 -0.085873 0.075176 -0.068178 -0.277283 0.352773 0.395031 -0.573773 -0.409451 0.454365 0.030048 -0.519685 0.243773 0.990311 0.283350 -1.699436 0.814953 0.027611 -0.793055 0.417761 -0.365872 1.393719 -0.896978 -0.781367 0.970506 -0.392268 -0.121212 -0.717853 0.397717 0.455932 -0.032037 0.438696 -0.843515 -0.341003 0.932540 -0.747482 1.014520 0.511516 -0.264699 0.594728 -0.666295 -0.257773 -0.977788 -0.036172 -0.212396 0.277321 -1.091239 -0.223258 -0.064230 1.055009 0.827371 0.152984 -0.866436 0.394194 1.162286 -1.307757 0.222200 0.681383 1.388251 -1.134052 0.524235 0.859666 -1.323068 0.194835 -0.196768 -0.530009 -0.617462 -0.714318 0.933924 0.291405 0.780911 -0.345484 0.434959 0.177751 0.561588 0.255687 0.248235 0.277329 1.387858 1.568149 -0.333069 -0.942554 -1.274227 0.680370 -1.262795 -1.521052 0.718051 0.117819 -1.283490 0.154074 0.063525 1.588633 0.510728 -0.597290 -0.561855 0.339907 +PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.584084 -0.219957 0.615949 -0.933987 0.621699 0.087369 0.339738 -0.395957 -0.911051 -0.515303 0.068781 -0.827874 -0.624799 1.339021 -0.518107 0.570432 1.704989 0.597472 -0.318676 -0.495747 1.091202 -0.909670 1.488552 1.503043 -1.145872 -0.188416 0.520107 0.910882 0.509261 0.727186 -0.282303 -0.492236 0.445479 -0.734055 0.469066 -1.144479 0.231287 0.429097 0.220378 -1.801518 0.181225 -0.087720 0.273553 -0.170571 -0.211061 0.876151 0.939635 1.047211 -0.451301 0.325233 0.899333 0.103835 0.026663 0.336005 0.278614 0.209097 0.621650 0.274971 -0.503099 -0.119185 -0.292745 -1.009079 0.376251 1.139380 1.550273 0.048442 0.101542 0.335294 0.062937 0.367808 0.446635 0.255206 0.087856 0.066587 0.664413 -1.600841 0.133211 -2.635427 -0.267749 -2.997260 -0.670222 -0.471209 0.665187 -0.310408 0.439450 0.163689 1.296282 0.159821 0.005488 0.710942 1.470643 -1.014839 -0.494988 -0.735638 -0.688814 0.433848 -0.730947 0.019105 0.728312 0.244620 -0.896721 -0.820587 0.599068 0.299496 -0.410637 -0.433028 -0.060727 1.128521 -1.199794 -0.733316 -0.857901 0.125950 -0.153100 -1.748333 0.469262 -0.929294 1.057899 0.109868 -0.413820 -0.875352 0.299403 0.818582 -0.328237 -0.436612 -0.645526 1.142776 0.382161 0.069326 0.046473 -0.038710 -0.026581 1.107081 0.986817 -0.759162 -0.207350 0.271514 -1.064042 0.028447 -1.123045 -0.485461 1.075816 -1.080869 -0.046056 0.507097 -0.743335 -0.364992 1.273325 -0.099672 0.684353 3.027182 -0.152093 0.904210 0.619569 -1.147723 0.739740 -0.064464 0.068440 0.489384 0.901477 0.220415 -1.490908 -1.083558 0.532507 1.214366 0.886974 -1.222682 -0.872263 -0.465235 0.083669 0.050119 -0.014117 0.367483 -0.458256 -0.774515 -0.260389 0.453702 1.749839 -0.594668 -0.748053 0.355028 0.338266 -0.622439 -1.670337 -0.363643 -0.699949 0.136032 -0.239451 -0.073247 0.621933 1.494453 -2.729224 1.151493 -0.311153 -0.119512 0.985463 -0.032845 -0.667883 -2.043720 0.107333 0.896620 1.251576 -0.002456 0.077433 0.391900 -1.176688 -0.046817 -0.039469 0.601683 -0.474147 0.582976 0.116659 -0.821833 -0.824408 -0.138265 -0.142605 -0.533963 -0.019148 0.631613 0.216776 -2.151472 1.250555 -0.329995 -0.348940 0.416908 -0.046366 0.702664 -1.244495 -1.331746 0.539755 -0.075707 -0.363962 -0.972192 0.143068 0.881158 -0.280134 -0.132041 -0.542109 -1.356438 0.671865 -0.670167 0.819227 0.392684 0.193660 1.226097 0.336043 -0.398959 -1.144443 0.066615 -0.227813 -0.452284 -0.734826 -0.439305 -0.120443 1.050309 1.330484 -0.006479 -0.121593 0.226735 1.417843 -1.133733 -0.596819 0.862190 0.537493 -0.602609 0.562956 0.972102 -1.370188 -0.584171 -0.680990 -0.333603 -0.066076 -0.931130 0.653165 -0.504902 0.417104 0.206714 0.153479 -0.253302 0.604838 0.472609 0.157461 0.023637 1.515501 1.861357 -0.714669 -0.059569 -1.041500 0.434039 -1.588024 -1.036179 0.175638 0.342332 -0.486030 0.326853 0.243664 1.002434 0.096791 -0.051545 -0.209037 -0.145504 +PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = -6.956512 -8.321541 4.018492 -17.437128 17.790141 6.257978 8.459399 -2.296076 -16.540133 -4.395332 5.412367 -10.990931 -10.569694 21.472864 -5.565974 18.649094 16.660450 -1.223727 -8.027947 -5.122276 23.976715 -8.399863 22.212472 7.819805 -22.228734 -1.772377 -4.594379 12.862398 6.441263 12.578071 2.041022 -4.532717 5.544615 -11.997900 6.381221 -8.418241 9.168689 7.137858 2.762326 -22.400586 1.966476 12.557792 4.512737 -2.856729 -5.470721 9.761811 7.264911 19.550372 -10.126931 6.122881 17.074830 -3.685654 -0.302701 6.487535 -2.731665 0.197172 0.660127 -4.350041 -14.945742 -7.502766 -0.411010 -15.755700 9.424841 13.932046 22.941980 -7.688924 3.643984 18.056943 0.587868 7.667378 11.872132 3.142240 -3.490321 -9.469282 17.604324 -13.930852 -6.848202 -21.796156 -3.132443 -39.320729 -13.301511 -7.976435 15.924577 6.722542 9.640888 -8.129936 22.661089 1.188385 -5.835685 17.205016 14.936862 -14.095553 -6.883421 -23.979964 -9.014520 5.170371 -14.617301 -8.913076 14.486263 4.007240 -14.137407 -1.390040 1.733324 5.412996 -5.245464 -14.156523 -6.176420 18.180606 -17.368249 -15.428862 -6.081194 17.507469 -5.150705 -26.951369 5.751035 -7.991927 5.003736 -2.949783 10.516491 -3.413009 0.552348 12.589981 -6.847427 -7.863995 -14.621399 19.105744 11.012851 3.246571 8.294763 7.039705 -2.379626 16.351708 15.222174 -7.821047 -12.776080 5.703841 -3.724907 9.797791 -8.540217 -5.086413 12.000739 -19.855125 -2.851234 6.856071 -3.737679 -1.492512 1.443479 3.588334 11.310548 35.200684 3.306094 15.577989 6.938656 -14.347587 14.409396 -0.926151 0.576933 11.205438 8.048198 -9.376291 -15.567025 -18.031704 9.814375 12.691544 12.039630 -16.501002 -6.545210 -5.066649 0.700185 -2.276922 -6.202196 13.774664 -0.196140 -12.801356 -2.560722 1.973151 28.576598 -8.157838 -5.008752 17.761967 11.381413 -16.508535 -19.307137 -11.247554 -10.499902 -5.622851 0.061753 -0.098101 9.516550 22.637760 -22.982128 15.713765 -0.537732 -0.808356 11.621714 -7.298378 -8.194273 -29.405460 -7.889338 9.019307 18.512559 -8.681830 1.031105 5.775057 -15.007355 9.020372 -0.602685 -0.974280 2.090203 4.508024 -8.410799 -4.297650 -10.985179 -2.077427 -10.280835 2.991268 0.947988 5.006647 8.784042 -20.759885 14.724921 -12.129978 -7.949021 8.939981 5.652451 19.155289 -10.872619 -16.299574 11.939264 2.224284 -13.044525 -19.499418 6.087945 12.200180 -1.987689 -4.767693 -5.948192 -22.363566 12.100035 -10.362249 8.792870 5.164743 0.121427 15.880233 8.717506 -11.863884 -15.322293 -15.366224 -4.805793 -3.281208 -11.112651 -0.497689 -0.544914 17.145030 7.903250 3.481635 -4.412275 -0.926073 22.086778 -15.405886 -11.428380 17.110020 -1.565353 -13.504933 10.057955 20.761382 -16.469856 -5.799356 -13.309371 6.200845 -3.554018 -11.105316 9.844400 1.185952 7.924036 -0.313884 7.414907 -3.107481 6.032287 7.274284 -1.903256 -12.674539 34.090133 19.606504 -13.547727 -4.707922 -13.452483 7.845248 -17.771810 -12.706715 3.285616 4.044261 -4.239838 12.100004 8.151524 17.611177 3.429338 -5.188356 -3.340917 -8.252888 +PE-benchmarks/edit-distance.cpp__main = -3.873590 -1.860947 4.379063 -8.403252 11.779379 3.639599 5.147118 -0.101592 -8.017889 -3.909099 1.121920 -5.685362 -8.993513 12.401144 -3.419940 8.791909 10.976630 0.187903 -2.764733 -3.146455 13.660999 -7.194848 13.969323 5.136385 -13.713372 -0.887332 -0.551622 8.329532 2.243681 10.349708 -1.177581 -4.418998 4.031571 -6.283236 5.132820 -5.894031 5.320881 2.435267 -1.115930 -13.716223 0.329005 6.533372 0.632479 -1.037037 -3.226530 6.642803 7.252446 11.260218 -6.484151 3.030028 9.202204 -2.340962 0.215308 4.674508 -0.996687 0.662862 1.292756 -1.221796 -9.925231 -3.343009 -1.734227 -12.584650 4.446474 8.211946 14.173175 -3.869618 2.672244 9.576858 -2.847144 4.266188 5.539302 2.134918 0.932003 -4.321287 11.770989 -7.198441 -4.421499 -14.251537 -3.580282 -25.105815 -8.171272 -8.252440 7.592233 2.448607 6.276006 -4.199428 13.794764 1.448687 -0.905058 9.298003 11.131716 -9.732642 -4.314349 -14.796986 -5.002114 2.731979 -9.124915 -5.051477 8.282083 0.484034 -8.521723 -3.752362 2.637015 2.694302 -2.804802 -8.321348 -5.053881 11.572680 -11.412455 -8.848746 -8.513244 5.923038 -3.341376 -16.127472 3.242644 -2.946068 4.946179 -0.087130 6.267289 -3.193691 1.483839 9.568092 -3.746758 -5.953672 -6.242648 12.767787 5.837515 0.665753 5.591451 3.449128 -1.532116 9.298716 12.818813 -3.077574 -8.437884 3.109104 -4.430934 4.011132 -5.591097 -2.304288 7.687025 -11.408413 -2.200351 4.695418 -2.706222 -1.169766 1.596348 -0.418380 8.822013 19.816880 0.858498 7.174051 2.008694 -10.084749 9.894530 -0.259343 -0.730295 6.046748 6.215020 -3.306732 -9.739551 -10.600527 5.824383 7.328339 6.941389 -11.044606 -4.423068 -4.773015 2.017330 -1.672946 -3.742403 8.975856 -0.419176 -7.550345 -1.277221 0.738558 17.568926 -6.869136 -7.405697 11.059809 4.751593 -8.792888 -13.099655 -6.607378 -5.044724 -3.866758 -0.576211 -1.217729 4.502354 13.853711 -15.739767 9.553657 -1.596040 -2.310392 7.860461 -5.045939 -2.921435 -16.356607 -2.471791 7.536808 10.855225 -1.719016 -0.252496 1.301319 -9.139321 5.131586 -0.648169 2.404653 1.092789 3.462815 -5.378943 -5.124896 -8.815905 -4.254499 -5.038834 0.526490 0.180800 2.329371 5.148870 -15.973269 10.424675 -7.096809 -4.429660 5.560342 4.147073 10.258355 -7.127951 -12.451946 7.108053 -0.377619 -8.406298 -11.686753 3.621880 7.028489 -0.404017 -4.568840 -3.298752 -14.951142 7.821660 -4.721958 4.970712 3.212595 2.980507 12.456440 7.654003 -8.850983 -9.989035 -7.266626 -1.425382 -3.980085 -6.067470 -2.117441 -0.549901 10.456543 7.824242 2.199126 -0.282849 -2.569355 14.064804 -10.572885 -7.706673 11.982896 0.951920 -6.603958 6.162508 13.294218 -9.313293 -6.969710 -7.667902 3.118495 -1.527006 -8.077958 3.772156 -3.549911 3.130121 2.501075 3.651122 -3.538014 3.439786 3.494057 -0.627064 -9.046332 19.735719 14.561977 -10.887464 -1.081708 -7.229801 4.708566 -12.219627 -7.775962 1.779327 2.412243 -1.196499 7.118300 5.964947 8.912154 0.793302 -3.289536 -1.736070 -7.256874 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.944690 0.419912 1.692729 -3.046449 4.226919 1.827091 1.199719 -0.670022 -2.011258 -1.176685 -0.268846 -1.941571 -2.301725 3.610730 -1.721653 2.111599 4.391711 0.378343 -0.260882 -0.883683 3.842159 -1.397348 4.838171 2.348111 -4.586349 -0.328837 1.183279 2.532356 0.792720 3.552883 -1.090200 -2.348374 1.599086 -2.093038 1.216415 -2.635335 1.301142 -0.037053 0.195851 -4.630594 0.289638 0.207208 -1.194735 0.101197 -0.637762 2.016105 3.590236 3.221954 -2.570425 0.870596 2.992874 0.800089 -0.301235 1.522543 -0.566511 0.450568 1.330336 0.332163 -2.420880 -1.054489 -0.991057 -3.092871 1.142732 3.023313 4.538081 -0.494202 0.814084 2.540184 -0.608561 0.852358 1.487903 0.834341 0.621216 0.262715 3.104816 -3.046919 -0.934026 -6.058519 -1.618537 -7.991142 -2.086833 -2.986616 0.976588 -0.519910 1.827282 -0.239866 3.891888 0.738471 0.943756 2.759860 4.066152 -3.176430 -1.266789 -4.196682 -2.132678 0.857892 -2.328302 -0.844798 1.862786 -0.049451 -2.437924 -2.455592 0.758486 0.733126 -0.924846 -2.534559 -1.055600 3.354427 -3.785560 -2.594818 -2.900320 1.030587 -1.554881 -5.586244 -0.225279 -1.111464 3.227682 -0.018753 1.503899 -2.433079 0.402856 3.740443 -1.216468 -1.716672 -0.390973 3.770740 2.352762 0.553026 1.122174 0.069149 -0.009746 3.626960 4.272331 -1.040624 -2.138085 0.421727 -1.693462 0.020102 -2.570470 -0.360736 2.230827 -3.581089 0.286991 2.922257 -1.374489 -0.706470 1.945172 -1.101744 3.135024 8.651739 -0.440707 2.314267 0.752971 -4.205201 1.650424 0.006145 -0.397326 1.548561 1.943121 0.465727 -3.901222 -3.131803 1.588597 2.265710 2.254204 -4.150068 -1.358741 -1.819688 0.198722 -0.106307 -1.513238 2.414726 -1.177080 -2.430220 -0.325985 0.984835 5.886522 -1.943223 -3.762174 2.767953 1.839388 -2.477079 -3.651618 -1.904245 -1.858077 -0.473358 0.932071 -0.565188 1.346744 4.446134 -7.124556 2.843196 -0.192523 -0.770523 2.268884 -0.594388 -1.000732 -4.067867 0.106162 3.154148 2.981680 -0.113740 0.262145 0.316535 -2.570061 1.197417 0.314517 1.576786 -0.114365 0.907406 -0.168750 -2.821951 -3.054920 -0.889045 -0.802153 -0.263304 -0.412736 1.065322 0.325306 -7.237683 3.707654 -1.812619 -1.429909 1.963490 -0.041779 3.427322 -3.092521 -4.178978 2.162852 -0.470698 -1.605352 -2.773340 1.141416 2.360154 0.489686 0.339907 -1.907981 -5.200456 1.415293 -1.331924 1.122653 1.531491 1.642562 4.344709 -0.024073 -2.082530 -4.118654 -1.849951 0.616529 -0.449683 -2.100318 -1.017821 -0.387633 3.349720 3.819993 -0.066451 -0.224704 -1.068874 3.828123 -3.965209 -1.523554 3.574295 1.673767 -2.638527 1.244686 3.706252 -2.870916 -2.495262 -1.504431 0.704698 -0.327697 -2.828121 1.047214 -1.842667 0.760852 1.295884 0.892791 -1.626232 1.437282 0.597904 0.650108 -1.823665 4.748521 5.577787 -3.362444 -0.106556 -2.181098 1.619877 -5.051522 -3.580903 1.017678 -0.569838 -0.283152 1.947154 1.081761 2.960698 -0.253670 0.152707 -0.002746 -1.859913 +PE-benchmarks/edit-distance.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/edit-distance.cpp__std::char_traits::length(char const*) = -0.096722 -0.045213 0.204765 -0.277349 0.182037 -0.060294 0.081948 -0.083201 -0.288270 -0.214539 0.091606 -0.286591 -0.172814 0.324777 -0.197587 0.090201 0.432303 0.138259 -0.066975 -0.216012 0.208055 -0.209370 0.446878 0.442908 -0.406809 -0.010111 0.094699 0.296655 0.236799 0.191505 0.007800 -0.164444 0.120905 -0.093997 0.120114 -0.267535 0.090564 0.079788 -0.008443 -0.511359 0.039391 -0.014510 0.105743 -0.000388 -0.016886 0.316994 0.264207 0.287020 -0.139102 0.198517 0.362074 0.096987 0.014978 0.079818 0.018305 -0.068402 0.248518 -0.097265 -0.147682 -0.001123 -0.006286 -0.343971 0.038885 0.343397 0.458152 -0.014877 0.051499 0.036609 0.020536 0.113561 0.203804 0.064308 -0.014122 0.071044 0.174263 -0.346001 0.079975 -0.735793 -0.065503 -0.959904 -0.212990 -0.155724 0.356918 0.027035 0.030658 0.116340 0.346152 0.121498 0.013729 0.221372 0.370789 -0.201987 -0.164343 -0.130021 -0.195898 0.204185 -0.239200 0.049109 0.080658 0.214210 -0.223537 -0.139192 0.185917 0.033321 -0.139697 -0.032816 -0.042303 0.248312 -0.465653 -0.112602 -0.208493 0.080003 0.067811 -0.476420 0.104333 -0.254164 0.399065 0.022522 -0.047768 -0.091381 0.013866 0.153857 -0.087880 0.019831 -0.393105 0.244930 0.095993 0.082269 0.021460 0.018513 0.064582 0.270423 0.149713 -0.229026 -0.090342 0.069401 -0.199083 0.047220 -0.295014 -0.105285 0.288597 -0.275142 0.125456 0.055223 -0.195964 -0.234847 0.183917 -0.029378 0.183742 0.670335 0.034321 0.278283 0.204750 -0.268159 0.053431 -0.057517 0.042115 0.187120 0.216149 0.003374 -0.144640 -0.288536 0.093140 0.318943 0.212673 -0.292335 -0.165872 -0.042755 0.006390 0.047372 0.013133 0.093134 -0.151714 -0.183920 -0.073819 0.149293 0.411462 -0.003034 -0.107453 0.043481 0.111836 -0.180226 -0.299978 -0.053658 -0.047225 0.103540 -0.007665 0.033724 0.165214 0.399068 -0.870327 0.301069 0.002725 0.065933 0.165200 -0.016248 -0.204466 -0.550638 0.073261 0.185138 0.318212 -0.017814 0.076468 0.196601 -0.316276 -0.029291 -0.001260 0.127424 -0.143785 0.131775 0.121774 -0.207880 -0.252010 -0.076832 -0.009458 0.012316 -0.058051 0.188265 0.082269 -0.722256 0.297119 -0.170421 -0.186049 0.019174 -0.072150 0.204790 -0.396789 -0.290060 0.085525 -0.087582 -0.237166 -0.298288 0.016060 0.189855 -0.157940 0.027775 -0.125107 -0.224554 0.189426 -0.207519 0.126750 0.139677 0.015755 0.319574 0.003620 -0.047019 -0.259577 0.092416 0.028839 -0.232718 -0.159655 0.165307 -0.054619 0.214941 0.394730 0.000000 -0.077798 0.178885 0.372993 -0.225689 -0.264347 0.195604 0.148281 -0.115828 0.300770 0.219456 -0.413800 -0.103842 -0.245007 -0.107693 0.054741 -0.228486 0.253455 -0.102066 0.167557 0.084033 0.100300 -0.138993 0.238611 0.032313 0.003074 -0.001002 0.445741 0.550241 -0.160661 0.081559 -0.321270 0.098058 -0.439212 -0.318371 0.023184 0.063264 -0.132596 0.118207 -0.076956 0.293369 0.087360 -0.010288 -0.109960 0.093829 +PE-benchmarks/edit-distance.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -1.533596 -0.188933 2.070476 -4.448228 5.174714 1.811431 1.646188 -0.597310 -3.243866 -1.806904 -0.126507 -2.859501 -2.943544 4.702638 -2.069150 3.075018 6.297585 0.853093 -0.872288 -1.408360 5.337265 -2.221914 6.487498 3.815006 -5.958630 -0.472085 1.378510 3.841798 1.403689 3.889753 -1.565659 -2.508836 1.996699 -3.096590 1.792116 -3.809600 1.838984 0.384651 0.436876 -6.479256 0.539118 0.255220 -0.967649 -0.085041 -1.107647 3.163708 4.387852 4.536904 -3.466550 1.033785 4.562273 0.762600 -0.470532 2.044075 -0.782227 0.748596 1.524815 0.660179 -3.018401 -1.606687 -1.011034 -4.435743 1.857609 4.038780 6.115844 -0.793316 0.906493 3.443399 0.008280 1.067687 2.459258 1.028611 0.707888 -0.560039 4.174598 -4.953836 -1.080873 -8.962505 -1.780991 -11.727424 -3.039106 -3.745751 2.117254 -1.058651 2.433758 -0.350272 5.640201 0.427712 1.017395 3.675555 5.073801 -4.505375 -1.914810 -5.637837 -2.833899 1.492185 -3.360231 -1.344629 3.027311 0.498910 -3.347958 -2.811032 1.425811 0.977363 -1.406005 -3.625778 -1.139409 4.553277 -4.925551 -3.524395 -4.022641 2.026300 -1.483401 -7.393903 0.452778 -2.123992 4.321246 -0.277654 1.427611 -3.117508 0.366892 4.445925 -1.832007 -2.034030 -1.334656 5.033172 3.041637 0.562854 1.649014 0.169569 -0.023841 4.978646 5.664532 -2.097587 -2.995241 1.018613 -2.857329 0.285633 -3.904844 -0.941036 3.818782 -5.023587 0.234651 3.399095 -2.123451 -0.992220 3.633554 -1.007319 3.956643 11.951805 -0.234793 3.301805 1.536310 -5.142162 2.867323 -0.161580 -0.308044 2.437838 2.880413 0.120083 -5.657157 -4.493210 2.115355 3.552625 3.299997 -5.727807 -2.118346 -2.072503 0.511285 -0.144752 -2.039809 3.175723 -1.255936 -3.120351 -0.623260 1.595107 7.955713 -2.322621 -4.176990 3.520316 2.658143 -3.572467 -5.663425 -2.663875 -2.902218 -0.535671 0.959037 -0.420837 2.173748 6.269885 -9.677430 3.839407 -0.612712 -0.650154 3.373769 -0.562713 -1.589369 -6.565079 -0.028215 3.881327 4.643687 -0.568705 0.521262 0.858252 -3.700302 1.272050 0.386126 2.009677 -0.313273 1.254204 -0.210369 -3.273636 -3.637295 -1.232123 -1.308848 -0.352426 -0.088416 1.716476 0.408836 -9.371288 4.971517 -2.557247 -1.953305 2.551834 -0.292036 4.603952 -4.381431 -5.396002 3.228607 -0.131979 -2.008161 -4.044928 1.603954 3.715034 0.041946 0.090349 -2.499431 -7.067443 2.598812 -1.955119 2.144029 1.891014 1.582129 5.666096 0.356059 -2.480476 -5.552136 -2.087647 -0.157435 -0.967751 -3.014247 -1.428898 -0.403998 4.506297 5.013331 -0.076512 -0.039064 -0.471306 5.384562 -5.609036 -2.297984 4.651064 2.652902 -3.413030 2.421393 4.981286 -4.679496 -3.270843 -2.509214 0.652339 -0.143000 -3.949050 1.954243 -2.315929 1.470900 1.763964 1.310239 -1.651017 2.186187 1.169803 0.794625 -2.369426 7.007043 7.872776 -3.887195 -0.383049 -3.500496 2.140796 -6.764878 -4.748907 1.297203 -0.137715 -1.012261 2.595044 1.848904 4.337018 -0.331295 0.044633 -0.473998 -2.134621 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.283003 0.165987 0.499465 -1.142342 1.220625 0.704424 0.075645 -0.123326 -0.679680 -0.324561 -0.372602 -0.592827 -0.567202 1.100454 -0.363173 0.615590 1.090408 -0.019016 -0.243929 -0.152621 1.103728 -0.073765 0.975556 0.241135 -1.121614 -0.065685 0.335288 0.906334 0.148267 1.195006 -0.288495 -0.853531 -0.095973 -0.157012 0.349332 -0.693630 0.474407 0.264768 -0.033366 -1.230488 0.161043 0.341356 -0.180475 -0.028582 -0.265902 -0.120132 0.840508 0.868136 -0.690255 -0.112404 0.991558 0.660838 -0.266290 0.331147 -0.262979 0.219090 0.417405 -0.353258 -0.484398 -0.329634 0.005623 -0.468980 0.288628 0.725874 1.080322 -0.180423 0.100241 0.748072 -0.037316 0.240894 0.263736 0.115364 -0.120998 0.006430 0.568156 -0.535017 -0.238678 -1.337223 0.096689 -1.578389 -0.408279 -0.769353 0.127992 0.573364 0.237025 -0.166495 1.201582 -0.166576 0.151835 0.813509 1.034833 -0.608865 -0.203220 -1.494019 -0.792068 0.382795 -0.527087 -0.615532 0.048852 0.399163 -0.387494 -0.633155 -0.084792 0.006652 -0.311727 -0.516148 -0.390198 0.945086 -1.065783 -0.540861 -0.557597 0.882321 -0.296454 -1.316286 -0.564752 -0.435001 0.236998 -0.374780 0.524091 -0.674490 0.053504 0.890499 -0.514342 -0.183680 -0.503277 0.813564 0.686005 -0.275125 0.200638 -0.081657 0.157274 0.832385 0.608394 -0.543158 -0.735297 0.385994 -0.108832 -0.319227 -0.841485 0.033877 0.174212 -0.992554 0.095620 0.882711 -0.291323 -0.121915 -0.182259 -0.585014 0.836058 2.567308 -0.122271 0.308539 0.025250 -0.971592 0.512206 0.269576 -0.411134 0.326076 0.147623 0.198522 -0.693673 -0.865762 0.518357 0.590953 0.667700 -0.566205 -0.242408 -0.487927 -0.183996 0.062285 -0.324050 0.685340 -0.621701 -0.378479 -0.295071 0.142681 1.517054 -0.103874 -0.938541 0.934253 0.927326 -0.902615 -0.548548 -0.472979 -0.711311 -0.325258 0.453462 -0.259347 0.663659 1.250429 -1.979051 0.819790 0.460199 -0.320302 0.377103 -0.489020 0.065271 -0.834925 -0.180259 0.950125 1.047042 -0.451753 0.374573 -0.171086 -0.714490 0.339546 0.281189 0.361181 -0.085868 0.065738 0.019564 -0.613376 -0.611479 -0.042574 -0.631768 0.050706 -0.304550 0.165281 0.028851 -1.740824 1.134855 -0.539278 0.117693 0.568086 -0.102046 0.966028 -0.740322 -0.922193 0.684452 0.302108 -0.219138 -0.330247 0.370305 0.941895 0.031899 0.360940 -0.485425 -1.386936 0.141659 -0.204835 0.182345 0.294987 0.403150 0.492204 0.043706 -0.270049 -0.883293 -0.602173 0.230685 0.155697 -0.303751 -0.077014 0.033039 0.844821 0.799839 0.006423 -0.265852 -0.344694 0.936783 -0.516429 -0.310484 0.718015 -0.296379 -0.935508 0.166993 0.921688 -0.662377 -0.717651 -0.709834 0.616399 -0.147067 -0.797058 0.172258 -0.326591 0.088183 0.669422 0.018782 -0.656607 0.531562 0.371473 -0.202031 -0.526709 1.472731 0.679297 -0.452805 0.269608 -0.669102 0.366745 -1.278334 -0.772667 0.086181 -0.420159 -0.142093 0.454790 0.067288 0.761949 -0.334072 0.811739 0.155777 -0.686819 +PE-benchmarks/edit-distance.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/sieve-of-eratosthenes.cpp__SieveOfEratosthenes(int) = -2.364402 -3.017287 -1.582863 -4.645234 3.267184 2.753140 1.792812 -2.620688 -5.985323 -0.336432 2.295095 -5.537987 -0.346638 6.421880 -1.586799 5.758475 8.136511 1.397211 -2.907708 -0.482486 6.523732 -1.542371 7.242986 6.708730 -4.258560 -0.770546 -1.135603 2.589397 1.047404 0.182212 1.096371 -2.249564 2.424622 -6.690734 -1.911409 -3.815608 1.485513 2.944836 5.409608 -8.019785 1.621854 0.203820 1.781576 -1.773437 -2.297900 -0.173940 2.717462 5.047491 -1.336951 1.763774 4.596338 0.419341 -0.837319 1.508001 0.188787 1.062695 -0.704689 0.251231 -2.397682 -2.563720 -0.189564 -1.115456 1.843200 4.498199 6.893081 0.816467 0.048425 4.079560 1.262330 1.424898 3.586356 0.404240 -1.722318 -1.081603 2.568918 -7.577797 -1.791987 -10.647277 -1.120833 -9.714304 -2.921564 0.721087 4.256001 0.119544 3.224247 0.850037 4.655961 -1.089067 -1.650129 6.275454 5.353855 -4.639947 -2.768318 -4.042639 -3.720759 2.159456 -2.893755 0.459884 3.268322 1.725980 -4.423238 -3.108774 2.042561 2.708264 -1.627194 -5.164276 1.571403 4.153045 -3.472132 -4.846501 0.560924 5.062456 -1.550995 -7.685220 -0.944767 -4.349917 1.903949 0.367446 -1.691146 -4.592193 0.254910 2.021947 -1.733424 -2.887588 -0.932887 3.242690 2.418655 2.282636 0.610831 0.479026 0.864311 8.425517 1.061068 -3.844978 0.557198 0.279689 -1.338088 2.507486 -4.252530 -3.383053 2.134876 -5.623460 1.345109 3.502086 -3.062835 -2.054275 4.335266 2.217936 1.403627 15.613060 1.309295 6.430268 4.822170 -4.723048 3.021888 -2.205042 0.831767 1.996783 2.456566 -1.173626 -7.742382 -5.246237 2.544859 4.914737 4.346203 -5.325453 -3.767214 -0.663335 -0.009906 0.510042 -0.724900 1.907884 -0.269334 -3.971989 -0.827438 4.536591 10.566329 -1.897819 1.198580 3.300273 3.410623 -3.188393 -7.779861 -2.698130 -5.045607 0.737379 1.328338 0.663609 3.003888 6.738560 -8.274611 4.354679 -0.848167 1.501326 2.823368 2.043674 -5.892416 -7.670158 -1.500591 2.726073 6.543211 -1.720045 1.258204 2.656236 -4.424356 -0.148999 1.178057 -0.556121 -0.706338 1.924655 -0.735394 -2.185257 -2.496319 2.900217 -2.649009 -1.486213 0.360766 3.422600 1.619955 -4.783024 4.358655 -0.671963 -2.007202 1.780041 -1.577179 5.892994 -4.325950 -4.679188 3.890304 -0.063776 -0.836096 -2.758767 1.376817 3.531715 1.410010 1.505947 -2.126869 -6.108916 3.442844 -2.273687 4.046573 1.974592 -1.283064 2.099472 -1.362546 -1.729610 -5.802444 -3.163081 -1.814577 0.442651 -5.210235 -2.445317 -0.795254 5.362338 3.245527 0.638738 -4.981002 0.548763 6.301379 -4.695817 -1.782408 3.736997 1.497433 -5.565617 1.128336 4.685445 -7.100468 0.724457 -2.293597 0.767255 -1.196994 -3.990374 3.133560 1.495208 3.318210 -1.038066 1.109018 1.186109 2.301924 2.733197 1.485627 0.357314 8.037187 4.119642 -1.017129 -2.377484 -5.439074 1.574297 -6.159813 -6.544807 2.426301 1.880744 -4.792416 1.355705 1.474790 6.095699 0.673236 0.337527 -1.447281 0.391720 +PE-benchmarks/sieve-of-eratosthenes.cpp__main = -0.582305 -0.567607 0.404207 -1.626030 0.992813 0.256556 0.505792 -0.326577 -1.802163 -0.840747 0.686742 -2.003575 -0.870557 2.011074 -0.777686 0.730986 2.617288 0.450815 -0.739007 -0.612219 1.576260 -0.548641 2.355080 2.314766 -1.899874 -0.193939 -0.125024 1.242422 0.832479 0.351670 0.569676 -1.021684 0.549209 -0.930515 0.181132 -1.073045 0.464725 0.422267 0.446703 -2.780764 0.347471 0.481241 0.433916 -0.362328 -0.311062 1.099484 1.369329 1.620776 -0.757873 0.560058 1.778036 0.313330 -0.150919 0.349819 -0.033286 -0.520690 0.370470 -0.059567 -0.921328 -0.399768 -0.030151 -1.064150 0.239533 1.754209 2.392148 0.155664 0.081740 0.575052 0.439990 0.653572 1.058151 0.249102 0.104134 0.115164 1.082393 -1.618676 -0.335345 -3.756377 -0.135112 -4.512864 -1.148576 -0.309518 2.198191 0.275198 0.137126 -0.108677 1.719045 0.151430 -0.196420 2.118388 2.066080 -0.894029 -0.955669 -1.323024 -1.305356 1.083611 -1.120794 0.283923 0.896277 0.928364 -1.456547 -0.587178 0.445750 0.304968 -0.632018 -0.701887 0.172078 1.414818 -1.694559 -0.605415 -0.505821 1.330490 0.452945 -2.743145 -0.290107 -1.328615 1.144292 0.195419 -0.490444 -0.515889 0.064444 0.458397 -0.679423 -0.033688 -1.538354 1.483411 0.615401 0.707977 0.190091 0.393492 0.545770 1.695885 0.486932 -1.222297 -0.104783 0.165166 -0.651300 0.509920 -1.448895 -0.750424 1.401636 -1.468431 0.602926 0.528423 -1.053774 -1.265310 0.578289 0.180091 0.758088 4.696401 0.251045 1.960628 1.268874 -1.403717 0.858334 -0.357545 0.106105 0.677898 0.987813 -0.044335 -1.454616 -1.585040 0.842972 1.796054 1.305257 -1.721197 -0.557291 0.023160 -0.133495 -0.079789 0.095392 0.591097 -0.325747 -1.114805 -0.382170 1.498927 2.741926 -0.173956 -0.631989 0.545699 1.225234 -0.581534 -1.700209 -0.380809 -0.537717 0.426612 0.473249 0.190910 1.181205 2.259330 -3.908287 1.575809 0.326367 0.561305 0.912140 0.244873 -1.629669 -2.865060 -0.018594 1.093385 2.011350 -0.135552 0.005470 0.786027 -1.569834 -0.082628 0.376512 0.251096 -0.444298 0.692315 -0.075625 -0.645725 -1.171747 -0.189662 -0.732624 0.169362 -0.391654 1.021281 0.389432 -2.737387 1.717476 -0.567286 -0.784845 -0.233083 -0.701905 1.404291 -1.841099 -1.662543 0.670004 -0.461435 -1.447722 -1.433192 0.126715 0.984060 -0.016521 0.532994 -0.730927 -1.842747 1.573017 -0.940980 1.300584 0.734284 -0.165697 1.459840 0.336159 -0.388462 -1.617630 -0.742169 0.329357 -0.428885 -1.500306 0.242223 -0.315094 1.285004 1.444351 -0.239426 -1.200183 0.234283 1.975440 -1.213056 -1.227349 1.082672 0.160890 -1.205440 1.209072 1.405932 -2.304751 -0.051013 -1.406059 -0.216944 -0.221064 -1.373556 1.006056 -0.003521 0.934503 0.126395 0.358833 -0.279629 0.867344 0.493463 0.063369 0.124402 2.585744 2.334404 -0.823486 0.082931 -1.997139 0.824786 -2.271532 -2.162751 0.530978 0.102999 -0.956448 0.440649 -0.025763 1.630143 0.359619 -0.168208 -0.790105 0.780023 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__maxChainLength(Pair*, int) = -3.759683 -4.062767 -1.805117 -9.059379 5.572091 6.948594 2.572900 -5.234676 -9.152553 -0.278262 3.863657 -7.740612 -0.159866 9.849340 -3.057855 8.874675 11.611820 0.952135 -5.151210 -0.610643 10.521528 -1.724710 11.390780 9.580999 -7.294129 -1.125771 0.053227 4.891130 2.278722 2.059268 0.798014 -3.112862 2.941798 -10.179176 -3.039280 -5.671258 1.984190 3.430117 8.214341 -11.704836 2.569854 -0.105153 0.535055 -2.705966 -3.566522 -1.918122 4.618520 7.815689 -1.834756 1.847467 7.733925 1.535729 -1.941690 2.018446 1.739332 2.374615 1.054179 1.158409 -2.175300 -4.883247 -0.373039 -0.532633 3.032899 7.657018 9.720312 0.794082 0.182272 6.408032 1.561053 2.087686 5.266103 0.882633 -4.497492 -0.510777 3.693192 -12.118455 -0.858015 -14.136208 -1.373540 -12.459092 -4.125361 1.410440 4.535800 0.173251 5.894428 1.545976 7.461881 -2.033213 -2.991531 8.170705 8.015063 -6.995615 -3.516620 -5.795009 -5.914955 2.641943 -4.245533 0.245087 4.380164 2.086570 -6.626496 -3.519327 2.631905 5.141148 -3.034201 -7.585258 2.110639 6.494471 -5.619981 -7.360938 2.052214 8.546228 -3.422298 -13.050795 -3.903367 -7.614416 4.021592 -1.391598 -2.241622 -8.514081 0.456654 5.121096 -2.152370 -5.059322 0.499439 4.855920 5.229648 3.815493 0.506434 0.106388 1.498176 13.546248 2.305657 -5.238308 0.614244 -0.267042 -2.168530 3.820213 -5.357859 -3.875313 1.412121 -8.362665 1.981105 7.605551 -4.097065 -1.881624 7.603877 3.560577 1.937587 31.068518 1.144357 10.678885 7.750683 -8.062752 2.838242 -2.895131 0.781368 3.199086 2.679680 -1.563553 -14.306939 -7.743880 4.567892 7.609145 6.406002 -9.406183 -3.591501 -1.144251 -1.023973 0.666256 -1.550119 1.849381 -0.522803 -6.158054 -1.932307 7.269577 17.105503 -3.328474 -0.674610 5.607415 4.824836 -6.369108 -11.060696 -4.251389 -7.460269 1.738003 2.562012 0.439461 5.327131 10.287431 -12.627295 6.485137 -1.125887 0.567594 6.297231 2.931682 -8.410810 -10.692603 -2.471802 4.476087 9.634137 -3.965239 1.867381 4.058500 -6.991601 -0.173915 2.047338 -1.214354 -1.494763 2.982187 0.613750 -3.965010 -4.088780 4.274323 -3.540660 -1.503356 -0.099743 5.143414 -0.699108 -9.673314 7.572922 -0.087891 -2.910850 2.840236 -2.690068 8.961804 -6.947597 -7.793936 6.505509 1.074348 -0.293482 -3.375475 2.022281 5.988940 3.040171 3.282992 -5.257272 -9.322553 3.956841 -4.169553 6.418344 3.072322 -1.112213 3.540819 -4.486874 -1.449380 -9.398822 -5.423649 -1.863909 2.118720 -8.986892 -4.227052 -1.574456 8.585398 4.376650 0.601421 -7.046293 0.952673 9.310680 -7.264690 -1.624658 4.745066 4.309605 -10.406750 0.378028 6.537002 -9.358326 0.974263 -3.032754 -0.288806 -2.972378 -7.021395 5.645611 3.351363 6.099696 -1.119429 2.399807 1.398093 3.272825 3.791329 2.949568 1.538888 10.740561 7.320558 -1.615608 -4.972399 -8.257540 3.047957 -9.604153 -10.287691 4.601142 1.350604 -6.387756 1.627189 1.672557 10.202140 1.660788 0.796868 -0.424730 0.315964 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = -0.820632 -0.641170 0.256969 -2.301513 1.616315 1.339526 0.752023 -0.815496 -2.466590 -0.693606 0.895615 -2.556367 -0.890373 2.765599 -0.854875 1.580359 3.353608 0.406115 -1.188964 -0.368717 2.248161 -0.566647 3.167812 2.829929 -2.237283 -0.083169 -0.131044 1.385475 0.530679 1.046881 0.171652 -1.437073 0.771153 -1.696202 -0.228836 -1.372176 0.323178 0.501157 1.175558 -3.546226 0.568321 0.725145 0.239214 -0.655182 -0.564564 0.408789 1.918171 2.100080 -0.577465 0.616453 1.983617 0.339075 -0.205089 0.524386 0.607523 0.083166 0.701365 0.023840 -1.055082 -0.875073 -0.231714 -0.894758 0.300960 2.200518 2.768914 0.170135 -0.081909 1.008079 0.273546 0.709304 1.264757 0.392432 -0.360825 0.136131 1.187494 -2.208734 -0.140469 -3.770428 -0.269656 -4.568366 -1.501844 -0.057862 2.167913 0.587307 0.904234 -0.209602 2.319697 -0.333398 -0.504562 2.155086 2.711669 -1.618701 -1.106183 -1.555164 -1.525220 0.943450 -1.237095 0.061963 1.159794 0.598815 -2.003556 -0.735905 0.759082 0.827574 -0.898288 -1.147970 0.362628 1.934042 -2.059316 -1.290332 -0.287705 1.929928 -0.083923 -3.693096 -0.890683 -1.612810 1.011725 0.051263 -0.824573 -1.593773 0.371635 1.027117 -0.827391 -0.728625 -1.058890 1.893524 1.041045 0.967957 0.297444 0.335343 0.699183 2.916616 0.777758 -1.417596 0.105859 -0.010415 -0.611668 0.891844 -1.384759 -0.968729 0.646479 -2.100719 0.594340 1.413789 -1.321336 -0.777712 0.779541 0.623973 0.685152 7.466558 0.014454 2.836218 1.754548 -2.206158 1.097522 -0.586803 -0.048307 0.661384 1.060620 0.045519 -2.803047 -2.041590 1.405099 2.405448 1.760709 -2.494857 -0.392284 -0.158734 -0.201475 -0.032186 0.094284 0.568069 0.014677 -1.682241 -0.592966 1.887100 4.407897 -0.703254 -1.180630 1.198895 1.186962 -0.983894 -2.406108 -0.777431 -1.197554 0.482572 0.605506 0.032509 1.512764 2.967000 -4.306952 2.105673 -0.029324 -0.027533 1.918842 0.450308 -2.084147 -3.113847 -0.488478 1.515068 2.773268 -0.456579 0.081067 0.798373 -2.064672 -0.155104 0.496750 0.056166 -0.602012 1.015946 0.069823 -1.176385 -1.317831 -0.060931 -0.836988 -0.090174 -0.550640 1.367030 0.252446 -3.494545 2.365086 -0.090685 -0.879985 0.098671 -0.668664 1.959709 -2.099792 -2.377766 1.263481 -0.351750 -1.285856 -1.235236 0.202744 1.356929 0.509617 0.711935 -1.278305 -2.479489 1.823978 -1.020713 1.969339 1.005456 -0.121749 1.598161 0.131931 -0.614271 -2.060019 -1.440267 0.268156 -0.218353 -2.118963 -0.272657 -0.653382 2.040405 1.610950 0.008492 -1.621136 -0.126348 2.540590 -1.686249 -0.878164 1.513626 0.469141 -2.209205 0.806522 1.979875 -2.513113 -0.005264 -1.435715 -0.365615 -0.829445 -1.896051 1.337635 0.313623 1.304408 0.129290 0.387648 -0.260661 0.890232 0.672282 0.249152 0.269621 3.112718 2.490418 -0.965144 -0.310771 -2.382164 1.136450 -2.839278 -2.756442 1.002016 0.160822 -1.552001 0.289881 0.226814 2.304141 0.412230 -0.154461 -0.581145 0.552478 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__findLength(char*) = -4.739866 -6.361992 -4.866934 -10.250832 7.199397 9.293312 4.466536 -9.075337 -12.345848 1.206236 7.309155 -13.780969 0.184258 12.847014 -4.015620 13.713318 15.697170 1.422356 -8.147468 -1.599333 13.039163 1.723601 17.607744 14.301077 -9.013875 -0.865500 -3.185914 3.772509 3.909556 -2.464195 1.932449 -2.522487 7.382972 -15.758627 -6.398393 -4.954218 2.079180 4.121693 14.169594 -14.457034 3.454676 -2.420366 2.722376 -3.247221 -5.072334 -0.051467 6.601996 10.532979 0.162220 4.129919 9.308252 -0.089340 -1.123743 3.308717 2.149308 2.052408 0.345095 -0.283332 -4.151760 -7.778446 -0.496831 0.334044 2.180239 10.035871 12.745320 2.646956 -0.980261 10.202949 4.337392 2.601347 7.858145 1.909777 -5.219317 0.637508 3.793470 -16.653272 -1.190949 -16.684039 -3.854295 -15.857912 -6.231053 3.250529 8.041961 -1.250757 8.683574 3.062577 9.855071 -1.014947 -5.738747 10.642937 12.101447 -11.655889 -5.792024 -5.338995 -4.981115 2.620563 -5.555153 3.845492 7.607961 3.677290 -10.173909 -3.862228 3.497413 6.375450 -3.918848 -10.270326 4.194821 7.817387 -6.512599 -9.433165 4.115188 10.672456 -3.696468 -17.573027 -3.670218 -8.220360 5.657121 -0.473070 -4.299974 -11.740997 0.493866 4.593129 -3.196875 -6.742917 0.892203 4.448244 7.554541 6.795193 0.716955 3.505349 3.337884 21.286966 0.450247 -7.672292 2.653638 -1.961235 -0.761194 7.778747 -5.851454 -6.684408 1.237956 -12.272275 5.232037 9.968788 -5.977010 -2.923908 8.801531 7.682177 0.744199 33.991121 2.416301 15.632755 12.039955 -10.403117 1.517023 -7.775858 2.609431 3.781754 3.429591 -2.827906 -16.655488 -11.485478 7.077684 11.008819 8.243426 -13.354859 -3.151809 -0.267077 -0.512342 -0.530250 -1.884899 3.262832 1.276765 -7.606199 -1.997699 11.581992 23.281100 -5.829544 3.124508 7.301382 3.577380 -4.234334 -13.671683 -7.021537 -8.336282 2.945249 4.580322 3.933548 6.340006 14.073914 -12.407460 8.891685 -1.692143 2.508545 8.738075 6.856747 -13.719558 -10.305026 -4.592778 5.672951 10.909024 -4.890319 0.248476 6.437957 -9.806995 -0.977857 3.220587 -2.946426 -1.458419 3.783843 1.688905 -3.845873 -4.620296 6.971194 -3.211971 -1.327531 1.242478 8.902612 0.127696 -11.469255 9.484255 0.293579 -6.105153 2.954873 -5.231440 13.097921 -8.596384 -8.448368 8.392220 -0.931876 -2.047278 -4.487029 3.229418 6.030174 3.959589 7.141071 -7.751875 -9.114016 7.685927 -5.065211 9.255458 4.590226 -2.149744 3.722886 -10.063712 -3.573867 -10.981706 -8.471488 -3.595762 3.043267 -12.555850 -2.820549 -1.936070 11.666495 5.605503 1.209661 -11.836802 1.980583 10.622118 -12.481022 -2.923013 7.105467 7.943921 -14.506810 2.040236 8.817913 -12.815272 3.436368 -3.075246 -2.501613 -5.030870 -9.056290 7.756492 5.410295 8.520926 -3.150151 2.785688 4.493738 5.607775 3.774397 4.442964 3.312941 14.444976 8.584619 -1.540285 -7.871946 -12.456596 5.225884 -12.884685 -15.610205 8.557316 3.433253 -10.545802 1.204305 1.811642 14.179511 2.904989 -4.063917 -3.880049 2.736354 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = -0.957936 -1.005719 -0.430974 -2.355749 1.791926 1.745918 1.054917 -1.501647 -2.874700 -0.400164 1.490842 -3.657142 -0.832417 3.149063 -0.999580 2.371552 3.894504 0.423668 -1.692106 -0.486788 2.528561 0.260443 4.165534 3.525093 -2.400483 -0.048952 -0.839053 1.073825 0.752166 0.053833 0.531091 -1.309011 1.560560 -2.543758 -0.864319 -1.048515 0.342067 0.584545 2.173117 -3.825139 0.689218 0.369486 0.735096 -0.727172 -0.810186 0.633020 2.191337 2.489140 -0.095225 0.933668 2.122249 0.079307 -0.005790 0.735621 0.602842 -0.106877 0.431541 -0.480495 -1.391469 -1.414202 -0.218620 -0.629191 0.041195 2.524908 3.167443 0.557522 -0.296198 1.651800 0.758173 0.801684 1.646269 0.569622 -0.481807 0.422862 1.083437 -2.747560 -0.200433 -3.800009 -0.690479 -4.799226 -1.796532 0.294416 2.721809 0.548896 1.330230 0.036960 2.623077 -0.092498 -0.989617 2.544741 3.346684 -2.335118 -1.468005 -1.394243 -1.220850 0.913106 -1.410777 0.781177 1.632018 0.961738 -2.555247 -0.666778 0.766329 0.974729 -1.003220 -1.548777 0.741332 2.011838 -2.087995 -1.520928 0.172000 2.253232 -0.071591 -4.353602 -0.874588 -1.592318 1.061446 0.220459 -1.135268 -2.044306 0.342979 0.778327 -0.943493 -0.938463 -1.086444 1.657063 1.398452 1.444385 0.325361 1.058984 1.039339 4.211069 0.206533 -1.759225 0.491681 -0.354933 -0.222590 1.580181 -1.337344 -1.424338 0.490099 -2.722680 1.211631 1.788172 -1.576967 -0.988059 0.595723 1.331703 0.428001 7.472918 0.257672 3.607623 2.484976 -2.504950 0.746253 -1.523727 0.268897 0.661283 1.075843 -0.175147 -2.897117 -2.618600 1.818109 2.898369 1.984418 -2.929667 -0.114723 0.079542 -0.092471 -0.334954 0.056605 0.829792 0.351643 -1.840945 -0.562808 2.664634 5.252354 -1.055691 -0.230120 1.471761 0.945083 -0.428522 -2.590033 -1.237330 -1.232583 0.658935 0.997067 0.734646 1.581503 3.489797 -3.780500 2.428197 0.020023 0.431248 2.222943 1.115958 -2.986941 -2.765253 -0.854804 1.690252 2.802720 -0.681186 -0.227130 1.131058 -2.457751 -0.296995 0.734055 -0.286626 -0.536148 1.084529 0.224215 -1.021133 -1.358131 0.452546 -0.759803 0.000715 -0.320358 1.985422 0.505743 -3.433852 2.616726 -0.018872 -1.437171 0.014410 -1.165887 2.615378 -2.282642 -2.311701 1.503690 -0.790738 -1.637117 -1.315975 0.421426 1.237490 0.676796 1.441215 -1.662370 -2.160527 2.474726 -1.071430 2.364562 1.222881 -0.281187 1.422983 -0.895283 -0.990290 -2.138239 -2.053003 -0.084007 -0.011831 -2.690975 0.166467 -0.667570 2.472424 1.729072 0.081160 -2.557134 0.108933 2.580442 -2.435831 -1.108210 1.842623 0.932805 -2.883800 1.052131 2.269432 -2.983726 0.489468 -1.400577 -0.677167 -1.195648 -2.219078 1.597496 0.692568 1.667474 -0.231298 0.384179 0.315496 1.266455 0.645236 0.476282 0.621576 3.636180 2.310099 -0.807279 -0.782204 -3.065348 1.457346 -3.288790 -3.601427 1.712159 0.510095 -2.199466 0.169341 0.191769 2.884531 0.621457 -1.051698 -1.251291 1.015555 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -2.751595 -3.674991 -15.777426 -5.922772 3.537819 18.997057 2.150168 -8.479708 -14.510691 6.231176 1.158719 -22.202261 0.470208 8.237185 -0.526850 14.838480 14.584442 3.040330 -9.753398 0.446305 24.566502 -2.567555 23.466311 11.348481 -4.149288 -0.574968 -0.498794 0.322845 -0.355777 13.188687 -0.224463 -13.217543 9.046527 -25.124621 -0.602862 -11.411685 1.363966 4.937053 22.438011 -15.132774 2.497099 2.236740 8.947276 -2.842311 -2.886929 9.171993 12.735364 5.730690 -2.343479 1.911152 13.663236 -0.394804 -0.909242 1.881980 1.626369 4.206821 8.541235 5.605646 -3.555599 -8.953643 -0.570103 -2.419614 3.822392 4.287648 18.664025 -0.198024 0.204198 4.707193 0.925096 1.372041 3.889523 -0.171433 -3.031758 -3.658241 2.862982 -7.342361 -1.794506 -28.907098 -0.785440 -24.773788 -3.651887 0.560772 4.648574 1.047774 4.461692 -10.486467 5.381220 -3.427569 -0.886801 21.708565 14.988920 -5.636944 -3.163102 -6.097250 -4.201486 2.642390 -2.870921 -2.943377 17.543491 -0.455180 -4.976535 -3.694904 1.299465 4.100988 -1.758242 -15.160470 1.941062 5.956405 -4.662309 -7.948887 -0.517779 15.275614 -3.284917 -25.016272 -19.806518 -9.301397 -8.067803 0.744546 -2.380515 -16.006694 1.014235 3.478171 -2.235758 -4.325314 7.373287 9.922763 10.473070 1.679830 1.571487 -0.546236 -0.268138 25.090831 -3.403536 -4.624430 0.659764 1.902967 -7.381598 1.643784 -9.841018 -5.581026 3.711777 -14.653647 14.851961 3.722399 -4.096525 0.417750 10.724587 2.937051 2.221672 57.937574 0.748684 23.977980 14.507818 -14.937447 10.739658 -0.417106 0.218115 1.945056 3.897398 -1.203544 -21.852026 -5.788364 1.991351 5.664004 5.858609 -19.285707 5.393935 -2.979296 -0.127757 2.645474 -1.340614 1.604530 0.152007 -5.829641 -0.976573 12.061728 48.533547 -2.783770 4.690230 3.859832 4.335868 -10.620275 -20.495057 -3.200614 -9.918639 0.279260 2.615091 -1.173196 3.585550 7.968920 -24.471378 6.156804 -3.010135 -0.149564 18.070335 10.241381 -22.094088 -15.424658 -2.823686 12.558892 13.999894 -3.151539 2.858456 2.793404 -4.969717 -0.162902 0.231725 -0.257022 -1.045454 2.249118 -2.336529 -13.018375 -1.955344 -6.186244 -3.573654 -3.983979 -8.697993 3.169665 4.560397 -23.690560 14.058652 -0.553141 -1.382629 -2.649857 0.819579 7.633392 -5.170431 -6.215312 4.639804 2.098686 0.413929 -7.196715 1.286512 5.409650 7.394832 15.053158 -7.888253 -20.045506 10.308325 -7.498359 4.974237 2.337095 -2.052319 2.884216 -9.128757 -2.297552 -27.152361 -13.441108 2.431013 -1.160786 -14.297553 1.245805 -1.305782 6.938774 4.191779 2.184402 -19.924323 -9.524576 12.518902 -7.365508 -0.743331 5.430378 7.688324 -26.972968 -0.238852 6.742854 -13.144134 -0.151328 -2.826580 -2.255583 -0.292653 -3.826160 3.442974 0.833188 3.064537 -1.182945 0.423885 0.927262 2.079632 4.229936 1.102743 -0.544372 20.946828 10.376489 -1.689414 -2.902597 -11.868778 0.670019 -7.071993 -21.381128 0.929628 4.283367 -13.488894 2.263858 8.324988 23.151641 -0.088868 2.033028 -0.129429 -1.899865 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = -2.702698 -3.329525 -14.425936 -7.188802 4.700229 19.201891 2.625949 -7.992625 -16.095808 5.062253 1.838909 -25.136673 -1.441222 9.813096 -0.910735 14.057693 16.202460 2.904817 -10.441721 0.372392 24.364437 -1.797148 24.968663 12.971187 -5.455493 -0.027781 -1.831347 0.807631 -0.586244 14.339013 0.121825 -15.233988 9.026364 -23.412144 -0.272593 -10.899915 0.799294 4.254165 21.512094 -17.092860 2.700081 4.844078 9.132694 -3.203839 -2.246144 10.424134 14.825516 6.632544 -2.558937 2.181604 14.397101 -0.331225 -0.399536 1.928952 2.359820 2.538953 9.736578 4.889274 -4.737068 -8.981631 -0.887989 -3.086553 2.625232 5.546816 19.930411 0.011192 -0.491750 3.530280 1.168241 2.032834 4.269972 0.400880 -1.694528 -2.941267 3.504997 -5.017448 -1.519940 -29.452790 -0.216350 -27.470094 -5.125922 0.772758 7.999708 3.401431 3.234889 -12.543670 6.902152 -3.432291 -1.265776 22.862386 17.127035 -5.286771 -3.842027 -6.446712 -5.193061 3.394354 -3.223806 -2.653462 17.494836 0.221325 -6.450299 -2.844078 1.029415 3.193462 -2.353687 -13.491234 2.138845 6.878844 -6.028432 -6.574322 -0.925189 16.643024 -1.183146 -27.055772 -21.266672 -9.319653 -8.824736 1.223275 -3.555920 -14.864787 1.654556 2.275652 -3.423006 -2.893103 4.061127 11.665194 10.433064 2.544061 1.815574 0.266394 1.044196 24.847567 -4.181692 -5.475341 1.151810 1.409389 -6.566052 2.460320 -9.809818 -5.621601 3.658800 -14.907310 15.491405 3.069303 -4.963356 -0.406023 7.021713 3.095894 2.040356 60.046241 0.133603 25.894118 15.081638 -15.750144 11.767205 -0.270422 -0.329448 1.630312 4.459698 -0.364238 -20.615835 -6.586924 3.582136 7.549561 6.712811 -20.178393 7.508451 -1.832771 -0.399070 1.857106 0.119617 1.694219 0.929014 -6.671773 -1.527308 13.341380 50.148111 -2.168840 1.819563 4.018441 5.068221 -9.021289 -19.213440 -2.794374 -8.483269 0.650951 3.427970 -1.197152 4.808055 9.653884 -27.714207 7.673038 -1.630801 -0.395809 19.602538 9.973609 -23.333408 -16.307068 -3.266717 13.585944 15.461237 -2.338115 1.719687 2.521570 -6.117520 -0.479526 0.692255 -0.350289 -1.732025 3.124390 -2.534832 -13.273087 -2.558777 -8.928692 -4.164335 -2.784112 -10.643548 3.982455 5.240654 -26.262862 15.615983 -0.039501 -1.821455 -4.733645 0.026471 7.710071 -6.053543 -7.471543 4.138293 0.290470 -2.882085 -8.056519 0.738643 5.022156 7.597637 15.991035 -8.587528 -20.684832 13.027313 -7.714900 6.814585 3.212568 -2.126952 3.872816 -6.150328 -2.721799 -26.802184 -14.915321 5.003897 -1.998746 -15.142860 3.394698 -2.307548 7.057568 4.760407 1.686555 -20.926952 -10.959872 13.304508 -6.750533 -1.677192 6.274212 5.457316 -27.452141 1.291854 7.926167 -13.680936 0.269813 -4.876138 -3.059954 -1.591283 -4.587759 3.824582 1.115190 3.156727 -0.670023 -0.069391 -0.343659 2.209722 3.837229 -0.135107 -0.161768 22.719379 11.456985 -2.518718 -0.921176 -13.485232 2.059762 -8.487820 -22.870296 1.476128 3.050349 -14.340851 1.561051 7.526325 23.514166 0.156261 1.357474 -1.438494 0.288009 +PE-benchmarks/tug-of-war.cpp__TOWUtil(int*, int, bool*, int, bool*, int*, int, int, int) = -5.972660 -7.127414 -2.493248 -12.959861 8.090821 7.501542 4.457638 -9.061145 -14.112575 -0.065511 7.102344 -12.061634 -0.139760 15.176866 -5.128842 14.074903 18.009451 2.485833 -7.558561 -3.991111 15.738456 0.326750 18.755799 16.640076 -12.417337 -1.449819 0.595579 5.097697 6.806881 -0.320220 0.357174 -4.257195 7.523351 -17.032204 -4.984143 -8.208777 2.406265 6.049547 15.191607 -17.058957 4.202409 -4.874626 1.178925 -3.136232 -5.546215 2.198582 7.393954 12.439502 -3.203537 5.911732 12.912362 1.249601 -2.635958 3.241114 1.638683 3.175834 0.416365 3.334478 -3.256756 -7.242161 -1.003844 -0.196904 4.037830 12.478673 15.185559 1.689664 -0.957733 10.565407 4.980575 3.241134 8.082009 2.550193 -3.387628 -0.335852 6.493157 -20.373965 -2.460419 -26.350891 -3.771527 -23.382657 -6.800412 2.262344 8.526123 -5.690078 9.282671 3.325371 12.044412 -1.102427 -5.588688 13.099661 13.561130 -12.691378 -5.868799 -6.857924 -7.667487 3.481633 -6.770744 3.646938 7.052920 2.736558 -11.379241 -8.177119 3.287903 6.646383 -4.808298 -11.597865 3.973990 8.521924 -9.340550 -10.440310 0.958308 10.892154 -3.497726 -19.782027 -3.824115 -10.760642 11.292734 -1.334945 -5.212380 -13.109723 0.471946 7.051198 -4.692811 -8.336803 3.054012 6.178103 9.204809 7.165712 0.466745 0.687744 2.882479 22.347129 4.055348 -9.975344 1.475448 -0.841215 -3.265835 6.416518 -9.636430 -6.534026 6.215434 -13.040739 5.555646 10.523943 -7.138194 -3.981378 17.773114 5.669281 2.107053 39.742628 1.691512 16.132074 12.775261 -11.075989 1.666481 -6.690749 3.008512 6.046803 5.083285 -1.724492 -18.797386 -12.946390 7.619388 12.420662 10.032250 -16.360726 -7.193598 -1.094402 -0.130438 0.538608 -2.313366 2.796854 0.288045 -9.827227 -2.457608 11.364091 23.953139 -6.921753 -0.314042 6.743323 6.978152 -6.313286 -15.093014 -7.553128 -11.448433 3.410434 6.656141 3.141562 9.021464 16.735031 -21.896826 10.125390 -2.444813 1.295563 6.584249 7.353229 -14.135201 -13.040510 -3.257952 6.224585 12.546302 -3.418869 3.232923 8.168541 -12.311085 -0.629129 2.794456 -1.286208 -3.852400 5.162328 3.355613 -5.821982 -5.934531 7.559582 -4.324263 -2.933247 1.664084 9.862118 -1.014329 -19.243453 10.731139 -0.667982 -6.113277 4.656803 -5.014473 14.810260 -11.548394 -11.072810 9.730782 0.442978 -0.765020 -5.893907 4.098939 8.138362 2.858918 7.582242 -8.739092 -14.620625 7.356284 -5.230417 10.822481 5.304433 -2.210135 6.993245 -12.816595 -2.242044 -14.642712 -5.975218 -0.773055 3.439178 -13.400328 -6.403669 -2.091657 13.068106 8.473241 0.151010 -10.438417 1.453849 13.234423 -16.238469 -2.874638 7.893243 12.546589 -14.061829 2.993594 10.351849 -14.999670 2.123251 -5.148123 -2.502484 -4.435779 -9.752413 9.958997 4.279721 9.578052 -2.491763 3.381819 3.495059 6.881266 4.758575 3.763641 3.374672 15.471499 16.248099 -3.731282 -8.974587 -13.994810 5.581956 -15.537294 -17.447082 8.062193 1.053909 -11.441262 2.114123 0.314439 16.841440 2.555870 -1.692824 -3.336839 2.595762 +PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -4.303448 -4.026143 -0.689974 -9.920528 6.155648 6.271241 3.129891 -5.864650 -10.487186 -1.932704 4.526209 -10.328135 -1.655731 11.800083 -4.068787 9.281064 14.578714 1.684494 -5.790507 -1.954758 12.065547 -1.001878 14.462445 12.623474 -9.607957 -1.228554 0.345232 5.663797 4.370704 0.998039 1.606210 -4.182173 4.741191 -11.494287 -2.940438 -6.416073 2.244965 3.484941 8.886819 -14.321039 2.710483 -1.079521 0.474703 -2.840736 -3.777014 0.036587 6.898563 9.558921 -2.547128 2.907173 9.519965 1.904622 -1.981676 2.469573 1.039752 1.214635 0.915530 0.253616 -3.317655 -5.182994 -0.565108 -2.357187 2.710922 9.945684 12.250582 1.549336 -0.055310 7.322226 2.619315 2.552390 5.928849 1.719251 -2.896914 0.558965 5.109022 -14.738968 -1.496998 -19.123836 -2.250462 -18.004995 -5.771988 0.495737 7.048724 -0.693732 6.034292 1.991354 9.490969 -1.441514 -2.974740 11.056219 11.215061 -8.877539 -4.641437 -6.867005 -6.530129 3.737520 -5.831855 1.902892 3.867432 3.015019 -8.510377 -5.357298 2.883484 4.976440 -3.744305 -8.109797 2.461708 7.859875 -8.042151 -7.760887 0.244006 8.241206 -2.314575 -15.858739 -3.976719 -8.039343 7.660315 -0.327240 -3.294178 -9.290593 0.613118 5.510172 -2.793024 -5.494063 -0.826368 5.739708 5.939356 4.828775 0.594814 1.167171 2.720091 16.164495 3.705468 -6.545284 0.761208 -0.456612 -2.918365 4.210156 -6.886983 -4.792672 3.423436 -9.756714 2.364114 8.503708 -5.639571 -4.298985 8.816232 3.149335 2.803621 32.944637 1.466765 12.178730 9.001108 -9.432988 2.217111 -4.443994 0.819352 3.780866 3.854507 -0.265151 -15.143879 -9.668368 5.835176 9.980915 7.747903 -11.314689 -4.241288 -0.912405 -0.544580 0.009869 -1.167977 2.755123 -0.278770 -7.676797 -2.221357 9.329403 19.099185 -4.261866 -1.275627 5.676846 4.812243 -5.079173 -12.198404 -4.759695 -6.803079 2.312417 4.273703 1.204730 6.366233 13.003012 -16.569585 8.235347 -0.821961 1.328017 5.830323 3.985454 -10.572814 -11.331221 -1.968193 6.127065 10.552770 -3.051627 1.846702 4.697672 -9.240482 -0.593061 2.603780 -0.311015 -2.282109 4.045833 1.362292 -4.695164 -5.874234 4.216031 -3.649064 -1.654124 -0.051509 6.817084 -0.307687 -13.097590 9.701567 -0.860478 -4.058913 2.550211 -4.299834 11.165573 -9.440714 -9.616315 7.302085 -0.475399 -2.768962 -4.844176 2.222403 6.674140 3.323809 4.127769 -6.241408 -10.913476 6.265628 -4.092796 8.054178 4.033346 -0.761082 6.163199 -5.425415 -1.936200 -10.968804 -5.572801 -0.804375 1.753216 -10.601317 -5.061648 -1.764719 9.957989 7.107325 -0.623847 -8.235490 1.074792 10.575978 -11.147989 -3.503008 6.105921 6.740844 -11.327851 2.462861 7.981682 -11.688697 0.829395 -4.659017 -1.042396 -3.253037 -8.394168 6.455221 2.378097 6.628239 -0.336394 2.239396 1.283582 4.684354 3.921570 2.986996 1.870092 12.786096 11.749939 -3.040253 -5.017293 -11.019217 4.194067 -12.661889 -13.782403 5.784281 1.485049 -7.360751 1.578835 0.812928 11.986863 2.310534 -0.601011 -2.173307 1.759102 +PE-benchmarks/tug-of-war.cpp__main = -0.946303 -0.784863 0.295774 -2.353714 1.708447 1.306586 0.862237 -1.005029 -2.729637 -0.707698 0.913629 -2.638062 -0.782017 3.061737 -0.941426 1.961454 3.871592 0.738205 -1.277153 -0.537531 2.609705 -0.548219 3.609966 3.272875 -2.397680 -0.097720 -0.059595 1.377013 0.729866 0.956619 0.025780 -1.474502 1.189547 -2.322013 -0.408030 -1.756608 0.340109 0.761223 1.616526 -3.927290 0.674199 0.231445 0.217738 -0.699601 -0.682525 0.447849 2.072641 2.317203 -0.544810 0.918226 2.096813 0.392781 -0.264449 0.663100 0.595603 0.455911 0.573761 -0.049635 -1.189463 -0.934822 -0.338158 -1.069748 0.417051 2.402398 3.040149 0.305999 -0.118455 1.283372 0.409123 0.676043 1.438458 0.437159 -0.311284 0.072125 1.278163 -3.044928 -0.298146 -4.526700 -0.538966 -5.106635 -1.662274 -0.143469 2.249253 0.148470 1.229356 0.103282 2.538953 -0.465393 -0.510687 2.423260 3.035735 -2.198405 -1.265202 -1.652191 -1.496096 0.932399 -1.401673 0.167299 1.073399 0.542800 -2.235731 -1.302752 1.001520 0.991232 -0.942282 -1.483866 0.499281 2.205518 -2.396176 -1.745445 -0.553773 1.857614 -0.285727 -3.882229 -0.733863 -1.694558 1.701124 0.244851 -1.057789 -2.093083 0.473836 1.311576 -0.899885 -1.113608 -0.697232 1.872570 1.104636 1.031813 0.271228 0.322959 0.653375 3.624333 1.179804 -1.650468 0.218958 0.068673 -0.787300 0.917637 -1.687912 -1.244485 0.717086 -2.437603 0.558724 1.712140 -1.592352 -0.905369 1.488260 0.736128 0.789607 7.623097 0.060786 2.960221 1.935921 -2.438744 0.948414 -0.875443 0.097213 0.770772 1.277197 0.136344 -3.292846 -2.361250 1.455141 2.654437 2.012165 -2.803997 -0.878703 -0.409338 -0.047632 0.118636 0.001964 0.682699 0.076078 -1.978819 -0.599438 1.931942 4.903146 -1.039194 -1.036987 1.256618 0.940462 -1.006871 -2.872410 -1.018235 -1.424641 0.541901 0.810130 0.091551 1.564509 3.341887 -4.654338 2.359662 -0.429256 -0.037027 1.777690 0.776602 -2.323304 -2.978171 -0.600096 1.656043 3.020536 -0.344969 0.246734 1.010498 -2.368737 -0.237694 0.492400 0.222453 -0.691343 1.139243 0.316045 -1.454043 -1.417359 0.302371 -0.745917 -0.430807 -0.278952 1.618897 0.296250 -3.883514 2.511509 -0.116803 -0.970487 0.533899 -0.676732 2.421904 -2.342938 -2.614093 1.590319 -0.289108 -1.180577 -1.277800 0.325025 1.626429 0.584738 0.777520 -1.371428 -2.795704 1.930234 -0.890011 2.187638 1.103240 -0.169705 1.906489 -0.376636 -0.709755 -2.361481 -1.371269 0.094693 -0.228615 -2.221431 -0.793234 -0.661385 2.408886 2.032412 0.055901 -1.760891 -0.101173 2.840333 -2.545550 -0.866451 1.817817 1.193005 -2.340118 0.917048 2.273500 -2.942246 -0.102778 -1.352844 -0.375462 -0.776292 -1.934069 1.517262 0.140824 1.428297 0.087620 0.444067 -0.116086 1.088716 0.774966 0.386225 0.293979 3.375065 3.081639 -1.056874 -0.530289 -2.584870 1.185625 -3.187604 -3.138635 1.088146 0.409135 -1.911309 0.389137 0.205751 2.698969 0.440341 -0.238153 -0.681117 0.435558 +PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -0.933750 -1.175460 -0.400288 -2.473911 1.536681 1.115905 0.694716 -1.390326 -2.613516 -0.163055 1.063723 -2.335856 0.242195 2.725747 -0.563951 2.488147 2.883156 0.322554 -1.379736 -0.303816 2.558934 -0.274974 2.542310 2.216312 -1.656159 -0.010178 0.129309 0.931288 0.458732 0.606365 0.227483 -1.227158 0.598552 -2.536740 -0.667757 -1.155562 0.044687 1.051305 2.535660 -2.943706 0.778943 0.485458 0.840436 -0.832870 -0.847810 -1.452676 1.093518 1.834223 -0.384623 0.894114 1.823338 0.311699 -0.352401 0.394238 0.991169 0.928220 0.679739 0.060862 -0.751843 -1.143405 -0.313111 0.410757 0.768721 1.848593 2.071473 0.140775 -0.310072 1.556705 0.727632 0.659521 1.430163 0.360417 -1.628629 -0.307040 0.867821 -3.133276 -0.000511 -3.874225 -0.087357 -3.486420 -1.341947 0.874832 1.562397 -0.045318 1.440312 0.847123 2.106324 -0.992664 -1.008985 1.687420 2.170337 -1.467247 -0.885817 -1.032122 -1.740009 0.648588 -0.738056 -0.172068 1.319482 0.509779 -1.836147 -0.801029 0.801681 1.243025 -0.767426 -1.577160 0.831189 1.726301 -1.527854 -2.055719 0.710668 2.412829 -0.725798 -2.958253 -1.484857 -1.585248 0.452900 -0.105078 -1.246292 -2.338443 0.397774 0.869754 -0.893270 -1.090650 0.474394 0.666620 1.261833 1.352914 0.150344 0.086800 0.538551 3.574991 0.554519 -1.665091 0.635416 -0.044927 0.099814 1.162878 -0.925780 -1.433118 -0.425178 -1.969174 0.641902 1.679894 -1.265221 -0.612532 1.563404 1.022977 0.015907 6.893653 0.050087 2.783226 2.077050 -1.865898 0.166647 -0.586711 0.167041 0.539673 0.905788 -0.181939 -2.196142 -2.098334 1.525389 2.229535 1.782266 -1.975373 -1.428050 -0.080331 -0.303761 0.690389 -0.145469 0.201302 0.319224 -1.776597 -0.550013 1.556073 3.722871 -0.850999 -1.299620 1.297832 1.617943 -1.231891 -2.255762 -1.014280 -2.784297 0.572658 0.501192 -0.037413 1.490756 2.799749 -4.010010 1.988580 -0.184504 0.016384 1.852606 1.156555 -2.171565 -3.115538 -1.196078 1.028115 2.456062 -1.255492 0.489580 1.049621 -1.803418 -0.115976 0.343110 -0.497691 -0.748286 0.977424 -0.118290 -0.924391 -0.591066 1.192397 -0.792109 -0.638140 -0.045111 1.431658 0.474138 -2.423192 1.814645 0.411785 -0.550764 0.825318 -0.505589 2.325398 -1.531651 -1.910513 1.484533 0.094367 -0.127461 -0.312617 0.283097 1.378297 0.845544 1.053633 -1.126358 -1.280911 1.108459 -0.933885 2.129764 0.930009 -0.713245 0.722828 -1.467282 -0.389405 -1.624928 -0.782940 -0.511932 0.412632 -1.925136 -1.875701 -0.568080 2.122565 0.944428 0.338524 -1.825243 -0.373237 2.089669 -2.129737 0.021581 1.378382 0.300640 -2.560140 0.241473 1.892177 -2.070142 0.647366 -0.967442 -0.038785 -1.135873 -1.207661 1.579119 1.124123 1.244974 -0.497902 -0.074691 0.418079 0.835172 1.139747 0.592235 0.523199 2.200811 1.340702 -0.482985 -1.197007 -2.067575 0.536700 -2.275176 -2.476171 1.133008 0.372473 -2.256343 0.022731 -0.013935 2.539800 0.451555 0.257404 -0.300070 0.523372 +PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -0.837625 -1.002601 -0.480240 -2.077852 1.150755 1.112085 0.595764 -0.728367 -2.387052 -0.462739 0.653730 -2.133486 -0.088311 2.479245 -0.561395 2.133511 3.280480 0.575150 -1.000553 0.117335 2.408304 -1.044547 2.554480 2.481893 -1.638244 -0.221635 -0.379202 1.193265 0.201136 0.779819 0.450872 -1.225856 0.620497 -2.270062 -0.469800 -1.861370 0.517606 1.248580 1.720899 -3.513209 0.681399 0.722376 0.727554 -0.747127 -0.746472 -0.362682 1.089937 1.889901 -0.618455 0.555170 1.721467 0.416376 -0.328747 0.515301 0.223001 0.538549 -0.258591 -0.139910 -0.895858 -0.846780 -0.003369 -0.633104 0.808647 1.702488 2.501045 0.110857 0.082055 1.310171 0.317144 0.481997 1.279974 0.112832 -1.004478 -0.488544 0.803863 -2.709491 -0.328146 -3.519410 -0.117683 -4.000548 -1.143235 0.207095 1.672234 1.064978 1.146714 -0.217556 1.796256 -0.767079 -0.428073 2.309259 1.938889 -1.578255 -0.939543 -1.752034 -1.410965 0.959908 -1.047106 -0.402485 1.291244 0.529750 -1.572029 -0.823669 0.965956 1.099357 -0.686530 -1.783365 0.547495 1.659681 -1.712849 -1.950631 0.219485 2.139024 -0.641297 -3.052753 -0.238262 -1.772769 0.145795 -0.020779 -0.583266 -1.764936 0.129181 0.878317 -0.536473 -0.955495 -0.968110 1.704090 0.860514 0.678004 0.317842 0.091922 0.271625 3.113536 0.372551 -1.376235 0.152203 0.307327 -0.602430 0.686107 -1.612295 -1.267526 0.508307 -2.247176 0.162393 1.410421 -1.180046 -0.398099 1.160143 0.785075 0.636726 7.408516 0.353470 2.680434 1.894750 -1.854660 1.585981 -0.443010 0.062576 0.682488 0.796873 -0.278080 -3.293306 -1.823531 0.825212 1.897248 1.705300 -1.890594 -1.171408 -0.395333 -0.165952 0.379592 -0.241872 0.502949 -0.093556 -1.717676 -0.385892 1.638230 4.372721 -0.409883 0.447535 1.221365 1.420333 -1.737757 -3.261163 -0.891279 -2.189377 0.252118 0.223404 -0.093161 1.184266 2.539307 -3.395996 1.789983 -0.186974 0.328107 1.461676 0.495110 -2.076683 -3.862829 -0.697383 1.125563 2.904874 -1.129296 0.896182 0.910060 -1.663995 -0.086575 0.444125 -0.206759 -0.393959 0.704880 -0.226331 -0.889857 -0.891765 0.959155 -1.149295 -0.636961 -0.115527 1.161870 0.887222 -1.825955 1.704507 -0.186361 -0.666576 0.668121 -0.406868 2.029840 -1.860631 -1.849897 1.427241 0.257827 -0.442414 -0.905543 0.397764 1.504779 0.386265 0.221542 -0.677575 -2.604577 1.224360 -0.967159 1.441808 0.793875 -0.486522 0.742616 0.195736 -0.456047 -2.051693 -1.469390 -0.772554 -0.051354 -1.904970 -0.827740 -0.419765 2.008085 1.331740 0.305237 -1.842725 0.379290 2.466604 -1.187834 -0.482894 1.365349 0.046975 -2.201319 0.112947 1.800765 -2.694710 0.212795 -1.077526 0.539980 -0.301853 -1.449983 1.262913 0.539170 1.231434 -0.160200 0.310020 0.060034 0.801944 1.134807 0.333615 0.183695 3.090215 1.319376 -0.186468 -0.695265 -1.881092 0.399237 -2.366237 -2.283064 0.602989 0.739106 -1.738464 0.553650 0.877393 2.333083 0.298493 0.590459 -0.156918 0.005925 +PE-benchmarks/the-knights-tour.cpp__solveKT() = -1.634951 -1.634700 -0.376181 -3.987510 2.971992 2.262867 1.607719 -0.639350 -5.206424 -1.254695 0.953085 -4.870095 -1.142808 5.889330 -0.739001 4.185015 7.566758 1.772844 -1.987330 0.443916 4.583002 -2.476589 5.480702 5.319649 -3.283781 -0.044176 -1.145003 1.805418 -0.730503 2.938110 -0.047074 -3.718121 1.620024 -4.205740 -0.516175 -3.894841 0.459752 2.274186 2.781602 -7.967241 1.519486 2.731110 1.703064 -1.888300 -1.376847 -0.340404 3.460040 3.997688 -1.097300 1.281054 2.615234 0.216176 -0.296093 1.266015 1.436138 1.725905 -0.354087 0.024944 -2.935484 -1.322452 -0.685533 -2.074737 1.137217 3.442786 5.019522 0.193815 -0.256701 2.189003 0.149603 1.107676 2.397464 0.306472 -0.720364 -1.362724 1.988388 -4.397770 -1.095994 -6.696623 -0.465737 -9.446491 -2.959053 0.085774 4.404930 2.359881 2.241735 -1.645930 4.310870 -2.176206 -0.571630 4.376936 5.194942 -3.747628 -2.351954 -3.964598 -2.710000 1.760806 -2.070373 -1.465584 3.385617 -0.090113 -3.991604 -2.031238 2.262569 2.043892 -1.409949 -3.076784 1.173209 4.174087 -4.067211 -3.970549 -0.937338 3.859306 -0.936090 -6.521057 -0.279843 -2.561589 -0.594217 0.910115 -2.135460 -3.961022 1.224881 1.865808 -1.791169 -2.160285 -2.157784 4.579003 0.957663 1.346830 1.124710 0.351721 0.719195 6.087727 1.867234 -2.947560 0.683028 0.757189 -1.209771 1.369234 -2.970609 -3.185644 0.652218 -4.979167 -0.114226 2.487213 -3.040631 -0.158908 1.135359 1.695639 1.441151 14.140598 -0.124509 5.456975 3.163304 -4.508484 4.250961 -0.715748 -0.341488 0.711138 2.566589 0.116037 -6.141278 -3.928005 2.294140 4.636198 4.008715 -4.067564 -2.045620 -1.307048 -0.036500 0.841988 0.065060 1.196806 0.656532 -4.090366 -0.944539 2.857306 9.767098 -1.628226 -1.003889 2.646158 2.525357 -2.449963 -6.436398 -1.767152 -4.616108 0.354190 0.094898 -0.733976 2.637144 5.890397 -7.550880 4.641646 -1.303485 -0.458728 3.715681 0.820553 -3.893094 -7.989638 -1.952491 3.091569 6.926785 -1.194904 1.107790 1.198229 -3.765742 -0.378666 0.641512 0.122595 -0.951986 1.931751 -1.046337 -2.571323 -1.831971 0.602992 -2.238559 -1.765442 -0.610393 2.374546 2.768542 -4.620617 4.284487 0.183844 -1.162033 1.303971 0.120279 3.683885 -3.767297 -4.841028 2.796206 0.009843 -1.894842 -1.702030 0.393301 3.107176 0.883059 -0.409671 -1.131295 -6.052064 3.721233 -1.341779 4.136772 1.920190 -0.868134 2.638960 2.626538 -1.835063 -3.502043 -3.644000 -1.082127 -1.255960 -3.429560 -1.811893 -1.412252 4.517161 3.173723 1.027973 -3.336775 -0.669840 5.408964 -2.624764 -0.766196 3.896085 -1.018362 -4.001026 0.545946 4.848681 -5.491191 -0.156395 -2.681076 0.936641 -1.162416 -3.027344 2.039737 0.177999 1.950397 -0.043193 0.123404 -0.395259 1.233778 2.149724 0.042544 -0.047423 6.739892 2.766860 -1.565780 -0.392140 -3.847811 1.462534 -5.275095 -4.533141 1.031030 1.870036 -4.001190 0.857312 2.002608 4.147977 0.093001 0.622768 -0.803045 -0.155511 +PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -3.345974 -3.494453 -1.411826 -6.621723 4.842436 5.154997 2.651100 -4.151955 -7.992855 -0.563714 3.201172 -6.848657 -0.733800 9.173061 -2.386613 8.136149 10.897904 2.022137 -4.242122 -0.769855 9.125772 -1.885686 10.374071 9.294714 -6.592159 -0.611428 0.401832 3.277411 2.277587 1.956919 -0.380272 -3.076301 4.258765 -9.823595 -2.508934 -5.938557 1.292852 3.203348 7.215419 -10.842567 2.133562 -0.567945 0.492209 -2.272189 -3.116979 0.513688 4.859113 7.106518 -2.045009 3.117982 5.973105 0.295516 -1.258873 2.119174 1.573900 2.618170 0.062815 1.972598 -2.862905 -3.836026 -0.846046 -2.505906 2.343548 6.779829 8.814686 0.529297 -0.099719 5.915116 1.240063 1.540740 4.667671 1.182573 -2.031919 -1.078424 4.012736 -10.893695 -1.260452 -13.083997 -2.311443 -14.189633 -3.921412 0.641459 4.995630 -1.774877 5.524664 1.137978 7.418477 -1.805990 -2.410583 7.514849 8.233630 -7.914343 -3.602255 -4.854222 -4.549612 2.268232 -4.298963 0.426150 4.781172 0.478332 -6.532113 -4.741291 2.635748 4.362642 -2.792531 -6.908428 1.751987 6.132441 -6.512813 -7.046888 -0.246191 5.072994 -2.967629 -11.406476 -2.385293 -5.360061 4.962940 0.198156 -2.907443 -8.026637 1.023195 4.555792 -1.912503 -5.329254 1.509278 4.401108 3.814489 3.665799 0.921388 0.162273 1.396579 12.495023 4.040746 -4.953636 0.750187 0.058841 -2.269008 3.659756 -4.951658 -4.447446 2.464873 -8.264402 1.318883 6.131911 -4.538462 -1.449844 8.279928 3.147453 1.782235 23.779988 0.956711 8.858698 6.552330 -7.733993 2.022418 -3.299420 0.792786 3.187999 3.741461 -0.543666 -11.451549 -7.164864 4.175623 7.730968 6.115055 -8.810698 -4.035326 -1.477238 0.205114 0.680643 -1.188417 1.977531 0.350853 -6.118858 -1.520234 5.849180 14.585697 -4.480300 -0.911454 4.542883 3.206554 -4.606649 -10.107796 -3.890555 -6.912005 1.529524 2.197973 0.204074 4.355505 9.776760 -11.572475 6.555903 -2.766535 0.049083 4.784918 3.476765 -7.391102 -8.963664 -2.136755 4.312127 8.376153 -1.981001 1.490960 3.785513 -6.943067 -0.541082 1.533540 -0.372228 -1.638145 3.365715 0.877084 -4.005950 -3.895678 3.622122 -1.965452 -2.647404 0.695583 5.185347 -0.007427 -9.619643 6.777075 -0.219948 -3.266822 2.977873 -1.311792 7.753510 -6.903680 -7.908238 5.938925 0.246979 -1.174784 -3.234465 1.572076 5.394812 2.677119 1.299826 -4.126127 -8.838101 4.569221 -3.055976 6.255550 3.073139 -0.972045 5.227928 -4.145537 -2.346916 -8.139016 -3.830237 -1.613158 0.031919 -6.980929 -4.580532 -1.458328 8.147567 5.393974 0.969358 -5.284936 0.713139 8.363086 -7.971777 -1.614279 5.444948 5.725763 -7.862674 1.558020 6.647088 -8.777172 0.394615 -2.711789 -0.691300 -2.273703 -5.687188 5.132671 1.277407 4.851235 -0.622349 1.808248 1.329322 3.341620 3.113336 2.434674 0.894373 9.583009 7.964879 -3.091402 -3.954537 -7.417489 3.062153 -9.272493 -9.321256 3.965591 2.573733 -5.955177 1.319602 1.645913 8.475101 1.548692 -1.018443 -1.219434 0.180017 +PE-benchmarks/the-knights-tour.cpp__main = -0.386021 -0.408241 0.086951 -1.005008 0.715606 0.267981 0.399460 -0.146689 -1.344305 -0.400615 0.246226 -1.205802 -0.304894 1.431644 -0.225596 0.912202 1.822662 0.527648 -0.466789 -0.044408 1.010747 -0.737220 1.343237 1.360375 -0.829899 0.043565 -0.320719 0.541259 -0.071716 0.816505 -0.042331 -0.821866 0.378834 -0.847685 -0.024310 -1.010118 0.085159 0.615405 0.528584 -1.967127 0.387561 0.646906 0.596580 -0.407462 -0.262111 0.183317 0.830099 0.966011 -0.241747 0.424651 0.684555 0.052593 0.021023 0.332196 0.411315 0.370519 0.178069 -0.132345 -0.728295 -0.229084 -0.187199 -0.673143 0.270402 0.856602 1.259195 0.029641 -0.069523 0.378788 0.050606 0.320059 0.666733 0.080945 -0.190606 -0.354497 0.436959 -1.038289 -0.078557 -1.721825 -0.105945 -2.572600 -0.748788 0.014628 1.245358 0.606885 0.415554 -0.276127 1.077204 -0.429196 -0.151691 0.929247 1.242510 -0.837543 -0.581934 -0.786466 -0.663673 0.461185 -0.493353 -0.364872 0.775943 0.172869 -0.950709 -0.388896 0.659939 0.384746 -0.362545 -0.512076 0.255070 1.017357 -1.170399 -0.845446 -0.272337 0.887938 -0.090633 -1.526172 0.146552 -0.700108 0.015500 0.197861 -0.551640 -0.783113 0.325439 0.361356 -0.470379 -0.315726 -0.905093 1.102405 0.110874 0.318468 0.222547 0.063104 0.122555 1.302641 0.382314 -0.799859 0.156587 0.218102 -0.325860 0.340605 -0.758846 -0.785621 0.257844 -1.183773 0.018963 0.387456 -0.763387 -0.128337 0.205326 0.421224 0.333027 3.037660 -0.042290 1.308420 0.779250 -1.023814 0.952375 -0.112811 -0.003545 0.243204 0.687974 -0.014044 -1.178097 -0.993432 0.521534 1.138160 0.977960 -0.938107 -0.543114 -0.299091 0.000611 0.319328 0.068504 0.243037 0.080982 -0.974912 -0.253827 0.528636 2.244101 -0.246817 -0.226236 0.550361 0.480369 -0.619915 -1.499916 -0.386128 -0.949071 0.139838 -0.142619 -0.165738 0.623576 1.441702 -2.096609 1.196096 -0.335497 -0.070699 0.912757 0.113214 -0.892898 -2.107606 -0.499243 0.686107 1.707306 -0.273675 0.240250 0.390411 -0.950721 -0.122859 0.070139 0.074083 -0.311411 0.473636 -0.145992 -0.638271 -0.414007 0.018481 -0.431712 -0.314118 -0.152851 0.608899 0.726113 -1.320562 0.989696 -0.030326 -0.301347 0.270853 0.110011 0.780755 -0.913999 -1.101178 0.562602 -0.056607 -0.574987 -0.566387 0.092643 0.736897 -0.034921 -0.165764 -0.232565 -1.265076 0.923958 -0.454039 0.949538 0.483778 -0.246031 0.662373 0.774990 -0.397812 -0.762294 -0.593448 -0.321347 -0.538968 -0.685568 -0.126233 -0.359197 1.017032 0.843354 0.309465 -0.692266 0.020317 1.378469 -0.532140 -0.314623 0.961077 -0.343486 -0.819867 0.383414 1.170136 -1.380149 -0.079885 -0.713171 0.091618 -0.197835 -0.653481 0.619166 0.038491 0.470745 -0.021099 0.067810 -0.195243 0.389852 0.458382 -0.065567 -0.004163 1.716407 0.817485 -0.336020 0.058063 -0.896618 0.317388 -1.268607 -0.976633 0.139502 0.526880 -0.995573 0.245861 0.352325 1.029240 0.060881 0.136314 -0.238131 0.067847 +PE-benchmarks/longest-bitonic-subsequence.cpp__lbs(int*, int) = -7.292959 -7.601097 -5.476056 -16.751712 10.490224 14.976834 5.079601 -11.365210 -17.045850 -0.544800 8.514485 -15.890943 -0.735275 18.654886 -6.433447 17.600082 22.653998 0.709296 -10.472841 -1.163207 20.116713 -0.955841 22.919032 19.603941 -14.390194 -2.271053 -0.242933 7.734644 5.425614 1.987578 2.851904 -6.720619 7.638100 -19.450823 -6.817939 -10.455846 3.773132 5.648492 16.916812 -22.237601 4.795738 -0.405733 0.493987 -5.149006 -6.888519 -1.985238 9.160603 15.233069 -2.809733 3.608714 15.057567 4.149268 -3.985654 3.886801 2.747576 3.148496 2.103728 1.479370 -3.674171 -10.760554 -0.557727 0.305607 4.156548 15.256700 19.351559 1.527307 0.330961 13.255022 3.195588 4.220469 10.129285 2.157611 -7.267218 0.079541 6.874665 -23.207270 -2.577552 -26.120648 -3.467277 -25.040269 -7.454310 3.136862 8.305122 -0.994999 11.717091 2.417770 14.415915 -3.078938 -6.609332 16.090870 15.849550 -13.961926 -6.698246 -10.407831 -10.036339 4.720519 -8.892224 2.333408 8.913436 3.565643 -13.136108 -6.689958 4.401978 9.849248 -6.069764 -15.613221 4.287954 11.478105 -10.871648 -13.089673 4.877524 16.381420 -6.368518 -25.856222 -8.012048 -14.609183 7.649573 -2.931218 -4.054824 -16.384215 0.512943 9.482227 -3.761067 -10.670212 2.192984 9.253275 11.487859 8.505903 0.804904 1.131950 3.889919 28.060373 3.416042 -9.813362 1.403566 -1.909513 -3.371395 8.553107 -10.145753 -6.927058 3.536296 -15.975069 5.296546 15.779326 -7.547919 -4.038979 15.119846 6.575311 3.158804 60.626237 2.274310 21.091167 15.856000 -15.860510 3.682848 -7.618641 1.471573 5.891784 4.523022 -2.654683 -28.193363 -14.955683 9.719905 14.862738 11.936641 -19.177412 -5.305408 -0.972956 -1.620515 -0.690133 -3.085485 3.759857 -0.196831 -12.160627 -3.732385 15.616564 33.879374 -6.965623 1.569844 10.880625 10.073516 -10.939340 -20.765662 -8.550032 -13.309413 3.879148 6.271474 2.016074 10.139670 19.761328 -22.207030 11.966658 -1.524863 1.656296 11.783357 7.064884 -17.151749 -19.658040 -4.189107 8.657201 17.962610 -7.871617 4.655441 7.852360 -13.732997 -0.476359 4.208145 -2.990480 -2.603995 5.246475 2.566059 -6.845562 -8.255554 9.272545 -5.986444 -2.626211 -0.061609 10.496687 -0.851028 -18.405309 14.879955 -0.127988 -6.475365 4.027555 -6.240455 18.560379 -13.641768 -14.361511 12.729515 0.741834 -1.257264 -6.287622 4.152913 11.063404 6.432760 8.832187 -10.973533 -18.376795 8.477188 -8.196902 12.390670 5.937745 -1.561949 6.449099 -11.813483 -2.419433 -18.848354 -12.190661 -3.750475 4.984368 -18.280450 -6.050700 -2.797528 16.669835 8.128134 0.234382 -15.477995 2.318203 17.560321 -15.248258 -2.412213 8.731728 11.810275 -20.927773 0.894165 11.969712 -18.435156 2.611744 -5.412425 -2.097042 -6.735125 -14.329182 10.967635 7.019799 12.459908 -2.126146 5.037818 3.045948 6.417261 6.758862 5.451723 3.565341 20.806348 14.745862 -3.120134 -10.385058 -16.728709 6.517257 -18.668967 -21.613634 10.589362 1.211429 -12.323549 2.405833 2.908224 20.027022 3.779831 0.821396 -1.852797 1.658339 +PE-benchmarks/longest-bitonic-subsequence.cpp__main = -1.542802 -1.548624 -0.632744 -3.817960 2.606283 3.000325 1.280786 -2.143913 -4.146119 -0.535778 1.906610 -4.060405 -0.732402 4.503199 -1.460059 3.599269 5.489380 0.404509 -2.300881 -0.419065 4.231868 -0.436092 5.417911 4.782128 -3.502175 -0.285291 -0.301939 1.857750 1.091502 0.999450 0.462240 -1.996629 1.769744 -3.836724 -1.208921 -2.393370 0.650338 1.127092 3.245914 -5.547108 1.074950 0.526541 0.251395 -1.156727 -1.285030 0.211561 2.595911 3.544255 -0.681750 1.118967 3.384105 0.745892 -0.619299 0.924748 0.879606 0.491419 0.861918 0.172214 -1.298670 -2.102824 -0.281600 -0.582188 0.624189 3.584504 4.592923 0.287815 -0.086111 2.476319 0.628599 1.074751 2.357255 0.600328 -1.118208 0.048715 1.743825 -4.596023 -0.480628 -6.063211 -0.743781 -6.739008 -2.110060 0.497935 2.831129 0.217668 2.250302 0.083368 3.608288 -0.667902 -1.379578 3.604006 4.075023 -3.126020 -1.728405 -2.328165 -2.290101 1.240396 -2.095919 0.413045 2.103433 0.823111 -3.260831 -1.399275 1.223451 1.881781 -1.472430 -2.902665 0.876823 2.906376 -3.005323 -2.660429 0.486860 3.606003 -0.868239 -6.074771 -1.659056 -3.036970 1.709042 -0.283256 -1.234075 -3.295964 0.394591 1.884497 -1.135027 -1.995144 -0.411631 2.623189 2.289425 1.964454 0.333836 0.447631 1.063889 5.982903 0.941439 -2.369851 0.358047 -0.337918 -0.758813 1.990726 -2.304867 -1.662110 0.879277 -3.658551 1.241956 3.070947 -1.988106 -1.027962 2.556972 1.479489 0.766239 13.258683 0.307254 4.952603 3.468885 -3.698922 1.229305 -1.573618 0.237184 1.262500 1.383417 -0.354165 -5.730968 -3.480012 2.378496 3.764975 2.868481 -4.497938 -0.921707 -0.163936 -0.265873 -0.159347 -0.287072 0.907639 0.172546 -2.897184 -0.913754 3.430064 7.835338 -1.498702 -0.551033 2.307410 2.110383 -2.046244 -4.497687 -1.744358 -2.565294 0.906898 1.302225 0.366571 2.403205 4.788637 -5.983556 3.137499 -0.320760 0.167167 3.025073 1.415669 -3.874332 -4.794923 -1.020304 2.152495 4.450070 -1.290489 0.721236 1.703466 -3.353031 -0.215395 0.885622 -0.456978 -0.779689 1.439285 0.499861 -1.733597 -1.968464 1.165076 -1.290573 -0.416365 -0.401037 2.478654 0.205764 -5.042702 3.598372 -0.004274 -1.597212 0.552887 -1.256341 3.963678 -3.276162 -3.575194 2.616261 -0.284905 -1.207344 -1.735274 0.703408 2.366026 1.227250 1.797928 -2.379838 -4.226060 2.586113 -1.834071 3.139451 1.553149 -0.379907 1.987354 -1.537755 -0.810129 -3.946747 -2.733638 -0.294809 0.406777 -3.920490 -0.810413 -0.894530 3.706278 2.201178 0.128781 -3.322772 0.155012 4.202733 -3.337302 -0.851620 2.329803 2.119081 -4.345329 0.805273 3.068120 -4.319781 0.450325 -1.699579 -0.709103 -1.580881 -3.201910 2.511504 1.238790 2.655240 -0.278378 0.993569 0.234165 1.494484 1.302562 0.823497 0.674058 5.098852 3.840151 -1.120890 -1.579209 -3.948677 1.748775 -4.486208 -4.915275 2.205619 0.268375 -2.943255 0.474493 0.553243 4.361723 0.856456 -0.135092 -0.791694 0.735571 +PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -3.325355 -3.646661 -0.882099 -7.701861 4.392852 5.165713 2.377782 -4.809682 -8.207096 -1.232013 3.606800 -8.587597 -0.520393 8.843550 -3.005575 7.814667 12.301546 1.450197 -4.785572 -1.127563 9.991191 -2.494423 11.904008 10.923315 -6.910948 -1.056479 -0.098611 6.019898 3.398442 0.972890 1.908497 -2.863080 3.444839 -10.016267 -2.850003 -6.815273 2.027525 3.136431 7.681775 -12.140005 2.204542 -0.475181 0.576801 -2.322580 -2.961487 -0.213370 4.552095 7.241887 -1.347536 2.107873 7.818847 1.469524 -1.516007 2.000251 0.898359 1.240398 2.229714 0.287961 -2.517377 -4.377418 -0.181343 -1.508943 2.364581 7.246340 10.833282 1.145639 0.278140 6.064702 2.040626 1.884216 5.102338 0.913161 -3.744107 0.199179 3.550596 -13.735472 -0.400841 -16.365023 -1.690663 -14.957775 -4.197529 0.740398 5.250500 -1.085522 4.856466 1.308196 6.737422 -1.378277 -2.439535 8.571071 8.060753 -6.613893 -3.551162 -5.164050 -4.771299 3.116469 -4.557446 1.040291 5.019030 2.856115 -6.118842 -3.240382 4.106414 4.240479 -2.763731 -6.773707 2.058524 6.129059 -6.070279 -6.626183 1.108122 7.711389 -2.372795 -12.715363 -2.293322 -8.138917 5.191705 -0.486099 -2.104012 -7.317976 0.212849 4.076864 -1.655251 -4.250170 -0.614783 5.241035 4.821636 3.682470 0.407622 1.236102 1.659290 13.820146 2.266385 -4.877946 0.686991 -0.235886 -3.792389 3.556116 -6.602208 -3.931066 3.138953 -7.550682 1.657692 7.176414 -4.175300 -3.084956 8.366245 3.405418 2.044098 30.747548 1.725634 10.570530 8.011273 -7.172896 2.748474 -3.471037 0.926955 3.032418 2.612606 -0.947185 -15.977059 -7.386476 3.894597 7.196871 5.909436 -10.298913 -4.485522 -0.912929 -0.395468 0.307116 -1.314655 2.111465 -0.281990 -5.843772 -1.580579 7.639398 17.205344 -3.017264 -0.125837 4.539114 3.317357 -6.540384 -12.795527 -3.798003 -5.411871 1.768837 1.167932 0.875085 4.492779 9.640114 -13.104460 6.118467 -0.474328 1.440721 6.738564 3.349335 -8.792202 -11.807633 -2.128978 4.441140 9.524133 -3.517032 1.746775 4.011598 -6.751099 -0.458280 1.867085 -0.709203 -1.235277 2.683548 0.845050 -3.343232 -4.208924 3.506515 -2.702889 -1.049745 0.234930 5.160940 0.503875 -9.690572 7.086925 -0.713450 -3.104313 2.264567 -3.209175 9.142297 -7.147055 -6.934730 5.676522 0.117197 -1.985419 -5.315307 1.950146 5.302530 2.454388 3.660700 -4.355256 -8.480013 4.403759 -5.168247 5.583542 2.889678 -0.989991 3.845421 -3.516742 -1.341169 -10.468421 -4.870373 -3.350696 1.419397 -8.781583 -3.699399 -1.178381 7.661740 5.060195 -0.099482 -7.055771 1.299791 9.801259 -8.876652 -2.647600 4.618782 5.943144 -9.961123 1.582155 5.938687 -10.841796 0.885296 -2.926368 -2.177084 -2.028741 -6.428158 5.267294 2.404233 5.399531 -0.638852 1.866329 1.271274 3.529464 3.285946 2.517898 1.419142 11.604038 10.198268 -1.614272 -4.522371 -8.212515 2.548640 -9.534582 -10.946443 4.387681 1.658138 -6.231987 1.618225 2.740821 10.200324 2.379706 -0.320332 -1.375000 0.991885 +PE-benchmarks/kmp-algorithm.cpp__computeLPSArray(char*, int, int*) = -1.444318 -1.780301 -0.737024 -3.472559 1.695950 2.380185 0.990925 -2.031730 -3.926584 -0.371704 1.277926 -3.594259 0.318405 3.879184 -1.054973 3.857867 5.702909 0.944238 -2.175608 -0.155275 4.672330 -2.016257 5.249348 4.832800 -2.592268 -0.362440 -0.020512 2.757627 1.068605 1.033323 0.513503 -0.876176 1.232258 -5.100008 -1.210569 -3.764128 0.731889 1.873725 3.589237 -5.863145 1.099715 -0.026298 0.760784 -1.111034 -1.365936 -0.176532 1.882377 3.022578 -0.367685 0.918469 3.163212 0.381702 -0.506401 0.872580 0.757111 1.434199 1.359677 0.462178 -1.073318 -1.810075 -0.124895 -0.868743 1.591656 2.888980 4.580864 0.368942 0.079340 2.675803 0.806141 0.650996 2.244499 0.290540 -2.476615 -0.382526 1.194327 -7.008343 0.386778 -7.070249 -0.540512 -6.730929 -1.685647 0.487547 2.021058 -0.223257 2.426941 0.528558 2.878026 -1.272950 -0.982849 3.500656 3.280777 -3.040713 -1.420478 -2.294963 -1.956353 1.149452 -1.667604 -0.411994 2.931652 1.101884 -2.483851 -1.177375 2.443801 2.187381 -1.166623 -2.967087 0.960051 2.805115 -2.887446 -3.512595 0.649688 3.471299 -1.572413 -5.746295 -0.678996 -3.783627 1.917287 -0.316877 -1.037305 -3.837312 0.292091 2.210580 -0.511228 -1.944567 -0.356256 2.732987 1.739904 1.262644 0.202169 0.379567 0.287642 6.427727 1.352340 -2.050141 0.420334 0.341750 -2.060959 1.294219 -2.839030 -2.080307 0.913602 -3.786090 0.310430 3.332766 -1.841486 -0.511257 4.240863 1.914972 0.833564 15.610056 0.597908 5.066529 3.507922 -3.296440 1.792078 -1.149386 0.427734 1.284133 1.072657 -0.523260 -8.488491 -3.074193 1.385374 3.072591 2.657858 -4.812540 -2.353283 -0.885447 -0.305367 0.858771 -0.704586 0.645093 -0.080610 -2.682819 -0.689957 2.768472 8.782016 -1.284942 0.654411 2.023952 0.798969 -3.805447 -6.796746 -1.679215 -3.083954 0.646280 -0.406691 -0.006749 1.764238 4.033934 -5.683027 2.870507 -0.887090 0.280244 3.492813 1.255933 -3.708980 -6.529755 -1.562223 1.961266 4.882549 -2.130716 0.757645 1.773429 -2.824378 -0.216583 0.720978 -0.337571 -0.607924 1.194238 0.343924 -1.718804 -1.407457 1.924537 -1.128072 -0.754121 0.199604 2.084669 0.142117 -4.134558 2.996091 -0.102145 -1.147547 1.513833 -0.661706 3.507083 -2.921200 -3.064593 2.575489 0.780762 -0.384501 -2.278846 0.749057 2.601786 1.008305 0.918299 -1.888316 -4.364118 1.654641 -2.648746 2.388810 1.236645 -0.698670 1.624916 -1.059906 -0.553810 -4.929764 -2.125500 -2.526575 0.324887 -3.647284 -1.972680 -0.573037 3.495185 2.112868 0.455935 -2.821118 1.033964 4.734675 -3.466752 -0.859243 2.015919 2.153705 -4.813129 0.073427 2.669118 -4.989159 0.368191 -1.073404 -1.080480 -0.640395 -2.584516 2.435625 1.052401 2.301631 -0.436827 0.780845 0.616241 1.405194 1.651079 1.175203 0.642513 5.450850 4.148696 -0.282020 -2.129565 -3.147782 0.849452 -4.044393 -4.454043 1.373404 1.592983 -2.908229 0.852453 1.903137 4.729990 1.058310 -0.069383 -0.011823 -0.109399 +PE-benchmarks/kmp-algorithm.cpp__main = -0.664556 -0.419210 0.334320 -1.720159 1.438492 1.221940 0.731702 -0.531123 -2.155871 -0.747339 0.584456 -2.535585 -0.958784 2.499930 -0.684386 1.415113 3.469405 0.664735 -0.975969 -0.209642 1.879591 -0.637834 3.110280 2.891250 -1.814050 0.010451 -0.328063 1.301507 0.133653 1.213787 0.113333 -1.734558 0.939384 -1.565387 -0.285824 -1.609236 0.182497 0.447800 0.978094 -3.575629 0.503413 0.913090 0.216778 -0.636248 -0.386017 0.278036 1.931379 1.807063 -0.160596 0.658438 1.483672 0.366832 -0.045291 0.563499 0.663300 0.300432 0.738227 -0.408893 -1.287868 -0.684212 -0.347526 -1.007822 -0.022951 1.833161 2.691416 0.263179 -0.130309 0.757844 0.036319 0.587223 1.070034 0.326801 -0.126559 0.191239 0.957372 -2.063225 -0.184074 -3.353867 -0.378987 -4.395057 -1.471404 -0.272616 2.079519 0.703763 0.823513 -0.482227 2.072654 -0.520521 -0.242580 1.892006 2.669827 -1.670277 -1.093997 -1.409020 -0.998742 0.815806 -1.139758 -0.066294 1.169739 0.359003 -1.858527 -0.811120 1.121378 0.677789 -0.729570 -0.943277 0.357427 1.891893 -2.097347 -1.286530 -0.704111 1.644904 -0.064368 -3.311441 -0.631877 -1.309823 0.682651 0.462836 -0.910096 -1.566350 0.574794 0.900695 -0.722593 -0.767445 -0.932130 1.969538 0.721464 0.694450 0.370886 0.544169 0.604704 3.021148 0.860522 -1.167053 0.234453 0.092793 -0.798961 0.702836 -1.415478 -1.010438 0.317298 -1.968756 0.427254 1.392517 -1.354649 -0.625353 0.323724 0.620477 0.708575 6.868511 -0.099315 2.589981 1.531840 -2.090457 1.251735 -0.698734 -0.121931 0.299904 1.050797 0.292781 -3.010103 -1.802346 1.212604 2.204060 1.637805 -2.372832 -0.411358 -0.367665 0.057943 -0.033197 0.220893 0.644940 0.270550 -1.651047 -0.479375 1.635222 4.560414 -0.783196 -1.156491 1.052449 0.659397 -0.840979 -2.548419 -0.694098 -0.906979 0.334266 0.307574 -0.051016 1.130719 2.695709 -3.744044 2.045212 -0.181369 -0.183363 2.066520 0.488099 -1.855577 -2.741614 -0.618778 1.550744 2.877542 -0.222389 0.113885 0.509214 -1.865512 -0.246106 0.394859 0.289638 -0.476250 0.941120 0.049873 -1.276903 -1.168423 -0.314084 -0.580658 -0.297827 -0.542559 1.195770 0.815070 -3.210965 2.184654 0.059196 -0.746964 0.199650 -0.411495 1.869016 -1.877489 -2.234515 1.126531 -0.487511 -1.482253 -1.174683 0.106765 1.190077 0.552534 0.658833 -0.908165 -2.273179 1.894137 -0.760968 1.835668 0.913542 -0.063491 1.519011 0.595556 -0.791987 -1.904801 -1.627570 -0.036968 -0.505910 -1.762987 -0.229229 -0.663673 1.895051 1.707103 0.117296 -1.613319 -0.466311 2.598921 -1.840767 -0.662608 1.641298 0.530566 -1.933993 0.714579 1.993005 -2.602105 -0.202958 -1.186647 -0.464753 -0.699848 -1.618311 0.973442 -0.143075 0.972679 0.268540 0.142776 -0.409695 0.692037 0.550557 0.035575 0.130079 3.141546 2.391207 -0.920106 0.044046 -2.037587 0.965578 -2.604078 -2.556246 0.771518 0.279756 -1.605967 0.249957 0.562015 2.036945 0.342252 -0.239044 -0.683082 0.311571 +PE-benchmarks/little-and-big-endian-mystery.cpp__show_mem_rep(char*, int) = -0.646289 -0.847822 -0.024126 -1.614356 0.778507 0.700486 0.452805 -0.725016 -1.775920 -0.374244 0.664228 -1.536162 -0.111400 1.794427 -0.594134 1.459625 2.179449 0.446918 -0.859958 -0.243237 1.765928 -0.585293 2.065056 2.000181 -1.432118 -0.169570 -0.143803 1.154751 0.674450 0.421803 0.312798 -0.463818 0.529390 -1.695536 -0.287928 -1.312153 0.384537 0.844620 1.145381 -2.387688 0.432737 0.181104 0.434376 -0.397481 -0.462221 0.031168 0.790912 1.455599 -0.415896 0.605058 1.436994 0.169194 -0.126767 0.363787 0.181196 0.255310 0.207289 -0.188250 -0.555248 -0.615113 -0.002590 -0.725314 0.630590 1.437636 1.929473 0.083835 0.046833 0.914755 0.420926 0.380286 1.105504 0.212025 -0.812086 -0.186708 0.704518 -2.273065 0.114334 -2.750230 -0.149835 -2.903194 -0.883224 0.114193 1.375698 0.418229 0.814163 0.146710 1.453115 -0.333884 -0.446520 1.561255 1.442123 -1.235806 -0.704025 -1.034303 -0.994292 0.713194 -0.898984 -0.066743 0.682707 0.683143 -1.176229 -0.486977 0.603463 0.766668 -0.602281 -1.005232 0.302421 1.291798 -1.449102 -1.350656 0.104482 1.358799 -0.369392 -2.340101 -0.250972 -1.410674 0.876155 -0.082144 -0.439702 -1.171884 0.069245 0.718670 -0.298645 -0.575418 -0.842948 0.999215 0.667409 0.589820 0.100547 0.195568 0.198438 2.241256 0.415956 -1.041280 0.049362 0.232375 -0.578911 0.632623 -1.143899 -0.844075 0.569140 -1.617464 0.044670 0.997224 -0.878433 -0.473027 1.144332 0.692801 0.429582 5.237354 0.338338 1.953193 1.470947 -1.298900 0.620014 -0.385421 0.268054 0.756689 0.599515 -0.249177 -2.335728 -1.430187 0.621620 1.521143 1.207258 -1.502938 -0.794639 -0.205755 -0.094077 0.257311 -0.160729 0.355197 -0.148630 -1.177023 -0.295769 1.135522 2.840086 -0.387336 0.059184 0.749270 0.632622 -1.248853 -2.083705 -0.632809 -1.154534 0.309039 0.137262 0.105805 0.869474 1.916219 -2.512435 1.355971 -0.147937 0.310904 1.054289 0.322057 -1.539098 -2.389194 -0.465149 0.714292 1.778134 -0.737402 0.337106 0.922564 -1.401787 -0.072541 0.337256 -0.093332 -0.376544 0.623561 0.144366 -0.596150 -0.752999 0.581894 -0.589116 -0.236233 -0.049778 1.016948 0.145863 -1.741805 1.222915 -0.238646 -0.695664 0.499932 -0.410016 1.446571 -1.524168 -1.354896 1.017616 0.132335 -0.533577 -0.963034 0.279077 1.084602 0.225313 0.110191 -0.778788 -1.508175 0.899089 -0.947356 1.064892 0.629932 -0.373868 0.831263 -0.224220 -0.268737 -1.540351 -0.702660 -0.539762 -0.072933 -1.405407 -0.587724 -0.267945 1.452980 1.126359 0.130016 -1.062773 0.526106 1.843602 -1.205797 -0.668285 0.908261 0.470302 -1.530037 0.460882 1.199273 -2.016260 0.187897 -0.776807 -0.088833 -0.184587 -1.061411 1.244794 0.379094 1.075481 -0.148426 0.410992 0.088464 0.759827 0.688322 0.347128 0.251058 2.267047 1.513520 -0.218263 -0.596782 -1.556604 0.479736 -1.829522 -1.726050 0.513571 0.570530 -1.134170 0.439906 0.320191 1.844453 0.527817 -0.039293 -0.220908 0.234687 +PE-benchmarks/little-and-big-endian-mystery.cpp__main = -0.197640 -0.338859 0.367702 -0.680341 0.318418 -0.187868 0.215305 -0.016211 -0.868134 -0.316912 0.193609 -0.628435 -0.178737 0.783102 -0.233712 0.284798 1.017858 0.440067 -0.288668 -0.284299 0.501521 -0.553227 0.780996 0.899518 -0.600944 0.029221 -0.176826 0.574123 0.292535 0.497529 -0.016829 -0.199229 0.138514 -0.296802 0.184283 -0.693515 0.073303 0.389332 0.023222 -1.170603 0.220275 0.280180 0.453351 -0.133738 -0.016799 0.545642 0.395344 0.549731 -0.168118 0.353568 0.534858 -0.004715 0.095926 0.167699 0.236266 0.120460 0.464312 -0.079017 -0.396525 0.005946 -0.089421 -0.628602 0.227538 0.552229 0.804450 -0.005627 -0.009244 -0.007723 0.190394 0.234900 0.538455 0.040350 -0.148279 -0.205676 0.273662 -0.668444 0.207159 -1.228557 0.004597 -1.819434 -0.442636 -0.063423 0.994304 0.196348 0.011117 -0.042965 0.632965 -0.111736 -0.077506 0.444723 0.619027 -0.331347 -0.351917 -0.323456 -0.410456 0.360139 -0.319374 -0.207355 0.431314 0.380680 -0.491479 -0.045589 0.442982 0.103275 -0.236046 0.059140 0.071518 0.643844 -0.833863 -0.320842 -0.234170 0.489248 0.152571 -0.830549 0.269776 -0.592042 0.385185 0.063241 -0.304546 -0.139106 0.153161 0.164070 -0.280912 0.139321 -0.924187 0.660717 -0.036133 0.156367 0.024591 0.059226 -0.021636 0.430960 0.228329 -0.543953 0.029774 0.244962 -0.362755 0.157688 -0.565230 -0.414538 0.445566 -0.592337 -0.002076 -0.046668 -0.454631 -0.224670 0.215518 0.294879 0.227554 1.550245 0.021174 0.724722 0.451571 -0.423439 0.447291 0.111259 0.170759 0.307921 0.455573 -0.113601 -0.523675 -0.598850 0.167224 0.655235 0.539524 -0.581875 -0.354599 -0.172501 -0.040856 0.301001 0.062736 0.088605 -0.107068 -0.476550 -0.163772 0.133030 1.051576 0.018301 -0.301108 0.097117 0.088158 -0.461600 -0.797591 -0.125819 -0.208179 0.177601 -0.265412 -0.044965 0.392991 0.821703 -1.563873 0.746061 -0.158681 0.057641 0.573732 -0.065791 -0.428877 -1.384873 -0.269980 0.259106 0.975054 -0.101565 -0.075359 0.441534 -0.597522 -0.077807 -0.022174 0.138675 -0.245167 0.267362 0.078148 -0.288870 -0.227290 -0.200067 -0.126657 0.041382 -0.099591 0.373750 0.220213 -1.056859 0.469055 -0.169198 -0.233606 0.100927 0.083777 0.255586 -0.606046 -0.539413 0.161930 0.020106 -0.529599 -0.662908 0.022780 0.447651 -0.284924 -0.127713 -0.182746 -0.567345 0.550424 -0.533485 0.479209 0.287960 -0.228847 0.529446 0.595577 -0.099042 -0.436157 0.014425 -0.213071 -0.483233 -0.269821 0.190163 -0.185521 0.454191 0.574291 0.148370 -0.164211 0.223455 0.916743 -0.276497 -0.445196 0.483448 -0.208539 -0.238071 0.571359 0.600983 -0.945966 -0.093946 -0.479388 -0.241825 0.075006 -0.256878 0.571982 -0.017564 0.350380 -0.057703 0.173303 -0.194771 0.329258 0.164992 -0.102302 0.043050 1.093321 0.892401 -0.182565 0.178921 -0.525532 0.237410 -0.720817 -0.424525 -0.086691 0.301004 -0.503714 0.272856 0.072145 0.646673 0.179180 -0.060690 -0.196962 0.224777 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -4.338663 -5.478826 -3.009467 -9.543263 5.437987 7.164553 3.334270 -6.549895 -10.618760 -0.549631 4.978270 -10.566225 0.255404 11.013799 -3.427335 11.204529 14.414575 2.078230 -5.948188 -1.263930 12.038413 -1.150908 14.693149 12.618004 -7.900462 -1.202082 -1.802988 5.193388 3.481950 -0.128062 1.503308 -2.899643 5.190691 -13.977109 -4.622810 -7.209932 2.402932 4.932808 11.357551 -13.585513 3.386670 -1.839737 1.398938 -2.573186 -4.027329 -0.720043 5.486779 8.731378 -1.320662 3.225267 8.610266 0.221383 -1.435211 2.751727 1.241795 2.653830 0.551603 0.504782 -3.289434 -6.086221 -0.560192 -1.234701 2.920528 7.738000 10.875856 1.923342 -0.568649 8.127405 3.316419 1.920972 6.232004 1.273600 -4.629761 -0.156471 3.562205 -15.930456 -1.541678 -16.763299 -2.638795 -14.865840 -5.200568 1.941697 6.478780 -0.043682 7.095601 1.646298 7.807385 -2.128609 -4.028662 9.442807 9.897258 -9.759485 -4.484400 -5.972670 -4.261566 2.476870 -4.564131 1.575539 5.447589 3.089329 -8.010306 -4.340540 3.794996 5.408713 -3.132231 -8.759541 2.318132 7.297282 -7.361388 -8.551522 2.028139 9.484898 -3.188998 -14.894834 -3.180717 -8.006213 5.465385 -0.638796 -3.545458 -10.196090 0.713767 5.152081 -2.532934 -5.756854 0.688291 5.887102 6.501295 4.242376 0.612113 2.111898 1.627888 17.559483 1.930742 -6.294272 1.430736 -0.426185 -2.502773 4.369264 -6.786319 -5.428041 1.682269 -10.770523 3.361437 9.034685 -5.089855 -2.160531 9.758508 5.829570 1.625286 34.314885 1.990815 13.600836 10.604233 -8.273614 3.240014 -4.972617 2.073536 3.346964 2.539486 -1.425761 -17.715809 -9.250444 5.273762 8.356528 6.919080 -11.945025 -4.437369 -1.528647 0.158821 0.624275 -1.871134 2.441245 0.761082 -7.494359 -1.606581 9.366609 21.548740 -4.794419 1.724900 5.996572 2.230802 -5.992796 -14.892286 -5.776621 -7.708921 1.817484 3.978873 2.539394 5.326883 12.041115 -12.726147 7.565801 -0.931870 1.606262 7.382087 5.004939 -11.091780 -11.482416 -4.059250 5.079509 10.733080 -4.159462 1.754120 5.281157 -8.438307 -0.547914 2.873477 -1.834518 -1.625472 3.390030 1.544093 -4.212255 -4.017362 5.114850 -3.974669 -1.787488 0.947342 7.010494 -0.059499 -11.099665 7.933134 -0.680315 -4.483232 3.508655 -3.736346 11.386301 -7.728403 -7.736444 7.815126 0.533292 -2.123770 -4.914922 3.069353 5.505200 3.373438 4.196148 -5.808619 -11.082951 5.850186 -5.175878 7.414434 3.686574 -1.608796 3.647280 -5.979213 -1.838637 -11.212821 -6.271402 -3.361649 2.015227 -10.810660 -5.267187 -1.144457 9.745347 5.565659 0.600764 -9.164366 1.641628 10.700296 -10.531919 -2.109285 5.960620 7.239605 -12.392074 0.948147 7.767826 -12.228427 2.047906 -3.227240 -2.113478 -3.300461 -7.629709 6.115262 3.698646 6.919256 -1.716715 2.494285 2.570854 4.450821 3.972127 2.803478 2.309702 13.543542 9.569795 -1.214024 -6.321837 -10.086927 4.057803 -11.205166 -12.844165 5.919413 3.034724 -8.791763 1.740226 2.496423 13.183418 2.449750 -1.605411 -1.486493 0.865966 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__sort(int*, int) = -2.107683 -2.457591 -0.886699 -4.646723 2.819759 3.154795 1.613872 -3.113769 -5.106857 -0.519230 2.396802 -4.919553 -0.229837 5.358158 -1.812362 5.001542 6.896340 1.024566 -2.717093 -0.953066 5.689327 -0.696159 7.134143 6.242666 -4.143293 -0.516849 -0.388755 2.628954 1.963582 0.162556 0.512121 -1.521849 2.550935 -6.297330 -1.940834 -3.514040 1.062396 2.167462 5.130965 -6.598006 1.501586 -1.138032 0.227456 -1.079990 -1.778925 0.440193 2.848359 4.283869 -0.954785 1.870145 4.409592 0.247021 -0.727210 1.313131 0.605293 1.000911 0.595801 0.522438 -1.468581 -2.686106 -0.355606 -0.933492 1.304058 3.991012 5.476494 0.754357 -0.256008 3.643318 1.493789 1.001222 2.988282 0.776255 -1.790062 0.032362 1.985375 -7.594047 -0.714642 -8.891816 -1.317533 -8.069669 -2.631154 0.733518 3.292544 -0.540739 3.169921 0.973489 4.062929 -0.634263 -1.904829 4.578386 4.941780 -4.637987 -2.144450 -2.640738 -2.301501 1.281089 -2.350441 0.982673 2.451242 1.519609 -3.911520 -2.329157 1.845289 2.326609 -1.636069 -4.085884 0.967740 3.632425 -3.850912 -3.820339 0.558622 4.267287 -1.282532 -7.294024 -1.469898 -3.919613 3.562103 -0.298266 -1.754208 -4.599694 0.381724 2.481891 -1.314022 -2.613176 0.285987 2.856793 3.185779 2.153353 0.229545 0.802527 0.860047 8.139736 1.292655 -3.140999 0.507113 -0.234831 -1.332798 2.157426 -3.415358 -2.346935 1.321228 -4.986223 1.819494 4.081999 -2.530988 -1.431404 5.118339 2.394746 0.837207 16.158142 0.846445 6.397107 4.978460 -4.099417 1.272456 -2.345829 0.991946 1.911552 1.554859 -0.545731 -8.063512 -4.493595 2.641877 4.273973 3.368665 -6.057034 -2.238366 -0.590467 0.076920 0.169159 -0.728999 1.145955 0.151050 -3.504097 -0.848652 4.397430 9.957467 -2.275720 0.130504 2.668534 1.309442 -2.730103 -6.856219 -2.625949 -3.356007 0.989199 2.074602 1.124220 2.684651 5.914325 -7.320871 3.670684 -0.498504 0.718483 3.371142 2.478470 -5.242514 -5.604882 -1.582087 2.472479 5.046275 -1.601137 0.904277 2.629679 -4.251400 -0.282599 1.297339 -0.643091 -1.020452 1.807845 0.987164 -2.200990 -2.148591 2.112734 -1.689136 -0.783758 0.349043 3.461601 -0.272475 -6.488631 3.933790 -0.464656 -2.244852 1.510215 -1.845832 5.529883 -3.938666 -3.991489 3.676797 0.003416 -1.199106 -2.593317 1.370294 2.717718 1.370328 2.148651 -2.879325 -5.328118 2.882160 -2.523645 3.608269 1.847904 -0.634693 2.396118 -3.167661 -0.927139 -5.479352 -2.590238 -0.894362 0.721415 -5.053089 -2.228617 -0.613055 4.593890 2.991892 0.214868 -4.087159 0.810028 5.198511 -5.314745 -1.147018 2.900845 4.061679 -5.598232 1.021681 3.710850 -5.810994 0.765821 -1.730397 -1.196948 -1.563109 -3.693344 3.172386 1.554207 3.296910 -0.668561 1.327721 0.983928 2.341710 1.765893 1.401005 1.052234 6.376691 5.641989 -1.024904 -2.794102 -4.931837 2.067764 -5.597417 -6.290258 2.788778 1.168310 -3.997735 0.788149 0.771972 6.231877 1.210504 -0.793911 -0.835342 0.672522 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__printArr(int*, int) = -0.608681 -0.542805 0.130173 -1.464337 0.789145 0.601956 0.381479 -0.547099 -1.491163 -0.440979 0.388308 -1.338602 -0.286724 1.679243 -0.575714 1.142101 2.129314 0.452111 -0.623773 -0.259267 1.621158 -0.679276 1.883564 1.846718 -1.418705 -0.206189 0.163724 1.046456 0.540223 0.594055 0.133651 -0.710511 0.420563 -1.352666 0.019831 -1.326563 0.395896 0.667348 0.874576 -2.317393 0.360162 0.168602 0.386133 -0.367135 -0.405736 0.196239 0.936180 1.347702 -0.574801 0.396516 1.377386 0.327438 -0.197433 0.329085 0.119468 0.230413 0.259702 0.019385 -0.540433 -0.450362 -0.039449 -0.700752 0.568084 1.385594 1.890734 0.071748 0.121522 0.749780 0.287010 0.359141 0.815169 0.186958 -0.472552 -0.055036 0.709498 -2.048686 -0.036423 -2.968127 -0.119770 -3.096674 -0.815430 -0.171978 1.075425 0.247107 0.675459 0.036199 1.411926 -0.203200 -0.166385 1.415577 1.512360 -1.122445 -0.637008 -1.158359 -1.046566 0.703082 -0.851903 -0.077597 0.706674 0.453946 -1.087425 -0.735388 0.549635 0.647487 -0.540651 -0.919619 0.191391 1.223433 -1.322563 -1.160212 -0.228588 1.031310 -0.325850 -2.257403 -0.090368 -1.329476 0.774925 -0.040901 -0.356442 -1.152850 0.073558 0.823885 -0.378027 -0.562337 -0.815473 1.150072 0.643401 0.380147 0.123659 0.015259 0.188347 1.908385 0.586442 -0.980375 -0.088864 0.263657 -0.767136 0.293942 -1.290875 -0.699208 0.820815 -1.454516 0.061862 0.921166 -0.840176 -0.451654 1.227696 0.263466 0.634955 4.947051 0.166089 1.665344 1.108948 -1.343850 0.819296 -0.218665 0.068555 0.622524 0.709776 -0.044783 -2.173060 -1.312931 0.569454 1.411659 1.131762 -1.382561 -0.865566 -0.320549 -0.136356 0.164396 -0.142273 0.371741 -0.351853 -1.074295 -0.307274 1.003002 2.653488 -0.374234 -0.174251 0.644909 0.863619 -1.129721 -1.940282 -0.527083 -1.205442 0.246981 0.069484 -0.020263 0.903650 1.823489 -2.858622 1.281931 -0.109128 0.161837 0.947508 0.160930 -1.284486 -2.393562 -0.148541 0.890993 1.706230 -0.543161 0.415440 0.675871 -1.300986 -0.045037 0.240077 0.166155 -0.418059 0.569230 0.068748 -0.756680 -0.846340 0.382686 -0.603856 -0.410697 -0.117271 0.820818 0.256675 -1.969182 1.351841 -0.300456 -0.516950 0.437583 -0.390232 1.206725 -1.517392 -1.408520 0.881815 0.136940 -0.372541 -0.898024 0.217426 1.100203 0.066148 0.159535 -0.690083 -1.732300 0.799285 -0.814379 0.964979 0.560831 -0.132999 0.923522 -0.031944 -0.264837 -1.562507 -0.619611 -0.365613 -0.091261 -1.290774 -0.525602 -0.239037 1.344967 1.231077 0.010449 -0.842349 0.338641 1.733843 -1.094425 -0.575973 0.879526 0.362558 -1.333023 0.332696 1.148114 -1.869230 -0.120157 -0.831856 0.022589 -0.116401 -1.109114 0.952835 0.051987 0.835905 0.053124 0.283482 -0.090316 0.703319 0.666963 0.261514 0.151329 2.062826 1.525517 -0.398555 -0.373002 -1.427218 0.435643 -1.841886 -1.625960 0.380968 0.340007 -0.939803 0.425190 0.303349 1.588581 0.264595 0.246723 -0.150092 0.046662 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = -0.835348 -0.482791 0.874075 -2.451551 1.844143 1.321673 0.853203 -0.592427 -2.722096 -0.983301 0.766106 -2.917087 -1.358813 3.066216 -1.034351 1.251697 3.961750 0.816887 -1.126294 -0.569871 2.146929 -0.357593 3.674080 3.504182 -2.645292 0.020809 -0.210218 1.583471 0.609549 1.460220 -0.045542 -2.005401 0.998527 -1.331059 -0.006084 -1.785661 0.226410 0.470924 0.869568 -4.236838 0.605399 0.844341 0.015487 -0.560465 -0.237481 1.055586 2.507012 2.270692 -0.720054 0.900845 2.117613 0.558087 -0.081114 0.597353 0.613386 -0.014394 0.967874 -0.124427 -1.321380 -0.705067 -0.382619 -1.338132 0.018782 2.444461 3.160622 0.294038 -0.216815 0.532503 0.396366 0.736276 1.266279 0.563067 0.221722 0.403168 1.295815 -1.969193 -0.190106 -4.379227 -0.240341 -5.465727 -1.871881 -0.425829 2.855422 0.833831 0.623820 -0.674521 2.736445 -0.272631 -0.313251 2.338711 3.287518 -1.873266 -1.243564 -1.660778 -1.545506 1.108870 -1.344503 0.190100 0.911141 0.644203 -2.299775 -1.110393 0.822203 0.489002 -1.035875 -0.726346 0.235779 2.328161 -2.651067 -1.056553 -0.948617 1.933748 0.336603 -4.086012 -1.028033 -1.646752 1.429048 0.316104 -1.131781 -1.464677 0.571401 1.002960 -1.102182 -0.475268 -1.599746 2.414059 1.103651 0.777931 0.293600 0.444231 0.769891 2.965473 0.933311 -1.677395 0.101393 0.146464 -0.750904 0.693304 -1.853594 -0.860133 0.824939 -2.272193 0.775337 1.346924 -1.659393 -0.966498 0.413226 0.472971 0.884057 7.872244 -0.172947 3.086429 1.822582 -2.426892 1.340763 -0.512879 -0.065890 0.733576 1.378385 0.439172 -2.840891 -2.240327 1.503259 2.833068 1.948963 -2.800822 -0.200182 -0.250084 -0.138719 -0.216804 0.438195 0.619846 0.009304 -1.869152 -0.662889 1.987384 4.825922 -0.709067 -2.012507 0.970824 1.094616 -0.649283 -2.224219 -0.727036 -0.788997 0.496337 1.006026 0.055440 1.736240 3.413265 -5.431386 2.499446 0.144252 -0.161087 2.101778 0.498410 -2.190991 -2.902624 -0.413312 1.836746 3.151952 -0.022077 -0.050756 0.814784 -2.468777 -0.279772 0.606472 0.418382 -0.907295 1.274394 0.409087 -1.524216 -1.478582 -0.793682 -0.823909 -0.175053 -0.924255 1.589571 0.327436 -4.736497 2.672127 -0.149742 -1.031447 -0.013703 -0.856515 2.058521 -2.482067 -2.746537 1.254541 -0.549488 -1.974766 -1.523694 0.108473 1.465655 0.397049 1.060144 -1.480922 -2.959364 2.393165 -0.938683 2.266411 1.225568 -0.025179 2.132641 0.529550 -0.743514 -2.172458 -1.650508 1.040160 -0.493428 -2.116809 0.062812 -0.834182 2.080059 2.272739 -0.109827 -1.681491 -0.509902 2.941137 -1.977900 -0.974529 1.812016 0.586120 -1.992079 1.228925 2.299050 -2.896209 -0.285716 -1.792888 -0.595763 -0.792008 -1.965213 1.476340 -0.163961 1.266551 0.397993 0.317624 -0.702845 1.116737 0.550628 -0.081351 0.358729 3.582018 3.230333 -1.239240 0.362248 -2.648416 1.504648 -3.332188 -3.027014 0.854544 -0.247345 -1.723992 0.298971 -0.064151 2.497413 0.391718 -0.216025 -0.830834 0.789640 +PE-benchmarks/ugly-numbers.cpp__maxDivide(int, int) = -0.524697 -0.789976 -0.311442 -1.044750 0.518852 0.223133 0.377740 -0.572272 -0.986254 -0.036679 0.401499 -0.858937 0.200314 1.199102 -0.276157 1.329395 1.552041 0.492974 -0.346902 -0.415373 1.269773 -0.637810 1.477947 1.347963 -0.775909 -0.153613 -0.062617 0.731948 0.274326 0.039046 0.055611 -0.339615 0.343654 -1.663417 -0.400154 -1.234840 0.335511 1.006332 1.444148 -1.576638 0.393404 -0.205330 0.495245 -0.236341 -0.444402 -0.106516 0.332154 0.843743 -0.488298 0.610724 0.903967 -0.088530 -0.116708 0.318208 0.210946 0.505119 0.094243 0.352499 -0.371310 -0.433711 -0.096412 -0.090945 0.536830 0.535901 1.060896 0.098506 -0.170561 0.872616 0.348317 0.128487 0.727153 0.101442 -0.582288 -0.353628 0.430248 -1.978590 -0.340405 -2.635610 -0.155744 -2.051867 -0.532446 0.248413 0.867932 -0.284631 0.720720 0.305023 0.808433 -0.199881 -0.405224 0.868546 0.833704 -1.004485 -0.442306 -0.548021 -0.660950 0.284369 -0.341785 0.027934 0.730857 0.516886 -0.910977 -0.815697 0.732859 0.545497 -0.276646 -0.959317 0.015316 0.841863 -0.935811 -1.038502 0.185193 0.920861 -0.490858 -1.304719 0.289538 -1.069383 0.649040 -0.083275 -0.464983 -0.991431 0.136221 0.480810 -0.415229 -0.495515 -0.019950 0.700776 0.553395 0.242194 0.042038 -0.020167 -0.221076 1.829389 0.209584 -0.866025 0.074964 0.245636 -0.426849 0.259742 -1.027339 -0.708466 0.598749 -1.253856 0.413352 0.518000 -0.559099 -0.252339 1.671665 0.669823 0.196423 3.244833 0.315164 1.381946 1.266469 -0.769375 0.569976 -0.413310 0.383011 0.499861 0.654043 -0.314094 -1.692778 -0.996434 0.383858 0.761404 0.664783 -1.112255 -1.312120 -0.267216 0.094065 0.338270 -0.211330 0.113136 -0.094909 -0.805371 -0.120486 0.678687 2.143816 -0.411201 0.084658 0.452368 0.568674 -0.957290 -1.832975 -0.658740 -1.283879 0.144801 0.042566 0.330313 0.595308 1.224296 -2.139029 0.826696 -0.249873 0.364990 0.670240 0.509261 -1.206423 -2.070546 -0.602769 0.346834 1.334064 -0.473317 0.532109 0.722329 -0.845970 0.025352 0.071401 -0.211391 -0.278594 0.457723 -0.043162 -0.615860 -0.243017 0.506664 -0.663660 -0.499527 0.264209 0.664398 0.325775 -1.343619 0.582887 -0.307488 -0.365306 0.724015 -0.109518 1.200264 -0.762824 -0.813173 0.842930 0.246101 -0.027905 -0.617050 0.363452 0.615246 -0.005318 -0.027839 -0.261475 -1.065701 0.434402 -0.881768 0.733606 0.351817 -0.366265 0.350372 -0.482284 -0.213904 -1.176825 -0.158759 -0.793815 -0.116688 -1.057253 -0.703812 -0.036271 0.932246 0.569552 0.264863 -0.815866 0.338355 1.366921 -0.950295 0.069930 0.667321 0.544805 -0.980636 0.178602 0.985603 -1.483673 0.173665 -0.461414 -0.107487 -0.128572 -0.530455 0.689320 0.308717 0.594842 -0.341425 0.289721 0.242474 0.510770 0.614456 0.220414 0.170899 1.668007 0.884634 -0.151900 -0.643532 -1.008877 0.218743 -1.027772 -0.916706 0.221891 0.478227 -1.107451 0.346194 0.308531 1.531132 0.313014 0.046602 0.046403 -0.105732 +PE-benchmarks/ugly-numbers.cpp__isUgly(int) = -0.680657 -1.141049 -0.199371 -1.806984 1.141147 0.271756 0.632947 -1.027253 -2.111574 -0.182515 1.196355 -1.759600 -0.003822 1.970293 -0.608715 1.594539 2.193904 0.394316 -1.025035 -0.859228 1.810788 -0.215067 2.307940 2.183574 -1.510957 0.025667 -0.354635 0.905462 0.949090 -0.061260 0.483616 -0.486293 0.620800 -1.888040 -0.714603 -1.041355 0.188911 0.943370 2.045988 -2.214949 0.599536 -0.078972 0.631985 -0.355870 -0.423773 0.284188 0.730773 1.472018 -0.615655 1.075838 1.943227 0.021947 -0.125368 0.395427 0.353033 0.022346 0.809061 0.247316 -0.466250 -0.774068 -0.148314 0.038561 0.394701 1.358991 1.697721 0.131094 -0.336731 1.039933 0.841304 0.746172 1.365321 0.343439 -0.570890 -0.338475 0.781327 -2.123597 -0.305463 -4.053403 -0.224054 -3.383859 -1.084220 0.751163 2.007364 -0.403800 0.670131 0.974441 1.489394 -0.032947 -1.052028 1.177115 1.399824 -0.898805 -0.755515 -0.356024 -1.346151 0.726185 -0.688297 0.491286 0.786076 1.199173 -1.502061 -0.576397 0.651881 0.499182 -0.637972 -0.947551 0.347522 1.277223 -1.319225 -0.841622 0.593850 1.910331 0.022803 -2.322642 -0.264119 -1.657787 1.146007 -0.139930 -0.905934 -0.883984 0.141307 0.090156 -0.888026 -0.197299 -0.250404 0.750991 0.896285 1.187703 -0.067515 0.055417 0.330915 2.224632 -0.084637 -1.560841 0.397503 -0.200904 0.022321 1.178790 -1.272720 -0.815755 0.848568 -1.413003 1.321656 0.641668 -0.924844 -1.178998 1.880253 0.913131 -0.144228 4.319537 0.383377 2.461976 2.000956 -1.018866 0.125890 -0.695813 0.576008 0.943826 0.902072 -0.455013 -1.295945 -1.660719 1.058252 1.555048 1.175333 -2.023123 -1.110934 0.325484 -0.091465 0.431299 0.044297 0.249044 0.105916 -1.151380 -0.391353 1.425919 2.745923 -0.296557 -0.723456 0.591072 1.307508 -0.820529 -1.842988 -0.809685 -1.152994 0.592220 0.760655 0.648488 1.121193 2.092711 -3.422419 1.365881 0.045642 0.656254 1.075232 0.885398 -2.106500 -2.535320 -0.706382 0.401115 1.773471 -0.450900 0.085857 1.307799 -1.500605 -0.123489 0.250478 -0.571985 -0.591286 0.784334 0.169937 -0.457588 -0.498686 0.522147 -0.598983 0.100204 0.073144 1.398623 0.136068 -2.746477 1.030946 -0.367489 -0.819644 0.175709 -0.700160 1.823349 -1.093518 -1.160304 0.998757 -0.258320 -0.622800 -1.175813 0.437085 0.823357 0.252489 0.901101 -0.774492 -0.830266 0.950967 -1.314757 1.452613 0.747062 -0.626100 0.620225 -1.016417 -0.174757 -1.675746 0.054700 -0.229272 -0.002187 -1.655182 -0.427023 -0.342305 1.259076 0.742343 0.158963 -1.452557 0.058727 1.834929 -1.574667 -0.526372 0.972535 0.625831 -1.554678 1.086575 1.338328 -1.957512 0.626521 -0.906176 -0.502640 -0.627899 -0.856823 1.505430 1.065650 1.148913 -0.608775 0.545414 0.286769 0.949538 0.586059 0.371749 0.387669 2.082691 1.846115 -0.384480 -0.762650 -1.800890 0.800648 -1.756631 -1.950594 0.870092 0.092528 -1.783971 0.175167 -0.392356 2.264916 0.577811 -0.236330 -0.565803 0.977588 +PE-benchmarks/ugly-numbers.cpp__getNthUglyNo(int) = -0.755313 -1.209909 -0.410726 -1.781124 0.929614 0.172367 0.536591 -0.627389 -2.255812 -0.211317 0.662257 -1.551934 0.209011 2.058338 -0.378473 1.794427 2.565026 0.695583 -0.771374 -0.349493 2.175701 -1.190804 2.034097 2.121173 -1.280628 -0.149719 -0.133678 0.972591 0.493379 0.491882 0.216713 -0.619453 0.436262 -2.112729 -0.254464 -1.856942 0.370108 1.356060 1.864685 -2.719064 0.666886 0.232624 1.215367 -0.541682 -0.593135 0.294268 0.486122 1.505642 -0.765135 0.811838 1.768079 0.068419 -0.248992 0.430652 0.282251 0.594598 0.350214 0.508441 -0.613732 -0.525468 -0.082340 -0.372260 0.922830 1.234704 2.119524 -0.051405 -0.009915 1.036213 0.582822 0.542596 1.264531 0.052531 -0.844955 -0.836266 0.748899 -2.704039 -0.335462 -4.282389 -0.092568 -4.218654 -0.913109 0.453275 1.567144 -0.283624 0.818603 0.375678 1.392985 -0.438370 -0.588319 1.425133 1.304594 -1.058148 -0.753968 -1.037975 -1.367661 0.811466 -0.729512 -0.294672 1.653041 0.578533 -1.245852 -0.797172 0.992189 0.770407 -0.524345 -1.309517 0.462485 1.377529 -1.255713 -1.557087 0.270447 1.709785 -0.455571 -2.319185 0.268881 -1.893110 0.474729 -0.095565 -0.655307 -1.217910 0.098360 0.473338 -0.713077 -0.591607 -0.588990 1.230115 0.569883 0.705527 0.128015 -0.231439 -0.060209 2.313031 0.358326 -1.488660 0.177394 0.330819 -0.713820 0.687905 -1.771607 -1.172867 1.154776 -1.665892 0.494643 0.639455 -0.980193 -0.522015 2.364348 0.759785 0.308483 5.518780 0.353499 2.392904 1.577633 -1.195287 1.167374 -0.139514 0.403404 0.876141 0.986204 -0.552879 -2.294349 -1.581727 0.580993 1.442816 1.416163 -1.897172 -1.783436 -0.304246 -0.111317 0.663724 -0.245648 0.279597 -0.197911 -1.311857 -0.296145 0.876747 3.327059 -0.313592 0.111126 0.727546 1.466743 -1.739917 -2.848301 -0.767223 -2.123717 0.310661 -0.342950 0.011936 1.072461 2.034449 -3.842165 1.452125 -0.323769 0.424257 1.155287 0.508832 -1.848364 -3.814808 -0.645576 0.549218 2.377489 -0.796901 0.692598 1.160549 -1.353577 -0.032403 0.076082 -0.275725 -0.454550 0.587239 -0.251547 -0.580230 -0.435063 0.890347 -0.830302 -0.582187 0.243843 1.042717 0.777570 -2.210026 1.034143 -0.363372 -0.515163 0.583850 -0.140453 1.362309 -1.296889 -1.296831 1.046604 0.355552 -0.030997 -1.237315 0.435229 1.258835 -0.122441 0.314315 -0.369314 -1.983320 0.930754 -1.356738 1.203934 0.618730 -0.707822 0.604265 -0.157631 -0.281710 -2.039252 -0.272772 -1.103598 -0.183936 -1.482547 -0.721992 -0.266326 1.495986 0.934960 0.423848 -1.089080 0.325049 2.245424 -1.201617 -0.357796 1.146859 0.207800 -1.570091 0.528555 1.489049 -2.447264 0.243221 -0.824001 0.038404 -0.092018 -0.849365 1.336256 0.666566 1.009301 -0.544535 0.349628 0.248209 0.800296 0.993667 0.293048 0.105950 2.520216 1.716693 -0.276210 -0.733986 -1.391831 0.230626 -1.758948 -1.685947 0.332476 0.605372 -1.849460 0.571537 0.515672 2.152245 0.209974 0.521247 -0.210619 0.161870 +PE-benchmarks/ugly-numbers.cpp__main = -0.274328 -0.540581 0.279136 -0.910169 0.465178 -0.227593 0.294573 -0.150293 -1.165105 -0.376244 0.496846 -0.997965 -0.237007 0.999618 -0.306703 0.454094 1.185934 0.332121 -0.411378 -0.383743 0.740930 -0.505898 1.059985 1.164527 -0.847898 0.026730 -0.253286 0.653978 0.510089 0.285522 0.181814 -0.265672 0.220276 -0.471954 0.058516 -0.674299 0.121929 0.455099 0.371432 -1.344959 0.266352 0.316292 0.508484 -0.152219 -0.073643 0.782161 0.419844 0.758668 -0.392915 0.558610 0.945481 -0.084393 0.049802 0.184898 0.151047 -0.195744 0.495089 0.089161 -0.420066 -0.116073 -0.036241 -0.586786 0.217937 0.736834 1.112619 -0.052848 -0.049574 0.141929 0.356580 0.349895 0.739542 0.108860 -0.115694 -0.253250 0.475254 -0.789650 0.075224 -1.953317 -0.008175 -2.445303 -0.601993 0.153551 1.410651 0.069686 -0.016281 -0.019484 0.787704 0.045752 -0.332062 0.740325 0.778779 -0.318084 -0.454637 -0.310465 -0.649028 0.528264 -0.456728 0.012856 0.635554 0.567244 -0.680160 -0.040575 0.425998 0.071688 -0.330391 -0.102801 0.128957 0.694540 -0.903866 -0.292764 -0.036111 0.785166 0.322826 -1.184100 0.137261 -0.812032 0.548235 0.021396 -0.372763 -0.008067 0.061485 -0.056529 -0.412053 0.196099 -1.034121 0.726213 0.162253 0.481930 0.046314 0.093848 0.140412 0.651639 0.061438 -0.768185 0.051041 0.101077 -0.255064 0.486101 -0.741418 -0.463136 0.758038 -0.660949 0.304773 -0.092417 -0.525365 -0.513189 0.504062 0.403766 0.104075 2.039804 0.179212 1.157808 0.783570 -0.463989 0.449797 -0.011341 0.262590 0.517424 0.525545 -0.240773 -0.486430 -0.784716 0.363225 0.858125 0.658598 -0.970850 -0.441602 0.103860 -0.031334 0.194112 0.101453 0.134729 -0.049110 -0.571140 -0.184055 0.474749 1.253926 0.054269 -0.379320 0.162303 0.481810 -0.485990 -0.941701 -0.194203 -0.293033 0.271140 -0.092820 0.104887 0.575218 1.059073 -2.219820 0.809166 0.074098 0.286545 0.624211 0.131985 -0.883577 -1.820709 -0.253946 0.226060 1.064011 -0.106286 -0.007624 0.665214 -0.768150 -0.069277 0.052196 -0.092693 -0.296460 0.354771 0.013240 -0.160526 -0.312905 -0.184547 -0.279211 0.175948 -0.134994 0.608333 0.281215 -1.476219 0.530440 -0.264044 -0.441589 -0.129624 -0.159380 0.522016 -0.759757 -0.629753 0.229898 -0.193918 -0.748332 -0.932705 0.104377 0.397559 -0.267461 0.130294 -0.245770 -0.689946 0.789303 -0.770460 0.633477 0.389647 -0.359630 0.585171 0.407081 -0.116619 -0.713725 0.017360 -0.016889 -0.442941 -0.591870 0.285671 -0.205222 0.513132 0.554157 0.103114 -0.405006 0.220496 1.041940 -0.442997 -0.595444 0.557092 -0.048637 -0.453924 0.840163 0.698081 -1.166879 0.163859 -0.686242 -0.347389 -0.048999 -0.388577 0.797960 0.290518 0.520020 -0.177900 0.240966 -0.111446 0.479454 0.215392 -0.077463 0.079709 1.338553 1.311075 -0.288561 0.051194 -0.842157 0.329827 -0.931211 -0.831727 0.151986 0.167922 -0.748781 0.238347 -0.017544 0.920091 0.286484 -0.142706 -0.396054 0.580433 +PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -3.001956 -4.305646 -3.338544 -6.188019 4.235393 5.873833 2.600500 -5.412131 -7.906681 0.666381 4.358286 -8.627496 0.270463 7.885160 -2.396166 8.361282 9.903820 0.968227 -5.154560 -0.757476 8.117320 0.272591 10.700173 8.706613 -5.047654 -0.655058 -2.272731 2.649845 1.951453 -1.710029 1.800010 -1.239496 4.027794 -9.669398 -3.868595 -3.276393 1.224821 2.972427 8.401873 -9.382155 2.041549 -1.243407 2.134718 -1.962896 -3.145798 0.258259 3.710583 6.393252 0.192616 2.558693 5.643746 -0.050043 -0.567722 1.914698 1.023672 1.114256 -0.003849 0.049053 -2.475889 -4.526259 -0.290661 0.084858 1.784597 6.096970 7.983208 1.553727 -0.563229 6.056704 2.635711 1.893822 4.966179 1.082159 -3.891856 0.100421 2.116447 -10.397403 -0.679412 -10.511670 -1.906752 -9.795812 -3.649480 2.309939 5.204775 -0.141457 4.854188 2.331338 6.097232 -0.776335 -3.608444 7.302044 7.183834 -6.486326 -3.477444 -3.282688 -3.526688 1.733316 -3.200190 1.936393 5.133563 3.153665 -5.987248 -1.721136 2.170311 3.709963 -2.279951 -6.479826 2.654078 4.980741 -3.918805 -5.777610 2.919571 7.303891 -2.130488 -11.098120 -2.020290 -5.395422 2.855426 -0.196332 -2.685749 -6.828253 0.368831 2.328339 -1.766849 -3.467492 0.033927 2.842000 4.093367 3.982138 0.288347 2.190476 1.739662 12.489084 0.033912 -4.713893 1.662601 -0.800354 -0.519831 4.806020 -3.651010 -4.218181 0.287990 -7.822272 3.596197 5.838244 -3.632109 -2.285962 4.305662 4.675218 0.360372 21.513456 1.473530 9.787613 7.525011 -6.419920 1.544230 -4.465141 1.795079 2.464542 2.142147 -2.105588 -10.412970 -6.898910 4.157083 6.865590 5.164216 -8.046316 -2.327256 -0.009683 -0.593103 0.092411 -0.968337 2.098955 0.385035 -4.274901 -1.195982 6.933349 14.479026 -2.889969 2.764646 4.399465 2.414333 -3.061665 -9.313963 -4.014727 -5.360620 1.650148 2.638385 2.142545 3.559927 8.397203 -7.865653 5.477003 -0.987906 2.186975 5.512302 4.124984 -8.389518 -7.995503 -3.152900 3.431007 7.328406 -3.451946 -0.340022 3.948058 -5.781517 -0.496019 2.183755 -1.789704 -0.870495 2.351234 0.498961 -2.077746 -2.562584 4.718981 -2.101929 -0.621289 0.747335 5.293883 -0.073601 -6.045415 5.726253 0.037622 -3.590117 1.671635 -2.841794 7.899009 -4.831819 -4.952677 5.001001 -0.426564 -1.228446 -3.147948 1.802432 3.917824 2.482483 4.162417 -4.534145 -5.680353 4.495756 -3.482711 5.605030 2.683190 -1.729569 2.194117 -5.182510 -2.336043 -6.743036 -5.361952 -2.649269 1.643079 -7.386324 -1.568849 -1.036338 6.992542 3.108323 1.074586 -7.595782 1.672672 6.925135 -6.558293 -2.094926 4.166747 3.409970 -9.006698 1.561181 5.290736 -8.086636 2.292876 -1.993974 -0.866500 -2.874199 -5.455539 4.844504 3.517264 5.116030 -2.351212 1.790391 2.880223 3.372738 2.759544 3.089240 1.944111 9.279857 4.514651 -0.460737 -4.568127 -7.471305 2.966887 -7.831298 -9.130456 4.642761 3.033301 -6.102883 0.882295 1.290430 8.531656 1.694188 -2.452661 -2.379889 1.871195 +PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.506122 -0.740676 -0.092479 -0.956983 0.649825 0.207414 0.291580 -0.471655 -1.190386 -0.148388 0.406858 -0.696922 0.190655 1.115358 -0.282880 1.112725 1.249664 0.371480 -0.400063 -0.264940 1.142007 -0.647114 1.021565 1.083318 -0.746963 -0.080175 0.034822 0.395253 0.199163 0.324390 -0.082814 -0.464549 0.350031 -1.199372 -0.152985 -0.876810 0.101927 0.817838 1.073442 -1.353169 0.312326 -0.045471 0.230859 -0.210599 -0.333802 -0.051947 0.274627 0.730369 -0.372357 0.721092 0.845958 0.060387 -0.158821 0.182223 0.229212 0.528689 0.074788 0.228805 -0.297129 -0.277958 -0.200646 -0.129448 0.562662 0.669301 0.958174 -0.126394 -0.032565 0.604041 0.249997 0.205221 0.756756 0.107795 -0.467309 -0.483222 0.462818 -1.608805 -0.185725 -2.250096 -0.104758 -1.997042 -0.501536 0.288764 0.727434 -0.143931 0.548286 0.231379 0.949589 -0.360150 -0.422999 0.781694 0.772085 -0.787932 -0.366914 -0.442777 -0.758083 0.167415 -0.336955 -0.185220 0.524062 0.214089 -0.696943 -0.617000 0.505273 0.433607 -0.278845 -0.922592 0.202077 0.794928 -0.844851 -0.999061 0.044497 0.952872 -0.316027 -1.100827 0.099641 -0.839065 0.486328 0.039285 -0.512514 -0.850455 0.144883 0.418850 -0.368446 -0.442503 0.060461 0.540371 0.456343 0.428563 0.045953 -0.132273 -0.052393 1.359160 0.382634 -0.822255 0.074896 0.237945 -0.198805 0.448569 -0.726989 -0.602684 0.349131 -0.902411 0.126163 0.402259 -0.562015 -0.174589 1.304047 0.393664 0.051418 2.607624 0.091899 1.083710 0.829862 -0.744184 0.439688 -0.160003 0.338476 0.511116 0.600647 -0.276385 -1.200466 -0.941141 0.462447 0.853283 0.754777 -0.943990 -1.073251 -0.152318 0.043447 0.446368 -0.143730 0.136242 -0.043031 -0.717414 -0.139966 0.328975 1.723028 -0.353570 -0.006057 0.423087 0.650826 -0.774830 -1.373721 -0.468551 -1.362802 0.149362 0.106994 0.033910 0.529739 1.202386 -2.012777 0.780618 -0.487137 0.113236 0.453633 0.468709 -0.803172 -1.800127 -0.475861 0.261413 1.154996 -0.336851 0.546117 0.684322 -0.755124 0.033065 0.030223 -0.068953 -0.397678 0.415001 -0.012869 -0.525673 -0.150429 0.566993 -0.453443 -0.431849 0.130630 0.582824 0.344441 -1.241049 0.549916 -0.002728 -0.265210 0.573103 0.100819 1.073758 -0.641958 -0.810822 0.713610 0.152472 0.078566 -0.417744 0.178091 0.641573 -0.097251 0.001049 -0.327502 -0.967254 0.403576 -0.531552 0.753306 0.345348 -0.462686 0.500581 -0.424639 -0.219763 -0.842052 -0.182769 -0.292690 -0.114670 -0.572793 -0.674023 -0.103517 0.860380 0.528980 0.391663 -0.567662 0.161387 1.110284 -0.871347 0.039877 0.677753 0.391029 -0.770002 0.284146 0.845753 -1.098053 0.146494 -0.432074 0.190191 -0.217347 -0.337142 0.828197 0.311263 0.548466 -0.360405 0.231022 0.142318 0.466226 0.605515 0.240671 0.034637 1.240318 0.941659 -0.183660 -0.471459 -0.737943 0.161761 -0.901649 -0.856758 0.142935 0.523899 -0.958288 0.190591 0.081170 1.165604 0.200931 0.233877 -0.049789 0.080679 +PE-benchmarks/binomial-coefficient.cpp__main = -0.830623 -0.816490 0.216398 -2.337771 1.466233 0.989300 0.774226 -1.056047 -2.489265 -0.958236 1.418418 -3.237650 -1.158369 2.699528 -1.183819 1.222404 3.351705 0.189340 -1.378658 -0.834450 2.194178 0.006019 3.604418 3.192914 -2.607046 -0.202928 -0.289738 1.492141 1.367840 -0.176997 0.985895 -1.101855 1.029797 -1.514795 -0.224814 -0.877060 0.485486 0.250692 1.115189 -3.419227 0.440746 0.238307 0.255518 -0.426388 -0.526565 1.631772 1.998831 2.265881 -0.758994 0.808749 2.542896 0.310017 -0.203889 0.467795 0.033089 -1.102946 0.581006 -0.031181 -1.024018 -0.979636 -0.033449 -0.977681 0.080360 2.573353 3.132542 0.333763 -0.056105 1.110309 0.840680 0.928449 1.477962 0.547588 -0.061084 0.601960 1.335780 -2.276619 -0.237260 -4.624232 -0.345678 -5.554106 -1.587945 0.023809 2.951058 0.206281 0.339318 0.099217 2.411215 0.511002 -0.764297 2.939817 3.007477 -1.325942 -1.271220 -1.341899 -1.615644 1.261804 -1.474889 0.971387 1.306663 1.478819 -2.140902 -0.328690 0.300743 0.411014 -0.949216 -1.089398 0.403428 1.782372 -2.118255 -0.568297 -0.043176 2.046466 0.701240 -4.184923 -0.891186 -1.757516 1.866961 0.037207 -0.787461 -0.839824 0.028933 0.442284 -0.846253 -0.042917 -1.661138 1.632155 1.271250 1.432834 0.150352 0.891723 1.085718 2.799499 0.281648 -1.623719 0.073615 -0.303377 -0.444878 1.253161 -1.507866 -0.864309 1.464065 -2.048838 1.405819 1.126979 -1.337411 -1.851785 0.622264 0.577016 0.599786 6.885683 0.348611 3.158205 2.161300 -2.035522 0.459109 -1.026002 0.240804 0.959007 1.052886 -0.126975 -2.003370 -2.233024 1.582887 2.651555 1.681190 -2.804133 -0.045348 0.481603 -0.302758 -0.499923 0.154317 0.742019 -0.198613 -1.346378 -0.577108 2.632490 3.851885 -0.377323 -0.727344 0.885621 1.452857 -0.353472 -1.989830 -0.679746 -0.358432 0.777068 1.201021 0.623081 1.635739 3.095721 -4.834257 2.017829 0.700868 0.904239 1.533231 0.850281 -2.656666 -3.302152 -0.175084 1.522602 2.284932 -0.394393 -0.359003 1.159491 -2.215840 -0.180668 0.778923 -0.060261 -0.599435 0.957362 0.226421 -0.628764 -1.579485 -0.049440 -0.790597 0.635460 -0.524451 1.714848 -0.087497 -3.893889 2.467588 -0.557642 -1.371745 -0.701360 -1.420835 2.229176 -2.388118 -2.117881 0.988898 -0.957321 -2.126746 -1.862774 0.251272 1.087591 0.298937 1.450760 -1.490981 -2.040432 2.262556 -1.372074 1.939330 1.057456 -0.144614 1.936163 -0.651439 -0.547046 -2.190368 -1.397228 0.782991 -0.145941 -2.466128 0.662049 -0.424332 1.766715 1.648696 -0.429978 -2.074044 0.464789 2.282790 -1.933171 -1.648558 1.305991 0.878157 -2.251772 1.736017 1.714566 -2.778343 0.384917 -1.788848 -0.751614 -0.825733 -2.109749 1.549655 0.568858 1.502000 -0.012530 0.575577 -0.023169 1.313923 0.495193 0.431394 0.556353 3.184358 3.257561 -1.052660 -0.378307 -3.011579 1.418187 -3.175466 -3.458596 1.387284 0.031418 -1.257505 0.241545 -0.327283 2.439895 0.704026 -0.930019 -1.266514 1.598402 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__computeTransFun(char*, int, int (*) [256]) = -2.237048 -2.750939 -1.407198 -5.274690 2.931776 4.994476 1.622968 -3.368366 -5.905907 -0.493118 2.289022 -5.657593 0.418591 6.112033 -1.655115 6.262384 8.136571 1.170524 -3.492870 -0.086252 7.044264 -1.359206 8.474055 6.968886 -4.082407 -0.509757 -0.111460 3.205144 1.464017 1.637820 0.956017 -2.314987 2.329839 -7.934271 -2.525860 -4.951008 1.049529 2.711793 5.757457 -8.185400 1.701564 -0.362650 0.119015 -1.741247 -2.268317 -1.536672 3.457538 4.756976 -0.601723 1.709658 4.673541 0.720150 -1.053564 1.375829 1.040317 2.025211 1.107490 0.087267 -1.602169 -3.150006 -0.231899 -1.166445 2.113786 4.531800 6.475613 0.556147 0.009054 4.539291 1.074930 0.967331 3.500291 0.534255 -3.432724 -0.595760 2.009066 -9.811845 -0.033470 -9.841727 -1.087728 -8.715506 -2.580173 1.011557 3.222365 0.484350 3.900701 0.853690 4.537833 -1.948262 -1.800021 6.169586 5.620193 -4.949284 -2.269553 -3.484248 -3.063649 1.619123 -2.633030 -0.247303 3.190045 1.511873 -4.069284 -2.115779 2.525902 3.388992 -1.831212 -5.347820 1.590008 4.189635 -4.613480 -5.297956 1.195800 5.423440 -2.384461 -9.174982 -2.540972 -5.011970 3.412042 -0.437778 -1.748784 -6.396398 0.466358 3.363808 -0.884538 -3.321836 0.679981 3.097056 2.894259 2.420903 0.383958 0.649163 0.776542 10.361940 2.068053 -3.176125 0.785731 0.143681 -1.884104 2.427574 -3.534116 -3.119511 0.306799 -5.995752 0.780171 5.818796 -2.865366 -1.026397 5.461107 3.003799 1.038401 23.078640 0.960159 7.399339 5.615191 -5.688592 1.490512 -2.422961 0.634098 1.991760 1.640475 -0.783831 -11.806896 -4.777469 2.520630 4.892263 4.138156 -6.828015 -2.399178 -1.023101 -0.352791 1.012042 -1.080717 1.046643 0.199347 -4.224591 -1.081601 4.898522 12.836052 -2.178210 0.711576 3.340957 1.580840 -4.703274 -8.590539 -2.719041 -4.726189 1.102761 1.171962 0.097601 2.811269 6.371183 -7.369224 4.282085 -1.468466 0.535525 4.370199 2.564571 -5.783044 -7.651715 -2.501182 3.408969 6.726849 -3.070110 1.467170 2.736537 -4.403375 -0.370027 1.361247 -0.794277 -0.878679 1.909961 0.691097 -3.160703 -2.252102 3.206326 -1.814082 -1.002892 -0.051563 3.413682 -0.176256 -6.161866 5.060394 0.001877 -1.950552 2.304131 -1.184249 6.429298 -4.475810 -4.983346 4.298272 0.842927 -0.787513 -2.420524 1.196121 3.892348 2.304688 1.585663 -3.302890 -6.057963 2.580065 -3.089006 3.943239 1.979682 -1.059136 2.759296 -3.406564 -0.973329 -6.954169 -3.827189 -2.310468 0.682457 -5.589733 -3.272414 -0.936630 5.528539 3.067109 0.709347 -4.974274 1.417858 6.568562 -5.614906 -0.974173 3.199854 3.711726 -7.823253 0.137207 4.211473 -6.997511 0.865215 -1.613815 -0.746262 -1.420332 -4.177715 3.712744 1.886282 3.703885 -0.718035 1.398331 1.112168 2.153718 2.455509 1.974207 1.033266 7.764391 5.359913 -0.667053 -3.555445 -5.135278 1.546043 -6.366822 -7.310548 2.569287 2.237680 -4.143155 1.066214 1.867167 7.154483 1.683348 -0.306482 -0.194392 0.130033 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -2.089578 -2.218868 -0.158814 -4.719539 2.938143 3.087397 1.647430 -2.684996 -5.395662 -1.045370 2.448812 -6.015081 -1.130644 5.991886 -2.151910 4.342949 7.625288 1.178151 -3.045530 -1.312421 6.204658 -0.604510 8.212525 6.820479 -5.156080 -0.649436 -0.174384 2.985638 2.757491 0.762260 1.085477 -2.330031 2.503956 -5.703668 -1.179602 -3.593570 1.374870 1.730715 4.205215 -7.530756 1.319413 0.017933 0.897629 -1.419243 -1.683594 0.960353 3.827701 4.933106 -1.294771 1.532177 5.308814 0.830286 -0.723737 1.300892 0.355887 0.162703 1.282840 -0.040095 -2.072802 -2.550985 -0.181670 -1.796373 1.175943 5.118029 6.825091 0.770050 0.170148 3.543087 1.529697 1.406550 3.445544 0.743411 -0.917226 0.264179 2.882353 -7.085003 -0.562185 -10.637573 -1.191923 -10.677886 -2.810876 -0.067212 4.422415 -0.402359 2.546292 0.506554 4.879097 -0.356082 -1.373337 5.946335 6.127428 -4.322396 -2.635120 -3.552579 -3.408261 2.322268 -3.354811 1.114853 2.745982 1.889992 -4.365559 -2.633644 1.606098 2.315562 -1.937303 -3.802756 1.107334 3.917610 -4.343244 -3.507388 -0.180499 4.168407 -0.705204 -8.659605 -1.910634 -4.558865 3.716417 0.050933 -1.480790 -4.292359 0.127817 2.408409 -1.556084 -2.327739 -1.253401 3.216431 2.839125 2.521210 0.294917 0.830821 1.363690 8.133983 1.609755 -3.602466 0.251467 -0.079558 -1.970777 2.279381 -4.080801 -2.658764 2.846903 -4.788635 1.217846 3.952051 -2.978772 -2.412909 4.408539 1.744807 1.653364 17.013425 1.092562 6.388030 4.818939 -5.019320 1.383584 -2.164752 0.647667 2.138533 2.405658 -0.420392 -7.774128 -5.130285 2.685108 5.087567 3.945590 -6.074030 -1.618308 -0.349017 -0.080584 -0.087397 -0.594208 1.603189 -0.420977 -3.864910 -1.095681 4.916829 10.184194 -1.993484 -0.567550 2.557235 2.541177 -2.767081 -6.193288 -2.226731 -2.944997 1.326690 1.468380 0.788158 3.338167 6.717419 -8.934158 4.402079 -0.412246 1.064593 3.462105 1.854454 -5.614379 -6.200927 -0.809315 3.319145 5.555748 -1.267843 0.588981 2.727525 -4.769948 -0.324934 1.000810 0.029992 -1.003255 1.937495 0.545813 -2.470245 -3.170852 1.403851 -1.641726 -0.495600 -0.287294 3.491836 0.416437 -7.169426 5.238019 -0.857664 -2.240050 0.710933 -2.044475 5.300656 -5.147694 -4.840170 3.225165 -0.522117 -2.180531 -3.425460 1.070835 3.379278 1.194716 2.231331 -3.206065 -5.461350 3.797146 -2.738495 3.929564 2.074721 -0.561457 3.220545 -2.031813 -0.992309 -6.102092 -2.616325 -0.784366 0.238782 -5.496818 -1.351907 -0.847192 4.890062 3.865069 -0.388395 -4.207985 0.722509 5.775704 -5.613430 -2.496797 3.256116 3.467380 -5.890051 2.014827 4.083149 -6.631277 0.237764 -2.578937 -1.014027 -1.185524 -4.382174 3.462643 0.843316 3.424679 -0.171312 1.263746 0.505289 2.515401 1.803772 1.011493 0.751914 7.320878 6.458090 -1.780611 -2.048099 -5.847088 2.242523 -6.737953 -7.252221 2.727711 0.728081 -3.922215 1.141643 0.779899 6.316213 1.545617 -0.659986 -1.706037 1.201557 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = -0.417400 -0.133651 0.478977 -1.123695 1.147550 0.806277 0.585631 -0.106186 -1.593584 -0.710010 0.352858 -2.021082 -1.080835 1.929598 -0.513653 0.720770 2.534154 0.610326 -0.627961 -0.246614 1.122285 -0.259851 2.371983 2.070682 -1.463076 0.091860 -0.343217 0.694655 0.005463 1.171661 -0.051271 -1.627948 0.751208 -0.702867 0.048256 -0.964895 0.051966 0.166657 0.282782 -2.653779 0.326387 1.011713 0.280943 -0.455580 -0.130438 0.512781 1.786500 1.345307 -0.150043 0.543299 0.981666 0.238985 0.113162 0.423627 0.554806 0.084893 0.548853 -0.474504 -1.198953 -0.318925 -0.347592 -1.065308 -0.260679 1.407499 1.889777 0.188061 -0.151907 0.253521 -0.065867 0.491690 0.738675 0.292850 0.438817 0.204239 0.823723 -0.733131 -0.216343 -2.208377 -0.279239 -3.539079 -1.194073 -0.434138 1.913902 0.840396 0.361478 -0.642556 1.700989 -0.316082 -0.029341 1.367059 2.283161 -1.211977 -0.910789 -1.086725 -0.726134 0.656965 -0.899231 -0.051382 0.715129 0.165779 -1.507871 -0.689772 0.621314 0.292806 -0.564285 -0.349087 0.167189 1.449603 -1.751940 -0.662771 -0.961835 0.936307 0.269150 -2.500289 -0.555340 -0.593813 0.387593 0.570242 -0.785452 -0.961227 0.557788 0.567003 -0.702760 -0.382959 -1.059854 1.564617 0.324961 0.462198 0.348345 0.463112 0.545584 1.883915 0.729196 -0.911957 0.147349 0.124059 -0.434638 0.447489 -0.911196 -0.755978 0.258888 -1.416347 0.339285 0.747644 -1.115344 -0.490944 -0.467818 0.288355 0.630428 4.121686 -0.225929 1.753481 0.893373 -1.659741 0.978757 -0.437477 -0.177789 0.121127 1.009408 0.398139 -1.369517 -1.351108 0.970706 1.782199 1.245036 -1.527856 0.162085 -0.254883 0.120920 -0.112100 0.364982 0.543285 0.242753 -1.255275 -0.382396 1.090708 3.156184 -0.578440 -1.244834 0.656073 0.504161 -0.086318 -1.227972 -0.379843 -0.413604 0.245837 0.367664 -0.068401 0.899797 2.111170 -2.909983 1.701935 -0.168952 -0.258589 1.411228 0.189123 -1.220012 -1.620273 -0.354845 1.326345 2.083865 0.227449 -0.117674 0.252399 -1.469282 -0.219436 0.221604 0.437477 -0.429845 0.791910 -0.009974 -1.102306 -0.960808 -0.734617 -0.368425 -0.186998 -0.647003 0.861949 0.797583 -2.706736 1.814873 0.030353 -0.574112 -0.111077 -0.178555 1.100688 -1.477616 -1.815603 0.636260 -0.615374 -1.521275 -0.796713 -0.069097 0.805426 0.300599 0.372959 -0.678327 -1.669446 1.772814 -0.275018 1.504872 0.750550 0.022216 1.394035 0.892542 -0.722215 -1.031535 -1.176761 0.476298 -0.742033 -1.106034 0.240270 -0.597436 1.340715 1.468077 0.059513 -1.043762 -0.581767 1.793810 -1.188123 -0.632447 1.368765 0.035413 -1.119778 0.801113 1.621898 -1.760001 -0.332465 -1.117161 -0.232142 -0.531205 -1.209114 0.612511 -0.455258 0.577708 0.362049 0.022259 -0.562892 0.489224 0.254122 -0.265706 -0.003367 2.284915 1.643172 -0.953374 0.538900 -1.564502 0.904355 -2.044752 -1.817402 0.439524 0.093745 -1.144013 0.154640 0.169831 1.260123 0.175434 -0.306975 -0.749290 0.353506 +PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -0.968473 -1.538863 -0.533295 -2.448942 0.961795 0.830329 0.663591 -0.959564 -2.847573 -0.486436 0.876402 -2.054966 0.352259 2.694811 -0.586246 2.528945 3.579472 0.831861 -1.304057 -0.200538 2.912650 -1.610416 2.814195 2.926379 -1.712297 -0.249011 -0.359107 1.702362 0.781193 0.520133 0.599022 -0.383578 0.683894 -3.103458 -0.548601 -2.469598 0.557401 1.700792 1.980046 -3.826270 0.830275 0.201413 1.067750 -0.765696 -0.923391 -0.073370 0.845580 2.060882 -0.570334 0.836897 1.931076 0.113523 -0.305744 0.577255 0.347622 0.934985 0.084614 0.042451 -0.797858 -0.897047 0.000492 -0.973927 1.381174 1.837570 2.738183 0.065669 0.067391 1.705190 0.682419 0.515599 1.747494 0.089986 -1.627112 -0.880426 0.883738 -4.244545 -0.013597 -4.279723 -0.196145 -4.674223 -1.158985 0.440718 1.924833 0.269549 1.360613 0.411865 1.890283 -0.959851 -0.671859 2.432787 1.812508 -1.784598 -1.010484 -1.689078 -1.427235 0.971413 -1.092721 -0.581906 1.701826 0.920271 -1.621162 -0.588447 1.363760 1.363442 -0.767192 -1.928735 0.674912 1.943332 -2.069842 -2.403595 0.462588 2.413102 -0.873364 -3.187230 0.101949 -2.368276 1.025004 -0.190665 -0.706075 -2.026174 0.124404 1.131332 -0.410159 -0.995050 -0.989631 1.617543 0.668628 0.848508 0.170678 0.197186 -0.008733 3.341931 0.741014 -1.556404 0.242128 0.538686 -1.043298 0.851807 -1.819866 -1.665376 0.903458 -2.567594 -0.203119 1.474678 -1.287165 -0.505680 2.413507 1.294538 0.553223 8.401357 0.576053 2.953861 2.326395 -1.814508 1.109983 -0.473052 0.466448 1.065115 0.907873 -0.632014 -4.248298 -2.089435 0.691346 2.027514 1.881325 -2.312584 -1.862579 -0.593770 -0.217855 0.910225 -0.510609 0.372016 -0.104316 -1.852278 -0.406359 1.376721 4.779327 -0.534090 0.973042 1.184627 0.902675 -2.503070 -4.153203 -1.040759 -2.324338 0.406544 -0.297340 -0.041848 1.203757 2.710257 -3.517569 2.005528 -0.727684 0.550396 1.507809 0.588299 -2.209589 -4.804196 -1.157626 0.928660 3.232440 -1.517174 0.750041 1.436172 -1.867025 -0.096377 0.409950 -0.309582 -0.413569 0.765260 -0.056394 -0.764035 -0.732926 1.583195 -1.016384 -0.451561 0.411445 1.369511 0.423199 -1.798179 1.605005 -0.361842 -0.771036 1.098246 -0.162850 2.147427 -1.963707 -1.825410 1.656728 0.682614 -0.363945 -1.461018 0.487495 1.853996 0.238735 -0.339472 -0.808502 -2.597394 1.155786 -1.683120 1.565710 0.849943 -0.843780 1.072412 -0.245719 -0.326129 -2.507929 -1.084616 -1.821382 -0.149061 -1.955833 -1.290947 -0.330720 2.239283 1.368239 0.481249 -1.610791 1.171937 3.024628 -1.715262 -0.760013 1.388730 0.491952 -2.428121 0.495466 1.883122 -3.359060 0.381582 -0.957555 -0.036367 -0.083970 -1.352515 1.815403 0.800990 1.571714 -0.511968 0.644079 0.450887 1.013729 1.274423 0.672911 0.293722 3.564031 2.110904 -0.070472 -1.329144 -1.963651 0.402574 -2.460671 -2.146041 0.507226 1.562879 -1.858405 0.801119 0.866638 2.842245 0.698891 0.153055 -0.066738 0.051228 +PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.431279 -2.960498 -2.586988 -6.261348 5.407062 4.140247 2.724333 -3.951146 -7.825903 -1.839960 3.266782 -8.974088 -2.298244 7.975548 -2.279987 7.716409 10.340148 0.720472 -4.073281 -1.075554 9.757562 -1.269886 12.250175 8.655995 -7.006261 -0.404934 -1.460742 3.380698 1.901048 1.578695 2.637303 -4.376114 4.688946 -9.035483 -1.758279 -4.489869 1.537933 2.630555 6.774228 -10.505682 1.579340 1.951724 1.338133 -1.562876 -2.473881 1.576695 5.139964 6.375579 -2.102595 3.112765 7.306689 0.560613 -0.722361 2.224117 0.392957 -0.154104 -0.395315 -1.558275 -3.710659 -4.329156 -0.773688 -2.516553 1.639061 5.918949 9.935026 -0.059431 0.267088 5.833412 0.830779 2.075005 4.937071 1.254232 -1.451875 -1.513024 4.815215 -9.579480 -1.947468 -13.893002 -1.914065 -18.328464 -4.310843 -0.281651 6.955762 1.338934 3.671727 -0.677845 6.640273 -0.943688 -1.944708 9.942777 7.535147 -5.763312 -3.303668 -5.429648 -4.078391 2.419753 -4.108154 0.302551 5.792276 1.998445 -5.914613 -2.247261 2.538813 2.739282 -2.211577 -7.363286 1.018630 5.383094 -6.676116 -4.899441 -0.411822 7.754652 -1.045519 -12.973041 -2.644796 -4.957594 3.299650 0.271346 -1.207930 -4.402372 0.361101 2.892862 -2.134073 -3.115231 -1.732493 5.461275 4.748105 3.935134 1.542014 2.198206 1.282343 13.383982 2.337538 -3.819503 -0.265459 -0.156868 -1.134061 3.951304 -4.019627 -3.493165 4.044282 -7.634671 2.305149 4.583730 -3.394756 -3.063645 4.599013 2.547893 2.005634 24.377232 1.393705 10.506711 7.542253 -6.365404 2.745335 -3.125454 0.933210 3.054588 3.366273 -1.345962 -10.068537 -6.982595 3.969674 6.111996 5.061292 -9.299686 -2.121983 -0.163629 0.528451 -0.297448 -1.478093 2.505836 0.964812 -5.567491 -0.804140 6.867104 16.030846 -2.784375 0.873349 4.606877 4.505835 -4.307196 -9.579789 -3.583527 -5.172380 0.977536 2.291489 0.962745 3.597032 8.821715 -11.449289 5.589943 -0.431044 1.650404 4.862405 3.154512 -8.478576 -11.540458 -2.569261 3.941956 8.149782 -2.557622 2.197690 3.145388 -5.790327 0.547121 1.254786 -0.700357 -0.854014 2.409702 -1.044615 -2.695383 -3.778237 1.237198 -3.126300 0.247776 -0.183448 4.144229 3.289124 -10.085280 5.985686 -1.141737 -3.454868 0.766195 -1.375156 9.223664 -5.713021 -6.528600 4.689620 -1.902748 -4.890723 -4.514942 1.783338 3.660215 2.650501 2.646658 -3.504166 -8.019947 6.527720 -3.433380 5.085084 3.074481 -0.810431 4.772021 -3.258704 -2.905150 -8.983835 -5.647127 -1.231838 -0.468937 -7.776219 -1.431834 -1.218671 6.406815 4.484668 0.842670 -7.552999 0.647681 8.293196 -7.975777 -2.948311 5.708622 4.707310 -9.002751 3.278015 6.583601 -8.747979 0.441365 -4.024399 -0.014841 -1.756342 -5.156545 4.345231 1.334838 4.217180 -0.549123 1.703512 0.301504 2.945868 2.564223 1.364078 -0.602263 11.911873 8.996132 -3.059194 -3.464429 -7.984124 2.283141 -8.185446 -10.666871 3.271777 1.978265 -5.634338 1.757768 2.298207 9.988062 2.362679 -1.152653 -2.133800 1.006692 +PE-benchmarks/boyer-moore-algorithm.cpp__int const& std::max(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/boyer-moore-algorithm.cpp__main = -2.861161 -0.526091 2.759461 -5.753041 9.022545 3.631119 3.872389 -0.226892 -5.866032 -3.304703 0.236745 -4.216139 -7.051470 9.195570 -2.541873 6.424091 9.370579 0.828221 -1.771392 -2.066209 10.492722 -6.144325 11.361829 5.088546 -10.164813 -0.505817 0.618883 6.057262 0.833703 8.647659 -1.567761 -4.337835 3.820568 -5.600692 3.812101 -5.469653 3.509763 1.515225 -0.616248 -11.058336 0.190845 3.984338 -0.062490 -0.571530 -2.620419 4.799504 6.605960 8.161459 -4.765886 2.301225 6.826869 -1.313638 0.037975 3.725214 -0.140457 1.317559 0.816879 -0.064017 -7.178348 -2.505341 -1.928313 -9.840347 2.956356 6.144990 11.013057 -2.512697 2.097233 6.650826 -3.124470 3.046886 3.717192 1.663422 1.124141 -3.083053 8.724534 -6.514187 -3.401740 -12.110987 -3.172661 -20.432196 -6.000916 -6.948232 5.017124 1.340133 5.293451 -2.740695 10.322619 0.741921 0.187943 6.938666 9.110444 -8.018663 -3.259494 -10.756732 -3.629523 1.851484 -6.635165 -3.579057 6.739601 -0.557199 -6.450718 -3.839358 2.857390 2.187994 -2.055769 -6.958660 -3.823003 8.988409 -9.153784 -6.626860 -7.614099 3.539216 -2.812772 -13.004875 2.074413 -2.308302 4.121331 0.497239 3.758404 -3.611449 1.574646 7.987431 -2.606952 -5.231023 -2.798685 10.038212 4.343079 0.260679 4.206285 2.048900 -1.214934 8.371761 10.844202 -1.971345 -5.936644 2.156760 -4.111155 2.352053 -4.587373 -1.746182 5.607616 -9.160549 -0.995267 4.261831 -2.450777 -0.798865 2.628207 -0.822177 6.975423 17.761927 0.045943 5.873472 1.732121 -8.312719 7.849724 -0.318664 -0.704634 4.461527 5.329937 -1.717172 -8.913990 -7.844266 4.206558 5.778359 5.259766 -9.397654 -3.907399 -4.245872 1.802593 -1.120240 -2.847320 6.294355 -0.223485 -5.731203 -0.923028 1.220219 14.569500 -5.880773 -6.178318 8.076587 3.065203 -6.618127 -11.171054 -4.992495 -4.703846 -2.501149 -0.193740 -1.369453 3.060165 10.535206 -12.845772 7.277381 -2.116838 -2.288294 6.583902 -2.878890 -2.175453 -12.585509 -1.217313 6.310775 8.706390 -0.658123 -0.073568 0.631544 -7.043642 3.300233 -0.324061 2.716427 0.228080 2.896818 -3.568444 -4.875840 -7.065514 -3.565391 -3.259012 -0.657450 0.068111 1.803382 3.636757 -13.735676 8.283423 -4.727981 -3.412526 4.344299 3.204856 7.677905 -5.644426 -10.278845 5.617251 -0.491206 -6.016181 -8.210625 2.617648 5.602883 0.440282 -3.341999 -2.561790 -12.288553 6.056674 -3.114779 4.066308 2.609808 3.019781 10.294482 5.200276 -6.953014 -8.708226 -5.126725 -0.824505 -3.628675 -4.968603 -2.872687 -0.650351 8.081734 7.159425 2.123132 -0.410392 -2.102679 11.238149 -8.663605 -5.328503 9.484224 2.325554 -5.218410 4.295020 10.177135 -7.442316 -6.201591 -5.448203 2.014660 -0.719159 -6.689195 2.559613 -3.912241 2.370630 2.461240 2.597694 -2.860368 2.749722 2.544307 0.251659 -6.631772 14.629794 11.627033 -8.698949 -0.848597 -5.535637 3.453708 -9.861907 -6.638742 1.227593 2.373084 -1.067039 5.022889 4.785675 7.065413 0.143830 -2.225535 -0.955897 -5.947836 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.944690 0.419912 1.692729 -3.046449 4.226919 1.827091 1.199719 -0.670022 -2.011258 -1.176685 -0.268846 -1.941571 -2.301725 3.610730 -1.721653 2.111599 4.391711 0.378343 -0.260882 -0.883683 3.842159 -1.397348 4.838171 2.348111 -4.586349 -0.328837 1.183279 2.532356 0.792720 3.552883 -1.090200 -2.348374 1.599086 -2.093038 1.216415 -2.635335 1.301142 -0.037053 0.195851 -4.630594 0.289638 0.207208 -1.194735 0.101197 -0.637762 2.016105 3.590236 3.221954 -2.570425 0.870596 2.992874 0.800089 -0.301235 1.522543 -0.566511 0.450568 1.330336 0.332163 -2.420880 -1.054489 -0.991057 -3.092871 1.142732 3.023313 4.538081 -0.494202 0.814084 2.540184 -0.608561 0.852358 1.487903 0.834341 0.621216 0.262715 3.104816 -3.046919 -0.934026 -6.058519 -1.618537 -7.991142 -2.086833 -2.986616 0.976588 -0.519910 1.827282 -0.239866 3.891888 0.738471 0.943756 2.759860 4.066152 -3.176430 -1.266789 -4.196682 -2.132678 0.857892 -2.328302 -0.844798 1.862786 -0.049451 -2.437924 -2.455592 0.758486 0.733126 -0.924846 -2.534559 -1.055600 3.354427 -3.785560 -2.594818 -2.900320 1.030587 -1.554881 -5.586244 -0.225279 -1.111464 3.227682 -0.018753 1.503899 -2.433079 0.402856 3.740443 -1.216468 -1.716672 -0.390973 3.770740 2.352762 0.553026 1.122174 0.069149 -0.009746 3.626960 4.272331 -1.040624 -2.138085 0.421727 -1.693462 0.020102 -2.570470 -0.360736 2.230827 -3.581089 0.286991 2.922257 -1.374489 -0.706470 1.945172 -1.101744 3.135024 8.651739 -0.440707 2.314267 0.752971 -4.205201 1.650424 0.006145 -0.397326 1.548561 1.943121 0.465727 -3.901222 -3.131803 1.588597 2.265710 2.254204 -4.150068 -1.358741 -1.819688 0.198722 -0.106307 -1.513238 2.414726 -1.177080 -2.430220 -0.325985 0.984835 5.886522 -1.943223 -3.762174 2.767953 1.839388 -2.477079 -3.651618 -1.904245 -1.858077 -0.473358 0.932071 -0.565188 1.346744 4.446134 -7.124556 2.843196 -0.192523 -0.770523 2.268884 -0.594388 -1.000732 -4.067867 0.106162 3.154148 2.981680 -0.113740 0.262145 0.316535 -2.570061 1.197417 0.314517 1.576786 -0.114365 0.907406 -0.168750 -2.821951 -3.054920 -0.889045 -0.802153 -0.263304 -0.412736 1.065322 0.325306 -7.237683 3.707654 -1.812619 -1.429909 1.963490 -0.041779 3.427322 -3.092521 -4.178978 2.162852 -0.470698 -1.605352 -2.773340 1.141416 2.360154 0.489686 0.339907 -1.907981 -5.200456 1.415293 -1.331924 1.122653 1.531491 1.642562 4.344709 -0.024073 -2.082530 -4.118654 -1.849951 0.616529 -0.449683 -2.100318 -1.017821 -0.387633 3.349720 3.819993 -0.066451 -0.224704 -1.068874 3.828123 -3.965209 -1.523554 3.574295 1.673767 -2.638527 1.244686 3.706252 -2.870916 -2.495262 -1.504431 0.704698 -0.327697 -2.828121 1.047214 -1.842667 0.760852 1.295884 0.892791 -1.626232 1.437282 0.597904 0.650108 -1.823665 4.748521 5.577787 -3.362444 -0.106556 -2.181098 1.619877 -5.051522 -3.580903 1.017678 -0.569838 -0.283152 1.947154 1.081761 2.960698 -0.253670 0.152707 -0.002746 -1.859913 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/boyer-moore-algorithm.cpp__std::char_traits::length(char const*) = -0.096722 -0.045213 0.204765 -0.277349 0.182037 -0.060294 0.081948 -0.083201 -0.288270 -0.214539 0.091606 -0.286591 -0.172814 0.324777 -0.197587 0.090201 0.432303 0.138259 -0.066975 -0.216012 0.208055 -0.209370 0.446878 0.442908 -0.406809 -0.010111 0.094699 0.296655 0.236799 0.191505 0.007800 -0.164444 0.120905 -0.093997 0.120114 -0.267535 0.090564 0.079788 -0.008443 -0.511359 0.039391 -0.014510 0.105743 -0.000388 -0.016886 0.316994 0.264207 0.287020 -0.139102 0.198517 0.362074 0.096987 0.014978 0.079818 0.018305 -0.068402 0.248518 -0.097265 -0.147682 -0.001123 -0.006286 -0.343971 0.038885 0.343397 0.458152 -0.014877 0.051499 0.036609 0.020536 0.113561 0.203804 0.064308 -0.014122 0.071044 0.174263 -0.346001 0.079975 -0.735793 -0.065503 -0.959904 -0.212990 -0.155724 0.356918 0.027035 0.030658 0.116340 0.346152 0.121498 0.013729 0.221372 0.370789 -0.201987 -0.164343 -0.130021 -0.195898 0.204185 -0.239200 0.049109 0.080658 0.214210 -0.223537 -0.139192 0.185917 0.033321 -0.139697 -0.032816 -0.042303 0.248312 -0.465653 -0.112602 -0.208493 0.080003 0.067811 -0.476420 0.104333 -0.254164 0.399065 0.022522 -0.047768 -0.091381 0.013866 0.153857 -0.087880 0.019831 -0.393105 0.244930 0.095993 0.082269 0.021460 0.018513 0.064582 0.270423 0.149713 -0.229026 -0.090342 0.069401 -0.199083 0.047220 -0.295014 -0.105285 0.288597 -0.275142 0.125456 0.055223 -0.195964 -0.234847 0.183917 -0.029378 0.183742 0.670335 0.034321 0.278283 0.204750 -0.268159 0.053431 -0.057517 0.042115 0.187120 0.216149 0.003374 -0.144640 -0.288536 0.093140 0.318943 0.212673 -0.292335 -0.165872 -0.042755 0.006390 0.047372 0.013133 0.093134 -0.151714 -0.183920 -0.073819 0.149293 0.411462 -0.003034 -0.107453 0.043481 0.111836 -0.180226 -0.299978 -0.053658 -0.047225 0.103540 -0.007665 0.033724 0.165214 0.399068 -0.870327 0.301069 0.002725 0.065933 0.165200 -0.016248 -0.204466 -0.550638 0.073261 0.185138 0.318212 -0.017814 0.076468 0.196601 -0.316276 -0.029291 -0.001260 0.127424 -0.143785 0.131775 0.121774 -0.207880 -0.252010 -0.076832 -0.009458 0.012316 -0.058051 0.188265 0.082269 -0.722256 0.297119 -0.170421 -0.186049 0.019174 -0.072150 0.204790 -0.396789 -0.290060 0.085525 -0.087582 -0.237166 -0.298288 0.016060 0.189855 -0.157940 0.027775 -0.125107 -0.224554 0.189426 -0.207519 0.126750 0.139677 0.015755 0.319574 0.003620 -0.047019 -0.259577 0.092416 0.028839 -0.232718 -0.159655 0.165307 -0.054619 0.214941 0.394730 0.000000 -0.077798 0.178885 0.372993 -0.225689 -0.264347 0.195604 0.148281 -0.115828 0.300770 0.219456 -0.413800 -0.103842 -0.245007 -0.107693 0.054741 -0.228486 0.253455 -0.102066 0.167557 0.084033 0.100300 -0.138993 0.238611 0.032313 0.003074 -0.001002 0.445741 0.550241 -0.160661 0.081559 -0.321270 0.098058 -0.439212 -0.318371 0.023184 0.063264 -0.132596 0.118207 -0.076956 0.293369 0.087360 -0.010288 -0.109960 0.093829 +PE-benchmarks/boyer-moore-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -1.533596 -0.188933 2.070476 -4.448228 5.174714 1.811431 1.646188 -0.597310 -3.243866 -1.806904 -0.126507 -2.859501 -2.943544 4.702638 -2.069150 3.075018 6.297585 0.853093 -0.872288 -1.408360 5.337265 -2.221914 6.487498 3.815006 -5.958630 -0.472085 1.378510 3.841798 1.403689 3.889753 -1.565659 -2.508836 1.996699 -3.096590 1.792116 -3.809600 1.838984 0.384651 0.436876 -6.479256 0.539118 0.255220 -0.967649 -0.085041 -1.107647 3.163708 4.387852 4.536904 -3.466550 1.033785 4.562273 0.762600 -0.470532 2.044075 -0.782227 0.748596 1.524815 0.660179 -3.018401 -1.606687 -1.011034 -4.435743 1.857609 4.038780 6.115844 -0.793316 0.906493 3.443399 0.008280 1.067687 2.459258 1.028611 0.707888 -0.560039 4.174598 -4.953836 -1.080873 -8.962505 -1.780991 -11.727424 -3.039106 -3.745751 2.117254 -1.058651 2.433758 -0.350272 5.640201 0.427712 1.017395 3.675555 5.073801 -4.505375 -1.914810 -5.637837 -2.833899 1.492185 -3.360231 -1.344629 3.027311 0.498910 -3.347958 -2.811032 1.425811 0.977363 -1.406005 -3.625778 -1.139409 4.553277 -4.925551 -3.524395 -4.022641 2.026300 -1.483401 -7.393903 0.452778 -2.123992 4.321246 -0.277654 1.427611 -3.117508 0.366892 4.445925 -1.832007 -2.034030 -1.334656 5.033172 3.041637 0.562854 1.649014 0.169569 -0.023841 4.978646 5.664532 -2.097587 -2.995241 1.018613 -2.857329 0.285633 -3.904844 -0.941036 3.818782 -5.023587 0.234651 3.399095 -2.123451 -0.992220 3.633554 -1.007319 3.956643 11.951805 -0.234793 3.301805 1.536310 -5.142162 2.867323 -0.161580 -0.308044 2.437838 2.880413 0.120083 -5.657157 -4.493210 2.115355 3.552625 3.299997 -5.727807 -2.118346 -2.072503 0.511285 -0.144752 -2.039809 3.175723 -1.255936 -3.120351 -0.623260 1.595107 7.955713 -2.322621 -4.176990 3.520316 2.658143 -3.572467 -5.663425 -2.663875 -2.902218 -0.535671 0.959037 -0.420837 2.173748 6.269885 -9.677430 3.839407 -0.612712 -0.650154 3.373769 -0.562713 -1.589369 -6.565079 -0.028215 3.881327 4.643687 -0.568705 0.521262 0.858252 -3.700302 1.272050 0.386126 2.009677 -0.313273 1.254204 -0.210369 -3.273636 -3.637295 -1.232123 -1.308848 -0.352426 -0.088416 1.716476 0.408836 -9.371288 4.971517 -2.557247 -1.953305 2.551834 -0.292036 4.603952 -4.381431 -5.396002 3.228607 -0.131979 -2.008161 -4.044928 1.603954 3.715034 0.041946 0.090349 -2.499431 -7.067443 2.598812 -1.955119 2.144029 1.891014 1.582129 5.666096 0.356059 -2.480476 -5.552136 -2.087647 -0.157435 -0.967751 -3.014247 -1.428898 -0.403998 4.506297 5.013331 -0.076512 -0.039064 -0.471306 5.384562 -5.609036 -2.297984 4.651064 2.652902 -3.413030 2.421393 4.981286 -4.679496 -3.270843 -2.509214 0.652339 -0.143000 -3.949050 1.954243 -2.315929 1.470900 1.763964 1.310239 -1.651017 2.186187 1.169803 0.794625 -2.369426 7.007043 7.872776 -3.887195 -0.383049 -3.500496 2.140796 -6.764878 -4.748907 1.297203 -0.137715 -1.012261 2.595044 1.848904 4.337018 -0.331295 0.044633 -0.473998 -2.134621 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.283003 0.165987 0.499465 -1.142342 1.220625 0.704424 0.075645 -0.123326 -0.679680 -0.324561 -0.372602 -0.592827 -0.567202 1.100454 -0.363173 0.615590 1.090408 -0.019016 -0.243929 -0.152621 1.103728 -0.073765 0.975556 0.241135 -1.121614 -0.065685 0.335288 0.906334 0.148267 1.195006 -0.288495 -0.853531 -0.095973 -0.157012 0.349332 -0.693630 0.474407 0.264768 -0.033366 -1.230488 0.161043 0.341356 -0.180475 -0.028582 -0.265902 -0.120132 0.840508 0.868136 -0.690255 -0.112404 0.991558 0.660838 -0.266290 0.331147 -0.262979 0.219090 0.417405 -0.353258 -0.484398 -0.329634 0.005623 -0.468980 0.288628 0.725874 1.080322 -0.180423 0.100241 0.748072 -0.037316 0.240894 0.263736 0.115364 -0.120998 0.006430 0.568156 -0.535017 -0.238678 -1.337223 0.096689 -1.578389 -0.408279 -0.769353 0.127992 0.573364 0.237025 -0.166495 1.201582 -0.166576 0.151835 0.813509 1.034833 -0.608865 -0.203220 -1.494019 -0.792068 0.382795 -0.527087 -0.615532 0.048852 0.399163 -0.387494 -0.633155 -0.084792 0.006652 -0.311727 -0.516148 -0.390198 0.945086 -1.065783 -0.540861 -0.557597 0.882321 -0.296454 -1.316286 -0.564752 -0.435001 0.236998 -0.374780 0.524091 -0.674490 0.053504 0.890499 -0.514342 -0.183680 -0.503277 0.813564 0.686005 -0.275125 0.200638 -0.081657 0.157274 0.832385 0.608394 -0.543158 -0.735297 0.385994 -0.108832 -0.319227 -0.841485 0.033877 0.174212 -0.992554 0.095620 0.882711 -0.291323 -0.121915 -0.182259 -0.585014 0.836058 2.567308 -0.122271 0.308539 0.025250 -0.971592 0.512206 0.269576 -0.411134 0.326076 0.147623 0.198522 -0.693673 -0.865762 0.518357 0.590953 0.667700 -0.566205 -0.242408 -0.487927 -0.183996 0.062285 -0.324050 0.685340 -0.621701 -0.378479 -0.295071 0.142681 1.517054 -0.103874 -0.938541 0.934253 0.927326 -0.902615 -0.548548 -0.472979 -0.711311 -0.325258 0.453462 -0.259347 0.663659 1.250429 -1.979051 0.819790 0.460199 -0.320302 0.377103 -0.489020 0.065271 -0.834925 -0.180259 0.950125 1.047042 -0.451753 0.374573 -0.171086 -0.714490 0.339546 0.281189 0.361181 -0.085868 0.065738 0.019564 -0.613376 -0.611479 -0.042574 -0.631768 0.050706 -0.304550 0.165281 0.028851 -1.740824 1.134855 -0.539278 0.117693 0.568086 -0.102046 0.966028 -0.740322 -0.922193 0.684452 0.302108 -0.219138 -0.330247 0.370305 0.941895 0.031899 0.360940 -0.485425 -1.386936 0.141659 -0.204835 0.182345 0.294987 0.403150 0.492204 0.043706 -0.270049 -0.883293 -0.602173 0.230685 0.155697 -0.303751 -0.077014 0.033039 0.844821 0.799839 0.006423 -0.265852 -0.344694 0.936783 -0.516429 -0.310484 0.718015 -0.296379 -0.935508 0.166993 0.921688 -0.662377 -0.717651 -0.709834 0.616399 -0.147067 -0.797058 0.172258 -0.326591 0.088183 0.669422 0.018782 -0.656607 0.531562 0.371473 -0.202031 -0.526709 1.472731 0.679297 -0.452805 0.269608 -0.669102 0.366745 -1.278334 -0.772667 0.086181 -0.420159 -0.142093 0.454790 0.067288 0.761949 -0.334072 0.811739 0.155777 -0.686819 +PE-benchmarks/boyer-moore-algorithm.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -1.899757 -2.900230 -2.141857 -4.796938 2.221323 1.882599 1.364144 -2.415159 -5.636633 -0.785272 2.515011 -5.515618 -0.207481 5.393520 -1.496839 4.875990 7.657552 0.699826 -2.853330 -0.727545 6.104892 -1.677570 6.487037 6.504485 -4.186332 -0.686442 -1.030566 3.731992 2.148026 -0.469968 2.491447 -1.940226 2.101195 -5.651459 -1.383324 -4.062999 1.479654 2.630941 4.773785 -7.830566 1.435714 0.986443 2.001855 -1.521531 -1.811210 1.092137 1.921163 4.445538 -1.654068 1.630812 4.889282 0.817890 -0.883203 1.064070 -0.126351 -0.249347 -0.001548 0.281554 -1.697624 -2.602516 0.365776 -1.002999 1.576414 4.148594 7.081385 0.324002 0.122541 3.578829 1.556598 1.360031 3.537919 0.396015 -1.796769 -0.955807 2.484388 -7.344382 -1.256852 -10.383796 -0.456239 -11.172277 -2.492435 0.980774 4.699452 -0.209954 2.077315 0.387165 3.841804 -0.801712 -1.690410 6.508627 4.163010 -2.903689 -2.269972 -3.464304 -3.280917 2.607393 -2.765471 0.470927 3.984263 2.238100 -3.622371 -1.560576 2.335604 2.132444 -1.658924 -4.333945 1.452503 3.141556 -3.488615 -3.575584 1.215809 5.127770 -0.640194 -7.077770 -0.653767 -5.230216 2.068139 -0.350092 -1.088675 -2.851123 -0.381551 1.054022 -1.223679 -1.692057 -1.981423 3.372041 2.379205 2.608974 0.446080 0.904805 1.070313 7.588788 -0.048128 -3.339467 0.359942 0.181609 -1.642954 2.433355 -4.500483 -2.817723 4.051200 -4.538418 1.119233 2.629440 -2.448307 -2.596643 4.702849 1.829427 0.993820 16.846406 1.725291 6.296310 4.968473 -3.390468 2.429974 -1.739987 0.778418 2.094823 1.726553 -1.197685 -7.701483 -4.446801 2.052748 4.155673 3.623469 -5.470631 -3.371216 0.247972 -0.186620 0.323887 -0.775094 1.168103 -0.120783 -3.555844 -0.726440 4.439006 9.551788 -0.750146 2.037887 2.423201 4.164042 -4.193698 -7.908949 -1.970748 -3.814143 1.005853 0.191503 0.760701 2.936044 5.703973 -8.655742 3.542402 0.399552 2.200087 2.838912 1.854890 -5.947460 -9.967857 -1.244649 1.901562 6.336807 -2.393449 2.123929 2.786143 -3.847064 -0.091876 1.114035 -1.068760 -0.619618 1.429195 -0.535525 -0.823952 -2.131523 2.807091 -2.624378 -0.175684 0.262920 3.073189 1.787899 -4.266798 3.484827 -1.006027 -1.958879 0.637363 -1.898524 5.357988 -4.447630 -3.587766 3.029607 -0.212680 -1.801921 -3.511810 1.158682 2.929324 1.075584 1.687405 -2.151759 -5.628398 3.686189 -3.481060 3.212385 1.810692 -1.518974 1.701650 -1.511290 -0.682877 -6.093562 -2.749392 -2.455313 0.448574 -4.958634 -1.215268 -0.576921 4.094587 2.554036 -0.023539 -4.992264 1.605371 5.875307 -4.035693 -1.973720 2.632841 1.798141 -5.387023 1.707625 3.557590 -7.143031 1.403034 -2.587430 -0.340244 -0.734742 -3.363504 3.387527 2.034695 3.283013 -0.768049 1.038053 0.871802 2.225525 2.320138 0.906444 0.681115 7.822486 5.364627 -0.564829 -2.431551 -5.341296 0.990602 -5.245227 -6.388121 2.142669 0.976813 -4.149105 1.205841 1.879242 6.019102 1.531650 0.530179 -1.425333 1.438864 +PE-benchmarks/optimized-naive-algorithm.cpp__main = -2.754857 -0.514037 2.848487 -5.460159 8.385397 3.179589 3.600352 0.080305 -5.428178 -3.093765 0.086391 -3.524445 -6.633317 8.679165 -2.385243 5.856007 8.834060 0.824092 -1.527402 -1.996607 9.762188 -6.225862 10.209202 4.658244 -9.600827 -0.562119 0.704919 6.127521 0.883098 8.237926 -1.596933 -3.850657 3.303018 -4.923887 3.887092 -5.384279 3.498108 1.515302 -1.016337 -10.523313 0.162120 3.791282 0.070254 -0.563262 -2.487885 4.702592 5.962200 7.775451 -4.676181 2.004835 6.343388 -1.262183 0.005806 3.493204 -0.244318 1.298510 0.895633 0.303949 -6.775741 -2.160013 -1.700420 -9.537636 2.943826 5.790919 10.442329 -2.436011 2.068324 6.199910 -2.979306 2.903891 3.437362 1.491779 1.055162 -2.971610 8.258369 -6.067168 -3.263617 -11.409146 -2.881096 -19.000959 -5.637235 -6.695747 4.565862 1.030356 4.974569 -2.527693 9.762925 0.770316 0.238803 6.251836 8.436017 -7.446739 -3.052754 -10.363663 -3.470029 1.889012 -6.366629 -3.545382 6.377998 -0.509268 -5.992270 -3.702021 2.816748 2.066627 -1.945238 -6.352791 -3.736229 8.540101 -8.516284 -6.362089 -7.288573 3.013840 -2.731707 -11.825821 2.472619 -2.362827 3.875029 0.372951 3.782255 -3.301199 1.426115 7.619663 -2.424873 -4.946388 -2.848471 9.620365 3.869299 -0.004553 3.987098 1.790219 -1.257340 7.212722 10.367068 -1.875337 -5.811564 2.224456 -4.212933 2.048464 -4.683544 -1.611094 5.608999 -8.541298 -1.232451 3.870973 -2.261488 -0.705465 2.648974 -0.965871 6.773060 16.255762 0.112260 5.031392 1.217365 -7.717732 7.786652 -0.041570 -0.735592 4.269574 5.001993 -1.687516 -8.440579 -7.337107 3.823173 5.387094 4.972201 -8.631843 -4.157245 -4.163552 1.659578 -0.995973 -2.706721 6.026809 -0.440604 -5.328873 -0.907488 0.734599 13.273688 -5.473928 -5.945411 7.639852 2.996845 -6.595427 -10.836886 -4.669939 -4.432198 -2.495486 -0.613737 -1.409862 2.927967 9.911658 -12.287062 6.867873 -1.950719 -2.178357 6.179203 -3.138815 -1.669230 -12.270989 -0.952391 5.902696 8.343795 -0.625288 -0.088320 0.559695 -6.654989 3.172434 -0.352211 2.642747 0.274959 2.700717 -3.466626 -4.501553 -6.736171 -3.251412 -3.158628 -0.742142 0.157385 1.589174 3.336512 -12.571980 7.783251 -4.700839 -3.113328 4.318532 3.100182 6.904770 -5.391348 -9.690679 5.285248 -0.153192 -5.398421 -8.009999 2.492717 5.456705 0.125298 -3.533850 -2.291309 -11.810243 5.488367 -3.124315 3.691768 2.357050 2.878073 9.680407 5.549758 -6.508559 -8.130171 -4.547178 -1.069200 -3.445173 -4.405086 -2.829373 -0.522001 7.619288 6.773298 1.949890 0.101755 -1.911141 10.754571 -7.875588 -5.133585 8.869067 1.743720 -4.495264 3.980942 9.571933 -7.121327 -6.009257 -5.160809 1.949579 -0.514839 -6.330587 2.368072 -3.772269 2.183797 2.417455 2.464602 -2.746308 2.605653 2.495490 0.160133 -6.375096 13.811917 10.900732 -8.200076 -0.642021 -5.007072 3.195200 -9.273863 -5.782992 1.001771 2.172793 -0.769993 4.912503 4.701882 6.271621 -0.022376 -1.888968 -0.814203 -5.861402 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.944690 0.419912 1.692729 -3.046449 4.226919 1.827091 1.199719 -0.670022 -2.011258 -1.176685 -0.268846 -1.941571 -2.301725 3.610730 -1.721653 2.111599 4.391711 0.378343 -0.260882 -0.883683 3.842159 -1.397348 4.838171 2.348111 -4.586349 -0.328837 1.183279 2.532356 0.792720 3.552883 -1.090200 -2.348374 1.599086 -2.093038 1.216415 -2.635335 1.301142 -0.037053 0.195851 -4.630594 0.289638 0.207208 -1.194735 0.101197 -0.637762 2.016105 3.590236 3.221954 -2.570425 0.870596 2.992874 0.800089 -0.301235 1.522543 -0.566511 0.450568 1.330336 0.332163 -2.420880 -1.054489 -0.991057 -3.092871 1.142732 3.023313 4.538081 -0.494202 0.814084 2.540184 -0.608561 0.852358 1.487903 0.834341 0.621216 0.262715 3.104816 -3.046919 -0.934026 -6.058519 -1.618537 -7.991142 -2.086833 -2.986616 0.976588 -0.519910 1.827282 -0.239866 3.891888 0.738471 0.943756 2.759860 4.066152 -3.176430 -1.266789 -4.196682 -2.132678 0.857892 -2.328302 -0.844798 1.862786 -0.049451 -2.437924 -2.455592 0.758486 0.733126 -0.924846 -2.534559 -1.055600 3.354427 -3.785560 -2.594818 -2.900320 1.030587 -1.554881 -5.586244 -0.225279 -1.111464 3.227682 -0.018753 1.503899 -2.433079 0.402856 3.740443 -1.216468 -1.716672 -0.390973 3.770740 2.352762 0.553026 1.122174 0.069149 -0.009746 3.626960 4.272331 -1.040624 -2.138085 0.421727 -1.693462 0.020102 -2.570470 -0.360736 2.230827 -3.581089 0.286991 2.922257 -1.374489 -0.706470 1.945172 -1.101744 3.135024 8.651739 -0.440707 2.314267 0.752971 -4.205201 1.650424 0.006145 -0.397326 1.548561 1.943121 0.465727 -3.901222 -3.131803 1.588597 2.265710 2.254204 -4.150068 -1.358741 -1.819688 0.198722 -0.106307 -1.513238 2.414726 -1.177080 -2.430220 -0.325985 0.984835 5.886522 -1.943223 -3.762174 2.767953 1.839388 -2.477079 -3.651618 -1.904245 -1.858077 -0.473358 0.932071 -0.565188 1.346744 4.446134 -7.124556 2.843196 -0.192523 -0.770523 2.268884 -0.594388 -1.000732 -4.067867 0.106162 3.154148 2.981680 -0.113740 0.262145 0.316535 -2.570061 1.197417 0.314517 1.576786 -0.114365 0.907406 -0.168750 -2.821951 -3.054920 -0.889045 -0.802153 -0.263304 -0.412736 1.065322 0.325306 -7.237683 3.707654 -1.812619 -1.429909 1.963490 -0.041779 3.427322 -3.092521 -4.178978 2.162852 -0.470698 -1.605352 -2.773340 1.141416 2.360154 0.489686 0.339907 -1.907981 -5.200456 1.415293 -1.331924 1.122653 1.531491 1.642562 4.344709 -0.024073 -2.082530 -4.118654 -1.849951 0.616529 -0.449683 -2.100318 -1.017821 -0.387633 3.349720 3.819993 -0.066451 -0.224704 -1.068874 3.828123 -3.965209 -1.523554 3.574295 1.673767 -2.638527 1.244686 3.706252 -2.870916 -2.495262 -1.504431 0.704698 -0.327697 -2.828121 1.047214 -1.842667 0.760852 1.295884 0.892791 -1.626232 1.437282 0.597904 0.650108 -1.823665 4.748521 5.577787 -3.362444 -0.106556 -2.181098 1.619877 -5.051522 -3.580903 1.017678 -0.569838 -0.283152 1.947154 1.081761 2.960698 -0.253670 0.152707 -0.002746 -1.859913 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/optimized-naive-algorithm.cpp__std::char_traits::length(char const*) = -0.096722 -0.045213 0.204765 -0.277349 0.182037 -0.060294 0.081948 -0.083201 -0.288270 -0.214539 0.091606 -0.286591 -0.172814 0.324777 -0.197587 0.090201 0.432303 0.138259 -0.066975 -0.216012 0.208055 -0.209370 0.446878 0.442908 -0.406809 -0.010111 0.094699 0.296655 0.236799 0.191505 0.007800 -0.164444 0.120905 -0.093997 0.120114 -0.267535 0.090564 0.079788 -0.008443 -0.511359 0.039391 -0.014510 0.105743 -0.000388 -0.016886 0.316994 0.264207 0.287020 -0.139102 0.198517 0.362074 0.096987 0.014978 0.079818 0.018305 -0.068402 0.248518 -0.097265 -0.147682 -0.001123 -0.006286 -0.343971 0.038885 0.343397 0.458152 -0.014877 0.051499 0.036609 0.020536 0.113561 0.203804 0.064308 -0.014122 0.071044 0.174263 -0.346001 0.079975 -0.735793 -0.065503 -0.959904 -0.212990 -0.155724 0.356918 0.027035 0.030658 0.116340 0.346152 0.121498 0.013729 0.221372 0.370789 -0.201987 -0.164343 -0.130021 -0.195898 0.204185 -0.239200 0.049109 0.080658 0.214210 -0.223537 -0.139192 0.185917 0.033321 -0.139697 -0.032816 -0.042303 0.248312 -0.465653 -0.112602 -0.208493 0.080003 0.067811 -0.476420 0.104333 -0.254164 0.399065 0.022522 -0.047768 -0.091381 0.013866 0.153857 -0.087880 0.019831 -0.393105 0.244930 0.095993 0.082269 0.021460 0.018513 0.064582 0.270423 0.149713 -0.229026 -0.090342 0.069401 -0.199083 0.047220 -0.295014 -0.105285 0.288597 -0.275142 0.125456 0.055223 -0.195964 -0.234847 0.183917 -0.029378 0.183742 0.670335 0.034321 0.278283 0.204750 -0.268159 0.053431 -0.057517 0.042115 0.187120 0.216149 0.003374 -0.144640 -0.288536 0.093140 0.318943 0.212673 -0.292335 -0.165872 -0.042755 0.006390 0.047372 0.013133 0.093134 -0.151714 -0.183920 -0.073819 0.149293 0.411462 -0.003034 -0.107453 0.043481 0.111836 -0.180226 -0.299978 -0.053658 -0.047225 0.103540 -0.007665 0.033724 0.165214 0.399068 -0.870327 0.301069 0.002725 0.065933 0.165200 -0.016248 -0.204466 -0.550638 0.073261 0.185138 0.318212 -0.017814 0.076468 0.196601 -0.316276 -0.029291 -0.001260 0.127424 -0.143785 0.131775 0.121774 -0.207880 -0.252010 -0.076832 -0.009458 0.012316 -0.058051 0.188265 0.082269 -0.722256 0.297119 -0.170421 -0.186049 0.019174 -0.072150 0.204790 -0.396789 -0.290060 0.085525 -0.087582 -0.237166 -0.298288 0.016060 0.189855 -0.157940 0.027775 -0.125107 -0.224554 0.189426 -0.207519 0.126750 0.139677 0.015755 0.319574 0.003620 -0.047019 -0.259577 0.092416 0.028839 -0.232718 -0.159655 0.165307 -0.054619 0.214941 0.394730 0.000000 -0.077798 0.178885 0.372993 -0.225689 -0.264347 0.195604 0.148281 -0.115828 0.300770 0.219456 -0.413800 -0.103842 -0.245007 -0.107693 0.054741 -0.228486 0.253455 -0.102066 0.167557 0.084033 0.100300 -0.138993 0.238611 0.032313 0.003074 -0.001002 0.445741 0.550241 -0.160661 0.081559 -0.321270 0.098058 -0.439212 -0.318371 0.023184 0.063264 -0.132596 0.118207 -0.076956 0.293369 0.087360 -0.010288 -0.109960 0.093829 +PE-benchmarks/optimized-naive-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -1.533596 -0.188933 2.070476 -4.448228 5.174714 1.811431 1.646188 -0.597310 -3.243866 -1.806904 -0.126507 -2.859501 -2.943544 4.702638 -2.069150 3.075018 6.297585 0.853093 -0.872288 -1.408360 5.337265 -2.221914 6.487498 3.815006 -5.958630 -0.472085 1.378510 3.841798 1.403689 3.889753 -1.565659 -2.508836 1.996699 -3.096590 1.792116 -3.809600 1.838984 0.384651 0.436876 -6.479256 0.539118 0.255220 -0.967649 -0.085041 -1.107647 3.163708 4.387852 4.536904 -3.466550 1.033785 4.562273 0.762600 -0.470532 2.044075 -0.782227 0.748596 1.524815 0.660179 -3.018401 -1.606687 -1.011034 -4.435743 1.857609 4.038780 6.115844 -0.793316 0.906493 3.443399 0.008280 1.067687 2.459258 1.028611 0.707888 -0.560039 4.174598 -4.953836 -1.080873 -8.962505 -1.780991 -11.727424 -3.039106 -3.745751 2.117254 -1.058651 2.433758 -0.350272 5.640201 0.427712 1.017395 3.675555 5.073801 -4.505375 -1.914810 -5.637837 -2.833899 1.492185 -3.360231 -1.344629 3.027311 0.498910 -3.347958 -2.811032 1.425811 0.977363 -1.406005 -3.625778 -1.139409 4.553277 -4.925551 -3.524395 -4.022641 2.026300 -1.483401 -7.393903 0.452778 -2.123992 4.321246 -0.277654 1.427611 -3.117508 0.366892 4.445925 -1.832007 -2.034030 -1.334656 5.033172 3.041637 0.562854 1.649014 0.169569 -0.023841 4.978646 5.664532 -2.097587 -2.995241 1.018613 -2.857329 0.285633 -3.904844 -0.941036 3.818782 -5.023587 0.234651 3.399095 -2.123451 -0.992220 3.633554 -1.007319 3.956643 11.951805 -0.234793 3.301805 1.536310 -5.142162 2.867323 -0.161580 -0.308044 2.437838 2.880413 0.120083 -5.657157 -4.493210 2.115355 3.552625 3.299997 -5.727807 -2.118346 -2.072503 0.511285 -0.144752 -2.039809 3.175723 -1.255936 -3.120351 -0.623260 1.595107 7.955713 -2.322621 -4.176990 3.520316 2.658143 -3.572467 -5.663425 -2.663875 -2.902218 -0.535671 0.959037 -0.420837 2.173748 6.269885 -9.677430 3.839407 -0.612712 -0.650154 3.373769 -0.562713 -1.589369 -6.565079 -0.028215 3.881327 4.643687 -0.568705 0.521262 0.858252 -3.700302 1.272050 0.386126 2.009677 -0.313273 1.254204 -0.210369 -3.273636 -3.637295 -1.232123 -1.308848 -0.352426 -0.088416 1.716476 0.408836 -9.371288 4.971517 -2.557247 -1.953305 2.551834 -0.292036 4.603952 -4.381431 -5.396002 3.228607 -0.131979 -2.008161 -4.044928 1.603954 3.715034 0.041946 0.090349 -2.499431 -7.067443 2.598812 -1.955119 2.144029 1.891014 1.582129 5.666096 0.356059 -2.480476 -5.552136 -2.087647 -0.157435 -0.967751 -3.014247 -1.428898 -0.403998 4.506297 5.013331 -0.076512 -0.039064 -0.471306 5.384562 -5.609036 -2.297984 4.651064 2.652902 -3.413030 2.421393 4.981286 -4.679496 -3.270843 -2.509214 0.652339 -0.143000 -3.949050 1.954243 -2.315929 1.470900 1.763964 1.310239 -1.651017 2.186187 1.169803 0.794625 -2.369426 7.007043 7.872776 -3.887195 -0.383049 -3.500496 2.140796 -6.764878 -4.748907 1.297203 -0.137715 -1.012261 2.595044 1.848904 4.337018 -0.331295 0.044633 -0.473998 -2.134621 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.283003 0.165987 0.499465 -1.142342 1.220625 0.704424 0.075645 -0.123326 -0.679680 -0.324561 -0.372602 -0.592827 -0.567202 1.100454 -0.363173 0.615590 1.090408 -0.019016 -0.243929 -0.152621 1.103728 -0.073765 0.975556 0.241135 -1.121614 -0.065685 0.335288 0.906334 0.148267 1.195006 -0.288495 -0.853531 -0.095973 -0.157012 0.349332 -0.693630 0.474407 0.264768 -0.033366 -1.230488 0.161043 0.341356 -0.180475 -0.028582 -0.265902 -0.120132 0.840508 0.868136 -0.690255 -0.112404 0.991558 0.660838 -0.266290 0.331147 -0.262979 0.219090 0.417405 -0.353258 -0.484398 -0.329634 0.005623 -0.468980 0.288628 0.725874 1.080322 -0.180423 0.100241 0.748072 -0.037316 0.240894 0.263736 0.115364 -0.120998 0.006430 0.568156 -0.535017 -0.238678 -1.337223 0.096689 -1.578389 -0.408279 -0.769353 0.127992 0.573364 0.237025 -0.166495 1.201582 -0.166576 0.151835 0.813509 1.034833 -0.608865 -0.203220 -1.494019 -0.792068 0.382795 -0.527087 -0.615532 0.048852 0.399163 -0.387494 -0.633155 -0.084792 0.006652 -0.311727 -0.516148 -0.390198 0.945086 -1.065783 -0.540861 -0.557597 0.882321 -0.296454 -1.316286 -0.564752 -0.435001 0.236998 -0.374780 0.524091 -0.674490 0.053504 0.890499 -0.514342 -0.183680 -0.503277 0.813564 0.686005 -0.275125 0.200638 -0.081657 0.157274 0.832385 0.608394 -0.543158 -0.735297 0.385994 -0.108832 -0.319227 -0.841485 0.033877 0.174212 -0.992554 0.095620 0.882711 -0.291323 -0.121915 -0.182259 -0.585014 0.836058 2.567308 -0.122271 0.308539 0.025250 -0.971592 0.512206 0.269576 -0.411134 0.326076 0.147623 0.198522 -0.693673 -0.865762 0.518357 0.590953 0.667700 -0.566205 -0.242408 -0.487927 -0.183996 0.062285 -0.324050 0.685340 -0.621701 -0.378479 -0.295071 0.142681 1.517054 -0.103874 -0.938541 0.934253 0.927326 -0.902615 -0.548548 -0.472979 -0.711311 -0.325258 0.453462 -0.259347 0.663659 1.250429 -1.979051 0.819790 0.460199 -0.320302 0.377103 -0.489020 0.065271 -0.834925 -0.180259 0.950125 1.047042 -0.451753 0.374573 -0.171086 -0.714490 0.339546 0.281189 0.361181 -0.085868 0.065738 0.019564 -0.613376 -0.611479 -0.042574 -0.631768 0.050706 -0.304550 0.165281 0.028851 -1.740824 1.134855 -0.539278 0.117693 0.568086 -0.102046 0.966028 -0.740322 -0.922193 0.684452 0.302108 -0.219138 -0.330247 0.370305 0.941895 0.031899 0.360940 -0.485425 -1.386936 0.141659 -0.204835 0.182345 0.294987 0.403150 0.492204 0.043706 -0.270049 -0.883293 -0.602173 0.230685 0.155697 -0.303751 -0.077014 0.033039 0.844821 0.799839 0.006423 -0.265852 -0.344694 0.936783 -0.516429 -0.310484 0.718015 -0.296379 -0.935508 0.166993 0.921688 -0.662377 -0.717651 -0.709834 0.616399 -0.147067 -0.797058 0.172258 -0.326591 0.088183 0.669422 0.018782 -0.656607 0.531562 0.371473 -0.202031 -0.526709 1.472731 0.679297 -0.452805 0.269608 -0.669102 0.366745 -1.278334 -0.772667 0.086181 -0.420159 -0.142093 0.454790 0.067288 0.761949 -0.334072 0.811739 0.155777 -0.686819 +PE-benchmarks/optimized-naive-algorithm.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.506122 -0.740676 -0.092479 -0.956983 0.649825 0.207414 0.291580 -0.471655 -1.190386 -0.148388 0.406858 -0.696922 0.190655 1.115358 -0.282880 1.112725 1.249664 0.371480 -0.400063 -0.264940 1.142007 -0.647114 1.021565 1.083318 -0.746963 -0.080175 0.034822 0.395253 0.199163 0.324390 -0.082814 -0.464549 0.350031 -1.199372 -0.152985 -0.876810 0.101927 0.817838 1.073442 -1.353169 0.312326 -0.045471 0.230859 -0.210599 -0.333802 -0.051947 0.274627 0.730369 -0.372357 0.721092 0.845958 0.060387 -0.158821 0.182223 0.229212 0.528689 0.074788 0.228805 -0.297129 -0.277958 -0.200646 -0.129448 0.562662 0.669301 0.958174 -0.126394 -0.032565 0.604041 0.249997 0.205221 0.756756 0.107795 -0.467309 -0.483222 0.462818 -1.608805 -0.185725 -2.250096 -0.104758 -1.997042 -0.501536 0.288764 0.727434 -0.143931 0.548286 0.231379 0.949589 -0.360150 -0.422999 0.781694 0.772085 -0.787932 -0.366914 -0.442777 -0.758083 0.167415 -0.336955 -0.185220 0.524062 0.214089 -0.696943 -0.617000 0.505273 0.433607 -0.278845 -0.922592 0.202077 0.794928 -0.844851 -0.999061 0.044497 0.952872 -0.316027 -1.100827 0.099641 -0.839065 0.486328 0.039285 -0.512514 -0.850455 0.144883 0.418850 -0.368446 -0.442503 0.060461 0.540371 0.456343 0.428563 0.045953 -0.132273 -0.052393 1.359160 0.382634 -0.822255 0.074896 0.237945 -0.198805 0.448569 -0.726989 -0.602684 0.349131 -0.902411 0.126163 0.402259 -0.562015 -0.174589 1.304047 0.393664 0.051418 2.607624 0.091899 1.083710 0.829862 -0.744184 0.439688 -0.160003 0.338476 0.511116 0.600647 -0.276385 -1.200466 -0.941141 0.462447 0.853283 0.754777 -0.943990 -1.073251 -0.152318 0.043447 0.446368 -0.143730 0.136242 -0.043031 -0.717414 -0.139966 0.328975 1.723028 -0.353570 -0.006057 0.423087 0.650826 -0.774830 -1.373721 -0.468551 -1.362802 0.149362 0.106994 0.033910 0.529739 1.202386 -2.012777 0.780618 -0.487137 0.113236 0.453633 0.468709 -0.803172 -1.800127 -0.475861 0.261413 1.154996 -0.336851 0.546117 0.684322 -0.755124 0.033065 0.030223 -0.068953 -0.397678 0.415001 -0.012869 -0.525673 -0.150429 0.566993 -0.453443 -0.431849 0.130630 0.582824 0.344441 -1.241049 0.549916 -0.002728 -0.265210 0.573103 0.100819 1.073758 -0.641958 -0.810822 0.713610 0.152472 0.078566 -0.417744 0.178091 0.641573 -0.097251 0.001049 -0.327502 -0.967254 0.403576 -0.531552 0.753306 0.345348 -0.462686 0.500581 -0.424639 -0.219763 -0.842052 -0.182769 -0.292690 -0.114670 -0.572793 -0.674023 -0.103517 0.860380 0.528980 0.391663 -0.567662 0.161387 1.110284 -0.871347 0.039877 0.677753 0.391029 -0.770002 0.284146 0.845753 -1.098053 0.146494 -0.432074 0.190191 -0.217347 -0.337142 0.828197 0.311263 0.548466 -0.360405 0.231022 0.142318 0.466226 0.605515 0.240671 0.034637 1.240318 0.941659 -0.183660 -0.471459 -0.737943 0.161761 -0.901649 -0.856758 0.142935 0.523899 -0.958288 0.190591 0.081170 1.165604 0.200931 0.233877 -0.049789 0.080679 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -2.950905 -3.284768 -1.831955 -6.726129 4.348431 5.579673 2.192122 -3.993809 -7.063393 -0.655636 3.289762 -6.398357 -0.627622 7.843462 -2.203036 7.236185 8.937154 0.599975 -3.969703 -0.672924 8.231836 -1.215102 9.417219 7.190706 -5.719920 -0.744771 0.087472 3.225470 1.803443 1.358647 1.203636 -2.996729 2.820572 -8.143700 -2.349710 -3.867143 1.394413 2.633065 6.562815 -9.029740 1.967632 0.139017 0.231404 -2.165576 -2.865132 -1.466087 3.900264 6.189510 -1.297367 1.919316 6.021882 0.871271 -1.319645 1.646180 1.502532 1.560450 0.271938 0.323987 -1.970204 -3.830623 -0.404259 -0.748635 1.999901 5.881721 7.482335 0.218492 0.009341 5.333431 0.963735 1.918188 4.245686 0.820794 -3.116775 -0.618247 3.209264 -9.294743 -1.207852 -11.300257 -1.393415 -10.746599 -3.465941 1.227870 4.264540 0.573138 4.590258 1.230438 5.975249 -1.565104 -2.612357 6.770571 6.714663 -5.489373 -2.877773 -4.295719 -4.043993 2.054119 -3.555715 0.205168 3.780340 1.464593 -5.423174 -2.699705 2.139469 3.935765 -2.445948 -6.744932 1.576393 5.109978 -4.770045 -5.649921 1.309373 6.644978 -2.419931 -10.752899 -3.020153 -5.242639 3.195482 -0.722802 -1.845116 -6.649092 0.541066 3.773990 -1.638787 -4.187480 0.910580 3.710080 4.203378 3.389943 0.703010 0.574470 1.310175 11.374958 2.193895 -3.950981 0.479036 -0.309173 -1.159729 3.505504 -3.540185 -3.323746 0.941065 -6.627801 1.873925 6.045986 -3.225672 -1.785859 5.554175 2.832775 1.281103 23.556618 0.898941 8.553956 6.371673 -6.541026 1.802348 -2.757528 0.613303 2.432585 2.349371 -1.215331 -10.300670 -6.062681 3.843108 6.101671 5.027861 -7.648837 -2.502379 -0.563384 -0.357022 0.356172 -1.112988 1.590007 0.322621 -5.082921 -1.400682 6.130253 13.483826 -3.032716 -0.243529 4.460905 3.953912 -4.432474 -8.562012 -3.369372 -5.858916 1.299354 2.674598 0.521034 3.880146 8.108968 -9.630621 5.164679 -0.969538 0.485672 4.884477 2.783838 -6.881033 -8.681982 -2.071804 3.665438 7.470035 -3.034206 1.840887 3.130759 -5.608460 -0.108393 1.420327 -1.154639 -1.076400 2.436061 0.128006 -2.955458 -3.151360 3.357778 -2.555574 -1.013532 0.207447 4.119893 0.483687 -7.996765 6.156766 -0.216429 -2.606758 1.976231 -1.703516 7.974237 -5.326005 -6.258443 5.118780 0.144278 -1.106841 -2.592254 1.518483 4.445640 2.340972 2.601345 -3.859178 -6.898853 3.619425 -2.916397 5.238311 2.505873 -0.971453 3.253540 -4.375479 -1.483457 -7.042547 -4.425585 -0.959013 1.058375 -7.012794 -3.279632 -1.246916 6.788467 3.386719 0.649812 -5.831529 0.689058 6.939916 -6.627935 -1.352120 4.010704 4.562006 -8.304996 0.972602 5.361880 -7.068419 0.958150 -2.605131 -0.006035 -2.536331 -5.838736 4.410008 2.570147 4.752830 -0.947307 1.838481 1.162884 2.496165 2.894231 2.123526 0.794613 8.243143 6.253409 -1.815306 -4.106559 -6.662707 2.417040 -7.719233 -8.546014 3.771580 1.478008 -5.043372 1.113721 1.207841 7.913796 1.479061 0.076260 -0.842693 0.487274 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = -0.658876 -0.485570 0.251602 -1.834863 1.371583 1.065742 0.675868 -0.567322 -2.048758 -0.769081 0.780836 -2.287915 -0.983924 2.364423 -0.683911 1.252661 2.818675 0.335683 -0.952663 -0.381173 1.790223 -0.464726 2.773100 2.351871 -1.922441 -0.006969 -0.124195 1.052343 0.435623 0.906757 0.252776 -1.413846 0.746908 -1.289107 -0.090922 -1.011353 0.205223 0.341746 0.845253 -3.011207 0.447877 0.773979 0.178484 -0.547104 -0.424286 0.499196 1.774520 1.774844 -0.469987 0.630823 1.641208 0.206184 -0.080680 0.449933 0.560163 -0.079667 0.544917 -0.143045 -1.014063 -0.664548 -0.237958 -0.937959 0.094361 1.845458 2.321318 0.055017 -0.116495 0.793159 0.154083 0.675405 1.060674 0.380064 -0.084681 0.114637 1.090708 -1.643992 -0.210437 -3.203238 -0.273631 -4.225868 -1.369960 -0.094376 2.113661 0.667284 0.643400 -0.272710 2.022370 -0.239776 -0.428728 1.875059 2.451589 -1.317453 -0.978413 -1.255306 -1.151028 0.825885 -1.099132 0.053979 1.039829 0.474419 -1.762892 -0.571981 0.660595 0.586498 -0.780638 -0.979905 0.255779 1.657143 -1.889329 -0.948128 -0.436273 1.549678 0.116550 -3.233517 -0.714040 -1.138454 0.846503 0.185022 -0.745271 -1.220775 0.388517 0.757696 -0.724674 -0.554256 -0.976662 1.664356 0.835791 0.882848 0.336759 0.428960 0.661583 2.482358 0.755406 -1.160130 0.078817 -0.018841 -0.409908 0.828902 -1.021225 -0.858416 0.552268 -1.753747 0.572904 1.101876 -1.147057 -0.758559 0.369601 0.478412 0.553855 5.964178 -0.034629 2.411232 1.478746 -1.901812 0.890343 -0.559282 -0.081920 0.508083 0.994558 0.115163 -2.001793 -1.705350 1.260142 2.103953 1.485081 -2.143388 -0.174459 -0.042561 -0.068084 -0.094202 0.181711 0.516194 0.183761 -1.467214 -0.486641 1.659235 3.683562 -0.644103 -1.094414 0.969594 1.012777 -0.596568 -1.906371 -0.601027 -0.877284 0.394842 0.628024 0.048823 1.223367 2.531307 -3.707617 1.841581 0.001946 -0.043918 1.636291 0.420739 -1.778192 -2.711723 -0.408478 1.352938 2.340447 -0.270373 0.075768 0.612825 -1.788044 -0.142000 0.371348 0.068109 -0.518339 0.906721 -0.027326 -0.974474 -1.130347 -0.244240 -0.639970 0.007791 -0.489202 1.162326 0.489006 -3.159235 2.081855 -0.116392 -0.819166 -0.074130 -0.471354 1.762195 -1.775474 -2.070667 0.986135 -0.537764 -1.448528 -1.078592 0.101985 1.048269 0.369777 0.575606 -0.998686 -1.994749 1.756495 -0.770082 1.733332 0.892167 -0.093597 1.540705 0.154210 -0.621086 -1.588764 -1.240654 0.449135 -0.430422 -1.724143 -0.083173 -0.587874 1.681019 1.412963 0.018170 -1.378183 -0.179071 2.066438 -1.558898 -0.823657 1.366754 0.519622 -1.788854 0.925436 1.744851 -2.055132 -0.008486 -1.350190 -0.309060 -0.742235 -1.659519 1.090515 0.157379 1.035035 0.163715 0.275383 -0.307702 0.734900 0.492862 0.083944 0.120766 2.613235 2.276989 -1.005083 -0.137603 -2.063197 1.010267 -2.462294 -2.408106 0.836104 0.186302 -1.283124 0.187187 0.133871 1.846472 0.375885 -0.298583 -0.664738 0.586740 +PE-benchmarks/shortest-common-supersequence.cpp__superSeq(char*, char*, int, int) = -4.352145 -5.923795 -4.640239 -9.722707 6.198215 9.689936 3.861976 -8.499805 -11.452249 0.448388 6.541161 -13.146715 0.404424 11.644403 -3.745183 12.422194 14.837625 1.046452 -7.872340 -0.956608 11.618671 1.283703 15.983230 13.475038 -7.604029 -0.868515 -3.329788 4.712776 3.162279 -2.657768 2.912833 -1.588582 6.101543 -14.203193 -6.154454 -4.939777 1.695147 3.889281 11.828260 -13.972748 3.013587 -2.264671 2.072204 -3.002910 -4.785287 -0.596696 6.232569 9.556947 1.121528 3.383688 7.765514 0.298508 -0.914990 2.898094 1.991212 1.787399 -0.147569 -1.236536 -3.427931 -6.987449 -0.334526 0.125531 2.517398 9.437810 11.725240 2.530719 -0.906225 9.535474 3.869400 2.477635 7.279583 1.782982 -6.419904 0.992840 2.701638 -16.691038 -0.149728 -13.698404 -3.050990 -13.048684 -5.571171 3.337570 7.221369 0.426272 7.701327 3.504756 9.100284 -1.470840 -5.316862 10.524468 11.066083 -10.241048 -5.064445 -4.910360 -4.422256 2.246556 -4.779110 2.937510 6.731646 4.660601 -8.957693 -1.758640 3.665159 5.990144 -3.593722 -9.616244 4.196552 7.572360 -6.176916 -8.792066 4.746465 10.790251 -3.569313 -16.565402 -3.426038 -8.166532 4.911549 -0.699042 -3.872475 -11.004366 0.585378 4.300947 -2.055444 -5.465810 -0.384474 3.985819 6.362862 6.001725 0.336423 4.013290 2.948102 19.332750 0.361458 -6.416939 2.654399 -1.490993 -0.782977 7.134281 -4.835755 -6.143402 -0.534357 -11.667451 4.248136 10.013813 -5.328577 -3.102156 5.911014 7.326707 0.543183 34.329870 2.056370 14.360309 11.310200 -9.984658 1.027032 -7.319074 2.359102 3.283905 2.508678 -2.742280 -17.383242 -10.263791 6.375856 10.383248 7.586754 -11.789725 -2.636719 -0.224325 -1.206131 -0.213587 -1.685285 2.872744 0.942362 -6.490663 -1.929348 10.763908 22.066907 -4.572736 4.337906 6.830129 2.300294 -4.894003 -14.145437 -6.165438 -6.968683 2.651527 4.074945 3.305689 5.189555 12.503206 -9.715729 8.170499 -1.573343 2.857219 8.933720 6.099791 -11.970641 -11.290802 -5.098166 5.663901 10.710749 -5.983255 -0.326644 5.598928 -8.732025 -0.922655 3.555952 -2.738760 -1.153401 3.362504 1.576213 -3.291563 -3.948410 7.418280 -2.843890 -0.406216 1.144852 7.968789 -0.874407 -8.216314 9.163166 0.509353 -5.390516 2.779340 -4.688873 12.364189 -7.527806 -7.395673 7.828858 -0.581521 -2.137740 -4.308049 2.595605 6.007059 3.921514 5.854813 -7.386621 -7.774589 6.620635 -5.275111 8.386979 4.099607 -2.140672 3.460160 -8.693644 -3.279898 -9.697338 -9.211403 -4.016463 3.033276 -11.136595 -2.337214 -1.672859 10.746065 4.730617 1.329884 -11.317611 3.320440 10.331322 -10.432128 -3.070786 5.930724 5.780270 -13.984431 1.874218 7.646633 -12.152662 3.516650 -2.715745 -1.977089 -4.636191 -8.680082 7.274234 5.408569 7.952782 -3.108806 2.801011 4.366160 5.033020 3.784947 5.068416 3.436722 13.692189 6.929620 -0.270899 -7.635110 -11.125620 4.612301 -11.945102 -13.618215 7.442529 4.835427 -8.483879 1.036732 1.823990 12.538443 3.102933 -4.203899 -3.128004 2.656498 +PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/shortest-common-supersequence.cpp__main = -0.965971 -0.774509 0.223564 -2.761889 2.206883 2.121152 1.191237 -1.452839 -3.327935 -0.847250 1.648553 -5.051358 -1.597617 3.712540 -1.204515 2.062938 4.627751 0.266916 -1.935501 -0.460472 2.388456 0.795415 4.845184 4.147170 -2.751515 0.043593 -1.578815 1.542324 0.492336 0.346729 0.771943 -2.118191 1.444554 -1.875513 -0.952988 -0.640725 0.217444 0.287526 1.713774 -4.504547 0.672662 1.446275 0.613374 -0.985035 -0.653786 0.218435 3.148369 2.822364 0.347464 0.738948 2.091792 0.236811 0.271342 0.806780 1.036253 -0.627147 0.863807 -1.479535 -1.943561 -1.420312 -0.379170 -0.762344 -0.481009 3.079027 3.652102 0.944323 -0.572414 1.319047 0.615306 0.913442 1.821012 0.776119 -0.084430 1.086518 1.304970 -1.939744 0.085182 -3.413513 -0.535717 -4.575629 -2.334618 0.279215 3.590499 1.695700 1.092774 -0.554287 3.147780 -0.311522 -1.064905 3.088638 4.344085 -2.399052 -1.771753 -1.673744 -1.513198 1.053772 -1.626828 0.961407 0.975250 1.398218 -3.082465 -0.487998 0.933529 0.832761 -1.170412 -1.050480 0.964134 2.362267 -2.321441 -1.282786 0.010633 2.788074 0.480862 -4.831113 -1.872226 -1.580682 0.633677 0.487197 -1.537946 -2.003897 0.668237 0.498158 -1.221867 -0.617573 -2.412087 2.061335 1.393960 1.657924 0.309599 1.607716 1.592190 4.422415 -0.320486 -1.859500 0.768109 -0.555496 0.046787 1.862167 -1.181042 -1.484028 0.027225 -2.487090 0.735438 1.916261 -1.882862 -1.351413 -1.382017 1.375828 0.471164 8.414590 0.098523 3.860859 2.631703 -2.975850 0.993445 -1.693927 0.039489 0.193147 1.094971 0.259027 -3.045320 -3.059991 2.510617 3.515768 2.292615 -2.929987 0.904240 0.462126 -0.031555 -0.694993 0.553436 1.031851 0.611833 -2.163534 -0.731418 3.189897 6.211510 -0.941343 -1.054359 1.804234 0.847464 0.241460 -2.294173 -1.128450 -0.281208 0.691713 1.179363 0.800620 1.887870 4.122540 -4.207733 2.958732 0.443672 0.346948 2.997754 0.839394 -3.312439 -2.547933 -1.121183 2.303935 3.365665 -0.298863 -0.552355 0.746583 -2.841272 -0.387536 0.877375 -0.142924 -0.575896 1.399685 -0.004961 -1.352592 -1.726995 -0.439295 -1.096359 0.491891 -1.104386 2.209150 0.925344 -3.506704 3.472431 0.496848 -1.299308 -0.634007 -1.588256 2.883582 -2.639116 -2.835102 1.452359 -1.690253 -2.773698 -1.368971 0.218455 1.034308 0.958489 1.712199 -2.175590 -2.057205 3.601749 -0.867734 3.096774 1.471254 -0.247644 1.433326 0.409971 -1.256557 -1.713577 -2.958834 0.670675 -0.003242 -3.050338 0.843938 -1.018120 2.686897 1.936682 -0.208668 -3.086535 -0.510600 2.911273 -2.405210 -1.581448 2.150260 -0.007032 -3.292374 1.348090 2.679581 -3.164019 0.602433 -1.982595 -0.894834 -1.860475 -2.750436 1.507139 0.677746 1.664301 0.093695 0.076544 -0.111149 1.123573 0.564551 0.086195 0.791948 4.396733 2.413639 -0.757651 -0.117403 -3.706467 1.832857 -3.852070 -4.120659 2.041928 0.092546 -2.580685 -0.140676 0.109476 2.867114 0.911945 -1.191127 -1.786090 1.581616 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__minInitialPoints(int (*) [3]) = -5.375556 -5.341756 -4.858214 -12.686488 9.027550 14.866108 5.574175 -10.723386 -14.656062 -1.980336 7.853804 -18.952054 -1.864205 16.578041 -4.774665 17.172974 20.669064 1.451981 -9.971413 -0.186121 15.556557 2.829690 23.095309 18.340459 -11.007712 -0.113424 -3.473391 2.726559 3.287190 1.791557 1.406876 -8.305160 11.099912 -17.776261 -6.667300 -6.417283 0.770816 3.564154 16.250163 -19.337527 4.289593 1.111915 0.704952 -5.012213 -5.311197 -1.426830 11.984538 12.685390 1.668027 4.518047 9.687139 2.082938 -1.431195 4.023144 5.114522 3.705572 1.255936 -4.766800 -5.826932 -9.278148 -1.707037 -0.473532 0.700702 12.947945 15.548333 1.905806 -1.432197 11.718941 3.681444 2.646379 8.613827 2.817546 -4.122188 0.677197 3.835131 -20.648441 -0.723068 -15.989651 -5.027976 -23.184099 -8.247065 3.175840 9.690273 2.840968 11.044035 -1.674827 13.246514 -3.937556 -6.099684 11.827046 17.723743 -16.056776 -6.813053 -7.182385 -3.541034 2.014696 -7.415694 2.372515 7.975956 0.278485 -13.176043 -3.791886 5.344164 8.305472 -5.292062 -12.548885 5.490375 10.754341 -11.061911 -11.768334 3.181386 13.066053 -4.890884 -24.472607 -4.599900 -8.056278 5.733826 0.250711 -6.374905 -16.709607 2.508469 7.442832 -3.421134 -10.114971 -1.208078 8.299551 10.112072 8.695270 1.465111 4.867365 5.282117 28.476262 3.292524 -8.052750 3.912310 -2.858973 -1.033186 9.240539 -4.833009 -8.358353 -1.235140 -15.236796 2.965240 14.749161 -8.000754 -0.411320 7.441122 8.416416 1.124013 49.235742 0.197780 20.135090 15.167758 -15.616554 2.024667 -9.842906 0.678290 2.090631 4.215138 -0.107091 -24.388369 -13.765574 10.288134 15.052175 10.660184 -16.812064 0.279904 -1.189162 -0.543088 -2.071183 -1.578329 3.356433 4.156757 -11.946600 -3.248688 14.080990 33.319634 -8.410997 2.869874 9.153976 2.974392 -4.079583 -16.276904 -8.186125 -9.569811 3.935222 6.288435 3.239350 7.576599 17.893222 -13.235753 12.395553 -4.208766 -0.797295 13.708998 8.499159 -16.427851 -13.051286 -6.593939 9.919633 15.295126 -6.379778 3.320118 5.693615 -12.580189 -1.890254 3.073749 -2.581086 -2.205822 4.462360 3.821818 -7.284522 -5.922022 6.341473 -2.623189 -3.042853 -0.939958 10.390093 3.651369 -16.411561 14.819963 2.597893 -6.627527 3.370693 -4.595977 17.769638 -11.608248 -11.871866 10.524024 -2.201379 -5.046916 -2.882643 2.489208 8.128368 4.925337 7.420617 -10.284189 -12.872267 11.209471 -3.779351 12.927257 6.065494 -1.248963 6.666534 -10.367169 -4.104066 -12.484271 -15.952988 -3.106643 2.039230 -15.743766 -2.879382 -3.563984 15.413904 7.888609 1.187152 -15.345412 1.564923 12.539578 -17.822204 -1.072938 9.669137 12.084437 -20.032400 1.465137 11.791621 -15.147584 3.077687 -4.553166 -3.326466 -7.872671 -11.372361 8.711054 5.029417 9.843871 -1.836537 2.766660 2.876592 5.361341 4.036449 3.560503 3.921677 17.621063 12.431811 -2.918658 -8.520297 -15.139002 7.090904 -16.785173 -20.203870 10.556255 4.352935 -12.856882 -0.066546 3.340603 17.442056 3.969120 -4.139445 -3.964694 2.700568 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::max(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = -1.085074 -0.801672 -0.429230 -2.842880 2.157556 2.860477 1.276444 -1.831257 -3.336743 -1.037478 1.599771 -4.691359 -1.242110 3.895269 -1.151389 3.063483 4.888882 0.429594 -2.056895 -0.204145 3.032039 0.481661 5.263047 4.332970 -2.799251 0.101463 -0.896549 0.864635 0.627693 0.904984 0.425976 -2.465545 2.303948 -2.947285 -0.918100 -1.341128 0.080395 0.473037 2.589230 -4.801237 0.856201 1.075943 0.331612 -1.080170 -0.857959 0.357947 3.267845 2.919622 0.205936 1.011294 2.198026 0.513762 -0.067281 0.878506 1.195885 0.223756 0.613709 -1.377188 -1.726503 -1.714142 -0.460661 -0.790706 -0.254713 3.107323 3.728046 0.409292 -0.386586 1.954998 0.626983 0.810690 1.797405 0.751176 -0.262381 0.430800 1.091769 -3.546593 -0.106857 -3.661131 -0.925215 -6.264463 -2.199734 0.279478 3.051471 1.367241 1.802322 -0.910521 3.301366 -0.677020 -1.061804 2.781563 4.471144 -3.215296 -1.672210 -1.762921 -0.932834 0.791933 -1.782885 0.486581 1.705617 0.281977 -3.155674 -0.652710 1.135679 1.360733 -1.277863 -2.004489 1.000443 2.599229 -2.997858 -1.987962 -0.014761 2.731951 -0.310474 -5.733518 -1.060525 -1.559502 1.076787 0.365215 -1.550255 -3.038028 0.745900 1.348267 -0.988344 -1.612874 -1.506500 2.427324 1.909958 1.824400 0.474992 1.331387 1.428186 5.648929 0.774988 -1.835317 0.743416 -0.534480 -0.276989 1.872539 -1.133655 -1.759127 -0.004520 -3.315584 0.758272 2.744246 -1.981716 -0.485541 0.323641 1.478551 0.503964 10.521842 -0.186033 4.508090 3.110537 -3.547637 0.847782 -1.937137 -0.117331 0.323058 1.232952 0.369016 -4.443693 -3.074619 2.460198 3.707040 2.467770 -3.621108 0.571620 -0.104875 -0.098621 -0.643140 0.117919 0.848513 0.927641 -2.709026 -0.813006 3.164433 7.260061 -1.571982 -0.281046 1.842280 0.824486 -0.397572 -3.111077 -1.470247 -1.479289 0.856930 1.338690 0.595806 1.828821 4.253659 -3.946158 3.128971 -0.483302 -0.229920 3.217127 1.444440 -3.528600 -3.314505 -1.255036 2.539588 3.679941 -0.979078 0.387199 0.982190 -3.012390 -0.479474 0.704687 -0.213558 -0.685628 1.220232 0.650798 -1.708863 -1.618476 0.326602 -0.642047 -0.342350 -0.756845 2.282918 1.210478 -4.422313 3.683868 0.441990 -1.541646 0.097574 -1.038794 3.549721 -2.885015 -2.996400 1.930051 -1.044639 -2.237044 -0.995098 0.273384 1.657128 0.869945 1.497124 -2.168833 -2.912177 3.179434 -0.814258 3.098922 1.517935 -0.101031 2.011713 -0.955974 -1.096330 -2.438752 -3.549303 0.013817 -0.212638 -3.328558 0.154700 -0.993153 3.221905 2.185693 0.076658 -3.258856 0.025801 2.963934 -3.504067 -0.738195 2.355357 1.760909 -3.988918 0.937111 2.864173 -3.450188 0.417732 -1.696161 -0.842138 -1.764008 -2.682292 1.788409 0.616392 1.932063 0.031425 0.380373 -0.007933 1.217168 0.697646 0.299790 0.743323 4.271398 3.079537 -1.082954 -0.911874 -3.601829 1.830350 -4.068887 -4.520160 2.111947 0.694031 -2.661682 -0.084829 0.497561 3.537040 0.834283 -1.066803 -1.268219 1.008398 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -2.695823 -3.454652 -1.175227 -6.100373 3.835650 4.146358 2.311978 -4.177985 -7.095082 -0.496575 3.193126 -6.595556 -0.000433 7.600073 -1.936522 7.695783 8.741872 1.387362 -4.194506 -0.490220 7.400608 -0.516473 8.731173 7.552842 -4.961191 -0.363422 -0.830768 2.628087 1.818164 1.021672 0.463393 -2.428481 3.513849 -7.947829 -2.269129 -3.955964 0.787349 2.947132 7.097316 -8.698400 2.025338 0.424504 1.954352 -2.115094 -2.293138 -1.434081 3.375445 5.830520 -0.547041 2.467876 4.905357 0.294311 -0.588227 1.677561 1.794635 2.144965 0.571963 -0.686147 -2.410445 -3.452327 -0.589440 -0.840637 1.822217 5.514247 7.148039 0.516348 -0.424153 4.715983 1.967878 1.514556 4.239787 1.016797 -3.089173 -0.798529 2.313717 -9.456483 -0.323029 -10.020572 -1.411690 -9.796459 -3.842275 1.549011 4.450709 0.567287 4.712113 0.688693 5.796037 -1.831850 -2.697658 4.930873 6.355682 -6.114674 -2.957417 -3.496319 -3.085421 1.734044 -3.298643 0.261800 3.517385 0.973790 -5.416000 -2.432005 2.359588 3.684916 -2.288886 -5.001741 2.091323 5.337544 -4.455992 -6.228180 1.246028 5.743181 -2.428864 -9.479680 -1.019082 -4.639008 2.177900 0.093444 -2.704694 -6.497058 0.883434 2.997531 -1.822112 -4.098611 -0.577906 3.397482 3.452989 3.307067 0.521700 1.001356 1.297552 10.968682 1.767535 -4.309673 1.290393 -0.194288 -1.065038 3.695473 -3.534125 -3.942007 0.553811 -6.803756 0.723150 5.170404 -3.633118 -0.734096 4.893593 3.655274 0.741759 19.488311 0.659938 8.239088 6.138341 -5.786143 2.022206 -2.730448 0.913945 2.039819 2.435423 -0.805313 -9.458269 -6.014765 3.695694 6.446199 5.024345 -6.624938 -3.073911 -0.841811 -0.240486 0.453037 -0.644583 1.551958 0.848334 -5.178206 -1.253045 4.955763 12.118450 -3.190169 -0.158238 3.727183 2.386569 -3.435314 -8.029490 -3.440396 -6.006269 1.370690 1.416678 0.791354 3.529690 7.906395 -8.308039 5.542526 -1.456344 0.175901 5.233648 2.739653 -6.899569 -7.429298 -2.652087 3.009324 6.799589 -2.867376 1.308213 3.334988 -5.645686 -0.473858 1.053467 -1.093116 -1.282865 2.383205 0.533104 -2.538521 -2.432284 3.202980 -1.859524 -2.133339 0.257982 4.522328 1.524862 -6.400699 5.104589 0.317657 -2.737126 2.570358 -1.765863 7.089301 -5.072917 -5.295787 4.660099 0.094183 -0.957657 -2.395907 1.305453 4.078371 1.786908 2.048932 -3.507946 -5.439745 3.659443 -2.680668 5.424804 2.587359 -1.436418 2.636691 -2.715587 -1.687125 -5.820454 -3.968848 -2.170684 0.790270 -6.144557 -3.759152 -1.385936 6.667915 3.640283 0.877336 -5.282309 0.307961 6.320934 -7.101014 -0.861351 4.265118 3.060226 -7.234301 0.701741 5.329720 -7.048275 1.276368 -2.079486 -0.460080 -2.383402 -4.313930 4.507969 2.350297 4.291148 -1.422685 1.156756 1.395571 2.577575 2.729225 1.679944 1.163670 8.014250 4.971130 -1.208794 -3.616917 -6.425301 2.384909 -7.038320 -7.728923 3.550763 2.051519 -6.001795 0.851863 1.363938 7.594792 1.533082 -0.675461 -1.372613 0.735868 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__finalCount(int, int) = -1.402826 -2.195659 -0.721099 -3.523976 1.891126 1.261195 1.217575 -1.897983 -4.156984 -0.386113 1.576781 -3.393853 0.267479 4.087214 -0.879530 4.059978 5.008348 1.066259 -2.036195 -0.593118 4.031604 -0.901733 4.500848 4.243717 -2.620103 -0.183015 -0.549944 1.251166 1.095697 0.556654 0.292219 -1.463448 1.818334 -3.979681 -0.587729 -2.778846 0.404038 2.075473 3.964199 -5.103290 1.258989 0.399192 1.971589 -1.123669 -1.034135 0.501755 1.462222 3.029630 -0.698217 1.565593 2.920836 0.288019 -0.366168 0.839458 0.894854 1.225520 0.396764 0.001012 -1.242896 -1.448896 -0.253845 -0.312792 1.284518 2.745987 4.122344 -0.076643 -0.210821 2.214888 1.475197 0.854973 2.428697 0.372872 -1.276744 -1.084801 1.138990 -5.441909 -0.506245 -6.919379 -0.462968 -7.365332 -2.031409 0.922767 2.855195 -0.276103 2.000930 -0.165766 2.966592 -0.869822 -1.342592 2.527011 3.021527 -2.822601 -1.551844 -1.912685 -1.733141 1.058430 -1.568386 -0.170815 2.860510 0.426863 -2.756957 -1.222482 1.562172 1.641318 -1.166326 -2.636980 1.248336 2.830749 -2.276519 -3.133288 0.637541 3.429478 -1.034080 -4.925449 0.928542 -3.151549 0.837381 -0.072273 -1.491247 -2.917719 0.327019 1.236134 -1.415661 -1.725137 -1.301888 2.447061 1.681954 1.665910 0.207802 0.301332 0.350809 5.432370 0.580712 -2.770279 0.615430 0.303810 -0.901666 1.725809 -2.724055 -2.288096 1.791122 -3.540084 0.401687 1.850379 -1.969161 -0.256599 3.791082 1.825739 0.409074 10.474971 0.284640 4.635919 3.168614 -2.734524 1.770350 -0.937109 0.704762 1.263443 1.749149 -0.785249 -5.062695 -3.205601 1.592407 3.280950 2.756759 -3.734959 -2.373974 -0.547297 -0.359502 0.499843 -0.403335 0.580848 0.135839 -2.712310 -0.626920 2.040927 6.740011 -1.207325 0.873212 1.415115 2.213554 -2.315882 -4.672174 -1.707115 -3.756845 0.790786 -0.032920 0.414842 2.191888 4.119081 -5.990608 2.985482 -0.983485 0.321292 2.548264 1.392515 -3.765515 -5.913998 -1.435103 1.280621 4.254028 -1.650504 1.417949 2.134415 -2.875354 -0.169978 0.135386 -0.562589 -0.839325 0.973622 0.131316 -1.190585 -0.775300 1.840231 -1.287536 -1.230278 0.330919 2.260062 1.762168 -3.978503 2.347934 -0.159109 -1.260774 1.269180 -0.657176 3.540715 -2.661512 -2.359698 2.139493 0.417156 -0.275558 -1.795381 0.656328 2.381606 -0.324177 1.221334 -1.542775 -3.518498 2.160237 -2.005127 2.811656 1.361628 -1.223445 1.338681 -1.097911 -0.688567 -3.463874 -2.089208 -1.664458 0.147227 -3.037873 -0.988309 -0.692559 3.260752 1.834166 0.630902 -2.697275 0.608948 3.622791 -3.619737 -0.164483 2.258315 1.341896 -3.515641 0.695083 2.875579 -4.345174 0.656798 -1.340555 -0.219728 -0.775148 -1.872875 2.632389 1.320442 2.238404 -1.183174 0.728040 0.659469 1.498464 1.578517 0.482560 0.550773 4.737282 3.250401 -0.519596 -1.785741 -3.246989 1.048822 -3.490221 -3.862189 1.220631 1.062377 -3.608191 0.755194 0.820028 4.265496 0.621555 0.337544 -0.817714 0.554234 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = -0.453219 -0.652147 0.275226 -1.339145 0.801464 0.128519 0.471680 -0.496335 -1.604219 -0.370217 0.582092 -1.284477 -0.190461 1.550732 -0.406548 1.071458 1.923760 0.502345 -0.675387 -0.467407 1.317423 -0.653415 1.712836 1.727256 -1.198282 0.039302 -0.087429 0.705764 0.600988 0.494781 -0.097493 -0.477668 0.585155 -1.143677 0.008313 -1.090347 0.099784 0.594982 0.956413 -2.035649 0.418688 0.107007 0.542812 -0.315062 -0.253561 0.830430 0.804593 1.140423 -0.409509 0.717552 1.200139 -0.022125 -0.043524 0.322472 0.411891 0.271988 0.620429 0.230415 -0.557417 -0.314856 -0.152184 -0.619056 0.405220 1.132520 1.606625 -0.049000 -0.089113 0.536134 0.488847 0.356968 0.936713 0.191052 -0.217749 -0.306155 0.598817 -1.827884 0.027969 -2.844618 -0.201694 -3.350009 -0.885370 0.134369 1.441867 -0.282105 0.469014 0.021043 1.244970 -0.138224 -0.400357 0.917802 1.305381 -0.977015 -0.640197 -0.591805 -0.771129 0.493870 -0.639911 -0.030393 1.009238 0.307888 -1.077006 -0.422446 0.760733 0.402524 -0.498055 -0.574964 0.305417 1.149419 -1.202397 -0.868332 -0.133416 1.023313 -0.045168 -1.852385 0.380470 -1.123274 0.884764 0.042699 -0.609918 -0.785282 0.192033 0.442532 -0.606690 -0.324123 -0.822439 1.094145 0.480738 0.642622 0.080464 0.061917 0.197898 1.564222 0.487023 -1.072788 0.137811 0.125957 -0.495869 0.603086 -1.042114 -0.771145 0.896789 -1.194997 0.232895 0.387138 -0.817065 -0.318280 1.353651 0.579093 0.227658 3.562051 0.064034 1.640259 1.053927 -1.020212 0.654555 -0.210056 0.252578 0.599337 0.822990 -0.189758 -1.561692 -1.221730 0.614569 1.336859 1.032369 -1.594117 -0.835117 -0.176145 -0.106381 0.265382 -0.009695 0.192896 -0.010516 -0.962024 -0.300388 0.668890 2.362331 -0.374048 -0.368582 0.393152 0.524667 -0.747843 -1.706305 -0.490913 -0.881835 0.377515 -0.085534 0.083810 0.873903 1.636850 -2.971065 1.239937 -0.392166 0.025642 1.054620 0.395300 -1.238203 -2.366038 -0.414688 0.539746 1.632903 -0.250894 0.191094 0.834890 -1.181911 -0.119856 0.013946 -0.025390 -0.438093 0.500547 0.176404 -0.571074 -0.447379 0.132991 -0.314166 -0.183481 -0.007170 0.876466 0.367578 -2.187146 0.986267 -0.169689 -0.536399 0.275041 -0.185267 1.070578 -1.113809 -1.065265 0.624974 -0.031104 -0.531383 -0.998326 0.153093 0.824982 -0.274102 0.288133 -0.581356 -1.331065 0.965347 -0.893988 1.070501 0.582563 -0.363262 0.947659 0.024381 -0.262998 -1.237350 -0.323368 -0.253582 -0.350285 -0.962489 -0.098808 -0.341710 1.087751 0.916544 0.201858 -0.644164 0.222164 1.484683 -1.268817 -0.433161 0.913815 0.527944 -0.994329 0.746610 1.119423 -1.644463 0.067479 -0.717647 -0.447346 -0.219142 -0.687806 1.062943 0.282767 0.766593 -0.247186 0.324375 0.001787 0.664974 0.365807 0.094518 0.137022 1.836515 1.923032 -0.498129 -0.305605 -1.227439 0.543392 -1.448372 -1.387419 0.358628 0.387486 -1.193275 0.283877 0.163367 1.465761 0.282759 -0.129664 -0.390874 0.414739 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::Graph(int) = -1.065045 -1.091240 0.397794 -2.880868 1.590059 1.126466 0.776590 -1.114850 -2.235303 -0.333864 1.324552 -1.360350 -1.092358 2.626712 -0.833288 1.475699 1.540103 -0.373644 -1.636414 -0.870990 2.513151 -0.978867 2.524549 1.468141 -2.523991 -0.288118 -0.348416 1.965832 0.763159 1.367521 0.353198 -0.049643 -0.269311 -0.934801 0.398762 0.069996 0.481554 0.487506 0.436485 -2.241242 0.554423 1.325369 0.997471 -0.619996 -0.761149 -0.442517 0.942338 2.202528 -0.172108 0.028468 2.385248 -0.212172 0.254844 0.396161 1.091862 0.104403 1.751852 -0.147152 -0.354071 -1.191988 -0.287479 -0.473503 0.887398 2.135641 2.535853 -0.430207 0.000705 1.018199 0.306452 1.410213 1.672500 0.332332 -1.194381 -0.648243 1.663784 -1.357908 0.333545 -2.394678 0.219915 -2.413931 -1.298022 0.206216 1.609627 0.843997 1.033075 -0.034750 2.249198 -0.040309 -1.122410 0.612685 1.333885 -0.613173 -0.760558 -1.308962 -1.725243 0.556193 -1.206310 -0.309625 0.768066 1.323558 -1.732910 0.551646 0.098295 0.998993 -1.158708 -0.611942 -0.292426 1.767619 -1.042306 -0.964747 0.473405 2.254369 -0.333811 -3.206310 -0.858204 -2.341069 -0.197264 -0.902446 -0.012082 -0.444756 0.158106 1.153668 -0.716948 -0.755397 -1.738925 1.345506 1.306281 0.662071 0.108552 0.217000 -0.035735 1.855967 0.307743 -1.159696 -0.664373 0.187220 -0.430331 1.204961 -0.557106 -0.530067 0.523422 -1.505518 -0.003106 0.517016 -0.424573 -0.342089 -0.073026 0.838113 0.543622 5.068871 -0.082308 2.282733 1.133219 -1.190609 1.033270 0.361715 0.382397 1.041877 0.874645 -0.985705 -1.441420 -2.059728 1.419178 1.784429 1.367234 -1.474311 0.167936 0.035512 -0.403690 -0.223470 -0.000430 0.289518 -0.232934 -1.315802 -0.611928 0.798850 3.012731 -0.651842 -2.021661 1.680521 1.186984 -1.618526 -1.404103 -0.755178 -1.279045 0.145343 -0.164566 0.190063 1.598327 2.504372 -2.521467 1.790185 0.073067 -0.349956 2.237067 -0.888105 -1.281493 -2.847615 -0.443117 0.233535 2.158615 -1.008885 -0.723917 0.786472 -1.919088 0.457762 -0.023938 -0.389713 -0.416701 0.986191 -0.699792 -0.522282 -1.071287 -0.750912 -1.111881 0.803972 -0.730959 0.868065 -0.103306 -2.042772 1.708602 -0.314217 -0.592377 0.148617 -0.107267 1.681541 -1.155550 -1.580943 1.102367 0.064346 -0.670224 -1.975229 0.390720 1.331388 0.007606 0.172596 -1.605902 -0.834893 1.423365 -1.842129 1.736998 0.873465 -0.303459 0.438122 1.510713 -0.286050 -1.386871 -0.637055 -0.261359 0.226648 -2.254418 -0.422969 -0.642164 1.821266 0.574819 0.202792 -0.753679 -0.188155 2.553901 -0.801211 -1.332272 0.844582 -1.008693 -1.756873 1.136931 1.594767 -1.346824 -0.107038 -1.598584 -0.262419 -1.243429 -2.015561 1.879096 1.106354 1.912102 -0.495679 0.887995 0.123995 0.569985 0.673676 -0.067161 -0.257990 3.177373 1.193679 -0.938137 -0.923121 -2.208999 1.318985 -1.535737 -1.358586 0.776772 -0.035305 -1.028146 0.538028 -0.298880 2.454892 0.663988 -0.151995 -0.460183 0.048109 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::addEdge(int, int) = -0.454251 0.014732 0.737724 -0.972307 0.719048 0.751984 0.286951 -0.568509 -0.833791 -0.270499 0.082470 -0.896132 -0.548274 1.184565 -0.622334 0.471466 1.539444 0.427119 -0.479657 -0.309499 0.865459 -0.210421 1.524448 1.421868 -1.094266 -0.095007 0.365177 0.856315 0.366998 0.911859 -0.474065 -0.587194 0.393821 -0.510509 0.172924 -0.832434 0.104214 0.100763 0.198484 -1.615454 0.160191 -0.052453 -0.142967 -0.165116 -0.075904 0.326587 1.103486 0.915913 -0.068903 0.141988 0.711291 0.390920 0.023148 0.270416 0.445985 0.306988 0.924477 -0.053131 -0.387082 -0.300005 -0.285318 -0.606537 0.108261 1.167968 1.311503 0.248529 0.019658 0.132022 0.034350 0.220839 0.354740 0.299018 -0.099247 0.520522 0.387399 -1.133039 0.468517 -1.526948 -0.185959 -1.624686 -0.612468 -0.443547 0.404118 0.108856 0.526793 0.056515 1.238147 -0.029719 0.015189 0.495658 1.422202 -1.070540 -0.401346 -0.576858 -0.599566 0.240514 -0.599605 0.101817 0.072012 0.217476 -0.847853 -0.683135 0.429039 0.374255 -0.429581 -0.077093 -0.010372 1.019889 -1.089876 -0.604593 -0.599520 0.263622 -0.221227 -1.669155 -0.319942 -0.782149 0.944887 0.009974 -0.426294 -1.047607 0.348574 0.935671 -0.272332 -0.425461 -0.493371 0.928113 0.524029 0.026143 -0.065022 -0.014139 0.151247 1.239612 0.698412 -0.590751 -0.053584 0.100201 -0.742685 0.011652 -0.758564 -0.206041 0.205106 -0.941423 -0.022334 0.882624 -0.662793 -0.125993 0.428439 0.012067 0.577855 3.354099 -0.293393 0.896381 0.533574 -1.216236 0.386493 -0.142657 -0.047121 0.254260 0.537465 0.389814 -1.655034 -0.963328 0.618786 1.179090 0.758463 -1.056510 -0.124293 -0.394841 -0.071765 -0.070947 0.100419 0.264635 -0.361278 -0.717938 -0.339809 0.546513 1.880693 -0.527294 -1.090521 0.422884 -0.085707 -0.376152 -0.967412 -0.337365 -0.233656 0.212137 0.176298 -0.070018 0.629806 1.382166 -2.073271 1.079765 -0.177932 -0.403914 1.186560 -0.056876 -0.568270 -0.704173 0.003596 0.925696 1.081285 -0.007391 -0.187303 0.234428 -1.096552 -0.119598 0.119038 0.557740 -0.477375 0.555793 0.535116 -0.981104 -0.798941 -0.350340 0.003859 -0.381989 -0.375710 0.597345 -0.309046 -2.042930 1.291191 0.062449 -0.275016 0.364273 -0.286141 0.636042 -1.128742 -1.245923 0.550594 -0.053018 -0.328843 -0.525010 0.048870 0.779591 0.147165 0.357933 -0.935953 -1.111113 0.570698 -0.359412 0.836117 0.408109 0.311575 0.919589 0.114779 -0.242586 -0.918799 -0.317622 0.227053 -0.076549 -0.771479 -0.253344 -0.276032 1.017717 1.198326 -0.119514 -0.293843 -0.100879 1.209096 -0.957608 -0.364021 0.666630 0.512789 -0.829413 0.195930 0.806882 -0.994268 -0.518365 -0.478781 -0.497277 -0.331114 -0.905421 0.603949 -0.399135 0.487806 0.330245 0.134013 -0.377564 0.466565 0.239347 0.128229 0.276984 1.278304 1.380350 -0.438043 0.124082 -1.015523 0.609952 -1.459528 -1.072124 0.343748 -0.103585 -0.470185 0.143912 0.015477 0.999450 0.159948 -0.046817 -0.062838 -0.077551 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.393401 0.422519 1.031386 -1.031333 0.911656 0.566330 0.289656 -0.279628 -0.773459 -0.525266 -0.148460 -0.897224 -0.903899 1.280504 -0.616633 0.073999 1.790952 0.501754 -0.302807 -0.413763 0.851887 -0.381816 1.574160 1.505993 -1.357415 -0.030149 0.664674 0.861908 0.356394 1.202490 -0.612930 -0.953458 0.365006 -0.118637 0.544261 -0.984653 0.119830 -0.152330 -0.193692 -1.907424 0.155767 -0.015483 -0.204815 -0.182168 -0.031300 0.779597 1.547288 0.969966 -0.421378 -0.029383 0.874053 0.620141 -0.097963 0.297384 0.378952 0.174232 1.031777 0.169529 -0.481999 -0.155502 -0.293692 -0.832648 0.017336 1.302350 1.489585 0.233028 0.090516 0.007296 -0.041530 0.269086 0.155668 0.281825 0.394614 0.619241 0.531091 -0.970691 0.242467 -2.185488 -0.192089 -2.616972 -0.754199 -0.842108 0.533092 -0.078097 0.281471 -0.102190 1.382458 0.134932 0.371358 0.607444 1.754056 -0.984465 -0.436997 -0.858633 -0.801377 0.442703 -0.636845 0.104814 0.202661 0.027407 -0.937050 -0.945297 0.461861 0.185601 -0.488910 -0.001059 -0.093111 1.121425 -1.237884 -0.317652 -1.042174 0.074072 -0.001614 -1.868447 -0.179050 -0.785787 1.111922 0.056561 -0.349325 -0.966815 0.316298 1.033208 -0.484618 -0.318287 -0.754878 1.269090 0.517544 -0.075629 0.042366 -0.180365 0.280622 0.961390 0.974930 -0.665891 -0.209115 0.093297 -0.913571 -0.285879 -1.050647 -0.113064 0.664561 -0.889177 0.120973 0.784143 -0.762436 -0.322448 0.525266 -0.447182 0.868483 3.416189 -0.418630 0.818023 0.264811 -1.401633 0.626074 0.021844 -0.357153 0.243614 0.811920 0.630133 -1.440099 -1.010450 0.605399 1.272015 0.837819 -1.148896 -0.197742 -0.512979 -0.207236 -0.164074 0.156924 0.268295 -0.507400 -0.738695 -0.435400 0.615118 1.914148 -0.449047 -1.544312 0.355047 0.286026 -0.283268 -0.909225 -0.256530 -0.189793 0.222384 0.197102 -0.242304 0.853825 1.563733 -3.006717 1.193289 -0.108337 -0.541645 1.076828 -0.167630 -0.449786 -1.052387 0.368348 1.265526 1.273501 0.190920 -0.134402 0.039200 -1.167345 -0.168691 0.086990 0.810292 -0.584731 0.563585 0.487927 -1.173862 -1.013237 -0.690934 -0.063023 -0.385776 -0.485327 0.511122 -0.174620 -2.768394 1.648919 -0.130720 -0.191598 0.176767 -0.382907 0.517944 -1.317703 -1.511133 0.446208 -0.096081 -0.477232 -0.646495 -0.000830 0.949210 -0.083431 0.456571 -0.878972 -1.521547 0.725538 -0.311385 0.837731 0.488394 0.599123 1.310276 0.380108 -0.267713 -1.117797 -0.289140 0.571623 -0.237513 -0.781671 -0.017482 -0.380949 0.971460 1.535718 -0.270168 -0.175254 -0.264594 1.297858 -0.996112 -0.491824 0.806547 0.446839 -0.700777 0.378291 0.955423 -1.064124 -0.897462 -0.774836 -0.441146 -0.216755 -1.102292 0.437810 -0.726183 0.309425 0.667349 0.027998 -0.656052 0.586144 0.153043 0.024624 0.135450 1.306914 1.819926 -0.839331 0.431610 -1.036537 0.682646 -1.754411 -1.204426 0.264368 -0.371827 -0.333964 0.150210 -0.107557 0.890154 -0.132064 0.233602 -0.089607 -0.109375 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclicUtil(int, bool*, bool*) = -3.755627 -1.031028 2.689992 -8.002874 5.966220 5.923225 2.745429 -3.986126 -7.496374 -2.728432 1.965730 -8.985253 -3.935005 10.581270 -3.608881 5.931496 12.378043 2.068862 -4.316408 -0.694985 8.499409 -0.326407 11.920343 10.355331 -8.026337 -0.911219 -0.048104 5.147002 1.596231 4.055094 -0.456278 -5.526525 3.806424 -6.259367 -1.321476 -4.935618 1.596615 1.801006 3.742964 -12.100197 2.087261 1.099454 -1.026683 -2.821524 -2.505610 -1.153859 8.417027 8.104159 -1.345164 0.523464 5.678880 2.354486 -1.089083 2.603778 2.111859 0.929530 1.133437 -2.571693 -4.064480 -3.821355 -1.442725 -3.945660 1.007992 8.765358 9.844583 2.169604 0.059734 4.345565 0.290444 1.915856 3.649388 1.502339 -0.147228 1.821724 3.985988 -8.487149 -0.171672 -11.876828 -2.106947 -12.260697 -5.338701 -1.406889 5.361445 3.418020 4.505807 -0.846153 8.828382 -1.386437 -0.929789 8.261569 11.561783 -8.377615 -3.988463 -6.758968 -5.311652 2.824981 -4.990284 1.042446 -0.018197 1.569446 -7.655974 -5.046173 1.799954 3.534236 -3.119307 -4.772442 1.631621 7.660309 -7.622426 -5.621174 -2.161414 5.013988 -1.529826 -13.063358 -3.466039 -5.148989 5.231312 0.412397 -3.119962 -8.112017 1.851330 5.389584 -2.437444 -4.449016 -3.927151 6.108629 3.944140 2.331700 0.690296 0.873837 2.366308 11.814009 3.724046 -4.836981 0.468250 -0.491473 -2.934036 2.099209 -4.949649 -3.441901 1.357588 -7.932802 -0.830323 7.399608 -5.322019 -2.483628 1.697597 1.370275 3.773820 25.019752 -0.330617 8.098155 5.828208 -9.574334 3.253585 -3.113100 -0.962055 1.577935 3.722302 1.913817 -11.524986 -8.329579 5.680989 9.056672 6.944650 -7.033291 -0.824413 -1.860088 -0.244856 -1.056474 0.013864 2.779843 -0.583053 -7.036929 -2.361336 7.319105 15.378258 -3.868326 -4.171991 5.493664 2.085703 -1.904822 -7.724434 -3.627820 -3.224589 1.262873 3.352958 -0.191862 5.242773 11.730375 -12.323526 8.055275 -0.901330 -0.903717 5.914175 1.155599 -7.097326 -6.145185 -1.199715 7.500519 8.871021 -1.062080 0.764163 1.564343 -8.142327 -0.877094 1.975202 1.660005 -2.024086 3.756828 1.174053 -5.986258 -6.099595 0.034110 -2.831048 -1.920823 -1.837107 5.149693 0.524907 -10.795638 10.391653 0.226301 -2.179287 2.035602 -3.189147 8.475677 -8.426104 -9.935888 5.709837 -1.568335 -3.753609 -3.183284 1.499855 5.781038 2.508818 1.515542 -5.509189 -8.580579 6.103024 -1.582928 7.307824 3.382495 1.357705 6.058359 0.574025 -2.576783 -6.995501 -6.010498 1.337528 0.281055 -8.091482 -3.009538 -2.083470 8.745186 7.560658 -0.957961 -5.974749 -0.457907 8.690510 -8.033028 -3.257905 6.304256 2.823850 -8.558081 1.491799 7.726968 -8.443015 -1.687098 -4.506261 -0.158498 -3.401659 -8.228284 3.782823 -0.248118 4.247600 1.788572 0.956328 -1.207107 3.255832 3.047259 1.449828 1.342348 10.932264 7.958191 -3.175716 -1.342232 -8.864022 4.073905 -11.617215 -10.555618 4.645300 0.655888 -4.784058 0.850253 0.495034 8.234329 1.007053 0.244282 -1.409207 0.232902 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -2.325978 -1.418407 0.699995 -5.425639 3.743345 3.707813 1.758612 -2.273596 -5.527278 -1.470341 1.410993 -5.484878 -1.470054 6.866035 -1.959093 4.689519 8.480984 1.522462 -2.739800 -0.126244 6.032050 -1.635556 7.390192 6.630292 -4.868167 -0.554326 0.010349 3.044211 0.729043 2.762539 -0.338427 -3.467982 2.238067 -5.241416 -0.944193 -4.158944 1.066715 1.882242 3.412528 -8.474828 1.601899 0.782873 0.057816 -1.929766 -1.878011 -0.518662 4.648836 5.125955 -1.354916 0.864292 4.016620 1.150234 -1.024803 1.565242 1.325187 1.427997 0.520402 -0.192224 -2.564118 -2.306223 -0.722558 -2.257402 1.427728 5.187723 6.344892 0.825314 0.157616 3.194746 0.397953 1.121884 2.724518 0.602600 -1.016499 0.066875 2.461752 -6.776233 -0.532282 -8.804341 -1.149386 -9.496203 -3.277249 -0.389971 3.633687 1.393644 3.153938 -0.591605 5.345871 -1.481393 -0.728467 5.356663 6.731289 -5.242313 -2.616739 -4.597665 -3.592945 1.878724 -2.992084 -0.251335 1.883169 0.555513 -4.723563 -3.035653 1.958027 2.756546 -1.874221 -3.819709 1.232641 4.973491 -4.867496 -4.478128 -0.839977 3.875338 -1.487987 -8.519862 -1.435091 -3.740564 2.692142 0.185129 -2.015512 -5.515627 1.009226 3.561371 -1.674109 -3.033927 -1.900539 4.500119 2.329938 1.762253 0.667193 0.137976 1.188093 7.969010 2.655826 -3.366540 0.379487 0.108030 -2.051533 1.450971 -3.612317 -2.795960 1.079749 -5.651403 -0.241636 4.582698 -3.416852 -0.998135 2.926348 1.471266 2.215906 18.332301 -0.007610 6.104934 3.854489 -6.005672 2.887758 -1.589988 -0.365619 1.289329 2.491427 0.467682 -8.713308 -5.134762 3.156992 5.587419 4.597973 -5.351046 -1.860106 -1.506869 -0.380975 0.205192 -0.443207 1.558397 -0.288115 -4.620771 -1.417549 4.302322 11.115332 -2.326527 -1.727015 3.426716 2.075201 -2.679398 -6.686289 -2.431318 -3.877548 0.908329 1.365619 -0.418216 3.450010 7.348576 -9.021205 5.115960 -1.168964 -0.490637 3.869403 1.051891 -4.827618 -6.729020 -1.287300 4.290969 6.726792 -1.350360 1.125647 1.632326 -4.899222 -0.461278 1.127160 0.557021 -1.213095 2.178162 0.374430 -3.646055 -3.323548 1.009393 -2.191097 -1.637922 -0.662267 3.174592 0.685919 -6.966577 6.040891 0.022733 -1.490629 1.762158 -1.379508 5.265444 -5.256018 -6.134341 3.858766 -0.053157 -1.619216 -2.145026 0.935901 4.013801 1.398858 0.578966 -2.916587 -6.791665 3.495961 -1.659924 4.585205 2.138100 0.098761 3.751759 0.354304 -1.490583 -5.199799 -3.919235 -0.299751 -0.060664 -5.156865 -2.463265 -1.291616 5.730241 4.319366 0.092849 -3.798201 0.057695 6.033920 -4.761817 -1.453906 4.062871 1.624013 -5.788699 0.520882 5.094966 -6.154481 -0.634780 -2.743957 0.037849 -1.734438 -4.752130 2.708522 0.372548 2.961315 0.457755 0.888779 -0.348967 2.018114 2.295600 1.121320 0.656869 7.353614 5.223784 -1.891104 -1.468758 -5.353120 2.216010 -7.167717 -6.727819 2.473791 1.254224 -3.718872 0.938791 1.117646 5.690823 0.500677 0.583247 -0.454466 -0.102742 +PE-benchmarks/detect-cycle-in-a-graph.cpp__main = -1.148862 -0.351210 1.885640 -3.096885 2.106431 0.829674 1.050114 0.111932 -3.384250 -1.941786 0.176331 -3.314772 -2.330073 4.165023 -1.168393 0.762182 5.307967 1.730031 -1.191129 -0.654617 2.347127 -1.196073 4.177657 4.327873 -3.138252 0.006084 -0.463033 2.311469 0.307365 2.742817 0.050552 -2.753457 0.973817 -0.524390 0.852672 -2.819510 0.196330 0.931700 -0.657614 -5.894096 0.839535 1.889823 0.398208 -0.860081 -0.053394 1.725496 3.439125 2.879286 -0.916096 0.717343 1.948450 1.010367 0.102499 0.877830 0.936028 0.056313 0.823197 -0.981254 -2.022801 -0.345952 -0.748917 -2.777132 0.178901 3.100163 3.869841 0.378316 -0.181829 -0.053483 0.121199 1.165137 1.414610 0.555639 0.840065 0.024614 1.571696 -1.742178 -0.118052 -4.897160 -0.017787 -7.736436 -2.388237 -1.071850 4.135571 2.219841 0.032073 -1.504769 3.688216 -0.601361 0.225182 3.189442 4.321973 -1.971147 -1.542968 -2.575266 -2.024551 1.653503 -1.601436 -0.537212 0.850598 0.987434 -2.884258 -1.139005 0.902838 0.157116 -1.256524 -0.286763 0.229927 3.428169 -3.997616 -0.938485 -2.047818 2.191074 0.836333 -4.892276 -0.439303 -1.997246 1.504166 0.565190 -1.558778 -1.239907 1.111611 1.188711 -1.379735 0.034155 -3.721374 3.610626 0.327483 0.214388 0.371952 0.546516 0.435343 2.554583 1.564873 -2.090498 0.011189 0.795308 -1.348070 0.146763 -2.405764 -1.222424 1.342906 -2.964485 -0.021347 1.019666 -2.349182 -1.330933 -0.967650 0.103406 1.664585 8.774604 -0.639032 3.179773 1.773753 -3.124251 2.227416 0.044029 -0.341118 0.766844 2.259450 0.874269 -2.756575 -2.832349 1.613187 3.748397 2.786688 -2.456459 -0.108274 -0.843203 -0.262912 -0.018547 0.812112 0.728988 -0.287593 -2.524639 -0.950945 1.742142 5.428794 -0.440397 -2.614167 0.998522 1.291931 -0.718962 -2.441647 -0.565037 -0.528626 0.363287 0.602241 -0.590571 2.121589 4.446997 -6.772239 3.676996 -0.101002 -0.265860 2.256782 -0.212798 -1.948934 -4.478448 -0.672782 2.731311 4.622776 -0.009029 -0.174741 0.578077 -3.191117 -0.421134 0.606198 1.273669 -1.254821 1.658235 0.204065 -2.035955 -1.835533 -1.596554 -1.067424 -0.195330 -1.280918 1.655930 1.006455 -5.483045 3.692182 -0.411497 -0.768858 0.039777 -0.305486 2.041965 -3.221160 -3.823156 1.244927 -0.531021 -3.139405 -2.108860 -0.032766 2.405969 -0.194283 0.012675 -1.377035 -3.647317 3.363041 -0.988697 2.963157 1.500647 0.114033 3.338618 2.693479 -1.104904 -2.022172 -2.178094 1.069021 -1.527449 -1.911640 0.632078 -1.115929 2.517884 3.394625 -0.068411 -1.679823 -0.209095 4.101002 -1.675556 -1.604757 2.623125 -0.849512 -1.628276 2.087044 3.309958 -3.792821 -1.180900 -2.721284 -0.116856 -0.508769 -2.421557 1.697899 -0.992453 1.170785 0.845641 0.256286 -1.575005 1.293895 0.959480 -0.495588 0.265647 4.871999 3.691684 -1.629144 1.398743 -2.898701 1.745334 -4.311602 -2.851756 0.135805 0.192775 -1.465224 0.663087 -0.189561 2.587405 0.222578 0.149189 -0.955631 0.711715 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.635914 0.463864 1.281313 -1.462158 1.598193 0.803151 0.621960 -0.379792 -1.207862 -0.889649 -0.090438 -1.247632 -1.502538 2.052717 -0.913442 0.449066 2.826967 0.715392 -0.376096 -0.722316 1.719090 -0.965348 2.683612 2.293182 -2.311495 -0.089599 1.034875 1.310367 0.657217 1.724008 -0.798546 -1.297871 0.923368 -0.778152 0.858821 -1.618381 0.331412 -0.170577 -0.167327 -2.948905 0.163859 -0.161612 -0.420037 -0.168808 -0.244682 1.575813 2.327489 1.661661 -0.921072 0.265226 1.493855 0.538721 -0.136404 0.628223 0.389403 0.260891 1.133152 0.563407 -0.970616 -0.305996 -0.552812 -1.754975 0.211331 1.968153 2.505407 0.141780 0.265884 0.522154 -0.235080 0.488962 0.456662 0.488527 0.751187 0.550087 1.314212 -1.923971 -0.060402 -3.832157 -0.665460 -4.906716 -1.243008 -1.494420 0.913026 -0.641079 0.757922 -0.076682 2.226840 0.361814 0.508450 1.227660 2.731051 -1.790356 -0.771060 -1.580789 -1.098448 0.634437 -1.226038 0.128313 0.919292 -0.147080 -1.562868 -1.543319 0.811336 0.379780 -0.702250 -0.682223 -0.317414 1.898663 -2.080096 -0.822783 -1.866792 0.001061 -0.235571 -3.093815 0.043789 -1.057601 2.067265 0.212480 -0.264556 -1.475933 0.452657 1.815523 -0.661254 -0.861077 -0.557000 2.108963 0.921483 0.114429 0.303616 -0.075653 0.262633 1.805394 2.160797 -0.859695 -0.565026 0.147179 -1.500766 -0.147067 -1.624848 -0.309320 1.503039 -1.644511 0.185635 1.251623 -1.122753 -0.583255 1.541843 -0.606574 1.481378 5.220425 -0.453654 1.372586 0.525053 -2.241049 1.041639 -0.132518 -0.347712 0.682780 1.457097 0.688143 -2.433908 -1.695378 0.935097 1.901794 1.311050 -2.309792 -0.688919 -0.902133 -0.034532 -0.276003 -0.107319 0.694784 -0.576076 -1.247462 -0.496023 0.952754 3.137521 -1.136182 -2.216293 0.801763 0.490957 -0.690794 -2.055872 -0.648578 -0.552538 0.232256 0.279081 -0.307540 1.121586 2.522139 -4.539029 1.823714 -0.461042 -0.670701 1.586730 -0.072012 -0.751829 -2.188624 0.528494 1.896703 1.925821 0.379227 -0.191020 0.204749 -1.860791 -0.036760 0.100837 1.205356 -0.681087 0.886537 0.420819 -1.693018 -1.747205 -0.885235 -0.111533 -0.571336 -0.363916 0.825574 -0.113187 -4.427910 2.441753 -0.512168 -0.621039 0.485853 -0.309114 1.169971 -2.046662 -2.539525 0.918355 -0.264769 -0.949952 -1.392181 0.186804 1.459229 -0.023541 0.302694 -1.208110 -2.699489 1.289880 -0.637092 1.270232 0.804454 0.960973 2.579906 0.331519 -0.823704 -2.117206 -0.485306 0.612659 -0.564980 -1.328853 -0.450454 -0.457063 1.691522 2.464456 -0.214696 -0.150291 -0.319332 2.243547 -2.147444 -0.960212 1.623656 1.346478 -1.080595 0.863950 1.755701 -1.848903 -1.462981 -1.118484 -0.581509 -0.199092 -1.786679 0.727021 -1.248708 0.567313 0.897780 0.283853 -0.808235 0.945648 0.269613 0.285445 -0.222459 2.273447 3.444153 -1.786833 0.217733 -1.599584 1.078187 -2.850929 -2.041919 0.506798 -0.163476 -0.402095 0.497336 0.216767 1.499899 -0.082625 -0.130324 -0.250058 -0.421446 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.650706 1.567372 2.280989 -2.983972 4.924957 2.762123 2.013060 -1.113980 -2.480392 -2.396289 -0.310901 -3.063355 -4.275604 5.316166 -1.999803 2.380266 6.959788 1.239636 -0.500672 -1.177404 4.935131 -2.857504 7.192676 5.071574 -5.752195 -0.207895 2.593519 2.558941 0.468686 4.657625 -2.159103 -3.948811 3.297978 -3.209615 1.802986 -3.619760 0.953896 -0.656002 0.224035 -6.872405 0.186864 -0.273736 -1.586412 -0.420407 -1.304945 2.907742 6.241337 4.392200 -2.396417 0.853138 3.285783 0.573049 -0.342453 2.136320 0.980405 0.967811 1.374731 1.187555 -3.214499 -1.159111 -1.890106 -4.963877 0.432809 4.596973 6.263118 0.032022 0.886518 2.708407 -1.918988 1.218749 0.934463 1.374598 2.237044 0.877559 3.999904 -5.119640 -1.278690 -9.046245 -2.823949 -12.268106 -3.406177 -4.209354 1.272106 -1.517667 3.332661 -0.319563 5.695496 0.974605 1.284478 3.019738 7.377012 -5.615081 -2.063487 -4.625995 -2.071562 0.930752 -3.420997 0.111889 2.940394 -1.659160 -4.270607 -4.354659 2.267624 1.402499 -1.456186 -3.583413 -1.075763 5.028590 -5.261597 -3.202089 -5.322424 -0.703434 -1.695606 -8.170906 0.565369 -1.292551 4.684111 1.049213 -0.111125 -4.653323 1.456412 5.344844 -1.426822 -3.829904 0.438283 5.497886 2.647063 0.674538 1.609162 0.194763 0.564965 5.921240 6.895107 -1.301965 -1.785182 -0.168364 -3.423354 0.249273 -3.250553 -1.028805 3.124998 -4.857885 0.180574 4.070173 -2.607780 -0.911731 4.083277 -1.600968 4.030087 12.455579 -1.237641 3.444725 1.139346 -6.397019 3.034949 -1.164282 -1.134284 1.464235 3.795217 1.688809 -6.475713 -4.401456 2.914710 4.514195 3.286061 -6.357697 -2.170002 -2.690032 0.756700 -1.071633 -0.982846 2.582771 -0.556174 -3.602503 -0.867302 2.488219 8.685601 -4.259521 -5.305028 3.382827 1.086933 -1.591783 -6.257775 -2.466450 -2.488671 0.011412 0.829577 -0.892422 2.003485 6.506519 -9.778941 4.438499 -1.900850 -2.097265 4.097099 0.104790 -1.864912 -5.529529 1.163674 5.270310 4.414616 1.117780 0.105923 -0.186912 -4.546434 0.376855 0.124570 2.918528 -1.055896 2.201782 -0.022251 -4.644537 -4.950241 -1.871032 -0.394363 -2.054874 -0.314482 1.934037 0.973964 -10.732516 6.364314 -1.275580 -1.932213 1.945550 -0.055278 4.068971 -4.732752 -7.104567 3.067623 -1.447310 -2.356395 -3.121952 0.952021 3.289272 0.722880 -0.335716 -2.476883 -7.231763 3.333208 -0.850085 3.195386 2.030909 3.169085 7.141443 0.560378 -3.464232 -5.562193 -2.116496 1.143256 -1.714361 -3.664344 -2.556135 -1.007224 4.997433 6.238059 0.114847 -0.396839 -1.420209 5.549174 -6.654250 -2.026226 5.281559 4.272763 -3.265422 1.541570 5.276570 -4.129249 -4.083779 -2.351917 -0.479049 -0.954632 -5.042350 0.954578 -3.524037 1.093328 2.366966 0.662233 -1.784501 2.010925 0.825883 1.317156 -1.737520 5.741298 8.365686 -5.522587 -0.434453 -3.729667 2.464038 -7.420249 -5.674196 1.987493 0.540649 -0.832928 1.310698 1.615921 3.581709 -0.550836 -0.914796 -0.533250 -2.426021 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/detect-cycle-in-a-graph.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.484458 -0.042843 0.201250 -0.532789 0.356293 0.235937 0.212799 -0.214419 -0.731911 -0.159575 0.449406 0.073791 -0.229549 1.141865 -0.467169 0.507174 1.095102 1.055599 -0.338870 -0.145844 1.164399 -0.757806 0.820703 0.787534 -0.823792 0.096906 0.356748 0.253286 0.107312 0.826208 -0.245487 -0.402117 0.658854 -0.814884 0.256826 -1.437386 0.132462 0.932593 0.236140 -1.405754 0.207143 -0.198522 -0.097353 -0.309381 -0.246065 0.304951 0.153241 0.751620 -0.267330 0.084834 0.741979 0.143151 0.268315 0.199566 0.382092 0.645532 -0.094958 0.231123 0.250879 -0.158469 -0.306539 -0.410152 0.436733 0.677924 1.087914 -0.418587 0.086541 0.188516 -0.169180 0.093282 0.232415 -0.133424 0.003071 -0.299116 -0.171740 -1.743282 -0.462633 -1.975812 -0.120787 -1.860140 -0.284513 -0.163514 0.168955 -0.126924 0.305113 0.212903 0.749873 -0.174756 0.114044 0.679204 1.121389 -0.564824 -0.137528 -0.428813 -0.562565 0.422532 -0.276407 -0.074938 0.203812 -0.431379 -0.559177 -1.054573 0.134343 0.352880 -0.204828 -0.819762 0.092304 0.952255 -0.695742 -0.722501 -0.301033 0.431622 -0.252767 -1.230703 0.494904 -0.699007 0.764740 0.288440 -0.373802 -0.812962 0.285537 0.989973 -0.004197 -0.533981 -0.051498 0.597532 -0.175290 0.414083 -0.135003 -0.637581 -0.047748 0.705382 0.734159 -0.744243 -0.009945 0.028504 -0.619781 0.391874 -0.854057 -0.417259 0.481627 -0.741492 -0.364387 0.367924 -0.516928 -0.079501 1.235688 0.100308 0.031314 2.455467 -0.102714 0.775451 0.342180 -0.819608 0.407215 0.057420 -0.159290 0.271898 0.551091 -0.330301 -1.619633 -0.864591 0.005856 0.901393 0.765386 -0.921385 -0.805630 -0.664872 -0.142655 0.241100 0.119750 0.065525 -0.283384 -0.685959 -0.287420 0.212319 1.208704 -0.484569 0.049544 -0.225544 0.458346 -0.567182 -0.936101 -0.305667 -0.830967 0.196888 0.274130 -0.342188 0.449706 0.675618 -1.952008 0.896724 -0.854849 -0.196742 0.135146 0.248963 -0.340772 -1.267505 0.077964 0.314359 1.030603 -0.296049 0.633176 0.796182 -0.758090 -0.055983 -0.075520 -0.104422 0.040618 0.340157 0.328410 -0.637606 -0.525651 0.615407 -0.177473 -0.767183 0.068756 0.867392 0.201004 -1.461906 0.660235 -0.169135 0.126741 0.421790 0.339182 0.738886 -0.798958 -1.158580 0.881684 0.694181 0.675750 -0.431988 0.041235 1.317393 -0.188926 -0.235003 -0.072356 -1.084238 0.052787 -0.091928 0.333533 0.229105 0.123981 0.858970 -0.228012 -0.137844 -0.763698 -0.071378 -0.122393 -0.430058 -0.488089 -0.825562 -0.142879 0.941764 0.467021 0.537768 -0.457388 0.273054 1.223565 -0.579022 0.079433 0.092979 0.759176 -0.045645 -0.052909 0.856185 -0.846654 -0.415019 -0.494550 0.412408 -0.185683 -0.574078 0.894104 -0.074813 0.685929 -0.285944 0.349836 -0.154560 0.467867 0.738089 0.360192 0.204938 0.580720 1.102927 -0.138248 -0.338557 -0.309012 0.226814 -0.723375 -0.258627 -0.136316 0.478342 -0.561835 0.675553 0.074025 1.073011 0.065336 0.597601 0.206209 0.216168 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__dist(Point, Point) = -0.873335 -0.299576 0.282434 -2.462111 2.271992 2.916197 0.962646 -2.345707 -2.237897 0.815164 1.397760 -3.413993 -0.657394 2.838900 -1.299911 2.189287 3.133227 0.134403 -1.774577 -0.175092 1.677464 1.858038 3.699595 3.086802 -2.089347 0.116601 -0.638658 0.016043 0.053862 0.778169 -1.164063 -1.989973 1.475068 -1.313695 -0.802468 -0.231608 -0.245595 -0.074149 2.790330 -2.806900 0.608494 0.188909 0.194037 -0.697831 -0.291225 0.208491 2.331059 2.087620 0.628469 0.309805 1.572947 0.740910 0.147767 0.533316 1.533969 0.294270 1.839700 -0.206935 -0.694172 -1.496364 -0.579450 1.511913 -0.563961 2.572814 2.622808 0.763727 -0.596902 0.679167 0.970129 0.326140 0.892402 0.786525 -0.030325 1.510269 -0.027521 -1.464673 0.557194 -2.309436 -0.419254 -1.908040 -1.482816 0.595570 0.962630 0.154731 1.556310 -0.948202 2.616469 0.212946 -1.102232 0.534728 3.335042 -2.569175 -1.064553 -0.509530 -1.162922 -0.085321 -0.772374 1.354281 0.762468 -0.122943 -2.426069 -1.028395 0.140309 0.879741 -0.918982 -0.431823 1.048689 1.610803 -0.614507 -1.016567 0.740262 2.032069 -0.413530 -3.913851 -1.260937 -1.536061 0.049454 -0.215704 -1.561997 -2.600902 0.637828 1.025219 -1.502716 -1.091399 -1.002188 1.501469 1.981474 1.311881 -0.266927 0.243499 1.314416 3.874330 -0.768593 -1.975435 0.878639 -1.021443 0.210953 1.525100 -1.072212 -0.506133 -0.357760 -1.921906 1.078278 1.951220 -1.321834 0.627185 0.175394 1.153297 -0.047537 6.931241 -0.886565 3.263253 1.619799 -2.757235 0.669266 -1.242266 -0.031769 -0.132980 0.730721 0.232627 -3.159238 -2.440569 2.315171 2.914337 1.675249 -2.678419 1.040148 0.168853 -0.689022 -1.160818 0.492436 0.431084 -0.133412 -1.423457 -0.832559 2.134121 4.877391 -1.118645 -1.511533 1.118751 1.058556 0.797130 -0.223548 -1.253693 -1.173257 0.888814 1.325230 0.769217 2.096409 2.968183 -3.833905 2.197689 -0.002170 -0.886277 2.973172 0.868376 -2.549780 0.110299 -0.557192 1.631467 1.906273 -0.292654 -0.309582 0.762848 -2.192657 -0.318904 0.339345 -0.199691 -0.836705 0.799330 1.296396 -1.799344 -1.006509 -0.283372 -0.424753 -0.785650 -1.292066 1.991111 0.112252 -4.072138 2.603309 1.357384 -0.755706 0.021027 -1.679110 1.910784 -1.800860 -1.905199 1.199789 -0.667065 0.046553 -0.071703 0.187032 1.026899 0.282043 3.282526 -2.602197 -1.986877 1.885211 -0.295074 2.571903 1.067428 0.231260 0.223766 -1.315984 -0.702035 -1.456935 -2.795669 1.420414 1.305592 -2.609006 1.268124 -0.980822 2.372038 1.066099 -0.057441 -2.289509 -1.116044 1.493416 -1.966875 0.585573 1.233427 0.758186 -2.811142 -0.516060 1.749038 -1.406108 0.292288 -0.814002 -1.232867 -2.291039 -1.934690 1.388212 0.895086 1.512004 -0.479419 0.042090 -0.023258 0.917791 0.290915 0.161866 1.515142 2.348668 1.124206 -0.141045 -0.283574 -2.755717 1.841244 -2.599855 -3.225457 2.068280 -1.415272 -2.612513 -0.415261 -0.464831 2.540508 0.096055 -0.166965 -0.907880 1.106617 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.131787 -0.002189 0.293578 -0.100990 0.014780 -0.029766 0.112938 -0.087557 -0.113431 -0.006670 0.321023 -0.172466 -0.217585 0.467657 -0.357906 0.027088 0.429611 0.428558 -0.181973 -0.130377 0.374653 -0.244823 0.570794 0.512171 -0.449070 -0.008615 0.157474 0.273087 0.194488 0.145663 0.003938 -0.037954 0.185771 -0.211744 0.160010 -0.522437 0.127503 0.285119 0.070527 -0.575637 0.047520 -0.137421 0.348419 -0.056300 0.031652 0.262802 0.090157 0.401422 -0.000329 0.083203 0.376541 0.047469 0.248901 0.100489 0.162542 -0.118726 0.191256 -0.116756 0.030759 0.018288 -0.055004 -0.349768 0.151882 0.427418 0.408424 0.029699 0.066550 -0.134869 0.214906 0.053411 0.175621 0.002433 -0.066666 0.171656 -0.130652 -0.482614 -0.121225 -0.883462 -0.108069 -0.829410 -0.196844 -0.073091 0.286387 0.030439 0.058806 0.241297 0.387757 0.302089 -0.025960 0.229269 0.560904 -0.199702 -0.228204 0.003545 -0.062543 0.310931 -0.215951 0.246151 0.166019 0.251753 -0.257438 -0.306955 -0.123524 0.076524 -0.133611 0.117896 -0.038023 0.354856 -0.389236 -0.216644 -0.101325 0.182393 0.090914 -0.653141 0.212554 -0.348497 0.511549 0.087188 -0.119713 -0.127105 0.121115 0.310143 0.113277 0.038223 -0.354234 0.016017 -0.190943 0.262386 -0.077538 -0.178766 0.048909 0.324026 0.145313 -0.368184 0.003078 -0.053063 -0.270281 0.273652 -0.402575 -0.034471 0.274826 -0.324140 0.246976 -0.019516 -0.217660 -0.389626 0.249853 0.187555 0.078986 0.849034 0.040751 0.390278 0.130670 -0.307985 0.052690 -0.119146 0.035075 0.199050 0.141194 -0.162963 -0.474030 -0.489785 -0.006194 0.449664 0.290622 -0.384070 -0.064657 -0.132985 -0.010184 -0.096828 0.165847 0.090891 -0.232851 -0.273265 -0.133346 0.237227 0.292580 0.092093 -0.222853 -0.151454 0.194146 -0.018246 -0.180605 -0.064861 0.130837 0.182228 0.186663 -0.019080 0.133994 0.197607 -0.798314 0.434463 -0.095889 0.266591 0.224582 -0.128278 -0.269343 -0.513766 0.179931 0.106086 0.182472 -0.143567 -0.038952 0.439848 -0.413853 -0.023155 0.020552 0.005130 0.003476 0.126642 0.296224 -0.192672 -0.378014 0.089266 0.065040 -0.180474 -0.023996 0.464977 0.033142 -0.657688 0.275752 0.012537 -0.155751 0.037679 -0.008383 0.190126 -0.484986 -0.472023 0.276256 0.094098 -0.003451 -0.478913 0.011939 0.443122 -0.372848 0.116160 0.044518 -0.091130 0.112971 -0.039800 0.037134 0.125648 0.139788 0.150309 -0.039923 -0.020243 -0.235561 0.122144 0.040128 -0.222898 -0.245849 0.055121 -0.052674 0.353855 0.239319 0.018833 -0.248591 0.109337 0.537721 -0.102478 -0.245567 0.012385 0.324174 0.136454 0.323836 0.280035 -0.442671 -0.097150 -0.280275 -0.059976 -0.072132 -0.215078 0.381226 -0.065562 0.278376 -0.082245 0.047366 -0.112449 0.332947 0.151663 0.142326 0.200263 0.183450 0.523523 0.083791 0.067903 -0.237403 -0.057078 -0.353049 -0.173061 -0.014380 0.118354 -0.245322 0.373717 -0.021924 0.463739 0.234972 -0.020799 -0.100206 0.232768 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__cost(Point*, int, int, int) = -1.515326 0.225882 1.005726 -3.070127 3.923428 4.261419 2.184579 -1.452191 -3.998397 -1.692454 2.389633 -5.607652 -4.345514 6.081951 -2.333316 2.283322 6.847932 1.667814 -2.286306 -0.637781 3.185253 0.931139 7.556003 6.031250 -4.700648 0.412056 -0.572148 0.885436 -0.495419 2.731514 -0.176450 -5.264636 4.242722 -2.007533 -0.521080 -1.690446 -0.113668 -0.324464 1.407695 -6.784845 0.568826 1.826355 -1.346784 -1.284809 -0.507809 2.059179 5.130005 4.456856 0.530909 1.500358 2.528239 0.453291 0.766184 1.454390 2.304467 -0.718610 0.601045 -1.850393 -2.980445 -1.698393 -1.608029 -2.430681 -2.063178 4.656168 5.758764 0.257109 -0.667318 0.810983 -1.039330 1.452132 1.590351 1.156768 2.329016 1.673904 1.829639 -1.196125 -1.667114 -4.882667 -1.952087 -9.374518 -3.702179 -0.957053 4.795775 1.813737 1.692301 -2.229786 5.476034 0.419911 -0.863193 4.107973 7.982158 -4.327265 -2.994122 -1.957783 -1.040100 1.632145 -3.052053 1.872255 1.968205 -0.920054 -5.179516 -2.524737 0.240783 0.867998 -1.398183 -1.879906 0.537044 4.611675 -4.801235 -1.390068 -2.718961 2.322657 0.706499 -8.369160 -2.483286 -0.377642 2.669621 2.035089 -2.799166 -2.914790 2.160772 1.949052 -1.356953 -2.286417 -0.566135 3.835955 1.250659 2.727509 0.969797 1.765395 2.520806 6.414859 2.442317 -2.388236 0.780112 -1.423646 -0.491346 3.078481 -1.653678 -1.212279 -0.255698 -3.894292 2.022116 2.871247 -3.304061 -1.382393 -1.682351 1.133479 1.160807 11.352690 -1.365652 5.703265 2.690833 -5.561310 1.541078 -2.867053 -1.037945 -0.049934 2.625944 1.110423 -3.840915 -4.386333 3.885316 6.221073 3.674238 -5.526871 2.090499 -0.470587 0.683020 -2.448462 1.612414 2.081837 1.248180 -3.497863 -1.248974 4.601754 8.351258 -3.255745 -5.092509 1.940863 1.748233 2.336917 -1.847215 -1.607966 -0.140005 1.065496 3.511750 0.363650 2.365230 5.962964 -6.996461 4.944280 -0.378084 -1.009098 4.308475 1.476560 -4.181747 -2.173996 -0.468207 3.663801 4.747559 1.516488 -0.336657 0.966478 -4.860609 -0.763177 1.087229 0.714238 -0.558481 2.501422 0.830874 -3.310638 -3.774835 -1.991939 -0.434956 -0.744177 -1.968078 3.905998 1.830968 -9.732029 5.622125 1.022384 -2.449056 -0.898216 -1.172637 4.601915 -4.709653 -6.467293 2.790103 -2.708654 -4.299656 -1.704425 -0.115452 2.304408 1.781834 2.290767 -2.254033 -4.108780 5.456594 0.665903 4.833982 2.190269 1.257147 5.290611 0.108466 -3.027256 -2.760855 -5.235819 3.783120 -1.588224 -4.185680 0.763044 -1.711326 4.698012 3.700871 0.389504 -4.031533 -2.601957 4.485816 -5.232135 -1.042551 3.844927 3.081328 -2.782139 1.891655 4.939579 -3.961409 -0.915555 -2.913460 -1.001528 -3.293823 -4.391158 1.912091 -0.983409 2.479065 0.577850 0.297584 -1.128767 1.522984 0.701337 0.495803 0.805743 4.803988 5.852175 -3.556584 0.854662 -4.878178 3.247674 -6.016861 -6.307118 3.016142 -0.744089 -2.586143 0.196999 -0.121002 3.595594 0.630061 -2.752381 -2.784672 1.892981 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -4.464540 -4.331910 -4.007465 -7.960719 7.116787 10.054902 4.087753 -6.598716 -10.602639 -0.116249 5.941012 -11.594721 -1.949030 12.347005 -3.908559 11.438872 16.228983 2.492744 -6.687809 -0.187537 12.196914 -1.317896 15.750936 13.837443 -8.316134 -0.686902 -2.019721 3.906000 0.902002 -0.169742 1.825058 -4.056200 7.205062 -13.476495 -5.209575 -6.919168 1.901569 3.690746 10.399676 -15.645543 2.496563 -1.624236 -0.067707 -3.134202 -4.783981 0.661101 6.681086 9.913770 0.003222 3.185805 7.956116 -0.150717 -0.633844 3.249211 1.854025 1.682249 -1.215633 0.522402 -3.752489 -6.146431 -1.027664 -1.798690 1.382976 9.102412 14.021064 1.661388 -0.565237 8.572640 1.126262 2.572360 5.956126 1.454819 -3.611442 0.496049 3.399282 -14.994938 -3.400748 -16.381890 -3.787888 -16.580889 -5.995588 1.629200 7.067453 -0.791744 7.505792 2.376644 9.484381 -0.957702 -3.984169 11.852362 13.227101 -10.470695 -5.427993 -5.727079 -4.675829 3.336451 -5.456761 3.120556 7.821303 2.011030 -9.432224 -5.365231 3.607092 5.452746 -3.268369 -11.012374 3.151305 8.392984 -6.720518 -8.840239 1.493626 8.909756 -3.283120 -17.624660 -3.621280 -6.065817 6.216449 1.273027 -3.877961 -10.633551 1.431250 5.298375 -1.846821 -6.710946 2.249612 6.163285 4.932790 6.078987 1.392298 2.768092 3.208947 18.462862 2.619889 -6.064174 1.867324 -1.970183 -2.154086 7.067012 -5.949298 -5.704709 0.003029 -11.568476 4.725062 9.373177 -5.843817 -3.407395 6.410489 5.662411 1.338762 34.786736 1.586951 13.707242 9.832298 -10.832793 4.139554 -7.123052 0.683275 2.894520 3.685037 -2.061695 -17.799132 -10.274295 6.284190 10.830332 8.039472 -13.887778 -3.643350 -1.125532 0.054251 -1.064021 -0.775930 3.958872 1.151957 -6.837248 -1.817900 11.233245 22.449843 -5.828306 0.887536 6.765322 4.136403 -3.588424 -15.699752 -5.868458 -7.425970 1.867776 5.338132 2.025518 4.746492 12.553398 -13.366997 8.696007 -1.997956 1.885389 8.623553 5.769016 -11.476293 -12.467466 -3.264883 6.274906 12.122113 -3.434899 0.543344 4.739076 -8.982577 -0.906230 3.506122 -1.969424 -0.495514 4.151030 0.258565 -4.228734 -6.261020 5.754905 -3.156577 -2.184478 0.472458 8.799131 0.776703 -12.075142 9.605971 0.149445 -5.279650 2.409804 -3.610317 12.757216 -8.201806 -10.790732 8.867433 -1.248560 -1.748810 -4.821262 2.372966 7.030043 4.816025 4.945855 -5.333032 -10.684493 6.906843 -3.067868 8.247517 4.036528 -0.717391 6.034586 -6.628955 -4.985316 -11.189100 -8.963492 -1.441084 0.978325 -10.854804 -3.872156 -1.906003 11.213553 5.710307 2.092155 -10.942171 0.956771 11.924945 -10.640089 -2.746403 6.880671 7.214942 -11.690757 1.588237 9.052597 -12.655548 1.721406 -3.409430 -0.971008 -4.760791 -9.677429 6.004009 3.122289 7.163020 -1.963527 2.371897 3.014069 4.643393 4.472306 5.168645 1.967074 13.791664 9.256986 -2.699289 -5.872573 -10.582229 4.425718 -12.360769 -13.617911 7.036558 4.143483 -7.743219 1.859648 3.455892 11.663148 1.719158 -3.387047 -3.319807 1.774602 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -1.031271 -0.876496 0.609932 -2.787473 2.083235 1.844664 1.141493 -1.171476 -3.393867 -0.299793 1.268353 -3.203861 -0.816128 3.760576 -1.078323 2.272201 5.019336 1.366745 -1.865795 -0.474560 3.083040 -1.321825 4.189256 4.140905 -2.630116 0.141775 -0.430631 1.616758 0.493457 1.514718 -0.647229 -1.140769 1.353051 -2.741383 -0.303306 -2.554005 0.187218 0.935894 1.766747 -5.127695 0.856074 0.246480 0.586044 -0.955420 -0.775952 1.299519 2.446838 2.695935 -0.229152 0.698664 2.224368 -0.235864 0.192738 0.817709 1.326181 0.947177 1.577938 0.854067 -1.343933 -1.002965 -0.564613 -1.189255 0.659355 2.729829 3.938614 0.388765 -0.280648 1.219842 0.661704 0.690233 1.660780 0.367358 -0.613296 0.092333 0.950126 -3.892310 0.100225 -5.129304 -0.585007 -5.982115 -1.980212 0.003530 2.665567 -0.353901 1.434168 -0.001444 2.976264 -0.571576 -0.595819 2.417306 3.942967 -2.652142 -1.591596 -1.669138 -1.763672 1.029778 -1.310895 0.102896 2.451632 0.342576 -2.716847 -1.285833 1.653483 1.252318 -1.022437 -1.308578 0.779510 2.862109 -2.344982 -2.074630 -0.382619 2.198305 -0.387866 -4.801830 -0.187726 -2.085257 1.659121 0.404560 -1.536928 -2.664099 0.793584 1.692695 -1.183167 -1.064362 -1.122753 2.867985 0.782113 1.344076 0.220604 0.216308 0.748555 3.715689 1.332295 -2.134237 0.569174 -0.083551 -1.390558 1.346787 -2.069477 -1.713074 0.674766 -2.947273 0.513846 1.709068 -1.954354 -0.343885 1.720776 1.542684 0.655362 9.822420 -0.174137 3.724837 2.036491 -3.011188 2.192034 -0.676898 0.016431 0.679159 1.591368 -0.209403 -5.103314 -2.949519 1.597712 3.332105 2.466391 -3.985903 -1.123004 -0.818407 -0.396015 0.347584 0.177474 0.707210 0.037527 -2.140071 -0.842294 2.133118 6.459463 -1.330623 -1.785641 1.265135 0.437478 -1.151427 -4.398490 -1.224003 -1.672369 0.750467 0.224800 -0.019856 1.948881 3.741484 -5.956961 3.181299 -1.013589 -0.472579 3.515826 0.704951 -2.558343 -4.454391 -1.021384 1.923227 4.165277 -0.404464 -0.765616 1.377462 -2.723899 -0.371911 0.436374 0.073034 -0.606128 1.329149 0.341472 -1.771576 -1.609662 0.017963 -0.672549 -0.567823 -0.422819 2.263890 0.011644 -4.633718 2.990031 0.202948 -0.973213 0.644161 -0.501066 2.191601 -2.486017 -3.230180 1.810661 0.079656 -0.856607 -1.975390 0.222983 2.231723 0.460601 0.906744 -1.698654 -3.600374 2.237779 -1.482167 2.728347 1.313630 -0.220053 2.220574 0.771511 -1.038775 -2.910131 -1.652238 -0.336669 -0.442136 -2.504045 -0.725766 -0.976579 2.954618 2.000225 0.536943 -1.798272 -0.270633 3.798114 -2.499217 -1.056621 2.045538 0.619287 -2.586162 0.811900 2.838924 -3.661648 -0.187277 -1.501192 -1.198173 -1.127018 -2.271048 1.908373 0.307990 1.732847 -0.327971 0.464555 0.026585 1.221486 0.905631 0.655081 0.593262 4.260237 3.579869 -1.084614 -0.477333 -2.794456 1.644740 -3.565675 -3.129921 1.196416 0.946322 -2.449604 0.659739 1.073307 3.135360 0.367100 -0.759383 -0.755219 0.674608 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__merge(Node*, Node*) = -2.334094 0.944963 2.615281 -5.490471 4.460121 3.948954 1.409261 -2.372624 -3.786043 -1.379129 -0.286300 -3.771244 -2.379622 6.671345 -2.343509 3.217914 8.634256 1.650728 -1.797524 -1.081406 6.220668 -2.043209 7.252301 6.440294 -6.150735 -0.689959 4.094265 3.225588 1.431216 4.303454 -2.683766 -4.295033 1.788596 -4.255506 1.341208 -4.844527 1.119552 0.153078 2.528817 -8.656846 1.115528 -1.136236 -1.072763 -1.624678 -1.751710 0.273765 6.408872 5.091001 -2.827360 -0.411758 4.668370 2.437372 -1.711352 1.392294 1.427238 2.293120 2.530462 2.490117 -1.883542 -1.745935 -0.973575 -2.025928 1.676543 6.073214 6.898528 0.862663 0.675328 2.947773 0.261993 0.888945 0.897913 0.965163 0.192555 1.827716 2.962970 -8.137967 -0.424614 -12.451556 -1.255533 -11.377651 -3.284901 -2.859662 0.633220 -2.137426 3.523112 0.446010 6.193283 -0.406600 1.196671 3.994389 8.026172 -5.722120 -2.155147 -5.458112 -4.601305 1.928975 -3.094046 0.171619 2.217165 -1.254206 -4.613740 -5.758808 2.054149 2.821452 -2.156799 -3.586680 0.415601 5.272247 -4.359502 -4.248261 -3.292513 1.340321 -2.343242 -9.257987 -1.104798 -4.047531 4.526468 -0.102406 -1.449573 -7.360287 0.875875 6.020577 -2.261747 -4.066303 0.228367 5.108763 3.710937 0.582219 0.593810 -1.567354 1.386591 7.206018 5.414515 -3.415223 -0.742803 0.235563 -4.141318 -0.893469 -5.096843 -1.736928 2.933212 -5.165407 0.069511 5.642806 -3.514185 -0.773874 6.679128 -1.480255 3.944118 19.654521 -1.233952 4.422479 1.986998 -7.296975 3.184189 -0.562126 -1.817340 1.259203 3.640135 2.217462 -9.699939 -5.158901 3.052652 5.824922 4.450875 -5.906799 -3.540406 -2.853681 -1.232002 -0.239842 -0.685217 1.445593 -2.136957 -4.165151 -1.870914 3.994730 10.232589 -3.431206 -5.718156 2.905390 3.277931 -2.832421 -6.690405 -2.252579 -5.133759 0.965736 1.199003 -1.268155 4.489047 7.696404 -13.386572 5.226831 -1.395749 -2.389278 4.509344 0.566333 -3.276222 -6.242575 1.403812 5.995905 6.029261 -0.528422 1.009354 0.549922 -5.286794 -0.415219 0.542443 2.619983 -2.186557 2.413167 1.043026 -5.510921 -4.657357 0.220005 -1.537045 -3.431533 -0.806200 2.518644 -0.633995 -10.935974 7.860253 -0.411824 -0.727895 2.664164 -2.092727 4.401951 -6.275417 -7.447310 3.709521 0.897853 0.685259 -1.819998 0.580625 5.231898 0.876578 1.965415 -3.960578 -8.446642 1.975019 -1.394907 4.314886 2.174335 2.262385 5.406769 -1.216385 -1.297871 -6.700808 -2.209457 0.876596 0.848548 -5.159586 -4.333029 -1.402241 5.995695 6.268349 -1.049342 -1.810044 -1.344667 5.846727 -6.437550 -1.007887 3.909219 3.325613 -5.430782 -0.511767 4.853568 -5.395362 -3.211100 -2.869016 -0.348652 -1.394304 -5.719651 1.860514 -2.051364 1.980163 2.192725 0.098270 -1.145980 2.565161 2.050985 1.577026 0.443805 5.677235 7.286325 -3.949618 -1.174522 -5.313693 2.536473 -8.516356 -6.956489 2.341041 -0.747997 -2.520012 0.833447 0.788572 5.069349 -0.956363 2.068998 0.460685 -1.781013 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -2.093197 1.145842 1.953784 -4.243404 3.655080 2.831839 1.261373 -1.623076 -2.886958 -2.058014 -0.370377 -3.709423 -2.995908 5.742668 -1.977595 2.203265 7.410590 1.368507 -1.248710 -0.946455 5.040022 -1.891986 6.363075 5.448205 -5.229886 -0.689059 3.516433 2.790755 1.044943 3.386982 -1.319750 -4.316252 1.817308 -2.910711 1.511146 -3.864584 1.069619 -0.027846 1.229129 -7.377603 0.808051 -0.511620 -0.650546 -1.370690 -1.540524 0.801623 5.916858 4.429632 -2.501971 -0.526847 3.830708 2.151229 -1.334982 1.325950 0.898696 0.948714 1.449900 1.279248 -1.999060 -1.440464 -0.921294 -2.479859 0.901052 5.199230 6.065508 0.717156 0.684434 2.510114 -0.277606 1.195019 0.514132 0.855936 0.922174 1.571382 2.749832 -6.172510 -0.912607 -10.786554 -1.268877 -11.224106 -2.922080 -2.782857 1.105290 -1.147403 2.418077 0.146193 5.378234 0.171541 1.187477 3.997749 7.464112 -4.443072 -1.956388 -4.826023 -3.588983 2.011738 -2.885751 0.367408 2.177597 -0.737053 -4.081159 -4.713037 1.397427 1.861587 -1.781325 -3.250603 0.157231 4.488391 -4.182018 -2.912501 -3.407863 0.719740 -1.274648 -8.273136 -0.770776 -2.989170 3.693356 0.223770 -1.128549 -5.605298 0.827224 4.744456 -1.732185 -3.098957 -0.428906 4.455571 2.733019 0.460682 0.783178 -0.698668 1.314941 5.966112 4.745121 -2.646028 -0.837085 0.049609 -3.490879 -0.771746 -4.231353 -1.491977 2.942374 -4.440945 0.390075 4.570035 -3.048607 -1.587646 4.578329 -1.860730 3.619429 15.763014 -1.050840 3.632479 1.704742 -6.293991 2.603504 -0.795333 -1.808334 0.873755 3.311150 2.168657 -6.811559 -4.400627 2.809668 5.065924 3.818599 -4.787712 -2.559619 -2.210985 -0.682750 -0.709640 -0.424314 1.552604 -1.667223 -3.538586 -1.531977 3.831695 8.211608 -2.800703 -4.545476 2.538142 3.287694 -1.793865 -5.450271 -1.766608 -3.833984 0.630022 1.128931 -1.023944 3.501331 6.679982 -11.256598 4.518580 -0.546937 -1.456421 3.335506 0.352873 -2.816649 -6.159812 1.499092 5.655550 5.014740 -0.402545 1.020638 -0.004078 -4.576064 -0.381702 0.585826 2.474635 -1.719418 2.067042 0.312725 -4.472498 -4.359901 -0.177888 -1.352804 -2.588770 -0.711383 2.113627 0.481230 -9.485941 7.182458 -0.845708 -0.779647 1.473367 -1.709480 3.890377 -5.511358 -6.720099 2.901093 -0.105511 -0.626599 -1.847115 0.559354 4.255269 0.552995 1.353144 -2.742122 -6.851937 2.406005 -1.000606 3.600675 1.801477 2.354606 5.264288 -0.725628 -1.509871 -5.544790 -2.054330 0.945342 -0.021075 -4.363114 -2.982477 -0.989938 4.905942 5.653136 -1.068796 -1.832609 -0.867294 4.918815 -5.467343 -1.456148 3.627205 2.664224 -4.385386 0.342299 4.328018 -4.685587 -3.001547 -2.987073 0.029900 -1.165913 -5.411969 1.120735 -2.189792 1.335945 2.305452 -0.180943 -1.266297 2.257676 1.850921 1.192758 0.104849 4.914848 6.395092 -3.829431 -0.651873 -4.634252 2.005182 -7.647906 -6.194289 2.060854 -0.417099 -1.525720 0.617993 0.516628 3.882370 -0.938650 1.469277 -0.152415 -1.307626 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__split(Node*) = -0.839281 0.637960 0.761357 -2.024595 2.027941 2.642342 0.535605 -0.872681 -1.490610 -0.589714 -0.225918 -2.107539 -0.911275 2.597791 -0.790386 1.370107 3.636800 0.470615 -0.625641 -0.125842 2.216961 -0.910102 3.296132 2.594295 -2.148976 -0.102922 2.019102 1.042991 -0.218230 2.376899 -1.186892 -3.228202 0.667487 -1.494546 0.359120 -1.878659 0.160111 -0.042758 1.147205 -3.627318 0.448859 -0.591372 -0.876768 -0.748549 -0.696262 -0.364312 3.774696 1.736394 -0.835646 -0.163416 1.471728 1.185096 -0.699761 0.472348 0.834202 1.157693 1.529379 0.865753 -0.893503 -0.719000 -0.564985 -0.279769 0.389637 2.171365 2.595552 0.337426 0.101697 1.097928 -0.213648 0.258378 0.162535 0.386857 0.109686 0.766407 0.939975 -3.232966 -0.343497 -5.733729 -0.415374 -4.477708 -1.329533 -0.964895 0.089670 -0.438061 1.426065 -0.485308 2.476527 -0.618590 0.493430 1.801501 3.917278 -2.231378 -0.778366 -2.090453 -1.780497 0.413921 -0.887408 -0.167933 0.848262 -0.807509 -1.858072 -2.922841 1.093642 1.089378 -0.748815 -2.093735 0.262070 1.941454 -1.732230 -1.654386 -1.227970 0.720289 -0.920821 -4.048237 -0.876485 -1.429847 1.173186 0.169073 -0.836593 -3.802834 0.580119 2.939189 -1.026730 -1.656628 0.706080 2.257694 1.389706 0.262289 0.354881 -0.594312 0.751245 3.668081 2.567727 -1.233547 -0.074926 -0.014037 -1.362455 -0.368095 -1.815581 -0.701603 0.143803 -1.954729 0.111811 2.960204 -1.380500 -0.021241 2.230683 -0.686695 1.330982 9.707200 -0.814703 1.770709 0.515169 -3.646709 1.613787 -0.344964 -0.986318 -0.024946 1.340830 1.129629 -4.642813 -1.936354 1.509316 2.259598 1.703408 -2.872353 -1.001829 -1.030142 -0.480144 0.018171 -0.107085 0.490419 -0.474818 -1.729297 -0.768606 1.836879 5.760023 -1.312069 -2.569752 1.338637 1.366494 -1.009306 -2.753092 -0.866678 -2.375170 0.298334 0.793837 -0.629442 1.687577 3.016825 -5.833382 2.062338 -0.697160 -1.256341 2.017441 0.314938 -1.127083 -2.673552 0.217037 3.136808 2.783753 -0.207833 0.671296 -0.200214 -1.852892 -0.177637 0.227099 0.976907 -0.954805 0.960188 0.273175 -3.486953 -1.594239 -0.330345 -0.760317 -1.462138 -0.964670 0.812702 0.213630 -5.314962 3.824823 0.353679 -0.006395 0.946719 -0.595146 2.178560 -2.088743 -3.589062 1.482177 0.132456 0.298226 -0.290746 0.043328 1.824763 0.552955 1.586217 -1.444051 -4.146193 0.885074 -0.338912 1.896039 0.869700 0.884198 2.470257 -0.719556 -0.615040 -3.099323 -1.759807 1.056398 0.309712 -1.826499 -1.608998 -0.697293 2.319508 2.204554 -0.209026 -1.021169 -1.394307 2.358960 -2.823956 0.204410 1.634075 1.630906 -2.947461 -0.610645 2.047557 -1.974237 -1.163429 -1.188828 0.000224 -1.009631 -2.714598 0.368337 -0.763385 0.494463 0.941325 -0.281762 -0.628979 0.759236 0.825674 0.459640 0.128244 2.350216 2.870056 -1.429302 -0.201677 -1.901896 0.928507 -3.735398 -3.349771 0.902338 -0.247731 -1.224803 -0.055324 0.480746 1.821856 -0.578741 1.119253 0.284161 -0.728014 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__insert(Node**, int) = -0.769402 -0.136205 1.316671 -2.075176 1.239502 0.510767 0.469640 -0.526968 -1.643397 -0.593575 -0.052606 -1.042601 -0.584491 2.296117 -0.835327 0.903805 3.167468 0.995279 -0.628942 -0.839155 2.166116 -1.551317 2.403672 2.487756 -2.241641 -0.242184 1.346242 1.567215 1.056645 1.548601 -0.952467 -0.809297 0.397899 -1.512587 0.912708 -2.221340 0.443235 0.442188 0.498919 -3.364339 0.438297 -0.503146 0.101769 -0.432272 -0.434500 1.092034 1.876465 1.741493 -1.122543 0.193607 1.814956 0.502065 -0.399376 0.428491 0.495855 0.957350 1.373387 1.227275 -0.680901 -0.196409 -0.289895 -1.286740 1.049127 2.068494 2.534606 0.123291 0.279417 0.734719 0.479998 0.345914 0.716768 0.246756 -0.118300 0.198266 1.131090 -3.421295 0.208683 -5.075852 -0.262938 -5.065928 -1.133173 -1.047458 0.830038 -1.212412 0.887554 0.298537 2.129852 -0.139961 0.441255 1.322788 2.432477 -1.768842 -0.813341 -1.810684 -1.653802 0.825249 -1.089733 -0.260376 1.244189 -0.032838 -1.464393 -1.700450 1.150949 0.889201 -0.758857 -0.838837 0.046493 2.007519 -1.802310 -1.506230 -1.318812 0.520052 -0.605305 -2.997706 0.524946 -1.864445 2.060840 -0.044149 -0.529150 -2.083391 0.253434 2.046711 -0.825495 -0.910289 -0.638454 2.097184 0.954653 0.105889 0.069836 -0.549877 0.111231 1.891332 2.084314 -1.414281 -0.358241 0.579157 -1.965081 -0.424279 -2.156793 -0.832717 1.848364 -1.781367 -0.259556 1.265199 -1.286195 -0.311489 3.049089 -0.237354 1.426242 6.683223 -0.271207 1.508654 0.713238 -2.153578 1.398039 0.278060 -0.189450 0.823286 1.521214 0.397897 -3.589832 -1.837939 0.630361 1.977141 1.567340 -2.253629 -1.806832 -1.164213 -0.474370 0.453057 -0.301484 0.380466 -0.987772 -1.364111 -0.610810 0.840540 3.470290 -0.956477 -1.852496 0.542546 0.780434 -1.542963 -2.977708 -0.617884 -1.637927 0.444593 -0.312338 -0.416841 1.596032 2.621289 -5.401018 1.985631 -0.827194 -0.626842 1.699331 -0.033939 -0.936698 -3.404332 0.310999 1.681609 2.454628 -0.155057 0.052372 0.725985 -1.882704 -0.100579 -0.043440 1.054117 -0.848396 0.832056 0.414275 -1.740421 -1.394475 -0.037273 -0.439699 -0.952779 -0.066910 0.856260 -0.376441 -3.992668 2.359145 -0.484339 -0.313718 1.090771 -0.347366 1.126271 -2.268911 -2.355941 1.041527 0.692160 0.059902 -1.399198 0.107972 1.971632 -0.352298 0.163429 -1.260832 -3.056468 0.687782 -1.191784 1.412258 0.766888 0.341638 2.173275 0.254847 -0.257526 -2.412140 -0.063369 -0.300184 -0.186137 -1.426661 -1.327795 -0.413487 1.908009 2.272738 -0.213022 -0.072331 0.089868 2.461554 -2.137961 -0.794671 1.288565 0.979160 -1.367860 0.423830 1.648110 -2.431275 -1.137484 -1.103906 -0.546215 0.068763 -1.568022 1.103023 -0.811425 0.824601 0.466930 0.327451 -0.383921 1.034133 0.676990 0.419017 0.098727 2.415866 3.362037 -1.313955 -0.297786 -1.753323 0.888568 -2.824746 -1.942212 0.222905 0.248570 -0.904220 0.688719 0.468217 1.884067 -0.042582 0.453781 0.114014 -0.454887 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__print(Node*) = -0.680886 0.323533 0.966959 -2.126826 1.293239 1.320425 0.372512 -0.273517 -1.368462 -1.214336 0.000865 -2.165035 -1.354005 2.367758 -0.892116 0.497122 3.362687 0.358543 -0.507489 -0.533746 1.868444 -0.925968 2.990216 2.728613 -2.592614 -0.271111 1.575598 1.857276 0.816514 1.408780 0.272045 -2.450827 0.208206 -0.558390 0.963396 -1.781091 0.572618 0.038419 0.032416 -3.792340 0.276041 0.242075 -0.157197 -0.508050 -0.363137 0.705341 3.147045 1.927425 -1.452526 -0.132964 2.049633 1.094559 -0.450331 0.294313 -0.105691 -0.393928 1.023451 0.377535 -0.819442 -0.363964 0.040168 -1.103325 0.447239 2.365120 3.068258 0.151333 0.255673 0.701341 0.317126 0.607170 0.392684 0.440352 0.292857 0.742902 1.314752 -2.616034 -0.345233 -6.362259 0.131605 -5.985910 -1.385810 -1.140582 1.468763 0.259950 0.335166 -0.669453 2.335083 0.115504 0.568880 2.604817 3.402874 -1.096796 -0.817498 -2.295881 -1.935239 1.420656 -1.268169 0.113579 0.867014 0.409136 -1.634611 -1.913851 0.538768 0.476269 -0.907755 -1.151188 0.004305 1.693717 -1.902221 -0.791425 -1.175868 0.983845 0.094965 -4.072941 -0.408563 -1.866882 1.311252 0.002066 -0.253784 -1.941344 -0.029053 1.841433 -0.822235 -0.454357 -1.512355 2.325745 1.145700 0.237478 0.339585 -0.035917 0.800335 2.347495 1.708608 -1.284630 -0.517079 0.334356 -1.479209 -0.405747 -2.247352 -0.534910 1.768215 -1.716822 0.119868 1.705630 -1.225230 -1.147492 1.408898 -0.938247 1.528680 9.053788 -0.137987 1.689032 0.916079 -2.762499 1.580484 0.012481 -0.775476 0.588456 1.279149 0.800536 -3.644076 -1.742699 0.953110 2.234612 1.544241 -2.274755 -0.876972 -0.371261 -0.610406 -0.316264 0.100216 0.542090 -0.880487 -1.399258 -0.611407 2.118659 4.029280 -0.292750 -1.832977 0.674198 2.213081 -1.181141 -2.603386 -0.319607 -1.445176 0.308617 0.514602 -0.291309 1.750898 2.754529 -6.333116 1.909565 0.596305 -0.003980 1.317693 -0.187416 -1.339563 -3.884908 0.773942 2.630733 2.507462 -0.479406 0.504598 0.181661 -1.927404 -0.056871 0.443645 0.813879 -0.866761 0.898804 -0.125659 -2.122722 -1.791812 -0.533626 -1.084967 -0.489897 -1.004758 0.843750 0.439752 -4.536392 3.344546 -0.697506 -0.496144 0.097226 -1.148525 1.792131 -2.614734 -2.969465 0.852383 -0.094907 -0.987750 -1.380232 -0.040486 1.662943 -0.023554 1.047854 -1.135459 -3.503983 1.232814 -1.048993 1.406077 0.929730 0.565066 2.447965 0.215047 -0.335207 -2.855639 -1.358544 0.882217 -0.008213 -1.833768 -0.571107 -0.495941 1.644251 2.325932 -0.768199 -1.027717 -0.321541 2.365077 -1.939014 -1.106693 1.116524 0.472320 -2.004275 0.520444 1.584520 -2.533158 -0.777649 -1.940410 0.040885 -0.173209 -2.643049 0.745838 -0.714674 0.662775 0.991263 -0.121186 -0.781015 1.074797 0.756738 0.086395 0.110719 2.776464 3.041089 -1.303670 0.199745 -2.308759 0.859094 -3.706891 -2.885965 0.480537 -0.475858 -0.464738 0.364370 0.186799 1.572275 -0.066672 0.822177 -0.312408 0.178369 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = -1.754781 0.049715 3.436666 -4.901648 2.947116 0.785586 1.164029 -0.362073 -3.999662 -2.358566 -0.233350 -3.232727 -2.712769 5.579818 -2.039432 0.742299 7.706406 2.479099 -1.366049 -2.012994 4.430860 -2.940307 5.894798 6.148133 -5.497708 -0.444744 2.493225 4.034210 2.299970 3.774800 -1.017807 -2.949321 0.939522 -1.567023 2.565174 -5.004796 0.928580 0.783296 -0.527375 -8.404117 1.014062 0.061513 0.244663 -0.958072 -0.475359 3.539216 5.118345 4.194692 -2.784478 0.292885 4.209395 1.842877 -0.712004 1.057167 0.835915 0.750267 2.820496 1.625441 -1.942450 -0.332379 -0.751547 -3.648813 1.535984 5.030472 6.250777 0.417622 0.511812 0.721194 0.953903 1.419178 1.572758 0.686724 0.882646 0.604699 2.775812 -5.791250 0.029475 -11.716906 -0.207627 -13.339310 -3.002476 -2.740624 3.724450 -1.161359 0.593716 -0.374478 5.287226 0.081519 1.213880 4.094097 6.299900 -3.029545 -1.957679 -4.349984 -3.899368 2.649398 -2.598143 -0.373852 2.527770 0.781945 -3.682167 -3.369069 1.870568 0.889103 -1.908777 -1.136006 -0.050863 4.874953 -4.905945 -1.860930 -3.549280 1.779009 0.179338 -7.469877 0.399182 -4.258246 4.515835 0.048691 -1.324720 -3.180179 0.712750 3.705396 -2.105877 -0.739994 -3.320105 5.290296 1.690677 0.051351 0.239922 -0.592602 0.456024 3.503403 4.198131 -3.314043 -0.891332 1.302361 -4.027303 -1.042929 -5.162339 -1.456957 4.592353 -3.884951 0.037001 2.236982 -3.180568 -2.060148 4.265436 -1.174907 3.463650 15.102872 -0.767534 3.679823 1.826923 -4.897696 3.175597 0.843762 -0.705849 1.882900 3.769126 1.302597 -6.321525 -4.283320 1.641141 4.991034 3.796679 -4.853006 -2.731348 -2.125917 -1.111114 0.310580 0.060720 0.916362 -2.135070 -3.130056 -1.535849 2.488632 7.417328 -1.285470 -5.050153 0.964457 2.749958 -2.660058 -5.410883 -0.969362 -2.232636 0.921026 0.058956 -1.013637 3.849194 6.401159 -13.285272 4.912255 -0.520394 -0.764305 3.451676 -0.348008 -2.231091 -8.107256 0.880522 4.404689 6.093239 -0.150493 -0.168509 1.274672 -4.634398 -0.390641 0.342258 2.668022 -2.109755 2.087622 0.742841 -3.634192 -3.426650 -1.466259 -1.258990 -1.204959 -0.992024 2.067161 -0.180884 -10.114775 5.981770 -1.540201 -0.839077 1.100616 -1.129157 2.589675 -5.467343 -5.850513 1.877643 0.712156 -2.033632 -3.774928 0.152969 4.508363 -1.015461 0.909931 -2.653121 -6.778696 2.996520 -2.569888 3.491866 1.970313 1.011679 5.717587 1.643723 -0.775487 -5.217046 -0.943941 0.813325 -1.070354 -3.205623 -1.177603 -1.151506 3.824869 5.681281 -0.887209 -0.854434 0.005933 6.005462 -4.238736 -2.565084 3.199159 1.169080 -2.600470 2.406965 4.108026 -5.838451 -2.860206 -3.598761 -1.047700 0.185596 -4.039329 2.527758 -2.152235 1.707740 1.611705 0.533731 -1.774363 2.556670 1.465289 0.264741 0.298362 6.087972 8.046276 -3.303493 0.705122 -4.260048 2.335829 -7.024046 -4.589262 0.261233 -0.368938 -1.504889 1.492958 0.126430 4.059199 -0.158404 1.080251 -0.523565 -0.015996 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__countNonDecreasing(int) = -2.795390 -3.747629 -3.678936 -5.607642 4.291572 4.439528 2.534360 -3.605365 -7.850378 0.463268 2.833219 -7.983980 -0.132421 7.930729 -1.458951 8.026883 10.696259 1.784775 -4.048878 0.064726 8.121757 -2.690513 9.766771 8.314935 -4.248942 -0.647588 -2.289380 2.745906 -0.323069 0.016563 1.093736 -2.356879 3.270789 -9.663290 -2.744210 -4.606024 1.329437 3.469977 7.526098 -10.450261 2.026470 0.237279 3.073378 -2.259095 -3.251593 0.260458 3.657586 6.018562 -0.389959 2.043258 4.862751 -0.648019 -0.484220 2.046454 1.234736 2.107418 -1.013897 0.909935 -3.488651 -3.447064 -0.476035 -1.013695 2.255642 5.095163 8.040646 1.248459 -0.351751 5.494383 1.391171 1.664509 4.182491 0.478973 -3.310319 -1.291496 2.235880 -9.961069 -1.554489 -11.457374 -1.602995 -12.243369 -3.759591 1.314843 5.132933 0.503055 4.503237 0.922310 5.750838 -1.478925 -2.221595 7.419519 6.926400 -6.169634 -3.622522 -4.722954 -3.576266 1.953308 -2.742687 0.113101 6.809459 1.947360 -5.716162 -2.196760 3.059009 3.584248 -1.816224 -6.774802 2.405946 5.350794 -3.690860 -6.383604 1.221121 6.661989 -2.345863 -10.555781 -0.515240 -4.755998 0.868321 0.588504 -2.564244 -6.591474 0.765227 2.510321 -2.011326 -3.408416 -0.627953 4.515835 2.832613 2.678098 1.126260 1.790810 1.072358 11.746046 0.820523 -4.359021 1.273404 0.284780 -1.669024 3.423975 -4.404682 -4.797011 1.073237 -8.192134 2.793609 4.542344 -3.834393 -1.283615 4.633872 4.034169 1.293539 21.786350 1.074515 9.557312 6.128168 -6.229075 4.799076 -3.224387 1.051704 1.743458 2.909368 -1.940916 -10.886059 -6.393897 3.330896 6.330090 5.371872 -7.691540 -3.723143 -1.301333 -0.371824 0.856692 -1.017389 2.304882 0.195873 -4.200192 -0.946129 5.823357 15.721040 -2.765323 2.695855 4.479722 3.143414 -3.888698 -11.289749 -3.691843 -6.915972 0.749079 0.522401 1.024681 3.283280 8.141187 -9.133022 5.668582 -1.698622 1.561106 5.514698 3.037117 -7.723439 -11.307962 -3.139082 3.738796 8.858751 -3.034991 0.269806 2.856917 -5.126421 -0.352577 1.760953 -0.947235 -0.590648 2.300418 -1.481754 -2.618483 -2.349003 3.984345 -3.137557 -1.589155 0.732161 4.237516 1.997421 -6.003942 5.503749 -0.055227 -2.724706 2.103031 -1.337794 6.612181 -4.657584 -5.629857 4.692367 0.164306 -0.907017 -3.091456 1.513589 4.125552 1.842110 2.021572 -2.722394 -7.545302 4.888340 -3.236640 5.355996 2.470976 -1.639530 2.462348 -1.744865 -3.288376 -6.879347 -5.495093 -3.610970 0.279307 -6.670456 -1.856791 -1.124505 6.882427 3.416694 1.955525 -6.879127 1.131917 7.773938 -5.085523 -1.838619 4.952418 1.005449 -8.090153 0.712697 6.100982 -8.674878 1.148277 -2.435555 0.540832 -1.982594 -4.913918 3.432440 2.032766 3.891458 -1.824666 1.012449 2.233354 2.766424 3.268897 2.613733 0.841382 10.206786 3.804244 -0.931975 -3.505969 -6.496076 2.102311 -7.319648 -8.264179 3.059554 4.122111 -6.167443 1.385406 3.184471 7.670200 0.446064 -1.230396 -1.837445 0.160513 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -0.672999 -0.867245 -0.391921 -1.571823 1.131703 0.701634 0.659203 -0.755831 -2.112349 -0.203798 0.739506 -2.095207 -0.281310 2.103365 -0.475585 1.688304 2.785168 0.569558 -0.981815 -0.256171 1.912326 -0.873743 2.520350 2.292648 -1.343301 -0.071450 -0.495496 0.916786 0.212555 0.298407 0.195362 -0.646367 0.776818 -2.012064 -0.386643 -1.275530 0.284755 0.818957 1.475300 -2.833517 0.516117 0.182008 0.821589 -0.505887 -0.641512 0.633071 1.120136 1.583812 -0.265013 0.673809 1.412288 -0.144087 -0.031424 0.517052 0.393191 0.322766 0.210289 0.196213 -0.947662 -0.674579 -0.158768 -0.667004 0.510212 1.450975 2.183813 0.232832 -0.099082 1.076770 0.401400 0.508522 1.150575 0.184034 -0.601081 -0.290420 0.694083 -2.363578 -0.175056 -3.272232 -0.354371 -3.876712 -1.104555 0.197044 1.750078 0.120117 0.837642 0.181900 1.626562 -0.222798 -0.511769 1.791513 1.904094 -1.430783 -0.961074 -1.084140 -1.022152 0.646778 -0.786528 0.025523 1.625693 0.656767 -1.511056 -0.479595 0.894245 0.691405 -0.556037 -1.266322 0.498806 1.466641 -1.335420 -1.334546 0.030410 1.567874 -0.240358 -2.734510 0.061178 -1.302483 0.613567 0.160344 -0.723543 -1.325183 0.243577 0.554172 -0.633024 -0.533899 -0.793759 1.352973 0.603299 0.725547 0.249969 0.403661 0.314422 2.573267 0.334842 -1.245369 0.247349 0.116471 -0.541730 0.839350 -1.232105 -1.166718 0.631665 -1.965446 0.678384 0.827266 -1.069753 -0.525572 1.098860 0.904189 0.386078 5.246167 0.210838 2.405169 1.518411 -1.549841 1.173276 -0.628291 0.273557 0.578706 0.920275 -0.388686 -2.350725 -1.688080 0.873318 1.759673 1.411616 -2.030508 -0.915328 -0.264112 -0.102168 0.273284 -0.103230 0.516736 -0.021457 -1.128676 -0.320994 1.340427 3.767874 -0.537870 0.186633 0.940145 0.718252 -0.933988 -2.691547 -0.793728 -1.373487 0.304087 0.013429 0.209098 0.958345 2.206773 -3.117062 1.617771 -0.372595 0.344196 1.463839 0.604857 -1.870832 -3.173751 -0.697615 0.967192 2.328323 -0.567382 -0.022951 0.836184 -1.462125 -0.137477 0.341714 -0.098697 -0.329762 0.674157 -0.206849 -0.725229 -0.696116 0.535917 -0.672723 -0.199533 0.034916 1.138509 0.502564 -2.172352 1.486804 -0.153394 -0.747511 0.334622 -0.310338 1.513317 -1.366115 -1.522346 0.998416 -0.119418 -0.658177 -1.115969 0.301800 1.046086 0.142451 0.405845 -0.702424 -1.859171 1.415898 -1.011875 1.407170 0.718277 -0.398411 0.960801 -0.016856 -0.734082 -1.682087 -1.007713 -0.648676 -0.302256 -1.547226 -0.114681 -0.369965 1.627885 1.105401 0.417802 -1.458431 0.356457 2.092476 -1.268289 -0.738363 1.309553 0.197456 -1.763814 0.663300 1.597878 -2.289627 0.168086 -0.893012 -0.164225 -0.415136 -1.212062 1.060638 0.392391 0.976023 -0.329928 0.300611 0.273592 0.827798 0.680223 0.449203 0.192288 2.712995 1.600669 -0.437805 -0.541174 -1.720629 0.639400 -2.007663 -2.048300 0.645320 0.932177 -1.520981 0.373956 0.573393 1.931617 0.208047 -0.368331 -0.573902 0.314993 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__cmp(suffix, suffix) = -0.793820 0.281750 0.981664 -2.577084 3.116694 3.362458 0.951519 -1.440419 -2.964924 0.159397 0.786082 -4.015563 -1.277079 3.590505 -1.080006 1.897291 3.940235 0.187421 -1.837949 0.218104 1.716822 1.431389 3.549552 3.059269 -2.139526 0.402350 -0.725251 0.186380 -1.231083 3.016378 -1.460889 -3.928701 0.536025 -0.892744 -0.638557 -0.175860 -0.723547 -0.385141 2.285538 -3.827146 0.739574 2.593840 0.371862 -1.213396 -0.021977 -2.302990 3.563310 2.043429 0.522531 0.030184 1.461667 0.987076 0.145995 0.385006 2.239787 1.014335 2.946615 -0.482681 -1.754552 -1.250894 -1.135729 1.403488 -0.881248 2.641278 2.173431 0.902108 -0.854742 0.027998 0.151992 0.976661 0.650131 0.840406 0.099663 1.496311 0.526766 0.265137 0.446517 -2.239612 0.092993 -1.299326 -2.126221 0.391809 1.568951 2.338129 1.506299 -0.846089 3.224429 -1.456258 -0.723881 -0.035802 4.093088 -2.020274 -1.194834 -1.344360 -2.319904 0.159228 -0.702455 0.017794 -0.214866 -0.309602 -2.900991 -1.421189 0.466717 1.103440 -0.913647 0.490189 0.810416 2.376289 -1.309195 -1.218015 -0.258091 2.423724 -0.132671 -4.274923 -2.702960 -0.940444 -2.238816 0.717921 -2.408426 -3.281551 1.544877 1.114239 -2.143303 -0.986608 -0.589602 2.558991 1.438068 1.198784 0.150597 -0.194826 1.719552 3.274586 0.027667 -1.976683 1.289047 -0.824012 0.510173 1.040206 -0.760316 -0.758669 -2.205970 -1.882991 1.039511 2.474301 -1.843045 0.470610 -2.155352 0.532765 0.204353 8.164706 -1.687458 3.530670 1.030963 -3.324925 2.020197 -0.462591 -0.909338 -1.028539 1.065264 1.499618 -2.520758 -2.421725 3.200558 3.306244 2.129703 -2.167840 1.191080 0.067792 -0.536404 -0.022731 1.228712 0.762493 0.662080 -2.376494 -1.163684 2.040073 6.180565 -1.228075 -5.061917 1.738455 1.499832 0.925004 -0.520230 -0.919878 -1.989091 0.661576 1.613264 -0.029051 2.206503 3.875011 -4.405334 3.128639 0.112673 -2.033206 4.318773 -0.047082 -2.258608 -0.033056 -1.042457 2.571569 3.237007 0.484282 -1.200684 -0.295815 -2.363001 -0.410835 0.334120 0.328249 -1.375129 1.622587 0.221412 -2.743218 -1.344518 -1.721315 -0.803546 -1.134050 -2.387810 1.583188 0.729451 -4.491143 3.665226 1.993451 -0.116788 -0.145870 -1.105379 1.418635 -1.541122 -3.125774 1.185359 -1.175117 -0.774591 0.453457 -0.362368 0.970187 1.985914 2.524093 -2.483645 -2.193742 1.991065 0.218304 3.764810 1.331808 0.279061 0.294605 1.975393 -0.855212 -1.144250 -2.296012 1.869374 0.694200 -2.426450 -0.860707 -1.624086 2.662265 1.445112 -0.126030 -2.190641 -3.954579 2.215655 -1.260769 0.543790 2.088336 -2.454080 -3.198224 -1.011052 2.736632 -1.170673 -0.088825 -1.600355 -0.441618 -3.062708 -1.971076 0.593810 0.365191 0.757269 0.328360 -0.766709 -1.160408 0.098324 0.579169 -0.529872 0.830444 2.636282 -0.337179 -0.845193 1.175249 -2.874815 2.283564 -3.265163 -3.360842 1.827792 -1.713598 -3.291350 -1.018998 -0.353507 2.223784 -0.346087 0.596954 -0.639417 0.796957 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -6.345481 -4.490787 -1.369782 -15.192497 13.199476 17.082320 5.834031 -9.411936 -16.528413 -2.109091 6.066132 -19.970297 -4.133961 19.327423 -6.122213 16.604800 26.419347 2.070852 -9.731028 0.480684 18.648428 -0.800185 24.912426 21.272766 -14.432714 -0.917473 -2.533331 8.901135 1.292884 8.418162 0.495677 -12.134185 8.411274 -17.520100 -5.867868 -11.150862 2.300576 4.376222 13.884922 -26.175647 4.248735 3.013291 -1.146687 -4.756380 -5.443892 -1.994060 14.700573 14.803302 -1.732521 3.797173 12.635022 3.273033 -2.126785 4.834046 3.606315 3.440743 4.059361 -0.268243 -7.461085 -9.764372 -2.506116 -3.004588 2.315931 14.859619 20.896998 2.487319 -0.349514 11.071034 1.108015 3.752581 8.568625 3.048624 -4.767747 1.506209 7.023581 -18.883473 -1.453945 -23.652972 -3.899109 -24.524119 -9.710168 0.056174 10.153590 4.648888 11.133450 -3.177155 16.053567 -4.223216 -4.331928 16.485093 19.384282 -15.821681 -7.149850 -11.892663 -9.171644 3.703165 -8.370804 0.779508 8.635675 2.305205 -14.257415 -6.951769 6.907973 8.027724 -5.453365 -13.056565 3.405807 13.520376 -13.557326 -12.791819 0.267808 15.448446 -4.979253 -27.529308 -10.095332 -11.967614 4.287192 0.194837 -5.210829 -16.427068 2.912355 9.498100 -4.805031 -9.735985 -0.734895 14.198931 10.313584 6.757783 2.255357 2.749067 4.214165 28.193048 5.657700 -8.821682 1.485384 -1.588644 -2.821506 7.335409 -9.771889 -6.728772 -1.461384 -17.503800 3.980356 16.088787 -8.742111 -2.324595 5.296840 6.306398 4.488092 63.020290 -0.097901 21.325097 14.337309 -17.759680 7.951173 -7.104300 -0.181595 3.869282 5.348893 0.408856 -30.628085 -15.070138 11.019794 16.075497 12.420099 -20.898159 -2.120316 -2.230504 -0.583994 -1.187147 -1.368694 5.307351 1.620558 -13.164513 -3.577678 15.270510 39.593588 -7.697092 -6.002837 11.872446 5.770120 -8.764926 -23.180800 -8.610896 -11.515225 2.387699 8.099350 0.493956 9.075499 21.060754 -24.145001 14.100033 -1.525018 -1.232169 16.482402 5.815324 -15.965121 -19.436648 -5.808205 11.734763 20.883877 -5.341210 1.729192 4.754534 -14.159028 -0.490716 4.426745 -0.498112 -3.089913 6.334690 1.660550 -10.769396 -9.121830 1.585098 -5.770171 -3.175097 -4.296757 10.065791 1.570755 -20.430542 16.675969 1.489603 -6.246192 4.529080 -4.992338 18.785996 -13.076582 -16.571034 12.025434 -1.980744 -6.056618 -6.854331 3.499991 9.706979 7.860089 8.779413 -10.698404 -20.595948 11.015648 -5.724540 13.588544 6.768919 0.399063 8.730236 -2.582562 -5.676817 -18.169508 -16.051960 2.564323 2.245073 -16.850703 -6.499418 -4.105993 16.856212 10.759605 1.043229 -15.280776 -3.626684 19.372571 -15.442529 -2.821833 12.149834 5.919323 -20.547272 0.472076 14.835915 -18.329025 -0.035141 -6.757143 -1.956664 -7.499707 -13.865955 8.513819 3.074616 9.593675 0.209718 2.647443 -0.177289 5.670397 5.834534 3.623100 1.930185 24.409070 15.521761 -4.826591 -5.745002 -16.452274 7.451046 -20.268295 -22.018148 9.539292 1.590465 -11.909078 1.787578 4.529568 19.078761 2.631643 -1.148162 -2.401768 0.616186 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::sort(suffix*, suffix*, int (*)(suffix, suffix)) = -0.545382 0.400333 0.984006 -1.351054 1.256291 0.691208 0.444689 -0.387981 -1.046847 -0.650165 -0.080154 -1.296507 -1.117602 1.634474 -0.724785 0.404814 2.423335 0.570075 -0.398770 -0.541446 1.202914 -0.460170 2.196763 2.022540 -1.762036 -0.046632 0.799920 1.045186 0.381160 1.178157 -0.729572 -1.205409 0.612531 -0.570994 0.529693 -1.179977 0.174026 -0.192215 0.095338 -2.482680 0.223976 -0.163000 -0.261963 -0.260696 -0.208822 0.978580 1.994435 1.349013 -0.595064 0.085576 1.226930 0.612959 -0.137858 0.434569 0.377161 0.259670 0.980904 0.287253 -0.686022 -0.348903 -0.354762 -1.026040 0.087105 1.665055 1.931301 0.252100 0.033962 0.357519 0.050488 0.318281 0.297454 0.409490 0.474420 0.651720 0.823997 -1.561485 0.102081 -3.045053 -0.391087 -3.620246 -1.096905 -1.012527 0.756331 -0.339941 0.569085 0.001731 1.858370 0.121045 0.444242 0.944138 2.253312 -1.460424 -0.664429 -1.175219 -0.949288 0.569195 -0.857730 0.172083 0.547692 0.023880 -1.330863 -1.206676 0.653633 0.318007 -0.648059 -0.432068 0.003702 1.365124 -1.516493 -0.634109 -1.394503 0.219106 -0.055286 -2.533374 -0.175928 -0.868394 1.525374 0.122388 -0.482552 -1.429082 0.349140 1.292893 -0.651725 -0.578000 -0.657303 1.556844 0.804606 0.062457 0.237990 -0.083971 0.444378 1.671212 1.369775 -0.892981 -0.312077 0.109725 -1.155502 -0.209208 -1.299924 -0.316355 0.903872 -1.348113 0.354807 1.116473 -1.038273 -0.459360 1.043822 -0.438686 1.062031 4.486305 -0.448707 1.225810 0.530487 -1.830310 0.794735 -0.279424 -0.414016 0.335804 1.088428 0.725802 -1.940297 -1.376331 0.853977 1.702216 1.150434 -1.695270 -0.365033 -0.566727 -0.111932 -0.223943 0.068246 0.457893 -0.411710 -1.006141 -0.478001 1.009985 2.690777 -0.712105 -1.716459 0.585764 0.541859 -0.329986 -1.443322 -0.483824 -0.570275 0.230117 0.389320 -0.145236 1.052712 2.118321 -3.745724 1.472360 -0.227578 -0.556738 1.346549 0.054717 -0.793092 -1.574384 0.389623 1.606962 1.671057 0.154079 -0.029837 0.086246 -1.496558 -0.200019 0.183018 0.925759 -0.683548 0.762019 0.466752 -1.465305 -1.239726 -0.650289 -0.164291 -0.475972 -0.426234 0.762363 -0.108391 -3.547711 2.117704 -0.198058 -0.435693 0.313509 -0.588022 0.980882 -1.731054 -1.965629 0.762925 -0.198895 -0.550684 -0.785768 0.081880 1.193353 -0.010467 0.575744 -1.099098 -2.018736 1.079648 -0.313569 1.201078 0.681013 0.656696 1.742491 0.059191 -0.493047 -1.508318 -0.509991 0.533048 -0.278283 -1.173665 -0.217602 -0.481092 1.377813 1.969870 -0.329969 -0.327180 -0.259707 1.629292 -1.639123 -0.597617 1.140479 0.890817 -1.059883 0.550428 1.345299 -1.497396 -1.009026 -1.003397 -0.451181 -0.342389 -1.507167 0.574581 -0.895264 0.454211 0.817003 0.011499 -0.601121 0.787642 0.241109 0.192680 0.091834 1.746317 2.472433 -1.114256 0.245435 -1.471512 0.862126 -2.333520 -1.774566 0.525337 -0.294354 -0.581946 0.177769 0.024029 1.263283 -0.205794 0.092484 -0.280267 -0.129298 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::push_back(int const&) = -1.908873 2.169847 3.059419 -3.880277 4.878367 4.930195 1.615721 -1.911999 -2.891266 -1.438097 -0.412619 -4.728125 -3.941244 5.981395 -2.291345 2.255126 7.918059 1.251647 -1.533921 -0.192518 4.213857 -0.553135 7.258240 5.945127 -5.216410 -0.289689 2.837144 2.069651 -0.519957 5.124057 -3.744466 -5.677092 2.465703 -2.403018 0.907006 -2.987923 0.349842 -1.425712 1.342236 -7.399649 0.680026 0.316661 -2.028169 -1.507342 -1.102992 0.520663 7.430092 4.385806 -1.232216 -0.710834 2.887313 1.893934 -0.909647 1.501070 2.281894 1.637662 2.953253 1.423585 -2.817586 -1.720703 -1.742382 -2.188290 -0.558864 5.412580 5.954275 1.240692 0.197538 1.544603 -1.116079 0.689115 0.034850 1.209203 2.047122 2.994344 2.455010 -4.013989 -0.149872 -7.745032 -1.852189 -8.488017 -3.426460 -3.135329 0.538839 -0.366376 3.202428 -1.354841 5.955698 -0.297012 1.261926 2.333620 8.706399 -6.050002 -2.297940 -4.493245 -2.973532 0.848778 -2.919386 0.546945 1.351765 -2.291398 -4.842121 -5.103714 1.724098 2.095473 -1.765255 -1.867703 0.160939 4.847100 -4.088105 -2.946980 -4.426822 -0.079961 -1.347151 -8.768895 -2.019834 -1.607716 2.872759 0.992631 -2.076916 -6.747221 1.946503 5.366647 -2.226516 -3.900633 0.124194 5.552150 3.004231 0.471759 0.981292 -0.698983 2.115364 6.619074 5.079042 -2.332385 -0.337327 -0.742738 -3.374294 -0.443181 -3.321838 -1.047481 0.695147 -4.523165 0.343644 5.450569 -3.427606 0.258411 2.266103 -1.339516 3.521075 16.113035 -2.347857 4.055885 0.864195 -7.427835 3.573763 -1.284357 -2.343405 -0.433090 3.105638 3.322092 -7.959839 -4.409911 4.092282 5.749879 3.885613 -5.683490 -0.282619 -2.393459 -0.211035 -1.573777 0.301070 1.972039 -0.744228 -3.936860 -1.798427 3.861690 10.263441 -4.032612 -7.456332 3.202575 1.203877 0.076285 -4.452134 -2.004850 -2.647587 0.663563 1.817955 -1.092366 3.538258 7.204283 -10.604164 5.028109 -1.165535 -3.697753 5.735653 0.133792 -2.763238 -2.380901 1.215578 6.446829 5.164639 1.404670 -0.270085 -0.966101 -4.830207 -0.698717 0.555738 3.062366 -1.801419 2.508699 1.191963 -5.973525 -4.809025 -2.552966 -0.690413 -3.181846 -2.113818 2.304855 -0.098521 -11.024819 8.076604 0.992232 -0.795334 1.228446 -1.762324 3.300635 -5.424805 -7.625379 3.036255 -1.183432 -1.008703 -0.911883 0.187816 3.494734 1.793772 2.165333 -3.921798 -7.710394 3.291460 0.374218 4.762956 1.980898 3.174828 5.303583 1.102442 -2.204527 -4.867680 -3.407048 2.870804 -0.053659 -4.617102 -2.506482 -1.769916 5.557018 5.887740 -1.020039 -1.569791 -3.424116 4.687799 -5.606091 -0.505285 4.355256 2.741154 -4.757652 -0.820480 4.944209 -3.680311 -3.554737 -2.604353 -1.179984 -2.850898 -5.709888 0.309461 -2.963087 1.116571 2.938209 -0.502969 -2.084466 1.434850 0.943746 0.631060 0.307438 4.997256 6.208518 -4.322501 0.699960 -4.955842 3.290395 -7.911485 -6.848920 3.029403 -1.559299 -2.406787 -0.236400 0.989649 3.570274 -1.357890 0.609019 -0.309635 -1.548590 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::~vector() = -0.622249 0.729463 1.695859 -2.186029 2.370796 1.668952 0.356167 -0.429294 -1.344454 -0.657454 -0.542874 -1.630573 -1.556773 2.180059 -1.039502 0.629611 2.708112 0.255410 -0.633320 -0.347330 1.753303 0.053767 2.521070 1.523785 -2.337602 -0.088275 0.727576 1.638953 0.183831 2.524423 -1.360822 -1.904767 0.229426 -0.030459 0.724190 -1.294140 0.526757 -0.193958 -0.252658 -2.724460 0.308852 0.385165 -0.832449 -0.184509 -0.235129 0.659216 2.532414 1.720176 -0.918956 -0.421216 1.707977 1.258918 -0.374635 0.639494 0.159430 0.386813 1.638913 -0.115888 -1.000273 -0.676676 -0.411339 -0.987019 0.097540 1.915331 2.311839 0.150682 0.086619 0.644808 -0.078187 0.341790 0.315536 0.411191 0.519996 0.827480 0.976336 -0.875571 0.133945 -2.634148 -0.126758 -3.148340 -1.089438 -1.601625 0.362398 0.650997 0.523875 -0.712131 2.541899 -0.141305 0.500887 1.148071 2.745137 -1.725839 -0.607939 -2.374237 -1.476938 0.468507 -1.052493 -0.538539 -0.045873 0.296985 -1.301260 -1.410735 0.144513 0.115458 -0.690607 -0.264694 -0.470700 1.910865 -2.020446 -0.649224 -1.611554 1.006448 -0.181093 -3.092852 -1.060057 -0.926476 1.130798 -0.410273 0.152161 -1.662402 0.476271 1.949728 -1.138663 -0.430924 -1.198474 2.206065 1.301533 -0.377540 0.247832 -0.276886 0.567187 1.683483 1.474645 -1.110047 -0.971769 0.268360 -0.904386 -0.594182 -1.624967 0.171078 0.451308 -1.757808 0.203309 1.830086 -0.958083 -0.028336 -0.212949 -0.950667 1.634488 5.804222 -0.797479 1.072531 0.013048 -2.391557 1.294952 0.263233 -0.841381 0.259160 0.653697 0.961683 -2.287277 -1.789467 1.407022 1.730243 1.403202 -1.797332 0.290324 -0.893347 -0.312048 -0.321956 -0.189896 1.085672 -0.982921 -1.034787 -0.769275 0.729392 3.650782 -0.581972 -2.877735 1.487355 0.846900 -0.774652 -0.973715 -0.816840 -0.491177 -0.174115 0.972521 -0.436571 1.518028 2.759912 -4.463159 1.859419 0.423067 -1.197004 1.736013 -0.783568 -0.247535 -0.882524 0.024021 2.282249 2.131751 0.013180 -0.046824 -0.393433 -1.689318 0.215532 0.429137 1.206612 -0.545416 0.505660 0.692805 -1.932454 -1.555271 -1.239927 -0.703829 -0.149678 -1.060411 0.607709 -0.531017 -4.523711 2.849116 -0.339312 0.055986 0.600696 -0.583082 1.358242 -1.816816 -2.359973 1.141790 0.052068 -0.682801 -0.782652 0.438806 1.647550 0.169051 1.104963 -1.632342 -3.111464 0.943701 -0.216170 1.133231 0.691111 1.159896 1.599911 0.736603 -0.489158 -1.855667 -1.278858 1.226686 0.162185 -1.109420 0.193488 -0.359524 1.778109 2.043340 -0.397809 -0.311005 -1.043582 1.931172 -1.365695 -0.566792 1.504338 0.089254 -1.794686 0.278575 1.854224 -1.324034 -1.679783 -1.386507 0.019980 -0.765978 -1.901856 0.324803 -1.021550 0.309110 1.450839 0.043664 -1.427335 0.849190 0.340400 -0.327434 -0.365178 2.724610 2.365865 -1.137242 0.906778 -1.670159 1.298001 -2.898819 -2.053407 0.601950 -1.204152 -0.501191 0.451152 0.074529 1.570996 -0.642426 0.953095 0.095298 -0.794236 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__kasai(std::__cxx11::basic_string, std::allocator >, std::vector >) = -6.370861 -3.420053 0.938984 -14.367072 14.116441 9.912432 6.285906 -6.286987 -15.409282 -3.824336 4.199082 -14.412784 -7.099199 19.147454 -5.660940 14.352361 22.992986 2.598875 -7.418848 -2.486766 19.508967 -6.088260 22.933899 17.695672 -16.850846 -0.713913 0.381819 9.784759 3.792028 9.220207 -1.503545 -7.984527 8.279910 -15.318126 -0.762937 -12.257754 3.821886 4.061730 8.468790 -23.835311 3.221649 2.533298 0.369560 -3.493180 -5.593258 5.537831 13.183563 15.636678 -5.751403 4.499011 13.256157 1.165369 -1.470370 5.804526 2.210229 3.269045 3.636148 1.550993 -8.979009 -7.781953 -2.834346 -9.806007 4.229126 14.546757 20.482935 -0.064439 0.814457 12.370928 -0.122124 4.355750 8.586974 3.384250 -1.424240 -1.673631 11.023484 -18.777761 -2.731776 -25.809299 -5.226378 -34.372755 -10.095021 -4.395846 10.309783 -0.976452 10.493003 -0.593050 18.133854 -1.706635 -2.735574 15.014495 18.752944 -16.032417 -6.937128 -14.224892 -9.123259 4.391174 -10.108680 -1.331513 10.701861 1.519394 -13.845930 -8.273558 5.943218 6.462723 -5.644576 -12.555584 0.064307 14.558981 -15.871134 -12.595760 -5.331341 9.882004 -5.048481 -25.420588 -2.662500 -9.588975 9.927104 -0.227287 -1.228468 -13.277373 2.659951 11.516715 -4.909244 -9.596074 -2.275222 14.129401 8.725557 5.242673 3.885631 2.166631 2.142868 22.917470 11.894177 -8.164347 -2.990786 0.485167 -5.903304 6.247518 -10.191339 -6.325932 6.931394 -17.202065 1.726324 12.320876 -8.054824 -3.247005 11.118687 2.774062 7.448911 48.140209 0.463791 17.001782 10.060980 -16.936094 8.277734 -4.867203 -0.470682 6.634590 8.042065 -0.340915 -22.767796 -15.855785 9.869620 15.105212 12.194837 -19.442591 -6.374525 -4.283992 0.857556 -0.541225 -3.199898 7.030792 0.296902 -12.602061 -3.293767 9.596115 31.994296 -9.171659 -6.849289 12.522817 6.194311 -10.314153 -21.449499 -8.919571 -10.341085 0.442759 2.559369 -0.614938 8.588842 21.576376 -26.451610 14.545380 -3.485638 -1.855494 12.821022 2.131676 -11.697888 -21.152174 -3.960280 11.608185 18.356765 -3.648839 1.238228 4.368938 -14.671390 1.343901 2.596194 1.664990 -2.423394 6.550426 -0.129957 -9.139997 -10.664782 1.151242 -4.768117 -2.368560 -0.227977 8.693944 1.710831 -24.303168 16.506696 -3.135507 -6.392087 5.486952 -1.184207 15.652358 -13.568190 -18.130210 11.768117 -1.203990 -7.175881 -10.515538 4.235576 11.194664 4.203530 1.582076 -8.806518 -21.146332 11.750254 -7.222608 11.628459 6.592720 2.091273 14.093312 -0.866141 -7.657627 -17.695710 -9.676564 -2.853074 -1.524448 -13.643501 -5.639336 -3.031551 16.590156 13.013155 1.517899 -8.013118 -0.882464 19.984474 -16.562384 -6.337351 14.168738 8.539055 -15.685015 5.552894 16.349754 -17.392615 -4.215732 -8.188883 -1.297387 -4.851573 -13.218111 8.596525 -0.777104 7.781893 2.305383 3.442518 -1.440161 6.844882 5.349388 3.094506 -2.604509 24.472401 20.412408 -9.749589 -4.810243 -14.254419 7.273462 -20.559547 -18.371112 7.392417 3.088920 -8.829735 4.459641 5.663268 16.968052 1.959580 -2.512246 -2.477634 -2.864393 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::size() const = -0.310029 0.276259 0.171092 -1.134050 1.187650 0.974334 0.319128 -0.614453 -0.669242 -0.021386 0.131332 -1.665872 -0.432961 0.600616 -0.508291 0.875901 1.465415 -0.161131 -0.446287 0.035136 0.345245 0.915132 1.649872 1.242105 -0.841346 0.073099 -0.126103 0.304559 -0.531320 0.420214 -1.056214 -1.202816 0.352063 -0.484984 -0.316767 0.100599 -0.121624 -0.494563 0.990305 -1.102099 0.308334 0.081748 -0.084322 -0.314688 -0.228063 -0.314097 1.528633 0.820235 0.088298 -0.208692 0.771118 0.491296 0.028699 0.300415 0.327346 0.323961 0.806414 -0.339472 -0.442004 -0.908433 -0.288773 0.477341 -0.186884 0.987699 0.789031 0.364343 -0.403377 0.369030 0.375596 -0.121078 0.234043 0.439096 0.035788 0.762756 0.163114 -0.402357 0.500477 -0.627588 -0.273441 -0.473713 -0.862144 -0.187709 0.036940 0.410711 0.863922 -0.173566 1.257046 -0.443377 0.251392 0.021396 1.207560 -1.318914 -0.479459 -0.474048 -0.486930 -0.107294 -0.256778 0.117806 -0.140078 0.080984 -1.019664 -0.349734 0.298117 0.368155 -0.371661 -0.217865 0.548598 0.055132 -0.382107 -0.553750 -0.585496 0.642328 0.011504 -1.641793 -0.716074 -0.095225 0.107838 -0.128345 -0.637955 -1.553745 0.251099 0.534182 -0.746105 -0.411591 -0.531548 0.702037 0.918784 0.306821 0.403277 -0.081727 0.728519 1.891401 0.189672 -0.709721 -0.078654 -0.304250 -0.303304 0.081048 -0.206619 -0.244402 -0.572751 -0.995980 0.662184 1.235028 -0.671780 0.371086 -0.244094 0.108123 0.290446 2.783096 -0.642985 1.183142 0.518912 -1.250160 0.463435 -0.793925 -0.383341 -0.455964 0.154885 0.669953 -1.131344 -0.867783 1.111549 1.064522 0.739336 -0.895755 0.831646 0.257497 0.208137 -0.242073 -0.037772 0.378184 0.376977 -0.884508 -0.279731 0.982859 2.423051 -0.198002 -0.823390 0.807941 0.312410 0.440415 -0.122491 -0.621918 -0.771573 0.106768 0.832211 0.314367 0.631658 1.416987 -1.433159 0.646807 0.030525 -0.603613 1.433522 0.226983 -0.870789 0.327106 -0.182888 1.008898 0.874971 -0.147212 0.206454 -0.249376 -0.596230 -0.180627 0.197268 0.290583 -0.455523 0.401740 0.537192 -1.298190 -0.363290 -0.670163 -0.159389 -0.178242 -0.622139 0.618290 -0.009022 -1.798577 1.434886 0.638075 -0.358180 0.129888 -0.946676 0.814391 -0.826163 -0.822010 0.679220 -0.546858 0.210502 0.366537 0.203379 0.258624 0.408744 1.137899 -1.198023 -1.029538 0.853815 0.538918 1.184373 0.474892 0.253078 0.018646 -0.258089 -0.100882 -0.477269 -0.905871 0.283805 0.303998 -1.110522 0.209239 -0.550587 0.998186 0.817882 -0.503896 -0.386993 -0.563380 0.310813 -0.927193 0.349742 0.630163 0.256644 -1.425111 -0.289629 0.850579 -0.431215 -0.207187 -0.550896 -0.187890 -1.013759 -1.059539 0.155749 -0.184070 0.300833 0.630758 -0.372841 -0.258964 0.131390 -0.001379 -0.022910 0.309966 0.977334 0.502187 0.186330 0.144717 -1.169985 0.532172 -1.363174 -1.499762 1.022536 -0.741089 -1.170405 -0.341989 0.138234 1.081229 -0.470205 0.197145 -0.339051 0.177255 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(unsigned long, int const&, std::allocator const&) = -0.841640 0.226928 1.533450 -2.869351 3.584266 1.677282 1.210784 -0.985136 -2.061542 -1.063375 0.160433 -1.485392 -1.877753 2.850241 -1.518427 1.666060 3.610438 0.261753 -0.444584 -1.145751 3.477634 -1.280419 4.368842 2.732841 -4.042335 -0.007843 0.845858 2.249064 0.946077 3.030699 -1.044663 -1.588060 1.458776 -1.799151 1.097501 -2.252905 0.710833 0.144811 0.424621 -3.803858 0.203811 -0.315552 -0.970963 0.340910 -0.535470 1.872563 3.049351 2.680879 -1.995944 1.010035 2.971198 0.653590 -0.081997 1.359331 0.096632 0.418476 1.477605 0.611389 -1.384269 -0.976976 -1.104829 -2.430795 1.071100 2.703040 3.892077 -0.284637 0.510497 1.610105 -0.495208 0.791734 1.467019 1.076077 0.427279 -0.087445 2.680394 -3.135275 -0.288755 -5.804714 -1.152420 -6.715882 -1.900826 -2.276692 0.961696 -0.707316 2.003761 -0.030198 3.504854 0.648016 0.322719 1.984445 3.143914 -2.748991 -0.768198 -2.637112 -1.994627 0.336292 -1.747766 -0.190778 1.198699 0.222355 -2.126583 -1.816467 1.047351 0.477666 -0.874104 -2.157462 -0.882415 2.787089 -3.141472 -1.744384 -2.148274 1.228299 -1.110803 -4.666683 -0.127797 -1.862212 3.176501 -0.479817 0.713133 -1.805021 0.410787 2.961429 -1.180230 -1.464690 -0.388689 3.047272 2.313145 0.598530 0.615650 -0.163321 -0.347412 3.176179 3.461825 -1.005425 -1.584963 0.097387 -1.309393 0.494362 -2.125630 0.057857 2.192570 -2.747465 0.251366 2.124049 -0.959749 -0.634686 2.527600 -0.751744 2.208967 8.005154 -0.479506 2.368538 1.190250 -3.177730 1.355412 0.092226 0.215516 1.978632 1.874573 -0.033489 -3.830612 -2.855157 1.506996 2.098719 1.700505 -4.030349 -1.371248 -1.081145 0.127960 -0.187405 -1.136700 1.331535 -0.756710 -1.940391 -0.350832 0.817986 4.968860 -1.564015 -3.043321 2.180029 1.189364 -2.168673 -3.070161 -1.788894 -1.542946 -0.008397 0.904853 -0.323003 1.359865 3.702335 -6.494176 2.289358 -0.635610 -0.625859 2.291923 -0.092978 -0.865477 -3.349046 0.099103 2.145130 2.450002 -0.046033 0.040984 0.681010 -2.508995 0.922044 0.114923 1.191880 -0.775172 1.025975 0.347637 -2.363095 -2.444346 -1.181572 -0.596204 -0.121461 -0.359975 1.136616 -0.301792 -6.526431 2.790488 -1.130221 -1.302120 1.560697 -0.165529 2.891843 -2.208534 -3.331585 1.911026 -0.417468 -1.236750 -2.572320 1.075027 1.978263 0.119857 0.561272 -2.167863 -4.220875 1.613469 -1.397483 1.496877 1.385045 1.361176 3.654123 -0.231993 -1.657979 -3.813074 -1.130270 0.834100 -0.272547 -2.140366 -0.931793 -0.534965 2.554356 3.210333 0.265357 -0.024140 -0.407548 3.718469 -3.582997 -1.252833 2.946085 2.195864 -2.155167 1.476467 2.980684 -2.316099 -2.120124 -1.351874 -0.127850 -0.187601 -2.441493 1.705795 -1.128664 1.217000 0.748466 1.106161 -1.149997 1.473320 0.435302 0.791802 -1.191222 4.104049 5.177261 -2.440835 -0.505786 -1.937112 1.382411 -4.024347 -2.887597 0.797792 -0.473453 -0.521245 1.446484 0.428087 3.125656 0.151258 -0.050185 0.032603 -1.104912 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::operator[](unsigned long) = -0.266031 0.273472 0.578600 -0.665664 0.726899 0.894815 0.175348 -0.499236 -0.473345 -0.032120 -0.024048 -0.677332 -0.382658 0.808713 -0.449189 0.366632 1.028336 0.143062 -0.271708 -0.071943 0.518336 0.096672 1.046719 0.899198 -0.758331 -0.016570 0.391612 0.359891 -0.028034 0.895691 -0.694934 -0.806954 0.226809 -0.245345 0.047364 -0.421826 -0.002929 -0.142238 0.354716 -1.027582 0.094934 -0.012845 -0.292041 -0.154629 -0.044706 -0.103539 0.989932 0.581571 -0.039497 -0.008419 0.468270 0.443461 -0.077707 0.157775 0.423415 0.325933 0.836111 0.087297 -0.242663 -0.244438 -0.234883 -0.043876 -0.074262 0.823667 0.856290 0.217648 -0.014996 0.030945 -0.102978 0.042518 0.046572 0.233761 0.031716 0.618540 0.178209 -0.537503 0.300036 -0.968056 -0.125332 -0.643491 -0.426604 -0.326989 -0.091716 0.112965 0.511232 -0.086516 0.874745 -0.060682 0.079132 0.116206 1.122013 -0.863999 -0.238957 -0.397708 -0.539706 0.015912 -0.337287 0.124299 -0.174956 -0.163317 -0.608269 -0.753805 0.274146 0.325982 -0.283103 -0.028880 0.018989 0.606754 -0.573984 -0.436909 -0.406449 0.106035 -0.282435 -1.180362 -0.473843 -0.427268 0.396890 0.007099 -0.337776 -1.033926 0.288321 0.779147 -0.338202 -0.480557 -0.115650 0.668019 0.542042 0.021962 -0.030953 -0.251910 0.274987 0.963347 0.429042 -0.416589 0.001175 -0.088654 -0.394701 -0.066357 -0.480239 -0.013866 -0.172423 -0.570078 0.082004 0.823574 -0.439300 0.162981 0.188816 -0.154592 0.396898 2.479929 -0.393280 0.598701 0.159887 -1.054369 0.366220 -0.118007 -0.241550 -0.032408 0.315259 0.460631 -1.224668 -0.619784 0.592172 0.812406 0.494801 -0.719223 0.031068 -0.260048 -0.123963 -0.144803 0.130385 0.170967 -0.282255 -0.515707 -0.291844 0.407832 1.526224 -0.418239 -1.081975 0.398535 0.067499 -0.082873 -0.390253 -0.250999 -0.347187 0.160872 0.293686 -0.126194 0.544348 0.959485 -1.653267 0.701527 -0.120327 -0.603463 0.938837 -0.042326 -0.372853 0.039212 0.128127 0.796717 0.684820 0.142332 -0.008908 -0.036525 -0.696518 -0.090790 0.046045 0.406712 -0.399801 0.379029 0.454687 -1.004278 -0.606299 -0.376286 -0.029547 -0.487261 -0.483230 0.352499 -0.214754 -1.649388 1.052142 0.296256 -0.060892 0.255131 -0.319786 0.413041 -0.725083 -0.933709 0.404265 -0.099455 0.093668 -0.014644 -0.018954 0.458489 0.234718 0.588773 -0.777845 -0.953074 0.257661 0.004475 0.630209 0.285803 0.375225 0.441001 0.021945 -0.153436 -0.632543 -0.384462 0.526101 0.152614 -0.593219 -0.177613 -0.297091 0.756060 0.781009 -0.122687 -0.231231 -0.500767 0.666194 -0.583010 0.086081 0.451508 0.302150 -0.745859 -0.274936 0.549286 -0.412711 -0.414909 -0.280259 -0.268462 -0.468277 -0.697478 0.214910 -0.287441 0.234022 0.340360 -0.037141 -0.377574 0.224972 0.098264 0.037977 0.216056 0.702369 0.669203 -0.321058 0.216977 -0.699744 0.454145 -1.034019 -0.883215 0.372134 -0.426651 -0.470277 -0.069279 -0.054696 0.619011 -0.101359 0.279918 0.081095 -0.160975 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__printArr(std::vector >, int) = -0.546937 -0.459355 0.231792 -1.487769 0.711089 0.317697 0.346725 -0.353793 -1.468249 -0.758241 0.429687 -1.557917 -0.565628 1.655746 -0.622097 0.764053 2.083517 0.349887 -0.572540 -0.364986 1.433610 -0.604756 1.847856 1.854107 -1.519853 -0.200268 0.070578 1.118325 0.646712 0.465792 0.507885 -0.858433 0.309663 -0.901508 0.211635 -1.133836 0.393356 0.533261 0.464725 -2.329956 0.304470 0.459346 0.450297 -0.325686 -0.291452 0.513944 1.039414 1.340567 -0.676503 0.372730 1.472963 0.397696 -0.155181 0.264884 -0.007670 -0.262612 0.212074 -0.210133 -0.595786 -0.345300 0.011034 -0.842726 0.405947 1.455404 1.920893 0.048074 0.103537 0.555577 0.314312 0.484494 0.785126 0.230453 -0.242673 0.050886 0.788590 -1.641377 -0.093120 -3.013407 0.019529 -3.571117 -0.877014 -0.218008 1.494555 0.552708 0.265179 -0.124013 1.438953 -0.034159 -0.132057 1.671949 1.587400 -0.753210 -0.653612 -1.170796 -1.101538 0.878466 -0.879293 0.017044 0.637723 0.736534 -1.100255 -0.450827 0.343543 0.380576 -0.556114 -0.675692 0.133897 1.158723 -1.474109 -0.724556 -0.300083 1.099627 0.119309 -2.329527 -0.170230 -1.277388 0.760261 -0.015562 -0.346380 -0.657722 0.036735 0.530621 -0.414728 -0.147920 -1.372540 1.200535 0.537735 0.442744 0.132292 0.217186 0.330469 1.554350 0.408411 -0.964361 -0.138707 0.246191 -0.655394 0.268579 -1.227661 -0.615268 1.052140 -1.316629 0.208139 0.633608 -0.827506 -0.831632 0.667936 0.070548 0.654243 4.664715 0.165016 1.695430 1.099431 -1.211176 0.726179 -0.180260 0.008310 0.587560 0.719089 0.036269 -1.550212 -1.255938 0.631297 1.467692 1.088039 -1.241876 -0.555959 -0.070888 -0.180902 0.034991 0.010006 0.367371 -0.366734 -1.004150 -0.324080 1.130079 2.350037 -0.087388 -0.202412 0.490959 1.097550 -0.871493 -1.551777 -0.325437 -0.819499 0.286473 0.176315 0.021669 0.950629 1.813728 -3.086319 1.291029 0.256721 0.399173 0.753974 0.071909 -1.303066 -2.629875 -0.057919 0.925342 1.649836 -0.495098 0.343077 0.604929 -1.298788 -0.039248 0.307510 0.189752 -0.449760 0.575120 -0.031875 -0.571841 -0.918887 0.113602 -0.682383 -0.055559 -0.287856 0.794425 0.368311 -2.065545 1.414027 -0.445785 -0.555744 -0.012107 -0.506418 1.121071 -1.589642 -1.364028 0.654588 -0.138858 -0.918855 -1.048256 0.112460 0.961102 -0.052812 0.189602 -0.600727 -1.557377 1.069456 -0.859008 0.982666 0.585386 -0.120530 1.069277 0.206082 -0.213133 -1.396077 -0.662566 -0.072053 -0.259135 -1.273311 -0.040063 -0.229214 1.122686 1.222783 -0.174605 -0.918037 0.442656 1.646718 -0.843425 -0.830909 0.791629 0.042411 -1.181742 0.688093 1.087508 -1.866817 -0.050133 -1.142923 0.025610 -0.116397 -1.137179 0.899138 0.031069 0.765704 0.157664 0.238960 -0.261887 0.717896 0.591748 0.099908 0.167540 2.086824 1.633346 -0.470854 -0.104879 -1.550779 0.490745 -1.869827 -1.684164 0.322134 0.212585 -0.726199 0.372299 0.067066 1.449466 0.335743 0.153538 -0.355086 0.421846 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = -8.435754 -0.718229 10.307546 -20.263420 24.207081 13.029058 8.755599 -3.711659 -17.615168 -6.962409 0.921086 -15.525024 -16.895330 25.854126 -8.442665 15.657395 27.224952 1.398125 -7.776968 -4.835157 27.057097 -10.001616 29.986861 15.995956 -26.929488 -1.496887 1.626883 17.962490 3.785106 22.222277 -5.677512 -12.339738 6.893985 -11.718701 7.340735 -14.300980 8.473631 3.315415 0.567603 -30.893565 2.198028 9.218087 -1.950922 -3.037675 -6.128980 10.562284 19.556338 22.268780 -11.445698 2.448071 19.411106 1.428744 -1.432941 8.714859 0.347357 2.728569 8.217766 0.018676 -16.011638 -8.736150 -4.065888 -19.297535 6.942337 19.296808 29.191356 -3.402803 3.513463 16.024876 -3.725559 7.280570 9.061447 4.725206 1.308185 -2.756855 19.255149 -16.236369 -4.717534 -31.444390 -5.362062 -45.772688 -15.360934 -14.784841 12.060389 4.675371 11.947253 -7.015636 28.390439 0.515454 -0.748374 18.872469 25.842037 -20.337980 -8.091733 -27.481414 -13.545986 5.510768 -15.854214 -7.367036 12.337710 2.243812 -17.547255 -10.428774 5.417442 5.463605 -6.881180 -13.725947 -7.043730 22.744864 -22.684640 -15.065407 -14.930588 13.234006 -5.746868 -35.197754 -1.816062 -10.266356 11.456643 -2.078540 6.989716 -12.290339 3.892986 19.703631 -8.771176 -10.825679 -10.876482 25.369843 13.194815 0.706654 7.942242 3.170192 0.109610 21.980028 21.890046 -8.871230 -13.052607 3.998041 -9.714712 4.748514 -14.055511 -3.240360 11.185744 -22.692074 -1.161355 14.633673 -7.817752 -2.563054 4.101536 -2.319726 16.588931 57.144150 -1.299354 16.927411 5.663068 -23.235031 18.153827 -0.705408 -3.703513 9.793347 11.013514 -1.149739 -26.657221 -21.782960 13.876794 17.792937 15.389751 -24.042500 -5.715347 -8.848175 1.161471 -3.362405 -5.220348 14.714393 -3.126718 -15.221160 -4.984014 6.374214 41.037407 -11.884737 -19.677806 20.984660 9.152750 -15.895647 -25.296222 -12.464192 -9.761369 -4.933270 3.169997 -3.352218 12.317755 29.823527 -38.679175 20.206231 -1.262781 -6.876004 18.996076 -7.475548 -7.868874 -27.734086 -3.889609 18.682554 24.504237 -3.458393 -1.141231 1.186026 -19.642337 6.738870 1.514930 6.378113 -1.476175 7.857661 -4.257488 -14.313882 -17.699145 -8.965524 -9.364642 -0.435210 -3.556508 6.807579 3.207236 -37.565606 25.244124 -9.367671 -6.193718 9.256298 2.381228 19.793586 -16.496793 -26.538010 14.996478 -0.187810 -13.133825 -19.087527 6.733326 16.166372 2.245579 -0.763585 -11.710656 -32.646849 14.995065 -8.529800 12.750859 7.302494 7.757093 22.319183 11.626023 -13.463262 -23.033694 -14.929536 1.857588 -3.518766 -15.070707 -4.409608 -2.832329 21.643114 17.983492 1.506605 -3.959784 -6.731212 28.433469 -19.915130 -12.369104 21.614396 3.045352 -18.192472 8.807978 24.974777 -19.261679 -14.114964 -15.277578 2.514206 -5.888189 -18.898247 7.872065 -6.375314 6.811331 7.750175 5.106823 -8.304917 8.086415 6.982510 -0.289314 -11.550785 37.919937 29.320612 -17.989935 -0.324410 -17.089708 11.064546 -27.905834 -20.022234 6.126696 -0.296455 -5.037318 10.204575 8.704618 20.295489 -0.410343 -1.580038 -1.653823 -11.388421 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.944690 0.419912 1.692729 -3.046449 4.226919 1.827091 1.199719 -0.670022 -2.011258 -1.176685 -0.268846 -1.941571 -2.301725 3.610730 -1.721653 2.111599 4.391711 0.378343 -0.260882 -0.883683 3.842159 -1.397348 4.838171 2.348111 -4.586349 -0.328837 1.183279 2.532356 0.792720 3.552883 -1.090200 -2.348374 1.599086 -2.093038 1.216415 -2.635335 1.301142 -0.037053 0.195851 -4.630594 0.289638 0.207208 -1.194735 0.101197 -0.637762 2.016105 3.590236 3.221954 -2.570425 0.870596 2.992874 0.800089 -0.301235 1.522543 -0.566511 0.450568 1.330336 0.332163 -2.420880 -1.054489 -0.991057 -3.092871 1.142732 3.023313 4.538081 -0.494202 0.814084 2.540184 -0.608561 0.852358 1.487903 0.834341 0.621216 0.262715 3.104816 -3.046919 -0.934026 -6.058519 -1.618537 -7.991142 -2.086833 -2.986616 0.976588 -0.519910 1.827282 -0.239866 3.891888 0.738471 0.943756 2.759860 4.066152 -3.176430 -1.266789 -4.196682 -2.132678 0.857892 -2.328302 -0.844798 1.862786 -0.049451 -2.437924 -2.455592 0.758486 0.733126 -0.924846 -2.534559 -1.055600 3.354427 -3.785560 -2.594818 -2.900320 1.030587 -1.554881 -5.586244 -0.225279 -1.111464 3.227682 -0.018753 1.503899 -2.433079 0.402856 3.740443 -1.216468 -1.716672 -0.390973 3.770740 2.352762 0.553026 1.122174 0.069149 -0.009746 3.626960 4.272331 -1.040624 -2.138085 0.421727 -1.693462 0.020102 -2.570470 -0.360736 2.230827 -3.581089 0.286991 2.922257 -1.374489 -0.706470 1.945172 -1.101744 3.135024 8.651739 -0.440707 2.314267 0.752971 -4.205201 1.650424 0.006145 -0.397326 1.548561 1.943121 0.465727 -3.901222 -3.131803 1.588597 2.265710 2.254204 -4.150068 -1.358741 -1.819688 0.198722 -0.106307 -1.513238 2.414726 -1.177080 -2.430220 -0.325985 0.984835 5.886522 -1.943223 -3.762174 2.767953 1.839388 -2.477079 -3.651618 -1.904245 -1.858077 -0.473358 0.932071 -0.565188 1.346744 4.446134 -7.124556 2.843196 -0.192523 -0.770523 2.268884 -0.594388 -1.000732 -4.067867 0.106162 3.154148 2.981680 -0.113740 0.262145 0.316535 -2.570061 1.197417 0.314517 1.576786 -0.114365 0.907406 -0.168750 -2.821951 -3.054920 -0.889045 -0.802153 -0.263304 -0.412736 1.065322 0.325306 -7.237683 3.707654 -1.812619 -1.429909 1.963490 -0.041779 3.427322 -3.092521 -4.178978 2.162852 -0.470698 -1.605352 -2.773340 1.141416 2.360154 0.489686 0.339907 -1.907981 -5.200456 1.415293 -1.331924 1.122653 1.531491 1.642562 4.344709 -0.024073 -2.082530 -4.118654 -1.849951 0.616529 -0.449683 -2.100318 -1.017821 -0.387633 3.349720 3.819993 -0.066451 -0.224704 -1.068874 3.828123 -3.965209 -1.523554 3.574295 1.673767 -2.638527 1.244686 3.706252 -2.870916 -2.495262 -1.504431 0.704698 -0.327697 -2.828121 1.047214 -1.842667 0.760852 1.295884 0.892791 -1.626232 1.437282 0.597904 0.650108 -1.823665 4.748521 5.577787 -3.362444 -0.106556 -2.181098 1.619877 -5.051522 -3.580903 1.017678 -0.569838 -0.283152 1.947154 1.081761 2.960698 -0.253670 0.152707 -0.002746 -1.859913 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(std::vector > const&) = -2.174347 2.060583 4.372427 -5.304285 7.123591 4.239151 2.501854 -1.520786 -3.735888 -2.641176 -0.467254 -4.577250 -5.845145 6.947700 -3.087005 2.594116 8.630128 0.891484 -1.385858 -1.593970 6.434215 -2.500379 9.279919 6.054224 -8.019589 -0.263564 2.553066 4.327102 0.652496 7.241023 -3.486074 -5.106091 2.830481 -2.336002 2.972566 -3.985907 1.369295 -1.125514 -0.506647 -8.815869 0.338479 1.048582 -1.814723 -0.575507 -1.203422 3.687197 8.203712 5.897225 -3.051134 0.035245 4.959814 1.366989 -0.323007 2.551921 1.402652 0.871843 3.877848 1.202592 -4.137729 -1.983144 -2.345702 -5.418168 0.764542 6.377842 8.262244 0.131164 0.968948 2.707503 -1.752286 1.698108 1.280832 1.944766 2.350719 1.637286 5.061163 -4.764581 -0.359247 -10.266049 -2.382217 -13.813631 -4.536699 -5.476991 1.771716 -0.335872 3.730753 -1.650394 8.132061 0.966376 1.392495 3.560837 9.237127 -6.586795 -2.328548 -6.603323 -3.792383 0.985761 -4.205298 -0.478190 2.794318 -1.034384 -5.487625 -4.482370 2.065955 1.436875 -1.970400 -2.780031 -1.684469 6.418356 -6.413852 -3.237949 -6.257522 0.745718 -1.469907 -10.866351 -0.528888 -2.512417 4.839111 0.153061 0.325706 -5.156628 1.860554 6.801615 -2.709977 -3.623766 -1.970649 7.810268 3.998924 0.292270 1.808446 -0.004080 0.719522 6.365841 7.782016 -2.165620 -2.906652 -0.037201 -4.152725 0.068824 -4.133580 -0.365923 3.516052 -5.889744 0.015678 5.077733 -2.939038 -0.553975 2.540197 -2.161396 5.376852 17.275200 -2.174814 4.641469 0.902683 -8.051026 4.753842 -0.325106 -1.692903 1.747916 4.152095 2.002132 -8.269654 -5.989252 4.469038 5.851432 4.224174 -7.709017 -1.065780 -2.926187 0.234184 -1.650173 -0.996384 3.412116 -1.297396 -4.515543 -1.630788 2.630576 11.582133 -4.338971 -8.635703 4.880962 1.627469 -2.242236 -6.199728 -3.140238 -2.287062 -0.233179 1.271937 -1.255932 3.622660 8.733037 -13.478769 5.993594 -1.102110 -3.356375 6.643332 -1.463341 -1.928161 -6.025870 0.920496 6.881167 6.053276 0.983893 -1.005495 -0.558373 -5.887377 1.001906 0.157363 3.747629 -1.632872 2.711733 0.308330 -6.144692 -6.239001 -4.332568 -1.165842 -1.546391 -1.845276 2.149488 0.065632 -14.125062 8.709518 -1.329817 -1.791022 2.044647 -0.479781 4.470237 -5.697141 -8.794048 3.620613 -1.422628 -3.249460 -4.459387 1.281830 4.316386 0.760983 0.882112 -4.499685 -9.710802 4.489598 -1.452040 4.530389 2.491671 4.117488 8.072814 2.876349 -3.764968 -6.909294 -3.379016 2.433363 -1.201165 -4.904138 -1.732943 -1.498500 6.187431 7.225592 -0.511569 -0.110981 -2.759476 7.359015 -6.949743 -2.780149 6.368802 2.860319 -4.823654 1.780115 6.830550 -4.661838 -5.510803 -3.933756 -0.976440 -2.035421 -6.478701 1.456521 -3.864522 1.491046 3.312443 0.795373 -3.192509 2.269505 1.025516 0.604104 -2.057037 8.536592 9.992832 -6.211664 0.682050 -5.140169 3.783197 -9.359270 -6.875314 2.443137 -1.281334 -1.138382 1.802800 1.682677 5.138908 -0.853302 -0.426422 -0.384377 -2.815422 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base() = -0.167944 0.100040 0.440813 -0.456775 0.388784 0.178000 0.128137 -0.112888 -0.416530 -0.206675 -0.072057 -0.343392 -0.297784 0.558810 -0.276790 0.093629 0.791991 0.319229 -0.113596 -0.209750 0.327844 -0.225313 0.682369 0.681538 -0.560342 0.009882 0.204343 0.408213 0.127314 0.617135 -0.279134 -0.411288 0.158157 -0.050890 0.213445 -0.535043 0.053129 0.074426 -0.069933 -0.891729 0.099860 0.009807 0.043397 -0.062078 0.015667 0.289653 0.579362 0.413790 -0.123425 0.110642 0.370004 0.315512 0.001624 0.148451 0.190170 0.185333 0.490223 -0.091584 -0.220462 -0.024781 -0.122465 -0.395832 0.038801 0.527690 0.650435 0.079117 0.042027 -0.062039 -0.036260 0.123907 0.160983 0.095182 0.044169 0.183352 0.160601 -0.427818 0.165409 -0.903462 -0.063395 -1.124467 -0.318443 -0.343358 0.296364 0.097413 0.129294 0.031506 0.593654 0.012122 0.153883 0.192746 0.668413 -0.429487 -0.195947 -0.294989 -0.328744 0.202620 -0.259171 -0.040244 0.023092 0.104032 -0.370940 -0.401118 0.286854 0.083172 -0.212037 0.038379 -0.039724 0.491503 -0.640823 -0.208467 -0.430761 0.103032 -0.036075 -0.725387 0.008007 -0.394591 0.452735 0.023464 -0.157231 -0.398525 0.152192 0.423549 -0.206170 -0.090430 -0.447722 0.500045 0.150435 -0.081159 -0.000914 -0.113291 0.029605 0.434557 0.336794 -0.340430 -0.082624 0.133132 -0.367498 -0.123422 -0.495327 -0.089893 0.195770 -0.434991 0.069433 0.270446 -0.346879 -0.120857 0.149727 -0.128604 0.363331 1.332610 -0.158177 0.346812 0.156866 -0.571668 0.242998 0.035413 -0.069966 0.151065 0.367147 0.184922 -0.519380 -0.450067 0.170116 0.523698 0.380254 -0.398978 -0.168845 -0.265580 -0.067244 0.061713 0.069743 0.094128 -0.259126 -0.334126 -0.176438 0.124065 0.841268 -0.100070 -0.509873 0.124156 0.089078 -0.245977 -0.389369 -0.116011 -0.135528 0.099547 0.014406 -0.108595 0.322367 0.663963 -1.312951 0.548517 -0.112428 -0.197402 0.433632 -0.097145 -0.156318 -0.495634 0.079091 0.458252 0.639482 0.019265 0.036259 0.112811 -0.504220 -0.080656 -0.005135 0.350170 -0.279625 0.233544 0.271955 -0.543776 -0.361063 -0.243808 0.006305 -0.188178 -0.193571 0.225081 0.029446 -1.178629 0.609234 -0.076822 -0.093345 0.180824 -0.062488 0.222563 -0.550725 -0.583009 0.191782 0.024372 -0.158837 -0.270214 0.007036 0.446852 -0.137361 0.155757 -0.324109 -0.554315 0.259023 -0.150182 0.301700 0.216473 0.161442 0.471599 0.165688 -0.098446 -0.411682 -0.043367 0.133671 -0.215417 -0.216238 0.111989 -0.177370 0.417859 0.692838 0.002376 -0.084317 -0.016211 0.648157 -0.333248 -0.182283 0.366676 0.107434 -0.226237 0.206130 0.428847 -0.534577 -0.386545 -0.299287 -0.129248 0.003159 -0.383613 0.290002 -0.306362 0.172665 0.230154 0.055569 -0.319368 0.288333 0.078424 -0.027485 0.050205 0.647027 0.664014 -0.239263 0.256939 -0.379204 0.213858 -0.710196 -0.390414 -0.013372 -0.083269 -0.230040 0.140685 -0.093403 0.433561 -0.037074 0.196143 -0.017961 -0.081867 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = -0.288993 0.018104 0.553972 -0.621039 0.474074 0.103172 0.204352 -0.202083 -0.571024 -0.274026 -0.060595 -0.302372 -0.319409 0.798348 -0.357667 0.287931 1.188231 0.502490 -0.160828 -0.419068 0.711137 -0.675104 1.009619 1.018330 -0.864294 -0.049087 0.532198 0.651340 0.438609 0.667750 -0.434145 -0.240412 0.318557 -0.513000 0.356060 -0.932755 0.169720 0.166287 0.053203 -1.294872 0.124979 -0.342970 0.035109 -0.067703 -0.116499 0.672538 0.719809 0.645789 -0.326632 0.221999 0.641979 0.203398 -0.051362 0.234579 0.190487 0.385743 0.624953 0.285946 -0.282399 -0.027140 -0.144577 -0.763938 0.291063 0.759176 1.012763 0.033880 0.135432 0.206819 0.038141 0.144789 0.294141 0.116063 0.017476 0.100151 0.401006 -1.258048 0.159418 -1.823065 -0.245388 -2.068938 -0.440632 -0.550267 0.315254 -0.496525 0.354434 0.283907 0.835485 0.082990 0.214985 0.330426 0.923286 -0.783467 -0.316291 -0.510471 -0.427597 0.304667 -0.474952 -0.045691 0.419846 0.040245 -0.526384 -0.697694 0.590575 0.261147 -0.308559 -0.254187 -0.084951 0.774835 -0.880991 -0.545127 -0.708413 -0.036917 -0.231859 -1.084340 0.361329 -0.642134 1.047840 0.044991 -0.141734 -0.730475 0.132596 0.807419 -0.211345 -0.354527 -0.261939 0.755621 0.288517 -0.054316 0.038952 -0.169030 -0.033171 0.749344 0.867462 -0.478716 -0.208736 0.246805 -0.818958 -0.147444 -0.842705 -0.262756 0.692355 -0.711220 -0.000583 0.433861 -0.501328 -0.171989 1.142351 -0.116568 0.580557 2.104904 -0.082021 0.475764 0.272216 -0.814068 0.395380 0.003877 -0.008897 0.396845 0.629680 0.149081 -1.201116 -0.699921 0.145562 0.728121 0.557678 -0.891268 -0.682607 -0.517894 -0.039743 0.165542 -0.098289 0.187221 -0.384831 -0.473004 -0.202225 0.193573 1.259515 -0.403754 -0.603259 0.176463 0.034989 -0.599481 -1.174229 -0.258151 -0.399526 0.143318 -0.169822 -0.113082 0.434051 0.969285 -1.975103 0.752236 -0.411997 -0.240798 0.626050 -0.027483 -0.260997 -1.169825 0.187225 0.610902 0.895462 0.021295 0.043749 0.308990 -0.761653 -0.080012 -0.055661 0.507678 -0.332999 0.335881 0.316055 -0.712616 -0.571215 -0.081857 0.047475 -0.363740 0.037874 0.355770 -0.091901 -1.742668 0.835357 -0.278786 -0.227591 0.464801 -0.030935 0.405780 -0.876662 -0.894361 0.389303 0.188163 -0.055158 -0.612601 0.077464 0.743009 -0.243524 -0.014816 -0.431733 -1.009727 0.267750 -0.421929 0.384662 0.294792 0.214114 0.924979 0.000000 -0.187040 -0.885966 0.181832 -0.163339 -0.310559 -0.389602 -0.290019 -0.149498 0.704581 1.060788 0.027127 0.068523 0.173895 1.010694 -0.895273 -0.391421 0.562140 0.663183 -0.339353 0.353084 0.622024 -0.950201 -0.584696 -0.337492 -0.314107 0.151500 -0.579772 0.482551 -0.493319 0.308082 0.260114 0.185800 -0.223760 0.495177 0.161866 0.169563 -0.033750 0.942201 1.469036 -0.537325 -0.011405 -0.569827 0.297337 -1.079584 -0.631111 0.023929 0.190912 -0.287954 0.311739 0.131858 0.700720 0.006836 0.060114 -0.002836 -0.269116 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.069297 -0.064289 0.477072 -0.348515 0.141210 -0.147876 0.090377 -0.036963 -0.401599 -0.028956 -0.072823 -0.160208 -0.023861 0.367380 -0.086421 0.179958 0.619896 0.381598 -0.129142 -0.284803 0.287787 -0.653378 0.425727 0.599025 -0.443586 0.097557 0.145411 0.483291 0.332459 0.535866 -0.423907 0.184658 -0.026646 -0.254068 0.354523 -0.630111 0.013419 0.209093 -0.012570 -0.880928 0.074490 0.004177 0.444824 -0.018387 0.054903 0.456166 0.312462 0.288176 -0.115777 0.182556 0.284578 -0.137101 0.229129 0.080910 0.221254 0.394399 0.788333 0.227911 -0.170640 0.135031 -0.013192 -0.554447 0.339174 0.338223 0.538093 -0.031201 -0.009075 -0.051472 0.218365 0.007737 0.234455 0.100402 -0.219516 -0.040806 0.154155 -0.753472 0.517189 -0.857862 0.038050 -1.028158 -0.299275 -0.266414 0.309018 -0.174257 0.195586 0.102759 0.467201 -0.092598 0.136797 -0.159428 0.319669 -0.396478 -0.130467 -0.163372 -0.229398 0.187230 -0.165699 -0.234177 0.365330 0.078513 -0.208820 -0.214907 0.630926 0.153819 -0.230515 0.253701 -0.056658 0.400104 -0.427292 -0.423609 -0.347220 -0.062881 -0.171192 -0.422710 0.557799 -0.459845 0.277036 0.029587 -0.075347 -0.359687 0.053436 0.341766 -0.131129 -0.051088 -0.668267 0.566579 0.045425 -0.154975 0.011703 -0.118960 -0.102687 0.161935 0.368544 -0.330821 -0.096115 0.339969 -0.561206 -0.108919 -0.492343 -0.259763 0.405201 -0.367436 -0.322089 -0.021396 -0.268963 0.233642 0.585458 0.141228 0.227557 1.034991 -0.003292 0.228925 0.128548 -0.290012 0.540749 0.263968 0.053114 0.304006 0.354315 0.020638 -0.847627 -0.360777 -0.108122 0.393627 0.270732 -0.400123 -0.545088 -0.317252 -0.082176 0.330575 0.037274 -0.013843 -0.188438 -0.248792 -0.083338 -0.184803 0.726920 -0.125309 -0.349160 -0.031310 -0.296840 -0.571192 -0.908280 -0.080127 -0.322769 0.032344 -0.624109 -0.064129 0.223562 0.436282 -1.111906 0.508826 -0.355648 -0.265050 0.692700 -0.272629 -0.039342 -0.953278 -0.014999 0.151413 0.608672 -0.080373 -0.193816 0.264534 -0.418020 -0.045087 -0.155575 0.221286 -0.279323 0.245483 0.133518 -0.326376 -0.114406 -0.186612 0.081555 -0.225914 -0.024950 0.178391 0.009884 -0.665837 0.261818 -0.116561 -0.122512 0.405407 0.106955 -0.137304 -0.411840 -0.292267 0.060297 0.286674 0.045969 -0.505306 -0.050164 0.375256 -0.335374 -0.296703 -0.277579 -0.477388 0.083341 -0.494463 0.145917 0.232019 -0.089636 0.269035 0.685082 -0.070880 -0.350506 0.392643 -0.507459 -0.281417 -0.014370 -0.207729 -0.184781 0.303205 0.600605 0.128377 0.344656 0.118798 0.634878 -0.251328 -0.346508 0.244164 -0.153580 -0.048401 0.181387 0.286497 -0.544081 -0.246491 -0.209735 -0.378970 0.258322 -0.081952 0.452709 -0.273572 0.127267 0.073906 -0.004315 -0.125640 0.302277 0.034674 -0.070667 -0.042976 0.693190 0.630832 -0.117687 0.122517 -0.215844 0.128123 -0.448763 0.039478 -0.228055 0.311218 -0.327219 0.213471 0.297652 0.365859 0.111155 -0.048926 0.032314 -0.175135 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::char_traits::length(char const*) = -0.096722 -0.045213 0.204765 -0.277349 0.182037 -0.060294 0.081948 -0.083201 -0.288270 -0.214539 0.091606 -0.286591 -0.172814 0.324777 -0.197587 0.090201 0.432303 0.138259 -0.066975 -0.216012 0.208055 -0.209370 0.446878 0.442908 -0.406809 -0.010111 0.094699 0.296655 0.236799 0.191505 0.007800 -0.164444 0.120905 -0.093997 0.120114 -0.267535 0.090564 0.079788 -0.008443 -0.511359 0.039391 -0.014510 0.105743 -0.000388 -0.016886 0.316994 0.264207 0.287020 -0.139102 0.198517 0.362074 0.096987 0.014978 0.079818 0.018305 -0.068402 0.248518 -0.097265 -0.147682 -0.001123 -0.006286 -0.343971 0.038885 0.343397 0.458152 -0.014877 0.051499 0.036609 0.020536 0.113561 0.203804 0.064308 -0.014122 0.071044 0.174263 -0.346001 0.079975 -0.735793 -0.065503 -0.959904 -0.212990 -0.155724 0.356918 0.027035 0.030658 0.116340 0.346152 0.121498 0.013729 0.221372 0.370789 -0.201987 -0.164343 -0.130021 -0.195898 0.204185 -0.239200 0.049109 0.080658 0.214210 -0.223537 -0.139192 0.185917 0.033321 -0.139697 -0.032816 -0.042303 0.248312 -0.465653 -0.112602 -0.208493 0.080003 0.067811 -0.476420 0.104333 -0.254164 0.399065 0.022522 -0.047768 -0.091381 0.013866 0.153857 -0.087880 0.019831 -0.393105 0.244930 0.095993 0.082269 0.021460 0.018513 0.064582 0.270423 0.149713 -0.229026 -0.090342 0.069401 -0.199083 0.047220 -0.295014 -0.105285 0.288597 -0.275142 0.125456 0.055223 -0.195964 -0.234847 0.183917 -0.029378 0.183742 0.670335 0.034321 0.278283 0.204750 -0.268159 0.053431 -0.057517 0.042115 0.187120 0.216149 0.003374 -0.144640 -0.288536 0.093140 0.318943 0.212673 -0.292335 -0.165872 -0.042755 0.006390 0.047372 0.013133 0.093134 -0.151714 -0.183920 -0.073819 0.149293 0.411462 -0.003034 -0.107453 0.043481 0.111836 -0.180226 -0.299978 -0.053658 -0.047225 0.103540 -0.007665 0.033724 0.165214 0.399068 -0.870327 0.301069 0.002725 0.065933 0.165200 -0.016248 -0.204466 -0.550638 0.073261 0.185138 0.318212 -0.017814 0.076468 0.196601 -0.316276 -0.029291 -0.001260 0.127424 -0.143785 0.131775 0.121774 -0.207880 -0.252010 -0.076832 -0.009458 0.012316 -0.058051 0.188265 0.082269 -0.722256 0.297119 -0.170421 -0.186049 0.019174 -0.072150 0.204790 -0.396789 -0.290060 0.085525 -0.087582 -0.237166 -0.298288 0.016060 0.189855 -0.157940 0.027775 -0.125107 -0.224554 0.189426 -0.207519 0.126750 0.139677 0.015755 0.319574 0.003620 -0.047019 -0.259577 0.092416 0.028839 -0.232718 -0.159655 0.165307 -0.054619 0.214941 0.394730 0.000000 -0.077798 0.178885 0.372993 -0.225689 -0.264347 0.195604 0.148281 -0.115828 0.300770 0.219456 -0.413800 -0.103842 -0.245007 -0.107693 0.054741 -0.228486 0.253455 -0.102066 0.167557 0.084033 0.100300 -0.138993 0.238611 0.032313 0.003074 -0.001002 0.445741 0.550241 -0.160661 0.081559 -0.321270 0.098058 -0.439212 -0.318371 0.023184 0.063264 -0.132596 0.118207 -0.076956 0.293369 0.087360 -0.010288 -0.109960 0.093829 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -1.533596 -0.188933 2.070476 -4.448228 5.174714 1.811431 1.646188 -0.597310 -3.243866 -1.806904 -0.126507 -2.859501 -2.943544 4.702638 -2.069150 3.075018 6.297585 0.853093 -0.872288 -1.408360 5.337265 -2.221914 6.487498 3.815006 -5.958630 -0.472085 1.378510 3.841798 1.403689 3.889753 -1.565659 -2.508836 1.996699 -3.096590 1.792116 -3.809600 1.838984 0.384651 0.436876 -6.479256 0.539118 0.255220 -0.967649 -0.085041 -1.107647 3.163708 4.387852 4.536904 -3.466550 1.033785 4.562273 0.762600 -0.470532 2.044075 -0.782227 0.748596 1.524815 0.660179 -3.018401 -1.606687 -1.011034 -4.435743 1.857609 4.038780 6.115844 -0.793316 0.906493 3.443399 0.008280 1.067687 2.459258 1.028611 0.707888 -0.560039 4.174598 -4.953836 -1.080873 -8.962505 -1.780991 -11.727424 -3.039106 -3.745751 2.117254 -1.058651 2.433758 -0.350272 5.640201 0.427712 1.017395 3.675555 5.073801 -4.505375 -1.914810 -5.637837 -2.833899 1.492185 -3.360231 -1.344629 3.027311 0.498910 -3.347958 -2.811032 1.425811 0.977363 -1.406005 -3.625778 -1.139409 4.553277 -4.925551 -3.524395 -4.022641 2.026300 -1.483401 -7.393903 0.452778 -2.123992 4.321246 -0.277654 1.427611 -3.117508 0.366892 4.445925 -1.832007 -2.034030 -1.334656 5.033172 3.041637 0.562854 1.649014 0.169569 -0.023841 4.978646 5.664532 -2.097587 -2.995241 1.018613 -2.857329 0.285633 -3.904844 -0.941036 3.818782 -5.023587 0.234651 3.399095 -2.123451 -0.992220 3.633554 -1.007319 3.956643 11.951805 -0.234793 3.301805 1.536310 -5.142162 2.867323 -0.161580 -0.308044 2.437838 2.880413 0.120083 -5.657157 -4.493210 2.115355 3.552625 3.299997 -5.727807 -2.118346 -2.072503 0.511285 -0.144752 -2.039809 3.175723 -1.255936 -3.120351 -0.623260 1.595107 7.955713 -2.322621 -4.176990 3.520316 2.658143 -3.572467 -5.663425 -2.663875 -2.902218 -0.535671 0.959037 -0.420837 2.173748 6.269885 -9.677430 3.839407 -0.612712 -0.650154 3.373769 -0.562713 -1.589369 -6.565079 -0.028215 3.881327 4.643687 -0.568705 0.521262 0.858252 -3.700302 1.272050 0.386126 2.009677 -0.313273 1.254204 -0.210369 -3.273636 -3.637295 -1.232123 -1.308848 -0.352426 -0.088416 1.716476 0.408836 -9.371288 4.971517 -2.557247 -1.953305 2.551834 -0.292036 4.603952 -4.381431 -5.396002 3.228607 -0.131979 -2.008161 -4.044928 1.603954 3.715034 0.041946 0.090349 -2.499431 -7.067443 2.598812 -1.955119 2.144029 1.891014 1.582129 5.666096 0.356059 -2.480476 -5.552136 -2.087647 -0.157435 -0.967751 -3.014247 -1.428898 -0.403998 4.506297 5.013331 -0.076512 -0.039064 -0.471306 5.384562 -5.609036 -2.297984 4.651064 2.652902 -3.413030 2.421393 4.981286 -4.679496 -3.270843 -2.509214 0.652339 -0.143000 -3.949050 1.954243 -2.315929 1.470900 1.763964 1.310239 -1.651017 2.186187 1.169803 0.794625 -2.369426 7.007043 7.872776 -3.887195 -0.383049 -3.500496 2.140796 -6.764878 -4.748907 1.297203 -0.137715 -1.012261 2.595044 1.848904 4.337018 -0.331295 0.044633 -0.473998 -2.134621 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.283003 0.165987 0.499465 -1.142342 1.220625 0.704424 0.075645 -0.123326 -0.679680 -0.324561 -0.372602 -0.592827 -0.567202 1.100454 -0.363173 0.615590 1.090408 -0.019016 -0.243929 -0.152621 1.103728 -0.073765 0.975556 0.241135 -1.121614 -0.065685 0.335288 0.906334 0.148267 1.195006 -0.288495 -0.853531 -0.095973 -0.157012 0.349332 -0.693630 0.474407 0.264768 -0.033366 -1.230488 0.161043 0.341356 -0.180475 -0.028582 -0.265902 -0.120132 0.840508 0.868136 -0.690255 -0.112404 0.991558 0.660838 -0.266290 0.331147 -0.262979 0.219090 0.417405 -0.353258 -0.484398 -0.329634 0.005623 -0.468980 0.288628 0.725874 1.080322 -0.180423 0.100241 0.748072 -0.037316 0.240894 0.263736 0.115364 -0.120998 0.006430 0.568156 -0.535017 -0.238678 -1.337223 0.096689 -1.578389 -0.408279 -0.769353 0.127992 0.573364 0.237025 -0.166495 1.201582 -0.166576 0.151835 0.813509 1.034833 -0.608865 -0.203220 -1.494019 -0.792068 0.382795 -0.527087 -0.615532 0.048852 0.399163 -0.387494 -0.633155 -0.084792 0.006652 -0.311727 -0.516148 -0.390198 0.945086 -1.065783 -0.540861 -0.557597 0.882321 -0.296454 -1.316286 -0.564752 -0.435001 0.236998 -0.374780 0.524091 -0.674490 0.053504 0.890499 -0.514342 -0.183680 -0.503277 0.813564 0.686005 -0.275125 0.200638 -0.081657 0.157274 0.832385 0.608394 -0.543158 -0.735297 0.385994 -0.108832 -0.319227 -0.841485 0.033877 0.174212 -0.992554 0.095620 0.882711 -0.291323 -0.121915 -0.182259 -0.585014 0.836058 2.567308 -0.122271 0.308539 0.025250 -0.971592 0.512206 0.269576 -0.411134 0.326076 0.147623 0.198522 -0.693673 -0.865762 0.518357 0.590953 0.667700 -0.566205 -0.242408 -0.487927 -0.183996 0.062285 -0.324050 0.685340 -0.621701 -0.378479 -0.295071 0.142681 1.517054 -0.103874 -0.938541 0.934253 0.927326 -0.902615 -0.548548 -0.472979 -0.711311 -0.325258 0.453462 -0.259347 0.663659 1.250429 -1.979051 0.819790 0.460199 -0.320302 0.377103 -0.489020 0.065271 -0.834925 -0.180259 0.950125 1.047042 -0.451753 0.374573 -0.171086 -0.714490 0.339546 0.281189 0.361181 -0.085868 0.065738 0.019564 -0.613376 -0.611479 -0.042574 -0.631768 0.050706 -0.304550 0.165281 0.028851 -1.740824 1.134855 -0.539278 0.117693 0.568086 -0.102046 0.966028 -0.740322 -0.922193 0.684452 0.302108 -0.219138 -0.330247 0.370305 0.941895 0.031899 0.360940 -0.485425 -1.386936 0.141659 -0.204835 0.182345 0.294987 0.403150 0.492204 0.043706 -0.270049 -0.883293 -0.602173 0.230685 0.155697 -0.303751 -0.077014 0.033039 0.844821 0.799839 0.006423 -0.265852 -0.344694 0.936783 -0.516429 -0.310484 0.718015 -0.296379 -0.935508 0.166993 0.921688 -0.662377 -0.717651 -0.709834 0.616399 -0.147067 -0.797058 0.172258 -0.326591 0.088183 0.669422 0.018782 -0.656607 0.531562 0.371473 -0.202031 -0.526709 1.472731 0.679297 -0.452805 0.269608 -0.669102 0.366745 -1.278334 -0.772667 0.086181 -0.420159 -0.142093 0.454790 0.067288 0.761949 -0.334072 0.811739 0.155777 -0.686819 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.319777 0.246690 0.619263 -3.245673 3.276981 1.809339 1.282975 -0.809789 -2.735937 -1.400695 0.370656 -4.161686 -2.420705 3.630791 -1.402873 2.051814 5.849571 0.778671 -1.039189 -0.704653 2.586876 0.112611 5.496427 4.661719 -3.583406 -0.136546 0.651093 1.726302 -0.340199 1.381064 -1.109849 -3.638873 1.786050 -2.113242 0.133891 -1.715412 0.302687 -0.431100 1.499014 -5.418334 0.769923 0.199490 -0.429820 -0.905556 -0.941066 1.178552 4.544846 3.295707 -1.078377 0.439054 2.807339 1.094708 -0.363276 1.132516 0.577778 0.409338 0.522673 -0.113690 -2.049156 -1.590409 -0.830615 -1.308581 -0.128317 3.510609 4.070345 0.560331 -0.430862 1.626361 0.383229 0.710894 1.080661 0.975754 1.043764 0.980704 1.966464 -3.087076 -0.741932 -6.265089 -1.123979 -7.915646 -2.906344 -1.499386 2.371757 -0.052628 1.707277 -0.359031 4.283820 -0.348638 0.693556 2.821747 5.050525 -3.564589 -1.949281 -2.856293 -1.800623 1.150034 -1.835359 0.361009 1.748677 0.185798 -3.554065 -2.131016 1.092140 0.828353 -1.322440 -2.210327 0.795822 2.487505 -2.941328 -1.826563 -2.867760 1.799110 0.190930 -6.108535 -1.047702 -1.074278 2.347138 0.499867 -1.574373 -3.560393 0.798927 2.142174 -1.845290 -1.460353 -0.919647 3.136590 2.071965 0.894446 1.252181 0.543472 1.508804 5.378964 2.516786 -2.182024 -0.496666 -0.041473 -1.728129 0.303245 -2.252370 -1.300276 1.142024 -3.669573 1.844539 2.875000 -2.546341 -1.142227 1.455321 -0.258568 1.900111 10.119731 -0.993358 3.704822 1.953345 -4.155355 1.816144 -1.849340 -0.832813 0.123918 2.208177 1.361407 -3.651471 -3.221596 2.611372 4.002288 2.908587 -3.974683 -0.022321 -0.458347 0.394205 -0.776308 -0.080015 1.488461 0.360655 -2.646260 -0.812681 3.291026 7.010284 -1.518499 -2.841892 1.967334 2.346420 0.128394 -2.885826 -1.570651 -2.290797 0.326911 2.005975 0.310790 2.213384 5.125613 -7.203634 3.041745 -0.192194 -0.618976 2.921431 1.081882 -2.768849 -3.476522 0.025296 3.596581 4.034365 -0.040691 0.621876 0.033189 -3.029804 -0.420989 0.815407 1.404095 -1.150165 1.656221 0.323476 -3.118176 -2.244060 -1.037611 -0.998985 -0.717605 -0.847539 2.030040 0.830369 -7.360990 4.795931 -0.001562 -1.488967 0.425705 -1.763504 3.402609 -3.684887 -4.291178 2.241055 -1.241123 -1.464797 -0.950123 0.461317 2.160924 0.659463 1.870406 -2.212146 -4.423158 3.449665 0.252768 3.527407 1.636276 0.821783 3.374356 -0.924487 -1.520374 -2.917180 -2.691675 1.112282 -0.456707 -3.290465 -0.266661 -1.175661 3.415861 3.764970 -0.746853 -1.836175 -0.862372 3.188564 -4.116322 -0.651235 2.949162 1.924610 -3.131328 1.181333 3.579179 -3.577402 -1.335320 -2.454476 -0.073063 -1.598361 -3.707158 0.974145 -1.416187 1.200757 1.553032 -0.267096 -0.750343 1.373305 0.744909 0.506677 0.148968 4.202775 4.615772 -2.003766 0.038875 -3.838150 1.857618 -5.312680 -4.887114 2.016793 -0.651298 -2.253659 0.100528 0.368651 3.146076 -0.805411 -0.120470 -1.464350 0.262599 +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.196288 0.267194 0.349756 -0.319689 0.552546 0.377530 0.208126 -0.113650 -0.364203 -0.319700 -0.100488 -0.503242 -0.550852 0.695003 -0.261512 0.220048 0.960256 0.290645 -0.060535 -0.129225 0.361629 -0.234372 0.901728 0.768529 -0.619830 0.031235 0.281459 0.274157 -0.090800 0.705537 -0.349163 -0.740688 0.386388 -0.188557 0.159021 -0.474850 0.024542 -0.067209 -0.019339 -1.004696 0.052822 0.082510 -0.111145 -0.105940 -0.067991 0.226704 0.860894 0.505894 -0.087428 0.163386 0.292168 0.255420 0.005994 0.222128 0.258464 0.203238 0.300225 -0.158445 -0.410469 -0.062981 -0.211607 -0.557251 -0.146199 0.589153 0.741593 0.069273 0.023720 0.087090 -0.286823 0.135822 0.061000 0.157824 0.267119 0.268116 0.281820 -0.405734 -0.045680 -0.888857 -0.265658 -1.367191 -0.454597 -0.478987 0.261158 0.145045 0.310707 -0.038082 0.747377 0.016162 0.200617 0.244963 1.007864 -0.705666 -0.294693 -0.405779 -0.198899 0.162557 -0.380666 0.008031 0.111220 -0.153941 -0.547316 -0.603756 0.350002 0.136363 -0.231641 -0.193822 -0.071648 0.603520 -0.785117 -0.337005 -0.722698 -0.094734 -0.106096 -0.957390 -0.041610 -0.108909 0.441418 0.231262 -0.221002 -0.648836 0.280369 0.565175 -0.197659 -0.383722 -0.165144 0.615429 0.194801 -0.026345 0.159294 0.004295 0.170336 0.776630 0.620916 -0.251531 -0.093535 0.043974 -0.367601 -0.054729 -0.400386 -0.155051 0.053485 -0.604497 0.140072 0.474284 -0.439874 -0.103851 0.072556 -0.207924 0.440552 1.428299 -0.242596 0.412990 0.128422 -0.837305 0.319350 -0.215865 -0.219232 0.022015 0.471310 0.365667 -0.570889 -0.503418 0.360478 0.685108 0.452934 -0.567219 -0.104400 -0.325607 0.089935 -0.093549 0.102635 0.248744 -0.076393 -0.453086 -0.169785 0.286365 1.149859 -0.398189 -0.630720 0.300258 0.071966 -0.036565 -0.532670 -0.190846 -0.222716 0.040729 0.144406 -0.124133 0.258243 0.826087 -1.270488 0.643139 -0.221556 -0.346710 0.518355 0.003835 -0.230084 -0.425058 0.130415 0.700059 0.693042 0.175170 0.118299 -0.072251 -0.610678 -0.105551 0.024358 0.433917 -0.248467 0.336409 0.170642 -0.727792 -0.545113 -0.293966 0.030401 -0.350503 -0.199377 0.272020 0.256980 -1.430530 0.852094 -0.017714 -0.184735 0.176224 -0.022409 0.415032 -0.653314 -0.877101 0.323640 -0.212657 -0.303724 -0.150099 -0.014430 0.415938 0.046173 0.076202 -0.281130 -0.718719 0.448092 0.077799 0.444729 0.266480 0.335197 0.725642 0.112514 -0.363593 -0.433484 -0.269633 0.258591 -0.355517 -0.313153 -0.027355 -0.220611 0.606161 0.866164 0.042753 -0.179093 -0.218989 0.669873 -0.614445 -0.131835 0.591686 0.360052 -0.324543 0.160157 0.623429 -0.533529 -0.487991 -0.332128 -0.050130 -0.164379 -0.591185 0.111109 -0.518816 0.102093 0.388031 -0.026975 -0.359512 0.262514 0.066859 0.016204 -0.075195 0.685010 0.760483 -0.529025 0.252004 -0.491022 0.291264 -0.912517 -0.647439 0.154053 0.019211 -0.252818 0.043658 0.016666 0.371010 -0.113367 0.040508 -0.116050 -0.220235 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__introsort_loop >(suffix*, suffix*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -1.597753 0.424166 0.712268 -3.669762 3.914624 2.660732 1.518435 -0.754991 -3.369487 -1.963391 0.184497 -4.886595 -3.043241 4.658611 -1.557378 2.653470 7.702522 1.104706 -1.069673 -0.599117 3.468666 -0.797246 6.839519 5.977898 -4.273768 -0.180702 1.412267 2.074068 -0.652450 2.406596 -1.563086 -5.079333 2.205974 -2.896331 0.257952 -2.859983 0.347507 -0.320863 1.928972 -7.267204 0.932748 0.445163 -0.707816 -1.238742 -1.171046 1.425724 5.950548 3.947495 -1.427444 0.612222 3.265320 1.362686 -0.599997 1.340585 0.862661 1.006445 0.738927 0.405532 -2.615865 -1.683206 -1.115114 -1.809554 -0.109728 4.128923 5.414394 0.488938 -0.390014 1.971453 -0.024352 0.828092 1.100908 1.073459 1.546682 0.996506 2.512457 -4.453058 -1.296735 -8.640713 -1.396111 -10.853035 -3.438499 -1.974261 2.555759 -0.215160 2.327272 -0.730716 5.120392 -0.839386 0.956954 3.658563 6.698970 -4.508736 -2.323025 -3.783764 -2.163277 1.328950 -2.345812 0.009102 2.638707 -0.551352 -4.276926 -3.493328 1.993603 1.288247 -1.533026 -3.053932 0.778650 3.294196 -3.863480 -2.678750 -3.820964 1.859634 -0.189533 -7.837924 -0.841877 -1.494678 2.724292 0.916405 -1.948204 -5.030740 1.207721 3.321946 -2.160634 -2.413008 -0.420737 4.626851 2.346711 0.962464 1.589252 0.323713 1.695285 6.944410 3.988717 -2.484627 -0.556592 0.109097 -2.744053 0.152000 -3.166562 -1.711355 1.625520 -4.503637 1.848370 3.890317 -3.128617 -1.148824 2.736797 -0.521801 2.477445 14.442649 -1.329227 4.502825 2.206793 -5.560431 3.120301 -2.001431 -1.237301 0.008901 2.792447 1.919557 -6.054604 -3.755600 3.108328 4.802443 3.593960 -5.630520 -0.735326 -1.001013 0.586772 -0.873106 -0.063770 1.817125 0.537822 -3.570766 -0.994950 3.956726 9.795276 -2.270135 -3.759318 2.462346 2.803290 -0.493050 -4.963302 -1.848989 -3.310900 0.303544 2.109464 -0.088025 2.631371 6.199359 -9.631932 3.847957 -0.659379 -1.264172 4.010139 1.208528 -3.228447 -5.248404 0.065815 4.924758 5.653453 0.207800 1.153706 -0.124325 -3.740201 -0.468952 0.810235 1.858569 -1.392430 2.091083 0.234427 -4.379251 -2.886535 -1.127558 -1.260629 -1.574465 -1.005174 2.256658 1.400763 -9.840053 6.295844 0.091366 -1.557948 0.770180 -1.579265 4.165892 -4.499713 -5.839942 2.882085 -1.411179 -1.600089 -1.272082 0.429415 2.778361 1.078593 2.015749 -2.389883 -6.898984 4.148388 0.182981 4.312002 1.934781 1.092192 4.575920 -0.628652 -1.892668 -4.409134 -3.312173 1.273112 -0.753332 -3.921177 -1.199274 -1.444815 4.373105 4.677064 -0.728518 -2.115211 -1.612293 4.574549 -5.365186 -0.427634 3.771890 2.916919 -3.855945 0.924084 4.547467 -4.842694 -1.840657 -3.003365 -0.070006 -1.884132 -4.844518 0.925336 -2.029312 1.306410 1.976065 -0.371675 -1.126135 1.403406 1.074883 0.430150 -0.117602 5.529062 6.452090 -2.821268 0.108677 -4.437879 2.155741 -6.876094 -5.956999 2.197610 -0.604969 -2.898918 0.174132 1.262946 3.757515 -1.044401 0.257627 -1.421495 -0.262533 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__long std::__lg(long) = -0.267090 -0.404100 0.039775 -0.646698 0.253945 0.081622 0.257764 -0.497969 -0.737079 -0.237677 0.434039 -0.819007 -0.103823 0.710118 -0.309418 0.607144 0.790160 0.189168 -0.454421 -0.281361 0.454188 0.014988 0.925350 0.867074 -0.510525 0.010029 -0.318544 0.283868 0.427987 -0.011695 0.221375 -0.098277 0.463360 -0.430762 -0.090637 -0.276225 0.009721 0.333026 0.442853 -0.812332 0.201483 0.082644 0.418166 -0.117091 -0.068835 0.370231 0.302838 0.569331 0.175663 0.378326 0.449950 0.062505 0.147172 0.191016 0.266266 -0.046924 0.298565 -0.600109 -0.235968 -0.268156 -0.087202 -0.249162 0.034121 0.611851 0.696690 0.038173 -0.092730 0.257977 0.307477 0.240288 0.547858 0.174251 -0.235579 -0.010162 0.071570 -0.816303 0.285817 -0.684648 -0.144553 -1.261456 -0.410477 0.215913 0.736958 0.269280 0.236649 0.029239 0.614413 0.050984 -0.393058 0.259534 0.606452 -0.504390 -0.294432 -0.008952 -0.054300 0.146176 -0.340594 0.159399 0.247996 0.434925 -0.536474 0.164365 0.279650 0.141626 -0.264347 -0.128258 0.212981 0.491545 -0.667035 -0.308982 0.167263 0.557898 0.044483 -0.873053 0.271621 -0.520832 0.377356 -0.056164 -0.333401 -0.273157 0.124986 0.065443 -0.158990 -0.058943 -0.824018 0.321889 0.242569 0.359413 -0.072103 0.350984 0.100250 0.898664 -0.110461 -0.486623 0.157728 -0.038542 -0.040266 0.478954 -0.245347 -0.367246 0.203996 -0.603432 0.059402 0.215196 -0.356728 -0.167634 0.110120 0.449424 -0.026850 1.263605 0.014112 0.825382 0.743578 -0.417807 -0.094052 -0.344677 0.262278 0.227885 0.241172 -0.126067 -0.482901 -0.647581 0.397465 0.697332 0.450523 -0.540855 -0.005924 0.058465 -0.004033 -0.019565 0.036120 0.089193 0.055360 -0.461219 -0.139028 0.357338 0.953816 -0.116305 0.354055 0.174863 -0.021721 -0.135928 -0.479327 -0.283891 -0.099271 0.235916 0.009935 0.273311 0.283680 0.757721 -0.709024 0.623123 -0.079672 0.172030 0.523501 0.193593 -0.648381 -0.840680 -0.360296 0.180365 0.577677 -0.357074 0.115781 0.463433 -0.632512 -0.092081 0.007221 -0.085674 -0.203067 0.175945 0.303366 -0.109112 -0.150981 0.171018 0.016759 0.074637 0.002915 0.544751 0.333030 -0.709462 0.418633 -0.038950 -0.371653 0.060692 -0.156165 0.632477 -0.517375 -0.273768 0.242935 -0.206747 -0.462265 -0.423622 0.115872 0.293175 -0.262766 0.200143 -0.370940 -0.081527 0.544056 -0.411384 0.499585 0.270328 -0.189522 0.255656 -0.235107 -0.096355 -0.261570 -0.300197 -0.282977 -0.172489 -0.452372 0.398944 -0.111820 0.513336 0.395937 0.082055 -0.496390 0.484208 0.538946 -0.626606 -0.244643 0.370459 0.301406 -0.512649 0.467324 0.432555 -0.701129 0.176833 -0.278812 -0.348753 -0.212220 -0.337225 0.647058 0.285121 0.485604 -0.219385 0.203110 0.034911 0.372651 0.138985 0.006745 0.258186 0.850326 0.660753 0.055474 -0.220579 -0.654368 0.272304 -0.617710 -0.612434 0.290181 0.283131 -0.536514 0.072670 -0.112719 0.760339 0.347508 -0.297548 -0.335710 0.385444 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__final_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.633927 0.975500 1.559565 -3.780122 3.969996 3.120803 1.404869 -0.563785 -3.013205 -2.012660 -0.273720 -4.536187 -3.330879 4.989617 -1.760987 1.987533 7.403381 1.281345 -1.022477 -0.324843 3.322365 -0.249209 6.298922 5.478103 -4.479703 -0.319237 1.384605 2.159789 -0.792073 3.411211 -1.584097 -5.574256 1.963912 -1.818977 0.740585 -2.820823 0.504216 -0.458057 0.829811 -7.122015 0.889461 1.093446 -0.951566 -1.338987 -0.959439 0.609463 6.092173 3.989681 -1.575224 -0.054965 2.923291 2.070031 -0.800036 1.318177 0.905035 0.823175 0.697232 -0.206325 -2.675959 -1.497861 -1.150976 -2.019693 -0.256449 4.406691 5.206824 0.703693 -0.054816 1.435747 -0.411140 0.913726 0.731295 0.918889 1.759199 1.412833 2.362748 -3.049945 -1.278876 -7.486891 -1.126217 -9.197777 -3.280325 -2.489578 2.358950 1.049451 1.919384 -1.538339 5.203537 -0.724187 1.353575 3.544791 6.807556 -4.304648 -2.230830 -4.376188 -2.580142 1.539909 -2.436980 -0.088511 1.298998 -0.708514 -4.233952 -3.573360 1.031239 1.201501 -1.529159 -2.422272 0.528199 3.731140 -4.055439 -2.281494 -3.962684 1.676391 -0.153432 -7.505432 -1.565662 -1.517995 1.968142 0.864239 -1.757787 -4.672688 1.288665 3.428467 -2.156598 -2.246206 -1.268662 4.651524 2.163375 0.458115 1.365340 0.035203 1.637441 5.853980 3.682930 -2.416568 -0.616009 0.143375 -2.459085 -0.435347 -3.249711 -1.352973 1.149660 -4.382582 1.124959 3.925991 -3.161340 -0.997098 0.796916 -1.146387 3.037779 13.557579 -1.570693 3.853434 1.557084 -5.759261 3.085673 -1.392328 -1.673660 -0.147873 2.871155 2.283682 -5.170290 -3.775993 3.046102 4.895831 3.670909 -4.196619 -0.110927 -1.397773 0.132154 -0.997825 0.139369 1.804353 -0.168638 -3.587692 -1.235935 3.604285 8.646784 -2.063194 -4.483475 2.448235 3.007629 -0.151575 -3.413145 -1.599629 -2.871234 0.314562 2.260338 -0.582260 2.935653 6.347017 -9.169404 4.149547 -0.330824 -1.529986 3.501488 0.529517 -2.704240 -3.992195 0.506677 5.138800 5.375314 0.324475 1.005671 -0.498016 -3.878545 -0.498763 0.856199 2.326702 -1.457437 2.014929 0.316853 -4.552250 -3.387594 -1.749193 -1.450281 -1.805236 -1.662811 1.991772 1.337865 -8.807600 6.497728 0.045494 -1.104848 0.761451 -1.610292 3.769378 -4.794380 -6.053743 2.690318 -1.074917 -1.805996 -0.993295 0.287632 3.178568 1.006439 1.732415 -2.493157 -6.451503 3.704217 0.503197 4.188637 1.868411 1.648930 4.508170 0.700500 -1.791619 -3.820141 -3.867444 2.040983 -0.669988 -3.752570 -1.015431 -1.474832 4.392526 5.018408 -0.933523 -2.220158 -1.968605 4.360229 -4.394410 -0.555793 3.788031 1.329407 -3.676679 0.561193 4.593612 -4.329072 -2.471479 -3.072094 0.508102 -1.768306 -4.767669 0.620183 -2.394769 1.159990 2.360425 -0.380032 -1.767710 1.364075 1.200707 0.201377 -0.010906 5.204640 4.894893 -2.978676 0.832938 -4.397838 2.298432 -6.811219 -5.767698 1.915700 -1.107748 -2.180785 0.279798 0.464550 3.330944 -1.247785 1.031349 -1.035686 -0.539418 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__partial_sort >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.701000 0.320572 1.080454 -1.674488 1.496105 0.854497 0.555559 -0.293370 -1.382053 -0.900996 -0.163787 -1.349957 -1.257970 2.140124 -0.812317 0.668288 3.246815 0.875716 -0.394415 -0.709132 1.727690 -0.963052 2.763632 2.634976 -2.264361 -0.097470 1.190603 1.375733 0.548061 1.518664 -0.771933 -1.574671 0.833145 -1.063167 0.685741 -1.920633 0.306070 0.012554 0.173258 -3.413529 0.307634 -0.325879 -0.430284 -0.340137 -0.336376 1.252206 2.464381 1.741181 -0.976366 0.331287 1.590835 0.770552 -0.304536 0.547808 0.307162 0.560417 0.872105 0.535879 -0.856864 -0.316631 -0.379353 -1.510230 0.340163 2.022944 2.541593 0.137713 0.122760 0.647141 0.035403 0.386399 0.474794 0.437935 0.578044 0.459488 1.203664 -2.494964 -0.265328 -4.480121 -0.513206 -5.117913 -1.372005 -1.349057 1.051114 -0.656247 0.791122 -0.012858 2.321136 -0.008669 0.632657 1.502010 2.767302 -1.900856 -0.854099 -1.714177 -1.191469 0.830446 -1.159463 0.011415 0.873034 -0.121443 -1.638089 -1.812694 0.982853 0.503700 -0.823846 -1.033363 -0.039897 1.868146 -2.091007 -1.106870 -1.884180 0.379543 -0.266604 -3.189911 0.021830 -1.225484 2.118052 0.242723 -0.517616 -1.927253 0.379694 1.831577 -0.751383 -0.943452 -0.478538 2.063796 0.976798 0.043009 0.375632 -0.163324 0.393996 2.283763 2.126024 -1.127068 -0.480380 0.394348 -1.612438 -0.332199 -1.899064 -0.539540 1.373777 -1.846529 0.321176 1.443082 -1.346651 -0.646895 1.951493 -0.575364 1.434831 6.197472 -0.400708 1.480525 0.731113 -2.357276 1.133689 -0.323777 -0.458974 0.626402 1.530406 0.784709 -2.915996 -1.711916 0.829763 2.107091 1.519746 -2.298449 -0.955832 -0.910530 -0.110026 -0.101920 -0.041438 0.584040 -0.505613 -1.358689 -0.531080 1.190583 3.638685 -0.983881 -1.884994 0.675652 0.909834 -0.851540 -2.371530 -0.622019 -1.084642 0.232539 0.450780 -0.284836 1.293700 2.671828 -4.901575 1.850768 -0.564501 -0.587300 1.394516 0.220011 -0.951724 -2.544542 0.480243 1.986808 2.385191 0.123518 0.309863 0.260681 -1.908428 -0.201867 0.227839 1.160078 -0.813034 0.966040 0.467673 -1.931211 -1.516157 -0.474607 -0.322700 -0.768499 -0.335902 0.910517 0.004054 -4.507482 2.587778 -0.469939 -0.582679 0.700065 -0.532532 1.515031 -2.263361 -2.607472 1.148214 0.037601 -0.597426 -1.102657 0.095440 1.741752 -0.038347 0.471064 -1.164332 -2.967802 1.250510 -0.483249 1.447451 0.873140 0.661682 2.501033 -0.098206 -0.658907 -2.204414 -0.757580 0.459662 -0.448138 -1.391910 -0.692293 -0.552921 1.822996 2.578734 -0.282281 -0.440700 -0.233032 2.326750 -2.357069 -0.686917 1.501937 1.462355 -1.242490 0.748350 1.790099 -2.243531 -1.282814 -1.225727 -0.286805 -0.138990 -1.879172 0.820380 -1.226101 0.642990 0.945701 0.166849 -0.668215 1.037381 0.441759 0.329841 -0.075946 2.363070 3.417089 -1.542520 0.107402 -1.771084 0.988650 -3.010411 -2.199164 0.425469 -0.076219 -0.688641 0.426895 0.206312 1.641276 -0.214803 0.246366 -0.266051 -0.371642 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition_pivot >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.557309 0.903714 1.556009 -3.667744 3.439126 2.798319 1.139339 -1.144557 -2.521036 -1.503520 -0.069585 -3.924897 -2.688937 4.111007 -1.834855 1.799690 6.396085 0.829544 -1.029268 -0.731012 3.167243 -0.014235 5.884062 5.132109 -4.292086 -0.390976 1.600555 2.288627 0.075591 2.427688 -1.655483 -4.164448 1.713179 -2.001314 0.426039 -2.496222 0.590377 -0.458924 1.212084 -6.026100 0.813360 -0.450287 -1.269489 -0.948298 -1.047137 1.202090 5.473809 3.602076 -1.474157 -0.217305 3.160342 1.831894 -0.835145 1.130960 0.457317 0.527281 1.090809 0.489733 -1.787930 -1.661896 -0.856799 -1.407101 0.080158 4.181614 4.722012 0.865380 -0.086271 1.612989 0.113958 0.664393 0.511801 0.987765 1.407627 1.757757 2.062496 -3.704793 -0.627932 -7.367935 -1.140307 -7.655759 -2.772227 -2.176016 1.472930 -0.106927 1.948044 -0.820130 4.544987 -0.172047 1.077964 3.237425 5.911371 -4.056752 -1.774919 -3.600723 -2.371254 1.172477 -2.062392 0.554100 0.877850 -0.212677 -3.661357 -3.296893 0.973555 1.079513 -1.441393 -2.152387 0.531973 2.757626 -3.348534 -1.834490 -3.280618 1.340112 -0.129888 -6.891655 -1.205720 -1.829142 3.088019 0.169851 -1.344418 -4.421934 0.752387 3.346483 -1.850181 -2.016634 -0.953730 4.014320 2.547924 0.406867 0.990839 -0.164529 1.526502 5.469914 3.090206 -2.247401 -0.754886 -0.117990 -2.586292 -0.531379 -3.123377 -0.831597 1.585026 -3.830118 1.340740 3.822661 -2.594336 -0.933529 2.261450 -1.002432 2.639261 12.873068 -1.280861 3.484481 1.617723 -4.912198 2.355748 -1.524664 -1.294771 0.218174 2.090009 2.012707 -5.678345 -3.466742 2.714511 4.124525 3.093206 -4.320462 -0.231586 -1.061185 0.006444 -0.967171 -0.131579 1.448054 -0.397196 -3.012319 -1.095355 3.561167 7.926213 -1.806644 -3.576942 2.175139 2.170336 -0.362083 -3.397897 -1.674953 -2.212682 0.362037 2.302331 -0.053047 2.781272 5.584691 -8.401311 3.317867 -0.112733 -1.317331 2.947353 0.548714 -2.606952 -3.108344 0.738012 4.515866 4.269452 0.212586 0.803485 -0.198528 -3.522261 -0.405456 0.923316 1.999858 -1.527213 1.747385 0.983489 -4.146923 -3.076408 -1.294981 -1.271751 -1.225513 -1.320646 1.960589 -0.005459 -8.426577 5.776604 -0.059922 -1.110425 0.792858 -2.072460 3.480099 -4.324033 -5.071934 2.484511 -0.763938 -1.006621 -1.181280 0.655068 2.687764 0.724127 2.144055 -2.899030 -6.058203 2.842559 0.174634 3.453009 1.644115 1.675287 3.804861 -0.476858 -1.144327 -4.068084 -2.964438 1.875738 0.164812 -3.754192 -0.916111 -1.171263 3.811588 4.521216 -1.265186 -1.789908 -1.232828 3.736515 -4.378800 -0.816650 2.936970 2.245288 -3.655102 0.383208 3.680515 -3.758386 -2.096593 -2.684177 -0.261613 -1.572845 -4.481365 0.835430 -1.820734 1.273350 2.148606 -0.176461 -1.276965 1.564726 0.878610 0.459499 0.373006 4.546477 5.421459 -2.288455 0.052088 -4.122468 2.108819 -6.161476 -5.409711 2.124288 -1.300841 -1.781541 0.188976 0.333047 3.533083 -1.073333 0.711330 -0.721712 -0.338302 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__heap_select >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.474630 -0.027704 1.018121 -3.348647 2.962522 1.882580 1.204313 -0.665792 -2.987687 -1.523250 0.115924 -3.250852 -2.000432 4.295364 -1.321089 2.288820 6.243144 1.365343 -0.944641 -0.756120 3.498369 -1.394958 5.293188 4.854485 -3.898976 -0.294582 1.390682 2.135936 0.305380 2.343115 -1.041693 -3.473420 1.730320 -2.727943 0.531527 -3.253508 0.651445 0.490687 1.388806 -6.255783 0.865467 -0.121771 -0.396602 -0.996576 -1.065551 1.225453 4.383717 3.485122 -1.740009 0.669923 2.967030 1.156550 -0.727354 1.125057 0.488069 1.031001 0.485468 0.646536 -1.922281 -1.084583 -0.678785 -2.132330 0.683721 3.610495 4.659849 0.251223 0.082697 1.840218 0.140205 0.766972 1.187315 0.662165 0.817030 0.299213 2.228974 -4.538630 -1.117222 -8.100781 -1.042679 -9.015519 -2.664155 -1.730718 2.294596 -0.437995 1.856819 -0.537034 4.201235 -0.484540 0.730258 3.295942 5.169480 -3.719538 -1.850244 -3.510287 -2.253909 1.497936 -2.140154 -0.144884 1.912374 -0.311295 -3.366442 -3.156136 1.556251 1.254244 -1.385647 -2.843522 0.448847 3.273689 -3.560141 -2.588100 -2.846980 1.610034 -0.562397 -6.172377 -0.125666 -2.062612 2.734156 0.510463 -1.236076 -3.916923 0.692580 2.987084 -1.606731 -2.078192 -0.791421 3.760552 1.890525 0.600050 1.019412 -0.123428 0.902918 5.161927 3.384598 -2.326927 -0.598415 0.498486 -2.423431 -0.041007 -3.304203 -1.555310 2.027083 -3.904752 0.741752 2.994465 -2.596381 -0.989273 3.211174 -0.413440 2.337716 11.923658 -0.596729 3.414325 1.901280 -4.463421 2.524434 -1.081078 -0.763292 0.850959 2.610760 1.091671 -5.385268 -3.360345 1.948178 3.949346 3.140407 -4.184265 -1.721399 -1.371116 0.053668 -0.189527 -0.281364 1.317606 -0.320495 -2.972865 -0.875705 2.775705 7.443460 -1.822511 -2.610736 1.833442 2.419348 -1.444944 -4.552685 -1.536269 -3.039800 0.341903 1.156064 -0.322800 2.442266 5.234664 -8.311655 3.416384 -0.906123 -0.755919 2.490614 0.783396 -2.535875 -5.070862 0.261054 3.657661 4.704294 -0.148606 1.176242 0.551524 -3.406787 -0.315389 0.570997 1.510294 -1.224719 1.670593 0.245638 -3.449047 -2.544442 -0.344595 -1.261238 -1.522344 -0.547603 1.892353 0.930515 -7.380681 4.781152 -0.577253 -1.210599 1.311273 -1.044054 3.507426 -4.060572 -4.807112 2.489687 -0.181432 -1.022160 -1.654328 0.483299 2.998838 0.274121 0.864280 -1.837437 -5.671266 2.636744 -0.581681 3.122898 1.614320 0.743285 3.989946 -0.176107 -1.386495 -3.981878 -2.392199 0.551057 -0.643756 -3.083220 -1.527430 -1.008853 3.741256 4.181752 -0.334680 -1.657750 -0.623005 4.188730 -4.317203 -0.864591 3.101604 2.160927 -3.042870 0.948287 3.755043 -4.390552 -1.676955 -2.369499 0.228690 -0.729531 -3.675944 1.367333 -1.507900 1.399829 1.303528 0.204824 -0.814108 1.646754 1.228197 0.583005 -0.155863 4.766924 5.245810 -2.450801 -0.315183 -3.580994 1.636658 -5.609756 -4.668609 1.285621 0.106061 -2.023802 0.716976 0.760596 3.351507 -0.587503 0.629244 -0.712592 -0.530861 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.758675 -0.251943 -0.027478 -1.866745 1.548593 0.633489 0.640595 -0.471486 -1.485275 -0.671315 0.216830 -2.118814 -0.730978 1.618394 -0.657378 1.612732 3.229875 0.466406 -0.512901 -0.495198 1.537204 -0.370179 2.954763 2.622279 -1.851591 -0.118807 0.461271 1.220612 0.040587 0.447507 -0.664525 -1.549158 0.909023 -1.756884 0.008267 -1.340840 0.298151 0.142899 1.294807 -2.981759 0.540225 -0.284604 0.205054 -0.470583 -0.694141 0.678663 2.258094 1.789060 -0.769505 0.362858 1.759937 0.453654 -0.180377 0.641643 -0.022189 0.577783 0.382945 0.112270 -0.900761 -1.004694 -0.277697 -0.705491 0.486503 1.729498 2.219500 0.114831 -0.232205 1.301925 0.605130 0.215440 0.869404 0.489515 0.081638 0.058102 1.072735 -2.652719 -0.260404 -4.105275 -0.650773 -4.413480 -1.512749 -0.691813 1.063171 -0.512679 1.247603 0.131531 2.211719 -0.445969 0.458120 1.362156 2.195662 -2.088042 -1.020312 -1.519981 -0.907410 0.641805 -0.973867 -0.086014 1.219322 0.302765 -1.740337 -1.178396 1.031810 0.660572 -0.725376 -1.611987 0.589570 0.954736 -1.502154 -1.501513 -1.482800 1.085791 -0.162483 -3.128874 0.138911 -0.942368 1.395002 0.052100 -0.683245 -2.282602 0.152180 1.257583 -0.920988 -0.914961 -0.533572 1.617418 1.187578 0.484438 0.808181 0.087030 0.585430 3.275200 1.554949 -1.339514 -0.493704 0.243584 -1.357247 0.116307 -1.528178 -1.000060 0.953422 -2.195904 0.853762 1.548283 -1.339384 -0.423045 1.950225 0.059964 0.977710 5.861243 -0.273784 1.922535 1.324344 -2.084753 1.122772 -1.099613 -0.222666 0.315445 1.129865 0.454670 -2.682008 -1.755837 1.079082 1.909122 1.582730 -2.278529 -0.637585 -0.220852 0.425331 0.041175 -0.452011 0.778763 0.282260 -1.570197 -0.287906 1.566800 4.145985 -0.645528 -0.597791 1.054624 1.304958 -0.711217 -2.486804 -1.051772 -1.975543 0.094648 0.637032 0.346311 1.022278 2.663633 -3.800639 1.399001 -0.434289 -0.075093 1.520106 0.672321 -1.527370 -2.765147 -0.094818 1.656414 2.316039 -0.515086 0.874582 0.339350 -1.458927 -0.167487 0.301203 0.594996 -0.606248 0.774844 0.195500 -1.819517 -0.869078 -0.094096 -0.552649 -0.469590 -0.092801 1.120348 0.575612 -3.525414 2.305177 -0.247458 -0.943744 0.761185 -0.913130 2.014214 -1.976701 -1.982468 1.424876 -0.280833 -0.118370 -0.736808 0.477627 1.292006 0.070423 0.724699 -1.102465 -2.612114 1.474988 -0.159423 1.672291 0.862158 0.075339 1.551406 -0.678518 -0.542887 -1.973826 -1.086733 -0.537504 -0.265549 -1.714698 -0.602686 -0.527517 1.886523 2.023357 -0.390791 -0.676934 0.058642 1.789796 -2.562360 -0.295731 1.471959 1.289749 -1.746013 0.638733 1.827971 -2.314781 -0.567197 -1.181359 0.038562 -0.483895 -1.923168 0.816893 -0.649982 0.778093 0.723994 -0.073978 -0.061835 0.834019 0.553427 0.394801 -0.071769 2.495912 2.704646 -0.599097 -0.496161 -1.963480 0.610506 -2.833081 -2.401634 0.986406 0.106722 -1.470966 0.278598 0.692316 2.022807 -0.430030 0.121218 -0.686485 -0.061300 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__make_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -2.032451 -1.202162 -0.593591 -4.737359 4.629934 2.672810 2.223462 -1.632014 -5.077820 -1.276307 1.627780 -6.733066 -2.318159 5.616873 -1.632866 5.129347 8.704706 1.097255 -1.998730 -0.716994 4.337981 0.272600 8.280894 7.061639 -4.765788 -0.097021 -0.664625 1.696936 -0.633449 1.279904 -1.531454 -4.920030 3.308469 -5.111491 -1.078535 -2.494006 0.372033 0.639749 4.614371 -7.876454 1.623295 0.573005 0.631456 -1.611687 -1.867246 1.151621 5.447094 5.009684 -0.990362 1.674761 4.212072 0.265514 -0.289458 1.753522 1.034673 1.293499 -0.010498 0.021594 -3.339021 -2.780877 -1.124148 -1.063574 0.098086 4.611941 5.894381 0.547607 -1.016221 3.283353 1.099754 0.986854 2.422959 1.277609 0.798147 0.245421 2.785021 -5.201566 -1.406443 -8.720923 -1.996045 -10.810231 -4.382281 -0.713816 4.178505 -0.059207 3.554356 -1.075432 5.772092 -1.229155 -0.237603 3.779136 6.739345 -5.902465 -3.165398 -3.775511 -1.868900 1.284695 -2.696129 0.259897 3.804559 -0.238328 -5.520872 -2.727264 2.212965 1.904627 -1.796341 -4.012959 1.840110 3.266395 -3.836740 -3.984196 -3.063004 3.697074 -0.138060 -8.735166 -0.735852 -1.559265 1.937746 0.949766 -2.767251 -5.650535 1.127469 2.462721 -2.865288 -3.056777 -0.716508 4.746158 3.330719 2.216072 2.124108 1.123209 2.124694 9.339583 2.787869 -3.627420 -0.063731 -0.207864 -1.960778 1.792543 -3.213801 -2.953413 1.264198 -5.954302 2.787970 4.163643 -3.732687 -0.416884 3.288467 1.631179 1.713489 14.807055 -0.952671 6.752987 4.087884 -5.415350 3.422798 -3.337850 -0.337462 0.249396 2.723587 0.992996 -6.290065 -4.920030 3.950576 5.630267 4.486572 -6.570443 -0.739016 -0.433103 1.249813 -0.612202 -0.410486 2.253966 1.988004 -4.628499 -0.816658 4.955083 11.665420 -2.823063 -2.234058 3.312404 3.082723 -0.287815 -5.645031 -3.088544 -4.917965 0.454982 2.562495 1.192123 3.047179 7.536350 -9.043973 4.445638 -0.856351 -0.876173 4.764429 2.256164 -5.285571 -5.718814 -1.258084 4.136634 6.302529 -0.328761 1.523553 1.039949 -4.460680 -0.536187 0.965636 0.762484 -1.411361 2.295634 0.157937 -3.811822 -2.400160 -0.397512 -1.890907 -1.444772 -0.611673 3.530289 2.618699 -9.223215 5.820071 0.502263 -2.778863 1.159761 -2.057445 5.574167 -4.910094 -5.426180 3.678486 -1.720868 -1.756280 -1.528889 1.241193 2.491301 1.068582 2.605631 -2.899693 -6.827618 5.229042 0.187357 5.531745 2.468837 -0.095683 3.507043 -1.219426 -2.323872 -4.304970 -4.427324 0.295568 -0.560392 -5.228472 -1.096428 -1.734907 5.438651 4.550992 -0.252080 -3.385860 -1.560918 4.764952 -6.508193 -0.455397 4.713929 2.949527 -5.214091 1.134916 5.687612 -5.812452 -0.505681 -3.189986 -0.321341 -2.636692 -4.760469 1.987863 -0.685203 2.429236 0.927876 -0.259881 -0.051340 1.785123 1.308226 0.348948 0.174201 6.851325 6.149572 -2.233815 -1.232536 -5.755439 2.501660 -7.073126 -7.396503 3.461823 -0.114654 -5.257572 0.225004 1.645025 5.560299 -0.858784 -0.826700 -2.552687 0.536757 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(suffix*, suffix*) = -0.425197 0.706566 0.888738 -1.226568 2.153055 1.782669 0.818997 -0.183919 -1.587945 -0.965459 0.325061 -2.523099 -2.017955 2.469366 -0.695318 0.662415 3.097715 0.347582 -0.530852 -0.073522 1.053885 0.308926 2.982700 2.405751 -1.979639 0.290837 0.284626 0.342415 -0.664441 1.926937 -0.792789 -3.129781 1.224928 -0.441075 -0.025010 -0.538263 -0.284874 -0.780784 0.357252 -3.024665 0.201609 1.208348 -0.937681 -0.549059 -0.122716 0.333468 3.030149 1.620203 -0.263557 0.665952 0.992834 0.494224 -0.106185 0.519684 1.084711 0.071323 0.699656 -0.099011 -1.578444 -0.430459 -0.755261 -0.959746 -1.099721 1.888179 2.161925 0.226100 -0.348927 0.181239 -0.702790 0.521722 0.279415 0.622712 1.281255 0.974953 1.180884 -0.119752 -0.734943 -2.422102 -0.648841 -3.998098 -1.794000 -0.830117 1.812615 0.665457 0.707174 -0.988491 2.399430 -0.253696 0.092776 1.291992 3.539510 -1.859679 -1.140094 -1.282443 -0.813791 0.468949 -1.119957 0.282764 0.577390 -0.810288 -2.185671 -1.455619 0.571751 0.302561 -0.731882 -0.531956 0.076024 1.952148 -2.091588 -0.617625 -1.817690 0.614343 0.330397 -3.348106 -1.698662 0.204511 0.687204 1.004796 -1.260365 -1.680711 1.066753 1.112603 -1.098862 -1.032055 0.124290 2.006561 0.863950 0.802636 0.665528 0.454318 1.295940 2.613102 1.599403 -0.821095 0.225145 -0.433009 -0.154232 0.598693 -0.632174 -0.453566 -0.513866 -1.585052 1.024841 1.477650 -1.461538 -0.507647 -0.897322 -0.226285 0.782534 5.165104 -0.902654 2.100749 0.586097 -2.617694 0.998619 -0.885740 -0.835303 -0.351985 1.322833 1.268292 -1.286745 -1.498750 1.935802 2.538069 1.486975 -2.385667 0.725687 -0.251029 0.223945 -0.787353 0.744829 0.787092 0.687863 -1.539585 -0.613057 1.711486 3.962926 -1.375189 -3.467000 1.078866 0.850178 0.952878 -0.731730 -0.485206 -0.406171 0.330704 1.470191 -0.288195 1.233709 2.802290 -4.227107 2.051608 -0.095049 -1.188472 2.018945 0.635861 -1.382757 -0.678898 -0.018123 2.187145 2.232239 1.058119 -0.157593 -0.381222 -1.901169 -0.365126 0.421316 0.775081 -0.659501 1.237143 0.139754 -1.962256 -1.623416 -1.573866 -0.285524 -0.589522 -1.236204 1.074801 0.735483 -4.817776 2.812856 0.593115 -0.725507 -0.406339 -0.522638 1.627694 -1.858758 -2.989952 0.975271 -1.392307 -1.946852 -0.150680 -0.312147 0.719390 1.100574 1.208607 -1.048979 -2.365792 2.344863 0.587313 2.315333 1.019366 0.754735 2.388831 0.398464 -1.291170 -1.087227 -1.963825 2.316972 -0.725518 -1.517218 -0.085665 -1.010128 1.824484 1.963765 -0.076068 -1.283425 -2.059518 1.748219 -2.047799 -0.087370 1.937886 0.851206 -1.417276 0.584130 2.191100 -1.363985 -0.717390 -1.374713 -0.369272 -1.520465 -1.854513 0.139691 -0.951127 0.397084 0.999131 -0.276613 -1.036889 0.390399 -0.018929 -0.190488 -0.055365 1.966399 2.437538 -2.088361 0.932976 -2.056834 1.545308 -2.819068 -2.885892 1.161995 -0.788511 -1.283950 -0.426703 -0.156056 1.056692 -0.240652 -0.453457 -0.940856 0.369638 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__pop_heap >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -1.129542 0.050513 0.790821 -2.906925 3.366146 2.053516 1.444903 -0.656057 -3.115148 -1.365178 0.758249 -4.256995 -2.514614 3.884227 -1.339924 2.133144 5.956232 0.871749 -1.118668 -0.750136 2.450532 0.089745 5.628794 4.905373 -3.622911 0.104476 0.216814 1.258047 -0.299673 1.793474 -1.365652 -3.882978 2.226539 -2.231251 -0.096770 -1.725325 0.002121 -0.478175 1.649545 -5.587277 0.731258 0.572906 -0.794713 -0.866104 -0.692831 1.855452 4.519695 3.204073 -0.786629 1.195831 2.604563 0.578259 -0.213958 1.063760 0.997546 0.529247 0.825606 0.287197 -2.347462 -1.277198 -0.994561 -1.490949 -0.594003 3.377467 4.113834 0.337501 -0.594644 1.307668 0.188909 0.689965 1.256476 1.022212 1.552201 0.868465 2.120445 -2.635259 -0.975031 -5.903677 -1.311285 -8.122985 -3.054203 -1.281107 3.061085 -0.291611 1.700287 -1.013377 4.227943 -0.450079 0.261628 2.572155 5.193454 -3.786586 -2.095119 -2.477129 -1.353452 0.898062 -1.974818 0.381468 2.080685 -0.476466 -3.749424 -2.183747 1.427971 0.813449 -1.319029 -1.954118 0.675119 2.799070 -3.255380 -1.827829 -2.980159 1.792107 0.345811 -5.994826 -1.095505 -0.767784 2.301578 1.020171 -1.935713 -3.298920 1.136478 2.027273 -1.945993 -1.712898 -0.362633 3.593355 2.005019 1.296472 1.247226 0.762575 1.662512 5.380159 2.715620 -2.109434 -0.152788 -0.144170 -1.468157 0.852828 -2.097512 -1.363791 0.933203 -3.512660 1.949219 2.588203 -2.616296 -0.725342 1.456398 0.284383 1.507961 9.901957 -1.076477 4.092592 1.946322 -4.069521 1.977719 -1.937267 -0.614432 0.098975 2.290624 1.349946 -3.859466 -3.088917 2.786052 4.160843 2.855444 -4.734678 0.186631 -0.442648 0.597404 -0.817830 0.273342 1.468534 1.006112 -2.826209 -0.784232 3.067064 7.610794 -2.054776 -3.365263 1.772735 1.694355 0.438950 -3.002019 -1.485853 -1.821511 0.497989 2.090807 0.343954 2.163111 5.096314 -7.302103 3.249198 -0.650157 -1.108110 3.294937 1.385757 -2.898282 -3.064969 -0.283693 3.250507 4.253675 0.799981 0.318021 0.290339 -3.224264 -0.468192 0.667324 1.236147 -1.135518 1.812270 0.553103 -3.073975 -2.188956 -1.480941 -0.742995 -0.775989 -1.037654 2.164200 1.021765 -7.896480 4.439570 0.332950 -1.717276 0.197035 -1.279814 3.400871 -3.559788 -4.358020 2.142414 -1.544505 -2.181418 -1.203944 0.199343 1.770539 0.869011 2.013437 -2.166877 -4.805342 3.848091 0.245290 3.849050 1.745264 0.563015 3.743231 -0.409598 -1.730356 -2.823036 -3.008247 1.812602 -0.868437 -3.115842 -0.070267 -1.357239 3.412120 3.591424 -0.386797 -1.902499 -1.658509 3.360984 -4.381910 -0.472467 3.183376 2.530443 -2.842135 1.367176 3.762956 -3.630108 -1.032798 -2.306681 -0.750957 -1.853878 -3.268064 1.096765 -1.356387 1.331101 1.218739 -0.023036 -0.841524 1.174957 0.351119 0.109931 0.043617 4.304796 5.393107 -2.567513 0.276772 -3.851126 2.338905 -5.028598 -5.031423 2.025475 -0.641620 -2.699806 -0.026964 0.492464 3.064018 -0.442789 -0.868573 -1.751846 0.570386 +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.082025 -2.257554 0.847485 -7.403997 6.168088 4.840790 2.892050 -3.711572 -8.004216 -0.777656 2.803398 -8.356904 -2.512915 9.428554 -3.010997 6.477217 12.268443 2.045674 -3.731593 -1.639841 7.443713 -0.559980 11.253402 10.633043 -7.422694 -0.379754 -0.098927 3.083557 1.412354 3.223562 -1.851283 -5.670116 4.169061 -6.674613 -1.032060 -5.169301 0.641766 1.834712 6.455031 -11.959665 2.177739 0.145672 0.308565 -2.064098 -1.946671 3.035390 6.683530 7.050928 -1.413503 2.640478 6.319204 0.995090 -0.882358 1.950815 2.432460 1.786798 2.813700 2.254639 -3.594638 -2.996675 -1.463065 -0.546205 0.609150 7.355013 9.798385 1.030082 -0.732379 3.524114 1.833470 1.805102 3.568655 1.568259 0.381337 0.941187 3.464601 -8.657504 -1.118648 -14.740332 -1.851039 -15.333954 -5.159872 -0.314481 5.746314 -1.856953 4.255895 -1.642670 7.898909 -0.490552 -1.800876 5.674952 9.890200 -7.448731 -3.818855 -4.734939 -4.163998 1.906066 -3.860407 1.232267 5.739830 -0.286918 -7.352473 -4.825597 3.046265 2.895457 -2.733397 -4.543157 1.921949 6.362285 -5.278091 -5.029532 -1.756398 5.869809 -0.947424 -12.399341 -1.469345 -5.462884 3.698321 0.564612 -3.800467 -7.222032 1.545250 4.208208 -3.902409 -4.078422 -0.756765 7.186699 5.098280 3.051231 0.836662 0.676496 2.242028 11.563819 2.870436 -5.675757 0.829960 -0.352791 -3.017419 2.719324 -6.333101 -3.260681 3.280315 -7.205648 3.210328 5.402583 -4.858389 -0.638839 6.891596 2.483298 2.137778 24.761614 -1.073388 9.809808 5.735727 -7.697636 4.472763 -2.694707 0.303806 1.762331 4.037093 0.620930 -11.500739 -7.297994 5.158007 8.223222 6.130373 -10.364063 -2.780083 -1.345010 -0.381830 -0.867898 0.079563 2.079407 0.380977 -5.800524 -1.806605 6.152109 16.277066 -4.217339 -4.571679 3.634740 4.215560 -2.195149 -8.506924 -3.724676 -5.885981 1.694199 2.491235 0.977951 5.594819 10.395821 -16.089947 7.101594 -1.064501 -1.499478 7.247068 2.852060 -7.368949 -8.795416 -1.386011 5.358674 9.225180 -0.173546 0.642189 2.938489 -7.301076 -0.611186 1.044953 0.880191 -2.581691 3.212524 1.548775 -4.915495 -3.942844 0.125120 -2.474484 -2.556827 -1.432391 5.090725 1.744879 -14.124540 7.878413 0.717769 -2.988032 1.637164 -2.560558 7.226207 -7.067951 -7.800738 4.480546 -0.971406 -2.084655 -3.890798 1.268054 4.451995 0.928759 5.429684 -5.120023 -10.251430 5.872172 -2.498085 7.335755 3.331018 -0.133622 5.104458 -1.644381 -2.510976 -7.782280 -5.756391 1.903745 0.632760 -7.360011 -1.016577 -2.170307 7.462743 5.978462 0.183469 -5.428245 -2.363765 8.391853 -8.221756 -1.001580 5.793385 4.330002 -7.228129 1.199062 7.166754 -8.751753 -0.570363 -3.932163 -2.535970 -3.347284 -6.034376 4.266928 0.445673 4.268707 -0.297973 0.808928 -0.149026 3.249794 2.092882 0.601190 1.580985 9.872568 10.133184 -3.667627 -1.772116 -8.043898 4.337604 -9.691775 -10.007124 4.107817 -1.171117 -6.942181 0.731756 1.179908 8.266842 0.145147 -0.576946 -2.469122 1.211704 +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.165260 0.172609 0.480746 -0.484062 0.447822 0.313515 0.134964 -0.237612 -0.392331 -0.110170 -0.085159 -0.343299 -0.225132 0.590460 -0.258322 0.251790 0.858581 0.266907 -0.150723 -0.209319 0.451958 -0.361041 0.743548 0.722732 -0.616053 0.030276 0.391064 0.384724 0.163231 0.676144 -0.531000 -0.335889 0.156621 -0.315402 0.221037 -0.562029 0.031921 -0.007971 0.137160 -0.943468 0.084497 -0.139213 0.000000 -0.092058 -0.059386 0.236794 0.697015 0.438310 -0.137585 0.070171 0.397552 0.192967 -0.008684 0.141448 0.287064 0.377961 0.688520 0.192225 -0.209090 -0.048235 -0.127973 -0.362255 0.142611 0.584705 0.684370 0.078163 0.031374 0.094888 -0.003155 0.030019 0.107377 0.136045 -0.031060 0.261319 0.201672 -0.796593 0.275509 -1.074509 -0.127360 -1.101609 -0.354148 -0.375697 0.051978 -0.197124 0.363493 0.114118 0.654595 -0.043972 0.176718 0.061937 0.764062 -0.653191 -0.200065 -0.344286 -0.363927 0.113227 -0.271070 -0.049480 0.151611 -0.099518 -0.411639 -0.550457 0.465967 0.252530 -0.242562 -0.043520 -0.024584 0.518540 -0.564055 -0.431203 -0.462307 -0.051883 -0.248215 -0.816738 0.107978 -0.399217 0.523123 0.028814 -0.170817 -0.748738 0.159455 0.655947 -0.222759 -0.329530 -0.225652 0.588729 0.283876 -0.046279 0.023602 -0.196413 0.096422 0.612708 0.561954 -0.340799 -0.081432 0.106282 -0.518426 -0.140091 -0.493050 -0.159123 0.203229 -0.494352 -0.059025 0.447341 -0.361900 0.101221 0.594377 -0.098148 0.381370 1.728146 -0.195142 0.372596 0.100062 -0.714254 0.365799 0.008559 -0.142137 0.128487 0.384615 0.258888 -1.008340 -0.492271 0.229349 0.579301 0.391650 -0.600218 -0.345494 -0.355124 -0.102620 0.110372 0.009436 0.093483 -0.246598 -0.383611 -0.195164 0.139806 1.127034 -0.315778 -0.631796 0.199142 -0.072951 -0.333510 -0.724168 -0.181455 -0.354843 0.112542 -0.122526 -0.128442 0.375142 0.713773 -1.435766 0.586789 -0.317021 -0.416063 0.668696 -0.086703 -0.173094 -0.555977 0.111039 0.538850 0.647979 0.035371 -0.015636 0.084840 -0.543664 -0.076265 -0.055906 0.361404 -0.309061 0.279890 0.287846 -0.701010 -0.414784 -0.175035 0.040723 -0.349928 -0.145958 0.237239 -0.105035 -1.267705 0.717965 0.013823 -0.080285 0.344102 -0.080838 0.213447 -0.594583 -0.670520 0.272608 0.104095 0.086817 -0.239364 -0.018914 0.475981 -0.068705 0.106941 -0.454880 -0.767351 0.149694 -0.205129 0.361470 0.246703 0.219186 0.509812 0.140742 -0.121134 -0.565221 0.023968 -0.015833 -0.110237 -0.311000 -0.230287 -0.212106 0.554386 0.736456 -0.006256 0.053225 -0.103853 0.644776 -0.548710 -0.133507 0.382347 0.285474 -0.401566 -0.004434 0.444243 -0.510232 -0.408821 -0.237362 -0.268084 -0.069737 -0.440124 0.266066 -0.342322 0.159695 0.260284 0.010235 -0.233139 0.287408 0.061866 0.064617 0.034427 0.634399 0.808011 -0.331565 0.085889 -0.437206 0.266057 -0.785343 -0.496255 0.087510 0.021690 -0.317486 0.089719 0.105258 0.479110 -0.048319 0.127987 0.076291 -0.227730 +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.380826 -0.691359 1.187108 -3.173807 2.632152 1.813701 1.115465 -1.168901 -3.236756 -0.810858 0.801668 -3.511711 -1.394517 4.074553 -1.370870 2.244364 5.414647 1.055299 -1.319345 -0.767061 3.266324 -0.875795 4.790670 4.607761 -3.332827 -0.209225 0.233029 1.741104 0.449950 2.059273 -1.007480 -2.876118 1.444789 -2.538879 -0.059397 -2.561340 0.254324 0.830729 2.148129 -5.476239 0.841720 0.371663 -0.214541 -0.809458 -0.669174 1.143030 3.180772 2.901349 -0.742573 1.068039 2.825629 0.506044 -0.384733 0.745605 1.053528 0.823942 1.399481 0.972382 -1.661926 -0.969343 -0.816704 -0.651944 0.384427 3.169260 4.192966 0.357933 -0.361844 1.066921 0.446316 0.802861 1.324460 0.689093 0.392388 0.487162 1.680315 -3.892022 -0.413126 -7.049231 -0.583097 -7.155657 -2.268430 -0.558850 2.619443 -0.235407 1.511232 -1.023683 3.618781 -0.482437 -0.403079 2.598214 4.456981 -3.056833 -1.548790 -2.320022 -2.060083 0.813292 -1.603126 0.169189 1.809486 -0.099299 -3.207847 -2.281677 1.446574 1.054287 -1.135961 -1.600959 0.490531 2.792341 -2.856075 -2.048741 -1.550726 2.483618 -0.050489 -5.450069 -0.497052 -2.288862 1.892867 0.438090 -1.708732 -3.005145 0.867759 2.074059 -1.645905 -1.508509 -0.799324 3.643851 2.109599 0.918571 0.403338 0.089684 0.836608 4.540173 1.794919 -2.318251 0.111099 0.181604 -1.690686 0.644077 -2.820645 -1.220530 1.452143 -3.028264 1.080838 2.215931 -2.168494 -0.397263 2.636779 0.648644 1.253221 11.327728 -0.697625 4.107623 2.190437 -3.285234 2.505762 -0.698142 -0.060542 0.675655 1.872324 0.659087 -5.455750 -3.072102 2.215397 3.552675 2.649869 -4.369064 -1.431926 -0.801208 -0.079393 -0.163683 0.214293 0.906347 0.071805 -2.566133 -0.818447 2.508088 7.293766 -1.707322 -2.811033 1.482610 1.568537 -0.910403 -3.848104 -1.345666 -2.337978 0.542319 1.194025 0.066727 2.415356 4.581087 -7.805959 3.189564 -0.488821 -0.924502 3.159540 0.840109 -2.844875 -4.219526 -0.624698 2.598051 4.235568 0.220293 0.361637 0.966133 -3.151769 -0.197848 0.464329 0.876618 -1.355776 1.588967 0.509922 -2.568602 -1.857711 -0.575913 -1.379711 -1.043896 -0.944555 1.931842 0.686295 -6.861612 3.650979 0.296667 -1.004623 0.854499 -0.824263 2.974121 -3.121091 -3.771297 1.874176 -0.374464 -1.201961 -1.751499 0.357685 1.828659 0.189990 1.626600 -2.118505 -4.802409 2.469379 -1.084160 3.184762 1.411406 0.110533 2.674843 0.132853 -1.068773 -3.463296 -2.384859 1.134947 -0.093282 -2.995129 -0.961019 -0.928408 3.112521 2.908372 -0.014540 -1.955225 -1.213670 3.900016 -3.562525 -0.528176 2.557714 1.394017 -2.967634 0.578870 3.339428 -3.733648 -0.676886 -2.207664 -0.887327 -1.366448 -2.574384 1.637419 -0.399560 1.531725 0.292193 0.096492 -0.664641 1.282460 1.026000 0.057901 0.460878 4.530718 4.746311 -1.749989 -0.175149 -3.335352 1.845854 -4.299166 -4.212991 1.287199 -0.360896 -2.739655 0.305474 0.556702 3.536780 -0.006014 -0.030435 -0.746890 0.324316 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(suffix*, suffix&) = -0.425197 0.706566 0.888738 -1.226568 2.153055 1.782669 0.818997 -0.183919 -1.587945 -0.965459 0.325061 -2.523099 -2.017955 2.469366 -0.695318 0.662415 3.097715 0.347582 -0.530852 -0.073522 1.053885 0.308926 2.982700 2.405751 -1.979639 0.290837 0.284626 0.342415 -0.664441 1.926937 -0.792789 -3.129781 1.224928 -0.441075 -0.025010 -0.538263 -0.284874 -0.780784 0.357252 -3.024665 0.201609 1.208348 -0.937681 -0.549059 -0.122716 0.333468 3.030149 1.620203 -0.263557 0.665952 0.992834 0.494224 -0.106185 0.519684 1.084711 0.071323 0.699656 -0.099011 -1.578444 -0.430459 -0.755261 -0.959746 -1.099721 1.888179 2.161925 0.226100 -0.348927 0.181239 -0.702790 0.521722 0.279415 0.622712 1.281255 0.974953 1.180884 -0.119752 -0.734943 -2.422102 -0.648841 -3.998098 -1.794000 -0.830117 1.812615 0.665457 0.707174 -0.988491 2.399430 -0.253696 0.092776 1.291992 3.539510 -1.859679 -1.140094 -1.282443 -0.813791 0.468949 -1.119957 0.282764 0.577390 -0.810288 -2.185671 -1.455619 0.571751 0.302561 -0.731882 -0.531956 0.076024 1.952148 -2.091588 -0.617625 -1.817690 0.614343 0.330397 -3.348106 -1.698662 0.204511 0.687204 1.004796 -1.260365 -1.680711 1.066753 1.112603 -1.098862 -1.032055 0.124290 2.006561 0.863950 0.802636 0.665528 0.454318 1.295940 2.613102 1.599403 -0.821095 0.225145 -0.433009 -0.154232 0.598693 -0.632174 -0.453566 -0.513866 -1.585052 1.024841 1.477650 -1.461538 -0.507647 -0.897322 -0.226285 0.782534 5.165104 -0.902654 2.100749 0.586097 -2.617694 0.998619 -0.885740 -0.835303 -0.351985 1.322833 1.268292 -1.286745 -1.498750 1.935802 2.538069 1.486975 -2.385667 0.725687 -0.251029 0.223945 -0.787353 0.744829 0.787092 0.687863 -1.539585 -0.613057 1.711486 3.962926 -1.375189 -3.467000 1.078866 0.850178 0.952878 -0.731730 -0.485206 -0.406171 0.330704 1.470191 -0.288195 1.233709 2.802290 -4.227107 2.051608 -0.095049 -1.188472 2.018945 0.635861 -1.382757 -0.678898 -0.018123 2.187145 2.232239 1.058119 -0.157593 -0.381222 -1.901169 -0.365126 0.421316 0.775081 -0.659501 1.237143 0.139754 -1.962256 -1.623416 -1.573866 -0.285524 -0.589522 -1.236204 1.074801 0.735483 -4.817776 2.812856 0.593115 -0.725507 -0.406339 -0.522638 1.627694 -1.858758 -2.989952 0.975271 -1.392307 -1.946852 -0.150680 -0.312147 0.719390 1.100574 1.208607 -1.048979 -2.365792 2.344863 0.587313 2.315333 1.019366 0.754735 2.388831 0.398464 -1.291170 -1.087227 -1.963825 2.316972 -0.725518 -1.517218 -0.085665 -1.010128 1.824484 1.963765 -0.076068 -1.283425 -2.059518 1.748219 -2.047799 -0.087370 1.937886 0.851206 -1.417276 0.584130 2.191100 -1.363985 -0.717390 -1.374713 -0.369272 -1.520465 -1.854513 0.139691 -0.951127 0.397084 0.999131 -0.276613 -1.036889 0.390399 -0.018929 -0.190488 -0.055365 1.966399 2.437538 -2.088361 0.932976 -2.056834 1.545308 -2.819068 -2.885892 1.161995 -0.788511 -1.283950 -0.426703 -0.156056 1.056692 -0.240652 -0.453457 -0.940856 0.369638 +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.725321 0.442497 3.052451 -6.182955 5.267556 3.486330 1.950693 -0.737369 -5.317992 -3.475517 -0.184480 -4.885789 -4.426982 8.411854 -2.675721 2.591023 10.681136 2.692852 -1.509388 -1.287055 6.399561 -2.220913 8.869386 8.329728 -7.487519 -0.694077 2.600478 3.798622 0.912720 4.924346 -1.021102 -6.620296 2.816981 -3.207515 1.450006 -6.142076 1.375427 1.012890 0.680217 -11.231121 1.405897 0.378747 -2.131057 -1.681769 -1.417526 2.460634 7.688998 6.314604 -3.902942 1.005829 5.287973 3.239829 -1.877296 1.891739 0.527829 0.751236 -0.360354 0.487077 -3.135565 -1.314825 -1.150996 -4.632274 0.965563 6.880636 8.396541 0.474887 0.655617 2.340894 -0.445590 1.720870 1.766182 1.009363 2.525347 0.729895 4.131455 -6.617218 -2.726674 -14.275839 -1.346140 -16.456135 -4.461441 -3.497164 4.795890 0.826774 1.937282 -1.672833 7.596786 -0.210054 1.407014 7.459037 9.566202 -5.772703 -3.003036 -6.799448 -4.970348 3.261160 -3.984441 0.036645 1.434144 -0.291332 -5.846150 -5.940308 1.289098 1.504395 -2.575188 -4.537537 0.186263 6.762067 -7.321522 -3.346854 -4.954266 3.071966 -0.441901 -10.990391 -1.005337 -4.034439 5.821054 0.759268 -1.893137 -5.380055 1.252438 5.061971 -2.725461 -2.970327 -2.549819 6.697607 2.965541 0.616566 1.203843 -0.639159 1.389408 7.392852 5.624071 -4.088234 -1.167579 0.965505 -3.609458 -0.570963 -6.135512 -1.848005 4.214160 -6.498235 0.894318 4.690447 -4.590055 -2.941032 4.068659 -1.879309 4.683337 20.427697 -1.011216 5.635951 2.997807 -8.077688 3.876230 -1.068037 -1.698148 2.108865 4.997733 2.195053 -8.068698 -5.908909 3.268300 7.278586 5.679666 -6.214448 -2.609896 -2.619539 -0.754536 -0.920263 0.126179 2.067231 -1.791456 -5.084327 -1.908543 4.991802 11.377767 -2.563015 -5.053559 2.849960 5.079734 -2.175095 -6.058314 -2.025296 -3.784566 0.727966 3.280524 -1.409740 4.867813 9.426680 -15.556851 6.361503 -0.969149 -0.996026 2.492269 0.970246 -4.151626 -7.912620 1.173280 6.789552 8.156152 0.231270 2.196825 0.861034 -6.468087 -0.554265 1.398726 3.038756 -2.384217 3.033548 0.725755 -5.696309 -5.254387 -0.856519 -2.664240 -2.393988 -1.448738 3.134720 1.017838 -13.542259 8.736619 -1.626769 -1.606784 1.613842 -1.865368 6.404694 -7.604010 -9.103261 4.189433 -0.238192 -3.014972 -3.050393 0.574018 5.984768 0.244624 1.200596 -3.114883 -9.988758 4.693968 -0.897361 5.238936 2.840232 1.876888 8.021445 -0.032207 -2.320630 -6.787123 -4.698310 3.366101 -1.230476 -5.283859 -1.600955 -1.713876 6.269740 7.819143 -0.793852 -3.571492 -0.637516 7.675492 -6.321057 -2.000611 5.383372 3.201049 -4.583646 2.323124 6.606375 -7.479356 -3.521869 -4.767498 1.508597 -0.880783 -6.592419 2.511947 -2.765274 2.468124 2.570915 0.987363 -2.480229 3.219305 2.368180 0.877951 -0.126927 8.305114 9.110925 -5.024374 0.524178 -6.282509 3.260646 -10.144199 -8.018320 1.571469 -0.519066 -2.130782 1.476425 -0.448169 5.555303 -0.868380 2.147369 -0.759952 -0.593387 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.221693 -0.068124 0.945712 -2.732723 2.151010 2.186344 0.821197 -0.405601 -2.370533 -1.301532 -0.126579 -2.707224 -1.435066 3.707414 -0.967804 1.705119 5.783181 1.204464 -0.681787 -0.350758 2.970442 -2.506192 4.130045 4.589620 -3.014893 -0.337480 1.546395 2.754885 0.200543 2.782658 -0.431175 -3.505980 1.037956 -1.885023 0.576739 -3.997076 0.683597 0.873042 0.766709 -6.081123 0.722938 0.231633 -0.362917 -0.896017 -0.832152 1.429848 4.168883 2.751613 -1.669936 0.373798 2.198937 1.223366 -0.781610 0.826111 0.274861 0.758058 1.466189 1.301578 -1.406991 -0.599784 -0.389762 -1.802343 0.830336 2.825772 4.732117 0.142593 0.324628 1.340791 -0.118189 0.684863 0.860308 0.309770 0.491410 -0.044811 1.656876 -4.420457 -1.095699 -8.387281 -0.484929 -7.842656 -1.858131 -1.280782 1.821506 -0.562001 1.194141 -1.243671 3.164058 -0.427277 0.573691 3.210619 4.437241 -2.579231 -1.303353 -3.122295 -2.245348 1.422101 -1.646577 -0.367355 2.044531 -0.203595 -2.447314 -3.107509 1.938682 1.007062 -1.060249 -2.371946 0.239761 2.850631 -2.951974 -2.065981 -1.800394 1.465064 -0.644360 -5.112316 0.553097 -3.037247 1.616433 0.286421 -0.769047 -3.278896 0.466647 2.764451 -1.156809 -1.547313 -1.092758 3.983535 1.191075 0.227258 0.597918 -0.426741 0.440873 3.942942 2.811695 -1.879756 -0.434605 0.600935 -2.754936 -0.267368 -3.858795 -1.217649 2.197737 -3.050017 -0.027460 2.207408 -1.968165 -0.866920 3.064690 -0.572615 1.994038 12.953317 -0.303216 2.418116 1.375214 -4.001166 3.221155 -0.340391 -0.715005 0.862347 2.114010 0.720036 -6.635392 -2.608383 1.251656 3.022849 2.545053 -3.991250 -2.304097 -1.302733 -0.356915 0.008124 -0.150846 0.875165 -0.801606 -2.361717 -0.762487 2.098514 7.387793 -1.089819 -2.146948 1.406112 2.355285 -2.624655 -5.518707 -1.008503 -2.618479 0.224319 -0.203636 -0.682483 2.061541 4.030889 -8.053813 2.806115 -0.642179 -0.407915 2.328251 0.274360 -1.834744 -6.431976 0.275696 3.344268 4.859274 -0.387694 1.271158 0.459737 -2.686744 -0.174520 0.448213 1.105020 -0.971621 1.226586 -0.051000 -3.595582 -2.067412 -0.425087 -1.370413 -1.417847 -1.026869 1.288139 0.961002 -5.918669 4.145837 -0.670137 -0.578560 1.177285 -0.574032 2.880896 -3.204743 -4.278824 1.906097 0.247898 -0.701454 -2.306878 0.317874 2.693823 0.006149 0.798314 -1.114882 -5.950926 1.656470 -1.686565 2.176118 1.194066 0.538534 3.429431 1.438952 -0.982679 -4.559943 -2.560379 0.098041 -0.489323 -2.236391 -1.267276 -0.702215 2.898180 3.210247 -0.097040 -1.551521 -0.734613 4.519402 -3.029839 -0.716425 2.353831 0.703983 -2.308900 0.512210 2.919482 -4.527773 -1.344377 -1.966357 -0.105243 -0.235820 -3.262036 1.094948 -0.980032 1.062622 0.881924 0.278286 -0.823386 1.336179 1.330419 0.406628 -0.143953 4.899270 4.695698 -1.820450 -0.101620 -2.612690 1.042287 -4.790015 -3.336942 0.544368 0.297048 -1.243801 0.766515 1.393105 2.471335 -0.439070 1.280709 -0.115805 -0.624463 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::iter_swap(suffix*, suffix*) = -0.198214 0.078958 0.464348 -0.500321 0.424520 0.041799 0.171689 -0.046262 -0.493004 -0.370981 -0.064378 -0.309805 -0.403752 0.679106 -0.294666 0.110260 1.026848 0.411049 -0.074612 -0.389774 0.499893 -0.497269 0.877032 0.889934 -0.776504 0.004662 0.406328 0.525098 0.326300 0.564811 -0.219588 -0.385749 0.276963 -0.264268 0.326945 -0.744117 0.102933 0.084421 -0.107481 -1.170451 0.080061 -0.164625 -0.036938 -0.032548 -0.036463 0.643558 0.696788 0.539168 -0.305139 0.278048 0.548826 0.258263 -0.031300 0.182575 0.114942 0.195794 0.408370 0.070706 -0.273954 0.040750 -0.112432 -0.713962 0.126439 0.648885 0.853815 -0.007188 0.073331 0.092200 -0.020985 0.164285 0.229986 0.134674 0.145006 0.104614 0.380182 -0.863843 0.006063 -1.533969 -0.165389 -1.970789 -0.438356 -0.512765 0.476133 -0.243417 0.158877 0.176829 0.754307 0.084195 0.221525 0.422958 0.822327 -0.553919 -0.274937 -0.427129 -0.342401 0.323222 -0.399513 -0.022316 0.264109 0.095136 -0.469339 -0.551138 0.439122 0.093181 -0.286321 -0.198521 -0.101933 0.655612 -0.884376 -0.315381 -0.697237 0.041864 -0.042154 -0.935484 0.191333 -0.450757 0.913549 0.100900 -0.133567 -0.452567 0.129619 0.573303 -0.200186 -0.182548 -0.315415 0.630912 0.206962 -0.037559 0.071835 -0.048100 0.035119 0.591326 0.705492 -0.380630 -0.192400 0.235797 -0.563637 -0.132968 -0.666759 -0.173931 0.554695 -0.579702 0.136518 0.282208 -0.441900 -0.319284 0.677303 -0.203570 0.488004 1.663002 -0.084076 0.417817 0.234156 -0.670782 0.243642 -0.041178 -0.052393 0.325452 0.573121 0.186703 -0.718561 -0.550502 0.132941 0.664032 0.465067 -0.701403 -0.440179 -0.353467 -0.028844 0.092710 0.015278 0.150284 -0.265176 -0.385531 -0.166781 0.203528 1.019010 -0.240647 -0.515401 0.087441 0.167162 -0.382610 -0.785195 -0.137695 -0.207987 0.112048 0.021274 -0.099462 0.360063 0.823953 -1.757178 0.643642 -0.257119 -0.131084 0.367478 0.023983 -0.207232 -0.974268 0.171746 0.532822 0.795853 0.059959 0.099960 0.208139 -0.656821 -0.077398 0.008007 0.443516 -0.311730 0.322783 0.248115 -0.585052 -0.483624 -0.146408 0.016672 -0.189630 -0.042724 0.290636 0.019550 -1.611625 0.717382 -0.280632 -0.227621 0.252767 -0.041149 0.410239 -0.756600 -0.776660 0.293300 0.047129 -0.288467 -0.483426 -0.006290 0.597651 -0.202931 0.036511 -0.301702 -0.797878 0.369890 -0.264800 0.348638 0.292720 0.171961 0.895070 -0.054063 -0.196759 -0.651659 0.035202 0.077109 -0.365056 -0.272599 -0.037508 -0.167156 0.519133 0.942078 0.005418 -0.041182 0.130645 0.852688 -0.709824 -0.344755 0.478319 0.532772 -0.195867 0.465636 0.544660 -0.805020 -0.475339 -0.396685 -0.165842 0.132749 -0.482460 0.394024 -0.479694 0.224671 0.288505 0.139431 -0.288440 0.434620 0.086890 0.079975 -0.058902 0.800443 1.272082 -0.518585 0.137997 -0.499789 0.276239 -0.923996 -0.555592 -0.046189 0.102969 -0.176066 0.230873 -0.045837 0.528986 0.020348 0.041358 -0.096500 -0.106686 +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.161346 0.210252 0.570000 -0.561865 0.634113 0.103252 0.245248 0.186104 -0.621662 -0.659231 -0.059878 -0.538557 -0.738250 0.914812 -0.342671 -0.052375 1.374527 0.431508 -0.026031 -0.432777 0.483983 -0.477981 1.116066 1.072855 -0.965821 0.035886 0.442346 0.452938 0.171828 0.735560 -0.173165 -0.919855 0.391089 -0.155222 0.405127 -0.721537 0.042982 -0.128037 -0.333047 -1.465799 0.071721 0.060064 -0.315818 -0.085072 -0.011768 0.849637 1.089035 0.638810 -0.382982 0.386405 0.601494 0.331594 -0.122920 0.192355 0.194597 0.099372 0.260596 0.066075 -0.531864 0.130254 -0.214780 -0.888600 -0.099792 0.789225 0.969561 -0.038387 0.034895 0.027107 -0.176708 0.243278 0.215609 0.155697 0.524971 0.175632 0.580630 -0.699358 -0.345783 -1.808414 -0.227485 -2.750109 -0.636047 -0.683760 0.865851 -0.197461 0.017198 -0.054132 0.949069 0.039119 0.329921 0.750325 1.223411 -0.584760 -0.441290 -0.650674 -0.375036 0.387357 -0.502748 -0.039367 0.358865 -0.051780 -0.703350 -0.632839 0.404556 0.018451 -0.300364 -0.275758 -0.120973 0.878217 -1.208103 -0.192902 -1.076762 0.126963 0.196824 -1.235151 -0.034872 -0.228895 1.073353 0.333689 -0.309774 -0.430262 0.292177 0.663905 -0.364971 -0.162825 -0.205054 0.891639 0.177668 0.098812 0.197035 0.106414 0.234786 0.700154 1.035312 -0.381855 -0.174461 0.222162 -0.525705 -0.150195 -0.634483 -0.214919 0.555617 -0.669191 0.365410 0.304692 -0.605172 -0.547118 0.422044 -0.340411 0.622247 2.014344 -0.244757 0.593694 0.144250 -0.899373 0.292645 -0.147987 -0.190412 0.164695 0.772970 0.371696 -0.569771 -0.595931 0.347185 0.903598 0.593184 -0.953681 -0.224725 -0.366359 -0.006444 0.000313 0.121422 0.251180 -0.117792 -0.506073 -0.226453 0.384524 1.376714 -0.340820 -0.964830 0.089689 0.364252 -0.072831 -0.667913 -0.059571 -0.061775 0.179482 0.342444 -0.182306 0.490948 1.073626 -2.288591 0.834407 -0.275976 -0.211695 0.355734 0.165086 -0.253411 -1.097712 0.161097 0.795738 1.074541 0.348851 0.079809 0.083579 -0.771536 -0.106549 0.076996 0.608589 -0.323230 0.418203 0.178561 -0.790179 -0.663166 -0.419746 -0.051965 -0.089656 -0.195868 0.296632 0.125082 -2.286761 1.032869 -0.256764 -0.271153 0.021951 -0.015375 0.588620 -0.936622 -1.136004 0.318354 -0.193507 -0.778471 -0.461086 -0.158624 0.617368 -0.077212 0.152481 -0.254079 -1.120198 0.771898 -0.078889 0.665741 0.379744 0.248959 1.431892 -0.026127 -0.345475 -0.660888 -0.337223 0.578083 -0.592680 -0.348711 0.119904 -0.261077 0.612756 1.085947 -0.053607 -0.200441 -0.148539 0.977027 -0.917389 -0.331154 0.684998 0.660118 -0.187390 0.680629 0.806352 -0.961941 -0.567900 -0.628430 -0.117443 -0.035796 -0.632715 0.235615 -0.701343 0.194981 0.432081 0.149763 -0.479796 0.371367 0.003048 0.009494 -0.133806 0.918506 1.713986 -0.929200 0.366136 -0.698696 0.509012 -1.173122 -0.917176 -0.013034 0.018375 -0.160444 0.181294 -0.147328 0.468862 -0.033785 -0.088130 -0.281425 0.053169 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int std::__bit_width(unsigned long) = -0.330474 -0.429773 0.214934 -0.698046 0.481560 -0.048437 0.383900 -0.339168 -0.956292 -0.268541 0.346009 -0.929029 -0.242474 1.042812 -0.233579 0.794553 1.272606 0.439687 -0.388616 -0.340714 0.666781 -0.497024 1.145070 1.137293 -0.680007 0.044345 -0.215583 0.288617 0.293501 0.360070 -0.170630 -0.349090 0.562659 -0.678770 0.115161 -0.622213 0.007835 0.442939 0.563219 -1.301900 0.258737 0.223384 0.614841 -0.221675 -0.130851 0.618172 0.563296 0.747827 -0.008247 0.514058 0.521456 -0.179329 0.189706 0.288985 0.448937 0.264384 0.449871 -0.179769 -0.545650 -0.121563 -0.210765 -0.551992 0.145613 0.690934 1.002153 -0.036331 -0.102722 0.310514 0.249955 0.248083 0.609249 0.162586 0.017838 -0.218175 0.320400 -1.103146 0.122671 -1.480069 -0.266639 -2.189057 -0.640172 0.044004 0.923862 -0.067293 0.404346 -0.135891 0.859151 -0.044745 -0.284341 0.204371 0.973275 -0.836525 -0.478632 -0.279684 -0.180543 0.200977 -0.467374 -0.030780 0.768937 0.071444 -0.773578 -0.249852 0.683791 0.244643 -0.304213 -0.267781 0.210454 0.799678 -0.782963 -0.656604 -0.285652 0.421577 -0.066282 -1.097309 0.703588 -0.546535 0.303596 0.185941 -0.490918 -0.581057 0.267279 0.264920 -0.394614 -0.324277 -0.809416 0.823562 0.217468 0.351341 0.087711 0.221442 0.070647 1.047513 0.340128 -0.688309 0.129933 0.102653 -0.378629 0.459264 -0.587934 -0.646851 0.565879 -0.805619 -0.103517 0.144969 -0.583249 0.038725 0.672218 0.471851 0.144985 1.594908 -0.062092 0.930661 0.659990 -0.695572 0.561275 -0.231909 0.214880 0.248145 0.638905 -0.080073 -0.897904 -0.864475 0.459808 0.919824 0.687435 -0.928159 -0.507447 -0.210491 0.111913 0.102945 0.035301 0.217345 0.100336 -0.690426 -0.150619 0.256114 1.536153 -0.440524 -0.076669 0.261324 0.079504 -0.267324 -1.163592 -0.386267 -0.571835 0.182880 -0.350046 0.159104 0.434231 1.091627 -1.567240 0.927183 -0.446844 -0.101413 0.897870 0.152567 -0.714200 -1.551067 -0.345998 0.384746 1.045318 -0.085636 0.153495 0.483026 -0.829862 -0.094581 -0.171565 0.087003 -0.263840 0.321543 0.055793 -0.409297 -0.251948 -0.011648 -0.075976 -0.295381 0.052101 0.602215 0.739519 -1.237913 0.655060 -0.043354 -0.376258 0.281122 0.061817 0.633356 -0.706686 -0.655106 0.335715 -0.190247 -0.410496 -0.642556 0.103079 0.448850 -0.419311 -0.045953 -0.297607 -0.691568 0.766606 -0.496840 0.753332 0.371890 -0.215140 0.567461 0.351115 -0.361109 -0.491649 -0.228969 -0.440765 -0.452848 -0.485929 0.074361 -0.215994 0.785019 0.691784 0.245710 -0.299577 0.160931 0.896588 -0.950824 -0.264035 0.761197 0.265414 -0.471886 0.494015 0.826208 -1.033543 -0.048446 -0.414610 -0.378332 -0.182545 -0.440221 0.633841 0.005723 0.422734 -0.198505 0.122979 -0.013143 0.402539 0.224947 -0.080631 0.032671 1.230511 1.109767 -0.326269 -0.143427 -0.752737 0.346823 -0.914997 -0.716030 0.221499 0.463201 -0.887949 0.168066 0.261576 0.817991 0.190381 -0.260914 -0.417452 0.143059 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int std::__countl_zero(unsigned long) = -0.636051 -0.644751 0.275596 -1.006688 1.147910 0.067767 0.864829 -0.237691 -1.797306 -0.554353 0.405554 -1.822630 -0.721582 2.305005 -0.126624 1.833342 2.871858 0.994525 -0.573320 -0.324546 1.567793 -1.553061 2.304440 2.131870 -1.244752 0.101062 -0.320042 0.477073 -0.080519 1.072607 -0.655853 -1.063075 1.176884 -1.957764 0.152122 -1.357066 0.069242 0.801912 1.106316 -2.839189 0.464335 0.796647 1.055371 -0.678050 -0.565520 0.496448 1.468271 1.555974 -0.103375 0.911804 0.664594 -0.871541 0.353997 0.696040 1.037924 1.032129 0.312085 0.019439 -1.623455 -0.152587 -0.544602 -1.586376 0.332985 1.197790 1.954738 -0.060138 -0.189019 1.001962 -0.050822 0.367332 1.032562 0.217312 0.282867 -0.678521 1.072350 -2.227971 -0.276636 -2.911581 -0.820455 -4.392252 -1.455429 -0.257081 1.711407 -0.221949 1.252844 -0.403155 1.763914 -0.560500 -0.240959 0.665020 2.357290 -2.135859 -1.181406 -1.202342 -0.315982 0.410922 -1.067538 -0.463903 1.911617 -0.597941 -1.747961 -1.091206 1.684908 0.837514 -0.521311 -1.094099 0.370387 1.855386 -1.541523 -1.980710 -1.269573 0.393346 -0.518511 -2.184574 1.257066 -0.421361 0.203240 0.918109 -1.016655 -1.810977 0.759834 0.930205 -0.748007 -1.358105 -0.690168 1.903282 0.208649 0.618106 0.626908 0.465263 0.211777 2.461639 1.524177 -1.098934 0.240115 0.325065 -0.986956 0.812006 -1.038694 -1.701731 0.834821 -1.834875 -0.673303 0.564471 -1.343875 0.348549 1.467068 0.936163 0.572644 3.324415 -0.085733 1.623036 0.985010 -1.749612 1.841225 -0.550033 0.086680 0.195147 1.514903 0.069308 -2.273844 -1.743354 0.961961 1.870800 1.547057 -1.956281 -1.403780 -0.857676 0.592331 0.352513 -0.034695 0.749532 0.629123 -1.650738 -0.202348 0.576339 3.652949 -1.570010 -0.714913 0.971846 0.006178 -0.527042 -3.185422 -0.884082 -1.705538 0.062019 -0.958710 0.000418 0.710127 2.377774 -2.787006 2.010436 -1.407965 -0.612630 1.974086 0.271614 -1.322295 -3.231115 -0.726974 1.165368 2.417540 0.251170 0.253575 0.518423 -1.650144 -0.172451 -0.342759 0.356521 -0.258021 0.864093 -0.648101 -1.157642 -0.765093 -0.074352 -0.371049 -1.061704 0.267454 1.045803 1.882180 -2.143440 1.625676 0.065347 -0.648965 0.911600 0.531150 1.321546 -1.486522 -1.997442 0.981662 -0.425232 -0.815139 -1.023549 0.153626 0.925747 -0.239232 -0.953555 -0.251625 -1.942908 1.742415 -0.546684 1.739044 0.771266 -0.290146 1.517582 1.448969 -1.292505 -1.012051 -0.641079 -1.150660 -1.192806 -0.997995 -1.076836 -0.519139 1.961747 1.593024 0.701049 -0.444883 -0.401176 2.009732 -2.247192 -0.565069 2.035191 0.409904 -0.985007 0.608407 2.157963 -2.157693 -0.368055 -0.810978 -0.327951 -0.418324 -1.100309 0.698730 -0.540251 0.545478 -0.083695 -0.056678 0.048880 0.514968 0.582279 -0.066166 -0.455053 2.593387 2.053845 -1.255818 -0.349374 -1.454239 0.639431 -2.049179 -1.542077 0.490617 1.455606 -1.890140 0.347806 1.329770 1.305439 0.142736 -0.683047 -0.800144 -0.429217 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.731976 1.047848 1.853346 -3.628940 3.698274 3.272658 1.311312 -0.570224 -2.954493 -2.261185 -0.428156 -3.939982 -3.350680 5.577948 -1.736381 1.762304 7.506189 1.499948 -0.909662 -0.318258 3.892703 -1.422516 5.979210 5.471698 -4.597098 -0.491026 2.095039 2.429884 -0.354979 4.009551 -1.094386 -5.580156 1.892043 -1.853440 1.088732 -3.635131 0.771213 -0.014196 0.389849 -7.511097 0.795101 1.008155 -1.096369 -1.379138 -1.064016 0.808781 6.030568 4.031670 -1.988770 -0.056710 2.857620 2.165156 -1.154247 1.272030 0.930407 0.734249 0.671175 0.314443 -2.586578 -1.004280 -1.064623 -2.594597 0.022512 4.506266 5.729085 0.583294 0.443535 1.521193 -0.955050 1.136431 0.540500 0.654978 1.778461 1.197617 2.493040 -3.772754 -1.723935 -8.833260 -1.078021 -10.224103 -2.947819 -2.616790 2.230169 0.785406 1.702031 -1.584845 4.997192 -0.348737 1.227036 4.129645 7.215187 -4.038790 -2.106991 -4.745769 -2.971944 1.812018 -2.643953 -0.100458 1.467748 -0.987913 -4.040902 -4.231379 1.097551 1.328406 -1.482116 -2.696951 0.135908 4.408869 -4.446298 -2.350758 -3.695041 1.275394 -0.540948 -7.574705 -1.094455 -2.206501 2.250592 0.914550 -1.452159 -4.581844 1.270842 3.929403 -1.857067 -2.519248 -1.116460 4.981529 1.874058 0.337439 1.036756 -0.259339 1.332897 5.352056 4.113687 -2.297039 -0.562627 0.231155 -2.805493 -0.608128 -3.872986 -1.351087 1.897230 -4.281551 0.474668 3.859744 -3.057650 -1.350683 1.615109 -1.551654 3.342548 14.653967 -1.298522 3.501122 1.310765 -6.037031 3.357807 -0.855243 -1.764523 0.246222 3.145073 2.131831 -5.911777 -3.789046 2.748500 4.842062 3.691999 -4.306058 -1.219979 -1.970480 -0.319179 -0.894125 0.149689 1.680456 -0.939853 -3.506669 -1.353151 3.391461 8.482647 -2.282352 -4.480476 2.348399 3.191235 -0.947440 -4.370706 -1.369489 -2.893593 0.412197 1.612946 -1.139274 3.078351 6.269300 -10.096335 4.390337 -0.503472 -1.449291 3.032517 0.287921 -2.492986 -5.346891 0.872047 5.400574 5.620903 0.377603 1.166517 -0.353478 -4.114921 -0.415326 0.751582 2.395324 -1.403476 1.967865 0.056093 -4.628549 -3.882512 -1.248732 -1.622154 -2.203489 -1.540693 1.798190 1.378487 -8.874119 6.668180 -0.411818 -0.750046 0.905123 -1.102458 3.738915 -4.959373 -6.559321 2.619414 -0.674436 -1.859509 -1.567856 0.187073 3.608820 0.778947 1.090444 -2.008541 -7.025256 3.146325 -0.272028 3.777799 1.733593 1.912510 5.155166 1.182904 -1.855633 -4.561051 -3.696598 2.090593 -0.810324 -3.596048 -1.522244 -1.210329 4.453511 5.106498 -0.635217 -2.353560 -1.754015 5.026415 -4.222436 -0.890689 3.814427 1.215211 -3.530279 0.468876 4.557619 -4.746014 -2.715594 -3.054933 0.592899 -1.322859 -4.885481 0.583821 -2.354010 1.129646 2.168979 -0.057586 -1.870010 1.558191 1.532372 0.399851 -0.140167 5.401249 5.324804 -3.604470 0.661429 -4.197293 2.159455 -6.980571 -5.702690 1.489445 -0.569843 -1.520075 0.556454 0.464554 3.073359 -1.048228 1.439583 -0.517641 -0.941850 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.803270 0.383334 1.013637 -1.705148 1.645565 1.317696 0.626665 -0.190107 -1.499518 -0.996577 -0.308339 -1.806710 -1.423258 2.629432 -0.756228 0.918525 3.784570 0.978738 -0.424765 -0.239790 1.839581 -1.195097 2.850114 2.811193 -2.140912 -0.175354 1.019519 1.447606 -0.098225 2.228129 -0.735754 -2.434800 0.817085 -0.983354 0.707106 -2.111239 0.357651 0.228504 0.115037 -3.923582 0.410266 0.362922 -0.099726 -0.633496 -0.450226 0.654899 2.908037 1.886414 -0.878184 0.062340 1.279013 0.846768 -0.349772 0.629047 0.554435 0.696461 0.843581 0.260578 -1.279040 -0.315216 -0.505138 -1.499967 0.250792 2.063650 2.891834 0.227155 0.215593 0.623917 -0.366077 0.497111 0.372734 0.280305 0.615709 0.365898 1.117503 -2.132673 -0.499333 -4.521880 -0.460038 -5.124144 -1.410662 -1.323310 1.096756 0.285302 0.882628 -0.761804 2.389109 -0.291556 0.662888 1.645459 3.365353 -2.003598 -1.001699 -2.213314 -1.347529 0.868932 -1.224208 -0.322432 0.972790 -0.438685 -1.843360 -2.065592 0.953193 0.700210 -0.727520 -1.197141 0.025343 2.177854 -2.181320 -1.361442 -1.870148 0.485426 -0.403890 -3.514266 -0.008022 -1.333070 0.939596 0.462902 -0.677716 -2.336267 0.629312 2.022551 -0.860482 -1.165695 -0.871829 2.659813 0.707306 -0.037587 0.478114 -0.192140 0.407532 2.477404 2.121149 -1.167563 -0.293342 0.376919 -1.735021 -0.389036 -2.131299 -0.815231 1.062476 -2.127318 -0.094469 1.711390 -1.494693 -0.358535 1.046639 -0.572134 1.628414 7.332844 -0.585100 1.565688 0.585809 -2.875388 2.043310 -0.167752 -0.714767 0.231703 1.604181 0.900684 -3.352620 -1.839081 1.053287 2.266430 1.775025 -2.197943 -0.924496 -1.165604 -0.131795 -0.107125 0.042412 0.743921 -0.521603 -1.686615 -0.613797 1.229665 4.355154 -1.078768 -2.086343 1.015938 1.179665 -0.885107 -2.738512 -0.663157 -1.574055 0.148393 0.135241 -0.582366 1.392544 2.945636 -5.054891 2.220599 -0.543424 -0.794172 1.847608 -0.093660 -1.005941 -3.264006 0.305201 2.522181 3.011157 0.086719 0.456670 -0.021204 -1.985482 -0.204616 0.184424 1.226512 -0.727657 0.960254 0.022573 -2.398454 -1.703774 -0.685916 -0.672900 -1.195901 -0.708523 0.829159 0.782280 -4.192881 3.099534 -0.252774 -0.342705 0.745943 -0.247064 1.496283 -2.345076 -3.093337 1.184413 -0.047165 -0.709473 -1.075539 0.069033 1.833495 0.088456 0.191672 -0.904405 -3.560672 1.372016 -0.499555 1.693110 0.846985 0.758930 2.436849 1.234882 -0.886133 -2.344473 -1.487327 0.437436 -0.617375 -1.459480 -0.843098 -0.607217 2.136877 2.569516 -0.096276 -0.792786 -0.756900 2.745041 -1.989124 -0.533830 1.858780 0.403604 -1.558588 0.240216 2.195403 -2.565625 -1.402986 -1.398848 0.027912 -0.348842 -2.201566 0.455150 -1.261142 0.527191 0.959097 -0.032457 -0.882709 0.804071 0.751039 0.111110 -0.143575 2.925585 2.695333 -1.580612 0.375308 -1.837592 0.929116 -3.321864 -2.391960 0.399051 0.086668 -0.860265 0.433777 0.550403 1.496658 -0.448704 0.671269 -0.167841 -0.667676 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::move_backward(suffix*, suffix*, suffix*) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_linear_insert >(suffix*, __gnu_cxx::__ops::_Val_comp_iter) = -0.730482 0.272945 1.314139 -1.867761 1.722140 1.188761 0.639771 -0.146198 -1.690191 -1.056234 -0.087686 -1.723922 -1.430505 2.627251 -0.895279 0.667883 3.711734 0.950211 -0.475902 -0.527571 1.831968 -1.141972 2.973494 2.877398 -2.367456 -0.141898 1.068735 1.394996 0.262389 2.073510 -0.810300 -2.255568 0.855753 -0.959609 0.664977 -2.106210 0.316138 0.049441 0.037342 -3.813163 0.399128 0.049142 -0.609186 -0.518713 -0.340953 1.244202 2.888301 1.884542 -1.007786 0.343436 1.556194 0.806975 -0.473114 0.561958 0.535490 0.527213 0.949338 0.662659 -1.204139 -0.226803 -0.500263 -1.581335 0.204839 2.164888 2.810448 0.165986 0.186678 0.491432 -0.191504 0.472997 0.551039 0.300534 0.826496 0.422247 1.281859 -2.286282 -0.546530 -4.830674 -0.499431 -5.545474 -1.457751 -1.292034 1.469814 -0.319733 0.652077 -0.657073 2.408361 -0.148921 0.569851 1.844993 3.294830 -1.945434 -1.057806 -2.053486 -1.435525 0.858438 -1.262351 -0.132238 0.949722 -0.339415 -1.881079 -1.971367 0.973615 0.579427 -0.756244 -0.974645 -0.003627 2.240696 -2.365971 -1.103882 -1.906369 0.629286 -0.127958 -3.556556 -0.120173 -1.292720 1.843775 0.441781 -0.762629 -2.001164 0.600629 2.014293 -0.967786 -0.938509 -0.685813 2.587369 0.820557 0.211656 0.384770 -0.191715 0.508028 2.327509 2.280594 -1.238180 -0.299359 0.335132 -1.625794 -0.272069 -2.036763 -0.674072 1.265817 -1.973774 0.221401 1.543726 -1.516326 -0.618019 1.528922 -0.477794 1.553531 7.235383 -0.555949 1.739977 0.610535 -2.750466 1.618257 -0.207546 -0.543643 0.411249 1.652945 0.810322 -3.289068 -1.824570 1.092940 2.327903 1.745716 -2.579387 -0.823876 -1.029662 -0.211753 -0.113928 0.069668 0.681167 -0.518413 -1.594593 -0.654876 1.299528 4.383757 -1.040557 -2.434797 0.796422 1.042337 -0.773043 -2.482600 -0.561264 -1.021636 0.361085 0.477212 -0.503959 1.546092 2.977779 -5.590195 2.176613 -0.606403 -0.750175 1.611964 0.159485 -1.083993 -2.895872 0.306121 2.333036 2.901751 0.426629 0.248593 0.239111 -2.022732 -0.212416 0.239323 1.215111 -0.765119 0.976203 0.342771 -2.354492 -1.717575 -0.858307 -0.566739 -0.806539 -0.713513 0.903050 0.175514 -5.007440 2.985321 -0.298594 -0.464856 0.523204 -0.367733 1.593134 -2.412275 -3.091360 1.144947 -0.104527 -1.008884 -1.217669 -0.016935 1.775663 0.062768 0.519864 -1.075333 -3.614681 1.526656 -0.539261 1.805468 0.891233 0.649864 2.870889 0.675030 -0.744018 -2.383219 -1.369808 0.963726 -0.638467 -1.512701 -0.518565 -0.626263 2.021326 2.509732 -0.206819 -0.720970 -0.691311 2.666259 -2.232500 -0.623149 1.771296 0.989976 -1.449761 0.665793 2.138332 -2.554171 -1.291115 -1.426328 -0.261219 -0.379049 -2.084500 0.652565 -1.163554 0.701850 0.861102 0.279261 -0.907959 0.857358 0.499080 0.160240 -0.066814 2.794482 3.588543 -1.810970 0.409595 -1.967030 1.218970 -3.306195 -2.630808 0.444618 -0.111701 -0.816593 0.451353 0.301956 1.614836 -0.271774 0.362128 -0.265310 -0.245709 +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.161397 0.239694 0.398147 -0.315985 0.506651 0.349453 0.190765 -0.078369 -0.377035 -0.254647 -0.106588 -0.519977 -0.498262 0.645894 -0.231001 0.179785 0.886268 0.298307 -0.084893 -0.086051 0.267870 -0.201289 0.799245 0.711266 -0.541699 0.058285 0.151141 0.272697 -0.134605 0.761575 -0.384457 -0.687524 0.291609 -0.070404 0.173105 -0.432819 -0.010721 -0.042471 -0.064233 -0.961442 0.065720 0.223196 0.011686 -0.112753 -0.006848 0.166243 0.797545 0.447370 -0.020243 0.122064 0.216416 0.217192 0.074377 0.195417 0.305772 0.215791 0.414561 -0.194857 -0.412175 -0.037113 -0.203490 -0.495488 -0.144193 0.526822 0.668253 0.085598 -0.006960 -0.036362 -0.235486 0.120067 0.068044 0.142965 0.209601 0.254913 0.202906 -0.221907 0.084782 -0.645131 -0.175542 -1.105113 -0.430923 -0.413862 0.299358 0.297956 0.251328 -0.139709 0.690443 -0.042639 0.183718 0.119884 0.911078 -0.617189 -0.267596 -0.348317 -0.197823 0.143852 -0.311750 -0.056132 0.075772 -0.122307 -0.500561 -0.484736 0.346271 0.111178 -0.214952 0.003631 -0.053301 0.557521 -0.699107 -0.291374 -0.634197 -0.051854 -0.066034 -0.844688 -0.035568 -0.115152 0.211273 0.215483 -0.239422 -0.561406 0.288174 0.463572 -0.216341 -0.273833 -0.363018 0.627647 0.125614 -0.066816 0.131435 -0.006198 0.144442 0.619424 0.465975 -0.258846 -0.047987 0.066876 -0.322185 -0.059261 -0.357005 -0.151507 -0.038000 -0.537699 0.051628 0.372689 -0.413027 0.010560 -0.165611 -0.129353 0.381132 1.276011 -0.259526 0.389409 0.094627 -0.747485 0.406198 -0.105752 -0.201510 -0.018480 0.413533 0.341652 -0.504707 -0.459966 0.325634 0.638988 0.421866 -0.445343 -0.023219 -0.297006 0.059820 -0.052824 0.153007 0.203845 -0.063158 -0.430259 -0.168101 0.193281 1.076339 -0.306872 -0.672922 0.262111 -0.005575 -0.026993 -0.426337 -0.152240 -0.180383 0.031103 0.033320 -0.131465 0.253924 0.754316 -1.151846 0.641565 -0.179181 -0.379806 0.612711 -0.099815 -0.186404 -0.357376 0.060183 0.626585 0.689088 0.160249 0.019213 -0.075128 -0.556936 -0.106889 -0.002046 0.395361 -0.253174 0.316781 0.156188 -0.675029 -0.452104 -0.399606 0.026713 -0.322626 -0.275783 0.241844 0.276025 -1.231855 0.765304 0.050371 -0.137968 0.151879 0.004707 0.255702 -0.569698 -0.769099 0.234848 -0.183746 -0.303496 -0.143489 -0.038708 0.356958 0.015367 0.056423 -0.284755 -0.626307 0.435342 0.050185 0.430937 0.256030 0.267823 0.555300 0.393266 -0.319211 -0.308488 -0.250070 0.218794 -0.348924 -0.241604 0.048751 -0.247773 0.534365 0.776665 0.060230 -0.129516 -0.276834 0.631810 -0.411970 -0.124111 0.543316 0.060431 -0.272250 0.110686 0.582479 -0.467547 -0.439562 -0.327113 -0.088093 -0.161080 -0.492840 0.119538 -0.462347 0.078498 0.343896 -0.069964 -0.384906 0.209999 0.048513 -0.079269 -0.042403 0.688053 0.540001 -0.406252 0.355235 -0.430623 0.279106 -0.803841 -0.497664 0.091650 -0.016842 -0.300592 0.034457 0.040364 0.325221 -0.104593 0.062568 -0.103654 -0.182188 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a(suffix*, suffix*, suffix*) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__miter_base(suffix*) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_wrap(suffix* const&, suffix*) = -0.094004 0.019219 0.230993 -0.225112 0.187042 -0.030752 0.085428 -0.093290 -0.252681 -0.122523 -0.046565 -0.124925 -0.094709 0.319760 -0.118501 0.192414 0.502530 0.239633 -0.038493 -0.218610 0.268158 -0.426262 0.432342 0.459415 -0.369990 0.034875 0.228867 0.286762 0.191823 0.338604 -0.233154 -0.057474 0.126169 -0.274716 0.177918 -0.444607 0.047246 0.115670 0.056593 -0.621531 0.040546 -0.138967 0.153557 -0.010648 -0.043617 0.287061 0.307364 0.264572 -0.109584 0.190091 0.261261 0.026773 0.061662 0.103396 0.112779 0.246852 0.360646 0.052262 -0.134540 0.045806 -0.037519 -0.415352 0.163016 0.303221 0.438937 -0.028649 0.034712 0.101136 0.004142 0.036669 0.142589 0.078950 -0.083405 0.017798 0.154701 -0.644639 0.168900 -0.779599 -0.105484 -0.950734 -0.224235 -0.250069 0.136642 -0.170907 0.214451 0.210247 0.384848 0.010318 0.109316 0.033402 0.362031 -0.385720 -0.129788 -0.150762 -0.141072 0.128338 -0.193763 -0.075030 0.194914 0.030762 -0.204689 -0.301452 0.407911 0.130580 -0.161329 -0.082359 -0.053898 0.307065 -0.446607 -0.331187 -0.336288 -0.085632 -0.163594 -0.420870 0.321795 -0.258513 0.419796 0.049303 -0.045832 -0.368465 0.058379 0.349028 -0.068463 -0.174062 -0.222270 0.316947 0.094680 -0.049694 0.044056 -0.072181 -0.024412 0.357065 0.381243 -0.209965 -0.104629 0.171709 -0.365863 -0.061602 -0.342645 -0.174113 0.262581 -0.349164 -0.045952 0.137273 -0.218569 -0.002949 0.525284 -0.026281 0.226708 0.785391 -0.013372 0.185301 0.124011 -0.341305 0.195407 -0.011175 -0.000115 0.199684 0.292826 0.058845 -0.512820 -0.296735 0.006983 0.318142 0.226080 -0.344711 -0.409065 -0.239731 0.004376 0.171450 -0.025376 0.059458 -0.148025 -0.212432 -0.066191 -0.015831 0.594363 -0.164054 -0.114908 0.060596 -0.085086 -0.346777 -0.633221 -0.106649 -0.265682 0.040668 -0.227608 -0.040820 0.129107 0.389632 -0.852524 0.348853 -0.277628 -0.134836 0.304871 -0.049532 -0.079772 -0.629323 0.058994 0.217252 0.411446 -0.041817 0.072536 0.153074 -0.337350 -0.038135 -0.075236 0.205007 -0.183565 0.176354 0.134165 -0.342014 -0.203292 0.014296 0.068804 -0.196446 0.049255 0.153905 0.064642 -0.706442 0.303600 -0.134490 -0.129007 0.287046 0.057879 0.140413 -0.368228 -0.332601 0.155942 0.097753 0.026009 -0.261081 0.000426 0.304311 -0.182946 -0.141232 -0.150793 -0.364421 0.067760 -0.219567 0.110135 0.159668 0.045596 0.345872 0.056895 -0.109158 -0.327838 0.201510 -0.248805 -0.238879 -0.077018 -0.127425 -0.094124 0.304681 0.510783 0.091867 0.101830 0.155542 0.455077 -0.362521 -0.187118 0.244811 0.236619 -0.112639 0.160108 0.258484 -0.418829 -0.233077 -0.140303 -0.137935 0.129883 -0.190660 0.258740 -0.250108 0.106671 0.118972 0.045783 -0.097718 0.255335 0.046769 0.056021 -0.063588 0.450504 0.573211 -0.193256 0.004564 -0.211116 0.067630 -0.436274 -0.177557 -0.066334 0.242864 -0.179586 0.138090 0.104633 0.295406 0.036230 0.005971 0.008597 -0.171667 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a1(suffix*, suffix*, suffix*) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_base(suffix*) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a2(suffix*, suffix*, suffix*) = -0.479063 0.046100 0.457175 -1.170073 0.923984 0.448012 0.368742 -0.520663 -0.914311 -0.401128 0.105331 -1.007672 -0.554794 1.279645 -0.535344 0.744776 1.886788 0.393321 -0.379853 -0.503158 1.151633 -0.440791 1.776239 1.624535 -1.403673 -0.063286 0.622281 0.779145 0.502479 0.562396 -0.448814 -0.683388 0.562443 -0.930387 0.278421 -0.970719 0.213697 0.073241 0.572171 -1.932180 0.233555 -0.392056 0.021264 -0.215614 -0.324000 0.661723 1.327808 1.140465 -0.518377 0.226133 1.148742 0.371103 -0.138461 0.356193 0.190178 0.309848 0.599949 0.231439 -0.434952 -0.382986 -0.158944 -0.661598 0.312365 1.311107 1.559228 0.112320 0.030183 0.654110 0.261940 0.218655 0.414298 0.321642 0.058127 0.315533 0.650718 -1.856525 0.058270 -2.753273 -0.367167 -2.979852 -0.862747 -0.595287 0.533837 -0.521540 0.692481 0.265306 1.431590 0.094479 0.194915 0.770852 1.592818 -1.278246 -0.536876 -0.886549 -0.726652 0.459870 -0.704251 0.169246 0.625672 0.095834 -1.036304 -0.931743 0.638605 0.420101 -0.543773 -0.718802 0.125544 0.979639 -1.094834 -0.820003 -0.812269 0.341300 -0.263417 -2.000793 0.176763 -0.849561 1.282831 -0.016013 -0.310179 -1.313539 0.106913 1.013338 -0.481138 -0.630482 -0.419280 1.047475 0.802721 0.205483 0.203689 -0.055779 0.316523 1.670749 0.990162 -0.824634 -0.253247 0.112121 -0.884028 0.004416 -1.085142 -0.437908 0.878637 -1.209635 0.281262 0.942159 -0.790277 -0.321282 1.480968 -0.143441 0.724422 3.642210 -0.150549 1.094534 0.684153 -1.373632 0.515240 -0.385258 -0.169161 0.439595 0.829692 0.324320 -1.758415 -1.180297 0.596477 1.306620 0.932717 -1.410599 -0.678269 -0.400834 -0.086070 -0.048735 -0.139746 0.346189 -0.302952 -0.832100 -0.311846 0.857857 2.194808 -0.586448 -0.698668 0.502150 0.566919 -0.539742 -1.496625 -0.536788 -0.899744 0.208237 0.211791 0.057084 0.822671 1.669961 -2.843251 1.086874 -0.307569 -0.239644 0.941181 0.228161 -0.830158 -1.625737 0.229404 1.075422 1.276035 -0.195339 0.267973 0.322220 -1.181894 -0.118367 0.104902 0.498484 -0.514798 0.537577 0.341465 -1.019415 -0.847243 0.023720 -0.193690 -0.433834 -0.049475 0.706139 0.043821 -2.531709 1.497018 -0.261117 -0.474486 0.487305 -0.525397 1.046404 -1.380459 -1.348068 0.740980 -0.006782 -0.106769 -0.639309 0.180680 0.991086 -0.142100 0.412082 -0.846218 -1.517024 0.679065 -0.410996 0.870027 0.556551 0.307742 1.173588 -0.480966 -0.339414 -1.317406 -0.314874 -0.051564 -0.085815 -1.035241 -0.372172 -0.309892 1.184379 1.467458 -0.176274 -0.349330 0.154032 1.247594 -1.546404 -0.435085 0.853218 0.972448 -1.015582 0.390771 1.015793 -1.331385 -0.556167 -0.698934 -0.276205 -0.175871 -1.152275 0.663509 -0.443960 0.518754 0.420983 0.088510 -0.169216 0.752351 0.294234 0.310048 0.074079 1.423309 1.929012 -0.702283 -0.270445 -1.226854 0.536679 -1.802172 -1.464792 0.493635 0.040607 -0.650683 0.213439 0.113362 1.225603 -0.070184 0.072204 -0.222476 -0.119823 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward::__copy_move_b(suffix*, suffix*, suffix*) = -1.252270 -0.878523 -0.075515 -3.327651 2.424847 1.548009 1.045960 -1.590382 -2.724776 -0.222751 0.902392 -3.171662 -0.484412 3.050062 -1.164433 2.979087 4.486729 0.597677 -1.359407 -0.675752 2.776604 0.302428 4.328894 3.737276 -2.884331 -0.244119 0.193480 1.293611 0.504656 0.389630 -0.793500 -1.882425 1.433588 -2.886008 -0.365360 -1.592631 0.492024 0.601326 2.894806 -4.176703 0.967127 -0.513500 0.533996 -0.834035 -1.055938 0.148475 2.550433 2.852574 -0.829479 0.585395 2.787506 0.797466 -0.440026 0.878825 0.404246 0.899308 0.489918 0.004305 -1.126003 -1.680107 -0.283197 0.030886 0.791861 2.882777 3.331051 0.389126 -0.267495 2.039613 1.327770 0.448226 1.566711 0.623392 -0.534967 0.267131 1.187637 -4.068632 -0.180852 -5.621430 -0.749125 -5.384585 -2.113197 -0.276034 1.586831 -0.554560 2.058712 0.152687 3.179040 -0.383582 -0.152164 1.927832 3.245835 -3.116720 -1.493227 -2.104217 -1.703671 0.880536 -1.400601 0.346216 1.622438 0.418022 -2.709998 -1.553824 1.017044 1.320472 -1.138838 -2.316341 1.140113 1.853184 -1.651339 -2.416563 -0.699055 2.430116 -0.669613 -4.696209 -0.170384 -1.944104 1.584647 -0.280476 -1.106266 -3.377860 0.087029 1.686833 -1.553599 -1.529689 -0.867562 1.982843 2.274721 1.072439 0.642636 0.113363 0.899614 5.006297 1.037483 -2.403937 -0.150701 0.018570 -1.130055 0.745340 -2.222043 -1.460268 1.135080 -3.188767 1.113326 2.491584 -1.895956 -0.297036 2.817155 0.764087 1.078741 8.792479 -0.237389 3.409812 2.362277 -3.014914 1.251058 -1.417866 0.007793 0.688186 1.476229 0.080575 -3.979343 -2.981004 1.760484 3.022906 2.446454 -3.099844 -1.086445 -0.369392 -0.112880 -0.143508 -0.604267 0.919726 -0.048859 -2.217910 -0.602275 2.571361 5.668446 -1.080359 -0.717010 1.614963 2.234953 -0.963315 -2.843476 -1.767855 -3.170637 0.523990 1.184678 0.700657 2.124164 4.092616 -5.455304 2.343656 -0.375294 -0.098651 2.326981 1.139232 -2.830484 -3.271047 -0.381055 2.067052 3.134486 -1.137603 1.070905 1.107792 -2.459078 -0.225236 0.447553 0.295895 -0.931532 0.960654 0.531431 -2.022676 -1.229179 0.671892 -1.087581 -0.896643 -0.132570 1.966708 0.707604 -4.689107 3.121274 -0.025894 -1.310966 1.257099 -1.721636 3.215968 -2.898201 -2.555181 2.081399 -0.021189 0.264159 -0.795608 0.793724 2.060524 -0.011508 1.884274 -2.110426 -3.218019 1.861879 -0.542651 2.588294 1.311137 -0.140460 1.393722 -1.884731 -0.696181 -2.655406 -2.007683 -0.363926 0.603615 -3.010348 -0.680895 -0.794140 3.034318 2.477136 -0.300441 -1.845208 0.122912 2.488198 -3.555624 -0.211200 2.045620 1.586818 -3.167997 0.338318 2.614673 -3.201974 -0.277484 -1.472360 -0.032660 -1.018806 -2.602458 1.724747 0.152505 1.714480 0.176112 0.166011 0.275483 1.465611 0.994340 0.693844 0.544848 3.517219 2.907755 -0.578400 -1.241762 -3.203339 1.164612 -3.916909 -3.835690 1.779835 -0.277936 -2.676750 0.428774 0.347948 3.455128 -0.328828 0.413140 -0.878160 0.220859 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__copy_move::__assign_one(suffix*, suffix*) = -0.109939 0.050344 0.370095 -0.390257 0.301228 -0.019192 0.112028 -0.019229 -0.385183 -0.268155 -0.043392 -0.214689 -0.233063 0.480971 -0.206880 0.076926 0.747331 0.296330 -0.050235 -0.316891 0.343257 -0.424673 0.607018 0.641483 -0.564385 0.026835 0.306791 0.376826 0.254777 0.441681 -0.198760 -0.263219 0.148714 -0.205215 0.262175 -0.550230 0.054666 0.060336 -0.069466 -0.867227 0.063063 -0.123094 0.009733 -0.022740 -0.015969 0.480609 0.502992 0.366249 -0.220214 0.233941 0.413618 0.169525 -0.019647 0.109214 0.117430 0.193542 0.385031 0.087132 -0.196322 0.075542 -0.069338 -0.502600 0.129241 0.462225 0.592650 -0.025391 0.041617 0.048538 0.015484 0.097168 0.185817 0.091563 0.053496 0.067630 0.262901 -0.697007 0.051164 -1.157500 -0.090663 -1.477565 -0.320529 -0.358589 0.359977 -0.216362 0.107939 0.160703 0.535273 0.023334 0.172076 0.270639 0.562391 -0.381195 -0.200406 -0.289648 -0.272141 0.220680 -0.261345 -0.061755 0.204129 0.072593 -0.322249 -0.374327 0.380842 0.085416 -0.205685 -0.101262 -0.064799 0.461355 -0.658835 -0.248458 -0.492464 0.044863 -0.034737 -0.640525 0.191410 -0.338926 0.674415 0.071922 -0.113452 -0.343217 0.094785 0.434884 -0.173232 -0.100614 -0.263681 0.463938 0.134564 -0.008534 0.043552 -0.059701 0.034269 0.396140 0.526443 -0.293924 -0.127176 0.202196 -0.416407 -0.118259 -0.468278 -0.157012 0.397883 -0.405889 0.086990 0.163470 -0.318726 -0.199054 0.547168 -0.128184 0.340477 1.220380 -0.072147 0.305887 0.137671 -0.468212 0.180519 0.003074 -0.031847 0.224005 0.419148 0.123264 -0.539041 -0.384038 0.077711 0.471056 0.327000 -0.511266 -0.366946 -0.261581 -0.057056 0.153054 0.008367 0.074542 -0.202391 -0.275919 -0.128118 0.088051 0.781800 -0.140517 -0.366875 0.025324 0.085839 -0.314630 -0.594538 -0.072305 -0.179828 0.111758 -0.044830 -0.085579 0.280993 0.576852 -1.371522 0.477367 -0.245069 -0.123275 0.283996 0.008563 -0.121094 -0.783395 0.091648 0.353921 0.608843 0.039936 0.067347 0.177811 -0.454027 -0.053450 -0.026872 0.317382 -0.246079 0.227557 0.195861 -0.457773 -0.315142 -0.097846 0.019729 -0.116394 -0.032094 0.188829 -0.009269 -1.193252 0.495066 -0.188320 -0.144522 0.201692 0.001350 0.255900 -0.535484 -0.524628 0.184712 0.071459 -0.177657 -0.344150 -0.046919 0.425610 -0.188534 0.011017 -0.215667 -0.583203 0.233491 -0.230333 0.257162 0.219948 0.078169 0.642136 -0.017834 -0.101256 -0.453254 0.079004 0.014504 -0.289805 -0.156687 -0.014095 -0.137873 0.360600 0.655158 0.017748 0.017356 0.112881 0.615530 -0.486332 -0.234587 0.317730 0.345711 -0.134604 0.332084 0.378635 -0.591785 -0.317503 -0.291272 -0.150527 0.109648 -0.292500 0.299286 -0.334666 0.159547 0.187091 0.107185 -0.212224 0.306382 0.034371 0.043831 -0.042044 0.579782 0.943578 -0.359956 0.110540 -0.351690 0.196612 -0.635741 -0.378431 -0.081146 0.119696 -0.160648 0.171387 -0.029583 0.381740 0.030470 0.036237 -0.047574 -0.057216 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(suffix&, suffix*) = -0.425197 0.706566 0.888738 -1.226568 2.153055 1.782669 0.818997 -0.183919 -1.587945 -0.965459 0.325061 -2.523099 -2.017955 2.469366 -0.695318 0.662415 3.097715 0.347582 -0.530852 -0.073522 1.053885 0.308926 2.982700 2.405751 -1.979639 0.290837 0.284626 0.342415 -0.664441 1.926937 -0.792789 -3.129781 1.224928 -0.441075 -0.025010 -0.538263 -0.284874 -0.780784 0.357252 -3.024665 0.201609 1.208348 -0.937681 -0.549059 -0.122716 0.333468 3.030149 1.620203 -0.263557 0.665952 0.992834 0.494224 -0.106185 0.519684 1.084711 0.071323 0.699656 -0.099011 -1.578444 -0.430459 -0.755261 -0.959746 -1.099721 1.888179 2.161925 0.226100 -0.348927 0.181239 -0.702790 0.521722 0.279415 0.622712 1.281255 0.974953 1.180884 -0.119752 -0.734943 -2.422102 -0.648841 -3.998098 -1.794000 -0.830117 1.812615 0.665457 0.707174 -0.988491 2.399430 -0.253696 0.092776 1.291992 3.539510 -1.859679 -1.140094 -1.282443 -0.813791 0.468949 -1.119957 0.282764 0.577390 -0.810288 -2.185671 -1.455619 0.571751 0.302561 -0.731882 -0.531956 0.076024 1.952148 -2.091588 -0.617625 -1.817690 0.614343 0.330397 -3.348106 -1.698662 0.204511 0.687204 1.004796 -1.260365 -1.680711 1.066753 1.112603 -1.098862 -1.032055 0.124290 2.006561 0.863950 0.802636 0.665528 0.454318 1.295940 2.613102 1.599403 -0.821095 0.225145 -0.433009 -0.154232 0.598693 -0.632174 -0.453566 -0.513866 -1.585052 1.024841 1.477650 -1.461538 -0.507647 -0.897322 -0.226285 0.782534 5.165104 -0.902654 2.100749 0.586097 -2.617694 0.998619 -0.885740 -0.835303 -0.351985 1.322833 1.268292 -1.286745 -1.498750 1.935802 2.538069 1.486975 -2.385667 0.725687 -0.251029 0.223945 -0.787353 0.744829 0.787092 0.687863 -1.539585 -0.613057 1.711486 3.962926 -1.375189 -3.467000 1.078866 0.850178 0.952878 -0.731730 -0.485206 -0.406171 0.330704 1.470191 -0.288195 1.233709 2.802290 -4.227107 2.051608 -0.095049 -1.188472 2.018945 0.635861 -1.382757 -0.678898 -0.018123 2.187145 2.232239 1.058119 -0.157593 -0.381222 -1.901169 -0.365126 0.421316 0.775081 -0.659501 1.237143 0.139754 -1.962256 -1.623416 -1.573866 -0.285524 -0.589522 -1.236204 1.074801 0.735483 -4.817776 2.812856 0.593115 -0.725507 -0.406339 -0.522638 1.627694 -1.858758 -2.989952 0.975271 -1.392307 -1.946852 -0.150680 -0.312147 0.719390 1.100574 1.208607 -1.048979 -2.365792 2.344863 0.587313 2.315333 1.019366 0.754735 2.388831 0.398464 -1.291170 -1.087227 -1.963825 2.316972 -0.725518 -1.517218 -0.085665 -1.010128 1.824484 1.963765 -0.076068 -1.283425 -2.059518 1.748219 -2.047799 -0.087370 1.937886 0.851206 -1.417276 0.584130 2.191100 -1.363985 -0.717390 -1.374713 -0.369272 -1.520465 -1.854513 0.139691 -0.951127 0.397084 0.999131 -0.276613 -1.036889 0.390399 -0.018929 -0.190488 -0.055365 1.966399 2.437538 -2.088361 0.932976 -2.056834 1.545308 -2.819068 -2.885892 1.161995 -0.788511 -1.283950 -0.426703 -0.156056 1.056692 -0.240652 -0.453457 -0.940856 0.369638 +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.165260 0.172609 0.480746 -0.484062 0.447822 0.313515 0.134964 -0.237612 -0.392331 -0.110170 -0.085159 -0.343299 -0.225132 0.590460 -0.258322 0.251790 0.858581 0.266907 -0.150723 -0.209319 0.451958 -0.361041 0.743548 0.722732 -0.616053 0.030276 0.391064 0.384724 0.163231 0.676144 -0.531000 -0.335889 0.156621 -0.315402 0.221037 -0.562029 0.031921 -0.007971 0.137160 -0.943468 0.084497 -0.139213 0.000000 -0.092058 -0.059386 0.236794 0.697015 0.438310 -0.137585 0.070171 0.397552 0.192967 -0.008684 0.141448 0.287064 0.377961 0.688520 0.192225 -0.209090 -0.048235 -0.127973 -0.362255 0.142611 0.584705 0.684370 0.078163 0.031374 0.094888 -0.003155 0.030019 0.107377 0.136045 -0.031060 0.261319 0.201672 -0.796593 0.275509 -1.074509 -0.127360 -1.101609 -0.354148 -0.375697 0.051978 -0.197124 0.363493 0.114118 0.654595 -0.043972 0.176718 0.061937 0.764062 -0.653191 -0.200065 -0.344286 -0.363927 0.113227 -0.271070 -0.049480 0.151611 -0.099518 -0.411639 -0.550457 0.465967 0.252530 -0.242562 -0.043520 -0.024584 0.518540 -0.564055 -0.431203 -0.462307 -0.051883 -0.248215 -0.816738 0.107978 -0.399217 0.523123 0.028814 -0.170817 -0.748738 0.159455 0.655947 -0.222759 -0.329530 -0.225652 0.588729 0.283876 -0.046279 0.023602 -0.196413 0.096422 0.612708 0.561954 -0.340799 -0.081432 0.106282 -0.518426 -0.140091 -0.493050 -0.159123 0.203229 -0.494352 -0.059025 0.447341 -0.361900 0.101221 0.594377 -0.098148 0.381370 1.728146 -0.195142 0.372596 0.100062 -0.714254 0.365799 0.008559 -0.142137 0.128487 0.384615 0.258888 -1.008340 -0.492271 0.229349 0.579301 0.391650 -0.600218 -0.345494 -0.355124 -0.102620 0.110372 0.009436 0.093483 -0.246598 -0.383611 -0.195164 0.139806 1.127034 -0.315778 -0.631796 0.199142 -0.072951 -0.333510 -0.724168 -0.181455 -0.354843 0.112542 -0.122526 -0.128442 0.375142 0.713773 -1.435766 0.586789 -0.317021 -0.416063 0.668696 -0.086703 -0.173094 -0.555977 0.111039 0.538850 0.647979 0.035371 -0.015636 0.084840 -0.543664 -0.076265 -0.055906 0.361404 -0.309061 0.279890 0.287846 -0.701010 -0.414784 -0.175035 0.040723 -0.349928 -0.145958 0.237239 -0.105035 -1.267705 0.717965 0.013823 -0.080285 0.344102 -0.080838 0.213447 -0.594583 -0.670520 0.272608 0.104095 0.086817 -0.239364 -0.018914 0.475981 -0.068705 0.106941 -0.454880 -0.767351 0.149694 -0.205129 0.361470 0.246703 0.219186 0.509812 0.140742 -0.121134 -0.565221 0.023968 -0.015833 -0.110237 -0.311000 -0.230287 -0.212106 0.554386 0.736456 -0.006256 0.053225 -0.103853 0.644776 -0.548710 -0.133507 0.382347 0.285474 -0.401566 -0.004434 0.444243 -0.510232 -0.408821 -0.237362 -0.268084 -0.069737 -0.440124 0.266066 -0.342322 0.159695 0.260284 0.010235 -0.233139 0.287408 0.061866 0.064617 0.034427 0.634399 0.808011 -0.331565 0.085889 -0.437206 0.266057 -0.785343 -0.496255 0.087510 0.021690 -0.317486 0.089719 0.105258 0.479110 -0.048319 0.127987 0.076291 -0.227730 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(int (*)(suffix, suffix)) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::~_Vector_base() = -0.582019 0.612970 1.082853 -2.256830 2.580469 1.937201 0.466930 -0.652778 -1.388706 -0.368744 -0.225613 -2.455122 -1.392869 1.775628 -0.987439 1.159305 2.713655 -0.131940 -0.769956 -0.100032 1.298257 1.083696 2.838648 1.691631 -2.074715 0.046089 0.101143 1.250966 -0.452158 1.884409 -1.635254 -2.234647 0.373133 -0.279639 0.082014 -0.493217 0.234793 -0.544329 0.630636 -2.417467 0.424142 0.569841 -0.672077 -0.311226 -0.301559 0.038505 2.716254 1.703661 -0.485776 -0.392502 1.666070 1.117388 -0.158610 0.649214 0.238520 0.395515 1.562302 -0.511166 -1.062817 -1.234690 -0.462754 -0.133024 -0.218974 1.825449 1.962768 0.297977 -0.376275 0.758532 0.274785 0.126448 0.426859 0.633626 0.388535 1.039122 0.792118 -0.386875 0.356284 -1.676022 -0.229482 -1.987527 -1.378974 -1.103436 0.367736 0.989544 0.936661 -0.778109 2.606832 -0.534294 0.412757 0.742091 2.554915 -2.031120 -0.744157 -1.936917 -1.209245 0.175571 -0.836925 -0.358143 -0.157506 0.336962 -1.572954 -0.974045 0.144226 0.210228 -0.703250 -0.320651 0.081337 1.185294 -1.498526 -0.770682 -1.442884 1.408315 -0.000316 -3.152789 -1.576108 -0.406943 0.485368 -0.376437 -0.294161 -2.076141 0.499901 1.444219 -1.364701 -0.481978 -1.099850 1.881787 1.609098 0.011871 0.571715 -0.066947 1.001795 2.547869 0.920176 -1.206752 -0.764785 -0.057078 -0.496393 -0.193568 -1.027260 0.007167 -0.442693 -1.880224 0.791637 2.117841 -1.051332 0.327052 -0.873067 -0.458595 1.154878 5.542487 -0.992550 1.584999 0.403640 -2.356161 1.165502 -0.479648 -0.838101 -0.245218 0.346409 1.094483 -1.990290 -1.752145 1.857863 1.841826 1.422109 -1.815134 1.163949 -0.209423 0.075905 -0.490064 -0.145290 1.131605 -0.131545 -1.259921 -0.650158 1.213455 4.160189 -0.469962 -2.629788 1.717578 0.898165 -0.029696 -0.408535 -1.046926 -0.838909 -0.187707 1.505270 0.052477 1.383977 2.809575 -3.603838 1.590838 0.562028 -1.213460 2.231356 -0.329431 -0.788385 0.040018 -0.328683 2.142900 1.978959 -0.114328 0.093921 -0.556635 -1.437624 0.094168 0.542426 0.849517 -0.572749 0.578542 0.743983 -2.050839 -1.125784 -1.438368 -0.670263 -0.018275 -1.262714 0.848887 -0.285249 -4.150224 2.794587 0.302318 -0.269741 0.404521 -1.128441 1.605692 -1.620628 -2.009009 1.283527 -0.502090 -0.459808 -0.120996 0.501057 1.095501 0.601822 1.751133 -1.949466 -2.694838 1.385001 0.428719 1.626374 0.807528 0.850803 0.837754 0.287832 -0.478655 -1.366664 -1.757536 1.170391 0.418813 -1.489321 0.413581 -0.630252 1.834131 1.729846 -0.619907 -0.565706 -1.381538 1.322161 -1.513673 -0.021802 1.469843 0.071764 -2.277760 0.010360 1.878620 -1.012219 -1.107114 -1.333113 -0.003105 -1.413419 -1.960283 0.251626 -0.710900 0.370094 1.444164 -0.332802 -1.148049 0.565030 0.169138 -0.379151 -0.134920 2.543142 1.671218 -0.518549 0.800129 -1.950771 1.295266 -2.778561 -2.430289 1.244914 -1.552990 -1.275788 -0.007452 0.187490 1.774051 -0.811708 0.690016 -0.332553 -0.332482 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*) = -0.176293 0.026629 0.390352 -0.416211 0.314245 -0.008696 0.135938 -0.087588 -0.414762 -0.254077 -0.060469 -0.219945 -0.261283 0.539907 -0.236817 0.152405 0.823959 0.375031 -0.075180 -0.338845 0.432011 -0.488645 0.708703 0.744680 -0.630179 0.008633 0.331354 0.485841 0.321554 0.478770 -0.223270 -0.190809 0.209986 -0.269318 0.281477 -0.676664 0.099342 0.145256 -0.041362 -0.978668 0.073976 -0.178469 0.088288 -0.015512 -0.033144 0.524209 0.509541 0.446696 -0.236014 0.239154 0.458525 0.177976 0.022114 0.160122 0.099124 0.222295 0.428149 0.054028 -0.195442 0.033136 -0.072694 -0.616589 0.179564 0.525653 0.723856 -0.008338 0.069060 0.087917 0.021188 0.121496 0.219561 0.112838 0.012520 0.055417 0.280442 -0.813839 0.123815 -1.270090 -0.128191 -1.563150 -0.346151 -0.409441 0.342736 -0.210573 0.182764 0.216096 0.618247 0.071050 0.170767 0.255528 0.615626 -0.489032 -0.206919 -0.308793 -0.280577 0.268718 -0.324339 -0.043245 0.232941 0.120955 -0.352915 -0.452498 0.438545 0.106477 -0.250514 -0.130336 -0.087218 0.525208 -0.713085 -0.333603 -0.531532 0.001587 -0.104023 -0.734295 0.279403 -0.447237 0.735960 0.046015 -0.078535 -0.407260 0.081135 0.478273 -0.135369 -0.161326 -0.350781 0.506722 0.166150 -0.073967 0.039771 -0.077158 -0.028448 0.485407 0.542908 -0.340146 -0.171703 0.233115 -0.518455 -0.109990 -0.593141 -0.169479 0.483739 -0.500092 0.038403 0.215287 -0.354233 -0.194611 0.653854 -0.120981 0.392061 1.338307 -0.031238 0.322982 0.225635 -0.526307 0.234278 0.002179 -0.003113 0.328046 0.464523 0.108842 -0.670600 -0.474493 0.048282 0.526434 0.379443 -0.547596 -0.468301 -0.320109 -0.022276 0.136983 -0.008329 0.105723 -0.261443 -0.316072 -0.126990 0.099060 0.825188 -0.186503 -0.325747 0.070262 0.060461 -0.435803 -0.761467 -0.138476 -0.238706 0.077958 -0.120476 -0.067821 0.271878 0.660174 -1.416199 0.536079 -0.251343 -0.107629 0.357728 -0.034994 -0.161000 -0.876897 0.135313 0.389336 0.652298 -0.022532 0.085638 0.225021 -0.551151 -0.062183 -0.029155 0.349406 -0.275998 0.266004 0.225746 -0.468376 -0.366384 -0.068705 0.042474 -0.201167 0.005453 0.253352 0.025201 -1.232192 0.536281 -0.252471 -0.195416 0.300154 -0.010637 0.289939 -0.617883 -0.583163 0.240636 0.107834 -0.133029 -0.445150 0.023500 0.515758 -0.235111 -0.044024 -0.262802 -0.611497 0.225339 -0.297666 0.223449 0.241997 0.111222 0.643076 0.011509 -0.145403 -0.551084 0.155327 -0.111093 -0.305016 -0.193843 -0.071016 -0.131545 0.435310 0.801696 0.045399 0.030924 0.194086 0.734075 -0.557485 -0.318636 0.379643 0.395089 -0.155974 0.362212 0.422298 -0.683109 -0.392819 -0.292530 -0.169687 0.176660 -0.365701 0.397994 -0.377729 0.200076 0.210597 0.113270 -0.208781 0.399864 0.092720 0.072533 -0.046926 0.700692 0.995080 -0.346377 0.078687 -0.380483 0.175520 -0.741639 -0.366266 -0.074527 0.158401 -0.182566 0.224446 0.013571 0.476264 0.039498 0.053865 -0.041793 -0.145339 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy_aux::__destroy(int*, int*) = -0.051742 -0.051394 0.200021 -0.141315 0.082734 -0.149221 0.066493 -0.020527 -0.230454 -0.074713 -0.040334 -0.089257 -0.025904 0.218819 -0.053423 0.158347 0.360080 0.251421 -0.028870 -0.178132 0.144572 -0.434863 0.274426 0.346587 -0.234198 0.055741 0.067473 0.256653 0.148097 0.305352 -0.191572 0.054845 0.056209 -0.180472 0.177787 -0.384272 0.025023 0.176134 -0.002452 -0.506882 0.041300 -0.009156 0.310313 0.000109 0.004826 0.252892 0.152799 0.176452 -0.037359 0.191934 0.149988 -0.069843 0.144149 0.080088 0.115511 0.231875 0.359491 -0.017313 -0.139306 0.092185 -0.016090 -0.401737 0.165833 0.173067 0.319767 -0.044135 0.013539 0.005690 0.034157 0.029334 0.163483 0.046515 -0.137462 -0.070356 0.081928 -0.449338 0.242981 -0.489019 -0.041493 -0.711914 -0.175023 -0.167142 0.198862 -0.033240 0.136634 0.142202 0.268770 -0.026604 0.076134 -0.086823 0.189909 -0.260327 -0.101198 -0.058993 -0.065919 0.114841 -0.126878 -0.144015 0.203026 0.077315 -0.121230 -0.139641 0.401670 0.084931 -0.121330 0.065166 -0.047397 0.226198 -0.351651 -0.284011 -0.248234 -0.074419 -0.112518 -0.229209 0.405479 -0.211296 0.185410 0.059263 -0.034618 -0.203725 0.049756 0.188756 -0.040888 -0.056712 -0.381885 0.270690 -0.026396 -0.083227 0.036714 -0.038877 -0.083050 0.170560 0.222393 -0.179438 -0.070976 0.208752 -0.299792 -0.035306 -0.266392 -0.192657 0.200836 -0.271141 -0.125164 -0.029914 -0.166839 0.076245 0.304797 0.072539 0.142531 0.390873 0.019438 0.119517 0.101644 -0.176995 0.245824 0.068797 0.055989 0.177662 0.229982 -0.017610 -0.329969 -0.215888 -0.076109 0.215610 0.165061 -0.184647 -0.365334 -0.199569 0.026399 0.221676 0.003383 0.028372 -0.099128 -0.158774 -0.027498 -0.137819 0.407607 -0.070097 -0.016560 0.003793 -0.169252 -0.338795 -0.549271 -0.063478 -0.215370 0.009032 -0.366309 -0.024099 0.050022 0.254730 -0.583699 0.296593 -0.247100 -0.094422 0.306985 -0.129800 -0.022248 -0.610856 -0.021070 0.078305 0.356767 -0.063601 0.008200 0.167989 -0.243182 -0.030470 -0.108818 0.138040 -0.144573 0.134306 0.066713 -0.206800 -0.076963 -0.031235 0.077041 -0.147342 0.045018 0.110213 0.153338 -0.389592 0.127365 -0.115960 -0.110126 0.258887 0.137181 -0.012881 -0.243035 -0.168522 0.055035 0.110018 -0.001284 -0.269707 -0.009676 0.207906 -0.238112 -0.250198 -0.059582 -0.188294 0.049142 -0.243220 0.039798 0.126129 -0.054736 0.171920 0.301731 -0.088695 -0.158008 0.263402 -0.362928 -0.292481 0.045069 -0.047641 -0.083025 0.193643 0.384039 0.146299 0.160088 0.168661 0.383965 -0.155695 -0.200560 0.191619 -0.028297 0.012077 0.163508 0.194541 -0.352385 -0.155301 -0.107653 -0.136668 0.183760 -0.048921 0.255465 -0.191521 0.072008 0.042539 0.018959 -0.081505 0.197587 0.032194 -0.027715 -0.073931 0.419747 0.328974 -0.068160 0.069586 -0.102169 0.005416 -0.261333 0.029454 -0.154726 0.295533 -0.192940 0.149159 0.149712 0.205252 0.061965 -0.025593 -0.007892 -0.140095 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -0.742111 0.019738 0.633042 -1.186518 1.352118 0.882871 0.640190 -0.484628 -1.304841 -0.592065 0.014809 -1.239934 -1.008427 2.160358 -0.578116 1.282645 2.860623 0.848509 -0.413202 -0.437184 1.777195 -1.185567 2.514086 2.250645 -1.825964 -0.107903 0.969133 0.958872 0.274512 1.378381 -0.842324 -1.302795 1.036002 -1.661465 0.382083 -1.672752 0.279766 0.272789 0.726308 -2.961510 0.257267 -0.119457 -0.067857 -0.409254 -0.517898 0.613570 1.891632 1.649203 -0.654732 0.568506 1.183503 0.096723 -0.120589 0.594123 0.559167 0.843020 0.550522 0.576645 -1.046856 -0.314441 -0.446695 -1.498369 0.335465 1.674941 2.297508 0.034033 0.124764 0.931802 -0.239140 0.363990 0.520983 0.371611 0.278678 0.158604 1.167662 -2.494150 -0.299344 -3.729492 -0.751981 -4.358050 -1.263667 -0.986860 0.779051 -0.651400 1.253916 0.132598 2.066193 -0.102288 0.251326 1.034650 2.595981 -2.152249 -0.906019 -1.466847 -0.819452 0.594309 -1.207457 -0.078280 1.263714 -0.530254 -1.595074 -1.791592 1.155688 0.813571 -0.678199 -1.247963 -0.041377 1.878679 -1.793102 -1.673183 -1.642550 0.035624 -0.716145 -2.848556 0.286809 -0.784243 1.430198 0.532350 -0.583966 -2.142072 0.527449 1.716466 -0.531203 -1.480206 0.193453 1.800799 0.819977 0.209626 0.473149 -0.046098 0.279111 2.511917 2.108012 -0.944992 -0.268315 0.300497 -1.414719 0.118007 -1.497620 -0.877819 0.924539 -1.921507 0.032479 1.407174 -1.259911 -0.170580 2.045091 -0.089602 1.143507 5.135057 -0.254151 1.436481 0.779369 -2.225800 1.264061 -0.479524 -0.285320 0.519089 1.446989 0.541923 -2.778080 -1.629939 0.871676 1.963580 1.445304 -2.181786 -1.337541 -1.011825 0.221272 -0.022247 -0.102447 0.731440 -0.179838 -1.391699 -0.366895 0.987600 3.397502 -1.520755 -1.607097 0.905275 0.508548 -0.824340 -2.785997 -0.775320 -1.574914 0.113067 0.004062 -0.240649 0.916860 2.449357 -3.822492 1.803584 -0.880789 -0.716499 1.649337 0.287947 -1.058506 -2.435837 0.219830 1.680294 2.089285 0.181560 0.285644 0.313170 -1.815644 -0.148162 0.043105 0.868361 -0.563588 0.974480 0.050021 -1.631826 -1.408821 -0.082796 -0.206983 -1.231317 -0.001866 0.939376 0.520797 -3.551737 2.171789 -0.255084 -0.668273 0.980540 -0.080355 1.455923 -1.969000 -2.477673 1.208267 -0.074563 -0.352462 -0.898268 0.149454 1.423977 0.195486 -0.114778 -0.811684 -2.517173 1.068764 -0.417353 1.392641 0.752881 0.487085 2.103539 0.062239 -1.011918 -1.848580 -0.508995 -0.111032 -0.606147 -1.280879 -1.387494 -0.433234 1.987895 2.229103 0.170836 -0.385858 -0.417534 2.125455 -2.381276 -0.525451 1.673876 1.391648 -1.203948 0.362138 1.829647 -2.005715 -1.003279 -0.830091 -0.229686 -0.270240 -1.634290 0.682742 -1.049060 0.589607 0.578398 0.079004 -0.311181 0.827446 0.570874 0.404751 -0.266723 2.151989 2.677646 -1.592719 -0.260340 -1.595236 0.787871 -2.633930 -1.970427 0.567362 0.528717 -0.988015 0.378964 0.685726 1.432783 -0.102878 -0.142013 -0.282362 -0.714009 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = -3.419943 1.744356 5.129209 -8.037685 7.077857 5.237486 2.404640 -3.593707 -5.718106 -2.738163 0.604043 -7.912744 -5.562337 8.966521 -4.407876 2.995802 12.571458 1.925422 -3.147900 -2.239134 7.456320 -0.913238 12.043602 10.631174 -9.538703 -0.771354 4.336956 5.332737 2.593174 5.462107 -4.345262 -6.131730 3.444405 -3.822981 1.841505 -5.244659 1.165314 -1.466865 2.302718 -11.915616 1.421029 -1.376273 -2.368340 -1.730455 -1.621500 4.438746 10.563437 7.523598 -3.329448 -0.606895 7.287214 3.171558 -1.458863 2.247749 2.053078 0.697374 5.768752 2.951992 -3.142211 -3.284993 -2.026373 -3.690466 0.461985 9.431410 10.450821 1.806033 0.293387 2.713216 0.947726 1.549424 1.707511 2.171852 2.468886 4.169401 4.436957 -8.463379 0.868861 -16.265339 -2.354816 -16.975512 -5.429871 -4.219256 2.878482 -2.712242 3.668363 -0.476492 9.739103 0.811849 1.261792 5.097355 12.433376 -8.261058 -3.538787 -6.360273 -5.836280 2.489947 -4.831889 1.911421 2.730293 -0.224327 -7.426232 -6.441242 2.432527 2.386941 -3.342362 -2.647305 0.532366 6.971327 -6.755908 -3.339641 -5.764190 1.613093 -0.446227 -14.389532 -2.466807 -5.255052 8.019974 -0.150523 -2.845619 -8.410162 1.612934 7.065700 -3.689401 -3.771498 -2.339439 8.220565 5.520578 1.521747 0.834173 -0.992287 3.061440 9.656589 6.707978 -5.074955 -1.258127 -0.939503 -6.004419 -0.171364 -6.783408 -1.382062 4.874223 -6.849907 1.790893 7.292974 -5.332909 -1.942575 6.696669 -1.738680 5.148117 26.338468 -2.423452 7.431350 3.334467 -10.190907 4.107819 -1.774768 -2.164936 1.547148 4.876363 3.890050 -12.057414 -7.779375 5.942793 9.162309 6.226176 -10.144127 -1.036706 -2.239075 -0.715359 -2.160670 -0.111921 2.622054 -2.133870 -5.724159 -2.851782 6.837500 14.781809 -4.455585 -10.231919 4.020270 3.014019 -1.233531 -7.424450 -3.202226 -3.089623 1.710264 3.083130 -0.395110 6.355077 11.770721 -19.680082 7.489413 -0.402671 -3.249685 8.223820 0.702692 -5.521719 -6.845627 2.145986 8.821031 7.914631 0.940124 -0.631406 0.638108 -8.005596 -0.998592 1.231893 4.166835 -3.382432 3.761884 2.924951 -7.616354 -7.106418 -3.506101 -1.222261 -2.600528 -2.615394 4.624214 -2.081716 -18.677499 11.943801 -0.182130 -2.223154 1.057638 -4.441146 5.688732 -9.305753 -10.668620 4.511255 -1.536942 -2.187732 -4.167563 1.127373 5.941742 1.077232 4.563593 -7.141218 -11.524263 5.543537 -1.950279 7.065851 3.360148 3.863995 8.463992 -0.314408 -1.879050 -9.153320 -3.172767 3.711974 0.412350 -8.075015 -2.234293 -2.261473 7.869911 9.398006 -2.697920 -2.226762 -2.229768 7.845060 -9.375825 -2.814442 5.818773 5.749015 -7.543511 1.753653 6.921405 -7.327511 -4.655003 -5.066186 -3.373395 -3.408634 -8.873643 2.961540 -3.138050 3.033889 3.967615 0.255018 -2.546087 3.811113 1.559268 1.388349 1.301945 8.885302 13.548512 -5.706262 0.074945 -8.819609 5.218079 -12.840818 -11.218212 4.901810 -2.982735 -3.708557 0.317854 0.407936 7.596791 -1.058798 0.480493 -1.264450 0.008124 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() = -0.204025 0.506859 0.595250 -0.508978 0.820128 0.832812 0.235480 -0.218893 -0.447005 -0.260056 -0.162057 -0.813828 -0.712568 0.892766 -0.359093 0.204598 1.179806 0.232324 -0.168892 0.014166 0.351268 0.054653 1.096602 0.905273 -0.736474 0.079237 0.268334 0.246843 -0.330140 1.119490 -0.660862 -1.169529 0.337689 0.007473 0.144448 -0.392027 -0.076923 -0.272219 0.006207 -1.196263 0.085324 0.335178 -0.245667 -0.207632 -0.007172 -0.049526 1.273455 0.583717 0.015199 -0.033416 0.266676 0.455631 -0.005139 0.223524 0.499678 0.277716 0.650148 -0.195506 -0.504442 -0.158574 -0.314880 -0.330861 -0.317538 0.784672 0.835344 0.215515 -0.048911 -0.077420 -0.347174 0.106714 -0.061729 0.225510 0.350493 0.599467 0.210524 -0.107017 0.116811 -0.673964 -0.195826 -1.015915 -0.568508 -0.523588 0.166223 0.473809 0.389274 -0.331474 0.951295 -0.113506 0.253716 0.149641 1.367837 -0.862778 -0.322051 -0.517866 -0.381434 0.079500 -0.354937 0.013075 -0.118098 -0.315632 -0.723098 -0.732277 0.300743 0.193126 -0.281195 0.048538 -0.015777 0.711406 -0.790237 -0.305295 -0.755110 -0.016463 -0.111891 -1.232375 -0.448390 -0.099648 0.159043 0.233678 -0.392394 -0.944497 0.433431 0.716869 -0.380139 -0.445545 -0.306881 0.844280 0.325320 -0.047529 0.138317 -0.093826 0.357546 0.910831 0.564920 -0.322093 0.011444 -0.084366 -0.313376 -0.123893 -0.367809 -0.071096 -0.320171 -0.641937 0.115416 0.740770 -0.536871 0.114867 -0.437074 -0.270421 0.498295 2.101443 -0.511491 0.568194 0.021918 -1.159507 0.514394 -0.168952 -0.436686 -0.217292 0.447449 0.641750 -0.817345 -0.597814 0.643687 0.902495 0.556033 -0.607252 0.254242 -0.337461 -0.033078 -0.217532 0.258217 0.247576 -0.082083 -0.596529 -0.302301 0.412968 1.600056 -0.448143 -1.230989 0.447274 0.056817 0.183864 -0.261977 -0.203393 -0.206295 0.082731 0.305208 -0.229413 0.474015 1.048752 -1.567460 0.841665 -0.135843 -0.707196 0.924714 -0.108499 -0.277956 0.012995 0.115534 1.006854 0.855428 0.284786 -0.026950 -0.283011 -0.723758 -0.155177 0.060116 0.534536 -0.369932 0.425258 0.296535 -1.072780 -0.675145 -0.653109 -0.015585 -0.466887 -0.572847 0.300555 0.171816 -1.758012 1.224623 0.295812 -0.062694 0.102645 -0.175148 0.362721 -0.738711 -1.121054 0.344820 -0.309476 -0.305904 0.060018 -0.093446 0.436838 0.246875 0.404808 -0.579383 -0.959045 0.567275 0.245962 0.715730 0.340808 0.507242 0.664713 0.432610 -0.369354 -0.425295 -0.606240 0.657961 -0.187294 -0.480345 0.039606 -0.398305 0.759212 0.947881 -0.063508 -0.287080 -0.679505 0.703186 -0.522066 0.038107 0.675315 0.049619 -0.596841 -0.135586 0.761647 -0.407156 -0.589534 -0.431853 -0.125503 -0.491554 -0.772732 0.002816 -0.556048 0.068890 0.549270 -0.175142 -0.578661 0.173925 0.028541 -0.107684 0.064552 0.769821 0.563952 -0.546311 0.521361 -0.653247 0.491634 -1.124597 -0.868921 0.310353 -0.351925 -0.416922 -0.120211 -0.043120 0.419047 -0.237238 0.215807 -0.057181 -0.209000 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -1.851668 -1.278525 0.322181 -4.095180 3.141015 1.305913 1.358594 -1.556401 -4.165880 -1.398932 1.499980 -5.290970 -2.007092 4.664383 -1.663094 2.869164 5.866524 0.937280 -1.998258 -0.864906 3.642485 0.062863 5.676821 5.037770 -4.080591 -0.269722 -0.458868 2.251356 1.177918 0.999891 0.025868 -2.760914 1.959952 -2.358263 -0.112987 -2.080596 0.659404 1.054242 2.343096 -5.702932 1.217672 1.066272 1.224887 -0.942976 -1.019133 1.645135 3.479621 3.902919 -1.523395 0.971521 3.852376 0.785757 -0.095795 1.190498 0.391705 -0.554543 1.023224 -0.310898 -1.976266 -2.085455 -0.619875 -1.469203 0.214426 3.894463 5.023764 0.380334 -0.364912 1.869582 1.305718 1.356757 2.437700 0.866506 0.431826 0.083658 2.157109 -2.914341 -0.250224 -7.187643 -0.767104 -9.021491 -2.684170 -0.160339 4.122232 0.677994 1.138124 -0.655988 4.511851 -0.075661 -0.812834 3.338957 5.038823 -3.049834 -2.105040 -2.626117 -2.576718 1.902488 -2.297444 0.583767 2.349556 1.462123 -3.693113 -1.463881 0.642382 0.655403 -1.662074 -1.838987 0.868014 2.927425 -3.403218 -1.677517 -1.129098 3.033732 0.713738 -6.547300 -1.145882 -2.611105 1.457748 0.016156 -1.661654 -2.401622 0.414022 0.844186 -1.903585 -0.761423 -2.726097 3.132932 2.086687 1.749970 0.681429 0.608280 1.435605 5.177457 0.766806 -3.252578 -0.147790 -0.218874 -1.006686 1.612090 -3.082216 -1.793522 2.323691 -3.861717 1.563126 2.092296 -2.675244 -1.552471 1.372996 0.750101 1.190826 10.235463 -0.054441 4.705562 3.415780 -3.664223 1.809233 -1.199060 0.095427 1.310249 2.096960 0.411450 -2.773245 -4.114768 2.842203 4.403938 3.377068 -4.086895 -0.467822 0.206943 0.371542 -0.612110 -0.046278 1.435289 0.061112 -2.993891 -0.894502 3.595601 6.394902 -1.121332 -2.205564 2.112167 3.057331 -0.801024 -3.176831 -1.816814 -2.640648 0.613901 1.445046 0.745476 2.680595 5.857245 -7.945641 3.654717 0.861369 0.454135 3.116910 0.959076 -3.953739 -5.194440 -0.507408 2.784445 4.232295 -0.729704 0.556726 1.419864 -3.743872 -0.385889 0.927458 0.311549 -1.276017 1.575379 0.245768 -1.557766 -2.110884 -0.584593 -1.434475 -0.309034 -0.919948 2.974581 1.432518 -6.511124 4.252683 -0.480984 -1.915141 -0.107932 -1.904844 3.596422 -4.040033 -3.903064 2.098843 -1.430629 -2.369864 -2.388930 1.113641 2.262063 0.083438 1.800778 -2.334888 -3.912119 3.819559 -1.497898 3.433761 1.846912 -0.143252 2.360050 0.057737 -1.083509 -3.368563 -1.844580 0.450216 -0.536268 -3.740700 0.105634 -0.833754 3.498864 3.515871 -0.386864 -2.607962 -0.152813 3.687009 -3.489289 -1.718881 3.100661 0.824302 -3.547187 2.281514 3.701624 -4.350380 -0.261043 -2.985458 -0.509400 -1.490091 -3.600127 2.487297 0.251735 2.060475 0.599012 0.079352 -0.496454 2.163268 1.394512 -0.017868 0.456313 5.439573 4.414732 -1.520251 -0.244809 -4.567245 1.937132 -5.565083 -5.064529 2.351583 -0.524542 -3.258048 0.340210 0.107774 4.247496 0.067719 0.004399 -1.950094 1.457751 +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.475603 0.074953 0.104956 -1.160914 0.970395 0.162451 0.368599 -0.491420 -0.716234 -0.536313 0.203749 -1.523361 -0.694285 0.708814 -0.584212 0.739882 1.696316 0.054207 -0.339068 -0.448591 0.697427 0.236650 1.894026 1.559552 -1.213631 -0.070842 0.206932 0.748964 0.193830 -0.101541 -0.444764 -0.733224 0.593295 -0.727033 0.032082 -0.330866 0.162424 -0.257726 0.664925 -1.418325 0.263519 -0.383320 0.087357 -0.171569 -0.366696 0.761330 1.411780 1.085140 -0.388988 0.036001 1.235465 0.368934 0.001155 0.413575 -0.122469 -0.104985 0.415582 -0.251068 -0.431854 -0.809243 -0.182779 -0.400817 0.081946 1.193652 1.248077 0.188855 -0.203257 0.715243 0.481851 0.128542 0.450632 0.458022 0.219757 0.440430 0.592115 -1.246504 0.212451 -2.025509 -0.483995 -2.497412 -0.951243 -0.481802 0.528772 -0.228905 0.642734 0.324802 1.427283 0.055859 0.303898 0.638065 1.301332 -1.246040 -0.585391 -0.640028 -0.470135 0.332529 -0.609405 0.301008 0.409180 0.539448 -1.068797 -0.365218 0.407434 0.185787 -0.484350 -0.675393 0.366192 0.248254 -0.879912 -0.481711 -0.971399 0.443755 0.233732 -1.955690 -0.003349 -0.416452 1.191119 -0.144898 -0.384585 -1.131479 0.022260 0.513217 -0.548969 -0.278014 -0.764936 0.766587 0.866466 0.351899 0.469635 0.150831 0.555434 1.859322 0.644907 -0.795630 -0.429503 -0.113694 -0.775074 0.098593 -0.677838 -0.380741 0.686606 -1.208621 0.818636 0.955054 -0.759847 -0.446192 0.841724 -0.122129 0.560484 2.692021 -0.258823 1.197402 0.857392 -1.137903 0.253158 -0.913807 -0.175748 0.123400 0.527786 0.462474 -0.955895 -1.088871 0.874684 1.176568 0.848976 -1.247068 0.187880 0.212311 0.361682 -0.247358 -0.246323 0.513663 0.161672 -0.853103 -0.204963 1.158524 2.059827 -0.210544 -0.230286 0.646743 0.602812 0.055322 -0.902399 -0.646272 -0.665091 0.103910 0.664714 0.462258 0.563662 1.620270 -2.079995 0.699278 0.060539 0.047002 0.927543 0.352280 -1.012329 -1.104251 0.137258 1.006457 0.929008 -0.290268 0.397784 0.085425 -0.864951 -0.148990 0.226407 0.429155 -0.441888 0.451713 0.398430 -0.930479 -0.629349 -0.320969 -0.134919 0.061116 -0.093358 0.780389 0.106536 -2.266243 1.472016 -0.161260 -0.698839 0.080006 -0.935138 1.123268 -1.242609 -0.972883 0.736984 -0.579632 -0.232053 -0.430452 0.382258 0.546452 -0.056214 0.664007 -0.933486 -1.090544 1.047606 0.046499 0.969419 0.516341 0.283661 0.784448 -0.705910 -0.197653 -0.962577 -0.354568 -0.161447 -0.131911 -1.190156 0.218464 -0.298110 0.994162 1.299835 -0.568921 -0.287345 0.356276 0.677240 -1.485942 -0.381634 0.753925 1.027464 -1.160990 0.627475 0.915264 -1.064897 -0.380705 -0.825180 -0.231220 -0.481255 -1.275236 0.472982 -0.409142 0.431031 0.688696 -0.116266 -0.118923 0.585922 0.140979 0.231244 0.098324 1.292134 1.760895 -0.213660 -0.205255 -1.353619 0.431570 -1.727328 -1.650628 0.910549 -0.224033 -0.772381 -0.019707 0.121080 1.278727 -0.274730 -0.138445 -0.593669 0.264218 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() = -0.204025 0.506859 0.595250 -0.508978 0.820128 0.832812 0.235480 -0.218893 -0.447005 -0.260056 -0.162057 -0.813828 -0.712568 0.892766 -0.359093 0.204598 1.179806 0.232324 -0.168892 0.014166 0.351268 0.054653 1.096602 0.905273 -0.736474 0.079237 0.268334 0.246843 -0.330140 1.119490 -0.660862 -1.169529 0.337689 0.007473 0.144448 -0.392027 -0.076923 -0.272219 0.006207 -1.196263 0.085324 0.335178 -0.245667 -0.207632 -0.007172 -0.049526 1.273455 0.583717 0.015199 -0.033416 0.266676 0.455631 -0.005139 0.223524 0.499678 0.277716 0.650148 -0.195506 -0.504442 -0.158574 -0.314880 -0.330861 -0.317538 0.784672 0.835344 0.215515 -0.048911 -0.077420 -0.347174 0.106714 -0.061729 0.225510 0.350493 0.599467 0.210524 -0.107017 0.116811 -0.673964 -0.195826 -1.015915 -0.568508 -0.523588 0.166223 0.473809 0.389274 -0.331474 0.951295 -0.113506 0.253716 0.149641 1.367837 -0.862778 -0.322051 -0.517866 -0.381434 0.079500 -0.354937 0.013075 -0.118098 -0.315632 -0.723098 -0.732277 0.300743 0.193126 -0.281195 0.048538 -0.015777 0.711406 -0.790237 -0.305295 -0.755110 -0.016463 -0.111891 -1.232375 -0.448390 -0.099648 0.159043 0.233678 -0.392394 -0.944497 0.433431 0.716869 -0.380139 -0.445545 -0.306881 0.844280 0.325320 -0.047529 0.138317 -0.093826 0.357546 0.910831 0.564920 -0.322093 0.011444 -0.084366 -0.313376 -0.123893 -0.367809 -0.071096 -0.320171 -0.641937 0.115416 0.740770 -0.536871 0.114867 -0.437074 -0.270421 0.498295 2.101443 -0.511491 0.568194 0.021918 -1.159507 0.514394 -0.168952 -0.436686 -0.217292 0.447449 0.641750 -0.817345 -0.597814 0.643687 0.902495 0.556033 -0.607252 0.254242 -0.337461 -0.033078 -0.217532 0.258217 0.247576 -0.082083 -0.596529 -0.302301 0.412968 1.600056 -0.448143 -1.230989 0.447274 0.056817 0.183864 -0.261977 -0.203393 -0.206295 0.082731 0.305208 -0.229413 0.474015 1.048752 -1.567460 0.841665 -0.135843 -0.707196 0.924714 -0.108499 -0.277956 0.012995 0.115534 1.006854 0.855428 0.284786 -0.026950 -0.283011 -0.723758 -0.155177 0.060116 0.534536 -0.369932 0.425258 0.296535 -1.072780 -0.675145 -0.653109 -0.015585 -0.466887 -0.572847 0.300555 0.171816 -1.758012 1.224623 0.295812 -0.062694 0.102645 -0.175148 0.362721 -0.738711 -1.121054 0.344820 -0.309476 -0.305904 0.060018 -0.093446 0.436838 0.246875 0.404808 -0.579383 -0.959045 0.567275 0.245962 0.715730 0.340808 0.507242 0.664713 0.432610 -0.369354 -0.425295 -0.606240 0.657961 -0.187294 -0.480345 0.039606 -0.398305 0.759212 0.947881 -0.063508 -0.287080 -0.679505 0.703186 -0.522066 0.038107 0.675315 0.049619 -0.596841 -0.135586 0.761647 -0.407156 -0.589534 -0.431853 -0.125503 -0.491554 -0.772732 0.002816 -0.556048 0.068890 0.549270 -0.175142 -0.578661 0.173925 0.028541 -0.107684 0.064552 0.769821 0.563952 -0.546311 0.521361 -0.653247 0.491634 -1.124597 -0.868921 0.310353 -0.351925 -0.416922 -0.120211 -0.043120 0.419047 -0.237238 0.215807 -0.057181 -0.209000 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -0.690893 -0.187617 0.371625 -1.345368 1.364340 0.603046 0.507148 -0.396151 -1.514660 -0.660211 0.120314 -1.511645 -0.755238 2.025057 -0.458793 1.199322 2.554458 0.641848 -0.475600 -0.352359 1.605024 -1.048129 2.050765 1.910772 -1.550815 -0.028135 0.451408 0.770278 0.069638 1.131913 -0.504827 -1.353414 0.703769 -1.350958 0.286386 -1.320616 0.137412 0.486193 0.776306 -2.658978 0.353785 0.255758 0.164231 -0.381747 -0.490326 0.354008 1.624606 1.360415 -0.625836 0.559532 1.145882 0.153110 -0.100852 0.435434 0.513802 0.648495 0.424720 0.324085 -0.949111 -0.327669 -0.443320 -0.972999 0.349638 1.385083 1.865753 -0.017155 -0.064844 0.833573 -0.006550 0.373548 0.662472 0.296826 0.132304 -0.102400 0.958095 -2.015266 -0.310407 -3.362388 -0.399084 -4.013945 -1.115067 -0.490920 1.109737 -0.083978 0.767880 -0.093724 1.899575 -0.369023 0.013564 1.134007 2.267574 -1.572064 -0.785815 -1.326118 -0.981979 0.488232 -0.795226 -0.258378 1.111226 -0.138277 -1.407144 -1.251642 0.884291 0.509284 -0.595540 -1.075858 0.092027 1.638493 -1.625686 -1.280348 -1.084812 0.670122 -0.306836 -2.417520 0.070803 -0.764323 0.706211 0.418957 -0.733788 -1.664350 0.468494 1.121846 -0.681659 -0.861772 -0.235215 1.593612 0.675132 0.356196 0.364456 0.068308 0.386162 2.132978 1.338242 -1.048409 -0.094919 0.287330 -0.762588 0.203343 -1.217793 -0.884771 0.673290 -1.651738 0.104797 0.975418 -1.142431 -0.208313 1.301649 0.015136 0.727713 4.539320 -0.260326 1.495354 0.783581 -1.802817 1.214177 -0.260399 -0.191536 0.383548 1.199997 0.412764 -2.003971 -1.556401 0.980425 1.754269 1.340869 -1.746388 -1.113133 -0.635170 0.092471 0.210467 -0.035426 0.540537 -0.059000 -1.193471 -0.348579 0.874016 3.154424 -1.018933 -1.234495 0.850310 0.783728 -0.648880 -2.249242 -0.661845 -1.678386 0.083888 0.089550 -0.147970 0.938082 2.313661 -3.587062 1.658657 -0.575473 -0.448573 1.318758 0.313569 -0.995974 -2.675315 -0.225602 1.373940 2.048256 -0.038036 0.348045 0.285005 -1.500612 -0.097054 0.172314 0.542893 -0.610119 0.803953 -0.149445 -1.239610 -0.905693 -0.006785 -0.569051 -0.757376 -0.183454 0.864690 0.681315 -2.901441 1.845171 -0.065435 -0.429973 0.627686 -0.058985 1.397661 -1.527867 -2.027792 1.008629 -0.178291 -0.537899 -0.695624 0.131514 1.147360 0.023282 -0.083864 -0.670019 -2.114915 1.156290 -0.506902 1.373178 0.733149 0.106550 1.545919 0.298928 -0.788902 -1.402936 -0.628696 -0.056831 -0.507838 -1.061653 -0.969749 -0.360209 1.612044 1.687121 0.285304 -0.642537 -0.354225 1.793295 -1.698665 -0.382038 1.469615 0.458949 -1.233237 0.474475 1.695125 -1.723212 -0.554707 -1.042730 0.047548 -0.463431 -1.263165 0.671396 -0.531602 0.474336 0.362158 -0.065539 -0.298582 0.784033 0.654709 0.192713 -0.185494 2.099556 1.963315 -1.140190 -0.138199 -1.467518 0.710177 -2.182385 -1.745451 0.438738 0.584540 -1.135505 0.151534 0.423389 1.394084 -0.095795 0.101639 -0.324018 -0.228672 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.369785 0.381896 0.793921 -0.828010 0.708539 0.241743 0.259092 -0.297431 -0.582012 -0.592583 -0.118447 -0.631451 -0.803052 1.091072 -0.485083 0.174935 1.610084 0.416463 -0.190967 -0.585449 0.976303 -0.770019 1.471762 1.421714 -1.360725 -0.032785 0.952263 0.849146 0.671715 0.749599 -0.445259 -0.496766 0.433512 -0.526991 0.597313 -1.019019 0.183550 -0.134279 -0.062742 -1.773582 0.055310 -0.435790 -0.195668 -0.085973 -0.172267 1.080887 1.364437 0.929070 -0.607254 0.117031 0.962645 0.325336 -0.093150 0.279582 0.159564 0.139692 0.795353 0.450875 -0.341517 -0.086618 -0.168446 -1.079685 0.230970 1.208377 1.452914 0.068571 0.128433 0.387804 0.024899 0.217569 0.132472 0.329486 0.347234 0.450869 0.708582 -1.631624 0.123608 -2.654133 -0.334912 -3.108013 -0.724826 -0.887076 0.385582 -0.697980 0.406981 0.299034 1.297342 0.293218 0.370301 0.678346 1.566044 -1.026215 -0.384529 -0.801268 -0.644021 0.476541 -0.692316 0.192378 0.522623 -0.002198 -0.821227 -0.985831 0.645649 0.224747 -0.516009 -0.390867 -0.168239 1.001851 -1.192859 -0.478330 -1.104962 -0.230586 -0.152974 -1.759905 0.280966 -0.738516 1.563318 0.066335 -0.148051 -0.987213 0.138614 1.074857 -0.289294 -0.501771 -0.394791 1.104312 0.582576 -0.004615 0.125507 -0.098757 0.253517 1.028903 1.288489 -0.543662 -0.363070 0.149992 -1.076713 -0.238124 -1.039438 -0.206902 1.119296 -0.892105 0.082500 0.717530 -0.665487 -0.448456 1.464961 -0.502181 0.831296 3.131489 -0.176570 0.680002 0.329619 -1.245319 0.466569 -0.141613 -0.306230 0.480592 0.867334 0.534353 -1.589534 -0.941118 0.426849 1.159214 0.717547 -1.324135 -0.679128 -0.503318 -0.122045 -0.102276 -0.011677 0.267701 -0.454613 -0.620292 -0.317488 0.621531 1.694024 -0.619028 -1.024181 0.282528 0.227887 -0.499729 -1.475013 -0.280427 -0.367059 0.163531 -0.000567 -0.135877 0.682134 1.392356 -2.857914 0.999329 -0.315999 -0.360234 0.794146 -0.001890 -0.443631 -1.564288 0.524081 1.106439 1.036739 0.091253 0.008248 0.127297 -1.126096 -0.116630 0.055240 0.715970 -0.523577 0.569679 0.347375 -0.953463 -0.999640 -0.251937 0.010543 -0.377351 -0.068786 0.506910 -0.212871 -2.599017 1.455506 -0.412404 -0.339636 0.310415 -0.345817 0.635196 -1.310335 -1.390469 0.510138 -0.027632 -0.331554 -0.814462 0.027369 0.929855 -0.185691 0.088076 -0.718225 -1.472522 0.558850 -0.495747 0.612403 0.480468 0.572476 1.505547 -0.103643 -0.329181 -1.299812 0.082801 0.120611 -0.286183 -0.752883 -0.408347 -0.246998 0.918801 1.565510 -0.251484 0.032875 0.144804 1.197640 -1.373293 -0.671300 0.712490 1.050126 -0.625749 0.539889 0.799741 -1.103623 -0.813600 -0.694785 -0.473469 0.013671 -1.056624 0.487576 -0.774179 0.272734 0.647690 0.072099 -0.363942 0.727665 0.148686 0.269549 -0.045498 1.153643 2.253370 -1.007522 -0.028925 -0.983424 0.548802 -1.673966 -1.171175 0.259501 0.085614 -0.142918 0.183168 0.081274 0.843646 -0.010054 -0.064225 -0.102789 -0.219555 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::max_size() const = -0.259213 0.088588 0.536903 -0.656534 0.553188 0.014424 0.177284 -0.171670 -0.544391 -0.437094 0.005716 -0.587248 -0.552758 0.772236 -0.362562 0.148416 0.947700 0.235316 -0.190841 -0.359704 0.606270 -0.391341 0.928095 0.779841 -0.857746 -0.023515 0.276152 0.664607 0.415877 0.560691 -0.127479 -0.339648 0.220207 -0.103546 0.332483 -0.585427 0.194842 0.090826 -0.136221 -1.055124 0.094897 -0.011928 0.059960 -0.031306 -0.080088 0.741767 0.718734 0.647059 -0.379296 0.123958 0.699655 0.237305 -0.015698 0.236214 0.025869 -0.121740 0.548988 -0.060382 -0.324427 -0.111957 -0.094563 -0.729054 0.102344 0.731930 0.964741 0.005086 0.083383 0.208951 0.023166 0.251469 0.256298 0.161404 0.151958 0.151548 0.412244 -0.642297 0.119854 -1.454017 -0.143733 -1.963120 -0.442577 -0.446301 0.525433 -0.006655 0.059487 0.088617 0.841202 0.236278 0.068366 0.502040 0.928762 -0.480458 -0.268771 -0.518551 -0.462150 0.359882 -0.463879 0.018962 0.241986 0.344820 -0.492590 -0.361859 0.257562 -0.017820 -0.295644 -0.088765 -0.145492 0.645184 -0.907718 -0.156897 -0.527290 0.148146 0.100544 -1.093672 0.120306 -0.499049 0.803165 -0.066646 -0.006716 -0.275788 0.090724 0.435764 -0.252794 -0.014337 -0.743127 0.677722 0.270155 0.029514 0.060304 0.006742 0.119788 0.489858 0.483034 -0.447779 -0.282462 0.089303 -0.459424 -0.014865 -0.651900 -0.109323 0.647632 -0.599692 0.146972 0.281615 -0.387322 -0.396396 0.344664 -0.233775 0.479840 1.584591 -0.057959 0.492364 0.281164 -0.675927 0.264021 -0.014758 -0.100258 0.345169 0.431684 0.173190 -0.484239 -0.672728 0.345955 0.680425 0.496591 -0.693269 -0.244363 -0.200049 -0.035541 -0.034057 -0.008622 0.275841 -0.341879 -0.381905 -0.220413 0.298616 0.952613 -0.130419 -0.561700 0.296175 0.237273 -0.352329 -0.674901 -0.207747 -0.043469 0.062084 0.023712 -0.047862 0.424538 0.937094 -1.803808 0.681359 0.078261 -0.057499 0.445632 -0.157867 -0.304425 -1.065722 0.122012 0.623671 0.698302 -0.042456 0.019041 0.152392 -0.698822 -0.008236 0.056788 0.344228 -0.258784 0.264918 0.193483 -0.445738 -0.576901 -0.275881 -0.085756 0.030876 -0.127427 0.354735 0.025469 -1.589597 0.842330 -0.367849 -0.209100 0.062147 -0.146756 0.434050 -0.751624 -0.759341 0.262907 -0.131567 -0.482105 -0.657141 0.142680 0.525071 -0.242246 0.077635 -0.357783 -0.737080 0.437362 -0.401668 0.309009 0.276659 0.273800 0.763146 0.185202 -0.183588 -0.684213 0.045242 0.118034 -0.309548 -0.376129 0.212637 -0.092545 0.518615 0.843821 -0.081261 -0.086626 0.171769 0.796014 -0.553686 -0.553060 0.517542 0.245151 -0.391108 0.567248 0.577418 -0.718202 -0.446881 -0.559411 -0.206222 -0.025878 -0.607311 0.376495 -0.282770 0.193513 0.350627 0.105909 -0.360763 0.487070 0.127923 -0.008727 -0.083583 0.982992 1.250875 -0.473903 0.174269 -0.619166 0.309363 -1.022347 -0.675877 0.142603 -0.016632 -0.138520 0.206719 -0.058998 0.597782 0.005966 0.039726 -0.140068 -0.009580 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_max_size(std::allocator const&) = -0.527554 -0.012312 0.988322 -1.454098 1.531797 0.439207 0.328911 -0.330016 -1.133553 -0.494937 -0.227878 -0.647174 -0.738070 1.693051 -0.584656 1.022522 2.042162 0.422649 -0.399037 -0.680417 1.888787 -1.221103 1.844802 1.089917 -1.816855 -0.128843 0.958451 1.421080 0.863014 1.423431 -0.906163 -0.383413 0.411341 -1.206645 0.615769 -1.545847 0.653234 0.344006 0.198590 -2.126867 0.212527 -0.498252 -0.363022 -0.019260 -0.500352 1.311093 1.280853 1.390024 -1.058855 0.292919 1.539591 0.131243 -0.297718 0.570000 -0.114993 0.637575 1.044604 0.694344 -0.789840 -0.290125 -0.163862 -1.530846 0.742947 1.253270 1.923366 -0.300548 0.254564 1.298369 0.093942 0.259653 0.630334 0.185684 0.037445 -0.142075 1.152830 -2.321318 -0.131101 -3.320091 -0.504749 -3.947682 -0.764531 -1.198806 0.347817 -1.000406 0.692140 0.326034 1.783667 0.086909 0.188978 0.987754 1.751524 -1.566376 -0.570637 -1.822480 -0.891462 0.468034 -1.050463 -0.595137 1.088966 0.174557 -0.843772 -1.222543 0.765375 0.354795 -0.514430 -0.968552 -0.512822 1.661719 -1.750691 -1.238450 -1.316132 0.380261 -0.609747 -2.171549 0.418538 -0.822570 1.893799 -0.202439 0.447675 -1.348559 0.154399 1.760735 -0.584069 -0.723687 -0.133368 1.597973 0.900451 -0.058598 0.306210 -0.145663 0.086492 1.462614 1.972457 -0.851849 -0.968190 0.519424 -1.206068 -0.191601 -1.517137 -0.386132 1.330547 -1.604932 -0.023854 1.136239 -0.700316 -0.141414 2.094705 -0.366965 1.239961 4.030559 -0.034125 0.715613 0.202978 -1.580781 0.914917 0.112075 -0.217375 0.823675 0.779599 0.154981 -2.289655 -1.457299 0.624919 1.119174 1.080429 -2.043316 -1.232515 -1.049791 -0.010195 0.293386 -0.642374 0.973980 -0.764907 -0.727912 -0.378249 0.210740 2.714716 -0.941182 -1.438234 1.070863 0.326612 -1.498757 -2.458953 -0.806410 -0.892929 -0.180011 -0.044188 -0.235538 0.870112 2.002694 -3.629686 1.362289 -0.412226 -0.598355 1.065233 -0.323879 -0.221802 -2.329220 -0.068909 1.307863 1.647272 -0.117459 0.116348 0.307085 -1.325069 0.311564 0.099883 0.740040 -0.157011 0.343321 0.232198 -1.100909 -1.113641 0.007505 -0.354039 -0.202114 0.193873 0.541874 -0.381532 -3.434535 1.677344 -0.916104 -0.264771 1.078309 0.108637 1.285577 -1.438644 -1.716375 1.073726 0.441690 -0.254415 -1.324001 0.502917 1.434971 -0.230889 -0.103506 -0.756254 -2.523940 0.341642 -0.901440 0.467327 0.490704 0.543886 1.777971 -0.054348 -0.562757 -1.946001 -0.011489 -0.296923 -0.298964 -0.633998 -0.728506 0.051679 1.516323 1.597657 0.109909 0.249590 -0.027276 1.772610 -1.899329 -0.865228 1.295344 1.183155 -1.144492 0.697992 1.448564 -1.583395 -1.163851 -0.767885 -0.191219 0.004251 -1.161945 0.587610 -0.763088 0.350992 0.707083 0.402957 -0.493933 0.942852 0.370816 0.191615 -0.752356 2.247021 3.060327 -1.326948 -0.217884 -1.104829 0.754600 -2.121600 -1.421388 0.286132 0.303859 -0.347501 0.783493 0.689020 1.339798 -0.181484 0.093632 0.089460 -0.983139 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.166072 0.059590 0.357457 -0.396728 0.323814 0.097085 0.122695 -0.193211 -0.351220 -0.146037 -0.054284 -0.189027 -0.150467 0.500195 -0.216590 0.262865 0.760771 0.293275 -0.096158 -0.285712 0.470233 -0.503093 0.661248 0.663682 -0.570700 0.002900 0.416088 0.399904 0.288210 0.467720 -0.375439 -0.132916 0.189541 -0.424315 0.226405 -0.608289 0.086110 0.088403 0.131472 -0.855255 0.067774 -0.283283 0.047839 -0.041541 -0.096227 0.378050 0.504054 0.407779 -0.197394 0.169156 0.422666 0.104787 -0.014228 0.143139 0.163239 0.340083 0.507572 0.216738 -0.159564 -0.005962 -0.077962 -0.475303 0.227576 0.499387 0.648198 0.006069 0.070973 0.189633 0.022641 0.045730 0.166326 0.104858 -0.066772 0.104019 0.244962 -0.967627 0.182102 -1.213776 -0.170365 -1.302566 -0.300318 -0.361280 0.090883 -0.378487 0.331722 0.271532 0.562412 0.026792 0.152942 0.125275 0.599783 -0.586002 -0.188778 -0.296896 -0.279508 0.156013 -0.291016 -0.042692 0.263823 -0.022310 -0.330956 -0.503310 0.488413 0.228335 -0.220938 -0.185120 -0.053295 0.471000 -0.571218 -0.450581 -0.453812 -0.091973 -0.250526 -0.697498 0.301491 -0.407917 0.693176 0.025641 -0.084753 -0.616391 0.082461 0.596255 -0.132852 -0.311262 -0.132287 0.474340 0.231684 -0.030841 0.034575 -0.150573 0.008634 0.566064 0.606267 -0.307367 -0.138163 0.165329 -0.550482 -0.107813 -0.516297 -0.198036 0.397471 -0.482788 -0.034806 0.332067 -0.317374 -0.020854 0.875599 -0.079138 0.360916 1.427661 -0.062640 0.300455 0.156316 -0.568761 0.256938 -0.026106 -0.038433 0.251042 0.402125 0.127433 -0.899453 -0.452264 0.095893 0.478875 0.345219 -0.595887 -0.530019 -0.352177 -0.042682 0.166307 -0.073242 0.097528 -0.249472 -0.315908 -0.132281 0.090490 0.916827 -0.299782 -0.335729 0.131361 -0.053391 -0.443930 -0.865794 -0.179768 -0.367554 0.095196 -0.184225 -0.076723 0.273938 0.614518 -1.311990 0.489625 -0.362147 -0.236108 0.457878 -0.018863 -0.155297 -0.775305 0.128003 0.398649 0.569032 -0.017965 0.067743 0.189117 -0.495198 -0.051812 -0.069440 0.317195 -0.250956 0.238205 0.232202 -0.540855 -0.363044 0.014226 0.062782 -0.295335 0.044084 0.227005 -0.072305 -1.136041 0.548324 -0.146979 -0.143545 0.382901 -0.013256 0.259123 -0.563965 -0.564142 0.273472 0.150510 0.091603 -0.341890 0.022789 0.475146 -0.162986 -0.044680 -0.312899 -0.662901 0.090210 -0.285121 0.231057 0.211661 0.144097 0.559121 -0.055533 -0.119527 -0.587487 0.185975 -0.202441 -0.187928 -0.240190 -0.271201 -0.122235 0.488236 0.706911 0.040760 0.098856 0.128763 0.633166 -0.617914 -0.215985 0.344647 0.474898 -0.278080 0.144334 0.379944 -0.579545 -0.365259 -0.189449 -0.227520 0.088778 -0.364185 0.319529 -0.328472 0.180296 0.186986 0.088988 -0.123618 0.337970 0.082965 0.137758 -0.034618 0.591484 0.932592 -0.335913 -0.058811 -0.366509 0.170470 -0.696052 -0.408438 0.019459 0.201974 -0.231163 0.170704 0.127514 0.464082 0.010874 0.044428 0.048658 -0.236127 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = -0.614347 0.404150 1.003762 -1.402960 1.089890 0.212386 0.426348 -0.435116 -0.989750 -0.942766 -0.011393 -1.390415 -1.295889 1.619330 -0.776763 0.249933 2.385671 0.512679 -0.389674 -0.781617 1.321861 -0.732356 2.251499 2.125046 -1.956531 -0.103247 0.949525 1.303149 0.842622 0.818874 -0.349698 -0.868697 0.609942 -0.518134 0.760056 -1.208095 0.305257 -0.159251 -0.095512 -2.512705 0.174134 -0.327259 -0.027144 -0.184682 -0.265384 1.534017 1.974922 1.462513 -0.842029 0.045341 1.507555 0.536790 -0.089836 0.452672 0.128761 -0.198803 0.972279 0.273550 -0.602643 -0.345265 -0.246777 -1.384840 0.207014 1.821142 2.148811 0.210644 0.110805 0.511304 0.186390 0.451409 0.320950 0.478961 0.533474 0.649070 0.984966 -1.869843 0.180869 -3.642586 -0.411949 -4.468869 -1.129771 -1.085552 0.945525 -0.515974 0.381090 0.244403 1.929424 0.485731 0.425935 1.191687 2.306072 -1.292304 -0.652025 -1.176373 -1.017598 0.805412 -0.994363 0.377171 0.732686 0.400034 -1.321691 -1.046536 0.633189 0.162035 -0.730712 -0.459525 -0.075289 1.309184 -1.659562 -0.421876 -1.418414 0.056004 0.164266 -2.711595 0.192235 -1.080750 1.932550 -0.000294 -0.313836 -1.116815 0.164754 1.136380 -0.546163 -0.366845 -1.160766 1.554196 0.814712 0.117040 0.227645 0.041764 0.465422 1.493124 1.356789 -0.937913 -0.487436 0.085217 -1.346281 -0.188524 -1.453639 -0.325329 1.601444 -1.347886 0.381401 0.920342 -1.011380 -0.886286 1.395975 -0.618601 1.132214 4.331147 -0.255141 1.238103 0.709149 -1.711968 0.667899 -0.311305 -0.388619 0.596251 1.160772 0.693980 -1.707825 -1.477947 0.819249 1.752710 1.140148 -1.745252 -0.553353 -0.411113 -0.112133 -0.304847 0.021689 0.471772 -0.568962 -0.946534 -0.468926 1.180448 2.336735 -0.580970 -1.353124 0.511039 0.671584 -0.436605 -1.700911 -0.450075 -0.409308 0.241633 0.204197 -0.020722 1.054185 2.169297 -4.037320 1.459478 0.002679 -0.197012 1.148580 -0.016762 -0.917593 -2.320280 0.625185 1.624914 1.514531 -0.012410 -0.015494 0.179289 -1.612313 -0.184020 0.200652 0.915864 -0.726899 0.777469 0.383454 -1.180392 -1.398758 -0.556228 -0.170477 -0.236314 -0.251700 0.854892 -0.080920 -3.590847 2.179982 -0.586231 -0.577057 0.100585 -0.743324 0.992081 -1.915671 -1.920521 0.665143 -0.337209 -0.804443 -1.222379 0.174563 1.211821 -0.304394 0.353029 -1.043789 -1.870984 1.154848 -0.660955 1.041004 0.702677 0.739176 1.932015 0.019875 -0.447911 -1.694583 -0.117847 0.282366 -0.405870 -1.282562 -0.072404 -0.353031 1.273325 2.139750 -0.498575 -0.246271 0.292078 1.648309 -1.716656 -1.095871 1.073852 1.005601 -1.022500 0.985024 1.243663 -1.649713 -1.007446 -1.246193 -0.580868 -0.153677 -1.658967 0.713736 -0.877731 0.458103 0.903647 0.027701 -0.543876 1.040228 0.287778 0.271706 0.068027 1.850401 2.952591 -1.201732 0.083206 -1.625553 0.788620 -2.497036 -1.855018 0.565798 -0.102386 -0.325720 0.222080 -0.032576 1.331468 -0.080800 -0.081492 -0.411356 0.057825 +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.773242 -0.620546 -0.013282 -2.051389 1.610434 0.600247 0.693817 -0.910995 -1.749948 -0.085834 0.586600 -2.026547 -0.320612 1.690132 -0.696019 1.921514 2.939404 0.417116 -0.791831 -0.650804 1.745530 -0.238977 2.919351 2.571968 -1.913182 -0.095939 0.240479 1.202857 0.383116 0.047637 -0.845021 -0.715629 0.834537 -2.235729 -0.256264 -1.078580 0.322258 0.266428 1.878359 -2.736177 0.547229 -0.740067 0.309368 -0.393979 -0.766534 0.598801 1.668000 1.836671 -0.652320 0.573650 1.959651 0.015415 -0.097378 0.606086 0.148933 0.676388 0.596840 0.548189 -0.770143 -1.074518 -0.173164 -0.389060 0.715324 1.786832 2.168019 0.216587 -0.280519 1.441743 0.951894 0.164529 1.116419 0.507026 -0.463163 0.096560 1.032643 -2.974513 0.143541 -3.993848 -0.637652 -3.790705 -1.495782 -0.332082 1.087772 -1.013555 1.462610 0.630693 2.161504 -0.231760 0.044392 1.189161 1.925723 -2.198799 -1.044734 -1.216341 -1.085348 0.568902 -0.900539 0.187201 1.398537 0.493219 -1.742101 -0.953133 1.043255 0.843444 -0.772215 -1.519526 0.674942 1.006699 -1.090233 -1.723122 -0.878458 1.270491 -0.379899 -3.001779 0.035892 -1.092024 1.652705 -0.115344 -0.695232 -2.235531 0.004293 1.102452 -0.949256 -0.906693 -0.296164 1.251131 1.449802 0.687111 0.621866 0.094372 0.576360 3.289040 1.066555 -1.518427 -0.324598 0.157786 -1.126364 0.493370 -1.417896 -1.036974 0.936632 -2.171022 0.955572 1.474997 -1.271071 -0.254181 2.483735 0.626660 0.693589 5.508795 -0.024418 2.187865 1.544180 -1.820168 0.904048 -1.059103 0.131477 0.630771 1.026991 -0.003008 -2.720244 -1.918210 1.041127 1.932867 1.541072 -2.427039 -0.941955 -0.166072 0.220697 0.148879 -0.503646 0.694753 0.125945 -1.311117 -0.271544 1.615605 3.797894 -0.785759 -0.687221 1.063771 1.025949 -0.773002 -2.467263 -1.186626 -2.036458 0.232169 0.542870 0.591403 1.174167 2.637017 -3.768756 1.390927 -0.460368 -0.024093 1.754340 0.795277 -1.805396 -2.446557 -0.236466 1.201882 2.012844 -0.563888 0.359349 0.779845 -1.532529 -0.137816 0.324461 0.269020 -0.612851 0.812829 0.271031 -1.373420 -0.755249 0.245755 -0.537257 -0.369856 0.112367 1.331168 0.006763 -3.350808 1.891993 -0.120393 -1.096948 0.929419 -1.098769 1.925803 -1.891369 -1.685666 1.412822 -0.067532 0.222086 -0.802473 0.549621 1.191937 0.070654 0.889558 -1.404768 -2.115023 1.273663 -0.486802 1.642035 0.902191 -0.186200 1.132116 -1.207491 -0.588996 -1.849259 -0.653698 -0.584218 0.123149 -1.882748 -0.712358 -0.524023 1.926764 1.771092 -0.171796 -0.674647 0.222767 1.718069 -2.502801 -0.473964 1.353538 1.379103 -1.931189 0.559772 1.690945 -2.193225 -0.206901 -0.958376 -0.345052 -0.523936 -1.631089 1.201468 -0.154470 1.047917 0.266242 0.071466 0.348057 1.029697 0.495225 0.661689 0.163787 2.407180 2.565760 -0.465901 -0.885294 -2.089730 0.730588 -2.564834 -2.436897 1.163542 0.165374 -1.755144 0.318315 0.578701 2.266438 -0.198065 -0.273600 -0.681246 0.104513 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_base(int*) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = -0.907199 -0.432057 0.907939 -1.718369 1.587840 0.508683 0.567598 -0.477202 -1.786996 -0.800044 0.062578 -1.376480 -1.039995 2.481120 -0.828122 1.313504 3.257935 1.098209 -0.564548 -0.825878 2.159299 -1.477714 2.789756 2.405017 -2.218940 -0.257780 0.944397 1.695069 0.969327 1.414735 -0.773927 -0.892000 1.027831 -1.763447 0.541699 -2.139435 0.606256 0.671550 0.531067 -3.238577 0.431658 -0.458603 -0.024245 -0.178475 -0.587393 1.471575 1.745129 1.924481 -1.011058 0.726180 1.812990 0.102873 -0.140141 0.721397 0.261874 0.727226 0.929731 0.743833 -1.086887 -0.335604 -0.419249 -2.020581 0.544688 1.807587 2.778270 -0.094781 0.175228 1.101946 0.125123 0.538430 1.106245 0.233842 0.253471 -0.157783 1.404897 -2.911728 -0.257873 -4.693726 -0.775270 -5.550500 -1.137990 -1.119948 1.288733 -1.054601 0.838255 0.310642 2.240766 0.060213 0.127669 1.295750 2.666596 -2.091944 -1.095314 -1.822535 -0.961536 0.915629 -1.463979 -0.261112 1.686010 0.161859 -1.491865 -1.667706 1.159727 0.551623 -0.785194 -1.225883 -0.236403 2.315308 -2.263558 -1.588553 -1.805822 0.438997 -0.449871 -3.117377 0.384345 -1.267751 2.105412 0.305496 -0.391447 -1.800508 0.410962 1.783367 -0.658035 -1.032836 -0.119755 2.062229 0.870865 0.237303 0.285425 0.039150 0.208469 2.448797 2.163611 -1.310995 -0.577096 0.570440 -1.664248 0.067808 -2.182184 -0.944814 1.725465 -2.194212 0.174971 1.277255 -1.395536 -0.473084 2.628014 0.005833 1.367533 5.622943 -0.034506 1.458633 0.996883 -2.112076 1.277098 -0.114271 0.101973 1.000157 1.442769 0.294579 -2.850948 -1.980312 0.800035 1.977040 1.675231 -2.767800 -1.606135 -1.216079 0.311489 0.205564 -0.430808 1.013863 -0.650013 -1.226373 -0.378683 0.930201 3.501051 -1.449844 -1.917547 0.933087 0.576982 -1.389078 -3.307669 -0.909769 -1.399675 0.110749 -0.027035 -0.064908 1.061997 2.872852 -4.792371 2.019407 -0.530098 -0.402195 1.724557 0.172949 -1.001410 -3.275468 0.069793 1.587122 2.443455 0.186443 0.162918 0.746666 -2.045385 -0.060006 0.224519 0.995916 -0.459177 0.758443 0.255419 -1.313786 -1.455321 -0.071403 -0.330832 -0.730501 0.069558 1.188158 0.163537 -4.399035 2.153431 -0.796238 -0.798005 1.077875 -0.144174 1.717820 -2.325999 -2.498445 1.288465 0.056641 -0.730128 -1.669386 0.517631 1.757832 -0.191927 -0.029920 -0.912513 -2.918752 1.111986 -1.099377 1.185280 0.809144 0.321590 2.336425 0.088261 -0.838303 -2.333402 -0.050156 -0.280225 -0.781067 -1.245481 -1.159061 -0.107353 2.100644 2.536793 0.232412 -0.243774 -0.047105 2.491165 -2.673020 -1.107521 1.823671 1.659097 -1.213454 1.137919 1.980910 -2.661429 -1.153417 -0.999287 -0.499054 0.032267 -1.781801 1.069619 -1.042462 0.869681 0.592402 0.427471 -0.422652 1.276381 0.631795 0.306460 -0.426068 2.837066 3.830702 -1.680324 -0.237619 -1.877775 1.045227 -3.028458 -2.142253 0.522926 0.530689 -1.049341 0.796700 0.752514 1.837452 -0.045038 -0.102317 -0.482368 -0.600408 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base(unsigned long, std::allocator const&) = -0.506955 0.314265 1.302203 -1.932026 2.546183 1.274853 0.881354 -0.681340 -1.348155 -0.625603 -0.045638 -0.762484 -1.235510 1.955372 -1.078182 1.094017 2.447895 0.281926 -0.217626 -0.749679 2.405027 -1.150247 2.960301 1.821926 -2.810706 0.046087 0.596658 1.543132 0.503701 2.671496 -0.989340 -1.107408 0.950742 -1.137574 0.982402 -1.727716 0.443521 0.112542 0.100987 -2.684018 0.102077 -0.089613 -0.526701 0.268152 -0.267677 1.125301 2.166683 1.770238 -1.290417 0.646319 1.861176 0.481939 0.048643 0.982603 0.303897 0.587775 1.356273 0.427135 -1.021606 -0.538737 -0.906662 -1.762490 0.871095 1.842894 2.685306 -0.163734 0.480880 0.885102 -0.573916 0.519221 0.959880 0.741977 0.166302 -0.048187 1.792740 -2.133011 0.053808 -3.763278 -0.787116 -4.359378 -1.275557 -1.780543 0.381566 -0.338894 1.577600 -0.104007 2.387883 0.414966 0.376089 1.029961 2.123417 -1.955981 -0.432163 -1.816695 -1.436085 0.054971 -1.128695 -0.313407 0.741988 -0.066746 -1.415190 -1.330711 0.911375 0.451154 -0.527322 -1.278196 -0.723564 2.024092 -2.191996 -1.339211 -1.535679 0.641823 -1.058832 -3.117905 0.148304 -1.379343 1.964882 -0.331617 0.591954 -1.351424 0.390684 2.347917 -0.804930 -1.119824 -0.407309 2.296263 1.514263 0.240365 0.371438 -0.302718 -0.516529 1.989005 2.578728 -0.563003 -1.091351 0.123282 -1.021877 0.199669 -1.439190 0.101226 1.379312 -1.864309 -0.187989 1.450923 -0.578497 -0.107315 1.607533 -0.554447 1.687901 5.536682 -0.490118 1.518662 0.589348 -2.302943 1.169304 0.369313 0.169406 1.356722 1.385813 -0.068034 -2.910614 -1.961553 0.904755 1.322827 1.101315 -2.642642 -1.101089 -1.019006 -0.018643 0.036934 -0.826605 0.829591 -0.672434 -1.418860 -0.240906 0.159226 3.516932 -1.127400 -2.289186 1.527243 0.519505 -1.723237 -2.163969 -1.246785 -1.146155 0.006700 0.244494 -0.439360 0.885075 2.458902 -4.485535 1.685261 -0.733497 -0.705515 1.848594 -0.360702 -0.303558 -2.267159 0.066629 1.502324 1.727763 -0.004224 -0.133393 0.439452 -1.697377 0.725018 -0.140340 0.988760 -0.598691 0.705558 0.256854 -1.908768 -1.756987 -1.027821 -0.298037 -0.300379 -0.331070 0.604718 -0.161670 -4.416159 1.886580 -0.675610 -0.777524 1.342243 0.195072 1.689560 -1.391647 -2.337486 1.220241 -0.127008 -0.664769 -1.803792 0.686843 1.408781 -0.001834 0.174346 -1.555401 -2.977439 0.919594 -1.037217 0.958541 0.955654 1.080801 2.527959 0.367898 -1.217819 -2.635994 -0.709541 0.437228 -0.255522 -1.330629 -0.727932 -0.463959 1.783407 2.297122 0.356128 0.246768 -0.400765 2.777277 -2.263753 -0.787351 2.144223 1.148370 -1.373852 0.742666 2.117806 -1.473435 -1.739462 -0.783992 -0.107788 0.005947 -1.564357 1.174555 -0.938356 0.793436 0.449703 0.807504 -0.960927 0.908884 0.264952 0.532655 -0.886694 2.873423 3.289608 -1.689260 -0.212663 -1.061605 0.876935 -2.698253 -1.665764 0.297966 -0.270435 -0.292757 1.149174 0.392325 2.126396 0.110953 0.105155 0.308077 -1.091539 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_fill_initialize(unsigned long, int const&) = -0.438124 0.359391 1.060347 -1.094338 0.933510 0.632635 0.304998 -0.472612 -0.830401 -0.452004 -0.045964 -1.076894 -0.869260 1.334775 -0.633782 0.223672 1.772689 0.398985 -0.400284 -0.403633 0.909180 -0.398911 1.625961 1.566795 -1.350738 -0.026782 0.642728 0.859233 0.385884 1.173322 -0.715636 -0.879076 0.330339 -0.237803 0.494423 -0.891217 0.064185 -0.140183 0.037345 -1.871190 0.150002 0.009645 -0.136356 -0.201586 -0.050281 0.767321 1.558695 1.003254 -0.369657 -0.015969 0.904351 0.458719 -0.024272 0.278865 0.491452 0.154748 1.256174 0.307113 -0.460327 -0.207710 -0.327595 -0.719618 0.054297 1.359308 1.533581 0.247003 0.016343 0.048082 0.033616 0.249645 0.164114 0.364679 0.310708 0.688431 0.534546 -1.086464 0.430695 -2.225708 -0.174393 -2.454029 -0.781777 -0.668397 0.460888 -0.119309 0.392729 -0.106767 1.446600 0.135203 0.205692 0.501546 1.813228 -1.070740 -0.429568 -0.750147 -0.866466 0.341215 -0.626241 0.171103 0.255335 0.037400 -0.991662 -0.909120 0.518322 0.244329 -0.508863 0.060512 -0.051516 1.097573 -1.145820 -0.392435 -0.903273 0.062123 -0.043145 -1.953778 -0.158474 -0.845272 1.025301 0.026269 -0.462154 -1.083279 0.361390 0.999735 -0.518849 -0.371858 -0.807771 1.312316 0.607923 0.029189 -0.001801 -0.190124 0.340323 1.040628 0.903754 -0.722771 -0.140436 0.008802 -0.930250 -0.152465 -0.988245 -0.154789 0.645617 -0.891155 0.043626 0.811075 -0.758101 -0.182377 0.638649 -0.336218 0.741752 3.616846 -0.461131 0.946817 0.336706 -1.439610 0.715421 -0.004051 -0.325225 0.222455 0.770201 0.657688 -1.654827 -1.062727 0.780718 1.362149 0.844503 -1.279577 -0.209772 -0.400272 -0.197925 -0.182947 0.204410 0.255510 -0.474561 -0.777113 -0.449764 0.646333 2.066835 -0.535118 -1.615642 0.414037 0.172216 -0.244832 -1.045594 -0.286322 -0.273895 0.241238 0.087879 -0.188343 0.893976 1.599352 -3.083192 1.229246 -0.120097 -0.622825 1.341064 -0.172493 -0.583768 -1.115280 0.294019 1.250439 1.223114 0.200409 -0.226784 0.054041 -1.218264 -0.151699 0.052127 0.723501 -0.640827 0.634159 0.477163 -1.199471 -1.002170 -0.719591 -0.063737 -0.435566 -0.534038 0.594148 -0.232321 -2.731541 1.675990 0.009177 -0.195773 0.156495 -0.425168 0.494582 -1.292203 -1.502725 0.449115 -0.193072 -0.405892 -0.684217 -0.009062 0.838604 -0.041175 0.466558 -1.008078 -1.535466 0.735369 -0.429612 0.961531 0.501990 0.558651 1.197100 0.505500 -0.272633 -1.139649 -0.227229 0.514809 -0.148742 -0.886243 -0.129769 -0.391682 1.026960 1.440036 -0.285393 -0.133844 -0.321591 1.259048 -1.008352 -0.470942 0.782485 0.394180 -0.863226 0.281823 0.932856 -0.993630 -0.757733 -0.781819 -0.620125 -0.404528 -1.113759 0.483231 -0.583995 0.316190 0.585091 -0.025919 -0.584297 0.558041 0.177535 0.025555 0.212225 1.353815 1.835539 -0.788502 0.342511 -1.148553 0.735330 -1.758680 -1.285840 0.396365 -0.333850 -0.474538 0.039079 -0.012174 0.952861 -0.059518 0.113872 -0.097262 -0.028782 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = -0.456736 0.053331 0.874236 -0.951687 0.754417 0.255122 0.335140 -0.342560 -0.848866 -0.361332 -0.089217 -0.459533 -0.501018 1.263237 -0.519455 0.514091 1.893142 0.742769 -0.285746 -0.625334 1.212743 -1.122201 1.595771 1.593781 -1.371040 -0.088486 0.940775 0.987527 0.715694 1.004636 -0.807358 -0.288720 0.518305 -0.984011 0.567621 -1.441534 0.260868 0.169966 0.179478 -2.018659 0.174765 -0.611128 -0.040561 -0.133199 -0.237442 1.078814 1.186857 1.023729 -0.550015 0.275344 0.992341 0.161567 -0.100677 0.358494 0.330219 0.675759 1.006059 0.747220 -0.454068 -0.070601 -0.239663 -1.194553 0.510089 1.200184 1.591466 0.053346 0.207768 0.442929 0.100301 0.173695 0.407833 0.197982 0.073454 0.175116 0.710066 -2.153101 0.237607 -2.947180 -0.441489 -3.230968 -0.708682 -0.884745 0.371391 -1.053381 0.675167 0.404784 1.319716 0.103600 0.341748 0.485742 1.514267 -1.350848 -0.507678 -0.885724 -0.660731 0.426215 -0.767586 -0.057923 0.840115 -0.131069 -0.864684 -1.167995 0.978798 0.503746 -0.485503 -0.478968 -0.126889 1.254407 -1.249773 -0.962624 -1.156715 -0.173096 -0.460929 -1.763379 0.600250 -0.962597 1.672486 0.104169 -0.229165 -1.312416 0.207912 1.388784 -0.331474 -0.722846 -0.163941 1.283935 0.535228 -0.046981 0.098283 -0.267567 -0.005458 1.239078 1.561834 -0.712197 -0.325991 0.348170 -1.401593 -0.217477 -1.311866 -0.448841 1.165459 -1.122861 -0.111985 0.782515 -0.789161 -0.133557 2.107696 -0.142115 0.920481 3.551499 -0.137146 0.756918 0.378451 -1.337398 0.756574 -0.000967 -0.060460 0.603025 1.001764 0.278970 -2.241604 -1.104472 0.276354 1.169624 0.875238 -1.590568 -1.142169 -0.864206 -0.062353 0.213679 -0.200310 0.322703 -0.536302 -0.757203 -0.312920 0.371021 2.102150 -0.842256 -1.129713 0.323845 -0.036010 -0.933013 -2.079502 -0.447375 -0.717459 0.211382 -0.325404 -0.182015 0.714219 1.541693 -3.080970 1.178055 -0.747135 -0.506991 1.145428 -0.014410 -0.435385 -1.863210 0.326873 1.013828 1.378585 0.105864 -0.054456 0.442942 -1.207690 -0.113920 -0.091642 0.795447 -0.487540 0.553961 0.429651 -1.132396 -0.941010 -0.132062 0.071006 -0.659008 0.106837 0.561637 -0.264541 -2.737179 1.376642 -0.384685 -0.360347 0.783837 -0.074151 0.619849 -1.392512 -1.490197 0.660739 0.330305 -0.001234 -0.989806 0.115132 1.163787 -0.274919 -0.073237 -0.748424 -1.782662 0.416197 -0.692032 0.675992 0.466020 0.383485 1.545644 0.049169 -0.344748 -1.512089 0.263237 -0.303910 -0.383894 -0.715385 -0.766298 -0.234610 1.180588 1.653693 0.001047 0.207072 0.138686 1.559707 -1.601096 -0.612947 0.905042 1.192555 -0.619995 0.433943 0.996226 -1.468656 -0.927436 -0.489144 -0.609227 0.174125 -0.962205 0.694870 -0.806886 0.466509 0.417049 0.261684 -0.252878 0.736488 0.248926 0.333909 -0.080279 1.441773 2.471694 -0.981741 -0.163987 -0.938675 0.549834 -1.733924 -1.079601 0.144816 0.339532 -0.460321 0.451834 0.402712 1.084511 0.000928 -0.048815 0.014901 -0.499855 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_create_storage(unsigned long) = -0.604566 0.397728 1.339542 -1.627248 1.539872 1.590146 0.431434 -0.855805 -1.278166 -0.168506 0.019573 -1.642870 -0.880897 1.921096 -0.870136 0.709084 2.423752 0.429174 -0.725690 -0.174408 1.280972 -0.067522 2.208474 2.016468 -1.684395 -0.030251 0.629799 0.915559 0.067370 1.881085 -1.385193 -1.538512 0.400863 -0.519262 0.281939 -1.020652 0.006237 -0.189711 0.599302 -2.429431 0.308341 0.239146 -0.350291 -0.420167 -0.113505 0.119385 2.125562 1.326571 -0.257529 -0.126100 1.081716 0.691009 -0.128211 0.346847 0.932424 0.605968 1.817464 0.485050 -0.678272 -0.509522 -0.523686 -0.292835 0.003514 1.783839 1.925100 0.455565 -0.058456 0.063993 0.037018 0.186773 0.258734 0.427017 0.166441 1.031775 0.526513 -1.182781 0.639449 -2.398457 -0.176327 -2.034193 -1.012047 -0.619475 0.321471 0.156306 0.855735 -0.464224 1.922399 -0.217645 0.125749 0.433659 2.487799 -1.691558 -0.606847 -1.078998 -1.301450 0.198543 -0.717899 0.107770 0.116588 -0.285220 -1.414785 -1.367000 0.611499 0.622160 -0.623546 0.073965 0.112752 1.496178 -1.206789 -0.846186 -0.850677 0.438188 -0.349395 -2.630753 -0.809725 -1.060838 0.680065 0.033638 -0.818912 -1.966027 0.601995 1.487696 -0.863980 -0.784128 -0.655943 1.764224 1.014204 0.129463 -0.028973 -0.441927 0.572220 1.782933 0.953017 -1.048023 0.056243 -0.131306 -0.951517 -0.081058 -1.177998 -0.226288 0.052697 -1.245456 -0.019240 1.488517 -1.043162 0.320466 0.464656 -0.134879 0.844947 5.509251 -0.781687 1.458908 0.406089 -2.154535 1.191187 0.018475 -0.475231 0.009320 0.810679 0.882751 -2.692411 -1.468173 1.282424 1.843103 1.206476 -1.705769 -0.039205 -0.573405 -0.331529 -0.228756 0.271657 0.359572 -0.506044 -1.178920 -0.655828 0.930790 3.309269 -0.871744 -2.604989 0.833082 0.215076 -0.240768 -1.149999 -0.539576 -0.767714 0.348950 0.350721 -0.299447 1.343285 2.244976 -3.860821 1.691727 -0.203465 -1.218332 2.225839 -0.182769 -0.898989 -0.686606 0.115074 1.717563 1.744937 0.298927 -0.341186 0.015778 -1.557295 -0.202651 0.112217 0.812088 -0.828568 0.816305 0.703703 -1.883432 -1.232284 -1.007458 -0.244031 -0.867180 -1.014988 0.813533 -0.393387 -3.458977 2.308210 0.554869 -0.116262 0.404835 -0.640676 0.735648 -1.595433 -2.079891 0.772571 -0.161068 -0.132187 -0.426753 -0.001077 1.061040 0.363000 1.027027 -1.612865 -2.255348 0.861460 -0.310868 1.534208 0.667786 0.651743 1.102775 0.769362 -0.340212 -1.443244 -0.803573 0.951425 0.222341 -1.356072 -0.469114 -0.648429 1.606254 1.643110 -0.272639 -0.425633 -1.099780 1.600174 -1.222934 -0.113694 1.107234 0.189716 -1.566896 -0.315448 1.367502 -1.126523 -0.850749 -0.846963 -0.726070 -0.954299 -1.480737 0.549001 -0.504232 0.518467 0.634985 -0.113662 -0.755248 0.508750 0.296098 -0.022470 0.431992 1.798259 1.710804 -0.817285 0.472473 -1.587225 1.097975 -2.300114 -1.880107 0.767868 -0.779982 -1.103678 -0.082499 0.096299 1.395891 -0.208206 0.438655 0.042238 -0.147344 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n_a(int*, unsigned long, int const&, std::allocator&) = -0.350500 0.011273 0.637032 -0.716833 0.544180 0.104179 0.253421 -0.305459 -0.674291 -0.377100 0.024994 -0.540134 -0.491988 0.956383 -0.391287 0.354792 1.355054 0.449383 -0.226713 -0.525329 0.843281 -0.787222 1.235176 1.266243 -1.056595 -0.026415 0.612185 0.753079 0.587294 0.624126 -0.426485 -0.242192 0.364993 -0.629078 0.417452 -0.949731 0.126266 0.134807 0.149895 -1.517780 0.088183 -0.322804 0.024902 -0.060208 -0.122004 0.944016 0.907274 0.787503 -0.417650 0.329563 0.795075 0.060275 0.035139 0.239012 0.225240 0.255126 0.772510 0.435455 -0.312378 -0.035745 -0.170809 -0.911739 0.305768 0.940549 1.237917 0.002555 0.053108 0.285335 0.111756 0.185953 0.308395 0.272343 0.102799 0.177371 0.578375 -1.490933 0.223843 -2.246188 -0.255903 -2.533978 -0.603912 -0.534319 0.471834 -0.607456 0.406526 0.279702 1.076399 0.162263 0.118015 0.450129 1.161357 -0.907294 -0.353730 -0.510219 -0.513095 0.339820 -0.568968 0.073696 0.569554 0.085976 -0.684138 -0.745767 0.685558 0.238120 -0.417207 -0.286413 -0.107664 0.877596 -0.998781 -0.581261 -0.803988 -0.065700 -0.179627 -1.381275 0.402687 -0.720091 1.232156 0.081619 -0.239338 -0.792297 0.169323 0.797185 -0.251412 -0.401696 -0.371100 0.930648 0.424955 0.049168 0.059676 -0.077545 0.075948 0.895955 0.990896 -0.556285 -0.229716 0.224427 -0.916567 -0.027574 -0.898555 -0.300802 0.915434 -0.800063 0.000000 0.450370 -0.577555 -0.242336 1.369114 -0.131743 0.548165 2.548557 -0.092810 0.672791 0.416172 -0.936100 0.494175 -0.073845 -0.021175 0.497609 0.743101 0.255145 -1.437631 -0.824362 0.328149 0.979017 0.630904 -1.194853 -0.742819 -0.404594 -0.011357 0.070957 -0.000571 0.214020 -0.331805 -0.548713 -0.219209 0.347691 1.503133 -0.539260 -0.766536 0.201738 0.048853 -0.564040 -1.450818 -0.269205 -0.430251 0.141457 -0.190818 -0.051669 0.519014 1.149674 -2.389300 0.880610 -0.400049 -0.259813 0.834593 0.023993 -0.445725 -1.504827 0.218286 0.703227 0.963112 0.072546 -0.029212 0.322271 -0.962994 -0.072955 -0.029936 0.499832 -0.446585 0.513887 0.276019 -0.741164 -0.675280 -0.160482 0.030863 -0.365792 -0.000179 0.501317 -0.114863 -2.058283 0.995862 -0.290535 -0.343009 0.390678 -0.125919 0.517360 -1.023744 -1.060734 0.437070 0.026348 -0.227736 -0.807613 0.038931 0.727797 -0.224160 -0.038821 -0.573244 -1.175452 0.466480 -0.578764 0.566985 0.397630 0.222360 1.134650 0.061872 -0.295617 -1.037406 0.206012 -0.113717 -0.331138 -0.549075 -0.398431 -0.191180 0.795798 1.201847 -0.035275 0.082964 0.163958 1.120725 -1.118666 -0.530887 0.623590 0.810640 -0.461339 0.507143 0.694726 -1.042467 -0.521486 -0.503372 -0.494928 0.031588 -0.707991 0.599586 -0.511734 0.322174 0.295576 0.137177 -0.206723 0.591198 0.179127 0.189393 -0.023798 1.127200 1.883414 -0.706109 -0.070655 -0.803786 0.433741 -1.283494 -0.841410 0.133751 0.252972 -0.344617 0.221710 0.185158 0.804278 0.118534 -0.168171 -0.122570 -0.139748 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_fill_n(int*, unsigned long, int const&) = -0.351591 0.005757 0.619090 -0.721979 0.555999 0.105647 0.254501 -0.309981 -0.682174 -0.375359 0.031628 -0.540479 -0.470124 0.960124 -0.392628 0.355965 1.342449 0.441240 -0.229009 -0.501857 0.832764 -0.762291 1.209651 1.228020 -1.009559 -0.033048 0.590753 0.707893 0.534895 0.630817 -0.431929 -0.280384 0.365987 -0.618649 0.385484 -0.923366 0.116612 0.136130 0.163245 -1.461698 0.105413 -0.322710 0.007255 -0.076527 -0.134636 0.904057 0.892427 0.769023 -0.392291 0.313144 0.769585 0.079993 0.002823 0.241762 0.253418 0.267630 0.746790 0.425651 -0.317004 -0.045563 -0.193810 -0.852224 0.288048 0.918963 1.192647 0.014356 0.053880 0.279676 0.087286 0.188972 0.307022 0.246028 0.107520 0.163199 0.546926 -1.454072 0.193393 -2.196989 -0.265785 -2.485291 -0.578347 -0.495012 0.450515 -0.602313 0.394683 0.277151 1.040520 0.144474 0.101549 0.447977 1.154347 -0.887860 -0.357661 -0.497483 -0.515001 0.305476 -0.544096 0.063657 0.553276 0.073190 -0.681434 -0.728524 0.656469 0.241560 -0.387052 -0.295773 -0.083088 0.867730 -0.987439 -0.558897 -0.768753 -0.039461 -0.168704 -1.350027 0.375802 -0.699117 1.210618 0.075843 -0.270994 -0.792573 0.193904 0.792902 -0.271221 -0.393765 -0.323796 0.902277 0.397824 0.074779 0.047548 -0.095599 0.073996 0.889505 0.973191 -0.555724 -0.196657 0.191684 -0.880149 -0.022920 -0.862463 -0.306818 0.862230 -0.784333 0.027887 0.451740 -0.573128 -0.243553 1.334172 -0.121921 0.532915 2.489998 -0.122717 0.675137 0.393640 -0.934251 0.462818 -0.081892 -0.019244 0.447398 0.728102 0.247108 -1.377191 -0.814441 0.358628 0.953980 0.632663 -1.173704 -0.714460 -0.405151 -0.013933 0.085419 -0.012722 0.208380 -0.326200 -0.551791 -0.230265 0.334659 1.500009 -0.526504 -0.759483 0.215534 0.053151 -0.522982 -1.389889 -0.271233 -0.419665 0.160941 -0.161206 -0.069005 0.521101 1.139888 -2.362679 0.870232 -0.412419 -0.264703 0.806868 0.046580 -0.440113 -1.461164 0.178869 0.704240 0.961255 0.086594 -0.015500 0.310661 -0.929712 -0.076507 -0.037880 0.494364 -0.428660 0.484746 0.281103 -0.757378 -0.658909 -0.151240 0.027734 -0.354068 0.002775 0.486848 -0.113939 -2.046667 0.995216 -0.255910 -0.304991 0.369460 -0.100243 0.520788 -0.983510 -1.051981 0.433776 0.012336 -0.214655 -0.760423 0.045077 0.713345 -0.215031 -0.010137 -0.546165 -1.157552 0.460826 -0.544862 0.587642 0.374317 0.223402 1.118892 0.031374 -0.276207 -1.010511 0.181102 -0.085575 -0.331335 -0.542965 -0.362620 -0.182719 0.793410 1.140713 -0.026566 0.055386 0.150946 1.093094 -1.089893 -0.476868 0.628020 0.799307 -0.473777 0.485147 0.701620 -1.016789 -0.515260 -0.482733 -0.475926 -0.010645 -0.694666 0.559210 -0.473998 0.316824 0.271062 0.149027 -0.206802 0.553468 0.181725 0.190497 -0.008705 1.089715 1.843212 -0.691096 -0.070492 -0.781475 0.425493 -1.252839 -0.853964 0.148871 0.244199 -0.356318 0.209996 0.159693 0.794472 0.091083 -0.137931 -0.109358 -0.126769 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n::__uninit_fill_n(int*, unsigned long, int const&) = -0.356795 0.038886 0.537920 -0.649529 0.562304 0.158404 0.259209 -0.310504 -0.622246 -0.416426 0.053304 -0.592744 -0.557585 0.939431 -0.398552 0.343740 1.284318 0.382130 -0.203248 -0.458231 0.786235 -0.638057 1.226937 1.195893 -0.998564 -0.044402 0.552647 0.660143 0.480346 0.556292 -0.324973 -0.375342 0.423610 -0.561028 0.330481 -0.818267 0.127562 0.094296 0.147604 -1.390194 0.076482 -0.268868 -0.051749 -0.066090 -0.139181 0.847008 0.902437 0.772915 -0.378606 0.318730 0.747773 0.107658 0.002099 0.249769 0.195445 0.138462 0.595370 0.295165 -0.332330 -0.081353 -0.188513 -0.848415 0.181436 0.910350 1.185687 0.016592 0.055144 0.295161 0.013156 0.213395 0.273285 0.264005 0.181586 0.206513 0.560079 -1.280466 0.100529 -2.069458 -0.296167 -2.407256 -0.581843 -0.494539 0.465880 -0.469131 0.376543 0.237714 1.034267 0.201501 0.080696 0.508730 1.185441 -0.869004 -0.360653 -0.486052 -0.460833 0.319469 -0.575447 0.139509 0.479281 0.084823 -0.693101 -0.718990 0.557318 0.198100 -0.381792 -0.349113 -0.100070 0.828529 -0.989057 -0.496495 -0.774765 -0.052911 -0.120691 -1.372293 0.267647 -0.601913 1.159086 0.107142 -0.246562 -0.727637 0.188583 0.719559 -0.232514 -0.403935 -0.294222 0.841506 0.410525 0.096990 0.079503 -0.024128 0.122286 0.931723 0.907247 -0.503141 -0.208906 0.132967 -0.782998 0.029089 -0.799587 -0.261219 0.799452 -0.777040 0.105725 0.475212 -0.556096 -0.324431 1.133729 -0.167350 0.519269 2.343693 -0.104825 0.672378 0.421287 -0.936210 0.390296 -0.177274 -0.044112 0.421831 0.693799 0.272436 -1.198058 -0.790373 0.401978 0.953315 0.611312 -1.122599 -0.589430 -0.331310 0.042635 -0.029916 0.015212 0.254598 -0.277363 -0.538524 -0.209984 0.426979 1.413997 -0.526281 -0.703432 0.250526 0.128425 -0.405483 -1.250735 -0.269634 -0.353105 0.133770 -0.030325 -0.032044 0.468703 1.126500 -2.200302 0.824115 -0.303350 -0.200820 0.714745 0.080154 -0.481242 -1.316777 0.221098 0.724226 0.873329 0.103981 0.039657 0.255517 -0.923097 -0.075400 0.010480 0.469507 -0.396518 0.486630 0.245854 -0.710552 -0.700532 -0.160742 0.013741 -0.329238 -0.025453 0.498208 -0.030186 -2.001026 1.002904 -0.266521 -0.351107 0.279300 -0.148039 0.592744 -0.982911 -1.062562 0.440942 -0.111741 -0.316291 -0.705919 0.059280 0.646896 -0.148092 0.023743 -0.508450 -1.072947 0.516474 -0.446236 0.568484 0.367040 0.266659 1.108576 -0.051648 -0.328143 -0.955709 0.084276 0.032726 -0.336122 -0.570001 -0.291059 -0.165832 0.773832 1.132642 -0.046388 -0.043709 0.128259 1.025564 -1.076856 -0.478822 0.635358 0.831894 -0.471940 0.504207 0.692279 -0.960689 -0.488025 -0.498113 -0.396402 -0.055052 -0.746600 0.504215 -0.476828 0.302987 0.308398 0.130730 -0.220890 0.544706 0.179265 0.187712 -0.023788 1.046416 1.751049 -0.708788 -0.051747 -0.805489 0.416831 -1.258871 -0.910082 0.212781 0.191398 -0.304148 0.170057 0.104642 0.746952 0.088958 -0.164218 -0.169323 -0.094289 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::fill_n(int*, unsigned long, int const&) = -0.587097 0.012498 0.629151 -0.845704 0.975120 0.438510 0.512328 -0.384132 -1.004396 -0.639137 0.134905 -1.144753 -1.026687 1.608649 -0.523054 0.765014 2.095088 0.613910 -0.332643 -0.455813 1.217971 -0.910124 2.002820 1.840517 -1.457160 -0.067045 0.589796 0.851896 0.387056 0.925361 -0.487506 -0.869275 0.859269 -0.991210 0.355865 -1.154334 0.196864 0.162502 0.319596 -2.196609 0.135372 -0.034848 -0.024127 -0.212005 -0.291672 1.014430 1.468283 1.279604 -0.483020 0.519114 0.962463 -0.037693 0.062943 0.471102 0.372084 0.223920 0.557946 0.307486 -0.810847 -0.210943 -0.364770 -1.413511 0.101754 1.338210 1.858090 0.025419 0.063211 0.548881 -0.178652 0.368739 0.438841 0.377154 0.427994 0.201284 0.939603 -1.627504 -0.081298 -2.812110 -0.599297 -3.599417 -1.010872 -0.728254 0.893347 -0.370647 0.722072 0.039305 1.633332 0.196713 0.066349 0.813335 2.040756 -1.532067 -0.700155 -0.902691 -0.547751 0.495164 -0.994549 0.145367 0.915755 -0.124165 -1.244113 -1.138171 0.832905 0.380232 -0.553326 -0.695670 -0.116896 1.395064 -1.511406 -0.944999 -1.305139 -0.087315 -0.212312 -2.239947 0.337796 -0.608634 1.291587 0.411246 -0.466016 -1.215189 0.412875 1.035220 -0.359350 -0.848824 -0.340210 1.432867 0.548606 0.221311 0.317380 0.134530 0.258101 1.682565 1.439143 -0.717855 -0.244705 0.132470 -1.079491 0.250456 -1.110483 -0.565293 0.962349 -1.378413 0.106515 0.813312 -0.948661 -0.350282 1.288802 -0.075943 0.790723 3.479421 -0.160866 1.156680 0.694434 -1.582086 0.896459 -0.422479 -0.124869 0.495667 1.104542 0.427922 -1.771329 -1.263087 0.760271 1.569020 1.050480 -1.745122 -0.769379 -0.545105 0.277307 -0.192702 0.061855 0.586526 -0.122884 -0.989626 -0.273922 0.808129 2.376691 -1.054620 -1.192999 0.610868 0.220732 -0.420298 -2.004730 -0.522968 -0.701592 0.100564 -0.009665 -0.045952 0.628584 1.871032 -2.972279 1.373878 -0.476103 -0.383006 1.273836 0.150058 -0.893707 -1.943130 0.225713 1.231493 1.448037 0.274123 0.057356 0.278186 -1.465631 -0.133061 0.052675 0.660192 -0.467397 0.798920 0.095903 -1.077727 -1.143370 -0.362754 -0.067748 -0.675328 -0.081947 0.825768 0.394985 -2.869419 1.630699 -0.295342 -0.649592 0.415559 -0.120712 1.026261 -1.527759 -1.844204 0.772741 -0.386376 -0.713236 -0.993594 0.132044 0.899493 -0.002545 -0.149093 -0.629262 -1.722420 1.059433 -0.462442 1.038283 0.586127 0.410737 1.713971 0.300124 -0.803509 -1.340318 -0.229487 0.079654 -0.672859 -0.964868 -0.604132 -0.296108 1.364572 1.744358 0.067325 -0.246107 -0.130397 1.603815 -1.714555 -0.697680 1.262807 1.086131 -0.772381 0.672412 1.326710 -1.512654 -0.721030 -0.783648 -0.433651 -0.237026 -1.270480 0.611823 -0.784054 0.444678 0.472893 0.104599 -0.324302 0.714478 0.342006 0.218673 -0.172136 1.752837 2.370033 -1.239315 -0.037712 -1.308267 0.681607 -2.028241 -1.521196 0.483499 0.401933 -0.636903 0.227732 0.408817 1.065549 0.062138 -0.408694 -0.418703 -0.248845 +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.936505 -0.047886 0.706953 -1.634591 1.592164 1.364634 0.652187 -0.822661 -1.497071 -0.520081 0.088194 -1.360769 -0.945978 2.455365 -0.852203 1.515026 3.160320 0.827751 -0.568918 -0.427005 2.181285 -0.922014 2.877841 2.546317 -2.172866 -0.265046 1.160548 1.166008 0.424704 1.468083 -0.883444 -1.528750 1.081624 -1.870632 0.252768 -1.884311 0.449044 0.376735 1.060325 -3.214507 0.344166 -0.376061 -0.367948 -0.463076 -0.620959 0.342172 2.049477 1.932831 -0.845194 0.482001 1.580448 0.522542 -0.380342 0.635267 0.459566 0.864712 0.535579 0.608162 -0.911491 -0.565842 -0.427424 -1.239776 0.470813 2.054389 2.659957 0.147371 0.233038 1.101474 -0.152197 0.380693 0.620316 0.390277 0.136011 0.350570 1.215737 -2.882132 -0.349560 -4.361137 -0.736524 -4.318598 -1.276608 -0.998225 0.601057 -0.612715 1.451533 0.174295 2.312489 -0.063265 0.202051 1.414746 2.853960 -2.401831 -0.940823 -1.743688 -1.234088 0.672886 -1.362656 0.081519 0.939272 -0.411329 -1.748389 -2.154644 0.956929 1.002888 -0.773961 -1.568972 0.017408 2.040958 -1.885810 -1.852365 -1.463886 0.381820 -0.898760 -3.328186 -0.094081 -1.237589 1.754191 0.292853 -0.572187 -2.511369 0.437937 2.028622 -0.619600 -1.667334 0.271918 1.841334 1.204228 0.251198 0.348855 -0.282700 0.315860 2.962291 2.046128 -1.187652 -0.322707 0.231073 -1.486013 0.085899 -1.853193 -0.769759 1.001880 -2.136204 0.120648 1.877559 -1.355322 -0.292294 2.391930 -0.194841 1.319499 6.453369 -0.243812 1.684802 1.005848 -2.591065 1.203945 -0.525686 -0.279774 0.679064 1.444776 0.540166 -3.376787 -1.907759 1.024516 2.169589 1.643101 -2.353611 -1.409171 -1.042638 0.064098 -0.129124 -0.214866 0.775789 -0.516905 -1.553067 -0.482908 1.329005 3.799641 -1.511312 -1.663520 1.087036 0.918820 -1.053003 -2.782960 -0.937862 -1.828253 0.218200 0.436870 -0.239183 1.230341 2.811190 -4.394141 1.908446 -0.740970 -0.663491 1.615352 0.375746 -1.326929 -2.292151 0.356309 1.906855 2.226383 0.019632 0.537670 0.466748 -2.045239 -0.132631 0.173961 0.910543 -0.677218 1.002551 0.313587 -1.908643 -1.658584 0.127329 -0.415429 -1.381539 -0.115930 1.100096 0.223581 -3.997443 2.513885 -0.263803 -0.672571 1.138877 -0.423588 1.882018 -2.305779 -2.751237 1.501376 0.075277 -0.065209 -0.866243 0.293680 1.741386 0.309230 0.325050 -1.179828 -2.924593 0.940625 -0.444869 1.511113 0.797922 0.587264 2.111107 -0.473239 -0.866715 -2.302621 -0.781525 0.187987 -0.198173 -1.688278 -1.507673 -0.425678 2.282857 2.418081 0.022086 -0.712436 -0.369032 2.354518 -2.573496 -0.438162 1.694373 1.683303 -1.649204 0.156448 1.919425 -2.229350 -1.068720 -0.890960 -0.068068 -0.373269 -1.975072 0.879800 -0.899143 0.863260 0.596913 0.245323 -0.335510 0.986272 0.767462 0.569365 -0.065400 2.378829 2.810775 -1.498335 -0.426729 -1.918783 0.878897 -3.050816 -2.434897 0.775331 0.171260 -1.078057 0.458306 0.475113 1.865590 -0.129024 0.286764 -0.121976 -0.734946 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__size_to_integer(unsigned long) = -0.129887 -0.155984 0.095417 -0.209573 0.153203 -0.007634 0.080209 -0.179855 -0.285061 -0.061713 0.073567 -0.136055 0.009524 0.280725 -0.145102 0.263984 0.352658 0.173481 -0.061795 -0.173069 0.223430 -0.251050 0.363704 0.371962 -0.227880 -0.014989 0.084275 0.197714 0.125019 0.189815 -0.115261 -0.072892 0.136800 -0.278423 0.001720 -0.317044 0.036168 0.216190 0.208073 -0.392957 0.057255 -0.135645 0.102366 0.001633 -0.044714 0.164625 0.094629 0.219061 -0.025094 0.277914 0.232405 0.032939 0.030001 0.086592 0.103753 0.168156 0.220148 -0.033392 -0.075825 -0.004485 -0.064411 -0.197796 0.113022 0.221741 0.339277 -0.029089 0.009103 0.076012 -0.006462 0.061962 0.209102 0.057269 -0.143356 -0.040715 0.086950 -0.492861 0.094572 -0.615078 -0.089513 -0.617839 -0.130346 -0.020102 0.135548 -0.086967 0.179964 0.222439 0.277591 0.018299 -0.078249 0.064780 0.219477 -0.289388 -0.111922 0.006548 -0.123163 0.040290 -0.149138 -0.012035 0.081198 0.135079 -0.162715 -0.205537 0.255709 0.104600 -0.091391 -0.136201 -0.006626 0.219663 -0.364819 -0.276682 -0.118258 0.078160 -0.117635 -0.304453 0.170598 -0.252402 0.352166 0.011937 -0.119359 -0.241280 0.082083 0.188211 -0.058995 -0.117546 -0.085093 0.130773 0.081472 0.050668 -0.026917 -0.058633 -0.065270 0.369884 0.159164 -0.216372 -0.024781 0.100228 -0.185280 0.080426 -0.242210 -0.140497 0.120534 -0.280382 0.076660 0.089762 -0.162122 -0.062434 0.403077 0.072914 0.075678 0.552590 -0.002093 0.227811 0.210750 -0.229614 0.027595 -0.080431 0.138189 0.171395 0.190945 -0.055318 -0.292409 -0.249310 0.077418 0.240676 0.187571 -0.281917 -0.312410 -0.100210 0.063437 0.147451 -0.021603 0.054209 -0.123131 -0.170967 -0.039775 -0.024934 0.454978 -0.093309 0.038059 0.061719 -0.011940 -0.251082 -0.408252 -0.107360 -0.218603 0.066554 -0.068456 0.021329 0.073944 0.298828 -0.643837 0.240727 -0.193983 0.002519 0.178962 0.065514 -0.155793 -0.429987 -0.065673 0.065506 0.296732 -0.035734 0.150255 0.223761 -0.256233 -0.011013 -0.058433 0.088654 -0.137294 0.128358 0.147596 -0.251799 -0.103245 0.104362 0.043160 -0.139027 0.050703 0.175517 0.064829 -0.545753 0.141017 -0.059808 -0.118885 0.210871 0.075899 0.230665 -0.234645 -0.205213 0.159027 0.010947 0.037633 -0.177868 0.039983 0.180520 -0.126860 -0.011385 -0.098049 -0.182941 0.046626 -0.172574 0.127911 0.087719 -0.067646 0.183759 -0.159764 -0.062611 -0.221948 0.144938 -0.136264 -0.176371 -0.068256 -0.014312 -0.024510 0.247039 0.273326 0.130156 -0.037593 0.172293 0.358225 -0.254422 -0.046960 0.180126 0.263393 -0.114791 0.154904 0.190166 -0.342933 -0.060255 -0.055948 -0.075932 0.019198 -0.100243 0.268561 -0.043370 0.159288 -0.054842 0.118967 -0.033003 0.174145 0.089823 0.061060 0.012012 0.362761 0.406955 -0.042236 -0.043256 -0.185616 0.023397 -0.279181 -0.177621 -0.018442 0.180048 -0.226875 0.108397 -0.010733 0.305494 0.082666 0.019525 -0.018826 -0.038822 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__fill_a(int*, int*, int const&) = -0.324475 0.014850 0.508758 -0.743252 0.559418 0.221959 0.231006 -0.209637 -0.672611 -0.343445 -0.064813 -0.397718 -0.359818 0.951322 -0.349237 0.418286 1.439218 0.515460 -0.170476 -0.450791 0.885534 -0.775837 1.198917 1.239139 -1.041592 -0.032384 0.649079 0.766889 0.487255 0.703373 -0.370019 -0.398823 0.351211 -0.685405 0.369799 -1.127923 0.191507 0.222229 0.164797 -1.630276 0.138044 -0.366978 -0.011243 -0.096468 -0.169178 0.687376 0.910790 0.780938 -0.477654 0.305883 0.787115 0.248632 -0.081700 0.251468 0.131998 0.417765 0.547360 0.351958 -0.297035 -0.044078 -0.103305 -0.845376 0.376209 0.887233 1.237548 -0.010916 0.118502 0.358006 0.073528 0.159158 0.324337 0.176052 0.002956 0.063277 0.529234 -1.592754 0.044441 -2.345120 -0.232862 -2.511822 -0.565751 -0.601122 0.422376 -0.534640 0.445924 0.275476 1.012055 0.039731 0.242690 0.588648 1.094562 -0.895793 -0.348267 -0.672117 -0.544843 0.413784 -0.544200 -0.056872 0.516499 0.030972 -0.631415 -0.883340 0.698664 0.307505 -0.404431 -0.506136 -0.077260 0.879843 -1.014132 -0.698692 -0.771003 0.077790 -0.305417 -1.332477 0.354440 -0.784743 1.152037 0.056436 -0.133661 -0.911904 0.096654 0.911002 -0.244368 -0.469950 -0.238673 0.891335 0.406919 -0.032651 0.101892 -0.165569 0.016225 1.010201 1.011937 -0.559701 -0.257082 0.316488 -0.859482 -0.144594 -1.022590 -0.326340 0.828167 -0.870293 0.002593 0.564582 -0.579384 -0.249165 1.407493 -0.177615 0.637637 2.799613 -0.029731 0.597013 0.396089 -0.987566 0.486765 -0.047531 -0.066087 0.512710 0.740781 0.184714 -1.553562 -0.805027 0.161151 0.887747 0.662531 -1.081836 -0.889601 -0.530711 -0.074058 0.173501 -0.094761 0.198337 -0.378297 -0.574678 -0.210296 0.354904 1.602707 -0.446645 -0.575817 0.226909 0.257065 -0.786981 -1.497901 -0.299741 -0.646494 0.118427 -0.091749 -0.127447 0.527915 1.136166 -2.353974 0.848674 -0.443997 -0.210593 0.630485 0.050071 -0.374775 -1.555742 0.225199 0.734569 1.111857 -0.075677 0.198695 0.335939 -0.900066 -0.074587 0.000403 0.491047 -0.404504 0.435105 0.261597 -0.831594 -0.633679 0.034603 -0.063428 -0.435314 0.036612 0.427502 -0.015982 -1.966679 0.991285 -0.357580 -0.296386 0.559764 -0.101204 0.655327 -1.032906 -1.076302 0.523597 0.235923 -0.057861 -0.690498 0.068580 0.885882 -0.218829 0.005123 -0.473683 -1.294178 0.326352 -0.504220 0.459766 0.394797 0.191284 1.089210 -0.145628 -0.255492 -1.129851 0.043961 -0.149541 -0.285615 -0.499167 -0.462290 -0.201950 0.826925 1.231680 0.027466 -0.040144 0.184635 1.211357 -1.101167 -0.421467 0.634135 0.784237 -0.483753 0.390648 0.731136 -1.164790 -0.573899 -0.456692 -0.226744 0.186262 -0.724616 0.584944 -0.524198 0.353617 0.311067 0.169591 -0.208083 0.609561 0.238122 0.223383 -0.076252 1.160307 1.676972 -0.629187 -0.099817 -0.704420 0.317987 -1.305198 -0.804289 0.023554 0.253397 -0.336875 0.329563 0.158011 0.825757 0.024148 0.122202 -0.014484 -0.298042 +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.525767 -0.381944 0.185088 -1.135471 0.704140 0.592395 0.321136 -0.358482 -1.066370 -0.258137 0.035936 -0.663010 -0.041826 1.414021 -0.317760 1.149294 2.079946 0.628979 -0.325991 -0.272609 1.454158 -1.133097 1.524321 1.650344 -1.162995 -0.148413 0.684798 1.045125 0.380242 0.851998 -0.288540 -0.758212 0.385391 -1.401388 0.197822 -1.725728 0.371988 0.732973 0.791864 -2.276176 0.341453 -0.355332 0.204965 -0.327491 -0.470732 0.246447 1.049176 1.111859 -0.696180 0.368666 1.021824 0.230803 -0.251773 0.345207 0.105593 0.764139 0.282413 0.595860 -0.424405 -0.226362 -0.047280 -0.735745 0.799351 1.042361 1.744699 -0.054928 0.190638 0.840545 0.177161 0.190830 0.598750 0.069579 -0.405941 -0.343025 0.638128 -2.557122 -0.200930 -3.503377 -0.228849 -3.050742 -0.661648 -0.384384 0.507227 -0.544265 0.842213 0.147538 1.179923 -0.268517 0.120329 1.106046 1.361047 -1.210604 -0.505626 -1.146151 -0.893706 0.562515 -0.672933 -0.318733 0.971867 -0.024602 -0.838845 -1.271992 0.988862 0.704888 -0.447396 -1.265495 0.128039 1.121330 -1.073591 -1.394802 -0.498064 0.571268 -0.698963 -1.802259 0.526997 -1.332472 0.833977 0.004788 -0.193725 -1.565924 0.036779 1.218089 -0.356909 -0.853590 -0.129337 1.229039 0.524231 0.097685 0.196108 -0.328952 -0.072491 1.743112 1.158668 -0.879647 -0.203924 0.446337 -0.989449 -0.025410 -1.548959 -0.751669 1.004239 -1.363611 -0.231527 0.944050 -0.752721 -0.112829 2.163017 0.073867 0.723964 4.654897 0.138620 0.940452 0.734397 -1.404941 0.990483 -0.052852 -0.008305 0.647749 0.871841 -0.066767 -2.735599 -1.130104 0.197188 1.074996 1.013221 -1.443690 -1.653279 -0.705398 -0.114665 0.427567 -0.325468 0.287246 -0.431131 -0.942796 -0.223735 0.643049 2.626842 -0.540021 -0.224875 0.541963 0.776578 -1.532324 -2.601654 -0.564860 -1.673558 0.103326 -0.186749 -0.197441 0.743004 1.527937 -2.952258 1.090710 -0.636274 -0.088558 0.849969 0.145397 -0.742995 -2.789235 0.007282 0.949668 1.784169 -0.482319 0.647078 0.580015 -1.071072 -0.024989 0.004802 0.301768 -0.386279 0.457683 -0.023936 -1.166231 -0.648133 0.532754 -0.479588 -0.811151 0.126831 0.574341 0.386158 -1.894639 1.266986 -0.399330 -0.315221 1.019403 -0.047728 1.231468 -1.266118 -1.429276 0.893984 0.538581 0.328074 -0.877187 0.236664 1.236940 -0.193228 -0.048571 -0.404617 -2.060752 0.230357 -0.848991 0.656468 0.466176 -0.066922 1.061164 -0.191201 -0.309661 -1.781893 -0.334573 -0.550708 -0.168814 -0.802691 -1.075395 -0.198308 1.279163 1.273045 0.221181 -0.382341 0.215775 1.775294 -1.370673 -0.312281 0.887983 0.637933 -1.022105 0.092289 1.081579 -1.855585 -0.427994 -0.538130 0.078338 0.222441 -1.032094 0.771959 -0.245053 0.587061 0.074947 0.221805 0.018300 0.688178 0.665127 0.357682 -0.119158 1.853898 1.639193 -0.505233 -0.517604 -0.934242 0.172262 -1.737849 -1.160196 0.076031 0.608446 -0.756396 0.529405 0.528178 1.232071 -0.030410 0.523430 0.113293 -0.528647 +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.271332 0.683189 1.145926 -0.791309 1.174321 0.694457 0.458158 0.128299 -0.881568 -0.792385 -0.222905 -1.380996 -1.459712 1.570315 -0.452437 0.057312 2.216549 0.580529 -0.228713 -0.261895 0.629193 -0.555341 1.841428 1.710597 -1.416102 0.173460 0.430580 0.624478 -0.192399 1.675819 -0.837176 -1.642481 0.561396 -0.019432 0.666300 -0.853887 -0.112290 -0.448373 -0.474796 -2.380787 0.092038 0.754982 -0.188049 -0.305029 0.047453 0.878025 2.162583 1.042014 -0.265439 0.144142 0.548324 0.249431 0.150788 0.350788 0.723669 0.245809 0.996264 0.071401 -1.091202 0.039444 -0.486588 -1.308019 -0.384189 1.304419 1.563710 0.159972 -0.100058 -0.143865 -0.379100 0.294598 0.045215 0.389331 0.916132 0.652351 0.759834 -0.430705 0.033713 -1.813969 -0.319192 -3.245113 -1.164019 -1.070560 1.079544 0.365856 0.308635 -0.711728 1.684126 -0.113816 0.520362 0.546041 2.355152 -1.258582 -0.689254 -1.068622 -0.542308 0.419066 -0.741657 -0.117543 0.566475 -0.477994 -1.305951 -0.975789 0.738041 0.137711 -0.526276 0.160888 -0.141446 1.424236 -1.556960 -0.405824 -1.726014 -0.146063 0.185757 -2.158022 -0.158546 -0.119913 0.569175 0.646304 -0.659438 -1.094145 0.694229 1.035903 -0.653251 -0.477742 -0.869127 1.850900 0.297560 -0.010581 0.400419 0.180806 0.573406 1.115965 1.433410 -0.545770 -0.106148 0.128690 -0.867998 -0.181057 -0.773914 -0.363973 0.315989 -1.103673 0.043281 0.705481 -1.013431 -0.070243 -0.321415 -0.377105 0.926829 3.377156 -0.689581 1.010523 0.051149 -1.725893 1.229924 -0.109907 -0.641259 -0.137572 1.090563 0.990621 -1.341323 -1.016505 0.906843 1.654239 0.988337 -1.392806 0.140556 -0.596552 0.024849 -0.280071 0.469780 0.474080 0.052005 -0.987660 -0.429880 0.666587 2.590579 -0.840396 -2.254982 0.476303 0.057441 0.241384 -1.067887 -0.187643 -0.164557 0.108865 0.108095 -0.355304 0.807465 1.836800 -3.116539 1.577521 -0.338746 -0.993731 1.607805 -0.220676 -0.454991 -1.199517 0.201932 1.615108 1.694307 0.670364 -0.393823 -0.331022 -1.329949 -0.237485 0.065370 0.976016 -0.573882 0.828720 0.117332 -1.447409 -1.145514 -1.343868 -0.057450 -0.511361 -0.768124 0.518716 0.435349 -3.165117 1.996788 0.123025 -0.315030 -0.012171 -0.099543 0.441051 -1.414939 -1.992118 0.403124 -0.555931 -1.204165 -0.571493 -0.287498 0.752723 0.150230 0.105439 -0.722966 -1.864196 1.410499 0.012156 1.309772 0.672109 0.662042 1.800789 1.399604 -0.795024 -0.801337 -0.787550 0.853930 -0.804999 -0.713472 -0.029596 -0.647815 1.155634 1.772219 -0.120269 -0.155340 -0.973948 1.426795 -1.134217 -0.498158 1.268549 0.067390 -0.591568 0.458903 1.429406 -1.110449 -0.996189 -1.049166 -0.476499 -0.506253 -1.208546 0.111079 -1.200436 0.070105 0.908078 -0.255187 -0.917763 0.378654 -0.016593 -0.269555 -0.143935 1.601895 1.888535 -1.404428 0.906827 -1.195817 0.986439 -1.978098 -1.381607 0.275680 -0.140151 -0.544772 -0.037584 0.243706 0.577614 -0.213329 -0.258479 -0.427553 -0.133439 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() const = -0.204025 0.506859 0.595250 -0.508978 0.820128 0.832812 0.235480 -0.218893 -0.447005 -0.260056 -0.162057 -0.813828 -0.712568 0.892766 -0.359093 0.204598 1.179806 0.232324 -0.168892 0.014166 0.351268 0.054653 1.096602 0.905273 -0.736474 0.079237 0.268334 0.246843 -0.330140 1.119490 -0.660862 -1.169529 0.337689 0.007473 0.144448 -0.392027 -0.076923 -0.272219 0.006207 -1.196263 0.085324 0.335178 -0.245667 -0.207632 -0.007172 -0.049526 1.273455 0.583717 0.015199 -0.033416 0.266676 0.455631 -0.005139 0.223524 0.499678 0.277716 0.650148 -0.195506 -0.504442 -0.158574 -0.314880 -0.330861 -0.317538 0.784672 0.835344 0.215515 -0.048911 -0.077420 -0.347174 0.106714 -0.061729 0.225510 0.350493 0.599467 0.210524 -0.107017 0.116811 -0.673964 -0.195826 -1.015915 -0.568508 -0.523588 0.166223 0.473809 0.389274 -0.331474 0.951295 -0.113506 0.253716 0.149641 1.367837 -0.862778 -0.322051 -0.517866 -0.381434 0.079500 -0.354937 0.013075 -0.118098 -0.315632 -0.723098 -0.732277 0.300743 0.193126 -0.281195 0.048538 -0.015777 0.711406 -0.790237 -0.305295 -0.755110 -0.016463 -0.111891 -1.232375 -0.448390 -0.099648 0.159043 0.233678 -0.392394 -0.944497 0.433431 0.716869 -0.380139 -0.445545 -0.306881 0.844280 0.325320 -0.047529 0.138317 -0.093826 0.357546 0.910831 0.564920 -0.322093 0.011444 -0.084366 -0.313376 -0.123893 -0.367809 -0.071096 -0.320171 -0.641937 0.115416 0.740770 -0.536871 0.114867 -0.437074 -0.270421 0.498295 2.101443 -0.511491 0.568194 0.021918 -1.159507 0.514394 -0.168952 -0.436686 -0.217292 0.447449 0.641750 -0.817345 -0.597814 0.643687 0.902495 0.556033 -0.607252 0.254242 -0.337461 -0.033078 -0.217532 0.258217 0.247576 -0.082083 -0.596529 -0.302301 0.412968 1.600056 -0.448143 -1.230989 0.447274 0.056817 0.183864 -0.261977 -0.203393 -0.206295 0.082731 0.305208 -0.229413 0.474015 1.048752 -1.567460 0.841665 -0.135843 -0.707196 0.924714 -0.108499 -0.277956 0.012995 0.115534 1.006854 0.855428 0.284786 -0.026950 -0.283011 -0.723758 -0.155177 0.060116 0.534536 -0.369932 0.425258 0.296535 -1.072780 -0.675145 -0.653109 -0.015585 -0.466887 -0.572847 0.300555 0.171816 -1.758012 1.224623 0.295812 -0.062694 0.102645 -0.175148 0.362721 -0.738711 -1.121054 0.344820 -0.309476 -0.305904 0.060018 -0.093446 0.436838 0.246875 0.404808 -0.579383 -0.959045 0.567275 0.245962 0.715730 0.340808 0.507242 0.664713 0.432610 -0.369354 -0.425295 -0.606240 0.657961 -0.187294 -0.480345 0.039606 -0.398305 0.759212 0.947881 -0.063508 -0.287080 -0.679505 0.703186 -0.522066 0.038107 0.675315 0.049619 -0.596841 -0.135586 0.761647 -0.407156 -0.589534 -0.431853 -0.125503 -0.491554 -0.772732 0.002816 -0.556048 0.068890 0.549270 -0.175142 -0.578661 0.173925 0.028541 -0.107684 0.064552 0.769821 0.563952 -0.546311 0.521361 -0.653247 0.491634 -1.124597 -0.868921 0.310353 -0.351925 -0.416922 -0.120211 -0.043120 0.419047 -0.237238 0.215807 -0.057181 -0.209000 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() const = -0.204025 0.506859 0.595250 -0.508978 0.820128 0.832812 0.235480 -0.218893 -0.447005 -0.260056 -0.162057 -0.813828 -0.712568 0.892766 -0.359093 0.204598 1.179806 0.232324 -0.168892 0.014166 0.351268 0.054653 1.096602 0.905273 -0.736474 0.079237 0.268334 0.246843 -0.330140 1.119490 -0.660862 -1.169529 0.337689 0.007473 0.144448 -0.392027 -0.076923 -0.272219 0.006207 -1.196263 0.085324 0.335178 -0.245667 -0.207632 -0.007172 -0.049526 1.273455 0.583717 0.015199 -0.033416 0.266676 0.455631 -0.005139 0.223524 0.499678 0.277716 0.650148 -0.195506 -0.504442 -0.158574 -0.314880 -0.330861 -0.317538 0.784672 0.835344 0.215515 -0.048911 -0.077420 -0.347174 0.106714 -0.061729 0.225510 0.350493 0.599467 0.210524 -0.107017 0.116811 -0.673964 -0.195826 -1.015915 -0.568508 -0.523588 0.166223 0.473809 0.389274 -0.331474 0.951295 -0.113506 0.253716 0.149641 1.367837 -0.862778 -0.322051 -0.517866 -0.381434 0.079500 -0.354937 0.013075 -0.118098 -0.315632 -0.723098 -0.732277 0.300743 0.193126 -0.281195 0.048538 -0.015777 0.711406 -0.790237 -0.305295 -0.755110 -0.016463 -0.111891 -1.232375 -0.448390 -0.099648 0.159043 0.233678 -0.392394 -0.944497 0.433431 0.716869 -0.380139 -0.445545 -0.306881 0.844280 0.325320 -0.047529 0.138317 -0.093826 0.357546 0.910831 0.564920 -0.322093 0.011444 -0.084366 -0.313376 -0.123893 -0.367809 -0.071096 -0.320171 -0.641937 0.115416 0.740770 -0.536871 0.114867 -0.437074 -0.270421 0.498295 2.101443 -0.511491 0.568194 0.021918 -1.159507 0.514394 -0.168952 -0.436686 -0.217292 0.447449 0.641750 -0.817345 -0.597814 0.643687 0.902495 0.556033 -0.607252 0.254242 -0.337461 -0.033078 -0.217532 0.258217 0.247576 -0.082083 -0.596529 -0.302301 0.412968 1.600056 -0.448143 -1.230989 0.447274 0.056817 0.183864 -0.261977 -0.203393 -0.206295 0.082731 0.305208 -0.229413 0.474015 1.048752 -1.567460 0.841665 -0.135843 -0.707196 0.924714 -0.108499 -0.277956 0.012995 0.115534 1.006854 0.855428 0.284786 -0.026950 -0.283011 -0.723758 -0.155177 0.060116 0.534536 -0.369932 0.425258 0.296535 -1.072780 -0.675145 -0.653109 -0.015585 -0.466887 -0.572847 0.300555 0.171816 -1.758012 1.224623 0.295812 -0.062694 0.102645 -0.175148 0.362721 -0.738711 -1.121054 0.344820 -0.309476 -0.305904 0.060018 -0.093446 0.436838 0.246875 0.404808 -0.579383 -0.959045 0.567275 0.245962 0.715730 0.340808 0.507242 0.664713 0.432610 -0.369354 -0.425295 -0.606240 0.657961 -0.187294 -0.480345 0.039606 -0.398305 0.759212 0.947881 -0.063508 -0.287080 -0.679505 0.703186 -0.522066 0.038107 0.675315 0.049619 -0.596841 -0.135586 0.761647 -0.407156 -0.589534 -0.431853 -0.125503 -0.491554 -0.772732 0.002816 -0.556048 0.068890 0.549270 -0.175142 -0.578661 0.173925 0.028541 -0.107684 0.064552 0.769821 0.563952 -0.546311 0.521361 -0.653247 0.491634 -1.124597 -0.868921 0.310353 -0.351925 -0.416922 -0.120211 -0.043120 0.419047 -0.237238 0.215807 -0.057181 -0.209000 +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.284631 0.655877 1.200463 -0.846013 1.214542 0.661255 0.485521 0.137560 -0.965771 -0.793776 -0.223003 -1.409040 -1.442528 1.649232 -0.449593 0.093282 2.320174 0.640950 -0.259556 -0.267523 0.676178 -0.661623 1.872696 1.755033 -1.411891 0.180875 0.420582 0.627351 -0.221651 1.771222 -0.933839 -1.651947 0.568811 -0.076236 0.686546 -0.923790 -0.131050 -0.419657 -0.459843 -2.451724 0.131289 0.765707 -0.145048 -0.342345 0.029710 0.928395 2.200297 1.064095 -0.252370 0.144530 0.540295 0.202779 0.144012 0.371301 0.817615 0.344859 1.078297 0.157513 -1.149794 0.052683 -0.535534 -1.337359 -0.346870 1.318813 1.582705 0.167668 -0.105665 -0.147510 -0.374288 0.298664 0.081085 0.362867 0.915649 0.598246 0.761715 -0.519040 0.056301 -1.897149 -0.342164 -3.389828 -1.185951 -1.057253 1.117094 0.291948 0.329177 -0.726563 1.707869 -0.169254 0.517332 0.516058 2.413717 -1.311027 -0.728990 -1.097275 -0.569676 0.392411 -0.735679 -0.185289 0.671821 -0.526614 -1.352063 -0.983863 0.816301 0.175978 -0.514668 0.180025 -0.110920 1.499245 -1.595978 -0.456850 -1.756996 -0.135305 0.174574 -2.187436 -0.077899 -0.144018 0.578076 0.666027 -0.734838 -1.162160 0.752883 1.093926 -0.711089 -0.493780 -0.872535 1.940845 0.252866 0.012241 0.399063 0.147605 0.553425 1.126842 1.520924 -0.593633 -0.065165 0.136104 -0.932186 -0.182034 -0.798412 -0.439608 0.331583 -1.145898 0.005157 0.695537 -1.060821 -0.010222 -0.229791 -0.315541 0.941443 3.474022 -0.738914 1.059274 0.027622 -1.773557 1.321184 -0.071410 -0.631410 -0.169369 1.145610 0.983795 -1.439429 -1.063507 0.942918 1.691069 1.044294 -1.472876 0.077295 -0.666940 0.018149 -0.205582 0.453577 0.472553 0.061660 -1.041958 -0.457357 0.618205 2.731247 -0.887084 -2.350935 0.496105 -0.010690 0.219008 -1.188038 -0.209517 -0.209223 0.137808 0.021434 -0.398214 0.849995 1.903676 -3.258535 1.658277 -0.447777 -1.067233 1.718631 -0.225745 -0.455870 -1.336894 0.127252 1.649147 1.809992 0.707275 -0.445453 -0.310814 -1.352556 -0.250424 0.022734 1.007008 -0.579204 0.832816 0.114028 -1.515954 -1.139502 -1.380403 -0.050046 -0.540195 -0.751659 0.527412 0.438147 -3.258513 2.046339 0.162370 -0.280063 0.024740 -0.022474 0.411131 -1.419683 -2.051521 0.410801 -0.529314 -1.195999 -0.609589 -0.289496 0.791731 0.120626 0.062664 -0.719471 -1.960459 1.445344 -0.029094 1.393733 0.676735 0.646294 1.863606 1.524893 -0.801637 -0.831709 -0.767249 0.795200 -0.864329 -0.714938 -0.063912 -0.667142 1.214332 1.775390 -0.081329 -0.114821 -1.005727 1.499438 -1.170532 -0.484047 1.339435 0.035712 -0.612669 0.460990 1.510682 -1.173690 -1.032501 -1.053305 -0.537285 -0.534977 -1.202438 0.110704 -1.202139 0.075273 0.876606 -0.242560 -0.920969 0.357025 -0.007157 -0.277314 -0.144372 1.668953 1.983742 -1.444701 0.911109 -1.199770 1.016827 -2.010104 -1.399797 0.269458 -0.072614 -0.623146 -0.020874 0.306601 0.611977 -0.239369 -0.271031 -0.414546 -0.150900 +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.301581 0.799030 1.171104 -0.862832 1.263134 0.867248 0.448466 0.055294 -0.846176 -0.837196 -0.223944 -1.496884 -1.568369 1.614586 -0.542907 -0.025528 2.222698 0.486495 -0.248135 -0.202780 0.618521 -0.300468 1.900289 1.699857 -1.452714 0.133606 0.454613 0.592852 -0.266554 1.701824 -0.791942 -1.870034 0.567086 0.148087 0.620875 -0.732739 -0.104141 -0.558760 -0.505896 -2.313991 0.095793 0.787427 -0.344022 -0.329937 0.046390 0.756922 2.288437 1.069893 -0.258710 0.011857 0.582230 0.459413 0.057330 0.351891 0.717650 0.100824 0.964027 -0.046614 -1.070184 -0.052274 -0.517906 -1.143804 -0.516449 1.396633 1.579368 0.240870 -0.084973 -0.181994 -0.446200 0.328184 -0.033540 0.397395 1.008852 0.830218 0.721544 -0.216120 -0.023999 -1.737829 -0.310151 -3.092206 -1.146089 -1.073672 1.001522 0.527304 0.255915 -0.781252 1.713219 -0.056991 0.521964 0.647878 2.490399 -1.219218 -0.682406 -1.110501 -0.629456 0.407851 -0.747024 -0.005429 0.359961 -0.448773 -1.350405 -1.003723 0.537623 0.102049 -0.515685 0.170350 -0.121878 1.405240 -1.555849 -0.248371 -1.678026 -0.082355 0.264449 -2.274978 -0.447576 -0.115354 0.553608 0.589699 -0.684415 -1.099552 0.714789 1.044348 -0.694924 -0.447872 -0.870370 1.814477 0.369303 0.017511 0.362497 0.158183 0.667348 1.151977 1.324973 -0.544487 -0.086946 -0.006973 -0.768766 -0.209246 -0.740978 -0.247203 0.206005 -1.067384 0.169435 0.838228 -1.011644 -0.179649 -0.597646 -0.512110 0.964469 3.527420 -0.779309 1.047490 0.031326 -1.827654 1.112397 -0.163653 -0.731757 -0.243474 1.030971 1.096049 -1.207626 -1.034846 1.056494 1.690455 1.002542 -1.335340 0.384451 -0.523931 -0.023455 -0.427817 0.501995 0.491071 -0.009851 -0.999935 -0.488032 0.819680 2.584436 -0.782585 -2.372686 0.542173 0.211036 0.420123 -0.749892 -0.181057 -0.044496 0.147882 0.362582 -0.372314 0.883550 1.899828 -3.167822 1.569356 -0.153058 -0.992536 1.547462 -0.207007 -0.502098 -0.917051 0.266163 1.756581 1.635216 0.691982 -0.357072 -0.437732 -1.338029 -0.249590 0.132457 1.010418 -0.586899 0.806417 0.188049 -1.523113 -1.251034 -1.420844 -0.103543 -0.468740 -0.903693 0.521698 0.375882 -3.293907 2.163817 0.186276 -0.257615 -0.165870 -0.243274 0.512834 -1.449277 -2.068316 0.410284 -0.676370 -1.255927 -0.447762 -0.271213 0.741827 0.246192 0.353466 -0.804179 -1.862103 1.448906 0.142128 1.368519 0.653667 0.798862 1.785789 1.262567 -0.747398 -0.805085 -0.968653 1.156249 -0.683862 -0.830782 0.130575 -0.649082 1.166178 1.753952 -0.241117 -0.319614 -1.062192 1.354720 -1.072435 -0.431197 1.252425 0.051007 -0.715600 0.391523 1.427683 -1.015870 -1.031081 -1.100191 -0.415058 -0.663943 -1.343325 0.012218 -1.161334 0.067191 0.990442 -0.272337 -1.009766 0.348448 -0.010114 -0.274477 -0.052046 1.531493 1.800888 -1.397067 0.981917 -1.275790 1.032178 -2.063661 -1.558440 0.404776 -0.394939 -0.484969 -0.115499 0.064144 0.585668 -0.282487 -0.122434 -0.419578 -0.054484 +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.553628 1.301072 1.995227 -1.578832 1.934730 1.405329 0.636970 -0.101788 -1.274491 -1.263186 -0.331137 -2.440939 -2.459642 2.507921 -0.989174 -0.237691 3.359704 0.639527 -0.524251 -0.280921 1.025671 -0.197790 2.898283 2.596194 -2.295688 0.097661 0.728135 1.071837 -0.249129 2.585361 -1.167854 -2.800969 0.711716 0.534177 1.025106 -1.029203 -0.091054 -0.925916 -0.870658 -3.419139 0.191799 1.191106 -0.522324 -0.541016 0.091654 1.165577 3.558571 1.690834 -0.454638 -0.376706 1.033975 0.943307 -0.004332 0.520103 1.067791 -0.121416 1.730427 -0.038295 -1.489725 -0.247834 -0.794524 -1.500297 -0.775696 2.322325 2.498113 0.547439 -0.070379 -0.387222 -0.530385 0.563689 -0.123759 0.599704 1.543347 1.511213 1.004818 -0.157719 0.190787 -2.686693 -0.343424 -4.447211 -1.656571 -1.585282 1.389978 0.907447 0.227831 -1.283786 2.625408 0.066521 0.761780 1.051171 3.895738 -1.689743 -0.972690 -1.755362 -1.238383 0.664959 -1.118712 0.160190 0.352734 -0.463886 -2.062449 -1.429162 0.524252 0.097220 -0.791181 0.518231 -0.136988 2.103332 -2.212389 -0.074819 -2.308220 -0.026002 0.556945 -3.633282 -0.922242 -0.484513 0.820464 0.625952 -1.029653 -1.577786 1.021722 1.554888 -1.125942 -0.466587 -1.720895 2.798181 0.668829 0.004621 0.375665 0.114594 1.056798 1.532145 1.724300 -0.933793 -0.119752 -0.193708 -1.225929 -0.412166 -1.246622 -0.196230 0.475199 -1.497485 0.227347 1.365282 -1.504997 -0.377301 -1.101760 -0.911400 1.531690 5.750631 -1.266290 1.643133 0.060570 -2.818179 1.665781 -0.083032 -1.180148 -0.400598 1.446441 1.748568 -1.862760 -1.673605 1.759172 2.599188 1.551364 -1.940838 0.841414 -0.690161 -0.229540 -0.824625 0.771949 0.696286 -0.286246 -1.506531 -0.865999 1.429578 3.764605 -0.999805 -3.847019 0.864421 0.460691 0.712631 -0.826724 -0.267616 0.157630 0.309118 0.628267 -0.578206 1.566388 2.983182 -5.038188 2.404118 0.144133 -1.466984 2.459909 -0.493183 -0.846019 -1.260009 0.530574 2.830724 2.375562 0.958653 -0.718062 -0.715294 -2.073142 -0.388844 0.257225 1.571982 -0.954799 1.158915 0.416736 -2.279759 -2.034598 -2.343654 -0.240802 -0.593185 -1.563579 0.824033 0.281254 -5.026865 3.521037 0.313155 -0.244493 -0.479433 -0.669089 0.645651 -2.276851 -3.151971 0.531700 -1.048336 -1.884575 -0.777337 -0.312528 1.183484 0.343534 0.854013 -1.478215 -2.835586 2.175236 0.087308 2.114908 0.945421 1.396396 2.555814 2.075439 -0.905913 -1.357462 -1.473718 1.958191 -0.731196 -1.501195 0.395285 -0.950272 1.735201 2.621296 -0.647146 -0.547780 -1.587889 2.004527 -1.411316 -0.768703 1.781270 -0.206745 -1.295503 0.516306 2.078282 -1.451972 -1.635572 -1.792239 -0.775942 -1.146801 -2.229150 0.016684 -1.583281 0.138237 1.568111 -0.439969 -1.621126 0.551450 0.052952 -0.443043 0.166750 2.315051 2.692608 -1.972290 1.551509 -2.072151 1.636945 -3.269387 -2.501220 0.788874 -1.014437 -0.632689 -0.227645 -0.081930 1.004726 -0.488119 0.039651 -0.558071 0.089565 +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.508107 0.995087 1.573987 -1.229024 1.323368 0.452404 0.501119 0.066929 -0.983281 -1.454242 -0.238705 -1.995205 -2.267071 1.980560 -0.828637 -0.493072 2.660133 0.581597 -0.321938 -0.505367 0.823047 -0.440623 2.350908 2.189068 -2.003691 0.024868 0.597970 1.152195 0.217960 1.699526 -0.320861 -1.991402 0.618116 0.687034 1.103558 -0.925225 0.073453 -0.608809 -1.151165 -2.833336 0.101178 0.930064 -0.119503 -0.314519 0.091253 1.628882 2.754374 1.457008 -0.615929 -0.224165 1.055273 0.761653 0.091430 0.462676 0.510494 -0.671863 1.137986 -0.333144 -1.170856 -0.107681 -0.531829 -1.761027 -0.588611 1.949261 2.220758 0.353118 0.031827 -0.288868 -0.370529 0.678872 -0.022574 0.522826 1.408896 1.073238 0.977559 -0.171761 0.074408 -2.673947 -0.272839 -4.686535 -1.370440 -1.407696 1.587593 0.793960 -0.208766 -0.831734 2.165010 0.458305 0.633716 1.221141 3.111222 -1.028380 -0.782564 -1.390052 -0.962778 0.883465 -1.052209 0.287924 0.427895 0.156282 -1.617895 -0.902931 0.328924 -0.248501 -0.706921 0.407852 -0.244331 1.664230 -2.092817 0.298346 -2.001896 -0.112943 0.836896 -3.008176 -0.339412 -0.550592 1.063447 0.450165 -0.631004 -0.640762 0.651382 0.912568 -0.755786 0.018010 -2.065814 2.204875 0.375090 -0.024924 0.318020 0.333577 0.769253 0.914522 1.301924 -0.771899 -0.313760 -0.069161 -1.094703 -0.325029 -1.188928 -0.146209 1.124163 -1.205378 0.312067 0.700655 -1.199912 -0.953618 -0.874901 -0.970656 1.329054 4.025518 -0.775712 1.269964 0.269702 -2.029137 1.131960 -0.089386 -0.858158 -0.002567 1.305807 1.315520 -0.810585 -1.405830 1.259124 2.110361 1.239907 -1.444245 0.550485 -0.386927 -0.102807 -0.750633 0.633112 0.594786 -0.370811 -1.115259 -0.644433 1.245062 2.439401 -0.522469 -2.564716 0.524492 0.625327 0.496867 -0.748228 -0.114853 0.450910 0.208727 0.384884 -0.340361 1.155911 2.412459 -4.250052 1.917865 0.435508 -0.618430 1.529410 -0.469082 -0.736416 -1.844248 0.643497 2.225459 1.815172 0.604700 -0.473265 -0.460051 -1.775023 -0.303861 0.254108 1.298260 -0.787216 0.939411 0.199197 -1.420419 -1.746108 -1.829723 -0.197330 -0.130727 -1.064022 0.733856 0.475423 -4.059171 2.780653 -0.287978 -0.386902 -0.681937 -0.585808 0.559101 -2.002969 -2.452117 0.275063 -1.036231 -2.040924 -1.125384 -0.159022 0.989177 -0.122968 0.375987 -0.940087 -1.965198 1.959022 -0.218348 1.464794 0.776531 1.145867 2.330181 1.665439 -0.741961 -1.134704 -0.821721 1.373202 -0.941600 -1.153242 0.739123 -0.610590 1.181225 2.343705 -0.620827 -0.438996 -0.601959 1.706811 -1.091329 -1.191490 1.409207 -0.141820 -0.750000 1.127151 1.602341 -1.414336 -1.355648 -1.747014 -0.583885 -0.575899 -1.877584 0.186206 -1.352197 0.100159 1.353613 -0.296240 -1.339423 0.729795 0.103031 -0.356370 0.042570 2.023003 2.600836 -1.668769 1.261436 -1.731691 1.176250 -2.744958 -1.936899 0.493836 -0.591567 -0.146306 -0.050888 -0.259674 0.803872 -0.252104 -0.126654 -0.692230 0.315048 +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.072339 0.218609 0.321745 -0.221481 0.420616 0.246409 0.153162 0.033407 -0.315080 -0.261633 -0.080546 -0.463913 -0.430197 0.512630 -0.160085 0.085618 0.709940 0.216509 -0.035578 -0.057859 0.117638 -0.152081 0.603734 0.532840 -0.399534 0.081580 0.061860 0.138068 -0.204408 0.650327 -0.292062 -0.681788 0.210254 0.020685 0.145153 -0.270833 -0.056777 -0.090570 -0.120259 -0.762684 0.046167 0.304582 -0.004805 -0.101549 0.023170 0.125863 0.682153 0.314552 0.015603 0.141203 0.121996 0.156180 0.063183 0.132237 0.289767 0.157821 0.305637 -0.203661 -0.399098 0.033376 -0.177757 -0.389395 -0.189872 0.381066 0.464126 0.044085 -0.037970 -0.093580 -0.233728 0.095602 0.045522 0.103785 0.229297 0.200791 0.161416 -0.035623 0.005625 -0.415444 -0.120841 -0.941589 -0.369476 -0.321299 0.345976 0.324944 0.131131 -0.189485 0.530304 -0.086882 0.164910 0.105243 0.743011 -0.430779 -0.241310 -0.272113 -0.129785 0.096137 -0.219918 -0.093549 0.057243 -0.135302 -0.411812 -0.324402 0.275709 0.056597 -0.145877 0.054442 -0.035444 0.435199 -0.602376 -0.176791 -0.552314 -0.013086 0.030392 -0.633412 -0.064060 0.030743 0.082185 0.247479 -0.247098 -0.388361 0.279885 0.326744 -0.217830 -0.158558 -0.307165 0.521254 0.031974 -0.008772 0.137839 0.042766 0.171265 0.441727 0.381598 -0.180351 -0.001368 0.056452 -0.176411 -0.046573 -0.186811 -0.145747 -0.124334 -0.398853 0.086987 0.225421 -0.338508 0.001123 -0.330213 -0.102419 0.281780 0.890629 -0.257519 0.321699 0.006979 -0.581938 0.328443 -0.092810 -0.190620 -0.112686 0.337231 0.300774 -0.237474 -0.314233 0.293972 0.510872 0.324105 -0.325898 0.074168 -0.207367 0.050844 -0.014492 0.168494 0.159642 0.025389 -0.345139 -0.135696 0.126748 0.889065 -0.211750 -0.591003 0.178103 0.000543 0.093123 -0.224430 -0.062473 -0.093610 0.044202 0.060210 -0.128354 0.198015 0.579186 -0.936755 0.524814 -0.158923 -0.331123 0.466637 -0.064877 -0.116330 -0.274850 -0.009904 0.499061 0.587390 0.202923 0.005690 -0.105707 -0.399717 -0.088998 -0.010344 0.318664 -0.190356 0.249218 0.082076 -0.565584 -0.333298 -0.399986 0.011232 -0.197335 -0.275135 0.151916 0.293231 -1.017292 0.605968 0.088566 -0.093042 0.036374 0.060298 0.176398 -0.416990 -0.610165 0.135409 -0.218937 -0.365744 -0.048558 -0.107279 0.213195 0.028063 0.040036 -0.158560 -0.482201 0.423383 0.109900 0.400315 0.209865 0.179985 0.486782 0.396121 -0.268575 -0.129216 -0.278506 0.274972 -0.370161 -0.133235 0.142202 -0.228284 0.387505 0.559643 0.063090 -0.121711 -0.303535 0.461103 -0.262214 -0.053472 0.443257 -0.051700 -0.168152 0.114146 0.488877 -0.344654 -0.313542 -0.299913 -0.042649 -0.177392 -0.341399 0.018710 -0.389123 0.020431 0.276841 -0.074305 -0.358022 0.098552 -0.015769 -0.126437 -0.059192 0.524213 0.392691 -0.367150 0.383827 -0.334822 0.248069 -0.593141 -0.404688 0.036584 -0.000779 -0.253765 -0.006714 0.006100 0.175926 -0.091565 0.014224 -0.126271 -0.076539 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_wrap(int* const&, int*) = -0.094004 0.019219 0.230993 -0.225112 0.187042 -0.030752 0.085428 -0.093290 -0.252681 -0.122523 -0.046565 -0.124925 -0.094709 0.319760 -0.118501 0.192414 0.502530 0.239633 -0.038493 -0.218610 0.268158 -0.426262 0.432342 0.459415 -0.369990 0.034875 0.228867 0.286762 0.191823 0.338604 -0.233154 -0.057474 0.126169 -0.274716 0.177918 -0.444607 0.047246 0.115670 0.056593 -0.621531 0.040546 -0.138967 0.153557 -0.010648 -0.043617 0.287061 0.307364 0.264572 -0.109584 0.190091 0.261261 0.026773 0.061662 0.103396 0.112779 0.246852 0.360646 0.052262 -0.134540 0.045806 -0.037519 -0.415352 0.163016 0.303221 0.438937 -0.028649 0.034712 0.101136 0.004142 0.036669 0.142589 0.078950 -0.083405 0.017798 0.154701 -0.644639 0.168900 -0.779599 -0.105484 -0.950734 -0.224235 -0.250069 0.136642 -0.170907 0.214451 0.210247 0.384848 0.010318 0.109316 0.033402 0.362031 -0.385720 -0.129788 -0.150762 -0.141072 0.128338 -0.193763 -0.075030 0.194914 0.030762 -0.204689 -0.301452 0.407911 0.130580 -0.161329 -0.082359 -0.053898 0.307065 -0.446607 -0.331187 -0.336288 -0.085632 -0.163594 -0.420870 0.321795 -0.258513 0.419796 0.049303 -0.045832 -0.368465 0.058379 0.349028 -0.068463 -0.174062 -0.222270 0.316947 0.094680 -0.049694 0.044056 -0.072181 -0.024412 0.357065 0.381243 -0.209965 -0.104629 0.171709 -0.365863 -0.061602 -0.342645 -0.174113 0.262581 -0.349164 -0.045952 0.137273 -0.218569 -0.002949 0.525284 -0.026281 0.226708 0.785391 -0.013372 0.185301 0.124011 -0.341305 0.195407 -0.011175 -0.000115 0.199684 0.292826 0.058845 -0.512820 -0.296735 0.006983 0.318142 0.226080 -0.344711 -0.409065 -0.239731 0.004376 0.171450 -0.025376 0.059458 -0.148025 -0.212432 -0.066191 -0.015831 0.594363 -0.164054 -0.114908 0.060596 -0.085086 -0.346777 -0.633221 -0.106649 -0.265682 0.040668 -0.227608 -0.040820 0.129107 0.389632 -0.852524 0.348853 -0.277628 -0.134836 0.304871 -0.049532 -0.079772 -0.629323 0.058994 0.217252 0.411446 -0.041817 0.072536 0.153074 -0.337350 -0.038135 -0.075236 0.205007 -0.183565 0.176354 0.134165 -0.342014 -0.203292 0.014296 0.068804 -0.196446 0.049255 0.153905 0.064642 -0.706442 0.303600 -0.134490 -0.129007 0.287046 0.057879 0.140413 -0.368228 -0.332601 0.155942 0.097753 0.026009 -0.261081 0.000426 0.304311 -0.182946 -0.141232 -0.150793 -0.364421 0.067760 -0.219567 0.110135 0.159668 0.045596 0.345872 0.056895 -0.109158 -0.327838 0.201510 -0.248805 -0.238879 -0.077018 -0.127425 -0.094124 0.304681 0.510783 0.091867 0.101830 0.155542 0.455077 -0.362521 -0.187118 0.244811 0.236619 -0.112639 0.160108 0.258484 -0.418829 -0.233077 -0.140303 -0.137935 0.129883 -0.190660 0.258740 -0.250108 0.106671 0.118972 0.045783 -0.097718 0.255335 0.046769 0.056021 -0.063588 0.450504 0.573211 -0.193256 0.004564 -0.211116 0.067630 -0.436274 -0.177557 -0.066334 0.242864 -0.179586 0.138090 0.104633 0.295406 0.036230 0.005971 0.008597 -0.171667 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a1(int const*, int const*, int*) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = -0.137060 0.148464 0.333366 -0.351791 0.268496 0.032212 0.080067 -0.134507 -0.259562 -0.257171 -0.052899 -0.317677 -0.287384 0.407279 -0.234498 0.021683 0.560817 0.176418 -0.069152 -0.206488 0.250155 -0.213591 0.522447 0.509745 -0.461371 -0.001623 0.224164 0.337267 0.175052 0.390542 -0.121180 -0.288400 0.107345 0.013421 0.217604 -0.354626 0.062301 0.019160 -0.098320 -0.636593 0.053595 -0.034245 0.089420 -0.033941 -0.014479 0.303666 0.480613 0.328115 -0.136104 0.035775 0.341745 0.264862 0.000964 0.113426 0.098104 -0.000565 0.391348 -0.132112 -0.137127 -0.026485 -0.069947 -0.345569 0.025310 0.451069 0.522937 0.062920 0.051321 0.000000 -0.036551 0.122154 0.079894 0.098754 0.049842 0.203910 0.130288 -0.377235 0.162431 -0.787575 -0.059450 -1.019331 -0.239938 -0.279909 0.193857 0.079746 0.058434 0.112907 0.464923 0.117329 0.124557 0.185871 0.552089 -0.278181 -0.133477 -0.205954 -0.274388 0.186633 -0.216074 0.042850 -0.000906 0.172071 -0.273838 -0.264737 0.196321 0.023999 -0.174596 0.028730 -0.045784 0.316889 -0.528107 -0.074788 -0.319358 -0.003491 0.026260 -0.598821 0.080220 -0.319128 0.421190 -0.025049 -0.078295 -0.260518 0.078970 0.294717 -0.132437 -0.020758 -0.486544 0.344080 0.123010 -0.037039 -0.006420 -0.068132 0.070071 0.297015 0.227789 -0.251930 -0.101697 0.049540 -0.296278 -0.109132 -0.361194 -0.056352 0.267721 -0.316140 0.082191 0.187224 -0.242479 -0.204871 0.134358 -0.201362 0.295112 0.926635 -0.108439 0.251148 0.129489 -0.434544 0.103197 -0.015782 -0.096935 0.121158 0.271680 0.182047 -0.265108 -0.355512 0.166735 0.404043 0.269703 -0.262687 -0.133388 -0.139927 -0.064504 0.016041 0.047009 0.069119 -0.253056 -0.236937 -0.146820 0.148301 0.548035 -0.022728 -0.253643 0.098097 0.103061 -0.161355 -0.291173 -0.069617 -0.058026 0.089541 -0.020285 -0.061002 0.240923 0.505773 -1.058758 0.401629 -0.011450 -0.080615 0.255810 -0.102166 -0.139579 -0.513662 0.139479 0.394048 0.401439 -0.038544 0.070852 0.051866 -0.392809 -0.061189 -0.006635 0.270859 -0.233901 0.169746 0.199390 -0.386902 -0.337946 -0.152994 0.011860 -0.080375 -0.124401 0.176928 0.046266 -0.903142 0.522945 -0.130087 -0.075940 0.048328 -0.103290 0.167893 -0.452813 -0.425093 0.107649 -0.066449 -0.161289 -0.244344 0.016679 0.314234 -0.175969 0.083274 -0.231103 -0.339069 0.188797 -0.160304 0.181008 0.161381 0.194807 0.374562 0.074379 -0.047350 -0.328148 0.064868 0.058229 -0.190818 -0.195329 0.172249 -0.103170 0.286802 0.554383 -0.063542 -0.059716 0.138846 0.436381 -0.233307 -0.234116 0.242893 0.088392 -0.204814 0.219714 0.277994 -0.378532 -0.297920 -0.295476 -0.109613 0.000000 -0.354506 0.198253 -0.224445 0.097598 0.234991 0.016101 -0.252688 0.270212 0.059354 0.001487 0.043850 0.465740 0.553689 -0.190496 0.165442 -0.329897 0.124173 -0.580675 -0.348293 0.030463 -0.022299 -0.091051 0.072806 -0.124494 0.320160 -0.021601 0.145239 -0.026554 -0.015208 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a2(int const*, int const*, int*) = -0.449509 0.049402 0.452496 -1.067446 0.848479 0.312131 0.329773 -0.414432 -0.844442 -0.422050 0.053123 -0.854037 -0.535591 1.178258 -0.485025 0.638435 1.771441 0.406164 -0.302685 -0.507652 1.107846 -0.576300 1.634502 1.517581 -1.327312 -0.066492 0.669219 0.823938 0.489292 0.544021 -0.415500 -0.577520 0.478439 -0.910414 0.295408 -0.996665 0.227189 0.090635 0.449951 -1.838321 0.201218 -0.434559 -0.017189 -0.177271 -0.324185 0.686269 1.227935 1.063550 -0.572757 0.241802 1.105928 0.308697 -0.141275 0.336485 0.126926 0.300999 0.532668 0.323180 -0.402368 -0.310333 -0.142747 -0.758045 0.358514 1.209945 1.471258 0.084124 0.050326 0.624413 0.199032 0.207563 0.385279 0.291629 0.044776 0.241493 0.682044 -1.811323 0.026478 -2.740729 -0.350241 -2.945146 -0.799594 -0.620813 0.514538 -0.581025 0.622514 0.369766 1.343522 0.093094 0.237375 0.812717 1.464004 -1.169213 -0.501246 -0.858174 -0.731156 0.475566 -0.666960 0.116567 0.611778 0.136299 -0.940415 -0.920609 0.633792 0.380025 -0.507075 -0.717932 0.066754 0.924325 -1.096134 -0.781695 -0.861566 0.253429 -0.241704 -1.850255 0.174951 -0.795116 1.359358 -0.001032 -0.258270 -1.199356 0.090985 0.976363 -0.416399 -0.567835 -0.313383 0.965278 0.696965 0.157187 0.213900 -0.091751 0.253843 1.502083 1.051345 -0.750665 -0.296137 0.165978 -0.911500 -0.051105 -1.054889 -0.416085 0.903737 -1.142997 0.284210 0.839870 -0.744804 -0.396792 1.525866 -0.192401 0.725036 3.395528 -0.099748 0.968788 0.615941 -1.266026 0.485587 -0.329005 -0.155077 0.476792 0.820525 0.298349 -1.622735 -1.088108 0.498189 1.200178 0.873103 -1.340754 -0.761326 -0.406893 -0.048526 0.031234 -0.153207 0.329915 -0.319379 -0.756205 -0.278686 0.768494 2.003746 -0.539174 -0.694426 0.459184 0.523878 -0.596722 -1.528347 -0.475438 -0.847111 0.169481 0.163006 0.005644 0.736669 1.553684 -2.778469 1.001743 -0.323146 -0.184038 0.805390 0.207375 -0.726928 -1.663606 0.250597 1.002345 1.215373 -0.151966 0.238022 0.305844 -1.099795 -0.101824 0.110868 0.511687 -0.484304 0.539689 0.274656 -0.966043 -0.822314 0.032055 -0.179017 -0.384291 0.009782 0.636631 -0.039601 -2.427578 1.386699 -0.324346 -0.445269 0.484085 -0.435112 0.957963 -1.309860 -1.315094 0.709451 0.025285 -0.108647 -0.661825 0.168295 0.958338 -0.120490 0.253867 -0.730909 -1.452805 0.606341 -0.418049 0.770690 0.516009 0.291887 1.208895 -0.443697 -0.331857 -1.289151 -0.142087 -0.085445 -0.165200 -0.921385 -0.450165 -0.269369 1.090013 1.428510 -0.150769 -0.242536 0.200741 1.238561 -1.436744 -0.490521 0.804502 0.953531 -0.884489 0.450943 0.955401 -1.294235 -0.571176 -0.675966 -0.226800 -0.079543 -1.070369 0.621101 -0.491084 0.456090 0.441204 0.096550 -0.162625 0.726730 0.289639 0.340303 0.007219 1.346920 1.935090 -0.720588 -0.248602 -1.115067 0.461164 -1.705549 -1.334013 0.393615 0.126743 -0.532272 0.242522 0.129733 1.125910 -0.068819 0.053732 -0.178538 -0.158020 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = -1.116654 -0.888682 -0.113696 -2.821275 2.051005 0.885210 0.857527 -1.099144 -2.388325 -0.294440 0.660809 -2.400920 -0.355312 2.549134 -0.912233 2.504306 3.909410 0.661957 -0.990567 -0.696599 2.591349 -0.391351 3.635416 3.214519 -2.505187 -0.262006 0.432666 1.524451 0.458766 0.284733 -0.652279 -1.308427 1.028133 -2.852524 -0.306184 -1.736729 0.566470 0.711095 2.349893 -3.705311 0.810411 -0.763712 0.352172 -0.643488 -1.074564 0.257170 2.029573 2.480539 -1.100368 0.677772 2.587690 0.456198 -0.450753 0.787508 0.092351 0.882288 0.170633 0.495598 -0.952436 -1.336861 -0.198247 -0.445328 1.049645 2.380314 2.906331 0.246652 -0.165239 1.927949 1.028102 0.383309 1.440342 0.476128 -0.639718 -0.116352 1.346549 -3.909687 -0.317102 -5.585798 -0.681522 -5.181301 -1.796774 -0.381623 1.463134 -0.894292 1.757000 0.704676 2.741564 -0.390720 0.034716 2.116768 2.593107 -2.613058 -1.316206 -1.949971 -1.728134 0.949868 -1.222619 0.090213 1.573377 0.612962 -2.233520 -1.515467 1.020376 1.150282 -0.961445 -2.340940 0.853356 1.578082 -1.640867 -2.275924 -0.916282 1.986446 -0.603350 -3.951200 -0.156804 -1.694762 1.982932 -0.216593 -0.843174 -2.849286 -0.001900 1.516657 -1.221505 -1.256531 -0.305278 1.563542 1.769299 0.843799 0.691571 -0.081201 0.578155 4.208170 1.346158 -2.046244 -0.362680 0.281273 -1.280852 0.496632 -2.082564 -1.366408 1.264685 -2.874073 1.112548 2.003024 -1.668281 -0.644303 3.129712 0.555769 1.067392 7.597779 0.037006 2.796844 2.048885 -2.484133 1.110505 -1.148730 0.097221 0.900026 1.425692 -0.072077 -3.373204 -2.537593 1.268320 2.492954 2.153944 -2.783704 -1.547523 -0.405158 0.083335 0.265832 -0.689637 0.840984 -0.128895 -1.847145 -0.432247 2.128367 4.740280 -0.873178 -0.674079 1.419892 1.994675 -1.286972 -3.068786 -1.488150 -2.950327 0.330118 0.917318 0.456478 1.691319 3.518597 -5.120800 1.916359 -0.479095 0.173609 1.678139 1.047149 -2.340031 -3.471244 -0.281488 1.686026 2.825092 -0.936628 0.925700 1.054313 -2.059259 -0.141179 0.471297 0.339157 -0.777712 0.975436 0.204806 -1.755228 -1.101503 0.750397 -1.008209 -0.675508 0.188160 1.639547 0.276754 -4.153069 2.556914 -0.337741 -1.180317 1.280620 -1.273648 2.790851 -2.547183 -2.387607 1.947979 0.156237 0.304767 -0.920546 0.751513 1.901807 0.101692 1.083271 -1.550499 -2.904532 1.472849 -0.602945 2.086265 1.110533 -0.231431 1.546887 -1.725031 -0.662239 -2.545180 -1.116084 -0.580669 0.226123 -2.460160 -1.124246 -0.588178 2.586917 2.281159 -0.155989 -1.303629 0.369050 2.452789 -3.041761 -0.487844 1.807606 1.534967 -2.541000 0.618759 2.312860 -3.025893 -0.337154 -1.333102 0.194491 -0.537109 -2.195334 1.541109 -0.056728 1.421012 0.255730 0.215310 0.341615 1.350750 0.981958 0.867812 0.211789 3.148241 2.949060 -0.657923 -1.181877 -2.650943 0.780738 -3.438238 -3.189581 1.302745 0.178195 -2.116470 0.578887 0.460693 2.987925 -0.310929 0.309174 -0.647600 0.010460 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__copy_move::__assign_one(int*, int const*) = -0.170699 -0.082984 0.296186 -0.424067 0.319642 0.063832 0.144083 -0.218817 -0.449667 -0.103533 0.053891 -0.201853 -0.067653 0.511017 -0.203855 0.361541 0.744407 0.296656 -0.135241 -0.308779 0.511649 -0.505829 0.683046 0.701544 -0.577677 0.017563 0.329288 0.411206 0.355008 0.376584 -0.325506 -0.039927 0.221542 -0.537123 0.133365 -0.622062 0.089597 0.174341 0.261458 -0.856743 0.087894 -0.311596 0.061942 -0.028595 -0.104466 0.410450 0.395512 0.428931 -0.215176 0.304101 0.484896 0.023331 -0.002952 0.145331 0.139247 0.329674 0.470627 0.250058 -0.143078 -0.024539 -0.049517 -0.472474 0.264444 0.478960 0.668292 -0.032855 0.049316 0.232643 0.089838 0.049880 0.279443 0.105585 -0.136478 0.001213 0.274290 -1.032313 0.164717 -1.292946 -0.175817 -1.328810 -0.317239 -0.248364 0.223971 -0.427883 0.348545 0.309158 0.549583 0.022271 0.044966 0.168688 0.519105 -0.588709 -0.206057 -0.227794 -0.281863 0.174937 -0.303714 -0.024792 0.306170 0.035670 -0.337073 -0.460902 0.517817 0.236363 -0.236189 -0.246010 -0.028848 0.468700 -0.573972 -0.502975 -0.346196 0.023279 -0.246241 -0.678915 0.304610 -0.453357 0.752680 0.016803 -0.095743 -0.554938 0.048351 0.508394 -0.131250 -0.300997 -0.099670 0.422365 0.251376 0.055675 0.032954 -0.133221 -0.006033 0.622158 0.540257 -0.354688 -0.114832 0.169285 -0.483603 0.026225 -0.527195 -0.233310 0.418398 -0.498379 0.009412 0.277890 -0.317162 -0.047625 0.987486 0.054241 0.268373 1.413930 0.029784 0.384686 0.276016 -0.504469 0.219081 -0.057595 0.063186 0.353290 0.395630 0.009276 -0.900342 -0.471721 0.074104 0.482365 0.354814 -0.676675 -0.595911 -0.288955 -0.014559 0.200537 -0.081953 0.087694 -0.191890 -0.319471 -0.106986 0.107163 0.917509 -0.286470 -0.258291 0.124124 -0.039527 -0.508420 -0.928042 -0.207537 -0.394095 0.111316 -0.162002 -0.020490 0.266828 0.613686 -1.318555 0.469160 -0.374656 -0.152125 0.434576 0.067805 -0.249568 -0.837647 0.059668 0.275708 0.578423 -0.039510 0.090094 0.319821 -0.507414 -0.046751 -0.057307 0.203613 -0.239324 0.248669 0.232953 -0.454834 -0.299999 0.086307 0.049770 -0.249271 0.090134 0.290740 -0.077952 -1.116336 0.431247 -0.166841 -0.221694 0.399802 -0.015823 0.341338 -0.545377 -0.511121 0.305838 0.156915 0.072337 -0.405936 0.051648 0.450722 -0.162791 -0.038638 -0.298752 -0.621258 0.106440 -0.355489 0.230452 0.230476 0.019690 0.525285 -0.151053 -0.120474 -0.608487 0.217318 -0.222172 -0.192646 -0.252146 -0.281028 -0.121140 0.482727 0.648994 0.102385 0.055410 0.175848 0.664317 -0.658526 -0.231885 0.345550 0.559402 -0.276951 0.230004 0.379380 -0.640131 -0.240632 -0.169181 -0.249918 0.109936 -0.304528 0.441299 -0.202725 0.258816 0.079636 0.152684 -0.046343 0.372590 0.087342 0.157303 -0.035848 0.644607 0.998158 -0.299933 -0.136113 -0.384386 0.165116 -0.657951 -0.417354 0.033917 0.246945 -0.319541 0.194873 0.124881 0.538040 0.085831 -0.021800 0.006773 -0.154294 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.166072 0.059590 0.357457 -0.396728 0.323814 0.097085 0.122695 -0.193211 -0.351220 -0.146037 -0.054284 -0.189027 -0.150467 0.500195 -0.216590 0.262865 0.760771 0.293275 -0.096158 -0.285712 0.470233 -0.503093 0.661248 0.663682 -0.570700 0.002900 0.416088 0.399904 0.288210 0.467720 -0.375439 -0.132916 0.189541 -0.424315 0.226405 -0.608289 0.086110 0.088403 0.131472 -0.855255 0.067774 -0.283283 0.047839 -0.041541 -0.096227 0.378050 0.504054 0.407779 -0.197394 0.169156 0.422666 0.104787 -0.014228 0.143139 0.163239 0.340083 0.507572 0.216738 -0.159564 -0.005962 -0.077962 -0.475303 0.227576 0.499387 0.648198 0.006069 0.070973 0.189633 0.022641 0.045730 0.166326 0.104858 -0.066772 0.104019 0.244962 -0.967627 0.182102 -1.213776 -0.170365 -1.302566 -0.300318 -0.361280 0.090883 -0.378487 0.331722 0.271532 0.562412 0.026792 0.152942 0.125275 0.599783 -0.586002 -0.188778 -0.296896 -0.279508 0.156013 -0.291016 -0.042692 0.263823 -0.022310 -0.330956 -0.503310 0.488413 0.228335 -0.220938 -0.185120 -0.053295 0.471000 -0.571218 -0.450581 -0.453812 -0.091973 -0.250526 -0.697498 0.301491 -0.407917 0.693176 0.025641 -0.084753 -0.616391 0.082461 0.596255 -0.132852 -0.311262 -0.132287 0.474340 0.231684 -0.030841 0.034575 -0.150573 0.008634 0.566064 0.606267 -0.307367 -0.138163 0.165329 -0.550482 -0.107813 -0.516297 -0.198036 0.397471 -0.482788 -0.034806 0.332067 -0.317374 -0.020854 0.875599 -0.079138 0.360916 1.427661 -0.062640 0.300455 0.156316 -0.568761 0.256938 -0.026106 -0.038433 0.251042 0.402125 0.127433 -0.899453 -0.452264 0.095893 0.478875 0.345219 -0.595887 -0.530019 -0.352177 -0.042682 0.166307 -0.073242 0.097528 -0.249472 -0.315908 -0.132281 0.090490 0.916827 -0.299782 -0.335729 0.131361 -0.053391 -0.443930 -0.865794 -0.179768 -0.367554 0.095196 -0.184225 -0.076723 0.273938 0.614518 -1.311990 0.489625 -0.362147 -0.236108 0.457878 -0.018863 -0.155297 -0.775305 0.128003 0.398649 0.569032 -0.017965 0.067743 0.189117 -0.495198 -0.051812 -0.069440 0.317195 -0.250956 0.238205 0.232202 -0.540855 -0.363044 0.014226 0.062782 -0.295335 0.044084 0.227005 -0.072305 -1.136041 0.548324 -0.146979 -0.143545 0.382901 -0.013256 0.259123 -0.563965 -0.564142 0.273472 0.150510 0.091603 -0.341890 0.022789 0.475146 -0.162986 -0.044680 -0.312899 -0.662901 0.090210 -0.285121 0.231057 0.211661 0.144097 0.559121 -0.055533 -0.119527 -0.587487 0.185975 -0.202441 -0.187928 -0.240190 -0.271201 -0.122235 0.488236 0.706911 0.040760 0.098856 0.128763 0.633166 -0.617914 -0.215985 0.344647 0.474898 -0.278080 0.144334 0.379944 -0.579545 -0.365259 -0.189449 -0.227520 0.088778 -0.364185 0.319529 -0.328472 0.180296 0.186986 0.088988 -0.123618 0.337970 0.082965 0.137758 -0.034618 0.591484 0.932592 -0.335913 -0.058811 -0.366509 0.170470 -0.696052 -0.408438 0.019459 0.201974 -0.231163 0.170704 0.127514 0.464082 0.010874 0.044428 0.048658 -0.236127 +PE-benchmarks/find-two-non-repeating-element.cpp__get2NonRepeatingNos(int*, int, int*, int*) = -2.228224 -2.154361 -0.223685 -5.335457 3.936396 4.024156 1.533833 -3.652948 -5.839894 -0.260083 1.953352 -4.719441 -0.149398 6.038406 -1.895476 6.064320 7.800153 1.253190 -2.987063 -0.399066 6.540346 -1.660392 7.620693 7.201397 -4.558582 -0.489760 0.580091 3.130564 1.408597 1.427760 -0.757517 -1.702556 2.258767 -7.246916 -1.554659 -4.412168 1.013026 2.053137 5.973385 -7.667897 1.618484 -1.180049 -0.225511 -1.456176 -1.997831 0.070618 3.557048 4.530989 -1.166759 1.470719 5.130931 0.955987 -0.983976 1.348882 0.995061 2.147722 1.454599 1.649900 -1.609371 -2.995489 -0.405430 -0.173378 2.013827 4.793057 6.968250 0.631988 0.065172 4.183598 1.785810 1.105910 3.545690 0.694775 -2.676589 -0.259094 2.132790 -8.837359 0.155604 -11.154847 -1.236816 -8.521728 -2.884094 0.302878 2.519427 -0.997545 3.918105 0.479176 4.730044 -1.054379 -1.349744 5.123164 5.674713 -5.284835 -2.251127 -3.468655 -3.405436 1.413595 -2.774378 -0.025693 2.998519 0.910674 -4.209316 -3.618669 2.528658 3.133658 -1.908271 -4.672322 1.468709 4.428557 -3.177249 -5.091947 0.373028 4.822665 -2.387665 -8.837264 -0.945695 -4.801587 3.549473 -0.376627 -1.719517 -6.150540 0.403614 3.791334 -1.580661 -3.428311 0.608238 3.499904 3.922015 1.979256 0.302939 -0.163287 0.909277 9.422207 2.154137 -3.589777 0.461101 -0.029520 -2.312329 2.031834 -4.318375 -2.712316 1.795357 -5.135974 0.633308 4.810965 -2.945250 -0.160318 7.327650 1.925513 0.712726 19.684156 0.325605 6.942559 4.731097 -5.473284 2.179174 -1.680638 0.485578 2.009480 2.183146 -0.255311 -10.362728 -4.908007 2.625635 5.022061 4.050787 -7.253720 -3.562855 -1.099320 -0.649174 0.544634 -0.960901 1.087699 -0.083500 -4.085974 -1.189084 4.294982 11.835118 -2.617635 -0.321698 3.089996 2.292714 -4.065844 -7.822379 -3.274045 -5.293573 1.189222 0.675496 0.733586 3.090729 6.980040 -9.295813 4.097519 -1.539563 -0.342536 4.832630 2.131585 -5.749343 -6.446456 -1.325520 3.265645 6.048599 -1.848677 1.287642 2.602703 -4.608769 -0.395698 0.869670 -0.120271 -1.246412 1.949346 1.273946 -3.049293 -2.541021 2.473652 -1.548661 -1.978812 0.153737 3.364658 -0.230891 -7.394227 5.005543 0.136246 -1.857836 2.317996 -1.323339 5.805892 -4.599322 -5.100360 3.872264 0.581226 0.267232 -2.726507 1.206774 3.885229 1.496049 2.542018 -3.809220 -6.330617 1.761935 -2.451504 3.944094 2.016782 -0.542152 2.930086 -2.518816 -0.971605 -6.614156 -2.809970 -0.955867 1.447611 -5.864467 -2.172822 -1.063741 5.383433 3.657617 0.568672 -4.237897 0.420974 6.052604 -5.505804 -0.922994 3.358799 4.838517 -6.852634 -0.022714 4.180672 -6.115049 0.075311 -1.604872 -0.955444 -1.464314 -4.188051 4.047735 1.889339 3.371444 -0.518194 1.708335 1.051688 2.424884 2.126124 1.670823 0.993148 7.006802 6.541980 -1.388703 -2.883453 -5.395044 2.449788 -6.561033 -6.695408 2.596151 0.295890 -4.747115 0.996292 1.552192 6.889192 0.686458 0.418694 -0.440452 -0.121752 +PE-benchmarks/find-two-non-repeating-element.cpp__main = -0.736179 0.228230 1.143164 -2.234330 1.821419 1.084183 0.629338 -0.552161 -1.977990 -1.515477 0.569403 -2.665235 -1.889286 2.719419 -1.262421 0.494340 3.576321 0.349491 -0.810435 -0.719709 1.934319 -0.306153 3.447099 3.164603 -2.827185 -0.211039 0.727145 1.539057 0.853206 1.077403 0.201123 -2.188845 0.873168 -0.777132 0.514880 -1.233403 0.409092 -0.372339 0.184655 -3.592730 0.316203 0.396697 -0.704895 -0.443175 -0.314449 1.586931 2.866606 2.086765 -1.061558 0.324168 2.381712 0.993943 -0.477580 0.449666 0.225767 -0.778107 0.834636 0.168097 -1.179290 -0.644257 -0.313385 -1.240499 -0.219925 2.675378 3.194036 0.287268 0.128458 0.658333 0.206770 0.841522 0.843814 0.526819 0.773501 0.990458 1.491039 -1.833374 -0.426393 -5.022870 -0.386649 -6.080709 -1.651059 -1.007945 2.244080 0.176625 0.200323 -0.534031 2.570019 0.416274 0.151434 2.751668 3.590423 -1.432350 -1.183800 -1.917915 -1.668618 1.195331 -1.561021 0.556063 0.782968 0.602048 -2.134479 -1.248044 0.311749 0.312539 -0.908006 -0.848461 0.067470 2.073114 -2.426741 -0.364160 -1.388248 1.279071 0.668020 -4.350256 -1.036178 -1.368382 2.190954 0.261572 -0.762906 -1.221665 0.360551 1.353995 -0.988143 -0.327575 -1.271472 2.246531 1.310852 0.856503 0.295669 0.433492 1.147271 2.529039 1.414497 -1.322825 -0.250168 -0.189454 -1.063914 0.266686 -1.741001 -0.484068 1.615055 -1.761373 0.969194 1.428192 -1.469579 -1.548817 0.853115 -0.567175 1.207809 7.470320 -0.369523 2.599122 1.237558 -2.561678 0.753550 -0.600665 -0.501525 0.455477 1.375197 0.861300 -2.204413 -1.984452 1.637023 2.668086 1.690908 -2.836088 0.028370 -0.093224 -0.337663 -0.667551 0.250761 0.745820 -0.381570 -1.546424 -0.752049 2.339548 4.033924 -0.659576 -2.147736 0.805812 1.625525 -0.144742 -1.559281 -0.516714 -0.292280 0.689481 1.227129 0.056795 1.747481 3.294302 -5.841404 2.113217 0.503196 -0.054558 1.554066 0.416324 -1.970538 -2.782639 0.447310 2.316017 2.425896 0.277767 0.014002 0.371266 -2.237512 -0.232093 0.585156 0.889398 -0.778784 1.023327 0.448472 -1.541793 -2.096590 -0.906096 -0.686739 0.093647 -0.930638 1.243106 -0.025432 -5.275797 3.212618 -0.429613 -0.874731 -0.646244 -1.130115 1.986566 -2.743217 -2.931877 0.913721 -0.972359 -2.102364 -1.502174 -0.027653 1.373100 0.334645 1.359619 -1.489914 -2.856904 2.059615 -0.672390 2.005870 1.004920 0.679641 2.847310 -0.094916 -0.523152 -2.337956 -1.474929 1.756709 -0.329930 -2.342284 0.557049 -0.565376 1.801745 2.333392 -0.735904 -1.545059 -0.284766 2.340019 -2.096629 -1.258682 1.513456 1.382109 -1.993334 1.277119 1.916042 -2.479259 -0.700651 -1.955515 -0.595961 -0.828359 -2.391014 0.928575 -0.472022 0.969604 0.908658 0.411987 -0.846831 1.052763 0.348291 0.128376 0.304073 2.816629 4.051286 -1.844711 0.356797 -2.838237 1.611054 -3.548761 -3.506628 1.073515 -0.805918 -0.792606 0.170548 -0.379707 2.016484 0.154385 -0.160368 -0.877678 0.910468 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__isValid(int, int, int) = -0.797786 -1.378348 -0.624322 -2.102758 1.191368 0.093974 0.581324 -0.830576 -2.419712 -0.124418 0.812824 -1.774214 0.526904 2.386143 -0.139829 2.242781 2.473028 0.467995 -0.954171 -0.378513 2.250437 -0.887311 1.677294 1.626792 -1.131513 0.016424 0.155433 0.578070 0.229108 0.465702 0.314287 -1.100724 0.221732 -2.244033 -0.270289 -1.249224 -0.017542 1.378815 2.403529 -2.591840 0.796058 0.711536 1.559553 -0.806132 -0.781914 -1.206499 0.456911 1.449774 -0.664689 0.993728 1.592749 0.020696 -0.312877 0.279306 0.877466 1.037507 0.438569 0.521566 -0.717000 -0.661580 -0.272299 0.554040 1.008496 1.224738 1.651000 -0.151449 -0.320680 1.328627 0.799911 0.700465 1.311448 0.148272 -1.487453 -0.987903 0.821387 -2.863945 -0.395710 -4.299649 0.152064 -4.012925 -1.125138 1.035117 1.607348 -0.493000 1.023446 0.857043 1.627148 -1.014986 -0.897309 1.337800 1.512575 -0.774261 -0.746393 -0.878366 -1.722539 0.690092 -0.397537 -0.552819 1.980959 0.339024 -1.455733 -0.721335 0.909407 0.965470 -0.530109 -1.508934 0.822256 1.423047 -1.071640 -1.901443 0.658742 2.291760 -0.583038 -2.111315 -0.659850 -1.486689 -0.236640 -0.004998 -1.202564 -1.765252 0.329157 0.353408 -1.052668 -0.766164 0.474588 0.580732 0.804142 1.194409 0.215440 -0.162150 0.176832 2.652177 0.474567 -1.701534 0.600434 0.267953 0.088595 0.927297 -1.070165 -1.612469 0.120939 -1.570403 0.648389 0.782124 -1.093988 -0.572758 2.007260 0.850202 -0.121871 5.142659 0.080586 2.318337 1.713945 -1.236023 0.541834 -0.094493 0.262830 0.512531 1.121758 -0.453026 -1.197868 -1.734832 1.093072 1.722176 1.605566 -1.525192 -2.199866 -0.113051 -0.269022 1.071488 -0.172057 0.043006 0.273359 -1.517220 -0.376384 0.853723 2.842927 -0.540607 -1.014615 0.892104 2.202025 -1.378966 -2.310435 -0.779508 -3.352713 0.413402 -0.189901 -0.196400 1.340593 2.257013 -4.279706 1.706277 -0.277703 0.212381 1.401953 1.066894 -1.791412 -4.114022 -1.207660 0.570241 2.431855 -1.200925 0.755925 1.048454 -1.335088 0.006319 -0.008683 -0.570288 -0.684803 0.769796 -0.735676 -0.540691 -0.056517 1.332378 -0.911119 -0.792688 0.277412 1.065445 1.207764 -1.823965 1.163457 0.182525 -0.253424 0.832184 0.009291 1.790409 -1.015803 -1.381642 1.079777 0.317172 0.225185 -0.376846 0.215841 1.219292 0.254607 0.676717 -0.350477 -1.092145 0.875207 -1.062979 1.844492 0.742851 -1.078867 0.424292 -0.960058 -0.345529 -1.291990 -0.165872 -1.015583 0.088372 -1.314639 -1.891434 -0.424701 1.639812 0.514387 0.569190 -1.375020 -0.395541 1.863824 -1.610125 0.239104 1.257193 -0.445562 -1.818581 0.356943 1.745382 -1.957227 0.695806 -0.942088 0.325302 -0.714282 -0.610307 1.354191 1.104002 0.843487 -0.810876 -0.269598 0.518504 0.657775 1.259831 0.346185 0.204768 1.828923 0.943378 -0.470727 -1.072741 -1.463238 0.063734 -1.631634 -1.651319 0.521952 0.569484 -2.284556 0.159871 0.132556 2.034710 0.158065 0.649343 -0.312187 0.419662 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -30.282886 -24.039261 -19.086613 -58.196415 50.285431 64.649249 25.007781 -52.197007 -70.009807 0.863590 40.576771 -76.925353 -16.218240 81.433657 -30.851520 66.717771 90.087798 5.629805 -47.156940 -9.137237 79.377151 20.457214 104.849685 86.580760 -67.334752 -4.465874 2.097546 15.765195 29.498036 4.740559 -1.812032 -34.018284 50.075510 -78.012525 -32.586715 -31.774758 7.854221 10.925708 71.553589 -83.081247 16.611445 -9.857492 -8.438571 -17.978972 -25.509626 18.393196 54.062135 65.535845 -13.365134 25.814273 59.621119 13.464924 -13.166291 17.672859 13.574995 4.956923 7.363154 16.526663 -20.207335 -48.793244 -9.412847 -4.477156 1.566212 71.302362 80.397985 11.713376 -4.515663 52.633010 14.515091 15.720330 39.906191 18.004494 -2.265587 10.977163 35.908207 -70.868161 -10.770376 -100.518177 -25.119573 -117.886139 -31.706604 10.042981 44.209478 -23.794323 47.146963 7.729397 73.036555 -4.098157 -31.034030 72.404444 84.250052 -72.963307 -31.828656 -32.097537 -42.034483 15.630249 -41.298032 28.476948 32.457051 6.282484 -65.597553 -43.427992 0.888965 34.105454 -28.487271 -56.121600 16.934699 45.378613 -56.721510 -41.352231 6.767068 44.676160 -15.969796 -112.868593 -53.810984 -45.247194 53.012033 -3.183503 -29.637628 -67.833415 8.120182 35.317451 -19.966055 -46.137400 26.051448 26.814713 47.473773 45.453430 2.939954 5.448803 27.436553 120.337211 22.087180 -45.730967 11.119861 -17.945008 -5.720284 44.339092 -35.663777 -27.588065 20.995974 -67.815716 35.035272 62.202934 -39.155667 -21.677808 60.946365 23.872968 8.786333 203.425034 4.742457 87.698846 63.291425 -74.344177 -7.955841 -44.253049 5.816804 26.455436 28.127993 2.368311 -78.759714 -67.640876 54.205957 76.695452 51.369823 -85.492026 -0.885524 3.978405 0.805703 -13.971794 -5.683595 17.520730 5.793019 -52.439419 -17.806501 69.974791 125.049878 -43.205665 -14.728219 42.243773 33.734598 -15.675584 -49.401382 -35.739997 -40.035018 21.956786 47.771613 11.493235 45.964599 92.153783 -97.291947 56.455852 -11.693680 1.262286 38.482880 42.577774 -76.430426 -29.380375 -12.265413 42.069354 56.863889 -9.046004 3.109204 32.401136 -67.069244 -7.589677 20.649624 -6.634266 -17.667543 31.470252 25.506539 -33.700298 -42.439349 24.770873 -8.889672 -13.449913 -3.047247 54.750304 -18.527354 -105.970889 69.112371 5.641035 -35.325688 3.598113 -28.695112 71.096275 -64.305926 -72.091419 51.599582 -15.376514 -21.048010 -22.076747 14.539221 40.552251 36.642241 47.533915 -55.494152 -72.434118 53.957656 -19.232315 63.080273 29.661039 0.488435 46.570723 -72.120917 -17.482229 -75.368814 -43.212282 15.111116 13.465724 -74.697467 -14.656439 -14.772691 71.720013 45.579892 -3.474495 -61.446483 -1.402490 62.039371 -75.026282 -12.719419 44.057228 76.646562 -79.984702 19.603838 53.756310 -64.836209 9.003099 -25.131565 -19.314447 -38.897238 -59.346575 47.743760 17.989306 48.668271 -1.740068 17.525605 11.498716 32.429064 18.263298 20.766864 20.481997 75.117501 74.324853 -31.642485 -32.537390 -79.140724 42.015810 -88.407682 -103.608357 56.484625 -4.324176 -53.565727 -0.561793 -4.588405 80.142608 17.608227 -20.548248 -21.516903 21.393684 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__int const& std::max(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__geMaxCollection(int (*) [4]) = -6.091226 -4.472731 -3.323599 -12.037353 10.675303 13.232155 5.214684 -10.339286 -14.534769 -0.210637 8.079680 -16.210744 -3.877623 17.002855 -6.311567 13.317363 18.922862 1.294309 -9.563143 -1.841208 15.944199 4.055075 21.686788 17.986471 -13.926247 -0.682694 0.301286 3.221381 5.526563 1.813839 -0.714203 -7.801078 10.183479 -15.347043 -6.373813 -6.521300 1.337563 1.962910 14.117631 -17.572059 3.426060 -1.329960 -1.727865 -3.787429 -5.003399 3.897052 11.819422 13.470244 -2.639052 5.288850 12.039487 2.865516 -2.537375 3.663587 3.217477 1.043414 1.958034 3.084550 -4.566556 -9.724333 -2.157963 -1.226564 -0.045047 14.746164 16.570194 2.431756 -1.100102 10.268868 2.683105 3.289532 8.003577 3.773667 -0.020336 2.464748 7.357884 -13.889477 -2.129976 -20.484316 -5.054432 -24.749405 -6.891273 1.798152 9.536601 -4.178411 9.406385 1.068761 15.298057 -1.014632 -6.098658 14.677872 17.861637 -14.960324 -6.656543 -6.689045 -8.678184 3.208977 -8.398611 5.586730 6.526088 1.096445 -13.722027 -8.891106 0.431681 6.752509 -5.894569 -10.942528 3.442180 9.611905 -12.065352 -8.230867 0.804151 9.131296 -2.906569 -23.381776 -11.059284 -8.961322 10.528111 -0.341421 -6.425368 -13.885080 2.061455 7.234266 -4.437079 -9.215340 4.602599 6.089138 9.485873 9.216827 0.740803 1.172695 5.848245 24.452658 4.718173 -9.426456 2.379591 -3.652767 -1.129111 8.903898 -7.205671 -5.675118 3.920096 -13.939089 7.176111 12.590373 -8.273851 -4.352916 11.373630 4.690470 1.937893 41.811439 0.500469 18.106805 12.655502 -15.566736 -1.142571 -8.910838 0.833470 5.026711 6.029470 0.950762 -15.828927 -13.905202 11.413354 16.075743 10.704198 -17.530494 0.204939 0.729364 0.120748 -2.857445 -0.751184 3.593144 1.359490 -10.950365 -3.803675 14.222991 26.185852 -8.778474 -3.979107 8.664801 6.791112 -2.745064 -9.871952 -7.150394 -7.935407 4.494131 9.737087 2.087700 9.579993 19.191891 -20.800933 12.005556 -2.427293 -0.237822 8.363981 8.473884 -15.511246 -6.171320 -2.624495 9.065215 12.181105 -1.471950 0.465661 6.242944 -13.901648 -1.668846 4.160049 -1.045731 -3.831792 6.649668 5.165887 -7.406025 -8.804594 4.201290 -1.836041 -2.732769 -1.139173 11.167700 -3.374474 -22.529884 14.641789 1.414757 -7.089098 0.474603 -5.724996 14.375575 -13.252029 -15.177911 10.389982 -3.513662 -4.919554 -4.435022 2.694490 8.258545 7.423217 9.709589 -11.339469 -15.071652 11.562019 -3.691592 13.340088 6.249944 0.278270 9.907154 -13.656845 -3.799272 -15.103441 -9.169050 3.675142 2.259863 -15.143627 -2.532138 -3.362959 14.730439 9.635209 -0.676393 -12.537676 -0.870393 12.904203 -15.157276 -2.555805 9.360252 14.948991 -16.274226 4.151828 11.406891 -13.254690 1.552863 -5.555498 -4.008578 -8.241111 -12.247103 9.535790 3.305664 9.690659 -0.017831 3.316537 1.782896 6.525571 3.562409 3.865029 4.113603 15.668350 15.332994 -6.797989 -5.870136 -16.285820 8.843477 -18.370535 -21.293124 11.410997 -1.026901 -11.120404 -0.305708 -1.041268 16.209763 3.388040 -4.132710 -4.536131 4.487743 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = -1.228208 -0.627867 -0.122307 -2.713053 2.487107 2.533687 1.204546 -1.754437 -3.312485 -0.683538 1.644947 -4.143097 -1.644793 3.980232 -1.458770 2.292361 4.539642 0.398059 -1.975241 -0.535162 3.109568 0.726738 4.981343 4.262172 -3.382958 -0.012391 -0.141613 0.963599 1.075567 0.909440 0.001760 -2.364729 2.120661 -2.461442 -0.859403 -1.361932 0.193744 0.152789 2.162724 -4.448144 0.683495 0.587567 -0.154952 -0.835213 -0.796399 1.422724 3.234822 3.076593 -0.655480 1.165455 2.668495 0.670278 -0.288516 0.806595 0.816475 -0.308676 0.754128 0.193082 -1.474428 -1.803379 -0.550846 -0.941313 -0.403862 3.466966 3.932418 0.514482 -0.320167 1.664983 0.427315 0.939321 1.675355 0.942400 0.557989 0.788310 1.796320 -2.194801 -0.388238 -4.560064 -0.930506 -6.577525 -1.928576 0.003940 3.020736 -0.036635 1.474792 -0.361803 3.711675 -0.092435 -1.061599 3.351729 4.498722 -2.996005 -1.640908 -1.664253 -1.960264 1.030789 -1.979468 1.129424 1.415644 0.445569 -3.264871 -1.672554 0.153182 1.050141 -1.398364 -1.683218 0.590804 2.370741 -3.198546 -1.280468 -0.490208 1.945000 0.086389 -5.515352 -2.352401 -1.740510 2.035644 0.246788 -1.560347 -2.473123 0.656497 1.306554 -1.191533 -1.432948 -0.344365 1.985241 1.784718 1.928711 0.330130 0.592453 1.541411 4.844208 1.060118 -2.110058 0.436872 -0.693239 -0.296174 1.805211 -1.608187 -1.222480 1.026527 -3.056043 1.600446 2.312489 -2.036335 -1.273860 1.110142 0.733361 0.666740 9.036982 -0.125495 4.102433 2.608085 -3.537674 0.214334 -1.750723 -0.086295 0.910274 1.595819 0.580587 -2.731805 -3.102545 2.685243 3.911754 2.476572 -3.764794 0.556627 0.278830 0.034147 -0.800393 0.283348 0.895855 0.368188 -2.509779 -0.924004 3.192833 5.833305 -1.645477 -1.650843 1.744445 1.587830 -0.130668 -1.830086 -1.263101 -1.152408 0.968712 2.028420 0.365476 2.229500 4.513393 -5.459194 3.050971 -0.127007 -0.118025 2.148124 1.439385 -3.345279 -1.938512 -0.461147 2.368704 3.057137 0.002488 -0.183693 1.092056 -3.276681 -0.435192 0.921947 0.093513 -1.010822 1.657694 0.919611 -1.733163 -2.194990 -0.101435 -0.484617 -0.280333 -0.796688 2.438440 -0.194690 -5.645978 3.648233 0.205363 -1.633960 -0.481644 -1.264598 2.870909 -3.213771 -3.657610 1.903243 -1.307096 -2.211572 -1.305573 0.314441 1.683164 1.369522 1.954919 -2.379889 -3.352054 3.249944 -0.796706 3.181488 1.554825 0.204416 2.659837 -1.613909 -1.035371 -2.962586 -2.192515 1.370174 -0.168511 -3.208530 0.224149 -0.952948 3.085212 2.535013 -0.296051 -2.697309 -0.461262 3.036859 -2.971082 -1.034769 2.293580 2.333819 -3.237283 1.474449 2.787227 -3.071610 0.112767 -1.896628 -0.978560 -1.837696 -2.857241 1.953356 0.271642 1.901420 0.395166 0.490349 -0.226672 1.450014 0.602838 0.360695 0.781709 3.880855 3.659774 -1.858820 -0.381842 -3.831193 2.180864 -4.385960 -4.738010 2.282895 -0.381936 -2.314387 -0.132662 -0.378813 3.290581 0.718067 -1.065456 -1.382507 1.365833 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__maxSumIS(int*, int) = -4.156440 -4.408199 -1.966772 -9.017735 5.698372 8.111565 2.840409 -6.096550 -9.803007 -0.375844 4.210978 -8.885925 -0.028508 10.651291 -3.647161 10.220460 13.355471 1.688452 -5.754376 -0.239226 11.576250 -0.870000 13.019507 11.494823 -7.894201 -1.327318 0.082177 5.614838 2.931429 1.707400 0.818837 -3.741585 4.534163 -11.936369 -3.980821 -7.131944 2.288383 3.896281 9.561577 -13.145721 2.705685 -0.933106 0.003053 -2.803494 -3.781097 -2.339482 5.155473 8.628710 -1.882359 2.619060 8.124107 1.934737 -2.183577 2.393333 1.157234 2.527070 0.368887 0.843359 -2.706284 -5.601454 -0.402530 -1.403461 2.932962 8.496047 11.442813 1.302258 0.416178 7.144841 1.873731 1.912858 5.807592 1.060636 -4.705868 0.004200 3.801556 -14.177654 -0.943731 -15.609104 -2.170662 -13.520454 -4.540351 1.199187 4.978925 0.202442 6.818612 1.878701 8.148201 -2.235948 -3.108001 9.576706 9.304852 -8.865459 -4.065888 -6.216771 -5.839394 3.049306 -5.262161 0.868665 3.845064 2.069859 -7.304965 -4.837261 2.793802 5.772441 -3.209834 -8.501987 2.392236 7.322622 -6.898315 -8.735431 1.758471 8.492764 -3.925816 -14.488278 -4.415578 -8.082570 5.510533 -0.685119 -2.677890 -9.848892 0.517541 5.631129 -1.768955 -6.118474 1.236239 4.878846 5.701098 4.245939 0.548110 0.282131 1.810070 15.775507 3.075155 -5.705723 0.944751 -0.425892 -2.696430 4.322521 -6.589303 -4.465861 1.001133 -9.821033 2.142670 9.211320 -4.956324 -2.364279 8.348817 4.052417 2.286151 33.794042 1.643948 11.618430 9.094970 -9.186990 2.653168 -3.972073 0.996289 3.596572 2.762829 -1.098416 -16.648742 -8.532936 4.837104 8.686910 7.134249 -10.475846 -4.453685 -1.458266 -0.514357 0.386835 -1.714147 2.544037 -0.332255 -7.158186 -1.951840 8.499796 18.628396 -4.144288 -0.488253 5.992742 4.069170 -6.813220 -12.949867 -4.901616 -7.776389 2.014986 3.644434 0.600859 5.220345 11.471621 -13.216170 7.192923 -1.183266 0.900296 6.966872 4.021632 -9.840433 -10.035846 -2.445780 5.214275 10.175985 -3.991772 2.162434 4.725113 -7.966831 -0.556168 2.579213 -1.021613 -1.549897 3.320948 1.604332 -4.565860 -4.988153 5.021552 -3.107867 -2.714731 0.112228 6.185224 -0.791459 -10.198283 8.232165 -0.168485 -3.803710 3.637708 -3.419070 10.525803 -8.286822 -8.694264 7.517387 0.790069 -0.730169 -3.953883 2.405031 6.585407 4.260263 3.822674 -5.800360 -10.423396 4.308665 -4.170468 6.747505 3.345267 -1.001617 4.289063 -5.661383 -1.713506 -10.891179 -5.848764 -1.833531 2.119343 -9.771719 -5.849712 -1.481259 9.766590 5.799129 0.442610 -8.202720 0.978850 10.361170 -9.214640 -1.852224 5.576405 6.326737 -11.372232 0.375941 7.180209 -11.085284 1.034686 -2.810891 -0.462811 -2.881662 -7.529218 6.197792 3.018415 6.665930 -0.922117 2.512915 1.616121 3.902620 4.177915 3.464275 1.860072 12.075601 8.570695 -1.727449 -5.256532 -9.378273 3.227926 -11.235689 -11.947204 5.457496 1.736692 -7.198731 1.807820 2.163169 11.382192 2.027765 0.299207 -0.713239 0.358924 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = -0.892615 -0.675482 0.346652 -2.353584 1.631682 1.505226 0.795674 -0.906923 -2.588875 -0.880434 1.010376 -2.953451 -1.042682 2.972093 -1.083098 1.665472 3.768633 0.510088 -1.305464 -0.356785 2.413873 -0.353695 3.569601 3.275040 -2.511627 -0.185261 -0.113455 1.638386 0.767532 0.957738 0.325673 -1.697101 1.050495 -1.848081 -0.274647 -1.577434 0.459328 0.481064 1.215077 -3.897469 0.560115 0.713117 0.137838 -0.664988 -0.566295 0.483779 2.134087 2.322662 -0.662146 0.712598 2.188816 0.470302 -0.270463 0.569312 0.416013 -0.155236 0.603630 -0.105667 -1.256942 -0.985777 -0.209355 -1.178207 0.197818 2.492968 3.234641 0.283368 0.025364 1.064500 0.345377 0.745618 1.387454 0.425716 -0.280943 0.380478 1.299488 -2.450260 -0.176181 -4.190108 -0.390921 -5.092909 -1.623292 -0.213003 2.460038 0.718297 0.912160 -0.265734 2.508934 -0.251354 -0.471338 2.592733 3.117655 -1.874724 -1.289811 -1.767250 -1.582087 1.151267 -1.556110 0.251804 1.054851 0.718226 -2.191149 -0.908617 0.672616 0.894702 -0.935075 -1.200366 0.365800 2.127105 -2.414726 -1.397195 -0.454084 1.919362 0.029982 -4.154027 -1.064572 -1.708379 1.329738 0.228412 -0.884793 -1.677627 0.353491 1.108026 -0.776709 -0.771950 -1.200926 2.021674 1.132850 1.100693 0.319272 0.475238 0.867695 3.233270 0.919873 -1.520848 0.107652 -0.052660 -0.777904 0.953102 -1.674910 -1.056612 0.747915 -2.372682 0.684258 1.674309 -1.520677 -1.061801 0.678335 0.623714 0.877925 8.125898 0.114001 3.071491 1.996460 -2.454731 1.088195 -0.772821 -0.035377 0.702560 1.089136 0.179192 -3.099547 -2.222929 1.516642 2.689602 1.918836 -2.714655 -0.391570 -0.148241 -0.119846 -0.190792 0.090261 0.787146 -0.031184 -1.881108 -0.621032 2.275176 4.651368 -0.783431 -1.299240 1.225703 1.170098 -0.958717 -2.636398 -0.820390 -1.071552 0.598264 0.884030 0.099724 1.568594 3.288053 -4.670889 2.304737 0.182805 0.138305 2.066744 0.567695 -2.413346 -3.120517 -0.365153 1.764357 2.878349 -0.389622 0.052694 0.927015 -2.301811 -0.217292 0.635823 0.183243 -0.603834 1.073796 0.229787 -1.272254 -1.666814 -0.118105 -0.809962 -0.191018 -0.644038 1.568950 0.253602 -3.782686 2.642918 -0.195814 -1.115170 0.036309 -0.922923 2.225505 -2.544069 -2.635378 1.360620 -0.552525 -1.672733 -1.483768 0.230703 1.434172 0.719981 0.874936 -1.404610 -2.739696 2.035179 -1.065899 2.072418 1.064723 -0.044888 1.892689 0.084289 -0.633276 -2.358788 -1.579015 0.466042 -0.294069 -2.361546 -0.389213 -0.606248 2.245289 1.959224 -0.172778 -1.882896 -0.119672 2.754990 -2.009959 -1.116919 1.669363 0.732907 -2.376788 0.932333 2.116866 -2.950217 -0.017033 -1.573367 -0.447036 -0.817492 -2.111882 1.395262 0.170990 1.438975 0.250755 0.425943 -0.334591 1.016179 0.717690 0.274179 0.348098 3.463334 2.889931 -1.089875 -0.216429 -2.780869 1.258243 -3.304055 -3.248566 1.200160 0.114650 -1.606903 0.355672 0.265476 2.504431 0.522913 -0.313033 -0.751667 0.726791 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__solve(int*, int) = -2.815079 -3.119106 -0.421648 -6.761719 4.221723 4.614394 2.178954 -4.397790 -6.862836 0.047952 3.119352 -5.840010 0.095559 7.634622 -2.608132 7.014720 9.067206 1.474849 -3.977138 -1.136574 7.739585 -0.456231 8.931721 8.071932 -6.184642 -0.657848 0.595946 2.815237 3.095276 1.313782 -0.660684 -2.347187 3.530018 -7.784819 -1.755416 -4.742980 1.276129 2.482839 6.923197 -8.902548 2.019042 -1.174892 0.597792 -1.861949 -2.298527 0.381806 3.866302 6.132641 -1.704307 2.221141 5.973747 1.176302 -1.383859 1.629310 1.373057 2.119798 1.468991 1.363414 -1.777024 -3.485100 -0.390135 -0.607647 2.136330 6.286300 7.793257 0.553228 0.115565 4.755960 2.378657 1.188717 4.224840 0.952278 -2.215643 -0.160186 2.741685 -10.070102 -0.304862 -12.046234 -1.624163 -11.300547 -3.382275 0.709770 3.697597 -2.083278 4.693642 0.681191 6.128760 -0.938020 -2.199247 5.159430 6.668229 -6.603125 -2.920814 -3.946637 -4.042735 1.929810 -3.677450 0.959955 3.612424 0.499720 -5.408614 -3.774157 2.145337 3.847177 -2.516925 -5.231756 1.861555 5.177332 -4.488157 -5.827017 0.864696 5.155959 -2.625533 -9.857733 -1.331121 -5.784970 4.311715 -0.699756 -2.183951 -6.892195 0.239815 4.115368 -2.151035 -4.285276 0.115625 3.784523 4.460034 3.275474 0.180404 -0.183455 1.359258 10.618802 2.392253 -4.868739 0.656081 -0.277539 -2.090632 3.051593 -4.963079 -3.269574 2.712213 -6.479034 1.037840 5.506283 -3.676417 -0.736432 7.995926 2.838184 1.517579 21.315415 0.718036 7.827834 5.784771 -6.396978 1.624568 -2.381519 0.912058 2.846244 2.827709 -0.831060 -10.665501 -6.378708 3.430822 6.466607 5.080401 -7.628143 -3.412134 -1.171364 -0.763611 0.124695 -1.257707 1.392397 -0.526320 -4.994201 -1.520583 5.194025 12.094567 -3.319729 -1.046651 3.370330 3.344300 -4.084672 -7.650155 -3.538651 -5.911631 1.899888 1.866741 0.768284 4.577620 8.342521 -10.971347 5.411150 -1.649890 -0.082869 4.737295 2.830152 -6.589045 -7.003700 -1.316321 3.377449 6.635209 -2.326113 1.604958 3.940091 -5.940285 -0.446725 0.957586 -0.500414 -1.617857 2.165726 1.802362 -3.279469 -3.148159 3.096842 -1.744012 -2.295903 0.253219 4.579279 -0.176111 -8.945886 5.709478 -0.132889 -2.751870 2.729464 -2.470033 6.786641 -6.172058 -5.809661 4.757760 0.831600 0.093554 -2.865346 1.533301 4.849788 1.170950 3.228514 -4.488517 -7.291366 3.136692 -3.146444 5.086821 2.609237 -0.844697 3.439368 -4.480407 -1.002037 -7.243766 -3.496969 -1.092472 1.497171 -6.558299 -3.062019 -1.271739 6.832105 4.394187 0.230246 -4.597359 0.677718 6.561283 -7.447292 -0.910720 4.010488 5.221471 -7.120702 0.687410 5.065473 -7.435601 0.453326 -2.077116 -1.282541 -1.913710 -4.865021 4.993208 1.930362 4.780759 -1.029586 1.849866 1.184192 3.206420 2.440576 1.917408 1.528384 7.794312 7.071466 -1.838564 -3.759726 -6.675895 2.831396 -7.895443 -8.271544 3.761230 0.517375 -5.599366 1.276203 0.904082 7.931661 1.314509 0.131288 -0.917908 0.638876 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = -0.648629 -0.603456 0.349440 -1.721952 1.321662 0.975217 0.672050 -0.711657 -2.004767 -0.311567 0.632257 -1.740437 -0.431759 2.228644 -0.649295 1.508185 2.769290 0.696276 -0.914480 -0.373895 1.744512 -0.439090 2.503822 2.362567 -1.713017 0.016421 -0.009452 0.807301 0.474781 1.019768 -0.427598 -1.107505 0.947312 -1.580120 -0.171026 -1.421990 0.146342 0.560802 1.223801 -2.843592 0.535911 0.212371 0.242356 -0.503844 -0.386828 0.516893 1.466189 1.631947 -0.376246 0.781020 1.387569 0.247117 -0.144885 0.495047 0.662264 0.636943 0.684453 0.172325 -0.881337 -0.595243 -0.303163 -0.719840 0.302132 1.670522 2.148684 0.106778 -0.084280 0.770118 0.360991 0.403308 1.097656 0.283764 -0.175030 -0.071706 0.804695 -2.111154 -0.059719 -3.111180 -0.413706 -3.765745 -1.184332 -0.100663 1.579027 -0.129439 0.961226 -0.158751 1.866511 -0.364694 -0.355588 1.243903 2.126368 -1.743522 -0.921077 -1.068117 -0.998617 0.570857 -0.970792 -0.021289 1.022397 0.039740 -1.615378 -0.986124 0.853891 0.765379 -0.696806 -0.908258 0.379251 1.669009 -1.685377 -1.358671 -0.429635 1.240564 -0.347918 -2.682027 -0.204743 -1.243683 1.031404 0.170348 -0.835743 -1.613403 0.399176 1.032615 -0.771488 -0.871851 -0.508833 1.481533 0.808772 0.721152 0.188346 0.052834 0.381208 2.515194 0.917161 -1.315159 0.197933 0.104487 -0.621753 0.685924 -1.303131 -0.939865 0.574842 -1.782067 0.293469 1.112655 -1.199721 -0.192858 1.324199 0.673898 0.532398 5.297253 -0.088960 2.090042 1.292654 -1.831543 0.829905 -0.462948 0.115754 0.583847 1.071838 0.023162 -2.397171 -1.703318 0.974270 1.951575 1.478665 -2.066688 -0.712872 -0.461130 -0.091438 0.141601 -0.015982 0.410154 0.026568 -1.442299 -0.459283 1.104867 3.502223 -0.850766 -0.991191 0.795314 0.646874 -0.807971 -1.962760 -0.774026 -1.246351 0.459395 0.328738 0.004262 1.206786 2.409788 -3.534690 1.794822 -0.594842 -0.319204 1.559084 0.545541 -1.526550 -2.112666 -0.469721 1.106120 2.237024 -0.199867 0.198386 0.858981 -1.708698 -0.208426 0.163161 0.184573 -0.558492 0.763222 0.404059 -1.170904 -0.872144 0.078534 -0.364906 -0.559163 -0.218007 1.171336 0.322566 -3.053173 1.713092 0.028715 -0.709078 0.569750 -0.310771 1.546118 -1.689207 -1.852762 1.081454 -0.027709 -0.608074 -0.882034 0.187205 1.261558 0.154166 0.597669 -1.020850 -2.071282 1.304447 -0.700740 1.594166 0.818419 -0.186428 1.361722 -0.187634 -0.522923 -1.616473 -0.956103 0.037074 -0.279824 -1.412827 -0.393308 -0.562789 1.783709 1.489784 0.226719 -1.033265 -0.180587 2.037394 -1.805411 -0.347993 1.398731 0.889130 -1.498688 0.561957 1.690258 -2.091627 -0.177992 -0.836463 -0.423491 -0.508427 -1.228239 1.224859 0.051277 1.058801 -0.051019 0.366161 -0.135964 0.793129 0.478767 0.172308 0.225638 2.376708 2.145944 -0.816536 -0.278775 -1.716206 0.913090 -2.234315 -2.036463 0.683536 0.215601 -1.559032 0.328611 0.223982 1.887929 0.241136 -0.091693 -0.430037 0.211513 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__maxProfit(int*, int) = -5.108620 -4.571569 -2.000781 -11.275164 7.890071 11.130351 4.134307 -7.980323 -11.455238 -1.382851 5.735894 -11.725051 -2.040558 13.614636 -4.621743 12.575399 15.979247 1.316631 -7.170848 -1.360976 13.965489 -0.173798 18.068306 14.083151 -10.743340 -1.229242 0.783879 5.401924 3.941537 2.161213 0.642942 -5.140724 7.030408 -14.241310 -4.080750 -6.684367 2.259339 3.198513 11.406622 -15.560914 3.060702 -0.943411 -0.821388 -3.427412 -4.618373 -1.448298 8.715572 11.074577 -1.483354 3.450119 10.090290 1.865729 -2.188841 3.203571 2.787748 2.665747 0.981412 -0.618660 -3.744046 -7.004514 -1.020483 -2.170017 2.308799 11.154201 13.789040 0.902956 0.107490 9.346511 1.828577 2.718796 6.951285 1.990924 -3.829003 0.824239 5.270647 -17.598906 -1.439414 -19.148301 -3.750000 -18.751197 -6.603921 0.865065 6.515756 -0.140258 8.837745 1.374580 11.053543 -1.745876 -4.121996 10.406142 13.644929 -11.879035 -5.342000 -7.287401 -5.405521 3.013499 -7.041709 1.809317 5.459404 1.139996 -10.069991 -5.550204 3.803250 6.917919 -4.504071 -10.842253 2.732858 9.583231 -8.830940 -10.057344 0.889476 9.404604 -4.514226 -19.964698 -4.373851 -8.400353 8.008752 -0.651850 -3.428301 -12.914997 1.181708 8.085993 -2.559361 -8.448904 1.042455 6.776802 8.269904 5.935859 1.153762 1.864983 3.097841 21.429420 5.121159 -6.585577 0.862585 -1.290645 -3.033190 6.187055 -6.364229 -5.320747 1.976307 -12.088368 2.396082 12.038151 -6.134500 -2.314577 10.470282 4.895048 2.770202 41.578041 1.037919 14.598804 10.826180 -12.633992 2.209530 -6.187758 0.818042 3.912496 4.159140 -0.875074 -20.477036 -10.949900 7.237939 11.576416 8.731853 -14.410390 -3.099321 -1.761398 -0.368716 -1.152451 -1.917880 3.330796 0.755161 -8.982551 -2.553859 11.442888 23.990060 -6.833529 -1.334896 7.578723 4.655108 -6.154687 -14.404333 -6.396871 -8.453980 2.657399 4.907161 1.622220 6.655324 14.780948 -15.831437 9.332716 -2.321607 -0.194452 9.226620 5.241738 -12.142492 -11.747463 -2.745038 7.805954 11.745521 -4.316567 2.903769 5.264128 -10.605388 -0.691319 2.568896 -0.998450 -1.941940 4.221313 2.207556 -6.094854 -6.552231 5.010712 -3.179646 -2.721347 0.164383 7.899639 0.270556 -16.540923 12.096535 0.000311 -5.398030 3.980121 -4.153330 14.195979 -10.540964 -11.610514 9.230552 -0.476574 -2.242657 -4.334890 2.630454 7.769753 4.036439 4.842073 -8.130126 -12.164524 6.829218 -4.325667 9.332602 4.589088 -0.300059 7.266647 -8.860172 -3.097283 -12.813111 -8.912196 -1.289220 2.095467 -12.762621 -5.371776 -2.256802 12.553597 7.570050 0.486539 -9.950121 1.116284 11.738733 -14.623020 -2.310682 7.507811 11.351881 -14.834002 1.521199 9.380212 -12.566623 0.771445 -3.994736 -1.721091 -4.823981 -11.185590 7.534557 3.111883 8.451808 -0.809460 3.378063 1.789732 4.894435 4.106988 4.023669 1.938271 14.195528 12.862444 -3.950144 -7.211634 -12.310727 5.359067 -14.956979 -16.500166 7.792480 2.069945 -8.429240 1.538868 1.943702 14.008017 2.782813 -1.464282 -1.982926 0.552190 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__int const& std::max(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = -1.090419 -0.742931 0.217837 -2.744670 2.079911 2.175877 1.064305 -1.364625 -2.927127 -0.914524 1.270062 -3.353254 -1.266511 3.518658 -1.167652 2.320504 4.227093 0.479014 -1.592892 -0.518784 2.936954 -0.256465 4.503317 3.730360 -2.927125 -0.103863 0.015086 1.487634 0.863242 1.067270 0.140638 -1.842645 1.588875 -2.508629 -0.437130 -1.574798 0.378208 0.454836 1.814014 -4.317442 0.666491 0.557494 -0.032075 -0.799471 -0.774935 0.502754 2.737582 2.751857 -0.507185 0.936984 2.454890 0.405075 -0.254519 0.761411 0.817207 0.141392 0.686812 -0.331574 -1.368832 -1.299326 -0.361203 -1.222235 0.156140 2.899954 3.582660 0.191910 -0.096865 1.595775 0.327051 0.835526 1.601794 0.614090 -0.227127 0.403135 1.502985 -3.304824 -0.256749 -4.772847 -0.744948 -5.826787 -1.997556 -0.166937 2.563904 0.524605 1.492897 -0.243882 3.038029 -0.275931 -0.730655 2.602174 3.837642 -2.595385 -1.471259 -1.853643 -1.423333 1.017761 -1.796331 0.374809 1.375642 0.409500 -2.692255 -1.142081 0.993351 1.182929 -1.192262 -1.799369 0.487072 2.551794 -2.701508 -1.829613 -0.520253 2.101603 -0.302309 -5.075877 -0.984780 -1.769997 1.809157 0.199213 -1.061908 -2.473956 0.516646 1.620097 -0.908789 -1.406541 -0.950287 2.277701 1.649096 1.392031 0.426909 0.687063 1.019116 4.493251 1.340859 -1.687050 0.155527 -0.215136 -0.784600 1.365212 -1.586033 -1.257816 0.759316 -2.845860 0.677336 2.300309 -1.728823 -0.864303 1.352822 0.890867 0.851675 9.568462 -0.006834 3.620202 2.369648 -3.120406 0.971779 -1.245328 -0.040972 0.804066 1.356512 0.183214 -4.037066 -2.682794 1.939109 3.198902 2.225879 -3.495698 -0.293848 -0.282163 -0.070423 -0.395927 0.020732 0.864352 0.270270 -2.247140 -0.717276 2.721762 5.784809 -1.404265 -1.312687 1.593157 1.153017 -0.941010 -3.074836 -1.206527 -1.396297 0.666451 1.074536 0.269060 1.778402 3.865703 -4.947780 2.675189 -0.268468 -0.179942 2.504720 0.912319 -2.830484 -3.324820 -0.543125 2.181041 3.195544 -0.526845 0.288345 1.039499 -2.787429 -0.258585 0.601062 0.099347 -0.691447 1.263772 0.388584 -1.602354 -1.810521 0.086347 -0.764785 -0.333772 -0.497815 1.918275 0.446379 -4.868067 3.269809 -0.073044 -1.377421 0.326648 -0.961317 3.006544 -2.818466 -3.141081 1.808490 -0.661934 -1.675691 -1.427119 0.324379 1.713091 0.708870 1.023751 -1.852876 -3.047884 2.398453 -1.051936 2.552191 1.308810 0.040682 2.343326 -0.742728 -0.943851 -2.742877 -2.137977 0.383094 -0.223004 -2.874109 -0.501602 -0.789851 2.834045 2.249630 -0.014484 -2.201901 -0.093625 3.026201 -3.157915 -1.015369 2.066175 1.877596 -3.094656 1.035156 2.548517 -3.154773 -0.045827 -1.628111 -0.652072 -1.199765 -2.728890 1.715424 0.265726 1.774830 0.191284 0.583300 -0.182333 1.214554 0.735414 0.463972 0.349498 3.803712 3.598796 -1.432051 -0.758618 -3.192801 1.598672 -3.909843 -3.998937 1.640284 0.304690 -1.960298 0.272217 0.281043 3.065316 0.636635 -0.606691 -0.892785 0.599723 +PE-benchmarks/permutations-of-a-given-string.cpp__permute(std::__cxx11::basic_string, std::allocator >, int, int) = -1.686266 -1.811701 0.351513 -4.749834 3.872641 2.139614 1.931228 -1.352571 -4.771417 -2.297152 1.965720 -4.378748 -2.464058 5.523189 -2.366893 3.367818 6.461004 0.687071 -1.824111 -1.399392 5.746857 -1.492543 7.262248 5.585070 -6.098667 -0.512628 -0.482204 3.728038 2.259679 2.146857 1.834072 -2.433648 2.485275 -3.943929 0.417736 -3.389397 1.541071 1.514662 1.324667 -7.068295 0.690314 1.283799 0.095125 -0.295499 -1.169089 2.068462 3.566623 4.908800 -2.615277 2.320920 5.011823 0.603406 -0.202652 1.687931 -0.367139 -0.861334 -0.280644 -0.764188 -2.652808 -1.884776 -0.747279 -3.957507 1.453152 4.753237 6.667530 -0.283456 0.697295 2.941706 0.102907 1.911427 3.576408 1.258178 -0.427877 -0.753373 4.169563 -4.979700 -1.179042 -8.870030 -1.187108 -11.917178 -3.104698 -1.661626 5.045238 1.207387 2.213044 -0.431068 5.294903 0.404316 -0.785119 6.090592 5.091842 -3.434071 -2.154975 -4.312460 -3.146846 2.157179 -3.512477 0.092198 2.452046 2.072671 -4.020249 -1.355354 0.675382 1.284379 -1.637863 -4.004887 -0.429568 4.445359 -5.678228 -2.917605 -1.543110 3.885385 -0.487745 -8.176889 -1.301184 -3.431178 3.781420 -0.106027 0.109985 -1.716816 0.244301 2.712852 -1.156524 -1.484842 -2.221841 3.958860 2.785494 2.172335 0.980881 1.448489 0.208883 6.069791 3.225594 -2.229751 -1.305971 0.432943 -1.246401 2.183215 -3.195710 -1.491982 3.438018 -5.079086 0.799068 2.710054 -2.195320 -2.819045 2.096718 0.618518 2.605548 14.280286 0.788290 5.622445 4.198166 -4.369301 1.483784 -0.960864 1.006789 3.149111 2.638077 -0.963525 -4.890791 -4.700561 2.328014 4.416040 3.380828 -5.482294 -1.461788 -0.456254 0.277967 -0.287344 -1.149149 2.079783 -0.380972 -3.640344 -0.519911 3.399601 7.720488 -1.608866 -1.605629 2.908900 3.133192 -3.260445 -4.905702 -2.209466 -2.338315 0.618321 1.834268 0.252444 2.361884 6.318655 -8.493862 4.177304 0.200663 1.511355 2.476166 0.736600 -3.772160 -7.270760 -0.749254 2.721909 4.722995 -1.231956 0.352213 2.396575 -4.496387 0.863571 1.111989 0.504514 -0.806229 1.915927 -0.318737 -1.757578 -3.707051 -0.098885 -1.844535 0.601473 -0.416723 2.721747 0.704411 -7.503156 4.123964 -2.036496 -3.028821 0.898802 -0.778968 5.398372 -4.716694 -5.119491 2.987229 -1.067335 -4.241246 -4.318197 1.242278 3.010522 0.902126 0.291047 -2.489097 -5.363230 4.091371 -2.735991 3.175808 2.273860 0.157964 5.236311 -0.626977 -2.201284 -5.325723 -3.027724 0.426727 -1.003643 -4.354491 -0.829684 -0.638823 4.215659 4.317201 0.246697 -2.785016 1.003283 6.228612 -4.607117 -3.139864 4.103596 2.360935 -3.828520 3.300665 4.649043 -5.776773 -0.793739 -3.084620 0.355900 -0.267471 -3.939893 3.546110 -0.184438 3.160326 0.109217 1.979212 -0.772636 2.387090 1.529170 1.069523 -0.766111 7.550815 6.601586 -2.917290 -1.268321 -4.748434 2.129251 -6.501593 -5.711988 1.542512 0.714272 -1.586752 2.239545 0.450997 5.405487 1.749568 -1.234859 -1.336405 0.588135 +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.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/permutations-of-a-given-string.cpp__main = -1.682344 -0.557977 2.008058 -4.125106 5.847987 2.035690 2.559212 -0.486642 -3.929319 -2.145677 0.632328 -2.815244 -4.109249 5.754887 -1.912109 3.931637 5.890916 0.380521 -1.087560 -1.715296 6.540815 -3.528967 7.314586 3.556834 -6.791573 -0.213602 0.042457 3.887071 1.168006 5.148646 -0.766956 -2.428735 2.553671 -3.461964 2.310245 -3.287683 2.089723 0.966960 -0.158958 -6.777435 0.188518 2.094245 -0.038275 -0.121462 -1.498374 3.132519 4.204295 5.227549 -3.048884 1.831678 4.611079 -0.712766 0.192598 2.464051 0.033544 0.559797 0.935158 -0.228427 -4.290583 -1.547890 -1.382826 -5.993380 1.946581 4.163453 6.954930 -1.394261 1.235863 4.032226 -1.598439 1.927657 2.901762 1.296190 0.662213 -1.783209 5.575329 -4.375059 -1.760200 -8.053168 -2.115024 -12.711358 -3.852417 -4.114018 3.379388 0.394014 3.504953 -1.382688 6.435783 0.771293 -0.126087 4.134228 5.583805 -4.956884 -2.027013 -6.238907 -2.474721 1.052080 -4.130955 -1.708551 3.746973 0.086349 -4.141276 -2.203734 1.893875 1.288565 -1.343466 -4.285891 -2.160077 5.564128 -5.760732 -4.051101 -4.250974 2.422861 -1.772595 -7.930352 1.284762 -1.948094 3.287954 0.028239 2.249689 -2.082057 0.862535 4.868172 -1.785549 -3.080038 -2.064711 5.988937 3.031702 0.783907 2.289407 1.306406 -0.799672 5.215013 6.467004 -1.392943 -3.476029 1.002783 -2.212440 1.886438 -2.916044 -1.031558 3.881957 -5.404020 -0.789584 2.592073 -1.498140 -0.782577 2.134438 -0.309474 4.178774 10.928114 0.111269 3.850360 1.550977 -5.103458 4.150379 -0.176479 0.132759 3.164013 3.373005 -1.315882 -5.432294 -5.206867 2.712248 3.630362 3.239629 -6.148192 -2.461960 -2.297750 1.033414 -0.569971 -1.986282 3.679726 -0.212520 -3.722792 -0.493974 0.756591 8.815089 -3.480996 -3.835398 4.909213 1.896526 -4.103151 -6.535006 -3.287949 -2.644434 -1.108464 0.011134 -0.540746 2.021891 6.704760 -8.541291 4.566387 -1.359226 -1.004055 4.044703 -1.504430 -1.490927 -7.692350 -0.810552 3.595937 5.090336 -0.370582 -0.089044 0.951985 -4.531872 2.140018 -0.272954 1.515261 -0.033713 1.758143 -1.793833 -2.987984 -4.440632 -2.117612 -1.899941 0.016695 0.045422 1.472705 2.030339 -8.805071 4.890135 -2.886564 -2.426162 2.707772 1.564174 5.070817 -3.617735 -6.137518 3.438821 -0.652911 -3.861246 -5.411141 1.811440 3.325635 -0.062984 -1.679568 -2.091301 -7.211043 3.934632 -2.361968 2.670647 1.916992 1.736115 6.468828 2.662840 -4.174677 -5.473539 -2.972917 -0.347935 -1.981555 -3.313616 -1.456186 -0.519361 4.978445 4.598262 1.251489 -0.142238 -0.901595 7.035674 -5.845440 -3.439878 5.980623 1.907910 -3.222701 3.088611 6.289608 -4.670249 -3.551631 -3.203894 0.810507 -0.391687 -4.144184 2.257565 -1.983615 1.922986 1.105985 1.961073 -1.687964 1.958572 1.336733 0.369762 -3.802894 8.980120 7.829569 -5.166633 -0.841640 -3.502401 2.256615 -6.334235 -4.275305 1.015720 1.146899 -0.884206 3.245712 2.471376 4.735441 0.564517 -1.516846 -0.764378 -3.040908 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.944690 0.419912 1.692729 -3.046449 4.226919 1.827091 1.199719 -0.670022 -2.011258 -1.176685 -0.268846 -1.941571 -2.301725 3.610730 -1.721653 2.111599 4.391711 0.378343 -0.260882 -0.883683 3.842159 -1.397348 4.838171 2.348111 -4.586349 -0.328837 1.183279 2.532356 0.792720 3.552883 -1.090200 -2.348374 1.599086 -2.093038 1.216415 -2.635335 1.301142 -0.037053 0.195851 -4.630594 0.289638 0.207208 -1.194735 0.101197 -0.637762 2.016105 3.590236 3.221954 -2.570425 0.870596 2.992874 0.800089 -0.301235 1.522543 -0.566511 0.450568 1.330336 0.332163 -2.420880 -1.054489 -0.991057 -3.092871 1.142732 3.023313 4.538081 -0.494202 0.814084 2.540184 -0.608561 0.852358 1.487903 0.834341 0.621216 0.262715 3.104816 -3.046919 -0.934026 -6.058519 -1.618537 -7.991142 -2.086833 -2.986616 0.976588 -0.519910 1.827282 -0.239866 3.891888 0.738471 0.943756 2.759860 4.066152 -3.176430 -1.266789 -4.196682 -2.132678 0.857892 -2.328302 -0.844798 1.862786 -0.049451 -2.437924 -2.455592 0.758486 0.733126 -0.924846 -2.534559 -1.055600 3.354427 -3.785560 -2.594818 -2.900320 1.030587 -1.554881 -5.586244 -0.225279 -1.111464 3.227682 -0.018753 1.503899 -2.433079 0.402856 3.740443 -1.216468 -1.716672 -0.390973 3.770740 2.352762 0.553026 1.122174 0.069149 -0.009746 3.626960 4.272331 -1.040624 -2.138085 0.421727 -1.693462 0.020102 -2.570470 -0.360736 2.230827 -3.581089 0.286991 2.922257 -1.374489 -0.706470 1.945172 -1.101744 3.135024 8.651739 -0.440707 2.314267 0.752971 -4.205201 1.650424 0.006145 -0.397326 1.548561 1.943121 0.465727 -3.901222 -3.131803 1.588597 2.265710 2.254204 -4.150068 -1.358741 -1.819688 0.198722 -0.106307 -1.513238 2.414726 -1.177080 -2.430220 -0.325985 0.984835 5.886522 -1.943223 -3.762174 2.767953 1.839388 -2.477079 -3.651618 -1.904245 -1.858077 -0.473358 0.932071 -0.565188 1.346744 4.446134 -7.124556 2.843196 -0.192523 -0.770523 2.268884 -0.594388 -1.000732 -4.067867 0.106162 3.154148 2.981680 -0.113740 0.262145 0.316535 -2.570061 1.197417 0.314517 1.576786 -0.114365 0.907406 -0.168750 -2.821951 -3.054920 -0.889045 -0.802153 -0.263304 -0.412736 1.065322 0.325306 -7.237683 3.707654 -1.812619 -1.429909 1.963490 -0.041779 3.427322 -3.092521 -4.178978 2.162852 -0.470698 -1.605352 -2.773340 1.141416 2.360154 0.489686 0.339907 -1.907981 -5.200456 1.415293 -1.331924 1.122653 1.531491 1.642562 4.344709 -0.024073 -2.082530 -4.118654 -1.849951 0.616529 -0.449683 -2.100318 -1.017821 -0.387633 3.349720 3.819993 -0.066451 -0.224704 -1.068874 3.828123 -3.965209 -1.523554 3.574295 1.673767 -2.638527 1.244686 3.706252 -2.870916 -2.495262 -1.504431 0.704698 -0.327697 -2.828121 1.047214 -1.842667 0.760852 1.295884 0.892791 -1.626232 1.437282 0.597904 0.650108 -1.823665 4.748521 5.577787 -3.362444 -0.106556 -2.181098 1.619877 -5.051522 -3.580903 1.017678 -0.569838 -0.283152 1.947154 1.081761 2.960698 -0.253670 0.152707 -0.002746 -1.859913 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/permutations-of-a-given-string.cpp__std::char_traits::length(char const*) = -0.096722 -0.045213 0.204765 -0.277349 0.182037 -0.060294 0.081948 -0.083201 -0.288270 -0.214539 0.091606 -0.286591 -0.172814 0.324777 -0.197587 0.090201 0.432303 0.138259 -0.066975 -0.216012 0.208055 -0.209370 0.446878 0.442908 -0.406809 -0.010111 0.094699 0.296655 0.236799 0.191505 0.007800 -0.164444 0.120905 -0.093997 0.120114 -0.267535 0.090564 0.079788 -0.008443 -0.511359 0.039391 -0.014510 0.105743 -0.000388 -0.016886 0.316994 0.264207 0.287020 -0.139102 0.198517 0.362074 0.096987 0.014978 0.079818 0.018305 -0.068402 0.248518 -0.097265 -0.147682 -0.001123 -0.006286 -0.343971 0.038885 0.343397 0.458152 -0.014877 0.051499 0.036609 0.020536 0.113561 0.203804 0.064308 -0.014122 0.071044 0.174263 -0.346001 0.079975 -0.735793 -0.065503 -0.959904 -0.212990 -0.155724 0.356918 0.027035 0.030658 0.116340 0.346152 0.121498 0.013729 0.221372 0.370789 -0.201987 -0.164343 -0.130021 -0.195898 0.204185 -0.239200 0.049109 0.080658 0.214210 -0.223537 -0.139192 0.185917 0.033321 -0.139697 -0.032816 -0.042303 0.248312 -0.465653 -0.112602 -0.208493 0.080003 0.067811 -0.476420 0.104333 -0.254164 0.399065 0.022522 -0.047768 -0.091381 0.013866 0.153857 -0.087880 0.019831 -0.393105 0.244930 0.095993 0.082269 0.021460 0.018513 0.064582 0.270423 0.149713 -0.229026 -0.090342 0.069401 -0.199083 0.047220 -0.295014 -0.105285 0.288597 -0.275142 0.125456 0.055223 -0.195964 -0.234847 0.183917 -0.029378 0.183742 0.670335 0.034321 0.278283 0.204750 -0.268159 0.053431 -0.057517 0.042115 0.187120 0.216149 0.003374 -0.144640 -0.288536 0.093140 0.318943 0.212673 -0.292335 -0.165872 -0.042755 0.006390 0.047372 0.013133 0.093134 -0.151714 -0.183920 -0.073819 0.149293 0.411462 -0.003034 -0.107453 0.043481 0.111836 -0.180226 -0.299978 -0.053658 -0.047225 0.103540 -0.007665 0.033724 0.165214 0.399068 -0.870327 0.301069 0.002725 0.065933 0.165200 -0.016248 -0.204466 -0.550638 0.073261 0.185138 0.318212 -0.017814 0.076468 0.196601 -0.316276 -0.029291 -0.001260 0.127424 -0.143785 0.131775 0.121774 -0.207880 -0.252010 -0.076832 -0.009458 0.012316 -0.058051 0.188265 0.082269 -0.722256 0.297119 -0.170421 -0.186049 0.019174 -0.072150 0.204790 -0.396789 -0.290060 0.085525 -0.087582 -0.237166 -0.298288 0.016060 0.189855 -0.157940 0.027775 -0.125107 -0.224554 0.189426 -0.207519 0.126750 0.139677 0.015755 0.319574 0.003620 -0.047019 -0.259577 0.092416 0.028839 -0.232718 -0.159655 0.165307 -0.054619 0.214941 0.394730 0.000000 -0.077798 0.178885 0.372993 -0.225689 -0.264347 0.195604 0.148281 -0.115828 0.300770 0.219456 -0.413800 -0.103842 -0.245007 -0.107693 0.054741 -0.228486 0.253455 -0.102066 0.167557 0.084033 0.100300 -0.138993 0.238611 0.032313 0.003074 -0.001002 0.445741 0.550241 -0.160661 0.081559 -0.321270 0.098058 -0.439212 -0.318371 0.023184 0.063264 -0.132596 0.118207 -0.076956 0.293369 0.087360 -0.010288 -0.109960 0.093829 +PE-benchmarks/permutations-of-a-given-string.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -1.533596 -0.188933 2.070476 -4.448228 5.174714 1.811431 1.646188 -0.597310 -3.243866 -1.806904 -0.126507 -2.859501 -2.943544 4.702638 -2.069150 3.075018 6.297585 0.853093 -0.872288 -1.408360 5.337265 -2.221914 6.487498 3.815006 -5.958630 -0.472085 1.378510 3.841798 1.403689 3.889753 -1.565659 -2.508836 1.996699 -3.096590 1.792116 -3.809600 1.838984 0.384651 0.436876 -6.479256 0.539118 0.255220 -0.967649 -0.085041 -1.107647 3.163708 4.387852 4.536904 -3.466550 1.033785 4.562273 0.762600 -0.470532 2.044075 -0.782227 0.748596 1.524815 0.660179 -3.018401 -1.606687 -1.011034 -4.435743 1.857609 4.038780 6.115844 -0.793316 0.906493 3.443399 0.008280 1.067687 2.459258 1.028611 0.707888 -0.560039 4.174598 -4.953836 -1.080873 -8.962505 -1.780991 -11.727424 -3.039106 -3.745751 2.117254 -1.058651 2.433758 -0.350272 5.640201 0.427712 1.017395 3.675555 5.073801 -4.505375 -1.914810 -5.637837 -2.833899 1.492185 -3.360231 -1.344629 3.027311 0.498910 -3.347958 -2.811032 1.425811 0.977363 -1.406005 -3.625778 -1.139409 4.553277 -4.925551 -3.524395 -4.022641 2.026300 -1.483401 -7.393903 0.452778 -2.123992 4.321246 -0.277654 1.427611 -3.117508 0.366892 4.445925 -1.832007 -2.034030 -1.334656 5.033172 3.041637 0.562854 1.649014 0.169569 -0.023841 4.978646 5.664532 -2.097587 -2.995241 1.018613 -2.857329 0.285633 -3.904844 -0.941036 3.818782 -5.023587 0.234651 3.399095 -2.123451 -0.992220 3.633554 -1.007319 3.956643 11.951805 -0.234793 3.301805 1.536310 -5.142162 2.867323 -0.161580 -0.308044 2.437838 2.880413 0.120083 -5.657157 -4.493210 2.115355 3.552625 3.299997 -5.727807 -2.118346 -2.072503 0.511285 -0.144752 -2.039809 3.175723 -1.255936 -3.120351 -0.623260 1.595107 7.955713 -2.322621 -4.176990 3.520316 2.658143 -3.572467 -5.663425 -2.663875 -2.902218 -0.535671 0.959037 -0.420837 2.173748 6.269885 -9.677430 3.839407 -0.612712 -0.650154 3.373769 -0.562713 -1.589369 -6.565079 -0.028215 3.881327 4.643687 -0.568705 0.521262 0.858252 -3.700302 1.272050 0.386126 2.009677 -0.313273 1.254204 -0.210369 -3.273636 -3.637295 -1.232123 -1.308848 -0.352426 -0.088416 1.716476 0.408836 -9.371288 4.971517 -2.557247 -1.953305 2.551834 -0.292036 4.603952 -4.381431 -5.396002 3.228607 -0.131979 -2.008161 -4.044928 1.603954 3.715034 0.041946 0.090349 -2.499431 -7.067443 2.598812 -1.955119 2.144029 1.891014 1.582129 5.666096 0.356059 -2.480476 -5.552136 -2.087647 -0.157435 -0.967751 -3.014247 -1.428898 -0.403998 4.506297 5.013331 -0.076512 -0.039064 -0.471306 5.384562 -5.609036 -2.297984 4.651064 2.652902 -3.413030 2.421393 4.981286 -4.679496 -3.270843 -2.509214 0.652339 -0.143000 -3.949050 1.954243 -2.315929 1.470900 1.763964 1.310239 -1.651017 2.186187 1.169803 0.794625 -2.369426 7.007043 7.872776 -3.887195 -0.383049 -3.500496 2.140796 -6.764878 -4.748907 1.297203 -0.137715 -1.012261 2.595044 1.848904 4.337018 -0.331295 0.044633 -0.473998 -2.134621 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.283003 0.165987 0.499465 -1.142342 1.220625 0.704424 0.075645 -0.123326 -0.679680 -0.324561 -0.372602 -0.592827 -0.567202 1.100454 -0.363173 0.615590 1.090408 -0.019016 -0.243929 -0.152621 1.103728 -0.073765 0.975556 0.241135 -1.121614 -0.065685 0.335288 0.906334 0.148267 1.195006 -0.288495 -0.853531 -0.095973 -0.157012 0.349332 -0.693630 0.474407 0.264768 -0.033366 -1.230488 0.161043 0.341356 -0.180475 -0.028582 -0.265902 -0.120132 0.840508 0.868136 -0.690255 -0.112404 0.991558 0.660838 -0.266290 0.331147 -0.262979 0.219090 0.417405 -0.353258 -0.484398 -0.329634 0.005623 -0.468980 0.288628 0.725874 1.080322 -0.180423 0.100241 0.748072 -0.037316 0.240894 0.263736 0.115364 -0.120998 0.006430 0.568156 -0.535017 -0.238678 -1.337223 0.096689 -1.578389 -0.408279 -0.769353 0.127992 0.573364 0.237025 -0.166495 1.201582 -0.166576 0.151835 0.813509 1.034833 -0.608865 -0.203220 -1.494019 -0.792068 0.382795 -0.527087 -0.615532 0.048852 0.399163 -0.387494 -0.633155 -0.084792 0.006652 -0.311727 -0.516148 -0.390198 0.945086 -1.065783 -0.540861 -0.557597 0.882321 -0.296454 -1.316286 -0.564752 -0.435001 0.236998 -0.374780 0.524091 -0.674490 0.053504 0.890499 -0.514342 -0.183680 -0.503277 0.813564 0.686005 -0.275125 0.200638 -0.081657 0.157274 0.832385 0.608394 -0.543158 -0.735297 0.385994 -0.108832 -0.319227 -0.841485 0.033877 0.174212 -0.992554 0.095620 0.882711 -0.291323 -0.121915 -0.182259 -0.585014 0.836058 2.567308 -0.122271 0.308539 0.025250 -0.971592 0.512206 0.269576 -0.411134 0.326076 0.147623 0.198522 -0.693673 -0.865762 0.518357 0.590953 0.667700 -0.566205 -0.242408 -0.487927 -0.183996 0.062285 -0.324050 0.685340 -0.621701 -0.378479 -0.295071 0.142681 1.517054 -0.103874 -0.938541 0.934253 0.927326 -0.902615 -0.548548 -0.472979 -0.711311 -0.325258 0.453462 -0.259347 0.663659 1.250429 -1.979051 0.819790 0.460199 -0.320302 0.377103 -0.489020 0.065271 -0.834925 -0.180259 0.950125 1.047042 -0.451753 0.374573 -0.171086 -0.714490 0.339546 0.281189 0.361181 -0.085868 0.065738 0.019564 -0.613376 -0.611479 -0.042574 -0.631768 0.050706 -0.304550 0.165281 0.028851 -1.740824 1.134855 -0.539278 0.117693 0.568086 -0.102046 0.966028 -0.740322 -0.922193 0.684452 0.302108 -0.219138 -0.330247 0.370305 0.941895 0.031899 0.360940 -0.485425 -1.386936 0.141659 -0.204835 0.182345 0.294987 0.403150 0.492204 0.043706 -0.270049 -0.883293 -0.602173 0.230685 0.155697 -0.303751 -0.077014 0.033039 0.844821 0.799839 0.006423 -0.265852 -0.344694 0.936783 -0.516429 -0.310484 0.718015 -0.296379 -0.935508 0.166993 0.921688 -0.662377 -0.717651 -0.709834 0.616399 -0.147067 -0.797058 0.172258 -0.326591 0.088183 0.669422 0.018782 -0.656607 0.531562 0.371473 -0.202031 -0.526709 1.472731 0.679297 -0.452805 0.269608 -0.669102 0.366745 -1.278334 -0.772667 0.086181 -0.420159 -0.142093 0.454790 0.067288 0.761949 -0.334072 0.811739 0.155777 -0.686819 +PE-benchmarks/permutations-of-a-given-string.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/overlapping-subproblems-property.cpp___initialize() = -0.374530 -0.612600 -0.211230 -0.980185 0.409031 0.126327 0.255038 -0.259385 -1.206874 -0.147840 0.175336 -0.697827 0.279186 1.112292 -0.144853 1.078909 1.429263 0.504902 -0.416410 -0.029117 1.154063 -0.865859 0.970480 1.060282 -0.566480 -0.068496 -0.168319 0.554998 0.086944 0.508871 0.036739 -0.275598 0.168887 -1.220073 -0.095835 -1.177801 0.216540 0.874075 0.818775 -1.563981 0.411036 0.197171 0.774413 -0.366065 -0.375460 -0.200585 0.267075 0.776299 -0.255478 0.314907 0.702960 0.092321 -0.116090 0.259572 0.226820 0.666640 0.014446 -0.060201 -0.387547 -0.231077 -0.026441 -0.370541 0.681666 0.617699 1.018925 -0.009698 0.056873 0.593884 0.212651 0.183495 0.687705 -0.070589 -0.714694 -0.569173 0.237448 -1.669230 -0.007958 -1.789379 -0.021093 -1.966491 -0.432346 0.146094 0.690186 0.272113 0.560712 0.125779 0.704954 -0.523196 -0.139458 0.770087 0.629487 -0.703759 -0.401357 -0.741281 -0.643968 0.379935 -0.335361 -0.502632 0.713222 0.250773 -0.589023 -0.352845 0.639006 0.580707 -0.254815 -0.731225 0.301833 0.786808 -0.820427 -1.103028 0.125483 0.901068 -0.463799 -1.104685 0.401447 -0.969765 0.058794 -0.057804 -0.301981 -0.894181 0.094876 0.484425 -0.276322 -0.401544 -0.599875 0.675256 0.094181 0.186151 0.091823 -0.145404 -0.155604 1.273898 0.281149 -0.727150 0.105822 0.362059 -0.457917 0.168161 -0.840082 -0.799221 0.338026 -1.076529 -0.186549 0.432427 -0.549167 0.010537 1.003106 0.485091 0.292808 3.004369 0.155298 1.114495 0.726079 -0.719237 0.752971 0.014731 0.154021 0.362357 0.473342 -0.300754 -1.499788 -0.835422 0.139998 0.717864 0.811124 -0.645243 -1.023563 -0.434149 -0.118838 0.613715 -0.237805 0.104638 -0.150794 -0.799098 -0.170022 0.246275 1.929108 -0.108817 0.540239 0.463081 0.453737 -1.163082 -1.678599 -0.423692 -1.300189 0.119637 -0.447536 -0.164506 0.494460 1.066138 -1.552088 0.875731 -0.486119 0.106836 0.551342 0.080694 -0.751586 -2.098952 -0.521332 0.348977 1.435035 -0.661850 0.482654 0.561867 -0.668830 -0.039119 0.001157 -0.053914 -0.204061 0.242553 -0.117077 -0.454289 -0.167317 0.673362 -0.462301 -0.403784 0.204268 0.437662 0.503437 -0.639388 0.572826 -0.140092 -0.143655 0.624497 0.174265 0.667850 -0.703027 -0.675952 0.616450 0.460911 0.140985 -0.477932 0.197420 0.847281 -0.152010 -0.302336 -0.119793 -1.076354 0.335158 -0.632335 0.563750 0.315549 -0.403058 0.248438 0.222330 -0.114513 -0.917281 -0.292156 -1.020155 -0.219981 -0.601307 -0.479196 -0.167179 0.912954 0.566157 0.364849 -0.524229 0.455290 1.266899 -0.439275 -0.156217 0.642341 -0.219096 -0.858164 0.049220 0.847237 -1.366147 0.016020 -0.371646 0.274542 0.110924 -0.401360 0.672679 0.250315 0.527397 -0.243869 0.190380 0.102157 0.375160 0.594608 0.157936 0.024760 1.468151 0.450457 0.074344 -0.393848 -0.589313 -0.015890 -0.896910 -0.667798 -0.042719 0.753030 -0.924140 0.419872 0.448392 1.113144 0.086227 0.434004 0.103784 -0.210046 +PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -1.656687 -2.362425 -0.794655 -4.197489 2.179390 2.673997 1.336465 -2.901170 -4.438296 -0.185155 2.443220 -4.325159 0.098940 4.574696 -1.489275 4.363526 4.802055 0.522134 -2.868250 -0.504704 4.178179 0.859623 5.252127 4.625009 -3.298836 -0.194410 -0.995149 1.546570 1.816892 0.043427 0.930547 -1.208693 2.068984 -4.200985 -1.698934 -1.884935 0.446775 1.816547 4.112754 -4.870478 1.299047 0.271752 0.870753 -1.166485 -1.204327 -0.644396 1.913262 3.642866 -0.289863 1.599439 3.204814 0.673346 -0.350830 0.909402 0.915987 0.480877 0.252226 -1.103818 -1.000356 -2.419316 -0.136648 -0.025728 0.897652 3.698239 4.115608 0.436481 -0.399761 2.716041 1.685472 0.995079 2.899073 0.807088 -1.914602 -0.188809 1.255075 -4.910827 0.253358 -5.042676 -0.555717 -5.319185 -2.095731 1.462589 3.288222 0.813549 2.398347 0.262646 3.634010 -0.802537 -2.122732 3.525738 3.621338 -3.291078 -1.648264 -1.632535 -2.121646 1.186778 -1.945737 0.735543 1.223190 1.463908 -3.292946 -0.831082 0.538509 1.930207 -1.604400 -2.667095 1.440533 2.771716 -2.932596 -2.938666 1.690374 4.150240 -0.941833 -5.651118 -1.696943 -3.170369 1.763335 -0.594310 -1.640531 -3.220202 0.238105 1.190456 -1.070982 -1.751090 -1.183305 1.309732 2.359671 2.366248 -0.065021 0.785808 0.984958 6.390310 -0.091892 -2.878496 0.914506 -0.370478 0.200656 2.613909 -1.799061 -2.046345 0.378050 -3.844339 0.687414 2.923535 -2.077616 -0.911436 2.082357 2.361127 0.047238 11.384241 0.605453 5.073400 4.341191 -3.248974 -0.174531 -1.845106 0.835420 1.597837 1.134962 -0.683170 -4.549399 -3.768712 2.403645 4.059878 2.975197 -3.477194 -0.703756 0.273403 -0.434677 -0.020917 -0.271036 0.566624 0.342038 -3.029059 -0.875593 3.391007 6.369406 -1.234640 0.480342 2.036891 1.854760 -1.714568 -3.017794 -1.957899 -2.761222 1.164299 1.683805 0.831285 2.474181 4.805453 -4.522187 3.266754 -0.230231 0.736720 2.381350 1.876359 -4.359555 -3.395919 -1.741829 1.497068 3.577207 -2.138013 0.824690 2.438124 -3.559597 -0.339991 0.937442 -1.100588 -0.977379 1.390754 1.043602 -1.053386 -1.325303 2.067326 -1.088680 -0.393345 -0.104744 3.063178 0.243137 -3.636692 2.930887 0.193761 -1.845048 0.979612 -1.615912 4.433867 -3.259210 -2.781818 2.642746 -0.132995 -1.092470 -1.297069 0.852575 2.377922 0.975637 1.898867 -2.649951 -2.416912 2.434530 -1.708963 3.278398 1.678711 -1.117551 1.233694 -2.878779 -0.507274 -3.024146 -2.675052 -0.563559 0.871369 -3.807136 -0.858603 -0.847875 3.727480 1.940059 0.187032 -3.720088 1.015871 3.418765 -3.628598 -0.705887 2.091381 1.972207 -4.405505 0.991106 2.822000 -3.979282 1.377776 -1.476382 -0.486180 -1.597901 -2.588122 3.429474 2.166084 3.054013 -1.016591 0.977525 0.833834 1.861289 1.483661 0.869952 1.400846 4.625194 2.597104 -0.146600 -2.173468 -4.163837 1.632805 -4.208199 -4.671095 2.385586 0.548329 -3.373957 0.374292 -0.291599 4.797879 1.477906 -0.500151 -1.026870 1.499788 +PE-benchmarks/overlapping-subproblems-property.cpp__main = -0.533342 -0.677390 0.348641 -1.612024 0.792587 0.240183 0.478838 -0.501145 -1.749279 -0.597393 0.702833 -1.697966 -0.478157 1.763412 -0.610815 0.868765 2.055360 0.468544 -0.841495 -0.484596 1.319319 -0.281830 1.942168 1.949080 -1.495154 -0.019737 -0.324829 1.005992 0.816846 0.432833 0.405400 -0.603038 0.527925 -0.810501 0.017199 -0.995967 0.200162 0.601081 0.572488 -2.277394 0.436411 0.469275 0.567856 -0.336566 -0.189623 0.752373 0.990587 1.373808 -0.432223 0.609639 1.377547 0.256246 0.010942 0.331254 0.267302 -0.213861 0.503614 -0.350427 -0.614958 -0.463649 -0.074377 -0.776638 0.282265 1.468610 1.814886 0.086632 -0.078645 0.443649 0.570764 0.544595 1.065421 0.275952 -0.251421 -0.089105 0.672427 -1.410923 0.167937 -2.568088 -0.035769 -3.430093 -0.969350 0.103730 1.951011 0.475909 0.220013 -0.131551 1.498667 -0.055083 -0.445892 1.435351 1.551583 -0.804863 -0.701612 -0.756846 -0.975477 0.800651 -0.803449 0.113947 0.640748 0.846184 -1.235981 -0.161964 0.372438 0.282243 -0.633661 -0.370595 0.294978 1.220032 -1.544070 -0.576025 -0.019289 1.352705 0.285513 -2.208921 -0.202078 -1.284761 0.877783 -0.072190 -0.586371 -0.483037 0.130568 0.250007 -0.553139 0.022271 -1.548348 1.052871 0.496346 0.667097 0.030759 0.314536 0.326409 1.533288 0.146566 -1.161725 0.114024 0.113048 -0.311925 0.653940 -1.034849 -0.695018 0.855931 -1.300328 0.290205 0.436017 -0.902212 -0.754999 0.392808 0.523307 0.327407 3.951018 0.155220 1.817870 1.361569 -1.097325 0.395141 -0.240433 0.232591 0.696550 0.753986 -0.128125 -1.136547 -1.400335 0.736774 1.607956 1.159595 -1.323721 -0.297169 0.059953 -0.185479 0.074445 0.124967 0.229821 -0.105905 -1.064126 -0.379763 1.056972 2.181155 -0.080483 -0.402553 0.439145 0.772312 -0.634767 -1.180168 -0.418971 -0.499076 0.431029 0.254347 0.155100 1.019985 1.908227 -2.914763 1.442831 0.140792 0.360556 0.941160 0.264468 -1.400137 -2.250485 -0.401790 0.705744 1.675048 -0.470727 0.049339 0.868317 -1.419589 -0.151481 0.262964 -0.028618 -0.510365 0.600608 0.246566 -0.406449 -0.669198 -0.031934 -0.437367 0.170892 -0.278274 1.033512 0.288110 -2.121788 1.251389 -0.295167 -0.675996 -0.043027 -0.472499 1.170982 -1.439970 -1.208531 0.592137 -0.219229 -1.144168 -1.114381 0.166765 0.914235 -0.153414 0.396174 -0.759574 -1.105941 1.282671 -0.928565 1.172916 0.688523 -0.334993 0.991781 0.118499 -0.195674 -1.114982 -0.587862 0.034458 -0.340576 -1.161565 0.314111 -0.371182 1.103225 1.112246 -0.026789 -0.996653 0.443423 1.613255 -0.968793 -0.835632 0.890148 0.111685 -1.089321 1.057881 1.171800 -1.793525 0.144903 -1.071515 -0.360003 -0.250862 -0.951009 1.263926 0.356398 0.938346 -0.092247 0.329746 -0.178193 0.809287 0.429440 -0.006484 0.338188 2.099405 1.707034 -0.380836 -0.079996 -1.551947 0.669865 -1.769600 -1.553232 0.441678 0.160880 -1.007509 0.304912 -0.187501 1.590383 0.485246 -0.175991 -0.564433 0.785000 +PE-benchmarks/largest-independent-set-problem.cpp__max(int, int) = -0.506122 -0.740676 -0.092479 -0.956983 0.649825 0.207414 0.291580 -0.471655 -1.190386 -0.148388 0.406858 -0.696922 0.190655 1.115358 -0.282880 1.112725 1.249664 0.371480 -0.400063 -0.264940 1.142007 -0.647114 1.021565 1.083318 -0.746963 -0.080175 0.034822 0.395253 0.199163 0.324390 -0.082814 -0.464549 0.350031 -1.199372 -0.152985 -0.876810 0.101927 0.817838 1.073442 -1.353169 0.312326 -0.045471 0.230859 -0.210599 -0.333802 -0.051947 0.274627 0.730369 -0.372357 0.721092 0.845958 0.060387 -0.158821 0.182223 0.229212 0.528689 0.074788 0.228805 -0.297129 -0.277958 -0.200646 -0.129448 0.562662 0.669301 0.958174 -0.126394 -0.032565 0.604041 0.249997 0.205221 0.756756 0.107795 -0.467309 -0.483222 0.462818 -1.608805 -0.185725 -2.250096 -0.104758 -1.997042 -0.501536 0.288764 0.727434 -0.143931 0.548286 0.231379 0.949589 -0.360150 -0.422999 0.781694 0.772085 -0.787932 -0.366914 -0.442777 -0.758083 0.167415 -0.336955 -0.185220 0.524062 0.214089 -0.696943 -0.617000 0.505273 0.433607 -0.278845 -0.922592 0.202077 0.794928 -0.844851 -0.999061 0.044497 0.952872 -0.316027 -1.100827 0.099641 -0.839065 0.486328 0.039285 -0.512514 -0.850455 0.144883 0.418850 -0.368446 -0.442503 0.060461 0.540371 0.456343 0.428563 0.045953 -0.132273 -0.052393 1.359160 0.382634 -0.822255 0.074896 0.237945 -0.198805 0.448569 -0.726989 -0.602684 0.349131 -0.902411 0.126163 0.402259 -0.562015 -0.174589 1.304047 0.393664 0.051418 2.607624 0.091899 1.083710 0.829862 -0.744184 0.439688 -0.160003 0.338476 0.511116 0.600647 -0.276385 -1.200466 -0.941141 0.462447 0.853283 0.754777 -0.943990 -1.073251 -0.152318 0.043447 0.446368 -0.143730 0.136242 -0.043031 -0.717414 -0.139966 0.328975 1.723028 -0.353570 -0.006057 0.423087 0.650826 -0.774830 -1.373721 -0.468551 -1.362802 0.149362 0.106994 0.033910 0.529739 1.202386 -2.012777 0.780618 -0.487137 0.113236 0.453633 0.468709 -0.803172 -1.800127 -0.475861 0.261413 1.154996 -0.336851 0.546117 0.684322 -0.755124 0.033065 0.030223 -0.068953 -0.397678 0.415001 -0.012869 -0.525673 -0.150429 0.566993 -0.453443 -0.431849 0.130630 0.582824 0.344441 -1.241049 0.549916 -0.002728 -0.265210 0.573103 0.100819 1.073758 -0.641958 -0.810822 0.713610 0.152472 0.078566 -0.417744 0.178091 0.641573 -0.097251 0.001049 -0.327502 -0.967254 0.403576 -0.531552 0.753306 0.345348 -0.462686 0.500581 -0.424639 -0.219763 -0.842052 -0.182769 -0.292690 -0.114670 -0.572793 -0.674023 -0.103517 0.860380 0.528980 0.391663 -0.567662 0.161387 1.110284 -0.871347 0.039877 0.677753 0.391029 -0.770002 0.284146 0.845753 -1.098053 0.146494 -0.432074 0.190191 -0.217347 -0.337142 0.828197 0.311263 0.548466 -0.360405 0.231022 0.142318 0.466226 0.605515 0.240671 0.034637 1.240318 0.941659 -0.183660 -0.471459 -0.737943 0.161761 -0.901649 -0.856758 0.142935 0.523899 -0.958288 0.190591 0.081170 1.165604 0.200931 0.233877 -0.049789 0.080679 +PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -6.813897 2.460720 2.945956 -16.507908 15.829676 17.995795 4.954653 -9.485888 -14.003009 -1.442730 2.774412 -18.216698 -8.038909 21.559296 -7.521470 10.983286 25.170926 1.756726 -8.382877 -0.227739 17.915629 3.871180 23.752164 19.626999 -17.818543 -1.030434 6.543682 4.707848 1.227331 11.596259 -6.624510 -17.896632 7.020662 -10.969518 -1.616203 -9.216910 1.505757 -1.278760 11.892385 -23.911181 4.058154 1.768941 -3.120826 -6.102895 -5.051772 -1.411959 20.750815 15.769241 -6.231115 -0.965268 13.725627 8.991525 -5.149731 3.919781 5.430686 3.350005 6.619229 5.776457 -6.184562 -9.337569 -3.449188 0.836360 -0.155438 19.033758 20.263753 4.332698 -0.264936 8.260388 0.668677 3.390615 3.289836 3.901262 2.777139 7.540490 7.956904 -12.918147 -2.649629 -28.578181 -3.186005 -27.915342 -9.245629 -3.548643 5.056595 -1.576518 10.090439 -2.500155 19.480974 -2.224927 -0.482877 14.833234 25.923271 -16.503470 -6.941945 -13.959380 -15.439848 4.695819 -8.502375 3.775565 4.757944 -3.450283 -16.287806 -16.039104 0.296925 7.775663 -6.729226 -9.529437 3.364385 12.966975 -12.214467 -8.744326 -4.316694 8.361251 -4.265413 -29.572737 -14.586700 -10.655933 6.790875 -0.636658 -7.251290 -20.885772 3.593317 13.107899 -8.754289 -11.306903 2.180002 12.481248 11.995495 5.913880 1.424527 -4.021811 7.931294 24.582547 8.565513 -11.467899 1.311597 -3.715909 -4.690718 2.151645 -11.793881 -4.423515 3.316934 -15.101875 6.027544 17.682607 -10.610924 -2.745853 9.264349 -2.546223 7.805746 57.603984 -4.598243 17.919781 8.103682 -22.980663 5.987383 -4.866424 -5.916430 1.476115 8.761546 7.276279 -21.050389 -15.950323 14.247643 19.441524 13.750061 -17.103008 -0.908957 -2.983392 -3.558822 -3.953303 0.461311 4.000039 -3.047172 -13.703834 -6.486036 16.032040 32.574924 -9.165592 -17.222830 10.916427 13.475836 -2.435705 -9.243823 -6.928866 -13.472102 4.221117 10.329105 -2.684017 15.204954 24.305752 -36.283713 15.982955 -0.428669 -6.679840 13.055572 4.600006 -14.239102 -7.478749 1.718509 17.929846 17.162151 -0.365963 1.492555 0.806878 -16.052538 -1.967661 3.821029 4.048243 -6.690597 7.893600 4.307598 -15.602087 -13.419029 -0.920395 -4.993968 -8.131791 -6.340394 9.607415 -2.272403 -31.875949 24.349117 3.165653 -2.771856 1.557300 -8.511287 13.393575 -17.252183 -22.235394 10.980845 -2.220162 -1.275027 -1.533971 1.628430 12.560326 8.120192 13.727739 -14.236644 -23.906499 10.904333 -1.064128 16.609886 7.305113 5.873088 11.799338 -6.861927 -3.820167 -18.394849 -12.484667 9.400126 4.940084 -18.140887 -5.941389 -5.878503 18.030895 14.804280 -3.840277 -12.185748 -8.840746 15.298069 -14.575519 -0.269213 11.715457 7.598714 -19.994215 -2.025002 15.057027 -13.153363 -5.031367 -9.412690 -0.977835 -10.448575 -17.780146 5.446533 -1.312393 6.983788 5.608608 -0.729957 -3.514949 6.159816 5.182109 2.517674 4.262456 16.807575 14.128382 -10.315471 -1.052778 -18.475221 10.031609 -25.259540 -24.933354 11.628950 -8.209228 -11.529006 -1.124346 -1.492634 16.058192 -2.637115 5.511654 -1.397432 0.376252 +PE-benchmarks/largest-independent-set-problem.cpp__newNode(int) = -0.217513 -0.148705 0.953472 -0.898964 0.459616 -0.166031 0.220494 -0.022834 -0.903559 -0.328777 0.040231 -0.592796 -0.327404 0.953300 -0.362413 0.088984 1.385942 0.578349 -0.311716 -0.533916 0.634164 -0.877715 0.977866 1.192741 -0.935792 0.026638 0.286458 0.804879 0.541503 0.893752 -0.546393 -0.189742 0.033067 -0.276113 0.597399 -0.961460 0.037236 0.184502 -0.150057 -1.567447 0.191267 0.086062 0.317447 -0.120675 0.064308 1.054185 0.802167 0.648174 -0.331162 0.252517 0.706068 -0.026081 0.098256 0.137283 0.434633 0.348552 1.184404 0.552231 -0.431097 0.158145 -0.191820 -0.809625 0.379705 0.830834 1.066396 0.022586 0.003227 -0.150652 0.331586 0.182531 0.451685 0.128370 0.022520 0.045342 0.440256 -1.125516 0.475329 -1.982023 0.026818 -2.453057 -0.568050 -0.401364 0.869826 -0.423730 0.054608 -0.053805 0.924237 -0.075581 0.141503 0.277612 0.969961 -0.554729 -0.392064 -0.505964 -0.647915 0.338903 -0.389726 -0.239189 0.664357 0.179670 -0.617997 -0.355386 0.717147 0.174367 -0.326342 0.321798 -0.023538 0.907040 -0.927682 -0.383108 -0.675711 0.215924 0.100850 -1.131070 0.471309 -0.815184 0.827056 0.078209 -0.409912 -0.460045 0.245131 0.627134 -0.468741 0.074589 -0.945866 1.152066 0.128658 0.042078 -0.038610 -0.132790 0.007559 0.308305 0.785697 -0.680702 -0.068852 0.366718 -0.912811 -0.132105 -0.875310 -0.393392 0.873995 -0.611520 -0.179594 0.038353 -0.594804 -0.050008 0.893507 0.114820 0.490274 2.415206 -0.212684 0.703281 0.219891 -0.702223 0.792812 0.373384 0.072392 0.336790 0.716645 0.132767 -1.275319 -0.743637 0.240677 0.895823 0.634336 -1.038628 -0.582067 -0.423461 -0.197106 0.359966 0.087113 0.072801 -0.355344 -0.531309 -0.282655 0.037746 1.469048 -0.226393 -1.159200 -0.020630 -0.098076 -0.556264 -1.200917 -0.083696 -0.235274 0.266387 -0.499166 -0.163208 0.684719 1.068610 -2.646242 1.007125 -0.395650 -0.356349 1.104304 -0.229339 -0.282727 -1.705712 -0.070889 0.538374 1.218974 0.166826 -0.413987 0.427157 -0.813193 -0.079743 -0.148107 0.509259 -0.453342 0.411468 0.249785 -0.687889 -0.437301 -0.572906 -0.028841 -0.137629 -0.219712 0.369282 -0.183027 -1.921117 0.849105 -0.138483 -0.147442 0.247287 0.049430 0.033239 -0.883001 -0.865512 0.128949 0.186212 -0.405241 -0.929567 -0.114140 0.664210 -0.413988 -0.047319 -0.538520 -1.174097 0.549693 -0.765642 0.700996 0.370336 -0.050481 0.987569 0.945480 -0.065355 -0.770569 0.249325 -0.106711 -0.456528 -0.340248 -0.078770 -0.275437 0.608896 0.927313 -0.018943 0.267599 -0.011849 1.161898 -0.610766 -0.545009 0.542978 -0.032711 -0.253605 0.547907 0.701724 -1.094517 -0.441530 -0.600064 -0.696625 0.065691 -0.386322 0.614460 -0.384236 0.314199 0.109263 0.152352 -0.345483 0.393255 0.086787 -0.114316 0.075224 1.237853 1.720267 -0.532061 0.306092 -0.699306 0.521657 -1.049689 -0.546243 -0.146270 0.164785 -0.503122 0.305003 0.217603 0.716852 0.131331 -0.116543 -0.111531 0.116522 +PE-benchmarks/largest-independent-set-problem.cpp__main = -2.195536 0.830702 4.309274 -6.536658 4.725954 2.601798 1.739941 -1.647984 -5.574169 -2.361418 0.577994 -6.749282 -4.200527 7.741202 -2.876494 1.130679 9.715678 1.925287 -2.854778 -1.677148 5.427113 -1.498698 8.084976 7.930034 -6.967946 -0.182793 1.939227 3.904431 2.106438 5.151056 -2.205790 -4.767241 1.349351 -1.257661 2.311488 -4.336398 0.440757 -0.341512 0.360223 -9.961139 1.412791 1.724227 0.624830 -1.770419 -0.598565 4.123234 7.740264 5.532223 -2.659420 -0.542713 5.174817 2.148683 -0.643069 1.300148 2.306466 -0.034380 5.200554 2.336273 -2.899781 -1.579562 -1.432380 -2.903350 0.496878 7.083279 7.896638 1.355442 -0.038626 0.616134 1.200840 1.831159 1.613781 1.345574 1.879205 2.313918 3.171252 -4.429845 1.070070 -11.951128 -0.286129 -14.744452 -3.959462 -2.297622 4.768942 -0.455191 0.944585 -1.705360 7.239359 0.038732 0.543211 4.643490 9.382246 -4.197376 -2.684785 -4.879817 -5.600534 2.619577 -3.089393 0.528253 2.969954 0.544723 -5.662294 -3.589234 1.357990 1.205451 -2.519361 0.156854 0.557405 5.615989 -5.631153 -1.229205 -3.270957 2.305112 0.970629 -10.440351 -1.905470 -4.804446 3.598307 -0.057491 -2.829391 -4.400810 1.544958 3.814202 -3.508270 -0.876984 -4.887787 6.866265 2.549272 1.312669 0.151497 -0.760402 2.153252 4.752599 3.629479 -4.524495 -0.014624 -0.197920 -3.786555 -0.167261 -5.191785 -1.728944 4.363376 -4.660656 0.747168 3.260674 -4.156419 -1.764059 2.446592 -0.976533 3.465856 19.098260 -1.938314 6.081539 2.269074 -6.974451 3.986433 0.492595 -1.646412 1.047659 4.128486 2.635225 -6.755355 -5.827920 4.352876 7.269984 4.975040 -6.390304 -0.553660 -1.350575 -1.609139 -0.675649 0.913069 1.118277 -1.873265 -4.512350 -2.542687 4.266228 10.439385 -1.940453 -8.163323 2.202248 3.046799 -1.070015 -4.485183 -1.337570 -1.952853 1.711586 0.738689 -1.150420 5.723513 8.831486 -16.434787 6.806719 0.203487 -2.136068 6.227486 -0.471345 -4.040408 -7.451412 0.633129 6.290148 7.237685 0.596087 -1.788866 0.748379 -6.142697 -0.810238 0.632596 2.721689 -2.919628 2.961446 1.305843 -4.821161 -4.775967 -3.489109 -1.413549 -1.155913 -2.741767 3.218615 -0.784763 -12.905284 8.738876 -0.082776 -0.862351 -0.606934 -2.300083 2.302348 -6.662424 -7.710004 1.973197 -0.940960 -3.369775 -3.949033 0.033503 4.508302 0.096967 2.839862 -4.704598 -8.391094 5.184864 -2.760063 5.948135 2.734700 1.868410 6.016744 3.424921 -0.954612 -6.032309 -2.143879 2.629004 -0.634521 -5.302924 -0.023952 -2.127951 5.183480 6.250684 -1.774825 -1.931277 -1.868396 6.624227 -4.122174 -2.880886 4.227071 -0.089659 -4.894477 2.222014 5.450804 -5.924055 -2.816220 -5.021150 -2.694240 -2.340757 -5.665986 2.602548 -1.562913 2.018121 2.260412 -0.159619 -2.527136 2.592994 1.309730 -0.370060 1.376591 7.582937 8.604335 -4.195842 1.692580 -6.507497 4.096807 -9.153757 -7.281420 2.331122 -2.048650 -3.152736 0.337010 -0.189917 5.231253 -0.372284 0.652360 -1.197971 1.429182 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__printMaxSubSquare(int (*) [5]) = -5.815212 -6.482203 -3.118196 -14.806812 8.631223 12.692526 4.585112 -8.366486 -15.772264 -2.030985 6.237252 -15.858417 -0.172662 16.776859 -4.670127 15.627393 23.117380 2.510785 -8.712614 0.135019 16.763134 -3.162058 19.935807 18.988952 -11.463313 -1.222931 -1.651397 7.902056 3.280959 4.087936 1.778532 -7.620694 6.661275 -17.119187 -5.422348 -12.006287 2.534153 6.168074 13.953493 -23.048901 4.645200 0.961578 1.174274 -5.001761 -5.497459 -2.181366 9.585716 12.961795 -2.030389 3.766289 11.301696 2.854195 -2.879191 3.633395 3.136251 4.115289 2.517819 0.634729 -4.829138 -7.830122 -0.669719 -1.831644 4.350273 12.662724 17.369475 1.543339 -0.144816 10.782019 3.351429 2.664168 8.826566 1.604695 -6.748405 -1.142007 4.840994 -22.764279 -1.159966 -23.061301 -2.672183 -24.163533 -7.850479 2.553824 9.314664 1.987062 9.728060 -0.581134 12.453455 -4.723070 -4.650084 14.270517 15.258151 -13.241391 -6.283699 -9.899275 -7.771135 4.302582 -7.168404 -0.080518 8.801098 2.292779 -11.582309 -5.233664 7.052616 8.560305 -5.021462 -12.809723 4.728392 11.532072 -10.736796 -13.083704 3.236983 14.655767 -5.296767 -22.561259 -4.307718 -13.141613 5.024185 -0.986138 -4.916536 -15.388160 1.262046 7.875868 -3.443220 -8.485029 -2.028709 10.496909 8.491386 6.716832 1.218315 1.690466 3.212552 24.272168 3.679721 -8.850056 2.328612 -0.445064 -4.002564 6.606167 -9.919732 -7.877248 1.569520 -14.974647 1.627988 13.831540 -7.839275 -2.157408 11.238352 7.009428 2.889001 57.267182 1.630617 18.743216 14.087002 -14.535549 6.314318 -5.872376 0.805149 4.154014 4.353657 -1.355622 -29.291698 -12.992429 7.715969 13.715981 11.227147 -17.113408 -6.054990 -2.314361 -1.593843 0.666406 -2.240057 3.032900 0.877592 -11.608026 -3.157024 12.978328 33.269951 -5.625588 0.762324 8.883750 6.290678 -10.729374 -22.807271 -7.365533 -12.171641 3.115140 3.029583 0.757522 8.455408 17.628714 -21.435661 11.785904 -2.392269 0.657950 12.895934 6.120322 -14.833648 -22.456164 -5.493201 9.018580 18.689952 -7.411934 4.599435 6.569691 -11.957069 -1.096633 3.441296 -2.153258 -2.477728 4.598569 1.818484 -7.406507 -6.189143 7.003995 -5.598335 -3.600501 -1.024665 9.217857 1.801469 -14.511107 13.590663 0.643647 -5.188569 4.772101 -4.650802 16.194830 -12.319858 -12.546170 10.952763 0.984014 -2.432082 -6.082678 2.989043 9.994232 4.551820 5.006252 -8.303444 -17.664783 8.301255 -7.210504 11.278232 5.560152 -2.246838 6.150797 -4.347675 -2.714892 -16.020937 -12.444268 -4.359107 2.651341 -14.604656 -6.426418 -3.025518 14.801966 8.200880 1.150233 -13.212386 1.814852 16.591888 -13.394991 -1.980844 8.851156 6.657052 -18.209164 0.431487 11.607583 -18.285245 2.276843 -5.337994 -2.026995 -4.865391 -11.216768 9.235481 5.263066 9.778250 -1.726678 3.145028 2.153448 5.561630 6.231032 4.169581 3.092699 20.177184 13.934631 -1.871505 -8.002330 -13.868104 4.909596 -16.814408 -17.773433 7.690786 3.881200 -11.875414 2.192732 4.927416 16.996746 3.135940 0.743284 -1.273226 1.115344 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = -1.176067 -1.155728 -0.356532 -3.088906 2.021896 2.575045 1.045980 -1.443845 -3.465062 -0.726659 1.173679 -3.604542 -0.489882 3.750992 -1.021757 3.014979 5.162085 0.740972 -1.731732 -0.004930 3.259095 -0.677952 4.393610 4.198491 -2.538575 -0.131984 -0.531913 1.677564 0.380747 1.374626 0.306223 -2.189606 1.469639 -3.100564 -0.936619 -2.575996 0.409590 1.209349 2.440543 -5.246199 0.978470 0.729867 0.335931 -1.069621 -0.966271 -0.256584 2.422705 2.796024 -0.345431 0.933581 2.260081 0.731475 -0.442350 0.827634 0.846161 0.802820 0.631305 -0.306193 -1.365121 -1.455375 -0.288970 -0.760732 0.587548 2.752883 3.781193 0.326365 -0.110496 1.861187 0.449399 0.687028 1.837465 0.387112 -1.052240 -0.161312 1.061441 -4.132184 -0.292767 -4.678878 -0.533521 -5.654369 -1.894314 0.286464 2.483897 1.025073 1.798741 -0.450293 2.884916 -1.037081 -0.800779 3.000620 3.583358 -2.769746 -1.457204 -2.137771 -1.597635 1.010262 -1.559208 -0.155761 1.735455 0.487924 -2.634429 -1.112093 1.536327 1.566576 -1.104105 -2.328809 0.908040 2.649679 -2.725112 -2.537392 0.175853 3.061850 -0.788642 -4.908386 -0.968364 -2.519735 0.866185 0.066126 -1.228098 -3.036626 0.524724 1.565742 -0.891049 -1.558088 -0.974950 2.521417 1.533603 1.297364 0.368300 0.489595 0.748240 4.978002 0.845200 -1.908455 0.500870 0.013671 -0.770185 1.304072 -2.074860 -1.668786 0.139905 -3.251608 0.464744 2.697211 -1.848957 -0.557899 1.399680 1.328554 0.750273 11.727549 0.107812 4.000948 2.831068 -3.231550 1.525424 -1.183222 0.037307 0.708770 1.156235 -0.052147 -5.554313 -2.786830 1.737999 3.140641 2.498944 -3.489660 -0.939717 -0.538812 -0.245702 0.111069 -0.178891 0.712657 0.279918 -2.572272 -0.723542 2.625131 7.173701 -1.092226 -0.311950 1.826447 1.336973 -1.930787 -4.433172 -1.422701 -2.291408 0.627255 0.699625 0.038321 1.800641 3.941173 -4.943062 2.798518 -0.461241 -0.014194 2.833907 1.123747 -3.013268 -4.707225 -1.203594 2.129613 4.278056 -1.284845 0.896675 1.205259 -2.675425 -0.308006 0.707236 -0.189536 -0.643765 1.118115 0.359423 -1.801603 -1.403098 0.893971 -1.138284 -0.713825 -0.527949 1.940020 0.800764 -3.624381 3.098145 0.173595 -1.113441 0.799540 -0.802544 3.304765 -2.718560 -2.921523 2.173590 -0.086177 -1.107345 -1.278447 0.466850 2.097899 0.864152 1.004452 -1.642253 -3.730349 2.193100 -1.292310 2.584122 1.289175 -0.398673 1.597855 -0.276794 -0.784614 -3.067347 -2.806966 -0.509765 0.048226 -2.875118 -0.822969 -0.821429 3.120603 2.044618 0.324308 -2.822747 0.099795 3.698869 -2.626756 -0.481854 2.142646 0.947790 -3.564476 0.395666 2.741453 -3.933167 0.243837 -1.414440 -0.342647 -1.072167 -2.408033 1.864621 0.736925 1.927455 -0.137372 0.546147 0.020336 1.155556 1.205138 0.564937 0.555776 4.507980 2.924696 -0.613593 -1.027633 -2.969184 1.167888 -3.737325 -3.717131 1.418508 0.724814 -2.550008 0.440439 0.853800 3.435808 0.565267 0.158425 -0.480592 0.325760 +PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -0.640136 -0.836023 -0.029679 -1.415591 0.659398 0.354044 0.390540 -0.550812 -1.570703 -0.434653 0.525425 -1.235391 -0.134431 1.627466 -0.537515 1.242401 2.017833 0.482148 -0.618275 -0.345558 1.648373 -0.811678 1.801246 1.817602 -1.308918 -0.240152 0.065027 1.039629 0.651440 0.333642 0.312768 -0.478090 0.454628 -1.528357 -0.066292 -1.357584 0.409122 0.877517 1.003630 -2.190994 0.370853 0.059420 0.454570 -0.316365 -0.428849 0.361234 0.619411 1.316911 -0.585980 0.628295 1.405091 0.151766 -0.177305 0.321739 0.051610 0.197096 0.083537 0.078245 -0.486040 -0.408227 -0.028523 -0.730421 0.668582 1.266913 1.838713 -0.023228 0.104404 0.813041 0.359571 0.395262 0.973690 0.163904 -0.561813 -0.308436 0.746949 -2.220029 -0.129186 -3.126073 -0.136915 -3.243827 -0.753562 0.027618 1.224664 0.061568 0.632704 0.183579 1.308513 -0.169958 -0.350773 1.488659 1.280587 -1.030046 -0.638182 -0.994318 -0.975249 0.686335 -0.843618 -0.071901 0.849437 0.600174 -1.022933 -0.615809 0.567960 0.613676 -0.497149 -1.189033 0.204461 1.183249 -1.319531 -1.199063 -0.100774 1.135304 -0.292011 -2.098800 0.081735 -1.380609 0.925161 -0.042746 -0.386876 -0.951672 0.048262 0.652384 -0.323317 -0.498028 -0.685415 1.003234 0.698241 0.486066 0.088034 0.077000 0.058987 1.879243 0.537713 -1.006397 -0.068934 0.320363 -0.727919 0.459513 -1.282263 -0.776842 0.975755 -1.433508 0.126042 0.720184 -0.799598 -0.569438 1.531539 0.425444 0.485367 4.615854 0.297474 1.693388 1.385350 -1.132689 0.695150 -0.262529 0.303464 0.764729 0.719929 -0.266869 -2.035452 -1.282048 0.499454 1.328637 1.100356 -1.445715 -1.062353 -0.234842 -0.033986 0.262607 -0.193957 0.357881 -0.303597 -1.016399 -0.231436 0.907739 2.474952 -0.346553 0.140815 0.559502 0.876504 -1.221726 -2.080730 -0.528567 -1.228548 0.253928 0.024945 0.069424 0.799038 1.716566 -2.761692 1.186180 -0.176954 0.395754 0.773784 0.310745 -1.347817 -2.657134 -0.283350 0.628721 1.655312 -0.566645 0.489673 0.880300 -1.251546 -0.004342 0.212703 0.038060 -0.365734 0.548122 0.007941 -0.552187 -0.695634 0.591562 -0.596223 -0.327259 0.076130 0.863441 0.289195 -1.817166 1.070085 -0.393814 -0.592061 0.456986 -0.262823 1.426256 -1.412343 -1.248282 0.888701 0.141576 -0.395496 -1.033255 0.261443 1.032312 -0.021353 0.041849 -0.536182 -1.582875 0.788370 -0.950664 0.925461 0.513701 -0.353666 0.921474 -0.244414 -0.258712 -1.541218 -0.456552 -0.530147 -0.179558 -1.208605 -0.538890 -0.134941 1.270792 1.065014 0.122418 -0.840301 0.562312 1.745196 -1.138069 -0.589393 0.839111 0.674690 -1.205668 0.537870 1.091155 -1.962095 0.063953 -0.759189 0.020323 -0.036227 -0.939455 1.087476 0.208842 0.907921 -0.181063 0.414337 0.073836 0.712789 0.719750 0.317016 0.128338 2.064449 1.674291 -0.333400 -0.545267 -1.370389 0.354251 -1.670367 -1.529861 0.313242 0.550564 -0.969583 0.493980 0.308951 1.625396 0.394504 0.097620 -0.221801 0.157678 +PE-benchmarks/longest-palindrome-substring.cpp__longestPalSubstr(std::__cxx11::basic_string, std::allocator >) = -5.114597 -7.247531 -4.077445 -12.115280 8.862853 7.799998 5.308898 -7.832966 -14.859470 -0.773839 7.539798 -14.622138 -1.299304 15.451362 -4.579934 14.383638 18.974142 2.156839 -8.465210 -2.118207 15.701363 -1.964660 19.334286 16.148248 -11.915267 -0.892042 -3.892050 5.857133 4.823865 -0.151219 3.038772 -3.052217 7.739287 -16.674920 -4.909970 -7.398008 2.835985 5.250030 12.484027 -18.597593 3.635325 -0.074838 3.848793 -3.423453 -5.433922 2.328748 7.646333 12.732684 -1.912237 5.216165 11.200651 -0.284259 -0.832142 4.162871 1.683735 1.791807 0.077088 -0.128103 -6.058856 -7.549977 -0.943070 -3.559690 3.765260 11.957165 15.796952 1.804762 -0.289117 11.167437 3.867299 3.657551 10.021636 2.243355 -4.851828 -1.867086 6.697531 -17.958346 -1.845404 -20.494760 -4.010980 -24.540688 -7.542445 1.684593 11.495031 -0.884170 8.981572 2.096691 12.421576 -1.564710 -5.299257 13.947644 13.347937 -12.376854 -6.764293 -8.407371 -7.096713 4.114885 -7.390195 2.179051 9.643905 4.537618 -11.668642 -3.992274 4.415413 6.685457 -4.548308 -11.638734 3.646780 10.263338 -9.866937 -10.893314 2.439426 12.103718 -3.775483 -19.990656 -2.719206 -9.734316 6.672771 -0.128178 -3.551153 -10.727594 0.661280 5.671885 -3.659075 -6.824523 -2.028719 7.344719 7.090093 7.582696 1.539490 3.832445 2.699868 21.796786 3.361731 -8.389994 1.495323 -0.750998 -1.779761 8.503565 -7.438364 -7.891479 4.476091 -14.339935 3.553716 9.237891 -6.944823 -4.207009 9.328415 7.490387 2.616578 37.931776 2.963326 17.222752 12.898520 -11.714071 3.483547 -6.712999 2.999606 5.763298 5.425056 -3.621193 -17.689776 -13.508195 7.314662 12.782165 10.012924 -15.271853 -4.808538 -0.877759 -0.317164 0.390633 -2.660349 4.367012 1.080651 -9.599767 -2.064028 11.395771 25.701273 -6.008940 2.466893 8.563500 5.218487 -6.985470 -16.909619 -7.535142 -9.523243 2.857276 3.580714 2.881758 7.108460 16.805547 -16.743152 11.237605 -2.626109 3.309903 8.798080 5.730389 -14.044362 -16.800936 -5.171895 6.165114 14.196344 -5.211372 0.012786 7.424976 -11.573186 -0.142323 3.215718 -2.254900 -1.527224 4.626566 0.238920 -4.037438 -6.337426 6.337796 -4.189830 -0.658160 1.219725 9.394199 1.263155 -13.215520 10.513502 -1.316569 -7.101561 3.431766 -3.902266 14.203548 -10.608402 -11.041915 9.273829 -1.139448 -4.919555 -7.623153 3.517298 7.946604 3.733154 4.205111 -7.373323 -12.649704 10.002356 -6.785116 10.447997 5.741609 -2.496160 7.159723 -5.924313 -4.924804 -13.107833 -8.815251 -4.627774 1.061777 -13.312516 -3.331337 -2.343394 13.344740 7.851664 1.778571 -11.424706 3.001820 14.345886 -13.299353 -5.483845 9.581644 6.788104 -14.313497 4.674607 11.513340 -15.770930 2.393017 -5.022261 -1.504974 -3.886601 -9.765898 9.514247 4.481151 9.515527 -2.963882 3.859992 3.520430 6.327685 4.623509 4.444416 1.574787 18.709629 12.254838 -3.487396 -7.538691 -13.656211 5.800032 -15.248879 -16.519831 7.729156 5.036638 -10.626779 3.139587 2.998636 15.648280 3.860814 -4.423984 -4.411544 2.537551 +PE-benchmarks/longest-palindrome-substring.cpp__main = -2.185270 -1.355820 1.331109 -5.379431 6.791935 2.983407 2.928691 -1.530088 -5.344614 -1.479652 1.311005 -4.319140 -3.657808 7.384315 -2.322348 5.845865 7.663111 0.379002 -2.127627 -1.515418 8.214277 -3.550080 8.952598 4.525730 -7.703728 -0.432534 -0.252656 4.323877 1.543913 4.853219 -0.586442 -2.278206 2.985010 -5.584698 1.251858 -4.043678 2.539115 1.420395 1.650979 -8.664626 0.682799 1.871354 0.269880 -0.707633 -2.090071 3.529831 4.664233 6.506862 -3.377740 2.147420 5.464447 -0.816144 -0.118300 2.730438 -0.325533 0.865527 1.189576 0.266100 -5.014474 -2.582222 -1.163166 -5.744452 2.719825 5.314354 8.368580 -1.206601 1.218586 5.906443 -0.752082 2.136234 3.676759 1.345003 -0.515390 -1.621469 5.887907 -6.267807 -1.863187 -9.489399 -2.566055 -14.388526 -4.383695 -3.504700 4.002396 0.049160 4.263787 -0.726209 7.490329 0.622017 -0.659721 5.939461 6.737759 -6.145464 -2.676831 -7.392311 -3.490995 1.472732 -4.634429 -1.785980 5.089332 0.620023 -5.232043 -2.622260 1.923129 2.261154 -1.752648 -5.351706 -1.565807 6.286671 -6.483720 -5.618525 -3.216323 3.717481 -2.651226 -10.057493 0.843527 -2.582812 4.008864 -0.105573 2.391912 -3.601736 0.737785 5.544306 -2.053291 -3.643152 -1.970810 6.577115 3.678484 1.603689 2.514756 1.486544 -0.358729 7.326709 6.584863 -2.305946 -3.323052 0.920884 -2.335810 2.572101 -3.527725 -1.987393 3.705076 -7.181596 0.047974 4.020016 -2.176301 -1.033185 2.879463 0.652277 4.344198 14.814970 0.497031 5.746357 2.560351 -6.578075 4.218320 -1.025782 0.057035 3.402632 3.420268 -1.550763 -7.359381 -6.376377 3.404150 4.729609 4.359801 -7.500020 -2.883597 -2.490947 0.555229 -0.175390 -2.360185 4.407476 -0.408969 -4.742410 -0.751537 1.863346 11.735334 -3.866339 -3.350362 6.014641 2.454691 -5.095425 -8.443501 -4.014338 -3.727772 -1.076514 0.379510 -0.399935 2.687244 8.241309 -9.913330 5.638934 -1.338383 -0.693442 4.695215 -1.073103 -3.205417 -9.365108 -1.704828 4.413919 6.474529 -1.441488 -0.383108 1.585378 -5.284622 2.265437 0.281445 0.901138 0.223552 2.116809 -1.811030 -3.436546 -4.843817 -0.592859 -2.233925 0.039078 0.325471 2.325618 1.520369 -9.586081 6.007738 -3.183292 -3.008111 3.257802 1.172493 6.353565 -4.542186 -7.067646 4.400245 -0.331574 -3.704504 -6.045158 2.124984 4.123340 0.838271 -1.010686 -2.744899 -8.675025 4.039702 -3.226204 3.223057 2.429684 1.337026 6.801335 1.551023 -4.492991 -6.870913 -4.053308 -1.256251 -1.286731 -4.465289 -1.701736 -0.707998 6.517192 4.831703 1.122859 -1.522931 -0.787486 8.083374 -6.561058 -3.782145 6.638947 1.815811 -5.275545 2.885076 7.314287 -6.039894 -2.826622 -3.389593 0.986626 -1.174868 -4.708867 2.886496 -1.066304 2.445261 0.658203 2.151300 -1.128153 2.402326 1.872412 1.013476 -3.527789 10.689068 8.536179 -5.392611 -1.677434 -4.602286 2.832060 -7.787556 -5.993268 2.025180 1.658043 -1.770133 3.583518 3.007377 6.192251 0.691596 -1.972667 -0.788965 -2.963510 +PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.944690 0.419912 1.692729 -3.046449 4.226919 1.827091 1.199719 -0.670022 -2.011258 -1.176685 -0.268846 -1.941571 -2.301725 3.610730 -1.721653 2.111599 4.391711 0.378343 -0.260882 -0.883683 3.842159 -1.397348 4.838171 2.348111 -4.586349 -0.328837 1.183279 2.532356 0.792720 3.552883 -1.090200 -2.348374 1.599086 -2.093038 1.216415 -2.635335 1.301142 -0.037053 0.195851 -4.630594 0.289638 0.207208 -1.194735 0.101197 -0.637762 2.016105 3.590236 3.221954 -2.570425 0.870596 2.992874 0.800089 -0.301235 1.522543 -0.566511 0.450568 1.330336 0.332163 -2.420880 -1.054489 -0.991057 -3.092871 1.142732 3.023313 4.538081 -0.494202 0.814084 2.540184 -0.608561 0.852358 1.487903 0.834341 0.621216 0.262715 3.104816 -3.046919 -0.934026 -6.058519 -1.618537 -7.991142 -2.086833 -2.986616 0.976588 -0.519910 1.827282 -0.239866 3.891888 0.738471 0.943756 2.759860 4.066152 -3.176430 -1.266789 -4.196682 -2.132678 0.857892 -2.328302 -0.844798 1.862786 -0.049451 -2.437924 -2.455592 0.758486 0.733126 -0.924846 -2.534559 -1.055600 3.354427 -3.785560 -2.594818 -2.900320 1.030587 -1.554881 -5.586244 -0.225279 -1.111464 3.227682 -0.018753 1.503899 -2.433079 0.402856 3.740443 -1.216468 -1.716672 -0.390973 3.770740 2.352762 0.553026 1.122174 0.069149 -0.009746 3.626960 4.272331 -1.040624 -2.138085 0.421727 -1.693462 0.020102 -2.570470 -0.360736 2.230827 -3.581089 0.286991 2.922257 -1.374489 -0.706470 1.945172 -1.101744 3.135024 8.651739 -0.440707 2.314267 0.752971 -4.205201 1.650424 0.006145 -0.397326 1.548561 1.943121 0.465727 -3.901222 -3.131803 1.588597 2.265710 2.254204 -4.150068 -1.358741 -1.819688 0.198722 -0.106307 -1.513238 2.414726 -1.177080 -2.430220 -0.325985 0.984835 5.886522 -1.943223 -3.762174 2.767953 1.839388 -2.477079 -3.651618 -1.904245 -1.858077 -0.473358 0.932071 -0.565188 1.346744 4.446134 -7.124556 2.843196 -0.192523 -0.770523 2.268884 -0.594388 -1.000732 -4.067867 0.106162 3.154148 2.981680 -0.113740 0.262145 0.316535 -2.570061 1.197417 0.314517 1.576786 -0.114365 0.907406 -0.168750 -2.821951 -3.054920 -0.889045 -0.802153 -0.263304 -0.412736 1.065322 0.325306 -7.237683 3.707654 -1.812619 -1.429909 1.963490 -0.041779 3.427322 -3.092521 -4.178978 2.162852 -0.470698 -1.605352 -2.773340 1.141416 2.360154 0.489686 0.339907 -1.907981 -5.200456 1.415293 -1.331924 1.122653 1.531491 1.642562 4.344709 -0.024073 -2.082530 -4.118654 -1.849951 0.616529 -0.449683 -2.100318 -1.017821 -0.387633 3.349720 3.819993 -0.066451 -0.224704 -1.068874 3.828123 -3.965209 -1.523554 3.574295 1.673767 -2.638527 1.244686 3.706252 -2.870916 -2.495262 -1.504431 0.704698 -0.327697 -2.828121 1.047214 -1.842667 0.760852 1.295884 0.892791 -1.626232 1.437282 0.597904 0.650108 -1.823665 4.748521 5.577787 -3.362444 -0.106556 -2.181098 1.619877 -5.051522 -3.580903 1.017678 -0.569838 -0.283152 1.947154 1.081761 2.960698 -0.253670 0.152707 -0.002746 -1.859913 +PE-benchmarks/longest-palindrome-substring.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/longest-palindrome-substring.cpp__std::char_traits::length(char const*) = -0.096722 -0.045213 0.204765 -0.277349 0.182037 -0.060294 0.081948 -0.083201 -0.288270 -0.214539 0.091606 -0.286591 -0.172814 0.324777 -0.197587 0.090201 0.432303 0.138259 -0.066975 -0.216012 0.208055 -0.209370 0.446878 0.442908 -0.406809 -0.010111 0.094699 0.296655 0.236799 0.191505 0.007800 -0.164444 0.120905 -0.093997 0.120114 -0.267535 0.090564 0.079788 -0.008443 -0.511359 0.039391 -0.014510 0.105743 -0.000388 -0.016886 0.316994 0.264207 0.287020 -0.139102 0.198517 0.362074 0.096987 0.014978 0.079818 0.018305 -0.068402 0.248518 -0.097265 -0.147682 -0.001123 -0.006286 -0.343971 0.038885 0.343397 0.458152 -0.014877 0.051499 0.036609 0.020536 0.113561 0.203804 0.064308 -0.014122 0.071044 0.174263 -0.346001 0.079975 -0.735793 -0.065503 -0.959904 -0.212990 -0.155724 0.356918 0.027035 0.030658 0.116340 0.346152 0.121498 0.013729 0.221372 0.370789 -0.201987 -0.164343 -0.130021 -0.195898 0.204185 -0.239200 0.049109 0.080658 0.214210 -0.223537 -0.139192 0.185917 0.033321 -0.139697 -0.032816 -0.042303 0.248312 -0.465653 -0.112602 -0.208493 0.080003 0.067811 -0.476420 0.104333 -0.254164 0.399065 0.022522 -0.047768 -0.091381 0.013866 0.153857 -0.087880 0.019831 -0.393105 0.244930 0.095993 0.082269 0.021460 0.018513 0.064582 0.270423 0.149713 -0.229026 -0.090342 0.069401 -0.199083 0.047220 -0.295014 -0.105285 0.288597 -0.275142 0.125456 0.055223 -0.195964 -0.234847 0.183917 -0.029378 0.183742 0.670335 0.034321 0.278283 0.204750 -0.268159 0.053431 -0.057517 0.042115 0.187120 0.216149 0.003374 -0.144640 -0.288536 0.093140 0.318943 0.212673 -0.292335 -0.165872 -0.042755 0.006390 0.047372 0.013133 0.093134 -0.151714 -0.183920 -0.073819 0.149293 0.411462 -0.003034 -0.107453 0.043481 0.111836 -0.180226 -0.299978 -0.053658 -0.047225 0.103540 -0.007665 0.033724 0.165214 0.399068 -0.870327 0.301069 0.002725 0.065933 0.165200 -0.016248 -0.204466 -0.550638 0.073261 0.185138 0.318212 -0.017814 0.076468 0.196601 -0.316276 -0.029291 -0.001260 0.127424 -0.143785 0.131775 0.121774 -0.207880 -0.252010 -0.076832 -0.009458 0.012316 -0.058051 0.188265 0.082269 -0.722256 0.297119 -0.170421 -0.186049 0.019174 -0.072150 0.204790 -0.396789 -0.290060 0.085525 -0.087582 -0.237166 -0.298288 0.016060 0.189855 -0.157940 0.027775 -0.125107 -0.224554 0.189426 -0.207519 0.126750 0.139677 0.015755 0.319574 0.003620 -0.047019 -0.259577 0.092416 0.028839 -0.232718 -0.159655 0.165307 -0.054619 0.214941 0.394730 0.000000 -0.077798 0.178885 0.372993 -0.225689 -0.264347 0.195604 0.148281 -0.115828 0.300770 0.219456 -0.413800 -0.103842 -0.245007 -0.107693 0.054741 -0.228486 0.253455 -0.102066 0.167557 0.084033 0.100300 -0.138993 0.238611 0.032313 0.003074 -0.001002 0.445741 0.550241 -0.160661 0.081559 -0.321270 0.098058 -0.439212 -0.318371 0.023184 0.063264 -0.132596 0.118207 -0.076956 0.293369 0.087360 -0.010288 -0.109960 0.093829 +PE-benchmarks/longest-palindrome-substring.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -1.533596 -0.188933 2.070476 -4.448228 5.174714 1.811431 1.646188 -0.597310 -3.243866 -1.806904 -0.126507 -2.859501 -2.943544 4.702638 -2.069150 3.075018 6.297585 0.853093 -0.872288 -1.408360 5.337265 -2.221914 6.487498 3.815006 -5.958630 -0.472085 1.378510 3.841798 1.403689 3.889753 -1.565659 -2.508836 1.996699 -3.096590 1.792116 -3.809600 1.838984 0.384651 0.436876 -6.479256 0.539118 0.255220 -0.967649 -0.085041 -1.107647 3.163708 4.387852 4.536904 -3.466550 1.033785 4.562273 0.762600 -0.470532 2.044075 -0.782227 0.748596 1.524815 0.660179 -3.018401 -1.606687 -1.011034 -4.435743 1.857609 4.038780 6.115844 -0.793316 0.906493 3.443399 0.008280 1.067687 2.459258 1.028611 0.707888 -0.560039 4.174598 -4.953836 -1.080873 -8.962505 -1.780991 -11.727424 -3.039106 -3.745751 2.117254 -1.058651 2.433758 -0.350272 5.640201 0.427712 1.017395 3.675555 5.073801 -4.505375 -1.914810 -5.637837 -2.833899 1.492185 -3.360231 -1.344629 3.027311 0.498910 -3.347958 -2.811032 1.425811 0.977363 -1.406005 -3.625778 -1.139409 4.553277 -4.925551 -3.524395 -4.022641 2.026300 -1.483401 -7.393903 0.452778 -2.123992 4.321246 -0.277654 1.427611 -3.117508 0.366892 4.445925 -1.832007 -2.034030 -1.334656 5.033172 3.041637 0.562854 1.649014 0.169569 -0.023841 4.978646 5.664532 -2.097587 -2.995241 1.018613 -2.857329 0.285633 -3.904844 -0.941036 3.818782 -5.023587 0.234651 3.399095 -2.123451 -0.992220 3.633554 -1.007319 3.956643 11.951805 -0.234793 3.301805 1.536310 -5.142162 2.867323 -0.161580 -0.308044 2.437838 2.880413 0.120083 -5.657157 -4.493210 2.115355 3.552625 3.299997 -5.727807 -2.118346 -2.072503 0.511285 -0.144752 -2.039809 3.175723 -1.255936 -3.120351 -0.623260 1.595107 7.955713 -2.322621 -4.176990 3.520316 2.658143 -3.572467 -5.663425 -2.663875 -2.902218 -0.535671 0.959037 -0.420837 2.173748 6.269885 -9.677430 3.839407 -0.612712 -0.650154 3.373769 -0.562713 -1.589369 -6.565079 -0.028215 3.881327 4.643687 -0.568705 0.521262 0.858252 -3.700302 1.272050 0.386126 2.009677 -0.313273 1.254204 -0.210369 -3.273636 -3.637295 -1.232123 -1.308848 -0.352426 -0.088416 1.716476 0.408836 -9.371288 4.971517 -2.557247 -1.953305 2.551834 -0.292036 4.603952 -4.381431 -5.396002 3.228607 -0.131979 -2.008161 -4.044928 1.603954 3.715034 0.041946 0.090349 -2.499431 -7.067443 2.598812 -1.955119 2.144029 1.891014 1.582129 5.666096 0.356059 -2.480476 -5.552136 -2.087647 -0.157435 -0.967751 -3.014247 -1.428898 -0.403998 4.506297 5.013331 -0.076512 -0.039064 -0.471306 5.384562 -5.609036 -2.297984 4.651064 2.652902 -3.413030 2.421393 4.981286 -4.679496 -3.270843 -2.509214 0.652339 -0.143000 -3.949050 1.954243 -2.315929 1.470900 1.763964 1.310239 -1.651017 2.186187 1.169803 0.794625 -2.369426 7.007043 7.872776 -3.887195 -0.383049 -3.500496 2.140796 -6.764878 -4.748907 1.297203 -0.137715 -1.012261 2.595044 1.848904 4.337018 -0.331295 0.044633 -0.473998 -2.134621 +PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.283003 0.165987 0.499465 -1.142342 1.220625 0.704424 0.075645 -0.123326 -0.679680 -0.324561 -0.372602 -0.592827 -0.567202 1.100454 -0.363173 0.615590 1.090408 -0.019016 -0.243929 -0.152621 1.103728 -0.073765 0.975556 0.241135 -1.121614 -0.065685 0.335288 0.906334 0.148267 1.195006 -0.288495 -0.853531 -0.095973 -0.157012 0.349332 -0.693630 0.474407 0.264768 -0.033366 -1.230488 0.161043 0.341356 -0.180475 -0.028582 -0.265902 -0.120132 0.840508 0.868136 -0.690255 -0.112404 0.991558 0.660838 -0.266290 0.331147 -0.262979 0.219090 0.417405 -0.353258 -0.484398 -0.329634 0.005623 -0.468980 0.288628 0.725874 1.080322 -0.180423 0.100241 0.748072 -0.037316 0.240894 0.263736 0.115364 -0.120998 0.006430 0.568156 -0.535017 -0.238678 -1.337223 0.096689 -1.578389 -0.408279 -0.769353 0.127992 0.573364 0.237025 -0.166495 1.201582 -0.166576 0.151835 0.813509 1.034833 -0.608865 -0.203220 -1.494019 -0.792068 0.382795 -0.527087 -0.615532 0.048852 0.399163 -0.387494 -0.633155 -0.084792 0.006652 -0.311727 -0.516148 -0.390198 0.945086 -1.065783 -0.540861 -0.557597 0.882321 -0.296454 -1.316286 -0.564752 -0.435001 0.236998 -0.374780 0.524091 -0.674490 0.053504 0.890499 -0.514342 -0.183680 -0.503277 0.813564 0.686005 -0.275125 0.200638 -0.081657 0.157274 0.832385 0.608394 -0.543158 -0.735297 0.385994 -0.108832 -0.319227 -0.841485 0.033877 0.174212 -0.992554 0.095620 0.882711 -0.291323 -0.121915 -0.182259 -0.585014 0.836058 2.567308 -0.122271 0.308539 0.025250 -0.971592 0.512206 0.269576 -0.411134 0.326076 0.147623 0.198522 -0.693673 -0.865762 0.518357 0.590953 0.667700 -0.566205 -0.242408 -0.487927 -0.183996 0.062285 -0.324050 0.685340 -0.621701 -0.378479 -0.295071 0.142681 1.517054 -0.103874 -0.938541 0.934253 0.927326 -0.902615 -0.548548 -0.472979 -0.711311 -0.325258 0.453462 -0.259347 0.663659 1.250429 -1.979051 0.819790 0.460199 -0.320302 0.377103 -0.489020 0.065271 -0.834925 -0.180259 0.950125 1.047042 -0.451753 0.374573 -0.171086 -0.714490 0.339546 0.281189 0.361181 -0.085868 0.065738 0.019564 -0.613376 -0.611479 -0.042574 -0.631768 0.050706 -0.304550 0.165281 0.028851 -1.740824 1.134855 -0.539278 0.117693 0.568086 -0.102046 0.966028 -0.740322 -0.922193 0.684452 0.302108 -0.219138 -0.330247 0.370305 0.941895 0.031899 0.360940 -0.485425 -1.386936 0.141659 -0.204835 0.182345 0.294987 0.403150 0.492204 0.043706 -0.270049 -0.883293 -0.602173 0.230685 0.155697 -0.303751 -0.077014 0.033039 0.844821 0.799839 0.006423 -0.265852 -0.344694 0.936783 -0.516429 -0.310484 0.718015 -0.296379 -0.935508 0.166993 0.921688 -0.662377 -0.717651 -0.709834 0.616399 -0.147067 -0.797058 0.172258 -0.326591 0.088183 0.669422 0.018782 -0.656607 0.531562 0.371473 -0.202031 -0.526709 1.472731 0.679297 -0.452805 0.269608 -0.669102 0.366745 -1.278334 -0.772667 0.086181 -0.420159 -0.142093 0.454790 0.067288 0.761949 -0.334072 0.811739 0.155777 -0.686819 +PE-benchmarks/longest-palindrome-substring.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/program-wish-womens-day.cpp__main = -3.974513 -4.709329 -4.385344 -8.384831 5.457226 3.533916 3.443963 -4.179773 -11.068215 0.354175 5.718862 -9.314573 -0.391793 12.803169 -2.907904 10.103615 14.613016 3.391189 -5.622812 -0.562537 12.448727 -3.153940 12.688178 11.348106 -9.129397 -0.518978 -1.001621 1.969433 1.302506 -0.042852 3.326535 -4.995180 5.153172 -11.663461 -2.085395 -7.898837 2.967438 6.635065 10.333506 -15.974310 3.418634 0.210724 5.174750 -3.883113 -4.720657 1.308581 4.176870 9.916748 -2.695681 2.763816 9.446386 0.701117 -1.119693 2.562241 1.049356 0.898318 -3.890239 1.944876 -2.777303 -4.757547 0.138788 -0.029819 3.627396 8.806666 12.443809 0.457870 -0.338024 7.098632 3.012806 2.883717 5.526646 0.055011 -2.742938 -2.667980 2.665058 -14.064855 -5.357554 -20.905072 -1.507095 -22.108883 -5.347236 2.328645 8.580784 0.064602 5.201423 0.280066 8.628456 -0.136437 -3.064015 12.049948 10.913480 -6.868123 -4.942422 -7.597821 -6.313828 5.599253 -4.391004 1.897554 9.508278 1.249631 -8.343661 -5.719578 1.505298 4.754731 -3.144178 -9.876661 3.791125 6.917108 -4.429783 -8.133058 2.185543 11.131277 -1.663781 -16.064480 0.856506 -8.184839 1.872924 0.578655 -3.052681 -7.438483 -0.249568 3.740960 -2.711704 -5.122300 -2.373096 6.221066 4.350914 5.945503 1.541844 0.285302 2.565232 14.858117 0.257596 -8.859237 1.437429 -0.785828 -1.580732 5.337142 -8.841354 -6.058195 5.881644 -10.251258 4.079150 5.264396 -5.530526 -3.151888 9.804848 4.327314 1.646953 30.163637 1.938114 13.739049 8.704492 -8.483650 6.201958 -4.249542 0.384561 3.936117 4.008245 -3.451060 -12.796434 -10.671936 4.437040 9.849367 8.571039 -10.296091 -6.485370 -1.176317 -1.347779 -0.029366 -0.650781 2.463956 -0.692618 -7.108045 -1.766990 9.898849 17.736947 -3.000132 3.131341 4.546904 11.015581 -5.131140 -12.665201 -5.322582 -11.751162 1.939418 3.468808 1.403619 6.871231 11.572919 -17.535865 8.820249 -1.253330 3.454629 3.752929 3.664052 -11.400861 -18.144485 -1.576942 4.708986 12.052308 -5.178081 4.303781 6.355314 -8.238174 -0.073800 2.297997 -3.058977 -1.328958 2.912399 -1.359741 -2.256068 -4.411327 7.704671 -5.858678 -3.482611 1.058025 8.012703 5.763434 -10.375984 7.809104 -1.055899 -3.870193 1.894830 -3.172403 10.117314 -9.109187 -9.124926 6.844631 1.403965 0.436714 -5.423684 2.714018 7.799067 -0.101569 3.968775 -2.310368 -11.095850 5.885366 -3.398029 6.337599 4.171569 -2.164022 2.978792 -4.572016 -3.053879 -9.776154 -6.779576 -2.590403 1.238054 -10.038481 -3.118138 -1.910319 10.155224 4.978958 1.812434 -10.790781 1.302785 10.655368 -6.963443 -2.995294 5.790899 2.560054 -8.581057 1.640847 9.286170 -12.557286 1.532472 -6.307000 2.862342 -2.381786 -7.107584 6.827682 4.113092 6.747834 -3.094769 1.300059 3.315159 5.725981 5.691483 3.068550 2.175057 11.878302 6.822431 -1.687942 -6.023657 -9.243208 1.592712 -10.701374 -11.474431 4.046755 2.457159 -9.318845 3.471231 2.286478 11.811398 0.381205 1.775082 -2.932380 2.842354 +PE-benchmarks/program-wish-womens-day.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.131787 -0.002189 0.293578 -0.100990 0.014780 -0.029766 0.112938 -0.087557 -0.113431 -0.006670 0.321023 -0.172466 -0.217585 0.467657 -0.357906 0.027088 0.429611 0.428558 -0.181973 -0.130377 0.374653 -0.244823 0.570794 0.512171 -0.449070 -0.008615 0.157474 0.273087 0.194488 0.145663 0.003938 -0.037954 0.185771 -0.211744 0.160010 -0.522437 0.127503 0.285119 0.070527 -0.575637 0.047520 -0.137421 0.348419 -0.056300 0.031652 0.262802 0.090157 0.401422 -0.000329 0.083203 0.376541 0.047469 0.248901 0.100489 0.162542 -0.118726 0.191256 -0.116756 0.030759 0.018288 -0.055004 -0.349768 0.151882 0.427418 0.408424 0.029699 0.066550 -0.134869 0.214906 0.053411 0.175621 0.002433 -0.066666 0.171656 -0.130652 -0.482614 -0.121225 -0.883462 -0.108069 -0.829410 -0.196844 -0.073091 0.286387 0.030439 0.058806 0.241297 0.387757 0.302089 -0.025960 0.229269 0.560904 -0.199702 -0.228204 0.003545 -0.062543 0.310931 -0.215951 0.246151 0.166019 0.251753 -0.257438 -0.306955 -0.123524 0.076524 -0.133611 0.117896 -0.038023 0.354856 -0.389236 -0.216644 -0.101325 0.182393 0.090914 -0.653141 0.212554 -0.348497 0.511549 0.087188 -0.119713 -0.127105 0.121115 0.310143 0.113277 0.038223 -0.354234 0.016017 -0.190943 0.262386 -0.077538 -0.178766 0.048909 0.324026 0.145313 -0.368184 0.003078 -0.053063 -0.270281 0.273652 -0.402575 -0.034471 0.274826 -0.324140 0.246976 -0.019516 -0.217660 -0.389626 0.249853 0.187555 0.078986 0.849034 0.040751 0.390278 0.130670 -0.307985 0.052690 -0.119146 0.035075 0.199050 0.141194 -0.162963 -0.474030 -0.489785 -0.006194 0.449664 0.290622 -0.384070 -0.064657 -0.132985 -0.010184 -0.096828 0.165847 0.090891 -0.232851 -0.273265 -0.133346 0.237227 0.292580 0.092093 -0.222853 -0.151454 0.194146 -0.018246 -0.180605 -0.064861 0.130837 0.182228 0.186663 -0.019080 0.133994 0.197607 -0.798314 0.434463 -0.095889 0.266591 0.224582 -0.128278 -0.269343 -0.513766 0.179931 0.106086 0.182472 -0.143567 -0.038952 0.439848 -0.413853 -0.023155 0.020552 0.005130 0.003476 0.126642 0.296224 -0.192672 -0.378014 0.089266 0.065040 -0.180474 -0.023996 0.464977 0.033142 -0.657688 0.275752 0.012537 -0.155751 0.037679 -0.008383 0.190126 -0.484986 -0.472023 0.276256 0.094098 -0.003451 -0.478913 0.011939 0.443122 -0.372848 0.116160 0.044518 -0.091130 0.112971 -0.039800 0.037134 0.125648 0.139788 0.150309 -0.039923 -0.020243 -0.235561 0.122144 0.040128 -0.222898 -0.245849 0.055121 -0.052674 0.353855 0.239319 0.018833 -0.248591 0.109337 0.537721 -0.102478 -0.245567 0.012385 0.324174 0.136454 0.323836 0.280035 -0.442671 -0.097150 -0.280275 -0.059976 -0.072132 -0.215078 0.381226 -0.065562 0.278376 -0.082245 0.047366 -0.112449 0.332947 0.151663 0.142326 0.200263 0.183450 0.523523 0.083791 0.067903 -0.237403 -0.057078 -0.353049 -0.173061 -0.014380 0.118354 -0.245322 0.373717 -0.021924 0.463739 0.234972 -0.020799 -0.100206 0.232768 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::Graph(int) = -1.065045 -1.091240 0.397794 -2.880868 1.590059 1.126466 0.776590 -1.114850 -2.235303 -0.333864 1.324552 -1.360350 -1.092358 2.626712 -0.833288 1.475699 1.540103 -0.373644 -1.636414 -0.870990 2.513151 -0.978867 2.524549 1.468141 -2.523991 -0.288118 -0.348416 1.965832 0.763159 1.367521 0.353198 -0.049643 -0.269311 -0.934801 0.398762 0.069996 0.481554 0.487506 0.436485 -2.241242 0.554423 1.325369 0.997471 -0.619996 -0.761149 -0.442517 0.942338 2.202528 -0.172108 0.028468 2.385248 -0.212172 0.254844 0.396161 1.091862 0.104403 1.751852 -0.147152 -0.354071 -1.191988 -0.287479 -0.473503 0.887398 2.135641 2.535853 -0.430207 0.000705 1.018199 0.306452 1.410213 1.672500 0.332332 -1.194381 -0.648243 1.663784 -1.357908 0.333545 -2.394678 0.219915 -2.413931 -1.298022 0.206216 1.609627 0.843997 1.033075 -0.034750 2.249198 -0.040309 -1.122410 0.612685 1.333885 -0.613173 -0.760558 -1.308962 -1.725243 0.556193 -1.206310 -0.309625 0.768066 1.323558 -1.732910 0.551646 0.098295 0.998993 -1.158708 -0.611942 -0.292426 1.767619 -1.042306 -0.964747 0.473405 2.254369 -0.333811 -3.206310 -0.858204 -2.341069 -0.197264 -0.902446 -0.012082 -0.444756 0.158106 1.153668 -0.716948 -0.755397 -1.738925 1.345506 1.306281 0.662071 0.108552 0.217000 -0.035735 1.855967 0.307743 -1.159696 -0.664373 0.187220 -0.430331 1.204961 -0.557106 -0.530067 0.523422 -1.505518 -0.003106 0.517016 -0.424573 -0.342089 -0.073026 0.838113 0.543622 5.068871 -0.082308 2.282733 1.133219 -1.190609 1.033270 0.361715 0.382397 1.041877 0.874645 -0.985705 -1.441420 -2.059728 1.419178 1.784429 1.367234 -1.474311 0.167936 0.035512 -0.403690 -0.223470 -0.000430 0.289518 -0.232934 -1.315802 -0.611928 0.798850 3.012731 -0.651842 -2.021661 1.680521 1.186984 -1.618526 -1.404103 -0.755178 -1.279045 0.145343 -0.164566 0.190063 1.598327 2.504372 -2.521467 1.790185 0.073067 -0.349956 2.237067 -0.888105 -1.281493 -2.847615 -0.443117 0.233535 2.158615 -1.008885 -0.723917 0.786472 -1.919088 0.457762 -0.023938 -0.389713 -0.416701 0.986191 -0.699792 -0.522282 -1.071287 -0.750912 -1.111881 0.803972 -0.730959 0.868065 -0.103306 -2.042772 1.708602 -0.314217 -0.592377 0.148617 -0.107267 1.681541 -1.155550 -1.580943 1.102367 0.064346 -0.670224 -1.975229 0.390720 1.331388 0.007606 0.172596 -1.605902 -0.834893 1.423365 -1.842129 1.736998 0.873465 -0.303459 0.438122 1.510713 -0.286050 -1.386871 -0.637055 -0.261359 0.226648 -2.254418 -0.422969 -0.642164 1.821266 0.574819 0.202792 -0.753679 -0.188155 2.553901 -0.801211 -1.332272 0.844582 -1.008693 -1.756873 1.136931 1.594767 -1.346824 -0.107038 -1.598584 -0.262419 -1.243429 -2.015561 1.879096 1.106354 1.912102 -0.495679 0.887995 0.123995 0.569985 0.673676 -0.067161 -0.257990 3.177373 1.193679 -0.938137 -0.923121 -2.208999 1.318985 -1.535737 -1.358586 0.776772 -0.035305 -1.028146 0.538028 -0.298880 2.454892 0.663988 -0.151995 -0.460183 0.048109 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::list() = -0.135151 0.001345 0.298777 -0.329040 0.236729 -0.030893 0.096676 -0.043815 -0.341684 -0.217057 -0.045375 -0.196936 -0.207723 0.406536 -0.208322 0.061692 0.596485 0.306629 -0.050852 -0.237635 0.250916 -0.277414 0.513078 0.542021 -0.438732 0.002391 0.144343 0.370613 0.183240 0.403429 -0.099452 -0.227539 0.142033 -0.053009 0.192888 -0.491582 0.075510 0.154329 -0.104384 -0.713141 0.077249 -0.041650 0.115521 -0.009951 0.015045 0.343852 0.346587 0.323476 -0.131213 0.184094 0.324903 0.235286 0.022126 0.126736 0.073350 0.111694 0.300977 -0.145736 -0.157169 0.025414 -0.063919 -0.427301 0.075286 0.381195 0.525079 0.015127 0.055245 -0.037432 -0.016413 0.129317 0.191448 0.060130 0.002258 0.039432 0.143817 -0.407884 0.096654 -0.814760 -0.055252 -1.090222 -0.237329 -0.276572 0.334131 0.055886 0.046639 0.125109 0.441965 0.057672 0.115729 0.202403 0.432245 -0.277992 -0.153797 -0.190987 -0.219165 0.220054 -0.222475 -0.043854 0.053294 0.194917 -0.248496 -0.274234 0.254326 0.019874 -0.169453 -0.013829 -0.057610 0.374868 -0.582440 -0.157148 -0.352973 0.090985 0.003276 -0.509967 0.139184 -0.348618 0.463365 0.015976 -0.074688 -0.187675 0.078631 0.268807 -0.115227 -0.005048 -0.420416 0.333958 0.059694 -0.077755 0.000539 -0.055835 -0.047974 0.299246 0.252264 -0.276330 -0.107662 0.174982 -0.300631 -0.086004 -0.436223 -0.095435 0.274525 -0.355645 0.089307 0.103331 -0.264366 -0.208544 0.199834 -0.098517 0.285529 0.842238 -0.041176 0.241397 0.182916 -0.359329 0.118668 0.022839 0.022593 0.218638 0.321717 0.057847 -0.265383 -0.348528 0.032630 0.372640 0.288883 -0.275581 -0.242349 -0.205698 -0.016502 0.105673 0.029833 0.070435 -0.229104 -0.232411 -0.105298 0.042545 0.533684 -0.011192 -0.194665 0.038012 0.100914 -0.285358 -0.363826 -0.078310 -0.093189 0.068976 -0.035349 -0.055752 0.193333 0.485389 -1.027878 0.406673 -0.095956 -0.016576 0.199396 -0.059571 -0.108062 -0.571516 0.063520 0.271140 0.503814 -0.038052 0.102668 0.175229 -0.392899 -0.055879 -0.014271 0.264400 -0.211759 0.169954 0.201240 -0.338546 -0.248209 -0.099949 0.021655 -0.095208 -0.058775 0.182198 0.091924 -0.892141 0.374256 -0.185990 -0.123985 0.161686 0.005107 0.203180 -0.437243 -0.391637 0.137725 0.043095 -0.171262 -0.300937 0.027531 0.372512 -0.215208 0.026564 -0.158785 -0.339942 0.192502 -0.180738 0.148628 0.165340 0.062677 0.399879 0.048327 -0.074543 -0.315193 0.081611 -0.008408 -0.274100 -0.094863 0.156571 -0.098564 0.279885 0.573647 0.049465 -0.055358 0.169979 0.552549 -0.258509 -0.221609 0.278904 0.138577 -0.069508 0.315383 0.315139 -0.504851 -0.291111 -0.240968 -0.058612 0.134681 -0.247824 0.305570 -0.247390 0.158371 0.144317 0.097375 -0.229146 0.289045 0.076952 -0.008538 -0.000813 0.541220 0.588525 -0.164651 0.178661 -0.257302 0.097243 -0.523562 -0.224586 -0.100968 0.045080 -0.139466 0.182921 -0.106693 0.352694 0.017181 0.136884 -0.046507 -0.049337 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::~Graph() = -0.620037 -0.072142 0.280624 -1.537047 0.982299 1.102020 0.318599 -0.519491 -1.187979 -0.190627 0.059854 -1.467340 -0.378510 1.750326 -0.588266 0.958425 1.987659 0.454969 -0.550191 -0.028971 1.338963 0.122047 1.610034 1.379035 -1.330635 -0.239200 0.334282 0.913683 -0.037378 1.233748 0.015693 -1.724991 0.171410 -0.439934 0.160537 -0.879759 0.392217 0.504416 0.690434 -2.155419 0.440124 0.692259 0.664798 -0.530629 -0.319819 -1.058433 1.363862 1.317597 -0.507610 -0.104060 1.152284 0.948151 -0.296351 0.314754 0.272684 0.312886 0.729029 -0.412972 -0.605002 -0.584283 -0.207989 0.134629 0.292357 1.391910 1.705617 0.284038 0.167354 0.418996 0.180113 0.499922 0.507733 0.090712 -0.430413 0.289673 0.458978 -0.795095 -0.046580 -2.322710 0.130590 -1.826146 -0.761766 -0.296378 0.698629 0.834081 0.606527 -0.229253 1.391590 -0.283999 0.097713 1.029115 1.669618 -0.800025 -0.558373 -1.311901 -1.327799 0.862005 -0.709605 -0.146354 0.317900 0.283586 -1.069664 -0.970779 0.082547 0.626679 -0.485547 -0.528937 0.270027 1.146443 -0.949083 -0.992195 -0.167423 1.153981 -0.383763 -2.132955 -1.117465 -1.159929 -0.554659 -0.121720 -0.463920 -1.327956 0.115209 0.787012 -0.598443 -0.529768 -0.752057 0.862220 0.737791 0.098002 0.124918 -0.267388 0.218368 1.692949 0.194282 -1.060666 -0.016857 0.197891 -0.395674 -0.069568 -1.263534 -0.530080 -0.245941 -1.285882 0.232581 1.175067 -0.846595 -0.407579 -0.358208 -0.121680 0.836880 4.577849 -0.249176 1.246361 0.876186 -1.486394 0.675863 0.090034 -0.293383 0.097976 0.651106 0.329611 -1.111609 -1.290099 0.752205 1.348190 1.204219 -0.519049 -0.287862 -0.423659 -0.342982 0.021075 -0.019936 0.364387 -0.570965 -1.111260 -0.410399 1.011522 2.215070 -0.176904 -1.541319 0.752688 1.655058 -0.678093 -0.736622 -0.485503 -1.599199 0.193791 0.315748 -0.258634 1.106445 1.861998 -2.903847 1.365053 0.543036 -0.196013 1.065236 -0.083766 -1.030443 -1.468170 0.059991 1.213922 1.621523 -0.711781 0.462017 0.167453 -1.206452 -0.065872 0.213246 0.305154 -0.490713 0.470395 -0.050423 -1.078356 -0.890476 -0.187197 -0.665197 -0.776483 -0.699342 0.632990 0.665781 -1.862351 1.631384 0.044158 -0.185708 0.514127 -0.612154 1.033712 -1.476704 -1.456148 0.706254 0.080202 -0.005672 -0.213891 0.236718 1.221164 0.252512 1.030381 -0.734891 -1.194228 0.654806 -0.274924 0.965239 0.513183 0.110236 0.325995 0.214719 -0.193567 -1.066440 -0.912756 0.413851 0.265953 -1.205052 -0.618080 -0.358381 1.336643 1.256794 -0.153749 -1.059762 -0.774768 1.450762 -0.682187 -0.206970 0.901952 -0.908155 -1.293139 -0.193198 1.227088 -1.416063 -0.396372 -0.984209 0.494949 -0.384603 -1.258828 0.647095 -0.034924 0.634579 0.267431 -0.326662 -0.408412 0.567596 0.799480 0.010142 0.272875 1.553570 0.147206 -0.299712 0.105810 -1.310542 0.245087 -1.917671 -1.364696 0.412238 -0.645677 -0.970418 0.232050 -0.144755 1.309086 -0.214985 1.128979 -0.054372 -0.167559 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::~list() = -0.142496 -0.006886 0.317486 -0.347641 0.241475 -0.040258 0.100963 -0.029726 -0.361178 -0.232411 -0.045503 -0.206426 -0.228534 0.424989 -0.219002 0.041678 0.622626 0.325616 -0.055431 -0.247810 0.257306 -0.273929 0.531054 0.566406 -0.458769 -0.001610 0.135242 0.395144 0.195975 0.413706 -0.082882 -0.237680 0.144887 -0.029004 0.206466 -0.512567 0.081224 0.163278 -0.133717 -0.745185 0.082408 -0.027549 0.116181 -0.009135 0.025020 0.375471 0.355149 0.338157 -0.142968 0.186537 0.339810 0.252218 0.022198 0.130993 0.066454 0.095011 0.299905 -0.156286 -0.164571 0.026923 -0.066738 -0.449210 0.072432 0.397067 0.549410 0.018373 0.058044 -0.056211 -0.009367 0.143887 0.203785 0.059641 0.017932 0.035077 0.153559 -0.391200 0.090265 -0.844867 -0.047468 -1.144426 -0.246509 -0.287940 0.377765 0.072227 0.021867 0.109250 0.458548 0.064729 0.119443 0.230264 0.446681 -0.267342 -0.160411 -0.204939 -0.231904 0.241287 -0.232367 -0.043234 0.054130 0.217622 -0.259382 -0.271889 0.243345 0.004048 -0.175770 -0.001443 -0.061295 0.395971 -0.605843 -0.138408 -0.367416 0.113275 0.028203 -0.531540 0.128434 -0.370042 0.480117 0.014608 -0.077975 -0.159828 0.079755 0.260394 -0.122377 0.019327 -0.457445 0.353375 0.054865 -0.084869 -0.003011 -0.049724 -0.055232 0.287008 0.249227 -0.290101 -0.112629 0.185086 -0.308146 -0.089886 -0.462957 -0.089893 0.300432 -0.361981 0.097983 0.092266 -0.276203 -0.236728 0.176608 -0.103888 0.298868 0.871433 -0.040059 0.253188 0.195447 -0.361864 0.125013 0.036087 0.029104 0.233533 0.336383 0.055808 -0.253265 -0.361969 0.030085 0.388586 0.302783 -0.282095 -0.232294 -0.207097 -0.019218 0.098284 0.037901 0.073372 -0.239673 -0.237845 -0.109909 0.050704 0.532419 0.002781 -0.219780 0.030326 0.122766 -0.288281 -0.353513 -0.074941 -0.070793 0.070800 -0.022387 -0.057401 0.206706 0.506824 -1.072461 0.423545 -0.075727 -0.000622 0.198041 -0.064849 -0.113830 -0.593519 0.066282 0.279267 0.528601 -0.035282 0.094237 0.185385 -0.410237 -0.058192 -0.006299 0.276597 -0.217964 0.175504 0.205645 -0.333010 -0.256694 -0.122889 0.014680 -0.082074 -0.070043 0.190397 0.092685 -0.928899 0.386325 -0.201859 -0.129715 0.149259 -0.000866 0.208051 -0.456587 -0.407662 0.135644 0.042754 -0.207567 -0.328401 0.030849 0.390417 -0.225311 0.037852 -0.163602 -0.352471 0.218949 -0.190571 0.157976 0.171171 0.061269 0.423451 0.067987 -0.074834 -0.325217 0.072154 0.014631 -0.284561 -0.099683 0.183056 -0.100877 0.279758 0.595344 0.043391 -0.066233 0.173128 0.581138 -0.256803 -0.242130 0.289340 0.127251 -0.057872 0.349830 0.329463 -0.532538 -0.303885 -0.261666 -0.059285 0.145665 -0.257252 0.322656 -0.255489 0.168395 0.148202 0.105643 -0.245396 0.300422 0.082426 -0.018083 0.003753 0.569341 0.619033 -0.171699 0.201539 -0.268930 0.108235 -0.545025 -0.229004 -0.111149 0.025144 -0.134570 0.196071 -0.123380 0.365630 0.019645 0.142226 -0.059017 -0.033206 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::addEdge(int, int, int) = -0.704955 -0.215996 0.890274 -1.275274 1.103606 0.969326 0.527467 -0.717308 -1.346898 -0.430719 0.275442 -1.313279 -0.873904 1.824025 -0.812985 0.871777 2.334292 0.694001 -0.646044 -0.488659 1.351671 -0.476957 2.331096 2.178941 -1.601190 -0.127452 0.448603 1.139201 0.504337 1.158484 -0.623873 -0.886655 0.814977 -1.028514 0.140028 -1.275162 0.144807 0.267950 0.483529 -2.422226 0.225616 -0.082980 -0.291893 -0.219298 -0.163847 0.774676 1.502339 1.409333 -0.215884 0.570792 1.075160 0.258767 0.054638 0.450261 0.596254 0.415323 1.007248 0.156254 -0.698312 -0.391361 -0.463068 -1.098059 0.121503 1.611741 2.010981 0.209224 -0.015782 0.329972 0.000000 0.373490 0.659807 0.450635 0.074470 0.452609 0.801276 -1.724583 0.306160 -2.613449 -0.439698 -2.930587 -1.004930 -0.555283 0.921705 -0.134092 0.814618 0.034116 1.844750 0.004784 -0.138989 0.874875 2.105545 -1.679989 -0.699688 -0.807261 -0.748938 0.377318 -0.988524 0.187436 0.476205 0.173725 -1.352705 -1.102838 0.726983 0.505410 -0.623940 -0.447459 -0.034644 1.600703 -1.652756 -1.016786 -1.030549 0.406714 -0.279506 -2.478987 -0.311548 -1.001088 1.526468 0.222715 -0.705198 -1.413821 0.549885 1.220720 -0.415804 -0.769851 -0.342059 1.425956 0.749825 0.216424 0.040642 0.098548 0.194157 1.977220 1.226540 -0.890093 -0.082845 0.162856 -1.051998 0.305723 -1.166286 -0.427921 0.515180 -1.467163 0.124468 1.136039 -1.036521 -0.282658 1.014798 0.177322 0.734608 4.667039 -0.302717 1.448163 0.932278 -1.740687 0.677981 -0.369569 0.086776 0.526879 0.967964 0.418375 -2.358206 -1.435987 0.932557 1.794035 1.170050 -1.904579 -0.411257 -0.530264 0.135910 -0.161219 0.149608 0.506220 -0.275938 -1.088456 -0.395734 0.851505 2.825794 -1.002723 -1.598396 0.629913 0.002317 -0.505666 -1.739117 -0.564576 -0.466909 0.253912 0.331560 -0.018378 0.831317 2.083750 -3.150470 1.565222 -0.406000 -0.474573 1.662705 0.190053 -1.012140 -1.340837 -0.056592 1.224346 1.661897 0.203976 -0.178109 0.485559 -1.666959 -0.152979 0.173638 0.707174 -0.617922 0.900040 0.577589 -1.307568 -1.129828 -0.461877 -0.023703 -0.615577 -0.375357 0.990788 -0.204977 -3.198019 1.736461 0.000000 -0.614109 0.532620 -0.276911 1.174829 -1.641465 -1.934259 0.916509 -0.231944 -0.679992 -0.946545 0.114475 1.062006 0.246966 0.386366 -1.160616 -1.777845 1.071558 -0.534514 1.325626 0.629408 0.292239 1.614197 0.054727 -0.609897 -1.426147 -0.492947 0.398464 -0.329328 -1.135508 -0.524406 -0.374823 1.540113 1.743904 0.005386 -0.471657 -0.241684 1.877450 -1.726305 -0.536448 1.179324 1.157489 -1.066334 0.562141 1.343736 -1.632835 -0.641104 -0.695725 -0.696653 -0.473769 -1.284374 0.952337 -0.585337 0.758287 0.326291 0.287705 -0.408767 0.701933 0.379062 0.228723 0.219685 1.982922 2.434731 -0.917167 0.050089 -1.520852 0.931624 -2.145097 -1.672444 0.544344 0.036018 -0.825746 0.246841 0.162167 1.464290 0.281070 -0.357683 -0.314011 -0.061574 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::AdjListNode(int, int) = -0.303513 -0.382421 0.494393 -0.602442 0.339358 0.019028 0.217038 -0.324948 -0.728977 -0.013894 0.138397 -0.332539 -0.016743 0.743476 -0.279240 0.557130 1.015672 0.494124 -0.281513 -0.401504 0.687733 -0.782058 0.870906 0.993358 -0.655062 -0.034580 0.256342 0.627328 0.467249 0.549223 -0.536081 0.113483 0.218435 -0.751062 0.215311 -0.879254 0.081025 0.417394 0.405443 -1.146730 0.145896 -0.245819 0.279413 -0.052683 -0.073188 0.641119 0.344985 0.571435 -0.170206 0.441460 0.557135 -0.207509 0.135887 0.176664 0.329368 0.517610 0.836753 0.503599 -0.243942 0.005564 -0.159576 -0.601942 0.448355 0.594090 0.912209 -0.031963 0.008544 0.152773 0.239007 0.090693 0.479760 0.143866 -0.262238 -0.110461 0.347527 -1.342694 0.416209 -1.640852 -0.146210 -1.576334 -0.390391 -0.151367 0.388357 -0.564339 0.450927 0.250749 0.733984 -0.049267 -0.109903 0.062300 0.621428 -0.777638 -0.292459 -0.218874 -0.383938 0.139473 -0.379976 -0.123837 0.593848 0.102701 -0.463538 -0.488847 0.732660 0.334667 -0.267496 -0.106463 -0.016038 0.703575 -0.645697 -0.743871 -0.394402 0.096043 -0.305999 -0.856703 0.535828 -0.724600 0.762168 0.046708 -0.300835 -0.668998 0.177783 0.582622 -0.212300 -0.321261 -0.279300 0.720510 0.246421 0.054141 -0.044994 -0.156223 -0.158528 0.684511 0.645471 -0.555494 -0.063577 0.309190 -0.780304 0.122286 -0.744197 -0.395844 0.606976 -0.652052 -0.189177 0.209362 -0.443835 0.144091 1.308363 0.317686 0.260266 1.928172 -0.017880 0.583787 0.413184 -0.576308 0.572448 0.095737 0.280541 0.461142 0.536581 -0.081675 -1.412291 -0.659322 0.150448 0.677734 0.504736 -0.976579 -0.828543 -0.383810 0.046488 0.325310 -0.054699 0.125885 -0.254392 -0.446756 -0.122938 -0.029180 1.272581 -0.445052 -0.528719 0.116674 -0.232197 -0.704806 -1.401071 -0.270263 -0.550718 0.132858 -0.478163 0.000839 0.357560 0.814746 -1.746762 0.711661 -0.540146 -0.241317 0.939960 -0.018565 -0.363619 -1.284886 -0.123269 0.239751 0.854379 0.025492 -0.125348 0.533573 -0.700680 -0.023380 -0.158942 0.271154 -0.327491 0.376291 0.238270 -0.540724 -0.280978 -0.045748 0.061799 -0.408945 0.074032 0.427687 -0.110968 -1.312153 0.456833 -0.094408 -0.260624 0.572503 0.125736 0.266845 -0.655542 -0.633532 0.339181 0.232890 0.088702 -0.726498 0.063762 0.531905 -0.256253 -0.153162 -0.448532 -0.870124 0.211143 -0.661424 0.460910 0.262337 -0.152967 0.590876 0.308155 -0.173081 -0.747084 0.367336 -0.452974 -0.274228 -0.303233 -0.472313 -0.125428 0.658953 0.729459 0.199189 0.212124 0.129455 0.986808 -0.763126 -0.305743 0.474230 0.452785 -0.301662 0.282140 0.531422 -0.916394 -0.238543 -0.193106 -0.535537 0.077759 -0.277175 0.676179 -0.199433 0.377404 -0.113061 0.211411 -0.013404 0.383959 0.204479 0.105571 0.027950 1.018435 1.310064 -0.287740 -0.134703 -0.523732 0.281633 -0.779776 -0.394561 -0.020138 0.387719 -0.582871 0.295414 0.363862 0.744601 0.206276 -0.177824 -0.030411 -0.152323 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::push_back(AdjListNode const&) = -0.393401 0.422519 1.031386 -1.031333 0.911656 0.566330 0.289656 -0.279628 -0.773459 -0.525266 -0.148460 -0.897224 -0.903899 1.280504 -0.616633 0.073999 1.790952 0.501754 -0.302807 -0.413763 0.851887 -0.381816 1.574160 1.505993 -1.357415 -0.030149 0.664674 0.861908 0.356394 1.202490 -0.612930 -0.953458 0.365006 -0.118637 0.544261 -0.984653 0.119830 -0.152330 -0.193692 -1.907424 0.155767 -0.015483 -0.204815 -0.182168 -0.031300 0.779597 1.547288 0.969966 -0.421378 -0.029383 0.874053 0.620141 -0.097963 0.297384 0.378952 0.174232 1.031777 0.169529 -0.481999 -0.155502 -0.293692 -0.832648 0.017336 1.302350 1.489585 0.233028 0.090516 0.007296 -0.041530 0.269086 0.155668 0.281825 0.394614 0.619241 0.531091 -0.970691 0.242467 -2.185488 -0.192089 -2.616972 -0.754199 -0.842108 0.533092 -0.078097 0.281471 -0.102190 1.382458 0.134932 0.371358 0.607444 1.754056 -0.984465 -0.436997 -0.858633 -0.801377 0.442703 -0.636845 0.104814 0.202661 0.027407 -0.937050 -0.945297 0.461861 0.185601 -0.488910 -0.001059 -0.093111 1.121425 -1.237884 -0.317652 -1.042174 0.074072 -0.001614 -1.868447 -0.179050 -0.785787 1.111922 0.056561 -0.349325 -0.966815 0.316298 1.033208 -0.484618 -0.318287 -0.754878 1.269090 0.517544 -0.075629 0.042366 -0.180365 0.280622 0.961390 0.974930 -0.665891 -0.209115 0.093297 -0.913571 -0.285879 -1.050647 -0.113064 0.664561 -0.889177 0.120973 0.784143 -0.762436 -0.322448 0.525266 -0.447182 0.868483 3.416189 -0.418630 0.818023 0.264811 -1.401633 0.626074 0.021844 -0.357153 0.243614 0.811920 0.630133 -1.440099 -1.010450 0.605399 1.272015 0.837819 -1.148896 -0.197742 -0.512979 -0.207236 -0.164074 0.156924 0.268295 -0.507400 -0.738695 -0.435400 0.615118 1.914148 -0.449047 -1.544312 0.355047 0.286026 -0.283268 -0.909225 -0.256530 -0.189793 0.222384 0.197102 -0.242304 0.853825 1.563733 -3.006717 1.193289 -0.108337 -0.541645 1.076828 -0.167630 -0.449786 -1.052387 0.368348 1.265526 1.273501 0.190920 -0.134402 0.039200 -1.167345 -0.168691 0.086990 0.810292 -0.584731 0.563585 0.487927 -1.173862 -1.013237 -0.690934 -0.063023 -0.385776 -0.485327 0.511122 -0.174620 -2.768394 1.648919 -0.130720 -0.191598 0.176767 -0.382907 0.517944 -1.317703 -1.511133 0.446208 -0.096081 -0.477232 -0.646495 -0.000830 0.949210 -0.083431 0.456571 -0.878972 -1.521547 0.725538 -0.311385 0.837731 0.488394 0.599123 1.310276 0.380108 -0.267713 -1.117797 -0.289140 0.571623 -0.237513 -0.781671 -0.017482 -0.380949 0.971460 1.535718 -0.270168 -0.175254 -0.264594 1.297858 -0.996112 -0.491824 0.806547 0.446839 -0.700777 0.378291 0.955423 -1.064124 -0.897462 -0.774836 -0.441146 -0.216755 -1.102292 0.437810 -0.726183 0.309425 0.667349 0.027998 -0.656052 0.586144 0.153043 0.024624 0.135450 1.306914 1.819926 -0.839331 0.431610 -1.036537 0.682646 -1.754411 -1.204426 0.264368 -0.371827 -0.333964 0.150210 -0.107557 0.890154 -0.132064 0.233602 -0.089607 -0.109375 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -2.263177 0.318127 2.826936 -4.912289 4.004670 3.583999 1.742133 -1.590096 -4.431060 -2.568337 0.638746 -5.966439 -4.104827 6.752916 -2.595734 2.080338 8.285618 1.689682 -2.294333 -0.573442 4.442235 -0.137252 7.735149 6.996643 -5.579927 -0.483358 0.229516 3.734560 0.687630 3.850770 -0.448613 -4.779774 2.388225 -1.763971 0.384020 -3.275695 0.829370 0.364448 0.228512 -8.416968 1.061885 1.788318 -0.954612 -1.515525 -0.815176 0.997601 6.380855 5.111510 -1.091663 0.098847 3.424288 2.078109 -0.387719 1.637990 1.435690 -0.309435 1.416511 -1.841194 -3.016527 -1.891192 -1.225941 -3.537248 -0.323611 5.844239 6.736047 1.335869 0.101733 1.235703 -0.382162 1.559986 1.726546 1.145928 1.341164 1.880115 2.643870 -3.189871 0.012857 -7.250260 -1.067319 -9.566912 -3.673111 -2.040819 4.251235 3.100449 1.635700 -1.844082 6.142271 -0.246968 0.171135 5.049158 8.186105 -4.720703 -2.564619 -4.462402 -3.230673 2.185243 -3.325452 0.630268 0.059159 0.947409 -5.029387 -2.985825 0.736421 1.238585 -2.085309 -1.538124 0.411350 5.232474 -5.659253 -2.101210 -2.959377 2.481220 0.267073 -8.920347 -2.469316 -2.953699 3.153547 0.587443 -2.052198 -3.979859 1.556753 3.234774 -1.731476 -1.764312 -3.978493 5.122102 2.086372 0.803808 0.573866 0.823308 1.630878 6.170083 2.634474 -2.891767 -0.117736 -0.144864 -2.344173 0.625330 -3.533019 -1.423313 1.421262 -4.865372 -0.084425 4.051032 -3.613579 -1.941370 -1.026690 -0.187897 3.056117 15.929732 -0.974556 4.970785 3.004442 -6.321482 2.681889 -1.337556 -1.114096 0.760026 2.837486 2.063799 -6.051381 -5.052231 3.702569 6.191256 4.390579 -4.506031 0.791975 -1.248375 -0.146818 -1.433894 0.738743 1.865309 -0.675440 -4.246892 -1.675954 4.507768 9.310903 -2.091368 -4.704924 2.932266 1.679829 -0.354646 -3.657068 -1.702368 -0.680706 0.717073 2.269236 -0.453008 3.467499 7.673887 -9.434263 5.534339 0.332365 -0.956152 4.285322 -0.046143 -3.871677 -4.173532 -0.035264 5.524306 5.973195 0.130355 -0.102661 0.337326 -5.451488 -0.696779 1.333327 2.103230 -1.660769 2.614337 0.939283 -4.072244 -4.427773 -2.158443 -1.551135 -0.951295 -2.239488 3.060262 0.619117 -8.944058 7.312759 -0.072430 -1.460111 0.223721 -1.969124 4.386733 -5.900286 -6.995499 2.866282 -1.645978 -4.032696 -2.533201 0.539694 3.634850 1.151390 1.177724 -3.520659 -5.885315 4.825752 -0.815089 4.739510 2.251507 1.663782 5.004182 2.138988 -1.920004 -4.155650 -4.139557 2.566674 -0.817603 -4.695666 -0.187090 -1.543532 5.062711 5.748650 -0.950270 -3.357036 -0.932400 5.855327 -4.263419 -2.470891 4.248415 0.898082 -4.408922 1.742689 5.106757 -5.350664 -2.147678 -3.728157 -0.599853 -2.051692 -5.523104 2.040036 -1.503268 2.207604 2.110881 0.318490 -2.141020 2.099463 1.526812 0.131077 0.823743 7.177769 5.860480 -2.861100 1.021155 -5.661799 3.091467 -7.925223 -6.514385 2.408352 -0.727718 -2.146880 0.481476 -0.203399 4.525692 0.284613 0.104730 -1.280265 0.466390 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator() = -0.050183 -0.044838 0.232091 -0.180773 0.091170 -0.124680 0.057651 -0.038209 -0.241877 -0.056212 -0.042253 -0.094671 -0.007526 0.220717 -0.068105 0.143134 0.360794 0.243676 -0.044794 -0.178641 0.146964 -0.403604 0.269981 0.350146 -0.244087 0.055893 0.071542 0.270036 0.159187 0.327509 -0.211834 0.053505 0.024972 -0.153230 0.180577 -0.384463 0.020789 0.169740 0.002007 -0.509497 0.049170 -0.011737 0.302954 -0.002937 0.016505 0.233792 0.161081 0.174332 -0.038398 0.166658 0.166218 -0.034870 0.133904 0.070352 0.125699 0.236689 0.413457 -0.006052 -0.116857 0.084551 -0.013161 -0.353727 0.175107 0.189741 0.319519 -0.029220 0.010768 -0.018479 0.059724 0.023449 0.161396 0.047033 -0.158197 -0.043333 0.062817 -0.442678 0.278725 -0.490914 -0.012840 -0.655937 -0.167732 -0.156695 0.182122 -0.024116 0.126800 0.135543 0.271247 -0.035363 0.076421 -0.093905 0.184772 -0.244835 -0.089705 -0.057703 -0.104708 0.110948 -0.110642 -0.142290 0.165193 0.093079 -0.116081 -0.136356 0.387129 0.086968 -0.125255 0.102773 -0.038065 0.221005 -0.335729 -0.266707 -0.213595 -0.042759 -0.110057 -0.232436 0.366641 -0.250110 0.181300 0.028521 -0.040135 -0.210736 0.044655 0.195366 -0.058822 -0.033572 -0.412002 0.271529 -0.008834 -0.088211 0.013111 -0.067510 -0.078878 0.151833 0.189161 -0.197242 -0.062598 0.203891 -0.295580 -0.052986 -0.277254 -0.172624 0.187622 -0.254116 -0.128306 -0.018618 -0.163384 0.087073 0.290679 0.067488 0.140798 0.462924 0.004874 0.126613 0.096255 -0.180427 0.241484 0.097459 0.051039 0.174027 0.214731 -0.011026 -0.356531 -0.219622 -0.070192 0.217013 0.165326 -0.174894 -0.345266 -0.192614 -0.008761 0.227598 0.009281 0.007798 -0.127860 -0.156685 -0.042534 -0.138602 0.416101 -0.040368 -0.054054 -0.002715 -0.160629 -0.346601 -0.507602 -0.057150 -0.207277 0.023486 -0.354986 -0.031951 0.082299 0.257615 -0.629609 0.299663 -0.227088 -0.108816 0.324707 -0.143914 -0.019878 -0.575195 -0.021815 0.081332 0.361136 -0.075068 -0.006436 0.171219 -0.242014 -0.031452 -0.106572 0.137837 -0.162042 0.129780 0.097962 -0.222580 -0.071623 -0.046347 0.069438 -0.138679 0.014656 0.107851 0.104888 -0.403922 0.138287 -0.096224 -0.086874 0.254829 0.109961 -0.029838 -0.242494 -0.158498 0.047279 0.132475 0.026465 -0.259921 -0.013645 0.218414 -0.238626 -0.198937 -0.098472 -0.196617 0.029774 -0.254266 0.046741 0.127257 -0.054481 0.141403 0.305324 -0.052468 -0.166067 0.259735 -0.334429 -0.249504 0.034379 -0.030378 -0.092777 0.187848 0.372602 0.125976 0.157827 0.155876 0.382333 -0.124999 -0.186590 0.167783 -0.064049 -0.010598 0.138747 0.180201 -0.339886 -0.153187 -0.111403 -0.151575 0.171452 -0.046237 0.267629 -0.167421 0.079849 0.041291 0.018583 -0.094184 0.196596 0.030193 -0.035388 -0.043197 0.416209 0.312520 -0.037802 0.084593 -0.107677 0.015063 -0.261599 0.028183 -0.154861 0.244040 -0.201051 0.143838 0.123141 0.222804 0.059121 0.015317 0.014455 -0.122828 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::begin() = -0.234340 0.683893 0.731310 -0.657870 1.028902 1.159584 0.258399 -0.326206 -0.494399 -0.259260 -0.196711 -0.998119 -0.839820 1.053046 -0.455102 0.213396 1.369667 0.180715 -0.228534 0.072306 0.416465 0.240061 1.291351 1.032761 -0.873680 0.087472 0.363009 0.236780 -0.440975 1.348048 -0.839945 -1.483280 0.357324 0.062096 0.122771 -0.367614 -0.116223 -0.425718 0.060941 -1.343757 0.101310 0.381631 -0.434288 -0.268073 -0.008235 -0.195436 1.584228 0.673765 0.028104 -0.144830 0.319827 0.640564 -0.075442 0.237237 0.619886 0.314939 0.814785 -0.186634 -0.543040 -0.245668 -0.383535 -0.194804 -0.422639 0.965457 0.946065 0.306214 -0.072292 -0.102831 -0.408139 0.096431 -0.147294 0.278679 0.432364 0.838481 0.210128 -0.050812 0.140153 -0.722329 -0.200630 -0.947322 -0.649588 -0.591478 0.061089 0.571286 0.475344 -0.440715 1.120888 -0.154651 0.299002 0.183023 1.661435 -1.014360 -0.350271 -0.629376 -0.524468 0.037292 -0.378364 0.069482 -0.268391 -0.428683 -0.863399 -0.900943 0.255977 0.248387 -0.325989 0.073203 0.012721 0.806684 -0.845714 -0.303804 -0.813903 0.024664 -0.143376 -1.490528 -0.742639 -0.115067 0.155797 0.223145 -0.488972 -1.199847 0.518974 0.892837 -0.492452 -0.551004 -0.259995 0.972269 0.473502 -0.031810 0.128223 -0.168597 0.498702 1.102034 0.620114 -0.371725 0.049118 -0.189342 -0.305584 -0.176416 -0.385003 -0.003552 -0.498209 -0.701368 0.170487 0.995571 -0.613428 0.168219 -0.588635 -0.376228 0.577366 2.685665 -0.678013 0.687062 -0.023460 -1.431366 0.559022 -0.206174 -0.590564 -0.341363 0.462315 0.837780 -1.033324 -0.690549 0.853593 1.071691 0.642633 -0.714413 0.435916 -0.358892 -0.112856 -0.324390 0.320519 0.265964 -0.117305 -0.700414 -0.397563 0.564981 1.938975 -0.525055 -1.597171 0.564457 0.117400 0.313186 -0.133455 -0.235754 -0.219997 0.127736 0.507073 -0.295128 0.634872 1.242316 -1.871323 0.965031 -0.096491 -0.915120 1.111733 -0.106596 -0.339583 0.271103 0.160072 1.256905 0.958202 0.356072 -0.048329 -0.412223 -0.831555 -0.185685 0.105875 0.625516 -0.453555 0.490034 0.410500 -1.339983 -0.823698 -0.804722 -0.047782 -0.552670 -0.770405 0.338465 0.067495 -2.123063 1.531248 0.455224 -0.003488 0.068997 -0.313294 0.442774 -0.853037 -1.346893 0.420687 -0.378202 -0.285951 0.199538 -0.126383 0.500636 0.398192 0.668560 -0.790102 -1.181773 0.635331 0.369246 0.899436 0.394066 0.668300 0.732068 0.409316 -0.378436 -0.519655 -0.838004 0.965244 -0.052442 -0.648017 0.039895 -0.494136 0.903741 1.054582 -0.159730 -0.399103 -0.932159 0.746810 -0.594596 0.153041 0.744769 0.061868 -0.825059 -0.302792 0.866359 -0.364976 -0.687040 -0.498999 -0.149983 -0.710588 -0.959939 -0.065982 -0.601889 0.071598 0.682827 -0.234290 -0.705459 0.156182 0.017133 -0.116328 0.150833 0.811694 0.592315 -0.626834 0.620789 -0.803748 0.631682 -1.337966 -1.125262 0.458215 -0.598419 -0.486177 -0.221386 -0.123784 0.495448 -0.325000 0.342140 -0.012695 -0.216754 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::end() = -0.195825 0.491484 0.593190 -0.493792 0.799367 0.806594 0.232777 -0.202977 -0.445697 -0.250410 -0.161411 -0.807769 -0.699622 0.875334 -0.345378 0.199171 1.156550 0.238442 -0.168164 0.020008 0.328991 0.045381 1.067918 0.887758 -0.712724 0.084542 0.236557 0.245097 -0.335551 1.116554 -0.656386 -1.143104 0.323491 0.023222 0.148462 -0.385445 -0.081489 -0.258472 -0.006559 -1.181358 0.085710 0.362511 -0.209512 -0.205634 0.003200 -0.050334 1.244747 0.568339 0.028318 -0.031440 0.245741 0.431531 0.014685 0.219427 0.502047 0.278175 0.656316 -0.204810 -0.507795 -0.147411 -0.310593 -0.335169 -0.313464 0.760536 0.815973 0.211551 -0.053630 -0.096777 -0.338391 0.105104 -0.055558 0.220063 0.338845 0.580012 0.198593 -0.074433 0.136128 -0.622626 -0.182755 -0.978180 -0.561844 -0.509585 0.182931 0.498219 0.375315 -0.346004 0.931889 -0.122090 0.248294 0.123562 1.335749 -0.841247 -0.317673 -0.501498 -0.367033 0.078728 -0.343215 -0.003470 -0.109803 -0.307118 -0.708323 -0.700879 0.306002 0.185198 -0.275266 0.080843 -0.015328 0.699241 -0.773574 -0.300142 -0.741781 -0.016148 -0.102921 -1.197177 -0.424643 -0.093060 0.113098 0.237237 -0.390656 -0.913689 0.432104 0.686943 -0.375315 -0.422823 -0.344572 0.841761 0.300757 -0.055822 0.137899 -0.086803 0.344656 0.873428 0.537992 -0.318135 0.017192 -0.073212 -0.306299 -0.118952 -0.356691 -0.077981 -0.327075 -0.629349 0.094545 0.705609 -0.528880 0.134232 -0.474889 -0.247986 0.483064 2.030181 -0.504207 0.556714 0.018329 -1.128015 0.532204 -0.149804 -0.424803 -0.218550 0.438544 0.626393 -0.790067 -0.584314 0.625320 0.885477 0.545939 -0.580045 0.257521 -0.332486 -0.028601 -0.204965 0.264550 0.241620 -0.072052 -0.587750 -0.294562 0.386686 1.568511 -0.432191 -1.215947 0.435161 0.035740 0.180498 -0.256244 -0.195326 -0.199058 0.075712 0.269541 -0.226353 0.459512 1.025022 -1.521274 0.835738 -0.133580 -0.701902 0.933132 -0.127500 -0.266649 0.006026 0.099187 0.979675 0.849859 0.280707 -0.044040 -0.277844 -0.708577 -0.153874 0.051892 0.522709 -0.363850 0.419563 0.281948 -1.046570 -0.650320 -0.665160 -0.013227 -0.459248 -0.573216 0.293332 0.190192 -1.698127 1.190641 0.298206 -0.060764 0.100635 -0.157525 0.329275 -0.716928 -1.090835 0.324651 -0.304319 -0.312408 0.051876 -0.096220 0.420174 0.233176 0.377482 -0.562964 -0.928985 0.565642 0.235839 0.703240 0.336337 0.485650 0.633291 0.492151 -0.367306 -0.394237 -0.590084 0.628855 -0.201200 -0.455771 0.051010 -0.397751 0.739311 0.927708 -0.051225 -0.270447 -0.677070 0.694629 -0.483827 0.030820 0.667299 -0.005563 -0.570885 -0.132672 0.751671 -0.398925 -0.575801 -0.427286 -0.129983 -0.477744 -0.744425 0.005997 -0.547645 0.062488 0.534316 -0.181218 -0.575456 0.164574 0.025733 -0.125468 0.060944 0.770282 0.521905 -0.523833 0.534989 -0.633063 0.481027 -1.092922 -0.825807 0.290335 -0.336956 -0.422320 -0.115997 -0.028340 0.403006 -0.230534 0.205778 -0.061232 -0.204560 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator*() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getV() = -0.121892 0.091555 0.228617 -0.374126 0.400081 0.338641 0.106831 -0.258566 -0.333986 -0.075302 0.036725 -0.315049 -0.127538 0.437567 -0.219579 0.267158 0.568047 0.106681 -0.117042 -0.124160 0.315103 -0.062683 0.589592 0.517383 -0.440275 0.036929 0.217335 0.191877 0.059113 0.417694 -0.294891 -0.384137 0.176101 -0.249462 -0.025624 -0.306829 0.007100 0.003011 0.260831 -0.601475 0.073468 -0.129731 -0.125904 -0.060234 -0.061945 0.024580 0.478263 0.327181 -0.076150 0.167229 0.341094 0.241317 -0.066515 0.105958 0.183518 0.202083 0.369368 -0.011435 -0.110103 -0.104319 -0.082764 -0.109504 0.008461 0.427491 0.472338 0.049793 -0.005029 0.110405 -0.052252 0.031612 0.120583 0.112603 -0.050739 0.208848 0.118849 -0.485316 0.089867 -0.733091 -0.114541 -0.658100 -0.257308 -0.147460 0.069187 -0.029039 0.283278 0.138306 0.464996 -0.018564 0.021702 0.143177 0.536847 -0.465943 -0.146352 -0.152074 -0.279808 0.057586 -0.189154 0.056110 -0.071339 -0.014187 -0.315642 -0.406478 0.247676 0.168819 -0.177254 -0.158367 0.021145 0.315186 -0.449887 -0.284749 -0.191892 0.117830 -0.161583 -0.599080 -0.141713 -0.254389 0.428062 -0.003585 -0.151859 -0.525139 0.109664 0.391990 -0.173463 -0.250947 -0.033057 0.257503 0.271956 0.084251 0.007896 -0.141608 0.135513 0.605496 0.254141 -0.262808 -0.014501 -0.016600 -0.151240 0.024067 -0.275205 -0.068661 -0.037844 -0.356950 0.157596 0.382982 -0.246824 -0.036591 0.308521 -0.055790 0.177649 1.209913 -0.117311 0.357810 0.171786 -0.529987 0.047721 -0.141992 -0.076786 0.094313 0.217034 0.150606 -0.532988 -0.352440 0.245724 0.422664 0.279425 -0.422679 -0.151208 -0.130137 -0.054985 0.039072 0.026030 0.060776 -0.129130 -0.283155 -0.142050 0.195444 0.824860 -0.164252 -0.333222 0.192793 0.076866 -0.160645 -0.306375 -0.153091 -0.241050 0.117803 0.171843 -0.049463 0.263056 0.518133 -1.002388 0.362328 -0.160654 -0.217147 0.318307 0.092810 -0.231414 -0.174930 0.037780 0.342331 0.413613 0.007229 0.153921 0.095423 -0.379927 -0.061123 0.015969 0.150972 -0.223407 0.195674 0.276875 -0.518742 -0.280745 -0.024256 0.005831 -0.193094 -0.134671 0.222135 -0.059921 -0.979843 0.478902 0.052811 -0.099738 0.185811 -0.126347 0.352987 -0.392071 -0.455243 0.260323 -0.028523 0.048036 -0.034038 0.007656 0.283305 0.035673 0.263015 -0.320697 -0.438644 0.112576 -0.040552 0.271326 0.185775 0.120694 0.294170 -0.261775 -0.074029 -0.371286 -0.097870 0.193375 -0.032113 -0.263983 -0.030095 -0.162423 0.397099 0.445565 0.023275 -0.165611 -0.072167 0.405032 -0.392301 0.021315 0.260396 0.350462 -0.371704 0.012818 0.306383 -0.316550 -0.168482 -0.148710 -0.086080 -0.150594 -0.321131 0.221701 -0.097415 0.172749 0.143679 0.055870 -0.158422 0.216399 0.034487 0.078259 0.062633 0.404995 0.495896 -0.177506 0.031945 -0.348795 0.171072 -0.543415 -0.483120 0.151822 -0.074374 -0.288039 0.008493 -0.105513 0.400930 -0.016474 0.155711 0.030264 -0.054622 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator++() = -0.166111 0.332848 0.503405 -0.547429 0.590474 0.620401 0.122804 -0.332024 -0.356424 -0.085541 -0.101866 -0.477716 -0.292539 0.629328 -0.331243 0.211156 0.848607 0.140142 -0.176452 -0.081546 0.394051 -0.019603 0.781766 0.672732 -0.599468 0.024339 0.384205 0.263994 -0.041018 0.795931 -0.595893 -0.665409 0.142425 -0.143302 0.110480 -0.384385 -0.015190 -0.159931 0.179315 -0.845776 0.095086 -0.054994 -0.203785 -0.141078 -0.049495 -0.055782 0.864149 0.427746 -0.056861 -0.071777 0.359545 0.424979 -0.105768 0.129565 0.363871 0.329125 0.704508 0.061033 -0.195591 -0.148993 -0.182584 -0.067944 -0.034968 0.646674 0.627826 0.176392 0.008201 0.024968 -0.107373 0.019351 -0.007977 0.146718 0.037235 0.484487 0.103896 -0.493642 0.238033 -0.814259 -0.103576 -0.684520 -0.335216 -0.339154 -0.110340 0.040161 0.368895 -0.007298 0.670897 -0.076872 0.175532 0.074466 0.902288 -0.652967 -0.182139 -0.358201 -0.447236 0.022554 -0.220908 0.028648 -0.136778 -0.165665 -0.459301 -0.604368 0.275152 0.254498 -0.218220 -0.002452 0.025232 0.477836 -0.514695 -0.309390 -0.376517 0.036523 -0.223419 -0.892623 -0.285815 -0.325296 0.373107 -0.010738 -0.246571 -0.858467 0.228359 0.691907 -0.300748 -0.351289 -0.138488 0.537739 0.369098 -0.014003 -0.013368 -0.258506 0.226570 0.698675 0.422183 -0.324516 -0.005244 -0.057957 -0.339224 -0.169448 -0.376885 -0.033603 -0.122237 -0.442657 0.062885 0.640920 -0.355536 0.117036 0.190343 -0.206075 0.376605 1.908831 -0.353847 0.414461 0.024697 -0.857195 0.264534 -0.054174 -0.274786 -0.072661 0.283839 0.407957 -0.911756 -0.478829 0.425528 0.609663 0.395383 -0.510611 -0.025717 -0.286319 -0.169199 -0.021429 0.072043 0.088665 -0.259762 -0.411437 -0.266077 0.262310 1.224049 -0.276274 -0.828838 0.298097 0.034208 -0.094604 -0.309944 -0.176786 -0.278289 0.154201 0.173019 -0.176425 0.458321 0.755443 -1.415518 0.577099 -0.177456 -0.532664 0.672590 -0.062730 -0.197087 -0.060962 0.118235 0.691295 0.598468 0.086126 0.022815 -0.080006 -0.515752 -0.096436 0.003522 0.378220 -0.330525 0.259432 0.385592 -0.867060 -0.480036 -0.280243 -0.001611 -0.357695 -0.349104 0.216614 -0.171863 -1.371319 0.890277 0.206417 0.027834 0.216218 -0.210280 0.269818 -0.565054 -0.742032 0.291067 -0.015475 0.114533 0.032676 -0.039365 0.427457 0.106425 0.424998 -0.568237 -0.772438 0.158822 0.020464 0.465503 0.230323 0.354085 0.406294 0.015602 -0.073515 -0.500150 -0.249706 0.357964 0.061437 -0.410212 -0.086052 -0.261461 0.582618 0.656150 -0.100573 -0.133765 -0.335910 0.522830 -0.437838 0.071930 0.362415 0.203392 -0.576647 -0.213189 0.448251 -0.321648 -0.420421 -0.240916 -0.185981 -0.318975 -0.543173 0.112957 -0.281415 0.131869 0.340355 -0.045412 -0.345667 0.190452 0.040671 0.034197 0.146081 0.511492 0.552954 -0.285398 0.202825 -0.487867 0.326707 -0.823136 -0.669622 0.234198 -0.285701 -0.330866 -0.046124 -0.076006 0.460004 -0.153510 0.315075 0.126976 -0.176634 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = -0.413558 0.520414 0.918073 -1.000680 1.167729 1.111363 0.363366 -0.409894 -0.809124 -0.334697 -0.185619 -1.054074 -0.874397 1.462733 -0.571759 0.479407 1.973457 0.463213 -0.345049 -0.150545 0.939258 -0.266490 1.743616 1.534987 -1.316590 0.010890 0.659243 0.628381 -0.072929 1.512250 -0.986705 -1.354492 0.491661 -0.440593 0.327186 -0.939077 0.044680 -0.216140 0.200079 -2.020084 0.181612 0.136399 -0.320284 -0.318613 -0.139177 0.165356 1.784695 1.036830 -0.258466 -0.035986 0.707193 0.575288 -0.119295 0.347083 0.622148 0.557206 0.998461 0.187839 -0.657221 -0.270546 -0.393433 -0.628559 -0.071148 1.320021 1.491047 0.274455 0.031759 0.162583 -0.243773 0.161407 0.076277 0.302819 0.340540 0.708070 0.505178 -0.987275 0.172498 -1.896617 -0.314978 -2.117939 -0.852728 -0.823392 0.244782 0.092746 0.712894 -0.266449 1.500928 -0.138039 0.372286 0.438340 2.020364 -1.416161 -0.517341 -0.997348 -0.772596 0.258324 -0.653284 -0.002679 0.186395 -0.424102 -1.107367 -1.250694 0.586851 0.465177 -0.484917 -0.214534 -0.011614 1.227447 -1.170831 -0.740017 -1.100168 0.044657 -0.351707 -2.029487 -0.385520 -0.547494 0.697595 0.219561 -0.494902 -1.584939 0.487550 1.309114 -0.559641 -0.800498 -0.304837 1.378636 0.646246 -0.039468 0.168740 -0.252690 0.403768 1.481646 1.141670 -0.645318 -0.090159 0.014020 -0.836210 -0.218630 -0.918740 -0.241331 0.101664 -1.104196 0.025103 1.186214 -0.855873 0.111935 0.413294 -0.327846 0.872183 3.906630 -0.577244 0.936033 0.197275 -1.763992 0.886680 -0.137829 -0.517367 -0.004463 0.807979 0.776664 -1.900719 -1.072107 0.818932 1.407558 0.946336 -1.243556 -0.179189 -0.664026 -0.137493 -0.182379 0.162643 0.370932 -0.311897 -0.943849 -0.454070 0.686284 2.523994 -0.800267 -1.787862 0.644019 0.202549 -0.197247 -1.057096 -0.412223 -0.635664 0.170763 0.272427 -0.325469 0.871045 1.723919 -2.826367 1.320559 -0.356695 -0.940108 1.423020 -0.101188 -0.530766 -0.660345 0.250108 1.475730 1.423705 0.269507 -0.043771 -0.135033 -1.218137 -0.186395 0.072631 0.803396 -0.566810 0.647405 0.429440 -1.539802 -1.072958 -0.663683 -0.104948 -0.785077 -0.589623 0.534518 0.002435 -2.775168 1.860860 0.209396 -0.159756 0.430098 -0.319982 0.673216 -1.325312 -1.768722 0.666714 -0.120133 -0.206874 -0.259959 -0.033140 0.947916 0.251625 0.492061 -0.972132 -1.795928 0.709735 -0.009191 1.064555 0.535603 0.666437 1.206359 0.433648 -0.471658 -1.104026 -0.666440 0.614577 -0.136715 -0.906617 -0.425653 -0.509259 1.292945 1.557387 -0.134046 -0.299747 -0.746107 1.308723 -1.163720 -0.137361 1.018069 0.432503 -1.004742 -0.128537 1.178555 -0.975051 -0.916064 -0.649653 -0.295774 -0.507369 -1.230970 0.260688 -0.786665 0.284978 0.706108 -0.105135 -0.645451 0.437808 0.194686 0.045575 0.089161 1.344036 1.420196 -0.912694 0.387580 -1.104826 0.747483 -1.876151 -1.406909 0.454626 -0.349884 -0.642901 0.031553 0.131096 0.907069 -0.271396 0.309242 -0.001473 -0.407595 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::longestPath(int) = -6.309073 -2.546065 1.617712 -14.177512 13.504965 11.972740 5.199328 -6.300307 -13.948546 -3.149929 3.442401 -17.757416 -6.568710 20.081611 -6.604467 13.754666 23.697837 2.213578 -7.052086 1.263710 16.587149 -0.450609 21.931797 14.884732 -14.776943 -2.218053 -1.359599 8.014002 0.371097 8.599080 1.159917 -12.893183 6.762537 -12.215709 -3.628853 -9.346136 4.332502 3.269787 8.629337 -24.473894 3.996852 6.141451 -1.218233 -5.504111 -3.993198 0.063032 13.914033 15.321803 -4.929963 2.279531 10.124224 4.644495 -2.623095 4.832189 -0.141658 0.603871 1.491222 -3.699701 -10.665395 -8.144653 -2.057582 -5.645945 2.436763 14.963024 19.484516 1.867161 1.087320 11.329587 0.319270 4.372926 6.682380 2.096545 -1.998082 3.273793 7.740587 -11.519690 -3.848357 -19.729656 -4.500627 -25.617473 -9.709312 -2.218950 9.857929 8.238855 7.137212 -2.453707 15.805214 -1.787277 -1.397771 18.375732 20.559822 -13.486367 -7.549178 -15.783873 -10.500603 5.825046 -9.303516 -1.214705 5.746362 2.416374 -14.079447 -8.800414 1.520988 6.638663 -4.783907 -10.574523 2.331899 13.333650 -14.555835 -12.569332 -2.203295 11.744013 -4.530852 -26.413003 -7.744273 -6.280729 5.579294 1.501965 -1.182056 -13.976002 2.734630 9.492073 -4.636170 -7.343558 -5.358056 13.992854 7.627970 5.383915 3.540553 2.057878 4.199236 21.567211 6.609311 -8.212673 -0.911242 -0.677034 -3.504906 4.354387 -9.135713 -6.438804 -0.027891 -16.958431 3.299814 15.179930 -9.124791 -4.886494 -2.301155 2.081136 7.655818 47.050560 -0.325606 17.364783 9.843777 -19.305654 7.001359 -5.684008 -3.087511 1.613333 5.378413 2.937549 -18.801134 -14.279910 10.340499 14.791288 13.147707 -14.112227 -0.695783 -3.543845 -0.771606 -1.137748 -1.145678 8.530409 -1.242374 -14.231727 -3.472919 12.755619 31.924860 -5.690360 -7.554135 12.324999 9.097562 -5.734215 -16.090761 -7.032633 -8.451820 0.014827 7.411117 -1.350540 8.130410 21.158734 -24.151345 14.599873 1.971887 -0.470192 10.489738 1.365063 -14.526569 -17.313070 -4.162789 14.699788 18.185286 -4.463482 2.338451 2.205437 -12.547264 0.895885 4.195233 1.216968 -0.716021 5.859975 -0.948738 -10.416471 -10.875519 2.303197 -5.951994 -2.960722 -3.489755 8.233042 4.370995 -19.525277 18.636874 -2.168645 -5.080970 3.821461 -3.786184 17.045596 -14.427743 -17.932849 10.378877 -3.087202 -7.604803 -6.933928 3.118425 9.576919 7.359087 4.941258 -7.560756 -19.394677 8.995049 -3.229799 10.361362 6.277656 1.934298 10.615960 0.917543 -6.211095 -14.027072 -14.945173 2.180985 0.968708 -13.525304 -3.172968 -3.469430 16.657510 11.477690 -1.808997 -13.604709 -4.532940 15.756912 -11.556406 -4.310611 12.826596 0.238663 -17.841631 1.011740 15.745528 -15.489161 -1.618251 -7.830792 3.902896 -7.552989 -12.960079 4.827957 0.616374 5.337571 2.323344 1.098610 -3.388649 4.301080 6.207091 1.915140 -0.211919 21.705726 13.062196 -7.409078 -0.985569 -14.029543 6.656782 -21.591239 -20.123117 8.562484 -0.720554 -7.968708 3.469604 3.386355 14.627221 0.331704 1.348881 -1.942935 -1.099250 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::stack >, void>() = -0.092970 0.087194 0.530415 -0.502313 0.379194 0.055492 0.117100 0.077446 -0.506440 -0.294032 -0.071035 -0.403497 -0.347261 0.559268 -0.254097 -0.111427 0.802033 0.343539 -0.102120 -0.225143 0.175554 -0.160641 0.596382 0.662760 -0.528524 0.062866 0.036166 0.387034 0.058593 0.688625 -0.185619 -0.538995 0.051990 0.221609 0.271502 -0.486596 -0.020439 0.052431 -0.285576 -0.935064 0.122362 0.250186 0.068660 -0.067516 0.129034 0.379785 0.597305 0.352595 -0.111741 0.143878 0.329800 0.363600 0.022504 0.102125 0.226516 0.097117 0.504435 -0.186431 -0.273010 0.076629 -0.132742 -0.377480 -0.042166 0.483017 0.567542 0.066060 -0.018339 -0.282338 -0.001047 0.162594 0.189173 0.072887 0.135786 0.141162 0.134602 -0.105216 0.128648 -0.777301 0.072168 -1.225703 -0.346728 -0.300970 0.599013 0.306199 -0.120614 -0.146730 0.565255 -0.059820 0.169901 0.263279 0.622935 -0.199401 -0.204088 -0.273521 -0.362279 0.241503 -0.176847 -0.122227 -0.030978 0.190042 -0.366040 -0.221598 0.213202 -0.058397 -0.193335 0.253786 -0.021583 0.494902 -0.703846 0.007541 -0.431024 0.286669 0.199534 -0.638231 -0.095896 -0.354913 0.327401 0.057984 -0.242172 -0.128152 0.198945 0.245748 -0.303212 0.179125 -0.695232 0.548123 0.015257 -0.068623 -0.015745 -0.059011 0.050387 0.186426 0.213612 -0.363397 -0.022221 0.181224 -0.230984 -0.151189 -0.436493 -0.068119 0.142107 -0.334093 0.132284 0.057330 -0.359695 -0.207056 -0.267146 -0.124385 0.316325 1.165391 -0.218856 0.374574 0.101792 -0.462193 0.251671 0.151222 -0.069211 0.081783 0.379727 0.189190 -0.194949 -0.383613 0.165416 0.525578 0.374842 -0.296355 0.023873 -0.185066 -0.128809 0.105740 0.185169 0.028599 -0.206889 -0.310812 -0.197605 0.057251 0.764542 0.097677 -0.651180 0.003199 0.165678 -0.115476 -0.093992 0.009612 0.056874 0.133204 0.074839 -0.152288 0.375576 0.630289 -1.436439 0.582487 -0.019907 -0.160475 0.373549 -0.125243 -0.098357 -0.512746 -0.027552 0.406296 0.744882 0.086637 -0.047465 0.097653 -0.452561 -0.092374 0.009184 0.347085 -0.301281 0.224012 0.246825 -0.489589 -0.260906 -0.444237 -0.040467 -0.001101 -0.328370 0.174962 0.070281 -1.217721 0.556511 -0.045703 -0.038134 -0.003806 -0.019567 0.120764 -0.483541 -0.522640 0.059478 -0.020314 -0.416697 -0.271564 -0.091030 0.393189 -0.185196 0.219560 -0.258530 -0.492627 0.413229 -0.127870 0.378695 0.233082 0.059279 0.496979 0.401934 -0.044956 -0.234367 -0.146286 0.340558 -0.315422 -0.105110 0.400033 -0.235029 0.279130 0.599409 -0.009969 -0.124719 -0.099516 0.644981 -0.108338 -0.175257 0.336235 -0.203760 -0.086825 0.357951 0.441990 -0.529183 -0.330237 -0.414278 -0.110609 -0.006229 -0.260931 0.278474 -0.278321 0.138550 0.205489 0.047490 -0.437476 0.221403 0.015420 -0.179953 0.075923 0.665397 0.614900 -0.217400 0.496919 -0.344787 0.264913 -0.618215 -0.304738 -0.148275 -0.186963 -0.226801 0.127456 -0.231974 0.352072 -0.028846 0.214557 -0.090141 0.124317 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::empty() const = -0.146834 0.178332 0.459434 -0.506570 0.472445 0.335594 0.137206 -0.217885 -0.439797 -0.182001 0.024221 -0.623143 -0.367505 0.585579 -0.284731 0.109356 0.718740 0.140785 -0.199744 -0.100455 0.260275 0.010713 0.703438 0.662740 -0.548969 0.060866 0.061857 0.323684 0.029621 0.625819 -0.294166 -0.542673 0.115534 0.080105 0.109630 -0.281834 -0.022181 -0.047935 0.030331 -0.797782 0.099174 0.213134 0.039435 -0.105728 0.035579 0.136768 0.696152 0.416733 -0.057107 0.031500 0.361115 0.295416 0.038999 0.124295 0.272110 0.011702 0.614363 -0.162935 -0.234194 -0.117559 -0.128934 -0.204868 -0.101651 0.572435 0.623247 0.135231 -0.040579 -0.106657 -0.025317 0.118730 0.109854 0.156633 0.071438 0.340717 0.112298 -0.123642 0.273865 -0.635055 -0.011565 -0.782041 -0.367800 -0.185958 0.328629 0.360084 0.116935 -0.133427 0.617844 0.011414 0.038414 0.149629 0.768167 -0.395942 -0.187833 -0.215613 -0.395309 0.152390 -0.217757 0.059775 -0.111798 0.110129 -0.436104 -0.282955 0.187293 0.055062 -0.229518 0.191296 0.022193 0.407172 -0.542811 -0.087516 -0.245680 0.176136 0.064938 -0.800762 -0.225073 -0.324866 0.188456 -0.001855 -0.238932 -0.381670 0.179486 0.268687 -0.274845 -0.036359 -0.635115 0.496849 0.213427 0.042644 -0.005640 -0.087964 0.209123 0.440201 0.088231 -0.353202 0.015349 -0.051845 -0.164494 0.010303 -0.327472 -0.042848 -0.015134 -0.367562 0.097986 0.300730 -0.327565 -0.055969 -0.261429 -0.082888 0.229109 1.361702 -0.220463 0.477839 0.182077 -0.609492 0.260295 -0.013286 -0.159766 0.029130 0.250994 0.275134 -0.397745 -0.451650 0.380629 0.594205 0.367296 -0.368489 0.120277 -0.064103 -0.103780 -0.065868 0.187749 0.074057 -0.155659 -0.363645 -0.217376 0.270952 0.892481 -0.049260 -0.661807 0.213632 0.090652 -0.017017 -0.134672 -0.104867 -0.044853 0.125158 0.106526 -0.076222 0.386432 0.687856 -1.254971 0.554395 0.066066 -0.270097 0.583874 -0.119018 -0.292529 -0.253076 0.036867 0.505160 0.548137 0.043277 -0.049596 0.012625 -0.502121 -0.099324 0.035521 0.219376 -0.307701 0.262046 0.260313 -0.537588 -0.371392 -0.415268 -0.041450 -0.111379 -0.389554 0.277263 0.038843 -1.104304 0.688370 0.100996 -0.081468 -0.028167 -0.210464 0.192790 -0.495055 -0.566587 0.138680 -0.183796 -0.260585 -0.169456 -0.016546 0.273592 -0.017133 0.309366 -0.426695 -0.459137 0.358213 -0.098635 0.409314 0.245954 0.188941 0.286332 0.341818 -0.087105 -0.301974 -0.185146 0.353901 -0.110443 -0.332328 0.247975 -0.250080 0.394342 0.556337 -0.068416 -0.196681 -0.199108 0.497941 -0.172546 -0.146684 0.337155 -0.142072 -0.394347 0.107771 0.408833 -0.343925 -0.233926 -0.376652 -0.198285 -0.245812 -0.433869 0.234615 -0.124418 0.143463 0.248259 -0.052509 -0.355721 0.226859 0.031101 -0.108989 0.139028 0.620136 0.434922 -0.174949 0.334660 -0.482657 0.283833 -0.706174 -0.519005 0.171880 -0.251803 -0.327309 -0.038717 -0.152301 0.414313 -0.034312 0.169651 -0.064326 0.101828 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::top() = -0.164064 0.269480 0.429867 -0.387625 0.396590 0.176320 0.126206 -0.117434 -0.298202 -0.334711 -0.081474 -0.526148 -0.506169 0.549941 -0.275137 -0.015630 0.726013 0.185111 -0.096871 -0.147607 0.245651 -0.128857 0.678610 0.622286 -0.547145 0.011959 0.189756 0.343294 0.050167 0.563117 -0.178114 -0.544188 0.165365 0.133754 0.250826 -0.324759 0.032804 -0.079257 -0.188146 -0.789202 0.054763 0.160134 0.050907 -0.081926 0.006792 0.295861 0.724364 0.411840 -0.109819 -0.031210 0.319925 0.313869 0.027449 0.149210 0.181230 -0.061824 0.440364 -0.216188 -0.268600 -0.060837 -0.140293 -0.409398 -0.113962 0.560619 0.633323 0.117677 0.026831 -0.065268 -0.125701 0.164265 0.025328 0.140595 0.210519 0.326957 0.168347 -0.167658 0.151225 -0.725875 -0.080732 -1.120754 -0.344674 -0.361534 0.284106 0.290099 0.052631 -0.076108 0.609657 0.112422 0.162247 0.222392 0.819467 -0.363690 -0.192291 -0.305724 -0.302486 0.206087 -0.272185 0.063017 -0.019815 0.105073 -0.413065 -0.316477 0.164308 -0.001618 -0.205763 0.107152 -0.051172 0.425100 -0.621077 -0.024994 -0.463445 -0.021330 0.100866 -0.806887 -0.056035 -0.249337 0.301729 0.051338 -0.160544 -0.320004 0.175973 0.323241 -0.197949 -0.044249 -0.617026 0.517993 0.133599 -0.044528 0.039583 -0.016991 0.165612 0.368138 0.267313 -0.266119 -0.082074 -0.008754 -0.297138 -0.109111 -0.360721 -0.045998 0.183409 -0.385525 0.093177 0.270392 -0.326531 -0.197066 -0.195022 -0.257849 0.365137 1.140607 -0.219598 0.342655 0.108126 -0.608118 0.237459 -0.041695 -0.208864 0.019348 0.326742 0.332417 -0.264316 -0.428391 0.323366 0.560920 0.351904 -0.314018 0.059731 -0.146772 -0.045458 -0.110880 0.142041 0.134857 -0.205144 -0.330396 -0.194235 0.262453 0.741294 -0.091529 -0.538234 0.184805 0.125582 0.006437 -0.216423 -0.078370 0.007355 0.077361 0.057236 -0.097300 0.304733 0.670526 -1.194938 0.539683 0.061930 -0.195405 0.430299 -0.155929 -0.193254 -0.440077 0.159181 0.594743 0.508823 0.058163 -0.003089 -0.074671 -0.498091 -0.091822 0.027556 0.355731 -0.267308 0.242284 0.177833 -0.505847 -0.463444 -0.383491 -0.012085 -0.119036 -0.282167 0.217502 0.141459 -1.113608 0.750940 -0.053605 -0.081798 -0.052256 -0.146431 0.179113 -0.549909 -0.624544 0.116533 -0.217422 -0.350728 -0.229696 -0.007343 0.319661 -0.093479 0.141302 -0.299895 -0.460650 0.383138 -0.066665 0.332541 0.209918 0.311897 0.479518 0.320935 -0.148396 -0.318995 -0.124754 0.257241 -0.240738 -0.285502 0.244521 -0.173959 0.375508 0.677933 -0.107228 -0.135400 -0.061142 0.500071 -0.245281 -0.254445 0.371647 -0.040635 -0.276305 0.211290 0.416987 -0.386128 -0.389820 -0.411890 -0.124179 -0.138107 -0.505493 0.122612 -0.327046 0.064020 0.355842 -0.064028 -0.382322 0.250024 0.054547 -0.072621 0.051549 0.577432 0.558762 -0.307655 0.329354 -0.445561 0.235055 -0.755989 -0.492521 0.115435 -0.135931 -0.123956 0.008489 -0.125650 0.312866 -0.079709 0.129180 -0.094286 0.000178 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::pop() = -0.292859 0.410027 0.735354 -0.822790 0.969373 0.842667 0.236726 -0.249301 -0.624200 -0.280817 -0.209354 -0.840921 -0.711343 1.099080 -0.447140 0.313265 1.381338 0.283227 -0.262641 -0.062211 0.656677 -0.057749 1.226127 0.955196 -0.964295 0.011087 0.335091 0.534422 -0.144597 1.283999 -0.678698 -1.118953 0.247991 -0.062405 0.272136 -0.632189 0.081676 -0.109255 -0.009729 -1.431586 0.150337 0.323430 -0.184833 -0.214099 -0.066463 0.023210 1.292752 0.767004 -0.190241 -0.107076 0.535082 0.560018 -0.084422 0.279000 0.394645 0.323709 0.769517 -0.138299 -0.538321 -0.225616 -0.279214 -0.426372 -0.099256 0.935191 1.074635 0.185465 0.024771 0.073061 -0.219536 0.166127 0.063666 0.199007 0.229019 0.504969 0.321304 -0.372085 0.138449 -1.110505 -0.125327 -1.380033 -0.591969 -0.637513 0.212200 0.457085 0.391370 -0.327500 1.137113 -0.123794 0.261304 0.346176 1.455047 -0.911361 -0.346294 -0.844193 -0.620733 0.201054 -0.458486 -0.135304 -0.030762 -0.136596 -0.752669 -0.799466 0.270475 0.218808 -0.329424 -0.027375 -0.077149 0.905180 -0.934654 -0.421080 -0.759769 0.221330 -0.170827 -1.455133 -0.426940 -0.376492 0.277595 0.062298 -0.246704 -0.997565 0.370754 0.886475 -0.474212 -0.402081 -0.521042 1.017256 0.443302 -0.122450 0.116492 -0.169559 0.280855 0.942259 0.651636 -0.493699 -0.152614 0.043682 -0.449745 -0.211598 -0.655566 -0.084879 -0.068128 -0.815201 0.040038 0.839987 -0.575023 0.072445 -0.237942 -0.325351 0.682610 2.686216 -0.463429 0.622690 0.068021 -1.260643 0.661149 0.008755 -0.424887 -0.047739 0.478123 0.556656 -1.076013 -0.799542 0.650654 0.966869 0.696934 -0.713666 0.066209 -0.461733 -0.127214 -0.135739 0.121566 0.348537 -0.315999 -0.654005 -0.363973 0.397648 1.788980 -0.398365 -1.343054 0.577186 0.258427 -0.160800 -0.482412 -0.303437 -0.367267 0.045938 0.271126 -0.275834 0.655654 1.278745 -2.025996 0.991825 -0.039181 -0.675012 0.988126 -0.259066 -0.271503 -0.364935 0.077263 1.115644 1.071728 0.112756 -0.007143 -0.187682 -0.854544 -0.067610 0.087493 0.590202 -0.377562 0.392733 0.301644 -1.096896 -0.763006 -0.600685 -0.174281 -0.428357 -0.557138 0.330795 0.073902 -1.987576 1.380351 0.106828 -0.016324 0.262985 -0.195797 0.485203 -0.897812 -1.233187 0.455830 -0.100297 -0.266141 -0.162481 0.030934 0.697682 0.144950 0.425901 -0.687482 -1.257290 0.518094 0.035200 0.705819 0.365364 0.519265 0.728638 0.509413 -0.322165 -0.692398 -0.596821 0.547002 -0.100607 -0.557959 -0.023907 -0.339830 0.899931 1.064367 -0.086390 -0.269959 -0.599049 0.949658 -0.584279 -0.112326 0.763496 -0.066406 -0.755229 -0.069126 0.901859 -0.633359 -0.726130 -0.565984 -0.054181 -0.407734 -0.885739 0.136133 -0.537211 0.150239 0.586375 -0.098307 -0.641967 0.307191 0.162782 -0.121672 0.001866 1.109868 0.773355 -0.555681 0.490868 -0.768006 0.530840 -1.351428 -0.944064 0.271451 -0.409697 -0.424399 0.069734 0.006934 0.645306 -0.267003 0.412111 0.022779 -0.327788 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator->() const = -0.188109 0.345984 0.449043 -0.490824 0.496206 0.350744 0.117530 -0.240898 -0.297963 -0.315486 -0.085109 -0.520446 -0.481019 0.600494 -0.343793 0.030803 0.794154 0.124876 -0.114389 -0.166940 0.351259 -0.049495 0.774752 0.671358 -0.639752 -0.007640 0.364533 0.333851 0.080058 0.588763 -0.258123 -0.640646 0.182802 0.039588 0.204792 -0.341294 0.042025 -0.151443 -0.058852 -0.813698 0.059763 -0.019600 -0.140654 -0.092666 -0.041591 0.216696 0.836304 0.454646 -0.157302 -0.062643 0.424480 0.456767 -0.088783 0.146269 0.190634 -0.006737 0.484042 -0.129207 -0.197113 -0.123747 -0.147662 -0.276506 -0.100105 0.666024 0.681412 0.146886 0.042973 0.025178 -0.133672 0.135141 -0.013110 0.162207 0.191946 0.448345 0.179500 -0.367061 0.114471 -0.941507 -0.112292 -1.125769 -0.343857 -0.389911 0.107703 0.137594 0.150808 0.026944 0.671187 0.120403 0.180223 0.293147 0.916582 -0.462204 -0.183390 -0.353964 -0.407011 0.168674 -0.284874 0.135366 -0.117597 0.053328 -0.448924 -0.473446 0.143124 0.071402 -0.228384 -0.027685 -0.032725 0.442544 -0.639824 -0.070831 -0.444922 0.003537 0.007013 -0.928062 -0.206250 -0.315505 0.509881 -0.013044 -0.167769 -0.524950 0.167251 0.496074 -0.233184 -0.162239 -0.391375 0.486078 0.286423 -0.003108 0.007796 -0.111875 0.229293 0.546142 0.355907 -0.293221 -0.090187 -0.070940 -0.312595 -0.152954 -0.397080 0.006001 0.154391 -0.411802 0.179031 0.471472 -0.338617 -0.227443 0.041666 -0.352769 0.410302 1.544702 -0.267335 0.385049 0.103422 -0.749293 0.123187 -0.109024 -0.266273 0.011697 0.324303 0.399362 -0.468137 -0.473759 0.403785 0.607898 0.376775 -0.423140 0.032744 -0.166973 -0.115316 -0.132239 0.097600 0.122633 -0.283267 -0.356106 -0.241551 0.358804 0.905508 -0.143506 -0.607533 0.236503 0.205959 -0.010155 -0.209013 -0.115788 -0.064978 0.131241 0.227940 -0.120181 0.397119 0.745260 -1.412249 0.537570 0.030994 -0.259769 0.401675 -0.064033 -0.228966 -0.317123 0.223953 0.694946 0.508234 0.050054 0.083536 -0.089917 -0.536129 -0.093517 0.055797 0.387918 -0.310721 0.249796 0.296926 -0.661973 -0.545857 -0.285937 -0.021344 -0.167444 -0.292454 0.233966 -0.031485 -1.361989 0.886382 -0.016194 -0.049324 -0.004879 -0.252231 0.316845 -0.617030 -0.717149 0.213842 -0.182584 -0.197616 -0.130718 -0.003004 0.397040 -0.016063 0.333408 -0.424616 -0.597843 0.301878 -0.022925 0.377934 0.221832 0.399548 0.543925 -0.028288 -0.097129 -0.470157 -0.183890 0.390903 -0.089442 -0.400055 0.161336 -0.184288 0.461565 0.718174 -0.173612 -0.199706 -0.085683 0.502024 -0.394704 -0.153875 0.352518 0.215130 -0.443552 0.107080 0.416048 -0.374482 -0.427054 -0.389685 -0.116343 -0.222244 -0.604537 0.114567 -0.313086 0.101714 0.403359 -0.032946 -0.379985 0.278768 0.058338 0.024758 0.105554 0.522894 0.693912 -0.348992 0.236876 -0.519500 0.275197 -0.860836 -0.680407 0.212199 -0.245497 -0.123989 -0.026541 -0.211999 0.404714 -0.114478 0.237806 -0.013462 -0.028797 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getWeight() = -0.121892 0.091555 0.228617 -0.374126 0.400081 0.338641 0.106831 -0.258566 -0.333986 -0.075302 0.036725 -0.315049 -0.127538 0.437567 -0.219579 0.267158 0.568047 0.106681 -0.117042 -0.124160 0.315103 -0.062683 0.589592 0.517383 -0.440275 0.036929 0.217335 0.191877 0.059113 0.417694 -0.294891 -0.384137 0.176101 -0.249462 -0.025624 -0.306829 0.007100 0.003011 0.260831 -0.601475 0.073468 -0.129731 -0.125904 -0.060234 -0.061945 0.024580 0.478263 0.327181 -0.076150 0.167229 0.341094 0.241317 -0.066515 0.105958 0.183518 0.202083 0.369368 -0.011435 -0.110103 -0.104319 -0.082764 -0.109504 0.008461 0.427491 0.472338 0.049793 -0.005029 0.110405 -0.052252 0.031612 0.120583 0.112603 -0.050739 0.208848 0.118849 -0.485316 0.089867 -0.733091 -0.114541 -0.658100 -0.257308 -0.147460 0.069187 -0.029039 0.283278 0.138306 0.464996 -0.018564 0.021702 0.143177 0.536847 -0.465943 -0.146352 -0.152074 -0.279808 0.057586 -0.189154 0.056110 -0.071339 -0.014187 -0.315642 -0.406478 0.247676 0.168819 -0.177254 -0.158367 0.021145 0.315186 -0.449887 -0.284749 -0.191892 0.117830 -0.161583 -0.599080 -0.141713 -0.254389 0.428062 -0.003585 -0.151859 -0.525139 0.109664 0.391990 -0.173463 -0.250947 -0.033057 0.257503 0.271956 0.084251 0.007896 -0.141608 0.135513 0.605496 0.254141 -0.262808 -0.014501 -0.016600 -0.151240 0.024067 -0.275205 -0.068661 -0.037844 -0.356950 0.157596 0.382982 -0.246824 -0.036591 0.308521 -0.055790 0.177649 1.209913 -0.117311 0.357810 0.171786 -0.529987 0.047721 -0.141992 -0.076786 0.094313 0.217034 0.150606 -0.532988 -0.352440 0.245724 0.422664 0.279425 -0.422679 -0.151208 -0.130137 -0.054985 0.039072 0.026030 0.060776 -0.129130 -0.283155 -0.142050 0.195444 0.824860 -0.164252 -0.333222 0.192793 0.076866 -0.160645 -0.306375 -0.153091 -0.241050 0.117803 0.171843 -0.049463 0.263056 0.518133 -1.002388 0.362328 -0.160654 -0.217147 0.318307 0.092810 -0.231414 -0.174930 0.037780 0.342331 0.413613 0.007229 0.153921 0.095423 -0.379927 -0.061123 0.015969 0.150972 -0.223407 0.195674 0.276875 -0.518742 -0.280745 -0.024256 0.005831 -0.193094 -0.134671 0.222135 -0.059921 -0.979843 0.478902 0.052811 -0.099738 0.185811 -0.126347 0.352987 -0.392071 -0.455243 0.260323 -0.028523 0.048036 -0.034038 0.007656 0.283305 0.035673 0.263015 -0.320697 -0.438644 0.112576 -0.040552 0.271326 0.185775 0.120694 0.294170 -0.261775 -0.074029 -0.371286 -0.097870 0.193375 -0.032113 -0.263983 -0.030095 -0.162423 0.397099 0.445565 0.023275 -0.165611 -0.072167 0.405032 -0.392301 0.021315 0.260396 0.350462 -0.371704 0.012818 0.306383 -0.316550 -0.168482 -0.148710 -0.086080 -0.150594 -0.321131 0.221701 -0.097415 0.172749 0.143679 0.055870 -0.158422 0.216399 0.034487 0.078259 0.062633 0.404995 0.495896 -0.177506 0.031945 -0.348795 0.171072 -0.543415 -0.483120 0.151822 -0.074374 -0.288039 0.008493 -0.105513 0.400930 -0.016474 0.155711 0.030264 -0.054622 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::~stack() = -0.168099 0.123011 0.468565 -0.457998 0.501713 0.166102 0.139788 0.011299 -0.432637 -0.312156 -0.126859 -0.410257 -0.497140 0.613328 -0.269853 0.054436 0.793507 0.290278 -0.097309 -0.198763 0.341101 -0.178161 0.714328 0.583166 -0.620751 0.016275 0.095813 0.492328 0.086374 0.706834 -0.184652 -0.508027 0.162825 0.112307 0.271428 -0.506783 0.111816 0.085849 -0.269381 -0.919767 0.078180 0.209287 0.013877 -0.021934 0.032261 0.395056 0.612931 0.466731 -0.185507 0.111435 0.393881 0.320923 0.032455 0.198664 0.077647 0.046984 0.392948 -0.269576 -0.342376 -0.032567 -0.122793 -0.569893 -0.036517 0.502605 0.704571 0.015693 0.039807 -0.028361 -0.104591 0.193314 0.172376 0.106979 0.171072 0.116176 0.253885 -0.146906 0.046528 -0.770580 -0.048855 -1.280128 -0.357608 -0.459219 0.449089 0.332208 0.013632 -0.121980 0.689309 0.043836 0.150830 0.310837 0.726156 -0.379410 -0.207712 -0.459042 -0.289795 0.260420 -0.325225 -0.131806 0.033100 0.204074 -0.373913 -0.331625 0.173539 -0.064883 -0.213390 0.047492 -0.157508 0.574209 -0.775474 -0.115835 -0.559421 0.193100 0.076303 -0.778895 -0.066911 -0.281319 0.367458 0.028792 -0.026244 -0.203415 0.170113 0.357126 -0.228879 0.013076 -0.605882 0.588492 0.130141 -0.148745 0.072224 0.016580 0.032724 0.355182 0.348670 -0.314436 -0.219332 0.183119 -0.274263 -0.112497 -0.501351 -0.026867 0.209857 -0.493041 0.106032 0.228319 -0.330204 -0.200888 -0.228518 -0.214248 0.433005 1.155124 -0.145473 0.303517 0.118026 -0.558988 0.303222 0.065712 -0.112101 0.177051 0.343822 0.187582 -0.266589 -0.479493 0.219502 0.523910 0.400748 -0.380974 -0.019744 -0.256102 0.000000 -0.023883 0.075257 0.241308 -0.239815 -0.304634 -0.169055 0.096979 0.809818 -0.065542 -0.603058 0.231048 0.184216 -0.227548 -0.291477 -0.135756 -0.002445 -0.023811 0.104981 -0.111763 0.294004 0.726980 -1.273184 0.587896 0.064352 -0.158671 0.380558 -0.208801 -0.079600 -0.513850 0.024894 0.519643 0.682474 0.026924 0.022028 0.021525 -0.532961 -0.010976 0.059369 0.372954 -0.207377 0.214837 0.173458 -0.451702 -0.399855 -0.382331 -0.072144 -0.045998 -0.243700 0.206245 0.143691 -1.255055 0.647901 -0.207555 -0.105258 0.113622 -0.006362 0.293526 -0.542464 -0.630349 0.204384 -0.056934 -0.435112 -0.362334 0.063439 0.450956 -0.135526 0.110043 -0.257148 -0.595430 0.393983 -0.115154 0.258800 0.221651 0.215095 0.546030 0.343019 -0.212598 -0.369570 -0.172287 0.241957 -0.307410 -0.143029 0.281635 -0.134153 0.402641 0.719212 0.023498 -0.107265 -0.088231 0.695148 -0.284381 -0.297780 0.471725 -0.039278 -0.184003 0.374973 0.533131 -0.535157 -0.469129 -0.419888 -0.007623 0.001124 -0.422882 0.237153 -0.382493 0.109729 0.336753 0.045387 -0.446688 0.311561 0.084952 -0.142069 -0.106840 0.820841 0.682687 -0.325184 0.406689 -0.384993 0.258156 -0.763064 -0.372581 -0.042175 -0.141301 -0.131524 0.197928 -0.086148 0.389001 -0.070497 0.168490 -0.099183 -0.126116 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = -2.409144 -1.231527 4.421827 -7.514834 8.844770 3.376541 2.953877 -1.240858 -7.416990 -0.995347 0.501457 -7.222865 -3.745696 10.880036 -3.511300 6.134913 12.006978 2.162747 -2.265904 -0.668815 7.792972 -1.963615 10.974346 5.778746 -8.510185 -0.661111 -0.183222 4.639721 0.415193 7.659304 -1.864779 -6.106785 3.024749 -5.230306 -0.497145 -6.617803 2.000222 1.124277 2.209096 -13.582123 1.986833 3.450610 -2.606512 -2.232870 -0.084013 5.823002 7.345316 7.729661 -4.070429 3.593440 4.132592 1.125493 -0.752524 2.634165 -0.673962 1.562742 3.821435 -0.290563 -7.724718 -2.229389 -1.836095 -5.315272 2.431862 7.186416 9.873434 -0.713434 0.400813 5.790672 0.569912 1.974492 3.684354 1.187913 0.134620 1.421960 5.202148 -5.072331 -2.026161 -10.487615 -3.153757 -17.108830 -5.731461 -2.596913 6.122041 1.084683 1.764388 -1.343948 8.780769 -0.160765 0.498616 9.313786 10.130368 -6.700133 -4.003945 -9.021975 -5.420833 2.363981 -4.400354 -3.335780 4.479157 0.517767 -7.279717 -4.985146 1.151677 2.324250 -2.214919 -3.210537 0.061201 8.004342 -9.763812 -7.345262 -3.705540 5.078774 -2.838715 -12.961111 -2.029687 -0.952210 7.278257 1.634587 1.287156 -5.784547 2.371157 6.311286 -3.301987 -2.038560 -2.895472 9.121668 2.934918 2.439298 2.456268 0.862071 0.851447 8.064092 7.055583 -4.049695 -2.008900 1.431506 -2.751778 1.139010 -4.745895 -3.053177 0.845221 -8.790940 1.869399 6.411884 -5.000196 -2.000429 -0.718584 0.825686 4.912340 19.884371 -1.242329 8.077866 2.351817 -10.598716 2.948456 -1.436696 -1.616256 0.801508 3.828091 2.070640 -8.202955 -6.861868 4.603355 6.872885 7.069615 -8.617177 -0.782316 -3.644151 -0.596055 1.485817 -0.712476 5.723611 -1.329846 -7.801828 -1.500380 2.065800 17.046343 -3.004060 -8.675019 5.717353 3.340707 -3.950913 -7.928296 -2.994732 -1.681191 -1.250512 2.494059 -2.017646 3.649261 10.784198 -16.580290 8.458736 -0.367582 -1.878886 5.045056 -0.782648 -5.613152 -9.804926 -4.004578 7.703879 10.006345 -0.563173 -0.341264 1.227241 -5.665752 1.947128 1.119699 1.825170 0.604791 3.333393 -0.390174 -7.125579 -4.808213 -0.419810 -1.532641 -0.023757 -1.512117 3.256533 1.245696 -15.336581 8.952314 -2.755875 -2.474421 3.473151 1.240811 7.948424 -6.987644 -9.883774 4.516612 -0.961725 -5.294899 -5.835326 0.764506 4.814405 2.931302 1.614947 -3.275068 -11.416180 3.819706 -2.786598 4.126182 3.704924 0.520850 9.395646 1.025887 -4.271817 -6.816985 -7.134882 1.924927 -1.156504 -3.416577 0.682905 -2.233793 8.480448 6.074746 -0.894528 -3.828482 -4.509407 8.876943 -6.476926 -1.970473 7.828900 -0.389732 -7.109635 2.381805 9.488892 -7.645276 -1.898052 -3.443937 1.713921 -3.892308 -3.384096 2.275971 -1.548231 0.452362 0.938562 1.124293 -3.737536 1.411502 1.736019 -0.002212 -2.037765 11.876931 12.126812 -6.832204 1.982265 -4.725220 4.484159 -10.842274 -8.544834 2.310282 -1.014483 -2.703687 3.571685 2.108970 6.514072 0.119456 -0.945455 -0.378740 -1.636374 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.168014 0.122294 0.464842 -0.474128 0.413346 0.220527 0.130614 -0.121873 -0.424606 -0.199990 -0.078067 -0.373443 -0.312605 0.576823 -0.285217 0.091669 0.811688 0.314062 -0.124209 -0.195182 0.324971 -0.197773 0.699147 0.693574 -0.569851 0.015068 0.200368 0.405437 0.103360 0.657654 -0.309466 -0.451177 0.152161 -0.030317 0.212406 -0.526414 0.042761 0.055448 -0.068515 -0.909419 0.103093 0.036994 0.033294 -0.071914 0.022537 0.262497 0.617540 0.420173 -0.112238 0.091473 0.365742 0.333099 0.002253 0.148249 0.214121 0.192745 0.525252 -0.095954 -0.230022 -0.033212 -0.132260 -0.374025 0.022341 0.544903 0.658076 0.093154 0.034476 -0.079864 -0.041414 0.120905 0.149461 0.101392 0.051372 0.214271 0.152614 -0.395765 0.183089 -0.878069 -0.055415 -1.086857 -0.329127 -0.346594 0.288500 0.131776 0.135861 0.001405 0.612120 -0.001376 0.158664 0.181133 0.701135 -0.443166 -0.198286 -0.304655 -0.345487 0.194412 -0.255670 -0.041187 0.001330 0.088838 -0.387005 -0.411113 0.282544 0.088101 -0.216437 0.064992 -0.034202 0.501139 -0.639947 -0.204970 -0.432879 0.110732 -0.035902 -0.749496 -0.029897 -0.393161 0.421082 0.024024 -0.173949 -0.425026 0.167141 0.435964 -0.223719 -0.094596 -0.464935 0.522434 0.161187 -0.083966 -0.002998 -0.122342 0.046912 0.444588 0.329071 -0.347065 -0.071825 0.121504 -0.361649 -0.129811 -0.491237 -0.082262 0.158506 -0.437648 0.065171 0.293656 -0.355775 -0.097656 0.096483 -0.132814 0.367742 1.392890 -0.183999 0.361129 0.146098 -0.600711 0.263796 0.041692 -0.090339 0.127463 0.364096 0.210776 -0.541438 -0.458245 0.196393 0.543687 0.389569 -0.400677 -0.133366 -0.266366 -0.078964 0.050616 0.085591 0.093512 -0.258832 -0.347518 -0.188817 0.134265 0.882957 -0.103671 -0.567705 0.137580 0.085744 -0.224648 -0.362409 -0.116569 -0.133339 0.103075 0.027094 -0.118695 0.342380 0.683899 -1.338353 0.567604 -0.103858 -0.232449 0.474424 -0.109844 -0.160072 -0.453282 0.076238 0.486135 0.655057 0.029705 0.020467 0.092548 -0.514107 -0.085430 -0.002335 0.359087 -0.291081 0.241838 0.283088 -0.575500 -0.371757 -0.280195 0.001991 -0.199008 -0.230330 0.227297 0.022634 -1.205816 0.643015 -0.045798 -0.081203 0.173466 -0.075994 0.214547 -0.557324 -0.604481 0.192158 0.015323 -0.159616 -0.250324 -0.000981 0.447532 -0.118817 0.185689 -0.352079 -0.575478 0.270636 -0.134573 0.327320 0.223435 0.176515 0.462990 0.202361 -0.098867 -0.408286 -0.075055 0.170402 -0.200092 -0.230599 0.119479 -0.194824 0.431259 0.699238 -0.007017 -0.093462 -0.061304 0.650786 -0.320966 -0.166247 0.374258 0.072196 -0.250809 0.177318 0.441635 -0.521519 -0.395395 -0.308736 -0.137105 -0.027811 -0.399073 0.279672 -0.309358 0.168864 0.244752 0.040471 -0.340653 0.278858 0.074419 -0.041191 0.063624 0.655498 0.641215 -0.239094 0.284596 -0.393472 0.232693 -0.728419 -0.408524 0.000274 -0.118446 -0.246676 0.124951 -0.097953 0.436954 -0.048669 0.212485 -0.012524 -0.080411 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.297997 0.138748 0.624493 -0.690053 0.604006 0.333144 0.214359 -0.245421 -0.586688 -0.272101 -0.082638 -0.448400 -0.420892 0.879692 -0.415833 0.252747 1.258867 0.452302 -0.194770 -0.331301 0.681515 -0.457553 1.091080 1.047034 -0.894655 -0.043133 0.507957 0.603032 0.286878 0.823656 -0.512545 -0.508063 0.318580 -0.371584 0.312285 -0.846955 0.129506 0.058463 0.045175 -1.323044 0.138580 -0.219346 -0.083437 -0.113221 -0.091767 0.507358 0.899610 0.672917 -0.271273 0.123524 0.618612 0.355033 -0.090458 0.238544 0.274226 0.361302 0.686753 0.194951 -0.320673 -0.090662 -0.199933 -0.618865 0.156220 0.838260 1.029592 0.110486 0.109961 0.124723 -0.033179 0.150287 0.223470 0.136022 0.096569 0.264327 0.355538 -1.020410 0.157544 -1.664554 -0.223639 -1.863224 -0.471969 -0.558722 0.271127 -0.286275 0.354833 0.138717 0.904957 0.045883 0.230018 0.339918 1.089545 -0.816616 -0.327133 -0.556345 -0.499170 0.264222 -0.461970 -0.010721 0.250479 -0.016408 -0.603683 -0.748729 0.485942 0.257516 -0.311966 -0.178601 -0.056532 0.803867 -0.888373 -0.469694 -0.708033 0.028036 -0.196240 -1.201320 0.089764 -0.601358 0.916669 0.044445 -0.219916 -0.817906 0.207264 0.843873 -0.289147 -0.365289 -0.281549 0.806176 0.341353 -0.049850 0.026627 -0.198292 0.063018 0.815313 0.798472 -0.490674 -0.155261 0.151774 -0.728551 -0.170873 -0.797174 -0.189825 0.476962 -0.709853 0.058121 0.567544 -0.534594 -0.141334 0.801216 -0.181583 0.603956 2.329629 -0.213031 0.539409 0.224949 -0.956330 0.407535 -0.014761 -0.114226 0.258407 0.597688 0.279556 -1.182435 -0.725380 0.299630 0.808113 0.596701 -0.865385 -0.442497 -0.492527 -0.082702 0.063408 -0.024176 0.198752 -0.383909 -0.526710 -0.262939 0.286929 1.404576 -0.397963 -0.845393 0.253944 0.095065 -0.429713 -0.922903 -0.257877 -0.339920 0.165394 0.010431 -0.158365 0.518291 1.059284 -2.046811 0.810503 -0.315438 -0.359947 0.717904 -0.044263 -0.289282 -0.869724 0.187023 0.760576 0.932971 0.081489 0.023296 0.187350 -0.791318 -0.103382 -0.013391 0.550585 -0.367797 0.355198 0.376699 -0.857101 -0.641386 -0.237061 0.013923 -0.386772 -0.144602 0.361166 -0.111480 -1.889593 1.008646 -0.136526 -0.165065 0.375104 -0.116758 0.428358 -0.899064 -1.004959 0.402011 0.094272 -0.096663 -0.465561 0.053335 0.733330 -0.122685 0.193622 -0.537873 -1.073195 0.339295 -0.277713 0.504077 0.309599 0.315339 0.896211 0.048372 -0.187323 -0.851981 -0.036257 0.114286 -0.225887 -0.471952 -0.186177 -0.213330 0.755354 1.067208 -0.035701 -0.053834 -0.039484 0.988518 -0.828727 -0.281549 0.596441 0.546677 -0.460018 0.230112 0.679059 -0.862413 -0.626689 -0.381377 -0.286062 -0.027406 -0.679409 0.393010 -0.494316 0.290653 0.339940 0.129918 -0.339699 0.437097 0.148397 0.116027 0.039568 0.934712 1.330760 -0.540413 0.127544 -0.638508 0.378956 -1.165169 -0.763969 0.118669 -0.033839 -0.326162 0.223484 0.032554 0.702732 -0.068574 0.171701 0.009229 -0.235277 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.138677 -0.038478 0.323939 -0.343260 0.218964 -0.080963 0.102323 -0.049868 -0.370055 -0.190802 -0.042475 -0.175361 -0.159116 0.416458 -0.196404 0.103243 0.622388 0.343272 -0.066628 -0.260513 0.286171 -0.385127 0.510036 0.562370 -0.441074 0.004654 0.156285 0.402301 0.225826 0.421694 -0.156350 -0.136692 0.130487 -0.127865 0.221368 -0.549605 0.081231 0.192561 -0.076662 -0.747899 0.087673 -0.070875 0.184353 -0.014075 0.003803 0.389515 0.320446 0.329846 -0.135590 0.195728 0.333434 0.164516 0.043302 0.130548 0.099969 0.180276 0.375742 -0.064359 -0.166400 0.042831 -0.062664 -0.471045 0.144470 0.377621 0.542168 0.004211 0.060796 -0.018019 0.022098 0.116504 0.223453 0.050700 -0.048115 -0.004948 0.151538 -0.531086 0.157095 -0.885457 -0.061968 -1.152163 -0.240066 -0.274564 0.331064 -0.033201 0.082182 0.155317 0.442924 0.038679 0.113938 0.150349 0.414168 -0.314345 -0.163478 -0.194000 -0.222863 0.216350 -0.226327 -0.084667 0.142025 0.182056 -0.245329 -0.274022 0.335641 0.058568 -0.172144 0.000000 -0.054304 0.397467 -0.576342 -0.227005 -0.357585 0.062673 -0.038583 -0.501184 0.254694 -0.389522 0.479078 0.015661 -0.077694 -0.228438 0.076174 0.304714 -0.116971 -0.024321 -0.440227 0.375191 0.046461 -0.081925 -0.001218 -0.076388 -0.080120 0.292183 0.302951 -0.299585 -0.108389 0.209033 -0.376360 -0.086649 -0.470497 -0.147201 0.334411 -0.378207 0.022577 0.081493 -0.274262 -0.146601 0.347570 -0.043400 0.289699 0.880961 -0.026100 0.244832 0.183333 -0.352382 0.186586 0.061002 0.051492 0.247047 0.344187 0.024727 -0.382204 -0.369013 0.002001 0.372457 0.300637 -0.320774 -0.344225 -0.250590 -0.017796 0.168450 0.002479 0.065234 -0.239190 -0.244439 -0.102509 -0.007044 0.578129 -0.043471 -0.193379 0.030872 0.028119 -0.365978 -0.511203 -0.093612 -0.151210 0.073489 -0.155653 -0.058535 0.197531 0.492764 -1.073762 0.433339 -0.171146 -0.043395 0.276393 -0.085090 -0.101531 -0.700477 0.041548 0.248298 0.540141 -0.048636 0.065095 0.220180 -0.402773 -0.053432 -0.050755 0.266885 -0.214297 0.172659 0.193150 -0.342189 -0.232171 -0.083773 0.037187 -0.125285 -0.016673 0.187526 0.079596 -0.877701 0.355443 -0.194371 -0.126576 0.226696 0.046715 0.159859 -0.444646 -0.384947 0.137204 0.099778 -0.119357 -0.362199 0.031788 0.394758 -0.258365 -0.049198 -0.162556 -0.378113 0.164546 -0.256344 0.147231 0.168257 0.031049 0.403517 0.130255 -0.071096 -0.349254 0.165616 -0.135275 -0.297943 -0.083624 0.081792 -0.096721 0.303239 0.584770 0.077989 0.019134 0.200145 0.593083 -0.287627 -0.251770 0.291316 0.131362 -0.065066 0.310677 0.325993 -0.551133 -0.297330 -0.225024 -0.117678 0.172148 -0.222826 0.341597 -0.250015 0.169526 0.113502 0.106772 -0.197259 0.299547 0.084198 -0.000284 -0.013194 0.584293 0.646613 -0.165117 0.140564 -0.249966 0.092704 -0.522661 -0.189144 -0.124353 0.127820 -0.178781 0.214128 -0.025459 0.377290 0.031934 0.104853 -0.028743 -0.084826 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.130548 -0.105270 0.474914 -0.417610 0.210792 -0.098901 0.119113 -0.104219 -0.460242 -0.021751 -0.048352 -0.181451 0.008174 0.463445 -0.149126 0.250997 0.708658 0.417211 -0.165477 -0.251721 0.373404 -0.654995 0.482260 0.603577 -0.416937 0.034917 0.163434 0.455719 0.265819 0.596342 -0.493752 0.098417 0.035654 -0.332729 0.298815 -0.663815 0.048330 0.240694 0.057532 -0.841783 0.129967 -0.067552 0.398327 -0.069891 -0.015048 0.401705 0.317196 0.328006 -0.084613 0.131714 0.295646 -0.084505 0.126941 0.123836 0.294016 0.466871 0.770593 0.267225 -0.216967 0.073134 -0.087803 -0.483944 0.340075 0.371511 0.554853 0.016512 0.042333 -0.008398 0.157398 0.031192 0.271558 0.028836 -0.219974 -0.060210 0.125176 -0.822358 0.456420 -0.926650 -0.046377 -1.061514 -0.255975 -0.233919 0.230341 -0.255687 0.243943 0.129873 0.450040 -0.103147 0.107403 -0.139986 0.406154 -0.470419 -0.186311 -0.214496 -0.270894 0.130657 -0.190072 -0.244538 0.397392 0.034818 -0.258184 -0.269115 0.600552 0.230567 -0.173001 0.168895 -0.008469 0.465535 -0.451228 -0.465670 -0.326031 -0.033661 -0.205846 -0.481514 0.535603 -0.489075 0.332813 0.014071 -0.146932 -0.470633 0.115527 0.455270 -0.177867 -0.117935 -0.521122 0.577752 0.028379 -0.097345 -0.017022 -0.187010 -0.128600 0.255852 0.431474 -0.374192 -0.048357 0.267628 -0.604799 -0.101517 -0.517849 -0.306562 0.372935 -0.420255 -0.276985 0.073631 -0.306852 0.232606 0.683355 0.175942 0.277175 1.146643 -0.066523 0.277989 0.109651 -0.385720 0.525141 0.236010 0.078434 0.225901 0.367736 -0.009669 -0.897165 -0.426939 -0.016465 0.392901 0.338316 -0.462693 -0.563508 -0.399156 -0.069054 0.355711 -0.045877 0.030126 -0.240130 -0.309620 -0.125383 -0.169987 0.840664 -0.185724 -0.396754 0.051915 -0.293767 -0.552029 -0.927740 -0.144099 -0.358643 0.094742 -0.578114 -0.102459 0.265487 0.524434 -1.191825 0.551754 -0.420206 -0.293937 0.721111 -0.230152 -0.073039 -0.944604 -0.068811 0.227920 0.666372 -0.041129 -0.168108 0.286348 -0.417980 -0.054220 -0.182645 0.269909 -0.236887 0.189710 0.173639 -0.432522 -0.171205 -0.154018 0.077733 -0.274854 0.008368 0.187706 -0.013420 -0.784531 0.358567 -0.067633 -0.065681 0.429132 0.156017 -0.080689 -0.428882 -0.382378 0.113731 0.281621 0.113559 -0.474211 0.010821 0.424494 -0.317854 -0.231955 -0.267721 -0.562319 0.069026 -0.463606 0.223619 0.181382 -0.043104 0.315550 0.602715 -0.046640 -0.418813 0.355994 -0.488296 -0.283780 -0.082699 -0.212209 -0.145647 0.405843 0.560321 0.144706 0.288227 0.104593 0.674084 -0.309839 -0.268665 0.326073 -0.067422 -0.138097 0.119237 0.370171 -0.597708 -0.310558 -0.160456 -0.376911 0.170530 -0.145947 0.391736 -0.231763 0.171914 0.027009 0.065225 -0.120205 0.253902 0.083665 -0.022954 -0.006672 0.701683 0.685879 -0.138837 0.073640 -0.237192 0.136819 -0.507726 -0.085401 -0.144205 0.304696 -0.382109 0.242909 0.298301 0.431031 0.039773 0.022008 0.072715 -0.212494 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::~_List_base() = -0.394564 0.293662 0.788808 -0.897689 0.989896 0.700204 0.309620 -0.139338 -0.774064 -0.500634 -0.197127 -0.875599 -0.899108 1.294235 -0.517137 0.284531 1.744904 0.499320 -0.242340 -0.244828 0.836370 -0.386640 1.548288 1.281021 -1.188268 -0.046985 0.482152 0.795431 0.067936 1.285005 -0.498619 -1.171529 0.417321 -0.147345 0.412566 -0.966251 0.196897 0.030123 -0.188441 -1.839345 0.172320 0.168721 -0.197479 -0.187667 -0.088967 0.518839 1.445307 0.958686 -0.370387 0.054348 0.719999 0.560143 -0.089287 0.369990 0.270076 0.232645 0.678578 -0.120852 -0.659014 -0.183737 -0.296722 -0.873505 -0.032282 1.079811 1.440937 0.128736 0.102463 0.146575 -0.217407 0.305095 0.216143 0.194950 0.366681 0.349846 0.530696 -0.716087 -0.032881 -1.905382 -0.232593 -2.484585 -0.705614 -0.818229 0.573652 0.271887 0.300177 -0.266614 1.317908 0.018891 0.308396 0.706039 1.709376 -0.975754 -0.463356 -1.006152 -0.635476 0.416353 -0.655764 -0.129787 0.284393 0.015639 -0.876921 -0.967575 0.404887 0.149804 -0.394544 -0.245728 -0.152096 1.142969 -1.275528 -0.450764 -1.045777 0.231731 -0.067877 -1.786709 -0.170936 -0.545223 0.766726 0.129097 -0.211583 -0.943663 0.361467 1.013067 -0.455577 -0.363537 -0.593106 1.254700 0.396031 -0.135476 0.169362 -0.064404 0.182446 1.093651 0.988766 -0.591744 -0.281610 0.177188 -0.737660 -0.203036 -0.972974 -0.171029 0.386742 -1.010663 0.129495 0.843239 -0.712169 -0.252439 0.139487 -0.376039 0.863522 3.140835 -0.357422 0.715351 0.227198 -1.412501 0.751395 -0.018803 -0.329740 0.181930 0.720243 0.488476 -1.241606 -0.969785 0.583047 1.121449 0.850135 -1.081377 -0.159475 -0.571514 -0.034985 -0.136380 0.075992 0.462352 -0.388500 -0.735900 -0.356299 0.517515 2.018433 -0.450233 -1.343386 0.546646 0.401697 -0.350035 -0.947834 -0.342089 -0.319222 0.036917 0.284308 -0.258015 0.674553 1.512907 -2.578988 1.152247 -0.056802 -0.469288 0.956411 -0.214476 -0.356262 -1.076661 0.146066 1.277980 1.365828 0.125603 0.044369 -0.030431 -1.057462 -0.072040 0.113684 0.725409 -0.383333 0.463749 0.266112 -1.159000 -0.910605 -0.604121 -0.176539 -0.385746 -0.439235 0.438270 0.189853 -2.570550 1.569609 -0.198596 -0.179353 0.287581 -0.136135 0.719448 -1.154737 -1.531575 0.531107 -0.110885 -0.560042 -0.554491 0.102408 0.904639 -0.011280 0.352723 -0.603554 -1.575143 0.724881 -0.153180 0.726415 0.423200 0.520528 1.238239 0.419794 -0.439571 -1.024145 -0.538194 0.521804 -0.361268 -0.596091 0.023225 -0.290929 1.000119 1.380072 -0.063431 -0.293543 -0.390013 1.339546 -0.939905 -0.393308 0.956914 0.337007 -0.713725 0.352055 1.090578 -1.094052 -0.882145 -0.715493 -0.077790 -0.207722 -1.091782 0.302513 -0.716003 0.241416 0.622036 0.030834 -0.677706 0.492617 0.241952 -0.072383 -0.096430 1.474519 1.509476 -0.791403 0.483278 -0.885280 0.567217 -1.703286 -1.132662 0.195465 -0.258894 -0.349066 0.259348 0.069424 0.788183 -0.215632 0.298600 -0.119954 -0.321288 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_clear() = -1.162899 1.259698 1.688999 -2.251529 3.340724 3.097066 0.929192 -0.648315 -1.719172 -1.308609 -0.685556 -2.785202 -2.794579 3.861390 -1.220138 1.664510 5.025982 0.712428 -0.670426 -0.139906 2.899773 -1.241704 4.647870 3.100282 -3.286227 -0.232474 1.983458 1.759498 -0.392902 3.626712 -1.875500 -3.902127 1.442039 -1.407650 0.874656 -2.212333 0.691988 -0.407591 0.191107 -4.855528 0.337983 0.269628 -1.325068 -0.716924 -0.879306 0.726026 4.778776 2.844370 -1.182612 -0.280921 1.846741 1.001870 -0.533665 1.166640 0.726192 0.894530 1.406362 0.322220 -2.244385 -0.901193 -0.934189 -2.301616 -0.165944 2.946776 4.079067 0.224160 0.296230 1.676381 -1.080567 0.632215 0.143074 0.594748 1.331939 1.108229 1.898634 -2.628446 -0.770671 -5.491011 -1.211136 -6.813650 -2.017872 -2.488772 0.484370 0.227438 1.705251 -1.043734 3.841303 -0.129405 0.840597 2.151367 5.651166 -3.591887 -1.428887 -3.691622 -1.561575 0.733111 -2.080129 -0.493643 1.524318 -1.034299 -2.672954 -3.420207 1.186932 0.905102 -0.980284 -1.918040 -0.518860 3.324765 -3.204326 -2.026093 -3.240658 0.112546 -0.912016 -5.648064 -0.559188 -0.612151 1.776274 0.604394 -0.334768 -4.029707 1.151899 3.774714 -1.284904 -2.246362 0.045161 3.902384 1.611398 -0.097582 0.965644 -0.019235 1.050765 4.203757 3.932797 -1.260243 -1.002126 0.076502 -2.181166 -0.434199 -2.303331 -0.709256 0.708808 -3.252618 0.088696 3.567299 -1.916469 -0.021252 1.170183 -1.232305 2.606979 10.044188 -1.163049 1.915580 0.183576 -4.826092 2.732566 -0.597238 -1.551381 -0.043204 1.794829 1.792675 -4.825833 -2.782168 2.368824 3.158067 2.434943 -3.928217 -0.528005 -1.855848 0.188967 -0.764109 -0.232393 1.952685 -0.657731 -2.222930 -0.958173 2.015556 6.960402 -2.433391 -4.154811 2.513448 1.095031 -0.750588 -3.790711 -1.408967 -1.767856 -0.260196 1.047498 -0.795908 1.802502 4.490739 -6.660678 3.167166 -0.425706 -2.017944 3.156270 -0.481426 -1.057802 -3.034881 0.392339 4.451137 3.671944 0.550361 0.267840 -0.858692 -2.888364 0.039589 0.427424 1.955566 -0.586456 1.232762 0.084925 -3.783427 -2.999399 -1.369240 -0.789949 -1.559392 -1.049842 1.130020 0.683312 -7.372973 5.234529 -0.325669 -0.406412 1.107192 -0.332196 2.711558 -3.204022 -5.067913 2.055347 -0.620829 -1.192200 -1.077354 0.453805 2.353897 0.812339 0.798011 -1.657374 -5.654230 1.910923 0.005790 2.244222 1.114573 2.050645 3.891916 0.850565 -1.830872 -3.453112 -2.291466 1.434134 -0.610340 -2.140475 -1.316936 -0.619025 3.475429 3.651018 -0.212971 -0.803064 -1.990581 3.395638 -3.710291 -0.771970 3.118728 1.837727 -3.102218 0.028747 3.438074 -2.736397 -2.583220 -1.852760 0.085624 -1.365143 -3.833454 -0.131208 -2.203255 0.295495 2.128770 -0.241116 -1.607226 1.058793 0.789973 0.092744 -0.858352 4.124571 4.463408 -3.007349 0.607701 -2.747118 1.811129 -5.293386 -4.210743 1.425142 -0.363820 -0.950385 0.415150 1.330939 1.934482 -1.020133 0.484308 -0.215170 -1.770985 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node::_M_valptr() = -0.147309 0.245556 0.413970 -0.397110 0.366798 0.174529 0.101657 -0.151909 -0.283452 -0.274634 -0.075601 -0.458478 -0.400999 0.495138 -0.266476 0.006182 0.658530 0.161539 -0.099678 -0.153869 0.244035 -0.126444 0.614793 0.572411 -0.512181 0.013425 0.210867 0.328959 0.079356 0.531671 -0.204258 -0.465938 0.118561 0.095350 0.226641 -0.318834 0.030356 -0.062524 -0.124030 -0.722277 0.058278 0.087575 0.050825 -0.072268 0.002788 0.242817 0.653268 0.371815 -0.104261 -0.032060 0.325191 0.317252 0.009764 0.126226 0.177218 -0.011690 0.478591 -0.169912 -0.204055 -0.058881 -0.115896 -0.322553 -0.061605 0.528025 0.577813 0.112036 0.027468 -0.052110 -0.083962 0.130306 0.030254 0.128699 0.126183 0.318276 0.129209 -0.240499 0.192538 -0.714649 -0.055759 -0.980207 -0.299947 -0.317333 0.199996 0.221705 0.074706 -0.013373 0.555742 0.091887 0.148398 0.175467 0.722586 -0.341244 -0.159385 -0.262656 -0.317669 0.173967 -0.230645 0.053572 -0.051838 0.111716 -0.358695 -0.306854 0.175137 0.026962 -0.194615 0.105103 -0.036546 0.372558 -0.558363 -0.049770 -0.377226 -0.003486 0.051189 -0.727941 -0.046382 -0.284831 0.315379 0.004362 -0.141396 -0.343914 0.144787 0.334442 -0.190612 -0.044965 -0.561548 0.450981 0.152753 -0.041657 0.008143 -0.067233 0.146514 0.349447 0.231192 -0.266884 -0.073314 -0.002345 -0.284837 -0.121634 -0.346964 -0.036992 0.160867 -0.346965 0.078827 0.271551 -0.289851 -0.155221 -0.088342 -0.236207 0.330175 1.127557 -0.203435 0.313020 0.097234 -0.561995 0.191061 -0.019900 -0.185331 0.031232 0.283989 0.295414 -0.310783 -0.398430 0.284093 0.502636 0.317062 -0.286987 0.010139 -0.141991 -0.080540 -0.057426 0.112295 0.093725 -0.233657 -0.298552 -0.189867 0.216877 0.705323 -0.060898 -0.471952 0.161809 0.103888 -0.050607 -0.211414 -0.075193 -0.031876 0.092442 0.035520 -0.094247 0.303914 0.606636 -1.156981 0.488616 0.032358 -0.196606 0.401575 -0.145534 -0.168777 -0.399024 0.145650 0.530183 0.464975 0.018691 0.014581 -0.042187 -0.450809 -0.081986 0.011625 0.319903 -0.268594 0.213157 0.212309 -0.497970 -0.411102 -0.307616 -0.004880 -0.118335 -0.254985 0.195981 0.067274 -1.035909 0.681631 -0.037637 -0.053034 -0.006324 -0.149853 0.158553 -0.502314 -0.544500 0.113158 -0.146761 -0.229329 -0.193664 -0.008389 0.313968 -0.104472 0.164532 -0.313499 -0.426804 0.281781 -0.090957 0.288814 0.192608 0.275816 0.397525 0.230703 -0.086893 -0.319916 -0.069019 0.205780 -0.175555 -0.262516 0.209162 -0.163241 0.348767 0.612052 -0.102251 -0.106284 -0.025512 0.457773 -0.218281 -0.208103 0.305084 -0.022086 -0.288088 0.152740 0.353354 -0.348468 -0.349686 -0.357276 -0.131157 -0.119951 -0.447308 0.142150 -0.268750 0.074040 0.313501 -0.047187 -0.341355 0.242809 0.048666 -0.049249 0.073004 0.517437 0.510490 -0.237897 0.275257 -0.404231 0.202721 -0.684545 -0.446382 0.097655 -0.132684 -0.133618 0.011585 -0.132536 0.321721 -0.068474 0.169786 -0.039555 -0.008634 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.466000 0.022700 0.838434 -1.109126 0.898299 0.483608 0.354006 -0.346676 -1.010175 -0.355498 -0.051847 -0.639407 -0.484336 1.408912 -0.528578 0.614707 1.983590 0.697728 -0.341677 -0.475195 1.224737 -0.908910 1.640088 1.633777 -1.367773 -0.063638 0.737576 0.885671 0.476863 1.141017 -0.789990 -0.622657 0.480288 -0.928257 0.422222 -1.399716 0.208310 0.231506 0.303428 -2.105236 0.244152 -0.372299 -0.124769 -0.215891 -0.228669 0.759499 1.282892 1.070502 -0.537931 0.288676 0.986798 0.308750 -0.162730 0.352587 0.385102 0.689821 0.845916 0.574037 -0.492369 -0.126526 -0.264342 -0.973816 0.452543 1.241085 1.578543 0.080578 0.139644 0.393392 0.073324 0.171500 0.436620 0.196151 0.077367 0.160849 0.656432 -1.928273 0.125836 -2.822594 -0.340340 -2.987599 -0.759848 -0.734976 0.497759 -0.618238 0.665882 0.154277 1.381656 -0.064289 0.273302 0.660197 1.593038 -1.349279 -0.529537 -0.967536 -0.808599 0.400422 -0.709817 -0.117606 0.597052 -0.139783 -0.955216 -1.180479 0.837672 0.511659 -0.491614 -0.530467 -0.030086 1.286749 -1.282838 -0.967051 -1.002516 0.159744 -0.423479 -1.842259 0.341353 -0.967116 1.393467 0.093095 -0.359083 -1.361202 0.270529 1.308987 -0.462055 -0.699432 -0.289132 1.312228 0.554201 0.016322 0.093912 -0.315153 0.068843 1.348774 1.349214 -0.804412 -0.218762 0.306994 -1.151042 -0.163194 -1.262577 -0.451099 0.888055 -1.180538 -0.086877 0.845678 -0.837183 -0.088783 1.691093 -0.103298 0.853577 3.833574 -0.215510 0.918944 0.429860 -1.445524 0.835536 -0.007863 -0.110429 0.506419 0.968954 0.305801 -2.202620 -1.139620 0.416985 1.260652 0.963016 -1.479347 -0.967974 -0.777453 -0.126722 0.204612 -0.113856 0.293745 -0.481692 -0.866363 -0.360299 0.458687 2.328042 -0.721404 -1.129968 0.412571 0.178229 -0.832527 -1.812110 -0.454580 -0.826958 0.225792 -0.077676 -0.235569 0.834311 1.646955 -3.121974 1.242655 -0.690883 -0.533996 1.084160 0.031542 -0.543174 -1.680938 0.178413 1.065876 1.524117 0.081426 0.082176 0.403414 -1.220464 -0.122448 -0.024828 0.707263 -0.528294 0.575489 0.420103 -1.242390 -0.890221 -0.155103 -0.114066 -0.662196 -0.072301 0.589881 -0.162689 -2.699360 1.450751 -0.224424 -0.292392 0.733212 -0.115350 0.776270 -1.368811 -1.549032 0.729556 0.286838 -0.038790 -0.787756 0.088167 1.167668 -0.171662 0.062513 -0.780183 -1.873717 0.505919 -0.541142 0.844925 0.506629 0.304679 1.417336 0.120424 -0.328526 -1.424301 -0.112644 -0.031167 -0.300362 -0.780027 -0.644281 -0.324575 1.236312 1.553602 0.028763 -0.057475 -0.020880 1.573943 -1.411269 -0.416247 0.944730 0.902186 -0.769300 0.308034 1.097850 -1.445042 -0.813233 -0.577122 -0.366555 0.001576 -0.981940 0.683964 -0.646273 0.501075 0.373312 0.248917 -0.329111 0.666749 0.308200 0.249516 -0.009517 1.544042 2.124979 -0.860308 -0.053207 -1.008799 0.592074 -1.764696 -1.192301 0.166004 0.205052 -0.612034 0.383802 0.270910 1.148573 -0.047701 0.173186 0.035770 -0.395356 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.140082 0.139802 0.294378 -0.311640 0.260979 0.008686 0.089011 -0.120893 -0.246876 -0.275595 -0.049921 -0.303070 -0.300400 0.405073 -0.220519 0.044178 0.561702 0.184008 -0.050655 -0.210524 0.255746 -0.250230 0.530527 0.507543 -0.454557 -0.003600 0.231801 0.322710 0.169580 0.361208 -0.100389 -0.283905 0.144387 -0.030140 0.211050 -0.360010 0.069425 0.027150 -0.093011 -0.633763 0.045013 -0.049793 0.087177 -0.029155 -0.031735 0.324260 0.469758 0.331892 -0.139924 0.067975 0.331320 0.231053 0.004907 0.124072 0.083484 0.000667 0.328499 -0.136227 -0.155374 -0.019685 -0.071614 -0.394590 0.021058 0.435266 0.524890 0.044773 0.056711 0.036397 -0.063547 0.126408 0.083609 0.098028 0.067899 0.173777 0.153746 -0.407407 0.117372 -0.805808 -0.094779 -1.088421 -0.246015 -0.292619 0.202510 0.050638 0.076392 0.133929 0.462635 0.128080 0.124515 0.199207 0.555866 -0.300939 -0.145335 -0.208382 -0.234622 0.189680 -0.235324 0.043884 0.039952 0.153005 -0.278376 -0.278196 0.214636 0.027073 -0.171085 -0.027844 -0.055912 0.322949 -0.547376 -0.101213 -0.356361 -0.037396 0.014791 -0.597152 0.122180 -0.281670 0.446437 0.005157 -0.069576 -0.263008 0.081220 0.297861 -0.111519 -0.054847 -0.432216 0.336934 0.111575 -0.028916 0.018077 -0.041896 0.064578 0.329024 0.273528 -0.233374 -0.113470 0.055386 -0.303996 -0.091115 -0.353612 -0.077725 0.286777 -0.337254 0.091170 0.183432 -0.245799 -0.220959 0.180244 -0.198849 0.298831 0.863787 -0.089703 0.243297 0.137635 -0.434117 0.097586 -0.052345 -0.089616 0.130766 0.289755 0.172405 -0.249071 -0.352842 0.158180 0.401411 0.269569 -0.281714 -0.167659 -0.150748 -0.027702 0.012838 0.033834 0.090800 -0.226109 -0.238625 -0.130364 0.151132 0.543776 -0.059391 -0.205373 0.105458 0.097869 -0.161317 -0.345482 -0.079580 -0.074934 0.076246 -0.025473 -0.052057 0.207089 0.503390 -1.017863 0.394765 -0.040738 -0.063146 0.227476 -0.077302 -0.143105 -0.553865 0.143627 0.389915 0.395673 -0.028557 0.096159 0.053409 -0.394809 -0.059178 -0.008488 0.271278 -0.215342 0.173983 0.171214 -0.374417 -0.345473 -0.121152 0.021031 -0.092782 -0.083140 0.180260 0.089264 -0.898688 0.510991 -0.155260 -0.102357 0.061244 -0.075633 0.197612 -0.456282 -0.437712 0.123729 -0.084049 -0.179097 -0.252655 0.022687 0.308903 -0.174100 0.032473 -0.190928 -0.336263 0.201182 -0.148951 0.171118 0.159950 0.195032 0.414061 0.039483 -0.084238 -0.330490 0.072078 0.025950 -0.231702 -0.186783 0.143399 -0.090171 0.297156 0.568891 -0.041353 -0.058459 0.159753 0.439867 -0.281021 -0.244753 0.266960 0.153336 -0.185022 0.245250 0.291867 -0.395939 -0.300815 -0.286229 -0.091181 0.015994 -0.358957 0.188353 -0.249999 0.093227 0.235051 0.022578 -0.233414 0.275300 0.062638 0.019401 0.010125 0.465601 0.585947 -0.226293 0.136576 -0.324723 0.112263 -0.582859 -0.353809 0.032342 0.036046 -0.080970 0.080998 -0.098288 0.307257 -0.017856 0.103999 -0.046150 -0.038387 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::~deque() = -0.465508 0.560119 1.348740 -1.358309 1.821671 0.935364 0.389199 0.187749 -1.149369 -0.961424 -0.488776 -1.463881 -1.869157 1.901485 -0.718589 0.161713 2.249656 0.498184 -0.329733 -0.313465 1.093267 -0.097527 2.081519 1.302854 -1.880133 0.029523 0.151762 1.403801 -0.001125 2.180807 -0.524418 -1.830501 0.413818 0.544126 0.775400 -1.101225 0.403371 -0.009976 -0.957544 -2.508292 0.161223 1.062533 -0.362164 -0.060405 0.032246 0.964558 2.033094 1.429761 -0.681388 0.022105 1.124807 0.877114 0.033761 0.613621 0.040935 -0.134009 0.893659 -0.796433 -1.217823 -0.267013 -0.376351 -1.617206 -0.347525 1.402727 2.026649 -0.016611 0.041809 0.158688 -0.413661 0.586233 0.328674 0.354354 0.871275 0.409146 0.961567 0.261151 -0.216759 -1.722934 -0.106879 -3.391126 -1.073685 -1.499230 1.259805 1.328056 -0.059630 -0.936972 2.154365 0.058704 0.409895 1.129912 2.381363 -1.092385 -0.608865 -1.879437 -0.818818 0.725009 -1.027924 -0.511533 0.132946 0.443190 -1.129134 -0.910189 0.068950 -0.370395 -0.594950 0.048127 -0.632577 1.803410 -2.143997 -0.179537 -1.779622 0.741353 0.340764 -2.471945 -0.782959 -0.385379 0.572705 0.092683 0.152947 -0.511618 0.543393 1.033484 -0.786078 0.006081 -1.579252 1.947358 0.572086 -0.458649 0.386727 0.295679 0.363911 1.012081 1.097389 -0.759655 -0.843705 0.423152 -0.496996 -0.311963 -1.297529 0.112299 0.408536 -1.475496 0.286583 0.914722 -0.877046 -0.466886 -1.438939 -0.820934 1.355978 3.521158 -0.518669 0.803329 0.108866 -1.741778 1.151455 0.232420 -0.627144 0.318215 0.769622 0.762979 -0.671232 -1.391772 0.994911 1.527103 1.174288 -1.217162 0.493901 -0.680162 0.064434 -0.456722 0.197337 1.056384 -0.533587 -0.809774 -0.502023 0.493713 2.485713 -0.380552 -2.401969 1.071080 0.786665 -0.368972 -0.556215 -0.479118 0.119116 -0.351508 0.719655 -0.351180 0.920094 2.252919 -3.383016 1.705173 0.660066 -0.657829 1.208426 -0.774387 -0.126188 -1.048771 -0.012850 1.808221 1.913738 0.217736 -0.115985 -0.390841 -1.527440 0.139819 0.421670 1.052336 -0.364259 0.553632 0.193565 -1.162612 -1.301382 -1.444525 -0.518830 0.071656 -0.966100 0.527111 0.407939 -3.665838 2.151226 -0.594230 -0.211770 0.125802 -0.134073 1.039657 -1.507267 -2.035816 0.701168 -0.388047 -1.668291 -0.959549 0.281872 1.208749 0.009312 0.459737 -0.808561 -2.110529 1.386758 -0.091542 0.832404 0.640582 0.875073 1.633069 1.357628 -0.856128 -1.057629 -1.132965 1.204506 -0.648055 -0.523639 0.730593 -0.308379 1.235620 1.941367 -0.064586 -0.414760 -0.904732 1.821891 -0.849244 -0.889307 1.532043 -0.408635 -0.789704 0.983139 1.739308 -1.271635 -1.445423 -1.411733 0.211432 -0.355675 -1.471328 0.281442 -1.185610 0.114150 1.279955 -0.043006 -1.470382 0.771947 0.244378 -0.611085 -0.593468 2.517935 1.843466 -1.238124 1.338469 -1.259542 1.036346 -2.356828 -1.333405 0.150480 -0.797753 -0.208279 0.472902 -0.052656 0.935145 -0.398810 0.422391 -0.396987 -0.500101 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.086960 0.007450 0.225831 -0.211146 0.169658 -0.050496 0.082272 -0.081162 -0.248976 -0.114555 -0.045527 -0.118980 -0.083242 0.302936 -0.107654 0.186736 0.478788 0.241598 -0.036889 -0.211864 0.247560 -0.427696 0.406023 0.440610 -0.347358 0.038353 0.201968 0.281744 0.184535 0.333062 -0.226223 -0.038754 0.114509 -0.259008 0.177896 -0.434551 0.043542 0.125748 0.046752 -0.602423 0.040672 -0.117332 0.179683 -0.008855 -0.035543 0.281366 0.281603 0.249885 -0.097546 0.190398 0.242715 0.010670 0.075410 0.099511 0.113234 0.244356 0.360454 0.040666 -0.135334 0.053536 -0.033947 -0.413083 0.163485 0.281529 0.419075 -0.031230 0.031184 0.085228 0.009145 0.035447 0.146072 0.073544 -0.092414 0.003105 0.142572 -0.612089 0.181247 -0.731169 -0.094819 -0.910930 -0.216033 -0.236248 0.147012 -0.147962 0.201482 0.198907 0.365501 0.004164 0.103786 0.013365 0.333344 -0.364821 -0.125023 -0.135467 -0.128546 0.126088 -0.182616 -0.086527 0.196266 0.038521 -0.190779 -0.274484 0.406871 0.122972 -0.154663 -0.057771 -0.052814 0.293587 -0.430781 -0.323324 -0.321613 -0.083763 -0.155081 -0.388926 0.335742 -0.250643 0.380731 0.050963 -0.043963 -0.341008 0.056942 0.322316 -0.063867 -0.154504 -0.248873 0.309237 0.074501 -0.055283 0.042833 -0.066631 -0.034185 0.325980 0.354768 -0.204877 -0.099020 0.177883 -0.354852 -0.057219 -0.329936 -0.177203 0.252290 -0.336160 -0.059154 0.109408 -0.209947 0.010250 0.488537 -0.009811 0.212679 0.719638 -0.007904 0.174337 0.120283 -0.313920 0.203810 0.002153 0.009236 0.196014 0.282352 0.046103 -0.482344 -0.283261 -0.006866 0.301053 0.215910 -0.318034 -0.401777 -0.233038 0.008047 0.179821 -0.020583 0.054277 -0.139876 -0.203489 -0.059742 -0.036162 0.563237 -0.148395 -0.098517 0.051129 -0.099113 -0.345447 -0.619229 -0.099454 -0.257296 0.035395 -0.250725 -0.038033 0.115926 0.367148 -0.807720 0.340143 -0.272540 -0.128101 0.305223 -0.062910 -0.070185 -0.626245 0.045650 0.194094 0.402332 -0.045447 0.061814 0.155560 -0.321655 -0.036858 -0.080833 0.193846 -0.177067 0.169346 0.122923 -0.319479 -0.182238 0.006708 0.070177 -0.188262 0.048549 0.146623 0.079425 -0.653634 0.274228 -0.131401 -0.125860 0.282353 0.071096 0.114864 -0.347362 -0.305254 0.139124 0.099797 0.021460 -0.262518 -0.001258 0.288243 -0.192140 -0.159393 -0.135591 -0.335067 0.064657 -0.223509 0.098413 0.154078 0.028874 0.316880 0.097701 -0.105747 -0.299533 0.211825 -0.267826 -0.247813 -0.056670 -0.114128 -0.092274 0.286175 0.489659 0.100939 0.111540 0.157729 0.443225 -0.328050 -0.189358 0.235945 0.192466 -0.091853 0.160675 0.247827 -0.407755 -0.220114 -0.134862 -0.137724 0.138862 -0.167037 0.258194 -0.240344 0.100893 0.106233 0.041313 -0.095016 0.245711 0.044340 0.042065 -0.065312 0.445378 0.532505 -0.172406 0.015401 -0.192958 0.057261 -0.407117 -0.143055 -0.081066 0.251643 -0.181812 0.139935 0.112146 0.280380 0.040519 0.000711 0.005849 -0.166405 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::begin() = -0.202872 0.386286 0.833724 -0.768901 0.740881 0.663745 0.189043 -0.256858 -0.591395 -0.176435 -0.161819 -0.690996 -0.517768 0.896668 -0.399165 0.147309 1.264190 0.331733 -0.258820 -0.189273 0.501414 -0.160129 1.084665 1.059747 -0.910557 0.088716 0.392530 0.531347 0.062486 1.142907 -0.746586 -0.784597 0.139268 -0.050805 0.323805 -0.661185 -0.043111 -0.154620 0.005727 -1.416468 0.125679 0.142903 -0.105700 -0.165007 0.055067 0.224360 1.196741 0.621110 -0.144701 -0.032234 0.501326 0.459086 0.015406 0.169219 0.468155 0.382453 1.055980 0.104745 -0.338463 -0.096058 -0.220767 -0.368177 -0.006361 0.894945 0.967628 0.200404 -0.037782 -0.128244 -0.013309 0.075126 0.060947 0.242278 0.126259 0.556816 0.235297 -0.560368 0.415169 -1.187655 -0.025019 -1.270032 -0.570493 -0.537621 0.234890 0.159621 0.337959 -0.187365 1.012782 -0.120191 0.279404 0.138672 1.220847 -0.796707 -0.263686 -0.529516 -0.607878 0.184427 -0.324243 -0.043659 -0.031420 -0.123919 -0.656769 -0.710872 0.454843 0.219050 -0.373789 0.221603 -0.018293 0.760374 -0.780992 -0.352142 -0.649748 0.104121 -0.146817 -1.246945 -0.260797 -0.522911 0.447637 0.043989 -0.333308 -0.923972 0.298948 0.789129 -0.426832 -0.286496 -0.594495 0.943956 0.412188 -0.118188 0.011412 -0.243427 0.250311 0.732486 0.572093 -0.494487 -0.047655 0.089640 -0.549570 -0.238206 -0.644003 -0.069346 0.051769 -0.611464 -0.037110 0.640851 -0.541499 0.137012 0.103735 -0.221219 0.526795 2.615566 -0.422937 0.596790 0.093695 -1.067311 0.592579 0.102466 -0.331137 0.046037 0.497640 0.538340 -1.244930 -0.678197 0.458356 0.927890 0.576733 -0.730285 -0.042129 -0.386019 -0.234039 -0.019455 0.217387 0.100492 -0.305176 -0.563418 -0.340214 0.301482 1.623293 -0.309597 -1.306758 0.280143 0.022696 -0.204843 -0.537440 -0.172870 -0.268376 0.149110 0.061376 -0.232281 0.652475 1.074539 -2.092426 0.902023 -0.179852 -0.683033 1.052886 -0.212143 -0.251461 -0.391656 0.145842 0.887979 0.981433 0.134289 -0.163550 -0.047398 -0.801328 -0.139136 0.017949 0.538595 -0.505640 0.448055 0.439181 -1.031418 -0.601283 -0.610279 -0.021681 -0.405799 -0.538191 0.330878 -0.162025 -1.886209 1.158023 0.176155 -0.041625 0.254066 -0.259352 0.226737 -0.835394 -1.020850 0.304624 0.022253 -0.121845 -0.228702 -0.102536 0.628955 0.032408 0.425198 -0.779203 -1.101091 0.417209 -0.136735 0.660075 0.397519 0.372359 0.654764 0.511793 -0.163682 -0.655640 -0.293573 0.435375 -0.055881 -0.483305 -0.060902 -0.421511 0.719646 1.037167 -0.125295 -0.074435 -0.472824 0.887336 -0.533418 -0.130440 0.533079 0.008439 -0.591755 -0.039051 0.667923 -0.590876 -0.588803 -0.481663 -0.355119 -0.270137 -0.676031 0.313934 -0.485343 0.178051 0.477706 -0.099053 -0.535670 0.332993 0.040843 -0.089465 0.154734 0.922134 0.905502 -0.436491 0.453935 -0.681219 0.518308 -1.158492 -0.737233 0.144851 -0.364537 -0.449572 0.009440 -0.031445 0.620249 -0.122308 0.290000 0.053010 -0.152096 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::end() = -0.202872 0.386286 0.833724 -0.768901 0.740881 0.663745 0.189043 -0.256858 -0.591395 -0.176435 -0.161819 -0.690996 -0.517768 0.896668 -0.399165 0.147309 1.264190 0.331733 -0.258820 -0.189273 0.501414 -0.160129 1.084665 1.059747 -0.910557 0.088716 0.392530 0.531347 0.062486 1.142907 -0.746586 -0.784597 0.139268 -0.050805 0.323805 -0.661185 -0.043111 -0.154620 0.005727 -1.416468 0.125679 0.142903 -0.105700 -0.165007 0.055067 0.224360 1.196741 0.621110 -0.144701 -0.032234 0.501326 0.459086 0.015406 0.169219 0.468155 0.382453 1.055980 0.104745 -0.338463 -0.096058 -0.220767 -0.368177 -0.006361 0.894945 0.967628 0.200404 -0.037782 -0.128244 -0.013309 0.075126 0.060947 0.242278 0.126259 0.556816 0.235297 -0.560368 0.415169 -1.187655 -0.025019 -1.270032 -0.570493 -0.537621 0.234890 0.159621 0.337959 -0.187365 1.012782 -0.120191 0.279404 0.138672 1.220847 -0.796707 -0.263686 -0.529516 -0.607878 0.184427 -0.324243 -0.043659 -0.031420 -0.123919 -0.656769 -0.710872 0.454843 0.219050 -0.373789 0.221603 -0.018293 0.760374 -0.780992 -0.352142 -0.649748 0.104121 -0.146817 -1.246945 -0.260797 -0.522911 0.447637 0.043989 -0.333308 -0.923972 0.298948 0.789129 -0.426832 -0.286496 -0.594495 0.943956 0.412188 -0.118188 0.011412 -0.243427 0.250311 0.732486 0.572093 -0.494487 -0.047655 0.089640 -0.549570 -0.238206 -0.644003 -0.069346 0.051769 -0.611464 -0.037110 0.640851 -0.541499 0.137012 0.103735 -0.221219 0.526795 2.615566 -0.422937 0.596790 0.093695 -1.067311 0.592579 0.102466 -0.331137 0.046037 0.497640 0.538340 -1.244930 -0.678197 0.458356 0.927890 0.576733 -0.730285 -0.042129 -0.386019 -0.234039 -0.019455 0.217387 0.100492 -0.305176 -0.563418 -0.340214 0.301482 1.623293 -0.309597 -1.306758 0.280143 0.022696 -0.204843 -0.537440 -0.172870 -0.268376 0.149110 0.061376 -0.232281 0.652475 1.074539 -2.092426 0.902023 -0.179852 -0.683033 1.052886 -0.212143 -0.251461 -0.391656 0.145842 0.887979 0.981433 0.134289 -0.163550 -0.047398 -0.801328 -0.139136 0.017949 0.538595 -0.505640 0.448055 0.439181 -1.031418 -0.601283 -0.610279 -0.021681 -0.405799 -0.538191 0.330878 -0.162025 -1.886209 1.158023 0.176155 -0.041625 0.254066 -0.259352 0.226737 -0.835394 -1.020850 0.304624 0.022253 -0.121845 -0.228702 -0.102536 0.628955 0.032408 0.425198 -0.779203 -1.101091 0.417209 -0.136735 0.660075 0.397519 0.372359 0.654764 0.511793 -0.163682 -0.655640 -0.293573 0.435375 -0.055881 -0.483305 -0.060902 -0.421511 0.719646 1.037167 -0.125295 -0.074435 -0.472824 0.887336 -0.533418 -0.130440 0.533079 0.008439 -0.591755 -0.039051 0.667923 -0.590876 -0.588803 -0.481663 -0.355119 -0.270137 -0.676031 0.313934 -0.485343 0.178051 0.477706 -0.099053 -0.535670 0.332993 0.040843 -0.089465 0.154734 0.922134 0.905502 -0.436491 0.453935 -0.681219 0.518308 -1.158492 -0.737233 0.144851 -0.364537 -0.449572 0.009440 -0.031445 0.620249 -0.122308 0.290000 0.053010 -0.152096 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::~_Deque_base() = -0.853431 1.531773 2.312855 -2.951417 3.055930 3.837206 0.653660 -1.149561 -1.952866 -0.350063 -0.423691 -3.131373 -1.957773 3.423975 -1.489927 0.685292 4.243777 0.455799 -1.141382 0.389244 1.749905 1.310904 3.688843 3.138785 -2.781577 0.046726 0.887011 1.109684 -0.992728 3.950409 -2.227452 -4.307718 0.421825 0.310221 0.305595 -1.292814 -0.182621 -0.892587 0.546962 -4.215108 0.603496 1.376626 -1.151003 -1.020101 0.010662 -1.302183 4.450678 2.196520 -0.297404 -0.958253 1.446988 2.410339 -0.575640 0.529208 1.687442 0.863651 2.591885 -0.157293 -1.233409 -1.062912 -0.936232 0.446236 -0.727993 3.154381 2.992125 1.124963 -0.195977 -0.417254 -0.393933 0.350001 -0.191606 0.687419 0.713083 2.412882 0.510445 -0.212463 0.568791 -2.764137 0.116626 -2.016670 -1.787586 -1.238712 0.359702 1.967865 1.163307 -1.742482 3.311028 -0.778501 0.673380 1.122049 4.693174 -2.486261 -0.912210 -2.333472 -2.543816 0.402369 -0.931489 0.113958 -1.023102 -0.833289 -2.554676 -2.530795 0.136120 0.876712 -1.027828 0.357630 0.380862 2.456741 -1.932071 -0.820508 -1.362140 1.357794 -0.369320 -4.659105 -3.055261 -1.405208 -0.078846 0.010458 -1.490800 -3.487404 1.218422 2.479003 -1.808277 -1.209000 -1.296446 2.934450 1.768526 -0.058622 0.016061 -0.923156 1.384011 3.028185 1.029332 -1.637421 0.324274 -0.508827 -0.754461 -0.645191 -1.687408 0.110584 -1.307507 -1.945191 0.294005 3.132583 -1.801091 0.465713 -1.771748 -0.934217 1.659766 10.035945 -1.906695 2.421938 0.276227 -4.157581 1.915567 0.086432 -1.653858 -0.803021 1.132122 2.196097 -3.758573 -2.268851 2.519656 3.234036 2.139679 -1.922853 1.298922 -0.861810 -1.012021 -0.892548 0.890535 0.495937 -0.814044 -2.181031 -1.368088 2.018275 5.750188 -0.942567 -5.224333 1.647833 1.378322 0.414601 0.036570 -0.703100 -1.106059 0.547003 1.773717 -0.979288 2.658691 3.902491 -6.294244 2.931107 0.432393 -2.433546 3.403941 -0.437604 -1.365295 0.645592 0.308096 3.656903 3.163460 0.465628 -0.277689 -0.881814 -2.491660 -0.463084 0.534472 1.514318 -1.480712 1.324720 1.236621 -3.739028 -2.234867 -2.251846 -0.814850 -1.511282 -2.672304 1.070697 -0.395411 -5.844220 4.621030 1.470715 0.332241 0.202580 -1.547997 1.356282 -2.630793 -3.860475 1.282831 -0.438533 -0.400728 0.500374 -0.230435 1.911126 1.297416 2.833014 -2.868606 -3.894701 1.667046 0.645933 2.921475 1.181600 1.596097 1.498671 1.392702 -0.476911 -1.961373 -2.948303 3.128176 0.931047 -2.451120 -0.138183 -1.508312 2.677565 2.706392 -0.860858 -1.633371 -2.976750 2.413700 -1.247606 0.575638 1.846612 -0.886391 -3.008943 -1.304149 2.488762 -1.312380 -1.679552 -1.705112 -0.250942 -2.161989 -2.895105 0.230049 -0.931848 0.597732 1.645719 -0.646143 -1.981152 0.459156 0.473765 -0.425690 0.999888 2.657839 1.186440 -1.217308 1.710864 -2.658815 1.955408 -4.083497 -3.456516 1.384267 -2.716281 -1.701754 -0.504371 -0.635634 2.016856 -0.964151 1.928686 0.256911 -0.212900 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.505811 0.844616 1.322920 -1.512303 1.543086 1.701722 0.340376 -0.888870 -0.877962 -0.216542 -0.219635 -1.105424 -0.822816 1.705381 -0.873020 0.532119 2.354085 0.313364 -0.516282 -0.302882 1.374117 -0.139575 2.150913 1.851168 -1.761620 -0.046119 1.361837 0.768937 0.208633 1.788520 -1.549284 -1.508089 0.457858 -0.720190 0.350787 -1.095301 0.052617 -0.560286 0.555997 -2.253224 0.214088 -0.529385 -0.930975 -0.368556 -0.252023 0.188499 2.329663 1.223884 -0.438266 -0.295118 1.140243 0.981395 -0.467182 0.325530 0.801724 0.816218 1.675608 0.820840 -0.418444 -0.469495 -0.463624 -0.243812 0.072946 1.819619 1.778177 0.445055 0.084881 0.362482 -0.115091 0.032075 -0.060941 0.404633 0.288146 1.256346 0.560906 -1.838358 0.373091 -2.830979 -0.384961 -2.270691 -0.891524 -1.001361 -0.388674 -0.688778 1.044067 0.029867 1.812071 -0.096075 0.478471 0.508217 2.486521 -1.831783 -0.496669 -1.200166 -1.257950 0.108387 -0.703644 0.234126 -0.002634 -0.630016 -1.282868 -1.782907 0.658860 0.755326 -0.606258 -0.369580 0.043853 1.395568 -1.201265 -0.872777 -1.104524 0.015726 -0.655304 -2.579327 -0.784526 -0.962982 1.536262 -0.062532 -0.579416 -2.383778 0.488551 2.057523 -0.768371 -1.147983 0.243045 1.542849 1.214691 0.064564 -0.015733 -0.669022 0.634838 1.939155 1.580637 -0.824879 -0.112802 -0.201128 -1.174325 -0.454448 -1.173022 -0.058521 0.210406 -1.163985 0.139391 1.879109 -0.947083 0.176151 1.463117 -0.610206 1.097887 5.739965 -0.838882 1.131834 0.095316 -2.326031 0.725722 -0.172156 -0.736517 -0.019036 0.848514 1.088384 -3.043456 -1.321419 1.145724 1.670373 1.071417 -1.846932 -0.285975 -0.821790 -0.489678 -0.223539 0.027592 0.288817 -0.689010 -1.058124 -0.698162 0.972681 3.285316 -1.052822 -2.477503 0.785187 0.215951 -0.317656 -1.248858 -0.535383 -0.773265 0.423075 0.608821 -0.441472 1.350501 2.090903 -3.991970 1.457376 -0.526783 -1.380986 1.753827 0.042586 -0.625631 -0.391340 0.507366 1.920486 1.521613 0.332285 -0.087146 -0.164610 -1.445111 -0.213649 0.102828 1.031496 -0.802525 0.716641 0.951244 -2.183639 -1.428247 -0.606435 -0.068232 -0.957687 -0.718884 0.618316 -0.880156 -3.902045 2.489764 0.403172 0.009238 0.599747 -0.734896 0.892431 -1.649228 -2.176514 0.925325 0.086326 0.351120 -0.148337 -0.046631 1.280206 0.439514 1.178358 -1.640775 -2.504522 0.451348 -0.090856 1.326487 0.608428 1.040953 1.523490 -0.342223 -0.218451 -1.786860 -0.694332 1.025453 0.436496 -1.379208 -0.778223 -0.599348 1.636616 1.793706 -0.463921 -0.267363 -0.921395 1.427207 -1.727754 0.067649 0.954529 1.226786 -1.642496 -0.508261 1.193348 -0.983774 -1.169381 -0.626488 -0.662335 -0.830230 -1.613734 0.297870 -0.794726 0.422757 0.913520 -0.015935 -0.688041 0.556871 0.150883 0.341613 0.359500 1.278355 2.245120 -1.121778 0.134800 -1.442318 1.047979 -2.357376 -2.073384 0.814217 -0.799838 -0.691124 -0.088603 -0.028103 1.300686 -0.379169 0.588725 0.328840 -0.490634 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.709235 -0.073459 0.551905 -1.471759 1.160995 0.727957 0.416206 -0.345351 -1.203372 -0.601203 -0.209255 -0.886838 -0.596819 1.939514 -0.557882 1.126320 2.688392 0.785533 -0.337170 -0.414650 1.891771 -1.364098 2.105966 1.927832 -1.733368 -0.241844 1.086641 1.294017 0.450636 1.375984 -0.469219 -1.146320 0.574418 -1.416393 0.523268 -2.030294 0.544430 0.610935 0.491414 -2.861716 0.352875 -0.406235 0.032855 -0.370517 -0.567297 0.514369 1.710990 1.526282 -0.990783 0.223706 1.348559 0.565070 -0.408211 0.522492 0.072890 0.799513 0.446167 0.506752 -0.702494 -0.297815 -0.186942 -1.228052 0.790962 1.524226 2.226910 -0.022303 0.316663 1.048742 -0.011829 0.332056 0.533704 0.145286 -0.050506 -0.131216 0.968847 -2.775126 -0.412201 -4.220471 -0.400182 -4.187474 -0.909787 -0.990386 0.526998 -0.519850 0.923710 0.069175 1.773214 -0.156185 0.405189 1.411165 2.128366 -1.630310 -0.672819 -1.813842 -1.138443 0.739812 -1.010290 -0.376159 1.000892 -0.083695 -1.174870 -1.740640 0.904170 0.714626 -0.585252 -1.517174 -0.055848 1.655486 -1.662999 -1.505080 -1.185748 0.500294 -0.742189 -2.568802 0.488520 -1.352539 1.348268 0.035028 -0.117744 -1.931847 0.172954 1.794738 -0.514474 -1.070248 -0.306121 1.682170 0.743761 -0.062987 0.305985 -0.329760 0.009747 2.091482 1.823845 -1.016917 -0.501496 0.531351 -1.458336 -0.307079 -1.886669 -0.724002 1.261938 -1.798574 -0.163787 1.397616 -1.016245 -0.345258 2.224567 -0.382421 1.295304 5.650662 -0.062300 1.063423 0.651041 -2.019489 1.274303 -0.074545 -0.283636 0.694708 1.199157 0.265854 -2.986980 -1.525387 0.464206 1.496561 1.349019 -1.755292 -1.604638 -1.065911 -0.134078 0.264731 -0.404698 0.594646 -0.711210 -1.186754 -0.387691 0.740483 3.226799 -0.830439 -0.844899 0.826593 1.034966 -1.541596 -2.777165 -0.714430 -1.726128 0.045439 -0.132963 -0.365951 1.023534 2.184196 -3.894950 1.533124 -0.629818 -0.305911 0.937686 0.014220 -0.729407 -3.004825 0.221093 1.621697 2.155302 -0.388186 0.695988 0.390546 -1.504584 0.005219 0.094226 0.786493 -0.477558 0.600436 0.051272 -1.630145 -1.189034 0.312545 -0.575074 -0.945151 0.030028 0.657760 0.350665 -3.045322 2.044706 -0.646941 -0.314792 1.137955 -0.102746 1.455647 -1.811193 -2.143257 1.168843 0.512764 0.067281 -1.013190 0.312122 1.721569 -0.182315 -0.081606 -0.634652 -2.736518 0.498962 -0.723703 0.889602 0.593173 0.392852 1.803477 0.022545 -0.534449 -2.179343 -0.613491 -0.447507 -0.280321 -1.061243 -1.142455 -0.214776 1.722066 1.952429 0.068931 -0.426830 0.081806 2.174095 -1.882157 -0.534765 1.312531 0.942176 -1.298853 0.262764 1.555403 -2.150264 -1.037501 -0.873645 0.258930 0.157070 -1.570082 0.701689 -0.772640 0.577959 0.531526 0.243706 -0.324271 0.906462 0.779214 0.399940 -0.278777 2.270779 2.357544 -1.060045 -0.360387 -1.293829 0.448423 -2.503210 -1.696996 0.173832 0.467310 -0.603631 0.677984 0.596210 1.476384 -0.228620 0.663691 0.111540 -0.844893 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.840306 -0.121491 1.077032 -1.325219 1.335500 0.514384 0.707125 -0.315721 -1.529288 -0.833130 0.006255 -1.109433 -1.232819 2.300727 -0.772064 0.988315 3.221084 1.255146 -0.417876 -0.781691 1.890268 -1.609951 2.802029 2.700285 -2.145836 -0.167943 1.009647 1.402724 0.702018 1.529592 -0.884442 -1.032391 1.193874 -1.554383 0.681493 -2.190249 0.400089 0.426862 0.241506 -3.386935 0.277228 -0.390323 -0.164373 -0.273782 -0.391093 1.670832 1.960540 1.812328 -0.827771 0.754777 1.416992 0.103920 -0.067697 0.692563 0.461648 0.774043 0.753539 0.725572 -1.107448 -0.154533 -0.517196 -2.203495 0.455626 1.871604 2.677488 0.009258 0.243044 0.714836 -0.155999 0.468006 0.764236 0.355580 0.551261 0.022013 1.349191 -2.779482 -0.221481 -4.437106 -0.844420 -5.490976 -1.338477 -1.310432 1.255011 -0.961980 0.996307 0.133111 2.271081 0.137022 0.349838 1.234966 2.717982 -2.242848 -1.014680 -1.541139 -0.831468 0.771704 -1.418870 -0.069627 1.409905 -0.250454 -1.668815 -1.840796 1.325808 0.636746 -0.757218 -1.095982 -0.212211 2.215814 -2.264261 -1.524688 -2.087110 -0.042913 -0.467012 -3.057792 0.755888 -1.143400 2.280551 0.538742 -0.566436 -1.803371 0.538987 1.845394 -0.526903 -1.218462 -0.266237 2.192191 0.684966 0.063876 0.384652 -0.020665 0.042553 2.263554 2.433909 -1.098815 -0.457589 0.522417 -1.904859 0.032183 -1.977349 -0.833096 1.677666 -2.042796 -0.001238 1.145748 -1.418446 -0.450145 2.502725 -0.101222 1.396959 5.326448 -0.188393 1.470191 0.858846 -2.236293 1.403610 -0.313205 -0.032914 0.900737 1.749136 0.430627 -3.041388 -1.826794 0.685586 2.110540 1.570595 -2.571083 -1.497115 -1.216536 0.287883 0.019528 -0.125212 0.790925 -0.433373 -1.392130 -0.399931 0.863567 3.481141 -1.496514 -1.727033 0.694837 0.264862 -1.061502 -3.173326 -0.766619 -1.090755 0.174593 -0.106455 -0.212012 0.976773 2.688920 -4.531619 2.006963 -1.038602 -0.571721 1.662677 0.180759 -0.990584 -2.984297 0.330486 1.696286 2.384654 0.395910 0.092483 0.624762 -2.077564 -0.184212 0.016972 1.193246 -0.643354 1.038815 0.308525 -1.663821 -1.569108 -0.382471 -0.087900 -1.062621 0.081291 1.059540 0.281404 -4.331890 2.238870 -0.615269 -0.829145 0.998783 0.033807 1.418777 -2.277946 -2.686213 1.194963 0.017991 -0.747507 -1.579357 0.218526 1.701969 -0.206065 -0.315646 -0.879756 -2.867894 1.301032 -0.766993 1.370476 0.797777 0.508034 2.723757 0.344639 -1.014211 -2.175846 -0.232850 -0.080955 -0.991120 -1.205392 -1.042062 -0.381963 2.001759 2.680774 0.187676 -0.143588 -0.025230 2.628922 -2.601926 -0.975993 1.833581 1.809346 -0.866056 1.003570 1.962706 -2.518968 -1.349710 -0.978474 -0.554167 0.085418 -1.684337 1.015712 -1.355719 0.761690 0.615407 0.416043 -0.472085 1.081376 0.533362 0.393091 -0.300599 2.621378 3.769571 -1.792988 -0.072485 -1.668458 0.970410 -2.912762 -1.942532 0.323563 0.649615 -0.825057 0.684513 0.654850 1.644567 0.023493 -0.350703 -0.389341 -0.645053 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.209476 0.011275 0.370820 -0.439296 0.342339 0.033360 0.143971 -0.132280 -0.420716 -0.249230 -0.045693 -0.223138 -0.248942 0.571209 -0.276616 0.183603 0.843023 0.376191 -0.086609 -0.317862 0.469097 -0.453538 0.734312 0.734212 -0.618208 -0.032406 0.347470 0.470664 0.294027 0.481962 -0.231904 -0.238435 0.245916 -0.298600 0.241829 -0.674459 0.128274 0.154568 -0.004075 -0.932860 0.093318 -0.226754 0.045341 -0.033136 -0.069395 0.475159 0.500052 0.464753 -0.222980 0.208562 0.469894 0.225865 -0.036737 0.179275 0.109055 0.231252 0.389700 0.048470 -0.203064 -0.009301 -0.100082 -0.566330 0.168026 0.542585 0.730447 0.017745 0.102873 0.116284 -0.016729 0.134399 0.229920 0.079572 0.012100 0.063514 0.263851 -0.827586 0.080099 -1.286407 -0.171738 -1.535622 -0.313181 -0.396573 0.282012 -0.235157 0.206223 0.238339 0.601511 0.085347 0.154688 0.278366 0.648913 -0.517521 -0.227180 -0.331146 -0.296465 0.245338 -0.343189 -0.024966 0.216480 0.111956 -0.367327 -0.484362 0.393822 0.140253 -0.220936 -0.189101 -0.069775 0.539789 -0.714812 -0.343020 -0.509686 0.014179 -0.122248 -0.762342 0.238759 -0.458166 0.768782 0.029769 -0.094093 -0.451883 0.097211 0.528326 -0.142527 -0.197593 -0.261415 0.483563 0.173211 -0.048003 0.023231 -0.106389 -0.037294 0.540194 0.552008 -0.350082 -0.158791 0.187759 -0.525063 -0.105356 -0.602604 -0.171253 0.461657 -0.518872 0.078094 0.277645 -0.361189 -0.216482 0.684294 -0.121952 0.418627 1.376950 -0.050984 0.335943 0.223735 -0.568845 0.194242 -0.028299 0.008963 0.294173 0.454277 0.092998 -0.670415 -0.499473 0.090322 0.514537 0.401366 -0.559340 -0.459107 -0.345865 -0.011594 0.125184 -0.053341 0.133893 -0.297284 -0.334309 -0.142586 0.126268 0.845975 -0.208215 -0.321650 0.113934 0.086273 -0.418647 -0.734839 -0.170242 -0.245780 0.105104 -0.063120 -0.075226 0.282638 0.691723 -1.417071 0.534700 -0.251860 -0.099128 0.337802 -0.008327 -0.181944 -0.825589 0.131022 0.424621 0.647125 -0.012217 0.119015 0.232127 -0.545264 -0.063021 -0.030287 0.368905 -0.248964 0.231865 0.251463 -0.508799 -0.404797 -0.036128 0.037679 -0.222036 0.020073 0.256980 0.009699 -1.273381 0.578717 -0.238353 -0.175065 0.303139 -0.009247 0.335439 -0.629380 -0.618513 0.271254 0.096163 -0.094873 -0.415414 0.061621 0.533378 -0.214333 0.009440 -0.259691 -0.631145 0.204462 -0.266095 0.240476 0.210475 0.145595 0.650639 -0.082054 -0.129288 -0.584400 0.127017 -0.080192 -0.285406 -0.236083 -0.063940 -0.100970 0.478263 0.779569 0.041133 -0.016653 0.197406 0.734391 -0.582740 -0.278894 0.404975 0.460489 -0.203286 0.324367 0.444874 -0.695576 -0.420055 -0.261849 -0.148067 0.135171 -0.408412 0.362948 -0.353656 0.226270 0.194286 0.151133 -0.204268 0.380003 0.119575 0.104798 -0.025244 0.684588 0.998023 -0.346169 0.046852 -0.393766 0.170660 -0.768826 -0.436417 -0.021314 0.130952 -0.188014 0.237528 -0.006699 0.505109 0.006270 0.100335 -0.022221 -0.163147 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.578792 0.032268 0.850649 -1.325502 1.799190 0.696759 0.473044 -0.133104 -1.325587 -0.706830 -0.225915 -1.199456 -1.226877 2.024236 -0.519463 1.191693 2.400050 0.509857 -0.383380 -0.415151 1.812611 -1.092261 2.150219 1.347308 -1.878909 -0.030959 0.468766 1.271968 0.319896 1.689759 -0.835730 -1.119707 0.693360 -1.115019 0.496700 -1.435918 0.546247 0.385051 0.126174 -2.543220 0.222375 0.231616 -0.321642 -0.099722 -0.433882 1.113219 1.676436 1.514518 -0.933536 0.510315 1.332974 0.006135 -0.089828 0.673347 -0.001908 0.553825 0.598040 0.165310 -1.267266 -0.337044 -0.321203 -1.805971 0.364084 1.277536 2.102435 -0.308314 0.104446 1.225701 -0.219500 0.343315 0.641983 0.290852 0.428968 -0.211196 1.300342 -1.606492 -0.459901 -2.885444 -0.592665 -4.198886 -1.105488 -1.247275 0.923558 -0.054865 0.692959 -0.289962 2.099898 -0.104565 0.148099 1.171585 2.259559 -1.799787 -0.772325 -2.005451 -0.744727 0.507995 -1.166757 -0.690029 1.084649 0.025012 -1.210304 -1.304611 0.760216 0.244910 -0.567387 -1.049495 -0.515595 1.910968 -2.097074 -1.310318 -1.656337 0.516354 -0.384815 -2.497297 0.232728 -0.400444 1.242943 0.214419 0.197488 -1.345535 0.393662 1.538434 -0.682992 -0.827758 -0.424437 1.923403 0.800289 -0.058315 0.558775 0.210424 0.259262 1.815165 1.916644 -0.851760 -0.886832 0.490402 -0.921900 0.026316 -1.388223 -0.538503 0.914645 -1.919844 0.003750 1.115986 -0.921004 -0.087242 0.965868 -0.296597 1.194497 3.932705 -0.169032 1.013676 0.311845 -1.833970 1.343506 -0.107578 -0.335374 0.656149 0.975167 0.348012 -1.976280 -1.589933 0.949028 1.454045 1.233609 -2.027422 -0.827087 -0.964612 0.293596 0.038543 -0.353386 1.186598 -0.326749 -0.953879 -0.337093 0.426495 3.226143 -1.106429 -1.616442 1.318321 0.449234 -1.057778 -2.360148 -0.877299 -0.944450 -0.361058 0.183770 -0.204991 0.793861 2.355850 -3.423950 1.640195 -0.338399 -0.663613 1.247577 -0.309521 -0.428679 -2.300534 -0.261372 1.570509 1.995176 0.094755 0.192651 0.064554 -1.540882 0.265487 0.221689 0.773928 -0.202020 0.585855 -0.063419 -1.243374 -1.190682 -0.371400 -0.551044 -0.318827 -0.128015 0.631231 0.402260 -3.530846 1.920846 -0.756842 -0.432281 0.935016 0.235339 1.550220 -1.533139 -2.083602 1.181790 -0.032167 -0.924515 -1.202362 0.466865 1.326242 -0.037890 -0.346784 -0.644042 -2.694755 1.014424 -0.503971 0.821980 0.601490 0.498490 1.918645 0.632047 -1.043559 -1.680973 -0.645677 0.006338 -0.729555 -0.666495 -0.551459 -0.147909 1.708730 1.827730 0.296825 -0.137746 -0.460277 1.933052 -1.856761 -0.806199 1.749153 0.750324 -1.140596 0.781061 1.910693 -1.684419 -1.157789 -1.049854 0.115202 -0.258572 -1.346709 0.466900 -0.979750 0.267889 0.819637 0.178577 -0.689361 0.885101 0.426391 -0.075050 -0.914643 2.696834 2.682623 -1.527143 0.196660 -1.306886 0.897243 -2.384012 -1.609451 0.349806 0.420137 -0.574284 0.652149 0.761698 1.257454 -0.257827 -0.096454 -0.252011 -0.947223 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__deque_buf_size(unsigned long) = -0.327429 -0.541720 -0.250563 -0.817673 0.468122 -0.019868 0.083698 -0.359435 -0.969296 -0.056664 0.194318 -0.757189 0.224143 0.822662 -0.080890 0.841421 1.022145 0.268652 -0.326639 -0.032886 0.905333 -0.470108 0.483286 0.756256 -0.431431 0.038984 -0.352382 0.220354 0.035380 0.134618 -0.111022 -0.463374 0.118702 -0.913930 -0.190387 -0.440179 -0.015064 0.744882 0.873809 -1.037619 0.383653 0.086472 0.494882 -0.137241 -0.137767 -0.277520 0.291293 0.222818 -0.233326 0.468662 0.570466 -0.095030 -0.047276 0.075381 0.253407 0.584896 -0.052016 0.004345 -0.317731 -0.347162 -0.169534 0.228673 0.449753 0.315678 0.556743 0.019170 -0.160731 0.483020 0.343261 0.016175 0.526215 0.048322 -0.382044 -0.524368 0.238392 -0.944549 -0.205882 -1.403662 0.007313 -1.479196 -0.457595 0.351886 0.688312 0.217669 0.204654 0.046534 0.586340 -0.573112 -0.327418 0.454250 0.606169 -0.399428 -0.286993 -0.342277 -0.676001 0.038526 0.037725 -0.305577 0.433359 0.306636 -0.598475 -0.388161 0.475868 0.273325 -0.147834 -0.625247 0.339842 0.518454 -0.648351 -0.669160 0.303066 0.958437 0.061967 -0.640186 0.093663 -0.583616 -0.092612 0.034784 -0.561480 -0.646479 -0.004983 0.101245 -0.479537 -0.155698 -0.183534 0.267444 0.352668 0.224940 -0.040601 0.005915 0.037144 1.012613 -0.071374 -0.710415 0.211445 0.030982 0.057553 0.177411 -0.452970 -0.648346 0.054107 -0.703546 0.079894 0.067718 -0.415451 -0.026735 0.585030 0.325578 -0.245785 1.494956 -0.101041 0.957318 0.560549 -0.293716 0.385559 -0.029327 0.244157 0.315166 0.533187 -0.186379 -0.603168 -0.743932 0.539645 0.476010 0.329954 -0.475394 -0.667907 0.019966 0.018214 0.427035 -0.075025 -0.099405 0.109343 -0.355129 -0.092279 0.249572 1.460041 -0.037876 0.149580 0.383034 0.535792 -0.377661 -0.882989 -0.422988 -1.097782 0.104139 -0.009743 0.119812 0.474970 0.957817 -1.339441 0.531629 -0.277989 0.209257 0.308900 0.361815 -0.598951 -1.589697 -0.615724 0.196894 1.032818 -0.367488 0.404133 0.375328 -0.472082 0.001844 0.042214 -0.082258 -0.524858 0.304393 -0.068681 -0.465398 0.184824 0.488821 -0.591852 -0.161866 -0.113633 0.151272 0.619722 -0.648554 0.368004 0.093135 0.023255 0.480806 0.075593 0.798488 -0.255568 -0.316683 0.460342 0.121094 0.012248 -0.115331 0.260056 0.505793 -0.264100 -0.168467 -0.291286 -0.765809 0.551671 -0.220416 0.680265 0.057201 -0.645820 0.022934 -0.034573 -0.082889 -0.544525 -0.051469 -0.592360 -0.290611 -0.356037 -0.362148 -0.277278 0.571487 0.267002 0.300319 -0.619927 0.191528 0.622725 -0.402872 0.278854 0.558256 -0.208835 -0.647275 0.041325 0.754816 -0.780798 0.206215 -0.410641 0.147716 -0.253479 -0.144209 0.559876 0.378613 0.302607 -0.424480 -0.147965 0.274082 0.363206 0.449227 -0.006116 0.106955 1.040651 0.234868 0.092579 -0.193855 -0.525321 0.008798 -0.598732 -0.542778 0.066135 0.602087 -0.850068 0.054758 -0.068156 0.833618 -0.074877 0.231781 -0.108911 0.172724 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.310755 0.147580 0.699946 -0.671705 0.539508 0.103629 0.241426 -0.229616 -0.588818 -0.359932 -0.091261 -0.481361 -0.497314 0.923101 -0.364688 0.297061 1.370261 0.502425 -0.199682 -0.462954 0.803138 -0.855030 1.171321 1.184628 -1.028338 -0.017651 0.645612 0.747011 0.515325 0.773941 -0.551614 -0.245473 0.336708 -0.561660 0.507508 -0.980647 0.156481 0.066508 0.010547 -1.521838 0.099061 -0.284289 0.116807 -0.096939 -0.135963 0.855870 0.978325 0.753224 -0.389096 0.155626 0.705443 0.086042 0.028722 0.258402 0.260697 0.361461 0.843264 0.418668 -0.376613 -0.021385 -0.165170 -0.971969 0.313216 0.911230 1.192347 0.045013 0.117323 0.263307 0.058245 0.151716 0.238817 0.201611 0.105021 0.208194 0.515574 -1.430477 0.292269 -2.061375 -0.281998 -2.452062 -0.579518 -0.678575 0.350646 -0.566132 0.427341 0.233077 1.022943 0.122344 0.275974 0.308236 1.189204 -0.937226 -0.362972 -0.621394 -0.478121 0.351495 -0.559686 -0.027796 0.599116 -0.033159 -0.653487 -0.762786 0.738820 0.292159 -0.390706 -0.188529 -0.115837 0.882703 -0.961581 -0.605680 -0.891489 -0.213564 -0.237994 -1.334660 0.509910 -0.659539 1.082602 0.097594 -0.166647 -0.883081 0.164011 0.917059 -0.244924 -0.434131 -0.461086 1.004025 0.347385 -0.056224 0.099470 -0.131051 0.066831 0.809531 1.063262 -0.510117 -0.250506 0.236817 -1.011547 -0.167135 -0.905819 -0.330036 0.871518 -0.808495 -0.127860 0.489607 -0.580667 -0.106569 1.268325 -0.166245 0.668690 2.455986 -0.128310 0.556844 0.261600 -0.979719 0.621454 0.011363 -0.126268 0.402551 0.736191 0.299251 -1.476662 -0.809526 0.249045 0.912552 0.628350 -1.075536 -0.739434 -0.558362 -0.048523 0.114998 -0.053896 0.229882 -0.369821 -0.561124 -0.239438 0.285198 1.500581 -0.553266 -0.824917 0.234225 -0.064224 -0.597889 -1.478069 -0.278286 -0.449667 0.128200 -0.350965 -0.126148 0.511837 1.138188 -2.272875 0.912775 -0.454519 -0.386188 0.913052 -0.128385 -0.319254 -1.469081 0.274195 0.800352 0.988480 0.060807 -0.092390 0.232765 -0.913937 -0.097580 -0.076605 0.588913 -0.405162 0.448131 0.259354 -0.806242 -0.719535 -0.234662 0.059662 -0.431136 -0.004865 0.416118 -0.067151 -1.954937 1.072050 -0.288238 -0.273427 0.454326 -0.080126 0.348127 -1.035560 -1.081474 0.391532 0.114802 -0.148835 -0.763880 0.043245 0.780520 -0.262912 -0.145330 -0.542853 -1.210420 0.393054 -0.532364 0.492546 0.377526 0.328854 1.099215 0.317477 -0.284195 -1.010852 0.234380 -0.248911 -0.373158 -0.504452 -0.425066 -0.210435 0.816335 1.266015 -0.036840 0.186392 0.120906 1.104097 -1.044812 -0.563123 0.661806 0.627491 -0.439602 0.373681 0.721737 -1.016776 -0.678166 -0.478552 -0.484940 0.104322 -0.736799 0.481115 -0.631254 0.260797 0.397216 0.081767 -0.263005 0.561112 0.150615 0.158849 -0.069252 1.101679 1.722282 -0.719712 -0.000212 -0.723246 0.401129 -1.299878 -0.758661 0.100553 0.278863 -0.310006 0.262394 0.293824 0.728718 0.010271 -0.084249 -0.045124 -0.306429 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.083237 0.146771 0.260718 -0.267468 0.293270 0.218020 0.072605 -0.156520 -0.224624 -0.084225 -0.063246 -0.247825 -0.142270 0.338393 -0.166160 0.148988 0.472178 0.137093 -0.065307 -0.093198 0.185776 -0.132416 0.433913 0.398713 -0.327670 0.040127 0.176123 0.179636 -0.003495 0.459177 -0.299040 -0.323835 0.090765 -0.094189 0.088544 -0.278828 -0.005146 -0.005290 0.075434 -0.526879 0.051919 -0.013572 0.024743 -0.055145 -0.016787 0.020992 0.430847 0.237445 -0.015996 0.061024 0.196997 0.200793 0.006953 0.087371 0.194948 0.209870 0.402316 -0.075310 -0.133001 -0.029225 -0.083549 -0.157948 0.007957 0.331720 0.367610 0.057441 0.004111 0.004341 -0.075382 0.023634 0.046364 0.083836 -0.037467 0.198153 0.049985 -0.322316 0.173813 -0.471057 -0.062379 -0.520591 -0.204589 -0.200944 0.017132 0.085099 0.203061 0.069473 0.381678 -0.037311 0.103316 0.001018 0.453052 -0.362799 -0.109606 -0.144967 -0.201231 0.045261 -0.132493 -0.032075 -0.051798 -0.022159 -0.233494 -0.308868 0.249919 0.123833 -0.134626 0.012850 -0.007660 0.260504 -0.380523 -0.217947 -0.245425 -0.005416 -0.129701 -0.449506 -0.002142 -0.185310 0.209551 0.020831 -0.117333 -0.433507 0.123630 0.344514 -0.137991 -0.162997 -0.210317 0.282204 0.138875 -0.035334 0.010735 -0.120347 0.078197 0.383440 0.219705 -0.194153 -0.025497 0.040671 -0.199593 -0.083260 -0.225515 -0.072354 -0.045739 -0.288766 0.026489 0.266008 -0.206806 0.050603 0.097552 -0.089254 0.203653 0.872805 -0.152962 0.212823 0.048637 -0.435161 0.145428 -0.034371 -0.107970 0.013051 0.192526 0.178867 -0.404125 -0.270781 0.163251 0.331181 0.220217 -0.230838 -0.111689 -0.174390 -0.052674 0.070403 0.045762 0.046625 -0.145002 -0.231251 -0.122720 0.057491 0.655893 -0.109861 -0.294008 0.135507 -0.025024 -0.135644 -0.256412 -0.091625 -0.188896 0.068331 -0.018287 -0.083083 0.190818 0.402863 -0.784296 0.342776 -0.150487 -0.246350 0.342556 -0.062783 -0.086439 -0.192863 0.040576 0.324652 0.369916 0.001569 0.072631 0.008331 -0.297613 -0.056168 -0.034488 0.207662 -0.199672 0.155445 0.203299 -0.464521 -0.230027 -0.112616 0.033574 -0.198317 -0.145100 0.127350 0.029635 -0.725748 0.421663 0.050532 -0.027225 0.170907 -0.035373 0.137107 -0.316010 -0.363049 0.143553 -0.002136 0.040108 -0.029153 -0.025371 0.239798 -0.042363 0.108570 -0.239983 -0.338175 0.079673 -0.032466 0.195587 0.143230 0.138793 0.208496 0.053971 -0.065830 -0.226695 -0.027056 0.049865 -0.103319 -0.135141 0.015963 -0.145144 0.308209 0.417343 0.023382 -0.039569 -0.064169 0.340319 -0.207249 -0.013012 0.220697 0.069440 -0.239269 -0.030034 0.254939 -0.238941 -0.228559 -0.142132 -0.078435 -0.080710 -0.247418 0.126713 -0.187912 0.071798 0.174404 -0.018634 -0.201093 0.154126 0.022502 -0.002543 0.034131 0.350832 0.283604 -0.122111 0.138893 -0.233886 0.114923 -0.434073 -0.275025 0.038360 -0.018102 -0.207792 0.019283 -0.031943 0.258399 -0.050606 0.160714 0.049200 -0.120969 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.187602 -0.055819 0.442655 -0.408223 0.263108 -0.042985 0.132877 -0.065081 -0.419237 -0.243808 -0.041819 -0.228138 -0.257133 0.546994 -0.259530 0.145330 0.843298 0.395485 -0.082099 -0.366122 0.424680 -0.563082 0.700758 0.764150 -0.629747 -0.036515 0.333350 0.526467 0.355835 0.477092 -0.247481 -0.152587 0.172672 -0.294305 0.348866 -0.680769 0.112961 0.162491 -0.068369 -0.989920 0.054358 -0.126434 0.127080 -0.007747 -0.010669 0.593761 0.464961 0.445514 -0.220941 0.255368 0.451882 0.078589 0.057429 0.133465 0.121267 0.231482 0.497245 0.154895 -0.238794 0.083277 -0.090536 -0.648226 0.215563 0.525973 0.746943 -0.023142 0.076246 0.040937 0.055435 0.123443 0.247133 0.111494 0.006903 0.054896 0.319133 -0.846524 0.163724 -1.310411 -0.104678 -1.592238 -0.334653 -0.413740 0.367174 -0.268177 0.171445 0.160419 0.619948 0.063342 0.155743 0.222473 0.613177 -0.486768 -0.234174 -0.332473 -0.274622 0.251317 -0.355395 -0.074594 0.334832 0.118139 -0.354217 -0.425508 0.457713 0.133975 -0.225532 -0.065935 -0.111233 0.557393 -0.686061 -0.373382 -0.585954 -0.030070 -0.091936 -0.744143 0.345532 -0.457660 0.693679 0.091588 -0.113947 -0.389663 0.107955 0.505435 -0.136100 -0.145270 -0.363513 0.595248 0.148633 -0.076903 0.027123 -0.041038 -0.056810 0.425363 0.603326 -0.341855 -0.178568 0.291005 -0.627927 -0.118238 -0.614649 -0.205211 0.563679 -0.495440 -0.035897 0.164867 -0.361235 -0.140791 0.708173 -0.072412 0.412148 1.407440 -0.047511 0.323913 0.197994 -0.503618 0.345944 0.059318 0.057604 0.308734 0.479400 0.089048 -0.782337 -0.467219 0.053262 0.537526 0.374654 -0.603382 -0.494254 -0.336936 0.005464 0.152083 -0.010083 0.142017 -0.284335 -0.309935 -0.110139 0.053187 0.849031 -0.239849 -0.419256 0.024266 0.009124 -0.441875 -0.852071 -0.108547 -0.247534 0.083729 -0.215914 -0.049556 0.272723 0.654736 -1.462565 0.562654 -0.268660 -0.118870 0.482695 -0.086464 -0.149060 -0.986113 0.115459 0.364574 0.667883 0.042625 -0.011580 0.260047 -0.554548 -0.031459 -0.063556 0.396594 -0.263594 0.277930 0.179257 -0.464109 -0.375535 -0.136746 0.037980 -0.229041 -0.011607 0.239746 0.008658 -1.223815 0.520173 -0.238241 -0.203298 0.307772 0.037745 0.213200 -0.647683 -0.590748 0.202552 0.112347 -0.163290 -0.527934 -0.013980 0.482796 -0.244601 -0.100147 -0.275563 -0.679443 0.243975 -0.366838 0.272767 0.219990 0.061898 0.682247 0.183628 -0.151276 -0.545386 0.184258 -0.155666 -0.330570 -0.188655 -0.139718 -0.097470 0.445118 0.778381 0.032769 0.116769 0.152326 0.760891 -0.559977 -0.348686 0.369929 0.339184 -0.111418 0.348500 0.419711 -0.735702 -0.381449 -0.296667 -0.250255 0.174514 -0.337975 0.390028 -0.425837 0.209237 0.157603 0.127978 -0.199249 0.346933 0.106328 0.041901 -0.045765 0.747665 1.068511 -0.370478 0.095647 -0.421180 0.217614 -0.732156 -0.349295 -0.109021 0.193107 -0.190604 0.258586 0.116447 0.451938 0.087294 -0.042271 -0.069285 -0.136712 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::~__new_allocator() = -0.075844 0.023731 0.135411 -0.166733 0.153073 -0.014358 0.057068 -0.099467 -0.180538 -0.109681 -0.032161 -0.091625 -0.056697 0.231503 -0.113179 0.153112 0.349952 0.164892 -0.010639 -0.159292 0.179541 -0.271550 0.323704 0.319730 -0.257497 0.017673 0.169102 0.188499 0.108989 0.251041 -0.140449 -0.105671 0.109082 -0.181347 0.093713 -0.311918 0.042993 0.099678 0.058501 -0.419322 0.035881 -0.127869 0.101388 -0.004175 -0.043064 0.151079 0.214195 0.190844 -0.059896 0.157172 0.199765 0.096758 0.017553 0.084496 0.075646 0.170315 0.226982 -0.065054 -0.085995 0.020661 -0.031003 -0.264714 0.090726 0.223963 0.309540 -0.015324 0.038334 0.077556 -0.044608 0.037418 0.107455 0.047378 -0.082490 0.028865 0.077793 -0.450032 0.097758 -0.549590 -0.091611 -0.668843 -0.142970 -0.170942 0.066824 -0.063768 0.157254 0.208639 0.270002 0.024024 0.073885 0.039044 0.260758 -0.273508 -0.093149 -0.081343 -0.104990 0.084055 -0.138851 -0.038859 0.058365 0.061569 -0.139261 -0.231924 0.270432 0.091584 -0.105958 -0.095628 -0.034187 0.198845 -0.369077 -0.227570 -0.220161 -0.042042 -0.122052 -0.297016 0.201325 -0.184590 0.328754 0.019688 -0.031874 -0.273545 0.047451 0.255727 -0.045647 -0.122605 -0.150857 0.162552 0.064933 -0.026884 0.019933 -0.069539 -0.018109 0.302203 0.231843 -0.155891 -0.073884 0.104984 -0.217827 -0.046933 -0.233254 -0.113601 0.130287 -0.262474 0.034596 0.122094 -0.153704 -0.052206 0.327028 -0.051732 0.167566 0.505655 -0.018385 0.130277 0.098747 -0.262559 0.049838 -0.052439 0.003247 0.127390 0.197309 0.036855 -0.263360 -0.216417 0.018017 0.214149 0.163473 -0.195666 -0.281797 -0.163764 0.009594 0.134255 -0.028682 0.044523 -0.138319 -0.155346 -0.054377 -0.013845 0.416322 -0.076195 0.011543 0.058918 -0.022386 -0.240957 -0.377221 -0.081637 -0.191458 0.045422 -0.104840 -0.029795 0.077571 0.280699 -0.612482 0.238631 -0.188249 -0.064378 0.138949 -0.012667 -0.058083 -0.401542 0.041497 0.162080 0.282933 -0.054262 0.140868 0.112132 -0.232485 -0.031021 -0.054085 0.151918 -0.135895 0.106968 0.136395 -0.283362 -0.155505 0.061728 0.056515 -0.135981 0.037991 0.108990 0.078476 -0.537006 0.223384 -0.101497 -0.084790 0.203005 0.045378 0.151639 -0.262149 -0.228346 0.124860 0.045156 0.039457 -0.130040 0.013032 0.220330 -0.144280 -0.059250 -0.084928 -0.203005 0.018505 -0.114456 0.055767 0.102826 0.046707 0.222546 -0.088585 -0.060314 -0.215372 0.141704 -0.152811 -0.188878 -0.042985 -0.008190 -0.056025 0.222702 0.364220 0.079416 0.015865 0.163483 0.315320 -0.234190 -0.095430 0.173919 0.201479 -0.095627 0.114594 0.180338 -0.293158 -0.171349 -0.089445 -0.038934 0.083119 -0.146495 0.177817 -0.163169 0.085025 0.088677 0.052386 -0.091967 0.191879 0.040099 0.052031 -0.034689 0.303349 0.356894 -0.102106 0.011445 -0.144383 0.010378 -0.313802 -0.149973 -0.044604 0.166560 -0.126838 0.099798 -0.001680 0.226406 0.011658 0.073742 0.019267 -0.122985 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, AdjListNode const&) = -0.613108 0.361776 1.332089 -1.465934 1.197173 0.576915 0.446530 -0.343035 -1.181219 -0.799868 -0.082980 -1.158210 -1.246546 1.867728 -0.879839 0.157360 2.651806 0.789021 -0.447374 -0.762501 1.443926 -0.792668 2.321431 2.253302 -2.051308 -0.128429 1.067481 1.307943 0.831199 1.396323 -0.697998 -1.077333 0.643717 -0.508882 0.814682 -1.569490 0.284887 -0.119604 -0.222396 -2.785740 0.216823 -0.278744 -0.322585 -0.220854 -0.140343 1.566664 2.051049 1.470692 -0.804297 0.120317 1.436808 0.689750 -0.212641 0.434352 0.371860 0.197350 1.249167 0.606160 -0.685378 -0.208496 -0.377025 -1.416979 0.193649 1.886310 2.258724 0.235915 0.199493 0.236163 0.070447 0.433044 0.386638 0.370782 0.625764 0.655484 0.995979 -1.831791 0.120073 -3.721076 -0.387154 -4.484934 -1.055483 -1.224091 0.959966 -0.695956 0.391073 0.019662 1.976229 0.298036 0.472734 1.162734 2.458713 -1.431673 -0.702899 -1.321781 -1.136892 0.741572 -1.052264 0.206242 0.706190 0.076890 -1.367356 -1.391131 0.684660 0.304514 -0.704217 -0.305895 -0.165670 1.680649 -1.837981 -0.536045 -1.570399 0.090849 0.012827 -2.751566 -0.053640 -1.235341 2.043556 0.108519 -0.443868 -1.281978 0.350952 1.521914 -0.636638 -0.509530 -0.764503 1.830413 0.759253 0.023949 0.088600 -0.177607 0.327294 1.429679 1.680365 -0.989918 -0.383374 0.214575 -1.505276 -0.314725 -1.677304 -0.281407 1.492991 -1.347628 0.246276 1.029043 -1.116607 -0.683564 1.518549 -0.565283 1.284786 4.997665 -0.402355 1.230749 0.510385 -1.924044 0.836363 -0.024753 -0.333542 0.589757 1.300701 0.710893 -2.215991 -1.506881 0.765855 1.829758 1.233629 -1.971628 -0.591237 -0.764313 -0.221682 -0.196659 0.062921 0.447866 -0.727106 -1.039408 -0.565845 0.958911 2.691566 -0.790421 -2.037022 0.428810 0.512841 -0.588124 -1.712015 -0.402337 -0.328466 0.358467 0.260190 -0.264611 1.228251 2.285966 -4.485367 1.683857 -0.278723 -0.539084 1.371186 -0.053014 -0.746258 -2.003141 0.570690 1.701711 1.850094 0.310018 -0.215605 0.293208 -1.729490 -0.201146 0.138360 1.142450 -0.754615 0.808153 0.616483 -1.488280 -1.495318 -0.759124 -0.092409 -0.483936 -0.407728 0.797161 -0.373531 -4.107282 2.273749 -0.438083 -0.432986 0.279849 -0.497055 0.869709 -2.011829 -2.215106 0.713749 -0.055705 -0.770553 -1.243408 0.056031 1.453886 -0.166879 0.520489 -1.178517 -2.376110 1.112927 -0.670063 1.196984 0.693301 0.745784 2.218301 0.221338 -0.410888 -1.884336 -0.251893 0.631468 -0.413953 -1.198387 -0.227736 -0.420338 1.429899 2.235493 -0.388255 -0.196153 -0.135884 1.994392 -1.769605 -0.904898 1.187758 1.152548 -0.923963 0.836188 1.394334 -1.819313 -1.242009 -1.109374 -0.722226 -0.135789 -1.583324 0.762350 -1.055570 0.570951 0.831184 0.226772 -0.730378 0.934978 0.265485 0.186242 0.111883 1.957330 3.212607 -1.422250 0.330345 -1.570893 1.018764 -2.580451 -1.844003 0.382502 -0.311674 -0.411961 0.370769 -0.030703 1.374606 -0.066238 0.059699 -0.238813 -0.103579 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(AdjListNode const&) = -1.408943 0.965842 2.428130 -2.763333 2.611034 1.335760 1.025646 -0.832396 -2.132198 -1.843119 -0.242951 -2.343882 -2.787038 3.975483 -1.720278 0.696491 5.557067 1.502217 -0.780766 -1.382145 3.254463 -1.904062 4.929172 4.503541 -4.137228 -0.385448 2.590226 2.444924 1.414710 2.699171 -1.475289 -2.445177 1.725677 -1.626211 1.552534 -3.134487 0.688667 -0.390815 -0.191137 -5.544104 0.393345 -0.900954 -1.011832 -0.567971 -0.680098 2.923519 4.427360 3.144156 -1.714773 0.112024 2.823855 1.208037 -0.650330 1.061227 0.763091 0.491216 1.903744 1.362770 -1.589978 -0.576061 -0.912382 -3.121006 0.344980 3.869209 4.652919 0.457255 0.538199 1.120064 -0.291903 0.886180 0.554659 0.726662 1.523630 1.305471 2.240882 -4.333417 -0.276241 -7.942881 -1.310082 -9.544108 -2.243072 -2.679716 1.440903 -1.814125 1.260761 0.221757 4.065863 0.720886 1.031627 2.484358 5.480236 -3.426037 -1.564623 -3.011427 -2.076981 1.390300 -2.363512 0.518644 1.764600 -0.379566 -2.981896 -3.234510 1.505849 0.866072 -1.355725 -1.464543 -0.339056 3.609802 -3.751539 -1.495537 -3.569208 -0.302187 -0.317022 -5.916968 0.168902 -2.089773 4.425412 0.441075 -0.878350 -3.222833 0.825091 3.538093 -1.169028 -1.775736 -0.659048 3.783932 1.667845 0.185781 0.443742 -0.272597 0.781147 3.550410 4.154763 -1.794302 -0.860383 0.172771 -3.271248 -0.573681 -3.293268 -0.763186 3.056140 -3.029968 0.462044 2.611883 -2.346655 -1.413518 3.787277 -1.322054 2.825229 10.328729 -0.865705 2.469769 0.976946 -4.333714 1.779293 -0.522244 -0.924338 1.007453 2.786220 1.631869 -4.909601 -3.172605 1.840370 3.790344 2.625598 -4.346051 -1.557805 -1.821750 -0.180202 -0.628351 -0.131074 1.218511 -1.284054 -2.283232 -1.119223 2.288374 5.780532 -2.272939 -4.065503 1.297255 1.038430 -1.020482 -4.192627 -1.092930 -1.066821 0.618394 0.621401 -0.590619 2.331016 4.860031 -8.862065 3.409479 -0.866530 -1.245642 2.743033 0.149883 -1.649151 -4.345677 1.335355 3.904842 3.654757 0.734707 -0.108750 0.294465 -3.582649 -0.407991 0.278336 2.438794 -1.320419 1.648465 0.938990 -3.245974 -3.412017 -1.199314 -0.215582 -1.371886 -0.454767 1.647789 -0.433893 -8.496902 5.042777 -0.939535 -0.934810 0.772118 -0.940365 2.278298 -4.216642 -4.991449 1.808362 -0.361309 -1.422218 -2.358692 0.282384 3.005343 -0.103641 0.685657 -2.158561 -5.127213 2.255090 -1.059051 2.533168 1.342233 1.942476 4.998954 0.006777 -1.228073 -4.097703 -0.701880 1.126399 -0.918002 -2.742837 -1.222293 -0.715092 3.306540 4.718303 -0.752220 -0.469856 -0.323323 3.971211 -4.396800 -1.752715 2.792704 3.139299 -2.183633 1.458040 3.116689 -3.696817 -2.778617 -2.144800 -1.233024 -0.495892 -3.679660 1.099570 -2.381261 1.033013 1.880409 0.402292 -1.289848 1.857003 0.698581 0.764160 -0.045252 3.817565 6.894476 -3.427334 0.128142 -3.289968 2.010524 -5.570349 -4.264560 1.216164 -0.194659 -0.700128 0.663313 0.307597 2.718354 -0.379212 -0.052124 -0.464053 -0.694163 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.250197 -0.312420 -0.016157 -0.436205 0.358296 0.303963 0.200496 -0.419999 -0.692478 0.152724 0.255104 -0.504748 0.006625 0.671382 -0.269244 0.593978 0.842324 0.301669 -0.356560 -0.242889 0.643781 -0.235521 0.874830 0.867453 -0.586932 0.000218 0.060876 0.254367 0.364199 0.313512 -0.343750 -0.058386 0.349756 -0.711347 -0.087861 -0.610076 0.063914 0.299191 0.593359 -0.904961 0.150014 -0.144565 0.337679 -0.085799 -0.133934 0.532057 0.349940 0.537296 -0.102658 0.391721 0.524062 -0.009195 0.069384 0.160233 0.207722 0.335002 0.542724 0.368754 -0.187368 -0.238222 -0.093031 -0.243086 0.195777 0.572104 0.808660 0.049787 -0.025895 0.270585 0.179028 0.097956 0.446677 0.149962 -0.136388 -0.022085 0.274567 -0.762854 0.217437 -1.078705 -0.174961 -1.293830 -0.212344 -0.005131 0.364509 -0.441226 0.449406 0.220265 0.676800 -0.046180 -0.201433 0.298634 0.588370 -0.713925 -0.271763 -0.133121 -0.401302 0.123964 -0.343749 0.078388 0.493257 0.101133 -0.480113 -0.504916 0.325676 0.325185 -0.264081 -0.217177 0.059203 0.381980 -0.591063 -0.506145 -0.104371 0.160963 -0.252585 -0.829879 -0.012550 -0.601063 0.453764 -0.013013 -0.260926 -0.620432 0.100457 0.376538 -0.199640 -0.342428 -0.018292 0.363282 0.260137 0.212700 -0.034516 -0.154104 0.018847 0.850422 0.251495 -0.531167 0.036589 0.097474 -0.363951 0.266843 -0.561775 -0.343968 0.438043 -0.637573 0.194212 0.277248 -0.372599 0.043259 0.902413 0.267317 0.125461 1.506849 0.039992 0.651331 0.461568 -0.588095 0.172303 -0.155683 0.209596 0.377957 0.392253 -0.078208 -0.784229 -0.613044 0.249027 0.629874 0.443379 -0.754104 -0.363289 -0.133164 0.051827 0.176855 -0.049928 0.103303 -0.152136 -0.437728 -0.132653 0.174664 1.160651 -0.347245 -0.046983 0.212653 0.054795 -0.478610 -0.751997 -0.277149 -0.512501 0.186085 -0.100112 0.064870 0.361584 0.751542 -1.208416 0.598998 -0.388731 -0.094358 0.543481 0.158282 -0.491502 -0.569463 -0.108644 0.211772 0.656914 -0.017921 -0.061663 0.464380 -0.617464 -0.057940 -0.028151 0.082756 -0.271141 0.319229 0.321426 -0.423345 -0.273772 0.148763 0.094355 -0.298517 0.036698 0.451864 -0.137137 -1.036517 0.432840 -0.015959 -0.297378 0.259454 0.029401 0.237599 -0.569858 -0.528174 0.339773 0.073911 0.062737 -0.418046 0.089958 0.426132 0.016089 0.200143 -0.475962 -0.732568 0.331410 -0.420126 0.429097 0.264092 -0.128709 0.315565 -0.242962 -0.121019 -0.705308 0.140799 -0.296899 -0.143258 -0.376100 -0.043174 -0.143290 0.614901 0.551224 0.144402 -0.158273 0.110933 0.769644 -0.460142 -0.185559 0.389645 0.514922 -0.444542 0.231107 0.446933 -0.726231 -0.055907 -0.157204 -0.360119 -0.075842 -0.313741 0.603195 -0.034368 0.407627 -0.083969 0.180846 0.049224 0.356147 0.137080 0.064829 0.123545 0.857509 0.709401 -0.188479 -0.102950 -0.554347 0.286343 -0.712031 -0.542476 0.177800 0.156744 -0.631835 0.162005 0.125565 0.724270 0.176510 -0.138091 -0.127067 0.014330 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.362814 0.010140 0.599470 -0.986212 0.836599 0.351879 0.252492 -0.344335 -0.897659 -0.350529 0.040347 -0.846918 -0.490070 1.187104 -0.446791 0.467901 1.581554 0.422681 -0.325404 -0.409645 0.898088 -0.523286 1.363698 1.274709 -1.111170 -0.016784 0.456842 0.755235 0.392106 0.791743 -0.477651 -0.588190 0.338683 -0.601434 0.259307 -0.886630 0.137506 0.131619 0.273151 -1.621124 0.217357 -0.182700 -0.013284 -0.129463 -0.194973 0.607968 1.085198 0.879622 -0.402392 0.247120 0.891989 0.246327 -0.065002 0.275790 0.308041 0.301817 0.790485 0.309557 -0.420680 -0.159357 -0.199096 -0.669593 0.181524 1.008060 1.290816 0.084472 -0.009103 0.321137 0.124313 0.215962 0.414845 0.192625 0.066761 0.219391 0.515402 -1.282026 0.127071 -2.205650 -0.222728 -2.446170 -0.620728 -0.453423 0.598470 -0.348179 0.349332 0.149161 1.135208 0.019447 0.096271 0.556117 1.372317 -0.915908 -0.469063 -0.707177 -0.667837 0.388663 -0.536626 0.000927 0.530103 0.135189 -0.773226 -0.740519 0.558388 0.239628 -0.432510 -0.308444 0.003132 0.999182 -1.033810 -0.561833 -0.686973 0.298930 -0.119722 -1.548160 -0.024004 -0.707470 0.965816 0.050697 -0.342413 -0.931849 0.218179 0.804733 -0.450407 -0.334701 -0.369229 0.953001 0.483548 0.153252 0.047436 -0.088325 0.263254 1.117555 0.776196 -0.702148 -0.130264 0.147127 -0.665871 -0.028497 -0.937220 -0.356182 0.615014 -0.927610 0.184615 0.616156 -0.679795 -0.222015 0.971944 -0.071303 0.569655 2.962912 -0.177035 0.826619 0.434389 -1.094876 0.518979 -0.042378 -0.088265 0.350471 0.667945 0.291557 -1.315357 -0.946286 0.505100 1.061739 0.782811 -1.221343 -0.551625 -0.430280 -0.092147 0.101133 -0.028864 0.277058 -0.365282 -0.586445 -0.290945 0.521897 1.800240 -0.478674 -1.064705 0.376501 0.286778 -0.477521 -1.218444 -0.337321 -0.561771 0.189358 0.053433 -0.070498 0.692938 1.386648 -2.630537 1.013112 -0.197757 -0.314584 0.921102 0.072913 -0.529862 -1.352773 0.062427 0.846577 1.181567 0.059359 -0.006623 0.271424 -0.984239 -0.108884 0.109424 0.458550 -0.416575 0.428416 0.293187 -0.828318 -0.677806 -0.192507 -0.148877 -0.266594 -0.208917 0.571255 -0.089801 -2.275770 1.177304 -0.157756 -0.276520 0.339341 -0.273509 0.686925 -1.087638 -1.164630 0.502540 -0.029023 -0.282969 -0.610436 0.103405 0.789494 -0.106397 0.295176 -0.645743 -1.281702 0.551268 -0.488566 0.700534 0.458586 0.202498 0.982119 0.032237 -0.266958 -1.020199 -0.093621 0.136722 -0.227254 -0.667514 -0.248055 -0.232198 0.929708 1.180787 -0.001913 -0.206291 -0.078785 1.116467 -1.037803 -0.426662 0.735761 0.519794 -0.719156 0.426161 0.862225 -1.104798 -0.482305 -0.577893 -0.360597 -0.158142 -0.854021 0.528858 -0.373546 0.387740 0.332921 0.095798 -0.298804 0.611113 0.194822 0.121373 0.032462 1.256278 1.650432 -0.663186 0.046660 -0.962677 0.552577 -1.448332 -1.098747 0.282725 0.030326 -0.572096 0.187066 0.082365 0.902031 -0.045035 0.092454 -0.167654 -0.054788 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.209514 0.000546 0.584705 -0.544692 0.373868 0.045069 0.177068 -0.188427 -0.527339 -0.125767 -0.075136 -0.255568 -0.172119 0.678680 -0.237087 0.346741 1.057743 0.473016 -0.182408 -0.387443 0.641150 -0.820192 0.843543 0.926503 -0.759559 0.023789 0.479796 0.618933 0.449765 0.682759 -0.600317 0.010485 0.186320 -0.588325 0.399342 -0.889112 0.102082 0.164214 0.125981 -1.237677 0.102896 -0.273538 0.225205 -0.067885 -0.086035 0.625417 0.635638 0.544373 -0.263885 0.199361 0.528946 -0.047665 0.083496 0.180242 0.272243 0.526919 0.850805 0.463467 -0.262694 0.040397 -0.099904 -0.740317 0.402825 0.641918 0.892457 0.000728 0.074065 0.187675 0.152710 0.044050 0.269501 0.134895 -0.122488 0.058085 0.353471 -1.322138 0.397887 -1.606738 -0.171736 -1.757947 -0.432042 -0.480689 0.230169 -0.563831 0.431446 0.245831 0.757499 -0.025510 0.205426 0.050902 0.761364 -0.787676 -0.264445 -0.425246 -0.372644 0.231501 -0.381697 -0.154489 0.545478 -0.059837 -0.444449 -0.595558 0.764186 0.323852 -0.309964 -0.074493 -0.073327 0.688895 -0.685865 -0.661371 -0.627559 -0.148100 -0.331860 -0.905715 0.569387 -0.604715 0.793472 0.058891 -0.129603 -0.788441 0.111392 0.771077 -0.194794 -0.370497 -0.357622 0.799486 0.253700 -0.089786 0.051153 -0.189136 -0.044659 0.611316 0.843780 -0.444707 -0.173001 0.306353 -0.867421 -0.141198 -0.751703 -0.335871 0.647065 -0.642244 -0.246902 0.329754 -0.444240 0.138150 1.229761 0.035455 0.472101 1.965808 -0.061399 0.410648 0.196635 -0.696968 0.600127 0.125064 -0.008044 0.380473 0.570256 0.128156 -1.415142 -0.620485 0.059344 0.658858 0.476878 -0.857431 -0.781895 -0.524306 -0.068538 0.282177 -0.078444 0.116876 -0.301067 -0.433401 -0.165039 0.033661 1.257520 -0.442144 -0.614534 0.130008 -0.225032 -0.687215 -1.366992 -0.233207 -0.513200 0.101140 -0.504698 -0.106983 0.391176 0.823455 -1.773661 0.724889 -0.538853 -0.388581 0.859228 -0.148173 -0.187374 -1.234150 0.117758 0.479216 0.845006 -0.004304 -0.122676 0.305344 -0.684573 -0.065952 -0.139052 0.420005 -0.337690 0.347526 0.238351 -0.648920 -0.427608 -0.115839 0.085765 -0.419222 0.050019 0.309197 -0.113240 -1.400276 0.680312 -0.183962 -0.198727 0.566156 0.038260 0.159891 -0.752280 -0.734490 0.304481 0.297218 0.101449 -0.627967 0.013228 0.643661 -0.272704 -0.212569 -0.452694 -0.968962 0.161106 -0.537304 0.340067 0.303731 0.109183 0.726435 0.368900 -0.175309 -0.790542 0.340237 -0.448029 -0.281375 -0.293389 -0.486663 -0.192156 0.647291 0.953496 0.079566 0.299621 0.107462 0.924702 -0.791605 -0.398203 0.479545 0.417261 -0.304905 0.200387 0.533081 -0.838992 -0.486655 -0.270984 -0.461963 0.187642 -0.416924 0.495783 -0.458560 0.240433 0.199455 0.087191 -0.136736 0.438677 0.109891 0.115426 -0.062002 0.909861 1.291356 -0.449179 -0.046974 -0.477583 0.276334 -0.907332 -0.408268 -0.042997 0.343186 -0.378346 0.274527 0.366942 0.616475 0.055683 -0.058869 0.051271 -0.331172 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.068343 -0.049350 0.327673 -0.239152 0.125139 -0.141074 0.086012 -0.032031 -0.314019 -0.069054 -0.056657 -0.127970 -0.045539 0.308974 -0.073427 0.182437 0.513372 0.318417 -0.072648 -0.237959 0.235581 -0.558316 0.378619 0.489831 -0.356580 0.073095 0.131307 0.368299 0.242021 0.415072 -0.304539 0.101702 0.042060 -0.246598 0.264782 -0.517152 0.025042 0.185733 0.000000 -0.711706 0.053835 -0.022835 0.355122 -0.009410 0.015952 0.369774 0.254250 0.248060 -0.088086 0.199576 0.227714 -0.104855 0.178013 0.089251 0.162833 0.313226 0.547122 0.111264 -0.165402 0.109695 -0.019677 -0.504366 0.247397 0.269000 0.448916 -0.042544 0.007146 0.005101 0.108475 0.022700 0.196530 0.078605 -0.159112 -0.054400 0.139725 -0.637285 0.349866 -0.720923 -0.026713 -0.937828 -0.248997 -0.235822 0.251939 -0.131255 0.183997 0.137151 0.386093 -0.049068 0.111852 -0.099547 0.286044 -0.357047 -0.126343 -0.127122 -0.140789 0.155231 -0.165554 -0.178461 0.301742 0.062273 -0.181509 -0.205885 0.524608 0.125964 -0.180626 0.116043 -0.057777 0.329225 -0.413259 -0.370325 -0.329722 -0.086349 -0.151599 -0.356290 0.487111 -0.324033 0.272342 0.058136 -0.054093 -0.305657 0.055584 0.288668 -0.081638 -0.085029 -0.483415 0.425924 0.020913 -0.111021 0.037234 -0.070153 -0.085181 0.206695 0.338560 -0.251315 -0.093343 0.270617 -0.443617 -0.067655 -0.386646 -0.233135 0.319916 -0.340805 -0.208853 -0.003439 -0.228250 0.136330 0.488935 0.092939 0.199940 0.742660 0.009887 0.181637 0.121518 -0.259173 0.387054 0.138723 0.047676 0.246321 0.310248 0.010965 -0.605991 -0.299940 -0.081226 0.321006 0.227934 -0.323939 -0.472534 -0.268581 -0.013979 0.264793 0.012587 0.022732 -0.137566 -0.213771 -0.054349 -0.140588 0.594142 -0.128227 -0.180505 -0.001037 -0.223329 -0.452421 -0.763602 -0.082162 -0.281501 0.018733 -0.477754 -0.042975 0.133835 0.366547 -0.869651 0.409884 -0.316467 -0.179275 0.490629 -0.180779 -0.041567 -0.802976 -0.004318 0.136503 0.489648 -0.062623 -0.074767 0.212161 -0.346879 -0.038565 -0.127722 0.190926 -0.209712 0.199165 0.095733 -0.281233 -0.119410 -0.093779 0.081727 -0.199144 0.025921 0.152765 0.091054 -0.573358 0.218503 -0.129217 -0.131091 0.338870 0.122461 -0.041065 -0.348573 -0.262753 0.078362 0.185073 0.013017 -0.390962 -0.026251 0.302395 -0.277292 -0.280919 -0.164337 -0.358034 0.079029 -0.359376 0.101109 0.184099 -0.055592 0.264728 0.450804 -0.101311 -0.278533 0.319541 -0.430423 -0.299505 0.000347 -0.149614 -0.130877 0.269828 0.519165 0.138427 0.243793 0.147936 0.522089 -0.253330 -0.278278 0.238675 -0.028910 -0.027611 0.184261 0.258346 -0.465557 -0.214916 -0.162261 -0.250576 0.218216 -0.090402 0.348551 -0.254361 0.101494 0.071585 0.011980 -0.099935 0.260052 0.036863 -0.031399 -0.072096 0.563364 0.528837 -0.128952 0.077711 -0.174410 0.072315 -0.384071 0.000600 -0.176591 0.320344 -0.253798 0.182131 0.229454 0.291805 0.083693 -0.052454 0.003785 -0.171510 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.700881 0.466389 0.670666 -1.330875 1.637208 1.460328 0.592806 -0.519923 -1.199143 -0.621853 -0.169113 -1.458147 -1.148841 2.255574 -0.646911 1.158170 2.896693 0.638252 -0.405439 -0.092519 1.652891 -0.607581 2.491878 2.081547 -1.773915 -0.092616 0.937619 0.672150 -0.275357 1.749457 -0.962972 -2.079066 0.930004 -1.246383 0.257225 -1.401111 0.199713 -0.013467 0.663851 -2.866030 0.309495 0.173088 -0.394723 -0.568495 -0.523575 -0.124850 2.328582 1.611977 -0.560366 0.145070 1.032232 0.654676 -0.354355 0.576685 0.681155 0.832501 0.404376 0.199509 -1.065163 -0.463844 -0.523046 -0.966698 0.044099 1.771723 2.123578 0.229227 0.108260 0.807223 -0.495860 0.313925 0.212717 0.334605 0.447963 0.533158 0.931865 -1.864501 -0.451128 -3.144184 -0.649088 -3.590737 -1.235342 -1.023190 0.442767 0.063450 1.229715 -0.241921 2.084149 -0.286063 0.423296 1.138049 2.891135 -2.121183 -0.861823 -1.700010 -1.027809 0.467030 -1.055913 -0.090396 0.628449 -0.743624 -1.672953 -1.924431 0.766453 0.827725 -0.625420 -1.205417 0.076950 1.809245 -1.728881 -1.450514 -1.534890 0.225187 -0.693208 -2.963754 -0.359776 -0.597849 0.920417 0.460178 -0.678681 -2.416767 0.646865 1.840408 -0.717568 -1.515662 0.148351 1.781168 0.886831 0.162035 0.460310 -0.223837 0.534051 2.596813 1.857488 -0.901152 -0.140096 0.046878 -1.051675 -0.115240 -1.282441 -0.683961 0.264994 -1.872524 0.118672 1.785966 -1.265114 -0.073175 1.071420 -0.412979 1.243545 5.484568 -0.598531 1.433784 0.510477 -2.561541 1.229289 -0.513286 -0.697564 0.045719 1.281203 0.898594 -2.572748 -1.584999 1.176412 1.992889 1.486819 -1.771921 -0.746839 -0.986451 0.003424 -0.202643 0.000000 0.693059 -0.232651 -1.495471 -0.529130 1.191721 3.628801 -1.344337 -1.829006 1.124558 0.812038 -0.404963 -1.958560 -0.745530 -1.564378 0.149643 0.521042 -0.452775 1.117299 2.543617 -3.707526 1.826462 -0.669478 -0.994226 1.510068 0.219251 -0.994515 -1.582482 0.246686 2.090444 2.104056 0.187875 0.472746 -0.133059 -1.714352 -0.201286 0.156213 0.951286 -0.603377 0.891129 0.147351 -2.023479 -1.528942 -0.252873 -0.405361 -1.286364 -0.407029 0.799809 0.549090 -3.557841 2.596960 0.091183 -0.345712 0.784033 -0.279264 1.523501 -1.917902 -2.646273 1.240652 -0.197676 -0.255989 -0.251929 0.081605 1.434818 0.467104 0.320134 -0.935494 -2.627897 1.052611 0.118690 1.560838 0.734808 0.799149 1.883244 0.055964 -0.904854 -1.666799 -1.185401 0.526551 -0.314438 -1.415567 -1.101168 -0.574257 2.050021 2.127466 -0.006291 -0.768206 -0.833248 1.887469 -2.001199 -0.102876 1.665375 0.914805 -1.542880 -0.156454 1.897358 -1.639181 -1.128831 -0.918733 0.186785 -0.669794 -1.859066 0.268866 -1.013089 0.450132 0.839438 -0.096458 -0.605323 0.621141 0.566209 0.297270 -0.111285 1.944362 1.886926 -1.476144 0.043238 -1.621053 0.843381 -2.733182 -2.229894 0.732365 0.018152 -0.956669 0.139898 0.359796 1.325942 -0.432543 0.443110 -0.089936 -0.742804 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.125070 -0.017283 0.347153 -0.320797 0.220009 -0.034007 0.109178 -0.113629 -0.344677 -0.097803 -0.051052 -0.158735 -0.085739 0.413033 -0.148017 0.235732 0.644494 0.323866 -0.092514 -0.256502 0.358851 -0.549455 0.517825 0.576105 -0.451948 0.029425 0.257201 0.391171 0.261158 0.453045 -0.353057 -0.000793 0.118551 -0.345568 0.246473 -0.575376 0.063278 0.157139 0.067639 -0.780729 0.069703 -0.146616 0.228612 -0.031548 -0.044365 0.374011 0.360514 0.330892 -0.131797 0.179035 0.317992 -0.015710 0.084894 0.122658 0.175083 0.342377 0.538412 0.170217 -0.176330 0.049854 -0.056525 -0.496842 0.247949 0.378709 0.551344 -0.013751 0.047377 0.092846 0.066557 0.037678 0.197184 0.077622 -0.125013 0.006744 0.185310 -0.804710 0.278690 -0.957089 -0.105010 -1.113887 -0.267001 -0.291263 0.174422 -0.256438 0.261926 0.198883 0.465385 -0.016127 0.125830 -0.005121 0.439344 -0.478345 -0.166884 -0.215058 -0.207503 0.152154 -0.232405 -0.125418 0.305301 0.020263 -0.257080 -0.346320 0.514709 0.188698 -0.191295 -0.023592 -0.051048 0.410176 -0.487907 -0.424814 -0.387171 -0.090399 -0.205674 -0.521507 0.420224 -0.374978 0.463452 0.043439 -0.076066 -0.462351 0.075828 0.446621 -0.108731 -0.197655 -0.320746 0.461745 0.108868 -0.072307 0.032484 -0.115461 -0.055816 0.379049 0.471624 -0.287580 -0.109420 0.221103 -0.515094 -0.083108 -0.460706 -0.232462 0.362949 -0.419850 -0.139158 0.156262 -0.277418 0.075970 0.686525 0.033037 0.284759 1.071349 -0.026221 0.243052 0.138371 -0.411301 0.345990 0.069634 0.020978 0.244755 0.357598 0.050649 -0.763063 -0.384765 0.004059 0.393782 0.294751 -0.459855 -0.513625 -0.327301 -0.020296 0.229143 -0.041580 0.067747 -0.199319 -0.272016 -0.093586 -0.040920 0.759106 -0.220020 -0.260517 0.070795 -0.158778 -0.460760 -0.837128 -0.139434 -0.331366 0.060099 -0.362561 -0.061422 0.201422 0.495868 -1.081061 0.459985 -0.350831 -0.209640 0.499969 -0.113865 -0.098760 -0.810152 0.046268 0.262754 0.541187 -0.038360 -0.017711 0.214953 -0.419292 -0.045293 -0.110561 0.258058 -0.220546 0.209727 0.159268 -0.409801 -0.238919 -0.046027 0.074572 -0.257142 0.042239 0.190889 0.019575 -0.836620 0.378416 -0.135008 -0.133891 0.372848 0.074862 0.091893 -0.455051 -0.413052 0.172626 0.176297 0.059081 -0.382598 0.008921 0.391827 -0.231477 -0.181312 -0.230807 -0.512597 0.082048 -0.335736 0.168610 0.189304 0.036140 0.402011 0.242172 -0.109285 -0.432195 0.266759 -0.347971 -0.257461 -0.117317 -0.214183 -0.119466 0.388730 0.606048 0.102171 0.182017 0.140939 0.590381 -0.426720 -0.252417 0.304569 0.198989 -0.148301 0.158907 0.330067 -0.538390 -0.296595 -0.166611 -0.249920 0.157829 -0.222652 0.335436 -0.286453 0.148286 0.112219 0.058611 -0.107596 0.291216 0.068922 0.048838 -0.052655 0.593790 0.722360 -0.223519 0.009328 -0.265588 0.117433 -0.537675 -0.192866 -0.080630 0.276818 -0.258156 0.191775 0.201414 0.383876 0.044394 -0.005715 0.028398 -0.213923 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::push_back(int const&) = -1.488296 2.209396 2.806934 -3.241036 4.528690 5.197904 1.367617 -1.631541 -2.502893 -0.856619 -0.595220 -4.371124 -3.398611 5.325328 -1.862577 2.081085 6.818100 1.019087 -1.381727 0.429257 3.260996 0.042155 6.096627 4.869866 -4.187095 -0.061227 2.059236 1.371922 -1.388933 5.390002 -3.851879 -5.731530 1.918825 -1.676357 0.573276 -2.285403 0.006429 -1.398535 1.245163 -6.406137 0.621556 1.183278 -1.744517 -1.489393 -0.770155 -0.820729 6.753774 3.598662 -0.535907 -0.846302 1.867698 1.773730 -0.629635 1.230631 2.554941 1.912427 2.943737 0.875732 -2.697065 -1.449352 -1.667277 -1.309277 -0.899919 4.499905 4.844045 1.236053 -0.027620 0.866429 -1.322716 0.428888 -0.243806 1.020909 1.694256 2.923762 1.718573 -2.328511 0.110829 -5.123368 -1.359456 -5.501746 -2.960110 -2.592317 0.143201 0.848180 2.953812 -1.938777 5.121744 -0.839873 1.128880 1.372223 7.754749 -5.365171 -1.953082 -3.920720 -2.548949 0.408108 -2.254686 0.112584 0.657615 -2.570354 -4.215681 -4.535453 1.452743 1.962247 -1.459290 -1.027559 0.205625 4.271033 -3.277130 -2.703136 -3.693684 0.027566 -1.418102 -7.399707 -2.467038 -0.939105 0.933820 1.095935 -2.077304 -6.315252 2.069070 4.710089 -2.125734 -3.572406 0.080720 4.990586 2.492674 0.205521 0.846472 -0.744476 2.029024 5.759458 3.989449 -1.908070 0.077886 -0.711243 -2.415777 -0.482798 -2.464867 -0.860678 -0.841985 -3.852930 -0.048823 4.986379 -2.988071 1.148457 0.275146 -1.011695 2.915617 14.086500 -2.489548 3.444175 0.316198 -6.725106 3.624117 -0.853216 -2.376408 -1.042663 2.428543 3.243279 -6.957620 -3.643239 3.791635 5.012904 3.357909 -4.423426 0.396644 -2.223115 -0.299131 -1.366302 0.623584 1.668114 -0.441749 -3.525887 -1.642145 3.095851 9.402398 -3.590319 -7.305701 3.008475 0.754893 0.457112 -3.147749 -1.663725 -2.500464 0.468385 1.563809 -1.234229 3.103738 6.177850 -8.593147 4.566907 -0.995941 -4.017285 5.641087 -0.228247 -2.150943 -0.764659 0.722665 5.785416 4.660585 1.436650 -0.440784 -1.336113 -4.059974 -0.657838 0.457899 2.642337 -1.591348 2.205637 0.991014 -5.625207 -4.018399 -2.734092 -0.677396 -3.188118 -2.541244 1.817763 0.225569 -9.091257 7.118601 1.667735 -0.316306 1.153490 -1.355314 2.479629 -4.394727 -6.687356 2.534790 -1.070022 -0.695729 0.036705 -0.094805 2.803695 2.035534 2.102171 -3.536174 -6.700076 2.785275 0.874931 4.363958 1.746031 2.793885 3.881286 2.031870 -2.038433 -3.591762 -3.650272 2.958132 0.132035 -3.794366 -2.210800 -1.845160 4.928961 4.861932 -0.657164 -1.525100 -4.139291 3.869565 -4.136594 0.217165 3.860022 1.107575 -4.296488 -1.670940 4.420330 -2.629938 -3.060097 -2.105347 -0.812170 -2.968936 -4.820964 -0.152130 -2.595932 0.727701 2.628217 -0.843020 -2.177772 0.803908 0.729888 0.101533 0.344635 4.236406 3.794279 -3.514886 1.275118 -4.126857 2.987688 -6.648024 -5.692928 2.588493 -1.762169 -2.511378 -0.509155 0.970113 2.743871 -1.422226 0.954872 -0.056791 -1.618424 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = -1.597232 1.912867 3.369801 -4.068448 4.858931 4.824190 1.416533 -1.617534 -3.319078 -1.216159 -0.271961 -5.503812 -3.913333 5.755202 -2.221657 1.679450 7.438982 1.156149 -1.804165 0.018657 3.213906 0.498228 6.731911 5.600149 -4.789446 0.030487 1.406027 2.133313 -0.765893 5.438834 -3.607623 -5.744216 1.837312 -0.901814 0.761644 -2.313556 -0.024489 -1.337367 0.834723 -7.063951 0.850011 1.683772 -1.316156 -1.363288 -0.460263 0.380450 7.144818 3.993566 -0.685358 -0.747944 2.583530 1.943286 -0.291550 1.292180 2.520436 1.114195 3.911836 0.568620 -2.837908 -1.621905 -1.697314 -1.599802 -1.183675 4.989980 5.510607 1.351087 -0.332733 0.344990 -0.630256 0.771478 0.354604 1.191739 1.981132 3.065960 1.859499 -1.604476 0.661049 -5.638461 -1.041138 -6.766095 -3.260229 -2.440355 1.610398 1.346419 2.110662 -2.342446 5.659224 -0.630339 0.873567 1.648899 8.163629 -4.986153 -2.187410 -3.860255 -2.912345 0.901381 -2.395138 0.297798 0.807597 -1.464009 -4.511870 -3.853551 1.266550 1.311728 -1.783723 -0.059135 0.266887 4.525387 -3.798421 -1.869247 -3.681657 0.848103 -0.335694 -8.076333 -2.959435 -1.539881 1.096262 0.858729 -2.370294 -5.438921 2.060896 3.985560 -2.569557 -2.436076 -1.647261 5.482565 2.549598 0.432450 0.638263 -0.412035 2.345138 5.478516 3.206689 -2.540687 0.075612 -0.715878 -2.292371 -0.245402 -2.961318 -0.782526 -0.230183 -3.939032 0.434183 4.512939 -3.301650 0.618396 -0.715983 -0.803871 2.820692 14.706008 -2.513531 4.092258 0.879005 -6.599468 3.681489 -0.534508 -2.111764 -0.728350 2.463240 3.300014 -6.276515 -4.112544 4.144315 5.559949 3.690735 -4.913688 1.217161 -1.710539 -0.340658 -1.528772 0.945227 1.705163 -0.547661 -3.559680 -1.802907 3.474219 9.590155 -3.003414 -8.196621 2.859649 1.004511 0.661863 -2.661347 -1.590006 -1.669269 0.636971 1.781836 -0.886984 3.567175 6.860611 -10.050923 5.056002 -0.012834 -3.654510 6.263132 -0.409214 -2.575873 -1.306656 0.506766 5.799368 5.176669 1.500176 -1.031746 -1.002976 -4.527577 -0.778175 0.755231 2.619405 -1.873084 2.300752 1.343065 -5.228249 -3.999410 -3.703722 -0.780667 -2.251735 -3.189627 2.351249 0.034120 -10.243489 7.376995 1.498105 -0.616989 0.371307 -1.951624 2.430466 -4.837878 -6.683971 2.242163 -1.576166 -1.922822 -0.834291 0.060985 2.819697 1.666430 2.848231 -4.065974 -6.709836 3.725903 0.228380 4.720225 2.071908 2.530734 3.891671 2.861029 -1.796971 -3.677549 -3.542385 3.504436 -0.077664 -4.047197 -0.909428 -1.965207 4.799122 5.224058 -0.952160 -1.719576 -4.088129 4.208000 -3.909497 -0.542660 3.962883 0.453382 -4.373032 -0.476168 4.625562 -3.160181 -2.889675 -2.841543 -1.543007 -3.105430 -5.063680 0.504362 -2.335947 1.039508 2.745792 -0.834294 -2.601323 1.251891 0.575071 -0.448380 0.652993 5.154537 4.733987 -3.363747 2.003327 -4.816016 3.550670 -7.206506 -6.050973 2.752775 -2.484751 -2.913911 -0.513427 0.533582 3.266975 -1.233547 0.778345 -0.746412 -0.509570 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::size() const = -0.389187 0.478416 0.476187 -1.346852 1.442644 1.442268 0.392639 -0.832331 -0.953838 -0.035071 0.195885 -2.039872 -0.765643 1.182347 -0.694582 0.751905 1.850018 -0.100356 -0.689597 0.023328 0.636284 1.033674 2.015987 1.598727 -1.221540 0.103309 -0.035486 0.351473 -0.373156 0.878272 -1.034814 -1.556375 0.421719 -0.270732 -0.220379 -0.028059 -0.148506 -0.575312 0.906443 -1.603693 0.316695 0.342675 -0.067023 -0.407649 -0.159470 -0.188807 1.980865 1.072141 0.067279 -0.295927 0.921885 0.745777 -0.001421 0.313823 0.574280 0.165245 1.239472 -0.249876 -0.555406 -0.926244 -0.364464 0.472545 -0.384809 1.436055 1.273720 0.546380 -0.366347 0.220669 0.289470 0.080522 0.175795 0.520949 0.202125 1.118973 0.218917 -0.225121 0.542250 -1.002958 -0.186349 -0.920279 -0.969282 -0.256797 0.278606 0.613600 0.792408 -0.382394 1.611618 -0.280376 0.118925 0.297808 1.901216 -1.389790 -0.542852 -0.645162 -0.886249 0.037235 -0.404616 0.355662 -0.161458 0.048471 -1.311552 -0.659009 0.153734 0.377784 -0.524477 0.043283 0.471301 0.497233 -0.646551 -0.376810 -0.476212 0.716873 0.053221 -2.210860 -1.164349 -0.431917 0.030941 -0.099283 -0.774705 -1.650647 0.388699 0.689929 -0.905562 -0.448555 -0.783184 1.005027 1.026922 0.359981 0.216825 -0.121940 0.911070 1.933756 0.106542 -0.897974 0.103456 -0.466801 -0.225096 0.144872 -0.455206 -0.162683 -0.532311 -1.080502 0.718767 1.391977 -0.821404 0.213261 -0.630957 -0.039533 0.409409 3.720589 -0.765649 1.485858 0.542336 -1.687855 0.577503 -0.641023 -0.547651 -0.406623 0.333835 0.866110 -1.284489 -1.159790 1.405427 1.512035 0.931380 -1.099915 0.963538 0.186728 -0.106146 -0.458890 0.244429 0.359832 0.105866 -1.012686 -0.501133 1.236773 2.801790 -0.336260 -1.493612 0.897312 0.466407 0.530650 0.018622 -0.581803 -0.604449 0.266437 0.943496 0.158539 1.029659 1.825272 -2.275595 1.111616 0.228725 -0.795003 1.727448 0.119140 -1.064893 0.403617 -0.050393 1.404118 1.146238 -0.005507 -0.159081 -0.273250 -1.026824 -0.246616 0.280506 0.384692 -0.649800 0.591116 0.656332 -1.480716 -0.758053 -0.902397 -0.197274 -0.299720 -0.986705 0.783315 -0.134251 -2.432050 1.947327 0.719998 -0.294453 -0.116674 -1.079580 0.765915 -1.094543 -1.288024 0.645484 -0.647551 -0.116844 0.204470 0.098485 0.474339 0.555362 1.548636 -1.501116 -1.355779 1.087325 0.344866 1.454408 0.622893 0.498582 0.249394 0.029963 -0.196935 -0.766867 -1.137214 0.833939 0.426976 -1.372166 0.382355 -0.699816 1.216895 1.078725 -0.544015 -0.740627 -0.930924 0.687971 -0.849116 0.160915 0.788844 -0.024262 -1.667366 -0.287159 1.050183 -0.552447 -0.335367 -0.792596 -0.391905 -1.246050 -1.351774 0.260103 -0.156889 0.386134 0.691252 -0.395046 -0.489609 0.295373 0.033425 -0.108937 0.511914 1.277466 0.584042 -0.144115 0.429969 -1.501886 0.883511 -1.805206 -1.860049 1.145674 -1.061442 -1.231151 -0.427587 -0.150853 1.218390 -0.414508 0.267374 -0.365854 0.326753 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::max_size() const = -0.259213 0.088588 0.536903 -0.656534 0.553188 0.014424 0.177284 -0.171670 -0.544391 -0.437094 0.005716 -0.587248 -0.552758 0.772236 -0.362562 0.148416 0.947700 0.235316 -0.190841 -0.359704 0.606270 -0.391341 0.928095 0.779841 -0.857746 -0.023515 0.276152 0.664607 0.415877 0.560691 -0.127479 -0.339648 0.220207 -0.103546 0.332483 -0.585427 0.194842 0.090826 -0.136221 -1.055124 0.094897 -0.011928 0.059960 -0.031306 -0.080088 0.741767 0.718734 0.647059 -0.379296 0.123958 0.699655 0.237305 -0.015698 0.236214 0.025869 -0.121740 0.548988 -0.060382 -0.324427 -0.111957 -0.094563 -0.729054 0.102344 0.731930 0.964741 0.005086 0.083383 0.208951 0.023166 0.251469 0.256298 0.161404 0.151958 0.151548 0.412244 -0.642297 0.119854 -1.454017 -0.143733 -1.963120 -0.442577 -0.446301 0.525433 -0.006655 0.059487 0.088617 0.841202 0.236278 0.068366 0.502040 0.928762 -0.480458 -0.268771 -0.518551 -0.462150 0.359882 -0.463879 0.018962 0.241986 0.344820 -0.492590 -0.361859 0.257562 -0.017820 -0.295644 -0.088765 -0.145492 0.645184 -0.907718 -0.156897 -0.527290 0.148146 0.100544 -1.093672 0.120306 -0.499049 0.803165 -0.066646 -0.006716 -0.275788 0.090724 0.435764 -0.252794 -0.014337 -0.743127 0.677722 0.270155 0.029514 0.060304 0.006742 0.119788 0.489858 0.483034 -0.447779 -0.282462 0.089303 -0.459424 -0.014865 -0.651900 -0.109323 0.647632 -0.599692 0.146972 0.281615 -0.387322 -0.396396 0.344664 -0.233775 0.479840 1.584591 -0.057959 0.492364 0.281164 -0.675927 0.264021 -0.014758 -0.100258 0.345169 0.431684 0.173190 -0.484239 -0.672728 0.345955 0.680425 0.496591 -0.693269 -0.244363 -0.200049 -0.035541 -0.034057 -0.008622 0.275841 -0.341879 -0.381905 -0.220413 0.298616 0.952613 -0.130419 -0.561700 0.296175 0.237273 -0.352329 -0.674901 -0.207747 -0.043469 0.062084 0.023712 -0.047862 0.424538 0.937094 -1.803808 0.681359 0.078261 -0.057499 0.445632 -0.157867 -0.304425 -1.065722 0.122012 0.623671 0.698302 -0.042456 0.019041 0.152392 -0.698822 -0.008236 0.056788 0.344228 -0.258784 0.264918 0.193483 -0.445738 -0.576901 -0.275881 -0.085756 0.030876 -0.127427 0.354735 0.025469 -1.589597 0.842330 -0.367849 -0.209100 0.062147 -0.146756 0.434050 -0.751624 -0.759341 0.262907 -0.131567 -0.482105 -0.657141 0.142680 0.525071 -0.242246 0.077635 -0.357783 -0.737080 0.437362 -0.401668 0.309009 0.276659 0.273800 0.763146 0.185202 -0.183588 -0.684213 0.045242 0.118034 -0.309548 -0.376129 0.212637 -0.092545 0.518615 0.843821 -0.081261 -0.086626 0.171769 0.796014 -0.553686 -0.553060 0.517542 0.245151 -0.391108 0.567248 0.577418 -0.718202 -0.446881 -0.559411 -0.206222 -0.025878 -0.607311 0.376495 -0.282770 0.193513 0.350627 0.105909 -0.360763 0.487070 0.127923 -0.008727 -0.083583 0.982992 1.250875 -0.473903 0.174269 -0.619166 0.309363 -1.022347 -0.675877 0.142603 -0.016632 -0.138520 0.206719 -0.058998 0.597782 0.005966 0.039726 -0.140068 -0.009580 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.531006 0.764457 1.172356 -4.640936 4.621065 5.505256 1.284710 -2.829308 -3.628428 0.417708 0.769429 -6.225003 -1.863111 4.692148 -2.105362 3.140234 6.288677 -0.034767 -2.515682 0.581717 3.047317 3.233145 6.237127 5.086536 -3.854653 0.068352 -0.322329 0.726107 -1.255598 3.181488 -3.226144 -5.379427 1.489448 -1.711937 -1.081256 -0.709331 -0.328138 -0.943758 3.686016 -5.466540 1.297294 1.482513 -0.503152 -1.647506 -0.655803 -1.632580 5.882142 3.523135 0.026416 -0.816792 2.783179 2.403297 -0.511660 0.941855 2.136096 1.256070 3.061652 -0.195952 -1.855002 -3.065323 -1.260083 2.115249 -0.838118 4.545900 4.243769 1.710176 -0.977341 1.028592 0.874952 0.215554 0.840799 1.316345 0.582790 2.861826 0.847626 -1.074933 0.876111 -3.596977 -0.461410 -2.683081 -2.801433 -0.259615 0.943532 1.896368 2.792035 -2.116685 5.015189 -1.534086 -0.161107 1.651625 6.277671 -4.658605 -1.788272 -2.739882 -3.338717 0.031126 -1.342217 0.799359 -0.281161 -0.648482 -4.381463 -2.904635 0.183462 1.794241 -1.556683 -0.709399 1.692162 2.330189 -1.950874 -1.959118 -0.703612 3.086168 -0.475135 -7.073139 -4.206211 -1.955314 -0.611838 -0.271809 -2.743651 -5.777416 1.312080 2.579209 -3.018960 -2.209335 -1.409278 3.423306 3.440943 1.287636 0.381392 -0.713524 2.554206 6.635345 0.284434 -3.146534 0.811431 -1.407411 -0.454775 0.659606 -1.906265 -0.873190 -1.655749 -3.594766 1.429151 4.719967 -2.723160 1.199629 -1.203675 0.324906 1.178195 13.652124 -2.320397 5.029430 1.896458 -5.664058 2.290404 -1.587466 -1.499928 -1.104420 1.287643 2.345628 -5.429121 -3.981261 4.572688 4.875496 3.246151 -3.644774 2.450712 0.111373 -0.602698 -1.380101 0.618408 1.006662 0.205059 -3.577672 -1.654469 3.937146 9.619851 -1.631928 -4.820271 3.090550 2.205468 1.142114 -0.295587 -2.065386 -2.866125 0.935052 3.091132 0.132487 3.809260 6.151616 -7.298731 3.854814 0.288894 -2.644968 5.277070 0.676294 -3.709512 1.118204 -0.641103 4.454913 4.291034 0.007163 -0.079069 -0.479233 -3.502135 -0.646660 0.884680 0.938198 -1.984700 1.843467 1.830625 -4.772302 -2.320269 -2.039813 -1.321101 -1.729480 -3.125206 2.420716 -0.160698 -7.243956 6.166013 2.620781 -0.482506 0.215090 -2.976567 2.979510 -3.556363 -4.549856 2.505236 -1.339198 0.033360 0.871240 0.427416 2.087772 2.083041 4.825959 -4.829830 -5.423369 3.434890 0.994850 5.067698 1.819113 1.076078 0.728717 0.047450 -0.660607 -2.984158 -4.566187 2.767064 1.878478 -4.665564 0.189090 -2.185328 4.424205 3.023969 -1.332981 -3.129468 -3.503244 2.694851 -2.826593 1.244731 2.817958 -0.060407 -5.697081 -1.741901 3.804312 -2.194524 -0.808835 -2.251513 -0.756513 -4.096060 -4.227017 1.035582 0.071497 1.632952 1.392580 -0.970595 -1.242209 0.739760 0.743078 -0.388842 1.796213 4.432978 1.346125 -0.624079 0.903670 -4.827783 2.922086 -5.786962 -6.105671 3.563184 -3.366224 -4.372181 -1.102837 -0.290319 4.205218 -1.182136 1.508181 -0.751927 0.711654 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.467795 -0.161951 0.606725 -1.258905 0.961689 0.286940 0.305114 -0.414688 -1.215522 -0.450175 0.183508 -1.193784 -0.571725 1.453187 -0.511194 0.580728 1.857935 0.470953 -0.465309 -0.447254 1.116815 -0.549529 1.566857 1.548537 -1.301985 -0.012327 0.264165 0.900338 0.496300 0.766310 -0.355534 -0.697202 0.383692 -0.673484 0.227142 -0.952222 0.149830 0.300508 0.390173 -1.918666 0.316817 -0.041328 0.126967 -0.162711 -0.192747 0.726557 1.185442 1.018052 -0.512372 0.359810 1.123854 0.221681 -0.047679 0.307752 0.323096 0.188764 0.793541 0.258368 -0.521589 -0.274984 -0.229224 -0.699504 0.222361 1.169860 1.535305 0.105099 -0.059582 0.369593 0.265036 0.306062 0.600752 0.232275 0.069370 0.112797 0.629677 -1.330028 0.093489 -2.612931 -0.187726 -2.980957 -0.786482 -0.323832 1.027611 -0.176277 0.259497 0.055230 1.335276 -0.008545 -0.058008 0.806237 1.590140 -0.919208 -0.567904 -0.781753 -0.886583 0.504724 -0.588479 0.026100 0.636470 0.359936 -0.980021 -0.709392 0.568106 0.197833 -0.507437 -0.353812 0.082638 1.155277 -1.238506 -0.553540 -0.575771 0.627265 0.084847 -1.829021 -0.087358 -0.916074 0.977965 0.032992 -0.491575 -0.860752 0.201041 0.659808 -0.590041 -0.212821 -0.692413 1.078294 0.560809 0.279328 0.029061 -0.011333 0.319574 1.269419 0.628088 -0.928743 -0.078307 0.100300 -0.604443 0.121625 -1.087021 -0.470092 0.765941 -1.077033 0.268395 0.542863 -0.804965 -0.393413 0.908252 0.029316 0.492494 3.351818 -0.154278 1.168383 0.684241 -1.141900 0.611941 -0.040098 -0.005736 0.492482 0.799176 0.230623 -1.292446 -1.179548 0.695802 1.267771 0.909960 -1.387068 -0.565467 -0.297076 -0.089510 0.089220 0.026557 0.273873 -0.327117 -0.692429 -0.333729 0.714768 2.059389 -0.401957 -1.134311 0.457403 0.506203 -0.487659 -1.320359 -0.414839 -0.628621 0.236746 0.123147 0.003249 0.865132 1.695018 -3.091276 1.187456 -0.063266 -0.148881 1.015597 0.141975 -0.801290 -1.810832 -0.064758 0.902731 1.432524 -0.008739 -0.000623 0.407360 -1.173753 -0.122314 0.175736 0.388958 -0.546775 0.529967 0.260002 -0.809730 -0.689756 -0.234330 -0.325578 -0.156752 -0.313013 0.702058 0.058712 -2.522244 1.307786 -0.192819 -0.348633 0.253538 -0.363412 0.890485 -1.217235 -1.275884 0.561936 -0.135768 -0.546849 -0.807551 0.190250 0.874065 -0.184620 0.328201 -0.741736 -1.416050 0.855673 -0.629868 0.912795 0.513491 0.046988 1.038641 0.166222 -0.288862 -1.160717 -0.143821 0.165100 -0.319002 -0.842113 -0.141506 -0.303103 1.024032 1.260872 0.002761 -0.432045 -0.016505 1.309436 -1.082602 -0.531014 0.887083 0.377325 -0.868000 0.642157 1.064187 -1.346501 -0.378713 -0.810923 -0.398824 -0.247794 -0.953811 0.742075 -0.200068 0.508050 0.238028 0.082787 -0.281691 0.745947 0.299365 0.065591 0.100125 1.612091 1.839167 -0.666813 0.075738 -1.199349 0.625326 -1.672218 -1.314220 0.363773 0.053511 -0.762271 0.189807 -0.016018 1.147252 -0.003144 0.070922 -0.312517 0.190700 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.408233 0.257630 0.937473 -1.063627 0.886327 0.736787 0.275502 -0.540819 -0.782455 -0.226792 -0.001331 -0.858809 -0.578711 1.201998 -0.617772 0.380242 1.620213 0.391096 -0.415676 -0.341364 0.955859 -0.334712 1.515175 1.422408 -1.279209 -0.056730 0.651994 0.823326 0.436632 1.087845 -0.795715 -0.674461 0.331819 -0.445996 0.342291 -0.905889 0.151945 -0.082278 0.245003 -1.687864 0.176012 -0.204789 -0.171302 -0.192709 -0.114622 0.506729 1.327260 0.943592 -0.355302 -0.027843 0.916509 0.456223 -0.114208 0.271231 0.417704 0.327462 1.200707 0.397114 -0.363482 -0.279291 -0.236596 -0.559085 0.166109 1.252888 1.430497 0.245121 0.101542 0.166707 0.087551 0.155173 0.237689 0.260313 0.082426 0.615052 0.453570 -1.225374 0.441258 -2.093179 -0.219142 -1.983886 -0.657219 -0.619265 0.242814 -0.289313 0.542955 0.025152 1.261689 0.090123 0.196299 0.386219 1.568630 -1.124976 -0.405915 -0.737439 -0.834306 0.312440 -0.612901 0.144411 0.211330 -0.035453 -0.867485 -0.953888 0.534535 0.403572 -0.465284 -0.065142 -0.019233 1.001951 -0.958073 -0.572611 -0.698485 0.089734 -0.253977 -1.775171 -0.167207 -0.883213 1.027757 -0.054764 -0.318091 -1.196956 0.229929 1.093694 -0.446002 -0.501690 -0.520812 1.128453 0.669533 0.035390 -0.016614 -0.312443 0.273313 1.117576 0.842707 -0.699301 -0.147070 0.005493 -0.904772 -0.130812 -1.005196 -0.156566 0.538993 -0.870645 0.006961 0.916739 -0.679662 -0.038648 0.913543 -0.189493 0.719612 3.560284 -0.318841 0.862427 0.338717 -1.360440 0.632413 0.000742 -0.243856 0.288446 0.640857 0.468151 -1.831533 -1.015770 0.603357 1.168254 0.783077 -1.229169 -0.347635 -0.480255 -0.220518 -0.091393 0.035501 0.245797 -0.514572 -0.725169 -0.410610 0.608674 1.974043 -0.544671 -1.435816 0.442919 0.114755 -0.452415 -1.087212 -0.368552 -0.415668 0.263752 0.080850 -0.156262 0.848430 1.473059 -2.770199 1.081595 -0.197456 -0.607119 1.261012 -0.133752 -0.561417 -0.866425 0.305160 1.093397 1.106164 0.101227 -0.156646 0.192135 -1.096716 -0.138120 0.038086 0.613893 -0.537983 0.507662 0.550969 -1.150601 -0.934500 -0.488558 -0.049670 -0.501416 -0.415940 0.557739 -0.363283 -2.469630 1.487918 0.004204 -0.209406 0.362675 -0.446344 0.508562 -1.230673 -1.352685 0.516227 0.031581 -0.070129 -0.590920 0.077494 0.866574 0.003163 0.506800 -1.005410 -1.481536 0.450797 -0.424136 0.773115 0.444468 0.490768 0.971418 0.235271 -0.171428 -1.198592 -0.154477 0.356544 0.014299 -0.880727 -0.305990 -0.345092 1.037440 1.322208 -0.218509 -0.116956 -0.276265 1.185160 -1.027741 -0.386221 0.703358 0.547791 -0.898736 0.075383 0.832852 -0.972624 -0.704142 -0.562038 -0.572233 -0.283307 -1.029873 0.525004 -0.455659 0.419616 0.480683 0.075995 -0.440188 0.553083 0.172927 0.126884 0.205623 1.233039 1.641132 -0.642547 0.149943 -1.037485 0.634594 -1.629379 -1.214021 0.422230 -0.336064 -0.527961 0.138381 0.060389 1.004571 -0.065968 0.220079 0.035946 -0.170876 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.320331 0.162315 -1.089123 -3.493943 3.624266 2.971774 1.232728 -2.645382 -2.449161 0.138038 1.286933 -5.684043 -1.323371 2.294380 -1.728677 3.420007 4.950402 -0.731016 -1.932150 -0.412211 2.233910 3.319872 6.029121 4.444104 -3.170422 -0.056490 -0.273799 0.601520 -0.443700 -0.836276 -1.942444 -2.908341 1.994725 -2.960777 -1.488502 0.479822 0.012779 -1.393950 4.279893 -3.542514 0.973108 -0.858752 0.261944 -0.956285 -1.364768 0.266003 4.476074 3.197010 -0.122712 -0.336438 3.363271 1.332881 -0.163696 1.065688 0.193728 0.266913 1.388726 -0.370197 -1.199312 -3.573608 -0.644196 1.776799 -0.438667 3.648653 3.261645 1.250712 -1.185806 2.647508 1.899460 0.121347 1.208069 1.540018 0.217109 2.124055 1.114079 -2.599076 0.470763 -3.934973 -1.370716 -3.774204 -2.621597 -0.254128 0.629454 -0.549893 2.995103 0.576414 4.265578 -0.577981 0.096273 1.588610 4.134726 -4.353296 -1.781908 -1.648138 -1.685901 0.100326 -1.325203 1.562094 1.063756 0.841070 -3.683176 -1.382658 0.277562 1.302667 -1.375874 -2.225275 1.912262 0.145918 -1.047523 -1.712070 -1.180010 2.388166 0.038460 -6.103003 -2.377757 -0.906334 1.339307 -0.524383 -1.805046 -4.846334 0.230133 1.430622 -2.247531 -1.734585 -0.314386 1.492633 3.482379 1.803264 1.236151 0.363145 2.538033 7.112283 0.567608 -2.607133 -0.229076 -1.346073 -0.779338 1.125687 -1.161712 -1.150145 -0.197041 -3.687074 3.454460 4.105061 -2.161949 -0.210142 1.248574 0.468895 0.768971 8.851030 -1.218668 4.517688 2.674729 -3.955154 0.466325 -3.526929 -0.715043 -0.616233 0.812138 1.465749 -3.198758 -3.380603 3.714708 3.773138 2.519118 -3.785554 2.034885 1.283752 0.673464 -1.265209 -0.560332 1.516151 1.170934 -2.675781 -0.789992 4.343656 7.526210 -1.167371 -0.899577 2.703226 2.149935 1.337306 -1.051594 -2.417630 -2.941528 0.580549 3.388780 1.776177 2.217318 4.944894 -4.465527 2.020300 0.340107 -0.534313 3.559713 1.877217 -3.862377 0.272189 -0.270098 3.051931 2.450376 -0.906539 0.424675 -0.074618 -2.387327 -0.513956 1.056805 0.400391 -1.226314 1.317873 1.459245 -3.055141 -1.501029 -0.455590 -0.531555 -0.287218 -0.940378 2.622199 -0.317521 -5.713653 4.615610 1.159839 -1.926590 -0.020173 -3.608246 3.496941 -2.949022 -2.625403 2.577332 -1.905867 0.493149 0.406079 1.081976 1.154012 1.587666 4.468137 -3.869468 -3.397603 3.215343 1.091436 3.886075 1.637902 0.672313 0.545166 -3.529339 -0.585099 -2.719794 -2.818040 0.268684 1.533137 -4.491469 0.498970 -1.329775 3.529671 2.630162 -1.790135 -2.290019 -0.858999 1.199278 -4.215810 0.343505 2.045200 2.612699 -5.047453 0.041177 2.713230 -2.183014 -0.090542 -1.800730 -0.624578 -3.172219 -3.895033 1.026422 -0.031950 1.578786 1.440220 -0.780485 0.397874 1.146736 0.294748 0.746792 1.111805 3.292066 2.503061 0.060639 -0.980780 -4.547357 1.983799 -4.854221 -5.887784 4.081877 -1.944484 -3.742377 -0.944651 0.160308 4.136663 -1.156638 -0.433032 -1.940446 1.163962 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.112110 -0.169443 0.031958 -0.327706 0.186556 -0.158090 0.067596 -0.103717 -0.424287 -0.173252 0.118412 -0.381119 -0.045186 0.341113 -0.102915 0.188108 0.380773 0.138979 -0.110422 -0.108159 0.206083 -0.162970 0.286025 0.362034 -0.218925 0.046730 -0.198037 0.174160 0.062216 0.140254 0.079130 -0.213855 0.070833 -0.084752 -0.023574 -0.193212 -0.002289 0.275769 0.134866 -0.437274 0.137753 0.128216 0.284420 -0.033607 -0.001934 0.112218 0.141529 0.171815 -0.062562 0.245555 0.268895 0.071311 0.042837 0.073210 0.092869 0.000808 0.108121 -0.262055 -0.143910 -0.066817 -0.053060 -0.109818 0.054879 0.199233 0.301161 0.001509 -0.049966 0.024699 0.064221 0.113237 0.256817 0.034632 -0.100920 -0.139550 0.054347 -0.166553 0.032835 -0.515991 0.012756 -0.780152 -0.202867 0.113650 0.478909 0.296971 -0.056634 0.059071 0.270319 -0.053519 -0.133741 0.204321 0.258150 -0.062147 -0.130053 -0.008479 -0.239253 0.120845 -0.051379 -0.050925 0.037375 0.319466 -0.225699 -0.007930 0.157301 -0.030847 -0.093627 -0.041748 0.085587 0.188082 -0.436828 -0.066849 0.067160 0.352398 0.170746 -0.294318 0.073130 -0.258615 0.080740 -0.011629 -0.194049 -0.003017 0.038294 -0.098492 -0.172549 0.142993 -0.491712 0.104477 0.009194 0.113379 -0.025335 0.024153 0.019110 0.254046 -0.156773 -0.305569 0.058522 0.013368 0.066883 0.126987 -0.182772 -0.190342 0.069138 -0.254550 0.152586 -0.100560 -0.180808 -0.203337 -0.095294 0.088279 -0.050656 0.324722 -0.011630 0.376005 0.277796 -0.116161 0.028232 -0.031199 0.105854 0.148502 0.199179 -0.076573 0.155774 -0.296359 0.180052 0.247146 0.184118 -0.104782 -0.131864 0.075725 0.013424 0.150374 0.060228 -0.023412 -0.025391 -0.169904 -0.068375 0.070186 0.402383 0.161324 0.113164 0.089078 0.189319 -0.110327 -0.147092 -0.088497 -0.150959 0.083624 -0.006549 0.041117 0.155045 0.376550 -0.680038 0.272231 0.015337 0.163422 0.062613 0.058633 -0.247581 -0.625703 -0.194868 0.068336 0.392995 -0.133179 0.168009 0.192030 -0.234702 -0.038341 0.001749 -0.022501 -0.202871 0.113857 0.056044 -0.136478 0.000000 0.028128 -0.124913 0.083783 -0.084701 0.149307 0.297731 -0.416652 0.152527 -0.057737 -0.067903 0.000999 0.024026 0.250359 -0.161770 -0.117729 0.074344 -0.107163 -0.232342 -0.165362 0.077226 0.145105 -0.220082 -0.017118 -0.038797 -0.062681 0.273873 -0.149154 0.196817 0.084495 -0.187048 0.051571 0.073191 -0.014937 -0.099330 0.059679 -0.087490 -0.279833 -0.073919 0.283289 -0.103763 0.145650 0.180642 0.118711 -0.249772 0.215564 0.304514 0.002027 -0.075486 0.216686 -0.176971 -0.140960 0.286940 0.267957 -0.336436 0.058278 -0.253945 0.022190 -0.043837 -0.074064 0.286494 0.145784 0.133488 -0.090896 0.012776 -0.064840 0.202220 0.108970 -0.075264 0.053608 0.466291 0.165245 0.059521 0.106505 -0.217131 -0.008666 -0.267121 -0.187231 -0.018445 0.164326 -0.287807 0.043818 -0.188420 0.320584 0.032797 0.100562 -0.118289 0.209595 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.527554 -0.012312 0.988322 -1.454098 1.531797 0.439207 0.328911 -0.330016 -1.133553 -0.494937 -0.227878 -0.647174 -0.738070 1.693051 -0.584656 1.022522 2.042162 0.422649 -0.399037 -0.680417 1.888787 -1.221103 1.844802 1.089917 -1.816855 -0.128843 0.958451 1.421080 0.863014 1.423431 -0.906163 -0.383413 0.411341 -1.206645 0.615769 -1.545847 0.653234 0.344006 0.198590 -2.126867 0.212527 -0.498252 -0.363022 -0.019260 -0.500352 1.311093 1.280853 1.390024 -1.058855 0.292919 1.539591 0.131243 -0.297718 0.570000 -0.114993 0.637575 1.044604 0.694344 -0.789840 -0.290125 -0.163862 -1.530846 0.742947 1.253270 1.923366 -0.300548 0.254564 1.298369 0.093942 0.259653 0.630334 0.185684 0.037445 -0.142075 1.152830 -2.321318 -0.131101 -3.320091 -0.504749 -3.947682 -0.764531 -1.198806 0.347817 -1.000406 0.692140 0.326034 1.783667 0.086909 0.188978 0.987754 1.751524 -1.566376 -0.570637 -1.822480 -0.891462 0.468034 -1.050463 -0.595137 1.088966 0.174557 -0.843772 -1.222543 0.765375 0.354795 -0.514430 -0.968552 -0.512822 1.661719 -1.750691 -1.238450 -1.316132 0.380261 -0.609747 -2.171549 0.418538 -0.822570 1.893799 -0.202439 0.447675 -1.348559 0.154399 1.760735 -0.584069 -0.723687 -0.133368 1.597973 0.900451 -0.058598 0.306210 -0.145663 0.086492 1.462614 1.972457 -0.851849 -0.968190 0.519424 -1.206068 -0.191601 -1.517137 -0.386132 1.330547 -1.604932 -0.023854 1.136239 -0.700316 -0.141414 2.094705 -0.366965 1.239961 4.030559 -0.034125 0.715613 0.202978 -1.580781 0.914917 0.112075 -0.217375 0.823675 0.779599 0.154981 -2.289655 -1.457299 0.624919 1.119174 1.080429 -2.043316 -1.232515 -1.049791 -0.010195 0.293386 -0.642374 0.973980 -0.764907 -0.727912 -0.378249 0.210740 2.714716 -0.941182 -1.438234 1.070863 0.326612 -1.498757 -2.458953 -0.806410 -0.892929 -0.180011 -0.044188 -0.235538 0.870112 2.002694 -3.629686 1.362289 -0.412226 -0.598355 1.065233 -0.323879 -0.221802 -2.329220 -0.068909 1.307863 1.647272 -0.117459 0.116348 0.307085 -1.325069 0.311564 0.099883 0.740040 -0.157011 0.343321 0.232198 -1.100909 -1.113641 0.007505 -0.354039 -0.202114 0.193873 0.541874 -0.381532 -3.434535 1.677344 -0.916104 -0.264771 1.078309 0.108637 1.285577 -1.438644 -1.716375 1.073726 0.441690 -0.254415 -1.324001 0.502917 1.434971 -0.230889 -0.103506 -0.756254 -2.523940 0.341642 -0.901440 0.467327 0.490704 0.543886 1.777971 -0.054348 -0.562757 -1.946001 -0.011489 -0.296923 -0.298964 -0.633998 -0.728506 0.051679 1.516323 1.597657 0.109909 0.249590 -0.027276 1.772610 -1.899329 -0.865228 1.295344 1.183155 -1.144492 0.697992 1.448564 -1.583395 -1.163851 -0.767885 -0.191219 0.004251 -1.161945 0.587610 -0.763088 0.350992 0.707083 0.402957 -0.493933 0.942852 0.370816 0.191615 -0.752356 2.247021 3.060327 -1.326948 -0.217884 -1.104829 0.754600 -2.121600 -1.421388 0.286132 0.303859 -0.347501 0.783493 0.689020 1.339798 -0.181484 0.093632 0.089460 -0.983139 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -4.823609 4.286355 6.664836 -13.626503 14.656398 17.899388 3.759331 -8.285724 -10.430657 0.237442 1.176735 -17.405378 -7.750364 15.963190 -6.941362 7.354661 19.757325 0.591475 -7.110250 1.657810 10.720736 7.282913 18.998673 15.697113 -13.236626 -0.060298 1.364849 3.425786 -2.951538 12.761618 -10.263419 -17.018257 4.503795 -4.197548 -1.703555 -3.685512 -0.446022 -3.399316 8.264839 -17.918095 3.212519 4.035121 -4.292564 -4.653216 -1.630414 -4.046027 19.559675 10.763862 -1.067250 -3.071600 8.312015 7.651292 -2.246839 2.927988 6.977077 3.550457 10.156143 1.106148 -6.059793 -7.949376 -4.376413 3.690175 -2.693389 14.759290 14.444415 5.516779 -1.636445 2.402442 0.339615 0.979174 1.292090 3.817077 3.460149 9.805900 3.751170 -3.580675 1.866869 -13.575520 -1.771254 -10.179141 -8.484910 -3.144882 2.213751 5.302562 7.808467 -6.966271 15.709442 -3.343557 0.187904 6.211744 21.781037 -14.364072 -5.246728 -9.978355 -11.403967 0.464987 -4.935457 2.818871 -1.806060 -3.274908 -13.447640 -11.534308 0.794782 5.347112 -4.784680 -1.889733 3.247245 9.950643 -7.548227 -5.493579 -3.726648 7.110664 -1.898272 -22.514059 -13.155466 -6.529064 0.558502 -0.059296 -7.535433 -17.482087 4.470562 10.311420 -8.644394 -7.594231 -3.372098 12.207504 10.355224 2.792007 0.397834 -2.763132 7.464538 18.395060 3.514658 -8.618793 2.042966 -4.485919 -2.694809 0.798556 -7.068929 -1.454747 -3.786202 -10.361253 2.469829 14.779287 -8.312598 2.704204 -3.075272 -1.131154 5.306822 44.256586 -7.281639 14.114075 3.969527 -18.757149 8.086272 -3.108506 -5.498420 -2.503554 5.113855 8.167532 -18.938436 -12.479549 13.927593 15.200701 9.686320 -12.134822 6.077293 -1.691236 -2.739998 -4.977181 2.440869 3.250445 -1.432420 -10.399760 -5.573966 11.836651 29.388009 -6.581461 -18.960969 9.615467 5.542277 2.972911 -2.456460 -5.744006 -6.552417 2.830008 8.995730 -1.290373 12.154413 19.422181 -25.550754 12.759439 0.595653 -9.320338 15.987555 0.744242 -9.984697 2.981405 -0.056327 15.534261 13.332184 2.164604 -1.693546 -2.267441 -11.921224 -1.790794 2.787760 4.658411 -6.335146 6.266573 5.443305 -15.848142 -9.745908 -7.592152 -4.226785 -6.125356 -10.392739 6.588947 -1.900305 -25.134480 20.581288 7.197971 -0.468359 0.827849 -8.281312 8.735884 -11.760244 -16.730114 7.581492 -3.848908 -1.343577 1.194336 0.922517 7.508298 6.624671 13.143926 -14.855355 -18.878481 10.020056 2.285280 14.883357 5.312159 5.534013 5.610087 2.685860 -3.013907 -10.997343 -13.403467 11.155848 5.192633 -14.130901 -1.174519 -6.561818 13.861773 11.050838 -3.862535 -9.005603 -11.964494 10.067160 -9.050768 2.274379 9.463244 0.500852 -16.642457 -5.459656 12.154406 -6.768388 -4.932337 -7.182359 -2.830841 -11.918280 -13.945755 2.383360 -1.591768 4.400483 5.262003 -2.436909 -5.206592 2.785623 2.326268 -0.699927 4.791759 13.935960 7.046182 -5.124114 3.837610 -14.534520 9.813441 -19.120766 -18.986737 10.137565 -10.129701 -10.741633 -2.923231 -1.254131 11.843381 -3.477013 4.781991 -0.978662 0.576115 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy(int**, int**, int**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy_backward(int**, int**, int**) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.869720 0.124094 1.053992 -1.982164 3.072509 1.185078 1.248885 -0.573247 -1.819601 -1.187929 -0.003763 -1.363482 -1.932890 2.940846 -1.114988 1.892636 3.705398 0.738567 -0.193706 -0.866388 3.165972 -2.121583 4.050068 2.608544 -3.421771 -0.069497 0.782125 1.816910 0.443296 2.841827 -0.954059 -1.611545 1.795842 -2.246986 1.066546 -2.401227 0.726683 0.399037 0.300504 -3.854046 0.171736 -0.059128 -0.425012 0.131059 -0.732809 1.748100 2.819141 2.543937 -1.645866 1.159570 2.168025 -0.046732 0.105499 1.401205 0.265813 0.758436 0.657402 0.505274 -1.888529 -0.594785 -1.117644 -3.121140 0.907669 2.276225 3.674214 -0.366164 0.574430 1.761991 -0.963598 0.784684 1.313439 0.786258 0.635384 -0.474042 2.573932 -3.199098 -0.704632 -5.328764 -1.534519 -7.137518 -1.847104 -2.291075 1.096753 -0.660670 2.058453 -0.080014 3.166698 0.514528 0.454914 1.755065 3.341531 -3.007657 -1.072794 -2.682284 -1.259526 0.434653 -1.878904 -0.462096 1.968433 -0.379609 -2.146960 -2.002979 1.454110 0.694058 -0.726974 -2.398329 -0.843649 2.950864 -3.165744 -2.244563 -2.666732 0.352223 -1.281789 -4.315416 0.866188 -1.106553 2.517350 0.317016 0.480232 -2.044470 0.648793 2.898666 -0.832942 -1.910823 -0.065481 3.116543 1.531895 0.463490 0.912463 0.175644 -0.387516 3.246877 3.816006 -0.770760 -1.350522 0.317965 -1.620113 0.490471 -1.981443 -0.651299 2.094499 -3.009898 -0.133475 1.826854 -1.192310 -0.366256 2.546644 -0.456095 2.235468 6.588338 -0.339258 2.028819 0.976733 -3.174565 1.874008 -0.176957 0.141284 1.585952 2.142389 0.017352 -3.574601 -2.650429 1.226785 2.079776 1.782801 -3.706923 -1.907244 -1.574976 0.583383 -0.021976 -1.065655 1.566395 -0.419044 -1.985245 -0.167992 0.659479 4.839843 -2.137246 -2.369103 2.089575 0.714793 -1.947161 -3.980813 -1.695821 -1.918148 -0.197841 0.085051 -0.383397 0.836522 3.546638 -5.414364 2.428562 -1.225989 -0.673902 2.192094 -0.096598 -0.817964 -4.041660 0.057926 2.204149 2.597345 0.229664 0.163080 0.521551 -2.423581 0.706951 -0.053579 1.319524 -0.438346 1.049077 -0.305367 -2.227955 -2.409191 -0.793448 -0.451439 -0.748549 0.102776 1.063013 0.793276 -5.614273 2.672461 -1.167392 -1.374037 1.744193 0.522839 2.612979 -2.268593 -3.513996 1.827799 -0.530238 -1.356311 -2.417336 0.913247 1.852959 0.026979 -0.690121 -1.246709 -4.015156 1.683193 -1.151214 1.392230 1.247174 1.231433 3.815967 0.521320 -2.156185 -3.298149 -0.980278 -0.066136 -1.143484 -1.729048 -1.421325 -0.397965 2.734057 3.332778 0.719358 0.035819 -0.335448 3.629067 -3.599597 -1.340958 3.247490 1.988518 -1.628233 1.332058 3.163304 -2.599244 -2.140192 -1.152784 0.124802 0.044730 -2.345251 1.188023 -1.641443 0.914063 0.695498 0.869892 -0.900201 1.297731 0.578764 0.773067 -1.492057 3.982304 4.638471 -2.794073 -0.535843 -1.724177 1.135420 -3.871494 -2.575263 0.599592 0.760199 -0.584753 1.447699 1.153583 2.461663 0.023326 -0.517717 -0.207140 -1.584331 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__miter_base(int**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.094004 0.019219 0.230993 -0.225112 0.187042 -0.030752 0.085428 -0.093290 -0.252681 -0.122523 -0.046565 -0.124925 -0.094709 0.319760 -0.118501 0.192414 0.502530 0.239633 -0.038493 -0.218610 0.268158 -0.426262 0.432342 0.459415 -0.369990 0.034875 0.228867 0.286762 0.191823 0.338604 -0.233154 -0.057474 0.126169 -0.274716 0.177918 -0.444607 0.047246 0.115670 0.056593 -0.621531 0.040546 -0.138967 0.153557 -0.010648 -0.043617 0.287061 0.307364 0.264572 -0.109584 0.190091 0.261261 0.026773 0.061662 0.103396 0.112779 0.246852 0.360646 0.052262 -0.134540 0.045806 -0.037519 -0.415352 0.163016 0.303221 0.438937 -0.028649 0.034712 0.101136 0.004142 0.036669 0.142589 0.078950 -0.083405 0.017798 0.154701 -0.644639 0.168900 -0.779599 -0.105484 -0.950734 -0.224235 -0.250069 0.136642 -0.170907 0.214451 0.210247 0.384848 0.010318 0.109316 0.033402 0.362031 -0.385720 -0.129788 -0.150762 -0.141072 0.128338 -0.193763 -0.075030 0.194914 0.030762 -0.204689 -0.301452 0.407911 0.130580 -0.161329 -0.082359 -0.053898 0.307065 -0.446607 -0.331187 -0.336288 -0.085632 -0.163594 -0.420870 0.321795 -0.258513 0.419796 0.049303 -0.045832 -0.368465 0.058379 0.349028 -0.068463 -0.174062 -0.222270 0.316947 0.094680 -0.049694 0.044056 -0.072181 -0.024412 0.357065 0.381243 -0.209965 -0.104629 0.171709 -0.365863 -0.061602 -0.342645 -0.174113 0.262581 -0.349164 -0.045952 0.137273 -0.218569 -0.002949 0.525284 -0.026281 0.226708 0.785391 -0.013372 0.185301 0.124011 -0.341305 0.195407 -0.011175 -0.000115 0.199684 0.292826 0.058845 -0.512820 -0.296735 0.006983 0.318142 0.226080 -0.344711 -0.409065 -0.239731 0.004376 0.171450 -0.025376 0.059458 -0.148025 -0.212432 -0.066191 -0.015831 0.594363 -0.164054 -0.114908 0.060596 -0.085086 -0.346777 -0.633221 -0.106649 -0.265682 0.040668 -0.227608 -0.040820 0.129107 0.389632 -0.852524 0.348853 -0.277628 -0.134836 0.304871 -0.049532 -0.079772 -0.629323 0.058994 0.217252 0.411446 -0.041817 0.072536 0.153074 -0.337350 -0.038135 -0.075236 0.205007 -0.183565 0.176354 0.134165 -0.342014 -0.203292 0.014296 0.068804 -0.196446 0.049255 0.153905 0.064642 -0.706442 0.303600 -0.134490 -0.129007 0.287046 0.057879 0.140413 -0.368228 -0.332601 0.155942 0.097753 0.026009 -0.261081 0.000426 0.304311 -0.182946 -0.141232 -0.150793 -0.364421 0.067760 -0.219567 0.110135 0.159668 0.045596 0.345872 0.056895 -0.109158 -0.327838 0.201510 -0.248805 -0.238879 -0.077018 -0.127425 -0.094124 0.304681 0.510783 0.091867 0.101830 0.155542 0.455077 -0.362521 -0.187118 0.244811 0.236619 -0.112639 0.160108 0.258484 -0.418829 -0.233077 -0.140303 -0.137935 0.129883 -0.190660 0.258740 -0.250108 0.106671 0.118972 0.045783 -0.097718 0.255335 0.046769 0.056021 -0.063588 0.450504 0.573211 -0.193256 0.004564 -0.211116 0.067630 -0.436274 -0.177557 -0.066334 0.242864 -0.179586 0.138090 0.104633 0.295406 0.036230 0.005971 0.008597 -0.171667 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_base(int**) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.449509 0.049402 0.452496 -1.067446 0.848479 0.312131 0.329773 -0.414432 -0.844442 -0.422050 0.053123 -0.854037 -0.535591 1.178258 -0.485025 0.638435 1.771441 0.406164 -0.302685 -0.507652 1.107846 -0.576300 1.634502 1.517581 -1.327312 -0.066492 0.669219 0.823938 0.489292 0.544021 -0.415500 -0.577520 0.478439 -0.910414 0.295408 -0.996665 0.227189 0.090635 0.449951 -1.838321 0.201218 -0.434559 -0.017189 -0.177271 -0.324185 0.686269 1.227935 1.063550 -0.572757 0.241802 1.105928 0.308697 -0.141275 0.336485 0.126926 0.300999 0.532668 0.323180 -0.402368 -0.310333 -0.142747 -0.758045 0.358514 1.209945 1.471258 0.084124 0.050326 0.624413 0.199032 0.207563 0.385279 0.291629 0.044776 0.241493 0.682044 -1.811323 0.026478 -2.740729 -0.350241 -2.945146 -0.799594 -0.620813 0.514538 -0.581025 0.622514 0.369766 1.343522 0.093094 0.237375 0.812717 1.464004 -1.169213 -0.501246 -0.858174 -0.731156 0.475566 -0.666960 0.116567 0.611778 0.136299 -0.940415 -0.920609 0.633792 0.380025 -0.507075 -0.717932 0.066754 0.924325 -1.096134 -0.781695 -0.861566 0.253429 -0.241704 -1.850255 0.174951 -0.795116 1.359358 -0.001032 -0.258270 -1.199356 0.090985 0.976363 -0.416399 -0.567835 -0.313383 0.965278 0.696965 0.157187 0.213900 -0.091751 0.253843 1.502083 1.051345 -0.750665 -0.296137 0.165978 -0.911500 -0.051105 -1.054889 -0.416085 0.903737 -1.142997 0.284210 0.839870 -0.744804 -0.396792 1.525866 -0.192401 0.725036 3.395528 -0.099748 0.968788 0.615941 -1.266026 0.485587 -0.329005 -0.155077 0.476792 0.820525 0.298349 -1.622735 -1.088108 0.498189 1.200178 0.873103 -1.340754 -0.761326 -0.406893 -0.048526 0.031234 -0.153207 0.329915 -0.319379 -0.756205 -0.278686 0.768494 2.003746 -0.539174 -0.694426 0.459184 0.523878 -0.596722 -1.528347 -0.475438 -0.847111 0.169481 0.163006 0.005644 0.736669 1.553684 -2.778469 1.001743 -0.323146 -0.184038 0.805390 0.207375 -0.726928 -1.663606 0.250597 1.002345 1.215373 -0.151966 0.238022 0.305844 -1.099795 -0.101824 0.110868 0.511687 -0.484304 0.539689 0.274656 -0.966043 -0.822314 0.032055 -0.179017 -0.384291 0.009782 0.636631 -0.039601 -2.427578 1.386699 -0.324346 -0.445269 0.484085 -0.435112 0.957963 -1.309860 -1.315094 0.709451 0.025285 -0.108647 -0.661825 0.168295 0.958338 -0.120490 0.253867 -0.730909 -1.452805 0.606341 -0.418049 0.770690 0.516009 0.291887 1.208895 -0.443697 -0.331857 -1.289151 -0.142087 -0.085445 -0.165200 -0.921385 -0.450165 -0.269369 1.090013 1.428510 -0.150769 -0.242536 0.200741 1.238561 -1.436744 -0.490521 0.804502 0.953531 -0.884489 0.450943 0.955401 -1.294235 -0.571176 -0.675966 -0.226800 -0.079543 -1.070369 0.621101 -0.491084 0.456090 0.441204 0.096550 -0.162625 0.726730 0.289639 0.340303 0.007219 1.346920 1.935090 -0.720588 -0.248602 -1.115067 0.461164 -1.705549 -1.334013 0.393615 0.126743 -0.532272 0.242522 0.129733 1.125910 -0.068819 0.053732 -0.178538 -0.158020 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.116891 -0.861914 -0.104587 -2.815243 2.050643 0.888064 0.853362 -1.094547 -2.367907 -0.305383 0.640003 -2.394337 -0.371316 2.546771 -0.915183 2.485844 3.913357 0.661815 -0.981249 -0.695538 2.586977 -0.395155 3.632646 3.208075 -2.505978 -0.266382 0.455172 1.523490 0.450614 0.297131 -0.658365 -1.323497 1.024675 -2.836009 -0.287399 -1.737088 0.568118 0.695391 2.325300 -3.705250 0.805827 -0.766186 0.346681 -0.644737 -1.075407 0.256165 2.049212 2.477692 -1.100682 0.653926 2.579045 0.472243 -0.455404 0.787751 0.093081 0.883551 0.172216 0.491595 -0.954007 -1.333029 -0.202899 -0.449906 1.044936 2.385145 2.904349 0.252528 -0.159061 1.924969 1.014688 0.383183 1.419059 0.475848 -0.625476 -0.098495 1.344036 -3.907517 -0.318630 -5.582268 -0.683539 -5.188954 -1.792977 -0.405970 1.436098 -0.893964 1.754702 0.704058 2.744276 -0.386540 0.056437 2.113360 2.608570 -2.613720 -1.313155 -1.964730 -1.726960 0.947826 -1.222521 0.088707 1.568310 0.602606 -2.231938 -1.526777 1.015387 1.149123 -0.958773 -2.337295 0.847366 1.579183 -1.643100 -2.267339 -0.939898 1.961801 -0.605654 -3.956222 -0.153435 -1.687224 1.982818 -0.215195 -0.838501 -2.861736 0.002671 1.536612 -1.219667 -1.261149 -0.304499 1.571490 1.766932 0.827896 0.692447 -0.084088 0.579833 4.200460 1.365060 -2.036522 -0.370081 0.281391 -1.297038 0.470159 -2.083184 -1.360110 1.268425 -2.872679 1.106615 2.014635 -1.668278 -0.645015 3.122334 0.527050 1.087503 7.601438 0.021913 2.779439 2.027361 -2.496715 1.113210 -1.145701 0.078734 0.884122 1.429246 -0.050631 -3.374429 -2.534584 1.270607 2.491772 2.152168 -2.771710 -1.541473 -0.418787 0.079052 0.259440 -0.691334 0.843917 -0.141819 -1.845691 -0.436318 2.126720 4.738383 -0.877850 -0.682660 1.420680 1.994796 -1.277851 -3.063162 -1.483702 -2.946782 0.327185 0.914611 0.446450 1.691603 3.519188 -5.122721 1.918722 -0.478869 0.161532 1.675942 1.034161 -2.322149 -3.466347 -0.265121 1.709827 2.822137 -0.933453 0.925649 1.031135 -2.057784 -0.141609 0.469337 0.362247 -0.779212 0.973129 0.204674 -1.770900 -1.115839 0.743310 -1.005116 -0.684279 0.185194 1.627645 0.276555 -4.161280 2.579594 -0.339454 -1.167235 1.279248 -1.273086 2.780002 -2.553278 -2.399190 1.944246 0.156124 0.309508 -0.910812 0.747358 1.909256 0.100095 1.080101 -1.551200 -2.914226 1.468184 -0.590816 2.084070 1.106541 -0.206275 1.559921 -1.718841 -0.662548 -2.546263 -1.118791 -0.579675 0.226002 -2.458767 -1.125745 -0.585797 2.588870 2.295197 -0.168261 -1.295034 0.366784 2.448096 -3.041431 -0.486963 1.807639 1.531298 -2.540595 0.606332 2.312618 -3.017798 -0.362765 -1.336488 0.200245 -0.537675 -2.208626 1.518568 -0.083006 1.406904 0.276890 0.205832 0.329257 1.347010 0.982155 0.868513 0.210086 3.137059 2.946531 -0.668622 -1.172832 -2.648016 0.780398 -3.447680 -3.190530 1.300034 0.173600 -2.095651 0.576368 0.460726 2.975072 -0.324702 0.320573 -0.639671 -0.007026 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.171884 0.050852 0.341734 -0.393905 0.317832 0.078100 0.123261 -0.195829 -0.347576 -0.158248 -0.050141 -0.168938 -0.147673 0.499203 -0.218607 0.269230 0.764142 0.295944 -0.088650 -0.303474 0.489791 -0.524849 0.669199 0.669323 -0.581636 -0.004320 0.441817 0.406399 0.314245 0.438573 -0.355937 -0.115276 0.204254 -0.454548 0.227288 -0.623860 0.097837 0.095820 0.138491 -0.856437 0.064975 -0.323967 0.034488 -0.034839 -0.108680 0.405426 0.493706 0.414699 -0.216748 0.184873 0.441672 0.103551 -0.026209 0.146545 0.142900 0.335987 0.478542 0.230044 -0.150936 -0.005377 -0.072776 -0.495366 0.240901 0.503120 0.658381 -0.003478 0.080206 0.217743 0.022768 0.049250 0.173025 0.104188 -0.065267 0.090497 0.261726 -1.021463 0.157080 -1.275295 -0.185902 -1.367077 -0.298250 -0.370101 0.088795 -0.426243 0.337057 0.306068 0.563146 0.043168 0.153567 0.151650 0.596421 -0.592019 -0.190800 -0.301587 -0.275993 0.164728 -0.303223 -0.032325 0.280831 -0.016114 -0.329161 -0.517455 0.492872 0.230569 -0.222827 -0.227787 -0.058799 0.474202 -0.585136 -0.460047 -0.464277 -0.099946 -0.257764 -0.704027 0.321455 -0.415666 0.752107 0.023791 -0.072378 -0.617187 0.071202 0.608169 -0.122057 -0.324088 -0.095775 0.462107 0.239539 -0.023844 0.037332 -0.147655 0.002357 0.583609 0.634764 -0.306078 -0.151837 0.169874 -0.564533 -0.106141 -0.530296 -0.201820 0.437100 -0.491410 -0.020253 0.335946 -0.317145 -0.051187 0.950593 -0.089355 0.368931 1.432222 -0.045679 0.297661 0.168396 -0.567379 0.232604 -0.042446 -0.029247 0.273769 0.413396 0.116507 -0.906467 -0.456678 0.085536 0.476458 0.345931 -0.616702 -0.565659 -0.357100 -0.035974 0.168578 -0.090443 0.102359 -0.256508 -0.312201 -0.127340 0.098932 0.908025 -0.309831 -0.301195 0.128063 -0.038924 -0.462813 -0.899920 -0.185298 -0.376366 0.096651 -0.175534 -0.070629 0.268244 0.616641 -1.328159 0.480977 -0.373528 -0.212515 0.423591 0.002868 -0.160158 -0.813162 0.141500 0.394711 0.563648 -0.023640 0.089839 0.203932 -0.500038 -0.048899 -0.067109 0.319066 -0.246826 0.237134 0.232293 -0.533197 -0.371679 0.050872 0.065232 -0.293130 0.075305 0.231227 -0.078948 -1.157393 0.544650 -0.175405 -0.156286 0.392944 -0.013015 0.287094 -0.575853 -0.569038 0.287175 0.156347 0.096043 -0.357267 0.030873 0.487968 -0.170778 -0.054489 -0.302258 -0.669727 0.083118 -0.294844 0.219476 0.210516 0.145471 0.590455 -0.120099 -0.122018 -0.613904 0.203786 -0.217200 -0.193254 -0.245179 -0.288524 -0.109231 0.492492 0.719181 0.041027 0.098385 0.164519 0.640851 -0.656876 -0.227481 0.345716 0.541057 -0.274925 0.167872 0.378168 -0.599655 -0.368687 -0.186110 -0.221148 0.107103 -0.370987 0.328592 -0.334112 0.188278 0.185438 0.105295 -0.108133 0.353887 0.088327 0.160810 -0.044364 0.588696 0.985513 -0.353428 -0.090889 -0.369750 0.163415 -0.705164 -0.422098 0.020364 0.223973 -0.215445 0.182278 0.125045 0.473775 0.016962 0.035194 0.046417 -0.241725 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.479063 0.046100 0.457175 -1.170073 0.923984 0.448012 0.368742 -0.520663 -0.914311 -0.401128 0.105331 -1.007672 -0.554794 1.279645 -0.535344 0.744776 1.886788 0.393321 -0.379853 -0.503158 1.151633 -0.440791 1.776239 1.624535 -1.403673 -0.063286 0.622281 0.779145 0.502479 0.562396 -0.448814 -0.683388 0.562443 -0.930387 0.278421 -0.970719 0.213697 0.073241 0.572171 -1.932180 0.233555 -0.392056 0.021264 -0.215614 -0.324000 0.661723 1.327808 1.140465 -0.518377 0.226133 1.148742 0.371103 -0.138461 0.356193 0.190178 0.309848 0.599949 0.231439 -0.434952 -0.382986 -0.158944 -0.661598 0.312365 1.311107 1.559228 0.112320 0.030183 0.654110 0.261940 0.218655 0.414298 0.321642 0.058127 0.315533 0.650718 -1.856525 0.058270 -2.753273 -0.367167 -2.979852 -0.862747 -0.595287 0.533837 -0.521540 0.692481 0.265306 1.431590 0.094479 0.194915 0.770852 1.592818 -1.278246 -0.536876 -0.886549 -0.726652 0.459870 -0.704251 0.169246 0.625672 0.095834 -1.036304 -0.931743 0.638605 0.420101 -0.543773 -0.718802 0.125544 0.979639 -1.094834 -0.820003 -0.812269 0.341300 -0.263417 -2.000793 0.176763 -0.849561 1.282831 -0.016013 -0.310179 -1.313539 0.106913 1.013338 -0.481138 -0.630482 -0.419280 1.047475 0.802721 0.205483 0.203689 -0.055779 0.316523 1.670749 0.990162 -0.824634 -0.253247 0.112121 -0.884028 0.004416 -1.085142 -0.437908 0.878637 -1.209635 0.281262 0.942159 -0.790277 -0.321282 1.480968 -0.143441 0.724422 3.642210 -0.150549 1.094534 0.684153 -1.373632 0.515240 -0.385258 -0.169161 0.439595 0.829692 0.324320 -1.758415 -1.180297 0.596477 1.306620 0.932717 -1.410599 -0.678269 -0.400834 -0.086070 -0.048735 -0.139746 0.346189 -0.302952 -0.832100 -0.311846 0.857857 2.194808 -0.586448 -0.698668 0.502150 0.566919 -0.539742 -1.496625 -0.536788 -0.899744 0.208237 0.211791 0.057084 0.822671 1.669961 -2.843251 1.086874 -0.307569 -0.239644 0.941181 0.228161 -0.830158 -1.625737 0.229404 1.075422 1.276035 -0.195339 0.267973 0.322220 -1.181894 -0.118367 0.104902 0.498484 -0.514798 0.537577 0.341465 -1.019415 -0.847243 0.023720 -0.193690 -0.433834 -0.049475 0.706139 0.043821 -2.531709 1.497018 -0.261117 -0.474486 0.487305 -0.525397 1.046404 -1.380459 -1.348068 0.740980 -0.006782 -0.106769 -0.639309 0.180680 0.991086 -0.142100 0.412082 -0.846218 -1.517024 0.679065 -0.410996 0.870027 0.556551 0.307742 1.173588 -0.480966 -0.339414 -1.317406 -0.314874 -0.051564 -0.085815 -1.035241 -0.372172 -0.309892 1.184379 1.467458 -0.176274 -0.349330 0.154032 1.247594 -1.546404 -0.435085 0.853218 0.972448 -1.015582 0.390771 1.015793 -1.331385 -0.556167 -0.698934 -0.276205 -0.175871 -1.152275 0.663509 -0.443960 0.518754 0.420983 0.088510 -0.169216 0.752351 0.294234 0.310048 0.074079 1.423309 1.929012 -0.702283 -0.270445 -1.226854 0.536679 -1.802172 -1.464792 0.493635 0.040607 -0.650683 0.213439 0.113362 1.225603 -0.070184 0.072204 -0.222476 -0.119823 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.264659 -0.878422 -0.081187 -3.328381 2.428168 1.567468 1.048206 -1.625702 -2.717255 -0.200769 0.901042 -3.162512 -0.467334 3.053709 -1.166778 3.017547 4.490091 0.597599 -1.367090 -0.673069 2.805911 0.282392 4.341331 3.742844 -2.887781 -0.250350 0.220485 1.299526 0.516550 0.389008 -0.824935 -1.852837 1.444696 -2.935875 -0.372337 -1.607357 0.500658 0.608423 2.936398 -4.174545 0.967510 -0.553675 0.538947 -0.836455 -1.074480 0.133438 2.548576 2.862263 -0.828786 0.575582 2.793117 0.784271 -0.441339 0.886291 0.409340 0.927796 0.508620 0.032887 -1.116926 -1.696290 -0.283884 0.032332 0.814193 2.890956 3.344197 0.393509 -0.259778 2.073454 1.329227 0.438642 1.564153 0.625917 -0.558719 0.271704 1.187402 -4.133524 -0.159669 -5.644989 -0.768173 -5.362488 -2.108742 -0.278336 1.532594 -0.596536 2.104535 0.181760 3.184615 -0.379615 -0.155866 1.904034 3.252641 -3.158885 -1.491306 -2.106605 -1.704441 0.869345 -1.408977 0.352102 1.637779 0.400280 -2.711380 -1.582450 1.039450 1.349502 -1.142266 -2.341646 1.141313 1.855753 -1.636599 -2.458881 -0.693418 2.401154 -0.714218 -4.708909 -0.144375 -1.959452 1.600186 -0.290103 -1.098051 -3.432654 0.082312 1.721490 -1.543364 -1.574384 -0.833981 1.982477 2.295716 1.069377 0.641392 0.095772 0.893232 5.043791 1.059148 -2.406368 -0.155633 0.012105 -1.159680 0.747764 -2.234447 -1.469229 1.142924 -3.205871 1.091878 2.526079 -1.895640 -0.267463 2.897840 0.771853 1.084431 8.834847 -0.232095 3.408166 2.368422 -3.034747 1.261475 -1.426970 0.008313 0.698139 1.475079 0.079224 -4.052828 -2.995532 1.762049 3.023986 2.450240 -3.120931 -1.126187 -0.388495 -0.108664 -0.140403 -0.624029 0.925289 -0.059682 -2.225166 -0.602119 2.573537 5.693691 -1.114222 -0.703874 1.635511 2.210001 -0.992952 -2.904552 -1.790453 -3.209945 0.520969 1.158537 0.703647 2.121614 4.100574 -5.446631 2.344378 -0.400985 -0.116499 2.354900 1.138093 -2.838297 -3.277000 -0.371084 2.075210 3.125447 -1.150318 1.075404 1.113016 -2.468280 -0.224326 0.439505 0.296232 -0.931682 0.962569 0.538717 -2.037760 -1.240486 0.701636 -1.078481 -0.931990 -0.111090 1.975188 0.693668 -4.681935 3.131191 -0.023311 -1.313319 1.295349 -1.724509 3.222207 -2.906275 -2.564063 2.101892 -0.004211 0.318899 -0.798232 0.809282 2.072996 -0.007956 1.871173 -2.127745 -3.235324 1.831805 -0.555553 2.580757 1.309251 -0.126999 1.383386 -1.905184 -0.700334 -2.687536 -1.982726 -0.410266 0.622925 -3.028046 -0.735781 -0.788412 3.060696 2.489940 -0.295786 -1.829002 0.133240 2.493262 -3.589733 -0.209779 2.051217 1.625887 -3.196061 0.305476 2.614580 -3.203548 -0.287721 -1.451328 -0.046784 -1.019315 -2.618155 1.730608 0.152615 1.720226 0.175781 0.165633 0.296301 1.475112 1.005131 0.717239 0.544384 3.519002 2.916142 -0.577094 -1.282048 -3.206951 1.157972 -3.930794 -3.844423 1.800137 -0.257080 -2.687709 0.430952 0.378874 3.473535 -0.331529 0.412931 -0.859362 0.183957 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.627916 -0.872074 0.176221 -1.621498 1.172714 0.096378 0.223253 -0.350084 -1.658533 -0.387807 0.170783 -1.331672 -0.284111 1.829116 -0.539006 1.090351 2.313478 0.754671 -0.499678 -0.606721 1.389476 -0.790498 1.726189 1.506387 -1.330790 -0.242038 0.129128 1.357633 0.615634 0.535258 -0.091404 -0.523865 0.340471 -1.276906 0.121399 -1.316481 0.485289 0.905301 0.658942 -2.159196 0.525031 -0.244359 0.474288 -0.038620 -0.523062 0.583361 0.786703 1.296842 -0.657451 0.607101 1.455782 0.087523 -0.048590 0.421347 0.083137 0.445050 0.489446 0.308353 -0.689842 -0.234327 -0.149542 -0.833641 0.442318 1.047289 1.817563 -0.027686 -0.113578 0.794907 0.531292 0.468581 1.225783 -0.033453 -0.333649 -0.405385 0.758981 -1.894540 -0.247076 -3.362025 -0.189019 -3.636700 -0.560229 -0.258677 1.383451 -0.455042 0.121581 0.350370 1.329829 -0.129959 -0.153682 1.088435 1.540319 -0.911479 -0.893759 -1.303345 -0.846305 0.848849 -0.730708 -0.334547 1.447679 0.858577 -0.821366 -0.642966 0.541636 0.167101 -0.527758 -0.844524 0.076097 1.572789 -1.300781 -0.972920 -0.661072 1.229864 -0.045889 -1.931417 -0.150439 -1.072365 0.804687 0.056683 -0.421484 -0.942199 0.144772 0.693998 -0.680650 -0.065546 -0.298426 1.039404 0.526669 0.321628 -0.008001 0.259731 0.271958 1.734613 0.518868 -1.238246 -0.208653 0.600155 -0.601496 0.061575 -1.649517 -0.904056 1.038960 -1.606959 0.509260 0.550906 -1.000300 -0.483073 1.404546 0.357651 0.697695 3.852277 0.141639 1.106810 0.955737 -1.048801 0.759545 0.178340 0.434830 0.693626 0.748723 -0.162797 -1.266507 -1.423129 0.471267 1.229715 1.251837 -1.691850 -1.185875 -0.682753 0.079303 0.506954 -0.422362 0.679261 -0.704249 -0.452984 -0.163876 0.718932 2.222565 -0.536380 -1.086721 0.558704 1.005611 -1.066788 -1.998182 -0.583597 -1.394821 0.103889 0.016681 0.230696 0.839546 2.012203 -3.447398 1.371458 0.231587 0.283097 1.004998 0.269166 -0.775387 -2.720038 -0.421777 0.699039 1.892610 -0.183809 0.118307 0.764186 -1.218903 -0.018073 0.462727 0.380503 -0.217664 0.235245 -0.053833 -0.385873 -0.510211 0.391910 -0.673202 0.005903 -0.085022 0.948873 0.192527 -2.625874 1.076057 -0.551503 -0.508471 0.675979 -0.351646 1.345470 -1.509589 -1.240064 0.760401 0.108054 -0.514479 -1.009324 0.487378 1.159530 -0.308530 0.381200 -0.501391 -1.579266 0.730931 -1.069599 0.745241 0.604711 -0.393833 0.869360 -0.193914 -0.396072 -1.293155 -0.085152 -0.377907 -0.346528 -0.769128 -0.416280 0.121945 1.318407 1.411188 0.384432 -0.612047 0.159434 1.542991 -1.331686 -0.793439 1.068785 0.212755 -0.930155 0.982557 1.276887 -2.107615 -0.254638 -0.750314 -0.065980 0.078578 -1.080828 0.872019 -0.215048 0.779264 0.044471 0.251787 -0.093322 1.070219 0.570036 0.132139 -0.119360 2.130431 1.928662 -0.618010 -0.177325 -1.477592 0.706686 -1.904884 -1.418042 0.261505 0.372442 -1.098263 0.629926 0.330991 1.340685 -0.093169 0.253492 -0.613804 0.034038 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::deque() = -0.134985 0.044647 0.354579 -0.483050 0.549910 0.088847 0.201529 -0.076119 -0.407593 -0.278064 -0.051622 -0.180261 -0.325538 0.508851 -0.287880 0.175487 0.685734 0.233144 -0.013232 -0.281671 0.504541 -0.378768 0.741296 0.550209 -0.705318 0.024032 0.113630 0.478491 0.178216 0.686325 -0.124277 -0.301142 0.235834 -0.141753 0.304135 -0.578276 0.132328 0.152816 -0.140631 -0.819860 0.057798 -0.000649 0.042683 0.076769 -0.017101 0.407801 0.497784 0.453760 -0.305719 0.254868 0.487982 0.245467 0.043596 0.254718 0.039321 0.121099 0.323786 -0.150682 -0.267560 -0.045194 -0.181933 -0.602183 0.195018 0.471546 0.717687 -0.050878 0.134087 0.101580 -0.145468 0.189439 0.302293 0.144318 0.017558 -0.064976 0.377894 -0.501782 0.032796 -1.026964 -0.154732 -1.410365 -0.331059 -0.483727 0.314472 0.081345 0.233004 0.075510 0.612696 0.129432 0.150404 0.304597 0.508293 -0.395476 -0.138557 -0.394031 -0.335471 0.155184 -0.298252 -0.118973 0.119839 0.181319 -0.328582 -0.302921 0.279213 0.022939 -0.164612 -0.222198 -0.186577 0.521719 -0.756563 -0.260011 -0.457251 0.191631 -0.141264 -0.732082 0.163584 -0.416548 0.575146 -0.062501 0.129748 -0.190198 0.089220 0.484241 -0.180338 -0.105689 -0.412918 0.526413 0.225250 -0.027770 0.073586 -0.059290 -0.179646 0.419442 0.532085 -0.221229 -0.284187 0.153560 -0.277176 -0.021859 -0.470031 -0.018652 0.402115 -0.502966 0.042335 0.208508 -0.209486 -0.205406 0.253148 -0.177671 0.457101 1.142493 -0.074755 0.344908 0.202824 -0.515001 0.204794 0.102414 0.077607 0.392987 0.415288 -0.043707 -0.417980 -0.502799 0.098033 0.357492 0.318506 -0.495146 -0.327218 -0.279669 0.003384 0.106822 -0.145075 0.174713 -0.253007 -0.345423 -0.072836 -0.030371 0.763861 -0.095040 -0.351627 0.261544 0.180152 -0.494158 -0.487499 -0.242835 -0.204330 0.019747 0.006511 -0.109986 0.195625 0.633348 -1.258435 0.482187 -0.152620 -0.036584 0.295043 -0.124494 -0.047141 -0.758621 0.027789 0.344465 0.556591 -0.070394 0.089278 0.189560 -0.463995 0.116494 -0.043675 0.307502 -0.202035 0.176221 0.131822 -0.453949 -0.402199 -0.218670 -0.036267 -0.025069 -0.060315 0.167531 0.116068 -1.172288 0.438645 -0.299046 -0.212263 0.310834 0.100566 0.397027 -0.427307 -0.539629 0.247191 -0.003275 -0.274563 -0.500111 0.152708 0.436881 -0.197254 -0.018578 -0.264172 -0.582288 0.257773 -0.279509 0.156583 0.248568 0.199692 0.637110 0.093809 -0.252740 -0.562935 -0.041329 0.027289 -0.281780 -0.190195 0.097328 -0.116946 0.389802 0.703643 0.135435 0.012186 0.128760 0.789240 -0.437606 -0.292289 0.526305 0.192629 -0.178379 0.398957 0.528033 -0.528447 -0.473294 -0.274077 0.039679 0.168959 -0.347146 0.388474 -0.300562 0.212159 0.144694 0.221534 -0.326272 0.331715 0.079280 0.064328 -0.204890 0.800798 0.811812 -0.339140 0.105242 -0.240678 0.132154 -0.690593 -0.302954 -0.095449 0.016909 -0.068008 0.355615 -0.050349 0.537416 0.036175 0.130601 0.021996 -0.215045 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_base() = -0.627181 0.670745 1.713219 -2.899518 3.759007 2.452366 1.054755 -1.027844 -1.888266 -0.533929 -0.086584 -1.701600 -1.823028 2.728789 -1.469646 1.422070 3.150286 -0.073343 -0.638755 -0.514704 3.141252 -0.432064 3.770218 2.075285 -3.667066 0.133988 0.193505 1.849310 0.263870 3.734842 -1.531376 -2.047191 0.955257 -0.886064 0.987738 -1.561598 0.531214 -0.140666 0.188069 -3.295611 0.291287 0.546803 -0.775404 0.245706 -0.283809 0.868231 3.200373 2.271264 -1.531147 0.267548 2.461182 0.980751 -0.088442 1.199622 0.504489 0.590413 2.015496 0.205193 -1.448340 -1.144616 -1.152486 -1.440470 0.729122 2.481409 3.394596 0.042807 0.466571 1.085196 -0.619291 0.642841 1.069566 0.953265 0.346521 0.310484 2.121135 -1.394138 0.117304 -3.668542 -0.726811 -4.449886 -1.660144 -2.105502 0.499183 0.536507 1.806658 -0.919813 3.227399 0.232781 0.295499 1.338171 3.087979 -2.390380 -0.553708 -2.678641 -2.208193 -0.082242 -1.313475 -0.454294 0.467441 0.021755 -2.005624 -1.553948 0.570667 0.469915 -0.698519 -1.217020 -0.790438 2.518032 -2.614207 -1.297052 -1.474749 1.456499 -0.963511 -4.194944 -0.928742 -1.674705 1.485862 -0.703905 0.714290 -1.758705 0.486670 2.820337 -1.477145 -1.184886 -0.996844 2.983421 2.229001 0.296050 0.434669 -0.402648 -0.195381 2.567864 2.491695 -0.897211 -1.286612 -0.239070 -0.650870 0.234654 -1.619719 0.362044 1.013435 -2.331996 -0.061847 2.091838 -0.659588 0.159755 0.407672 -0.799810 1.980576 7.382271 -0.980275 2.151722 0.530698 -3.069232 1.634914 0.548086 -0.146879 1.321898 1.402687 0.148977 -3.325485 -2.649696 1.780779 1.768586 1.389967 -3.087331 -0.224707 -0.972257 -0.275334 -0.349550 -0.877368 1.122484 -0.797811 -1.728622 -0.535005 0.502575 4.952730 -1.145699 -3.570497 2.418958 0.975816 -1.668624 -1.592780 -1.709503 -1.165583 -0.034411 0.895903 -0.544911 1.605490 3.455120 -5.520258 2.217850 -0.239160 -1.199469 2.665369 -0.712766 -0.479737 -1.736510 -0.193653 2.271211 2.322324 -0.048860 -0.447542 0.116685 -2.169346 0.954184 0.076585 1.120836 -0.849345 0.801244 0.457923 -2.581999 -2.254377 -1.820979 -0.808248 -0.031943 -1.186860 0.654735 -0.356969 -5.647456 2.877935 -0.433664 -0.609446 1.318155 -0.132047 2.153068 -1.574014 -2.945244 1.520629 -0.319453 -1.061642 -1.854187 0.997109 1.750654 0.363533 1.013866 -2.508177 -4.052937 1.521035 -0.906391 1.545895 1.146119 1.462437 2.582384 0.946431 -1.374606 -3.202627 -1.739502 1.282011 0.151282 -1.973676 -0.215310 -0.826982 2.304205 2.552053 0.177831 -0.161751 -1.253404 3.239659 -2.251376 -0.691654 2.746417 0.510977 -2.371832 0.475541 2.905868 -1.448002 -2.151213 -1.285958 -0.034388 -0.719807 -2.252458 1.225361 -0.792061 0.962997 0.757734 0.706664 -1.481356 1.013332 0.264748 0.179138 -0.944994 3.934399 3.244127 -1.911342 0.231363 -1.655838 1.459512 -3.564022 -2.465589 0.816142 -1.238526 -0.621891 1.180036 0.169657 2.750879 -0.227546 0.513139 0.344519 -1.164591 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.302740 0.045903 0.614985 -0.679681 0.531472 0.170376 0.216135 -0.192216 -0.615585 -0.293899 -0.068824 -0.376353 -0.384900 0.861122 -0.394108 0.242275 1.257287 0.518139 -0.184663 -0.396427 0.704861 -0.589652 1.061287 1.062772 -0.896171 -0.051506 0.494943 0.666891 0.389520 0.754280 -0.446113 -0.359789 0.317958 -0.415034 0.359963 -0.932442 0.158762 0.143928 0.001580 -1.352332 0.143779 -0.261436 0.001538 -0.088511 -0.089430 0.655751 0.797811 0.674863 -0.315570 0.184514 0.647209 0.283282 -0.064668 0.243072 0.223966 0.358258 0.655623 0.235544 -0.314569 -0.046844 -0.175701 -0.736609 0.235236 0.807978 1.049011 0.070800 0.127749 0.135880 0.022629 0.170152 0.290054 0.116899 0.070045 0.148197 0.390758 -1.128382 0.154715 -1.792578 -0.221582 -2.064834 -0.464467 -0.561942 0.372784 -0.383028 0.310397 0.194140 0.881792 0.070392 0.223316 0.367652 1.005986 -0.774068 -0.332695 -0.546661 -0.475747 0.316603 -0.478200 -0.042041 0.360807 0.052375 -0.572913 -0.702957 0.535163 0.235096 -0.314364 -0.191730 -0.074204 0.820674 -0.917141 -0.484160 -0.724437 0.029547 -0.174465 -1.153461 0.244904 -0.659207 1.005679 0.043389 -0.186741 -0.716331 0.170482 0.803041 -0.259377 -0.311972 -0.337871 0.809970 0.288633 -0.062500 0.025938 -0.174135 -0.011986 0.743495 0.829724 -0.508478 -0.186712 0.225611 -0.793473 -0.161744 -0.862297 -0.232379 0.640684 -0.717628 0.029889 0.458137 -0.533943 -0.193791 0.959272 -0.138554 0.605826 2.222706 -0.137565 0.520538 0.267958 -0.868374 0.419599 0.026998 -0.036046 0.357312 0.639454 0.191999 -1.167726 -0.729906 0.203195 0.780413 0.596630 -0.886001 -0.570466 -0.513404 -0.061994 0.124167 -0.055892 0.193105 -0.398001 -0.504622 -0.235157 0.230540 1.315846 -0.374936 -0.743381 0.193859 0.082885 -0.535171 -1.056482 -0.251631 -0.339452 0.157504 -0.091502 -0.138110 0.489135 1.036037 -2.069950 0.805717 -0.348850 -0.267770 0.669506 -0.047431 -0.277297 -1.091639 0.176717 0.677767 0.956936 0.052200 0.013518 0.278712 -0.794640 -0.094003 -0.032541 0.542290 -0.354170 0.347832 0.344173 -0.760474 -0.602536 -0.186923 0.023587 -0.350093 -0.052952 0.367809 -0.094224 -1.847293 0.917085 -0.239284 -0.203751 0.408836 -0.061890 0.409255 -0.905816 -0.957634 0.384481 0.153193 -0.128907 -0.598035 0.072539 0.764280 -0.217076 0.079565 -0.475161 -1.051162 0.339408 -0.383334 0.451976 0.306638 0.244329 0.942920 0.076461 -0.184042 -0.878262 0.083527 -0.025211 -0.300637 -0.422246 -0.200679 -0.179529 0.722169 1.085170 -0.000792 0.007689 0.090174 1.047364 -0.852163 -0.375592 0.594749 0.575723 -0.364363 0.356895 0.670717 -0.958349 -0.619494 -0.385063 -0.308617 0.095071 -0.623673 0.471481 -0.499318 0.315242 0.288566 0.176839 -0.295856 0.481671 0.165215 0.126367 0.004439 0.985419 1.451353 -0.542858 0.086112 -0.607656 0.345968 -1.137241 -0.680089 0.040135 0.076030 -0.304491 0.298685 0.071256 0.719320 -0.022048 0.113815 -0.016137 -0.227637 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -3.039000 1.595114 5.605743 -10.237801 11.084487 9.406237 2.635187 -4.325728 -7.263819 -0.727688 0.080835 -8.411830 -5.647567 10.511320 -4.686833 5.357427 12.218193 0.238368 -4.032656 -0.866789 10.229079 0.218742 12.227855 8.449579 -11.171257 -0.051707 1.205985 5.943893 1.246594 10.287287 -6.332955 -7.484804 2.379390 -3.620927 1.671472 -4.596522 1.572113 -0.445728 2.821118 -12.119414 1.770759 1.682213 -2.447167 -0.716531 -1.302439 1.958253 11.136319 7.736651 -3.926183 -0.506541 8.161067 3.190485 -1.170222 2.806226 2.528213 2.493586 7.611893 2.100734 -4.477171 -4.480302 -2.712819 -2.290663 1.349532 9.097445 11.411438 1.245043 0.422153 3.715419 0.156901 1.512281 2.696817 2.587610 1.170527 2.815986 5.547532 -4.891390 0.874310 -12.438607 -1.434681 -13.096607 -5.550456 -4.790207 2.241406 1.321903 4.942540 -3.751143 11.128774 -0.800252 -0.089351 4.618774 12.481850 -8.760542 -2.875945 -9.025561 -7.829787 0.585913 -4.506424 -0.750550 1.800335 -0.053932 -7.607022 -6.468445 1.602830 2.454446 -3.126137 -2.769812 -0.906026 8.469894 -7.460150 -4.495893 -3.828747 5.224817 -1.771603 -14.761221 -5.058446 -5.868174 3.601154 -1.773148 -0.546467 -8.408085 1.639309 8.506208 -5.542306 -4.117864 -3.185694 9.673245 7.533627 0.862936 0.802327 -1.403430 2.131534 9.968885 5.844948 -5.102868 -2.465045 -1.032197 -3.007826 0.362779 -6.386106 -0.234083 2.191352 -7.888971 0.310046 7.845606 -3.769117 1.236294 1.756670 -1.620697 5.092988 28.232283 -3.463045 7.948299 2.070815 -10.657973 6.320297 0.667877 -1.795121 2.549232 4.073581 2.340745 -13.088618 -9.088354 7.475842 8.064804 5.583521 -10.291127 0.485658 -2.614359 -1.434902 -1.972311 -1.074927 3.479977 -2.557429 -5.388740 -2.893563 4.373314 18.500218 -4.303489 -12.889476 7.443510 3.400916 -3.485551 -5.690450 -5.043374 -4.147344 0.395526 3.539075 -1.047721 7.405680 12.889420 -19.276545 8.129230 0.270244 -4.951149 10.229522 -1.597133 -3.849673 -4.601818 -0.685342 8.776060 9.217388 0.214515 -1.780213 0.030685 -8.217347 1.335127 1.274922 3.438291 -3.544436 3.325275 2.464203 -8.798808 -6.972136 -5.083784 -3.493118 -1.434506 -5.079844 3.169517 -2.169349 -18.844057 11.738612 0.351988 -0.913449 3.227287 -2.656383 6.767062 -6.918168 -10.351274 5.305543 -0.464424 -2.453171 -4.398046 2.524180 6.454991 2.015626 5.202543 -9.351095 -14.575281 5.674188 -2.219650 7.122861 3.260699 3.537801 6.593489 3.152143 -2.950105 -10.180052 -6.206243 4.646464 1.697851 -7.731843 -1.334254 -3.038195 8.631754 7.952619 -0.941850 -2.376628 -5.414981 9.383263 -7.272105 -1.474074 7.637136 1.472259 -9.633298 -0.218032 9.170414 -5.851031 -5.419746 -5.156372 -1.729149 -4.686358 -8.507269 3.479318 -1.702057 3.302763 3.026056 0.546087 -3.804838 3.520190 1.572155 -0.463111 -0.675393 12.943916 10.037828 -5.454324 1.264690 -8.265036 6.151445 -12.744505 -10.316447 4.481814 -4.663257 -4.451735 1.734700 0.663024 8.867515 -1.572682 1.943589 0.094038 -2.227503 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.169571 0.045099 1.021964 -0.814683 0.494689 0.124351 0.191988 -0.002163 -0.816987 -0.134451 -0.149211 -0.607300 -0.364131 0.857532 -0.306858 0.031026 1.264953 0.640065 -0.316842 -0.306753 0.399686 -0.537422 0.885508 1.110620 -0.820302 0.132818 0.032077 0.797015 0.254652 1.224531 -0.695721 -0.312131 -0.050626 0.113967 0.550635 -0.929721 -0.037475 0.188806 -0.278629 -1.594883 0.203350 0.416700 0.483269 -0.132870 0.219889 0.599170 0.857733 0.571585 -0.122254 0.071335 0.448231 0.187034 0.273297 0.157847 0.496263 0.446277 1.331992 0.113856 -0.410503 0.100620 -0.174095 -0.679726 0.228522 0.747218 0.978286 0.140522 -0.055089 -0.433354 0.259879 0.134506 0.322412 0.155415 -0.056739 0.183606 0.182845 -0.468692 0.748245 -1.121964 0.182480 -1.493345 -0.564467 -0.453296 0.745654 0.293494 0.067390 -0.311533 0.924808 -0.204075 0.245243 -0.050172 0.888019 -0.538402 -0.272824 -0.430804 -0.586842 0.337059 -0.259228 -0.327977 0.256293 0.167653 -0.543538 -0.342894 0.654994 0.098461 -0.372799 0.697652 -0.029307 0.825158 -0.797267 -0.319598 -0.592952 0.240258 0.035072 -0.975453 0.237026 -0.771093 0.196190 0.033624 -0.337563 -0.462633 0.265996 0.485864 -0.438202 0.137746 -1.366485 1.123968 0.075026 -0.271243 -0.048967 -0.202360 -0.042597 0.199487 0.363146 -0.638677 -0.031139 0.397201 -0.711390 -0.235175 -0.830260 -0.229210 0.352441 -0.569114 -0.337319 0.090869 -0.560738 0.247405 -0.036798 0.102536 0.462280 2.152414 -0.283963 0.564826 0.165133 -0.699462 0.937995 0.518461 -0.060971 0.253940 0.572830 0.249813 -1.117950 -0.683245 0.129210 0.847863 0.594862 -0.578886 -0.242382 -0.446630 -0.240982 0.276524 0.269769 0.005713 -0.341779 -0.524820 -0.289492 -0.083128 1.361507 -0.048329 -1.248453 0.037427 -0.203338 -0.523037 -0.762996 -0.084172 -0.174607 0.117985 -0.535978 -0.221353 0.616661 0.980289 -2.127362 1.021597 -0.207886 -0.537175 1.260659 -0.507166 -0.140470 -1.019277 -0.072177 0.560318 1.209016 0.040938 -0.459976 0.237623 -0.785367 -0.135801 -0.112003 0.499548 -0.520362 0.426571 0.334626 -0.716976 -0.325334 -0.814637 -0.002841 -0.265495 -0.496986 0.324054 -0.016777 -1.507679 0.799893 0.030260 -0.059445 0.317861 -0.005638 -0.196344 -0.756217 -0.752293 0.062907 0.257331 -0.300489 -0.683676 -0.102154 0.663078 -0.356638 0.036969 -0.641570 -0.931672 0.485682 -0.547313 0.560689 0.405007 0.018554 0.491881 1.416955 -0.087923 -0.489074 0.084758 -0.054407 -0.350757 -0.193091 0.120412 -0.427252 0.535502 1.008357 0.040612 0.215715 -0.259705 1.122688 -0.161574 -0.437950 0.520150 -0.670221 -0.200376 0.281523 0.665824 -0.843291 -0.537739 -0.551149 -0.548586 0.096880 -0.341382 0.615459 -0.434224 0.223456 0.252251 -0.055426 -0.542670 0.376797 0.066184 -0.321973 0.130827 1.241953 0.858414 -0.208401 0.666691 -0.512964 0.445140 -0.953985 -0.187363 -0.252887 -0.125270 -0.566024 0.247517 0.148606 0.633813 0.021602 0.187160 -0.017694 -0.048256 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.078854 -0.074014 0.599562 -0.432386 0.166230 -0.159474 0.106740 -0.036340 -0.481460 -0.015328 -0.088108 -0.192976 -0.032029 0.440711 -0.095578 0.198370 0.749446 0.450558 -0.171316 -0.337885 0.358198 -0.778264 0.503601 0.723464 -0.543336 0.118389 0.182346 0.589918 0.419095 0.640044 -0.529943 0.250235 -0.052456 -0.304487 0.441496 -0.752935 0.009734 0.228769 -0.019859 -1.066644 0.087150 0.012133 0.515760 -0.026113 0.074103 0.567353 0.388152 0.345097 -0.154466 0.190505 0.343759 -0.188216 0.276741 0.086188 0.269031 0.473254 0.975772 0.344893 -0.197531 0.160271 -0.013207 -0.654808 0.421207 0.412464 0.647380 -0.032191 -0.018997 -0.067968 0.297685 -0.000120 0.270985 0.127087 -0.250175 -0.039542 0.199824 -0.908869 0.636422 -1.041336 0.063495 -1.214268 -0.365046 -0.321273 0.372465 -0.249328 0.229979 0.086367 0.565178 -0.121216 0.166986 -0.192189 0.387117 -0.472299 -0.150848 -0.216206 -0.291744 0.225371 -0.193227 -0.280121 0.465398 0.071230 -0.255189 -0.254182 0.752824 0.187244 -0.283145 0.329164 -0.065954 0.489653 -0.473074 -0.502060 -0.414033 -0.072942 -0.201760 -0.517848 0.653379 -0.564713 0.324904 0.030121 -0.092954 -0.434162 0.057827 0.414967 -0.167282 -0.059846 -0.796400 0.714104 0.072555 -0.188358 0.011000 -0.144686 -0.114592 0.166986 0.458236 -0.397610 -0.112873 0.408008 -0.694018 -0.136886 -0.599887 -0.303332 0.513990 -0.424097 -0.418980 -0.022785 -0.321752 0.306926 0.732848 0.178098 0.270937 1.321025 -0.007375 0.280081 0.144695 -0.344805 0.690381 0.347223 0.054152 0.368995 0.424107 0.036470 -1.093175 -0.431354 -0.127088 0.481935 0.323435 -0.512737 -0.644999 -0.379571 -0.118883 0.382063 0.051270 -0.024664 -0.218727 -0.294846 -0.103739 -0.207903 0.882329 -0.167780 -0.496713 -0.045607 -0.364945 -0.683488 -1.108619 -0.091615 -0.380515 0.036772 -0.758670 -0.080219 0.294193 0.525615 -1.353055 0.613408 -0.419927 -0.343167 0.876697 -0.336986 -0.049074 -1.142319 -0.011591 0.186453 0.732440 -0.083026 -0.287507 0.311191 -0.506022 -0.051905 -0.180077 0.263011 -0.337964 0.303335 0.151296 -0.378274 -0.135798 -0.256744 0.087613 -0.269532 -0.044754 0.213662 -0.037618 -0.796794 0.323584 -0.126730 -0.140331 0.480697 0.105452 -0.191037 -0.496513 -0.359152 0.066805 0.363773 0.055721 -0.627998 -0.068423 0.453677 -0.383749 -0.345585 -0.367132 -0.617773 0.110125 -0.614561 0.195505 0.284399 -0.107214 0.332851 0.874961 -0.080086 -0.442726 0.459097 -0.593975 -0.297374 -0.038745 -0.296404 -0.230783 0.360883 0.714606 0.129577 0.438070 0.100259 0.761150 -0.314493 -0.426466 0.282354 -0.198345 -0.067303 0.202706 0.339645 -0.646178 -0.293142 -0.258901 -0.492667 0.301757 -0.099810 0.545250 -0.326648 0.150977 0.090214 -0.015765 -0.141369 0.355117 0.036914 -0.088307 -0.042865 0.831681 0.789989 -0.157629 0.141479 -0.269928 0.184653 -0.542344 0.045125 -0.264652 0.344807 -0.390302 0.248287 0.384907 0.437387 0.137171 -0.081048 0.041243 -0.201288 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.152502 -0.083999 1.457002 -3.738131 4.210666 1.780650 0.970947 -0.537077 -2.309035 -1.329025 -0.626971 -0.934536 -1.886597 3.560338 -1.302119 2.638637 3.870388 -0.026644 -0.519700 -1.155548 5.055018 -2.806401 4.105715 1.463458 -4.634225 -0.359468 1.278983 3.664074 1.252770 4.008919 -0.800534 -1.385407 0.530148 -2.261720 1.975962 -3.317865 1.896699 1.239028 -0.126594 -4.454872 0.322494 -0.010446 -0.517235 0.316828 -1.340968 1.695172 2.814064 3.290925 -3.153245 0.321746 3.843572 0.681089 -0.551881 1.560322 -0.941597 0.925997 1.215162 0.510570 -1.757209 -1.090519 -0.525980 -3.308820 2.433890 2.569972 4.712672 -1.128968 1.030798 3.355377 -0.559138 0.998763 1.699426 0.615375 -0.382052 -1.468594 3.381350 -4.363739 -1.091345 -7.100240 -0.696033 -8.165074 -1.657810 -3.142147 0.496597 -0.272222 2.059182 -0.410747 4.114472 0.259147 0.424355 3.110876 3.114753 -2.766741 -0.683950 -5.188828 -2.620925 0.791900 -2.236371 -1.956670 2.106708 0.780323 -1.651364 -2.072466 0.848991 0.620174 -0.910771 -3.576105 -1.777266 3.574653 -3.675406 -2.703043 -2.333385 2.251848 -1.837292 -5.059207 0.847812 -2.461323 2.436529 -1.310597 2.526986 -2.044620 -0.074067 4.156977 -1.345139 -1.659410 -1.132884 3.965272 2.532061 -0.323799 1.014944 -0.236139 -0.829618 3.079309 4.360361 -1.220079 -3.141811 1.231102 -1.857092 -0.202350 -3.230708 -0.153107 3.144934 -3.744688 -0.811900 2.502612 -0.545911 -0.298954 3.042590 -1.416337 3.311276 9.694601 0.080036 1.506654 0.490310 -3.410272 2.822652 1.079629 -0.208997 2.642254 1.614526 -0.791348 -4.995482 -3.407200 1.261218 1.579261 2.032344 -3.795754 -2.785290 -2.085580 -0.133891 0.405487 -2.228910 2.284511 -1.794754 -1.760373 -0.457092 0.056716 6.028939 -1.451835 -2.133360 3.463521 2.279507 -4.739143 -5.024653 -2.324014 -3.049149 -1.077129 0.140544 -0.778975 1.729614 4.253585 -7.068451 2.582860 -0.343366 -0.601842 1.711541 -1.562986 0.168279 -6.271528 -0.337590 2.645744 3.582869 -1.381550 0.833465 0.417859 -2.592785 1.825274 0.178568 1.187782 -0.154568 0.413378 -0.781852 -2.296022 -2.630702 -0.280212 -2.011043 0.180510 0.071058 0.506395 0.098297 -6.008570 3.339257 -2.663757 -0.634861 2.831639 0.710304 3.740071 -2.250426 -3.640888 2.626478 1.072092 -0.780498 -3.584249 1.774927 3.225162 -0.597984 -0.669042 -1.613445 -6.160128 0.718625 -2.418935 0.594311 1.102305 1.448587 3.631339 0.793906 -1.775719 -5.025025 -1.495322 -0.700373 -0.165826 -1.757201 -1.658317 0.258465 3.149096 3.080440 0.684824 0.363786 0.092393 4.572451 -3.402049 -2.024737 3.287415 0.929979 -2.907552 1.397039 3.623436 -3.024118 -2.933675 -2.094983 1.528505 0.467764 -2.993275 1.452733 -1.179999 1.039540 1.230587 1.356432 -1.328398 1.910681 1.356856 0.463673 -2.750055 6.181572 5.104118 -2.624775 -0.954155 -1.890263 1.086242 -4.473995 -2.525984 0.082269 0.448356 0.140465 2.589386 1.718365 3.416877 -0.363780 1.199007 0.735715 -2.998109 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::empty() const = -0.178614 0.525037 0.778518 -0.803974 0.880454 0.997870 0.186322 -0.410164 -0.568377 -0.103683 -0.062039 -1.054328 -0.589954 0.906531 -0.438553 0.145868 1.102368 0.068441 -0.356537 0.061467 0.333768 0.372157 1.048815 0.902144 -0.775103 0.118119 0.158182 0.312424 -0.255392 1.202119 -0.741611 -1.156812 0.080654 0.243019 0.104293 -0.216204 -0.146610 -0.342636 0.137858 -1.135067 0.143618 0.488580 -0.153019 -0.254064 0.080267 -0.269287 1.312017 0.570341 0.051753 -0.228121 0.392187 0.595475 -0.004668 0.138192 0.616476 0.173009 1.125457 -0.154533 -0.363281 -0.271460 -0.276403 0.106828 -0.308730 0.901708 0.820895 0.335310 -0.128062 -0.251629 -0.106593 0.087432 -0.056331 0.265787 0.147602 0.822793 0.056436 0.108814 0.475668 -0.534078 0.051232 -0.454264 -0.552631 -0.292145 0.143364 0.679208 0.305714 -0.436004 0.957641 -0.163902 0.128152 0.041504 1.336598 -0.681005 -0.243823 -0.415594 -0.676365 0.055513 -0.221996 0.080153 -0.353517 -0.143229 -0.715664 -0.552260 0.167613 0.190255 -0.321957 0.431903 0.097020 0.602591 -0.580257 -0.127476 -0.335191 0.266812 -0.012784 -1.269502 -0.809955 -0.347803 -0.108797 0.001645 -0.474061 -0.917130 0.388356 0.579329 -0.532767 -0.213915 -0.687831 0.814533 0.460813 0.032122 -0.023679 -0.235737 0.483503 0.755130 0.119273 -0.470491 0.144092 -0.227333 -0.145678 -0.095302 -0.334357 0.046585 -0.496648 -0.470906 0.099046 0.761530 -0.489383 0.215760 -0.768282 -0.204404 0.351789 2.507700 -0.591262 0.721294 0.059485 -1.126887 0.503951 0.020841 -0.476262 -0.279435 0.262575 0.676484 -0.849587 -0.631632 0.791130 0.942326 0.541002 -0.514967 0.510618 -0.124061 -0.277357 -0.223849 0.365974 0.088176 -0.184947 -0.589545 -0.412074 0.488527 1.604527 -0.195081 -1.543874 0.444850 0.123807 0.226444 0.117810 -0.157197 -0.136182 0.198482 0.336330 -0.226500 0.715969 1.060810 -1.810806 0.863466 0.150673 -0.787532 1.185091 -0.226614 -0.383521 0.259028 0.052827 0.981300 0.808597 0.166683 -0.218581 -0.265215 -0.710386 -0.168764 0.082526 0.389274 -0.493924 0.410506 0.440846 -1.065401 -0.606602 -0.834963 -0.095222 -0.334307 -0.862537 0.341374 -0.091898 -1.685982 1.275208 0.513632 0.067797 -0.067762 -0.443055 0.189034 -0.680787 -0.977543 0.225834 -0.288619 -0.201217 0.123825 -0.119356 0.368620 0.290247 0.804717 -0.873703 -0.853786 0.503359 0.118981 0.810715 0.368131 0.459705 0.272112 0.623661 -0.111734 -0.388905 -0.618839 0.863006 0.149422 -0.617961 0.207027 -0.497289 0.678641 0.742714 -0.221259 -0.354477 -0.841595 0.595927 -0.193912 0.091862 0.482866 -0.432836 -0.835019 -0.315768 0.632328 -0.225678 -0.412293 -0.512697 -0.315180 -0.701349 -0.741427 0.103450 -0.213633 0.118261 0.496428 -0.262612 -0.631248 0.144521 0.001145 -0.220716 0.325190 0.742819 0.276720 -0.265455 0.628743 -0.756284 0.565475 -1.084771 -0.909403 0.423335 -0.754951 -0.577492 -0.255160 -0.218682 0.536892 -0.209695 0.418711 0.023326 0.066069 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.258145 0.407641 0.406118 -0.746719 0.794726 0.780605 0.190967 -0.528182 -0.475771 -0.172636 -0.018596 -0.710390 -0.426924 0.879984 -0.431182 0.385860 1.176880 0.095917 -0.257833 -0.201200 0.716329 0.026076 1.155388 0.919032 -0.911711 0.009772 0.720055 0.380258 0.134089 0.760292 -0.496697 -0.886290 0.279982 -0.411630 0.131958 -0.439868 0.022113 -0.255929 0.444947 -1.153436 0.095516 -0.151413 -0.205122 -0.187129 -0.171207 -0.169943 1.115182 0.662557 -0.197161 -0.027775 0.683822 0.563310 -0.190388 0.175907 0.396267 0.328967 0.794945 0.159102 -0.222615 -0.300211 -0.200059 -0.020675 -0.051255 0.949701 0.959553 0.195825 0.009182 0.300395 -0.079968 0.133897 0.017124 0.259213 -0.050600 0.650092 0.300340 -0.933873 0.123052 -1.543521 -0.185071 -1.347269 -0.516074 -0.439524 -0.115002 -0.272541 0.581143 0.298415 0.965083 -0.007832 0.156058 0.284397 1.284251 -0.812917 -0.272234 -0.512290 -0.615669 0.169086 -0.400320 0.182509 0.113320 -0.169055 -0.682537 -0.862854 0.334531 0.382127 -0.350465 -0.298835 0.037334 0.655834 -0.654624 -0.478797 -0.476213 0.105722 -0.323235 -1.362960 -0.616669 -0.457383 0.620763 -0.016026 -0.285479 -1.204004 0.220558 0.901372 -0.368224 -0.596209 0.253381 0.529965 0.664103 0.150293 0.037076 -0.210434 0.397864 1.208853 0.659763 -0.437021 -0.029142 -0.150169 -0.393324 -0.093485 -0.539033 -0.091669 -0.030389 -0.616324 0.328534 0.975646 -0.482299 -0.158047 0.604409 -0.360092 0.481168 2.781435 -0.348446 0.657956 0.227339 -1.138834 0.108342 -0.212543 -0.369499 0.002610 0.437332 0.525475 -1.079528 -0.710299 0.628797 0.894206 0.543604 -0.858874 -0.230055 -0.284539 -0.184547 -0.102997 0.032348 0.158580 -0.273678 -0.540302 -0.334711 0.598372 1.517821 -0.495258 -1.167538 0.438422 0.420499 -0.176764 -0.561558 -0.293820 -0.613912 0.228218 0.353871 -0.152450 0.636861 1.085587 -2.059153 0.746369 -0.064340 -0.521272 0.847763 0.151196 -0.429961 -0.389202 0.260350 0.932046 0.724885 -0.033652 0.109735 -0.057837 -0.777081 -0.116956 0.068244 0.424511 -0.427355 0.404226 0.367861 -0.969887 -0.736396 -0.104493 -0.019983 -0.483386 -0.307146 0.388687 -0.140512 -1.925923 1.239231 0.143279 -0.100830 0.243419 -0.427404 0.594401 -0.858110 -1.062118 0.482625 -0.084929 0.118241 0.031310 -0.012273 0.616624 0.295542 0.745223 -0.736295 -0.905736 0.262806 -0.016976 0.655458 0.349483 0.489505 0.649358 -0.576869 -0.159423 -0.831899 -0.240157 0.407821 0.189709 -0.719903 -0.448813 -0.307477 0.832131 0.924661 -0.188083 -0.334109 -0.447808 0.703066 -0.956310 0.024494 0.494305 0.596871 -0.883419 -0.157602 0.600556 -0.513113 -0.478581 -0.366873 -0.239479 -0.450086 -0.834253 0.208256 -0.329681 0.224826 0.467300 -0.126787 -0.286387 0.366558 0.129522 0.202706 0.171744 0.567196 0.942798 -0.554259 -0.015965 -0.796933 0.395705 -1.222575 -1.118819 0.476517 -0.420811 -0.450525 -0.089087 -0.143883 0.698404 -0.142125 0.312815 0.024754 -0.174466 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::back() = -0.390802 0.510683 0.764935 -0.774087 0.907905 0.588112 0.319152 -0.191445 -0.635904 -0.656552 -0.160579 -1.083574 -1.118833 1.258946 -0.539699 0.095193 1.651053 0.410552 -0.209831 -0.206028 0.648831 -0.187011 1.516692 1.328559 -1.165615 -0.025295 0.423613 0.641382 -0.011973 1.140311 -0.364246 -1.288780 0.483178 0.072726 0.430528 -0.706164 0.098872 -0.181229 -0.282924 -1.720628 0.119705 0.358452 -0.097923 -0.224563 -0.058412 0.473900 1.556283 0.935889 -0.277165 -0.051535 0.635484 0.610942 -0.028659 0.343631 0.352329 -0.049470 0.601758 -0.314911 -0.652445 -0.196845 -0.332441 -0.848683 -0.270739 1.172979 1.369957 0.237270 0.066982 0.003973 -0.324049 0.349835 0.049002 0.275607 0.556880 0.611158 0.481239 -0.378068 0.019652 -1.587857 -0.261018 -2.377140 -0.765859 -0.793318 0.604423 0.501019 0.232334 -0.287648 1.317540 0.156943 0.339742 0.633206 1.834122 -0.907651 -0.470114 -0.833841 -0.593438 0.440219 -0.650473 0.126864 0.105367 -0.006744 -0.969986 -0.832723 0.274487 0.083339 -0.419225 -0.061170 -0.092845 1.022521 -1.248714 -0.207515 -1.078412 0.009708 0.116377 -1.815123 -0.294374 -0.409340 0.603474 0.219866 -0.363047 -0.818254 0.402722 0.778190 -0.415298 -0.329783 -0.837983 1.151197 0.357066 -0.057415 0.176090 0.022000 0.360174 1.006072 0.770307 -0.519367 -0.165415 -0.024627 -0.622415 -0.172214 -0.786869 -0.137388 0.339144 -0.910761 0.215236 0.743449 -0.741022 -0.396883 -0.285929 -0.502054 0.816141 2.699290 -0.445996 0.776753 0.258619 -1.391717 0.595892 -0.175977 -0.460511 0.022688 0.746003 0.702316 -0.776428 -0.926236 0.726812 1.239209 0.813031 -0.825688 0.103743 -0.389903 -0.018311 -0.348202 0.252333 0.390918 -0.297948 -0.763739 -0.377985 0.705955 1.710559 -0.430294 -1.313074 0.488591 0.413246 0.061288 -0.572901 -0.244934 -0.143199 0.109751 0.316032 -0.221029 0.651922 1.505713 -2.401645 1.147585 0.085548 -0.443185 0.910436 -0.177040 -0.487456 -0.829682 0.330545 1.333109 1.144569 0.208136 0.016867 -0.192665 -1.088842 -0.178985 0.132237 0.750281 -0.471064 0.544618 0.246544 -1.070352 -1.035007 -0.745392 -0.107597 -0.390721 -0.547505 0.481285 0.338781 -2.385020 1.650982 -0.084927 -0.224487 -0.032050 -0.308643 0.576267 -1.211505 -1.509730 0.402422 -0.442938 -0.754608 -0.419839 0.013841 0.736734 0.031835 0.329875 -0.612337 -1.205433 0.906300 0.002161 0.825369 0.447860 0.670232 1.172986 0.534074 -0.463295 -0.778013 -0.544837 0.662396 -0.424282 -0.728141 0.193028 -0.359525 0.930426 1.450116 -0.207363 -0.407334 -0.365249 1.110656 -0.779861 -0.439319 0.914628 0.138918 -0.641267 0.358909 1.020231 -0.889639 -0.841429 -0.821356 -0.133646 -0.351219 -1.165848 0.181846 -0.754266 0.172560 0.737199 -0.121866 -0.724725 0.467440 0.185453 -0.078996 0.041212 1.223013 1.238870 -0.834503 0.575041 -0.995189 0.572320 -1.686461 -1.195540 0.345305 -0.325183 -0.287390 0.037624 -0.141113 0.663926 -0.216436 0.208062 -0.243806 -0.107796 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator--() = -0.673661 0.842930 1.295686 -1.916687 1.821214 2.201069 0.389635 -0.986874 -1.134223 -0.225985 -0.240855 -1.657234 -0.995621 2.155663 -1.035597 0.703260 2.703921 0.321035 -0.685232 0.012586 1.507298 0.418895 2.411934 1.996496 -1.909915 -0.146819 1.070974 0.860876 -0.175038 2.163507 -1.359179 -2.282774 0.382895 -0.411465 0.257667 -1.072844 0.139066 -0.415178 0.634192 -2.608023 0.372247 0.171918 -0.677994 -0.597796 -0.262118 -0.699478 2.578325 1.511465 -0.411883 -0.579125 1.233573 1.495439 -0.551487 0.388423 0.867087 0.687190 1.531159 0.194312 -0.621005 -0.740781 -0.498288 0.131447 -0.087431 2.109420 2.061241 0.648345 0.103646 0.237257 -0.184262 0.216729 -0.031098 0.372929 0.168804 1.436081 0.458132 -1.206882 0.308883 -2.616209 -0.163432 -1.880880 -1.008266 -0.916449 -0.196409 0.437058 1.033498 -0.412869 2.069337 -0.270482 0.462787 0.810307 2.901021 -1.794229 -0.597236 -1.587670 -1.659940 0.325656 -0.779394 0.170648 -0.354943 -0.472035 -1.541293 -1.857788 0.249222 0.818297 -0.651985 -0.299486 0.196597 1.564137 -1.268931 -0.889405 -0.880188 0.595445 -0.594563 -3.049621 -1.491370 -1.148045 0.666398 -0.138365 -0.707802 -2.535519 0.566008 1.964028 -0.971562 -1.095374 -0.332725 1.662728 1.306776 0.014469 -0.012209 -0.719932 0.739172 2.225503 1.048358 -1.074424 0.003527 -0.271715 -0.883361 -0.481497 -1.326601 -0.070308 -0.272280 -1.404972 0.198650 2.196517 -1.113566 0.112536 0.241016 -0.681517 1.255082 6.592336 -0.978399 1.444128 0.291150 -2.681957 0.949675 -0.083151 -0.922531 -0.233388 0.800687 1.200789 -2.784835 -1.576294 1.429733 1.952063 1.375802 -1.427773 0.099078 -0.762400 -0.616424 -0.404375 0.166780 0.392145 -0.821007 -1.366457 -0.831117 1.325232 3.546674 -0.810341 -2.779747 1.087983 0.932305 -0.219311 -0.670016 -0.608944 -1.102434 0.413376 0.942822 -0.550993 1.647251 2.516214 -4.203883 1.770359 0.041530 -1.337439 1.931247 -0.144083 -0.915102 -0.176795 0.432481 2.295978 1.859151 0.061099 0.096464 -0.303644 -1.631190 -0.234522 0.254365 1.024753 -0.881471 0.749772 0.836646 -2.348859 -1.602335 -0.764692 -0.438977 -1.128025 -1.182878 0.712516 -0.427103 -3.801745 2.936156 0.581837 0.115297 0.492263 -0.992349 1.092624 -1.890455 -2.458575 1.009583 -0.016908 0.233621 0.131625 0.035395 1.460418 0.653023 1.605338 -1.784795 -2.545985 0.655042 0.147626 1.607857 0.675588 1.092111 1.133489 0.037194 -0.218575 -1.694715 -1.344190 1.383164 0.654824 -1.703106 -0.582562 -0.720964 1.887007 1.887969 -0.562569 -0.882368 -1.297376 1.604954 -1.307933 0.200195 1.141979 0.230078 -2.033402 -0.822051 1.499401 -1.093524 -1.183763 -0.917515 -0.167231 -1.095979 -1.969596 0.264695 -0.628824 0.522608 0.995585 -0.214047 -0.965639 0.514375 0.447813 0.122851 0.558201 1.613385 1.280889 -0.880248 0.477679 -1.745099 1.046105 -2.742742 -2.347917 0.960001 -1.348395 -0.953507 -0.097856 -0.269329 1.507130 -0.568159 1.237504 0.313460 -0.428346 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator*() const = -0.123077 0.225392 0.274166 -0.343964 0.398271 0.352908 0.086009 -0.235578 -0.231895 -0.130017 -0.067307 -0.282133 -0.207557 0.425753 -0.234330 0.174848 0.587781 0.105968 -0.070452 -0.118856 0.293246 -0.081703 0.575746 0.485162 -0.444234 0.015046 0.329864 0.187070 0.018350 0.479682 -0.325322 -0.459486 0.158813 -0.166888 0.068299 -0.308627 0.015340 -0.075509 0.137863 -0.601169 0.050550 -0.142102 -0.153359 -0.066477 -0.066159 0.019557 0.576456 0.312948 -0.077722 0.048001 0.297870 0.321537 -0.089772 0.107172 0.187172 0.208395 0.377282 -0.031450 -0.117961 -0.085157 -0.106023 -0.132396 -0.015081 0.451651 0.462427 0.079170 0.025860 0.095506 -0.119323 0.030982 0.014166 0.111206 0.020472 0.298133 0.106285 -0.474466 0.082230 -0.715441 -0.124626 -0.696368 -0.238319 -0.269197 -0.065989 -0.027399 0.271790 0.135215 0.478559 0.002333 0.130304 0.126139 0.614164 -0.469253 -0.131095 -0.225867 -0.273939 0.047377 -0.188663 0.048577 -0.096678 -0.065971 -0.307730 -0.463030 0.222731 0.163024 -0.163892 -0.140144 -0.008807 0.320688 -0.461051 -0.241821 -0.309973 -0.005395 -0.173105 -0.624191 -0.124869 -0.216698 0.427489 0.003403 -0.128494 -0.587388 0.132515 0.491765 -0.164270 -0.274039 -0.029161 0.297246 0.260119 0.004732 0.012275 -0.156042 0.143903 0.566946 0.348648 -0.214198 -0.051505 -0.016011 -0.232170 -0.108298 -0.278306 -0.037171 -0.019142 -0.349980 0.127931 0.441037 -0.246808 -0.040153 0.271628 -0.199386 0.278206 1.228205 -0.192774 0.270785 0.064166 -0.592897 0.061244 -0.126843 -0.169219 0.014792 0.234800 0.257837 -0.539112 -0.337398 0.257156 0.416757 0.270542 -0.362706 -0.120955 -0.198281 -0.076401 0.007113 0.017540 0.075441 -0.193748 -0.275885 -0.162404 0.187213 0.815376 -0.187613 -0.376127 0.196732 0.077469 -0.115037 -0.278253 -0.130853 -0.223321 0.103138 0.158311 -0.099602 0.264472 0.521088 -1.011992 0.374145 -0.159526 -0.277536 0.307323 0.027872 -0.142004 -0.150445 0.119612 0.461335 0.398838 0.023099 0.153665 -0.020467 -0.372552 -0.063271 0.006167 0.266425 -0.230909 0.184138 0.276215 -0.597106 -0.352425 -0.059692 0.021293 -0.236952 -0.149500 0.162622 -0.060916 -1.020900 0.592305 0.044247 -0.034330 0.178952 -0.123539 0.298742 -0.422547 -0.513160 0.241659 -0.029091 0.071742 0.014631 -0.013120 0.320552 0.027687 0.247164 -0.324203 -0.487114 0.089253 0.020093 0.260350 0.165815 0.246475 0.359340 -0.230821 -0.075573 -0.376703 -0.111402 0.198348 -0.032721 -0.257016 -0.037591 -0.150514 0.406864 0.515752 -0.038083 -0.122636 -0.083495 0.381567 -0.390651 0.025719 0.260562 0.332117 -0.369678 -0.049314 0.305171 -0.276074 -0.296537 -0.165638 -0.057310 -0.153427 -0.387590 0.108994 -0.228803 0.102211 0.249481 0.008481 -0.220212 0.197696 0.035473 0.081766 0.054117 0.349084 0.483251 -0.231001 0.077169 -0.334159 0.169371 -0.590628 -0.487865 0.138269 -0.097346 -0.183942 -0.004102 -0.105349 0.336666 -0.085343 0.212705 0.069908 -0.142053 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::pop_back() = -1.066997 2.017789 2.608367 -3.027397 4.062518 4.321150 0.840909 -1.132518 -1.918078 -0.739790 -0.878776 -3.495507 -2.900491 4.157276 -1.576080 1.382524 4.955737 0.347605 -1.133462 0.434558 2.602729 0.584915 4.468089 2.950000 -3.435408 -0.050568 1.378694 1.485296 -1.171439 4.873179 -2.997601 -4.743119 0.844017 -0.328241 0.723273 -1.535113 0.262545 -1.099950 0.335884 -4.708172 0.477824 1.505432 -1.506182 -1.000937 -0.495166 -0.882867 5.306189 2.808173 -0.658046 -1.197667 1.716729 1.972368 -0.607587 0.984877 1.587097 1.174840 2.674147 0.018549 -2.130666 -1.262133 -1.170217 -0.780338 -0.703166 3.439587 3.688692 0.851655 -0.000815 0.705675 -1.016826 0.403521 -0.308229 0.768657 1.240632 2.379975 1.261922 -0.770550 0.187994 -3.170670 -0.555931 -3.536188 -2.107592 -2.339879 -0.151532 1.741649 1.812827 -1.970682 4.197040 -0.711937 0.927648 1.221648 5.902937 -3.689308 -1.257429 -3.741862 -2.356805 0.306294 -1.652717 -0.447537 -0.166417 -1.363667 -2.926433 -3.175387 0.432906 1.051179 -1.077456 -0.349509 -0.234389 3.331314 -2.708404 -1.604665 -2.708834 0.725829 -0.889050 -5.685019 -2.592272 -0.725221 0.128194 0.246342 -0.906994 -4.419373 1.523770 3.667359 -1.941712 -2.102277 -0.869759 3.981022 2.122012 -0.285814 0.585526 -0.622045 1.610948 3.816391 2.626924 -1.516886 -0.496044 -0.398947 -1.369073 -0.790473 -1.922288 -0.109658 -0.973599 -2.931801 -0.062139 3.974893 -1.992558 0.945913 -1.388667 -1.369977 2.549984 10.835658 -2.110661 2.269964 -0.258013 -5.137061 2.857492 -0.091461 -2.182473 -0.900566 1.321251 2.593370 -4.687650 -2.868214 3.166714 3.571938 2.531117 -2.873698 1.028226 -1.673941 -0.534461 -1.109982 0.356296 1.608753 -0.877836 -2.442425 -1.446037 2.003435 7.150229 -2.121682 -6.072878 2.796784 1.034219 0.115021 -1.419319 -1.308856 -1.556705 -0.001140 1.581406 -1.139304 2.641745 4.832921 -6.755940 3.542176 0.150655 -3.240890 4.173244 -0.993092 -1.027028 -0.048208 0.287925 4.729505 3.598766 0.744630 -0.354228 -1.505752 -2.981633 -0.122408 0.556759 2.109631 -1.093535 1.343242 0.806626 -4.280735 -3.104081 -2.523745 -0.986460 -1.798144 -2.461787 1.076345 -0.090227 -7.101870 5.722083 1.023019 0.282272 0.785995 -1.084968 1.908610 -3.143521 -4.948446 1.911721 -0.649743 -0.754356 0.093826 0.147454 2.302025 1.489814 2.037665 -2.915911 -5.348867 1.919653 0.718816 2.999175 1.249151 2.466845 2.507763 2.098614 -1.366234 -2.635299 -3.234473 2.760706 0.490107 -2.603343 -0.863105 -1.239525 3.633536 3.460452 -0.677040 -1.150835 -3.487150 2.869121 -2.351427 0.086369 2.896233 -0.385998 -3.617161 -1.342132 3.449643 -1.573029 -2.703060 -2.006592 -0.094617 -2.468337 -3.748005 -0.396027 -1.912268 0.264711 2.491254 -0.737373 -2.345219 0.629994 0.589362 -0.447287 -0.043892 3.709677 2.280319 -2.403908 1.639378 -3.085247 2.396861 -5.131849 -4.177413 1.825151 -2.162428 -1.538554 -0.222731 0.478094 2.076914 -1.405373 1.519375 0.238071 -1.516338 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_pop_back_aux() = -0.938641 2.222230 3.401052 -3.301201 3.737895 4.552319 0.760764 -1.504795 -2.017291 -0.328784 -0.617754 -3.671035 -2.603382 3.867203 -1.891115 0.541670 4.883652 0.445179 -1.403199 0.321443 1.973387 1.281540 4.406107 3.596253 -3.380316 0.087392 1.323881 1.429893 -0.930753 4.984863 -3.483420 -4.603119 0.528035 0.481656 0.667048 -1.327624 -0.238769 -1.578810 0.305703 -4.682157 0.547777 1.307183 -1.638968 -1.052227 0.083988 -0.683097 5.547928 2.478549 -0.188167 -1.436009 1.612199 2.411332 -0.503596 0.659118 2.233992 1.082663 4.093542 0.423987 -1.569779 -1.207547 -1.275354 0.134844 -0.952831 3.769274 3.518361 1.398805 -0.186115 -0.566828 -0.523164 0.232181 -0.441111 0.892052 1.164646 3.297970 0.645872 -0.269835 1.306154 -2.847161 -0.145038 -2.234961 -2.064554 -1.873112 -0.119527 1.609100 1.467645 -2.067487 3.972977 -0.652895 0.908012 0.575755 5.785001 -3.319016 -1.074807 -2.687238 -2.763548 0.112768 -1.191284 0.202217 -0.986372 -1.266978 -2.974513 -2.954271 0.461315 1.039686 -1.171219 1.059076 0.181952 2.967826 -2.208651 -0.840705 -2.078518 0.716987 -0.453955 -5.527150 -3.199987 -1.404755 0.363929 0.036653 -1.649718 -4.282859 1.580001 3.385662 -2.119475 -1.506784 -1.522416 3.901677 2.156062 -0.181631 -0.027352 -1.101665 1.755419 3.204870 1.760000 -1.731505 0.199855 -0.792217 -1.453311 -0.885996 -1.857073 0.306229 -1.298126 -2.146902 0.031302 3.754258 -2.052549 1.082145 -1.725370 -1.130011 2.118049 11.509258 -2.516882 2.609906 -0.213104 -5.015937 2.534367 0.214260 -2.063414 -1.108681 1.246256 2.880776 -5.040585 -2.685332 3.192186 3.761587 2.337435 -2.800964 1.808746 -1.247274 -1.105226 -1.192851 0.974804 0.772216 -1.060142 -2.395947 -1.693599 2.126482 6.982304 -1.599047 -6.997591 2.036341 0.459993 0.717752 -0.305813 -0.880587 -0.616783 0.644865 1.644256 -1.120686 3.078035 4.592002 -7.465322 3.508209 0.243806 -3.542078 4.839033 -0.939749 -1.264729 1.165333 0.529777 4.529231 3.420983 1.089909 -1.118501 -1.270090 -2.958527 -0.521800 0.447202 2.154258 -1.692135 1.535980 1.757227 -4.633351 -2.921653 -3.358793 -0.541847 -1.723766 -3.218045 1.187945 -1.134129 -7.479239 5.699470 1.860031 0.455320 0.203226 -1.742333 1.004228 -3.096767 -4.657251 1.343940 -0.668598 -0.495299 0.244617 -0.273952 2.049179 1.462372 3.149925 -3.766726 -4.914469 1.914446 0.578455 3.385465 1.307210 2.367501 2.065765 2.356922 -0.616574 -2.444387 -2.960004 3.656255 1.000278 -2.837056 -0.155132 -1.725691 3.202227 3.320393 -1.163900 -1.105781 -3.745593 2.681215 -1.718083 0.384077 2.233363 -0.660561 -3.534198 -1.631902 2.860078 -1.210870 -2.427620 -1.874201 -1.245642 -2.765714 -3.474279 0.001888 -1.509451 0.495580 2.245829 -0.771517 -2.480888 0.471059 0.182595 -0.549005 1.072727 3.096021 2.278199 -1.808110 2.164279 -3.133311 2.683891 -4.868708 -4.092685 1.877676 -3.180174 -1.817916 -0.690408 -0.292680 2.200861 -1.176630 1.635826 0.379985 -0.509572 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__minCoins(int*, int, int) = -2.917291 -3.458589 -2.060803 -6.010992 3.790562 4.902318 2.102619 -3.735229 -7.171443 -0.378688 2.866486 -6.544959 0.022965 7.721224 -2.153480 7.357029 9.823454 1.514180 -3.820030 -0.163663 8.180212 -1.705419 9.036402 7.986669 -5.234689 -0.853459 -0.403419 2.918153 1.719129 1.295984 0.805146 -2.750639 3.181878 -8.533196 -2.431548 -5.035833 1.492444 3.255528 6.953458 -9.748224 2.043925 0.189400 1.337926 -2.169605 -2.706674 -0.705795 3.446163 6.070876 -1.390230 2.062292 5.627433 0.999802 -1.250672 1.717686 0.885504 1.977235 0.082219 0.647732 -2.329313 -3.585087 -0.342457 -1.028045 2.149034 5.672381 7.920954 0.676493 0.156146 5.069132 1.439529 1.552312 4.191717 0.653421 -2.930657 -0.759301 2.715172 -9.482551 -1.159468 -11.243404 -1.424541 -11.481186 -3.169892 1.042735 4.109513 0.072128 4.627654 0.892650 5.762973 -1.793556 -2.200321 6.790031 6.545127 -6.035651 -3.008288 -4.491149 -4.000690 2.263070 -3.601496 0.188341 4.431036 1.186317 -5.268146 -3.379680 2.481608 3.945027 -2.175139 -6.277955 1.842319 5.052239 -4.832722 -6.222280 1.077030 6.001496 -2.638287 -10.105641 -2.187013 -5.397474 2.522326 -0.143485 -2.129874 -6.749289 0.490773 3.415609 -1.556607 -4.237631 0.556664 4.042023 3.666596 2.993228 0.605286 0.292525 1.061659 11.133583 2.017231 -4.333211 0.815292 0.054512 -1.967210 3.081001 -4.645202 -3.840918 1.322749 -7.042675 1.745926 5.691169 -3.631719 -1.425114 5.894542 2.920863 1.520653 22.830395 1.101061 8.468682 6.369791 -6.330839 2.715789 -2.624930 0.773323 2.389686 2.468662 -0.965735 -10.898247 -6.061032 3.292228 6.167666 5.204760 -7.357044 -3.243737 -1.078403 -0.197561 0.575373 -1.151786 1.805119 -0.012473 -5.248889 -1.254733 5.699268 13.557666 -2.889596 0.514920 4.034109 3.607633 -4.593635 -9.544733 -3.397732 -6.488248 1.285432 1.996477 0.379125 3.670908 8.089820 -9.558639 5.376005 -1.197965 0.824738 4.783188 2.982190 -7.022675 -9.084222 -2.023050 3.554284 7.850736 -2.897567 1.771791 3.352319 -5.556619 -0.347726 1.447829 -0.787279 -1.091606 2.299728 0.397100 -2.948135 -3.078066 3.810059 -2.314685 -2.293346 0.407216 4.270893 0.915673 -6.874447 5.605605 -0.276429 -2.608425 2.324248 -1.689770 7.018472 -5.645370 -5.888445 4.999887 0.542999 -0.579441 -2.703977 1.595187 4.659873 2.300497 2.429868 -3.342331 -7.738169 3.569951 -2.855557 4.959943 2.391655 -1.175651 2.805710 -2.924800 -1.483331 -7.254256 -4.113214 -2.058801 0.830971 -6.681719 -3.586247 -1.045262 6.867859 3.966553 0.671888 -5.878514 0.750135 7.365862 -6.090094 -1.178429 4.243101 3.821390 -7.689448 0.509511 5.400394 -8.112303 0.836596 -2.229182 0.170125 -1.808079 -5.023201 4.278089 1.972252 4.430207 -1.002964 1.462057 1.270787 2.658380 3.190474 1.947040 1.023761 8.703254 5.584722 -1.308319 -3.494518 -6.332160 2.050523 -7.761590 -8.184611 3.370474 1.819791 -5.631344 1.396198 2.062553 7.861072 1.203579 0.290611 -0.926219 0.214556 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = -0.710885 -0.615631 0.281412 -1.875891 1.409860 0.992822 0.733801 -0.597587 -2.300917 -0.710234 0.790054 -2.424532 -0.842938 2.556046 -0.720847 1.453365 3.272109 0.595014 -1.018837 -0.358989 2.003026 -0.700217 2.942607 2.759915 -2.006144 -0.010870 -0.162193 1.078806 0.523440 0.982580 0.040527 -1.374615 0.917997 -1.635341 -0.143629 -1.425344 0.224937 0.521165 1.116874 -3.426430 0.519203 0.676673 0.341369 -0.584170 -0.448135 0.800354 1.807230 1.905515 -0.571405 0.798694 1.738552 0.166645 -0.102595 0.511053 0.523434 0.129292 0.634981 0.137690 -1.144791 -0.655351 -0.263451 -1.086073 0.213421 1.954971 2.615515 0.129805 -0.105351 0.855562 0.319883 0.612582 1.186777 0.374828 -0.070841 0.029353 1.116003 -2.049691 -0.207383 -3.671853 -0.355185 -4.821689 -1.437200 -0.115662 2.229993 0.320692 0.782713 -0.283510 2.155172 -0.322713 -0.410710 1.983743 2.599944 -1.642346 -1.097775 -1.364110 -1.259969 0.893744 -1.196530 0.051481 1.343303 0.373984 -1.889678 -0.845683 0.894877 0.688056 -0.798473 -1.022715 0.347097 1.832383 -2.051710 -1.246449 -0.529852 1.522923 0.005713 -3.348007 -0.516877 -1.311102 0.989257 0.315396 -0.903198 -1.435664 0.414557 0.829218 -0.801037 -0.691167 -0.941338 1.885671 0.836006 0.923017 0.331402 0.328723 0.639665 2.687774 0.920217 -1.381744 0.168125 0.059575 -0.679014 0.847371 -1.388363 -1.068060 0.750151 -1.996683 0.580200 1.129178 -1.348624 -0.684521 0.861023 0.612620 0.620237 6.397094 0.016965 2.613546 1.605797 -2.029056 1.160055 -0.571984 -0.001507 0.616138 1.153175 0.132877 -2.496949 -1.876329 1.238915 2.304165 1.664236 -2.439954 -0.512354 -0.208405 -0.042869 0.013105 0.144675 0.580183 0.139690 -1.631332 -0.500688 1.657987 4.088992 -0.763256 -1.133411 0.950162 0.935909 -0.757218 -2.441189 -0.700830 -1.143324 0.457144 0.504500 0.017122 1.315355 2.761976 -4.175706 2.042632 -0.206338 -0.046696 1.800101 0.579773 -1.965476 -3.063250 -0.456597 1.394896 2.642112 -0.203455 0.046365 0.800343 -1.947675 -0.208765 0.374193 0.137959 -0.579976 0.971203 0.087132 -1.104434 -1.181692 -0.127887 -0.603239 -0.303895 -0.411086 1.325973 0.487467 -3.354653 2.102250 -0.123911 -0.901174 0.102662 -0.479656 1.742596 -1.986255 -2.193619 1.099490 -0.420276 -1.342546 -1.242508 0.140071 1.218801 0.378386 0.583646 -1.010172 -2.439867 1.841670 -0.886329 1.849859 0.955479 -0.182505 1.662731 0.356192 -0.669940 -1.869462 -1.175012 0.234970 -0.497516 -1.799708 -0.302319 -0.605678 1.881098 1.656579 0.071566 -1.409683 -0.196554 2.374063 -1.745014 -0.818544 1.556316 0.634697 -1.811162 0.919650 1.919179 -2.484685 -0.035108 -1.318636 -0.404837 -0.642080 -1.580364 1.226446 0.070641 1.091691 0.107027 0.280744 -0.243149 0.858110 0.575771 0.120196 0.169451 2.922678 2.576383 -1.046486 -0.123671 -2.153716 1.051654 -2.677360 -2.555343 0.836975 0.321916 -1.584862 0.279646 0.367676 2.051011 0.360402 -0.330634 -0.702362 0.553198 +PE-benchmarks/longest-increasing-subsequence.cpp___lis(int*, int, int*) = -2.804520 -2.957959 -1.267926 -5.754365 4.191090 3.773757 2.306508 -3.365024 -6.673055 -0.281348 2.477101 -5.642655 -0.358477 7.856260 -1.794400 7.217998 9.219381 1.908074 -3.322510 -0.694071 7.701690 -1.718971 8.448917 7.513749 -5.537765 -0.531988 0.584947 2.169678 1.779228 1.766078 -0.604508 -3.076347 3.594369 -8.099469 -1.467295 -5.058844 1.183301 2.882468 6.624237 -9.135546 1.994191 -0.149003 1.606354 -2.128229 -2.637114 -0.015661 3.882771 6.039744 -1.985793 2.400412 5.198686 0.421806 -1.153475 1.832203 1.442549 2.598098 0.115910 1.543748 -2.595737 -3.029258 -0.628860 -1.485967 2.126494 5.581968 7.513823 0.235440 0.060752 5.019611 1.428986 1.380493 3.845534 0.765669 -1.644979 -1.220696 3.165733 -9.384572 -1.415159 -12.079345 -1.862796 -12.756584 -3.492556 0.432502 3.954225 -1.776834 4.780022 0.568552 6.095709 -1.397222 -1.766127 5.325659 6.899555 -6.570712 -3.115573 -4.433361 -3.809078 2.118906 -3.606304 0.108362 4.854589 -0.329700 -5.515187 -4.312050 2.419368 3.780435 -2.288959 -5.906178 1.720557 5.266667 -4.709448 -6.319395 -0.237570 4.375121 -2.783626 -9.494873 -0.673975 -4.668008 2.869064 0.190178 -2.323923 -7.005558 0.666037 3.829668 -2.157313 -4.770859 0.796202 3.958016 3.458737 2.973500 0.936511 -0.172282 1.075004 10.480359 3.266303 -4.618706 0.600870 0.157446 -2.126301 2.843753 -4.798997 -4.072845 2.665835 -6.897427 0.975784 4.906512 -3.889945 -0.661637 7.695550 2.493980 1.729178 19.252921 0.661534 7.414572 5.307832 -6.466955 2.636884 -2.324266 0.495385 2.486076 3.539272 -0.653255 -9.187689 -6.172793 3.268393 6.374856 5.308965 -7.057667 -4.353878 -1.644075 -0.074503 0.560761 -1.195633 1.709575 0.074086 -5.267062 -1.258368 4.656717 11.937767 -3.791085 -0.859222 3.672331 3.931372 -4.013475 -8.485191 -3.481638 -7.271362 1.276559 1.015306 0.184785 4.027403 8.304834 -10.632932 5.639225 -2.246200 -0.189511 4.306012 2.739815 -6.257506 -8.403386 -1.463589 3.647409 7.147609 -2.010968 1.987824 3.255526 -5.748120 -0.406461 0.714989 -0.302880 -1.386486 2.424523 0.254050 -3.290242 -3.045894 3.230830 -1.934227 -3.092619 0.779315 4.220762 1.652783 -8.180331 5.670731 -0.344975 -2.577227 2.919145 -1.197992 6.411575 -5.855590 -6.344209 4.764010 0.592482 -0.080325 -2.563655 1.444341 4.807618 1.280176 1.589416 -3.050512 -7.487834 3.568025 -2.561965 5.169079 2.573317 -0.887259 3.803125 -3.190214 -1.981927 -6.782095 -3.197290 -2.008368 0.202891 -5.913217 -3.967356 -1.276404 6.964865 4.591443 0.926742 -4.325639 0.139219 6.768390 -7.073763 -0.843250 4.828849 4.121683 -6.439197 0.765313 5.811824 -7.497654 0.071289 -2.297838 -0.049908 -1.623174 -4.757597 4.163150 1.061507 3.943342 -0.789079 1.155518 1.165630 2.880851 2.853769 1.712039 0.541424 7.832615 6.009906 -2.656172 -3.433832 -6.097482 2.225775 -7.826292 -7.646425 3.193802 1.721317 -5.713293 1.339633 1.717809 7.093449 0.661873 0.187243 -1.120786 -0.283083 +PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -0.836177 -0.842829 0.103308 -1.768510 1.290742 0.831149 0.695382 -0.981450 -2.054822 -0.238890 0.721753 -1.595869 -0.249586 2.336540 -0.646275 1.911857 2.826405 0.709582 -0.923151 -0.515314 2.218157 -0.859225 2.633210 2.471347 -1.832111 -0.102935 0.359304 0.934936 0.785917 0.727642 -0.402764 -0.747935 1.045606 -2.260819 -0.222701 -1.696219 0.305376 0.835351 1.721732 -2.889494 0.538963 -0.286283 0.339287 -0.485267 -0.644468 0.635773 1.261535 1.810504 -0.666544 0.944203 1.696254 0.040912 -0.231035 0.555343 0.501545 0.739363 0.543876 0.645841 -0.742114 -0.692761 -0.255684 -0.832587 0.671302 1.761773 2.395805 0.013565 0.001154 1.256669 0.437613 0.423269 1.203789 0.320283 -0.389142 -0.290648 1.040740 -3.006993 -0.163976 -4.107325 -0.579146 -4.331826 -1.146688 -0.026788 1.337269 -0.822855 1.290371 0.363220 1.961489 -0.221694 -0.497862 1.445250 2.116813 -1.988521 -0.929314 -1.110418 -1.171741 0.633798 -1.119504 0.084118 1.400715 0.076602 -1.637300 -1.325920 1.005531 0.967147 -0.749250 -1.486896 0.360201 1.695949 -1.683032 -1.769006 -0.379612 1.103740 -0.676114 -2.863009 0.081619 -1.523027 1.514174 0.072989 -0.747329 -1.922463 0.265288 1.205509 -0.672058 -1.228280 -0.005554 1.357055 1.008274 0.830223 0.199276 -0.109644 0.253056 2.886261 1.211321 -1.441800 0.067956 0.142301 -0.907072 0.802739 -1.581376 -1.110497 1.087204 -1.990195 0.324219 1.247914 -1.213275 -0.324787 2.626038 0.671073 0.554969 5.688288 0.147471 2.166604 1.549502 -1.907497 0.791029 -0.588596 0.263284 0.940711 1.217105 -0.150034 -2.826494 -1.881487 0.943229 1.992713 1.566637 -2.405278 -1.461193 -0.516155 0.016523 0.255879 -0.254562 0.471839 -0.122378 -1.495725 -0.401575 1.192453 3.569684 -1.110511 -0.636249 0.914192 0.843230 -1.256643 -2.751440 -0.955884 -1.818521 0.430454 0.162722 0.062556 1.199892 2.523822 -3.904654 1.756890 -0.791303 -0.128609 1.448866 0.748326 -1.754000 -2.780848 -0.343606 1.051080 2.188205 -0.358074 0.439178 1.099939 -1.846056 -0.137856 0.125075 0.101537 -0.578387 0.848670 0.293076 -1.134178 -0.971549 0.641120 -0.392960 -0.810851 0.197109 1.317340 0.242746 -3.145542 1.688750 -0.214530 -0.835669 0.877218 -0.297129 1.820951 -1.834244 -1.963781 1.336763 0.115345 -0.183195 -1.115532 0.372215 1.432187 0.121072 0.388933 -0.998235 -2.275092 1.084046 -0.994271 1.520684 0.813436 -0.235059 1.481794 -0.783698 -0.584017 -2.104982 -0.502018 -0.440952 -0.206102 -1.608843 -1.023390 -0.403805 1.994550 1.607386 0.294438 -0.948368 0.166287 2.210063 -2.244356 -0.464530 1.450624 1.511877 -1.682334 0.607899 1.707611 -2.331457 -0.137245 -0.763753 -0.390150 -0.374821 -1.354191 1.434573 0.131715 1.166685 -0.172772 0.457377 0.191375 1.004200 0.716056 0.500260 0.135300 2.461034 2.600697 -0.940820 -0.840594 -1.827175 0.756655 -2.414185 -2.206643 0.798819 0.566144 -1.624830 0.441907 0.420257 2.152121 0.302430 -0.123748 -0.358714 0.009836 +PE-benchmarks/longest-increasing-subsequence.cpp__main = -0.251446 -0.196970 0.483129 -0.821320 0.766387 0.171188 0.403942 -0.067161 -1.147913 -0.474596 0.348064 -1.201391 -0.635265 1.239530 -0.302624 0.461624 1.523861 0.404566 -0.390943 -0.289486 0.652157 -0.416769 1.360746 1.355609 -0.990558 0.148332 -0.181491 0.497808 0.163563 0.747463 -0.188694 -0.802092 0.451245 -0.398723 0.110127 -0.641445 -0.043213 0.164464 0.206898 -1.677487 0.223595 0.550431 0.220455 -0.223980 -0.036220 0.735763 1.016098 0.859742 -0.253113 0.586065 0.711843 -0.075779 0.131625 0.258456 0.430400 0.009593 0.549947 0.005508 -0.712258 -0.089266 -0.221191 -0.809827 -0.072860 0.885519 1.201772 -0.014933 -0.152072 0.076649 0.077004 0.315311 0.572156 0.232863 0.257407 -0.025323 0.577040 -0.555968 0.002087 -1.660546 -0.166155 -2.597319 -0.848535 -0.134795 1.437558 0.252097 0.164958 -0.327542 1.117403 -0.096453 -0.157284 0.674882 1.328476 -0.731339 -0.574618 -0.468682 -0.517182 0.423051 -0.541375 -0.036813 0.600889 0.125303 -0.961069 -0.326468 0.544162 0.105361 -0.408327 -0.077400 0.091273 0.949945 -1.167599 -0.396296 -0.564567 0.550467 0.270242 -1.476128 -0.040323 -0.419739 0.481962 0.317586 -0.572576 -0.403614 0.345060 0.229153 -0.517225 -0.106757 -0.851339 1.043945 0.193507 0.429318 0.212710 0.199312 0.336516 0.948081 0.500495 -0.695538 0.090925 0.072444 -0.265949 0.440652 -0.591992 -0.498798 0.389458 -0.861576 0.247490 0.164665 -0.721178 -0.285123 0.058210 0.298641 0.245472 2.271093 -0.118114 1.167691 0.607586 -0.908319 0.650941 -0.167609 -0.004474 0.272285 0.722234 0.146764 -0.657594 -0.865173 0.623161 1.190970 0.794480 -1.143511 -0.152864 -0.072576 0.061535 0.029856 0.279113 0.250035 0.187437 -0.764203 -0.247592 0.545241 1.773400 -0.327680 -0.992252 0.314123 0.264326 -0.109704 -0.894843 -0.225529 -0.267116 0.217160 0.080475 -0.024133 0.615249 1.341136 -2.323080 1.095545 -0.174048 -0.189814 0.958175 0.152358 -0.794782 -1.419485 -0.251203 0.631270 1.295189 0.212220 -0.122017 0.352982 -0.975643 -0.147694 0.069008 0.161426 -0.374567 0.559724 0.045265 -0.591320 -0.511663 -0.561209 -0.171876 -0.053293 -0.349294 0.642784 0.424518 -1.990749 0.960131 -0.021582 -0.469273 -0.077180 -0.067676 0.615793 -0.914657 -1.095648 0.337710 -0.410203 -0.992531 -0.700856 -0.052732 0.439782 -0.035087 0.109277 -0.384779 -1.005719 1.107485 -0.393545 0.965454 0.528287 -0.114529 0.993893 0.668202 -0.443046 -0.598072 -0.395909 0.367096 -0.631317 -0.586168 0.195049 -0.415786 0.771221 0.897028 0.140792 -0.416846 -0.275371 1.132682 -0.736522 -0.462084 0.873582 0.059401 -0.496241 0.748019 1.015699 -1.099041 -0.099472 -0.769845 -0.367725 -0.308820 -0.606912 0.604892 -0.138827 0.396596 0.112297 0.077481 -0.336749 0.411872 0.094001 -0.166795 -0.011950 1.429789 1.411118 -0.685027 0.329684 -0.968370 0.596655 -1.235252 -1.033877 0.247510 0.139318 -0.803512 0.081708 0.055650 0.786743 0.160975 -0.324121 -0.492878 0.405871 +PE-benchmarks/binary-insertion-sort.cpp__binarySearch(int*, int, int, int) = -3.976499 -4.447691 -2.195885 -7.762586 5.795331 5.991311 2.983162 -5.768052 -9.126941 0.244498 4.616793 -8.081836 -0.411970 10.056282 -3.200479 9.404852 11.224901 1.575481 -5.060573 -1.503357 10.236077 0.173042 11.863517 10.265060 -7.832622 -0.808120 0.322633 2.771897 3.326794 0.817606 -0.294973 -3.611988 5.159892 -10.887023 -3.542221 -5.252622 1.405569 3.616730 9.751889 -10.782030 2.517245 -1.681513 0.396023 -2.217864 -3.564189 0.612755 4.930861 7.969166 -2.309475 3.963587 7.719285 0.778245 -1.685246 2.148747 1.395945 2.156004 0.057693 2.515411 -2.532482 -5.090176 -0.937156 -0.490164 2.141176 7.875346 9.660150 0.839030 -0.417859 6.762257 2.261605 1.962293 5.379255 1.621355 -2.017434 -0.543462 4.440763 -11.199371 -1.691920 -15.278526 -2.578498 -14.688283 -4.140041 1.608369 5.515153 -2.910851 6.182076 1.570194 8.302196 -1.197939 -3.741652 8.471864 9.075985 -8.573510 -3.878486 -4.464051 -5.457834 2.194511 -4.595078 1.958009 4.712757 0.980196 -7.516124 -5.650592 1.501034 4.563438 -3.144497 -7.751229 2.254436 5.779447 -6.437428 -6.991724 0.744550 6.542479 -2.659158 -12.840097 -4.036988 -6.203525 5.853127 -0.401721 -3.516918 -8.635738 0.657200 4.403267 -2.737853 -5.764841 2.929649 3.726138 5.592611 4.906099 0.629016 0.035715 2.033319 14.518538 2.860867 -6.254177 1.047429 -0.778635 -1.436527 4.819463 -5.541818 -4.301343 2.986795 -8.696432 3.434424 6.874262 -4.802967 -2.105377 9.970421 3.625121 1.172477 25.116677 1.101355 10.430406 8.037146 -8.024972 1.011855 -4.261714 1.565838 3.865965 3.654222 -0.983686 -10.830691 -8.354598 5.364696 8.480835 6.608238 -10.062940 -3.896590 -0.510762 0.268060 0.142649 -1.327574 2.040165 0.436695 -6.562634 -1.679208 7.318152 15.200291 -4.904788 -1.188492 4.978107 4.921129 -4.008774 -8.825648 -4.782435 -7.985994 2.105723 4.309656 1.350132 5.529436 11.083086 -13.440917 6.777200 -1.909088 0.509052 4.498980 4.838055 -9.097268 -7.528720 -2.159701 4.216725 7.965476 -1.974309 1.883251 4.949215 -7.873770 -0.486758 1.932014 -1.016788 -2.326199 3.668855 1.789144 -3.992771 -4.114469 4.347319 -2.453712 -2.591132 0.606217 6.380585 -0.521174 -11.945511 7.158360 0.099908 -4.036627 2.688906 -2.563188 9.218553 -7.491924 -8.139765 6.552356 -0.213362 -0.784576 -3.106692 2.335243 5.289240 2.981191 4.157661 -5.487022 -9.182387 5.095246 -2.977495 7.168418 3.452347 -1.321765 4.727125 -7.678822 -2.071373 -9.124054 -4.059643 -0.018759 1.473227 -8.415441 -4.335050 -1.483287 8.766850 5.406663 0.690652 -6.849382 0.159906 8.442874 -9.363141 -1.353261 5.635112 7.575435 -9.123068 1.761767 7.025836 -9.021025 1.297709 -3.170413 -1.005542 -3.377089 -6.314374 6.309723 2.586467 5.975269 -1.320990 2.037631 1.950615 4.145815 3.330502 2.530895 1.822729 9.845092 8.767804 -3.019270 -5.002362 -8.910592 3.689551 -10.201966 -11.255268 5.446261 0.851624 -7.444757 1.011852 0.419551 10.334465 1.688956 -1.046289 -1.961011 1.447736 +PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -2.089445 -2.507774 -2.105457 -3.949877 3.068285 3.835615 1.791105 -2.844955 -5.383438 -0.301371 2.524340 -5.230161 -0.337133 5.728731 -1.427081 5.618508 7.523543 0.989280 -2.761414 -0.402079 6.173742 -0.833158 7.752836 6.760683 -3.950091 -0.296399 -0.156451 1.702175 1.269433 0.419870 0.423500 -2.214596 3.200039 -6.949981 -2.203096 -3.690827 0.727226 2.176576 5.807980 -7.330548 1.419778 -0.209629 0.283351 -1.443229 -2.111730 0.811577 3.301404 4.471560 -0.985028 2.396517 4.313656 0.196175 -0.769795 1.378766 0.852520 1.297264 -0.317832 0.970044 -1.843110 -2.744243 -0.480164 -1.000384 1.034012 4.107421 6.361919 0.275099 -0.248794 4.089847 0.786599 1.113616 3.146839 0.787942 -1.196794 -0.568643 2.387549 -7.827992 -1.334131 -9.613035 -1.647928 -10.204810 -2.452472 0.969910 3.548048 -0.941162 3.552568 0.667779 4.525747 -1.053087 -2.036279 5.482170 5.595111 -4.918480 -2.349604 -2.658204 -2.443331 1.327574 -2.679282 0.630702 4.170972 0.417237 -4.252944 -2.956590 2.206907 2.642207 -1.722389 -5.349297 1.354976 3.441962 -4.056393 -4.270090 0.392653 4.190740 -1.648837 -8.187634 -1.639613 -3.576642 3.244170 0.179603 -1.943566 -5.335766 0.567887 2.491352 -1.229416 -3.417546 1.751576 3.112070 3.001246 2.826793 0.687034 0.541057 1.123377 9.324028 2.003212 -3.166943 0.734864 -0.324939 -1.293918 2.974429 -3.253049 -2.932701 1.498455 -5.281716 2.262084 4.040973 -2.776799 -1.151636 5.780079 2.301090 0.607729 17.743258 0.781283 6.713861 5.127246 -5.156004 1.729869 -2.782250 0.717455 1.916301 2.144017 -0.628896 -8.696822 -4.530939 2.878119 4.807520 3.791851 -7.128161 -2.187917 -0.403933 0.391497 0.198808 -0.740403 1.282160 0.782858 -3.894581 -0.833057 4.547559 11.248128 -2.742213 0.879693 2.991861 2.499654 -2.934783 -7.572093 -2.648578 -4.495889 1.023717 1.895796 0.584662 2.577382 6.093436 -7.552355 3.926590 -1.523747 0.515400 3.643837 3.300028 -5.692007 -6.707524 -1.660468 2.915790 5.899758 -1.448900 1.463794 2.546915 -4.295497 -0.370005 1.083557 -0.785662 -0.905227 1.987894 0.507773 -2.286520 -2.176556 2.853684 -1.317611 -1.419167 0.652278 3.506700 0.749122 -7.226574 4.447789 -0.057695 -2.386450 1.296154 -0.895048 5.739801 -4.081921 -4.826123 3.801870 -0.346220 -1.031283 -2.181314 1.160866 2.988086 1.761323 1.993702 -2.614364 -6.319843 3.438937 -2.093574 3.983024 1.966467 -0.897125 3.060061 -4.400888 -1.587478 -6.127427 -3.201100 -1.334716 0.034195 -5.042162 -1.986405 -0.882409 5.058740 2.963840 0.815338 -4.692562 0.615982 5.569729 -5.695156 -0.736518 3.473021 5.296645 -5.920539 1.168619 4.189282 -6.402425 0.881490 -1.678524 -0.880655 -1.742680 -4.049171 3.294939 1.367642 3.233955 -0.735502 1.157630 1.152108 2.142075 1.921063 1.444078 0.641936 6.893415 5.995503 -1.681762 -2.811682 -4.773849 1.819228 -6.131922 -6.718296 2.866709 1.629455 -4.337236 0.616068 1.758033 6.029865 1.068820 -0.869022 -1.250541 0.589306 +PE-benchmarks/binary-insertion-sort.cpp__main = -0.949338 -1.189191 -0.190268 -2.417905 1.744287 1.424091 0.941867 -0.819140 -3.136319 -0.611337 1.104189 -2.886199 -0.568930 3.220177 -0.762222 2.347589 4.069767 0.810012 -1.320571 -0.242650 2.795586 -0.769912 3.720380 3.513294 -2.292526 -0.028571 -0.444576 1.269082 0.452954 1.045751 0.150755 -1.638912 1.222990 -2.656450 -0.606657 -2.080703 0.320715 1.126296 2.031000 -4.262751 0.788018 0.766833 0.453724 -0.791843 -0.717586 0.487543 1.892961 2.379435 -0.698531 1.242522 2.197729 0.175512 -0.240773 0.677636 0.598732 0.518438 0.188671 0.104759 -1.326841 -0.957779 -0.269519 -1.078506 0.502140 2.229177 3.268040 0.080140 -0.155625 1.346697 0.415180 0.676126 1.715633 0.350951 -0.451880 -0.425773 1.307713 -3.066823 -0.497246 -4.768490 -0.442139 -5.683949 -1.675750 0.221495 2.770276 0.509651 1.236557 -0.350174 2.536191 -0.710307 -0.735462 2.690639 2.939254 -2.163670 -1.349210 -1.702038 -1.556371 1.043301 -1.389220 -0.134710 1.725661 0.420382 -2.295631 -1.158196 1.135206 1.056228 -0.955605 -1.818924 0.599946 2.226149 -2.472868 -1.970634 -0.238419 2.363130 -0.309636 -4.098154 -0.683736 -1.830591 1.134261 0.288755 -1.135586 -2.024753 0.445274 1.009293 -0.941809 -1.083986 -0.745722 2.121635 1.051902 1.222684 0.429737 0.306611 0.589190 3.894951 0.938425 -1.804373 0.321389 0.170631 -0.649331 1.262740 -1.834394 -1.494511 0.766294 -2.667410 0.696746 1.496316 -1.654253 -0.661016 1.615943 1.126800 0.559568 8.624541 0.233694 3.498927 2.284764 -2.492898 1.476162 -0.797601 0.224046 0.927042 1.341285 -0.198779 -3.620862 -2.352057 1.384813 2.719949 2.144407 -3.113971 -0.982413 -0.298240 0.015480 0.251840 -0.003596 0.644227 0.312916 -2.118633 -0.532579 2.001109 5.482231 -0.919874 -0.610117 1.320203 1.376380 -1.420245 -3.327482 -1.061067 -1.962511 0.508244 0.637749 0.032652 1.575959 3.382416 -4.805833 2.421411 -0.497685 0.116602 1.987562 0.994920 -2.680137 -3.850630 -0.917463 1.496507 3.461342 -0.543307 0.519671 1.253973 -2.330623 -0.227690 0.518269 -0.153683 -0.627767 1.142871 0.052529 -1.272942 -1.158259 0.453334 -0.967823 -0.506278 -0.262252 1.708048 0.754223 -3.901473 2.314371 -0.081704 -1.133873 0.457253 -0.416732 2.491177 -2.322170 -2.641409 1.655331 -0.211660 -1.287693 -1.396809 0.336707 1.618136 0.555305 0.623434 -1.128470 -3.173620 2.163873 -1.130279 2.248639 1.166873 -0.590772 1.775359 -0.279120 -0.830431 -2.581559 -1.730689 -0.147032 -0.477964 -2.295568 -0.580151 -0.722168 2.449042 1.807397 0.418744 -2.064313 -0.051882 3.134522 -2.212338 -0.683963 1.970654 1.047459 -2.482558 0.934943 2.451834 -3.369064 0.243539 -1.421402 -0.208124 -0.709401 -1.839297 1.738313 0.459981 1.557138 -0.196276 0.505412 -0.028835 1.059436 0.929828 0.268740 0.216590 3.878857 2.875243 -0.957538 -0.534694 -2.523074 1.082132 -3.184531 -3.153481 0.971091 0.639033 -2.288473 0.469867 0.621597 2.870658 0.495457 -0.164183 -0.718011 0.544044 +PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -10.531341 -5.533187 -0.180772 -25.045657 18.976702 26.746270 7.612789 -17.612143 -22.365847 -2.701476 11.388140 -24.670336 -6.296253 28.150778 -11.756855 22.311501 33.188131 -0.159188 -15.219181 -0.804942 27.188201 4.213908 35.571645 28.242793 -23.468206 -2.854109 2.481311 13.876673 6.166255 7.630505 0.364723 -14.758992 11.787337 -24.183612 -10.540183 -10.801371 4.512953 2.589527 20.738031 -31.744842 5.686080 -1.307863 -8.983054 -7.048985 -8.836758 -7.127866 19.601434 22.821574 -3.394277 3.878398 20.989855 8.026091 -6.426703 5.957530 5.854039 2.576845 4.581881 0.204358 -6.440189 -16.226427 -2.522756 -1.358039 1.935653 25.111726 27.935079 4.401123 0.190263 16.649336 1.408123 5.484372 11.893703 4.803471 -7.975124 7.045309 10.754763 -28.054692 -1.630098 -32.973211 -6.307123 -28.074236 -13.344311 1.299663 10.528432 2.728724 17.254433 2.634983 23.544286 -3.349125 -8.021632 23.039393 28.646790 -22.977547 -10.141958 -15.378260 -15.332299 6.155401 -14.062231 5.990600 3.896408 3.977285 -20.984606 -11.777404 4.661142 13.607538 -9.419766 -19.292468 4.954233 19.114340 -18.208836 -17.287086 2.811119 19.979483 -7.829516 -40.405855 -20.641921 -16.777802 16.869189 -2.866474 -7.333415 -25.612563 2.988943 16.613960 -5.480431 -16.148074 4.793141 13.690537 18.372897 12.195979 1.335807 1.892159 9.114975 41.697487 8.107250 -12.444243 1.942138 -5.674786 -3.015018 11.577254 -11.329529 -6.377800 -2.396013 -22.707338 7.300713 27.391039 -12.218865 -7.190039 12.315018 6.981646 6.262143 89.457959 0.467614 29.195167 20.550076 -26.771244 1.649971 -12.518075 -1.064769 6.306149 5.712598 1.660519 -39.851796 -21.927304 18.122414 24.510603 17.607635 -28.612450 -1.033829 -1.349190 -2.142951 -4.657948 -2.046195 6.706289 0.076836 -18.006207 -6.797517 25.621251 47.806353 -12.267723 -12.840468 17.584077 10.327963 -9.477265 -23.488094 -12.006203 -12.536808 6.010580 17.400146 1.697777 15.341024 31.240920 -34.604689 18.432354 0.532686 -1.921914 19.557742 9.687408 -24.318776 -15.762420 -3.811440 17.182794 23.509725 -6.893876 3.511789 7.714586 -21.834859 -1.739986 8.217730 -1.328227 -4.878685 9.855559 6.798226 -14.692293 -16.691383 6.035192 -7.366427 -3.514873 -5.120581 16.055627 -6.653998 -34.395360 26.585928 2.734748 -9.534856 5.122134 -12.796598 29.186572 -22.247071 -26.181737 19.375273 -3.092823 -5.720736 -5.799294 5.051151 14.905740 14.524970 14.952651 -19.515790 -25.005249 12.767817 -5.893017 20.184012 9.322047 2.847763 13.771815 -17.005696 -4.868715 -24.988000 -19.626402 8.163463 8.102301 -27.928602 -11.407886 -5.608221 25.324046 15.257129 -2.246322 -22.052829 -2.847224 22.978506 -25.178359 -3.876870 13.944897 18.938820 -31.246106 0.275313 18.359060 -21.783193 0.980098 -8.803681 -4.124016 -13.933176 -23.761069 13.494869 7.176195 16.979049 1.881518 6.042062 0.549836 8.926421 7.684869 8.745907 6.250814 26.714292 24.615638 -8.014871 -11.368310 -26.827309 12.572954 -30.705076 -35.821885 18.953979 -3.383407 -14.739807 0.714925 -0.342417 27.597352 4.881569 -0.423614 -2.207957 2.993625 +PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -1.357459 -0.500239 0.761155 -3.362445 2.482408 3.616748 0.933121 -2.601211 -2.832758 -0.212081 1.344908 -3.293563 -0.772084 3.624089 -1.777310 2.708367 4.014911 0.161956 -2.071187 -0.199826 3.227128 1.091910 4.692881 3.806168 -3.131246 -0.286615 0.504750 1.873741 1.001751 1.369054 -0.546591 -1.844020 1.471619 -2.798665 -1.284446 -1.345996 0.393420 0.217673 2.573425 -3.857065 0.693849 -0.415371 -1.332265 -0.801734 -0.861578 -1.220576 2.823862 2.914756 -0.179468 0.529922 2.557111 1.239840 -0.637707 0.739636 1.033849 0.507852 1.343141 -0.412741 -0.747530 -2.024789 -0.447271 -0.142020 0.179555 3.498245 3.496104 0.837331 -0.086738 1.704129 0.388702 0.520060 1.447367 0.830113 -1.181172 1.502127 1.110083 -3.529542 0.662203 -3.809640 -0.716675 -2.580254 -1.760323 0.064436 1.116542 0.618425 2.285333 0.420936 3.282345 -0.426188 -0.979223 2.512381 3.932838 -3.289411 -1.229861 -1.637273 -2.061472 0.621031 -1.751199 0.939641 -0.453779 0.639424 -2.716912 -1.714411 0.387892 1.734126 -1.296638 -1.694824 0.652494 2.539943 -2.527749 -2.223480 0.266244 2.262598 -1.048309 -5.191186 -2.983986 -2.113451 2.598017 -0.413478 -1.226239 -3.614895 0.556573 2.352112 -0.733814 -1.937211 0.234162 1.386460 2.451256 1.391895 -0.110188 0.097337 1.218978 5.306308 1.007720 -1.750752 0.394345 -0.722820 -0.500608 1.305587 -1.339858 -0.657964 -0.826051 -2.877645 0.652966 3.730779 -1.715059 -0.655334 1.178416 0.904250 0.808392 11.176197 -0.212910 3.603773 2.595060 -3.647469 -0.169879 -1.499223 -0.116728 0.760420 0.668238 0.606956 -4.945269 -2.920370 2.456711 3.432845 2.272381 -3.289645 0.224021 -0.228712 -0.397170 -0.579317 -0.046400 0.733659 -0.252916 -2.329415 -1.000336 3.120165 5.753761 -1.580947 -2.422706 2.085678 0.610262 -0.861579 -2.052183 -1.494879 -1.237982 0.919224 2.254319 0.190295 2.080864 4.134023 -4.537903 2.602980 0.070170 -0.623749 2.772758 1.106134 -2.977130 -0.491198 -0.497220 2.375256 2.528536 -0.754905 0.072716 1.014426 -3.021636 -0.351424 1.030520 0.127085 -0.967841 1.433581 1.561051 -2.318505 -2.217378 0.372724 -0.564324 -0.668901 -0.995960 2.227902 -1.430605 -4.872870 3.588456 0.699068 -1.158681 0.853324 -1.866945 3.459668 -3.066132 -3.435376 2.395978 -0.394207 -0.621393 -0.483475 0.525142 1.938204 1.867443 2.205055 -3.029731 -2.668132 1.480658 -0.582085 2.703523 1.268447 0.503627 1.755104 -2.302123 -0.475090 -2.879438 -2.213712 1.402246 1.184175 -3.427749 -1.440091 -0.842900 3.310598 2.318055 -0.440263 -2.528610 -0.490441 2.780325 -3.279586 -0.435044 1.705461 2.420610 -3.995589 -0.121448 2.236564 -2.488958 -0.016937 -1.044727 -0.841687 -1.916920 -2.935875 1.948080 0.716454 2.142961 0.401796 0.624273 -0.167955 1.270747 0.839083 1.053491 1.219859 3.205571 2.946069 -0.794611 -1.078708 -3.540224 1.782194 -4.147228 -4.516566 2.441941 -0.748391 -1.957989 -0.054693 -0.414560 3.592331 0.756943 -0.124547 -0.158719 0.498363 +PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -2.880953 -1.929319 0.965921 -7.030998 4.872505 6.718559 2.064049 -5.107000 -6.457661 -0.263074 3.127186 -6.581570 -1.046390 7.699831 -3.388710 6.115222 8.550300 0.738318 -4.464084 -0.553111 7.283018 1.425644 9.620313 8.043820 -6.474376 -0.619994 0.658608 3.846767 2.552333 2.296559 -0.856598 -2.950185 3.223408 -6.755936 -2.742705 -3.448375 1.021744 1.208850 5.758612 -8.267993 1.674540 -1.048253 -2.055206 -1.742923 -2.060691 -1.683379 5.187507 6.209235 -0.839764 1.533729 5.574974 1.893500 -1.362988 1.618376 1.850024 1.313006 2.129246 -0.021711 -1.633421 -4.182331 -0.758479 -0.733812 1.056714 7.047131 7.410097 1.469997 -0.100371 4.062412 1.292227 1.130868 3.654043 1.464260 -2.555444 1.920210 2.636036 -8.145534 0.950340 -8.928151 -1.590872 -6.901694 -3.541803 0.482857 3.142679 0.363988 4.740612 0.960282 6.661118 -1.047045 -2.293084 5.792482 7.691732 -6.842462 -2.748326 -3.610305 -4.394881 1.573467 -3.731539 1.636461 0.246033 1.383780 -5.664131 -3.481281 1.006507 3.767968 -2.689087 -4.142384 1.511261 5.353936 -5.290338 -5.024822 0.835699 5.033320 -2.233293 -10.595980 -5.236301 -4.829601 5.551630 -0.868415 -2.487677 -7.202345 0.875418 4.604701 -1.567275 -4.023810 0.561599 2.956888 4.750375 3.186954 -0.122455 0.125460 2.147186 10.943150 2.244385 -4.011837 0.839757 -1.171947 -1.244244 3.085383 -3.274076 -2.022335 -0.504404 -6.299831 1.201120 7.107161 -3.658528 -1.398384 4.039517 2.528955 1.530346 22.842646 0.168576 7.739990 5.786659 -7.200121 0.029968 -2.945411 0.284040 2.238341 1.745334 0.449980 -10.440664 -6.275833 4.625922 7.026035 4.935770 -7.188548 -0.547850 -0.600883 -0.715094 -0.654906 -0.500805 1.488448 -0.382603 -4.970592 -1.934115 6.306386 11.951716 -3.320058 -3.930268 4.220022 1.522917 -2.599248 -5.373475 -3.293710 -3.250023 1.948030 4.091591 0.472137 4.390799 8.667834 -9.505361 5.475187 -0.470530 -0.735658 5.300709 2.572585 -6.472822 -2.579881 -1.369678 4.366128 5.681252 -1.755876 0.187191 2.880433 -6.291995 -0.687180 2.028785 -0.135988 -1.805433 2.886900 2.848874 -4.194840 -4.248442 1.496004 -1.365324 -1.320615 -1.281515 4.796257 -2.781728 -9.557507 6.886515 0.944576 -2.656753 2.035309 -3.391936 7.186149 -6.370759 -6.956168 5.105852 -0.295552 -1.224391 -1.750895 1.332714 4.330535 3.475506 3.803712 -5.840120 -6.009345 3.231337 -1.896335 5.560950 2.673474 0.336665 3.813151 -4.683729 -0.988667 -6.467835 -4.162987 1.796683 2.086220 -7.057750 -3.287379 -1.606359 6.953761 4.646781 -0.504788 -5.152481 -0.314340 6.233637 -6.930297 -1.292397 3.750432 5.226654 -8.050287 0.344506 4.871575 -5.978047 0.283469 -2.172175 -1.657434 -3.361691 -5.756936 4.584486 1.850356 4.774764 0.224297 1.694905 0.265826 2.854891 1.982534 2.292626 2.279229 7.225638 6.567538 -1.716452 -2.839255 -7.269700 3.573231 -8.505284 -9.160161 4.800576 -0.640813 -4.443248 0.376567 -0.336776 7.803397 1.749393 -0.563228 -0.489289 1.101145 +PE-benchmarks/boruvkas-algorithm.cpp__createGraph(int, int) = -0.682091 -0.647916 0.706767 -1.815319 1.091528 0.437016 0.504395 -0.758703 -1.479661 -0.455511 0.900652 -0.895627 -0.899962 1.731053 -0.802076 0.685946 1.378271 -0.086377 -0.954516 -1.079313 1.612018 -0.785025 1.988429 1.478966 -1.911595 -0.202669 0.207542 1.381192 1.108177 0.803604 0.006511 0.038673 0.122953 -0.842516 0.401528 -0.325555 0.346822 0.074132 0.195232 -1.657883 0.242618 0.196418 0.126640 -0.220982 -0.345075 0.922685 0.838799 1.455469 -0.330160 0.248147 1.803214 -0.209673 0.071293 0.254516 0.681044 -0.083628 1.435987 0.282263 -0.296070 -0.543425 -0.232517 -0.784819 0.462509 1.630674 1.753948 -0.243998 0.031955 0.578152 0.146359 0.842688 1.057417 0.341507 -0.290178 -0.043680 1.239350 -1.462559 0.270927 -2.523140 -0.156747 -2.826350 -0.899880 -0.136946 1.180711 -0.254620 0.548471 0.412228 1.639298 0.298241 -0.638228 0.618918 1.247062 -0.651526 -0.612708 -0.733646 -1.064149 0.422792 -0.963623 0.099937 0.629501 0.808051 -1.235014 0.149001 0.320332 0.535217 -0.741617 -0.370056 -0.264495 1.324376 -1.165440 -0.436540 -0.284962 1.059967 0.021623 -2.370381 -0.030733 -1.492612 1.277844 -0.445034 -0.167656 -0.409600 0.217376 0.993100 -0.542570 -0.374881 -0.824752 1.265718 0.858746 0.623067 -0.017040 0.199826 0.169467 1.168390 0.810291 -0.790679 -0.443195 0.038247 -0.780780 0.721221 -0.607029 -0.236895 1.213403 -0.988718 0.278466 0.381829 -0.475695 -0.569465 1.192491 0.382644 0.485197 4.064184 -0.072686 1.572079 0.800057 -0.990187 0.510796 -0.059432 0.326110 0.836398 0.789084 -0.438955 -1.558416 -1.397820 0.994859 1.361873 0.900140 -1.802291 -0.217079 -0.024467 -0.150177 -0.024145 -0.011918 0.338300 -0.295876 -0.798872 -0.451998 0.671975 2.172627 -0.675581 -1.327244 0.752352 0.446521 -0.896594 -1.411475 -0.423411 -0.168189 0.354847 0.046098 0.297167 1.069823 1.810334 -2.587382 1.258930 -0.235222 -0.201700 1.558799 -0.382315 -0.904852 -2.087995 -0.075122 0.414269 1.388003 -0.083471 -0.602156 0.765813 -1.472272 0.198384 -0.013793 0.129943 -0.411900 0.737737 0.018990 -0.589469 -0.990572 -0.520684 -0.384045 0.674486 -0.303692 0.736033 -0.636618 -2.718300 1.373767 -0.410878 -0.629188 0.037448 -0.158037 1.040386 -1.127597 -1.355575 0.661961 -0.131946 -0.768266 -1.544122 0.139811 0.840192 -0.125945 0.137373 -1.240021 -1.090010 0.870026 -1.364067 1.280659 0.584791 0.009497 1.206964 0.270842 -0.194368 -1.348654 -0.030052 0.005636 -0.155859 -1.473738 -0.033712 -0.327308 1.206783 0.761493 -0.089177 -0.202082 0.172464 1.754170 -1.210422 -1.149649 0.643312 0.499181 -1.071349 1.082658 1.032482 -1.257246 -0.241848 -0.985372 -0.821902 -0.649667 -1.372088 1.231528 0.325998 1.223198 -0.129435 0.888148 -0.161013 0.514611 0.213083 0.195257 -0.074506 1.997481 2.382957 -0.993953 -0.547632 -1.664987 1.191013 -1.402549 -1.417303 0.622508 0.073268 -0.480343 0.385283 -0.169323 1.635207 0.602853 -0.589706 -0.369169 0.310029 +PE-benchmarks/boruvkas-algorithm.cpp__main = -2.730140 -1.701378 2.568806 -7.695086 5.252629 5.200952 2.265467 -3.843637 -7.260439 -0.685887 2.441727 -6.327061 -1.579367 8.380240 -2.980912 5.325258 10.377639 1.615397 -4.335679 -1.284370 7.572282 -1.875972 9.547007 8.642272 -6.838844 -0.315901 0.971564 4.751442 2.397956 4.405133 -2.360322 -2.742174 2.325956 -6.264433 -0.780402 -4.863530 0.787866 1.171111 4.406165 -10.432103 1.951955 -0.096077 -0.632274 -2.047788 -1.823113 0.928936 5.927534 6.262186 -1.268364 1.053130 5.777992 0.909860 -0.963797 1.668545 3.062084 2.469603 4.763253 2.397615 -2.415557 -3.105113 -1.212744 -2.026249 1.861184 7.029443 8.132399 1.036905 -0.111555 3.184878 1.396803 1.406949 3.710690 1.131154 -1.984917 1.016669 3.123280 -9.091295 1.445112 -11.332379 -1.274617 -11.080591 -4.164817 -0.332520 3.972030 -1.162032 4.207616 0.294569 7.037242 -1.474206 -1.490520 4.501143 8.103834 -6.499181 -3.040869 -4.391874 -4.877768 1.688750 -3.512636 0.083127 3.121603 0.635655 -5.942551 -3.183643 3.333918 3.685420 -2.738530 -2.881053 1.245540 6.444495 -5.462754 -5.046328 -0.691904 4.705462 -1.905833 -10.856507 -2.495683 -5.748596 4.977052 -0.594309 -2.795186 -7.081782 1.442055 5.295382 -2.593609 -3.530703 -1.144752 6.083773 3.962838 2.608474 0.122807 -0.423712 1.621908 9.252117 3.880052 -4.451842 0.576275 -0.324346 -3.167113 2.196116 -4.431867 -2.671532 1.439055 -6.234565 0.295584 5.741358 -4.026077 -0.409116 5.634018 2.533226 2.244457 24.799512 -0.638103 7.896925 4.555092 -7.282682 3.175178 -1.139823 -0.007939 2.058668 3.012325 0.432051 -12.646031 -6.552116 4.364679 7.195502 5.377019 -8.843081 -2.126646 -1.816151 -1.133285 0.466231 -0.363548 1.303313 -0.582293 -5.254192 -2.245251 4.826893 14.205871 -3.546605 -6.218366 3.885036 0.963397 -3.789314 -8.748723 -3.010729 -3.696527 1.897315 1.354751 -0.316328 5.098037 9.169609 -13.457160 6.563237 -1.788308 -2.169512 7.900884 1.168196 -5.588073 -7.682022 -1.557908 4.719029 8.318996 -1.018762 -1.018905 2.732226 -6.473063 -0.619984 0.984286 0.760156 -2.097160 3.034800 1.940094 -4.887445 -4.085363 -0.322931 -1.505886 -1.352388 -1.399687 4.221707 -2.208482 -11.399761 7.504822 0.746878 -1.952190 2.275318 -2.050008 5.542411 -6.270644 -7.523562 4.411477 0.480890 -1.337670 -3.625099 0.896464 4.929625 1.930107 2.548106 -5.609220 -8.469896 3.763182 -3.530074 6.239430 2.862298 0.284642 4.880442 0.020873 -1.124868 -7.230615 -3.102796 0.498918 0.752727 -6.631274 -3.386231 -2.105282 7.032065 5.060110 -0.126417 -3.277728 -1.095833 7.850389 -6.759865 -1.921520 4.456630 3.281884 -7.359295 0.874106 5.812976 -7.054083 -0.981547 -2.939630 -3.170133 -2.921638 -5.608392 4.443633 0.949819 4.318948 0.280830 1.590948 -0.409614 2.584256 1.813838 1.527110 1.468377 8.745793 9.179112 -2.881161 -1.960485 -6.916304 4.052988 -8.628067 -8.281128 3.624262 0.098240 -4.962571 0.895138 1.227117 7.710694 1.122188 -0.436092 -0.319914 0.441605 +PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -4.695814 -4.756886 -1.663082 -9.480008 6.798370 7.789909 3.434766 -7.255251 -10.103506 0.136088 5.297325 -9.214478 -0.746053 11.752578 -4.164722 10.911923 13.062211 1.580400 -5.958121 -1.709365 11.971519 0.798883 14.317978 12.007586 -9.468717 -1.200291 1.178979 4.263931 4.297442 1.073664 -0.247728 -4.052226 5.951117 -12.662912 -4.287665 -5.925878 1.976411 3.632388 11.101247 -12.425108 2.787644 -2.610940 -0.658488 -2.551107 -4.165416 -0.552359 5.997581 9.653745 -2.506650 4.134608 9.217259 1.310048 -2.195687 2.629467 1.628298 2.248156 0.435006 2.186689 -2.720602 -6.125468 -0.891752 -0.827473 2.360785 9.703334 11.596871 1.250880 -0.205169 7.980534 2.427301 2.283910 6.045481 1.959803 -3.078491 0.393581 5.113834 -13.812398 -1.455283 -17.646123 -3.190121 -15.493555 -5.069575 1.419782 5.594879 -3.106019 7.662132 2.496399 9.607354 -0.940366 -4.150502 9.662953 10.867853 -10.279948 -4.538194 -5.394470 -6.196925 2.841190 -5.847942 2.697880 4.427881 1.391809 -8.707491 -6.553341 1.785493 5.676660 -3.786888 -9.032736 2.520333 7.186408 -7.427404 -8.525206 0.842001 7.445655 -3.592026 -15.579959 -5.500251 -7.262296 8.076271 -0.759279 -3.652162 -10.598183 0.678634 5.919904 -2.745788 -7.155733 3.660590 4.021630 7.135381 5.569509 0.612129 0.186712 2.532764 17.507693 3.773609 -6.871780 0.990951 -1.186640 -2.063735 5.434003 -6.356073 -4.529769 2.595211 -10.198320 3.762290 9.271878 -5.538372 -2.820429 11.343810 4.082542 1.887402 31.151536 1.352507 11.959746 9.600267 -9.770474 0.455775 -5.226472 1.560901 4.480680 3.787535 -0.864750 -13.790938 -9.687294 6.265860 10.005813 7.700891 -11.914700 -4.271363 -0.863104 0.125644 -0.402747 -1.658395 2.635959 0.075080 -7.583039 -2.056745 9.254421 17.386134 -5.915735 -2.719730 6.062508 5.260141 -4.772075 -10.336020 -5.645805 -8.462197 2.550955 5.528792 1.548256 6.376133 12.943598 -15.492704 7.781337 -1.458703 0.465910 5.889266 5.494576 -10.719727 -7.709289 -1.949373 5.384995 8.801811 -2.587739 2.124941 5.605296 -9.427317 -0.617010 2.506971 -0.982533 -2.468211 4.240601 2.534337 -4.932925 -5.587352 4.969043 -2.604090 -3.015449 0.481283 7.541996 -1.450272 -14.398732 8.866255 -0.024932 -4.900773 3.586251 -3.965716 11.493200 -9.346952 -9.834093 7.944780 -0.221971 -0.782796 -3.474039 2.850660 6.400052 4.102744 5.380517 -6.873189 -10.081649 5.210366 -3.285647 8.116546 3.957973 -0.837901 5.751499 -9.785632 -2.324069 -10.807813 -4.894596 0.570320 2.387386 -10.452953 -5.905124 -1.686902 10.572403 6.724033 0.243952 -8.023830 0.163104 9.726865 -11.879535 -1.838550 6.354952 9.709403 -11.159055 1.578214 7.931844 -10.458322 1.210763 -3.296575 -1.475046 -3.960555 -8.149402 7.259169 2.932459 7.274552 -1.087319 2.545529 2.136376 4.882657 3.769829 3.546879 2.362269 11.039194 10.839107 -3.562455 -6.207793 -10.768965 4.332105 -12.462613 -13.709864 6.949911 0.323322 -7.981042 1.326392 0.330514 12.095741 2.117921 -1.190500 -1.975729 1.321930 +PE-benchmarks/find-k-closest-elements-given-value.cpp__printKclosest(int*, int, int, int) = -4.868570 -5.522815 -2.832926 -11.218491 7.192023 7.658857 3.452356 -7.054073 -12.436212 -0.620370 5.653116 -11.493674 -0.068011 12.706296 -4.074134 11.577284 15.029695 1.488035 -6.628484 -1.267840 13.636375 -0.574695 14.973221 13.354116 -9.767761 -1.088274 0.062625 4.527820 3.957165 1.286468 1.048915 -5.193964 5.244863 -13.295639 -3.882773 -7.271507 1.868147 4.495857 12.441929 -14.914244 3.316639 -0.320853 1.461976 -3.226930 -4.105467 -0.411521 5.978947 9.844747 -2.924256 3.948505 10.668600 2.283255 -2.507995 2.358070 1.849447 2.244681 1.276154 1.707118 -3.034072 -6.339920 -0.739016 0.113415 3.090008 10.016190 12.823685 0.926789 -0.234875 8.132295 3.416006 2.497143 6.996705 1.708427 -4.239896 -0.569618 4.836622 -15.572173 -1.546081 -20.913959 -1.984549 -20.468541 -5.650342 2.429622 7.265682 -1.642221 6.976584 1.255367 10.221255 -2.301905 -4.443393 10.846344 10.960971 -9.394189 -4.609025 -6.416690 -7.483190 3.357827 -5.486778 1.567077 6.384671 2.053255 -9.049124 -5.407221 2.857062 5.788231 -3.983644 -9.319966 3.227874 7.974191 -7.713147 -8.891236 2.521903 10.277440 -3.252606 -16.890180 -5.240562 -9.492625 5.660272 -0.982001 -4.094965 -10.360012 0.470685 5.171424 -3.387666 -6.172788 0.927132 5.701155 7.517220 6.100768 0.595197 0.447516 2.776539 18.583033 2.499944 -7.785531 1.477646 -0.812543 -1.975983 5.744520 -7.558287 -5.278946 3.258943 -10.381903 3.627459 8.968102 -5.900864 -2.913142 11.795365 4.455378 1.530280 38.866969 1.436771 15.051932 10.890356 -9.979893 2.387870 -4.397411 1.340332 4.307404 4.034652 -1.305173 -16.710549 -10.404743 6.616593 10.672103 8.361974 -12.877876 -4.794020 -0.401753 -0.963070 0.262269 -1.556701 2.211052 0.201744 -8.297186 -2.387351 9.556515 21.687485 -4.597835 -0.982644 6.220873 7.289339 -6.609106 -13.018540 -5.567049 -10.224515 2.775718 4.093853 1.259288 7.285632 13.868673 -18.996697 8.575723 -1.024694 1.136652 7.163486 5.407903 -12.278102 -13.703533 -3.134373 5.433207 11.442221 -4.475054 3.132937 5.925532 -9.405738 -0.536167 2.594407 -1.797830 -2.784832 4.005465 1.659215 -4.500049 -4.805635 5.534328 -4.078221 -2.727825 -0.148532 7.549018 0.313795 -14.766393 9.248373 0.274527 -4.366371 2.489714 -4.179880 11.497139 -9.415462 -9.706515 8.024464 0.201640 -1.316588 -4.383286 2.487466 7.099228 3.421735 6.104127 -6.765422 -11.892841 6.697740 -5.174655 8.875806 4.324892 -2.001620 5.003252 -8.166895 -1.835835 -12.412723 -6.566369 -1.263729 2.688682 -11.763858 -4.768320 -1.971903 10.676911 6.123750 0.444955 -9.427822 0.530462 11.184679 -11.029013 -1.326705 6.503612 7.903664 -13.119665 1.534262 8.531714 -12.226626 2.141229 -4.423169 -1.137825 -4.276209 -7.831894 7.931104 4.391005 7.553077 -1.736488 2.267813 1.952886 4.975924 4.783492 3.167676 2.586147 13.291162 11.013010 -2.613580 -6.096237 -11.205299 4.144481 -12.540749 -14.843647 6.521821 0.759220 -9.833573 1.195906 1.088258 13.840693 2.417534 0.451126 -1.809002 2.340696 +PE-benchmarks/find-k-closest-elements-given-value.cpp__main = -1.114550 -1.188733 0.040353 -2.861091 2.108359 1.584365 1.034295 -1.284579 -3.455860 -0.456060 1.215321 -3.016972 -0.456438 3.551673 -0.962369 2.621404 4.383068 0.855131 -1.572177 -0.513787 3.197575 -0.774651 4.004213 3.756675 -2.641279 -0.011115 -0.053096 1.265966 0.749018 1.232885 -0.346038 -1.671575 1.378615 -3.014659 -0.564786 -2.216107 0.221453 1.038286 2.512281 -4.474784 0.884341 0.311333 0.430309 -0.847418 -0.802521 0.625930 2.096919 2.558384 -0.710457 1.289748 2.500943 0.314222 -0.372866 0.702237 0.956377 0.912612 0.919692 0.587048 -1.262604 -1.157942 -0.453546 -0.761105 0.643381 2.595584 3.405181 0.154811 -0.203636 1.546167 0.674364 0.670779 1.822437 0.463790 -0.594855 -0.272189 1.378742 -3.719138 -0.253683 -5.509919 -0.563755 -6.305937 -1.830918 0.244134 2.530254 -0.385831 1.570353 -0.015488 2.928011 -0.751468 -0.848825 2.443437 3.245431 -2.584895 -1.391336 -1.669151 -1.837556 0.873512 -1.411172 0.006492 1.905334 0.242346 -2.562647 -1.462163 1.308105 1.282473 -1.080904 -1.806481 0.711011 2.516450 -2.546098 -2.224938 -0.226474 2.360612 -0.549947 -4.381282 -0.821182 -2.159188 1.599112 0.167840 -1.402072 -2.580736 0.544290 1.449699 -1.182890 -1.386294 -0.304314 2.171388 1.483068 1.412415 0.300367 0.112765 0.681332 4.356854 1.276063 -2.102204 0.416888 0.050739 -0.805093 1.314063 -2.010313 -1.542994 0.863002 -2.776956 0.765792 1.863679 -1.830414 -0.538897 2.639940 1.177239 0.568893 9.547994 0.014534 3.814385 2.414808 -2.771158 1.223344 -0.837991 0.242329 0.987022 1.541552 -0.084970 -4.148779 -2.734615 1.720561 3.056580 2.343390 -3.592341 -1.280872 -0.450889 -0.158755 0.331254 -0.092307 0.575761 0.227236 -2.298042 -0.703834 1.994080 6.007896 -1.314709 -1.316479 1.427775 1.326836 -1.492096 -3.578222 -1.282101 -2.311162 0.716598 0.636776 0.047036 1.940607 3.833349 -5.852396 2.704847 -0.779491 -0.257503 2.397038 1.156569 -2.813321 -3.958377 -0.966934 1.620811 3.589899 -0.548187 0.398521 1.416836 -2.625169 -0.262274 0.437399 -0.039050 -0.888137 1.266492 0.418952 -1.623136 -1.252865 0.520012 -0.829441 -0.733143 -0.250446 1.913924 0.336823 -4.774527 2.610907 0.146780 -1.090634 0.683339 -0.577084 2.601086 -2.506955 -2.905394 1.870934 -0.070048 -0.907426 -1.407981 0.366896 1.893812 0.570113 1.123572 -1.606169 -3.410045 2.177882 -1.316439 2.627887 1.287393 -0.497272 1.992215 -0.796176 -0.766737 -2.930110 -1.520982 -0.084591 -0.151092 -2.580780 -0.961426 -0.814084 2.796261 2.015880 0.363233 -1.930207 -0.284635 3.295125 -2.876414 -0.481973 2.121050 1.630471 -2.848229 0.852979 2.647788 -3.357308 0.114922 -1.388288 -0.626941 -1.030890 -1.886515 2.006600 0.535443 1.723481 -0.248656 0.516564 0.048614 1.238899 0.963467 0.468598 0.420304 3.805236 3.531793 -1.189557 -0.830349 -2.791417 1.344688 -3.421351 -3.563600 1.274077 0.437461 -2.682990 0.360553 0.422765 3.319167 0.492651 -0.156338 -0.626475 0.554395 +PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -1.354810 -1.380088 0.123217 -2.960362 1.794264 1.752004 0.950301 -1.548070 -3.161451 -0.267099 0.866136 -2.605306 -0.061651 3.655128 -0.917201 3.243322 4.363102 1.020200 -1.559347 -0.235526 3.565470 -1.183782 3.879209 3.584709 -2.459886 -0.331877 -0.018967 1.827346 0.678266 1.271550 -0.347090 -1.129771 1.138592 -3.700615 -0.707526 -2.597886 0.646770 1.639746 2.631367 -4.455985 0.932827 0.088792 0.561638 -1.038751 -1.145302 -0.906869 1.806779 2.775053 -0.567827 0.826077 2.181953 0.224876 -0.361793 0.863704 0.841742 1.468986 0.372658 -0.058378 -1.226953 -1.242951 -0.296261 -1.062012 1.331690 2.617275 3.425398 0.365647 0.033380 2.059336 0.509605 0.460860 1.840764 0.311136 -1.355519 -0.402768 1.323064 -4.676459 0.067140 -5.035082 -0.608965 -4.506596 -1.673520 0.108536 1.653663 0.236679 2.268821 0.299686 2.784821 -1.068972 -0.655908 2.521138 3.072880 -3.114916 -1.365525 -2.238987 -1.892060 0.923731 -1.581693 -0.328966 1.182769 0.385481 -2.382558 -1.827381 1.492208 1.886373 -1.036025 -2.358053 0.779154 2.640959 -2.329575 -3.283189 -0.106685 2.197344 -1.476960 -4.127233 -0.370471 -2.386443 1.446170 -0.002552 -1.052492 -3.405001 0.439908 2.018578 -0.757835 -2.030340 -0.571465 1.936193 1.385370 0.903238 0.259509 -0.050909 0.239083 4.745642 1.340869 -1.976300 0.261186 0.403662 -1.300802 0.963685 -2.126295 -1.866330 0.630405 -3.109144 -0.598167 2.442167 -1.799940 -0.139547 2.820859 1.320879 0.981205 9.751495 0.344971 3.170220 2.422127 -2.961065 1.543781 -0.797467 0.260461 1.028958 1.339823 -0.203472 -5.291644 -2.907035 1.357699 2.840860 2.491429 -2.783548 -1.974582 -0.997001 -0.051156 0.621812 -0.490887 0.755608 -0.188029 -2.527457 -0.592357 1.888836 5.938327 -1.486372 -0.386093 1.857967 0.881581 -2.244410 -4.369627 -1.528204 -2.864187 0.403346 0.030662 -0.074240 1.714057 3.825100 -4.447416 2.713228 -1.111240 -0.188009 2.302129 0.656369 -2.661723 -3.770650 -1.004253 1.758089 3.559618 -1.077293 0.831182 1.356348 -2.654463 -0.149659 0.370765 0.063628 -0.639212 1.221672 0.120746 -1.854266 -1.420051 1.294510 -1.128982 -1.268685 0.115965 1.811620 0.474604 -3.036865 2.676274 0.048372 -0.826511 1.767387 -0.502043 2.945792 -2.735300 -2.979532 2.299623 0.491721 -0.030012 -1.201528 0.643457 2.283929 0.635351 0.009711 -1.601531 -3.245851 1.452438 -1.254390 2.318922 1.137773 -0.477834 1.454572 -0.336930 -0.798826 -2.866627 -1.476765 -1.308111 0.171027 -2.648266 -2.167528 -0.611411 3.273574 2.229120 0.406725 -1.817557 0.300405 3.467932 -2.918086 -0.680591 2.129293 1.124520 -3.126410 0.051597 2.664396 -3.558076 -0.065354 -1.042557 0.053685 -0.637193 -2.180319 1.942395 0.431118 1.803258 -0.214351 0.518815 0.302997 1.186043 1.472263 0.774987 0.333274 4.093410 2.519396 -0.591521 -1.400397 -2.732355 0.844035 -3.547271 -3.173877 1.154660 1.157595 -2.524158 0.751230 1.061745 3.383090 0.577545 0.340325 -0.099502 -0.443966 +PE-benchmarks/m-coloring-problem.cpp__graphColoringUtil(bool (*) [4], int, int*, int) = -2.350618 -2.722223 -0.597219 -4.684070 3.103211 2.378817 1.735182 -2.187051 -5.686478 -0.748476 1.707563 -4.264872 -0.227727 6.440714 -1.306035 5.541504 7.869387 1.863857 -2.521502 -0.628384 6.390733 -2.592251 6.550894 6.301510 -4.259582 -0.517355 0.220850 2.459739 1.310058 1.504519 -0.118818 -2.014658 2.274736 -6.606086 -1.058034 -4.859199 1.044582 3.009855 4.752744 -8.054486 1.665045 -0.139086 1.383277 -1.697863 -2.124973 0.384091 2.940175 4.845043 -1.913406 2.051864 4.208680 0.126908 -0.884020 1.444336 0.761841 2.105851 -0.050556 1.459066 -2.089338 -1.957143 -0.495939 -1.979327 2.392595 4.329666 6.182026 0.145234 0.050557 3.855881 1.129460 1.220246 3.219626 0.504978 -1.533593 -1.581357 2.700771 -8.265445 -1.321190 -10.761585 -1.159443 -10.720467 -2.851414 0.413012 3.695780 -0.821975 3.404451 0.753396 4.861822 -1.467243 -1.309767 5.099300 5.290779 -4.926746 -2.440609 -3.838849 -3.557905 1.880226 -2.735441 -0.425426 3.632876 0.521114 -4.243916 -3.432404 2.418381 2.810419 -1.746615 -4.822256 1.250791 4.506903 -4.239317 -5.181315 -0.336072 3.893914 -2.016947 -7.451303 0.156043 -4.253100 2.688242 0.291691 -1.931274 -5.206423 0.632015 2.875078 -1.674145 -3.331542 -0.251195 3.710460 2.105686 2.015311 0.669642 -0.333017 0.384622 7.657816 2.943390 -3.783933 0.355554 0.709958 -2.188314 1.939711 -4.260442 -3.462245 2.411902 -5.692174 0.424538 3.497611 -3.174667 -1.077830 6.077276 1.921561 1.499742 15.821156 0.704347 5.864828 4.256154 -4.993697 2.819939 -1.469554 0.569819 2.293907 2.996586 -0.653058 -8.104017 -4.900306 2.309188 5.042497 4.403639 -5.587295 -4.387115 -1.412321 -0.080043 1.114313 -0.794346 1.373296 -0.184513 -4.287629 -0.958689 3.366854 10.030377 -2.487139 -0.113329 2.849370 2.786993 -3.880500 -8.220460 -2.541731 -5.752286 0.757323 0.624386 -0.167310 3.029840 6.613001 -9.158843 4.610004 -2.051937 0.307150 3.088125 1.876041 -4.840283 -8.361365 -1.488149 2.844276 6.568632 -1.605376 1.468694 2.661472 -4.563875 -0.209058 0.680578 -0.137029 -1.189288 2.147546 -0.238427 -2.669669 -2.277196 2.695789 -1.952180 -2.260268 0.758214 3.217060 1.117777 -5.913878 4.397053 -0.700140 -1.790861 2.544499 -0.525294 5.211918 -4.409889 -5.094603 3.900718 0.728156 -0.299667 -2.835646 1.104714 4.058313 0.859581 0.152617 -1.953095 -6.658246 2.709708 -2.567136 4.110468 2.016643 -1.094467 3.326480 -0.981653 -1.530540 -5.666574 -2.188287 -2.036778 -0.292415 -4.416558 -3.669350 -0.913335 5.432278 3.694278 0.865923 -3.260419 0.620472 6.190702 -5.077223 -1.188556 3.843956 2.312980 -4.894969 1.098875 4.777902 -6.622396 0.069451 -2.164892 0.430375 -0.850119 -3.643783 3.398469 0.837376 2.998671 -0.786146 1.124071 0.851862 2.271970 2.668157 1.437365 0.116695 7.115504 5.235748 -1.868967 -2.488133 -4.674236 1.587053 -6.246234 -5.634947 1.803565 2.414633 -4.297107 1.365500 1.454504 5.701339 0.559439 0.347478 -0.656608 -0.261766 +PE-benchmarks/m-coloring-problem.cpp__graphColoring(bool (*) [4], int) = -1.425529 -1.571068 0.015262 -3.094786 2.140174 1.362756 1.204468 -0.924589 -3.987191 -0.851735 0.930790 -3.414937 -0.618287 4.453030 -0.772897 3.315689 5.560833 1.432431 -1.651535 -0.205787 3.854969 -1.997763 4.331494 4.229101 -2.770356 -0.176029 -0.442929 1.642475 0.347287 1.682446 -0.053251 -1.913705 1.242634 -3.595849 -0.297984 -3.104315 0.544411 1.937328 2.489038 -5.879004 1.143755 1.084324 1.643921 -1.258676 -1.117475 0.192223 2.330977 3.203703 -1.077857 1.143070 2.561715 0.047619 -0.221183 0.962886 0.721964 1.243752 0.338216 0.363494 -1.898336 -1.019152 -0.422457 -1.646884 1.319052 2.849849 4.131971 0.163342 -0.075403 1.914439 0.662040 0.980755 2.054139 0.316030 -0.834583 -1.040789 1.643545 -4.439990 -0.671827 -6.539688 -0.453397 -7.329201 -2.237065 0.101728 3.158319 0.837580 1.835089 -0.284955 3.359378 -1.209808 -0.634689 3.095249 3.822210 -2.963789 -1.745931 -2.770399 -2.351348 1.439870 -1.756291 -0.690606 2.451046 0.435314 -2.963543 -1.870953 1.782716 1.594643 -1.156368 -2.328548 0.799814 3.239752 -2.956586 -3.181113 -0.545309 2.733537 -0.844820 -5.078017 0.358003 -2.565068 0.488452 0.543509 -1.468629 -3.052177 0.675673 1.525190 -1.360519 -1.704336 -1.676190 3.163324 0.910828 1.080815 0.595392 0.007162 0.356744 4.504954 1.690716 -2.558156 0.342831 0.613884 -1.332543 1.139202 -2.748212 -2.416111 1.145992 -3.802057 0.052361 1.909822 -2.272359 -0.553873 2.106318 1.275485 1.106605 10.152864 0.189777 4.088328 2.579198 -3.319084 2.856952 -0.553138 0.115147 1.125224 2.083612 -0.181058 -4.838456 -3.238037 1.602127 3.549115 3.039484 -3.311625 -2.429085 -0.954935 -0.096822 0.754395 -0.073727 1.001124 0.058176 -3.003135 -0.706501 2.082008 6.943713 -1.302624 -0.675197 1.860042 1.730259 -2.198635 -5.257889 -1.481360 -3.638390 0.372297 -0.014891 -0.272501 2.032773 4.537022 -6.291235 3.474398 -1.029182 -0.016970 2.629023 0.612929 -3.114539 -6.060281 -1.148407 2.129038 4.883810 -0.967615 0.554411 1.423929 -3.071801 -0.214300 0.385264 0.083357 -0.867910 1.508782 -0.559835 -1.822207 -1.495530 0.818567 -1.471624 -1.463426 -0.104870 2.029181 1.575279 -3.708327 3.142441 -0.343733 -1.084874 1.321158 -0.207378 2.904807 -2.865054 -3.438335 2.207361 0.203634 -0.934399 -1.985681 0.510400 2.556433 0.395844 -0.160614 -1.024942 -4.444390 2.296069 -1.585179 2.945685 1.448948 -0.732033 2.030745 1.595932 -1.182056 -3.189047 -1.746615 -1.278600 -0.696199 -2.752431 -1.972293 -0.872614 3.486230 2.594578 0.626526 -2.132620 -0.174236 4.233933 -2.640774 -1.029811 2.794975 -0.262263 -3.013312 0.790252 3.469366 -4.394558 -0.111705 -1.917669 0.400162 -0.610094 -2.376285 2.005180 0.307499 1.706782 -0.332372 0.364139 0.060027 1.324798 1.738418 0.364466 -0.059901 5.145550 2.791028 -1.176824 -0.719104 -3.100267 1.151089 -4.212186 -3.460634 0.876785 1.595659 -3.070641 0.855678 1.131742 3.521302 0.176803 0.329721 -0.669465 -0.047557 +PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -0.473019 -0.662004 0.026456 -1.414546 0.693448 0.425526 0.361394 -0.397631 -1.555812 -0.429259 0.552855 -1.423723 -0.200373 1.524095 -0.470883 1.045341 1.865651 0.343409 -0.643478 -0.210062 1.403292 -0.492720 1.675181 1.690570 -1.302850 -0.102970 -0.204383 0.958257 0.540315 0.403512 0.383568 -0.617967 0.320091 -1.135690 -0.105801 -1.086111 0.342435 0.679263 0.827708 -2.128855 0.371891 0.431535 0.510091 -0.342912 -0.313395 0.166379 0.731180 1.229575 -0.554520 0.506973 1.351136 0.220970 -0.125028 0.263236 0.036108 -0.019010 0.153158 -0.159514 -0.525470 -0.419974 0.079711 -0.612402 0.473430 1.214436 1.703497 0.014111 0.043909 0.621796 0.402020 0.366868 0.922522 0.155467 -0.511739 -0.186363 0.649923 -1.577471 -0.040420 -2.570790 0.016859 -2.834424 -0.814446 0.065036 1.467906 0.555813 0.432994 -0.110506 1.225229 -0.224867 -0.298276 1.443374 1.230596 -0.796474 -0.613279 -0.973548 -0.999568 0.779378 -0.749906 -0.077382 0.612250 0.624843 -0.995422 -0.365737 0.438382 0.492200 -0.526289 -0.724184 0.243491 1.034168 -1.222449 -0.931011 0.068139 1.279242 -0.067930 -2.004071 -0.205109 -1.224933 0.497890 -0.050689 -0.322547 -0.697104 -0.029143 0.379391 -0.389356 -0.246158 -1.134834 0.979493 0.521201 0.517919 0.144286 0.129016 0.262230 1.633679 0.160501 -0.966309 -0.005900 0.220062 -0.393153 0.491567 -1.096453 -0.677321 0.692856 -1.273481 0.150382 0.602130 -0.748443 -0.531826 0.703114 0.450384 0.389030 4.330834 0.318334 1.711414 1.189222 -1.029525 0.716236 -0.182962 0.139533 0.653680 0.561302 -0.214451 -1.611880 -1.174356 0.483721 1.286186 1.026997 -1.179547 -0.632256 -0.043792 -0.158678 0.180231 -0.040403 0.282464 -0.159159 -0.978761 -0.257417 1.010452 2.308864 -0.073264 -0.018283 0.542461 0.925497 -1.014625 -1.555119 -0.425144 -0.984222 0.263852 0.123951 0.065494 0.854224 1.630237 -2.554240 1.146885 0.110414 0.361036 0.765992 0.181235 -1.346997 -2.285674 -0.277269 0.606407 1.587936 -0.585326 0.365952 0.763110 -1.148504 -0.052787 0.290273 -0.120616 -0.356054 0.503036 -0.019056 -0.426188 -0.633223 0.296359 -0.666764 -0.091843 -0.199542 0.815515 0.362601 -1.586526 1.037178 -0.301358 -0.586918 0.182355 -0.437750 1.120421 -1.326957 -1.106313 0.714525 0.035095 -0.639855 -0.897399 0.184189 0.867167 0.042961 0.178692 -0.545319 -1.364580 0.891372 -0.831718 0.869616 0.576190 -0.368236 0.658764 0.133032 -0.187295 -1.277087 -0.650228 -0.241571 -0.142385 -1.177842 -0.184759 -0.282712 1.082149 0.945757 0.051921 -0.947526 0.351211 1.548811 -0.747421 -0.642274 0.752750 -0.000832 -1.188522 0.511066 1.026743 -1.749874 0.197645 -0.888662 0.058052 -0.080464 -0.882493 1.023843 0.342336 0.850228 -0.075427 0.281835 -0.063891 0.665870 0.555913 0.114824 0.152821 2.000475 1.213012 -0.222137 -0.258778 -1.348217 0.387771 -1.568528 -1.468836 0.334998 0.281069 -0.989492 0.379657 0.172497 1.487869 0.366886 0.166337 -0.277986 0.376061 +PE-benchmarks/m-coloring-problem.cpp__main = -0.372667 -0.291959 0.394338 -0.996874 0.924171 0.342691 0.487590 -0.098384 -1.435089 -0.493362 0.277622 -1.370305 -0.583165 1.598147 -0.278312 0.829763 2.018628 0.586530 -0.487753 -0.168441 0.986396 -0.709132 1.605468 1.588986 -1.036276 0.126607 -0.242603 0.535999 -0.053446 1.005735 -0.280379 -1.001870 0.504261 -0.789462 0.057323 -0.981440 -0.012557 0.412831 0.447279 -2.169805 0.353110 0.671344 0.455194 -0.393691 -0.184743 0.465886 1.175646 1.062585 -0.254899 0.568047 0.743440 -0.051682 0.094973 0.357884 0.537521 0.363536 0.474606 -0.004990 -0.897688 -0.154316 -0.296062 -0.880974 0.113184 1.004542 1.421218 0.028595 -0.147581 0.273104 0.035115 0.359612 0.662911 0.188359 0.095038 -0.212724 0.601791 -0.988351 -0.107425 -2.009048 -0.202311 -2.931452 -0.976985 -0.131892 1.475863 0.452816 0.421721 -0.343946 1.315333 -0.378818 -0.126777 0.839262 1.590970 -1.028536 -0.690969 -0.783322 -0.676024 0.455689 -0.595819 -0.273924 0.800344 0.036378 -1.155540 -0.557162 0.768906 0.324433 -0.436079 -0.350384 0.193457 1.231397 -1.337903 -0.817340 -0.613613 0.752095 0.028841 -1.772488 0.107199 -0.574010 0.246612 0.404438 -0.707578 -0.851726 0.469223 0.451193 -0.617189 -0.374660 -0.884710 1.325370 0.148665 0.388254 0.282107 0.115527 0.265879 1.344183 0.711405 -0.856906 0.162215 0.183647 -0.403662 0.410222 -0.786614 -0.781171 0.254507 -1.234987 0.120446 0.407091 -0.902014 -0.161524 0.154572 0.400156 0.375153 3.056498 -0.171253 1.414417 0.702867 -1.221298 1.048945 -0.170328 -0.058550 0.232072 0.879832 0.157145 -1.207985 -1.089069 0.701322 1.394127 1.060094 -1.254026 -0.478016 -0.314150 0.051044 0.218207 0.232021 0.335786 0.201169 -1.053832 -0.299320 0.576424 2.483178 -0.465433 -0.887338 0.544602 0.318687 -0.365182 -1.490124 -0.380960 -0.789867 0.171276 -0.031934 -0.158569 0.705902 1.657480 -2.574851 1.386249 -0.424777 -0.293385 1.170042 0.139206 -0.933762 -1.929165 -0.439800 0.852387 1.807422 0.065915 -0.018722 0.351221 -1.140123 -0.162688 0.060752 0.208988 -0.404154 0.643635 -0.094725 -0.840285 -0.559429 -0.366526 -0.323606 -0.352733 -0.297689 0.708082 0.673920 -1.968101 1.214233 0.019806 -0.411638 0.209320 0.074339 0.806057 -1.014798 -1.364071 0.572462 -0.258442 -0.840708 -0.706662 -0.004379 0.716163 0.038524 -0.065049 -0.349465 -1.453538 1.162474 -0.413192 1.191873 0.597571 -0.161204 1.032676 1.001269 -0.565150 -0.809045 -0.600980 0.021166 -0.684149 -0.730668 -0.177877 -0.485585 1.117705 1.063889 0.282937 -0.577096 -0.349695 1.495602 -0.858497 -0.395142 1.144059 -0.187388 -0.771695 0.575952 1.350877 -1.424542 -0.190211 -0.827278 -0.138031 -0.342751 -0.763783 0.623404 -0.164352 0.447537 0.073744 0.045430 -0.312412 0.419333 0.325181 -0.120246 -0.076095 1.829678 1.291461 -0.687503 0.258398 -1.066434 0.589235 -1.502874 -1.172263 0.226577 0.444336 -1.091659 0.170373 0.277633 1.019043 0.042503 -0.127781 -0.413546 0.157088 +PE-benchmarks/egg-dropping-puzzle.cpp__max(int, int) = -0.506122 -0.740676 -0.092479 -0.956983 0.649825 0.207414 0.291580 -0.471655 -1.190386 -0.148388 0.406858 -0.696922 0.190655 1.115358 -0.282880 1.112725 1.249664 0.371480 -0.400063 -0.264940 1.142007 -0.647114 1.021565 1.083318 -0.746963 -0.080175 0.034822 0.395253 0.199163 0.324390 -0.082814 -0.464549 0.350031 -1.199372 -0.152985 -0.876810 0.101927 0.817838 1.073442 -1.353169 0.312326 -0.045471 0.230859 -0.210599 -0.333802 -0.051947 0.274627 0.730369 -0.372357 0.721092 0.845958 0.060387 -0.158821 0.182223 0.229212 0.528689 0.074788 0.228805 -0.297129 -0.277958 -0.200646 -0.129448 0.562662 0.669301 0.958174 -0.126394 -0.032565 0.604041 0.249997 0.205221 0.756756 0.107795 -0.467309 -0.483222 0.462818 -1.608805 -0.185725 -2.250096 -0.104758 -1.997042 -0.501536 0.288764 0.727434 -0.143931 0.548286 0.231379 0.949589 -0.360150 -0.422999 0.781694 0.772085 -0.787932 -0.366914 -0.442777 -0.758083 0.167415 -0.336955 -0.185220 0.524062 0.214089 -0.696943 -0.617000 0.505273 0.433607 -0.278845 -0.922592 0.202077 0.794928 -0.844851 -0.999061 0.044497 0.952872 -0.316027 -1.100827 0.099641 -0.839065 0.486328 0.039285 -0.512514 -0.850455 0.144883 0.418850 -0.368446 -0.442503 0.060461 0.540371 0.456343 0.428563 0.045953 -0.132273 -0.052393 1.359160 0.382634 -0.822255 0.074896 0.237945 -0.198805 0.448569 -0.726989 -0.602684 0.349131 -0.902411 0.126163 0.402259 -0.562015 -0.174589 1.304047 0.393664 0.051418 2.607624 0.091899 1.083710 0.829862 -0.744184 0.439688 -0.160003 0.338476 0.511116 0.600647 -0.276385 -1.200466 -0.941141 0.462447 0.853283 0.754777 -0.943990 -1.073251 -0.152318 0.043447 0.446368 -0.143730 0.136242 -0.043031 -0.717414 -0.139966 0.328975 1.723028 -0.353570 -0.006057 0.423087 0.650826 -0.774830 -1.373721 -0.468551 -1.362802 0.149362 0.106994 0.033910 0.529739 1.202386 -2.012777 0.780618 -0.487137 0.113236 0.453633 0.468709 -0.803172 -1.800127 -0.475861 0.261413 1.154996 -0.336851 0.546117 0.684322 -0.755124 0.033065 0.030223 -0.068953 -0.397678 0.415001 -0.012869 -0.525673 -0.150429 0.566993 -0.453443 -0.431849 0.130630 0.582824 0.344441 -1.241049 0.549916 -0.002728 -0.265210 0.573103 0.100819 1.073758 -0.641958 -0.810822 0.713610 0.152472 0.078566 -0.417744 0.178091 0.641573 -0.097251 0.001049 -0.327502 -0.967254 0.403576 -0.531552 0.753306 0.345348 -0.462686 0.500581 -0.424639 -0.219763 -0.842052 -0.182769 -0.292690 -0.114670 -0.572793 -0.674023 -0.103517 0.860380 0.528980 0.391663 -0.567662 0.161387 1.110284 -0.871347 0.039877 0.677753 0.391029 -0.770002 0.284146 0.845753 -1.098053 0.146494 -0.432074 0.190191 -0.217347 -0.337142 0.828197 0.311263 0.548466 -0.360405 0.231022 0.142318 0.466226 0.605515 0.240671 0.034637 1.240318 0.941659 -0.183660 -0.471459 -0.737943 0.161761 -0.901649 -0.856758 0.142935 0.523899 -0.958288 0.190591 0.081170 1.165604 0.200931 0.233877 -0.049789 0.080679 +PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -4.484517 -6.324312 -4.911797 -9.293550 6.402589 8.361723 3.777020 -7.541700 -11.690630 1.044236 5.956495 -12.295096 0.599907 11.659199 -3.312143 12.499893 15.390656 1.603170 -7.112848 -0.595955 12.212553 -1.345468 15.288938 13.437087 -7.207942 -1.102541 -3.228405 4.503949 2.020216 -1.913100 2.398249 -1.621347 5.341837 -14.849874 -5.821963 -6.008040 2.040914 4.752358 12.457309 -14.698328 3.034751 -1.918137 2.542580 -3.000588 -4.939258 0.015320 5.173086 9.411213 0.101828 3.534870 8.242706 -0.216125 -1.054210 2.911428 1.544837 2.246854 0.379901 0.834204 -3.729725 -6.348358 -0.373731 -0.009237 3.188672 8.734289 12.370171 2.309758 -0.656364 9.173569 3.395050 2.459220 7.154979 1.339460 -6.319367 -0.397461 3.097214 -16.427363 -1.105569 -16.546238 -2.752332 -14.655576 -5.338090 3.177473 7.308428 -0.628769 7.468288 3.229513 8.835916 -1.563462 -4.933729 11.021505 10.190554 -9.871130 -5.122750 -5.535066 -5.400260 2.520024 -4.546140 2.197945 8.255068 4.451465 -8.656756 -2.860173 4.310488 5.879473 -3.231982 -10.305383 3.913111 7.554949 -5.531090 -9.250058 4.159831 11.159378 -3.719260 -16.108312 -2.966503 -8.496268 4.338108 -0.343788 -3.742752 -10.370778 0.519699 3.858701 -2.431994 -5.363843 0.241900 4.993677 6.018973 5.365805 0.648303 2.946344 2.241040 18.580805 0.324729 -6.745529 2.275424 -0.805532 -1.875103 6.637525 -6.157939 -6.323102 0.726080 -11.670125 4.777881 8.708075 -5.364523 -2.930876 7.660377 6.963657 0.880552 34.467279 2.266437 14.647275 11.153042 -9.462705 3.465336 -6.296373 2.491644 3.590049 3.101402 -3.280887 -17.669299 -10.093802 5.750040 9.858635 7.726491 -12.479858 -4.731444 -0.515675 -0.905812 0.521049 -1.765870 3.144427 0.302150 -6.227725 -1.660207 10.257245 22.687117 -4.332667 4.009939 6.872482 3.632198 -5.901020 -15.747983 -6.074112 -8.629283 2.082090 3.017115 2.775988 5.164391 12.339331 -12.186462 7.959029 -1.699233 3.018969 8.320794 5.879787 -12.249650 -14.163273 -4.763791 5.007293 11.799376 -5.336325 -0.051682 5.601785 -8.292202 -0.636991 3.329453 -2.515261 -1.095231 3.455729 0.227434 -3.176127 -3.766531 7.127826 -3.713920 -1.202532 1.161329 7.519523 -0.110936 -8.802427 8.203350 0.189845 -5.003253 3.059605 -3.915460 11.713770 -7.200500 -7.693033 7.773291 -0.089853 -1.283107 -4.957440 2.754823 6.064806 3.596452 5.315678 -6.014062 -9.623059 6.366169 -5.564302 8.036354 3.850795 -2.532234 3.114735 -6.639832 -3.740313 -10.664851 -8.158040 -4.308302 2.547850 -11.036531 -2.931366 -1.500617 10.571343 4.637365 2.021282 -10.962465 2.859639 11.338691 -9.355631 -2.968173 6.303535 4.798407 -13.232453 1.527832 8.003102 -12.869443 3.101767 -2.891163 -1.319212 -3.934620 -7.874004 6.837539 4.983197 7.429200 -3.348803 2.597860 4.306279 4.847738 4.440738 4.939600 2.671179 14.637394 7.293556 -0.455989 -7.003949 -10.621580 3.946344 -11.300615 -13.092986 6.489039 4.981508 -8.957391 1.583173 2.930318 12.492458 2.192752 -2.996626 -2.825013 1.916176 +PE-benchmarks/egg-dropping-puzzle.cpp__main = -1.152710 -1.721119 -0.629938 -2.754531 1.926582 1.741682 1.084106 -1.836253 -3.457600 -0.024281 1.742704 -3.232810 -0.024931 3.311300 -0.981573 3.093862 4.237103 0.592488 -1.846498 -0.556187 3.264568 -0.674850 4.220080 3.874451 -2.358778 -0.125831 -0.628080 1.414234 0.966464 -0.094442 0.313212 -0.535282 1.480007 -3.743225 -1.313465 -1.850658 0.442533 1.235829 3.128134 -4.173143 0.848181 -0.579708 0.420093 -0.704623 -1.126207 0.807373 1.576863 2.629302 -0.378799 1.439668 2.599386 -0.155513 -0.292658 0.783495 0.547491 0.504712 0.597526 0.599715 -1.031684 -1.443745 -0.167272 -0.502810 0.845220 2.515994 3.508593 0.381190 -0.223790 2.158504 0.994589 0.695847 2.145508 0.440549 -1.318284 -0.256946 1.160514 -4.443648 -0.226670 -5.393430 -0.765291 -5.177110 -1.692359 0.780125 2.587906 -0.639637 1.748870 0.842247 2.602496 -0.275372 -1.366215 2.901054 2.868872 -2.627425 -1.460969 -1.289594 -1.675458 0.826546 -1.360951 0.590931 2.150500 1.155986 -2.450862 -0.908137 1.392477 1.363703 -1.016796 -2.456399 0.922743 2.245855 -2.012188 -2.305738 0.738462 2.906742 -0.649118 -4.393411 -0.613635 -2.388786 2.048619 -0.051037 -1.169291 -2.437263 0.198960 1.010316 -0.905224 -1.220210 -0.188869 1.583960 1.608700 1.686928 0.166315 0.554724 0.666350 4.675126 0.489882 -2.072161 0.524168 -0.182564 -0.587989 1.909431 -1.862558 -1.641524 0.737000 -2.996200 1.356047 1.927862 -1.603738 -0.994667 2.671431 1.826816 0.201660 9.088263 0.591900 4.027363 2.989538 -2.521276 0.854066 -1.483054 0.761517 1.312122 1.169996 -0.843508 -4.421377 -2.805754 1.595190 2.869603 2.180871 -3.835142 -1.477171 -0.065717 -0.200742 0.273867 -0.321988 0.724019 0.111214 -1.800647 -0.534040 2.568954 5.967893 -1.121854 0.174656 1.594413 0.968392 -1.597961 -4.161530 -1.517019 -2.008726 0.751086 0.840476 0.653269 1.628415 3.546832 -4.728131 2.311640 -0.617105 0.644872 2.239339 1.644804 -3.301491 -4.122966 -1.175309 1.230246 3.306408 -0.979970 0.025304 1.825133 -2.465245 -0.225334 0.739721 -0.607355 -0.540190 1.103748 0.333836 -1.030643 -1.088575 1.380914 -0.859965 -0.151114 0.212440 2.180196 -0.180945 -3.676330 2.194228 -0.095506 -1.490098 0.705665 -0.984992 3.163113 -2.171727 -2.299971 2.006164 -0.157278 -0.739786 -1.738965 0.653832 1.648377 0.642718 1.375037 -1.637934 -2.772011 1.911994 -1.723088 2.304724 1.196189 -0.782250 1.467992 -1.657323 -0.903706 -2.995818 -1.629107 -0.565109 0.231576 -2.824112 -0.616974 -0.558535 2.750462 1.510180 0.552726 -2.540546 0.669664 3.235341 -2.828322 -0.958354 1.838875 1.793174 -3.199871 1.074731 2.288482 -3.595230 0.761630 -1.038172 -0.751747 -0.969415 -1.977676 2.215278 1.283788 2.072629 -0.839819 0.892039 0.873379 1.487139 0.966679 1.142928 0.611298 4.031017 3.252917 -0.583458 -1.606854 -2.954162 1.252823 -3.219368 -3.640862 1.632190 1.136009 -2.544962 0.460808 0.493182 3.474139 0.727649 -0.885472 -0.865362 0.874281 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -0.881402 0.121039 0.588154 -1.861366 1.569455 1.629921 0.545433 -0.695436 -1.475741 -0.633115 -0.126747 -1.388409 -0.748355 2.462780 -0.742740 1.419256 3.525283 0.778324 -0.511404 -0.388693 2.289584 -1.357563 3.030746 2.653723 -2.132694 -0.248171 1.768319 1.301345 0.343483 1.650661 -0.700232 -2.115815 0.785647 -1.776756 0.417488 -2.182651 0.463875 0.421751 0.985203 -3.616319 0.444754 -0.766035 -0.447992 -0.588717 -0.724464 0.130194 2.685908 1.858362 -1.046262 0.177092 1.632434 0.879119 -0.606648 0.569097 0.396024 0.994893 0.708347 0.732315 -0.800506 -0.547866 -0.332617 -0.946885 0.700733 2.038561 2.812595 0.156956 0.280406 1.229091 -0.062054 0.380260 0.493201 0.270492 -0.048016 0.246472 1.102709 -3.608080 -0.488504 -5.707144 -0.519931 -5.171255 -1.208399 -1.016811 0.455362 -0.714674 1.323608 0.134674 2.232340 -0.276573 0.436941 1.926817 3.206762 -2.095517 -0.839980 -2.027794 -1.529981 0.782429 -1.148339 -0.155911 1.218729 -0.388487 -1.648766 -2.579716 1.190427 1.031868 -0.751606 -2.147781 0.142724 1.953325 -1.844684 -1.800950 -1.276960 0.631528 -0.940785 -3.648939 0.091520 -1.585187 1.806795 0.111056 -0.491003 -3.062247 0.317853 2.531774 -0.733891 -1.546040 0.421820 2.061448 1.154358 0.176002 0.346485 -0.476208 0.324324 3.258604 2.427100 -1.252735 -0.312744 0.311072 -1.710237 -0.267967 -2.091617 -0.849000 1.075147 -2.093104 0.071899 2.345382 -1.323629 -0.408711 2.918211 -0.484042 1.430990 8.243019 -0.290496 1.577673 0.859581 -3.016852 1.473685 -0.323828 -0.530357 0.560779 1.452787 0.595575 -4.163283 -1.887314 0.914543 2.049123 1.682435 -2.694240 -1.709177 -1.130642 -0.267060 0.139410 -0.331729 0.584380 -0.677526 -1.582300 -0.568281 1.732902 4.627505 -1.187147 -1.519660 1.073773 1.404590 -1.461680 -3.321986 -0.871122 -2.250442 0.244845 0.469638 -0.458840 1.421299 2.792026 -5.262229 1.905059 -0.709134 -0.602261 1.553305 0.329768 -1.166470 -3.402034 0.348175 2.469924 2.711174 -0.372865 0.820067 0.322802 -1.888359 -0.124996 0.174081 0.899205 -0.738835 0.861810 0.176462 -2.520619 -1.547881 0.332674 -0.650999 -1.341584 -0.192390 0.897235 0.325396 -4.566387 3.073723 -0.336134 -0.353965 1.188975 -0.442430 2.308650 -2.242766 -3.098930 1.471478 0.387948 0.220925 -0.804083 0.253946 1.985222 0.169716 0.756829 -1.045379 -3.703198 0.721746 -0.626249 1.447736 0.793106 0.598677 2.411890 -0.872637 -0.624913 -2.947950 -0.980868 0.188002 -0.032409 -1.649209 -1.592885 -0.446179 2.215078 2.335612 -0.070033 -0.829086 -0.341810 2.612733 -2.766560 -0.305780 1.575850 1.909786 -2.227678 -0.021672 1.906423 -2.530717 -1.118629 -1.036659 0.156529 -0.262413 -2.385208 0.749074 -0.797043 0.737164 0.680202 0.099942 -0.357438 0.999319 0.906085 0.596652 -0.049328 2.555341 3.139479 -1.370379 -0.500960 -1.787577 0.665202 -3.451589 -2.787794 0.595412 0.196273 -0.984152 0.463799 0.639554 1.860521 -0.336697 0.867081 0.121222 -0.804778 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__sortedInsert(Node**, Node*) = -1.681242 0.796153 1.084257 -4.170027 3.846143 4.252473 0.984876 -2.155446 -2.887824 -0.777301 0.051299 -3.230625 -1.322847 4.895204 -1.715994 2.866624 6.182571 0.532715 -1.369202 -0.254120 4.528017 -0.428092 5.436173 4.431128 -4.162352 -0.414798 3.024594 1.588857 0.061754 3.151937 -1.812716 -4.695239 1.363348 -3.230621 -0.005906 -2.931211 0.535443 -0.046551 2.929451 -5.907439 0.927579 -0.927388 -1.746903 -1.377171 -1.487889 -1.426673 5.129767 3.476760 -1.814055 -0.184852 3.328177 2.549749 -1.812087 0.876863 1.198026 1.804689 1.418130 1.462854 -1.179258 -1.760934 -0.830308 0.201103 0.757751 4.267912 4.595350 0.697402 0.276524 2.452208 -0.141908 0.526372 0.529498 0.682643 -0.080465 1.535181 1.820611 -5.636570 -1.057978 -9.066044 -0.846491 -7.000122 -2.285229 -1.333721 -0.022939 -1.023766 2.827169 0.150072 4.404203 -0.834018 0.479010 3.401309 6.125178 -4.095852 -1.441708 -3.789944 -3.643532 0.896235 -1.819965 0.278413 0.807612 -1.220606 -3.446897 -4.673674 1.057874 2.205919 -1.416121 -3.658473 0.684122 3.461149 -2.931486 -3.079842 -1.484422 1.975398 -1.862258 -6.852305 -2.404785 -2.690567 2.728806 -0.153842 -1.419211 -6.163065 0.758629 4.508990 -1.907334 -3.281076 1.706589 3.089925 3.162173 0.977816 0.428858 -1.328696 1.499336 6.455409 3.493963 -2.461056 -0.087198 -0.407241 -1.784247 -0.305026 -3.140164 -1.043690 0.498556 -3.589796 0.882859 5.075168 -2.436897 -0.616006 4.252154 -1.164055 2.312217 15.722837 -1.180122 3.599879 1.501748 -5.843590 1.662856 -1.009286 -1.578288 0.308218 2.199853 1.733631 -7.028049 -3.645123 2.914016 4.141769 3.195605 -4.391229 -2.008819 -1.559913 -1.044509 -0.265793 -0.446762 0.897193 -1.118736 -3.142141 -1.458533 3.611916 8.511102 -2.329723 -4.074116 2.585995 3.287626 -1.594424 -3.849259 -1.773271 -4.347837 0.830660 2.310521 -0.971504 3.399253 5.600622 -9.722916 3.458213 -0.820428 -1.818891 2.774331 1.243622 -2.686907 -3.375875 0.566037 4.672650 4.390385 -0.558250 1.615519 0.075899 -3.474203 -0.286857 0.697547 1.370442 -1.622187 1.636259 0.876762 -4.777130 -3.094847 0.647450 -1.534411 -2.513423 -1.069313 1.779013 -0.361599 -8.347976 6.045995 0.524513 -0.204827 1.707427 -1.786992 4.391082 -4.022627 -5.639811 3.102128 0.325337 0.947616 -0.015720 0.373466 3.491266 1.468931 2.867039 -2.942454 -6.310157 1.307247 -0.226890 3.492492 1.544800 1.550452 3.509418 -2.747709 -0.802465 -4.970726 -2.905618 1.882222 1.381896 -3.999842 -3.078823 -1.145093 4.416761 3.727633 -0.663191 -2.516343 -1.842610 3.828438 -4.760440 0.592815 2.737700 2.943061 -5.042388 -1.173012 3.550217 -3.356634 -1.711401 -1.919971 0.488204 -2.024364 -4.361499 0.981657 -0.663071 1.445943 1.420632 -0.063789 -0.783722 1.523477 1.603815 1.294376 0.579495 3.639158 4.384071 -2.501459 -1.049596 -3.857374 1.745662 -6.127119 -6.000011 2.236475 -1.199369 -2.286816 -0.018191 -0.054750 3.823271 -0.950064 2.324200 0.561428 -0.980985 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__printList(Node*) = -0.395690 -0.125733 0.236888 -1.015358 0.691524 0.732351 0.243095 -0.333549 -0.850345 -0.295622 0.067993 -0.860077 -0.235529 1.192917 -0.361518 0.753574 1.626313 0.332818 -0.297837 -0.177054 1.050107 -0.591345 1.455174 1.293718 -1.037685 -0.101595 0.650937 0.766676 0.227153 0.778943 -0.133694 -1.034831 0.249501 -0.779324 0.141038 -1.075812 0.253890 0.367498 0.544775 -1.770760 0.254402 -0.200442 0.034429 -0.287545 -0.304164 -0.005388 1.234683 0.923430 -0.528106 0.187097 0.892163 0.419591 -0.232032 0.236671 0.116860 0.330573 0.449840 0.199424 -0.367978 -0.254803 -0.042332 -0.384769 0.390013 0.979409 1.390342 0.040246 0.108944 0.524895 0.101347 0.214149 0.390277 0.121251 -0.222201 0.036152 0.484396 -1.656754 -0.142203 -2.861033 -0.087289 -2.361535 -0.594718 -0.298276 0.495710 -0.032983 0.535518 -0.052227 1.035476 -0.154269 0.091961 1.010166 1.433420 -0.831694 -0.410959 -0.917397 -0.846343 0.495754 -0.541782 -0.106970 0.469278 0.074414 -0.757449 -1.085704 0.520604 0.466386 -0.388148 -0.974422 0.119985 0.847859 -0.894403 -0.848895 -0.339622 0.585924 -0.350703 -1.762922 -0.012403 -0.959848 0.620858 -0.020216 -0.213754 -1.303415 0.058602 1.006436 -0.380645 -0.530976 -0.273364 0.918280 0.518799 0.157625 0.139128 -0.211769 0.166134 1.527682 0.829532 -0.715940 -0.118453 0.198057 -0.647090 -0.014868 -1.082845 -0.454791 0.506293 -1.006166 0.029458 1.001206 -0.611793 -0.250227 1.150947 -0.095694 0.577225 4.110282 -0.008361 0.867684 0.578303 -1.360208 0.722656 -0.090018 -0.158493 0.357083 0.612411 0.124369 -1.881975 -0.908927 0.380106 0.976892 0.815154 -1.154166 -0.816538 -0.361972 -0.179466 0.147022 -0.106314 0.232331 -0.352112 -0.771234 -0.255505 0.770841 2.213171 -0.286094 -0.527486 0.470013 0.844740 -0.874601 -1.453893 -0.369710 -1.128220 0.147211 0.115330 -0.154122 0.720610 1.308252 -2.650930 0.913169 -0.150558 -0.085392 0.675971 0.093184 -0.688291 -1.795461 0.074939 1.059328 1.329023 -0.347434 0.478793 0.313595 -0.890791 -0.041625 0.098184 0.241423 -0.375185 0.393314 0.038708 -1.161113 -0.640065 0.149112 -0.436340 -0.509515 -0.232218 0.477476 0.301962 -2.012817 1.363532 -0.204279 -0.230137 0.502449 -0.277730 1.039319 -1.077811 -1.347502 0.632427 0.181947 0.025061 -0.502788 0.119953 0.884612 -0.013168 0.408978 -0.457721 -1.633398 0.337291 -0.487765 0.643828 0.412179 0.062964 0.925117 -0.241716 -0.198195 -1.405467 -0.523466 0.025098 -0.029434 -0.775704 -0.542172 -0.234767 0.980029 0.999266 -0.003490 -0.523652 -0.078561 1.257248 -1.067694 -0.223744 0.664187 0.548395 -1.117405 0.054943 0.856387 -1.289757 -0.293352 -0.597568 0.114783 -0.058879 -1.100389 0.524719 -0.138397 0.445563 0.195462 0.069901 -0.170171 0.514182 0.467014 0.175744 0.027648 1.377092 1.240114 -0.409226 -0.176019 -0.917669 0.238022 -1.635827 -1.314847 0.211967 0.085541 -0.590042 0.269035 0.222868 0.957252 -0.053104 0.519011 0.009363 -0.180982 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.398091 -0.047478 0.798583 -0.925319 0.628319 0.208091 0.262225 -0.388846 -0.783032 -0.299414 0.048903 -0.540570 -0.371425 1.085847 -0.518050 0.411556 1.540916 0.511492 -0.315859 -0.544518 1.003474 -0.849208 1.322628 1.335000 -1.144703 -0.117419 0.733994 0.834303 0.650351 0.786574 -0.647241 -0.264146 0.330731 -0.760822 0.453263 -1.068594 0.202603 0.130398 0.226589 -1.584498 0.158957 -0.452113 -0.028336 -0.123435 -0.178812 0.913503 0.954267 0.854368 -0.438616 0.213448 0.915396 0.125489 -0.109720 0.244779 0.331472 0.433849 1.005259 0.687035 -0.351817 -0.078543 -0.217460 -0.805635 0.422660 1.060756 1.325874 0.070250 0.148506 0.300147 0.171478 0.164795 0.387077 0.174358 0.009745 0.230164 0.569345 -1.750467 0.293806 -2.514155 -0.287704 -2.598012 -0.557877 -0.569515 0.349565 -0.858856 0.484991 0.298352 1.085963 0.110761 0.151778 0.429709 1.269308 -1.021594 -0.433030 -0.670269 -0.681847 0.302267 -0.619040 0.013932 0.652463 0.013954 -0.735808 -0.845296 0.720605 0.420083 -0.373190 -0.274690 -0.058662 0.999295 -0.989503 -0.704300 -0.787145 -0.015354 -0.271114 -1.512819 0.390066 -0.891970 1.360543 0.021028 -0.297022 -1.020070 0.193109 1.085821 -0.353428 -0.468453 -0.258364 1.066768 0.482714 0.095885 -0.009584 -0.237118 0.058490 0.956012 1.146194 -0.665245 -0.202433 0.209185 -1.125818 -0.114431 -1.042523 -0.361364 0.982991 -0.855719 -0.049797 0.603655 -0.638038 -0.141474 1.693200 -0.064661 0.687235 3.104380 -0.168502 0.745142 0.337824 -1.084647 0.594424 0.032077 0.010529 0.436406 0.762103 0.210423 -1.829722 -0.932150 0.381624 1.000035 0.721732 -1.363321 -0.840172 -0.573158 -0.107115 0.176060 -0.138806 0.244328 -0.506168 -0.625631 -0.300136 0.349361 1.763673 -0.614449 -1.034169 0.245745 0.010025 -0.683171 -1.585220 -0.324650 -0.524899 0.274199 -0.232907 -0.114252 0.692302 1.294289 -2.759528 0.984194 -0.507565 -0.386121 1.043599 -0.015506 -0.456962 -1.574248 0.202265 0.809195 1.102250 0.120789 -0.122664 0.423232 -0.987139 -0.069644 -0.089016 0.611991 -0.432566 0.443571 0.390372 -0.943315 -0.780925 -0.185056 0.009967 -0.444228 -0.018681 0.491481 -0.338535 -2.322841 1.163795 -0.224620 -0.257286 0.498993 -0.130835 0.479759 -1.147490 -1.186992 0.478562 0.180275 -0.042334 -0.851044 0.065378 0.861218 -0.227460 0.095001 -0.706532 -1.458519 0.364516 -0.670444 0.675361 0.358192 0.254854 1.209002 0.085851 -0.167160 -1.235582 0.222601 -0.119863 -0.237996 -0.678403 -0.514713 -0.169105 0.952152 1.198971 -0.083718 0.137206 0.096198 1.232020 -1.213693 -0.487503 0.664802 0.864690 -0.613899 0.343349 0.771642 -1.187913 -0.629942 -0.460128 -0.626948 -0.018284 -0.782393 0.586549 -0.491723 0.431641 0.242360 0.248060 -0.211960 0.544780 0.210085 0.238325 0.058270 1.199539 2.087436 -0.736749 -0.121756 -0.896339 0.516987 -1.415409 -1.013498 0.197870 0.174141 -0.443286 0.319409 0.261058 0.944600 0.062256 -0.053923 -0.005372 -0.198643 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = -0.997325 -0.427641 2.245653 -2.882917 1.663214 0.105627 0.778977 0.066652 -2.789265 -1.511740 0.141700 -2.043310 -1.714213 3.285551 -1.286762 0.171349 4.657414 1.795747 -0.849147 -1.457481 2.316704 -1.802271 3.720858 4.032269 -3.312007 -0.152001 0.959499 2.726904 1.597767 2.274983 -0.326055 -1.653032 0.680274 -0.508355 1.474110 -3.172771 0.496634 0.756682 -0.690677 -5.257893 0.635881 0.171796 0.231151 -0.371922 0.057185 2.971557 2.864763 2.486023 -1.543708 0.788024 2.575920 0.958672 -0.125664 0.660094 0.441845 0.131234 1.925850 0.661757 -1.262572 -0.008663 -0.453771 -2.631535 0.719527 2.881551 3.927023 0.138607 0.207631 -0.118516 0.693845 1.017648 1.409799 0.413979 0.632340 0.047608 1.676697 -2.926639 0.127694 -7.053544 -0.030733 -8.493449 -1.888664 -1.474361 3.301264 -0.408826 -0.153197 -0.410178 3.151617 0.192558 0.464997 2.542207 3.565993 -1.495214 -1.254022 -2.128099 -2.131894 1.764017 -1.600121 -0.202557 1.536684 1.036270 -2.173653 -1.670690 1.259381 0.108170 -1.183481 -0.314568 -0.129677 2.993482 -3.315249 -0.727961 -2.132683 1.426318 0.674690 -4.356526 0.327813 -2.711424 3.019624 0.133993 -0.888674 -1.041193 0.460342 1.694430 -1.253092 0.220452 -2.609433 3.252788 0.688013 0.073595 0.063477 -0.084836 0.065281 1.787285 2.182572 -2.117504 -0.501277 0.969633 -2.272088 -0.257730 -3.243389 -0.786026 2.883834 -2.216046 0.313390 0.756514 -1.954208 -1.576675 2.007864 -0.307725 1.817738 8.481228 -0.249531 2.365268 1.408749 -2.588335 1.839243 0.605080 0.077705 1.494208 2.326412 0.398996 -3.203107 -2.544649 0.756539 3.001502 2.250036 -3.179198 -1.361745 -1.018534 -0.450620 0.238617 0.297672 0.517916 -1.130532 -1.752933 -0.829849 1.341442 4.317000 -0.380259 -3.079841 0.239833 1.441372 -1.618007 -3.019414 -0.443183 -0.560305 0.592341 0.099390 -0.397342 2.140110 3.764570 -8.202620 2.979655 -0.124955 -0.050553 2.079564 -0.183204 -1.394251 -5.064982 0.267371 2.234639 3.889552 0.122513 -0.322811 1.228015 -2.849199 -0.279535 0.232536 1.481049 -1.287229 1.309776 0.628344 -1.937837 -1.787558 -1.383355 -0.594180 -0.222584 -0.759685 1.417486 -0.000729 -6.564165 3.155649 -1.107803 -0.826486 0.366900 -0.501839 1.558677 -3.192232 -3.354619 0.897585 0.228756 -2.018740 -2.846040 0.093203 2.518715 -0.905450 0.677800 -1.437150 -3.807228 2.228531 -1.831073 2.013373 1.242808 0.162137 3.597741 1.294304 -0.493228 -2.992457 -0.402091 0.835360 -1.176989 -1.560911 0.209643 -0.727349 1.955234 3.395834 -0.279300 -0.541761 0.149999 3.968115 -2.353157 -1.858315 1.957797 0.801453 -1.067736 2.335175 2.461424 -3.866696 -1.505123 -2.248452 -0.967176 0.382376 -2.140473 2.022909 -1.170974 1.236108 0.694022 0.611304 -1.223297 1.664476 0.697049 -0.138643 0.182904 4.106256 5.410700 -1.817356 0.914223 -2.464334 1.477167 -4.091733 -2.515725 -0.171473 -0.272691 -1.019035 1.086881 -0.143410 2.501823 0.239573 0.271323 -0.706528 0.538310 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__findCommon(int*, int*, int*, int, int, int) = -3.385342 -2.800246 -1.089945 -7.900953 5.048892 6.341463 2.181284 -5.004586 -8.106102 -0.756616 3.131368 -7.702242 -0.501724 8.721374 -3.167131 7.585173 11.476167 0.985145 -4.408003 -0.503199 9.523920 -1.529166 10.669396 10.133376 -6.943048 -0.989938 1.091846 5.113104 2.477348 1.921781 0.336327 -3.644905 3.168787 -9.172712 -2.607869 -6.249049 1.602042 2.460519 7.633750 -11.436338 2.024731 -0.679713 -0.122156 -2.221181 -2.888081 -0.745443 4.837044 6.941816 -1.805394 1.827225 7.188198 2.109595 -1.932071 1.734945 1.367120 1.859457 2.218685 1.484898 -2.008927 -4.367418 -0.484736 -0.735751 2.201176 7.330855 9.952669 1.058085 0.216645 5.529068 1.491111 1.499263 4.195456 1.194207 -3.684040 0.744038 3.267189 -12.146998 -0.328666 -14.274033 -1.461233 -12.885678 -3.995232 0.614613 3.621121 -1.148055 5.348463 1.493822 7.130685 -1.689215 -2.227054 7.252811 8.029725 -6.968719 -3.078642 -5.098247 -5.198905 2.424687 -4.092276 0.871113 4.098327 1.485096 -6.050358 -4.085352 3.129083 4.485744 -2.796440 -6.300383 1.825818 6.048835 -5.678520 -6.697996 1.021016 6.338605 -2.996495 -12.204055 -3.884037 -7.289247 4.745671 -0.769315 -2.338280 -8.167549 0.508732 4.976909 -1.657482 -4.791820 0.960612 4.895457 5.116966 3.403849 0.401346 0.176159 1.918128 13.219028 2.788978 -4.587132 0.617791 -0.484091 -3.171934 3.035629 -5.957907 -3.120992 1.817155 -7.397633 1.967097 7.675443 -4.066050 -2.055768 8.147292 2.471009 2.010354 30.668849 0.787252 10.097328 6.662022 -7.644211 2.487113 -2.975669 0.238205 2.656591 2.336695 -0.111328 -14.620734 -6.988853 4.440485 7.396343 5.748151 -9.641125 -3.743135 -1.054712 -0.807701 0.055275 -1.160375 1.783772 -0.462225 -5.719726 -1.808878 6.908102 16.303034 -3.428391 -1.878925 4.776112 3.846799 -5.927318 -11.008699 -3.753850 -6.283698 1.720421 2.044954 0.284952 4.735966 9.597657 -13.403926 5.949529 -0.459495 0.148797 6.545765 3.020687 -7.966416 -9.801274 -1.606802 4.688055 8.701595 -3.214186 1.858381 3.312564 -6.626882 -0.427326 2.137708 -0.449780 -1.779727 2.949518 1.475864 -4.054864 -4.319983 3.444836 -2.621931 -2.121237 -0.500260 4.907794 -1.034878 -10.494666 7.277276 0.236016 -2.759970 2.172105 -3.294251 7.853164 -7.082227 -7.568715 5.967130 0.445833 -0.652596 -3.550460 1.630590 5.345784 3.349279 3.983429 -5.093523 -9.396702 3.990318 -4.061285 5.796095 2.869276 -0.299999 3.973173 -4.449880 -1.289916 -9.781472 -4.613764 -1.518308 2.178343 -8.453802 -4.411258 -1.383980 7.811025 5.035305 -0.135908 -6.126699 0.225612 8.940289 -7.664044 -1.240224 4.367937 5.386817 -9.607457 0.118969 5.768095 -9.211966 0.542663 -2.748207 -1.626806 -2.859167 -6.222184 4.898647 2.160203 5.085984 -0.118101 1.510535 0.802050 3.272732 3.293826 2.818026 1.785452 9.915908 8.698174 -1.882760 -4.079717 -7.768890 2.795132 -9.307346 -10.527468 4.603964 0.445804 -5.931669 0.955096 1.956030 9.390254 1.600715 0.597165 -0.351179 0.491977 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = -0.788065 -0.236712 0.777227 -2.320072 2.226303 1.767275 0.995529 -0.535547 -2.899407 -0.966352 0.702259 -3.150964 -1.503823 3.364697 -0.884038 1.620289 4.481889 0.800897 -1.159721 -0.301883 2.288276 -0.757885 3.885069 3.740789 -2.623500 0.183481 -0.012796 1.407076 0.056474 1.998071 -0.568974 -2.524080 1.224282 -1.787031 -0.128442 -1.920625 -0.014400 0.170418 1.115558 -4.701369 0.569397 1.155999 -0.162110 -0.773901 -0.387481 0.820386 2.945881 2.339328 -0.518774 1.017636 1.855227 0.326323 -0.095610 0.654064 1.125822 0.534266 1.194240 0.258848 -1.710314 -0.695563 -0.602272 -1.452861 -0.140220 2.507962 3.349116 0.208343 -0.304688 0.744338 -0.015266 0.639267 1.180428 0.606719 0.277469 0.383405 1.465310 -2.272137 -0.281833 -4.297959 -0.504827 -5.927942 -2.132449 -0.521391 2.714189 0.479290 1.112978 -0.777139 3.014044 -0.712593 -0.223909 2.124512 3.752387 -2.400814 -1.421539 -1.833673 -1.448182 0.905217 -1.434164 -0.102732 1.520386 -0.148097 -2.602296 -1.380707 1.398461 0.841791 -1.056850 -0.972383 0.343305 2.650329 -2.785628 -1.622635 -1.343596 1.646012 -0.039514 -4.348628 -1.107713 -1.286456 1.174825 0.738871 -1.411868 -2.203031 0.923714 1.443602 -1.153365 -1.124725 -0.776253 2.815435 1.056197 0.990372 0.588817 0.469431 1.029736 3.627873 1.707754 -1.522392 0.274732 0.065892 -0.952483 0.873595 -1.666902 -1.149419 0.345708 -2.502751 0.646075 1.740747 -1.876672 -0.518354 0.650126 0.596927 0.902928 8.887586 -0.454723 3.330059 1.547477 -2.951015 1.773923 -0.735247 -0.387078 0.377694 1.580612 0.725098 -3.635425 -2.291793 1.838781 3.174939 2.155666 -3.402339 -0.357090 -0.507513 -0.016178 -0.142563 0.478996 0.761527 0.504252 -2.161887 -0.715869 1.966112 5.889676 -1.355822 -2.733740 1.311356 0.851548 -0.674244 -2.977357 -0.829411 -1.234214 0.480070 0.677033 -0.239692 1.702525 3.678535 -5.684841 2.789770 -0.462024 -0.836571 2.860882 0.648157 -2.214554 -3.204233 -0.616977 2.160117 3.663750 0.238533 -0.119012 0.510677 -2.562503 -0.348342 0.534811 0.522189 -0.859632 1.482175 0.208066 -1.977745 -1.622558 -0.880313 -0.671191 -0.592895 -0.979260 1.579308 0.535977 -5.160263 3.033018 0.333005 -1.014742 0.143711 -0.535252 2.084771 -2.546168 -3.336650 1.493085 -0.697981 -1.934876 -1.289583 -0.104203 1.510973 0.904687 0.874003 -1.458473 -3.525755 2.667157 -0.743470 2.717635 1.340484 0.083785 2.573902 0.835915 -1.181332 -2.331489 -1.993104 0.877322 -0.698578 -2.192202 -0.554488 -1.082245 2.523632 2.391000 0.134620 -1.596528 -1.211566 3.216064 -2.450072 -0.638140 2.242836 0.813911 -2.255622 0.884601 2.728051 -2.995143 -0.402414 -1.688275 -0.773589 -1.194332 -2.052516 1.228499 -0.442509 1.139280 0.554316 0.104654 -0.728525 0.876595 0.499615 0.041561 0.135786 3.722657 3.539465 -1.775806 0.324029 -2.689730 1.648843 -3.509451 -3.375781 1.073794 0.048774 -2.079187 0.083021 0.559203 2.363261 0.273790 -0.478151 -0.820098 0.462719 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -1.644882 -2.283446 -0.894680 -3.960360 2.182957 3.882541 1.519442 -3.380397 -4.740150 -0.153235 2.608346 -5.163400 0.094286 4.664540 -1.773533 4.739375 5.916925 0.758970 -3.359905 -0.832090 4.928820 0.505913 6.972552 5.646162 -3.433121 -0.231273 -1.059934 1.486842 2.287422 0.048145 0.534398 -0.662217 2.884911 -5.366381 -1.615594 -2.389171 0.464968 1.447168 4.841517 -5.630362 1.327064 -0.543342 1.100738 -1.184123 -1.258209 0.639120 2.752817 3.753755 0.384644 1.449775 3.668163 0.539471 -0.254504 1.044659 1.011514 0.902351 1.747079 -0.791458 -1.283208 -2.602487 -0.306194 -0.322742 0.832556 3.982650 5.007153 0.659106 -0.269200 3.006860 2.046312 1.016531 3.066201 0.766690 -1.746168 0.546770 0.994531 -6.940796 0.376265 -6.405125 -1.163113 -6.453201 -2.271940 1.076310 3.037062 0.176403 2.814683 0.585158 3.713676 -0.694118 -2.027120 3.350324 4.518184 -4.157516 -1.934862 -1.688510 -1.446431 0.811180 -2.259459 0.995251 2.289853 1.250425 -3.554747 -0.876288 1.552144 2.253428 -1.556524 -2.956508 1.502615 3.242849 -3.010797 -3.236681 1.380852 4.151369 -1.151025 -7.110304 -0.510762 -3.749437 2.544688 -0.198165 -1.721578 -4.287154 0.404209 1.958345 -1.124063 -2.245025 -0.914913 2.398346 2.783331 2.438531 -0.175341 1.141658 1.086146 7.429068 0.654492 -2.881072 1.032573 -0.530137 -0.963077 2.670204 -2.427513 -2.350154 0.659819 -4.355448 1.305853 3.855006 -2.235620 -0.624491 3.142406 2.733443 0.313249 14.232023 0.383918 6.036372 4.554387 -4.054753 0.668357 -2.335375 0.973567 1.320343 1.238734 -0.627582 -7.558894 -4.074164 2.522515 4.261515 3.018414 -5.167425 -0.573980 -0.240751 -0.486661 -0.098973 -0.443634 0.963468 0.432711 -3.202693 -0.977786 3.825260 9.163255 -1.893529 1.098733 2.038147 0.315586 -1.928492 -5.107487 -2.276232 -2.294651 1.429148 1.473840 1.217350 2.334723 5.067588 -4.937559 3.613427 -1.062370 0.371639 4.112935 2.275577 -4.964494 -3.944202 -1.754242 2.202118 4.278403 -1.902529 0.043208 2.583420 -3.782970 -0.461756 0.712468 -0.712444 -0.809098 1.166344 1.604042 -1.682203 -1.580723 2.121210 -0.477745 -0.595057 0.189299 3.190876 0.051473 -4.834482 3.775970 0.113151 -2.072769 1.008983 -1.661516 4.679162 -3.229836 -2.675829 2.739688 -0.130068 -1.063791 -2.379655 0.852858 2.573949 0.899953 2.798218 -3.480903 -3.751363 2.668733 -2.402624 3.482364 1.681803 -0.812469 1.684157 -2.686024 -0.518199 -4.553335 -3.216682 -1.620116 0.822100 -4.539922 -0.689077 -0.807764 4.203273 2.258437 0.068574 -4.087880 1.109078 4.054840 -5.114096 -0.951480 2.327034 3.470162 -5.667684 0.999014 2.974296 -4.923685 1.006219 -1.103052 -1.658526 -1.696923 -3.246524 3.295889 1.840604 3.292880 -1.200221 1.373885 1.082068 1.893719 1.169248 1.056292 1.324782 5.598095 4.253016 -0.337390 -2.425135 -4.546445 2.260967 -4.913706 -5.713411 2.729905 1.281673 -3.856819 0.491852 0.632390 5.693160 1.442794 -1.360510 -1.297941 1.313378 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = -0.351932 -0.423609 0.215961 -1.121098 0.561030 0.440176 0.369518 -0.521670 -1.267735 -0.506931 0.636274 -1.592621 -0.416354 1.277448 -0.571267 0.653092 1.618862 0.236042 -0.738414 -0.417655 0.982341 -0.069488 1.763059 1.557483 -1.127540 -0.034622 -0.309621 0.643894 0.699965 0.218281 0.346699 -0.452483 0.540220 -0.670617 0.016222 -0.553153 0.144049 0.230090 0.512547 -1.663267 0.290944 0.306903 0.482756 -0.253315 -0.137148 0.725946 0.946973 1.010223 -0.094990 0.370745 1.097512 0.199642 0.034875 0.229764 0.223218 -0.285603 0.686564 -0.408445 -0.542677 -0.408523 -0.069168 -0.522570 0.047447 1.179266 1.446462 0.133867 -0.036582 0.357799 0.472864 0.429411 0.790151 0.215713 -0.128818 0.257688 0.401162 -1.212814 0.191079 -1.890386 -0.135927 -2.603184 -0.731045 0.045701 1.407915 0.418079 0.172941 -0.074455 1.089973 0.054024 -0.350679 1.020669 1.379343 -0.671734 -0.595126 -0.512733 -0.552014 0.494525 -0.673942 0.239279 0.554478 0.659385 -0.973173 0.033046 0.329459 0.249781 -0.432068 -0.218911 0.243542 0.879090 -1.153336 -0.332641 0.006428 0.983600 0.296717 -1.939924 -0.039798 -0.932691 0.679063 0.033246 -0.462042 -0.484684 0.128057 0.260584 -0.417761 0.012961 -1.235689 0.898625 0.460940 0.619527 -0.008222 0.416834 0.410407 1.302867 0.099678 -0.812691 0.141107 -0.063828 -0.315972 0.541763 -0.692267 -0.551076 0.573543 -0.997345 0.412468 0.501222 -0.657658 -0.568065 0.111870 0.429692 0.261605 3.239268 0.031219 1.534150 1.023225 -0.958786 0.284286 -0.374385 0.158979 0.310781 0.472114 -0.032792 -1.108767 -1.055656 0.694242 1.228797 0.805096 -1.176562 0.084424 0.094044 -0.158723 -0.051743 0.092595 0.273781 -0.042316 -0.797051 -0.315947 0.967880 2.031319 -0.118435 -0.116661 0.321094 0.280777 -0.270185 -0.949102 -0.310534 -0.118326 0.440394 0.251565 0.262199 0.721301 1.425598 -2.068535 1.108781 0.101171 0.242941 1.004783 0.254206 -1.183169 -1.578179 -0.285579 0.689537 1.208039 -0.294198 -0.145333 0.609481 -1.046856 -0.132810 0.159918 0.026903 -0.319329 0.352296 0.305565 -0.396203 -0.603539 -0.078396 -0.187167 0.218359 -0.252335 0.775052 0.219137 -1.712670 1.146851 -0.180551 -0.562185 -0.229236 -0.445757 0.894847 -1.065695 -0.799407 0.352722 -0.361713 -0.997767 -0.930857 0.067762 0.552392 -0.096889 0.572063 -0.741459 -0.862959 1.034579 -0.747515 0.927543 0.488709 -0.148065 0.748832 0.081709 -0.093810 -0.945326 -0.620893 -0.046756 -0.261698 -1.033886 0.498946 -0.245955 0.856005 0.776326 -0.145818 -0.901309 0.357241 1.113649 -0.897724 -0.684963 0.626369 0.260887 -1.102260 0.767208 0.818862 -1.379783 0.137147 -0.772115 -0.521489 -0.343591 -0.870262 0.803128 0.258622 0.728070 -0.081891 0.290093 -0.122231 0.543114 0.183356 -0.025322 0.298332 1.633244 1.407197 -0.286524 -0.049105 -1.322574 0.649583 -1.422988 -1.461188 0.504514 0.190759 -0.783473 0.157889 -0.074007 1.263381 0.395542 -0.381109 -0.553177 0.714019 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -3.377044 -2.746514 -0.694780 -7.539244 5.292116 6.648007 2.604133 -5.411478 -7.784355 -0.944286 4.172430 -8.764010 -1.784882 9.084904 -3.774533 7.286006 10.711046 0.755573 -4.962914 -1.141601 8.769127 1.040415 11.690583 10.043475 -7.973832 -0.874138 0.428175 3.613891 3.570255 1.068121 0.462129 -3.971734 4.653181 -8.194922 -2.474703 -4.091387 1.463310 1.480154 7.096643 -10.411841 1.805050 -0.376346 -0.520227 -2.010140 -2.554491 0.742803 5.876364 7.467153 -1.532091 2.354571 7.204688 1.797858 -1.422053 1.832792 1.343649 0.365179 1.559734 0.302174 -2.564568 -4.776307 -0.635317 -1.214996 0.851239 8.211070 9.656694 1.118879 0.021912 5.411960 1.931830 1.800528 4.581936 1.744243 -1.658641 1.595311 3.768289 -9.650484 -0.378881 -12.461058 -2.148418 -13.261436 -4.286289 0.405695 5.118378 -0.740374 4.985410 0.361928 7.990172 -0.492598 -2.773875 7.431564 9.335914 -7.645497 -3.645701 -4.638285 -4.555904 2.432632 -4.951924 2.356748 3.278340 1.402180 -6.998625 -3.863063 1.314355 3.997268 -3.158134 -5.663041 1.726826 5.953150 -6.274951 -5.444630 0.489477 5.703658 -1.801977 -13.069498 -4.432352 -5.797986 5.384344 -0.353496 -2.680319 -7.399494 0.555967 4.474769 -1.981330 -4.588409 0.038799 4.372309 5.674428 4.361873 0.431226 1.225841 2.884382 13.156192 2.491208 -4.937905 0.683706 -1.243280 -1.791461 4.143810 -4.732448 -3.054900 2.279118 -7.571955 2.392072 7.213167 -4.381523 -2.334663 6.025123 2.680385 1.852142 26.124190 0.679132 9.975319 7.199951 -8.094886 0.773952 -4.023889 0.517176 2.764697 2.774540 0.122727 -11.214985 -7.556894 5.394234 8.429866 5.791789 -9.316793 -1.051606 -0.168847 -0.399399 -1.396988 -0.756868 2.244834 0.008531 -5.863003 -1.910859 7.868637 14.547809 -4.099496 -2.202073 4.490585 3.691796 -2.970515 -7.330490 -3.816317 -4.643920 2.276033 4.020615 1.345799 5.118045 10.364044 -12.014796 6.482651 -0.252478 0.296890 5.752473 3.422200 -8.422584 -6.351349 -1.126727 4.963385 7.078642 -2.099031 0.919507 3.687042 -7.459384 -0.626742 2.160282 -0.344150 -1.874706 3.133747 2.270607 -3.739605 -5.015228 2.278811 -1.892786 -1.486932 -0.914440 5.730776 -0.884500 -11.540620 7.951164 0.147466 -3.912998 1.079008 -3.861045 8.259134 -7.922488 -7.844010 5.523031 -1.153042 -2.626683 -3.281646 1.500984 4.769079 3.056101 4.601072 -5.987431 -8.071351 5.386904 -2.996340 6.523225 3.250426 0.000499 4.973041 -5.592129 -1.673453 -8.336412 -5.290685 0.848072 1.623511 -8.657928 -2.356608 -1.500445 7.961893 5.570818 -0.665919 -6.541174 0.226846 7.457926 -8.603484 -2.041598 4.734529 6.753466 -9.082700 1.545461 5.945868 -8.254514 0.733429 -3.311043 -2.042903 -3.559141 -6.852041 5.287850 1.822227 5.566954 -0.038501 1.857340 0.695090 3.669180 2.434244 2.195120 2.113038 9.302901 8.762813 -2.875282 -3.555651 -9.084595 4.214576 -10.136738 -11.447250 5.659173 -0.251762 -5.670643 0.586464 0.340364 9.142821 2.169879 -1.420124 -1.987724 1.971904 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = -0.846883 -0.518484 0.599977 -2.227984 2.056831 1.695807 1.000314 -0.887822 -2.749891 -0.680134 0.969302 -2.885723 -1.180693 3.184595 -0.973680 1.826113 3.967162 0.756173 -1.293918 -0.447263 2.289925 -0.345723 3.787703 3.447753 -2.556562 0.100403 -0.046605 1.081389 0.474725 1.500081 -0.571802 -1.981808 1.468749 -1.988285 -0.309951 -1.599419 0.068868 0.279322 1.423013 -4.033665 0.588954 0.622385 -0.164893 -0.681573 -0.466482 0.913067 2.561225 2.305274 -0.439511 1.114159 1.874598 0.235048 -0.127084 0.668083 1.011956 0.500508 0.988902 0.232608 -1.474850 -0.877070 -0.551356 -1.227551 -0.059897 2.469951 3.063308 0.208522 -0.235214 0.962173 0.223190 0.600669 1.367901 0.574982 0.222020 0.299936 1.365270 -2.330159 -0.192495 -3.982595 -0.690817 -5.382455 -1.862016 -0.297004 2.487968 0.047903 1.235962 -0.508186 2.839228 -0.456075 -0.494759 1.964971 3.461938 -2.511337 -1.387988 -1.511282 -1.300168 0.755650 -1.477127 0.192534 1.339544 -0.066124 -2.498493 -1.338514 1.057466 0.922828 -1.019720 -1.113134 0.402514 2.409264 -2.579406 -1.592853 -0.972621 1.537444 -0.147877 -4.097822 -0.958025 -1.258421 1.530172 0.534567 -1.323802 -2.156541 0.752340 1.403547 -1.061826 -1.206355 -0.499495 2.259891 1.202202 1.176966 0.418098 0.412983 0.928210 3.626974 1.499277 -1.606357 0.298790 -0.087340 -0.723363 1.119799 -1.473117 -1.151977 0.506531 -2.444425 0.661656 1.683784 -1.751588 -0.462401 1.099888 0.820217 0.727426 7.641170 -0.278534 3.113430 1.739404 -2.772304 1.124315 -0.917541 -0.062388 0.587204 1.482893 0.413410 -3.167435 -2.340664 1.771448 3.001086 2.038245 -3.219081 -0.286176 -0.409737 0.037273 -0.182498 0.246964 0.732982 0.395767 -2.041192 -0.672942 1.923420 5.180483 -1.435863 -2.137805 1.234872 0.703423 -0.507504 -2.459400 -0.973444 -1.167029 0.625809 0.899177 0.030395 1.649221 3.530571 -4.947271 2.590063 -0.620751 -0.625372 2.420453 0.845866 -2.243923 -2.459261 -0.590600 1.845543 3.057410 0.178918 -0.104717 0.863911 -2.507478 -0.335800 0.441594 0.356543 -0.777063 1.301548 0.510020 -1.744064 -1.522560 -0.489979 -0.450595 -0.551949 -0.660006 1.699967 0.282323 -4.812688 2.742812 0.244961 -1.146189 0.280762 -0.567738 2.186410 -2.464523 -2.996409 1.495288 -0.627065 -1.609644 -1.189283 0.081983 1.460555 0.716687 0.961174 -1.570905 -3.010190 2.371674 -0.708495 2.531197 1.239202 -0.006976 2.368337 -0.056606 -1.003497 -2.177330 -1.696966 0.809092 -0.534988 -2.150791 -0.427350 -0.900226 2.497247 2.187598 0.149867 -1.566333 -0.769393 2.788166 -2.646639 -0.632244 2.087889 1.454295 -2.181534 0.962247 2.487191 -2.736369 -0.245188 -1.393264 -0.827917 -1.136376 -1.947692 1.453630 -0.168902 1.359250 0.255509 0.375204 -0.400552 0.985446 0.449734 0.177671 0.275270 3.325188 3.377976 -1.593577 -0.077044 -2.669905 1.636411 -3.331880 -3.294399 1.258665 0.102269 -2.036375 0.151451 0.275117 2.455225 0.415465 -0.681691 -0.866384 0.564865 +PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -10.457838 -14.928216 -19.668743 -22.488369 17.882593 36.655840 10.090542 -28.121961 -30.196858 6.885273 20.427796 -41.105759 1.169309 27.917601 -10.215627 34.842853 36.200826 -0.610135 -24.274734 -2.459132 34.212000 10.863001 52.638713 36.703307 -18.480822 -1.389989 -11.692545 11.532056 8.604301 -13.899469 9.976177 1.971361 18.461192 -46.420590 -22.910011 -7.753836 3.542275 6.348293 38.424765 -32.683580 6.339076 -11.515392 -0.469940 -6.415094 -13.735364 -2.566964 18.837838 23.848738 6.327583 9.986443 22.754397 -3.217621 -1.746091 7.394675 5.009998 2.036692 3.300442 -1.607478 -7.694064 -22.833066 -0.708560 2.918441 3.680769 24.297569 30.173277 10.302462 -3.865192 28.389169 8.710796 6.514157 19.255585 5.939761 -20.762394 9.102043 7.479701 -44.934065 1.134206 -34.737935 -10.014174 -21.786957 -13.202955 11.049959 18.421673 -2.600818 21.237727 17.749164 22.917363 -1.241336 -16.923295 35.006128 30.779410 -26.641210 -13.114380 -8.018379 -10.425539 4.379415 -11.617475 13.556968 19.839723 17.948437 -23.283189 -1.494966 6.333539 15.563137 -9.351723 -28.541416 10.686711 16.925098 -14.641821 -20.340199 17.045020 32.047563 -8.582867 -51.793425 -27.269692 -17.595319 22.210111 -2.025743 -10.275594 -31.246770 1.591360 9.508049 -2.414825 -13.468882 12.059340 4.092838 20.016702 18.792183 0.484350 15.177907 10.350749 59.179803 -4.134429 -13.521337 8.542660 -7.553115 0.948992 22.822381 -6.556473 -14.121087 -10.135678 -32.444024 23.200709 31.297566 -12.488769 -12.432371 12.808551 22.923252 -2.066007 102.266182 7.359034 44.102028 34.535541 -27.958776 -5.078433 -25.916509 7.330773 8.901682 3.026842 -9.059591 -48.452139 -27.267960 18.753652 26.630397 17.593407 -38.650973 1.348153 3.399054 -1.879584 -1.072830 -3.974319 7.736665 5.253018 -12.420840 -4.775843 36.036329 65.995510 -12.922667 13.611978 19.776338 0.112557 -8.878912 -34.996610 -16.001038 -10.535248 7.686694 18.547573 12.408458 10.747702 30.801623 -19.150158 18.778122 -3.115595 9.890525 27.290036 22.844130 -38.916241 -17.967336 -14.955549 16.109496 24.244431 -14.267050 -9.423781 14.171628 -21.896939 -3.056722 13.245210 -9.724670 -1.521197 10.463328 5.794532 -5.428550 -11.158095 20.737211 -4.306662 5.459936 3.471184 22.300299 -12.391553 -26.488168 25.423337 3.056033 -16.400048 2.870935 -15.328081 35.028611 -17.094399 -19.227505 21.305346 -4.828343 -8.503826 -10.043442 6.778226 11.941421 19.804141 24.683696 -26.183019 -15.016908 18.736422 -12.621728 21.743158 10.662926 -4.901227 9.369369 -40.726007 -11.082317 -29.972086 -27.220654 -7.352169 10.654662 -34.820792 -3.032773 -4.167062 26.880452 9.420116 3.460438 -38.276617 10.204403 26.299934 -29.019968 -10.733332 13.564156 24.218811 -48.135951 7.190882 17.560327 -29.285141 12.758491 -4.415488 -10.263052 -15.522347 -25.558230 18.853135 16.678701 21.591023 -7.719077 8.314893 15.635350 13.129472 6.973494 18.880675 10.690422 36.138276 19.462274 -0.717095 -21.950821 -32.881688 13.910899 -32.376578 -42.810301 23.857937 13.667779 -20.686959 -0.018502 3.739214 37.201465 10.988778 -21.226253 -9.528621 10.492952 +PE-benchmarks/boolean-parenthesization-problem.cpp__main = -2.227212 -2.750701 -3.058041 -5.185959 4.494186 7.615988 2.441796 -5.443464 -7.044605 0.681561 4.338487 -10.008841 -1.025901 6.868113 -2.384552 6.924681 8.828257 0.131617 -5.172859 -0.683745 7.077438 2.273415 12.005491 8.684528 -4.730991 -0.063424 -2.903482 2.762599 1.523484 -1.805823 1.847824 -1.061247 4.062221 -8.900783 -4.382709 -1.638881 0.568906 0.997498 7.351544 -8.199767 1.385735 -0.974300 0.010033 -1.597561 -2.576144 -0.059795 5.331546 5.595534 1.296123 2.280388 4.999142 -0.615158 -0.024288 1.733187 1.623964 0.001314 1.377671 -0.961718 -2.614234 -4.580122 -0.477458 -0.246146 0.080252 5.828516 7.203986 2.291579 -1.065292 5.326140 1.557192 1.635360 4.217289 1.509390 -3.290009 2.308765 2.141059 -8.325354 0.250296 -7.813505 -2.092021 -6.428201 -3.693411 1.856989 5.402348 0.507348 4.126028 2.621359 5.792559 -0.364190 -3.383086 7.694247 7.954490 -5.931300 -3.298631 -2.196043 -2.546179 1.310119 -2.905322 2.827195 4.038484 3.700829 -5.794889 -0.584041 1.660659 2.969442 -2.264985 -5.234790 2.214627 4.312250 -4.032941 -4.018777 2.488662 6.867800 -0.994661 -11.799602 -6.120975 -3.496230 4.364059 0.183816 -2.762254 -6.408995 0.867859 1.887251 -1.152711 -2.576683 0.932963 2.044652 4.098783 4.128287 0.377173 3.556212 2.759120 12.558552 -0.673106 -3.243077 1.891786 -1.616315 0.168518 4.952372 -1.616297 -3.170087 -1.972887 -6.972418 4.666408 6.332062 -3.279145 -2.862505 1.051366 4.660868 -0.080012 22.192955 1.148106 9.810859 7.246517 -6.591679 -0.192636 -5.386701 1.164433 1.540019 1.268994 -1.224526 -9.783447 -6.324405 4.710661 6.628179 4.281778 -8.557617 1.047204 0.821324 -0.181361 -0.578180 -0.153450 1.941142 1.447239 -3.298957 -1.246582 7.939286 15.037699 -2.862556 1.040804 4.360651 0.211222 -1.060470 -7.093288 -3.245828 -1.610604 1.675819 3.950210 2.482752 2.819172 7.613308 -5.958360 4.975071 -0.394556 1.596079 6.639289 4.411149 -8.529937 -4.181636 -3.170679 4.201736 6.113226 -2.143683 -2.258129 2.672229 -5.377984 -0.804576 2.753079 -1.573991 -0.634407 2.751725 0.994955 -1.834217 -2.971035 2.724313 -1.165061 1.272426 -0.225597 5.028214 -1.654757 -7.247355 6.428921 0.907689 -3.582622 -0.055702 -3.344708 7.441603 -4.385997 -5.147797 4.357913 -2.019520 -3.411954 -2.491166 1.130119 2.467560 4.119822 5.225643 -5.748450 -3.792575 5.485610 -2.449521 5.578207 2.709586 -0.859767 2.783346 -6.536417 -2.836900 -6.060643 -6.313121 -0.423156 1.445780 -7.593375 0.125619 -1.426400 6.037736 2.848419 0.558482 -8.222115 1.082154 6.207351 -6.316224 -2.769364 3.701067 4.235041 -10.051683 2.197173 4.646828 -6.661575 2.348008 -1.943700 -2.473569 -3.792803 -5.920140 3.941531 2.910530 4.457575 -1.046551 1.393415 2.382228 2.789142 1.287176 3.173601 2.129534 8.705397 5.007409 -0.920587 -3.378176 -7.726775 3.577315 -7.795670 -9.727748 5.162559 2.328143 -4.963985 -0.186925 0.710842 7.871911 2.341229 -4.616266 -2.731266 2.718651 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__kthSmallest(int*, int, int, int) = -4.085608 -5.159903 -2.317278 -8.595013 5.820027 5.712143 3.568699 -6.740473 -9.535593 0.036139 5.550273 -9.169050 -0.415609 10.737294 -3.414926 10.504532 12.026910 1.627786 -5.601877 -2.221868 10.152698 1.184593 12.927095 11.243842 -8.379687 -0.701872 -0.183190 1.509245 4.691837 -0.457712 0.233046 -3.869951 6.755528 -10.609964 -2.795912 -4.991493 1.217026 3.496196 11.115100 -11.355816 2.786619 -1.340674 1.800469 -2.437385 -3.040453 2.624715 4.972709 8.664481 -1.980212 4.509163 8.178970 1.107373 -1.416849 2.408540 1.881104 1.587644 0.693469 1.023163 -2.618684 -5.167782 -0.794810 0.119915 1.595872 8.519419 10.651196 0.245636 -0.521025 7.088418 3.945158 2.217161 6.210177 1.898315 -1.195154 -0.718796 3.911047 -12.771646 -1.922519 -16.734502 -2.930064 -18.007817 -4.959062 2.215099 6.443161 -3.894433 6.278520 0.250919 8.730745 -0.072661 -4.522124 6.731445 9.524496 -9.213104 -4.272745 -3.971873 -4.223091 2.307138 -5.289589 2.926921 6.464526 0.338043 -8.201700 -4.871767 2.193298 4.402988 -3.581591 -8.037622 2.995653 6.642628 -5.853879 -7.081487 1.673861 7.372522 -2.728607 -13.708038 -0.852199 -7.215770 5.368622 -0.545103 -3.756195 -8.438994 0.438564 3.813246 -3.530607 -6.089915 0.460744 4.579833 6.730365 5.876749 0.342537 1.031025 2.326519 15.564422 2.148476 -7.286449 1.413367 -1.227678 -1.193200 6.069135 -6.309535 -4.844099 4.984150 -8.836711 3.046039 6.506134 -5.104902 -1.508933 11.247171 4.304095 0.791379 24.846149 0.960954 11.546158 9.126395 -8.405724 0.826775 -4.916754 1.996130 4.006310 4.573533 -1.534590 -11.391318 -9.105285 5.755106 9.493855 6.937430 -11.083604 -3.855837 -0.219461 -0.306638 -1.320872 -1.311013 2.085723 0.476661 -6.900506 -1.783887 7.676288 15.659717 -5.211111 0.575264 4.186028 6.226131 -3.334463 -8.725171 -5.223052 -8.259494 2.828044 3.646478 2.490949 6.225352 11.592127 -14.410612 7.338525 -2.070438 0.862060 5.601068 5.626866 -10.328927 -9.349257 -2.037354 3.959865 8.213238 -2.876285 3.181528 5.940833 -8.556873 -0.628495 0.967510 -1.639148 -2.240325 2.899311 2.362990 -3.257981 -3.626466 4.864207 -1.961299 -3.133887 0.967596 7.218659 2.245594 -12.861504 7.251401 -0.322837 -4.817177 2.551316 -3.598739 10.577283 -8.093184 -7.132664 6.276896 -0.647382 -0.948434 -3.890164 2.273076 5.734959 0.634265 5.995696 -5.816627 -8.818455 6.027977 -3.949421 7.750578 3.791554 -1.745000 4.699948 -8.890579 -2.147059 -9.096739 -5.710851 -0.880935 1.755987 -9.215151 -1.960708 -1.581788 9.215899 5.439914 0.497680 -7.563131 1.149301 7.759241 -11.780064 -0.470832 5.919756 9.193070 -9.349899 2.475235 7.093383 -9.854046 1.820230 -2.918000 -2.020678 -3.549407 -6.557894 7.314242 3.419173 6.777080 -2.577648 2.558276 2.417676 4.755580 3.147613 2.108436 2.254775 10.121950 10.083533 -3.088829 -5.796622 -9.786492 4.352399 -10.529145 -12.043517 6.145711 0.338895 -8.666909 1.077297 0.166876 10.912509 2.120399 -1.189760 -3.295801 2.466210 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -1.619110 -1.480645 -0.021521 -3.378293 2.295374 2.822204 1.284803 -2.754254 -3.458179 -0.085630 2.003390 -3.635684 -0.712795 4.019537 -1.889886 3.148673 4.800912 0.748607 -2.256379 -0.995266 3.897224 0.415139 5.580831 4.865286 -3.730484 -0.384082 0.189974 1.865613 2.147423 0.412312 -0.181410 -1.084990 2.298532 -3.860567 -1.222388 -2.249827 0.739810 0.825831 3.273843 -4.620385 0.847814 -0.889893 -0.413565 -0.626407 -0.909381 1.252287 2.559902 3.352138 -0.727002 1.436201 3.261377 0.564729 -0.421931 0.970008 0.705753 0.326317 1.402350 0.609624 -0.971716 -2.239492 -0.393801 -0.840830 0.392384 3.571386 4.267457 0.713994 -0.073837 2.250563 1.111317 0.681436 2.270318 0.921103 -0.669991 0.821394 1.691256 -4.481517 0.084984 -5.807509 -1.152407 -5.922399 -1.812129 0.153516 2.355686 -1.178450 2.328653 0.628932 3.634406 0.164645 -1.454034 2.986630 4.084152 -3.856834 -1.614787 -1.522253 -1.932932 0.921779 -2.167396 1.514327 1.393550 1.016350 -3.163013 -2.137578 0.800452 1.693627 -1.485513 -2.295131 0.398069 2.725427 -3.184265 -2.239094 0.192132 2.134221 -0.871959 -5.582010 -1.884716 -2.920690 3.529563 -0.367189 -1.335905 -3.252990 0.341729 2.110933 -0.930964 -1.916551 0.275445 1.844074 2.666529 1.733922 -0.105092 0.455005 0.854594 5.881277 1.084303 -2.428415 0.271938 -0.483412 -1.026254 1.821824 -2.393798 -1.232196 1.448290 -3.453800 1.336637 3.033541 -1.980743 -1.136598 3.559636 1.465569 0.761508 11.062193 0.488292 4.410253 3.451025 -3.521249 -0.111527 -1.877813 0.754553 1.684923 1.488090 -0.106492 -5.022668 -3.562662 2.295683 3.720509 2.403547 -4.524832 -0.562328 -0.163177 0.030924 -0.591906 -0.339079 0.832178 -0.336825 -2.528065 -0.854520 3.291900 6.400089 -2.027247 -1.148481 1.762636 0.894599 -1.357302 -3.319774 -1.791342 -1.456265 1.134615 1.863794 0.919129 2.305418 4.669074 -5.681582 2.945232 -0.334083 0.298772 2.653529 1.754272 -3.727845 -2.261201 -0.539937 1.972116 3.040211 -0.636352 0.011201 2.109781 -3.593912 -0.326393 0.904331 -0.114590 -0.991944 1.617282 1.669150 -1.896931 -2.195297 0.705362 -0.427949 -0.619806 -0.178533 2.841412 -1.216788 -5.928231 3.310596 -0.221696 -1.968140 0.711741 -1.706514 3.683203 -3.556914 -3.466567 2.587996 -0.380775 -1.229739 -1.879373 0.761993 2.116542 1.208851 2.205479 -2.996020 -3.516785 2.458246 -1.787060 2.871512 1.479097 0.003878 2.387955 -3.081704 -0.663712 -3.932625 -1.589157 0.311101 0.541481 -3.775230 -0.725684 -0.575164 3.504881 2.709829 -0.250857 -2.617372 0.479846 3.637190 -4.017670 -0.955019 2.073839 4.024003 -3.763522 1.176608 2.534376 -3.853177 0.208631 -1.180987 -1.729649 -1.441077 -2.941652 2.767491 0.706252 2.684399 -0.155884 1.232233 0.405654 1.935040 0.890828 1.009724 1.214432 4.304702 4.578914 -1.295042 -1.499570 -4.070709 2.186922 -4.551777 -4.931891 2.469715 -0.184834 -2.602638 0.439165 -0.117774 4.447918 1.335148 -1.104425 -0.822019 0.887043 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__partition(int*, int, int) = -2.247122 -1.719338 0.314664 -4.968056 3.235747 4.240994 1.510316 -3.502558 -4.767633 -0.435517 2.035635 -4.345968 -0.624628 5.531062 -2.439410 4.647030 6.776734 0.996483 -2.880993 -0.749218 5.718056 -0.124152 7.215577 6.303278 -4.784129 -0.683510 0.876470 3.131569 2.191857 1.401333 -0.344699 -1.859725 2.598604 -5.537998 -1.534512 -3.549074 1.076512 1.388205 4.320733 -6.670299 1.190661 -1.277075 -0.945795 -1.126809 -1.585669 -0.208785 3.316882 4.605301 -0.861163 1.395398 4.413171 1.383429 -1.032321 1.290432 0.957311 1.239693 1.319197 0.170076 -1.188774 -2.727189 -0.456473 -1.143285 1.201403 5.004929 6.010616 0.770084 0.236014 3.231462 0.965470 0.896215 2.803630 0.918998 -1.924134 0.885355 2.044616 -7.436663 0.266441 -8.226351 -1.357976 -7.146766 -2.576970 -0.101437 2.164745 -0.615319 3.555579 1.016459 4.775496 -0.508717 -1.388096 4.142331 5.339557 -5.126046 -2.044018 -2.912548 -2.803642 1.374731 -2.978475 0.992353 1.316448 0.984618 -3.940010 -2.827892 1.518660 2.784767 -1.918208 -3.934449 0.925621 4.169816 -3.987385 -4.178107 0.072411 3.439958 -1.961751 -7.841356 -2.331586 -4.126815 4.508664 -0.522601 -1.439521 -5.240348 0.437519 3.671569 -0.906989 -3.195721 0.436716 2.684276 3.691076 1.948298 0.007317 0.193864 1.030510 8.323176 2.200881 -2.924702 0.198634 -0.312311 -1.919175 1.954790 -3.395062 -1.667622 0.907829 -4.844046 0.871093 5.040451 -2.694048 -1.169542 4.852619 1.666620 1.534039 17.588659 0.393729 5.783233 4.556930 -5.099371 0.607149 -2.103270 0.495525 2.027133 1.642690 -0.020648 -8.748634 -4.624908 2.735529 4.913957 3.634370 -5.865998 -1.638815 -0.980792 -0.331645 -0.331503 -0.742026 1.280364 -0.610517 -3.549755 -1.190106 4.257172 9.315408 -2.574587 -1.665885 2.813351 1.404122 -2.942302 -5.677822 -2.529134 -2.940927 1.240409 2.138582 0.459613 2.924551 6.248583 -7.669522 3.913309 -0.682462 -0.145135 3.813101 1.862444 -4.730332 -3.940091 -0.708305 3.034253 4.661080 -1.566943 0.851259 2.426308 -4.627507 -0.382266 1.245593 0.207158 -1.199845 1.922849 1.880889 -2.911896 -3.076251 1.747648 -1.023020 -1.385528 -0.279853 3.394949 -1.297130 -7.445914 4.745762 -0.019880 -2.113272 1.921369 -2.184894 5.597967 -4.897378 -4.961710 3.861151 0.251264 -0.545430 -2.063495 1.142364 3.587793 1.774420 2.447525 -3.780555 -5.166412 2.278589 -1.972857 3.595272 1.846726 0.159463 3.147824 -3.671003 -0.877324 -5.576181 -2.751868 0.049533 1.205839 -5.142977 -2.508691 -0.850976 5.153869 3.852556 -0.144184 -3.492216 0.518327 5.218110 -5.724846 -1.059474 2.870950 4.950893 -5.603839 0.479322 3.595185 -5.367521 -0.181990 -1.430857 -1.184299 -1.630503 -4.163012 3.499455 0.858716 3.558396 0.020201 1.491718 0.354328 2.366258 1.729783 1.871481 1.291393 5.796875 5.990292 -1.361537 -2.490896 -5.082761 2.227000 -6.250099 -6.566938 3.000847 0.141565 -3.255594 0.837714 0.425041 5.981206 1.248870 -0.209855 -0.353727 0.194081 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = -0.941435 -0.990405 0.152541 -2.516420 1.858558 1.183606 1.090314 -1.305936 -2.883736 -0.644246 1.415838 -3.160983 -0.902246 3.268231 -0.968208 2.241617 3.846622 0.597097 -1.476233 -0.804545 2.393969 0.032097 3.840614 3.512296 -2.656075 0.073352 -0.265037 0.588235 1.141269 0.548639 -0.042680 -1.709682 1.777711 -2.063489 -0.201615 -1.335707 0.083787 0.564710 2.132755 -3.843028 0.735002 0.462176 0.621211 -0.705252 -0.502212 1.544169 2.205896 2.475546 -0.560725 1.306548 2.239283 0.233262 -0.104284 0.665343 0.852519 0.082324 0.790449 -0.000229 -1.248967 -1.020905 -0.375265 -0.680780 0.037955 2.593698 3.179662 0.030910 -0.318015 1.321804 0.983338 0.764375 1.644628 0.657923 0.327919 0.033384 1.250899 -2.841015 -0.357128 -4.738551 -0.671217 -6.368699 -1.892720 0.232413 2.803523 -0.436143 1.154772 -0.592352 2.815369 -0.004013 -0.960869 1.842760 3.299917 -2.361315 -1.390605 -1.230774 -1.182118 0.840466 -1.517135 0.634947 1.892317 0.118146 -2.595018 -1.019670 0.894999 0.788362 -1.116429 -1.379913 0.721981 2.197645 -2.231514 -1.426288 -0.285118 1.967259 0.001056 -4.169493 -0.013619 -1.710442 1.375843 0.226474 -1.342369 -1.862235 0.435172 0.866793 -1.323156 -1.097103 -1.206816 2.093822 1.535093 1.616306 0.266295 0.606960 0.976778 3.764299 0.827114 -2.081824 0.405363 -0.262661 -0.408201 1.550843 -1.684472 -1.376456 1.502878 -2.413955 0.814268 1.306209 -1.691801 -0.564807 1.898716 1.003664 0.391411 6.860652 -0.106646 3.409398 2.248035 -2.502863 0.778801 -1.131125 0.238537 0.839526 1.615755 0.022514 -2.656878 -2.581267 1.851860 3.090920 2.071623 -3.239906 -0.535976 -0.007937 -0.149721 -0.434012 0.132945 0.598307 0.349463 -2.056018 -0.642289 2.095649 4.741129 -1.255201 -0.879959 0.960954 1.518487 -0.364453 -2.215233 -1.133596 -1.587296 0.840250 0.814210 0.539434 1.930467 3.557872 -5.133647 2.547135 -0.453349 -0.089692 2.080499 1.195433 -2.745596 -3.239715 -0.587472 1.503089 2.814798 -0.321752 0.430861 1.349123 -2.610267 -0.296008 0.209201 -0.108276 -0.841606 1.029998 0.542602 -1.150807 -1.187802 0.163452 -0.532233 -0.484672 -0.295242 1.991216 1.035823 -4.577962 2.499898 -0.049197 -1.360170 0.121911 -0.917852 2.576091 -2.477198 -2.347306 1.336899 -0.702269 -1.445530 -1.428651 0.255590 1.453589 -0.134211 1.480051 -1.573006 -2.650830 2.484773 -1.115681 2.564947 1.295205 -0.352751 1.979841 -0.928963 -0.799663 -2.165820 -1.779146 0.374454 -0.257608 -2.387270 0.266219 -0.774396 2.422948 1.910683 0.037400 -1.902274 -0.071862 2.376745 -3.067433 -0.534157 1.942549 1.717800 -2.270677 1.299332 2.326945 -2.869345 0.254153 -1.482395 -0.917239 -1.115774 -1.895715 1.889897 0.484039 1.617247 -0.322282 0.480470 0.029705 1.300104 0.542983 0.070453 0.503197 3.258247 3.453166 -1.350367 -0.667983 -2.937427 1.598950 -3.244936 -3.432497 1.478049 0.031632 -2.390057 0.149096 -0.046049 2.759323 0.552742 -0.650588 -1.292773 1.127055 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__findMedian(int*, int) = -0.618229 -0.174231 0.350360 -1.344203 0.957508 1.055718 0.442409 -0.994021 -1.216958 -0.320182 0.495246 -1.369029 -0.555848 1.547133 -0.808048 1.023609 1.951495 0.287147 -0.729072 -0.488840 1.317444 0.238984 2.278703 1.891664 -1.489066 -0.125458 0.231408 1.011698 0.610811 0.469679 -0.117024 -0.671721 0.803163 -1.280024 -0.416796 -0.721573 0.212760 0.255689 0.840752 -1.890031 0.317918 -0.607225 -0.363159 -0.196770 -0.451546 0.103491 1.331425 1.319535 0.032744 0.401013 1.187277 0.388480 -0.123134 0.401857 0.336123 0.200967 0.420926 -0.294729 -0.442542 -0.757320 -0.245000 -0.454735 0.065638 1.551700 1.596027 0.434401 -0.099539 0.757620 0.107929 0.379857 0.535872 0.414807 -0.327718 0.687258 0.571671 -1.766160 0.257558 -1.959596 -0.489786 -1.867761 -0.862889 -0.287132 0.710366 0.093160 0.940114 0.435909 1.460622 0.030096 -0.290812 1.227920 1.860684 -1.476421 -0.594034 -0.672845 -0.548365 0.310254 -0.766642 0.482215 -0.008523 0.521990 -1.253394 -0.760917 0.343195 0.561325 -0.558203 -0.647837 0.191829 0.995061 -1.464397 -0.819302 -0.482059 0.731982 -0.177187 -2.356690 -0.860424 -0.783155 1.691949 -0.097688 -0.530825 -1.475897 0.269949 1.110334 -0.284655 -0.743673 0.012867 0.776684 0.945984 0.395840 0.048810 0.320389 0.421341 2.375104 0.615881 -0.732437 0.027393 -0.148851 -0.522524 0.330441 -0.715530 -0.329012 -0.013647 -1.442419 0.620966 1.494308 -0.795809 -0.538369 0.794054 0.335860 0.521626 4.470936 -0.126578 1.517513 1.172920 -1.365534 -0.078908 -0.827362 0.087010 0.393740 0.320033 0.317463 -1.965871 -1.335283 0.941364 1.419196 1.000071 -1.603089 -0.062083 -0.278966 0.066123 -0.120852 -0.044401 0.373472 -0.013784 -1.004118 -0.346820 1.296121 2.561557 -0.761429 -0.763498 0.808559 -0.069576 -0.304205 -1.214672 -0.732203 -0.333343 0.300970 0.985159 0.298441 0.787323 1.871539 -2.087632 1.204613 0.025152 -0.195439 0.992071 0.421590 -1.181508 -0.571801 -0.201913 1.109284 1.189944 -0.193585 -0.011401 0.470290 -1.475409 -0.166558 0.476095 0.341154 -0.546792 0.706786 0.756707 -1.010789 -1.020989 0.154778 -0.214021 -0.077275 -0.208237 1.009571 -0.520369 -2.630060 1.570298 0.044416 -0.670530 0.431395 -0.649628 1.462114 -1.428138 -1.483457 0.967329 -0.216420 -0.567599 -0.471366 0.390248 0.768333 0.508016 0.772086 -1.217003 -1.247442 0.814378 -0.183407 1.096962 0.588517 0.321518 1.045780 -1.135164 -0.311898 -1.267007 -0.658481 0.490638 0.203135 -1.352370 -0.469703 -0.306729 1.381446 1.394002 -0.167743 -0.999312 0.063743 1.447925 -1.709444 -0.606543 0.866028 1.311147 -1.472557 0.304356 1.109152 -1.342422 -0.226984 -0.669187 -0.572226 -0.595548 -1.331964 0.850022 -0.065562 0.897639 0.323534 0.228727 -0.114968 0.757061 0.258084 0.366511 0.480744 1.589236 1.930827 -0.444899 -0.518430 -1.545792 0.732565 -1.910078 -1.900633 0.903111 -0.078030 -0.720352 0.108747 -0.201383 1.688785 0.261556 -0.431635 -0.267276 0.139970 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::sort(int*, int*) = -0.395504 0.099122 0.276854 -0.562883 0.802461 0.206452 0.410442 -0.054250 -0.705464 -0.595034 -0.019303 -0.899427 -0.903096 1.094120 -0.354439 0.489251 1.668525 0.540316 -0.117296 -0.336529 0.702433 -0.495011 1.572955 1.381253 -1.053437 -0.010538 0.275026 0.599498 0.020685 0.614546 -0.238502 -0.898000 0.736131 -0.577136 0.245749 -0.819295 0.149731 0.062479 0.040873 -1.721358 0.124658 0.050976 0.033413 -0.145888 -0.214087 0.731404 1.198852 0.953337 -0.307980 0.407741 0.651549 0.152097 0.072097 0.422764 0.147484 0.152643 0.062894 -0.206161 -0.731041 -0.188913 -0.270470 -1.127355 -0.075132 0.926223 1.309508 0.033507 0.006982 0.387415 -0.211677 0.305349 0.329010 0.261789 0.440620 0.094265 0.669549 -0.911139 -0.270451 -1.852468 -0.500554 -2.876701 -0.846087 -0.724444 0.849753 -0.003196 0.449796 0.034031 1.257228 0.101049 0.273360 0.702750 1.494276 -1.112385 -0.588015 -0.746131 -0.236884 0.457786 -0.710230 0.037935 0.638266 0.014758 -0.963414 -0.768662 0.566339 0.142168 -0.404248 -0.617800 -0.043359 0.948480 -1.245558 -0.605629 -1.241946 0.041212 -0.005766 -1.638352 0.199568 -0.212782 0.901560 0.385169 -0.310615 -0.808563 0.304451 0.659563 -0.294671 -0.506180 -0.350715 0.981058 0.310242 0.050295 0.409041 0.258970 0.201270 1.375204 1.029035 -0.499422 -0.271641 0.188829 -0.690728 0.078997 -0.781856 -0.431419 0.559441 -1.149240 0.374004 0.576448 -0.770876 -0.437470 0.481292 -0.155207 0.692134 2.145514 -0.147739 0.817591 0.518474 -1.157088 0.562484 -0.493417 -0.150759 0.270964 0.874476 0.342331 -0.799027 -0.919454 0.480463 1.142900 0.819618 -1.092594 -0.352680 -0.405760 0.325583 -0.161690 0.029512 0.519399 0.041485 -0.728458 -0.153580 0.642962 1.741296 -0.618281 -0.650388 0.468072 0.365720 -0.153287 -1.208856 -0.411178 -0.492221 -0.015698 0.214215 0.021581 0.352859 1.429212 -1.983655 0.989812 -0.282880 -0.134887 0.700899 0.175538 -0.590987 -1.336072 0.148781 0.978820 1.189111 0.133163 0.215925 0.083928 -1.018301 -0.139930 0.123122 0.590629 -0.306091 0.559223 0.028120 -0.822609 -0.781075 -0.308969 -0.062816 -0.369682 -0.044145 0.574946 0.581352 -2.182234 1.232654 -0.313389 -0.566923 0.274641 -0.106573 0.881565 -1.145498 -1.351379 0.599456 -0.370650 -0.693878 -0.571904 0.128066 0.703364 -0.045127 -0.055732 -0.319367 -1.126518 0.991297 -0.028006 0.744443 0.470522 0.318372 1.310559 0.027915 -0.706804 -0.793472 -0.391578 0.068408 -0.688603 -0.615471 -0.084072 -0.266647 0.974360 1.449545 0.067667 -0.323012 -0.019061 1.177990 -1.255577 -0.492296 1.047465 0.740533 -0.440081 0.686390 1.105502 -1.197048 -0.655305 -0.656920 -0.021227 -0.077205 -0.987393 0.360212 -0.797827 0.277221 0.514999 0.011872 -0.329078 0.557983 0.209817 0.126989 -0.221941 1.333779 1.564614 -0.865510 0.149122 -0.914271 0.424693 -1.539952 -1.090770 0.280200 0.268953 -0.438006 0.218612 0.186095 0.741728 -0.123341 -0.240139 -0.472911 -0.210392 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__kthSmallest(int*, int, int, int) = -10.056154 -11.472431 -5.934705 -21.320324 15.630083 15.175534 9.405333 -15.901065 -24.841035 -0.087311 13.401475 -26.232558 -2.731069 27.729420 -8.133836 25.856778 32.653891 4.212996 -14.717374 -4.221753 25.169746 1.815450 33.963145 29.628679 -20.303829 -1.314000 -3.745847 6.503266 7.898051 -0.015275 0.523001 -9.733865 15.698303 -27.904607 -9.015887 -11.561127 2.944969 8.259140 25.901921 -30.594652 7.285545 -2.371884 4.873858 -6.625956 -9.001486 4.035653 15.257257 21.794240 -2.384193 9.371277 18.729852 0.148151 -2.338007 6.586178 5.791003 4.454467 1.591995 1.944264 -9.390195 -13.887623 -2.759790 -1.101196 3.429786 21.118273 26.237060 3.496147 -2.399434 18.068229 7.987142 5.779164 14.386850 4.633024 -4.579391 -0.208899 9.638909 -30.169125 -3.539334 -37.164483 -7.719417 -40.900502 -13.703846 4.755373 17.782625 -4.871896 16.290900 0.845114 22.099236 -2.033826 -10.559769 19.180797 26.537956 -23.958816 -11.716640 -11.659639 -10.286261 5.250118 -11.850039 6.446945 15.963401 2.847124 -22.046233 -10.558689 6.275868 11.342819 -8.404475 -18.287527 7.547771 16.750738 -15.803082 -17.609032 2.749752 18.547115 -5.380707 -35.633771 -5.112079 -15.547300 11.635738 -0.022873 -10.598162 -22.572222 2.573256 10.128783 -8.666426 -14.220660 0.428521 13.371556 14.909409 13.433022 2.283832 5.211629 6.804415 40.204564 4.944336 -16.825002 4.506554 -3.398419 -3.167579 14.193691 -13.755047 -13.080817 7.417659 -24.311404 8.676910 17.689057 -13.400107 -3.881161 20.954366 12.851979 2.537574 65.829264 1.847894 30.550941 22.215474 -21.277671 5.631286 -13.377945 3.994297 7.474457 9.638419 -2.699479 -30.243395 -23.392593 15.771743 23.910226 17.826988 -27.964248 -7.385038 -1.444485 0.029639 -1.921158 -2.566230 6.097808 3.523621 -17.639968 -4.542469 21.092744 44.283267 -13.574510 -0.967591 13.371307 9.996996 -6.680678 -24.854897 -13.741133 -18.662322 5.831828 9.137653 6.376183 14.872313 30.459992 -32.562036 19.839707 -4.204762 1.173532 16.966554 12.369361 -25.892477 -23.226735 -7.855704 12.412544 22.926597 -6.430752 2.699686 12.283648 -21.599267 -2.020838 4.797369 -3.492896 -5.317099 8.788005 3.933757 -9.428687 -10.012384 9.530845 -6.628500 -5.265513 1.098958 17.997959 3.460831 -30.500763 20.277576 0.955819 -11.909166 5.690484 -8.516905 24.905287 -19.375206 -19.975332 16.040066 -2.764938 -5.862666 -9.734527 6.073748 12.536231 5.213316 12.266563 -14.615560 -22.930007 17.447992 -8.924855 20.953316 9.921029 -3.225108 11.557226 -15.646688 -7.363084 -21.903482 -15.764467 -2.606722 3.531956 -23.884791 -6.331302 -4.776371 23.719214 14.015999 1.852403 -20.171741 0.820334 21.974582 -26.759754 -4.324259 16.402114 16.659994 -25.269470 5.014036 20.028591 -25.392029 4.299465 -9.066916 -6.075465 -10.700904 -17.691806 15.625239 7.725001 15.931624 -4.620548 4.430371 5.821742 11.119588 7.497759 5.465794 5.885953 28.705208 22.748840 -7.274225 -13.322127 -25.185932 11.752928 -27.152898 -30.971514 16.213349 3.739041 -21.626582 1.877558 2.632448 27.498407 4.370516 -6.700978 -8.234301 5.476703 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__partition(int*, int, int, int) = -3.335107 -2.766388 0.075371 -7.177946 4.579809 5.844038 2.168139 -4.725252 -6.994901 -0.666559 2.785059 -6.175730 -0.761104 8.151623 -3.286223 6.936735 9.913403 1.588215 -4.012325 -0.848678 8.454198 -0.593357 10.124881 8.948031 -6.717200 -1.099243 1.128389 4.507563 2.800417 2.041896 -0.198558 -2.910321 3.544390 -8.165206 -2.139619 -5.441142 1.691682 2.490861 6.328993 -9.831548 1.826167 -1.395510 -0.880604 -1.785798 -2.442716 -0.776933 4.489041 6.705900 -1.548302 1.983827 6.324924 1.928080 -1.575265 1.878338 1.195841 1.914756 1.207273 0.310535 -1.862179 -3.843969 -0.603948 -1.641615 2.038481 7.023677 8.716925 0.991729 0.405895 4.803344 1.331582 1.390452 4.084188 1.150698 -2.886955 0.711390 3.056986 -10.733485 -0.100615 -12.298080 -1.779446 -10.650615 -3.680918 -0.030466 3.298125 -0.539561 5.086564 1.275903 6.803806 -0.994483 -1.942057 6.353703 7.561330 -7.177048 -2.988377 -4.626480 -4.291447 2.209946 -4.257138 1.030414 2.256994 1.375447 -5.656082 -4.208640 2.113779 4.076902 -2.673309 -5.976108 1.401318 6.065461 -5.646134 -6.324602 0.141916 5.387015 -2.924969 -11.211864 -3.118024 -6.051587 5.733631 -0.673421 -2.051090 -7.508885 0.586572 5.097068 -1.375009 -4.647558 0.543899 3.972969 5.096330 2.695167 0.168255 0.148496 1.253926 11.910846 3.109989 -4.342134 0.256665 -0.174215 -2.783211 2.707736 -5.178696 -2.707376 1.517227 -7.166306 1.086908 7.065779 -3.933038 -1.721183 7.031053 2.361782 2.305330 25.399631 0.705700 8.322900 6.628634 -7.279036 1.449297 -2.782807 0.701023 2.949753 2.528437 -0.227663 -12.450288 -6.672808 3.765340 6.994086 5.414160 -8.095337 -2.972546 -1.527714 -0.428246 -0.244691 -1.160377 1.908764 -0.916045 -5.257524 -1.626455 6.050217 13.360434 -3.566061 -2.024603 4.146254 2.778217 -4.623766 -8.575430 -3.654794 -5.089593 1.588774 2.803686 0.468579 4.229924 9.041085 -11.143973 5.682310 -0.939016 0.057269 5.203447 2.602622 -6.869006 -6.634448 -1.132148 4.341396 7.073937 -2.496969 1.624471 3.491614 -6.574969 -0.452844 1.771919 0.204037 -1.643390 2.748040 2.069325 -4.040584 -4.296196 2.862532 -1.930309 -2.289505 -0.243427 4.775723 -1.182225 -10.050589 6.725871 -0.200725 -2.907798 2.954011 -2.878932 8.015375 -7.024063 -7.201458 5.640890 0.585373 -0.613358 -2.976564 1.722125 5.340119 2.488144 3.062968 -4.962987 -7.694614 3.254366 -2.872846 5.182903 2.613594 -0.035301 4.340752 -4.773130 -1.374444 -8.058897 -4.076239 -0.383716 1.620024 -7.351498 -4.041990 -1.148546 7.487406 5.453294 -0.020916 -5.180489 0.733659 7.744976 -7.884353 -1.450521 4.290761 6.331813 -7.988034 0.551389 5.406090 -8.037401 -0.208583 -2.222640 -0.972553 -2.117337 -5.952127 4.939629 1.285010 5.033429 -0.125513 2.018985 0.593486 3.324164 2.917313 2.627885 1.641113 8.608914 7.958344 -1.893217 -3.635698 -7.211858 2.877113 -8.987901 -9.243583 4.029672 0.474296 -4.821543 1.411332 0.891112 8.559883 1.594873 0.194696 -0.452659 0.038509 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = -2.135544 -2.252911 -0.570944 -5.061482 3.820569 3.076284 2.257641 -3.138055 -5.944825 -0.668936 2.986078 -6.573684 -1.365338 6.666656 -1.911990 5.312066 7.972018 1.114139 -3.299333 -1.204523 5.397379 0.158269 8.047824 7.189264 -5.040903 -0.049073 -0.977568 1.587039 1.782512 0.637126 0.015311 -2.882465 3.566266 -5.522418 -1.445610 -2.649634 0.429375 1.517299 5.090119 -7.690796 1.634788 0.255934 1.235889 -1.542966 -1.694418 1.826357 4.262806 5.101498 -0.641521 2.278971 4.349459 0.041418 -0.288516 1.500870 1.634499 0.655689 0.970154 0.183991 -2.603269 -2.764873 -0.768261 -0.925002 0.404738 5.113469 6.296835 0.681012 -0.693697 3.517767 1.791735 1.476775 3.279963 1.204864 -0.348928 0.135364 2.396472 -6.320511 -0.680491 -8.824547 -1.629088 -10.947236 -3.641677 0.740468 5.071415 -0.631636 3.157248 -0.473513 5.489067 -0.396246 -2.168398 4.332631 6.702609 -5.310457 -2.879384 -2.768327 -2.394752 1.429063 -2.829225 1.338952 3.792092 0.619962 -5.363925 -2.157055 1.711513 2.176328 -2.081005 -3.429894 1.632405 4.219267 -4.221355 -3.531798 -0.069940 4.202178 -0.529364 -8.554640 -0.865595 -3.376748 2.629266 0.330920 -2.710762 -4.688881 0.862111 2.129901 -2.350320 -2.723252 -1.213261 3.852166 3.170902 3.127561 0.654554 1.443081 1.872357 8.692328 1.386286 -3.989535 1.024001 -0.696809 -0.803077 3.175754 -3.173574 -3.023800 1.989580 -5.508894 1.940442 3.542793 -3.350842 -1.039252 3.840155 2.713241 0.740650 15.057275 0.070742 7.210354 4.865851 -5.077253 1.739704 -2.823363 0.638171 1.533155 2.628732 -0.210464 -6.427293 -5.438728 3.855188 5.974194 4.249535 -6.616035 -1.241816 -0.252942 -0.082465 -0.554069 -0.118098 1.400724 0.958855 -4.203910 -1.194006 4.778940 10.465839 -2.927880 -1.188530 2.798010 2.272660 -1.033696 -5.441178 -2.837212 -3.667861 1.441006 1.912445 1.316481 3.659860 7.331445 -8.763932 5.047371 -0.880214 -0.027397 4.353596 2.543932 -5.858306 -6.015211 -1.751142 3.193624 5.757470 -1.032645 0.334493 2.617686 -5.218746 -0.574476 0.975173 -0.479025 -1.456960 2.207737 0.856755 -2.384948 -2.464986 1.096779 -1.465673 -0.910997 -0.268970 4.147076 1.278871 -8.105814 5.105133 0.206534 -2.778568 0.749745 -1.901485 5.441692 -4.733602 -4.915840 3.289533 -1.125780 -2.428376 -2.597523 1.015724 2.813844 0.781599 2.734224 -3.332793 -5.473140 4.768776 -2.110768 5.205494 2.521100 -0.648773 3.351296 -2.280184 -1.842868 -4.727169 -3.789870 0.029296 0.097585 -5.321198 -0.607900 -1.413312 5.323611 3.625900 0.308344 -4.423996 -0.137655 5.219814 -6.063371 -1.304842 4.039020 3.211185 -5.454591 1.807092 4.913987 -5.976942 0.750000 -2.712178 -1.728196 -2.546073 -4.122498 3.552097 1.345205 3.448155 -0.730862 0.854889 0.710519 2.572905 1.413012 0.741925 1.229432 6.974899 5.986227 -2.187446 -2.173084 -6.017316 3.079056 -6.569687 -7.218096 3.491577 0.711661 -4.981992 0.309148 0.447066 6.076503 1.002765 -1.752832 -2.280473 1.729154 +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.263930 -0.205640 -0.390604 -2.324113 2.481434 1.083831 1.140277 -0.905907 -2.074777 -1.078480 0.481215 -3.328367 -1.732938 2.734680 -0.975212 2.440666 4.593782 0.595852 -0.766321 -0.577297 2.328902 -0.204387 4.584743 3.736911 -2.696934 -0.229620 0.452723 1.352051 -0.239540 0.232380 -0.573584 -2.409090 1.868384 -2.643966 -0.229942 -1.378430 0.464808 0.032308 1.898347 -4.116052 0.625135 -0.347824 0.081871 -0.691554 -1.182438 0.888161 3.202577 2.806778 -0.878653 0.618399 2.335039 0.417009 -0.188879 1.116995 0.092713 0.355198 -0.399965 -0.289385 -1.658144 -1.582369 -0.567276 -1.282946 0.151808 2.636861 3.332225 0.313086 -0.307429 2.141636 0.322114 0.580861 1.087451 0.802067 0.537222 0.306875 1.715242 -3.304114 -0.839238 -5.308418 -1.357432 -6.687396 -2.343708 -1.045194 1.700402 -0.422998 1.909726 0.346000 3.385845 -0.115657 0.379381 2.326500 3.802296 -3.277346 -1.665323 -2.198365 -1.024461 0.948431 -1.659481 0.406499 1.966153 0.307020 -2.863157 -1.710164 1.099911 0.854980 -1.045515 -2.734215 0.745815 1.732410 -2.240089 -2.062781 -2.270406 1.255453 -0.195678 -4.911511 -0.118362 -0.708776 2.054971 0.421246 -1.052828 -3.126914 0.425751 1.593089 -1.167824 -1.640845 -0.293972 2.106262 1.747406 0.860635 1.296042 0.689081 1.053181 5.117272 2.105862 -1.717803 -0.594556 -0.035072 -1.509399 0.627039 -1.794927 -1.428978 1.216904 -3.388944 1.631573 2.429520 -2.018053 -1.019872 2.146204 0.073437 1.422443 7.375701 -0.365389 3.021970 2.077138 -3.217625 1.310209 -2.129225 -0.396814 0.368514 1.781619 0.709860 -2.909518 -2.728176 1.978422 3.080439 2.371963 -3.301899 -0.643825 -0.304500 0.839134 -0.605965 -0.481651 1.474523 0.564369 -2.167736 -0.382968 2.839033 5.538847 -1.502415 -0.877160 1.883010 1.958017 -0.192820 -3.235195 -1.666023 -2.540173 0.037295 1.402926 0.644285 1.306522 4.099608 -4.846769 2.182299 -0.369377 0.033747 2.056524 1.212305 -2.572152 -3.470818 -0.019337 2.667715 2.989781 -0.469649 1.041840 0.234702 -2.394620 -0.283535 0.650615 0.852879 -0.684891 1.286636 -0.078468 -2.166258 -1.702988 0.040417 -0.776631 -0.745378 0.068716 1.844527 1.235261 -5.207218 3.563167 -0.350275 -1.630764 0.733643 -1.361715 3.271126 -2.953859 -3.260650 2.155514 -1.108779 -0.812308 -0.865047 0.775011 1.677678 0.435388 0.949203 -1.425535 -3.217000 2.695289 0.182747 2.571023 1.264492 0.503786 2.530617 -1.599424 -1.537686 -2.487118 -1.858252 -0.226175 -0.531210 -2.782383 -0.661862 -0.680828 2.958475 3.075404 -0.358527 -1.541168 0.063140 2.483074 -3.894091 -0.669221 2.553212 2.289595 -2.639826 1.096849 2.924855 -3.130291 -0.870850 -1.753728 0.248751 -1.071717 -3.124235 0.899582 -1.042905 1.070991 1.081594 -0.187343 -0.003254 1.314637 0.852934 0.818749 -0.151758 3.474721 3.664782 -1.452358 -0.809547 -3.097144 1.063138 -4.279461 -3.984398 1.896723 0.296500 -1.946978 0.215329 0.759970 2.734917 -0.627962 -0.455271 -1.389382 -0.104363 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__iter_less_iter() = -0.029511 -0.018832 0.019181 -0.052489 0.049565 -0.076945 0.016084 -0.057137 -0.093577 -0.064966 -0.013602 -0.034548 0.027187 0.075953 -0.064472 0.091098 0.102408 0.098010 0.023630 -0.072988 0.008533 -0.122572 0.109788 0.104826 -0.054476 0.014381 0.001741 0.070164 -0.002996 0.141309 -0.020023 -0.078988 0.045354 -0.025150 0.009420 -0.139006 0.023925 0.123994 0.021045 -0.140681 0.031719 -0.030231 0.153724 0.009469 -0.010215 -0.007682 0.017982 0.058369 0.037942 0.125483 0.064087 0.102333 0.028435 0.050058 0.040334 0.083793 0.092547 -0.228753 -0.040627 0.026436 -0.010202 -0.104998 0.020315 0.057934 0.100696 -0.012324 0.027840 -0.009655 -0.073349 0.033277 0.086250 -0.005818 -0.117613 -0.018836 -0.047631 -0.125225 0.076004 -0.125862 -0.035077 -0.227739 -0.028896 -0.036530 0.038487 0.135149 0.048179 0.161667 0.077771 0.013115 0.016332 -0.035465 0.044738 -0.077701 -0.037451 0.049255 -0.018807 0.030773 -0.039348 -0.048678 -0.072777 0.123410 -0.018194 -0.054521 0.128792 0.022156 -0.023921 -0.010548 -0.010141 0.036715 -0.228244 -0.092502 -0.045331 0.009023 -0.046460 -0.045388 0.136645 -0.079189 0.081455 -0.003288 -0.010439 -0.068798 0.030773 0.055577 -0.004448 0.007085 -0.185853 -0.022682 -0.045532 -0.026429 -0.009085 -0.044693 -0.050897 0.123004 -0.023456 -0.081467 -0.020703 0.062953 -0.025743 -0.014732 -0.073027 -0.065452 -0.043169 -0.123770 0.062336 -0.004544 -0.054351 -0.048666 -0.018220 -0.011302 0.052305 -0.037093 -0.001524 0.031396 0.058572 -0.074274 -0.062120 -0.040387 0.044012 0.040413 0.059896 -0.036106 0.108001 -0.082201 -0.026344 0.041802 0.060186 0.060088 -0.125375 -0.061022 0.029493 0.130544 -0.012814 0.008865 -0.096015 -0.062488 -0.016768 -0.093184 0.113776 0.074303 0.203559 0.019372 -0.015796 -0.129815 -0.065255 -0.027844 -0.083693 0.029084 -0.074539 -0.007624 -0.026688 0.081832 -0.193224 0.093570 -0.078518 0.033024 -0.025564 -0.029315 0.001956 -0.161450 -0.029375 0.014278 0.117968 -0.081230 0.166309 0.081133 -0.064842 -0.018797 -0.055322 0.054184 -0.062230 0.009550 0.093656 -0.134566 -0.023499 0.078806 0.049718 -0.042781 0.023901 0.034948 0.151441 -0.156336 0.025677 -0.056150 -0.027985 0.100191 0.085746 0.060670 -0.072608 -0.014704 0.026506 0.000735 0.034710 -0.004751 0.018903 0.072080 -0.142390 -0.049911 0.041744 0.075830 -0.043163 -0.025115 -0.045493 0.023625 -0.019070 -0.016747 -0.070841 0.002171 0.010314 0.123159 -0.132899 -0.174612 0.072439 0.164235 -0.010526 0.066697 0.133161 0.103253 -0.031262 0.180170 0.128156 0.032025 -0.012703 0.067565 -0.010270 0.004530 0.071347 0.059565 -0.123191 -0.057770 -0.016820 0.060913 0.072274 -0.007837 0.094711 -0.037171 0.040272 0.007427 0.041105 -0.075406 0.089925 0.023712 -0.007783 -0.012684 0.135689 -0.022248 0.072440 0.061675 -0.005019 -0.088350 -0.074703 0.015618 -0.081801 0.125368 -0.082994 0.068885 -0.077940 0.097302 0.004244 0.120470 0.018944 -0.053254 +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.529408 -0.170223 -0.574042 -2.510356 2.879683 1.717750 1.326104 -0.900811 -2.523111 -1.530401 0.328258 -3.789106 -2.123424 3.496894 -1.013920 3.157565 6.080506 0.870337 -0.728089 -0.454639 3.159893 -1.219665 5.659484 4.793387 -3.145806 -0.304952 1.182988 1.617989 -0.476097 0.915931 -0.881916 -3.444667 2.292077 -3.598783 -0.202230 -2.450030 0.564604 0.289011 2.462170 -5.593025 0.750158 -0.306089 -0.043855 -0.957250 -1.483519 1.065013 4.203627 3.319348 -1.187799 0.836422 2.685960 0.498635 -0.383126 1.314680 0.228453 0.949915 -0.411836 0.215298 -2.079334 -1.676075 -0.763227 -1.761514 0.289705 3.014609 4.472275 0.171646 -0.225159 2.644190 -0.067865 0.653264 1.118342 0.850291 0.859144 0.129337 2.185359 -4.799073 -1.390733 -7.465932 -1.683580 -9.268790 -2.702974 -1.384795 1.666533 -0.741792 2.594292 0.211991 3.962250 -0.533978 0.550704 3.017659 5.066806 -4.135574 -1.944636 -2.932354 -1.189957 1.073405 -2.113970 0.071643 2.916790 -0.374635 -3.372650 -2.956969 2.013077 1.332845 -1.183770 -3.727147 0.716230 2.316235 -2.947021 -2.992698 -3.023876 1.168464 -0.705627 -6.292905 0.369886 -1.075080 2.391332 0.782653 -1.262854 -4.483521 0.705682 2.630486 -1.286807 -2.640529 0.380334 3.290911 1.949321 0.913595 1.626459 0.485164 1.095586 6.599638 3.455615 -1.902519 -0.690358 0.126663 -2.485719 0.556531 -2.605238 -1.870822 1.758808 -4.135808 1.562060 3.321444 -2.441099 -0.989529 3.712244 -0.093833 1.863000 10.842447 -0.507548 3.620509 2.375956 -4.343208 2.457748 -2.341317 -0.663685 0.353967 2.238605 1.066337 -5.153519 -3.127371 2.273778 3.607876 2.899842 -4.774080 -1.574933 -0.806773 1.136063 -0.634683 -0.596094 1.781582 0.767181 -2.946250 -0.445460 3.367014 7.893519 -2.236469 -1.216164 2.341621 2.302533 -0.954141 -5.440974 -1.974717 -3.647072 -0.060621 1.315387 0.343859 1.480137 4.873467 -6.636895 2.734189 -0.892142 -0.417061 2.896332 1.373045 -2.974027 -5.265670 0.018160 3.713342 4.303449 -0.370339 1.693040 0.161392 -2.924588 -0.288556 0.594324 1.144017 -0.805352 1.610903 -0.259555 -3.149613 -2.182982 0.289220 -0.973344 -1.608870 0.188363 2.020378 1.872387 -6.945927 4.698114 -0.370354 -1.734509 1.190445 -1.078972 3.991339 -3.563987 -4.494714 2.775055 -1.199635 -0.712155 -1.182106 0.840497 2.177567 0.771306 0.841805 -1.402362 -5.354108 3.139318 0.054429 3.063909 1.456010 0.674727 3.475445 -1.531369 -1.884666 -3.889107 -2.198918 -0.479686 -0.816055 -3.273869 -1.729821 -0.802664 3.781387 3.790469 -0.238529 -1.716275 -0.386675 3.674143 -5.086245 -0.459140 3.237357 3.407255 -3.234948 0.810363 3.683314 -4.276234 -1.240247 -2.093174 0.324519 -1.184940 -4.086870 0.860645 -1.530116 1.153722 1.358760 -0.256859 -0.149039 1.346526 1.219277 0.847756 -0.490137 4.590933 5.256450 -2.089919 -1.012057 -3.483270 1.127027 -5.544655 -4.785571 2.035958 0.610960 -2.502569 0.333704 1.762983 3.254513 -0.805914 -0.154503 -1.301867 -0.736600 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__long std::__lg(long) = -0.267090 -0.404100 0.039775 -0.646698 0.253945 0.081622 0.257764 -0.497969 -0.737079 -0.237677 0.434039 -0.819007 -0.103823 0.710118 -0.309418 0.607144 0.790160 0.189168 -0.454421 -0.281361 0.454188 0.014988 0.925350 0.867074 -0.510525 0.010029 -0.318544 0.283868 0.427987 -0.011695 0.221375 -0.098277 0.463360 -0.430762 -0.090637 -0.276225 0.009721 0.333026 0.442853 -0.812332 0.201483 0.082644 0.418166 -0.117091 -0.068835 0.370231 0.302838 0.569331 0.175663 0.378326 0.449950 0.062505 0.147172 0.191016 0.266266 -0.046924 0.298565 -0.600109 -0.235968 -0.268156 -0.087202 -0.249162 0.034121 0.611851 0.696690 0.038173 -0.092730 0.257977 0.307477 0.240288 0.547858 0.174251 -0.235579 -0.010162 0.071570 -0.816303 0.285817 -0.684648 -0.144553 -1.261456 -0.410477 0.215913 0.736958 0.269280 0.236649 0.029239 0.614413 0.050984 -0.393058 0.259534 0.606452 -0.504390 -0.294432 -0.008952 -0.054300 0.146176 -0.340594 0.159399 0.247996 0.434925 -0.536474 0.164365 0.279650 0.141626 -0.264347 -0.128258 0.212981 0.491545 -0.667035 -0.308982 0.167263 0.557898 0.044483 -0.873053 0.271621 -0.520832 0.377356 -0.056164 -0.333401 -0.273157 0.124986 0.065443 -0.158990 -0.058943 -0.824018 0.321889 0.242569 0.359413 -0.072103 0.350984 0.100250 0.898664 -0.110461 -0.486623 0.157728 -0.038542 -0.040266 0.478954 -0.245347 -0.367246 0.203996 -0.603432 0.059402 0.215196 -0.356728 -0.167634 0.110120 0.449424 -0.026850 1.263605 0.014112 0.825382 0.743578 -0.417807 -0.094052 -0.344677 0.262278 0.227885 0.241172 -0.126067 -0.482901 -0.647581 0.397465 0.697332 0.450523 -0.540855 -0.005924 0.058465 -0.004033 -0.019565 0.036120 0.089193 0.055360 -0.461219 -0.139028 0.357338 0.953816 -0.116305 0.354055 0.174863 -0.021721 -0.135928 -0.479327 -0.283891 -0.099271 0.235916 0.009935 0.273311 0.283680 0.757721 -0.709024 0.623123 -0.079672 0.172030 0.523501 0.193593 -0.648381 -0.840680 -0.360296 0.180365 0.577677 -0.357074 0.115781 0.463433 -0.632512 -0.092081 0.007221 -0.085674 -0.203067 0.175945 0.303366 -0.109112 -0.150981 0.171018 0.016759 0.074637 0.002915 0.544751 0.333030 -0.709462 0.418633 -0.038950 -0.371653 0.060692 -0.156165 0.632477 -0.517375 -0.273768 0.242935 -0.206747 -0.462265 -0.423622 0.115872 0.293175 -0.262766 0.200143 -0.370940 -0.081527 0.544056 -0.411384 0.499585 0.270328 -0.189522 0.255656 -0.235107 -0.096355 -0.261570 -0.300197 -0.282977 -0.172489 -0.452372 0.398944 -0.111820 0.513336 0.395937 0.082055 -0.496390 0.484208 0.538946 -0.626606 -0.244643 0.370459 0.301406 -0.512649 0.467324 0.432555 -0.701129 0.176833 -0.278812 -0.348753 -0.212220 -0.337225 0.647058 0.285121 0.485604 -0.219385 0.203110 0.034911 0.372651 0.138985 0.006745 0.258186 0.850326 0.660753 0.055474 -0.220579 -0.654368 0.272304 -0.617710 -0.612434 0.290181 0.283131 -0.536514 0.072670 -0.112719 0.760339 0.347508 -0.297548 -0.335710 0.385444 +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.600784 0.262337 0.214755 -2.588468 3.004749 2.211658 1.290122 -0.702150 -2.290275 -1.549603 -0.064655 -3.475012 -2.426163 3.940147 -1.192560 2.685876 5.904115 1.144154 -0.706844 -0.167206 3.093457 -0.765612 5.279366 4.406641 -3.388337 -0.422181 1.085975 1.691577 -0.659311 1.951939 -0.963521 -3.943763 2.201203 -2.736924 0.196631 -2.574125 0.722409 0.244205 1.494948 -5.584471 0.725447 0.375738 -0.269442 -1.072231 -1.304358 0.257140 4.343207 3.446530 -1.313785 0.348394 2.340468 1.057709 -0.529353 1.351593 0.316356 0.878014 -0.601968 -0.307831 -2.259287 -1.504515 -0.832403 -2.126207 0.140956 3.292596 4.354488 0.343830 0.091166 2.184322 -0.494649 0.748822 0.861413 0.704913 1.074067 0.419644 2.120985 -3.578528 -1.441266 -6.395283 -1.517243 -7.795336 -2.637309 -1.888961 1.620848 0.416116 2.320252 -0.605027 4.128208 -0.468599 0.884365 2.908310 5.247926 -4.123984 -1.938928 -3.539533 -1.530947 1.295833 -2.291883 -0.063992 1.797309 -0.618246 -3.429044 -3.132141 1.250221 1.310152 -1.207312 -3.224331 0.466111 2.877318 -3.232243 -2.795983 -3.257072 1.000089 -0.745331 -6.060591 -0.268178 -1.035388 1.676759 0.847251 -1.124542 -4.213679 0.838805 2.773262 -1.278795 -2.622748 -0.342845 3.384430 1.764465 0.456176 1.480134 0.254162 1.012006 5.736738 3.281719 -1.869149 -0.734965 0.200582 -2.145972 0.114820 -2.716297 -1.624427 1.250732 -4.164512 0.834420 3.381976 -2.553800 -0.771639 1.971494 -0.554711 2.405359 10.172673 -0.695038 3.080661 1.833608 -4.611614 2.465885 -1.814921 -1.025951 0.268526 2.405901 1.362117 -4.475266 -3.225341 2.220326 3.794715 3.058782 -3.516831 -1.139307 -1.264415 0.805949 -0.743367 -0.395701 1.848025 0.191473 -3.053005 -0.651609 3.028566 7.017481 -2.196482 -1.961521 2.398524 2.438774 -0.732874 -4.193177 -1.812256 -3.326194 -0.081250 1.437815 -0.120318 1.740613 5.130813 -6.175562 3.122969 -0.701613 -0.711619 2.482568 0.773382 -2.548451 -4.079172 0.378845 3.906501 4.144068 -0.195632 1.557872 -0.124070 -3.157785 -0.328886 0.635228 1.582836 -0.844943 1.607025 -0.226266 -3.344135 -2.691035 -0.304639 -1.147451 -1.942412 -0.397597 1.847035 1.944729 -6.194013 4.878736 -0.412619 -1.408470 1.298951 -1.018480 3.717014 -3.912050 -4.836016 2.688780 -0.887513 -0.979549 -0.958690 0.729152 2.599996 0.749948 0.451348 -1.473052 -5.001598 2.803777 0.387389 3.014589 1.438163 1.154471 3.513670 -0.261779 -1.939773 -3.343838 -2.781800 0.204114 -0.857129 -3.124605 -1.680340 -0.862830 3.928408 4.219238 -0.303091 -1.849227 -0.798460 3.591725 -4.311585 -0.598935 3.418130 1.990521 -3.051242 0.507654 3.877402 -3.893083 -1.854240 -2.134141 0.907370 -1.060662 -4.037611 0.641159 -1.930341 1.073673 1.686673 -0.227772 -0.741751 1.335660 1.368106 0.634787 -0.463835 4.418756 3.813524 -2.341430 -0.332687 -3.487781 1.304180 -5.568491 -4.645831 1.780655 0.251264 -1.937894 0.486420 1.102309 2.900672 -0.972416 0.478461 -0.993909 -1.077742 +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.688855 0.264380 0.573553 -1.178548 1.300826 0.717208 0.553459 -0.283077 -1.067696 -0.891090 -0.129768 -1.162375 -1.206606 1.866013 -0.639657 0.846712 2.819767 0.759603 -0.227714 -0.552485 1.566624 -0.968597 2.517307 2.263635 -1.891670 -0.131034 1.077489 1.065804 0.330513 1.112308 -0.521979 -1.447439 1.036368 -1.243422 0.458319 -1.653501 0.341615 0.076526 0.298920 -2.887405 0.221353 -0.396057 -0.379841 -0.293538 -0.472244 1.028202 2.111758 1.580415 -0.830132 0.427304 1.294425 0.524369 -0.259609 0.591291 0.153975 0.467309 0.249923 0.287663 -0.863682 -0.346236 -0.358646 -1.551810 0.217831 1.679010 2.246981 0.047163 0.157419 0.891447 -0.231387 0.373316 0.394402 0.384482 0.602233 0.255677 1.153228 -2.322623 -0.548349 -3.910963 -0.740082 -4.701933 -1.217689 -1.230401 0.815039 -0.612198 0.910343 0.140887 2.021156 0.088737 0.526605 1.390050 2.502547 -1.890668 -0.818413 -1.515605 -0.763748 0.712934 -1.155772 0.074306 0.934108 -0.232216 -1.482854 -1.726837 0.911087 0.494246 -0.685490 -1.385552 -0.071351 1.617697 -1.917863 -1.178782 -1.830427 0.086440 -0.375044 -2.833142 0.232352 -0.795871 1.898664 0.379224 -0.381236 -1.817552 0.351494 1.627202 -0.487525 -1.149682 -0.033480 1.682223 0.821445 0.088382 0.505844 0.014968 0.328052 2.370095 2.067607 -0.850229 -0.495384 0.290842 -1.407511 -0.140335 -1.577529 -0.600847 1.196482 -1.811231 0.371523 1.375849 -1.189764 -0.657727 1.887126 -0.520535 1.281044 4.989556 -0.241725 1.247875 0.737436 -2.141133 0.917328 -0.638243 -0.396167 0.552272 1.398499 0.654965 -2.405210 -1.510812 0.750154 1.820097 1.344292 -2.051545 -0.999570 -0.841353 0.198248 -0.192573 -0.149046 0.701797 -0.265703 -1.237424 -0.356363 1.143838 3.178638 -1.120021 -1.182611 0.767043 0.817345 -0.697483 -2.377972 -0.682277 -1.141200 0.082316 0.428407 -0.168811 0.865107 2.348733 -3.818914 1.544308 -0.622637 -0.382352 1.008343 0.363190 -0.918255 -2.342707 0.467796 1.787653 1.978341 0.101521 0.561982 0.165297 -1.679432 -0.168436 0.209174 0.993747 -0.568903 0.854573 0.219129 -1.655824 -1.419907 -0.132779 -0.240181 -0.830587 -0.028262 0.843656 0.391051 -3.797635 2.255296 -0.539392 -0.679734 0.708447 -0.335191 1.612563 -1.995775 -2.386632 1.173920 -0.163940 -0.548097 -0.905815 0.200975 1.469889 0.037060 0.116912 -0.754799 -2.516794 1.140712 -0.244698 1.181773 0.730089 0.662845 2.320033 -0.416962 -0.849265 -1.941828 -0.698677 0.165661 -0.603181 -1.234042 -0.790768 -0.375005 1.724948 2.348631 -0.106037 -0.488069 -0.055097 2.001063 -2.361585 -0.606614 1.503514 1.704380 -1.077880 0.702460 1.669439 -2.012742 -1.149792 -0.980316 -0.018901 -0.101179 -1.783158 0.588359 -1.200919 0.525006 0.863755 0.145122 -0.446625 0.935426 0.468626 0.441452 -0.270779 2.045514 2.975552 -1.506352 -0.147758 -1.532571 0.720954 -2.693549 -2.030793 0.502971 0.290937 -0.551784 0.382411 0.345233 1.373295 -0.227612 0.039040 -0.342841 -0.547323 +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.524755 0.683667 0.772391 -2.923699 2.978145 2.407571 1.082877 -1.168943 -2.022156 -1.371838 -0.000456 -3.458641 -2.384336 3.550792 -1.533409 2.086399 5.577685 0.670300 -0.793871 -0.558687 2.937748 -0.141814 5.337396 4.484619 -3.656844 -0.451781 1.429421 1.902302 -0.057830 1.669730 -1.252869 -3.590723 1.901609 -2.341749 0.109863 -2.156898 0.679276 -0.229082 1.459483 -5.113897 0.690465 -0.708174 -1.027565 -0.829604 -1.243655 0.916537 4.679290 3.286425 -1.280874 -0.072426 2.743432 1.375198 -0.729425 1.158419 0.152217 0.433061 0.250646 0.225630 -1.645395 -1.679355 -0.739314 -1.431917 0.091474 3.573442 4.205505 0.698866 -0.012881 1.997207 -0.117264 0.604619 0.452894 0.878324 1.231899 1.336210 1.925246 -3.645328 -0.884454 -6.546755 -1.404963 -6.855871 -2.435436 -1.907143 1.036578 -0.208644 2.115197 -0.433698 3.963194 -0.008279 0.873934 2.956448 5.221204 -3.934374 -1.638113 -3.190902 -1.736265 1.003689 -1.990373 0.617339 1.011010 -0.251387 -3.273235 -3.062359 0.921127 1.080120 -1.225903 -2.622484 0.488114 2.270998 -2.942764 -1.979511 -3.008792 0.903026 -0.359748 -6.148090 -0.680977 -1.350751 2.795789 0.248317 -1.038213 -4.163141 0.587790 2.970178 -1.383755 -2.242211 -0.373461 3.321579 2.296639 0.428148 1.110008 0.033065 1.298309 5.430022 2.882761 -1.852193 -0.802995 -0.194199 -2.340506 -0.256161 -2.694382 -0.930439 1.473785 -3.692990 1.295461 3.592091 -2.268347 -0.892631 2.466398 -0.828377 2.333521 10.872971 -0.914911 3.039245 1.669287 -4.378286 1.996362 -1.874575 -1.076546 0.253174 1.822560 1.659046 -4.987490 -3.117930 2.406757 3.544386 2.748954 -3.864822 -0.502262 -0.947171 0.419395 -0.970824 -0.367865 1.534244 -0.128822 -2.732870 -0.792626 3.346864 6.997223 -1.904002 -2.273106 2.211892 1.945957 -0.363999 -3.534975 -1.756718 -2.350113 0.132277 2.047998 0.165858 2.095884 4.935177 -6.643884 2.748503 -0.225436 -0.905685 2.315162 0.707398 -2.503381 -2.950400 0.707818 3.999730 3.551088 0.031352 1.158285 -0.195296 -3.097288 -0.326526 0.844276 1.656917 -1.156686 1.517824 0.631693 -3.562023 -2.789588 -0.618168 -1.121805 -1.282668 -0.729547 1.835886 0.457176 -7.046687 5.038503 -0.247636 -1.240689 0.915901 -1.760296 3.500176 -3.831056 -4.499772 2.467865 -0.871090 -0.721962 -0.996529 0.856828 2.286719 0.694814 1.508780 -2.273391 -5.238152 2.469313 0.333223 2.877378 1.389189 1.550283 3.335981 -0.972517 -1.300310 -3.691484 -2.597353 1.129095 0.010733 -3.431226 -1.141079 -0.842646 3.555956 4.073781 -0.976111 -1.711506 -0.739365 3.210487 -4.290174 -0.762434 2.786000 2.563718 -3.332339 0.316998 3.334682 -3.405833 -1.812326 -2.223865 0.070879 -1.339118 -4.177890 0.625473 -1.657379 1.129989 1.901439 -0.163973 -0.817666 1.460488 0.940261 0.662381 0.104208 4.020000 4.704908 -2.046022 -0.468631 -3.648657 1.593662 -5.512457 -4.924736 2.134844 -0.647704 -1.557871 0.199039 0.594039 3.162431 -1.014215 0.418287 -0.754943 -0.614738 +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.488779 -0.328205 0.389607 -2.911867 2.420709 1.474522 1.043413 -0.939178 -2.508394 -1.204922 0.170295 -2.507255 -1.335960 3.656978 -1.141036 2.574310 5.375819 1.202203 -0.799097 -0.761825 3.504921 -1.585697 4.676212 4.232494 -3.388998 -0.438076 1.537900 1.987739 0.601910 1.504852 -0.753607 -2.474330 1.704489 -3.216153 0.288893 -3.141393 0.842494 0.820980 1.813928 -5.316446 0.791715 -0.896802 -0.186579 -0.829604 -1.289738 0.986891 3.420545 3.171747 -1.710608 0.675890 2.842234 0.910343 -0.777591 1.088717 0.092512 1.087940 0.010242 0.724450 -1.423975 -1.157212 -0.452577 -1.900882 1.064027 3.129710 4.200324 0.132323 0.249404 2.300710 0.224835 0.630891 1.183106 0.525400 0.289296 -0.054803 2.011927 -5.124355 -1.094168 -7.836486 -1.176726 -8.091158 -2.164988 -1.436325 1.495644 -1.041082 2.080329 0.215113 3.574934 -0.266737 0.541119 3.000136 4.247298 -3.550421 -1.578807 -3.091959 -1.920443 1.338922 -2.001770 -0.032084 1.933676 -0.153993 -2.817942 -3.019902 1.523357 1.379120 -1.211479 -3.317307 0.435133 2.722307 -3.008128 -2.797460 -2.280780 1.280653 -0.989572 -5.394515 0.452477 -2.110679 2.903451 0.226177 -0.795283 -3.816586 0.323473 2.843620 -1.142771 -2.261048 -0.170132 2.939484 1.862879 0.555945 0.909602 -0.242728 0.544247 5.052150 3.136464 -2.084126 -0.718621 0.484664 -2.409777 0.041227 -3.156306 -1.547833 2.229574 -3.682620 0.620859 2.888917 -2.189216 -0.953428 4.253243 -0.301119 2.086506 10.562953 -0.154228 2.909868 1.995615 -3.874017 1.984210 -1.223316 -0.446165 1.122969 2.269835 0.619575 -5.228407 -3.076218 1.471415 3.262268 2.764074 -3.784469 -2.335561 -1.326390 0.192994 -0.009764 -0.702648 1.227940 -0.459106 -2.604143 -0.639337 2.492289 6.443823 -1.766895 -1.202036 1.760934 2.240787 -1.893262 -4.844626 -1.644938 -3.312969 0.233235 0.819792 -0.111124 1.953817 4.539842 -6.979028 2.757926 -1.043892 -0.293814 1.803976 0.913081 -2.386382 -5.025251 0.351060 3.039469 3.920934 -0.582260 1.555059 0.786982 -2.973975 -0.200884 0.459126 1.171358 -0.967616 1.352613 0.189807 -2.900212 -2.223105 0.636930 -1.109720 -1.577341 0.155574 1.757169 0.827893 -6.080619 3.996119 -0.863627 -1.214963 1.667369 -0.924330 3.489878 -3.627474 -4.070229 2.514054 0.144654 -0.188159 -1.580112 0.763151 2.843071 0.080875 0.464100 -1.488623 -4.957886 1.826765 -0.743502 2.384584 1.322804 0.595869 3.374411 -1.133043 -1.180434 -3.958738 -1.675027 -0.401037 -0.400942 -2.849837 -1.931856 -0.609570 3.471082 3.723316 -0.187726 -1.429326 0.191537 3.715930 -4.278829 -0.816405 2.680492 2.713405 -2.880150 0.753006 3.179711 -4.102289 -1.421075 -1.802277 0.406432 -0.323347 -3.333581 1.407976 -1.161808 1.405273 0.970543 0.362972 -0.236894 1.695716 1.352639 0.963479 -0.235070 4.167622 4.777448 -1.973998 -1.106305 -3.096454 1.061844 -4.960914 -4.142209 1.244059 0.617072 -1.749674 0.847668 0.911088 3.248626 -0.480225 0.640715 -0.459158 -0.844429 +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.778166 -0.411349 -0.129377 -1.866480 1.380790 0.501697 0.582372 -0.627125 -1.424648 -0.499215 0.264322 -1.879428 -0.424343 1.447875 -0.631469 1.733676 3.002000 0.440982 -0.538130 -0.553260 1.626202 -0.473316 2.786948 2.505826 -1.764273 -0.160913 0.534137 1.282591 0.276687 0.210700 -0.646372 -1.092826 0.833273 -1.965230 -0.044112 -1.400104 0.368476 0.300884 1.503254 -2.769041 0.548076 -0.605246 0.318296 -0.415735 -0.751110 0.659707 1.930911 1.724585 -0.806556 0.360388 1.827575 0.377376 -0.194491 0.616277 -0.130750 0.650786 0.431786 0.268123 -0.676599 -1.042736 -0.178461 -0.594874 0.726247 1.641536 2.143888 0.089373 -0.182250 1.438940 0.772703 0.155203 0.933361 0.455833 -0.201395 -0.054920 1.000989 -3.016351 -0.106710 -4.210292 -0.632506 -4.133611 -1.360750 -0.561445 0.820608 -0.813163 1.337522 0.415403 2.050941 -0.390696 0.369403 1.248018 1.868501 -2.047276 -0.918217 -1.381298 -0.918417 0.613986 -0.920095 -0.056800 1.241970 0.420687 -1.563432 -1.137904 1.079584 0.738070 -0.711090 -1.693973 0.606490 0.806415 -1.304223 -1.612560 -1.208058 1.062820 -0.333239 -2.920271 0.348592 -1.147762 1.538710 -0.130145 -0.544283 -2.289440 -0.009509 1.246211 -0.810039 -0.936898 -0.439343 1.397726 1.244376 0.470575 0.712247 -0.032779 0.443806 3.222599 1.442636 -1.356331 -0.529569 0.272072 -1.426185 0.136621 -1.589252 -0.999030 1.115428 -2.127243 0.757644 1.517294 -1.219801 -0.366988 2.489438 0.156368 0.887205 5.719677 -0.105734 1.819504 1.409365 -1.892736 0.992671 -1.048737 -0.074337 0.500427 1.023656 0.257773 -2.856131 -1.724748 0.896626 1.721943 1.489519 -2.229607 -0.931086 -0.213602 0.386191 0.166558 -0.600780 0.694038 0.155732 -1.463687 -0.240292 1.459882 3.896851 -0.588771 -0.219720 1.003741 1.225130 -1.003511 -2.684513 -1.101799 -2.107811 0.099325 0.453535 0.418304 0.961578 2.484038 -3.597984 1.227669 -0.490437 0.055487 1.410775 0.682773 -1.514579 -2.855055 -0.076526 1.420931 2.123396 -0.714313 0.932547 0.520747 -1.367796 -0.129637 0.252500 0.462400 -0.583399 0.687815 0.256994 -1.652270 -0.742682 0.228209 -0.513844 -0.481337 0.120391 1.117456 0.390179 -3.176654 2.048792 -0.341485 -0.937676 0.941274 -0.933250 1.975341 -1.878277 -1.723586 1.438948 -0.055625 0.250407 -0.812969 0.580784 1.313909 -0.044717 0.653960 -1.112544 -2.455558 1.156728 -0.363706 1.446307 0.796578 -0.027432 1.308725 -0.953154 -0.391545 -2.075805 -0.758829 -0.903574 -0.096527 -1.684170 -0.783286 -0.422176 1.817718 1.894648 -0.363531 -0.549546 0.360984 1.717337 -2.558980 -0.321684 1.294983 1.445661 -1.752827 0.573220 1.623010 -2.287904 -0.463700 -1.009257 -0.017659 -0.317446 -1.794310 0.969712 -0.459984 0.847688 0.570678 0.008801 0.147424 0.908637 0.605942 0.526947 -0.034132 2.384541 2.665672 -0.381036 -0.788801 -1.847070 0.453870 -2.658273 -2.223896 0.958205 0.230836 -1.452496 0.355372 0.746884 2.109905 -0.352083 0.167515 -0.553326 -0.128202 +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.046538 -1.908046 -1.332026 -4.395528 3.621699 1.839609 1.896206 -2.208436 -4.522893 -0.542851 1.772346 -5.409047 -0.849943 4.543704 -1.351268 5.598839 7.344817 0.921012 -1.942246 -0.950012 4.580575 -0.320746 7.269283 6.233106 -4.076907 -0.288172 -0.326367 1.839528 0.370702 -0.093629 -1.223662 -2.674995 2.957650 -6.055212 -1.319340 -2.659486 0.697005 1.383028 5.472505 -6.568471 1.590101 -0.954944 1.220483 -1.301512 -2.164404 1.088791 3.739738 4.511024 -1.110902 1.660646 4.324757 -0.206308 -0.321210 1.616263 0.395317 1.553724 -0.081331 0.635620 -2.249746 -2.863362 -0.617176 -0.612456 1.179445 3.919947 5.288842 0.348994 -0.762908 3.983971 1.753457 0.693290 2.606387 1.065382 -0.472422 -0.412152 2.387031 -6.856855 -0.854504 -8.997270 -1.961907 -9.436240 -3.536161 -0.096098 2.921800 -1.504129 3.884001 0.360408 4.760376 -0.917860 -0.608340 3.201823 4.994803 -5.515909 -2.609623 -3.003453 -1.645323 1.110637 -2.356555 0.363638 3.991498 0.290515 -4.501962 -2.413470 2.426795 2.166480 -1.625305 -4.526670 1.875533 2.359947 -2.801302 -4.401152 -1.795150 3.399122 -0.911835 -7.479377 0.463238 -2.286085 2.540815 0.162262 -1.989143 -5.522442 0.326860 2.262945 -2.182623 -3.123827 -0.108322 3.513000 3.423552 2.097913 1.739808 0.674712 1.387531 8.943135 2.268061 -3.490253 -0.269434 -0.059791 -2.220687 1.856091 -3.322961 -2.960201 2.058997 -5.504031 2.362967 3.858189 -3.033917 -0.220827 5.825547 2.003192 1.220610 13.428760 -0.089401 6.023660 4.401560 -4.320801 2.692492 -3.180073 0.353190 1.047567 2.157710 0.021275 -6.793168 -4.556385 2.936379 4.490570 3.877929 -6.145763 -2.191528 -0.369280 1.181354 -0.006421 -1.158234 1.851361 1.500893 -3.974496 -0.485367 4.336345 10.159375 -2.505807 -0.004970 2.999044 2.660417 -1.607456 -6.573254 -3.254373 -5.478914 0.377912 1.586454 1.548636 2.488932 6.378359 -7.538843 3.412607 -1.151451 -0.107246 3.952317 2.353874 -5.075117 -6.225989 -1.156298 2.938256 5.179829 -1.298238 1.921676 1.775528 -3.807903 -0.334803 0.702331 0.090326 -1.167926 1.778083 0.264901 -2.858131 -1.678129 1.299965 -1.648769 -1.433788 0.597793 3.369874 1.970129 -7.180115 4.416952 -0.050887 -2.724587 1.951648 -1.979634 5.334115 -4.220153 -3.999880 3.644913 -0.720175 -0.038575 -1.818113 1.722383 2.435692 0.457647 2.041135 -2.647424 -5.820278 3.640490 -0.689435 4.235087 2.056218 -0.579551 2.321134 -2.656427 -1.658461 -4.636023 -2.802891 -1.632910 0.082442 -4.880754 -1.903627 -1.125696 4.914182 3.782942 -0.058927 -2.742897 0.032216 4.213539 -6.421999 -0.566348 3.793187 3.770355 -5.062892 0.877842 4.574391 -5.544328 0.018072 -2.275783 -0.440197 -1.722136 -4.060409 2.510434 0.151693 2.591992 0.201233 0.083967 1.020730 2.059177 1.528421 0.991420 0.210423 6.084506 5.789882 -1.180872 -2.680608 -4.952511 1.561590 -6.015679 -6.324018 3.217613 0.689109 -4.946961 0.570156 1.976765 5.717467 -0.520028 -0.698422 -1.950746 0.139414 +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.304120 -0.053128 0.180379 -0.748405 0.653479 0.379324 0.250491 -0.529427 -0.691205 -0.176983 0.239926 -0.525341 -0.195881 0.879340 -0.366102 0.661309 1.188289 0.217221 -0.278658 -0.452673 0.970624 -0.369439 1.233955 1.082876 -1.016718 0.002960 0.706962 0.539407 0.582358 0.322736 -0.241549 -0.349896 0.446455 -0.958725 0.032950 -0.702829 0.133468 0.075371 0.725721 -1.256378 0.113373 -0.514878 -0.106089 -0.086301 -0.270024 0.283903 0.721712 0.763938 -0.412916 0.449546 0.960578 0.215489 -0.165252 0.211491 0.174752 0.326360 0.548803 0.414256 -0.152001 -0.260994 -0.072354 -0.360780 0.238807 0.895461 1.117351 -0.012838 0.035773 0.610137 0.138988 0.171043 0.376693 0.252870 -0.233952 0.197590 0.539651 -1.627478 -0.028224 -2.287183 -0.308017 -2.116361 -0.561564 -0.294219 0.270342 -0.841394 0.650846 0.669365 0.944977 0.102728 -0.058335 0.522904 1.011658 -0.867987 -0.337049 -0.395978 -0.544864 0.329735 -0.541706 0.222302 0.522613 0.031035 -0.658446 -0.830219 0.572973 0.415322 -0.417022 -0.708189 0.017327 0.711772 -0.787825 -0.742096 -0.390857 0.228505 -0.380216 -1.324732 -0.198178 -0.658698 1.214066 -0.013987 -0.182080 -1.015473 0.035122 0.776888 -0.247743 -0.642668 0.469978 0.403307 0.695274 0.345613 0.079212 -0.113534 0.237237 1.375835 0.810652 -0.544940 -0.120403 0.009102 -0.483389 0.212562 -0.740467 -0.283027 0.496073 -0.746994 0.411704 0.752065 -0.492616 -0.400802 1.594346 -0.066555 0.348343 2.685774 0.057010 0.792182 0.603405 -0.906008 -0.027314 -0.326539 -0.011092 0.500859 0.573950 0.113041 -1.221018 -0.795943 0.381790 0.877716 0.572443 -1.231574 -0.820899 -0.240948 -0.039774 0.078814 -0.132706 0.172408 -0.188749 -0.512483 -0.204095 0.596766 1.418851 -0.566289 -0.675988 0.334002 0.452941 -0.604512 -1.217625 -0.390642 -0.784441 0.240287 0.228835 0.032926 0.535330 1.080006 -2.212305 0.671990 -0.267565 -0.132070 0.610600 0.439467 -0.639576 -1.121580 0.197110 0.553189 0.762063 -0.146608 0.253348 0.422408 -0.863422 -0.075603 0.062858 0.195374 -0.368977 0.442029 0.300683 -0.635808 -0.617475 0.333117 -0.000828 -0.376583 0.120170 0.565593 -0.146490 -1.960124 0.862997 -0.208247 -0.420351 0.438807 -0.338391 0.891064 -0.924381 -0.943701 0.622375 0.053961 0.083922 -0.400844 0.108845 0.687252 0.120974 0.464616 -0.570908 -0.876047 0.253137 -0.392412 0.517646 0.399756 0.145266 0.855092 -1.056301 -0.215703 -1.093033 0.131792 0.003237 0.020892 -0.708505 -0.688961 -0.196806 0.835996 0.952558 0.008939 -0.284574 0.027010 0.916121 -1.367462 -0.233210 0.525003 1.230674 -0.740535 0.313470 0.595094 -0.906964 -0.240662 -0.308420 -0.317147 -0.114890 -0.684225 0.631940 -0.156895 0.457199 0.183174 0.141239 0.045031 0.609562 0.186501 0.403398 0.028470 0.764352 1.601469 -0.628346 -0.451625 -0.825410 0.306211 -1.186246 -1.100063 0.405695 0.030183 -0.535598 0.130751 -0.023647 0.931041 0.126490 -0.019556 -0.112299 -0.080750 +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&) = -1.189761 -0.858456 0.031369 -2.711105 2.300382 1.225315 1.092351 -1.470751 -2.644506 -0.399927 1.015991 -2.811989 -0.716876 2.760530 -1.082622 2.813569 4.495085 0.680382 -1.178647 -1.036577 2.870247 -0.550839 4.577732 4.087876 -2.938095 -0.113355 0.597139 1.507417 0.956776 0.287075 -1.150252 -1.237036 1.808961 -3.447837 -0.447100 -1.993356 0.380594 0.434857 2.846455 -4.191640 0.748544 -1.258908 -0.129438 -0.533636 -1.044026 1.742321 2.564778 2.717729 -0.947637 1.209249 2.873529 0.047453 -0.274010 0.911495 0.329487 0.917323 0.957887 1.132689 -1.051758 -1.453902 -0.409065 -0.861967 0.740352 2.694441 3.532360 0.142523 -0.318910 2.137234 1.070139 0.331378 1.573937 0.795979 -0.047562 0.134004 1.664160 -4.709410 -0.200610 -6.401913 -1.245572 -6.460271 -2.116843 -0.476599 1.626853 -2.037392 2.182056 0.660498 3.148889 -0.131514 -0.258413 1.894214 3.217965 -3.454308 -1.473527 -1.583372 -1.252246 0.691338 -1.601114 0.525080 2.276458 0.163668 -2.640147 -1.877007 1.725119 1.208406 -1.174029 -2.522709 0.770791 1.822612 -2.049261 -2.420486 -1.374384 1.599070 -0.620620 -4.664520 0.197470 -1.801414 3.073454 0.023288 -1.095813 -3.283362 0.199735 1.861197 -1.233522 -1.831686 0.316752 2.220189 2.239856 1.226814 0.742779 0.140164 0.824985 5.048875 2.060970 -2.089207 -0.345768 0.001375 -1.790044 1.001946 -2.325884 -1.382708 1.835706 -3.047687 1.441008 2.331558 -1.854180 -0.415459 4.568956 0.841856 0.904131 8.767140 -0.070632 3.407391 2.412940 -2.882933 1.178721 -1.714512 0.239497 1.105863 1.632194 0.178019 -4.736766 -2.785248 1.675146 2.940792 2.228134 -4.400586 -1.543321 -0.363263 0.447604 -0.078767 -0.599622 0.973141 0.392238 -2.140807 -0.449464 2.403067 6.081461 -1.707521 -0.953555 1.459568 1.194117 -1.202696 -4.161277 -1.746264 -2.559506 0.474294 0.983224 0.769972 1.656662 3.886392 -5.834859 2.134589 -1.011587 -0.285189 2.543131 1.519631 -2.779419 -3.631580 -0.216567 1.852276 3.049900 -0.352909 0.726926 1.271506 -2.563792 -0.243839 0.368128 0.402850 -0.919196 1.252494 0.796668 -2.044223 -1.361887 0.477596 -0.488869 -0.800206 0.301712 2.077711 0.101896 -5.695318 2.860425 -0.231149 -1.671943 1.194001 -1.285276 3.177812 -2.831235 -2.755660 2.176944 -0.305630 -0.075605 -1.590941 0.790647 1.778076 0.193848 1.512366 -2.058416 -3.765674 1.984188 -0.881053 2.443005 1.315083 -0.055362 2.307690 -2.093233 -0.898538 -3.342702 -1.119595 -0.381400 0.012119 -2.838328 -1.080336 -0.704304 2.908371 2.715756 -0.163216 -1.185517 0.130118 2.829110 -4.343470 -0.579550 2.132002 3.507993 -2.824821 1.010801 2.516247 -3.394784 -0.373967 -1.245086 -1.009017 -0.861335 -2.480981 1.864635 -0.247405 1.642368 0.306564 0.425834 0.426725 1.543392 0.628588 0.876916 0.179757 3.542278 5.077954 -1.290742 -1.454552 -3.031990 1.326998 -3.893384 -3.900933 1.824573 0.192498 -2.517667 0.382671 0.869305 3.438038 -0.010697 -0.668412 -1.008879 0.160895 +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.820484 -3.075686 -0.761846 -6.148172 4.550673 3.552055 2.432029 -3.934258 -6.874702 -0.035541 2.919203 -6.552090 -0.638265 7.536674 -2.176467 6.898481 10.004440 1.651185 -3.287658 -1.678707 7.231554 -1.394803 9.665931 8.985537 -5.759801 -0.456400 0.005430 2.731010 2.051727 1.034503 -0.984219 -3.043748 3.793517 -7.754189 -1.545889 -4.998972 0.854822 2.721863 7.394744 -9.672603 2.032467 -1.435130 1.064249 -1.636191 -2.339912 2.924304 4.372211 5.911714 -1.282118 2.790019 5.874648 0.035479 -0.806327 1.738834 1.536673 1.946582 2.086881 2.689936 -2.335355 -2.858819 -0.815467 -0.009312 1.621001 5.708594 8.372758 0.572380 -0.530358 4.410290 2.236084 1.412772 3.588250 1.157129 -0.956384 -0.255752 2.774479 -10.333476 -0.977940 -14.481167 -1.922029 -13.446117 -3.904409 0.704589 4.255288 -3.487047 4.387501 0.107230 6.000167 -0.197595 -2.290200 4.909537 7.411135 -6.467834 -3.027222 -3.373480 -3.169210 1.488912 -3.124453 1.183248 6.214744 0.172921 -5.751349 -4.047571 3.374500 2.925553 -2.235662 -5.473111 1.977795 4.751218 -3.779838 -5.240043 -0.135755 5.371509 -1.687535 -10.306007 0.227368 -5.604946 4.049719 -0.091546 -2.771045 -6.734643 0.618309 3.438951 -2.828373 -4.011603 0.487212 5.272070 4.731375 2.977033 0.598116 0.472509 1.289737 10.893216 2.150143 -5.004408 0.704211 -0.240329 -2.884352 2.953782 -5.854851 -3.382308 3.968527 -6.321280 2.947927 4.604656 -3.717307 -0.454247 9.669850 2.984575 1.138181 21.667546 0.077306 8.578404 5.982067 -6.016309 3.414744 -2.771559 1.126905 2.386268 3.154383 -0.705638 -11.407858 -6.273808 3.700500 6.245081 5.008984 -9.595191 -4.554147 -1.062760 -0.143325 -0.043112 -0.808130 1.542011 0.380241 -4.709049 -1.152369 5.166513 14.110494 -3.667843 -1.000336 3.131011 3.549083 -3.489495 -9.530053 -3.743333 -6.368473 1.394291 1.157852 1.426779 4.255376 8.226532 -13.007844 5.333972 -1.560232 -0.289470 5.760311 3.299559 -6.905398 -9.552068 -1.529650 3.731208 7.548233 -1.291624 1.402218 3.520863 -5.890325 -0.353582 0.653440 -0.246921 -1.918702 2.337708 1.169305 -3.503081 -2.575834 2.471911 -2.074678 -2.277684 0.405165 4.567995 1.680609 -10.884643 5.735500 0.026260 -2.853112 2.318355 -1.934837 6.905631 -5.476515 -5.596225 4.176768 -0.075086 -0.254339 -3.964142 1.767598 3.809617 0.162004 4.404951 -4.054936 -8.422488 3.938899 -3.269695 5.396688 2.620699 -0.901563 3.519022 -3.674495 -1.890056 -7.766912 -3.935025 -0.619487 0.924842 -6.437976 -1.698674 -1.291093 6.308896 4.397374 0.735654 -4.786433 -0.387192 7.225639 -7.924136 -0.895676 4.563289 5.495193 -6.751626 1.026292 5.579442 -8.061277 0.381172 -2.571967 -2.367599 -2.147512 -4.941719 4.374916 1.532306 4.052122 -1.321695 1.085504 1.340435 3.240644 2.202107 1.294930 1.275330 8.442199 9.230636 -2.303935 -3.551325 -6.407704 2.769469 -7.820892 -8.223932 3.586483 0.246368 -6.288964 0.980214 1.798510 7.847847 0.473156 -0.715058 -1.901353 0.732068 +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.089800 0.093487 0.079482 -0.053389 0.227726 0.056589 0.114224 -0.058602 -0.160163 -0.180974 -0.048470 -0.194724 -0.219896 0.311088 -0.083917 0.225738 0.448234 0.180451 0.023425 -0.101666 0.172777 -0.311898 0.437773 0.367754 -0.266530 0.035624 0.154609 0.114201 -0.040195 0.313702 -0.171300 -0.280776 0.250000 -0.244925 0.075456 -0.283390 0.024047 0.044175 0.050312 -0.495879 0.009899 -0.019719 0.074313 -0.031424 -0.079560 0.138173 0.353329 0.240276 -0.018116 0.203431 0.116309 0.008591 0.059943 0.135571 0.124121 0.179207 0.103264 -0.129908 -0.237407 0.017262 -0.089434 -0.415789 -0.024619 0.230388 0.359173 -0.029260 0.023670 0.137388 -0.198090 0.055355 0.066980 0.075169 0.058705 0.034821 0.150171 -0.376901 -0.017581 -0.474670 -0.210515 -0.825186 -0.230778 -0.248177 0.109112 0.014668 0.244599 0.125963 0.350677 0.016704 0.096974 0.042767 0.446688 -0.425376 -0.164326 -0.140811 0.008755 0.071191 -0.214736 -0.041831 0.155726 -0.087027 -0.243533 -0.312467 0.326040 0.108271 -0.110220 -0.193263 -0.058739 0.276190 -0.458227 -0.306071 -0.414409 -0.169821 -0.140733 -0.407957 0.225960 0.008880 0.249967 0.174352 -0.075505 -0.371789 0.136437 0.296663 -0.032933 -0.271967 -0.049822 0.258066 0.038743 -0.009008 0.130283 0.031286 0.041288 0.463534 0.387893 -0.098758 -0.075450 0.075691 -0.223692 0.011195 -0.172497 -0.179393 0.049667 -0.369511 0.043549 0.185541 -0.215227 -0.020675 0.206392 -0.057748 0.206304 0.451359 -0.057713 0.163587 0.083933 -0.389235 0.151197 -0.180695 -0.064682 0.050281 0.269578 0.122279 -0.247850 -0.243052 0.109458 0.304659 0.209434 -0.273741 -0.240382 -0.207391 0.133505 0.051435 0.003867 0.149145 -0.000226 -0.229047 -0.036148 0.049518 0.573493 -0.252894 -0.055614 0.155282 -0.067697 -0.114168 -0.484892 -0.121604 -0.229784 -0.007762 -0.089328 -0.034944 0.010560 0.368080 -0.526106 0.310068 -0.256837 -0.144052 0.220012 0.016143 -0.093563 -0.405951 0.044454 0.282423 0.333577 0.049601 0.157183 0.009484 -0.292594 -0.047071 -0.048985 0.199387 -0.101697 0.169997 0.035902 -0.355424 -0.244309 -0.007998 0.075414 -0.231242 0.037223 0.136100 0.280028 -0.622642 0.334007 -0.073486 -0.153077 0.196551 0.114187 0.224316 -0.309737 -0.390718 0.179218 -0.106542 -0.098745 -0.094896 0.000878 0.184015 -0.056781 -0.175702 -0.019688 -0.274028 0.166323 0.009099 0.137572 0.130851 0.122168 0.363423 0.012246 -0.246045 -0.184516 0.019406 -0.126411 -0.332468 -0.066332 -0.074378 -0.081529 0.322930 0.465677 0.134334 -0.019027 0.037698 0.344313 -0.365216 -0.096595 0.332082 0.270208 -0.101952 0.117875 0.314205 -0.310475 -0.229594 -0.114603 0.002685 0.008136 -0.244019 0.074414 -0.304286 0.034797 0.166357 -0.004918 -0.119509 0.165375 0.035437 0.044918 -0.131009 0.360611 0.378091 -0.270566 0.042619 -0.191426 0.049262 -0.412694 -0.247828 0.025208 0.270143 -0.153747 0.059308 0.105955 0.165303 -0.026009 -0.058330 -0.067526 -0.207639 +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.176324 -1.296683 0.357211 -2.570341 1.633514 0.980616 0.826904 -1.272501 -2.726506 -0.279094 0.904983 -2.436375 -0.098246 2.944108 -0.829843 2.485070 4.076833 0.879694 -1.129695 -0.862546 3.183271 -1.433905 3.857807 3.664321 -2.343844 -0.184933 0.253560 1.604443 0.953994 0.818866 -0.588756 -1.130313 1.067106 -3.221651 -0.318369 -2.563907 0.321670 1.451716 2.771951 -4.204325 0.809746 -0.558270 0.347634 -0.556404 -0.838598 1.184712 1.789675 2.187578 -0.691792 1.211504 2.640507 -0.149308 -0.288971 0.574023 0.596904 1.041047 1.269492 1.404747 -0.850688 -0.818812 -0.396488 -0.290542 1.149133 2.166048 3.311104 0.060223 -0.300805 1.499950 0.896820 0.531423 1.443204 0.435829 -0.558841 -0.415393 1.233015 -5.085604 -0.130613 -7.132399 -0.487039 -6.082448 -1.534576 0.163489 1.876502 -1.308192 1.528765 0.024869 2.471634 -0.418497 -0.737651 2.086814 2.893452 -2.384679 -1.046748 -1.433808 -1.579938 0.571568 -1.063360 0.026276 2.160335 0.251336 -2.210823 -1.736786 1.769735 1.072054 -0.870726 -1.993503 0.574061 1.843026 -1.925133 -2.191296 -0.438524 2.373239 -0.473775 -4.193094 0.553967 -2.550223 2.168106 -0.031752 -1.146745 -2.721035 0.288806 1.586003 -1.089672 -1.315903 -0.237812 2.551602 1.883963 0.884569 0.192459 -0.119542 0.212511 4.033088 1.325652 -2.032265 0.094166 0.343211 -1.626856 0.785383 -2.588183 -1.343217 1.926979 -2.443420 0.847249 1.611057 -1.489961 -0.177838 4.510338 1.100548 0.560320 9.792300 0.010773 3.457583 2.386668 -2.235478 1.963334 -0.549810 0.510928 1.141789 1.357638 -0.226915 -5.637201 -2.468306 1.256663 2.368807 1.988061 -4.011516 -2.608836 -0.624144 -0.059540 0.522497 -0.288654 0.449735 0.053979 -1.906288 -0.450923 1.797373 6.141296 -1.256562 -0.797071 1.072509 1.076192 -1.851045 -4.546550 -1.317605 -2.656576 0.412505 0.239397 0.309192 1.715170 3.256858 -6.266162 2.180612 -0.872390 -0.242109 2.429846 1.091535 -2.573888 -4.871891 -0.840183 1.544644 3.355469 -0.501646 0.683213 1.455848 -2.299756 -0.048135 0.178679 0.124793 -1.032638 1.076727 0.333386 -1.751229 -0.875099 0.790172 -1.145720 -0.800142 0.139743 1.627459 0.503138 -5.027447 2.310702 -0.083449 -0.876154 1.318840 -0.416600 2.666977 -2.106969 -2.364339 1.626712 0.339806 -0.037613 -1.907826 0.610813 1.483799 -0.385354 1.065195 -1.582076 -3.765025 1.274798 -1.749412 2.054608 1.028440 -0.531493 1.674489 -0.964069 -0.577323 -3.518220 -1.178371 -0.428357 0.106017 -2.398449 -1.368055 -0.469394 2.358681 1.885677 0.355791 -1.474064 -0.064530 3.274514 -3.340737 -0.485864 1.750257 1.981908 -2.710739 0.529517 2.357347 -3.370045 -0.013428 -1.409711 -0.934072 -0.577366 -1.813370 1.880831 0.385371 1.443257 -0.439828 0.285897 0.254720 1.299784 1.061806 0.414775 0.332053 3.755862 4.339404 -0.822160 -1.217136 -2.312504 0.931445 -3.153063 -3.019147 0.845291 0.484404 -2.480647 0.488146 0.942949 3.392922 0.259155 -0.098603 -0.356413 0.140837 +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.304120 -0.053128 0.180379 -0.748405 0.653479 0.379324 0.250491 -0.529427 -0.691205 -0.176983 0.239926 -0.525341 -0.195881 0.879340 -0.366102 0.661309 1.188289 0.217221 -0.278658 -0.452673 0.970624 -0.369439 1.233955 1.082876 -1.016718 0.002960 0.706962 0.539407 0.582358 0.322736 -0.241549 -0.349896 0.446455 -0.958725 0.032950 -0.702829 0.133468 0.075371 0.725721 -1.256378 0.113373 -0.514878 -0.106089 -0.086301 -0.270024 0.283903 0.721712 0.763938 -0.412916 0.449546 0.960578 0.215489 -0.165252 0.211491 0.174752 0.326360 0.548803 0.414256 -0.152001 -0.260994 -0.072354 -0.360780 0.238807 0.895461 1.117351 -0.012838 0.035773 0.610137 0.138988 0.171043 0.376693 0.252870 -0.233952 0.197590 0.539651 -1.627478 -0.028224 -2.287183 -0.308017 -2.116361 -0.561564 -0.294219 0.270342 -0.841394 0.650846 0.669365 0.944977 0.102728 -0.058335 0.522904 1.011658 -0.867987 -0.337049 -0.395978 -0.544864 0.329735 -0.541706 0.222302 0.522613 0.031035 -0.658446 -0.830219 0.572973 0.415322 -0.417022 -0.708189 0.017327 0.711772 -0.787825 -0.742096 -0.390857 0.228505 -0.380216 -1.324732 -0.198178 -0.658698 1.214066 -0.013987 -0.182080 -1.015473 0.035122 0.776888 -0.247743 -0.642668 0.469978 0.403307 0.695274 0.345613 0.079212 -0.113534 0.237237 1.375835 0.810652 -0.544940 -0.120403 0.009102 -0.483389 0.212562 -0.740467 -0.283027 0.496073 -0.746994 0.411704 0.752065 -0.492616 -0.400802 1.594346 -0.066555 0.348343 2.685774 0.057010 0.792182 0.603405 -0.906008 -0.027314 -0.326539 -0.011092 0.500859 0.573950 0.113041 -1.221018 -0.795943 0.381790 0.877716 0.572443 -1.231574 -0.820899 -0.240948 -0.039774 0.078814 -0.132706 0.172408 -0.188749 -0.512483 -0.204095 0.596766 1.418851 -0.566289 -0.675988 0.334002 0.452941 -0.604512 -1.217625 -0.390642 -0.784441 0.240287 0.228835 0.032926 0.535330 1.080006 -2.212305 0.671990 -0.267565 -0.132070 0.610600 0.439467 -0.639576 -1.121580 0.197110 0.553189 0.762063 -0.146608 0.253348 0.422408 -0.863422 -0.075603 0.062858 0.195374 -0.368977 0.442029 0.300683 -0.635808 -0.617475 0.333117 -0.000828 -0.376583 0.120170 0.565593 -0.146490 -1.960124 0.862997 -0.208247 -0.420351 0.438807 -0.338391 0.891064 -0.924381 -0.943701 0.622375 0.053961 0.083922 -0.400844 0.108845 0.687252 0.120974 0.464616 -0.570908 -0.876047 0.253137 -0.392412 0.517646 0.399756 0.145266 0.855092 -1.056301 -0.215703 -1.093033 0.131792 0.003237 0.020892 -0.708505 -0.688961 -0.196806 0.835996 0.952558 0.008939 -0.284574 0.027010 0.916121 -1.367462 -0.233210 0.525003 1.230674 -0.740535 0.313470 0.595094 -0.906964 -0.240662 -0.308420 -0.317147 -0.114890 -0.684225 0.631940 -0.156895 0.457199 0.183174 0.141239 0.045031 0.609562 0.186501 0.403398 0.028470 0.764352 1.601469 -0.628346 -0.451625 -0.825410 0.306211 -1.186246 -1.100063 0.405695 0.030183 -0.535598 0.130751 -0.023647 0.931041 0.126490 -0.019556 -0.112299 -0.080750 +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.615791 -0.143298 1.958762 -5.287039 3.878254 2.267028 1.468291 -1.003275 -4.204155 -2.871100 -0.270889 -3.036301 -2.936661 6.835984 -2.269328 2.705296 8.704715 2.442773 -1.093174 -1.430690 6.156172 -2.709110 7.201815 6.842788 -6.334183 -0.991401 2.922783 3.606324 1.657049 3.225731 -0.304789 -4.362737 2.398039 -3.755432 1.278076 -5.980604 1.763492 1.704102 1.051756 -9.224356 1.234879 -1.143088 -1.524199 -1.260352 -1.687706 2.141706 5.519228 5.443974 -3.884241 0.869498 4.957422 2.894423 -1.957631 1.681512 -0.385061 0.852671 -1.184778 0.611114 -1.969394 -1.211468 -0.593034 -4.132585 1.879803 5.747702 7.225099 0.209830 1.032726 2.939448 -0.104671 1.425894 1.696081 0.641889 1.379759 -0.031203 3.547950 -7.642940 -2.531295 -13.600355 -1.317113 -14.512665 -3.273367 -3.009778 3.198780 -0.359360 1.995468 -0.148537 6.105682 0.196577 1.240686 6.778705 7.295268 -4.944146 -2.307575 -5.929073 -4.329541 3.011858 -3.510803 0.076040 1.364248 0.248765 -4.443256 -5.410477 1.140046 1.582211 -2.156477 -5.096813 0.095686 5.493965 -6.112288 -3.467988 -3.797155 2.437571 -1.128463 -9.006077 0.330764 -4.261792 6.093398 0.065232 -0.869089 -4.770543 0.399720 4.663426 -1.769974 -2.885729 -1.697148 4.974917 2.690747 0.273199 0.852673 -0.939916 0.486641 6.498882 4.979224 -3.546715 -1.482034 1.193350 -3.663660 -0.774730 -5.884481 -1.719207 4.819019 -5.767308 0.519061 4.114179 -3.638726 -2.934625 5.997456 -1.820646 4.241698 17.233352 -0.128037 4.290016 2.949944 -6.525046 2.731480 -0.968737 -1.023801 2.657493 4.252549 1.190995 -7.443418 -5.113013 1.955228 5.622632 4.750732 -4.989236 -3.852416 -2.567440 -0.677413 -0.345969 -0.715516 1.699593 -2.313366 -4.115496 -1.419036 4.070671 8.837433 -2.040757 -2.086979 2.344237 4.742803 -3.218241 -6.337021 -1.993034 -4.120429 0.517804 2.378137 -1.065322 3.878317 7.702302 -12.848809 4.906513 -1.147348 0.060998 0.850182 0.982170 -3.466187 -7.950078 1.393132 5.342860 6.524657 -0.746666 2.853058 1.344131 -5.370591 -0.284202 1.107406 2.472422 -1.895318 2.247361 0.640278 -4.417799 -4.398202 1.060833 -2.353563 -2.289883 -0.050108 2.608378 0.659542 -10.600597 6.897436 -2.347960 -1.408033 2.281787 -1.538306 5.951010 -6.593041 -7.264827 3.944422 0.717173 -1.295533 -2.955778 1.010253 5.710476 -0.439710 0.326190 -2.308696 -8.353082 2.856874 -1.350186 3.510085 2.167034 1.472821 6.657599 -1.709706 -1.618673 -6.537332 -3.011724 1.306825 -0.748290 -4.479782 -2.154806 -0.854028 5.374183 6.780706 -0.599491 -2.856117 1.223177 6.632041 -5.793651 -1.972017 4.224412 3.843584 -3.887826 2.012242 5.180860 -6.839166 -3.071225 -3.648567 1.898663 0.266920 -5.599211 2.582460 -2.156610 2.372539 1.888746 1.311345 -1.423064 3.270477 2.559904 1.501762 -0.246007 6.921581 7.987390 -3.841448 -0.841069 -5.039444 1.983867 -8.527186 -6.466765 1.049606 0.440638 -1.299497 1.870956 -0.283703 5.149853 -0.639916 2.375317 -0.133138 -1.167344 +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.181031 -0.255015 0.403147 -2.260424 1.625363 1.748816 0.651719 -0.490254 -1.865790 -1.109963 -0.161491 -2.007866 -0.929416 3.080927 -0.784198 1.782295 4.974341 1.071783 -0.470569 -0.343980 2.829415 -2.649607 3.485155 3.950099 -2.501628 -0.458986 1.648036 2.571796 0.361238 2.077462 -0.099630 -2.745409 0.968433 -2.112445 0.445269 -3.843568 0.830566 1.104542 0.916162 -5.213378 0.631954 -0.322177 -0.181466 -0.738725 -0.973735 1.228814 3.338793 2.399443 -1.616621 0.341105 1.985364 1.067021 -0.819545 0.768738 -0.091094 0.756741 0.952718 1.245039 -1.011506 -0.576471 -0.200652 -1.629543 1.080317 2.334358 4.228940 0.029447 0.473401 1.626482 -0.118418 0.582065 0.786619 0.163426 0.133980 -0.344815 1.439217 -4.699290 -1.157004 -7.969661 -0.558353 -7.048431 -1.395000 -1.099058 1.167707 -0.948986 1.248646 -0.670377 2.557620 -0.250932 0.503010 2.962692 3.598936 -2.292300 -1.054510 -2.778532 -1.887604 1.292356 -1.485652 -0.324363 2.012449 -0.069709 -1.920065 -2.921641 1.838077 1.028658 -0.864442 -2.700123 0.194836 2.335828 -2.494061 -2.113524 -1.411110 1.143518 -0.912425 -4.329243 1.042706 -2.954774 1.655956 0.097374 -0.374220 -3.050290 0.174354 2.587897 -0.746151 -1.596598 -0.613422 3.261885 1.052216 0.120909 0.521581 -0.474201 0.122294 3.678981 2.593002 -1.590777 -0.551906 0.633637 -2.701630 -0.299139 -3.660385 -1.177513 2.329205 -2.786864 -0.112686 2.017624 -1.592432 -0.891750 3.682699 -0.576714 1.815351 11.480575 0.029196 1.869551 1.338295 -3.423485 2.730850 -0.426098 -0.486138 0.998831 1.816946 0.359647 -6.232675 -2.264637 0.792137 2.361668 2.169551 -3.481770 -2.718178 -1.270435 -0.233109 0.158239 -0.477749 0.795486 -0.913633 -1.990077 -0.544717 1.782858 6.372679 -0.959091 -0.912434 1.269043 2.236959 -2.901666 -5.573683 -1.012590 -2.741259 0.107595 -0.472145 -0.538362 1.586347 3.340567 -6.781531 2.203563 -0.715008 0.015064 1.607668 0.335944 -1.576316 -6.336444 0.364897 2.816663 4.162680 -0.717016 1.600550 0.565557 -2.231450 -0.071802 0.349995 0.882133 -0.721959 0.914546 -0.152393 -3.097252 -1.765780 0.344682 -1.239056 -1.405886 -0.455892 1.072929 0.960505 -4.719093 3.440348 -0.936748 -0.528079 1.396135 -0.404258 2.776589 -2.779466 -3.600128 1.837516 0.496161 -0.098588 -2.175001 0.496525 2.518063 -0.187058 0.412984 -0.702922 -5.256856 0.991078 -1.723995 1.503351 0.910172 0.432926 2.930227 0.707207 -0.803763 -4.390318 -1.997298 -0.656271 -0.368511 -1.916024 -1.475331 -0.345587 2.565302 2.787445 0.010529 -1.342683 -0.051926 4.044381 -2.860585 -0.657415 1.959499 1.032743 -2.025368 0.376887 2.395773 -4.221742 -1.171233 -1.504429 0.142949 0.152932 -2.913047 1.008134 -0.787177 0.981924 0.645544 0.382278 -0.407272 1.310832 1.403370 0.664313 -0.246925 4.296360 4.167884 -1.422849 -0.642440 -2.112290 0.521299 -4.147521 -2.780213 0.399560 0.719387 -0.888669 0.879894 1.467634 2.232847 -0.385506 1.315720 0.079900 -0.887746 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::iter_swap(int*, int*) = -0.240023 -0.008910 0.442177 -0.564877 0.436503 0.093299 0.182098 -0.188510 -0.544907 -0.262460 -0.002416 -0.284983 -0.276768 0.699496 -0.311516 0.272860 1.032040 0.409784 -0.137573 -0.407338 0.627795 -0.541782 0.926323 0.939036 -0.808596 -0.008882 0.450879 0.572892 0.432635 0.520131 -0.299659 -0.225538 0.299966 -0.469357 0.256307 -0.810314 0.133114 0.158766 0.104375 -1.172398 0.102263 -0.325863 -0.021676 -0.032144 -0.089596 0.615235 0.626361 0.583144 -0.325325 0.310302 0.632702 0.203898 -0.043764 0.197294 0.118334 0.282041 0.495239 0.200905 -0.207785 -0.026004 -0.091011 -0.667685 0.238446 0.681977 0.912777 -0.005901 0.085569 0.205357 0.057575 0.133191 0.295830 0.141791 0.004750 0.075793 0.384350 -1.123480 0.092767 -1.690720 -0.200064 -1.894265 -0.426068 -0.443537 0.377373 -0.416898 0.298233 0.297102 0.766673 0.090598 0.145197 0.379961 0.784124 -0.668233 -0.268487 -0.393762 -0.389607 0.302483 -0.420619 0.009926 0.307644 0.099948 -0.470089 -0.612973 0.514782 0.190165 -0.311648 -0.286160 -0.075609 0.660144 -0.830705 -0.462737 -0.580757 0.056996 -0.175219 -0.968696 0.245343 -0.577758 1.021366 0.030098 -0.115722 -0.587504 0.082746 0.638208 -0.183835 -0.288831 -0.217310 0.597201 0.303783 0.002207 0.040736 -0.122651 0.004884 0.722066 0.708211 -0.439143 -0.190613 0.219257 -0.620208 -0.063793 -0.734559 -0.204667 0.601893 -0.626864 0.097351 0.363917 -0.437852 -0.246249 1.016244 -0.105273 0.451700 1.868783 -0.018377 0.471302 0.326280 -0.692594 0.240935 -0.058084 0.013393 0.428107 0.555859 0.109190 -0.980343 -0.614469 0.122455 0.669928 0.484328 -0.815297 -0.600909 -0.370091 -0.036142 0.135212 -0.052612 0.139588 -0.300874 -0.406001 -0.165459 0.219420 1.101682 -0.305535 -0.455447 0.134013 0.113283 -0.535928 -0.985242 -0.218585 -0.339439 0.130287 -0.035861 -0.062204 0.382897 0.852733 -1.800035 0.635334 -0.327909 -0.138421 0.446295 0.064433 -0.287274 -1.019049 0.164189 0.481603 0.780627 -0.008369 0.117128 0.319109 -0.694275 -0.071095 -0.007456 0.376771 -0.323295 0.329247 0.305665 -0.590725 -0.475993 -0.013240 0.029256 -0.257700 0.032735 0.354978 -0.084907 -1.603670 0.684493 -0.278456 -0.262533 0.382173 -0.079366 0.469048 -0.776133 -0.761146 0.371339 0.135322 -0.100573 -0.533906 0.058273 0.641051 -0.201278 0.049083 -0.384528 -0.839608 0.263054 -0.370857 0.327387 0.299429 0.134341 0.824109 -0.191603 -0.168831 -0.785425 0.140326 -0.057824 -0.266045 -0.346428 -0.200043 -0.153651 0.591299 0.939845 0.035707 -0.016426 0.196403 0.893577 -0.821159 -0.344234 0.469966 0.689495 -0.301556 0.404563 0.527828 -0.847583 -0.430460 -0.323791 -0.240381 0.143627 -0.491402 0.508449 -0.378300 0.304320 0.217208 0.186067 -0.184416 0.492316 0.123407 0.163981 -0.031136 0.838034 1.348878 -0.465704 -0.029366 -0.528968 0.260413 -0.947556 -0.591218 0.020584 0.149648 -0.266789 0.255661 0.019065 0.656536 0.059264 0.040745 -0.040678 -0.152045 +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.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int std::__bit_width(unsigned long) = -0.330474 -0.429773 0.214934 -0.698046 0.481560 -0.048437 0.383900 -0.339168 -0.956292 -0.268541 0.346009 -0.929029 -0.242474 1.042812 -0.233579 0.794553 1.272606 0.439687 -0.388616 -0.340714 0.666781 -0.497024 1.145070 1.137293 -0.680007 0.044345 -0.215583 0.288617 0.293501 0.360070 -0.170630 -0.349090 0.562659 -0.678770 0.115161 -0.622213 0.007835 0.442939 0.563219 -1.301900 0.258737 0.223384 0.614841 -0.221675 -0.130851 0.618172 0.563296 0.747827 -0.008247 0.514058 0.521456 -0.179329 0.189706 0.288985 0.448937 0.264384 0.449871 -0.179769 -0.545650 -0.121563 -0.210765 -0.551992 0.145613 0.690934 1.002153 -0.036331 -0.102722 0.310514 0.249955 0.248083 0.609249 0.162586 0.017838 -0.218175 0.320400 -1.103146 0.122671 -1.480069 -0.266639 -2.189057 -0.640172 0.044004 0.923862 -0.067293 0.404346 -0.135891 0.859151 -0.044745 -0.284341 0.204371 0.973275 -0.836525 -0.478632 -0.279684 -0.180543 0.200977 -0.467374 -0.030780 0.768937 0.071444 -0.773578 -0.249852 0.683791 0.244643 -0.304213 -0.267781 0.210454 0.799678 -0.782963 -0.656604 -0.285652 0.421577 -0.066282 -1.097309 0.703588 -0.546535 0.303596 0.185941 -0.490918 -0.581057 0.267279 0.264920 -0.394614 -0.324277 -0.809416 0.823562 0.217468 0.351341 0.087711 0.221442 0.070647 1.047513 0.340128 -0.688309 0.129933 0.102653 -0.378629 0.459264 -0.587934 -0.646851 0.565879 -0.805619 -0.103517 0.144969 -0.583249 0.038725 0.672218 0.471851 0.144985 1.594908 -0.062092 0.930661 0.659990 -0.695572 0.561275 -0.231909 0.214880 0.248145 0.638905 -0.080073 -0.897904 -0.864475 0.459808 0.919824 0.687435 -0.928159 -0.507447 -0.210491 0.111913 0.102945 0.035301 0.217345 0.100336 -0.690426 -0.150619 0.256114 1.536153 -0.440524 -0.076669 0.261324 0.079504 -0.267324 -1.163592 -0.386267 -0.571835 0.182880 -0.350046 0.159104 0.434231 1.091627 -1.567240 0.927183 -0.446844 -0.101413 0.897870 0.152567 -0.714200 -1.551067 -0.345998 0.384746 1.045318 -0.085636 0.153495 0.483026 -0.829862 -0.094581 -0.171565 0.087003 -0.263840 0.321543 0.055793 -0.409297 -0.251948 -0.011648 -0.075976 -0.295381 0.052101 0.602215 0.739519 -1.237913 0.655060 -0.043354 -0.376258 0.281122 0.061817 0.633356 -0.706686 -0.655106 0.335715 -0.190247 -0.410496 -0.642556 0.103079 0.448850 -0.419311 -0.045953 -0.297607 -0.691568 0.766606 -0.496840 0.753332 0.371890 -0.215140 0.567461 0.351115 -0.361109 -0.491649 -0.228969 -0.440765 -0.452848 -0.485929 0.074361 -0.215994 0.785019 0.691784 0.245710 -0.299577 0.160931 0.896588 -0.950824 -0.264035 0.761197 0.265414 -0.471886 0.494015 0.826208 -1.033543 -0.048446 -0.414610 -0.378332 -0.182545 -0.440221 0.633841 0.005723 0.422734 -0.198505 0.122979 -0.013143 0.402539 0.224947 -0.080631 0.032671 1.230511 1.109767 -0.326269 -0.143427 -0.752737 0.346823 -0.914997 -0.716030 0.221499 0.463201 -0.887949 0.168066 0.261576 0.817991 0.190381 -0.260914 -0.417452 0.143059 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int std::__countl_zero(unsigned long) = -0.636051 -0.644751 0.275596 -1.006688 1.147910 0.067767 0.864829 -0.237691 -1.797306 -0.554353 0.405554 -1.822630 -0.721582 2.305005 -0.126624 1.833342 2.871858 0.994525 -0.573320 -0.324546 1.567793 -1.553061 2.304440 2.131870 -1.244752 0.101062 -0.320042 0.477073 -0.080519 1.072607 -0.655853 -1.063075 1.176884 -1.957764 0.152122 -1.357066 0.069242 0.801912 1.106316 -2.839189 0.464335 0.796647 1.055371 -0.678050 -0.565520 0.496448 1.468271 1.555974 -0.103375 0.911804 0.664594 -0.871541 0.353997 0.696040 1.037924 1.032129 0.312085 0.019439 -1.623455 -0.152587 -0.544602 -1.586376 0.332985 1.197790 1.954738 -0.060138 -0.189019 1.001962 -0.050822 0.367332 1.032562 0.217312 0.282867 -0.678521 1.072350 -2.227971 -0.276636 -2.911581 -0.820455 -4.392252 -1.455429 -0.257081 1.711407 -0.221949 1.252844 -0.403155 1.763914 -0.560500 -0.240959 0.665020 2.357290 -2.135859 -1.181406 -1.202342 -0.315982 0.410922 -1.067538 -0.463903 1.911617 -0.597941 -1.747961 -1.091206 1.684908 0.837514 -0.521311 -1.094099 0.370387 1.855386 -1.541523 -1.980710 -1.269573 0.393346 -0.518511 -2.184574 1.257066 -0.421361 0.203240 0.918109 -1.016655 -1.810977 0.759834 0.930205 -0.748007 -1.358105 -0.690168 1.903282 0.208649 0.618106 0.626908 0.465263 0.211777 2.461639 1.524177 -1.098934 0.240115 0.325065 -0.986956 0.812006 -1.038694 -1.701731 0.834821 -1.834875 -0.673303 0.564471 -1.343875 0.348549 1.467068 0.936163 0.572644 3.324415 -0.085733 1.623036 0.985010 -1.749612 1.841225 -0.550033 0.086680 0.195147 1.514903 0.069308 -2.273844 -1.743354 0.961961 1.870800 1.547057 -1.956281 -1.403780 -0.857676 0.592331 0.352513 -0.034695 0.749532 0.629123 -1.650738 -0.202348 0.576339 3.652949 -1.570010 -0.714913 0.971846 0.006178 -0.527042 -3.185422 -0.884082 -1.705538 0.062019 -0.958710 0.000418 0.710127 2.377774 -2.787006 2.010436 -1.407965 -0.612630 1.974086 0.271614 -1.322295 -3.231115 -0.726974 1.165368 2.417540 0.251170 0.253575 0.518423 -1.650144 -0.172451 -0.342759 0.356521 -0.258021 0.864093 -0.648101 -1.157642 -0.765093 -0.074352 -0.371049 -1.061704 0.267454 1.045803 1.882180 -2.143440 1.625676 0.065347 -0.648965 0.911600 0.531150 1.321546 -1.486522 -1.997442 0.981662 -0.425232 -0.815139 -1.023549 0.153626 0.925747 -0.239232 -0.953555 -0.251625 -1.942908 1.742415 -0.546684 1.739044 0.771266 -0.290146 1.517582 1.448969 -1.292505 -1.012051 -0.641079 -1.150660 -1.192806 -0.997995 -1.076836 -0.519139 1.961747 1.593024 0.701049 -0.444883 -0.401176 2.009732 -2.247192 -0.565069 2.035191 0.409904 -0.985007 0.608407 2.157963 -2.157693 -0.368055 -0.810978 -0.327951 -0.418324 -1.100309 0.698730 -0.540251 0.545478 -0.083695 -0.056678 0.048880 0.514968 0.582279 -0.066166 -0.455053 2.593387 2.053845 -1.255818 -0.349374 -1.454239 0.639431 -2.049179 -1.542077 0.490617 1.455606 -1.890140 0.347806 1.329770 1.305439 0.142736 -0.683047 -0.800144 -0.429217 +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.790743 0.327391 0.699610 -2.815490 3.038650 2.770869 1.255295 -0.964596 -2.502238 -1.685597 -0.137874 -3.021568 -2.395035 4.828053 -1.343789 2.679250 6.473782 1.386389 -0.760860 -0.216385 3.984782 -1.858603 5.369799 4.831692 -3.826411 -0.601464 2.015698 2.179324 -0.112753 2.784731 -0.776562 -4.121376 2.195144 -3.044094 0.443343 -3.730776 0.998061 0.660105 1.395800 -6.413668 0.709876 0.074494 -0.690434 -1.170903 -1.459613 0.473785 4.574692 3.708012 -1.820343 0.396085 2.575410 1.342629 -1.033025 1.337412 0.474341 1.003130 -0.340225 0.615855 -2.140948 -1.157080 -0.791868 -2.540602 0.501403 3.708539 5.262372 0.293336 0.582982 2.371752 -0.939849 0.937626 0.774345 0.499731 0.996884 0.375939 2.332367 -4.909588 -1.821629 -8.460257 -1.502557 -9.107199 -2.432364 -2.030576 1.431002 -0.241335 2.346916 -0.578255 4.202356 -0.164420 0.716443 3.619635 5.974801 -4.192411 -1.887944 -4.048422 -2.229318 1.555574 -2.591845 -0.001804 2.009535 -0.976705 -3.443739 -4.141461 1.550312 1.633665 -1.275995 -3.642285 0.141228 3.779186 -3.753201 -3.094285 -2.958541 0.821686 -1.313452 -6.570916 -0.088867 -2.102917 2.365271 0.800038 -0.941366 -4.587404 0.853141 3.643680 -1.147131 -3.118559 0.044140 3.939413 1.801342 0.444903 1.087153 -0.240227 0.807952 5.700693 3.904341 -1.969448 -0.648169 0.232542 -2.565073 -0.029376 -3.658967 -1.607678 2.056915 -4.244409 0.279458 3.696188 -2.595059 -1.069180 3.425355 -0.922703 2.790897 12.719874 -0.502205 3.024656 1.712913 -5.268600 2.710305 -1.312199 -1.136640 0.754431 2.763846 1.271536 -6.157613 -3.482833 2.111109 4.010788 3.268952 -4.161924 -2.493920 -1.920694 0.218026 -0.629267 -0.416034 1.719886 -0.699439 -3.149294 -0.892202 3.014638 7.637795 -2.568565 -2.388409 2.432302 2.711987 -1.823095 -5.559016 -1.717485 -3.547917 0.148555 1.037333 -0.714417 2.185343 5.406431 -7.971021 3.559800 -0.979893 -0.838117 2.349916 0.671905 -2.542345 -5.522808 0.754562 4.377373 4.739835 -0.121325 1.737463 0.150762 -3.632824 -0.271786 0.579184 1.696840 -0.936635 1.670028 -0.215660 -3.794669 -3.347451 0.222871 -1.364553 -2.483209 -0.384728 1.816012 1.642830 -7.015813 5.377185 -0.741959 -1.074157 1.617003 -0.713141 3.959670 -4.325715 -5.672400 2.854587 -0.366656 -0.823814 -1.614869 0.651646 3.266541 0.669736 0.210890 -1.368682 -6.142325 2.235160 -0.537512 2.852066 1.416577 1.464778 4.338701 -0.209952 -1.951360 -4.586581 -2.748575 0.511883 -0.747257 -3.267495 -2.386358 -0.713977 4.285689 4.495092 -0.056662 -2.110819 -0.759437 4.603526 -4.510782 -0.813004 3.545331 2.280774 -3.281064 0.280460 4.005884 -4.586105 -2.153834 -2.139258 0.764872 -0.788143 -4.385831 0.800760 -1.819518 1.245534 1.510572 0.193629 -0.869344 1.639212 1.730227 0.948292 -0.455234 4.912505 4.776799 -3.056508 -0.599442 -3.556424 1.367751 -6.112804 -4.993816 1.542398 0.544989 -1.523899 0.763140 1.030197 3.006590 -0.778027 1.041755 -0.372633 -1.482675 +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.767396 -0.024955 0.233914 -0.970144 1.203204 0.826730 0.629201 -0.093466 -1.185786 -0.851367 -0.180120 -1.305063 -1.087822 2.156795 -0.420733 1.294409 3.025000 0.980740 -0.205052 -0.112675 1.637521 -1.473621 2.389361 2.211267 -1.542470 -0.200037 0.712227 1.030587 -0.223255 1.510142 -0.344178 -1.809784 1.076408 -1.442527 0.370336 -1.979593 0.437934 0.600051 0.377024 -3.132274 0.322199 0.191972 0.206569 -0.509253 -0.610878 0.408035 2.024689 1.620127 -0.687442 0.436855 0.873643 0.260532 -0.177734 0.683741 0.278161 0.720406 -0.143560 0.069400 -1.247761 -0.264982 -0.398226 -1.704403 0.300714 1.422123 2.367999 -0.008785 0.261053 0.968078 -0.561184 0.458813 0.486921 0.152377 0.423596 -0.255630 1.058679 -2.193951 -0.814622 -3.735851 -0.736873 -4.542975 -1.158880 -1.040454 0.974998 0.100311 1.051381 -0.406295 1.859295 -0.216862 0.419215 1.400621 2.623759 -1.941991 -0.945429 -1.809375 -0.663694 0.759337 -1.200123 -0.370626 1.288869 -0.478686 -1.511382 -1.833567 1.085256 0.706025 -0.535647 -1.687898 -0.023455 1.826251 -1.902630 -1.638740 -1.687045 0.173397 -0.620893 -2.777264 0.634187 -0.782337 0.707375 0.650048 -0.428701 -1.989440 0.501399 1.608511 -0.420521 -1.382459 -0.296817 1.960135 0.383476 0.000820 0.646029 0.065677 0.099204 2.495092 1.997088 -0.839756 -0.325746 0.439115 -1.397326 -0.013690 -1.704486 -1.022985 0.921051 -2.090123 -0.143084 1.361427 -1.248791 -0.297429 1.381030 -0.209739 1.298705 5.172637 -0.148263 1.214620 0.733099 -2.287932 1.678451 -0.486563 -0.364096 0.380498 1.446519 0.417801 -2.685224 -1.534280 0.657372 1.749516 1.503895 -1.797384 -1.386533 -1.111365 0.358384 -0.008872 -0.173106 0.857873 -0.149907 -1.462533 -0.272928 0.936870 3.586601 -1.218905 -0.815597 1.009059 0.917939 -1.045569 -3.023357 -0.764371 -1.762522 -0.093157 -0.174724 -0.349142 0.689667 2.364583 -3.329360 1.745550 -0.782133 -0.354195 1.153723 0.117925 -0.940005 -3.135493 0.147026 1.877056 2.417183 -0.038729 0.782717 0.141780 -1.627515 -0.130807 0.092415 0.861774 -0.347731 0.786963 -0.367430 -1.760356 -1.341895 -0.017545 -0.522744 -1.263369 -0.054378 0.762877 1.351057 -2.929694 2.227666 -0.479346 -0.582413 0.967819 0.198505 1.568064 -1.886367 -2.567676 1.206452 -0.096535 -0.558358 -0.942380 0.258452 1.479323 0.027538 -0.549053 -0.214202 -2.740163 1.124699 -0.321122 1.178257 0.645681 0.452590 2.080861 0.712743 -1.134897 -1.886647 -1.103930 -0.389263 -0.943657 -1.063229 -1.096509 -0.319439 1.924227 2.183467 0.343662 -0.708095 -0.273558 2.330495 -1.989775 -0.519431 1.826554 0.773456 -1.109267 0.342319 1.976842 -2.338035 -1.081658 -0.944300 0.429693 -0.009223 -1.807625 0.398251 -1.127916 0.467669 0.606476 0.057933 -0.408591 0.728369 0.814839 0.268349 -0.484845 2.516064 2.054758 -1.390281 -0.098892 -1.363075 0.451575 -2.686156 -1.842330 0.294052 0.863576 -0.780020 0.552884 0.893961 1.190594 -0.317168 0.261534 -0.290626 -0.929170 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::move_backward(int*, int*, int*) = -0.427460 0.493612 0.937184 -0.916415 0.694403 0.039521 0.261986 -0.218323 -0.588263 -0.893125 -0.117490 -0.947651 -1.174247 1.179545 -0.600410 -0.173500 1.638801 0.394182 -0.210831 -0.597469 0.859140 -0.603783 1.524803 1.474287 -1.440474 -0.082571 0.784010 0.992338 0.697257 0.743583 -0.108054 -0.693168 0.396991 0.029356 0.764493 -0.887620 0.226770 -0.189571 -0.500547 -1.793637 0.062510 -0.105487 -0.035832 -0.096654 -0.086492 1.320885 1.508655 1.008174 -0.646183 -0.086326 1.023274 0.521590 -0.051558 0.308781 0.079988 -0.383593 0.778468 0.062939 -0.424194 -0.119908 -0.197284 -1.216497 0.025708 1.351610 1.581115 0.166458 0.157794 0.160165 -0.015201 0.414859 0.089281 0.343085 0.597937 0.589511 0.697772 -1.065725 0.151650 -2.564543 -0.243340 -3.429461 -0.759869 -0.931897 0.721600 -0.182428 0.016647 0.082048 1.372748 0.520053 0.380075 0.893705 1.774517 -0.725186 -0.407831 -0.846559 -0.741094 0.659875 -0.748798 0.323403 0.381864 0.342471 -0.893287 -0.732998 0.345669 -0.051800 -0.524696 -0.086012 -0.195945 1.005648 -1.348817 0.004149 -1.132365 -0.168187 0.289439 -1.942137 0.162506 -0.796700 1.429046 0.011683 -0.161185 -0.531468 0.153331 0.780689 -0.329203 -0.096035 -1.144900 1.194252 0.444998 -0.025331 0.086128 0.041618 0.322802 0.707685 0.977990 -0.588321 -0.387864 0.036343 -1.004636 -0.265283 -1.069620 -0.094358 1.308378 -0.825004 0.193211 0.529559 -0.694187 -0.820770 0.674992 -0.705986 0.916612 2.868282 -0.235767 0.735585 0.374599 -1.218362 0.433037 -0.080481 -0.383545 0.418677 0.869658 0.642217 -0.930758 -1.007494 0.573398 1.254820 0.765316 -1.093805 -0.272217 -0.315101 -0.141810 -0.328541 0.135483 0.308232 -0.563079 -0.624655 -0.387735 0.794255 1.381276 -0.326314 -1.094055 0.267618 0.456679 -0.219705 -1.022490 -0.176433 0.064840 0.181242 0.090676 -0.124162 0.749325 1.510875 -3.009897 1.092903 0.159572 -0.132312 0.707174 -0.197282 -0.514295 -1.695278 0.620723 1.281026 1.012341 0.082044 -0.083113 0.008677 -1.198430 -0.148479 0.129743 0.797546 -0.557530 0.554530 0.295239 -0.802664 -1.154918 -0.602566 -0.065391 -0.103523 -0.282361 0.540907 -0.028291 -2.660972 1.664650 -0.534085 -0.323359 -0.145938 -0.488718 0.532947 -1.413059 -1.439716 0.312760 -0.345983 -0.855098 -0.993747 0.066278 0.876580 -0.325957 0.163233 -0.678651 -1.266647 0.862751 -0.517862 0.645619 0.473256 0.724267 1.546198 0.308723 -0.292426 -1.173700 0.012400 0.392100 -0.430856 -0.823104 0.177190 -0.221381 0.784649 1.638061 -0.442305 -0.128168 0.258741 1.190231 -1.037141 -0.957100 0.736080 0.572087 -0.561576 0.849359 0.828756 -1.106823 -0.891118 -1.008930 -0.456449 -0.046407 -1.233853 0.427101 -0.768094 0.218471 0.793429 0.003102 -0.601569 0.768938 0.177385 0.093486 0.045715 1.271414 2.191918 -0.992589 0.297788 -1.113471 0.578171 -1.824543 -1.243817 0.298700 -0.149714 0.047212 0.143125 -0.183199 0.792894 -0.041248 -0.005854 -0.277635 0.080007 +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.823750 -0.122895 0.603487 -1.637682 1.443503 1.290942 0.547899 -0.823357 -1.416394 -0.472318 0.199290 -1.213102 -0.604869 2.154773 -0.793382 1.391769 3.136539 0.632900 -0.533303 -0.422806 2.071498 -1.126339 2.653137 2.648010 -1.967882 -0.249896 1.199444 1.411144 0.540856 1.248588 -0.746505 -1.330469 0.957863 -1.816698 0.031430 -2.142488 0.470146 0.393791 1.107751 -3.114234 0.386122 -0.878256 -0.620958 -0.406788 -0.661166 0.871449 2.018080 1.715485 -0.935557 0.466207 1.607371 0.569231 -0.593237 0.559509 0.254780 0.692453 0.727530 1.094084 -0.619889 -0.569189 -0.281736 -0.992698 0.572023 1.834682 2.710016 0.103654 0.274352 1.160885 -0.041166 0.263893 0.654417 0.250885 0.096690 0.186232 1.055408 -3.314919 -0.438896 -4.925876 -0.711548 -4.358271 -1.036771 -0.721775 0.524335 -1.198473 1.237694 0.154764 1.914862 0.007644 0.106581 1.535140 2.521669 -2.110752 -0.807408 -1.528097 -1.264670 0.579919 -1.157338 0.162241 0.908413 -0.270758 -1.484531 -2.049346 1.192112 0.908475 -0.667587 -1.661732 0.110328 1.704697 -1.716539 -1.576223 -0.988791 0.536847 -0.789293 -3.042374 0.065762 -1.689918 2.095870 0.051140 -0.430572 -2.322745 0.228021 1.967993 -0.580775 -1.424991 0.275435 1.774014 1.138783 0.405685 0.238074 -0.449719 0.301452 2.783845 1.894466 -1.138457 -0.292612 0.093500 -1.513689 0.124373 -2.092425 -0.647555 1.360833 -1.867514 0.218374 1.803714 -1.143254 -0.406326 3.056064 -0.132106 1.108223 7.083372 -0.085210 1.558308 0.957752 -2.413418 0.993289 -0.558399 -0.192939 0.754511 1.202546 0.301060 -4.071967 -1.701426 0.868620 1.802500 1.458074 -2.735015 -1.640365 -0.851665 -0.089399 -0.018576 -0.352241 0.587207 -0.562891 -1.359547 -0.466565 1.271709 4.079433 -1.148332 -1.168951 0.971300 0.873672 -1.475451 -3.273712 -0.870961 -1.525996 0.323071 0.431349 -0.207085 1.192420 2.465283 -4.621423 1.535996 -0.766842 -0.427032 1.270751 0.520927 -1.281356 -2.872354 0.306187 1.741889 2.331015 -0.047361 0.714372 0.596606 -1.719237 -0.118525 0.201321 0.629954 -0.568600 0.745207 0.474823 -1.990742 -1.422554 0.264380 -0.454039 -0.996926 -0.098830 0.989193 -0.131365 -3.951892 2.301269 -0.334084 -0.564435 0.996872 -0.484133 1.905503 -2.005079 -2.477157 1.420569 0.174763 0.103022 -1.209683 0.361291 1.597740 0.152498 0.494322 -1.032976 -3.265390 0.656021 -0.901059 1.230136 0.679827 0.459939 2.057041 -0.750174 -0.544648 -2.813671 -0.825988 0.234470 -0.058566 -1.586408 -1.135227 -0.324727 1.980170 1.971819 -0.013499 -0.737747 -0.091616 2.431029 -2.442387 -0.356672 1.395805 1.896063 -1.731855 0.216121 1.617322 -2.430260 -0.811304 -0.747370 -0.397082 -0.281949 -1.887514 0.876214 -0.467543 0.900856 0.415895 0.478847 -0.196264 0.956611 0.648916 0.668263 -0.006933 2.485921 3.339388 -1.236956 -0.620473 -1.684754 0.742267 -2.809219 -2.460597 0.765465 0.206533 -0.900553 0.444653 0.411051 1.818550 -0.117022 0.419447 0.046600 -0.501299 +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.043466 0.050924 -0.036748 0.060855 0.124219 -0.005998 0.073240 -0.016271 -0.073202 -0.136260 -0.029911 -0.137646 -0.136013 0.155537 -0.035210 0.163724 0.200689 0.113569 0.057694 -0.015362 0.001768 -0.162920 0.223858 0.152851 -0.063509 0.032332 -0.012753 -0.004134 -0.152180 0.203970 -0.050874 -0.254093 0.186272 -0.088728 -0.008837 -0.110478 0.004979 0.068491 0.012856 -0.217238 0.005736 0.077920 0.126649 -0.017780 -0.046712 -0.020588 0.157116 0.107801 0.079722 0.171742 -0.019368 0.014166 0.070825 0.101133 0.088809 0.092685 -0.031171 -0.293608 -0.192039 0.023037 -0.068633 -0.256073 -0.095030 0.064359 0.150329 -0.026260 0.013176 0.050177 -0.226831 0.051214 0.045775 0.021973 0.023582 -0.012880 0.024747 -0.052094 -0.039336 -0.050941 -0.153981 -0.384082 -0.116705 -0.113766 0.080775 0.213585 0.135524 0.078991 0.158446 0.005795 0.039421 -0.031742 0.230667 -0.229570 -0.108627 -0.010213 0.094939 0.017910 -0.115234 -0.051651 0.024584 -0.025186 -0.122466 -0.135065 0.184400 0.038842 -0.028183 -0.108183 -0.034694 0.114059 -0.317394 -0.171003 -0.239579 -0.118756 -0.065140 -0.156328 0.161279 0.114281 0.002668 0.151376 -0.054070 -0.167042 0.119760 0.096513 0.008265 -0.142277 -0.084818 0.072832 -0.071721 -0.008553 0.101265 0.056131 0.008499 0.284336 0.132594 -0.024333 -0.022269 0.033661 -0.031608 0.043396 -0.012270 -0.131244 -0.123790 -0.230807 0.071289 0.058904 -0.115875 -0.017135 -0.138855 -0.017318 0.091043 -0.091388 -0.040852 0.064707 0.043758 -0.200950 0.039239 -0.168643 -0.023917 -0.036696 0.132166 0.049318 0.123511 -0.108836 0.065097 0.132312 0.106147 -0.017987 -0.083960 -0.104649 0.153404 0.047724 0.019734 0.113487 0.042078 -0.136188 0.001461 -0.029821 0.270948 -0.102396 0.136401 0.115736 -0.061108 -0.003026 -0.172926 -0.067811 -0.122019 -0.024099 -0.059027 -0.012772 -0.093699 0.169213 -0.106847 0.165007 -0.147107 -0.046650 0.055499 -0.000505 -0.033524 -0.165859 -0.026418 0.134620 0.168612 0.022633 0.182624 -0.021515 -0.124951 -0.034847 -0.050222 0.101654 -0.028032 0.072579 -0.006837 -0.206629 -0.112303 0.009080 0.068617 -0.138042 0.023133 0.062058 0.352993 -0.241972 0.136301 -0.028139 -0.096272 0.093738 0.154555 0.133346 -0.120197 -0.177077 0.080864 -0.150963 -0.103492 0.030393 0.006750 0.035765 -0.054892 -0.166364 0.106984 0.004806 0.104656 0.098440 0.036312 0.051650 0.056391 0.124130 0.029990 -0.183559 0.041170 0.000861 -0.106499 -0.318201 0.049092 0.098047 -0.036030 0.166925 0.234619 0.158171 -0.066154 0.054385 0.157149 -0.099000 -0.013868 0.225729 0.058459 -0.001795 0.074628 0.193432 -0.140508 -0.116015 -0.041978 0.102531 -0.002709 -0.105362 -0.008692 -0.178287 -0.009956 0.085106 -0.016198 -0.102948 0.063420 0.019050 -0.014895 -0.109005 0.192951 -0.001051 -0.096020 0.092848 -0.052061 -0.049466 -0.173594 -0.082237 -0.011990 0.228951 -0.109903 0.028395 0.029694 0.036199 -0.033424 -0.011601 -0.067849 -0.137909 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = -0.514378 0.593023 1.155429 -1.100363 0.805357 -0.027378 0.313193 -0.225527 -0.710230 -1.117597 -0.140900 -1.191972 -1.465391 1.415112 -0.724968 -0.279408 1.951181 0.481886 -0.257513 -0.715499 0.984586 -0.715107 1.809110 1.765143 -1.719633 -0.100466 0.870206 1.222355 0.839635 0.893235 -0.064994 -0.831652 0.451794 0.156788 0.960087 -1.040043 0.274702 -0.218443 -0.701550 -2.149643 0.077303 -0.027838 0.039357 -0.115759 -0.073668 1.638527 1.805900 1.209423 -0.768492 -0.137464 1.215884 0.627519 -0.024749 0.372060 0.086343 -0.554915 0.947819 -0.004547 -0.532515 -0.133804 -0.237029 -1.501559 0.001521 1.622576 1.904713 0.212379 0.188591 0.124356 -0.011462 0.533577 0.109536 0.409056 0.749693 0.707442 0.824121 -1.139867 0.217690 -3.007121 -0.258118 -4.145445 -0.914937 -1.113407 0.956997 -0.094026 -0.069589 0.038243 1.643515 0.655348 0.453060 1.078686 2.133370 -0.791298 -0.490489 -1.007062 -0.891164 0.828859 -0.897433 0.388831 0.450602 0.486792 -1.070350 -0.794071 0.373351 -0.123152 -0.627006 -0.001156 -0.241123 1.198312 -1.632027 0.097467 -1.353882 -0.192159 0.441253 -2.326783 0.211812 -0.963376 1.634217 0.010114 -0.194550 -0.515766 0.185850 0.846827 -0.397750 -0.010565 -1.572737 1.456643 0.476787 -0.046884 0.096739 0.085842 0.382992 0.741932 1.087698 -0.712973 -0.464573 0.041020 -1.191766 -0.317968 -1.281719 -0.104809 1.605326 -0.966324 0.220549 0.553773 -0.832195 -1.027686 0.620855 -0.854948 1.099994 3.314505 -0.284302 0.881706 0.455169 -1.420327 0.545777 -0.057016 -0.459389 0.493561 1.038440 0.772244 -0.969811 -1.209149 0.691041 1.508235 0.918297 -1.241530 -0.252740 -0.340430 -0.168257 -0.418189 0.199348 0.370721 -0.684121 -0.742586 -0.469289 0.950943 1.567351 -0.319604 -1.313600 0.302398 0.559935 -0.221521 -1.148972 -0.182759 0.165242 0.211378 0.071051 -0.143412 0.895999 1.811441 -3.595535 1.328809 0.279761 -0.112392 0.853452 -0.301795 -0.617069 -2.083551 0.742728 1.538190 1.211229 0.091794 -0.143649 -0.002631 -1.438672 -0.183062 0.157557 0.960535 -0.670688 0.659380 0.325129 -0.903687 -1.385845 -0.808986 -0.088961 -0.065560 -0.379473 0.648974 0.025424 -3.136846 1.997760 -0.663315 -0.385226 -0.259647 -0.589422 0.575099 -1.693404 -1.703653 0.312786 -0.466054 -1.135826 -1.245916 0.082585 1.025120 -0.439100 0.168739 -0.789038 -1.450572 1.094347 -0.645789 0.767825 0.564253 0.869464 1.829284 0.537354 -0.344217 -1.350140 0.026974 0.477497 -0.566920 -0.970512 0.333026 -0.262445 0.894865 1.962506 -0.549937 -0.157319 0.335656 1.424735 -1.137416 -1.218774 0.881879 0.523903 -0.628240 1.085516 0.991961 -1.326208 -1.070074 -1.268135 -0.556441 -0.045716 -1.479881 0.510553 -0.915001 0.244774 0.962161 -0.017836 -0.763797 0.922534 0.215139 0.055086 0.065700 1.558594 2.576327 -1.163943 0.437808 -1.338555 0.688684 -2.184283 -1.451040 0.337780 -0.199706 0.082348 0.172300 -0.244513 0.925146 -0.045030 -0.012993 -0.372657 0.156076 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__miter_base(int*) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_wrap(int* const&, int*) = -0.094004 0.019219 0.230993 -0.225112 0.187042 -0.030752 0.085428 -0.093290 -0.252681 -0.122523 -0.046565 -0.124925 -0.094709 0.319760 -0.118501 0.192414 0.502530 0.239633 -0.038493 -0.218610 0.268158 -0.426262 0.432342 0.459415 -0.369990 0.034875 0.228867 0.286762 0.191823 0.338604 -0.233154 -0.057474 0.126169 -0.274716 0.177918 -0.444607 0.047246 0.115670 0.056593 -0.621531 0.040546 -0.138967 0.153557 -0.010648 -0.043617 0.287061 0.307364 0.264572 -0.109584 0.190091 0.261261 0.026773 0.061662 0.103396 0.112779 0.246852 0.360646 0.052262 -0.134540 0.045806 -0.037519 -0.415352 0.163016 0.303221 0.438937 -0.028649 0.034712 0.101136 0.004142 0.036669 0.142589 0.078950 -0.083405 0.017798 0.154701 -0.644639 0.168900 -0.779599 -0.105484 -0.950734 -0.224235 -0.250069 0.136642 -0.170907 0.214451 0.210247 0.384848 0.010318 0.109316 0.033402 0.362031 -0.385720 -0.129788 -0.150762 -0.141072 0.128338 -0.193763 -0.075030 0.194914 0.030762 -0.204689 -0.301452 0.407911 0.130580 -0.161329 -0.082359 -0.053898 0.307065 -0.446607 -0.331187 -0.336288 -0.085632 -0.163594 -0.420870 0.321795 -0.258513 0.419796 0.049303 -0.045832 -0.368465 0.058379 0.349028 -0.068463 -0.174062 -0.222270 0.316947 0.094680 -0.049694 0.044056 -0.072181 -0.024412 0.357065 0.381243 -0.209965 -0.104629 0.171709 -0.365863 -0.061602 -0.342645 -0.174113 0.262581 -0.349164 -0.045952 0.137273 -0.218569 -0.002949 0.525284 -0.026281 0.226708 0.785391 -0.013372 0.185301 0.124011 -0.341305 0.195407 -0.011175 -0.000115 0.199684 0.292826 0.058845 -0.512820 -0.296735 0.006983 0.318142 0.226080 -0.344711 -0.409065 -0.239731 0.004376 0.171450 -0.025376 0.059458 -0.148025 -0.212432 -0.066191 -0.015831 0.594363 -0.164054 -0.114908 0.060596 -0.085086 -0.346777 -0.633221 -0.106649 -0.265682 0.040668 -0.227608 -0.040820 0.129107 0.389632 -0.852524 0.348853 -0.277628 -0.134836 0.304871 -0.049532 -0.079772 -0.629323 0.058994 0.217252 0.411446 -0.041817 0.072536 0.153074 -0.337350 -0.038135 -0.075236 0.205007 -0.183565 0.176354 0.134165 -0.342014 -0.203292 0.014296 0.068804 -0.196446 0.049255 0.153905 0.064642 -0.706442 0.303600 -0.134490 -0.129007 0.287046 0.057879 0.140413 -0.368228 -0.332601 0.155942 0.097753 0.026009 -0.261081 0.000426 0.304311 -0.182946 -0.141232 -0.150793 -0.364421 0.067760 -0.219567 0.110135 0.159668 0.045596 0.345872 0.056895 -0.109158 -0.327838 0.201510 -0.248805 -0.238879 -0.077018 -0.127425 -0.094124 0.304681 0.510783 0.091867 0.101830 0.155542 0.455077 -0.362521 -0.187118 0.244811 0.236619 -0.112639 0.160108 0.258484 -0.418829 -0.233077 -0.140303 -0.137935 0.129883 -0.190660 0.258740 -0.250108 0.106671 0.118972 0.045783 -0.097718 0.255335 0.046769 0.056021 -0.063588 0.450504 0.573211 -0.193256 0.004564 -0.211116 0.067630 -0.436274 -0.177557 -0.066334 0.242864 -0.179586 0.138090 0.104633 0.295406 0.036230 0.005971 0.008597 -0.171667 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = -0.279607 0.268582 0.584499 -0.624184 0.541276 0.165171 0.196837 -0.244027 -0.461716 -0.440765 -0.092259 -0.458312 -0.560681 0.826646 -0.372879 0.182443 1.223202 0.342767 -0.131977 -0.456820 0.732051 -0.621916 1.121689 1.083287 -1.019258 -0.016066 0.715028 0.642595 0.494087 0.602565 -0.357677 -0.380918 0.338009 -0.433673 0.434376 -0.809042 0.140975 -0.053532 -0.011483 -1.357834 0.051182 -0.353136 -0.102175 -0.059660 -0.136141 0.781503 1.005409 0.701520 -0.433548 0.142094 0.729343 0.262068 -0.061490 0.221756 0.136831 0.165273 0.620840 0.280876 -0.261125 -0.052731 -0.126094 -0.825454 0.190995 0.903649 1.100068 0.040175 0.102416 0.297755 -0.003593 0.159476 0.130066 0.240752 0.200713 0.317774 0.508447 -1.284814 0.115784 -2.010344 -0.265162 -2.354445 -0.543514 -0.665308 0.277044 -0.503139 0.342067 0.289437 0.980631 0.206555 0.278677 0.475334 1.159376 -0.804180 -0.295496 -0.572750 -0.476164 0.351108 -0.521502 0.117039 0.371219 0.018160 -0.608633 -0.763142 0.540515 0.191308 -0.389080 -0.311501 -0.126085 0.752948 -0.949104 -0.415955 -0.830588 -0.171515 -0.157060 -1.304606 0.262196 -0.569157 1.191454 0.051551 -0.112157 -0.782035 0.111959 0.832041 -0.212817 -0.394282 -0.307577 0.803357 0.423792 -0.011215 0.092285 -0.097008 0.165565 0.822402 0.964468 -0.426725 -0.273833 0.139794 -0.809608 -0.179259 -0.791357 -0.182563 0.801043 -0.705741 0.074492 0.540457 -0.508601 -0.323804 1.127308 -0.361662 0.626751 2.319035 -0.127149 0.509769 0.260646 -0.947254 0.326699 -0.121875 -0.206392 0.373102 0.661454 0.375763 -1.180929 -0.719350 0.296986 0.865058 0.547808 -0.973297 -0.570789 -0.404903 -0.078931 -0.016694 -0.022269 0.198271 -0.361531 -0.479466 -0.235819 0.416529 1.310868 -0.451197 -0.683930 0.216204 0.148034 -0.431598 -1.142053 -0.223331 -0.327372 0.129492 -0.032325 -0.103765 0.490894 1.049414 -2.168462 0.764685 -0.290776 -0.269814 0.584574 0.000789 -0.322686 -1.203436 0.371137 0.811402 0.808190 0.040535 0.067783 0.129329 -0.849888 -0.090549 0.017180 0.542400 -0.406002 0.425458 0.291615 -0.759829 -0.736816 -0.137487 0.029539 -0.310993 -0.029094 0.384421 -0.117684 -1.969941 1.071079 -0.316166 -0.261688 0.292744 -0.217219 0.496136 -0.986686 -1.029621 0.398506 0.000377 -0.200049 -0.592744 0.024071 0.715206 -0.176808 0.042801 -0.519312 -1.076098 0.379235 -0.374015 0.435186 0.363746 0.406753 1.104635 -0.125680 -0.245073 -0.965346 0.107787 0.026162 -0.261756 -0.527326 -0.283869 -0.187895 0.710327 1.197885 -0.138571 0.024487 0.160758 0.929491 -1.025679 -0.482674 0.548164 0.802696 -0.464840 0.403669 0.609605 -0.857594 -0.616045 -0.499335 -0.330834 0.038731 -0.772180 0.396637 -0.585417 0.218688 0.471893 0.071514 -0.279362 0.565781 0.116089 0.207639 -0.043887 0.891667 1.662245 -0.721201 -0.021205 -0.720305 0.373945 -1.253064 -0.855349 0.161307 0.121179 -0.146111 0.161448 0.051107 0.659816 -0.003840 -0.010769 -0.058497 -0.199540 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_base(int*) = -0.082888 0.035499 0.140573 -0.180699 0.170458 0.005387 0.060224 -0.111594 -0.184242 -0.117649 -0.033199 -0.097570 -0.068164 0.248327 -0.124026 0.158790 0.373694 0.162927 -0.012243 -0.166038 0.200139 -0.270117 0.350023 0.338534 -0.280129 0.014195 0.196001 0.193517 0.116277 0.256583 -0.147379 -0.124391 0.120742 -0.197055 0.093735 -0.321973 0.046697 0.089600 0.068342 -0.438430 0.035755 -0.149504 0.075262 -0.005968 -0.051137 0.156774 0.239956 0.205530 -0.071934 0.156865 0.218310 0.112861 0.003806 0.088381 0.075191 0.172811 0.227174 -0.053458 -0.085201 0.012931 -0.034575 -0.266983 0.090257 0.245655 0.329401 -0.012743 0.041863 0.093464 -0.049611 0.038641 0.103973 0.052784 -0.073481 0.043558 0.089922 -0.482582 0.085411 -0.598020 -0.102276 -0.708646 -0.151172 -0.184763 0.056454 -0.086712 0.170224 0.219980 0.289349 0.030177 0.079415 0.059081 0.289446 -0.294407 -0.097914 -0.096638 -0.117516 0.086304 -0.149998 -0.027361 0.057013 0.053810 -0.153170 -0.258892 0.271472 0.099192 -0.112625 -0.120216 -0.035270 0.212323 -0.384903 -0.235432 -0.234837 -0.043911 -0.130565 -0.328960 0.187378 -0.192459 0.367818 0.018028 -0.033743 -0.301001 0.048888 0.282439 -0.050243 -0.142164 -0.124255 0.170261 0.085112 -0.021296 0.021157 -0.075089 -0.008336 0.333287 0.258318 -0.160979 -0.079493 0.098810 -0.228839 -0.051315 -0.245962 -0.110510 0.140578 -0.275478 0.047798 0.149958 -0.162325 -0.065405 0.363776 -0.068202 0.181596 0.571408 -0.023853 0.141241 0.102475 -0.289944 0.041435 -0.065767 -0.006103 0.131060 0.207782 0.049597 -0.293835 -0.229891 0.031866 0.231238 0.173643 -0.222343 -0.289086 -0.170458 0.005923 0.125884 -0.033475 0.049704 -0.146468 -0.164289 -0.060826 0.006486 0.447448 -0.091855 -0.004848 0.068385 -0.008358 -0.242287 -0.391213 -0.088832 -0.199844 0.050695 -0.081724 -0.032582 0.090752 0.303183 -0.657286 0.247341 -0.193337 -0.071113 0.138596 0.000711 -0.067670 -0.404620 0.054841 0.185238 0.292046 -0.050632 0.151591 0.109646 -0.248180 -0.032299 -0.048488 0.163079 -0.142394 0.113976 0.147637 -0.305897 -0.176560 0.069316 0.055143 -0.144165 0.038697 0.116272 0.063694 -0.589814 0.252756 -0.104585 -0.087936 0.207698 0.032161 0.177188 -0.283014 -0.255692 0.141677 0.043111 0.044006 -0.128603 0.014715 0.236398 -0.135085 -0.041089 -0.100130 -0.232360 0.021607 -0.110514 0.067490 0.108416 0.063429 0.251538 -0.129391 -0.063725 -0.243677 0.131389 -0.133791 -0.179945 -0.063333 -0.021487 -0.057874 0.241208 0.385344 0.070345 0.006156 0.161296 0.327172 -0.268661 -0.093190 0.182784 0.245632 -0.116413 0.114027 0.190996 -0.304232 -0.184311 -0.094887 -0.039145 0.074140 -0.170118 0.178363 -0.172933 0.090802 0.101416 0.056856 -0.094669 0.201504 0.042528 0.065987 -0.032965 0.308475 0.397600 -0.122956 0.000608 -0.162541 0.020748 -0.342959 -0.184475 -0.029871 0.157782 -0.124613 0.097953 -0.009193 0.241431 0.007369 0.079003 0.022015 -0.128247 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = -0.479063 0.046100 0.457175 -1.170073 0.923984 0.448012 0.368742 -0.520663 -0.914311 -0.401128 0.105331 -1.007672 -0.554794 1.279645 -0.535344 0.744776 1.886788 0.393321 -0.379853 -0.503158 1.151633 -0.440791 1.776239 1.624535 -1.403673 -0.063286 0.622281 0.779145 0.502479 0.562396 -0.448814 -0.683388 0.562443 -0.930387 0.278421 -0.970719 0.213697 0.073241 0.572171 -1.932180 0.233555 -0.392056 0.021264 -0.215614 -0.324000 0.661723 1.327808 1.140465 -0.518377 0.226133 1.148742 0.371103 -0.138461 0.356193 0.190178 0.309848 0.599949 0.231439 -0.434952 -0.382986 -0.158944 -0.661598 0.312365 1.311107 1.559228 0.112320 0.030183 0.654110 0.261940 0.218655 0.414298 0.321642 0.058127 0.315533 0.650718 -1.856525 0.058270 -2.753273 -0.367167 -2.979852 -0.862747 -0.595287 0.533837 -0.521540 0.692481 0.265306 1.431590 0.094479 0.194915 0.770852 1.592818 -1.278246 -0.536876 -0.886549 -0.726652 0.459870 -0.704251 0.169246 0.625672 0.095834 -1.036304 -0.931743 0.638605 0.420101 -0.543773 -0.718802 0.125544 0.979639 -1.094834 -0.820003 -0.812269 0.341300 -0.263417 -2.000793 0.176763 -0.849561 1.282831 -0.016013 -0.310179 -1.313539 0.106913 1.013338 -0.481138 -0.630482 -0.419280 1.047475 0.802721 0.205483 0.203689 -0.055779 0.316523 1.670749 0.990162 -0.824634 -0.253247 0.112121 -0.884028 0.004416 -1.085142 -0.437908 0.878637 -1.209635 0.281262 0.942159 -0.790277 -0.321282 1.480968 -0.143441 0.724422 3.642210 -0.150549 1.094534 0.684153 -1.373632 0.515240 -0.385258 -0.169161 0.439595 0.829692 0.324320 -1.758415 -1.180297 0.596477 1.306620 0.932717 -1.410599 -0.678269 -0.400834 -0.086070 -0.048735 -0.139746 0.346189 -0.302952 -0.832100 -0.311846 0.857857 2.194808 -0.586448 -0.698668 0.502150 0.566919 -0.539742 -1.496625 -0.536788 -0.899744 0.208237 0.211791 0.057084 0.822671 1.669961 -2.843251 1.086874 -0.307569 -0.239644 0.941181 0.228161 -0.830158 -1.625737 0.229404 1.075422 1.276035 -0.195339 0.267973 0.322220 -1.181894 -0.118367 0.104902 0.498484 -0.514798 0.537577 0.341465 -1.019415 -0.847243 0.023720 -0.193690 -0.433834 -0.049475 0.706139 0.043821 -2.531709 1.497018 -0.261117 -0.474486 0.487305 -0.525397 1.046404 -1.380459 -1.348068 0.740980 -0.006782 -0.106769 -0.639309 0.180680 0.991086 -0.142100 0.412082 -0.846218 -1.517024 0.679065 -0.410996 0.870027 0.556551 0.307742 1.173588 -0.480966 -0.339414 -1.317406 -0.314874 -0.051564 -0.085815 -1.035241 -0.372172 -0.309892 1.184379 1.467458 -0.176274 -0.349330 0.154032 1.247594 -1.546404 -0.435085 0.853218 0.972448 -1.015582 0.390771 1.015793 -1.331385 -0.556167 -0.698934 -0.276205 -0.175871 -1.152275 0.663509 -0.443960 0.518754 0.420983 0.088510 -0.169216 0.752351 0.294234 0.310048 0.074079 1.423309 1.929012 -0.702283 -0.270445 -1.226854 0.536679 -1.802172 -1.464792 0.493635 0.040607 -0.650683 0.213439 0.113362 1.225603 -0.070184 0.072204 -0.222476 -0.119823 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward::__copy_move_b(int*, int*, int*) = -1.264422 -0.905189 -0.090297 -3.334413 2.428530 1.564614 1.052371 -1.630299 -2.737673 -0.189826 0.921849 -3.169095 -0.451330 3.056072 -1.163828 3.036010 4.486144 0.597742 -1.376408 -0.674129 2.810283 0.286196 4.344100 3.749288 -2.886990 -0.245973 0.197979 1.300487 0.524702 0.376610 -0.818849 -1.837767 1.448153 -2.952389 -0.391122 -1.606997 0.499010 0.624127 2.960991 -4.174607 0.972093 -0.551201 0.544438 -0.835206 -1.073637 0.134443 2.528938 2.865110 -0.828472 0.599427 2.801762 0.768227 -0.436687 0.886048 0.408609 0.926534 0.507037 0.036890 -1.115354 -1.700123 -0.279232 0.036911 0.818901 2.886124 3.346179 0.387634 -0.265955 2.076434 1.342641 0.438768 1.585436 0.626196 -0.572961 0.253847 1.189915 -4.135694 -0.158141 -5.648519 -0.766156 -5.354834 -2.112539 -0.253988 1.559630 -0.596864 2.106833 0.182378 3.181902 -0.383794 -0.177586 1.907442 3.237178 -3.158223 -1.494357 -2.091847 -1.705615 0.871387 -1.409075 0.353608 1.642846 0.410637 -2.712963 -1.571139 1.044439 1.350661 -1.144939 -2.345291 1.147303 1.854653 -1.634366 -2.467467 -0.669801 2.425799 -0.711914 -4.703887 -0.147744 -1.966990 1.600300 -0.291500 -1.102724 -3.420204 0.077742 1.701535 -1.545202 -1.569766 -0.834760 1.974528 2.298083 1.085281 0.640517 0.098659 0.891554 5.051501 1.040246 -2.416090 -0.148233 0.011988 -1.143494 0.774237 -2.233827 -1.475527 1.139183 -3.207265 1.097811 2.514468 -1.895643 -0.266751 2.905219 0.800572 1.064320 8.831189 -0.217002 3.425571 2.389946 -3.022165 1.258770 -1.430000 0.026800 0.714043 1.471526 0.057778 -4.051603 -2.998541 1.759763 3.025167 2.452017 -3.132926 -1.132238 -0.374866 -0.104381 -0.134011 -0.622331 0.922356 -0.046758 -2.226620 -0.598048 2.575183 5.695588 -1.109549 -0.695293 1.634723 2.209880 -1.002073 -2.910177 -1.794901 -3.213490 0.523902 1.161244 0.713675 2.121331 4.099983 -5.444710 2.342014 -0.401211 -0.104421 2.357097 1.151080 -2.856179 -3.281897 -0.387451 2.051410 3.128402 -1.153492 1.075455 1.136194 -2.469755 -0.223896 0.441466 0.273141 -0.930182 0.964876 0.538849 -2.022088 -1.226150 0.708723 -1.081573 -0.923219 -0.108124 1.987090 0.693867 -4.673723 3.108510 -0.021598 -1.326401 1.296721 -1.725070 3.233056 -2.900180 -2.552479 2.105625 -0.004098 0.314157 -0.807965 0.813438 2.065547 -0.006359 1.874344 -2.127043 -3.225630 1.836469 -0.567682 2.582952 1.313243 -0.152155 1.370352 -1.911375 -0.700025 -2.686452 -1.980020 -0.411261 0.623047 -3.029439 -0.734281 -0.790794 3.058743 2.475903 -0.283514 -1.837597 0.135506 2.497955 -3.590063 -0.210660 2.051184 1.629556 -3.196467 0.317902 2.614822 -3.211644 -0.262110 -1.447942 -0.052538 -1.018749 -2.604864 1.753150 0.178893 1.734334 0.154621 0.175110 0.308659 1.478852 1.004934 0.716538 0.546087 3.530184 2.918671 -0.566395 -1.291093 -3.209879 1.158313 -3.921351 -3.843474 1.802847 -0.252486 -2.708528 0.433471 0.378841 3.486388 -0.317756 0.401532 -0.867291 0.201443 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__copy_move::__assign_one(int*, int*) = -0.170699 -0.082984 0.296186 -0.424067 0.319642 0.063832 0.144083 -0.218817 -0.449667 -0.103533 0.053891 -0.201853 -0.067653 0.511017 -0.203855 0.361541 0.744407 0.296656 -0.135241 -0.308779 0.511649 -0.505829 0.683046 0.701544 -0.577677 0.017563 0.329288 0.411206 0.355008 0.376584 -0.325506 -0.039927 0.221542 -0.537123 0.133365 -0.622062 0.089597 0.174341 0.261458 -0.856743 0.087894 -0.311596 0.061942 -0.028595 -0.104466 0.410450 0.395512 0.428931 -0.215176 0.304101 0.484896 0.023331 -0.002952 0.145331 0.139247 0.329674 0.470627 0.250058 -0.143078 -0.024539 -0.049517 -0.472474 0.264444 0.478960 0.668292 -0.032855 0.049316 0.232643 0.089838 0.049880 0.279443 0.105585 -0.136478 0.001213 0.274290 -1.032313 0.164717 -1.292946 -0.175817 -1.328810 -0.317239 -0.248364 0.223971 -0.427883 0.348545 0.309158 0.549583 0.022271 0.044966 0.168688 0.519105 -0.588709 -0.206057 -0.227794 -0.281863 0.174937 -0.303714 -0.024792 0.306170 0.035670 -0.337073 -0.460902 0.517817 0.236363 -0.236189 -0.246010 -0.028848 0.468700 -0.573972 -0.502975 -0.346196 0.023279 -0.246241 -0.678915 0.304610 -0.453357 0.752680 0.016803 -0.095743 -0.554938 0.048351 0.508394 -0.131250 -0.300997 -0.099670 0.422365 0.251376 0.055675 0.032954 -0.133221 -0.006033 0.622158 0.540257 -0.354688 -0.114832 0.169285 -0.483603 0.026225 -0.527195 -0.233310 0.418398 -0.498379 0.009412 0.277890 -0.317162 -0.047625 0.987486 0.054241 0.268373 1.413930 0.029784 0.384686 0.276016 -0.504469 0.219081 -0.057595 0.063186 0.353290 0.395630 0.009276 -0.900342 -0.471721 0.074104 0.482365 0.354814 -0.676675 -0.595911 -0.288955 -0.014559 0.200537 -0.081953 0.087694 -0.191890 -0.319471 -0.106986 0.107163 0.917509 -0.286470 -0.258291 0.124124 -0.039527 -0.508420 -0.928042 -0.207537 -0.394095 0.111316 -0.162002 -0.020490 0.266828 0.613686 -1.318555 0.469160 -0.374656 -0.152125 0.434576 0.067805 -0.249568 -0.837647 0.059668 0.275708 0.578423 -0.039510 0.090094 0.319821 -0.507414 -0.046751 -0.057307 0.203613 -0.239324 0.248669 0.232953 -0.454834 -0.299999 0.086307 0.049770 -0.249271 0.090134 0.290740 -0.077952 -1.116336 0.431247 -0.166841 -0.221694 0.399802 -0.015823 0.341338 -0.545377 -0.511121 0.305838 0.156915 0.072337 -0.405936 0.051648 0.450722 -0.162791 -0.038638 -0.298752 -0.621258 0.106440 -0.355489 0.230452 0.230476 0.019690 0.525285 -0.151053 -0.120474 -0.608487 0.217318 -0.222172 -0.192646 -0.252146 -0.281028 -0.121140 0.482727 0.648994 0.102385 0.055410 0.175848 0.664317 -0.658526 -0.231885 0.345550 0.559402 -0.276951 0.230004 0.379380 -0.640131 -0.240632 -0.169181 -0.249918 0.109936 -0.304528 0.441299 -0.202725 0.258816 0.079636 0.152684 -0.046343 0.372590 0.087342 0.157303 -0.035848 0.644607 0.998158 -0.299933 -0.136113 -0.384386 0.165116 -0.657951 -0.417354 0.033917 0.246945 -0.319541 0.194873 0.124881 0.538040 0.085831 -0.021800 0.006773 -0.154294 +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.304120 -0.053128 0.180379 -0.748405 0.653479 0.379324 0.250491 -0.529427 -0.691205 -0.176983 0.239926 -0.525341 -0.195881 0.879340 -0.366102 0.661309 1.188289 0.217221 -0.278658 -0.452673 0.970624 -0.369439 1.233955 1.082876 -1.016718 0.002960 0.706962 0.539407 0.582358 0.322736 -0.241549 -0.349896 0.446455 -0.958725 0.032950 -0.702829 0.133468 0.075371 0.725721 -1.256378 0.113373 -0.514878 -0.106089 -0.086301 -0.270024 0.283903 0.721712 0.763938 -0.412916 0.449546 0.960578 0.215489 -0.165252 0.211491 0.174752 0.326360 0.548803 0.414256 -0.152001 -0.260994 -0.072354 -0.360780 0.238807 0.895461 1.117351 -0.012838 0.035773 0.610137 0.138988 0.171043 0.376693 0.252870 -0.233952 0.197590 0.539651 -1.627478 -0.028224 -2.287183 -0.308017 -2.116361 -0.561564 -0.294219 0.270342 -0.841394 0.650846 0.669365 0.944977 0.102728 -0.058335 0.522904 1.011658 -0.867987 -0.337049 -0.395978 -0.544864 0.329735 -0.541706 0.222302 0.522613 0.031035 -0.658446 -0.830219 0.572973 0.415322 -0.417022 -0.708189 0.017327 0.711772 -0.787825 -0.742096 -0.390857 0.228505 -0.380216 -1.324732 -0.198178 -0.658698 1.214066 -0.013987 -0.182080 -1.015473 0.035122 0.776888 -0.247743 -0.642668 0.469978 0.403307 0.695274 0.345613 0.079212 -0.113534 0.237237 1.375835 0.810652 -0.544940 -0.120403 0.009102 -0.483389 0.212562 -0.740467 -0.283027 0.496073 -0.746994 0.411704 0.752065 -0.492616 -0.400802 1.594346 -0.066555 0.348343 2.685774 0.057010 0.792182 0.603405 -0.906008 -0.027314 -0.326539 -0.011092 0.500859 0.573950 0.113041 -1.221018 -0.795943 0.381790 0.877716 0.572443 -1.231574 -0.820899 -0.240948 -0.039774 0.078814 -0.132706 0.172408 -0.188749 -0.512483 -0.204095 0.596766 1.418851 -0.566289 -0.675988 0.334002 0.452941 -0.604512 -1.217625 -0.390642 -0.784441 0.240287 0.228835 0.032926 0.535330 1.080006 -2.212305 0.671990 -0.267565 -0.132070 0.610600 0.439467 -0.639576 -1.121580 0.197110 0.553189 0.762063 -0.146608 0.253348 0.422408 -0.863422 -0.075603 0.062858 0.195374 -0.368977 0.442029 0.300683 -0.635808 -0.617475 0.333117 -0.000828 -0.376583 0.120170 0.565593 -0.146490 -1.960124 0.862997 -0.208247 -0.420351 0.438807 -0.338391 0.891064 -0.924381 -0.943701 0.622375 0.053961 0.083922 -0.400844 0.108845 0.687252 0.120974 0.464616 -0.570908 -0.876047 0.253137 -0.392412 0.517646 0.399756 0.145266 0.855092 -1.056301 -0.215703 -1.093033 0.131792 0.003237 0.020892 -0.708505 -0.688961 -0.196806 0.835996 0.952558 0.008939 -0.284574 0.027010 0.916121 -1.367462 -0.233210 0.525003 1.230674 -0.740535 0.313470 0.595094 -0.906964 -0.240662 -0.308420 -0.317147 -0.114890 -0.684225 0.631940 -0.156895 0.457199 0.183174 0.141239 0.045031 0.609562 0.186501 0.403398 0.028470 0.764352 1.601469 -0.628346 -0.451625 -0.825410 0.306211 -1.186246 -1.100063 0.405695 0.030183 -0.535598 0.130751 -0.023647 0.931041 0.126490 -0.019556 -0.112299 -0.080750 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__compare(char*, char*) = -1.074610 -1.104562 -0.234250 -2.484600 1.419272 1.602762 0.807576 -1.287524 -2.684654 -0.394767 0.796579 -2.241689 -0.013176 3.036737 -0.756300 2.816465 3.646172 0.823955 -1.446750 -0.025664 2.998611 -0.978740 3.275670 2.958918 -2.011410 -0.221302 -0.094240 1.552287 0.541569 1.016552 0.055398 -0.866075 1.056944 -3.233821 -0.692018 -2.158808 0.534117 1.312989 2.059790 -3.781124 0.805223 0.159409 0.570974 -0.885530 -1.040851 -0.950178 1.505685 2.331721 -0.356644 0.649213 1.768004 0.244949 -0.317782 0.737798 0.664585 1.208770 0.027324 -0.395586 -1.050310 -1.193604 -0.178247 -1.052080 1.085128 2.204786 2.773504 0.276013 0.080632 1.898495 0.366015 0.466708 1.573942 0.224180 -1.509826 -0.386723 0.953115 -4.032489 0.122093 -3.641439 -0.539783 -3.863930 -1.400292 0.093507 1.517352 0.657816 1.925709 0.363898 2.308189 -1.003396 -0.536160 2.238782 2.540216 -2.546042 -1.163107 -1.923925 -1.371546 0.859532 -1.339720 -0.428406 1.101825 0.446417 -1.997150 -1.082251 1.136950 1.672639 -0.894004 -2.033067 0.657499 2.256676 -2.244059 -2.755830 0.078703 1.939822 -1.234782 -3.666258 -0.394123 -1.854622 1.104251 -0.027333 -0.802263 -2.855332 0.348420 1.740342 -0.422826 -1.646848 -0.502303 1.499833 1.006792 0.829839 0.311486 0.204859 0.272011 4.157742 1.194361 -1.494011 0.263896 0.288567 -0.921930 0.872739 -1.491768 -1.647809 0.104151 -2.922070 -0.330423 2.239221 -1.502018 -0.199549 1.876942 1.243104 0.812423 8.470517 0.324899 2.886489 2.159668 -2.497659 1.037290 -0.802393 0.135978 0.830988 0.965657 -0.205238 -4.280147 -2.362582 1.089051 2.429457 2.084679 -2.206474 -1.445287 -0.868706 -0.128669 0.600045 -0.483996 0.610390 0.015225 -2.143834 -0.532287 1.753798 4.943116 -1.158791 0.034648 1.635980 0.566627 -1.995710 -3.672884 -1.302106 -2.405395 0.400432 0.132883 -0.103088 1.292197 3.190615 -3.075184 2.329326 -0.861820 -0.046268 1.886480 0.598230 -2.232348 -3.339734 -1.001059 1.504215 2.988937 -1.335091 0.589225 1.134821 -2.211208 -0.204795 0.489945 -0.056321 -0.459968 0.967050 0.164087 -1.350245 -1.215684 1.317042 -0.837124 -0.873755 0.183041 1.537748 0.319682 -2.252621 2.263756 -0.048891 -0.873616 1.429763 -0.356388 2.504040 -2.312882 -2.475002 1.973002 0.488166 -0.298315 -0.908161 0.520269 2.002716 0.738110 -0.196980 -1.213160 -2.465125 1.169330 -1.048844 1.864135 0.983973 -0.340887 1.326065 -0.499544 -0.642102 -2.343874 -1.422045 -1.346370 -0.020528 -2.229346 -1.820441 -0.519686 2.780796 1.864634 0.424510 -1.736322 0.592933 2.899271 -2.313063 -0.664590 1.768374 0.827012 -2.771540 0.072638 2.230637 -3.030743 0.013377 -0.889871 0.140640 -0.489056 -1.854930 1.646075 0.446594 1.604078 -0.113119 0.484435 0.298875 1.036725 1.212006 0.800748 0.314227 3.399727 1.755471 -0.441073 -1.306068 -2.281492 0.694165 -3.001630 -2.723572 1.005629 1.345459 -1.897655 0.634259 0.861634 2.877712 0.544750 0.032621 -0.031778 -0.334828 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -2.972349 -2.318641 0.100082 -7.585579 4.858437 5.572542 2.490622 -3.740026 -8.019076 -2.272285 3.339337 -9.608553 -2.474419 9.043802 -3.279652 6.159674 11.265736 1.065079 -4.219824 -0.798705 8.171679 -0.157387 11.565409 9.989766 -7.406398 -0.805359 -0.925667 4.216808 2.468387 1.950471 1.312032 -4.911073 3.716990 -6.971050 -1.798631 -4.438416 1.615164 1.755816 5.390061 -11.143101 1.889307 1.443729 -0.216120 -2.345228 -2.198305 0.337508 6.364754 7.225785 -1.292983 1.648295 6.736638 1.758932 -1.134263 1.934490 1.337085 -0.153299 1.041374 -1.781370 -3.431518 -3.682384 -0.478263 -2.501530 0.754342 7.659556 9.559444 1.216874 0.036867 4.441629 1.337641 1.769527 4.370833 1.257666 -1.099750 1.169738 3.577808 -8.800956 -0.610022 -12.116825 -1.614370 -13.801733 -4.801518 -0.085955 6.325699 2.137616 3.798609 -1.277389 7.299032 -0.992933 -1.864636 8.276418 9.414375 -6.657148 -3.812935 -5.577584 -4.182487 2.954513 -4.744700 1.300678 2.719606 1.876613 -6.715304 -2.874487 2.177740 3.339497 -2.848500 -5.477700 1.837160 6.248178 -6.424858 -5.066545 -0.228914 6.620240 -0.906622 -12.668763 -3.909556 -5.528414 3.977366 0.134532 -2.477778 -6.305393 0.757192 3.723362 -2.074828 -3.462878 -3.035068 5.552425 4.820068 3.554432 0.748929 1.855089 2.701453 12.028806 1.861156 -4.493143 0.619225 -0.631754 -2.147293 3.293988 -4.845073 -3.325123 2.170567 -6.975364 1.405138 6.317894 -4.420214 -2.551958 3.366837 2.480059 2.418780 26.522511 0.700417 9.952346 7.016290 -7.719632 2.605295 -3.328510 0.000801 1.874616 2.685880 0.330455 -11.503965 -7.170189 4.816699 7.894048 5.856192 -8.321155 -0.365458 -0.480961 -0.378070 -1.140408 -0.348738 2.353672 0.166781 -5.987982 -1.782569 7.858234 15.738732 -2.851225 -1.450264 4.345999 3.325881 -2.924467 -7.925801 -3.211341 -3.279508 1.751002 3.096295 0.904128 4.807361 10.020241 -11.966021 6.586395 0.126137 0.555635 5.784347 2.549680 -8.210322 -8.230603 -1.491607 5.455215 8.212609 -1.939661 1.499688 2.800165 -6.942110 -0.622335 1.961673 -0.010551 -1.375301 2.781336 0.990271 -3.900881 -4.818338 0.999079 -2.926774 -0.677531 -1.638263 4.983069 1.155783 -10.525117 8.157987 -0.078645 -3.117628 0.368532 -3.540847 8.266705 -7.745305 -7.584418 4.884951 -1.501112 -4.076738 -3.719224 1.245396 4.466398 2.045788 3.629924 -4.769143 -8.242446 6.439092 -2.857958 6.284071 3.130988 -0.153573 4.720671 -2.072555 -1.821063 -7.539938 -6.479853 0.926599 0.621407 -8.407630 -0.877267 -1.664185 7.355691 5.517690 -0.732084 -6.946355 0.278448 7.836455 -7.364487 -2.730073 4.952285 4.562826 -8.827917 1.761121 6.280962 -8.875840 0.442167 -4.026019 -1.219851 -2.908730 -6.867416 4.288565 1.384114 4.852794 0.415887 1.486001 -0.235256 3.068765 2.442255 1.250834 1.520807 10.402131 8.581793 -2.302542 -2.285301 -8.542950 3.598372 -9.848657 -10.880302 4.546195 0.355608 -5.616346 0.922962 1.130148 8.543287 1.960938 -0.548588 -2.060416 1.805999 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = -0.593954 -0.153606 0.530756 -1.696903 1.531609 1.303306 0.754270 -0.317192 -2.118267 -0.955393 0.530963 -2.739777 -1.349590 2.539981 -0.739202 1.084115 3.262244 0.587712 -0.862819 -0.143871 1.515689 -0.170426 3.042560 2.704540 -1.913140 0.060675 -0.493474 0.940889 -0.052358 1.409303 -0.005960 -2.144156 0.993815 -0.956343 -0.075550 -1.133864 0.100025 0.171677 0.519751 -3.376248 0.440366 1.296872 0.058194 -0.640777 -0.233380 0.388212 2.293910 1.803842 -0.149686 0.566523 1.267231 0.424714 0.031057 0.550346 0.751045 0.021692 0.500559 -0.822759 -1.470696 -0.545205 -0.406910 -1.206340 -0.344999 1.915804 2.436648 0.277426 -0.178563 0.433229 -0.104278 0.564286 0.923733 0.395701 0.402313 0.385351 0.962814 -1.076322 -0.225910 -2.504228 -0.363728 -4.163848 -1.592202 -0.437887 2.294559 1.348391 0.611941 -0.999344 2.184976 -0.443452 -0.127600 1.833076 2.940551 -1.678928 -1.146352 -1.491726 -0.880980 0.783414 -1.177209 -0.014217 0.709854 0.163103 -1.977820 -0.737941 0.735643 0.497593 -0.746524 -0.684075 0.313154 1.915716 -2.168263 -0.974602 -0.971518 1.426674 0.228867 -3.302121 -0.955124 -0.787723 0.439783 0.586962 -0.984850 -1.363834 0.683663 0.829994 -0.806508 -0.609987 -1.416187 2.031816 0.721150 0.668842 0.439147 0.667966 0.813136 2.662880 0.779476 -1.090093 0.220900 0.013620 -0.469942 0.650411 -1.064051 -0.889249 0.123621 -1.853693 0.376743 1.220813 -1.403632 -0.518753 -0.676158 0.435405 0.783511 6.023503 -0.304358 2.466344 1.332843 -2.199804 1.223099 -0.670228 -0.307162 0.068344 1.065452 0.548308 -2.115484 -1.759089 1.397025 2.343495 1.627156 -1.977281 0.412655 -0.281271 0.061423 -0.322702 0.414076 0.693381 0.360304 -1.679889 -0.519773 1.678989 4.267092 -0.749988 -1.421377 1.013826 0.661102 -0.117796 -1.574474 -0.576765 -0.480506 0.330699 0.693247 -0.045207 1.193635 2.771734 -3.516356 2.138798 -0.061276 -0.360381 1.875676 0.328168 -1.739201 -2.026208 -0.491304 1.753559 2.615237 0.093086 0.064467 0.266927 -1.903715 -0.278917 0.413777 0.429368 -0.504255 0.960678 0.078918 -1.388433 -1.290306 -0.815571 -0.625435 -0.223385 -0.917197 1.160196 0.945452 -3.377874 2.398866 0.186157 -0.749627 -0.179557 -0.477829 1.693898 -1.997139 -2.364453 0.968217 -0.811173 -1.900517 -0.855466 -0.034185 1.022850 0.470814 0.652678 -0.990942 -2.225665 2.301203 -0.298910 1.975774 0.961803 0.103793 1.694061 0.884394 -0.887966 -1.319104 -1.949466 0.818491 -0.665508 -1.688196 0.335198 -0.760834 1.833841 1.798602 -0.009224 -1.591436 -0.670579 2.205960 -1.538334 -0.679102 1.707999 0.254502 -1.707351 0.750372 2.061460 -2.208914 -0.291584 -1.406577 -0.273306 -0.875846 -1.706162 0.777696 -0.347099 0.863331 0.479488 0.066710 -0.711001 0.599897 0.381818 -0.217838 0.150412 2.901165 2.067913 -1.057760 0.491460 -2.103674 1.175525 -2.666893 -2.543018 0.803221 0.019250 -1.482839 0.110904 0.239881 1.705537 0.258499 -0.284695 -0.820166 0.474394 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -1.146331 -1.169096 -1.144276 -1.479345 1.964303 1.301459 1.216678 -0.860518 -2.870253 -0.071160 0.716227 -2.570075 -0.668566 3.424229 -0.282865 3.424309 4.747363 1.235754 -1.043530 0.020683 3.717236 -2.375359 4.346641 3.735763 -1.860994 -0.096214 -0.137257 0.736204 -0.495779 1.195956 -0.731924 -1.692174 1.969375 -4.588168 -0.551112 -2.601380 0.400035 1.362442 3.323182 -4.703181 0.686114 0.463087 0.938484 -0.923155 -1.283901 0.762494 1.807814 2.474789 -0.633850 1.437820 2.064077 -0.900498 -0.034848 1.026756 0.869952 1.529915 -0.346766 1.185826 -1.991436 -0.930640 -0.584385 -1.671596 0.691598 1.805561 3.842030 -0.064982 -0.061066 2.139014 -0.296565 0.550743 1.451398 0.245698 -0.120792 -1.113574 1.601796 -4.295717 -1.146851 -6.231799 -1.273455 -7.516708 -1.737900 -0.177730 1.959411 -0.862204 2.261458 -0.113827 2.632893 -0.698928 -0.502175 2.494014 3.260989 -3.311705 -1.663955 -2.043739 -1.007442 0.709103 -1.558260 -0.440714 3.787637 -0.819460 -2.532443 -2.116134 2.126562 1.546987 -0.754014 -3.203312 0.515955 2.495605 -2.129728 -3.193506 -1.253185 1.357506 -1.287723 -4.604075 0.807028 -1.192586 0.916202 1.033443 -1.191535 -3.075290 0.776318 1.557653 -0.870031 -2.410481 1.011599 2.813597 1.076109 0.975179 1.013767 0.270737 0.281036 5.273577 1.949259 -1.639310 0.196033 0.358971 -1.772216 1.305100 -2.148173 -2.262340 1.390599 -3.513503 0.804525 1.526684 -1.868406 0.206538 3.879976 1.254749 0.863897 8.745993 0.172008 3.760610 2.136851 -2.905572 2.984186 -1.194079 0.157404 0.730818 2.026095 -0.284317 -4.972315 -2.508214 1.338174 2.721524 2.338393 -4.366539 -2.496173 -1.167935 0.723971 0.387928 -0.385918 1.216783 0.560931 -2.211606 -0.247179 1.873643 6.999809 -2.282538 -0.054567 1.838407 1.122685 -1.691114 -5.857680 -1.551442 -3.531252 0.032275 -0.341321 -0.054230 1.064068 3.520809 -4.966988 2.585761 -1.767082 -0.393123 2.694540 1.374247 -3.192907 -5.402278 -0.836663 1.706855 4.015306 -0.099799 0.677280 0.933829 -2.339036 -0.167003 0.113547 0.183077 -0.305695 1.290185 -0.905417 -1.680528 -1.289053 0.937662 -0.837373 -1.830642 0.569422 1.637815 1.902495 -4.644838 2.303754 -0.080039 -1.253331 1.309158 0.517529 2.599503 -2.242103 -3.193816 2.032561 -0.205697 -0.397425 -1.440599 0.505263 1.678606 0.633743 -0.254235 -0.497106 -4.230908 2.208819 -0.995050 2.294109 1.069896 -0.365285 2.092169 -0.382448 -2.001287 -3.512732 -1.401090 -1.412367 -1.152196 -2.615030 -1.727054 -0.574028 3.143785 2.192431 1.226775 -1.935401 -0.392833 3.772532 -3.335972 -0.452171 2.860262 2.214640 -2.850556 0.385538 3.095316 -3.922345 -0.334449 -0.962199 0.063223 -0.597998 -1.914438 1.096503 -0.439238 1.120138 -0.248489 0.201444 0.483672 0.966171 1.231493 0.657831 -0.545361 4.492039 3.327610 -1.764593 -1.051915 -2.364305 0.808903 -3.226620 -3.634095 1.001880 1.985290 -2.728896 0.625321 2.320377 3.081824 -0.110360 -0.628478 -0.803588 -0.877329 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = -0.370781 -0.191805 0.451054 -1.032963 0.779248 -0.012043 0.419842 -0.084829 -1.223303 -0.794201 0.454427 -1.558865 -0.978417 1.459500 -0.502642 0.336553 1.919839 0.332512 -0.433657 -0.482639 1.073461 -0.661158 1.830547 1.754364 -1.429304 -0.029857 0.022269 0.847980 0.541540 0.471039 0.236623 -0.878796 0.499083 -0.547270 0.369084 -0.745523 0.215147 0.094233 0.158060 -2.080521 0.173111 0.537951 0.273770 -0.214193 -0.146388 1.308717 1.229630 1.151759 -0.629992 0.484761 1.312154 -0.012164 0.027420 0.275213 0.122247 -0.543605 0.452869 0.142207 -0.816108 -0.162887 -0.117044 -1.136073 -0.019796 1.258094 1.815660 -0.002305 0.010230 0.266739 0.156220 0.498539 0.628479 0.269310 0.445100 0.121011 0.903986 -0.957803 -0.174054 -2.899197 -0.191908 -4.067103 -0.956341 -0.366157 1.773158 0.095467 -0.026250 -0.301290 1.355739 0.278320 -0.084231 1.396519 1.715340 -0.653785 -0.727451 -0.855480 -0.798854 0.782649 -0.850512 0.205014 1.010578 0.450670 -1.138866 -0.344487 0.440097 0.048984 -0.491863 -0.340216 0.005956 1.059484 -1.395487 -0.234054 -0.744424 0.618046 0.542015 -2.209278 0.018517 -0.713380 0.945638 0.285413 -0.431699 -0.210702 0.165766 0.258661 -0.523820 0.047056 -1.205861 1.373841 0.401908 0.550186 0.271136 0.368617 0.503251 1.135864 0.568188 -0.814035 -0.131780 0.051995 -0.650345 0.408002 -0.975771 -0.528306 1.259682 -1.049542 0.526077 0.152471 -0.814197 -0.841460 0.488851 0.028156 0.548639 3.344495 0.039877 1.537431 0.835746 -1.061792 0.824656 -0.233560 -0.050752 0.449740 0.878538 0.153142 -0.875484 -1.090414 0.728948 1.423387 0.924791 -1.602958 -0.256851 0.042407 0.020885 -0.183208 0.200215 0.438882 -0.083519 -0.794304 -0.283728 1.086912 2.051871 -0.268071 -0.868143 0.334382 0.775254 -0.207648 -1.332737 -0.197132 -0.218023 0.287989 0.172005 0.085716 0.818884 1.666641 -3.248045 1.224790 0.204887 0.199421 0.929048 0.167225 -1.231330 -2.431445 0.092395 0.906850 1.452039 0.161671 -0.122473 0.427236 -1.198739 -0.103228 0.193965 0.285699 -0.384233 0.603574 -0.128172 -0.486985 -0.938379 -0.578940 -0.386848 0.144310 -0.354041 0.752996 0.449272 -2.693870 1.346747 -0.412561 -0.665045 -0.421102 -0.368721 0.813756 -1.398999 -1.377854 0.322965 -0.612592 -1.406514 -1.196961 0.000390 0.554983 -0.133697 0.211221 -0.447203 -1.417642 1.400594 -0.723018 1.005695 0.582239 0.037059 1.413131 0.512323 -0.468902 -1.192009 -0.394378 0.443675 -0.698392 -1.088481 0.394694 -0.291378 0.855507 1.190204 -0.140209 -0.661911 0.055197 1.426984 -0.970958 -0.994070 0.927834 0.327835 -0.785368 1.098996 1.098359 -1.607911 -0.170076 -1.182765 -0.417961 -0.222052 -1.018593 0.633268 -0.244443 0.497767 0.274294 0.138273 -0.369393 0.635210 0.204405 -0.078161 -0.020827 1.891299 2.203129 -0.972063 0.267994 -1.449508 0.691676 -1.720071 -1.684508 0.394478 0.119826 -0.598954 0.196178 0.123862 1.082049 0.219808 -0.427103 -0.702690 0.627314 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -3.185603 -2.487998 -0.788500 -6.989121 4.970319 6.786364 2.464709 -5.435539 -7.114994 -0.672180 4.017292 -8.137001 -1.677168 8.465058 -3.728254 7.000114 9.969113 0.597379 -4.726800 -0.979247 8.252331 1.517927 11.285063 9.498690 -7.528444 -0.916352 0.493785 3.394806 3.489487 0.832381 0.403022 -3.625389 4.673640 -7.891261 -2.716975 -3.762531 1.518533 1.205777 6.878698 -9.514573 1.658016 -0.840478 -0.905196 -1.840880 -2.470559 0.607757 5.525230 7.154033 -1.263343 2.151318 6.802982 1.875663 -1.447705 1.830988 1.143558 0.253711 1.321057 0.097255 -2.242977 -4.730931 -0.505365 -1.075646 0.582978 7.855799 9.208297 1.197291 0.119649 5.254867 1.665534 1.630725 4.265643 1.656235 -1.575142 1.836375 3.435626 -9.089932 -0.361316 -11.284144 -2.294018 -11.742520 -3.886853 0.311153 4.373171 -0.832086 5.000542 0.552382 7.392680 -0.186170 -2.660436 6.996035 8.778906 -7.518294 -3.449976 -4.256944 -4.055593 2.249184 -4.873949 2.594569 2.722868 1.297217 -6.563012 -3.799313 1.042160 3.926742 -2.990716 -5.536021 1.624250 5.493636 -5.846542 -5.172878 0.586925 5.163299 -1.959644 -12.455177 -4.484407 -5.448007 5.554874 -0.485118 -2.320212 -7.183418 0.449884 4.438181 -1.663912 -4.662796 0.468160 3.791094 5.549464 4.140565 0.323400 1.123591 2.770452 12.817301 2.280249 -4.503781 0.612109 -1.421562 -1.700667 4.004326 -4.437657 -2.672305 1.962301 -7.234059 2.459332 7.260147 -4.043481 -2.226713 5.794665 2.552740 1.828858 24.735706 0.732308 9.351051 6.910738 -7.787718 0.232706 -4.182647 0.515278 2.645386 2.375365 0.103884 -10.812937 -7.062879 5.066023 7.879385 5.387545 -8.890338 -0.639546 -0.177333 -0.306891 -1.648015 -0.835742 2.229686 -0.124840 -5.471105 -1.798271 7.681722 13.656816 -4.001121 -1.771864 4.356534 3.264105 -2.746416 -6.657723 -3.722125 -3.966561 2.226767 4.191936 1.391067 4.714478 9.660643 -10.687203 5.920349 -0.160949 0.312151 5.279532 3.361727 -8.072757 -4.894280 -0.824055 4.706149 6.322690 -1.941521 0.953355 3.511548 -7.076353 -0.644522 2.140509 -0.347139 -1.587286 2.852879 2.561434 -3.608075 -4.982050 2.358426 -1.530902 -1.434280 -0.795067 5.510562 -1.230992 -10.955079 7.513377 0.097177 -3.869378 1.079514 -3.925310 8.005740 -7.606806 -7.371046 5.381022 -1.134685 -2.261504 -2.935230 1.572000 4.512430 3.171862 4.734117 -5.830392 -7.524786 4.853468 -2.600395 5.954812 2.994461 0.266168 4.603458 -6.129620 -1.536270 -8.053130 -5.155925 0.990910 1.785144 -8.386746 -2.029041 -1.359564 7.658922 5.304757 -0.755233 -6.342686 0.374648 6.898642 -8.335674 -1.874034 4.356383 7.236783 -8.745260 1.258299 5.418657 -7.729102 0.647520 -2.747680 -2.031192 -3.372750 -6.727720 4.959311 1.738005 5.467593 0.037243 2.000184 0.744021 3.480375 2.138610 2.281123 2.131552 8.582061 8.276736 -2.620038 -3.556363 -8.646696 4.017952 -9.661160 -11.068854 5.673493 -0.521823 -5.190605 0.614743 0.216388 8.675193 2.073607 -1.414963 -1.838037 1.713115 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = -0.780064 -0.570336 0.352133 -1.947548 1.617543 1.468746 0.803648 -0.997987 -2.281388 -0.452373 0.902419 -2.304786 -0.775975 2.606863 -0.918487 1.677507 3.221624 0.597570 -1.158572 -0.420700 2.065310 -0.182544 3.214526 2.892076 -2.158422 -0.017452 0.028816 1.010243 0.655859 1.012570 -0.346811 -1.371652 1.271936 -1.863798 -0.396400 -1.404220 0.194560 0.359649 1.402216 -3.233886 0.518852 0.175763 -0.112330 -0.535568 -0.475189 0.710015 1.919639 1.987278 -0.368721 0.902515 1.724669 0.321173 -0.191182 0.581408 0.702897 0.388766 0.783090 0.131979 -1.033709 -0.882103 -0.363888 -0.906280 0.080036 2.132369 2.634096 0.219155 -0.101350 0.981526 0.287910 0.501771 1.239799 0.451877 -0.069768 0.270763 1.064936 -2.276431 -0.075281 -3.428602 -0.621103 -4.296362 -1.409534 -0.166202 1.859100 -0.120831 1.151492 -0.130081 2.291303 -0.251888 -0.509596 1.711512 2.727530 -2.138135 -1.118604 -1.199317 -1.116024 0.660269 -1.296250 0.304146 1.017134 0.154459 -2.000928 -1.125441 0.798089 0.879186 -0.861987 -1.099774 0.368932 1.916454 -2.104096 -1.408721 -0.533450 1.340061 -0.280632 -3.440034 -0.801514 -1.315219 1.549701 0.228346 -0.962477 -1.862943 0.477497 1.238268 -0.765402 -1.071109 -0.337687 1.637546 1.130051 1.009716 0.231109 0.271199 0.689610 3.201100 1.092691 -1.384605 0.210803 -0.117202 -0.651956 0.976279 -1.341911 -0.926002 0.545259 -2.090210 0.606943 1.558067 -1.391698 -0.486617 1.298743 0.731724 0.613735 6.547088 -0.076078 2.608849 1.641123 -2.275507 0.640694 -0.859253 0.083564 0.657290 1.114605 0.179033 -2.796573 -2.008230 1.387616 2.417606 1.681417 -2.666684 -0.345554 -0.325953 -0.006722 -0.149101 0.039915 0.598068 0.129235 -1.666446 -0.557325 1.683190 4.198531 -1.132452 -1.324923 1.056598 0.620547 -0.667153 -2.098937 -0.902615 -0.995217 0.588138 0.800799 0.124575 1.365307 2.903439 -3.951581 2.054000 -0.458304 -0.311281 1.851248 0.766254 -1.977383 -1.960417 -0.428692 1.435310 2.397509 -0.083713 0.050349 0.913143 -2.102681 -0.266653 0.395777 0.213193 -0.610021 0.990782 0.614218 -1.365921 -1.303214 -0.045934 -0.332937 -0.442400 -0.390188 1.487669 0.026565 -3.865583 2.202308 0.079256 -1.011743 0.345834 -0.610450 1.954613 -2.120139 -2.358385 1.339258 -0.382801 -1.078799 -1.036455 0.216628 1.319809 0.568952 0.936879 -1.401326 -2.390881 1.741438 -0.718833 1.936962 0.979967 -0.011449 1.802475 -0.596505 -0.678120 -2.011323 -1.283005 0.455852 -0.245529 -1.916028 -0.342273 -0.637734 2.129794 1.798022 0.078243 -1.400975 -0.270699 2.324170 -2.269922 -0.570935 1.609057 1.546081 -1.964675 0.761137 1.925145 -2.367567 -0.143105 -1.013803 -0.703221 -0.843717 -1.682314 1.376772 0.042997 1.313863 0.117980 0.474300 -0.182539 0.936408 0.441547 0.313935 0.348408 2.748881 2.811618 -1.113254 -0.342914 -2.263000 1.262950 -2.789915 -2.808588 1.143604 0.075925 -1.658172 0.232268 0.150841 2.246562 0.431348 -0.475173 -0.634315 0.445457 diff --git a/src/test-suite/oracle/FA_llvm16_onDemand/ir2vec.txt b/src/test-suite/oracle/FA_llvm16_onDemand/ir2vec.txt new file mode 100644 index 000000000..26054fc89 --- /dev/null +++ b/src/test-suite/oracle/FA_llvm16_onDemand/ir2vec.txt @@ -0,0 +1,269 @@ +PE-benchmarks/channel-assignment.cpp__main = -0.484014 -0.349485 1.090927 -1.946824 1.256646 0.467230 0.601797 -0.149534 -2.271602 -0.476911 0.295161 -2.110947 -0.672784 2.377218 -0.528822 0.815284 3.089810 0.920046 -0.979929 -0.309519 1.520699 -1.072587 2.210760 2.428770 -1.653411 0.163541 -0.303636 1.105032 0.245482 1.861940 -0.821834 -1.140639 0.242383 -0.814068 0.480930 -1.643903 -0.036724 0.471258 0.348175 -3.332197 0.624245 1.148187 0.971549 -0.670761 -0.113887 1.016299 1.863884 1.509817 -0.408117 0.266691 1.199653 0.040807 0.130749 0.387288 1.060539 0.666690 1.676414 0.558873 -1.209726 -0.226662 -0.412264 -1.037307 0.437149 1.678521 2.142703 0.250760 -0.191769 0.018933 0.491637 0.424273 0.959274 0.199328 -0.004195 -0.060371 0.732470 -1.424059 0.595038 -2.905924 0.081979 -4.238448 -1.258831 -0.239610 2.093167 0.381555 0.366477 -0.817696 1.936509 -0.712194 -0.015626 1.044724 2.300351 -1.275510 -0.939739 -1.326033 -1.443028 0.677736 -0.696635 -0.594543 1.347248 0.131072 -1.632976 -0.561449 1.060087 0.562407 -0.661215 0.322631 0.376182 1.780703 -1.756702 -0.922074 -0.684142 1.157519 0.157500 -2.635445 0.050623 -1.410225 0.190927 0.226393 -1.101058 -1.252126 0.637592 0.859069 -1.119326 -0.114567 -2.011187 2.303045 0.191131 0.422369 0.146923 -0.126339 0.367928 1.390026 0.853602 -1.462774 0.321418 0.351494 -1.029891 0.202104 -1.401712 -1.101301 0.809462 -1.589318 -0.249553 0.466932 -1.324962 0.159863 0.396243 0.641151 0.697297 5.545952 -0.458103 2.126369 0.750099 -1.757635 1.874017 0.410944 -0.160943 0.238128 1.207914 0.314180 -2.362676 -1.666711 0.985374 2.052413 1.580674 -1.821494 -0.456362 -0.581866 -0.397816 0.534479 0.308360 0.211702 -0.107638 -1.536440 -0.648867 0.647472 3.802708 -0.426046 -1.906328 0.605045 0.272014 -0.808089 -2.021066 -0.397544 -0.940383 0.467657 -0.630241 -0.418467 1.524428 2.485617 -4.416069 2.252312 -0.557403 -0.753172 2.319672 -0.291057 -1.199680 -2.961597 -0.685436 1.343650 2.846121 0.036233 -0.665826 0.556801 -1.653697 -0.259267 -0.016693 0.481137 -0.748507 0.851543 0.125505 -1.322313 -0.790986 -0.988930 -0.488300 -0.333777 -0.732671 0.912405 0.274728 -3.006303 1.991368 0.240582 -0.240009 0.155454 0.004444 0.335284 -1.629094 -1.941522 0.512733 0.059488 -1.054541 -1.286083 -0.121652 1.238165 -0.138743 0.128669 -1.029023 -2.500135 1.683601 -1.102882 1.884183 0.869302 -0.224887 1.340466 2.249654 -0.347444 -1.410624 -0.681220 -0.163740 -0.695297 -1.168612 0.018439 -0.808599 1.559309 1.480208 0.095975 -0.451515 -0.548927 2.323594 -0.720246 -0.734850 1.422433 -0.997561 -1.288683 0.605556 1.855365 -2.143910 -0.423798 -1.350258 -0.828615 -0.491909 -1.035432 1.017192 -0.175111 0.690853 0.152210 0.008185 -0.621863 0.533874 0.392856 -0.408707 0.268919 2.846908 1.969442 -0.797231 0.639675 -1.622101 1.079474 -2.222080 -1.579546 0.201879 0.231546 -1.652325 0.307691 0.564972 1.629852 0.080839 0.011870 -0.336217 0.385934 +PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -2.678065 -2.216553 0.107234 -6.239615 3.929675 4.679540 1.859487 -3.725369 -6.023449 -0.749117 2.186174 -5.440261 -0.445284 7.226981 -2.278788 6.183614 8.619035 1.229214 -3.439377 -0.460852 7.191316 -0.995502 8.236654 7.173544 -5.387482 -0.682138 0.497735 3.630219 1.830515 1.840426 -0.113579 -2.506283 2.664080 -7.223523 -2.110732 -4.376003 1.283225 2.277396 5.284420 -8.541622 1.754961 -0.697772 -0.610072 -1.955895 -2.427733 -1.832587 4.181765 5.677008 -1.217024 1.454535 4.798046 1.250101 -1.358363 1.651115 1.355680 2.006833 0.585812 -0.124146 -1.935598 -3.202884 -0.456945 -1.546151 2.028751 5.771831 6.775465 0.940852 0.107819 4.556145 0.979582 0.995237 3.455765 0.832920 -2.612505 0.200317 2.674616 -9.248750 -0.159061 -9.678520 -1.482230 -8.524511 -3.324816 0.289250 3.071360 0.094218 4.472290 1.089397 5.664615 -1.637456 -1.522492 5.897892 6.570336 -6.161518 -2.624094 -4.294259 -3.869164 1.856691 -3.295303 0.342163 1.568840 1.020765 -4.929594 -3.437183 2.196750 3.690121 -2.232178 -5.154282 1.597608 5.096906 -4.917384 -5.773646 0.347060 4.707124 -2.657449 -9.001079 -2.599470 -4.557526 4.458562 -0.431631 -1.939181 -6.856839 0.641772 4.249631 -1.300119 -4.089900 0.067915 3.269188 3.564196 2.455262 0.406117 0.141936 1.248823 10.142110 2.691642 -3.637091 0.542712 -0.086248 -1.845082 2.237054 -3.617154 -2.982829 0.551761 -6.148135 0.003366 5.983761 -3.442809 -1.285589 5.211642 2.281236 1.836420 20.919807 0.685358 6.665107 5.191294 -6.303809 1.246596 -2.484065 0.178727 2.079537 2.139782 -0.065863 -10.457749 -5.740324 3.312992 5.910217 4.833127 -6.191597 -2.664811 -1.382555 -0.469806 0.424007 -1.011817 1.450931 -0.248021 -4.882298 -1.416323 5.087555 11.702212 -2.941096 -1.294314 3.940481 2.009392 -3.736816 -7.557082 -3.083222 -4.595240 1.218555 2.053692 0.036501 3.634930 7.774177 -8.779363 5.049321 -1.397908 -0.129925 3.983838 2.166964 -5.701695 -6.066816 -1.630581 3.930522 6.512567 -2.293183 1.567246 2.555818 -5.402190 -0.430687 1.474276 -0.161387 -1.250651 2.392033 1.115257 -3.637735 -3.383256 2.806558 -2.020317 -1.688386 -0.008894 3.875946 -0.598455 -7.077929 5.934537 0.127684 -1.986952 2.821798 -2.111701 6.889155 -5.689274 -6.215713 4.906735 0.500316 -0.578764 -1.905974 1.348376 4.499220 2.272937 1.437741 -3.887336 -6.264035 2.846377 -2.067676 4.703457 2.345897 -0.302665 3.515248 -3.108400 -1.280537 -6.075481 -3.721724 -0.894096 1.174841 -6.032218 -4.001207 -1.217308 6.519035 4.332941 0.114192 -4.541526 0.708735 6.350092 -6.485748 -1.297006 3.871996 3.977875 -7.064729 0.293180 4.983831 -6.588035 0.146856 -2.061550 -0.320299 -1.956056 -5.039640 3.851667 1.386399 3.967461 -0.030481 1.354289 0.634470 2.568487 2.551443 2.192825 1.165750 7.354135 5.948882 -1.521285 -3.267638 -5.995775 2.180149 -7.524762 -7.607736 3.383534 1.341613 -4.231750 1.012071 0.955266 6.968410 1.301892 0.294075 -0.193366 -0.102119 +PE-benchmarks/vertex-cover-problem.cpp__main = -1.673450 -0.254502 2.264042 -4.082078 3.252036 2.546969 1.477979 -0.936709 -4.388217 -1.933062 0.607556 -4.733732 -2.933114 5.530257 -1.964826 1.562877 7.073940 1.895985 -2.008580 -0.697567 3.423693 -0.314966 6.218160 5.868840 -4.217106 -0.087455 -0.359584 2.917879 0.428041 3.436074 -0.347364 -3.781951 1.779500 -1.287469 0.233774 -3.124756 0.255618 0.708687 0.211819 -7.358365 1.073887 1.751694 -0.181091 -1.177835 -0.277808 1.236918 4.769178 3.932598 -0.541082 0.734906 2.715202 1.750896 -0.070122 1.261758 1.521597 0.341096 1.767279 -1.380759 -2.458536 -1.228918 -1.170445 -2.637991 -0.248612 4.447809 5.272009 0.994475 -0.255560 0.345294 0.032257 1.466673 1.839948 0.883483 0.683736 0.972167 1.852891 -2.467625 0.054803 -5.899743 -0.481789 -8.259397 -3.072008 -1.252743 4.336223 2.437672 0.948993 -1.223973 4.960213 -0.736110 -0.088884 3.806030 6.128004 -3.348273 -2.066266 -3.053824 -2.592992 1.723673 -2.300246 0.046716 0.533607 1.140082 -4.028126 -2.052675 1.083721 0.739204 -1.679935 -0.657616 0.448464 4.498063 -4.849187 -1.568050 -2.216021 2.882986 0.507005 -6.846473 -2.115011 -2.661595 2.339667 0.619803 -2.166459 -2.742683 1.584874 2.161034 -1.731087 -0.832420 -3.163889 4.158335 1.215463 0.628789 0.255618 0.662879 0.951805 4.703157 1.968292 -2.645602 0.308143 0.281940 -1.530457 0.645509 -2.932568 -1.287210 0.534540 -3.882875 0.573875 2.696843 -3.056774 -1.699721 -1.250383 0.318130 2.039994 12.633008 -0.966612 4.461909 2.578236 -4.668376 2.096802 -0.685421 -0.446821 0.717874 2.507604 1.359426 -4.450476 -4.001666 2.761731 5.066044 3.624793 -3.854703 0.465804 -1.022497 -0.233517 -0.497833 0.951878 1.184935 -0.283612 -3.398442 -1.396305 2.945622 7.884986 -1.275262 -4.164890 1.920568 1.213956 -0.555385 -2.944412 -1.210399 -0.518666 0.709719 1.769349 -0.486987 2.801384 6.095332 -8.318032 4.733159 0.021242 -0.733236 3.715003 0.233674 -2.977677 -3.735075 -0.799646 3.869212 5.666423 0.094118 -0.523940 0.688012 -4.388029 -0.656141 0.997559 1.609987 -1.562184 2.225411 0.972812 -3.138429 -2.846567 -1.862312 -0.991576 -0.575182 -1.856220 2.517518 0.485333 -7.610752 5.300122 0.088671 -1.115907 0.189796 -1.073132 3.258137 -4.221043 -5.273675 2.158277 -0.983745 -3.486964 -2.183391 0.204690 3.085685 0.861694 1.499647 -2.662384 -4.629806 4.152771 -0.854410 4.135147 1.931586 0.639055 3.944979 1.949433 -1.422187 -3.097838 -3.106724 1.930414 -1.003362 -3.236059 0.212242 -1.508508 3.847275 4.400019 -0.295114 -2.783012 -1.074677 5.251351 -3.163122 -1.659237 3.449064 0.229609 -3.112069 2.006569 4.262398 -4.624064 -1.527016 -2.918972 -0.714252 -1.534909 -3.668340 2.160175 -0.999779 1.893772 1.168760 0.378832 -1.789413 1.641236 1.146931 -0.174517 0.759418 5.992438 4.845963 -2.019153 1.350024 -4.186628 2.595302 -5.944934 -4.661534 1.279342 -0.566441 -2.367518 0.517355 -0.481502 3.882492 0.322998 0.056598 -1.219346 0.794124 +PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -3.701731 -1.860373 0.524489 -7.661907 6.186496 6.674832 2.883007 -3.808087 -8.419966 -2.335932 2.490865 -10.070120 -3.212405 10.898201 -3.203958 7.393270 13.514189 1.878161 -4.453721 0.191222 9.123120 -0.556396 12.160265 10.520398 -7.559268 -0.922023 -1.103840 4.322327 0.506356 3.521831 0.513800 -6.650584 3.858295 -7.462531 -2.223563 -4.983532 1.772698 2.510277 5.713683 -13.253571 2.356545 2.391704 0.864841 -3.250972 -2.907887 -2.292953 7.761707 8.270911 -1.362711 0.925269 6.183246 2.349569 -1.230891 2.569470 1.557062 1.169332 0.598236 -2.345371 -4.569198 -4.157829 -1.129858 -2.692734 0.968433 8.330701 10.449412 1.993082 0.036627 5.012917 0.397349 2.267872 4.093205 1.183812 -1.041346 1.019139 3.823724 -8.301691 -1.678003 -12.757593 -1.872070 -12.883690 -5.501844 -0.536730 5.937422 4.354078 5.018639 -0.929788 8.533930 -2.164157 -1.394986 8.636419 11.373015 -8.131758 -4.327999 -7.262730 -5.586873 3.200682 -5.061070 0.639913 1.699323 1.437148 -7.850130 -5.252131 2.360991 4.053151 -2.928877 -5.873254 2.038264 7.527352 -6.949903 -6.623484 -1.084295 6.498734 -1.879202 -13.546390 -3.783632 -5.454389 2.096907 1.013380 -3.145756 -8.491576 1.653978 4.554891 -2.791385 -5.009608 -3.360474 6.660269 3.830501 2.882388 1.177572 0.896867 2.599970 13.008728 2.828981 -5.213692 0.898227 -0.530615 -2.176742 2.888352 -5.575790 -4.230079 0.397050 -8.575565 0.472506 7.679023 -5.364859 -2.560667 0.783629 1.931906 3.347296 26.596931 0.157436 9.577527 6.355014 -9.627591 4.731808 -3.408975 -0.907832 1.298493 3.558303 1.193015 -11.847080 -8.336197 5.686737 8.985134 7.196872 -7.549939 -1.614747 -1.479923 -0.099100 -0.791619 0.029780 3.264503 0.077928 -7.464237 -2.137236 7.861545 17.488161 -3.601310 -2.668732 6.057009 3.873459 -2.568258 -9.301590 -3.957991 -5.660168 1.095450 3.511571 -0.029952 5.102882 11.797828 -12.636750 8.039785 -0.367650 -0.211261 6.263417 1.611078 -8.261619 -8.338284 -1.640643 7.181791 10.334762 -1.783805 1.430704 1.800455 -7.855392 -0.756279 2.130819 0.654092 -1.645526 3.593287 -0.108014 -5.500053 -5.724436 1.178647 -3.674585 -2.750025 -1.841675 5.237880 2.571311 -9.257539 9.999257 0.231482 -2.518417 1.861400 -3.189349 8.861852 -7.876102 -9.498179 6.074609 -1.593666 -3.284127 -3.065202 1.624180 5.627322 3.336757 2.361579 -4.533276 -9.859415 6.222359 -1.618028 7.447511 3.436634 0.471058 4.490585 1.648468 -2.845522 -7.620853 -6.997853 0.273318 0.500767 -8.675620 -3.709178 -2.173079 9.095823 6.773649 -0.344754 -7.435489 -1.585297 9.216426 -7.424703 -2.599146 6.611974 1.090588 -9.380270 0.683780 8.158405 -9.366031 -0.674932 -4.527006 0.873075 -3.561487 -8.142757 3.530273 0.667461 4.441525 0.972659 0.647321 -0.610283 2.950083 3.714955 1.283634 0.845885 11.789831 6.092234 -2.640484 -1.506430 -9.008796 3.598917 -11.511272 -11.100055 4.794090 0.916046 -6.482697 0.957710 1.175182 8.653055 0.527217 1.075644 -1.858668 0.198253 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = -0.330866 -0.219549 0.299844 -0.974877 0.844293 0.243029 0.440875 -0.207357 -1.267167 -0.512210 0.407558 -1.508295 -0.706147 1.380597 -0.382126 0.607518 1.767826 0.366256 -0.470508 -0.334114 0.864972 -0.320005 1.673562 1.571689 -1.105966 0.085359 -0.293157 0.604995 0.181467 0.575405 0.004193 -0.939555 0.551350 -0.553348 0.052232 -0.681263 0.038682 0.230866 0.426669 -1.874506 0.253915 0.546937 0.406479 -0.274612 -0.134238 0.768574 1.108230 0.996241 -0.219900 0.516629 0.901285 0.061210 0.088640 0.305755 0.383858 -0.123915 0.484005 -0.174151 -0.761976 -0.221479 -0.204135 -0.701229 -0.096066 1.038124 1.471896 0.062904 -0.158467 0.235850 0.112965 0.372581 0.625185 0.243210 0.265685 0.046545 0.592158 -0.790269 -0.084054 -2.057866 -0.188252 -2.964713 -0.918600 -0.131444 1.533774 0.314613 0.187740 -0.359608 1.218662 -0.018036 -0.188842 0.918083 1.506491 -0.787279 -0.639497 -0.611614 -0.583342 0.494409 -0.615060 0.086551 0.694080 0.263860 -1.101864 -0.342718 0.555825 0.117971 -0.439552 -0.244571 0.169163 1.002359 -1.171986 -0.408802 -0.486572 0.756941 0.295579 -1.791258 -0.040126 -0.615122 0.507181 0.272035 -0.566234 -0.456117 0.298962 0.218247 -0.559842 -0.117562 -1.069354 1.131978 0.334037 0.476545 0.208590 0.342701 0.407337 1.307461 0.265481 -0.781234 0.092673 0.013924 -0.299955 0.485605 -0.763336 -0.533496 0.572103 -0.993086 0.340484 0.265507 -0.770577 -0.435662 0.125901 0.294062 0.311175 2.850150 -0.079740 1.433650 0.799616 -1.015182 0.710811 -0.321159 -0.012893 0.255039 0.739527 0.125525 -0.905305 -1.033534 0.728344 1.291249 0.884970 -1.277296 -0.169658 -0.027285 0.032248 -0.088598 0.243854 0.319169 0.145554 -0.816994 -0.268705 0.813580 2.156179 -0.293907 -0.654835 0.416825 0.505852 -0.116701 -1.037258 -0.331692 -0.311762 0.231767 0.118042 0.102245 0.710972 1.518495 -2.543463 1.161504 -0.038097 -0.032519 0.976847 0.181035 -1.093203 -1.714712 -0.258787 0.758544 1.439097 0.085944 0.024915 0.355436 -1.067405 -0.144813 0.123085 0.153536 -0.365179 0.538862 -0.002985 -0.593578 -0.605349 -0.442701 -0.352255 -0.010867 -0.364526 0.722741 0.609437 -2.138449 1.133057 -0.056337 -0.491521 -0.150863 -0.246014 0.823558 -1.051829 -1.160415 0.405815 -0.502002 -1.054153 -0.782400 0.045100 0.502210 -0.070875 0.290648 -0.475828 -1.100005 1.292770 -0.467791 1.033272 0.557684 -0.080314 0.926219 0.492012 -0.482495 -0.831120 -0.639622 0.278232 -0.518174 -0.880608 0.409398 -0.396599 0.873138 0.964680 0.079683 -0.732386 -0.151791 1.262776 -0.886667 -0.525552 0.936013 0.105404 -0.801644 0.761524 1.121525 -1.313710 -0.080641 -0.899168 -0.341260 -0.375370 -0.791269 0.618951 -0.067076 0.472676 0.115226 0.073021 -0.311713 0.497504 0.185821 -0.130691 0.055027 1.723467 1.523678 -0.596265 0.217019 -1.203494 0.599758 -1.396899 -1.353467 0.371749 0.089234 -0.929234 0.088377 0.067213 1.045143 0.162827 -0.256782 -0.584302 0.465800 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -1.522000 -1.989857 -0.625000 -3.582245 2.437066 1.443663 1.345974 -2.188111 -4.229212 -0.181695 1.922055 -3.804021 -0.216236 4.171447 -1.216556 3.908634 5.344871 0.903451 -1.995650 -1.158894 4.488946 -0.983296 5.483339 4.930259 -3.296396 -0.237440 -0.366993 1.930528 1.568682 0.050842 0.025706 -1.171230 2.112306 -4.719674 -1.085222 -2.789082 0.681064 1.769163 4.300415 -5.233500 1.066393 -0.789124 1.091713 -0.893718 -1.394703 1.566257 1.930707 3.324293 -0.908152 1.790182 3.704731 0.065375 -0.527600 1.020874 0.686999 0.673535 0.821228 0.910871 -1.252489 -1.633223 -0.262754 -0.655372 1.099537 3.181037 4.820082 0.196286 -0.250612 2.691070 1.250084 0.764009 2.596826 0.519035 -0.761381 -0.588700 1.789248 -6.064393 -0.595976 -8.567393 -1.024255 -8.253869 -2.208384 0.575903 3.118270 -1.749062 2.111315 0.499557 3.287560 -0.102912 -1.430105 3.256201 3.596042 -3.332617 -1.783573 -1.866202 -2.115006 1.163466 -1.931188 0.736665 2.838925 0.761252 -3.163198 -1.860075 1.997060 1.552873 -1.321041 -3.079711 1.065110 2.869036 -2.407673 -2.929652 0.266816 3.159258 -0.837251 -5.553734 0.165089 -3.365394 3.029586 -0.111332 -1.317848 -2.899860 0.120080 1.451236 -1.387444 -1.820493 -0.581326 2.406258 2.298096 1.995249 0.231368 0.448200 0.711134 6.112240 0.643191 -2.798658 0.341167 -0.124359 -1.277947 2.095877 -3.155850 -1.946248 2.530237 -3.476590 1.077269 2.001552 -2.062129 -1.053193 5.234958 1.829446 0.556861 11.398160 0.709625 4.955848 3.595206 -3.026092 1.469154 -1.615573 0.848373 1.768989 1.903339 -0.864050 -5.917729 -3.642517 1.866256 3.453789 2.774980 -5.098715 -2.619328 -0.319966 -0.074065 0.114107 -0.541866 0.861235 0.052190 -2.444591 -0.638510 2.993191 7.476414 -1.583196 0.276171 1.740931 2.010289 -2.123747 -5.272057 -2.050017 -2.816490 0.890025 0.467448 0.886760 2.341783 4.570799 -7.378973 2.831374 -0.929238 0.556532 2.508334 1.759104 -4.413425 -5.714403 -1.011836 1.512545 4.096932 -0.857626 1.096981 2.311117 -3.185594 -0.208994 0.423031 -0.437077 -0.793168 1.251170 0.357773 -1.476072 -1.471332 1.510788 -1.416513 -0.694594 0.373541 2.632328 0.731806 -5.812382 2.734007 -0.330208 -1.627818 1.073325 -1.255780 3.943569 -3.127660 -3.031054 2.440718 -0.152565 -0.587575 -2.433899 1.061666 2.227560 0.058930 1.573511 -2.013152 -3.930840 2.582997 -2.260260 2.766503 1.474366 -0.828414 1.929842 -2.234394 -1.019223 -4.439435 -1.648354 -0.877026 0.254082 -3.818970 -0.709529 -0.648165 3.384452 2.291439 0.489452 -2.815648 0.682895 4.070486 -4.470378 -0.948350 2.477504 3.134326 -3.944871 1.368466 3.074917 -4.677334 0.478922 -1.558013 -1.032745 -0.923240 -2.418824 2.786061 1.202122 2.446900 -0.826749 1.035759 0.788875 1.964126 1.289351 1.023915 0.519948 5.249495 5.381843 -0.988117 -2.134737 -3.846913 1.352708 -4.058671 -4.882414 1.881947 0.747725 -3.607895 0.707546 0.791706 4.787313 0.796709 -0.399131 -1.085612 0.778785 +PE-benchmarks/dfs.cpp__main = -0.794603 -0.017880 1.924176 -2.312314 1.732455 0.509593 0.841297 0.204515 -2.634440 -1.625406 0.072788 -2.540695 -2.169145 3.133349 -1.043214 -0.011900 4.180208 1.515809 -0.883399 -0.825104 1.462220 -0.753274 3.377469 3.532994 -2.511995 0.156664 -0.223979 1.915456 0.352516 2.438230 -0.162548 -2.236601 0.828826 0.201881 0.889098 -2.153895 -0.094963 0.379928 -1.042010 -4.639881 0.564648 1.427602 0.083759 -0.487962 0.295231 2.046992 2.905642 2.102413 -0.492085 0.720352 1.443298 0.944371 0.257337 0.670041 1.007496 -0.006844 1.355967 -0.749259 -1.568089 -0.090326 -0.800650 -2.309744 -0.257905 2.461525 3.007049 0.350124 -0.275305 -0.613057 0.027744 1.010574 1.033261 0.570951 0.961262 0.332204 1.180587 -0.876280 0.151756 -3.672702 -0.004124 -6.377095 -1.938806 -1.071355 3.430670 1.407493 -0.304564 -1.034727 3.007790 -0.294123 0.243161 2.122875 3.484599 -1.352519 -1.168074 -1.573000 -1.386121 1.204021 -1.182511 -0.279505 0.635182 0.874949 -2.263110 -0.794679 0.792399 -0.227639 -1.022592 0.430348 0.012433 2.787175 -3.366554 -0.195526 -2.031546 1.504515 1.034033 -3.747111 -0.691875 -1.466927 1.676184 0.528451 -1.416227 -0.622220 1.113959 0.889722 -1.159644 0.387128 -2.767265 2.844074 0.163308 0.073709 0.150932 0.545724 0.343669 1.659170 1.384582 -1.562409 0.048191 0.595884 -1.094700 0.042027 -1.822637 -0.641571 0.945073 -2.024986 0.396091 0.579643 -1.880888 -1.273024 -1.108284 -0.098124 1.266917 6.441180 -0.800017 2.393329 1.211034 -2.346297 1.371335 0.131145 -0.214278 0.545354 1.898987 0.925246 -1.639195 -2.129414 1.332498 3.027872 2.060545 -2.186836 0.351814 -0.636540 -0.163557 -0.104748 0.915807 0.465637 -0.199733 -1.774603 -0.824227 1.113870 4.044483 -0.342622 -3.015018 0.475009 0.658324 -0.191322 -1.403756 -0.258950 0.382904 0.393877 0.614670 -0.474911 1.630821 3.430839 -5.817800 2.956015 -0.004830 -0.419494 2.074048 -0.125373 -1.222828 -3.036219 -0.482569 2.131130 3.605935 0.402721 -0.611733 0.382108 -2.584286 -0.431732 0.434618 1.326721 -1.156270 1.423261 0.556776 -1.690071 -1.440403 -1.907346 -0.382900 0.090955 -1.224300 1.306960 0.443005 -5.277481 2.905581 -0.230846 -0.609505 -0.270530 -0.176329 1.281470 -2.449900 -3.043514 0.731112 -0.628199 -2.900856 -1.761504 -0.201421 1.802535 -0.176638 0.499286 -1.253489 -2.585664 2.903372 -0.725558 2.425223 1.209834 0.263585 3.007684 1.984500 -0.870130 -1.422380 -1.404295 1.412323 -1.432352 -1.206245 1.006724 -0.990997 1.733709 2.846030 -0.100376 -1.073597 -0.467146 3.292039 -1.433821 -1.271833 2.034486 -0.316423 -0.864113 2.119877 2.523174 -2.820670 -1.205575 -2.124067 -0.705861 -0.489037 -1.729250 1.390662 -1.120796 0.817762 0.836078 0.190231 -1.539364 1.034454 0.414202 -0.534157 0.320232 3.600226 3.609423 -1.516438 1.602560 -2.156502 1.618146 -3.317186 -2.085749 -0.021452 -0.293151 -1.018675 0.406438 -0.527292 1.889955 0.229884 -0.204482 -0.945114 0.809079 +PE-benchmarks/dfs.cpp__Graph::DFS(int) = -1.223473 -0.536375 0.801425 -2.950175 1.968313 1.899400 0.855965 -1.231009 -2.803880 -0.929267 0.688534 -2.883617 -1.087422 3.506779 -1.315381 1.900703 4.446321 0.823136 -1.396224 -0.372786 2.961337 -0.615774 4.021895 3.678340 -2.832612 -0.320541 0.287974 1.931117 0.727385 1.586590 -0.143183 -1.898307 1.101069 -2.131651 -0.183280 -2.169416 0.544068 0.740654 1.309966 -4.520963 0.726466 0.306101 -0.173339 -0.812742 -0.712907 0.301073 2.608707 2.683377 -0.745941 0.444050 2.324800 0.971250 -0.479900 0.759453 0.661979 0.405308 0.843444 -0.166160 -1.185262 -1.125584 -0.418974 -1.259195 0.536637 2.961958 3.536513 0.492280 0.106749 1.230069 0.250166 0.700011 1.348378 0.460994 -0.365954 0.491604 1.293568 -3.243202 0.003199 -4.843943 -0.466135 -5.294772 -1.713111 -0.481479 1.964558 0.652135 1.309427 -0.215722 2.983419 -0.419486 -0.284735 2.748818 3.646387 -2.504050 -1.292912 -2.216713 -1.967695 1.081342 -1.631906 0.127475 0.735493 0.639604 -2.436790 -1.551807 0.858738 1.156666 -1.070309 -1.498029 0.442251 2.623021 -2.764153 -1.835124 -0.690570 1.915321 -0.441709 -4.644097 -1.102224 -2.187424 1.920791 -0.033838 -1.030537 -2.541656 0.532152 1.876959 -0.880359 -1.188264 -1.275050 2.402405 1.343548 0.780488 0.158128 0.100424 0.647303 3.859859 1.327885 -1.781315 0.049572 0.064966 -1.239709 0.569919 -2.079878 -1.062860 0.815200 -2.753450 0.184440 2.318157 -1.782515 -0.889730 1.299202 0.400147 1.296909 9.829503 -0.155879 3.136853 1.975691 -3.124841 1.184242 -0.690490 -0.163330 0.782910 1.338626 0.441140 -4.263405 -2.681716 1.682143 3.038169 2.313329 -2.908777 -0.609472 -0.668095 -0.285428 -0.104573 -0.055898 0.758098 -0.486127 -2.228088 -0.827329 2.252202 5.519072 -1.015869 -1.495796 1.519085 1.158542 -1.262517 -2.983405 -1.086927 -1.425180 0.586374 0.936671 -0.167295 1.911236 3.873868 -5.437500 2.702769 -0.206325 -0.208346 2.131260 0.429179 -2.385049 -3.319808 -0.365613 2.330407 3.399370 -0.570115 0.374543 0.865834 -2.710198 -0.261124 0.636386 0.600995 -0.851550 1.216126 0.587392 -1.968999 -1.936208 0.066151 -0.943037 -0.633492 -0.638038 1.689384 -0.034224 -4.492487 3.310543 -0.100857 -0.827022 0.619976 -0.956919 2.568708 -2.964082 -3.258288 1.815864 -0.157753 -1.148069 -1.336362 0.399802 2.126467 0.602368 0.802740 -1.830021 -3.430477 1.909007 -0.983022 2.349203 1.136045 0.274230 2.214173 -0.025527 -0.623873 -2.791758 -1.823153 0.413671 -0.026295 -2.657669 -0.754119 -0.671098 2.800816 2.538175 -0.211818 -1.870282 0.058108 3.239256 -2.438830 -0.940176 1.946722 1.050089 -2.830369 0.613451 2.475872 -3.198281 -0.569421 -1.594348 -0.375971 -0.880232 -2.556602 1.564199 -0.054058 1.568713 0.463830 0.508597 -0.503894 1.209551 1.046322 0.497521 0.544648 3.783845 3.307020 -1.060550 -0.382250 -2.919730 1.324454 -3.906162 -3.553074 1.211589 0.083641 -1.645701 0.479595 0.131739 2.994728 0.360633 0.295081 -0.323266 0.213591 +PE-benchmarks/weighted-job-scheduling.cpp__main = -0.641565 -0.221873 0.628152 -1.853527 1.469667 1.184117 0.688907 -0.582893 -1.926511 -0.887652 0.692552 -2.326576 -1.279469 2.375646 -0.806193 0.986174 2.861835 0.353378 -0.951502 -0.474445 1.704251 -0.260728 2.969504 2.535196 -2.095806 0.012121 0.016975 1.163091 0.498444 1.109038 0.029653 -1.496747 0.829509 -0.998465 0.102713 -0.975994 0.166099 0.073860 0.564406 -3.051054 0.381434 0.734459 -0.010115 -0.491656 -0.294494 0.704131 2.118521 1.799220 -0.437021 0.531876 1.659559 0.309237 -0.037629 0.460594 0.634237 -0.184755 0.824344 -0.262456 -1.052011 -0.628539 -0.310112 -1.099907 -0.079545 1.998276 2.471222 0.111265 -0.111311 0.587364 0.109203 0.668359 0.930976 0.462874 0.222435 0.420681 1.106151 -1.587380 -0.073468 -3.272131 -0.316055 -4.314372 -1.475456 -0.358689 2.055965 0.684881 0.561553 -0.431500 2.160796 -0.080015 -0.288674 1.699264 2.728837 -1.412155 -0.988205 -1.270496 -1.088759 0.800837 -1.168714 0.175953 0.820216 0.377019 -1.833538 -0.629687 0.611851 0.478312 -0.830759 -0.666080 0.160173 1.775135 -1.978196 -0.756333 -0.744488 1.313844 0.242318 -3.445826 -0.734778 -1.098285 1.125002 0.226291 -0.758540 -1.208825 0.461269 0.934421 -0.767927 -0.507452 -1.236789 1.851513 0.927912 0.782810 0.311966 0.473851 0.756713 2.417824 0.919132 -1.117261 0.006414 -0.072306 -0.579736 0.705931 -1.069507 -0.677752 0.658863 -1.718486 0.529164 1.163296 -1.193938 -0.743418 0.263948 0.304567 0.697663 6.119079 -0.207198 2.333312 1.318186 -2.043182 0.931842 -0.538384 -0.194162 0.442462 1.051983 0.346941 -2.166154 -1.727689 1.352504 2.227959 1.470603 -2.254173 0.083612 -0.122401 -0.099911 -0.329368 0.292652 0.555612 0.111490 -1.441294 -0.548940 1.706505 3.704268 -0.722670 -1.580171 0.908009 0.812080 -0.372302 -1.696911 -0.556093 -0.495394 0.419802 0.654305 0.053917 1.287119 2.623476 -3.947899 1.923547 0.055923 -0.255100 1.841121 0.300759 -1.699151 -2.297368 -0.217980 1.585550 2.259176 -0.050506 -0.098441 0.481179 -1.899960 -0.181040 0.363503 0.303772 -0.597261 0.953896 0.161568 -1.158739 -1.312031 -0.656631 -0.527371 0.005316 -0.685675 1.167940 0.352698 -3.736598 2.346257 -0.090580 -0.830568 -0.159670 -0.603786 1.657803 -1.914138 -2.226157 0.914250 -0.668355 -1.612892 -1.143804 0.035553 1.050789 0.331527 0.658752 -1.218897 -2.049709 1.852188 -0.720360 1.791495 0.928565 0.155292 1.798629 0.266447 -0.653542 -1.689557 -1.307305 0.725910 -0.453823 -1.772437 0.099324 -0.649302 1.680080 1.649329 -0.131473 -1.271449 -0.328828 2.110761 -1.745294 -0.904257 1.399527 0.692713 -1.770246 0.982730 1.755259 -2.035351 -0.249987 -1.428094 -0.528613 -0.811410 -1.824880 1.025151 -0.100335 0.985258 0.374406 0.261962 -0.520764 0.764794 0.343542 0.017469 0.155368 2.658635 2.582608 -1.182571 0.089773 -2.153514 1.211481 -2.654539 -2.552499 0.882390 -0.051538 -1.124824 0.129161 0.039710 1.830084 0.343298 -0.392251 -0.708792 0.579102 +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.161346 0.210252 0.570000 -0.561865 0.634113 0.103252 0.245248 0.186104 -0.621662 -0.659231 -0.059878 -0.538557 -0.738250 0.914812 -0.342671 -0.052375 1.374527 0.431508 -0.026031 -0.432777 0.483983 -0.477981 1.116066 1.072855 -0.965821 0.035886 0.442346 0.452938 0.171828 0.735560 -0.173165 -0.919855 0.391089 -0.155222 0.405127 -0.721537 0.042982 -0.128037 -0.333047 -1.465799 0.071721 0.060064 -0.315818 -0.085072 -0.011768 0.849637 1.089035 0.638810 -0.382982 0.386405 0.601494 0.331594 -0.122920 0.192355 0.194597 0.099372 0.260596 0.066075 -0.531864 0.130254 -0.214780 -0.888600 -0.099792 0.789225 0.969561 -0.038387 0.034895 0.027107 -0.176708 0.243278 0.215609 0.155697 0.524971 0.175632 0.580630 -0.699358 -0.345783 -1.808414 -0.227485 -2.750109 -0.636047 -0.683760 0.865851 -0.197461 0.017198 -0.054132 0.949069 0.039119 0.329921 0.750325 1.223411 -0.584760 -0.441290 -0.650674 -0.375036 0.387357 -0.502748 -0.039367 0.358865 -0.051780 -0.703350 -0.632839 0.404556 0.018451 -0.300364 -0.275758 -0.120973 0.878217 -1.208103 -0.192902 -1.076762 0.126963 0.196824 -1.235151 -0.034872 -0.228895 1.073353 0.333689 -0.309774 -0.430262 0.292177 0.663905 -0.364971 -0.162825 -0.205054 0.891639 0.177668 0.098812 0.197035 0.106414 0.234786 0.700154 1.035312 -0.381855 -0.174461 0.222162 -0.525705 -0.150195 -0.634483 -0.214919 0.555617 -0.669191 0.365410 0.304692 -0.605172 -0.547118 0.422044 -0.340411 0.622247 2.014344 -0.244757 0.593694 0.144250 -0.899373 0.292645 -0.147987 -0.190412 0.164695 0.772970 0.371696 -0.569771 -0.595931 0.347185 0.903598 0.593184 -0.953681 -0.224725 -0.366359 -0.006444 0.000313 0.121422 0.251180 -0.117792 -0.506073 -0.226453 0.384524 1.376714 -0.340820 -0.964830 0.089689 0.364252 -0.072831 -0.667913 -0.059571 -0.061775 0.179482 0.342444 -0.182306 0.490948 1.073626 -2.288591 0.834407 -0.275976 -0.211695 0.355734 0.165086 -0.253411 -1.097712 0.161097 0.795738 1.074541 0.348851 0.079809 0.083579 -0.771536 -0.106549 0.076996 0.608589 -0.323230 0.418203 0.178561 -0.790179 -0.663166 -0.419746 -0.051965 -0.089656 -0.195868 0.296632 0.125082 -2.286761 1.032869 -0.256764 -0.271153 0.021951 -0.015375 0.588620 -0.936622 -1.136004 0.318354 -0.193507 -0.778471 -0.461086 -0.158624 0.617368 -0.077212 0.152481 -0.254079 -1.120198 0.771898 -0.078889 0.665741 0.379744 0.248959 1.431892 -0.026127 -0.345475 -0.660888 -0.337223 0.578083 -0.592680 -0.348711 0.119904 -0.261077 0.612756 1.085947 -0.053607 -0.200441 -0.148539 0.977027 -0.917389 -0.331154 0.684998 0.660118 -0.187390 0.680629 0.806352 -0.961941 -0.567900 -0.628430 -0.117443 -0.035796 -0.632715 0.235615 -0.701343 0.194981 0.432081 0.149763 -0.479796 0.371367 0.003048 0.009494 -0.133806 0.918506 1.713986 -0.929200 0.366136 -0.698696 0.509012 -1.173122 -0.917176 -0.013034 0.018375 -0.160444 0.181294 -0.147328 0.468862 -0.033785 -0.088130 -0.281425 0.053169 +PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -2.864349 -1.966282 0.050795 -6.819447 4.838852 6.171547 2.257320 -4.071663 -6.452159 -1.248491 2.848343 -6.591659 -2.105347 7.899578 -2.814447 5.903750 9.152958 0.688453 -3.963898 -1.139283 7.801976 -0.195115 10.399242 8.107330 -6.586746 -0.649322 0.793324 3.779212 2.117551 2.370052 0.088017 -3.411234 3.233579 -6.690490 -1.381534 -3.690346 1.198795 1.293637 5.158578 -9.228978 1.635417 -0.058585 -0.711587 -1.888339 -2.216169 -0.441410 5.620266 6.311391 -1.132536 1.424583 6.113638 1.386538 -1.104388 1.699488 1.872900 1.035008 1.669073 -0.273071 -2.159942 -3.650577 -0.765025 -1.558375 1.130372 6.645807 8.231851 0.499733 0.035261 4.304457 0.739336 1.882957 3.597196 1.234844 -1.581194 0.911968 3.286475 -9.011684 -0.523006 -11.644721 -1.605536 -11.189123 -3.993421 -0.093698 3.976059 0.661120 4.181025 0.436488 6.667376 -0.766296 -1.912090 5.891596 8.100901 -5.962884 -2.926730 -4.371666 -3.732651 1.928878 -3.903628 0.815040 2.682278 0.977590 -5.776406 -2.988237 1.895749 3.394835 -2.696555 -5.175811 1.098364 5.699939 -5.214378 -4.690943 -0.231698 5.465808 -1.791092 -11.814445 -3.123844 -5.041791 4.587974 -0.516458 -1.911458 -6.589341 0.904822 4.657615 -1.855049 -3.953456 -0.390055 4.645864 4.663985 2.889754 0.579047 0.798927 1.785824 11.052286 3.012527 -3.736636 0.117018 -0.576494 -2.008868 2.890652 -3.781597 -2.420427 1.474041 -6.451496 1.655224 6.353082 -3.460077 -1.710152 5.025913 1.963550 2.000144 24.331123 0.036100 8.164355 5.568871 -7.247876 2.009844 -2.653038 0.052090 2.104478 2.636496 -0.056440 -11.122472 -6.174378 4.304917 6.721704 4.955474 -8.202763 -1.212019 -0.962585 -0.516154 -0.819657 -0.558279 1.787100 -0.038738 -4.953320 -1.712176 6.366604 13.587357 -3.425550 -2.672316 4.152981 2.950422 -3.311144 -7.514711 -3.144702 -3.949466 1.424154 2.806007 0.546501 4.198905 8.569813 -10.832032 5.574506 -0.699650 -0.570239 5.908624 2.183939 -6.485829 -6.610205 -1.119314 4.828496 7.063678 -1.934872 0.969840 2.472527 -6.168043 -0.303595 1.381100 0.023676 -1.471009 2.671936 1.072472 -3.876783 -4.059777 1.295825 -1.992579 -1.025909 -0.774920 4.147964 -0.197852 -10.883576 7.478773 -0.087365 -2.663764 1.548532 -2.365678 7.452278 -6.019324 -7.035891 4.759355 -0.508676 -1.928663 -2.918315 1.186325 4.458242 2.149721 3.017073 -4.960236 -7.173653 4.097892 -2.667786 5.529125 2.687862 0.272995 4.543160 -3.814296 -1.645735 -7.546512 -4.758841 0.424859 0.941370 -7.254261 -2.367147 -1.554058 6.783772 4.568549 -0.098405 -5.297859 -0.059729 7.161531 -7.559914 -1.755120 4.174569 5.427466 -8.211954 1.259072 5.413922 -6.969513 -0.249356 -2.994653 -1.103796 -2.882203 -6.665539 4.083187 1.281574 4.503948 0.106148 1.771373 0.097577 2.645636 2.147628 1.791152 0.967625 8.470144 7.781509 -2.702746 -2.969679 -7.114291 3.423111 -8.680459 -9.267976 4.003009 0.288804 -4.251871 0.823591 0.737038 7.831855 1.316126 -0.392083 -1.062965 0.449081 +PE-benchmarks/finite-automata-algorithm.cpp__main = -0.565250 -0.444416 0.371215 -1.318336 0.902843 0.485045 0.477135 -0.561349 -1.515851 -0.385689 0.399969 -1.294868 -0.403128 1.713040 -0.570165 1.035735 2.308800 0.655418 -0.660163 -0.582986 1.629437 -0.727989 2.177761 2.020295 -1.544472 -0.070813 0.260899 0.971481 0.788924 0.661691 -0.168149 -0.563073 0.689166 -1.426693 0.055579 -1.403960 0.297591 0.522076 0.837787 -2.424659 0.364532 -0.184889 0.309428 -0.317497 -0.363619 0.779606 1.191831 1.361195 -0.485327 0.571457 1.397569 0.222420 -0.105738 0.417619 0.267057 0.412952 0.682248 0.235387 -0.610327 -0.409675 -0.154165 -0.930855 0.461640 1.436294 1.954543 0.116129 0.052980 0.761645 0.350780 0.360928 0.895635 0.236514 -0.134086 -0.031292 0.826756 -2.214840 -0.006197 -3.310765 -0.368829 -3.650359 -0.898701 -0.352970 1.197299 -0.461491 0.709085 0.296449 1.531419 -0.086900 -0.120646 1.275880 1.727003 -1.359370 -0.714535 -0.956402 -0.927218 0.643652 -0.899714 0.089377 0.894247 0.346743 -1.201967 -0.983841 0.847702 0.570011 -0.605362 -0.855234 0.170496 1.312794 -1.474653 -1.073805 -0.564220 0.794163 -0.284491 -2.255363 0.070616 -1.292948 1.391840 0.083636 -0.445774 -1.261756 0.158658 0.930374 -0.504696 -0.654689 -0.493854 1.175198 0.660984 0.428820 0.101263 0.011676 0.189009 1.976104 0.922247 -1.069187 -0.060627 0.233377 -0.894516 0.352541 -1.365937 -0.752668 1.044837 -1.398030 0.208901 0.871634 -0.944865 -0.523460 1.680319 0.297039 0.644573 4.393328 0.138628 1.534008 1.095903 -1.442455 0.620035 -0.350524 0.142401 0.725786 0.986130 0.001537 -2.188157 -1.458739 0.563497 1.493369 1.158574 -1.763906 -0.913417 -0.443874 -0.038331 0.209670 -0.124061 0.371200 -0.266933 -1.079714 -0.338437 0.910519 2.810142 -0.638837 -0.510180 0.553075 0.481457 -0.966876 -2.076031 -0.590685 -0.906161 0.328072 0.056229 0.041002 0.931679 1.940113 -3.184057 1.404622 -0.504603 -0.008789 1.084649 0.356567 -1.198554 -2.150649 -0.111917 0.951058 1.792997 -0.197905 0.157571 0.764624 -1.444533 -0.132353 0.100383 0.327898 -0.472480 0.644846 0.294315 -0.937918 -0.869279 0.208045 -0.260069 -0.367230 0.029418 0.918634 0.120737 -2.569741 1.456923 -0.348887 -0.571691 0.510911 -0.294748 1.241046 -1.508419 -1.493403 0.867340 0.072382 -0.448712 -1.094216 0.221401 1.172846 -0.047217 0.310365 -0.824164 -1.737308 0.961873 -0.830212 1.047424 0.644665 -0.063556 1.259134 -0.252945 -0.360782 -1.678941 -0.286112 -0.335838 -0.281853 -1.179404 -0.436641 -0.328878 1.388448 1.479828 0.052827 -0.676802 0.243235 1.846196 -1.659567 -0.708098 1.055436 1.041404 -1.203644 0.739059 1.259301 -1.930797 -0.339839 -0.738271 -0.392675 -0.070830 -1.096715 1.067278 -0.185167 0.827040 0.097619 0.345456 -0.058952 0.843871 0.436129 0.255863 0.069516 2.074332 2.272750 -0.720451 -0.340087 -1.417172 0.618782 -1.947419 -1.650370 0.415174 0.376937 -1.052257 0.432363 0.248786 1.658192 0.287170 -0.083523 -0.349913 0.048992 +PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -2.007062 -2.349446 -0.381192 -4.313596 2.793348 2.613884 1.606891 -2.574912 -5.184757 -0.662525 2.333165 -5.259615 -0.723654 5.601675 -1.846637 4.432687 7.037647 1.256204 -2.787446 -1.221991 5.854424 -0.763668 7.359434 6.257091 -4.630697 -0.545095 -0.306403 2.539252 2.486831 0.572470 0.726057 -1.875436 2.489935 -5.617419 -1.275567 -3.470291 1.231417 1.957135 4.406199 -6.932015 1.325256 -0.199483 1.069986 -1.336613 -1.645798 0.931023 3.131570 4.584129 -1.236154 1.714471 4.829455 0.594725 -0.646983 1.290514 0.393663 0.556898 0.902073 0.224003 -1.860354 -2.351666 -0.208802 -1.509875 1.266520 4.570592 6.233164 0.629420 0.090052 3.428556 1.500319 1.247870 3.361726 0.657525 -0.909808 -0.195132 2.645467 -6.723043 -0.699834 -9.915625 -1.221953 -9.826098 -2.594344 0.182006 4.008419 -0.772967 2.649977 0.673988 4.479661 -0.434184 -1.467744 5.205618 5.339354 -4.254118 -2.434669 -3.107614 -3.119058 2.031930 -3.041973 0.979877 2.730357 1.522857 -4.044003 -2.720652 1.712277 2.247653 -1.793913 -3.809736 1.134402 3.644703 -3.816085 -3.622294 -0.011580 3.899846 -0.961241 -7.563313 -1.296269 -4.264620 3.323151 0.053011 -1.447587 -4.063839 0.124211 2.125350 -1.523836 -2.457593 -0.805142 2.853922 2.650447 2.377416 0.269682 0.521390 1.051713 7.611003 1.421920 -3.518397 0.319518 -0.020623 -1.689729 2.328620 -3.908989 -2.630285 2.714255 -4.474946 1.101208 3.431717 -2.783802 -1.993026 4.731837 1.837702 1.330724 14.792711 1.120167 5.847853 4.564176 -4.471660 1.416523 -2.015795 0.814788 2.179721 2.362570 -0.643177 -7.054338 -4.847057 2.385809 4.648135 3.725278 -5.625451 -2.068796 -0.418135 0.050111 0.093626 -0.635125 1.448660 -0.290002 -3.645090 -0.941267 4.239816 9.316217 -2.017195 -0.191724 2.426316 2.429519 -2.732134 -6.086481 -2.272015 -3.230877 1.166256 1.239252 0.775934 3.043682 6.212903 -8.228407 4.040448 -0.771209 0.955390 3.096596 1.922611 -5.235672 -5.799068 -0.876328 2.686465 5.217844 -1.151629 0.806588 2.761525 -4.427038 -0.294858 0.784664 -0.158977 -0.933948 1.802555 0.483670 -2.160404 -2.666771 1.698686 -1.500476 -0.817490 0.112668 3.343806 0.624515 -6.343934 4.422577 -0.758313 -2.094036 1.035346 -1.704772 5.001691 -4.570294 -4.320146 3.173618 -0.294678 -1.491642 -3.105462 1.143955 3.210129 0.945425 1.958292 -2.777208 -5.089582 3.393860 -2.492180 3.626044 1.932768 -0.767301 2.703303 -2.059456 -1.022074 -5.562954 -2.164352 -1.039075 0.254686 -4.936091 -1.519275 -0.800281 4.644985 3.504400 -0.041323 -3.817515 0.639899 5.375831 -5.326988 -2.045352 3.157848 3.448210 -5.182912 1.864498 3.879395 -6.139648 0.313176 -2.139428 -0.739642 -1.021290 -3.787162 3.424536 0.962057 3.244225 -0.462897 1.236197 0.720745 2.400719 1.784522 1.002171 0.603399 6.715272 5.852723 -1.550557 -2.126984 -5.202128 1.939562 -6.012645 -6.390804 2.489743 0.861578 -4.060276 1.128477 0.838039 5.917371 1.337736 -0.440617 -1.558660 0.914451 +PE-benchmarks/sudoku.cpp__main = -0.865356 -0.672325 0.169385 -2.011981 1.517848 0.952139 0.808921 -0.268843 -2.532714 -1.044102 0.484910 -2.686774 -1.001831 3.072060 -0.559313 1.767197 3.721439 0.877083 -1.002903 0.038068 2.137916 -0.822795 2.921551 2.787967 -1.920053 -0.059096 -0.679502 1.040207 -0.165737 1.303846 0.396527 -2.003467 0.805870 -1.550066 -0.091153 -1.726124 0.334270 1.037802 0.923394 -4.019447 0.731741 1.477063 1.012606 -0.898728 -0.574719 -0.144155 2.010440 2.164678 -0.639498 0.559908 1.494920 0.384985 -0.079611 0.652452 0.381825 0.272111 -0.231616 -0.787338 -1.572670 -0.640414 -0.280295 -1.306968 0.387824 1.974565 2.693773 0.210606 -0.081513 0.936287 0.173560 0.808896 1.182835 0.236567 -0.125667 -0.425512 1.037383 -1.843005 -0.665276 -3.574231 -0.169880 -4.799807 -1.686270 -0.146155 2.638449 1.994133 0.769376 -0.748439 2.354916 -0.779953 -0.199403 2.415226 2.907246 -1.697912 -1.232099 -2.072743 -1.512201 1.168442 -1.191598 -0.442164 0.986079 0.487070 -2.117584 -0.986343 0.743119 0.719652 -0.781459 -1.252225 0.470635 2.188561 -2.319254 -1.586989 -0.586339 2.002206 -0.038354 -3.530082 -0.071681 -1.297962 -0.192123 0.557436 -0.988951 -1.577848 0.554719 0.701951 -0.965322 -0.729350 -2.043612 2.214700 0.421723 0.598215 0.544291 0.343507 0.494180 2.730466 0.804496 -1.585260 0.218389 0.349637 -0.467887 0.617098 -1.558996 -1.477109 0.354845 -2.557421 0.176293 1.171272 -1.585603 -0.707074 -0.502263 0.546611 0.897009 6.130340 -0.026515 2.690220 1.651395 -2.312025 1.959121 -0.455468 -0.262573 0.411179 1.349981 0.203219 -2.158592 -2.097414 1.237479 2.516711 2.061896 -1.539879 -0.807854 -0.448203 -0.094474 0.176567 0.281913 0.775998 0.164092 -2.088969 -0.525897 1.704658 4.360107 -0.492658 -0.520378 1.278564 1.381917 -0.819578 -2.583165 -0.782302 -1.875605 0.168307 0.488162 -0.229757 1.340781 3.147956 -3.826982 2.466323 -0.143455 0.109113 1.510091 0.202309 -2.016556 -3.549222 -0.714324 1.769478 3.275890 -0.595950 0.382429 0.528546 -2.066807 -0.203176 0.457089 0.160995 -0.579034 1.023330 -0.521609 -1.228712 -1.170896 0.012638 -1.160864 -0.664490 -0.540556 1.266021 1.552334 -2.346427 2.422060 -0.261729 -0.716146 0.374678 -0.292879 2.036418 -1.989233 -2.429352 1.277598 -0.341912 -1.498403 -1.117013 0.194056 1.556180 0.316599 -0.080955 -0.521370 -2.634630 1.977534 -0.620856 2.051138 1.041559 -0.278759 1.427066 1.650236 -0.905780 -1.575739 -1.806567 -0.169131 -0.750490 -1.781717 -0.552085 -0.703844 2.176263 1.873919 0.230283 -1.868397 -0.263256 2.681676 -1.241676 -0.840725 1.965145 -1.048830 -1.867712 0.714586 2.468102 -2.785601 -0.150144 -1.712168 0.807919 -0.540243 -1.789767 1.006703 0.011271 0.954878 0.134746 0.046349 -0.437634 0.801532 1.074791 -0.100577 -0.070717 3.540397 1.136611 -0.820365 0.210674 -2.194842 0.869783 -2.949313 -2.377355 0.543901 0.818635 -1.752119 0.433863 0.388326 2.040646 0.000342 0.335346 -0.668831 0.235415 +PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -2.222326 -2.403461 -0.287839 -5.041511 3.218493 2.912474 1.780598 -3.086048 -4.976991 -0.589225 2.345241 -4.812517 -0.356788 5.783783 -1.735090 4.905853 6.689323 1.087364 -2.597108 -0.945875 5.352026 -0.686429 6.614985 5.988446 -4.294924 -0.361702 -0.236333 2.007019 1.568965 0.750408 0.045859 -2.266196 2.449680 -5.561934 -1.570620 -3.323086 0.766306 2.056438 4.972993 -6.566012 1.543141 -0.295026 -0.123746 -1.283255 -1.446617 0.054496 3.163323 4.224926 -1.400716 2.092320 3.909842 0.398903 -0.815700 1.268234 1.257635 1.122784 0.699543 0.507618 -1.633048 -2.593973 -0.635862 -0.663465 1.223194 3.939475 4.841924 0.575305 -0.385720 3.350047 1.536724 0.798923 2.977754 0.933730 -1.310978 -0.208417 2.110679 -6.831894 -0.883142 -8.693755 -1.094489 -8.342485 -2.880773 1.006482 3.581611 -0.448736 3.025651 0.242708 4.569043 -0.792290 -1.990238 4.089289 5.187730 -4.797897 -2.083818 -2.528800 -2.861376 1.065387 -2.076219 0.944182 2.103811 0.967011 -4.246827 -2.712977 1.736240 2.230815 -1.709124 -3.904563 0.894746 3.975889 -4.122477 -3.691804 0.723835 4.014717 -1.343987 -6.722982 -1.271201 -3.623145 3.273249 -0.279169 -2.306587 -4.575358 0.699449 2.368538 -1.809887 -2.501482 -0.129130 2.930384 3.228291 2.266566 0.227285 0.520366 0.795646 7.835354 1.373455 -3.509545 0.679892 -0.213535 -0.712892 2.183909 -2.938787 -2.415669 1.307733 -4.748316 1.106201 3.581236 -2.735314 -1.148206 4.712956 2.208790 0.652075 14.817914 0.529595 6.126672 4.534364 -4.476974 1.070560 -2.141654 0.772471 1.775686 2.320965 -0.341668 -6.750972 -4.701689 3.121868 4.721001 3.458070 -5.350163 -2.204570 -0.423589 -0.176836 0.032843 -0.434633 0.772714 0.078816 -3.800584 -1.034357 3.990875 9.167087 -2.337430 -0.978275 2.528164 2.076774 -1.982327 -5.443595 -2.425527 -3.766210 1.120573 2.007689 0.826409 3.181339 6.254140 -8.158652 4.013692 -0.862165 0.462091 3.164915 2.610945 -4.999233 -5.603427 -1.785902 2.574111 5.053259 -1.512033 1.329035 2.518769 -4.326588 -0.253011 0.989697 -0.770246 -1.366719 2.076270 0.877229 -2.671413 -1.905356 1.520977 -1.796639 -1.192619 0.039562 3.424936 0.156702 -6.775565 4.127124 -0.133893 -1.912998 1.591706 -1.672928 5.710376 -3.951682 -4.447983 3.689204 -0.143758 -1.328076 -1.905748 0.887730 2.780623 1.003684 1.804954 -2.822200 -4.846539 3.221438 -2.348954 4.256986 1.986510 -0.763737 2.785176 -2.984583 -1.085101 -4.518012 -2.844821 -0.248349 0.498403 -4.767037 -1.964202 -0.826704 4.598461 2.836502 0.269086 -3.863068 0.504741 4.801674 -5.064322 -0.203110 3.132545 3.453962 -5.171105 1.066268 4.005732 -5.179210 0.815852 -1.938551 -0.816662 -2.061131 -3.387774 3.230520 1.642196 3.038083 -0.795535 1.191525 0.673588 2.237559 1.925551 1.187521 1.209289 5.916650 4.942032 -1.470755 -2.316662 -4.915646 2.284433 -5.489698 -6.107123 2.667199 0.859015 -4.074541 0.447322 0.177656 5.862421 1.346070 -0.345939 -0.601413 0.920544 +PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -2.344173 -2.267758 -0.796806 -4.586365 3.455917 2.966466 1.970810 -1.860238 -5.433976 -1.613957 1.719813 -4.773846 -1.060691 6.673160 -1.222713 5.656360 7.999464 1.623272 -2.238862 -0.023397 6.015248 -2.322399 6.992983 6.302763 -4.235654 -0.434585 -0.386401 2.261694 0.298969 1.703888 0.398139 -3.249054 3.000464 -6.465789 -1.625926 -4.466766 1.073948 2.687949 4.185884 -8.060454 1.632597 0.407247 -0.116737 -1.805094 -2.269826 -0.225632 3.696031 4.956555 -1.736891 2.188098 3.587235 0.116796 -1.074782 1.732130 0.808891 1.504966 -1.714933 -0.073756 -2.689261 -2.169615 -0.593984 -2.861432 1.586609 4.159778 5.821393 0.073150 0.061895 4.160100 0.083282 1.080012 3.028350 0.468376 -0.804486 -1.574299 2.787481 -7.491899 -2.104668 -9.167779 -1.742425 -10.719778 -3.290309 0.242071 4.295594 0.902868 3.387204 -0.383120 4.877362 -1.469162 -1.210796 5.849824 5.988509 -5.443105 -2.681459 -4.212626 -2.691190 1.808956 -2.901157 -0.393226 2.822622 0.118011 -4.613602 -3.044698 2.253867 2.620731 -1.697996 -5.646223 1.184552 4.786311 -5.155159 -5.051003 -0.742321 3.921166 -1.742150 -7.799808 -0.206564 -2.942923 2.978498 0.665212 -1.934961 -5.115117 0.896660 2.873588 -1.329002 -3.551897 -0.494848 3.982150 2.057500 2.163637 1.261792 0.553126 0.775183 8.543040 3.047909 -3.144080 0.313406 0.333022 -1.451541 2.212466 -3.291891 -3.391985 1.394843 -6.144301 0.264211 3.976396 -3.304205 -1.193033 4.332294 2.054664 1.592458 16.111618 0.706353 6.111139 4.449052 -5.488678 2.519642 -2.454842 0.114284 1.818391 2.821977 -0.344638 -7.885243 -4.792744 2.729550 5.179006 4.485841 -5.497328 -3.122544 -1.396612 0.352577 0.401792 -0.735387 1.648784 0.668180 -4.597440 -0.873638 4.194257 10.600742 -2.693206 0.393051 3.422850 2.450693 -2.924014 -7.734090 -2.663394 -4.788141 0.522918 1.624989 -0.147350 2.613291 6.876424 -7.690421 4.564369 -1.956366 0.350742 2.434722 2.239711 -5.090989 -7.986571 -1.789506 3.486012 6.595620 -1.486107 2.374688 2.045661 -4.555906 -0.336118 1.153370 -0.317642 -0.777296 2.129009 -0.409264 -2.991255 -2.581253 2.324813 -2.316933 -1.753129 0.507582 3.252162 1.894823 -6.162955 4.862692 -0.597739 -2.110368 2.206944 -0.527075 6.443018 -4.656577 -5.782792 4.307765 -0.167984 -1.796249 -2.175166 1.140820 3.659976 1.180839 -0.703857 -1.496067 -6.479041 3.568556 -1.598937 4.224095 2.093036 -0.653929 4.154096 -1.209847 -2.217281 -4.995816 -4.031896 -0.860332 -0.976704 -4.644587 -2.851678 -0.962051 5.581241 3.826079 1.038243 -4.156497 0.915282 5.895998 -5.297768 -0.998210 4.433282 2.939039 -5.182856 1.197427 5.306116 -6.454391 0.115447 -2.381966 1.018371 -1.266777 -4.184783 2.775573 0.713436 2.919731 -0.253642 1.249763 0.430150 2.117829 2.498811 1.495048 -0.106902 7.267734 5.209447 -2.280759 -2.424825 -4.793272 1.677576 -6.457217 -6.383985 2.254780 2.873031 -3.708139 1.085322 1.371429 5.435486 0.613069 -0.077503 -0.702126 -0.285311 +PE-benchmarks/euler-circuit-directed-graph.cpp__main = -1.496538 -1.230485 1.965277 -5.022956 5.162642 2.228245 1.756953 -0.921987 -4.723850 -0.203359 0.319106 -4.084375 -1.457950 6.492201 -2.033082 4.265450 6.761076 1.312773 -1.595299 -0.185806 5.280987 -1.135595 6.268988 3.231906 -5.182173 -0.463880 -0.701635 2.971740 0.310414 4.868387 -0.751096 -3.253872 1.434167 -3.383691 -0.126954 -4.241440 1.517434 1.561913 1.635738 -7.870954 1.420552 2.479977 -0.056816 -1.349234 -0.366669 1.909379 3.861031 4.776635 -2.627402 1.755710 2.861155 0.919116 -0.380929 1.700784 -0.505859 1.311945 1.932411 -0.676480 -4.325589 -1.691264 -0.948081 -2.735530 2.279890 4.234630 5.900718 -0.353761 0.522321 3.609925 0.585205 1.275996 2.737082 0.550816 -0.923776 -0.037256 3.030662 -3.163004 -0.817370 -5.978336 -1.376068 -9.205755 -3.045071 -1.424664 3.504427 1.607858 1.610489 -0.979665 5.140506 -0.533030 0.238937 5.493364 5.247166 -3.797957 -2.172507 -5.782861 -3.854177 1.600534 -2.517154 -2.440174 2.475610 0.757511 -4.072104 -2.624003 0.323820 1.774680 -1.280406 -2.150481 0.120950 4.580429 -5.513792 -4.766707 -1.252518 3.810917 -2.245441 -7.507618 -1.120267 -1.618549 2.684780 0.243799 1.124308 -3.427412 0.965750 3.737360 -1.993849 -1.253313 -2.691535 4.963122 1.776978 1.237784 1.339496 0.078830 -0.155224 4.848770 3.479185 -2.686596 -1.288624 1.161567 -1.310190 0.648402 -3.111670 -2.054878 0.629252 -5.587574 0.329511 3.693010 -2.681401 -0.708287 -0.595231 0.788424 3.107657 12.153165 -0.403329 4.838394 1.802870 -5.971888 2.075267 -0.109109 -0.545253 1.048360 2.159310 0.359190 -4.741987 -4.422306 2.272869 3.738362 4.262102 -3.998002 -1.000055 -2.266696 -0.660546 1.384859 -1.024602 3.107060 -1.200968 -4.810455 -0.812557 0.906117 9.643239 -1.244854 -3.971039 3.726530 2.681529 -3.596351 -4.346584 -2.144321 -2.463940 -0.696201 0.819923 -1.286481 2.391196 6.410115 -8.941423 5.098686 -0.176793 -0.694819 2.773428 -1.006363 -3.167603 -5.957077 -2.575453 4.074618 5.906749 -1.464212 0.016835 1.170559 -3.342020 1.412590 0.551619 0.710694 0.241298 1.656181 -0.505997 -3.874073 -2.660343 0.193239 -1.444797 -0.192494 -0.831172 1.819110 1.056394 -7.367017 4.821214 -1.737511 -1.380358 2.704724 0.847390 4.413209 -4.007629 -5.350398 2.774457 0.231629 -2.352109 -3.444579 0.920199 3.367731 1.402471 0.584479 -2.071126 -6.457879 1.956397 -2.129342 2.226238 2.227819 -0.042369 4.389747 1.144630 -2.247628 -4.251038 -4.144520 -0.093243 -0.319569 -2.272401 0.012354 -1.253355 5.127795 3.497236 -0.124453 -2.291474 -2.038132 5.690874 -2.938366 -1.346865 4.662401 -1.843576 -4.451967 0.972477 5.700454 -4.736537 -1.110460 -2.122982 1.867148 -1.583286 -2.055732 2.005799 -0.348404 0.861739 0.108012 0.791086 -1.968821 1.043695 1.550405 -0.009958 -1.224263 7.590856 4.909229 -3.064609 0.719102 -2.717971 2.103768 -6.308397 -4.389954 0.970763 -0.379643 -1.946396 2.690957 1.298029 4.511575 0.135945 0.426434 0.219605 -1.380278 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -5.630856 -3.490894 0.870978 -13.236707 11.280343 9.773416 4.943309 -5.158094 -13.870313 -3.091735 3.146635 -13.984912 -4.474921 17.357958 -4.624912 12.561430 20.564874 3.212179 -6.429876 0.202733 15.995692 -2.944128 18.615395 14.986163 -12.683530 -1.185636 -1.503682 7.378214 0.477419 8.410394 -0.181711 -10.015181 5.507919 -12.193096 -1.707005 -9.711129 3.100580 5.108289 8.724680 -20.803692 3.888369 4.644949 2.531627 -4.468635 -4.587998 -3.348249 11.338574 13.213168 -4.111749 2.024478 10.489428 3.004085 -1.752105 4.640555 2.407196 3.332509 1.133419 -1.865944 -7.649463 -6.316433 -2.394786 -4.993160 3.595825 12.353274 16.721816 1.749163 0.626817 8.387454 0.459673 3.866945 7.199193 1.812093 -2.600641 -1.052953 7.177808 -13.794156 -2.731554 -21.562047 -2.639843 -22.762260 -8.621516 -1.853889 9.021663 5.837583 8.596630 -2.177380 13.845198 -3.586985 -1.830740 12.801143 16.410898 -12.342769 -6.248079 -12.853693 -9.667969 4.777362 -7.623886 -1.478348 5.438983 1.516610 -11.858982 -7.812149 3.910246 6.288620 -4.284411 -9.947570 2.192962 12.746437 -11.225984 -11.565229 -2.103796 11.140894 -4.364833 -21.366278 -4.402598 -9.180612 2.177130 0.526138 -3.294435 -12.640597 2.465357 8.228165 -5.097766 -7.837490 -4.864491 11.484509 6.416952 4.060504 2.438002 0.452044 1.968755 19.474814 6.422889 -8.214116 -0.028657 0.271334 -3.531731 4.254759 -9.512821 -6.504401 1.986492 -14.363111 0.034960 11.289419 -7.772663 -2.489940 3.554037 2.920500 6.171516 42.510541 -0.053624 15.225104 9.435153 -14.804306 9.056567 -2.700134 -0.774330 3.613901 6.389983 0.288358 -18.658622 -13.436557 8.101598 13.075550 11.407359 -12.404033 -5.092793 -3.686972 -0.440109 0.148729 -1.579294 5.261352 -0.454757 -11.880091 -2.978250 9.783773 27.060023 -5.726386 -6.181086 10.289874 7.703624 -7.439904 -15.709607 -7.116601 -11.847034 0.976497 3.476458 -1.193229 8.149649 18.582934 -21.925644 12.955492 -1.154331 -0.933565 10.612047 1.445900 -11.471123 -16.205858 -3.481336 10.526548 16.598997 -3.915445 2.221683 3.381577 -12.015767 0.259189 2.519285 1.037410 -2.476707 5.178383 -1.406814 -8.437570 -8.475114 1.323321 -6.323474 -4.497990 -2.259693 7.435350 4.627204 -15.917589 14.458654 -0.701777 -3.909604 4.955137 -2.867283 13.427883 -11.549434 -14.968468 9.673063 -0.752165 -4.317994 -6.173240 3.417866 9.804750 4.216525 2.616636 -6.712070 -16.813912 9.080351 -4.050265 10.986590 5.608273 0.629816 7.840780 3.375360 -5.307251 -13.266988 -10.370250 -1.022287 0.391977 -12.795806 -7.003205 -3.296276 14.380315 10.622975 1.018020 -9.657242 -2.986894 15.977016 -11.400137 -3.759912 11.778836 0.080186 -14.276961 1.212196 14.081317 -14.702656 -2.416717 -7.095802 2.689720 -4.222970 -11.761986 6.430802 0.862849 6.850673 0.801304 1.466559 -1.439381 4.766526 6.327199 1.977601 -0.446822 19.669956 9.584417 -5.062549 -2.813234 -12.527933 5.031530 -17.880323 -15.703224 5.949963 1.427093 -9.963633 3.368357 3.314606 14.377989 0.326593 2.664892 -1.641814 -1.717102 +PE-benchmarks/eulerian-path-and-circuit.cpp__main = -7.015999 -3.907722 10.598256 -20.118090 17.917780 8.329071 6.026165 -2.774332 -17.078670 -2.120386 1.052636 -13.709816 -8.873568 24.301145 -7.970091 12.548437 23.127502 4.150581 -7.466781 -2.609868 19.251175 -4.559339 22.169325 11.322039 -20.139596 -2.535045 -0.413240 14.584212 2.301103 18.991276 -2.807735 -11.419245 2.042693 -7.250542 3.014635 -12.959488 6.416352 4.724947 1.434253 -28.304456 4.649147 10.955733 0.041710 -5.517523 -1.551322 5.991425 13.690764 18.311240 -8.417240 3.050737 12.676218 4.235982 -1.732949 5.177999 -0.009616 3.634855 10.364599 -2.987554 -14.295556 -6.143208 -2.658227 -10.068171 7.405526 16.864938 22.382838 -1.857902 2.118307 10.833154 1.913303 6.558781 8.787326 1.688421 -3.657284 0.427775 11.601234 -9.325339 -1.951276 -21.876619 -2.085581 -31.672035 -11.979614 -6.510943 13.209350 7.582984 4.187926 -4.579107 20.871632 -1.270403 -0.138302 17.564725 19.592107 -11.799994 -7.698925 -21.964957 -14.568230 7.026485 -10.582382 -8.956261 7.511818 4.780635 -14.920537 -7.686608 0.272929 5.852087 -5.885655 -4.807115 -1.698586 18.411258 -18.718648 -14.349771 -6.185874 15.107957 -5.241132 -28.158515 -5.713259 -8.394670 8.214441 -0.967174 4.013341 -9.941995 3.622000 14.059973 -7.706984 -3.593601 -13.213467 18.678721 7.316186 1.444105 4.422434 0.827955 -0.265053 14.667099 11.983840 -10.379596 -6.855122 5.373824 -6.697063 1.530741 -11.747310 -5.217122 2.490150 -18.470928 0.831543 11.885955 -9.050646 -3.547484 -5.346924 1.215632 12.263286 45.820996 -2.221353 15.951499 4.835118 -20.018202 9.791906 1.512396 -3.194403 3.924624 7.906501 0.867032 -16.051811 -16.569659 9.623010 15.017503 15.396500 -13.168834 -1.582075 -7.988073 -3.210033 2.116269 -1.639619 11.053017 -5.657610 -15.414509 -4.783702 3.376473 32.606108 -4.333160 -20.196141 13.695474 10.799901 -12.708983 -13.825151 -6.767334 -6.681277 -3.121506 2.616590 -4.533209 11.322272 24.239415 -34.102057 18.980846 2.130689 -4.411058 12.949044 -7.203575 -9.650303 -21.707530 -7.180992 14.929455 22.492354 -5.607043 -1.694796 2.927648 -14.125589 4.821097 1.663903 3.872478 -0.200399 6.749900 -2.394101 -13.126195 -10.927534 -3.911363 -6.850785 0.328063 -5.180506 5.786041 2.345968 -28.717385 20.017147 -6.721930 -3.352474 7.948073 2.152258 14.832922 -15.099832 -20.359373 9.805329 2.316042 -9.243637 -13.835698 2.764449 14.049865 3.193659 3.156201 -8.767712 -21.796975 8.241926 -7.985622 9.652830 6.748020 1.006698 15.160813 8.621408 -6.911181 -14.065205 -13.984096 2.355181 -0.725561 -9.440954 0.503963 -4.205018 18.118928 12.173674 -1.530151 -7.093750 -8.489483 21.836871 -9.612003 -7.087016 14.902665 -8.885533 -14.944692 4.956156 19.954956 -16.620982 -6.489229 -11.264049 5.038435 -7.064254 -10.207855 7.496372 -1.506391 4.384479 2.375957 2.825828 -7.980635 4.141842 6.493906 -1.941765 -4.506842 28.543783 18.375690 -11.751116 3.891078 -12.263421 9.034974 -22.106116 -14.551737 3.025570 -4.037931 -5.542156 9.054141 2.828062 16.142241 0.019694 2.531497 0.044383 -5.489870 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -3.354097 -2.506525 0.896335 -8.017154 5.722746 5.118402 2.505060 -3.261685 -8.484697 -1.308050 1.985099 -8.096720 -1.592966 10.092267 -2.620844 7.188730 12.160065 2.305928 -4.215185 -0.114650 9.034479 -1.912539 10.237173 9.177160 -6.870819 -0.743767 -0.365303 4.372916 0.961387 4.242159 -0.684488 -4.997329 2.533646 -7.317909 -1.195454 -6.090339 1.628797 3.225269 5.760887 -12.278744 2.571919 1.939556 1.943767 -2.957898 -2.604417 -1.746137 6.020481 7.443469 -2.116457 0.979727 6.237934 1.773349 -1.294066 2.204046 1.755257 2.492710 1.730870 -0.029317 -3.820191 -3.421198 -0.927401 -2.037691 2.392118 7.260585 9.500437 1.257631 0.112529 4.473201 1.392591 1.969908 4.160240 0.722184 -2.200928 -0.344093 3.356457 -9.221065 -0.815332 -13.511053 -0.988970 -12.903966 -4.757577 -0.192907 5.244869 2.279387 4.541631 -0.568729 7.705006 -2.492712 -1.284314 6.947736 9.273684 -6.963702 -3.707121 -6.852435 -5.995018 2.998822 -4.103090 -0.777509 3.277652 1.097465 -6.689465 -4.680849 2.717579 3.973074 -2.645156 -4.900309 1.877171 7.203253 -5.964060 -6.757112 -0.496038 6.841388 -2.307496 -11.962274 -2.132273 -6.158599 1.644226 0.167034 -2.756883 -7.852491 1.302469 4.539699 -3.169962 -4.159381 -3.022747 6.360464 3.482919 2.339744 0.852554 -0.378501 1.498051 10.669510 3.036402 -5.596664 0.650319 0.372708 -2.694199 2.130282 -6.114448 -4.219847 1.361719 -7.977901 0.141523 6.300326 -4.854442 -1.236365 3.667189 2.208673 3.036865 25.381920 0.059471 8.916014 5.765372 -8.247245 5.325418 -1.352438 -0.446831 1.895869 3.570272 0.265352 -11.664097 -7.663985 4.449940 7.863878 6.781545 -7.136578 -3.720790 -2.119411 -0.842148 0.702659 -0.506999 2.448690 -0.701895 -6.670415 -2.090486 5.737767 15.656376 -2.943218 -3.511849 5.120272 4.127741 -4.539545 -9.641911 -3.698188 -7.068347 1.086495 1.421348 -0.628858 5.361064 10.665738 -13.859935 7.599730 -0.877260 -0.725180 6.494448 1.046148 -7.011992 -9.696107 -2.034521 5.796633 10.020857 -2.358932 1.091856 2.524975 -6.968628 -0.434214 1.362873 0.453560 -1.810422 3.005813 -0.124053 -4.848911 -4.320805 1.427884 -3.507546 -2.963824 -1.209342 4.532004 1.781019 -9.171852 8.333971 -0.042123 -1.793903 2.821513 -2.120244 7.056511 -6.922778 -8.214286 5.359514 0.452414 -1.380071 -3.431078 1.584222 5.976343 2.037851 2.066116 -4.041367 -9.700689 4.581617 -2.872700 6.585062 3.091579 -0.356603 3.765116 1.728799 -1.967165 -7.678820 -4.909053 -1.211367 0.608971 -7.329396 -4.279080 -1.966428 8.245727 5.778809 0.268589 -5.502022 -1.406825 9.024833 -6.278763 -1.940024 5.909294 -0.016516 -8.342113 0.341205 7.513904 -8.984806 -0.792682 -4.014979 0.679308 -2.479602 -6.384553 4.031271 1.081293 4.115893 0.155133 0.713261 -0.379306 2.879843 3.744691 1.046912 0.683190 11.001497 5.747824 -2.221470 -1.650538 -7.554109 2.992062 -10.084372 -8.789034 3.369163 0.895224 -6.583139 1.599482 1.844882 8.414684 0.135690 1.945859 -0.821693 -0.342435 +PE-benchmarks/Iterative_QuickSort.cpp__main = -0.733489 -0.718798 0.004360 -1.968266 1.443109 1.320058 0.817720 -0.833844 -2.634171 -0.461710 0.825385 -2.739208 -0.677861 2.666834 -0.768607 1.684819 3.627898 0.783836 -1.250311 -0.374318 2.246223 -0.465600 3.450142 3.168617 -1.899961 0.072087 -0.472549 0.862903 0.488616 1.096920 -0.144197 -1.382598 1.193409 -1.950472 -0.260338 -1.737669 0.055697 0.625118 1.624313 -3.705023 0.661748 0.677134 0.488530 -0.654211 -0.366881 1.126605 1.871031 1.912850 -0.116866 0.824489 1.799916 0.386511 0.003715 0.576167 0.839393 0.527046 1.082544 -0.071478 -1.144574 -0.804861 -0.389768 -0.734090 0.105759 1.998397 2.824213 0.240367 -0.225198 0.788922 0.494748 0.601594 1.322005 0.387941 -0.125524 0.055431 0.778988 -2.464869 0.004877 -3.752444 -0.394849 -5.218253 -1.385602 0.024842 2.218494 0.209313 0.938190 -0.441849 2.240205 -0.512951 -0.523717 1.924205 2.639798 -1.893374 -1.102743 -1.161239 -1.004072 0.660031 -1.088692 0.022712 1.708773 0.284937 -1.993695 -0.760282 1.101787 0.763181 -0.828429 -1.124973 0.545258 1.894658 -2.089737 -1.284735 -0.328682 2.016864 -0.140792 -3.657643 -0.644082 -1.686656 0.889191 0.241315 -1.122296 -1.724807 0.572602 0.906546 -0.908345 -0.773265 -0.823083 2.032824 1.134336 0.889887 0.175590 0.396894 0.538272 3.291670 0.696397 -1.530999 0.417882 0.058295 -0.787465 0.914746 -1.580543 -1.169614 0.712989 -2.132566 0.950371 1.271755 -1.426713 -0.339121 1.212987 0.891502 0.501457 7.395296 -0.198865 3.219676 2.029788 -2.158224 1.150931 -0.671249 0.127462 0.478740 1.170560 0.104883 -3.187215 -2.017158 1.295606 2.412685 1.745995 -2.838274 -0.325368 -0.345997 -0.130168 0.052479 0.155504 0.461035 0.217575 -1.754654 -0.575847 1.738124 5.101429 -0.833076 -0.598444 0.913202 0.669893 -0.906339 -2.508319 -0.839747 -1.131940 0.571060 0.511743 0.098813 1.380571 2.846122 -4.208797 2.249501 -0.526218 -0.234118 2.238242 0.937390 -2.250967 -2.922703 -0.797492 1.388316 3.014532 -0.366412 0.011455 0.901211 -2.038065 -0.301703 0.271433 0.154184 -0.647106 0.885767 0.497336 -1.227058 -0.929573 0.016612 -0.361180 -0.410687 -0.389352 1.422387 0.603553 -3.878751 2.127920 0.130579 -0.841772 0.126746 -0.353939 1.856043 -1.887258 -2.022051 1.122082 -0.289578 -1.208303 -1.284614 0.145427 1.388411 0.211123 1.369349 -1.289774 -2.656907 2.124274 -1.052399 2.038889 0.997708 -0.272211 1.438654 -0.300147 -0.608520 -2.257455 -1.587809 0.017501 -0.404870 -2.012700 0.319845 -0.711133 2.034575 1.642892 0.196483 -1.861496 -0.125173 2.660016 -2.003914 -0.475736 1.620307 1.305380 -2.229402 0.825578 2.001404 -2.758969 -0.054736 -1.126824 -0.810598 -0.768606 -1.495526 1.420432 0.147391 1.244186 -0.092023 0.343806 -0.210064 0.860269 0.518095 -0.003901 0.421241 3.268915 2.737582 -0.763603 -0.110831 -2.124270 1.192640 -2.626082 -2.723159 0.832893 0.281167 -2.069292 0.267137 0.447377 2.553082 0.385025 -0.329738 -0.745561 0.554387 +PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/find-parity.cpp__main = -0.265793 -0.121526 0.459949 -1.104253 0.661608 -0.231743 0.300292 -0.188874 -1.165694 -0.836493 0.619589 -1.719636 -0.961141 1.268909 -0.600537 0.016788 1.550952 0.077626 -0.644981 -0.785084 0.825240 -0.104356 1.618140 1.560277 -1.505247 0.013925 -0.099949 0.910369 0.981642 0.090595 0.854894 -0.655133 0.129348 -0.100708 0.417245 -0.239122 0.166526 -0.118075 0.076479 -1.797691 0.129164 0.792313 0.753170 -0.169087 0.063603 0.936259 1.143022 1.044033 -0.566386 0.252879 1.571949 0.239215 0.148734 0.100174 -0.058182 -0.999861 1.023971 -0.282540 -0.604483 -0.190015 0.029513 -0.538454 -0.140843 1.373125 1.502145 0.093405 -0.064050 0.123123 0.567948 0.854194 0.603704 0.380993 0.287304 0.422473 0.790976 -0.500183 0.025241 -2.837781 0.113327 -3.412570 -0.961078 -0.210280 1.893033 0.437865 -0.333115 0.318613 1.290484 0.410282 -0.195275 0.932399 1.449834 0.085068 -0.593099 -0.625392 -1.018037 1.045900 -0.780456 0.479174 0.561659 1.145159 -1.028706 0.101990 0.088008 -0.116999 -0.555812 0.249652 0.007603 0.855068 -1.067848 0.293434 -0.350260 0.959909 0.884075 -2.138415 -0.166359 -0.922589 0.396517 0.147232 -0.367336 0.173844 -0.010448 -0.161723 -0.598044 0.595114 -1.648791 1.026368 0.395775 0.693860 0.084496 0.468330 0.728677 0.549267 -0.037632 -0.883546 -0.033118 -0.099691 -0.259279 0.446013 -0.887839 -0.301842 1.198298 -0.661594 0.877450 0.073796 -0.673126 -1.401125 -0.091813 -0.193059 0.347548 2.721152 0.075174 1.598463 0.947381 -0.674343 0.325594 -0.179924 -0.082939 0.431595 0.683172 0.223651 0.006663 -1.030610 0.780698 1.329781 0.752161 -1.130685 0.047428 0.481770 -0.240629 -0.089014 0.392386 0.432882 -0.120597 -0.633771 -0.354836 1.256081 1.393609 0.180334 -1.115115 0.078562 1.256599 -0.025990 -0.688292 -0.016704 -0.024259 0.424450 0.390339 0.404961 0.866625 1.546187 -2.827324 1.152994 0.832729 0.524553 0.878848 -0.157898 -1.254320 -2.162936 0.231917 0.751393 1.078726 -0.066024 -0.609591 0.445970 -1.150616 -0.098571 0.241633 0.123779 -0.507809 0.592265 -0.129220 -0.069594 -0.913813 -0.572054 -0.335137 0.600389 -0.532978 0.779008 0.378790 -2.218763 1.287256 -0.582432 -0.654660 -0.824804 -0.838715 0.599118 -1.228029 -0.957288 0.024501 -0.758956 -1.516251 -1.302088 -0.083834 0.442969 -0.017185 0.689833 -0.617493 -0.374059 1.101993 -0.917077 0.957908 0.612110 0.002211 0.896073 0.627349 -0.118648 -0.938396 0.035177 0.304039 -0.343696 -1.156810 0.529186 -0.309036 0.536113 1.003692 -0.514155 -0.767545 -0.128402 1.106240 -0.697487 -1.391158 0.541534 -0.648544 -0.702858 1.247838 0.760034 -1.275435 0.085413 -1.342879 -0.459442 -0.299148 -0.939202 0.726858 0.114635 0.498071 0.246217 0.042651 -0.389234 0.686888 0.132597 -0.145500 0.139576 1.438987 1.536410 -0.695144 0.353105 -1.610988 0.846857 -1.619475 -1.474604 0.506593 -0.321337 -0.622977 0.039129 -0.454331 1.015264 0.376107 -0.401041 -0.900175 1.134479 +PE-benchmarks/count-ways-reach-nth-stair.cpp__main = -0.298826 -0.502753 0.326119 -0.903023 0.579049 -0.003154 0.340875 -0.306330 -1.197149 -0.260590 0.500086 -0.925351 -0.189961 1.067183 -0.326868 0.616249 1.312958 0.383003 -0.478412 -0.428840 0.851626 -0.546314 1.223961 1.281591 -0.906560 0.073564 -0.106368 0.578021 0.543187 0.382431 -0.129483 -0.199799 0.390157 -0.739699 -0.019320 -0.762725 0.047857 0.402363 0.547746 -1.429927 0.268281 0.031841 0.282363 -0.147294 -0.121100 0.897049 0.567392 0.794682 -0.323364 0.660049 0.906514 -0.134413 0.040693 0.222280 0.289001 0.084845 0.635814 0.323630 -0.396059 -0.167117 -0.120405 -0.612383 0.250055 0.808903 1.144073 -0.044040 -0.088065 0.260830 0.340559 0.264949 0.749328 0.168835 -0.093732 -0.208077 0.504089 -1.122686 0.134045 -2.010588 -0.158071 -2.458256 -0.624139 0.112769 1.224999 -0.296517 0.226558 0.104323 0.914658 -0.016918 -0.350819 0.681207 0.908380 -0.653966 -0.469600 -0.252513 -0.601277 0.367155 -0.472992 0.043123 0.680988 0.358935 -0.759984 -0.262496 0.585356 0.195786 -0.376176 -0.250734 0.142255 0.781496 -0.985188 -0.479965 -0.141518 0.665416 0.119243 -1.262072 0.150541 -0.789166 0.882903 0.048418 -0.461994 -0.364220 0.147358 0.210008 -0.422207 -0.073885 -0.609370 0.756909 0.285607 0.515284 0.031275 0.021425 0.147297 0.919982 0.354853 -0.783542 0.083005 0.079849 -0.343801 0.525166 -0.715992 -0.499456 0.684108 -0.773942 0.287485 0.108026 -0.584902 -0.335296 0.925662 0.465432 0.092438 2.265042 0.100779 1.152554 0.783753 -0.659564 0.384798 -0.130775 0.276740 0.551553 0.604963 -0.175362 -0.912532 -0.864303 0.437049 0.966896 0.701173 -1.246359 -0.522484 -0.022451 -0.005861 0.233363 0.060037 0.122408 0.000634 -0.631869 -0.213190 0.443320 1.573676 -0.222143 -0.469228 0.222652 0.196182 -0.497218 -1.168195 -0.293061 -0.363067 0.305999 -0.025265 0.084140 0.594339 1.155494 -2.285273 0.880317 -0.281368 0.054870 0.765359 0.298032 -0.853814 -1.612726 -0.293375 0.292016 1.123999 -0.000637 -0.059426 0.694199 -0.869451 -0.100683 0.023391 -0.025647 -0.351375 0.433218 0.213261 -0.382110 -0.336566 -0.100189 -0.118864 0.029477 -0.045345 0.677979 0.039761 -1.750422 0.627034 -0.149244 -0.464566 0.083033 -0.086820 0.645465 -0.784400 -0.768949 0.380968 -0.125717 -0.562599 -0.870284 0.093296 0.490513 -0.178000 0.168518 -0.434131 -0.901562 0.751050 -0.724547 0.742585 0.435344 -0.304964 0.772967 0.105075 -0.180293 -0.846714 0.026248 -0.012294 -0.410502 -0.593721 0.072725 -0.256921 0.685410 0.667814 0.171764 -0.341704 0.176358 1.106387 -0.782014 -0.478151 0.639590 0.466055 -0.557681 0.784811 0.763513 -1.156433 0.082135 -0.548680 -0.511982 -0.135920 -0.423815 0.869026 0.201898 0.565938 -0.171432 0.300799 -0.038994 0.517526 0.157995 0.039991 0.090152 1.333894 1.615617 -0.413117 -0.083035 -0.864699 0.449133 -1.023395 -0.926452 0.234851 0.279560 -0.823143 0.198283 0.046087 1.013531 0.298078 -0.289929 -0.341999 0.451739 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = -0.635804 -0.891037 -0.276848 -1.217690 0.771510 0.662276 0.476792 -0.852175 -1.696257 -0.065957 0.733285 -1.461074 -0.063434 1.620247 -0.542597 1.399303 2.036565 0.466581 -0.857190 -0.378182 1.611548 -0.445477 1.998782 1.881138 -1.177990 -0.102883 -0.175772 0.592422 0.636847 0.253188 0.005475 -0.388058 0.771313 -1.615735 -0.334549 -1.148225 0.178736 0.785207 1.408499 -2.073403 0.411460 -0.028186 0.554946 -0.310839 -0.389390 0.813922 0.685356 1.241622 -0.274043 0.781296 1.272611 0.060827 -0.041989 0.343551 0.295626 0.316106 0.506666 0.383697 -0.468849 -0.630359 -0.191864 -0.374815 0.410597 1.228567 1.768287 0.070561 -0.076876 0.776289 0.454299 0.392252 1.048364 0.255967 -0.359945 -0.222394 0.612993 -1.870709 -0.007691 -2.675686 -0.286871 -3.066014 -0.646137 0.307530 1.207618 -0.341328 0.740781 0.237757 1.371544 -0.176223 -0.642395 1.273044 1.358671 -1.221148 -0.635293 -0.523694 -0.859430 0.382319 -0.731748 0.165373 1.113686 0.466332 -1.138879 -0.658366 0.581347 0.583481 -0.501254 -0.939900 0.307730 1.014055 -1.236994 -1.012588 0.105029 1.126554 -0.260038 -2.078519 -0.150914 -1.323964 0.825689 -0.014560 -0.654273 -1.071777 0.198853 0.489239 -0.454939 -0.570158 -0.220313 0.926475 0.656980 0.697891 -0.019898 0.038731 0.132760 2.050544 0.313639 -1.121504 0.187211 0.075729 -0.478533 0.784682 -1.106364 -0.798441 0.805643 -1.405770 0.551032 0.696718 -0.808280 -0.356522 1.497415 0.659117 0.151965 4.066143 0.153934 1.834793 1.369326 -1.193411 0.477911 -0.477578 0.440437 0.693187 0.733038 -0.266474 -1.842412 -1.355789 0.752443 1.406520 1.063769 -1.746284 -0.684756 -0.062763 0.053865 0.206589 -0.090046 0.289513 -0.077656 -1.031238 -0.275734 0.878776 2.757220 -0.545136 0.191211 0.579030 0.573642 -0.872727 -1.864447 -0.625192 -1.089138 0.372107 0.212040 0.207577 0.799970 1.724615 -2.601669 1.236619 -0.424795 0.215808 1.056186 0.635602 -1.471033 -2.045418 -0.487570 0.537822 1.647943 -0.333093 0.164286 0.948087 -1.282322 -0.083066 0.141770 -0.082819 -0.436990 0.588913 0.312852 -0.572279 -0.519900 0.526689 -0.246601 -0.348231 0.078264 1.019659 0.118938 -1.965953 1.024280 -0.092569 -0.629071 0.280566 -0.153243 1.189131 -1.141454 -1.119437 0.841696 -0.058271 -0.332861 -0.952383 0.270779 0.864453 0.123053 0.557215 -0.821259 -1.572936 0.991575 -0.905238 1.126345 0.542366 -0.407866 0.736761 -0.565466 -0.281471 -1.533267 -0.397514 -0.437301 -0.156394 -1.165001 -0.161880 -0.218992 1.289737 0.882962 0.224774 -1.005912 0.332713 1.633540 -1.178850 -0.371084 0.887879 0.956010 -1.323963 0.627207 1.090979 -1.736374 0.196512 -0.566253 -0.423036 -0.370841 -0.829839 1.193192 0.368649 0.941222 -0.363561 0.412705 0.198110 0.683295 0.543560 0.224536 0.280940 1.991217 1.660639 -0.317427 -0.484456 -1.372308 0.570439 -1.562059 -1.577119 0.545278 0.427026 -1.323798 0.274745 0.234310 1.736578 0.411197 -0.226312 -0.408155 0.374942 +PE-benchmarks/min-cost-path.cpp__main = -0.771068 -0.737183 0.231222 -2.106631 1.554564 1.114310 0.818142 -0.985806 -2.374519 -0.617763 1.064560 -2.619921 -0.772170 2.664678 -0.775017 1.712085 2.981134 0.411190 -1.208090 -0.404836 1.872773 0.104541 2.969993 2.675522 -1.993063 0.068138 -0.350109 0.769147 0.566792 0.715630 0.126186 -1.538759 1.134312 -1.498483 -0.383726 -0.981908 0.037589 0.511929 1.493626 -3.042134 0.597977 0.679673 0.287743 -0.617448 -0.412135 0.414073 1.768837 1.954372 -0.355549 0.955955 1.672506 0.292229 -0.092813 0.519642 0.746975 0.016165 0.529911 -0.370850 -1.026100 -0.869343 -0.334325 -0.555923 0.003073 2.047668 2.402850 0.136931 -0.297084 0.913546 0.516903 0.657857 1.278159 0.509507 -0.093200 0.089641 0.957561 -1.879607 -0.148852 -3.263638 -0.364026 -4.237649 -1.533125 0.303740 2.300694 0.473981 0.852736 -0.362618 2.244017 -0.261860 -0.789326 1.738750 2.626001 -1.680133 -1.064700 -1.004482 -1.162290 0.721632 -1.108942 0.325235 0.933966 0.397352 -2.035804 -0.653283 0.553470 0.620839 -0.863539 -0.977895 0.567650 1.789765 -1.942201 -1.133350 -0.095540 1.826044 0.063744 -3.291657 -0.756055 -1.233712 0.933265 0.166587 -1.142284 -1.435132 0.470870 0.591768 -0.947040 -0.704199 -0.995001 1.446170 1.056094 1.225188 0.216340 0.471420 0.787954 2.961136 0.495678 -1.535238 0.399442 -0.215910 -0.068335 1.213839 -1.051831 -1.017355 0.413184 -1.926577 0.630293 1.185564 -1.347931 -0.650305 0.549752 0.804867 0.267267 5.756998 -0.102388 2.721733 1.841517 -2.002098 0.509147 -0.830937 0.088208 0.555995 1.076619 0.114619 -1.854097 -1.991858 1.576172 2.467979 1.694697 -2.228713 -0.198534 0.084879 -0.106497 -0.207338 0.246313 0.454189 0.341123 -1.682630 -0.550749 1.742636 3.685596 -0.771874 -1.115006 0.975938 1.122274 -0.290176 -1.513621 -0.816334 -1.116270 0.584744 0.867905 0.222124 1.444516 2.844485 -3.850815 2.047782 -0.077027 -0.039859 1.650345 0.843251 -2.156903 -2.278723 -0.683195 1.269192 2.291105 -0.354952 0.248199 0.889041 -2.032701 -0.246977 0.373383 -0.137232 -0.678600 0.951638 0.312221 -0.981040 -0.983038 -0.005007 -0.561363 -0.216604 -0.481616 1.543483 0.634318 -3.332387 2.043580 0.135435 -0.951385 0.052974 -0.709246 2.116957 -1.879251 -2.027533 1.134119 -0.646311 -1.354561 -0.890428 0.182741 1.095633 0.331219 1.013667 -1.201120 -1.756134 1.927758 -0.699488 2.091332 1.019099 -0.285771 1.437565 -0.453815 -0.636378 -1.470650 -1.470095 0.573838 -0.215330 -1.865906 -0.030406 -0.675930 1.902231 1.427354 0.064605 -1.698937 -0.228208 1.976123 -2.001396 -0.468933 1.533394 0.751693 -1.935092 0.948264 1.902590 -2.125689 0.283806 -1.269153 -0.438938 -1.039243 -1.525249 1.428415 0.515419 1.226943 -0.123540 0.263627 -0.143467 0.904869 0.544514 0.094013 0.442522 2.604608 2.222922 -0.884337 -0.323616 -2.296438 1.148533 -2.565476 -2.676083 1.150058 0.011782 -1.786389 0.032887 -0.191004 2.153506 0.463995 -0.363369 -0.861711 0.927508 +PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -1.349039 -1.951328 -0.416016 -2.535563 1.764134 0.837392 0.856268 -1.130199 -3.100907 -0.294042 1.090408 -1.880698 0.398838 3.133524 -0.619453 3.148749 3.480964 0.955516 -1.124545 -0.433826 3.268095 -1.585843 2.811972 2.840575 -2.047785 -0.278801 0.096147 1.008082 0.457353 0.754794 -0.161197 -1.272462 1.052950 -3.482966 -0.518647 -2.325879 0.419731 2.064474 2.957791 -3.669657 0.869052 -0.006428 0.504299 -0.723492 -1.060685 -0.437688 0.839217 2.144876 -1.176168 1.670238 2.234032 -0.024120 -0.553672 0.565688 0.483850 1.379392 -0.318466 0.859067 -0.944494 -0.892104 -0.431347 -0.441521 1.507414 1.825109 2.674508 -0.299486 -0.012001 1.919708 0.663442 0.541241 1.952303 0.203516 -1.094995 -1.376865 1.427012 -4.273071 -0.851710 -5.987059 -0.408465 -5.249599 -1.420430 0.675400 1.963185 -0.464967 1.661495 0.325686 2.473534 -0.993776 -1.040764 2.350536 2.236291 -2.279348 -1.110953 -1.647505 -2.000421 0.649849 -1.090815 -0.491211 1.702674 0.194657 -2.005438 -1.784988 1.196419 1.356057 -0.760006 -2.806279 0.616214 2.256782 -1.997624 -2.892353 0.077914 2.522251 -1.005376 -3.194073 0.135834 -2.085052 1.080310 0.177879 -1.223222 -2.467215 0.290119 1.219582 -0.975432 -1.547059 0.464215 1.577745 1.296452 1.208039 0.325952 -0.306199 -0.030656 3.835109 1.247814 -2.127938 0.186083 0.536869 -0.592719 1.258745 -2.021788 -1.736675 1.029798 -2.590124 0.172796 1.350702 -1.553710 -0.374918 3.597323 1.150705 0.304347 7.402178 0.396342 2.942051 2.257927 -2.154517 1.481572 -0.484787 0.717676 1.351852 1.615648 -0.746264 -3.577086 -2.535179 1.209495 2.338206 2.145405 -2.654626 -2.876691 -0.542385 0.124141 0.942941 -0.506033 0.538619 0.047205 -2.048318 -0.348763 1.283774 4.644004 -1.226461 -0.258861 1.343739 1.981372 -2.065058 -3.903856 -1.380471 -3.842175 0.324580 0.376947 0.033462 1.511092 3.326892 -5.039550 2.104819 -1.208698 0.261586 1.272524 1.288549 -2.351460 -4.724705 -1.120600 0.895326 3.117848 -0.883740 1.383334 1.730911 -2.073581 0.074764 0.196305 -0.289024 -0.814027 1.083394 -0.347603 -1.268504 -0.607336 1.571615 -1.385788 -1.317334 0.434364 1.594615 1.008469 -3.040501 1.650277 -0.091151 -0.818062 1.603805 0.085988 3.017457 -1.900698 -2.416891 2.067385 0.482348 0.199384 -1.113523 0.584891 1.838065 0.072105 -0.080475 -0.812913 -2.930567 1.159580 -1.283327 2.090279 0.950018 -1.120437 1.448462 -0.981289 -0.763907 -2.460484 -0.887802 -0.775096 -0.122931 -1.865756 -2.317410 -0.308936 2.524538 1.459466 0.943896 -1.640760 0.144615 2.957385 -2.600126 0.001213 1.979980 1.083923 -2.224922 0.531519 2.440017 -3.060990 0.362736 -1.133210 0.683226 -0.548863 -1.208480 2.029590 0.809539 1.523563 -0.886518 0.577703 0.548274 1.175221 1.678855 0.732928 -0.027637 3.338297 2.411673 -0.767956 -1.494246 -2.114941 0.516374 -2.651950 -2.547556 0.647609 1.311650 -2.537369 0.597890 0.564043 3.046194 0.394494 0.549614 -0.192086 0.010972 +PE-benchmarks/box-stacking.cpp__main = -2.024000 -1.309224 0.239311 -5.062806 4.120106 5.480222 1.801892 -3.488198 -5.441153 -0.597679 2.592190 -6.336115 -1.441704 6.154262 -2.401697 4.733700 7.500610 0.415161 -3.428633 -0.035552 5.298008 1.077462 7.899011 6.885895 -4.777640 -0.197318 -0.477745 2.947418 0.948095 1.913418 -0.259696 -3.374675 2.741126 -5.004973 -2.441428 -2.440202 0.503927 0.641005 4.415689 -7.286495 1.257551 0.387707 -1.341440 -1.490972 -1.500406 -0.960543 4.561567 4.766455 -0.202038 1.451430 4.060734 1.182416 -0.767057 1.310180 1.620468 0.578860 1.760267 -0.489542 -2.021190 -3.171728 -0.729303 -0.743114 0.018037 5.242597 6.242157 1.143783 -0.372150 2.907800 0.539905 1.056683 2.802754 1.175672 -1.536751 1.517132 2.027734 -5.359861 0.207539 -6.614066 -1.297520 -6.306777 -3.253023 0.525912 3.487097 1.422178 3.390816 -0.023081 5.241436 -1.043684 -1.869854 4.750353 6.475201 -5.174569 -2.426567 -2.793333 -2.998635 1.220391 -2.843171 1.185268 0.913058 0.997721 -4.756042 -2.189502 1.177661 2.590802 -2.006722 -3.128790 1.258989 4.279190 -4.319232 -3.624621 0.438566 4.359487 -1.112053 -8.590834 -4.339116 -3.370538 3.063390 0.055565 -2.278626 -5.178737 1.048425 2.870622 -1.397833 -2.869724 -0.026452 3.121334 3.362510 2.734746 0.344435 0.843198 2.157522 8.822106 1.403192 -2.895012 0.953769 -1.126978 -0.485343 2.870004 -2.468739 -1.756958 -1.079483 -5.030091 1.685594 5.278665 -2.993961 -1.239679 1.256045 2.217349 0.915373 18.507836 -0.035151 6.852786 4.537774 -5.684946 0.891887 -2.725895 -0.038269 1.116668 1.338604 0.522417 -8.101141 -4.757810 4.034682 5.706985 3.892150 -6.247163 0.257147 -0.102609 -0.272864 -0.787576 0.142570 1.453202 0.601793 -3.978471 -1.432238 5.313365 10.910421 -2.497110 -3.087367 3.530636 1.118947 -1.441040 -4.875580 -2.450418 -2.137791 1.345892 3.297936 0.454385 3.122800 6.849652 -7.580244 4.446252 -0.067551 -0.571088 5.025990 2.177639 -5.479987 -2.992588 -1.507969 3.611577 5.393038 -1.005025 -0.060598 1.745609 -4.801241 -0.629146 1.781162 -0.323312 -1.217578 2.377033 1.581420 -3.257443 -3.227616 0.424665 -1.271616 -0.690766 -1.540394 3.742393 -1.046229 -7.544355 5.496787 1.066626 -2.273399 0.699624 -2.515627 5.666893 -4.617590 -5.539553 3.809619 -1.186617 -2.216034 -1.590277 0.781648 2.740226 3.102957 3.216299 -4.070954 -5.191844 3.664292 -1.376807 4.733069 2.230155 0.156685 2.968635 -2.172807 -1.402205 -4.998750 -4.322488 1.815121 0.989279 -5.576985 -1.676276 -1.530593 5.308521 3.395104 -0.113402 -4.769576 -1.071458 5.330989 -4.996722 -0.992794 3.361025 3.167561 -6.408093 0.519076 4.237411 -5.116713 0.554567 -2.061169 -1.478954 -3.136596 -4.510500 3.038059 1.433912 3.429547 0.245584 0.973779 -0.062821 1.903983 1.336666 1.401052 1.475312 6.545138 5.139654 -1.536215 -1.493951 -5.778260 2.964696 -6.549704 -7.548783 3.864533 -0.269269 -3.957930 -0.080604 0.148344 5.820800 1.222994 -0.946766 -1.007552 1.288730 +PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -9.698949 -6.404101 -1.115782 -22.975941 18.059342 27.376316 7.685130 -18.086633 -23.521020 -0.854301 11.942384 -27.269489 -4.281782 26.910201 -11.141639 23.272237 32.710147 0.762557 -16.111598 0.754359 25.447412 6.611930 35.324534 30.122773 -20.767519 -1.831186 -1.121964 13.182987 4.708580 6.557413 -0.757775 -13.610849 12.495009 -25.292065 -12.980472 -10.690006 3.041077 3.218057 22.765689 -30.934533 5.708746 -1.099905 -7.470187 -6.820228 -7.965400 -7.845760 18.988883 21.344068 -0.411170 5.271031 18.440711 6.331884 -4.724441 5.813960 6.451889 3.585700 6.595474 -1.829408 -7.286773 -16.105072 -2.796243 -0.499023 1.125791 23.547163 27.597731 5.807146 -1.099236 15.412426 2.752115 4.130131 12.356779 5.034332 -9.359934 7.421624 8.294209 -27.026461 0.863285 -28.874923 -6.235972 -22.879118 -13.169126 3.276749 11.584962 5.027551 17.419662 1.885526 22.581654 -4.957845 -9.060714 21.822601 27.850436 -24.204669 -10.189059 -12.733672 -13.579007 4.620499 -12.628485 6.194522 2.961564 4.438693 -20.612165 -10.641090 4.173027 13.394353 -8.741229 -16.743843 6.198782 18.342177 -17.441194 -17.910632 4.636050 20.148840 -7.587590 -38.436539 -21.412348 -16.277025 14.421315 -1.237116 -9.277579 -25.798078 3.782113 14.412852 -5.075099 -15.043111 4.118877 11.743998 16.853285 12.357364 0.857899 3.109785 9.358085 42.256389 5.724809 -12.439167 4.382175 -5.854810 -2.004042 12.949497 -10.965116 -7.401298 -6.257504 -22.832770 7.514738 26.817918 -12.577192 -5.097565 8.615210 10.264614 3.904475 86.872001 0.562285 30.592079 21.200444 -25.790631 1.995759 -13.380026 0.094310 5.162625 4.298960 1.728227 -40.044229 -21.344673 18.000837 24.572789 17.054986 -27.923540 0.588864 -0.666318 -1.655473 -3.831281 -0.937274 6.487674 1.949405 -17.567064 -6.324806 25.033071 49.254791 -11.957664 -11.111826 16.996759 5.116339 -7.913318 -22.655127 -12.080331 -11.171896 6.074119 16.250024 2.455146 13.737644 30.066402 -30.190472 18.510427 -0.258818 -2.034978 21.787941 10.874732 -25.180024 -10.646366 -6.627436 15.952613 22.677448 -6.444297 0.746270 8.063075 -20.974047 -2.545114 8.685849 -2.322150 -4.793444 9.935216 7.973849 -14.464793 -14.551314 5.570487 -5.891659 -3.998217 -5.758394 16.815386 -7.110989 -30.913574 24.372029 5.226511 -9.856301 4.761238 -12.536885 27.076452 -20.348910 -24.183307 18.696305 -3.766724 -6.300713 -5.562636 4.544114 12.934405 15.811292 15.924041 -19.429113 -23.205715 13.868085 -5.910579 20.358757 9.322776 1.121011 11.355504 -14.988744 -5.379814 -24.108372 -20.134913 6.799177 7.896876 -26.562924 -10.380014 -5.977839 24.681047 14.097768 -0.976534 -22.712017 -3.814145 23.201599 -23.545356 -3.118079 13.887837 17.052677 -31.241591 -0.536819 17.816167 -22.419816 3.132951 -7.220374 -5.946297 -14.513698 -20.872131 13.600409 7.995412 16.331440 0.493663 4.938864 1.561019 8.464756 6.929382 8.339497 7.571613 28.037781 21.243379 -5.196760 -9.958770 -25.876626 12.596858 -28.986445 -34.781172 18.883934 -1.476793 -17.396920 -0.369652 0.883728 27.322405 5.612524 -3.236975 -2.932085 4.424134 +PE-benchmarks/box-stacking.cpp__min(int, int) = -0.506122 -0.740676 -0.092479 -0.956983 0.649825 0.207414 0.291580 -0.471655 -1.190386 -0.148388 0.406858 -0.696922 0.190655 1.115358 -0.282880 1.112725 1.249664 0.371480 -0.400063 -0.264940 1.142007 -0.647114 1.021565 1.083318 -0.746963 -0.080175 0.034822 0.395253 0.199163 0.324390 -0.082814 -0.464549 0.350031 -1.199372 -0.152985 -0.876810 0.101927 0.817838 1.073442 -1.353169 0.312326 -0.045471 0.230859 -0.210599 -0.333802 -0.051947 0.274627 0.730369 -0.372357 0.721092 0.845958 0.060387 -0.158821 0.182223 0.229212 0.528689 0.074788 0.228805 -0.297129 -0.277958 -0.200646 -0.129448 0.562662 0.669301 0.958174 -0.126394 -0.032565 0.604041 0.249997 0.205221 0.756756 0.107795 -0.467309 -0.483222 0.462818 -1.608805 -0.185725 -2.250096 -0.104758 -1.997042 -0.501536 0.288764 0.727434 -0.143931 0.548286 0.231379 0.949589 -0.360150 -0.422999 0.781694 0.772085 -0.787932 -0.366914 -0.442777 -0.758083 0.167415 -0.336955 -0.185220 0.524062 0.214089 -0.696943 -0.617000 0.505273 0.433607 -0.278845 -0.922592 0.202077 0.794928 -0.844851 -0.999061 0.044497 0.952872 -0.316027 -1.100827 0.099641 -0.839065 0.486328 0.039285 -0.512514 -0.850455 0.144883 0.418850 -0.368446 -0.442503 0.060461 0.540371 0.456343 0.428563 0.045953 -0.132273 -0.052393 1.359160 0.382634 -0.822255 0.074896 0.237945 -0.198805 0.448569 -0.726989 -0.602684 0.349131 -0.902411 0.126163 0.402259 -0.562015 -0.174589 1.304047 0.393664 0.051418 2.607624 0.091899 1.083710 0.829862 -0.744184 0.439688 -0.160003 0.338476 0.511116 0.600647 -0.276385 -1.200466 -0.941141 0.462447 0.853283 0.754777 -0.943990 -1.073251 -0.152318 0.043447 0.446368 -0.143730 0.136242 -0.043031 -0.717414 -0.139966 0.328975 1.723028 -0.353570 -0.006057 0.423087 0.650826 -0.774830 -1.373721 -0.468551 -1.362802 0.149362 0.106994 0.033910 0.529739 1.202386 -2.012777 0.780618 -0.487137 0.113236 0.453633 0.468709 -0.803172 -1.800127 -0.475861 0.261413 1.154996 -0.336851 0.546117 0.684322 -0.755124 0.033065 0.030223 -0.068953 -0.397678 0.415001 -0.012869 -0.525673 -0.150429 0.566993 -0.453443 -0.431849 0.130630 0.582824 0.344441 -1.241049 0.549916 -0.002728 -0.265210 0.573103 0.100819 1.073758 -0.641958 -0.810822 0.713610 0.152472 0.078566 -0.417744 0.178091 0.641573 -0.097251 0.001049 -0.327502 -0.967254 0.403576 -0.531552 0.753306 0.345348 -0.462686 0.500581 -0.424639 -0.219763 -0.842052 -0.182769 -0.292690 -0.114670 -0.572793 -0.674023 -0.103517 0.860380 0.528980 0.391663 -0.567662 0.161387 1.110284 -0.871347 0.039877 0.677753 0.391029 -0.770002 0.284146 0.845753 -1.098053 0.146494 -0.432074 0.190191 -0.217347 -0.337142 0.828197 0.311263 0.548466 -0.360405 0.231022 0.142318 0.466226 0.605515 0.240671 0.034637 1.240318 0.941659 -0.183660 -0.471459 -0.737943 0.161761 -0.901649 -0.856758 0.142935 0.523899 -0.958288 0.190591 0.081170 1.165604 0.200931 0.233877 -0.049789 0.080679 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = -7.591662 -8.043868 -4.780011 -18.117368 12.751246 15.504335 7.134483 -11.309464 -21.369448 -1.622605 9.413854 -23.961075 -3.106430 23.632956 -5.958159 20.614041 29.461709 3.019479 -13.137149 0.287920 21.114632 -1.715782 27.771398 24.218968 -15.053736 -0.816690 -4.733444 8.858329 2.491833 3.442680 2.964900 -9.163294 9.715297 -22.410507 -8.183116 -10.697643 2.325493 6.102418 17.736031 -29.077061 5.653819 4.085444 3.452401 -6.913837 -7.448664 -3.245451 13.723030 17.932456 -0.411934 5.155666 13.467126 0.813345 -1.488634 5.269242 5.834619 3.706672 2.629460 -1.264676 -9.354459 -11.411105 -1.824961 -3.493348 3.015044 17.451325 21.499224 3.656600 -1.692871 13.849784 3.705192 4.944204 11.662253 3.130459 -8.494356 0.428047 7.303309 -23.869874 -0.663024 -24.926605 -4.225468 -29.628807 -11.909865 3.723987 15.700233 3.884535 12.720413 0.762541 18.284494 -5.519879 -7.152730 19.514434 22.226378 -17.660698 -9.814029 -12.111175 -10.053635 6.009445 -9.599379 1.455173 12.345950 4.594192 -17.622385 -5.067524 6.999363 10.427061 -6.858550 -14.449782 6.402711 15.759843 -14.491550 -15.978083 3.357952 18.408621 -5.042356 -30.730815 -9.709832 -11.474363 5.239820 0.876811 -8.376141 -18.864697 3.316753 8.198543 -5.048028 -10.205717 -2.135253 12.140655 9.823167 9.988549 2.645246 5.516977 6.174043 32.844324 3.943327 -11.436940 4.448720 -1.803071 -1.828499 10.968885 -8.130937 -11.519024 -2.009634 -21.151200 5.071032 16.464589 -11.360827 -4.135072 6.500785 10.859798 3.011561 64.977348 1.633166 26.001069 18.780522 -19.038444 6.727567 -9.602043 0.757561 4.024761 6.328937 -1.096187 -28.949663 -18.162366 12.837927 20.568264 15.449164 -21.168664 -4.291710 -1.538197 -1.073182 0.044558 -0.946861 5.407929 3.399314 -14.989605 -4.262396 18.846136 40.419089 -8.837419 -3.043761 13.138812 6.521354 -7.455648 -24.187927 -9.564111 -13.919819 3.908214 5.560957 1.892279 10.740660 24.867366 -24.509008 17.596266 -1.779477 1.036976 17.577179 8.305145 -21.108041 -23.870102 -8.624944 12.080355 23.138295 -7.942589 -0.097945 7.173489 -16.914961 -1.980843 5.802838 -2.942987 -3.030916 8.003194 0.249947 -7.854324 -9.180878 6.775207 -6.312347 -2.857184 -1.623579 13.412195 2.246519 -19.165005 18.440502 2.181564 -8.324098 4.040089 -6.290499 20.230438 -15.938467 -18.410084 13.416771 -2.291921 -7.723924 -6.212882 3.256037 11.133757 9.250433 7.164926 -11.211493 -17.979078 14.677376 -7.594964 17.533757 8.216851 -2.616323 9.049380 -4.970370 -6.849944 -16.187797 -15.758231 -4.030261 1.680527 -19.763960 -7.502566 -4.930867 20.039340 11.047880 1.896409 -19.009703 -0.003073 20.469752 -17.007042 -5.167259 13.487159 5.622133 -23.440428 2.641703 17.101282 -21.773281 3.805246 -8.079721 -3.484498 -9.115785 -15.358168 11.204255 6.320400 12.140809 -1.811512 2.159224 3.096759 7.141737 7.254062 5.368401 4.314216 26.222849 13.740113 -4.497474 -8.328693 -20.534890 8.491876 -22.802349 -24.890117 12.184126 5.818319 -16.033512 1.367824 4.998293 21.263756 4.253837 -4.722815 -5.092157 3.653867 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -7.579468 -8.310283 -6.312658 -16.763550 11.571042 15.370772 6.608968 -11.796646 -19.648479 -0.444920 8.758191 -20.967461 -1.140029 21.897579 -5.556430 21.317189 27.587067 2.993644 -12.393938 0.468368 21.179502 -2.173937 26.104541 22.353528 -13.606752 -1.364054 -3.467270 8.187545 2.597031 2.132165 2.788801 -7.261448 9.725598 -23.968635 -8.683290 -10.966672 2.890913 6.694400 18.671927 -26.787691 5.442399 1.455831 3.110677 -6.544044 -8.106273 -4.760447 11.536072 16.913085 -0.157682 4.817294 12.670851 0.921701 -2.116423 5.192705 5.000010 5.225122 1.166455 -0.759786 -8.075537 -11.450274 -1.458368 -2.567005 4.067312 16.076826 20.013796 3.468686 -0.981113 15.037441 3.373832 4.269055 11.205610 2.503322 -9.812815 -0.241449 6.544266 -25.871134 -1.105796 -24.018234 -4.790302 -26.490695 -10.321811 3.607996 12.233952 1.698149 13.860170 2.839718 16.571107 -5.482711 -6.793989 18.421116 19.937165 -17.829623 -9.072364 -11.677169 -9.015128 5.218754 -9.160054 1.254311 12.119733 3.940005 -16.044268 -5.830652 7.029365 11.272125 -6.193597 -16.196538 6.243237 14.637564 -13.009213 -17.162492 3.969477 17.125584 -7.079205 -28.507005 -8.518566 -11.306056 5.905882 0.334807 -7.126355 -19.869639 2.612250 9.263409 -3.824695 -11.575361 1.338215 10.104648 9.856517 9.187208 2.390597 4.696901 4.933011 33.041606 4.479381 -10.482586 3.992665 -1.456911 -2.339858 10.173425 -7.969297 -11.352456 -2.199580 -20.751832 4.619735 17.144782 -10.381686 -3.435733 9.878701 10.619115 3.106974 62.441138 2.270595 23.997177 18.163103 -18.120945 5.392331 -9.858303 1.251325 4.233858 5.595801 -1.955857 -29.744094 -17.226590 11.250952 18.506052 14.486018 -20.031564 -6.171854 -2.547871 -0.827885 0.750175 -2.426017 5.283275 2.658711 -14.051665 -3.701492 17.643096 38.512270 -9.287937 0.047023 12.997982 5.944859 -8.875342 -24.994466 -9.937709 -15.222682 3.555613 5.040061 1.929668 9.453857 23.010631 -20.878805 15.872813 -2.990617 1.399988 15.688731 8.673510 -19.845555 -22.537574 -8.159024 10.989863 21.446289 -8.798456 1.200217 7.359899 -15.588272 -1.667981 5.411729 -2.966662 -2.260064 7.000870 0.475758 -7.507808 -8.525299 9.628008 -5.751795 -3.921264 0.303135 12.524357 1.564252 -16.361871 16.780142 1.698529 -7.830922 5.968153 -5.586363 20.227929 -14.899357 -16.994038 13.890813 -0.566592 -4.405894 -5.087641 3.828864 11.400450 9.143157 6.416165 -10.409744 -17.076394 11.864715 -7.159177 15.568242 7.271662 -2.501754 7.874218 -8.321840 -6.334484 -16.382806 -14.424275 -6.375131 2.633964 -18.892931 -9.439324 -3.893112 19.781023 10.262109 2.352457 -18.197800 1.443999 19.422218 -17.447111 -4.086376 12.521281 7.871638 -22.971744 1.035976 15.784639 -21.008715 3.484862 -5.957080 -2.476082 -7.882049 -14.558239 10.680046 6.194220 12.018538 -2.318855 2.662775 4.373878 6.941131 7.599353 6.627328 3.963455 24.167550 12.311050 -3.549525 -10.319121 -18.814480 7.007603 -21.213251 -23.416486 11.712263 6.881742 -15.073087 1.992092 5.570413 20.793445 3.945804 -3.899195 -3.755290 1.551227 +PE-benchmarks/detect-cycle-undirected-graph.cpp__main = -2.143901 -0.225814 3.079734 -5.609493 4.054680 2.294849 1.767619 -0.138731 -5.762438 -3.471371 0.387902 -6.364181 -4.259192 7.341393 -2.203445 1.443776 9.224421 2.431176 -2.218244 -0.841070 4.413979 -1.475617 7.442743 7.516038 -5.795344 -0.090367 -0.691205 3.803194 0.315433 4.595083 0.181087 -5.465824 1.711862 -0.952268 1.319127 -4.367521 0.389599 1.232345 -0.800388 -10.180507 1.374231 3.474732 0.055536 -1.614018 -0.295596 2.182958 6.530021 5.036179 -1.733954 0.782755 3.593943 2.181567 -0.133362 1.398265 1.471681 -0.234241 1.134925 -1.846834 -3.494374 -1.083287 -1.323893 -4.193782 0.161273 5.687811 6.727813 0.816976 -0.273402 0.316719 0.151252 1.895947 2.209783 1.094735 1.643419 0.590410 2.869077 -2.882157 -0.394966 -8.454907 -0.003943 -12.874319 -4.228422 -1.879684 6.791791 4.376161 0.212518 -3.072037 6.739068 -1.185837 0.394837 6.043122 8.073609 -3.633729 -2.605194 -4.952487 -3.916553 2.715550 -2.775549 -0.634987 0.908867 1.501848 -5.239486 -2.240428 1.096540 0.404207 -2.240829 -0.925799 0.452734 5.850427 -6.769647 -1.570919 -3.322223 4.041127 1.452484 -8.978578 -1.668427 -3.355090 2.218192 0.932930 -2.679799 -2.636589 1.782635 2.282769 -2.411916 -0.204401 -6.239625 6.361891 1.205516 0.555488 0.749612 1.037655 1.309262 5.002043 2.506127 -3.550897 -0.021642 0.990625 -1.975456 0.273458 -3.943196 -1.874349 2.017852 -5.079556 -0.115284 2.465724 -4.060414 -2.293486 -2.111531 -0.172478 2.910797 16.561707 -1.194929 5.789136 3.049523 -5.881009 3.920235 -0.210242 -1.035305 1.046251 3.673826 1.919756 -5.275448 -5.150144 3.387364 6.698356 4.850739 -4.218136 0.358598 -1.153856 -0.610687 -0.492879 1.384421 1.367352 -0.365811 -4.534676 -1.749169 3.795122 10.019440 -0.935589 -4.644432 2.205678 2.703829 -0.840812 -3.856523 -1.126834 -1.204921 0.574663 1.778152 -0.924909 3.955398 8.119188 -11.602619 6.324213 0.193969 -0.597278 3.853132 -0.285763 -3.680275 -7.232892 -0.984370 5.284245 7.788649 -0.138472 -0.073897 0.572845 -5.564684 -0.662493 1.394025 2.130153 -2.286502 2.937019 0.260985 -3.757862 -3.502438 -2.765582 -2.378182 -0.348518 -2.652261 2.878007 1.627010 -9.474174 7.075060 -0.323187 -1.206522 -0.251188 -1.114222 4.004305 -5.755769 -7.039481 2.435803 -1.239124 -5.474363 -3.180293 -0.045599 4.062515 0.151131 0.382559 -2.906108 -6.712071 6.041182 -1.383737 5.375953 2.678648 0.543980 5.686462 4.357741 -1.923038 -3.718319 -4.649845 2.518350 -1.930913 -3.958269 0.801527 -1.942397 4.536112 5.871467 -0.486774 -3.489280 -0.785574 6.819771 -3.029804 -2.608101 4.549003 -1.517890 -3.669578 3.037320 5.818401 -6.187824 -1.938284 -5.068213 0.160313 -1.539684 -4.679372 2.651697 -1.550792 1.979759 1.819995 0.161549 -2.798816 2.235622 1.848919 -0.741525 0.584275 8.426640 6.007370 -2.880016 2.240363 -5.470705 3.233938 -7.805044 -5.753133 0.840186 -0.071273 -2.507315 0.672995 -0.445094 4.709457 0.330790 0.537420 -1.517405 1.356050 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -2.241369 -1.561397 0.483028 -5.102247 3.475930 3.173948 1.610945 -1.915014 -5.231082 -1.221807 1.102928 -4.842153 -1.084810 6.478745 -1.617770 4.628364 7.871018 1.598893 -2.317085 0.000713 5.754038 -1.784490 6.595917 6.056270 -4.372721 -0.584211 -0.137012 2.724694 0.360279 2.690413 -0.388015 -3.423521 1.927624 -5.019665 -0.865200 -4.253072 1.115081 2.286867 3.453736 -7.921182 1.617396 0.875019 0.334158 -1.910748 -1.841940 -0.914158 4.029624 4.777224 -1.520733 0.855673 3.695296 1.114903 -1.056524 1.501477 1.118879 1.631083 -0.092585 -0.238273 -2.402704 -1.998802 -0.612686 -1.965795 1.651935 4.600401 5.904037 0.664564 0.191546 3.043958 0.328985 0.951421 2.591573 0.390472 -0.899235 -0.460691 2.314326 -6.378299 -0.863356 -8.676472 -0.954197 -8.828329 -2.972793 -0.259870 3.314769 1.464545 2.989002 -0.792472 4.848416 -1.581925 -0.594211 5.121110 5.997851 -4.874830 -2.408780 -4.540325 -3.571512 1.813046 -2.676779 -0.534602 1.673720 0.347515 -4.293335 -3.214193 1.841429 2.609007 -1.668633 -3.967666 1.257535 4.570311 -4.321609 -4.511262 -0.731020 3.831205 -1.630005 -7.558894 -0.885708 -3.684748 2.035645 0.138907 -1.812777 -5.185836 0.849708 3.196294 -1.699952 -2.955774 -1.950598 4.168295 2.077220 1.440660 0.677760 -0.221928 0.809464 7.377283 2.233330 -3.337929 0.296740 0.383619 -1.934267 1.186826 -3.750616 -2.790052 1.352217 -5.256639 -0.589740 4.008947 -3.191864 -0.713849 3.187097 1.321733 2.122647 16.742751 0.127165 5.484062 3.553101 -5.507421 3.184611 -1.254480 -0.290272 1.287727 2.484100 0.209339 -8.105116 -4.817299 2.672587 4.985001 4.404292 -4.546279 -2.375376 -1.569026 -0.312735 0.428077 -0.536256 1.417665 -0.432092 -4.406823 -1.218695 3.701221 10.317593 -2.000073 -0.998954 3.225169 2.537488 -2.884517 -6.384882 -2.327441 -4.324560 0.651001 0.951742 -0.521777 3.273842 6.805886 -8.527056 4.693557 -1.307416 -0.347452 3.152706 0.895701 -4.478926 -6.613155 -1.247941 3.851815 6.466532 -1.339265 1.750423 1.579843 -4.427118 -0.332319 0.881637 0.444091 -1.101787 1.933877 -0.011563 -3.476530 -2.839847 1.288669 -2.461317 -1.883324 -0.454598 2.823090 1.297119 -6.022202 5.381363 -0.050551 -1.133251 2.007543 -1.059144 5.009930 -4.818125 -5.621221 3.692136 0.253860 -0.969896 -1.887972 0.997107 3.895149 0.931695 0.211968 -2.382508 -6.539300 3.112027 -1.496347 4.143079 1.937208 -0.190824 3.106259 0.523838 -1.422302 -4.850592 -3.712579 -0.624614 -0.044260 -4.654641 -2.384665 -1.164312 5.361151 3.949610 0.310994 -3.561514 0.115495 5.754447 -4.165371 -1.081617 3.890280 1.090994 -5.242663 0.243374 4.882742 -5.915074 -0.597717 -2.543237 0.766134 -1.326109 -4.271425 2.512947 0.404799 2.678951 0.244500 0.789100 -0.287133 1.850974 2.449081 0.915598 0.427618 7.062681 4.284582 -1.525549 -1.406226 -4.744681 1.682948 -6.515104 -5.938794 1.960044 1.257629 -3.742066 1.085330 1.227971 5.309224 0.253271 1.310344 -0.251537 -0.445369 +PE-benchmarks/birthday-paradox.cpp__main = 0.007867 0.122619 0.271916 -0.187811 0.061836 -0.254531 0.085075 0.106205 -0.352031 -0.378192 0.264544 -0.376792 -0.412163 0.407757 -0.294581 -0.273325 0.325379 0.260595 -0.174955 -0.115808 0.118883 -0.093461 0.396515 0.341604 -0.393774 0.125672 -0.030282 0.151285 0.157385 0.315022 0.286719 -0.297979 0.202164 0.424663 0.292564 -0.244383 0.044576 0.105794 -0.301560 -0.531424 0.054876 0.271867 0.247101 -0.058249 0.023946 0.518778 0.249901 0.317743 -0.020871 0.051609 0.349230 0.203020 0.145010 0.054489 0.052717 -0.453502 0.324782 -0.328434 -0.072191 0.036094 -0.038141 -0.307203 -0.157222 0.401649 0.454218 -0.060481 -0.017213 -0.277088 -0.092746 0.175992 0.126614 -0.038193 0.206324 0.145297 -0.082142 0.164753 -0.041037 -0.557025 0.097841 -1.099674 -0.210179 -0.079016 0.657219 0.406587 -0.375438 -0.034894 0.354279 0.330170 0.030481 0.356432 0.494785 0.209437 -0.186303 0.029634 -0.195501 0.414205 -0.117203 0.199733 0.009883 0.271411 -0.260124 0.146607 -0.195480 -0.192981 -0.045938 0.311682 -0.026627 0.258938 -0.461962 0.372835 -0.079871 0.251204 0.408545 -0.523726 0.041585 -0.218589 0.183438 0.056653 -0.116735 0.328481 0.077742 -0.058004 -0.105110 0.358269 -0.832307 0.232221 -0.281478 0.223858 -0.050796 0.013063 0.226746 -0.208251 -0.113523 -0.252156 0.030613 -0.147529 -0.016928 0.205069 -0.228680 0.018645 0.306360 -0.098922 0.199659 -0.233578 -0.200370 -0.504446 -0.495765 -0.067870 0.065966 0.267350 -0.001132 0.396164 0.150892 -0.213942 0.011450 0.007147 -0.124905 0.088849 0.200768 -0.017256 0.459780 -0.327762 0.115657 0.441778 0.241766 -0.187587 0.217983 0.135628 -0.135770 -0.088075 0.304341 0.005398 -0.154259 -0.190727 -0.162880 0.258442 0.040455 0.193248 -0.178163 -0.191953 0.228735 0.178088 0.083790 0.120531 0.260902 0.198794 0.106472 -0.016258 0.172414 0.201788 -0.944750 0.424586 0.225472 0.124007 0.056770 -0.142865 -0.226838 -0.628785 0.129785 0.166858 0.287632 -0.056779 -0.067359 0.255198 -0.343506 -0.042325 0.018988 -0.080200 -0.054915 0.115175 0.101878 0.020962 -0.305003 -0.220497 0.047481 0.181563 -0.222488 0.353929 0.329953 -0.665084 0.212507 -0.249163 -0.110400 -0.471292 -0.090871 0.020896 -0.397144 -0.335542 -0.053718 -0.196537 -0.518001 -0.337279 -0.067931 0.243112 -0.306848 0.143627 0.061300 0.102473 0.362646 -0.236305 0.058094 0.172449 0.093870 0.262258 0.284988 -0.001082 -0.072483 0.067757 0.328267 -0.397908 -0.151832 0.624964 -0.117806 0.097395 0.164602 0.018549 -0.274255 0.192546 0.375593 0.115012 -0.370740 0.044551 -0.220001 0.155423 0.450666 0.231096 -0.282517 -0.071125 -0.539865 -0.017044 -0.064634 -0.216869 0.276539 0.044033 0.186384 0.004350 0.074228 -0.327897 0.233968 0.021331 -0.019953 0.181357 0.227686 0.378881 -0.117595 0.377996 -0.216799 0.143363 -0.299074 -0.202347 -0.060853 -0.117353 0.009582 0.197969 -0.283898 0.264489 0.112923 0.063005 -0.131178 0.510770 +PE-benchmarks/birthday-paradox.cpp__find(double) = 0.134786 0.494109 0.432092 0.116729 -0.196826 -0.151976 0.205582 0.261737 -0.589572 -0.350190 0.920784 -0.064145 -0.782934 0.987321 -0.882401 -0.590902 0.480393 1.088575 -0.688027 0.180285 0.728111 -0.238939 0.844535 0.379438 -0.783935 0.376033 0.468889 -0.155879 0.245014 0.984224 0.403935 -0.352656 1.025336 0.674145 0.799448 -1.014691 0.262063 0.431732 -0.353228 -1.078160 0.100799 0.105964 0.327526 -0.283090 -0.270180 0.957883 0.127567 0.820142 0.304846 -0.307051 0.649809 0.379521 0.388337 0.119514 0.196230 -0.709831 0.806719 -0.113107 0.276205 -0.051978 -0.161338 -0.341771 -0.250203 0.913344 1.020636 -0.297139 0.067095 -0.605837 -0.541876 0.093672 0.040705 -0.501857 0.491060 0.423171 -0.768028 -0.003988 -0.539530 -1.169361 0.128711 -1.675732 -0.160931 -0.264101 0.658853 0.234333 -0.599620 0.109252 0.659536 1.040619 0.248269 0.614217 1.203891 0.394426 -0.461744 0.155551 -0.165048 1.077426 -0.142926 0.747939 0.334371 -0.316111 -0.534685 -0.011554 -0.966505 -0.046204 0.241226 0.525523 -0.076884 0.789943 -0.353175 0.660208 0.003810 0.389139 0.323205 -1.230198 0.228658 -0.454492 0.353149 0.259995 -0.128695 0.266023 0.209248 0.633437 0.077774 0.167580 -0.636918 0.402563 -1.051698 0.664932 -0.247908 -0.450362 0.581989 -0.670487 0.189585 -0.417130 0.211091 -0.731498 -0.377962 0.753503 -0.685688 0.215484 0.649933 -0.113148 0.106493 -0.210250 -0.398314 -0.836541 -0.328556 0.078355 0.106714 0.872231 0.105093 0.855057 0.047444 -0.733482 0.201335 0.011402 -0.552200 0.146563 0.378210 -0.334988 0.144365 -0.883469 -0.072709 1.043770 0.584190 -0.874422 0.362058 -0.096695 -0.505139 -0.397177 0.746542 0.021060 -0.493832 -0.471076 -0.425366 0.736528 -0.204991 -0.288481 -0.601496 -0.758395 0.254418 0.471819 -0.351535 0.198920 0.181508 0.566073 0.315806 -0.163234 0.212475 -0.186960 -1.568874 1.031038 0.040265 -0.169485 0.290763 -0.371417 -0.418284 -1.011172 0.680766 0.271640 0.388229 -0.223053 -0.402143 0.980137 -0.812123 0.003367 -0.048016 -0.598909 0.402603 0.150102 0.338685 0.208724 -0.956306 0.117717 0.473291 -0.327749 -0.240869 1.188975 0.712639 -1.130830 0.106018 -0.639089 -0.112522 -0.924098 -0.094736 -0.139847 -1.015226 -1.138244 0.250289 0.253163 -0.165548 -0.587074 -0.136365 1.144340 -0.560558 0.463448 0.304687 0.180236 0.248744 -0.537665 -0.298321 0.308741 0.544251 0.449305 0.218957 -0.053370 -0.529319 0.255074 0.645305 -0.602460 -0.570571 0.515852 -0.213188 0.613688 -0.089226 0.350132 -0.659202 0.176415 0.997984 -0.125444 -0.574353 -0.238677 0.248328 0.711858 0.194943 0.522761 -0.424425 -0.399958 -0.992371 0.138967 -0.232919 -0.556749 0.660718 0.141814 0.738667 -0.405387 0.362011 -0.538511 0.452218 0.229104 0.639720 0.701612 -0.382384 0.685320 -0.339550 0.480899 -0.021016 0.388218 -0.338153 -0.209184 -0.124143 -0.371959 0.225237 1.003788 -0.158012 0.780270 0.232796 0.289595 0.256556 0.925317 +PE-benchmarks/union-find.cpp__main = -1.205043 -0.736358 1.700255 -3.769049 2.451780 1.075817 1.085324 -1.018146 -3.543216 -0.859651 0.879860 -3.010144 -1.265478 4.149600 -1.200992 1.822722 4.862043 1.038483 -1.724252 -1.044526 3.322773 -1.708308 4.184952 4.045917 -3.472446 -0.052954 0.403683 2.350751 1.151872 2.317130 -0.918909 -1.407661 0.614091 -2.148294 0.647041 -2.392931 0.365399 0.670477 1.117651 -5.216589 0.914264 0.604388 0.613833 -0.949712 -0.686043 1.325599 2.975942 3.015350 -1.158612 0.499177 2.894015 0.135197 -0.190491 0.746190 1.384842 0.787636 2.253752 1.103351 -1.470772 -0.815073 -0.546449 -1.631008 1.097632 3.334167 3.938555 0.247242 -0.095996 1.066273 0.818184 0.947755 1.711815 0.519125 -0.369651 0.025685 1.806286 -3.841497 0.510166 -6.435194 -0.234312 -7.149519 -2.269442 -0.499989 2.865122 -0.297930 1.185819 -0.233059 3.558370 -0.421816 -0.344301 2.232991 3.941114 -2.404760 -1.547007 -2.410708 -2.670575 1.253213 -1.574741 -0.297080 1.941529 0.577851 -2.885869 -1.237811 1.454136 1.193757 -1.356128 -0.835249 0.428553 3.211306 -2.751316 -1.869067 -0.975926 2.148800 -0.195341 -5.087232 -0.061446 -2.734693 1.957966 -0.122424 -1.327125 -2.444296 0.660012 2.031700 -1.660113 -0.851943 -2.171479 3.291957 1.349221 0.987865 0.230010 -0.131107 0.665920 3.166508 1.889933 -2.406532 0.003581 0.313887 -1.772980 0.661095 -2.412607 -1.478340 1.882655 -2.858696 0.002906 1.482470 -2.036720 -0.535101 2.396991 0.774061 1.336939 10.244993 -0.389227 3.560958 1.758462 -3.153267 2.304228 0.117077 -0.110078 1.112580 2.087204 0.155459 -4.507774 -3.166424 1.853438 3.546616 2.667548 -3.633741 -1.458977 -0.869648 -0.706919 0.448702 0.079880 0.569733 -0.553282 -2.349486 -1.066455 1.852306 5.942302 -1.198116 -3.186510 1.419126 1.176279 -1.665564 -3.818743 -1.068411 -1.899703 0.773585 -0.189688 -0.275097 2.689716 4.470744 -7.586782 3.429998 -0.739048 -0.808580 3.376240 -0.034021 -2.340117 -5.120711 -0.537524 2.262089 4.142783 -0.317932 -0.668343 1.219800 -3.122184 -0.214614 0.215854 0.647161 -1.209479 1.536953 0.170217 -2.123298 -1.853020 -0.779223 -1.075513 -0.348165 -0.733909 1.804518 -0.239399 -5.745931 3.609299 -0.179256 -0.819009 0.718340 -0.671245 1.994808 -3.060515 -3.580352 1.528039 0.164561 -1.228445 -2.311212 0.193208 2.404127 -0.125329 0.474639 -2.123681 -3.875452 2.235875 -2.033653 3.027569 1.487583 -0.022876 2.739216 1.466799 -0.714656 -3.034195 -1.016545 0.063154 -0.408368 -2.739831 -0.908143 -1.079382 2.972870 2.658700 -0.023725 -1.020624 -0.317360 3.887634 -2.577347 -1.536655 2.264220 0.027127 -2.660993 1.218651 2.990215 -3.560551 -0.743563 -2.206397 -1.114351 -0.930131 -2.517126 2.063248 0.039634 1.677535 0.207109 0.533643 -0.513375 1.392240 0.894205 0.285075 0.347446 4.496898 4.339347 -1.776192 -0.289575 -3.258902 1.906997 -4.129514 -3.393054 0.997465 0.332567 -2.149773 0.624331 0.439397 3.249804 0.294972 -0.106645 -0.499396 0.440524 +PE-benchmarks/union-find.cpp__find(int*, int) = -1.142904 -0.801523 0.294892 -2.325090 1.709081 1.851423 0.817761 -1.547968 -2.286039 -0.412044 0.935095 -2.134542 -0.542959 2.907469 -1.096705 2.362491 3.335181 0.587176 -1.285404 -0.360593 2.742217 -0.331796 3.506346 3.004349 -2.390355 -0.288763 0.477328 1.483554 0.863646 0.896108 -0.246128 -1.147070 1.331196 -2.699836 -0.646803 -1.690621 0.511832 0.762003 1.955710 -3.327936 0.569549 -0.415310 -0.433892 -0.596093 -0.855398 -0.277664 1.799912 2.361341 -0.580934 0.853189 2.038550 0.428770 -0.423671 0.710058 0.525939 0.617931 0.353398 0.025838 -0.835879 -1.207315 -0.308329 -0.955078 0.587611 2.451050 2.918109 0.278743 0.092484 1.643197 0.243164 0.507824 1.354281 0.479364 -0.747643 0.254800 1.220846 -3.471460 -0.048560 -4.156747 -0.772037 -3.790565 -1.431546 -0.136905 1.283818 -0.071023 1.782151 0.480558 2.507524 -0.252340 -0.634892 2.128649 2.884531 -2.634143 -1.120182 -1.535629 -1.432214 0.754172 -1.551098 0.362937 0.617947 0.357612 -2.078444 -1.574774 0.763336 1.336084 -0.955415 -1.944992 0.384492 2.176095 -2.192567 -2.193412 -0.328145 1.481505 -0.924277 -3.870175 -0.935001 -1.662303 2.138052 -0.020696 -0.805582 -2.619662 0.346361 1.769821 -0.510863 -1.672008 0.162828 1.355257 1.526196 0.983471 0.192013 0.086670 0.524493 3.997517 1.374021 -1.475773 0.045472 -0.091576 -0.868001 1.005395 -1.538924 -1.018959 0.407579 -2.551844 0.303687 2.322369 -1.452182 -0.625634 2.146914 0.740389 0.821505 7.828907 0.174073 2.633682 2.077050 -2.649869 0.466285 -1.058284 0.159689 1.000281 1.063034 0.068772 -3.747918 -2.342698 1.437664 2.561537 1.912020 -2.691135 -1.055958 -0.537653 0.031907 -0.083301 -0.294227 0.748706 -0.188685 -1.876523 -0.558295 2.053382 4.319300 -1.413670 -1.098558 1.489033 0.775633 -1.248131 -2.828292 -1.246859 -1.711121 0.507585 1.022867 0.120530 1.382822 3.237971 -3.888808 2.085371 -0.486542 -0.129715 1.752078 0.887512 -2.251438 -2.164255 -0.335238 1.633373 2.312111 -0.585409 0.499307 1.101030 -2.376822 -0.187345 0.543329 0.175603 -0.621916 1.108077 0.605242 -1.560733 -1.620595 0.730350 -0.561545 -0.840963 -0.087860 1.698640 -0.227884 -3.647193 2.462212 -0.085087 -1.095322 1.077697 -0.834572 2.769271 -2.480869 -2.720018 1.928062 -0.084163 -0.452805 -0.950362 0.536381 1.730904 0.828388 0.645956 -1.601170 -2.410989 1.186773 -0.775340 1.879904 0.967146 0.093604 1.812927 -1.409730 -0.709168 -2.444640 -1.195079 0.132525 0.169589 -2.342785 -1.533785 -0.456787 2.638016 2.077866 0.087607 -1.612522 0.145756 2.557787 -2.851036 -0.639002 1.691958 2.027104 -2.530601 0.399946 2.024199 -2.582872 -0.183776 -0.892569 -0.257865 -0.799483 -2.126416 1.621355 0.212837 1.594742 0.105297 0.612427 0.101070 1.177463 0.924021 0.874194 0.389103 2.879131 2.790519 -0.980509 -1.107146 -2.537725 1.041740 -3.247796 -3.149096 1.414872 0.390313 -1.560449 0.404320 0.218335 2.719124 0.514996 -0.182453 -0.278295 -0.017887 +PE-benchmarks/union-find.cpp__Union(int*, int, int) = -1.333733 -1.322154 0.553003 -2.800232 1.802086 1.356281 0.951957 -1.636503 -2.885076 -0.477385 1.225337 -2.280015 -0.479595 3.320996 -1.215345 2.556481 3.850077 0.880812 -1.468822 -0.813557 3.251728 -0.917230 3.905106 3.602616 -2.840454 -0.321979 0.591715 1.954457 1.522140 0.832905 -0.254186 -0.757441 1.399660 -3.108373 -0.462238 -2.257452 0.612208 1.155131 2.226975 -3.944014 0.702598 -0.676151 -0.140275 -0.568329 -0.883244 0.654805 1.701209 2.718359 -0.998477 1.283800 2.670865 0.161204 -0.401030 0.779817 0.517489 0.595502 0.791844 0.681186 -0.859562 -1.157956 -0.307633 -1.338931 0.989195 2.759817 3.532306 0.143972 0.097379 1.745064 0.685884 0.682896 1.833649 0.526668 -0.832097 -0.111307 1.590704 -4.352032 0.030548 -5.854606 -0.778526 -5.444952 -1.658436 -0.013886 1.972058 -0.876760 1.732038 0.743666 2.841459 -0.068810 -0.882969 2.408718 3.023147 -2.728927 -1.288883 -1.548338 -1.823225 1.043519 -1.773359 0.413977 1.310891 0.681175 -2.305462 -1.678543 1.128129 1.331197 -1.127059 -2.043816 0.402850 2.541623 -2.493500 -2.383757 -0.355946 1.780766 -0.802390 -4.299655 -0.487780 -2.351198 2.907190 -0.112365 -0.946687 -2.482144 0.265247 1.730752 -0.719140 -1.538737 -0.105556 1.708667 1.665829 1.221863 0.116952 -0.016369 0.369668 4.076871 1.610771 -1.975157 -0.020457 0.086689 -1.287245 1.261372 -2.191488 -1.256125 1.394484 -2.761099 0.427417 2.035372 -1.675046 -0.935821 3.440098 0.995869 0.823520 8.692314 0.397776 3.093212 2.527559 -2.658129 0.695975 -0.875249 0.535252 1.598168 1.472347 -0.262687 -4.206731 -2.749836 1.421683 2.900431 2.206357 -3.478373 -1.809481 -0.536906 0.019012 0.133478 -0.354016 0.740242 -0.360656 -2.029611 -0.596961 2.092561 4.640210 -1.464049 -1.400857 1.361840 1.022120 -1.780413 -3.712923 -1.354554 -1.951130 0.659061 0.724168 0.219421 1.701954 3.673358 -5.464134 2.393469 -0.594899 0.117127 2.057990 1.046678 -2.646413 -3.546916 -0.375953 1.491793 2.784561 -0.583004 0.404640 1.720690 -2.771303 -0.168758 0.454429 0.122345 -0.808629 1.286324 0.631219 -1.458211 -1.655327 0.763267 -0.610826 -0.789168 0.119706 2.038803 -0.346199 -4.564261 2.470466 -0.419285 -1.350149 1.185758 -0.854213 2.955657 -2.826956 -2.911934 2.014422 0.056939 -0.578702 -1.798471 0.664522 2.020313 0.441700 0.665896 -1.725776 -2.849776 1.415675 -1.523110 2.095673 1.124027 -0.234200 2.249343 -1.392001 -0.693572 -3.052666 -0.652492 -0.090345 -0.010840 -2.554761 -1.673920 -0.448864 2.802994 2.345236 0.163692 -1.469116 0.433449 3.172087 -3.340948 -1.047298 1.890734 2.415493 -2.526647 1.065457 2.261550 -3.296987 -0.112825 -1.135668 -0.705239 -0.581462 -2.151116 2.271839 0.393928 1.910936 -0.186655 0.865095 0.247172 1.545286 1.069572 0.948241 0.398191 3.491343 4.107581 -1.220783 -1.323895 -2.862445 1.173063 -3.619840 -3.367293 1.371085 0.535741 -1.910996 0.668841 0.292575 3.250680 0.730265 -0.362308 -0.466252 0.275960 +PE-benchmarks/naive-algorithm.cpp__main = -0.398239 -0.145509 0.350919 -1.111323 1.072293 0.657841 0.535266 -0.066296 -1.484847 -0.672479 0.305065 -1.799053 -0.946712 1.809442 -0.439189 0.743688 2.347948 0.529778 -0.519118 -0.128416 0.984349 -0.287544 1.981191 1.822586 -1.304544 0.075433 -0.374251 0.636519 -0.130838 1.053476 0.008910 -1.568644 0.654814 -0.582010 0.021338 -0.854906 0.063347 0.236278 0.268906 -2.476948 0.324907 1.068088 0.279091 -0.464173 -0.155202 0.244437 1.528743 1.252220 -0.163083 0.491420 0.809443 0.274746 0.072750 0.398543 0.534572 0.107438 0.247571 -0.549016 -1.116233 -0.285284 -0.296508 -0.909304 -0.222214 1.267425 1.674723 0.152838 -0.140364 0.248831 -0.126169 0.438990 0.679276 0.247295 0.310732 0.112516 0.724999 -0.571036 -0.265143 -1.788727 -0.214129 -3.130464 -1.121705 -0.340382 1.741258 0.957301 0.381483 -0.632667 1.543501 -0.375553 -0.034111 1.257636 2.001023 -1.095278 -0.831634 -1.066091 -0.669203 0.627494 -0.806413 -0.133199 0.604518 0.109568 -1.380751 -0.617871 0.586781 0.312541 -0.513786 -0.417926 0.200626 1.336450 -1.571141 -0.717126 -0.801979 0.949463 0.179663 -2.119874 -0.489661 -0.484984 0.136664 0.494948 -0.712418 -0.866874 0.507616 0.492461 -0.624786 -0.390130 -1.033789 1.419749 0.305890 0.418463 0.359130 0.416518 0.497670 1.728300 0.547440 -0.822417 0.150051 0.130446 -0.271674 0.414451 -0.788262 -0.723639 0.140130 -1.304825 0.213733 0.644907 -1.023636 -0.412715 -0.571285 0.253333 0.570839 3.681836 -0.190919 1.548913 0.834515 -1.464482 0.964447 -0.378045 -0.200998 0.065141 0.878027 0.347570 -1.094029 -1.236559 0.893164 1.622370 1.175186 -1.228218 0.068456 -0.237903 0.109414 -0.086939 0.314763 0.485480 0.253763 -1.197006 -0.337807 0.984923 2.788596 -0.479790 -1.015611 0.674519 0.650769 -0.113831 -1.148842 -0.370390 -0.535987 0.187502 0.346476 -0.095104 0.821639 1.946330 -2.596033 1.552675 -0.092586 -0.211921 1.215259 0.161295 -1.098669 -1.662493 -0.363095 1.155418 1.975742 0.098036 0.111136 0.197131 -1.324485 -0.190570 0.224580 0.337106 -0.373806 0.710057 -0.098531 -0.939814 -0.847881 -0.540688 -0.463129 -0.235818 -0.568443 0.777058 0.920488 -2.224941 1.584904 0.073552 -0.495510 -0.041915 -0.168141 1.081747 -1.377237 -1.669445 0.638118 -0.544154 -1.328580 -0.551792 -0.046611 0.748583 0.262458 0.257211 -0.523807 -1.498131 1.611757 -0.145555 1.376095 0.688904 -0.018546 1.158384 0.848068 -0.683861 -0.759675 -1.183180 0.425825 -0.645731 -0.977396 0.177847 -0.556610 1.261535 1.308483 0.103438 -1.035878 -0.512453 1.601400 -0.956701 -0.480592 1.274690 -0.151669 -0.943620 0.618731 1.524314 -1.580889 -0.247740 -1.038384 -0.003886 -0.502651 -1.085420 0.544779 -0.344601 0.534495 0.331704 -0.027054 -0.529133 0.425016 0.314113 -0.242715 0.002836 2.042501 1.259750 -0.780400 0.473082 -1.393904 0.721454 -1.822698 -1.571378 0.394827 0.068621 -1.086799 0.140499 0.197332 1.077993 0.124586 -0.088369 -0.630212 0.270070 +PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -1.993773 -2.278156 -0.799107 -4.657679 2.561855 2.345216 1.395604 -2.485546 -4.851975 -0.857716 2.209849 -4.904937 -0.460031 5.391108 -1.779589 4.457542 6.694259 0.775409 -2.501314 -0.721428 5.514981 -0.742974 6.258566 5.579995 -4.363418 -0.731572 -0.329550 2.694957 2.075987 0.171336 1.386382 -2.033514 2.021986 -5.099384 -1.314191 -3.043623 1.431773 2.078820 4.135834 -6.646600 1.312011 0.299806 0.888367 -1.462207 -1.807413 -0.381364 2.538916 4.467673 -1.359969 1.272781 4.447700 1.009091 -0.925800 1.175471 0.254718 0.275432 -0.223568 -0.412654 -1.659203 -2.382777 0.073749 -1.016352 1.368268 4.417663 5.749820 0.593936 0.227865 3.519634 1.228184 1.143048 3.148547 0.515635 -1.557653 -0.194433 2.388732 -6.274524 -0.806188 -8.539321 -0.866375 -8.634810 -2.449032 0.401569 3.559194 0.182165 2.646317 0.555998 4.091653 -0.653437 -1.397189 5.399219 4.716733 -3.738902 -2.239343 -3.449410 -3.123605 2.174913 -2.890719 0.705766 2.192925 1.608939 -3.729960 -2.274136 1.433430 2.414241 -1.684810 -4.146954 1.274519 3.351846 -3.439248 -3.779163 0.618784 4.234184 -1.152640 -6.757526 -1.582242 -4.014719 2.461773 -0.325537 -1.115619 -3.820595 -0.123045 2.035694 -1.166218 -2.363590 -1.123078 2.492089 2.743766 2.302536 0.348844 0.597850 1.124121 7.355903 0.700975 -3.154766 0.264977 -0.047625 -1.155956 2.114191 -3.466129 -2.497069 2.253113 -4.231026 0.590089 3.438367 -2.520234 -2.021764 3.891201 1.569698 1.355419 14.814174 1.267616 5.365187 4.524647 -4.043025 1.312032 -1.867594 0.531621 1.858602 1.748758 -0.673236 -6.396692 -4.557542 2.297398 4.288422 3.596340 -4.575840 -2.086454 -0.264121 -0.138114 0.038409 -0.845306 1.314167 -0.365928 -3.573570 -0.872737 4.387904 8.346252 -1.500234 0.578566 2.649465 3.274216 -2.904643 -5.797640 -2.179466 -3.556912 1.035014 1.362440 0.654644 2.947377 5.893219 -7.364408 3.655780 -0.030416 1.297933 2.482260 1.715312 -5.007664 -6.412026 -0.850562 2.464512 5.015135 -1.914910 1.733032 2.451184 -4.045962 -0.180603 1.015689 -0.471861 -0.723056 1.528232 0.103031 -1.657785 -2.606216 2.373496 -2.115247 -0.739699 0.105508 3.067382 1.030965 -4.760452 4.088175 -0.641670 -1.847039 1.056743 -1.992406 5.205950 -4.645796 -4.109381 3.234455 -0.166018 -1.217054 -2.200854 1.183266 3.095061 1.004010 1.652591 -2.433468 -4.604775 2.991861 -2.091182 3.285680 1.766488 -0.765270 2.042289 -2.254182 -0.800540 -4.742794 -2.648422 -1.036732 0.720293 -4.853629 -1.664022 -0.643065 4.494158 3.067098 -0.168770 -4.168567 1.069079 4.813654 -4.456320 -1.737521 2.785743 2.531972 -5.009258 1.102916 3.595231 -5.735713 0.661390 -2.185049 0.127250 -1.042756 -3.763707 3.123982 1.396602 3.208611 -0.323037 1.017179 0.674084 2.194359 2.103730 1.126451 0.782928 6.108812 4.540982 -0.915742 -2.377191 -4.994101 1.328016 -5.627683 -6.022106 2.504224 0.602461 -3.636144 1.070938 0.917403 5.405565 1.291377 0.433046 -1.110650 0.784377 +PE-benchmarks/matrix-chain-multiplication.cpp__main = -1.016899 -1.038831 -0.388847 -2.519370 1.993487 2.025290 1.085516 -1.576334 -3.087618 -0.425169 1.567180 -3.857844 -0.957567 3.318485 -1.121068 2.423787 4.237884 0.387198 -1.806448 -0.425532 2.702951 0.052875 4.437616 3.907849 -2.548921 -0.088484 -0.809268 1.281007 0.671062 0.131839 0.533988 -1.360276 1.579383 -2.659924 -0.923543 -1.239782 0.355546 0.520768 2.203221 -4.200742 0.645495 0.341567 0.435969 -0.715112 -0.838589 0.891270 2.325009 2.637610 -0.156522 1.008267 2.309276 0.112702 -0.066960 0.742857 0.584367 -0.226903 0.589840 -0.230508 -1.428372 -1.442957 -0.236310 -0.737569 0.056982 2.739784 3.617403 0.548442 -0.266622 1.647590 0.688904 0.844756 1.725509 0.607698 -0.545641 0.494711 1.173614 -3.027300 -0.195616 -4.300818 -0.682080 -5.142534 -1.898390 0.283267 2.868905 0.405094 1.308698 0.017790 2.833189 -0.027713 -1.032299 2.926494 3.533642 -2.405231 -1.550741 -1.509311 -1.429906 0.970223 -1.515413 0.814331 1.810429 1.085462 -2.665150 -0.618275 0.864180 0.986201 -1.055270 -1.728849 0.754810 2.231502 -2.181338 -1.576124 0.164550 2.503919 -0.038762 -4.791531 -1.165776 -1.758613 1.368274 0.246872 -1.177401 -2.050379 0.370145 0.841437 -0.938639 -0.888742 -1.076147 1.921350 1.510788 1.534149 0.327565 1.090763 1.139498 4.387716 0.273985 -1.793418 0.460566 -0.372442 -0.444122 1.708921 -1.545233 -1.360637 0.491367 -2.911309 1.426489 1.894973 -1.663281 -1.127168 0.671419 1.342512 0.478889 8.614201 0.231302 3.914420 2.604452 -2.737074 0.963477 -1.566700 0.271674 0.758204 1.125820 -0.212646 -3.521985 -2.700529 1.945138 3.145794 2.108308 -3.388847 -0.224886 0.129788 -0.177266 -0.421302 0.106433 0.936626 0.245437 -1.788271 -0.609309 2.914204 5.714120 -1.039502 -0.412802 1.560926 1.048161 -0.558738 -2.982188 -1.230393 -1.174168 0.694209 1.146821 0.688402 1.647154 3.667147 -4.343259 2.511521 0.060898 0.478122 2.449850 1.213656 -3.193512 -3.239207 -0.838057 1.806703 3.095910 -0.646331 -0.360294 1.165819 -2.561953 -0.295858 0.884994 -0.242113 -0.549599 1.173921 0.222158 -1.064643 -1.516919 0.389011 -0.833702 0.079269 -0.474108 2.074144 0.249836 -3.869196 2.793038 0.017560 -1.540129 -0.062110 -1.276635 2.827706 -2.437570 -2.566756 1.601167 -0.870608 -1.761083 -1.579541 0.378176 1.333282 0.809751 1.594932 -1.803550 -2.528294 2.586830 -1.209922 2.492192 1.269531 -0.266459 1.697912 -0.885611 -1.124412 -2.511021 -2.313396 0.223739 0.002132 -2.876649 0.273195 -0.699018 2.596887 1.805172 0.119649 -2.762279 0.171153 2.948881 -2.449391 -1.210391 1.906406 1.024134 -3.092321 1.135899 2.351952 -3.290801 0.495153 -1.491422 -0.817676 -1.293037 -2.373991 1.683906 0.719694 1.773591 -0.236812 0.504883 0.280791 1.320290 0.688863 0.672418 0.649010 4.040946 2.745013 -0.897944 -0.743719 -3.282836 1.597269 -3.508104 -3.928568 1.781482 0.544170 -2.144942 0.173170 0.270937 2.999104 0.633638 -1.146554 -1.282898 1.136281 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = -0.571668 -0.213550 0.415279 -1.435648 1.342675 0.744345 0.680082 -0.056993 -1.868999 -1.004228 0.425351 -2.250880 -1.314839 2.337047 -0.604294 0.959060 3.145192 0.641062 -0.625432 -0.213991 1.507093 -0.846052 2.627085 2.502717 -1.837133 -0.016954 -0.124033 1.034041 0.030986 1.259568 0.058104 -1.905705 0.874751 -0.982667 0.223070 -1.357415 0.226075 0.261928 0.352019 -3.325418 0.357206 1.154413 0.234512 -0.532408 -0.295733 0.849690 1.950234 1.692472 -0.587814 0.642211 1.331777 0.168594 -0.032474 0.495291 0.460398 -0.075233 0.280923 -0.071402 -1.419565 -0.346624 -0.326756 -1.467505 -0.119084 1.694221 2.497302 0.048750 -0.021058 0.472865 -0.155250 0.615407 0.829831 0.297060 0.469355 0.069428 1.146510 -1.273637 -0.496076 -3.240135 -0.356511 -4.937090 -1.454385 -0.565795 2.241063 0.751035 0.444839 -0.775793 2.002183 -0.232659 0.002620 1.854152 2.656524 -1.392551 -1.107335 -1.552161 -0.959631 0.941213 -1.195549 -0.136623 1.278746 0.085243 -1.771330 -0.831546 0.819926 0.416178 -0.652787 -0.789643 0.119911 1.800480 -2.073262 -0.949101 -1.199642 1.055087 0.275070 -3.099493 -0.343927 -0.757590 0.529548 0.647857 -0.783160 -1.047281 0.533433 0.757209 -0.740309 -0.533991 -1.181266 2.165419 0.498790 0.607649 0.553532 0.479972 0.648782 2.163103 1.107897 -1.044041 -0.014097 0.167976 -0.800388 0.506531 -1.340157 -0.925844 0.762080 -1.837836 0.463801 0.824817 -1.311423 -0.678021 0.078092 0.200815 0.882293 5.468058 -0.159774 2.161564 1.104719 -1.937421 1.550702 -0.432519 -0.272743 0.277105 1.225151 0.394149 -1.917626 -1.566384 1.116262 2.114497 1.519842 -2.065111 -0.352026 -0.340734 0.142818 -0.179303 0.282192 0.735204 0.194323 -1.490114 -0.412768 1.468654 3.680063 -0.717957 -1.414494 0.836843 1.005459 -0.398355 -2.176413 -0.468629 -0.856783 0.249401 0.374781 -0.140181 1.072203 2.544964 -3.985791 1.943228 -0.048791 -0.170969 1.666525 0.250207 -1.563258 -3.047790 -0.198716 1.568166 2.577033 0.160324 0.123229 0.340026 -1.733812 -0.189106 0.315219 0.476900 -0.454471 0.912372 -0.265317 -1.139395 -1.300417 -0.700977 -0.655769 -0.347745 -0.618197 1.003373 1.047517 -3.289397 2.125337 -0.191373 -0.798943 -0.099346 -0.252986 1.441798 -1.952136 -2.306248 0.834669 -0.684268 -1.749110 -1.185315 -0.018394 1.000513 0.297548 0.188705 -0.579100 -2.439650 1.999033 -0.513333 1.681326 0.852313 0.081815 1.889082 1.075986 -0.906786 -1.534608 -1.325897 0.563965 -0.941794 -1.437188 -0.058499 -0.578570 1.637798 1.775551 0.063698 -1.211661 -0.516306 2.238353 -1.406000 -0.833666 1.653898 0.130618 -1.275512 0.898226 1.951164 -2.324687 -0.391875 -1.458567 -0.173135 -0.513086 -1.554500 0.669583 -0.519720 0.697335 0.457295 0.071991 -0.625812 0.631806 0.470484 -0.140958 -0.129531 2.813551 2.328144 -1.327981 0.427582 -1.936056 0.950844 -2.547471 -2.290593 0.555440 0.252382 -1.192075 0.274086 0.508046 1.445759 0.110151 -0.257988 -0.778023 0.326643 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -3.074142 -3.708842 -0.244006 -7.336949 4.456082 3.827823 2.204910 -3.571603 -7.980576 0.138407 2.345440 -5.122012 0.698351 8.463019 -2.074593 7.730470 11.188361 2.611323 -3.778335 -0.983460 9.303906 -4.094311 9.017848 9.123818 -6.220255 -0.734682 1.312114 4.691555 2.500242 2.887678 -1.520713 -2.113769 2.742861 -9.527057 -1.252716 -7.735102 1.591196 3.872959 7.271186 -11.445224 2.387902 -1.162030 1.364646 -2.205042 -2.769734 0.704916 3.714059 6.459333 -2.897415 2.462094 6.451682 0.458712 -1.633341 1.809733 1.509073 3.828723 2.247456 4.114742 -2.210145 -2.947574 -0.488408 -1.882366 3.876870 6.058004 9.215829 0.240311 0.361886 5.012586 2.097985 1.124651 4.561202 0.461164 -3.122338 -1.804758 3.442410 -13.025107 -0.617200 -16.278399 -1.342519 -14.557616 -3.628303 0.391488 3.978257 -3.501306 5.086937 1.213751 6.362180 -2.069353 -1.592285 6.033029 6.674632 -6.867009 -3.133247 -5.231301 -5.349013 2.463971 -3.595617 -0.799306 5.684057 0.207189 -5.400784 -4.977550 4.207104 4.475167 -2.467153 -6.051267 1.743002 6.184361 -5.037640 -7.556345 0.023180 5.510093 -3.483257 -10.273138 -0.182351 -7.299094 4.641852 -0.458428 -2.302657 -7.855546 0.434281 5.022111 -2.411613 -4.685458 0.493803 5.705914 3.699454 2.648420 0.546741 -1.398200 0.369895 10.652546 4.122627 -5.379644 0.374976 0.970924 -4.228397 2.268599 -7.015333 -4.253052 4.087681 -7.441450 0.222575 5.298978 -4.181505 -0.441502 11.366679 2.962738 2.205931 25.902696 0.989070 8.178478 5.674636 -6.802115 4.148387 -1.046884 0.926395 3.492103 3.760515 -1.237059 -14.472734 -6.697771 2.648077 6.492049 5.854942 -9.175804 -7.145792 -2.478444 -0.739367 1.912455 -1.659547 1.381783 -0.986795 -5.558072 -1.505937 4.273604 14.695705 -3.453936 -1.877078 3.687707 3.659188 -7.112115 -12.565785 -3.648843 -8.201034 1.467922 -0.042410 -0.407281 4.821167 8.909027 -14.779277 6.058096 -2.891309 -0.413684 5.850752 2.347008 -6.590425 -12.239437 -1.713882 3.614095 9.433283 -2.408104 1.845565 4.268042 -6.086370 -0.299405 0.690311 -0.124506 -1.765517 2.626478 0.603368 -4.123737 -3.069677 3.474437 -2.563896 -3.313145 0.858975 4.304027 -0.025900 -9.674096 5.837695 -0.567454 -2.218107 4.286771 -1.190178 6.534125 -6.412638 -6.964461 5.360090 2.306030 1.129171 -4.349017 1.631799 5.972764 1.173500 1.252334 -3.772092 -10.328059 2.726952 -4.687297 5.224844 2.686275 -1.441462 4.211862 -2.206851 -1.284565 -9.443852 -2.273210 -2.906992 0.657768 -6.361441 -5.697889 -1.369594 7.450931 4.991323 1.113587 -3.768321 0.512529 9.132844 -7.411956 -1.185395 4.788899 4.188146 -7.307458 0.488329 6.072739 -9.567375 -0.210744 -2.373711 -1.213117 -0.866595 -4.724479 5.207812 1.446093 4.574005 -1.109558 1.815801 1.204146 3.244994 3.396915 2.231297 0.676053 9.985167 8.821477 -2.264631 -3.857679 -6.342867 2.165776 -8.464790 -7.843231 2.512690 2.057633 -6.299094 2.180647 2.576195 8.601191 0.811910 1.233586 0.040185 -0.760920 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = -0.666419 -0.291605 0.650234 -1.792425 1.537511 0.727005 0.785390 -0.124951 -2.313762 -1.073007 0.422049 -2.604642 -1.302915 2.791835 -0.580750 1.155711 3.502728 0.837107 -0.879994 -0.218353 1.714741 -0.807695 2.828246 2.713432 -1.931413 0.102521 -0.415866 0.993543 -0.029511 1.513827 -0.033942 -1.940874 0.790809 -1.021461 0.215852 -1.460079 0.094290 0.501650 0.455804 -3.746562 0.564627 1.398184 0.760742 -0.733476 -0.317524 0.610077 2.245102 1.919113 -0.508548 0.580148 1.363101 0.232194 0.078331 0.578029 0.689510 0.177724 0.537216 -0.395138 -1.558027 -0.391770 -0.428286 -1.441637 0.050588 1.931390 2.537538 0.192825 -0.185716 0.485957 0.091208 0.737691 0.980662 0.350193 0.327728 -0.057910 1.073833 -1.382885 -0.327699 -3.342057 -0.226500 -4.998052 -1.694002 -0.390828 2.588403 1.264092 0.513639 -0.777177 2.327158 -0.545575 -0.080380 1.847757 2.966277 -1.550134 -1.182828 -1.677230 -1.280340 0.987472 -1.118940 -0.300218 1.124708 0.260972 -2.049486 -0.865471 0.884699 0.463545 -0.776688 -0.569028 0.325461 2.096927 -2.267558 -1.097617 -1.041666 1.405198 0.273597 -3.320608 -0.185592 -1.003756 0.229949 0.644056 -1.087720 -1.311920 0.704030 0.718198 -1.030216 -0.496923 -1.891538 2.282301 0.334315 0.613490 0.486854 0.392454 0.642530 2.240298 1.050214 -1.403204 0.211336 0.221686 -0.619523 0.546500 -1.352072 -1.209071 0.515049 -2.087317 0.234785 0.867963 -1.535305 -0.625465 -0.416377 0.372074 0.842799 5.525387 -0.299369 2.436655 1.214429 -2.175528 1.728886 -0.326250 -0.326483 0.263581 1.413935 0.474357 -1.834892 -1.903500 1.315875 2.479901 1.835513 -1.862448 -0.397484 -0.401724 -0.046134 0.055063 0.452722 0.665510 0.241966 -1.822853 -0.568384 1.398341 4.075932 -0.635564 -1.482604 0.984627 0.920895 -0.381625 -2.135102 -0.573155 -1.133460 0.278323 0.265593 -0.245976 1.329376 2.950894 -4.231760 2.401231 -0.219694 -0.294579 1.821356 0.103511 -1.680912 -3.116882 -0.533400 1.753999 2.994385 -0.027759 -0.089350 0.364450 -2.006298 -0.269061 0.296767 0.438794 -0.660656 1.071321 -0.276117 -1.300111 -1.209875 -0.695922 -0.746971 -0.435764 -0.697155 1.177670 1.191738 -3.165081 2.419621 -0.080071 -0.670311 0.023869 -0.229295 1.451475 -1.924587 -2.432863 0.927499 -0.599093 -1.768873 -1.180658 -0.016281 1.280156 0.213068 0.100823 -0.698281 -2.464386 2.168404 -0.586785 2.079919 1.031002 -0.049891 1.790007 1.768820 -0.906601 -1.396209 -1.411833 0.263740 -0.945093 -1.521175 -0.156041 -0.797169 1.891232 1.914025 0.118965 -1.291704 -0.596617 2.461569 -1.363268 -0.894801 1.875675 -0.656476 -1.488885 0.975470 2.287615 -2.423430 -0.379300 -1.677888 0.000862 -0.662350 -1.625487 0.880703 -0.339067 0.740137 0.360339 -0.041418 -0.651827 0.719279 0.628257 -0.251555 -0.042310 3.135849 1.944388 -1.186746 0.551531 -2.064889 1.091985 -2.801276 -2.261409 0.529296 0.456010 -1.584870 0.238223 0.289087 1.702087 0.037504 -0.105168 -0.811034 0.418135 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -0.504566 0.020325 0.592873 -1.736891 0.982122 0.740543 0.334191 -0.323494 -1.398631 -1.040477 0.402984 -2.027657 -1.109262 1.854932 -0.873358 0.401619 2.395813 0.125303 -0.604446 -0.403255 1.449417 -0.199765 2.251725 2.136687 -2.094223 -0.215283 0.338240 1.304464 0.784519 0.658495 0.568645 -1.451206 0.273490 -0.478662 0.441673 -0.931337 0.468364 -0.010349 0.118614 -2.706502 0.203048 0.706070 0.082926 -0.347207 -0.210104 0.582145 1.762690 1.564041 -0.909319 0.098484 1.817932 0.781196 -0.268007 0.211207 -0.119823 -0.738779 0.434588 -0.299242 -0.716718 -0.424449 0.085648 -0.912714 0.109578 1.938545 2.298529 0.162584 0.159507 0.460332 0.290793 0.536579 0.592470 0.378094 0.122036 0.706438 1.012397 -1.307840 -0.120988 -3.326173 0.094369 -4.007584 -1.123511 -0.641591 1.665469 0.861280 0.115682 -0.451824 1.805243 0.163764 0.136752 2.048599 2.227465 -0.775311 -0.749850 -1.588864 -1.400063 1.139873 -1.119072 0.288627 0.359759 0.734523 -1.353033 -0.608507 0.091561 0.317344 -0.724291 -0.493029 0.030713 1.274955 -1.683843 -0.418095 -0.609971 1.082899 0.395399 -3.009713 -0.777341 -1.260550 0.895089 0.010101 -0.257740 -0.715008 -0.037233 0.735923 -0.544116 -0.071853 -1.764947 1.542257 0.875846 0.486416 0.215845 0.319715 0.804823 1.639684 0.497809 -0.974013 -0.295751 0.092455 -0.695246 0.090033 -1.338167 -0.368165 1.169205 -1.340684 0.384720 0.961216 -0.941479 -1.120168 0.101814 -0.372961 0.987991 5.756210 0.044875 1.876328 1.011269 -1.626171 0.773904 -0.228898 -0.390497 0.478756 0.745533 0.459835 -1.633969 -1.381077 0.906581 1.828406 1.168386 -1.400720 -0.008332 0.067507 -0.384665 -0.390564 0.173966 0.491775 -0.502997 -1.091895 -0.470335 1.715875 2.637444 -0.053577 -0.946710 0.551635 1.480155 -0.548598 -1.129933 -0.214046 -0.511983 0.381997 0.655578 0.015651 1.300134 2.181816 -3.849438 1.479729 0.762947 0.278288 0.913845 -0.072043 -1.450787 -2.385106 0.394267 1.464878 1.689582 -0.351030 0.204885 0.349446 -1.546921 -0.069862 0.517436 0.410209 -0.581734 0.699224 0.065608 -0.824381 -1.445121 -0.394281 -0.831560 0.093568 -0.787317 0.838100 0.188192 -2.868725 2.090147 -0.477939 -0.656703 -0.420898 -1.062992 1.211898 -2.098473 -1.801169 0.619375 -0.426727 -1.391082 -1.054168 -0.035069 1.015991 0.163807 0.663836 -0.989967 -1.940586 1.370885 -0.726545 1.165753 0.751705 0.272497 1.434377 0.309865 -0.203674 -1.603264 -1.102748 0.734317 -0.084466 -1.684102 0.206327 -0.378081 1.215313 1.622821 -0.633261 -1.122041 0.098286 1.656814 -0.939636 -1.090469 0.802176 -0.021914 -1.464515 0.686145 1.169657 -1.892226 -0.230614 -1.582099 -0.038902 -0.316491 -1.645980 0.757264 -0.234471 0.774013 0.646853 0.110557 -0.619316 0.817549 0.449419 0.005786 0.246922 2.214545 1.957309 -0.828037 0.236330 -2.056251 0.834611 -2.447109 -2.311993 0.588605 -0.408328 -0.521026 0.239138 -0.174021 1.466754 0.292971 0.213219 -0.480934 0.649433 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -1.754382 -1.682549 -0.075132 -3.660646 2.425607 2.601160 1.336540 -2.338163 -4.034696 -0.369421 1.398022 -3.772635 -0.252707 4.773922 -1.291801 4.378943 5.617010 1.118168 -2.268918 -0.314258 4.571455 -0.829123 5.320032 4.657734 -3.224564 -0.381687 -0.144586 1.917951 0.978832 1.210842 -0.225457 -1.557269 1.842164 -4.804077 -1.080302 -2.769161 0.730571 1.797181 3.715080 -5.581092 1.175636 0.092577 0.920233 -1.367238 -1.496449 -1.300242 2.532564 3.674910 -0.411007 1.020602 2.854745 0.364927 -0.376326 1.136627 1.070838 1.685525 0.505096 -0.502550 -1.644251 -1.869196 -0.439758 -1.026461 1.351574 3.567139 4.437362 0.595473 -0.049778 2.854492 0.844108 0.780996 2.354736 0.555855 -1.693954 -0.200876 1.581193 -5.940848 -0.038462 -6.210802 -0.955507 -5.547602 -2.319287 0.237971 2.122565 0.506079 3.100085 0.553632 3.726480 -1.227768 -1.067996 3.036557 4.287197 -4.171756 -1.845673 -2.727897 -2.193134 1.101950 -2.170029 -0.010005 1.496326 0.509556 -3.309363 -2.279357 1.715591 2.453300 -1.388971 -3.046060 1.089978 3.451271 -2.858304 -4.131487 0.041856 2.911990 -1.826723 -5.664227 -0.579787 -2.867218 1.575415 0.159558 -1.470800 -4.549653 0.621662 2.519685 -1.055819 -2.820286 -0.569059 2.318626 2.007294 1.442190 0.321957 0.265799 0.632983 6.483018 1.680242 -2.568114 0.518452 0.145315 -1.301952 1.593369 -2.474772 -2.421831 0.373720 -4.121267 -0.312318 3.471728 -2.345061 -0.338620 3.006626 1.757929 1.111388 11.956601 0.337203 4.349573 3.306706 -3.965481 1.720803 -1.458924 0.288236 1.135475 1.663315 -0.127571 -6.419631 -3.877302 2.120257 3.912628 3.196049 -3.645705 -2.170059 -1.062140 -0.067063 0.430599 -0.499259 1.156581 0.026284 -3.317015 -0.819476 2.857745 7.649748 -2.150878 -0.477187 2.509658 1.052655 -2.279386 -5.302282 -2.124673 -3.658218 0.633044 0.577983 0.208067 2.180136 5.075248 -5.177452 3.590853 -1.226806 -0.225669 3.190579 1.095043 -3.688880 -4.151433 -1.250771 2.387803 4.309818 -1.449153 0.748647 1.682179 -3.579825 -0.264958 0.547774 -0.024194 -0.811490 1.579361 0.255435 -2.244432 -1.959441 1.737391 -1.236901 -1.699577 0.099593 2.555455 0.790569 -3.794479 3.671301 0.128673 -1.311708 2.065691 -0.985187 4.085486 -3.419035 -3.747403 3.000141 0.253294 -0.216828 -1.429574 0.835345 2.828871 1.093288 0.643066 -2.208773 -3.858722 1.995752 -1.396809 3.215018 1.539413 -0.446364 1.772150 -0.802214 -1.115478 -3.583373 -2.152584 -1.544511 0.443078 -3.688489 -2.857140 -0.836001 4.368857 2.853668 0.379452 -2.737255 0.082892 4.169174 -4.259456 -0.859466 2.794159 1.596972 -4.278807 0.080051 3.444177 -4.385303 0.051163 -1.312904 0.036108 -1.223254 -3.014296 2.430729 0.690738 2.405434 -0.347716 0.586229 0.567833 1.565031 1.807621 1.046133 0.506692 5.067005 2.945714 -0.833896 -1.922940 -3.821909 1.381160 -4.720380 -4.479979 1.968673 1.387059 -3.425836 0.724918 1.111242 4.426452 0.719900 0.037549 -0.516703 -0.319081 +PE-benchmarks/rabin-karp-algorithm.cpp__main = -1.016325 -0.950869 -0.096507 -2.645331 2.112018 1.781508 1.018963 -1.180640 -3.206564 -0.618684 1.066889 -3.390601 -0.785443 3.488528 -0.944208 2.530693 4.488770 0.801518 -1.533578 -0.318738 3.014878 -0.512516 4.275833 3.737311 -2.546407 -0.054319 -0.425603 1.499715 0.456478 1.078784 -0.004914 -1.960545 1.507483 -2.894621 -0.715924 -2.070865 0.325025 0.867552 2.296200 -4.552701 0.793803 0.699703 0.341537 -0.891316 -0.757972 0.288987 2.250122 2.576823 -0.504950 1.070598 2.234916 0.329821 -0.294307 0.761132 0.847404 0.635449 0.537333 -0.053422 -1.465968 -1.304259 -0.374145 -0.876144 0.334578 2.566874 3.562187 0.281666 -0.164956 1.548028 0.487081 0.680564 1.679246 0.428164 -0.407390 -0.061874 1.341942 -3.326144 -0.517341 -4.778408 -0.580267 -5.767322 -1.868188 -0.002094 2.706886 0.213618 1.468796 -0.276500 2.809604 -0.711402 -0.631415 2.737488 3.341421 -2.645481 -1.469726 -1.892053 -1.582995 1.014444 -1.533054 0.137253 1.781987 0.439500 -2.655016 -1.450966 1.192759 1.210018 -1.037882 -1.811778 0.674539 2.487555 -2.669305 -2.107579 -0.220137 2.491808 -0.451347 -4.460303 -0.943365 -1.896362 1.385416 0.320673 -1.236871 -2.401271 0.574503 1.354607 -1.034126 -1.343124 -0.697194 2.233698 1.405427 1.238824 0.407750 0.451133 0.778895 4.527335 0.969507 -1.830445 0.372575 0.050060 -0.665806 1.199704 -1.903650 -1.490940 0.689860 -2.855534 0.658971 1.909797 -1.808426 -0.695308 1.572893 1.242599 0.775713 9.182789 0.168048 3.829827 2.449005 -2.796251 1.352379 -1.106934 0.061159 0.718005 1.413726 0.055867 -4.014269 -2.740908 1.658691 2.995322 2.296369 -3.373276 -0.870924 -0.451191 -0.045491 0.048346 -0.003540 0.753583 0.261541 -2.267668 -0.649157 2.315393 6.173938 -1.190657 -0.923452 1.508384 1.303965 -1.274733 -3.347993 -1.174229 -1.835517 0.592566 0.703853 0.182210 1.757465 3.733413 -5.136577 2.663180 -0.511966 -0.012414 2.341207 1.093195 -2.984785 -3.635195 -0.968045 1.794388 3.643220 -0.516347 0.372877 1.095567 -2.563886 -0.283970 0.541861 -0.033928 -0.659984 1.213886 0.217538 -1.600528 -1.447839 0.354602 -1.027177 -0.593362 -0.407240 1.800775 0.724737 -4.284376 2.720056 -0.011950 -1.088926 0.604088 -0.782875 2.917746 -2.606745 -2.943969 1.918386 -0.329390 -1.416778 -1.284840 0.313789 1.784855 0.824848 1.055434 -1.530850 -3.189336 2.486516 -1.121973 2.524202 1.251475 -0.322458 1.921438 -0.479006 -0.930189 -2.763138 -2.140133 -0.104033 -0.267087 -2.705858 -0.576667 -0.824118 2.765832 2.100242 0.253085 -2.433559 -0.285064 3.266351 -2.770367 -0.651137 2.138828 1.144113 -2.985002 0.792672 2.644695 -3.409807 0.025652 -1.421279 -0.489041 -0.976781 -2.082502 1.661850 0.280363 1.624571 0.009217 0.435921 -0.125374 1.094803 0.893513 0.355953 0.449768 4.129897 3.135889 -1.114864 -0.551900 -3.050702 1.387811 -3.447140 -3.613265 1.253950 0.384389 -2.558179 0.398250 0.581766 3.241821 0.590334 -0.358028 -0.769186 0.448228 +PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -4.797555 -5.839452 -3.416558 -11.427137 7.029672 7.667873 3.441849 -7.663365 -12.329612 -0.604838 5.566101 -12.337916 0.294667 12.725881 -4.078847 12.531346 16.038606 1.750171 -7.102815 -1.281683 14.576378 -1.176405 16.531596 13.932837 -9.689509 -1.469471 -0.879811 6.575802 4.501386 -0.147537 1.977031 -3.950485 5.805838 -15.350492 -4.835191 -8.231819 2.741473 4.963896 13.335727 -15.685917 3.380760 -1.024660 1.471038 -3.418232 -4.551489 -0.898278 5.537490 10.335426 -2.665965 3.491368 10.718802 1.613552 -2.593448 2.758294 1.386216 2.290287 0.584125 1.000885 -3.111969 -7.289185 -0.126045 -0.386354 3.709357 10.175167 14.175122 1.320252 0.194336 9.457489 3.946718 2.300615 7.478486 1.283371 -5.034074 -0.782171 4.866180 -18.243511 -2.045825 -21.138525 -2.329932 -19.607993 -5.560015 2.022088 7.662545 -2.328100 7.438452 2.064674 9.562131 -2.144866 -4.074856 12.297035 10.523591 -10.432014 -4.971334 -7.233528 -7.118391 3.981973 -6.093137 2.065466 7.217034 3.482499 -9.327938 -5.768184 3.639153 6.412156 -3.953176 -10.462896 3.458374 8.186448 -8.194863 -9.827040 3.769295 11.455766 -3.978235 -17.267082 -4.020190 -10.376971 7.357209 -1.272264 -3.240477 -10.536102 0.029854 5.640976 -2.756222 -6.509793 0.056698 5.788339 7.724487 5.826616 0.521125 0.986148 2.399433 20.120052 1.821661 -7.482717 1.269274 -0.485129 -2.585637 5.541417 -8.323750 -5.805622 4.399759 -11.198877 2.670400 9.289622 -5.851359 -3.456221 12.538109 5.941452 2.284385 39.490054 3.012314 15.698941 11.980720 -9.872785 2.805885 -5.331646 1.606574 4.554851 3.761067 -1.976166 -19.148313 -11.238899 5.693502 10.235802 8.495641 -13.563343 -5.847352 -1.012411 -0.879498 0.395632 -2.294343 2.552402 -0.438892 -8.283046 -2.216970 10.636336 23.353667 -4.327535 1.982803 6.498574 6.591633 -8.074991 -15.120082 -5.739187 -9.365160 2.743498 3.114214 2.062435 6.970764 13.678508 -17.698525 8.421614 -1.321062 2.650871 7.193414 5.802825 -13.667794 -14.927361 -3.588194 5.342110 12.237578 -5.182998 3.130316 6.244018 -9.409118 -0.554267 2.621932 -2.316856 -1.865735 3.596730 1.391651 -4.314878 -5.284544 6.733871 -4.882221 -2.249613 0.724144 7.535581 0.477329 -13.004772 9.121751 -1.091816 -4.418309 3.756384 -5.022958 13.562572 -10.073424 -9.515272 8.970037 0.716978 -1.659479 -5.163873 2.876849 7.647807 3.742943 5.453260 -6.908175 -11.696228 6.897473 -6.336757 8.180227 4.156829 -2.048854 4.817886 -8.494412 -1.790424 -13.595220 -7.457632 -3.696531 2.730013 -12.808380 -4.658793 -1.693702 11.112034 6.395275 0.336368 -11.063749 2.353513 12.041889 -12.090473 -2.438850 6.400693 7.741439 -14.510791 1.547609 8.375887 -13.794104 2.048107 -3.883392 -1.648523 -3.195994 -8.341441 7.915876 4.370466 8.070516 -1.713632 2.941676 2.485577 5.100850 4.884867 3.775368 3.006902 15.472673 11.798578 -1.885947 -6.978043 -12.514921 4.097061 -12.737609 -15.168221 6.411760 1.840480 -10.088582 2.179947 2.517583 15.175067 3.428150 -0.544104 -1.704257 1.579684 +PE-benchmarks/mergeSort_LinkedList.cpp__main = -1.032446 -0.196225 2.692921 -3.094330 1.842024 -0.150185 0.865527 0.374927 -2.996789 -1.856900 -0.119354 -2.211090 -2.167007 3.691042 -1.328137 -0.107363 5.252322 2.119524 -0.832204 -1.614344 2.413369 -2.127323 3.926699 4.352210 -3.620417 -0.104341 1.021862 2.914647 1.554410 2.787396 -0.496605 -1.925721 0.672330 -0.283626 1.957482 -3.515359 0.436504 0.667144 -1.222201 -5.935031 0.679861 0.621846 0.436704 -0.468148 0.144153 3.397591 3.297375 2.691898 -1.665587 0.696885 2.610893 1.043578 -0.054997 0.731227 0.665442 0.262220 2.133537 0.687177 -1.595118 0.187333 -0.618904 -3.147985 0.711645 3.165031 4.191700 0.170930 0.186691 -0.330844 0.639327 1.152233 1.352786 0.458225 0.974435 0.094896 1.873472 -2.909268 0.131404 -7.362194 0.006556 -9.650793 -2.175588 -1.905371 3.706905 -0.327697 -0.315563 -0.610491 3.564129 0.098356 0.794228 2.629874 4.034280 -1.598843 -1.411378 -2.524527 -2.280934 1.950273 -1.706994 -0.436894 1.807971 0.937183 -2.459546 -1.720203 1.407776 0.024222 -1.286964 0.060406 -0.194075 3.450974 -3.778854 -0.683517 -2.801256 1.338135 0.855384 -4.694296 0.480161 -2.728767 3.063083 0.328350 -1.084780 -1.044175 0.697734 1.855580 -1.473066 0.311902 -3.129691 3.812420 0.535776 -0.111727 0.153379 -0.027406 0.075445 1.591879 2.619864 -2.253397 -0.553321 1.194219 -2.608993 -0.574949 -3.481308 -0.934093 3.190603 -2.442657 0.199014 0.577004 -2.248042 -1.657504 1.767256 -0.542177 2.192657 8.818325 -0.529073 2.473703 1.248978 -2.824219 2.222142 0.835236 -0.136510 1.406432 2.753798 0.717695 -3.175490 -2.756865 0.852127 3.397141 2.526256 -3.222042 -1.407047 -1.331202 -0.529082 0.304809 0.443665 0.571629 -1.198538 -1.977314 -0.962803 1.202569 4.609857 -0.494578 -3.753412 0.189901 1.477018 -1.547604 -3.188564 -0.362836 -0.538806 0.593125 -0.135954 -0.634210 2.383487 4.200264 -9.050854 3.482121 -0.263006 -0.316871 2.393296 -0.394305 -1.273301 -5.640439 0.296633 2.593487 4.434143 0.299957 -0.564114 1.058971 -3.158168 -0.343166 0.181520 1.924012 -1.461317 1.504127 0.546419 -2.121905 -2.014795 -1.813868 -0.602360 -0.303355 -0.875452 1.414080 0.166364 -7.157683 3.587396 -1.183735 -0.749036 0.344421 -0.349704 1.322408 -3.535811 -3.759377 0.848781 0.234260 -2.445863 -3.067540 -0.064865 2.846949 -1.062278 0.417906 -1.492529 -4.162623 2.662318 -1.858123 2.374327 1.396884 0.335034 4.143769 2.095339 -0.663284 -2.972359 -0.452929 0.835599 -1.549802 -1.562668 0.243143 -0.891983 2.150660 3.923645 -0.347922 -0.389436 -0.006402 4.359474 -2.421044 -2.078499 2.288250 0.296683 -0.846506 2.607722 2.871801 -4.167932 -1.953650 -2.622950 -1.037956 0.426352 -2.252100 1.980257 -1.691638 1.121387 0.980603 0.482653 -1.560799 1.725775 0.712519 -0.306996 0.105914 4.452899 5.820567 -2.261365 1.320584 -2.637402 1.715719 -4.455680 -2.483959 -0.381815 -0.227356 -1.006669 1.168106 -0.127936 2.517817 0.110651 0.253579 -0.806375 0.462075 +PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.353194 -0.059529 0.932640 -1.024147 0.652412 0.073304 0.270251 -0.209191 -0.911299 -0.434399 0.054789 -0.627959 -0.467102 1.159442 -0.531632 0.216953 1.660380 0.568284 -0.316385 -0.608333 0.932268 -0.860792 1.329622 1.403869 -1.202079 -0.084382 0.639530 0.873337 0.647457 0.878027 -0.567501 -0.402719 0.261363 -0.548750 0.556842 -1.092483 0.158384 0.104796 0.002365 -1.729641 0.186505 -0.263242 -0.021953 -0.134892 -0.090200 1.106790 1.039879 0.857360 -0.481104 0.254368 0.950208 0.175204 -0.111959 0.217784 0.366110 0.347294 1.046429 0.657148 -0.433977 0.019247 -0.239489 -0.873721 0.371000 1.092592 1.340772 0.056340 0.112782 0.123579 0.213220 0.223599 0.438063 0.158036 0.131292 0.196607 0.606662 -1.569595 0.239086 -2.607738 -0.189907 -2.960097 -0.623001 -0.587128 0.685894 -0.751639 0.254861 0.149816 1.127154 0.070105 0.189006 0.566244 1.322455 -0.854206 -0.478828 -0.718119 -0.754453 0.377267 -0.596637 -0.054698 0.674124 0.098465 -0.784029 -0.725130 0.684262 0.302017 -0.376185 -0.110292 -0.052488 1.076532 -1.128443 -0.523476 -0.866765 0.147021 -0.039464 -1.542612 0.329374 -0.903343 1.372927 0.063971 -0.387765 -0.801964 0.242864 0.989993 -0.465451 -0.233724 -0.498473 1.191035 0.378394 0.124306 -0.014971 -0.183097 0.087407 0.767781 1.138804 -0.722610 -0.171427 0.267248 -1.085231 -0.154141 -1.062418 -0.367159 1.050891 -0.814450 0.020665 0.429419 -0.694742 -0.276629 1.436665 -0.084285 0.706529 3.138644 -0.228364 0.816737 0.302909 -1.047577 0.632503 0.137883 0.008469 0.403845 0.838628 0.227683 -1.617634 -0.929653 0.399920 1.067196 0.765528 -1.372544 -0.716377 -0.536013 -0.168665 0.217672 -0.049347 0.209370 -0.489861 -0.640045 -0.338513 0.329150 1.783928 -0.471854 -1.236264 0.138821 0.106582 -0.592790 -1.419157 -0.220159 -0.354409 0.328057 -0.178390 -0.162564 0.789927 1.353303 -3.079088 1.078108 -0.444578 -0.351572 1.022427 -0.032996 -0.432445 -1.741778 0.132602 0.824531 1.272430 0.205137 -0.212390 0.435494 -1.003346 -0.083778 -0.075135 0.661110 -0.468810 0.457913 0.374614 -0.935921 -0.756644 -0.387660 -0.039262 -0.273634 -0.130634 0.472082 -0.321577 -2.538456 1.202964 -0.240831 -0.230080 0.332123 -0.100492 0.424513 -1.175533 -1.223073 0.380523 0.138077 -0.330116 -0.933323 -0.022537 0.871810 -0.294138 0.148933 -0.670464 -1.510392 0.555969 -0.697634 0.792823 0.394330 0.186022 1.366424 0.300305 -0.131563 -1.164120 0.138698 0.079513 -0.366544 -0.626031 -0.271638 -0.222141 0.877481 1.197574 -0.116447 0.107692 0.041805 1.310780 -1.105849 -0.541021 0.685770 0.659848 -0.507432 0.547366 0.840502 -1.280477 -0.629142 -0.616203 -0.648084 -0.016088 -0.731726 0.600096 -0.514079 0.425947 0.244526 0.267151 -0.335901 0.520730 0.162767 0.118150 0.073787 1.292075 2.239931 -0.803043 0.089102 -0.932015 0.605775 -1.435504 -1.020926 0.085740 0.096280 -0.437216 0.336942 0.145424 0.919376 0.073134 -0.061851 -0.090765 -0.004237 +PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -2.333099 0.641709 2.125905 -5.287345 4.182123 3.642254 1.364783 -2.070743 -3.736886 -1.466568 -0.350004 -3.563232 -2.157505 6.550987 -2.118430 3.397618 8.364690 1.728655 -1.637343 -0.812229 6.108901 -2.197264 6.824389 6.100050 -5.770677 -0.761594 3.617238 3.024690 1.075498 4.075886 -2.191913 -4.310107 1.714071 -4.278572 1.242399 -4.886218 1.230905 0.642524 2.470172 -8.449490 1.173302 -0.780363 -0.724924 -1.674191 -1.830743 -0.198132 5.927396 4.981021 -2.855150 -0.355688 4.393043 2.378942 -1.702360 1.402275 1.140508 2.278094 1.515246 1.950086 -1.929969 -1.648554 -0.863599 -2.073619 1.840457 5.708793 6.609875 0.729486 0.732458 3.033280 0.145431 0.905272 0.981122 0.780922 0.086696 1.259400 2.841654 -7.868604 -0.818573 -11.973008 -1.137606 -11.045592 -3.121407 -2.660676 0.808624 -1.338932 3.393743 0.182970 5.892906 -0.602519 1.173977 4.272634 7.584384 -5.463700 -2.126520 -5.608111 -4.456920 2.001457 -2.996843 -0.152025 2.075238 -1.131777 -4.421215 -5.546124 1.823506 2.772865 -2.013658 -3.929417 0.468278 5.113875 -4.293963 -4.363356 -3.078461 1.603950 -2.347148 -8.826369 -0.678050 -3.907308 3.808514 -0.049844 -1.323582 -7.024650 0.785700 5.644715 -2.128633 -3.955994 -0.146982 4.909503 3.323603 0.457612 0.690682 -1.487060 1.130453 6.998188 5.032408 -3.353275 -0.750899 0.452954 -3.849314 -0.890065 -5.006389 -1.932812 2.878143 -5.256007 -0.205796 5.307335 -3.419477 -0.761359 6.168333 -1.385739 3.872751 18.677649 -1.018258 4.230397 2.046660 -6.991735 3.380782 -0.513649 -1.699885 1.258408 3.568437 1.914320 -9.155346 -4.998264 2.755167 5.529106 4.422098 -5.173745 -3.722079 -2.839083 -1.104833 -0.066686 -0.775961 1.465862 -2.068691 -4.157870 -1.712727 3.803076 9.796158 -3.105898 -4.546585 2.903323 3.598901 -2.978153 -6.600298 -2.230509 -5.493714 0.768690 1.093221 -1.287834 4.231321 7.441904 -12.386501 5.052590 -1.421001 -1.962038 3.797771 0.481143 -3.195961 -6.558049 1.185724 5.718114 6.011611 -0.824269 1.498711 0.577424 -5.028547 -0.342433 0.543326 2.420553 -1.992565 2.241552 0.614337 -5.175714 -4.364355 0.656226 -1.868201 -3.454226 -0.590565 2.369040 0.059337 -9.710459 7.439196 -0.589674 -0.667408 2.776448 -1.766478 4.498940 -6.045437 -7.134449 3.710851 1.016781 0.695131 -1.653980 0.660078 5.194415 0.676914 1.298978 -3.388355 -8.175699 1.872719 -1.233687 4.070546 2.057310 1.953729 5.026354 -0.893389 -1.334470 -6.310995 -2.464251 0.432378 0.630838 -4.872217 -4.248406 -1.258678 5.853689 5.993898 -0.789689 -2.026212 -0.937187 5.741962 -5.870159 -0.927440 3.893465 2.635417 -5.165361 -0.568114 4.841078 -5.443896 -3.016191 -2.872314 0.477834 -1.097365 -5.489358 1.761448 -1.906742 1.923311 1.971815 0.137722 -1.036397 2.453174 2.311745 1.479046 0.261904 5.749966 6.234783 -3.561293 -1.222540 -5.031704 2.155742 -8.173451 -6.518097 1.989185 -0.258055 -2.440120 1.007862 0.874256 4.884533 -0.998694 2.363442 0.489227 -1.913282 +PE-benchmarks/tarjan-algorithm.cpp__main = -7.184435 -1.338738 11.634311 -20.430813 16.017263 9.417989 7.285134 -2.213307 -20.630126 -11.128041 3.521598 -20.024215 -16.391035 25.437851 -9.227715 4.177781 31.331829 7.579830 -8.787581 -6.116499 16.371783 -3.800016 29.149255 26.330399 -22.282324 0.049186 -1.017955 15.349556 4.285898 16.872113 0.456307 -16.016708 7.303100 -3.573733 4.440185 -13.912969 1.086462 1.900168 -3.518815 -34.086613 4.260102 9.284155 -2.022428 -3.992059 -0.427032 11.564446 22.308140 18.503507 -4.929883 4.497328 14.870132 6.799938 0.321910 5.689069 6.865433 -0.948403 8.990524 -4.371303 -11.050174 -4.707812 -5.810163 -15.177023 -0.583508 20.945230 24.805572 2.189880 -1.109074 0.866033 -0.188668 8.567814 9.431843 4.936345 4.940893 2.712968 11.889317 -10.333341 -0.696362 -29.962519 -1.569870 -46.057176 -15.006458 -7.374782 23.501062 9.267499 2.033832 -6.208845 24.111148 -1.404196 -0.494223 18.773917 27.235839 -12.113805 -9.086282 -14.475663 -12.381895 8.583446 -10.900969 -0.516157 5.249528 6.634714 -18.725505 -5.946527 4.161883 1.250083 -8.402114 -2.604980 -0.219251 21.677366 -24.230515 -3.909070 -12.119923 14.427844 4.759697 -33.156830 -9.075805 -12.879439 14.068674 1.610251 -8.172688 -7.530780 7.048108 9.852494 -8.481640 -1.211096 -15.781549 21.082518 5.999342 3.564819 1.708929 4.541033 3.459429 18.261106 11.736714 -11.187963 -1.017293 2.065479 -7.045065 3.466940 -12.703953 -4.138395 7.202100 -17.084400 3.931054 9.274013 -12.954450 -10.194366 -4.484160 0.183860 9.980699 59.048119 -4.706805 21.181915 11.403768 -19.988020 8.950007 -1.144079 -1.225409 5.879410 13.148894 4.744592 -17.862288 -18.220545 12.575809 23.174239 15.983877 -20.416662 2.982071 -3.795064 -1.508361 -2.647711 4.216982 4.994059 -1.072324 -14.626119 -6.285042 12.471425 34.343917 -5.337632 -22.605156 7.960844 7.678423 -3.803338 -12.664985 -4.645494 0.321172 3.202636 8.039333 -2.266416 13.475848 27.993364 -42.009177 21.773967 0.736261 -2.580128 16.770858 0.104332 -12.042948 -22.381636 -3.333378 16.613509 26.217970 0.965207 -4.393239 3.778273 -20.668937 -1.538136 4.435770 7.635058 -7.450198 10.783985 3.156174 -12.563410 -13.463495 -11.689565 -4.829458 2.052558 -8.602638 10.845050 0.543076 -40.450617 23.923868 -2.235794 -6.395040 -1.102738 -3.463832 14.847680 -19.106390 -24.765147 8.824725 -5.007549 -20.556836 -13.906880 0.471237 14.205335 2.321555 5.675716 -12.658129 -21.586783 21.209342 -6.731087 19.331666 9.663411 3.127461 22.887021 9.107228 -7.168846 -15.237084 -13.702437 10.836435 -6.465989 -14.712965 3.588804 -7.100140 16.014308 20.160595 -1.398391 -10.595535 -3.831396 25.738154 -14.956782 -10.278902 15.941319 1.962499 -12.366163 14.397308 20.007622 -21.090699 -7.956380 -15.691496 -4.648773 -6.195370 -17.125376 11.599183 -5.090217 9.366069 5.342686 3.791551 -9.439133 7.933288 3.984311 -1.048652 1.639326 28.540533 28.546645 -12.863919 6.231444 -19.233913 13.701920 -27.123853 -20.742564 4.346105 -3.237535 -7.475595 3.603472 -3.511444 18.061362 2.915162 -2.458586 -6.458730 5.163548 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = -0.413558 0.520414 0.918073 -1.000680 1.167729 1.111363 0.363366 -0.409894 -0.809124 -0.334697 -0.185619 -1.054074 -0.874397 1.462733 -0.571759 0.479407 1.973457 0.463213 -0.345049 -0.150545 0.939258 -0.266490 1.743616 1.534987 -1.316590 0.010890 0.659243 0.628381 -0.072929 1.512250 -0.986705 -1.354492 0.491661 -0.440593 0.327186 -0.939077 0.044680 -0.216140 0.200079 -2.020084 0.181612 0.136399 -0.320284 -0.318613 -0.139177 0.165356 1.784695 1.036830 -0.258466 -0.035986 0.707193 0.575288 -0.119295 0.347083 0.622148 0.557206 0.998461 0.187839 -0.657221 -0.270546 -0.393433 -0.628559 -0.071148 1.320021 1.491047 0.274455 0.031759 0.162583 -0.243773 0.161407 0.076277 0.302819 0.340540 0.708070 0.505178 -0.987275 0.172498 -1.896617 -0.314978 -2.117939 -0.852728 -0.823392 0.244782 0.092746 0.712894 -0.266449 1.500928 -0.138039 0.372286 0.438340 2.020364 -1.416161 -0.517341 -0.997348 -0.772596 0.258324 -0.653284 -0.002679 0.186395 -0.424102 -1.107367 -1.250694 0.586851 0.465177 -0.484917 -0.214534 -0.011614 1.227447 -1.170831 -0.740017 -1.100168 0.044657 -0.351707 -2.029487 -0.385520 -0.547494 0.697595 0.219561 -0.494902 -1.584939 0.487550 1.309114 -0.559641 -0.800498 -0.304837 1.378636 0.646246 -0.039468 0.168740 -0.252690 0.403768 1.481646 1.141670 -0.645318 -0.090159 0.014020 -0.836210 -0.218630 -0.918740 -0.241331 0.101664 -1.104196 0.025103 1.186214 -0.855873 0.111935 0.413294 -0.327846 0.872183 3.906630 -0.577244 0.936033 0.197275 -1.763992 0.886680 -0.137829 -0.517367 -0.004463 0.807979 0.776664 -1.900719 -1.072107 0.818932 1.407558 0.946336 -1.243556 -0.179189 -0.664026 -0.137493 -0.182379 0.162643 0.370932 -0.311897 -0.943849 -0.454070 0.686284 2.523994 -0.800267 -1.787862 0.644019 0.202549 -0.197247 -1.057096 -0.412223 -0.635664 0.170763 0.272427 -0.325469 0.871045 1.723919 -2.826367 1.320559 -0.356695 -0.940108 1.423020 -0.101188 -0.530766 -0.660345 0.250108 1.475730 1.423705 0.269507 -0.043771 -0.135033 -1.218137 -0.186395 0.072631 0.803396 -0.566810 0.647405 0.429440 -1.539802 -1.072958 -0.663683 -0.104948 -0.785077 -0.589623 0.534518 0.002435 -2.775168 1.860860 0.209396 -0.159756 0.430098 -0.319982 0.673216 -1.325312 -1.768722 0.666714 -0.120133 -0.206874 -0.259959 -0.033140 0.947916 0.251625 0.492061 -0.972132 -1.795928 0.709735 -0.009191 1.064555 0.535603 0.666437 1.206359 0.433648 -0.471658 -1.104026 -0.666440 0.614577 -0.136715 -0.906617 -0.425653 -0.509259 1.292945 1.557387 -0.134046 -0.299747 -0.746107 1.308723 -1.163720 -0.137361 1.018069 0.432503 -1.004742 -0.128537 1.178555 -0.975051 -0.916064 -0.649653 -0.295774 -0.507369 -1.230970 0.260688 -0.786665 0.284978 0.706108 -0.105135 -0.645451 0.437808 0.194686 0.045575 0.089161 1.344036 1.420196 -0.912694 0.387580 -1.104826 0.747483 -1.876151 -1.406909 0.454626 -0.349884 -0.642901 0.031553 0.131096 0.907069 -0.271396 0.309242 -0.001473 -0.407595 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -3.660378 -1.788099 1.172719 -9.968189 8.079036 7.546020 3.344124 -4.598869 -8.576246 -2.880155 3.688111 -8.252875 -4.465458 10.979778 -4.294061 6.784012 11.920968 -0.053700 -4.843073 -1.959733 10.843653 -1.402202 13.655980 9.690753 -10.469877 -0.847946 0.564194 6.036525 2.718719 4.942165 0.819948 -5.045312 3.627823 -7.466307 -0.774598 -4.141614 2.063049 0.921843 4.200702 -12.270643 1.869264 1.289751 -1.595739 -2.063164 -3.056083 0.053501 8.145686 9.004695 -2.707954 1.412967 8.856121 2.014425 -1.434217 2.713216 2.125456 0.306385 2.473652 -0.553921 -3.488813 -4.906313 -1.588446 -3.588469 1.797816 9.502870 10.955656 0.362610 0.561169 5.895991 -0.369634 3.329138 5.084085 1.986021 -1.556904 0.755609 6.171753 -9.550020 -1.272328 -14.166765 -2.224987 -15.854065 -5.694993 -1.623310 5.728562 1.785973 5.498204 0.292988 9.750616 -0.420000 -2.053647 8.685201 10.684327 -7.156852 -3.796898 -7.326393 -6.248862 2.624088 -5.592812 0.603450 2.737162 2.165275 -8.053765 -2.991774 1.626012 3.997557 -3.568388 -6.748726 0.243676 8.152278 -8.242129 -5.360743 -1.243267 7.361235 -2.067250 -15.856999 -4.718952 -6.513248 6.212762 -1.264183 -1.135939 -7.032706 1.298310 6.793694 -2.797201 -4.815645 -1.650027 7.083034 5.926462 4.021017 1.206159 1.215951 2.012715 12.884005 5.339710 -4.184335 -1.187237 -0.997772 -2.079991 3.778228 -4.204125 -2.257826 2.414219 -8.579856 1.738399 7.861518 -4.027939 -3.364086 3.892623 1.367939 3.919770 30.815445 -0.232464 10.538187 6.278427 -9.683221 2.417802 -2.701882 -0.126485 3.464340 3.851352 -0.374520 -12.388360 -8.721349 6.336276 8.672700 6.530195 -10.547085 -0.805877 -1.146872 -0.742550 -1.081627 -1.288302 2.943289 -0.368213 -6.877088 -2.338603 7.501743 17.272128 -4.245481 -5.474443 6.791613 4.572769 -4.619224 -8.623941 -4.314186 -4.265652 1.600899 4.294222 0.139870 5.737639 12.083954 -14.540946 7.720928 -0.507139 -0.581858 6.936177 1.172453 -7.197652 -9.745186 -1.307100 6.481088 9.382389 -2.217649 0.216745 2.670494 -8.394801 0.624058 2.024655 0.532808 -1.781166 3.754821 0.452018 -5.317524 -6.805372 -0.035562 -3.344057 0.616815 -1.706862 4.921331 -1.055461 -14.557109 10.268507 -1.095308 -3.673157 1.673455 -2.578451 9.911111 -7.816460 -10.243038 6.398505 -1.405117 -4.467807 -4.972866 1.916582 5.967342 3.162453 2.627742 -6.629218 -9.903326 6.023104 -3.760673 7.473514 3.929612 1.542195 7.575945 -2.102705 -2.844570 -9.589832 -6.549209 1.729065 0.734001 -9.804346 -2.776215 -2.194760 9.000118 6.433818 -0.300678 -5.912739 -0.369330 10.227157 -8.973133 -3.773753 6.448384 4.524225 -10.126943 2.844477 8.172289 -8.344110 -1.557770 -4.991446 -0.778274 -3.907612 -9.317088 5.254742 1.262534 6.058578 0.855359 3.157480 -1.066940 3.344011 2.582253 2.485452 -0.064206 11.910665 10.832367 -5.031324 -3.441348 -9.395238 5.132943 -11.752908 -11.901275 5.190034 -0.076462 -3.882845 1.885325 -0.035363 10.221826 1.864007 -0.736165 -1.145239 0.291967 +PE-benchmarks/quicksort-for-linked-list.cpp__main = -1.204207 0.042635 2.593564 -3.508950 2.065570 0.372228 0.812806 -0.057858 -2.914388 -1.950107 -0.120900 -2.400614 -2.238180 3.938256 -1.581416 0.112970 5.536037 1.831572 -0.892977 -1.690254 2.943672 -1.897595 4.371018 4.603298 -4.169157 -0.275653 1.718622 3.138243 1.891825 2.626452 -0.308941 -2.258614 0.682927 -0.609648 1.966984 -3.591496 0.674915 0.510719 -0.827913 -6.228776 0.649843 0.212560 0.113035 -0.519376 -0.101138 2.998761 3.726143 3.032589 -2.076022 0.462839 3.202565 1.569027 -0.405353 0.721315 0.378151 0.080839 2.054470 0.768768 -1.372138 -0.118973 -0.457575 -2.872544 0.864876 3.697011 4.660314 0.245911 0.342415 0.191323 0.716395 1.177717 1.220354 0.591485 0.815762 0.547104 2.086847 -3.709085 -0.036888 -8.528565 -0.008586 -10.067277 -2.254674 -2.115882 3.249116 -0.546310 -0.002298 -0.277548 3.911697 0.297597 0.907495 3.206184 4.512447 -1.832403 -1.395591 -2.974102 -2.773408 2.176100 -1.949012 -0.095234 1.596741 1.007442 -2.622936 -2.273506 1.202268 0.270484 -1.472587 -0.559730 -0.188289 3.488670 -3.849941 -0.894736 -2.713952 1.447730 0.565373 -5.439177 0.010666 -3.125334 3.559118 0.060469 -0.863792 -1.681261 0.434671 2.353697 -1.470386 -0.072534 -2.816142 3.743189 1.186449 -0.017777 0.148219 -0.194142 0.355833 2.303483 2.802010 -2.386555 -0.770004 1.055185 -2.745103 -0.738082 -3.821145 -0.808216 3.463447 -2.673125 0.403288 1.306888 -2.292635 -2.027804 2.497958 -1.038161 2.503653 10.598578 -0.447354 2.658017 1.467744 -3.352864 1.957208 0.600991 -0.417692 1.566213 2.758574 0.934974 -3.831328 -3.031071 1.056795 3.663779 2.670884 -3.448510 -1.647636 -1.282852 -0.775852 0.064982 0.263167 0.645364 -1.582803 -2.113800 -1.073418 1.870763 4.995067 -0.577300 -3.714628 0.431058 2.241961 -1.810396 -3.359883 -0.501600 -1.059010 0.670870 0.353850 -0.609296 2.731521 4.583361 -9.858446 3.514075 0.060418 -0.198506 2.206280 -0.237439 -1.596393 -5.805431 0.781415 3.080973 4.385046 -0.067334 -0.117316 1.011452 -3.427290 -0.293017 0.383596 1.970630 -1.616073 1.577362 0.660942 -2.434646 -2.494355 -1.328394 -0.851293 -0.490467 -0.913399 1.537642 -0.092339 -7.734859 4.217660 -1.368763 -0.806941 0.449799 -0.970360 1.925538 -4.059340 -4.155870 1.187632 0.309288 -2.065741 -2.941371 0.031137 3.197025 -0.846392 0.937625 -1.890849 -4.604492 2.429661 -1.883505 2.392427 1.499962 0.667623 4.314062 1.001754 -0.544917 -3.658609 -0.666835 1.052252 -0.966888 -2.173597 -0.200739 -0.850773 2.479787 4.284880 -0.734892 -0.759693 0.127664 4.429488 -2.937447 -2.112259 2.205338 0.865977 -1.521654 2.321493 2.862993 -4.326872 -2.030313 -2.819495 -0.779933 0.324967 -2.886372 2.036672 -1.666614 1.282135 1.270729 0.447588 -1.515040 2.018200 0.925687 0.036049 0.230783 4.478112 6.108429 -2.401246 0.892365 -3.133244 1.727425 -5.110726 -3.227216 -0.000966 -0.578820 -0.867754 1.127594 -0.346441 2.893318 0.060863 0.701253 -0.643865 0.366294 +PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -0.683668 -0.070875 0.954304 -1.628181 1.049919 0.553440 0.395235 -0.645997 -1.247566 -0.416244 0.001015 -0.872620 -0.470605 1.859697 -0.723167 0.897278 2.527035 0.722613 -0.522246 -0.682187 1.841080 -1.183503 2.059735 2.017856 -1.838074 -0.229638 1.248314 1.250260 0.895647 1.161596 -0.807738 -0.638968 0.440914 -1.406947 0.633222 -1.730963 0.392158 0.311365 0.631274 -2.630124 0.324053 -0.595816 0.040236 -0.339883 -0.442667 0.759052 1.522954 1.459104 -0.868371 0.164065 1.520373 0.409899 -0.344964 0.382863 0.405029 0.776454 1.152212 1.001604 -0.508778 -0.279855 -0.242149 -0.970383 0.810798 1.728390 2.116703 0.124115 0.252255 0.770422 0.321177 0.280821 0.543930 0.245418 -0.176079 0.281104 0.927848 -2.940767 0.189623 -4.168606 -0.346150 -3.989212 -0.904974 -0.840142 0.416258 -1.157612 0.923938 0.469159 1.756715 -0.009330 0.294918 0.989189 2.048327 -1.592586 -0.655149 -1.391577 -1.298703 0.623345 -0.952845 -0.060420 1.024675 -0.068306 -1.210383 -1.508657 0.959689 0.814177 -0.628457 -0.841155 0.031212 1.586256 -1.420115 -1.339310 -1.035142 0.277622 -0.648494 -2.525455 0.337910 -1.488105 1.789157 -0.057343 -0.391011 -1.901127 0.191432 1.760540 -0.594551 -0.955341 -0.206898 1.564034 0.925821 0.143505 0.065353 -0.455662 0.135189 1.811334 1.737833 -1.113236 -0.309580 0.353256 -1.610848 -0.261630 -1.720518 -0.660021 1.422491 -1.493062 -0.102740 1.238678 -1.023607 -0.266705 2.701495 -0.218333 1.148884 5.490938 -0.195797 1.237791 0.652157 -1.843791 0.964937 0.043683 -0.165374 0.676341 1.192304 0.349275 -2.985305 -1.536488 0.598941 1.618866 1.259937 -1.930097 -1.526411 -0.932109 -0.313028 0.278878 -0.304741 0.370055 -0.807621 -1.114565 -0.484700 0.790318 2.840961 -0.940300 -1.470771 0.558442 0.617051 -1.251747 -2.510616 -0.596211 -1.429531 0.360488 -0.201989 -0.275575 1.235604 2.150245 -4.308314 1.565139 -0.653816 -0.524392 1.440329 0.066113 -0.852875 -2.615764 0.340874 1.414749 1.845229 -0.164922 0.121876 0.574817 -1.568583 -0.079334 -0.031329 0.830302 -0.676099 0.691744 0.384918 -1.458163 -1.232275 0.121961 -0.268675 -0.891023 0.018673 0.757500 -0.328428 -3.310225 1.973077 -0.377070 -0.320441 0.949466 -0.365352 1.040267 -1.876124 -1.955981 0.940246 0.482046 0.212762 -1.064146 0.160800 1.573984 -0.174790 0.244251 -1.086777 -2.399172 0.462252 -0.931188 1.106770 0.607697 0.385895 1.718640 -0.179615 -0.261875 -2.057712 0.039463 -0.298170 -0.054982 -1.274647 -1.239058 -0.292001 1.648947 1.883911 -0.183763 -0.100450 0.076853 1.940189 -1.947710 -0.607986 1.061388 1.122813 -1.261871 0.243296 1.310435 -1.910768 -0.922717 -0.790465 -0.497364 -0.032442 -1.391519 0.882158 -0.641005 0.692467 0.407531 0.242184 -0.227810 0.884193 0.570034 0.470680 0.089562 1.859957 2.765562 -1.103949 -0.423131 -1.480880 0.678542 -2.361672 -1.722225 0.375685 0.187217 -0.756364 0.506192 0.394318 1.586301 -0.034990 0.327351 0.102356 -0.463801 +PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.753804 0.388821 0.755691 -1.656591 1.388778 1.005313 0.427021 -0.604444 -1.167133 -0.813156 -0.119243 -1.268414 -1.021779 2.058554 -0.834282 0.673196 2.736882 0.563852 -0.418041 -0.504487 1.773090 -0.586195 2.387436 2.093769 -1.980295 -0.221795 1.316578 1.116051 0.463715 1.285641 -0.379495 -1.701501 0.658856 -0.882259 0.506697 -1.538586 0.370882 0.062981 0.387563 -2.779150 0.321003 -0.335385 -0.368852 -0.411183 -0.467266 0.410856 2.139171 1.577730 -0.911653 0.003679 1.534399 1.119542 -0.554154 0.466005 0.278277 0.334263 0.645467 0.263409 -0.603543 -0.495007 -0.336840 -0.810944 0.281018 1.925244 2.245491 0.248162 0.248943 0.762722 -0.094238 0.476987 0.294104 0.311074 0.271414 0.591411 0.924222 -2.259191 -0.357208 -4.171071 -0.392474 -4.288678 -1.035637 -1.008858 0.528997 -0.394754 0.723155 0.248014 1.991190 0.094743 0.426513 1.565843 2.632431 -1.476934 -0.665609 -1.591357 -1.384965 0.762426 -0.993109 0.176210 0.526863 -0.008512 -1.425642 -1.756234 0.500213 0.548205 -0.674089 -1.154534 0.036021 1.612209 -1.752069 -0.895722 -1.185736 0.503661 -0.354924 -2.964606 -0.465487 -1.277000 1.698304 -0.013069 -0.422971 -1.898359 0.279290 1.706552 -0.659179 -0.915765 -0.160262 1.470652 1.017831 0.150381 0.178052 -0.316804 0.420176 2.198824 1.596152 -1.043890 -0.320747 0.079712 -1.147521 -0.322140 -1.648424 -0.397533 1.011870 -1.555766 0.449638 1.608746 -1.109542 -0.851186 1.629680 -0.778678 1.290100 5.829274 -0.387995 1.338728 0.695211 -2.255296 0.605297 -0.299675 -0.552745 0.432139 1.213801 0.731301 -2.251422 -1.609090 0.955200 1.817311 1.375188 -1.738992 -0.910234 -0.743668 -0.310979 -0.162319 -0.118617 0.465862 -0.735674 -1.225511 -0.587675 1.318839 2.993300 -0.760431 -1.565339 0.799495 1.345121 -0.751506 -1.711771 -0.590649 -1.231173 0.310400 0.665528 -0.361123 1.297076 2.427386 -4.474251 1.610450 -0.134535 -0.384073 0.960686 0.249756 -0.967217 -2.162387 0.521678 1.980756 1.920044 -0.203001 0.556417 0.129622 -1.667188 -0.155172 0.254361 0.930910 -0.736661 0.733097 0.384743 -1.723376 -1.509488 -0.006578 -0.443578 -0.777757 -0.315106 0.778380 0.057981 -3.877901 2.547358 -0.370973 -0.277902 0.504566 -0.646301 1.563683 -1.992343 -2.385315 1.059334 0.000868 -0.261572 -0.654651 0.193003 1.628369 0.092855 0.816922 -1.028612 -2.390905 0.841758 -0.373710 1.230876 0.672695 0.785449 1.956700 -0.766403 -0.409725 -2.062523 -0.699542 0.583644 -0.031536 -1.462592 -0.700166 -0.371347 1.675888 2.100875 -0.354932 -0.812241 -0.168197 1.911887 -1.950556 -0.442466 1.240277 1.177495 -1.508541 0.350092 1.515724 -1.789541 -1.096496 -1.100556 0.046565 -0.351383 -1.888050 0.592808 -0.745345 0.574012 0.818220 0.066917 -0.582326 0.937523 0.633900 0.433434 0.119835 1.804567 2.513648 -1.263382 -0.101299 -1.627990 0.686702 -2.765988 -2.223213 0.604963 -0.330043 -0.538198 0.264124 -0.186259 1.543750 -0.295584 0.750919 -0.033049 -0.321968 +PE-benchmarks/coin-change.cpp__main = -0.862985 -0.931002 -0.137924 -2.096215 1.723803 1.502685 0.929554 -1.133825 -2.735806 -0.365952 1.099699 -2.956011 -0.616758 2.882747 -0.780563 2.178057 3.691725 0.621511 -1.402802 -0.357065 2.401189 -0.524363 3.604472 3.174080 -2.021863 -0.007940 -0.535346 0.959864 0.431768 0.552835 0.042784 -1.184552 1.270352 -2.464162 -0.610352 -1.331232 0.169627 0.700598 1.924962 -3.704717 0.640385 0.288730 0.501155 -0.675644 -0.712029 0.640268 1.918531 2.119933 -0.211123 0.950879 1.840058 -0.021758 -0.047316 0.664708 0.682072 0.387275 0.534901 0.020519 -1.258397 -0.995677 -0.310451 -0.759493 0.316621 2.150922 2.824980 0.327553 -0.226361 1.351563 0.531348 0.643895 1.468624 0.425348 -0.483882 0.048938 0.987073 -2.857298 -0.181344 -3.891394 -0.587230 -4.694656 -1.609473 0.189839 2.341813 0.265484 1.201855 0.030456 2.374004 -0.387256 -0.744835 2.175258 2.901340 -2.183232 -1.289267 -1.333294 -1.212122 0.679921 -1.149873 0.265395 1.668002 0.564364 -2.201631 -0.798553 1.075592 0.950404 -0.856377 -1.523548 0.633290 2.050512 -1.943075 -1.635963 -0.108985 2.073670 -0.241433 -3.853394 -0.391191 -1.471731 1.005245 0.308689 -1.153459 -2.021477 0.461856 0.929377 -0.885969 -0.921383 -0.737659 1.815516 1.095051 1.140834 0.309121 0.602126 0.699617 3.595056 0.701606 -1.598987 0.405596 -0.074032 -0.503055 1.262204 -1.313168 -1.367816 0.349404 -2.464676 0.863719 1.473349 -1.487781 -0.595557 0.999158 1.163323 0.408648 7.125761 0.082806 3.168193 2.077187 -2.362156 1.197812 -1.052626 0.226691 0.653159 1.177339 -0.162259 -3.167166 -2.267959 1.527026 2.597803 1.877513 -2.875746 -0.629241 -0.196900 -0.101244 0.031058 0.035548 0.709553 0.287214 -1.689687 -0.517072 2.010624 5.132817 -1.023299 -0.486680 1.273405 0.705415 -0.698507 -3.019048 -1.072480 -1.461519 0.520986 0.634281 0.321836 1.368902 3.095484 -3.934790 2.251077 -0.490595 0.080699 2.200273 0.968944 -2.475333 -3.168478 -0.895851 1.498413 2.906266 -0.480922 -0.140358 1.018105 -2.150856 -0.253059 0.498369 -0.081348 -0.531146 1.016236 0.128499 -1.182859 -1.059225 0.342328 -0.646950 -0.276734 -0.210624 1.649028 0.434251 -3.347633 2.284886 0.085111 -1.109922 0.328372 -0.631797 2.280646 -1.901476 -2.228441 1.419813 -0.459717 -1.173438 -1.242284 0.294448 1.283742 0.498552 0.929685 -1.322981 -2.440698 2.022073 -1.001995 2.140090 1.063959 -0.333130 1.521351 -0.324734 -0.947058 -2.086843 -1.662791 -0.105274 -0.245254 -2.189439 -0.291084 -0.645810 2.298911 1.564469 0.329840 -1.972846 -0.070139 2.610072 -2.209200 -0.798825 1.775714 0.854361 -2.462297 0.842829 2.157716 -2.749080 0.208426 -1.155236 -0.451897 -0.960289 -1.761235 1.440219 0.431466 1.384741 -0.261738 0.407444 0.201802 1.041001 0.679963 0.487470 0.349908 3.370816 2.424379 -0.838949 -0.615606 -2.474762 1.222845 -2.857483 -2.972918 1.190073 0.784149 -2.004149 0.216621 0.498694 2.543973 0.397343 -0.712809 -0.867371 0.630385 +PE-benchmarks/coin-change.cpp__count(int*, int, int) = -3.595276 -4.594157 -3.569636 -7.348389 5.336111 7.116424 3.031034 -6.000647 -9.266920 0.515023 4.444029 -9.969640 0.122019 9.521498 -2.740270 9.995976 12.202622 1.414825 -5.696027 -0.476970 9.938755 -0.630806 12.681180 10.453697 -6.068395 -0.882304 -2.179744 2.825616 1.773393 -0.945563 1.544177 -2.296345 4.719037 -11.590400 -4.034740 -4.236403 1.334699 3.568559 9.856956 -11.669284 2.438072 -1.006323 2.149275 -2.536275 -3.728250 -0.566272 4.746915 7.398776 -0.035824 2.568680 6.636265 0.302989 -0.850286 2.347449 1.311301 1.973466 -0.204374 -0.275642 -3.145537 -5.105105 -0.415803 -0.024376 2.270638 7.231219 9.520778 1.687650 -0.407912 7.117010 2.635584 2.017047 5.445051 1.147337 -4.275387 -0.005996 2.522696 -12.718161 -1.016193 -12.935178 -2.265860 -12.414544 -4.398245 2.024918 5.685097 0.469199 5.863555 1.882298 7.311695 -1.576546 -3.566178 8.494164 8.747672 -8.156006 -4.099834 -4.777417 -4.082891 1.830343 -3.722826 1.622211 5.975186 2.711570 -7.084119 -2.762175 2.937346 4.717979 -2.685191 -8.112532 3.004423 6.241924 -4.764667 -7.226961 2.625851 8.723487 -2.850649 -13.425001 -1.895584 -6.231634 2.746051 -0.073162 -3.244222 -8.778160 0.573570 3.574909 -2.090085 -4.570793 0.016075 4.274687 5.027451 4.121566 0.592152 2.183810 1.894675 15.013311 0.822378 -5.435744 1.685216 -0.620931 -1.217344 4.945173 -4.443668 -5.055748 0.201276 -9.234930 3.364491 7.058114 -4.444574 -1.871561 5.367754 5.009848 0.859496 26.994610 1.410646 11.434873 8.708793 -8.068153 3.033915 -4.880698 1.562204 2.593246 2.744809 -1.980919 -13.470634 -8.101554 4.970178 8.116422 6.299937 -9.541711 -3.021015 -0.539633 -0.674757 0.077721 -1.290632 2.603492 0.531010 -5.498813 -1.447987 8.128919 18.452980 -3.752383 3.023810 5.364553 3.084226 -3.748599 -11.798276 -4.812649 -7.163538 1.685260 2.927632 2.017913 4.293071 10.110755 -9.510760 6.691386 -1.565749 1.828536 6.784786 4.505018 -9.734514 -10.272440 -3.618465 4.569998 9.177535 -4.087863 0.426455 4.192396 -6.902849 -0.561239 2.325998 -1.575273 -1.037046 2.720551 0.408801 -3.108231 -3.080677 5.176967 -2.775523 -1.466693 0.761430 5.929291 0.735239 -7.659487 7.186885 0.332214 -3.903080 2.397611 -3.074174 9.513465 -5.906813 -6.401671 6.139377 -0.318580 -1.189016 -3.317600 2.080951 4.858361 2.739024 4.345339 -5.100362 -7.861755 5.278813 -3.647130 6.578593 3.144178 -1.611813 2.789589 -5.436587 -2.853255 -8.334482 -6.795882 -2.852476 1.834813 -8.945325 -2.633709 -1.312873 8.671310 4.013904 1.250430 -8.796915 1.388144 8.582606 -8.146201 -2.018463 5.245177 4.247121 -10.793970 0.906668 6.589618 -9.646418 1.947365 -2.401998 -0.275841 -3.392887 -6.429132 5.269248 3.366422 5.795417 -2.256007 1.901417 2.926726 3.773942 3.523464 3.399225 1.965800 11.312029 5.554030 -0.773534 -5.213094 -8.636979 3.321243 -9.295646 -10.784490 5.162641 3.549731 -7.141034 0.989135 2.320481 10.130620 1.573154 -1.930060 -2.291768 1.391696 +PE-benchmarks/transitive-closure-of-a-graph.cpp__main = -0.619988 -0.599072 -0.153976 -1.606300 1.177549 1.166434 0.588475 -0.445611 -2.056499 -0.525808 0.447385 -2.076315 -0.390577 2.174504 -0.446825 1.601532 2.932743 0.616112 -0.872165 0.138025 1.711051 -0.667604 2.337446 2.280721 -1.257074 -0.015938 -0.515041 0.906511 -0.200464 1.096575 0.198905 -1.424456 0.671767 -1.568221 -0.445795 -1.536462 0.130488 0.820711 1.062165 -3.078172 0.575465 0.914895 0.478593 -0.661079 -0.481272 -0.392344 1.328913 1.464310 -0.144216 0.527366 1.041281 0.375118 -0.121537 0.496244 0.538969 0.579322 0.195850 -0.456194 -1.013685 -0.637771 -0.236554 -0.631180 0.283124 1.390528 2.036183 0.177367 -0.089951 0.787301 0.019060 0.455302 0.994455 0.140472 -0.590625 -0.283822 0.576465 -1.857503 -0.209716 -2.307734 -0.187279 -3.325011 -1.102977 0.071806 1.688677 1.169238 0.812883 -0.312770 1.619818 -0.858362 -0.288393 1.728790 1.965319 -1.389483 -0.859899 -1.305086 -0.910186 0.605171 -0.745522 -0.411551 0.934488 0.337907 -1.469159 -0.561135 0.884602 0.777387 -0.560446 -1.132715 0.456371 1.563002 -1.742962 -1.381015 -0.154305 1.806009 -0.296357 -2.599794 -0.497934 -1.161223 -0.027036 0.229009 -0.823886 -1.531479 0.470121 0.735569 -0.520510 -0.667293 -0.784325 1.509718 0.471236 0.524832 0.319403 0.284360 0.300509 2.581848 0.477471 -1.025522 0.305557 0.208022 -0.340961 0.579276 -1.044583 -1.059393 -0.266963 -1.870837 0.253500 1.183833 -1.115080 -0.310958 -0.018944 0.702675 0.452755 6.016776 -0.022561 2.217616 1.426897 -1.747653 1.201995 -0.495810 -0.064380 0.248950 0.746280 0.033234 -2.559417 -1.490115 0.940736 1.746446 1.473295 -1.568271 -0.547891 -0.368019 -0.037640 0.297584 0.039137 0.451320 0.279628 -1.514464 -0.391445 1.261481 4.039400 -0.455370 -0.258558 1.044394 0.737444 -1.022533 -2.484968 -0.677621 -1.380942 0.217343 0.226354 -0.197760 0.891703 2.207042 -2.682025 1.719823 -0.298962 -0.043928 1.582277 0.431536 -1.549952 -2.873978 -0.890051 1.191143 2.655332 -0.659508 0.402719 0.500456 -1.446494 -0.191187 0.374220 0.016269 -0.357055 0.699082 -0.073474 -1.035292 -0.675627 0.249874 -0.707596 -0.379586 -0.368703 0.958005 0.825303 -1.797674 1.661564 0.165142 -0.503353 0.408462 -0.103186 1.674149 -1.391275 -1.744072 1.117024 -0.106050 -0.900465 -0.637824 0.176020 1.121323 0.517044 0.230120 -0.591425 -1.961573 1.397694 -0.539173 1.477463 0.722316 -0.284913 0.889366 0.527040 -0.580618 -1.389728 -1.521038 -0.318976 -0.389929 -1.379267 -0.444123 -0.531741 1.697132 1.158213 0.360020 -1.600210 -0.121914 2.255400 -1.050793 -0.318111 1.364677 -0.160653 -1.734508 0.261193 1.726220 -2.205249 0.008077 -0.907489 0.159035 -0.551062 -1.148590 0.891930 0.196207 0.890627 0.024700 0.149845 -0.216303 0.521621 0.744164 0.112563 0.157415 2.730964 1.078955 -0.338149 -0.148977 -1.512760 0.523519 -1.949203 -1.822741 0.477753 0.629572 -1.481882 0.255503 0.594603 1.769326 0.198426 0.221845 -0.269342 0.108162 +PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -0.826469 -1.045046 -0.421278 -2.144253 1.149560 1.045718 0.605954 -0.681722 -2.460989 -0.553244 0.747109 -2.288970 -0.190746 2.520208 -0.600530 2.050502 3.312951 0.539649 -1.034049 0.061625 2.391187 -0.995858 2.623196 2.573487 -1.757831 -0.215029 -0.459503 1.280596 0.317658 0.714402 0.595211 -1.247219 0.600499 -2.161129 -0.429403 -1.806384 0.533827 1.220290 1.636937 -3.597315 0.667953 0.854082 0.753190 -0.729004 -0.696636 -0.205877 1.128393 1.945963 -0.688899 0.608936 1.840628 0.391831 -0.292765 0.493534 0.161146 0.320452 -0.231164 -0.179321 -0.933159 -0.836012 0.039790 -0.715753 0.763016 1.779077 2.601907 0.092762 0.066910 1.251933 0.393339 0.535362 1.345682 0.149547 -0.945565 -0.455770 0.887185 -2.585574 -0.321176 -3.632133 -0.060290 -4.226253 -1.216389 0.219932 1.950017 1.174053 1.015166 -0.310840 1.857807 -0.694176 -0.470058 2.446923 1.992030 -1.480952 -0.977390 -1.765842 -1.470110 1.072093 -1.108471 -0.336231 1.300855 0.667926 -1.622328 -0.713832 0.909588 1.018504 -0.730643 -1.689737 0.529669 1.673864 -1.781985 -1.831786 0.227955 2.237304 -0.463052 -3.164813 -0.307991 -1.811280 0.169535 -0.010360 -0.582015 -1.566265 0.086698 0.742321 -0.562956 -0.802405 -1.226243 1.767756 0.879159 0.752607 0.328759 0.188403 0.350261 3.039035 0.276944 -1.421268 0.132130 0.302493 -0.559380 0.762489 -1.640537 -1.248906 0.638362 -2.230703 0.221223 1.306453 -1.200581 -0.542736 0.990285 0.797725 0.621505 7.480072 0.411625 2.786213 1.981144 -1.816737 1.596428 -0.431468 0.084261 0.748511 0.807119 -0.294694 -3.159202 -1.852704 0.857925 1.980155 1.720163 -1.941945 -1.062867 -0.262547 -0.176987 0.309356 -0.172033 0.519167 -0.075564 -1.719014 -0.388651 1.755836 4.328212 -0.319761 0.362819 1.174537 1.523743 -1.684131 -3.179234 -0.839472 -2.052859 0.280275 0.281658 -0.032928 1.242438 2.598561 -3.578674 1.826754 -0.013817 0.440122 1.472803 0.478723 -2.179826 -3.992211 -0.668123 1.111159 2.919188 -1.108663 0.828349 0.967717 -1.724186 -0.083515 0.493372 -0.249658 -0.415696 0.743023 -0.257082 -0.788531 -0.936895 0.826291 -1.202610 -0.488118 -0.209055 1.218936 0.902732 -1.928301 1.723529 -0.250360 -0.760746 0.499724 -0.510077 2.043370 -1.949816 -1.860413 1.367469 0.147811 -0.700802 -1.048362 0.371850 1.454221 0.365843 0.267098 -0.705395 -2.585390 1.376188 -1.052582 1.480350 0.841739 -0.537159 0.802157 0.317981 -0.450635 -2.048089 -1.498943 -0.627548 -0.094196 -1.965922 -0.671780 -0.437404 1.956740 1.354777 0.239081 -1.897840 0.390376 2.493780 -1.145244 -0.640558 1.352987 -0.048645 -2.180607 0.291181 1.804271 -2.766708 0.298880 -1.224578 0.481179 -0.301033 -1.480552 1.341244 0.583123 1.276527 -0.153748 0.321200 0.017698 0.848221 1.105976 0.268404 0.199221 3.198953 1.449800 -0.224093 -0.611802 -2.009951 0.468661 -2.433770 -2.367938 0.622447 0.661439 -1.730001 0.551967 0.812650 2.356918 0.383720 0.494738 -0.278228 0.207968 +PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -2.958523 -3.562690 -2.558407 -7.084039 4.231972 5.866160 2.133317 -3.461462 -8.252444 -1.007155 2.647858 -8.044158 0.353119 8.424578 -1.821619 8.342672 11.244229 1.457964 -4.236366 1.031668 8.663524 -2.290233 9.300024 8.883486 -4.788151 -0.730501 -1.638499 3.746423 0.230232 2.143230 1.812064 -3.974476 2.631785 -9.037272 -3.294574 -6.206943 1.195550 4.053679 7.051594 -11.414897 2.492544 1.820274 1.508535 -2.827814 -3.040525 -3.424716 3.788242 6.049717 -0.947493 1.630173 5.098568 1.487221 -1.434755 1.865419 1.189249 2.456888 -0.332910 -0.714751 -2.734671 -3.886208 -0.245481 -0.628543 2.484159 5.626074 8.242770 0.824001 -0.002221 5.400004 1.016719 1.498995 4.378745 0.372426 -4.407811 -1.504980 2.207798 -10.608396 -1.076200 -10.378205 -0.859162 -11.307988 -3.596933 1.643036 4.970635 3.201960 4.596361 0.183256 5.755338 -3.594176 -2.172125 8.085311 6.758114 -5.890832 -3.073394 -5.477173 -4.174755 2.229066 -2.981891 -0.998796 4.036116 1.766656 -5.450867 -2.320644 3.123059 4.396685 -2.187240 -7.007359 2.432867 5.568215 -5.511286 -6.843129 2.000047 8.473327 -2.697183 -10.639157 -2.627647 -6.067311 0.367837 -0.331099 -2.622072 -7.439056 0.776078 3.335590 -1.352841 -3.881254 -0.758634 4.698946 3.289323 2.871601 0.906509 0.758954 1.086575 12.183096 1.183455 -4.132741 1.302526 0.275710 -1.227649 3.017391 -4.389653 -4.395170 -0.894809 -7.708571 0.983872 6.335368 -3.846034 -1.305443 3.354192 3.556644 1.214766 27.741915 1.100164 9.536524 7.072367 -6.806613 3.930821 -2.726221 0.247219 1.739829 1.866104 -0.936287 -13.326310 -6.153083 3.694676 6.358336 5.760170 -6.873850 -3.523229 -1.023959 -0.527757 1.223810 -1.124587 1.700507 0.850832 -5.998856 -1.393906 6.381015 16.699747 -2.069785 1.673075 4.935942 3.745715 -5.791644 -11.934504 -3.516097 -7.273984 1.006466 1.389934 -0.263046 3.657950 8.478915 -9.076622 5.822846 -0.976745 0.938110 5.771846 2.832113 -7.476503 -12.158433 -3.705093 4.119817 9.841694 -4.428145 2.538044 2.846813 -5.463112 -0.453866 1.993039 -1.352107 -0.898882 2.295672 -0.293577 -3.247885 -2.487036 4.069621 -3.510723 -1.675826 -0.312883 4.163008 1.912459 -4.721250 6.094025 0.571883 -2.119055 2.453402 -1.475220 8.250176 -5.402310 -6.232942 5.601370 0.630716 -1.366963 -2.346517 1.585796 4.777225 3.058360 1.581209 -2.901902 -8.107394 4.071109 -2.975124 5.349293 2.551240 -1.573097 2.117259 -1.302175 -1.532267 -7.274928 -6.297201 -2.862209 0.830143 -7.078058 -4.093892 -1.403401 7.302832 3.366949 1.139846 -7.525304 0.823597 8.747832 -5.108378 -0.912702 4.545957 1.241997 -9.005175 -0.391401 6.066532 -9.089913 1.363911 -2.648381 0.980093 -2.344303 -4.874447 4.122026 2.805971 4.528368 -0.872829 1.158664 0.989800 2.291327 3.883423 1.963102 1.197955 10.638709 3.859617 -0.148744 -3.634791 -6.421836 1.446282 -7.482165 -8.266252 3.120395 2.928052 -6.118075 1.090409 3.079178 8.388281 1.292921 1.327832 -0.215692 0.217606 +PE-benchmarks/biconnectivity.cpp__main = -7.158972 -1.974463 7.365558 -18.999468 13.666515 10.025081 5.895521 -3.661980 -18.346212 -9.390494 4.450346 -19.732289 -12.994946 23.188176 -7.575546 6.659588 26.417875 4.071325 -9.251715 -3.929838 16.275008 -2.602858 24.902887 22.194143 -19.531920 -0.676043 -1.746247 12.187800 3.319510 11.829392 2.141805 -14.019767 5.067212 -5.812369 2.159960 -9.602754 1.819609 2.195930 0.485893 -29.073061 4.167586 9.321527 -0.367045 -5.200613 -2.501657 4.362468 19.204387 16.822919 -4.447605 1.720838 14.121547 5.590413 -0.753362 4.114082 5.157725 -1.514374 5.228263 -5.063847 -9.128403 -6.084782 -3.578961 -10.174866 0.756032 19.000227 21.100858 2.009895 -0.960384 4.191665 0.859042 7.295490 8.189031 3.904294 2.373898 2.348514 10.354077 -10.755090 -1.389986 -25.952202 -0.625859 -36.069101 -13.127332 -3.916799 19.505431 11.697002 3.114319 -5.787043 21.179735 -2.778002 -1.674152 18.205107 24.169825 -10.897887 -8.103827 -14.601116 -12.723650 7.805356 -9.530832 -0.201784 2.933226 6.013648 -16.989701 -4.885066 2.174319 3.222645 -7.808668 -4.958717 1.118102 17.697194 -18.979522 -5.145033 -6.794081 14.715292 3.205646 -30.087290 -8.064226 -11.802794 7.802446 0.850067 -6.956735 -9.000445 4.714879 8.203681 -7.265689 -2.745972 -15.294706 17.613647 6.587505 4.339038 2.033562 3.946191 5.165390 18.217506 7.481908 -10.450340 -0.480306 0.952023 -4.609538 3.959795 -9.821413 -5.108035 5.220430 -15.570370 1.987945 9.766824 -11.046165 -8.127434 -4.470640 0.976164 7.712119 54.520496 -2.805038 19.896723 10.832965 -18.061631 9.333437 -2.493798 -2.479712 4.171995 9.978881 3.815650 -17.456750 -16.752840 12.414755 20.667321 14.483739 -15.388745 2.311487 -1.729058 -2.311519 -2.460128 3.443470 4.544447 -0.274228 -13.804717 -5.766563 14.028970 31.840328 -4.562792 -14.648954 9.069009 8.803294 -3.452011 -12.133580 -4.578586 -3.707118 2.495235 7.529006 -0.993449 12.845935 25.372374 -32.552695 18.715430 1.206335 -1.627588 13.579040 -0.353467 -13.059450 -20.274087 -3.010781 14.926269 22.462047 -1.744964 -2.111412 2.758744 -17.830366 -1.213090 4.698094 4.088749 -6.242742 9.336947 0.430865 -10.286915 -11.724790 -6.774792 -7.386184 1.554408 -7.660642 9.618121 1.637708 -29.060803 22.313307 -1.159055 -5.035699 -1.295619 -4.910137 14.796722 -16.735223 -21.272919 8.922130 -4.207990 -15.791848 -10.382709 0.538281 12.116293 3.031669 3.576551 -11.427608 -18.817446 17.548778 -5.921906 17.516174 8.495140 1.756454 16.196723 8.505661 -5.320168 -13.229659 -14.062589 7.169224 -2.924762 -15.785351 0.534910 -6.035390 15.186881 15.513136 -2.120266 -12.001389 -2.710640 20.757162 -11.807609 -9.137066 12.738050 -1.821409 -14.767173 9.392622 17.203302 -17.771809 -4.058903 -15.039867 -0.869988 -7.415040 -16.745020 9.445640 -1.172031 8.812163 4.210418 2.459991 -6.341941 6.643170 5.270257 -0.439634 1.669925 25.493465 19.035461 -9.512617 2.596862 -19.055677 11.764786 -23.640440 -20.241763 6.043479 -0.855226 -7.842297 1.619649 -2.408401 16.790268 2.510402 -0.595578 -5.097726 4.831997 +PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -6.243997 -3.676016 1.140407 -13.976755 9.725582 13.596780 4.563721 -8.739723 -13.339762 -2.706839 5.219512 -14.650631 -3.806822 17.051948 -6.129662 12.604483 20.435338 2.583586 -8.310395 -1.177813 16.216757 0.172769 21.678948 17.901490 -13.451893 -1.482501 1.996310 8.984114 4.410950 4.825184 -0.334747 -7.071043 7.193874 -14.868628 -4.421579 -9.414647 2.612296 3.326764 10.527377 -20.034585 3.572167 -1.524098 -3.132878 -4.221945 -5.078513 -2.455000 13.034278 13.514241 -2.481101 2.960944 11.304630 3.405417 -2.793508 3.928942 3.376220 2.653155 2.038566 -0.530736 -4.990420 -7.878506 -1.669765 -4.498244 2.738156 14.478876 16.863923 2.642559 0.144069 9.645021 1.575140 2.861020 7.299481 2.647525 -3.879797 2.929210 6.563719 -19.621786 -0.110993 -22.990200 -3.935660 -21.066959 -8.052610 -0.453411 7.940562 1.636206 9.493839 1.615754 14.303070 -2.632047 -3.349182 15.039577 18.622457 -14.536161 -6.354418 -9.750953 -8.528163 4.329083 -8.327212 2.076990 3.274543 2.326724 -12.332430 -8.241889 3.725190 7.725885 -5.502753 -10.875427 3.034982 12.182239 -12.561955 -11.197565 -0.728238 9.951735 -4.522586 -24.290172 -8.595267 -10.060433 11.972346 -0.532894 -4.907208 -16.120733 2.144401 10.449344 -2.984235 -8.855283 -0.206148 8.365536 8.762410 5.866857 1.004033 1.279303 3.973445 24.020294 7.366173 -7.984945 1.135177 -1.201983 -4.505837 5.369391 -8.286002 -5.891967 1.260023 -14.428627 1.682539 15.337254 -8.329921 -4.010779 9.458900 4.309254 4.698156 51.584372 0.597882 16.009351 12.080000 -16.652264 2.338547 -6.436624 -0.253514 4.342377 5.179965 1.340227 -24.248828 -13.448279 9.051407 14.963027 11.168842 -16.058565 -2.715306 -2.654435 -0.805325 -1.170999 -1.447464 3.861165 -0.318429 -11.244554 -3.712358 14.147701 28.139496 -7.500181 -6.196795 9.160334 4.081447 -6.654153 -15.747087 -6.844745 -7.750662 3.137357 6.725549 0.257010 8.579919 18.847529 -21.777440 12.353550 -1.785037 -0.870650 11.207083 5.298366 -13.502661 -11.364996 -2.855414 11.845901 14.552019 -3.981704 1.736051 5.000567 -13.420535 -1.370668 4.041375 0.671790 -3.231930 6.161602 3.549452 -9.243534 -9.345366 3.710381 -3.631732 -3.261636 -1.312096 9.457977 -2.485892 -21.057389 16.792656 0.481593 -5.354279 4.530829 -5.544675 15.896375 -14.055127 -16.271867 10.942466 -1.009929 -4.272325 -5.206097 2.756882 10.043935 6.286651 4.807798 -10.582191 -15.075651 8.469165 -4.578625 11.734722 5.709425 0.967171 10.548768 -7.962996 -3.528351 -15.278193 -9.913253 1.315649 2.100143 -14.748502 -7.486217 -3.086607 15.162308 11.191000 -0.667494 -11.103219 0.581385 15.053821 -16.125643 -4.135344 9.364026 11.217652 -17.523826 1.940522 11.778025 -15.139423 -0.603792 -5.897510 -2.267846 -5.719787 -14.202146 8.441579 1.891169 9.031626 1.309397 2.952426 0.376646 6.062726 5.037751 4.757049 3.143125 17.347814 16.142725 -5.117736 -6.044258 -14.966841 6.655867 -20.084583 -19.729384 8.914088 1.621413 -8.531402 1.547979 1.302469 15.949035 3.024716 -1.175197 -1.494267 0.787111 +PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/bfs.cpp__main = -1.163684 0.177621 2.582299 -3.345503 2.816891 1.145024 1.202365 0.034414 -3.411353 -2.252000 0.134247 -3.790534 -3.221741 4.485250 -1.621606 0.307500 5.749820 1.652028 -1.200031 -0.918874 2.387926 -0.767843 4.946339 4.640544 -3.847547 0.047088 -0.320256 2.756467 0.480172 3.364672 -0.034141 -3.285512 1.249924 0.107159 1.151983 -2.685029 0.200184 0.316510 -1.303031 -6.310732 0.728563 2.082487 -0.132235 -0.679370 0.213882 2.529799 4.278721 3.149241 -1.001345 0.714183 2.203908 1.380412 0.219941 1.062320 0.956534 -0.410603 1.603250 -1.263562 -2.411120 -0.508415 -1.056397 -3.184462 -0.256842 3.648392 4.478868 0.493611 -0.148853 -0.220757 -0.110422 1.439914 1.390296 0.848241 1.337128 0.725400 1.936760 -1.058884 0.035498 -5.020158 -0.261587 -8.596104 -2.739185 -1.712744 4.372482 2.269229 -0.143529 -1.607494 4.277370 -0.111802 0.415873 3.408975 5.134768 -2.075654 -1.644560 -2.787982 -2.149665 1.690945 -1.905248 -0.287541 0.738352 1.185016 -3.275276 -1.246415 0.704567 -0.161120 -1.388940 0.161084 -0.070145 3.816709 -4.618537 -0.507667 -2.689542 2.058126 1.128546 -5.695246 -1.151337 -1.880211 2.239972 0.600118 -1.365986 -1.064197 1.339281 1.531058 -1.552889 0.260199 -3.920805 4.096786 0.639603 0.248906 0.420439 0.826854 0.616913 2.600228 1.982846 -2.002167 -0.262546 0.543973 -1.433898 0.144585 -2.482514 -0.786268 1.445206 -3.031258 0.406716 1.331782 -2.476407 -1.816995 -1.865643 -0.371708 2.056287 9.301852 -1.003867 3.391495 1.647148 -3.668911 1.921473 0.009999 -0.514686 0.734935 2.437276 1.334525 -2.425796 -3.143379 2.086796 4.111126 2.899205 -3.068627 0.701183 -0.837314 -0.247451 -0.463392 0.938248 1.056771 -0.407024 -2.685992 -1.090390 1.907861 5.831934 -0.598588 -4.065505 1.238174 1.279335 -0.325841 -1.910603 -0.626412 0.421312 0.371552 1.094659 -0.604809 2.254283 4.975818 -7.802002 4.011047 0.390481 -0.488686 2.796730 -0.402383 -1.915923 -4.149649 -0.509664 3.359774 4.709320 0.346836 -0.675675 0.319636 -3.567938 -0.325055 0.730787 1.750047 -1.320792 1.871702 0.500351 -2.424722 -2.457777 -2.529825 -0.783209 0.217874 -1.751893 1.781846 0.708556 -7.111902 4.412028 -0.550587 -0.981989 -0.354693 -0.476665 2.214243 -3.557182 -4.438525 1.186652 -1.130170 -4.062814 -2.542452 -0.012061 2.417788 0.064314 0.679936 -1.895368 -3.861396 3.853216 -0.984683 3.146454 1.711783 0.739083 4.204992 2.697818 -1.405115 -2.286309 -2.445068 2.072213 -1.597171 -2.085482 1.347953 -1.271751 2.674342 3.984230 -0.401073 -1.700209 -0.715552 4.470703 -2.074804 -1.963102 3.033601 -0.570050 -1.748296 2.607234 3.676629 -3.734202 -1.727005 -3.002344 -0.580980 -0.884806 -2.814297 1.693473 -1.453496 1.075508 1.334374 0.291738 -2.190367 1.412284 0.663980 -0.597498 0.202779 5.233970 4.846861 -2.303723 1.967067 -3.172051 2.252760 -4.997019 -3.344071 0.396212 -0.675081 -1.115057 0.697714 -0.576216 2.728253 0.230550 -0.222340 -1.196490 0.844432 +PE-benchmarks/bfs.cpp__Graph::BFS(int) = -3.151393 -0.000155 3.504192 -7.880344 7.414660 5.411759 2.711661 -2.497283 -6.767415 -3.234540 0.966513 -8.365529 -5.318553 10.099516 -3.919133 4.482216 12.013293 1.736072 -3.023211 -0.518708 7.822144 -0.883963 11.530794 8.819888 -8.755268 -0.824930 -0.282851 5.634004 0.853045 6.311623 -0.228890 -6.646839 3.431179 -3.692162 0.400724 -5.153961 1.900995 1.007695 1.141800 -12.345588 1.757807 2.836541 -1.265730 -1.860484 -1.417542 1.775157 8.729858 7.661708 -2.845241 0.667744 5.626551 2.906253 -0.790874 2.859361 0.774559 -0.319802 1.866055 -2.400157 -5.152221 -3.397639 -1.859360 -5.003556 0.936353 8.317211 10.343111 1.187293 0.698018 3.623702 -0.579393 2.538537 3.289456 1.606124 0.792899 1.802206 4.622259 -4.958643 -0.591171 -10.987152 -2.072356 -14.821296 -5.348018 -3.143100 5.657137 4.287705 2.974414 -2.499380 8.876751 -0.047606 0.274053 8.432760 11.201667 -6.703801 -3.541256 -7.851273 -5.463983 2.879576 -4.890974 -0.276999 1.330693 1.616586 -7.241413 -4.192336 0.867413 2.028046 -2.681516 -3.513934 0.298223 7.671649 -8.548946 -4.338716 -3.425033 4.715121 -0.992509 -13.592350 -3.062529 -4.222830 4.595947 0.220640 -0.916287 -5.651736 1.812461 5.425132 -2.737764 -2.640831 -5.483772 8.082527 3.659395 1.617221 1.407395 0.981805 1.480265 9.221838 4.421007 -3.963783 -1.186685 -0.187177 -2.805766 1.292700 -5.204827 -2.070297 2.433603 -7.932521 0.036597 6.432762 -4.643039 -2.718322 -1.270128 -0.303240 4.846969 23.611982 -1.155512 7.934726 4.174210 -9.666099 3.805587 -1.443659 -1.313260 1.712358 3.874739 2.027037 -8.975107 -7.669170 5.216240 7.973871 6.477837 -7.312021 0.330214 -2.153211 -0.519578 -1.310370 -0.350482 3.562247 -1.328449 -6.826885 -2.046813 5.555689 14.780136 -2.733125 -6.023472 5.620681 3.634534 -2.486592 -6.153393 -3.367568 -2.148826 0.394134 3.054366 -0.932003 4.674115 11.245367 -14.201807 7.704773 0.716728 -0.921128 5.743934 -0.532844 -5.687966 -8.224880 -1.101941 7.975500 8.910269 -1.046582 0.466553 0.802202 -7.298133 0.264304 1.859942 2.409085 -1.484567 3.262670 0.500396 -5.874282 -6.408133 -2.062074 -2.702295 -0.689740 -2.627907 4.020688 1.207888 -12.844452 10.174681 -1.263094 -2.438528 1.254345 -1.834895 7.427826 -7.815150 -9.894226 4.555688 -2.003236 -5.502741 -4.626362 1.632719 5.328950 1.969429 1.520715 -4.845430 -9.689703 5.851377 -2.065403 5.787866 3.435665 2.334754 7.509934 2.648216 -3.314467 -7.118082 -6.783247 2.805575 -0.592923 -6.738901 0.055666 -2.007917 7.789595 7.721279 -1.002476 -4.900755 -1.189854 9.095879 -5.908567 -3.457896 7.037205 0.454540 -7.402442 2.268974 8.246611 -7.553798 -3.069670 -4.995916 0.459102 -2.865314 -7.480258 3.155963 -1.307603 2.957480 2.364530 1.210272 -3.190091 2.897595 2.483184 0.565004 -0.082368 11.584482 8.764879 -4.494073 0.699185 -7.297888 4.082759 -11.671885 -9.332674 3.273231 -1.244784 -2.714355 2.027912 0.284280 7.381480 0.179092 0.515585 -1.039641 -0.400850 +PE-benchmarks/partition-problem.cpp__main = -1.365024 -1.916991 -0.723606 -3.321419 2.207392 1.774719 1.348451 -1.721429 -4.234292 -0.431902 1.867548 -4.715823 -0.487157 4.339827 -1.033705 3.655835 5.368744 0.824946 -2.305510 -0.507451 3.800194 -0.453802 5.177209 4.547775 -2.826089 -0.152429 -1.609267 1.647201 0.743336 -0.027048 0.884947 -1.326369 1.552683 -3.990459 -1.322014 -1.859502 0.558250 1.677367 3.336703 -5.377968 1.198503 0.626892 1.801382 -1.163621 -1.313482 0.004105 2.312983 3.296350 -0.266680 1.190863 2.844842 -0.161611 -0.043455 0.965084 0.533887 0.351011 0.192851 -0.527710 -1.893990 -1.728621 -0.192671 -0.643303 0.810621 3.061668 4.076617 0.791346 -0.409573 2.401062 1.312418 1.146551 2.423205 0.480284 -1.302937 -0.274128 1.339803 -4.375082 -0.468601 -5.795290 -0.587763 -5.982252 -2.358856 0.786734 3.811981 1.248360 1.806483 0.319624 3.198338 -0.728966 -1.372389 3.692527 3.946638 -2.854589 -1.936262 -2.219845 -2.011720 1.307080 -1.584421 0.502834 2.188028 1.666219 -3.255424 -0.929658 1.309530 1.478731 -1.172439 -2.267258 1.212983 2.693837 -2.514512 -2.569504 0.603259 3.820204 -0.243896 -5.477011 -0.470531 -2.545207 0.722420 0.281431 -1.583175 -2.753779 0.384384 0.830147 -1.400677 -1.165382 -1.881012 2.318734 1.438365 1.710983 0.457985 1.083594 0.949014 5.305676 0.068197 -2.616958 0.762769 -0.054475 -0.382554 1.927548 -2.117212 -2.357239 0.489768 -3.829838 1.229205 2.096663 -2.099701 -1.284333 0.933964 2.128232 0.489130 9.792232 0.593205 4.889367 3.525813 -2.941565 1.969619 -1.632210 0.553880 0.967476 1.351407 -0.649882 -4.261082 -3.566039 2.092166 3.567269 2.851034 -3.459243 -1.319129 -0.088206 -0.196375 0.304570 -0.038215 1.121817 0.480005 -2.655532 -0.654548 3.260110 7.237689 -1.035034 0.395207 2.078580 1.351472 -1.278388 -4.504284 -1.755578 -2.607626 0.644359 0.922841 0.806706 2.099917 4.635887 -4.995542 3.274816 -0.113800 0.806952 2.727101 1.206629 -4.102266 -4.840608 -1.636671 1.930986 4.309634 -1.302141 -0.268124 1.706287 -3.092923 -0.275956 0.928031 -0.623671 -0.689876 1.383380 -0.312619 -1.150810 -1.347888 1.133674 -1.613557 -0.200820 -0.172733 2.512232 1.139572 -3.165789 3.060838 -0.113613 -1.620686 0.607931 -1.248047 3.607956 -2.616401 -2.764709 2.108805 -0.473301 -1.640648 -2.003958 0.769877 1.795415 0.800578 1.265233 -1.709496 -3.174315 2.906474 -1.637549 3.109220 1.553613 -0.943730 1.177274 0.139890 -1.170976 -2.886404 -2.484784 -1.080366 0.105371 -3.543784 -0.812689 -0.837939 3.329426 1.955955 0.407098 -3.463338 0.192521 3.844977 -2.934432 -1.632640 2.491215 -0.211730 -3.848271 1.076332 3.225650 -4.337152 0.890604 -1.960097 -0.084575 -1.266257 -2.584748 2.170240 1.335037 2.203690 -0.770769 0.437399 0.688505 1.564008 1.367769 0.568653 0.633276 5.410636 2.270182 -0.489489 -1.254610 -3.907827 1.501878 -4.061603 -4.177627 1.802723 1.397902 -3.416803 0.518841 0.682996 4.138414 0.625205 -0.805672 -1.400719 1.089621 +PE-benchmarks/topological-sorting.cpp__main = -1.048547 -0.175663 2.012483 -2.925162 2.583191 0.893100 1.130439 -0.002910 -3.220053 -1.641819 0.127711 -3.162832 -2.400078 4.090524 -1.321816 0.828047 5.123354 1.588694 -1.059617 -0.747356 2.382538 -0.870402 4.349091 3.858105 -3.263279 0.026318 -0.350773 2.242471 0.309863 2.981743 -0.146092 -2.742459 1.140779 -0.498554 0.747376 -2.675564 0.251914 0.615216 -0.587449 -5.682690 0.754328 1.754585 0.114975 -0.716929 0.114529 2.066764 3.421734 2.864128 -0.935646 0.916712 1.891861 1.063208 0.151819 0.989828 0.728569 0.120735 1.350595 -0.994354 -2.286649 -0.446923 -0.911234 -2.672020 0.096104 3.054577 3.929189 0.304912 -0.118976 0.222900 0.023154 1.225385 1.404028 0.632499 0.813328 0.309025 1.692448 -1.408338 -0.231185 -4.628531 -0.362110 -7.571776 -2.406224 -1.311183 3.737483 1.727187 0.105401 -1.055292 3.711765 -0.292557 0.277812 3.018713 4.296085 -2.010047 -1.507346 -2.587460 -1.937815 1.439551 -1.639266 -0.575452 0.981205 0.933446 -2.880720 -1.346255 0.796126 0.110064 -1.161759 -0.216040 0.024204 3.426884 -4.040647 -1.084633 -2.163962 2.035667 0.531554 -4.899627 -0.768691 -1.592102 1.946541 0.624748 -1.042198 -1.244125 1.185021 1.471965 -1.412494 -0.032630 -2.993713 3.504124 0.510278 0.304470 0.448549 0.577101 0.339017 2.564296 1.933342 -1.886656 -0.217699 0.656262 -1.212868 0.218781 -2.283537 -0.976689 1.000058 -2.909832 0.480806 1.311708 -2.222222 -1.455225 -1.202574 -0.051957 1.787640 7.934064 -0.744634 3.089103 1.489395 -3.308658 1.736534 -0.050814 -0.352944 0.676068 2.166370 0.937603 -2.311414 -2.827520 1.695295 3.475082 2.687830 -2.722886 0.044522 -0.975630 -0.167355 0.008200 0.649940 1.123807 -0.345930 -2.546830 -0.879174 1.370058 5.485589 -0.624418 -3.322131 1.252445 1.188318 -0.735445 -2.216212 -0.714287 -0.173586 0.174547 0.825519 -0.611988 1.862193 4.387269 -6.838609 3.619173 0.039519 -0.411287 2.345598 -0.262521 -1.800063 -3.848864 -0.782083 2.804526 4.346605 0.125154 -0.458179 0.476050 -3.022948 -0.141633 0.526226 1.353737 -0.966265 1.611598 0.264763 -2.225892 -1.942145 -1.640887 -0.687842 -0.049282 -1.222789 1.564064 0.867076 -6.056311 3.650259 -0.608823 -0.856275 0.209150 -0.111054 2.167059 -2.972627 -3.837155 1.263016 -0.696271 -3.125049 -2.252543 0.070168 2.252495 0.155145 0.560374 -1.429892 -3.558046 3.078131 -0.935076 2.628522 1.512839 0.356800 3.537874 2.062386 -1.331450 -2.147048 -2.095501 1.234610 -1.361132 -1.664024 0.777181 -1.109505 2.591842 3.335787 -0.129966 -1.544415 -0.842121 4.061524 -2.028927 -1.486828 2.826631 -0.567836 -1.667226 2.120108 3.424017 -3.475055 -1.367662 -2.357317 -0.116766 -0.753851 -2.145495 1.521367 -1.132133 0.886257 0.848472 0.280902 -1.731202 1.167104 0.734270 -0.435340 -0.041434 4.720498 4.130326 -2.005662 1.536633 -2.540931 1.822932 -4.300344 -2.860882 0.288012 -0.293414 -1.317007 0.846836 -0.221299 2.560544 0.151095 -0.066680 -0.927435 0.411419 +PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = -0.413558 0.520414 0.918073 -1.000680 1.167729 1.111363 0.363366 -0.409894 -0.809124 -0.334697 -0.185619 -1.054074 -0.874397 1.462733 -0.571759 0.479407 1.973457 0.463213 -0.345049 -0.150545 0.939258 -0.266490 1.743616 1.534987 -1.316590 0.010890 0.659243 0.628381 -0.072929 1.512250 -0.986705 -1.354492 0.491661 -0.440593 0.327186 -0.939077 0.044680 -0.216140 0.200079 -2.020084 0.181612 0.136399 -0.320284 -0.318613 -0.139177 0.165356 1.784695 1.036830 -0.258466 -0.035986 0.707193 0.575288 -0.119295 0.347083 0.622148 0.557206 0.998461 0.187839 -0.657221 -0.270546 -0.393433 -0.628559 -0.071148 1.320021 1.491047 0.274455 0.031759 0.162583 -0.243773 0.161407 0.076277 0.302819 0.340540 0.708070 0.505178 -0.987275 0.172498 -1.896617 -0.314978 -2.117939 -0.852728 -0.823392 0.244782 0.092746 0.712894 -0.266449 1.500928 -0.138039 0.372286 0.438340 2.020364 -1.416161 -0.517341 -0.997348 -0.772596 0.258324 -0.653284 -0.002679 0.186395 -0.424102 -1.107367 -1.250694 0.586851 0.465177 -0.484917 -0.214534 -0.011614 1.227447 -1.170831 -0.740017 -1.100168 0.044657 -0.351707 -2.029487 -0.385520 -0.547494 0.697595 0.219561 -0.494902 -1.584939 0.487550 1.309114 -0.559641 -0.800498 -0.304837 1.378636 0.646246 -0.039468 0.168740 -0.252690 0.403768 1.481646 1.141670 -0.645318 -0.090159 0.014020 -0.836210 -0.218630 -0.918740 -0.241331 0.101664 -1.104196 0.025103 1.186214 -0.855873 0.111935 0.413294 -0.327846 0.872183 3.906630 -0.577244 0.936033 0.197275 -1.763992 0.886680 -0.137829 -0.517367 -0.004463 0.807979 0.776664 -1.900719 -1.072107 0.818932 1.407558 0.946336 -1.243556 -0.179189 -0.664026 -0.137493 -0.182379 0.162643 0.370932 -0.311897 -0.943849 -0.454070 0.686284 2.523994 -0.800267 -1.787862 0.644019 0.202549 -0.197247 -1.057096 -0.412223 -0.635664 0.170763 0.272427 -0.325469 0.871045 1.723919 -2.826367 1.320559 -0.356695 -0.940108 1.423020 -0.101188 -0.530766 -0.660345 0.250108 1.475730 1.423705 0.269507 -0.043771 -0.135033 -1.218137 -0.186395 0.072631 0.803396 -0.566810 0.647405 0.429440 -1.539802 -1.072958 -0.663683 -0.104948 -0.785077 -0.589623 0.534518 0.002435 -2.775168 1.860860 0.209396 -0.159756 0.430098 -0.319982 0.673216 -1.325312 -1.768722 0.666714 -0.120133 -0.206874 -0.259959 -0.033140 0.947916 0.251625 0.492061 -0.972132 -1.795928 0.709735 -0.009191 1.064555 0.535603 0.666437 1.206359 0.433648 -0.471658 -1.104026 -0.666440 0.614577 -0.136715 -0.906617 -0.425653 -0.509259 1.292945 1.557387 -0.134046 -0.299747 -0.746107 1.308723 -1.163720 -0.137361 1.018069 0.432503 -1.004742 -0.128537 1.178555 -0.975051 -0.916064 -0.649653 -0.295774 -0.507369 -1.230970 0.260688 -0.786665 0.284978 0.706108 -0.105135 -0.645451 0.437808 0.194686 0.045575 0.089161 1.344036 1.420196 -0.912694 0.387580 -1.104826 0.747483 -1.876151 -1.406909 0.454626 -0.349884 -0.642901 0.031553 0.131096 0.907069 -0.271396 0.309242 -0.001473 -0.407595 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -2.306350 0.367642 2.683018 -5.036721 4.003554 3.880629 1.627775 -1.993264 -4.244549 -2.304946 0.623573 -5.577920 -3.691502 6.577687 -2.681644 2.266685 8.073128 1.490771 -2.301805 -0.622049 4.694401 0.018364 7.652967 6.845036 -5.587330 -0.580660 0.715351 3.681359 0.913222 3.610558 -0.589515 -4.533316 2.329902 -2.151745 0.193426 -3.304181 0.912027 0.330314 0.711209 -8.098949 1.055731 1.023696 -1.346968 -1.468709 -0.979025 0.673902 6.223797 5.050848 -1.197745 -0.020029 3.622455 2.358456 -0.692444 1.581931 1.308226 -0.082715 1.433329 -1.514025 -2.573323 -2.061162 -1.133314 -3.026057 -0.076720 5.889690 6.627840 1.374237 0.194639 1.573998 -0.278532 1.398602 1.627355 1.137161 1.021040 2.039787 2.541906 -3.912177 0.013151 -7.631015 -1.113171 -9.015454 -3.438173 -1.975192 3.455931 2.452880 1.944545 -1.318353 6.011786 -0.195443 0.154877 5.050266 7.957853 -4.844824 -2.387455 -4.405132 -3.401381 2.017384 -3.240453 0.814741 -0.214941 0.887327 -4.846658 -3.302617 0.663918 1.472106 -2.075227 -1.964884 0.461785 5.038810 -5.394618 -2.288283 -2.618889 2.471980 -0.158812 -8.833155 -2.649497 -3.216404 3.696172 0.257823 -1.883516 -4.436553 1.361802 3.606336 -1.649831 -2.079434 -3.193322 4.716516 2.469070 0.831895 0.402730 0.480915 1.603887 6.468890 2.701172 -2.878460 -0.174021 -0.257884 -2.388450 0.493386 -3.596454 -1.250156 1.415210 -4.781108 0.014098 4.488875 -3.455599 -1.923385 -0.002070 -0.353833 3.048116 16.479164 -0.921613 4.839552 3.002953 -6.379266 2.216140 -1.449463 -1.113604 0.871986 2.661791 2.024230 -6.607291 -5.021038 3.645152 5.993858 4.277265 -4.581108 0.478209 -1.294507 -0.337550 -1.373887 0.468832 1.736623 -0.965436 -4.128658 -1.705084 4.568895 9.285050 -2.144102 -4.391335 2.975877 1.786243 -0.641307 -3.711504 -1.815056 -0.969048 0.807889 2.526397 -0.444731 3.542269 7.527982 -9.442487 5.244610 0.205277 -0.968452 3.980104 0.191551 -3.846226 -3.770303 0.144711 5.468555 5.666562 -0.090156 0.195678 0.416593 -5.341968 -0.648872 1.356020 2.038079 -1.689282 2.493768 1.255662 -4.222532 -4.431473 -1.544925 -1.522071 -1.091598 -2.018320 3.017461 0.026608 -8.968030 7.273218 -0.060413 -1.327858 0.529139 -2.204798 4.635634 -5.851441 -6.861612 3.091159 -1.304021 -3.222529 -2.253823 0.644817 3.794501 1.260164 1.550786 -3.757169 -5.959863 4.230147 -0.811930 4.538608 2.161443 1.777081 4.830802 0.949456 -1.637480 -4.522013 -3.983650 2.512922 -0.241026 -4.855581 -0.591845 -1.428891 5.123643 5.623532 -1.074450 -3.370933 -0.709033 5.671344 -4.546352 -2.167249 3.958343 1.659535 -4.739468 1.344054 4.819304 -5.177241 -2.128443 -3.414746 -0.544882 -2.060504 -5.559442 2.081544 -1.298838 2.311745 2.064976 0.457333 -1.900531 2.176703 1.579256 0.501879 0.970663 6.778352 5.948812 -2.691028 0.497214 -5.602150 2.971514 -7.860168 -6.667584 2.568383 -0.878931 -2.045163 0.462258 -0.360195 4.721235 0.248246 0.442077 -0.918186 0.267616 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -2.406357 -1.246230 1.275497 -6.043022 6.276857 3.739224 2.302992 -2.168701 -5.806083 -1.061999 0.933913 -6.025440 -2.224304 8.305620 -2.608069 6.025265 9.182249 1.156193 -2.265242 0.020989 7.480816 -1.249243 8.785319 5.254852 -6.496342 -0.856460 -0.395858 3.411431 0.367569 4.397190 -0.132807 -4.538168 2.582879 -5.563554 -0.894369 -4.726543 2.120216 1.848989 3.559852 -9.745957 1.706058 2.032798 -0.050283 -1.999541 -1.586228 0.434237 5.293336 6.403265 -2.934691 1.459784 4.474234 1.537902 -1.015245 2.324421 -0.582190 1.130557 0.871043 -1.325628 -4.794157 -2.822881 -1.024379 -2.978422 2.272383 5.858029 7.985590 0.240653 0.771351 5.343046 0.225998 1.746141 3.151575 0.777036 -1.033779 0.316520 3.812589 -5.852314 -1.950245 -9.572487 -2.196982 -11.381279 -4.096772 -1.584915 3.593957 2.229810 3.275107 -0.371797 6.485628 -0.558527 -0.108639 7.211269 7.701412 -5.700349 -2.970101 -7.219764 -4.747090 2.168507 -3.759379 -1.452365 2.484660 0.839449 -5.542229 -4.227154 0.941618 2.782450 -1.751871 -4.657661 0.570698 5.810520 -6.163262 -6.184696 -1.338895 4.656459 -2.869557 -10.298768 -1.500563 -2.706782 3.223991 0.482628 0.689790 -5.640178 0.987666 4.722674 -2.270613 -3.203190 -2.382448 5.722330 2.985498 2.005017 1.653384 0.235877 0.689242 8.290231 4.111235 -3.406143 -1.164516 0.346568 -1.692129 1.437618 -4.227070 -2.781650 0.952205 -7.101343 0.646235 5.869300 -3.501525 -1.758449 0.741997 0.632530 3.788245 17.195786 -0.008954 6.652480 3.262526 -7.913274 3.001976 -1.570113 -0.937386 1.308039 2.713207 0.584399 -7.497007 -6.106534 3.575309 5.289700 5.446462 -5.597157 -2.095420 -2.327368 -0.382629 0.576485 -1.300054 3.930338 -1.078995 -6.100991 -1.142900 3.433738 12.842057 -2.367899 -3.134572 5.360269 3.767406 -3.848697 -6.949550 -3.292082 -4.184073 -0.476041 1.995589 -0.948765 3.120675 8.618402 -10.682266 6.047838 -0.122636 -0.294092 3.468066 -0.178315 -5.205002 -7.432081 -2.023675 5.691424 7.210494 -1.889680 1.111981 1.241161 -4.837264 1.161580 1.065462 0.697678 0.050739 2.176042 -0.894361 -4.715141 -4.304832 1.338391 -2.468773 -1.241361 -0.662757 2.922948 2.080927 -8.463719 7.028198 -1.859967 -1.939269 2.932387 -0.530349 6.946042 -5.422019 -7.200092 4.421752 -0.524613 -2.326368 -3.668089 1.644519 4.325354 2.259293 1.118257 -2.653823 -8.306641 2.867635 -1.974689 3.503683 2.683150 0.683921 4.922938 0.429151 -2.911344 -6.291525 -5.341195 -0.379523 0.268028 -4.845865 -1.820023 -1.359366 7.024044 4.855356 -0.323951 -4.211003 -1.924964 7.028709 -5.346684 -1.868240 5.904828 -0.324744 -6.835149 0.647333 7.015358 -6.365642 -1.317565 -2.802667 2.556212 -2.321138 -4.509546 2.145067 -0.055016 1.808052 0.509837 0.900788 -1.496639 1.789072 2.568637 0.933764 -1.261738 9.304479 5.929826 -3.549106 -0.634931 -4.761206 2.389074 -8.707912 -7.393775 2.696330 0.132028 -3.201769 2.564203 1.597203 6.269146 -0.079537 0.979627 -0.223423 -1.667351 +PE-benchmarks/magic-square.cpp__main = -0.926791 -1.268731 -0.378943 -2.283419 1.486523 0.772015 0.808695 -1.176789 -2.727349 -0.087950 1.106764 -2.570006 -0.165653 2.669572 -0.791661 2.128734 4.100236 0.629512 -1.269141 -0.585830 2.455290 -1.161013 3.167083 3.724891 -1.933803 -0.199622 -0.453768 1.548124 0.645503 0.052883 0.298074 -0.660342 0.872790 -2.536998 -0.583486 -2.229463 0.459738 1.072330 2.122865 -4.105116 0.708392 -0.265325 1.007145 -0.562906 -0.848925 1.403754 1.219076 2.105173 -0.412392 0.876730 2.149242 0.009334 -0.188373 0.594779 0.343316 0.328038 1.104827 0.871928 -0.971369 -0.937618 -0.112497 -0.280554 0.736950 2.024470 3.324799 0.402297 -0.131876 1.436544 0.865344 0.709818 1.510747 0.271167 -0.945373 -0.213209 0.886773 -3.934879 -0.226951 -5.360799 -0.380379 -5.382003 -1.384814 0.333357 2.116716 -1.012320 1.108587 0.474502 2.062671 -0.071080 -0.775563 2.191665 2.298047 -1.748520 -1.187083 -1.321088 -1.492631 0.866042 -0.986941 0.357155 2.605652 1.060703 -1.933508 -0.740117 1.585763 0.896955 -0.737380 -1.537774 0.709441 1.745278 -1.450067 -1.635625 0.264683 2.274929 -0.277431 -3.443087 0.555845 -2.466619 1.102416 -0.038622 -0.878173 -1.669557 0.110437 0.764073 -0.934310 -0.646182 -0.852983 2.118535 1.204717 0.990130 0.169939 0.436372 0.429640 3.327122 0.227187 -1.783111 0.286106 0.089522 -1.340175 1.043627 -2.312555 -1.304941 1.494839 -2.365362 1.173704 1.167061 -1.308024 -0.873862 2.650624 1.157197 0.476244 8.163599 0.323453 3.156842 2.163336 -1.782876 1.812043 -0.829562 0.522703 0.901606 1.035529 -0.628705 -4.258642 -2.255082 1.117432 2.200658 1.789179 -3.313982 -2.006922 -0.233874 -0.283770 0.272412 -0.210785 0.620743 -0.228828 -1.338372 -0.417240 1.891518 5.113041 -0.624885 0.017596 1.116337 1.247288 -1.712258 -4.367858 -1.111256 -1.842222 0.498066 -0.382562 0.505743 1.467074 2.866828 -4.975019 1.949834 -0.123812 0.580842 2.322369 0.837099 -2.446578 -4.966108 -0.749191 1.075698 3.380668 -0.799416 -0.043202 1.312493 -1.934921 -0.120801 0.524829 -0.182704 -0.536312 0.815392 -0.023046 -0.829274 -0.891257 0.872947 -0.959153 -0.175594 0.031506 1.559008 0.297300 -3.090789 1.790061 -0.245517 -1.024431 0.475294 -0.816253 2.010748 -1.815367 -1.785090 1.302728 0.011421 -0.531851 -2.123340 0.535244 1.360818 0.060704 1.164295 -1.070551 -2.946020 1.581190 -2.067949 1.785590 0.920019 -0.555086 1.032258 -0.123258 -0.715144 -2.762021 -1.205441 -1.277530 0.156234 -2.174777 -0.163496 -0.416792 2.056052 1.373689 0.328745 -1.853659 0.414357 3.348755 -1.844150 -0.931368 1.477653 0.511126 -2.218167 0.779032 1.910375 -3.633883 0.333594 -1.130159 -1.044122 -0.551870 -1.537103 1.554954 0.735233 1.466352 -0.573460 0.453870 0.492414 1.214765 0.872105 0.660234 0.484733 3.978509 2.946816 -0.427384 -0.944635 -2.323222 0.876969 -2.552461 -2.688795 0.992721 0.645440 -2.055030 0.531389 1.005047 2.657033 0.248274 -0.343466 -0.762399 0.585848 +PE-benchmarks/aho-corasick-algorithm.cpp__main = -6.331750 0.666326 6.798973 -12.150917 17.262972 10.130712 7.252036 -1.605954 -11.696452 -5.593276 -0.407430 -10.949407 -13.205737 20.035234 -5.206145 12.873074 21.579859 3.253900 -4.260450 -2.284463 19.341044 -10.781875 22.376767 12.505176 -19.064645 -1.135039 2.850088 11.239723 -0.168232 18.675224 -6.194651 -11.797049 7.206084 -10.914985 6.424260 -11.369917 5.495778 2.262020 0.534462 -24.104245 1.384209 7.666869 0.084501 -2.984974 -5.149598 5.490067 16.598337 16.540860 -7.835976 2.417772 11.493947 -1.285373 -0.199041 6.974019 2.296269 4.865027 4.743004 1.233222 -14.083627 -5.014049 -4.566750 -16.803170 4.751273 13.743278 21.530214 -2.593141 3.188230 11.694964 -5.262693 5.151543 5.759116 3.119471 2.442899 -2.661554 14.682719 -12.815860 -4.504189 -23.353816 -6.093441 -35.566169 -12.165389 -12.533554 8.045413 2.991304 11.449766 -6.226700 20.721255 -0.504038 1.323471 11.271815 21.410936 -17.854266 -7.265278 -20.869672 -7.995357 3.823814 -12.575891 -6.349485 12.215798 -3.335867 -14.120925 -10.377406 6.386354 6.095961 -4.743682 -11.439621 -5.079918 18.459255 -16.827324 -14.615065 -14.811115 4.916038 -6.609342 -26.662128 1.957288 -4.650587 5.170553 2.087983 3.188586 -12.717733 4.310894 16.713609 -5.655746 -11.983783 -4.872452 20.354819 8.153106 0.146712 7.455688 2.318970 -0.301688 18.094093 20.517958 -5.496572 -8.683649 3.445131 -9.340003 2.990102 -10.156943 -5.060597 6.842189 -18.637429 -2.948647 11.460037 -7.273876 0.690813 4.315715 -1.173838 13.569800 41.169004 -2.169142 11.988945 3.043032 -19.276948 16.611193 -0.842332 -3.366123 5.611630 10.660540 0.715838 -21.030071 -15.815827 9.844700 14.158052 12.133415 -17.776119 -6.606447 -9.525525 2.447421 -2.095577 -3.881416 11.474776 -0.813382 -12.817775 -2.918859 4.547516 31.679815 -12.865987 -17.139805 15.397421 5.306502 -10.575520 -22.421184 -9.476103 -11.482327 -3.765987 -0.808705 -3.471914 7.564482 22.539038 -27.193357 16.368129 -4.426733 -7.705714 16.273183 -5.274632 -5.621095 -22.252315 -1.574865 15.279487 18.656776 -0.693419 -0.721466 -0.152546 -15.037903 4.149240 -0.105820 6.407641 -0.921991 6.753920 -5.350162 -12.730418 -14.342464 -7.484891 -5.700882 -5.374561 -2.039802 4.903667 6.706880 -27.622888 19.511432 -5.735737 -5.349908 8.862503 3.970346 13.495589 -13.583947 -22.328779 11.231468 -0.907665 -8.874929 -12.934717 4.118800 12.096086 2.209425 -4.592821 -6.600750 -24.900245 11.604261 -4.633065 10.378256 5.722862 6.484933 18.782666 12.522065 -12.722995 -16.154564 -10.939531 -0.182288 -5.677912 -10.961754 -8.535376 -2.660023 17.964291 16.054300 2.882169 -1.467594 -7.673563 21.322385 -16.867735 -8.395660 18.505633 2.000686 -11.817704 4.279808 20.317354 -14.681149 -12.056405 -10.576751 2.707943 -3.765446 -14.868680 4.132700 -8.308450 4.046036 5.890401 2.270410 -5.739776 5.184035 5.564795 0.538103 -9.670544 26.665314 20.016739 -16.321525 -0.576333 -12.244196 7.724379 -21.959788 -14.501159 4.236432 3.378831 -4.570255 7.424329 9.666485 13.007236 -1.360321 -2.443825 -1.438572 -11.419791 +PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -6.090374 -5.896110 -1.663647 -16.606253 12.212706 14.870391 5.978677 -9.368968 -17.469284 -2.708161 7.024584 -18.921879 -2.919264 20.048543 -6.062908 17.758671 24.404262 1.998275 -10.515964 1.031240 18.545263 -1.312318 24.850957 19.199330 -14.563084 -0.731561 -3.530742 8.925471 2.310337 6.633624 2.599226 -8.971387 7.989989 -19.593611 -7.396108 -9.308860 2.710193 4.979939 13.293853 -25.132679 4.559631 4.271636 -2.360613 -5.211295 -5.311465 -5.922973 12.630999 15.596463 -1.269305 5.325295 11.550968 2.484742 -1.763723 4.849608 3.478351 3.528402 0.472483 -5.037219 -8.282934 -9.940687 -1.657338 -5.318047 3.551181 15.236390 18.942013 1.934818 -0.604363 13.024784 2.114010 3.699609 10.132721 3.017718 -8.083313 0.834852 7.225387 -19.756173 -0.079474 -18.982381 -4.083221 -23.696087 -10.511165 1.279741 12.071680 8.493845 11.245802 -0.974990 15.920495 -4.704260 -4.950082 17.925674 18.293009 -15.635195 -7.562448 -12.205448 -8.751672 4.796492 -8.927542 -0.769849 5.985549 4.304466 -14.448615 -4.748892 5.639377 9.102854 -5.964703 -13.080806 3.990826 14.277886 -15.634112 -15.093765 1.986979 15.850253 -6.046277 -27.436008 -9.842762 -8.585311 7.767133 0.229534 -4.189625 -16.068817 2.630435 9.658373 -3.165497 -9.140523 -1.504543 11.094249 9.319757 7.905887 2.551949 4.331554 4.270622 29.513524 5.686777 -8.310488 1.836469 -0.891256 -1.780836 8.464676 -5.685106 -8.172076 -4.268367 -18.493218 2.351227 16.772953 -9.101500 -3.294016 2.945670 8.313800 3.978859 58.181652 1.389572 22.259022 15.450262 -17.413185 4.038262 -7.582419 0.101971 4.216964 4.446344 -0.048100 -26.262684 -15.080594 10.298329 16.482792 13.003631 -18.347035 -0.216308 -2.343049 -0.972779 0.327405 -1.808982 5.307711 2.696087 -14.330838 -3.379628 15.362277 36.513736 -7.082019 -4.720347 12.312168 4.303325 -8.282595 -20.540357 -8.396409 -10.024908 2.253412 8.195851 0.333271 8.189551 21.212948 -18.391388 14.718172 -1.536812 -0.137666 14.060505 6.111174 -17.060071 -17.884236 -8.132906 10.864117 19.235934 -7.667115 1.879368 5.748293 -14.004266 -0.387139 5.157090 -2.014816 -1.838375 6.802827 1.403160 -8.429760 -8.838026 5.238687 -5.295208 -1.307743 -2.469557 10.630022 0.998993 -18.337853 15.810394 0.591410 -7.218862 5.428687 -4.569908 20.438498 -14.206592 -16.706853 12.762138 -1.386758 -7.989698 -5.352396 3.077179 10.087199 9.449695 3.806737 -9.986824 -15.248373 10.816363 -4.711251 13.058709 7.356727 -1.265530 9.568814 -4.494976 -5.503261 -14.179286 -15.145486 -0.210428 1.888130 -16.581669 -7.311010 -4.346471 17.497387 10.425926 1.025909 -16.025470 -0.182196 18.118574 -15.610336 -3.581138 11.921340 6.855215 -21.331894 1.808505 15.139749 -17.726387 2.107564 -6.283389 0.801969 -7.540888 -12.221717 9.855909 4.584984 9.982203 -0.309646 3.204794 0.504919 5.648587 5.758574 4.288890 2.265746 23.162224 14.603777 -4.538944 -7.092810 -16.260069 7.251659 -19.898828 -21.975254 9.567323 3.913595 -11.226907 2.667827 4.722547 19.136269 4.994833 -3.225918 -2.098469 1.169934 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = -0.413558 0.520414 0.918073 -1.000680 1.167729 1.111363 0.363366 -0.409894 -0.809124 -0.334697 -0.185619 -1.054074 -0.874397 1.462733 -0.571759 0.479407 1.973457 0.463213 -0.345049 -0.150545 0.939258 -0.266490 1.743616 1.534987 -1.316590 0.010890 0.659243 0.628381 -0.072929 1.512250 -0.986705 -1.354492 0.491661 -0.440593 0.327186 -0.939077 0.044680 -0.216140 0.200079 -2.020084 0.181612 0.136399 -0.320284 -0.318613 -0.139177 0.165356 1.784695 1.036830 -0.258466 -0.035986 0.707193 0.575288 -0.119295 0.347083 0.622148 0.557206 0.998461 0.187839 -0.657221 -0.270546 -0.393433 -0.628559 -0.071148 1.320021 1.491047 0.274455 0.031759 0.162583 -0.243773 0.161407 0.076277 0.302819 0.340540 0.708070 0.505178 -0.987275 0.172498 -1.896617 -0.314978 -2.117939 -0.852728 -0.823392 0.244782 0.092746 0.712894 -0.266449 1.500928 -0.138039 0.372286 0.438340 2.020364 -1.416161 -0.517341 -0.997348 -0.772596 0.258324 -0.653284 -0.002679 0.186395 -0.424102 -1.107367 -1.250694 0.586851 0.465177 -0.484917 -0.214534 -0.011614 1.227447 -1.170831 -0.740017 -1.100168 0.044657 -0.351707 -2.029487 -0.385520 -0.547494 0.697595 0.219561 -0.494902 -1.584939 0.487550 1.309114 -0.559641 -0.800498 -0.304837 1.378636 0.646246 -0.039468 0.168740 -0.252690 0.403768 1.481646 1.141670 -0.645318 -0.090159 0.014020 -0.836210 -0.218630 -0.918740 -0.241331 0.101664 -1.104196 0.025103 1.186214 -0.855873 0.111935 0.413294 -0.327846 0.872183 3.906630 -0.577244 0.936033 0.197275 -1.763992 0.886680 -0.137829 -0.517367 -0.004463 0.807979 0.776664 -1.900719 -1.072107 0.818932 1.407558 0.946336 -1.243556 -0.179189 -0.664026 -0.137493 -0.182379 0.162643 0.370932 -0.311897 -0.943849 -0.454070 0.686284 2.523994 -0.800267 -1.787862 0.644019 0.202549 -0.197247 -1.057096 -0.412223 -0.635664 0.170763 0.272427 -0.325469 0.871045 1.723919 -2.826367 1.320559 -0.356695 -0.940108 1.423020 -0.101188 -0.530766 -0.660345 0.250108 1.475730 1.423705 0.269507 -0.043771 -0.135033 -1.218137 -0.186395 0.072631 0.803396 -0.566810 0.647405 0.429440 -1.539802 -1.072958 -0.663683 -0.104948 -0.785077 -0.589623 0.534518 0.002435 -2.775168 1.860860 0.209396 -0.159756 0.430098 -0.319982 0.673216 -1.325312 -1.768722 0.666714 -0.120133 -0.206874 -0.259959 -0.033140 0.947916 0.251625 0.492061 -0.972132 -1.795928 0.709735 -0.009191 1.064555 0.535603 0.666437 1.206359 0.433648 -0.471658 -1.104026 -0.666440 0.614577 -0.136715 -0.906617 -0.425653 -0.509259 1.292945 1.557387 -0.134046 -0.299747 -0.746107 1.308723 -1.163720 -0.137361 1.018069 0.432503 -1.004742 -0.128537 1.178555 -0.975051 -0.916064 -0.649653 -0.295774 -0.507369 -1.230970 0.260688 -0.786665 0.284978 0.706108 -0.105135 -0.645451 0.437808 0.194686 0.045575 0.089161 1.344036 1.420196 -0.912694 0.387580 -1.104826 0.747483 -1.876151 -1.406909 0.454626 -0.349884 -0.642901 0.031553 0.131096 0.907069 -0.271396 0.309242 -0.001473 -0.407595 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/count-1s-sorted-binary-array.cpp__main = -0.849185 -0.777646 0.046874 -2.101084 1.647172 1.061595 0.928374 -1.181754 -2.626670 -0.548698 1.221600 -3.115301 -0.881991 2.979904 -0.858238 1.941934 3.469960 0.469594 -1.414940 -0.667263 2.249130 0.243437 3.513828 3.085845 -2.318367 0.049854 -0.504096 0.653387 0.907339 0.373663 0.187735 -1.458641 1.372610 -1.909211 -0.455813 -0.969779 0.155596 0.546262 1.868054 -3.417372 0.675320 0.536365 0.891429 -0.742246 -0.603865 0.723967 2.095001 2.266086 -0.300085 0.897630 1.993124 0.244532 -0.001476 0.620229 0.639997 0.013988 0.671351 -0.376607 -1.243390 -1.055162 -0.309689 -0.542747 0.011345 2.391425 2.831252 0.383635 -0.350272 1.283773 0.775451 0.784483 1.432694 0.585210 0.131382 0.214356 1.174628 -2.193080 -0.288098 -3.922737 -0.554015 -4.905515 -1.669682 0.199155 2.503253 0.136390 1.097279 -0.082487 2.512824 -0.213444 -0.817195 2.061064 3.091283 -2.043816 -1.283276 -1.231220 -1.329563 0.851537 -1.339260 0.642233 1.183218 0.540592 -2.371950 -1.090303 0.660217 0.769710 -0.973622 -1.123722 0.696171 1.781691 -1.978537 -1.267703 -0.200692 1.817565 0.061576 -3.652998 -0.630641 -1.460654 0.959623 0.293627 -1.192939 -1.780746 0.412997 0.673444 -1.158079 -0.971230 -1.120636 1.535609 1.182869 1.371211 0.232869 0.554221 0.977336 3.412682 0.492395 -1.830897 0.460832 -0.283584 -0.218121 1.313973 -1.376818 -1.339733 0.893961 -2.130734 0.813814 1.321013 -1.518417 -0.875627 0.872441 0.830818 0.405575 5.600154 0.034721 2.926653 2.025294 -2.213175 0.652097 -1.131112 0.113507 0.582881 1.255559 0.157223 -1.941357 -2.428960 1.747763 2.711812 1.899126 -2.441385 -0.337714 0.101212 -0.027606 -0.213183 0.212221 0.658661 0.364479 -1.954891 -0.589009 2.057965 4.287146 -1.009678 -0.680296 1.157524 1.137624 -0.196836 -1.891317 -1.021314 -1.284150 0.644327 0.886533 0.477901 1.658084 3.269736 -4.083746 2.352252 -0.193942 0.063445 1.700069 0.886010 -2.507438 -2.222936 -0.589457 1.488345 2.517368 -0.234907 0.028567 0.981619 -2.357546 -0.276214 0.345015 -0.080102 -0.720124 1.065157 0.263512 -1.067457 -1.230579 0.203013 -0.588360 -0.290583 -0.343001 1.770659 0.820876 -3.372928 2.409931 0.011834 -1.063037 0.000417 -0.909767 2.211686 -2.090928 -2.144700 1.238117 -0.801351 -1.368174 -1.167845 0.310869 1.210737 0.362939 1.310987 -1.418142 -2.128996 2.284649 -0.767015 2.335322 1.171132 -0.270185 1.367327 -0.436630 -0.705252 -1.840182 -1.340357 0.147474 -0.108221 -2.226594 -0.070319 -0.735079 2.225531 1.735151 -0.110254 -1.936448 -0.306944 2.229933 -2.464825 -0.891538 1.744164 0.878707 -2.217403 1.115456 2.151462 -2.511958 0.270979 -1.442487 -0.525076 -1.102741 -1.844148 1.495681 0.437239 1.349995 -0.105249 0.184306 0.058319 1.093099 0.562066 0.023215 0.416119 3.063246 2.418664 -0.985788 -0.440948 -2.725006 1.336517 -2.979754 -3.088200 1.428890 0.091337 -2.255914 0.076405 -0.090694 2.496440 0.454293 -0.544966 -1.238023 0.970929 +PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -3.918016 -4.572589 -2.467714 -7.438611 5.512348 5.414846 3.138171 -6.529467 -9.403006 0.531165 5.048451 -9.477123 -0.259992 10.376011 -3.099311 9.888794 11.524473 1.372723 -5.775958 -1.933791 10.544139 1.554151 12.521518 10.355843 -7.594890 -0.730178 -1.077583 2.274636 4.045583 -0.890815 0.722361 -2.664678 5.224160 -11.180243 -4.248602 -4.063116 1.576616 3.678586 10.759059 -10.585169 2.768545 -1.506645 2.859464 -2.803657 -3.826423 -0.730797 5.035881 8.389168 -1.091237 3.160947 7.829345 0.837494 -1.081355 2.417066 1.251875 1.873973 0.738018 0.221204 -2.885326 -5.538621 -0.656197 0.348919 1.908990 8.264957 9.941506 1.925201 -0.773395 7.474577 3.258933 2.369467 5.834988 1.675946 -2.294752 -0.099309 4.150255 -11.372658 -1.610484 -15.055360 -2.720698 -12.936422 -4.476121 2.127509 5.678495 -2.263716 6.650225 3.084034 8.094307 -1.306048 -4.125697 8.346920 9.392633 -8.703799 -4.202395 -4.322697 -5.548326 2.492829 -4.841426 2.967688 3.785704 2.226373 -7.875313 -5.913466 1.848662 4.808261 -3.227546 -7.437696 3.057261 5.496794 -5.338218 -7.207808 1.860440 7.133759 -2.761840 -12.345266 -3.784631 -6.675234 4.674451 -0.136787 -3.513921 -9.005798 0.508180 3.562486 -3.169218 -6.094953 1.422179 2.563398 5.507102 5.248839 0.246341 0.548086 2.468241 15.074787 1.475597 -6.757650 1.800994 -1.303898 -0.780850 5.401631 -5.501936 -5.191530 2.547296 -8.220411 3.208248 7.071480 -4.839774 -3.053588 8.232544 4.022813 0.954562 21.434458 1.723640 10.229279 8.649826 -7.803684 0.628375 -5.112795 1.613023 3.306259 3.446347 -1.022072 -9.691915 -9.200294 5.679365 8.533386 6.793820 -8.865625 -3.812640 0.012079 0.270551 0.100607 -1.061014 2.492324 0.666479 -7.049494 -1.733665 7.912614 15.343117 -4.722386 0.620143 5.498516 4.283758 -3.138467 -8.796958 -5.132294 -7.444632 2.173860 4.068600 2.166685 5.532613 11.323942 -11.573532 7.158037 -1.586392 1.274790 4.619261 4.676568 -9.932915 -5.620755 -2.336624 4.207091 7.853711 -2.244107 1.092139 4.819342 -8.143264 -0.624017 1.633303 -1.516392 -1.925891 3.533850 1.270737 -3.498357 -4.170369 5.191499 -2.299171 -2.442058 0.919614 6.783111 0.731178 -8.935741 7.454702 0.004728 -3.739881 2.479788 -3.613570 9.613029 -6.896373 -7.104386 6.468653 -0.954074 -0.559145 -3.293993 2.663201 5.159128 3.203534 5.362056 -5.616585 -7.595560 5.502708 -2.848165 7.463452 3.601969 -1.572510 2.695336 -6.869684 -1.919394 -8.660332 -3.501062 -1.986872 2.394861 -9.120668 -4.432515 -1.675878 9.149817 5.200498 0.004314 -7.844516 -0.174605 8.137360 -10.235447 -2.405864 5.643248 6.313597 -9.810614 1.990016 7.049096 -9.170991 1.892804 -2.936639 -0.714906 -3.711719 -6.719819 6.154739 3.349376 6.046726 -1.720265 1.480682 2.775607 4.174391 3.361326 2.229989 1.833662 10.234052 7.076680 -1.979931 -5.203828 -9.507520 3.613685 -10.236206 -11.419626 6.305377 0.973705 -8.916911 0.893661 0.257961 10.673511 1.826224 -1.036253 -3.126646 1.790585 +PE-benchmarks/z-algorithm-linear-time.cpp__main = -2.902604 -0.390064 3.416753 -5.764706 9.231782 3.437711 3.988092 0.250148 -5.655274 -3.556591 0.091369 -3.786067 -7.511596 9.310393 -2.629760 6.128419 9.179975 0.765969 -1.549730 -2.179180 10.300626 -6.459316 11.028918 4.738577 -10.493424 -0.539584 0.573043 6.427783 0.906680 9.073825 -1.703681 -4.165219 3.623565 -4.891480 4.385674 -5.396104 3.750782 1.397378 -1.602995 -11.060607 0.060957 4.347229 -0.042954 -0.486874 -2.559391 5.079686 6.610307 8.400089 -4.964423 2.170640 6.702933 -1.483963 0.197127 3.842183 -0.300628 1.188438 0.935724 -0.194882 -7.534997 -2.257323 -1.949427 -10.590357 3.020801 6.243738 11.057143 -2.708097 2.260111 6.639024 -3.342643 3.231625 3.678982 1.727566 1.335764 -3.132200 9.022890 -5.946995 -3.487641 -11.550518 -3.214463 -20.155332 -6.229253 -7.480972 5.029633 1.608293 5.343110 -2.988282 10.664412 1.007936 0.280803 6.466488 9.202099 -8.058507 -3.273159 -11.235469 -3.506808 1.915411 -6.951491 -3.847758 6.591369 -0.568594 -6.527335 -3.722713 2.757850 2.062187 -2.070764 -6.639591 -4.245637 9.327168 -9.313359 -6.704746 -8.086875 3.144993 -2.842630 -12.780371 2.697518 -2.116004 4.039294 0.493361 4.302409 -3.286740 1.622360 8.262633 -2.602825 -5.265594 -3.389048 10.415448 4.188937 -0.039579 4.423219 2.221197 -1.385932 7.473169 11.423788 -1.806182 -6.449616 2.336570 -4.285863 2.323969 -4.655282 -1.565605 5.698819 -9.176609 -1.435433 4.148262 -2.337054 -0.702367 1.930507 -1.079143 7.403463 16.598791 0.000247 5.307192 1.164603 -8.366928 8.269202 -0.050516 -0.817700 4.587873 5.381632 -1.804722 -8.470744 -7.916111 4.238106 5.800056 5.266959 -9.117749 -3.937229 -4.480990 1.862769 -1.301751 -2.888547 6.703207 -0.311511 -5.746885 -0.938766 0.665471 13.952398 -6.002946 -6.764699 8.368901 2.929478 -6.737406 -11.067092 -5.092788 -4.388707 -2.816590 -0.449945 -1.469306 2.993341 10.693922 -12.645157 7.462194 -2.011017 -2.459594 6.693615 -3.620750 -1.502363 -12.588314 -1.067113 6.453802 8.639639 -0.587270 -0.436910 0.448742 -7.196285 3.561328 -0.405175 2.924165 0.380459 2.906536 -3.805809 -4.810415 -7.386605 -3.970685 -3.286105 -0.599314 0.038531 1.648479 3.706299 -13.580033 8.450572 -5.167769 -3.514177 4.565589 3.459346 7.417666 -5.667044 -10.471057 5.610583 -0.416650 -6.299504 -8.732205 2.697479 5.728050 0.062512 -3.976524 -2.435835 -12.398501 6.029306 -3.193546 3.954140 2.577413 3.317408 10.695871 6.322463 -7.275409 -8.370444 -5.137711 -0.842290 -3.866543 -4.641012 -2.802313 -0.581771 8.175540 7.351862 2.111939 0.348466 -2.252704 11.436132 -8.531943 -5.711726 9.750764 1.664576 -4.623075 4.477831 10.449307 -7.324680 -6.658254 -5.629171 2.192083 -0.637167 -6.858708 2.467381 -4.235762 2.269586 2.677488 2.697202 -3.149229 2.750217 2.529325 0.069840 -7.116252 14.805649 11.596170 -9.073378 -0.500783 -5.259545 3.628665 -10.019275 -6.032581 1.106500 2.319377 -0.506036 5.347959 4.884632 6.544444 0.009387 -2.436884 -0.995690 -6.376306 +PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.576821 -2.411625 0.785883 -6.326317 6.664456 3.086379 3.230882 -1.583278 -6.654516 -2.582567 2.419728 -6.676611 -4.179023 8.649575 -2.750520 6.688337 9.240575 0.300264 -2.866341 -1.453689 8.856092 -2.780369 10.410473 6.182832 -8.579004 -0.726125 -1.618858 5.131377 2.201159 3.793652 1.731037 -3.382357 3.545431 -5.839660 0.802207 -4.209595 2.991098 2.028926 2.175867 -10.485920 0.997069 3.759889 1.156944 -1.284331 -2.082258 3.137949 4.874696 7.594018 -3.298507 2.587566 6.431110 -0.409634 -0.089200 2.760672 -0.873213 -0.562311 0.402401 -2.099706 -5.893177 -3.116214 -0.720988 -6.056717 2.315111 6.301669 10.061247 -1.235732 1.192722 6.428674 -0.054900 2.819009 4.720693 1.396195 -0.744287 -1.561013 6.267415 -6.759704 -2.506035 -10.678829 -2.356393 -16.541831 -5.355909 -2.844373 6.610065 2.360775 3.841082 -1.711181 8.180969 0.426498 -1.363911 7.833983 7.826991 -6.038607 -3.435700 -8.274614 -3.555449 2.673697 -5.676843 -1.513404 5.237607 1.794548 -6.231467 -1.889670 1.827411 2.377696 -2.163296 -5.800192 -1.049289 6.955112 -7.464112 -5.972924 -2.533432 5.753111 -1.752467 -11.786626 0.536063 -3.458421 3.199227 0.323567 2.152601 -3.086401 0.514649 4.602506 -2.077473 -3.315990 -4.380211 7.366720 3.975727 2.512580 2.792579 2.946506 0.406914 8.829554 5.413087 -2.963485 -3.038633 0.897311 -2.042539 3.654111 -4.278813 -2.747469 4.145591 -7.894082 0.172043 4.372808 -2.812895 -2.360083 1.066087 1.389295 4.276938 18.118571 1.241829 7.573530 4.312282 -6.940292 4.574647 -1.871235 0.168593 3.370440 3.330027 -1.724138 -7.907517 -7.217158 4.018659 5.885244 5.195298 -7.791918 -2.324355 -1.632933 0.704914 -0.815880 -1.938241 5.028792 0.281321 -5.860821 -0.809026 3.674152 13.283897 -3.375906 -2.097395 6.297078 3.857617 -5.228423 -9.182901 -4.101781 -3.582993 -0.910805 0.917750 0.318229 3.102795 9.518399 -10.346885 6.490631 0.137011 0.676209 5.123726 -0.804765 -5.194729 -11.498545 -2.197284 4.795063 7.757124 -2.384379 0.472050 2.206690 -6.162982 2.166795 0.794173 0.193230 0.431852 2.304043 -2.360393 -2.632339 -5.262358 -0.199245 -3.186291 0.587483 -0.144608 3.177241 3.559757 -9.199381 6.789043 -3.611349 -3.873544 2.318103 0.206141 8.061550 -5.806572 -7.432930 4.704143 -1.263867 -5.917725 -7.118397 2.162315 4.210133 1.028011 -0.524402 -2.691238 -8.791734 5.653213 -3.877437 3.998386 2.854246 0.511775 6.744646 1.930330 -4.514622 -7.264269 -5.929034 -1.624047 -1.385367 -5.755984 -0.971598 -0.796511 7.116928 5.078982 0.587269 -3.715103 -0.481906 9.015908 -7.211014 -4.612558 7.037059 1.072205 -6.310175 3.718343 8.030595 -8.043330 -1.606559 -4.561964 1.286295 -1.587268 -5.494452 3.554201 -0.171185 3.279005 0.385631 2.174218 -1.187234 2.651386 2.471522 0.441318 -3.257124 12.763804 8.895325 -5.085367 -1.688705 -6.230064 3.100099 -8.910360 -7.626577 2.704271 1.609932 -2.695219 3.676578 3.122992 7.242301 1.585385 -2.173320 -2.007113 -1.542972 +PE-benchmarks/strongly-connected-components.cpp__main = -1.379785 -0.328111 1.989921 -3.585569 3.209187 1.557561 1.366089 -0.428616 -3.795144 -1.708610 0.359435 -3.815685 -2.640818 4.986757 -1.584756 1.621510 6.042457 1.554231 -1.416847 -0.740391 3.302709 -0.981286 5.347912 4.456366 -3.965078 -0.112510 -0.261114 2.587357 0.381128 3.284321 -0.220234 -3.155376 1.420021 -1.298854 0.542128 -2.956895 0.516516 0.740768 0.012856 -6.592094 0.922049 1.819980 0.079577 -0.993712 -0.247865 1.788916 3.960572 3.593136 -1.117096 0.923221 2.485526 1.158661 -0.020769 1.213066 0.803396 0.301336 1.422440 -1.035291 -2.621555 -0.885650 -0.961118 -2.823798 0.292325 3.738560 4.806560 0.348913 -0.044308 0.926796 -0.022504 1.387137 1.726725 0.705655 0.606300 0.385835 2.126137 -2.240763 -0.455383 -5.650152 -0.618122 -8.440436 -2.816741 -1.394877 3.885852 1.860061 0.707258 -1.010929 4.401032 -0.389770 0.137568 3.685278 5.159172 -2.766814 -1.848162 -3.310026 -2.409600 1.617951 -2.117326 -0.576199 1.209824 0.918790 -3.504848 -1.852179 0.949761 0.592931 -1.414861 -0.928144 0.100160 4.002779 -4.488908 -1.825768 -2.201168 2.495676 0.118119 -6.056751 -1.059707 -1.982387 2.201815 0.598412 -1.032439 -2.091352 1.251437 2.083312 -1.607257 -0.706434 -2.965961 4.004552 0.994158 0.558595 0.613436 0.584191 0.538217 3.751796 2.338427 -2.229993 -0.329799 0.581315 -1.430124 0.480978 -2.651900 -1.289833 1.029527 -3.646461 0.506590 2.088122 -2.547785 -1.536836 -0.862655 0.084793 2.120714 10.103118 -0.687479 3.805297 1.888471 -4.171969 2.102609 -0.370156 -0.477377 0.803512 2.391182 0.937934 -3.421808 -3.518972 2.180991 4.097157 3.244064 -3.412583 -0.199761 -1.166157 -0.167185 -0.087971 0.500484 1.493082 -0.400567 -3.150465 -1.038026 1.951782 6.965345 -1.090707 -3.514226 1.957931 1.532358 -1.124062 -3.103517 -1.127996 -0.795741 0.178159 1.076020 -0.619346 2.271201 5.326321 -7.761087 4.185458 -0.055805 -0.543481 2.845915 -0.210063 -2.434475 -4.477581 -0.855529 3.369666 5.067577 -0.083686 -0.263306 0.593470 -3.618318 -0.076778 0.654719 1.345213 -0.965767 1.867009 0.155759 -2.721347 -2.478114 -1.387533 -1.025656 -0.277006 -1.270588 1.916018 0.984834 -6.795489 4.492026 -0.674152 -1.067421 0.523170 -0.304896 3.014455 -3.573946 -4.631319 1.875590 -0.737801 -3.127664 -2.494100 0.269255 2.715572 0.478517 0.722537 -1.833395 -4.473624 3.361702 -1.099271 3.111895 1.770674 0.476001 3.874364 1.951857 -1.594986 -2.882015 -2.665586 1.147117 -1.174614 -2.448183 0.297896 -1.248296 3.451921 3.771328 -0.157433 -2.052388 -1.017140 4.752492 -2.764387 -1.662586 3.345643 -0.283423 -2.577020 2.015666 4.084692 -4.101044 -1.456591 -2.626609 0.052004 -1.130388 -2.901062 1.744138 -1.026833 1.266058 0.921724 0.411016 -1.698370 1.354195 1.036292 -0.242198 -0.138523 5.652863 4.677392 -2.361707 1.177866 -3.257246 2.115831 -5.192673 -3.816727 0.799914 -0.212821 -1.763071 0.992345 -0.014693 3.295196 0.150326 0.035427 -0.967025 0.160530 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = -0.413558 0.520414 0.918073 -1.000680 1.167729 1.111363 0.363366 -0.409894 -0.809124 -0.334697 -0.185619 -1.054074 -0.874397 1.462733 -0.571759 0.479407 1.973457 0.463213 -0.345049 -0.150545 0.939258 -0.266490 1.743616 1.534987 -1.316590 0.010890 0.659243 0.628381 -0.072929 1.512250 -0.986705 -1.354492 0.491661 -0.440593 0.327186 -0.939077 0.044680 -0.216140 0.200079 -2.020084 0.181612 0.136399 -0.320284 -0.318613 -0.139177 0.165356 1.784695 1.036830 -0.258466 -0.035986 0.707193 0.575288 -0.119295 0.347083 0.622148 0.557206 0.998461 0.187839 -0.657221 -0.270546 -0.393433 -0.628559 -0.071148 1.320021 1.491047 0.274455 0.031759 0.162583 -0.243773 0.161407 0.076277 0.302819 0.340540 0.708070 0.505178 -0.987275 0.172498 -1.896617 -0.314978 -2.117939 -0.852728 -0.823392 0.244782 0.092746 0.712894 -0.266449 1.500928 -0.138039 0.372286 0.438340 2.020364 -1.416161 -0.517341 -0.997348 -0.772596 0.258324 -0.653284 -0.002679 0.186395 -0.424102 -1.107367 -1.250694 0.586851 0.465177 -0.484917 -0.214534 -0.011614 1.227447 -1.170831 -0.740017 -1.100168 0.044657 -0.351707 -2.029487 -0.385520 -0.547494 0.697595 0.219561 -0.494902 -1.584939 0.487550 1.309114 -0.559641 -0.800498 -0.304837 1.378636 0.646246 -0.039468 0.168740 -0.252690 0.403768 1.481646 1.141670 -0.645318 -0.090159 0.014020 -0.836210 -0.218630 -0.918740 -0.241331 0.101664 -1.104196 0.025103 1.186214 -0.855873 0.111935 0.413294 -0.327846 0.872183 3.906630 -0.577244 0.936033 0.197275 -1.763992 0.886680 -0.137829 -0.517367 -0.004463 0.807979 0.776664 -1.900719 -1.072107 0.818932 1.407558 0.946336 -1.243556 -0.179189 -0.664026 -0.137493 -0.182379 0.162643 0.370932 -0.311897 -0.943849 -0.454070 0.686284 2.523994 -0.800267 -1.787862 0.644019 0.202549 -0.197247 -1.057096 -0.412223 -0.635664 0.170763 0.272427 -0.325469 0.871045 1.723919 -2.826367 1.320559 -0.356695 -0.940108 1.423020 -0.101188 -0.530766 -0.660345 0.250108 1.475730 1.423705 0.269507 -0.043771 -0.135033 -1.218137 -0.186395 0.072631 0.803396 -0.566810 0.647405 0.429440 -1.539802 -1.072958 -0.663683 -0.104948 -0.785077 -0.589623 0.534518 0.002435 -2.775168 1.860860 0.209396 -0.159756 0.430098 -0.319982 0.673216 -1.325312 -1.768722 0.666714 -0.120133 -0.206874 -0.259959 -0.033140 0.947916 0.251625 0.492061 -0.972132 -1.795928 0.709735 -0.009191 1.064555 0.535603 0.666437 1.206359 0.433648 -0.471658 -1.104026 -0.666440 0.614577 -0.136715 -0.906617 -0.425653 -0.509259 1.292945 1.557387 -0.134046 -0.299747 -0.746107 1.308723 -1.163720 -0.137361 1.018069 0.432503 -1.004742 -0.128537 1.178555 -0.975051 -0.916064 -0.649653 -0.295774 -0.507369 -1.230970 0.260688 -0.786665 0.284978 0.706108 -0.105135 -0.645451 0.437808 0.194686 0.045575 0.089161 1.344036 1.420196 -0.912694 0.387580 -1.104826 0.747483 -1.876151 -1.406909 0.454626 -0.349884 -0.642901 0.031553 0.131096 0.907069 -0.271396 0.309242 -0.001473 -0.407595 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/snake-ladder.cpp__main = -1.593690 -1.756275 1.387683 -4.295027 3.015792 1.378567 1.503210 -1.168988 -4.970151 -0.881568 1.233835 -4.013845 -0.911202 5.418167 -1.482476 3.381171 7.060880 1.850409 -2.173989 -0.922658 4.841420 -2.632577 5.655163 5.466617 -4.211972 -0.239879 -0.186363 2.797839 1.520439 2.607893 -0.872633 -1.542704 1.465206 -4.040544 0.251518 -4.083949 0.847402 1.755534 2.286205 -7.409682 1.351162 0.734190 1.402517 -1.227750 -1.006764 2.198245 3.208170 3.960879 -1.616093 1.320799 3.611771 -0.073928 -0.251377 1.201904 0.910727 1.431039 2.185628 1.540719 -2.498050 -1.193133 -0.642736 -2.568282 1.874307 3.924082 5.608312 0.229210 0.169610 2.099493 1.270854 1.123149 2.836052 0.403096 -0.796646 -0.723121 2.369264 -5.653018 0.077436 -8.564557 -0.792520 -10.023421 -2.761042 -0.553271 3.969561 -0.612004 1.916792 -0.286579 4.295390 -0.907820 -0.495934 3.554875 4.826969 -3.708794 -2.213747 -3.541451 -3.138702 1.679516 -2.373525 -0.802093 3.444952 0.671295 -3.662423 -2.144868 2.365152 1.878138 -1.456706 -1.867794 0.664215 4.244319 -3.915293 -3.560570 -1.089885 2.955108 -0.857254 -6.496825 0.631332 -3.543243 2.308061 0.375137 -1.329877 -3.393160 0.713161 2.625566 -1.856717 -1.540734 -2.391474 4.624085 1.441634 1.398433 0.524962 -0.110688 0.355491 4.742113 2.781621 -3.186284 0.017358 0.727538 -2.438438 1.185648 -3.782447 -2.586179 2.610969 -4.369852 -0.076729 2.214790 -2.767125 -0.597232 3.542171 1.609102 1.803467 13.163742 0.105298 4.953586 2.705390 -4.176631 3.420683 -0.101047 0.369032 1.686733 2.633661 -0.259604 -6.780938 -4.218974 1.883296 4.259531 3.647846 -5.201697 -2.698093 -1.495539 -0.425099 1.039051 -0.425938 1.348123 -0.474179 -3.593305 -1.017193 2.171038 8.807536 -1.719588 -2.459775 2.077307 1.210653 -3.039451 -6.692138 -1.814980 -3.112527 0.756395 -0.413431 -0.296030 2.844208 5.797171 -9.193732 4.438864 -1.349084 -0.451315 4.137255 0.278412 -3.467060 -7.490816 -1.253704 2.728073 5.995139 -0.647845 -0.464525 2.145640 -3.866311 -0.088309 0.270505 0.606210 -1.007709 1.731773 0.056701 -2.525869 -2.234467 -0.009110 -1.279388 -1.055566 -0.274421 2.447063 0.469206 -6.344423 4.102171 -0.703470 -1.448498 1.549636 -0.283003 2.985235 -3.875263 -4.398610 2.345251 0.437930 -1.532288 -3.594586 0.652984 3.210391 0.141238 0.240051 -2.109671 -6.116176 2.743014 -2.841881 3.418994 1.854974 -0.573548 3.456681 2.188596 -1.160993 -4.664439 -1.491917 -1.278649 -0.792759 -3.336130 -1.698615 -1.080788 4.223900 3.500562 0.341525 -1.655141 -0.244925 5.644257 -3.665480 -1.966428 3.477726 0.380926 -3.543637 1.508104 4.257857 -5.625043 -0.698592 -2.305604 -1.044741 -0.629813 -2.759553 2.801864 0.077602 2.213951 -0.269852 0.965302 -0.304757 1.763338 1.512207 0.400468 -0.041896 6.761904 5.715841 -2.049409 -0.591005 -3.838219 2.070681 -5.482767 -4.356311 1.101648 1.251337 -3.371158 1.493843 1.590299 4.591468 0.473990 -0.284141 -0.691029 0.099385 +PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = -0.402545 0.546489 0.932810 -0.994950 1.165065 1.095896 0.357375 -0.371302 -0.796858 -0.367494 -0.204686 -1.056928 -0.907256 1.458193 -0.573613 0.423702 1.975483 0.463673 -0.328587 -0.151822 0.907207 -0.250114 1.729765 1.523413 -1.314122 0.011557 0.655471 0.621610 -0.093388 1.525909 -0.962191 -1.400271 0.478285 -0.375643 0.352208 -0.925418 0.038626 -0.238481 0.135020 -2.021879 0.177300 0.172621 -0.331613 -0.318042 -0.122595 0.178630 1.806327 1.025253 -0.259290 -0.050797 0.693576 0.605526 -0.124160 0.340572 0.618352 0.530742 0.980966 0.155747 -0.668433 -0.251689 -0.398302 -0.633904 -0.098102 1.317592 1.476832 0.276691 0.031260 0.126719 -0.259524 0.171267 0.058128 0.299112 0.378460 0.721460 0.502776 -0.921679 0.148918 -1.871203 -0.299367 -2.148335 -0.852794 -0.845440 0.270536 0.133734 0.665812 -0.295495 1.498142 -0.137497 0.397382 0.459298 2.030567 -1.376162 -0.517067 -1.010787 -0.771320 0.266985 -0.645695 -0.009787 0.166328 -0.417159 -1.105200 -1.234680 0.558884 0.436277 -0.478175 -0.187226 -0.018359 1.227055 -1.188252 -0.690026 -1.129366 0.049116 -0.310203 -2.023306 -0.408624 -0.525380 0.683320 0.230261 -0.499028 -1.544470 0.497420 1.296453 -0.568390 -0.761794 -0.335392 1.387148 0.623176 -0.051656 0.170472 -0.238912 0.411446 1.438361 1.139981 -0.633799 -0.092369 0.019603 -0.823856 -0.247445 -0.907876 -0.226532 0.097615 -1.086773 0.041298 1.165264 -0.856771 0.081351 0.327222 -0.364096 0.887748 3.870548 -0.598208 0.920977 0.169679 -1.758447 0.878667 -0.126326 -0.535953 -0.030982 0.812894 0.799019 -1.829856 -1.055804 0.820857 1.405474 0.941816 -1.211633 -0.133853 -0.659823 -0.145662 -0.191969 0.179314 0.369271 -0.315161 -0.936038 -0.458837 0.683199 2.498472 -0.772237 -1.810168 0.625620 0.227963 -0.158596 -0.991072 -0.386313 -0.593458 0.171663 0.296782 -0.338781 0.874476 1.718126 -2.838242 1.322810 -0.331329 -0.934482 1.393336 -0.112502 -0.505825 -0.649261 0.256391 1.492722 1.430389 0.285788 -0.047755 -0.162936 -1.207842 -0.187800 0.078512 0.827048 -0.567557 0.642484 0.422767 -1.541932 -1.077397 -0.699828 -0.111025 -0.759511 -0.613543 0.514493 0.015677 -2.792630 1.875325 0.205374 -0.143924 0.391076 -0.316343 0.657357 -1.324250 -1.773059 0.643566 -0.137255 -0.255759 -0.247482 -0.051720 0.943894 0.246846 0.503085 -0.955747 -1.789799 0.734771 0.016167 1.070726 0.532811 0.679131 1.230571 0.458479 -0.467586 -1.074588 -0.694578 0.662186 -0.155886 -0.888978 -0.372712 -0.511858 1.270312 1.558709 -0.150977 -0.308283 -0.758645 1.299792 -1.130689 -0.137215 1.013719 0.391802 -0.977780 -0.109056 1.179568 -0.966510 -0.932630 -0.673376 -0.275832 -0.508417 -1.230076 0.231666 -0.812770 0.266067 0.727191 -0.113091 -0.678508 0.424267 0.184982 0.023852 0.088429 1.331461 1.410487 -0.925140 0.435920 -1.099029 0.753931 -1.873186 -1.401345 0.433099 -0.375686 -0.611654 0.027528 0.100274 0.877083 -0.283358 0.321886 -0.011796 -0.389029 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -3.163889 -2.889146 -0.536371 -7.691511 7.459730 5.724997 2.977131 -3.158993 -8.432995 -1.048832 2.418550 -8.068292 -1.905914 10.378882 -2.896346 8.446893 12.501584 1.614523 -3.506435 0.089107 9.414962 -1.310219 11.132014 8.749277 -7.657291 -0.727729 -1.500284 3.672383 0.363658 4.504373 0.156475 -5.955660 4.128959 -8.217549 -2.115739 -6.221197 1.960061 3.142089 6.033896 -12.708753 2.454355 2.438929 0.078452 -2.394933 -2.548576 0.469539 6.057351 7.603531 -2.891153 2.963326 5.819254 1.597642 -1.342604 2.768193 0.473927 2.007612 -0.267415 -0.130955 -5.217585 -4.149574 -1.362680 -2.653189 2.350592 7.015722 10.350080 0.211323 0.376702 6.370232 0.349737 2.093697 5.020551 1.011088 -1.476130 -0.977590 4.662987 -7.784488 -2.487191 -11.883682 -2.518806 -15.399422 -4.785996 -0.516844 5.806380 1.208923 4.840302 -1.306722 8.057996 -1.787584 -1.411062 9.291417 9.177144 -7.483479 -3.863405 -7.573691 -5.444810 2.329286 -4.484874 -1.278184 4.681919 0.644562 -7.203528 -4.772261 1.708095 3.746839 -2.378750 -6.998421 1.451466 6.932105 -7.657308 -7.474432 -0.716513 7.045935 -3.168065 -12.473958 -2.933512 -4.510200 3.013822 0.423719 -1.032461 -7.201095 1.303403 4.978202 -2.883930 -4.459324 -1.081433 6.796738 4.097261 3.377775 1.884018 0.601887 1.032398 12.161046 3.796004 -4.746074 -0.293121 0.221251 -1.087852 3.252483 -5.295100 -4.085810 2.065346 -8.969146 1.181577 6.607988 -4.547178 -1.580820 3.181269 2.226044 3.123991 24.806765 0.252712 9.411671 5.634077 -9.134995 3.510070 -2.544287 0.037535 2.252270 3.695882 -0.283333 -10.631849 -7.784613 4.707849 7.237612 6.801689 -8.640092 -2.683836 -2.012060 -0.096984 0.628089 -1.623150 3.559184 0.056611 -7.484153 -1.385435 5.137423 17.337283 -3.426645 -1.944796 6.262162 5.248467 -4.991411 -9.608713 -4.395355 -6.559885 0.392705 2.853475 -0.472168 4.347658 10.870727 -12.675041 7.176192 -1.284884 -0.016385 4.944096 1.911125 -7.202682 -10.285837 -3.339867 5.809476 10.286207 -2.411981 2.439946 2.702385 -6.477045 0.707666 1.618210 -0.026597 -0.632081 2.885231 -0.465954 -5.081941 -4.390309 2.329520 -3.268187 -1.682194 -0.580892 4.384257 2.518080 -10.264978 7.816895 -0.929448 -2.955456 2.988936 -0.443590 9.144895 -6.671529 -8.672308 5.886776 -0.589853 -2.933314 -3.748926 2.028134 5.300976 2.834400 1.817859 -3.701491 -10.770425 4.988427 -2.682988 5.769566 3.463507 -0.470000 5.648850 -1.610845 -3.463010 -8.351210 -7.247846 -0.659841 0.085350 -6.627377 -1.812519 -1.801593 8.677201 5.500120 0.836036 -6.506865 -1.097651 9.794610 -6.599128 -1.339885 7.259606 1.889807 -8.525620 1.212529 8.656229 -9.129841 -0.427709 -3.452357 1.436298 -2.943236 -5.671346 4.144968 1.081237 3.814198 -0.269762 1.787701 -0.753440 2.604622 3.319668 1.270091 -0.565272 12.424145 6.982203 -3.644814 -2.011901 -6.716609 3.109736 -10.214246 -9.441054 3.434393 0.686657 -5.547724 2.523193 2.046918 8.603626 0.607242 0.629331 -0.927308 -0.772676 +PE-benchmarks/floyd-warshall.cpp__main = -0.701901 -0.639612 -0.268762 -1.807258 1.286484 1.684277 0.664569 -0.744539 -2.247882 -0.497092 0.649524 -2.381069 -0.461265 2.401611 -0.611354 1.811268 3.220199 0.551036 -1.103036 0.132736 1.965047 -0.403912 2.840491 2.632625 -1.493508 -0.023327 -0.562707 1.065330 -0.058950 1.137687 0.252532 -1.563115 0.899583 -1.856352 -0.651359 -1.617599 0.197158 0.758490 1.301968 -3.327195 0.603163 0.836549 0.261415 -0.698503 -0.554464 -0.409310 1.599844 1.728051 -0.062916 0.594482 1.245157 0.453831 -0.153772 0.548028 0.621845 0.522758 0.242576 -0.521734 -1.044296 -0.910219 -0.253437 -0.712759 0.205396 1.673829 2.394325 0.273718 -0.119569 0.971241 0.016914 0.485775 1.135695 0.236450 -0.680054 -0.097814 0.653921 -2.058711 -0.130159 -2.353337 -0.294010 -3.365526 -1.203577 0.125007 1.759241 1.207422 1.050857 -0.324584 1.857774 -0.819049 -0.438316 2.060038 2.305069 -1.666250 -0.956094 -1.343068 -0.978241 0.668527 -0.951597 -0.259692 0.880194 0.424995 -1.687179 -0.591225 0.843029 0.912217 -0.672667 -1.295954 0.510646 1.689879 -1.977804 -1.526141 -0.046255 1.898756 -0.389512 -3.093011 -0.976696 -1.299813 0.321488 0.187653 -0.858503 -1.819007 0.500255 0.878395 -0.497555 -0.861499 -0.644711 1.538222 0.699946 0.716902 0.297350 0.404706 0.465234 3.137396 0.458147 -1.090811 0.370594 0.068690 -0.363353 0.789439 -1.097404 -1.076552 -0.328135 -2.142284 0.391941 1.626536 -1.217113 -0.390377 0.043015 0.843915 0.492105 7.104316 0.007232 2.549975 1.720012 -2.059135 1.015500 -0.730317 -0.043244 0.308751 0.705283 0.075391 -3.074137 -1.696325 1.123956 2.016645 1.600055 -1.928775 -0.255332 -0.337691 -0.037018 0.184734 0.038328 0.481439 0.299337 -1.669184 -0.463479 1.600259 4.588767 -0.597253 -0.262299 1.225426 0.644030 -1.086349 -2.590329 -0.795482 -1.238155 0.323241 0.497534 -0.108051 0.997771 2.493367 -2.762579 1.876422 -0.273877 -0.033272 1.836915 0.625372 -1.859704 -2.630814 -0.915954 1.387048 2.787612 -0.713884 0.377324 0.591409 -1.679401 -0.237850 0.528910 -0.039444 -0.390842 0.813062 0.142861 -1.192555 -0.914541 0.339883 -0.674007 -0.340984 -0.493301 1.174694 0.556470 -2.182195 1.963804 0.196723 -0.670939 0.381198 -0.294416 1.938648 -1.664899 -1.972816 1.317552 -0.174734 -1.029984 -0.656428 0.214696 1.248317 0.795794 0.461913 -0.948618 -2.138121 1.565623 -0.588822 1.682626 0.825961 -0.237575 1.033862 0.090329 -0.608563 -1.689949 -1.811959 -0.199639 -0.273480 -1.682934 -0.375226 -0.589216 1.936153 1.335808 0.295659 -1.915418 -0.057756 2.452834 -1.284264 -0.371996 1.446674 0.276455 -2.208788 0.314907 1.838098 -2.445761 0.101392 -0.945266 -0.073007 -0.714143 -1.459442 1.065864 0.310215 1.112467 0.061201 0.250259 -0.178640 0.619069 0.732467 0.232728 0.304860 2.991534 1.387112 -0.374877 -0.281905 -1.832065 0.724762 -2.313845 -2.309137 0.771952 0.561125 -1.564602 0.249120 0.555222 2.091654 0.361856 0.009399 -0.336597 0.203166 +PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -3.368088 -3.765394 -3.132336 -8.088828 4.776645 8.455373 2.513784 -4.956102 -9.209358 -0.863578 3.658552 -9.567930 -0.000324 9.560112 -2.644264 9.391352 12.681507 1.132586 -5.390719 1.005225 9.933501 -0.971770 11.815248 10.643008 -5.970323 -0.767447 -1.876830 4.540520 0.937803 2.348793 2.080199 -4.667771 3.770865 -10.477926 -4.322393 -6.612625 1.528902 3.742573 8.250606 -12.660010 2.631034 1.428542 0.422647 -3.014934 -3.406480 -3.509548 5.142896 7.368426 -0.540995 1.965756 6.117949 1.880788 -1.595932 2.124340 1.603625 2.174070 -0.099279 -1.042447 -2.887728 -5.248444 -0.329896 -1.036439 2.095517 7.042577 10.033479 1.305754 -0.150311 6.319703 1.005987 1.651357 5.084949 0.852316 -4.854957 -0.574940 2.595081 -11.614440 -0.678418 -10.606223 -1.392817 -11.510558 -4.099935 1.909039 5.323454 3.392880 5.786231 0.124183 6.945115 -3.397609 -2.921737 9.741547 8.456865 -7.274667 -3.554369 -5.667084 -4.515027 2.545847 -4.012262 -0.239497 3.764643 2.202093 -6.540964 -2.471096 2.915195 5.070833 -2.748347 -7.823552 2.704240 6.202600 -6.685499 -7.568756 2.540296 8.937058 -3.162953 -13.105244 -5.021456 -6.760257 2.110456 -0.537878 -2.795155 -8.876693 0.926750 4.049719 -1.238068 -4.852285 -0.060564 4.841466 4.432872 3.831950 0.796242 1.360682 1.910200 14.960840 1.086834 -4.459189 1.627711 -0.420949 -1.339611 4.068204 -4.653761 -4.480962 -1.200669 -9.065806 1.676079 8.548880 -4.356201 -1.702535 3.663990 4.262846 1.411517 33.179618 1.249129 11.198315 8.537943 -8.364023 2.998347 -3.898757 0.352901 2.038835 1.661119 -0.725503 -15.899912 -7.184136 4.610780 7.709333 6.393966 -8.676370 -2.060435 -0.872317 -0.524649 0.659556 -1.128632 1.851101 0.949378 -6.772459 -1.754081 8.074902 19.446580 -2.779201 1.654368 5.841103 3.278644 -6.110726 -12.461313 -4.105402 -6.560052 1.535957 2.745831 0.185497 4.188292 9.910539 -9.479390 6.605841 -0.851318 0.991388 7.045036 3.801296 -9.025264 -10.942611 -3.834606 5.099343 10.503093 -4.700022 2.411071 3.301576 -6.627650 -0.687181 2.766489 -1.630675 -1.067815 2.865573 0.788098 -4.034197 -3.681604 4.519669 -3.342775 -1.482813 -0.935874 5.246451 0.568293 -6.643854 7.605225 0.729787 -2.956988 2.317078 -2.431369 9.572667 -6.770429 -7.376663 6.604008 0.287295 -2.014559 -2.439539 1.779177 5.412196 4.452110 2.740178 -4.687868 -8.990132 4.910752 -3.223368 6.375105 3.069466 -1.336409 2.839737 -3.485730 -1.671992 -8.776032 -7.751806 -2.265523 1.412388 -8.596390 -3.749407 -1.690775 8.497937 4.254925 0.818041 -9.101342 1.144385 9.735000 -6.275736 -1.182127 4.955941 3.427536 -11.376579 -0.122829 6.625922 -10.292473 1.830485 -2.837266 -0.180117 -3.159707 -6.428710 4.991692 3.376011 5.637571 -0.690324 1.660734 1.178113 2.778564 3.824937 2.563926 1.935181 11.941555 5.400402 -0.332384 -4.299432 -8.018363 2.452494 -9.305378 -10.698233 4.591390 2.585817 -6.531675 1.058494 2.882273 9.999922 2.110073 0.265599 -0.551968 0.692625 +PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -1.193599 -0.809905 -0.123490 -3.337751 1.783870 2.025812 0.792129 -1.099869 -3.128780 -1.246976 0.946680 -3.698232 -0.986006 3.772050 -1.228029 2.372887 4.846804 0.421820 -1.577011 0.015075 3.331591 -0.664645 4.105219 3.812019 -3.081163 -0.420205 -0.193825 2.140488 0.700674 1.064766 1.161921 -2.323325 0.786418 -2.449099 -0.304071 -2.106067 0.839914 1.004312 1.613670 -5.240870 0.783110 1.383761 0.531256 -1.064721 -0.941306 -0.623002 2.484906 3.004272 -1.042545 0.291703 2.779418 1.141906 -0.546763 0.627544 0.138083 -0.174764 -0.209394 -0.813696 -1.371565 -1.380530 0.086132 -1.076727 0.723656 3.182534 3.926145 0.395935 0.167739 1.751405 0.483150 0.880521 1.548219 0.439860 -1.056417 0.340992 1.434014 -3.369528 -0.324325 -4.958286 -0.000339 -5.918258 -1.908422 -0.226766 2.678068 2.200564 1.270714 -0.581001 3.076129 -0.739850 -0.333599 3.953031 3.638253 -2.070889 -1.423153 -2.984701 -2.326775 1.749165 -1.832939 -0.086016 1.112180 1.149329 -2.566152 -1.018297 0.662873 1.392223 -1.209572 -2.109612 0.628263 2.502669 -2.841953 -2.134510 -0.014885 2.989924 -0.361140 -5.240044 -1.348166 -2.430060 0.582464 -0.080882 -0.736946 -2.386302 0.111261 1.440032 -0.763492 -1.037587 -2.150596 2.551856 1.571853 1.040067 0.456704 0.581057 1.030197 4.387673 0.580020 -1.855336 0.024753 0.206511 -0.814863 0.729879 -2.126882 -1.438379 0.788386 -3.198933 0.295376 2.466053 -1.788663 -1.278598 0.349667 0.476306 1.341631 11.593158 0.333641 3.860643 2.667437 -3.082789 1.764721 -0.786531 -0.402999 0.780637 1.053770 0.254342 -4.333489 -2.762538 1.650450 3.247179 2.490060 -2.506787 -0.631700 -0.230504 -0.526447 -0.117838 -0.089582 0.864965 -0.337515 -2.507450 -0.762701 3.192087 5.967800 -0.459479 -0.298335 1.767365 2.394112 -1.797896 -3.593125 -1.022913 -2.308459 0.518113 1.063376 -0.062488 2.081118 4.077391 -5.223041 2.818484 0.661020 0.551552 2.084186 0.434305 -3.060580 -4.909149 -0.465897 2.357154 3.863760 -1.598124 0.882221 0.893152 -2.750564 -0.154740 1.024735 0.039867 -0.729648 1.196875 -0.170618 -1.379612 -2.036945 0.743269 -1.759352 -0.404577 -0.812302 1.739071 0.816016 -3.224283 3.403337 -0.371771 -1.090356 0.283342 -1.403956 3.071457 -3.371211 -3.162998 1.905512 -0.160849 -1.619145 -1.281991 0.338018 2.177335 0.920808 0.752648 -1.562015 -3.569551 2.170072 -1.198968 2.351118 1.316649 -0.112408 1.657332 0.242257 -0.564464 -2.873753 -2.663488 -0.078004 0.194591 -3.227893 -0.857361 -0.685074 2.908843 2.394537 -0.382682 -2.933665 0.413142 3.357778 -1.814706 -1.275381 1.805551 -0.188508 -3.468805 0.377280 2.547173 -3.742399 0.143165 -2.205778 0.638543 -0.776503 -2.815458 1.624942 0.445401 1.780634 0.461369 0.256578 -0.365935 1.273938 1.459307 0.413637 0.535873 4.407385 2.124240 -0.662922 -0.615688 -3.478390 1.066072 -4.141634 -4.021991 1.273474 0.320639 -1.790181 0.551302 0.619822 3.241276 0.589420 0.613630 -0.481983 0.538733 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = -0.960152 -0.075671 2.393800 -2.840478 1.653619 0.003159 0.729160 0.165825 -2.581059 -1.757983 -0.029692 -2.109337 -2.050258 3.252470 -1.316988 -0.170119 4.645849 1.706999 -0.750292 -1.524514 2.213877 -1.737314 3.688599 4.008760 -3.450363 -0.139958 1.119652 2.767420 1.638811 2.293413 -0.217981 -1.776430 0.611460 -0.164881 1.739719 -3.066704 0.480555 0.492311 -1.071526 -5.306527 0.537628 0.371498 0.207359 -0.342515 0.118291 3.148482 3.113071 2.484886 -1.636515 0.586147 2.587025 1.122222 -0.105092 0.627477 0.367299 -0.124090 1.947476 0.538847 -1.264252 0.058979 -0.443664 -2.779508 0.589856 3.008152 3.942528 0.170276 0.213194 -0.200280 0.620807 1.059778 1.165972 0.511579 0.892653 0.323559 1.742156 -2.712153 0.128342 -6.996116 0.023951 -8.756346 -1.952340 -1.749742 3.261859 -0.282181 -0.325712 -0.458778 3.273959 0.336891 0.682277 2.601963 3.735592 -1.377423 -1.206674 -2.248954 -2.156410 1.856817 -1.623646 -0.107072 1.406146 1.063061 -2.193695 -1.632430 1.119827 -0.050579 -1.238539 -0.063046 -0.232452 2.973103 -3.413942 -0.450152 -2.407167 1.202157 0.845401 -4.455851 0.246531 -2.613129 3.043419 0.153498 -0.814289 -0.905836 0.454316 1.674297 -1.240758 0.331839 -2.909198 3.329148 0.711166 -0.046363 0.098301 0.005567 0.206865 1.561059 2.237393 -2.017028 -0.620565 0.954002 -2.318121 -0.485138 -3.215179 -0.647994 3.052346 -2.145380 0.334004 0.659215 -1.952378 -1.767566 1.682798 -0.698282 1.985452 8.353165 -0.362390 2.251072 1.258091 -2.618586 1.772140 0.614602 -0.169456 1.405292 2.378674 0.698296 -2.913565 -2.507469 0.818024 3.088865 2.206801 -2.989868 -1.158923 -0.977298 -0.525194 0.057975 0.406306 0.522662 -1.212274 -1.705466 -0.872352 1.387608 4.097296 -0.326469 -3.219015 0.180133 1.551643 -1.402418 -2.765569 -0.314388 -0.347815 0.554198 0.132547 -0.444049 2.180896 3.791536 -8.327184 3.011164 0.073681 -0.081908 1.971412 -0.319636 -1.280379 -5.035798 0.522478 2.435986 3.778962 0.158130 -0.373383 0.957997 -2.900587 -0.289516 0.284451 1.672944 -1.371321 1.366324 0.597297 -1.916680 -1.972864 -1.574404 -0.588470 -0.138674 -0.875859 1.342877 0.004808 -6.658229 3.369398 -1.202767 -0.781564 0.141913 -0.643231 1.390432 -3.317262 -3.415985 0.785894 0.078103 -2.249546 -2.834623 -0.009891 2.526765 -0.935971 0.638292 -1.486712 -3.744554 2.346002 -1.745036 2.002043 1.280524 0.426642 3.760161 1.446034 -0.514790 -2.911114 -0.428799 0.987867 -1.203823 -1.583798 0.360504 -0.750414 1.871635 3.607944 -0.507878 -0.491989 0.163582 3.854183 -2.268710 -2.014861 1.906420 0.558977 -0.923198 2.419417 2.417381 -3.725375 -1.689391 -2.463301 -0.949856 0.372004 -2.260454 1.854140 -1.442081 1.064726 1.003284 0.453006 -1.410244 1.708985 0.634448 -0.190053 0.167139 3.989228 5.440014 -1.997162 1.100542 -2.541836 1.538295 -4.192786 -2.474746 -0.186181 -0.407000 -0.724438 0.984584 -0.302832 2.344532 0.181628 0.273483 -0.751761 0.567921 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.398091 -0.047478 0.798583 -0.925319 0.628319 0.208091 0.262225 -0.388846 -0.783032 -0.299414 0.048903 -0.540570 -0.371425 1.085847 -0.518050 0.411556 1.540916 0.511492 -0.315859 -0.544518 1.003474 -0.849208 1.322628 1.335000 -1.144703 -0.117419 0.733994 0.834303 0.650351 0.786574 -0.647241 -0.264146 0.330731 -0.760822 0.453263 -1.068594 0.202603 0.130398 0.226589 -1.584498 0.158957 -0.452113 -0.028336 -0.123435 -0.178812 0.913503 0.954267 0.854368 -0.438616 0.213448 0.915396 0.125489 -0.109720 0.244779 0.331472 0.433849 1.005259 0.687035 -0.351817 -0.078543 -0.217460 -0.805635 0.422660 1.060756 1.325874 0.070250 0.148506 0.300147 0.171478 0.164795 0.387077 0.174358 0.009745 0.230164 0.569345 -1.750467 0.293806 -2.514155 -0.287704 -2.598012 -0.557877 -0.569515 0.349565 -0.858856 0.484991 0.298352 1.085963 0.110761 0.151778 0.429709 1.269308 -1.021594 -0.433030 -0.670269 -0.681847 0.302267 -0.619040 0.013932 0.652463 0.013954 -0.735808 -0.845296 0.720605 0.420083 -0.373190 -0.274690 -0.058662 0.999295 -0.989503 -0.704300 -0.787145 -0.015354 -0.271114 -1.512819 0.390066 -0.891970 1.360543 0.021028 -0.297022 -1.020070 0.193109 1.085821 -0.353428 -0.468453 -0.258364 1.066768 0.482714 0.095885 -0.009584 -0.237118 0.058490 0.956012 1.146194 -0.665245 -0.202433 0.209185 -1.125818 -0.114431 -1.042523 -0.361364 0.982991 -0.855719 -0.049797 0.603655 -0.638038 -0.141474 1.693200 -0.064661 0.687235 3.104380 -0.168502 0.745142 0.337824 -1.084647 0.594424 0.032077 0.010529 0.436406 0.762103 0.210423 -1.829722 -0.932150 0.381624 1.000035 0.721732 -1.363321 -0.840172 -0.573158 -0.107115 0.176060 -0.138806 0.244328 -0.506168 -0.625631 -0.300136 0.349361 1.763673 -0.614449 -1.034169 0.245745 0.010025 -0.683171 -1.585220 -0.324650 -0.524899 0.274199 -0.232907 -0.114252 0.692302 1.294289 -2.759528 0.984194 -0.507565 -0.386121 1.043599 -0.015506 -0.456962 -1.574248 0.202265 0.809195 1.102250 0.120789 -0.122664 0.423232 -0.987139 -0.069644 -0.089016 0.611991 -0.432566 0.443571 0.390372 -0.943315 -0.780925 -0.185056 0.009967 -0.444228 -0.018681 0.491481 -0.338535 -2.322841 1.163795 -0.224620 -0.257286 0.498993 -0.130835 0.479759 -1.147490 -1.186992 0.478562 0.180275 -0.042334 -0.851044 0.065378 0.861218 -0.227460 0.095001 -0.706532 -1.458519 0.364516 -0.670444 0.675361 0.358192 0.254854 1.209002 0.085851 -0.167160 -1.235582 0.222601 -0.119863 -0.237996 -0.678403 -0.514713 -0.169105 0.952152 1.198971 -0.083718 0.137206 0.096198 1.232020 -1.213693 -0.487503 0.664802 0.864690 -0.613899 0.343349 0.771642 -1.187913 -0.629942 -0.460128 -0.626948 -0.018284 -0.782393 0.586549 -0.491723 0.431641 0.242360 0.248060 -0.211960 0.544780 0.210085 0.238325 0.058270 1.199539 2.087436 -0.736749 -0.121756 -0.896339 0.516987 -1.415409 -1.013498 0.197870 0.174141 -0.443286 0.319409 0.261058 0.944600 0.062256 -0.053923 -0.005372 -0.198643 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -1.101263 0.622882 0.997065 -2.191569 1.901306 1.424137 0.636900 -0.877827 -1.480314 -1.196516 -0.203431 -1.827374 -1.536282 2.934535 -1.087140 1.111879 3.965570 0.737866 -0.565694 -0.652066 2.659103 -1.243309 3.452965 3.006927 -2.794927 -0.364187 2.095461 1.592197 0.676309 1.726492 -0.636772 -2.287215 1.024406 -1.590350 0.811344 -2.226501 0.587833 0.015194 0.616257 -3.963740 0.393699 -0.641512 -0.518819 -0.629774 -0.832586 0.762681 3.208926 2.290236 -1.373922 -0.130771 2.104912 1.226721 -0.761713 0.701658 0.374596 0.499004 0.839416 0.738157 -0.950793 -0.700969 -0.473662 -1.411683 0.516930 2.730296 3.288711 0.314885 0.406170 1.389630 -0.197918 0.616574 0.296197 0.455258 0.497255 0.795995 1.459528 -3.681747 -0.551742 -6.256399 -0.746769 -6.418527 -1.492454 -1.537558 0.521307 -0.915763 1.246863 0.297230 2.823698 0.193631 0.656263 2.226416 3.950322 -2.346168 -0.997580 -2.445467 -1.846174 1.034283 -1.524136 0.248102 1.150301 -0.288071 -2.076373 -2.645074 0.903427 0.930651 -0.939536 -1.940874 0.020600 2.318089 -2.377667 -1.498229 -1.868923 0.302109 -0.673984 -4.382573 -0.191176 -1.715871 2.439942 0.087345 -0.528845 -3.008044 0.389618 2.668949 -0.845500 -1.613597 -0.058122 2.342848 1.444666 0.245446 0.382743 -0.391306 0.646511 3.269276 2.703729 -1.370141 -0.528308 0.060946 -1.982593 -0.448296 -2.363431 -0.737615 1.770049 -2.329430 0.336471 2.435382 -1.576818 -1.017591 2.920594 -1.103959 1.925222 8.588611 -0.506252 1.836643 0.898642 -3.375879 1.215686 -0.521344 -0.888164 0.572924 1.786511 1.103540 -3.827763 -2.304010 1.399936 2.600627 1.955101 -2.768948 -1.559332 -1.175831 -0.333792 -0.294013 -0.296042 0.788638 -0.965724 -1.791198 -0.791081 1.990841 4.516652 -1.427041 -2.096427 1.261888 1.700329 -1.119247 -3.163180 -0.921970 -1.952571 0.363443 0.635240 -0.506355 1.766951 3.468452 -6.248484 2.291929 -0.422336 -0.651735 1.554064 0.295206 -1.404973 -3.584069 0.855305 3.014685 2.687579 -0.224095 0.730982 0.075496 -2.389924 -0.195819 0.295435 1.358460 -0.938623 1.062118 0.302569 -2.536028 -2.298883 0.054497 -0.638965 -1.287078 -0.266170 1.098158 0.171786 -5.399254 3.812389 -0.586120 -0.441035 0.814279 -0.846466 2.218607 -2.905095 -3.587571 1.567406 -0.039061 -0.287717 -1.097937 0.304419 2.279022 0.146229 0.750386 -1.383243 -3.771119 1.170042 -0.646399 1.758573 0.931867 1.261480 3.027489 -0.833936 -0.747893 -3.197172 -0.952008 0.471838 -0.111710 -2.198531 -1.447793 -0.453524 2.528533 3.047093 -0.525841 -0.934849 -0.190436 2.711462 -3.092379 -0.778116 1.861842 1.940799 -2.294460 0.352973 2.202335 -2.617465 -1.630184 -1.540225 -0.057088 -0.498785 -2.901892 0.649739 -1.209407 0.717395 1.232904 0.032439 -0.657776 1.297518 0.941351 0.738110 0.013555 2.631639 3.880725 -2.034138 -0.430585 -2.377493 0.987268 -4.095485 -3.331263 1.004225 -0.067671 -0.677838 0.362134 0.224363 2.085311 -0.452982 0.782241 -0.042537 -0.696692 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = -0.426238 -0.408402 0.652336 -1.334707 0.999186 0.243716 0.495221 -0.120347 -1.662590 -0.570646 0.410913 -1.580048 -0.722806 1.798459 -0.489729 0.714897 2.379144 0.653079 -0.627164 -0.434879 1.249205 -0.880654 1.929189 1.948236 -1.485725 0.033440 -0.042605 0.991741 0.462555 1.027318 -0.310918 -0.889412 0.518827 -0.858563 0.310781 -1.209009 0.143956 0.344217 0.344629 -2.528452 0.365047 0.582556 0.417551 -0.334043 -0.165543 1.129661 1.323457 1.275527 -0.545783 0.591378 1.207513 -0.098978 0.049088 0.344028 0.478799 0.160167 0.912779 0.473757 -0.959027 -0.177316 -0.250161 -1.159967 0.203261 1.308579 1.901534 0.003847 -0.063387 0.258555 0.279166 0.420301 0.880288 0.195414 0.202536 -0.105037 0.884062 -1.320171 0.025100 -2.894622 -0.192760 -3.982732 -1.042060 -0.315936 1.832493 -0.084054 0.254495 -0.398105 1.521453 -0.182498 -0.101217 1.092972 1.835740 -1.041362 -0.843806 -1.018647 -0.907958 0.699488 -0.840176 -0.188092 1.199459 0.200211 -1.271828 -0.559652 0.805938 0.320775 -0.546399 -0.215561 0.109373 1.439590 -1.535180 -0.736689 -0.805189 0.779263 0.230945 -2.223752 0.080684 -0.929874 0.773942 0.331604 -0.675126 -0.736058 0.360274 0.610761 -0.713369 -0.198008 -1.096888 1.699595 0.321445 0.517253 0.235214 0.150408 0.375031 1.348449 0.893557 -1.051652 0.016265 0.247803 -0.799335 0.387099 -1.208723 -0.792906 0.998974 -1.326282 0.168141 0.353808 -1.027083 -0.335628 0.773557 0.405082 0.581801 4.068397 -0.083778 1.631500 0.792764 -1.299836 1.192231 0.011391 0.043380 0.465273 1.007356 0.118803 -1.645776 -1.295813 0.731144 1.594172 1.182087 -1.824405 -0.585908 -0.339258 -0.009756 0.182558 0.135796 0.415711 -0.034829 -1.059234 -0.358388 0.777219 2.715409 -0.525539 -1.408136 0.445542 0.463132 -0.593954 -1.823708 -0.359018 -0.643930 0.325942 -0.149429 -0.077710 0.993699 1.965973 -3.606776 1.572138 -0.246339 -0.228452 1.480712 0.073527 -1.115866 -2.553071 -0.265548 0.940797 2.013642 0.198009 -0.252063 0.608172 -1.366971 -0.148649 0.103564 0.349582 -0.452153 0.670093 0.015672 -0.803497 -0.814337 -0.612560 -0.372354 -0.157213 -0.381520 0.849805 0.345017 -2.785902 1.429639 -0.178410 -0.576643 0.088572 -0.131619 0.774176 -1.475349 -1.595735 0.525886 -0.241385 -1.131667 -1.232359 0.017380 0.857206 -0.067160 0.098020 -0.643757 -1.919400 1.375699 -0.865799 1.281723 0.682934 -0.161887 1.426484 1.071120 -0.463202 -1.292698 -0.412110 0.121068 -0.717542 -0.978543 -0.111565 -0.436052 1.204275 1.327709 0.100029 -0.462636 -0.272449 1.775952 -1.133372 -0.793404 1.181031 0.088056 -0.863248 0.900436 1.418791 -1.861995 -0.271172 -1.060551 -0.621863 -0.244239 -0.954635 0.849706 -0.257253 0.650961 0.146851 0.193523 -0.383467 0.613483 0.275629 -0.144982 -0.019368 2.216625 2.276741 -0.966604 0.275628 -1.467086 0.848424 -1.877286 -1.558988 0.307897 0.242597 -1.109599 0.329228 0.393417 1.281648 0.183166 -0.295819 -0.548816 0.379896 +PE-benchmarks/trie-suffixes.cpp__main = -6.619151 1.684299 10.190944 -13.289438 22.309974 7.874150 8.711605 1.238936 -11.456540 -8.454877 -1.374664 -10.616671 -19.512627 22.805344 -6.546299 12.990166 21.972518 1.029931 -2.849265 -4.305397 22.826782 -13.695300 25.629533 9.466917 -25.178087 -1.782202 3.245185 14.715795 1.456941 22.010736 -4.730013 -12.269091 7.488636 -9.283851 10.763337 -11.624085 9.194934 0.729080 -5.245175 -26.848009 -0.130192 11.708045 -1.910028 -2.145210 -5.121797 13.395150 18.023514 20.062411 -12.794895 3.459201 14.477101 -2.678217 -0.077468 8.429476 -2.121054 1.087708 3.482744 -0.640593 -19.494326 -4.918840 -4.036877 -24.774448 6.144611 15.760353 26.134936 -6.159174 5.292597 16.353429 -7.667238 7.194656 6.112313 4.084831 5.114809 -3.437171 21.157401 -10.925890 -8.488138 -25.957745 -7.880765 -47.802618 -15.128094 -18.630882 10.791097 4.373793 10.358408 -8.019716 25.590530 3.520432 2.605127 16.771711 24.424682 -18.607813 -8.147532 -28.702524 -9.100763 5.406719 -16.588973 -9.251234 14.885054 -2.323610 -16.034850 -10.336304 4.430077 4.533140 -5.069628 -13.557743 -9.880670 21.449008 -22.234900 -15.510696 -20.498735 5.023729 -6.350258 -31.618312 4.879537 -1.817610 10.137325 2.248927 11.304837 -8.785776 3.968880 20.069680 -6.376724 -11.546382 -9.547931 25.777450 9.697293 -0.436326 11.195721 5.266556 -0.978332 16.089692 27.297056 -4.072639 -15.802011 5.232889 -10.849523 3.236947 -10.625808 -3.519978 12.778889 -21.460946 -2.900755 11.216169 -6.351459 -2.156253 0.833852 -4.907594 18.778833 38.167481 -1.089316 11.609052 0.231935 -22.132112 18.983874 -0.688718 -5.288028 7.874281 12.152743 -0.478076 -18.052834 -17.965897 11.053361 14.296048 13.032679 -20.167573 -6.608432 -10.827411 3.472736 -3.907747 -5.687425 17.429119 -1.959953 -14.266496 -2.698213 2.347064 33.171086 -13.880114 -19.334182 19.819230 8.166331 -13.312545 -23.911076 -10.616419 -8.253389 -7.652337 -0.410765 -4.361621 7.550738 25.771688 -31.942341 18.267013 -2.347843 -7.128032 14.982202 -10.267577 -4.067448 -28.551008 -1.438679 18.628865 19.782991 -0.544811 -1.273309 -1.626638 -16.404376 8.498511 -0.477177 7.965970 1.766167 7.214867 -9.563405 -13.154287 -18.709442 -10.028893 -7.616812 -1.358530 -1.379201 3.268264 8.908620 -33.893133 23.061315 -12.661404 -7.372665 9.411549 7.140139 16.719382 -15.163290 -26.308967 12.213973 -2.254263 -15.657337 -19.618704 5.081949 12.862399 1.299791 -8.633755 -5.641892 -30.199884 13.361129 -6.219904 8.517750 6.223652 9.349375 26.391844 15.752402 -17.171756 -18.642870 -13.669747 0.392041 -8.440590 -10.339070 -4.783300 -1.706750 19.732089 17.857267 1.897150 0.682811 -8.076651 24.653158 -18.972429 -13.479058 22.590753 1.145403 -11.844323 8.948930 24.732271 -15.887689 -15.857145 -14.191113 6.102673 -3.627097 -16.424776 2.706392 -11.643294 2.239829 8.668213 4.104195 -9.329140 5.514634 5.443126 -0.896143 -16.640020 33.641929 27.864092 -23.485180 1.460701 -12.729395 9.372908 -25.342146 -15.815196 3.605446 3.041863 0.615022 11.673476 11.359513 13.079622 -1.337339 -5.344083 -2.179218 -15.150327 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -0.878517 0.686375 1.457637 -3.515794 4.023601 2.768708 1.437927 -0.804103 -2.554079 -1.742110 0.277334 -3.364203 -2.726668 4.167223 -1.654208 2.000569 4.774612 0.002763 -0.898511 -0.332941 3.734519 -0.659906 5.185947 3.227636 -4.624289 -0.025510 0.239473 2.217966 0.063262 3.788570 -0.199541 -3.556857 1.392105 -1.587136 1.086083 -1.781579 0.739247 -0.238218 0.115279 -5.150556 0.347916 1.979712 -0.454385 -0.458753 -0.697242 -0.154771 4.462025 3.410911 -1.806216 0.375164 2.837347 1.045931 -0.125238 1.361543 0.540954 -0.054861 0.830331 -0.904866 -2.541821 -1.311115 -1.078125 -2.474945 0.563955 3.615949 4.466789 0.081218 0.499653 1.769492 -0.894627 1.140498 1.335896 1.120276 0.316355 0.629084 2.871482 -2.214672 -0.509968 -4.907642 -0.869075 -7.020531 -2.674829 -2.362404 2.075904 2.128075 2.099588 -1.340757 4.254455 -0.032767 0.559535 3.239335 4.878921 -2.897403 -1.348769 -4.030589 -2.576752 0.964809 -2.180156 -0.502336 0.937642 0.021472 -3.162620 -1.578372 0.503851 1.013939 -1.074906 -2.051866 -0.512821 3.445535 -3.842719 -2.093977 -2.105393 1.978688 -0.895719 -6.274441 -1.457944 -1.347181 1.164049 0.089077 0.288384 -2.512478 0.762901 3.118825 -1.433396 -1.655067 -1.894988 3.817009 2.224927 0.979788 1.113150 0.558370 0.608748 4.097415 3.224363 -1.078212 -1.115232 -0.121746 -0.736366 0.551672 -1.590473 -0.609557 0.892331 -3.583284 -0.189927 2.968888 -1.546020 -0.774185 -0.766957 -0.722001 2.704975 10.626277 -0.783895 3.402696 1.406020 -4.402820 2.082206 -0.152006 -0.777766 0.958769 1.926278 0.700496 -3.706969 -3.334175 2.415561 3.239959 2.435325 -3.303737 -0.210497 -1.005260 -0.255551 -0.530270 -0.648735 1.678209 -0.294218 -3.012083 -0.677567 2.148215 6.341172 -1.572292 -3.786773 2.921578 2.068343 -1.449992 -2.506633 -1.665937 -2.050606 0.106102 1.283554 -0.706906 1.986100 4.851511 -6.488928 3.457518 0.147970 -0.840665 3.002512 -0.531762 -1.696136 -3.778055 -0.191812 3.523381 3.403113 -0.501043 -0.094356 -0.029491 -3.078263 0.778708 0.522126 1.172014 -0.765010 1.412709 -0.529652 -2.847260 -3.312501 -1.634399 -1.411877 -0.247103 -1.405382 1.264975 0.982500 -5.995234 4.425263 -0.618257 -1.337056 0.956640 -0.550045 3.293308 -3.176689 -4.552605 1.986317 -1.100815 -2.666426 -1.903920 0.598488 2.106497 1.112898 0.376916 -2.278472 -4.479675 2.684673 -0.812632 2.614129 1.808163 1.587369 3.850272 1.454468 -2.077133 -3.306267 -3.192965 1.376012 -0.380514 -3.088684 -1.052881 -1.080457 3.388485 3.575748 -0.127036 -1.450230 -1.326319 4.013391 -3.051103 -1.521860 3.565666 -0.275135 -3.299478 0.758011 3.959882 -2.703090 -1.857442 -2.430246 0.770750 -1.057633 -3.448645 1.132272 -1.140998 1.226230 1.257778 0.402517 -1.710176 1.112373 0.777101 0.379880 -0.970992 4.957198 3.356323 -2.803890 0.119762 -3.091378 1.769916 -5.214545 -4.131920 1.320595 -0.522031 -0.807077 1.135502 0.499264 3.127360 0.150991 0.090582 -0.253666 -0.768666 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = -1.402963 1.047871 2.389125 -3.953359 4.806641 2.133123 1.985101 -0.025835 -3.136078 -3.524487 0.205321 -5.213520 -5.210323 5.808038 -2.256844 1.475780 7.049806 0.645611 -0.667934 -0.850739 4.215724 -1.316245 7.102278 5.067263 -6.351112 -0.333811 0.041755 3.137013 0.253365 4.456854 0.526213 -5.542250 2.351640 -0.689670 2.353784 -2.404430 1.319085 -0.324046 -1.365840 -7.514448 0.309604 3.440870 -0.027321 -0.657687 -0.644724 2.107765 6.372894 4.800764 -2.693376 0.468359 3.716692 1.266748 0.100724 1.911657 0.170571 -1.593406 0.361348 -1.947606 -4.146450 -1.085043 -1.389472 -4.846088 -0.130637 4.978837 6.768229 0.085390 0.823948 1.642392 -1.426957 1.965085 1.593008 1.354584 2.587093 0.884249 4.224701 -1.492802 -1.583232 -7.705168 -1.386209 -12.475523 -3.889037 -3.833589 4.387709 3.320762 1.402097 -2.920013 5.846877 0.965565 1.144183 4.888930 7.509029 -3.524038 -2.346199 -5.715439 -2.912763 2.177359 -3.616504 -0.120252 1.732372 0.276979 -4.563677 -2.314116 0.499380 0.385017 -1.471253 -2.269069 -0.908645 4.791966 -5.586665 -1.681097 -4.395106 1.709732 0.378544 -8.605173 -0.550829 -1.557158 1.489234 0.989280 0.191164 -1.901252 1.045550 3.153692 -1.966741 -1.451827 -4.704436 6.135285 2.162845 0.972094 1.762467 1.477197 1.072158 4.434232 4.030944 -1.674949 -1.803811 0.044451 -1.841664 0.537335 -3.125409 -0.996579 3.413093 -4.545043 -0.227190 2.631381 -2.554512 -2.134327 -1.946526 -1.662536 4.139642 11.947273 -0.868569 4.131584 1.733269 -5.741226 3.802786 -0.421461 -1.176842 1.117988 3.363068 1.329192 -3.285730 -4.573465 3.168004 4.743013 3.490572 -4.255825 0.137543 -1.176297 0.354591 -1.677126 -0.261981 2.827850 -0.530659 -3.949576 -0.817875 3.305085 7.631356 -1.940205 -4.603523 3.255638 3.480764 -0.690457 -3.324928 -1.752742 -1.493154 -0.055237 1.383499 -0.548624 2.590315 6.865864 -9.596339 4.891289 0.864011 -0.365554 3.460331 -1.149107 -2.538629 -6.612752 0.713741 5.250694 4.893052 0.396220 0.220413 -0.271034 -4.487277 0.748194 0.579033 2.306069 -0.904724 1.948355 -1.361382 -3.371771 -4.969765 -3.290841 -2.105962 -0.252090 -2.021469 1.829412 3.231012 -8.655930 6.471143 -1.680499 -2.065355 -0.015285 -0.839766 4.073627 -5.129954 -6.500325 1.995986 -2.647146 -5.366432 -3.677660 0.718797 2.594804 0.224995 -0.189206 -2.135376 -6.238395 5.060136 -1.027452 3.492323 2.321727 2.331424 6.006950 3.953291 -3.226382 -4.073220 -4.271387 2.347894 -1.940885 -3.952436 0.379762 -1.178607 4.183683 5.664305 -0.588227 -2.001456 -1.435923 5.512267 -3.983724 -3.187736 5.162822 -0.678458 -3.078365 2.464638 5.549166 -4.578268 -2.994743 -4.271654 0.949000 -0.967914 -5.162124 1.011348 -2.650581 1.244109 2.234021 0.322813 -2.837763 1.734969 1.081906 -0.335276 -1.590367 7.333280 5.719843 -4.497541 1.345979 -4.645392 2.481832 -7.540994 -5.676359 1.522150 -0.683042 -0.736732 1.575495 0.642478 3.388279 -0.016100 -0.177708 -1.641923 -0.457579 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -1.532584 -0.334749 1.815953 -5.163527 5.227369 3.394916 2.007901 -1.292476 -4.319342 -1.715128 0.999751 -4.077198 -3.227657 5.750790 -2.298827 3.145808 5.958302 0.001612 -1.982651 -1.032905 5.840514 -1.075820 6.948807 4.164172 -6.368623 -0.168305 -0.120984 3.647791 1.134855 4.672013 -0.156820 -3.202497 1.552440 -2.484144 1.347358 -2.616390 1.409558 0.497207 0.400613 -6.735638 0.584674 2.473447 -0.084671 -0.574389 -1.105184 0.985573 4.625449 4.888470 -2.433580 0.849722 4.617726 0.968882 -0.239369 1.752171 0.542757 0.018998 1.648015 -0.596583 -3.137256 -2.132060 -1.078154 -3.336888 1.377087 4.829614 6.312165 -0.281202 0.711129 2.764577 -0.560802 1.812972 2.571602 1.348657 -0.365661 -0.150273 4.142301 -3.273534 -0.504792 -6.747647 -0.775469 -9.700591 -3.348635 -2.625672 3.467968 2.016089 2.706966 -1.408357 6.057751 -0.033531 -0.326045 4.678747 5.641155 -3.737642 -1.743331 -5.324862 -3.732645 1.350154 -3.202382 -0.925672 1.877163 1.010988 -4.114705 -1.524539 0.477857 1.410087 -1.562215 -2.698159 -1.010681 4.722538 -5.207741 -2.778460 -2.048783 3.749057 -1.008857 -8.206728 -1.985259 -2.855043 2.173804 -0.660935 0.809960 -2.455792 0.761767 3.945169 -1.986826 -1.867266 -2.660413 4.799850 3.092428 1.243109 1.275644 0.745645 0.249535 5.174815 3.960133 -1.973624 -1.937616 0.305923 -1.074630 1.466652 -2.459256 -0.726499 1.939914 -4.849632 0.081053 3.296856 -1.741974 -1.203606 -0.130189 -0.197538 3.287837 14.019539 -0.399222 4.792938 2.210807 -5.124147 2.654545 0.006978 -0.294490 2.285103 2.402370 -0.393546 -4.911454 -4.831048 3.174756 4.257702 3.300368 -4.858081 -0.517759 -1.116372 -0.352562 -0.528822 -1.055067 2.330664 -0.578398 -3.723391 -1.085334 2.241004 8.366228 -1.917910 -4.428302 4.115576 2.687244 -3.082430 -3.633441 -2.457163 -2.349196 0.013909 1.487630 -0.685727 3.043734 6.572366 -8.723930 4.615755 0.178773 -0.743586 4.030881 -0.927932 -2.342881 -5.405424 -0.918707 3.756655 4.916086 -1.135515 -0.626533 0.900534 -4.398395 1.341612 0.605373 0.999932 -0.892947 1.854308 -0.496505 -2.983425 -4.035141 -1.917252 -1.986706 0.377481 -1.406675 1.817177 0.258497 -7.988032 5.321875 -1.387300 -1.829876 1.349166 -0.226444 4.327251 -3.886229 -5.641996 2.910107 -0.558648 -3.509625 -3.663716 1.145135 3.254144 1.130448 0.717495 -3.258169 -6.084656 3.679622 -2.038400 3.474443 2.097390 1.364409 4.804212 1.562224 -2.443524 -4.889084 -3.616396 1.194586 -0.380457 -4.077830 -0.809301 -1.081950 4.516085 3.930103 0.130992 -1.757721 -1.112026 6.125614 -3.839980 -2.589474 4.466142 0.095856 -4.371171 1.959610 5.237644 -4.109882 -2.197969 -3.411948 0.472662 -1.313239 -4.195050 2.526606 -0.590811 2.336152 1.053485 1.331731 -1.793540 1.749691 1.308193 0.299704 -1.455645 7.677038 5.236555 -3.426355 -0.221379 -4.262815 2.531281 -6.364598 -5.010192 1.548609 -0.613478 -1.328100 2.062951 0.644141 4.978929 0.704613 -0.342450 -0.429391 -0.924399 +PE-benchmarks/optimal-binary-search-tree.cpp__main = -1.049169 -0.932678 -0.305423 -2.536121 2.278310 2.156838 1.185319 -1.289199 -3.347643 -0.649506 1.376188 -4.067116 -1.218291 3.691899 -1.011497 2.569510 4.759631 0.604269 -1.723161 -0.284486 2.844714 -0.229097 4.642380 4.086572 -2.668143 -0.008866 -0.789708 1.202239 0.286089 0.693294 0.340793 -1.987551 1.677036 -2.714651 -0.798107 -1.489564 0.230401 0.605598 2.156003 -4.807541 0.708444 0.831636 0.479238 -0.871431 -0.847461 0.730256 2.709075 2.749868 -0.292343 1.118740 2.239160 0.119921 -0.051625 0.822393 0.744387 0.061157 0.387495 -0.204385 -1.766276 -1.336676 -0.371253 -0.999330 0.011224 2.801880 3.746578 0.454915 -0.316543 1.618777 0.442345 0.890797 1.687372 0.620375 -0.275920 0.312665 1.371679 -2.894821 -0.502651 -4.568901 -0.705314 -5.920318 -2.151939 0.093583 3.185016 0.797993 1.370614 -0.340805 3.122040 -0.400337 -0.853508 3.069719 3.947034 -2.647790 -1.688110 -1.870963 -1.513465 1.016164 -1.566587 0.481295 1.996011 0.690799 -2.917638 -0.987287 1.043294 1.047091 -1.113990 -1.889251 0.732925 2.558148 -2.531527 -1.811750 -0.321817 2.569364 -0.056772 -5.080559 -1.110746 -1.570096 0.968299 0.550753 -1.415589 -2.347174 0.606353 0.996708 -1.108491 -1.107176 -1.068158 2.387593 1.399343 1.462249 0.550256 1.019533 1.161099 4.618497 0.713645 -1.876411 0.469298 -0.205935 -0.365703 1.620217 -1.618991 -1.580116 0.300115 -3.148553 1.300479 1.932181 -1.906733 -0.984608 0.410733 1.235394 0.606802 9.125529 0.064109 4.058218 2.542262 -3.095363 1.541078 -1.494641 0.048956 0.646375 1.444590 0.026899 -3.622207 -2.807108 2.103740 3.426567 2.370189 -3.524804 -0.347250 -0.049453 -0.060106 -0.342095 0.236300 1.037850 0.500931 -2.142187 -0.643614 2.882127 6.402355 -1.254007 -0.844002 1.702496 1.266709 -0.509461 -3.410705 -1.253540 -1.622581 0.577753 1.171212 0.425486 1.732778 3.999636 -4.881261 2.853163 -0.176975 0.174290 2.706945 1.178718 -3.213589 -3.744491 -0.958581 2.118455 3.677315 -0.479786 -0.164818 0.987805 -2.758688 -0.325986 0.839285 -0.075949 -0.632202 1.372929 -0.025828 -1.399168 -1.570564 0.138414 -0.969876 -0.241649 -0.584607 2.075551 0.783875 -4.228691 3.106951 0.129231 -1.505135 0.004690 -1.008314 2.952774 -2.559841 -3.035843 1.755069 -0.957574 -1.990961 -1.424675 0.280403 1.473527 0.951714 1.325468 -1.658623 -3.153471 2.936713 -0.972918 2.801311 1.404128 -0.249056 2.021442 -0.279918 -1.391001 -2.549269 -2.598678 0.401226 -0.333562 -2.862412 -0.062170 -0.880350 2.865405 2.076829 0.260787 -2.807894 -0.331132 3.261358 -2.579447 -1.072909 2.303512 0.778056 -3.102738 1.091119 2.802661 -3.444048 0.281951 -1.708572 -0.386433 -1.385559 -2.459813 1.578422 0.384985 1.656148 -0.059679 0.342542 0.047459 1.249702 0.811224 0.487212 0.410265 4.353733 2.791863 -1.244247 -0.472233 -3.346816 1.654718 -3.775128 -4.033977 1.646378 0.655241 -2.393660 0.137289 0.520053 2.996339 0.459652 -0.952687 -1.311301 0.940433 +PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -0.808931 -0.945783 -0.198004 -1.686424 1.011909 0.977611 0.531009 -1.036264 -2.028231 0.007319 0.547744 -1.370111 0.073726 2.009333 -0.608285 1.975929 2.673356 0.698944 -0.939494 -0.326078 2.395826 -1.041081 2.511876 2.363035 -1.509132 -0.225438 0.285751 1.270020 0.626880 0.735343 -0.332769 -0.481668 0.825324 -2.519722 -0.264869 -1.964498 0.401647 1.042941 1.898499 -2.788597 0.500404 -0.323342 0.435849 -0.424886 -0.599532 0.328250 0.827451 1.575138 -0.564386 0.766733 1.669533 0.096766 -0.253740 0.464537 0.354466 0.884583 0.575036 0.678549 -0.535495 -0.719257 -0.168054 -0.699524 0.906782 1.488947 2.439594 0.029350 0.096714 1.109916 0.377940 0.289096 1.129997 0.192431 -0.800076 -0.361048 0.810494 -3.346596 -0.004823 -4.103930 -0.366553 -3.729069 -0.893918 0.020360 0.922840 -0.597940 1.259120 0.373179 1.615789 -0.392728 -0.421127 1.461702 1.592142 -1.764813 -0.748522 -1.121289 -1.128603 0.535167 -0.951442 -0.157914 1.211919 0.238562 -1.272799 -1.169650 1.015477 1.027273 -0.603938 -1.545151 0.301481 1.545064 -1.416713 -1.885890 -0.164184 1.166486 -0.853962 -2.725823 0.150987 -1.798274 1.382004 -0.052456 -0.562153 -1.826630 0.184406 1.224389 -0.440709 -1.117204 -0.079837 1.390946 0.988973 0.519422 0.086457 -0.218445 -0.018212 2.887731 0.991782 -1.238445 0.004587 0.334116 -1.179227 0.555513 -1.726708 -0.968896 0.981640 -1.959713 0.132805 1.242369 -1.011994 -0.139947 2.792183 0.694396 0.560788 6.437536 0.222005 2.227717 1.534246 -1.622716 1.114398 -0.342125 0.355262 0.898857 0.907932 -0.279444 -3.670025 -1.618897 0.629155 1.603865 1.376512 -2.320126 -1.702236 -0.607016 -0.020516 0.432217 -0.341480 0.406860 -0.319476 -1.309938 -0.313072 0.915126 3.838739 -0.852493 -0.092220 0.849416 0.628240 -1.768341 -3.177374 -0.865487 -1.813765 0.295953 -0.200196 -0.011741 0.978121 2.127978 -3.573136 1.470823 -0.731917 -0.038342 1.484979 0.485368 -1.788796 -2.860942 -0.410542 0.813201 2.215983 -0.552794 0.531859 1.064306 -1.547667 -0.048985 0.142507 0.098714 -0.471728 0.704713 0.244012 -1.052084 -0.790368 0.799416 -0.527653 -0.836716 0.194349 1.077624 0.067488 -2.665382 1.333884 -0.185778 -0.626954 1.062249 -0.199653 1.725311 -1.604754 -1.655843 1.313247 0.441418 0.172046 -1.176003 0.384137 1.386403 0.271260 0.266434 -1.005551 -2.479203 0.791616 -1.181065 1.191112 0.625242 -0.333601 1.057111 -0.613663 -0.392089 -2.449268 -0.468965 -0.896347 -0.016335 -1.582566 -1.209147 -0.261227 1.806920 1.351201 0.336434 -0.938410 0.335670 2.325315 -1.889169 -0.350059 1.155415 1.390887 -1.878981 0.214169 1.419672 -2.394746 -0.105480 -0.545683 -0.312231 -0.161857 -1.117242 1.331028 0.192385 1.119465 -0.257052 0.512238 0.207727 0.826023 0.839668 0.544018 0.152496 2.663046 2.366481 -0.455149 -0.861656 -1.639444 0.488977 -2.029210 -2.071668 0.503430 0.675498 -1.574391 0.565351 0.756312 2.331741 0.330767 0.176490 -0.016063 -0.243418 +PE-benchmarks/n-queen-problem.cpp__main = -0.303694 -0.388213 0.059119 -0.812288 0.546232 0.194777 0.335051 -0.291624 -1.112257 -0.261360 0.353070 -1.049637 -0.197946 1.120806 -0.253526 0.744500 1.330879 0.375608 -0.502377 -0.155493 0.767673 -0.321241 1.144145 1.123698 -0.702233 0.065571 -0.336001 0.376545 0.166516 0.458762 0.025011 -0.468728 0.388994 -0.648320 -0.099892 -0.651868 0.035263 0.448798 0.505002 -1.423041 0.319617 0.393164 0.592275 -0.290503 -0.181243 0.266173 0.624318 0.786757 -0.080272 0.400413 0.607433 0.055125 0.074300 0.259429 0.332619 0.191739 0.322198 -0.250132 -0.516882 -0.272837 -0.132348 -0.438523 0.150537 0.755880 0.999661 0.069557 -0.095821 0.313827 0.199513 0.300411 0.628649 0.116360 -0.199387 -0.195804 0.289641 -0.809692 0.076583 -1.254229 -0.113852 -1.931671 -0.580838 0.123868 1.070510 0.402376 0.318742 -0.050823 0.879771 -0.239893 -0.260658 0.649584 0.965757 -0.664406 -0.464508 -0.415207 -0.497707 0.345149 -0.406783 -0.107672 0.511674 0.308276 -0.782074 -0.197912 0.423442 0.278350 -0.326734 -0.262063 0.242509 0.740028 -0.943479 -0.554181 -0.037028 0.733102 0.000543 -1.216411 0.075697 -0.618622 0.148035 0.098536 -0.468220 -0.548298 0.228126 0.192383 -0.384894 -0.174653 -0.811453 0.670016 0.126861 0.376387 0.088287 0.110626 0.153363 1.053853 0.153834 -0.706414 0.190323 0.075235 -0.140733 0.419950 -0.527332 -0.615127 0.192574 -0.917630 0.155281 0.284722 -0.590932 -0.193009 0.089828 0.436343 0.149427 2.015420 -0.001910 1.091382 0.727458 -0.757687 0.438660 -0.202288 0.097501 0.250314 0.500127 -0.064581 -0.658093 -0.849686 0.475177 0.951447 0.750631 -0.714282 -0.292029 -0.102328 -0.028960 0.220263 0.082339 0.166517 0.077433 -0.755109 -0.226437 0.452945 1.605089 -0.162213 -0.073433 0.394329 0.256100 -0.375613 -0.910295 -0.327251 -0.571628 0.213038 -0.029046 0.006451 0.509615 1.152468 -1.514342 0.964441 -0.220728 0.026134 0.698683 0.153675 -0.785202 -1.325896 -0.428231 0.450620 1.186835 -0.253659 0.040547 0.435499 -0.807106 -0.126183 0.057093 -0.025981 -0.281056 0.365123 0.070537 -0.407775 -0.302871 0.054254 -0.188513 -0.119187 -0.105270 0.589025 0.439362 -1.043862 0.741253 -0.029684 -0.330149 0.128610 -0.016147 0.621335 -0.692223 -0.731612 0.398793 -0.125483 -0.512433 -0.506754 0.092932 0.537626 -0.047657 0.076336 -0.307753 -0.719244 0.748189 -0.431150 0.767723 0.410675 -0.235311 0.443884 0.351956 -0.233779 -0.557542 -0.345009 -0.275565 -0.376163 -0.566523 0.100013 -0.288810 0.784719 0.627140 0.196322 -0.596729 0.120968 1.010172 -0.491987 -0.327032 0.696190 -0.155786 -0.673181 0.461535 0.851138 -1.049207 0.052903 -0.531169 -0.102551 -0.219297 -0.494675 0.639063 0.176663 0.472428 -0.106116 0.111811 -0.083641 0.386462 0.277952 -0.049812 0.104519 1.316596 0.636599 -0.191994 0.009292 -0.794469 0.335523 -0.989641 -0.810364 0.228938 0.371670 -0.847093 0.153453 0.067583 0.902470 0.151988 -0.065308 -0.303687 0.261501 +PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -0.837625 -1.002601 -0.480240 -2.077852 1.150755 1.112085 0.595764 -0.728367 -2.387052 -0.462739 0.653730 -2.133486 -0.088311 2.479245 -0.561395 2.133511 3.280480 0.575150 -1.000553 0.117335 2.408304 -1.044547 2.554480 2.481893 -1.638244 -0.221635 -0.379202 1.193265 0.201136 0.779819 0.450872 -1.225856 0.620497 -2.270062 -0.469800 -1.861370 0.517606 1.248580 1.720899 -3.513209 0.681399 0.722376 0.727554 -0.747127 -0.746472 -0.362682 1.089937 1.889901 -0.618455 0.555170 1.721467 0.416376 -0.328747 0.515301 0.223001 0.538549 -0.258591 -0.139910 -0.895858 -0.846780 -0.003369 -0.633104 0.808647 1.702488 2.501045 0.110857 0.082055 1.310171 0.317144 0.481997 1.279974 0.112832 -1.004478 -0.488544 0.803863 -2.709491 -0.328146 -3.519410 -0.117683 -4.000548 -1.143235 0.207095 1.672234 1.064978 1.146714 -0.217556 1.796256 -0.767079 -0.428073 2.309259 1.938889 -1.578255 -0.939543 -1.752034 -1.410965 0.959908 -1.047106 -0.402485 1.291244 0.529750 -1.572029 -0.823669 0.965956 1.099357 -0.686530 -1.783365 0.547495 1.659681 -1.712849 -1.950631 0.219485 2.139024 -0.641297 -3.052753 -0.238262 -1.772769 0.145795 -0.020779 -0.583266 -1.764936 0.129181 0.878317 -0.536473 -0.955495 -0.968110 1.704090 0.860514 0.678004 0.317842 0.091922 0.271625 3.113536 0.372551 -1.376235 0.152203 0.307327 -0.602430 0.686107 -1.612295 -1.267526 0.508307 -2.247176 0.162393 1.410421 -1.180046 -0.398099 1.160143 0.785075 0.636726 7.408516 0.353470 2.680434 1.894750 -1.854660 1.585981 -0.443010 0.062576 0.682488 0.796873 -0.278080 -3.293306 -1.823531 0.825212 1.897248 1.705300 -1.890594 -1.171408 -0.395333 -0.165952 0.379592 -0.241872 0.502949 -0.093556 -1.717676 -0.385892 1.638230 4.372721 -0.409883 0.447535 1.221365 1.420333 -1.737757 -3.261163 -0.891279 -2.189377 0.252118 0.223404 -0.093161 1.184266 2.539307 -3.395996 1.789983 -0.186974 0.328107 1.461676 0.495110 -2.076683 -3.862829 -0.697383 1.125563 2.904874 -1.129296 0.896182 0.910060 -1.663995 -0.086575 0.444125 -0.206759 -0.393959 0.704880 -0.226331 -0.889857 -0.891765 0.959155 -1.149295 -0.636961 -0.115527 1.161870 0.887222 -1.825955 1.704507 -0.186361 -0.666576 0.668121 -0.406868 2.029840 -1.860631 -1.849897 1.427241 0.257827 -0.442414 -0.905543 0.397764 1.504779 0.386265 0.221542 -0.677575 -2.604577 1.224360 -0.967159 1.441808 0.793875 -0.486522 0.742616 0.195736 -0.456047 -2.051693 -1.469390 -0.772554 -0.051354 -1.904970 -0.827740 -0.419765 2.008085 1.331740 0.305237 -1.842725 0.379290 2.466604 -1.187834 -0.482894 1.365349 0.046975 -2.201319 0.112947 1.800765 -2.694710 0.212795 -1.077526 0.539980 -0.301853 -1.449983 1.262913 0.539170 1.231434 -0.160200 0.310020 0.060034 0.801944 1.134807 0.333615 0.183695 3.090215 1.319376 -0.186468 -0.695265 -1.881092 0.399237 -2.366237 -2.283064 0.602989 0.739106 -1.738464 0.553650 0.877393 2.333083 0.298493 0.590459 -0.156918 0.005925 +PE-benchmarks/n-queen-problem.cpp__solveNQ() = -1.223316 -1.534563 -0.515338 -3.023911 2.125120 1.896847 1.285675 -1.364024 -4.046182 -0.558421 1.487305 -4.089269 -0.608070 4.335141 -0.878651 3.346503 5.107844 1.012640 -2.165270 -0.111507 3.367631 -0.396695 4.485241 4.136264 -2.645452 0.065851 -1.221413 0.981848 0.460659 1.149393 0.289635 -1.952430 1.670827 -3.208914 -0.894089 -2.103589 0.210270 1.441153 2.663695 -5.246809 1.179762 1.462396 1.681540 -1.303501 -0.972510 0.073876 2.431136 3.101420 -0.289923 1.159864 2.229621 0.228836 -0.029707 0.902180 1.042657 0.832006 0.366557 -0.563992 -1.878420 -1.541215 -0.411274 -0.901640 0.537891 2.939177 3.721853 0.393397 -0.388190 1.864201 0.894135 1.009438 2.207044 0.483548 -0.764269 -0.569258 1.251799 -3.254785 -0.320295 -4.358646 -0.505274 -6.241847 -2.119301 0.631975 3.530691 1.337338 1.757672 -0.519414 3.323703 -1.229691 -1.116470 2.978620 3.811175 -2.881943 -1.764827 -2.108306 -1.880168 1.180625 -1.637524 -0.179586 2.064274 0.586923 -3.148433 -1.076318 1.080083 1.511915 -1.230891 -1.826721 1.110405 2.787443 -2.932610 -2.514226 0.239206 3.085124 -0.480210 -4.972252 -0.634116 -2.154162 0.068459 0.413488 -1.718361 -2.786951 0.738318 1.020943 -1.363740 -1.454919 -1.689587 2.417061 1.037600 1.636425 0.453410 0.589332 0.873235 4.843787 0.724836 -2.480338 0.851708 0.042855 -0.284138 1.765958 -1.813039 -2.333170 0.325870 -3.648447 0.567364 1.973543 -2.178356 -0.482271 0.557868 1.771232 0.523152 9.029400 0.077389 4.371787 2.904345 -3.177850 1.682384 -1.163135 0.163739 0.746686 1.627353 -0.136647 -3.541258 -3.209274 2.062356 3.702631 2.872069 -2.948438 -0.790194 -0.323232 -0.184357 0.346660 0.134234 0.814203 0.638783 -2.991348 -0.807589 2.478847 6.572039 -1.205205 -0.239873 1.865997 1.404012 -1.228450 -3.488294 -1.472769 -2.728896 0.720190 0.662762 0.126966 2.067338 4.444226 -4.639545 3.483369 -0.729635 0.025435 2.645309 1.022859 -3.354611 -4.081089 -1.597432 1.914133 4.324432 -1.094822 0.109271 1.423671 -3.047669 -0.395287 0.576279 -0.377724 -0.800212 1.389188 0.036311 -1.418839 -1.276291 0.781861 -1.022565 -0.790787 -0.372488 2.275172 1.334787 -3.237120 3.042276 0.187053 -1.306043 0.592756 -0.510510 2.886788 -2.658421 -2.993195 1.977160 -0.334536 -1.582073 -1.403863 0.394744 2.110824 0.819376 0.800833 -1.507233 -3.322902 2.842388 -1.227334 3.227698 1.554676 -0.814538 1.546514 0.511372 -1.014898 -2.478283 -2.401801 -0.853218 -0.441934 -2.834337 -0.680662 -1.060317 3.355594 2.092652 0.462256 -2.859090 -0.166587 3.567483 -2.423999 -0.828238 2.571649 -0.079862 -3.267592 0.936549 3.253689 -3.836482 0.507543 -1.771065 -0.034200 -1.269729 -2.233313 2.139222 0.868860 1.958815 -0.468282 0.343407 0.162751 1.216825 1.247573 0.121320 0.495989 4.740834 1.862431 -0.845651 -0.635997 -3.337067 1.553206 -3.880264 -3.701793 1.478212 1.093988 -3.258789 0.395272 0.578900 3.514124 0.548537 -0.385341 -1.130827 0.812762 +PE-benchmarks/graph-coloring.cpp__main = -5.135766 -1.646101 6.541415 -14.251155 13.177553 9.043413 4.551133 -3.805802 -12.542267 -2.423037 1.611192 -13.124815 -6.847580 18.063270 -6.525041 9.417588 19.631392 2.840387 -5.863216 -0.745462 13.714595 -1.212841 18.508460 11.781903 -14.564645 -1.680612 -0.314931 9.540720 1.077329 12.325723 -1.754820 -10.636747 3.786114 -6.884470 -0.141636 -9.154949 3.699657 2.092705 3.235855 -21.785095 3.434083 6.463397 -1.884185 -4.258166 -1.534278 3.174548 12.678195 13.478227 -4.863737 2.078976 8.994781 4.284246 -1.657010 4.024056 0.827606 1.810042 6.526052 -2.688350 -10.030420 -5.483163 -2.500406 -6.429524 3.167795 13.540938 17.054421 0.610216 1.022204 7.628485 0.776213 4.170937 5.961437 1.893790 -1.520241 2.993294 7.503703 -8.105279 -1.352046 -16.582125 -2.784216 -22.875124 -9.016753 -4.067378 9.262010 6.102475 4.309832 -3.214339 15.158005 -1.184816 -0.097701 13.831140 17.191305 -10.622085 -6.221115 -14.704972 -10.116212 4.773557 -7.859302 -3.578282 4.083009 2.636820 -12.062951 -6.870248 0.888144 4.799778 -4.462367 -4.632739 0.327482 13.271498 -14.106566 -10.113382 -4.177485 10.180814 -3.546406 -22.541170 -6.548325 -6.075722 7.057458 0.412596 0.267271 -10.087045 3.221267 10.226229 -5.238954 -4.068908 -7.731924 13.750409 6.059435 2.767991 2.729264 1.069460 2.041020 14.638488 8.113911 -7.387752 -2.654713 1.501104 -4.462467 1.861739 -8.440765 -4.077105 0.450168 -13.986755 1.660186 11.493673 -7.770156 -3.280357 -3.711915 1.097692 8.257015 39.484746 -2.074244 13.707878 5.452377 -16.643029 6.154351 -1.613286 -2.737947 1.691940 5.475115 2.730297 -15.098176 -12.423246 8.547239 12.695852 11.562173 -11.821081 0.446414 -4.834738 -1.943044 0.103768 -0.550372 7.544253 -2.959177 -12.069313 -3.667682 6.544345 26.892440 -4.220927 -13.773270 9.995351 6.658683 -6.476876 -10.805583 -5.220905 -4.324883 -0.624312 4.739740 -2.594793 8.195443 18.679855 -24.973869 14.032354 1.485157 -2.990067 10.520691 -2.345867 -9.460477 -13.788540 -4.395095 12.680778 16.502738 -2.940201 -0.755151 1.759359 -11.130438 1.888285 2.550387 2.991152 -0.920644 5.427111 0.137274 -10.834387 -9.262420 -2.253973 -4.369711 -0.844137 -4.604952 5.868442 1.150810 -22.044357 16.422067 -2.671700 -3.334672 4.282688 -1.239908 12.269527 -12.438134 -16.173049 7.896893 -0.839570 -7.492397 -8.191670 1.845239 9.473710 4.630540 4.302379 -7.752439 -17.001060 7.486020 -4.433312 8.804541 5.599968 1.892964 11.532944 3.975189 -5.081668 -11.464095 -12.085000 3.679643 0.173022 -9.399216 -0.357681 -3.674739 14.095085 10.393729 -1.899332 -7.915362 -6.071416 15.438655 -9.032194 -4.289875 11.209480 -2.818078 -13.191114 2.412425 14.405499 -12.814378 -3.840516 -7.573484 2.014584 -6.489893 -9.560476 4.952900 -1.131854 3.953744 2.460300 1.653051 -5.495415 3.288279 4.272165 -0.034357 -1.034612 19.976572 14.230265 -8.086767 2.219086 -10.921394 7.344356 -18.268471 -14.641416 4.903425 -3.043205 -5.333138 4.589694 1.530017 12.417531 0.248636 1.164692 -0.683903 -2.002309 +PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -5.924670 -1.560302 1.541769 -13.074218 10.518838 12.489630 4.544141 -6.097537 -13.117952 -4.559720 3.770240 -17.136783 -6.711640 17.783743 -5.902612 10.577780 22.350036 2.405251 -7.357478 1.027748 14.011386 0.138057 19.965669 17.503798 -12.863623 -1.529577 -0.958806 7.707979 0.253368 7.257618 0.796357 -12.647199 6.101261 -9.932936 -2.861533 -7.769912 2.571016 2.447626 7.462940 -22.050341 3.564683 5.014848 -0.237555 -5.128784 -4.178158 -2.717050 14.076133 13.451776 -2.452121 0.510471 9.997582 4.991213 -2.344903 3.915547 2.860909 0.499293 1.536707 -3.389690 -7.361791 -7.109307 -2.068193 -4.280213 0.343307 14.294176 17.455183 3.280454 0.224895 6.950733 -0.039121 3.933164 5.556286 2.227270 -1.076853 3.369891 5.857549 -11.419733 -2.064013 -19.225524 -2.580858 -21.679308 -8.946931 -1.542555 9.600717 8.629110 7.166040 -3.306720 14.444205 -2.909540 -1.788017 14.246259 19.663675 -12.503613 -6.843039 -12.101530 -9.203567 5.308290 -8.233753 1.184524 2.857386 2.022913 -13.014812 -7.370253 2.556355 6.033625 -4.893700 -8.218392 2.858995 12.382165 -12.109845 -8.942274 -2.211274 10.341128 -1.937980 -23.827183 -8.106965 -8.665040 3.022649 1.212888 -5.246207 -13.280206 3.013252 7.740253 -4.464014 -7.143738 -6.087905 12.221267 6.625894 4.577636 1.976418 1.720403 5.093012 20.463532 4.659472 -7.938667 1.252013 -1.577203 -3.520869 4.079928 -8.757681 -5.574921 0.131569 -14.178737 1.878638 13.204517 -8.732050 -4.142389 -1.283283 2.082257 5.923578 47.595727 -1.040466 16.302874 9.873577 -16.521545 7.697247 -5.155326 -2.600493 1.373782 5.322354 3.211633 -19.331112 -13.002099 10.183296 15.345911 11.588237 -12.861302 -0.089398 -2.063968 -0.892734 -2.622314 0.614915 5.116445 -0.185313 -11.902866 -4.021638 13.873455 28.486140 -5.413774 -7.215741 9.727752 6.967829 -3.300501 -13.537827 -5.830652 -7.909952 2.149313 7.080739 -0.628283 8.839663 19.439948 -21.937831 13.320174 1.214321 -1.129111 11.712428 2.220637 -13.171665 -13.872300 -2.012636 13.018754 16.845562 -2.969341 1.574416 1.901015 -12.923666 -1.439489 4.193982 1.690215 -3.108032 5.894426 0.687601 -9.368504 -10.247560 -0.146368 -5.785881 -3.865689 -4.706273 8.352447 2.935049 -17.485113 17.689102 0.840594 -4.234818 1.388239 -5.860890 13.689498 -13.634564 -16.436314 9.272888 -3.244697 -6.943385 -4.788284 2.117767 9.009118 6.112210 5.013281 -8.158186 -16.847126 10.564687 -2.564761 12.484754 5.618973 2.210939 8.492915 3.059183 -4.381460 -12.619535 -12.993400 3.478359 0.777643 -14.556183 -4.345678 -3.757858 14.483067 11.312421 -1.419862 -12.454607 -3.167995 14.845509 -10.620264 -3.919066 10.446777 1.094324 -15.694642 0.707479 13.084080 -14.696032 -1.730734 -8.266539 0.517990 -6.746221 -14.114251 5.101178 0.587303 7.014612 2.828538 0.775862 -2.441501 4.567927 5.580860 1.819643 2.233838 18.869589 10.265184 -5.028159 -1.135808 -15.185855 6.726931 -19.556774 -19.024018 8.270203 -0.384374 -8.909729 0.868879 1.222527 13.543720 0.480277 1.629152 -2.680092 1.126412 +PE-benchmarks/reservoir-sampling.cpp__main = -0.584615 -0.604220 0.432014 -1.491253 1.184830 0.614023 0.648125 -0.377272 -1.930041 -0.524052 0.575049 -1.719539 -0.623658 2.100232 -0.572625 1.162019 2.735501 0.761405 -0.742281 -0.425825 1.571904 -0.698189 2.379422 2.351722 -1.618557 0.018643 -0.164646 1.010009 0.402526 0.952036 -0.200998 -1.045335 0.792455 -1.383144 -0.099703 -1.470143 0.189049 0.569759 0.824071 -2.859350 0.461169 0.401931 0.257878 -0.426174 -0.291646 0.699267 1.410554 1.513693 -0.452634 0.846942 1.304215 0.043285 -0.033628 0.480533 0.521340 0.406199 0.583452 0.187674 -1.003997 -0.407325 -0.302412 -1.085504 0.237334 1.464235 2.094348 0.114400 -0.097489 0.579967 0.234608 0.443034 1.076568 0.259710 -0.019955 -0.150242 0.931824 -1.809546 -0.217534 -3.154356 -0.360420 -3.932680 -1.205350 -0.191953 1.901440 0.035430 0.670518 -0.132409 1.745566 -0.325481 -0.284089 1.399082 2.041139 -1.493379 -0.935592 -1.051865 -0.957921 0.667417 -0.939176 -0.052313 0.968058 0.281510 -1.533572 -0.907155 0.892585 0.551522 -0.623993 -0.745631 0.187334 1.649205 -1.810965 -1.133475 -0.646372 1.114698 -0.065626 -2.451770 -0.202713 -1.126188 1.056896 0.347454 -0.810420 -1.178535 0.439897 0.787831 -0.712388 -0.577473 -0.681934 1.511835 0.528431 0.605451 0.246661 0.199205 0.300955 2.119767 0.933130 -1.180403 0.127242 0.217581 -0.643520 0.608473 -1.312807 -0.916095 0.643435 -1.638676 0.341848 0.778837 -1.164401 -0.508961 0.981217 0.604713 0.550164 4.780215 0.035154 1.968501 1.195312 -1.599027 0.962877 -0.389729 0.161380 0.584754 1.111247 0.024258 -2.064965 -1.571543 0.865886 1.812554 1.359600 -1.993438 -0.740337 -0.382479 0.078682 0.190791 0.105096 0.461744 0.079525 -1.338673 -0.380282 1.028288 3.326704 -0.713527 -1.077205 0.697062 0.491399 -0.753754 -2.126851 -0.602017 -0.872240 0.346668 0.268161 0.004161 1.024846 2.272919 -3.534196 1.720770 -0.450705 -0.095946 1.454144 0.443434 -1.418496 -2.322312 -0.469381 1.030006 2.281646 0.027368 0.008103 0.775109 -1.614546 -0.179477 0.212475 0.226779 -0.484461 0.842713 0.146155 -1.055078 -0.876085 -0.223750 -0.423610 -0.336959 -0.236559 1.075699 0.368852 -2.909862 1.570669 -0.153811 -0.715570 0.349420 -0.187669 1.383713 -1.566298 -1.836771 0.963726 -0.203747 -1.060066 -1.148863 0.115266 1.058864 0.192121 0.268871 -0.739021 -2.003195 1.490005 -0.795079 1.508736 0.779434 -0.229812 1.484460 0.351879 -0.604444 -1.518310 -0.734657 0.066734 -0.600418 -1.244033 -0.333044 -0.502798 1.547421 1.462551 0.226133 -0.915616 -0.204408 2.165908 -1.536741 -0.609553 1.389400 0.608832 -1.181679 0.878414 1.666076 -2.183579 -0.178930 -0.956554 -0.423119 -0.377792 -1.124525 1.065712 -0.108290 0.895715 0.024904 0.347325 -0.225121 0.722386 0.440364 0.073880 0.060527 2.508464 2.262668 -0.901900 0.007854 -1.615132 0.878690 -2.112360 -1.853741 0.479997 0.376167 -1.390010 0.368230 0.260455 1.683123 0.312392 -0.282377 -0.527053 0.284901 +PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -2.208360 -2.657422 -0.389097 -4.707646 2.806757 2.512745 1.687093 -2.331963 -5.358258 -1.030573 2.380445 -5.210766 -0.915583 5.931903 -1.998944 4.422673 7.538500 1.416556 -2.645346 -1.004872 5.785301 -1.060299 7.109541 6.796920 -4.829117 -0.735878 -0.473524 3.393638 2.222820 0.529713 1.132088 -1.993804 2.276236 -5.487994 -1.233492 -4.092147 1.490978 2.256325 3.987970 -7.641891 1.369598 0.290361 0.945845 -1.293912 -1.552841 0.554019 2.979802 4.786109 -1.682907 1.873450 4.700714 0.486225 -0.659934 1.326612 0.235775 0.340876 0.322865 0.375730 -2.094419 -2.357043 -0.197987 -1.971765 1.369469 4.515127 6.509559 0.673513 0.138953 3.247075 1.399025 1.337041 3.449491 0.695397 -1.326078 -0.268651 2.770064 -6.755506 -1.072580 -9.912914 -0.990604 -9.924112 -2.865933 0.182399 4.584873 -0.050781 2.595671 0.540743 4.663997 -0.554136 -1.532903 5.433883 5.346950 -4.294509 -2.534920 -3.519683 -3.265078 2.284927 -3.088580 0.812274 2.477492 1.932469 -4.226236 -2.707882 1.514641 2.288423 -1.800742 -3.765305 0.716262 4.157391 -4.380886 -3.796649 0.022318 4.036481 -0.884615 -7.513854 -1.490399 -4.502855 3.090851 0.110423 -1.559927 -3.761378 0.261881 2.185994 -1.398840 -2.194617 -1.253077 3.162537 2.541363 2.119242 0.401158 0.763621 0.827180 7.410639 1.482448 -3.482775 0.194302 0.252354 -1.658489 2.165296 -4.292140 -2.622771 2.453178 -4.976387 1.133857 3.363999 -2.906997 -2.338435 4.207036 1.917681 1.511002 15.901341 1.288470 6.149309 4.681681 -4.405317 1.843621 -1.835026 0.904356 2.282707 2.358576 -0.669994 -7.154897 -4.879443 2.457374 4.854122 3.778464 -5.524108 -2.613460 -0.459964 0.120130 0.051444 -0.509841 1.548067 -0.373387 -3.832237 -0.913059 4.407215 9.297680 -1.906498 -0.533273 2.558854 2.618364 -3.179419 -6.797293 -2.219132 -3.351674 1.019415 1.528747 0.788996 3.012172 6.508044 -8.600274 4.254198 -0.122953 1.388825 3.294008 1.747626 -5.278321 -6.703758 -1.027499 2.679629 5.743372 -1.386116 0.742126 2.821378 -4.635678 -0.208642 1.223995 -0.279210 -0.959489 2.112533 0.221117 -2.053860 -2.846404 1.469347 -1.984266 -0.907073 -0.026922 3.450711 0.480440 -6.176476 4.355179 -1.068158 -2.388516 1.097444 -1.811404 5.151241 -4.837598 -4.762976 3.503361 -0.239413 -2.167842 -3.497273 1.065190 3.207702 1.287709 1.394081 -2.518867 -5.586354 3.596302 -2.981623 3.813682 1.991795 -0.825646 3.013387 -1.387700 -1.167887 -5.588064 -2.414186 -0.954679 0.010698 -5.026769 -1.982895 -0.684882 4.747059 3.627403 -0.015783 -3.915893 0.706105 6.107332 -4.669766 -2.067125 3.258098 2.550538 -4.830277 1.844681 4.123313 -6.809160 0.468394 -2.461434 -0.630682 -1.043122 -3.938774 3.404009 0.981570 3.376854 -0.428137 1.365309 0.531107 2.410261 2.132698 1.080848 0.692148 7.379977 5.531985 -1.563271 -1.802523 -5.407358 2.096654 -6.273381 -6.294616 2.355457 0.979385 -3.849792 1.294551 0.764457 5.857999 1.478827 -0.450983 -1.301726 0.910337 +PE-benchmarks/dfa-based-division.cpp__main = -0.679699 -1.084011 0.326901 -1.911245 1.104928 0.161943 0.624066 -0.559362 -2.190636 -0.440736 0.848387 -1.607967 -0.202612 2.161584 -0.559744 1.457840 2.518121 0.691446 -0.872166 -0.580826 1.857069 -0.917490 2.184610 2.252940 -1.711173 -0.046248 -0.136521 1.152521 0.830086 0.566244 0.027151 -0.544094 0.609054 -1.670137 -0.106177 -1.484401 0.300252 0.970946 1.213778 -2.719794 0.572791 0.137364 0.502351 -0.415802 -0.435533 0.754490 0.930244 1.637123 -0.811854 1.005408 1.725636 -0.090951 -0.155339 0.433098 0.325611 0.275361 0.456682 0.473743 -0.757030 -0.432002 -0.109408 -0.904097 0.738133 1.550344 2.121504 -0.052557 -0.051195 0.849043 0.671625 0.505048 1.391838 0.196445 -0.461685 -0.561522 1.000389 -2.371639 -0.108856 -3.984865 -0.202574 -4.213454 -1.172756 0.210140 2.125249 -0.253819 0.613052 0.089390 1.677909 -0.172922 -0.559832 1.662552 1.695764 -1.234976 -0.909581 -1.010652 -1.342859 0.862814 -0.929834 -0.087880 1.190320 0.626197 -1.450434 -0.656898 0.826854 0.599890 -0.674040 -1.007631 0.385009 1.585350 -1.613491 -1.277546 -0.093003 1.584481 -0.067878 -2.456666 0.129227 -1.531560 1.286398 0.010433 -0.718024 -0.964884 0.116946 0.542164 -0.771891 -0.377897 -0.938029 1.299378 0.671897 0.863469 0.149511 0.007511 0.211651 2.004500 0.633421 -1.503094 0.096044 0.261990 -0.577526 0.852150 -1.463065 -1.059661 1.183159 -1.662768 0.321944 0.511954 -1.114535 -0.661854 1.804008 0.827196 0.355880 4.825074 0.335030 2.102766 1.566506 -1.339114 0.822354 -0.188879 0.432057 1.031475 1.103201 -0.454097 -1.927236 -1.700260 0.727485 1.786713 1.461646 -1.984233 -1.324134 -0.196041 -0.123484 0.435607 -0.100983 0.329499 -0.097087 -1.277135 -0.362277 1.081025 2.831731 -0.421769 -0.690968 0.623369 1.018712 -1.158975 -2.263989 -0.682148 -1.364494 0.452557 0.085109 0.108198 1.210396 2.287752 -3.996190 1.625169 -0.355801 0.289539 1.133858 0.562953 -1.683752 -3.193190 -0.526470 0.672818 2.152282 -0.383087 0.248143 1.262688 -1.596027 -0.106504 0.183160 -0.119883 -0.529193 0.733773 0.036223 -0.650216 -0.682398 0.287567 -0.650536 -0.186954 0.019434 1.215401 0.328542 -2.664129 1.276367 -0.371552 -0.804681 0.491234 -0.307921 1.585012 -1.614960 -1.573166 0.964116 0.046663 -0.737240 -1.364030 0.302691 1.176552 -0.187378 0.181329 -0.692242 -1.720936 1.185473 -1.205982 1.390553 0.786724 -0.613413 1.292417 0.001679 -0.380337 -1.611685 -0.370805 -0.161006 -0.404837 -1.333846 -0.468270 -0.391159 1.482622 1.237174 0.300548 -0.936625 0.335181 2.093574 -1.489465 -0.772144 1.240231 0.488801 -1.252417 1.063380 1.561844 -2.304601 0.177974 -1.053089 -0.274172 -0.160933 -0.987988 1.523868 0.478513 1.132206 -0.364489 0.507732 0.080645 0.954878 0.651001 0.257763 0.141382 2.495288 2.372247 -0.676312 -0.507032 -1.701144 0.670308 -2.052796 -1.821363 0.467172 0.522052 -1.475424 0.528620 0.160321 1.953026 0.421503 -0.115570 -0.496555 0.566319 +PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -1.154641 -1.220816 0.140221 -2.614245 1.825129 1.073930 0.941267 -1.518396 -2.822306 -0.413077 1.172187 -2.332812 -0.505377 3.044124 -1.146405 2.193485 3.758138 0.816300 -1.357642 -0.914012 2.732062 -0.705395 3.699884 3.483801 -2.466828 -0.221715 0.169782 1.583805 1.063823 0.496266 -0.228587 -0.779271 1.314710 -2.795118 -0.520914 -1.842685 0.364460 0.923298 2.004029 -3.686732 0.647037 -0.675151 -0.145627 -0.452150 -0.734783 1.117679 1.700379 2.361919 -0.600222 1.242215 2.275893 0.223478 -0.310604 0.713137 0.594184 0.579680 0.786785 0.699743 -0.941009 -0.974614 -0.409009 -0.891758 0.742571 2.496089 2.991776 0.312194 -0.124789 1.565373 0.715891 0.622094 1.729386 0.490609 -0.645238 -0.035727 1.268179 -3.825327 -0.059009 -5.323674 -0.700792 -5.228982 -1.571031 0.049528 2.089106 -0.962415 1.387312 0.540522 2.598231 0.077959 -0.795442 2.366504 2.862655 -2.402778 -1.268593 -1.285703 -1.610595 0.720507 -1.363593 0.379163 1.475166 0.880352 -2.230297 -1.269636 1.088561 1.033305 -0.943464 -1.813295 0.554968 2.358795 -2.258127 -1.828708 -0.287432 1.917562 -0.490117 -3.879485 -0.479697 -2.028682 2.671124 -0.045941 -1.115447 -2.145314 0.347363 1.448090 -0.885541 -1.030329 -0.002577 1.595841 1.449560 1.077425 0.022666 0.263925 0.421849 3.846224 1.147956 -1.856986 0.166658 0.066812 -0.983014 1.176336 -1.832820 -1.204297 1.190477 -2.556247 0.982843 1.612561 -1.576825 -0.997865 2.983715 1.009086 0.589830 7.723713 0.185406 3.011554 2.228171 -2.374824 0.290283 -0.916610 0.620822 1.206708 1.421678 -0.347269 -3.512466 -2.559945 1.447685 2.713196 1.995536 -3.322546 -1.384036 -0.428422 -0.115856 0.195644 -0.277803 0.648738 -0.178456 -1.646682 -0.573173 1.887013 4.681103 -1.219878 -0.897227 1.158630 0.913636 -1.194623 -3.208785 -1.230268 -1.530500 0.672754 0.711004 0.452682 1.523319 3.398377 -5.086815 2.240742 -0.697522 0.181306 1.816573 1.214451 -2.392597 -3.280469 -0.681331 1.360895 2.764380 -0.423770 0.136566 1.497871 -2.387601 -0.192788 0.513978 0.202434 -0.716766 1.103676 0.618582 -1.348729 -1.289496 0.677382 -0.510704 -0.379597 0.096971 1.839561 -0.297103 -4.343197 2.271937 -0.206571 -1.201162 0.786563 -0.683546 2.621128 -2.356402 -2.552545 1.746132 -0.183189 -0.805904 -1.534845 0.507062 1.710614 0.265041 0.974018 -1.598613 -2.360577 1.700526 -1.371277 2.158386 1.050072 -0.307212 2.153994 -1.498471 -0.757375 -2.526186 -0.947448 0.079514 -0.030766 -2.251657 -0.584185 -0.410378 2.421245 1.978955 0.278857 -1.658243 0.501238 2.947312 -2.765555 -0.769590 1.745702 2.064845 -2.286516 1.181065 2.163253 -3.072274 -0.040799 -1.054301 -0.783388 -0.748216 -1.820974 1.932083 0.379013 1.682544 -0.314294 0.816416 0.232912 1.380936 0.828995 0.911814 0.541403 3.253210 3.812173 -1.056983 -1.148237 -2.630136 1.303104 -3.130813 -3.170965 1.203921 0.565114 -1.818130 0.522763 0.082043 2.974038 0.634190 -0.664874 -0.693667 0.553016 +PE-benchmarks/word-wrap.cpp__main = -2.050268 -2.448871 -1.433583 -4.528683 3.510640 4.380713 1.924683 -3.689919 -5.659487 0.311612 2.911428 -6.137777 -0.379150 5.915933 -1.908055 5.603911 7.575553 0.796534 -3.648040 -0.384235 5.462226 0.275533 7.652285 6.913409 -4.027634 -0.267818 -1.390259 2.375898 1.150231 -0.013969 0.457433 -1.512291 2.937613 -6.232254 -2.698143 -2.676877 0.685455 1.572980 5.367075 -7.271316 1.425062 -0.446392 0.778003 -1.461759 -1.985065 0.196282 3.302064 4.693738 0.187667 1.756009 3.828504 0.249946 -0.376529 1.420073 1.187776 0.997014 1.074838 0.149405 -2.033113 -3.177042 -0.428663 -0.255397 0.786821 4.687689 6.229203 1.222711 -0.458259 3.806887 1.473989 1.239969 3.359140 0.914958 -2.304630 0.404895 1.659793 -6.892317 -0.148564 -7.093707 -1.434015 -7.292740 -2.870722 1.159714 3.768202 -0.146275 3.571391 1.103893 4.783072 -0.790567 -2.269550 4.788664 5.571329 -5.095873 -2.577436 -2.484261 -2.636582 1.213230 -2.475060 1.281599 3.137841 1.717191 -4.570023 -1.677998 1.760478 2.700302 -1.802151 -3.873784 1.708081 3.877222 -3.360812 -4.043977 1.384464 4.805258 -1.469018 -7.943919 -2.131823 -3.862169 2.346720 0.053396 -2.120617 -5.011568 0.623162 2.156179 -1.406832 -2.687595 -0.095181 2.622324 2.900536 2.743739 0.297951 1.318185 1.550753 8.845475 0.630381 -3.294560 1.192702 -0.695577 -0.704697 3.265181 -2.844378 -2.735016 0.088167 -5.548301 2.244691 4.361546 -2.845937 -1.293942 2.725484 3.138855 0.521788 16.227711 0.637910 6.900927 5.016958 -4.947667 1.306880 -3.062331 0.852630 1.531120 1.610856 -0.838953 -8.012107 -5.000097 3.287616 5.306289 3.842132 -6.161020 -1.340338 -0.201226 -0.364898 -0.155699 -0.364970 1.526419 0.434919 -3.401811 -1.073143 4.889028 10.821495 -2.364156 0.099346 3.307332 1.253917 -2.108704 -6.513605 -2.790368 -3.279049 1.250343 1.915761 1.192105 2.768866 6.403573 -6.298026 4.305598 -0.761684 0.658305 4.537490 2.572340 -5.667338 -4.942951 -2.081528 2.743016 5.642664 -1.831729 -0.552206 2.484174 -4.458638 -0.521079 1.604475 -0.873451 -0.836536 1.994503 0.845199 -2.089667 -2.294164 2.269512 -1.239145 -0.620442 -0.155195 3.828801 -0.393765 -5.355389 4.475166 0.451498 -2.539365 1.193612 -2.062906 5.422255 -3.853364 -4.303522 3.642736 -0.531888 -1.304924 -2.323762 1.078145 2.867949 2.200317 2.916808 -3.414114 -4.622786 3.463829 -2.358194 4.355962 2.114479 -0.780507 2.063760 -2.769693 -1.742152 -5.046401 -3.913324 -1.171625 0.965648 -5.229159 -1.192479 -1.147496 5.244660 2.782053 0.618755 -5.044973 0.398350 5.520930 -4.764570 -1.397041 3.275716 2.506867 -6.097825 0.950669 4.098955 -5.971696 1.153682 -1.570881 -1.401737 -2.388010 -3.939865 3.367265 1.966270 3.599807 -1.029441 1.153576 1.363863 2.280812 1.632920 1.886717 1.402494 7.054643 3.839152 -0.821788 -2.484030 -5.472443 2.563809 -5.854197 -6.624717 3.469599 1.441320 -4.442610 0.445538 0.860951 5.894338 1.139487 -1.698299 -1.577437 1.214268 +PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -1.445538 -0.512155 0.805053 -3.642662 2.409713 2.541749 1.116214 -1.931185 -3.171052 -1.586870 1.775202 -4.643769 -2.230499 4.341392 -2.195770 1.891388 5.027216 0.161080 -2.070793 -0.937257 3.436304 0.815927 5.638066 4.790865 -4.458067 -0.521250 0.471199 2.205407 2.098030 0.658505 0.889699 -2.568842 1.879135 -2.078393 -0.164246 -1.303974 0.837284 -0.142775 1.403629 -5.016020 0.552317 0.538386 -0.565872 -0.784656 -0.789407 1.309818 3.711897 3.689543 -1.140614 0.661662 3.652738 1.246108 -0.574014 0.744813 0.280511 -1.380251 0.843289 -0.576997 -1.523677 -1.832745 -0.229832 -1.510283 -0.222264 4.463487 4.820887 0.617457 0.155009 1.751274 0.729691 1.211950 1.767738 1.009992 0.312727 1.671552 2.169080 -3.112453 -0.149911 -5.992520 -0.745456 -7.503713 -2.299324 -0.676341 3.319082 0.669103 1.161853 -0.429154 4.107759 0.582707 -0.743830 4.183233 5.225972 -2.824601 -1.868041 -2.612125 -2.390099 1.773624 -2.725656 1.513744 0.830864 1.316487 -3.463388 -1.388113 -0.170177 1.129607 -1.594336 -1.648318 0.386437 2.883374 -3.627785 -1.189822 -0.752356 2.231737 0.462934 -6.773498 -2.380495 -2.348681 3.000401 -0.014480 -1.104145 -2.295524 0.249724 1.852256 -1.038339 -1.076463 -1.860384 2.504516 2.399338 1.929922 0.244773 1.065027 1.884054 4.917303 1.245831 -2.182265 -0.105712 -0.639776 -0.974034 1.422200 -2.129460 -0.970224 1.851711 -3.262039 1.264789 2.880105 -2.156901 -2.221389 0.848282 0.216652 1.536440 11.527052 0.068739 4.326779 2.940113 -3.903898 0.189528 -1.674706 -0.234338 1.091037 1.489839 0.745918 -3.573917 -3.476373 2.800190 4.351841 2.668808 -3.875310 0.693779 0.316535 -0.339144 -1.339837 0.121164 1.274010 -0.457513 -2.591934 -1.072056 4.226167 5.712518 -1.336118 -2.145044 1.691189 2.175763 -0.298684 -1.991113 -1.141968 -0.629202 1.204352 2.404933 0.611592 2.687426 5.116572 -6.672644 3.300375 1.039484 0.455203 2.336627 0.934060 -3.707148 -3.018781 0.306567 3.045246 2.979795 -0.447830 -0.080538 1.244461 -3.760571 -0.314570 1.196569 0.528973 -1.036560 1.590840 0.978398 -1.741227 -3.221873 -0.357320 -0.978390 0.149626 -1.209283 2.564954 -0.415289 -6.406293 4.594502 -0.476876 -1.951799 -0.685291 -2.353212 3.545979 -4.467407 -4.112736 1.895949 -1.447176 -2.971263 -1.977838 0.336578 2.029073 1.105244 2.138201 -2.854373 -3.489466 3.203822 -1.243193 3.148796 1.611602 0.654671 3.347094 -1.518684 -0.713129 -3.407494 -2.573938 1.887206 0.173346 -4.086566 0.171945 -0.704207 3.307683 3.235723 -1.196884 -2.943725 0.194738 3.225956 -3.544407 -2.036696 2.097022 2.264464 -3.699466 1.661782 2.715921 -3.764090 -0.120807 -2.617676 -1.016720 -1.636102 -3.826415 2.060892 0.083088 2.326701 0.833596 0.731877 -0.580817 1.807277 0.792436 0.549907 1.012434 4.358488 4.763832 -2.014556 -0.511639 -4.893914 2.412541 -5.445690 -5.740897 2.565139 -0.822487 -1.524984 0.214763 -0.641936 3.654964 1.056013 -0.946529 -1.471376 1.712151 +PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -9.536625 -11.880675 -9.717082 -19.894794 14.435807 21.346195 8.069883 -18.895197 -24.005487 3.147747 14.062337 -27.301951 0.306955 25.010406 -8.676096 26.632131 31.738758 1.592201 -17.174142 -0.796923 25.236908 3.808308 33.473856 29.605357 -16.874502 -2.168182 -6.601589 10.223080 5.961348 -4.300313 4.424243 -4.328583 13.002026 -29.733542 -14.225692 -10.125813 3.973005 7.272431 26.702988 -29.701719 6.189062 -3.951255 3.546470 -6.471836 -10.019938 -1.960910 12.437353 20.686334 1.518597 6.418784 17.322158 1.519531 -2.374438 6.024313 3.567953 3.294949 2.779796 0.184382 -7.239998 -16.205625 -0.829240 2.178770 4.116899 20.632397 27.183831 6.215071 -1.664898 19.381675 7.595930 5.321714 14.862349 3.971638 -12.749452 2.507031 6.409910 -32.169362 -0.727732 -29.609671 -6.358579 -26.724411 -11.192796 6.940734 13.918682 -0.959306 17.100036 6.722251 19.851524 -2.879566 -11.460205 22.381796 22.997900 -22.306981 -10.744136 -10.681664 -11.658384 5.013991 -10.768000 7.481834 13.326403 9.110876 -19.408489 -6.562099 5.854106 13.032321 -7.691536 -19.406069 8.319998 15.297475 -12.130121 -18.349159 10.176497 22.489280 -7.901578 -34.974599 -11.135948 -18.182760 9.539972 -1.359868 -8.110916 -22.926541 1.178207 9.027732 -4.871063 -12.745226 1.680692 8.714984 14.401889 12.810678 0.657609 6.358524 7.076170 41.039176 -0.031299 -14.053559 5.521603 -4.313438 -1.964370 15.448836 -11.949994 -11.717375 -0.323158 -24.524509 10.648072 21.277542 -11.314674 -6.263339 12.928370 14.588394 1.369123 73.138820 4.302250 30.811441 23.789912 -21.148516 3.563635 -15.198036 4.360607 7.014535 4.856617 -4.986047 -36.890607 -22.022211 14.566022 22.322796 16.191123 -26.362016 -5.613464 0.446303 -2.097768 -1.681005 -2.860168 6.871442 1.403580 -14.147927 -4.377364 23.710912 46.771634 -10.159641 5.349479 15.610200 6.430954 -9.954172 -28.731063 -13.160888 -15.385721 5.537788 9.766745 6.728719 11.732272 27.161317 -22.419426 17.178338 -1.677848 5.160084 18.710737 12.392157 -26.522532 -19.806949 -9.088236 11.244680 22.548464 -10.681605 -2.059420 11.366703 -18.856136 -1.916650 8.183999 -5.780355 -2.719859 7.871483 3.716336 -7.226804 -9.936796 13.935656 -6.061941 -2.324491 0.379897 17.216219 -3.332646 -18.404110 18.877663 1.958390 -11.507489 5.318402 -11.187588 25.343948 -16.272930 -17.096732 16.898412 -1.880119 -3.392130 -9.371767 5.879585 12.253128 11.328686 14.633764 -15.894332 -18.684311 13.465423 -10.797198 18.049813 8.667022 -3.579120 5.909885 -16.995558 -6.856427 -23.228520 -18.307516 -7.146475 7.841029 -24.952400 -6.280073 -3.908373 23.233251 10.224915 1.947329 -24.562676 3.719896 22.882444 -20.808910 -6.004566 12.689678 12.040713 -29.411008 2.205956 16.287706 -25.749746 7.131456 -5.533066 -5.523768 -11.094213 -18.015472 14.911776 11.354370 16.897312 -5.699860 5.396565 8.476029 10.202392 8.095476 10.145033 7.401981 30.110869 13.414407 -1.162711 -14.261943 -24.693909 10.522248 -24.982565 -30.149497 17.303467 6.305152 -19.112792 1.681092 3.766939 26.914075 5.614303 -7.530594 -6.553643 5.557168 +PE-benchmarks/tower-of-hanoi.cpp__main = -0.379479 -0.413596 0.681218 -1.301382 0.735663 -0.066567 0.370460 -0.177880 -1.330919 -0.756293 0.517388 -1.262125 -0.664957 1.418851 -0.608293 0.278212 1.761453 0.390406 -0.454204 -0.689392 0.907714 -0.391783 1.594624 1.661457 -1.416911 -0.045586 0.091914 0.814238 0.774344 0.438603 0.214449 -0.794939 0.401370 -0.330357 0.350334 -0.801155 0.134100 0.243403 0.134786 -1.899725 0.253506 0.241758 0.073642 -0.152821 -0.013768 1.279763 1.008762 1.073709 -0.597388 0.662522 1.291867 0.263393 -0.097794 0.197476 0.183494 -0.366026 0.573472 0.077262 -0.538872 -0.072998 -0.143026 -0.781268 0.105167 1.262637 1.554298 -0.054881 -0.037566 0.105639 0.412034 0.477269 0.771645 0.259989 0.289093 0.064077 0.757502 -1.120020 -0.130729 -2.871049 -0.043179 -3.662376 -0.869926 -0.172338 1.732750 -0.099637 -0.125318 -0.170754 1.289881 0.207766 -0.211642 1.217932 1.434324 -0.514234 -0.620742 -0.631488 -0.863010 0.657439 -0.717204 0.201101 0.590103 0.587323 -1.028204 -0.307492 0.330933 0.007114 -0.482150 -0.224250 0.084042 1.085856 -1.400173 -0.173316 -0.507135 0.930093 0.537007 -1.859026 -0.018864 -0.967199 1.258291 0.083235 -0.551626 -0.145207 0.169068 0.296465 -0.630321 0.191154 -1.142168 1.109952 0.454062 0.585696 0.018983 0.219427 0.344693 0.913038 0.512478 -0.961583 -0.053573 0.138517 -0.454828 0.361784 -0.997561 -0.401672 1.163782 -0.856974 0.491045 0.123183 -0.774438 -0.887950 0.672274 0.072572 0.417707 3.109106 -0.047442 1.372700 0.845810 -0.913817 0.345816 -0.117692 0.173932 0.549509 0.854858 0.035595 -0.741169 -1.059836 0.666378 1.357553 0.894656 -1.405320 -0.308028 0.062043 -0.152327 -0.035043 0.184061 0.230202 -0.233685 -0.742455 -0.329008 0.795772 1.698784 -0.083048 -0.907150 0.081367 0.844284 -0.252962 -0.837948 -0.153467 -0.142797 0.443231 0.395007 0.102004 0.948727 1.573205 -3.387252 1.151188 0.112130 0.239941 0.658131 0.288735 -0.989830 -2.074492 -0.062490 0.662619 1.374218 0.086350 0.053943 0.684491 -1.163988 -0.081244 0.128500 0.266741 -0.503872 0.515328 0.244677 -0.528552 -0.687290 -0.398704 -0.335163 0.221563 -0.329298 0.752967 0.151075 -2.692702 1.135935 -0.364043 -0.542287 -0.247187 -0.391098 0.955900 -1.290926 -1.135843 0.336896 -0.356346 -1.169621 -1.081845 -0.032771 0.679550 -0.345213 0.523563 -0.570824 -1.210668 1.158984 -0.745583 1.051211 0.547541 -0.170578 1.378809 0.029518 -0.157297 -0.976362 -0.377124 0.645576 -0.467663 -0.850109 0.481929 -0.271325 0.758724 1.019571 -0.167012 -0.583824 0.186257 1.301283 -1.018752 -0.670742 0.719305 0.474732 -0.573251 1.163972 0.948000 -1.504035 -0.071517 -1.039393 -0.440030 -0.205435 -0.772860 0.896811 -0.020818 0.659865 0.014717 0.365326 -0.357505 0.644434 0.195258 -0.070809 0.183001 1.591262 2.286624 -0.744202 0.182443 -1.336350 0.720314 -1.530938 -1.424775 0.235942 -0.117492 -0.626149 0.251102 -0.348112 1.113797 0.328455 -0.188910 -0.586043 0.815397 +PE-benchmarks/palindrome-partitioning.cpp__main = -1.401057 -1.665003 -0.904753 -3.161430 2.310869 2.718279 1.309137 -2.270562 -4.023069 -0.292403 2.023894 -4.630413 -0.492764 4.199087 -1.297806 3.724993 5.244713 0.523292 -2.486381 -0.288848 3.843799 0.125644 5.353822 4.683440 -2.885135 -0.182823 -1.229098 1.555715 0.933600 -0.053292 0.852497 -1.323561 1.913477 -4.071474 -1.777046 -1.757196 0.538763 1.207840 3.447797 -5.112717 1.015626 0.309194 0.898744 -1.126237 -1.331013 -0.310253 2.385706 3.310383 0.043449 1.142412 2.771267 0.319105 -0.199420 0.992810 0.646251 0.336535 0.539897 -0.744148 -1.575718 -2.124627 -0.216039 -0.500543 0.460125 3.310131 4.272670 0.847993 -0.291812 2.614958 0.967743 0.999495 2.445015 0.615052 -1.468937 0.234335 1.293309 -4.442296 -0.221829 -4.939244 -0.872609 -5.189505 -2.119265 0.770120 3.093156 0.806806 2.213405 0.706404 3.314717 -0.702745 -1.519430 3.663343 3.987726 -3.235122 -1.837969 -1.925075 -1.884785 1.121905 -1.862992 0.837380 1.685630 1.505937 -3.199423 -1.082465 1.219510 1.763823 -1.289177 -2.607088 1.174315 2.679414 -2.616365 -2.670439 0.891859 3.519537 -0.703201 -5.515209 -1.578497 -2.604000 1.287302 0.138591 -1.428746 -3.176092 0.399721 1.204113 -0.950133 -1.673164 -0.788372 1.742527 1.807000 1.957328 0.276423 1.060326 1.168910 5.983104 0.227581 -2.285062 0.803146 -0.449615 -0.301981 2.271086 -1.841086 -2.020537 -0.052871 -3.670099 1.271645 2.878675 -2.013394 -1.333219 0.964701 2.006224 0.410920 10.664624 0.629534 4.747103 3.625750 -3.354216 0.895088 -2.101941 0.466335 0.994748 1.101297 -0.452121 -4.793770 -3.525993 2.318182 3.691818 2.730897 -3.723192 -0.723888 0.064916 -0.123618 -0.079254 -0.140354 1.139824 0.468506 -2.624344 -0.744980 3.549096 7.307367 -1.362855 0.357806 2.326907 1.066153 -1.333097 -4.203156 -1.817236 -2.077491 0.820991 1.339602 0.766650 1.893897 4.562042 -4.183680 3.086859 -0.219188 0.705999 2.821067 1.585024 -4.058477 -3.516858 -1.446861 1.991360 3.947524 -1.359079 -0.135593 1.636419 -3.156722 -0.365434 1.088116 -0.645779 -0.544665 1.397395 0.318571 -1.299376 -1.689322 1.449738 -1.055167 -0.240737 -0.202002 2.642395 0.362584 -3.216926 3.233577 0.155548 -1.716124 0.512830 -1.486048 3.903605 -2.783079 -2.981582 2.449300 -0.673214 -1.473048 -1.640910 0.743016 1.916988 1.506968 1.733053 -2.166629 -2.916514 2.728412 -1.478688 3.008962 1.511045 -0.598164 1.304907 -1.217206 -1.102901 -3.162503 -2.640435 -0.902431 0.450334 -3.701907 -0.815068 -0.814901 3.562410 2.000660 0.254197 -3.676556 0.279239 3.792335 -3.247403 -1.336264 2.324220 1.273289 -4.217691 0.923955 2.923849 -4.148534 0.873141 -1.423252 -0.525794 -1.593279 -2.824479 2.297003 1.371397 2.438777 -0.527726 0.664766 0.735542 1.546567 1.228984 0.997763 0.819149 5.035842 2.482698 -0.502856 -1.502819 -3.917171 1.609340 -4.165172 -4.604101 2.338290 1.045584 -3.141163 0.300593 0.492492 4.104568 0.959739 -0.941593 -1.261878 1.032446 +PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.506122 -0.740676 -0.092479 -0.956983 0.649825 0.207414 0.291580 -0.471655 -1.190386 -0.148388 0.406858 -0.696922 0.190655 1.115358 -0.282880 1.112725 1.249664 0.371480 -0.400063 -0.264940 1.142007 -0.647114 1.021565 1.083318 -0.746963 -0.080175 0.034822 0.395253 0.199163 0.324390 -0.082814 -0.464549 0.350031 -1.199372 -0.152985 -0.876810 0.101927 0.817838 1.073442 -1.353169 0.312326 -0.045471 0.230859 -0.210599 -0.333802 -0.051947 0.274627 0.730369 -0.372357 0.721092 0.845958 0.060387 -0.158821 0.182223 0.229212 0.528689 0.074788 0.228805 -0.297129 -0.277958 -0.200646 -0.129448 0.562662 0.669301 0.958174 -0.126394 -0.032565 0.604041 0.249997 0.205221 0.756756 0.107795 -0.467309 -0.483222 0.462818 -1.608805 -0.185725 -2.250096 -0.104758 -1.997042 -0.501536 0.288764 0.727434 -0.143931 0.548286 0.231379 0.949589 -0.360150 -0.422999 0.781694 0.772085 -0.787932 -0.366914 -0.442777 -0.758083 0.167415 -0.336955 -0.185220 0.524062 0.214089 -0.696943 -0.617000 0.505273 0.433607 -0.278845 -0.922592 0.202077 0.794928 -0.844851 -0.999061 0.044497 0.952872 -0.316027 -1.100827 0.099641 -0.839065 0.486328 0.039285 -0.512514 -0.850455 0.144883 0.418850 -0.368446 -0.442503 0.060461 0.540371 0.456343 0.428563 0.045953 -0.132273 -0.052393 1.359160 0.382634 -0.822255 0.074896 0.237945 -0.198805 0.448569 -0.726989 -0.602684 0.349131 -0.902411 0.126163 0.402259 -0.562015 -0.174589 1.304047 0.393664 0.051418 2.607624 0.091899 1.083710 0.829862 -0.744184 0.439688 -0.160003 0.338476 0.511116 0.600647 -0.276385 -1.200466 -0.941141 0.462447 0.853283 0.754777 -0.943990 -1.073251 -0.152318 0.043447 0.446368 -0.143730 0.136242 -0.043031 -0.717414 -0.139966 0.328975 1.723028 -0.353570 -0.006057 0.423087 0.650826 -0.774830 -1.373721 -0.468551 -1.362802 0.149362 0.106994 0.033910 0.529739 1.202386 -2.012777 0.780618 -0.487137 0.113236 0.453633 0.468709 -0.803172 -1.800127 -0.475861 0.261413 1.154996 -0.336851 0.546117 0.684322 -0.755124 0.033065 0.030223 -0.068953 -0.397678 0.415001 -0.012869 -0.525673 -0.150429 0.566993 -0.453443 -0.431849 0.130630 0.582824 0.344441 -1.241049 0.549916 -0.002728 -0.265210 0.573103 0.100819 1.073758 -0.641958 -0.810822 0.713610 0.152472 0.078566 -0.417744 0.178091 0.641573 -0.097251 0.001049 -0.327502 -0.967254 0.403576 -0.531552 0.753306 0.345348 -0.462686 0.500581 -0.424639 -0.219763 -0.842052 -0.182769 -0.292690 -0.114670 -0.572793 -0.674023 -0.103517 0.860380 0.528980 0.391663 -0.567662 0.161387 1.110284 -0.871347 0.039877 0.677753 0.391029 -0.770002 0.284146 0.845753 -1.098053 0.146494 -0.432074 0.190191 -0.217347 -0.337142 0.828197 0.311263 0.548466 -0.360405 0.231022 0.142318 0.466226 0.605515 0.240671 0.034637 1.240318 0.941659 -0.183660 -0.471459 -0.737943 0.161761 -0.901649 -0.856758 0.142935 0.523899 -0.958288 0.190591 0.081170 1.165604 0.200931 0.233877 -0.049789 0.080679 +PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -6.877890 -8.659475 -6.458201 -14.389334 9.762407 13.879362 5.600525 -12.408352 -17.583344 0.689363 9.570273 -19.277461 0.517261 18.214674 -5.856416 19.111379 22.811533 1.685663 -11.880887 -0.910459 19.292005 1.165701 23.826940 20.354759 -12.208740 -1.669527 -4.577827 6.664099 5.159502 -2.834358 4.140429 -3.405214 8.850906 -21.966241 -9.840265 -8.176242 3.215798 6.326862 18.893690 -21.423279 4.779454 -2.029385 3.438642 -5.177859 -7.396137 -3.848811 8.727224 14.835701 0.402040 4.422318 12.874545 1.689101 -2.064808 4.461209 2.014185 3.002087 1.133664 -2.022508 -5.353942 -11.069118 -0.419187 0.252671 3.782397 14.641737 18.782658 4.244137 -0.788628 14.524529 5.244515 3.895956 11.252568 2.372425 -9.137778 0.722273 5.242649 -24.279322 -1.316673 -22.900739 -4.488062 -19.537277 -8.132587 4.576490 10.351942 0.718737 12.191775 5.816740 13.824343 -3.439385 -7.630536 16.911511 16.324370 -15.585623 -7.712364 -8.740973 -8.597767 4.258405 -8.168801 4.459420 7.691098 6.755873 -13.618025 -5.794441 5.211549 9.757986 -5.513491 -14.816365 5.966073 11.277232 -9.676082 -14.058970 6.666969 16.458796 -5.879158 -24.278122 -7.456577 -13.152737 6.927802 -0.749434 -5.533055 -16.759104 0.719086 6.796293 -3.300592 -9.694716 0.839815 5.624593 9.613593 9.067837 0.588779 3.976186 4.553953 29.329828 0.847469 -10.115256 3.739348 -2.439598 -1.625285 10.471754 -8.557521 -9.250241 -0.516709 -16.832615 5.609467 15.309291 -8.276146 -5.555820 9.275239 9.791937 1.474573 50.546747 3.941563 21.160512 17.277455 -14.983384 2.446885 -10.456360 2.859372 5.136197 3.786215 -3.305485 -25.385572 -16.042133 9.863080 15.432020 11.967597 -17.078312 -5.264426 -0.142898 -0.942626 0.027664 -2.498276 5.025614 1.397708 -11.451048 -3.104697 16.636471 33.192832 -7.025275 5.160607 11.307749 4.814306 -8.015695 -20.984371 -9.385074 -11.571268 3.775042 6.518861 3.999870 8.262312 19.800849 -15.620080 12.507386 -1.829992 3.997498 11.683667 8.508476 -18.867253 -14.623108 -6.611239 8.172471 16.577502 -8.016613 0.293375 8.233157 -13.601449 -1.321046 5.207343 -3.952599 -1.721855 5.495768 1.962804 -5.331579 -7.189863 10.825338 -4.866647 -2.026689 1.124376 11.982631 -0.506606 -11.375835 13.709114 0.693531 -7.478295 4.363212 -7.444248 19.117785 -11.910897 -12.378210 12.580377 -1.010990 -2.583274 -6.523661 4.464682 9.456647 7.914868 8.719493 -10.481767 -13.215340 9.664033 -7.062058 12.599219 6.158006 -2.893576 4.094820 -10.651506 -4.127684 -16.118921 -11.708805 -6.759624 5.094086 -17.896433 -6.863095 -2.690058 16.871496 7.763789 1.106366 -17.357433 2.790844 16.620512 -16.267183 -4.983557 9.419230 8.897313 -21.016670 1.921738 12.081487 -18.682803 4.714265 -4.248965 -1.835540 -7.024591 -12.861786 10.706703 7.847038 11.983493 -3.600669 3.797027 5.767695 7.131513 6.509271 6.680797 4.305075 21.578407 10.124256 -0.743965 -10.545490 -17.354319 6.393530 -18.096760 -21.155352 11.658179 5.433756 -14.233807 1.716146 2.918785 19.816670 4.494314 -3.585715 -4.308311 3.247721 +PE-benchmarks/subset-sum.cpp__main = -0.756010 -0.767883 0.303650 -2.068857 1.631369 1.162437 0.776119 -0.836818 -2.467157 -0.450318 0.919158 -2.142522 -0.655495 2.629749 -0.826822 1.622563 3.238511 0.654914 -1.080687 -0.590731 2.172669 -0.389532 3.125348 2.913764 -2.202867 0.018363 0.102296 1.122797 0.724337 0.917209 -0.204881 -1.323730 1.096415 -1.951128 -0.357121 -1.581367 0.176724 0.548518 1.484116 -3.370048 0.540774 0.089048 -0.127710 -0.480833 -0.458284 0.862018 1.749416 1.974985 -0.676087 1.184499 1.940481 0.277537 -0.258873 0.520540 0.579373 0.379373 0.641429 0.458221 -0.937364 -0.730516 -0.300620 -0.892623 0.280717 2.064425 2.672287 0.086202 -0.165496 0.950672 0.415019 0.543673 1.343827 0.448630 -0.123127 -0.009706 1.226882 -2.478006 -0.314270 -4.230690 -0.450692 -4.848823 -1.451974 -0.054575 2.179686 -0.396780 0.955654 0.062738 2.300025 -0.267405 -0.544590 2.057776 2.529733 -1.868631 -1.093422 -1.175519 -1.391182 0.801461 -1.189259 0.232289 1.118623 0.336232 -1.947762 -1.184586 0.788706 0.742857 -0.883967 -1.267119 0.363854 1.924156 -2.142859 -1.376448 -0.506174 1.636781 -0.165713 -3.362237 -0.849457 -1.470507 1.845633 0.199020 -0.996071 -1.612936 0.402178 1.042565 -0.887207 -0.853594 -0.207368 1.537180 1.088962 1.057187 0.226409 0.157289 0.598474 3.054056 1.100060 -1.529845 0.170123 0.073449 -0.568234 0.964144 -1.515238 -0.942248 0.801724 -2.052214 0.851176 1.251036 -1.400262 -0.791549 1.730171 0.672330 0.528420 6.592106 0.043221 2.664132 1.697961 -2.094089 0.608868 -0.710326 0.202054 0.907215 1.278467 0.008125 -2.586695 -1.974657 1.247909 2.402530 1.708058 -2.761697 -0.777178 -0.227153 -0.080025 0.070653 0.075950 0.483001 0.059595 -1.565176 -0.519650 1.592194 4.069241 -0.919335 -1.390640 0.885751 1.057927 -0.867166 -2.180151 -0.798543 -1.201690 0.580332 0.870094 0.070686 1.463733 2.865595 -4.667084 1.994485 -0.447697 -0.075682 1.523754 0.946417 -2.030397 -2.451669 -0.469036 1.229121 2.552696 -0.077527 0.168596 1.088004 -2.071568 -0.212099 0.427700 0.118494 -0.701876 1.070547 0.458016 -1.271556 -1.129558 0.096370 -0.499460 -0.315434 -0.302545 1.477362 -0.043860 -4.129923 1.985459 -0.084784 -1.001663 0.377297 -0.564003 2.084597 -2.058182 -2.313311 1.338799 -0.244396 -1.058146 -1.155898 0.164972 1.382295 0.485927 0.965711 -1.268189 -2.451093 1.736562 -0.874102 1.943124 1.025543 -0.283549 1.929454 -0.881771 -0.656309 -2.124365 -1.082301 0.596038 -0.289336 -1.805773 -0.420394 -0.645143 1.981506 1.726643 0.165586 -1.419077 -0.206164 2.473239 -2.230749 -0.575940 1.546603 1.502997 -1.818251 1.060523 1.922834 -2.518800 -0.000659 -1.137291 -0.523082 -0.671002 -1.488599 1.553872 0.149326 1.311293 -0.027910 0.529222 -0.120772 1.031197 0.507796 0.364442 0.282371 2.808640 3.095370 -1.170647 -0.353719 -2.235442 1.180439 -2.707301 -2.743184 0.891510 0.095296 -1.685619 0.314091 -0.032287 2.311934 0.446316 -0.346789 -0.653491 0.612596 +PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -7.039929 -7.432297 -5.520735 -13.903888 10.105451 14.034556 4.943812 -11.943506 -15.645802 1.412062 8.559370 -14.502067 -0.467346 17.589427 -6.663320 16.638426 19.771663 1.753046 -9.816943 -2.134293 18.693751 3.733249 22.067614 18.730885 -14.361910 -1.857559 1.446900 4.692427 7.055263 0.268253 0.650718 -6.595868 9.744314 -19.250453 -7.486643 -9.280802 2.815750 5.073285 18.151313 -18.766616 4.085569 -3.596368 -0.740507 -3.912048 -6.038448 0.602183 8.830722 14.534903 -3.842617 6.355838 14.259320 4.128734 -3.819986 3.644237 1.742846 2.931196 0.196390 3.681735 -2.966560 -10.419945 -0.984610 0.870865 2.822131 15.099358 18.174422 1.949974 -0.337966 12.476222 4.185257 3.288243 9.579797 3.266451 -3.997380 0.878257 7.366569 -19.674071 -3.119778 -25.707034 -4.417034 -24.421926 -6.183098 2.955483 8.010151 -5.870326 11.427253 3.665961 14.995188 -1.565886 -6.858479 16.191899 15.816317 -15.395914 -6.466014 -7.655324 -10.171921 4.155571 -8.886936 5.179050 6.927399 2.265053 -13.064362 -10.558354 0.642995 8.693640 -6.071845 -14.861541 4.067854 9.803869 -11.232465 -11.796606 3.328912 12.065141 -5.891988 -23.787318 -10.986352 -12.623424 11.368875 -1.901728 -5.394815 -15.914494 0.564720 8.318605 -4.030367 -10.918793 7.041276 4.450612 11.449603 9.141529 0.116769 -0.212020 4.206247 27.538724 4.013679 -10.782325 1.928978 -2.184252 -1.795424 8.871007 -10.134930 -6.395663 4.859980 -15.308763 7.356088 14.316704 -8.111762 -4.802507 17.533278 5.396439 2.220134 48.405094 2.306733 18.893547 15.169904 -15.458296 -1.814786 -8.767862 2.452536 7.165546 5.833835 -1.433664 -20.046186 -14.613252 9.712933 15.564159 11.378083 -17.833419 -4.493094 0.035722 -0.486564 -1.452169 -2.522114 3.471718 -0.607126 -11.278436 -3.378382 14.425775 27.067922 -8.306862 -0.229822 8.788074 10.399915 -7.617224 -13.132586 -8.163920 -12.855028 4.569346 9.860038 2.426544 10.125936 19.285746 -22.412732 11.421980 -2.393818 1.891020 7.147849 9.684199 -16.883062 -9.032381 -2.697022 7.620647 13.247545 -4.620891 3.835519 8.829455 -14.146801 -0.993179 4.247616 -2.164657 -3.767594 6.176345 5.236548 -7.024804 -8.164737 9.419440 -3.187879 -4.566510 0.661866 11.603384 -3.366216 -21.093225 13.232880 0.127415 -7.391975 3.812416 -6.436693 17.318489 -14.156256 -14.283116 12.297013 -0.237969 -0.548611 -4.561814 3.784675 10.440988 7.270003 10.952120 -11.458956 -16.082044 8.646658 -5.283279 12.358364 6.053243 -1.631869 7.917585 -19.100447 -2.728487 -17.823091 -8.916709 0.691574 4.777976 -16.274085 -5.792554 -2.503882 15.987806 9.431499 -0.133035 -13.984803 1.252163 14.629534 -16.514956 -1.336375 8.547761 16.932098 -17.800207 2.574826 10.990825 -15.987609 2.696737 -4.295206 -1.890902 -6.433344 -12.203822 11.744134 5.106909 11.677877 -2.029899 4.566562 3.666146 7.495306 5.696490 5.475555 4.539782 16.656887 14.615168 -4.701497 -9.160449 -16.614579 7.107363 -18.637207 -21.501546 10.818408 -0.885790 -12.384544 1.622050 -0.857806 18.775631 3.886639 -1.032687 -3.242603 3.101442 +PE-benchmarks/rat-in-a-maze.cpp__main = -0.229882 -0.080224 0.377036 -0.671965 0.720899 0.221157 0.375223 0.035456 -1.049448 -0.495968 0.168993 -1.190094 -0.645251 1.217861 -0.213606 0.445257 1.493753 0.435501 -0.354195 -0.099640 0.541085 -0.367874 1.202526 1.167853 -0.761567 0.152262 -0.324012 0.341184 -0.174923 0.855832 -0.137672 -0.955940 0.367119 -0.267662 0.104023 -0.572584 -0.079297 0.193183 0.077969 -1.629834 0.246104 0.791449 0.433680 -0.308625 -0.049763 0.319684 1.034892 0.776420 -0.084889 0.380550 0.443843 0.024415 0.167003 0.266720 0.452893 0.128642 0.366939 -0.320319 -0.798118 -0.075690 -0.262247 -0.719837 -0.119239 0.766455 1.020850 0.067039 -0.161353 0.023159 -0.055006 0.341328 0.433599 0.171744 0.213411 -0.049695 0.408140 -0.284898 -0.062635 -1.154920 -0.106133 -2.150715 -0.798138 -0.155451 1.291288 0.759351 0.160858 -0.387089 1.036174 -0.285217 -0.042272 0.606309 1.314628 -0.662720 -0.543520 -0.561265 -0.461235 0.372761 -0.432193 -0.205063 0.445133 0.089851 -0.918430 -0.302537 0.464847 0.112883 -0.327866 -0.018255 0.124131 0.921986 -1.105064 -0.404701 -0.564840 0.553276 0.222214 -1.335558 -0.017085 -0.255346 -0.054869 0.407136 -0.593236 -0.476327 0.442992 0.201165 -0.507878 -0.120385 -0.960046 1.004774 -0.010233 0.260622 0.242351 0.202173 0.289115 0.855830 0.437367 -0.609177 0.162695 0.108135 -0.159390 0.286820 -0.449658 -0.561984 -0.003294 -0.899362 0.170329 0.207977 -0.706505 -0.199316 -0.590864 0.223298 0.290765 1.844938 -0.232905 1.036214 0.461727 -0.921556 0.796068 -0.133267 -0.140739 0.023593 0.665398 0.250937 -0.414725 -0.789393 0.610762 1.113012 0.792974 -0.720291 -0.059991 -0.163325 0.049663 0.092646 0.332447 0.278294 0.226617 -0.805806 -0.251895 0.447559 1.737032 -0.252453 -0.810891 0.394131 0.209001 0.003813 -0.763472 -0.199183 -0.378517 0.117984 0.053555 -0.137160 0.504019 1.264270 -1.811560 1.126430 -0.175804 -0.245660 0.906911 0.010485 -0.640965 -1.209184 -0.346017 0.726056 1.346523 0.125129 -0.145182 0.114107 -0.865921 -0.157752 0.065503 0.217806 -0.328118 0.514920 -0.106553 -0.633012 -0.451115 -0.531445 -0.204906 -0.172234 -0.392937 0.508182 0.670747 -1.450134 0.997635 0.057105 -0.298098 -0.041265 0.064798 0.505998 -0.730472 -1.039465 0.304368 -0.393172 -0.931438 -0.466834 -0.084324 0.446983 0.053728 -0.013334 -0.214558 -0.894727 1.044157 -0.168780 0.960207 0.477011 -0.059622 0.774233 1.048613 -0.474518 -0.356842 -0.537351 0.193730 -0.663175 -0.464987 0.134503 -0.431695 0.773075 0.834649 0.174370 -0.502030 -0.398387 1.061941 -0.452438 -0.356028 0.898323 -0.498953 -0.475508 0.530298 1.059743 -0.967237 -0.177243 -0.746054 -0.028237 -0.339871 -0.584318 0.359930 -0.216986 0.240534 0.160497 -0.075668 -0.397872 0.264692 0.172628 -0.245284 -0.063126 1.370176 0.707142 -0.541522 0.491130 -0.818181 0.499299 -1.136626 -0.836328 0.145575 0.257687 -0.779930 0.049383 0.088099 0.623765 -0.006649 -0.143355 -0.433367 0.231688 +PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -0.837625 -1.002601 -0.480240 -2.077852 1.150755 1.112085 0.595764 -0.728367 -2.387052 -0.462739 0.653730 -2.133486 -0.088311 2.479245 -0.561395 2.133511 3.280480 0.575150 -1.000553 0.117335 2.408304 -1.044547 2.554480 2.481893 -1.638244 -0.221635 -0.379202 1.193265 0.201136 0.779819 0.450872 -1.225856 0.620497 -2.270062 -0.469800 -1.861370 0.517606 1.248580 1.720899 -3.513209 0.681399 0.722376 0.727554 -0.747127 -0.746472 -0.362682 1.089937 1.889901 -0.618455 0.555170 1.721467 0.416376 -0.328747 0.515301 0.223001 0.538549 -0.258591 -0.139910 -0.895858 -0.846780 -0.003369 -0.633104 0.808647 1.702488 2.501045 0.110857 0.082055 1.310171 0.317144 0.481997 1.279974 0.112832 -1.004478 -0.488544 0.803863 -2.709491 -0.328146 -3.519410 -0.117683 -4.000548 -1.143235 0.207095 1.672234 1.064978 1.146714 -0.217556 1.796256 -0.767079 -0.428073 2.309259 1.938889 -1.578255 -0.939543 -1.752034 -1.410965 0.959908 -1.047106 -0.402485 1.291244 0.529750 -1.572029 -0.823669 0.965956 1.099357 -0.686530 -1.783365 0.547495 1.659681 -1.712849 -1.950631 0.219485 2.139024 -0.641297 -3.052753 -0.238262 -1.772769 0.145795 -0.020779 -0.583266 -1.764936 0.129181 0.878317 -0.536473 -0.955495 -0.968110 1.704090 0.860514 0.678004 0.317842 0.091922 0.271625 3.113536 0.372551 -1.376235 0.152203 0.307327 -0.602430 0.686107 -1.612295 -1.267526 0.508307 -2.247176 0.162393 1.410421 -1.180046 -0.398099 1.160143 0.785075 0.636726 7.408516 0.353470 2.680434 1.894750 -1.854660 1.585981 -0.443010 0.062576 0.682488 0.796873 -0.278080 -3.293306 -1.823531 0.825212 1.897248 1.705300 -1.890594 -1.171408 -0.395333 -0.165952 0.379592 -0.241872 0.502949 -0.093556 -1.717676 -0.385892 1.638230 4.372721 -0.409883 0.447535 1.221365 1.420333 -1.737757 -3.261163 -0.891279 -2.189377 0.252118 0.223404 -0.093161 1.184266 2.539307 -3.395996 1.789983 -0.186974 0.328107 1.461676 0.495110 -2.076683 -3.862829 -0.697383 1.125563 2.904874 -1.129296 0.896182 0.910060 -1.663995 -0.086575 0.444125 -0.206759 -0.393959 0.704880 -0.226331 -0.889857 -0.891765 0.959155 -1.149295 -0.636961 -0.115527 1.161870 0.887222 -1.825955 1.704507 -0.186361 -0.666576 0.668121 -0.406868 2.029840 -1.860631 -1.849897 1.427241 0.257827 -0.442414 -0.905543 0.397764 1.504779 0.386265 0.221542 -0.677575 -2.604577 1.224360 -0.967159 1.441808 0.793875 -0.486522 0.742616 0.195736 -0.456047 -2.051693 -1.469390 -0.772554 -0.051354 -1.904970 -0.827740 -0.419765 2.008085 1.331740 0.305237 -1.842725 0.379290 2.466604 -1.187834 -0.482894 1.365349 0.046975 -2.201319 0.112947 1.800765 -2.694710 0.212795 -1.077526 0.539980 -0.301853 -1.449983 1.262913 0.539170 1.231434 -0.160200 0.310020 0.060034 0.801944 1.134807 0.333615 0.183695 3.090215 1.319376 -0.186468 -0.695265 -1.881092 0.399237 -2.366237 -2.283064 0.602989 0.739106 -1.738464 0.553650 0.877393 2.333083 0.298493 0.590459 -0.156918 0.005925 +PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -1.212541 -1.477951 -0.316083 -2.752230 1.630749 1.319781 0.874866 -1.443352 -2.877509 -0.136563 0.972515 -2.381350 0.149318 3.387279 -0.652599 3.136628 3.655201 0.759690 -1.457551 -0.225266 3.148735 -0.769997 3.154143 2.760140 -2.034112 -0.238697 0.245430 1.375971 0.551503 0.937647 0.064527 -1.245141 0.866413 -3.269896 -0.621085 -1.938240 0.428980 1.507023 2.740960 -3.753706 0.928024 0.437830 1.113013 -1.028191 -1.107957 -1.518588 1.254918 2.477422 -0.649432 0.924490 2.046779 0.140809 -0.387095 0.672338 0.906563 1.247126 0.322224 0.132779 -1.099708 -1.209859 -0.244844 -0.314922 1.151719 2.230161 2.843947 0.146367 -0.082085 1.950170 0.661594 0.741826 1.668021 0.272789 -1.725842 -0.573175 1.176677 -3.966345 -0.147623 -4.745193 -0.343840 -4.285793 -1.549543 0.570426 1.690178 0.009662 1.966476 0.744955 2.440541 -0.979122 -0.864017 2.058841 2.640064 -2.211829 -1.217907 -1.745376 -1.892341 1.035448 -1.270221 -0.361669 1.732457 0.354994 -2.171655 -1.349877 1.054216 1.688914 -0.894551 -2.127435 0.850039 2.280123 -1.866084 -2.924121 0.327433 2.342063 -1.247809 -3.704822 -0.873446 -1.939356 0.639590 -0.018621 -1.135962 -2.958937 0.400738 1.397356 -0.873048 -1.709975 0.185198 1.200416 1.311226 1.190955 0.330039 -0.045750 0.300120 4.228684 1.102406 -1.945879 0.442260 0.261771 -0.608524 1.108049 -1.626258 -1.886770 0.094101 -2.797251 0.214182 2.081050 -1.598384 -0.438472 2.304772 1.231539 0.576203 8.194011 0.252997 2.994842 2.403339 -2.447674 0.878352 -0.621727 0.213016 0.851775 1.261760 -0.337115 -3.309390 -2.516000 1.378693 2.616264 2.293527 -2.284709 -2.121331 -0.639003 -0.172958 0.710505 -0.385291 0.569275 0.032084 -2.249635 -0.537707 1.778620 4.412199 -1.253804 -1.156896 1.608533 1.781037 -1.886288 -3.398256 -1.313209 -3.444976 0.478315 0.151152 -0.142466 1.639099 3.371535 -4.461490 2.463818 -0.460150 0.017757 2.172088 0.967506 -2.528857 -3.897657 -1.059395 1.400177 3.066633 -1.378443 0.729135 1.311060 -2.290866 -0.104132 0.300608 -0.312171 -0.641134 1.100732 -0.297972 -1.238833 -1.031061 1.457698 -0.957857 -1.244659 0.185188 1.663877 0.831767 -2.645015 2.226694 0.046403 -0.812496 1.507638 -0.444150 2.711675 -2.243696 -2.504027 1.890951 0.407466 0.076404 -0.746498 0.525751 1.964492 0.783112 0.527923 -1.107685 -2.100715 1.106081 -1.132240 2.258843 1.033177 -0.691832 1.069157 -1.014846 -0.702113 -2.207002 -0.953137 -1.105674 0.202359 -2.313813 -2.465073 -0.554602 2.847287 1.602197 0.446567 -1.849914 -0.150640 2.795159 -2.600187 -0.305939 1.878952 0.421948 -2.781010 0.109501 2.425264 -2.954678 0.332532 -1.003660 0.237166 -0.763419 -1.774726 1.787107 0.820393 1.558310 -0.496850 0.121926 0.475098 1.025438 1.489372 0.724926 0.346666 3.041421 1.607502 -0.720758 -1.431422 -2.455284 0.538391 -3.052725 -2.773331 1.158702 0.767776 -2.454714 0.546415 0.572101 2.893215 0.366069 0.390613 -0.270577 -0.079285 +PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = -0.998252 -0.977897 0.309071 -2.370820 1.854626 1.050769 1.014867 -0.649286 -3.189930 -0.848667 0.840510 -3.038641 -0.877067 3.612256 -0.675203 2.254374 4.296219 1.061221 -1.454545 -0.253134 2.719658 -0.982900 3.516963 3.344221 -2.280035 0.041383 -0.556475 1.103536 0.251084 1.378346 0.000513 -1.726589 1.036419 -2.298795 -0.229794 -1.951636 0.209399 1.110384 1.579065 -4.518596 0.884456 1.167391 1.265905 -1.013035 -0.712348 0.200876 2.235531 2.528140 -0.631149 0.882883 1.919992 0.099015 -0.028668 0.737193 0.731483 0.694482 0.441002 -0.148722 -1.696390 -0.814487 -0.441771 -1.305398 0.599809 2.399156 3.142149 0.273387 -0.233700 1.222846 0.559153 0.939640 1.577491 0.369560 -0.356908 -0.509856 1.282558 -2.729279 -0.469236 -4.618249 -0.339642 -5.636627 -1.964261 0.054856 2.960233 1.162103 1.175207 -0.228513 2.823624 -0.929617 -0.521012 2.431929 3.335630 -2.192608 -1.467158 -2.005806 -1.851575 1.152917 -1.368950 -0.353740 1.538228 0.478780 -2.551346 -1.269256 1.086587 1.026363 -0.967421 -1.321223 0.638890 2.613619 -2.527603 -2.022306 -0.542748 2.229584 -0.207410 -4.085959 -0.093987 -1.666387 0.329370 0.632354 -1.394325 -2.131660 0.726055 0.980498 -1.270657 -1.051734 -1.549675 2.333839 0.633307 1.020384 0.467432 0.225169 0.603739 3.294214 1.310177 -2.031696 0.453556 0.271902 -0.652163 1.021232 -1.782748 -1.848131 0.458984 -2.909621 0.447654 1.387446 -1.887638 -0.721347 0.453120 0.965768 0.780071 6.923949 -0.068349 3.268130 1.989880 -2.649456 2.038373 -0.548227 -0.059970 0.650901 1.677626 0.132315 -2.721735 -2.580045 1.580858 3.060921 2.410502 -2.380739 -1.274962 -0.518959 -0.136866 0.445793 0.285926 0.815943 0.297271 -2.406838 -0.681894 1.841601 5.132279 -0.964759 -1.236405 1.427904 1.130390 -0.987827 -3.297940 -1.031952 -2.271040 0.422676 0.447664 -0.186675 1.679103 3.721102 -4.843383 2.961991 -0.590568 -0.133749 2.231956 0.541314 -2.421003 -3.808550 -0.966616 1.814634 3.694262 -0.475370 -0.166472 0.937708 -2.534639 -0.282954 0.389181 0.117272 -0.775945 1.315852 -0.327248 -1.432317 -1.275420 0.110048 -0.931387 -0.838737 -0.393734 1.680066 1.134295 -3.171344 2.701639 -0.134603 -0.912986 0.598611 -0.298196 2.227888 -2.163340 -2.782035 1.532650 -0.279195 -1.386611 -1.488758 0.219092 1.839143 0.544883 0.288404 -0.910916 -3.014907 2.172665 -0.999632 2.633344 1.268668 -0.460099 1.778198 1.437510 -0.970647 -2.092916 -1.404027 -0.405268 -0.707831 -2.111586 -1.188192 -0.890061 2.666690 2.078993 0.326787 -1.850517 -0.565185 3.162148 -2.044654 -0.985637 2.272032 -0.550644 -2.237754 0.986993 2.834942 -3.194236 -0.066623 -1.727686 0.299131 -0.813106 -1.886636 1.481271 0.195287 1.260246 -0.120441 0.149022 -0.159973 0.994040 1.091516 0.083695 0.015631 3.921154 1.992529 -1.149034 -0.079498 -2.622169 1.264150 -3.393227 -2.844282 0.859855 1.003234 -2.416461 0.430470 0.506061 2.594547 0.123007 -0.119291 -0.869830 0.420926 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = -1.055375 -0.889331 -0.022680 -2.685578 2.077414 2.159963 0.992681 -1.113535 -3.117763 -0.811043 0.921320 -3.408858 -0.831180 3.595600 -0.894937 2.636887 4.804179 0.708324 -1.491025 0.048326 3.061637 -0.717951 4.301632 3.766404 -2.330034 -0.083585 -0.627295 1.748468 -0.043993 1.548219 0.291171 -2.383427 1.295813 -2.827118 -0.906670 -2.266430 0.335805 1.027059 2.087249 -4.877920 0.849103 1.085179 -0.080013 -1.015452 -0.832061 -0.380958 2.444954 2.576801 -0.311452 0.912993 2.066269 0.584384 -0.327048 0.814910 0.819893 0.638737 0.196497 -0.524978 -1.590294 -1.267209 -0.422895 -0.980834 0.355359 2.488202 3.552833 0.348684 -0.173709 1.581105 0.063014 0.699804 1.605872 0.381013 -0.679146 -0.117905 1.226139 -3.379239 -0.434040 -4.501459 -0.519054 -5.368069 -1.872730 0.109138 2.525204 1.362055 1.497902 -0.502898 2.760787 -1.033409 -0.610199 3.289872 3.509622 -2.498169 -1.423530 -2.108101 -1.598432 0.952861 -1.443530 -0.257201 1.306199 0.518450 -2.537281 -1.163803 1.384415 1.263268 -0.955902 -2.202383 0.724573 2.522878 -2.790524 -2.243628 -0.264584 2.899142 -0.544234 -4.672643 -1.247198 -1.919784 0.954887 0.339375 -1.211027 -2.610665 0.717417 1.341524 -0.914995 -1.343860 -0.741259 2.462971 1.349335 1.136049 0.475181 0.554701 0.723902 4.724224 0.891148 -1.654854 0.429150 0.049922 -0.628657 1.138517 -1.766284 -1.530175 -0.010040 -2.989142 0.550333 2.301771 -1.784481 -0.730598 0.676146 1.072094 0.794355 10.542529 -0.004974 3.689135 2.568679 -3.051753 1.566479 -1.112786 -0.104741 0.466699 1.191376 0.176835 -4.788247 -2.577493 1.769096 2.930206 2.370128 -3.283624 -0.702577 -0.470504 -0.018012 0.121394 0.028664 0.822452 0.375353 -2.467627 -0.648879 2.539373 6.769291 -1.013598 -0.818701 1.832577 1.169228 -1.513576 -3.981926 -1.188026 -1.824113 0.412835 1.050332 -0.126144 1.573218 3.733015 -4.772952 2.681213 -0.384484 -0.090266 2.625801 1.081793 -2.878513 -4.092773 -1.232312 2.116712 4.086573 -0.809842 0.689577 0.801646 -2.458665 -0.234861 0.685457 0.000000 -0.547944 1.220621 0.016211 -1.850337 -1.436684 0.377973 -1.132100 -0.499777 -0.655822 1.691833 0.949061 -3.760259 2.968890 0.214684 -0.905187 0.646466 -0.523223 3.343937 -2.440361 -3.019901 1.961092 -0.433385 -1.504113 -1.169976 0.345967 1.759940 1.098549 0.824043 -1.325461 -3.305207 2.233477 -0.931832 2.530724 1.214528 -0.291695 1.723945 -0.044820 -0.992368 -2.755827 -2.617679 0.065988 -0.267853 -2.671741 -0.774036 -0.836525 2.855608 1.961484 0.303019 -2.849705 -0.321384 3.513716 -2.467311 -0.551022 2.218831 0.839135 -3.278092 0.539054 2.783547 -3.497857 0.089232 -1.464878 -0.016930 -1.142027 -2.182558 1.432173 0.403591 1.501169 0.087548 0.351271 -0.269866 0.881661 1.083274 0.352963 0.278681 4.351350 2.785451 -0.851342 -0.517556 -2.791777 1.104413 -3.462933 -3.681327 1.214053 0.647165 -2.233574 0.364155 0.826342 3.166139 0.478254 0.062788 -0.549804 0.268386 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = -0.413558 0.520414 0.918073 -1.000680 1.167729 1.111363 0.363366 -0.409894 -0.809124 -0.334697 -0.185619 -1.054074 -0.874397 1.462733 -0.571759 0.479407 1.973457 0.463213 -0.345049 -0.150545 0.939258 -0.266490 1.743616 1.534987 -1.316590 0.010890 0.659243 0.628381 -0.072929 1.512250 -0.986705 -1.354492 0.491661 -0.440593 0.327186 -0.939077 0.044680 -0.216140 0.200079 -2.020084 0.181612 0.136399 -0.320284 -0.318613 -0.139177 0.165356 1.784695 1.036830 -0.258466 -0.035986 0.707193 0.575288 -0.119295 0.347083 0.622148 0.557206 0.998461 0.187839 -0.657221 -0.270546 -0.393433 -0.628559 -0.071148 1.320021 1.491047 0.274455 0.031759 0.162583 -0.243773 0.161407 0.076277 0.302819 0.340540 0.708070 0.505178 -0.987275 0.172498 -1.896617 -0.314978 -2.117939 -0.852728 -0.823392 0.244782 0.092746 0.712894 -0.266449 1.500928 -0.138039 0.372286 0.438340 2.020364 -1.416161 -0.517341 -0.997348 -0.772596 0.258324 -0.653284 -0.002679 0.186395 -0.424102 -1.107367 -1.250694 0.586851 0.465177 -0.484917 -0.214534 -0.011614 1.227447 -1.170831 -0.740017 -1.100168 0.044657 -0.351707 -2.029487 -0.385520 -0.547494 0.697595 0.219561 -0.494902 -1.584939 0.487550 1.309114 -0.559641 -0.800498 -0.304837 1.378636 0.646246 -0.039468 0.168740 -0.252690 0.403768 1.481646 1.141670 -0.645318 -0.090159 0.014020 -0.836210 -0.218630 -0.918740 -0.241331 0.101664 -1.104196 0.025103 1.186214 -0.855873 0.111935 0.413294 -0.327846 0.872183 3.906630 -0.577244 0.936033 0.197275 -1.763992 0.886680 -0.137829 -0.517367 -0.004463 0.807979 0.776664 -1.900719 -1.072107 0.818932 1.407558 0.946336 -1.243556 -0.179189 -0.664026 -0.137493 -0.182379 0.162643 0.370932 -0.311897 -0.943849 -0.454070 0.686284 2.523994 -0.800267 -1.787862 0.644019 0.202549 -0.197247 -1.057096 -0.412223 -0.635664 0.170763 0.272427 -0.325469 0.871045 1.723919 -2.826367 1.320559 -0.356695 -0.940108 1.423020 -0.101188 -0.530766 -0.660345 0.250108 1.475730 1.423705 0.269507 -0.043771 -0.135033 -1.218137 -0.186395 0.072631 0.803396 -0.566810 0.647405 0.429440 -1.539802 -1.072958 -0.663683 -0.104948 -0.785077 -0.589623 0.534518 0.002435 -2.775168 1.860860 0.209396 -0.159756 0.430098 -0.319982 0.673216 -1.325312 -1.768722 0.666714 -0.120133 -0.206874 -0.259959 -0.033140 0.947916 0.251625 0.492061 -0.972132 -1.795928 0.709735 -0.009191 1.064555 0.535603 0.666437 1.206359 0.433648 -0.471658 -1.104026 -0.666440 0.614577 -0.136715 -0.906617 -0.425653 -0.509259 1.292945 1.557387 -0.134046 -0.299747 -0.746107 1.308723 -1.163720 -0.137361 1.018069 0.432503 -1.004742 -0.128537 1.178555 -0.975051 -0.916064 -0.649653 -0.295774 -0.507369 -1.230970 0.260688 -0.786665 0.284978 0.706108 -0.105135 -0.645451 0.437808 0.194686 0.045575 0.089161 1.344036 1.420196 -0.912694 0.387580 -1.104826 0.747483 -1.876151 -1.406909 0.454626 -0.349884 -0.642901 0.031553 0.131096 0.907069 -0.271396 0.309242 -0.001473 -0.407595 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -2.367307 -2.249852 0.943411 -6.056240 5.900784 4.111251 2.400064 -3.108510 -6.623825 -0.859319 2.136702 -6.572644 -1.589431 8.052917 -2.623479 6.550908 9.468836 1.153551 -3.278789 -0.532250 7.414252 -1.120186 9.271400 6.327974 -6.172467 -0.462725 -1.629933 3.875614 1.303557 3.195350 0.377916 -2.837540 2.935848 -6.509351 -1.832797 -4.048833 1.573982 2.146064 4.373500 -9.671569 1.811729 1.420999 0.427425 -1.670200 -1.711482 -0.013909 4.721661 6.092353 -1.381053 2.182897 4.604657 0.749620 -0.255119 2.329069 0.287525 1.439749 1.550002 -1.525169 -4.297085 -3.338111 -1.132789 -2.642691 2.111811 5.872560 7.810581 0.691277 0.131450 5.126071 0.899169 1.957099 4.320354 1.142482 -2.370092 -0.002201 3.604679 -6.816434 -0.567707 -8.545041 -2.132382 -9.830312 -4.265148 -0.520445 4.483803 1.970916 4.043359 0.778599 6.380676 -1.183654 -1.338635 6.707032 7.156984 -5.915480 -3.015618 -5.496349 -4.107427 1.733766 -3.709911 -0.724205 2.508514 2.015508 -5.647790 -3.135132 2.286992 2.958074 -1.958976 -4.307298 0.986826 5.871768 -5.976261 -6.196612 -0.263782 5.614985 -2.651282 -9.754127 -1.785223 -3.402075 3.453442 0.432965 -0.392184 -5.564820 1.179785 4.060757 -2.032087 -3.180787 -1.736698 4.950809 3.267945 2.594895 1.113119 1.121369 0.704262 9.201994 3.263311 -3.465731 -0.201490 0.034983 -0.968497 2.873767 -3.428054 -3.157114 0.083110 -6.857786 0.610068 5.649633 -3.418260 -1.904619 0.730307 2.259108 2.394189 17.196715 0.385186 7.193157 4.707308 -6.929204 2.240894 -2.085125 0.366490 1.818727 2.394170 -0.112488 -8.355979 -6.429801 3.797745 5.672540 5.177442 -6.597940 -1.955225 -1.525450 -0.118824 0.798004 -1.047511 3.255723 0.067614 -5.918882 -1.094773 3.879033 13.218562 -2.709667 -2.529863 5.224002 1.719680 -3.747092 -8.031503 -3.600887 -3.470944 0.189357 2.062268 0.047308 2.842304 8.496346 -9.091751 5.873788 -0.615804 0.060237 5.102727 0.904888 -5.561683 -7.052703 -3.070970 4.438580 7.449576 -2.059953 -0.006065 2.176935 -5.338610 0.708394 1.273425 0.011982 -0.268782 2.517952 -0.162666 -3.772856 -3.701622 1.484600 -1.760022 -0.549792 -0.451659 3.685573 0.975896 -7.056657 6.123234 -1.019097 -2.527285 2.761878 -0.750253 7.410008 -4.684024 -6.296399 4.521518 -0.800047 -2.800346 -3.856103 1.707722 3.890657 2.834827 1.603377 -3.461546 -6.771637 3.349343 -2.492431 4.336898 2.859808 -0.236520 4.175690 0.124905 -2.712628 -5.732372 -4.458937 -1.000038 0.495929 -5.173506 -2.351433 -1.504148 6.913943 4.447242 0.220240 -4.694388 -1.061131 7.386801 -6.064398 -2.380105 5.602034 0.870561 -6.907924 1.498482 6.630174 -6.406690 -0.260835 -2.311109 0.842741 -2.512927 -4.282535 3.549740 1.078542 2.961741 -0.332461 1.434498 -0.438733 2.080968 2.247479 1.254570 -0.577890 9.573834 6.240949 -2.483254 -1.567731 -5.340876 2.790115 -8.067336 -7.029469 2.999304 0.887282 -4.215596 2.156392 1.631570 7.007150 1.090112 -0.814851 -0.986441 -0.532421 +PE-benchmarks/cutting-a-rod.cpp__main = -0.440941 -0.502763 0.293637 -1.261563 0.982429 0.546198 0.554842 -0.331385 -1.717778 -0.572207 0.672834 -1.910424 -0.737319 1.765677 -0.523085 0.912009 2.308489 0.449860 -0.743936 -0.310067 1.237917 -0.469624 2.143651 2.020420 -1.394984 0.062932 -0.415975 0.787511 0.364320 0.703937 0.109932 -1.006360 0.716856 -0.927328 -0.067807 -0.920571 0.089700 0.355961 0.682275 -2.449805 0.357810 0.707774 0.305607 -0.359667 -0.166631 0.942721 1.256085 1.297481 -0.302489 0.721931 1.226304 0.014048 0.074101 0.353590 0.404948 -0.141656 0.594989 -0.026636 -0.916195 -0.386879 -0.209782 -0.887228 -0.023787 1.322620 1.904375 0.051122 -0.134575 0.353022 0.256054 0.481001 0.939101 0.278715 0.114574 -0.005615 0.750193 -1.122477 -0.083645 -2.543425 -0.224457 -3.628459 -1.089517 -0.012265 2.021135 0.512095 0.298963 -0.423004 1.500298 -0.146158 -0.380475 1.372723 1.808899 -1.034074 -0.822507 -0.775516 -0.758942 0.632751 -0.844403 0.067528 0.951805 0.410969 -1.351389 -0.348229 0.685510 0.295407 -0.554078 -0.466311 0.225636 1.283006 -1.522523 -0.626584 -0.395107 1.209147 0.326238 -2.379138 -0.169906 -0.883861 0.636489 0.322171 -0.714494 -0.609928 0.340255 0.274077 -0.625109 -0.188324 -1.134138 1.486010 0.503144 0.714714 0.232152 0.381702 0.485853 1.721493 0.412062 -1.003669 0.163085 0.023505 -0.370546 0.751332 -0.954006 -0.731192 0.607832 -1.339569 0.522908 0.488570 -0.960459 -0.537314 0.180116 0.561305 0.318174 4.135136 0.000260 1.985189 1.224030 -1.288330 0.960318 -0.386973 0.103358 0.419345 0.818890 0.033274 -1.486873 -1.291540 0.897787 1.642771 1.134382 -1.803887 -0.181874 0.029676 0.039532 -0.047613 0.253540 0.421294 0.215506 -1.112663 -0.334239 1.169364 2.886679 -0.399449 -0.801630 0.551108 0.525304 -0.358967 -1.622832 -0.419575 -0.440087 0.350822 0.333313 0.116187 0.875971 1.912375 -3.088209 1.466469 -0.031074 0.024190 1.417294 0.398717 -1.500509 -2.259546 -0.406049 0.857967 1.917060 0.011340 -0.083796 0.633407 -1.363873 -0.170119 0.224220 0.054796 -0.412781 0.675051 0.080399 -0.667447 -0.748727 -0.441119 -0.379587 0.005556 -0.426617 0.975553 0.536994 -2.511390 1.355485 -0.077630 -0.731400 -0.166419 -0.296847 1.189974 -1.328678 -1.417649 0.600923 -0.546243 -1.377725 -1.105681 0.049460 0.664252 0.120016 0.467197 -0.667945 -1.605302 1.556096 -0.706363 1.325911 0.694537 -0.239147 1.154529 0.624327 -0.499986 -1.194750 -0.848341 0.371753 -0.585833 -1.183304 0.265963 -0.465731 1.174684 1.105010 0.105311 -1.056538 -0.167441 1.658369 -1.126190 -0.700006 1.123989 0.296144 -1.130837 0.940777 1.353822 -1.765663 0.069679 -1.049558 -0.450420 -0.471521 -0.989308 0.920147 0.092939 0.770977 -0.001568 0.235014 -0.279695 0.588195 0.278387 -0.115010 0.108467 2.239507 1.991568 -0.704213 0.176029 -1.571527 0.819862 -1.785730 -1.778667 0.531060 0.203228 -1.195806 0.173242 0.252121 1.436909 0.330432 -0.416043 -0.695369 0.681566 +PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -1.731879 -2.025685 -1.107313 -3.578651 2.337193 2.996323 1.361996 -2.430977 -4.473785 -0.329873 1.824713 -4.358403 -0.333374 4.662754 -1.451111 4.454300 6.525124 1.037197 -2.461401 -0.415615 5.131136 -1.375416 6.166106 5.376178 -3.345264 -0.431556 -0.368606 1.957890 1.293598 0.785788 0.438007 -1.617981 2.382699 -5.346338 -1.222261 -3.327053 0.790247 1.825322 4.426754 -6.463138 1.194784 -0.080074 0.616271 -1.188448 -1.445968 1.007721 2.381892 3.671903 -0.643588 1.449730 3.685000 0.569606 -0.576663 1.069929 0.610930 0.990255 0.680309 0.677310 -1.500802 -2.128712 -0.319481 -0.900699 1.130325 3.558097 5.388911 0.354881 0.051432 2.888689 1.036415 0.940573 2.619645 0.506033 -1.343128 -0.294394 1.565192 -6.435753 -0.580272 -7.988026 -1.032770 -8.473790 -2.100853 0.453348 2.994575 -0.015932 2.552726 0.327193 3.655409 -0.845593 -1.335515 4.274941 4.203903 -3.904691 -1.895943 -2.518238 -2.064391 1.193000 -2.272260 0.296782 3.055647 0.830136 -3.307292 -1.955948 2.069617 2.198184 -1.370760 -3.816106 1.060422 3.222535 -3.134378 -3.438794 0.345692 3.879276 -1.229794 -6.790258 -0.231903 -3.593095 2.189164 0.075804 -1.400038 -3.850332 0.388389 1.988141 -1.058488 -2.327390 -0.277173 3.262682 2.527936 1.830339 0.296242 0.407672 0.704060 7.041162 1.243743 -2.703163 0.469289 0.014997 -1.563216 1.941922 -3.197657 -2.291666 1.570900 -4.392393 1.388732 3.285389 -2.276705 -0.890731 4.015601 1.808901 0.921226 14.651102 0.492389 5.692225 4.208684 -3.921142 2.280927 -1.730902 0.593737 1.445490 1.674257 -0.514271 -7.619935 -3.780200 2.072594 3.900522 3.111995 -5.437755 -2.125707 -0.542574 -0.098494 0.188690 -0.580622 1.151493 0.033034 -3.163681 -0.786049 3.734983 9.311959 -1.852496 0.730721 2.210779 1.659004 -2.762651 -6.783188 -2.078671 -3.326274 0.882973 1.137597 0.485556 2.204228 4.999236 -6.879963 3.394903 -0.897595 0.364774 3.633321 2.061934 -4.720639 -6.375308 -1.183465 2.204279 5.196128 -1.496188 0.952231 2.137679 -3.516550 -0.263572 0.709017 -0.273746 -0.769074 1.356985 0.585876 -1.941994 -1.860046 1.856840 -1.163490 -1.175428 0.214198 2.687280 0.715407 -5.240915 3.505156 -0.223024 -1.740126 1.220448 -1.019371 4.598143 -3.447674 -3.453375 2.900808 -0.022004 -0.933823 -2.431433 0.878974 2.761852 0.999476 1.906735 -2.322667 -5.329989 2.630448 -2.150888 3.085822 1.519090 -0.645572 2.025651 -1.591294 -0.941166 -5.045711 -2.610384 -1.079436 0.248654 -4.210139 -1.458209 -0.668638 4.136731 2.625794 0.402291 -3.805112 0.630830 4.657457 -4.400474 -0.939117 2.656634 3.138017 -4.875073 0.793119 3.288521 -5.217260 0.362424 -1.541353 -0.518184 -1.114978 -3.042657 2.698419 0.987129 2.723596 -0.659052 1.067749 0.659079 1.739225 1.682579 1.032954 0.605646 5.941955 4.900868 -0.897020 -1.955193 -4.196726 1.559205 -4.789820 -5.401446 2.007778 1.272203 -3.551183 0.813653 1.678697 5.199070 0.812839 -0.206934 -0.818984 0.458611 +PE-benchmarks/longest-palindromic-subsequence.cpp__main = -1.156420 -1.405427 -0.309353 -2.948509 2.079065 2.220833 1.214587 -1.902016 -3.584658 -0.423181 1.961686 -4.597726 -0.857780 3.730750 -1.263586 2.813508 4.534592 0.391117 -2.197108 -0.480966 3.027845 0.375186 4.938661 4.218985 -2.744120 -0.097142 -1.391006 1.601115 0.962518 -0.034691 0.830363 -1.296498 1.650677 -2.991846 -1.349945 -1.132946 0.436622 0.802293 2.561638 -4.393942 0.824723 0.602951 0.661436 -0.933500 -0.966957 0.221590 2.444167 2.961550 0.170920 1.033353 2.485539 0.094292 0.043095 0.865487 0.815232 -0.243682 0.756910 -0.933257 -1.603844 -1.746465 -0.234342 -0.669051 0.096225 3.065668 3.800148 0.818541 -0.377859 1.914824 0.903036 0.898423 2.236605 0.636861 -0.902095 0.583388 1.260966 -3.186632 0.132671 -4.105759 -0.723228 -4.657812 -2.061600 0.634584 3.373133 0.864072 1.540013 0.148557 3.028848 -0.309717 -1.403537 3.250999 3.843486 -2.677040 -1.751850 -1.553392 -1.604999 1.063045 -1.709758 0.932476 1.377987 1.577126 -2.964203 -0.521096 0.951896 1.252724 -1.183529 -1.735185 1.042172 2.368056 -2.349514 -1.855871 0.627017 3.065684 -0.051261 -4.977971 -1.709834 -2.110225 1.305936 0.151856 -1.370179 -2.319856 0.400407 0.723377 -0.978532 -0.946034 -1.583184 1.661900 1.589684 1.863832 0.207349 1.325220 1.258506 4.980847 -0.196939 -2.046577 0.742005 -0.503545 -0.161348 2.152032 -1.450419 -1.683674 0.238745 -2.933177 0.979485 2.192371 -1.829410 -1.302351 0.199804 1.871566 0.336346 9.173707 0.495164 4.220485 3.169824 -2.907727 0.634686 -1.804739 0.484203 0.779275 1.006098 -0.358362 -3.750964 -3.191471 2.225066 3.397797 2.372554 -3.324581 0.124101 0.332212 -0.070789 -0.310297 0.073444 0.977730 0.439500 -2.182408 -0.683875 3.236852 6.299065 -1.070341 -0.253736 1.903752 0.807507 -0.660146 -2.962016 -1.450063 -0.951037 0.828600 1.088033 0.891057 1.826739 4.113902 -4.041610 2.829557 0.113433 0.670500 2.727202 1.245174 -3.652697 -2.931399 -1.279187 1.866829 3.300196 -0.840449 -0.398497 1.434546 -2.868748 -0.354921 0.933739 -0.491700 -0.498270 1.279714 0.282562 -1.110055 -1.589865 0.539099 -0.967210 0.356434 -0.502312 2.420446 0.342494 -3.395283 3.044967 0.232477 -1.577438 -0.057697 -1.482103 3.226379 -2.662643 -2.665779 1.827506 -1.077929 -2.091942 -1.642158 0.546677 1.381831 1.008418 1.642307 -2.185012 -2.124730 2.991201 -1.360881 2.834896 1.405969 -0.539143 1.344142 -0.755311 -1.052981 -2.397919 -2.508847 -0.129026 0.190859 -3.256451 0.229935 -0.796382 2.932737 1.801555 0.076562 -3.163000 0.206199 3.161775 -2.747534 -1.545691 2.074648 0.909072 -3.616272 1.304324 2.585751 -3.552819 0.838431 -1.579759 -0.992783 -1.551423 -2.615420 2.064779 1.178904 2.141455 -0.379929 0.544535 0.441329 1.387704 0.804737 0.614387 0.878456 4.497859 2.655868 -0.533682 -0.969514 -3.687006 1.655485 -3.802155 -4.218316 2.147274 0.595642 -2.686999 0.180792 0.237927 3.473749 1.064791 -1.257936 -1.485764 1.439885 +PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -5.161228 -6.670738 -5.285452 -11.373706 7.499910 11.569697 4.477933 -10.076371 -13.274807 0.700616 7.851541 -15.318328 0.194201 13.732672 -4.676624 14.487055 16.910442 0.989808 -9.269824 -1.031111 14.172989 1.579009 19.078397 15.613958 -9.403190 -1.117835 -3.620138 5.176383 4.055801 -2.887966 3.505272 -2.263095 7.342686 -16.925245 -7.641776 -5.510394 2.261827 4.249676 14.238516 -15.715549 3.493617 -2.571360 1.487934 -3.588293 -5.717459 -1.585553 7.289192 11.382106 0.965390 3.829316 9.725882 0.824444 -1.426480 3.445557 2.148670 1.728323 0.284400 -1.714864 -3.979705 -8.656735 -0.353302 0.116922 2.557902 11.373795 13.981980 3.162930 -0.860278 11.298149 4.101216 2.838345 8.630116 2.071035 -7.192979 1.431054 3.689572 -18.754945 -0.358674 -16.441432 -3.815886 -14.753957 -6.308896 3.705176 8.491612 -0.060994 9.144643 4.210562 10.754043 -1.713161 -6.220693 13.117769 13.009503 -12.152180 -6.003223 -5.938756 -5.677813 2.882994 -6.047509 3.850334 6.574274 5.499129 -10.610050 -2.854154 3.410019 7.201416 -4.311003 -11.512756 4.768873 8.588515 -7.580588 -10.108878 5.446068 12.578363 -4.127901 -19.561047 -6.393868 -9.400657 6.753282 -0.945469 -4.328540 -12.840899 0.537050 5.085615 -2.283020 -6.756913 0.554442 3.824727 7.809134 7.366192 0.401684 4.284021 3.799312 23.219239 0.232032 -7.465790 2.994310 -2.172645 -0.824107 8.513620 -5.584595 -6.895520 -0.513572 -13.309761 5.048421 12.070417 -6.269263 -4.141420 7.193614 8.212754 0.819252 40.123481 2.739841 16.860098 13.558575 -11.832023 0.158260 -8.776054 2.578186 3.977939 2.766777 -2.940673 -19.514287 -12.203382 7.723927 12.123653 8.932651 -13.712044 -2.372840 0.154443 -1.049662 -0.382407 -2.104193 3.478780 1.112996 -7.934833 -2.363916 13.223710 25.640105 -5.528294 4.374319 8.395681 3.066881 -5.537785 -14.646162 -7.262868 -7.628336 3.257710 5.307050 3.743101 6.287277 14.970492 -11.395356 9.459706 -1.476758 3.334502 9.118624 7.338962 -14.618437 -10.857281 -5.485810 6.570020 11.835541 -6.479401 -0.111895 6.546305 -10.404261 -1.134384 4.350274 -3.186742 -1.269921 4.074438 2.179440 -4.020361 -5.317205 8.431527 -3.307127 -0.215706 1.101592 9.470711 -1.561212 -10.416881 10.825253 0.669164 -6.328923 2.949324 -5.826861 14.830831 -9.349841 -9.282485 9.442489 -1.076725 -2.890318 -4.798515 3.260345 7.003053 5.437562 7.185391 -8.908616 -8.781996 7.881046 -5.605210 9.776273 4.817764 -2.160956 4.126214 -11.132654 -3.584796 -11.879736 -10.336352 -4.063171 3.744584 -13.666315 -3.010929 -1.980211 12.736681 5.791383 1.133908 -13.571827 3.461338 11.974984 -12.681373 -3.823235 7.021213 8.180327 -16.734162 2.259237 8.988826 -13.942936 4.002675 -3.232318 -2.589172 -5.640312 -10.321685 8.534887 6.285944 9.515202 -3.045162 3.346284 4.846401 5.886777 4.336049 5.841641 4.035648 15.885896 8.606438 -0.652572 -8.794507 -13.493394 5.422409 -14.152164 -16.859050 9.312047 4.624638 -9.892252 1.140657 1.603774 15.116327 3.837223 -4.567789 -3.627738 3.333128 +PE-benchmarks/subset-sum-problem.cpp__main = -1.322188 -1.777840 -0.544516 -3.139103 2.235219 2.022372 1.305740 -1.794394 -3.992685 -0.383055 1.788677 -4.382014 -0.448343 4.185076 -1.050485 3.582322 5.097946 0.778319 -2.262984 -0.437977 3.661362 -0.408888 4.982359 4.341782 -2.744267 -0.123716 -1.297525 1.407126 0.780783 0.064435 0.641944 -1.293645 1.633541 -3.816762 -1.253060 -1.780096 0.459600 1.427045 3.243617 -5.116471 1.060421 0.514067 1.399538 -1.117849 -1.189200 0.009333 2.271060 3.182324 -0.228152 1.219450 2.658370 0.017087 -0.088323 0.933297 0.608650 0.477155 0.357356 -0.545450 -1.709757 -1.621266 -0.224672 -0.652549 0.744524 3.052491 3.947110 0.641324 -0.323292 2.338237 1.227724 1.019859 2.403909 0.513953 -1.229916 -0.222429 1.270245 -4.379959 -0.389514 -5.497839 -0.652881 -5.683692 -2.250328 0.720543 3.393048 0.973151 1.874162 0.404684 3.226543 -0.689314 -1.328659 3.309926 3.809039 -2.961947 -1.835469 -2.038245 -1.938648 1.171005 -1.657507 0.529408 2.020105 1.370169 -3.106945 -1.037274 1.332264 1.522015 -1.202567 -2.359711 1.166614 2.808608 -2.381841 -2.648122 0.625317 3.508715 -0.529007 -5.266463 -0.445806 -2.481049 0.850056 0.307701 -1.496035 -2.844530 0.411071 0.980278 -1.266461 -1.364887 -1.543371 2.083105 1.510751 1.730915 0.355645 0.921423 0.940278 5.253107 0.350005 -2.485887 0.727787 -0.094484 -0.334595 2.013516 -1.968799 -2.198630 0.344908 -3.614066 0.979312 2.187443 -2.047559 -1.124934 1.038812 1.958057 0.457153 9.414549 0.520031 4.563726 3.280732 -3.123825 1.632815 -1.630419 0.490609 1.013465 1.455939 -0.589903 -4.307944 -3.442316 2.047589 3.609457 2.755918 -3.400931 -1.189596 -0.120671 -0.274570 0.153387 -0.039856 1.115066 0.353286 -2.513379 -0.680648 3.060964 6.952363 -1.167328 0.270327 1.977088 1.281954 -1.240445 -4.244413 -1.675230 -2.497355 0.699801 0.940958 0.666569 1.974070 4.456995 -4.757225 3.154987 -0.429424 0.634573 2.722440 1.303658 -3.846145 -4.281288 -1.448478 1.861379 4.044221 -1.245729 -0.194221 1.663454 -3.009201 -0.290757 0.802866 -0.550316 -0.632430 1.316380 -0.106353 -1.260356 -1.348946 1.201311 -1.262656 -0.432467 -0.161876 2.442147 0.979746 -3.118103 3.008760 -0.031159 -1.565181 0.709138 -1.219550 3.643110 -2.565895 -2.756702 2.142584 -0.441588 -1.340155 -1.812128 0.611241 1.940461 0.794305 1.321741 -1.770723 -2.946788 2.639317 -1.539938 2.997598 1.501650 -0.847741 1.336657 -0.159427 -1.187703 -2.769433 -2.488096 -0.964750 0.160133 -3.365684 -0.828855 -0.836007 3.344320 1.945405 0.435472 -3.231928 0.171245 3.581180 -3.112492 -1.345174 2.395190 0.312729 -3.692037 1.028797 3.021271 -4.032091 0.762247 -1.620672 -0.045078 -1.268303 -2.502400 2.212375 1.222332 2.174626 -0.769134 0.568914 0.675171 1.516994 1.295079 0.750827 0.565736 4.978051 2.362629 -0.600806 -1.239923 -3.713507 1.539059 -3.958571 -4.086088 1.795574 1.355465 -3.217273 0.454626 0.576519 3.853515 0.685757 -0.730826 -1.302574 0.969980 +PE-benchmarks/bellman-ford-algorithm.cpp__main = -1.925551 -1.396277 3.667635 -6.274070 4.101424 2.816430 1.927748 -2.175225 -6.546170 -0.164765 1.165502 -4.894936 -0.872277 7.071450 -1.908183 3.962586 9.221542 2.736562 -3.502043 -1.313923 5.961251 -3.654554 7.266898 7.426657 -5.272950 0.196025 0.751759 3.895372 1.845492 5.406306 -4.132585 -1.476767 1.292564 -4.982295 0.820986 -5.404872 0.133714 1.374332 2.938792 -9.524199 1.872825 0.442860 1.281194 -1.858835 -0.989590 2.340874 5.192200 4.783584 -1.042875 0.772096 4.046430 -0.412328 -0.053114 1.353906 3.607723 3.777815 6.188303 3.632883 -2.690917 -1.395768 -1.399505 -2.654884 2.421063 5.373566 6.592530 0.826826 -0.297819 1.466422 1.866473 0.765192 3.072270 0.690552 -1.379924 0.079379 2.313486 -8.063644 2.547835 -10.077289 -0.689182 -10.692106 -3.621597 -0.746997 3.712744 -2.025901 3.208201 -0.529642 5.866025 -2.040390 -0.468752 1.965397 6.704875 -5.669130 -2.638833 -3.723376 -4.154447 1.162419 -2.368365 -1.365677 4.205377 -0.458452 -4.833346 -2.835754 4.258531 3.072749 -2.135139 -0.423171 1.101154 5.926850 -4.406773 -4.667618 -1.711740 2.885653 -1.639968 -8.231305 0.537104 -4.983935 3.216406 0.059694 -3.019189 -6.201443 1.753526 4.727234 -2.911335 -2.446441 -2.550949 6.561083 2.103463 1.358185 0.054722 -1.126150 0.645358 5.914663 4.332305 -4.293622 0.776314 0.752489 -4.292371 0.883490 -4.471547 -3.149223 2.203537 -5.128247 -1.332183 3.368659 -3.819164 1.554511 5.874023 2.659149 2.122141 19.461424 -1.197705 6.161226 2.603464 -5.895884 5.163041 0.831895 0.037691 1.480409 3.447768 0.549343 -11.482153 -5.468785 2.920146 6.037492 4.705061 -7.390097 -3.125728 -2.763603 -1.217246 1.791744 -0.099929 0.691116 -0.659414 -4.556005 -1.981633 2.024592 12.388781 -3.161904 -6.750955 2.409181 -0.904545 -3.712890 -8.672919 -2.238014 -3.734944 1.558618 -1.852982 -0.993890 4.561381 7.608545 -12.986137 6.424755 -3.179261 -3.286450 8.360232 -0.148593 -3.631284 -8.013142 -1.820711 3.899493 7.987303 -0.077367 -2.301838 2.392776 -5.323449 -0.685980 -0.252325 1.465912 -2.164870 2.614702 1.431101 -4.714256 -2.657389 -1.642658 -0.766439 -2.069298 -1.104695 3.131312 -1.516933 -9.801762 6.048653 0.972753 -0.906912 2.704361 -0.318436 2.174527 -4.953731 -6.174601 2.805985 1.484087 -0.538817 -3.938472 0.249027 4.455766 0.225072 0.732300 -4.459904 -8.157466 3.211837 -3.834572 5.527805 2.472978 -0.237700 4.324019 4.100798 -0.930149 -5.824683 -1.054148 -1.351848 -0.528185 -4.292167 -3.279930 -2.176018 5.770161 4.655742 0.453746 -0.542599 -1.597513 7.195702 -5.074139 -1.732972 4.192040 0.680270 -4.995581 0.621056 5.319144 -6.323807 -1.686462 -2.493573 -3.717535 -1.641537 -3.522048 3.726257 -0.247709 2.862179 0.026588 0.797014 -0.659320 1.929354 1.290298 0.380366 0.950527 7.939525 8.039296 -2.624181 -0.474988 -4.938234 3.521276 -6.933652 -5.251058 1.600925 1.085832 -5.098143 1.133807 2.546429 5.990518 0.468204 -0.495551 0.009999 -0.275245 +PE-benchmarks/Nearly_sorted_Algo.cpp__main = -0.711457 -0.135745 1.158704 -2.180615 2.275017 1.288271 0.877864 -0.414652 -2.370244 -0.808102 0.401224 -2.578668 -1.518103 3.001108 -1.001689 1.286483 3.661971 0.664973 -0.879675 -0.352024 2.151748 -0.587102 3.437384 2.740970 -2.614910 0.021218 -0.093887 1.451951 0.257041 2.154473 -0.567769 -1.981707 0.959179 -1.169066 0.237353 -1.726280 0.303094 0.193002 0.499024 -3.940990 0.488995 1.085255 -0.109889 -0.513495 -0.191606 1.324513 2.581536 2.202614 -0.879397 0.737886 1.752569 0.367985 -0.008967 0.725914 0.495956 0.179413 1.223918 0.051744 -1.729112 -0.619957 -0.580554 -1.634873 0.163430 2.280216 3.096736 0.087671 -0.022528 0.781089 0.017898 0.675820 1.098525 0.516749 0.405670 0.365394 1.473639 -1.485765 -0.179316 -3.696117 -0.542106 -5.283950 -1.758250 -0.847426 2.222829 0.659511 0.710554 -0.795006 2.723961 -0.159605 -0.004940 2.037577 3.246863 -1.970735 -1.181957 -2.061054 -1.532496 0.827235 -1.371837 -0.307267 1.179962 0.181912 -2.182664 -1.210139 0.708184 0.517260 -0.849641 -0.616104 -0.003436 2.362289 -2.617804 -1.325087 -1.301553 1.344694 -0.099881 -3.963110 -0.699828 -1.078663 1.280678 0.415575 -0.515667 -1.517175 0.694979 1.443293 -1.089138 -0.640489 -1.438243 2.662395 0.921149 0.683728 0.509494 0.266208 0.589291 2.531150 1.620230 -1.335864 -0.259487 0.142634 -0.849002 0.543569 -1.625417 -0.776523 0.744536 -2.295150 0.421758 1.436913 -1.496522 -0.511128 0.072768 0.209113 1.228031 6.804771 -0.415116 2.639941 1.082741 -2.722412 1.529236 -0.251892 -0.312452 0.523453 1.355185 0.555861 -2.639315 -2.140834 1.516924 2.484347 1.900647 -2.742430 -0.169040 -0.628839 -0.068900 -0.088568 0.147542 1.053743 -0.120001 -1.937969 -0.584408 1.279766 4.788986 -0.947036 -2.570968 1.361748 0.845836 -0.807268 -2.230427 -0.819680 -0.734687 0.163189 0.589175 -0.303085 1.431513 3.288580 -5.154142 2.504272 -0.089225 -0.623855 2.192625 -0.074806 -1.680623 -2.742037 -0.488126 2.055833 2.937230 0.172798 -0.319269 0.426121 -2.152090 0.063258 0.367077 0.649584 -0.534073 1.111430 0.112476 -1.782324 -1.634406 -1.032681 -0.596269 -0.224639 -0.891756 1.232613 0.417013 -4.689064 2.723733 -0.272410 -0.868098 0.290061 -0.273963 1.740855 -2.219208 -2.891316 1.162033 -0.608714 -1.820273 -1.656484 0.177338 1.383347 0.503134 0.606934 -1.315968 -3.232956 2.015265 -0.876754 1.884846 1.155540 0.331135 2.399237 1.149964 -1.081788 -2.160339 -1.631430 0.855826 -0.621909 -1.697306 0.045567 -0.790863 2.207322 2.207621 -0.046886 -1.041123 -1.022189 2.813929 -1.852932 -0.941409 2.147414 0.145603 -1.899224 0.968874 2.521734 -2.432571 -0.737648 -1.527378 -0.264493 -0.881741 -1.753440 1.017950 -0.538692 0.774068 0.542485 0.260693 -0.996126 0.800434 0.427940 -0.119665 -0.224033 3.548457 3.215656 -1.700993 0.603949 -2.110937 1.471012 -3.280683 -2.723649 0.792541 -0.251518 -1.333931 0.543398 0.384852 2.092576 0.108459 -0.251723 -0.561750 0.101348 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = -0.895474 1.540133 2.426785 -2.291236 2.758916 2.676788 0.863388 -0.716845 -1.775986 -1.013579 -0.387893 -3.101144 -2.711842 3.403151 -1.365341 0.400117 4.426456 0.822814 -0.922489 -0.071751 1.695644 0.149719 3.938828 3.418863 -2.922511 0.060561 0.975996 1.298214 -0.507741 3.563641 -2.034054 -3.633839 1.029960 0.128277 0.866599 -1.479676 -0.085257 -0.983867 -0.232585 -4.397482 0.392482 1.223456 -0.816572 -0.825810 -0.041090 0.576158 4.511258 2.313859 -0.401083 -0.608984 1.346575 1.433803 -0.149084 0.751047 1.570754 0.450917 2.400793 0.070409 -1.730598 -0.717399 -1.070601 -1.261182 -0.823746 3.095335 3.302364 0.875767 -0.080553 -0.234143 -0.616652 0.558357 -0.103052 0.758715 1.498381 2.044612 1.054712 -0.609006 0.447904 -3.284611 -0.512021 -4.409319 -2.043738 -1.799291 1.054744 1.135450 0.975944 -1.575696 3.450791 -0.170071 0.792478 1.050017 5.026474 -2.748243 -1.195466 -2.283018 -1.771021 0.602507 -1.404231 0.226039 0.177532 -0.887575 -2.722669 -2.302943 0.709383 0.583469 -1.053333 0.350061 0.019457 2.771622 -2.495279 -0.713254 -2.494342 0.217373 0.024785 -4.814786 -1.550681 -0.938224 0.805918 0.565099 -1.380707 -2.908045 1.322619 2.398939 -1.491716 -1.217674 -1.604708 3.468169 1.288794 -0.033687 0.354353 -0.254086 1.268249 2.718635 2.035241 -1.381360 -0.002306 -0.386762 -1.528101 -0.423663 -1.755326 -0.237676 0.010739 -2.153696 0.137934 2.464739 -1.958515 0.111221 -0.985700 -0.891046 1.899531 8.472791 -1.681874 2.279942 0.265563 -3.988957 2.220169 -0.179190 -1.476234 -0.504799 1.682631 2.173947 -3.435285 -2.367200 2.380456 3.385750 2.136448 -2.592507 0.910655 -1.087715 -0.381125 -1.056636 0.828809 0.881465 -0.480825 -2.131643 -1.177283 1.915849 5.432625 -1.568538 -4.997343 1.484017 0.555860 0.593821 -1.221050 -0.715461 -0.459314 0.399758 0.969596 -0.755358 2.161232 4.009872 -6.228628 3.118555 -0.011803 -2.233352 3.561397 -0.522206 -1.297675 -0.824489 0.561773 3.698336 3.110241 0.982885 -0.717694 -0.812210 -2.760124 -0.509447 0.335736 1.873531 -1.272512 1.477683 0.844180 -3.289220 -2.574665 -2.618580 -0.354776 -1.336384 -2.039363 1.210667 0.124505 -6.306519 4.616777 0.794144 -0.215577 -0.017218 -1.035684 1.127106 -2.911066 -4.135933 1.096259 -0.975127 -1.470953 -0.593401 -0.175457 1.763269 0.761009 1.550188 -2.343042 -3.901720 2.359070 0.241523 2.803066 1.210139 1.813142 2.704823 2.161622 -1.105208 -2.044476 -2.163490 2.401823 -0.282511 -2.242200 -0.075395 -1.292226 2.661173 3.324441 -0.703160 -0.933530 -2.345378 2.663159 -2.032017 -0.456705 2.347117 -0.033946 -2.255509 -0.140783 2.742935 -1.785580 -2.086909 -1.901387 -0.908271 -1.719394 -3.006062 0.191399 -1.721132 0.421297 1.842306 -0.537295 -1.890622 0.707447 0.279986 -0.370872 0.438522 3.002858 2.877822 -2.160297 1.625071 -2.698397 2.081011 -4.310335 -3.371820 1.326600 -1.586172 -1.289120 -0.307191 0.012412 1.718765 -0.750755 0.531227 -0.356766 -0.300402 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -2.043773 -0.346294 1.809005 -5.199283 6.177526 4.262775 2.066473 -1.858370 -4.884992 -0.900935 0.372645 -5.401942 -3.036497 7.164258 -2.731114 4.546374 8.314977 0.966004 -2.000455 -0.083672 6.621639 -1.048859 8.418209 4.949084 -6.287932 -0.703981 -0.005637 3.665984 0.381757 5.330971 -1.333108 -4.011581 2.473402 -4.238477 0.126498 -4.495843 1.770226 0.750067 2.006515 -8.690689 1.162675 1.971608 -0.528526 -1.167974 -1.047968 2.282276 5.538450 5.592816 -2.487684 0.865894 4.038325 1.202072 -0.411119 2.201117 -0.102622 0.996994 2.257493 -0.043024 -4.439063 -2.538133 -1.485527 -3.464430 1.488342 5.310399 7.719317 0.182579 0.752163 4.016124 -0.324546 1.539771 2.526225 1.014844 -0.049325 0.914110 3.701753 -4.376836 -0.880895 -7.775034 -2.119924 -10.746036 -3.379439 -2.612605 2.590830 1.335972 2.871438 -1.275332 6.284027 -0.100231 0.260801 5.429931 7.337162 -5.423736 -2.501474 -6.583107 -3.771066 1.385719 -3.521950 -1.419702 3.190777 0.286490 -4.835951 -3.511173 0.664357 2.064636 -1.565842 -3.007676 -0.400909 5.548390 -5.804976 -4.711992 -2.493277 3.039261 -2.380387 -9.918500 -1.800842 -2.469683 2.923311 0.320192 0.904486 -4.814200 1.303225 5.069922 -2.003863 -2.719791 -1.880486 6.179503 2.872877 1.248617 1.400123 0.387585 0.516027 6.967207 4.659673 -2.478551 -1.640412 0.275048 -2.278799 0.884189 -4.050727 -1.639006 1.518280 -6.377182 0.556826 5.357640 -2.916736 -0.583058 0.673985 0.126617 3.965851 16.962927 -0.815744 5.913436 2.163146 -7.357261 3.338976 -0.664640 -0.855555 1.189761 2.380796 1.019692 -7.878802 -5.375750 3.506892 4.723255 4.514675 -6.396247 -0.784882 -2.527544 -0.097840 -0.097445 -1.270798 3.790806 -1.225811 -4.985624 -1.064434 2.478275 12.236926 -2.895684 -4.884411 4.905215 2.168775 -3.585615 -6.359462 -2.971815 -2.696335 -0.570528 1.418765 -0.958144 2.677520 7.775219 -10.045657 5.610518 -0.003384 -1.386404 4.785527 -1.002933 -3.724358 -5.984138 -1.490592 5.482570 6.349334 -0.767659 -0.514668 0.569143 -4.521088 1.254170 0.965146 1.576398 -0.050697 1.930586 -0.196555 -4.495484 -4.408023 -0.766043 -1.559377 -0.879622 -1.327537 2.411255 0.642548 -9.678639 6.662246 -1.464708 -1.852494 2.229897 -0.127791 4.894077 -4.925275 -6.919795 3.615050 -0.733933 -2.802676 -4.187816 1.496186 3.735182 2.165684 1.279420 -3.323365 -8.750215 3.126346 -2.321650 3.128798 2.396163 1.634779 5.250787 1.445014 -2.957441 -6.524347 -4.694263 0.311516 -0.060447 -4.336246 -0.965255 -1.111921 6.222936 4.959645 -0.302006 -2.477671 -2.497229 6.799244 -4.738182 -1.992742 5.552745 0.429715 -5.992736 0.713621 6.319476 -5.465495 -2.402283 -2.473012 0.929011 -2.218313 -4.414778 1.679478 -1.282072 1.488222 1.205144 0.916482 -2.148619 1.536266 1.668065 0.472290 -1.378825 8.886770 6.736331 -3.986128 0.276826 -4.216482 3.062617 -8.096389 -6.578140 2.409150 -0.645308 -2.268631 2.359582 2.052141 5.517511 -0.163530 -0.001424 -0.165739 -1.996573 +PE-benchmarks/karatsuba.cpp__main = -30.337966 -14.230524 25.029445 -57.247739 83.929685 31.231683 37.606774 0.220149 -59.312159 -25.939450 7.782386 -41.964810 -67.424549 92.782856 -21.937978 68.546059 80.934409 2.524872 -23.918041 -18.590562 99.889187 -54.386650 101.713492 37.363983 -95.774792 -6.639133 -3.804575 61.012743 10.696058 72.894118 -11.129043 -29.553901 29.219923 -52.337300 33.012492 -42.198856 39.256948 17.835756 -6.975576 -102.074483 2.351834 48.323940 4.302946 -10.025175 -27.296454 46.417663 51.731696 83.256869 -43.413472 20.475430 63.220278 -22.686090 0.886282 33.282214 -6.712740 8.504011 3.317699 -3.652706 -75.113821 -26.611011 -10.103352 -94.149328 31.220887 58.815760 101.707513 -28.217702 17.893403 74.724247 -22.822319 31.200232 36.690189 14.055112 3.119109 -32.842577 84.067687 -52.590679 -33.928238 -95.511763 -26.516415 -177.844725 -60.665515 -59.002198 56.620572 20.789266 47.996537 -31.537904 102.638735 7.951911 -8.425579 70.442981 84.132948 -75.603889 -33.551386 -110.567325 -33.028400 20.853894 -67.492923 -40.082268 66.244131 1.745011 -64.320588 -27.013718 18.675442 22.724667 -21.252027 -62.260059 -37.039289 86.281409 -84.051456 -67.898526 -63.898320 41.342031 -24.711341 -121.412886 22.252323 -15.266180 32.292490 2.214273 43.719217 -28.195914 12.086534 70.659021 -24.844352 -47.278509 -37.946792 92.851427 39.743486 0.600472 44.611588 28.021637 -8.394229 72.916300 95.238693 -21.817186 -61.241900 24.668123 -34.093948 30.327767 -37.700170 -20.160577 47.782938 -90.635286 -10.750169 36.778626 -21.526111 -6.099858 9.300196 1.388352 62.642794 147.329361 7.305198 54.654154 13.708383 -74.737028 76.089506 -6.426677 -9.079275 41.732028 43.969285 -23.725427 -73.301677 -76.078231 43.877602 57.644270 52.648675 -80.991635 -31.351858 -37.119915 15.575039 -13.327617 -24.671538 67.948332 2.285801 -53.778444 -10.443861 9.019683 132.626502 -55.220611 -52.583239 84.311832 29.859086 -62.783339 -102.906883 -48.886219 -39.432743 -31.662384 -4.333955 -8.752412 31.867641 102.727163 -104.124056 71.040029 -12.847859 -21.287249 59.801551 -36.572916 -23.161261 -117.281412 -20.503632 57.590834 82.789324 -13.924316 -5.941785 6.245566 -68.330735 34.611182 -0.415866 16.319157 9.778355 28.357826 -42.059808 -35.389995 -64.143785 -28.225073 -36.641805 1.027986 3.232919 17.567520 34.262047 -112.321844 79.245174 -51.140912 -33.580234 40.642638 33.004748 72.635481 -52.001256 -95.283182 55.090610 0.213149 -61.956766 -82.408647 25.210185 52.840683 3.355431 -38.938833 -20.653975 -109.308231 58.002795 -30.602697 38.609594 21.816390 21.365091 91.219257 58.662961 -68.262589 -70.467657 -55.377501 -13.289427 -31.596214 -44.806970 -19.757394 -3.705609 79.710746 55.654021 18.610722 -4.903108 -19.918391 104.059444 -73.153173 -56.912128 87.449539 4.835928 -50.222765 41.752624 99.476651 -69.130593 -50.058202 -57.540942 23.665831 -14.341186 -61.217206 23.912286 -26.649569 21.975942 21.150384 24.378615 -22.399997 24.742971 27.473046 -3.475728 -66.417046 145.912472 99.454453 -81.610327 -9.074390 -55.359726 36.747169 -88.918923 -57.024186 14.725674 25.413718 -8.309675 49.658620 48.815292 62.584815 2.406701 -31.725549 -13.643301 -57.076294 +PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -11.988984 -11.894621 6.089411 -26.305701 31.213030 11.071769 14.760877 -1.542518 -27.244268 -7.720075 7.387474 -17.189117 -21.702848 35.909237 -8.425891 29.968315 28.154866 -1.354313 -13.120299 -7.955885 41.074198 -18.515698 38.332422 12.943681 -36.968284 -2.694329 -8.153796 25.413475 7.108651 23.555933 0.787029 -5.618320 8.477373 -21.936843 10.558069 -13.934398 16.539914 11.153638 0.401008 -37.612083 2.034550 21.063193 6.142527 -4.049117 -11.325294 15.403926 13.605258 33.017937 -15.914941 8.837271 27.560253 -9.935360 0.382674 12.121929 -3.900608 1.782917 -0.270839 -4.105215 -27.768522 -12.596927 -1.267543 -32.386226 15.453495 22.430438 38.564644 -11.692885 6.387117 31.100477 -4.352377 13.070906 18.594930 4.866642 -5.704824 -17.053946 31.990777 -21.021106 -11.716535 -34.181216 -6.643062 -63.455514 -23.080603 -17.571764 26.812697 12.200938 18.202958 -12.850111 39.102646 2.019715 -8.493681 30.641935 26.837870 -25.914759 -12.393422 -42.529509 -14.761805 8.512756 -25.448237 -16.679700 25.004282 7.392863 -24.181022 -3.497355 4.812322 9.341956 -8.249369 -24.353723 -13.117385 31.954557 -30.797973 -26.136337 -15.706811 25.854114 -8.372895 -45.499689 7.626491 -10.278789 9.228620 -3.482266 18.608201 -5.972479 1.968477 23.290881 -10.258205 -14.689728 -20.396583 32.575633 16.429966 1.708186 16.198853 12.677650 -4.669782 27.873894 29.016369 -10.516803 -23.520999 10.519102 -8.548737 16.019442 -13.044165 -8.399950 18.356003 -35.139425 -4.056622 11.105107 -6.026142 -3.278804 0.959636 5.904617 20.872350 56.787642 6.489465 24.316546 9.229075 -23.994115 27.598102 -1.555099 0.223058 19.226725 14.053100 -16.348563 -26.230782 -30.654013 16.496907 21.096974 20.020406 -28.846102 -11.441765 -10.687764 3.855394 -3.615763 -10.646440 25.121031 1.694428 -20.001225 -4.045327 3.153145 49.702858 -16.762707 -11.899075 33.599154 13.774227 -28.044859 -37.390225 -19.915595 -15.607931 -11.946510 -1.785609 -0.830561 14.081576 38.986702 -35.164270 26.497149 -2.472315 -3.792496 21.298813 -14.608450 -11.229146 -47.156055 -12.957457 16.806184 32.268982 -11.357254 -2.652803 6.790747 -25.895799 14.980432 0.519550 0.679605 4.641479 9.636162 -17.291009 -7.838625 -21.273323 -7.424997 -17.494915 5.834373 2.123991 7.252253 11.982641 -34.655089 26.314324 -20.856253 -13.470601 15.177453 12.432251 29.461291 -17.296338 -31.605127 21.445187 3.008178 -24.681578 -33.880124 11.093603 20.276323 -0.060131 -14.024798 -8.611761 -37.503563 22.736184 -15.377112 15.015071 7.885686 2.782047 29.088246 21.762348 -23.973811 -25.762013 -23.032230 -8.539509 -9.090040 -18.595668 -3.659303 -0.655943 29.457756 15.092426 8.337043 -5.252854 -2.881575 41.167334 -23.689114 -23.563986 31.263898 -3.746136 -21.469156 17.834955 37.577738 -27.709143 -13.810303 -23.566143 10.216431 -5.324470 -21.120462 13.845233 -1.849660 12.365934 3.257140 12.115377 -5.497883 10.041444 12.073603 -2.141662 -24.538555 60.317241 32.811176 -25.528060 -6.920277 -22.562514 13.558558 -30.281158 -19.989694 5.039679 10.596148 -5.105714 21.116390 17.496334 28.128195 4.193778 -12.986231 -5.798051 -18.542527 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = -2.355246 -1.721566 0.000837 -6.277294 4.380200 4.450864 2.154787 -2.434233 -7.128919 -2.159943 2.850462 -8.915996 -3.101787 8.221351 -2.661447 4.547164 10.199380 0.938280 -3.828064 -0.254286 6.412978 -0.382311 9.436102 8.594219 -6.406806 -0.328850 -1.283694 3.487902 1.343494 2.464551 1.290511 -5.095430 2.717738 -4.708240 -1.225624 -3.576482 0.885375 1.226315 3.525149 -10.520779 1.608984 3.257704 0.647407 -2.129030 -1.562366 1.406489 6.069995 6.239403 -1.457923 1.526462 5.452307 1.364430 -0.545776 1.450784 1.360072 -0.780543 1.006030 -0.492138 -3.501944 -3.089138 -0.607684 -2.373585 0.050088 6.701327 8.238348 0.998280 -0.355744 2.887784 0.860475 2.013716 3.533778 1.318465 -0.392619 0.968239 3.313115 -4.865974 -0.512323 -9.341270 -0.700520 -13.674814 -4.131894 0.098574 7.092474 3.085352 2.327324 -1.796967 6.912241 -1.201660 -1.613746 7.769495 8.606616 -4.826330 -3.398475 -4.783490 -4.429611 2.938026 -3.856489 0.685903 3.181961 1.835350 -6.183277 -2.000761 1.178516 2.329078 -2.565735 -3.234711 1.350710 5.173114 -6.379895 -3.205669 -0.488870 5.641646 0.370879 -11.327776 -3.912092 -4.211129 1.841371 0.493481 -2.793082 -4.326561 1.143039 2.220803 -2.227263 -1.896876 -3.685145 5.505592 3.003496 3.224206 0.903599 1.525003 2.748054 9.061153 1.308434 -4.110087 0.809126 -0.479813 -1.149554 2.873995 -3.718996 -2.999426 1.765829 -6.394966 2.013594 4.307374 -4.078088 -2.492998 0.141835 1.806843 1.871176 21.842749 0.068365 8.771635 5.563161 -6.618416 3.070791 -2.296107 -0.447295 1.352009 2.657823 0.812652 -7.380656 -5.944455 4.697578 7.521783 5.241879 -6.855752 0.454326 0.268285 -0.400056 -0.821764 0.593209 1.869549 0.456047 -5.331110 -1.773538 6.669287 12.909763 -1.875507 -2.823316 3.610900 3.722285 -1.784757 -6.015765 -2.090581 -2.965706 1.560367 2.826924 0.178308 4.454048 8.903878 -11.561553 6.382507 0.802526 0.377971 5.357086 1.760165 -6.879741 -8.028658 -1.558573 4.916905 7.941255 -1.270653 0.000877 1.967540 -6.143602 -0.660327 2.012474 0.012573 -1.662432 3.028517 0.362181 -3.032746 -4.216504 -0.447116 -2.459410 -0.263566 -2.176926 4.291752 0.960607 -9.241634 7.322382 0.163754 -2.770261 -0.838801 -2.421020 5.714689 -6.624202 -7.071498 3.528581 -1.945149 -5.132858 -3.140990 0.454848 3.546822 2.517559 2.664440 -3.798733 -7.417795 6.463456 -2.357416 6.154457 2.984552 -0.265593 4.367090 0.692897 -1.761371 -5.787311 -5.298019 1.559832 -0.567158 -6.651935 -0.038646 -1.878563 6.022321 4.691310 -0.579265 -6.020284 -0.570401 6.966732 -4.157616 -2.768883 4.423657 1.035902 -6.849543 2.295176 5.787530 -7.346913 0.568679 -4.691970 -0.803790 -2.966493 -5.738531 3.529533 0.916573 3.713322 0.723882 0.650767 -0.908942 2.373395 2.005274 0.245397 1.371662 9.261309 6.190127 -2.540878 -0.250813 -7.604739 3.564124 -8.741858 -9.029129 3.526796 0.021713 -4.564242 0.380755 0.870415 6.619941 1.453134 -0.898329 -2.237870 2.498228 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -0.800013 -1.205863 -0.334717 -1.701264 0.958250 0.211050 0.576901 -0.603213 -1.967820 -0.120094 0.477380 -1.303607 0.269704 2.256900 -0.185676 2.138912 2.450144 0.758407 -0.720178 -0.210836 2.072385 -1.154460 1.733366 1.660200 -1.135942 -0.157327 0.170370 0.779462 0.192171 0.707091 0.021092 -0.838565 0.425005 -2.202273 -0.121109 -1.603205 0.300069 1.389492 1.824107 -2.583433 0.687889 0.475029 1.338253 -0.721505 -0.762810 -0.838305 0.512753 1.559441 -0.671198 0.778581 1.292870 -0.128053 -0.220680 0.451540 0.575707 1.063487 0.023049 0.366975 -0.847133 -0.488587 -0.170656 -0.324979 1.034688 1.186570 1.829877 -0.116817 -0.027840 1.245998 0.452746 0.549711 1.151401 0.029768 -1.098581 -0.951487 0.830795 -2.745033 -0.383930 -3.768409 -0.140460 -3.622148 -0.994013 0.420453 1.279026 -0.219658 1.173413 0.486028 1.477928 -0.732078 -0.482695 1.232306 1.506924 -1.245604 -0.826294 -1.226808 -1.315285 0.781151 -0.734927 -0.604173 1.716859 0.098616 -1.328166 -0.999113 0.934270 1.050823 -0.485502 -1.525207 0.569855 1.511167 -1.151960 -2.101849 0.051063 1.521844 -0.844946 -2.119824 0.178576 -1.330094 -0.000809 0.114870 -0.777839 -1.791742 0.271470 0.735923 -0.730139 -1.060969 -0.006252 0.935582 0.558063 0.677589 0.318890 -0.224225 -0.091525 2.433593 0.839449 -1.446590 0.247741 0.478565 -0.559837 0.599163 -1.356629 -1.543510 0.520053 -1.852313 0.051204 0.857708 -1.084945 -0.213516 2.009724 0.775761 0.406845 4.668021 0.203626 1.815984 1.454278 -1.403789 1.060946 -0.098201 0.233334 0.624237 1.137599 -0.440433 -1.813869 -1.608454 0.644924 1.560839 1.577266 -1.337756 -2.161040 -0.598238 -0.042485 0.824986 -0.319309 0.351424 -0.042243 -1.494439 -0.260165 0.723984 2.705160 -0.729083 -0.513984 0.901004 1.591983 -1.540121 -2.667033 -0.817571 -2.928440 0.204755 -0.472150 -0.233824 1.044273 2.119411 -3.421951 1.651228 -0.542928 0.110543 1.262138 0.560129 -1.521222 -3.636296 -0.763847 0.736699 2.295649 -0.919891 0.768525 0.965078 -1.373621 0.001585 -0.067860 -0.189820 -0.419929 0.662138 -0.642940 -0.725066 -0.415659 1.123901 -0.776610 -1.090124 0.387794 0.949506 1.224714 -1.535662 1.190290 -0.174489 -0.405335 1.195356 0.145512 1.584722 -1.327945 -1.515166 1.119099 0.474180 0.293386 -0.647152 0.347116 1.367883 0.053121 -0.088224 -0.212738 -1.512056 0.647453 -0.906557 1.408994 0.625657 -0.735359 0.644551 -0.177566 -0.539151 -1.385564 -0.257654 -1.252094 -0.235234 -1.192175 -1.767464 -0.303075 1.788429 0.989164 0.564940 -0.963772 -0.045630 1.971189 -1.517598 -0.115780 1.370501 -0.223115 -1.433988 0.173079 1.729796 -2.161253 0.164277 -0.722326 0.481065 -0.172110 -0.891770 1.140951 0.452580 0.848113 -0.544701 -0.003681 0.364994 0.647016 1.176765 0.333944 -0.042976 2.089222 0.914477 -0.533710 -0.896011 -1.339806 0.050952 -1.827236 -1.393698 0.332468 0.852526 -1.804052 0.563143 0.609100 1.750143 0.037358 0.566947 -0.187768 -0.251780 +PE-benchmarks/cut-vertices.cpp__main = -5.303210 -1.335220 6.156769 -14.180402 10.368541 8.897665 4.513495 -4.132011 -13.642192 -5.878387 3.664787 -14.349081 -9.335133 17.027222 -6.569457 4.887372 20.134559 3.460689 -7.266377 -3.363680 11.929017 -0.064541 19.867491 17.403133 -14.594928 -0.552552 -0.372238 9.775271 3.453865 8.919084 0.612798 -9.944289 4.730986 -4.689570 0.435172 -7.489330 1.228246 0.935294 1.185231 -21.310740 3.042972 4.731803 -1.853599 -3.451440 -1.456519 3.592134 14.243495 12.714522 -2.169531 1.820007 10.683628 5.037731 -0.697629 3.386209 4.523260 -0.519675 5.927018 -3.402939 -6.119417 -5.005881 -2.943437 -6.919077 -0.401731 14.723217 16.306231 2.337386 -0.789100 2.570360 0.624679 5.262605 6.285514 3.170470 1.110607 3.406346 7.095467 -8.589974 0.024880 -18.918091 -1.196678 -24.969926 -9.470349 -3.076383 13.272258 6.158360 3.189999 -2.409257 15.595742 -1.339716 -1.629139 12.600189 18.119140 -9.073368 -6.101601 -9.350029 -8.778264 5.452885 -7.533485 1.204060 1.624398 4.722554 -12.608001 -4.474440 2.027377 2.758734 -5.897078 -3.080404 0.927850 13.401161 -14.185561 -3.913101 -5.011763 10.443128 1.712291 -22.599028 -8.504175 -9.259581 8.914293 0.197438 -5.515744 -7.650762 3.901212 7.047226 -5.121078 -2.675148 -8.413501 11.829784 5.677338 3.421194 0.602113 2.694997 3.758804 15.090154 5.773574 -7.706118 0.147778 -0.016940 -3.853633 3.289694 -7.693024 -2.928417 2.608695 -11.331544 2.924801 8.839195 -8.344617 -6.509871 -2.005016 1.117570 5.699816 42.278224 -2.300176 14.848931 8.674029 -13.832659 4.334903 -2.641328 -1.132872 3.273863 6.961695 3.067158 -14.168051 -12.488539 9.348545 15.559755 10.628932 -13.225647 2.566296 -1.584213 -1.469131 -2.351724 2.492373 3.341804 -0.747699 -9.902325 -4.514596 10.659640 23.863236 -4.104634 -13.102261 6.495006 5.113707 -2.425364 -8.317634 -3.725996 -0.768142 2.667402 6.825463 -0.485111 9.480193 18.750821 -24.966409 13.755848 1.131149 -1.612065 11.276333 0.898906 -9.954497 -11.412351 -1.969239 11.003074 16.195054 -0.612545 -2.300147 2.723775 -13.792584 -1.367764 3.624519 3.562330 -4.601370 7.010768 2.797490 -8.363215 -9.301148 -5.087553 -3.648318 0.904193 -5.682364 7.916258 -1.212889 -24.359789 16.536047 -0.326354 -4.184868 -0.547684 -4.575075 11.326822 -12.969433 -15.994411 7.054472 -3.107109 -11.047579 -7.359108 0.687773 9.269269 3.518751 5.766926 -9.850064 -13.332854 12.546240 -4.004133 13.028419 6.179283 1.958778 12.310348 2.436046 -3.588192 -10.635973 -9.705076 6.634352 -1.251253 -12.044782 0.567765 -4.563681 11.739571 12.076189 -1.877002 -9.046021 -2.534307 15.736024 -10.661334 -6.182660 9.208369 2.678458 -11.249246 6.966716 12.208622 -13.385997 -3.446206 -9.488745 -3.043740 -5.831297 -12.581628 7.678107 -1.056452 7.372175 3.191760 2.481832 -4.597091 5.171011 3.105574 0.412879 2.449247 17.952582 16.540598 -6.896963 1.764925 -14.325909 9.150377 -18.022216 -15.882105 5.439566 -2.699973 -6.164999 1.330025 -2.599741 13.120277 2.313647 -1.064750 -3.864335 3.649830 +PE-benchmarks/cut-vertices.cpp__Graph::AP() = -4.903833 -3.330403 0.410024 -12.492252 8.579748 9.411622 3.664978 -6.744157 -11.310879 -2.622143 5.586488 -11.272742 -4.140186 13.774312 -5.015919 9.110804 14.456586 -0.347386 -7.265891 -2.292363 13.243573 -0.160802 16.342479 12.310650 -11.753886 -1.295080 -0.004486 6.956947 3.855545 3.492254 1.869867 -5.302516 3.679888 -10.102914 -2.840712 -3.950206 2.432443 1.621676 7.380936 -14.648777 2.817702 1.340545 -0.895352 -3.595720 -4.188762 -2.298199 8.867055 11.055658 -1.877010 1.084040 11.005226 2.573365 -2.048063 2.627882 2.942298 0.474711 3.089520 -1.484882 -3.344851 -6.651290 -1.017064 -1.909997 1.975923 11.885080 12.867900 1.239547 -0.071346 7.630028 1.027588 4.043526 6.457400 2.050542 -3.265280 1.476689 6.410225 -12.364982 -1.259598 -16.857435 -1.980153 -15.920674 -6.762318 0.440973 7.224616 2.604212 6.631199 1.652963 11.353889 -1.510711 -3.817894 10.774102 12.697244 -8.424460 -4.933268 -8.023099 -8.005147 3.640964 -6.592026 1.674943 2.107843 3.746398 -10.005018 -3.530602 1.740924 5.718925 -4.768234 -7.987178 1.708219 9.245725 -8.491084 -6.818588 0.935675 10.402776 -2.278761 -18.761238 -7.070841 -8.849948 6.504818 -1.661174 -2.731541 -9.481678 1.292552 6.975535 -3.427067 -6.030812 -2.033271 6.838937 7.190129 5.467802 0.731561 1.518167 3.639033 16.774404 3.720087 -6.126829 0.040091 -1.569760 -1.850069 5.290689 -4.904797 -3.645183 1.537924 -9.847845 2.514751 9.905626 -5.254196 -4.588661 4.606514 2.990906 3.257480 37.870404 0.466170 13.486659 8.711948 -11.161567 2.134575 -4.446328 -0.200935 3.411069 3.767985 -0.467558 -15.342435 -10.769132 8.179193 11.141488 8.305558 -11.749863 -0.663103 -0.293310 -1.340043 -1.172877 -0.619014 3.063308 -0.102823 -8.412411 -3.276012 10.599886 21.373521 -4.734936 -4.750086 8.059471 5.635744 -4.929284 -10.347551 -4.928752 -5.324659 2.434694 5.729245 1.069310 7.680344 14.747998 -15.904877 9.289680 -0.135802 -0.142777 8.246903 2.123434 -10.547298 -10.218177 -2.041526 7.198731 11.634046 -3.368218 0.393807 3.675908 -10.383064 -0.117156 2.906771 -0.672735 -2.202465 4.787257 0.727631 -5.732474 -7.439834 1.935201 -4.542544 0.736383 -2.094380 6.728717 -1.705335 -14.936886 12.519707 -0.341479 -3.936448 1.348398 -4.657436 12.437000 -9.462917 -11.523918 8.073769 -1.413492 -4.143412 -4.895629 2.011844 7.194660 4.602738 4.598556 -8.387766 -10.445556 7.053218 -4.461102 9.910224 4.615166 0.448696 6.407431 -3.764369 -2.092573 -10.910458 -7.782596 1.148751 2.483170 -12.974553 -3.893345 -2.817569 11.225381 6.439336 -1.097504 -9.061744 -0.377883 11.602006 -10.588708 -4.380144 6.322481 4.914225 -13.555978 2.645310 9.013120 -10.439134 0.273930 -5.955532 -1.081347 -5.958055 -11.440251 6.679815 3.625117 8.078489 0.310013 3.397806 0.123759 3.935179 3.662197 2.970267 1.439935 13.992636 11.066090 -4.265823 -5.025808 -12.684209 6.364617 -13.567037 -15.189576 7.413960 -0.026361 -6.571650 1.128627 -0.710051 12.927029 2.657786 -0.452376 -1.974574 1.758927 +PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/sort-array-wave-form-2.cpp__main = -1.092007 -0.905387 0.120513 -2.893265 1.967890 1.862934 0.947081 -1.176588 -3.132235 -0.703266 1.022177 -3.093264 -0.753067 3.539553 -1.089073 2.366613 4.320277 0.754987 -1.525804 -0.258730 2.970694 -0.346286 3.969168 3.642331 -2.698397 -0.153380 -0.150334 1.512057 0.628655 1.284080 0.117773 -1.962302 1.252851 -2.492862 -0.500545 -2.063905 0.430763 0.892465 1.901092 -4.456287 0.828507 0.678330 0.330484 -0.901051 -0.760960 0.002041 2.275144 2.669902 -0.663983 0.835221 2.348286 0.742956 -0.416627 0.722165 0.697380 0.511224 0.449875 -0.287644 -1.302155 -1.221933 -0.289280 -0.914020 0.466381 2.760001 3.456780 0.314451 -0.044931 1.439482 0.466783 0.734924 1.630569 0.424104 -0.610583 0.076711 1.260107 -3.160885 -0.261888 -4.627704 -0.427933 -5.446936 -1.790884 -0.047285 2.460867 0.726256 1.418301 -0.300340 2.879877 -0.665450 -0.571139 2.725827 3.362717 -2.414103 -1.391554 -2.063358 -1.813898 1.146556 -1.573292 0.023767 1.215825 0.503300 -2.511544 -1.287549 0.833345 1.258100 -1.090556 -1.702822 0.651304 2.497913 -2.636627 -2.039532 -0.247952 2.386621 -0.470076 -4.529525 -1.131111 -2.067333 1.242508 0.086228 -1.117974 -2.436792 0.453725 1.471528 -0.985695 -1.252221 -1.024965 2.095729 1.335332 1.154337 0.319629 0.287698 0.768382 4.207855 0.991795 -1.900584 0.284887 0.052382 -0.732372 1.029126 -1.929642 -1.372887 0.596944 -2.873632 0.526524 2.119243 -1.788300 -0.761167 1.279196 0.874160 0.916509 9.434923 0.040956 3.552166 2.263217 -2.896071 1.132933 -0.853505 -0.026949 0.805858 1.311843 0.105669 -3.741026 -2.641662 1.638666 3.052502 2.340193 -2.858416 -0.725986 -0.451757 -0.264036 0.027282 -0.051122 0.704222 -0.014573 -2.310900 -0.736038 2.310573 5.516972 -0.990223 -1.061848 1.512828 1.533385 -1.365171 -2.861499 -1.158862 -1.946105 0.647378 0.901817 -0.021803 1.900815 3.808596 -5.021505 2.699761 -0.233118 -0.046311 2.104290 0.786280 -2.701128 -3.341215 -0.715624 1.922274 3.438152 -0.808636 0.513117 1.124687 -2.626764 -0.274817 0.639395 0.100086 -0.753684 1.166353 0.375137 -1.587847 -1.574683 0.435171 -0.993256 -0.611571 -0.515131 1.801360 0.469013 -4.109024 2.888563 -0.018124 -1.067406 0.554536 -0.871655 2.677257 -2.781655 -2.961932 1.824345 -0.143258 -1.204633 -1.195085 0.359158 1.988537 0.721160 1.017914 -1.581418 -3.133710 2.103939 -1.014737 2.445023 1.244301 -0.204960 1.860270 -0.475362 -0.700095 -2.651118 -2.037975 0.100823 -0.066876 -2.656003 -0.679641 -0.783525 2.797768 2.186809 0.067753 -2.227624 -0.084772 3.171472 -2.411370 -0.702699 1.997249 0.901104 -2.867560 0.650933 2.557834 -3.323368 -0.034889 -1.534549 -0.145438 -0.915596 -2.243867 1.754169 0.364633 1.720157 0.092137 0.470789 -0.216424 1.182257 1.017383 0.396981 0.493547 3.821601 2.686285 -0.974452 -0.567124 -2.922723 1.273517 -3.631902 -3.567051 1.265721 0.207776 -2.179077 0.453230 0.249715 3.081404 0.454277 0.135623 -0.579748 0.466726 +PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = -0.303193 -0.524715 0.258231 -0.868217 0.527090 -0.132517 0.340061 -0.137037 -1.184272 -0.370348 0.440703 -0.993722 -0.288021 1.100883 -0.279392 0.609384 1.389316 0.416626 -0.411293 -0.331350 0.918759 -0.704362 1.252819 1.286705 -0.877392 0.023252 -0.206886 0.659748 0.403800 0.422828 0.040947 -0.353059 0.345933 -0.740547 0.086323 -0.817820 0.132881 0.480977 0.494973 -1.543467 0.267319 0.332607 0.485215 -0.189339 -0.129923 0.793056 0.520968 0.822477 -0.394601 0.596239 0.962379 -0.173032 0.059581 0.234698 0.204935 -0.030605 0.429841 0.171464 -0.541110 -0.117177 -0.083143 -0.759957 0.250314 0.757197 1.269599 -0.080965 -0.026755 0.223342 0.254483 0.320095 0.736646 0.102065 -0.062979 -0.315074 0.544049 -1.046227 0.011217 -2.197220 -0.107982 -2.751765 -0.663495 0.048968 1.377668 0.018638 0.129927 -0.095702 0.871425 -0.024655 -0.268280 0.796743 0.920891 -0.538367 -0.522192 -0.444339 -0.593347 0.506303 -0.529784 -0.082779 0.816561 0.373436 -0.755879 -0.190413 0.577291 0.166783 -0.336904 -0.271674 0.117527 0.816492 -0.986618 -0.504496 -0.233297 0.697835 0.196258 -1.381320 0.310697 -0.754066 0.612670 0.135365 -0.397420 -0.213308 0.128345 0.108497 -0.405969 -0.006969 -0.904821 0.926512 0.170787 0.447987 0.132907 0.096848 0.123687 0.915615 0.281892 -0.756748 0.025887 0.157894 -0.433400 0.473125 -0.806065 -0.572113 0.806049 -0.836952 0.200787 -0.006094 -0.601291 -0.372708 0.739308 0.428040 0.195749 2.425939 0.149712 1.235429 0.768960 -0.617839 0.702176 -0.044878 0.226125 0.496322 0.625058 -0.204237 -0.896019 -0.838648 0.373210 0.936627 0.737706 -1.198688 -0.597346 -0.050443 0.046405 0.212653 0.065031 0.213984 0.000316 -0.665513 -0.172035 0.478524 1.620686 -0.136852 -0.376378 0.246969 0.395106 -0.559942 -1.320216 -0.255745 -0.467762 0.223822 -0.183292 0.047579 0.552722 1.163261 -2.342903 0.905101 -0.126748 0.157784 0.777028 0.153842 -0.971604 -2.022194 -0.260332 0.331700 1.243506 -0.044389 0.038517 0.631674 -0.834622 -0.073486 0.020382 -0.007815 -0.276429 0.400611 -0.053184 -0.294914 -0.380182 -0.174671 -0.281465 -0.001650 -0.084975 0.616035 0.407874 -1.698917 0.630202 -0.245634 -0.470174 0.024229 -0.039536 0.605860 -0.844824 -0.801130 0.324369 -0.172374 -0.717697 -0.955614 0.100736 0.469020 -0.224518 -0.037287 -0.237264 -0.963212 0.833261 -0.737850 0.696720 0.412986 -0.324185 0.737517 0.467289 -0.256114 -0.895987 -0.066650 -0.136613 -0.554648 -0.670263 0.090861 -0.225391 0.666741 0.689355 0.190405 -0.404884 0.162035 1.199204 -0.675816 -0.576989 0.711783 0.143532 -0.570985 0.769431 0.839991 -1.315943 0.057137 -0.673433 -0.316433 -0.036126 -0.460259 0.753602 0.132792 0.507633 -0.136208 0.230738 -0.110611 0.469376 0.252010 -0.054535 -0.018499 1.531745 1.489187 -0.420408 0.024615 -0.884716 0.346359 -1.044500 -0.981238 0.144650 0.345681 -0.797404 0.277511 0.222094 1.016007 0.238743 -0.186581 -0.388155 0.394228 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -0.899525 -1.131221 -0.501552 -1.572862 1.227210 0.618344 0.764000 -0.544026 -2.354252 -0.200392 0.384845 -1.556779 -0.072906 2.564575 -0.241985 2.538172 3.574808 1.118295 -0.775428 -0.086463 3.047028 -2.174777 2.989795 2.731747 -1.426920 -0.166879 0.067054 1.015125 -0.032794 1.172729 -0.457489 -1.053002 1.053368 -3.404140 -0.097928 -2.560170 0.424705 1.485394 2.440235 -3.710791 0.671730 0.358222 1.128340 -0.727116 -0.860650 0.376617 0.991304 1.825283 -0.774612 0.984822 1.849542 -0.378935 -0.184105 0.678654 0.545324 1.373997 0.028070 0.894986 -1.227631 -0.528097 -0.315669 -1.254951 1.071714 1.337759 2.908369 -0.187083 0.101384 1.415315 0.080677 0.408601 1.250574 0.019795 -0.562911 -1.145030 1.092050 -3.925320 -0.642583 -5.475078 -0.575183 -5.764346 -1.224425 -0.065284 1.447070 -0.490575 1.509126 -0.037293 1.811107 -0.776515 -0.273342 1.715164 2.017513 -2.123841 -1.091731 -1.705066 -1.091633 0.719102 -1.094533 -0.768841 2.558572 -0.359858 -1.625704 -1.507708 1.727642 1.217799 -0.557634 -2.110287 0.403157 1.984249 -1.670096 -2.572834 -0.711412 1.280492 -1.044456 -3.306661 1.136935 -1.606321 0.763803 0.472622 -0.779395 -2.187766 0.431401 1.255688 -0.684754 -1.561257 -0.024654 2.244427 0.592218 0.532112 0.558954 -0.198031 -0.142042 3.585002 1.424141 -1.434082 0.052434 0.611740 -1.597743 0.627108 -2.093612 -1.711970 1.414909 -2.532863 -0.030556 1.035393 -1.359035 0.160877 3.462425 0.879614 0.763628 7.404025 0.207503 2.784141 1.509454 -1.944780 2.442932 -0.289682 0.220701 0.769680 1.481176 -0.368660 -4.285091 -1.850937 0.634225 1.839045 1.811160 -3.013153 -2.526645 -1.054604 0.276808 0.740528 -0.409652 0.675586 0.050560 -1.779742 -0.237380 0.901458 5.121462 -1.240705 0.115893 1.141912 1.041083 -2.088126 -4.707719 -1.061825 -2.956375 0.070853 -0.806904 -0.270423 0.961791 2.555162 -4.451910 1.937860 -1.285847 -0.199213 1.923733 0.593277 -2.292765 -4.842311 -0.677333 1.076899 3.271666 -0.487611 0.898028 0.987107 -1.687524 -0.055163 -0.078671 0.146092 -0.354854 0.816297 -0.599046 -1.220605 -0.771172 0.899033 -0.848814 -1.441310 0.474624 1.083273 1.430103 -3.300003 1.532884 -0.280369 -0.659306 1.311910 0.451533 1.755162 -1.721436 -2.144686 1.492352 0.440011 0.069499 -1.378672 0.417503 1.602732 0.076878 -0.531928 -0.319800 -3.324444 1.181319 -1.206360 1.520872 0.735761 -0.531732 1.358144 0.216617 -0.977418 -2.928755 -0.692374 -1.691708 -0.757852 -1.872232 -1.649701 -0.367123 2.242266 1.607406 0.848145 -1.090615 0.037496 3.028763 -2.324059 -0.298376 1.918234 1.101815 -2.137326 0.205903 2.196793 -3.190500 -0.286121 -0.787232 0.185108 -0.026000 -1.208299 1.115217 -0.116096 0.940605 -0.332180 0.288337 0.237312 0.749791 1.176526 0.383425 -0.379779 3.499905 2.592066 -0.928153 -0.834914 -1.609295 0.316537 -2.323799 -2.419492 0.290946 1.480424 -2.080702 0.764779 1.704746 2.620497 -0.024281 0.292255 -0.191338 -0.737313 +PE-benchmarks/rotate-bits-of-an-integer.cpp__main = -0.616716 -0.081696 1.346880 -2.348309 1.573427 0.015206 0.731882 -0.324626 -2.053748 -2.287494 1.473813 -3.603343 -2.774891 2.615054 -1.537606 -0.451601 3.118817 -0.186591 -0.858804 -1.381935 1.373385 0.286341 3.616212 3.398177 -3.566921 -0.165299 0.153399 1.898115 2.005381 -0.147521 1.409404 -1.945809 0.893059 0.323718 0.747804 -0.228201 0.455868 -0.783014 -0.556025 -3.363444 0.029893 1.094656 -0.696148 -0.068211 0.146679 3.151911 2.816956 2.336184 -1.610511 0.934067 3.106886 0.537072 -0.125838 0.281379 -0.465739 -2.946848 0.811502 -0.002069 -1.255376 -0.406555 0.029559 -2.032714 -0.769720 3.053339 3.400876 0.082815 -0.069696 0.254365 0.795533 1.239564 1.171602 0.904735 1.645785 1.311843 2.159647 -0.597238 -0.500501 -5.576349 -0.140365 -7.598342 -2.088117 -0.770329 4.210678 0.369279 -0.932553 -1.020099 2.725007 1.647932 -0.335251 3.247592 3.685424 -0.491290 -1.372831 -1.460078 -1.825017 1.881942 -2.010557 1.509347 0.660031 1.773286 -2.341377 -0.161803 -0.260883 -0.582265 -1.160753 -0.040943 -0.146641 1.822975 -2.816508 1.020179 -1.281259 1.364360 2.242425 -4.634886 -1.358416 -1.292482 2.853786 0.334452 -0.632839 0.819621 -0.099245 -0.071863 -1.039447 0.986003 -2.980173 2.300856 1.442886 1.561323 0.294421 1.183712 1.799345 1.525596 0.529705 -1.500303 -0.485621 -0.505265 -0.548454 1.119793 -1.585356 -0.148697 2.946015 -1.326803 1.781435 0.285394 -1.391248 -3.015268 -0.169939 -0.543702 0.924455 5.723282 0.258060 2.924128 1.849111 -1.820433 0.001247 -0.667656 -0.152696 1.053460 1.321698 0.580739 -0.103767 -1.999556 1.926842 3.029815 1.488411 -3.017692 1.024374 1.209808 -0.170387 -1.527826 0.759227 0.912277 -0.122408 -1.231679 -0.665412 3.175836 2.520233 0.022003 -2.720965 0.281406 2.226309 0.811614 -0.487669 0.001087 1.309944 0.866198 1.851820 0.808327 1.866787 3.291783 -6.650741 1.991831 1.924386 1.055636 1.011640 0.534806 -2.618378 -3.377856 0.895453 1.826197 1.682808 0.697765 -0.481572 0.821682 -2.408020 -0.170317 0.909693 0.419541 -0.811877 1.162042 0.170200 -0.382385 -2.384356 -1.923699 -0.808740 1.407355 -1.357421 1.715996 0.117748 -5.772905 2.931595 -1.098507 -1.801739 -2.235351 -2.055523 2.017475 -3.147183 -2.592684 0.368049 -2.278624 -4.190537 -2.600729 -0.086939 0.489664 -0.046407 1.484317 -1.425216 -1.797787 3.342129 -1.337164 2.036146 1.244019 0.394578 3.259239 0.378189 -0.484864 -1.901395 -1.076052 2.993423 -0.734934 -2.536789 1.839091 -0.434258 1.041087 2.269502 -1.350850 -1.679353 0.126498 1.948389 -1.818304 -2.385731 1.188332 1.082250 -1.319410 3.062655 1.583565 -2.584806 0.110046 -2.899943 -1.208650 -0.923233 -2.438420 1.303628 -0.179362 1.180776 0.889974 0.491336 -1.080553 1.399076 -0.079852 -0.289137 0.353856 2.987082 5.125753 -2.235334 0.692193 -3.627870 2.004760 -3.665269 -4.041713 1.445466 -1.305432 -0.385527 -0.000619 -1.158214 1.838335 0.970527 -1.419403 -2.043668 2.720994 +PE-benchmarks/edit-distance.cpp__main = -3.873590 -1.860947 4.379063 -8.403252 11.779379 3.639599 5.147118 -0.101592 -8.017889 -3.909099 1.121920 -5.685362 -8.993513 12.401144 -3.419940 8.791909 10.976630 0.187903 -2.764733 -3.146455 13.660999 -7.194848 13.969323 5.136385 -13.713372 -0.887332 -0.551622 8.329532 2.243681 10.349708 -1.177581 -4.418998 4.031571 -6.283236 5.132820 -5.894031 5.320881 2.435267 -1.115930 -13.716223 0.329005 6.533372 0.632479 -1.037037 -3.226530 6.642803 7.252446 11.260218 -6.484151 3.030028 9.202204 -2.340962 0.215308 4.674508 -0.996687 0.662862 1.292756 -1.221796 -9.925231 -3.343009 -1.734227 -12.584650 4.446474 8.211946 14.173175 -3.869618 2.672244 9.576858 -2.847144 4.266188 5.539302 2.134918 0.932003 -4.321287 11.770989 -7.198441 -4.421499 -14.251537 -3.580282 -25.105815 -8.171272 -8.252440 7.592233 2.448607 6.276006 -4.199428 13.794764 1.448687 -0.905058 9.298003 11.131716 -9.732642 -4.314349 -14.796986 -5.002114 2.731979 -9.124915 -5.051477 8.282083 0.484034 -8.521723 -3.752362 2.637015 2.694302 -2.804802 -8.321348 -5.053881 11.572680 -11.412455 -8.848746 -8.513244 5.923038 -3.341376 -16.127472 3.242644 -2.946068 4.946179 -0.087130 6.267289 -3.193691 1.483839 9.568092 -3.746758 -5.953672 -6.242648 12.767787 5.837515 0.665753 5.591451 3.449128 -1.532116 9.298716 12.818813 -3.077574 -8.437884 3.109104 -4.430934 4.011132 -5.591097 -2.304288 7.687025 -11.408413 -2.200351 4.695418 -2.706222 -1.169766 1.596348 -0.418380 8.822013 19.816880 0.858498 7.174051 2.008694 -10.084749 9.894530 -0.259343 -0.730295 6.046748 6.215020 -3.306732 -9.739551 -10.600527 5.824383 7.328339 6.941389 -11.044606 -4.423068 -4.773015 2.017330 -1.672946 -3.742403 8.975856 -0.419176 -7.550345 -1.277221 0.738558 17.568926 -6.869136 -7.405697 11.059809 4.751593 -8.792888 -13.099655 -6.607378 -5.044724 -3.866758 -0.576211 -1.217729 4.502354 13.853711 -15.739767 9.553657 -1.596040 -2.310392 7.860461 -5.045939 -2.921435 -16.356607 -2.471791 7.536808 10.855225 -1.719016 -0.252496 1.301319 -9.139321 5.131586 -0.648169 2.404653 1.092789 3.462815 -5.378943 -5.124896 -8.815905 -4.254499 -5.038834 0.526490 0.180800 2.329371 5.148870 -15.973269 10.424675 -7.096809 -4.429660 5.560342 4.147073 10.258355 -7.127951 -12.451946 7.108053 -0.377619 -8.406298 -11.686753 3.621880 7.028489 -0.404017 -4.568840 -3.298752 -14.951142 7.821660 -4.721958 4.970712 3.212595 2.980507 12.456440 7.654003 -8.850983 -9.989035 -7.266626 -1.425382 -3.980085 -6.067470 -2.117441 -0.549901 10.456543 7.824242 2.199126 -0.282849 -2.569355 14.064804 -10.572885 -7.706673 11.982896 0.951920 -6.603958 6.162508 13.294218 -9.313293 -6.969710 -7.667902 3.118495 -1.527006 -8.077958 3.772156 -3.549911 3.130121 2.501075 3.651122 -3.538014 3.439786 3.494057 -0.627064 -9.046332 19.735719 14.561977 -10.887464 -1.081708 -7.229801 4.708566 -12.219627 -7.775962 1.779327 2.412243 -1.196499 7.118300 5.964947 8.912154 0.793302 -3.289536 -1.736070 -7.256874 +PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = -6.956512 -8.321541 4.018492 -17.437128 17.790141 6.257978 8.459399 -2.296076 -16.540133 -4.395332 5.412367 -10.990931 -10.569694 21.472864 -5.565974 18.649094 16.660450 -1.223727 -8.027947 -5.122276 23.976715 -8.399863 22.212472 7.819805 -22.228734 -1.772377 -4.594379 12.862398 6.441263 12.578071 2.041022 -4.532717 5.544615 -11.997900 6.381221 -8.418241 9.168689 7.137858 2.762326 -22.400586 1.966476 12.557792 4.512737 -2.856729 -5.470721 9.761811 7.264911 19.550372 -10.126931 6.122881 17.074830 -3.685654 -0.302701 6.487535 -2.731665 0.197172 0.660127 -4.350041 -14.945742 -7.502766 -0.411010 -15.755700 9.424841 13.932046 22.941980 -7.688924 3.643984 18.056943 0.587868 7.667378 11.872132 3.142240 -3.490321 -9.469282 17.604324 -13.930852 -6.848202 -21.796156 -3.132443 -39.320729 -13.301511 -7.976435 15.924577 6.722542 9.640888 -8.129936 22.661089 1.188385 -5.835685 17.205016 14.936862 -14.095553 -6.883421 -23.979964 -9.014520 5.170371 -14.617301 -8.913076 14.486263 4.007240 -14.137407 -1.390040 1.733324 5.412996 -5.245464 -14.156523 -6.176420 18.180606 -17.368249 -15.428862 -6.081194 17.507469 -5.150705 -26.951369 5.751035 -7.991927 5.003736 -2.949783 10.516491 -3.413009 0.552348 12.589981 -6.847427 -7.863995 -14.621399 19.105744 11.012851 3.246571 8.294763 7.039705 -2.379626 16.351708 15.222174 -7.821047 -12.776080 5.703841 -3.724907 9.797791 -8.540217 -5.086413 12.000739 -19.855125 -2.851234 6.856071 -3.737679 -1.492512 1.443479 3.588334 11.310548 35.200684 3.306094 15.577989 6.938656 -14.347587 14.409396 -0.926151 0.576933 11.205438 8.048198 -9.376291 -15.567025 -18.031704 9.814375 12.691544 12.039630 -16.501002 -6.545210 -5.066649 0.700185 -2.276922 -6.202196 13.774664 -0.196140 -12.801356 -2.560722 1.973151 28.576598 -8.157838 -5.008752 17.761967 11.381413 -16.508535 -19.307137 -11.247554 -10.499902 -5.622851 0.061753 -0.098101 9.516550 22.637760 -22.982128 15.713765 -0.537732 -0.808356 11.621714 -7.298378 -8.194273 -29.405460 -7.889338 9.019307 18.512559 -8.681830 1.031105 5.775057 -15.007355 9.020372 -0.602685 -0.974280 2.090203 4.508024 -8.410799 -4.297650 -10.985179 -2.077427 -10.280835 2.991268 0.947988 5.006647 8.784042 -20.759885 14.724921 -12.129978 -7.949021 8.939981 5.652451 19.155289 -10.872619 -16.299574 11.939264 2.224284 -13.044525 -19.499418 6.087945 12.200180 -1.987689 -4.767693 -5.948192 -22.363566 12.100035 -10.362249 8.792870 5.164743 0.121427 15.880233 8.717506 -11.863884 -15.322293 -15.366224 -4.805793 -3.281208 -11.112651 -0.497689 -0.544914 17.145030 7.903250 3.481635 -4.412275 -0.926073 22.086778 -15.405886 -11.428380 17.110020 -1.565353 -13.504933 10.057955 20.761382 -16.469856 -5.799356 -13.309371 6.200845 -3.554018 -11.105316 9.844400 1.185952 7.924036 -0.313884 7.414907 -3.107481 6.032287 7.274284 -1.903256 -12.674539 34.090133 19.606504 -13.547727 -4.707922 -13.452483 7.845248 -17.771810 -12.706715 3.285616 4.044261 -4.239838 12.100004 8.151524 17.611177 3.429338 -5.188356 -3.340917 -8.252888 +PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.584084 -0.219957 0.615949 -0.933987 0.621699 0.087369 0.339738 -0.395957 -0.911051 -0.515303 0.068781 -0.827874 -0.624799 1.339021 -0.518107 0.570432 1.704989 0.597472 -0.318676 -0.495747 1.091202 -0.909670 1.488552 1.503043 -1.145872 -0.188416 0.520107 0.910882 0.509261 0.727186 -0.282303 -0.492236 0.445479 -0.734055 0.469066 -1.144479 0.231287 0.429097 0.220378 -1.801518 0.181225 -0.087720 0.273553 -0.170571 -0.211061 0.876151 0.939635 1.047211 -0.451301 0.325233 0.899333 0.103835 0.026663 0.336005 0.278614 0.209097 0.621650 0.274971 -0.503099 -0.119185 -0.292745 -1.009079 0.376251 1.139380 1.550273 0.048442 0.101542 0.335294 0.062937 0.367808 0.446635 0.255206 0.087856 0.066587 0.664413 -1.600841 0.133211 -2.635427 -0.267749 -2.997260 -0.670222 -0.471209 0.665187 -0.310408 0.439450 0.163689 1.296282 0.159821 0.005488 0.710942 1.470643 -1.014839 -0.494988 -0.735638 -0.688814 0.433848 -0.730947 0.019105 0.728312 0.244620 -0.896721 -0.820587 0.599068 0.299496 -0.410637 -0.433028 -0.060727 1.128521 -1.199794 -0.733316 -0.857901 0.125950 -0.153100 -1.748333 0.469262 -0.929294 1.057899 0.109868 -0.413820 -0.875352 0.299403 0.818582 -0.328237 -0.436612 -0.645526 1.142776 0.382161 0.069326 0.046473 -0.038710 -0.026581 1.107081 0.986817 -0.759162 -0.207350 0.271514 -1.064042 0.028447 -1.123045 -0.485461 1.075816 -1.080869 -0.046056 0.507097 -0.743335 -0.364992 1.273325 -0.099672 0.684353 3.027182 -0.152093 0.904210 0.619569 -1.147723 0.739740 -0.064464 0.068440 0.489384 0.901477 0.220415 -1.490908 -1.083558 0.532507 1.214366 0.886974 -1.222682 -0.872263 -0.465235 0.083669 0.050119 -0.014117 0.367483 -0.458256 -0.774515 -0.260389 0.453702 1.749839 -0.594668 -0.748053 0.355028 0.338266 -0.622439 -1.670337 -0.363643 -0.699949 0.136032 -0.239451 -0.073247 0.621933 1.494453 -2.729224 1.151493 -0.311153 -0.119512 0.985463 -0.032845 -0.667883 -2.043720 0.107333 0.896620 1.251576 -0.002456 0.077433 0.391900 -1.176688 -0.046817 -0.039469 0.601683 -0.474147 0.582976 0.116659 -0.821833 -0.824408 -0.138265 -0.142605 -0.533963 -0.019148 0.631613 0.216776 -2.151472 1.250555 -0.329995 -0.348940 0.416908 -0.046366 0.702664 -1.244495 -1.331746 0.539755 -0.075707 -0.363962 -0.972192 0.143068 0.881158 -0.280134 -0.132041 -0.542109 -1.356438 0.671865 -0.670167 0.819227 0.392684 0.193660 1.226097 0.336043 -0.398959 -1.144443 0.066615 -0.227813 -0.452284 -0.734826 -0.439305 -0.120443 1.050309 1.330484 -0.006479 -0.121593 0.226735 1.417843 -1.133733 -0.596819 0.862190 0.537493 -0.602609 0.562956 0.972102 -1.370188 -0.584171 -0.680990 -0.333603 -0.066076 -0.931130 0.653165 -0.504902 0.417104 0.206714 0.153479 -0.253302 0.604838 0.472609 0.157461 0.023637 1.515501 1.861357 -0.714669 -0.059569 -1.041500 0.434039 -1.588024 -1.036179 0.175638 0.342332 -0.486030 0.326853 0.243664 1.002434 0.096791 -0.051545 -0.209037 -0.145504 +PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/sieve-of-eratosthenes.cpp__main = -0.582305 -0.567607 0.404207 -1.626030 0.992813 0.256556 0.505792 -0.326577 -1.802163 -0.840747 0.686742 -2.003575 -0.870557 2.011074 -0.777686 0.730986 2.617288 0.450815 -0.739007 -0.612219 1.576260 -0.548641 2.355080 2.314766 -1.899874 -0.193939 -0.125024 1.242422 0.832479 0.351670 0.569676 -1.021684 0.549209 -0.930515 0.181132 -1.073045 0.464725 0.422267 0.446703 -2.780764 0.347471 0.481241 0.433916 -0.362328 -0.311062 1.099484 1.369329 1.620776 -0.757873 0.560058 1.778036 0.313330 -0.150919 0.349819 -0.033286 -0.520690 0.370470 -0.059567 -0.921328 -0.399768 -0.030151 -1.064150 0.239533 1.754209 2.392148 0.155664 0.081740 0.575052 0.439990 0.653572 1.058151 0.249102 0.104134 0.115164 1.082393 -1.618676 -0.335345 -3.756377 -0.135112 -4.512864 -1.148576 -0.309518 2.198191 0.275198 0.137126 -0.108677 1.719045 0.151430 -0.196420 2.118388 2.066080 -0.894029 -0.955669 -1.323024 -1.305356 1.083611 -1.120794 0.283923 0.896277 0.928364 -1.456547 -0.587178 0.445750 0.304968 -0.632018 -0.701887 0.172078 1.414818 -1.694559 -0.605415 -0.505821 1.330490 0.452945 -2.743145 -0.290107 -1.328615 1.144292 0.195419 -0.490444 -0.515889 0.064444 0.458397 -0.679423 -0.033688 -1.538354 1.483411 0.615401 0.707977 0.190091 0.393492 0.545770 1.695885 0.486932 -1.222297 -0.104783 0.165166 -0.651300 0.509920 -1.448895 -0.750424 1.401636 -1.468431 0.602926 0.528423 -1.053774 -1.265310 0.578289 0.180091 0.758088 4.696401 0.251045 1.960628 1.268874 -1.403717 0.858334 -0.357545 0.106105 0.677898 0.987813 -0.044335 -1.454616 -1.585040 0.842972 1.796054 1.305257 -1.721197 -0.557291 0.023160 -0.133495 -0.079789 0.095392 0.591097 -0.325747 -1.114805 -0.382170 1.498927 2.741926 -0.173956 -0.631989 0.545699 1.225234 -0.581534 -1.700209 -0.380809 -0.537717 0.426612 0.473249 0.190910 1.181205 2.259330 -3.908287 1.575809 0.326367 0.561305 0.912140 0.244873 -1.629669 -2.865060 -0.018594 1.093385 2.011350 -0.135552 0.005470 0.786027 -1.569834 -0.082628 0.376512 0.251096 -0.444298 0.692315 -0.075625 -0.645725 -1.171747 -0.189662 -0.732624 0.169362 -0.391654 1.021281 0.389432 -2.737387 1.717476 -0.567286 -0.784845 -0.233083 -0.701905 1.404291 -1.841099 -1.662543 0.670004 -0.461435 -1.447722 -1.433192 0.126715 0.984060 -0.016521 0.532994 -0.730927 -1.842747 1.573017 -0.940980 1.300584 0.734284 -0.165697 1.459840 0.336159 -0.388462 -1.617630 -0.742169 0.329357 -0.428885 -1.500306 0.242223 -0.315094 1.285004 1.444351 -0.239426 -1.200183 0.234283 1.975440 -1.213056 -1.227349 1.082672 0.160890 -1.205440 1.209072 1.405932 -2.304751 -0.051013 -1.406059 -0.216944 -0.221064 -1.373556 1.006056 -0.003521 0.934503 0.126395 0.358833 -0.279629 0.867344 0.493463 0.063369 0.124402 2.585744 2.334404 -0.823486 0.082931 -1.997139 0.824786 -2.271532 -2.162751 0.530978 0.102999 -0.956448 0.440649 -0.025763 1.630143 0.359619 -0.168208 -0.790105 0.780023 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = -0.820632 -0.641170 0.256969 -2.301513 1.616315 1.339526 0.752023 -0.815496 -2.466590 -0.693606 0.895615 -2.556367 -0.890373 2.765599 -0.854875 1.580359 3.353608 0.406115 -1.188964 -0.368717 2.248161 -0.566647 3.167812 2.829929 -2.237283 -0.083169 -0.131044 1.385475 0.530679 1.046881 0.171652 -1.437073 0.771153 -1.696202 -0.228836 -1.372176 0.323178 0.501157 1.175558 -3.546226 0.568321 0.725145 0.239214 -0.655182 -0.564564 0.408789 1.918171 2.100080 -0.577465 0.616453 1.983617 0.339075 -0.205089 0.524386 0.607523 0.083166 0.701365 0.023840 -1.055082 -0.875073 -0.231714 -0.894758 0.300960 2.200518 2.768914 0.170135 -0.081909 1.008079 0.273546 0.709304 1.264757 0.392432 -0.360825 0.136131 1.187494 -2.208734 -0.140469 -3.770428 -0.269656 -4.568366 -1.501844 -0.057862 2.167913 0.587307 0.904234 -0.209602 2.319697 -0.333398 -0.504562 2.155086 2.711669 -1.618701 -1.106183 -1.555164 -1.525220 0.943450 -1.237095 0.061963 1.159794 0.598815 -2.003556 -0.735905 0.759082 0.827574 -0.898288 -1.147970 0.362628 1.934042 -2.059316 -1.290332 -0.287705 1.929928 -0.083923 -3.693096 -0.890683 -1.612810 1.011725 0.051263 -0.824573 -1.593773 0.371635 1.027117 -0.827391 -0.728625 -1.058890 1.893524 1.041045 0.967957 0.297444 0.335343 0.699183 2.916616 0.777758 -1.417596 0.105859 -0.010415 -0.611668 0.891844 -1.384759 -0.968729 0.646479 -2.100719 0.594340 1.413789 -1.321336 -0.777712 0.779541 0.623973 0.685152 7.466558 0.014454 2.836218 1.754548 -2.206158 1.097522 -0.586803 -0.048307 0.661384 1.060620 0.045519 -2.803047 -2.041590 1.405099 2.405448 1.760709 -2.494857 -0.392284 -0.158734 -0.201475 -0.032186 0.094284 0.568069 0.014677 -1.682241 -0.592966 1.887100 4.407897 -0.703254 -1.180630 1.198895 1.186962 -0.983894 -2.406108 -0.777431 -1.197554 0.482572 0.605506 0.032509 1.512764 2.967000 -4.306952 2.105673 -0.029324 -0.027533 1.918842 0.450308 -2.084147 -3.113847 -0.488478 1.515068 2.773268 -0.456579 0.081067 0.798373 -2.064672 -0.155104 0.496750 0.056166 -0.602012 1.015946 0.069823 -1.176385 -1.317831 -0.060931 -0.836988 -0.090174 -0.550640 1.367030 0.252446 -3.494545 2.365086 -0.090685 -0.879985 0.098671 -0.668664 1.959709 -2.099792 -2.377766 1.263481 -0.351750 -1.285856 -1.235236 0.202744 1.356929 0.509617 0.711935 -1.278305 -2.479489 1.823978 -1.020713 1.969339 1.005456 -0.121749 1.598161 0.131931 -0.614271 -2.060019 -1.440267 0.268156 -0.218353 -2.118963 -0.272657 -0.653382 2.040405 1.610950 0.008492 -1.621136 -0.126348 2.540590 -1.686249 -0.878164 1.513626 0.469141 -2.209205 0.806522 1.979875 -2.513113 -0.005264 -1.435715 -0.365615 -0.829445 -1.896051 1.337635 0.313623 1.304408 0.129290 0.387648 -0.260661 0.890232 0.672282 0.249152 0.269621 3.112718 2.490418 -0.965144 -0.310771 -2.382164 1.136450 -2.839278 -2.756442 1.002016 0.160822 -1.552001 0.289881 0.226814 2.304141 0.412230 -0.154461 -0.581145 0.552478 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = -0.957936 -1.005719 -0.430974 -2.355749 1.791926 1.745918 1.054917 -1.501647 -2.874700 -0.400164 1.490842 -3.657142 -0.832417 3.149063 -0.999580 2.371552 3.894504 0.423668 -1.692106 -0.486788 2.528561 0.260443 4.165534 3.525093 -2.400483 -0.048952 -0.839053 1.073825 0.752166 0.053833 0.531091 -1.309011 1.560560 -2.543758 -0.864319 -1.048515 0.342067 0.584545 2.173117 -3.825139 0.689218 0.369486 0.735096 -0.727172 -0.810186 0.633020 2.191337 2.489140 -0.095225 0.933668 2.122249 0.079307 -0.005790 0.735621 0.602842 -0.106877 0.431541 -0.480495 -1.391469 -1.414202 -0.218620 -0.629191 0.041195 2.524908 3.167443 0.557522 -0.296198 1.651800 0.758173 0.801684 1.646269 0.569622 -0.481807 0.422862 1.083437 -2.747560 -0.200433 -3.800009 -0.690479 -4.799226 -1.796532 0.294416 2.721809 0.548896 1.330230 0.036960 2.623077 -0.092498 -0.989617 2.544741 3.346684 -2.335118 -1.468005 -1.394243 -1.220850 0.913106 -1.410777 0.781177 1.632018 0.961738 -2.555247 -0.666778 0.766329 0.974729 -1.003220 -1.548777 0.741332 2.011838 -2.087995 -1.520928 0.172000 2.253232 -0.071591 -4.353602 -0.874588 -1.592318 1.061446 0.220459 -1.135268 -2.044306 0.342979 0.778327 -0.943493 -0.938463 -1.086444 1.657063 1.398452 1.444385 0.325361 1.058984 1.039339 4.211069 0.206533 -1.759225 0.491681 -0.354933 -0.222590 1.580181 -1.337344 -1.424338 0.490099 -2.722680 1.211631 1.788172 -1.576967 -0.988059 0.595723 1.331703 0.428001 7.472918 0.257672 3.607623 2.484976 -2.504950 0.746253 -1.523727 0.268897 0.661283 1.075843 -0.175147 -2.897117 -2.618600 1.818109 2.898369 1.984418 -2.929667 -0.114723 0.079542 -0.092471 -0.334954 0.056605 0.829792 0.351643 -1.840945 -0.562808 2.664634 5.252354 -1.055691 -0.230120 1.471761 0.945083 -0.428522 -2.590033 -1.237330 -1.232583 0.658935 0.997067 0.734646 1.581503 3.489797 -3.780500 2.428197 0.020023 0.431248 2.222943 1.115958 -2.986941 -2.765253 -0.854804 1.690252 2.802720 -0.681186 -0.227130 1.131058 -2.457751 -0.296995 0.734055 -0.286626 -0.536148 1.084529 0.224215 -1.021133 -1.358131 0.452546 -0.759803 0.000715 -0.320358 1.985422 0.505743 -3.433852 2.616726 -0.018872 -1.437171 0.014410 -1.165887 2.615378 -2.282642 -2.311701 1.503690 -0.790738 -1.637117 -1.315975 0.421426 1.237490 0.676796 1.441215 -1.662370 -2.160527 2.474726 -1.071430 2.364562 1.222881 -0.281187 1.422983 -0.895283 -0.990290 -2.138239 -2.053003 -0.084007 -0.011831 -2.690975 0.166467 -0.667570 2.472424 1.729072 0.081160 -2.557134 0.108933 2.580442 -2.435831 -1.108210 1.842623 0.932805 -2.883800 1.052131 2.269432 -2.983726 0.489468 -1.400577 -0.677167 -1.195648 -2.219078 1.597496 0.692568 1.667474 -0.231298 0.384179 0.315496 1.266455 0.645236 0.476282 0.621576 3.636180 2.310099 -0.807279 -0.782204 -3.065348 1.457346 -3.288790 -3.601427 1.712159 0.510095 -2.199466 0.169341 0.191769 2.884531 0.621457 -1.051698 -1.251291 1.015555 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = -2.702698 -3.329525 -14.425936 -7.188802 4.700229 19.201891 2.625949 -7.992625 -16.095808 5.062253 1.838909 -25.136673 -1.441222 9.813096 -0.910735 14.057693 16.202460 2.904817 -10.441721 0.372392 24.364437 -1.797148 24.968663 12.971187 -5.455493 -0.027781 -1.831347 0.807631 -0.586244 14.339013 0.121825 -15.233988 9.026364 -23.412144 -0.272593 -10.899915 0.799294 4.254165 21.512094 -17.092860 2.700081 4.844078 9.132694 -3.203839 -2.246144 10.424134 14.825516 6.632544 -2.558937 2.181604 14.397101 -0.331225 -0.399536 1.928952 2.359820 2.538953 9.736578 4.889274 -4.737068 -8.981631 -0.887989 -3.086553 2.625232 5.546816 19.930411 0.011192 -0.491750 3.530280 1.168241 2.032834 4.269972 0.400880 -1.694528 -2.941267 3.504997 -5.017448 -1.519940 -29.452790 -0.216350 -27.470094 -5.125922 0.772758 7.999708 3.401431 3.234889 -12.543670 6.902152 -3.432291 -1.265776 22.862386 17.127035 -5.286771 -3.842027 -6.446712 -5.193061 3.394354 -3.223806 -2.653462 17.494836 0.221325 -6.450299 -2.844078 1.029415 3.193462 -2.353687 -13.491234 2.138845 6.878844 -6.028432 -6.574322 -0.925189 16.643024 -1.183146 -27.055772 -21.266672 -9.319653 -8.824736 1.223275 -3.555920 -14.864787 1.654556 2.275652 -3.423006 -2.893103 4.061127 11.665194 10.433064 2.544061 1.815574 0.266394 1.044196 24.847567 -4.181692 -5.475341 1.151810 1.409389 -6.566052 2.460320 -9.809818 -5.621601 3.658800 -14.907310 15.491405 3.069303 -4.963356 -0.406023 7.021713 3.095894 2.040356 60.046241 0.133603 25.894118 15.081638 -15.750144 11.767205 -0.270422 -0.329448 1.630312 4.459698 -0.364238 -20.615835 -6.586924 3.582136 7.549561 6.712811 -20.178393 7.508451 -1.832771 -0.399070 1.857106 0.119617 1.694219 0.929014 -6.671773 -1.527308 13.341380 50.148111 -2.168840 1.819563 4.018441 5.068221 -9.021289 -19.213440 -2.794374 -8.483269 0.650951 3.427970 -1.197152 4.808055 9.653884 -27.714207 7.673038 -1.630801 -0.395809 19.602538 9.973609 -23.333408 -16.307068 -3.266717 13.585944 15.461237 -2.338115 1.719687 2.521570 -6.117520 -0.479526 0.692255 -0.350289 -1.732025 3.124390 -2.534832 -13.273087 -2.558777 -8.928692 -4.164335 -2.784112 -10.643548 3.982455 5.240654 -26.262862 15.615983 -0.039501 -1.821455 -4.733645 0.026471 7.710071 -6.053543 -7.471543 4.138293 0.290470 -2.882085 -8.056519 0.738643 5.022156 7.597637 15.991035 -8.587528 -20.684832 13.027313 -7.714900 6.814585 3.212568 -2.126952 3.872816 -6.150328 -2.721799 -26.802184 -14.915321 5.003897 -1.998746 -15.142860 3.394698 -2.307548 7.057568 4.760407 1.686555 -20.926952 -10.959872 13.304508 -6.750533 -1.677192 6.274212 5.457316 -27.452141 1.291854 7.926167 -13.680936 0.269813 -4.876138 -3.059954 -1.591283 -4.587759 3.824582 1.115190 3.156727 -0.670023 -0.069391 -0.343659 2.209722 3.837229 -0.135107 -0.161768 22.719379 11.456985 -2.518718 -0.921176 -13.485232 2.059762 -8.487820 -22.870296 1.476128 3.050349 -14.340851 1.561051 7.526325 23.514166 0.156261 1.357474 -1.438494 0.288009 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -2.751595 -3.674991 -15.777426 -5.922772 3.537819 18.997057 2.150168 -8.479708 -14.510691 6.231176 1.158719 -22.202261 0.470208 8.237185 -0.526850 14.838480 14.584442 3.040330 -9.753398 0.446305 24.566502 -2.567555 23.466311 11.348481 -4.149288 -0.574968 -0.498794 0.322845 -0.355777 13.188687 -0.224463 -13.217543 9.046527 -25.124621 -0.602862 -11.411685 1.363966 4.937053 22.438011 -15.132774 2.497099 2.236740 8.947276 -2.842311 -2.886929 9.171993 12.735364 5.730690 -2.343479 1.911152 13.663236 -0.394804 -0.909242 1.881980 1.626369 4.206821 8.541235 5.605646 -3.555599 -8.953643 -0.570103 -2.419614 3.822392 4.287648 18.664025 -0.198024 0.204198 4.707193 0.925096 1.372041 3.889523 -0.171433 -3.031758 -3.658241 2.862982 -7.342361 -1.794506 -28.907098 -0.785440 -24.773788 -3.651887 0.560772 4.648574 1.047774 4.461692 -10.486467 5.381220 -3.427569 -0.886801 21.708565 14.988920 -5.636944 -3.163102 -6.097250 -4.201486 2.642390 -2.870921 -2.943377 17.543491 -0.455180 -4.976535 -3.694904 1.299465 4.100988 -1.758242 -15.160470 1.941062 5.956405 -4.662309 -7.948887 -0.517779 15.275614 -3.284917 -25.016272 -19.806518 -9.301397 -8.067803 0.744546 -2.380515 -16.006694 1.014235 3.478171 -2.235758 -4.325314 7.373287 9.922763 10.473070 1.679830 1.571487 -0.546236 -0.268138 25.090831 -3.403536 -4.624430 0.659764 1.902967 -7.381598 1.643784 -9.841018 -5.581026 3.711777 -14.653647 14.851961 3.722399 -4.096525 0.417750 10.724587 2.937051 2.221672 57.937574 0.748684 23.977980 14.507818 -14.937447 10.739658 -0.417106 0.218115 1.945056 3.897398 -1.203544 -21.852026 -5.788364 1.991351 5.664004 5.858609 -19.285707 5.393935 -2.979296 -0.127757 2.645474 -1.340614 1.604530 0.152007 -5.829641 -0.976573 12.061728 48.533547 -2.783770 4.690230 3.859832 4.335868 -10.620275 -20.495057 -3.200614 -9.918639 0.279260 2.615091 -1.173196 3.585550 7.968920 -24.471378 6.156804 -3.010135 -0.149564 18.070335 10.241381 -22.094088 -15.424658 -2.823686 12.558892 13.999894 -3.151539 2.858456 2.793404 -4.969717 -0.162902 0.231725 -0.257022 -1.045454 2.249118 -2.336529 -13.018375 -1.955344 -6.186244 -3.573654 -3.983979 -8.697993 3.169665 4.560397 -23.690560 14.058652 -0.553141 -1.382629 -2.649857 0.819579 7.633392 -5.170431 -6.215312 4.639804 2.098686 0.413929 -7.196715 1.286512 5.409650 7.394832 15.053158 -7.888253 -20.045506 10.308325 -7.498359 4.974237 2.337095 -2.052319 2.884216 -9.128757 -2.297552 -27.152361 -13.441108 2.431013 -1.160786 -14.297553 1.245805 -1.305782 6.938774 4.191779 2.184402 -19.924323 -9.524576 12.518902 -7.365508 -0.743331 5.430378 7.688324 -26.972968 -0.238852 6.742854 -13.144134 -0.151328 -2.826580 -2.255583 -0.292653 -3.826160 3.442974 0.833188 3.064537 -1.182945 0.423885 0.927262 2.079632 4.229936 1.102743 -0.544372 20.946828 10.376489 -1.689414 -2.902597 -11.868778 0.670019 -7.071993 -21.381128 0.929628 4.283367 -13.488894 2.263858 8.324988 23.151641 -0.088868 2.033028 -0.129429 -1.899865 +PE-benchmarks/tug-of-war.cpp__main = -0.946303 -0.784863 0.295774 -2.353714 1.708447 1.306586 0.862237 -1.005029 -2.729637 -0.707698 0.913629 -2.638062 -0.782017 3.061737 -0.941426 1.961454 3.871592 0.738205 -1.277153 -0.537531 2.609705 -0.548219 3.609966 3.272875 -2.397680 -0.097720 -0.059595 1.377013 0.729866 0.956619 0.025780 -1.474502 1.189547 -2.322013 -0.408030 -1.756608 0.340109 0.761223 1.616526 -3.927290 0.674199 0.231445 0.217738 -0.699601 -0.682525 0.447849 2.072641 2.317203 -0.544810 0.918226 2.096813 0.392781 -0.264449 0.663100 0.595603 0.455911 0.573761 -0.049635 -1.189463 -0.934822 -0.338158 -1.069748 0.417051 2.402398 3.040149 0.305999 -0.118455 1.283372 0.409123 0.676043 1.438458 0.437159 -0.311284 0.072125 1.278163 -3.044928 -0.298146 -4.526700 -0.538966 -5.106635 -1.662274 -0.143469 2.249253 0.148470 1.229356 0.103282 2.538953 -0.465393 -0.510687 2.423260 3.035735 -2.198405 -1.265202 -1.652191 -1.496096 0.932399 -1.401673 0.167299 1.073399 0.542800 -2.235731 -1.302752 1.001520 0.991232 -0.942282 -1.483866 0.499281 2.205518 -2.396176 -1.745445 -0.553773 1.857614 -0.285727 -3.882229 -0.733863 -1.694558 1.701124 0.244851 -1.057789 -2.093083 0.473836 1.311576 -0.899885 -1.113608 -0.697232 1.872570 1.104636 1.031813 0.271228 0.322959 0.653375 3.624333 1.179804 -1.650468 0.218958 0.068673 -0.787300 0.917637 -1.687912 -1.244485 0.717086 -2.437603 0.558724 1.712140 -1.592352 -0.905369 1.488260 0.736128 0.789607 7.623097 0.060786 2.960221 1.935921 -2.438744 0.948414 -0.875443 0.097213 0.770772 1.277197 0.136344 -3.292846 -2.361250 1.455141 2.654437 2.012165 -2.803997 -0.878703 -0.409338 -0.047632 0.118636 0.001964 0.682699 0.076078 -1.978819 -0.599438 1.931942 4.903146 -1.039194 -1.036987 1.256618 0.940462 -1.006871 -2.872410 -1.018235 -1.424641 0.541901 0.810130 0.091551 1.564509 3.341887 -4.654338 2.359662 -0.429256 -0.037027 1.777690 0.776602 -2.323304 -2.978171 -0.600096 1.656043 3.020536 -0.344969 0.246734 1.010498 -2.368737 -0.237694 0.492400 0.222453 -0.691343 1.139243 0.316045 -1.454043 -1.417359 0.302371 -0.745917 -0.430807 -0.278952 1.618897 0.296250 -3.883514 2.511509 -0.116803 -0.970487 0.533899 -0.676732 2.421904 -2.342938 -2.614093 1.590319 -0.289108 -1.180577 -1.277800 0.325025 1.626429 0.584738 0.777520 -1.371428 -2.795704 1.930234 -0.890011 2.187638 1.103240 -0.169705 1.906489 -0.376636 -0.709755 -2.361481 -1.371269 0.094693 -0.228615 -2.221431 -0.793234 -0.661385 2.408886 2.032412 0.055901 -1.760891 -0.101173 2.840333 -2.545550 -0.866451 1.817817 1.193005 -2.340118 0.917048 2.273500 -2.942246 -0.102778 -1.352844 -0.375462 -0.776292 -1.934069 1.517262 0.140824 1.428297 0.087620 0.444067 -0.116086 1.088716 0.774966 0.386225 0.293979 3.375065 3.081639 -1.056874 -0.530289 -2.584870 1.185625 -3.187604 -3.138635 1.088146 0.409135 -1.911309 0.389137 0.205751 2.698969 0.440341 -0.238153 -0.681117 0.435558 +PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -4.303448 -4.026143 -0.689974 -9.920528 6.155648 6.271241 3.129891 -5.864650 -10.487186 -1.932704 4.526209 -10.328135 -1.655731 11.800083 -4.068787 9.281064 14.578714 1.684494 -5.790507 -1.954758 12.065547 -1.001878 14.462445 12.623474 -9.607957 -1.228554 0.345232 5.663797 4.370704 0.998039 1.606210 -4.182173 4.741191 -11.494287 -2.940438 -6.416073 2.244965 3.484941 8.886819 -14.321039 2.710483 -1.079521 0.474703 -2.840736 -3.777014 0.036587 6.898563 9.558921 -2.547128 2.907173 9.519965 1.904622 -1.981676 2.469573 1.039752 1.214635 0.915530 0.253616 -3.317655 -5.182994 -0.565108 -2.357187 2.710922 9.945684 12.250582 1.549336 -0.055310 7.322226 2.619315 2.552390 5.928849 1.719251 -2.896914 0.558965 5.109022 -14.738968 -1.496998 -19.123836 -2.250462 -18.004995 -5.771988 0.495737 7.048724 -0.693732 6.034292 1.991354 9.490969 -1.441514 -2.974740 11.056219 11.215061 -8.877539 -4.641437 -6.867005 -6.530129 3.737520 -5.831855 1.902892 3.867432 3.015019 -8.510377 -5.357298 2.883484 4.976440 -3.744305 -8.109797 2.461708 7.859875 -8.042151 -7.760887 0.244006 8.241206 -2.314575 -15.858739 -3.976719 -8.039343 7.660315 -0.327240 -3.294178 -9.290593 0.613118 5.510172 -2.793024 -5.494063 -0.826368 5.739708 5.939356 4.828775 0.594814 1.167171 2.720091 16.164495 3.705468 -6.545284 0.761208 -0.456612 -2.918365 4.210156 -6.886983 -4.792672 3.423436 -9.756714 2.364114 8.503708 -5.639571 -4.298985 8.816232 3.149335 2.803621 32.944637 1.466765 12.178730 9.001108 -9.432988 2.217111 -4.443994 0.819352 3.780866 3.854507 -0.265151 -15.143879 -9.668368 5.835176 9.980915 7.747903 -11.314689 -4.241288 -0.912405 -0.544580 0.009869 -1.167977 2.755123 -0.278770 -7.676797 -2.221357 9.329403 19.099185 -4.261866 -1.275627 5.676846 4.812243 -5.079173 -12.198404 -4.759695 -6.803079 2.312417 4.273703 1.204730 6.366233 13.003012 -16.569585 8.235347 -0.821961 1.328017 5.830323 3.985454 -10.572814 -11.331221 -1.968193 6.127065 10.552770 -3.051627 1.846702 4.697672 -9.240482 -0.593061 2.603780 -0.311015 -2.282109 4.045833 1.362292 -4.695164 -5.874234 4.216031 -3.649064 -1.654124 -0.051509 6.817084 -0.307687 -13.097590 9.701567 -0.860478 -4.058913 2.550211 -4.299834 11.165573 -9.440714 -9.616315 7.302085 -0.475399 -2.768962 -4.844176 2.222403 6.674140 3.323809 4.127769 -6.241408 -10.913476 6.265628 -4.092796 8.054178 4.033346 -0.761082 6.163199 -5.425415 -1.936200 -10.968804 -5.572801 -0.804375 1.753216 -10.601317 -5.061648 -1.764719 9.957989 7.107325 -0.623847 -8.235490 1.074792 10.575978 -11.147989 -3.503008 6.105921 6.740844 -11.327851 2.462861 7.981682 -11.688697 0.829395 -4.659017 -1.042396 -3.253037 -8.394168 6.455221 2.378097 6.628239 -0.336394 2.239396 1.283582 4.684354 3.921570 2.986996 1.870092 12.786096 11.749939 -3.040253 -5.017293 -11.019217 4.194067 -12.661889 -13.782403 5.784281 1.485049 -7.360751 1.578835 0.812928 11.986863 2.310534 -0.601011 -2.173307 1.759102 +PE-benchmarks/the-knights-tour.cpp__main = -0.386021 -0.408241 0.086951 -1.005008 0.715606 0.267981 0.399460 -0.146689 -1.344305 -0.400615 0.246226 -1.205802 -0.304894 1.431644 -0.225596 0.912202 1.822662 0.527648 -0.466789 -0.044408 1.010747 -0.737220 1.343237 1.360375 -0.829899 0.043565 -0.320719 0.541259 -0.071716 0.816505 -0.042331 -0.821866 0.378834 -0.847685 -0.024310 -1.010118 0.085159 0.615405 0.528584 -1.967127 0.387561 0.646906 0.596580 -0.407462 -0.262111 0.183317 0.830099 0.966011 -0.241747 0.424651 0.684555 0.052593 0.021023 0.332196 0.411315 0.370519 0.178069 -0.132345 -0.728295 -0.229084 -0.187199 -0.673143 0.270402 0.856602 1.259195 0.029641 -0.069523 0.378788 0.050606 0.320059 0.666733 0.080945 -0.190606 -0.354497 0.436959 -1.038289 -0.078557 -1.721825 -0.105945 -2.572600 -0.748788 0.014628 1.245358 0.606885 0.415554 -0.276127 1.077204 -0.429196 -0.151691 0.929247 1.242510 -0.837543 -0.581934 -0.786466 -0.663673 0.461185 -0.493353 -0.364872 0.775943 0.172869 -0.950709 -0.388896 0.659939 0.384746 -0.362545 -0.512076 0.255070 1.017357 -1.170399 -0.845446 -0.272337 0.887938 -0.090633 -1.526172 0.146552 -0.700108 0.015500 0.197861 -0.551640 -0.783113 0.325439 0.361356 -0.470379 -0.315726 -0.905093 1.102405 0.110874 0.318468 0.222547 0.063104 0.122555 1.302641 0.382314 -0.799859 0.156587 0.218102 -0.325860 0.340605 -0.758846 -0.785621 0.257844 -1.183773 0.018963 0.387456 -0.763387 -0.128337 0.205326 0.421224 0.333027 3.037660 -0.042290 1.308420 0.779250 -1.023814 0.952375 -0.112811 -0.003545 0.243204 0.687974 -0.014044 -1.178097 -0.993432 0.521534 1.138160 0.977960 -0.938107 -0.543114 -0.299091 0.000611 0.319328 0.068504 0.243037 0.080982 -0.974912 -0.253827 0.528636 2.244101 -0.246817 -0.226236 0.550361 0.480369 -0.619915 -1.499916 -0.386128 -0.949071 0.139838 -0.142619 -0.165738 0.623576 1.441702 -2.096609 1.196096 -0.335497 -0.070699 0.912757 0.113214 -0.892898 -2.107606 -0.499243 0.686107 1.707306 -0.273675 0.240250 0.390411 -0.950721 -0.122859 0.070139 0.074083 -0.311411 0.473636 -0.145992 -0.638271 -0.414007 0.018481 -0.431712 -0.314118 -0.152851 0.608899 0.726113 -1.320562 0.989696 -0.030326 -0.301347 0.270853 0.110011 0.780755 -0.913999 -1.101178 0.562602 -0.056607 -0.574987 -0.566387 0.092643 0.736897 -0.034921 -0.165764 -0.232565 -1.265076 0.923958 -0.454039 0.949538 0.483778 -0.246031 0.662373 0.774990 -0.397812 -0.762294 -0.593448 -0.321347 -0.538968 -0.685568 -0.126233 -0.359197 1.017032 0.843354 0.309465 -0.692266 0.020317 1.378469 -0.532140 -0.314623 0.961077 -0.343486 -0.819867 0.383414 1.170136 -1.380149 -0.079885 -0.713171 0.091618 -0.197835 -0.653481 0.619166 0.038491 0.470745 -0.021099 0.067810 -0.195243 0.389852 0.458382 -0.065567 -0.004163 1.716407 0.817485 -0.336020 0.058063 -0.896618 0.317388 -1.268607 -0.976633 0.139502 0.526880 -0.995573 0.245861 0.352325 1.029240 0.060881 0.136314 -0.238131 0.067847 +PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -0.837625 -1.002601 -0.480240 -2.077852 1.150755 1.112085 0.595764 -0.728367 -2.387052 -0.462739 0.653730 -2.133486 -0.088311 2.479245 -0.561395 2.133511 3.280480 0.575150 -1.000553 0.117335 2.408304 -1.044547 2.554480 2.481893 -1.638244 -0.221635 -0.379202 1.193265 0.201136 0.779819 0.450872 -1.225856 0.620497 -2.270062 -0.469800 -1.861370 0.517606 1.248580 1.720899 -3.513209 0.681399 0.722376 0.727554 -0.747127 -0.746472 -0.362682 1.089937 1.889901 -0.618455 0.555170 1.721467 0.416376 -0.328747 0.515301 0.223001 0.538549 -0.258591 -0.139910 -0.895858 -0.846780 -0.003369 -0.633104 0.808647 1.702488 2.501045 0.110857 0.082055 1.310171 0.317144 0.481997 1.279974 0.112832 -1.004478 -0.488544 0.803863 -2.709491 -0.328146 -3.519410 -0.117683 -4.000548 -1.143235 0.207095 1.672234 1.064978 1.146714 -0.217556 1.796256 -0.767079 -0.428073 2.309259 1.938889 -1.578255 -0.939543 -1.752034 -1.410965 0.959908 -1.047106 -0.402485 1.291244 0.529750 -1.572029 -0.823669 0.965956 1.099357 -0.686530 -1.783365 0.547495 1.659681 -1.712849 -1.950631 0.219485 2.139024 -0.641297 -3.052753 -0.238262 -1.772769 0.145795 -0.020779 -0.583266 -1.764936 0.129181 0.878317 -0.536473 -0.955495 -0.968110 1.704090 0.860514 0.678004 0.317842 0.091922 0.271625 3.113536 0.372551 -1.376235 0.152203 0.307327 -0.602430 0.686107 -1.612295 -1.267526 0.508307 -2.247176 0.162393 1.410421 -1.180046 -0.398099 1.160143 0.785075 0.636726 7.408516 0.353470 2.680434 1.894750 -1.854660 1.585981 -0.443010 0.062576 0.682488 0.796873 -0.278080 -3.293306 -1.823531 0.825212 1.897248 1.705300 -1.890594 -1.171408 -0.395333 -0.165952 0.379592 -0.241872 0.502949 -0.093556 -1.717676 -0.385892 1.638230 4.372721 -0.409883 0.447535 1.221365 1.420333 -1.737757 -3.261163 -0.891279 -2.189377 0.252118 0.223404 -0.093161 1.184266 2.539307 -3.395996 1.789983 -0.186974 0.328107 1.461676 0.495110 -2.076683 -3.862829 -0.697383 1.125563 2.904874 -1.129296 0.896182 0.910060 -1.663995 -0.086575 0.444125 -0.206759 -0.393959 0.704880 -0.226331 -0.889857 -0.891765 0.959155 -1.149295 -0.636961 -0.115527 1.161870 0.887222 -1.825955 1.704507 -0.186361 -0.666576 0.668121 -0.406868 2.029840 -1.860631 -1.849897 1.427241 0.257827 -0.442414 -0.905543 0.397764 1.504779 0.386265 0.221542 -0.677575 -2.604577 1.224360 -0.967159 1.441808 0.793875 -0.486522 0.742616 0.195736 -0.456047 -2.051693 -1.469390 -0.772554 -0.051354 -1.904970 -0.827740 -0.419765 2.008085 1.331740 0.305237 -1.842725 0.379290 2.466604 -1.187834 -0.482894 1.365349 0.046975 -2.201319 0.112947 1.800765 -2.694710 0.212795 -1.077526 0.539980 -0.301853 -1.449983 1.262913 0.539170 1.231434 -0.160200 0.310020 0.060034 0.801944 1.134807 0.333615 0.183695 3.090215 1.319376 -0.186468 -0.695265 -1.881092 0.399237 -2.366237 -2.283064 0.602989 0.739106 -1.738464 0.553650 0.877393 2.333083 0.298493 0.590459 -0.156918 0.005925 +PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -0.933750 -1.175460 -0.400288 -2.473911 1.536681 1.115905 0.694716 -1.390326 -2.613516 -0.163055 1.063723 -2.335856 0.242195 2.725747 -0.563951 2.488147 2.883156 0.322554 -1.379736 -0.303816 2.558934 -0.274974 2.542310 2.216312 -1.656159 -0.010178 0.129309 0.931288 0.458732 0.606365 0.227483 -1.227158 0.598552 -2.536740 -0.667757 -1.155562 0.044687 1.051305 2.535660 -2.943706 0.778943 0.485458 0.840436 -0.832870 -0.847810 -1.452676 1.093518 1.834223 -0.384623 0.894114 1.823338 0.311699 -0.352401 0.394238 0.991169 0.928220 0.679739 0.060862 -0.751843 -1.143405 -0.313111 0.410757 0.768721 1.848593 2.071473 0.140775 -0.310072 1.556705 0.727632 0.659521 1.430163 0.360417 -1.628629 -0.307040 0.867821 -3.133276 -0.000511 -3.874225 -0.087357 -3.486420 -1.341947 0.874832 1.562397 -0.045318 1.440312 0.847123 2.106324 -0.992664 -1.008985 1.687420 2.170337 -1.467247 -0.885817 -1.032122 -1.740009 0.648588 -0.738056 -0.172068 1.319482 0.509779 -1.836147 -0.801029 0.801681 1.243025 -0.767426 -1.577160 0.831189 1.726301 -1.527854 -2.055719 0.710668 2.412829 -0.725798 -2.958253 -1.484857 -1.585248 0.452900 -0.105078 -1.246292 -2.338443 0.397774 0.869754 -0.893270 -1.090650 0.474394 0.666620 1.261833 1.352914 0.150344 0.086800 0.538551 3.574991 0.554519 -1.665091 0.635416 -0.044927 0.099814 1.162878 -0.925780 -1.433118 -0.425178 -1.969174 0.641902 1.679894 -1.265221 -0.612532 1.563404 1.022977 0.015907 6.893653 0.050087 2.783226 2.077050 -1.865898 0.166647 -0.586711 0.167041 0.539673 0.905788 -0.181939 -2.196142 -2.098334 1.525389 2.229535 1.782266 -1.975373 -1.428050 -0.080331 -0.303761 0.690389 -0.145469 0.201302 0.319224 -1.776597 -0.550013 1.556073 3.722871 -0.850999 -1.299620 1.297832 1.617943 -1.231891 -2.255762 -1.014280 -2.784297 0.572658 0.501192 -0.037413 1.490756 2.799749 -4.010010 1.988580 -0.184504 0.016384 1.852606 1.156555 -2.171565 -3.115538 -1.196078 1.028115 2.456062 -1.255492 0.489580 1.049621 -1.803418 -0.115976 0.343110 -0.497691 -0.748286 0.977424 -0.118290 -0.924391 -0.591066 1.192397 -0.792109 -0.638140 -0.045111 1.431658 0.474138 -2.423192 1.814645 0.411785 -0.550764 0.825318 -0.505589 2.325398 -1.531651 -1.910513 1.484533 0.094367 -0.127461 -0.312617 0.283097 1.378297 0.845544 1.053633 -1.126358 -1.280911 1.108459 -0.933885 2.129764 0.930009 -0.713245 0.722828 -1.467282 -0.389405 -1.624928 -0.782940 -0.511932 0.412632 -1.925136 -1.875701 -0.568080 2.122565 0.944428 0.338524 -1.825243 -0.373237 2.089669 -2.129737 0.021581 1.378382 0.300640 -2.560140 0.241473 1.892177 -2.070142 0.647366 -0.967442 -0.038785 -1.135873 -1.207661 1.579119 1.124123 1.244974 -0.497902 -0.074691 0.418079 0.835172 1.139747 0.592235 0.523199 2.200811 1.340702 -0.482985 -1.197007 -2.067575 0.536700 -2.275176 -2.476171 1.133008 0.372473 -2.256343 0.022731 -0.013935 2.539800 0.451555 0.257404 -0.300070 0.523372 +PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -3.345974 -3.494453 -1.411826 -6.621723 4.842436 5.154997 2.651100 -4.151955 -7.992855 -0.563714 3.201172 -6.848657 -0.733800 9.173061 -2.386613 8.136149 10.897904 2.022137 -4.242122 -0.769855 9.125772 -1.885686 10.374071 9.294714 -6.592159 -0.611428 0.401832 3.277411 2.277587 1.956919 -0.380272 -3.076301 4.258765 -9.823595 -2.508934 -5.938557 1.292852 3.203348 7.215419 -10.842567 2.133562 -0.567945 0.492209 -2.272189 -3.116979 0.513688 4.859113 7.106518 -2.045009 3.117982 5.973105 0.295516 -1.258873 2.119174 1.573900 2.618170 0.062815 1.972598 -2.862905 -3.836026 -0.846046 -2.505906 2.343548 6.779829 8.814686 0.529297 -0.099719 5.915116 1.240063 1.540740 4.667671 1.182573 -2.031919 -1.078424 4.012736 -10.893695 -1.260452 -13.083997 -2.311443 -14.189633 -3.921412 0.641459 4.995630 -1.774877 5.524664 1.137978 7.418477 -1.805990 -2.410583 7.514849 8.233630 -7.914343 -3.602255 -4.854222 -4.549612 2.268232 -4.298963 0.426150 4.781172 0.478332 -6.532113 -4.741291 2.635748 4.362642 -2.792531 -6.908428 1.751987 6.132441 -6.512813 -7.046888 -0.246191 5.072994 -2.967629 -11.406476 -2.385293 -5.360061 4.962940 0.198156 -2.907443 -8.026637 1.023195 4.555792 -1.912503 -5.329254 1.509278 4.401108 3.814489 3.665799 0.921388 0.162273 1.396579 12.495023 4.040746 -4.953636 0.750187 0.058841 -2.269008 3.659756 -4.951658 -4.447446 2.464873 -8.264402 1.318883 6.131911 -4.538462 -1.449844 8.279928 3.147453 1.782235 23.779988 0.956711 8.858698 6.552330 -7.733993 2.022418 -3.299420 0.792786 3.187999 3.741461 -0.543666 -11.451549 -7.164864 4.175623 7.730968 6.115055 -8.810698 -4.035326 -1.477238 0.205114 0.680643 -1.188417 1.977531 0.350853 -6.118858 -1.520234 5.849180 14.585697 -4.480300 -0.911454 4.542883 3.206554 -4.606649 -10.107796 -3.890555 -6.912005 1.529524 2.197973 0.204074 4.355505 9.776760 -11.572475 6.555903 -2.766535 0.049083 4.784918 3.476765 -7.391102 -8.963664 -2.136755 4.312127 8.376153 -1.981001 1.490960 3.785513 -6.943067 -0.541082 1.533540 -0.372228 -1.638145 3.365715 0.877084 -4.005950 -3.895678 3.622122 -1.965452 -2.647404 0.695583 5.185347 -0.007427 -9.619643 6.777075 -0.219948 -3.266822 2.977873 -1.311792 7.753510 -6.903680 -7.908238 5.938925 0.246979 -1.174784 -3.234465 1.572076 5.394812 2.677119 1.299826 -4.126127 -8.838101 4.569221 -3.055976 6.255550 3.073139 -0.972045 5.227928 -4.145537 -2.346916 -8.139016 -3.830237 -1.613158 0.031919 -6.980929 -4.580532 -1.458328 8.147567 5.393974 0.969358 -5.284936 0.713139 8.363086 -7.971777 -1.614279 5.444948 5.725763 -7.862674 1.558020 6.647088 -8.777172 0.394615 -2.711789 -0.691300 -2.273703 -5.687188 5.132671 1.277407 4.851235 -0.622349 1.808248 1.329322 3.341620 3.113336 2.434674 0.894373 9.583009 7.964879 -3.091402 -3.954537 -7.417489 3.062153 -9.272493 -9.321256 3.965591 2.573733 -5.955177 1.319602 1.645913 8.475101 1.548692 -1.018443 -1.219434 0.180017 +PE-benchmarks/longest-bitonic-subsequence.cpp__main = -1.542802 -1.548624 -0.632744 -3.817960 2.606283 3.000325 1.280786 -2.143913 -4.146119 -0.535778 1.906610 -4.060405 -0.732402 4.503199 -1.460059 3.599269 5.489380 0.404509 -2.300881 -0.419065 4.231868 -0.436092 5.417911 4.782128 -3.502175 -0.285291 -0.301939 1.857750 1.091502 0.999450 0.462240 -1.996629 1.769744 -3.836724 -1.208921 -2.393370 0.650338 1.127092 3.245914 -5.547108 1.074950 0.526541 0.251395 -1.156727 -1.285030 0.211561 2.595911 3.544255 -0.681750 1.118967 3.384105 0.745892 -0.619299 0.924748 0.879606 0.491419 0.861918 0.172214 -1.298670 -2.102824 -0.281600 -0.582188 0.624189 3.584504 4.592923 0.287815 -0.086111 2.476319 0.628599 1.074751 2.357255 0.600328 -1.118208 0.048715 1.743825 -4.596023 -0.480628 -6.063211 -0.743781 -6.739008 -2.110060 0.497935 2.831129 0.217668 2.250302 0.083368 3.608288 -0.667902 -1.379578 3.604006 4.075023 -3.126020 -1.728405 -2.328165 -2.290101 1.240396 -2.095919 0.413045 2.103433 0.823111 -3.260831 -1.399275 1.223451 1.881781 -1.472430 -2.902665 0.876823 2.906376 -3.005323 -2.660429 0.486860 3.606003 -0.868239 -6.074771 -1.659056 -3.036970 1.709042 -0.283256 -1.234075 -3.295964 0.394591 1.884497 -1.135027 -1.995144 -0.411631 2.623189 2.289425 1.964454 0.333836 0.447631 1.063889 5.982903 0.941439 -2.369851 0.358047 -0.337918 -0.758813 1.990726 -2.304867 -1.662110 0.879277 -3.658551 1.241956 3.070947 -1.988106 -1.027962 2.556972 1.479489 0.766239 13.258683 0.307254 4.952603 3.468885 -3.698922 1.229305 -1.573618 0.237184 1.262500 1.383417 -0.354165 -5.730968 -3.480012 2.378496 3.764975 2.868481 -4.497938 -0.921707 -0.163936 -0.265873 -0.159347 -0.287072 0.907639 0.172546 -2.897184 -0.913754 3.430064 7.835338 -1.498702 -0.551033 2.307410 2.110383 -2.046244 -4.497687 -1.744358 -2.565294 0.906898 1.302225 0.366571 2.403205 4.788637 -5.983556 3.137499 -0.320760 0.167167 3.025073 1.415669 -3.874332 -4.794923 -1.020304 2.152495 4.450070 -1.290489 0.721236 1.703466 -3.353031 -0.215395 0.885622 -0.456978 -0.779689 1.439285 0.499861 -1.733597 -1.968464 1.165076 -1.290573 -0.416365 -0.401037 2.478654 0.205764 -5.042702 3.598372 -0.004274 -1.597212 0.552887 -1.256341 3.963678 -3.276162 -3.575194 2.616261 -0.284905 -1.207344 -1.735274 0.703408 2.366026 1.227250 1.797928 -2.379838 -4.226060 2.586113 -1.834071 3.139451 1.553149 -0.379907 1.987354 -1.537755 -0.810129 -3.946747 -2.733638 -0.294809 0.406777 -3.920490 -0.810413 -0.894530 3.706278 2.201178 0.128781 -3.322772 0.155012 4.202733 -3.337302 -0.851620 2.329803 2.119081 -4.345329 0.805273 3.068120 -4.319781 0.450325 -1.699579 -0.709103 -1.580881 -3.201910 2.511504 1.238790 2.655240 -0.278378 0.993569 0.234165 1.494484 1.302562 0.823497 0.674058 5.098852 3.840151 -1.120890 -1.579209 -3.948677 1.748775 -4.486208 -4.915275 2.205619 0.268375 -2.943255 0.474493 0.553243 4.361723 0.856456 -0.135092 -0.791694 0.735571 +PE-benchmarks/kmp-algorithm.cpp__main = -0.664556 -0.419210 0.334320 -1.720159 1.438492 1.221940 0.731702 -0.531123 -2.155871 -0.747339 0.584456 -2.535585 -0.958784 2.499930 -0.684386 1.415113 3.469405 0.664735 -0.975969 -0.209642 1.879591 -0.637834 3.110280 2.891250 -1.814050 0.010451 -0.328063 1.301507 0.133653 1.213787 0.113333 -1.734558 0.939384 -1.565387 -0.285824 -1.609236 0.182497 0.447800 0.978094 -3.575629 0.503413 0.913090 0.216778 -0.636248 -0.386017 0.278036 1.931379 1.807063 -0.160596 0.658438 1.483672 0.366832 -0.045291 0.563499 0.663300 0.300432 0.738227 -0.408893 -1.287868 -0.684212 -0.347526 -1.007822 -0.022951 1.833161 2.691416 0.263179 -0.130309 0.757844 0.036319 0.587223 1.070034 0.326801 -0.126559 0.191239 0.957372 -2.063225 -0.184074 -3.353867 -0.378987 -4.395057 -1.471404 -0.272616 2.079519 0.703763 0.823513 -0.482227 2.072654 -0.520521 -0.242580 1.892006 2.669827 -1.670277 -1.093997 -1.409020 -0.998742 0.815806 -1.139758 -0.066294 1.169739 0.359003 -1.858527 -0.811120 1.121378 0.677789 -0.729570 -0.943277 0.357427 1.891893 -2.097347 -1.286530 -0.704111 1.644904 -0.064368 -3.311441 -0.631877 -1.309823 0.682651 0.462836 -0.910096 -1.566350 0.574794 0.900695 -0.722593 -0.767445 -0.932130 1.969538 0.721464 0.694450 0.370886 0.544169 0.604704 3.021148 0.860522 -1.167053 0.234453 0.092793 -0.798961 0.702836 -1.415478 -1.010438 0.317298 -1.968756 0.427254 1.392517 -1.354649 -0.625353 0.323724 0.620477 0.708575 6.868511 -0.099315 2.589981 1.531840 -2.090457 1.251735 -0.698734 -0.121931 0.299904 1.050797 0.292781 -3.010103 -1.802346 1.212604 2.204060 1.637805 -2.372832 -0.411358 -0.367665 0.057943 -0.033197 0.220893 0.644940 0.270550 -1.651047 -0.479375 1.635222 4.560414 -0.783196 -1.156491 1.052449 0.659397 -0.840979 -2.548419 -0.694098 -0.906979 0.334266 0.307574 -0.051016 1.130719 2.695709 -3.744044 2.045212 -0.181369 -0.183363 2.066520 0.488099 -1.855577 -2.741614 -0.618778 1.550744 2.877542 -0.222389 0.113885 0.509214 -1.865512 -0.246106 0.394859 0.289638 -0.476250 0.941120 0.049873 -1.276903 -1.168423 -0.314084 -0.580658 -0.297827 -0.542559 1.195770 0.815070 -3.210965 2.184654 0.059196 -0.746964 0.199650 -0.411495 1.869016 -1.877489 -2.234515 1.126531 -0.487511 -1.482253 -1.174683 0.106765 1.190077 0.552534 0.658833 -0.908165 -2.273179 1.894137 -0.760968 1.835668 0.913542 -0.063491 1.519011 0.595556 -0.791987 -1.904801 -1.627570 -0.036968 -0.505910 -1.762987 -0.229229 -0.663673 1.895051 1.707103 0.117296 -1.613319 -0.466311 2.598921 -1.840767 -0.662608 1.641298 0.530566 -1.933993 0.714579 1.993005 -2.602105 -0.202958 -1.186647 -0.464753 -0.699848 -1.618311 0.973442 -0.143075 0.972679 0.268540 0.142776 -0.409695 0.692037 0.550557 0.035575 0.130079 3.141546 2.391207 -0.920106 0.044046 -2.037587 0.965578 -2.604078 -2.556246 0.771518 0.279756 -1.605967 0.249957 0.562015 2.036945 0.342252 -0.239044 -0.683082 0.311571 +PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -3.325355 -3.646661 -0.882099 -7.701861 4.392852 5.165713 2.377782 -4.809682 -8.207096 -1.232013 3.606800 -8.587597 -0.520393 8.843550 -3.005575 7.814667 12.301546 1.450197 -4.785572 -1.127563 9.991191 -2.494423 11.904008 10.923315 -6.910948 -1.056479 -0.098611 6.019898 3.398442 0.972890 1.908497 -2.863080 3.444839 -10.016267 -2.850003 -6.815273 2.027525 3.136431 7.681775 -12.140005 2.204542 -0.475181 0.576801 -2.322580 -2.961487 -0.213370 4.552095 7.241887 -1.347536 2.107873 7.818847 1.469524 -1.516007 2.000251 0.898359 1.240398 2.229714 0.287961 -2.517377 -4.377418 -0.181343 -1.508943 2.364581 7.246340 10.833282 1.145639 0.278140 6.064702 2.040626 1.884216 5.102338 0.913161 -3.744107 0.199179 3.550596 -13.735472 -0.400841 -16.365023 -1.690663 -14.957775 -4.197529 0.740398 5.250500 -1.085522 4.856466 1.308196 6.737422 -1.378277 -2.439535 8.571071 8.060753 -6.613893 -3.551162 -5.164050 -4.771299 3.116469 -4.557446 1.040291 5.019030 2.856115 -6.118842 -3.240382 4.106414 4.240479 -2.763731 -6.773707 2.058524 6.129059 -6.070279 -6.626183 1.108122 7.711389 -2.372795 -12.715363 -2.293322 -8.138917 5.191705 -0.486099 -2.104012 -7.317976 0.212849 4.076864 -1.655251 -4.250170 -0.614783 5.241035 4.821636 3.682470 0.407622 1.236102 1.659290 13.820146 2.266385 -4.877946 0.686991 -0.235886 -3.792389 3.556116 -6.602208 -3.931066 3.138953 -7.550682 1.657692 7.176414 -4.175300 -3.084956 8.366245 3.405418 2.044098 30.747548 1.725634 10.570530 8.011273 -7.172896 2.748474 -3.471037 0.926955 3.032418 2.612606 -0.947185 -15.977059 -7.386476 3.894597 7.196871 5.909436 -10.298913 -4.485522 -0.912929 -0.395468 0.307116 -1.314655 2.111465 -0.281990 -5.843772 -1.580579 7.639398 17.205344 -3.017264 -0.125837 4.539114 3.317357 -6.540384 -12.795527 -3.798003 -5.411871 1.768837 1.167932 0.875085 4.492779 9.640114 -13.104460 6.118467 -0.474328 1.440721 6.738564 3.349335 -8.792202 -11.807633 -2.128978 4.441140 9.524133 -3.517032 1.746775 4.011598 -6.751099 -0.458280 1.867085 -0.709203 -1.235277 2.683548 0.845050 -3.343232 -4.208924 3.506515 -2.702889 -1.049745 0.234930 5.160940 0.503875 -9.690572 7.086925 -0.713450 -3.104313 2.264567 -3.209175 9.142297 -7.147055 -6.934730 5.676522 0.117197 -1.985419 -5.315307 1.950146 5.302530 2.454388 3.660700 -4.355256 -8.480013 4.403759 -5.168247 5.583542 2.889678 -0.989991 3.845421 -3.516742 -1.341169 -10.468421 -4.870373 -3.350696 1.419397 -8.781583 -3.699399 -1.178381 7.661740 5.060195 -0.099482 -7.055771 1.299791 9.801259 -8.876652 -2.647600 4.618782 5.943144 -9.961123 1.582155 5.938687 -10.841796 0.885296 -2.926368 -2.177084 -2.028741 -6.428158 5.267294 2.404233 5.399531 -0.638852 1.866329 1.271274 3.529464 3.285946 2.517898 1.419142 11.604038 10.198268 -1.614272 -4.522371 -8.212515 2.548640 -9.534582 -10.946443 4.387681 1.658138 -6.231987 1.618225 2.740821 10.200324 2.379706 -0.320332 -1.375000 0.991885 +PE-benchmarks/little-and-big-endian-mystery.cpp__main = -0.197640 -0.338859 0.367702 -0.680341 0.318418 -0.187868 0.215305 -0.016211 -0.868134 -0.316912 0.193609 -0.628435 -0.178737 0.783102 -0.233712 0.284798 1.017858 0.440067 -0.288668 -0.284299 0.501521 -0.553227 0.780996 0.899518 -0.600944 0.029221 -0.176826 0.574123 0.292535 0.497529 -0.016829 -0.199229 0.138514 -0.296802 0.184283 -0.693515 0.073303 0.389332 0.023222 -1.170603 0.220275 0.280180 0.453351 -0.133738 -0.016799 0.545642 0.395344 0.549731 -0.168118 0.353568 0.534858 -0.004715 0.095926 0.167699 0.236266 0.120460 0.464312 -0.079017 -0.396525 0.005946 -0.089421 -0.628602 0.227538 0.552229 0.804450 -0.005627 -0.009244 -0.007723 0.190394 0.234900 0.538455 0.040350 -0.148279 -0.205676 0.273662 -0.668444 0.207159 -1.228557 0.004597 -1.819434 -0.442636 -0.063423 0.994304 0.196348 0.011117 -0.042965 0.632965 -0.111736 -0.077506 0.444723 0.619027 -0.331347 -0.351917 -0.323456 -0.410456 0.360139 -0.319374 -0.207355 0.431314 0.380680 -0.491479 -0.045589 0.442982 0.103275 -0.236046 0.059140 0.071518 0.643844 -0.833863 -0.320842 -0.234170 0.489248 0.152571 -0.830549 0.269776 -0.592042 0.385185 0.063241 -0.304546 -0.139106 0.153161 0.164070 -0.280912 0.139321 -0.924187 0.660717 -0.036133 0.156367 0.024591 0.059226 -0.021636 0.430960 0.228329 -0.543953 0.029774 0.244962 -0.362755 0.157688 -0.565230 -0.414538 0.445566 -0.592337 -0.002076 -0.046668 -0.454631 -0.224670 0.215518 0.294879 0.227554 1.550245 0.021174 0.724722 0.451571 -0.423439 0.447291 0.111259 0.170759 0.307921 0.455573 -0.113601 -0.523675 -0.598850 0.167224 0.655235 0.539524 -0.581875 -0.354599 -0.172501 -0.040856 0.301001 0.062736 0.088605 -0.107068 -0.476550 -0.163772 0.133030 1.051576 0.018301 -0.301108 0.097117 0.088158 -0.461600 -0.797591 -0.125819 -0.208179 0.177601 -0.265412 -0.044965 0.392991 0.821703 -1.563873 0.746061 -0.158681 0.057641 0.573732 -0.065791 -0.428877 -1.384873 -0.269980 0.259106 0.975054 -0.101565 -0.075359 0.441534 -0.597522 -0.077807 -0.022174 0.138675 -0.245167 0.267362 0.078148 -0.288870 -0.227290 -0.200067 -0.126657 0.041382 -0.099591 0.373750 0.220213 -1.056859 0.469055 -0.169198 -0.233606 0.100927 0.083777 0.255586 -0.606046 -0.539413 0.161930 0.020106 -0.529599 -0.662908 0.022780 0.447651 -0.284924 -0.127713 -0.182746 -0.567345 0.550424 -0.533485 0.479209 0.287960 -0.228847 0.529446 0.595577 -0.099042 -0.436157 0.014425 -0.213071 -0.483233 -0.269821 0.190163 -0.185521 0.454191 0.574291 0.148370 -0.164211 0.223455 0.916743 -0.276497 -0.445196 0.483448 -0.208539 -0.238071 0.571359 0.600983 -0.945966 -0.093946 -0.479388 -0.241825 0.075006 -0.256878 0.571982 -0.017564 0.350380 -0.057703 0.173303 -0.194771 0.329258 0.164992 -0.102302 0.043050 1.093321 0.892401 -0.182565 0.178921 -0.525532 0.237410 -0.720817 -0.424525 -0.086691 0.301004 -0.503714 0.272856 0.072145 0.646673 0.179180 -0.060690 -0.196962 0.224777 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = -0.835348 -0.482791 0.874075 -2.451551 1.844143 1.321673 0.853203 -0.592427 -2.722096 -0.983301 0.766106 -2.917087 -1.358813 3.066216 -1.034351 1.251697 3.961750 0.816887 -1.126294 -0.569871 2.146929 -0.357593 3.674080 3.504182 -2.645292 0.020809 -0.210218 1.583471 0.609549 1.460220 -0.045542 -2.005401 0.998527 -1.331059 -0.006084 -1.785661 0.226410 0.470924 0.869568 -4.236838 0.605399 0.844341 0.015487 -0.560465 -0.237481 1.055586 2.507012 2.270692 -0.720054 0.900845 2.117613 0.558087 -0.081114 0.597353 0.613386 -0.014394 0.967874 -0.124427 -1.321380 -0.705067 -0.382619 -1.338132 0.018782 2.444461 3.160622 0.294038 -0.216815 0.532503 0.396366 0.736276 1.266279 0.563067 0.221722 0.403168 1.295815 -1.969193 -0.190106 -4.379227 -0.240341 -5.465727 -1.871881 -0.425829 2.855422 0.833831 0.623820 -0.674521 2.736445 -0.272631 -0.313251 2.338711 3.287518 -1.873266 -1.243564 -1.660778 -1.545506 1.108870 -1.344503 0.190100 0.911141 0.644203 -2.299775 -1.110393 0.822203 0.489002 -1.035875 -0.726346 0.235779 2.328161 -2.651067 -1.056553 -0.948617 1.933748 0.336603 -4.086012 -1.028033 -1.646752 1.429048 0.316104 -1.131781 -1.464677 0.571401 1.002960 -1.102182 -0.475268 -1.599746 2.414059 1.103651 0.777931 0.293600 0.444231 0.769891 2.965473 0.933311 -1.677395 0.101393 0.146464 -0.750904 0.693304 -1.853594 -0.860133 0.824939 -2.272193 0.775337 1.346924 -1.659393 -0.966498 0.413226 0.472971 0.884057 7.872244 -0.172947 3.086429 1.822582 -2.426892 1.340763 -0.512879 -0.065890 0.733576 1.378385 0.439172 -2.840891 -2.240327 1.503259 2.833068 1.948963 -2.800822 -0.200182 -0.250084 -0.138719 -0.216804 0.438195 0.619846 0.009304 -1.869152 -0.662889 1.987384 4.825922 -0.709067 -2.012507 0.970824 1.094616 -0.649283 -2.224219 -0.727036 -0.788997 0.496337 1.006026 0.055440 1.736240 3.413265 -5.431386 2.499446 0.144252 -0.161087 2.101778 0.498410 -2.190991 -2.902624 -0.413312 1.836746 3.151952 -0.022077 -0.050756 0.814784 -2.468777 -0.279772 0.606472 0.418382 -0.907295 1.274394 0.409087 -1.524216 -1.478582 -0.793682 -0.823909 -0.175053 -0.924255 1.589571 0.327436 -4.736497 2.672127 -0.149742 -1.031447 -0.013703 -0.856515 2.058521 -2.482067 -2.746537 1.254541 -0.549488 -1.974766 -1.523694 0.108473 1.465655 0.397049 1.060144 -1.480922 -2.959364 2.393165 -0.938683 2.266411 1.225568 -0.025179 2.132641 0.529550 -0.743514 -2.172458 -1.650508 1.040160 -0.493428 -2.116809 0.062812 -0.834182 2.080059 2.272739 -0.109827 -1.681491 -0.509902 2.941137 -1.977900 -0.974529 1.812016 0.586120 -1.992079 1.228925 2.299050 -2.896209 -0.285716 -1.792888 -0.595763 -0.792008 -1.965213 1.476340 -0.163961 1.266551 0.397993 0.317624 -0.702845 1.116737 0.550628 -0.081351 0.358729 3.582018 3.230333 -1.239240 0.362248 -2.648416 1.504648 -3.332188 -3.027014 0.854544 -0.247345 -1.723992 0.298971 -0.064151 2.497413 0.391718 -0.216025 -0.830834 0.789640 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -4.338663 -5.478826 -3.009467 -9.543263 5.437987 7.164553 3.334270 -6.549895 -10.618760 -0.549631 4.978270 -10.566225 0.255404 11.013799 -3.427335 11.204529 14.414575 2.078230 -5.948188 -1.263930 12.038413 -1.150908 14.693149 12.618004 -7.900462 -1.202082 -1.802988 5.193388 3.481950 -0.128062 1.503308 -2.899643 5.190691 -13.977109 -4.622810 -7.209932 2.402932 4.932808 11.357551 -13.585513 3.386670 -1.839737 1.398938 -2.573186 -4.027329 -0.720043 5.486779 8.731378 -1.320662 3.225267 8.610266 0.221383 -1.435211 2.751727 1.241795 2.653830 0.551603 0.504782 -3.289434 -6.086221 -0.560192 -1.234701 2.920528 7.738000 10.875856 1.923342 -0.568649 8.127405 3.316419 1.920972 6.232004 1.273600 -4.629761 -0.156471 3.562205 -15.930456 -1.541678 -16.763299 -2.638795 -14.865840 -5.200568 1.941697 6.478780 -0.043682 7.095601 1.646298 7.807385 -2.128609 -4.028662 9.442807 9.897258 -9.759485 -4.484400 -5.972670 -4.261566 2.476870 -4.564131 1.575539 5.447589 3.089329 -8.010306 -4.340540 3.794996 5.408713 -3.132231 -8.759541 2.318132 7.297282 -7.361388 -8.551522 2.028139 9.484898 -3.188998 -14.894834 -3.180717 -8.006213 5.465385 -0.638796 -3.545458 -10.196090 0.713767 5.152081 -2.532934 -5.756854 0.688291 5.887102 6.501295 4.242376 0.612113 2.111898 1.627888 17.559483 1.930742 -6.294272 1.430736 -0.426185 -2.502773 4.369264 -6.786319 -5.428041 1.682269 -10.770523 3.361437 9.034685 -5.089855 -2.160531 9.758508 5.829570 1.625286 34.314885 1.990815 13.600836 10.604233 -8.273614 3.240014 -4.972617 2.073536 3.346964 2.539486 -1.425761 -17.715809 -9.250444 5.273762 8.356528 6.919080 -11.945025 -4.437369 -1.528647 0.158821 0.624275 -1.871134 2.441245 0.761082 -7.494359 -1.606581 9.366609 21.548740 -4.794419 1.724900 5.996572 2.230802 -5.992796 -14.892286 -5.776621 -7.708921 1.817484 3.978873 2.539394 5.326883 12.041115 -12.726147 7.565801 -0.931870 1.606262 7.382087 5.004939 -11.091780 -11.482416 -4.059250 5.079509 10.733080 -4.159462 1.754120 5.281157 -8.438307 -0.547914 2.873477 -1.834518 -1.625472 3.390030 1.544093 -4.212255 -4.017362 5.114850 -3.974669 -1.787488 0.947342 7.010494 -0.059499 -11.099665 7.933134 -0.680315 -4.483232 3.508655 -3.736346 11.386301 -7.728403 -7.736444 7.815126 0.533292 -2.123770 -4.914922 3.069353 5.505200 3.373438 4.196148 -5.808619 -11.082951 5.850186 -5.175878 7.414434 3.686574 -1.608796 3.647280 -5.979213 -1.838637 -11.212821 -6.271402 -3.361649 2.015227 -10.810660 -5.267187 -1.144457 9.745347 5.565659 0.600764 -9.164366 1.641628 10.700296 -10.531919 -2.109285 5.960620 7.239605 -12.392074 0.948147 7.767826 -12.228427 2.047906 -3.227240 -2.113478 -3.300461 -7.629709 6.115262 3.698646 6.919256 -1.716715 2.494285 2.570854 4.450821 3.972127 2.803478 2.309702 13.543542 9.569795 -1.214024 -6.321837 -10.086927 4.057803 -11.205166 -12.844165 5.919413 3.034724 -8.791763 1.740226 2.496423 13.183418 2.449750 -1.605411 -1.486493 0.865966 +PE-benchmarks/ugly-numbers.cpp__main = -0.274328 -0.540581 0.279136 -0.910169 0.465178 -0.227593 0.294573 -0.150293 -1.165105 -0.376244 0.496846 -0.997965 -0.237007 0.999618 -0.306703 0.454094 1.185934 0.332121 -0.411378 -0.383743 0.740930 -0.505898 1.059985 1.164527 -0.847898 0.026730 -0.253286 0.653978 0.510089 0.285522 0.181814 -0.265672 0.220276 -0.471954 0.058516 -0.674299 0.121929 0.455099 0.371432 -1.344959 0.266352 0.316292 0.508484 -0.152219 -0.073643 0.782161 0.419844 0.758668 -0.392915 0.558610 0.945481 -0.084393 0.049802 0.184898 0.151047 -0.195744 0.495089 0.089161 -0.420066 -0.116073 -0.036241 -0.586786 0.217937 0.736834 1.112619 -0.052848 -0.049574 0.141929 0.356580 0.349895 0.739542 0.108860 -0.115694 -0.253250 0.475254 -0.789650 0.075224 -1.953317 -0.008175 -2.445303 -0.601993 0.153551 1.410651 0.069686 -0.016281 -0.019484 0.787704 0.045752 -0.332062 0.740325 0.778779 -0.318084 -0.454637 -0.310465 -0.649028 0.528264 -0.456728 0.012856 0.635554 0.567244 -0.680160 -0.040575 0.425998 0.071688 -0.330391 -0.102801 0.128957 0.694540 -0.903866 -0.292764 -0.036111 0.785166 0.322826 -1.184100 0.137261 -0.812032 0.548235 0.021396 -0.372763 -0.008067 0.061485 -0.056529 -0.412053 0.196099 -1.034121 0.726213 0.162253 0.481930 0.046314 0.093848 0.140412 0.651639 0.061438 -0.768185 0.051041 0.101077 -0.255064 0.486101 -0.741418 -0.463136 0.758038 -0.660949 0.304773 -0.092417 -0.525365 -0.513189 0.504062 0.403766 0.104075 2.039804 0.179212 1.157808 0.783570 -0.463989 0.449797 -0.011341 0.262590 0.517424 0.525545 -0.240773 -0.486430 -0.784716 0.363225 0.858125 0.658598 -0.970850 -0.441602 0.103860 -0.031334 0.194112 0.101453 0.134729 -0.049110 -0.571140 -0.184055 0.474749 1.253926 0.054269 -0.379320 0.162303 0.481810 -0.485990 -0.941701 -0.194203 -0.293033 0.271140 -0.092820 0.104887 0.575218 1.059073 -2.219820 0.809166 0.074098 0.286545 0.624211 0.131985 -0.883577 -1.820709 -0.253946 0.226060 1.064011 -0.106286 -0.007624 0.665214 -0.768150 -0.069277 0.052196 -0.092693 -0.296460 0.354771 0.013240 -0.160526 -0.312905 -0.184547 -0.279211 0.175948 -0.134994 0.608333 0.281215 -1.476219 0.530440 -0.264044 -0.441589 -0.129624 -0.159380 0.522016 -0.759757 -0.629753 0.229898 -0.193918 -0.748332 -0.932705 0.104377 0.397559 -0.267461 0.130294 -0.245770 -0.689946 0.789303 -0.770460 0.633477 0.389647 -0.359630 0.585171 0.407081 -0.116619 -0.713725 0.017360 -0.016889 -0.442941 -0.591870 0.285671 -0.205222 0.513132 0.554157 0.103114 -0.405006 0.220496 1.041940 -0.442997 -0.595444 0.557092 -0.048637 -0.453924 0.840163 0.698081 -1.166879 0.163859 -0.686242 -0.347389 -0.048999 -0.388577 0.797960 0.290518 0.520020 -0.177900 0.240966 -0.111446 0.479454 0.215392 -0.077463 0.079709 1.338553 1.311075 -0.288561 0.051194 -0.842157 0.329827 -0.931211 -0.831727 0.151986 0.167922 -0.748781 0.238347 -0.017544 0.920091 0.286484 -0.142706 -0.396054 0.580433 +PE-benchmarks/ugly-numbers.cpp__isUgly(int) = -0.680657 -1.141049 -0.199371 -1.806984 1.141147 0.271756 0.632947 -1.027253 -2.111574 -0.182515 1.196355 -1.759600 -0.003822 1.970293 -0.608715 1.594539 2.193904 0.394316 -1.025035 -0.859228 1.810788 -0.215067 2.307940 2.183574 -1.510957 0.025667 -0.354635 0.905462 0.949090 -0.061260 0.483616 -0.486293 0.620800 -1.888040 -0.714603 -1.041355 0.188911 0.943370 2.045988 -2.214949 0.599536 -0.078972 0.631985 -0.355870 -0.423773 0.284188 0.730773 1.472018 -0.615655 1.075838 1.943227 0.021947 -0.125368 0.395427 0.353033 0.022346 0.809061 0.247316 -0.466250 -0.774068 -0.148314 0.038561 0.394701 1.358991 1.697721 0.131094 -0.336731 1.039933 0.841304 0.746172 1.365321 0.343439 -0.570890 -0.338475 0.781327 -2.123597 -0.305463 -4.053403 -0.224054 -3.383859 -1.084220 0.751163 2.007364 -0.403800 0.670131 0.974441 1.489394 -0.032947 -1.052028 1.177115 1.399824 -0.898805 -0.755515 -0.356024 -1.346151 0.726185 -0.688297 0.491286 0.786076 1.199173 -1.502061 -0.576397 0.651881 0.499182 -0.637972 -0.947551 0.347522 1.277223 -1.319225 -0.841622 0.593850 1.910331 0.022803 -2.322642 -0.264119 -1.657787 1.146007 -0.139930 -0.905934 -0.883984 0.141307 0.090156 -0.888026 -0.197299 -0.250404 0.750991 0.896285 1.187703 -0.067515 0.055417 0.330915 2.224632 -0.084637 -1.560841 0.397503 -0.200904 0.022321 1.178790 -1.272720 -0.815755 0.848568 -1.413003 1.321656 0.641668 -0.924844 -1.178998 1.880253 0.913131 -0.144228 4.319537 0.383377 2.461976 2.000956 -1.018866 0.125890 -0.695813 0.576008 0.943826 0.902072 -0.455013 -1.295945 -1.660719 1.058252 1.555048 1.175333 -2.023123 -1.110934 0.325484 -0.091465 0.431299 0.044297 0.249044 0.105916 -1.151380 -0.391353 1.425919 2.745923 -0.296557 -0.723456 0.591072 1.307508 -0.820529 -1.842988 -0.809685 -1.152994 0.592220 0.760655 0.648488 1.121193 2.092711 -3.422419 1.365881 0.045642 0.656254 1.075232 0.885398 -2.106500 -2.535320 -0.706382 0.401115 1.773471 -0.450900 0.085857 1.307799 -1.500605 -0.123489 0.250478 -0.571985 -0.591286 0.784334 0.169937 -0.457588 -0.498686 0.522147 -0.598983 0.100204 0.073144 1.398623 0.136068 -2.746477 1.030946 -0.367489 -0.819644 0.175709 -0.700160 1.823349 -1.093518 -1.160304 0.998757 -0.258320 -0.622800 -1.175813 0.437085 0.823357 0.252489 0.901101 -0.774492 -0.830266 0.950967 -1.314757 1.452613 0.747062 -0.626100 0.620225 -1.016417 -0.174757 -1.675746 0.054700 -0.229272 -0.002187 -1.655182 -0.427023 -0.342305 1.259076 0.742343 0.158963 -1.452557 0.058727 1.834929 -1.574667 -0.526372 0.972535 0.625831 -1.554678 1.086575 1.338328 -1.957512 0.626521 -0.906176 -0.502640 -0.627899 -0.856823 1.505430 1.065650 1.148913 -0.608775 0.545414 0.286769 0.949538 0.586059 0.371749 0.387669 2.082691 1.846115 -0.384480 -0.762650 -1.800890 0.800648 -1.756631 -1.950594 0.870092 0.092528 -1.783971 0.175167 -0.392356 2.264916 0.577811 -0.236330 -0.565803 0.977588 +PE-benchmarks/binomial-coefficient.cpp__main = -0.830623 -0.816490 0.216398 -2.337771 1.466233 0.989300 0.774226 -1.056047 -2.489265 -0.958236 1.418418 -3.237650 -1.158369 2.699528 -1.183819 1.222404 3.351705 0.189340 -1.378658 -0.834450 2.194178 0.006019 3.604418 3.192914 -2.607046 -0.202928 -0.289738 1.492141 1.367840 -0.176997 0.985895 -1.101855 1.029797 -1.514795 -0.224814 -0.877060 0.485486 0.250692 1.115189 -3.419227 0.440746 0.238307 0.255518 -0.426388 -0.526565 1.631772 1.998831 2.265881 -0.758994 0.808749 2.542896 0.310017 -0.203889 0.467795 0.033089 -1.102946 0.581006 -0.031181 -1.024018 -0.979636 -0.033449 -0.977681 0.080360 2.573353 3.132542 0.333763 -0.056105 1.110309 0.840680 0.928449 1.477962 0.547588 -0.061084 0.601960 1.335780 -2.276619 -0.237260 -4.624232 -0.345678 -5.554106 -1.587945 0.023809 2.951058 0.206281 0.339318 0.099217 2.411215 0.511002 -0.764297 2.939817 3.007477 -1.325942 -1.271220 -1.341899 -1.615644 1.261804 -1.474889 0.971387 1.306663 1.478819 -2.140902 -0.328690 0.300743 0.411014 -0.949216 -1.089398 0.403428 1.782372 -2.118255 -0.568297 -0.043176 2.046466 0.701240 -4.184923 -0.891186 -1.757516 1.866961 0.037207 -0.787461 -0.839824 0.028933 0.442284 -0.846253 -0.042917 -1.661138 1.632155 1.271250 1.432834 0.150352 0.891723 1.085718 2.799499 0.281648 -1.623719 0.073615 -0.303377 -0.444878 1.253161 -1.507866 -0.864309 1.464065 -2.048838 1.405819 1.126979 -1.337411 -1.851785 0.622264 0.577016 0.599786 6.885683 0.348611 3.158205 2.161300 -2.035522 0.459109 -1.026002 0.240804 0.959007 1.052886 -0.126975 -2.003370 -2.233024 1.582887 2.651555 1.681190 -2.804133 -0.045348 0.481603 -0.302758 -0.499923 0.154317 0.742019 -0.198613 -1.346378 -0.577108 2.632490 3.851885 -0.377323 -0.727344 0.885621 1.452857 -0.353472 -1.989830 -0.679746 -0.358432 0.777068 1.201021 0.623081 1.635739 3.095721 -4.834257 2.017829 0.700868 0.904239 1.533231 0.850281 -2.656666 -3.302152 -0.175084 1.522602 2.284932 -0.394393 -0.359003 1.159491 -2.215840 -0.180668 0.778923 -0.060261 -0.599435 0.957362 0.226421 -0.628764 -1.579485 -0.049440 -0.790597 0.635460 -0.524451 1.714848 -0.087497 -3.893889 2.467588 -0.557642 -1.371745 -0.701360 -1.420835 2.229176 -2.388118 -2.117881 0.988898 -0.957321 -2.126746 -1.862774 0.251272 1.087591 0.298937 1.450760 -1.490981 -2.040432 2.262556 -1.372074 1.939330 1.057456 -0.144614 1.936163 -0.651439 -0.547046 -2.190368 -1.397228 0.782991 -0.145941 -2.466128 0.662049 -0.424332 1.766715 1.648696 -0.429978 -2.074044 0.464789 2.282790 -1.933171 -1.648558 1.305991 0.878157 -2.251772 1.736017 1.714566 -2.778343 0.384917 -1.788848 -0.751614 -0.825733 -2.109749 1.549655 0.568858 1.502000 -0.012530 0.575577 -0.023169 1.313923 0.495193 0.431394 0.556353 3.184358 3.257561 -1.052660 -0.378307 -3.011579 1.418187 -3.175466 -3.458596 1.387284 0.031418 -1.257505 0.241545 -0.327283 2.439895 0.704026 -0.930019 -1.266514 1.598402 +PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -3.001956 -4.305646 -3.338544 -6.188019 4.235393 5.873833 2.600500 -5.412131 -7.906681 0.666381 4.358286 -8.627496 0.270463 7.885160 -2.396166 8.361282 9.903820 0.968227 -5.154560 -0.757476 8.117320 0.272591 10.700173 8.706613 -5.047654 -0.655058 -2.272731 2.649845 1.951453 -1.710029 1.800010 -1.239496 4.027794 -9.669398 -3.868595 -3.276393 1.224821 2.972427 8.401873 -9.382155 2.041549 -1.243407 2.134718 -1.962896 -3.145798 0.258259 3.710583 6.393252 0.192616 2.558693 5.643746 -0.050043 -0.567722 1.914698 1.023672 1.114256 -0.003849 0.049053 -2.475889 -4.526259 -0.290661 0.084858 1.784597 6.096970 7.983208 1.553727 -0.563229 6.056704 2.635711 1.893822 4.966179 1.082159 -3.891856 0.100421 2.116447 -10.397403 -0.679412 -10.511670 -1.906752 -9.795812 -3.649480 2.309939 5.204775 -0.141457 4.854188 2.331338 6.097232 -0.776335 -3.608444 7.302044 7.183834 -6.486326 -3.477444 -3.282688 -3.526688 1.733316 -3.200190 1.936393 5.133563 3.153665 -5.987248 -1.721136 2.170311 3.709963 -2.279951 -6.479826 2.654078 4.980741 -3.918805 -5.777610 2.919571 7.303891 -2.130488 -11.098120 -2.020290 -5.395422 2.855426 -0.196332 -2.685749 -6.828253 0.368831 2.328339 -1.766849 -3.467492 0.033927 2.842000 4.093367 3.982138 0.288347 2.190476 1.739662 12.489084 0.033912 -4.713893 1.662601 -0.800354 -0.519831 4.806020 -3.651010 -4.218181 0.287990 -7.822272 3.596197 5.838244 -3.632109 -2.285962 4.305662 4.675218 0.360372 21.513456 1.473530 9.787613 7.525011 -6.419920 1.544230 -4.465141 1.795079 2.464542 2.142147 -2.105588 -10.412970 -6.898910 4.157083 6.865590 5.164216 -8.046316 -2.327256 -0.009683 -0.593103 0.092411 -0.968337 2.098955 0.385035 -4.274901 -1.195982 6.933349 14.479026 -2.889969 2.764646 4.399465 2.414333 -3.061665 -9.313963 -4.014727 -5.360620 1.650148 2.638385 2.142545 3.559927 8.397203 -7.865653 5.477003 -0.987906 2.186975 5.512302 4.124984 -8.389518 -7.995503 -3.152900 3.431007 7.328406 -3.451946 -0.340022 3.948058 -5.781517 -0.496019 2.183755 -1.789704 -0.870495 2.351234 0.498961 -2.077746 -2.562584 4.718981 -2.101929 -0.621289 0.747335 5.293883 -0.073601 -6.045415 5.726253 0.037622 -3.590117 1.671635 -2.841794 7.899009 -4.831819 -4.952677 5.001001 -0.426564 -1.228446 -3.147948 1.802432 3.917824 2.482483 4.162417 -4.534145 -5.680353 4.495756 -3.482711 5.605030 2.683190 -1.729569 2.194117 -5.182510 -2.336043 -6.743036 -5.361952 -2.649269 1.643079 -7.386324 -1.568849 -1.036338 6.992542 3.108323 1.074586 -7.595782 1.672672 6.925135 -6.558293 -2.094926 4.166747 3.409970 -9.006698 1.561181 5.290736 -8.086636 2.292876 -1.993974 -0.866500 -2.874199 -5.455539 4.844504 3.517264 5.116030 -2.351212 1.790391 2.880223 3.372738 2.759544 3.089240 1.944111 9.279857 4.514651 -0.460737 -4.568127 -7.471305 2.966887 -7.831298 -9.130456 4.642761 3.033301 -6.102883 0.882295 1.290430 8.531656 1.694188 -2.452661 -2.379889 1.871195 +PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.506122 -0.740676 -0.092479 -0.956983 0.649825 0.207414 0.291580 -0.471655 -1.190386 -0.148388 0.406858 -0.696922 0.190655 1.115358 -0.282880 1.112725 1.249664 0.371480 -0.400063 -0.264940 1.142007 -0.647114 1.021565 1.083318 -0.746963 -0.080175 0.034822 0.395253 0.199163 0.324390 -0.082814 -0.464549 0.350031 -1.199372 -0.152985 -0.876810 0.101927 0.817838 1.073442 -1.353169 0.312326 -0.045471 0.230859 -0.210599 -0.333802 -0.051947 0.274627 0.730369 -0.372357 0.721092 0.845958 0.060387 -0.158821 0.182223 0.229212 0.528689 0.074788 0.228805 -0.297129 -0.277958 -0.200646 -0.129448 0.562662 0.669301 0.958174 -0.126394 -0.032565 0.604041 0.249997 0.205221 0.756756 0.107795 -0.467309 -0.483222 0.462818 -1.608805 -0.185725 -2.250096 -0.104758 -1.997042 -0.501536 0.288764 0.727434 -0.143931 0.548286 0.231379 0.949589 -0.360150 -0.422999 0.781694 0.772085 -0.787932 -0.366914 -0.442777 -0.758083 0.167415 -0.336955 -0.185220 0.524062 0.214089 -0.696943 -0.617000 0.505273 0.433607 -0.278845 -0.922592 0.202077 0.794928 -0.844851 -0.999061 0.044497 0.952872 -0.316027 -1.100827 0.099641 -0.839065 0.486328 0.039285 -0.512514 -0.850455 0.144883 0.418850 -0.368446 -0.442503 0.060461 0.540371 0.456343 0.428563 0.045953 -0.132273 -0.052393 1.359160 0.382634 -0.822255 0.074896 0.237945 -0.198805 0.448569 -0.726989 -0.602684 0.349131 -0.902411 0.126163 0.402259 -0.562015 -0.174589 1.304047 0.393664 0.051418 2.607624 0.091899 1.083710 0.829862 -0.744184 0.439688 -0.160003 0.338476 0.511116 0.600647 -0.276385 -1.200466 -0.941141 0.462447 0.853283 0.754777 -0.943990 -1.073251 -0.152318 0.043447 0.446368 -0.143730 0.136242 -0.043031 -0.717414 -0.139966 0.328975 1.723028 -0.353570 -0.006057 0.423087 0.650826 -0.774830 -1.373721 -0.468551 -1.362802 0.149362 0.106994 0.033910 0.529739 1.202386 -2.012777 0.780618 -0.487137 0.113236 0.453633 0.468709 -0.803172 -1.800127 -0.475861 0.261413 1.154996 -0.336851 0.546117 0.684322 -0.755124 0.033065 0.030223 -0.068953 -0.397678 0.415001 -0.012869 -0.525673 -0.150429 0.566993 -0.453443 -0.431849 0.130630 0.582824 0.344441 -1.241049 0.549916 -0.002728 -0.265210 0.573103 0.100819 1.073758 -0.641958 -0.810822 0.713610 0.152472 0.078566 -0.417744 0.178091 0.641573 -0.097251 0.001049 -0.327502 -0.967254 0.403576 -0.531552 0.753306 0.345348 -0.462686 0.500581 -0.424639 -0.219763 -0.842052 -0.182769 -0.292690 -0.114670 -0.572793 -0.674023 -0.103517 0.860380 0.528980 0.391663 -0.567662 0.161387 1.110284 -0.871347 0.039877 0.677753 0.391029 -0.770002 0.284146 0.845753 -1.098053 0.146494 -0.432074 0.190191 -0.217347 -0.337142 0.828197 0.311263 0.548466 -0.360405 0.231022 0.142318 0.466226 0.605515 0.240671 0.034637 1.240318 0.941659 -0.183660 -0.471459 -0.737943 0.161761 -0.901649 -0.856758 0.142935 0.523899 -0.958288 0.190591 0.081170 1.165604 0.200931 0.233877 -0.049789 0.080679 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = -0.417400 -0.133651 0.478977 -1.123695 1.147550 0.806277 0.585631 -0.106186 -1.593584 -0.710010 0.352858 -2.021082 -1.080835 1.929598 -0.513653 0.720770 2.534154 0.610326 -0.627961 -0.246614 1.122285 -0.259851 2.371983 2.070682 -1.463076 0.091860 -0.343217 0.694655 0.005463 1.171661 -0.051271 -1.627948 0.751208 -0.702867 0.048256 -0.964895 0.051966 0.166657 0.282782 -2.653779 0.326387 1.011713 0.280943 -0.455580 -0.130438 0.512781 1.786500 1.345307 -0.150043 0.543299 0.981666 0.238985 0.113162 0.423627 0.554806 0.084893 0.548853 -0.474504 -1.198953 -0.318925 -0.347592 -1.065308 -0.260679 1.407499 1.889777 0.188061 -0.151907 0.253521 -0.065867 0.491690 0.738675 0.292850 0.438817 0.204239 0.823723 -0.733131 -0.216343 -2.208377 -0.279239 -3.539079 -1.194073 -0.434138 1.913902 0.840396 0.361478 -0.642556 1.700989 -0.316082 -0.029341 1.367059 2.283161 -1.211977 -0.910789 -1.086725 -0.726134 0.656965 -0.899231 -0.051382 0.715129 0.165779 -1.507871 -0.689772 0.621314 0.292806 -0.564285 -0.349087 0.167189 1.449603 -1.751940 -0.662771 -0.961835 0.936307 0.269150 -2.500289 -0.555340 -0.593813 0.387593 0.570242 -0.785452 -0.961227 0.557788 0.567003 -0.702760 -0.382959 -1.059854 1.564617 0.324961 0.462198 0.348345 0.463112 0.545584 1.883915 0.729196 -0.911957 0.147349 0.124059 -0.434638 0.447489 -0.911196 -0.755978 0.258888 -1.416347 0.339285 0.747644 -1.115344 -0.490944 -0.467818 0.288355 0.630428 4.121686 -0.225929 1.753481 0.893373 -1.659741 0.978757 -0.437477 -0.177789 0.121127 1.009408 0.398139 -1.369517 -1.351108 0.970706 1.782199 1.245036 -1.527856 0.162085 -0.254883 0.120920 -0.112100 0.364982 0.543285 0.242753 -1.255275 -0.382396 1.090708 3.156184 -0.578440 -1.244834 0.656073 0.504161 -0.086318 -1.227972 -0.379843 -0.413604 0.245837 0.367664 -0.068401 0.899797 2.111170 -2.909983 1.701935 -0.168952 -0.258589 1.411228 0.189123 -1.220012 -1.620273 -0.354845 1.326345 2.083865 0.227449 -0.117674 0.252399 -1.469282 -0.219436 0.221604 0.437477 -0.429845 0.791910 -0.009974 -1.102306 -0.960808 -0.734617 -0.368425 -0.186998 -0.647003 0.861949 0.797583 -2.706736 1.814873 0.030353 -0.574112 -0.111077 -0.178555 1.100688 -1.477616 -1.815603 0.636260 -0.615374 -1.521275 -0.796713 -0.069097 0.805426 0.300599 0.372959 -0.678327 -1.669446 1.772814 -0.275018 1.504872 0.750550 0.022216 1.394035 0.892542 -0.722215 -1.031535 -1.176761 0.476298 -0.742033 -1.106034 0.240270 -0.597436 1.340715 1.468077 0.059513 -1.043762 -0.581767 1.793810 -1.188123 -0.632447 1.368765 0.035413 -1.119778 0.801113 1.621898 -1.760001 -0.332465 -1.117161 -0.232142 -0.531205 -1.209114 0.612511 -0.455258 0.577708 0.362049 0.022259 -0.562892 0.489224 0.254122 -0.265706 -0.003367 2.284915 1.643172 -0.953374 0.538900 -1.564502 0.904355 -2.044752 -1.817402 0.439524 0.093745 -1.144013 0.154640 0.169831 1.260123 0.175434 -0.306975 -0.749290 0.353506 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -2.089578 -2.218868 -0.158814 -4.719539 2.938143 3.087397 1.647430 -2.684996 -5.395662 -1.045370 2.448812 -6.015081 -1.130644 5.991886 -2.151910 4.342949 7.625288 1.178151 -3.045530 -1.312421 6.204658 -0.604510 8.212525 6.820479 -5.156080 -0.649436 -0.174384 2.985638 2.757491 0.762260 1.085477 -2.330031 2.503956 -5.703668 -1.179602 -3.593570 1.374870 1.730715 4.205215 -7.530756 1.319413 0.017933 0.897629 -1.419243 -1.683594 0.960353 3.827701 4.933106 -1.294771 1.532177 5.308814 0.830286 -0.723737 1.300892 0.355887 0.162703 1.282840 -0.040095 -2.072802 -2.550985 -0.181670 -1.796373 1.175943 5.118029 6.825091 0.770050 0.170148 3.543087 1.529697 1.406550 3.445544 0.743411 -0.917226 0.264179 2.882353 -7.085003 -0.562185 -10.637573 -1.191923 -10.677886 -2.810876 -0.067212 4.422415 -0.402359 2.546292 0.506554 4.879097 -0.356082 -1.373337 5.946335 6.127428 -4.322396 -2.635120 -3.552579 -3.408261 2.322268 -3.354811 1.114853 2.745982 1.889992 -4.365559 -2.633644 1.606098 2.315562 -1.937303 -3.802756 1.107334 3.917610 -4.343244 -3.507388 -0.180499 4.168407 -0.705204 -8.659605 -1.910634 -4.558865 3.716417 0.050933 -1.480790 -4.292359 0.127817 2.408409 -1.556084 -2.327739 -1.253401 3.216431 2.839125 2.521210 0.294917 0.830821 1.363690 8.133983 1.609755 -3.602466 0.251467 -0.079558 -1.970777 2.279381 -4.080801 -2.658764 2.846903 -4.788635 1.217846 3.952051 -2.978772 -2.412909 4.408539 1.744807 1.653364 17.013425 1.092562 6.388030 4.818939 -5.019320 1.383584 -2.164752 0.647667 2.138533 2.405658 -0.420392 -7.774128 -5.130285 2.685108 5.087567 3.945590 -6.074030 -1.618308 -0.349017 -0.080584 -0.087397 -0.594208 1.603189 -0.420977 -3.864910 -1.095681 4.916829 10.184194 -1.993484 -0.567550 2.557235 2.541177 -2.767081 -6.193288 -2.226731 -2.944997 1.326690 1.468380 0.788158 3.338167 6.717419 -8.934158 4.402079 -0.412246 1.064593 3.462105 1.854454 -5.614379 -6.200927 -0.809315 3.319145 5.555748 -1.267843 0.588981 2.727525 -4.769948 -0.324934 1.000810 0.029992 -1.003255 1.937495 0.545813 -2.470245 -3.170852 1.403851 -1.641726 -0.495600 -0.287294 3.491836 0.416437 -7.169426 5.238019 -0.857664 -2.240050 0.710933 -2.044475 5.300656 -5.147694 -4.840170 3.225165 -0.522117 -2.180531 -3.425460 1.070835 3.379278 1.194716 2.231331 -3.206065 -5.461350 3.797146 -2.738495 3.929564 2.074721 -0.561457 3.220545 -2.031813 -0.992309 -6.102092 -2.616325 -0.784366 0.238782 -5.496818 -1.351907 -0.847192 4.890062 3.865069 -0.388395 -4.207985 0.722509 5.775704 -5.613430 -2.496797 3.256116 3.467380 -5.890051 2.014827 4.083149 -6.631277 0.237764 -2.578937 -1.014027 -1.185524 -4.382174 3.462643 0.843316 3.424679 -0.171312 1.263746 0.505289 2.515401 1.803772 1.011493 0.751914 7.320878 6.458090 -1.780611 -2.048099 -5.847088 2.242523 -6.737953 -7.252221 2.727711 0.728081 -3.922215 1.141643 0.779899 6.316213 1.545617 -0.659986 -1.706037 1.201557 +PE-benchmarks/boyer-moore-algorithm.cpp__main = -2.861161 -0.526091 2.759461 -5.753041 9.022545 3.631119 3.872389 -0.226892 -5.866032 -3.304703 0.236745 -4.216139 -7.051470 9.195570 -2.541873 6.424091 9.370579 0.828221 -1.771392 -2.066209 10.492722 -6.144325 11.361829 5.088546 -10.164813 -0.505817 0.618883 6.057262 0.833703 8.647659 -1.567761 -4.337835 3.820568 -5.600692 3.812101 -5.469653 3.509763 1.515225 -0.616248 -11.058336 0.190845 3.984338 -0.062490 -0.571530 -2.620419 4.799504 6.605960 8.161459 -4.765886 2.301225 6.826869 -1.313638 0.037975 3.725214 -0.140457 1.317559 0.816879 -0.064017 -7.178348 -2.505341 -1.928313 -9.840347 2.956356 6.144990 11.013057 -2.512697 2.097233 6.650826 -3.124470 3.046886 3.717192 1.663422 1.124141 -3.083053 8.724534 -6.514187 -3.401740 -12.110987 -3.172661 -20.432196 -6.000916 -6.948232 5.017124 1.340133 5.293451 -2.740695 10.322619 0.741921 0.187943 6.938666 9.110444 -8.018663 -3.259494 -10.756732 -3.629523 1.851484 -6.635165 -3.579057 6.739601 -0.557199 -6.450718 -3.839358 2.857390 2.187994 -2.055769 -6.958660 -3.823003 8.988409 -9.153784 -6.626860 -7.614099 3.539216 -2.812772 -13.004875 2.074413 -2.308302 4.121331 0.497239 3.758404 -3.611449 1.574646 7.987431 -2.606952 -5.231023 -2.798685 10.038212 4.343079 0.260679 4.206285 2.048900 -1.214934 8.371761 10.844202 -1.971345 -5.936644 2.156760 -4.111155 2.352053 -4.587373 -1.746182 5.607616 -9.160549 -0.995267 4.261831 -2.450777 -0.798865 2.628207 -0.822177 6.975423 17.761927 0.045943 5.873472 1.732121 -8.312719 7.849724 -0.318664 -0.704634 4.461527 5.329937 -1.717172 -8.913990 -7.844266 4.206558 5.778359 5.259766 -9.397654 -3.907399 -4.245872 1.802593 -1.120240 -2.847320 6.294355 -0.223485 -5.731203 -0.923028 1.220219 14.569500 -5.880773 -6.178318 8.076587 3.065203 -6.618127 -11.171054 -4.992495 -4.703846 -2.501149 -0.193740 -1.369453 3.060165 10.535206 -12.845772 7.277381 -2.116838 -2.288294 6.583902 -2.878890 -2.175453 -12.585509 -1.217313 6.310775 8.706390 -0.658123 -0.073568 0.631544 -7.043642 3.300233 -0.324061 2.716427 0.228080 2.896818 -3.568444 -4.875840 -7.065514 -3.565391 -3.259012 -0.657450 0.068111 1.803382 3.636757 -13.735676 8.283423 -4.727981 -3.412526 4.344299 3.204856 7.677905 -5.644426 -10.278845 5.617251 -0.491206 -6.016181 -8.210625 2.617648 5.602883 0.440282 -3.341999 -2.561790 -12.288553 6.056674 -3.114779 4.066308 2.609808 3.019781 10.294482 5.200276 -6.953014 -8.708226 -5.126725 -0.824505 -3.628675 -4.968603 -2.872687 -0.650351 8.081734 7.159425 2.123132 -0.410392 -2.102679 11.238149 -8.663605 -5.328503 9.484224 2.325554 -5.218410 4.295020 10.177135 -7.442316 -6.201591 -5.448203 2.014660 -0.719159 -6.689195 2.559613 -3.912241 2.370630 2.461240 2.597694 -2.860368 2.749722 2.544307 0.251659 -6.631772 14.629794 11.627033 -8.698949 -0.848597 -5.535637 3.453708 -9.861907 -6.638742 1.227593 2.373084 -1.067039 5.022889 4.785675 7.065413 0.143830 -2.225535 -0.955897 -5.947836 +PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.431279 -2.960498 -2.586988 -6.261348 5.407062 4.140247 2.724333 -3.951146 -7.825903 -1.839960 3.266782 -8.974088 -2.298244 7.975548 -2.279987 7.716409 10.340148 0.720472 -4.073281 -1.075554 9.757562 -1.269886 12.250175 8.655995 -7.006261 -0.404934 -1.460742 3.380698 1.901048 1.578695 2.637303 -4.376114 4.688946 -9.035483 -1.758279 -4.489869 1.537933 2.630555 6.774228 -10.505682 1.579340 1.951724 1.338133 -1.562876 -2.473881 1.576695 5.139964 6.375579 -2.102595 3.112765 7.306689 0.560613 -0.722361 2.224117 0.392957 -0.154104 -0.395315 -1.558275 -3.710659 -4.329156 -0.773688 -2.516553 1.639061 5.918949 9.935026 -0.059431 0.267088 5.833412 0.830779 2.075005 4.937071 1.254232 -1.451875 -1.513024 4.815215 -9.579480 -1.947468 -13.893002 -1.914065 -18.328464 -4.310843 -0.281651 6.955762 1.338934 3.671727 -0.677845 6.640273 -0.943688 -1.944708 9.942777 7.535147 -5.763312 -3.303668 -5.429648 -4.078391 2.419753 -4.108154 0.302551 5.792276 1.998445 -5.914613 -2.247261 2.538813 2.739282 -2.211577 -7.363286 1.018630 5.383094 -6.676116 -4.899441 -0.411822 7.754652 -1.045519 -12.973041 -2.644796 -4.957594 3.299650 0.271346 -1.207930 -4.402372 0.361101 2.892862 -2.134073 -3.115231 -1.732493 5.461275 4.748105 3.935134 1.542014 2.198206 1.282343 13.383982 2.337538 -3.819503 -0.265459 -0.156868 -1.134061 3.951304 -4.019627 -3.493165 4.044282 -7.634671 2.305149 4.583730 -3.394756 -3.063645 4.599013 2.547893 2.005634 24.377232 1.393705 10.506711 7.542253 -6.365404 2.745335 -3.125454 0.933210 3.054588 3.366273 -1.345962 -10.068537 -6.982595 3.969674 6.111996 5.061292 -9.299686 -2.121983 -0.163629 0.528451 -0.297448 -1.478093 2.505836 0.964812 -5.567491 -0.804140 6.867104 16.030846 -2.784375 0.873349 4.606877 4.505835 -4.307196 -9.579789 -3.583527 -5.172380 0.977536 2.291489 0.962745 3.597032 8.821715 -11.449289 5.589943 -0.431044 1.650404 4.862405 3.154512 -8.478576 -11.540458 -2.569261 3.941956 8.149782 -2.557622 2.197690 3.145388 -5.790327 0.547121 1.254786 -0.700357 -0.854014 2.409702 -1.044615 -2.695383 -3.778237 1.237198 -3.126300 0.247776 -0.183448 4.144229 3.289124 -10.085280 5.985686 -1.141737 -3.454868 0.766195 -1.375156 9.223664 -5.713021 -6.528600 4.689620 -1.902748 -4.890723 -4.514942 1.783338 3.660215 2.650501 2.646658 -3.504166 -8.019947 6.527720 -3.433380 5.085084 3.074481 -0.810431 4.772021 -3.258704 -2.905150 -8.983835 -5.647127 -1.231838 -0.468937 -7.776219 -1.431834 -1.218671 6.406815 4.484668 0.842670 -7.552999 0.647681 8.293196 -7.975777 -2.948311 5.708622 4.707310 -9.002751 3.278015 6.583601 -8.747979 0.441365 -4.024399 -0.014841 -1.756342 -5.156545 4.345231 1.334838 4.217180 -0.549123 1.703512 0.301504 2.945868 2.564223 1.364078 -0.602263 11.911873 8.996132 -3.059194 -3.464429 -7.984124 2.283141 -8.185446 -10.666871 3.271777 1.978265 -5.634338 1.757768 2.298207 9.988062 2.362679 -1.152653 -2.133800 1.006692 +PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -0.968473 -1.538863 -0.533295 -2.448942 0.961795 0.830329 0.663591 -0.959564 -2.847573 -0.486436 0.876402 -2.054966 0.352259 2.694811 -0.586246 2.528945 3.579472 0.831861 -1.304057 -0.200538 2.912650 -1.610416 2.814195 2.926379 -1.712297 -0.249011 -0.359107 1.702362 0.781193 0.520133 0.599022 -0.383578 0.683894 -3.103458 -0.548601 -2.469598 0.557401 1.700792 1.980046 -3.826270 0.830275 0.201413 1.067750 -0.765696 -0.923391 -0.073370 0.845580 2.060882 -0.570334 0.836897 1.931076 0.113523 -0.305744 0.577255 0.347622 0.934985 0.084614 0.042451 -0.797858 -0.897047 0.000492 -0.973927 1.381174 1.837570 2.738183 0.065669 0.067391 1.705190 0.682419 0.515599 1.747494 0.089986 -1.627112 -0.880426 0.883738 -4.244545 -0.013597 -4.279723 -0.196145 -4.674223 -1.158985 0.440718 1.924833 0.269549 1.360613 0.411865 1.890283 -0.959851 -0.671859 2.432787 1.812508 -1.784598 -1.010484 -1.689078 -1.427235 0.971413 -1.092721 -0.581906 1.701826 0.920271 -1.621162 -0.588447 1.363760 1.363442 -0.767192 -1.928735 0.674912 1.943332 -2.069842 -2.403595 0.462588 2.413102 -0.873364 -3.187230 0.101949 -2.368276 1.025004 -0.190665 -0.706075 -2.026174 0.124404 1.131332 -0.410159 -0.995050 -0.989631 1.617543 0.668628 0.848508 0.170678 0.197186 -0.008733 3.341931 0.741014 -1.556404 0.242128 0.538686 -1.043298 0.851807 -1.819866 -1.665376 0.903458 -2.567594 -0.203119 1.474678 -1.287165 -0.505680 2.413507 1.294538 0.553223 8.401357 0.576053 2.953861 2.326395 -1.814508 1.109983 -0.473052 0.466448 1.065115 0.907873 -0.632014 -4.248298 -2.089435 0.691346 2.027514 1.881325 -2.312584 -1.862579 -0.593770 -0.217855 0.910225 -0.510609 0.372016 -0.104316 -1.852278 -0.406359 1.376721 4.779327 -0.534090 0.973042 1.184627 0.902675 -2.503070 -4.153203 -1.040759 -2.324338 0.406544 -0.297340 -0.041848 1.203757 2.710257 -3.517569 2.005528 -0.727684 0.550396 1.507809 0.588299 -2.209589 -4.804196 -1.157626 0.928660 3.232440 -1.517174 0.750041 1.436172 -1.867025 -0.096377 0.409950 -0.309582 -0.413569 0.765260 -0.056394 -0.764035 -0.732926 1.583195 -1.016384 -0.451561 0.411445 1.369511 0.423199 -1.798179 1.605005 -0.361842 -0.771036 1.098246 -0.162850 2.147427 -1.963707 -1.825410 1.656728 0.682614 -0.363945 -1.461018 0.487495 1.853996 0.238735 -0.339472 -0.808502 -2.597394 1.155786 -1.683120 1.565710 0.849943 -0.843780 1.072412 -0.245719 -0.326129 -2.507929 -1.084616 -1.821382 -0.149061 -1.955833 -1.290947 -0.330720 2.239283 1.368239 0.481249 -1.610791 1.171937 3.024628 -1.715262 -0.760013 1.388730 0.491952 -2.428121 0.495466 1.883122 -3.359060 0.381582 -0.957555 -0.036367 -0.083970 -1.352515 1.815403 0.800990 1.571714 -0.511968 0.644079 0.450887 1.013729 1.274423 0.672911 0.293722 3.564031 2.110904 -0.070472 -1.329144 -1.963651 0.402574 -2.460671 -2.146041 0.507226 1.562879 -1.858405 0.801119 0.866638 2.842245 0.698891 0.153055 -0.066738 0.051228 +PE-benchmarks/optimized-naive-algorithm.cpp__main = -2.754857 -0.514037 2.848487 -5.460159 8.385397 3.179589 3.600352 0.080305 -5.428178 -3.093765 0.086391 -3.524445 -6.633317 8.679165 -2.385243 5.856007 8.834060 0.824092 -1.527402 -1.996607 9.762188 -6.225862 10.209202 4.658244 -9.600827 -0.562119 0.704919 6.127521 0.883098 8.237926 -1.596933 -3.850657 3.303018 -4.923887 3.887092 -5.384279 3.498108 1.515302 -1.016337 -10.523313 0.162120 3.791282 0.070254 -0.563262 -2.487885 4.702592 5.962200 7.775451 -4.676181 2.004835 6.343388 -1.262183 0.005806 3.493204 -0.244318 1.298510 0.895633 0.303949 -6.775741 -2.160013 -1.700420 -9.537636 2.943826 5.790919 10.442329 -2.436011 2.068324 6.199910 -2.979306 2.903891 3.437362 1.491779 1.055162 -2.971610 8.258369 -6.067168 -3.263617 -11.409146 -2.881096 -19.000959 -5.637235 -6.695747 4.565862 1.030356 4.974569 -2.527693 9.762925 0.770316 0.238803 6.251836 8.436017 -7.446739 -3.052754 -10.363663 -3.470029 1.889012 -6.366629 -3.545382 6.377998 -0.509268 -5.992270 -3.702021 2.816748 2.066627 -1.945238 -6.352791 -3.736229 8.540101 -8.516284 -6.362089 -7.288573 3.013840 -2.731707 -11.825821 2.472619 -2.362827 3.875029 0.372951 3.782255 -3.301199 1.426115 7.619663 -2.424873 -4.946388 -2.848471 9.620365 3.869299 -0.004553 3.987098 1.790219 -1.257340 7.212722 10.367068 -1.875337 -5.811564 2.224456 -4.212933 2.048464 -4.683544 -1.611094 5.608999 -8.541298 -1.232451 3.870973 -2.261488 -0.705465 2.648974 -0.965871 6.773060 16.255762 0.112260 5.031392 1.217365 -7.717732 7.786652 -0.041570 -0.735592 4.269574 5.001993 -1.687516 -8.440579 -7.337107 3.823173 5.387094 4.972201 -8.631843 -4.157245 -4.163552 1.659578 -0.995973 -2.706721 6.026809 -0.440604 -5.328873 -0.907488 0.734599 13.273688 -5.473928 -5.945411 7.639852 2.996845 -6.595427 -10.836886 -4.669939 -4.432198 -2.495486 -0.613737 -1.409862 2.927967 9.911658 -12.287062 6.867873 -1.950719 -2.178357 6.179203 -3.138815 -1.669230 -12.270989 -0.952391 5.902696 8.343795 -0.625288 -0.088320 0.559695 -6.654989 3.172434 -0.352211 2.642747 0.274959 2.700717 -3.466626 -4.501553 -6.736171 -3.251412 -3.158628 -0.742142 0.157385 1.589174 3.336512 -12.571980 7.783251 -4.700839 -3.113328 4.318532 3.100182 6.904770 -5.391348 -9.690679 5.285248 -0.153192 -5.398421 -8.009999 2.492717 5.456705 0.125298 -3.533850 -2.291309 -11.810243 5.488367 -3.124315 3.691768 2.357050 2.878073 9.680407 5.549758 -6.508559 -8.130171 -4.547178 -1.069200 -3.445173 -4.405086 -2.829373 -0.522001 7.619288 6.773298 1.949890 0.101755 -1.911141 10.754571 -7.875588 -5.133585 8.869067 1.743720 -4.495264 3.980942 9.571933 -7.121327 -6.009257 -5.160809 1.949579 -0.514839 -6.330587 2.368072 -3.772269 2.183797 2.417455 2.464602 -2.746308 2.605653 2.495490 0.160133 -6.375096 13.811917 10.900732 -8.200076 -0.642021 -5.007072 3.195200 -9.273863 -5.782992 1.001771 2.172793 -0.769993 4.912503 4.701882 6.271621 -0.022376 -1.888968 -0.814203 -5.861402 +PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -1.899757 -2.900230 -2.141857 -4.796938 2.221323 1.882599 1.364144 -2.415159 -5.636633 -0.785272 2.515011 -5.515618 -0.207481 5.393520 -1.496839 4.875990 7.657552 0.699826 -2.853330 -0.727545 6.104892 -1.677570 6.487037 6.504485 -4.186332 -0.686442 -1.030566 3.731992 2.148026 -0.469968 2.491447 -1.940226 2.101195 -5.651459 -1.383324 -4.062999 1.479654 2.630941 4.773785 -7.830566 1.435714 0.986443 2.001855 -1.521531 -1.811210 1.092137 1.921163 4.445538 -1.654068 1.630812 4.889282 0.817890 -0.883203 1.064070 -0.126351 -0.249347 -0.001548 0.281554 -1.697624 -2.602516 0.365776 -1.002999 1.576414 4.148594 7.081385 0.324002 0.122541 3.578829 1.556598 1.360031 3.537919 0.396015 -1.796769 -0.955807 2.484388 -7.344382 -1.256852 -10.383796 -0.456239 -11.172277 -2.492435 0.980774 4.699452 -0.209954 2.077315 0.387165 3.841804 -0.801712 -1.690410 6.508627 4.163010 -2.903689 -2.269972 -3.464304 -3.280917 2.607393 -2.765471 0.470927 3.984263 2.238100 -3.622371 -1.560576 2.335604 2.132444 -1.658924 -4.333945 1.452503 3.141556 -3.488615 -3.575584 1.215809 5.127770 -0.640194 -7.077770 -0.653767 -5.230216 2.068139 -0.350092 -1.088675 -2.851123 -0.381551 1.054022 -1.223679 -1.692057 -1.981423 3.372041 2.379205 2.608974 0.446080 0.904805 1.070313 7.588788 -0.048128 -3.339467 0.359942 0.181609 -1.642954 2.433355 -4.500483 -2.817723 4.051200 -4.538418 1.119233 2.629440 -2.448307 -2.596643 4.702849 1.829427 0.993820 16.846406 1.725291 6.296310 4.968473 -3.390468 2.429974 -1.739987 0.778418 2.094823 1.726553 -1.197685 -7.701483 -4.446801 2.052748 4.155673 3.623469 -5.470631 -3.371216 0.247972 -0.186620 0.323887 -0.775094 1.168103 -0.120783 -3.555844 -0.726440 4.439006 9.551788 -0.750146 2.037887 2.423201 4.164042 -4.193698 -7.908949 -1.970748 -3.814143 1.005853 0.191503 0.760701 2.936044 5.703973 -8.655742 3.542402 0.399552 2.200087 2.838912 1.854890 -5.947460 -9.967857 -1.244649 1.901562 6.336807 -2.393449 2.123929 2.786143 -3.847064 -0.091876 1.114035 -1.068760 -0.619618 1.429195 -0.535525 -0.823952 -2.131523 2.807091 -2.624378 -0.175684 0.262920 3.073189 1.787899 -4.266798 3.484827 -1.006027 -1.958879 0.637363 -1.898524 5.357988 -4.447630 -3.587766 3.029607 -0.212680 -1.801921 -3.511810 1.158682 2.929324 1.075584 1.687405 -2.151759 -5.628398 3.686189 -3.481060 3.212385 1.810692 -1.518974 1.701650 -1.511290 -0.682877 -6.093562 -2.749392 -2.455313 0.448574 -4.958634 -1.215268 -0.576921 4.094587 2.554036 -0.023539 -4.992264 1.605371 5.875307 -4.035693 -1.973720 2.632841 1.798141 -5.387023 1.707625 3.557590 -7.143031 1.403034 -2.587430 -0.340244 -0.734742 -3.363504 3.387527 2.034695 3.283013 -0.768049 1.038053 0.871802 2.225525 2.320138 0.906444 0.681115 7.822486 5.364627 -0.564829 -2.431551 -5.341296 0.990602 -5.245227 -6.388121 2.142669 0.976813 -4.149105 1.205841 1.879242 6.019102 1.531650 0.530179 -1.425333 1.438864 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = -0.658876 -0.485570 0.251602 -1.834863 1.371583 1.065742 0.675868 -0.567322 -2.048758 -0.769081 0.780836 -2.287915 -0.983924 2.364423 -0.683911 1.252661 2.818675 0.335683 -0.952663 -0.381173 1.790223 -0.464726 2.773100 2.351871 -1.922441 -0.006969 -0.124195 1.052343 0.435623 0.906757 0.252776 -1.413846 0.746908 -1.289107 -0.090922 -1.011353 0.205223 0.341746 0.845253 -3.011207 0.447877 0.773979 0.178484 -0.547104 -0.424286 0.499196 1.774520 1.774844 -0.469987 0.630823 1.641208 0.206184 -0.080680 0.449933 0.560163 -0.079667 0.544917 -0.143045 -1.014063 -0.664548 -0.237958 -0.937959 0.094361 1.845458 2.321318 0.055017 -0.116495 0.793159 0.154083 0.675405 1.060674 0.380064 -0.084681 0.114637 1.090708 -1.643992 -0.210437 -3.203238 -0.273631 -4.225868 -1.369960 -0.094376 2.113661 0.667284 0.643400 -0.272710 2.022370 -0.239776 -0.428728 1.875059 2.451589 -1.317453 -0.978413 -1.255306 -1.151028 0.825885 -1.099132 0.053979 1.039829 0.474419 -1.762892 -0.571981 0.660595 0.586498 -0.780638 -0.979905 0.255779 1.657143 -1.889329 -0.948128 -0.436273 1.549678 0.116550 -3.233517 -0.714040 -1.138454 0.846503 0.185022 -0.745271 -1.220775 0.388517 0.757696 -0.724674 -0.554256 -0.976662 1.664356 0.835791 0.882848 0.336759 0.428960 0.661583 2.482358 0.755406 -1.160130 0.078817 -0.018841 -0.409908 0.828902 -1.021225 -0.858416 0.552268 -1.753747 0.572904 1.101876 -1.147057 -0.758559 0.369601 0.478412 0.553855 5.964178 -0.034629 2.411232 1.478746 -1.901812 0.890343 -0.559282 -0.081920 0.508083 0.994558 0.115163 -2.001793 -1.705350 1.260142 2.103953 1.485081 -2.143388 -0.174459 -0.042561 -0.068084 -0.094202 0.181711 0.516194 0.183761 -1.467214 -0.486641 1.659235 3.683562 -0.644103 -1.094414 0.969594 1.012777 -0.596568 -1.906371 -0.601027 -0.877284 0.394842 0.628024 0.048823 1.223367 2.531307 -3.707617 1.841581 0.001946 -0.043918 1.636291 0.420739 -1.778192 -2.711723 -0.408478 1.352938 2.340447 -0.270373 0.075768 0.612825 -1.788044 -0.142000 0.371348 0.068109 -0.518339 0.906721 -0.027326 -0.974474 -1.130347 -0.244240 -0.639970 0.007791 -0.489202 1.162326 0.489006 -3.159235 2.081855 -0.116392 -0.819166 -0.074130 -0.471354 1.762195 -1.775474 -2.070667 0.986135 -0.537764 -1.448528 -1.078592 0.101985 1.048269 0.369777 0.575606 -0.998686 -1.994749 1.756495 -0.770082 1.733332 0.892167 -0.093597 1.540705 0.154210 -0.621086 -1.588764 -1.240654 0.449135 -0.430422 -1.724143 -0.083173 -0.587874 1.681019 1.412963 0.018170 -1.378183 -0.179071 2.066438 -1.558898 -0.823657 1.366754 0.519622 -1.788854 0.925436 1.744851 -2.055132 -0.008486 -1.350190 -0.309060 -0.742235 -1.659519 1.090515 0.157379 1.035035 0.163715 0.275383 -0.307702 0.734900 0.492862 0.083944 0.120766 2.613235 2.276989 -1.005083 -0.137603 -2.063197 1.010267 -2.462294 -2.408106 0.836104 0.186302 -1.283124 0.187187 0.133871 1.846472 0.375885 -0.298583 -0.664738 0.586740 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.506122 -0.740676 -0.092479 -0.956983 0.649825 0.207414 0.291580 -0.471655 -1.190386 -0.148388 0.406858 -0.696922 0.190655 1.115358 -0.282880 1.112725 1.249664 0.371480 -0.400063 -0.264940 1.142007 -0.647114 1.021565 1.083318 -0.746963 -0.080175 0.034822 0.395253 0.199163 0.324390 -0.082814 -0.464549 0.350031 -1.199372 -0.152985 -0.876810 0.101927 0.817838 1.073442 -1.353169 0.312326 -0.045471 0.230859 -0.210599 -0.333802 -0.051947 0.274627 0.730369 -0.372357 0.721092 0.845958 0.060387 -0.158821 0.182223 0.229212 0.528689 0.074788 0.228805 -0.297129 -0.277958 -0.200646 -0.129448 0.562662 0.669301 0.958174 -0.126394 -0.032565 0.604041 0.249997 0.205221 0.756756 0.107795 -0.467309 -0.483222 0.462818 -1.608805 -0.185725 -2.250096 -0.104758 -1.997042 -0.501536 0.288764 0.727434 -0.143931 0.548286 0.231379 0.949589 -0.360150 -0.422999 0.781694 0.772085 -0.787932 -0.366914 -0.442777 -0.758083 0.167415 -0.336955 -0.185220 0.524062 0.214089 -0.696943 -0.617000 0.505273 0.433607 -0.278845 -0.922592 0.202077 0.794928 -0.844851 -0.999061 0.044497 0.952872 -0.316027 -1.100827 0.099641 -0.839065 0.486328 0.039285 -0.512514 -0.850455 0.144883 0.418850 -0.368446 -0.442503 0.060461 0.540371 0.456343 0.428563 0.045953 -0.132273 -0.052393 1.359160 0.382634 -0.822255 0.074896 0.237945 -0.198805 0.448569 -0.726989 -0.602684 0.349131 -0.902411 0.126163 0.402259 -0.562015 -0.174589 1.304047 0.393664 0.051418 2.607624 0.091899 1.083710 0.829862 -0.744184 0.439688 -0.160003 0.338476 0.511116 0.600647 -0.276385 -1.200466 -0.941141 0.462447 0.853283 0.754777 -0.943990 -1.073251 -0.152318 0.043447 0.446368 -0.143730 0.136242 -0.043031 -0.717414 -0.139966 0.328975 1.723028 -0.353570 -0.006057 0.423087 0.650826 -0.774830 -1.373721 -0.468551 -1.362802 0.149362 0.106994 0.033910 0.529739 1.202386 -2.012777 0.780618 -0.487137 0.113236 0.453633 0.468709 -0.803172 -1.800127 -0.475861 0.261413 1.154996 -0.336851 0.546117 0.684322 -0.755124 0.033065 0.030223 -0.068953 -0.397678 0.415001 -0.012869 -0.525673 -0.150429 0.566993 -0.453443 -0.431849 0.130630 0.582824 0.344441 -1.241049 0.549916 -0.002728 -0.265210 0.573103 0.100819 1.073758 -0.641958 -0.810822 0.713610 0.152472 0.078566 -0.417744 0.178091 0.641573 -0.097251 0.001049 -0.327502 -0.967254 0.403576 -0.531552 0.753306 0.345348 -0.462686 0.500581 -0.424639 -0.219763 -0.842052 -0.182769 -0.292690 -0.114670 -0.572793 -0.674023 -0.103517 0.860380 0.528980 0.391663 -0.567662 0.161387 1.110284 -0.871347 0.039877 0.677753 0.391029 -0.770002 0.284146 0.845753 -1.098053 0.146494 -0.432074 0.190191 -0.217347 -0.337142 0.828197 0.311263 0.548466 -0.360405 0.231022 0.142318 0.466226 0.605515 0.240671 0.034637 1.240318 0.941659 -0.183660 -0.471459 -0.737943 0.161761 -0.901649 -0.856758 0.142935 0.523899 -0.958288 0.190591 0.081170 1.165604 0.200931 0.233877 -0.049789 0.080679 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -2.950905 -3.284768 -1.831955 -6.726129 4.348431 5.579673 2.192122 -3.993809 -7.063393 -0.655636 3.289762 -6.398357 -0.627622 7.843462 -2.203036 7.236185 8.937154 0.599975 -3.969703 -0.672924 8.231836 -1.215102 9.417219 7.190706 -5.719920 -0.744771 0.087472 3.225470 1.803443 1.358647 1.203636 -2.996729 2.820572 -8.143700 -2.349710 -3.867143 1.394413 2.633065 6.562815 -9.029740 1.967632 0.139017 0.231404 -2.165576 -2.865132 -1.466087 3.900264 6.189510 -1.297367 1.919316 6.021882 0.871271 -1.319645 1.646180 1.502532 1.560450 0.271938 0.323987 -1.970204 -3.830623 -0.404259 -0.748635 1.999901 5.881721 7.482335 0.218492 0.009341 5.333431 0.963735 1.918188 4.245686 0.820794 -3.116775 -0.618247 3.209264 -9.294743 -1.207852 -11.300257 -1.393415 -10.746599 -3.465941 1.227870 4.264540 0.573138 4.590258 1.230438 5.975249 -1.565104 -2.612357 6.770571 6.714663 -5.489373 -2.877773 -4.295719 -4.043993 2.054119 -3.555715 0.205168 3.780340 1.464593 -5.423174 -2.699705 2.139469 3.935765 -2.445948 -6.744932 1.576393 5.109978 -4.770045 -5.649921 1.309373 6.644978 -2.419931 -10.752899 -3.020153 -5.242639 3.195482 -0.722802 -1.845116 -6.649092 0.541066 3.773990 -1.638787 -4.187480 0.910580 3.710080 4.203378 3.389943 0.703010 0.574470 1.310175 11.374958 2.193895 -3.950981 0.479036 -0.309173 -1.159729 3.505504 -3.540185 -3.323746 0.941065 -6.627801 1.873925 6.045986 -3.225672 -1.785859 5.554175 2.832775 1.281103 23.556618 0.898941 8.553956 6.371673 -6.541026 1.802348 -2.757528 0.613303 2.432585 2.349371 -1.215331 -10.300670 -6.062681 3.843108 6.101671 5.027861 -7.648837 -2.502379 -0.563384 -0.357022 0.356172 -1.112988 1.590007 0.322621 -5.082921 -1.400682 6.130253 13.483826 -3.032716 -0.243529 4.460905 3.953912 -4.432474 -8.562012 -3.369372 -5.858916 1.299354 2.674598 0.521034 3.880146 8.108968 -9.630621 5.164679 -0.969538 0.485672 4.884477 2.783838 -6.881033 -8.681982 -2.071804 3.665438 7.470035 -3.034206 1.840887 3.130759 -5.608460 -0.108393 1.420327 -1.154639 -1.076400 2.436061 0.128006 -2.955458 -3.151360 3.357778 -2.555574 -1.013532 0.207447 4.119893 0.483687 -7.996765 6.156766 -0.216429 -2.606758 1.976231 -1.703516 7.974237 -5.326005 -6.258443 5.118780 0.144278 -1.106841 -2.592254 1.518483 4.445640 2.340972 2.601345 -3.859178 -6.898853 3.619425 -2.916397 5.238311 2.505873 -0.971453 3.253540 -4.375479 -1.483457 -7.042547 -4.425585 -0.959013 1.058375 -7.012794 -3.279632 -1.246916 6.788467 3.386719 0.649812 -5.831529 0.689058 6.939916 -6.627935 -1.352120 4.010704 4.562006 -8.304996 0.972602 5.361880 -7.068419 0.958150 -2.605131 -0.006035 -2.536331 -5.838736 4.410008 2.570147 4.752830 -0.947307 1.838481 1.162884 2.496165 2.894231 2.123526 0.794613 8.243143 6.253409 -1.815306 -4.106559 -6.662707 2.417040 -7.719233 -8.546014 3.771580 1.478008 -5.043372 1.113721 1.207841 7.913796 1.479061 0.076260 -0.842693 0.487274 +PE-benchmarks/shortest-common-supersequence.cpp__main = -0.965971 -0.774509 0.223564 -2.761889 2.206883 2.121152 1.191237 -1.452839 -3.327935 -0.847250 1.648553 -5.051358 -1.597617 3.712540 -1.204515 2.062938 4.627751 0.266916 -1.935501 -0.460472 2.388456 0.795415 4.845184 4.147170 -2.751515 0.043593 -1.578815 1.542324 0.492336 0.346729 0.771943 -2.118191 1.444554 -1.875513 -0.952988 -0.640725 0.217444 0.287526 1.713774 -4.504547 0.672662 1.446275 0.613374 -0.985035 -0.653786 0.218435 3.148369 2.822364 0.347464 0.738948 2.091792 0.236811 0.271342 0.806780 1.036253 -0.627147 0.863807 -1.479535 -1.943561 -1.420312 -0.379170 -0.762344 -0.481009 3.079027 3.652102 0.944323 -0.572414 1.319047 0.615306 0.913442 1.821012 0.776119 -0.084430 1.086518 1.304970 -1.939744 0.085182 -3.413513 -0.535717 -4.575629 -2.334618 0.279215 3.590499 1.695700 1.092774 -0.554287 3.147780 -0.311522 -1.064905 3.088638 4.344085 -2.399052 -1.771753 -1.673744 -1.513198 1.053772 -1.626828 0.961407 0.975250 1.398218 -3.082465 -0.487998 0.933529 0.832761 -1.170412 -1.050480 0.964134 2.362267 -2.321441 -1.282786 0.010633 2.788074 0.480862 -4.831113 -1.872226 -1.580682 0.633677 0.487197 -1.537946 -2.003897 0.668237 0.498158 -1.221867 -0.617573 -2.412087 2.061335 1.393960 1.657924 0.309599 1.607716 1.592190 4.422415 -0.320486 -1.859500 0.768109 -0.555496 0.046787 1.862167 -1.181042 -1.484028 0.027225 -2.487090 0.735438 1.916261 -1.882862 -1.351413 -1.382017 1.375828 0.471164 8.414590 0.098523 3.860859 2.631703 -2.975850 0.993445 -1.693927 0.039489 0.193147 1.094971 0.259027 -3.045320 -3.059991 2.510617 3.515768 2.292615 -2.929987 0.904240 0.462126 -0.031555 -0.694993 0.553436 1.031851 0.611833 -2.163534 -0.731418 3.189897 6.211510 -0.941343 -1.054359 1.804234 0.847464 0.241460 -2.294173 -1.128450 -0.281208 0.691713 1.179363 0.800620 1.887870 4.122540 -4.207733 2.958732 0.443672 0.346948 2.997754 0.839394 -3.312439 -2.547933 -1.121183 2.303935 3.365665 -0.298863 -0.552355 0.746583 -2.841272 -0.387536 0.877375 -0.142924 -0.575896 1.399685 -0.004961 -1.352592 -1.726995 -0.439295 -1.096359 0.491891 -1.104386 2.209150 0.925344 -3.506704 3.472431 0.496848 -1.299308 -0.634007 -1.588256 2.883582 -2.639116 -2.835102 1.452359 -1.690253 -2.773698 -1.368971 0.218455 1.034308 0.958489 1.712199 -2.175590 -2.057205 3.601749 -0.867734 3.096774 1.471254 -0.247644 1.433326 0.409971 -1.256557 -1.713577 -2.958834 0.670675 -0.003242 -3.050338 0.843938 -1.018120 2.686897 1.936682 -0.208668 -3.086535 -0.510600 2.911273 -2.405210 -1.581448 2.150260 -0.007032 -3.292374 1.348090 2.679581 -3.164019 0.602433 -1.982595 -0.894834 -1.860475 -2.750436 1.507139 0.677746 1.664301 0.093695 0.076544 -0.111149 1.123573 0.564551 0.086195 0.791948 4.396733 2.413639 -0.757651 -0.117403 -3.706467 1.832857 -3.852070 -4.120659 2.041928 0.092546 -2.580685 -0.140676 0.109476 2.867114 0.911945 -1.191127 -1.786090 1.581616 +PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = -1.085074 -0.801672 -0.429230 -2.842880 2.157556 2.860477 1.276444 -1.831257 -3.336743 -1.037478 1.599771 -4.691359 -1.242110 3.895269 -1.151389 3.063483 4.888882 0.429594 -2.056895 -0.204145 3.032039 0.481661 5.263047 4.332970 -2.799251 0.101463 -0.896549 0.864635 0.627693 0.904984 0.425976 -2.465545 2.303948 -2.947285 -0.918100 -1.341128 0.080395 0.473037 2.589230 -4.801237 0.856201 1.075943 0.331612 -1.080170 -0.857959 0.357947 3.267845 2.919622 0.205936 1.011294 2.198026 0.513762 -0.067281 0.878506 1.195885 0.223756 0.613709 -1.377188 -1.726503 -1.714142 -0.460661 -0.790706 -0.254713 3.107323 3.728046 0.409292 -0.386586 1.954998 0.626983 0.810690 1.797405 0.751176 -0.262381 0.430800 1.091769 -3.546593 -0.106857 -3.661131 -0.925215 -6.264463 -2.199734 0.279478 3.051471 1.367241 1.802322 -0.910521 3.301366 -0.677020 -1.061804 2.781563 4.471144 -3.215296 -1.672210 -1.762921 -0.932834 0.791933 -1.782885 0.486581 1.705617 0.281977 -3.155674 -0.652710 1.135679 1.360733 -1.277863 -2.004489 1.000443 2.599229 -2.997858 -1.987962 -0.014761 2.731951 -0.310474 -5.733518 -1.060525 -1.559502 1.076787 0.365215 -1.550255 -3.038028 0.745900 1.348267 -0.988344 -1.612874 -1.506500 2.427324 1.909958 1.824400 0.474992 1.331387 1.428186 5.648929 0.774988 -1.835317 0.743416 -0.534480 -0.276989 1.872539 -1.133655 -1.759127 -0.004520 -3.315584 0.758272 2.744246 -1.981716 -0.485541 0.323641 1.478551 0.503964 10.521842 -0.186033 4.508090 3.110537 -3.547637 0.847782 -1.937137 -0.117331 0.323058 1.232952 0.369016 -4.443693 -3.074619 2.460198 3.707040 2.467770 -3.621108 0.571620 -0.104875 -0.098621 -0.643140 0.117919 0.848513 0.927641 -2.709026 -0.813006 3.164433 7.260061 -1.571982 -0.281046 1.842280 0.824486 -0.397572 -3.111077 -1.470247 -1.479289 0.856930 1.338690 0.595806 1.828821 4.253659 -3.946158 3.128971 -0.483302 -0.229920 3.217127 1.444440 -3.528600 -3.314505 -1.255036 2.539588 3.679941 -0.979078 0.387199 0.982190 -3.012390 -0.479474 0.704687 -0.213558 -0.685628 1.220232 0.650798 -1.708863 -1.618476 0.326602 -0.642047 -0.342350 -0.756845 2.282918 1.210478 -4.422313 3.683868 0.441990 -1.541646 0.097574 -1.038794 3.549721 -2.885015 -2.996400 1.930051 -1.044639 -2.237044 -0.995098 0.273384 1.657128 0.869945 1.497124 -2.168833 -2.912177 3.179434 -0.814258 3.098922 1.517935 -0.101031 2.011713 -0.955974 -1.096330 -2.438752 -3.549303 0.013817 -0.212638 -3.328558 0.154700 -0.993153 3.221905 2.185693 0.076658 -3.258856 0.025801 2.963934 -3.504067 -0.738195 2.355357 1.760909 -3.988918 0.937111 2.864173 -3.450188 0.417732 -1.696161 -0.842138 -1.764008 -2.682292 1.788409 0.616392 1.932063 0.031425 0.380373 -0.007933 1.217168 0.697646 0.299790 0.743323 4.271398 3.079537 -1.082954 -0.911874 -3.601829 1.830350 -4.068887 -4.520160 2.111947 0.694031 -2.661682 -0.084829 0.497561 3.537040 0.834283 -1.066803 -1.268219 1.008398 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = -0.453219 -0.652147 0.275226 -1.339145 0.801464 0.128519 0.471680 -0.496335 -1.604219 -0.370217 0.582092 -1.284477 -0.190461 1.550732 -0.406548 1.071458 1.923760 0.502345 -0.675387 -0.467407 1.317423 -0.653415 1.712836 1.727256 -1.198282 0.039302 -0.087429 0.705764 0.600988 0.494781 -0.097493 -0.477668 0.585155 -1.143677 0.008313 -1.090347 0.099784 0.594982 0.956413 -2.035649 0.418688 0.107007 0.542812 -0.315062 -0.253561 0.830430 0.804593 1.140423 -0.409509 0.717552 1.200139 -0.022125 -0.043524 0.322472 0.411891 0.271988 0.620429 0.230415 -0.557417 -0.314856 -0.152184 -0.619056 0.405220 1.132520 1.606625 -0.049000 -0.089113 0.536134 0.488847 0.356968 0.936713 0.191052 -0.217749 -0.306155 0.598817 -1.827884 0.027969 -2.844618 -0.201694 -3.350009 -0.885370 0.134369 1.441867 -0.282105 0.469014 0.021043 1.244970 -0.138224 -0.400357 0.917802 1.305381 -0.977015 -0.640197 -0.591805 -0.771129 0.493870 -0.639911 -0.030393 1.009238 0.307888 -1.077006 -0.422446 0.760733 0.402524 -0.498055 -0.574964 0.305417 1.149419 -1.202397 -0.868332 -0.133416 1.023313 -0.045168 -1.852385 0.380470 -1.123274 0.884764 0.042699 -0.609918 -0.785282 0.192033 0.442532 -0.606690 -0.324123 -0.822439 1.094145 0.480738 0.642622 0.080464 0.061917 0.197898 1.564222 0.487023 -1.072788 0.137811 0.125957 -0.495869 0.603086 -1.042114 -0.771145 0.896789 -1.194997 0.232895 0.387138 -0.817065 -0.318280 1.353651 0.579093 0.227658 3.562051 0.064034 1.640259 1.053927 -1.020212 0.654555 -0.210056 0.252578 0.599337 0.822990 -0.189758 -1.561692 -1.221730 0.614569 1.336859 1.032369 -1.594117 -0.835117 -0.176145 -0.106381 0.265382 -0.009695 0.192896 -0.010516 -0.962024 -0.300388 0.668890 2.362331 -0.374048 -0.368582 0.393152 0.524667 -0.747843 -1.706305 -0.490913 -0.881835 0.377515 -0.085534 0.083810 0.873903 1.636850 -2.971065 1.239937 -0.392166 0.025642 1.054620 0.395300 -1.238203 -2.366038 -0.414688 0.539746 1.632903 -0.250894 0.191094 0.834890 -1.181911 -0.119856 0.013946 -0.025390 -0.438093 0.500547 0.176404 -0.571074 -0.447379 0.132991 -0.314166 -0.183481 -0.007170 0.876466 0.367578 -2.187146 0.986267 -0.169689 -0.536399 0.275041 -0.185267 1.070578 -1.113809 -1.065265 0.624974 -0.031104 -0.531383 -0.998326 0.153093 0.824982 -0.274102 0.288133 -0.581356 -1.331065 0.965347 -0.893988 1.070501 0.582563 -0.363262 0.947659 0.024381 -0.262998 -1.237350 -0.323368 -0.253582 -0.350285 -0.962489 -0.098808 -0.341710 1.087751 0.916544 0.201858 -0.644164 0.222164 1.484683 -1.268817 -0.433161 0.913815 0.527944 -0.994329 0.746610 1.119423 -1.644463 0.067479 -0.717647 -0.447346 -0.219142 -0.687806 1.062943 0.282767 0.766593 -0.247186 0.324375 0.001787 0.664974 0.365807 0.094518 0.137022 1.836515 1.923032 -0.498129 -0.305605 -1.227439 0.543392 -1.448372 -1.387419 0.358628 0.387486 -1.193275 0.283877 0.163367 1.465761 0.282759 -0.129664 -0.390874 0.414739 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -2.695823 -3.454652 -1.175227 -6.100373 3.835650 4.146358 2.311978 -4.177985 -7.095082 -0.496575 3.193126 -6.595556 -0.000433 7.600073 -1.936522 7.695783 8.741872 1.387362 -4.194506 -0.490220 7.400608 -0.516473 8.731173 7.552842 -4.961191 -0.363422 -0.830768 2.628087 1.818164 1.021672 0.463393 -2.428481 3.513849 -7.947829 -2.269129 -3.955964 0.787349 2.947132 7.097316 -8.698400 2.025338 0.424504 1.954352 -2.115094 -2.293138 -1.434081 3.375445 5.830520 -0.547041 2.467876 4.905357 0.294311 -0.588227 1.677561 1.794635 2.144965 0.571963 -0.686147 -2.410445 -3.452327 -0.589440 -0.840637 1.822217 5.514247 7.148039 0.516348 -0.424153 4.715983 1.967878 1.514556 4.239787 1.016797 -3.089173 -0.798529 2.313717 -9.456483 -0.323029 -10.020572 -1.411690 -9.796459 -3.842275 1.549011 4.450709 0.567287 4.712113 0.688693 5.796037 -1.831850 -2.697658 4.930873 6.355682 -6.114674 -2.957417 -3.496319 -3.085421 1.734044 -3.298643 0.261800 3.517385 0.973790 -5.416000 -2.432005 2.359588 3.684916 -2.288886 -5.001741 2.091323 5.337544 -4.455992 -6.228180 1.246028 5.743181 -2.428864 -9.479680 -1.019082 -4.639008 2.177900 0.093444 -2.704694 -6.497058 0.883434 2.997531 -1.822112 -4.098611 -0.577906 3.397482 3.452989 3.307067 0.521700 1.001356 1.297552 10.968682 1.767535 -4.309673 1.290393 -0.194288 -1.065038 3.695473 -3.534125 -3.942007 0.553811 -6.803756 0.723150 5.170404 -3.633118 -0.734096 4.893593 3.655274 0.741759 19.488311 0.659938 8.239088 6.138341 -5.786143 2.022206 -2.730448 0.913945 2.039819 2.435423 -0.805313 -9.458269 -6.014765 3.695694 6.446199 5.024345 -6.624938 -3.073911 -0.841811 -0.240486 0.453037 -0.644583 1.551958 0.848334 -5.178206 -1.253045 4.955763 12.118450 -3.190169 -0.158238 3.727183 2.386569 -3.435314 -8.029490 -3.440396 -6.006269 1.370690 1.416678 0.791354 3.529690 7.906395 -8.308039 5.542526 -1.456344 0.175901 5.233648 2.739653 -6.899569 -7.429298 -2.652087 3.009324 6.799589 -2.867376 1.308213 3.334988 -5.645686 -0.473858 1.053467 -1.093116 -1.282865 2.383205 0.533104 -2.538521 -2.432284 3.202980 -1.859524 -2.133339 0.257982 4.522328 1.524862 -6.400699 5.104589 0.317657 -2.737126 2.570358 -1.765863 7.089301 -5.072917 -5.295787 4.660099 0.094183 -0.957657 -2.395907 1.305453 4.078371 1.786908 2.048932 -3.507946 -5.439745 3.659443 -2.680668 5.424804 2.587359 -1.436418 2.636691 -2.715587 -1.687125 -5.820454 -3.968848 -2.170684 0.790270 -6.144557 -3.759152 -1.385936 6.667915 3.640283 0.877336 -5.282309 0.307961 6.320934 -7.101014 -0.861351 4.265118 3.060226 -7.234301 0.701741 5.329720 -7.048275 1.276368 -2.079486 -0.460080 -2.383402 -4.313930 4.507969 2.350297 4.291148 -1.422685 1.156756 1.395571 2.577575 2.729225 1.679944 1.163670 8.014250 4.971130 -1.208794 -3.616917 -6.425301 2.384909 -7.038320 -7.728923 3.550763 2.051519 -6.001795 0.851863 1.363938 7.594792 1.533082 -0.675461 -1.372613 0.735868 +PE-benchmarks/detect-cycle-in-a-graph.cpp__main = -1.148862 -0.351210 1.885640 -3.096885 2.106431 0.829674 1.050114 0.111932 -3.384250 -1.941786 0.176331 -3.314772 -2.330073 4.165023 -1.168393 0.762182 5.307967 1.730031 -1.191129 -0.654617 2.347127 -1.196073 4.177657 4.327873 -3.138252 0.006084 -0.463033 2.311469 0.307365 2.742817 0.050552 -2.753457 0.973817 -0.524390 0.852672 -2.819510 0.196330 0.931700 -0.657614 -5.894096 0.839535 1.889823 0.398208 -0.860081 -0.053394 1.725496 3.439125 2.879286 -0.916096 0.717343 1.948450 1.010367 0.102499 0.877830 0.936028 0.056313 0.823197 -0.981254 -2.022801 -0.345952 -0.748917 -2.777132 0.178901 3.100163 3.869841 0.378316 -0.181829 -0.053483 0.121199 1.165137 1.414610 0.555639 0.840065 0.024614 1.571696 -1.742178 -0.118052 -4.897160 -0.017787 -7.736436 -2.388237 -1.071850 4.135571 2.219841 0.032073 -1.504769 3.688216 -0.601361 0.225182 3.189442 4.321973 -1.971147 -1.542968 -2.575266 -2.024551 1.653503 -1.601436 -0.537212 0.850598 0.987434 -2.884258 -1.139005 0.902838 0.157116 -1.256524 -0.286763 0.229927 3.428169 -3.997616 -0.938485 -2.047818 2.191074 0.836333 -4.892276 -0.439303 -1.997246 1.504166 0.565190 -1.558778 -1.239907 1.111611 1.188711 -1.379735 0.034155 -3.721374 3.610626 0.327483 0.214388 0.371952 0.546516 0.435343 2.554583 1.564873 -2.090498 0.011189 0.795308 -1.348070 0.146763 -2.405764 -1.222424 1.342906 -2.964485 -0.021347 1.019666 -2.349182 -1.330933 -0.967650 0.103406 1.664585 8.774604 -0.639032 3.179773 1.773753 -3.124251 2.227416 0.044029 -0.341118 0.766844 2.259450 0.874269 -2.756575 -2.832349 1.613187 3.748397 2.786688 -2.456459 -0.108274 -0.843203 -0.262912 -0.018547 0.812112 0.728988 -0.287593 -2.524639 -0.950945 1.742142 5.428794 -0.440397 -2.614167 0.998522 1.291931 -0.718962 -2.441647 -0.565037 -0.528626 0.363287 0.602241 -0.590571 2.121589 4.446997 -6.772239 3.676996 -0.101002 -0.265860 2.256782 -0.212798 -1.948934 -4.478448 -0.672782 2.731311 4.622776 -0.009029 -0.174741 0.578077 -3.191117 -0.421134 0.606198 1.273669 -1.254821 1.658235 0.204065 -2.035955 -1.835533 -1.596554 -1.067424 -0.195330 -1.280918 1.655930 1.006455 -5.483045 3.692182 -0.411497 -0.768858 0.039777 -0.305486 2.041965 -3.221160 -3.823156 1.244927 -0.531021 -3.139405 -2.108860 -0.032766 2.405969 -0.194283 0.012675 -1.377035 -3.647317 3.363041 -0.988697 2.963157 1.500647 0.114033 3.338618 2.693479 -1.104904 -2.022172 -2.178094 1.069021 -1.527449 -1.911640 0.632078 -1.115929 2.517884 3.394625 -0.068411 -1.679823 -0.209095 4.101002 -1.675556 -1.604757 2.623125 -0.849512 -1.628276 2.087044 3.309958 -3.792821 -1.180900 -2.721284 -0.116856 -0.508769 -2.421557 1.697899 -0.992453 1.170785 0.845641 0.256286 -1.575005 1.293895 0.959480 -0.495588 0.265647 4.871999 3.691684 -1.629144 1.398743 -2.898701 1.745334 -4.311602 -2.851756 0.135805 0.192775 -1.465224 0.663087 -0.189561 2.587405 0.222578 0.149189 -0.955631 0.711715 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -2.325978 -1.418407 0.699995 -5.425639 3.743345 3.707813 1.758612 -2.273596 -5.527278 -1.470341 1.410993 -5.484878 -1.470054 6.866035 -1.959093 4.689519 8.480984 1.522462 -2.739800 -0.126244 6.032050 -1.635556 7.390192 6.630292 -4.868167 -0.554326 0.010349 3.044211 0.729043 2.762539 -0.338427 -3.467982 2.238067 -5.241416 -0.944193 -4.158944 1.066715 1.882242 3.412528 -8.474828 1.601899 0.782873 0.057816 -1.929766 -1.878011 -0.518662 4.648836 5.125955 -1.354916 0.864292 4.016620 1.150234 -1.024803 1.565242 1.325187 1.427997 0.520402 -0.192224 -2.564118 -2.306223 -0.722558 -2.257402 1.427728 5.187723 6.344892 0.825314 0.157616 3.194746 0.397953 1.121884 2.724518 0.602600 -1.016499 0.066875 2.461752 -6.776233 -0.532282 -8.804341 -1.149386 -9.496203 -3.277249 -0.389971 3.633687 1.393644 3.153938 -0.591605 5.345871 -1.481393 -0.728467 5.356663 6.731289 -5.242313 -2.616739 -4.597665 -3.592945 1.878724 -2.992084 -0.251335 1.883169 0.555513 -4.723563 -3.035653 1.958027 2.756546 -1.874221 -3.819709 1.232641 4.973491 -4.867496 -4.478128 -0.839977 3.875338 -1.487987 -8.519862 -1.435091 -3.740564 2.692142 0.185129 -2.015512 -5.515627 1.009226 3.561371 -1.674109 -3.033927 -1.900539 4.500119 2.329938 1.762253 0.667193 0.137976 1.188093 7.969010 2.655826 -3.366540 0.379487 0.108030 -2.051533 1.450971 -3.612317 -2.795960 1.079749 -5.651403 -0.241636 4.582698 -3.416852 -0.998135 2.926348 1.471266 2.215906 18.332301 -0.007610 6.104934 3.854489 -6.005672 2.887758 -1.589988 -0.365619 1.289329 2.491427 0.467682 -8.713308 -5.134762 3.156992 5.587419 4.597973 -5.351046 -1.860106 -1.506869 -0.380975 0.205192 -0.443207 1.558397 -0.288115 -4.620771 -1.417549 4.302322 11.115332 -2.326527 -1.727015 3.426716 2.075201 -2.679398 -6.686289 -2.431318 -3.877548 0.908329 1.365619 -0.418216 3.450010 7.348576 -9.021205 5.115960 -1.168964 -0.490637 3.869403 1.051891 -4.827618 -6.729020 -1.287300 4.290969 6.726792 -1.350360 1.125647 1.632326 -4.899222 -0.461278 1.127160 0.557021 -1.213095 2.178162 0.374430 -3.646055 -3.323548 1.009393 -2.191097 -1.637922 -0.662267 3.174592 0.685919 -6.966577 6.040891 0.022733 -1.490629 1.762158 -1.379508 5.265444 -5.256018 -6.134341 3.858766 -0.053157 -1.619216 -2.145026 0.935901 4.013801 1.398858 0.578966 -2.916587 -6.791665 3.495961 -1.659924 4.585205 2.138100 0.098761 3.751759 0.354304 -1.490583 -5.199799 -3.919235 -0.299751 -0.060664 -5.156865 -2.463265 -1.291616 5.730241 4.319366 0.092849 -3.798201 0.057695 6.033920 -4.761817 -1.453906 4.062871 1.624013 -5.788699 0.520882 5.094966 -6.154481 -0.634780 -2.743957 0.037849 -1.734438 -4.752130 2.708522 0.372548 2.961315 0.457755 0.888779 -0.348967 2.018114 2.295600 1.121320 0.656869 7.353614 5.223784 -1.891104 -1.468758 -5.353120 2.216010 -7.167717 -6.727819 2.473791 1.254224 -3.718872 0.938791 1.117646 5.690823 0.500677 0.583247 -0.454466 -0.102742 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -1.031271 -0.876496 0.609932 -2.787473 2.083235 1.844664 1.141493 -1.171476 -3.393867 -0.299793 1.268353 -3.203861 -0.816128 3.760576 -1.078323 2.272201 5.019336 1.366745 -1.865795 -0.474560 3.083040 -1.321825 4.189256 4.140905 -2.630116 0.141775 -0.430631 1.616758 0.493457 1.514718 -0.647229 -1.140769 1.353051 -2.741383 -0.303306 -2.554005 0.187218 0.935894 1.766747 -5.127695 0.856074 0.246480 0.586044 -0.955420 -0.775952 1.299519 2.446838 2.695935 -0.229152 0.698664 2.224368 -0.235864 0.192738 0.817709 1.326181 0.947177 1.577938 0.854067 -1.343933 -1.002965 -0.564613 -1.189255 0.659355 2.729829 3.938614 0.388765 -0.280648 1.219842 0.661704 0.690233 1.660780 0.367358 -0.613296 0.092333 0.950126 -3.892310 0.100225 -5.129304 -0.585007 -5.982115 -1.980212 0.003530 2.665567 -0.353901 1.434168 -0.001444 2.976264 -0.571576 -0.595819 2.417306 3.942967 -2.652142 -1.591596 -1.669138 -1.763672 1.029778 -1.310895 0.102896 2.451632 0.342576 -2.716847 -1.285833 1.653483 1.252318 -1.022437 -1.308578 0.779510 2.862109 -2.344982 -2.074630 -0.382619 2.198305 -0.387866 -4.801830 -0.187726 -2.085257 1.659121 0.404560 -1.536928 -2.664099 0.793584 1.692695 -1.183167 -1.064362 -1.122753 2.867985 0.782113 1.344076 0.220604 0.216308 0.748555 3.715689 1.332295 -2.134237 0.569174 -0.083551 -1.390558 1.346787 -2.069477 -1.713074 0.674766 -2.947273 0.513846 1.709068 -1.954354 -0.343885 1.720776 1.542684 0.655362 9.822420 -0.174137 3.724837 2.036491 -3.011188 2.192034 -0.676898 0.016431 0.679159 1.591368 -0.209403 -5.103314 -2.949519 1.597712 3.332105 2.466391 -3.985903 -1.123004 -0.818407 -0.396015 0.347584 0.177474 0.707210 0.037527 -2.140071 -0.842294 2.133118 6.459463 -1.330623 -1.785641 1.265135 0.437478 -1.151427 -4.398490 -1.224003 -1.672369 0.750467 0.224800 -0.019856 1.948881 3.741484 -5.956961 3.181299 -1.013589 -0.472579 3.515826 0.704951 -2.558343 -4.454391 -1.021384 1.923227 4.165277 -0.404464 -0.765616 1.377462 -2.723899 -0.371911 0.436374 0.073034 -0.606128 1.329149 0.341472 -1.771576 -1.609662 0.017963 -0.672549 -0.567823 -0.422819 2.263890 0.011644 -4.633718 2.990031 0.202948 -0.973213 0.644161 -0.501066 2.191601 -2.486017 -3.230180 1.810661 0.079656 -0.856607 -1.975390 0.222983 2.231723 0.460601 0.906744 -1.698654 -3.600374 2.237779 -1.482167 2.728347 1.313630 -0.220053 2.220574 0.771511 -1.038775 -2.910131 -1.652238 -0.336669 -0.442136 -2.504045 -0.725766 -0.976579 2.954618 2.000225 0.536943 -1.798272 -0.270633 3.798114 -2.499217 -1.056621 2.045538 0.619287 -2.586162 0.811900 2.838924 -3.661648 -0.187277 -1.501192 -1.198173 -1.127018 -2.271048 1.908373 0.307990 1.732847 -0.327971 0.464555 0.026585 1.221486 0.905631 0.655081 0.593262 4.260237 3.579869 -1.084614 -0.477333 -2.794456 1.644740 -3.565675 -3.129921 1.196416 0.946322 -2.449604 0.659739 1.073307 3.135360 0.367100 -0.759383 -0.755219 0.674608 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.484458 -0.042843 0.201250 -0.532789 0.356293 0.235937 0.212799 -0.214419 -0.731911 -0.159575 0.449406 0.073791 -0.229549 1.141865 -0.467169 0.507174 1.095102 1.055599 -0.338870 -0.145844 1.164399 -0.757806 0.820703 0.787534 -0.823792 0.096906 0.356748 0.253286 0.107312 0.826208 -0.245487 -0.402117 0.658854 -0.814884 0.256826 -1.437386 0.132462 0.932593 0.236140 -1.405754 0.207143 -0.198522 -0.097353 -0.309381 -0.246065 0.304951 0.153241 0.751620 -0.267330 0.084834 0.741979 0.143151 0.268315 0.199566 0.382092 0.645532 -0.094958 0.231123 0.250879 -0.158469 -0.306539 -0.410152 0.436733 0.677924 1.087914 -0.418587 0.086541 0.188516 -0.169180 0.093282 0.232415 -0.133424 0.003071 -0.299116 -0.171740 -1.743282 -0.462633 -1.975812 -0.120787 -1.860140 -0.284513 -0.163514 0.168955 -0.126924 0.305113 0.212903 0.749873 -0.174756 0.114044 0.679204 1.121389 -0.564824 -0.137528 -0.428813 -0.562565 0.422532 -0.276407 -0.074938 0.203812 -0.431379 -0.559177 -1.054573 0.134343 0.352880 -0.204828 -0.819762 0.092304 0.952255 -0.695742 -0.722501 -0.301033 0.431622 -0.252767 -1.230703 0.494904 -0.699007 0.764740 0.288440 -0.373802 -0.812962 0.285537 0.989973 -0.004197 -0.533981 -0.051498 0.597532 -0.175290 0.414083 -0.135003 -0.637581 -0.047748 0.705382 0.734159 -0.744243 -0.009945 0.028504 -0.619781 0.391874 -0.854057 -0.417259 0.481627 -0.741492 -0.364387 0.367924 -0.516928 -0.079501 1.235688 0.100308 0.031314 2.455467 -0.102714 0.775451 0.342180 -0.819608 0.407215 0.057420 -0.159290 0.271898 0.551091 -0.330301 -1.619633 -0.864591 0.005856 0.901393 0.765386 -0.921385 -0.805630 -0.664872 -0.142655 0.241100 0.119750 0.065525 -0.283384 -0.685959 -0.287420 0.212319 1.208704 -0.484569 0.049544 -0.225544 0.458346 -0.567182 -0.936101 -0.305667 -0.830967 0.196888 0.274130 -0.342188 0.449706 0.675618 -1.952008 0.896724 -0.854849 -0.196742 0.135146 0.248963 -0.340772 -1.267505 0.077964 0.314359 1.030603 -0.296049 0.633176 0.796182 -0.758090 -0.055983 -0.075520 -0.104422 0.040618 0.340157 0.328410 -0.637606 -0.525651 0.615407 -0.177473 -0.767183 0.068756 0.867392 0.201004 -1.461906 0.660235 -0.169135 0.126741 0.421790 0.339182 0.738886 -0.798958 -1.158580 0.881684 0.694181 0.675750 -0.431988 0.041235 1.317393 -0.188926 -0.235003 -0.072356 -1.084238 0.052787 -0.091928 0.333533 0.229105 0.123981 0.858970 -0.228012 -0.137844 -0.763698 -0.071378 -0.122393 -0.430058 -0.488089 -0.825562 -0.142879 0.941764 0.467021 0.537768 -0.457388 0.273054 1.223565 -0.579022 0.079433 0.092979 0.759176 -0.045645 -0.052909 0.856185 -0.846654 -0.415019 -0.494550 0.412408 -0.185683 -0.574078 0.894104 -0.074813 0.685929 -0.285944 0.349836 -0.154560 0.467867 0.738089 0.360192 0.204938 0.580720 1.102927 -0.138248 -0.338557 -0.309012 0.226814 -0.723375 -0.258627 -0.136316 0.478342 -0.561835 0.675553 0.074025 1.073011 0.065336 0.597601 0.206209 0.216168 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -4.464540 -4.331910 -4.007465 -7.960719 7.116787 10.054902 4.087753 -6.598716 -10.602639 -0.116249 5.941012 -11.594721 -1.949030 12.347005 -3.908559 11.438872 16.228983 2.492744 -6.687809 -0.187537 12.196914 -1.317896 15.750936 13.837443 -8.316134 -0.686902 -2.019721 3.906000 0.902002 -0.169742 1.825058 -4.056200 7.205062 -13.476495 -5.209575 -6.919168 1.901569 3.690746 10.399676 -15.645543 2.496563 -1.624236 -0.067707 -3.134202 -4.783981 0.661101 6.681086 9.913770 0.003222 3.185805 7.956116 -0.150717 -0.633844 3.249211 1.854025 1.682249 -1.215633 0.522402 -3.752489 -6.146431 -1.027664 -1.798690 1.382976 9.102412 14.021064 1.661388 -0.565237 8.572640 1.126262 2.572360 5.956126 1.454819 -3.611442 0.496049 3.399282 -14.994938 -3.400748 -16.381890 -3.787888 -16.580889 -5.995588 1.629200 7.067453 -0.791744 7.505792 2.376644 9.484381 -0.957702 -3.984169 11.852362 13.227101 -10.470695 -5.427993 -5.727079 -4.675829 3.336451 -5.456761 3.120556 7.821303 2.011030 -9.432224 -5.365231 3.607092 5.452746 -3.268369 -11.012374 3.151305 8.392984 -6.720518 -8.840239 1.493626 8.909756 -3.283120 -17.624660 -3.621280 -6.065817 6.216449 1.273027 -3.877961 -10.633551 1.431250 5.298375 -1.846821 -6.710946 2.249612 6.163285 4.932790 6.078987 1.392298 2.768092 3.208947 18.462862 2.619889 -6.064174 1.867324 -1.970183 -2.154086 7.067012 -5.949298 -5.704709 0.003029 -11.568476 4.725062 9.373177 -5.843817 -3.407395 6.410489 5.662411 1.338762 34.786736 1.586951 13.707242 9.832298 -10.832793 4.139554 -7.123052 0.683275 2.894520 3.685037 -2.061695 -17.799132 -10.274295 6.284190 10.830332 8.039472 -13.887778 -3.643350 -1.125532 0.054251 -1.064021 -0.775930 3.958872 1.151957 -6.837248 -1.817900 11.233245 22.449843 -5.828306 0.887536 6.765322 4.136403 -3.588424 -15.699752 -5.868458 -7.425970 1.867776 5.338132 2.025518 4.746492 12.553398 -13.366997 8.696007 -1.997956 1.885389 8.623553 5.769016 -11.476293 -12.467466 -3.264883 6.274906 12.122113 -3.434899 0.543344 4.739076 -8.982577 -0.906230 3.506122 -1.969424 -0.495514 4.151030 0.258565 -4.228734 -6.261020 5.754905 -3.156577 -2.184478 0.472458 8.799131 0.776703 -12.075142 9.605971 0.149445 -5.279650 2.409804 -3.610317 12.757216 -8.201806 -10.790732 8.867433 -1.248560 -1.748810 -4.821262 2.372966 7.030043 4.816025 4.945855 -5.333032 -10.684493 6.906843 -3.067868 8.247517 4.036528 -0.717391 6.034586 -6.628955 -4.985316 -11.189100 -8.963492 -1.441084 0.978325 -10.854804 -3.872156 -1.906003 11.213553 5.710307 2.092155 -10.942171 0.956771 11.924945 -10.640089 -2.746403 6.880671 7.214942 -11.690757 1.588237 9.052597 -12.655548 1.721406 -3.409430 -0.971008 -4.760791 -9.677429 6.004009 3.122289 7.163020 -1.963527 2.371897 3.014069 4.643393 4.472306 5.168645 1.967074 13.791664 9.256986 -2.699289 -5.872573 -10.582229 4.425718 -12.360769 -13.617911 7.036558 4.143483 -7.743219 1.859648 3.455892 11.663148 1.719158 -3.387047 -3.319807 1.774602 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = -1.754781 0.049715 3.436666 -4.901648 2.947116 0.785586 1.164029 -0.362073 -3.999662 -2.358566 -0.233350 -3.232727 -2.712769 5.579818 -2.039432 0.742299 7.706406 2.479099 -1.366049 -2.012994 4.430860 -2.940307 5.894798 6.148133 -5.497708 -0.444744 2.493225 4.034210 2.299970 3.774800 -1.017807 -2.949321 0.939522 -1.567023 2.565174 -5.004796 0.928580 0.783296 -0.527375 -8.404117 1.014062 0.061513 0.244663 -0.958072 -0.475359 3.539216 5.118345 4.194692 -2.784478 0.292885 4.209395 1.842877 -0.712004 1.057167 0.835915 0.750267 2.820496 1.625441 -1.942450 -0.332379 -0.751547 -3.648813 1.535984 5.030472 6.250777 0.417622 0.511812 0.721194 0.953903 1.419178 1.572758 0.686724 0.882646 0.604699 2.775812 -5.791250 0.029475 -11.716906 -0.207627 -13.339310 -3.002476 -2.740624 3.724450 -1.161359 0.593716 -0.374478 5.287226 0.081519 1.213880 4.094097 6.299900 -3.029545 -1.957679 -4.349984 -3.899368 2.649398 -2.598143 -0.373852 2.527770 0.781945 -3.682167 -3.369069 1.870568 0.889103 -1.908777 -1.136006 -0.050863 4.874953 -4.905945 -1.860930 -3.549280 1.779009 0.179338 -7.469877 0.399182 -4.258246 4.515835 0.048691 -1.324720 -3.180179 0.712750 3.705396 -2.105877 -0.739994 -3.320105 5.290296 1.690677 0.051351 0.239922 -0.592602 0.456024 3.503403 4.198131 -3.314043 -0.891332 1.302361 -4.027303 -1.042929 -5.162339 -1.456957 4.592353 -3.884951 0.037001 2.236982 -3.180568 -2.060148 4.265436 -1.174907 3.463650 15.102872 -0.767534 3.679823 1.826923 -4.897696 3.175597 0.843762 -0.705849 1.882900 3.769126 1.302597 -6.321525 -4.283320 1.641141 4.991034 3.796679 -4.853006 -2.731348 -2.125917 -1.111114 0.310580 0.060720 0.916362 -2.135070 -3.130056 -1.535849 2.488632 7.417328 -1.285470 -5.050153 0.964457 2.749958 -2.660058 -5.410883 -0.969362 -2.232636 0.921026 0.058956 -1.013637 3.849194 6.401159 -13.285272 4.912255 -0.520394 -0.764305 3.451676 -0.348008 -2.231091 -8.107256 0.880522 4.404689 6.093239 -0.150493 -0.168509 1.274672 -4.634398 -0.390641 0.342258 2.668022 -2.109755 2.087622 0.742841 -3.634192 -3.426650 -1.466259 -1.258990 -1.204959 -0.992024 2.067161 -0.180884 -10.114775 5.981770 -1.540201 -0.839077 1.100616 -1.129157 2.589675 -5.467343 -5.850513 1.877643 0.712156 -2.033632 -3.774928 0.152969 4.508363 -1.015461 0.909931 -2.653121 -6.778696 2.996520 -2.569888 3.491866 1.970313 1.011679 5.717587 1.643723 -0.775487 -5.217046 -0.943941 0.813325 -1.070354 -3.205623 -1.177603 -1.151506 3.824869 5.681281 -0.887209 -0.854434 0.005933 6.005462 -4.238736 -2.565084 3.199159 1.169080 -2.600470 2.406965 4.108026 -5.838451 -2.860206 -3.598761 -1.047700 0.185596 -4.039329 2.527758 -2.152235 1.707740 1.611705 0.533731 -1.774363 2.556670 1.465289 0.264741 0.298362 6.087972 8.046276 -3.303493 0.705122 -4.260048 2.335829 -7.024046 -4.589262 0.261233 -0.368938 -1.504889 1.492958 0.126430 4.059199 -0.158404 1.080251 -0.523565 -0.015996 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -2.093197 1.145842 1.953784 -4.243404 3.655080 2.831839 1.261373 -1.623076 -2.886958 -2.058014 -0.370377 -3.709423 -2.995908 5.742668 -1.977595 2.203265 7.410590 1.368507 -1.248710 -0.946455 5.040022 -1.891986 6.363075 5.448205 -5.229886 -0.689059 3.516433 2.790755 1.044943 3.386982 -1.319750 -4.316252 1.817308 -2.910711 1.511146 -3.864584 1.069619 -0.027846 1.229129 -7.377603 0.808051 -0.511620 -0.650546 -1.370690 -1.540524 0.801623 5.916858 4.429632 -2.501971 -0.526847 3.830708 2.151229 -1.334982 1.325950 0.898696 0.948714 1.449900 1.279248 -1.999060 -1.440464 -0.921294 -2.479859 0.901052 5.199230 6.065508 0.717156 0.684434 2.510114 -0.277606 1.195019 0.514132 0.855936 0.922174 1.571382 2.749832 -6.172510 -0.912607 -10.786554 -1.268877 -11.224106 -2.922080 -2.782857 1.105290 -1.147403 2.418077 0.146193 5.378234 0.171541 1.187477 3.997749 7.464112 -4.443072 -1.956388 -4.826023 -3.588983 2.011738 -2.885751 0.367408 2.177597 -0.737053 -4.081159 -4.713037 1.397427 1.861587 -1.781325 -3.250603 0.157231 4.488391 -4.182018 -2.912501 -3.407863 0.719740 -1.274648 -8.273136 -0.770776 -2.989170 3.693356 0.223770 -1.128549 -5.605298 0.827224 4.744456 -1.732185 -3.098957 -0.428906 4.455571 2.733019 0.460682 0.783178 -0.698668 1.314941 5.966112 4.745121 -2.646028 -0.837085 0.049609 -3.490879 -0.771746 -4.231353 -1.491977 2.942374 -4.440945 0.390075 4.570035 -3.048607 -1.587646 4.578329 -1.860730 3.619429 15.763014 -1.050840 3.632479 1.704742 -6.293991 2.603504 -0.795333 -1.808334 0.873755 3.311150 2.168657 -6.811559 -4.400627 2.809668 5.065924 3.818599 -4.787712 -2.559619 -2.210985 -0.682750 -0.709640 -0.424314 1.552604 -1.667223 -3.538586 -1.531977 3.831695 8.211608 -2.800703 -4.545476 2.538142 3.287694 -1.793865 -5.450271 -1.766608 -3.833984 0.630022 1.128931 -1.023944 3.501331 6.679982 -11.256598 4.518580 -0.546937 -1.456421 3.335506 0.352873 -2.816649 -6.159812 1.499092 5.655550 5.014740 -0.402545 1.020638 -0.004078 -4.576064 -0.381702 0.585826 2.474635 -1.719418 2.067042 0.312725 -4.472498 -4.359901 -0.177888 -1.352804 -2.588770 -0.711383 2.113627 0.481230 -9.485941 7.182458 -0.845708 -0.779647 1.473367 -1.709480 3.890377 -5.511358 -6.720099 2.901093 -0.105511 -0.626599 -1.847115 0.559354 4.255269 0.552995 1.353144 -2.742122 -6.851937 2.406005 -1.000606 3.600675 1.801477 2.354606 5.264288 -0.725628 -1.509871 -5.544790 -2.054330 0.945342 -0.021075 -4.363114 -2.982477 -0.989938 4.905942 5.653136 -1.068796 -1.832609 -0.867294 4.918815 -5.467343 -1.456148 3.627205 2.664224 -4.385386 0.342299 4.328018 -4.685587 -3.001547 -2.987073 0.029900 -1.165913 -5.411969 1.120735 -2.189792 1.335945 2.305452 -0.180943 -1.266297 2.257676 1.850921 1.192758 0.104849 4.914848 6.395092 -3.829431 -0.651873 -4.634252 2.005182 -7.647906 -6.194289 2.060854 -0.417099 -1.525720 0.617993 0.516628 3.882370 -0.938650 1.469277 -0.152415 -1.307626 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -0.672999 -0.867245 -0.391921 -1.571823 1.131703 0.701634 0.659203 -0.755831 -2.112349 -0.203798 0.739506 -2.095207 -0.281310 2.103365 -0.475585 1.688304 2.785168 0.569558 -0.981815 -0.256171 1.912326 -0.873743 2.520350 2.292648 -1.343301 -0.071450 -0.495496 0.916786 0.212555 0.298407 0.195362 -0.646367 0.776818 -2.012064 -0.386643 -1.275530 0.284755 0.818957 1.475300 -2.833517 0.516117 0.182008 0.821589 -0.505887 -0.641512 0.633071 1.120136 1.583812 -0.265013 0.673809 1.412288 -0.144087 -0.031424 0.517052 0.393191 0.322766 0.210289 0.196213 -0.947662 -0.674579 -0.158768 -0.667004 0.510212 1.450975 2.183813 0.232832 -0.099082 1.076770 0.401400 0.508522 1.150575 0.184034 -0.601081 -0.290420 0.694083 -2.363578 -0.175056 -3.272232 -0.354371 -3.876712 -1.104555 0.197044 1.750078 0.120117 0.837642 0.181900 1.626562 -0.222798 -0.511769 1.791513 1.904094 -1.430783 -0.961074 -1.084140 -1.022152 0.646778 -0.786528 0.025523 1.625693 0.656767 -1.511056 -0.479595 0.894245 0.691405 -0.556037 -1.266322 0.498806 1.466641 -1.335420 -1.334546 0.030410 1.567874 -0.240358 -2.734510 0.061178 -1.302483 0.613567 0.160344 -0.723543 -1.325183 0.243577 0.554172 -0.633024 -0.533899 -0.793759 1.352973 0.603299 0.725547 0.249969 0.403661 0.314422 2.573267 0.334842 -1.245369 0.247349 0.116471 -0.541730 0.839350 -1.232105 -1.166718 0.631665 -1.965446 0.678384 0.827266 -1.069753 -0.525572 1.098860 0.904189 0.386078 5.246167 0.210838 2.405169 1.518411 -1.549841 1.173276 -0.628291 0.273557 0.578706 0.920275 -0.388686 -2.350725 -1.688080 0.873318 1.759673 1.411616 -2.030508 -0.915328 -0.264112 -0.102168 0.273284 -0.103230 0.516736 -0.021457 -1.128676 -0.320994 1.340427 3.767874 -0.537870 0.186633 0.940145 0.718252 -0.933988 -2.691547 -0.793728 -1.373487 0.304087 0.013429 0.209098 0.958345 2.206773 -3.117062 1.617771 -0.372595 0.344196 1.463839 0.604857 -1.870832 -3.173751 -0.697615 0.967192 2.328323 -0.567382 -0.022951 0.836184 -1.462125 -0.137477 0.341714 -0.098697 -0.329762 0.674157 -0.206849 -0.725229 -0.696116 0.535917 -0.672723 -0.199533 0.034916 1.138509 0.502564 -2.172352 1.486804 -0.153394 -0.747511 0.334622 -0.310338 1.513317 -1.366115 -1.522346 0.998416 -0.119418 -0.658177 -1.115969 0.301800 1.046086 0.142451 0.405845 -0.702424 -1.859171 1.415898 -1.011875 1.407170 0.718277 -0.398411 0.960801 -0.016856 -0.734082 -1.682087 -1.007713 -0.648676 -0.302256 -1.547226 -0.114681 -0.369965 1.627885 1.105401 0.417802 -1.458431 0.356457 2.092476 -1.268289 -0.738363 1.309553 0.197456 -1.763814 0.663300 1.597878 -2.289627 0.168086 -0.893012 -0.164225 -0.415136 -1.212062 1.060638 0.392391 0.976023 -0.329928 0.300611 0.273592 0.827798 0.680223 0.449203 0.192288 2.712995 1.600669 -0.437805 -0.541174 -1.720629 0.639400 -2.007663 -2.048300 0.645320 0.932177 -1.520981 0.373956 0.573393 1.931617 0.208047 -0.368331 -0.573902 0.314993 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = -8.435754 -0.718229 10.307546 -20.263420 24.207081 13.029058 8.755599 -3.711659 -17.615168 -6.962409 0.921086 -15.525024 -16.895330 25.854126 -8.442665 15.657395 27.224952 1.398125 -7.776968 -4.835157 27.057097 -10.001616 29.986861 15.995956 -26.929488 -1.496887 1.626883 17.962490 3.785106 22.222277 -5.677512 -12.339738 6.893985 -11.718701 7.340735 -14.300980 8.473631 3.315415 0.567603 -30.893565 2.198028 9.218087 -1.950922 -3.037675 -6.128980 10.562284 19.556338 22.268780 -11.445698 2.448071 19.411106 1.428744 -1.432941 8.714859 0.347357 2.728569 8.217766 0.018676 -16.011638 -8.736150 -4.065888 -19.297535 6.942337 19.296808 29.191356 -3.402803 3.513463 16.024876 -3.725559 7.280570 9.061447 4.725206 1.308185 -2.756855 19.255149 -16.236369 -4.717534 -31.444390 -5.362062 -45.772688 -15.360934 -14.784841 12.060389 4.675371 11.947253 -7.015636 28.390439 0.515454 -0.748374 18.872469 25.842037 -20.337980 -8.091733 -27.481414 -13.545986 5.510768 -15.854214 -7.367036 12.337710 2.243812 -17.547255 -10.428774 5.417442 5.463605 -6.881180 -13.725947 -7.043730 22.744864 -22.684640 -15.065407 -14.930588 13.234006 -5.746868 -35.197754 -1.816062 -10.266356 11.456643 -2.078540 6.989716 -12.290339 3.892986 19.703631 -8.771176 -10.825679 -10.876482 25.369843 13.194815 0.706654 7.942242 3.170192 0.109610 21.980028 21.890046 -8.871230 -13.052607 3.998041 -9.714712 4.748514 -14.055511 -3.240360 11.185744 -22.692074 -1.161355 14.633673 -7.817752 -2.563054 4.101536 -2.319726 16.588931 57.144150 -1.299354 16.927411 5.663068 -23.235031 18.153827 -0.705408 -3.703513 9.793347 11.013514 -1.149739 -26.657221 -21.782960 13.876794 17.792937 15.389751 -24.042500 -5.715347 -8.848175 1.161471 -3.362405 -5.220348 14.714393 -3.126718 -15.221160 -4.984014 6.374214 41.037407 -11.884737 -19.677806 20.984660 9.152750 -15.895647 -25.296222 -12.464192 -9.761369 -4.933270 3.169997 -3.352218 12.317755 29.823527 -38.679175 20.206231 -1.262781 -6.876004 18.996076 -7.475548 -7.868874 -27.734086 -3.889609 18.682554 24.504237 -3.458393 -1.141231 1.186026 -19.642337 6.738870 1.514930 6.378113 -1.476175 7.857661 -4.257488 -14.313882 -17.699145 -8.965524 -9.364642 -0.435210 -3.556508 6.807579 3.207236 -37.565606 25.244124 -9.367671 -6.193718 9.256298 2.381228 19.793586 -16.496793 -26.538010 14.996478 -0.187810 -13.133825 -19.087527 6.733326 16.166372 2.245579 -0.763585 -11.710656 -32.646849 14.995065 -8.529800 12.750859 7.302494 7.757093 22.319183 11.626023 -13.463262 -23.033694 -14.929536 1.857588 -3.518766 -15.070707 -4.409608 -2.832329 21.643114 17.983492 1.506605 -3.959784 -6.731212 28.433469 -19.915130 -12.369104 21.614396 3.045352 -18.192472 8.807978 24.974777 -19.261679 -14.114964 -15.277578 2.514206 -5.888189 -18.898247 7.872065 -6.375314 6.811331 7.750175 5.106823 -8.304917 8.086415 6.982510 -0.289314 -11.550785 37.919937 29.320612 -17.989935 -0.324410 -17.089708 11.064546 -27.905834 -20.022234 6.126696 -0.296455 -5.037318 10.204575 8.704618 20.295489 -0.410343 -1.580038 -1.653823 -11.388421 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -6.345481 -4.490787 -1.369782 -15.192497 13.199476 17.082320 5.834031 -9.411936 -16.528413 -2.109091 6.066132 -19.970297 -4.133961 19.327423 -6.122213 16.604800 26.419347 2.070852 -9.731028 0.480684 18.648428 -0.800185 24.912426 21.272766 -14.432714 -0.917473 -2.533331 8.901135 1.292884 8.418162 0.495677 -12.134185 8.411274 -17.520100 -5.867868 -11.150862 2.300576 4.376222 13.884922 -26.175647 4.248735 3.013291 -1.146687 -4.756380 -5.443892 -1.994060 14.700573 14.803302 -1.732521 3.797173 12.635022 3.273033 -2.126785 4.834046 3.606315 3.440743 4.059361 -0.268243 -7.461085 -9.764372 -2.506116 -3.004588 2.315931 14.859619 20.896998 2.487319 -0.349514 11.071034 1.108015 3.752581 8.568625 3.048624 -4.767747 1.506209 7.023581 -18.883473 -1.453945 -23.652972 -3.899109 -24.524119 -9.710168 0.056174 10.153590 4.648888 11.133450 -3.177155 16.053567 -4.223216 -4.331928 16.485093 19.384282 -15.821681 -7.149850 -11.892663 -9.171644 3.703165 -8.370804 0.779508 8.635675 2.305205 -14.257415 -6.951769 6.907973 8.027724 -5.453365 -13.056565 3.405807 13.520376 -13.557326 -12.791819 0.267808 15.448446 -4.979253 -27.529308 -10.095332 -11.967614 4.287192 0.194837 -5.210829 -16.427068 2.912355 9.498100 -4.805031 -9.735985 -0.734895 14.198931 10.313584 6.757783 2.255357 2.749067 4.214165 28.193048 5.657700 -8.821682 1.485384 -1.588644 -2.821506 7.335409 -9.771889 -6.728772 -1.461384 -17.503800 3.980356 16.088787 -8.742111 -2.324595 5.296840 6.306398 4.488092 63.020290 -0.097901 21.325097 14.337309 -17.759680 7.951173 -7.104300 -0.181595 3.869282 5.348893 0.408856 -30.628085 -15.070138 11.019794 16.075497 12.420099 -20.898159 -2.120316 -2.230504 -0.583994 -1.187147 -1.368694 5.307351 1.620558 -13.164513 -3.577678 15.270510 39.593588 -7.697092 -6.002837 11.872446 5.770120 -8.764926 -23.180800 -8.610896 -11.515225 2.387699 8.099350 0.493956 9.075499 21.060754 -24.145001 14.100033 -1.525018 -1.232169 16.482402 5.815324 -15.965121 -19.436648 -5.808205 11.734763 20.883877 -5.341210 1.729192 4.754534 -14.159028 -0.490716 4.426745 -0.498112 -3.089913 6.334690 1.660550 -10.769396 -9.121830 1.585098 -5.770171 -3.175097 -4.296757 10.065791 1.570755 -20.430542 16.675969 1.489603 -6.246192 4.529080 -4.992338 18.785996 -13.076582 -16.571034 12.025434 -1.980744 -6.056618 -6.854331 3.499991 9.706979 7.860089 8.779413 -10.698404 -20.595948 11.015648 -5.724540 13.588544 6.768919 0.399063 8.730236 -2.582562 -5.676817 -18.169508 -16.051960 2.564323 2.245073 -16.850703 -6.499418 -4.105993 16.856212 10.759605 1.043229 -15.280776 -3.626684 19.372571 -15.442529 -2.821833 12.149834 5.919323 -20.547272 0.472076 14.835915 -18.329025 -0.035141 -6.757143 -1.956664 -7.499707 -13.865955 8.513819 3.074616 9.593675 0.209718 2.647443 -0.177289 5.670397 5.834534 3.623100 1.930185 24.409070 15.521761 -4.826591 -5.745002 -16.452274 7.451046 -20.268295 -22.018148 9.539292 1.590465 -11.909078 1.787578 4.529568 19.078761 2.631643 -1.148162 -2.401768 0.616186 +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.161346 0.210252 0.570000 -0.561865 0.634113 0.103252 0.245248 0.186104 -0.621662 -0.659231 -0.059878 -0.538557 -0.738250 0.914812 -0.342671 -0.052375 1.374527 0.431508 -0.026031 -0.432777 0.483983 -0.477981 1.116066 1.072855 -0.965821 0.035886 0.442346 0.452938 0.171828 0.735560 -0.173165 -0.919855 0.391089 -0.155222 0.405127 -0.721537 0.042982 -0.128037 -0.333047 -1.465799 0.071721 0.060064 -0.315818 -0.085072 -0.011768 0.849637 1.089035 0.638810 -0.382982 0.386405 0.601494 0.331594 -0.122920 0.192355 0.194597 0.099372 0.260596 0.066075 -0.531864 0.130254 -0.214780 -0.888600 -0.099792 0.789225 0.969561 -0.038387 0.034895 0.027107 -0.176708 0.243278 0.215609 0.155697 0.524971 0.175632 0.580630 -0.699358 -0.345783 -1.808414 -0.227485 -2.750109 -0.636047 -0.683760 0.865851 -0.197461 0.017198 -0.054132 0.949069 0.039119 0.329921 0.750325 1.223411 -0.584760 -0.441290 -0.650674 -0.375036 0.387357 -0.502748 -0.039367 0.358865 -0.051780 -0.703350 -0.632839 0.404556 0.018451 -0.300364 -0.275758 -0.120973 0.878217 -1.208103 -0.192902 -1.076762 0.126963 0.196824 -1.235151 -0.034872 -0.228895 1.073353 0.333689 -0.309774 -0.430262 0.292177 0.663905 -0.364971 -0.162825 -0.205054 0.891639 0.177668 0.098812 0.197035 0.106414 0.234786 0.700154 1.035312 -0.381855 -0.174461 0.222162 -0.525705 -0.150195 -0.634483 -0.214919 0.555617 -0.669191 0.365410 0.304692 -0.605172 -0.547118 0.422044 -0.340411 0.622247 2.014344 -0.244757 0.593694 0.144250 -0.899373 0.292645 -0.147987 -0.190412 0.164695 0.772970 0.371696 -0.569771 -0.595931 0.347185 0.903598 0.593184 -0.953681 -0.224725 -0.366359 -0.006444 0.000313 0.121422 0.251180 -0.117792 -0.506073 -0.226453 0.384524 1.376714 -0.340820 -0.964830 0.089689 0.364252 -0.072831 -0.667913 -0.059571 -0.061775 0.179482 0.342444 -0.182306 0.490948 1.073626 -2.288591 0.834407 -0.275976 -0.211695 0.355734 0.165086 -0.253411 -1.097712 0.161097 0.795738 1.074541 0.348851 0.079809 0.083579 -0.771536 -0.106549 0.076996 0.608589 -0.323230 0.418203 0.178561 -0.790179 -0.663166 -0.419746 -0.051965 -0.089656 -0.195868 0.296632 0.125082 -2.286761 1.032869 -0.256764 -0.271153 0.021951 -0.015375 0.588620 -0.936622 -1.136004 0.318354 -0.193507 -0.778471 -0.461086 -0.158624 0.617368 -0.077212 0.152481 -0.254079 -1.120198 0.771898 -0.078889 0.665741 0.379744 0.248959 1.431892 -0.026127 -0.345475 -0.660888 -0.337223 0.578083 -0.592680 -0.348711 0.119904 -0.261077 0.612756 1.085947 -0.053607 -0.200441 -0.148539 0.977027 -0.917389 -0.331154 0.684998 0.660118 -0.187390 0.680629 0.806352 -0.961941 -0.567900 -0.628430 -0.117443 -0.035796 -0.632715 0.235615 -0.701343 0.194981 0.432081 0.149763 -0.479796 0.371367 0.003048 0.009494 -0.133806 0.918506 1.713986 -0.929200 0.366136 -0.698696 0.509012 -1.173122 -0.917176 -0.013034 0.018375 -0.160444 0.181294 -0.147328 0.468862 -0.033785 -0.088130 -0.281425 0.053169 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/find-two-non-repeating-element.cpp__main = -0.736179 0.228230 1.143164 -2.234330 1.821419 1.084183 0.629338 -0.552161 -1.977990 -1.515477 0.569403 -2.665235 -1.889286 2.719419 -1.262421 0.494340 3.576321 0.349491 -0.810435 -0.719709 1.934319 -0.306153 3.447099 3.164603 -2.827185 -0.211039 0.727145 1.539057 0.853206 1.077403 0.201123 -2.188845 0.873168 -0.777132 0.514880 -1.233403 0.409092 -0.372339 0.184655 -3.592730 0.316203 0.396697 -0.704895 -0.443175 -0.314449 1.586931 2.866606 2.086765 -1.061558 0.324168 2.381712 0.993943 -0.477580 0.449666 0.225767 -0.778107 0.834636 0.168097 -1.179290 -0.644257 -0.313385 -1.240499 -0.219925 2.675378 3.194036 0.287268 0.128458 0.658333 0.206770 0.841522 0.843814 0.526819 0.773501 0.990458 1.491039 -1.833374 -0.426393 -5.022870 -0.386649 -6.080709 -1.651059 -1.007945 2.244080 0.176625 0.200323 -0.534031 2.570019 0.416274 0.151434 2.751668 3.590423 -1.432350 -1.183800 -1.917915 -1.668618 1.195331 -1.561021 0.556063 0.782968 0.602048 -2.134479 -1.248044 0.311749 0.312539 -0.908006 -0.848461 0.067470 2.073114 -2.426741 -0.364160 -1.388248 1.279071 0.668020 -4.350256 -1.036178 -1.368382 2.190954 0.261572 -0.762906 -1.221665 0.360551 1.353995 -0.988143 -0.327575 -1.271472 2.246531 1.310852 0.856503 0.295669 0.433492 1.147271 2.529039 1.414497 -1.322825 -0.250168 -0.189454 -1.063914 0.266686 -1.741001 -0.484068 1.615055 -1.761373 0.969194 1.428192 -1.469579 -1.548817 0.853115 -0.567175 1.207809 7.470320 -0.369523 2.599122 1.237558 -2.561678 0.753550 -0.600665 -0.501525 0.455477 1.375197 0.861300 -2.204413 -1.984452 1.637023 2.668086 1.690908 -2.836088 0.028370 -0.093224 -0.337663 -0.667551 0.250761 0.745820 -0.381570 -1.546424 -0.752049 2.339548 4.033924 -0.659576 -2.147736 0.805812 1.625525 -0.144742 -1.559281 -0.516714 -0.292280 0.689481 1.227129 0.056795 1.747481 3.294302 -5.841404 2.113217 0.503196 -0.054558 1.554066 0.416324 -1.970538 -2.782639 0.447310 2.316017 2.425896 0.277767 0.014002 0.371266 -2.237512 -0.232093 0.585156 0.889398 -0.778784 1.023327 0.448472 -1.541793 -2.096590 -0.906096 -0.686739 0.093647 -0.930638 1.243106 -0.025432 -5.275797 3.212618 -0.429613 -0.874731 -0.646244 -1.130115 1.986566 -2.743217 -2.931877 0.913721 -0.972359 -2.102364 -1.502174 -0.027653 1.373100 0.334645 1.359619 -1.489914 -2.856904 2.059615 -0.672390 2.005870 1.004920 0.679641 2.847310 -0.094916 -0.523152 -2.337956 -1.474929 1.756709 -0.329930 -2.342284 0.557049 -0.565376 1.801745 2.333392 -0.735904 -1.545059 -0.284766 2.340019 -2.096629 -1.258682 1.513456 1.382109 -1.993334 1.277119 1.916042 -2.479259 -0.700651 -1.955515 -0.595961 -0.828359 -2.391014 0.928575 -0.472022 0.969604 0.908658 0.411987 -0.846831 1.052763 0.348291 0.128376 0.304073 2.816629 4.051286 -1.844711 0.356797 -2.838237 1.611054 -3.548761 -3.506628 1.073515 -0.805918 -0.792606 0.170548 -0.379707 2.016484 0.154385 -0.160368 -0.877678 0.910468 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = -1.228208 -0.627867 -0.122307 -2.713053 2.487107 2.533687 1.204546 -1.754437 -3.312485 -0.683538 1.644947 -4.143097 -1.644793 3.980232 -1.458770 2.292361 4.539642 0.398059 -1.975241 -0.535162 3.109568 0.726738 4.981343 4.262172 -3.382958 -0.012391 -0.141613 0.963599 1.075567 0.909440 0.001760 -2.364729 2.120661 -2.461442 -0.859403 -1.361932 0.193744 0.152789 2.162724 -4.448144 0.683495 0.587567 -0.154952 -0.835213 -0.796399 1.422724 3.234822 3.076593 -0.655480 1.165455 2.668495 0.670278 -0.288516 0.806595 0.816475 -0.308676 0.754128 0.193082 -1.474428 -1.803379 -0.550846 -0.941313 -0.403862 3.466966 3.932418 0.514482 -0.320167 1.664983 0.427315 0.939321 1.675355 0.942400 0.557989 0.788310 1.796320 -2.194801 -0.388238 -4.560064 -0.930506 -6.577525 -1.928576 0.003940 3.020736 -0.036635 1.474792 -0.361803 3.711675 -0.092435 -1.061599 3.351729 4.498722 -2.996005 -1.640908 -1.664253 -1.960264 1.030789 -1.979468 1.129424 1.415644 0.445569 -3.264871 -1.672554 0.153182 1.050141 -1.398364 -1.683218 0.590804 2.370741 -3.198546 -1.280468 -0.490208 1.945000 0.086389 -5.515352 -2.352401 -1.740510 2.035644 0.246788 -1.560347 -2.473123 0.656497 1.306554 -1.191533 -1.432948 -0.344365 1.985241 1.784718 1.928711 0.330130 0.592453 1.541411 4.844208 1.060118 -2.110058 0.436872 -0.693239 -0.296174 1.805211 -1.608187 -1.222480 1.026527 -3.056043 1.600446 2.312489 -2.036335 -1.273860 1.110142 0.733361 0.666740 9.036982 -0.125495 4.102433 2.608085 -3.537674 0.214334 -1.750723 -0.086295 0.910274 1.595819 0.580587 -2.731805 -3.102545 2.685243 3.911754 2.476572 -3.764794 0.556627 0.278830 0.034147 -0.800393 0.283348 0.895855 0.368188 -2.509779 -0.924004 3.192833 5.833305 -1.645477 -1.650843 1.744445 1.587830 -0.130668 -1.830086 -1.263101 -1.152408 0.968712 2.028420 0.365476 2.229500 4.513393 -5.459194 3.050971 -0.127007 -0.118025 2.148124 1.439385 -3.345279 -1.938512 -0.461147 2.368704 3.057137 0.002488 -0.183693 1.092056 -3.276681 -0.435192 0.921947 0.093513 -1.010822 1.657694 0.919611 -1.733163 -2.194990 -0.101435 -0.484617 -0.280333 -0.796688 2.438440 -0.194690 -5.645978 3.648233 0.205363 -1.633960 -0.481644 -1.264598 2.870909 -3.213771 -3.657610 1.903243 -1.307096 -2.211572 -1.305573 0.314441 1.683164 1.369522 1.954919 -2.379889 -3.352054 3.249944 -0.796706 3.181488 1.554825 0.204416 2.659837 -1.613909 -1.035371 -2.962586 -2.192515 1.370174 -0.168511 -3.208530 0.224149 -0.952948 3.085212 2.535013 -0.296051 -2.697309 -0.461262 3.036859 -2.971082 -1.034769 2.293580 2.333819 -3.237283 1.474449 2.787227 -3.071610 0.112767 -1.896628 -0.978560 -1.837696 -2.857241 1.953356 0.271642 1.901420 0.395166 0.490349 -0.226672 1.450014 0.602838 0.360695 0.781709 3.880855 3.659774 -1.858820 -0.381842 -3.831193 2.180864 -4.385960 -4.738010 2.282895 -0.381936 -2.314387 -0.132662 -0.378813 3.290581 0.718067 -1.065456 -1.382507 1.365833 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -30.282886 -24.039261 -19.086613 -58.196415 50.285431 64.649249 25.007781 -52.197007 -70.009807 0.863590 40.576771 -76.925353 -16.218240 81.433657 -30.851520 66.717771 90.087798 5.629805 -47.156940 -9.137237 79.377151 20.457214 104.849685 86.580760 -67.334752 -4.465874 2.097546 15.765195 29.498036 4.740559 -1.812032 -34.018284 50.075510 -78.012525 -32.586715 -31.774758 7.854221 10.925708 71.553589 -83.081247 16.611445 -9.857492 -8.438571 -17.978972 -25.509626 18.393196 54.062135 65.535845 -13.365134 25.814273 59.621119 13.464924 -13.166291 17.672859 13.574995 4.956923 7.363154 16.526663 -20.207335 -48.793244 -9.412847 -4.477156 1.566212 71.302362 80.397985 11.713376 -4.515663 52.633010 14.515091 15.720330 39.906191 18.004494 -2.265587 10.977163 35.908207 -70.868161 -10.770376 -100.518177 -25.119573 -117.886139 -31.706604 10.042981 44.209478 -23.794323 47.146963 7.729397 73.036555 -4.098157 -31.034030 72.404444 84.250052 -72.963307 -31.828656 -32.097537 -42.034483 15.630249 -41.298032 28.476948 32.457051 6.282484 -65.597553 -43.427992 0.888965 34.105454 -28.487271 -56.121600 16.934699 45.378613 -56.721510 -41.352231 6.767068 44.676160 -15.969796 -112.868593 -53.810984 -45.247194 53.012033 -3.183503 -29.637628 -67.833415 8.120182 35.317451 -19.966055 -46.137400 26.051448 26.814713 47.473773 45.453430 2.939954 5.448803 27.436553 120.337211 22.087180 -45.730967 11.119861 -17.945008 -5.720284 44.339092 -35.663777 -27.588065 20.995974 -67.815716 35.035272 62.202934 -39.155667 -21.677808 60.946365 23.872968 8.786333 203.425034 4.742457 87.698846 63.291425 -74.344177 -7.955841 -44.253049 5.816804 26.455436 28.127993 2.368311 -78.759714 -67.640876 54.205957 76.695452 51.369823 -85.492026 -0.885524 3.978405 0.805703 -13.971794 -5.683595 17.520730 5.793019 -52.439419 -17.806501 69.974791 125.049878 -43.205665 -14.728219 42.243773 33.734598 -15.675584 -49.401382 -35.739997 -40.035018 21.956786 47.771613 11.493235 45.964599 92.153783 -97.291947 56.455852 -11.693680 1.262286 38.482880 42.577774 -76.430426 -29.380375 -12.265413 42.069354 56.863889 -9.046004 3.109204 32.401136 -67.069244 -7.589677 20.649624 -6.634266 -17.667543 31.470252 25.506539 -33.700298 -42.439349 24.770873 -8.889672 -13.449913 -3.047247 54.750304 -18.527354 -105.970889 69.112371 5.641035 -35.325688 3.598113 -28.695112 71.096275 -64.305926 -72.091419 51.599582 -15.376514 -21.048010 -22.076747 14.539221 40.552251 36.642241 47.533915 -55.494152 -72.434118 53.957656 -19.232315 63.080273 29.661039 0.488435 46.570723 -72.120917 -17.482229 -75.368814 -43.212282 15.111116 13.465724 -74.697467 -14.656439 -14.772691 71.720013 45.579892 -3.474495 -61.446483 -1.402490 62.039371 -75.026282 -12.719419 44.057228 76.646562 -79.984702 19.603838 53.756310 -64.836209 9.003099 -25.131565 -19.314447 -38.897238 -59.346575 47.743760 17.989306 48.668271 -1.740068 17.525605 11.498716 32.429064 18.263298 20.766864 20.481997 75.117501 74.324853 -31.642485 -32.537390 -79.140724 42.015810 -88.407682 -103.608357 56.484625 -4.324176 -53.565727 -0.561793 -4.588405 80.142608 17.608227 -20.548248 -21.516903 21.393684 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = -0.892615 -0.675482 0.346652 -2.353584 1.631682 1.505226 0.795674 -0.906923 -2.588875 -0.880434 1.010376 -2.953451 -1.042682 2.972093 -1.083098 1.665472 3.768633 0.510088 -1.305464 -0.356785 2.413873 -0.353695 3.569601 3.275040 -2.511627 -0.185261 -0.113455 1.638386 0.767532 0.957738 0.325673 -1.697101 1.050495 -1.848081 -0.274647 -1.577434 0.459328 0.481064 1.215077 -3.897469 0.560115 0.713117 0.137838 -0.664988 -0.566295 0.483779 2.134087 2.322662 -0.662146 0.712598 2.188816 0.470302 -0.270463 0.569312 0.416013 -0.155236 0.603630 -0.105667 -1.256942 -0.985777 -0.209355 -1.178207 0.197818 2.492968 3.234641 0.283368 0.025364 1.064500 0.345377 0.745618 1.387454 0.425716 -0.280943 0.380478 1.299488 -2.450260 -0.176181 -4.190108 -0.390921 -5.092909 -1.623292 -0.213003 2.460038 0.718297 0.912160 -0.265734 2.508934 -0.251354 -0.471338 2.592733 3.117655 -1.874724 -1.289811 -1.767250 -1.582087 1.151267 -1.556110 0.251804 1.054851 0.718226 -2.191149 -0.908617 0.672616 0.894702 -0.935075 -1.200366 0.365800 2.127105 -2.414726 -1.397195 -0.454084 1.919362 0.029982 -4.154027 -1.064572 -1.708379 1.329738 0.228412 -0.884793 -1.677627 0.353491 1.108026 -0.776709 -0.771950 -1.200926 2.021674 1.132850 1.100693 0.319272 0.475238 0.867695 3.233270 0.919873 -1.520848 0.107652 -0.052660 -0.777904 0.953102 -1.674910 -1.056612 0.747915 -2.372682 0.684258 1.674309 -1.520677 -1.061801 0.678335 0.623714 0.877925 8.125898 0.114001 3.071491 1.996460 -2.454731 1.088195 -0.772821 -0.035377 0.702560 1.089136 0.179192 -3.099547 -2.222929 1.516642 2.689602 1.918836 -2.714655 -0.391570 -0.148241 -0.119846 -0.190792 0.090261 0.787146 -0.031184 -1.881108 -0.621032 2.275176 4.651368 -0.783431 -1.299240 1.225703 1.170098 -0.958717 -2.636398 -0.820390 -1.071552 0.598264 0.884030 0.099724 1.568594 3.288053 -4.670889 2.304737 0.182805 0.138305 2.066744 0.567695 -2.413346 -3.120517 -0.365153 1.764357 2.878349 -0.389622 0.052694 0.927015 -2.301811 -0.217292 0.635823 0.183243 -0.603834 1.073796 0.229787 -1.272254 -1.666814 -0.118105 -0.809962 -0.191018 -0.644038 1.568950 0.253602 -3.782686 2.642918 -0.195814 -1.115170 0.036309 -0.922923 2.225505 -2.544069 -2.635378 1.360620 -0.552525 -1.672733 -1.483768 0.230703 1.434172 0.719981 0.874936 -1.404610 -2.739696 2.035179 -1.065899 2.072418 1.064723 -0.044888 1.892689 0.084289 -0.633276 -2.358788 -1.579015 0.466042 -0.294069 -2.361546 -0.389213 -0.606248 2.245289 1.959224 -0.172778 -1.882896 -0.119672 2.754990 -2.009959 -1.116919 1.669363 0.732907 -2.376788 0.932333 2.116866 -2.950217 -0.017033 -1.573367 -0.447036 -0.817492 -2.111882 1.395262 0.170990 1.438975 0.250755 0.425943 -0.334591 1.016179 0.717690 0.274179 0.348098 3.463334 2.889931 -1.089875 -0.216429 -2.780869 1.258243 -3.304055 -3.248566 1.200160 0.114650 -1.606903 0.355672 0.265476 2.504431 0.522913 -0.313033 -0.751667 0.726791 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = -0.648629 -0.603456 0.349440 -1.721952 1.321662 0.975217 0.672050 -0.711657 -2.004767 -0.311567 0.632257 -1.740437 -0.431759 2.228644 -0.649295 1.508185 2.769290 0.696276 -0.914480 -0.373895 1.744512 -0.439090 2.503822 2.362567 -1.713017 0.016421 -0.009452 0.807301 0.474781 1.019768 -0.427598 -1.107505 0.947312 -1.580120 -0.171026 -1.421990 0.146342 0.560802 1.223801 -2.843592 0.535911 0.212371 0.242356 -0.503844 -0.386828 0.516893 1.466189 1.631947 -0.376246 0.781020 1.387569 0.247117 -0.144885 0.495047 0.662264 0.636943 0.684453 0.172325 -0.881337 -0.595243 -0.303163 -0.719840 0.302132 1.670522 2.148684 0.106778 -0.084280 0.770118 0.360991 0.403308 1.097656 0.283764 -0.175030 -0.071706 0.804695 -2.111154 -0.059719 -3.111180 -0.413706 -3.765745 -1.184332 -0.100663 1.579027 -0.129439 0.961226 -0.158751 1.866511 -0.364694 -0.355588 1.243903 2.126368 -1.743522 -0.921077 -1.068117 -0.998617 0.570857 -0.970792 -0.021289 1.022397 0.039740 -1.615378 -0.986124 0.853891 0.765379 -0.696806 -0.908258 0.379251 1.669009 -1.685377 -1.358671 -0.429635 1.240564 -0.347918 -2.682027 -0.204743 -1.243683 1.031404 0.170348 -0.835743 -1.613403 0.399176 1.032615 -0.771488 -0.871851 -0.508833 1.481533 0.808772 0.721152 0.188346 0.052834 0.381208 2.515194 0.917161 -1.315159 0.197933 0.104487 -0.621753 0.685924 -1.303131 -0.939865 0.574842 -1.782067 0.293469 1.112655 -1.199721 -0.192858 1.324199 0.673898 0.532398 5.297253 -0.088960 2.090042 1.292654 -1.831543 0.829905 -0.462948 0.115754 0.583847 1.071838 0.023162 -2.397171 -1.703318 0.974270 1.951575 1.478665 -2.066688 -0.712872 -0.461130 -0.091438 0.141601 -0.015982 0.410154 0.026568 -1.442299 -0.459283 1.104867 3.502223 -0.850766 -0.991191 0.795314 0.646874 -0.807971 -1.962760 -0.774026 -1.246351 0.459395 0.328738 0.004262 1.206786 2.409788 -3.534690 1.794822 -0.594842 -0.319204 1.559084 0.545541 -1.526550 -2.112666 -0.469721 1.106120 2.237024 -0.199867 0.198386 0.858981 -1.708698 -0.208426 0.163161 0.184573 -0.558492 0.763222 0.404059 -1.170904 -0.872144 0.078534 -0.364906 -0.559163 -0.218007 1.171336 0.322566 -3.053173 1.713092 0.028715 -0.709078 0.569750 -0.310771 1.546118 -1.689207 -1.852762 1.081454 -0.027709 -0.608074 -0.882034 0.187205 1.261558 0.154166 0.597669 -1.020850 -2.071282 1.304447 -0.700740 1.594166 0.818419 -0.186428 1.361722 -0.187634 -0.522923 -1.616473 -0.956103 0.037074 -0.279824 -1.412827 -0.393308 -0.562789 1.783709 1.489784 0.226719 -1.033265 -0.180587 2.037394 -1.805411 -0.347993 1.398731 0.889130 -1.498688 0.561957 1.690258 -2.091627 -0.177992 -0.836463 -0.423491 -0.508427 -1.228239 1.224859 0.051277 1.058801 -0.051019 0.366161 -0.135964 0.793129 0.478767 0.172308 0.225638 2.376708 2.145944 -0.816536 -0.278775 -1.716206 0.913090 -2.234315 -2.036463 0.683536 0.215601 -1.559032 0.328611 0.223982 1.887929 0.241136 -0.091693 -0.430037 0.211513 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = -1.090419 -0.742931 0.217837 -2.744670 2.079911 2.175877 1.064305 -1.364625 -2.927127 -0.914524 1.270062 -3.353254 -1.266511 3.518658 -1.167652 2.320504 4.227093 0.479014 -1.592892 -0.518784 2.936954 -0.256465 4.503317 3.730360 -2.927125 -0.103863 0.015086 1.487634 0.863242 1.067270 0.140638 -1.842645 1.588875 -2.508629 -0.437130 -1.574798 0.378208 0.454836 1.814014 -4.317442 0.666491 0.557494 -0.032075 -0.799471 -0.774935 0.502754 2.737582 2.751857 -0.507185 0.936984 2.454890 0.405075 -0.254519 0.761411 0.817207 0.141392 0.686812 -0.331574 -1.368832 -1.299326 -0.361203 -1.222235 0.156140 2.899954 3.582660 0.191910 -0.096865 1.595775 0.327051 0.835526 1.601794 0.614090 -0.227127 0.403135 1.502985 -3.304824 -0.256749 -4.772847 -0.744948 -5.826787 -1.997556 -0.166937 2.563904 0.524605 1.492897 -0.243882 3.038029 -0.275931 -0.730655 2.602174 3.837642 -2.595385 -1.471259 -1.853643 -1.423333 1.017761 -1.796331 0.374809 1.375642 0.409500 -2.692255 -1.142081 0.993351 1.182929 -1.192262 -1.799369 0.487072 2.551794 -2.701508 -1.829613 -0.520253 2.101603 -0.302309 -5.075877 -0.984780 -1.769997 1.809157 0.199213 -1.061908 -2.473956 0.516646 1.620097 -0.908789 -1.406541 -0.950287 2.277701 1.649096 1.392031 0.426909 0.687063 1.019116 4.493251 1.340859 -1.687050 0.155527 -0.215136 -0.784600 1.365212 -1.586033 -1.257816 0.759316 -2.845860 0.677336 2.300309 -1.728823 -0.864303 1.352822 0.890867 0.851675 9.568462 -0.006834 3.620202 2.369648 -3.120406 0.971779 -1.245328 -0.040972 0.804066 1.356512 0.183214 -4.037066 -2.682794 1.939109 3.198902 2.225879 -3.495698 -0.293848 -0.282163 -0.070423 -0.395927 0.020732 0.864352 0.270270 -2.247140 -0.717276 2.721762 5.784809 -1.404265 -1.312687 1.593157 1.153017 -0.941010 -3.074836 -1.206527 -1.396297 0.666451 1.074536 0.269060 1.778402 3.865703 -4.947780 2.675189 -0.268468 -0.179942 2.504720 0.912319 -2.830484 -3.324820 -0.543125 2.181041 3.195544 -0.526845 0.288345 1.039499 -2.787429 -0.258585 0.601062 0.099347 -0.691447 1.263772 0.388584 -1.602354 -1.810521 0.086347 -0.764785 -0.333772 -0.497815 1.918275 0.446379 -4.868067 3.269809 -0.073044 -1.377421 0.326648 -0.961317 3.006544 -2.818466 -3.141081 1.808490 -0.661934 -1.675691 -1.427119 0.324379 1.713091 0.708870 1.023751 -1.852876 -3.047884 2.398453 -1.051936 2.552191 1.308810 0.040682 2.343326 -0.742728 -0.943851 -2.742877 -2.137977 0.383094 -0.223004 -2.874109 -0.501602 -0.789851 2.834045 2.249630 -0.014484 -2.201901 -0.093625 3.026201 -3.157915 -1.015369 2.066175 1.877596 -3.094656 1.035156 2.548517 -3.154773 -0.045827 -1.628111 -0.652072 -1.199765 -2.728890 1.715424 0.265726 1.774830 0.191284 0.583300 -0.182333 1.214554 0.735414 0.463972 0.349498 3.803712 3.598796 -1.432051 -0.758618 -3.192801 1.598672 -3.909843 -3.998937 1.640284 0.304690 -1.960298 0.272217 0.281043 3.065316 0.636635 -0.606691 -0.892785 0.599723 +PE-benchmarks/permutations-of-a-given-string.cpp__main = -1.682344 -0.557977 2.008058 -4.125106 5.847987 2.035690 2.559212 -0.486642 -3.929319 -2.145677 0.632328 -2.815244 -4.109249 5.754887 -1.912109 3.931637 5.890916 0.380521 -1.087560 -1.715296 6.540815 -3.528967 7.314586 3.556834 -6.791573 -0.213602 0.042457 3.887071 1.168006 5.148646 -0.766956 -2.428735 2.553671 -3.461964 2.310245 -3.287683 2.089723 0.966960 -0.158958 -6.777435 0.188518 2.094245 -0.038275 -0.121462 -1.498374 3.132519 4.204295 5.227549 -3.048884 1.831678 4.611079 -0.712766 0.192598 2.464051 0.033544 0.559797 0.935158 -0.228427 -4.290583 -1.547890 -1.382826 -5.993380 1.946581 4.163453 6.954930 -1.394261 1.235863 4.032226 -1.598439 1.927657 2.901762 1.296190 0.662213 -1.783209 5.575329 -4.375059 -1.760200 -8.053168 -2.115024 -12.711358 -3.852417 -4.114018 3.379388 0.394014 3.504953 -1.382688 6.435783 0.771293 -0.126087 4.134228 5.583805 -4.956884 -2.027013 -6.238907 -2.474721 1.052080 -4.130955 -1.708551 3.746973 0.086349 -4.141276 -2.203734 1.893875 1.288565 -1.343466 -4.285891 -2.160077 5.564128 -5.760732 -4.051101 -4.250974 2.422861 -1.772595 -7.930352 1.284762 -1.948094 3.287954 0.028239 2.249689 -2.082057 0.862535 4.868172 -1.785549 -3.080038 -2.064711 5.988937 3.031702 0.783907 2.289407 1.306406 -0.799672 5.215013 6.467004 -1.392943 -3.476029 1.002783 -2.212440 1.886438 -2.916044 -1.031558 3.881957 -5.404020 -0.789584 2.592073 -1.498140 -0.782577 2.134438 -0.309474 4.178774 10.928114 0.111269 3.850360 1.550977 -5.103458 4.150379 -0.176479 0.132759 3.164013 3.373005 -1.315882 -5.432294 -5.206867 2.712248 3.630362 3.239629 -6.148192 -2.461960 -2.297750 1.033414 -0.569971 -1.986282 3.679726 -0.212520 -3.722792 -0.493974 0.756591 8.815089 -3.480996 -3.835398 4.909213 1.896526 -4.103151 -6.535006 -3.287949 -2.644434 -1.108464 0.011134 -0.540746 2.021891 6.704760 -8.541291 4.566387 -1.359226 -1.004055 4.044703 -1.504430 -1.490927 -7.692350 -0.810552 3.595937 5.090336 -0.370582 -0.089044 0.951985 -4.531872 2.140018 -0.272954 1.515261 -0.033713 1.758143 -1.793833 -2.987984 -4.440632 -2.117612 -1.899941 0.016695 0.045422 1.472705 2.030339 -8.805071 4.890135 -2.886564 -2.426162 2.707772 1.564174 5.070817 -3.617735 -6.137518 3.438821 -0.652911 -3.861246 -5.411141 1.811440 3.325635 -0.062984 -1.679568 -2.091301 -7.211043 3.934632 -2.361968 2.670647 1.916992 1.736115 6.468828 2.662840 -4.174677 -5.473539 -2.972917 -0.347935 -1.981555 -3.313616 -1.456186 -0.519361 4.978445 4.598262 1.251489 -0.142238 -0.901595 7.035674 -5.845440 -3.439878 5.980623 1.907910 -3.222701 3.088611 6.289608 -4.670249 -3.551631 -3.203894 0.810507 -0.391687 -4.144184 2.257565 -1.983615 1.922986 1.105985 1.961073 -1.687964 1.958572 1.336733 0.369762 -3.802894 8.980120 7.829569 -5.166633 -0.841640 -3.502401 2.256615 -6.334235 -4.275305 1.015720 1.146899 -0.884206 3.245712 2.471376 4.735441 0.564517 -1.516846 -0.764378 -3.040908 +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.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/overlapping-subproblems-property.cpp__main = -0.533342 -0.677390 0.348641 -1.612024 0.792587 0.240183 0.478838 -0.501145 -1.749279 -0.597393 0.702833 -1.697966 -0.478157 1.763412 -0.610815 0.868765 2.055360 0.468544 -0.841495 -0.484596 1.319319 -0.281830 1.942168 1.949080 -1.495154 -0.019737 -0.324829 1.005992 0.816846 0.432833 0.405400 -0.603038 0.527925 -0.810501 0.017199 -0.995967 0.200162 0.601081 0.572488 -2.277394 0.436411 0.469275 0.567856 -0.336566 -0.189623 0.752373 0.990587 1.373808 -0.432223 0.609639 1.377547 0.256246 0.010942 0.331254 0.267302 -0.213861 0.503614 -0.350427 -0.614958 -0.463649 -0.074377 -0.776638 0.282265 1.468610 1.814886 0.086632 -0.078645 0.443649 0.570764 0.544595 1.065421 0.275952 -0.251421 -0.089105 0.672427 -1.410923 0.167937 -2.568088 -0.035769 -3.430093 -0.969350 0.103730 1.951011 0.475909 0.220013 -0.131551 1.498667 -0.055083 -0.445892 1.435351 1.551583 -0.804863 -0.701612 -0.756846 -0.975477 0.800651 -0.803449 0.113947 0.640748 0.846184 -1.235981 -0.161964 0.372438 0.282243 -0.633661 -0.370595 0.294978 1.220032 -1.544070 -0.576025 -0.019289 1.352705 0.285513 -2.208921 -0.202078 -1.284761 0.877783 -0.072190 -0.586371 -0.483037 0.130568 0.250007 -0.553139 0.022271 -1.548348 1.052871 0.496346 0.667097 0.030759 0.314536 0.326409 1.533288 0.146566 -1.161725 0.114024 0.113048 -0.311925 0.653940 -1.034849 -0.695018 0.855931 -1.300328 0.290205 0.436017 -0.902212 -0.754999 0.392808 0.523307 0.327407 3.951018 0.155220 1.817870 1.361569 -1.097325 0.395141 -0.240433 0.232591 0.696550 0.753986 -0.128125 -1.136547 -1.400335 0.736774 1.607956 1.159595 -1.323721 -0.297169 0.059953 -0.185479 0.074445 0.124967 0.229821 -0.105905 -1.064126 -0.379763 1.056972 2.181155 -0.080483 -0.402553 0.439145 0.772312 -0.634767 -1.180168 -0.418971 -0.499076 0.431029 0.254347 0.155100 1.019985 1.908227 -2.914763 1.442831 0.140792 0.360556 0.941160 0.264468 -1.400137 -2.250485 -0.401790 0.705744 1.675048 -0.470727 0.049339 0.868317 -1.419589 -0.151481 0.262964 -0.028618 -0.510365 0.600608 0.246566 -0.406449 -0.669198 -0.031934 -0.437367 0.170892 -0.278274 1.033512 0.288110 -2.121788 1.251389 -0.295167 -0.675996 -0.043027 -0.472499 1.170982 -1.439970 -1.208531 0.592137 -0.219229 -1.144168 -1.114381 0.166765 0.914235 -0.153414 0.396174 -0.759574 -1.105941 1.282671 -0.928565 1.172916 0.688523 -0.334993 0.991781 0.118499 -0.195674 -1.114982 -0.587862 0.034458 -0.340576 -1.161565 0.314111 -0.371182 1.103225 1.112246 -0.026789 -0.996653 0.443423 1.613255 -0.968793 -0.835632 0.890148 0.111685 -1.089321 1.057881 1.171800 -1.793525 0.144903 -1.071515 -0.360003 -0.250862 -0.951009 1.263926 0.356398 0.938346 -0.092247 0.329746 -0.178193 0.809287 0.429440 -0.006484 0.338188 2.099405 1.707034 -0.380836 -0.079996 -1.551947 0.669865 -1.769600 -1.553232 0.441678 0.160880 -1.007509 0.304912 -0.187501 1.590383 0.485246 -0.175991 -0.564433 0.785000 +PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -1.656687 -2.362425 -0.794655 -4.197489 2.179390 2.673997 1.336465 -2.901170 -4.438296 -0.185155 2.443220 -4.325159 0.098940 4.574696 -1.489275 4.363526 4.802055 0.522134 -2.868250 -0.504704 4.178179 0.859623 5.252127 4.625009 -3.298836 -0.194410 -0.995149 1.546570 1.816892 0.043427 0.930547 -1.208693 2.068984 -4.200985 -1.698934 -1.884935 0.446775 1.816547 4.112754 -4.870478 1.299047 0.271752 0.870753 -1.166485 -1.204327 -0.644396 1.913262 3.642866 -0.289863 1.599439 3.204814 0.673346 -0.350830 0.909402 0.915987 0.480877 0.252226 -1.103818 -1.000356 -2.419316 -0.136648 -0.025728 0.897652 3.698239 4.115608 0.436481 -0.399761 2.716041 1.685472 0.995079 2.899073 0.807088 -1.914602 -0.188809 1.255075 -4.910827 0.253358 -5.042676 -0.555717 -5.319185 -2.095731 1.462589 3.288222 0.813549 2.398347 0.262646 3.634010 -0.802537 -2.122732 3.525738 3.621338 -3.291078 -1.648264 -1.632535 -2.121646 1.186778 -1.945737 0.735543 1.223190 1.463908 -3.292946 -0.831082 0.538509 1.930207 -1.604400 -2.667095 1.440533 2.771716 -2.932596 -2.938666 1.690374 4.150240 -0.941833 -5.651118 -1.696943 -3.170369 1.763335 -0.594310 -1.640531 -3.220202 0.238105 1.190456 -1.070982 -1.751090 -1.183305 1.309732 2.359671 2.366248 -0.065021 0.785808 0.984958 6.390310 -0.091892 -2.878496 0.914506 -0.370478 0.200656 2.613909 -1.799061 -2.046345 0.378050 -3.844339 0.687414 2.923535 -2.077616 -0.911436 2.082357 2.361127 0.047238 11.384241 0.605453 5.073400 4.341191 -3.248974 -0.174531 -1.845106 0.835420 1.597837 1.134962 -0.683170 -4.549399 -3.768712 2.403645 4.059878 2.975197 -3.477194 -0.703756 0.273403 -0.434677 -0.020917 -0.271036 0.566624 0.342038 -3.029059 -0.875593 3.391007 6.369406 -1.234640 0.480342 2.036891 1.854760 -1.714568 -3.017794 -1.957899 -2.761222 1.164299 1.683805 0.831285 2.474181 4.805453 -4.522187 3.266754 -0.230231 0.736720 2.381350 1.876359 -4.359555 -3.395919 -1.741829 1.497068 3.577207 -2.138013 0.824690 2.438124 -3.559597 -0.339991 0.937442 -1.100588 -0.977379 1.390754 1.043602 -1.053386 -1.325303 2.067326 -1.088680 -0.393345 -0.104744 3.063178 0.243137 -3.636692 2.930887 0.193761 -1.845048 0.979612 -1.615912 4.433867 -3.259210 -2.781818 2.642746 -0.132995 -1.092470 -1.297069 0.852575 2.377922 0.975637 1.898867 -2.649951 -2.416912 2.434530 -1.708963 3.278398 1.678711 -1.117551 1.233694 -2.878779 -0.507274 -3.024146 -2.675052 -0.563559 0.871369 -3.807136 -0.858603 -0.847875 3.727480 1.940059 0.187032 -3.720088 1.015871 3.418765 -3.628598 -0.705887 2.091381 1.972207 -4.405505 0.991106 2.822000 -3.979282 1.377776 -1.476382 -0.486180 -1.597901 -2.588122 3.429474 2.166084 3.054013 -1.016591 0.977525 0.833834 1.861289 1.483661 0.869952 1.400846 4.625194 2.597104 -0.146600 -2.173468 -4.163837 1.632805 -4.208199 -4.671095 2.385586 0.548329 -3.373957 0.374292 -0.291599 4.797879 1.477906 -0.500151 -1.026870 1.499788 +PE-benchmarks/largest-independent-set-problem.cpp__main = -2.195536 0.830702 4.309274 -6.536658 4.725954 2.601798 1.739941 -1.647984 -5.574169 -2.361418 0.577994 -6.749282 -4.200527 7.741202 -2.876494 1.130679 9.715678 1.925287 -2.854778 -1.677148 5.427113 -1.498698 8.084976 7.930034 -6.967946 -0.182793 1.939227 3.904431 2.106438 5.151056 -2.205790 -4.767241 1.349351 -1.257661 2.311488 -4.336398 0.440757 -0.341512 0.360223 -9.961139 1.412791 1.724227 0.624830 -1.770419 -0.598565 4.123234 7.740264 5.532223 -2.659420 -0.542713 5.174817 2.148683 -0.643069 1.300148 2.306466 -0.034380 5.200554 2.336273 -2.899781 -1.579562 -1.432380 -2.903350 0.496878 7.083279 7.896638 1.355442 -0.038626 0.616134 1.200840 1.831159 1.613781 1.345574 1.879205 2.313918 3.171252 -4.429845 1.070070 -11.951128 -0.286129 -14.744452 -3.959462 -2.297622 4.768942 -0.455191 0.944585 -1.705360 7.239359 0.038732 0.543211 4.643490 9.382246 -4.197376 -2.684785 -4.879817 -5.600534 2.619577 -3.089393 0.528253 2.969954 0.544723 -5.662294 -3.589234 1.357990 1.205451 -2.519361 0.156854 0.557405 5.615989 -5.631153 -1.229205 -3.270957 2.305112 0.970629 -10.440351 -1.905470 -4.804446 3.598307 -0.057491 -2.829391 -4.400810 1.544958 3.814202 -3.508270 -0.876984 -4.887787 6.866265 2.549272 1.312669 0.151497 -0.760402 2.153252 4.752599 3.629479 -4.524495 -0.014624 -0.197920 -3.786555 -0.167261 -5.191785 -1.728944 4.363376 -4.660656 0.747168 3.260674 -4.156419 -1.764059 2.446592 -0.976533 3.465856 19.098260 -1.938314 6.081539 2.269074 -6.974451 3.986433 0.492595 -1.646412 1.047659 4.128486 2.635225 -6.755355 -5.827920 4.352876 7.269984 4.975040 -6.390304 -0.553660 -1.350575 -1.609139 -0.675649 0.913069 1.118277 -1.873265 -4.512350 -2.542687 4.266228 10.439385 -1.940453 -8.163323 2.202248 3.046799 -1.070015 -4.485183 -1.337570 -1.952853 1.711586 0.738689 -1.150420 5.723513 8.831486 -16.434787 6.806719 0.203487 -2.136068 6.227486 -0.471345 -4.040408 -7.451412 0.633129 6.290148 7.237685 0.596087 -1.788866 0.748379 -6.142697 -0.810238 0.632596 2.721689 -2.919628 2.961446 1.305843 -4.821161 -4.775967 -3.489109 -1.413549 -1.155913 -2.741767 3.218615 -0.784763 -12.905284 8.738876 -0.082776 -0.862351 -0.606934 -2.300083 2.302348 -6.662424 -7.710004 1.973197 -0.940960 -3.369775 -3.949033 0.033503 4.508302 0.096967 2.839862 -4.704598 -8.391094 5.184864 -2.760063 5.948135 2.734700 1.868410 6.016744 3.424921 -0.954612 -6.032309 -2.143879 2.629004 -0.634521 -5.302924 -0.023952 -2.127951 5.183480 6.250684 -1.774825 -1.931277 -1.868396 6.624227 -4.122174 -2.880886 4.227071 -0.089659 -4.894477 2.222014 5.450804 -5.924055 -2.816220 -5.021150 -2.694240 -2.340757 -5.665986 2.602548 -1.562913 2.018121 2.260412 -0.159619 -2.527136 2.592994 1.309730 -0.370060 1.376591 7.582937 8.604335 -4.195842 1.692580 -6.507497 4.096807 -9.153757 -7.281420 2.331122 -2.048650 -3.152736 0.337010 -0.189917 5.231253 -0.372284 0.652360 -1.197971 1.429182 +PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -6.813897 2.460720 2.945956 -16.507908 15.829676 17.995795 4.954653 -9.485888 -14.003009 -1.442730 2.774412 -18.216698 -8.038909 21.559296 -7.521470 10.983286 25.170926 1.756726 -8.382877 -0.227739 17.915629 3.871180 23.752164 19.626999 -17.818543 -1.030434 6.543682 4.707848 1.227331 11.596259 -6.624510 -17.896632 7.020662 -10.969518 -1.616203 -9.216910 1.505757 -1.278760 11.892385 -23.911181 4.058154 1.768941 -3.120826 -6.102895 -5.051772 -1.411959 20.750815 15.769241 -6.231115 -0.965268 13.725627 8.991525 -5.149731 3.919781 5.430686 3.350005 6.619229 5.776457 -6.184562 -9.337569 -3.449188 0.836360 -0.155438 19.033758 20.263753 4.332698 -0.264936 8.260388 0.668677 3.390615 3.289836 3.901262 2.777139 7.540490 7.956904 -12.918147 -2.649629 -28.578181 -3.186005 -27.915342 -9.245629 -3.548643 5.056595 -1.576518 10.090439 -2.500155 19.480974 -2.224927 -0.482877 14.833234 25.923271 -16.503470 -6.941945 -13.959380 -15.439848 4.695819 -8.502375 3.775565 4.757944 -3.450283 -16.287806 -16.039104 0.296925 7.775663 -6.729226 -9.529437 3.364385 12.966975 -12.214467 -8.744326 -4.316694 8.361251 -4.265413 -29.572737 -14.586700 -10.655933 6.790875 -0.636658 -7.251290 -20.885772 3.593317 13.107899 -8.754289 -11.306903 2.180002 12.481248 11.995495 5.913880 1.424527 -4.021811 7.931294 24.582547 8.565513 -11.467899 1.311597 -3.715909 -4.690718 2.151645 -11.793881 -4.423515 3.316934 -15.101875 6.027544 17.682607 -10.610924 -2.745853 9.264349 -2.546223 7.805746 57.603984 -4.598243 17.919781 8.103682 -22.980663 5.987383 -4.866424 -5.916430 1.476115 8.761546 7.276279 -21.050389 -15.950323 14.247643 19.441524 13.750061 -17.103008 -0.908957 -2.983392 -3.558822 -3.953303 0.461311 4.000039 -3.047172 -13.703834 -6.486036 16.032040 32.574924 -9.165592 -17.222830 10.916427 13.475836 -2.435705 -9.243823 -6.928866 -13.472102 4.221117 10.329105 -2.684017 15.204954 24.305752 -36.283713 15.982955 -0.428669 -6.679840 13.055572 4.600006 -14.239102 -7.478749 1.718509 17.929846 17.162151 -0.365963 1.492555 0.806878 -16.052538 -1.967661 3.821029 4.048243 -6.690597 7.893600 4.307598 -15.602087 -13.419029 -0.920395 -4.993968 -8.131791 -6.340394 9.607415 -2.272403 -31.875949 24.349117 3.165653 -2.771856 1.557300 -8.511287 13.393575 -17.252183 -22.235394 10.980845 -2.220162 -1.275027 -1.533971 1.628430 12.560326 8.120192 13.727739 -14.236644 -23.906499 10.904333 -1.064128 16.609886 7.305113 5.873088 11.799338 -6.861927 -3.820167 -18.394849 -12.484667 9.400126 4.940084 -18.140887 -5.941389 -5.878503 18.030895 14.804280 -3.840277 -12.185748 -8.840746 15.298069 -14.575519 -0.269213 11.715457 7.598714 -19.994215 -2.025002 15.057027 -13.153363 -5.031367 -9.412690 -0.977835 -10.448575 -17.780146 5.446533 -1.312393 6.983788 5.608608 -0.729957 -3.514949 6.159816 5.182109 2.517674 4.262456 16.807575 14.128382 -10.315471 -1.052778 -18.475221 10.031609 -25.259540 -24.933354 11.628950 -8.209228 -11.529006 -1.124346 -1.492634 16.058192 -2.637115 5.511654 -1.397432 0.376252 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = -1.176067 -1.155728 -0.356532 -3.088906 2.021896 2.575045 1.045980 -1.443845 -3.465062 -0.726659 1.173679 -3.604542 -0.489882 3.750992 -1.021757 3.014979 5.162085 0.740972 -1.731732 -0.004930 3.259095 -0.677952 4.393610 4.198491 -2.538575 -0.131984 -0.531913 1.677564 0.380747 1.374626 0.306223 -2.189606 1.469639 -3.100564 -0.936619 -2.575996 0.409590 1.209349 2.440543 -5.246199 0.978470 0.729867 0.335931 -1.069621 -0.966271 -0.256584 2.422705 2.796024 -0.345431 0.933581 2.260081 0.731475 -0.442350 0.827634 0.846161 0.802820 0.631305 -0.306193 -1.365121 -1.455375 -0.288970 -0.760732 0.587548 2.752883 3.781193 0.326365 -0.110496 1.861187 0.449399 0.687028 1.837465 0.387112 -1.052240 -0.161312 1.061441 -4.132184 -0.292767 -4.678878 -0.533521 -5.654369 -1.894314 0.286464 2.483897 1.025073 1.798741 -0.450293 2.884916 -1.037081 -0.800779 3.000620 3.583358 -2.769746 -1.457204 -2.137771 -1.597635 1.010262 -1.559208 -0.155761 1.735455 0.487924 -2.634429 -1.112093 1.536327 1.566576 -1.104105 -2.328809 0.908040 2.649679 -2.725112 -2.537392 0.175853 3.061850 -0.788642 -4.908386 -0.968364 -2.519735 0.866185 0.066126 -1.228098 -3.036626 0.524724 1.565742 -0.891049 -1.558088 -0.974950 2.521417 1.533603 1.297364 0.368300 0.489595 0.748240 4.978002 0.845200 -1.908455 0.500870 0.013671 -0.770185 1.304072 -2.074860 -1.668786 0.139905 -3.251608 0.464744 2.697211 -1.848957 -0.557899 1.399680 1.328554 0.750273 11.727549 0.107812 4.000948 2.831068 -3.231550 1.525424 -1.183222 0.037307 0.708770 1.156235 -0.052147 -5.554313 -2.786830 1.737999 3.140641 2.498944 -3.489660 -0.939717 -0.538812 -0.245702 0.111069 -0.178891 0.712657 0.279918 -2.572272 -0.723542 2.625131 7.173701 -1.092226 -0.311950 1.826447 1.336973 -1.930787 -4.433172 -1.422701 -2.291408 0.627255 0.699625 0.038321 1.800641 3.941173 -4.943062 2.798518 -0.461241 -0.014194 2.833907 1.123747 -3.013268 -4.707225 -1.203594 2.129613 4.278056 -1.284845 0.896675 1.205259 -2.675425 -0.308006 0.707236 -0.189536 -0.643765 1.118115 0.359423 -1.801603 -1.403098 0.893971 -1.138284 -0.713825 -0.527949 1.940020 0.800764 -3.624381 3.098145 0.173595 -1.113441 0.799540 -0.802544 3.304765 -2.718560 -2.921523 2.173590 -0.086177 -1.107345 -1.278447 0.466850 2.097899 0.864152 1.004452 -1.642253 -3.730349 2.193100 -1.292310 2.584122 1.289175 -0.398673 1.597855 -0.276794 -0.784614 -3.067347 -2.806966 -0.509765 0.048226 -2.875118 -0.822969 -0.821429 3.120603 2.044618 0.324308 -2.822747 0.099795 3.698869 -2.626756 -0.481854 2.142646 0.947790 -3.564476 0.395666 2.741453 -3.933167 0.243837 -1.414440 -0.342647 -1.072167 -2.408033 1.864621 0.736925 1.927455 -0.137372 0.546147 0.020336 1.155556 1.205138 0.564937 0.555776 4.507980 2.924696 -0.613593 -1.027633 -2.969184 1.167888 -3.737325 -3.717131 1.418508 0.724814 -2.550008 0.440439 0.853800 3.435808 0.565267 0.158425 -0.480592 0.325760 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/longest-palindrome-substring.cpp__main = -2.185270 -1.355820 1.331109 -5.379431 6.791935 2.983407 2.928691 -1.530088 -5.344614 -1.479652 1.311005 -4.319140 -3.657808 7.384315 -2.322348 5.845865 7.663111 0.379002 -2.127627 -1.515418 8.214277 -3.550080 8.952598 4.525730 -7.703728 -0.432534 -0.252656 4.323877 1.543913 4.853219 -0.586442 -2.278206 2.985010 -5.584698 1.251858 -4.043678 2.539115 1.420395 1.650979 -8.664626 0.682799 1.871354 0.269880 -0.707633 -2.090071 3.529831 4.664233 6.506862 -3.377740 2.147420 5.464447 -0.816144 -0.118300 2.730438 -0.325533 0.865527 1.189576 0.266100 -5.014474 -2.582222 -1.163166 -5.744452 2.719825 5.314354 8.368580 -1.206601 1.218586 5.906443 -0.752082 2.136234 3.676759 1.345003 -0.515390 -1.621469 5.887907 -6.267807 -1.863187 -9.489399 -2.566055 -14.388526 -4.383695 -3.504700 4.002396 0.049160 4.263787 -0.726209 7.490329 0.622017 -0.659721 5.939461 6.737759 -6.145464 -2.676831 -7.392311 -3.490995 1.472732 -4.634429 -1.785980 5.089332 0.620023 -5.232043 -2.622260 1.923129 2.261154 -1.752648 -5.351706 -1.565807 6.286671 -6.483720 -5.618525 -3.216323 3.717481 -2.651226 -10.057493 0.843527 -2.582812 4.008864 -0.105573 2.391912 -3.601736 0.737785 5.544306 -2.053291 -3.643152 -1.970810 6.577115 3.678484 1.603689 2.514756 1.486544 -0.358729 7.326709 6.584863 -2.305946 -3.323052 0.920884 -2.335810 2.572101 -3.527725 -1.987393 3.705076 -7.181596 0.047974 4.020016 -2.176301 -1.033185 2.879463 0.652277 4.344198 14.814970 0.497031 5.746357 2.560351 -6.578075 4.218320 -1.025782 0.057035 3.402632 3.420268 -1.550763 -7.359381 -6.376377 3.404150 4.729609 4.359801 -7.500020 -2.883597 -2.490947 0.555229 -0.175390 -2.360185 4.407476 -0.408969 -4.742410 -0.751537 1.863346 11.735334 -3.866339 -3.350362 6.014641 2.454691 -5.095425 -8.443501 -4.014338 -3.727772 -1.076514 0.379510 -0.399935 2.687244 8.241309 -9.913330 5.638934 -1.338383 -0.693442 4.695215 -1.073103 -3.205417 -9.365108 -1.704828 4.413919 6.474529 -1.441488 -0.383108 1.585378 -5.284622 2.265437 0.281445 0.901138 0.223552 2.116809 -1.811030 -3.436546 -4.843817 -0.592859 -2.233925 0.039078 0.325471 2.325618 1.520369 -9.586081 6.007738 -3.183292 -3.008111 3.257802 1.172493 6.353565 -4.542186 -7.067646 4.400245 -0.331574 -3.704504 -6.045158 2.124984 4.123340 0.838271 -1.010686 -2.744899 -8.675025 4.039702 -3.226204 3.223057 2.429684 1.337026 6.801335 1.551023 -4.492991 -6.870913 -4.053308 -1.256251 -1.286731 -4.465289 -1.701736 -0.707998 6.517192 4.831703 1.122859 -1.522931 -0.787486 8.083374 -6.561058 -3.782145 6.638947 1.815811 -5.275545 2.885076 7.314287 -6.039894 -2.826622 -3.389593 0.986626 -1.174868 -4.708867 2.886496 -1.066304 2.445261 0.658203 2.151300 -1.128153 2.402326 1.872412 1.013476 -3.527789 10.689068 8.536179 -5.392611 -1.677434 -4.602286 2.832060 -7.787556 -5.993268 2.025180 1.658043 -1.770133 3.583518 3.007377 6.192251 0.691596 -1.972667 -0.788965 -2.963510 +PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -0.640136 -0.836023 -0.029679 -1.415591 0.659398 0.354044 0.390540 -0.550812 -1.570703 -0.434653 0.525425 -1.235391 -0.134431 1.627466 -0.537515 1.242401 2.017833 0.482148 -0.618275 -0.345558 1.648373 -0.811678 1.801246 1.817602 -1.308918 -0.240152 0.065027 1.039629 0.651440 0.333642 0.312768 -0.478090 0.454628 -1.528357 -0.066292 -1.357584 0.409122 0.877517 1.003630 -2.190994 0.370853 0.059420 0.454570 -0.316365 -0.428849 0.361234 0.619411 1.316911 -0.585980 0.628295 1.405091 0.151766 -0.177305 0.321739 0.051610 0.197096 0.083537 0.078245 -0.486040 -0.408227 -0.028523 -0.730421 0.668582 1.266913 1.838713 -0.023228 0.104404 0.813041 0.359571 0.395262 0.973690 0.163904 -0.561813 -0.308436 0.746949 -2.220029 -0.129186 -3.126073 -0.136915 -3.243827 -0.753562 0.027618 1.224664 0.061568 0.632704 0.183579 1.308513 -0.169958 -0.350773 1.488659 1.280587 -1.030046 -0.638182 -0.994318 -0.975249 0.686335 -0.843618 -0.071901 0.849437 0.600174 -1.022933 -0.615809 0.567960 0.613676 -0.497149 -1.189033 0.204461 1.183249 -1.319531 -1.199063 -0.100774 1.135304 -0.292011 -2.098800 0.081735 -1.380609 0.925161 -0.042746 -0.386876 -0.951672 0.048262 0.652384 -0.323317 -0.498028 -0.685415 1.003234 0.698241 0.486066 0.088034 0.077000 0.058987 1.879243 0.537713 -1.006397 -0.068934 0.320363 -0.727919 0.459513 -1.282263 -0.776842 0.975755 -1.433508 0.126042 0.720184 -0.799598 -0.569438 1.531539 0.425444 0.485367 4.615854 0.297474 1.693388 1.385350 -1.132689 0.695150 -0.262529 0.303464 0.764729 0.719929 -0.266869 -2.035452 -1.282048 0.499454 1.328637 1.100356 -1.445715 -1.062353 -0.234842 -0.033986 0.262607 -0.193957 0.357881 -0.303597 -1.016399 -0.231436 0.907739 2.474952 -0.346553 0.140815 0.559502 0.876504 -1.221726 -2.080730 -0.528567 -1.228548 0.253928 0.024945 0.069424 0.799038 1.716566 -2.761692 1.186180 -0.176954 0.395754 0.773784 0.310745 -1.347817 -2.657134 -0.283350 0.628721 1.655312 -0.566645 0.489673 0.880300 -1.251546 -0.004342 0.212703 0.038060 -0.365734 0.548122 0.007941 -0.552187 -0.695634 0.591562 -0.596223 -0.327259 0.076130 0.863441 0.289195 -1.817166 1.070085 -0.393814 -0.592061 0.456986 -0.262823 1.426256 -1.412343 -1.248282 0.888701 0.141576 -0.395496 -1.033255 0.261443 1.032312 -0.021353 0.041849 -0.536182 -1.582875 0.788370 -0.950664 0.925461 0.513701 -0.353666 0.921474 -0.244414 -0.258712 -1.541218 -0.456552 -0.530147 -0.179558 -1.208605 -0.538890 -0.134941 1.270792 1.065014 0.122418 -0.840301 0.562312 1.745196 -1.138069 -0.589393 0.839111 0.674690 -1.205668 0.537870 1.091155 -1.962095 0.063953 -0.759189 0.020323 -0.036227 -0.939455 1.087476 0.208842 0.907921 -0.181063 0.414337 0.073836 0.712789 0.719750 0.317016 0.128338 2.064449 1.674291 -0.333400 -0.545267 -1.370389 0.354251 -1.670367 -1.529861 0.313242 0.550564 -0.969583 0.493980 0.308951 1.625396 0.394504 0.097620 -0.221801 0.157678 +PE-benchmarks/program-wish-womens-day.cpp__main = -3.974513 -4.709329 -4.385344 -8.384831 5.457226 3.533916 3.443963 -4.179773 -11.068215 0.354175 5.718862 -9.314573 -0.391793 12.803169 -2.907904 10.103615 14.613016 3.391189 -5.622812 -0.562537 12.448727 -3.153940 12.688178 11.348106 -9.129397 -0.518978 -1.001621 1.969433 1.302506 -0.042852 3.326535 -4.995180 5.153172 -11.663461 -2.085395 -7.898837 2.967438 6.635065 10.333506 -15.974310 3.418634 0.210724 5.174750 -3.883113 -4.720657 1.308581 4.176870 9.916748 -2.695681 2.763816 9.446386 0.701117 -1.119693 2.562241 1.049356 0.898318 -3.890239 1.944876 -2.777303 -4.757547 0.138788 -0.029819 3.627396 8.806666 12.443809 0.457870 -0.338024 7.098632 3.012806 2.883717 5.526646 0.055011 -2.742938 -2.667980 2.665058 -14.064855 -5.357554 -20.905072 -1.507095 -22.108883 -5.347236 2.328645 8.580784 0.064602 5.201423 0.280066 8.628456 -0.136437 -3.064015 12.049948 10.913480 -6.868123 -4.942422 -7.597821 -6.313828 5.599253 -4.391004 1.897554 9.508278 1.249631 -8.343661 -5.719578 1.505298 4.754731 -3.144178 -9.876661 3.791125 6.917108 -4.429783 -8.133058 2.185543 11.131277 -1.663781 -16.064480 0.856506 -8.184839 1.872924 0.578655 -3.052681 -7.438483 -0.249568 3.740960 -2.711704 -5.122300 -2.373096 6.221066 4.350914 5.945503 1.541844 0.285302 2.565232 14.858117 0.257596 -8.859237 1.437429 -0.785828 -1.580732 5.337142 -8.841354 -6.058195 5.881644 -10.251258 4.079150 5.264396 -5.530526 -3.151888 9.804848 4.327314 1.646953 30.163637 1.938114 13.739049 8.704492 -8.483650 6.201958 -4.249542 0.384561 3.936117 4.008245 -3.451060 -12.796434 -10.671936 4.437040 9.849367 8.571039 -10.296091 -6.485370 -1.176317 -1.347779 -0.029366 -0.650781 2.463956 -0.692618 -7.108045 -1.766990 9.898849 17.736947 -3.000132 3.131341 4.546904 11.015581 -5.131140 -12.665201 -5.322582 -11.751162 1.939418 3.468808 1.403619 6.871231 11.572919 -17.535865 8.820249 -1.253330 3.454629 3.752929 3.664052 -11.400861 -18.144485 -1.576942 4.708986 12.052308 -5.178081 4.303781 6.355314 -8.238174 -0.073800 2.297997 -3.058977 -1.328958 2.912399 -1.359741 -2.256068 -4.411327 7.704671 -5.858678 -3.482611 1.058025 8.012703 5.763434 -10.375984 7.809104 -1.055899 -3.870193 1.894830 -3.172403 10.117314 -9.109187 -9.124926 6.844631 1.403965 0.436714 -5.423684 2.714018 7.799067 -0.101569 3.968775 -2.310368 -11.095850 5.885366 -3.398029 6.337599 4.171569 -2.164022 2.978792 -4.572016 -3.053879 -9.776154 -6.779576 -2.590403 1.238054 -10.038481 -3.118138 -1.910319 10.155224 4.978958 1.812434 -10.790781 1.302785 10.655368 -6.963443 -2.995294 5.790899 2.560054 -8.581057 1.640847 9.286170 -12.557286 1.532472 -6.307000 2.862342 -2.381786 -7.107584 6.827682 4.113092 6.747834 -3.094769 1.300059 3.315159 5.725981 5.691483 3.068550 2.175057 11.878302 6.822431 -1.687942 -6.023657 -9.243208 1.592712 -10.701374 -11.474431 4.046755 2.457159 -9.318845 3.471231 2.286478 11.811398 0.381205 1.775082 -2.932380 2.842354 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = -2.409144 -1.231527 4.421827 -7.514834 8.844770 3.376541 2.953877 -1.240858 -7.416990 -0.995347 0.501457 -7.222865 -3.745696 10.880036 -3.511300 6.134913 12.006978 2.162747 -2.265904 -0.668815 7.792972 -1.963615 10.974346 5.778746 -8.510185 -0.661111 -0.183222 4.639721 0.415193 7.659304 -1.864779 -6.106785 3.024749 -5.230306 -0.497145 -6.617803 2.000222 1.124277 2.209096 -13.582123 1.986833 3.450610 -2.606512 -2.232870 -0.084013 5.823002 7.345316 7.729661 -4.070429 3.593440 4.132592 1.125493 -0.752524 2.634165 -0.673962 1.562742 3.821435 -0.290563 -7.724718 -2.229389 -1.836095 -5.315272 2.431862 7.186416 9.873434 -0.713434 0.400813 5.790672 0.569912 1.974492 3.684354 1.187913 0.134620 1.421960 5.202148 -5.072331 -2.026161 -10.487615 -3.153757 -17.108830 -5.731461 -2.596913 6.122041 1.084683 1.764388 -1.343948 8.780769 -0.160765 0.498616 9.313786 10.130368 -6.700133 -4.003945 -9.021975 -5.420833 2.363981 -4.400354 -3.335780 4.479157 0.517767 -7.279717 -4.985146 1.151677 2.324250 -2.214919 -3.210537 0.061201 8.004342 -9.763812 -7.345262 -3.705540 5.078774 -2.838715 -12.961111 -2.029687 -0.952210 7.278257 1.634587 1.287156 -5.784547 2.371157 6.311286 -3.301987 -2.038560 -2.895472 9.121668 2.934918 2.439298 2.456268 0.862071 0.851447 8.064092 7.055583 -4.049695 -2.008900 1.431506 -2.751778 1.139010 -4.745895 -3.053177 0.845221 -8.790940 1.869399 6.411884 -5.000196 -2.000429 -0.718584 0.825686 4.912340 19.884371 -1.242329 8.077866 2.351817 -10.598716 2.948456 -1.436696 -1.616256 0.801508 3.828091 2.070640 -8.202955 -6.861868 4.603355 6.872885 7.069615 -8.617177 -0.782316 -3.644151 -0.596055 1.485817 -0.712476 5.723611 -1.329846 -7.801828 -1.500380 2.065800 17.046343 -3.004060 -8.675019 5.717353 3.340707 -3.950913 -7.928296 -2.994732 -1.681191 -1.250512 2.494059 -2.017646 3.649261 10.784198 -16.580290 8.458736 -0.367582 -1.878886 5.045056 -0.782648 -5.613152 -9.804926 -4.004578 7.703879 10.006345 -0.563173 -0.341264 1.227241 -5.665752 1.947128 1.119699 1.825170 0.604791 3.333393 -0.390174 -7.125579 -4.808213 -0.419810 -1.532641 -0.023757 -1.512117 3.256533 1.245696 -15.336581 8.952314 -2.755875 -2.474421 3.473151 1.240811 7.948424 -6.987644 -9.883774 4.516612 -0.961725 -5.294899 -5.835326 0.764506 4.814405 2.931302 1.614947 -3.275068 -11.416180 3.819706 -2.786598 4.126182 3.704924 0.520850 9.395646 1.025887 -4.271817 -6.816985 -7.134882 1.924927 -1.156504 -3.416577 0.682905 -2.233793 8.480448 6.074746 -0.894528 -3.828482 -4.509407 8.876943 -6.476926 -1.970473 7.828900 -0.389732 -7.109635 2.381805 9.488892 -7.645276 -1.898052 -3.443937 1.713921 -3.892308 -3.384096 2.275971 -1.548231 0.452362 0.938562 1.124293 -3.737536 1.411502 1.736019 -0.002212 -2.037765 11.876931 12.126812 -6.832204 1.982265 -4.725220 4.484159 -10.842274 -8.544834 2.310282 -1.014483 -2.703687 3.571685 2.108970 6.514072 0.119456 -0.945455 -0.378740 -1.636374 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = -0.413558 0.520414 0.918073 -1.000680 1.167729 1.111363 0.363366 -0.409894 -0.809124 -0.334697 -0.185619 -1.054074 -0.874397 1.462733 -0.571759 0.479407 1.973457 0.463213 -0.345049 -0.150545 0.939258 -0.266490 1.743616 1.534987 -1.316590 0.010890 0.659243 0.628381 -0.072929 1.512250 -0.986705 -1.354492 0.491661 -0.440593 0.327186 -0.939077 0.044680 -0.216140 0.200079 -2.020084 0.181612 0.136399 -0.320284 -0.318613 -0.139177 0.165356 1.784695 1.036830 -0.258466 -0.035986 0.707193 0.575288 -0.119295 0.347083 0.622148 0.557206 0.998461 0.187839 -0.657221 -0.270546 -0.393433 -0.628559 -0.071148 1.320021 1.491047 0.274455 0.031759 0.162583 -0.243773 0.161407 0.076277 0.302819 0.340540 0.708070 0.505178 -0.987275 0.172498 -1.896617 -0.314978 -2.117939 -0.852728 -0.823392 0.244782 0.092746 0.712894 -0.266449 1.500928 -0.138039 0.372286 0.438340 2.020364 -1.416161 -0.517341 -0.997348 -0.772596 0.258324 -0.653284 -0.002679 0.186395 -0.424102 -1.107367 -1.250694 0.586851 0.465177 -0.484917 -0.214534 -0.011614 1.227447 -1.170831 -0.740017 -1.100168 0.044657 -0.351707 -2.029487 -0.385520 -0.547494 0.697595 0.219561 -0.494902 -1.584939 0.487550 1.309114 -0.559641 -0.800498 -0.304837 1.378636 0.646246 -0.039468 0.168740 -0.252690 0.403768 1.481646 1.141670 -0.645318 -0.090159 0.014020 -0.836210 -0.218630 -0.918740 -0.241331 0.101664 -1.104196 0.025103 1.186214 -0.855873 0.111935 0.413294 -0.327846 0.872183 3.906630 -0.577244 0.936033 0.197275 -1.763992 0.886680 -0.137829 -0.517367 -0.004463 0.807979 0.776664 -1.900719 -1.072107 0.818932 1.407558 0.946336 -1.243556 -0.179189 -0.664026 -0.137493 -0.182379 0.162643 0.370932 -0.311897 -0.943849 -0.454070 0.686284 2.523994 -0.800267 -1.787862 0.644019 0.202549 -0.197247 -1.057096 -0.412223 -0.635664 0.170763 0.272427 -0.325469 0.871045 1.723919 -2.826367 1.320559 -0.356695 -0.940108 1.423020 -0.101188 -0.530766 -0.660345 0.250108 1.475730 1.423705 0.269507 -0.043771 -0.135033 -1.218137 -0.186395 0.072631 0.803396 -0.566810 0.647405 0.429440 -1.539802 -1.072958 -0.663683 -0.104948 -0.785077 -0.589623 0.534518 0.002435 -2.775168 1.860860 0.209396 -0.159756 0.430098 -0.319982 0.673216 -1.325312 -1.768722 0.666714 -0.120133 -0.206874 -0.259959 -0.033140 0.947916 0.251625 0.492061 -0.972132 -1.795928 0.709735 -0.009191 1.064555 0.535603 0.666437 1.206359 0.433648 -0.471658 -1.104026 -0.666440 0.614577 -0.136715 -0.906617 -0.425653 -0.509259 1.292945 1.557387 -0.134046 -0.299747 -0.746107 1.308723 -1.163720 -0.137361 1.018069 0.432503 -1.004742 -0.128537 1.178555 -0.975051 -0.916064 -0.649653 -0.295774 -0.507369 -1.230970 0.260688 -0.786665 0.284978 0.706108 -0.105135 -0.645451 0.437808 0.194686 0.045575 0.089161 1.344036 1.420196 -0.912694 0.387580 -1.104826 0.747483 -1.876151 -1.406909 0.454626 -0.349884 -0.642901 0.031553 0.131096 0.907069 -0.271396 0.309242 -0.001473 -0.407595 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -2.263177 0.318127 2.826936 -4.912289 4.004670 3.583999 1.742133 -1.590096 -4.431060 -2.568337 0.638746 -5.966439 -4.104827 6.752916 -2.595734 2.080338 8.285618 1.689682 -2.294333 -0.573442 4.442235 -0.137252 7.735149 6.996643 -5.579927 -0.483358 0.229516 3.734560 0.687630 3.850770 -0.448613 -4.779774 2.388225 -1.763971 0.384020 -3.275695 0.829370 0.364448 0.228512 -8.416968 1.061885 1.788318 -0.954612 -1.515525 -0.815176 0.997601 6.380855 5.111510 -1.091663 0.098847 3.424288 2.078109 -0.387719 1.637990 1.435690 -0.309435 1.416511 -1.841194 -3.016527 -1.891192 -1.225941 -3.537248 -0.323611 5.844239 6.736047 1.335869 0.101733 1.235703 -0.382162 1.559986 1.726546 1.145928 1.341164 1.880115 2.643870 -3.189871 0.012857 -7.250260 -1.067319 -9.566912 -3.673111 -2.040819 4.251235 3.100449 1.635700 -1.844082 6.142271 -0.246968 0.171135 5.049158 8.186105 -4.720703 -2.564619 -4.462402 -3.230673 2.185243 -3.325452 0.630268 0.059159 0.947409 -5.029387 -2.985825 0.736421 1.238585 -2.085309 -1.538124 0.411350 5.232474 -5.659253 -2.101210 -2.959377 2.481220 0.267073 -8.920347 -2.469316 -2.953699 3.153547 0.587443 -2.052198 -3.979859 1.556753 3.234774 -1.731476 -1.764312 -3.978493 5.122102 2.086372 0.803808 0.573866 0.823308 1.630878 6.170083 2.634474 -2.891767 -0.117736 -0.144864 -2.344173 0.625330 -3.533019 -1.423313 1.421262 -4.865372 -0.084425 4.051032 -3.613579 -1.941370 -1.026690 -0.187897 3.056117 15.929732 -0.974556 4.970785 3.004442 -6.321482 2.681889 -1.337556 -1.114096 0.760026 2.837486 2.063799 -6.051381 -5.052231 3.702569 6.191256 4.390579 -4.506031 0.791975 -1.248375 -0.146818 -1.433894 0.738743 1.865309 -0.675440 -4.246892 -1.675954 4.507768 9.310903 -2.091368 -4.704924 2.932266 1.679829 -0.354646 -3.657068 -1.702368 -0.680706 0.717073 2.269236 -0.453008 3.467499 7.673887 -9.434263 5.534339 0.332365 -0.956152 4.285322 -0.046143 -3.871677 -4.173532 -0.035264 5.524306 5.973195 0.130355 -0.102661 0.337326 -5.451488 -0.696779 1.333327 2.103230 -1.660769 2.614337 0.939283 -4.072244 -4.427773 -2.158443 -1.551135 -0.951295 -2.239488 3.060262 0.619117 -8.944058 7.312759 -0.072430 -1.460111 0.223721 -1.969124 4.386733 -5.900286 -6.995499 2.866282 -1.645978 -4.032696 -2.533201 0.539694 3.634850 1.151390 1.177724 -3.520659 -5.885315 4.825752 -0.815089 4.739510 2.251507 1.663782 5.004182 2.138988 -1.920004 -4.155650 -4.139557 2.566674 -0.817603 -4.695666 -0.187090 -1.543532 5.062711 5.748650 -0.950270 -3.357036 -0.932400 5.855327 -4.263419 -2.470891 4.248415 0.898082 -4.408922 1.742689 5.106757 -5.350664 -2.147678 -3.728157 -0.599853 -2.051692 -5.523104 2.040036 -1.503268 2.207604 2.110881 0.318490 -2.141020 2.099463 1.526812 0.131077 0.823743 7.177769 5.860480 -2.861100 1.021155 -5.661799 3.091467 -7.925223 -6.514385 2.408352 -0.727718 -2.146880 0.481476 -0.203399 4.525692 0.284613 0.104730 -1.280265 0.466390 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.619387 -0.142769 0.211004 -1.152201 1.016504 0.687100 0.424394 -0.552775 -1.054479 -0.386489 0.078020 -0.727833 -0.363258 1.649721 -0.469373 1.244641 2.119452 0.560248 -0.332954 -0.341476 1.661547 -0.906938 1.838477 1.620721 -1.434852 -0.174819 0.904428 0.723317 0.376579 0.792929 -0.449252 -0.875532 0.727518 -1.637495 0.114794 -1.418069 0.376623 0.433645 0.944415 -2.158665 0.292775 -0.507092 -0.124202 -0.346878 -0.600516 0.107412 1.210454 1.310251 -0.734995 0.424522 1.183028 0.327554 -0.398598 0.441935 0.197341 0.742312 0.054724 0.470964 -0.539922 -0.370876 -0.182327 -0.836902 0.572390 1.315585 1.729495 -0.008254 0.216332 1.080428 -0.053598 0.233110 0.508304 0.173215 -0.128837 -0.049934 0.849728 -2.514608 -0.432690 -3.377238 -0.553601 -3.309162 -0.821973 -0.598994 0.354927 -0.685376 1.090639 0.447128 1.456539 -0.107065 0.149002 1.129189 1.754261 -1.613826 -0.636965 -1.251728 -0.882199 0.518046 -0.893667 -0.053375 0.792583 -0.275905 -1.111343 -1.502796 0.763739 0.802540 -0.511174 -1.481631 0.086043 1.324011 -1.314495 -1.479670 -0.845355 0.345492 -0.785467 -2.139515 0.225063 -0.903582 1.370775 0.130844 -0.283544 -1.824344 0.162567 1.435401 -0.391324 -1.247285 0.401451 1.045917 0.797696 0.271500 0.289170 -0.281208 0.156139 2.155642 1.498504 -0.846939 -0.244511 0.221975 -0.977890 0.053121 -1.288352 -0.713089 0.835734 -1.542429 0.101227 1.264807 -0.892261 -0.299810 2.241645 -0.114097 0.884009 4.305361 0.007855 1.120131 0.755798 -1.692514 0.667862 -0.423744 -0.162793 0.581774 1.024137 0.181739 -2.282461 -1.301905 0.534504 1.350641 1.135940 -1.546150 -1.435360 -0.778877 -0.006308 0.173859 -0.355563 0.465847 -0.365349 -1.073801 -0.294892 0.867840 2.539072 -0.973812 -0.557841 0.754016 0.809499 -1.021218 -2.211684 -0.698185 -1.637445 0.174364 0.201698 -0.191946 0.815831 1.857476 -2.999670 1.214570 -0.719278 -0.276262 0.719578 0.422848 -0.919417 -2.050965 0.197701 1.180464 1.545502 -0.236615 0.695230 0.454669 -1.303560 -0.069897 0.077604 0.478400 -0.407539 0.588540 0.110839 -1.225796 -1.028368 0.618652 -0.357437 -0.944335 0.255287 0.713611 0.256069 -2.504574 1.575806 -0.359225 -0.448637 0.977522 -0.193777 1.477142 -1.532070 -1.757913 1.128333 0.261107 0.223916 -0.538154 0.258699 1.309522 0.083440 0.006117 -0.579299 -1.953219 0.420258 -0.383629 0.888818 0.533836 0.270879 1.431545 -0.792749 -0.519376 -1.675537 -0.366732 -0.277174 -0.164941 -1.112295 -1.248736 -0.226448 1.580191 1.571253 0.125126 -0.521951 0.113067 1.589934 -1.876801 -0.267420 1.130642 1.340850 -1.175598 0.126846 1.294628 -1.642649 -0.630408 -0.550390 0.203756 -0.062136 -1.267888 0.651632 -0.466350 0.623305 0.300230 0.244272 -0.023118 0.759396 0.607951 0.563952 -0.149472 1.554390 1.911854 -0.990628 -0.644463 -1.213226 0.383482 -2.007674 -1.643580 0.457043 0.479112 -0.751900 0.411396 0.350395 1.347307 -0.104238 0.335136 0.021803 -0.601257 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = -0.710885 -0.615631 0.281412 -1.875891 1.409860 0.992822 0.733801 -0.597587 -2.300917 -0.710234 0.790054 -2.424532 -0.842938 2.556046 -0.720847 1.453365 3.272109 0.595014 -1.018837 -0.358989 2.003026 -0.700217 2.942607 2.759915 -2.006144 -0.010870 -0.162193 1.078806 0.523440 0.982580 0.040527 -1.374615 0.917997 -1.635341 -0.143629 -1.425344 0.224937 0.521165 1.116874 -3.426430 0.519203 0.676673 0.341369 -0.584170 -0.448135 0.800354 1.807230 1.905515 -0.571405 0.798694 1.738552 0.166645 -0.102595 0.511053 0.523434 0.129292 0.634981 0.137690 -1.144791 -0.655351 -0.263451 -1.086073 0.213421 1.954971 2.615515 0.129805 -0.105351 0.855562 0.319883 0.612582 1.186777 0.374828 -0.070841 0.029353 1.116003 -2.049691 -0.207383 -3.671853 -0.355185 -4.821689 -1.437200 -0.115662 2.229993 0.320692 0.782713 -0.283510 2.155172 -0.322713 -0.410710 1.983743 2.599944 -1.642346 -1.097775 -1.364110 -1.259969 0.893744 -1.196530 0.051481 1.343303 0.373984 -1.889678 -0.845683 0.894877 0.688056 -0.798473 -1.022715 0.347097 1.832383 -2.051710 -1.246449 -0.529852 1.522923 0.005713 -3.348007 -0.516877 -1.311102 0.989257 0.315396 -0.903198 -1.435664 0.414557 0.829218 -0.801037 -0.691167 -0.941338 1.885671 0.836006 0.923017 0.331402 0.328723 0.639665 2.687774 0.920217 -1.381744 0.168125 0.059575 -0.679014 0.847371 -1.388363 -1.068060 0.750151 -1.996683 0.580200 1.129178 -1.348624 -0.684521 0.861023 0.612620 0.620237 6.397094 0.016965 2.613546 1.605797 -2.029056 1.160055 -0.571984 -0.001507 0.616138 1.153175 0.132877 -2.496949 -1.876329 1.238915 2.304165 1.664236 -2.439954 -0.512354 -0.208405 -0.042869 0.013105 0.144675 0.580183 0.139690 -1.631332 -0.500688 1.657987 4.088992 -0.763256 -1.133411 0.950162 0.935909 -0.757218 -2.441189 -0.700830 -1.143324 0.457144 0.504500 0.017122 1.315355 2.761976 -4.175706 2.042632 -0.206338 -0.046696 1.800101 0.579773 -1.965476 -3.063250 -0.456597 1.394896 2.642112 -0.203455 0.046365 0.800343 -1.947675 -0.208765 0.374193 0.137959 -0.579976 0.971203 0.087132 -1.104434 -1.181692 -0.127887 -0.603239 -0.303895 -0.411086 1.325973 0.487467 -3.354653 2.102250 -0.123911 -0.901174 0.102662 -0.479656 1.742596 -1.986255 -2.193619 1.099490 -0.420276 -1.342546 -1.242508 0.140071 1.218801 0.378386 0.583646 -1.010172 -2.439867 1.841670 -0.886329 1.849859 0.955479 -0.182505 1.662731 0.356192 -0.669940 -1.869462 -1.175012 0.234970 -0.497516 -1.799708 -0.302319 -0.605678 1.881098 1.656579 0.071566 -1.409683 -0.196554 2.374063 -1.745014 -0.818544 1.556316 0.634697 -1.811162 0.919650 1.919179 -2.484685 -0.035108 -1.318636 -0.404837 -0.642080 -1.580364 1.226446 0.070641 1.091691 0.107027 0.280744 -0.243149 0.858110 0.575771 0.120196 0.169451 2.922678 2.576383 -1.046486 -0.123671 -2.153716 1.051654 -2.677360 -2.555343 0.836975 0.321916 -1.584862 0.279646 0.367676 2.051011 0.360402 -0.330634 -0.702362 0.553198 +PE-benchmarks/longest-increasing-subsequence.cpp__main = -0.251446 -0.196970 0.483129 -0.821320 0.766387 0.171188 0.403942 -0.067161 -1.147913 -0.474596 0.348064 -1.201391 -0.635265 1.239530 -0.302624 0.461624 1.523861 0.404566 -0.390943 -0.289486 0.652157 -0.416769 1.360746 1.355609 -0.990558 0.148332 -0.181491 0.497808 0.163563 0.747463 -0.188694 -0.802092 0.451245 -0.398723 0.110127 -0.641445 -0.043213 0.164464 0.206898 -1.677487 0.223595 0.550431 0.220455 -0.223980 -0.036220 0.735763 1.016098 0.859742 -0.253113 0.586065 0.711843 -0.075779 0.131625 0.258456 0.430400 0.009593 0.549947 0.005508 -0.712258 -0.089266 -0.221191 -0.809827 -0.072860 0.885519 1.201772 -0.014933 -0.152072 0.076649 0.077004 0.315311 0.572156 0.232863 0.257407 -0.025323 0.577040 -0.555968 0.002087 -1.660546 -0.166155 -2.597319 -0.848535 -0.134795 1.437558 0.252097 0.164958 -0.327542 1.117403 -0.096453 -0.157284 0.674882 1.328476 -0.731339 -0.574618 -0.468682 -0.517182 0.423051 -0.541375 -0.036813 0.600889 0.125303 -0.961069 -0.326468 0.544162 0.105361 -0.408327 -0.077400 0.091273 0.949945 -1.167599 -0.396296 -0.564567 0.550467 0.270242 -1.476128 -0.040323 -0.419739 0.481962 0.317586 -0.572576 -0.403614 0.345060 0.229153 -0.517225 -0.106757 -0.851339 1.043945 0.193507 0.429318 0.212710 0.199312 0.336516 0.948081 0.500495 -0.695538 0.090925 0.072444 -0.265949 0.440652 -0.591992 -0.498798 0.389458 -0.861576 0.247490 0.164665 -0.721178 -0.285123 0.058210 0.298641 0.245472 2.271093 -0.118114 1.167691 0.607586 -0.908319 0.650941 -0.167609 -0.004474 0.272285 0.722234 0.146764 -0.657594 -0.865173 0.623161 1.190970 0.794480 -1.143511 -0.152864 -0.072576 0.061535 0.029856 0.279113 0.250035 0.187437 -0.764203 -0.247592 0.545241 1.773400 -0.327680 -0.992252 0.314123 0.264326 -0.109704 -0.894843 -0.225529 -0.267116 0.217160 0.080475 -0.024133 0.615249 1.341136 -2.323080 1.095545 -0.174048 -0.189814 0.958175 0.152358 -0.794782 -1.419485 -0.251203 0.631270 1.295189 0.212220 -0.122017 0.352982 -0.975643 -0.147694 0.069008 0.161426 -0.374567 0.559724 0.045265 -0.591320 -0.511663 -0.561209 -0.171876 -0.053293 -0.349294 0.642784 0.424518 -1.990749 0.960131 -0.021582 -0.469273 -0.077180 -0.067676 0.615793 -0.914657 -1.095648 0.337710 -0.410203 -0.992531 -0.700856 -0.052732 0.439782 -0.035087 0.109277 -0.384779 -1.005719 1.107485 -0.393545 0.965454 0.528287 -0.114529 0.993893 0.668202 -0.443046 -0.598072 -0.395909 0.367096 -0.631317 -0.586168 0.195049 -0.415786 0.771221 0.897028 0.140792 -0.416846 -0.275371 1.132682 -0.736522 -0.462084 0.873582 0.059401 -0.496241 0.748019 1.015699 -1.099041 -0.099472 -0.769845 -0.367725 -0.308820 -0.606912 0.604892 -0.138827 0.396596 0.112297 0.077481 -0.336749 0.411872 0.094001 -0.166795 -0.011950 1.429789 1.411118 -0.685027 0.329684 -0.968370 0.596655 -1.235252 -1.033877 0.247510 0.139318 -0.803512 0.081708 0.055650 0.786743 0.160975 -0.324121 -0.492878 0.405871 +PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -0.836177 -0.842829 0.103308 -1.768510 1.290742 0.831149 0.695382 -0.981450 -2.054822 -0.238890 0.721753 -1.595869 -0.249586 2.336540 -0.646275 1.911857 2.826405 0.709582 -0.923151 -0.515314 2.218157 -0.859225 2.633210 2.471347 -1.832111 -0.102935 0.359304 0.934936 0.785917 0.727642 -0.402764 -0.747935 1.045606 -2.260819 -0.222701 -1.696219 0.305376 0.835351 1.721732 -2.889494 0.538963 -0.286283 0.339287 -0.485267 -0.644468 0.635773 1.261535 1.810504 -0.666544 0.944203 1.696254 0.040912 -0.231035 0.555343 0.501545 0.739363 0.543876 0.645841 -0.742114 -0.692761 -0.255684 -0.832587 0.671302 1.761773 2.395805 0.013565 0.001154 1.256669 0.437613 0.423269 1.203789 0.320283 -0.389142 -0.290648 1.040740 -3.006993 -0.163976 -4.107325 -0.579146 -4.331826 -1.146688 -0.026788 1.337269 -0.822855 1.290371 0.363220 1.961489 -0.221694 -0.497862 1.445250 2.116813 -1.988521 -0.929314 -1.110418 -1.171741 0.633798 -1.119504 0.084118 1.400715 0.076602 -1.637300 -1.325920 1.005531 0.967147 -0.749250 -1.486896 0.360201 1.695949 -1.683032 -1.769006 -0.379612 1.103740 -0.676114 -2.863009 0.081619 -1.523027 1.514174 0.072989 -0.747329 -1.922463 0.265288 1.205509 -0.672058 -1.228280 -0.005554 1.357055 1.008274 0.830223 0.199276 -0.109644 0.253056 2.886261 1.211321 -1.441800 0.067956 0.142301 -0.907072 0.802739 -1.581376 -1.110497 1.087204 -1.990195 0.324219 1.247914 -1.213275 -0.324787 2.626038 0.671073 0.554969 5.688288 0.147471 2.166604 1.549502 -1.907497 0.791029 -0.588596 0.263284 0.940711 1.217105 -0.150034 -2.826494 -1.881487 0.943229 1.992713 1.566637 -2.405278 -1.461193 -0.516155 0.016523 0.255879 -0.254562 0.471839 -0.122378 -1.495725 -0.401575 1.192453 3.569684 -1.110511 -0.636249 0.914192 0.843230 -1.256643 -2.751440 -0.955884 -1.818521 0.430454 0.162722 0.062556 1.199892 2.523822 -3.904654 1.756890 -0.791303 -0.128609 1.448866 0.748326 -1.754000 -2.780848 -0.343606 1.051080 2.188205 -0.358074 0.439178 1.099939 -1.846056 -0.137856 0.125075 0.101537 -0.578387 0.848670 0.293076 -1.134178 -0.971549 0.641120 -0.392960 -0.810851 0.197109 1.317340 0.242746 -3.145542 1.688750 -0.214530 -0.835669 0.877218 -0.297129 1.820951 -1.834244 -1.963781 1.336763 0.115345 -0.183195 -1.115532 0.372215 1.432187 0.121072 0.388933 -0.998235 -2.275092 1.084046 -0.994271 1.520684 0.813436 -0.235059 1.481794 -0.783698 -0.584017 -2.104982 -0.502018 -0.440952 -0.206102 -1.608843 -1.023390 -0.403805 1.994550 1.607386 0.294438 -0.948368 0.166287 2.210063 -2.244356 -0.464530 1.450624 1.511877 -1.682334 0.607899 1.707611 -2.331457 -0.137245 -0.763753 -0.390150 -0.374821 -1.354191 1.434573 0.131715 1.166685 -0.172772 0.457377 0.191375 1.004200 0.716056 0.500260 0.135300 2.461034 2.600697 -0.940820 -0.840594 -1.827175 0.756655 -2.414185 -2.206643 0.798819 0.566144 -1.624830 0.441907 0.420257 2.152121 0.302430 -0.123748 -0.358714 0.009836 +PE-benchmarks/binary-insertion-sort.cpp__main = -0.949338 -1.189191 -0.190268 -2.417905 1.744287 1.424091 0.941867 -0.819140 -3.136319 -0.611337 1.104189 -2.886199 -0.568930 3.220177 -0.762222 2.347589 4.069767 0.810012 -1.320571 -0.242650 2.795586 -0.769912 3.720380 3.513294 -2.292526 -0.028571 -0.444576 1.269082 0.452954 1.045751 0.150755 -1.638912 1.222990 -2.656450 -0.606657 -2.080703 0.320715 1.126296 2.031000 -4.262751 0.788018 0.766833 0.453724 -0.791843 -0.717586 0.487543 1.892961 2.379435 -0.698531 1.242522 2.197729 0.175512 -0.240773 0.677636 0.598732 0.518438 0.188671 0.104759 -1.326841 -0.957779 -0.269519 -1.078506 0.502140 2.229177 3.268040 0.080140 -0.155625 1.346697 0.415180 0.676126 1.715633 0.350951 -0.451880 -0.425773 1.307713 -3.066823 -0.497246 -4.768490 -0.442139 -5.683949 -1.675750 0.221495 2.770276 0.509651 1.236557 -0.350174 2.536191 -0.710307 -0.735462 2.690639 2.939254 -2.163670 -1.349210 -1.702038 -1.556371 1.043301 -1.389220 -0.134710 1.725661 0.420382 -2.295631 -1.158196 1.135206 1.056228 -0.955605 -1.818924 0.599946 2.226149 -2.472868 -1.970634 -0.238419 2.363130 -0.309636 -4.098154 -0.683736 -1.830591 1.134261 0.288755 -1.135586 -2.024753 0.445274 1.009293 -0.941809 -1.083986 -0.745722 2.121635 1.051902 1.222684 0.429737 0.306611 0.589190 3.894951 0.938425 -1.804373 0.321389 0.170631 -0.649331 1.262740 -1.834394 -1.494511 0.766294 -2.667410 0.696746 1.496316 -1.654253 -0.661016 1.615943 1.126800 0.559568 8.624541 0.233694 3.498927 2.284764 -2.492898 1.476162 -0.797601 0.224046 0.927042 1.341285 -0.198779 -3.620862 -2.352057 1.384813 2.719949 2.144407 -3.113971 -0.982413 -0.298240 0.015480 0.251840 -0.003596 0.644227 0.312916 -2.118633 -0.532579 2.001109 5.482231 -0.919874 -0.610117 1.320203 1.376380 -1.420245 -3.327482 -1.061067 -1.962511 0.508244 0.637749 0.032652 1.575959 3.382416 -4.805833 2.421411 -0.497685 0.116602 1.987562 0.994920 -2.680137 -3.850630 -0.917463 1.496507 3.461342 -0.543307 0.519671 1.253973 -2.330623 -0.227690 0.518269 -0.153683 -0.627767 1.142871 0.052529 -1.272942 -1.158259 0.453334 -0.967823 -0.506278 -0.262252 1.708048 0.754223 -3.901473 2.314371 -0.081704 -1.133873 0.457253 -0.416732 2.491177 -2.322170 -2.641409 1.655331 -0.211660 -1.287693 -1.396809 0.336707 1.618136 0.555305 0.623434 -1.128470 -3.173620 2.163873 -1.130279 2.248639 1.166873 -0.590772 1.775359 -0.279120 -0.830431 -2.581559 -1.730689 -0.147032 -0.477964 -2.295568 -0.580151 -0.722168 2.449042 1.807397 0.418744 -2.064313 -0.051882 3.134522 -2.212338 -0.683963 1.970654 1.047459 -2.482558 0.934943 2.451834 -3.369064 0.243539 -1.421402 -0.208124 -0.709401 -1.839297 1.738313 0.459981 1.557138 -0.196276 0.505412 -0.028835 1.059436 0.929828 0.268740 0.216590 3.878857 2.875243 -0.957538 -0.534694 -2.523074 1.082132 -3.184531 -3.153481 0.971091 0.639033 -2.288473 0.469867 0.621597 2.870658 0.495457 -0.164183 -0.718011 0.544044 +PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -2.089445 -2.507774 -2.105457 -3.949877 3.068285 3.835615 1.791105 -2.844955 -5.383438 -0.301371 2.524340 -5.230161 -0.337133 5.728731 -1.427081 5.618508 7.523543 0.989280 -2.761414 -0.402079 6.173742 -0.833158 7.752836 6.760683 -3.950091 -0.296399 -0.156451 1.702175 1.269433 0.419870 0.423500 -2.214596 3.200039 -6.949981 -2.203096 -3.690827 0.727226 2.176576 5.807980 -7.330548 1.419778 -0.209629 0.283351 -1.443229 -2.111730 0.811577 3.301404 4.471560 -0.985028 2.396517 4.313656 0.196175 -0.769795 1.378766 0.852520 1.297264 -0.317832 0.970044 -1.843110 -2.744243 -0.480164 -1.000384 1.034012 4.107421 6.361919 0.275099 -0.248794 4.089847 0.786599 1.113616 3.146839 0.787942 -1.196794 -0.568643 2.387549 -7.827992 -1.334131 -9.613035 -1.647928 -10.204810 -2.452472 0.969910 3.548048 -0.941162 3.552568 0.667779 4.525747 -1.053087 -2.036279 5.482170 5.595111 -4.918480 -2.349604 -2.658204 -2.443331 1.327574 -2.679282 0.630702 4.170972 0.417237 -4.252944 -2.956590 2.206907 2.642207 -1.722389 -5.349297 1.354976 3.441962 -4.056393 -4.270090 0.392653 4.190740 -1.648837 -8.187634 -1.639613 -3.576642 3.244170 0.179603 -1.943566 -5.335766 0.567887 2.491352 -1.229416 -3.417546 1.751576 3.112070 3.001246 2.826793 0.687034 0.541057 1.123377 9.324028 2.003212 -3.166943 0.734864 -0.324939 -1.293918 2.974429 -3.253049 -2.932701 1.498455 -5.281716 2.262084 4.040973 -2.776799 -1.151636 5.780079 2.301090 0.607729 17.743258 0.781283 6.713861 5.127246 -5.156004 1.729869 -2.782250 0.717455 1.916301 2.144017 -0.628896 -8.696822 -4.530939 2.878119 4.807520 3.791851 -7.128161 -2.187917 -0.403933 0.391497 0.198808 -0.740403 1.282160 0.782858 -3.894581 -0.833057 4.547559 11.248128 -2.742213 0.879693 2.991861 2.499654 -2.934783 -7.572093 -2.648578 -4.495889 1.023717 1.895796 0.584662 2.577382 6.093436 -7.552355 3.926590 -1.523747 0.515400 3.643837 3.300028 -5.692007 -6.707524 -1.660468 2.915790 5.899758 -1.448900 1.463794 2.546915 -4.295497 -0.370005 1.083557 -0.785662 -0.905227 1.987894 0.507773 -2.286520 -2.176556 2.853684 -1.317611 -1.419167 0.652278 3.506700 0.749122 -7.226574 4.447789 -0.057695 -2.386450 1.296154 -0.895048 5.739801 -4.081921 -4.826123 3.801870 -0.346220 -1.031283 -2.181314 1.160866 2.988086 1.761323 1.993702 -2.614364 -6.319843 3.438937 -2.093574 3.983024 1.966467 -0.897125 3.060061 -4.400888 -1.587478 -6.127427 -3.201100 -1.334716 0.034195 -5.042162 -1.986405 -0.882409 5.058740 2.963840 0.815338 -4.692562 0.615982 5.569729 -5.695156 -0.736518 3.473021 5.296645 -5.920539 1.168619 4.189282 -6.402425 0.881490 -1.678524 -0.880655 -1.742680 -4.049171 3.294939 1.367642 3.233955 -0.735502 1.157630 1.152108 2.142075 1.921063 1.444078 0.641936 6.893415 5.995503 -1.681762 -2.811682 -4.773849 1.819228 -6.131922 -6.718296 2.866709 1.629455 -4.337236 0.616068 1.758033 6.029865 1.068820 -0.869022 -1.250541 0.589306 +PE-benchmarks/boruvkas-algorithm.cpp__main = -2.730140 -1.701378 2.568806 -7.695086 5.252629 5.200952 2.265467 -3.843637 -7.260439 -0.685887 2.441727 -6.327061 -1.579367 8.380240 -2.980912 5.325258 10.377639 1.615397 -4.335679 -1.284370 7.572282 -1.875972 9.547007 8.642272 -6.838844 -0.315901 0.971564 4.751442 2.397956 4.405133 -2.360322 -2.742174 2.325956 -6.264433 -0.780402 -4.863530 0.787866 1.171111 4.406165 -10.432103 1.951955 -0.096077 -0.632274 -2.047788 -1.823113 0.928936 5.927534 6.262186 -1.268364 1.053130 5.777992 0.909860 -0.963797 1.668545 3.062084 2.469603 4.763253 2.397615 -2.415557 -3.105113 -1.212744 -2.026249 1.861184 7.029443 8.132399 1.036905 -0.111555 3.184878 1.396803 1.406949 3.710690 1.131154 -1.984917 1.016669 3.123280 -9.091295 1.445112 -11.332379 -1.274617 -11.080591 -4.164817 -0.332520 3.972030 -1.162032 4.207616 0.294569 7.037242 -1.474206 -1.490520 4.501143 8.103834 -6.499181 -3.040869 -4.391874 -4.877768 1.688750 -3.512636 0.083127 3.121603 0.635655 -5.942551 -3.183643 3.333918 3.685420 -2.738530 -2.881053 1.245540 6.444495 -5.462754 -5.046328 -0.691904 4.705462 -1.905833 -10.856507 -2.495683 -5.748596 4.977052 -0.594309 -2.795186 -7.081782 1.442055 5.295382 -2.593609 -3.530703 -1.144752 6.083773 3.962838 2.608474 0.122807 -0.423712 1.621908 9.252117 3.880052 -4.451842 0.576275 -0.324346 -3.167113 2.196116 -4.431867 -2.671532 1.439055 -6.234565 0.295584 5.741358 -4.026077 -0.409116 5.634018 2.533226 2.244457 24.799512 -0.638103 7.896925 4.555092 -7.282682 3.175178 -1.139823 -0.007939 2.058668 3.012325 0.432051 -12.646031 -6.552116 4.364679 7.195502 5.377019 -8.843081 -2.126646 -1.816151 -1.133285 0.466231 -0.363548 1.303313 -0.582293 -5.254192 -2.245251 4.826893 14.205871 -3.546605 -6.218366 3.885036 0.963397 -3.789314 -8.748723 -3.010729 -3.696527 1.897315 1.354751 -0.316328 5.098037 9.169609 -13.457160 6.563237 -1.788308 -2.169512 7.900884 1.168196 -5.588073 -7.682022 -1.557908 4.719029 8.318996 -1.018762 -1.018905 2.732226 -6.473063 -0.619984 0.984286 0.760156 -2.097160 3.034800 1.940094 -4.887445 -4.085363 -0.322931 -1.505886 -1.352388 -1.399687 4.221707 -2.208482 -11.399761 7.504822 0.746878 -1.952190 2.275318 -2.050008 5.542411 -6.270644 -7.523562 4.411477 0.480890 -1.337670 -3.625099 0.896464 4.929625 1.930107 2.548106 -5.609220 -8.469896 3.763182 -3.530074 6.239430 2.862298 0.284642 4.880442 0.020873 -1.124868 -7.230615 -3.102796 0.498918 0.752727 -6.631274 -3.386231 -2.105282 7.032065 5.060110 -0.126417 -3.277728 -1.095833 7.850389 -6.759865 -1.921520 4.456630 3.281884 -7.359295 0.874106 5.812976 -7.054083 -0.981547 -2.939630 -3.170133 -2.921638 -5.608392 4.443633 0.949819 4.318948 0.280830 1.590948 -0.409614 2.584256 1.813838 1.527110 1.468377 8.745793 9.179112 -2.881161 -1.960485 -6.916304 4.052988 -8.628067 -8.281128 3.624262 0.098240 -4.962571 0.895138 1.227117 7.710694 1.122188 -0.436092 -0.319914 0.441605 +PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -1.357459 -0.500239 0.761155 -3.362445 2.482408 3.616748 0.933121 -2.601211 -2.832758 -0.212081 1.344908 -3.293563 -0.772084 3.624089 -1.777310 2.708367 4.014911 0.161956 -2.071187 -0.199826 3.227128 1.091910 4.692881 3.806168 -3.131246 -0.286615 0.504750 1.873741 1.001751 1.369054 -0.546591 -1.844020 1.471619 -2.798665 -1.284446 -1.345996 0.393420 0.217673 2.573425 -3.857065 0.693849 -0.415371 -1.332265 -0.801734 -0.861578 -1.220576 2.823862 2.914756 -0.179468 0.529922 2.557111 1.239840 -0.637707 0.739636 1.033849 0.507852 1.343141 -0.412741 -0.747530 -2.024789 -0.447271 -0.142020 0.179555 3.498245 3.496104 0.837331 -0.086738 1.704129 0.388702 0.520060 1.447367 0.830113 -1.181172 1.502127 1.110083 -3.529542 0.662203 -3.809640 -0.716675 -2.580254 -1.760323 0.064436 1.116542 0.618425 2.285333 0.420936 3.282345 -0.426188 -0.979223 2.512381 3.932838 -3.289411 -1.229861 -1.637273 -2.061472 0.621031 -1.751199 0.939641 -0.453779 0.639424 -2.716912 -1.714411 0.387892 1.734126 -1.296638 -1.694824 0.652494 2.539943 -2.527749 -2.223480 0.266244 2.262598 -1.048309 -5.191186 -2.983986 -2.113451 2.598017 -0.413478 -1.226239 -3.614895 0.556573 2.352112 -0.733814 -1.937211 0.234162 1.386460 2.451256 1.391895 -0.110188 0.097337 1.218978 5.306308 1.007720 -1.750752 0.394345 -0.722820 -0.500608 1.305587 -1.339858 -0.657964 -0.826051 -2.877645 0.652966 3.730779 -1.715059 -0.655334 1.178416 0.904250 0.808392 11.176197 -0.212910 3.603773 2.595060 -3.647469 -0.169879 -1.499223 -0.116728 0.760420 0.668238 0.606956 -4.945269 -2.920370 2.456711 3.432845 2.272381 -3.289645 0.224021 -0.228712 -0.397170 -0.579317 -0.046400 0.733659 -0.252916 -2.329415 -1.000336 3.120165 5.753761 -1.580947 -2.422706 2.085678 0.610262 -0.861579 -2.052183 -1.494879 -1.237982 0.919224 2.254319 0.190295 2.080864 4.134023 -4.537903 2.602980 0.070170 -0.623749 2.772758 1.106134 -2.977130 -0.491198 -0.497220 2.375256 2.528536 -0.754905 0.072716 1.014426 -3.021636 -0.351424 1.030520 0.127085 -0.967841 1.433581 1.561051 -2.318505 -2.217378 0.372724 -0.564324 -0.668901 -0.995960 2.227902 -1.430605 -4.872870 3.588456 0.699068 -1.158681 0.853324 -1.866945 3.459668 -3.066132 -3.435376 2.395978 -0.394207 -0.621393 -0.483475 0.525142 1.938204 1.867443 2.205055 -3.029731 -2.668132 1.480658 -0.582085 2.703523 1.268447 0.503627 1.755104 -2.302123 -0.475090 -2.879438 -2.213712 1.402246 1.184175 -3.427749 -1.440091 -0.842900 3.310598 2.318055 -0.440263 -2.528610 -0.490441 2.780325 -3.279586 -0.435044 1.705461 2.420610 -3.995589 -0.121448 2.236564 -2.488958 -0.016937 -1.044727 -0.841687 -1.916920 -2.935875 1.948080 0.716454 2.142961 0.401796 0.624273 -0.167955 1.270747 0.839083 1.053491 1.219859 3.205571 2.946069 -0.794611 -1.078708 -3.540224 1.782194 -4.147228 -4.516566 2.441941 -0.748391 -1.957989 -0.054693 -0.414560 3.592331 0.756943 -0.124547 -0.158719 0.498363 +PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -10.531341 -5.533187 -0.180772 -25.045657 18.976702 26.746270 7.612789 -17.612143 -22.365847 -2.701476 11.388140 -24.670336 -6.296253 28.150778 -11.756855 22.311501 33.188131 -0.159188 -15.219181 -0.804942 27.188201 4.213908 35.571645 28.242793 -23.468206 -2.854109 2.481311 13.876673 6.166255 7.630505 0.364723 -14.758992 11.787337 -24.183612 -10.540183 -10.801371 4.512953 2.589527 20.738031 -31.744842 5.686080 -1.307863 -8.983054 -7.048985 -8.836758 -7.127866 19.601434 22.821574 -3.394277 3.878398 20.989855 8.026091 -6.426703 5.957530 5.854039 2.576845 4.581881 0.204358 -6.440189 -16.226427 -2.522756 -1.358039 1.935653 25.111726 27.935079 4.401123 0.190263 16.649336 1.408123 5.484372 11.893703 4.803471 -7.975124 7.045309 10.754763 -28.054692 -1.630098 -32.973211 -6.307123 -28.074236 -13.344311 1.299663 10.528432 2.728724 17.254433 2.634983 23.544286 -3.349125 -8.021632 23.039393 28.646790 -22.977547 -10.141958 -15.378260 -15.332299 6.155401 -14.062231 5.990600 3.896408 3.977285 -20.984606 -11.777404 4.661142 13.607538 -9.419766 -19.292468 4.954233 19.114340 -18.208836 -17.287086 2.811119 19.979483 -7.829516 -40.405855 -20.641921 -16.777802 16.869189 -2.866474 -7.333415 -25.612563 2.988943 16.613960 -5.480431 -16.148074 4.793141 13.690537 18.372897 12.195979 1.335807 1.892159 9.114975 41.697487 8.107250 -12.444243 1.942138 -5.674786 -3.015018 11.577254 -11.329529 -6.377800 -2.396013 -22.707338 7.300713 27.391039 -12.218865 -7.190039 12.315018 6.981646 6.262143 89.457959 0.467614 29.195167 20.550076 -26.771244 1.649971 -12.518075 -1.064769 6.306149 5.712598 1.660519 -39.851796 -21.927304 18.122414 24.510603 17.607635 -28.612450 -1.033829 -1.349190 -2.142951 -4.657948 -2.046195 6.706289 0.076836 -18.006207 -6.797517 25.621251 47.806353 -12.267723 -12.840468 17.584077 10.327963 -9.477265 -23.488094 -12.006203 -12.536808 6.010580 17.400146 1.697777 15.341024 31.240920 -34.604689 18.432354 0.532686 -1.921914 19.557742 9.687408 -24.318776 -15.762420 -3.811440 17.182794 23.509725 -6.893876 3.511789 7.714586 -21.834859 -1.739986 8.217730 -1.328227 -4.878685 9.855559 6.798226 -14.692293 -16.691383 6.035192 -7.366427 -3.514873 -5.120581 16.055627 -6.653998 -34.395360 26.585928 2.734748 -9.534856 5.122134 -12.796598 29.186572 -22.247071 -26.181737 19.375273 -3.092823 -5.720736 -5.799294 5.051151 14.905740 14.524970 14.952651 -19.515790 -25.005249 12.767817 -5.893017 20.184012 9.322047 2.847763 13.771815 -17.005696 -4.868715 -24.988000 -19.626402 8.163463 8.102301 -27.928602 -11.407886 -5.608221 25.324046 15.257129 -2.246322 -22.052829 -2.847224 22.978506 -25.178359 -3.876870 13.944897 18.938820 -31.246106 0.275313 18.359060 -21.783193 0.980098 -8.803681 -4.124016 -13.933176 -23.761069 13.494869 7.176195 16.979049 1.881518 6.042062 0.549836 8.926421 7.684869 8.745907 6.250814 26.714292 24.615638 -8.014871 -11.368310 -26.827309 12.572954 -30.705076 -35.821885 18.953979 -3.383407 -14.739807 0.714925 -0.342417 27.597352 4.881569 -0.423614 -2.207957 2.993625 +PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -2.880953 -1.929319 0.965921 -7.030998 4.872505 6.718559 2.064049 -5.107000 -6.457661 -0.263074 3.127186 -6.581570 -1.046390 7.699831 -3.388710 6.115222 8.550300 0.738318 -4.464084 -0.553111 7.283018 1.425644 9.620313 8.043820 -6.474376 -0.619994 0.658608 3.846767 2.552333 2.296559 -0.856598 -2.950185 3.223408 -6.755936 -2.742705 -3.448375 1.021744 1.208850 5.758612 -8.267993 1.674540 -1.048253 -2.055206 -1.742923 -2.060691 -1.683379 5.187507 6.209235 -0.839764 1.533729 5.574974 1.893500 -1.362988 1.618376 1.850024 1.313006 2.129246 -0.021711 -1.633421 -4.182331 -0.758479 -0.733812 1.056714 7.047131 7.410097 1.469997 -0.100371 4.062412 1.292227 1.130868 3.654043 1.464260 -2.555444 1.920210 2.636036 -8.145534 0.950340 -8.928151 -1.590872 -6.901694 -3.541803 0.482857 3.142679 0.363988 4.740612 0.960282 6.661118 -1.047045 -2.293084 5.792482 7.691732 -6.842462 -2.748326 -3.610305 -4.394881 1.573467 -3.731539 1.636461 0.246033 1.383780 -5.664131 -3.481281 1.006507 3.767968 -2.689087 -4.142384 1.511261 5.353936 -5.290338 -5.024822 0.835699 5.033320 -2.233293 -10.595980 -5.236301 -4.829601 5.551630 -0.868415 -2.487677 -7.202345 0.875418 4.604701 -1.567275 -4.023810 0.561599 2.956888 4.750375 3.186954 -0.122455 0.125460 2.147186 10.943150 2.244385 -4.011837 0.839757 -1.171947 -1.244244 3.085383 -3.274076 -2.022335 -0.504404 -6.299831 1.201120 7.107161 -3.658528 -1.398384 4.039517 2.528955 1.530346 22.842646 0.168576 7.739990 5.786659 -7.200121 0.029968 -2.945411 0.284040 2.238341 1.745334 0.449980 -10.440664 -6.275833 4.625922 7.026035 4.935770 -7.188548 -0.547850 -0.600883 -0.715094 -0.654906 -0.500805 1.488448 -0.382603 -4.970592 -1.934115 6.306386 11.951716 -3.320058 -3.930268 4.220022 1.522917 -2.599248 -5.373475 -3.293710 -3.250023 1.948030 4.091591 0.472137 4.390799 8.667834 -9.505361 5.475187 -0.470530 -0.735658 5.300709 2.572585 -6.472822 -2.579881 -1.369678 4.366128 5.681252 -1.755876 0.187191 2.880433 -6.291995 -0.687180 2.028785 -0.135988 -1.805433 2.886900 2.848874 -4.194840 -4.248442 1.496004 -1.365324 -1.320615 -1.281515 4.796257 -2.781728 -9.557507 6.886515 0.944576 -2.656753 2.035309 -3.391936 7.186149 -6.370759 -6.956168 5.105852 -0.295552 -1.224391 -1.750895 1.332714 4.330535 3.475506 3.803712 -5.840120 -6.009345 3.231337 -1.896335 5.560950 2.673474 0.336665 3.813151 -4.683729 -0.988667 -6.467835 -4.162987 1.796683 2.086220 -7.057750 -3.287379 -1.606359 6.953761 4.646781 -0.504788 -5.152481 -0.314340 6.233637 -6.930297 -1.292397 3.750432 5.226654 -8.050287 0.344506 4.871575 -5.978047 0.283469 -2.172175 -1.657434 -3.361691 -5.756936 4.584486 1.850356 4.774764 0.224297 1.694905 0.265826 2.854891 1.982534 2.292626 2.279229 7.225638 6.567538 -1.716452 -2.839255 -7.269700 3.573231 -8.505284 -9.160161 4.800576 -0.640813 -4.443248 0.376567 -0.336776 7.803397 1.749393 -0.563228 -0.489289 1.101145 +PE-benchmarks/find-k-closest-elements-given-value.cpp__main = -1.114550 -1.188733 0.040353 -2.861091 2.108359 1.584365 1.034295 -1.284579 -3.455860 -0.456060 1.215321 -3.016972 -0.456438 3.551673 -0.962369 2.621404 4.383068 0.855131 -1.572177 -0.513787 3.197575 -0.774651 4.004213 3.756675 -2.641279 -0.011115 -0.053096 1.265966 0.749018 1.232885 -0.346038 -1.671575 1.378615 -3.014659 -0.564786 -2.216107 0.221453 1.038286 2.512281 -4.474784 0.884341 0.311333 0.430309 -0.847418 -0.802521 0.625930 2.096919 2.558384 -0.710457 1.289748 2.500943 0.314222 -0.372866 0.702237 0.956377 0.912612 0.919692 0.587048 -1.262604 -1.157942 -0.453546 -0.761105 0.643381 2.595584 3.405181 0.154811 -0.203636 1.546167 0.674364 0.670779 1.822437 0.463790 -0.594855 -0.272189 1.378742 -3.719138 -0.253683 -5.509919 -0.563755 -6.305937 -1.830918 0.244134 2.530254 -0.385831 1.570353 -0.015488 2.928011 -0.751468 -0.848825 2.443437 3.245431 -2.584895 -1.391336 -1.669151 -1.837556 0.873512 -1.411172 0.006492 1.905334 0.242346 -2.562647 -1.462163 1.308105 1.282473 -1.080904 -1.806481 0.711011 2.516450 -2.546098 -2.224938 -0.226474 2.360612 -0.549947 -4.381282 -0.821182 -2.159188 1.599112 0.167840 -1.402072 -2.580736 0.544290 1.449699 -1.182890 -1.386294 -0.304314 2.171388 1.483068 1.412415 0.300367 0.112765 0.681332 4.356854 1.276063 -2.102204 0.416888 0.050739 -0.805093 1.314063 -2.010313 -1.542994 0.863002 -2.776956 0.765792 1.863679 -1.830414 -0.538897 2.639940 1.177239 0.568893 9.547994 0.014534 3.814385 2.414808 -2.771158 1.223344 -0.837991 0.242329 0.987022 1.541552 -0.084970 -4.148779 -2.734615 1.720561 3.056580 2.343390 -3.592341 -1.280872 -0.450889 -0.158755 0.331254 -0.092307 0.575761 0.227236 -2.298042 -0.703834 1.994080 6.007896 -1.314709 -1.316479 1.427775 1.326836 -1.492096 -3.578222 -1.282101 -2.311162 0.716598 0.636776 0.047036 1.940607 3.833349 -5.852396 2.704847 -0.779491 -0.257503 2.397038 1.156569 -2.813321 -3.958377 -0.966934 1.620811 3.589899 -0.548187 0.398521 1.416836 -2.625169 -0.262274 0.437399 -0.039050 -0.888137 1.266492 0.418952 -1.623136 -1.252865 0.520012 -0.829441 -0.733143 -0.250446 1.913924 0.336823 -4.774527 2.610907 0.146780 -1.090634 0.683339 -0.577084 2.601086 -2.506955 -2.905394 1.870934 -0.070048 -0.907426 -1.407981 0.366896 1.893812 0.570113 1.123572 -1.606169 -3.410045 2.177882 -1.316439 2.627887 1.287393 -0.497272 1.992215 -0.796176 -0.766737 -2.930110 -1.520982 -0.084591 -0.151092 -2.580780 -0.961426 -0.814084 2.796261 2.015880 0.363233 -1.930207 -0.284635 3.295125 -2.876414 -0.481973 2.121050 1.630471 -2.848229 0.852979 2.647788 -3.357308 0.114922 -1.388288 -0.626941 -1.030890 -1.886515 2.006600 0.535443 1.723481 -0.248656 0.516564 0.048614 1.238899 0.963467 0.468598 0.420304 3.805236 3.531793 -1.189557 -0.830349 -2.791417 1.344688 -3.421351 -3.563600 1.274077 0.437461 -2.682990 0.360553 0.422765 3.319167 0.492651 -0.156338 -0.626475 0.554395 +PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -4.695814 -4.756886 -1.663082 -9.480008 6.798370 7.789909 3.434766 -7.255251 -10.103506 0.136088 5.297325 -9.214478 -0.746053 11.752578 -4.164722 10.911923 13.062211 1.580400 -5.958121 -1.709365 11.971519 0.798883 14.317978 12.007586 -9.468717 -1.200291 1.178979 4.263931 4.297442 1.073664 -0.247728 -4.052226 5.951117 -12.662912 -4.287665 -5.925878 1.976411 3.632388 11.101247 -12.425108 2.787644 -2.610940 -0.658488 -2.551107 -4.165416 -0.552359 5.997581 9.653745 -2.506650 4.134608 9.217259 1.310048 -2.195687 2.629467 1.628298 2.248156 0.435006 2.186689 -2.720602 -6.125468 -0.891752 -0.827473 2.360785 9.703334 11.596871 1.250880 -0.205169 7.980534 2.427301 2.283910 6.045481 1.959803 -3.078491 0.393581 5.113834 -13.812398 -1.455283 -17.646123 -3.190121 -15.493555 -5.069575 1.419782 5.594879 -3.106019 7.662132 2.496399 9.607354 -0.940366 -4.150502 9.662953 10.867853 -10.279948 -4.538194 -5.394470 -6.196925 2.841190 -5.847942 2.697880 4.427881 1.391809 -8.707491 -6.553341 1.785493 5.676660 -3.786888 -9.032736 2.520333 7.186408 -7.427404 -8.525206 0.842001 7.445655 -3.592026 -15.579959 -5.500251 -7.262296 8.076271 -0.759279 -3.652162 -10.598183 0.678634 5.919904 -2.745788 -7.155733 3.660590 4.021630 7.135381 5.569509 0.612129 0.186712 2.532764 17.507693 3.773609 -6.871780 0.990951 -1.186640 -2.063735 5.434003 -6.356073 -4.529769 2.595211 -10.198320 3.762290 9.271878 -5.538372 -2.820429 11.343810 4.082542 1.887402 31.151536 1.352507 11.959746 9.600267 -9.770474 0.455775 -5.226472 1.560901 4.480680 3.787535 -0.864750 -13.790938 -9.687294 6.265860 10.005813 7.700891 -11.914700 -4.271363 -0.863104 0.125644 -0.402747 -1.658395 2.635959 0.075080 -7.583039 -2.056745 9.254421 17.386134 -5.915735 -2.719730 6.062508 5.260141 -4.772075 -10.336020 -5.645805 -8.462197 2.550955 5.528792 1.548256 6.376133 12.943598 -15.492704 7.781337 -1.458703 0.465910 5.889266 5.494576 -10.719727 -7.709289 -1.949373 5.384995 8.801811 -2.587739 2.124941 5.605296 -9.427317 -0.617010 2.506971 -0.982533 -2.468211 4.240601 2.534337 -4.932925 -5.587352 4.969043 -2.604090 -3.015449 0.481283 7.541996 -1.450272 -14.398732 8.866255 -0.024932 -4.900773 3.586251 -3.965716 11.493200 -9.346952 -9.834093 7.944780 -0.221971 -0.782796 -3.474039 2.850660 6.400052 4.102744 5.380517 -6.873189 -10.081649 5.210366 -3.285647 8.116546 3.957973 -0.837901 5.751499 -9.785632 -2.324069 -10.807813 -4.894596 0.570320 2.387386 -10.452953 -5.905124 -1.686902 10.572403 6.724033 0.243952 -8.023830 0.163104 9.726865 -11.879535 -1.838550 6.354952 9.709403 -11.159055 1.578214 7.931844 -10.458322 1.210763 -3.296575 -1.475046 -3.960555 -8.149402 7.259169 2.932459 7.274552 -1.087319 2.545529 2.136376 4.882657 3.769829 3.546879 2.362269 11.039194 10.839107 -3.562455 -6.207793 -10.768965 4.332105 -12.462613 -13.709864 6.949911 0.323322 -7.981042 1.326392 0.330514 12.095741 2.117921 -1.190500 -1.975729 1.321930 +PE-benchmarks/m-coloring-problem.cpp__main = -0.372667 -0.291959 0.394338 -0.996874 0.924171 0.342691 0.487590 -0.098384 -1.435089 -0.493362 0.277622 -1.370305 -0.583165 1.598147 -0.278312 0.829763 2.018628 0.586530 -0.487753 -0.168441 0.986396 -0.709132 1.605468 1.588986 -1.036276 0.126607 -0.242603 0.535999 -0.053446 1.005735 -0.280379 -1.001870 0.504261 -0.789462 0.057323 -0.981440 -0.012557 0.412831 0.447279 -2.169805 0.353110 0.671344 0.455194 -0.393691 -0.184743 0.465886 1.175646 1.062585 -0.254899 0.568047 0.743440 -0.051682 0.094973 0.357884 0.537521 0.363536 0.474606 -0.004990 -0.897688 -0.154316 -0.296062 -0.880974 0.113184 1.004542 1.421218 0.028595 -0.147581 0.273104 0.035115 0.359612 0.662911 0.188359 0.095038 -0.212724 0.601791 -0.988351 -0.107425 -2.009048 -0.202311 -2.931452 -0.976985 -0.131892 1.475863 0.452816 0.421721 -0.343946 1.315333 -0.378818 -0.126777 0.839262 1.590970 -1.028536 -0.690969 -0.783322 -0.676024 0.455689 -0.595819 -0.273924 0.800344 0.036378 -1.155540 -0.557162 0.768906 0.324433 -0.436079 -0.350384 0.193457 1.231397 -1.337903 -0.817340 -0.613613 0.752095 0.028841 -1.772488 0.107199 -0.574010 0.246612 0.404438 -0.707578 -0.851726 0.469223 0.451193 -0.617189 -0.374660 -0.884710 1.325370 0.148665 0.388254 0.282107 0.115527 0.265879 1.344183 0.711405 -0.856906 0.162215 0.183647 -0.403662 0.410222 -0.786614 -0.781171 0.254507 -1.234987 0.120446 0.407091 -0.902014 -0.161524 0.154572 0.400156 0.375153 3.056498 -0.171253 1.414417 0.702867 -1.221298 1.048945 -0.170328 -0.058550 0.232072 0.879832 0.157145 -1.207985 -1.089069 0.701322 1.394127 1.060094 -1.254026 -0.478016 -0.314150 0.051044 0.218207 0.232021 0.335786 0.201169 -1.053832 -0.299320 0.576424 2.483178 -0.465433 -0.887338 0.544602 0.318687 -0.365182 -1.490124 -0.380960 -0.789867 0.171276 -0.031934 -0.158569 0.705902 1.657480 -2.574851 1.386249 -0.424777 -0.293385 1.170042 0.139206 -0.933762 -1.929165 -0.439800 0.852387 1.807422 0.065915 -0.018722 0.351221 -1.140123 -0.162688 0.060752 0.208988 -0.404154 0.643635 -0.094725 -0.840285 -0.559429 -0.366526 -0.323606 -0.352733 -0.297689 0.708082 0.673920 -1.968101 1.214233 0.019806 -0.411638 0.209320 0.074339 0.806057 -1.014798 -1.364071 0.572462 -0.258442 -0.840708 -0.706662 -0.004379 0.716163 0.038524 -0.065049 -0.349465 -1.453538 1.162474 -0.413192 1.191873 0.597571 -0.161204 1.032676 1.001269 -0.565150 -0.809045 -0.600980 0.021166 -0.684149 -0.730668 -0.177877 -0.485585 1.117705 1.063889 0.282937 -0.577096 -0.349695 1.495602 -0.858497 -0.395142 1.144059 -0.187388 -0.771695 0.575952 1.350877 -1.424542 -0.190211 -0.827278 -0.138031 -0.342751 -0.763783 0.623404 -0.164352 0.447537 0.073744 0.045430 -0.312412 0.419333 0.325181 -0.120246 -0.076095 1.829678 1.291461 -0.687503 0.258398 -1.066434 0.589235 -1.502874 -1.172263 0.226577 0.444336 -1.091659 0.170373 0.277633 1.019043 0.042503 -0.127781 -0.413546 0.157088 +PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -0.473019 -0.662004 0.026456 -1.414546 0.693448 0.425526 0.361394 -0.397631 -1.555812 -0.429259 0.552855 -1.423723 -0.200373 1.524095 -0.470883 1.045341 1.865651 0.343409 -0.643478 -0.210062 1.403292 -0.492720 1.675181 1.690570 -1.302850 -0.102970 -0.204383 0.958257 0.540315 0.403512 0.383568 -0.617967 0.320091 -1.135690 -0.105801 -1.086111 0.342435 0.679263 0.827708 -2.128855 0.371891 0.431535 0.510091 -0.342912 -0.313395 0.166379 0.731180 1.229575 -0.554520 0.506973 1.351136 0.220970 -0.125028 0.263236 0.036108 -0.019010 0.153158 -0.159514 -0.525470 -0.419974 0.079711 -0.612402 0.473430 1.214436 1.703497 0.014111 0.043909 0.621796 0.402020 0.366868 0.922522 0.155467 -0.511739 -0.186363 0.649923 -1.577471 -0.040420 -2.570790 0.016859 -2.834424 -0.814446 0.065036 1.467906 0.555813 0.432994 -0.110506 1.225229 -0.224867 -0.298276 1.443374 1.230596 -0.796474 -0.613279 -0.973548 -0.999568 0.779378 -0.749906 -0.077382 0.612250 0.624843 -0.995422 -0.365737 0.438382 0.492200 -0.526289 -0.724184 0.243491 1.034168 -1.222449 -0.931011 0.068139 1.279242 -0.067930 -2.004071 -0.205109 -1.224933 0.497890 -0.050689 -0.322547 -0.697104 -0.029143 0.379391 -0.389356 -0.246158 -1.134834 0.979493 0.521201 0.517919 0.144286 0.129016 0.262230 1.633679 0.160501 -0.966309 -0.005900 0.220062 -0.393153 0.491567 -1.096453 -0.677321 0.692856 -1.273481 0.150382 0.602130 -0.748443 -0.531826 0.703114 0.450384 0.389030 4.330834 0.318334 1.711414 1.189222 -1.029525 0.716236 -0.182962 0.139533 0.653680 0.561302 -0.214451 -1.611880 -1.174356 0.483721 1.286186 1.026997 -1.179547 -0.632256 -0.043792 -0.158678 0.180231 -0.040403 0.282464 -0.159159 -0.978761 -0.257417 1.010452 2.308864 -0.073264 -0.018283 0.542461 0.925497 -1.014625 -1.555119 -0.425144 -0.984222 0.263852 0.123951 0.065494 0.854224 1.630237 -2.554240 1.146885 0.110414 0.361036 0.765992 0.181235 -1.346997 -2.285674 -0.277269 0.606407 1.587936 -0.585326 0.365952 0.763110 -1.148504 -0.052787 0.290273 -0.120616 -0.356054 0.503036 -0.019056 -0.426188 -0.633223 0.296359 -0.666764 -0.091843 -0.199542 0.815515 0.362601 -1.586526 1.037178 -0.301358 -0.586918 0.182355 -0.437750 1.120421 -1.326957 -1.106313 0.714525 0.035095 -0.639855 -0.897399 0.184189 0.867167 0.042961 0.178692 -0.545319 -1.364580 0.891372 -0.831718 0.869616 0.576190 -0.368236 0.658764 0.133032 -0.187295 -1.277087 -0.650228 -0.241571 -0.142385 -1.177842 -0.184759 -0.282712 1.082149 0.945757 0.051921 -0.947526 0.351211 1.548811 -0.747421 -0.642274 0.752750 -0.000832 -1.188522 0.511066 1.026743 -1.749874 0.197645 -0.888662 0.058052 -0.080464 -0.882493 1.023843 0.342336 0.850228 -0.075427 0.281835 -0.063891 0.665870 0.555913 0.114824 0.152821 2.000475 1.213012 -0.222137 -0.258778 -1.348217 0.387771 -1.568528 -1.468836 0.334998 0.281069 -0.989492 0.379657 0.172497 1.487869 0.366886 0.166337 -0.277986 0.376061 +PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -1.354810 -1.380088 0.123217 -2.960362 1.794264 1.752004 0.950301 -1.548070 -3.161451 -0.267099 0.866136 -2.605306 -0.061651 3.655128 -0.917201 3.243322 4.363102 1.020200 -1.559347 -0.235526 3.565470 -1.183782 3.879209 3.584709 -2.459886 -0.331877 -0.018967 1.827346 0.678266 1.271550 -0.347090 -1.129771 1.138592 -3.700615 -0.707526 -2.597886 0.646770 1.639746 2.631367 -4.455985 0.932827 0.088792 0.561638 -1.038751 -1.145302 -0.906869 1.806779 2.775053 -0.567827 0.826077 2.181953 0.224876 -0.361793 0.863704 0.841742 1.468986 0.372658 -0.058378 -1.226953 -1.242951 -0.296261 -1.062012 1.331690 2.617275 3.425398 0.365647 0.033380 2.059336 0.509605 0.460860 1.840764 0.311136 -1.355519 -0.402768 1.323064 -4.676459 0.067140 -5.035082 -0.608965 -4.506596 -1.673520 0.108536 1.653663 0.236679 2.268821 0.299686 2.784821 -1.068972 -0.655908 2.521138 3.072880 -3.114916 -1.365525 -2.238987 -1.892060 0.923731 -1.581693 -0.328966 1.182769 0.385481 -2.382558 -1.827381 1.492208 1.886373 -1.036025 -2.358053 0.779154 2.640959 -2.329575 -3.283189 -0.106685 2.197344 -1.476960 -4.127233 -0.370471 -2.386443 1.446170 -0.002552 -1.052492 -3.405001 0.439908 2.018578 -0.757835 -2.030340 -0.571465 1.936193 1.385370 0.903238 0.259509 -0.050909 0.239083 4.745642 1.340869 -1.976300 0.261186 0.403662 -1.300802 0.963685 -2.126295 -1.866330 0.630405 -3.109144 -0.598167 2.442167 -1.799940 -0.139547 2.820859 1.320879 0.981205 9.751495 0.344971 3.170220 2.422127 -2.961065 1.543781 -0.797467 0.260461 1.028958 1.339823 -0.203472 -5.291644 -2.907035 1.357699 2.840860 2.491429 -2.783548 -1.974582 -0.997001 -0.051156 0.621812 -0.490887 0.755608 -0.188029 -2.527457 -0.592357 1.888836 5.938327 -1.486372 -0.386093 1.857967 0.881581 -2.244410 -4.369627 -1.528204 -2.864187 0.403346 0.030662 -0.074240 1.714057 3.825100 -4.447416 2.713228 -1.111240 -0.188009 2.302129 0.656369 -2.661723 -3.770650 -1.004253 1.758089 3.559618 -1.077293 0.831182 1.356348 -2.654463 -0.149659 0.370765 0.063628 -0.639212 1.221672 0.120746 -1.854266 -1.420051 1.294510 -1.128982 -1.268685 0.115965 1.811620 0.474604 -3.036865 2.676274 0.048372 -0.826511 1.767387 -0.502043 2.945792 -2.735300 -2.979532 2.299623 0.491721 -0.030012 -1.201528 0.643457 2.283929 0.635351 0.009711 -1.601531 -3.245851 1.452438 -1.254390 2.318922 1.137773 -0.477834 1.454572 -0.336930 -0.798826 -2.866627 -1.476765 -1.308111 0.171027 -2.648266 -2.167528 -0.611411 3.273574 2.229120 0.406725 -1.817557 0.300405 3.467932 -2.918086 -0.680591 2.129293 1.124520 -3.126410 0.051597 2.664396 -3.558076 -0.065354 -1.042557 0.053685 -0.637193 -2.180319 1.942395 0.431118 1.803258 -0.214351 0.518815 0.302997 1.186043 1.472263 0.774987 0.333274 4.093410 2.519396 -0.591521 -1.400397 -2.732355 0.844035 -3.547271 -3.173877 1.154660 1.157595 -2.524158 0.751230 1.061745 3.383090 0.577545 0.340325 -0.099502 -0.443966 +PE-benchmarks/egg-dropping-puzzle.cpp__main = -1.152710 -1.721119 -0.629938 -2.754531 1.926582 1.741682 1.084106 -1.836253 -3.457600 -0.024281 1.742704 -3.232810 -0.024931 3.311300 -0.981573 3.093862 4.237103 0.592488 -1.846498 -0.556187 3.264568 -0.674850 4.220080 3.874451 -2.358778 -0.125831 -0.628080 1.414234 0.966464 -0.094442 0.313212 -0.535282 1.480007 -3.743225 -1.313465 -1.850658 0.442533 1.235829 3.128134 -4.173143 0.848181 -0.579708 0.420093 -0.704623 -1.126207 0.807373 1.576863 2.629302 -0.378799 1.439668 2.599386 -0.155513 -0.292658 0.783495 0.547491 0.504712 0.597526 0.599715 -1.031684 -1.443745 -0.167272 -0.502810 0.845220 2.515994 3.508593 0.381190 -0.223790 2.158504 0.994589 0.695847 2.145508 0.440549 -1.318284 -0.256946 1.160514 -4.443648 -0.226670 -5.393430 -0.765291 -5.177110 -1.692359 0.780125 2.587906 -0.639637 1.748870 0.842247 2.602496 -0.275372 -1.366215 2.901054 2.868872 -2.627425 -1.460969 -1.289594 -1.675458 0.826546 -1.360951 0.590931 2.150500 1.155986 -2.450862 -0.908137 1.392477 1.363703 -1.016796 -2.456399 0.922743 2.245855 -2.012188 -2.305738 0.738462 2.906742 -0.649118 -4.393411 -0.613635 -2.388786 2.048619 -0.051037 -1.169291 -2.437263 0.198960 1.010316 -0.905224 -1.220210 -0.188869 1.583960 1.608700 1.686928 0.166315 0.554724 0.666350 4.675126 0.489882 -2.072161 0.524168 -0.182564 -0.587989 1.909431 -1.862558 -1.641524 0.737000 -2.996200 1.356047 1.927862 -1.603738 -0.994667 2.671431 1.826816 0.201660 9.088263 0.591900 4.027363 2.989538 -2.521276 0.854066 -1.483054 0.761517 1.312122 1.169996 -0.843508 -4.421377 -2.805754 1.595190 2.869603 2.180871 -3.835142 -1.477171 -0.065717 -0.200742 0.273867 -0.321988 0.724019 0.111214 -1.800647 -0.534040 2.568954 5.967893 -1.121854 0.174656 1.594413 0.968392 -1.597961 -4.161530 -1.517019 -2.008726 0.751086 0.840476 0.653269 1.628415 3.546832 -4.728131 2.311640 -0.617105 0.644872 2.239339 1.644804 -3.301491 -4.122966 -1.175309 1.230246 3.306408 -0.979970 0.025304 1.825133 -2.465245 -0.225334 0.739721 -0.607355 -0.540190 1.103748 0.333836 -1.030643 -1.088575 1.380914 -0.859965 -0.151114 0.212440 2.180196 -0.180945 -3.676330 2.194228 -0.095506 -1.490098 0.705665 -0.984992 3.163113 -2.171727 -2.299971 2.006164 -0.157278 -0.739786 -1.738965 0.653832 1.648377 0.642718 1.375037 -1.637934 -2.772011 1.911994 -1.723088 2.304724 1.196189 -0.782250 1.467992 -1.657323 -0.903706 -2.995818 -1.629107 -0.565109 0.231576 -2.824112 -0.616974 -0.558535 2.750462 1.510180 0.552726 -2.540546 0.669664 3.235341 -2.828322 -0.958354 1.838875 1.793174 -3.199871 1.074731 2.288482 -3.595230 0.761630 -1.038172 -0.751747 -0.969415 -1.977676 2.215278 1.283788 2.072629 -0.839819 0.892039 0.873379 1.487139 0.966679 1.142928 0.611298 4.031017 3.252917 -0.583458 -1.606854 -2.954162 1.252823 -3.219368 -3.640862 1.632190 1.136009 -2.544962 0.460808 0.493182 3.474139 0.727649 -0.885472 -0.865362 0.874281 +PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -4.484517 -6.324312 -4.911797 -9.293550 6.402589 8.361723 3.777020 -7.541700 -11.690630 1.044236 5.956495 -12.295096 0.599907 11.659199 -3.312143 12.499893 15.390656 1.603170 -7.112848 -0.595955 12.212553 -1.345468 15.288938 13.437087 -7.207942 -1.102541 -3.228405 4.503949 2.020216 -1.913100 2.398249 -1.621347 5.341837 -14.849874 -5.821963 -6.008040 2.040914 4.752358 12.457309 -14.698328 3.034751 -1.918137 2.542580 -3.000588 -4.939258 0.015320 5.173086 9.411213 0.101828 3.534870 8.242706 -0.216125 -1.054210 2.911428 1.544837 2.246854 0.379901 0.834204 -3.729725 -6.348358 -0.373731 -0.009237 3.188672 8.734289 12.370171 2.309758 -0.656364 9.173569 3.395050 2.459220 7.154979 1.339460 -6.319367 -0.397461 3.097214 -16.427363 -1.105569 -16.546238 -2.752332 -14.655576 -5.338090 3.177473 7.308428 -0.628769 7.468288 3.229513 8.835916 -1.563462 -4.933729 11.021505 10.190554 -9.871130 -5.122750 -5.535066 -5.400260 2.520024 -4.546140 2.197945 8.255068 4.451465 -8.656756 -2.860173 4.310488 5.879473 -3.231982 -10.305383 3.913111 7.554949 -5.531090 -9.250058 4.159831 11.159378 -3.719260 -16.108312 -2.966503 -8.496268 4.338108 -0.343788 -3.742752 -10.370778 0.519699 3.858701 -2.431994 -5.363843 0.241900 4.993677 6.018973 5.365805 0.648303 2.946344 2.241040 18.580805 0.324729 -6.745529 2.275424 -0.805532 -1.875103 6.637525 -6.157939 -6.323102 0.726080 -11.670125 4.777881 8.708075 -5.364523 -2.930876 7.660377 6.963657 0.880552 34.467279 2.266437 14.647275 11.153042 -9.462705 3.465336 -6.296373 2.491644 3.590049 3.101402 -3.280887 -17.669299 -10.093802 5.750040 9.858635 7.726491 -12.479858 -4.731444 -0.515675 -0.905812 0.521049 -1.765870 3.144427 0.302150 -6.227725 -1.660207 10.257245 22.687117 -4.332667 4.009939 6.872482 3.632198 -5.901020 -15.747983 -6.074112 -8.629283 2.082090 3.017115 2.775988 5.164391 12.339331 -12.186462 7.959029 -1.699233 3.018969 8.320794 5.879787 -12.249650 -14.163273 -4.763791 5.007293 11.799376 -5.336325 -0.051682 5.601785 -8.292202 -0.636991 3.329453 -2.515261 -1.095231 3.455729 0.227434 -3.176127 -3.766531 7.127826 -3.713920 -1.202532 1.161329 7.519523 -0.110936 -8.802427 8.203350 0.189845 -5.003253 3.059605 -3.915460 11.713770 -7.200500 -7.693033 7.773291 -0.089853 -1.283107 -4.957440 2.754823 6.064806 3.596452 5.315678 -6.014062 -9.623059 6.366169 -5.564302 8.036354 3.850795 -2.532234 3.114735 -6.639832 -3.740313 -10.664851 -8.158040 -4.308302 2.547850 -11.036531 -2.931366 -1.500617 10.571343 4.637365 2.021282 -10.962465 2.859639 11.338691 -9.355631 -2.968173 6.303535 4.798407 -13.232453 1.527832 8.003102 -12.869443 3.101767 -2.891163 -1.319212 -3.934620 -7.874004 6.837539 4.983197 7.429200 -3.348803 2.597860 4.306279 4.847738 4.440738 4.939600 2.671179 14.637394 7.293556 -0.455989 -7.003949 -10.621580 3.946344 -11.300615 -13.092986 6.489039 4.981508 -8.957391 1.583173 2.930318 12.492458 2.192752 -2.996626 -2.825013 1.916176 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = -0.997325 -0.427641 2.245653 -2.882917 1.663214 0.105627 0.778977 0.066652 -2.789265 -1.511740 0.141700 -2.043310 -1.714213 3.285551 -1.286762 0.171349 4.657414 1.795747 -0.849147 -1.457481 2.316704 -1.802271 3.720858 4.032269 -3.312007 -0.152001 0.959499 2.726904 1.597767 2.274983 -0.326055 -1.653032 0.680274 -0.508355 1.474110 -3.172771 0.496634 0.756682 -0.690677 -5.257893 0.635881 0.171796 0.231151 -0.371922 0.057185 2.971557 2.864763 2.486023 -1.543708 0.788024 2.575920 0.958672 -0.125664 0.660094 0.441845 0.131234 1.925850 0.661757 -1.262572 -0.008663 -0.453771 -2.631535 0.719527 2.881551 3.927023 0.138607 0.207631 -0.118516 0.693845 1.017648 1.409799 0.413979 0.632340 0.047608 1.676697 -2.926639 0.127694 -7.053544 -0.030733 -8.493449 -1.888664 -1.474361 3.301264 -0.408826 -0.153197 -0.410178 3.151617 0.192558 0.464997 2.542207 3.565993 -1.495214 -1.254022 -2.128099 -2.131894 1.764017 -1.600121 -0.202557 1.536684 1.036270 -2.173653 -1.670690 1.259381 0.108170 -1.183481 -0.314568 -0.129677 2.993482 -3.315249 -0.727961 -2.132683 1.426318 0.674690 -4.356526 0.327813 -2.711424 3.019624 0.133993 -0.888674 -1.041193 0.460342 1.694430 -1.253092 0.220452 -2.609433 3.252788 0.688013 0.073595 0.063477 -0.084836 0.065281 1.787285 2.182572 -2.117504 -0.501277 0.969633 -2.272088 -0.257730 -3.243389 -0.786026 2.883834 -2.216046 0.313390 0.756514 -1.954208 -1.576675 2.007864 -0.307725 1.817738 8.481228 -0.249531 2.365268 1.408749 -2.588335 1.839243 0.605080 0.077705 1.494208 2.326412 0.398996 -3.203107 -2.544649 0.756539 3.001502 2.250036 -3.179198 -1.361745 -1.018534 -0.450620 0.238617 0.297672 0.517916 -1.130532 -1.752933 -0.829849 1.341442 4.317000 -0.380259 -3.079841 0.239833 1.441372 -1.618007 -3.019414 -0.443183 -0.560305 0.592341 0.099390 -0.397342 2.140110 3.764570 -8.202620 2.979655 -0.124955 -0.050553 2.079564 -0.183204 -1.394251 -5.064982 0.267371 2.234639 3.889552 0.122513 -0.322811 1.228015 -2.849199 -0.279535 0.232536 1.481049 -1.287229 1.309776 0.628344 -1.937837 -1.787558 -1.383355 -0.594180 -0.222584 -0.759685 1.417486 -0.000729 -6.564165 3.155649 -1.107803 -0.826486 0.366900 -0.501839 1.558677 -3.192232 -3.354619 0.897585 0.228756 -2.018740 -2.846040 0.093203 2.518715 -0.905450 0.677800 -1.437150 -3.807228 2.228531 -1.831073 2.013373 1.242808 0.162137 3.597741 1.294304 -0.493228 -2.992457 -0.402091 0.835360 -1.176989 -1.560911 0.209643 -0.727349 1.955234 3.395834 -0.279300 -0.541761 0.149999 3.968115 -2.353157 -1.858315 1.957797 0.801453 -1.067736 2.335175 2.461424 -3.866696 -1.505123 -2.248452 -0.967176 0.382376 -2.140473 2.022909 -1.170974 1.236108 0.694022 0.611304 -1.223297 1.664476 0.697049 -0.138643 0.182904 4.106256 5.410700 -1.817356 0.914223 -2.464334 1.477167 -4.091733 -2.515725 -0.171473 -0.272691 -1.019035 1.086881 -0.143410 2.501823 0.239573 0.271323 -0.706528 0.538310 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -0.881402 0.121039 0.588154 -1.861366 1.569455 1.629921 0.545433 -0.695436 -1.475741 -0.633115 -0.126747 -1.388409 -0.748355 2.462780 -0.742740 1.419256 3.525283 0.778324 -0.511404 -0.388693 2.289584 -1.357563 3.030746 2.653723 -2.132694 -0.248171 1.768319 1.301345 0.343483 1.650661 -0.700232 -2.115815 0.785647 -1.776756 0.417488 -2.182651 0.463875 0.421751 0.985203 -3.616319 0.444754 -0.766035 -0.447992 -0.588717 -0.724464 0.130194 2.685908 1.858362 -1.046262 0.177092 1.632434 0.879119 -0.606648 0.569097 0.396024 0.994893 0.708347 0.732315 -0.800506 -0.547866 -0.332617 -0.946885 0.700733 2.038561 2.812595 0.156956 0.280406 1.229091 -0.062054 0.380260 0.493201 0.270492 -0.048016 0.246472 1.102709 -3.608080 -0.488504 -5.707144 -0.519931 -5.171255 -1.208399 -1.016811 0.455362 -0.714674 1.323608 0.134674 2.232340 -0.276573 0.436941 1.926817 3.206762 -2.095517 -0.839980 -2.027794 -1.529981 0.782429 -1.148339 -0.155911 1.218729 -0.388487 -1.648766 -2.579716 1.190427 1.031868 -0.751606 -2.147781 0.142724 1.953325 -1.844684 -1.800950 -1.276960 0.631528 -0.940785 -3.648939 0.091520 -1.585187 1.806795 0.111056 -0.491003 -3.062247 0.317853 2.531774 -0.733891 -1.546040 0.421820 2.061448 1.154358 0.176002 0.346485 -0.476208 0.324324 3.258604 2.427100 -1.252735 -0.312744 0.311072 -1.710237 -0.267967 -2.091617 -0.849000 1.075147 -2.093104 0.071899 2.345382 -1.323629 -0.408711 2.918211 -0.484042 1.430990 8.243019 -0.290496 1.577673 0.859581 -3.016852 1.473685 -0.323828 -0.530357 0.560779 1.452787 0.595575 -4.163283 -1.887314 0.914543 2.049123 1.682435 -2.694240 -1.709177 -1.130642 -0.267060 0.139410 -0.331729 0.584380 -0.677526 -1.582300 -0.568281 1.732902 4.627505 -1.187147 -1.519660 1.073773 1.404590 -1.461680 -3.321986 -0.871122 -2.250442 0.244845 0.469638 -0.458840 1.421299 2.792026 -5.262229 1.905059 -0.709134 -0.602261 1.553305 0.329768 -1.166470 -3.402034 0.348175 2.469924 2.711174 -0.372865 0.820067 0.322802 -1.888359 -0.124996 0.174081 0.899205 -0.738835 0.861810 0.176462 -2.520619 -1.547881 0.332674 -0.650999 -1.341584 -0.192390 0.897235 0.325396 -4.566387 3.073723 -0.336134 -0.353965 1.188975 -0.442430 2.308650 -2.242766 -3.098930 1.471478 0.387948 0.220925 -0.804083 0.253946 1.985222 0.169716 0.756829 -1.045379 -3.703198 0.721746 -0.626249 1.447736 0.793106 0.598677 2.411890 -0.872637 -0.624913 -2.947950 -0.980868 0.188002 -0.032409 -1.649209 -1.592885 -0.446179 2.215078 2.335612 -0.070033 -0.829086 -0.341810 2.612733 -2.766560 -0.305780 1.575850 1.909786 -2.227678 -0.021672 1.906423 -2.530717 -1.118629 -1.036659 0.156529 -0.262413 -2.385208 0.749074 -0.797043 0.737164 0.680202 0.099942 -0.357438 0.999319 0.906085 0.596652 -0.049328 2.555341 3.139479 -1.370379 -0.500960 -1.787577 0.665202 -3.451589 -2.787794 0.595412 0.196273 -0.984152 0.463799 0.639554 1.860521 -0.336697 0.867081 0.121222 -0.804778 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.398091 -0.047478 0.798583 -0.925319 0.628319 0.208091 0.262225 -0.388846 -0.783032 -0.299414 0.048903 -0.540570 -0.371425 1.085847 -0.518050 0.411556 1.540916 0.511492 -0.315859 -0.544518 1.003474 -0.849208 1.322628 1.335000 -1.144703 -0.117419 0.733994 0.834303 0.650351 0.786574 -0.647241 -0.264146 0.330731 -0.760822 0.453263 -1.068594 0.202603 0.130398 0.226589 -1.584498 0.158957 -0.452113 -0.028336 -0.123435 -0.178812 0.913503 0.954267 0.854368 -0.438616 0.213448 0.915396 0.125489 -0.109720 0.244779 0.331472 0.433849 1.005259 0.687035 -0.351817 -0.078543 -0.217460 -0.805635 0.422660 1.060756 1.325874 0.070250 0.148506 0.300147 0.171478 0.164795 0.387077 0.174358 0.009745 0.230164 0.569345 -1.750467 0.293806 -2.514155 -0.287704 -2.598012 -0.557877 -0.569515 0.349565 -0.858856 0.484991 0.298352 1.085963 0.110761 0.151778 0.429709 1.269308 -1.021594 -0.433030 -0.670269 -0.681847 0.302267 -0.619040 0.013932 0.652463 0.013954 -0.735808 -0.845296 0.720605 0.420083 -0.373190 -0.274690 -0.058662 0.999295 -0.989503 -0.704300 -0.787145 -0.015354 -0.271114 -1.512819 0.390066 -0.891970 1.360543 0.021028 -0.297022 -1.020070 0.193109 1.085821 -0.353428 -0.468453 -0.258364 1.066768 0.482714 0.095885 -0.009584 -0.237118 0.058490 0.956012 1.146194 -0.665245 -0.202433 0.209185 -1.125818 -0.114431 -1.042523 -0.361364 0.982991 -0.855719 -0.049797 0.603655 -0.638038 -0.141474 1.693200 -0.064661 0.687235 3.104380 -0.168502 0.745142 0.337824 -1.084647 0.594424 0.032077 0.010529 0.436406 0.762103 0.210423 -1.829722 -0.932150 0.381624 1.000035 0.721732 -1.363321 -0.840172 -0.573158 -0.107115 0.176060 -0.138806 0.244328 -0.506168 -0.625631 -0.300136 0.349361 1.763673 -0.614449 -1.034169 0.245745 0.010025 -0.683171 -1.585220 -0.324650 -0.524899 0.274199 -0.232907 -0.114252 0.692302 1.294289 -2.759528 0.984194 -0.507565 -0.386121 1.043599 -0.015506 -0.456962 -1.574248 0.202265 0.809195 1.102250 0.120789 -0.122664 0.423232 -0.987139 -0.069644 -0.089016 0.611991 -0.432566 0.443571 0.390372 -0.943315 -0.780925 -0.185056 0.009967 -0.444228 -0.018681 0.491481 -0.338535 -2.322841 1.163795 -0.224620 -0.257286 0.498993 -0.130835 0.479759 -1.147490 -1.186992 0.478562 0.180275 -0.042334 -0.851044 0.065378 0.861218 -0.227460 0.095001 -0.706532 -1.458519 0.364516 -0.670444 0.675361 0.358192 0.254854 1.209002 0.085851 -0.167160 -1.235582 0.222601 -0.119863 -0.237996 -0.678403 -0.514713 -0.169105 0.952152 1.198971 -0.083718 0.137206 0.096198 1.232020 -1.213693 -0.487503 0.664802 0.864690 -0.613899 0.343349 0.771642 -1.187913 -0.629942 -0.460128 -0.626948 -0.018284 -0.782393 0.586549 -0.491723 0.431641 0.242360 0.248060 -0.211960 0.544780 0.210085 0.238325 0.058270 1.199539 2.087436 -0.736749 -0.121756 -0.896339 0.516987 -1.415409 -1.013498 0.197870 0.174141 -0.443286 0.319409 0.261058 0.944600 0.062256 -0.053923 -0.005372 -0.198643 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = -0.788065 -0.236712 0.777227 -2.320072 2.226303 1.767275 0.995529 -0.535547 -2.899407 -0.966352 0.702259 -3.150964 -1.503823 3.364697 -0.884038 1.620289 4.481889 0.800897 -1.159721 -0.301883 2.288276 -0.757885 3.885069 3.740789 -2.623500 0.183481 -0.012796 1.407076 0.056474 1.998071 -0.568974 -2.524080 1.224282 -1.787031 -0.128442 -1.920625 -0.014400 0.170418 1.115558 -4.701369 0.569397 1.155999 -0.162110 -0.773901 -0.387481 0.820386 2.945881 2.339328 -0.518774 1.017636 1.855227 0.326323 -0.095610 0.654064 1.125822 0.534266 1.194240 0.258848 -1.710314 -0.695563 -0.602272 -1.452861 -0.140220 2.507962 3.349116 0.208343 -0.304688 0.744338 -0.015266 0.639267 1.180428 0.606719 0.277469 0.383405 1.465310 -2.272137 -0.281833 -4.297959 -0.504827 -5.927942 -2.132449 -0.521391 2.714189 0.479290 1.112978 -0.777139 3.014044 -0.712593 -0.223909 2.124512 3.752387 -2.400814 -1.421539 -1.833673 -1.448182 0.905217 -1.434164 -0.102732 1.520386 -0.148097 -2.602296 -1.380707 1.398461 0.841791 -1.056850 -0.972383 0.343305 2.650329 -2.785628 -1.622635 -1.343596 1.646012 -0.039514 -4.348628 -1.107713 -1.286456 1.174825 0.738871 -1.411868 -2.203031 0.923714 1.443602 -1.153365 -1.124725 -0.776253 2.815435 1.056197 0.990372 0.588817 0.469431 1.029736 3.627873 1.707754 -1.522392 0.274732 0.065892 -0.952483 0.873595 -1.666902 -1.149419 0.345708 -2.502751 0.646075 1.740747 -1.876672 -0.518354 0.650126 0.596927 0.902928 8.887586 -0.454723 3.330059 1.547477 -2.951015 1.773923 -0.735247 -0.387078 0.377694 1.580612 0.725098 -3.635425 -2.291793 1.838781 3.174939 2.155666 -3.402339 -0.357090 -0.507513 -0.016178 -0.142563 0.478996 0.761527 0.504252 -2.161887 -0.715869 1.966112 5.889676 -1.355822 -2.733740 1.311356 0.851548 -0.674244 -2.977357 -0.829411 -1.234214 0.480070 0.677033 -0.239692 1.702525 3.678535 -5.684841 2.789770 -0.462024 -0.836571 2.860882 0.648157 -2.214554 -3.204233 -0.616977 2.160117 3.663750 0.238533 -0.119012 0.510677 -2.562503 -0.348342 0.534811 0.522189 -0.859632 1.482175 0.208066 -1.977745 -1.622558 -0.880313 -0.671191 -0.592895 -0.979260 1.579308 0.535977 -5.160263 3.033018 0.333005 -1.014742 0.143711 -0.535252 2.084771 -2.546168 -3.336650 1.493085 -0.697981 -1.934876 -1.289583 -0.104203 1.510973 0.904687 0.874003 -1.458473 -3.525755 2.667157 -0.743470 2.717635 1.340484 0.083785 2.573902 0.835915 -1.181332 -2.331489 -1.993104 0.877322 -0.698578 -2.192202 -0.554488 -1.082245 2.523632 2.391000 0.134620 -1.596528 -1.211566 3.216064 -2.450072 -0.638140 2.242836 0.813911 -2.255622 0.884601 2.728051 -2.995143 -0.402414 -1.688275 -0.773589 -1.194332 -2.052516 1.228499 -0.442509 1.139280 0.554316 0.104654 -0.728525 0.876595 0.499615 0.041561 0.135786 3.722657 3.539465 -1.775806 0.324029 -2.689730 1.648843 -3.509451 -3.375781 1.073794 0.048774 -2.079187 0.083021 0.559203 2.363261 0.273790 -0.478151 -0.820098 0.462719 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = -0.351932 -0.423609 0.215961 -1.121098 0.561030 0.440176 0.369518 -0.521670 -1.267735 -0.506931 0.636274 -1.592621 -0.416354 1.277448 -0.571267 0.653092 1.618862 0.236042 -0.738414 -0.417655 0.982341 -0.069488 1.763059 1.557483 -1.127540 -0.034622 -0.309621 0.643894 0.699965 0.218281 0.346699 -0.452483 0.540220 -0.670617 0.016222 -0.553153 0.144049 0.230090 0.512547 -1.663267 0.290944 0.306903 0.482756 -0.253315 -0.137148 0.725946 0.946973 1.010223 -0.094990 0.370745 1.097512 0.199642 0.034875 0.229764 0.223218 -0.285603 0.686564 -0.408445 -0.542677 -0.408523 -0.069168 -0.522570 0.047447 1.179266 1.446462 0.133867 -0.036582 0.357799 0.472864 0.429411 0.790151 0.215713 -0.128818 0.257688 0.401162 -1.212814 0.191079 -1.890386 -0.135927 -2.603184 -0.731045 0.045701 1.407915 0.418079 0.172941 -0.074455 1.089973 0.054024 -0.350679 1.020669 1.379343 -0.671734 -0.595126 -0.512733 -0.552014 0.494525 -0.673942 0.239279 0.554478 0.659385 -0.973173 0.033046 0.329459 0.249781 -0.432068 -0.218911 0.243542 0.879090 -1.153336 -0.332641 0.006428 0.983600 0.296717 -1.939924 -0.039798 -0.932691 0.679063 0.033246 -0.462042 -0.484684 0.128057 0.260584 -0.417761 0.012961 -1.235689 0.898625 0.460940 0.619527 -0.008222 0.416834 0.410407 1.302867 0.099678 -0.812691 0.141107 -0.063828 -0.315972 0.541763 -0.692267 -0.551076 0.573543 -0.997345 0.412468 0.501222 -0.657658 -0.568065 0.111870 0.429692 0.261605 3.239268 0.031219 1.534150 1.023225 -0.958786 0.284286 -0.374385 0.158979 0.310781 0.472114 -0.032792 -1.108767 -1.055656 0.694242 1.228797 0.805096 -1.176562 0.084424 0.094044 -0.158723 -0.051743 0.092595 0.273781 -0.042316 -0.797051 -0.315947 0.967880 2.031319 -0.118435 -0.116661 0.321094 0.280777 -0.270185 -0.949102 -0.310534 -0.118326 0.440394 0.251565 0.262199 0.721301 1.425598 -2.068535 1.108781 0.101171 0.242941 1.004783 0.254206 -1.183169 -1.578179 -0.285579 0.689537 1.208039 -0.294198 -0.145333 0.609481 -1.046856 -0.132810 0.159918 0.026903 -0.319329 0.352296 0.305565 -0.396203 -0.603539 -0.078396 -0.187167 0.218359 -0.252335 0.775052 0.219137 -1.712670 1.146851 -0.180551 -0.562185 -0.229236 -0.445757 0.894847 -1.065695 -0.799407 0.352722 -0.361713 -0.997767 -0.930857 0.067762 0.552392 -0.096889 0.572063 -0.741459 -0.862959 1.034579 -0.747515 0.927543 0.488709 -0.148065 0.748832 0.081709 -0.093810 -0.945326 -0.620893 -0.046756 -0.261698 -1.033886 0.498946 -0.245955 0.856005 0.776326 -0.145818 -0.901309 0.357241 1.113649 -0.897724 -0.684963 0.626369 0.260887 -1.102260 0.767208 0.818862 -1.379783 0.137147 -0.772115 -0.521489 -0.343591 -0.870262 0.803128 0.258622 0.728070 -0.081891 0.290093 -0.122231 0.543114 0.183356 -0.025322 0.298332 1.633244 1.407197 -0.286524 -0.049105 -1.322574 0.649583 -1.422988 -1.461188 0.504514 0.190759 -0.783473 0.157889 -0.074007 1.263381 0.395542 -0.381109 -0.553177 0.714019 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -1.644882 -2.283446 -0.894680 -3.960360 2.182957 3.882541 1.519442 -3.380397 -4.740150 -0.153235 2.608346 -5.163400 0.094286 4.664540 -1.773533 4.739375 5.916925 0.758970 -3.359905 -0.832090 4.928820 0.505913 6.972552 5.646162 -3.433121 -0.231273 -1.059934 1.486842 2.287422 0.048145 0.534398 -0.662217 2.884911 -5.366381 -1.615594 -2.389171 0.464968 1.447168 4.841517 -5.630362 1.327064 -0.543342 1.100738 -1.184123 -1.258209 0.639120 2.752817 3.753755 0.384644 1.449775 3.668163 0.539471 -0.254504 1.044659 1.011514 0.902351 1.747079 -0.791458 -1.283208 -2.602487 -0.306194 -0.322742 0.832556 3.982650 5.007153 0.659106 -0.269200 3.006860 2.046312 1.016531 3.066201 0.766690 -1.746168 0.546770 0.994531 -6.940796 0.376265 -6.405125 -1.163113 -6.453201 -2.271940 1.076310 3.037062 0.176403 2.814683 0.585158 3.713676 -0.694118 -2.027120 3.350324 4.518184 -4.157516 -1.934862 -1.688510 -1.446431 0.811180 -2.259459 0.995251 2.289853 1.250425 -3.554747 -0.876288 1.552144 2.253428 -1.556524 -2.956508 1.502615 3.242849 -3.010797 -3.236681 1.380852 4.151369 -1.151025 -7.110304 -0.510762 -3.749437 2.544688 -0.198165 -1.721578 -4.287154 0.404209 1.958345 -1.124063 -2.245025 -0.914913 2.398346 2.783331 2.438531 -0.175341 1.141658 1.086146 7.429068 0.654492 -2.881072 1.032573 -0.530137 -0.963077 2.670204 -2.427513 -2.350154 0.659819 -4.355448 1.305853 3.855006 -2.235620 -0.624491 3.142406 2.733443 0.313249 14.232023 0.383918 6.036372 4.554387 -4.054753 0.668357 -2.335375 0.973567 1.320343 1.238734 -0.627582 -7.558894 -4.074164 2.522515 4.261515 3.018414 -5.167425 -0.573980 -0.240751 -0.486661 -0.098973 -0.443634 0.963468 0.432711 -3.202693 -0.977786 3.825260 9.163255 -1.893529 1.098733 2.038147 0.315586 -1.928492 -5.107487 -2.276232 -2.294651 1.429148 1.473840 1.217350 2.334723 5.067588 -4.937559 3.613427 -1.062370 0.371639 4.112935 2.275577 -4.964494 -3.944202 -1.754242 2.202118 4.278403 -1.902529 0.043208 2.583420 -3.782970 -0.461756 0.712468 -0.712444 -0.809098 1.166344 1.604042 -1.682203 -1.580723 2.121210 -0.477745 -0.595057 0.189299 3.190876 0.051473 -4.834482 3.775970 0.113151 -2.072769 1.008983 -1.661516 4.679162 -3.229836 -2.675829 2.739688 -0.130068 -1.063791 -2.379655 0.852858 2.573949 0.899953 2.798218 -3.480903 -3.751363 2.668733 -2.402624 3.482364 1.681803 -0.812469 1.684157 -2.686024 -0.518199 -4.553335 -3.216682 -1.620116 0.822100 -4.539922 -0.689077 -0.807764 4.203273 2.258437 0.068574 -4.087880 1.109078 4.054840 -5.114096 -0.951480 2.327034 3.470162 -5.667684 0.999014 2.974296 -4.923685 1.006219 -1.103052 -1.658526 -1.696923 -3.246524 3.295889 1.840604 3.292880 -1.200221 1.373885 1.082068 1.893719 1.169248 1.056292 1.324782 5.598095 4.253016 -0.337390 -2.425135 -4.546445 2.260967 -4.913706 -5.713411 2.729905 1.281673 -3.856819 0.491852 0.632390 5.693160 1.442794 -1.360510 -1.297941 1.313378 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = -0.846883 -0.518484 0.599977 -2.227984 2.056831 1.695807 1.000314 -0.887822 -2.749891 -0.680134 0.969302 -2.885723 -1.180693 3.184595 -0.973680 1.826113 3.967162 0.756173 -1.293918 -0.447263 2.289925 -0.345723 3.787703 3.447753 -2.556562 0.100403 -0.046605 1.081389 0.474725 1.500081 -0.571802 -1.981808 1.468749 -1.988285 -0.309951 -1.599419 0.068868 0.279322 1.423013 -4.033665 0.588954 0.622385 -0.164893 -0.681573 -0.466482 0.913067 2.561225 2.305274 -0.439511 1.114159 1.874598 0.235048 -0.127084 0.668083 1.011956 0.500508 0.988902 0.232608 -1.474850 -0.877070 -0.551356 -1.227551 -0.059897 2.469951 3.063308 0.208522 -0.235214 0.962173 0.223190 0.600669 1.367901 0.574982 0.222020 0.299936 1.365270 -2.330159 -0.192495 -3.982595 -0.690817 -5.382455 -1.862016 -0.297004 2.487968 0.047903 1.235962 -0.508186 2.839228 -0.456075 -0.494759 1.964971 3.461938 -2.511337 -1.387988 -1.511282 -1.300168 0.755650 -1.477127 0.192534 1.339544 -0.066124 -2.498493 -1.338514 1.057466 0.922828 -1.019720 -1.113134 0.402514 2.409264 -2.579406 -1.592853 -0.972621 1.537444 -0.147877 -4.097822 -0.958025 -1.258421 1.530172 0.534567 -1.323802 -2.156541 0.752340 1.403547 -1.061826 -1.206355 -0.499495 2.259891 1.202202 1.176966 0.418098 0.412983 0.928210 3.626974 1.499277 -1.606357 0.298790 -0.087340 -0.723363 1.119799 -1.473117 -1.151977 0.506531 -2.444425 0.661656 1.683784 -1.751588 -0.462401 1.099888 0.820217 0.727426 7.641170 -0.278534 3.113430 1.739404 -2.772304 1.124315 -0.917541 -0.062388 0.587204 1.482893 0.413410 -3.167435 -2.340664 1.771448 3.001086 2.038245 -3.219081 -0.286176 -0.409737 0.037273 -0.182498 0.246964 0.732982 0.395767 -2.041192 -0.672942 1.923420 5.180483 -1.435863 -2.137805 1.234872 0.703423 -0.507504 -2.459400 -0.973444 -1.167029 0.625809 0.899177 0.030395 1.649221 3.530571 -4.947271 2.590063 -0.620751 -0.625372 2.420453 0.845866 -2.243923 -2.459261 -0.590600 1.845543 3.057410 0.178918 -0.104717 0.863911 -2.507478 -0.335800 0.441594 0.356543 -0.777063 1.301548 0.510020 -1.744064 -1.522560 -0.489979 -0.450595 -0.551949 -0.660006 1.699967 0.282323 -4.812688 2.742812 0.244961 -1.146189 0.280762 -0.567738 2.186410 -2.464523 -2.996409 1.495288 -0.627065 -1.609644 -1.189283 0.081983 1.460555 0.716687 0.961174 -1.570905 -3.010190 2.371674 -0.708495 2.531197 1.239202 -0.006976 2.368337 -0.056606 -1.003497 -2.177330 -1.696966 0.809092 -0.534988 -2.150791 -0.427350 -0.900226 2.497247 2.187598 0.149867 -1.566333 -0.769393 2.788166 -2.646639 -0.632244 2.087889 1.454295 -2.181534 0.962247 2.487191 -2.736369 -0.245188 -1.393264 -0.827917 -1.136376 -1.947692 1.453630 -0.168902 1.359250 0.255509 0.375204 -0.400552 0.985446 0.449734 0.177671 0.275270 3.325188 3.377976 -1.593577 -0.077044 -2.669905 1.636411 -3.331880 -3.294399 1.258665 0.102269 -2.036375 0.151451 0.275117 2.455225 0.415465 -0.681691 -0.866384 0.564865 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -3.377044 -2.746514 -0.694780 -7.539244 5.292116 6.648007 2.604133 -5.411478 -7.784355 -0.944286 4.172430 -8.764010 -1.784882 9.084904 -3.774533 7.286006 10.711046 0.755573 -4.962914 -1.141601 8.769127 1.040415 11.690583 10.043475 -7.973832 -0.874138 0.428175 3.613891 3.570255 1.068121 0.462129 -3.971734 4.653181 -8.194922 -2.474703 -4.091387 1.463310 1.480154 7.096643 -10.411841 1.805050 -0.376346 -0.520227 -2.010140 -2.554491 0.742803 5.876364 7.467153 -1.532091 2.354571 7.204688 1.797858 -1.422053 1.832792 1.343649 0.365179 1.559734 0.302174 -2.564568 -4.776307 -0.635317 -1.214996 0.851239 8.211070 9.656694 1.118879 0.021912 5.411960 1.931830 1.800528 4.581936 1.744243 -1.658641 1.595311 3.768289 -9.650484 -0.378881 -12.461058 -2.148418 -13.261436 -4.286289 0.405695 5.118378 -0.740374 4.985410 0.361928 7.990172 -0.492598 -2.773875 7.431564 9.335914 -7.645497 -3.645701 -4.638285 -4.555904 2.432632 -4.951924 2.356748 3.278340 1.402180 -6.998625 -3.863063 1.314355 3.997268 -3.158134 -5.663041 1.726826 5.953150 -6.274951 -5.444630 0.489477 5.703658 -1.801977 -13.069498 -4.432352 -5.797986 5.384344 -0.353496 -2.680319 -7.399494 0.555967 4.474769 -1.981330 -4.588409 0.038799 4.372309 5.674428 4.361873 0.431226 1.225841 2.884382 13.156192 2.491208 -4.937905 0.683706 -1.243280 -1.791461 4.143810 -4.732448 -3.054900 2.279118 -7.571955 2.392072 7.213167 -4.381523 -2.334663 6.025123 2.680385 1.852142 26.124190 0.679132 9.975319 7.199951 -8.094886 0.773952 -4.023889 0.517176 2.764697 2.774540 0.122727 -11.214985 -7.556894 5.394234 8.429866 5.791789 -9.316793 -1.051606 -0.168847 -0.399399 -1.396988 -0.756868 2.244834 0.008531 -5.863003 -1.910859 7.868637 14.547809 -4.099496 -2.202073 4.490585 3.691796 -2.970515 -7.330490 -3.816317 -4.643920 2.276033 4.020615 1.345799 5.118045 10.364044 -12.014796 6.482651 -0.252478 0.296890 5.752473 3.422200 -8.422584 -6.351349 -1.126727 4.963385 7.078642 -2.099031 0.919507 3.687042 -7.459384 -0.626742 2.160282 -0.344150 -1.874706 3.133747 2.270607 -3.739605 -5.015228 2.278811 -1.892786 -1.486932 -0.914440 5.730776 -0.884500 -11.540620 7.951164 0.147466 -3.912998 1.079008 -3.861045 8.259134 -7.922488 -7.844010 5.523031 -1.153042 -2.626683 -3.281646 1.500984 4.769079 3.056101 4.601072 -5.987431 -8.071351 5.386904 -2.996340 6.523225 3.250426 0.000499 4.973041 -5.592129 -1.673453 -8.336412 -5.290685 0.848072 1.623511 -8.657928 -2.356608 -1.500445 7.961893 5.570818 -0.665919 -6.541174 0.226846 7.457926 -8.603484 -2.041598 4.734529 6.753466 -9.082700 1.545461 5.945868 -8.254514 0.733429 -3.311043 -2.042903 -3.559141 -6.852041 5.287850 1.822227 5.566954 -0.038501 1.857340 0.695090 3.669180 2.434244 2.195120 2.113038 9.302901 8.762813 -2.875282 -3.555651 -9.084595 4.214576 -10.136738 -11.447250 5.659173 -0.251762 -5.670643 0.586464 0.340364 9.142821 2.169879 -1.420124 -1.987724 1.971904 +PE-benchmarks/boolean-parenthesization-problem.cpp__main = -2.227212 -2.750701 -3.058041 -5.185959 4.494186 7.615988 2.441796 -5.443464 -7.044605 0.681561 4.338487 -10.008841 -1.025901 6.868113 -2.384552 6.924681 8.828257 0.131617 -5.172859 -0.683745 7.077438 2.273415 12.005491 8.684528 -4.730991 -0.063424 -2.903482 2.762599 1.523484 -1.805823 1.847824 -1.061247 4.062221 -8.900783 -4.382709 -1.638881 0.568906 0.997498 7.351544 -8.199767 1.385735 -0.974300 0.010033 -1.597561 -2.576144 -0.059795 5.331546 5.595534 1.296123 2.280388 4.999142 -0.615158 -0.024288 1.733187 1.623964 0.001314 1.377671 -0.961718 -2.614234 -4.580122 -0.477458 -0.246146 0.080252 5.828516 7.203986 2.291579 -1.065292 5.326140 1.557192 1.635360 4.217289 1.509390 -3.290009 2.308765 2.141059 -8.325354 0.250296 -7.813505 -2.092021 -6.428201 -3.693411 1.856989 5.402348 0.507348 4.126028 2.621359 5.792559 -0.364190 -3.383086 7.694247 7.954490 -5.931300 -3.298631 -2.196043 -2.546179 1.310119 -2.905322 2.827195 4.038484 3.700829 -5.794889 -0.584041 1.660659 2.969442 -2.264985 -5.234790 2.214627 4.312250 -4.032941 -4.018777 2.488662 6.867800 -0.994661 -11.799602 -6.120975 -3.496230 4.364059 0.183816 -2.762254 -6.408995 0.867859 1.887251 -1.152711 -2.576683 0.932963 2.044652 4.098783 4.128287 0.377173 3.556212 2.759120 12.558552 -0.673106 -3.243077 1.891786 -1.616315 0.168518 4.952372 -1.616297 -3.170087 -1.972887 -6.972418 4.666408 6.332062 -3.279145 -2.862505 1.051366 4.660868 -0.080012 22.192955 1.148106 9.810859 7.246517 -6.591679 -0.192636 -5.386701 1.164433 1.540019 1.268994 -1.224526 -9.783447 -6.324405 4.710661 6.628179 4.281778 -8.557617 1.047204 0.821324 -0.181361 -0.578180 -0.153450 1.941142 1.447239 -3.298957 -1.246582 7.939286 15.037699 -2.862556 1.040804 4.360651 0.211222 -1.060470 -7.093288 -3.245828 -1.610604 1.675819 3.950210 2.482752 2.819172 7.613308 -5.958360 4.975071 -0.394556 1.596079 6.639289 4.411149 -8.529937 -4.181636 -3.170679 4.201736 6.113226 -2.143683 -2.258129 2.672229 -5.377984 -0.804576 2.753079 -1.573991 -0.634407 2.751725 0.994955 -1.834217 -2.971035 2.724313 -1.165061 1.272426 -0.225597 5.028214 -1.654757 -7.247355 6.428921 0.907689 -3.582622 -0.055702 -3.344708 7.441603 -4.385997 -5.147797 4.357913 -2.019520 -3.411954 -2.491166 1.130119 2.467560 4.119822 5.225643 -5.748450 -3.792575 5.485610 -2.449521 5.578207 2.709586 -0.859767 2.783346 -6.536417 -2.836900 -6.060643 -6.313121 -0.423156 1.445780 -7.593375 0.125619 -1.426400 6.037736 2.848419 0.558482 -8.222115 1.082154 6.207351 -6.316224 -2.769364 3.701067 4.235041 -10.051683 2.197173 4.646828 -6.661575 2.348008 -1.943700 -2.473569 -3.792803 -5.920140 3.941531 2.910530 4.457575 -1.046551 1.393415 2.382228 2.789142 1.287176 3.173601 2.129534 8.705397 5.007409 -0.920587 -3.378176 -7.726775 3.577315 -7.795670 -9.727748 5.162559 2.328143 -4.963985 -0.186925 0.710842 7.871911 2.341229 -4.616266 -2.731266 2.718651 +PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -10.457838 -14.928216 -19.668743 -22.488369 17.882593 36.655840 10.090542 -28.121961 -30.196858 6.885273 20.427796 -41.105759 1.169309 27.917601 -10.215627 34.842853 36.200826 -0.610135 -24.274734 -2.459132 34.212000 10.863001 52.638713 36.703307 -18.480822 -1.389989 -11.692545 11.532056 8.604301 -13.899469 9.976177 1.971361 18.461192 -46.420590 -22.910011 -7.753836 3.542275 6.348293 38.424765 -32.683580 6.339076 -11.515392 -0.469940 -6.415094 -13.735364 -2.566964 18.837838 23.848738 6.327583 9.986443 22.754397 -3.217621 -1.746091 7.394675 5.009998 2.036692 3.300442 -1.607478 -7.694064 -22.833066 -0.708560 2.918441 3.680769 24.297569 30.173277 10.302462 -3.865192 28.389169 8.710796 6.514157 19.255585 5.939761 -20.762394 9.102043 7.479701 -44.934065 1.134206 -34.737935 -10.014174 -21.786957 -13.202955 11.049959 18.421673 -2.600818 21.237727 17.749164 22.917363 -1.241336 -16.923295 35.006128 30.779410 -26.641210 -13.114380 -8.018379 -10.425539 4.379415 -11.617475 13.556968 19.839723 17.948437 -23.283189 -1.494966 6.333539 15.563137 -9.351723 -28.541416 10.686711 16.925098 -14.641821 -20.340199 17.045020 32.047563 -8.582867 -51.793425 -27.269692 -17.595319 22.210111 -2.025743 -10.275594 -31.246770 1.591360 9.508049 -2.414825 -13.468882 12.059340 4.092838 20.016702 18.792183 0.484350 15.177907 10.350749 59.179803 -4.134429 -13.521337 8.542660 -7.553115 0.948992 22.822381 -6.556473 -14.121087 -10.135678 -32.444024 23.200709 31.297566 -12.488769 -12.432371 12.808551 22.923252 -2.066007 102.266182 7.359034 44.102028 34.535541 -27.958776 -5.078433 -25.916509 7.330773 8.901682 3.026842 -9.059591 -48.452139 -27.267960 18.753652 26.630397 17.593407 -38.650973 1.348153 3.399054 -1.879584 -1.072830 -3.974319 7.736665 5.253018 -12.420840 -4.775843 36.036329 65.995510 -12.922667 13.611978 19.776338 0.112557 -8.878912 -34.996610 -16.001038 -10.535248 7.686694 18.547573 12.408458 10.747702 30.801623 -19.150158 18.778122 -3.115595 9.890525 27.290036 22.844130 -38.916241 -17.967336 -14.955549 16.109496 24.244431 -14.267050 -9.423781 14.171628 -21.896939 -3.056722 13.245210 -9.724670 -1.521197 10.463328 5.794532 -5.428550 -11.158095 20.737211 -4.306662 5.459936 3.471184 22.300299 -12.391553 -26.488168 25.423337 3.056033 -16.400048 2.870935 -15.328081 35.028611 -17.094399 -19.227505 21.305346 -4.828343 -8.503826 -10.043442 6.778226 11.941421 19.804141 24.683696 -26.183019 -15.016908 18.736422 -12.621728 21.743158 10.662926 -4.901227 9.369369 -40.726007 -11.082317 -29.972086 -27.220654 -7.352169 10.654662 -34.820792 -3.032773 -4.167062 26.880452 9.420116 3.460438 -38.276617 10.204403 26.299934 -29.019968 -10.733332 13.564156 24.218811 -48.135951 7.190882 17.560327 -29.285141 12.758491 -4.415488 -10.263052 -15.522347 -25.558230 18.853135 16.678701 21.591023 -7.719077 8.314893 15.635350 13.129472 6.973494 18.880675 10.690422 36.138276 19.462274 -0.717095 -21.950821 -32.881688 13.910899 -32.376578 -42.810301 23.857937 13.667779 -20.686959 -0.018502 3.739214 37.201465 10.988778 -21.226253 -9.528621 10.492952 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = -0.941435 -0.990405 0.152541 -2.516420 1.858558 1.183606 1.090314 -1.305936 -2.883736 -0.644246 1.415838 -3.160983 -0.902246 3.268231 -0.968208 2.241617 3.846622 0.597097 -1.476233 -0.804545 2.393969 0.032097 3.840614 3.512296 -2.656075 0.073352 -0.265037 0.588235 1.141269 0.548639 -0.042680 -1.709682 1.777711 -2.063489 -0.201615 -1.335707 0.083787 0.564710 2.132755 -3.843028 0.735002 0.462176 0.621211 -0.705252 -0.502212 1.544169 2.205896 2.475546 -0.560725 1.306548 2.239283 0.233262 -0.104284 0.665343 0.852519 0.082324 0.790449 -0.000229 -1.248967 -1.020905 -0.375265 -0.680780 0.037955 2.593698 3.179662 0.030910 -0.318015 1.321804 0.983338 0.764375 1.644628 0.657923 0.327919 0.033384 1.250899 -2.841015 -0.357128 -4.738551 -0.671217 -6.368699 -1.892720 0.232413 2.803523 -0.436143 1.154772 -0.592352 2.815369 -0.004013 -0.960869 1.842760 3.299917 -2.361315 -1.390605 -1.230774 -1.182118 0.840466 -1.517135 0.634947 1.892317 0.118146 -2.595018 -1.019670 0.894999 0.788362 -1.116429 -1.379913 0.721981 2.197645 -2.231514 -1.426288 -0.285118 1.967259 0.001056 -4.169493 -0.013619 -1.710442 1.375843 0.226474 -1.342369 -1.862235 0.435172 0.866793 -1.323156 -1.097103 -1.206816 2.093822 1.535093 1.616306 0.266295 0.606960 0.976778 3.764299 0.827114 -2.081824 0.405363 -0.262661 -0.408201 1.550843 -1.684472 -1.376456 1.502878 -2.413955 0.814268 1.306209 -1.691801 -0.564807 1.898716 1.003664 0.391411 6.860652 -0.106646 3.409398 2.248035 -2.502863 0.778801 -1.131125 0.238537 0.839526 1.615755 0.022514 -2.656878 -2.581267 1.851860 3.090920 2.071623 -3.239906 -0.535976 -0.007937 -0.149721 -0.434012 0.132945 0.598307 0.349463 -2.056018 -0.642289 2.095649 4.741129 -1.255201 -0.879959 0.960954 1.518487 -0.364453 -2.215233 -1.133596 -1.587296 0.840250 0.814210 0.539434 1.930467 3.557872 -5.133647 2.547135 -0.453349 -0.089692 2.080499 1.195433 -2.745596 -3.239715 -0.587472 1.503089 2.814798 -0.321752 0.430861 1.349123 -2.610267 -0.296008 0.209201 -0.108276 -0.841606 1.029998 0.542602 -1.150807 -1.187802 0.163452 -0.532233 -0.484672 -0.295242 1.991216 1.035823 -4.577962 2.499898 -0.049197 -1.360170 0.121911 -0.917852 2.576091 -2.477198 -2.347306 1.336899 -0.702269 -1.445530 -1.428651 0.255590 1.453589 -0.134211 1.480051 -1.573006 -2.650830 2.484773 -1.115681 2.564947 1.295205 -0.352751 1.979841 -0.928963 -0.799663 -2.165820 -1.779146 0.374454 -0.257608 -2.387270 0.266219 -0.774396 2.422948 1.910683 0.037400 -1.902274 -0.071862 2.376745 -3.067433 -0.534157 1.942549 1.717800 -2.270677 1.299332 2.326945 -2.869345 0.254153 -1.482395 -0.917239 -1.115774 -1.895715 1.889897 0.484039 1.617247 -0.322282 0.480470 0.029705 1.300104 0.542983 0.070453 0.503197 3.258247 3.453166 -1.350367 -0.667983 -2.937427 1.598950 -3.244936 -3.432497 1.478049 0.031632 -2.390057 0.149096 -0.046049 2.759323 0.552742 -0.650588 -1.292773 1.127055 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -1.619110 -1.480645 -0.021521 -3.378293 2.295374 2.822204 1.284803 -2.754254 -3.458179 -0.085630 2.003390 -3.635684 -0.712795 4.019537 -1.889886 3.148673 4.800912 0.748607 -2.256379 -0.995266 3.897224 0.415139 5.580831 4.865286 -3.730484 -0.384082 0.189974 1.865613 2.147423 0.412312 -0.181410 -1.084990 2.298532 -3.860567 -1.222388 -2.249827 0.739810 0.825831 3.273843 -4.620385 0.847814 -0.889893 -0.413565 -0.626407 -0.909381 1.252287 2.559902 3.352138 -0.727002 1.436201 3.261377 0.564729 -0.421931 0.970008 0.705753 0.326317 1.402350 0.609624 -0.971716 -2.239492 -0.393801 -0.840830 0.392384 3.571386 4.267457 0.713994 -0.073837 2.250563 1.111317 0.681436 2.270318 0.921103 -0.669991 0.821394 1.691256 -4.481517 0.084984 -5.807509 -1.152407 -5.922399 -1.812129 0.153516 2.355686 -1.178450 2.328653 0.628932 3.634406 0.164645 -1.454034 2.986630 4.084152 -3.856834 -1.614787 -1.522253 -1.932932 0.921779 -2.167396 1.514327 1.393550 1.016350 -3.163013 -2.137578 0.800452 1.693627 -1.485513 -2.295131 0.398069 2.725427 -3.184265 -2.239094 0.192132 2.134221 -0.871959 -5.582010 -1.884716 -2.920690 3.529563 -0.367189 -1.335905 -3.252990 0.341729 2.110933 -0.930964 -1.916551 0.275445 1.844074 2.666529 1.733922 -0.105092 0.455005 0.854594 5.881277 1.084303 -2.428415 0.271938 -0.483412 -1.026254 1.821824 -2.393798 -1.232196 1.448290 -3.453800 1.336637 3.033541 -1.980743 -1.136598 3.559636 1.465569 0.761508 11.062193 0.488292 4.410253 3.451025 -3.521249 -0.111527 -1.877813 0.754553 1.684923 1.488090 -0.106492 -5.022668 -3.562662 2.295683 3.720509 2.403547 -4.524832 -0.562328 -0.163177 0.030924 -0.591906 -0.339079 0.832178 -0.336825 -2.528065 -0.854520 3.291900 6.400089 -2.027247 -1.148481 1.762636 0.894599 -1.357302 -3.319774 -1.791342 -1.456265 1.134615 1.863794 0.919129 2.305418 4.669074 -5.681582 2.945232 -0.334083 0.298772 2.653529 1.754272 -3.727845 -2.261201 -0.539937 1.972116 3.040211 -0.636352 0.011201 2.109781 -3.593912 -0.326393 0.904331 -0.114590 -0.991944 1.617282 1.669150 -1.896931 -2.195297 0.705362 -0.427949 -0.619806 -0.178533 2.841412 -1.216788 -5.928231 3.310596 -0.221696 -1.968140 0.711741 -1.706514 3.683203 -3.556914 -3.466567 2.587996 -0.380775 -1.229739 -1.879373 0.761993 2.116542 1.208851 2.205479 -2.996020 -3.516785 2.458246 -1.787060 2.871512 1.479097 0.003878 2.387955 -3.081704 -0.663712 -3.932625 -1.589157 0.311101 0.541481 -3.775230 -0.725684 -0.575164 3.504881 2.709829 -0.250857 -2.617372 0.479846 3.637190 -4.017670 -0.955019 2.073839 4.024003 -3.763522 1.176608 2.534376 -3.853177 0.208631 -1.180987 -1.729649 -1.441077 -2.941652 2.767491 0.706252 2.684399 -0.155884 1.232233 0.405654 1.935040 0.890828 1.009724 1.214432 4.304702 4.578914 -1.295042 -1.499570 -4.070709 2.186922 -4.551777 -4.931891 2.469715 -0.184834 -2.602638 0.439165 -0.117774 4.447918 1.335148 -1.104425 -0.822019 0.887043 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = -2.135544 -2.252911 -0.570944 -5.061482 3.820569 3.076284 2.257641 -3.138055 -5.944825 -0.668936 2.986078 -6.573684 -1.365338 6.666656 -1.911990 5.312066 7.972018 1.114139 -3.299333 -1.204523 5.397379 0.158269 8.047824 7.189264 -5.040903 -0.049073 -0.977568 1.587039 1.782512 0.637126 0.015311 -2.882465 3.566266 -5.522418 -1.445610 -2.649634 0.429375 1.517299 5.090119 -7.690796 1.634788 0.255934 1.235889 -1.542966 -1.694418 1.826357 4.262806 5.101498 -0.641521 2.278971 4.349459 0.041418 -0.288516 1.500870 1.634499 0.655689 0.970154 0.183991 -2.603269 -2.764873 -0.768261 -0.925002 0.404738 5.113469 6.296835 0.681012 -0.693697 3.517767 1.791735 1.476775 3.279963 1.204864 -0.348928 0.135364 2.396472 -6.320511 -0.680491 -8.824547 -1.629088 -10.947236 -3.641677 0.740468 5.071415 -0.631636 3.157248 -0.473513 5.489067 -0.396246 -2.168398 4.332631 6.702609 -5.310457 -2.879384 -2.768327 -2.394752 1.429063 -2.829225 1.338952 3.792092 0.619962 -5.363925 -2.157055 1.711513 2.176328 -2.081005 -3.429894 1.632405 4.219267 -4.221355 -3.531798 -0.069940 4.202178 -0.529364 -8.554640 -0.865595 -3.376748 2.629266 0.330920 -2.710762 -4.688881 0.862111 2.129901 -2.350320 -2.723252 -1.213261 3.852166 3.170902 3.127561 0.654554 1.443081 1.872357 8.692328 1.386286 -3.989535 1.024001 -0.696809 -0.803077 3.175754 -3.173574 -3.023800 1.989580 -5.508894 1.940442 3.542793 -3.350842 -1.039252 3.840155 2.713241 0.740650 15.057275 0.070742 7.210354 4.865851 -5.077253 1.739704 -2.823363 0.638171 1.533155 2.628732 -0.210464 -6.427293 -5.438728 3.855188 5.974194 4.249535 -6.616035 -1.241816 -0.252942 -0.082465 -0.554069 -0.118098 1.400724 0.958855 -4.203910 -1.194006 4.778940 10.465839 -2.927880 -1.188530 2.798010 2.272660 -1.033696 -5.441178 -2.837212 -3.667861 1.441006 1.912445 1.316481 3.659860 7.331445 -8.763932 5.047371 -0.880214 -0.027397 4.353596 2.543932 -5.858306 -6.015211 -1.751142 3.193624 5.757470 -1.032645 0.334493 2.617686 -5.218746 -0.574476 0.975173 -0.479025 -1.456960 2.207737 0.856755 -2.384948 -2.464986 1.096779 -1.465673 -0.910997 -0.268970 4.147076 1.278871 -8.105814 5.105133 0.206534 -2.778568 0.749745 -1.901485 5.441692 -4.733602 -4.915840 3.289533 -1.125780 -2.428376 -2.597523 1.015724 2.813844 0.781599 2.734224 -3.332793 -5.473140 4.768776 -2.110768 5.205494 2.521100 -0.648773 3.351296 -2.280184 -1.842868 -4.727169 -3.789870 0.029296 0.097585 -5.321198 -0.607900 -1.413312 5.323611 3.625900 0.308344 -4.423996 -0.137655 5.219814 -6.063371 -1.304842 4.039020 3.211185 -5.454591 1.807092 4.913987 -5.976942 0.750000 -2.712178 -1.728196 -2.546073 -4.122498 3.552097 1.345205 3.448155 -0.730862 0.854889 0.710519 2.572905 1.413012 0.741925 1.229432 6.974899 5.986227 -2.187446 -2.173084 -6.017316 3.079056 -6.569687 -7.218096 3.491577 0.711661 -4.981992 0.309148 0.447066 6.076503 1.002765 -1.752832 -2.280473 1.729154 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +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.370394 -0.229090 0.459143 -0.884644 0.694026 0.360755 0.297295 -0.525135 -0.881177 -0.116627 0.249929 -0.414446 -0.103329 1.016762 -0.426922 0.760625 1.400489 0.425184 -0.340839 -0.520596 1.123493 -0.700547 1.362526 1.318365 -1.126285 -0.031832 0.665099 0.691910 0.703504 0.512156 -0.573516 -0.118803 0.506105 -1.180671 0.051938 -1.052520 0.193885 0.243684 0.726233 -1.475534 0.182733 -0.746126 -0.239505 -0.083051 -0.277430 0.708023 0.736900 0.858691 -0.483909 0.547673 1.020872 0.059771 -0.185242 0.265948 0.211561 0.530605 0.694939 0.717071 -0.201024 -0.203516 -0.107676 -0.657218 0.460243 0.954689 1.264368 -0.031948 0.096083 0.592893 0.216091 0.087808 0.544827 0.191279 -0.176308 0.031525 0.601470 -1.997543 0.087737 -2.592172 -0.400858 -2.367486 -0.574611 -0.337621 0.372048 -1.064865 0.713980 0.547235 1.010898 0.071134 -0.051716 0.535339 1.032396 -1.156334 -0.409040 -0.483842 -0.611068 0.283663 -0.608280 0.121840 0.576538 -0.027722 -0.707101 -0.942013 0.782853 0.503368 -0.426998 -0.713956 0.010650 0.900879 -0.939749 -0.929678 -0.494360 0.202625 -0.468496 -1.401213 0.235183 -0.863902 1.612439 -0.020321 -0.220551 -1.104947 0.057811 0.988430 -0.283217 -0.694237 0.285470 0.723082 0.661774 0.297646 0.041537 -0.266343 0.083610 1.353853 1.048908 -0.674423 -0.165528 0.139464 -0.808556 0.195680 -0.973481 -0.368599 0.791608 -0.905004 0.169574 0.713236 -0.584934 -0.181943 2.116748 0.151074 0.440726 3.043253 0.083738 0.861118 0.604869 -1.008433 0.279110 -0.232517 0.138516 0.677966 0.686662 -0.015870 -1.878680 -0.915768 0.294755 0.933080 0.689488 -1.523151 -1.028372 -0.449480 -0.042933 0.212822 -0.218028 0.197699 -0.296282 -0.608421 -0.219841 0.463980 1.790075 -0.665257 -0.665062 0.322549 0.094858 -0.839422 -1.668149 -0.464021 -0.719034 0.270678 0.056768 0.003986 0.605115 1.217524 -2.502877 0.792867 -0.629926 -0.248379 0.749819 0.367336 -0.653622 -1.321618 0.123313 0.539641 0.998410 0.007211 0.165652 0.638433 -0.958803 -0.075033 -0.000320 0.274867 -0.381055 0.450521 0.466311 -0.818547 -0.625007 0.246090 0.010955 -0.430005 0.181426 0.618345 -0.397202 -2.246982 0.868425 -0.245886 -0.445712 0.668981 -0.206462 0.882665 -1.034288 -1.058435 0.708547 0.247457 0.160998 -0.713490 0.164189 0.834372 -0.068947 0.215337 -0.668214 -1.328849 0.237718 -0.609173 0.559488 0.413287 0.060861 1.077085 -0.713825 -0.205833 -1.329717 0.188399 -0.096583 -0.097627 -0.717854 -0.692776 -0.193555 0.973587 1.074783 0.097843 -0.076662 0.180248 1.181474 -1.474068 -0.328553 0.643229 1.443733 -0.715832 0.375266 0.722191 -1.174757 -0.343505 -0.263957 -0.490137 0.018597 -0.677429 0.807738 -0.194374 0.593229 0.075593 0.382943 0.040322 0.659849 0.185633 0.429525 0.005022 1.106459 2.097968 -0.664795 -0.470677 -0.844591 0.429878 -1.290920 -1.095309 0.320830 0.251769 -0.614056 0.305233 0.177181 1.106611 0.160796 -0.091192 -0.002318 -0.173624 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = -0.593954 -0.153606 0.530756 -1.696903 1.531609 1.303306 0.754270 -0.317192 -2.118267 -0.955393 0.530963 -2.739777 -1.349590 2.539981 -0.739202 1.084115 3.262244 0.587712 -0.862819 -0.143871 1.515689 -0.170426 3.042560 2.704540 -1.913140 0.060675 -0.493474 0.940889 -0.052358 1.409303 -0.005960 -2.144156 0.993815 -0.956343 -0.075550 -1.133864 0.100025 0.171677 0.519751 -3.376248 0.440366 1.296872 0.058194 -0.640777 -0.233380 0.388212 2.293910 1.803842 -0.149686 0.566523 1.267231 0.424714 0.031057 0.550346 0.751045 0.021692 0.500559 -0.822759 -1.470696 -0.545205 -0.406910 -1.206340 -0.344999 1.915804 2.436648 0.277426 -0.178563 0.433229 -0.104278 0.564286 0.923733 0.395701 0.402313 0.385351 0.962814 -1.076322 -0.225910 -2.504228 -0.363728 -4.163848 -1.592202 -0.437887 2.294559 1.348391 0.611941 -0.999344 2.184976 -0.443452 -0.127600 1.833076 2.940551 -1.678928 -1.146352 -1.491726 -0.880980 0.783414 -1.177209 -0.014217 0.709854 0.163103 -1.977820 -0.737941 0.735643 0.497593 -0.746524 -0.684075 0.313154 1.915716 -2.168263 -0.974602 -0.971518 1.426674 0.228867 -3.302121 -0.955124 -0.787723 0.439783 0.586962 -0.984850 -1.363834 0.683663 0.829994 -0.806508 -0.609987 -1.416187 2.031816 0.721150 0.668842 0.439147 0.667966 0.813136 2.662880 0.779476 -1.090093 0.220900 0.013620 -0.469942 0.650411 -1.064051 -0.889249 0.123621 -1.853693 0.376743 1.220813 -1.403632 -0.518753 -0.676158 0.435405 0.783511 6.023503 -0.304358 2.466344 1.332843 -2.199804 1.223099 -0.670228 -0.307162 0.068344 1.065452 0.548308 -2.115484 -1.759089 1.397025 2.343495 1.627156 -1.977281 0.412655 -0.281271 0.061423 -0.322702 0.414076 0.693381 0.360304 -1.679889 -0.519773 1.678989 4.267092 -0.749988 -1.421377 1.013826 0.661102 -0.117796 -1.574474 -0.576765 -0.480506 0.330699 0.693247 -0.045207 1.193635 2.771734 -3.516356 2.138798 -0.061276 -0.360381 1.875676 0.328168 -1.739201 -2.026208 -0.491304 1.753559 2.615237 0.093086 0.064467 0.266927 -1.903715 -0.278917 0.413777 0.429368 -0.504255 0.960678 0.078918 -1.388433 -1.290306 -0.815571 -0.625435 -0.223385 -0.917197 1.160196 0.945452 -3.377874 2.398866 0.186157 -0.749627 -0.179557 -0.477829 1.693898 -1.997139 -2.364453 0.968217 -0.811173 -1.900517 -0.855466 -0.034185 1.022850 0.470814 0.652678 -0.990942 -2.225665 2.301203 -0.298910 1.975774 0.961803 0.103793 1.694061 0.884394 -0.887966 -1.319104 -1.949466 0.818491 -0.665508 -1.688196 0.335198 -0.760834 1.833841 1.798602 -0.009224 -1.591436 -0.670579 2.205960 -1.538334 -0.679102 1.707999 0.254502 -1.707351 0.750372 2.061460 -2.208914 -0.291584 -1.406577 -0.273306 -0.875846 -1.706162 0.777696 -0.347099 0.863331 0.479488 0.066710 -0.711001 0.599897 0.381818 -0.217838 0.150412 2.901165 2.067913 -1.057760 0.491460 -2.103674 1.175525 -2.666893 -2.543018 0.803221 0.019250 -1.482839 0.110904 0.239881 1.705537 0.258499 -0.284695 -0.820166 0.474394 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -2.972349 -2.318641 0.100082 -7.585579 4.858437 5.572542 2.490622 -3.740026 -8.019076 -2.272285 3.339337 -9.608553 -2.474419 9.043802 -3.279652 6.159674 11.265736 1.065079 -4.219824 -0.798705 8.171679 -0.157387 11.565409 9.989766 -7.406398 -0.805359 -0.925667 4.216808 2.468387 1.950471 1.312032 -4.911073 3.716990 -6.971050 -1.798631 -4.438416 1.615164 1.755816 5.390061 -11.143101 1.889307 1.443729 -0.216120 -2.345228 -2.198305 0.337508 6.364754 7.225785 -1.292983 1.648295 6.736638 1.758932 -1.134263 1.934490 1.337085 -0.153299 1.041374 -1.781370 -3.431518 -3.682384 -0.478263 -2.501530 0.754342 7.659556 9.559444 1.216874 0.036867 4.441629 1.337641 1.769527 4.370833 1.257666 -1.099750 1.169738 3.577808 -8.800956 -0.610022 -12.116825 -1.614370 -13.801733 -4.801518 -0.085955 6.325699 2.137616 3.798609 -1.277389 7.299032 -0.992933 -1.864636 8.276418 9.414375 -6.657148 -3.812935 -5.577584 -4.182487 2.954513 -4.744700 1.300678 2.719606 1.876613 -6.715304 -2.874487 2.177740 3.339497 -2.848500 -5.477700 1.837160 6.248178 -6.424858 -5.066545 -0.228914 6.620240 -0.906622 -12.668763 -3.909556 -5.528414 3.977366 0.134532 -2.477778 -6.305393 0.757192 3.723362 -2.074828 -3.462878 -3.035068 5.552425 4.820068 3.554432 0.748929 1.855089 2.701453 12.028806 1.861156 -4.493143 0.619225 -0.631754 -2.147293 3.293988 -4.845073 -3.325123 2.170567 -6.975364 1.405138 6.317894 -4.420214 -2.551958 3.366837 2.480059 2.418780 26.522511 0.700417 9.952346 7.016290 -7.719632 2.605295 -3.328510 0.000801 1.874616 2.685880 0.330455 -11.503965 -7.170189 4.816699 7.894048 5.856192 -8.321155 -0.365458 -0.480961 -0.378070 -1.140408 -0.348738 2.353672 0.166781 -5.987982 -1.782569 7.858234 15.738732 -2.851225 -1.450264 4.345999 3.325881 -2.924467 -7.925801 -3.211341 -3.279508 1.751002 3.096295 0.904128 4.807361 10.020241 -11.966021 6.586395 0.126137 0.555635 5.784347 2.549680 -8.210322 -8.230603 -1.491607 5.455215 8.212609 -1.939661 1.499688 2.800165 -6.942110 -0.622335 1.961673 -0.010551 -1.375301 2.781336 0.990271 -3.900881 -4.818338 0.999079 -2.926774 -0.677531 -1.638263 4.983069 1.155783 -10.525117 8.157987 -0.078645 -3.117628 0.368532 -3.540847 8.266705 -7.745305 -7.584418 4.884951 -1.501112 -4.076738 -3.719224 1.245396 4.466398 2.045788 3.629924 -4.769143 -8.242446 6.439092 -2.857958 6.284071 3.130988 -0.153573 4.720671 -2.072555 -1.821063 -7.539938 -6.479853 0.926599 0.621407 -8.407630 -0.877267 -1.664185 7.355691 5.517690 -0.732084 -6.946355 0.278448 7.836455 -7.364487 -2.730073 4.952285 4.562826 -8.827917 1.761121 6.280962 -8.875840 0.442167 -4.026019 -1.219851 -2.908730 -6.867416 4.288565 1.384114 4.852794 0.415887 1.486001 -0.235256 3.068765 2.442255 1.250834 1.520807 10.402131 8.581793 -2.302542 -2.285301 -8.542950 3.598372 -9.848657 -10.880302 4.546195 0.355608 -5.616346 0.922962 1.130148 8.543287 1.960938 -0.548588 -2.060416 1.805999 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = -0.370781 -0.191805 0.451054 -1.032963 0.779248 -0.012043 0.419842 -0.084829 -1.223303 -0.794201 0.454427 -1.558865 -0.978417 1.459500 -0.502642 0.336553 1.919839 0.332512 -0.433657 -0.482639 1.073461 -0.661158 1.830547 1.754364 -1.429304 -0.029857 0.022269 0.847980 0.541540 0.471039 0.236623 -0.878796 0.499083 -0.547270 0.369084 -0.745523 0.215147 0.094233 0.158060 -2.080521 0.173111 0.537951 0.273770 -0.214193 -0.146388 1.308717 1.229630 1.151759 -0.629992 0.484761 1.312154 -0.012164 0.027420 0.275213 0.122247 -0.543605 0.452869 0.142207 -0.816108 -0.162887 -0.117044 -1.136073 -0.019796 1.258094 1.815660 -0.002305 0.010230 0.266739 0.156220 0.498539 0.628479 0.269310 0.445100 0.121011 0.903986 -0.957803 -0.174054 -2.899197 -0.191908 -4.067103 -0.956341 -0.366157 1.773158 0.095467 -0.026250 -0.301290 1.355739 0.278320 -0.084231 1.396519 1.715340 -0.653785 -0.727451 -0.855480 -0.798854 0.782649 -0.850512 0.205014 1.010578 0.450670 -1.138866 -0.344487 0.440097 0.048984 -0.491863 -0.340216 0.005956 1.059484 -1.395487 -0.234054 -0.744424 0.618046 0.542015 -2.209278 0.018517 -0.713380 0.945638 0.285413 -0.431699 -0.210702 0.165766 0.258661 -0.523820 0.047056 -1.205861 1.373841 0.401908 0.550186 0.271136 0.368617 0.503251 1.135864 0.568188 -0.814035 -0.131780 0.051995 -0.650345 0.408002 -0.975771 -0.528306 1.259682 -1.049542 0.526077 0.152471 -0.814197 -0.841460 0.488851 0.028156 0.548639 3.344495 0.039877 1.537431 0.835746 -1.061792 0.824656 -0.233560 -0.050752 0.449740 0.878538 0.153142 -0.875484 -1.090414 0.728948 1.423387 0.924791 -1.602958 -0.256851 0.042407 0.020885 -0.183208 0.200215 0.438882 -0.083519 -0.794304 -0.283728 1.086912 2.051871 -0.268071 -0.868143 0.334382 0.775254 -0.207648 -1.332737 -0.197132 -0.218023 0.287989 0.172005 0.085716 0.818884 1.666641 -3.248045 1.224790 0.204887 0.199421 0.929048 0.167225 -1.231330 -2.431445 0.092395 0.906850 1.452039 0.161671 -0.122473 0.427236 -1.198739 -0.103228 0.193965 0.285699 -0.384233 0.603574 -0.128172 -0.486985 -0.938379 -0.578940 -0.386848 0.144310 -0.354041 0.752996 0.449272 -2.693870 1.346747 -0.412561 -0.665045 -0.421102 -0.368721 0.813756 -1.398999 -1.377854 0.322965 -0.612592 -1.406514 -1.196961 0.000390 0.554983 -0.133697 0.211221 -0.447203 -1.417642 1.400594 -0.723018 1.005695 0.582239 0.037059 1.413131 0.512323 -0.468902 -1.192009 -0.394378 0.443675 -0.698392 -1.088481 0.394694 -0.291378 0.855507 1.190204 -0.140209 -0.661911 0.055197 1.426984 -0.970958 -0.994070 0.927834 0.327835 -0.785368 1.098996 1.098359 -1.607911 -0.170076 -1.182765 -0.417961 -0.222052 -1.018593 0.633268 -0.244443 0.497767 0.274294 0.138273 -0.369393 0.635210 0.204405 -0.078161 -0.020827 1.891299 2.203129 -0.972063 0.267994 -1.449508 0.691676 -1.720071 -1.684508 0.394478 0.119826 -0.598954 0.196178 0.123862 1.082049 0.219808 -0.427103 -0.702690 0.627314 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -1.146331 -1.169096 -1.144276 -1.479345 1.964303 1.301459 1.216678 -0.860518 -2.870253 -0.071160 0.716227 -2.570075 -0.668566 3.424229 -0.282865 3.424309 4.747363 1.235754 -1.043530 0.020683 3.717236 -2.375359 4.346641 3.735763 -1.860994 -0.096214 -0.137257 0.736204 -0.495779 1.195956 -0.731924 -1.692174 1.969375 -4.588168 -0.551112 -2.601380 0.400035 1.362442 3.323182 -4.703181 0.686114 0.463087 0.938484 -0.923155 -1.283901 0.762494 1.807814 2.474789 -0.633850 1.437820 2.064077 -0.900498 -0.034848 1.026756 0.869952 1.529915 -0.346766 1.185826 -1.991436 -0.930640 -0.584385 -1.671596 0.691598 1.805561 3.842030 -0.064982 -0.061066 2.139014 -0.296565 0.550743 1.451398 0.245698 -0.120792 -1.113574 1.601796 -4.295717 -1.146851 -6.231799 -1.273455 -7.516708 -1.737900 -0.177730 1.959411 -0.862204 2.261458 -0.113827 2.632893 -0.698928 -0.502175 2.494014 3.260989 -3.311705 -1.663955 -2.043739 -1.007442 0.709103 -1.558260 -0.440714 3.787637 -0.819460 -2.532443 -2.116134 2.126562 1.546987 -0.754014 -3.203312 0.515955 2.495605 -2.129728 -3.193506 -1.253185 1.357506 -1.287723 -4.604075 0.807028 -1.192586 0.916202 1.033443 -1.191535 -3.075290 0.776318 1.557653 -0.870031 -2.410481 1.011599 2.813597 1.076109 0.975179 1.013767 0.270737 0.281036 5.273577 1.949259 -1.639310 0.196033 0.358971 -1.772216 1.305100 -2.148173 -2.262340 1.390599 -3.513503 0.804525 1.526684 -1.868406 0.206538 3.879976 1.254749 0.863897 8.745993 0.172008 3.760610 2.136851 -2.905572 2.984186 -1.194079 0.157404 0.730818 2.026095 -0.284317 -4.972315 -2.508214 1.338174 2.721524 2.338393 -4.366539 -2.496173 -1.167935 0.723971 0.387928 -0.385918 1.216783 0.560931 -2.211606 -0.247179 1.873643 6.999809 -2.282538 -0.054567 1.838407 1.122685 -1.691114 -5.857680 -1.551442 -3.531252 0.032275 -0.341321 -0.054230 1.064068 3.520809 -4.966988 2.585761 -1.767082 -0.393123 2.694540 1.374247 -3.192907 -5.402278 -0.836663 1.706855 4.015306 -0.099799 0.677280 0.933829 -2.339036 -0.167003 0.113547 0.183077 -0.305695 1.290185 -0.905417 -1.680528 -1.289053 0.937662 -0.837373 -1.830642 0.569422 1.637815 1.902495 -4.644838 2.303754 -0.080039 -1.253331 1.309158 0.517529 2.599503 -2.242103 -3.193816 2.032561 -0.205697 -0.397425 -1.440599 0.505263 1.678606 0.633743 -0.254235 -0.497106 -4.230908 2.208819 -0.995050 2.294109 1.069896 -0.365285 2.092169 -0.382448 -2.001287 -3.512732 -1.401090 -1.412367 -1.152196 -2.615030 -1.727054 -0.574028 3.143785 2.192431 1.226775 -1.935401 -0.392833 3.772532 -3.335972 -0.452171 2.860262 2.214640 -2.850556 0.385538 3.095316 -3.922345 -0.334449 -0.962199 0.063223 -0.597998 -1.914438 1.096503 -0.439238 1.120138 -0.248489 0.201444 0.483672 0.966171 1.231493 0.657831 -0.545361 4.492039 3.327610 -1.764593 -1.051915 -2.364305 0.808903 -3.226620 -3.634095 1.001880 1.985290 -2.728896 0.625321 2.320377 3.081824 -0.110360 -0.628478 -0.803588 -0.877329 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = -0.780064 -0.570336 0.352133 -1.947548 1.617543 1.468746 0.803648 -0.997987 -2.281388 -0.452373 0.902419 -2.304786 -0.775975 2.606863 -0.918487 1.677507 3.221624 0.597570 -1.158572 -0.420700 2.065310 -0.182544 3.214526 2.892076 -2.158422 -0.017452 0.028816 1.010243 0.655859 1.012570 -0.346811 -1.371652 1.271936 -1.863798 -0.396400 -1.404220 0.194560 0.359649 1.402216 -3.233886 0.518852 0.175763 -0.112330 -0.535568 -0.475189 0.710015 1.919639 1.987278 -0.368721 0.902515 1.724669 0.321173 -0.191182 0.581408 0.702897 0.388766 0.783090 0.131979 -1.033709 -0.882103 -0.363888 -0.906280 0.080036 2.132369 2.634096 0.219155 -0.101350 0.981526 0.287910 0.501771 1.239799 0.451877 -0.069768 0.270763 1.064936 -2.276431 -0.075281 -3.428602 -0.621103 -4.296362 -1.409534 -0.166202 1.859100 -0.120831 1.151492 -0.130081 2.291303 -0.251888 -0.509596 1.711512 2.727530 -2.138135 -1.118604 -1.199317 -1.116024 0.660269 -1.296250 0.304146 1.017134 0.154459 -2.000928 -1.125441 0.798089 0.879186 -0.861987 -1.099774 0.368932 1.916454 -2.104096 -1.408721 -0.533450 1.340061 -0.280632 -3.440034 -0.801514 -1.315219 1.549701 0.228346 -0.962477 -1.862943 0.477497 1.238268 -0.765402 -1.071109 -0.337687 1.637546 1.130051 1.009716 0.231109 0.271199 0.689610 3.201100 1.092691 -1.384605 0.210803 -0.117202 -0.651956 0.976279 -1.341911 -0.926002 0.545259 -2.090210 0.606943 1.558067 -1.391698 -0.486617 1.298743 0.731724 0.613735 6.547088 -0.076078 2.608849 1.641123 -2.275507 0.640694 -0.859253 0.083564 0.657290 1.114605 0.179033 -2.796573 -2.008230 1.387616 2.417606 1.681417 -2.666684 -0.345554 -0.325953 -0.006722 -0.149101 0.039915 0.598068 0.129235 -1.666446 -0.557325 1.683190 4.198531 -1.132452 -1.324923 1.056598 0.620547 -0.667153 -2.098937 -0.902615 -0.995217 0.588138 0.800799 0.124575 1.365307 2.903439 -3.951581 2.054000 -0.458304 -0.311281 1.851248 0.766254 -1.977383 -1.960417 -0.428692 1.435310 2.397509 -0.083713 0.050349 0.913143 -2.102681 -0.266653 0.395777 0.213193 -0.610021 0.990782 0.614218 -1.365921 -1.303214 -0.045934 -0.332937 -0.442400 -0.390188 1.487669 0.026565 -3.865583 2.202308 0.079256 -1.011743 0.345834 -0.610450 1.954613 -2.120139 -2.358385 1.339258 -0.382801 -1.078799 -1.036455 0.216628 1.319809 0.568952 0.936879 -1.401326 -2.390881 1.741438 -0.718833 1.936962 0.979967 -0.011449 1.802475 -0.596505 -0.678120 -2.011323 -1.283005 0.455852 -0.245529 -1.916028 -0.342273 -0.637734 2.129794 1.798022 0.078243 -1.400975 -0.270699 2.324170 -2.269922 -0.570935 1.609057 1.546081 -1.964675 0.761137 1.925145 -2.367567 -0.143105 -1.013803 -0.703221 -0.843717 -1.682314 1.376772 0.042997 1.313863 0.117980 0.474300 -0.182539 0.936408 0.441547 0.313935 0.348408 2.748881 2.811618 -1.113254 -0.342914 -2.263000 1.262950 -2.789915 -2.808588 1.143604 0.075925 -1.658172 0.232268 0.150841 2.246562 0.431348 -0.475173 -0.634315 0.445457 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -3.185603 -2.487998 -0.788500 -6.989121 4.970319 6.786364 2.464709 -5.435539 -7.114994 -0.672180 4.017292 -8.137001 -1.677168 8.465058 -3.728254 7.000114 9.969113 0.597379 -4.726800 -0.979247 8.252331 1.517927 11.285063 9.498690 -7.528444 -0.916352 0.493785 3.394806 3.489487 0.832381 0.403022 -3.625389 4.673640 -7.891261 -2.716975 -3.762531 1.518533 1.205777 6.878698 -9.514573 1.658016 -0.840478 -0.905196 -1.840880 -2.470559 0.607757 5.525230 7.154033 -1.263343 2.151318 6.802982 1.875663 -1.447705 1.830988 1.143558 0.253711 1.321057 0.097255 -2.242977 -4.730931 -0.505365 -1.075646 0.582978 7.855799 9.208297 1.197291 0.119649 5.254867 1.665534 1.630725 4.265643 1.656235 -1.575142 1.836375 3.435626 -9.089932 -0.361316 -11.284144 -2.294018 -11.742520 -3.886853 0.311153 4.373171 -0.832086 5.000542 0.552382 7.392680 -0.186170 -2.660436 6.996035 8.778906 -7.518294 -3.449976 -4.256944 -4.055593 2.249184 -4.873949 2.594569 2.722868 1.297217 -6.563012 -3.799313 1.042160 3.926742 -2.990716 -5.536021 1.624250 5.493636 -5.846542 -5.172878 0.586925 5.163299 -1.959644 -12.455177 -4.484407 -5.448007 5.554874 -0.485118 -2.320212 -7.183418 0.449884 4.438181 -1.663912 -4.662796 0.468160 3.791094 5.549464 4.140565 0.323400 1.123591 2.770452 12.817301 2.280249 -4.503781 0.612109 -1.421562 -1.700667 4.004326 -4.437657 -2.672305 1.962301 -7.234059 2.459332 7.260147 -4.043481 -2.226713 5.794665 2.552740 1.828858 24.735706 0.732308 9.351051 6.910738 -7.787718 0.232706 -4.182647 0.515278 2.645386 2.375365 0.103884 -10.812937 -7.062879 5.066023 7.879385 5.387545 -8.890338 -0.639546 -0.177333 -0.306891 -1.648015 -0.835742 2.229686 -0.124840 -5.471105 -1.798271 7.681722 13.656816 -4.001121 -1.771864 4.356534 3.264105 -2.746416 -6.657723 -3.722125 -3.966561 2.226767 4.191936 1.391067 4.714478 9.660643 -10.687203 5.920349 -0.160949 0.312151 5.279532 3.361727 -8.072757 -4.894280 -0.824055 4.706149 6.322690 -1.941521 0.953355 3.511548 -7.076353 -0.644522 2.140509 -0.347139 -1.587286 2.852879 2.561434 -3.608075 -4.982050 2.358426 -1.530902 -1.434280 -0.795067 5.510562 -1.230992 -10.955079 7.513377 0.097177 -3.869378 1.079514 -3.925310 8.005740 -7.606806 -7.371046 5.381022 -1.134685 -2.261504 -2.935230 1.572000 4.512430 3.171862 4.734117 -5.830392 -7.524786 4.853468 -2.600395 5.954812 2.994461 0.266168 4.603458 -6.129620 -1.536270 -8.053130 -5.155925 0.990910 1.785144 -8.386746 -2.029041 -1.359564 7.658922 5.304757 -0.755233 -6.342686 0.374648 6.898642 -8.335674 -1.874034 4.356383 7.236783 -8.745260 1.258299 5.418657 -7.729102 0.647520 -2.747680 -2.031192 -3.372750 -6.727720 4.959311 1.738005 5.467593 0.037243 2.000184 0.744021 3.480375 2.138610 2.281123 2.131552 8.582061 8.276736 -2.620038 -3.556363 -8.646696 4.017952 -9.661160 -11.068854 5.673493 -0.521823 -5.190605 0.614743 0.216388 8.675193 2.073607 -1.414963 -1.838037 1.713115 diff --git a/src/test-suite/oracle/FA_llvm16_p/ir2vec.txt b/src/test-suite/oracle/FA_llvm16_p/ir2vec.txt new file mode 100644 index 000000000..ba8f4bdcc --- /dev/null +++ b/src/test-suite/oracle/FA_llvm16_p/ir2vec.txt @@ -0,0 +1,118 @@ +-4.977953 -3.644873 0.927774 -13.084924 8.743502 8.470885 4.101312 -5.187558 -13.990129 -2.847727 4.055517 -14.312321 -3.409442 16.318804 -4.530192 10.547537 19.915846 3.185839 -7.085649 -0.726366 13.963747 -2.695777 17.529031 16.188399 -11.972959 -0.777956 -0.596850 6.932300 2.482675 6.237816 -0.354488 -8.304443 4.747458 -11.720122 -2.118420 -9.446199 1.985127 3.919973 8.332713 -20.392405 3.803612 3.436010 1.818883 -4.601162 -3.911555 -0.098654 11.021373 12.074933 -3.261440 2.505958 10.110638 2.568782 -1.887017 3.191630 3.461220 2.663493 2.687857 0.342476 -6.147564 -5.578847 -1.356040 -4.346374 2.839628 12.540139 15.405457 1.912808 -0.275816 6.882713 2.019627 2.907239 6.850751 1.816310 -2.436739 0.449321 6.083575 -14.343669 -0.601029 -20.576064 -1.776801 -24.025133 -7.764633 -0.221746 10.404677 2.738537 6.644312 -1.683562 13.047485 -3.725501 -2.174024 12.941512 15.700737 -11.236346 -6.245377 -10.196412 -9.241804 4.974097 -6.813890 -0.330373 5.827554 1.834285 -11.440721 -6.306091 4.003455 6.177729 -4.812447 -7.416516 3.136879 10.979683 -11.506033 -9.463169 -1.177384 9.913737 -2.486897 -20.337582 -5.175614 -9.340984 5.012695 0.326440 -5.209292 -11.955240 2.200711 7.101823 -4.580087 -5.951024 -5.022646 10.199429 5.573734 4.984626 1.503658 0.614121 3.599539 18.379321 4.933681 -8.547594 1.414406 0.287825 -4.125771 3.968253 -8.513021 -6.791413 3.216682 -12.910633 0.851200 9.668708 -8.120179 -2.636598 6.212846 3.833123 4.461274 43.528889 0.052620 15.538122 9.438819 -13.568578 6.300897 -3.375120 -0.813738 3.119404 5.914553 1.075291 -18.403065 -12.080436 7.731565 13.775728 10.789223 -12.732561 -3.353929 -2.296475 -1.406348 0.649044 -0.348752 3.094627 -0.233511 -10.860159 -3.494001 10.328858 25.995909 -4.806518 -5.010633 7.413377 6.096423 -6.277389 -14.077860 -5.074384 -9.036417 2.690784 2.819024 -0.775135 8.984840 17.380733 -22.718179 12.534475 -1.789966 -0.940258 9.893404 2.688077 -12.007591 -15.627370 -3.385198 9.456823 16.035557 -3.201449 1.368529 4.264562 -11.724710 -1.154119 2.793864 0.620381 -3.356127 5.530225 0.941226 -7.778882 -7.379539 1.702099 -4.890138 -2.908397 -2.369866 7.748746 1.200602 -17.120473 13.891877 0.432388 -3.848427 2.501855 -3.592602 10.924678 -12.522622 -13.969962 8.168493 -0.445109 -4.900968 -5.433169 1.498467 8.984655 3.764498 3.145091 -7.499179 -15.567883 9.595198 -4.839176 11.500754 5.564344 -0.703293 8.254765 0.487598 -3.099912 -12.283766 -8.810682 -0.571720 -0.077817 -12.268758 -4.126489 -3.618690 12.963763 9.676898 -0.168848 -9.277759 -0.673169 14.380087 -9.928901 -3.737539 9.050831 2.574842 -13.643169 2.084665 11.793617 -14.728452 -0.311096 -7.217550 -0.983235 -4.467070 -10.526807 7.162998 1.458976 7.154935 0.861307 1.526153 -0.881792 4.810515 4.815522 1.697279 2.163375 17.688895 11.750371 -4.560796 -2.518368 -13.290438 5.827576 -16.651388 -15.999817 5.841964 1.659438 -9.803354 1.801355 2.308786 13.566309 1.811798 0.644475 -1.999635 1.568929 +-14.830865 1.466387 18.536373 -34.488850 31.565235 22.548748 12.172594 -13.270821 -32.555215 -13.636197 2.901783 -34.393177 -22.439610 46.298422 -17.408883 20.365382 59.008007 13.614944 -14.030060 -9.108892 35.322562 -13.318851 54.565431 47.409496 -41.105574 -1.772005 9.737347 25.541485 7.138477 32.489668 -12.459850 -28.658794 15.596617 -21.171189 6.410070 -28.999397 5.758085 4.379280 8.887268 -61.358638 7.548628 4.318722 0.176432 -8.312497 -7.500002 10.386550 42.198649 35.155733 -9.881631 5.782922 28.951853 11.917867 -1.832117 11.876514 12.210261 9.647984 21.806636 -0.919153 -19.462281 -10.613486 -9.134667 -24.196271 4.066071 39.335394 48.995026 5.204835 1.513023 12.371562 -1.828277 10.277515 14.345730 7.888537 2.413000 9.077450 19.729531 -37.629517 1.744067 -65.602490 -9.186478 -77.562420 -25.170812 -17.274433 21.704617 4.730294 18.434009 -1.301196 43.862869 -2.080477 2.730762 24.352972 53.298877 -36.516529 -17.461417 -29.616097 -23.808142 12.827515 -22.584657 -0.105334 11.904262 3.123764 -32.862801 -26.780465 16.317914 12.575079 -15.153095 -13.969936 0.202064 37.530789 -39.136089 -23.221454 -23.538677 13.742965 -7.008987 -61.311274 -7.131627 -24.291591 24.681207 3.450417 -11.526411 -35.537428 10.344667 30.692049 -14.252553 -18.107868 -17.117538 36.712611 17.298800 4.884730 4.285791 -0.567855 7.865089 46.323377 27.478205 -22.193007 -4.044931 2.865618 -21.366062 2.515117 -29.249722 -12.428223 12.672233 -36.539104 2.958930 28.310479 -24.318778 -7.941632 15.401620 -1.813376 22.747008 112.043055 -7.473729 34.083008 17.565136 -44.715124 21.391491 -5.673624 -5.353330 9.299540 23.594442 10.785138 -49.233442 -36.277112 22.059185 40.687061 29.924820 -38.780661 -10.688923 -14.726109 -1.477005 -1.567806 0.658710 12.652831 -8.428021 -28.420946 -10.998946 22.251856 71.842153 -18.799563 -34.575331 20.473572 10.668119 -14.654668 -39.833228 -14.411901 -19.202207 5.189151 6.657549 -4.065762 23.728436 52.846684 -79.798779 39.133583 -6.930651 -11.836408 35.092504 -0.370493 -22.464566 -40.506301 0.741399 34.687555 44.931737 -0.267645 0.290212 6.225006 -37.720263 -2.852848 4.126341 16.142263 -13.401920 17.881571 7.274685 -32.972853 -29.135538 -9.723755 -7.259081 -12.467404 -10.512997 20.011619 3.790385 -71.989038 47.512579 -2.986397 -10.611715 11.344189 -8.096855 28.558661 -38.974712 -46.827954 21.557725 -4.452681 -14.695863 -19.937263 4.108526 28.758387 3.618636 8.729062 -24.360276 -46.474811 25.220846 -11.405801 29.635575 16.616494 10.368481 34.378683 9.607444 -13.525958 -35.474035 -16.094517 6.265634 -7.290466 -29.431403 -9.702859 -10.894212 37.891168 42.404617 -0.719632 -14.733892 -7.207244 44.710353 -35.429335 -14.428984 30.653189 12.219772 -30.241823 10.550049 35.963776 -38.895721 -18.697306 -21.905013 -6.433151 -10.258995 -35.464175 17.377915 -13.156910 15.801923 12.304758 3.659883 -12.516253 17.343533 9.834489 3.439987 0.505531 50.327084 47.092447 -22.943674 2.788179 -36.043841 19.765342 -54.270668 -41.807592 12.838728 -0.046188 -20.369489 7.020696 3.088346 34.792967 -0.306074 3.423657 -5.670140 -5.223229 +-3.673518 -4.552309 -1.368609 -8.580695 5.710371 3.806057 3.099140 -4.924104 -10.170187 -0.848279 4.210990 -9.369764 -0.655055 10.200045 -2.927477 8.971772 12.556802 2.275022 -4.888728 -2.021056 10.011172 -2.288762 12.342110 11.321058 -7.504217 -0.484540 -1.221587 4.325322 2.805119 1.219313 0.353808 -3.429026 4.429869 -10.204371 -2.318088 -6.327396 1.319248 4.248303 8.935432 -12.633766 2.599409 -0.301487 2.837300 -2.325663 -3.057134 2.127223 4.898356 7.805174 -1.679949 3.916199 7.872784 0.532450 -0.893267 2.311897 2.075303 1.892223 1.693625 0.706527 -3.341389 -3.875717 -0.855892 -1.732758 2.521179 7.616696 10.661476 0.651583 -0.590194 5.791266 2.565304 2.034301 6.001807 1.299650 -2.618550 -1.242215 3.765470 -12.828857 -0.695126 -17.345346 -1.878186 -18.144067 -5.153673 1.447794 7.466288 -1.423920 4.859390 0.845571 8.232974 -1.143689 -3.250899 7.819828 8.808082 -7.639486 -4.155939 -4.605440 -5.174413 2.680217 -4.251486 0.904009 5.950835 2.270389 -7.459493 -3.677136 3.965360 3.771918 -3.115662 -6.509933 2.493057 6.915467 -6.554320 -6.901640 0.732583 7.657079 -1.884349 -12.957955 -0.652482 -7.371728 5.190550 -0.127007 -3.558936 -7.101721 0.818817 3.443815 -3.089178 -3.835621 -2.296086 5.491097 4.609120 4.313739 0.590576 1.205102 1.638335 13.908528 1.558584 -6.487966 1.093457 0.057405 -2.356510 4.591867 -6.415528 -4.867533 4.001718 -8.612072 2.185685 4.953904 -5.054778 -2.194976 8.976109 4.211788 1.364342 26.642577 1.109013 11.567590 8.234148 -7.485026 3.307433 -3.410525 1.675900 3.557342 4.281174 -1.584003 -12.366510 -8.581073 4.723800 8.583688 6.766236 -10.326847 -4.939281 -0.829946 -0.348005 0.764946 -0.896964 1.922480 0.102798 -6.132134 -1.696633 6.538193 17.290589 -3.342362 0.313043 4.376228 4.402310 -4.837472 -11.209298 -4.439094 -7.037599 1.985251 1.130923 1.470108 5.370153 11.038327 -15.857875 7.376940 -1.992900 1.096256 6.110914 3.559177 -9.547586 -12.946277 -3.059911 4.009205 9.951666 -2.760700 2.053407 4.938731 -7.594732 -0.559286 1.285408 -0.813449 -2.181637 3.244729 0.739297 -3.739863 -3.378351 3.340294 -3.195081 -1.655124 0.258350 6.043164 1.860285 -12.252358 6.895631 -0.267956 -3.581521 2.363217 -2.317585 8.658758 -7.314201 -7.433645 5.636844 -0.328171 -1.996980 -4.823001 1.969250 5.389245 0.573921 2.963306 -4.614176 -8.601700 6.213819 -4.806893 6.952204 3.563458 -1.994269 4.428830 -3.899090 -2.439472 -8.996301 -4.416580 -2.200609 0.101386 -8.285606 -1.642295 -1.711635 8.161062 5.468875 1.361557 -6.745970 1.595649 9.613657 -8.718866 -2.133003 5.921913 4.929484 -9.090915 2.837214 7.418570 -10.581326 1.126304 -3.967897 -1.561330 -2.551981 -5.646648 6.432613 2.641923 5.562131 -1.688491 1.949675 1.326715 4.338292 3.376962 2.099257 1.509439 12.215000 9.936506 -1.970701 -4.059301 -8.789509 3.186820 -9.665219 -10.720713 4.006882 2.389636 -8.124009 1.455427 1.446498 10.697748 1.908241 -0.746035 -2.276104 1.816158 +-13.341673 3.267262 20.568734 -32.120581 29.025094 18.566249 10.855500 -10.985401 -28.689937 -14.179002 1.240575 -30.028845 -22.859603 41.980813 -16.764810 15.044004 53.641019 13.210774 -11.682279 -10.300577 30.947356 -13.812752 49.845538 43.853326 -39.337307 -1.431758 11.539881 25.178317 8.044036 32.213490 -12.873487 -26.294878 13.747441 -15.875668 9.337272 -27.622961 5.012804 2.555749 3.608553 -56.563207 6.236949 3.249658 -1.463541 -6.432302 -5.556162 14.485754 40.338214 31.968691 -10.363669 5.297546 26.903528 11.511501 -1.262294 10.745411 11.658525 7.834254 22.431632 0.291019 -17.508346 -8.074051 -8.869945 -25.135193 3.434127 36.848488 45.361073 4.114730 1.716437 8.953975 -2.221462 9.530981 12.185265 7.798950 4.463121 9.520891 18.804637 -33.760972 3.301696 -61.828135 -8.146488 -76.030766 -23.192062 -18.562447 20.245454 2.563649 14.746074 -1.797443 41.293273 0.101283 4.225348 21.364202 49.592509 -32.577901 -15.601643 -26.846830 -21.833424 12.084761 -20.821397 -0.182128 10.875841 3.046157 -29.752024 -24.230832 14.858307 9.727411 -14.336336 -10.131206 -1.442051 34.940545 -37.995259 -18.682994 -25.080622 9.929311 -4.745160 -56.667824 -5.104765 -22.334768 26.552309 2.642980 -10.172861 -30.615900 9.776497 29.248545 -13.151432 -14.476319 -18.006435 35.106418 15.654910 3.123559 3.632536 -0.791864 6.837230 39.232481 27.301217 -20.052528 -5.338259 3.502289 -21.765284 0.171303 -27.508125 -9.759314 15.002530 -32.744165 2.500585 24.169788 -22.398633 -7.780968 15.428762 -4.105713 22.396122 102.173732 -8.211574 29.658801 14.397695 -41.009029 19.076717 -3.428102 -5.343575 9.282506 22.952073 11.228962 -43.590566 -32.879071 19.744220 37.687814 27.007169 -36.041176 -9.191813 -14.238145 -1.785555 -1.779072 1.028226 10.970944 -9.576195 -24.995184 -10.463797 18.841989 63.443543 -16.796142 -35.500843 16.937525 9.245366 -13.225568 -34.847471 -11.947471 -14.702789 5.001958 5.017724 -4.434360 22.278589 48.490202 -77.864572 36.330960 -6.248877 -11.928763 32.322689 -1.840516 -18.235399 -38.443663 2.491573 32.611194 40.544816 1.197308 -0.568316 5.276475 -35.147290 -2.621846 3.243328 17.316549 -13.505927 16.746694 8.175670 -31.172730 -27.676319 -12.287573 -5.452095 -10.259501 -10.440972 17.756210 1.685892 -71.939991 44.447508 -3.868610 -9.628143 9.602690 -6.885947 24.174983 -37.202427 -43.955679 18.236644 -4.176068 -15.249665 -19.836036 2.971430 26.823520 0.753261 7.171949 -23.067203 -42.741554 23.511870 -11.369145 26.590419 15.401247 11.149314 35.145427 9.262517 -12.173471 -32.480135 -12.666107 8.071458 -8.696351 -25.468165 -6.032837 -9.998936 33.547914 41.130378 -1.396684 -10.441905 -5.379639 41.310988 -32.167966 -14.511961 27.847584 12.474130 -25.278699 12.016663 32.540481 -35.273781 -19.748885 -21.377061 -7.915007 -8.254546 -32.610504 16.239282 -14.942942 13.692122 13.179667 3.628353 -13.774900 16.769869 7.760374 2.518164 0.455948 45.712445 47.840536 -23.132230 4.702244 -32.762362 18.915736 -50.547815 -37.333726 10.121183 -1.209211 -15.787701 6.760722 1.663683 30.866815 -0.264009 2.611150 -4.926445 -4.586771 +-37.000739 0.185459 30.314406 -86.770876 80.665697 57.162586 33.358843 -26.211555 -82.049701 -36.565981 11.331188 -97.002773 -56.676643 114.095801 -38.416687 58.618525 159.557196 30.721359 -31.281245 -20.162780 85.399825 -23.527026 143.576989 129.617919 -101.071280 -4.325439 24.952298 51.582133 7.537905 62.758506 -29.071382 -91.516061 48.129314 -63.660519 8.578292 -71.565444 11.198145 6.617837 39.185001 -159.177853 21.204392 7.083121 -10.275185 -25.185450 -22.748024 34.142060 114.725982 89.629146 -31.362499 20.490892 74.988611 27.400279 -12.484764 28.399041 24.031161 20.799881 28.692945 8.578699 -52.170796 -30.223959 -21.012623 -47.892328 5.616632 96.709625 122.081034 9.857885 -2.449416 39.568968 2.308153 21.797092 32.321599 20.978552 21.474076 18.941538 52.983958 -102.929575 -17.790690 -189.080284 -27.015373 -220.641835 -71.138357 -37.675080 64.754762 -2.018491 47.200037 -17.002966 111.006246 -8.991950 8.703142 76.383852 139.538664 -96.678002 -48.851710 -78.319648 -54.202207 32.793513 -55.114636 3.815533 46.322120 -5.544162 -91.290703 -71.975329 40.115816 30.581754 -36.895030 -56.519655 12.015583 85.579512 -92.045926 -59.398305 -65.786377 44.626327 -8.981124 -163.359107 -14.023637 -51.134453 65.063164 14.553449 -38.776845 -96.853132 23.742115 71.056938 -43.394802 -49.967556 -26.542794 97.747928 51.438826 21.714248 22.002469 3.890451 29.687676 135.501602 73.849050 -59.895819 -7.930505 4.483543 -53.697619 9.625210 -75.933269 -36.728234 40.549527 -96.694183 25.252723 74.870630 -66.630564 -22.065055 61.473999 -2.528477 52.174610 304.869416 -20.448878 98.091691 51.871383 -115.372920 60.055629 -31.715955 -17.436171 16.534338 62.947115 29.919269 -133.051900 -88.355815 60.971868 107.304126 79.176678 -113.348019 -26.952965 -28.264997 1.036813 -11.468751 1.042676 33.263874 -3.397365 -76.006200 -24.988656 74.526646 197.484298 -49.336597 -76.766457 48.374358 50.381483 -23.988959 -104.598029 -38.798953 -62.701741 13.250928 33.289994 -3.509773 63.792932 136.313495 -211.602492 92.420322 -18.490096 -25.359886 80.709343 20.314952 -71.176091 -113.688450 0.976410 92.939065 118.879997 2.032978 18.331122 14.242695 -91.589750 -9.789314 14.284304 35.760638 -33.480472 45.390988 13.384929 -86.448609 -66.485378 -19.256919 -26.819237 -33.545358 -22.830163 53.402965 22.577248 -197.825520 124.374250 -4.129082 -33.419512 23.017063 -29.050797 87.811439 -101.829134 -121.581322 59.309383 -17.062968 -37.625886 -42.022247 9.293344 67.647134 10.897578 35.136343 -56.342212 -135.252671 76.449307 -15.817450 87.057457 43.176241 19.792460 96.387027 -2.078444 -37.365636 -95.115387 -65.381357 26.357017 -15.964375 -82.651483 -22.164750 -29.617098 95.965282 102.767744 -7.372917 -48.983352 -23.592471 106.257217 -107.369230 -21.962123 79.801034 52.381498 -81.543890 25.299027 95.992866 -106.818483 -37.176352 -60.979690 -10.012186 -32.041786 -93.575933 37.383981 -32.109274 38.574185 30.252962 4.658703 -24.072825 40.482308 25.093644 9.904087 2.949141 124.156812 134.013234 -61.913311 -1.403206 -97.667631 50.475652 -141.777589 -123.854415 40.710735 -4.828290 -59.450129 11.148393 13.936438 88.197300 -8.847639 4.732706 -24.297985 -2.939728 +-7.640920 -9.100908 -4.044058 -16.163092 9.974718 10.588911 5.818953 -10.023086 -18.730669 -1.555885 7.836200 -17.097960 -0.561496 20.533799 -5.840571 18.976423 25.477346 4.475480 -10.004505 -2.286519 21.051803 -3.764664 24.211383 21.494888 -14.966182 -1.937378 -0.807265 8.051962 6.465878 2.585592 2.106682 -6.968665 9.208194 -21.788987 -5.392586 -13.397768 3.872967 8.515199 17.554265 -25.367932 5.312923 -0.306702 4.190026 -5.399756 -6.783557 0.127954 9.544055 16.357858 -3.861482 6.301541 15.140975 2.359249 -2.765544 4.743899 2.566381 4.772938 0.453690 0.798884 -6.211454 -8.998450 -0.907106 -3.861069 5.597727 15.580934 21.058663 1.508127 0.200518 13.505588 4.632682 4.090191 11.630430 2.156178 -6.258063 -2.353780 7.878075 -25.952104 -2.587052 -31.459952 -4.224240 -32.933693 -8.949025 2.099197 12.054154 -1.305593 11.767327 2.318349 15.885466 -3.565963 -5.748023 17.224541 17.653578 -16.326171 -8.196022 -11.325212 -10.117893 6.249524 -9.974509 1.367381 11.122303 3.470131 -14.289739 -9.137724 6.524503 9.708994 -6.261018 -15.925374 4.840067 13.458750 -13.472674 -15.835898 1.707475 14.715235 -6.273735 -26.079392 -3.324845 -14.688655 8.822123 -0.435463 -5.635942 -16.981498 1.030506 8.832800 -4.621642 -10.816587 -0.718015 10.120447 9.729568 8.198379 1.420050 1.419259 2.898763 29.090186 5.468175 -12.140420 1.803534 0.354065 -5.112641 8.345493 -12.833078 -10.347984 6.673649 -18.107789 3.107020 13.640441 -9.904382 -4.271074 17.540269 7.559830 4.133573 55.611322 3.176355 21.219199 16.870843 -16.311783 5.643621 -7.289280 2.543986 7.139409 7.719970 -2.604669 -26.719799 -16.815479 8.530993 16.733428 13.805782 -19.025171 -9.222502 -2.742339 -0.298946 1.293774 -3.060143 4.538704 -0.248413 -13.791091 -3.289625 14.236283 33.779946 -7.896040 1.994411 9.728726 9.416501 -11.520070 -23.845884 -9.002634 -16.053916 3.741410 3.998329 1.816953 10.241321 21.892587 -26.378485 14.587835 -4.000423 2.410578 11.514006 7.545076 -18.141825 -23.402846 -4.892000 9.032589 19.778737 -7.106459 5.239455 9.607588 -15.444188 -1.025637 3.009050 -1.601953 -3.327577 6.171472 1.611629 -7.529250 -8.156480 9.567705 -5.646079 -5.313428 1.537508 11.790505 3.335703 -19.408897 14.749611 -1.489765 -7.273232 6.321451 -4.660235 18.909869 -15.788976 -15.395756 12.745784 0.941849 -2.416136 -8.247611 4.201881 12.462751 3.923150 5.506137 -9.023643 -18.701790 10.262591 -8.182729 13.155534 6.757850 -3.220784 8.558815 -9.147657 -4.030440 -18.705186 -9.632508 -6.025889 1.463418 -16.946786 -7.949173 -2.864669 17.923819 11.617462 1.562323 -14.334702 3.269256 18.977944 -18.002338 -4.074213 11.493605 11.414338 -18.911387 3.416085 14.323280 -21.502918 1.808462 -6.393168 -0.607851 -4.130796 -12.892335 12.324281 4.538654 11.844432 -2.553309 4.114783 3.337993 8.070226 7.767264 4.671239 2.634768 23.000067 16.725245 -4.217168 -9.527603 -17.337304 5.747399 -20.580738 -21.383064 8.692681 4.910031 -14.815781 3.878755 4.326036 20.811289 4.015835 -0.119555 -3.555934 1.250927 +-11.125786 -11.255762 -2.681149 -24.010032 15.678451 13.902974 8.502928 -10.398382 -26.991541 -5.006627 7.643352 -23.556259 -2.719848 31.426419 -6.959596 26.210999 38.509804 8.373025 -11.982627 -0.996612 29.126984 -11.017419 32.645751 30.330332 -20.658288 -2.376683 -1.073031 12.121102 3.256484 9.921735 0.330957 -14.195511 10.790125 -29.256934 -5.204789 -22.061869 5.078021 13.444994 21.132922 -39.609953 8.109007 3.679601 5.053662 -8.657050 -9.347534 -2.429220 16.463782 23.178735 -7.551712 8.226289 18.759055 2.496737 -3.935721 7.166304 5.210523 9.162756 -1.194228 1.114413 -11.543606 -10.350317 -2.597282 -9.301872 9.185898 20.852838 28.578190 1.623040 0.170806 17.134647 3.623726 5.279273 14.631709 2.483001 -7.871168 -5.338218 11.381283 -35.616987 -5.130467 -44.937526 -4.863621 -48.658175 -14.625980 1.297582 18.334213 4.457235 16.044185 -0.867978 23.723673 -7.965625 -5.486492 24.593511 27.232183 -24.012139 -11.915082 -19.723205 -15.719914 8.804763 -12.752434 -2.751312 14.615561 2.632336 -21.088457 -14.516342 10.974016 13.449862 -8.384647 -22.077344 5.671091 22.156087 -22.100122 -24.053308 -1.366655 20.254401 -9.022650 -36.962853 -1.974281 -18.482616 9.045317 1.198754 -9.583244 -25.337483 3.901213 14.237112 -7.752500 -14.905173 -5.224541 19.344388 11.002449 8.567471 3.811730 0.690282 2.823296 38.890925 11.284859 -17.055035 2.044344 2.879175 -8.479479 8.325370 -18.147870 -15.855365 7.051739 -28.013420 1.126685 18.381651 -15.468551 -3.679275 20.612600 9.422752 7.903148 81.344170 2.288525 29.854151 20.942924 -25.228209 14.769167 -7.453800 1.126077 8.247516 12.942528 -1.544311 -38.720758 -23.497022 12.357260 24.603979 20.963076 -24.630474 -15.605650 -6.832741 -0.579497 3.778189 -3.090295 6.437691 -0.305457 -21.444529 -5.004588 18.242514 50.914228 -10.875569 -0.839655 14.824937 12.905460 -16.584927 -36.169319 -12.020656 -25.747714 3.395664 4.094830 -0.761692 14.688770 32.613357 -41.232456 22.986192 -7.277783 0.707995 16.608756 8.016790 -23.522133 -38.888983 -8.320116 15.768034 32.198340 -9.265092 8.552708 10.680307 -21.902366 -1.339241 4.212630 -0.523023 -5.602175 10.117781 -0.850291 -14.477625 -11.540285 10.024049 -10.936528 -9.966065 0.588024 15.090609 7.746541 -28.690136 23.031293 -1.721496 -8.294992 10.858968 -3.472364 25.967938 -22.369870 -25.640170 18.688627 2.166077 -4.776323 -10.567573 4.667436 18.482788 4.671073 1.178737 -9.860002 -30.888809 15.203716 -10.365731 20.263939 9.916538 -3.898982 14.906525 -2.766453 -7.638741 -24.540246 -15.709726 -7.435885 -1.769326 -22.274466 -13.771379 -4.994197 26.185253 18.026408 3.851313 -18.644344 2.698451 28.986747 -21.709130 -4.319766 18.879927 8.189372 -25.431945 2.895975 23.631461 -30.783204 0.152556 -11.556997 3.060790 -5.775417 -18.637240 14.678192 3.723532 14.139377 -1.851518 4.374496 1.562536 10.117475 12.637188 5.371604 1.887718 34.963261 20.726689 -7.462456 -9.691822 -23.187004 7.878573 -30.428898 -28.450724 9.091973 10.149016 -20.373964 5.657986 7.454747 27.568891 3.140373 2.830409 -2.269360 -1.337414 +-27.305753 -2.725917 27.879737 -67.380715 59.421495 43.650244 22.133769 -24.001158 -62.302398 -20.446364 6.242384 -62.927939 -34.672519 86.365205 -30.092434 44.785741 105.107039 21.932676 -27.271817 -11.695120 70.216612 -21.506253 96.621900 79.863387 -73.873076 -4.550176 12.905691 46.215874 10.974010 59.238674 -18.209952 -52.440459 25.331714 -42.840560 7.970182 -54.103886 13.704824 13.601154 22.195176 -110.518065 15.993099 13.081137 2.754293 -17.186230 -15.450383 10.604341 71.459769 65.608514 -22.553173 9.522481 53.936394 21.807629 -6.234225 21.918112 17.112731 17.959480 32.854910 -3.013788 -36.865103 -23.078386 -14.401240 -38.226013 13.453657 69.575465 88.669350 7.396054 4.047332 29.637548 -0.439412 18.816701 28.790679 12.222022 -2.161355 10.244683 36.343294 -67.538271 -0.574217 -117.116244 -14.344454 -135.419987 -44.178698 -26.607556 39.808190 14.835226 34.388536 -6.173730 78.187401 -7.247775 2.401190 51.947023 92.101285 -63.670800 -30.847503 -60.971734 -48.082218 24.587846 -40.070340 -6.287562 23.650819 6.974474 -58.814933 -46.422664 23.570547 25.246444 -26.093252 -31.202317 2.095501 67.257820 -68.941060 -47.547333 -33.006362 35.457656 -16.993004 -111.907086 -15.853232 -45.511535 36.319641 2.179782 -15.465285 -64.253460 15.839526 54.554854 -26.844717 -32.386047 -31.782203 65.633154 32.576489 10.607239 9.392663 -2.464872 11.846800 85.361733 45.994403 -41.803997 -8.489867 6.303032 -33.834642 6.439527 -53.492400 -24.286334 20.643823 -69.606787 3.799348 53.947645 -42.259408 -12.572292 25.052398 -0.053010 40.817487 210.799914 -10.470926 65.105849 34.004649 -81.119708 40.591372 -7.834105 -9.656052 17.950209 39.054684 14.430522 -89.958647 -66.594684 39.462327 70.504840 56.160191 -66.885346 -21.035161 -26.299971 -5.234047 0.318695 -3.113724 25.039651 -15.727976 -54.376033 -19.283497 39.977721 132.323589 -30.126731 -57.194087 42.223952 28.882573 -34.357386 -72.051619 -28.740391 -42.855129 6.791884 12.942510 -9.146533 44.400982 96.004765 -140.176679 70.390478 -8.643125 -18.013755 59.644612 -2.219933 -43.667615 -78.049055 -4.914982 61.816596 82.826840 -8.871815 4.365075 12.892472 -65.504530 -1.230510 8.831203 22.820961 -20.336640 29.607795 8.051995 -56.931731 -49.850448 -10.730010 -19.376484 -21.095538 -17.812156 35.107113 9.235615 -121.047825 83.772581 -7.549984 -18.032108 24.108498 -13.024034 55.813343 -68.432827 -83.136017 41.547720 -3.159738 -23.585526 -35.946158 10.618475 53.782382 9.345801 15.977814 -41.947656 -87.345921 42.076688 -22.866702 51.411105 29.697218 14.649601 56.964369 15.650137 -23.826338 -66.935050 -36.506243 7.543811 -7.714979 -54.311243 -19.443082 -18.567089 70.310627 69.977950 -0.538627 -31.228027 -14.254577 81.899057 -59.207230 -23.872466 56.444248 11.974333 -61.086279 14.429772 67.650385 -71.596695 -29.186809 -39.697081 -1.749997 -18.893077 -61.841368 32.219687 -15.782132 28.957080 18.049488 7.095860 -21.117249 29.611336 22.260985 6.032707 -0.986233 95.548003 75.228589 -37.779091 1.402658 -63.266764 32.863289 -97.532048 -75.782041 23.309333 -1.214221 -38.062851 16.468216 8.766236 66.278152 -1.107858 11.903896 -6.446544 -11.565193 +-28.200868 -4.435245 34.845846 -70.895621 60.363352 38.013870 21.577183 -21.140657 -64.102523 -19.104840 4.442389 -60.967510 -35.534602 89.517124 -30.931324 43.538972 104.878016 23.590124 -28.087865 -14.370853 70.421334 -24.164150 94.851491 75.501096 -75.908039 -5.741016 14.572093 50.786508 13.172274 63.528495 -19.757727 -50.477676 20.040380 -38.225787 11.913563 -55.971978 15.937747 14.605010 17.471580 -113.938520 16.762091 16.917869 4.187445 -18.599239 -13.087693 16.782885 69.288721 67.398020 -24.816106 9.416957 54.957974 21.747860 -6.403240 20.720722 15.167745 18.678094 40.485865 -2.020611 -40.124394 -21.051455 -12.872821 -39.629461 16.739990 70.753954 90.189998 4.691701 4.590451 30.074039 3.282508 20.555584 29.028594 10.740704 -4.409524 10.301571 37.229748 -65.132439 0.546747 -118.928285 -11.842824 -139.385391 -45.662372 -27.759353 42.816898 13.942679 28.757314 -5.736105 80.781225 -6.077183 3.008058 52.491934 91.601673 -60.293466 -31.584822 -65.569476 -51.144939 27.274219 -41.060727 -12.151852 26.280016 10.432154 -58.990777 -45.687592 22.046599 24.504957 -26.844360 -25.107508 0.169207 70.000587 -70.539261 -48.758105 -34.569956 38.397553 -15.948827 -112.660416 -13.877958 -45.390954 38.320355 1.427709 -11.498826 -60.900558 15.862447 55.802401 -28.853909 -27.300314 -38.433942 68.510186 31.230402 7.560588 9.918619 -2.922910 10.449097 77.728586 47.159121 -44.726100 -12.339254 11.228855 -36.864552 3.446861 -55.980206 -24.446450 21.464536 -69.808069 4.660088 51.266947 -43.009798 -13.540044 21.358732 -0.909077 43.272679 206.330034 -11.086177 63.449186 30.087396 -81.043407 41.713939 -3.658808 -11.367670 17.321764 39.559555 14.308965 -85.279573 -67.163586 38.799048 70.714328 58.254277 -64.548288 -21.629800 -28.829503 -7.852183 3.210721 -1.903386 28.131809 -19.874735 -54.703537 -20.816265 34.201220 131.657447 -27.359452 -65.744440 41.774452 31.630485 -38.011282 -71.591161 -26.860174 -40.284347 3.943689 9.414082 -10.923617 46.696181 97.654210 -148.532852 73.400156 -5.533704 -19.713188 60.413700 -8.767585 -41.888091 -83.741758 -7.116468 62.741248 86.490707 -10.480191 1.463525 13.146056 -65.601186 0.933542 7.225391 24.141153 -18.830060 29.989633 6.557373 -57.497540 -48.990664 -12.692278 -19.835120 -18.592156 -18.601105 33.303971 8.794302 -125.852519 85.565378 -12.125112 -15.784120 25.600496 -9.623727 53.968775 -69.605854 -83.704173 39.847949 1.039336 -24.286901 -41.018920 9.254937 56.561852 6.406643 16.344043 -40.930086 -87.330978 38.987376 -25.993589 49.452769 28.968077 12.595535 58.388448 21.069552 -22.525725 -64.898220 -34.431928 7.218983 -8.430645 -49.861503 -15.084394 -18.276267 70.756493 68.638698 -2.573515 -28.241459 -17.810284 83.742596 -55.765465 -26.267002 55.708749 2.848582 -59.139233 16.817927 69.216066 -72.799177 -30.551133 -42.638445 -0.630872 -19.856797 -58.277489 32.332995 -16.173369 26.067309 18.162831 6.615119 -23.905165 29.089907 23.094326 2.161500 -3.078613 98.779197 79.502166 -40.434767 6.383605 -62.211634 34.216099 -97.454958 -71.655678 19.696595 -4.332995 -36.209460 19.686397 8.538720 65.449001 -2.132866 13.153002 -5.886642 -13.265580 +-6.259365 -6.354766 -2.619763 -13.957221 8.794040 11.152719 4.916899 -9.421103 -16.811262 -1.101111 6.706360 -16.499922 -1.673332 17.296610 -6.247075 14.440228 23.051289 3.841798 -9.396299 -2.577228 18.850809 -2.917446 23.783988 21.122274 -13.667757 -1.260938 -0.081312 7.617078 6.633643 3.676946 0.026287 -5.138901 8.272061 -18.718176 -4.045716 -12.446575 2.536605 5.249617 15.083122 -23.025935 4.177808 -1.049166 1.678757 -4.026800 -4.761926 4.877995 10.105767 13.837972 -2.052190 4.919696 14.529396 2.842980 -1.733699 3.865353 3.279994 3.903621 5.755599 2.048463 -4.939927 -7.947830 -1.310636 -3.521101 3.539416 14.540893 20.003372 2.040255 -0.071401 9.794246 4.136440 3.399036 9.493082 2.620764 -4.824470 0.917743 5.999171 -23.250800 0.463348 -28.300566 -3.698973 -31.341826 -7.464679 0.809118 10.021075 -2.975068 9.727009 1.981881 14.616616 -2.468620 -4.658387 15.005326 16.290696 -14.625593 -6.791684 -8.388244 -8.173708 4.540328 -8.543287 2.070958 10.801323 3.224920 -12.504496 -7.151860 6.390532 7.992434 -5.810586 -12.136383 3.568188 11.664526 -12.716719 -11.749398 0.772705 12.854558 -4.682390 -25.565417 -6.033624 -14.027836 10.415982 -0.747109 -5.330159 -14.874568 1.596829 8.772505 -3.740791 -8.387146 0.162012 10.299698 10.575780 6.675249 0.375110 1.360008 3.101446 25.979491 5.280564 -10.033378 1.702575 -0.240591 -6.794067 6.687881 -11.702058 -7.541253 6.198921 -15.410177 6.186116 12.521942 -8.591295 -3.247070 16.678322 6.192932 3.725630 55.877908 1.290964 21.531217 15.822229 -14.946878 4.544261 -6.195653 1.959545 5.759669 6.172024 -0.832571 -26.876382 -14.333783 8.074735 15.322755 11.408412 -20.265340 -5.302822 -2.342927 -0.912688 0.415119 -1.829626 3.480089 -0.661677 -11.440038 -3.540231 13.754653 33.699156 -7.063974 0.004548 7.713980 4.908337 -10.114063 -20.453612 -7.235170 -10.253343 4.075811 4.369236 1.628546 9.038058 18.972628 -25.809940 13.250118 -3.439736 0.438433 13.246923 7.521788 -16.685726 -18.641830 -3.814166 8.654874 17.514277 -5.112683 1.421264 7.927942 -13.956244 -1.386084 2.903901 -0.129943 -3.706855 5.722677 4.460948 -7.601274 -7.760277 5.911009 -2.593399 -3.724599 0.014645 10.382538 -0.779341 -23.618461 13.945346 -0.381534 -6.548556 3.382056 -4.442552 14.901533 -14.017384 -13.591772 10.212859 0.280246 -3.319004 -8.732076 2.845752 10.646411 3.751166 9.323311 -10.464126 -18.226140 10.350776 -8.612781 11.762956 6.052654 -1.387676 8.598826 -10.117976 -2.822501 -19.329047 -8.442300 -3.059950 1.235744 -16.239068 -3.330902 -2.973838 15.273334 10.918873 0.427665 -12.886016 2.585515 17.893693 -15.973134 -3.924196 9.226942 14.938164 -18.218175 3.357769 11.626231 -19.167068 0.581738 -5.471924 -5.195294 -4.462996 -11.612495 11.018079 2.823447 10.421691 -1.141921 3.873054 1.696003 7.071577 5.060372 3.791964 3.633270 21.062880 19.186001 -3.929517 -6.424058 -15.419024 6.864360 -18.533144 -20.381026 7.922746 2.757130 -12.835717 2.652130 3.755904 19.683850 3.900410 -2.009178 -2.954341 1.984458 +-0.611850 -0.654145 0.298926 -1.854164 1.156459 -0.214352 0.515183 -0.541895 -2.148168 -0.933972 0.741219 -2.637806 -0.775162 2.192170 -0.733187 1.160421 2.925745 0.525396 -1.161949 -0.900222 2.175846 -1.093612 2.964914 2.646313 -1.997495 -0.069569 -0.211591 1.512733 1.064918 0.405258 0.784817 -0.693538 0.280740 -1.628460 0.299676 -1.444864 0.342027 0.625120 1.364095 -3.281495 0.436057 0.898070 1.566086 -0.427675 -0.220402 1.160722 1.328693 1.562173 -0.863156 0.620756 2.489813 0.282150 0.063854 0.309351 -0.002525 -0.449511 1.452849 0.197312 -0.919807 -0.303470 -0.034237 -0.314192 0.412729 1.871693 2.748330 0.028318 -0.016522 0.558820 0.853819 1.032911 1.141687 0.354185 -0.193801 -0.051898 1.060376 -2.590870 -0.058905 -5.654724 0.078709 -5.618812 -1.322797 -0.118576 2.406354 0.345623 0.129494 0.611640 1.912239 0.088830 -0.321253 1.600330 1.994255 -0.499412 -0.922976 -1.171544 -1.587332 1.350087 -1.083121 0.247694 1.764554 1.416338 -1.514898 -0.363592 0.858338 0.315230 -0.755928 -0.510428 0.201031 1.507435 -1.568321 -0.626972 -0.385629 2.101970 0.496712 -3.595616 0.553278 -1.938298 0.493543 0.146731 -0.647254 -0.554229 0.091674 0.230958 -0.882742 0.222348 -2.114565 1.819575 0.528927 0.833767 0.158391 0.267047 0.556350 1.975301 0.147346 -1.537191 0.000595 0.232074 -0.925896 0.574618 -1.906257 -0.934713 1.718117 -1.636128 0.989127 0.350250 -1.135408 -1.411918 1.492902 0.104592 0.475995 5.880118 0.165344 3.293679 1.899805 -1.271730 1.204614 -0.266352 0.087970 0.776355 1.186490 -0.017762 -1.922719 -1.719635 0.912114 1.932488 1.417172 -2.380218 -1.278887 0.124722 -0.271253 0.386581 0.221645 0.683664 -0.182583 -1.259370 -0.468887 1.509532 3.812437 0.015863 -0.555573 0.399367 1.787398 -1.168339 -2.784274 -0.353858 -1.621681 0.504001 -0.081810 0.280198 1.279988 2.559357 -5.084472 1.859480 0.431801 0.594319 1.567870 -0.057241 -2.412650 -4.525060 -0.216855 1.021437 2.440219 -0.477771 -0.407209 0.934426 -1.725131 -0.096383 0.165466 0.146162 -0.728065 0.832353 -0.130032 -0.498171 -1.065416 -0.067222 -0.688643 0.123787 -0.352285 1.143239 1.022936 -3.180710 1.734990 -0.733269 -0.785159 -0.310344 -0.661398 1.367675 -1.818092 -1.546292 0.508823 -0.560492 -1.303149 -2.218472 0.074878 1.116072 -0.222280 1.071597 -0.820015 -1.298439 1.255078 -1.658189 1.430979 0.856633 -0.331051 1.156112 0.931260 -0.269193 -2.226181 -0.293346 -0.780810 -0.564568 -2.158983 0.366898 -0.415492 1.279133 1.515748 -0.196214 -1.360187 0.130223 2.366465 -1.527294 -1.723644 1.099070 -0.556367 -1.461332 1.329127 1.463278 -2.478359 0.045230 -1.646629 -0.328638 -0.199767 -1.256298 1.282489 0.489511 0.886965 0.014757 0.177514 -0.186047 1.012189 0.647976 -0.034432 0.110058 2.933942 2.576997 -0.752139 0.066287 -2.359673 0.941648 -2.376543 -2.037342 0.572641 0.331462 -1.971383 0.395239 0.103648 2.306916 0.396609 -0.124469 -0.996647 0.929020 +-2.663590 -3.786153 -0.878574 -6.014029 3.592941 3.120813 2.124775 -3.374774 -7.637765 -0.779809 3.076806 -6.478317 -0.027745 7.294752 -2.144642 6.464148 9.603921 1.979264 -3.768764 -1.344265 7.511694 -2.560071 8.834347 8.172454 -5.223033 -0.424529 -0.764170 2.973962 2.473705 1.272529 0.298777 -1.972135 3.141146 -7.558033 -1.368467 -5.208645 0.930208 3.405509 6.283944 -9.791633 2.004295 0.036937 1.965989 -1.672241 -1.920404 2.261149 3.261798 5.489730 -1.383787 3.004496 5.781967 0.336578 -0.629560 1.513618 1.292202 1.732521 1.808438 1.339594 -2.295291 -2.692404 -0.652496 -1.707001 2.238496 5.317966 7.704368 0.199534 -0.161792 3.818407 2.150966 1.609924 4.615969 0.779212 -2.210231 -1.189035 2.608333 -9.620770 -0.400628 -12.556362 -1.165346 -13.514394 -3.432930 1.220055 5.444012 -0.753490 3.363180 0.712608 5.750275 -1.335272 -2.436709 5.835989 6.106155 -5.302975 -2.901373 -3.239610 -3.720248 1.916311 -3.147386 0.081050 4.970031 1.704031 -5.023895 -2.488978 3.339139 2.877732 -2.142287 -4.802339 1.629139 5.121205 -5.193612 -5.149692 0.612442 5.949398 -1.364484 -9.479271 -0.178701 -5.767793 3.456515 0.039603 -2.656591 -5.185895 0.696325 2.578081 -2.088052 -2.698949 -1.265013 4.837475 3.196715 3.075947 0.243848 0.400671 0.747845 9.419697 1.827993 -4.762124 0.827995 0.404134 -2.145956 3.212808 -4.871496 -3.743990 2.870442 -6.323754 1.823769 3.704703 -3.626460 -1.439193 6.513456 3.145791 0.932688 20.333705 0.779924 8.436406 6.097310 -5.399216 3.069166 -1.876604 1.499696 2.749551 3.048917 -1.253436 -9.992532 -5.966870 3.102228 6.063942 4.874316 -7.997611 -3.615023 -0.772391 -0.230982 1.129473 -0.654970 1.328105 0.010258 -4.761095 -1.249879 4.412625 13.214295 -2.291575 0.472966 2.818445 2.553656 -4.283816 -9.647246 -2.925726 -5.292206 1.551027 0.959890 0.692682 3.658864 7.758933 -11.817367 5.458369 -1.815092 0.760874 5.181743 2.855112 -6.649556 -10.638733 -2.364500 2.753040 8.026356 -2.093763 1.171725 3.988173 -5.432616 -0.363517 0.735232 -0.564644 -1.632235 2.271907 0.803790 -2.534273 -2.223306 2.528710 -1.835113 -1.472866 0.360481 4.245384 1.080236 -8.365438 4.846359 -0.448259 -2.572743 1.757584 -1.039501 6.174110 -5.025857 -5.031526 4.001545 0.247641 -1.435338 -4.104050 1.211015 4.112378 0.521475 2.202241 -3.367346 -7.424382 4.063985 -3.978859 4.966866 2.446109 -1.813587 3.384501 -1.777978 -1.201956 -6.930465 -2.771521 -2.071624 -0.331399 -5.586637 -1.903639 -1.095084 5.846488 3.791935 0.995088 -4.854565 1.237069 7.271380 -5.975950 -1.533381 4.103281 3.749699 -6.531324 2.180054 5.142281 -7.999026 0.865517 -2.630620 -1.352676 -1.494072 -3.876112 4.917372 1.952937 4.160965 -1.569009 1.752671 0.912466 2.895250 2.586931 1.266477 0.925120 8.963203 7.681990 -1.390245 -2.663539 -6.022542 2.345716 -7.029554 -7.368144 2.414942 2.288767 -5.859803 1.338154 1.636327 7.889692 1.551737 -0.451193 -1.402626 1.320872 +-6.056454 -6.898626 -1.041209 -13.688883 9.167913 7.997720 4.816809 -8.339218 -14.638095 -1.727638 6.998737 -13.650898 -1.295776 16.309711 -4.877713 14.088082 17.907265 2.567149 -7.851041 -2.341142 14.774816 -0.306332 17.917003 15.948971 -12.011681 -0.903331 -0.317171 4.879927 4.701336 2.257393 0.646443 -7.027049 7.329439 -14.251389 -3.770089 -7.730507 1.547027 5.587166 13.629253 -17.755873 4.083380 0.275979 1.254937 -3.874140 -4.347030 -0.333118 8.000925 12.367752 -3.194389 6.034778 11.511379 1.888914 -2.159644 3.262207 3.387503 2.586142 1.164483 0.173783 -4.537824 -6.759805 -1.650326 -1.242840 3.089943 12.368261 14.898802 0.587629 -0.843168 9.011063 4.173583 3.453873 8.770281 2.537796 -3.619708 -1.146363 6.045156 -17.741385 -1.859377 -23.894847 -2.859429 -23.993799 -8.043670 2.994030 10.424719 -0.886466 8.104604 0.562493 13.230789 -2.138112 -5.816928 11.418006 14.383808 -11.989380 -6.067673 -6.956199 -8.097781 3.845681 -6.973442 1.972971 6.523697 2.027296 -11.799435 -6.284876 3.477046 6.170510 -5.043096 -10.628112 3.949597 10.902044 -10.176340 -10.629537 1.679327 12.134731 -3.188973 -19.905067 -3.930360 -9.875693 7.287798 -0.348950 -6.106681 -11.983057 1.595323 5.703123 -4.905191 -7.302423 -0.783739 7.119498 8.434578 7.670635 0.813448 1.248315 3.249993 21.244854 3.836532 -10.020687 2.029480 -0.901415 -1.450318 7.696677 -8.062403 -6.884676 3.587553 -12.814917 3.114072 9.642037 -7.820856 -3.267956 11.553383 5.737017 1.597384 39.403318 0.887882 16.609219 12.707660 -12.435506 2.527734 -5.489473 1.968360 5.158542 6.264697 -1.298968 -16.424375 -13.056197 8.748662 14.081857 10.634605 -14.469740 -5.834109 -0.587422 -0.651665 -0.156312 -1.029088 2.874906 0.817641 -10.445190 -2.935047 10.869155 23.131680 -6.205383 -3.329613 6.982975 8.297216 -5.478957 -13.184900 -6.749043 -11.780145 3.420969 5.394012 1.763420 8.844830 17.474719 -22.508379 11.394344 -2.073577 0.794211 8.803185 6.743624 -14.026678 -15.318149 -4.211524 6.740460 13.445701 -4.398522 3.916670 7.342738 -12.246618 -0.834282 2.272883 -1.743963 -3.769583 5.258262 1.947723 -5.828555 -5.585020 5.262353 -4.342316 -3.663910 -0.243482 9.750865 2.507346 -18.141025 11.466752 0.323396 -5.715903 3.927087 -4.423955 15.440423 -11.545380 -12.115743 9.334692 -0.976846 -3.008414 -5.071527 2.702678 8.405758 2.444224 6.031563 -7.807971 -12.065936 8.544501 -5.283091 11.861522 5.590401 -2.602495 7.505381 -8.426256 -3.241263 -11.887372 -8.066183 0.191561 1.575776 -12.689770 -5.483939 -2.750313 13.159218 8.099934 1.080951 -10.841124 0.429694 12.612089 -14.801092 -1.467210 8.984760 8.407599 -13.789572 3.444528 11.233148 -14.006212 2.264627 -5.779864 -1.125080 -5.562105 -9.407227 9.996149 4.758367 8.922350 -2.551480 2.779460 1.857986 6.204059 5.497551 3.127816 2.832162 15.558880 13.416070 -4.201827 -6.652034 -13.855635 5.656746 -15.589397 -16.822810 7.664874 1.468895 -11.629113 1.290104 0.029146 15.449531 2.985029 -0.497623 -3.388751 3.403842 +-13.237978 -8.956819 -0.729697 -31.529099 25.246277 35.080632 10.601917 -23.892594 -32.540897 -1.424133 15.849355 -36.704554 -5.835344 36.971936 -14.885229 31.426883 44.780564 1.851498 -21.103512 -0.090565 34.258196 7.035972 47.639586 41.086292 -28.570153 -2.145420 -1.103550 17.281533 6.004571 9.678598 -2.100183 -19.197690 16.691853 -33.873816 -16.245676 -15.167998 3.730575 5.086557 30.918727 -42.786057 7.834454 -1.554185 -9.135032 -9.029814 -10.582998 -8.896250 25.952207 28.862855 -1.405734 8.415827 25.390755 8.231328 -6.152668 7.860657 9.252162 5.590553 9.445117 -1.444540 -10.305005 -20.637876 -4.217083 -0.888805 2.104147 31.806919 37.420050 7.223081 -1.765918 20.348065 4.008706 5.687796 16.993192 6.924603 -11.943200 9.066047 11.612322 -37.299184 0.765073 -42.486041 -8.217463 -34.820064 -18.461513 4.232572 16.705407 5.516134 23.056156 2.534625 31.433843 -6.458263 -12.050119 28.930499 38.079084 -32.748266 -13.989798 -17.074013 -19.140069 6.166048 -16.629201 7.870903 5.219816 5.771489 -28.217693 -15.226551 6.746507 17.476515 -11.910648 -22.652203 8.319879 25.319099 -24.029495 -24.365242 5.112695 27.347098 -9.855409 -51.750299 -26.609226 -22.107397 19.712646 -1.247603 -13.284478 -34.714759 5.388682 19.315327 -8.081625 -19.725664 4.593495 16.720688 22.662760 16.579295 1.316191 3.696153 12.306529 56.471094 8.187030 -17.972085 5.705506 -7.052930 -2.995560 17.215544 -15.630336 -10.518985 -6.867534 -30.962407 10.473453 34.520126 -17.533880 -6.765460 13.553040 13.440184 5.297517 115.555166 0.246024 41.366698 28.154198 -34.961524 3.942466 -17.373332 0.473226 7.410640 7.462718 2.036550 -52.820269 -29.447414 24.328617 33.713367 23.466935 -38.032382 -1.320359 -1.219744 -2.349150 -4.250998 -1.026642 8.550482 2.123744 -23.610650 -8.546160 32.514474 66.840138 -16.031874 -15.606799 22.321673 8.247447 -10.700590 -30.985325 -16.270389 -16.893263 8.180819 20.860441 3.267635 19.203355 41.324165 -44.991825 25.680155 -1.478330 -2.982939 29.115712 14.771622 -33.636413 -17.369478 -9.066806 21.463086 31.575275 -8.136978 1.726997 11.370990 -28.604435 -3.298992 10.946946 -2.581221 -7.410114 13.776043 10.231696 -20.345557 -19.024526 7.174811 -8.424730 -5.949861 -7.623625 22.731604 -8.083207 -44.360744 32.893254 6.868331 -13.124817 6.933254 -16.057539 36.461730 -27.510927 -32.976399 24.939199 -4.970734 -8.093803 -7.873901 5.801043 17.743508 19.171338 21.037389 -25.746452 -31.853218 19.150005 -8.413157 28.013467 12.940219 0.839200 16.177403 -19.772850 -7.857446 -32.132964 -26.268862 9.254628 9.514519 -34.930554 -13.217106 -8.299409 33.246961 19.651531 -0.367924 -29.858984 -5.143372 31.829447 -31.967915 -3.830265 19.503010 22.227097 -41.107207 0.265788 24.854952 -30.652579 3.787563 -10.621494 -7.572091 -19.288169 -27.505810 18.869983 10.226303 21.604048 0.192127 6.465554 1.801197 12.077898 9.580983 10.914406 9.760979 38.374874 29.763797 -7.734389 -12.827312 -34.826398 16.944519 -39.285227 -46.427520 24.318738 -1.379128 -24.387195 -0.355452 0.782160 36.942408 7.028800 -3.728337 -4.293273 6.084043 +-15.171130 -16.354152 -11.092668 -34.880918 24.322288 30.875107 13.743451 -23.106110 -41.017927 -2.067525 18.172045 -44.928536 -4.246459 45.530535 -11.514590 41.931229 57.048776 6.013123 -25.531087 0.756288 42.294134 -3.889719 53.875940 46.572496 -28.660488 -2.180744 -8.200713 17.045873 5.088864 5.574845 5.753702 -16.424742 19.440895 -46.379142 -16.866407 -21.664316 5.216406 12.796817 36.407959 -55.864752 11.096218 5.541276 6.563079 -13.457881 -15.554937 -8.005898 25.259102 34.845541 -0.569616 9.972960 26.137977 1.735046 -3.605056 10.461948 10.834629 8.931795 3.795915 -2.024463 -17.429996 -22.861379 -3.283329 -6.060354 7.082356 33.528151 41.513020 7.125286 -2.673984 28.887225 7.079024 9.213259 22.867864 5.633781 -18.307171 0.186598 13.847575 -49.741008 -1.768820 -48.944839 -9.015770 -56.119502 -22.231676 7.331984 27.934185 5.582685 26.580583 3.602260 34.855601 -11.002590 -13.946719 37.935550 42.163543 -35.490322 -18.886393 -23.788344 -19.068763 11.228199 -18.759433 2.709483 24.465683 8.534197 -33.666653 -10.898176 14.028728 21.699186 -13.052147 -30.646320 12.645948 30.397407 -27.500763 -33.140575 7.327429 35.534205 -12.121562 -59.237820 -18.228398 -22.780419 11.145703 1.211618 -15.502496 -38.734336 5.929003 17.461952 -8.872723 -21.781078 -0.797038 22.245303 19.679683 19.175757 5.035843 10.213877 11.107055 65.885930 8.422708 -21.919525 8.441385 -3.259983 -4.168358 21.142310 -16.100234 -22.871480 -4.209214 -41.903032 9.690768 33.609371 -21.742513 -7.570806 16.379486 21.478912 6.118534 127.418486 3.903761 49.998245 36.943626 -37.159390 12.119898 -19.460346 2.008886 8.258619 11.924737 -3.052043 -58.693757 -35.388956 24.088880 39.074316 29.935182 -41.200228 -10.463565 -4.086068 -1.901067 0.794734 -3.372878 10.691204 6.058025 -29.041270 -7.963888 36.489233 78.931359 -18.125357 -2.996738 26.136794 12.466213 -16.330990 -49.182393 -19.501819 -29.142501 7.463827 10.601018 3.821947 20.194518 47.877997 -45.387814 33.469079 -4.770094 2.436964 33.265911 16.978655 -40.953595 -46.407677 -16.783968 23.070218 44.584583 -16.741045 1.102272 14.533388 -32.503233 -3.648825 11.214567 -5.909649 -5.290979 15.004064 0.725705 -15.362132 -17.706177 16.403215 -12.064143 -6.778448 -1.320444 25.936553 3.810771 -35.526876 35.220644 3.880093 -16.155020 10.008242 -11.876862 40.458366 -30.837824 -35.404122 27.307583 -2.858513 -12.129818 -11.300523 7.084901 22.534206 18.393590 13.581091 -21.621237 -35.055472 26.542091 -14.754140 33.101999 15.488514 -5.118077 16.923598 -13.292210 -13.184428 -32.570603 -30.182505 -10.405392 4.314491 -38.656891 -16.941889 -8.823978 39.820363 21.309989 4.248866 -37.207503 1.440926 39.891971 -34.454153 -9.253635 26.008440 13.493771 -46.412171 3.677679 32.885920 -42.781996 7.290109 -14.036801 -5.960580 -16.997834 -29.916407 21.884301 12.514620 24.159346 -4.130367 4.821999 7.470637 14.082868 14.853415 11.995730 8.277671 50.390398 26.051163 -8.046999 -18.647814 -39.349370 15.499479 -44.015599 -48.306603 23.896389 12.700060 -31.106599 3.359915 10.568706 42.057201 8.199641 -8.622010 -8.847447 5.205094 +-16.796933 1.146119 21.715546 -39.664511 34.317040 22.884549 13.289112 -12.817536 -36.444739 -16.558949 2.269848 -37.432507 -25.196023 52.026867 -18.748945 21.522551 65.344732 15.913534 -14.934974 -9.805127 39.189683 -16.800939 59.010033 52.607849 -45.761161 -2.210817 10.658616 28.897723 7.554340 36.961869 -13.450715 -32.271311 16.299861 -22.272756 8.837907 -34.022015 6.475533 6.275738 7.578996 -68.762140 8.727507 6.190780 -0.611914 -9.527413 -8.110973 12.807940 46.851536 39.015500 -13.033606 6.155612 31.650467 13.027051 -2.587046 12.930309 13.276623 10.095813 21.138977 -0.595451 -21.726321 -10.724224 -10.020676 -28.637146 5.982711 43.472172 53.790081 4.950307 1.888533 12.979128 -1.861925 11.054495 15.695062 8.338273 4.106411 8.186392 22.412912 -41.804352 1.619238 -74.015561 -9.087088 -89.449820 -27.939238 -19.171333 26.110605 6.837533 18.456553 -4.829688 48.948336 -2.803003 3.780041 29.357696 58.960794 -39.546714 -19.156057 -34.474260 -27.443650 14.930480 -24.492759 -1.781569 13.086711 3.148236 -36.397997 -28.871479 16.987960 13.067111 -16.789512 -15.662074 0.360548 42.098516 -44.627450 -25.054047 -26.822914 15.818566 -6.548056 -67.833627 -5.606674 -27.236107 27.725434 3.333116 -13.145365 -37.763465 11.296801 33.468268 -15.998592 -18.350736 -22.734587 42.256216 18.144170 4.668491 5.055840 -1.000703 7.926987 49.039423 30.626187 -25.135357 -4.986838 4.564785 -24.374547 1.470804 -32.961988 -14.126292 17.118893 -40.775934 0.593167 29.360924 -27.415392 -8.350501 18.074057 -2.460813 25.756045 125.720142 -8.421023 37.509037 19.236851 -49.297355 25.455851 -4.569474 -6.299299 10.897967 27.134427 11.964139 -54.666441 -40.108267 23.818209 45.413427 33.883750 -41.471554 -12.544530 -16.705926 -2.321493 -1.217069 0.712421 13.127580 -9.888105 -31.895736 -12.270019 24.110554 78.307498 -19.527242 -37.367787 21.777907 13.538708 -16.915749 -43.752604 -15.194763 -21.675491 5.393714 6.181268 -5.641765 27.296270 59.005775 -90.114106 43.823845 -8.157751 -12.709708 36.752951 -1.255676 -24.461169 -48.841829 0.392179 38.845224 50.577813 -0.684804 1.962524 6.927747 -41.734675 -3.048910 4.613104 18.220957 -15.387222 19.830534 7.137658 -36.304693 -31.634258 -11.334695 -9.925566 -13.303661 -11.661273 21.644115 4.889464 -79.895729 52.817499 -3.851859 -10.913971 12.450936 -7.919385 31.301476 -44.234710 -52.762726 23.449356 -3.903781 -17.547051 -22.602084 4.239533 32.690911 1.652146 6.047082 -26.132168 -52.797805 28.850286 -13.207736 33.167154 18.429365 10.788338 40.001236 12.883541 -14.781448 -38.765696 -19.101674 7.467417 -9.372984 -31.919026 -9.561828 -11.915287 41.364439 47.247893 -0.802076 -15.677705 -5.739858 49.874156 -37.258994 -16.212608 34.176042 11.443196 -32.475156 12.412577 40.506388 -43.805311 -20.959488 -26.147222 -5.402307 -10.212623 -38.911372 19.563817 -14.830654 17.025890 13.808573 4.177850 -14.816400 19.325927 11.855644 3.135834 0.685334 56.774626 52.592432 -25.647971 3.619638 -39.647849 21.534235 -60.323581 -45.409754 12.370079 1.072673 -21.074279 8.222589 3.687658 38.167044 -0.382755 4.974304 -5.337455 -5.328568 +0.142653 0.616728 0.704008 -0.071082 -0.134990 -0.406507 0.290657 0.367942 -0.941603 -0.728382 1.185328 -0.440936 -1.195097 1.395077 -1.176982 -0.864228 0.805773 1.349170 -0.862982 0.064478 0.846994 -0.332400 1.241050 0.721042 -1.177709 0.501705 0.438607 -0.004594 0.402399 1.299246 0.690654 -0.650635 1.227500 1.098808 1.092012 -1.259074 0.306639 0.537527 -0.654788 -1.609585 0.155675 0.377832 0.574628 -0.341338 -0.246235 1.476661 0.377468 1.137886 0.283975 -0.255442 0.999039 0.582541 0.533346 0.174003 0.248947 -1.163333 1.131502 -0.441542 0.204014 -0.015884 -0.199479 -0.648974 -0.407425 1.314993 1.474854 -0.357620 0.049881 -0.882926 -0.634623 0.269664 0.167319 -0.540050 0.697384 0.568468 -0.850169 0.160766 -0.580566 -1.726386 0.226552 -2.775406 -0.371110 -0.343117 1.316072 0.640920 -0.975058 0.074358 1.013815 1.370789 0.278750 0.970649 1.698677 0.603864 -0.648047 0.185185 -0.360549 1.491631 -0.260129 0.947673 0.344254 -0.044700 -0.794809 0.135053 -1.161985 -0.239185 0.195288 0.837205 -0.103511 1.048881 -0.815137 1.033043 -0.076061 0.640344 0.731750 -1.753925 0.270243 -0.673082 0.536586 0.316648 -0.245429 0.594504 0.286989 0.575432 -0.027337 0.525849 -1.469225 0.634785 -1.333176 0.888790 -0.298704 -0.437299 0.808736 -0.878739 0.076063 -0.669286 0.241704 -0.879027 -0.394889 0.958572 -0.914367 0.234130 0.956293 -0.212070 0.306152 -0.443828 -0.598684 -1.340988 -0.824321 0.010485 0.172680 1.139580 0.103962 1.251221 0.198336 -0.947424 0.212785 0.018549 -0.677105 0.235412 0.578978 -0.352244 0.604144 -1.211231 0.042948 1.485548 0.825956 -1.062008 0.580041 0.038933 -0.640909 -0.485252 1.050883 0.026458 -0.648091 -0.661803 -0.588246 0.994970 -0.164536 -0.095233 -0.779658 -0.950348 0.483154 0.649907 -0.267745 0.319451 0.442410 0.764867 0.422278 -0.179491 0.384889 0.014828 -2.513624 1.455623 0.265738 -0.045478 0.347533 -0.514281 -0.645123 -1.639957 0.810551 0.438498 0.675861 -0.279832 -0.469502 1.235334 -1.155629 -0.038957 -0.029028 -0.679110 0.347688 0.265277 0.440564 0.229685 -1.261308 -0.102779 0.520771 -0.146185 -0.463358 1.542904 1.042592 -1.795914 0.318525 -0.888251 -0.222922 -1.395391 -0.185607 -0.118950 -1.412369 -1.473786 0.196571 0.056627 -0.683549 -0.924353 -0.204296 1.387452 -0.867406 0.607075 0.365987 0.282709 0.611389 -0.773970 -0.240227 0.481190 0.638121 0.711563 0.503945 -0.054452 -0.601803 0.322831 0.973572 -1.000367 -0.722403 1.140815 -0.330994 0.711083 0.075375 0.368682 -0.933457 0.368961 1.373578 -0.010431 -0.945093 -0.194125 0.028326 0.867281 0.645609 0.753858 -0.706942 -0.471084 -1.532236 0.121923 -0.297553 -0.773618 0.937257 0.185847 0.925051 -0.401037 0.436238 -0.866408 0.686186 0.250435 0.619767 0.882970 -0.154698 1.064201 -0.457145 0.858895 -0.237815 0.531580 -0.637227 -0.411531 -0.184997 -0.489312 0.234820 1.201757 -0.441910 1.044759 0.345718 0.352601 0.125378 1.436086 +-7.339475 -4.603895 4.484128 -18.464019 13.674995 10.971614 5.906180 -9.150971 -17.159229 -3.217817 6.782710 -15.510300 -6.175466 21.033968 -7.565866 12.863256 23.240849 2.903077 -9.424388 -4.481091 18.477544 -3.619788 24.091752 20.622064 -18.055782 -1.363499 2.576402 10.968931 5.716281 8.150164 -2.509327 -8.141313 6.387421 -14.841293 -1.707801 -9.673420 2.797566 2.934084 10.349067 -23.712540 4.071280 -0.518283 -1.966319 -4.338726 -5.172464 2.295046 14.130969 16.401958 -4.561887 4.122816 15.707145 2.178810 -2.479754 4.345011 5.630661 2.889656 6.910925 2.878246 -6.086581 -7.406304 -2.631295 -5.726415 3.750470 17.769913 20.401222 1.591183 -0.156359 9.118691 2.217430 4.895946 9.188583 3.362036 -3.175570 1.838081 9.568659 -20.657378 -0.073433 -30.657243 -3.670125 -30.183030 -10.953264 -1.221583 11.477816 -1.507655 9.492537 1.759360 18.299361 -0.798119 -4.235824 13.646125 20.336841 -14.949415 -7.947552 -11.122935 -12.171959 5.268679 -9.571441 2.072078 6.424717 3.350016 -15.279973 -7.956875 4.878843 7.597045 -7.046691 -10.027537 2.197134 15.616466 -13.913132 -11.162451 -2.740629 11.981914 -3.340219 -27.703786 -6.016830 -12.784168 13.422869 -1.146546 -5.932289 -14.836738 2.867788 11.448550 -6.366334 -8.288443 -2.846104 12.315656 10.257926 7.000121 1.175499 0.620147 4.415345 23.229692 8.781176 -10.894272 -0.120453 -0.855088 -6.177935 6.469692 -10.368379 -5.983436 5.604653 -15.804778 3.619135 12.502812 -9.657233 -4.785445 13.098599 4.391815 5.806253 54.711440 -0.636183 19.393738 11.846069 -17.507896 5.914850 -4.777646 0.384959 6.305343 8.622579 0.031028 -23.651643 -16.506944 11.281636 18.158795 13.197895 -19.962837 -5.349090 -2.840499 -1.858412 -0.642719 -0.691262 4.377466 -1.890633 -11.824154 -4.881191 13.284187 30.858937 -8.407805 -12.816829 9.814522 7.049985 -7.363398 -17.561218 -7.338496 -9.472429 3.976013 5.643899 0.666850 12.169425 23.020457 -32.455115 15.358305 -2.665425 -2.264254 14.474886 3.707721 -14.593747 -18.273750 -2.244955 11.269147 17.875945 -2.339939 -0.449106 6.687482 -16.415521 -0.831888 3.152093 1.614639 -4.978525 7.968414 2.562892 -10.875986 -10.988900 0.299976 -5.168664 -1.955064 -2.838580 10.751250 -3.062323 -29.567198 18.333219 -0.445342 -6.380835 4.174661 -5.715286 16.271299 -15.943953 -18.991206 11.175130 -1.075438 -5.120096 -8.842715 2.518196 11.544035 3.719507 5.959577 -12.141020 -17.701931 10.453582 -7.572675 15.052925 7.234422 0.856939 13.424797 -4.545692 -4.662147 -16.673302 -8.328183 3.221607 0.949558 -16.825199 -5.951357 -4.443533 16.928227 12.850815 -0.080010 -9.658278 -1.029312 18.587356 -17.016495 -5.972384 11.302884 8.857224 -16.775376 4.918167 14.559898 -17.084943 -2.023589 -8.809166 -3.925694 -7.109374 -15.101521 10.810462 2.068806 10.777885 0.632091 4.499261 -0.670964 7.476933 4.980477 4.586668 2.427685 21.165300 21.455823 -8.687767 -5.483083 -18.247073 9.771663 -21.600879 -21.463424 9.157629 0.495733 -10.435565 2.366472 0.194713 18.348446 2.656621 -1.657343 -2.827096 1.950173 +-2.392012 -2.423664 -0.448189 -5.769001 3.634148 3.003058 1.930870 -2.551842 -6.336822 -1.530195 2.514914 -6.703990 -1.406743 7.200550 -2.218778 5.201231 9.042207 1.305186 -3.020432 -0.849844 6.499330 -1.030518 8.239757 7.402580 -5.667962 -0.656139 -0.703800 3.331476 1.945149 1.224812 1.395292 -3.602158 2.676800 -5.681394 -1.292853 -3.898529 1.495121 2.315098 4.404740 -9.123548 1.636918 1.367894 1.167458 -1.926381 -1.962614 -0.136927 4.067658 5.719893 -1.523052 1.764200 5.257143 1.283837 -0.853050 1.574013 0.789290 0.382870 0.024003 -0.961670 -2.775436 -2.668061 -0.222758 -1.925656 1.146055 5.685088 7.424543 0.746774 0.087501 3.768465 1.102015 1.582038 3.827823 0.762931 -1.246921 -0.081916 3.113732 -6.845559 -1.071332 -10.328048 -1.080504 -11.765274 -3.570737 0.061188 5.300452 1.139466 3.027800 -0.076669 5.635154 -1.028989 -1.431300 6.656855 6.717756 -4.834180 -3.070976 -4.515501 -3.792808 2.802408 -3.697132 0.572568 2.797443 1.718506 -5.110711 -2.892007 2.020211 2.726783 -2.198596 -4.564880 1.475145 4.688296 -5.010389 -4.496289 -0.183194 5.183647 -0.972977 -8.877399 -2.071903 -4.499702 2.598437 0.169411 -1.828036 -4.687470 0.384571 2.528155 -1.791004 -2.753719 -2.156867 3.911838 3.049656 2.721000 0.707974 1.014368 1.621790 9.084203 1.248416 -3.977183 0.415028 0.082821 -1.427630 2.528642 -4.254391 -3.220708 2.393243 -5.535852 0.803822 4.083275 -3.543870 -2.434478 3.319916 1.823031 1.926259 18.496011 1.076698 6.914099 5.359161 -5.507507 2.276479 -2.245640 0.330623 1.923742 2.626785 -0.325666 -7.490721 -5.794102 3.190562 5.910793 4.771526 -5.804058 -2.017998 -0.502025 -0.028700 -0.048530 -0.530543 1.799647 -0.112165 -4.770577 -1.210543 5.372827 11.134848 -1.980023 -0.437045 3.323984 3.924986 -3.018473 -6.946482 -2.549856 -4.092899 1.222515 1.708916 0.559540 3.769016 7.839549 -9.960441 5.208454 -0.123002 1.086012 3.697519 1.876606 -6.106333 -8.074519 -1.213656 3.619930 6.990878 -1.816874 1.844168 2.648315 -5.370447 -0.371173 1.240269 -0.134755 -1.096861 2.238289 0.004500 -2.597598 -3.454097 1.832808 -2.578377 -0.975517 -0.462935 3.844441 1.951453 -6.985393 5.673079 -0.568118 -2.342549 1.014828 -2.160547 6.287697 -6.023033 -5.778826 3.872573 -0.710172 -2.545634 -2.752646 1.136655 3.843644 1.266468 1.909802 -2.957275 -6.102906 4.603619 -2.236736 4.661775 2.455392 -0.783816 3.200673 -1.406114 -1.484401 -5.502469 -3.831602 -0.610907 0.074563 -5.831025 -1.486176 -1.199676 5.755692 4.375581 -0.065331 -5.204446 0.556626 6.415054 -5.413021 -2.218113 4.060433 2.380303 -5.952877 1.721646 5.119545 -7.316602 0.413650 -3.223433 0.123364 -1.545407 -4.849128 3.668762 1.052001 3.743106 0.008667 0.990126 0.144952 2.619375 2.417843 0.883736 0.785764 8.151314 5.800733 -1.696142 -1.904109 -6.388005 2.049470 -7.450381 -7.593484 2.899051 0.671082 -4.722943 1.211438 1.114735 6.483558 1.415963 0.344678 -1.740862 1.054446 +-5.706146 -6.743790 -5.686209 -12.276959 9.417681 12.692823 5.237992 -10.743615 -14.914947 1.035821 8.267769 -17.323210 -1.026922 15.627731 -5.212423 15.806120 20.046665 1.345895 -9.818366 -1.117646 15.482606 1.173860 21.795790 18.459227 -10.892270 -1.142451 -3.702647 5.224237 3.155597 -2.108331 2.491327 -3.937865 8.571367 -18.100207 -7.546251 -6.484271 2.321881 4.081429 15.884014 -18.890212 3.585967 -2.261984 1.806021 -3.745476 -5.924675 0.722714 8.898141 12.813650 0.383278 4.640996 11.087934 0.596123 -1.376012 3.892574 2.444559 1.604499 0.997620 -0.151649 -5.209124 -9.113506 -0.753176 -0.165363 2.083647 12.703951 17.060248 3.245099 -1.045123 11.503328 4.030301 3.298554 8.876502 2.523151 -6.207035 1.674550 4.456094 -19.834801 -1.316999 -20.555282 -4.279849 -19.458727 -7.755741 3.266837 9.649091 -0.825786 9.817779 3.142012 12.641976 -0.907876 -6.384209 14.294725 15.343543 -13.735989 -7.017334 -6.948703 -6.552135 3.256736 -6.790148 4.512220 9.344123 4.930471 -12.318011 -4.070672 4.378923 7.201288 -4.767130 -12.603159 4.854762 10.074553 -8.088154 -10.884370 4.356044 13.402238 -4.068916 -22.746701 -6.110211 -9.851501 7.074964 -0.186793 -5.126287 -13.743791 0.966469 5.592148 -3.494260 -7.439927 0.479385 6.611704 9.060632 7.753737 0.984360 4.579615 4.543567 25.577300 0.535363 -8.631547 2.888876 -2.332223 -1.908084 9.200305 -7.511664 -7.214687 0.519759 -15.339157 7.255760 12.324393 -7.337095 -4.061059 8.514721 8.320294 1.387910 45.063530 2.212952 19.422445 14.181612 -13.567997 3.074509 -9.406802 2.444243 4.210872 4.105371 -2.863808 -22.070656 -13.505982 8.969459 14.105473 10.098152 -16.995579 -3.498860 -0.109527 -1.085201 -1.380474 -1.581137 4.452152 0.891504 -8.402134 -2.574565 14.741216 29.526616 -6.432350 3.165588 9.090152 4.689875 -5.061756 -17.315083 -7.899146 -9.160404 3.274604 6.126092 4.128729 7.346961 17.074534 -16.301757 10.809292 -1.435044 2.997350 11.290982 8.043889 -16.589148 -13.952762 -5.123384 7.760684 14.241825 -5.694044 -0.377769 6.697160 -11.769303 -1.187136 4.681436 -2.790000 -1.781914 4.877657 1.714712 -4.898128 -6.304308 7.528319 -4.089907 -1.235698 0.212516 10.459226 -0.552041 -14.907936 12.345353 0.742640 -7.345524 2.763647 -6.582942 16.035778 -10.617380 -11.185233 10.043088 -1.847701 -3.255356 -5.968321 3.273413 7.411307 5.453483 9.021111 -9.595649 -12.151855 9.661275 -5.918048 11.287653 5.536628 -1.889642 5.478162 -11.048417 -5.196943 -14.122192 -11.948900 -2.524030 3.450609 -15.267587 -2.013984 -2.516762 14.089567 7.131433 1.562113 -15.172575 2.536224 14.119969 -13.737571 -3.781158 8.569347 8.551128 -17.934409 2.382248 10.639635 -16.090256 3.625411 -4.181745 -3.081345 -6.510030 -11.561570 8.748437 5.797996 9.904204 -3.103708 3.313571 4.568571 6.596818 4.607688 6.012083 3.953101 18.854978 10.736462 -2.037818 -8.227185 -15.397501 6.635836 -16.079631 -19.547746 10.071162 4.198022 -11.462283 1.130878 2.440195 16.472178 3.064594 -4.933725 -4.664204 3.441556 +-6.362731 -5.557475 0.459140 -15.003375 10.856360 8.327881 5.476346 -5.146969 -17.164515 -4.265075 5.308481 -16.289875 -4.884683 20.037358 -5.287848 13.819845 26.640029 4.835101 -7.406468 -1.925863 18.454734 -8.122834 22.393152 21.620003 -15.745839 -1.487215 1.504621 10.109673 3.918713 7.105443 -0.354554 -10.400190 7.264315 -16.619223 -0.979892 -14.404221 3.490758 5.394648 11.124069 -27.421769 4.146360 3.010247 1.887291 -4.921908 -5.178294 4.340058 12.559143 15.342336 -6.650713 5.308703 14.334508 1.081908 -2.655256 4.165678 2.765861 2.937607 2.620834 5.252551 -8.393785 -5.724671 -1.511657 -8.160036 4.230907 14.896764 22.261494 0.469975 0.683069 9.313276 2.087905 4.039578 8.946661 1.913588 -1.760893 -1.474063 9.646948 -21.987810 -3.621277 -34.558748 -3.404352 -38.863084 -10.436659 -1.719276 13.951887 -1.639324 8.287920 -1.693902 16.031524 -2.767674 -2.306724 16.599298 19.545297 -14.165730 -8.551159 -13.496009 -10.730623 7.314464 -10.023191 -0.560080 12.720205 0.795766 -14.133835 -9.481793 7.826708 7.481983 -5.768883 -12.132910 2.613477 14.740449 -14.273691 -13.189005 -4.403104 11.283897 -3.048230 -26.510280 -2.383889 -12.105827 8.322156 1.952570 -5.504260 -13.920893 2.060355 9.223112 -5.603762 -8.434197 -3.430804 15.848781 7.625339 6.541749 3.177423 0.818784 3.846616 22.905021 9.566109 -10.649020 0.065133 1.214383 -8.553568 5.428795 -14.223014 -8.906318 9.100165 -16.822855 2.721756 10.664081 -10.320680 -4.260282 15.284141 4.210898 6.450682 56.369079 1.243395 19.596305 12.240831 -16.494987 11.373445 -3.889170 -0.140943 5.649814 9.246124 0.025376 -26.507717 -14.798584 8.336649 16.805139 13.367684 -20.598961 -10.041722 -3.706711 -0.222016 0.572526 -1.286667 5.236918 -0.368162 -12.925290 -3.419228 13.159136 33.278830 -7.554610 -7.398180 8.422741 9.750438 -10.181227 -25.133929 -6.588611 -13.711008 2.884082 2.464440 -0.522614 10.453819 21.622514 -34.360520 14.941196 -2.665986 -0.281751 13.710362 4.522685 -15.696714 -28.314719 -2.161012 11.187190 21.460513 -2.576764 3.109391 6.652730 -14.719882 -0.931969 2.703562 1.303441 -3.605952 6.900974 -0.914743 -9.031532 -9.981078 2.088825 -6.471254 -5.177508 -1.319575 9.697250 4.045142 -25.143356 16.375923 -1.969521 -6.614056 4.101785 -3.667384 15.064340 -16.571388 -18.314531 10.384350 -0.638610 -6.230128 -10.618303 2.227130 11.146449 3.431929 2.815174 -7.191472 -23.265486 11.803788 -8.046553 13.274778 6.739815 -1.099104 13.216782 0.311691 -5.354458 -18.977788 -8.920598 -0.790528 -2.213208 -15.166289 -7.922157 -3.585710 16.094890 13.220517 0.835520 -10.562538 -1.152143 20.033795 -15.702370 -5.509535 12.434857 7.017117 -15.293168 4.180317 15.215151 -21.579165 -1.238470 -9.236050 -2.067010 -3.534100 -13.182979 8.887685 0.152709 8.833247 0.637885 2.657187 -0.479413 6.719052 6.382422 2.785839 0.309748 23.850357 21.255182 -8.690515 -4.182094 -16.817237 6.699525 -21.485769 -20.739339 6.576958 3.352115 -12.160209 3.638058 5.730631 16.817398 1.773611 -0.095736 -3.496937 0.875734 +-7.664997 -6.268532 0.922453 -17.710153 11.868135 10.300061 6.069426 -8.078053 -19.464741 -4.594290 5.871516 -19.186186 -4.095679 23.196887 -6.207766 16.779868 28.223569 5.252137 -9.841090 -2.084322 20.703713 -4.840349 25.020255 22.803676 -16.760684 -1.473513 -0.378732 9.414956 4.605751 6.638216 0.631482 -10.077725 7.527691 -18.563462 -2.647753 -13.537360 3.377438 7.130412 13.441967 -28.847813 5.432158 2.854190 4.740345 -6.382379 -6.185151 -1.225098 14.372617 17.576468 -4.595005 4.301400 14.874906 3.098497 -2.269469 4.927777 3.641975 4.599129 2.504382 -1.130676 -8.577071 -7.514784 -1.814353 -6.623761 5.376418 17.662864 22.179854 2.410504 -0.103539 11.488529 3.887167 4.844976 10.264506 2.629021 -4.573567 -0.639082 8.599240 -24.563852 -2.151171 -33.004456 -3.227864 -34.443638 -11.666781 -0.374294 13.979089 3.684456 10.677581 0.552196 18.488771 -4.718138 -3.432876 17.417872 21.948089 -16.730327 -8.996740 -14.453820 -12.395406 7.262120 -10.287347 -0.110385 8.234920 3.425018 -16.146567 -10.176919 6.921370 9.112004 -6.802543 -12.652748 4.427942 16.420036 -15.578899 -15.521220 -1.801841 14.154416 -4.734906 -28.537475 -2.983654 -13.766602 7.365743 1.252417 -6.924781 -17.875711 2.741280 10.210334 -6.387982 -9.909757 -7.010826 13.675832 8.150879 6.786399 2.088621 1.164632 4.150999 26.778715 8.234383 -12.714502 1.646485 0.965904 -6.252782 6.043807 -13.074006 -10.756911 5.060378 -19.121545 0.992779 13.949206 -11.570571 -4.800582 10.893250 5.372223 6.457210 56.839303 0.936532 21.234929 14.379885 -18.909507 9.421303 -5.518115 -0.229640 5.351599 9.255398 0.642504 -26.183616 -17.925835 10.244541 19.423149 15.463940 -17.368360 -8.955328 -3.910133 -1.447346 1.442349 -0.948278 5.356261 -0.608480 -15.536442 -4.458940 14.397523 35.711865 -7.554916 -4.138594 10.541096 8.533033 -9.497679 -23.286582 -8.196330 -15.495747 3.278912 3.950036 -0.049934 11.711386 24.748203 -31.060550 17.747886 -3.452928 -0.009830 13.303146 4.292103 -17.187496 -24.027720 -4.322812 12.850611 22.277447 -5.648725 2.822620 6.922943 -17.086453 -1.372477 3.223018 0.858537 -4.650180 7.724184 0.232433 -10.334796 -10.266910 5.179805 -6.875215 -5.949341 -1.251507 11.446378 4.321883 -21.671517 19.101541 -1.177288 -6.060345 5.948847 -5.116950 17.807327 -17.034984 -18.729880 12.409513 -0.192206 -5.116425 -8.687910 2.881179 13.515668 4.007567 3.540483 -9.292281 -20.849024 11.793655 -7.145341 15.658846 7.805163 -1.412489 11.154927 0.033707 -4.934557 -17.503651 -10.678951 -3.798031 -0.031859 -17.188842 -9.453525 -4.434093 19.078320 14.461221 0.348666 -13.164435 0.067515 20.439452 -17.255778 -5.895912 13.283616 4.103957 -18.793574 3.446634 16.845339 -21.691891 -0.610776 -9.662029 0.720015 -5.201170 -14.993039 10.578281 2.031105 10.246905 -0.014369 2.344882 0.361113 7.747639 8.008591 3.394275 1.808799 25.085401 16.203450 -6.104063 -5.505868 -18.773730 7.417230 -23.803967 -21.969166 8.012329 5.035651 -14.467003 3.318503 3.237228 19.723864 2.255817 1.015810 -3.561750 0.964910 +-5.813880 -6.790321 -3.513065 -14.072468 9.141690 9.449381 4.460811 -8.844005 -15.536176 -1.223522 6.632990 -15.728517 -0.490776 16.214409 -5.023055 15.062039 20.527376 2.551689 -8.636392 -1.600421 17.591256 -1.688920 20.807429 17.670149 -12.235916 -1.523790 -1.305413 8.075517 4.957864 0.931247 1.972118 -5.911030 7.313320 -18.245113 -5.551115 -10.302685 3.066498 5.831449 15.631927 -20.238618 4.174564 -0.324957 1.812575 -4.309548 -5.309461 -0.609291 7.787611 12.912249 -3.170915 4.561966 12.953719 1.943373 -2.887755 3.519426 2.233620 2.925736 1.121458 0.947463 -4.577936 -8.593444 -0.500190 -1.262498 4.043935 12.742041 17.737309 1.601918 0.029380 11.005517 4.433799 2.981180 9.157733 1.711535 -5.441464 -0.844045 6.208122 -21.569654 -2.563166 -25.916933 -2.910199 -25.375315 -7.428203 2.019994 10.369431 -2.114483 8.907248 1.788174 12.371735 -2.856268 -4.706270 15.034523 13.865012 -13.077495 -6.441059 -9.125581 -8.701387 4.996417 -7.626191 2.202719 8.999021 3.921999 -11.982954 -7.219150 4.831912 7.622174 -4.991058 -12.274674 4.132913 10.674003 -10.864168 -11.934619 3.549158 13.947573 -4.429582 -21.727385 -4.963555 -12.273333 8.742625 -0.951591 -4.477347 -12.937374 0.604356 6.995583 -3.790348 -7.852917 -0.640496 8.022037 9.129914 7.065440 0.928875 1.437282 3.178328 24.647387 2.791168 -9.313162 1.641849 -0.435069 -3.251443 6.741121 -10.227400 -7.296562 5.089619 -14.054411 3.329371 11.199420 -7.659785 -4.151529 14.111002 7.184051 3.060098 48.672843 3.180362 19.528768 14.429725 -12.669036 4.158264 -6.438580 1.667733 5.272856 5.174792 -1.920299 -23.162583 -13.979807 7.352193 13.231124 10.792010 -16.936619 -6.718277 -1.463601 -0.924989 0.443978 -2.297883 3.305985 -0.177351 -10.550714 -2.866127 12.951729 29.527605 -5.518192 1.059351 8.006957 7.895597 -9.349724 -18.468075 -6.913416 -11.200676 3.336065 3.818067 2.244646 8.728230 17.411920 -22.835101 11.084793 -1.833029 2.638457 9.534621 6.896020 -16.652579 -18.562556 -4.556239 7.136498 15.880798 -5.699345 3.503193 7.339585 -11.973004 -0.838238 3.163793 -2.350785 -2.525719 4.810616 1.609189 -5.915406 -6.732384 7.088473 -5.909398 -2.842975 0.316904 9.336356 1.202066 -17.289149 11.841806 -1.103766 -5.507236 4.360472 -5.805833 16.480318 -12.680169 -12.459241 10.888424 0.387588 -3.076257 -6.448713 3.190638 9.432662 4.567791 6.508693 -8.439026 -14.885564 9.383988 -7.458730 10.704430 5.408305 -2.371312 6.739324 -8.973418 -2.720613 -16.358357 -9.597766 -3.800564 2.462926 -15.514238 -5.235460 -2.517819 13.877865 8.495517 0.589453 -13.497308 2.068449 15.308240 -14.860839 -3.089986 8.539520 8.885552 -17.495792 2.340281 11.020583 -17.203911 2.073759 -5.304672 -2.137564 -4.172775 -10.423943 9.577726 4.650829 9.695087 -1.704415 3.377597 2.360203 6.195653 5.778380 4.131320 3.456670 19.602569 14.934467 -3.000811 -7.529943 -15.565624 5.484872 -16.184749 -18.781486 7.665710 2.224869 -12.646761 2.578197 3.099349 18.416888 4.018484 -0.902132 -2.473443 2.027912 +-6.538127 1.087543 7.949817 -15.473650 11.563285 8.655902 4.248094 -3.668583 -12.266512 -6.322418 -1.000647 -11.704247 -8.127695 19.566472 -6.420335 7.355029 26.587120 6.894421 -4.415554 -4.171482 16.459758 -8.929308 21.723132 20.272275 -17.700490 -1.812465 10.419331 11.591918 4.344963 13.283637 -4.733494 -13.951290 4.889938 -9.607544 5.669954 -16.423976 3.429120 2.540547 3.335587 -27.937600 3.408460 -1.260719 -0.914836 -4.281274 -3.831409 4.987455 19.239755 14.773905 -8.495268 0.628079 13.196053 6.634307 -3.516121 4.180899 3.248925 5.043722 7.187320 5.001145 -6.923271 -3.126448 -2.669768 -9.588530 4.741298 16.830810 21.370706 1.622374 1.933151 6.226551 0.791914 3.913210 4.127603 2.365305 1.495725 2.721387 8.999916 -22.397503 -1.946936 -39.649575 -2.579316 -40.278661 -10.068056 -8.750714 7.535799 -3.473203 6.865525 -0.738799 17.994797 -1.024984 3.831867 13.921527 23.562658 -13.989414 -6.826542 -15.822610 -12.565653 7.530096 -9.226106 -1.076734 8.245159 -0.850561 -13.166536 -15.587677 6.950345 5.946500 -6.210016 -9.732944 0.577857 16.006902 -15.269713 -10.619626 -11.164082 5.180318 -3.767829 -27.122645 -0.257240 -12.762437 12.735867 0.796687 -4.270565 -17.675932 2.740044 15.803172 -6.499122 -8.136166 -4.358625 16.749091 7.669119 0.784080 2.078099 -2.757428 2.566540 18.940065 15.852581 -10.364779 -2.599510 2.963413 -12.789609 -2.702464 -16.585631 -5.871391 10.959003 -15.226366 0.177754 13.175490 -10.729569 -4.545324 16.499768 -3.996868 11.731978 56.665807 -2.774470 12.630472 6.406997 -20.350816 11.175096 -0.263440 -3.920001 4.665217 11.883871 5.145585 -25.912102 -14.774322 7.056989 16.925333 13.266296 -17.349917 -10.577856 -8.042832 -2.746063 0.340771 -0.984322 4.306894 -6.045124 -11.946015 -4.902157 10.730169 30.089340 -7.378339 -15.128862 6.597636 10.421589 -9.510705 -20.626469 -5.267900 -13.052338 2.336155 1.860183 -3.607941 12.152635 22.187827 -41.607974 16.089781 -3.181959 -4.231040 12.197958 0.427343 -8.778452 -24.813909 3.073480 17.345905 20.333939 -1.611054 2.971877 2.679099 -15.496265 -1.199850 1.390819 8.083267 -6.321292 7.086318 1.576431 -15.828325 -12.500166 -1.492852 -4.869778 -8.022397 -2.951613 7.129879 1.695403 -33.415847 22.409316 -3.390955 -2.855150 6.459406 -4.030880 12.614371 -18.397778 -22.066865 9.165829 2.106930 -2.564053 -8.765758 1.272788 15.225079 -0.193481 4.270840 -8.806705 -25.025225 8.128016 -5.976453 12.017453 6.509027 4.640723 18.075685 0.488991 -4.270901 -19.500369 -6.421143 2.109884 -1.653196 -12.534191 -8.632193 -3.910560 15.801215 18.970749 -1.975680 -5.214727 -2.328909 19.629505 -17.317604 -5.266439 11.989904 7.407066 -13.129954 2.905523 14.818717 -18.925049 -9.333870 -10.220656 -0.714489 -1.468686 -16.400321 6.525537 -6.983216 5.632036 5.841408 0.742063 -4.627244 7.901513 6.163749 2.630181 0.332969 19.853782 23.322652 -11.141844 -0.539228 -14.744111 6.710019 -25.409577 -18.642544 3.536538 -0.368698 -6.675441 4.010471 2.553369 13.933180 -1.962974 5.399891 -0.513923 -3.627157 +-63.452228 16.792173 86.439825 -167.329779 157.050072 121.069636 52.380721 -65.426512 -139.874577 -51.078202 11.579662 -159.369476 -102.707608 199.550018 -81.370049 87.395016 255.283484 43.333489 -65.813910 -37.094420 158.991543 -29.336308 244.251931 202.489161 -190.161882 -5.853981 46.828869 109.083409 29.590994 146.415235 -71.019088 -136.685422 64.196536 -84.267898 27.839414 -114.422134 22.644837 2.552233 45.811643 -259.448963 33.498696 14.498089 -21.640895 -33.405257 -30.774746 46.942164 201.614553 153.574277 -52.986418 13.693675 137.146093 61.566260 -15.523390 50.591683 51.638262 37.820346 104.316986 10.797034 -80.604711 -60.210689 -42.243150 -81.370425 15.372876 178.040608 211.548412 24.912439 2.376572 57.738305 0.693535 39.177712 55.847936 41.266346 19.321611 53.048586 89.125891 -152.232092 9.656346 -285.043450 -36.654974 -324.929826 -111.935628 -78.051420 82.693023 13.389439 81.542316 -19.783127 201.109386 -9.153223 12.605674 109.326295 240.050119 -161.685698 -71.689507 -137.324785 -116.360189 46.966581 -92.893853 3.285917 46.750422 8.739599 -148.049055 -117.487034 55.381733 51.122457 -66.939607 -61.064397 2.788044 157.612693 -162.438114 -89.895158 -98.902084 72.859352 -25.419657 -281.646721 -56.112830 -104.726857 112.203445 0.475560 -47.826349 -162.964597 41.735087 140.589047 -76.077019 -75.416293 -66.290335 163.998816 98.316722 24.834625 19.155871 -7.880970 44.512336 206.705890 119.345468 -100.077870 -23.183784 1.007251 -85.058964 7.881008 -124.276475 -39.399015 53.916594 -157.655066 23.982038 138.003413 -102.401541 -26.253177 68.069931 -17.105484 98.423372 523.189985 -44.988514 155.540769 71.799870 -203.444705 90.160596 -23.803355 -31.496685 38.014237 97.083616 54.506771 -224.629558 -161.371291 112.985757 178.951364 127.852488 -181.524326 -24.275230 -54.593282 -14.373669 -18.780210 -1.176240 54.913578 -36.888776 -120.820085 -52.504597 107.848766 324.499045 -79.963139 -178.652523 97.727994 61.711309 -54.371015 -147.071989 -69.095976 -81.900984 23.395333 52.247113 -15.828358 118.505346 237.852710 -365.459796 166.178743 -17.778227 -62.187951 161.381645 1.196230 -98.158902 -148.799245 3.335180 163.122565 188.690062 -0.681055 -3.611131 18.633370 -163.066372 -7.667558 23.777928 70.462869 -64.229513 76.251113 42.372610 -153.593534 -127.887454 -56.619254 -38.454103 -44.715187 -59.195375 85.376942 -6.216752 -344.519391 221.526182 -4.536590 -42.308083 44.834961 -51.553428 129.762119 -168.275290 -207.591171 97.105949 -20.611336 -59.256164 -77.582601 22.022680 125.004815 23.375746 67.662708 -130.522753 -221.463720 113.487659 -41.906934 138.688153 73.032602 54.074335 151.246527 19.967386 -54.407945 -165.656162 -89.051286 54.467445 -10.067670 -139.832901 -32.606159 -52.094420 165.305804 179.321926 -16.327113 -64.665149 -47.244530 184.083575 -159.344083 -50.204879 132.571290 61.215939 -151.789759 35.739306 158.770638 -154.340847 -84.636518 -100.923196 -32.285036 -61.686640 -163.226350 72.654343 -52.152413 67.511768 61.017526 12.356633 -59.366285 74.381630 37.530149 13.736806 7.515819 216.172135 212.792989 -101.290511 13.311434 -164.136061 97.909611 -245.933287 -199.128017 70.367064 -32.468754 -86.790398 23.802217 6.888015 158.561010 -10.741579 20.011224 -20.815210 -16.969071 +-7.647916 2.102713 8.056173 -18.887035 14.472035 11.827606 4.483518 -6.084176 -14.022451 -7.063189 -0.487697 -13.855171 -8.421830 22.245586 -8.164576 8.876957 29.747419 6.079727 -5.352233 -4.746514 19.519191 -7.341171 25.029849 22.737020 -20.819301 -2.157972 13.026324 12.321605 4.941570 14.240408 -4.925885 -17.649632 5.477814 -11.188284 4.977669 -17.315013 3.759083 2.024288 6.133589 -30.821151 3.942677 -2.618523 -3.057537 -4.891145 -4.854186 2.966410 22.407317 16.701701 -9.968891 0.588585 16.495033 10.223636 -5.656371 4.314913 3.437249 5.324728 8.291032 5.299864 -6.477808 -4.950010 -3.119252 -7.214048 4.892149 19.965924 23.942390 2.189050 2.141151 8.106247 0.980665 4.304149 4.383947 2.994005 0.989427 4.748110 9.858597 -25.977485 -2.993427 -46.102703 -2.716800 -44.050015 -11.153140 -9.015707 6.760153 -4.328063 8.305486 0.742289 20.812712 -1.183396 3.749848 16.750061 27.035259 -15.674595 -7.207502 -17.588491 -15.881694 7.988584 -9.959106 0.193565 6.955568 -0.617037 -15.055996 -18.579560 6.482944 7.085995 -7.195776 -12.411628 1.173101 17.315062 -17.104183 -11.586193 -10.632866 7.739947 -4.648144 -31.392438 -4.310933 -15.052404 15.605642 -0.248627 -5.165512 -21.370810 2.602622 18.377437 -7.799418 -9.714771 -2.178167 16.986944 10.984508 2.094512 1.816861 -3.973062 4.209857 23.622269 16.678393 -12.085697 -2.654906 1.963336 -12.413152 -2.852486 -18.229193 -5.450829 10.526319 -16.702608 2.670303 16.918162 -11.835524 -6.506604 19.157785 -5.771684 12.709807 67.448968 -3.660254 15.240389 7.773353 -23.843965 9.548579 -1.539526 -5.046659 4.961542 12.563771 6.517312 -28.805124 -17.076116 9.638014 19.303052 14.899510 -19.679862 -11.252367 -7.855525 -4.142531 -0.074588 -1.363310 4.352068 -7.295804 -13.490832 -6.074758 13.621966 34.883542 -7.807189 -17.401097 8.205482 14.324322 -10.209594 -20.677309 -6.276804 -15.726128 3.409825 5.463814 -3.904719 14.792531 25.638207 -48.785028 17.448615 -2.403922 -4.745956 12.282558 2.327660 -10.841882 -25.392269 3.823401 20.059364 22.158847 -2.751550 5.188489 2.654737 -17.375041 -1.283713 2.423796 8.438512 -7.844955 7.863658 3.180688 -18.735180 -14.436176 0.085195 -6.111755 -8.742786 -3.977063 8.271224 0.258722 -39.759189 26.218887 -2.898062 -2.746866 6.751773 -6.535591 16.328600 -20.757328 -25.008942 11.352731 1.892150 -1.369200 -7.573106 1.547422 17.317074 1.189939 8.463582 -11.412795 -27.873143 8.468184 -5.729427 13.925050 7.455287 5.773772 19.531279 -5.324385 -3.714495 -22.816424 -8.398935 5.073745 0.795865 -15.615016 -9.715503 -4.470126 18.063418 20.703271 -3.093380 -8.223555 -3.302584 21.201841 -20.221393 -4.026103 12.700184 10.232121 -17.067021 2.108158 16.209294 -20.178876 -9.704446 -11.730919 0.132455 -3.669415 -19.106322 7.437509 -6.192822 6.861360 6.818578 0.835346 -5.160968 9.285186 7.171437 4.017322 1.477519 20.879039 25.862237 -12.094809 -1.677427 -17.492279 7.586506 -28.988024 -23.253026 5.616542 -2.850641 -7.848548 3.149256 0.222946 17.064484 -2.433851 8.205234 0.199228 -3.090213 +-4.458262 -5.525159 -3.707560 -9.444605 7.059913 8.619109 3.960588 -7.134472 -12.002726 0.149071 5.543727 -12.925651 -0.494739 12.404245 -3.520833 12.174034 15.894346 2.036336 -7.098830 -0.834034 12.339945 -1.155170 16.285652 13.627777 -8.090258 -0.890244 -2.715089 3.785480 2.205162 -0.392728 1.586962 -3.480897 5.989390 -14.054562 -4.645092 -5.567635 1.504325 4.269157 11.781919 -15.374001 3.078457 -0.717593 2.650430 -3.211919 -4.440278 0.073996 6.665446 9.518709 -0.246947 3.519559 8.476323 0.281231 -0.897601 3.012157 1.993372 2.360741 0.330527 -0.255124 -4.403934 -6.100782 -0.726255 -0.783869 2.587260 9.382141 12.345758 2.015202 -0.634273 8.468574 3.166932 2.660942 6.913675 1.572685 -4.759268 0.042941 3.509770 -15.575459 -1.197537 -16.826572 -2.853090 -17.109200 -6.007719 2.214757 8.026910 0.734683 7.065410 1.912754 9.685699 -1.963802 -4.311013 10.669422 11.649012 -10.339238 -5.389101 -6.110711 -5.295013 2.510264 -4.872699 1.887606 7.643188 3.275934 -9.285750 -3.560728 4.012938 5.668382 -3.541569 -9.636079 3.637713 8.292435 -6.707742 -8.862924 2.516866 10.797157 -3.092082 -17.278395 -2.286775 -7.703365 3.751296 0.235527 -4.397681 -10.799637 1.035426 4.504286 -2.976054 -5.492176 -0.721584 6.090203 6.122502 5.262401 0.901273 2.785936 2.594291 18.608367 1.523984 -7.034731 2.090813 -0.694963 -1.720398 6.207376 -5.756836 -6.423564 0.550681 -11.699607 4.228210 8.531463 -5.932355 -2.467118 6.366912 6.173170 1.268144 34.120371 1.493452 14.603066 10.785980 -10.430309 4.231727 -5.933323 1.788895 3.246406 3.922148 -2.143179 -16.637799 -10.369513 6.497204 10.714225 8.177450 -12.417457 -3.650256 -0.736532 -0.776001 0.108779 -1.255084 3.313044 0.818224 -7.188500 -1.965059 10.139542 23.585797 -4.775681 2.537130 6.637958 3.789640 -4.447106 -14.817324 -5.885129 -8.625057 2.206246 3.561913 2.339749 5.661972 13.206239 -13.445550 8.942463 -2.056344 1.909236 8.985059 5.473962 -12.209847 -13.440918 -4.514316 6.068411 12.083801 -4.568785 0.286097 5.210500 -9.053705 -0.814298 2.824367 -1.656621 -1.568192 3.736787 0.537300 -4.291090 -4.139903 5.519295 -3.422473 -1.743427 0.550805 7.578319 1.169490 -11.007120 9.471771 0.417325 -5.013002 2.725983 -3.705971 11.794111 -7.808289 -8.630112 7.559190 -0.778297 -2.362454 -4.559884 2.375399 6.142103 3.237576 5.275024 -6.423343 -10.302453 7.300886 -4.649125 8.718682 4.208136 -1.944943 4.310940 -5.761322 -3.800313 -10.421325 -8.458674 -2.957750 1.589560 -11.134764 -2.924793 -1.958683 10.970222 5.578373 1.580270 -10.769761 1.318005 11.192678 -10.355401 -2.817288 7.020891 5.101482 -13.256267 1.749497 8.747334 -12.395498 2.155791 -3.557234 -0.727738 -4.353177 -8.190367 6.709468 3.797888 7.180158 -2.517745 2.308861 3.128528 4.814943 4.203427 3.886695 2.315709 14.682845 7.978409 -1.612483 -5.828700 -11.111741 4.544088 -12.153128 -13.757408 6.352714 4.333880 -9.145184 1.205756 2.819175 12.674593 1.970497 -2.642869 -3.159139 2.022081 +-4.404980 -5.206808 -3.133661 -10.834592 6.559081 8.078312 3.327746 -4.588796 -12.769932 -2.086207 3.842353 -12.409443 -0.228204 13.119290 -2.868974 11.994705 17.489923 2.613725 -6.142580 1.231317 12.765762 -3.953695 14.260666 13.737693 -7.803056 -0.961468 -2.613043 5.933530 0.347426 3.954206 2.606180 -6.646151 3.904050 -12.766622 -4.169771 -9.549790 1.859864 6.094680 9.750697 -18.090384 3.735962 3.589252 2.740318 -4.217897 -4.218433 -4.022937 6.245548 9.459989 -1.780607 2.766475 7.980476 2.254170 -1.849056 2.855197 1.889365 3.356662 -0.368224 -1.350266 -4.681515 -5.359991 -0.442245 -1.975476 3.530299 8.795680 12.880860 1.094130 -0.025262 7.439238 1.429119 2.489659 6.718882 0.662446 -5.944001 -2.244572 3.671449 -15.051473 -1.607092 -16.318072 -1.106731 -18.859252 -5.916299 1.934774 8.609328 5.545250 6.424409 -0.440353 9.232964 -5.146714 -2.930576 12.261024 10.715463 -8.761267 -4.910683 -8.548101 -6.555051 3.906329 -4.835884 -1.746579 6.271459 2.772488 -8.542354 -3.595611 4.917249 6.192576 -3.478330 -9.829811 3.418907 8.805080 -9.036233 -10.055930 2.073697 12.516640 -3.456592 -16.403764 -3.433572 -9.039814 0.510337 -0.112450 -4.027972 -10.536801 1.332898 4.813480 -2.436307 -5.350952 -2.769203 7.976421 4.639718 4.149040 1.554671 1.231718 1.737345 17.803979 1.937871 -6.579531 1.740213 0.786225 -2.127990 4.359157 -7.074773 -6.703470 -0.523409 -11.810110 1.458595 8.825654 -6.161696 -2.159137 4.325533 5.057043 2.289026 41.238763 1.489228 14.540353 10.480408 -10.371003 6.729244 -3.653499 0.267100 2.737290 3.419503 -1.197747 -19.044929 -9.495902 5.493336 10.084937 8.953628 -10.384066 -5.133987 -1.654525 -0.742383 1.830750 -1.257483 2.670994 1.054896 -9.232334 -2.174002 9.398333 25.067359 -2.844915 1.777336 7.154873 6.006902 -8.498308 -17.598705 -5.033190 -10.707785 1.504083 1.897946 -0.493733 5.792091 13.284518 -15.337322 9.369423 -1.289525 1.334304 8.826927 3.742372 -11.206281 -19.024622 -5.263267 6.422118 15.416215 -6.196316 3.769112 4.314986 -8.633792 -0.728569 2.860631 -1.585496 -1.671632 3.737777 -0.624133 -5.071708 -4.099558 5.145786 -5.420928 -2.543531 -0.890641 6.339950 3.640494 -8.447225 9.479118 0.486665 -3.383154 3.361589 -2.088483 11.967695 -8.743400 -9.837426 8.085863 0.672478 -2.968231 -4.032703 2.133666 7.352768 3.941247 2.078427 -4.198721 -12.654357 6.844991 -4.566879 8.307107 4.115295 -2.395169 3.808783 -0.457154 -2.563520 -10.712745 -9.317182 -3.808733 0.346017 -10.423247 -5.209796 -2.372546 10.956704 5.879939 1.738947 -11.023354 1.092059 13.497013 -7.304415 -1.871371 7.263621 1.032699 -12.920290 0.160972 9.597023 -14.061870 1.670868 -4.780449 1.620308 -3.196398 -7.503588 6.355200 3.585301 6.695521 -1.001877 1.629710 0.791195 3.661169 5.733563 2.344069 1.554591 16.568627 6.388372 -0.710987 -4.395570 -9.944546 2.438462 -11.865137 -12.456931 4.220594 4.219063 -9.329958 1.897879 4.486432 12.514524 1.875067 2.044415 -0.763262 0.533736 +-27.631874 -5.219258 24.949455 -67.334526 53.834982 45.011203 21.918357 -26.775558 -62.159286 -23.997442 14.107626 -63.678148 -37.010911 83.576448 -30.264913 39.785335 99.312672 17.010134 -31.594436 -16.091133 68.149021 -16.916367 98.022361 82.769023 -73.502415 -4.047546 12.210907 45.904244 17.233786 46.607004 -10.226513 -44.241148 25.786067 -43.326812 4.400951 -44.782861 10.466027 8.740969 20.837581 -104.340780 14.642676 9.052689 -4.017712 -16.807272 -16.096819 11.721980 70.419289 63.915296 -17.253349 10.102006 55.714817 18.518613 -5.864269 18.798084 20.776091 11.039827 29.549338 -3.195894 -30.151875 -24.872163 -13.293441 -36.451160 9.513854 71.081558 83.609281 7.512281 1.023515 28.303593 0.886073 20.552318 29.920649 14.147539 -1.609298 12.680934 37.371838 -70.160661 0.407406 -113.425677 -13.580478 -130.686324 -44.411270 -20.082021 45.474036 12.956557 31.849507 -1.639274 76.949251 -6.209007 -3.857632 54.551255 90.799913 -59.125302 -30.361760 -51.766991 -44.471433 23.491537 -39.384331 1.677710 19.128542 11.372125 -59.905619 -36.784703 21.253071 24.439875 -28.389676 -31.273257 3.223158 64.775773 -67.250778 -38.845914 -28.136403 37.953976 -9.824588 -113.097704 -22.175275 -46.343729 46.000567 0.988774 -20.685545 -59.162950 15.460831 50.042095 -23.508796 -30.308423 -27.866963 59.188208 33.977815 16.228437 7.015830 3.872008 16.258451 86.447240 42.746751 -38.859596 -4.939844 2.125024 -29.622523 12.793326 -44.159225 -22.098191 20.635500 -64.174036 7.386591 51.964286 -40.574752 -19.256949 27.192462 3.911645 33.410953 213.881264 -8.706786 68.315043 39.216825 -76.096271 29.824550 -14.121617 -7.041063 19.312737 37.339205 12.853887 -89.581728 -64.520709 42.354484 72.946572 53.001416 -70.040962 -12.615015 -18.057469 -5.381064 -4.226573 0.826032 19.638938 -9.099500 -50.886843 -19.995957 48.613942 126.898654 -31.209498 -53.380081 38.343029 23.720107 -27.169486 -67.033204 -25.545501 -31.313236 11.015294 19.638127 -3.800819 44.492378 93.441260 -129.318754 66.784428 -8.789993 -14.319209 58.119981 4.335398 -47.139420 -71.643656 -4.472523 57.420434 77.626494 -7.311412 -0.421437 15.034802 -66.765633 -4.072438 11.802584 18.566032 -21.947603 32.268200 10.473330 -49.931742 -48.614952 -10.188960 -17.799542 -11.363640 -17.081290 37.482653 -0.803421 -120.017124 83.283767 -4.767412 -21.018995 15.065124 -17.467473 58.534168 -66.707375 -81.043280 40.962860 -7.660135 -31.002451 -35.372151 7.456220 49.709592 12.152568 15.989412 -46.417309 -76.715321 47.077506 -23.979651 56.702280 29.908499 12.428004 59.559836 4.187166 -20.647916 -63.909144 -36.367004 12.337809 -6.352944 -59.717188 -18.066137 -19.077600 66.432581 64.783657 -3.146321 -34.999368 -7.052633 77.708866 -63.233690 -27.534471 49.446740 24.629327 -62.174841 21.639591 61.779462 -68.188375 -21.842058 -41.084913 -10.167490 -23.228090 -65.331688 35.859070 -9.641153 34.607362 15.951345 11.202281 -15.980471 29.337576 19.042208 9.475913 4.213517 89.059869 82.039404 -37.851136 -5.330442 -68.426484 37.836018 -93.656120 -79.632846 27.943962 1.696707 -34.304876 10.285948 1.541469 67.044586 6.225740 0.321017 -10.737260 -0.244882 +-17.870558 6.508768 30.175530 -43.395033 40.900892 25.775692 14.084924 -13.652280 -37.645922 -19.182105 -0.723691 -40.541200 -32.283029 57.127133 -22.897238 19.254330 73.471883 18.140459 -14.995202 -13.340614 41.396392 -18.419091 67.147776 57.615069 -53.409354 -2.169855 17.234914 34.498531 10.249228 46.141906 -19.227705 -37.738259 17.965967 -18.752962 14.074792 -38.295576 7.646826 2.511584 2.779915 -77.257764 8.490036 4.590745 -3.287547 -8.666988 -6.831835 21.753824 56.358271 43.017515 -15.320841 5.422520 35.872423 17.237227 -2.543818 14.809123 14.109443 10.498892 31.905268 0.498950 -25.147386 -10.744428 -11.856234 -34.324652 4.320399 49.749206 61.972595 5.394577 2.912839 12.397054 -3.107011 12.795585 14.826544 10.034541 7.684507 14.196681 24.969404 -43.390730 4.027254 -83.998855 -11.095052 -104.475915 -31.230182 -27.428507 25.793741 3.516390 18.303040 -4.064888 56.335963 0.775609 7.555459 29.313849 68.965269 -43.958136 -20.930471 -39.048221 -29.877216 16.653449 -28.370354 -1.871875 15.229029 3.371155 -39.853736 -34.856192 19.380364 11.981468 -18.985167 -12.355326 -2.797130 47.825163 -51.956513 -24.716161 -35.909925 12.429740 -6.313860 -77.443955 -6.125636 -28.783229 36.067485 3.439288 -11.708295 -42.030813 13.350757 41.181512 -18.734594 -18.544966 -25.401822 49.809105 21.080477 2.227150 5.475435 -1.826626 9.477619 51.232417 38.354878 -27.334616 -8.839824 5.159857 -30.611270 -2.156079 -38.811527 -12.203942 20.774559 -44.476244 3.528039 34.049370 -30.447290 -10.044246 18.910930 -8.148766 32.078975 138.044089 -12.247550 38.329192 16.584548 -57.266190 27.235997 -3.413007 -9.408622 11.219865 30.676752 17.097937 -58.718097 -44.357826 26.845083 50.419755 36.905015 -48.989049 -11.611378 -20.838386 -3.138582 -2.820749 1.147002 16.603092 -14.705217 -33.697360 -14.746050 24.420692 86.965315 -22.166178 -50.753989 23.630271 13.571051 -17.903954 -46.555031 -16.215816 -18.683529 5.458934 7.016081 -7.095929 30.602704 66.099946 -108.311629 49.408792 -6.720896 -17.752211 43.798924 -4.725666 -22.967613 -52.116851 3.719102 47.247757 55.669445 1.859482 -0.477909 5.174330 -47.056973 -3.068711 4.418168 25.123876 -17.439969 21.723213 11.343444 -43.845050 -38.055877 -17.971894 -7.373203 -14.184548 -14.831771 22.910760 2.530854 -100.728312 62.585644 -6.580359 -11.540875 13.092858 -8.792025 32.133575 -50.533299 -60.627535 24.165021 -4.952972 -20.548119 -26.976914 4.360040 37.125323 0.483740 11.153518 -30.743201 -61.031833 30.344520 -14.553134 34.418213 20.334826 17.022564 48.784791 13.968694 -16.548749 -44.616284 -18.110157 12.548385 -11.450283 -32.700507 -5.831771 -13.103311 45.506195 56.286598 -3.046005 -13.209767 -9.294653 55.708010 -42.902946 -19.357679 38.424500 15.583715 -34.578391 15.345285 44.810174 -47.173113 -29.197128 -29.381035 -9.792032 -11.386147 -44.467225 19.763198 -22.042890 16.039775 20.041384 4.025562 -20.972755 22.542726 10.422839 1.926342 -0.549893 62.566020 66.144361 -32.427924 9.114074 -43.213450 25.895086 -70.054220 -50.505532 13.102890 -4.354290 -19.873551 9.805507 2.924950 40.366846 -2.840878 5.515408 -5.828958 -8.259776 +-6.781107 -9.031635 -6.010582 -15.373462 10.130645 11.039719 6.134888 -10.933276 -18.569024 0.583815 8.897647 -20.705691 0.063527 18.995310 -4.907087 19.345977 24.336992 2.894367 -11.160801 -2.163255 19.145914 -1.146827 24.837591 20.778616 -12.110297 -1.254470 -6.260438 7.346942 3.651510 -2.443805 3.175054 -3.970737 8.290718 -22.642093 -8.611283 -8.553616 2.847833 7.751276 19.270587 -23.114537 5.526683 -1.734776 6.078552 -5.167344 -7.581455 -1.707584 9.715731 14.832251 0.206739 4.951790 12.778568 -0.706926 -1.178098 4.719428 2.785259 3.702416 0.317573 -0.842284 -7.000379 -9.843143 -0.854379 -0.148300 4.462238 13.784709 18.030834 4.549271 -1.831771 13.996171 5.988215 4.078532 10.773640 2.215137 -8.131660 -0.242998 5.226002 -24.854346 -1.693702 -25.873426 -4.163300 -23.245227 -9.522637 4.344169 12.823958 1.373936 11.372814 4.201789 13.772686 -3.245542 -7.083218 16.738009 17.337530 -15.404745 -8.308876 -9.429956 -7.943559 4.032576 -6.609683 3.750156 10.687671 6.956374 -14.486104 -5.231430 6.682287 8.643414 -5.117000 -13.603283 6.304828 11.274855 -9.701255 -13.665260 4.648617 17.302396 -4.182018 -25.053543 -3.468510 -12.272544 6.152534 -0.307794 -6.815578 -16.419294 1.261063 6.150829 -5.211821 -8.115599 -2.454906 8.605626 8.782083 7.970816 1.569941 4.975484 3.975751 28.726970 0.056384 -11.131720 3.806002 -1.247902 -2.234479 9.049947 -9.156541 -10.463061 1.092018 -18.005897 6.048379 12.926258 -8.844125 -4.592125 10.301361 10.834084 1.689046 50.003057 3.138294 22.606615 17.104367 -13.961749 6.532669 -9.774346 3.189849 4.390696 4.683518 -3.657062 -25.280112 -16.604915 9.708381 15.203603 12.473680 -17.916330 -6.680514 -1.209839 -0.844082 1.247649 -2.190737 4.838758 2.071010 -11.444137 -2.740639 15.788496 35.881825 -6.777732 5.140545 10.764175 4.590549 -7.114150 -22.998469 -9.706269 -12.918677 3.036156 4.805375 4.670196 9.177872 20.634864 -19.486316 13.490352 -2.040556 3.379667 12.585931 7.556329 -19.506145 -20.051050 -8.044939 8.753547 18.563281 -7.325413 -0.266639 8.044897 -13.710053 -1.181308 4.735748 -3.471053 -2.540232 5.749590 0.179179 -5.863613 -5.806427 9.097404 -6.966585 -1.422335 1.238378 11.791079 2.307526 -13.930356 13.735699 0.649227 -7.287576 4.899534 -6.486663 18.376838 -11.545552 -12.210528 11.508527 -0.688280 -3.532804 -7.390435 4.722987 8.422161 5.092340 7.488688 -9.762931 -14.745929 11.592305 -7.251463 13.589631 6.549823 -3.633360 4.142809 -7.023044 -5.276005 -15.183383 -12.327147 -6.986070 3.741924 -17.831216 -5.583277 -3.067967 16.350083 8.029959 2.181728 -16.887481 2.508468 17.146411 -16.354164 -5.795655 10.662876 4.931413 -20.596157 2.129414 13.818627 -19.394639 4.456619 -6.245870 -1.801046 -6.629274 -12.404342 9.935625 7.184518 11.010386 -4.116469 2.639162 5.523876 7.413658 6.404996 5.193603 4.226421 23.593020 11.144107 -0.977621 -10.060004 -17.744910 6.346415 -17.991237 -20.317932 10.132181 6.890767 -15.803672 2.063877 4.221729 20.723892 3.194702 -4.263753 -4.894040 3.148554 +-53.812012 25.511865 82.853565 -142.566813 143.331532 107.017582 44.022979 -56.279387 -115.434775 -39.890844 -0.513006 -138.309325 -90.481859 172.788402 -70.767433 76.441452 223.473606 39.015781 -51.746468 -28.003415 133.809696 -25.314427 208.866573 171.128866 -164.668104 -4.176385 46.044437 90.766279 16.302647 141.089017 -78.905648 -129.522702 53.610808 -67.217944 28.994592 -101.397786 19.590320 -1.664141 39.964351 -226.468539 28.654908 14.500536 -17.034461 -29.438742 -24.910911 37.820005 182.334176 131.671519 -47.518148 6.476468 114.209344 57.798653 -13.147308 44.965730 45.356346 40.628557 100.524929 10.816391 -74.815895 -50.048911 -38.512080 -67.728022 12.159727 153.680671 184.114221 23.264340 2.831364 48.300624 -2.381780 29.297563 40.391190 35.745749 21.172068 53.190345 73.603068 -124.718526 11.658700 -243.476211 -33.065739 -274.776351 -97.425351 -76.329116 57.268825 12.426473 73.645603 -21.934235 176.742711 -8.390157 20.028872 82.667769 213.464107 -147.310207 -61.601783 -124.806215 -103.154713 37.394343 -78.856774 -1.712477 38.100164 -2.071080 -127.659087 -114.262182 50.808556 44.708318 -56.675705 -46.908666 1.164475 135.691906 -138.476329 -82.800331 -94.839227 52.487631 -28.124324 -241.879558 -43.600057 -84.572117 87.101623 2.801840 -38.786635 -152.038111 38.227680 128.880935 -70.710185 -69.354202 -60.378652 148.372441 86.575622 13.921079 18.725022 -14.922336 40.167198 176.773602 106.505731 -88.108740 -23.265012 1.683008 -78.241624 -3.307889 -112.323096 -33.068767 42.098791 -137.925942 17.479045 123.712253 -90.316469 -10.733073 54.342887 -23.428586 91.806476 443.642015 -46.350836 127.579018 50.256920 -183.848804 88.621059 -16.707015 -35.701489 25.330358 84.886863 56.666163 -195.047883 -140.019403 99.208295 153.758210 111.441443 -151.888586 -23.470724 -54.491626 -13.070667 -15.394122 -1.158212 51.714139 -38.127766 -105.945599 -46.431151 85.540117 286.817825 -71.049324 -165.562440 88.102815 52.951740 -45.091282 -125.489061 -61.321540 -79.033804 16.141463 39.987223 -18.211152 103.621002 207.970583 -326.138226 146.313547 -16.716805 -66.234521 145.456171 -7.332667 -78.598915 -120.534649 7.100671 149.706309 163.770125 3.386665 -0.401177 7.233596 -139.252753 -5.809429 16.782678 68.755007 -57.107329 64.840012 37.862091 -146.012531 -113.076562 -55.201525 -32.517046 -50.318428 -56.622272 69.982273 1.140821 -304.153957 197.707908 -0.869362 -30.639141 45.424429 -43.883662 105.595538 -146.715696 -182.518051 82.895277 -16.714001 -39.678428 -60.736364 18.970204 108.966895 17.715796 61.334525 -113.709244 -200.824542 91.816565 -29.418226 116.635403 62.837324 54.177858 126.217944 29.046877 -49.336163 -141.983672 -76.149100 47.991078 -7.901502 -115.759983 -27.876236 -46.979233 146.396561 161.518590 -15.241734 -48.762973 -53.530851 156.004481 -133.881610 -36.210440 118.920170 41.661987 -131.360954 17.855601 140.567802 -128.073215 -83.159818 -86.074696 -23.368268 -55.416911 -140.320737 53.684520 -55.404878 48.850979 60.594145 2.278069 -58.904841 63.181936 31.715123 7.015638 3.136491 186.725230 175.076252 -89.154559 21.938548 -138.323911 83.184107 -216.220084 -169.846022 59.829369 -35.168641 -78.384142 19.948948 10.815176 132.110463 -20.211075 28.982272 -13.227437 -26.561965 +-4.988679 -6.730934 -3.677326 -11.803950 7.676387 5.348377 4.142547 -6.979574 -13.745302 0.195287 6.325061 -14.310776 -0.707089 13.716991 -4.115471 11.842114 21.448164 2.021424 -6.989403 -2.361185 13.263795 -4.873821 16.675294 19.621257 -9.884460 -1.479761 -2.684398 7.768978 3.096772 -1.711360 2.741460 -3.433617 4.555228 -14.113041 -4.045919 -10.765343 2.730921 5.165502 12.490844 -21.077464 3.517578 -1.542272 5.051545 -3.101245 -5.060693 6.360419 6.098287 11.125539 -1.979286 3.754085 11.423034 -0.027011 -1.327188 2.924188 1.034178 0.725346 4.824949 4.967153 -4.786763 -5.875584 -0.168300 0.305422 3.636570 10.673407 17.684277 2.540540 -0.736443 8.712648 4.828151 3.705466 7.455350 1.551367 -5.356106 -0.409769 4.600588 -21.025140 -1.915124 -27.898981 -1.964943 -26.464278 -7.011041 2.393748 10.177104 -5.549897 6.332083 2.349730 10.454330 -0.067720 -4.578210 12.420226 12.044570 -9.057543 -6.130654 -7.365371 -7.851671 4.437548 -5.140760 2.896532 14.327693 5.681257 -10.211639 -3.614426 7.590985 5.060225 -3.726307 -9.203571 4.101572 8.387566 -5.974603 -8.591933 2.743863 12.559119 -1.714966 -18.588148 2.023626 -13.037661 4.493753 -0.459094 -4.223386 -9.137958 -0.006849 3.621081 -4.607461 -3.934962 -3.340982 10.845079 7.363300 5.647712 1.014604 2.992499 2.979313 18.565014 0.001889 -8.954065 1.643066 -0.327389 -6.748176 5.962806 -11.964675 -6.619225 7.694580 -12.408358 6.807671 7.147745 -6.394537 -4.807769 13.979962 6.152117 2.162820 45.063784 2.094313 17.146492 11.887326 -9.284257 9.778351 -5.313951 2.502017 4.298829 4.457776 -3.410471 -23.834183 -11.720372 6.423485 11.362216 9.095433 -17.776342 -10.244350 -0.378221 -1.663416 0.313944 -1.343663 3.623227 -0.944690 -6.650934 -1.980589 11.629116 27.361175 -3.506855 1.324122 6.528883 7.631782 -8.661855 -23.499737 -6.136538 -10.225505 2.413558 -1.444221 3.377020 7.706384 14.776682 -24.430267 9.467366 0.666996 3.798420 12.330584 4.890633 -13.848186 -25.925998 -3.682612 5.777720 17.162705 -4.848793 -0.299083 6.399143 -9.813428 -0.399577 3.519908 -1.795566 -2.302849 4.064288 -0.878100 -3.513299 -4.877074 5.685174 -5.847541 -0.770936 0.115195 8.267541 1.352283 -14.321887 9.506935 -0.993967 -5.585869 1.877248 -5.621286 11.202753 -9.304548 -9.006820 7.139242 -0.355119 -2.347664 -10.910722 3.098118 6.525368 1.545765 7.290016 -5.937921 -15.796482 8.251158 -10.966288 9.386303 4.654947 -2.719067 4.244362 -1.724638 -3.926231 -15.115393 -7.908587 -7.044491 2.664533 -12.757898 -1.396470 -1.843229 10.880557 6.238603 1.094829 -11.088062 1.868621 17.131017 -9.666735 -4.746545 7.193032 2.597525 -12.977742 2.845189 9.538201 -19.013164 2.768289 -5.793558 -5.391581 -3.742284 -8.741332 7.460927 4.790705 7.823963 -3.230027 1.999273 3.570063 6.143309 4.908808 4.077540 2.950727 20.869408 14.245252 -1.764444 -6.180964 -12.867658 4.635698 -13.260590 -15.209335 6.501421 2.832849 -10.640902 2.265936 5.989870 13.960267 1.230819 -2.127325 -4.251506 3.339170 +-57.727302 11.688593 68.274145 -153.387963 153.129456 119.616093 50.578457 -61.505962 -128.990935 -40.101546 9.895143 -150.953243 -89.085714 184.926557 -71.424200 102.690928 234.606570 33.183998 -61.592572 -23.273246 155.961718 -28.412519 226.338775 175.178846 -174.470055 -5.721388 33.763934 97.998815 18.267855 138.425534 -66.806537 -127.782542 61.330739 -94.837702 18.876856 -103.950348 26.913283 7.100550 55.414999 -238.728898 30.688868 23.726327 -18.810872 -31.807103 -33.769559 28.876560 180.715064 144.829545 -51.401330 14.258352 124.751418 48.869124 -14.413094 50.304514 39.310141 40.716191 85.663367 5.193444 -85.190663 -62.872687 -36.567162 -75.353180 20.958073 158.385765 196.719900 17.613872 4.435580 73.510554 -0.575117 32.174447 54.269434 37.142563 7.642500 40.298893 85.947003 -142.147361 4.131807 -248.208731 -38.022196 -289.429245 -104.910279 -72.950634 69.693464 22.734068 87.938285 -27.575917 186.539849 -13.778040 9.645956 104.603781 216.835010 -159.364562 -66.900462 -141.809048 -104.443655 39.797109 -89.059934 -9.172733 53.159835 2.967163 -136.169707 -107.275620 52.953326 54.047388 -58.452031 -71.689995 1.080521 145.688489 -148.119811 -102.455636 -86.565673 74.436476 -37.289685 -261.528310 -48.860797 -85.388831 85.613781 0.921489 -30.315577 -157.529821 35.437330 133.905044 -69.014397 -79.968589 -54.117612 155.158868 96.930986 23.740672 27.102220 -2.804702 39.581557 204.819921 113.172834 -88.978775 -28.369955 2.711349 -72.733275 13.285791 -109.621808 -41.479718 38.132299 -156.939475 16.262211 136.623259 -90.821836 -10.946293 56.433830 -8.758400 92.805849 485.178400 -36.376807 147.104440 66.850951 -190.519973 93.520630 -25.238334 -31.086587 34.217440 82.599081 44.112326 -217.580354 -150.845426 105.795119 159.380539 118.817637 -169.330083 -24.720612 -53.652701 -9.106303 -15.589776 -11.634051 62.726167 -27.404262 -116.251307 -44.233435 97.306404 315.272971 -79.134744 -154.946622 106.326745 58.415785 -60.591500 -151.458820 -73.676724 -92.339035 11.581808 46.241957 -14.629603 103.616632 220.581242 -316.032054 152.094637 -16.362453 -59.587054 153.381474 -1.584205 -93.245087 -143.397738 -8.003734 150.174973 175.172053 -11.255004 3.029357 14.338016 -145.597326 1.377605 22.309666 57.061624 -48.633852 65.935812 27.769749 -139.727235 -117.010981 -43.982390 -42.042147 -44.376934 -51.215232 76.155744 6.799780 -299.246704 199.968125 -7.067769 -41.501865 53.706859 -41.460914 130.749840 -151.259624 -190.011510 97.630032 -16.187317 -51.285470 -70.081891 26.830543 113.640795 30.047602 54.454884 -115.362746 -211.660485 100.700307 -35.516759 121.709301 66.372598 47.951822 131.552090 24.351983 -59.396025 -154.230846 -95.986188 38.042626 -5.309596 -129.798976 -40.369618 -44.922260 160.106320 158.906592 -9.230861 -62.900472 -50.514449 169.730891 -148.910448 -42.082909 130.885156 48.554277 -151.700846 20.845847 154.607500 -142.028118 -75.116118 -89.399784 -14.467950 -59.138297 -146.038736 61.812425 -44.387596 58.516975 54.778408 9.117820 -51.228244 65.352462 38.921488 12.311888 -5.638442 211.544891 183.094897 -92.666993 4.256459 -148.708241 85.732920 -225.005442 -185.382879 68.773472 -22.925819 -83.931236 28.252407 27.166812 149.124291 -11.380282 16.628628 -15.707467 -30.660199 +-4.767201 -5.350235 -2.420840 -9.539695 7.159520 6.476441 4.066545 -7.711221 -12.029676 -0.017534 6.270051 -12.592424 -1.141984 13.355915 -3.957549 11.830728 14.994433 1.842317 -7.190898 -2.601054 12.793269 1.797588 16.035346 13.441687 -9.913257 -0.680324 -1.581679 2.928023 4.952922 -0.517152 0.910096 -4.123318 6.596769 -13.089454 -4.704415 -5.032895 1.732212 4.224847 12.627113 -14.002541 3.443866 -0.970279 3.750893 -3.545903 -4.430288 -0.006830 7.130883 10.655253 -1.391322 4.058577 9.822470 1.082026 -1.082831 3.037295 1.891872 1.887961 1.409369 -0.155403 -4.128716 -6.593783 -0.965887 -0.193829 1.920335 10.656382 12.772758 2.308836 -1.123667 8.758350 4.034384 3.153950 7.267682 2.261156 -2.163370 0.115046 5.324883 -13.565738 -1.898582 -18.978097 -3.274713 -17.841937 -6.145803 2.326664 8.181748 -2.127326 7.747505 3.001547 10.607131 -1.519492 -4.942892 10.407984 12.483916 -10.747615 -5.485671 -5.553918 -6.877889 3.344365 -6.180686 3.609921 4.968922 2.766965 -10.247263 -7.003769 2.508879 5.577972 -4.201168 -8.561417 3.753432 7.278484 -7.316755 -8.475511 1.659748 8.951324 -2.700264 -15.998264 -4.415272 -8.135888 5.634074 0.156840 -4.706860 -10.786544 0.921178 4.235930 -4.327297 -7.066182 0.301542 4.099007 6.689971 6.620050 0.479210 1.102307 3.445578 18.487469 1.967991 -8.588547 2.261826 -1.587482 -0.998971 6.715603 -6.878754 -6.531263 3.441257 -10.351144 4.022062 8.392493 -6.358192 -3.929216 9.104985 4.853631 1.360137 27.034611 1.758360 13.155932 10.675120 -10.016859 1.280472 -6.243907 1.726531 3.889139 4.701905 -0.864849 -11.633272 -11.629254 7.427128 11.245198 8.692946 -11.307010 -4.150354 0.113291 0.242945 -0.112576 -0.848793 3.150985 1.030957 -9.004385 -2.322674 9.970579 19.630263 -5.732065 -0.060154 6.656040 5.421382 -3.335303 -10.688275 -6.153607 -8.728782 2.818188 4.955133 2.644586 7.190697 14.593677 -15.657278 9.510289 -1.780335 1.338236 6.319330 5.562578 -12.440352 -7.843691 -2.926081 5.695436 10.371080 -2.479014 1.120706 5.800961 -10.500810 -0.900230 1.978318 -1.596494 -2.646015 4.599007 1.534249 -4.565814 -5.400948 5.394512 -2.887531 -2.732641 0.576613 8.553770 1.552055 -12.308669 9.864633 0.016563 -4.802918 2.480205 -4.523337 11.824715 -8.987301 -9.249085 7.706771 -1.755425 -1.927319 -4.461838 2.974070 6.369865 3.566473 6.673043 -7.034727 -9.724556 7.787357 -3.615180 9.798774 4.773100 -1.842695 4.062663 -7.306314 -2.624646 -10.500514 -4.841419 -1.839398 2.286640 -11.347261 -4.502834 -2.410956 11.375348 6.935649 -0.105940 -9.780964 -0.481549 10.367293 -12.700272 -3.297402 7.387412 7.192303 -12.028016 3.105472 9.200558 -11.682948 2.163783 -4.379126 -1.239981 -4.814461 -8.563968 7.650421 3.786615 7.396721 -1.825514 1.664988 2.833926 5.267490 3.923392 2.253203 2.249781 13.297298 9.495344 -2.965719 -5.644776 -12.232526 4.950202 -13.215960 -14.507826 7.734267 1.065043 -11.172825 0.970066 0.167267 13.169951 2.280517 -1.581219 -4.364669 2.761513 +-14.676824 -7.776272 10.619141 -37.416424 39.758651 18.672981 16.468444 -9.662977 -35.554251 -15.262959 7.451237 -30.834513 -23.227737 47.201886 -16.965937 32.511792 57.561274 6.777427 -12.792602 -11.789360 49.829703 -22.060970 59.567414 40.893044 -50.569686 -3.259982 3.963931 31.940749 13.889728 29.053487 -2.521773 -20.539442 20.205567 -33.272902 9.291778 -33.028966 14.515791 9.314781 10.565039 -62.550326 5.571576 8.107278 -0.836284 -4.126683 -11.453035 23.860159 34.046247 41.091662 -22.336340 14.197780 38.482515 2.567621 -2.497144 16.103656 -1.191476 4.703229 10.832270 1.277333 -27.353803 -14.561947 -7.217314 -36.135868 14.283267 36.945377 57.910367 -5.842784 6.771986 31.267882 -1.634641 12.887754 23.934952 8.763318 -0.257273 -6.247943 34.842121 -48.577266 -10.357300 -76.281209 -14.337374 -102.914982 -28.073222 -22.698100 28.344215 -2.410039 23.383913 -4.073272 48.001047 2.414816 -1.193828 37.990891 46.714315 -38.305710 -17.889357 -44.111899 -22.591501 13.520527 -29.998310 -7.804626 29.958067 5.547533 -33.101568 -20.325260 16.444008 12.621182 -13.374390 -32.830195 -7.307243 41.185782 -44.726928 -32.552443 -23.852530 24.064019 -12.387958 -66.824709 4.233631 -24.505434 31.003416 0.189673 7.752368 -25.788016 4.372738 34.282580 -13.157313 -20.905163 -13.938463 44.022951 24.609872 10.158549 12.778983 7.829099 1.003926 50.353008 40.176198 -18.338353 -18.103429 6.629922 -20.542563 12.054761 -31.823397 -12.742130 29.804706 -44.337704 2.082823 27.469956 -18.299469 -10.791254 28.153734 0.815327 27.707178 117.045723 2.018417 38.242519 21.193772 -42.906291 25.804779 -6.285895 0.436025 21.662990 23.746694 -4.099626 -55.900180 -40.683512 20.446550 34.483836 29.459155 -51.679740 -20.815582 -15.003758 3.093672 -1.544268 -12.564395 23.956529 -4.753745 -30.439744 -5.871340 18.333507 77.482680 -22.134346 -23.088225 31.070294 19.638926 -32.857092 -57.487384 -22.741365 -24.513908 -2.163595 4.483831 -1.494467 19.720266 54.972424 -77.853999 36.824064 -6.321871 -2.612517 31.856426 -1.465597 -22.822461 -66.002183 -5.777868 30.148217 45.964782 -8.087959 4.099725 12.170113 -36.516599 9.409552 3.720733 9.562654 -3.684597 13.998191 -4.494908 -23.474145 -31.103698 -3.549587 -13.621051 -2.665483 -0.506955 18.074931 9.835326 -71.445423 41.266951 -18.636364 -19.362243 18.042825 0.098279 42.462037 -36.648400 -46.423394 27.790055 -2.806641 -24.043420 -38.353585 11.844367 29.386149 2.574158 -0.501060 -19.975027 -58.316283 27.714626 -22.568737 22.886866 17.047452 7.915110 45.128095 3.550891 -22.918382 -48.624027 -23.618794 -5.858407 -8.828871 -30.724023 -11.526476 -5.056608 40.569622 38.280433 3.828289 -12.595307 -1.510169 53.664914 -46.460146 -22.251644 39.598396 20.441630 -33.192572 20.529121 43.916986 -46.733805 -18.247984 -23.446433 0.790164 -4.670874 -33.564473 21.500724 -9.939784 18.215686 7.428673 12.662238 -9.399951 18.964820 12.223243 6.183901 -16.238276 67.615268 63.919488 -31.788762 -8.688629 -33.998276 18.468810 -55.148073 -43.331659 12.522489 6.829404 -14.313789 20.007339 16.354551 41.610689 4.890884 -6.206852 -6.728489 -12.607875 +-59.690389 24.586707 88.293693 -156.779351 153.722561 117.478221 47.442169 -61.476555 -127.494939 -44.464118 1.771351 -153.028047 -98.296190 190.091345 -77.056308 84.004833 243.455797 41.579449 -58.839619 -29.002716 146.884484 -24.595807 227.279195 186.482452 -178.314533 -6.053645 47.094759 100.555235 18.869101 149.432351 -79.818729 -140.290872 57.461942 -73.405632 28.065222 -109.030625 22.934819 0.233432 43.731464 -246.859715 32.002959 18.146892 -19.193362 -33.880597 -28.061026 38.030518 195.749191 144.771524 -50.694739 5.779726 124.808757 63.736122 -15.774677 48.491076 47.507348 40.721691 104.803821 7.105469 -80.856261 -56.069776 -39.835185 -72.887671 12.779109 168.050364 200.967015 25.890756 3.023272 54.033326 -1.540745 32.945774 45.350323 37.665338 21.264882 57.415029 79.503704 -134.404124 10.870836 -262.321403 -34.464430 -295.423296 -105.509420 -79.439546 65.977942 19.686020 77.974337 -25.048962 191.461162 -10.095781 19.012238 96.294040 232.123828 -158.290189 -67.766014 -137.251895 -112.766244 43.087860 -86.971650 -1.274498 38.249964 1.647763 -139.232485 -121.791636 51.519746 48.918037 -62.122114 -52.170486 2.504723 148.044526 -150.979224 -89.548453 -98.480394 62.054948 -28.934097 -263.986593 -51.872570 -93.528869 93.851366 2.152708 -42.291441 -163.164766 40.808898 137.170948 -75.516914 -74.215296 -68.781541 159.815694 93.173638 16.061806 19.699424 -14.012076 44.873001 193.284324 110.986880 -96.534093 -24.190477 1.669623 -83.142151 -1.708932 -121.884985 -36.686191 44.274183 -150.321392 18.637719 135.363804 -98.539877 -15.203997 53.055136 -23.300055 98.568453 486.960139 -47.614437 140.504055 57.716496 -199.160209 94.904507 -19.891969 -38.827720 27.222851 89.702450 60.439416 -211.652510 -152.677317 108.480442 168.320226 122.615141 -163.064532 -22.349214 -57.153929 -14.746520 -18.099945 -0.147661 56.820902 -41.163838 -115.885779 -51.118905 96.963531 311.615765 -75.145034 -175.250379 96.805098 59.400944 -48.700986 -135.305442 -65.961566 -83.018689 17.605277 46.679346 -19.107913 113.508704 226.810236 -350.034231 159.268510 -14.423107 -68.329871 155.195141 -7.648435 -88.919297 -131.101202 6.019338 162.496572 179.374499 1.222453 0.784615 8.729426 -152.129416 -6.875950 20.844078 71.989582 -60.142390 70.298842 40.175445 -155.261066 -122.925241 -56.916323 -38.128279 -51.985396 -61.726957 77.376339 0.886838 -324.701922 215.546259 -1.619376 -33.112254 46.792168 -49.589144 117.935187 -160.728977 -198.279371 91.352221 -18.256311 -46.295361 -66.199599 20.938198 118.898334 21.361296 66.793905 -122.672993 -216.845221 101.003287 -32.434711 127.349629 68.043912 57.010848 135.091704 31.423517 -52.115009 -153.561011 -86.962337 53.106837 -6.745216 -127.994125 -29.046754 -50.231155 159.621030 172.894083 -17.921285 -58.525315 -56.069834 170.076480 -143.497086 -41.243627 127.627857 43.129132 -145.066730 20.316107 152.355373 -141.476469 -86.689540 -94.887379 -23.428217 -61.512842 -153.943630 58.924786 -56.104636 55.046048 65.040566 3.544864 -63.054410 68.279184 36.374040 7.319434 5.131510 205.151884 187.984637 -94.434231 22.835969 -152.927109 90.717127 -234.989552 -186.876034 66.626156 -37.945468 -84.909078 21.471058 10.218547 144.626695 -20.091993 31.852183 -15.312481 -26.076504 +-42.703779 17.562234 61.102602 -116.367493 117.300405 90.241714 35.146106 -46.554156 -95.049248 -27.860613 1.751316 -114.931861 -68.327898 138.009063 -55.630249 66.449538 180.202880 28.275680 -43.607693 -19.059068 109.100855 -14.707118 166.714690 136.726169 -130.419344 -2.916052 31.875605 69.274129 10.676586 109.869716 -64.366980 -105.410406 42.784331 -57.731319 18.646903 -79.139724 15.340652 -0.412343 40.062822 -180.297572 24.539399 12.948183 -13.517604 -24.263767 -21.228843 26.948439 144.996974 104.666944 -38.628021 4.823267 92.639093 45.651584 -12.127241 35.617000 35.144471 33.665030 77.781308 12.352206 -60.098402 -44.018827 -30.211721 -45.976770 10.396069 121.489890 146.543801 19.003176 0.619785 41.970700 1.703440 21.619699 33.942174 28.390518 15.630773 40.571144 58.223902 -98.236944 7.523564 -192.542270 -25.514457 -214.836606 -77.499938 -56.547254 45.926077 9.112810 60.792218 -21.739220 140.813673 -10.672079 13.350929 68.210983 169.397866 -118.844467 -49.407052 -101.387004 -84.440593 27.918547 -61.277002 -2.090300 33.305481 -2.869691 -102.872042 -90.744421 38.904567 36.906777 -44.455298 -40.835782 4.140621 106.045589 -106.672365 -67.748769 -69.972227 48.953891 -22.680174 -193.394899 -39.101215 -67.801280 62.870878 0.662959 -32.124613 -124.006980 29.205975 100.769474 -59.600796 -55.982141 -45.017027 118.706344 72.488445 14.068481 15.665446 -12.417511 34.162232 145.452522 80.544697 -72.579282 -16.859516 -0.723274 -57.806719 0.129859 -89.496681 -27.594098 31.958126 -111.207570 15.628708 100.770533 -71.734155 -4.782635 44.052351 -15.374555 69.889532 361.516372 -36.888700 105.982908 41.929530 -146.639034 72.965601 -14.408042 -27.988607 19.259096 65.356199 43.499171 -159.869416 -112.723960 82.041401 122.247935 89.242527 -124.121346 -16.940296 -40.470890 -10.966461 -12.398354 -2.724839 41.467256 -27.361732 -85.271768 -36.927830 71.019934 235.649867 -56.038710 -129.342670 73.169294 46.429402 -35.832666 -99.988997 -51.645051 -68.472087 13.044338 35.514988 -12.851607 85.047461 167.183026 -258.679231 115.291836 -12.246216 -52.601526 117.609562 -2.671261 -66.112738 -94.559517 1.449983 118.732392 132.583401 0.954334 1.048807 6.395599 -109.570002 -3.939891 14.928565 50.809866 -45.099761 50.322310 29.841048 -115.803232 -87.118543 -41.826543 -29.593070 -39.727801 -46.196404 56.437241 0.660845 -239.391493 157.014738 2.567092 -24.093656 36.045784 -37.189182 86.741839 -114.791459 -143.555894 67.962684 -12.747808 -29.004015 -45.512277 16.911437 85.848816 16.989001 54.096440 -92.940197 -165.711239 74.514684 -22.367027 95.727434 50.031924 40.033753 95.516197 20.444429 -38.507743 -115.524710 -66.765439 38.133292 -1.420359 -95.142372 -22.137191 -37.983735 117.761638 124.098406 -12.133645 -42.811457 -45.659638 123.106961 -105.985150 -24.392710 95.370345 31.747233 -110.360542 10.113580 113.451006 -102.297316 -62.047244 -68.403368 -18.020568 -47.633603 -111.292547 42.909593 -38.731366 40.032770 45.900557 1.101612 -44.387270 49.319136 26.143552 4.860393 3.470007 151.521665 134.879603 -67.623945 15.304148 -111.878869 67.119227 -172.070340 -138.765586 50.957321 -30.911922 -68.026151 14.767319 10.854462 108.061885 -17.708819 24.542615 -10.881750 -19.147772 +-5.263588 -5.214912 -3.524588 -13.233836 7.846999 12.165462 3.970482 -6.800510 -14.586020 -2.607646 5.254755 -15.647231 -1.447596 15.733774 -4.483647 13.575506 20.748510 2.105443 -8.070766 1.153037 15.230138 -2.040327 18.760957 17.087651 -10.544994 -1.210979 -2.633361 7.746338 1.579527 4.551247 3.494652 -8.554211 5.456865 -14.783378 -5.277823 -10.336290 2.565974 5.505375 11.166243 -21.228074 4.017306 3.648851 1.215318 -4.778158 -4.902250 -4.541861 9.227646 12.100750 -1.646456 2.851941 10.142524 3.476526 -2.296468 3.299912 2.363553 2.522064 -0.066097 -2.377877 -5.303588 -7.539193 -0.497201 -2.825925 3.024569 11.898941 16.353949 1.975407 -0.102141 9.042349 1.506050 3.017653 7.768863 1.528626 -6.591428 -0.331762 4.683016 -17.042679 -1.132902 -17.917846 -1.687165 -20.794342 -7.211935 1.807280 9.760762 6.800866 8.107802 -0.781403 11.879018 -4.956507 -3.693652 15.754616 14.400187 -11.011806 -5.933616 -9.994853 -7.820042 4.963539 -6.796797 -0.585204 5.757017 3.776416 -10.794294 -4.080618 4.421097 7.375273 -4.630586 -11.229118 3.843149 10.395148 -11.505256 -11.229407 2.479156 13.825737 -3.913605 -21.438299 -7.346318 -10.490130 3.014408 -0.431107 -4.390604 -13.082001 1.538267 6.368146 -2.499115 -6.751371 -2.855871 8.931544 6.704670 5.588920 1.550296 2.346445 3.405631 22.485909 2.125002 -7.405336 2.023057 -0.145749 -2.517826 5.587521 -7.878047 -6.995893 -0.740417 -14.407022 2.363397 12.641469 -7.361976 -3.371509 4.056672 5.583068 3.245254 51.877092 1.590001 17.608932 12.925391 -13.505947 5.778567 -5.415605 -0.093342 3.128223 3.420172 -0.395770 -23.307538 -11.642999 7.385187 12.973157 10.484080 -13.111932 -2.947467 -1.440512 -1.088114 0.726451 -1.179885 3.197505 0.911200 -10.949094 -2.980261 12.867248 30.003146 -3.835933 1.093734 8.833893 6.316786 -8.994970 -18.644768 -5.923796 -10.106666 2.377311 4.306740 0.014958 7.267181 16.481297 -17.465010 11.300747 -0.464175 1.509667 10.966137 4.860974 -13.945548 -18.482575 -5.216458 8.843545 17.154465 -7.012030 3.670617 4.786137 -11.057615 -1.079770 4.320134 -1.630253 -2.188305 4.875510 0.760341 -6.606364 -6.633089 5.602821 -5.776133 -2.228373 -2.241477 8.160215 1.940780 -12.050332 12.972366 0.554739 -4.718283 2.981618 -4.129741 14.582772 -11.806539 -12.512477 9.827072 -0.048287 -4.663688 -4.377959 2.331891 8.837848 6.168712 3.954740 -7.198502 -14.697805 8.646447 -5.011159 10.408849 5.212075 -1.686393 5.530931 -3.153144 -2.845019 -13.339734 -12.227253 -2.543166 1.333500 -13.507217 -4.981994 -2.965065 13.342934 7.985271 0.731018 -13.950425 1.499771 15.545611 -9.374706 -2.829505 8.208166 3.515483 -17.054172 0.569358 11.011193 -16.480632 2.075042 -5.988310 0.385419 -4.650353 -10.703611 7.682498 4.131627 8.530671 -0.167755 2.167572 0.633537 4.671572 6.016711 3.210291 2.775914 19.340473 8.911753 -1.370184 -5.197025 -13.328818 4.243328 -15.760857 -17.029361 6.636816 3.467581 -9.886459 1.858916 4.057317 15.332852 3.061349 0.888628 -1.370548 1.434524 +-8.586658 1.783135 7.647427 -18.699462 14.674450 11.670952 5.288638 -5.926125 -14.287325 -7.955743 -0.959710 -14.777521 -9.757362 24.255319 -7.775248 10.898630 33.948973 7.301796 -5.281268 -4.902646 21.828806 -12.358921 27.745428 26.119241 -21.981033 -2.607452 15.166091 14.818978 5.332974 14.911055 -5.230796 -17.963350 6.990873 -14.441090 6.160268 -20.810071 4.642606 2.838497 6.480235 -35.265969 3.989132 -3.556267 -1.950093 -5.514347 -6.273919 5.680985 24.685217 18.549753 -11.068983 0.604656 16.868985 8.163878 -5.303667 5.319402 3.439401 6.265410 8.387573 7.905716 -8.205005 -4.935412 -3.193101 -10.982128 6.148498 20.998104 27.791734 1.810933 2.732179 10.607555 0.344874 4.736719 4.532407 3.091573 1.415602 3.520496 11.712602 -31.971188 -3.877819 -53.423294 -4.395088 -52.598618 -12.340702 -10.633757 7.028929 -7.369440 10.273085 0.712776 22.372377 -0.905251 4.446843 18.159148 30.391180 -18.433684 -8.389259 -20.038399 -15.505943 8.970367 -11.786214 -0.446526 11.810908 -2.030734 -16.532657 -21.126134 9.663137 8.379060 -7.644006 -15.706274 0.896730 19.317785 -18.448329 -14.500277 -13.393929 5.575064 -6.151480 -34.846767 -0.096574 -16.347777 16.801808 0.954667 -4.800926 -24.620591 2.915489 21.106132 -7.444667 -12.405470 -1.543366 21.092595 10.839027 1.938628 3.160383 -3.377887 3.897957 26.716616 21.295461 -12.357853 -3.486231 2.663825 -16.940172 -2.826368 -21.173723 -7.700518 14.596297 -19.431803 0.929681 18.562844 -13.046811 -6.178126 25.227998 -5.714982 14.492538 75.701767 -2.969997 15.763937 8.374255 -26.615472 13.442677 -2.205436 -5.500085 5.662308 14.584013 6.600569 -36.160840 -18.632042 9.581279 20.874783 16.391904 -24.009612 -15.429474 -9.831114 -2.997812 -0.015981 -2.308187 5.814359 -7.074190 -15.023952 -5.888371 14.902655 39.862781 -10.668886 -17.033434 9.478914 14.127011 -12.591735 -30.204275 -7.418954 -18.624703 2.730862 2.738198 -4.161723 14.673665 27.756109 -52.587350 19.213814 -4.327133 -4.908028 15.025891 2.007374 -11.733581 -34.519862 4.490295 22.719769 25.383845 -2.886454 5.506790 2.803314 -19.110245 -1.280573 1.962266 9.436144 -7.494690 8.711831 1.193415 -20.492780 -16.213026 0.713352 -6.310940 -10.909760 -2.465974 8.996683 2.598399 -41.952973 29.028013 -4.382905 -3.783106 8.553795 -5.512405 17.790707 -22.917247 -28.446682 12.619529 2.137951 -1.568443 -10.651232 2.146589 18.842104 0.761124 5.565875 -10.615655 -32.945030 9.226394 -7.790079 14.658598 7.921999 6.581875 23.133788 -3.132822 -5.821229 -27.048008 -8.215035 1.471412 -1.053418 -16.781077 -13.335192 -4.221142 20.488153 23.389953 -2.555071 -7.355145 -2.564531 24.766362 -24.251623 -5.905709 15.063130 12.715858 -18.368515 2.496890 18.363041 -24.310144 -11.228508 -12.228511 -1.073561 -2.603154 -21.959292 7.294524 -8.255107 6.824233 7.509841 0.547721 -4.411802 10.102789 8.339369 4.906247 -0.056443 24.452413 31.124537 -14.645994 -3.406547 -18.728904 7.594624 -32.537580 -25.221927 6.078679 0.645490 -8.079764 4.300711 4.438098 17.601489 -2.745213 6.703036 -0.320050 -5.461928 +-1.917470 -2.305332 1.476040 -5.721018 3.325295 1.244650 1.534994 -1.121212 -6.257610 -1.773406 1.926646 -5.704640 -1.875240 6.677582 -2.193030 3.185425 8.938072 1.967830 -2.708408 -1.768799 5.925510 -3.043597 7.298545 7.275029 -6.031260 -0.582913 0.488299 4.377864 3.034818 2.365734 -0.104900 -2.470863 1.684264 -4.383438 0.964516 -4.815227 1.364952 1.697568 2.302277 -9.310387 1.437606 1.140769 1.458428 -1.189734 -1.145312 3.988698 4.089729 5.103068 -2.922031 1.759876 5.775419 0.090492 -0.582099 1.073407 0.652488 0.108368 2.788950 2.730315 -2.800300 -1.314899 -0.325223 -3.509005 1.648720 5.274533 7.737182 0.020917 0.228290 2.054175 1.924332 1.600876 3.669870 0.521259 -0.062040 -0.440002 3.627931 -6.694944 -0.359189 -12.857963 -0.477072 -15.274495 -3.271852 -0.926042 6.260751 -1.569019 1.048263 -0.830585 5.420657 -0.381473 -0.609805 5.474194 6.342330 -3.552893 -3.065351 -4.620005 -4.191087 3.137850 -3.486114 -0.268536 4.899981 1.473555 -4.426709 -2.261547 2.231825 1.680324 -2.076379 -2.030915 0.503353 5.113165 -5.115688 -3.058784 -1.917952 3.700514 0.472276 -8.898136 -0.267648 -4.807880 3.627886 0.402388 -1.805367 -2.893015 0.376476 2.589411 -2.386887 -0.883424 -3.279064 5.933438 2.079499 2.248311 0.541442 0.351879 1.391719 5.660491 2.974077 -4.200127 -0.323602 0.971459 -3.390875 1.323118 -5.478969 -2.888934 5.216123 -5.119085 0.840084 1.989136 -3.561047 -1.976575 5.250244 1.349768 2.443393 18.031454 0.517569 6.392772 3.601379 -4.642484 3.967330 0.114768 0.524142 2.457511 3.301190 -0.180206 -7.624261 -5.054886 2.422059 5.646242 4.419046 -7.266418 -3.046478 -1.052275 -0.457302 0.591911 -0.375650 1.652705 -1.065767 -3.728442 -1.265941 3.839123 9.991352 -1.746260 -4.006806 1.699153 3.229021 -3.472829 -7.581951 -1.527748 -3.295053 1.416215 -0.113576 0.081884 4.176512 7.393493 -13.930167 5.355533 -0.067239 0.311866 4.711016 0.596864 -4.884214 -10.566308 -0.474672 3.255112 7.238814 -0.202570 -0.424223 2.979100 -5.055069 -0.245101 0.835514 0.911130 -1.429601 2.071829 0.037763 -2.231894 -3.320068 -0.666463 -2.101134 -0.396657 -0.929907 3.290854 0.250886 -9.839699 5.241573 -1.395799 -2.279331 0.503265 -1.485524 3.612507 -6.122161 -5.660161 2.382467 -0.112459 -3.329101 -5.062988 0.548259 3.738673 0.031529 1.115149 -2.870365 -7.967704 4.391673 -4.122841 4.318804 2.366386 -0.838364 4.935662 2.004819 -0.939173 -6.371293 -1.487472 -0.186667 -1.261181 -4.705973 -1.368126 -0.951436 4.658153 4.670176 -0.293257 -2.327762 -0.027032 6.653565 -4.674558 -3.306515 3.689122 1.274491 -4.212128 3.043783 4.729771 -7.707906 -0.508328 -3.900308 -2.091326 -0.493332 -4.026907 3.577342 -0.195683 3.146064 0.206635 1.220993 -0.651366 2.672762 1.634907 0.135842 0.255476 8.421410 9.029663 -3.200325 -0.366721 -6.187319 3.010262 -7.333637 -6.745363 1.576742 0.509567 -3.870254 1.705292 1.562039 5.672887 0.967647 -0.493686 -1.781034 1.567685 +-22.757316 6.771672 36.505419 -58.812569 71.253992 32.934802 25.861702 -9.845089 -49.615346 -29.858250 -1.591507 -49.735522 -53.223271 80.137956 -29.789100 38.573428 94.716842 14.787203 -14.646940 -18.178021 72.425377 -36.150280 96.601287 62.520279 -86.238469 -3.619152 17.456056 50.990794 12.038094 71.874887 -20.262810 -50.343370 27.967113 -34.352153 28.679203 -51.342684 20.938305 4.286757 -2.379701 -104.566304 6.606939 20.876135 -4.032518 -7.458849 -14.138720 35.531222 74.032529 66.669986 -36.995434 13.166339 56.187988 11.101813 -1.973899 26.797194 5.749648 10.053763 28.352237 -0.920111 -50.254617 -17.102934 -16.847342 -66.479723 16.279465 64.935702 92.172674 -5.894733 11.794571 37.552618 -13.917516 20.945663 25.896280 15.984964 11.740078 3.201867 56.077538 -57.493193 -10.770174 -115.321676 -22.084781 -165.060347 -48.849868 -52.986189 38.091320 9.018079 34.668914 -13.814222 85.234324 5.961662 11.782819 51.979499 90.948776 -64.568691 -29.102810 -77.496122 -41.008483 21.943416 -48.470751 -16.044959 36.697573 0.381863 -56.404742 -43.101051 23.426100 17.118695 -22.515589 -36.992428 -17.517031 71.360036 -78.428134 -46.438298 -59.471844 21.613976 -17.744247 -113.079989 2.213647 -28.682156 45.427120 4.618058 10.506106 -47.568707 14.636136 65.256760 -25.911805 -33.152186 -33.815496 79.476231 35.540212 5.151456 22.310230 6.071428 4.458132 70.314056 75.181221 -28.003293 -32.773152 11.819304 -38.564569 4.427246 -49.117989 -15.596995 40.174535 -71.502790 -1.172888 46.022078 -33.451351 -12.569383 22.276029 -14.625772 56.695255 177.420122 -10.029754 52.071707 17.904918 -80.702660 49.617635 -2.358504 -12.299437 25.796631 44.631970 9.745084 -76.557135 -65.366170 37.061467 61.042203 49.432112 -73.278042 -24.378510 -32.701164 2.969802 -5.271688 -13.324177 40.069370 -15.297175 -50.623074 -13.830162 24.071396 122.154449 -37.842239 -67.639190 50.716350 28.549030 -40.432506 -75.965200 -32.126672 -35.198370 -5.549097 6.316313 -11.999987 35.601448 93.974236 -141.286181 67.603987 -9.571889 -20.929652 57.243439 -16.623143 -25.157699 -91.222960 0.629193 64.803408 74.238475 -2.116367 0.346094 5.141980 -62.569213 13.244182 3.040643 31.614102 -12.012355 27.105022 -6.104979 -55.227231 -60.461755 -27.590604 -19.068423 -12.212313 -12.943053 24.137047 17.271509 -134.643590 82.825816 -26.616295 -24.223128 28.272943 2.422375 55.522622 -64.960329 -88.175871 39.718446 -8.286080 -40.779116 -53.241234 13.685751 50.021517 2.576238 -3.867254 -34.924222 -97.467675 45.195981 -23.944645 39.923400 28.613064 27.693712 81.378283 30.074084 -40.793403 -69.686717 -35.892557 8.118365 -21.739914 -44.653298 -15.311312 -13.246980 67.398856 75.676427 2.336967 -9.615522 -16.919849 84.848430 -67.161313 -36.533329 68.840222 15.906058 -48.146401 27.421427 75.861400 -64.841793 -47.712819 -44.706103 4.791815 -10.268563 -61.051307 23.583551 -35.332523 19.108577 27.687821 11.700468 -31.102034 28.718897 16.554670 3.477629 -28.073006 104.059480 96.730159 -61.682932 5.883908 -54.522550 33.425697 -98.215734 -67.589424 15.914683 1.841498 -16.273909 29.452150 20.428833 57.239939 -2.512815 -1.910821 -7.224990 -29.477025 +-6.904088 -8.402990 -5.903294 -14.494027 11.005579 13.154002 5.979793 -10.843871 -18.385693 0.179860 8.469671 -18.949703 -0.957998 18.956283 -5.451411 18.768875 24.429376 2.998852 -10.507610 -1.235617 19.233146 -1.681470 24.640026 21.289678 -12.956089 -1.451636 -3.134262 6.751155 3.492536 -0.072518 2.202316 -5.632946 9.448290 -21.514087 -7.302298 -9.965389 2.733801 6.565872 18.221075 -23.828206 4.549913 -1.378537 3.036235 -4.693223 -6.829774 0.630502 9.824566 14.861234 -1.595408 6.080825 13.436162 0.669783 -1.944893 4.592221 2.588044 3.381823 0.273857 1.264276 -6.430778 -9.499300 -0.980661 -1.763738 3.931336 14.347880 20.101463 2.583773 -0.721580 13.015189 4.173209 3.902486 10.553346 2.438143 -6.816940 -0.373151 6.238714 -23.919494 -2.639780 -27.583322 -4.498907 -27.194213 -9.168012 3.106408 12.059340 -0.565912 11.054485 2.923332 14.911359 -2.622532 -6.512092 16.955167 17.477417 -15.855981 -8.165529 -9.523541 -8.643032 4.398499 -8.015650 2.979217 11.590038 4.478175 -14.091383 -6.592333 5.912616 8.650355 -5.557892 -15.458695 5.113251 12.623924 -10.714035 -13.921189 3.261806 15.521486 -5.032515 -26.288995 -4.929262 -12.107015 7.461033 0.273303 -6.209720 -16.134355 1.318437 7.094696 -4.385102 -9.035816 0.199171 9.325571 9.683387 8.233214 1.648271 3.509858 3.985916 28.988651 2.859272 -10.681712 2.636182 -1.041259 -2.763383 9.561587 -10.239056 -9.265555 2.109134 -18.056546 6.753770 13.148735 -9.064607 -4.269231 12.311885 8.810436 2.258899 53.627528 2.710892 22.234106 16.189640 -15.850766 6.258780 -9.001830 2.658778 5.729969 6.175975 -3.242363 -26.075542 -15.662281 9.609475 16.275931 12.517561 -19.799454 -7.092237 -1.142877 -0.738690 -0.043676 -2.058734 5.082357 0.996447 -11.058099 -2.879883 15.421290 35.179422 -7.487542 2.813397 10.225498 7.085450 -7.954142 -23.234150 -8.948660 -13.530020 3.264728 5.723032 3.231033 8.764292 20.276731 -22.654762 13.196779 -2.863150 2.944616 12.937930 8.482095 -18.843754 -20.797494 -5.968989 8.920723 18.604361 -6.401071 1.670759 8.199680 -13.950810 -1.128538 4.510302 -2.585060 -2.482104 6.013226 0.870689 -6.388901 -6.959521 8.498927 -5.526695 -3.109245 0.787942 11.645615 1.449102 -18.116665 14.068938 0.172462 -7.943379 4.299044 -5.780634 18.527626 -12.719402 -14.002108 12.057457 -1.063597 -3.341111 -7.225777 3.792965 9.614823 5.673562 7.858805 -9.672497 -17.120232 11.083797 -7.186525 12.989622 6.470620 -2.870433 7.318224 -10.032804 -5.860507 -17.466751 -12.292901 -3.623240 2.355208 -16.921816 -5.129953 -2.950688 16.737480 9.074188 2.439737 -16.182614 2.174005 17.834057 -16.023842 -4.047007 10.830794 9.296263 -19.794620 2.836790 13.395839 -19.629950 3.172645 -5.524794 -1.124917 -6.212366 -12.606371 10.509471 5.588033 11.100279 -3.381080 3.787087 4.461059 7.541235 6.511100 6.123003 3.155461 22.865650 13.783024 -3.260365 -8.990950 -17.220437 6.658146 -18.847613 -21.775820 9.757540 5.657482 -14.042573 2.137085 4.238932 19.465273 3.066997 -3.322334 -4.494444 2.711984 +-5.992126 -8.341770 -4.955279 -14.866743 8.991830 10.323315 5.658212 -9.232345 -18.571315 -0.661365 8.218438 -17.892925 -0.062240 19.088957 -4.532357 17.605753 22.640974 3.521820 -10.982054 -0.979054 17.271099 -0.893563 21.166832 19.220066 -12.342596 -0.140504 -4.439908 4.678173 4.699668 2.540611 1.788199 -6.099662 8.569199 -18.350053 -6.035377 -9.979954 1.426907 7.082312 15.770128 -22.806687 5.483669 3.001320 6.378731 -5.650355 -5.501646 0.376822 9.359661 14.335689 -1.065843 5.789446 11.370078 1.363202 -1.066485 4.009699 4.536744 4.555424 1.644631 -1.066570 -6.326527 -8.891372 -1.107201 -2.015702 3.679597 13.888418 17.053180 1.755706 -1.566270 11.248941 5.278683 3.731918 10.997475 2.430871 -5.988416 -2.362402 5.417772 -19.488634 -0.344631 -20.199722 -2.995043 -27.456371 -8.289941 4.358095 13.573380 1.624384 10.149314 0.012856 14.712599 -5.275713 -6.590487 14.262287 15.787051 -14.399661 -7.466665 -8.474591 -8.239567 4.613166 -7.564980 0.532083 10.262371 3.026973 -13.816840 -4.768345 4.974247 8.564242 -5.980971 -10.970347 5.763766 11.453812 -12.729799 -12.843812 4.131571 14.580045 -4.459937 -22.801077 -4.255951 -11.759278 3.772441 -0.346790 -7.079650 -14.703336 2.065609 5.935795 -4.923590 -8.281166 -3.730943 8.710551 6.994374 8.757155 1.179015 2.544938 3.855709 25.645210 2.460859 -11.283154 4.006036 -0.498197 -1.360492 9.184872 -8.147586 -10.495957 2.523286 -16.885832 2.808535 11.078485 -9.182287 -1.728844 9.286433 9.363795 1.382178 46.617440 1.650127 20.773667 15.195320 -14.323746 3.808112 -6.946676 1.971532 4.845661 6.123543 -1.967175 -20.265509 -14.997612 9.163849 16.349125 12.632851 -15.433676 -4.093002 -1.045025 -1.237173 1.705973 -1.308806 2.791189 2.457983 -13.275459 -3.568820 12.202954 30.929525 -6.314092 3.072084 8.790686 6.274664 -7.990530 -17.212506 -7.757591 -13.240805 4.167086 3.399750 1.673478 9.624026 19.748445 -19.371984 14.619946 -4.241046 1.031915 11.235005 6.769222 -16.539424 -18.289679 -7.630718 7.414074 18.418600 -7.198545 2.077778 8.326200 -13.907277 -1.676536 3.003799 -3.222134 -3.421628 5.773594 2.391720 -5.751041 -5.397201 7.833352 -4.004921 -3.165579 0.233240 11.194650 2.871858 -14.416968 12.845359 1.041935 -6.590142 3.842941 -3.345775 14.743623 -12.708278 -12.591246 10.401406 0.051195 -4.386150 -5.777896 2.669015 10.199084 4.328503 5.155586 -8.865668 -14.896189 11.467159 -6.926309 13.894068 6.913749 -4.218905 6.156633 -5.869718 -3.358443 -13.553275 -10.745872 -5.958357 0.652043 -14.389155 -3.661229 -4.069749 15.950246 8.580183 1.951369 -13.891568 2.562929 15.815638 -13.131137 -2.859545 10.255737 5.848775 -17.367650 3.304348 13.288340 -17.772211 3.892175 -6.149243 -2.105395 -5.837485 -10.175223 11.700488 6.103385 10.789537 -3.187390 2.942777 3.011212 6.448791 5.770396 2.618813 3.845708 20.700367 10.385360 -2.470343 -7.151029 -15.659287 6.664141 -17.211831 -18.236817 8.309239 5.163099 -14.984133 1.867609 2.774284 18.243465 4.238166 -2.390502 -4.078134 3.746427 +-23.388928 1.046858 28.360991 -56.636817 50.072369 38.662152 17.993398 -20.258023 -50.759822 -18.456739 4.376567 -55.313483 -33.002090 73.761105 -27.806416 33.664173 91.369025 18.650987 -23.195892 -10.171349 55.944094 -15.908575 83.153962 68.781938 -63.404490 -4.791718 14.168457 40.882601 9.490940 51.180277 -16.551377 -47.514552 21.085511 -31.208111 7.363765 -44.320801 11.466887 6.926802 14.498276 -96.132770 12.808469 11.067738 -2.608930 -15.171239 -11.001339 13.774386 64.142135 55.697558 -17.514672 6.425467 44.323792 21.091276 -5.967087 17.353718 14.513322 12.692347 32.830336 -2.670829 -32.304047 -19.009298 -12.121319 -32.656670 7.791472 61.420147 76.405115 7.352184 3.472272 22.706573 -0.608987 16.123731 21.434076 10.462014 0.400124 15.938395 29.391237 -53.637462 0.819350 -96.913486 -12.463579 -115.106187 -38.157355 -24.356429 33.335566 12.561067 25.449486 -5.685451 67.369926 -3.880156 3.757796 44.356181 82.402038 -53.630039 -27.026804 -51.746461 -39.966388 21.482128 -35.000359 -3.652852 18.395768 6.184212 -50.931808 -40.067410 19.016809 20.607174 -22.696951 -21.468487 1.234503 57.560116 -60.098179 -37.537635 -30.955930 27.090885 -11.746775 -97.728526 -17.181398 -36.321178 35.087612 3.435352 -13.688234 -54.837013 14.671632 47.846738 -22.209684 -25.445306 -27.992719 58.153004 27.527751 7.934629 7.561449 -0.881707 13.091933 70.695596 39.742001 -34.864920 -7.398919 4.649618 -31.085273 2.993024 -45.201347 -18.594445 14.897516 -58.098992 6.270955 48.001216 -37.230200 -12.797867 14.901246 -2.456625 36.091467 182.111322 -11.324870 54.543517 26.181060 -71.600628 32.365951 -8.245719 -11.245120 11.356375 32.254197 17.108542 -76.575432 -55.304582 35.345621 61.899870 47.862727 -57.945367 -11.661786 -22.486826 -5.392159 -2.533715 0.329162 22.587823 -15.000297 -45.713977 -17.839908 35.853696 113.966685 -25.457280 -55.877435 34.299585 22.544734 -24.425568 -58.670745 -21.848818 -28.887089 6.054436 14.203608 -8.057876 38.257619 82.217261 -123.081413 60.654726 -3.966799 -17.443164 52.892545 -3.042262 -37.127254 -63.871928 -2.034288 56.548554 71.045243 -5.093611 1.198079 8.345570 -56.058329 -2.305429 8.537176 22.365792 -17.148083 26.038971 9.746066 -51.309789 -44.765440 -12.838407 -14.150980 -17.059154 -18.439529 29.630110 4.628906 -109.233888 75.822730 -5.949491 -14.909822 17.116414 -13.190586 46.338250 -60.958059 -73.061144 33.723868 -4.742195 -23.012943 -30.338506 6.540308 45.054621 9.519910 17.588348 -37.109947 -74.926727 35.729346 -17.859943 43.804765 24.726195 15.083971 51.489715 13.733419 -19.153810 -55.411347 -32.765755 13.056480 -6.539482 -45.629412 -12.115828 -16.151585 59.738888 60.761038 -4.575361 -27.233930 -15.073468 68.143922 -49.874510 -20.456216 46.140310 11.051074 -51.793937 12.035554 56.313495 -60.218034 -26.011326 -34.682822 -5.183725 -19.462400 -53.745272 24.461764 -16.249352 22.644071 18.595209 4.814550 -20.846609 24.183103 17.134107 4.013223 1.382845 79.480421 69.224218 -34.443209 5.816244 -55.280847 30.595559 -84.843798 -66.853190 21.194312 -5.292726 -29.158146 12.078120 5.171123 53.687487 -1.628515 8.463581 -6.229277 -8.127902 +-3.370215 -3.753550 0.276741 -7.695368 4.759614 3.664990 2.698399 -3.166053 -8.755180 -2.140459 3.371194 -8.397104 -1.979157 9.722138 -3.219587 6.553116 12.439541 2.578108 -3.991729 -1.756939 8.916037 -2.408794 11.420777 11.045840 -8.007386 -0.952028 -0.452095 5.537649 3.269587 2.048811 1.198680 -3.851015 3.436002 -8.046158 -1.177451 -6.806273 2.122635 3.377257 5.480755 -12.888041 2.143254 0.999122 1.589330 -2.064721 -2.197834 1.595402 5.429163 7.682025 -2.785388 3.090916 7.487898 0.887848 -0.884223 2.094170 0.798993 0.747333 1.207040 0.529937 -3.705003 -3.161428 -0.494939 -3.862966 2.106201 7.460541 10.584639 0.850392 0.195666 4.494651 1.942560 2.184764 5.337464 1.162324 -1.715582 -0.344932 4.499195 -10.474287 -1.334490 -16.138865 -1.416208 -17.222617 -4.934796 -0.291000 7.745754 0.338078 3.786686 0.343021 7.872189 -0.986789 -1.919462 8.376448 9.003728 -6.796552 -4.154047 -5.825563 -5.320195 3.770227 -4.965518 0.735070 4.144894 2.767105 -6.877560 -4.270484 2.876638 3.422765 -2.983510 -5.308557 1.037306 7.034601 -7.597475 -5.945760 -0.958655 6.172322 -1.094483 -12.351247 -1.840363 -6.942176 4.940906 0.456984 -2.687980 -5.927070 0.735414 3.765421 -2.503716 -3.184758 -3.004586 5.924712 3.722273 3.133678 0.794302 1.080793 1.422136 11.315113 2.997364 -5.636305 0.165956 0.748198 -3.106816 3.024886 -6.917986 -4.201996 4.072547 -8.037858 1.579942 4.994286 -4.925022 -3.452763 6.203922 2.685532 2.786531 25.714908 1.499957 9.808518 6.957004 -7.349350 3.646220 -2.416668 1.093703 3.472610 4.190206 -0.639464 -11.249353 -7.759560 3.917488 8.137869 6.259173 -8.898827 -4.077528 -1.082852 0.035360 0.323641 -0.500952 2.431927 -0.697590 -6.227381 -1.610629 6.550441 15.216608 -2.914417 -1.908354 3.831499 4.085266 -4.971620 -10.740442 -3.253029 -5.271682 1.650914 1.913884 0.807199 4.998108 10.648839 -15.199545 7.292414 -0.496611 1.532588 5.693675 2.267788 -8.000971 -11.537661 -1.531649 4.668024 9.718036 -1.845611 1.093105 4.257580 -7.583266 -0.418132 1.709732 0.177978 -1.869897 3.534127 0.396851 -3.833537 -4.693877 1.454525 -3.059087 -1.524455 -0.502270 5.333004 1.118927 -11.200225 7.377765 -1.604910 -3.680473 1.698047 -2.490827 7.693634 -8.064358 -8.052776 5.250113 -0.420480 -3.861032 -5.648751 1.327590 5.319048 1.518652 1.855805 -3.966779 -9.346716 6.002031 -4.629647 6.303272 3.353635 -1.155723 5.545537 -0.914819 -2.014286 -8.652994 -3.808122 -1.089548 -0.742903 -7.610832 -2.677157 -1.419072 7.587232 6.385469 0.090795 -5.680059 0.837791 9.996143 -7.244024 -3.421473 5.492258 3.403091 -7.303109 3.171732 6.921135 -10.921215 0.168018 -4.414448 -1.068897 -1.522381 -6.246260 5.388412 0.842198 5.109912 -0.264101 1.989977 0.115519 3.846184 3.191315 1.342846 0.901752 12.008744 9.447032 -2.956168 -2.031533 -8.590279 3.484891 -10.326488 -9.883403 3.212053 1.599270 -6.075302 2.099517 1.276245 9.077922 2.105506 -0.555822 -2.079082 1.388244 +-4.589693 -5.619206 -1.364165 -10.817148 7.399405 4.758455 3.851809 -6.247112 -12.107866 -1.469475 5.111097 -9.812705 -0.823204 12.632921 -3.903491 10.844559 15.199905 2.916148 -5.687383 -2.708488 11.778890 -2.604346 14.445637 13.625674 -9.606656 -0.595027 -0.203230 5.186201 3.695947 1.964383 -0.720975 -3.850791 5.328073 -12.691160 -3.011538 -7.586492 1.366270 4.749544 10.287712 -15.093735 3.144582 -1.196349 0.656648 -2.472206 -3.323750 2.001939 6.295576 9.586981 -2.882987 5.210728 9.289329 1.023443 -1.540471 2.822139 2.094453 3.197614 2.085411 2.665155 -3.896340 -4.418237 -1.214131 -2.421674 3.577693 9.600603 11.540566 0.778753 -0.706972 7.550273 3.320703 2.228032 7.485545 1.713795 -3.385970 -1.470963 4.985042 -15.596379 -0.985501 -21.454593 -2.518671 -20.163191 -6.450104 1.420230 8.627479 -2.443503 6.567127 1.061887 10.043555 -1.006109 -3.612738 9.753793 11.016638 -9.852559 -5.066438 -5.699745 -6.926260 3.036812 -5.422824 0.353313 6.049058 2.621633 -9.076511 -5.478373 4.750875 5.045290 -3.868783 -8.575178 3.002660 9.151471 -8.817784 -8.748692 0.350037 9.040207 -2.917532 -15.369636 -1.850364 -8.291117 7.937677 -0.224550 -4.452047 -9.652857 0.950371 5.284730 -3.883807 -5.239196 0.311957 6.432056 6.093173 4.897426 0.506251 0.264839 1.922291 16.775406 3.770048 -7.996306 1.151883 0.203969 -2.782973 5.483821 -7.311229 -5.926307 4.031273 -10.745026 3.452137 6.935173 -6.342598 -2.953214 12.519729 4.771247 1.530385 31.766361 1.383699 12.813163 9.799278 -9.590724 1.500472 -3.516568 2.226814 4.796120 5.404108 -1.809863 -14.428754 -10.367192 5.777584 10.739983 8.388897 -12.675120 -6.621001 -1.424211 -0.465547 1.529279 -1.435955 2.384916 0.668777 -7.933832 -2.211831 7.831203 19.893069 -4.759594 -1.437262 5.348617 5.107936 -5.830358 -13.817997 -5.484495 -9.081111 2.541293 2.605948 1.765285 6.142682 13.823739 -19.458993 9.014664 -3.225091 0.521750 6.956648 5.368628 -10.544359 -13.972232 -3.506755 4.983332 11.776822 -2.869850 2.568384 6.330179 -9.284400 -0.741579 1.884048 -0.647197 -2.712048 4.160415 1.758527 -4.939660 -4.406024 4.304269 -2.789511 -2.639612 0.749036 7.498504 1.135718 -14.649255 8.658783 -0.518265 -4.804139 3.752690 -2.397114 11.323633 -9.104609 -9.743324 7.702767 -0.430635 -2.311227 -5.267517 2.353674 6.930673 1.480585 3.428414 -5.829383 -9.729861 6.479363 -5.363105 8.776744 4.464501 -2.289907 6.868766 -5.391097 -2.591664 -10.175765 -4.408598 -1.020320 0.295715 -9.420949 -3.772985 -1.888090 10.108844 7.211854 1.594368 -7.719112 1.491089 11.638338 -10.602594 -1.809227 7.237722 7.195148 -10.276532 3.495038 9.173773 -12.447232 1.048717 -4.217461 -1.541876 -3.095872 -7.008397 8.001864 2.941514 6.939654 -1.784937 2.876971 1.315511 5.237636 4.019491 3.119912 1.736234 13.304546 12.895453 -3.539329 -5.623527 -10.469163 4.557076 -12.325112 -12.879103 5.090062 2.632998 -9.091345 2.000637 1.113522 12.685052 2.535433 -1.205106 -2.502615 1.964915 +-13.032431 -14.841700 -10.345612 -28.066139 20.356161 28.268657 11.110780 -24.516302 -32.836026 1.872489 18.748966 -38.083497 -2.302694 35.267730 -12.779921 34.127431 44.341527 2.549815 -22.892975 -2.118416 34.135437 4.899768 46.764207 41.309631 -25.360202 -2.957250 -7.520648 14.804385 9.209609 -3.655776 5.771375 -8.409716 17.818774 -38.044189 -17.088081 -14.106664 5.495744 8.702636 33.473692 -41.989055 8.166440 -3.859261 3.758601 -8.718251 -12.794411 -0.454810 19.451314 29.069614 0.565650 8.836455 24.803400 3.015585 -3.324981 8.189199 5.036240 2.911712 4.697924 -0.243210 -10.796789 -21.215411 -1.487735 0.413090 4.681456 29.783574 38.233921 8.055240 -1.968148 24.939836 9.799609 7.773633 19.989227 5.896587 -14.741356 4.583478 10.238784 -42.174131 -1.026208 -42.695898 -8.538050 -41.520864 -16.362842 7.424106 21.005965 -0.436477 21.833279 7.396989 28.742355 -3.087426 -14.473586 31.353693 33.795201 -30.227455 -15.189613 -15.778050 -16.685066 8.000845 -15.968716 10.277178 17.295108 12.144553 -27.441900 -9.628211 7.444407 16.862230 -11.088023 -24.928171 10.414516 22.058071 -19.118718 -23.582959 10.808604 29.526275 -8.907663 -49.692016 -15.648267 -24.393610 14.887093 -1.320952 -11.335678 -30.233633 2.051093 13.036167 -7.316233 -16.509285 -0.274873 13.841824 19.701763 17.484339 1.200332 8.741736 10.510977 54.801954 1.844912 -19.530384 6.608592 -5.648791 -3.643100 20.136217 -16.923832 -15.422615 1.616720 -33.334848 14.157552 28.519192 -16.317511 -9.778670 16.502135 17.943902 3.427351 100.893583 5.008899 42.039147 31.746983 -30.000080 5.060043 -19.935073 4.978900 9.636692 7.957312 -5.079082 -48.476631 -30.498681 20.653828 31.980926 22.702064 -36.398346 -6.260023 0.561613 -2.801809 -3.176541 -3.103974 9.671871 1.380986 -20.141673 -6.522563 32.826107 63.305647 -13.859915 3.303781 20.608721 9.860634 -12.361560 -37.235781 -17.093224 -19.293971 7.992483 14.087439 8.532417 17.188564 38.681462 -35.390096 24.784311 -1.400048 6.273592 25.584853 15.898557 -35.897017 -27.768681 -10.863197 17.032942 31.170923 -12.961164 -2.692164 15.095338 -27.075344 -2.752299 10.985043 -6.124833 -4.592955 11.456826 5.539932 -11.057698 -15.452832 15.847848 -8.279476 -2.795307 -0.984581 23.609974 -4.141700 -30.165792 27.947331 1.933012 -15.998653 5.826724 -15.603706 34.312181 -24.593701 -25.512990 22.437098 -3.859182 -7.668316 -13.673367 7.294307 17.150149 14.634247 19.688772 -22.162820 -26.796563 20.133074 -14.398584 25.554572 12.393103 -3.704956 11.320739 -21.283935 -9.311707 -31.682416 -24.794778 -6.430894 8.980023 -34.268126 -7.300607 -5.760075 31.785594 16.242692 1.369200 -32.551375 4.312984 31.629330 -29.117887 -9.438303 18.062416 16.812044 -39.208298 4.818407 23.102581 -35.485531 8.164330 -9.721622 -7.942225 -15.118325 -25.781751 20.339933 13.403728 22.823821 -5.895705 7.282018 9.259075 14.290481 10.520831 12.581657 9.816909 41.523999 22.017391 -3.999055 -17.257612 -35.060266 15.498598 -36.282452 -42.515111 23.338206 6.923985 -25.080385 2.341392 3.985953 36.463378 7.809804 -10.175421 -9.602455 8.483586 +-1.965309 -1.837299 2.586028 -5.825915 3.006640 0.550016 1.509193 -1.284421 -5.144315 -3.662765 2.876518 -6.370086 -3.756252 6.173763 -3.316225 0.964489 7.354878 0.680896 -2.135998 -2.997661 4.224681 -0.114956 7.524590 7.387787 -7.061178 -0.902972 0.739278 3.829959 4.309475 0.323854 2.455431 -3.909484 1.960579 -1.084007 1.564435 -2.349147 1.251817 0.396252 0.631127 -7.812262 0.694689 1.224886 -0.450402 -0.514838 -0.140328 5.513570 4.523897 5.202829 -3.176419 2.367026 6.558915 1.579945 -0.760453 0.642259 -0.376163 -3.701099 1.473451 0.001141 -2.143501 -0.944937 -0.194020 -2.975321 -0.051228 6.309986 7.546135 -0.125828 0.180551 0.927646 2.111951 2.393937 3.172659 1.459391 1.835168 1.431525 3.945805 -4.289524 -1.221575 -13.112280 -0.118987 -15.807205 -3.781994 -0.927541 7.587316 -0.011412 -0.818925 -1.362066 5.870580 2.045957 -1.203210 6.628049 6.869446 -1.925856 -2.790106 -3.435521 -4.011167 3.457383 -3.991249 2.260521 2.177247 3.118903 -4.727639 -1.266266 -0.130734 -0.090636 -2.237739 -1.539346 0.140410 4.464171 -5.589305 -0.105964 -1.928315 4.233981 2.918024 -9.407504 -1.381845 -4.360684 5.574763 0.167099 -1.814644 -0.024868 0.044319 1.011939 -2.405513 0.837457 -5.150619 4.734551 3.138077 3.008949 0.087365 1.755125 2.274026 4.366292 1.594994 -4.014109 -0.741099 0.027453 -1.851358 1.919964 -4.546628 -1.070004 6.121996 -3.587042 2.597058 1.212017 -3.156006 -5.019162 2.367131 -0.360272 2.148431 15.031230 0.258916 6.331358 4.297078 -4.140023 1.005779 -1.133242 0.651567 2.571576 3.260757 0.330909 -3.111827 -4.746022 3.479617 6.257144 3.738176 -6.299977 -0.202523 1.288750 -0.640117 -1.879734 0.769880 1.635809 -1.388181 -3.040139 -1.328689 5.352855 6.523263 -0.426681 -3.914719 0.457053 5.337089 -0.309374 -2.608686 -0.604396 -0.099629 1.981841 3.207172 1.242829 4.438571 7.127792 -14.481494 4.587665 2.496824 2.133356 2.407981 1.365715 -5.306359 -8.429163 0.919076 3.317132 4.800678 0.260991 0.374786 2.914277 -5.386569 -0.078869 1.228834 1.016299 -1.964989 2.209205 0.793300 -1.507859 -4.073522 -1.764566 -2.100521 1.332064 -1.952798 3.587161 0.490547 -11.702115 5.599384 -2.097441 -3.057820 -2.199667 -3.370925 5.025495 -6.625003 -5.190532 1.505142 -2.482228 -6.002284 -5.032155 0.029705 2.590498 -0.883765 3.415385 -3.114210 -5.341609 5.463426 -3.199858 4.566075 2.323842 -0.242868 6.150228 -1.003728 -0.636536 -4.772164 -2.752661 4.208017 -0.893512 -5.111991 2.230651 -0.683231 3.298904 4.508716 -1.987159 -3.509166 0.824621 5.020099 -4.917378 -3.623523 2.650801 2.732474 -3.140600 5.056660 3.658136 -6.547766 0.150739 -5.122743 -1.727160 -1.313159 -4.540703 3.730037 0.087218 3.294443 0.346925 1.651497 -1.428789 2.972508 1.081798 -0.135188 1.134508 6.788094 10.229220 -3.538050 0.350639 -7.188427 3.573693 -7.473576 -7.730101 2.148484 -1.893848 -1.874387 0.936355 -1.935572 4.936443 1.850587 -1.186584 -3.227720 4.394380 +-8.785069 -11.065153 -7.455433 -18.507748 12.723101 16.805055 7.201243 -15.150569 -22.796799 0.248572 12.001025 -24.604797 0.215152 23.529118 -7.437102 23.949097 29.305910 2.580435 -14.767330 -1.464247 24.277811 0.644231 30.202327 26.121516 -15.840837 -1.932525 -5.772102 8.615066 6.292265 -2.563260 4.910111 -5.193325 11.114414 -27.237087 -11.770296 -10.810249 3.856489 8.352540 23.414929 -27.889165 6.107406 -1.765661 4.568245 -6.514695 -9.060951 -4.211011 11.387556 18.876453 0.073132 6.285822 16.491770 2.068593 -2.423050 5.636242 2.889648 3.867311 1.748348 -2.537851 -7.226789 -13.471703 -0.835872 -0.377320 4.805185 18.621169 24.013502 4.965736 -1.113005 17.743528 6.462255 5.100672 14.454340 3.095273 -11.074024 0.473386 6.998776 -30.330423 -1.724227 -30.090078 -5.465429 -26.723824 -10.753387 5.635374 14.172532 1.381612 14.953467 6.754522 18.088649 -4.502280 -9.572964 21.356548 21.084180 -19.608677 -9.917248 -11.108825 -11.240635 5.547725 -10.368747 5.111579 9.900791 8.475899 -17.514391 -7.493905 6.936332 11.955416 -7.081513 -18.346046 7.342465 14.751575 -13.137298 -17.728470 7.603325 20.931205 -6.898386 -30.894158 -8.935433 -16.595802 8.701432 -0.571558 -7.474316 -20.785652 1.263690 8.419255 -4.619170 -11.810383 0.111904 7.907490 11.876935 11.453728 0.911156 4.904239 5.670470 36.672092 1.457684 -13.222574 4.617390 -2.651267 -2.126070 13.191409 -11.125597 -11.873463 -0.220449 -21.405124 7.007275 18.590225 -10.851556 -7.063628 11.543987 12.191825 1.936911 63.818995 4.662996 26.991325 21.733066 -19.081784 3.781661 -12.718304 3.664183 6.642060 5.488158 -4.033991 -31.379808 -20.509267 12.643708 19.977121 15.453270 -21.745494 -7.061566 -0.230300 -1.022797 0.394778 -2.782360 6.301680 1.823183 -14.792805 -3.989644 20.514542 42.223227 -8.741700 5.512355 14.057743 6.531285 -10.123623 -26.561248 -11.670861 -15.011562 4.745395 7.965457 4.800431 10.685948 25.565278 -21.816537 16.374863 -2.536317 4.816732 14.958367 10.562210 -23.728901 -19.940093 -8.533961 10.425244 21.680023 -9.712543 0.703899 10.553897 -17.513295 -1.653415 6.325683 -4.667331 -2.664198 7.308164 2.268506 -7.156628 -9.029614 12.842069 -6.375257 -2.699275 1.053004 15.207850 0.200419 -15.833810 17.492607 0.846352 -9.459628 5.449145 -8.829477 24.095149 -15.335934 -16.170614 15.743287 -1.531732 -3.977756 -8.582315 5.385789 12.015208 9.324584 10.453595 -12.975898 -17.099108 12.796021 -9.072297 16.361487 8.014399 -3.954426 5.900307 -12.293350 -5.450348 -20.123476 -14.532008 -7.954746 5.429749 -22.171133 -8.352187 -3.608476 21.294286 10.293430 1.752226 -21.601651 3.231470 21.523131 -20.385933 -6.279944 12.421203 10.561632 -26.004363 3.129840 15.851090 -23.929390 5.733900 -6.104291 -2.171143 -8.835217 -16.023407 13.831902 9.529698 14.970737 -4.488800 4.692814 6.645556 9.144306 8.343770 7.919230 5.158861 27.854567 13.548612 -1.430480 -12.519768 -22.009433 8.164630 -23.163581 -26.616212 14.139404 7.003239 -18.333259 2.207330 3.492447 25.086842 5.654984 -4.293431 -5.619978 4.360846 +-11.905615 -12.209770 -6.113099 -25.169658 17.980364 21.426534 8.644368 -18.622077 -27.936947 0.236217 13.572239 -25.009064 -2.036202 31.157443 -11.483609 27.211353 36.243546 4.486952 -16.083620 -4.824250 32.243699 2.193287 38.542031 33.482741 -25.693469 -2.961638 3.322549 10.837666 11.907422 2.968903 0.519652 -11.896245 15.505224 -32.293535 -10.316994 -17.869777 4.959489 8.896847 28.665175 -35.304292 7.056544 -5.557420 -0.773447 -6.652060 -9.844855 2.425732 16.459681 25.331438 -7.538916 11.215742 25.411802 6.500005 -6.222926 6.425568 3.596132 5.484553 2.410857 6.339424 -6.481303 -15.828946 -1.977938 -1.779625 5.873902 26.370700 32.595435 2.944682 -0.317655 19.977787 6.960917 6.065010 16.604850 5.328291 -7.125706 1.062320 13.329963 -36.359955 -4.827871 -49.293643 -7.075117 -47.313364 -12.533673 3.220422 15.916213 -9.246122 18.365265 6.427579 26.511305 -2.724695 -10.161688 27.639234 28.321703 -25.899715 -11.766086 -14.551043 -18.153981 8.247867 -15.455464 7.122085 12.713677 4.654073 -22.719398 -17.768372 3.924177 14.287321 -10.524275 -24.086575 6.373309 19.230850 -20.934546 -20.786593 2.870168 20.848751 -9.084947 -41.953144 -15.671338 -22.126236 21.231003 -2.256823 -9.512509 -26.643158 1.566192 15.152376 -7.707708 -17.239633 8.349363 10.730121 18.532712 14.641493 0.701547 -0.161393 6.804994 45.792464 9.355684 -18.873028 2.548218 -2.195350 -5.493333 13.708199 -18.890690 -11.510667 9.406749 -26.782702 11.703265 23.298619 -14.849712 -9.121774 30.247114 8.717934 5.388936 85.963058 3.447818 32.885086 25.020426 -26.767239 0.279359 -13.198580 3.826955 12.394980 11.522102 -2.150741 -36.307052 -25.490090 16.012331 27.422960 20.288276 -31.818387 -10.457406 -1.498304 -1.286853 -1.046473 -3.813751 6.279410 -1.800297 -19.474602 -6.027907 23.803286 48.309669 -13.580506 -3.979431 14.462088 17.007959 -14.214781 -26.284002 -13.400170 -21.792516 7.639727 14.564600 3.239979 17.732242 34.158141 -44.733217 21.023721 -4.404240 2.663387 14.296319 15.025647 -28.382126 -21.770358 -4.511728 14.077919 25.423255 -7.371435 5.932618 15.047230 -24.839002 -1.724312 6.753075 -2.042053 -6.996682 11.095225 7.773052 -13.304002 -14.589762 13.776168 -6.227218 -7.507274 0.575592 19.463115 -4.639666 -39.904313 23.753121 -0.842835 -12.413072 7.309982 -10.454150 29.416641 -25.184930 -25.834928 20.574650 -0.046527 -2.567999 -10.087562 5.827495 18.714450 10.602952 16.754810 -18.704411 -28.973884 15.312906 -10.424814 21.553916 10.791288 -2.720902 16.168731 -27.705290 -5.271619 -30.996192 -14.095156 0.966426 5.917858 -27.388440 -10.786944 -4.749811 27.412755 18.031464 0.177547 -22.372516 1.961948 27.331188 -29.123824 -4.021272 15.766073 26.380911 -29.590132 5.899567 20.170212 -29.481135 2.963556 -9.023824 -3.513811 -9.754684 -20.974433 20.008226 7.074885 19.373044 -2.764128 7.679236 4.792064 13.278676 9.835010 9.181952 6.637890 30.793397 29.056982 -9.348335 -14.106122 -28.708900 12.203538 -33.112401 -36.780092 16.643249 0.034986 -21.067007 3.742114 -0.536396 32.319402 6.170335 -1.449513 -5.454471 4.872482 +-6.789696 -8.059435 -0.944471 -15.413750 10.055053 7.537831 5.641699 -7.430187 -18.751213 -2.662211 6.506827 -16.228318 -1.493206 20.670690 -4.523065 16.533559 23.890289 5.109154 -9.589877 -2.004020 18.696679 -5.092373 20.895243 19.248415 -13.405278 -0.751122 -1.134622 7.516313 4.300479 4.976440 0.828203 -6.711858 6.455557 -18.393605 -3.676949 -11.947443 2.196310 7.943730 13.999301 -24.605119 5.399959 2.446431 6.233900 -5.717771 -5.811265 -1.437204 10.016464 15.234400 -3.871198 5.854284 12.961605 0.674498 -1.533094 4.221355 3.924781 5.305860 2.119516 0.937204 -7.346560 -6.866214 -1.730461 -4.945136 5.731382 14.420550 18.428684 1.484628 -0.859897 10.639223 4.530024 4.889793 10.490810 2.154849 -6.445940 -3.231250 7.509800 -22.136682 -1.738375 -28.997668 -2.592489 -30.456464 -9.953464 2.398802 13.904361 1.748140 9.732143 2.883160 15.798405 -5.184519 -5.015521 14.978662 17.369576 -13.853882 -7.946902 -10.647916 -11.276180 6.278109 -8.234684 -0.898090 9.685026 3.672738 -14.108832 -7.771278 6.221830 8.368042 -5.834973 -11.390733 4.494849 14.254634 -13.572832 -14.551328 0.552992 14.040112 -4.433027 -23.847613 -2.765547 -12.086060 5.800926 1.147731 -7.271320 -15.127154 2.746871 7.315549 -5.856269 -8.399661 -3.163489 9.989415 6.396943 7.399548 1.742746 0.629364 2.789815 23.419136 7.146390 -12.048205 2.668328 1.106935 -3.987922 7.240501 -10.499297 -10.953156 3.040739 -17.391532 2.904391 10.835012 -10.191007 -4.369904 10.936983 7.157530 3.566247 46.499608 1.438214 19.682906 14.234989 -15.094695 7.412034 -4.611670 1.366408 5.724780 8.365591 -1.264046 -19.903359 -15.626307 8.852474 17.052877 13.850736 -15.554347 -9.950080 -2.813841 -1.021317 3.371739 -0.816788 4.035390 0.773710 -13.725478 -3.702577 11.727805 29.594946 -6.709259 -4.183131 9.060418 7.448929 -9.254421 -21.303838 -7.390923 -15.832731 3.238352 2.961992 -0.149516 9.887767 21.243316 -27.010440 15.777680 -3.823464 0.731019 12.202730 5.603598 -15.701797 -22.484562 -6.068585 8.916719 19.795204 -5.746361 1.111199 7.882798 -14.771429 -1.216516 2.639729 -1.152202 -4.166642 7.208350 -0.406416 -7.428962 -7.083030 6.195805 -5.132938 -5.182411 0.280032 10.725916 3.230608 -17.534355 14.361081 -0.844550 -5.890929 5.900001 -2.841218 15.521808 -13.240088 -15.333003 10.917632 0.569754 -3.862263 -7.848885 2.655098 11.621563 4.378263 3.111856 -6.962614 -16.195171 9.786526 -7.428038 14.372754 6.934351 -3.618924 8.963555 -1.386599 -4.315427 -14.693185 -6.643012 -5.048487 -0.780959 -14.105731 -10.366000 -3.934534 16.628972 10.840509 1.960104 -11.653818 -0.109320 18.175070 -14.741574 -4.700571 11.747346 2.998472 -15.894875 4.270438 15.010241 -19.070794 1.514768 -7.699861 0.640708 -4.633154 -11.067177 10.906434 3.983023 9.506254 -2.367526 2.206392 2.032290 6.741217 7.448280 3.438177 1.611378 21.389943 13.010911 -5.132231 -5.954710 -15.775578 6.059225 -19.386902 -17.907864 6.789358 6.129258 -14.379908 3.011736 3.043289 17.779730 2.476571 -0.594596 -3.485488 1.899783 +-49.067042 11.954805 59.421084 -130.707917 126.747302 103.743263 39.780413 -56.646534 -109.837062 -30.345340 7.757944 -131.418180 -69.891059 155.451466 -60.882569 83.012996 202.795547 30.154159 -52.647275 -18.884278 127.340237 -16.834779 189.718158 155.191702 -142.078663 -4.417479 30.323407 79.884367 13.173276 113.582364 -61.340411 -113.428982 49.598438 -76.932171 10.881461 -89.603501 18.240803 5.443616 55.282110 -202.493349 28.676997 13.510210 -15.806568 -29.392742 -27.240767 19.237456 155.346582 118.414818 -39.076755 8.568604 104.623603 48.940145 -14.655589 39.825606 38.272878 37.310306 77.964517 8.220221 -65.388886 -52.891144 -31.231287 -48.575303 13.856097 134.987123 164.166156 21.931397 0.129257 53.753201 3.156606 24.580512 42.495828 30.713931 7.531146 41.374504 63.955523 -122.279084 6.749354 -216.392483 -28.912049 -234.086243 -86.213081 -54.398587 54.109955 15.084234 71.973210 -19.005741 153.981733 -15.579957 8.502378 85.688805 185.944382 -133.301733 -55.889616 -111.193607 -92.540650 32.350332 -69.241146 -0.942117 36.695382 1.752450 -114.965129 -97.387983 46.453713 45.783900 -49.657070 -55.669842 8.546363 118.071966 -118.622577 -82.059733 -67.496920 64.588464 -28.811373 -217.506391 -47.115415 -79.453276 71.441216 0.412457 -37.054672 -140.745478 31.322840 109.138531 -62.046692 -65.865913 -44.276616 126.958613 82.525890 20.524222 16.869969 -9.554902 37.872478 174.172333 84.160010 -80.394842 -14.535468 -1.733214 -61.199993 7.114310 -97.815044 -35.012480 29.469796 -126.501418 17.823095 116.914280 -79.768711 -9.479014 52.230304 -8.796133 73.157888 419.153238 -34.731316 124.616801 58.079343 -162.063224 77.248157 -22.597319 -27.616940 22.890479 68.944843 43.492202 -189.656401 -126.495256 91.029094 136.456209 100.739100 -140.964292 -22.402256 -42.308897 -11.121315 -12.231672 -4.204492 45.682699 -26.174062 -97.434414 -39.981107 86.775069 269.465533 -62.391885 -130.082529 84.069651 50.660410 -45.612848 -122.817974 -59.245731 -78.583786 15.320559 42.497636 -11.924165 92.292654 185.540648 -278.344768 127.120988 -13.609590 -51.513448 130.758558 4.718842 -82.717810 -112.072596 -4.320819 128.713416 150.162641 -6.103818 5.546022 11.524440 -122.360251 -4.996351 19.376919 49.083974 -47.271166 56.362278 31.179035 -124.412821 -95.070355 -34.687675 -35.158664 -42.751860 -47.607215 66.156478 2.007417 -254.458993 171.682231 3.681313 -29.127050 41.943917 -42.933811 107.676015 -127.291640 -157.757726 80.408745 -13.796448 -32.511382 -50.418994 20.249441 95.278818 25.126005 59.791379 -101.714243 -179.370400 82.290814 -27.449820 107.358110 55.697490 38.810095 101.484036 12.850001 -42.383921 -131.057393 -78.793624 36.290651 1.856882 -111.616610 -31.727622 -41.106794 133.568831 133.344027 -11.581797 -59.089723 -44.816797 139.489110 -122.522362 -27.483208 104.729173 41.498492 -130.870716 10.502962 125.501026 -119.140222 -59.857108 -73.321455 -17.575728 -53.813702 -123.755621 51.394865 -33.982352 49.515732 45.603448 3.575029 -42.567485 54.675995 32.747228 10.071110 6.219483 171.525129 149.013914 -69.340377 7.157316 -127.235718 71.578043 -189.648393 -159.347690 60.006220 -26.861260 -79.176663 16.371405 15.307132 126.634670 -13.573325 24.709110 -12.362536 -18.832228 +-2.678943 -3.269123 -0.906154 -5.797197 3.969447 3.749935 2.208418 -3.234017 -7.381949 -1.050468 2.904404 -6.965750 -0.880038 7.543789 -2.257077 6.479034 10.083278 1.858537 -3.605399 -0.990623 7.511060 -2.492153 9.331322 8.479916 -5.487210 -0.448799 -0.749759 3.140654 1.857081 1.814115 0.465125 -3.088890 3.449586 -7.473039 -1.443053 -5.124434 0.981874 2.999120 6.182471 -10.266113 1.864920 0.582229 1.152737 -1.758714 -1.946400 1.898495 3.912604 5.699753 -1.318434 2.892753 5.757262 0.644041 -0.661384 1.605742 1.245089 1.377288 1.350085 0.879479 -2.714127 -2.793549 -0.729909 -1.917375 1.669200 5.550017 8.251461 0.279610 -0.115708 3.845753 1.542466 1.626795 4.315501 0.892542 -1.695863 -0.783232 2.778203 -9.167034 -0.849642 -12.781548 -1.361985 -14.099291 -3.691905 0.729847 5.743144 0.352232 3.399975 0.135568 6.105296 -1.351901 -2.138988 6.429358 6.784887 -5.726697 -3.085364 -3.736531 -3.581416 1.993167 -3.453618 0.179090 4.531515 1.455195 -5.355623 -2.921177 3.260399 2.927199 -2.203683 -5.205009 1.488135 5.300470 -5.501752 -5.064439 -0.004919 6.041296 -1.219583 -10.270222 -0.302167 -5.316022 3.311981 0.437260 -2.627046 -5.310715 0.873527 2.681068 -2.052043 -2.958216 -1.350849 5.289062 3.487422 2.973616 0.574347 0.657101 1.137519 10.121816 2.038439 -4.529087 0.707270 0.276447 -2.132567 3.141823 -4.878652 -3.625542 2.527863 -6.634372 2.037803 4.176217 -3.799179 -1.602634 5.499765 2.763870 1.290818 21.393862 0.584548 8.761124 6.262576 -5.953656 3.680933 -2.277878 1.035571 2.375951 3.093795 -0.757383 -10.307275 -6.012881 3.432829 6.396577 5.001153 -8.185632 -3.380833 -0.665217 -0.015515 0.587445 -0.470813 1.709028 0.205509 -4.993758 -1.260254 5.233322 13.921666 -2.605515 -0.076967 3.184975 2.835133 -3.896448 -9.779741 -2.966796 -5.129163 1.383156 1.577903 0.635653 3.609938 8.113998 -11.980949 5.641990 -1.415806 0.502200 5.504249 2.929361 -7.024320 -10.434981 -2.065374 3.323659 8.268183 -1.821699 1.414552 3.455408 -5.635547 -0.400626 0.963460 -0.287903 -1.579533 2.447038 0.653406 -3.135114 -2.759203 1.982714 -1.996520 -1.601721 -0.081789 4.245656 1.596842 -8.993354 5.410557 -0.303382 -2.736735 1.627132 -1.215399 6.861875 -5.418310 -5.681846 4.215341 -0.415775 -2.232982 -3.954859 1.106525 4.067676 1.022240 2.374982 -3.318114 -7.902545 4.590120 -3.388802 5.165039 2.558975 -1.347405 3.680761 -1.391605 -1.660915 -7.082513 -3.641493 -1.000374 -0.451848 -5.966236 -1.866269 -1.237886 6.171795 4.259784 0.899265 -5.429312 0.624776 7.426109 -6.398010 -1.599245 4.458377 3.825191 -6.775912 2.018042 5.488096 -8.080977 0.578597 -3.022985 -0.778412 -1.803845 -4.369107 4.446763 1.391332 4.043039 -1.021025 1.533784 0.521702 2.793646 2.566482 1.158615 0.748750 9.421780 7.834095 -1.784893 -2.250623 -6.506197 2.540828 -7.477199 -8.036871 2.681773 1.999330 -5.705278 1.177486 2.011988 7.801583 1.344202 -0.389100 -1.564142 1.220857 +-6.823770 -8.816841 -5.687283 -15.279198 10.228801 13.997944 5.984100 -12.450041 -18.049851 0.129048 10.220085 -20.612976 -0.472925 18.578780 -6.223090 18.413289 22.694699 1.752406 -11.866995 -1.777017 18.342841 1.307081 25.038622 20.916261 -12.894273 -1.295152 -4.976322 7.172750 5.217482 -2.598267 4.252820 -4.024143 9.343393 -21.116464 -9.144706 -7.520151 2.800376 5.869807 17.873596 -21.462661 4.630666 -2.013880 2.380228 -4.732392 -7.018217 -1.415910 10.007987 15.074024 0.763953 5.583761 13.057379 0.979123 -1.542206 4.493267 3.193114 2.013330 1.116098 -2.419316 -5.880678 -10.681158 -0.788290 -0.681577 3.216789 15.108764 18.740302 3.855076 -1.270702 13.817014 5.254248 3.941988 11.623477 2.815690 -8.562383 1.531219 5.413356 -23.550382 -0.411728 -22.797287 -4.643871 -21.408811 -8.872032 4.628525 12.592179 0.659147 11.232943 4.590498 14.732479 -2.383028 -8.047229 17.150462 17.625074 -15.617152 -8.121988 -7.934925 -8.040896 4.113455 -8.094221 4.597589 8.476323 7.290345 -14.271196 -3.992249 4.867188 8.887747 -5.773377 -14.170534 6.013123 11.751499 -10.774953 -12.963811 6.117582 16.596919 -4.495190 -25.639845 -8.004060 -12.349947 8.545547 -0.754329 -6.211234 -16.011210 1.082339 6.227842 -3.629997 -8.145450 -0.968281 6.026998 9.855161 9.658587 0.654987 5.476967 5.005425 29.559246 0.417727 -10.334622 3.811212 -2.438245 -1.184260 11.114221 -7.762003 -9.181878 0.074305 -17.145348 6.154069 14.665047 -8.660688 -5.618360 8.697464 10.477985 1.207016 51.904812 3.326904 22.164293 17.558261 -15.483934 1.232634 -10.740796 3.400864 5.268330 4.373522 -3.575421 -24.465718 -16.335994 10.411440 16.374734 12.059982 -17.980616 -3.321990 0.334337 -1.077004 -0.246335 -2.174479 4.592751 1.509465 -10.834654 -3.187758 16.789537 33.662197 -6.952205 4.114525 10.722521 4.525213 -6.972762 -18.981899 -9.181482 -9.942176 4.235672 6.502077 4.668068 8.643755 20.286780 -17.449743 13.069881 -1.850463 4.118238 12.299460 9.052846 -19.074305 -15.588806 -7.240857 8.698262 16.290733 -7.656701 0.035725 8.665172 -14.028133 -1.456240 5.314237 -3.747395 -2.165869 5.769153 2.449133 -5.656090 -7.057500 9.537619 -4.727780 -0.291121 0.729910 12.473981 -0.874278 -15.053213 14.420136 0.898913 -8.171571 3.464730 -7.208144 19.130968 -12.654442 -12.759086 11.983605 -2.002182 -4.903695 -6.858417 3.985113 9.026456 6.348729 8.828748 -11.421129 -11.873980 11.275824 -7.497643 13.364475 6.569080 -3.162784 5.970936 -12.312604 -4.857540 -15.119706 -13.027968 -4.484887 3.820772 -17.495559 -3.455017 -2.880109 16.529798 8.121918 1.602133 -17.302489 3.828923 16.247043 -16.300253 -5.329049 9.773615 9.480428 -21.120435 3.847707 12.420330 -18.593808 4.987601 -5.244150 -3.391764 -7.409082 -13.274246 11.427863 7.776111 12.205123 -3.785496 4.121841 5.430048 7.740707 5.746301 6.696698 4.948741 21.624073 12.203965 -1.369913 -10.235480 -17.918343 7.239655 -18.855968 -21.934124 11.602257 5.744178 -13.537539 1.512040 1.922872 19.755680 5.102945 -5.591848 -5.163291 4.853691 +-6.280525 -8.063718 -5.050195 -13.745636 9.577684 11.918658 5.585674 -10.828910 -16.391770 0.462257 8.471990 -18.946178 -0.185066 17.286246 -5.068983 17.726557 21.550692 2.131366 -10.649474 -1.548998 17.207249 0.060684 22.815003 18.711987 -11.219671 -1.269765 -5.137179 5.891346 3.845963 -2.611592 3.032863 -3.873976 8.269175 -19.808611 -7.902034 -6.938391 2.434638 5.941424 17.409060 -20.471501 4.432007 -1.289629 4.113552 -4.686275 -6.406714 -1.760271 8.923885 13.699390 0.584906 4.596160 11.356155 0.611244 -1.208128 4.254741 2.563637 2.823464 0.753593 -2.224561 -5.861780 -9.048921 -0.736062 -0.062240 3.405046 13.357805 16.736453 3.722607 -1.185391 12.788390 5.421971 3.577411 10.388756 2.318371 -7.336148 0.455124 4.526211 -22.438512 -1.195606 -22.210312 -4.012968 -20.215064 -8.487358 3.998970 10.831399 1.453412 10.523857 3.984284 13.282287 -2.446401 -6.774050 14.572557 15.911767 -14.563341 -7.508760 -8.117419 -7.229949 3.574445 -6.966874 4.211480 8.912279 6.078766 -13.084129 -4.663258 5.630843 8.121609 -5.043136 -13.085666 5.806359 11.165142 -8.475917 -12.695810 5.137130 15.436930 -4.721657 -23.151841 -3.803208 -11.426434 5.619806 -0.201940 -5.842955 -15.088986 1.093828 5.775084 -4.093773 -7.983195 -2.108537 6.721641 8.702048 7.914946 0.885181 4.617295 4.078138 26.846286 0.269269 -9.895470 3.444826 -1.632020 -1.276213 9.458855 -7.726457 -8.960420 0.221922 -15.895836 4.692660 12.557315 -8.060307 -4.337298 8.023406 9.403565 1.402806 45.188701 2.888971 20.111555 15.414803 -14.091160 4.136275 -9.518241 2.775393 4.310353 4.661218 -3.338074 -23.029168 -15.235278 9.236768 14.868615 11.335312 -16.052394 -4.432828 -0.553696 -1.274803 -0.296491 -1.855068 4.869451 1.180198 -10.008353 -2.728941 14.741957 32.032513 -6.446630 4.933231 9.711666 4.697413 -5.982809 -19.351746 -8.598284 -10.910537 3.257111 5.136790 4.123463 8.049658 18.764431 -16.483801 12.192325 -2.298529 3.274394 11.748351 7.453915 -17.730794 -15.943849 -6.560265 7.994357 15.941572 -7.051601 -0.069810 7.432252 -12.624501 -1.161752 4.188573 -3.168768 -1.901815 4.955226 0.993695 -5.434030 -5.777530 8.755249 -5.071018 -1.874577 0.708184 10.993191 1.881466 -12.041492 12.927838 0.849852 -6.949341 4.180078 -6.681119 17.815457 -10.961143 -11.293818 10.772772 -1.229067 -2.907952 -6.238461 3.660371 8.444332 4.865773 7.882755 -9.644110 -11.932298 10.208953 -6.429856 12.292449 5.930878 -3.028611 4.296082 -7.779007 -5.058889 -13.325981 -12.514583 -5.663987 3.949206 -16.432975 -4.099054 -2.749685 15.389401 7.348091 1.821378 -15.726067 2.604655 14.628734 -15.738108 -4.638542 9.415018 6.308574 -18.906697 2.186414 11.866078 -16.903455 4.042156 -4.611620 -1.193253 -6.485007 -11.711111 9.684945 6.644326 10.540910 -3.960495 3.199228 5.044766 6.821591 5.805384 5.651930 3.937778 20.474718 10.124999 -1.068405 -9.078775 -16.437296 6.306961 -16.711861 -19.192031 9.888444 5.914441 -13.716988 1.584684 2.994307 18.136773 3.695350 -3.815672 -4.751964 3.253117 +-9.256893 -6.102624 4.020349 -23.040291 17.239317 19.471063 7.738824 -12.956378 -23.730521 -1.767895 8.251009 -22.730170 -5.183187 27.883623 -9.345598 20.434301 33.690156 5.092647 -13.882610 -2.156089 25.404465 -3.985265 32.622184 28.394599 -21.635574 -1.403864 1.797263 12.815259 5.559829 13.002850 -6.211836 -11.787766 9.805260 -23.069747 -4.612164 -15.414129 3.023248 4.756499 17.616973 -33.566582 6.198967 1.164922 -0.865273 -7.144510 -6.828311 -0.545317 19.260422 21.061202 -3.721387 4.529434 18.281346 3.147048 -3.153700 5.839179 8.558738 7.917009 10.802417 4.659075 -9.202168 -11.167384 -3.688268 -5.985983 4.897865 22.562669 27.208614 3.428003 -0.305724 12.271057 3.406266 4.497675 12.011514 3.814507 -6.060806 3.095098 10.220273 -28.550060 1.819061 -35.665822 -5.126623 -35.033681 -13.657783 -0.714050 12.834149 -0.208621 15.545170 -0.131769 23.215138 -5.413856 -5.217174 16.627308 27.564504 -23.168943 -10.621134 -15.346255 -14.832750 5.708180 -12.454889 0.793152 9.971045 0.801988 -20.145730 -12.379611 9.150978 12.888561 -8.689399 -12.658341 4.495908 20.562034 -17.865412 -18.651497 -2.208847 15.491157 -7.484230 -36.795563 -9.244301 -16.786210 12.597394 -0.141165 -9.162843 -24.886407 4.694910 16.568925 -7.826876 -14.051200 -1.708913 18.187347 13.143870 8.949202 1.626170 -0.363515 5.971909 34.388002 11.826591 -14.339577 2.245418 -1.254179 -9.106266 8.382645 -14.313545 -9.930880 2.852099 -22.481495 2.275470 20.440373 -13.599045 -1.106505 16.458049 8.455400 7.236938 79.712187 -1.281674 27.230118 16.083563 -25.115380 11.108351 -6.297824 -0.283827 6.001372 9.676973 1.564381 -39.510657 -21.518840 14.697029 24.052582 18.017609 -27.195890 -6.527899 -5.531130 -2.098033 0.274771 -1.254132 5.845254 -0.570080 -18.190823 -6.528793 17.577756 47.560489 -12.724212 -15.844077 14.016870 5.286359 -11.350212 -27.439876 -10.711631 -15.319945 5.355092 5.848813 -0.389736 15.439705 30.390043 -39.416581 21.358692 -5.508824 -5.923264 23.886693 5.335725 -20.467174 -21.784797 -5.097468 16.062140 26.133116 -3.781045 -0.764894 8.418115 -21.275737 -1.988615 3.940926 1.712754 -6.059211 10.051674 4.920487 -16.050709 -13.776512 1.455406 -5.689248 -7.007279 -4.184567 14.363255 -3.156791 -34.659023 24.577368 2.647523 -7.609077 7.586864 -6.780184 19.980849 -20.975709 -25.047223 15.748353 0.203965 -4.288688 -9.741503 3.277329 15.603209 8.366835 8.649708 -17.085044 -27.750671 13.426312 -8.991896 20.427614 9.417153 0.602754 14.626007 -2.130737 -5.502326 -23.604586 -13.267508 0.630412 2.353982 -22.611658 -11.844031 -6.561402 24.334919 16.892570 0.364902 -13.862222 -4.393221 25.088959 -22.458055 -4.943770 15.742847 11.228194 -25.422833 1.141580 19.883424 -23.589688 -2.100878 -9.216300 -6.252714 -9.944982 -19.127225 13.454575 2.670865 14.032792 0.770201 4.362983 -0.529517 8.232399 7.060417 5.024099 4.116633 29.181791 24.740683 -9.101308 -6.795080 -23.437193 12.413569 -29.048193 -28.901845 12.809446 1.295216 -17.928879 2.704528 5.182350 25.339161 3.230922 -1.190393 -2.159981 0.478725 +-48.011036 15.408935 65.421520 -112.707025 113.082277 67.622841 42.006892 -40.591103 -100.453664 -46.466329 5.366492 -122.317018 -84.465973 147.669872 -56.781934 65.379359 200.542534 40.990183 -40.537952 -32.776728 112.598133 -39.872911 185.585493 160.968092 -141.148378 -3.694544 42.020491 80.606193 22.301595 103.954296 -57.435948 -102.748191 57.722886 -67.622313 28.792432 -95.484968 16.968489 1.095739 33.150986 -203.599464 22.863221 7.326708 -6.803486 -25.070556 -24.147913 64.215777 153.035984 116.925514 -43.568982 17.472296 100.087399 33.552185 -6.764068 40.489961 34.843106 25.658259 76.386616 16.518323 -69.567373 -36.855149 -31.969828 -80.020708 9.167784 131.155032 165.437250 14.673253 1.462312 45.361621 -0.280352 29.113662 37.505885 31.690695 27.853617 37.535160 70.407799 -124.614588 3.943198 -235.941333 -37.220493 -286.342778 -90.404769 -66.240404 68.402241 -7.870562 60.322171 -13.492700 152.378790 1.884150 16.499563 76.417012 186.534079 -129.166875 -58.959925 -101.395949 -74.782496 40.193917 -74.924881 3.758656 60.305315 -2.535794 -114.020117 -93.674383 55.556190 34.467007 -50.079809 -46.629578 1.395729 117.351106 -125.665203 -71.795070 -96.669223 33.546226 -15.191891 -212.718390 -11.862697 -69.107003 92.015778 13.034600 -37.949354 -122.269226 32.970939 101.815178 -55.331011 -59.555280 -52.900617 135.389840 67.567649 17.842356 23.664517 -1.261525 35.051585 154.729363 103.421453 -75.774387 -21.052214 4.569468 -81.374957 4.804725 -102.757118 -38.022699 61.624112 -122.627431 22.099123 95.273911 -83.461225 -20.439298 73.832266 -14.237373 78.001121 373.726919 -32.022460 116.178616 53.696304 -152.766114 81.114263 -25.055330 -26.233861 26.959464 81.664208 46.860696 -166.844990 -120.166363 80.777722 138.091333 99.362689 -147.737409 -34.577090 -45.554405 -0.199382 -14.381524 0.173322 47.939861 -21.341785 -93.716228 -35.801019 80.008941 244.678949 -68.613597 -129.392758 67.485416 42.284984 -36.654609 -136.644220 -51.642759 -66.552122 13.834314 24.549706 -9.120011 81.734440 179.836733 -289.602963 127.089449 -19.595913 -47.571834 125.600972 2.772500 -77.354067 -143.058320 9.960291 126.069344 144.359998 7.651466 1.992246 13.157325 -124.167595 -9.138226 12.731602 59.067388 -46.889529 59.691829 25.313252 -113.782794 -98.209354 -45.044949 -22.268497 -43.100964 -34.109812 67.996019 15.108126 -270.533027 166.666623 -11.067524 -40.132495 32.690647 -34.308794 92.216821 -134.162748 -159.807453 69.417567 -23.183808 -49.380354 -70.086087 15.689346 89.157361 6.410182 38.118093 -84.220300 -172.371406 90.811700 -33.733148 101.216863 56.480766 43.471578 126.552714 25.154170 -50.251597 -125.968213 -54.934634 29.952471 -24.842702 -100.143631 -25.724844 -36.693895 124.414437 147.177980 -11.175269 -37.688747 -32.929989 140.059924 -132.565218 -45.134661 107.329084 56.609972 -101.933139 36.070114 123.209858 -126.841081 -68.397594 -79.187041 -31.640624 -39.279832 -120.606436 49.179809 -54.651568 41.724201 51.905545 2.578035 -44.295551 59.473082 26.925050 9.219579 -1.620577 164.294343 185.003904 -88.468582 11.103222 -122.518585 69.736074 -188.915624 -150.140907 51.873798 -11.855261 -68.128731 17.684155 19.808896 112.655443 -12.356125 2.789144 -24.803262 -15.994704 +-52.835999 -30.974897 40.845242 -111.661759 145.832188 54.298976 64.343163 -8.904528 -112.684526 -44.962262 19.358404 -82.623989 -106.136904 164.845773 -43.576906 122.078642 154.035674 9.106173 -45.128585 -35.738280 176.526941 -88.469866 185.956974 81.919263 -170.968144 -11.756387 -7.751298 107.765344 27.974298 118.673524 -14.839292 -52.639585 54.317745 -100.442213 50.630476 -81.756244 65.693463 35.397771 3.125394 -186.890370 9.364395 72.497379 8.600625 -16.767000 -46.041630 80.665349 93.598748 146.593570 -77.206380 41.674085 118.826878 -29.725320 -0.358046 57.976559 -11.381827 15.139382 10.257368 -5.500148 -124.030086 -48.435591 -17.994140 -153.215512 57.044653 109.770301 183.140748 -42.998563 28.759251 127.676557 -26.984037 52.969853 73.355703 25.615776 0.346835 -52.790479 141.766716 -109.483356 -53.121846 -191.291349 -45.663483 -320.797653 -105.048285 -94.510100 104.534039 28.168227 83.018618 -46.893438 176.997660 12.986111 -14.875205 128.872922 148.140731 -131.486211 -60.531897 -185.349083 -65.380095 40.024391 -114.913894 -61.487974 112.789793 11.823922 -114.119293 -50.124792 35.497485 41.001748 -39.648856 -110.505058 -53.662504 149.444248 -148.525938 -119.209998 -100.344446 81.852356 -42.947063 -217.786382 33.399775 -41.415710 68.165869 0.898802 65.663756 -56.012148 17.929267 120.088625 -46.334521 -77.404727 -67.825496 157.595268 74.330335 10.361691 69.723623 44.823948 -11.798141 139.722243 154.674592 -47.676163 -96.662556 40.150439 -58.386925 53.079280 -75.742668 -39.646020 89.768560 -159.070758 -13.495523 68.414633 -43.820133 -17.432508 35.323288 6.708613 104.838560 286.169683 13.767908 107.777126 38.722429 -132.869567 120.612783 -12.409833 -8.185866 76.197629 78.461575 -40.000837 -138.140528 -137.479058 74.683431 105.599540 95.998226 -148.440969 -58.881041 -60.474303 21.664959 -16.937098 -44.667257 110.494698 -0.906890 -97.660796 -18.407394 25.936281 239.964681 -89.158124 -84.464255 138.548719 59.538407 -111.933689 -180.205276 -85.370329 -75.420449 -43.790567 -2.069767 -10.622437 60.972415 184.193840 -202.590018 125.768375 -21.710590 -27.407052 102.487703 -50.556622 -53.010970 -210.861622 -36.324038 98.440367 148.350882 -28.216756 -4.094207 22.688742 -121.785280 55.264532 2.525263 26.744534 10.797303 48.890953 -60.717638 -63.657784 -108.769004 -38.003081 -62.712448 2.499434 5.003710 39.522965 54.716211 -205.445064 137.116262 -85.318866 -61.857735 70.195517 44.512356 133.979412 -99.364436 -162.719653 96.363895 -0.444474 -103.079869 -142.812250 44.646121 95.360476 4.162103 -52.113282 -44.787839 -189.251074 100.806616 -60.315284 71.111739 43.908027 30.048983 156.299053 81.102848 -109.462105 -131.096361 -94.623163 -23.039266 -47.889371 -86.316277 -31.220628 -9.131007 140.203488 103.325862 29.042753 -19.265055 -24.463598 183.186119 -133.681815 -95.803213 149.623658 18.561180 -95.712437 74.785402 170.522235 -131.231689 -78.341730 -97.249078 35.578823 -22.374486 -107.111618 53.839506 -38.483200 46.840951 30.131382 45.336056 -35.100203 49.740545 47.681034 -0.561803 -101.468770 253.356346 182.405124 -132.222427 -21.093886 -103.991253 64.697787 -163.235155 -110.848540 28.910940 39.353453 -26.102905 85.812733 76.257894 121.263832 8.789583 -48.011578 -25.540936 -84.196204 +-11.220369 -10.702875 -3.160573 -25.301816 17.368936 19.987240 9.120556 -14.958892 -28.837560 -3.775483 11.849356 -29.634455 -5.426436 32.905522 -9.810812 26.627129 39.301312 5.398818 -16.304078 -1.482217 30.194326 -3.279364 38.077872 33.763273 -23.855284 -1.792169 -1.866157 13.499462 6.891015 8.118531 1.494468 -13.978861 13.366004 -29.834054 -8.901962 -17.844187 3.950643 9.341230 23.067895 -39.789178 7.398020 3.844534 1.832279 -8.494799 -9.243470 -0.832975 19.595593 25.405466 -4.530504 8.936092 21.293809 3.538260 -3.133455 6.962374 6.636279 5.490768 2.744406 0.201241 -11.112491 -14.279944 -2.690550 -7.549163 5.220047 25.613772 31.716860 3.392520 -1.151211 17.710831 4.325907 6.344939 16.067805 4.975678 -8.494547 0.302322 12.405875 -32.888942 -1.183245 -40.092784 -5.776223 -47.392696 -15.210481 2.731096 20.746977 3.904321 17.305179 0.856918 26.970068 -6.769656 -8.713753 27.457029 30.996684 -25.482647 -12.794917 -17.039701 -16.179522 8.928727 -15.110110 1.982854 13.019699 5.055735 -23.772655 -12.243470 7.966797 14.212503 -10.335249 -20.024473 6.597377 21.618774 -23.835192 -21.890064 0.934078 21.759090 -7.412920 -42.995725 -12.752769 -18.696987 13.111856 0.376678 -10.900053 -25.861635 4.272997 13.855137 -6.868920 -15.229826 -2.829513 16.649021 14.314024 12.904543 2.792770 3.399948 7.287756 44.041232 9.187013 -16.948522 3.717780 -0.935362 -6.017023 13.082564 -15.232150 -14.263120 4.207281 -28.463832 5.588021 22.165790 -16.052624 -6.100781 16.123008 11.165809 6.041052 89.075318 2.088467 33.900975 24.763407 -27.234453 8.164426 -11.487045 1.298539 8.536857 10.656124 0.035020 -38.484761 -25.148839 16.838248 28.804658 21.517088 -29.108801 -7.265159 -2.724352 -0.556914 0.378438 -1.561699 6.908504 1.754915 -21.989894 -6.211326 23.867945 52.806706 -12.559083 -6.243297 16.406295 11.024476 -13.381417 -31.246876 -12.348295 -19.767533 5.846201 9.543830 1.144585 15.979050 35.107364 -40.461706 24.395991 -4.095284 0.355581 20.793783 10.673951 -27.601619 -29.508986 -8.495154 16.888091 30.277002 -8.522684 3.423474 11.432072 -24.964208 -2.350600 6.842413 -1.619739 -6.257350 12.081142 3.626494 -13.517850 -14.593612 8.152060 -7.727297 -6.338823 -2.265671 18.512069 0.991225 -33.905656 26.106794 1.130162 -11.432193 6.601218 -7.542041 27.451869 -25.092669 -27.476200 19.175834 -2.043115 -9.695515 -10.367678 4.356682 17.319901 10.968332 8.434393 -16.084431 -28.061068 19.046386 -10.057298 23.291819 11.419683 -2.792505 15.803195 -9.672997 -7.448360 -25.936195 -17.380292 -2.060257 0.902237 -26.427664 -11.134154 -6.375911 27.881445 18.607782 1.400601 -22.535112 0.935847 28.852234 -24.477115 -7.175175 18.186584 14.243097 -29.835539 5.388165 23.058230 -29.945750 2.749031 -12.322421 -2.730594 -10.523370 -21.608569 17.537228 5.724361 17.202933 -0.683609 4.701999 1.824203 10.904483 10.216406 6.249927 5.348002 35.110673 24.717842 -8.286970 -10.034343 -28.247898 11.813294 -33.688597 -34.557301 14.958297 5.546284 -20.838167 3.081608 5.189892 30.171173 6.562732 -3.354035 -5.379531 3.993439 +-26.444568 -4.725942 23.361306 -64.485524 51.685186 46.615911 20.837622 -29.331520 -58.749627 -20.921550 14.767470 -60.659104 -33.924640 78.850910 -30.791936 38.949783 95.202923 15.493898 -30.934509 -15.998641 65.630019 -12.346680 96.181130 80.123897 -70.653740 -4.294118 13.960794 44.841694 18.915779 42.671107 -10.216153 -41.108927 26.459977 -43.553462 1.110958 -42.360198 10.338394 6.903849 23.115693 -98.413903 13.609986 3.498406 -7.432514 -15.190124 -15.542741 10.355563 66.923469 61.385279 -14.853687 10.485880 54.469540 19.720796 -6.593167 18.285678 19.918752 10.828970 30.921125 -2.465407 -26.796489 -25.565995 -12.499676 -32.412303 7.720607 69.145095 80.801361 8.620902 1.165526 28.048337 0.977555 18.975172 28.919547 14.131560 -3.763114 15.750683 34.806601 -69.805398 1.794071 -108.292368 -14.541202 -120.599633 -41.486641 -18.999395 39.830777 7.230971 32.833197 3.019254 72.940016 -4.351713 -4.780225 51.679932 86.783652 -58.379754 -28.846810 -46.968424 -41.542967 21.723109 -38.589360 4.973246 16.820328 11.751008 -56.837862 -36.852253 20.831636 24.650879 -27.314153 -30.875213 3.398838 61.220210 -63.855035 -37.834581 -25.289726 35.677427 -11.346668 -108.759267 -26.801967 -45.182814 50.106229 -0.422992 -19.443617 -59.182332 14.390194 49.786043 -21.213927 -30.908158 -19.867915 53.125116 35.223096 16.723278 5.158085 3.513612 16.189657 87.110520 40.544482 -36.601416 -4.136934 0.043888 -28.196977 13.303433 -42.293437 -19.390301 17.216680 -60.798460 9.985951 53.898491 -38.386558 -19.920448 29.693222 4.072558 31.549176 209.389725 -7.725518 65.522674 39.245899 -73.562682 22.178044 -16.194126 -5.609841 18.982402 33.821239 12.445203 -88.792611 -61.736741 40.920358 69.528793 49.900096 -70.322945 -10.695730 -16.882498 -4.817460 -5.299627 -0.214989 18.800712 -9.717885 -47.749383 -19.276686 48.308886 122.036483 -31.071956 -52.215207 36.876562 21.059026 -26.118200 -63.295577 -25.362278 -27.364947 12.046749 22.085906 -2.470178 42.171882 88.798931 -123.848556 62.427886 -7.355550 -13.328036 56.136392 7.102216 -46.280561 -62.243355 -3.300257 54.679273 72.175598 -7.008687 -0.210948 15.636326 -64.320836 -4.405137 12.094395 17.684414 -20.612250 30.580629 14.365318 -48.539249 -47.823558 -7.509561 -14.347851 -10.964269 -15.736461 37.242161 -5.554023 -118.161922 79.531905 -3.793811 -21.178729 15.096124 -19.565391 58.067359 -64.819268 -77.251833 40.602656 -7.506571 -27.423106 -32.267178 8.001231 47.555872 14.616655 21.237738 -47.167770 -71.960787 43.157904 -22.108502 53.357841 28.232574 13.148727 56.529746 -6.158855 -18.639265 -63.199655 -33.860087 13.710305 -2.898000 -58.658567 -17.884311 -17.773494 64.340949 62.253276 -4.037229 -34.796677 -6.453141 73.673663 -64.482289 -25.124830 45.961792 32.487820 -61.630911 19.769174 57.124875 -64.956257 -20.496191 -36.027875 -13.511156 -23.085999 -63.281676 35.333195 -8.441082 34.865816 15.402809 11.921652 -14.067099 28.820240 17.040435 11.458118 6.274686 82.553743 82.393961 -35.266497 -7.378112 -66.225901 36.250698 -90.352911 -78.948048 29.553371 -1.752103 -33.001096 9.623920 -0.206500 65.749099 7.255777 -0.543066 -10.019020 -0.002485 +-4.258007 -3.400746 -0.445177 -10.294917 6.844794 8.161260 3.235478 -6.571741 -10.218840 -0.990868 4.229863 -9.902334 -1.277429 11.929062 -4.392047 9.748469 14.263614 1.941845 -6.036775 -1.252124 11.338572 0.347848 14.355693 12.547365 -9.627161 -0.911100 0.872759 5.074671 3.729586 2.907040 -0.060429 -5.185349 5.271166 -10.646164 -3.002224 -6.758280 1.808630 2.892448 8.965394 -14.132811 2.853193 -0.723003 0.010453 -2.931923 -3.370763 -1.012143 7.272272 9.509372 -1.867961 2.766763 8.689152 3.116885 -2.062286 2.596213 2.282073 2.464211 2.035273 -0.346992 -3.114690 -5.661634 -0.804657 -1.465352 2.046031 10.158604 11.996323 1.476825 0.089769 6.763959 2.263902 2.181268 5.794971 1.739199 -3.486775 1.194135 4.031796 -13.656465 -0.257280 -16.139783 -2.361437 -16.240340 -5.483646 0.336435 5.787154 -0.308762 6.814200 1.277871 9.931420 -1.689359 -2.777502 8.914669 11.325318 -9.786439 -4.456435 -6.318277 -6.136630 3.253846 -5.713198 1.556128 3.642843 1.643967 -8.556254 -5.406703 2.599839 5.537598 -3.984926 -7.419897 2.560882 8.123322 -8.267178 -8.083486 0.668636 7.907835 -3.455976 -15.902108 -4.827985 -7.987782 6.589560 -0.838391 -3.401922 -10.545497 0.954867 6.473299 -2.768905 -6.129442 -0.188884 5.374271 6.481190 4.571626 0.446641 0.506308 2.703663 16.836101 3.534802 -6.611767 1.028071 -0.713483 -2.559406 4.149602 -6.568199 -4.374227 1.743493 -10.157689 2.299554 9.534897 -5.791338 -2.406506 7.974154 3.360447 2.845988 33.967191 0.572388 12.058087 8.766642 -10.516363 1.304979 -4.278996 0.396807 3.446363 3.818841 0.018172 -14.968979 -9.629030 5.925336 10.407785 7.855086 -10.697437 -3.045217 -1.587732 -1.105359 -0.312548 -1.237593 2.329303 -0.594499 -7.828966 -2.612299 8.800713 18.825062 -4.613833 -2.614631 5.787895 4.788954 -5.334193 -10.104792 -5.004516 -7.369889 2.735401 4.206728 0.688643 6.622760 13.140496 -15.848432 8.658991 -1.247499 -0.153182 7.168062 3.998028 -9.841839 -8.927642 -2.022165 6.422240 10.332171 -3.744659 2.168902 4.656167 -9.352481 -0.937269 2.359220 -0.149179 -2.574352 3.781312 2.985477 -5.637385 -5.744278 3.891491 -2.510638 -2.732794 -0.713417 6.863991 -0.596615 -14.096589 10.001747 0.134577 -4.060141 3.235164 -4.152853 10.677065 -9.811120 -9.887650 7.389760 0.222036 -1.617931 -3.385708 2.007481 7.364501 3.319236 5.270720 -7.050902 -10.138672 5.534676 -3.611239 8.015227 4.137991 -0.214279 5.751242 -6.929453 -1.829903 -10.385819 -6.416120 -0.309226 1.960191 -10.195961 -3.935479 -2.252980 10.516859 7.448626 -0.144335 -8.128529 0.646361 10.283006 -10.602232 -1.750149 6.248219 7.129857 -11.441414 1.162757 7.995478 -10.958382 0.190061 -3.738276 -1.405261 -3.629430 -8.336953 6.875982 2.207642 6.946359 -0.099421 2.250780 0.642123 4.713751 3.579523 2.932423 2.581410 11.926761 9.788395 -2.868027 -4.494465 -10.521758 4.413431 -12.768424 -13.281192 6.008621 0.233573 -7.530503 1.411888 0.400181 11.811526 2.018788 0.248734 -1.379986 1.084911 +-1.202718 -1.655937 -0.243321 -2.441079 1.754300 0.485827 1.104061 -0.681064 -3.538523 -0.570740 0.825548 -2.550501 -0.360927 3.665458 -0.521378 3.147556 4.964124 1.534920 -1.186721 -0.417813 3.965786 -2.879139 4.242615 4.018452 -2.304312 -0.143627 -0.139833 1.674873 0.371006 1.595557 -0.416543 -1.406061 1.399301 -4.144687 -0.011605 -3.377991 0.557586 1.966370 2.935208 -5.254258 0.939048 0.690829 1.613556 -0.916455 -0.990573 1.169673 1.512272 2.647760 -1.169213 1.581061 2.811921 -0.551967 -0.124524 0.913351 0.750259 1.343391 0.457911 1.066451 -1.768740 -0.645274 -0.398812 -2.014909 1.322028 2.094957 4.177968 -0.268048 0.074630 1.638657 0.335160 0.728696 1.987221 0.121859 -0.625890 -1.460104 1.636099 -4.971547 -0.631366 -7.672298 -0.683166 -8.516112 -1.887920 -0.016316 2.824738 -0.471937 1.639054 -0.132995 2.682532 -0.801170 -0.541621 2.511907 2.938405 -2.662208 -1.613923 -2.149405 -1.684980 1.225405 -1.624316 -0.851620 3.375133 0.013577 -2.381583 -1.698121 2.304932 1.384582 -0.894538 -2.381961 0.520684 2.800741 -2.656714 -3.077330 -0.944710 1.978328 -0.848198 -4.687980 1.447631 -2.360388 1.376472 0.607988 -1.176815 -2.401073 0.559746 1.364185 -1.090723 -1.568225 -0.929475 3.170940 0.763005 0.980099 0.691861 -0.101184 -0.018355 4.500617 1.706033 -2.190830 0.078320 0.769633 -2.031143 1.100233 -2.899677 -2.284082 2.220958 -3.369815 0.170232 1.029299 -1.960325 -0.211830 4.201733 1.307654 0.959378 9.829964 0.357215 4.019570 2.278414 -2.562619 3.145107 -0.334559 0.446826 1.266001 2.106234 -0.572898 -5.181110 -2.689585 1.007435 2.775672 2.548866 -4.211841 -3.123991 -1.105047 0.323214 0.953182 -0.344621 0.889570 0.050876 -2.445255 -0.409415 1.379982 6.742148 -1.377557 -0.260485 1.388882 1.436190 -2.648068 -6.027935 -1.317570 -3.424137 0.294674 -0.990196 -0.222844 1.514512 3.718423 -6.794813 2.842961 -1.412594 -0.041429 2.700762 0.747119 -3.264368 -6.864505 -0.937665 1.408599 4.515172 -0.532000 0.936545 1.618781 -2.522146 -0.128649 -0.058289 0.138277 -0.631282 1.216908 -0.652230 -1.515519 -1.151354 0.724362 -1.130279 -1.442961 0.389649 1.699308 1.837977 -4.998919 2.163086 -0.526003 -1.129480 1.336139 0.411997 2.361022 -2.566260 -2.945816 1.816722 0.267637 -0.648198 -2.334286 0.518239 2.071751 -0.147640 -0.569214 -0.557064 -4.287655 2.014579 -1.944210 2.217592 1.148746 -0.855917 2.095662 0.683906 -1.233532 -3.824742 -0.759024 -1.828321 -1.312499 -2.542496 -1.558840 -0.592514 2.909007 2.296761 1.038550 -1.495500 0.199531 4.227967 -2.999875 -0.875365 2.630018 1.245347 -2.708312 0.975334 3.036784 -4.506443 -0.228984 -1.460666 -0.131325 -0.062126 -1.668558 1.868820 0.016695 1.448238 -0.468388 0.519075 0.126701 1.219167 1.428536 0.328891 -0.398278 5.031650 4.081253 -1.348561 -0.810299 -2.494012 0.662896 -3.368299 -3.400730 0.435597 1.826105 -2.878105 1.042290 1.926841 3.636505 0.214462 0.105675 -0.579493 -0.343085 +-1.657736 -1.504943 0.600640 -4.680723 3.404208 0.773029 1.811379 -2.716816 -4.567241 -2.524008 2.929688 -5.838867 -3.038446 5.197944 -2.612606 2.225840 6.297197 0.293430 -2.041431 -2.382474 3.379773 0.050330 7.225734 6.697736 -5.695943 -0.246492 -0.126965 2.875022 3.023703 -0.743698 0.612886 -2.140703 2.420809 -2.897355 -0.181738 -1.397946 0.401842 0.071414 2.544606 -6.141328 0.589414 0.523549 -0.876581 -0.256950 -0.205243 3.799394 4.146308 4.377162 -1.674393 2.685707 5.171815 0.605494 0.013484 1.034444 -0.021247 -2.250825 1.725962 1.067208 -2.020352 -1.270590 -0.324423 -2.412905 -0.161760 5.275798 5.576616 0.423004 -0.708862 2.170435 2.352191 1.873179 3.045901 1.644100 1.016316 1.392533 3.125046 -4.619906 -0.220801 -10.697039 -0.902602 -11.557878 -3.740690 -0.289021 5.763546 -1.379554 1.017082 -0.977852 4.738488 2.600796 -1.252126 3.720382 6.158789 -3.082418 -2.535927 -1.851021 -2.989739 2.016681 -3.339887 1.971614 1.596151 2.864143 -4.457493 -1.466552 1.415865 0.503663 -2.080358 -1.511158 0.718968 3.791533 -4.525708 -0.750327 -1.198304 2.746194 1.360612 -8.025785 -1.230486 -3.148872 5.418858 0.387449 -1.745797 -1.532196 0.098411 1.175254 -1.965477 -0.182563 -2.662225 3.755251 3.652617 2.489675 0.042527 1.017643 2.282687 5.892508 0.956582 -3.481854 -0.163472 -0.675926 -1.449943 2.784589 -3.147781 -1.501552 4.384741 -3.700336 3.101027 1.874973 -2.699269 -3.434795 4.107679 0.748695 0.831133 10.455253 0.572236 5.666001 4.375539 -3.752079 -1.028639 -1.334133 0.871341 2.101911 2.350907 -0.040509 -3.229376 -4.321550 3.421431 5.441735 3.117851 -6.328317 -0.321506 0.995446 -0.032149 -1.708752 0.447685 1.548800 0.416452 -2.954404 -1.153051 4.807384 7.037497 -1.233713 -3.270221 1.305832 2.685773 -0.016272 -3.525649 -1.448636 -0.431428 1.402069 2.275836 2.210897 2.755911 6.229875 -10.660047 3.805497 0.848687 1.048699 2.755500 2.244963 -5.281288 -5.907284 0.056718 2.522930 3.667501 0.421203 0.076442 2.403687 -4.172552 -0.342064 1.060046 0.283185 -1.366442 1.867587 0.960261 -1.529931 -3.203259 -1.014970 -0.748645 0.367986 -0.869875 3.696619 0.684449 -9.171776 4.561502 -1.043286 -3.387849 -1.399828 -2.787267 4.804913 -4.941139 -4.155419 2.309061 -3.063159 -4.432961 -4.036435 0.708495 1.401529 -0.110481 2.361709 -3.112247 -2.479792 5.207208 -2.832129 4.065185 2.267051 -0.134821 4.448696 -0.954401 -1.000411 -3.856972 -1.148397 2.568630 -0.180292 -4.719267 1.392576 -0.562719 3.151105 3.924243 -1.044882 -3.412225 0.914886 4.272960 -4.433818 -1.941331 2.551098 3.858752 -3.587513 4.111124 3.302897 -5.230943 0.499716 -3.293478 -2.268669 -2.158156 -3.867055 3.171476 0.403448 2.742598 0.199006 1.361254 -0.725051 2.522251 0.431521 0.207333 0.908514 5.762798 8.262051 -2.901473 -1.192915 -6.176324 3.365499 -6.190860 -7.083816 2.881569 -1.069794 -2.952507 0.307528 -1.031165 5.015600 1.991984 -2.613982 -3.167378 3.400807 +-15.330582 -10.272946 14.678832 -37.960326 42.860732 14.825010 17.573659 -4.949228 -33.862285 -13.480399 5.767429 -24.616010 -27.162139 47.979688 -14.985918 35.536500 45.777420 2.470089 -13.048719 -12.603626 51.845757 -22.591653 53.936716 24.611800 -52.113403 -3.961982 -0.087341 31.796896 12.981274 34.557821 -3.385792 -16.673472 14.802635 -26.679736 16.311116 -25.973601 19.183533 11.652936 3.128084 -55.255153 4.064715 18.899037 3.397494 -4.339060 -11.659292 24.095611 26.942764 43.161412 -25.237645 12.448770 38.467318 -2.852205 -1.360333 16.332575 -4.700394 3.711418 7.301734 -4.322893 -32.566217 -14.177945 -4.802706 -40.210220 18.526472 33.899769 54.385529 -13.070940 8.660102 36.011598 -2.779247 15.112978 23.551114 7.871643 -1.358090 -13.952475 39.544322 -35.956862 -13.401100 -62.139023 -11.204557 -96.868567 -29.355587 -26.015330 29.057228 6.920651 22.153833 -11.949070 51.707904 3.914679 -4.012334 36.321648 41.358352 -36.073432 -16.516733 -53.186014 -22.118139 12.522475 -32.666399 -17.096525 29.956370 6.073868 -31.747874 -14.462373 9.047293 11.084371 -12.340456 -31.281501 -14.138532 42.702653 -43.425894 -34.026170 -25.424006 28.004865 -12.805936 -63.470607 10.193680 -17.744702 22.104433 -3.307860 19.346848 -16.517641 3.546852 34.806911 -15.339183 -19.561242 -24.835917 45.278723 24.471645 4.954114 17.227420 10.253312 -3.579932 39.722570 42.387659 -17.322000 -28.136031 11.922309 -16.322418 13.500855 -25.776551 -10.486738 29.364936 -45.105665 -4.225513 21.023387 -12.980683 -5.732458 13.478341 -0.010848 30.877906 89.284959 3.187789 31.586585 13.305674 -39.057801 31.526980 -1.382590 -1.196720 23.563466 22.346030 -11.224583 -40.935611 -40.982225 21.105496 30.466966 28.408751 -42.376487 -18.237410 -16.439419 3.410431 -3.363515 -14.362202 30.409490 -5.504023 -28.928442 -5.973691 7.036153 68.247292 -21.373506 -23.521524 37.392503 22.860973 -35.237212 -48.387767 -24.346101 -23.988782 -10.268024 1.391520 -2.858476 20.395289 53.913596 -67.548815 36.808014 -3.901614 -5.402959 28.303858 -13.902879 -15.625117 -64.169638 -9.885638 27.706861 42.849127 -11.749724 2.996824 9.700392 -35.215811 16.684622 -0.203927 7.551834 1.108900 11.910957 -13.231090 -19.401763 -30.058311 -8.309783 -18.581796 1.196514 0.392742 12.459852 15.383847 -63.486682 39.330095 -25.720190 -17.082172 21.753257 9.060332 41.483204 -31.006909 -43.936145 27.397591 1.845581 -26.160160 -41.317834 13.432375 29.868937 -2.934787 -8.867284 -15.947031 -56.099447 25.844948 -20.717092 19.404845 13.732571 7.386258 43.194518 16.723616 -26.759795 -40.206392 -26.875738 -6.442615 -10.313723 -24.905917 -6.652778 -2.361593 40.234163 30.693391 5.873193 -5.789436 -4.325647 51.381560 -40.498673 -25.341030 41.182888 6.115590 -29.332121 22.055896 47.190273 -39.267773 -21.569858 -27.917314 10.677117 -5.242762 -30.135639 19.226383 -8.950137 15.097188 7.101411 14.112081 -11.650697 16.291239 14.231457 -0.596289 -26.807148 72.520333 55.012461 -34.743657 -6.242336 -30.634058 18.127011 -49.007397 -33.465317 7.878846 6.704509 -8.774915 25.748826 17.827630 38.339512 3.396532 -6.918643 -5.913925 -21.224601 +-2.946707 -3.584894 -1.178656 -6.271264 4.259997 3.009696 2.298605 -2.947265 -7.787485 -1.177179 2.981837 -7.541562 -1.217195 8.432954 -2.364485 6.489461 10.753799 1.848026 -3.646714 -1.094705 8.099992 -2.091012 9.598066 9.023497 -6.158434 -0.964485 -1.260627 3.831820 1.879883 0.533882 1.666047 -3.271248 2.973831 -7.621250 -1.730277 -4.888652 1.950238 3.367103 5.856311 -10.800549 1.969325 0.685060 2.215491 -2.135765 -2.608962 0.925544 4.086792 6.668267 -2.094824 2.323833 6.374374 0.732672 -0.988238 1.857820 0.155501 0.542005 -0.334219 0.191664 -3.319010 -2.963489 -0.219716 -2.179606 2.082733 6.252408 9.285229 0.972131 0.130165 4.654612 1.702320 2.078470 4.644507 0.653342 -1.618184 -0.966439 3.651311 -9.196474 -2.127332 -14.403654 -1.255946 -14.227169 -4.070140 0.411569 6.454193 0.394742 3.361373 0.741360 6.375006 -0.937637 -1.846550 8.393842 7.419934 -5.533975 -3.723986 -5.365663 -5.026115 3.243068 -4.014550 0.743807 4.164599 2.654344 -5.879785 -3.695952 2.488311 3.013232 -2.259212 -5.866163 1.743480 5.567863 -5.166691 -5.451915 0.055103 6.392946 -1.098050 -10.428365 -1.234875 -5.678532 3.048240 0.562865 -2.181591 -5.108082 0.319354 2.480344 -2.412847 -2.921276 -2.471242 4.726101 3.034056 2.990613 0.800922 0.872519 1.410081 10.121403 1.548000 -5.067275 0.452414 0.444855 -1.989388 3.017406 -5.701425 -4.133477 3.536512 -7.091891 1.948035 4.030509 -4.116610 -3.319585 4.913555 2.398028 2.161715 20.309461 1.560340 8.390896 6.091044 -6.126765 3.880221 -2.562587 0.937872 2.674681 3.444379 -1.217961 -9.196999 -6.831277 3.387830 6.710791 5.651460 -7.046650 -4.324505 -0.640176 -0.143400 0.430253 -0.629508 2.498982 -0.595081 -5.086794 -1.209608 6.035518 13.308255 -2.071775 0.566590 3.845972 4.635857 -3.769928 -9.480070 -3.078938 -5.583324 1.163992 1.801587 0.854519 4.185094 8.997890 -12.182898 5.930488 -0.521800 2.062630 3.735508 2.288548 -7.522085 -10.535218 -1.519185 3.819458 8.554560 -1.855597 1.263673 3.442262 -5.994191 -0.231627 1.554569 -0.305025 -1.150636 2.616970 -0.811019 -2.830983 -3.668065 2.710555 -3.381633 -1.316851 -0.030889 4.443881 2.009387 -7.520411 6.076131 -1.239250 -2.792046 1.546959 -2.279084 7.297285 -6.167049 -6.341731 4.560308 -0.525211 -2.283819 -4.191959 1.503532 4.515775 1.393489 2.038940 -2.857796 -7.951663 5.015861 -3.214666 5.347157 2.708875 -1.448761 3.559312 -1.026387 -2.118072 -7.420074 -3.905250 -1.485220 0.013766 -6.710541 -2.203094 -1.110348 6.647342 4.689878 0.399311 -6.181184 0.783046 8.276819 -5.908873 -3.009757 4.819669 1.658323 -6.771057 2.337408 6.091377 -9.405220 0.673444 -3.699657 0.550311 -1.418058 -5.363930 4.139616 1.491687 4.252713 -0.911671 1.467851 0.906480 3.169268 3.226660 1.548996 0.481715 10.622931 6.454046 -1.840615 -2.294553 -7.436213 2.399083 -8.431345 -8.707558 2.957279 1.983744 -5.748864 1.796354 1.449028 7.725842 1.032855 0.169318 -2.237387 1.171743 +-4.580314 -4.703937 -1.548148 -11.360893 7.188406 8.288120 3.324924 -6.050172 -11.619143 -0.971868 4.759272 -10.296979 -1.050239 12.614939 -3.912729 10.455034 14.965428 1.358249 -6.340174 -0.979360 12.769689 -2.291357 14.558592 12.410928 -9.531411 -1.208941 -0.077817 6.276605 2.809401 3.106149 0.969667 -4.549935 3.712952 -11.875378 -3.268117 -7.043434 2.307368 3.931274 9.389899 -15.251062 3.138175 0.619993 0.774269 -3.361148 -4.131087 -1.509333 6.536691 9.915768 -2.412221 2.463920 9.717542 1.874805 -2.146780 2.542832 2.346855 2.457781 1.755545 1.182249 -3.230383 -5.758320 -0.604753 -1.427392 3.333859 9.857535 12.489226 0.964217 0.100364 7.416111 1.834599 2.796990 6.530860 1.275065 -4.858317 -0.374646 4.880686 -14.327189 -0.998484 -17.906636 -1.643196 -17.027458 -5.627205 1.352579 6.703713 0.760558 6.798662 1.336374 9.781578 -2.366611 -3.496093 10.325792 10.726732 -8.614316 -4.622802 -7.350173 -7.440175 3.585393 -5.482628 0.307049 5.539957 2.685384 -8.630053 -4.255232 3.390986 5.968723 -3.932489 -8.733227 2.473267 8.428513 -7.679297 -8.651270 1.764509 10.476156 -3.506221 -16.743892 -4.794050 -9.227225 5.033317 -1.340334 -3.066195 -10.107855 0.828289 6.148213 -2.979761 -5.787947 -0.559450 6.749444 6.270693 4.783450 0.803877 0.441731 2.197359 16.462865 3.083416 -6.655904 0.720103 -0.277457 -2.780198 4.712057 -6.742618 -4.844042 2.058600 -10.463384 2.575445 9.019340 -5.418401 -2.659337 8.383418 4.184549 2.622739 38.535076 1.158811 13.515103 9.505232 -10.268910 3.935764 -3.481934 0.733061 3.860469 3.740300 -1.518034 -17.109986 -9.785470 5.972991 10.014593 8.166711 -11.901040 -3.983784 -1.302986 -1.225448 0.634071 -1.455835 2.417449 -0.508126 -7.840294 -2.525273 9.156677 21.513401 -4.031728 -1.855240 6.806310 6.011799 -7.353003 -13.466804 -5.028820 -8.657823 2.220575 3.167519 0.471970 6.839895 13.254431 -16.934247 8.590810 -1.155211 0.540061 8.216073 3.381990 -10.494957 -13.806450 -2.960280 5.991155 12.407405 -4.421818 1.948448 4.856873 -9.056273 -0.329019 2.544089 -1.158187 -2.096774 3.998134 0.683573 -5.141395 -5.406612 4.213392 -4.377647 -1.593530 -0.650383 6.510444 -0.446662 -13.167859 9.938008 -0.178576 -3.790834 2.938907 -3.358733 10.921512 -9.047389 -10.171702 7.768991 0.722597 -1.579338 -4.610711 2.225025 7.345869 3.549788 3.994927 -6.535577 -11.802042 5.780819 -5.190267 8.387683 4.077778 -1.233962 5.138980 -4.354942 -2.063651 -11.458841 -6.863917 -1.595753 1.900367 -11.105855 -4.499709 -2.227838 10.625803 5.987600 0.609913 -8.667429 0.826325 11.851270 -8.950939 -2.502823 6.258692 4.778747 -12.615955 1.184549 8.516877 -11.871440 0.968999 -4.468469 -0.654420 -3.801823 -8.917446 6.983247 3.664986 7.404104 -0.990139 2.787455 1.137432 4.163058 4.463610 3.198720 1.808509 13.853279 9.810977 -2.580752 -5.283170 -10.639704 4.184408 -12.443431 -13.044133 5.603159 1.511426 -7.939757 1.917070 1.899371 12.506281 2.073018 0.642407 -1.005875 0.868443 +-5.697802 -7.367711 -5.297908 -12.606582 8.991323 11.039230 5.521452 -10.576984 -15.220549 0.806072 8.799997 -17.438110 -0.648159 15.996078 -5.015200 16.084870 19.591673 1.846024 -9.839574 -2.086121 15.567724 1.984044 21.773278 17.826170 -11.414358 -0.914452 -4.024967 4.846334 4.661722 -2.410362 2.463540 -3.831498 8.943533 -18.302386 -7.262712 -6.002734 2.421247 4.706238 16.342711 -18.282173 4.143895 -2.050880 3.457472 -3.974393 -5.882520 0.581554 8.793333 13.022119 0.066995 5.063588 11.430501 -0.010033 -1.129533 4.044337 2.752150 1.945530 0.776636 -0.763826 -5.543229 -9.192648 -0.715450 -0.295147 2.221434 12.560779 15.912763 3.204478 -1.276460 11.854748 5.095565 3.403030 9.504414 2.479399 -5.701124 1.060371 4.876907 -19.400831 -1.391382 -20.484047 -4.544774 -20.657138 -8.027585 3.544945 10.763770 -0.701862 10.013804 3.099537 12.478148 -1.107445 -6.728363 13.187678 15.448131 -13.991007 -7.260028 -6.733238 -6.201965 3.533669 -6.965930 4.626669 9.239980 4.639028 -12.729156 -4.529006 4.263742 7.350180 -4.922069 -11.819103 4.936153 9.829225 -8.600594 -10.954093 4.287188 12.925688 -3.768059 -21.926629 -4.544807 -9.812678 6.718567 -0.252612 -5.435243 -13.785303 0.836846 5.371455 -4.140368 -7.681380 -0.194241 6.105307 8.952993 8.239577 1.042316 4.564333 4.377223 25.498035 0.656779 -9.431518 3.145319 -2.316168 -0.983784 9.358928 -7.188798 -8.108746 1.728055 -14.994955 6.443668 11.756960 -7.553977 -3.911966 9.397254 9.013879 1.172200 41.464039 2.673972 19.240378 14.524931 -12.908066 2.263277 -9.299585 2.878328 4.443037 4.505434 -3.003053 -19.552605 -14.104078 8.895793 13.907187 10.227844 -16.284526 -3.266532 -0.187535 -0.604813 -0.865204 -1.828295 4.092624 1.628407 -9.447145 -2.560507 14.246625 28.533455 -6.885236 2.894388 8.773143 4.522464 -4.662855 -16.261716 -8.258867 -9.568866 3.604184 5.577389 4.668194 7.921509 17.563711 -16.187960 11.319883 -1.672120 2.939793 10.961017 7.972705 -16.706499 -13.070279 -5.447582 7.363202 13.711744 -5.571505 0.021346 7.569016 -12.264746 -1.274852 3.954641 -3.233052 -1.994567 4.868372 1.913120 -4.867006 -5.978426 7.423741 -3.971774 -1.326816 0.922121 10.888034 0.633439 -14.903108 12.100982 0.274707 -7.542324 2.969283 -6.397327 15.713299 -10.879026 -10.760069 9.895910 -1.722614 -3.684395 -5.803004 3.650845 7.267663 4.636385 8.582286 -9.414245 -11.274543 10.160653 -6.136640 11.620020 5.813107 -2.430931 5.145869 -10.958995 -4.564157 -13.119945 -10.524491 -3.679769 3.031436 -15.246825 -2.654083 -2.603640 14.138918 7.334574 1.290821 -14.393937 2.089516 13.202560 -14.916853 -4.031223 8.948090 8.876726 -17.390611 3.092367 11.087345 -15.798998 3.925836 -4.475824 -3.178780 -6.226518 -11.275369 9.353988 6.102863 10.188399 -3.381449 3.169867 4.809235 6.874229 4.419633 4.919246 3.934517 18.081156 10.894718 -2.347564 -8.654149 -15.521944 6.683230 -16.173475 -19.211632 10.269475 3.943348 -12.745268 1.373647 2.003411 17.064041 3.526445 -5.115615 -5.131339 3.751909 +-5.454293 -7.004516 -30.203362 -13.111574 8.238047 38.198948 4.776118 -16.472333 -30.606499 11.293429 2.997627 -47.338933 -0.971014 18.050281 -1.437585 28.896173 30.786903 5.945146 -20.195119 0.818697 48.930939 -4.364703 48.434973 24.319669 -9.604781 -0.602748 -2.330141 1.130477 -0.942021 27.527700 -0.102638 -28.451531 18.072891 -48.536765 -0.875455 -22.311601 2.163260 9.191217 43.950104 -32.225635 5.197180 7.080818 18.079970 -6.046150 -5.133073 19.596128 27.560880 12.363234 -4.902416 4.092757 28.060338 -0.726029 -1.308778 3.810932 3.986189 6.745774 18.277813 10.494920 -8.292667 -17.935274 -1.458092 -5.506167 6.447625 9.834463 38.594436 -0.186832 -0.287552 8.237473 2.093338 3.404875 8.159495 0.229447 -4.726286 -6.599508 6.367980 -12.359809 -3.314446 -58.359888 -1.001790 -52.243882 -8.777809 1.333530 12.648282 4.449205 7.696581 -23.030138 12.283372 -6.859861 -2.152576 44.570952 32.115955 -10.923715 -7.005129 -12.543963 -9.394547 6.036745 -6.094727 -5.596838 35.038327 -0.233855 -11.426834 -6.538982 2.328880 7.294450 -4.111930 -28.651704 4.079907 12.835248 -10.690741 -14.523209 -1.442969 31.918638 -4.468063 -52.072044 -41.073190 -18.621050 -16.892539 1.967820 -5.936435 -30.871481 2.668791 5.753822 -5.658764 -7.218417 11.434414 21.587957 20.906134 4.223891 3.387061 -0.279842 0.776058 49.938398 -7.585228 -10.099771 1.811574 3.312356 -13.947650 4.104104 -19.650836 -11.202627 7.370577 -29.560957 30.343366 6.791702 -9.059881 0.011727 17.746300 6.032945 4.262028 117.983815 0.882287 49.872099 29.589456 -30.687591 22.506863 -0.687528 -0.111334 3.575368 8.357096 -1.567782 -42.467860 -12.375288 5.573487 13.213565 12.571420 -39.464100 12.902385 -4.812067 -0.526827 4.502580 -1.220997 3.298749 1.081021 -12.501414 -2.503880 25.403107 98.681658 -4.952610 6.509792 7.878273 9.404090 -19.641564 -39.708497 -5.994988 -18.401908 0.930211 6.043061 -2.370348 8.393604 17.622804 -52.185585 13.829843 -4.640936 -0.545372 37.672873 20.214990 -45.427495 -31.731726 -6.090403 26.144835 29.461131 -5.489654 4.578143 5.314974 -11.087237 -0.642428 0.923980 -0.607311 -2.777479 5.373507 -4.871362 -26.291462 -4.514122 -15.114936 -7.737989 -6.768092 -19.341542 7.152120 9.801051 -49.953422 29.674635 -0.592642 -3.204084 -7.383502 0.846050 15.343463 -11.223974 -13.686855 8.778097 2.389156 -2.468156 -15.253234 2.025155 10.431805 14.992469 31.044193 -16.475780 -40.730338 23.335638 -15.213259 11.788823 5.549663 -4.179271 6.757033 -15.279085 -5.019350 -53.954545 -28.356429 7.434910 -3.159531 -29.440413 4.640503 -3.613330 13.996343 8.952185 3.870956 -40.851274 -20.484448 25.823409 -14.116041 -2.420523 11.704590 13.145640 -54.425109 1.053002 14.669021 -26.825070 0.118485 -7.702718 -5.315537 -1.883936 -8.413918 7.267556 1.948378 6.221264 -1.852967 0.354494 0.583603 4.289354 8.067165 0.967636 -0.706140 43.666207 21.833474 -4.208131 -3.823773 -25.354010 2.729780 -15.559813 -44.251423 2.405756 7.333716 -27.829746 3.824909 15.851312 46.665806 0.067393 3.390502 -1.567923 -1.611856 +-11.222412 -11.938421 -2.887448 -25.234103 15.954915 15.079369 8.449766 -15.930824 -27.329398 -2.705912 12.542181 -25.027831 -2.577508 30.038686 -10.139055 25.317421 36.459758 4.908532 -14.626221 -6.483401 30.413707 -1.223347 36.828210 32.536425 -24.422973 -2.776093 0.881217 12.138508 11.907452 1.634439 1.989164 -9.913870 13.454089 -30.848504 -8.332611 -16.381458 4.991340 10.295710 25.694952 -35.307285 7.587091 -5.722702 1.871367 -6.676569 -10.005755 2.683017 16.365158 24.315626 -6.295475 9.737131 24.529139 3.547004 -4.882084 6.373786 3.274038 4.846380 1.905656 3.538460 -7.763874 -13.359976 -1.907110 -3.623839 7.165803 24.826755 30.476290 3.544999 -1.131497 19.171005 8.009013 6.469566 15.449316 4.706602 -6.595825 0.295238 12.880342 -38.157861 -4.255563 -50.001427 -6.560955 -46.494287 -14.234675 2.614612 17.824100 -6.235340 16.546319 5.420007 24.074333 -3.009333 -9.074115 26.579141 27.811925 -23.767321 -11.775437 -15.377119 -15.693712 8.151551 -14.004272 5.717129 11.993751 6.294377 -22.125349 -14.837169 7.172907 12.614055 -9.494885 -21.191528 6.934979 18.587318 -19.778877 -19.946642 0.648541 20.990974 -6.098028 -39.522995 -8.534697 -20.494543 20.654173 -1.417334 -9.564348 -24.493399 1.558901 13.872946 -8.385721 -14.944474 1.530412 13.790382 16.248802 13.026299 1.332787 2.177874 6.255945 42.135957 8.940621 -18.171096 2.455614 -1.229155 -6.971500 11.544310 -18.211325 -12.571182 10.355957 -25.235056 8.478485 20.739791 -14.370116 -9.185732 28.077605 9.554744 5.700281 80.310361 3.219063 31.271025 23.712290 -22.947721 4.832006 -12.010187 3.925077 10.598441 10.214989 -1.853299 -37.234111 -24.976007 14.909706 25.056014 19.792318 -30.479411 -12.313589 -2.416145 -0.722650 0.667113 -3.479379 6.234676 0.085353 -19.482843 -5.278403 22.625436 47.955470 -12.222812 -2.626655 13.676787 12.730858 -12.399330 -30.163828 -13.331058 -19.676152 6.264752 11.739974 4.437844 16.952206 33.079930 -43.120748 20.720398 -3.696030 2.586553 14.192261 12.115285 -27.031319 -27.349902 -5.826240 14.007693 26.119609 -6.815466 5.326360 13.876710 -23.920305 -1.459884 5.890636 -1.374771 -6.825852 10.347404 5.033950 -11.971189 -13.226125 12.077984 -8.719244 -5.018178 1.333622 18.298098 -1.025766 -36.224557 22.944216 -1.645263 -11.142676 7.740913 -9.991040 28.397737 -23.332047 -23.303218 18.623186 -0.321529 -4.714559 -12.015883 6.646367 16.438931 6.767464 12.487531 -16.351928 -28.329806 15.552146 -10.213224 21.064297 10.441020 -3.140922 15.062933 -18.618646 -4.887999 -27.972997 -12.919288 -1.482737 4.963780 -26.223076 -12.258551 -4.517761 25.434981 17.612977 -0.416937 -20.434798 2.427468 26.650734 -29.932007 -7.244097 15.816981 20.480437 -27.729798 6.373502 20.607031 -29.630613 2.849868 -11.159984 -3.920343 -8.465108 -20.080650 17.931480 6.798641 17.634588 -2.740537 6.065282 4.662555 12.654336 9.455111 7.136862 5.538742 31.632659 31.079677 -7.828409 -14.522168 -27.598898 10.961648 -31.386787 -34.368120 14.934620 2.948094 -20.713322 4.082095 1.333117 31.527273 5.306745 -2.531987 -6.191263 4.790422 +-7.138320 -7.715455 -2.581585 -16.166004 11.217470 9.913835 5.948758 -7.056686 -19.544152 -2.844818 6.117936 -17.393897 -2.027618 21.699026 -4.476558 17.855024 26.450959 5.220335 -9.076530 -0.556828 19.686760 -6.419016 22.294801 20.672944 -14.000241 -0.843851 -1.313782 7.748641 2.135235 7.097718 0.208678 -10.069302 7.476671 -19.683822 -4.186975 -13.860450 2.400056 8.392824 14.782164 -27.233850 5.500952 4.017906 4.359843 -6.147950 -6.350219 -1.458758 11.332707 15.794341 -4.387135 6.272971 12.817699 1.292360 -2.215092 4.626924 4.635524 6.181362 0.307945 1.786150 -8.174386 -7.377747 -2.035258 -5.476133 5.328536 14.630300 19.665920 1.004385 -0.653960 11.349782 2.485048 4.109993 10.442004 2.043239 -5.575995 -3.591229 8.109767 -22.172521 -2.763660 -28.896078 -3.088165 -33.695692 -10.114435 1.823787 13.880549 2.211549 10.768979 -0.154511 16.709131 -6.171135 -4.570962 16.817711 18.780308 -15.545015 -8.361502 -12.389441 -11.074259 6.098720 -8.647851 -1.978859 11.553458 1.600616 -14.882602 -8.786123 7.325893 9.133661 -6.018981 -13.857813 4.558950 14.709866 -14.991126 -15.869232 -0.525713 14.372091 -5.361447 -25.464710 -4.241703 -11.979774 4.982919 1.180276 -7.424101 -16.874151 3.100470 8.531028 -5.603795 -9.851410 -2.047316 12.453225 7.005373 7.362015 2.736830 0.755821 3.048504 26.573918 7.217363 -11.742381 2.377421 1.296532 -4.307255 7.218579 -11.219187 -11.119355 3.458064 -18.643692 2.027916 12.096894 -10.787746 -2.747719 12.344160 7.072367 4.209046 55.260414 1.193469 21.087753 14.466684 -16.986849 8.978382 -5.157701 0.677370 5.364501 8.698685 -0.901692 -24.260373 -16.008166 9.341899 17.632109 14.589296 -17.682336 -9.223517 -3.559041 -0.300486 2.911940 -1.442194 4.121626 1.314036 -14.678408 -3.654505 12.429425 34.692489 -7.616224 -2.993664 10.258600 9.250556 -10.646175 -23.561035 -7.949395 -17.450858 2.848328 2.874848 -0.826214 10.291248 22.447915 -28.625969 16.172208 -4.776995 -0.135852 12.727639 6.062197 -16.425343 -26.039275 -6.481950 10.243483 22.371181 -5.834369 4.224763 7.333835 -15.126943 -1.245158 3.032425 -0.880000 -4.043786 7.453406 -0.659867 -9.029793 -7.624487 6.395147 -6.577127 -6.002066 -0.228298 10.762321 4.848589 -19.809969 15.570409 0.158995 -5.947543 6.046137 -1.993960 16.573388 -14.977258 -17.610854 12.209507 0.552409 -4.214488 -6.721043 2.738879 12.121961 4.757066 1.999566 -7.293919 -20.040729 11.547231 -6.752837 14.913431 7.200991 -3.285977 9.994705 -2.015555 -5.425243 -16.079975 -10.320015 -4.301118 -1.401732 -14.926164 -9.222099 -4.217622 17.812409 11.687219 2.950557 -12.981947 0.069669 19.706792 -14.446252 -3.156411 13.045841 4.711530 -17.445027 2.841800 16.358847 -20.413364 1.018496 -8.151005 0.838154 -5.071679 -12.025657 10.633607 3.157190 9.748785 -1.344744 2.234791 1.216933 6.602366 7.995995 3.337501 1.549682 23.330334 14.209302 -5.662655 -6.180886 -16.110584 5.778012 -20.457609 -19.590266 6.872120 6.082227 -14.946747 2.999156 4.864304 18.525201 2.452622 0.588502 -2.717598 0.621650 +-8.835761 -9.149720 -6.108800 -20.569672 13.096507 17.977159 6.360386 -13.509123 -21.191968 -1.080578 10.421095 -19.951349 -1.467677 23.158085 -7.893506 21.199350 28.143377 1.113804 -12.773722 -1.582272 24.348581 -1.391933 28.336942 24.386070 -17.892369 -2.556344 -0.544871 9.592394 6.517116 2.987028 3.314143 -8.717248 9.407844 -23.287547 -8.026860 -12.849216 4.423471 6.775584 20.162726 -27.784710 5.870687 0.120809 0.745381 -6.305734 -8.173550 -1.773677 11.756514 18.777324 -3.491484 4.727681 18.441673 4.895160 -4.604953 4.811550 3.627182 3.639916 2.965645 1.651583 -4.972841 -12.863378 -0.839327 -0.276580 4.780737 18.841204 23.944482 1.815122 0.244850 15.731341 3.824187 5.295220 12.486540 2.757939 -8.385426 0.128256 8.618490 -27.803294 -3.058180 -32.183860 -4.211058 -31.779276 -9.564370 3.634797 11.136250 -0.777331 13.967393 2.501137 18.024203 -3.746840 -7.988910 19.694876 19.924573 -17.087946 -8.426650 -12.735996 -12.326440 5.960915 -10.988143 2.746453 11.016869 4.388754 -16.396938 -8.089233 5.625429 11.731029 -7.542194 -18.515887 5.164777 14.384481 -13.876970 -15.750102 5.364385 19.987424 -7.236757 -31.930993 -9.671104 -17.646153 9.358615 -3.214473 -5.288899 -19.680179 0.907534 11.366724 -4.896094 -12.665356 1.781353 11.876464 13.777284 10.470357 1.138739 1.579581 4.953807 34.043277 4.357481 -12.183213 1.761613 -2.247432 -4.130209 10.543832 -12.450620 -8.589169 4.415572 -19.633620 6.538501 18.850274 -9.536025 -5.066941 17.676818 8.054800 3.925043 73.884920 2.581564 26.043771 19.324886 -19.559432 4.912152 -9.192259 1.708757 7.154283 5.906439 -3.008848 -33.924331 -18.435695 12.098401 18.627713 14.805122 -23.675350 -6.227115 -1.136892 -1.886388 -0.849480 -3.372557 4.667496 -0.024284 -15.057811 -4.646140 19.046628 41.714711 -8.464325 1.018811 13.188035 12.183898 -12.985584 -25.263349 -10.294391 -15.874707 4.786046 7.573699 2.382645 12.542875 24.549965 -28.190586 15.104157 -1.845623 1.823464 14.808430 8.480553 -21.026081 -24.452963 -5.209410 10.809695 22.412680 -9.162106 5.376677 9.555826 -17.086028 -0.691754 5.093767 -3.447458 -3.383684 6.685760 3.065920 -8.579159 -10.224017 10.437622 -7.277017 -3.042576 -0.462647 12.975340 -0.645265 -23.448012 18.478326 -0.132262 -8.072577 4.580442 -7.496796 22.524057 -16.917930 -17.936705 15.345776 0.456928 -2.464608 -8.022896 4.856321 13.429430 7.660010 10.630115 -13.353371 -22.602855 11.063300 -10.030973 15.530121 7.490894 -1.941856 8.436454 -13.351238 -3.229562 -22.795101 -14.924298 -4.045284 5.391145 -22.200940 -6.861113 -3.692059 20.376114 10.329311 0.363163 -18.800767 2.473215 21.763054 -18.585560 -3.263833 11.061531 13.929356 -25.273102 1.699438 15.037832 -22.754937 3.062070 -7.112004 -2.806146 -8.316006 -17.531092 13.479140 8.258589 15.115149 -2.404523 6.031387 3.280113 7.911745 8.061424 6.275220 4.239399 25.905200 18.586013 -4.241024 -11.964267 -20.677386 8.266032 -23.155175 -26.528909 12.794980 1.479804 -15.266805 2.880326 3.461467 24.388745 4.636286 0.686304 -2.644492 2.393911 +-5.434229 -5.846173 -1.284803 -12.894580 7.527294 8.767838 4.100409 -7.372534 -14.289550 -2.351056 5.469182 -14.717441 -1.160772 15.222665 -4.744934 13.087647 21.473860 3.059170 -7.937149 -1.492480 16.543112 -5.148514 20.263636 18.647365 -11.317266 -1.408467 -0.447186 10.079032 4.600700 3.220000 2.535334 -5.473814 5.616481 -16.681662 -4.346396 -12.188636 2.941911 5.457957 12.249106 -21.578779 3.807670 0.411611 1.554363 -4.069861 -4.713440 -0.111866 8.365851 12.071528 -1.875816 3.684780 12.465731 2.218058 -2.067699 3.436330 2.318771 2.975028 4.327619 0.341246 -4.878563 -6.871705 -0.653764 -3.385509 3.933286 11.968481 18.105562 1.777760 0.227172 9.498349 2.883086 3.122435 8.416872 1.530502 -6.347281 0.007891 5.702294 -22.807040 -0.198137 -26.789139 -2.610162 -26.083761 -7.354580 0.955330 9.351077 -0.605017 8.106920 1.354527 11.688103 -3.171748 -3.664964 13.963733 14.011357 -11.324882 -6.065637 -8.868033 -7.726393 5.081727 -7.364809 0.562004 9.120421 4.317003 -10.461220 -5.228876 7.671592 7.105649 -4.659925 -10.684070 3.376002 10.826066 -11.055071 -11.425308 1.053699 12.827592 -4.009576 -21.773100 -3.604195 -13.232368 7.791642 -0.340139 -4.051413 -12.721639 1.079734 7.188138 -2.889072 -6.962182 -1.903170 9.943561 7.283004 5.639563 0.980677 2.159837 2.551636 23.269020 4.479247 -8.095140 1.341778 0.198657 -6.652308 5.553171 -10.856716 -7.021810 4.369853 -13.305528 2.395377 11.901697 -7.371435 -4.221565 12.930832 5.940867 3.586238 53.226115 2.224227 18.227040 13.051035 -12.559793 5.792287 -5.319157 1.232758 4.616456 4.736060 -1.177664 -27.475652 -12.263015 6.492575 12.473521 10.205098 -17.484285 -7.250164 -2.166040 -0.642892 1.132690 -1.798348 3.401498 -0.092050 -10.177638 -2.749911 12.043092 30.547775 -5.085402 -0.627918 7.615514 4.775723 -11.186811 -22.140692 -6.171316 -9.402803 2.749384 1.068815 0.817320 7.387735 16.369758 -22.531530 11.034185 -1.542787 1.537602 12.297897 5.093368 -14.356758 -21.079002 -4.309979 7.953150 17.284223 -5.870137 2.618304 6.294241 -11.440989 -0.920969 2.982923 -0.757136 -2.319451 4.818906 1.238847 -6.338940 -6.784804 5.116967 -4.411619 -2.101694 -0.108024 8.441379 1.461061 -17.036094 12.267670 -0.756399 -4.998824 3.978051 -4.282376 14.518396 -11.945743 -12.233838 9.378543 0.410448 -3.852172 -8.768835 2.805968 9.094393 4.015227 5.237832 -7.151737 -15.117310 7.952537 -8.577962 9.808020 5.039864 -1.752151 6.989348 -3.981092 -2.686967 -17.302986 -8.623443 -5.914238 1.238374 -14.191854 -5.901308 -2.415091 13.051976 8.880166 0.473749 -11.490208 1.867444 17.134854 -14.184171 -4.169450 8.275999 8.627415 -16.708245 2.370160 10.600810 -18.433060 1.050529 -5.186420 -3.722318 -3.368984 -10.630985 8.676361 3.313560 8.673841 -0.807139 2.789950 1.477820 5.626695 5.487581 3.728676 2.191734 20.196435 16.738171 -2.816398 -6.607890 -13.397885 4.363670 -16.183053 -17.956732 6.532604 3.530877 -10.746183 2.720635 5.205973 16.967258 3.780268 -0.628759 -2.069905 1.194058 +-0.843929 -1.186681 0.343576 -2.294697 1.096925 0.512618 0.668111 -0.741228 -2.644054 -0.691156 0.857838 -2.164597 -0.290137 2.577529 -0.827846 1.744423 3.197307 0.886985 -1.148626 -0.527536 2.267449 -1.138520 2.846052 2.899699 -2.033063 -0.140349 -0.320630 1.728875 0.966985 0.919333 0.295970 -0.663047 0.667904 -1.992338 -0.103645 -2.005668 0.457840 1.233952 1.168603 -3.558290 0.653012 0.461283 0.887728 -0.531219 -0.479020 0.576811 1.186256 2.005329 -0.584014 0.958627 1.971852 0.164478 -0.030841 0.531486 0.417461 0.375770 0.671601 -0.267267 -0.951773 -0.609167 -0.092011 -1.353916 0.858128 1.989865 2.733923 0.078208 0.037589 0.907031 0.611320 0.615187 1.643959 0.252375 -0.960366 -0.392383 0.978181 -2.941509 0.321493 -3.978787 -0.145238 -4.722628 -1.325860 0.050770 2.370002 0.614577 0.825280 0.103745 2.086080 -0.445621 -0.524026 2.005978 2.061150 -1.567153 -1.055942 -1.357759 -1.404748 1.073333 -1.218358 -0.274098 1.114021 1.063823 -1.667708 -0.532566 1.046445 0.869943 -0.838327 -0.946093 0.373939 1.935642 -2.282966 -1.671497 -0.129688 1.848046 -0.216820 -3.170651 0.018804 -2.002717 1.261340 -0.018904 -0.744248 -1.310990 0.222406 0.882740 -0.579557 -0.436097 -1.767135 1.659932 0.631276 0.746187 0.125138 0.254793 0.176802 2.672216 0.644285 -1.585233 0.079136 0.477337 -0.941666 0.790311 -1.709129 -1.258613 1.014707 -2.209801 0.042594 0.950556 -1.333064 -0.697698 1.359850 0.987680 0.657136 6.787599 0.359512 2.677915 1.922518 -1.722338 1.067306 -0.274162 0.438813 1.064609 1.055087 -0.362778 -2.859403 -2.029038 0.788844 2.176379 1.746782 -2.084813 -1.149239 -0.378256 -0.134933 0.558312 -0.097993 0.443803 -0.255698 -1.653572 -0.459541 1.268553 3.891662 -0.369035 -0.241924 0.846387 0.720781 -1.710454 -2.881296 -0.758628 -1.362714 0.486641 -0.128150 0.060840 1.262465 2.737922 -4.076308 2.102032 -0.306618 0.368545 1.628021 0.256266 -1.967974 -3.774067 -0.735129 0.973397 2.753188 -0.838967 0.261747 1.364098 -1.999308 -0.150348 0.315082 0.045343 -0.621710 0.890923 0.222514 -0.885020 -0.980290 0.381826 -0.715773 -0.194851 -0.149370 1.390698 0.366076 -2.798664 1.691970 -0.407843 -0.929270 0.600859 -0.326239 1.702157 -2.130213 -1.894309 1.179546 0.152441 -1.063175 -1.625943 0.301857 1.532254 -0.059611 -0.017523 -0.961534 -2.075520 1.449513 -1.480842 1.544102 0.917891 -0.602714 1.360709 0.371356 -0.367779 -1.976508 -0.688236 -0.752833 -0.556166 -1.675228 -0.397561 -0.453466 1.907171 1.700650 0.278386 -1.226985 0.749561 2.760345 -1.482294 -1.113481 1.391709 0.261763 -1.768108 1.032241 1.800256 -2.962226 0.093951 -1.256195 -0.330658 -0.109581 -1.318289 1.816776 0.361530 1.425860 -0.206129 0.584296 -0.106307 1.089084 0.853314 0.244827 0.294108 3.360367 2.405921 -0.400829 -0.417861 -2.082136 0.717146 -2.550339 -2.150575 0.426879 0.871534 -1.637884 0.712763 0.392337 2.491126 0.706997 -0.099983 -0.417870 0.459464 +-7.890375 -8.962013 -2.891918 -18.105874 10.891035 12.242977 6.182824 -10.803190 -19.938876 -2.493141 8.529486 -19.741466 -1.619971 21.117417 -6.849762 18.599870 27.401979 4.371793 -10.415347 -3.046134 21.495827 -2.883936 27.384935 24.211570 -16.107751 -1.904312 -2.238237 10.452269 6.595304 2.088769 2.103539 -7.137404 9.160716 -22.958163 -6.549897 -13.836197 4.087634 8.238542 18.232660 -26.737751 5.853817 -1.964826 2.028013 -4.580776 -6.449471 0.971975 11.778330 16.633641 -3.570301 6.392772 16.514857 1.353931 -2.440967 4.991296 2.579942 3.870760 2.374981 0.922177 -6.619829 -9.927756 -1.337866 -4.207076 4.811452 15.559067 21.403707 3.043485 -0.919950 13.053006 5.493584 4.017611 11.301734 2.799880 -6.670653 0.224022 7.552894 -27.542382 -2.482849 -33.002469 -4.316440 -31.497909 -10.519033 2.077408 13.702170 0.496517 11.564800 1.981465 16.018685 -3.238703 -6.413127 17.775481 19.638916 -17.393182 -8.509422 -11.432545 -9.155138 5.569911 -9.110978 2.670715 9.516646 5.707088 -15.309026 -8.515480 7.012124 8.871810 -6.344826 -14.491390 3.713042 14.481301 -15.185930 -14.588626 1.409556 16.717243 -4.460776 -28.532273 -5.769016 -14.902054 11.231460 -0.661860 -6.787889 -17.413312 1.740451 9.460817 -5.327166 -9.407635 -1.440942 12.308026 11.434127 7.553807 1.258917 3.373915 3.446172 30.573077 4.743150 -12.093041 1.950377 -0.250894 -5.353612 7.513936 -13.346146 -9.334318 4.649251 -19.483454 6.018129 15.384774 -10.120413 -5.010087 16.517770 8.960753 3.981505 63.292323 2.830402 24.749716 18.514224 -16.143773 6.672528 -8.049990 3.068148 6.614617 6.182506 -1.577103 -30.793273 -17.297297 9.988352 16.875228 13.368469 -22.185442 -7.741483 -2.689747 -0.039335 0.741025 -2.304211 4.578787 0.569583 -13.941903 -3.425396 16.754425 38.985617 -8.153441 -0.331354 10.280839 5.498478 -10.501904 -25.913006 -9.656689 -13.059366 3.550001 7.128985 3.698790 10.651425 23.192194 -28.337025 15.017862 -1.395250 2.325495 13.802516 8.142749 -19.809772 -22.383485 -6.203191 10.279727 20.637536 -6.325838 3.023081 9.401491 -16.459470 -1.155322 5.017366 -1.893071 -3.971278 7.041498 3.009093 -8.694141 -8.490875 6.816588 -7.091570 -3.156996 0.254859 12.882484 0.252137 -24.293976 15.890891 -1.595169 -8.276481 5.442749 -6.828926 20.181430 -15.666528 -15.882989 13.628279 0.124160 -5.670183 -9.929956 4.765547 10.788777 5.206963 7.564479 -10.858950 -21.102734 11.924796 -9.452586 14.254093 7.320878 -2.401666 9.099561 -8.649267 -3.774127 -20.427139 -11.131759 -3.581464 2.151953 -19.271332 -7.958595 -2.830731 17.764263 12.061368 0.716254 -15.775365 2.280396 20.573787 -18.918989 -4.806805 11.553008 12.249962 -21.315408 3.531448 14.925840 -22.804861 2.407854 -7.582381 -3.883599 -5.771979 -14.397380 11.716822 5.140879 12.318622 -1.934159 4.423112 2.761621 8.612588 6.955610 4.384646 3.871994 25.565077 19.967634 -3.876723 -9.126693 -19.094398 8.065859 -21.976657 -23.787397 9.943704 4.295696 -15.453294 3.252537 3.507593 23.501289 4.316567 -2.368624 -3.302760 2.374790 +-2.234995 -3.681514 -0.642403 -5.543027 3.054791 0.439663 1.841850 -2.377207 -6.518745 -0.806756 2.756956 -5.168437 0.168496 6.227351 -1.570047 5.172454 7.496904 1.914994 -2.554689 -2.007837 5.997192 -2.549578 6.879969 6.817236 -4.415391 -0.250935 -0.804216 3.263979 2.226884 0.755191 0.937754 -1.711034 1.620991 -6.136139 -1.310704 -4.807436 1.016458 3.760861 5.726253 -7.855610 1.926178 0.264614 2.851081 -1.286112 -1.534952 1.254100 1.968893 4.580072 -2.262003 3.057009 5.560754 -0.082557 -0.441267 1.329185 0.997277 0.926319 1.748608 1.197418 -1.871359 -1.849320 -0.363307 -1.011430 2.072298 3.866431 5.990760 0.125347 -0.566781 3.090691 2.129023 1.767149 4.096547 0.606273 -2.113826 -1.781619 2.435727 -7.595876 -0.906107 -12.924719 -0.480542 -12.099683 -3.131769 1.606402 5.853091 -0.902369 2.193172 1.635658 4.478514 -0.625447 -2.377634 4.211118 4.316901 -3.279521 -2.406426 -2.252485 -4.023790 2.350283 -2.216322 0.237403 3.805528 2.861836 -4.339050 -2.229842 2.802926 1.886773 -1.769355 -3.319187 0.954279 4.191155 -4.414615 -3.729974 1.013379 5.326142 -0.600799 -7.130646 0.431561 -5.432312 2.818011 -0.297374 -2.398987 -3.101392 0.437374 0.987776 -2.428385 -1.088322 -1.893465 3.408095 2.181816 2.617354 0.148852 -0.102340 0.190042 7.018692 0.544710 -4.683711 0.700902 0.476628 -1.373411 2.612538 -4.813084 -3.160224 3.360131 -4.993700 2.534423 1.706707 -2.989501 -2.466541 6.420328 2.746504 0.464752 15.122955 1.231253 7.394634 5.628628 -3.447517 2.313037 -1.259979 1.625012 2.837252 3.067864 -1.562760 -5.769501 -5.023596 2.386328 4.617393 3.914877 -6.003400 -4.648092 -0.142118 -0.140050 1.627405 -0.311228 0.776505 -0.236014 -3.839747 -0.992038 3.456102 9.470724 -0.967081 -0.906991 1.933290 3.824735 -4.003726 -7.465965 -2.429850 -4.853624 1.318822 0.367451 1.095623 3.364179 6.410529 -11.623433 4.453868 -0.453902 1.732047 3.524970 2.035475 -6.044864 -10.241384 -2.208673 1.523227 6.549036 -1.827404 1.302941 3.855891 -4.468302 -0.199817 0.450156 -1.151794 -1.620890 2.184066 -0.111533 -1.814204 -1.489671 1.734612 -2.372155 -0.805562 0.446201 3.714071 1.520628 -7.776340 3.178416 -1.302394 -2.141702 1.353950 -1.109511 4.907937 -3.912989 -3.900061 3.118189 0.149414 -1.430034 -3.962883 1.340143 3.094998 -0.142730 1.317870 -1.651051 -4.569233 3.105427 -4.323722 4.023630 2.107256 -2.059817 2.160033 -1.249250 -0.786990 -5.605548 -0.359470 -2.143573 -0.745753 -4.786852 -1.567155 -0.850125 4.200440 2.801012 0.950788 -3.762509 0.942628 6.489215 -4.169575 -1.409681 3.343807 1.329799 -4.559330 2.633894 4.511061 -7.055328 1.207267 -2.877832 -0.919113 -0.897488 -2.625219 4.328966 2.331451 3.273076 -1.672635 1.425728 0.666006 2.740058 2.409574 0.807747 0.744226 7.609467 5.758516 -1.101151 -2.088974 -5.043754 1.579845 -5.474562 -5.384973 1.576445 1.344049 -5.489663 1.331246 0.414304 6.868384 1.387284 0.188814 -1.126072 1.614159 +-4.338700 -5.862811 -3.214625 -9.482774 6.351452 7.070546 3.666306 -6.939832 -11.586333 -0.440243 6.183562 -12.562069 -0.697252 11.700046 -3.862866 10.696411 14.505189 1.529048 -6.933281 -1.856866 11.453505 -0.368504 15.326155 12.982844 -8.401663 -0.938161 -2.527647 4.537238 3.518456 -1.562635 2.703091 -2.805901 5.407622 -12.383565 -4.246394 -5.030263 1.812234 4.040957 10.590504 -14.154552 2.794622 -1.050571 2.621095 -2.599884 -4.006165 1.838084 5.984041 9.389501 -0.938735 4.088533 9.032600 0.320361 -0.930432 2.564717 1.285973 0.539999 0.651944 0.246677 -3.797037 -5.783853 -0.524757 -1.022270 2.427619 9.339624 12.073925 1.761095 -0.651899 7.771054 3.726387 3.027492 7.200897 1.737542 -4.420248 0.219159 3.915045 -14.282827 -1.102397 -17.385998 -2.357188 -17.346961 -5.738960 2.622511 8.883267 -0.079107 5.741792 2.661934 9.458037 -0.625482 -4.795739 11.023555 10.963395 -8.600201 -5.115578 -5.067364 -5.900414 3.162535 -5.012034 2.722560 6.964288 4.846574 -8.825092 -2.666826 2.976327 4.554584 -3.508012 -8.491817 3.259584 7.558041 -6.881911 -7.344968 2.920892 10.303230 -1.745275 -16.383870 -2.811834 -7.992003 5.208715 -0.119840 -3.985725 -8.518532 0.542647 3.189474 -2.981548 -3.952912 -1.566749 5.014526 5.820960 5.843535 0.484652 2.949925 2.772987 16.647743 0.698194 -7.159867 1.811112 -0.865785 -1.163514 6.507750 -5.885866 -5.685174 2.101185 -10.773521 5.128180 7.367482 -5.531535 -4.312336 6.231973 5.645897 1.011576 31.006763 1.914040 14.029528 10.516172 -9.199626 2.443026 -5.651147 2.374359 3.934664 3.795680 -2.508948 -13.616807 -10.073075 6.202416 10.370429 7.600183 -11.794439 -3.445855 0.319601 -0.852415 0.038855 -0.957751 2.977216 0.143390 -6.338693 -1.913056 9.894814 20.053938 -3.620861 2.031245 5.708173 4.518016 -4.189968 -12.677514 -5.163024 -7.081854 2.576578 3.946400 2.799537 5.725405 12.695310 -14.712687 8.275450 -0.774175 3.204450 7.499165 5.443975 -11.849356 -13.097782 -3.803845 5.215022 10.768334 -4.183190 -0.152908 5.791871 -8.752480 -0.643621 2.992902 -1.918917 -1.867608 3.723598 0.712513 -3.232182 -4.292498 5.236533 -3.345969 -0.417679 0.353514 7.591555 0.183342 -11.180354 8.743757 -0.522748 -5.227072 1.543378 -4.161810 11.201943 -7.861895 -7.881379 6.703509 -1.231413 -3.276626 -5.428466 2.231795 5.646987 2.684169 5.614226 -6.352628 -8.688039 7.161888 -5.386337 8.297667 4.085993 -2.336869 4.630860 -6.258588 -3.102852 -9.775456 -6.941948 -2.158968 1.382468 -10.425245 -1.580823 -1.564186 9.619637 5.285999 1.036271 -10.237488 2.298848 10.318209 -9.362811 -3.703607 6.150492 4.679156 -12.028472 3.581344 7.851056 -11.963033 2.824288 -4.214896 -1.427923 -3.917278 -7.902430 7.222355 4.397385 7.166497 -2.724147 2.596989 2.999371 5.152887 3.860252 3.761306 2.535101 13.704534 8.713871 -1.697057 -5.417893 -11.220827 4.546834 -11.908414 -13.445810 6.172980 3.588617 -8.318677 1.314431 1.044317 12.137155 2.599145 -3.148802 -3.696192 3.550276 +-4.744026 -5.103458 -1.087035 -11.117924 7.017469 8.888151 3.856029 -6.159548 -12.895153 -2.248498 5.090691 -13.693756 -1.792887 14.033516 -4.320679 11.326102 18.296012 2.959000 -7.166361 -1.645286 14.371207 -2.223567 19.058563 15.860047 -10.701563 -1.067333 -0.629061 6.885437 4.226971 3.571741 1.990224 -6.272967 5.585003 -14.340806 -3.657206 -9.509473 2.476365 4.609164 10.245454 -18.369935 3.347364 0.666995 1.297588 -3.616070 -4.082349 -0.063538 9.071738 11.035389 -2.046538 3.785134 10.964020 1.789421 -1.664139 3.100347 1.951009 2.272806 2.939182 -0.427333 -4.873923 -6.019916 -0.761161 -4.028127 3.029049 11.057328 15.190481 1.514259 0.027295 8.335899 2.538760 2.865571 7.684510 1.570517 -3.911133 -0.127343 5.715142 -17.629980 -0.811997 -22.687677 -2.558890 -22.932471 -6.585122 0.510206 9.558682 0.922387 6.808471 0.717689 11.117919 -2.620426 -3.202699 13.482980 14.030782 -10.483657 -5.815462 -8.123553 -7.198044 4.598356 -6.887073 0.816168 6.651156 3.567643 -9.942714 -5.439195 4.753314 5.997360 -4.332800 -9.499662 2.864532 9.556848 -10.708663 -9.468115 0.053466 10.528154 -2.820515 -20.334876 -5.006946 -10.164647 7.516052 0.183397 -4.015027 -11.649984 1.151963 6.339220 -3.143382 -6.032535 -1.633274 7.878104 6.058345 5.404311 1.027220 1.943096 2.685816 20.379838 4.407004 -7.690548 1.184546 0.188182 -4.289519 5.154444 -8.526113 -6.534253 3.412591 -12.200734 2.337301 10.518490 -6.959483 -3.930250 9.401829 5.036960 3.322193 44.213751 1.826792 15.540850 11.327504 -12.367653 3.852852 -5.025189 1.103977 4.251420 5.055541 -0.806084 -20.950540 -11.258861 6.176444 11.762030 9.328782 -14.429900 -3.855402 -1.627000 -0.312455 0.812545 -1.309943 3.193117 0.021123 -9.344776 -2.559678 10.906059 26.176430 -4.750134 -1.100807 6.554265 4.626178 -7.556673 -16.011798 -5.325615 -8.084791 2.675288 3.008006 0.817358 7.049233 15.199771 -19.213366 10.386098 -2.049664 1.341530 9.243532 4.608148 -12.617435 -15.472914 -3.665343 8.054459 14.366461 -4.110504 1.938477 5.716461 -10.642605 -0.914397 2.583661 -0.326808 -2.311779 4.639365 1.226935 -6.733253 -6.383762 3.875561 -3.824233 -1.685490 -0.985860 7.767467 1.037763 -16.038027 12.113286 -0.825433 -4.764714 2.903987 -3.407279 12.830641 -11.101120 -11.639120 8.159697 -0.294565 -4.489320 -6.642698 2.197859 8.077052 3.800003 4.189954 -7.187281 -13.188759 8.150025 -6.102519 9.377675 4.804953 -1.598377 7.373876 -4.545836 -2.687853 -14.087795 -7.620275 -2.618536 0.179207 -12.192585 -4.384052 -2.381258 11.759316 8.400255 0.380465 -10.226021 1.558601 14.138076 -12.416459 -4.103418 7.824735 7.214520 -14.833081 2.953146 9.916519 -15.388789 0.770514 -5.309913 -1.992430 -3.137061 -9.769003 7.787899 2.274340 7.706273 -0.527298 2.684336 1.054565 5.158344 4.513403 2.719994 1.781813 17.370184 13.461175 -3.401037 -5.064644 -12.546868 4.692920 -15.149527 -16.380171 5.736522 3.059506 -9.209383 2.362497 2.816897 14.730819 3.404400 -1.273443 -2.649719 1.685095 +-10.177310 -4.895953 5.304505 -25.649290 28.060915 13.441758 10.887717 -7.293206 -24.932719 -10.291764 3.544291 -22.357037 -15.971589 32.632589 -10.890002 24.194510 39.725549 5.288994 -9.086093 -7.181450 36.279774 -15.111899 42.692569 26.823487 -33.908797 -2.273619 3.337589 20.834406 7.303013 21.649342 -2.298366 -16.327049 13.974377 -25.404178 5.833230 -22.945969 10.067773 7.497286 9.399336 -42.727116 4.188470 6.033067 0.322118 -3.174825 -8.768672 13.117674 24.077275 27.901531 -15.614077 9.221514 27.355584 2.431074 -2.289734 11.361113 -0.650535 4.740727 5.233380 -0.605866 -18.879010 -10.944529 -5.066232 -24.191618 10.255496 24.517906 39.406367 -4.067300 4.674045 22.231930 -2.194182 8.449094 16.094802 5.346919 -0.842473 -5.704995 23.928083 -33.564940 -7.627414 -53.739614 -9.506955 -72.879647 -18.683326 -16.104410 18.772950 1.008528 16.123280 -2.790070 32.808945 -0.043832 0.294298 28.421917 32.277231 -26.796971 -12.397621 -31.548883 -16.547841 9.428927 -20.029274 -7.009488 20.693414 3.699491 -22.178517 -15.174449 10.837849 8.968295 -8.914090 -24.621284 -4.976964 28.135680 -31.345138 -22.945143 -17.535000 18.155380 -8.892411 -47.808578 0.262306 -15.511584 19.542604 0.197106 4.821287 -19.075584 3.271412 23.841882 -9.567946 -14.648267 -8.847153 29.379447 16.998930 6.016784 9.213710 4.247479 0.417067 38.062738 27.282610 -13.011469 -12.674691 5.376429 -13.391049 6.818650 -20.949058 -9.515300 19.156712 -32.124071 1.978890 19.285040 -12.926146 -7.073379 18.805917 -0.060877 19.595272 81.780730 1.190989 27.264379 15.339525 -29.970372 18.188357 -4.049801 -0.416774 14.403126 16.785418 -2.457123 -37.368952 -28.182732 13.801810 23.150585 20.743142 -34.618122 -14.288829 -11.137790 2.722436 0.028772 -9.239509 16.463696 -3.793441 -20.953198 -4.008885 13.334785 55.731602 -14.951103 -14.690949 22.083791 14.863414 -22.741742 -39.214683 -15.744307 -19.944770 -2.031516 3.945839 -1.917955 13.615405 37.994850 -53.910325 25.261951 -4.732255 -2.252192 20.790335 -0.661796 -16.705144 -45.294014 -4.576043 21.435517 32.318378 -6.079340 5.014945 7.445220 -24.593442 6.330458 2.427070 7.226266 -2.639448 9.428922 -4.227461 -17.492641 -21.009496 -2.584591 -10.521217 -2.648517 -0.420790 11.809345 8.583240 -50.221191 28.804057 -12.394967 -11.992979 13.044766 0.974023 30.415893 -25.082998 -32.485736 19.774118 -1.636717 -15.616223 -23.346054 8.467964 20.876202 3.066571 -0.433523 -13.032436 -40.334196 18.991568 -13.193997 15.539138 11.496781 5.456235 29.770665 1.711917 -15.830263 -33.950611 -16.167972 -3.861352 -6.846820 -21.691623 -9.193810 -3.346076 28.310113 26.647747 3.645963 -10.546901 -1.340016 36.368108 -31.740813 -14.645985 27.809358 13.716347 -25.269905 13.340979 30.806429 -31.663791 -13.595265 -16.689207 3.654831 -2.655133 -23.219490 13.676908 -7.857689 11.785452 6.107655 7.837858 -6.859877 12.923647 9.373459 4.065219 -12.050226 47.284679 41.716693 -21.422412 -6.035306 -24.393688 11.278581 -37.935959 -31.398114 7.644861 5.819902 -11.412331 13.785445 11.418014 30.709467 2.282501 -1.614339 -3.784335 -10.459250 +-7.951623 -3.141998 6.160953 -20.290855 22.259730 9.215152 8.167505 -3.937683 -18.403543 -8.153212 1.687744 -15.424074 -13.451674 25.189622 -8.894605 17.012421 30.807509 3.872111 -5.985140 -6.221823 27.322373 -13.083766 31.124132 19.694576 -27.377733 -2.187600 3.308478 18.830280 6.441615 17.877884 -2.623163 -12.144873 9.457664 -16.602395 6.716983 -18.546059 9.063815 5.363311 4.074344 -33.532041 2.893068 5.180410 0.175036 -2.012638 -6.449560 12.502163 18.158681 22.214349 -13.770516 6.181752 21.340592 2.298728 -1.778401 8.949867 -1.818668 2.949139 5.566561 1.088513 -15.125588 -7.604638 -3.517040 -20.564524 8.226755 19.240326 31.514320 -3.664595 4.216865 16.740814 -1.952019 6.842416 12.160021 4.053857 0.499602 -4.105975 19.397625 -24.123670 -6.352389 -41.871606 -7.007818 -56.308837 -14.520278 -14.431224 13.785618 -0.434312 11.758733 -2.371050 26.103960 1.193455 1.122312 20.738962 24.663898 -19.966999 -9.509737 -26.249666 -13.281438 8.164637 -16.431668 -6.172156 16.029390 3.342711 -16.695321 -12.259186 8.466499 6.074107 -6.972542 -17.575708 -5.217271 22.178493 -24.135801 -17.473250 -15.199076 12.244526 -6.747190 -35.407508 2.324528 -12.566873 15.669013 -0.488799 5.954012 -13.363567 2.093259 19.068541 -7.673989 -10.698122 -8.557690 24.208905 12.689926 3.305385 7.438742 2.779421 0.015224 25.610933 22.180292 -10.032082 -11.921827 5.021940 -11.980533 4.092185 -18.417866 -6.326304 17.425821 -24.298545 0.657683 14.200407 -9.610981 -5.707486 14.275367 -2.103477 16.943862 60.037021 1.004985 18.137906 9.168794 -22.893427 16.032078 -1.490445 -0.906180 11.604520 12.885743 -1.828916 -27.997728 -21.748439 10.275649 17.424843 16.000489 -26.164522 -12.489971 -9.271224 2.088514 -0.309709 -7.529738 14.020553 -4.626490 -15.613142 -3.214395 8.176507 40.638333 -11.002127 -13.708704 17.524736 12.741090 -19.081258 -30.844789 -12.070027 -14.353104 -2.578445 1.521497 -1.926614 10.802632 29.685827 -44.040829 19.584803 -2.288578 -1.866705 16.134756 -3.232490 -10.538799 -36.551732 -2.026583 16.877920 25.364866 -4.128543 3.481162 5.123285 -19.090941 5.729936 1.770615 6.615364 -1.537065 6.898514 -3.670999 -13.257093 -17.272146 -2.902566 -8.545090 -1.760772 -0.551881 8.440975 6.102501 -38.936260 22.622216 -11.511048 -8.978120 10.814399 0.702607 22.152511 -20.068752 -25.373412 14.997041 -0.552355 -11.769632 -20.143126 6.972182 16.835616 0.854495 -1.251273 -10.021747 -32.913724 14.005686 -11.184464 10.837371 8.596454 5.178884 23.582262 4.847282 -12.318030 -26.298817 -11.239342 -3.230967 -5.431804 -15.242393 -6.394248 -2.018809 21.715966 21.391495 2.000137 -5.341277 -1.475791 28.852079 -23.420649 -12.449042 21.599048 8.392542 -17.327311 10.834199 23.997465 -24.736145 -12.192436 -13.456899 3.096958 -1.283107 -18.447439 10.060629 -7.352500 8.469433 6.056682 6.150957 -6.603288 10.286110 7.198183 2.279195 -10.654423 37.258994 33.336129 -17.368073 -2.822245 -18.045417 8.941478 -29.939352 -22.473994 5.325663 2.576168 -7.019746 11.910617 9.698224 21.757163 0.690613 -0.083132 -2.889241 -9.390615 +-4.115903 -4.511013 -1.672833 -9.517975 6.369840 6.852829 3.159570 -5.032786 -10.302538 -1.573105 4.477455 -9.383194 -1.420891 11.323243 -3.169827 9.601570 13.005493 1.307138 -5.322428 -1.319038 11.164065 -2.326942 13.211884 10.625895 -8.389323 -0.831914 -0.001901 4.673065 2.438229 2.589794 1.373598 -4.875125 3.917510 -10.632179 -2.593617 -5.755307 1.701563 3.792649 8.481510 -13.394117 2.727835 0.867525 0.640747 -2.923278 -3.623219 -1.018839 5.949411 8.694723 -2.139711 3.271230 8.509048 1.137842 -1.559146 2.278336 2.291908 2.009471 0.891643 0.409748 -3.281396 -4.773129 -0.842863 -1.816041 2.656923 8.396480 10.761827 0.147115 -0.139720 6.730632 1.367814 2.798814 6.063115 1.308653 -3.668765 -0.986832 4.762790 -12.547540 -1.604014 -16.753591 -1.771804 -16.969509 -5.337436 1.422259 7.105635 1.096491 5.781944 1.189106 8.947208 -2.165030 -3.464084 9.427325 9.938336 -7.594758 -4.223100 -5.993802 -5.953104 3.047419 -4.991802 0.073926 5.344231 2.153101 -7.883009 -3.888686 3.305336 4.955870 -3.505430 -8.647430 2.034250 7.562050 -7.504226 -7.597110 0.917596 9.147528 -2.619408 -15.087244 -3.634551 -7.220158 4.528314 -0.498494 -3.102901 -8.720322 1.074466 4.950536 -2.731906 -5.184239 -0.005621 5.914806 5.495512 4.701354 1.085723 0.871156 1.919364 15.216476 3.331935 -5.933367 0.632749 -0.090068 -1.768442 4.782974 -5.288399 -4.784846 1.842464 -9.283959 2.572993 7.550121 -4.934745 -2.719007 7.227823 3.704852 1.886376 32.128419 0.956211 12.048898 8.680281 -9.187023 3.132378 -3.476813 0.869859 3.451784 3.944576 -1.376553 -13.502929 -8.709172 5.565696 9.058907 7.267719 -10.736215 -3.750090 -0.758263 -0.381660 0.708338 -1.075008 2.242443 0.463351 -7.267549 -2.027289 8.118463 18.890415 -4.030389 -1.344000 5.853586 5.617516 -5.803872 -11.842104 -4.438951 -8.099002 1.843558 3.409616 0.603768 5.633251 11.842662 -15.351016 7.786878 -1.454730 0.554990 6.974402 3.673287 -9.462397 -13.193832 -2.956143 5.279789 10.965478 -3.641431 2.462773 4.427906 -8.151627 -0.217328 1.821898 -1.155483 -1.992417 3.757783 0.087811 -4.455605 -4.432136 3.680531 -3.648987 -1.437590 -0.151125 5.865042 1.317133 -12.397050 8.788538 -0.335549 -3.691135 2.475204 -2.074051 10.810191 -7.743437 -9.139932 6.818525 -0.241014 -2.476802 -4.088590 1.798559 6.135481 2.613498 3.178000 -5.185366 -9.860857 5.779496 -4.218031 7.724949 3.743387 -1.527736 5.294826 -4.645907 -2.324306 -9.473362 -5.849008 -0.802568 0.513283 -9.309731 -4.036828 -1.938307 9.329866 5.328662 1.059645 -7.777374 0.671374 10.116637 -9.058180 -2.135899 6.055211 5.472657 -10.863852 2.182185 7.952484 -10.221605 1.096158 -4.387395 -0.124904 -3.495913 -7.835397 6.328719 3.038789 6.336331 -1.143997 2.344886 0.997500 3.697291 3.992609 2.448141 0.950016 12.096696 9.472056 -3.004049 -4.715621 -9.463848 3.589068 -11.083176 -11.810878 4.750619 2.188209 -7.284785 1.491499 1.422882 10.925873 2.055877 0.011554 -1.557220 1.154693 +-5.937503 -6.841073 -4.205670 -13.636796 9.421601 12.498188 5.477607 -10.505419 -15.834662 -0.785351 8.267734 -18.925906 -1.556451 17.006664 -5.419071 15.729773 21.584828 1.873615 -10.140796 -1.758556 15.668674 1.172180 22.666891 19.242929 -11.790395 -0.999740 -4.004174 6.978417 4.031194 -1.518109 3.235524 -4.582305 8.273616 -17.716201 -6.992648 -6.998571 2.289214 4.610452 14.486449 -20.635960 3.979024 -1.325489 2.561376 -4.334823 -6.039589 -0.270849 10.591391 13.689561 0.733998 4.547158 11.040334 0.862872 -1.042246 4.146808 3.224806 1.902564 0.770962 -2.245108 -5.911414 -8.778638 -0.896023 -1.473716 2.608780 13.832422 17.106838 3.466789 -1.262307 11.934949 4.431109 3.624187 9.608898 2.732316 -6.633172 2.029423 4.856336 -21.145390 -0.497236 -20.489156 -4.140308 -20.933474 -8.727762 3.017790 11.166795 1.436596 9.884741 3.397597 13.704603 -1.889426 -6.232765 14.742294 17.164429 -14.253927 -7.473162 -7.835833 -6.817653 3.818374 -7.299604 3.845542 8.499479 5.782914 -13.151501 -3.749434 5.362427 7.625445 -5.275308 -12.148355 5.246729 11.258638 -9.812852 -11.554521 3.911743 13.923818 -3.873918 -23.536030 -5.073202 -10.650797 6.916001 -0.081002 -5.693965 -14.832608 1.416182 6.234506 -3.668634 -7.330668 -2.395110 7.093071 8.554518 7.931148 0.935191 5.339798 4.696432 25.910806 1.539476 -9.123379 3.177997 -1.824514 -1.714080 9.049569 -7.305148 -8.340520 0.328602 -15.696970 5.084801 13.194881 -8.103700 -4.753379 6.770642 8.588437 1.898356 47.049821 2.162748 19.341299 14.697702 -14.653022 2.688339 -9.436745 2.235797 4.058826 4.627786 -2.301514 -22.711023 -14.625687 9.420977 15.249657 11.015309 -16.265862 -3.167838 -0.541076 -1.243994 -0.734722 -1.487413 4.370442 1.188846 -9.727999 -2.955658 14.821645 30.817489 -6.487890 2.725706 9.388378 3.957256 -5.673761 -18.651294 -7.992073 -8.887336 3.517604 5.456006 3.914364 7.893257 18.483221 -16.923133 12.343801 -1.848949 2.927905 12.651053 7.362033 -16.202498 -15.889699 -6.021648 9.148301 15.621917 -6.518734 -0.183770 6.800180 -12.876857 -1.380087 4.510930 -2.403284 -2.136837 5.350729 1.682092 -5.869951 -6.703773 7.597637 -4.297686 -0.858660 0.295753 10.891550 0.307006 -14.227592 14.211403 0.646976 -7.138461 3.122855 -6.470905 16.724913 -11.698992 -11.988688 10.409551 -2.010667 -4.687522 -6.215174 3.072760 8.350889 4.963444 7.573129 -10.141510 -11.785013 10.642642 -6.526473 12.372571 6.104697 -2.117437 6.325031 -9.076422 -5.055831 -13.086452 -12.536968 -3.622962 2.865092 -15.299228 -2.742012 -2.917426 15.013153 8.238552 1.246342 -14.926097 2.922907 14.832528 -14.714139 -4.919655 9.211626 7.114088 -18.452403 3.349154 11.620842 -16.959331 3.488674 -5.248730 -2.668167 -6.558802 -12.698406 9.433005 5.619965 10.240389 -2.714881 3.121827 4.231893 6.915989 4.957449 5.718563 4.079198 19.643312 11.255113 -2.019177 -8.396976 -16.045313 6.828640 -17.804846 -19.382454 9.941501 5.407085 -11.816464 1.307452 2.283861 16.752865 3.910640 -5.059889 -4.892291 3.636857 +-7.699404 -6.428967 -4.865435 -17.833770 13.218114 19.100785 7.699407 -13.660193 -20.101763 -3.790792 9.609615 -25.099080 -3.832830 23.772753 -6.864801 22.725740 29.796850 3.002070 -12.694217 -1.073219 21.911690 1.497477 32.035309 25.914870 -16.676667 -0.361598 -2.561083 5.037826 4.668039 4.282399 0.934347 -12.521770 14.858897 -23.998537 -7.355812 -10.594549 1.604457 4.904482 20.728223 -28.456095 5.731345 1.173673 0.788159 -6.786140 -7.370186 -0.854059 17.673292 18.225514 0.403974 6.378384 14.251221 3.251807 -2.295672 5.785520 6.705088 5.413952 1.979093 -5.202060 -8.633279 -11.734043 -2.532351 -2.938044 1.590770 18.686437 22.735369 2.298590 -1.386119 15.834795 4.201231 3.923289 11.427841 3.915152 -4.642243 1.008128 6.626356 -29.224249 -1.695305 -26.405259 -7.060393 -36.066885 -12.090745 2.257331 13.451598 2.837457 15.027635 -1.691093 19.460957 -4.828705 -6.863484 16.866987 25.703409 -22.499724 -9.759193 -11.448762 -6.238267 3.842721 -10.985912 2.752346 11.266740 0.008652 -18.554402 -7.450187 8.007320 11.271286 -7.592272 -17.516636 6.662904 16.001591 -16.688758 -16.715634 1.475915 16.488989 -6.772293 -34.485155 -5.210299 -11.422944 9.552163 0.877613 -8.492248 -23.396324 3.579502 11.661901 -5.192126 -14.222416 -1.911676 12.818709 13.617423 11.062669 2.518443 5.636336 7.022581 38.436475 7.064521 -11.581945 4.166703 -2.949503 -3.265955 11.219319 -8.543368 -11.543659 0.431806 -21.637238 3.925964 20.023022 -11.766992 -1.496482 12.248054 9.666772 3.395996 68.368307 0.027458 26.883441 19.789891 -22.549218 4.208174 -12.627530 0.235372 3.577237 7.496364 0.625403 -33.396984 -19.444004 13.817341 21.460496 15.399834 -23.525472 -2.019196 -2.851791 -0.654325 -2.366606 -2.171536 5.136640 4.353701 -16.803227 -4.651477 18.981103 45.657838 -11.930602 1.473146 12.504289 5.417875 -6.519590 -23.811350 -11.052742 -14.323990 5.140879 8.030521 3.451264 11.037083 25.861833 -23.181251 17.953665 -6.130623 -1.579740 18.365282 10.789295 -21.795284 -20.467721 -7.453574 14.820150 22.066072 -7.832087 5.097776 7.585143 -18.199697 -2.509521 3.933645 -1.837844 -3.706529 6.859672 4.694295 -11.444978 -9.597234 7.905380 -3.980109 -5.273873 -1.186228 14.100233 5.373985 -25.843021 21.655443 2.321433 -9.066447 5.423311 -6.022324 24.273644 -17.557403 -18.384092 14.710741 -2.723804 -6.836128 -4.954048 3.279991 12.404541 5.962162 8.929976 -13.611620 -19.690882 15.229421 -5.360867 17.803815 8.651102 -0.808237 11.541336 -12.908642 -6.239148 -18.274096 -20.235754 -3.647174 1.496709 -21.296915 -5.222155 -5.010032 21.796191 13.216808 1.514062 -19.648170 1.816858 18.683379 -25.079873 -2.345973 14.285777 16.527044 -26.372515 2.655941 17.245050 -21.883071 2.234602 -7.350107 -3.761092 -9.760952 -16.590428 11.802727 4.713110 13.022544 -1.204652 3.635576 2.822422 8.097301 5.949997 4.988196 4.366057 25.001241 19.335056 -5.982868 -10.721098 -21.167284 9.688218 -24.869409 -28.011190 13.582288 6.005191 -17.022363 0.671416 4.538954 23.673711 4.594926 -4.535976 -5.189307 2.506451 +-4.551867 -6.302458 -1.621101 -10.963494 6.528240 5.536073 4.001233 -6.572302 -12.856285 -1.252905 5.351999 -11.273887 0.076585 13.238018 -3.222599 12.827218 15.673981 2.955965 -6.906088 -1.550745 12.749634 -2.071621 14.944857 13.523815 -8.779576 -0.507135 -1.468141 4.585017 3.514849 2.073106 0.658119 -4.369597 5.917337 -13.071187 -2.848544 -7.825158 1.291171 5.617588 12.017928 -15.837339 3.703015 0.930702 4.468754 -3.553826 -3.580833 -0.101897 5.642261 10.000573 -1.654767 4.751021 9.026331 0.560205 -0.997918 2.839492 3.101381 3.642473 1.589155 -0.454721 -4.210758 -5.216079 -0.995468 -1.772484 3.511955 9.392754 12.877008 0.390704 -0.724087 7.467005 3.931922 2.726497 7.605197 1.580721 -4.583666 -2.189486 4.051524 -16.726277 -0.801304 -19.784569 -2.076352 -20.511800 -6.759054 2.606148 8.747772 0.009079 7.182057 0.543969 10.007600 -2.839895 -4.440607 8.375687 10.682591 -9.914290 -5.149457 -6.000809 -5.589691 3.286344 -5.506939 0.060592 7.387133 1.708541 -9.249964 -4.076933 4.682493 5.728758 -3.953266 -8.213685 3.645076 9.317713 -7.934908 -10.229800 1.750153 10.195972 -3.508111 -16.257515 0.289930 -8.913831 3.900046 0.063870 -4.805860 -10.200060 1.402487 4.676196 -3.844463 -6.147871 -2.702232 6.938687 5.615682 5.615598 0.809967 1.364605 1.846260 17.965275 2.835269 -8.152741 2.043635 0.235479 -2.462573 6.024368 -7.300293 -7.001249 3.241721 -11.538836 1.357732 7.407920 -6.419344 -1.308974 10.038325 6.060106 1.378491 33.525334 1.008612 14.515266 10.360883 -9.540879 4.447112 -3.877613 1.871285 3.902600 5.007562 -1.780320 -16.082657 -10.442095 5.902670 11.064007 8.813472 -11.954014 -6.283002 -1.565253 -0.706369 1.218261 -1.057612 2.325701 0.973657 -8.852540 -2.180353 7.665580 21.220791 -4.771542 0.346392 5.535449 5.124789 -6.499038 -14.407970 -5.638424 -10.644949 2.538990 1.298224 1.290006 6.595481 13.662326 -17.269712 9.767944 -2.831995 0.522835 8.836532 4.527468 -11.903287 -15.709334 -4.501878 4.829692 12.686520 -4.768774 2.917255 6.304293 -9.702952 -0.763692 1.202799 -1.681095 -2.560282 3.857374 0.840824 -4.300180 -3.654963 5.176202 -3.461226 -3.547099 0.581731 7.658856 3.654607 -12.566348 8.438790 -0.011140 -4.534299 4.114579 -2.608306 11.700595 -8.848238 -8.720750 7.424567 0.480235 -1.764598 -5.189614 2.114874 7.284959 1.188630 3.558400 -5.632078 -10.289308 6.785028 -5.579782 9.306961 4.531551 -3.023125 4.923032 -3.789117 -2.638691 -10.521678 -6.381424 -4.088725 0.587212 -10.144919 -4.846269 -2.420205 11.016417 6.390993 1.710096 -8.623748 1.139073 11.428408 -11.989567 -1.458994 7.437249 4.930066 -11.744271 2.143434 9.324722 -13.037911 2.000644 -4.137688 -1.127153 -3.377692 -6.874611 8.203301 3.953506 7.296146 -2.853045 2.209171 2.056826 4.741013 4.673549 2.257022 1.851465 14.588047 10.144563 -2.226520 -5.708263 -10.899729 3.977124 -11.976913 -12.978532 5.130022 3.501382 -10.803261 1.890934 2.347334 13.326048 2.437396 -0.467581 -2.581201 1.704841 +-16.407693 0.664075 20.602627 -38.551438 33.379143 22.951051 13.184939 -14.241184 -35.636506 -15.354721 3.219465 -36.633415 -23.594497 50.705297 -18.514050 22.562107 63.652953 15.069211 -15.403354 -10.036112 39.106768 -15.978869 58.638825 51.475323 -44.627024 -2.150316 10.570934 28.321650 8.678158 34.587730 -13.205651 -29.397335 16.701261 -24.270578 7.079093 -32.524880 6.525613 5.903849 9.323201 -66.312053 8.529873 3.895531 -0.677598 -9.341290 -8.699876 11.585187 45.342256 38.453506 -11.587294 6.312420 31.224747 11.866632 -2.427632 12.935318 13.261477 10.565479 21.489041 -0.738594 -20.881088 -11.311038 -9.585774 -27.725986 6.087603 42.781652 52.549973 5.315867 1.768835 14.408879 -1.458323 10.595082 16.028963 8.287494 2.446011 8.464263 21.867245 -43.505946 2.343938 -71.908326 -10.014488 -85.356259 -27.213559 -18.142443 24.294300 4.631272 19.874294 -1.958323 47.456962 -2.620832 2.820921 28.191934 57.408483 -40.010409 -18.968856 -32.796767 -26.109603 14.097292 -24.431742 -0.761507 12.647197 3.504482 -35.645417 -28.335555 17.582634 14.010101 -16.512322 -16.257190 0.746346 40.956495 -43.212759 -25.879486 -25.113536 15.050676 -7.782882 -66.206566 -5.783211 -26.632843 29.133905 3.053663 -12.638611 -38.535660 10.886238 33.577973 -15.030413 -19.473107 -19.926312 39.641600 18.389475 5.559884 4.642319 -0.615594 8.023250 50.056091 30.397460 -24.301786 -4.434386 3.679977 -23.801970 2.598035 -31.376097 -14.403558 15.687907 -40.094444 0.687378 30.147233 -26.588241 -8.296196 19.750159 -1.102425 24.685321 122.518448 -7.432460 36.747716 19.697633 -48.276620 22.902419 -6.038100 -5.521481 10.864456 25.833143 11.157737 -54.984629 -39.629773 23.503261 44.242932 32.950489 -41.600063 -12.719062 -16.337926 -1.896644 -0.868611 -0.047625 13.100935 -9.227834 -31.273344 -11.919409 24.139311 77.217698 -20.291565 -35.372931 22.030952 10.938598 -16.848617 -44.315545 -15.641609 -20.745277 5.733629 6.124113 -4.719642 26.138193 57.548645 -85.884450 42.579151 -8.933660 -12.318676 36.486771 -0.277044 -24.611090 -45.933793 0.005709 37.458587 48.575316 -0.979042 1.266013 7.472983 -41.024875 -3.092163 4.448054 17.113085 -14.430949 19.336620 7.735639 -35.416270 -31.230602 -9.291742 -8.596896 -12.817277 -10.165128 21.822914 3.340668 -77.088493 51.374487 -3.634361 -11.252497 13.122014 -8.250487 31.662566 -43.055824 -51.097720 23.739046 -3.873119 -16.076739 -21.996788 4.625474 31.792703 2.746798 6.379893 -26.220026 -50.359635 27.350590 -13.140343 32.293796 18.001160 10.519796 38.579269 9.801496 -14.339808 -38.411402 -17.498172 5.562838 -8.320345 -31.975290 -11.013889 -11.483110 41.298467 45.854902 -0.773806 -15.468353 -4.904260 48.442280 -38.750584 -16.324766 33.209726 14.167648 -32.977324 11.935967 39.180007 -42.821165 -19.755101 -24.096532 -6.581647 -10.374930 -38.331698 19.575029 -13.613940 17.471972 12.967471 4.655093 -12.968336 19.078739 11.162045 4.308009 0.850980 55.009175 52.350367 -24.740753 1.429806 -39.203882 21.102092 -58.925184 -45.241807 13.555492 2.146267 -21.251071 8.030453 4.026060 38.104556 0.493817 3.238622 -5.358092 -5.502790 +-8.500717 -5.327132 -1.614545 -16.914209 15.766513 19.283353 8.702206 -11.870065 -21.078142 -1.459576 11.767186 -23.918903 -8.215200 26.637954 -9.445183 18.717945 32.754190 7.145862 -13.135331 -1.751190 21.681724 -0.853173 32.587286 28.396105 -19.009107 0.071821 -3.146936 6.950610 1.255701 5.826532 -0.404234 -12.891648 15.120527 -20.565733 -6.419592 -13.355050 1.989489 5.445739 16.671114 -32.346373 4.784618 0.301565 -0.383343 -6.437943 -6.573380 4.796043 16.832386 20.307224 0.665789 5.862670 15.400190 0.998240 0.990062 6.354681 7.563276 2.731893 2.899348 -0.566494 -8.489400 -10.484334 -4.141298 -4.666632 0.003806 20.166565 27.837588 2.682101 -1.957013 11.336279 1.764491 5.187559 10.507694 3.634479 -1.989644 3.645095 5.849134 -23.773942 -4.994301 -31.562571 -6.973092 -36.535112 -13.642152 1.034643 15.946767 0.726337 12.552490 -0.348588 21.690778 -0.769086 -6.457329 19.820842 30.169561 -20.783802 -11.443995 -10.288798 -9.267631 6.646515 -11.084441 6.621201 13.373438 1.130983 -20.571270 -11.565725 5.652487 8.882207 -6.946411 -15.334546 5.570829 18.784680 -15.566219 -14.260649 -1.270050 16.076803 -3.539871 -36.593345 -6.845771 -11.112280 11.870934 3.872601 -10.269567 -19.753409 5.430087 11.265457 -5.780577 -11.648882 -0.847196 14.982243 8.580802 12.138923 2.103231 4.176946 7.793884 33.497148 6.505379 -13.674508 4.088382 -4.523382 -4.715100 13.682906 -12.001297 -9.587924 0.820790 -21.397580 8.221891 16.253118 -13.158653 -4.975614 8.109848 9.779734 3.217694 66.197588 -0.901367 27.564327 16.652270 -23.290119 9.001837 -11.970995 -0.494223 3.861713 9.325355 -1.421312 -31.996262 -21.405091 14.082051 24.648904 16.911358 -27.384426 -2.505995 -3.043531 -0.500606 -4.181445 1.791991 7.335419 1.788016 -14.857863 -5.162493 20.551785 43.639239 -11.925796 -7.675456 10.713074 8.033163 -2.191233 -23.285712 -10.324648 -11.111730 4.951669 10.860705 2.777261 11.740713 26.099254 -32.904646 20.350463 -4.342537 -0.412717 19.780756 8.939589 -21.376278 -20.766825 -5.053771 13.913847 24.154298 -3.055145 -0.274288 9.081895 -19.931686 -2.439361 5.314102 -1.481136 -2.452734 9.247730 3.351941 -11.940572 -13.555691 4.202230 -4.801268 -5.229785 -3.165745 18.292499 2.965713 -32.632621 21.757424 2.575563 -9.486635 2.636244 -6.632332 22.390528 -18.482281 -24.024007 15.825926 -3.756346 -6.186221 -9.483681 2.720702 14.353588 6.778729 11.307049 -11.915754 -21.555893 16.652185 -4.310935 18.752415 8.962608 0.814732 14.778816 -7.332897 -9.911470 -19.316280 -18.596452 3.343517 -0.399400 -20.887472 -3.337195 -5.770282 22.533840 13.183841 3.517762 -19.767463 -2.649472 23.463577 -21.019817 -4.426136 14.109928 12.757093 -19.779392 4.046658 19.716358 -22.974039 0.398692 -9.412910 -4.051144 -11.730486 -19.063481 12.488015 3.201580 13.851242 -2.561256 3.573327 1.621620 9.106468 7.259941 6.983913 5.286424 25.968728 21.439688 -7.535990 -6.049472 -21.556995 11.329113 -25.619583 -26.712095 13.166701 3.527140 -16.198637 3.350395 3.995468 22.471360 3.112683 -6.488974 -7.661574 5.897743 +-8.842035 2.736717 11.509862 -21.746764 16.317025 12.400668 5.509716 -6.556073 -16.056309 -8.309960 -0.917756 -16.443014 -11.041400 26.272259 -9.305288 9.695138 35.318695 7.747956 -6.515195 -6.060194 23.066564 -10.963435 29.562719 27.165661 -24.987845 -2.471810 15.709964 15.209945 7.134561 17.311672 -7.462154 -18.167734 6.325123 -13.479434 7.704691 -20.647517 4.487600 1.590061 5.635345 -36.698096 4.283572 -3.184912 -2.650348 -5.725363 -5.538922 6.755690 26.979181 19.979327 -12.008433 -0.200818 19.065661 9.272968 -5.493048 5.236512 4.597776 6.243822 11.422014 8.582441 -8.419922 -5.001668 -3.568805 -11.481653 6.459825 23.862584 28.677596 2.577543 2.604444 9.305962 1.737857 4.802412 4.801617 3.773068 2.105309 5.742897 12.475901 -31.369565 -1.700054 -54.719027 -3.679602 -53.838100 -13.632584 -11.873699 8.223477 -6.901575 9.897670 -0.091264 24.811103 -0.725452 5.049878 18.350679 32.575209 -19.448087 -8.887458 -21.314979 -18.070263 9.533600 -12.431530 -0.027715 10.458535 -1.668249 -18.041243 -21.320068 8.888356 8.530358 -8.689326 -12.771005 0.845487 21.179159 -19.823976 -13.903412 -14.466667 6.265880 -5.338209 -37.521097 -2.001312 -17.320022 18.893376 0.276724 -5.742920 -25.078280 3.278160 22.286192 -9.057486 -11.620765 -4.679903 22.258336 12.286467 1.997553 2.422749 -4.305072 4.903977 25.936294 21.767323 -13.982176 -3.586995 2.626472 -17.274801 -3.710586 -21.683742 -7.123692 15.019928 -19.849225 0.638284 19.094091 -14.220218 -6.083832 24.328311 -6.227114 15.753827 79.007872 -4.192484 17.564294 8.268019 -28.059881 13.834710 -0.800638 -6.144252 6.080620 15.548266 8.000909 -36.588424 -20.275608 10.891002 23.286311 17.570631 -24.471404 -13.545378 -10.205679 -4.633720 -0.271116 -1.575192 5.525233 -8.578608 -15.934879 -7.149405 15.575116 40.911193 -10.743932 -22.234071 9.285919 13.770451 -11.859177 -27.553895 -7.256739 -17.377686 3.839006 3.439759 -4.639341 17.479194 30.387712 -57.998835 21.408067 -4.021055 -6.745546 17.080811 1.032117 -12.380927 -31.794053 5.208717 24.044936 25.881495 -1.916546 3.255401 3.166380 -21.119058 -1.597682 2.097511 10.882409 -9.066746 9.709400 3.126694 -21.786253 -17.849440 -2.079295 -6.422866 -10.560080 -4.364519 9.830489 -0.453909 -46.627693 31.421420 -3.871786 -3.608587 8.041844 -7.228863 16.861630 -25.260793 -29.990825 12.572890 2.481663 -2.443596 -11.225706 1.567953 20.289239 0.522268 7.241328 -13.864378 -34.112767 10.420933 -8.154264 16.681288 8.925731 7.480432 24.557226 -1.261776 -4.996835 -27.159462 -8.201048 4.177110 -0.225146 -18.533106 -12.693785 -5.343962 21.571860 25.480772 -4.097751 -6.694966 -3.651759 25.138070 -24.518628 -7.054625 15.417977 11.685036 -19.452066 2.946393 19.291990 -24.032827 -12.494920 -13.951951 -2.361694 -3.470102 -22.774048 8.533943 -8.877249 7.598917 8.584993 0.758503 -5.940232 10.907522 7.812230 4.429101 1.189727 25.329061 33.098843 -15.794264 -1.891668 -21.016562 9.983532 -34.746264 -27.013297 6.589738 -1.757284 -8.758437 4.247395 2.744573 19.395728 -2.580616 6.922545 -0.131847 -4.282791 +-3.468389 -4.614874 -4.070858 -7.179465 5.423274 5.141162 3.193564 -4.361195 -9.962727 0.259470 3.572726 -10.079187 -0.413731 10.034094 -1.934536 9.715187 13.481427 2.354332 -5.030693 -0.191445 10.034082 -3.564256 12.287120 10.607582 -5.592243 -0.719038 -2.784876 3.662692 -0.110513 0.314970 1.289098 -3.003246 4.047607 -11.675354 -3.130854 -5.881553 1.614192 4.288934 9.001399 -13.283777 2.542587 0.419287 3.894966 -2.764982 -3.893104 0.893529 4.777722 7.602374 -0.654971 2.717067 6.275039 -0.792106 -0.515644 2.563506 1.627926 2.430184 -0.803608 1.106148 -4.436313 -4.121643 -0.634803 -1.680699 2.765853 6.546137 10.224459 1.481291 -0.450833 6.571153 1.792571 2.173032 5.333066 0.663006 -3.911400 -1.581916 2.929963 -12.324647 -1.729545 -14.729605 -1.957365 -16.120081 -4.864146 1.511888 6.883011 0.623172 5.340880 1.104210 7.377400 -1.701723 -2.733364 9.211031 8.830495 -7.600417 -4.583596 -5.807095 -4.598418 2.600086 -3.529216 0.138624 8.435152 2.604127 -7.227218 -2.676355 3.953255 4.275653 -2.372261 -8.041124 2.904752 6.817435 -5.026280 -7.718149 1.251531 8.229863 -2.586221 -13.290291 -0.454062 -6.058481 1.481889 0.748848 -3.287787 -7.916657 1.008803 3.064493 -2.644351 -3.942315 -1.421712 5.868808 3.435912 3.403645 1.376229 2.194471 1.386780 14.319313 1.155365 -5.604390 1.520754 0.401251 -2.210754 4.263325 -5.636787 -5.963729 1.704902 -10.157579 3.471993 5.369610 -4.904146 -1.809187 5.732732 4.938358 1.679617 27.032516 1.285353 11.962480 7.646580 -7.778916 5.972352 -3.852678 1.325261 2.322164 3.829643 -2.329602 -13.236784 -8.081978 4.204213 8.089763 6.783488 -9.722048 -4.638471 -1.565445 -0.473992 1.129976 -1.120619 2.821618 0.174416 -5.328869 -1.267123 7.163784 19.488914 -3.303193 2.882488 5.419867 3.861666 -4.822687 -13.981296 -4.485570 -8.289459 1.053166 0.535830 1.233779 4.241625 10.347959 -12.250084 7.286354 -2.071218 1.905301 6.978538 3.641974 -9.594270 -14.481714 -3.836696 4.705988 11.187074 -3.602373 0.246855 3.693101 -6.588545 -0.490055 2.102667 -1.045933 -0.920410 2.974575 -1.688603 -3.343712 -3.045119 4.520262 -3.810281 -1.788687 0.767077 5.376026 2.499985 -8.176294 6.990553 -0.208621 -3.472218 2.437653 -1.648132 8.125499 -6.023700 -7.152204 5.690784 0.044889 -1.565194 -4.207425 1.815389 5.171638 1.984561 2.427417 -3.424819 -9.404473 6.304239 -4.248515 6.763166 3.189253 -2.037940 3.423149 -1.761721 -4.022458 -8.561434 -6.502806 -4.259647 -0.022948 -8.217682 -1.971472 -1.494470 8.510312 4.522095 2.373327 -8.337558 1.488374 9.866413 -6.353812 -2.576981 6.261970 1.202905 -9.853967 1.375996 7.698860 -10.964505 1.316363 -3.328567 0.376607 -2.397730 -6.125980 4.493078 2.425157 4.867481 -2.154594 1.313060 2.506946 3.594222 3.949120 3.062936 1.033669 12.919781 5.404913 -1.369780 -4.047144 -8.216705 2.741711 -9.327310 -10.312479 3.704874 5.054288 -7.688425 1.759362 3.757864 9.601817 0.654112 -1.598727 -2.411347 0.475506 +-89.158446 7.805707 93.834060 -214.870914 215.224316 138.998794 81.194194 -69.651624 -195.018978 -83.045777 18.398004 -220.066655 -144.136989 274.997556 -99.452158 144.758635 369.430258 64.997969 -78.090394 -54.327482 227.736926 -74.261387 344.908807 286.920668 -261.309034 -9.830000 62.998431 148.729317 34.409141 183.354585 -82.404584 -193.047753 106.474288 -149.263980 39.046540 -177.463666 40.052180 16.363278 75.118273 -376.519217 43.881559 22.237310 -21.618143 -48.300050 -54.906628 94.928767 268.759827 221.149228 -88.502180 42.420344 192.429027 60.024633 -22.335755 76.663942 49.678014 51.435855 104.043086 24.847142 -131.611195 -78.162780 -53.463361 -142.048363 30.616462 234.427166 304.270387 15.647067 5.846975 109.851196 -2.546550 55.957539 83.548754 54.882702 35.934501 41.093108 143.163986 -243.380914 -22.079605 -437.391540 -66.668818 -525.817107 -166.886334 -114.593553 135.066505 -6.568912 122.132088 -30.322767 281.027761 -10.969996 20.407221 173.751937 327.295402 -236.618712 -108.718326 -206.696425 -141.523812 73.516215 -141.220946 -7.085033 114.909134 0.508160 -209.798170 -166.248800 97.851515 71.393913 -88.503064 -126.905872 1.961591 218.125098 -233.827520 -149.575452 -162.743287 99.890280 -38.912851 -393.100769 -33.237791 -128.830482 161.784229 18.432179 -55.395572 -221.773340 54.383592 189.898440 -100.998218 -118.750715 -74.516909 244.224602 131.375706 40.838658 52.978836 5.534589 55.820987 305.676684 196.248946 -135.868732 -46.958248 15.666834 -131.555420 22.730852 -182.837779 -73.886619 104.308664 -237.189650 42.058886 182.714860 -145.980116 -44.594096 138.465129 -16.630987 142.430513 717.898575 -44.997103 221.431580 109.453350 -278.419841 148.357299 -53.697703 -40.679285 59.766124 145.866951 61.902846 -322.200265 -223.221027 147.092126 246.040064 184.783744 -276.365418 -71.408228 -79.868801 2.225336 -21.722654 -14.340191 96.031529 -28.079306 -177.405141 -60.741984 149.936310 469.219583 -123.631331 -209.292144 140.300968 102.025316 -91.664120 -266.359767 -104.300591 -141.988597 17.880859 61.924892 -16.728058 148.519739 331.090166 -509.037047 226.786355 -39.698387 -70.390844 212.004984 15.834126 -146.418657 -279.519979 -0.853775 221.983616 277.536366 -4.173058 21.296219 31.487258 -222.935275 -3.905206 29.192961 91.507500 -73.292418 105.373822 28.833441 -203.771517 -174.083424 -60.966142 -60.022690 -68.366645 -53.578187 120.596073 33.122541 -474.594500 296.413061 -29.591847 -77.583054 72.147673 -53.615574 202.672005 -236.848315 -293.122370 145.743735 -31.845327 -92.817335 -127.982663 35.534055 169.961860 25.762386 67.225572 -146.111736 -329.634149 168.687244 -60.771867 187.574792 102.279397 65.164942 234.261491 23.235164 -98.696906 -241.570008 -132.480075 47.591765 -37.571788 -189.414510 -60.648247 -62.600161 234.755280 251.497003 -11.275831 -88.265600 -57.389470 269.807986 -251.277753 -76.322496 202.393861 108.257366 -199.839199 67.510240 236.164190 -244.269264 -113.526221 -144.882859 -27.915178 -70.410168 -220.553435 95.117652 -83.690846 87.349037 82.369340 19.058526 -70.240928 104.070602 60.246213 23.912393 -18.313662 321.403519 331.115624 -159.152709 -0.656741 -224.407446 122.574655 -341.688358 -280.372317 92.877788 -11.258137 -123.969651 45.428758 45.997613 219.042465 -16.105005 7.424859 -42.777399 -36.543030 +-2.964403 -1.926131 0.919479 -7.569787 5.757815 5.108339 2.163172 -4.205109 -7.817884 -1.775560 2.522755 -7.384675 -2.038684 8.757824 -3.157896 6.558660 11.376474 1.602681 -3.797498 -1.118775 8.474664 -1.966545 11.067792 10.366000 -7.385767 -0.700799 1.307236 4.669621 2.261804 2.505163 -0.556394 -3.891402 3.131935 -8.024048 -1.039779 -5.645571 1.422119 1.680798 6.158040 -11.260628 1.934686 -0.783352 -0.930407 -1.899351 -2.312281 1.657548 6.423655 6.617754 -2.228317 1.794887 7.512643 1.949930 -1.461557 1.798549 1.220828 1.369615 2.289235 1.817997 -2.788661 -3.639746 -0.718815 -1.413878 1.793902 7.468435 10.162286 0.919256 0.193630 4.841931 1.992580 1.947432 4.389505 1.221594 -1.903088 0.731364 3.623829 -10.670733 -0.270789 -16.177717 -1.623465 -14.602437 -4.535153 -0.705067 4.763507 -0.820920 4.118428 -0.054855 7.300063 -0.638105 -1.198310 7.874832 9.265136 -6.717185 -3.434927 -5.386570 -5.074054 2.608925 -4.335399 0.530371 3.781486 1.512722 -6.343795 -4.866713 2.840407 3.446197 -2.816277 -5.520783 1.536179 6.501671 -5.603990 -5.456107 -1.015220 6.101736 -1.719645 -13.187521 -1.981873 -6.169969 5.740427 -0.115055 -2.482422 -7.372205 0.764164 5.145329 -2.568804 -3.755886 -0.663234 5.746436 5.232867 2.835759 0.598608 0.270205 2.056548 11.951246 3.568634 -4.912602 0.210933 -0.218973 -3.376243 2.298520 -6.059376 -3.196385 3.410412 -6.897347 1.602502 6.239157 -4.414829 -1.709136 8.180765 1.358338 1.920534 27.154476 -0.043919 9.541681 5.968655 -8.034962 2.932724 -2.281303 -0.015947 2.464957 3.558343 0.605989 -12.567141 -6.892458 4.262657 7.690147 5.741695 -10.089808 -3.534484 -1.192544 -0.986838 -0.122917 -0.710140 1.833519 -0.465071 -5.632398 -1.941132 6.634531 15.869043 -3.277212 -2.469434 3.895808 3.918239 -4.210586 -9.381661 -3.790759 -5.585853 1.878703 1.902625 0.790381 4.838210 10.274341 -15.137217 6.210736 -1.036366 -0.397094 6.386696 2.547909 -7.719881 -9.229095 -0.878209 5.581662 8.474494 -1.570909 1.301644 2.973969 -6.846281 -0.627791 1.454826 0.769127 -2.025197 2.972672 1.722419 -4.591086 -4.637612 1.567555 -2.235400 -1.885164 -0.776901 4.607764 -0.256323 -12.670025 8.218160 -0.293367 -2.732567 1.671752 -2.453453 7.792458 -7.342538 -8.032237 4.785985 -0.391133 -1.835132 -4.228681 1.179121 5.258329 1.830694 3.901637 -5.299134 -9.187521 3.821550 -3.123894 5.949964 3.021701 0.137490 5.777396 -2.613731 -1.494757 -8.952112 -4.284899 0.800842 1.117681 -8.206751 -1.615773 -1.629117 7.185178 5.991009 -0.167232 -5.782956 0.136207 8.392623 -7.602433 -2.181676 4.872255 6.220626 -8.845968 1.254406 6.096714 -8.594308 -0.625340 -3.560387 -1.551405 -2.292673 -6.579066 4.976311 1.417317 4.341047 0.390464 2.120322 0.204857 3.477646 2.474415 1.799199 1.297221 9.823431 10.593267 -3.233413 -2.526655 -8.233281 4.060843 -10.109793 -10.202036 3.669666 -0.510027 -5.539720 1.166840 1.172485 8.905676 0.840843 0.258326 -1.318129 0.788716 +-39.019493 -30.660975 -22.945837 -76.201780 65.655713 81.196164 32.432729 -65.674082 -91.331252 -0.541493 51.192242 -99.781241 -21.577010 106.452607 -39.231059 85.814918 118.142782 8.350417 -59.982449 -12.233596 102.342902 23.444778 135.033586 112.076915 -87.210321 -5.319353 3.317081 21.251562 36.705854 8.722470 -2.659440 -46.160348 63.328901 -99.702538 -39.975426 -42.325283 9.744609 14.853867 91.181888 -109.851955 21.809832 -10.395441 -8.886037 -23.754625 -32.691854 22.613885 70.783745 84.842707 -18.059350 33.686828 77.104879 17.348968 -16.703657 22.864282 18.683753 7.471481 10.568609 20.796825 -27.505240 -61.353413 -12.576282 -6.927895 2.698189 92.055815 104.281093 14.499911 -6.040279 66.975916 18.371823 20.882756 51.404876 23.042047 -3.344224 13.192385 46.733525 -92.330992 -14.116990 -133.239445 -31.506048 -156.535156 -42.473563 12.281197 58.729091 -29.187745 60.142224 9.740526 95.129973 -6.327275 -38.942593 92.901033 109.877247 -93.307723 -41.509466 -42.580929 -55.277669 21.078152 -52.967315 34.586908 43.172326 7.887617 -85.151526 -56.215783 3.146974 43.676114 -36.821487 -71.737910 21.875982 60.108316 -74.371542 -54.244678 6.894397 58.389709 -20.158482 -146.016551 -67.657456 -58.339298 66.709923 -3.152289 -39.109451 -87.781215 11.329858 45.647079 -27.038658 -58.799137 31.185721 36.515741 60.346202 58.064877 4.515497 6.770593 35.159180 154.441897 29.838542 -59.815954 14.292247 -21.801087 -8.034864 56.028618 -46.836152 -36.811222 26.899269 -87.923679 44.561445 79.152727 -51.452103 -28.177152 77.679043 30.032904 12.153106 263.721474 5.205873 113.346552 81.024755 -96.377123 -7.674381 -55.432846 6.664016 33.486726 37.899178 3.628372 -100.800775 -87.685361 69.932130 99.755766 67.292100 -109.858657 -3.759184 4.094671 0.685268 -16.384285 -6.679052 22.518583 7.428707 -68.490585 -23.205455 89.112178 162.451033 -55.144034 -21.930624 54.299139 45.125064 -20.951500 -65.625540 -45.631185 -54.112990 28.007395 59.548917 13.558066 59.930517 119.973555 -130.831450 74.433227 -15.244962 0.842557 51.116516 53.980784 -97.997779 -43.655193 -16.361015 55.253977 76.079488 -11.953007 4.842327 41.239258 -86.886221 -9.757293 25.800541 -7.678372 -23.602500 41.135949 30.967201 -44.605973 -54.523818 30.821758 -12.478886 -18.200037 -4.450409 70.135499 -20.632685 -138.475290 90.141656 7.084455 -44.750806 5.400777 -35.869192 91.610310 -83.319599 -94.066494 66.100916 -19.618993 -27.730034 -28.732342 18.022692 53.022773 45.773028 59.881256 -70.143286 -93.903189 70.065083 -25.167222 82.335159 38.742495 0.163133 60.993551 -89.144479 -23.181776 -96.402367 -55.106451 18.863676 15.480506 -95.476558 -20.104599 -19.739746 92.755667 59.835754 -3.752623 -78.578439 -3.016619 81.434191 -96.641566 -16.338310 58.098894 94.824660 -102.490390 25.713903 70.990438 -84.762385 10.734128 -34.076168 -23.772527 -49.752463 -76.329113 61.238729 22.204265 61.727143 -1.873380 21.307165 13.550325 41.821820 24.296327 25.902724 25.432606 98.050020 96.172853 -41.760648 -40.506571 -101.934202 53.487367 -114.803484 -132.934390 71.157512 -4.684417 -70.036973 -0.428895 -5.525535 103.024971 21.768161 -24.761935 -27.725925 27.065666 +-5.049055 -5.083681 -1.620120 -11.371318 7.330054 9.616791 3.636083 -7.003473 -12.391882 -1.256278 5.221354 -11.839375 -1.071189 13.623384 -4.730259 11.885932 17.124104 2.198541 -7.059840 -0.596011 13.990123 -1.223694 16.589108 14.769863 -10.405829 -1.512579 -0.031278 7.253224 3.698961 2.665138 1.144511 -5.438686 5.584658 -13.784450 -4.255468 -8.709377 2.747710 4.377345 10.776654 -17.043190 3.265800 -0.219989 0.140891 -3.468482 -4.347392 -1.855702 7.289559 10.951372 -2.544505 3.331658 10.312923 2.405039 -2.454040 2.962644 1.573247 2.371834 0.972517 0.737693 -3.963226 -6.587231 -0.611885 -2.581668 3.130780 10.989015 14.677453 1.585626 0.441542 8.209342 2.219108 2.658476 7.195047 1.486352 -4.986811 0.384678 5.101044 -16.627914 -1.119912 -19.799211 -2.561582 -18.613363 -6.163644 0.986184 7.438963 0.920739 7.730772 1.612967 10.657136 -2.487302 -3.579339 12.169439 12.422506 -10.740183 -5.355699 -7.984021 -7.421481 4.200573 -6.818270 1.120469 4.899915 2.788085 -9.496114 -5.745878 3.466419 6.667143 -4.144909 -9.702353 2.758036 9.449727 -9.313041 -10.132626 1.304387 10.412126 -3.895834 -18.642305 -5.480150 -9.790949 6.840271 -0.456707 -3.562683 -11.526518 0.871032 6.739154 -2.545663 -6.890423 0.035313 6.900520 6.833948 5.346632 0.867382 0.757369 2.677765 19.008777 3.995028 -7.226571 1.052403 -0.478552 -3.474333 5.275624 -8.264213 -5.522472 1.749048 -12.193715 2.826928 10.885630 -6.477001 -3.426080 9.027153 4.676132 3.164075 41.919940 1.757949 14.689921 11.091430 -11.641721 3.741363 -4.744895 0.960912 4.299132 3.851965 -0.919224 -19.748289 -10.755865 6.353746 11.376512 9.053085 -13.190500 -4.845256 -1.606507 -0.634203 0.196043 -1.623886 3.331183 -0.363439 -9.039294 -2.572872 10.774972 23.279764 -4.927718 -1.787492 7.218446 5.239268 -7.771938 -15.586265 -5.722005 -8.847941 2.613250 4.528464 0.700583 6.788939 14.759674 -17.887059 9.497660 -1.000460 1.038601 9.033615 4.589327 -12.253779 -13.156363 -2.810932 6.978631 13.054334 -4.381395 2.215128 5.652128 -10.268642 -0.773460 3.215035 -0.838370 -2.153731 4.394744 1.834119 -5.838115 -6.654967 4.903447 -3.917829 -2.905749 -0.531809 7.754174 -0.537856 -13.980969 10.875083 -0.364299 -4.918880 3.674017 -4.341993 12.751308 -10.830890 -11.329642 8.878008 0.237545 -2.402902 -5.437651 2.635735 8.019579 4.980244 4.697610 -7.204971 -13.163092 6.343844 -5.236367 8.819923 4.409990 -1.046505 6.181752 -5.577094 -2.346782 -13.249967 -7.427779 -1.367489 1.825274 -12.133265 -6.238925 -2.087507 12.011879 7.758353 0.269832 -10.085616 0.859178 13.116160 -11.224598 -2.969143 7.245768 7.059645 -13.749019 1.308274 9.297076 -14.035501 1.017653 -4.384257 -0.909847 -3.699154 -9.641100 7.593054 3.189405 8.104905 -0.671362 2.938858 1.281530 4.918799 4.895605 3.738454 2.208170 15.538936 11.460626 -2.817324 -5.472961 -12.159142 4.486169 -14.539744 -15.195770 6.657656 1.851342 -8.805633 2.163492 2.428644 13.886623 2.550678 -0.013826 -1.464906 1.085715 +-3.463708 -3.722562 -0.072208 -8.483671 5.543385 5.589611 2.851004 -5.109447 -8.867603 -0.263615 3.751609 -7.580447 -0.336200 9.863266 -3.257427 8.522905 11.836496 2.171126 -4.891618 -1.510469 9.484097 -0.895321 11.435542 10.434499 -7.897659 -0.641428 0.586494 3.622538 3.570057 2.333550 -1.088283 -3.454693 4.477331 -9.364939 -1.926442 -6.164970 1.422471 3.043641 8.146998 -11.746139 2.554953 -0.962521 0.840148 -2.365793 -2.685355 0.898698 5.332491 7.764587 -2.080554 3.002161 7.361316 1.423420 -1.528744 2.124357 2.035320 2.756741 2.153444 1.535739 -2.658361 -4.080343 -0.693298 -1.327487 2.438462 7.956822 9.941941 0.660005 0.031285 5.526079 2.739648 1.592025 5.322495 1.236042 -2.390673 -0.231892 3.546379 -12.181257 -0.364581 -15.157413 -2.037869 -15.066292 -4.566607 0.609107 5.276624 -2.212717 5.654868 0.522440 7.995271 -1.302715 -2.554835 6.403332 8.794597 -8.346647 -3.841891 -5.014754 -5.041352 2.500667 -4.648242 0.938666 4.634821 0.539459 -7.023992 -4.760280 2.999228 4.612556 -3.213731 -6.140014 2.240805 6.846341 -6.173535 -7.185688 0.435060 6.396523 -2.973452 -12.539760 -1.535865 -7.028653 5.343119 -0.529408 -3.019694 -8.505598 0.638991 5.147984 -2.922523 -5.157127 -0.393209 5.266056 5.268806 3.996627 0.368750 -0.130621 1.740467 13.133996 3.309414 -6.183898 0.854014 -0.173051 -2.712385 3.737518 -6.266210 -4.209439 3.287054 -8.261101 1.331308 6.618939 -4.876138 -0.929290 9.320125 3.512082 2.049977 26.612668 0.629077 9.917876 7.077424 -8.228521 2.454474 -2.844467 1.027812 3.430091 3.899546 -0.807898 -13.062672 -8.082026 4.405092 8.418182 6.559066 -9.694831 -4.125006 -1.632494 -0.855049 0.266296 -1.273689 1.802551 -0.499752 -6.436501 -1.979866 6.298892 15.596789 -4.170495 -2.037842 4.165644 3.991174 -4.892644 -9.612915 -4.312677 -7.157982 2.359283 2.195479 0.772547 5.784406 10.752309 -14.506037 7.205972 -2.244732 -0.402074 6.296380 3.375694 -8.115595 -9.116366 -1.786042 4.483569 8.872233 -2.525980 1.803344 4.799072 -7.648983 -0.655152 1.120747 -0.315841 -2.176350 2.928948 2.206421 -4.450374 -4.020303 3.175376 -2.108918 -2.855066 0.035212 5.750614 0.146455 -11.999059 7.422570 -0.104174 -3.460948 3.299214 -2.780804 8.332759 -7.861265 -7.662423 5.839215 0.803891 -0.514520 -3.747380 1.720506 6.111346 1.325115 3.826183 -5.509367 -9.362648 4.441139 -3.847184 6.680987 3.427655 -1.031125 4.801090 -4.668042 -1.524959 -8.860239 -4.453073 -1.055398 1.217347 -7.971126 -3.455327 -1.834528 8.615813 5.883971 0.456966 -5.630624 0.497131 8.598677 -9.252703 -1.258713 5.409218 6.110601 -8.619390 1.249368 6.755732 -9.527227 0.275334 -2.913579 -1.706032 -2.422137 -6.093260 6.218067 1.981638 5.839560 -1.080604 2.216027 1.048228 3.999549 2.919344 2.089716 1.754022 10.171020 9.217410 -2.655100 -4.038501 -8.392101 3.744487 -10.129758 -10.308006 4.444766 0.732976 -7.158398 1.604813 1.128064 9.819589 1.555645 0.039595 -1.347945 0.850388 +-6.818426 -5.457269 -1.571940 -15.172035 10.986486 13.993328 5.623006 -9.897723 -15.436844 -2.683864 7.083976 -15.806139 -3.670327 18.783015 -6.258768 16.140544 22.325792 2.355892 -9.096694 -2.221237 18.563990 -1.337200 24.410100 19.434232 -15.105317 -1.507924 1.703394 7.612874 5.181357 4.021413 0.334327 -7.858901 9.346801 -18.387435 -4.403086 -9.677234 3.014171 4.086994 14.165051 -22.037021 4.019968 -0.893010 -0.977665 -4.573761 -5.993824 -0.838133 12.663607 15.136685 -2.725534 4.811624 13.728208 2.598358 -2.841959 4.406916 3.802296 3.549452 1.722948 -0.479271 -5.652800 -8.674717 -1.564013 -4.229154 3.037330 15.369739 19.101195 1.086612 0.226956 12.022713 2.102030 3.787432 9.061383 2.778229 -4.184967 1.177439 7.623359 -23.418338 -2.128854 -27.298386 -5.048549 -27.887146 -9.423450 0.099134 9.434587 -0.301029 11.421282 1.577826 15.548110 -2.128872 -4.703649 14.137504 19.236832 -16.088246 -7.450223 -10.392772 -7.711054 4.549306 -9.731706 2.130750 7.627629 1.273591 -13.873589 -8.195080 5.560339 8.903388 -6.207506 -14.123253 3.305973 13.459036 -12.846943 -13.366626 -0.476133 11.851699 -5.602002 -27.180090 -5.133568 -11.073932 11.188684 -0.321793 -4.773754 -17.213298 1.860920 11.141491 -3.859474 -11.102731 0.493620 10.100419 10.716696 7.599389 1.869842 2.270838 4.273097 28.078312 7.960522 -9.119566 0.773601 -1.283806 -4.795680 7.605388 -9.238614 -7.291652 3.571356 -16.476657 3.174644 15.603267 -8.755584 -3.478691 14.064750 5.671818 4.505886 55.451865 1.038940 19.339137 13.951626 -17.446911 3.849172 -7.856830 0.614277 5.298335 6.539789 -0.510121 -26.796564 -14.934599 9.711552 16.125959 12.093671 -19.452239 -4.828529 -2.822438 -0.445447 -1.374519 -2.252711 4.660995 0.660082 -12.303492 -3.566027 15.032489 32.313940 -9.211606 -3.205424 9.925896 6.617623 -8.116915 -19.690852 -8.301583 -11.487722 3.498214 6.183395 1.699334 9.249557 20.504126 -23.778887 13.222475 -3.309353 -0.650656 12.450918 6.576905 -15.892392 -17.123247 -3.090463 11.167460 16.486567 -5.080027 3.887343 6.758296 -14.696377 -1.019801 3.247562 -0.420703 -3.040927 6.073625 2.706980 -8.923004 -9.391119 5.715711 -4.301868 -3.999454 -0.078145 10.531525 0.973004 -23.913564 16.942150 -0.431959 -7.224088 5.284291 -5.308423 18.679665 -14.891500 -16.509508 12.167375 -0.877401 -3.694432 -6.300162 3.213532 10.792367 4.828749 5.871941 -10.562300 -17.165626 9.647929 -5.761233 12.773611 6.431734 0.011502 11.041518 -10.395650 -4.560510 -17.231524 -11.416904 -1.183301 1.707522 -16.749025 -7.122114 -3.273101 16.967833 11.390933 0.597181 -12.673973 1.135726 16.354867 -19.657736 -3.593471 10.704628 14.570326 -19.104256 2.683201 13.223357 -17.364045 0.095209 -6.173237 -2.169407 -6.085882 -15.182368 9.901613 2.911259 10.849944 -0.317947 4.205634 1.584281 6.868385 5.450353 5.051593 2.138297 19.553629 18.373094 -6.372822 -8.614715 -16.716754 7.341222 -20.874496 -22.142683 9.889807 2.853746 -11.141437 2.222481 2.575141 18.420640 3.315211 -1.735837 -2.853908 0.550656 +-7.036012 -2.326500 8.273037 -19.793342 22.067663 8.689022 7.990744 -3.967176 -16.920646 -8.833631 1.934319 -13.992449 -13.287512 23.411777 -9.718447 14.340504 28.068308 3.840970 -4.856918 -7.132955 24.866458 -10.902392 30.367252 18.992116 -27.607100 -1.697101 3.859478 17.277785 7.541680 17.917584 -3.024078 -11.335175 9.598501 -14.613613 6.993133 -16.828381 7.910731 3.942375 2.208838 -30.499426 2.356800 3.034603 -2.079729 -0.427858 -5.095358 12.616438 18.783136 20.988401 -13.588337 7.246377 20.751696 2.693433 -1.096301 8.810523 -1.570033 2.129044 6.021929 0.227467 -13.796637 -6.478291 -4.420177 -20.631993 7.566491 19.172191 28.877434 -3.262252 4.055242 14.528900 -1.808751 6.505386 12.207737 4.911711 1.299237 -2.683615 19.001231 -22.064423 -4.683424 -39.594035 -7.373473 -53.131623 -13.922335 -14.829517 13.316977 -0.718177 11.138826 -1.497044 25.240814 2.471594 1.610997 18.738658 23.772914 -19.163861 -8.778039 -23.456906 -12.763126 7.161154 -15.551281 -4.592215 12.442685 3.745177 -15.949306 -11.497690 6.666258 4.951348 -6.776706 -15.893706 -5.512541 21.407200 -24.509610 -15.433961 -15.414755 10.613787 -6.104125 -34.012372 0.724436 -11.217004 18.407658 -0.609768 5.399557 -12.115066 2.213342 18.964310 -7.250727 -9.318794 -7.728878 21.887379 12.920392 3.954851 6.317388 2.572948 -0.304927 23.448079 22.602857 -9.114395 -11.417733 4.191065 -10.392042 3.875699 -16.319075 -4.789627 15.877206 -22.606938 0.949958 13.715356 -9.179580 -6.188943 13.271448 -2.506915 16.402031 55.186505 0.150731 17.144128 9.336968 -22.266420 11.728725 -1.078747 0.329059 12.231213 12.854943 -1.238991 -24.057430 -20.787727 9.734744 16.861558 14.714764 -25.215684 -9.913629 -8.559127 1.884004 -0.282116 -7.401382 12.782850 -4.954877 -14.699981 -2.814194 7.623075 36.138509 -10.533172 -15.907270 15.602346 10.704780 -16.495150 -25.207810 -11.390776 -11.808545 -1.308275 3.845901 -1.561769 9.927511 28.311136 -42.636054 18.711086 -2.525900 -1.629514 14.387329 -2.349059 -8.838819 -30.597615 -1.266036 15.931149 21.496006 -2.705132 1.874373 5.764439 -18.575950 5.577933 1.847507 7.336020 -2.413403 6.893193 -1.315107 -13.495697 -17.177141 -4.428651 -6.495605 -0.654782 -1.162061 8.591409 3.315639 -40.652690 21.236661 -10.973128 -9.806607 10.134059 0.079694 21.241607 -19.598491 -24.410411 13.816782 -1.659273 -12.510784 -19.064145 6.538689 15.620116 0.423808 -0.578011 -10.827290 -29.378205 13.094852 -10.286222 10.339162 9.032852 5.774725 24.982429 2.130852 -11.708387 -24.204063 -9.755014 0.275755 -5.518030 -14.264635 -5.328251 -2.271627 20.169782 22.054406 1.669813 -3.454685 -0.888085 26.667960 -23.435993 -12.250033 20.824589 10.563260 -15.212076 11.910174 22.528785 -22.093567 -12.275088 -12.261132 2.163894 -0.674087 -17.514854 10.916442 -7.977354 8.679163 5.698071 6.971529 -7.149059 10.460443 5.434091 3.081428 -9.524426 33.261985 33.599893 -17.351888 -2.329311 -16.792476 9.571419 -29.547010 -21.385482 5.060284 1.539503 -5.185663 11.582763 6.216653 20.713980 1.656220 -1.567240 -2.752806 -7.594476 +-2.564559 -3.652415 -0.657244 -6.789698 3.381008 3.040507 2.070340 -3.661700 -7.394449 -0.930389 3.321389 -6.720953 -0.100030 7.450400 -2.244942 6.311200 8.286679 1.495579 -4.126155 -1.018418 6.651561 -0.288066 8.164776 7.634372 -5.360470 -0.282644 -1.488297 3.107560 2.720682 0.985130 1.372686 -2.087330 2.765796 -6.231560 -1.777570 -4.058703 0.863477 3.291704 5.504016 -8.711853 2.146494 0.938197 2.213022 -1.869115 -1.769410 -0.092608 3.170924 5.792973 -0.977564 2.523986 5.285321 1.021913 -0.455977 1.500227 1.410109 0.933656 0.770286 -1.514446 -2.002861 -3.114042 -0.237466 -1.172907 1.861584 5.784548 6.949419 0.513414 -0.421533 3.753575 2.468887 1.723169 4.652199 1.012451 -2.880717 -0.847086 2.164949 -7.990980 0.413338 -9.400144 -0.612578 -10.715769 -3.497426 1.712413 5.929419 1.561570 3.179072 0.256874 5.837632 -1.380816 -2.708082 5.731176 5.802408 -4.799700 -2.751232 -3.130662 -3.741091 2.367363 -3.084547 0.346858 2.577160 2.560865 -5.117950 -1.345891 1.549953 2.793156 -2.492877 -3.768915 2.037343 4.778556 -5.297092 -4.617719 1.796568 6.404013 -1.120119 -8.964724 -1.497574 -5.424894 2.699911 -0.724304 -2.528883 -4.597420 0.463549 1.924888 -1.900442 -2.130363 -3.331528 3.037858 2.950198 3.219497 0.057562 0.954941 1.155763 9.197496 0.335823 -4.767371 1.134352 0.104628 -0.569187 3.436010 -3.673991 -3.540584 1.572007 -6.221196 0.791070 3.791979 -3.528994 -1.655898 3.478271 3.369525 0.667454 18.339628 0.915970 8.005765 6.428839 -5.065536 0.973581 -2.070808 1.222032 2.656745 2.362291 -1.112049 -7.185733 -6.004468 3.280417 6.385699 4.945915 -5.446158 -2.024489 -0.100794 -0.738994 0.667244 -0.383873 0.901082 0.085339 -4.892282 -1.425378 4.694254 10.479668 -1.423940 0.618028 2.939116 3.080809 -3.512417 -5.876561 -2.800562 -4.560487 1.714965 1.490616 0.821879 3.988626 7.779819 -8.989038 5.585316 -0.575559 1.204112 3.873851 2.221521 -6.511277 -7.745356 -2.664951 2.551789 6.687290 -3.270590 1.356683 3.868307 -5.648016 -0.530591 1.201563 -1.183120 -1.691805 2.233915 1.173091 -1.914124 -2.161818 2.708754 -1.988348 -0.626237 -0.178750 4.534352 1.034684 -6.397868 4.755102 -0.241498 -2.664699 1.561082 -1.914145 6.272699 -5.402207 -4.666302 3.851334 0.108687 -2.095654 -2.889382 1.216761 4.139438 0.670213 1.992705 -3.529317 -4.599207 4.052359 -3.269862 5.015064 2.682784 -1.855602 2.473913 -2.537950 -0.817461 -5.056409 -3.555070 -1.549255 0.310811 -5.570008 -1.023688 -1.386236 5.743659 3.618462 0.525092 -5.240970 1.914583 6.298918 -5.036666 -1.697735 3.623870 1.864796 -6.352990 2.098207 4.841037 -7.138955 1.538699 -2.919543 -0.571640 -1.737839 -3.940490 5.366079 2.772798 4.519757 -1.352707 1.497651 0.757798 3.045736 2.507708 1.021405 1.763794 8.192749 4.754594 -0.453092 -2.647313 -6.305097 2.286780 -6.874709 -6.892125 2.784545 1.462239 -5.305607 1.099077 -0.030707 7.501405 2.049378 -0.242138 -1.487519 2.074742 +-9.733067 2.402042 8.116223 -24.900513 21.665072 20.638976 7.206668 -11.628361 -21.671123 -4.281312 3.799495 -26.255698 -12.376186 31.369156 -11.043258 13.315674 37.522210 4.631843 -11.949434 -2.703744 25.118914 0.847655 33.836570 29.833092 -26.469244 -1.266763 8.804189 9.812411 4.074435 17.965458 -9.459507 -23.318165 8.753111 -13.702665 1.139698 -15.391578 2.085677 -0.617931 13.175993 -36.792937 5.974538 3.533759 -1.947689 -8.204588 -5.919830 3.713513 29.567873 22.680006 -9.594054 -0.534373 20.452469 11.174515 -5.853365 5.539436 8.400996 4.192866 13.078975 8.893767 -9.812569 -11.036944 -5.274034 -3.006062 1.283807 27.617171 30.184961 5.584332 -0.332900 9.329911 2.451099 5.609526 6.112058 5.483000 4.211556 9.416528 12.031229 -20.082314 -1.289955 -44.761428 -3.550073 -47.109893 -14.274676 -5.958866 11.422796 -2.599370 11.637918 -4.027941 28.594159 -2.621926 -0.221161 20.536030 37.047562 -22.043507 -10.385708 -19.787939 -22.446380 7.821714 -12.318450 3.879409 8.916317 -2.511800 -23.265041 -20.600723 2.877334 9.589089 -9.853774 -9.973378 4.100329 20.284933 -19.618154 -11.355700 -8.218865 11.835160 -3.509962 -42.244984 -15.921219 -17.114628 11.702566 -0.576655 -11.003107 -26.597083 5.528289 17.968084 -13.099746 -12.551801 -3.593189 21.039949 15.129768 7.697190 1.583367 -5.047276 10.039711 31.002611 13.363323 -17.495351 1.303017 -3.309166 -9.588888 2.300848 -18.587965 -7.148535 8.903436 -21.276462 6.721281 21.383894 -15.924163 -4.734509 13.908495 -3.014273 11.813294 81.725073 -6.657343 25.788310 11.422509 -31.401521 11.206316 -4.160449 -7.151975 3.371680 14.207324 9.767885 -30.281529 -23.463021 19.303642 28.460614 20.114214 -25.475931 -3.117935 -4.909745 -5.321620 -3.822618 1.317763 5.327358 -5.318813 -19.464906 -9.451345 20.664989 46.206385 -11.686008 -26.551410 13.521133 17.075384 -4.836814 -16.303644 -8.818683 -17.023031 6.348451 10.675622 -3.963735 22.142925 35.408234 -57.377519 24.577417 -1.107970 -9.059021 20.840996 4.368033 -19.365409 -18.435999 1.804888 25.019782 26.773807 0.060099 -0.164181 2.666736 -23.763552 -2.824577 4.335740 7.210239 -10.461246 11.681516 5.850358 -21.636810 -18.782726 -4.415416 -6.889801 -9.857182 -9.171243 13.778136 -2.895753 -47.943400 34.487014 2.941667 -4.046858 1.770756 -10.661120 16.802920 -25.439566 -31.621732 13.796601 -2.822438 -4.971476 -6.830316 1.725884 18.374410 7.705920 16.521332 -19.807264 -34.438944 17.042467 -5.121384 24.012323 10.755496 7.228330 19.304232 -2.916165 -5.059898 -26.039779 -14.561990 11.629729 3.734364 -24.356852 -6.718134 -8.385408 24.683651 22.511257 -5.242383 -14.417087 -10.559604 24.194478 -20.179807 -3.655231 17.163259 7.867374 -25.912299 1.029065 22.055308 -21.269988 -8.142622 -15.465978 -4.178509 -12.940988 -24.169596 9.491737 -2.948279 9.864574 7.617878 -0.506202 -6.245250 9.612290 7.184141 2.273968 5.748908 26.868683 25.394643 -15.227033 0.474435 -26.419968 14.811834 -36.364634 -33.617775 13.956738 -9.569195 -16.143153 -0.291741 -1.383779 23.171901 -2.677137 6.281347 -2.756723 2.002635 +-7.610666 -7.780701 -3.263724 -19.047919 11.669623 15.954672 6.055486 -10.363106 -20.291804 -3.144133 7.488951 -20.190792 -1.025802 22.177572 -6.161258 19.887013 30.398917 3.812005 -10.777299 -0.211387 21.683776 -4.746948 26.167894 24.808164 -15.436740 -1.529734 -1.278882 10.302936 4.038284 6.255492 1.635502 -10.685833 8.858433 -21.857246 -6.244173 -16.000352 3.320367 7.811068 17.338451 -30.453765 5.916446 1.184353 1.386003 -6.418260 -7.064245 -2.330539 13.218875 17.068069 -3.110815 5.124392 14.744805 3.913223 -3.720139 4.902963 4.179753 5.660422 3.203848 0.799499 -6.734182 -9.656373 -1.141016 -3.429278 5.510211 16.731192 22.880163 1.861451 -0.038981 13.723634 3.747230 3.584306 11.172336 2.165023 -7.929482 -1.353253 6.752163 -29.411071 -1.885424 -31.117418 -3.759305 -33.127063 -10.566766 2.241294 12.153489 2.326759 12.617441 -0.584299 16.794909 -5.867216 -5.301861 18.400326 20.595770 -17.624963 -8.377868 -13.288775 -10.250969 5.830890 -9.621279 -0.289655 11.329136 2.504798 -15.328081 -7.848552 9.352682 10.929421 -6.636740 -16.620164 5.722475 15.505762 -14.776403 -17.100766 2.567481 18.063109 -6.870876 -29.609160 -5.051018 -16.564930 7.261145 -0.789168 -6.428179 -20.249130 1.949336 10.877011 -4.725593 -11.290402 -2.602208 14.064243 10.822685 8.285696 1.875785 1.898853 4.116932 31.405812 6.023425 -11.605450 2.584971 -0.209417 -5.750639 7.963359 -13.282944 -10.259124 2.545159 -19.768683 2.193958 17.793558 -10.580494 -3.015118 14.879677 8.223885 4.523283 73.300092 1.746284 23.864294 17.673869 -19.459613 8.507604 -7.479341 0.679663 5.444557 6.534029 -1.226030 -37.128471 -17.081165 9.988472 18.207262 14.862030 -22.149218 -8.430067 -3.632050 -1.845853 0.951334 -2.774511 4.211404 0.792161 -15.254099 -4.175457 16.471298 42.982724 -7.691625 -0.107466 11.464214 8.437150 -13.681380 -29.452127 -9.486419 -16.100494 3.916758 3.930906 0.603897 11.071881 23.427363 -29.378393 15.798992 -3.572788 0.367493 16.449419 7.666917 -18.766333 -29.214353 -6.499094 12.328658 24.513510 -8.933394 6.191340 8.229619 -15.936053 -1.474535 4.226137 -1.864394 -3.529032 6.305224 2.288746 -10.433907 -8.620608 8.516618 -7.094056 -5.258661 -1.297327 11.871488 2.858302 -20.640062 18.264614 0.458017 -6.750647 6.549163 -5.647122 20.976737 -16.570489 -17.225605 14.254686 1.158944 -3.315510 -7.899279 3.714593 13.401653 5.499412 6.016821 -10.524996 -23.348351 10.914613 -8.886443 14.751172 7.383163 -2.374632 9.180197 -5.417218 -4.018882 -20.763820 -15.617966 -5.146046 2.534626 -18.592069 -8.498124 -4.073394 19.502759 11.816751 1.599667 -16.557084 2.027714 21.880691 -17.898548 -2.730117 12.124444 8.945691 -22.949238 0.953998 15.643664 -23.861061 1.890272 -7.302824 -2.165886 -5.999695 -14.892689 11.751734 5.533641 12.329011 -1.563820 3.935446 2.150666 7.476582 8.044121 5.298470 3.499004 26.239553 18.771181 -3.475726 -9.674427 -18.050514 6.460966 -22.559408 -23.134145 9.566337 5.085127 -15.177321 3.044567 6.131611 21.779861 3.596969 1.236846 -1.732015 0.839848 +-11.237012 -9.167107 2.678310 -28.944060 27.967196 15.290413 11.831139 -11.516694 -29.113520 -6.962320 8.462569 -26.560680 -11.702420 35.580081 -12.452319 27.752327 42.970984 5.366183 -12.815521 -7.476854 37.019307 -11.506752 44.516022 31.023426 -34.518488 -2.503766 -0.445554 20.191407 10.429708 15.145569 -0.752579 -12.162502 15.232377 -29.815025 0.488811 -21.898050 9.870275 8.765011 15.455531 -44.631375 5.984212 2.258621 2.676169 -4.375295 -10.103307 12.927247 23.205295 30.549818 -13.316224 10.537985 28.178111 1.794384 -2.028752 11.607641 -0.038186 4.754405 6.022678 0.719252 -18.211593 -13.382535 -4.317156 -20.058452 10.860183 27.839244 39.994851 -0.977654 3.059873 24.848996 2.945478 8.767542 19.856826 5.918325 -4.687822 -3.975549 21.987256 -37.158303 -5.669697 -53.188896 -10.384434 -68.308642 -19.070312 -10.508741 21.242393 -2.028156 18.584912 1.323538 33.719649 0.112201 -3.735832 29.354264 33.431154 -29.168935 -14.266316 -29.215698 -18.093449 9.942184 -20.167811 -2.776531 21.249804 7.371694 -25.004299 -14.226932 10.220649 11.435324 -10.166484 -25.068444 -0.648112 28.230093 -29.801089 -25.246479 -10.003983 21.059419 -10.094010 -48.650867 -1.288268 -18.671567 21.332641 -0.788155 1.714316 -22.492248 2.496022 22.263430 -10.061122 -15.025380 -8.412740 26.141568 17.908240 10.373415 7.147844 5.480385 2.602376 41.812161 22.345659 -16.519615 -8.366869 3.106123 -10.968135 11.145545 -21.482191 -12.553201 16.922545 -34.173869 4.498633 21.678085 -14.821909 -8.215010 20.662961 5.601075 16.623125 84.297452 2.925265 31.472701 19.827177 -31.210063 14.212470 -7.710198 2.411100 15.170781 15.722450 -4.382540 -38.940276 -31.131150 15.617993 26.722488 22.877901 -36.279636 -13.715999 -8.959191 0.819634 0.840227 -9.262414 15.958011 -3.697017 -22.087001 -4.627468 17.169758 57.724415 -14.999884 -10.543834 22.599326 14.129885 -21.594754 -39.532803 -17.507387 -20.586325 0.945879 5.928900 1.273793 15.533362 40.833619 -52.516198 27.237247 -4.878857 1.123779 21.383720 3.019466 -21.519705 -43.136064 -6.989616 20.281416 33.010449 -8.329311 1.564903 11.668101 -26.698243 4.768150 4.718657 3.725676 -2.861812 10.060098 -1.233016 -15.957759 -20.281329 3.878254 -9.782063 -1.789287 0.649140 16.361870 4.050809 -46.716249 28.945463 -10.697857 -14.607647 13.005058 -3.491646 31.873123 -26.792705 -31.452810 21.244960 -1.515929 -13.588846 -23.322882 9.224507 21.551842 4.203685 3.831447 -16.233082 -38.382688 19.661557 -15.541072 18.529734 13.113707 2.306986 27.082736 -3.808890 -14.803101 -33.595049 -17.267885 -6.120625 -2.839717 -24.865084 -7.921570 -4.106220 31.134814 25.812542 3.097634 -14.238706 1.606624 36.396657 -32.507848 -15.197121 27.156842 14.129287 -28.239733 13.243184 30.786724 -34.244706 -7.955865 -14.879704 0.989599 -5.131221 -24.167567 17.793248 -1.991238 15.871331 1.920535 9.073929 -2.262669 14.897733 9.598226 6.987527 -6.785107 47.087736 39.536078 -17.816576 -9.510066 -27.325935 13.742019 -40.127064 -34.345841 12.248800 6.671807 -15.467144 13.009358 9.432064 32.932368 4.128253 -5.023374 -6.072015 -5.236358 +-4.106301 -4.711518 -4.091766 -8.485821 5.472006 3.504149 3.556901 -4.267330 -11.181646 0.347505 6.039886 -9.487038 -0.609379 13.270826 -3.265810 10.130703 15.042626 3.819746 -5.804785 -0.692914 12.823381 -3.398763 13.258971 11.860277 -9.578467 -0.527593 -0.844147 2.242520 1.496994 0.102811 3.330473 -5.033134 5.338943 -11.875205 -1.925385 -8.421274 3.094941 6.920183 10.404032 -16.549947 3.466153 0.073303 5.523170 -3.939413 -4.689006 1.571383 4.267026 10.318170 -2.696010 2.847019 9.822927 0.748586 -0.870792 2.662730 1.211898 0.779592 -3.698983 1.828120 -2.746543 -4.739259 0.083783 -0.379587 3.779278 9.234084 12.852233 0.487569 -0.271473 6.963763 3.227713 2.937128 5.702266 0.057444 -2.809604 -2.496324 2.534406 -14.547468 -5.478779 -21.788534 -1.615164 -22.938293 -5.544079 2.255554 8.867172 0.095041 5.260229 0.521363 9.016212 0.165652 -3.089975 12.279217 11.474385 -7.067826 -5.170626 -7.594276 -6.376371 5.910184 -4.606955 2.143705 9.674297 1.501384 -8.601099 -6.026532 1.381774 4.831255 -3.277790 -9.758765 3.753101 7.271964 -4.819018 -8.349701 2.084218 11.313670 -1.572868 -16.717622 1.069060 -8.533336 2.384473 0.665843 -3.172394 -7.565588 -0.128452 4.051103 -2.598427 -5.084077 -2.727330 6.237083 4.159970 6.207889 1.464306 0.106536 2.614140 15.182144 0.402909 -9.227421 1.440508 -0.838891 -1.851013 5.610794 -9.243929 -6.092665 6.156470 -10.575398 4.326126 5.244879 -5.748186 -3.541513 10.054700 4.514869 1.725939 31.012671 1.978864 14.129327 8.835162 -8.791635 6.254648 -4.368688 0.419636 4.135166 4.149439 -3.614023 -13.270464 -11.161720 4.430846 10.299031 8.861661 -10.680161 -6.550027 -1.309302 -1.357963 -0.126194 -0.484934 2.554847 -0.925470 -7.381311 -1.900336 10.136076 18.029527 -2.908039 2.908488 4.395449 11.209728 -5.149385 -12.845806 -5.387442 -11.620326 2.121646 3.655472 1.384539 7.005225 11.770526 -18.334179 9.254712 -1.349220 3.721220 3.977511 3.535774 -11.670204 -18.658251 -1.397011 4.815072 12.234780 -5.321648 4.264829 6.795162 -8.652027 -0.096955 2.318549 -3.053847 -1.325481 3.039041 -1.063516 -2.448740 -4.789342 7.793937 -5.793638 -3.663085 1.034029 8.477679 5.796576 -11.033672 8.084856 -1.043362 -4.025944 1.932508 -3.180786 10.307440 -9.594174 -9.596949 7.120887 1.498063 0.433263 -5.902597 2.725957 8.242189 -0.474417 4.084935 -2.265851 -11.186980 5.998337 -3.437829 6.374733 4.297217 -2.024235 3.129101 -4.611940 -3.074122 -10.011715 -6.657432 -2.550275 1.015156 -10.284330 -3.063018 -1.962993 10.509079 5.218277 1.831267 -11.039372 1.412122 11.193089 -7.065921 -3.240861 5.803285 2.884228 -8.444603 1.964682 9.566205 -12.999957 1.435321 -6.587275 2.802366 -2.453919 -7.322663 7.208908 4.047530 7.026210 -3.177014 1.347426 3.202710 6.058928 5.843147 3.210876 2.375320 12.061752 7.345954 -1.604152 -5.955754 -9.480610 1.535634 -11.054423 -11.647492 4.032374 2.575513 -9.564168 3.844948 2.264554 12.275137 0.616177 1.754284 -3.032586 3.075122 +-62.825010 23.851018 91.920762 -163.843225 163.075780 122.411346 50.696434 -64.074500 -135.447692 -44.539637 1.781487 -161.869924 -101.009824 202.404591 -81.270036 92.739020 259.805928 45.512728 -60.837184 -29.488260 155.479662 -29.276178 240.761644 194.694099 -187.502720 -6.943934 50.119979 104.739270 18.822301 158.575729 -83.543792 -149.362318 62.066345 -81.521944 27.659537 -118.630903 25.076250 1.831152 48.947976 -264.945505 34.268014 20.146214 -20.841091 -36.723235 -28.554200 44.838067 205.421997 153.436011 -55.394876 10.858188 129.125887 65.466696 -16.872345 51.218358 47.229471 44.426859 110.962932 9.787378 -90.085538 -58.478262 -41.960842 -78.252661 15.563736 176.444512 213.440053 25.267011 4.070469 61.011991 -1.061601 34.812496 48.709298 38.809803 20.305406 60.357912 84.284021 -143.457835 9.240126 -278.254865 -39.028626 -318.740351 -111.836522 -82.656284 71.061430 17.849948 81.538396 -24.490058 201.585827 -10.072328 20.515807 105.641301 245.490534 -167.670954 -72.815386 -146.690562 -118.731146 46.252548 -92.317537 -4.720013 47.535426 0.254004 -147.683132 -130.607370 56.016247 53.237493 -64.571890 -57.228660 3.173672 156.742197 -162.254214 -100.206725 -103.743859 65.340310 -33.786681 -280.339924 -52.301654 -94.283469 101.632824 5.456702 -42.068868 -173.991442 43.511896 146.093684 -78.811881 -78.249418 -68.390352 171.224052 97.013569 18.958806 22.888858 -14.372746 46.291946 205.152815 120.374498 -101.900989 -25.716889 3.460309 -88.622707 -1.130195 -128.926475 -41.667291 44.516798 -161.800122 22.791219 144.627845 -105.361759 -16.615072 56.823726 -22.708499 104.633937 514.104178 -49.418635 150.046406 61.018645 -213.366954 99.284199 -22.447788 -41.140325 27.431626 95.072644 63.907415 -224.121893 -160.411124 113.314317 176.810644 131.071786 -175.011294 -26.175972 -62.616071 -15.129729 -15.304254 -1.264497 63.368134 -43.348717 -125.325887 -52.771544 100.494836 334.225785 -79.822402 -185.239627 102.404641 64.033437 -53.956527 -149.626304 -69.547490 -89.227207 16.808759 48.215318 -21.559308 117.244260 239.460790 -372.978710 169.409337 -15.890377 -71.270087 163.304172 -6.967037 -96.378511 -147.075428 2.904629 172.902207 192.288228 0.137983 1.890357 10.536651 -158.747789 -5.629032 21.296768 74.869502 -60.429763 74.353021 40.438943 -165.814949 -128.946416 -55.736016 -38.288547 -56.121645 -62.903973 81.559869 4.132707 -344.949007 226.989626 -4.240599 -36.647735 52.297755 -48.155517 126.901189 -170.356165 -210.802469 96.410859 -18.955206 -49.246980 -71.806508 21.361189 124.900910 24.709931 70.044586 -125.900358 -231.764162 103.503563 -35.245087 131.562201 72.033226 57.745480 146.025898 30.223633 -57.052381 -162.885581 -93.002141 53.913949 -9.070923 -131.675769 -30.449516 -52.583503 170.371525 181.721240 -18.448208 -63.323212 -61.632737 180.262956 -152.149621 -42.105635 136.860319 45.286174 -154.201588 20.834544 163.034408 -151.853725 -89.179554 -98.126325 -22.274035 -65.436628 -158.288577 61.209150 -59.284421 55.033137 66.386910 3.328449 -66.776686 70.685462 39.024664 8.213247 3.523537 217.752395 202.683190 -102.600923 24.728179 -158.372766 94.445483 -249.309720 -197.855889 69.380221 -38.082192 -89.486367 25.036999 15.017885 151.931357 -20.888004 31.650012 -15.330108 -29.042071 +-3.628176 -4.074220 -1.779391 -7.886883 5.200422 5.895140 2.836419 -4.332816 -9.472360 -1.088922 3.656539 -8.969491 -0.819973 10.277270 -2.874327 8.810393 13.095563 2.109194 -4.838867 -0.522652 10.183238 -2.405636 11.979009 10.746585 -7.240833 -0.864329 -0.565612 3.996958 2.242568 2.278565 0.845673 -4.125254 4.099874 -10.168537 -2.575177 -6.461177 1.717381 3.776693 8.070332 -13.174654 2.563128 0.866073 1.679295 -2.753775 -3.154809 0.094559 5.253393 7.976391 -1.961634 2.860986 7.365985 1.166447 -1.353267 2.228739 1.408938 2.106527 0.717201 0.785422 -3.474104 -4.240439 -0.605908 -2.114118 2.362455 7.627351 10.536469 0.806298 0.050795 5.924694 1.759411 2.164895 5.378493 1.028248 -3.001497 -0.729948 3.831175 -11.532242 -1.366851 -14.915257 -1.779726 -16.302875 -4.607092 0.927072 6.339505 0.392820 5.410367 0.609141 7.918146 -2.116269 -2.611031 8.773774 9.145071 -7.677997 -4.106063 -5.855259 -5.260658 3.156814 -4.798026 0.239822 5.774339 1.560302 -7.157824 -4.225363 3.376486 4.633083 -2.973612 -7.300670 2.189416 6.884622 -6.884432 -7.468730 0.547177 7.524418 -2.632574 -13.453648 -2.703890 -6.708576 3.511584 0.171910 -3.033072 -8.184953 0.905329 4.244827 -2.357644 -4.928798 -0.384674 5.927694 4.502602 3.916245 0.936688 0.621248 1.701324 13.821356 2.937448 -5.714955 0.983418 0.114087 -2.646224 3.928372 -6.033565 -4.908978 2.072900 -9.039358 2.326126 6.820347 -4.980343 -2.109635 6.755566 3.533483 2.140891 29.227489 1.118026 11.082228 7.975588 -8.359895 3.875844 -3.196914 0.771815 3.005825 3.621837 -0.832858 -13.395196 -7.937361 4.531144 8.471831 6.868996 -9.796998 -3.756091 -1.286808 -0.240430 0.588478 -1.007112 2.385302 0.127217 -6.880221 -1.755421 7.357255 17.646658 -3.652852 -0.618491 4.984271 4.543542 -5.350852 -11.985921 -4.098562 -7.631572 1.742576 2.500977 0.396247 4.986264 10.851796 -13.734345 7.418636 -1.404303 0.778042 6.583290 3.561963 -8.988152 -12.147473 -2.479646 4.949180 10.492848 -3.101022 1.818156 4.152662 -7.504294 -0.556491 1.822023 -0.649320 -1.671582 3.270932 0.484232 -4.052569 -4.259758 3.682172 -2.917925 -2.597241 -0.003870 5.596866 1.403140 -10.229100 7.707855 -0.400339 -3.509600 2.426910 -2.169427 8.761068 -7.631625 -8.082064 6.099377 0.122723 -1.921986 -3.946485 1.735259 5.878674 2.678883 3.013514 -4.352503 -10.178036 5.411621 -3.741886 6.809802 3.347135 -1.358155 4.468441 -2.568607 -2.153271 -9.123718 -5.288226 -1.823831 0.333455 -8.481427 -3.888566 -1.650940 8.748957 5.623131 0.743455 -7.288197 0.553581 9.739926 -7.835109 -1.996973 5.799417 4.456087 -9.500610 1.429161 7.319573 -10.596988 0.801488 -3.547818 -0.234712 -2.450159 -6.603566 5.504536 2.042893 5.521898 -0.895937 1.742801 1.027637 3.516491 3.766245 2.067236 1.193212 11.625932 8.161105 -2.354805 -3.618189 -8.485876 3.102177 -10.438950 -10.739955 4.207449 2.141707 -7.216207 1.675844 2.430230 9.912084 1.563982 -0.040023 -1.628581 0.767754 +-3.892143 -3.997758 -0.681489 -8.344195 6.248219 4.776094 3.405832 -4.413636 -9.875791 -0.994835 3.546918 -8.439915 -1.243328 11.432329 -2.743299 9.591479 13.569647 3.022222 -4.636604 -1.498871 10.572004 -2.994966 12.442873 11.340705 -8.360435 -0.486591 0.762760 3.602422 2.728707 3.241184 -1.195966 -4.626375 5.091219 -10.759012 -1.579869 -7.396508 1.445463 3.882283 8.552866 -13.702526 2.756748 0.115146 2.166096 -2.837476 -3.317802 1.355875 6.160404 8.709990 -2.905450 3.930680 7.606783 0.386939 -1.252886 2.646003 2.374494 3.347053 1.209733 2.195097 -4.050110 -3.811285 -1.105735 -3.128381 2.724935 8.229259 11.111399 0.234072 -0.090167 6.352928 1.943603 2.119073 5.621479 1.318815 -1.776714 -1.536667 4.783513 -12.947533 -1.577047 -17.847216 -2.608097 -19.685729 -5.487779 0.270919 6.729052 -2.347592 6.235351 0.604229 9.174602 -1.715369 -2.421272 7.445792 10.344844 -9.290572 -4.619506 -6.012461 -5.498001 3.175755 -5.267183 0.155668 6.856192 -0.127795 -8.113557 -5.964437 3.969061 4.852943 -3.446535 -7.470474 2.172031 7.912560 -7.560079 -8.484697 -1.181749 6.029328 -3.189499 -13.834011 -0.632679 -6.610773 4.865200 0.580752 -3.643827 -9.331634 1.276385 5.264331 -3.346596 -6.105896 -0.060690 6.359016 4.660518 4.233041 1.348497 -0.082615 1.664576 14.314701 4.978119 -6.756045 0.759751 0.372192 -3.299322 4.087144 -6.972365 -5.682140 4.142497 -9.749197 1.547494 6.319091 -5.824397 -1.271548 10.379799 3.463694 2.529619 27.212301 0.690890 10.748867 7.464920 -9.282771 4.078853 -3.080470 0.754194 3.699071 5.478610 -0.656524 -12.671778 -8.919452 4.834782 9.558539 7.670083 -10.606456 -5.967936 -2.232806 0.003554 0.846495 -1.171082 2.431448 0.139145 -7.526991 -1.907535 6.394411 17.280851 -5.229276 -2.487723 4.900647 5.038928 -5.379823 -12.131474 -4.663051 -9.356999 1.924173 1.258504 0.223208 5.842545 12.169791 -16.860667 8.491659 -3.211551 -0.507934 6.713053 3.640498 -8.806288 -12.603719 -2.058399 5.329759 10.631003 -2.156823 2.304985 4.708446 -8.569819 -0.692011 0.909071 -0.039917 -2.339440 3.832917 0.592391 -5.015740 -4.529105 3.310741 -2.499063 -3.956763 0.627130 6.180886 2.320048 -13.316622 8.319611 -0.581087 -3.882169 3.719183 -1.562797 8.848319 -8.604491 -9.403638 6.438483 0.297624 -1.256050 -4.380044 1.763824 6.679587 1.366162 2.087626 -4.433526 -10.768645 5.759555 -3.949781 7.655217 3.915040 -1.236847 6.278811 -3.305711 -3.008989 -9.485148 -4.095218 -2.082225 -0.634528 -8.108229 -4.795696 -2.095995 9.730636 7.095857 1.361972 -5.690853 0.030135 10.111135 -10.054641 -1.769864 7.153055 5.692961 -8.617772 2.121231 8.535134 -10.928152 -0.165429 -3.831436 -0.807782 -2.306815 -6.718700 6.202615 1.054395 5.506623 -0.849554 1.690375 1.020256 4.296923 3.663826 2.045503 0.664773 11.723437 10.021720 -4.282019 -3.944742 -8.893027 3.579085 -11.475729 -10.886945 4.240131 2.426779 -8.141635 1.863248 2.193715 10.032313 1.125278 -0.260625 -1.972377 0.132624 +-7.015282 -8.144655 -4.491610 -14.130368 10.607903 11.251018 5.716134 -9.432147 -17.646698 -0.668210 8.245322 -16.198196 -1.318033 19.005190 -5.389782 17.370949 22.818212 3.374772 -9.142558 -2.148086 19.205406 -1.430028 23.336733 20.539037 -14.075238 -1.133090 -0.278394 5.743154 5.049182 2.283227 0.279283 -7.465495 9.582921 -20.493454 -6.351975 -11.024153 2.453510 6.919602 17.590869 -22.375330 4.725041 -1.124309 1.133098 -4.452935 -6.393505 1.911875 10.125226 14.820160 -3.993034 7.602626 14.230670 1.149932 -2.695814 4.205149 2.847197 3.971706 -0.071467 3.590214 -5.702433 -8.792198 -1.686838 -2.569055 3.677328 14.211945 19.290110 1.194269 -0.822277 12.198801 3.463384 3.752035 10.241727 2.760248 -3.666109 -1.537878 8.136025 -22.094186 -3.523298 -29.660050 -4.668565 -30.577042 -8.268263 2.799775 11.833478 -3.342362 10.971201 1.887799 15.364134 -2.961333 -6.513392 16.644673 17.610350 -15.655660 -7.577300 -8.824293 -9.457536 4.565385 -8.663580 2.454001 10.609390 1.817815 -14.064698 -9.765378 4.843147 8.261873 -5.822491 -14.919450 4.209358 11.447559 -12.966688 -13.232447 0.898784 13.096349 -4.617631 -25.125886 -6.360338 -11.610758 10.231558 0.066637 -6.596071 -15.996257 1.670362 7.903912 -4.909078 -10.266373 3.935503 8.959842 9.645759 8.955576 1.745787 0.883383 3.745885 27.737517 5.802505 -11.225493 2.103682 -0.932944 -3.379776 9.056632 -10.629262 -8.728555 5.251544 -16.645558 6.393254 12.411551 -9.234018 -3.918029 17.366443 7.053012 2.339774 51.484476 2.116331 20.643195 15.449156 -15.673874 4.217887 -7.841564 2.507339 6.709308 7.139525 -1.811361 -23.148375 -15.237594 9.627628 16.008303 12.544496 -20.305073 -7.066920 -1.212934 0.675037 0.593297 -2.071572 3.966552 1.532469 -12.575849 -3.044844 13.866820 31.930649 -8.566875 -0.918916 9.290171 8.797163 -8.363802 -19.725224 -8.492081 -14.444394 3.637683 6.843200 1.967445 9.682777 20.558938 -25.799104 13.125201 -3.930519 1.141055 10.130380 9.133002 -17.469412 -18.086874 -4.737632 8.629023 17.326576 -3.966516 3.866715 8.750103 -14.499889 -1.084452 3.533840 -1.956133 -3.859193 6.799621 2.349446 -7.552233 -7.449283 7.654336 -4.739147 -4.516578 0.996244 11.595333 0.982171 -23.073558 13.920520 -0.039491 -7.556950 4.442313 -3.874969 17.449532 -13.896016 -15.607297 12.009557 -0.771241 -3.103551 -6.684815 3.832817 9.895462 5.297818 6.774797 -9.229856 -18.675850 10.698055 -6.201348 13.400081 6.585688 -2.809662 9.562545 -12.358829 -4.489283 -17.833040 -8.991431 -1.500507 1.029458 -15.753172 -6.901606 -3.087865 16.274631 10.177900 1.924734 -13.606257 0.724006 17.147125 -17.270636 -2.773742 11.078787 13.919539 -17.526164 3.865330 13.666952 -18.792513 2.422737 -6.270339 -2.094320 -5.829170 -12.202843 11.342975 4.414091 10.766361 -2.252769 3.700673 3.073888 7.347325 6.181393 4.243712 2.681255 20.617364 17.638550 -5.658570 -8.348738 -16.207515 6.590911 -19.518420 -21.127045 9.284061 3.120112 -14.070466 2.097786 2.799182 19.234988 3.253234 -2.079493 -3.929563 2.581086 +-18.181985 -10.312039 4.821878 -44.949506 32.675772 42.719545 13.379820 -29.922695 -40.396367 -4.318028 19.202614 -41.768157 -10.594057 49.585991 -20.705863 37.146293 57.509252 2.270105 -27.044647 -3.921561 46.882646 4.070466 61.420275 50.214018 -41.824267 -4.279289 4.823775 25.729814 13.226472 16.504855 -3.392277 -22.256699 18.931273 -40.845162 -14.946208 -20.784827 7.062804 5.261292 33.671464 -55.959886 10.249041 -2.671146 -12.876160 -11.862413 -13.927215 -8.180201 34.379137 39.663220 -6.012033 7.243327 36.703147 11.859619 -9.319902 10.238605 12.481039 6.783679 14.253507 2.449784 -11.532766 -26.082084 -5.173766 -5.044938 5.495616 44.317218 48.727628 7.501358 -0.076447 26.178907 4.632215 9.384938 21.763220 8.570505 -13.986835 11.440636 18.863512 -50.283623 1.698484 -59.566520 -10.046034 -51.463125 -23.711134 1.377490 19.940394 2.294485 29.036465 4.722998 42.164289 -5.998323 -13.422686 36.464317 49.622255 -40.260127 -17.773722 -25.751358 -27.730569 10.461441 -24.021229 8.749766 7.439766 7.444195 -36.543214 -20.007738 9.709790 23.330268 -16.885638 -28.380785 8.099032 34.777090 -32.655117 -30.018256 2.936196 33.040829 -12.995327 -69.419909 -31.388623 -30.962062 31.273732 -5.187710 -14.010172 -43.921184 6.080365 29.859255 -10.917700 -26.014679 3.619397 25.383375 30.396111 20.006369 1.208931 1.891070 14.272514 68.367453 16.049697 -23.449353 3.309320 -7.855652 -8.707763 18.885561 -20.982359 -11.966527 -1.074010 -39.108097 9.728848 44.352166 -22.094223 -10.222338 24.359459 13.330722 11.330535 152.340499 -0.287510 50.007933 34.286944 -45.891703 5.196034 -18.161964 -0.579286 12.199976 11.927579 2.710551 -69.442176 -39.073444 30.564584 43.526859 31.092946 -49.736016 -3.701383 -4.019403 -4.538677 -5.450085 -2.968866 10.570011 -1.436852 -31.359277 -12.429216 40.546670 81.890329 -21.390915 -26.739052 28.527165 13.871061 -17.624001 -41.073951 -20.228932 -20.889528 11.129997 25.146905 2.341048 27.980546 55.022720 -64.692496 34.332688 -1.891204 -5.652533 37.090892 14.152009 -40.261653 -28.603516 -7.311367 29.057475 41.426513 -10.506890 2.150636 15.107484 -39.093827 -3.200190 12.247528 -0.447031 -10.161020 17.948576 13.167235 -26.682553 -28.233138 7.060306 -11.186006 -6.182290 -9.101435 28.037526 -13.711431 -62.943796 45.939489 4.714391 -15.931668 10.323533 -20.263524 46.415186 -39.082204 -45.452418 31.950541 -3.433638 -9.672455 -13.202886 7.945282 26.944296 21.672080 23.646896 -35.234883 -43.242633 22.113020 -13.265577 35.968574 16.711057 3.982193 25.427475 -23.699832 -7.651708 -42.914543 -29.135949 11.866947 11.969564 -46.519113 -19.555300 -10.490070 43.827253 28.043567 -3.406966 -33.213731 -4.575374 41.597026 -43.358529 -8.675480 24.500731 30.367148 -51.722627 2.455135 32.312657 -38.561528 0.023234 -15.945584 -10.615171 -22.783092 -39.434360 25.702596 11.018821 29.438920 2.659006 10.840336 0.077080 16.150927 12.533407 13.814391 11.143774 47.888775 45.691315 -14.401049 -17.794391 -46.218524 23.172380 -53.388205 -59.197043 30.443265 -4.601103 -26.583958 2.317221 -0.035960 48.338980 9.112946 -2.137186 -3.545047 5.344767 +-10.678934 -11.468434 -4.455655 -23.559591 16.098752 17.033132 7.921416 -15.593903 -25.995578 -0.940342 12.165761 -23.725124 -1.270502 28.010547 -9.201226 25.110611 32.474973 3.923566 -14.158782 -3.490993 28.805469 -0.550462 33.295413 29.118377 -21.877756 -2.299680 1.188508 10.057716 9.003625 3.593017 0.455149 -10.917765 12.574596 -28.973209 -8.735224 -15.413492 4.066011 9.166531 26.055457 -31.814136 6.988625 -2.620459 1.233796 -6.625456 -9.073404 -0.337950 14.073447 22.056876 -6.141363 9.372861 22.386803 3.907524 -5.076547 5.689774 4.434122 5.405449 2.630852 4.480855 -7.017277 -13.623330 -2.084314 -1.475163 6.094174 22.315108 27.825737 2.332479 -0.643681 17.658996 6.517671 5.451832 14.864623 4.132020 -7.913242 -0.448226 11.329199 -33.103710 -3.255047 -44.070002 -5.738425 -42.268033 -12.550835 4.093538 15.390815 -5.134071 16.209070 3.736278 22.756620 -3.993739 -9.442720 22.952735 25.074255 -22.259032 -10.538556 -13.480311 -15.517670 7.072529 -12.745893 4.271450 12.717886 3.687410 -20.319261 -13.422725 5.950660 12.747364 -8.851436 -20.159183 6.459217 17.677050 -17.686649 -19.641380 3.137431 20.083707 -7.394579 -36.851420 -11.561996 -18.914108 15.335654 -1.573440 -9.149199 -23.538931 1.693609 12.541027 -7.316344 -14.714815 4.283408 11.894173 16.135669 13.082692 1.507693 0.746993 5.990635 40.447580 7.549615 -16.759515 2.885484 -1.948444 -4.844811 12.492586 -15.924674 -11.351708 6.717156 -23.357179 8.155540 20.103659 -13.269650 -6.272468 25.779115 9.715159 3.986575 79.566500 2.803812 30.826062 22.905431 -22.521525 4.066989 -10.461873 3.143562 9.775106 9.363739 -2.254893 -34.650266 -22.826652 14.603013 23.734495 18.406255 -28.384917 -10.346255 -1.715746 -0.996182 0.190775 -3.307402 5.422772 0.504061 -18.178267 -5.147930 20.805016 45.081516 -11.828280 -5.018852 13.711156 13.876315 -12.873278 -26.932782 -12.494955 -20.997874 6.043272 10.259421 2.854580 15.602372 30.645621 -40.341797 19.061906 -3.262889 1.345059 15.449791 12.059047 -25.811149 -25.371200 -6.050681 12.439013 23.833931 -7.610980 5.656398 12.947665 -21.458224 -1.415451 5.538778 -2.819413 -6.141180 9.512558 4.612505 -11.056111 -11.645852 11.023383 -7.511752 -6.476417 0.082305 17.004938 -0.799653 -33.939652 20.725535 0.396376 -10.357779 6.759304 -8.722680 25.591426 -21.269369 -22.446002 17.840177 -0.090379 -3.006811 -9.265306 5.705022 15.393092 8.094592 12.608216 -15.244780 -25.384534 14.085988 -9.776740 19.620239 9.570258 -3.336792 12.746966 -18.748703 -4.926641 -26.150647 -12.981948 -0.777999 4.924976 -24.797590 -11.634870 -4.472889 24.045576 14.863663 1.052140 -19.381860 0.408931 24.206669 -25.784962 -3.647228 14.979613 19.243539 -27.126949 3.965455 19.111346 -26.042255 3.466913 -9.108031 -3.239812 -9.267654 -17.867810 17.196873 7.858907 16.551109 -3.072463 5.329906 4.137876 11.097480 9.516788 7.183154 5.368720 28.135591 25.383910 -7.365592 -13.134380 -24.765680 9.821275 -28.424714 -32.117111 14.745808 1.520003 -20.497605 2.882851 1.841536 29.255601 5.028105 -0.895712 -4.411206 4.217020 +-5.976644 -6.627342 -0.037946 -13.150638 8.655268 6.261794 4.738936 -5.155725 -15.826020 -2.789932 4.334967 -13.079143 -1.691203 17.671114 -3.745328 13.975618 21.677601 5.246428 -6.863615 -1.448199 16.200860 -6.975648 18.042246 17.394877 -11.828949 -1.001624 -0.688032 7.423816 2.822481 5.867762 -0.415970 -6.677971 5.480313 -15.827703 -2.112022 -12.628951 2.565641 7.679022 11.148136 -22.688135 4.466628 2.136908 4.554121 -4.731893 -4.885889 0.301710 8.984757 13.115960 -4.368510 5.096031 11.046924 0.568691 -1.497051 3.892046 2.899177 5.163116 1.288082 1.599678 -6.637785 -4.793537 -1.431008 -6.181599 5.629951 12.015769 16.864111 0.716928 -0.095138 8.724556 2.738240 3.388341 8.699962 1.475970 -4.140397 -3.424002 6.919094 -19.947716 -2.073720 -26.916194 -2.407257 -28.322139 -8.553431 0.556420 11.451530 1.260914 8.363076 0.313676 13.546583 -4.349708 -3.025417 12.998323 15.007436 -12.830462 -6.856314 -10.605105 -9.476905 5.478894 -7.419150 -1.796304 8.679285 2.003130 -11.740979 -8.053638 6.900594 7.108069 -4.901376 -10.583425 3.266707 12.653179 -12.085830 -13.393969 -1.533539 10.856132 -4.377816 -20.433111 0.045666 -11.003556 5.367366 1.186397 -5.482520 -13.212430 2.187676 7.249430 -4.799045 -7.687034 -4.518394 11.114840 5.071749 4.905537 1.950936 -0.132222 1.508558 19.886273 6.846880 -10.141603 1.115887 2.131212 -5.618475 4.944387 -11.018016 -9.203178 5.135662 -15.111843 0.149561 8.858821 -8.897423 -2.464600 11.862138 5.368466 4.351734 43.112847 1.386177 16.249208 11.149569 -13.524668 8.985854 -3.173449 1.026411 5.333841 7.861155 -1.094895 -21.053982 -13.308803 6.454057 14.112785 12.021642 -14.116040 -9.901054 -3.722199 -0.335654 2.888957 -1.167342 3.748278 -0.272355 -11.850814 -2.814284 8.924574 27.704459 -5.814832 -2.080240 7.654443 6.643017 -9.703351 -20.893219 -6.357399 -14.028953 1.968094 0.732174 -0.607126 8.336796 18.262839 -25.026584 13.330763 -4.506723 0.169822 9.955311 3.465779 -12.897304 -22.407135 -4.357878 8.190198 18.407418 -4.169696 3.201517 6.556080 -12.578767 -0.788493 1.787633 0.098327 -3.456618 6.024671 -0.791297 -7.612615 -6.385430 4.738700 -5.543157 -5.436956 0.272078 8.581459 4.204182 -16.213698 12.467178 -1.277052 -4.700801 6.024717 -1.598126 12.988994 -12.351997 -13.982855 9.694689 1.200164 -2.744642 -7.626917 2.438381 10.482005 1.972262 0.115358 -5.474353 -17.166604 8.512060 -6.651615 11.436564 5.777124 -2.833774 8.503238 1.411650 -4.263868 -13.808381 -6.662874 -4.843893 -1.644122 -11.725765 -8.171807 -3.165658 14.391936 10.527622 2.234033 -8.735218 0.748157 16.936980 -12.242000 -3.936375 10.665033 2.987018 -12.994907 3.027742 13.289285 -17.749446 -0.100174 -6.841058 0.804242 -2.520620 -9.846664 8.993292 1.753976 7.806476 -1.334553 2.334290 0.838582 5.868013 6.759932 2.571396 0.466794 20.184619 13.050646 -4.546952 -4.608015 -12.921508 4.559183 -17.077094 -14.910557 4.396586 5.893292 -11.973057 3.522439 4.098121 15.112643 1.723176 1.056080 -2.117108 -0.220139 +-6.143349 -8.786106 -5.634213 -13.005065 8.978996 10.310819 5.152707 -9.849608 -16.338617 0.871567 8.106058 -16.224829 0.765631 16.085856 -4.576597 16.706480 20.877424 2.567138 -9.359409 -1.417082 16.619129 -2.667432 20.530582 18.394855 -10.313682 -1.308547 -3.821662 6.313435 3.185843 -1.683152 2.628647 -2.621179 7.171874 -19.792471 -7.288414 -8.735508 2.585374 6.806025 16.658884 -20.224640 4.195259 -2.543317 3.193532 -3.915810 -6.399266 0.770746 7.024575 12.770884 -0.649328 5.695629 11.688050 -0.311251 -1.505688 3.877147 2.321540 3.280255 1.052215 1.662725 -5.058539 -8.070062 -0.741649 -0.641495 4.596555 11.919583 16.836938 2.564554 -0.912719 11.936114 4.639636 3.360288 10.057243 1.887804 -8.104960 -1.137629 4.720546 -22.479815 -1.517964 -24.189764 -3.622380 -21.829727 -7.531985 4.246362 10.623768 -1.412336 9.765445 4.303139 12.388001 -2.198984 -6.722943 14.704253 13.831510 -13.286486 -6.950633 -7.267436 -7.833802 3.513986 -6.244046 2.603656 10.929631 5.821540 -11.804561 -4.385309 6.208237 7.676784 -4.527623 -13.684374 5.037931 10.595733 -8.388129 -12.554857 4.942790 15.018993 -4.684405 -21.602550 -3.480496 -11.724119 6.873055 -0.355539 -5.424558 -13.658497 0.863541 5.287867 -3.705664 -7.026556 0.113492 7.118007 8.084016 7.481296 0.860571 3.368795 2.854997 24.615092 1.197245 -9.639946 2.874488 -0.750151 -2.661897 8.995525 -8.747486 -8.567309 1.812211 -15.568736 6.260090 11.038196 -7.530277 -4.100132 11.635854 9.184137 1.133630 46.163166 2.950235 19.758348 14.972442 -12.728165 4.759090 -7.939430 3.591638 5.413286 4.872044 -4.400780 -23.291142 -13.840697 7.807677 13.581521 10.662139 -17.258991 -7.281865 -0.733710 -1.063107 1.241284 -2.231588 4.004688 0.370332 -8.745787 -2.334214 13.155175 30.378038 -5.808091 4.178537 8.889983 5.251416 -8.273811 -21.283234 -8.059682 -12.000811 2.982538 3.964585 3.463167 7.322545 17.088549 -18.927370 11.051287 -2.803475 3.777077 11.013766 7.993300 -16.354313 -20.086366 -6.414961 6.498952 16.260780 -6.653147 0.519739 8.111239 -11.512571 -0.829259 4.099397 -3.191569 -2.033099 4.974479 0.548401 -4.732443 -5.005535 9.075733 -5.027328 -1.785495 1.504399 10.282542 0.052560 -13.719806 10.947494 0.091611 -6.758561 4.338373 -4.799633 15.950642 -10.014185 -10.803825 10.493065 -0.094660 -1.944327 -7.114149 3.586746 8.354756 4.141919 6.691765 -7.979498 -13.362324 8.681739 -7.818942 11.094384 5.392332 -3.777169 5.083308 -8.721794 -4.863782 -14.502721 -9.969916 -5.166102 2.664756 -14.433437 -4.222364 -2.162669 14.182185 6.676525 2.965671 -14.070672 3.690689 15.684316 -13.055301 -3.886650 8.820163 6.982611 -17.202326 2.886709 11.137337 -17.562727 4.009892 -4.361410 -1.880768 -5.121382 -10.188822 9.881014 6.578248 10.050296 -4.549027 3.720921 5.321976 6.801102 6.012932 6.323199 3.317114 19.908729 11.488132 -1.223106 -9.082262 -14.313685 5.360928 -15.421632 -17.590606 8.264165 6.641416 -12.460642 2.234572 3.504671 17.132201 3.121332 -3.648221 -3.740164 2.871136 +-4.353750 0.316340 4.953534 -10.854986 8.398654 6.928464 2.814606 -3.506625 -8.786206 -3.517191 0.183149 -8.062991 -4.392369 12.922299 -4.625065 5.622358 17.532498 3.951096 -3.343448 -2.821867 11.187887 -5.028479 14.965579 13.745838 -11.789441 -1.033985 7.137343 7.218085 2.880508 8.643098 -3.619938 -9.763063 3.409501 -7.055878 2.479992 -10.431039 1.952444 1.629778 3.995341 -18.136909 2.421573 -2.174182 -1.957651 -2.748789 -2.638145 2.583193 12.869387 9.598943 -5.370747 1.180809 9.344090 4.932620 -2.886151 2.587505 2.484228 3.695238 5.507425 3.743385 -3.962130 -2.650809 -1.876489 -4.567722 2.990684 11.228189 14.051184 1.103461 1.022011 4.387825 0.762709 2.303225 3.209852 1.662723 0.291402 2.095576 5.653759 -15.578510 -1.267186 -27.201920 -1.772147 -25.624373 -6.534887 -4.692683 4.578963 -3.039106 5.018088 0.120692 11.909598 -0.961540 1.624687 9.310208 15.600660 -9.539871 -4.379699 -9.533504 -8.833596 4.240701 -5.729247 -0.173093 4.684765 -0.484455 -8.762573 -10.855081 4.748891 4.232425 -4.112546 -7.369933 0.758492 10.255110 -9.975325 -7.161949 -6.020832 4.603813 -2.750170 -18.133511 -1.607789 -8.838996 9.536625 0.092018 -3.309665 -12.589990 1.788535 10.827451 -4.628390 -5.606093 -1.012753 10.389208 6.006057 1.480923 0.968363 -2.338627 2.113563 13.984992 10.079360 -7.212480 -1.222104 1.280707 -7.539481 -0.960021 -10.600538 -3.494870 5.946821 -9.760831 1.247808 9.781925 -6.964564 -2.993092 12.022376 -2.116178 6.825405 39.661747 -1.897012 9.155645 4.686205 -13.893633 6.292864 -0.785974 -2.178904 3.156695 7.353566 3.062994 -18.106137 -9.918163 5.346828 11.169321 8.664962 -12.782153 -6.736451 -4.644218 -2.048770 0.435314 -0.725939 2.476147 -3.785073 -7.874238 -3.412304 7.806462 21.432451 -4.797673 -10.235272 4.615359 6.988353 -6.231884 -13.229771 -3.781937 -8.811702 2.089257 2.761972 -2.096060 8.373573 14.759760 -28.598223 10.240290 -2.312640 -2.943217 8.126770 1.467864 -6.392881 -15.212600 1.458787 11.245735 13.422385 -1.035247 2.468904 2.363543 -10.089691 -0.802658 1.113332 4.604109 -4.456002 4.644730 2.110648 -11.340015 -7.851275 -0.439176 -3.205963 -5.031334 -2.272287 5.062692 -0.073505 -23.814185 14.802695 -1.348324 -1.872701 4.264744 -3.139825 9.777486 -11.682927 -14.627854 6.582179 1.304262 -0.867471 -5.019675 0.905946 9.741033 0.492569 4.805647 -6.589237 -16.912499 4.959332 -3.842421 8.272791 4.351085 2.629085 11.653168 -2.481906 -2.285960 -13.552181 -4.589441 2.810818 -0.094932 -8.664070 -5.518951 -2.722493 10.519255 11.657315 -1.099733 -4.273636 -2.016784 12.898555 -12.161543 -2.282527 7.600335 7.067386 -10.069107 1.538783 9.546093 -12.231718 -5.258447 -6.262777 -0.834608 -1.981564 -10.769962 4.864908 -3.261209 4.296419 3.232678 0.965418 -2.746587 5.246234 3.884048 2.166454 0.798989 12.877386 16.261800 -6.835169 -0.934109 -9.923293 4.643039 -16.721676 -13.631875 3.070250 -1.016106 -5.323332 2.120932 0.925320 10.087467 -1.038037 3.927692 -0.019888 -1.627079 +-4.173407 -3.036958 -0.312717 -10.221025 7.275195 8.108738 3.176813 -5.540133 -11.005509 -1.722968 3.833628 -10.853207 -2.005547 12.086072 -4.051169 9.205462 15.958055 1.786042 -5.567724 -0.805082 11.812196 -2.287051 14.554464 13.874165 -9.566547 -0.806457 1.079049 6.520180 2.533822 3.919852 -0.232647 -6.168985 4.393069 -10.959743 -2.736310 -8.169674 1.587642 2.630936 8.749308 -16.137706 2.594128 0.476286 -0.284267 -2.995082 -3.275561 0.074943 7.782924 9.281144 -2.324168 2.844861 9.043425 2.435918 -2.027680 2.389009 2.492942 2.393723 3.412926 1.743746 -3.719241 -5.062980 -1.087008 -2.188613 2.060956 9.838817 13.301785 1.266428 -0.088043 6.273406 1.475845 2.138530 5.375884 1.800926 -3.406571 1.127442 4.732498 -14.419136 -0.610500 -18.571992 -1.966061 -18.813620 -6.127681 0.093221 6.335310 -0.668765 6.461441 0.716683 10.144729 -2.401808 -2.450963 9.377322 11.782112 -9.369533 -4.500181 -6.931919 -6.647087 3.329905 -5.526440 0.768380 5.618713 1.336999 -8.652654 -5.466059 4.527544 5.327535 -3.853289 -7.272766 2.169123 8.699163 -8.464148 -8.320631 -0.322580 7.984617 -3.036009 -16.552683 -4.991750 -8.575703 5.920496 -0.030443 -3.750147 -10.370580 1.432446 6.420511 -2.810847 -5.916545 0.184359 7.710892 6.173164 4.394221 0.990163 0.645591 2.947864 16.846900 4.496733 -6.109524 0.892524 -0.418199 -4.124416 3.909225 -7.624809 -4.270411 2.162864 -9.900384 2.613171 9.416189 -5.942722 -2.574122 8.797419 3.067936 2.913282 39.556435 0.332529 13.427387 8.209499 -10.595226 4.261035 -3.710916 -0.148873 3.034284 3.917307 0.613771 -18.256159 -9.280645 6.279266 10.571282 7.903817 -13.043464 -4.100225 -1.562225 -0.823879 -0.087287 -0.681378 2.545299 0.042027 -7.881613 -2.524747 8.874214 22.192710 -4.784212 -4.612665 6.087468 4.698347 -6.601561 -13.986056 -4.583261 -7.517912 2.200491 2.721988 0.045260 6.438491 13.276192 -19.088767 8.739299 -0.921518 -0.687774 9.406647 3.668844 -10.180970 -13.005507 -2.223779 6.848171 12.365345 -2.975653 1.739370 3.823242 -9.189385 -0.775669 2.672519 0.072409 -2.639360 4.431693 1.683930 -6.032609 -5.942541 2.564523 -3.293122 -2.714132 -1.479520 6.487102 -0.498902 -15.654929 10.310295 0.569022 -3.774712 2.315816 -3.829503 9.937935 -9.628395 -10.905365 7.460215 -0.252148 -2.587472 -4.840042 1.526388 6.856757 4.253966 4.857432 -6.551995 -12.922457 6.657475 -4.804755 8.513730 4.209760 -0.216214 6.547074 -3.613965 -2.471248 -12.112961 -6.606868 -0.640986 1.479765 -10.646004 -4.965746 -2.466224 10.334657 7.426305 -0.001288 -7.723227 -0.985954 12.156352 -10.114116 -1.878364 6.610773 6.200727 -11.863079 1.003570 8.496145 -12.207109 0.140249 -4.436483 -2.400395 -4.053499 -8.274700 6.127147 1.717695 6.225264 0.436215 1.615189 0.073526 4.149327 3.793440 2.859587 1.921238 13.638565 12.237640 -3.658566 -3.755688 -10.458620 4.443975 -12.816798 -13.903249 5.677758 0.494578 -8.010856 1.038118 2.515233 11.753515 1.874505 0.119014 -1.171277 0.954696 +-1.996814 -2.707055 -0.678719 -5.081458 2.743987 4.322717 1.888960 -3.902066 -6.007885 -0.660165 3.244620 -6.756022 -0.322067 5.941988 -2.344800 5.392468 7.535787 0.995012 -4.098319 -1.249745 5.911161 0.436425 8.735611 7.203644 -4.560661 -0.265896 -1.369555 2.130736 2.987388 0.266425 0.881097 -1.114700 3.425130 -6.036998 -1.599372 -2.942324 0.609017 1.677258 5.354064 -7.293628 1.618008 -0.236440 1.583494 -1.437438 -1.395358 1.365066 3.699790 4.763978 0.289654 1.820520 4.765675 0.739113 -0.219630 1.274423 1.234731 0.616748 2.433643 -1.199903 -1.825885 -3.011010 -0.375362 -0.845312 0.880003 5.161916 6.453615 0.792973 -0.305782 3.364659 2.519176 1.445943 3.856352 0.982403 -1.874986 0.804458 1.395693 -8.153610 0.567344 -8.295511 -1.299040 -9.056385 -3.002984 1.122012 4.444977 0.594482 2.987623 0.510703 4.803649 -0.640094 -2.377799 4.370993 5.897526 -4.829250 -2.529988 -2.201244 -1.998446 1.305705 -2.933401 1.234530 2.844330 1.909810 -4.527920 -0.843242 1.881603 2.503209 -1.988592 -3.175419 1.746157 4.121939 -4.164132 -3.569323 1.387279 5.134969 -0.854308 -9.050228 -0.550560 -4.682128 3.223751 -0.164919 -2.183621 -4.771838 0.532266 2.218929 -1.541824 -2.232065 -2.150602 3.296971 3.244271 3.058059 -0.183562 1.558492 1.496553 8.731934 0.754171 -3.693763 1.173679 -0.593965 -1.279049 3.211967 -3.119780 -2.901230 1.233362 -5.352793 1.718321 4.356228 -2.893278 -1.192556 3.254276 3.163135 0.574853 17.471291 0.415137 7.570522 5.577613 -5.013539 0.952643 -2.709760 1.132546 1.631124 1.710848 -0.660373 -8.667661 -5.129819 3.216757 5.490312 3.823510 -6.343988 -0.489556 -0.146707 -0.645384 -0.150717 -0.351040 1.237249 0.390394 -3.999744 -1.293733 4.793140 11.194574 -2.011964 0.982072 2.359242 0.596363 -2.198677 -6.056589 -2.586766 -2.412977 1.869542 1.725405 1.479549 3.056025 6.493186 -7.006094 4.722208 -0.961199 0.614580 5.117718 2.529783 -6.147664 -5.522381 -2.039821 2.891655 5.486441 -2.196726 -0.102125 3.192901 -4.829825 -0.594567 0.872386 -0.685541 -1.128427 1.518640 1.909607 -2.078406 -2.184262 2.042813 -0.664912 -0.376698 -0.063036 3.965927 0.270610 -6.547151 4.922821 -0.067400 -2.634954 0.779747 -2.107272 5.574009 -4.295530 -3.475236 3.092410 -0.491781 -2.061558 -3.310512 0.920620 3.126341 0.803064 3.370281 -4.222362 -4.614322 3.703312 -3.150139 4.409907 2.170512 -0.960533 2.432988 -2.604315 -0.612009 -5.498660 -3.837575 -1.666872 0.560402 -5.573808 -0.190131 -1.053719 5.059278 3.034763 -0.077244 -4.989190 1.466319 5.168489 -6.011821 -1.636443 2.953404 3.731049 -6.769944 1.766222 3.793158 -6.303468 1.143366 -1.875167 -2.180015 -2.040515 -4.116786 4.099017 2.099226 4.020950 -1.282112 1.663978 0.959837 2.436833 1.352604 1.030970 1.623113 7.231339 5.660213 -0.623914 -2.474240 -5.869019 2.910550 -6.336694 -7.174599 3.234419 1.472432 -4.640291 0.649742 0.558383 6.956540 1.838337 -1.741619 -1.851118 2.027396 +-4.223927 -3.264998 -0.094803 -9.767228 7.348947 8.343813 3.604447 -6.299300 -10.534246 -1.624421 5.141731 -11.649733 -2.965576 12.269499 -4.748213 9.112118 14.678208 1.511746 -6.256832 -1.588864 11.059052 0.694692 15.478286 13.491228 -10.530394 -0.773735 0.381571 4.695279 4.044980 2.568202 -0.109673 -5.953542 6.121930 -10.183207 -2.784654 -5.690806 1.532179 1.759476 8.519657 -14.445506 2.394004 0.246039 -0.685120 -2.691713 -3.020973 1.655870 8.437589 9.772426 -1.971601 3.468730 9.079286 2.032906 -1.549137 2.500875 2.355605 0.865687 2.548636 0.534782 -4.039418 -5.653377 -1.186674 -2.442547 0.791342 10.681021 12.720002 1.327400 -0.213301 6.374134 2.155020 2.401198 5.949838 2.319224 -1.436621 1.895247 5.133559 -11.980643 -0.571375 -16.443653 -2.839235 -18.643890 -6.148305 0.108691 7.606346 -0.692471 6.221372 -0.146258 10.829400 -0.948672 -3.268633 9.396534 12.797851 -10.156834 -5.033688 -6.149567 -5.856071 3.188281 -6.429051 2.549282 4.617884 1.336056 -9.497119 -5.201577 2.371821 4.920096 -4.177854 -6.776175 2.129340 8.362414 -8.854357 -7.037483 -0.483145 7.241101 -1.949854 -17.167320 -5.390378 -7.056406 6.914516 0.181071 -4.004121 -9.556035 1.308308 5.878315 -3.043155 -5.794764 -0.460697 6.632200 6.876630 5.538839 0.849324 1.638823 3.812591 16.783166 3.990485 -6.544262 0.982496 -1.330620 -2.514824 5.263609 -6.205565 -4.206878 2.785649 -10.016380 3.053728 8.896951 -6.133111 -2.797064 7.125011 3.500601 2.579568 33.765361 0.400597 13.088749 8.939354 -10.867190 1.898267 -4.941430 0.454788 3.351900 4.257432 0.536137 -14.382420 -9.897557 7.165681 11.430951 7.830035 -12.535874 -1.337782 -0.578584 -0.362126 -1.579487 -0.509904 2.977816 0.404298 -7.904195 -2.583801 9.792057 19.728292 -5.535359 -4.339878 5.725457 4.395219 -3.478020 -9.789890 -4.789761 -5.810948 2.901841 4.919793 1.376194 6.767265 13.894615 -16.962068 9.072714 -0.873228 -0.328481 8.172926 4.268065 -10.666508 -8.810611 -1.717327 6.808929 10.136052 -1.920113 0.814790 4.550953 -9.966862 -0.962542 2.601876 0.012393 -2.651769 4.435295 2.780627 -5.483669 -6.537788 1.788832 -2.343381 -2.038881 -1.574446 7.430744 -0.602176 -16.353308 10.693976 0.392427 -5.059187 1.359770 -4.428782 10.445544 -10.387011 -10.840420 7.018319 -1.780107 -4.236327 -4.470928 1.582967 6.229634 3.772789 5.562245 -7.558335 -11.081541 7.758578 -3.704835 9.054422 4.489628 -0.006477 7.341378 -5.648735 -2.676949 -10.513742 -6.987651 1.657164 1.088523 -10.808719 -2.783958 -2.400672 10.459140 7.758416 -0.516052 -8.107507 -0.542547 10.246093 -11.250123 -2.673842 6.822418 8.207761 -11.264234 2.507708 8.433060 -10.990884 0.488241 -4.704306 -2.870820 -4.695517 -8.799733 6.741480 1.653325 6.926204 0.217008 2.232544 0.294539 4.654626 2.883978 2.372792 2.388308 12.628089 12.140788 -4.468859 -3.632695 -11.754500 5.850987 -13.468618 -14.741648 6.917837 -0.149493 -7.707019 0.737915 0.615481 11.598046 2.585344 -2.101814 -2.854108 2.536769 +-12.685050 -17.678917 -22.726784 -27.674328 22.376779 44.271828 12.532338 -33.565425 -37.241463 7.566834 24.766282 -51.114600 0.143408 34.785714 -12.600180 41.767534 45.029083 -0.478518 -29.447594 -3.142876 41.289439 13.136417 64.644204 45.387835 -23.211813 -1.453413 -14.596027 14.294655 10.127785 -15.705292 11.824001 0.910114 22.523413 -55.321373 -27.292720 -9.392717 4.111181 7.345791 45.776309 -40.883346 7.724811 -12.489692 -0.459907 -8.012655 -16.311508 -2.626759 24.169383 29.444272 7.623706 12.266831 27.753539 -3.832779 -1.770379 9.127862 6.633962 2.038006 4.678113 -2.569196 -10.308299 -27.413188 -1.186018 2.672295 3.761021 30.126085 37.377263 12.594041 -4.930484 33.715309 10.267988 8.149516 23.472875 7.449151 -24.052404 11.410808 9.620760 -53.259420 1.384502 -42.551440 -12.106195 -28.215158 -16.896366 12.906948 23.824021 -2.093470 25.363756 20.370523 28.709922 -1.605526 -20.306381 42.700375 38.733900 -32.572510 -16.413012 -10.214422 -12.971718 5.689534 -14.522797 16.384163 23.878207 21.649266 -29.078078 -2.079006 7.994198 18.532579 -11.616708 -33.776205 12.901338 21.237348 -18.674761 -24.358976 19.533682 38.915363 -9.577528 -63.593027 -33.390667 -21.091549 26.574170 -1.841927 -13.037849 -37.655766 2.459219 11.395301 -3.567536 -16.045565 12.992303 6.137490 24.115485 22.920470 0.861523 18.734119 13.109869 71.738354 -4.807536 -16.764414 10.434446 -9.169430 1.117511 27.774752 -8.172770 -17.291174 -12.108566 -39.416442 27.867117 37.629628 -15.767914 -15.294875 13.859918 27.584119 -2.146019 124.459137 8.507140 53.912888 41.782058 -34.550455 -5.271069 -31.303210 8.495206 10.441701 4.295836 -10.284118 -58.235587 -33.592365 23.464314 33.258576 21.875185 -47.208589 2.395357 4.220378 -2.060945 -1.651010 -4.127769 9.677806 6.700257 -15.719797 -6.022425 43.975615 81.033208 -15.785223 14.652782 24.136989 0.323779 -9.939382 -42.089899 -19.246866 -12.145852 9.362513 22.497783 14.891209 13.566874 38.414932 -25.108517 23.753193 -3.510151 11.486604 33.929324 27.255279 -47.446178 -22.148972 -18.126228 20.311232 30.357657 -16.410733 -11.681911 16.843857 -27.274924 -3.861298 15.998289 -11.298660 -2.155605 13.215053 6.789487 -7.262767 -14.129130 23.461525 -5.471723 6.732361 3.245587 27.328513 -14.046310 -33.735524 31.852258 3.963723 -19.982670 2.815232 -18.672789 42.470214 -21.480396 -24.375302 25.663259 -6.847863 -11.915781 -12.534608 7.908345 14.408981 23.923963 29.909339 -31.931470 -18.809483 24.222032 -15.071250 27.321364 13.372512 -5.760994 12.152715 -47.262423 -13.919217 -36.032729 -33.533775 -7.775325 12.100442 -42.414167 -2.907154 -5.593462 32.918188 12.268534 4.018920 -46.498732 11.286557 32.507285 -35.336192 -13.502696 17.265223 28.453852 -58.187634 9.388054 22.207155 -35.946717 15.106499 -6.359188 -12.736621 -19.315151 -31.478370 22.794666 19.589230 26.048598 -8.765629 9.708308 18.017578 15.918614 8.260670 22.054276 12.819957 44.843673 24.469683 -1.637682 -25.328997 -40.608463 17.488215 -40.172248 -52.538049 29.020496 15.995922 -25.650943 -0.205427 4.450056 45.073375 13.330007 -25.842520 -12.259887 13.211603 +-9.263669 -9.579382 -1.412451 -20.342426 13.903732 14.319701 7.751427 -14.828356 -21.526318 -1.245881 11.255065 -20.726131 -2.758607 24.572887 -9.139351 21.302478 28.851667 4.395157 -12.556321 -5.291493 23.285441 0.807130 30.926644 27.243067 -20.676660 -1.727944 1.283316 7.786573 10.875889 2.416729 -0.909259 -8.643151 13.936480 -23.252690 -5.702489 -13.178622 3.311020 6.518627 21.568664 -27.965061 5.742829 -3.791592 0.822815 -4.978904 -6.315145 5.920409 13.792290 19.956158 -4.613011 9.194984 19.113673 3.348564 -3.160627 5.600271 4.608248 3.766584 4.900404 2.519706 -6.229164 -11.358884 -2.128024 -3.202198 3.687856 20.644122 25.373299 1.728676 -0.580781 14.485140 7.221373 4.646995 13.473581 4.587619 -3.637668 1.052862 9.499288 -29.528384 -1.840485 -38.099085 -6.512523 -39.813167 -11.815493 2.161969 14.139163 -7.189209 14.031504 1.851193 20.966914 -0.349612 -8.376838 16.238504 23.280517 -21.713633 -9.731194 -10.121290 -10.752851 5.727777 -12.560876 6.190387 11.643378 2.429436 -18.606843 -11.798919 6.190263 10.173112 -8.528740 -16.361072 5.051973 16.636394 -16.196792 -15.854654 1.158927 15.116585 -6.029757 -32.702110 -4.846938 -16.837619 16.395131 -1.228740 -8.094541 -19.899513 1.710795 11.450972 -6.974934 -12.993527 0.251559 11.925087 15.284837 11.472921 0.552594 2.020510 5.272010 34.887028 7.309683 -15.395814 2.123774 -2.146598 -5.355386 11.592273 -14.756348 -9.488973 9.634756 -20.453515 6.237611 16.599570 -12.056427 -4.561823 23.674889 8.591023 3.919063 63.400906 1.820067 26.010159 19.987254 -20.537640 2.380308 -10.261479 3.623261 9.235859 10.006731 -1.655087 -29.698177 -20.789889 12.932933 22.152322 15.736459 -26.237490 -7.621327 -1.820846 -0.800012 -2.465471 -2.477201 4.994271 -0.417499 -15.642765 -4.690644 17.784988 37.906418 -11.733402 -3.784122 10.045518 10.138197 -8.837942 -21.606149 -11.141145 -14.963016 6.313997 8.519832 4.413111 13.990903 27.285179 -35.398240 17.537068 -4.170259 0.677625 14.898016 10.806351 -22.186322 -20.111881 -3.749755 11.008963 19.727737 -5.394120 4.640502 12.464478 -20.347363 -1.708194 3.326316 -1.379988 -5.654774 7.919960 6.921942 -10.036161 -10.710823 7.726760 -3.933545 -6.053897 0.395394 16.064582 0.370296 -33.060593 18.676081 -0.859496 -10.704471 5.975317 -8.614461 23.317208 -20.058961 -18.966682 14.771489 -1.231706 -4.008134 -9.975174 4.597212 13.727255 3.414378 12.344088 -14.834421 -21.481330 13.487303 -9.434192 17.341797 8.825869 -1.873550 13.292653 -17.286073 -4.693590 -22.101082 -11.642623 -0.242431 3.148072 -21.238481 -5.621640 -3.975879 21.271185 14.987764 0.237881 -15.651656 2.255860 20.172759 -26.064080 -3.348035 13.450324 21.329500 -21.703769 5.805764 16.272080 -23.118848 1.757519 -7.276197 -6.342002 -7.718165 -16.235703 16.278823 5.273807 15.230351 -2.960021 6.145639 3.247685 11.016831 6.496841 5.489620 5.268818 24.588233 26.203873 -7.760570 -10.925748 -22.721981 10.795149 -25.866878 -28.070152 13.415152 0.579027 -17.529254 2.808504 0.605275 25.207568 5.417955 -3.245820 -5.766638 4.500765 +-46.512005 -25.305671 3.592983 -95.698157 77.843077 56.235416 38.283770 -50.008763 -96.238732 -24.684558 29.687505 -102.568116 -35.180164 121.779881 -39.758147 94.668112 166.012837 31.072368 -43.558304 -25.529825 110.180252 -27.003731 158.189878 142.037725 -104.737588 -8.534938 20.571045 54.417332 27.315003 33.238636 -17.498621 -66.365282 62.531434 -108.314928 -10.000255 -80.677256 18.812917 27.966175 81.172779 -162.306523 27.383661 -17.647863 5.541910 -26.388429 -37.611870 33.811424 96.860810 101.326599 -31.866310 33.629282 90.479837 16.612981 -14.293538 33.296305 17.776392 26.997722 17.523108 14.828439 -46.269828 -46.239293 -15.732115 -40.493006 21.815947 101.717094 133.726213 9.782210 -1.851940 71.034360 18.090554 23.462380 50.119845 21.588384 -2.667464 4.856722 55.216531 -152.264209 -18.341165 -218.194822 -37.016660 -233.990493 -70.166507 -19.431647 64.900925 -27.759076 69.047468 6.985677 112.788657 -5.874091 -10.927451 86.604210 134.545505 -113.413760 -52.548183 -73.929775 -53.774418 34.089810 -61.223514 13.633751 66.821746 5.393037 -96.464088 -74.371197 47.409250 44.908962 -40.318837 -86.641352 21.077636 84.401519 -90.025704 -83.424966 -41.148534 57.848495 -25.298690 -172.871053 -1.450142 -70.199268 80.754468 5.608729 -37.621294 -113.152241 13.993278 71.682085 -38.617875 -66.240945 -9.411807 84.710600 64.730698 35.997118 20.288607 7.515181 25.158503 171.638399 66.618699 -71.478755 -4.520489 1.519550 -53.770564 29.804470 -85.687378 -51.624647 54.844640 -113.612585 31.190787 85.280683 -67.780534 -24.757984 115.525526 19.701520 42.863491 327.619927 -2.500764 116.291611 81.065559 -114.351539 48.252797 -48.637192 -0.147438 34.535031 61.197547 9.414510 -158.031396 -103.315803 60.651993 110.223533 85.427862 -130.744424 -55.106569 -25.835510 5.088688 -5.302847 -13.605735 34.810718 -1.212949 -82.002989 -21.563996 86.071564 210.981520 -59.006688 -33.490390 57.371161 53.617028 -46.208456 -139.774226 -55.931378 -89.645422 16.630492 30.317739 11.528554 64.129155 144.697657 -203.319769 92.389281 -26.020717 -7.234363 77.991348 38.653938 -94.877866 -139.421301 -8.378779 81.796373 119.191400 -19.286982 29.673692 38.002656 -99.902383 -8.760223 16.161998 17.974812 -31.286927 44.701176 15.750679 -74.759673 -62.428696 21.455858 -28.835337 -37.645807 0.643374 69.322852 22.627099 -184.988195 115.742807 -11.488540 -47.349659 39.052643 -34.179059 111.141890 -106.377921 -115.143936 74.758543 -8.639049 -20.136565 -52.358191 24.106769 73.842598 9.463917 36.766615 -60.183223 -133.765306 71.058992 -33.388823 86.022793 45.174723 6.565100 86.104611 -46.590272 -37.443741 -115.155334 -57.553333 -7.755324 -4.826838 -98.404104 -39.952538 -22.865209 109.509616 100.198070 0.487171 -62.987180 2.707156 114.686835 -132.105076 -26.066432 82.459526 83.303354 -100.492109 27.390782 97.882053 -125.725567 -19.851390 -52.688372 -14.559679 -29.162442 -96.525533 58.584257 -9.367586 56.356084 11.488305 13.828679 2.137394 54.146256 35.787486 25.697184 8.201168 136.366110 142.984404 -51.388768 -39.691255 -107.862689 44.666130 -146.640788 -136.263128 54.811519 15.088677 -76.801676 17.334217 21.450060 114.395983 1.634394 -5.368351 -27.181437 -2.179823 +-4.640913 -3.576808 0.396589 -11.767083 7.809318 8.478611 4.052467 -5.344742 -12.821997 -3.622444 4.666879 -14.590019 -3.837185 14.620520 -4.775154 10.060253 18.174152 2.476746 -6.529393 -0.968240 12.685979 -1.306553 17.883639 15.653224 -11.330948 -0.965986 -1.513382 6.709985 2.957599 4.376326 1.361470 -7.921304 5.767749 -11.161214 -2.566199 -7.731089 2.249307 3.240482 7.969601 -18.300473 3.134896 2.900011 0.413047 -3.871535 -3.472535 -0.224458 10.164350 11.361348 -1.799313 2.864031 9.771872 2.428594 -1.420987 3.222635 2.752715 1.077164 1.569257 -2.999716 -5.952524 -5.421193 -1.063420 -4.759950 1.494470 11.780147 14.769597 1.770313 -0.061065 6.773353 1.599379 2.800521 6.868508 1.877547 -2.207263 1.168365 5.493737 -13.909767 -0.713840 -18.262492 -2.517881 -21.829512 -7.794012 -0.430335 10.137610 4.143823 6.336259 -1.912835 11.792198 -2.439780 -2.528397 12.348276 14.895141 -10.882117 -6.122394 -8.993236 -6.435013 4.597459 -7.261629 0.858055 4.531285 2.486132 -10.690274 -4.694679 4.050332 5.509729 -4.489029 -8.194843 2.807814 10.420570 -10.837180 -8.796977 -1.121729 9.986736 -1.912537 -19.637142 -5.258803 -8.170758 5.521400 0.694161 -4.264890 -10.524558 1.789275 6.293699 -3.304162 -5.719713 -4.953559 9.084074 6.548011 5.053113 1.499561 2.727913 3.786600 18.849429 3.834993 -7.077247 1.104021 -0.329567 -3.539164 4.817137 -7.400892 -5.862182 2.398339 -11.751127 1.451458 9.777928 -7.325864 -3.270261 4.567620 4.158568 4.014714 41.016531 0.720957 15.305180 10.508802 -12.417094 4.865684 -4.801131 -0.170383 2.773948 4.716989 0.673525 -17.899595 -11.291860 7.302774 12.667000 9.568027 -12.504910 -1.398090 -1.630938 -0.445316 -0.863066 -0.418657 3.657444 0.542310 -9.811705 -2.834629 11.291021 24.948941 -4.760004 -2.836992 6.995804 4.553610 -5.037973 -13.173159 -5.090212 -6.165410 2.482133 3.922425 0.755832 7.293193 15.982590 -18.557560 11.054519 -0.796959 0.148986 9.546504 3.476079 -12.181871 -13.596545 -2.983969 8.712989 13.816783 -3.181666 2.153381 4.201913 -11.057033 -1.106047 2.865395 0.362495 -2.339524 4.709063 1.233276 -6.639559 -7.324328 1.500550 -4.389333 -1.774671 -2.372419 7.681013 2.420916 -16.155613 12.820609 0.058620 -4.740872 1.618738 -4.375065 12.464642 -12.055325 -12.423873 7.826170 -1.824119 -6.275569 -5.482850 1.731481 7.491964 3.254711 4.085621 -6.973245 -12.933237 9.909626 -4.205712 10.123979 5.076764 -0.390668 7.740796 -1.687705 -3.351130 -11.202916 -9.851364 0.398721 -0.064629 -12.325172 -2.362510 -2.944706 11.970329 9.180925 -0.316798 -10.274112 0.200802 12.941686 -11.215884 -4.073765 8.428658 5.644340 -13.306808 2.584131 10.573059 -14.115497 0.163960 -6.322467 -1.352517 -4.273632 -10.428507 6.712336 1.483610 7.320203 0.782256 2.037146 -0.647382 4.705387 4.036080 1.833743 1.985446 16.703024 12.405176 -3.801375 -3.099908 -12.928116 5.468062 -15.517180 -16.146891 6.355045 1.720318 -8.996840 1.668125 2.231663 13.126536 2.764186 -0.800662 -2.912360 1.945565 +-1.517112 -1.360901 -0.693222 -2.512308 2.743551 1.289416 1.636520 -0.945347 -4.093556 -0.865361 1.170654 -4.128941 -1.646983 4.883729 -0.785506 3.760862 6.667201 1.568266 -1.477186 -0.461957 4.790697 -3.036517 6.177188 5.490128 -3.290298 -0.126070 -0.114988 1.584184 0.045761 1.666996 -0.495301 -2.570970 2.468459 -5.135438 -0.182028 -3.346904 0.615181 1.456676 3.481242 -6.783702 0.859225 1.001038 1.212253 -1.137348 -1.430289 2.071210 3.037444 3.626548 -1.263842 1.922581 3.376231 -0.912662 -0.007429 1.301969 0.992200 0.986310 0.106104 1.328033 -2.807543 -1.093527 -0.701429 -2.807669 0.671802 3.063656 5.657690 -0.067287 -0.050835 2.405753 -0.140346 1.049281 2.079877 0.515008 0.324307 -0.992562 2.505782 -5.253520 -1.320905 -9.130996 -1.465363 -11.583811 -2.694241 -0.543887 3.732569 -0.766737 2.235208 -0.415117 3.988633 -0.420608 -0.586406 3.890532 4.976330 -3.965491 -2.391405 -2.899219 -1.806296 1.491752 -2.408772 -0.235700 4.798215 -0.368790 -3.671309 -2.460622 2.566659 1.595971 -1.245876 -3.543528 0.521911 3.555089 -3.525215 -3.427560 -1.997610 1.975552 -0.745708 -6.813353 0.825545 -1.905966 1.861840 1.318856 -1.623234 -3.285991 0.942084 1.816314 -1.393851 -2.363425 -0.194263 4.187438 1.478017 1.525365 1.284904 0.639354 0.784287 6.409442 2.517447 -2.453345 0.064252 0.410966 -2.422561 1.713102 -3.123944 -2.790646 2.650281 -4.563046 1.330602 1.679155 -2.682602 -0.634922 4.368827 1.282905 1.412536 12.090488 0.211885 5.298041 2.972598 -3.967364 3.808842 -1.427639 0.106652 1.180558 2.904633 -0.131175 -5.847799 -3.598628 2.067122 4.144910 3.263184 -5.969497 -2.753024 -1.125528 0.744856 0.204719 -0.185703 1.655664 0.477413 -3.005909 -0.530907 2.960555 9.051680 -2.550609 -0.922710 2.172790 1.897939 -1.898762 -7.190417 -1.748574 -3.749275 0.320264 -0.169316 0.031486 1.882952 5.187450 -8.215033 3.810550 -1.562195 -0.193702 3.623588 1.541473 -4.424237 -7.833724 -0.744268 2.613705 5.467344 0.061873 0.554807 1.361065 -3.537774 -0.270231 0.307512 0.468776 -0.689928 1.893760 -1.033590 -2.167513 -2.227432 0.358722 -1.224221 -1.686331 0.215382 2.390811 2.351767 -7.338708 3.650501 -0.492599 -1.918376 0.888057 0.148809 3.413259 -3.641102 -4.571670 2.355526 -0.818289 -1.803940 -2.637560 0.505653 2.233589 0.500046 -0.043014 -0.944310 -5.648550 3.609413 -1.718068 3.299804 1.652135 -0.328226 3.505299 0.129875 -2.470188 -4.704741 -1.795467 -0.968691 -1.850588 -3.703511 -1.332360 -0.865406 3.999292 3.382635 1.086566 -2.597312 -0.337636 5.199516 -4.306930 -1.446241 3.788096 2.542474 -3.635924 1.484533 4.193674 -5.530256 -0.504526 -2.144964 -0.354738 -0.820050 -2.933031 1.729772 -0.683682 1.617905 0.025805 0.339718 0.114279 1.601381 1.435898 0.579671 -0.566187 6.383338 5.530740 -2.736656 -0.783921 -3.813814 1.500579 -4.946691 -5.318604 1.396358 2.105116 -3.327850 0.821499 2.444239 4.163873 0.109449 -1.055580 -1.506278 -0.250015 +-3.965667 -3.058334 -0.436367 -8.936670 6.587861 8.255110 3.268357 -6.433526 -9.396382 -1.124553 4.919711 -10.441787 -2.453142 11.071921 -4.646741 8.677621 13.190737 1.194948 -5.885372 -1.399947 10.317641 1.335383 14.499589 12.390765 -9.686866 -0.933804 0.522601 4.405048 4.145346 1.844951 0.056210 -4.997040 5.945576 -9.755059 -3.113375 -5.166751 1.713094 1.565426 8.280915 -12.748459 2.176869 -0.664715 -1.017526 -2.376448 -2.945748 1.317772 7.444869 9.141310 -1.632064 3.053833 8.527651 2.196836 -1.638888 2.412396 1.846455 0.642477 2.104148 0.229235 -3.276686 -5.613035 -0.869253 -1.981926 0.663015 9.988168 11.842393 1.416446 0.018299 6.236393 1.953444 2.132496 5.505441 2.108113 -1.644910 2.107138 4.500562 -11.366362 -0.436597 -14.712745 -2.915121 -16.038882 -5.296387 0.144951 6.232271 -0.952917 6.152034 0.422301 9.683983 -0.438058 -3.170032 8.707547 11.506435 -9.656429 -4.568580 -5.456261 -5.171617 2.909453 -6.170198 2.898715 3.740001 1.451677 -8.563939 -4.924753 1.840248 4.805928 -3.852703 -6.635795 1.993182 7.410090 -7.950638 -6.581599 0.053475 6.503361 -2.240276 -15.895211 -5.285921 -6.763226 7.104574 -0.256772 -3.282688 -9.046361 0.927382 5.676449 -2.429314 -5.733905 0.130473 5.428640 6.679514 5.150281 0.554509 1.394790 3.460062 16.018401 3.372940 -5.888386 0.822913 -1.538765 -2.352623 4.980604 -5.779568 -3.598307 2.507560 -9.324269 3.066274 8.818214 -5.435179 -2.713330 7.093408 3.284464 2.442593 31.282794 0.656230 11.959900 8.551861 -10.063225 0.873400 -5.041900 0.598842 3.302676 3.489971 0.282917 -13.609510 -9.071109 6.453638 10.296991 7.068962 -11.557022 -0.985100 -0.503286 -0.313613 -1.797116 -0.795826 2.827754 0.004394 -7.137552 -2.355595 9.364912 17.855347 -5.133572 -3.096787 5.413132 3.884652 -3.413568 -8.756659 -4.624740 -4.961778 2.814905 4.992735 1.515642 6.079785 12.564082 -14.638784 7.974349 -0.619253 0.000870 7.130781 4.127981 -10.050140 -6.854697 -1.252747 6.141459 8.720199 -2.025234 1.003704 4.424691 -9.179034 -0.911175 2.536286 -0.133946 -2.197307 3.843661 3.175652 -4.973996 -6.285264 2.312492 -1.863839 -1.876680 -1.185255 6.998232 -1.204426 -14.820662 9.715685 0.176433 -4.881121 1.425348 -4.535760 9.960353 -9.726945 -9.729431 6.720280 -1.517486 -3.340302 -3.971684 1.788628 5.832239 3.740814 5.670995 -7.231719 -9.915667 6.594906 -3.319228 7.891774 3.974428 0.254719 6.405933 -6.726125 -2.214391 -10.064453 -6.438930 1.446762 1.539615 -10.302774 -2.371314 -1.997298 9.788716 7.102779 -0.676990 -7.743661 0.103948 9.222812 -10.605596 -2.444969 5.965440 8.782865 -10.709936 2.019437 7.343801 -10.096669 0.504415 -3.761484 -2.734413 -4.216468 -8.410034 6.336083 1.781001 6.781456 0.155223 2.474484 0.561482 4.416783 2.580156 2.595058 2.479961 11.330942 11.088354 -3.733291 -3.899277 -10.909695 5.280903 -12.451075 -13.877442 6.817097 -0.445897 -6.848778 0.847011 0.367228 10.921755 2.504955 -1.890136 -2.472352 2.158572 diff --git a/src/test-suite/oracle/SYM_llvm14_f/ir2vec.txt b/src/test-suite/oracle/SYM_llvm14_f/ir2vec.txt deleted file mode 100644 index 7ae1317bf..000000000 --- a/src/test-suite/oracle/SYM_llvm14_f/ir2vec.txt +++ /dev/null @@ -1,1677 +0,0 @@ -PE-benchmarks/strongly-connected-components.cpp__Graph::Graph(int) = 0.692269 -1.244844 3.506913 1.851015 -1.308601 0.339172 1.204345 -1.000455 0.625089 -0.291419 -0.729784 0.919786 -1.462076 -0.256313 0.201414 0.078171 -3.328404 -1.166654 -0.409280 -0.927012 -1.015144 -0.829841 0.313475 1.377666 1.733907 1.777576 -0.539013 -0.520772 -1.380910 -0.523509 0.556903 -0.162742 0.750329 2.097356 2.118593 -2.749548 1.353011 0.789002 -0.207828 -1.777241 0.813692 -0.039710 -0.170455 -0.626550 -0.090767 0.635207 1.035652 2.570358 0.928941 0.575710 -0.710720 -1.245153 0.257827 2.651771 0.619888 0.882439 1.619015 -1.141407 0.721717 0.167642 0.286350 -1.252460 -0.083773 0.343150 0.003560 -0.568120 0.492492 -1.876895 -0.383207 1.675851 0.998848 -1.242425 -1.276438 -1.775827 -1.817374 -0.083316 -2.556553 2.866678 2.433365 -2.020001 1.533652 0.323412 1.150349 -0.363046 0.926332 0.044550 1.782717 0.425304 -0.366870 0.304874 -2.082897 -2.181838 -0.036989 -0.618934 -0.503165 -1.462410 1.142455 -2.878669 -1.924225 1.024968 0.706550 -1.055731 -0.230868 0.475206 0.665278 0.471511 -0.660959 -1.183525 -0.665994 0.512592 -1.161013 0.658925 0.342505 1.231534 -0.870247 -0.224100 -1.673493 1.046842 0.656021 -0.200751 -0.029279 1.855185 -0.501380 1.078375 0.149899 0.277860 -0.312222 1.906961 0.804129 0.154971 0.387447 -0.087152 -0.454914 0.857210 0.734928 1.376718 -0.101848 -0.175162 0.277153 0.974010 -1.101004 0.278208 -0.679677 2.125538 0.072799 -1.553088 -2.375685 -0.849851 -1.659726 -1.771094 0.190379 -0.680335 -1.101418 1.155460 1.127030 2.254503 -0.143511 0.791525 -1.108597 0.197453 -0.112662 -0.393390 0.022062 0.311064 0.934918 -1.319310 -0.289164 0.211673 -0.283915 1.153400 0.328663 -0.545137 0.250203 -1.722290 -1.367305 0.729866 1.194909 0.136012 1.001646 2.047473 0.576955 -1.256664 -0.921278 0.998024 -0.375877 -1.227732 0.824636 -1.284944 1.124807 -0.000843 0.462754 1.461247 0.068774 0.090388 0.967294 -0.276093 0.320793 -0.863317 -0.545120 -0.569158 0.244058 -0.811912 0.667614 -1.228900 -0.541454 -1.087454 -1.364153 2.362905 -1.654503 -1.768477 2.148945 -1.058409 2.239339 -1.778525 2.001621 -0.619333 1.306742 0.138954 -0.284774 -0.098495 -0.737060 -0.733417 1.071771 -0.209418 -0.074937 -0.111710 1.446705 0.636286 0.449977 -0.001416 1.515626 -1.128552 1.149202 -0.483981 1.046440 -0.667333 -0.519872 -0.363624 -0.018678 -0.306711 0.177432 0.321065 1.442703 0.152585 1.283789 1.283389 0.667835 0.749309 -1.060993 0.140150 -0.062005 1.322201 -1.371668 -1.344858 0.670460 1.104817 -0.142978 -0.055397 -2.349364 -2.328127 -2.443136 -1.827235 -1.355630 -1.268259 0.962776 -0.090536 -0.608656 -0.936145 -1.080413 0.719789 0.342558 0.112475 1.239070 -0.142830 1.910125 1.640015 -0.398561 0.062099 0.744766 1.300507 -0.151953 0.001329 -2.239289 0.882888 -2.521375 0.643797 2.652918 -0.676938 1.369578 -0.762324 2.598861 -2.596534 1.509466 0.739954 -2.348113 0.239592 2.309937 0.634620 0.719970 -1.392323 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/strongly-connected-components.cpp__Graph::DFSUtil(int, bool*) = -0.014302 -2.086496 6.245140 4.281421 -1.930238 0.781080 0.632405 -2.436487 1.457373 -0.999055 -1.434615 1.883577 -2.951757 0.787269 -1.536380 0.995559 -5.693077 -2.225282 -1.222730 -2.330991 -1.627963 -1.315922 0.530537 2.495393 2.838917 3.686988 -2.148542 -0.141784 -3.023205 -2.170648 1.224603 -0.628479 2.193392 2.778768 1.476416 -6.879588 2.954950 2.990669 -1.074120 -2.788267 2.140469 -2.411020 -0.443141 -2.251588 -1.569215 0.855192 0.760352 2.448935 2.172202 0.259054 -0.861455 0.148105 1.197741 5.050167 -0.942198 2.112413 2.399900 -1.240367 -0.242556 -0.557077 0.329547 -0.780279 1.210809 0.702772 -1.173933 -3.269814 0.095562 -2.426294 -1.516691 2.703216 0.985753 -0.777513 -2.396430 -1.846826 -3.688413 -0.865788 -0.857762 3.637598 4.276765 -3.101361 2.721888 0.406632 0.720707 0.065751 1.670942 0.519011 3.326941 0.845893 -0.328524 -0.273532 -2.918408 -1.158402 0.687848 0.560498 -1.656105 -4.169905 1.869201 -6.391241 -4.083951 0.726941 1.509288 -2.389974 -0.767826 0.095174 0.975561 0.892120 -0.956608 -2.439101 0.052162 1.089947 -0.857924 -0.438199 -0.290991 0.657560 -0.577169 -0.705653 -4.510639 2.052297 0.359265 -0.403594 0.060052 3.266555 0.142772 0.638532 0.206549 1.589132 -1.298384 3.689605 -0.243733 0.818823 -0.472269 0.820994 0.210571 0.120346 1.729751 1.520932 -2.690085 -1.846891 -0.822105 1.075642 -2.099191 -0.478668 -1.189253 3.282767 1.541404 -2.569783 -2.790981 -2.074948 -2.974471 -4.481300 -0.178894 -1.591101 -2.745036 1.527969 2.427399 2.353412 1.819726 2.790234 -1.431612 1.036503 0.375860 -0.873615 2.369109 0.236030 2.308374 -2.309602 -1.786734 1.876490 -0.452421 2.432927 -0.329058 0.429116 0.528284 -2.991828 -1.634377 2.250561 1.693979 0.762644 3.299811 3.518162 3.418091 -2.517128 0.648930 1.928584 -1.493402 -0.775511 1.288236 -2.784266 1.617219 1.055119 0.069989 4.030637 0.083945 -1.201516 1.242504 0.071308 1.007745 -2.899812 0.432372 -1.553454 0.271217 -2.388647 0.437493 -1.751304 -1.440651 -2.486223 -2.818238 4.431426 -4.985472 -3.101842 3.680299 -0.195598 3.410887 -4.832779 2.413846 -2.161959 3.599656 -0.469208 -1.020422 0.567450 -1.891568 -2.930565 1.723765 0.978540 -1.194817 0.687826 2.631972 2.000952 0.952509 -0.444057 3.062769 -0.911440 3.228324 -1.716715 2.479532 -0.499235 -1.505308 -0.182170 -0.640346 -1.345076 -0.013342 1.419476 2.799828 1.713484 2.804755 2.264604 2.335198 3.066774 -1.751948 0.953481 -1.060919 1.744767 -2.020324 -2.247763 0.852076 2.262566 -0.206384 1.369643 -4.950587 -5.378532 -4.742420 -3.824136 -0.416222 -1.482813 1.419445 0.172541 -0.733067 -3.494611 -2.585424 2.978817 -0.501552 3.879412 2.245857 0.429212 2.891579 3.069426 -1.314155 -0.521873 1.118939 2.402284 0.475311 0.169596 -4.574990 3.487260 -2.541101 1.297876 5.243972 -2.707220 2.124636 -0.775565 3.898232 -3.561818 4.586999 1.033805 -4.195511 2.028883 3.103987 1.823420 1.214185 -2.345836 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/strongly-connected-components.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator*() const = -0.057136 -0.112478 1.300928 0.613332 -0.443271 -0.013974 0.220378 -0.658615 0.743476 -0.066499 -0.310699 -0.449005 -0.535948 -0.041464 -0.323202 0.183070 -1.069220 -0.336669 -0.383939 -0.802443 -0.125491 -0.436771 0.496590 -0.102322 0.515091 0.387234 -0.148142 0.022531 -0.042005 -0.564705 0.718965 -0.205167 0.289900 0.281447 0.029326 -1.267999 0.799610 0.353548 -0.356044 -0.312705 0.389791 -0.076662 -0.180100 -0.083328 -0.358115 0.159940 -0.067273 0.605290 0.564521 0.154258 0.209253 -0.257565 0.099136 1.086647 -0.537907 0.171997 -0.027757 -0.236280 -0.155251 0.371636 -0.010697 0.066279 -0.020913 0.367566 0.208007 -0.574309 0.361079 -0.496133 -0.621585 0.796022 -0.312529 -0.322321 -0.224938 -0.317730 -0.515282 -0.013685 -0.512873 0.689982 0.791137 -0.428682 0.370841 0.027945 -0.114817 -0.089588 -0.385658 0.091448 0.408521 0.035584 0.114850 -0.236264 -0.135418 -0.209931 0.211556 -0.198688 -0.151422 -0.826646 0.644038 -0.916466 -0.440359 -0.047031 0.558617 -0.436789 -0.142360 0.076496 -0.022410 0.068270 -0.074023 -0.341337 0.008757 0.225201 -0.109058 0.348498 -0.015783 0.162112 -0.173335 -0.091234 -0.711740 0.279336 -0.423457 -0.026440 -0.032732 0.446363 -0.154361 -0.211728 0.324398 0.568062 -0.285209 0.693594 -0.140528 0.485107 -0.111116 0.496382 -0.026940 -0.146163 0.439886 0.301705 0.141748 -0.220483 -0.269516 0.110739 -0.745489 -0.112325 -0.318164 0.007889 0.426353 -0.645138 -0.337299 0.036306 -0.549746 -1.059747 -0.089056 -0.445375 -0.522364 0.464171 0.372966 0.882495 0.449099 0.867468 -0.761089 0.061052 -0.199059 -0.501018 0.179439 0.022817 0.434366 -0.220265 -0.199108 -0.139564 -0.187564 0.470301 -0.079199 -0.193861 -0.100574 -0.831657 0.035345 0.439192 0.263102 -0.087915 0.037625 0.811937 0.312742 -0.629782 0.162651 0.754737 -0.234855 -0.300284 0.476989 -0.651794 0.231935 0.198268 0.070078 0.305765 0.038784 0.199034 0.098604 -0.503785 0.047722 -0.492490 -0.273904 -0.196232 0.146719 -0.497553 0.138061 -0.493338 -0.213446 -0.139104 -0.433848 0.477222 -0.717890 -0.429237 1.049349 0.059001 0.353243 -0.448663 0.622703 -0.284553 0.680924 -0.093456 0.047136 -0.154978 -0.268008 -0.416356 0.053600 -0.155217 0.069380 0.379843 0.872724 0.470758 0.051086 -0.208339 0.939920 -0.477218 0.771484 -0.384484 0.308832 -0.189568 -0.516404 0.057072 -0.115428 -0.495429 -0.330499 0.410887 0.686803 0.403525 0.363801 0.691303 0.153356 0.719828 -0.025800 0.449203 0.058382 0.291284 -0.182009 -0.264690 0.613955 0.513796 -0.523050 0.226496 -0.852946 -1.100893 -0.936128 -0.720581 -0.135226 -0.747549 0.256901 -0.179245 -0.018241 -0.399423 -0.498013 0.599421 -0.048473 0.549657 0.197321 -0.016003 0.321798 0.837129 -0.449053 0.110388 0.312838 0.539257 0.094974 -0.202199 -0.770193 0.810437 -0.479352 -0.123203 0.990729 -0.543512 0.275332 -0.069290 0.368176 -0.854645 0.635079 0.152693 -0.226198 0.708148 0.301662 0.460888 0.733306 -0.244624 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/strongly-connected-components.cpp__Graph::getTranspose() = 0.259648 -2.153561 6.364869 4.445822 -1.826844 0.693985 0.509458 -2.437910 1.645933 -0.432594 -1.615438 2.180602 -2.770422 0.833012 -0.970293 1.571765 -5.703722 -2.308663 -0.914834 -2.068761 -1.658480 -1.417506 0.542990 2.375738 2.843749 3.617973 -2.064416 0.231002 -2.458011 -3.242964 0.663554 -0.801612 2.247206 2.519844 1.796089 -6.411695 3.335458 2.881746 -0.932335 -3.137063 1.903820 -2.078028 -0.471808 -2.050652 -1.404087 1.376354 1.154850 2.992649 2.133491 0.896442 -0.775254 -0.140562 1.518603 4.498386 -0.564298 2.099359 2.489257 -1.362957 -0.270204 -0.727441 0.522807 -1.020336 1.132991 0.876386 -0.991358 -3.209298 0.040466 -2.209062 -1.627276 2.710909 1.062172 -1.041848 -2.660029 -1.996843 -3.111881 -0.694195 -1.316283 3.582179 4.476437 -2.979126 2.772763 0.631491 0.917653 -0.036400 1.527489 0.399249 3.295052 0.993319 -0.654107 -0.283548 -2.399741 -2.016763 0.727181 0.311878 -1.479486 -3.939447 1.636328 -6.017955 -4.003924 0.908098 1.452652 -2.289838 -0.791351 0.146544 1.399590 1.198107 -0.786127 -2.361475 0.340158 0.796541 -0.992068 -0.533294 -0.385105 0.814551 -0.755536 -0.074923 -4.755889 1.752331 0.624620 -0.594331 0.359414 3.017079 0.223497 0.913116 0.092128 1.397192 -0.959816 3.837935 0.268489 1.120228 -0.327934 0.823572 0.276908 0.934404 1.747868 0.575242 -2.427773 -1.533904 -0.588130 1.228890 -2.003691 -0.196620 -1.509651 3.385084 1.919958 -2.317920 -3.206274 -2.169649 -3.300808 -4.035109 0.325326 -1.906744 -2.611537 1.537295 2.480391 1.810810 1.661391 2.739146 -1.930546 0.986040 0.189137 -0.439233 2.180996 0.353448 2.327699 -2.303246 -1.549270 2.277793 0.065009 2.077383 -0.217490 0.024292 0.956808 -2.996758 -1.600791 2.684274 1.591797 0.858057 3.080608 3.083139 3.875195 -1.584345 0.290497 1.854404 -1.152208 -0.913559 1.335875 -2.854284 1.763347 0.752001 0.907106 3.931791 0.126906 -1.206166 1.348605 0.142914 0.816079 -2.863708 0.519859 -1.460817 0.596115 -1.939398 0.691592 -1.804221 -1.287013 -2.262696 -2.245866 4.467920 -4.414003 -3.268473 3.562671 -1.018128 3.672099 -4.641992 2.691862 -2.175954 3.275450 -0.383272 -1.039608 0.687503 -2.468629 -2.594305 1.517655 1.114370 -0.412151 0.507600 2.436338 1.923698 0.637021 -0.138155 2.839513 -0.917332 3.216027 -1.343224 2.261617 -0.635804 -0.809297 -0.395820 -0.596636 -1.325494 -0.045495 0.978628 2.593830 1.437064 2.346328 2.449234 1.902635 2.811047 -1.946572 1.199206 -0.948462 1.895070 -2.208355 -2.239351 0.812328 2.136257 -0.365533 1.537056 -4.807827 -5.029714 -4.779453 -3.837175 -1.115631 -1.093106 1.912362 -0.145752 -0.688568 -2.967027 -2.503976 3.911078 -0.163339 3.778961 2.329276 0.332425 2.884692 2.892976 -0.985532 -0.784804 0.574352 1.997323 0.374046 0.232902 -4.182208 3.242923 -2.686086 1.194314 5.150563 -2.786335 1.849427 -1.413284 3.815605 -3.479335 4.170950 1.168823 -3.972116 1.806788 3.014468 1.807245 0.678732 -2.487131 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/strongly-connected-components.cpp__Graph::addEdge(int, int) = -0.040695 -0.593699 1.518205 1.170907 -0.271185 0.118268 0.544401 -0.539771 0.430181 0.244448 -0.209725 0.378121 -0.937224 0.284385 -0.244581 0.671877 -1.167493 -0.594314 -0.232043 -0.558655 -0.293649 -0.369974 0.530621 0.288131 0.897490 0.391129 -0.490690 -0.529480 -0.723258 -0.656981 0.338666 -0.270666 0.652568 0.450223 0.002731 -1.755716 0.748866 0.691998 -0.387412 -0.661246 0.683302 -0.511360 0.081767 -0.467874 -0.343879 0.191721 0.241554 0.391660 0.690384 0.380290 0.226929 0.000190 0.598171 1.453785 -0.487318 0.543740 0.431815 -0.249956 -0.142742 -0.076897 0.128606 -0.122144 0.373931 0.200597 -0.072064 -0.837344 -0.326812 -0.639836 -0.629056 0.581339 -0.054737 -0.006413 -0.827702 -0.271024 -0.604065 -0.267233 -0.987066 0.866181 1.138476 -0.914293 0.763919 0.131499 -0.003871 -0.127761 0.171843 0.216407 0.361708 0.198465 -0.042227 -0.076234 -0.279141 -0.210208 0.197889 0.157507 -0.339944 -1.170496 0.591792 -0.687040 -1.021786 0.276542 0.392445 -0.475075 -0.218855 -0.012923 -0.004983 0.453663 -0.518379 -0.784469 -0.147816 0.051222 0.227632 -0.192742 -0.135936 -0.066180 -0.308675 -0.319337 -1.120524 0.280086 -0.111175 -0.406443 -0.173224 0.683861 -0.025493 0.225457 0.094092 0.461354 -0.373437 1.067117 0.043188 0.547335 0.138839 0.258941 -0.509550 -0.030170 0.696526 0.631671 -0.449652 -0.109888 -0.471676 0.183767 -0.497941 0.039516 0.202790 0.838507 0.696808 -0.624702 -0.700170 -0.319810 -0.426525 -1.117805 0.219484 -0.537565 -0.116384 0.463017 0.610640 0.302705 0.581246 1.072674 -0.499340 0.278215 -0.002940 -0.345477 0.683827 0.162326 0.626933 -0.512554 -0.510765 0.382639 0.200108 0.472655 -0.029931 0.232460 0.180759 -0.796290 -0.191590 0.301696 0.336750 -0.317952 0.694477 0.679295 0.997288 -0.445045 0.164621 0.610461 -0.285221 -0.065738 0.270498 -0.914586 0.509722 0.142436 -0.288577 0.664177 0.050164 -0.412463 0.524705 -0.366684 0.199536 -0.657942 0.186227 -0.459446 -0.084529 -0.679476 0.092496 -0.234606 -0.479345 -0.253821 -0.183588 1.085804 -0.855971 -0.333315 0.655581 0.010636 0.344514 -1.115589 1.597416 -0.564505 0.581888 -0.331480 -0.391134 0.119041 0.147150 -0.550368 0.064566 0.287904 -0.183912 0.200694 0.990569 0.483388 0.020039 -0.051013 0.907381 -0.089822 0.837916 -0.251652 0.756977 -0.123836 -0.340008 0.018427 -0.172459 -0.238599 -0.155892 0.228655 1.009676 0.425858 0.400263 0.595058 0.457462 1.015466 -0.454631 0.489644 -0.194490 0.775186 -0.456758 -0.369525 0.245277 0.529713 -0.185919 0.536523 -1.151218 -1.281772 -0.770389 -0.682978 -0.084464 -0.062076 0.423652 -0.170971 -0.115363 -0.904177 -0.691320 0.482970 -0.327862 0.340631 0.536916 0.144032 0.715509 0.756286 -0.232702 -0.129618 0.044560 0.553746 0.249305 -0.053377 -0.725798 0.664166 -0.875476 0.153657 1.053979 -0.508557 0.342408 -0.092180 0.986720 -0.818712 1.195952 0.203134 -0.626444 0.933959 1.025104 0.582968 0.151969 -0.487951 -PE-benchmarks/strongly-connected-components.cpp__Graph::fillOrder(int, bool*, std::stack > >&) = -0.095569 -2.123945 6.497433 4.449375 -1.823720 0.754008 0.842514 -2.583219 1.699201 -0.679669 -1.428683 1.896689 -3.121122 0.871446 -1.584017 1.342400 -5.794125 -2.362010 -1.165368 -2.483743 -1.639900 -1.416841 0.840910 2.275240 3.051861 3.471812 -2.233299 -0.389747 -3.102423 -2.567296 1.317577 -0.828391 2.310432 2.551229 1.245955 -7.205481 3.198894 3.023125 -1.234275 -2.848458 2.338982 -2.465742 -0.370880 -2.205749 -1.533573 0.879157 0.829390 2.437744 2.441728 0.481953 -0.541906 0.169378 1.372327 5.358917 -1.274828 2.190764 2.304057 -1.308287 -0.412134 -0.449761 0.364632 -0.778544 1.356933 0.844796 -1.134822 -3.477146 0.020365 -2.460278 -1.812061 2.790218 0.841496 -0.728302 -2.545948 -1.691371 -3.616281 -0.931754 -0.999780 3.650809 4.537284 -3.117702 2.896250 0.409243 0.680317 -0.032545 1.574406 0.582391 3.300248 0.861564 -0.413686 -0.455435 -2.786044 -1.082895 0.727623 0.751109 -1.560461 -4.314731 1.977908 -6.169498 -4.238479 0.757195 1.627952 -2.364033 -0.969294 0.075370 1.035537 1.026395 -1.113430 -2.678202 -0.019513 0.964615 -0.821827 -0.503329 -0.325352 0.311734 -0.725345 -0.686775 -4.656325 1.923687 0.208168 -0.595073 -0.186286 3.303090 0.116659 0.623623 0.253530 1.817140 -1.369046 3.737541 -0.284497 1.122545 -0.318199 0.917812 -0.102368 0.063547 1.923410 1.588258 -2.660349 -1.776227 -1.098242 1.058093 -2.274953 -0.428866 -1.108108 3.455114 1.875280 -2.675091 -2.875956 -1.951911 -2.788727 -4.691622 0.000753 -1.757108 -2.669845 1.417443 2.554283 2.168392 2.065179 3.067684 -1.590390 1.178228 0.324248 -0.917502 2.648071 0.168252 2.505393 -2.379022 -1.848084 1.850228 -0.226901 2.381282 -0.382392 0.447914 0.573580 -3.221006 -1.589874 2.179920 1.684563 0.581287 3.270217 3.488338 3.891187 -2.621120 0.703309 2.162046 -1.460199 -0.742210 1.321440 -3.027838 1.706011 1.088826 0.036623 4.064040 0.144094 -1.424345 1.316820 -0.048316 1.024944 -2.990322 0.493448 -1.654155 0.239207 -2.394833 0.349784 -1.776487 -1.563682 -2.417678 -2.659690 4.558032 -4.921068 -3.143423 3.804373 -0.312759 3.305489 -5.081885 2.994289 -2.340694 3.495755 -0.690705 -1.035309 0.516242 -1.585032 -3.028275 1.702671 1.035976 -1.145425 0.948409 2.964865 2.133433 1.012029 -0.483060 3.280145 -0.882092 3.373935 -1.646862 2.683157 -0.549798 -1.575778 -0.172135 -0.677979 -1.383537 -0.101628 1.434306 2.908038 1.826942 2.627268 2.416985 2.380944 3.366106 -1.843724 1.255590 -1.077926 1.972013 -1.995204 -2.244160 0.962182 2.267783 -0.325292 1.634097 -5.146117 -5.546158 -4.627519 -3.968492 -0.388976 -1.328308 1.518505 0.049604 -0.627663 -3.723917 -2.623690 3.049531 -0.553242 3.857582 2.342666 0.484993 2.927047 3.205752 -1.348710 -0.615489 0.888446 2.394998 0.525550 0.016265 -4.529647 3.544277 -2.750300 1.310996 5.254094 -2.768489 1.969753 -0.818852 3.925180 -3.660416 4.773463 1.076301 -3.993548 2.408240 3.169379 2.129755 1.139353 -2.380723 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/strongly-connected-components.cpp__Graph::printSCCs() = -1.672309 -4.815768 10.719557 6.567326 -0.502002 1.722868 3.405476 -2.199697 2.425814 3.482196 -2.472244 3.390545 -5.594878 -1.195745 1.029804 1.389140 -7.334692 -5.254298 -0.572970 -2.009883 -3.451008 -3.990701 0.012318 5.379509 4.934150 3.857788 -3.960273 -0.595162 -5.482974 -7.523566 -0.654436 -0.778005 3.823954 3.725161 4.031959 -9.885240 5.666843 4.971816 -0.229173 -4.601216 2.751125 -1.364925 -0.200457 -0.218810 -1.158900 3.542960 4.624921 4.627216 3.376519 2.655092 0.784004 -4.105396 2.947355 7.277974 1.375094 4.177475 5.293679 -2.755364 1.336798 -0.484257 0.340788 -4.965319 1.971415 2.163102 -2.314949 -1.411468 2.645132 -3.185126 -3.409498 4.991479 2.316033 -3.858297 -3.801848 -4.428492 -3.914248 -0.928765 0.340767 5.268001 7.983667 -4.678701 6.871526 2.711156 4.287645 -0.008419 1.665219 -0.457994 4.877372 0.958329 -2.851533 -1.772373 -6.849645 -4.924049 -1.647678 2.103044 -2.335254 -1.685054 2.858998 -8.111411 -7.833297 2.507855 0.304199 -3.379424 -3.972122 2.004641 3.653384 1.310948 0.635397 -4.922556 -2.927112 2.445326 -5.270467 0.606493 -0.759670 0.278549 -2.482271 1.337041 -7.284685 2.908678 2.049275 -2.535001 -1.909122 6.158593 -1.459211 4.898813 1.394510 2.531540 -0.219140 4.740628 4.045584 1.309548 1.586276 -1.621949 -3.671031 0.812063 2.065251 0.664729 -3.343153 -2.202220 0.437423 2.140225 -2.443280 2.246288 -2.890722 7.451795 3.762079 -5.021858 -7.023919 -4.458924 -5.218117 -6.142724 1.622468 -2.852915 -3.410484 1.822414 3.765141 3.341909 0.421984 5.563292 -4.579614 2.946661 0.517745 -1.411005 -0.040425 -0.020289 3.705570 -4.811702 -2.626346 2.885985 3.125349 2.544751 -0.436995 -1.977757 1.535244 -5.069551 -4.536887 3.134231 0.459855 2.165086 3.905369 5.643499 10.820715 -4.681556 -1.144312 2.623994 -0.900522 -2.822104 2.532813 -5.444756 3.613316 0.339438 1.103251 7.747739 0.575979 -2.525176 3.889885 -0.227043 0.565184 -5.328185 2.278465 -2.696821 1.358071 -2.133491 -1.577306 -4.457533 -1.712410 -3.548167 -3.197055 7.912178 -3.445951 -7.682784 5.091330 -2.255049 5.038314 -8.562756 7.129857 -2.895927 3.690459 -1.047981 -2.988730 -0.617017 -2.007757 -0.596494 2.357106 0.293421 -1.096362 2.778178 5.534244 2.113520 2.368496 0.671358 3.770897 -0.454559 3.628372 -1.771862 2.100728 -1.617326 -1.537729 -1.844428 -1.006473 0.098127 2.229021 -1.563747 2.005048 4.385331 0.229866 3.511059 3.927911 2.981349 -2.909391 0.629774 -0.255476 5.799841 -4.719782 -4.419229 0.307924 2.204681 -0.761926 2.129762 -8.631618 -6.587442 -4.400051 -9.256368 -4.223893 -0.874069 3.284933 0.552405 -1.426762 -5.429304 -3.814654 6.019473 1.472222 5.792389 3.773553 0.249604 6.595394 5.318007 -0.913634 -2.295262 1.092852 1.747917 -1.568367 -0.588315 -5.972844 3.877787 -4.935644 4.087880 6.691378 -4.303023 3.602973 -3.233509 3.917379 -8.198209 7.529517 2.510994 -6.486030 1.744506 2.736757 4.580523 -2.840124 -4.503237 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::stack >, void>() = 0.044817 -0.256273 0.939189 0.605167 -0.290102 0.000000 0.036052 -0.336670 0.497510 -0.265564 -0.280262 0.135067 -0.411291 0.236487 -0.294118 0.361396 -0.953241 -0.420854 -0.061527 -0.298740 -0.176242 -0.247489 0.348718 0.019262 0.386888 0.569793 -0.305879 -0.018477 -0.269339 -0.225279 0.482487 -0.330520 0.282383 0.390065 0.062641 -1.067431 0.527474 0.174429 -0.289238 -0.465669 0.294046 -0.367769 0.089288 -0.576796 -0.177444 0.118600 0.144923 0.501509 0.411184 0.143432 -0.159295 -0.006637 0.073870 0.822925 -0.401009 0.188853 0.259341 -0.121817 -0.147209 -0.070831 0.155883 -0.001992 0.174566 0.309818 -0.147031 -0.553287 -0.164233 -0.547175 -0.387048 0.441709 -0.077177 0.224654 -0.489306 -0.107310 -0.483510 -0.097275 -0.608829 0.633499 0.772006 -0.562976 0.339794 0.043720 0.261898 0.059842 0.056555 0.216305 0.342629 0.196050 -0.142759 -0.039596 -0.285416 -0.129466 0.159327 -0.281750 -0.037928 -0.834074 0.257370 -0.792523 -0.454861 0.105812 0.298202 -0.081805 -0.005939 0.001262 0.212103 0.293294 -0.302213 -0.366436 0.164430 -0.082614 0.053426 0.002554 0.093495 0.052823 -0.163610 -0.269567 -0.722255 0.094161 -0.097369 -0.189623 0.208234 0.401611 -0.122703 -0.063081 -0.005365 0.175502 -0.266441 0.783034 0.000649 0.242553 -0.073557 0.190186 -0.065099 0.190002 0.398497 0.462850 -0.277102 -0.082294 -0.254230 0.067860 -0.472757 -0.404143 -0.092234 0.154519 0.266015 -0.432051 -0.473343 -0.240672 -0.404568 -0.826366 0.086890 -0.377483 -0.189573 0.442151 0.416787 0.480086 0.538896 0.655819 -0.443976 0.132668 -0.157701 -0.071002 0.456903 0.240603 0.405920 -0.237611 -0.188667 0.248679 -0.076732 0.208406 0.109750 -0.158264 0.141204 -0.619520 -0.009570 0.403510 0.422798 -0.033219 0.309855 0.310140 -0.090692 -0.315160 0.059722 0.476960 -0.039137 -0.116982 0.222203 -0.470093 0.401405 0.090881 0.085555 0.178153 0.035535 -0.209863 0.114589 -0.113055 0.176733 -0.295240 -0.188729 -0.183464 -0.065023 -0.404510 0.376180 -0.258291 -0.220487 -0.183332 -0.307621 0.584737 -0.633455 -0.207596 0.508167 -0.041191 0.552489 -0.503818 0.372336 -0.405907 0.706881 -0.003468 -0.018959 0.045895 -0.354322 -0.369831 0.012767 0.201936 0.060461 0.009328 0.381378 0.418674 0.059104 0.037365 0.573100 -0.115528 0.530484 -0.033186 0.287634 -0.169313 -0.222935 0.228107 -0.106385 -0.197309 -0.134915 0.298251 0.707512 0.247227 0.516831 0.683552 0.165711 0.584265 -0.354050 0.116885 -0.160602 0.388848 -0.249266 -0.197944 0.121792 0.417870 -0.225971 0.188909 -0.636550 -1.000804 -0.846194 -0.409751 -0.109533 -0.341756 0.087690 -0.175317 0.057755 -0.395976 -0.258599 0.332200 -0.199562 0.497812 0.270161 -0.004696 0.386906 0.537739 -0.442420 -0.273507 0.244150 0.327312 0.103678 0.190116 -0.796192 0.537259 -0.502807 -0.051514 0.813376 -0.472984 0.008194 -0.024349 0.623608 -0.351183 0.722527 0.235293 -0.453257 0.474203 0.422104 0.424817 0.537692 -0.338715 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::empty() const = -0.061833 -0.261137 0.681481 0.506468 -0.197877 0.041514 0.110987 -0.199577 0.249791 -0.053909 -0.145438 0.135643 -0.374759 0.111598 -0.040834 0.241812 -0.571990 -0.258945 -0.089766 -0.220447 -0.112649 -0.157849 0.178205 0.108802 0.320812 0.388933 -0.195535 -0.103937 -0.263970 -0.202203 0.215582 -0.130490 0.281267 0.347821 0.077706 -0.817790 0.315687 0.287500 -0.170343 -0.392165 0.255639 -0.251002 0.100135 -0.277683 -0.141123 0.140705 0.107343 0.192035 0.247841 0.132737 -0.051067 -0.031060 0.170845 0.534000 -0.162609 0.188458 0.237632 -0.124248 -0.104923 -0.103507 0.079017 -0.044813 0.151315 0.094106 -0.107253 -0.383423 -0.156110 -0.347442 -0.308860 0.237558 -0.052863 0.004282 -0.353416 -0.220373 -0.278654 -0.115607 -0.497883 0.432045 0.492875 -0.438637 0.304420 0.040936 0.054645 0.018525 0.092012 0.127382 0.161090 0.111380 -0.019330 0.047906 -0.110229 -0.180041 0.117402 -0.050978 -0.145497 -0.471912 0.253860 -0.376354 -0.380072 0.124664 0.185425 -0.147303 -0.115731 -0.002709 0.011383 0.286302 -0.213492 -0.278041 0.016308 0.033044 0.126283 -0.047143 -0.066560 0.091447 -0.170763 -0.222459 -0.512984 0.164838 -0.006585 -0.130392 0.070812 0.315273 -0.079802 0.045014 0.010431 0.142663 -0.194402 0.631897 0.041533 0.162674 -0.008686 0.073140 -0.134305 0.042811 0.262985 0.370429 -0.223727 -0.093892 -0.155810 0.037322 -0.234712 -0.134923 0.032139 0.233725 0.360050 -0.257923 -0.304158 -0.201479 -0.323548 -0.580744 0.047684 -0.239729 0.034761 0.378337 0.272875 0.280253 0.274668 0.560508 -0.309796 0.034448 -0.060683 -0.178965 0.275187 0.271474 0.271319 -0.207986 -0.178549 0.190929 0.006981 0.203317 0.078059 0.035269 0.089904 -0.362111 -0.038421 0.300927 0.238471 -0.041196 0.295070 0.316842 0.194958 -0.130349 0.002045 0.241068 -0.116856 -0.062593 0.139117 -0.351525 0.229143 0.067752 -0.067581 0.234330 -0.000542 -0.098246 0.165257 -0.144821 0.093055 -0.260308 0.030735 -0.188062 0.004029 -0.319087 0.108389 -0.164017 -0.199181 -0.150877 -0.152120 0.479024 -0.330868 -0.150268 0.262937 -0.003554 0.282337 -0.419105 0.461195 -0.257181 0.431613 -0.102492 -0.110079 0.046191 -0.166065 -0.209442 -0.025871 0.134464 -0.001793 -0.047199 0.364911 0.246113 -0.077694 0.001015 0.391170 -0.070124 0.400019 -0.090666 0.271200 -0.099068 -0.055451 0.124703 -0.068964 -0.120357 -0.065629 0.086619 0.524340 0.178571 0.289242 0.335013 0.147761 0.397266 -0.214515 0.150563 -0.061173 0.353526 -0.193487 -0.162134 0.078223 0.368203 -0.059488 0.110661 -0.473668 -0.631800 -0.423711 -0.326702 -0.074260 -0.074914 0.116087 -0.068371 -0.036233 -0.292753 -0.281974 0.252373 -0.145181 0.385613 0.144039 0.027795 0.336078 0.349953 -0.209305 -0.129146 0.137401 0.219841 0.089697 0.088664 -0.428200 0.341913 -0.347822 -0.028871 0.542160 -0.276291 0.140871 -0.021696 0.491888 -0.322759 0.536226 0.105868 -0.337022 0.379455 0.400470 0.264553 0.170521 -0.229746 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::top() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::pop() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::~stack() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/strongly-connected-components.cpp__main = 0.213622 -0.496410 1.338185 0.698023 -0.773468 -0.230497 0.076604 0.011047 0.548748 -1.703938 -0.700975 0.288442 -0.700732 0.402115 -0.574183 0.008423 -2.078304 -0.930803 0.233350 0.138544 -0.014337 -0.398520 0.725976 0.419502 0.478136 1.691654 -0.472722 -0.110013 -0.470166 1.016805 1.471379 -0.763688 0.644006 1.722261 0.049229 -2.143311 0.410447 -0.283259 -0.342911 -0.759299 0.445942 -0.742570 0.194803 -1.943887 -0.659110 -0.020025 0.556614 1.474896 0.462329 -0.197524 -1.425206 -0.385853 -0.481121 1.068822 -0.572783 -0.093279 0.606482 -0.251408 -0.153686 -0.691526 0.373641 -0.222513 0.339417 0.828060 -0.625522 -0.685274 -0.171827 -1.587107 -0.735407 0.710549 0.290100 1.593708 -0.795285 0.319244 -1.034716 0.074954 0.567685 1.411691 1.381744 -0.939074 0.617500 -0.095294 0.866658 -0.000283 -0.216580 0.689436 0.201182 0.380817 -0.336138 -0.263929 -1.657716 -0.197782 -0.029828 -0.956547 0.466015 -1.409468 0.097209 -1.616700 -0.423943 -0.183280 0.256193 0.041613 0.468900 0.195515 0.584541 0.746401 -0.437941 -0.358386 0.465028 -0.537662 -0.230408 0.223162 0.420512 0.881047 -0.407913 -1.230066 -1.131087 -0.033088 -0.216577 -0.462009 1.234371 0.476313 -0.762511 0.098353 -0.000679 -0.018642 -0.410906 1.404454 0.358646 -0.390688 0.391448 -0.345838 1.073783 -0.063035 0.587006 2.292201 -0.691160 -0.655681 -0.249009 0.108479 -0.605486 -1.887849 0.332868 -0.261145 -0.283453 -1.055826 -0.870269 -0.645459 -0.680884 -1.466194 -0.113271 -0.697817 0.036059 1.577946 0.638051 0.844597 0.924416 1.352965 -0.691147 0.645478 -0.226829 -0.034751 0.520550 0.934217 0.597361 -0.253252 -0.142621 0.440847 -0.760662 0.524069 0.102626 -0.569733 0.274717 -1.194342 -0.497403 0.644152 0.999690 0.260732 0.209395 0.190677 -1.838952 -0.655869 -0.016248 0.816363 0.269011 -0.462074 0.697263 -0.628648 1.055611 -0.130849 -0.166065 -0.198807 0.091590 -0.759315 0.218649 0.098526 0.177156 -0.365248 -0.705272 -0.062289 -0.042372 -0.988633 0.906768 -0.385300 -0.435211 -0.464570 -0.607468 0.910177 -1.102211 -0.513770 0.389758 0.257098 1.734752 -1.069708 -0.302081 -0.662716 1.722033 0.408333 -0.108181 0.245400 -1.484616 -0.498602 -0.271520 0.317052 0.324968 -0.221714 0.108239 0.851665 0.097940 0.362948 0.816931 0.294212 0.791825 0.254263 -0.258705 -0.317898 -0.640842 0.753351 -0.109596 -0.125203 0.050078 0.731106 1.575130 0.581835 1.622031 2.061048 0.226513 0.806072 -0.642126 -0.800359 -0.413748 0.995081 -0.244883 -0.305052 -0.220366 1.063667 -0.498919 0.377997 -0.854913 -2.615006 -1.574037 -1.054997 -0.377058 -1.240888 0.065875 -0.263903 0.394655 -0.729561 0.085163 -0.613003 -0.293182 1.839774 0.575129 -0.314985 0.659821 0.702043 -1.443026 -0.969016 1.484754 1.236807 0.043376 1.005909 -2.179902 0.621589 -1.009117 -0.061031 1.787386 -1.077639 -0.347724 -0.567830 1.810964 -0.412647 1.558241 0.633299 -1.525617 0.496701 0.019314 0.158251 1.917888 -0.613980 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::~deque() = 0.211362 -0.538844 2.551283 1.152947 -0.911126 -0.010824 1.112920 -1.130486 1.417721 -0.873387 -0.885340 -0.448692 -1.731207 0.151912 -1.422947 0.175872 -2.689512 -1.173207 -0.353598 -1.040878 -0.146104 -1.126996 1.445597 0.193172 1.324159 1.216133 -0.364672 -0.478396 -1.190083 -0.136648 1.793513 -0.669929 0.593220 1.099389 -0.053146 -2.356950 1.337741 0.653533 -0.726245 -0.959270 1.171926 -0.903393 -0.270829 -1.015665 -0.301140 0.052614 0.198268 2.335725 1.322973 0.105686 -0.260921 -0.579350 -0.247945 2.223444 -1.367224 0.507219 0.340375 -0.225702 -0.250676 0.522375 0.034246 -0.104059 0.201978 1.088020 -0.358121 -0.998902 0.428608 -1.579205 -1.256018 1.610791 -0.265935 0.393312 -1.047349 -0.061715 -1.466922 0.141167 -0.832214 1.841346 2.100244 -1.169647 1.162982 -0.141844 0.327790 -0.569219 -0.408182 0.363572 0.774247 0.127312 -0.109774 -0.937061 -1.962101 -0.131603 0.127031 -0.879095 0.031040 -2.260678 1.088102 -2.290788 -1.347148 -0.395429 0.782212 -0.951711 0.362672 0.899623 0.274281 0.432868 -0.534285 -1.183394 0.157939 0.227921 -0.506783 0.589267 0.460569 0.463730 -0.588620 -1.174502 -1.548172 0.306577 -0.695589 -0.559569 0.316473 1.135170 -0.603987 0.054919 0.636919 0.764920 -0.406443 1.512916 -0.131370 0.372619 0.510306 0.527929 0.297020 0.098721 1.062421 1.815505 -0.386294 0.047508 -0.462448 0.294718 -1.483047 -1.195376 -0.515002 0.188677 -0.041988 -2.015998 -0.959148 -0.068780 -0.758682 -2.179433 -0.026345 -0.854033 -0.969659 0.670679 1.047004 1.668261 1.081583 2.075324 -1.406334 0.365258 0.028228 -0.690681 0.728210 0.463061 1.132800 -0.680722 -0.695033 -0.075018 -0.631246 0.831326 -0.452047 -0.074002 -0.235259 -2.121667 -0.305834 0.496416 0.911788 -0.167259 0.573310 1.441640 -0.854244 -1.606365 0.372035 1.656997 -0.300586 -0.607524 0.926384 -1.644232 1.189959 0.296048 0.265705 0.566095 0.181785 -0.234267 0.509560 -0.652921 0.372699 -1.215485 -0.868738 -0.614683 -0.205262 -1.385495 0.823365 -0.485260 -0.904033 -0.550615 -0.982684 1.290051 -1.280485 -0.950896 1.764906 0.081289 1.426712 -1.519032 1.117168 -0.888341 1.401577 0.225786 0.236273 -0.002481 -0.619264 -0.983507 -0.051513 -0.091766 0.085659 1.103912 1.494320 1.112465 0.386364 -0.052777 1.892206 -0.615744 1.272020 -0.611899 0.514554 -0.369883 -1.485565 0.673446 -0.352326 -0.659593 -0.313022 0.961285 2.465173 1.122250 1.336068 2.324690 0.393871 1.733912 -0.396565 0.415864 -0.259345 0.972883 -0.409488 -0.678878 0.728468 0.854086 -0.904458 0.830788 -2.033750 -3.374878 -1.595994 -2.083407 0.086657 -2.450654 0.635310 -0.308890 0.280415 -1.608141 -0.851833 0.079917 -0.291038 1.650050 0.807937 -0.072193 0.831069 1.696640 -1.450387 0.128073 1.303881 1.865265 -0.025320 -0.170869 -2.027398 1.210742 -1.594121 0.202352 2.307863 -1.240098 0.304094 -0.918372 1.620853 -1.774637 1.810271 0.652641 -1.139642 1.494871 0.638457 1.023734 2.186297 -0.759655 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.080122 -0.272632 0.640047 0.519425 0.052134 0.024782 0.402261 -0.227671 0.394202 0.262543 -0.071807 0.060751 -0.531359 0.156003 -0.091969 0.429601 -0.355264 -0.366223 -0.036478 -0.241675 -0.030300 -0.247739 0.449549 -0.115299 0.431751 0.008225 -0.188833 -0.414787 -0.470314 -0.263809 0.296138 -0.208813 0.313144 0.138095 -0.196404 -0.614876 0.335451 0.296338 -0.237208 -0.353299 0.372587 -0.274577 0.142310 -0.158157 0.112730 0.122141 0.103571 0.140481 0.394764 0.271762 0.287895 -0.024076 0.180341 0.537935 -0.464590 0.224814 0.085117 -0.048624 -0.163858 0.043357 0.073795 0.014524 0.235931 0.200641 -0.097391 -0.398587 -0.229219 -0.306450 -0.502433 0.238279 -0.148245 0.118531 -0.438532 -0.005075 -0.068618 -0.104851 -0.632731 0.299021 0.565676 -0.350175 0.393502 0.049218 0.019627 -0.158750 -0.030035 0.131569 -0.024723 0.065774 -0.062630 -0.161298 -0.202507 -0.018900 0.033566 0.088533 -0.055546 -0.352120 0.313856 0.118100 -0.430669 0.059963 0.182596 -0.084205 -0.203292 0.180507 -0.045930 0.363717 -0.274785 -0.434595 -0.078330 -0.047511 0.203093 -0.106176 -0.069592 -0.237942 -0.300298 -0.324970 -0.469305 -0.020632 -0.152019 -0.327988 -0.192551 0.255745 -0.202773 0.060021 0.071269 0.232672 -0.182446 0.484640 0.048222 0.336034 0.299226 0.014583 -0.526585 -0.008979 0.381233 0.590114 -0.149807 0.155861 -0.338047 -0.021953 -0.263381 -0.075397 0.184230 0.247001 0.465843 -0.388023 -0.260901 -0.027458 0.062665 -0.501232 0.206473 -0.304871 0.262186 0.057979 0.298037 0.110636 0.377379 0.829799 -0.389862 0.136531 -0.017507 -0.194293 0.381341 0.252251 0.336177 -0.198726 -0.260742 0.090423 0.206239 0.015601 0.011985 0.131710 0.060485 -0.494741 0.026144 0.065804 0.090607 -0.283461 0.255369 0.206211 0.276129 -0.240617 0.089549 0.357543 -0.059067 0.011999 0.110545 -0.519410 0.308693 0.037894 -0.121275 0.148188 0.040439 -0.253446 0.246719 -0.274337 0.094684 -0.277184 0.089579 -0.259611 -0.125505 -0.338966 0.072153 -0.048013 -0.312401 0.039082 0.140354 0.442772 0.109277 -0.104417 0.171810 -0.018397 -0.020572 -0.494017 0.849036 -0.308843 0.107022 -0.232968 -0.071406 -0.012711 0.288919 -0.192040 -0.176503 0.152229 -0.002789 0.248833 0.594253 0.252311 -0.080491 0.024065 0.452062 0.002108 0.353243 -0.039985 0.357755 -0.080117 -0.146537 0.173276 -0.107716 -0.035522 -0.135694 -0.016054 0.648468 0.301056 0.067478 0.387392 0.092066 0.560441 -0.205151 0.346569 -0.010058 0.486135 -0.096685 -0.056732 0.115515 0.160069 -0.159861 0.323003 -0.468041 -0.646565 0.118101 -0.422764 0.073064 -0.030367 0.154723 -0.122761 0.052861 -0.477284 -0.280278 -0.057862 -0.191807 0.260190 0.141823 0.067535 0.260467 0.362254 -0.260728 -0.080172 -0.008097 0.219451 0.079227 -0.136133 -0.170666 0.239111 -0.415867 -0.027268 0.378176 -0.204112 0.001514 -0.126408 0.467457 -0.311955 0.607855 0.116683 -0.053125 0.649032 0.332029 0.555452 0.088649 -0.177338 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::begin() = 0.310427 -0.258252 1.509167 1.009178 -0.353336 0.049927 0.206996 -0.802826 0.809251 0.036658 -0.344590 0.131472 -0.603809 0.337184 -0.595730 0.758050 -1.238518 -0.461330 -0.253502 -0.766637 -0.295647 -0.292252 0.539422 -0.154533 0.782743 0.482426 -0.360186 -0.200923 -0.425341 -0.708689 0.468527 -0.344653 0.257336 0.096464 0.069291 -1.125922 0.951876 0.503734 -0.502418 -0.625167 0.570800 -0.517770 -0.014836 -0.453743 0.040406 0.177035 0.028532 0.846433 0.734292 0.423397 0.158321 0.236360 0.397335 1.368066 -0.689271 0.441274 0.270069 -0.076445 -0.212847 0.263372 0.124679 0.107870 0.116763 0.196548 0.042839 -0.966732 -0.320396 -0.528584 -0.365280 0.628456 -0.212918 -0.187321 -0.778807 -0.258389 -0.610960 -0.146608 -1.907321 0.887227 0.974918 -0.876302 0.407151 0.083856 0.082589 0.012088 0.105277 0.167533 0.527183 0.234949 -0.023304 -0.148433 -0.238545 -0.181888 0.389438 -0.578539 -0.329876 -1.581916 0.556886 -1.061167 -0.839287 0.168452 0.619789 -0.406829 0.171849 0.053742 0.106267 0.243833 -0.445153 -0.576409 0.295040 0.058441 0.213423 -0.067289 0.070745 -0.248692 -0.101173 -0.117077 -1.075785 0.351240 -0.173868 -0.108863 -0.029707 0.615758 0.150313 -0.228252 0.025242 0.407180 -0.369197 1.006023 -0.208004 0.653596 -0.151390 0.689429 -0.404447 0.708023 0.700568 0.005046 -0.314337 0.313263 -0.458411 0.166802 -0.763763 -0.070189 -0.347996 0.451133 0.343048 -0.638068 -0.610872 -0.175087 -0.517976 -0.939357 0.268322 -0.418018 -0.572732 0.071655 0.594333 0.726684 0.765588 0.632080 -0.637466 -0.097148 -0.123590 -0.025546 0.778248 0.127677 0.631133 -0.414983 -0.322518 0.272316 0.059879 0.193731 0.002140 0.132258 0.203448 -0.908779 0.297251 0.399995 0.458037 -0.319197 0.649174 0.672474 0.241850 -0.398947 0.123411 0.724722 -0.352290 -0.079640 0.246454 -0.778429 0.463843 0.265676 0.389523 0.499403 0.073838 -0.023062 0.217491 -0.287128 0.252234 -0.418605 -0.241259 -0.377318 -0.385109 -0.407964 0.608783 -0.297623 -0.325892 -0.229829 -0.473598 0.830033 -0.891754 -0.102202 0.928196 -0.303500 0.318977 -0.542261 1.086958 -0.595168 0.494680 -0.002513 0.038168 0.033382 -0.096224 -0.783000 0.090644 0.248806 -0.023377 0.268549 0.780920 0.547540 0.075013 -0.099211 0.916573 -0.541017 0.883952 -0.251487 0.723155 -0.268875 -0.349983 0.150960 -0.130629 -0.481939 -0.392872 0.417811 1.080738 0.142442 0.578924 0.629960 0.202928 1.034616 -0.466234 0.686139 -0.258596 0.269180 -0.408798 -0.342661 0.469713 0.237032 -0.244591 0.360515 -1.078249 -1.121936 -1.124963 -0.387738 0.144572 -0.595198 0.245823 -0.347317 -0.099845 -0.697583 -0.706694 0.677459 -0.281542 -0.122510 0.468079 0.092602 0.483033 0.815263 -0.341999 0.065232 -0.037576 0.382640 0.309402 -0.181183 -0.751650 0.899160 -0.644365 -0.102322 1.117470 -0.534094 0.215285 -0.013363 0.617431 -0.623270 0.797068 0.150850 -0.389575 0.765528 1.026644 0.744832 0.439358 -0.450875 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::end() = 0.310427 -0.258252 1.509167 1.009178 -0.353336 0.049927 0.206996 -0.802826 0.809251 0.036658 -0.344590 0.131472 -0.603809 0.337184 -0.595730 0.758050 -1.238518 -0.461330 -0.253502 -0.766637 -0.295647 -0.292252 0.539422 -0.154533 0.782743 0.482426 -0.360186 -0.200923 -0.425341 -0.708689 0.468527 -0.344653 0.257336 0.096464 0.069291 -1.125922 0.951876 0.503734 -0.502418 -0.625167 0.570800 -0.517770 -0.014836 -0.453743 0.040406 0.177035 0.028532 0.846433 0.734292 0.423397 0.158321 0.236360 0.397335 1.368066 -0.689271 0.441274 0.270069 -0.076445 -0.212847 0.263372 0.124679 0.107870 0.116763 0.196548 0.042839 -0.966732 -0.320396 -0.528584 -0.365280 0.628456 -0.212918 -0.187321 -0.778807 -0.258389 -0.610960 -0.146608 -1.907321 0.887227 0.974918 -0.876302 0.407151 0.083856 0.082589 0.012088 0.105277 0.167533 0.527183 0.234949 -0.023304 -0.148433 -0.238545 -0.181888 0.389438 -0.578539 -0.329876 -1.581916 0.556886 -1.061167 -0.839287 0.168452 0.619789 -0.406829 0.171849 0.053742 0.106267 0.243833 -0.445153 -0.576409 0.295040 0.058441 0.213423 -0.067289 0.070745 -0.248692 -0.101173 -0.117077 -1.075785 0.351240 -0.173868 -0.108863 -0.029707 0.615758 0.150313 -0.228252 0.025242 0.407180 -0.369197 1.006023 -0.208004 0.653596 -0.151390 0.689429 -0.404447 0.708023 0.700568 0.005046 -0.314337 0.313263 -0.458411 0.166802 -0.763763 -0.070189 -0.347996 0.451133 0.343048 -0.638068 -0.610872 -0.175087 -0.517976 -0.939357 0.268322 -0.418018 -0.572732 0.071655 0.594333 0.726684 0.765588 0.632080 -0.637466 -0.097148 -0.123590 -0.025546 0.778248 0.127677 0.631133 -0.414983 -0.322518 0.272316 0.059879 0.193731 0.002140 0.132258 0.203448 -0.908779 0.297251 0.399995 0.458037 -0.319197 0.649174 0.672474 0.241850 -0.398947 0.123411 0.724722 -0.352290 -0.079640 0.246454 -0.778429 0.463843 0.265676 0.389523 0.499403 0.073838 -0.023062 0.217491 -0.287128 0.252234 -0.418605 -0.241259 -0.377318 -0.385109 -0.407964 0.608783 -0.297623 -0.325892 -0.229829 -0.473598 0.830033 -0.891754 -0.102202 0.928196 -0.303500 0.318977 -0.542261 1.086958 -0.595168 0.494680 -0.002513 0.038168 0.033382 -0.096224 -0.783000 0.090644 0.248806 -0.023377 0.268549 0.780920 0.547540 0.075013 -0.099211 0.916573 -0.541017 0.883952 -0.251487 0.723155 -0.268875 -0.349983 0.150960 -0.130629 -0.481939 -0.392872 0.417811 1.080738 0.142442 0.578924 0.629960 0.202928 1.034616 -0.466234 0.686139 -0.258596 0.269180 -0.408798 -0.342661 0.469713 0.237032 -0.244591 0.360515 -1.078249 -1.121936 -1.124963 -0.387738 0.144572 -0.595198 0.245823 -0.347317 -0.099845 -0.697583 -0.706694 0.677459 -0.281542 -0.122510 0.468079 0.092602 0.483033 0.815263 -0.341999 0.065232 -0.037576 0.382640 0.309402 -0.181183 -0.751650 0.899160 -0.644365 -0.102322 1.117470 -0.534094 0.215285 -0.013363 0.617431 -0.623270 0.797068 0.150850 -0.389575 0.765528 1.026644 0.744832 0.439358 -0.450875 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::~_Deque_base() = 1.134606 -0.501335 4.878249 3.348777 -2.211512 0.115987 -1.036558 -2.576256 1.547066 -0.352534 -1.091010 1.061882 -0.613441 0.878256 -0.236052 2.255535 -4.769959 -0.477487 -1.037538 -2.298238 -1.390906 -0.218294 0.571989 0.406568 2.013795 3.121895 -1.382105 0.846460 0.843859 -3.500277 0.527616 -0.768008 1.013038 1.286383 1.519222 -5.053914 3.300579 1.316574 -1.158905 -1.910656 1.168450 -0.695988 -0.390753 -1.366689 -1.546469 1.026275 0.065868 2.001303 1.698855 1.220514 -0.716581 0.809043 2.080610 3.488797 -0.289362 1.021361 1.263222 -1.230967 -0.609376 -0.163107 0.520720 0.091537 0.246537 0.073355 0.643677 -3.181385 -0.517867 -1.287655 -0.648453 1.880216 -0.116855 -1.622180 -1.849323 -1.867672 -1.980875 -0.446341 -3.764015 3.183655 2.461707 -2.465486 0.656995 0.142131 -0.239375 0.624369 0.663913 0.322970 2.494727 1.031637 0.225122 0.555570 1.027280 -2.318907 1.933341 -1.458627 -1.332364 -4.508337 1.122278 -4.644217 -2.046848 1.073308 2.236736 -1.481714 -0.288542 -1.566143 0.920180 0.429479 -0.616571 -0.844449 1.111051 0.267441 0.122400 -0.257215 -0.651634 0.580015 -0.023222 1.321024 -3.379880 1.827678 0.116334 0.712824 0.833654 1.636867 1.351929 -0.934053 -0.409438 1.188219 -1.195144 3.229723 -0.828347 1.885753 -1.336936 2.507126 1.198378 2.082648 1.536019 -2.045249 -0.844238 -1.045075 -1.026999 0.888972 -2.239846 0.387556 -1.428390 1.946250 1.882437 -0.510276 -2.251602 -1.046326 -3.375095 -3.285610 0.372021 -1.162776 -2.393322 2.029221 1.563936 1.637808 1.857085 -0.014591 -1.708204 -0.545190 -0.701942 0.215175 2.115571 0.309763 1.512816 -1.269356 -0.318111 1.439742 -0.294034 1.408561 0.264651 -0.144795 1.005910 -1.686321 0.097817 2.554651 1.655818 0.371580 1.426105 2.233035 2.954399 0.281233 -0.264033 1.715777 -1.153756 -0.644566 0.912842 -1.476062 0.640371 0.749406 1.573196 2.364701 -0.043606 0.349806 0.186399 -0.032111 0.383225 -0.966909 -0.362986 -0.729961 0.383940 -0.619170 0.843946 -1.481157 -0.264285 -1.468158 -2.090165 2.724196 -4.405098 -0.956556 3.543891 -1.889803 2.114404 -1.647848 2.194127 -1.494638 2.155273 -0.149802 -0.557607 0.309962 -2.733789 -2.647699 1.285082 0.677191 0.342329 -0.808101 1.592644 1.473671 -0.021751 -0.833773 2.149209 -1.621087 3.284036 -0.760537 2.250664 -0.963293 0.348343 -0.567511 -0.045005 -2.031183 -1.167507 1.214820 1.513049 -0.526666 2.124013 1.117912 0.731866 2.375374 -1.575008 2.000772 -0.771645 0.087737 -1.533813 -1.533249 1.628156 1.839265 -0.350886 0.557849 -3.084512 -2.402284 -5.663659 -0.657772 -1.033074 -0.468101 1.198322 -1.066955 -0.946245 -0.678625 -2.011602 4.238738 -0.159329 0.043790 1.553039 0.083734 1.647709 2.177088 -0.174152 -0.243829 -0.702722 0.481724 1.179754 0.242669 -2.992255 3.139991 -1.254890 -0.327614 3.795264 -1.806820 1.230290 -0.096162 1.772205 -1.836061 1.738542 0.153075 -1.863944 1.083047 2.920199 0.356191 0.684125 -1.541383 -PE-benchmarks/strongly-connected-components.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.030971 -0.534112 3.689031 2.585290 -1.093533 0.124847 -0.031637 -1.880698 1.479275 0.413230 -0.240911 0.681280 -0.810499 0.673387 0.180417 1.990954 -3.040441 -0.668667 -0.711690 -2.089670 -1.050674 -0.239376 0.846609 -0.208405 1.628213 1.076641 -1.209520 -0.350421 0.037631 -2.497298 0.928100 -0.767047 1.213740 0.172951 0.329682 -5.506866 2.476931 1.023896 -1.154621 -1.415579 1.195596 -0.668144 0.166676 -0.737999 -1.237193 0.479158 0.045174 0.521805 1.585326 1.061276 0.330911 0.825352 1.366200 3.684623 -1.055960 0.844195 0.617182 -1.087942 -1.042372 0.144134 0.379700 0.144368 0.769753 0.123258 0.365978 -2.604733 -0.413163 -1.096995 -1.445428 1.217522 -0.046967 -1.120439 -1.171893 -0.926344 -1.170565 -0.851635 -1.919319 1.950786 2.040849 -1.793400 0.931256 -0.040081 -0.297241 0.464538 0.475002 0.461586 1.591759 0.601486 0.096050 0.121291 0.755619 -1.071656 1.258580 0.006462 -0.744264 -3.157385 1.100461 -1.627999 -1.626050 0.965090 1.709545 -0.740541 -1.590522 -1.528181 0.574037 0.790255 -1.001329 -1.143419 -0.178216 0.176496 0.233296 -0.404909 -0.604215 -0.606993 -0.451353 0.148988 -2.438033 1.067081 -0.127140 0.177185 -0.576127 1.367438 0.156617 -0.750961 -0.200215 1.414737 -1.354213 2.260919 -0.751254 1.677234 -0.419354 1.280584 -0.603902 0.238219 1.257940 0.125472 -0.332942 -1.083183 -1.537775 0.486339 -1.764273 0.520180 -0.052837 1.775318 2.408074 -0.333204 -1.476896 -0.480973 -1.224394 -2.823852 0.439093 -1.174120 -0.832669 1.550921 1.295354 0.860528 1.680332 1.020997 -1.290311 0.543668 -0.721416 -0.374479 2.035689 0.183288 1.388512 -0.993324 -0.456324 0.630821 0.207060 1.117947 0.186055 0.015728 0.626512 -1.510536 -0.281514 1.038385 1.046981 -0.203309 0.782017 1.580878 3.752139 -0.809741 -0.021434 1.441182 -0.936799 -0.197053 0.563779 -1.331140 0.154333 0.747768 -0.159804 1.890501 -0.002645 -0.713973 0.199787 -0.296838 0.276517 -0.733776 0.146620 -0.723411 0.193111 -0.573520 -0.260334 -1.326626 -0.470943 -1.059533 -1.192556 2.215580 -2.687325 -1.158352 2.484154 -1.237169 0.954120 -2.247117 3.110791 -1.315909 1.237149 -1.188333 -0.551782 -0.145737 -0.395621 -2.015881 1.125757 0.556801 -0.152452 -0.107865 2.442864 1.237226 0.203405 -0.866522 1.969941 -0.798707 2.412700 -0.543727 2.280386 -0.868235 -0.029411 -0.327474 -0.142926 -1.140859 -0.911890 0.881999 1.046461 0.120388 0.984097 0.719026 1.037309 2.099758 -1.142887 1.856207 -0.354314 0.752326 -0.733162 -0.800658 1.275998 1.538982 -0.284021 0.763865 -2.380657 -1.890280 -2.962667 -1.044296 -0.268227 0.862751 0.578471 -0.780335 -0.432818 -1.300736 -1.283313 2.369377 -0.429579 0.625437 1.151454 0.339706 1.326649 1.821207 -0.446457 -0.487985 -0.647352 0.132356 0.853757 -0.267690 -1.917211 2.282762 -1.263739 -0.111377 2.400065 -1.009353 0.685208 0.146880 1.528884 -1.328777 1.943127 0.098009 -0.790377 1.661455 2.162319 1.215091 0.128892 -0.966292 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.372193 -0.743402 2.556830 1.817560 -0.072969 0.233445 0.728796 -1.243910 1.429419 0.630500 -0.385598 0.499926 -1.484536 0.410374 -0.150822 1.174691 -1.884086 -1.288796 -0.262703 -1.118130 -0.499251 -0.952840 0.972095 0.132487 1.326914 0.464327 -0.988051 -0.431689 -1.468055 -1.812751 0.705385 -0.663416 1.058624 0.397373 0.027656 -2.825515 1.662618 1.114583 -0.632063 -1.293174 1.079735 -1.056978 0.167997 -0.508828 0.055737 0.672855 0.384304 0.595245 1.494674 0.644467 0.602648 0.005164 0.244746 1.740759 -1.308561 0.841037 0.397544 -0.614687 -0.656394 0.154755 0.151001 -0.211428 0.930050 0.797898 -0.701802 -1.519168 0.073042 -0.792737 -1.609998 1.253622 0.035277 -0.338261 -1.198448 -0.324813 -0.853183 -0.395215 -0.040910 1.122498 2.061971 -0.823016 1.341566 0.069732 0.333363 -0.294610 0.436073 0.143953 1.244565 0.212311 -0.517325 -0.738614 -1.134675 -0.599202 0.092264 0.869630 -0.146346 -0.712452 0.708066 -1.231064 -1.676255 0.159336 0.694903 -0.522136 -1.600134 0.350190 0.740235 0.841471 -0.306924 -1.483338 -0.246348 0.240435 -0.411123 -0.312282 -0.263154 -0.882529 -0.914747 -0.451910 -1.850549 0.175762 -0.177282 -0.647968 -0.855750 1.209132 -0.682787 0.079972 0.221308 1.000915 -0.566981 1.299903 -0.208265 0.998288 0.710459 -0.052955 -1.242983 -0.192571 0.832313 1.118757 -0.687651 -0.281213 -0.988402 0.175508 -1.375213 -0.115481 -0.336140 1.425412 1.676005 -1.203089 -1.149777 -0.270140 -0.263125 -1.917913 0.519450 -1.003113 -0.225963 0.075419 1.152479 0.480568 1.199258 2.189453 -1.231577 0.772769 -0.005777 -0.425604 1.500484 0.192120 1.263609 -0.962643 -0.744600 0.594120 0.458702 0.375906 -0.156426 0.082328 0.264361 -1.705063 -0.718459 0.686330 0.347745 0.146545 0.942494 1.042181 2.109331 -1.329338 0.387263 1.252752 -0.244714 -0.185205 0.460795 -1.513023 0.802673 0.400200 0.201929 1.508210 0.084680 -1.098338 0.393877 -0.120389 0.465493 -1.232926 0.287835 -0.846081 0.287950 -0.811879 -0.393241 -0.691008 -0.898388 -0.548098 -0.330275 1.747418 -0.275755 -1.799152 1.603798 -0.801640 1.060840 -2.517610 1.734943 -1.153663 0.736814 -0.903663 -0.042450 -0.110026 0.114198 -1.113103 0.482071 0.470500 -0.162069 1.024713 1.860920 0.950727 0.368070 -0.231428 1.399346 -0.051684 1.341997 -0.369918 1.342701 -0.388176 -0.313008 0.107558 -0.377193 -0.326760 -0.144062 0.115365 1.190774 1.147172 0.354523 1.283849 0.867207 1.638699 -0.762791 1.167336 -0.204536 1.119294 -0.449938 -0.676112 0.573013 0.637181 -0.433261 1.010756 -1.985066 -2.222674 -0.474250 -2.318887 -0.028400 -0.023163 0.658846 -0.131189 0.049778 -1.686542 -0.775127 0.890650 -0.072697 2.198993 0.652272 0.195799 0.950855 1.457558 -0.893499 -0.468544 -0.176640 0.491564 -0.018305 -0.570409 -1.298969 1.339118 -1.255254 0.481783 1.695860 -1.092253 0.264311 -0.756519 1.414385 -1.407967 1.992804 0.500743 -0.641050 1.651271 0.690788 1.746417 0.163658 -0.864995 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.074628 -1.180886 3.512171 2.501607 -0.140533 0.121084 1.744633 -1.506536 1.452058 0.387254 -0.502250 0.901278 -2.354976 0.905171 -1.872503 1.697223 -2.425117 -1.756175 -0.562907 -1.331219 -0.324069 -0.970974 2.137690 0.123099 2.342769 0.410711 -1.328845 -1.766445 -2.583811 -1.665281 1.234134 -0.742914 1.419356 -0.254108 -0.898109 -3.514174 1.850202 1.864043 -1.131424 -1.756229 2.246634 -1.463736 -0.183035 -1.010787 -0.328953 0.145184 0.222547 1.237705 1.796913 1.050473 0.742710 0.771382 0.929308 3.445243 -1.989961 1.273031 0.822447 0.000814 -0.785757 0.192591 0.282728 0.163093 0.856823 0.708979 -0.261421 -2.120343 -0.755225 -1.311719 -1.882250 1.418671 -0.518982 0.258545 -1.779524 0.191107 -1.511075 -0.151032 -0.763972 1.725958 2.651513 -1.728536 1.667317 -0.253500 -0.256066 -0.732414 -0.221352 0.534026 0.130477 0.477085 0.192908 -1.520703 -1.579718 0.415360 0.197966 0.246011 -0.661915 -3.087893 1.804881 -1.490705 -2.362788 -0.060242 1.103322 -1.387829 -0.335162 0.523350 -0.030215 1.395838 -1.140092 -1.876486 -0.223891 0.228455 0.718189 -0.553756 0.057383 -0.802580 -0.879300 -1.178064 -2.498617 0.529733 -0.551925 -1.075775 -0.756905 1.313851 -0.519647 0.278561 0.301947 1.417073 -0.849094 1.890421 -0.217344 1.339588 0.969183 0.836090 -0.865557 -0.102621 1.725471 2.119577 -1.429187 0.463801 -1.589528 0.306355 -1.242532 -0.495458 -0.108746 1.228661 1.348385 -2.025837 -1.455252 -0.314857 -0.145357 -2.508319 0.382223 -1.259647 -0.433943 0.403844 1.486838 0.450846 1.693229 3.382014 -1.392717 0.656069 0.619854 -0.946972 1.898500 -0.017701 1.515420 -1.110151 -1.684609 0.744693 0.371738 0.759146 -0.675650 1.201558 0.218899 -2.388697 -0.308566 0.291224 0.796449 -0.863939 1.464812 1.445872 1.073594 -1.494782 0.449556 1.721440 -0.944794 -0.025060 0.413728 -2.560816 1.132655 0.481911 -0.031706 1.745463 0.309837 -1.330484 1.464889 -0.828858 0.526385 -1.559052 0.404194 -1.307066 -0.691449 -1.560750 -0.040043 0.003339 -1.152964 -0.671705 -0.687380 2.345433 -1.332101 -1.278300 1.481087 0.008211 0.506937 -3.161391 3.267553 -1.432583 0.989732 -0.192675 -0.001327 0.288928 0.554593 -1.875220 -0.154314 0.667206 -0.430650 1.541112 2.831526 1.233806 0.005452 -0.319350 2.186538 -0.392568 2.086815 -0.736662 1.758837 -0.427735 -1.742333 0.493040 -0.426182 -0.714181 -0.844444 0.671967 2.817986 1.079261 1.041997 2.040412 0.999199 3.128106 -1.061359 1.714059 -0.506400 1.701772 -0.555328 -0.723069 0.764821 0.923686 -0.588779 1.915815 -2.683634 -3.717041 -1.276875 -2.985662 0.987007 -1.454513 1.049452 -0.942166 -0.141008 -2.801074 -1.742654 0.245184 -0.711602 1.856446 1.646652 0.383335 1.251755 1.764250 -1.442791 0.417661 0.202416 1.714806 0.571680 -0.959280 -1.340188 1.349910 -1.779867 0.139865 2.533692 -1.156116 0.672665 -0.873089 1.640506 -1.721242 3.035994 0.555955 -1.014974 2.629774 1.361369 2.025556 0.771602 -1.086090 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.071811 -0.688315 2.733736 1.599799 -0.420647 0.080161 1.063639 -1.155692 1.414464 0.233799 -0.568754 -0.041433 -1.496911 0.241866 -0.921467 0.822599 -2.044144 -1.128486 -0.421229 -1.273612 -0.305769 -0.911917 1.180430 -0.024939 1.424070 0.500777 -0.617915 -0.755456 -1.138461 -1.210188 1.208511 -0.555343 0.849201 0.201618 -0.218977 -2.909837 1.509312 1.034349 -0.758776 -1.144571 1.184406 -0.696347 -0.179730 -0.434012 -0.280567 0.269992 0.256347 1.410536 1.263025 0.610649 0.428105 -0.142529 0.395109 2.644655 -1.287097 0.720035 0.403619 -0.302524 -0.440608 0.514058 0.131606 -0.100472 0.387808 0.733914 0.003554 -1.311512 0.160738 -1.057066 -1.397262 1.348301 -0.250391 -0.218544 -0.973421 -0.226266 -1.048168 -0.129733 -1.071719 1.411379 1.998804 -1.138393 1.243635 0.071727 0.089837 -0.341742 -0.352549 0.278529 0.628066 0.209457 -0.044402 -0.881403 -1.111645 -0.203784 0.192436 -0.151466 -0.310317 -2.078919 1.263733 -1.381391 -1.446536 0.015574 0.879646 -0.886967 -0.370665 0.342867 0.181269 0.669776 -0.546496 -1.187041 -0.266431 0.279087 -0.154162 0.135625 0.114972 -0.236438 -0.571226 -0.610670 -1.722114 0.393548 -0.498933 -0.535989 -0.435124 1.065152 -0.440847 0.066488 0.463554 1.080893 -0.533391 1.395758 -0.031827 0.924831 0.461996 0.609767 -0.707720 -0.068128 1.102524 1.280547 -0.349594 -0.047152 -0.783474 0.312834 -1.213044 -0.269479 -0.346162 0.698001 0.985261 -1.497832 -0.980168 -0.245769 -0.393596 -1.874185 0.190716 -0.970474 -0.654249 0.431953 1.019356 1.089783 1.055061 2.117603 -1.437215 0.543942 -0.044291 -0.693146 0.844871 0.132930 1.088942 -0.721966 -0.784569 0.075803 0.148537 0.723350 -0.359099 0.081263 0.053133 -1.817824 -0.229676 0.471287 0.571213 -0.437228 0.664482 1.375793 1.022872 -1.504805 0.270154 1.384489 -0.555980 -0.372851 0.699542 -1.714707 0.804545 0.370702 0.086883 1.049715 0.168884 -0.463138 0.683545 -0.738752 0.183305 -1.067485 -0.155580 -0.750527 -0.258656 -1.007663 0.248820 -0.688098 -0.709977 -0.484270 -0.632219 1.478340 -1.088921 -1.103459 1.608589 -0.203163 0.604465 -1.865045 2.116335 -0.897244 0.859009 -0.315597 -0.018827 -0.134667 0.136225 -1.065953 0.056289 0.140678 -0.146044 1.122004 2.050601 0.965776 0.200549 -0.211174 1.804534 -0.595279 1.394474 -0.638232 0.947390 -0.437842 -1.131557 0.162720 -0.306798 -0.560705 -0.460847 0.636036 1.772558 0.911138 0.644298 1.553942 0.661461 1.775771 -0.477386 1.051973 -0.158940 1.135274 -0.458382 -0.553444 0.757055 0.729761 -0.759618 1.024984 -2.011928 -2.535150 -1.258104 -1.958295 0.126135 -1.177820 0.655533 -0.450226 0.014618 -1.706995 -1.094154 0.611796 -0.262084 1.153441 0.878469 0.129568 0.908144 1.533662 -0.984956 0.091582 0.416073 1.119022 0.153738 -0.643241 -1.288375 1.291257 -1.331334 0.141240 1.971878 -0.994149 0.441457 -0.523694 1.246396 -1.610767 1.907614 0.484267 -0.737751 1.578615 0.932005 1.538938 0.863976 -0.729133 -PE-benchmarks/strongly-connected-components.cpp__std::__deque_buf_size(unsigned long) = -0.116121 -0.623844 0.979156 0.524649 0.030321 0.105621 0.281413 0.193531 0.015119 0.492195 -0.528737 0.707594 -0.485573 -0.027828 0.401757 0.260386 -0.495962 -0.620167 0.306523 0.227686 -0.079697 -0.409765 -0.163546 0.569301 0.506457 0.399986 -0.473787 -0.109338 -0.615937 -0.806649 -0.439282 -0.107910 0.402599 0.330315 0.647154 -0.349462 0.107323 0.369117 0.193385 -0.793463 0.213179 0.076683 0.181805 0.028307 0.330817 0.699365 0.724824 0.268254 0.083560 0.219676 -0.301719 -0.568431 -0.012190 0.000508 0.282780 0.227862 0.587925 -0.265651 0.230415 -0.434771 0.267538 -0.688217 0.206806 0.247552 -0.349619 -0.136379 0.045271 -0.108106 -0.106933 0.273015 0.453772 -0.066260 -0.551848 -0.543991 -0.217233 0.030894 0.158652 0.482695 0.725903 -0.085403 0.667450 0.386950 0.821935 -0.100270 0.171772 -0.167583 0.238507 0.129630 -0.434137 -0.137739 -0.648005 -0.708830 -0.402105 0.661217 -0.062548 0.583856 0.075780 -0.487141 -0.594738 0.237135 -0.008452 -0.200319 -0.401491 0.649158 0.428512 0.526169 0.238068 -0.369246 -0.314528 -0.021199 -0.410078 -0.048503 0.028335 -0.092699 -0.469933 0.141138 -0.510601 0.050926 0.369764 -0.408596 -0.029319 0.343869 -0.302477 0.749008 0.114202 0.062891 0.108242 0.264396 0.962674 0.208077 0.179913 -0.495013 -0.696716 0.049743 0.089514 0.338915 -0.412382 -0.184655 0.065231 0.118674 0.109088 -0.069746 -0.311237 0.851842 0.749980 -0.487501 -0.698926 -0.679867 -0.319111 -0.117205 0.276569 -0.153171 0.238388 -0.051665 0.148780 -0.009904 -0.112036 0.801181 -0.631938 0.350295 0.086671 0.074556 -0.137238 0.114893 0.157106 -0.427044 -0.094373 0.273651 0.543862 0.072404 0.091312 -0.301535 0.402913 -0.266654 -0.423974 0.576671 0.183152 0.308982 0.436901 0.255966 0.482396 -0.122943 -0.458469 0.062276 0.070066 -0.441943 0.254171 -0.591318 0.616995 -0.103476 0.432791 0.564450 0.020542 -0.265709 0.632820 -0.045037 0.057991 -0.353938 0.442251 -0.415613 0.322673 -0.131809 -0.096751 -0.467629 -0.008358 -0.176808 0.114480 0.757224 0.402811 -0.903577 0.058964 -0.224272 0.590442 -0.922340 0.225784 -0.066792 0.253055 -0.027053 0.020035 -0.027827 -0.234378 0.160528 -0.123160 0.165050 0.149979 0.083226 0.186370 0.066126 -0.264405 0.309358 0.131781 0.283192 0.083294 0.088509 -0.097168 -0.124138 0.321470 -0.178421 0.140489 0.155400 0.451380 -0.409898 -0.067337 0.164414 -0.023758 0.377895 0.250061 0.041764 -0.335812 -0.063845 -0.140034 0.848046 -0.274280 -0.461668 -0.382035 0.439259 -0.219702 0.078883 -0.662524 -0.578198 0.075472 -1.165239 -0.679275 0.072791 0.290138 0.169417 -0.204161 -0.311566 -0.117581 0.288000 0.415583 0.989791 0.096590 -0.258428 0.612515 0.191438 -0.287290 -0.359340 -0.039330 0.009719 -0.201023 -0.051455 -0.293259 0.006961 -0.618624 0.262711 0.665426 -0.586347 0.071031 -0.382058 0.576456 -0.717278 0.834256 0.443793 -0.818326 -0.125062 0.137225 0.622229 -0.568378 -0.494916 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.131137 -0.515222 1.981708 1.408704 -0.059030 0.083277 0.924341 -0.999307 1.071187 0.288900 -0.209352 0.224498 -1.210847 0.469492 -0.878236 1.016873 -1.287111 -0.912945 -0.366425 -1.023795 -0.215445 -0.498064 1.120905 -0.233199 1.251544 -0.028076 -0.618578 -0.978504 -1.339885 -0.680000 0.871223 -0.427802 0.646108 -0.180245 -0.440533 -1.838109 1.123407 0.905709 -0.726254 -0.879226 1.127225 -0.856953 0.013893 -0.517298 0.125704 0.074648 -0.003654 0.738024 1.102621 0.597115 0.567162 0.470605 0.355940 2.045464 -1.344597 0.683744 0.280231 -0.009809 -0.456160 0.413424 0.118953 0.212346 0.432782 0.320099 -0.098685 -1.311545 -0.450909 -0.761299 -0.978046 0.786216 -0.252091 -0.033281 -1.001867 0.036884 -0.735164 -0.230516 -1.452719 0.983145 1.379915 -1.074711 0.814945 -0.058816 -0.056087 -0.277604 -0.005947 0.292795 0.274585 0.207170 0.078519 -0.679820 -0.917975 0.174565 0.224590 -0.190079 -0.379310 -1.814608 0.967420 -0.579918 -1.275615 0.050868 0.751165 -0.622981 -0.240576 0.289693 -0.055900 0.643764 -0.688482 -1.037448 -0.072105 0.171133 0.410748 -0.250286 0.039886 -0.720564 -0.425321 -0.761422 -1.383245 0.348148 -0.362830 -0.434241 -0.594794 0.824322 -0.373999 -0.148824 0.153474 0.768801 -0.609345 1.097925 -0.281505 0.868830 0.492425 0.470936 -1.033466 0.213719 1.007386 1.164027 -0.516862 0.480126 -0.960793 0.140694 -0.903029 -0.107661 0.028730 0.682661 0.658046 -1.115146 -0.716083 -0.074438 0.056780 -1.285804 0.355934 -0.661830 -0.227212 -0.017361 0.835377 0.665007 1.063222 1.688725 -0.821570 0.308449 0.109682 -0.393352 1.165283 0.090828 0.901881 -0.597409 -0.778465 0.226531 0.205921 0.255800 -0.223475 0.580471 0.132771 -1.420510 0.064261 -0.008148 0.398001 -0.652851 0.850389 0.889985 0.514855 -1.034526 0.312260 1.031700 -0.568658 0.026549 0.241744 -1.318639 0.579786 0.367134 -0.041096 0.850551 0.139686 -0.584729 0.559814 -0.523256 0.336420 -0.699286 -0.005001 -0.682872 -0.605593 -0.780086 0.250046 -0.190347 -0.678276 -0.271489 -0.386144 1.224351 -0.552326 -0.525152 0.979179 -0.161180 0.063211 -1.454846 2.012204 -0.836945 0.356888 -0.258888 0.059919 -0.018983 0.639500 -1.137767 -0.008545 0.346650 -0.303199 0.853567 1.668809 0.733919 0.086435 -0.213419 1.314459 -0.431740 1.159494 -0.439812 1.148727 -0.343310 -0.862770 0.310377 -0.240496 -0.410452 -0.558045 0.427811 1.637969 0.542808 0.592870 0.953066 0.496282 1.697009 -0.567402 1.069045 -0.244686 0.742258 -0.286633 -0.320895 0.598379 0.263871 -0.332317 0.870549 -1.488308 -1.837169 -0.540419 -1.271867 0.676194 -0.710912 0.356611 -0.471697 -0.066513 -1.553403 -0.964725 -0.009915 -0.477196 0.465366 0.751219 0.231137 0.647319 1.103115 -0.785584 0.235490 0.065326 0.754039 0.359460 -0.641297 -0.742889 0.992644 -0.969831 -0.017948 1.373573 -0.548788 0.322133 -0.283146 0.938233 -0.894109 1.530931 0.219517 -0.367145 1.487446 1.085646 1.353095 0.473612 -0.538228 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/strongly-connected-components.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/strongly-connected-components.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/strongly-connected-components.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.202365 -1.180928 5.990142 3.793016 -1.015916 0.342388 1.570648 -3.244632 2.726558 -1.066534 -0.535351 0.887787 -3.000123 1.260208 -3.155669 1.820767 -4.744092 -2.569097 -1.627844 -3.444710 -0.975710 -1.141066 2.550426 0.244701 3.141624 0.626198 -2.302483 -1.636441 -3.900704 -1.509665 2.846586 -0.997544 1.951272 -0.798350 -0.840724 -7.468689 3.428346 2.711129 -2.090462 -2.408468 3.267882 -2.916935 -0.296814 -2.221403 -1.405964 -0.288662 -0.497136 1.508020 2.988855 0.632164 0.546687 2.132478 0.121778 6.793230 -3.662334 1.869436 1.043228 -0.330417 -1.679719 0.920907 0.154166 0.766589 1.286811 0.638857 -0.753382 -4.108424 -0.452832 -2.407868 -2.593852 2.545053 -0.419050 -0.537321 -1.953724 -0.074939 -3.899067 -0.934220 -0.071678 3.059829 3.711732 -3.140415 1.975696 -0.871643 -0.272435 -0.015169 0.537151 0.953417 1.932647 0.603109 0.556999 -1.936249 -2.993024 1.038043 0.759907 -0.107309 -1.236202 -5.686986 2.735216 -4.241737 -3.654043 -0.024299 2.367557 -2.248366 -1.398326 -0.192875 0.293035 1.454338 -1.805239 -2.672919 -0.187247 1.285944 0.632221 -0.508945 0.342811 -1.565210 -0.674811 -2.488035 -4.195059 1.815055 -0.756709 -0.291417 -1.533061 2.915721 -1.429687 -0.943336 0.359901 2.513826 -2.306181 3.242361 -1.745202 1.715834 0.107164 1.373692 -1.355747 -0.718332 2.193719 3.553845 -2.061363 -0.160195 -2.717770 0.564341 -2.996096 -0.934170 -0.617154 1.833922 1.340762 -2.924506 -1.988551 -0.480125 -0.774849 -4.799780 -0.082747 -1.747470 -2.190211 1.382901 2.468819 2.663474 3.062440 4.527769 -1.525297 1.252213 0.429100 -1.702530 3.656227 -0.816559 2.587251 -1.862846 -2.359320 0.932299 -0.771446 1.956670 -0.812634 1.626284 0.128629 -4.021937 -0.746862 0.272180 1.834947 -0.434319 2.475985 3.229370 1.387257 -3.947053 1.126253 2.866408 -2.156690 0.002695 0.597007 -3.121209 0.773604 1.717430 -0.617775 3.458226 0.304867 -2.014246 0.998752 -0.688484 1.364932 -2.343692 -0.219174 -1.733053 -0.963292 -2.386952 -0.345151 -1.059687 -1.632113 -2.071826 -3.216078 3.765126 -4.011535 -2.960985 3.892359 0.113329 1.883334 -5.263243 3.718053 -2.423103 3.052849 -0.413824 0.542273 0.044711 0.488846 -4.115115 1.416311 0.839122 -1.502560 2.062398 4.615328 2.398208 1.028884 -1.288962 3.872757 -1.367717 3.807691 -1.848737 3.403812 -1.140960 -3.220712 0.924091 -0.665401 -1.714917 -1.438170 2.330398 3.826155 1.643165 2.850200 2.812381 2.495524 4.801540 -1.575214 2.357902 -1.078125 1.361901 -0.717587 -1.405219 1.925985 1.887542 -0.516929 1.921640 -4.599717 -6.087290 -4.005154 -4.702077 2.430345 -2.523468 0.535633 -1.118393 -0.361199 -4.658100 -2.559469 0.796406 -1.296888 3.900828 2.495538 0.746848 2.041109 3.551650 -2.887533 0.620971 1.161544 2.531550 1.028828 -1.326142 -3.835851 3.681401 -2.522894 0.251899 4.793741 -1.953809 1.587893 -0.279471 2.260183 -2.669626 4.663229 0.623456 -2.111423 3.797487 2.665933 2.920506 2.326849 -1.722926 -PE-benchmarks/strongly-connected-components.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/strongly-connected-components.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::push_back(int const&) = 1.593463 -1.166333 8.946647 6.090056 -2.288172 0.480470 0.218929 -5.200769 3.808786 0.552082 -1.360632 1.621589 -2.347515 1.785137 -2.374203 4.329366 -7.198459 -1.993012 -2.138291 -4.974245 -2.313273 -0.977687 2.197086 -0.175750 4.352460 2.593934 -2.786249 -0.438557 -1.577702 -5.852482 1.733001 -1.333336 1.825488 -0.457182 1.056162 -8.636688 5.994516 3.347376 -2.592343 -3.502420 3.138258 -2.202842 -0.816478 -1.757429 -1.248207 1.100804 -0.341950 3.310872 3.861444 2.431192 0.775373 2.470590 2.774771 8.088335 -2.794443 2.601915 1.768350 -1.195049 -1.520422 1.262156 0.664894 0.704287 0.842898 0.343028 0.831651 -5.943292 -1.010756 -2.098337 -1.954910 3.561836 -0.429446 -2.952038 -3.358273 -2.114876 -3.793377 -1.008813 -6.668971 4.838956 4.875857 -4.417865 1.871888 0.018820 -0.401268 0.493742 1.081727 0.495148 3.973455 1.474964 0.447646 -0.785831 -0.343859 -1.853416 2.598834 -1.725572 -2.538402 -8.504877 3.098456 -6.679274 -4.661239 1.391340 4.019662 -2.944132 -1.060593 -1.509153 1.108394 0.977286 -1.756993 -2.722388 0.883214 1.108914 0.603428 -0.822961 -0.420650 -1.436518 -0.277914 0.799034 -6.082285 2.894370 -0.304665 0.531208 -0.981497 3.438950 1.156881 -1.691278 -0.279184 2.927979 -2.421699 4.763696 -1.951497 3.919907 -1.237998 4.143481 -1.158231 2.913908 3.251807 -1.515583 -1.722372 -0.034859 -2.881736 1.430170 -4.268799 1.116858 -2.435219 3.617732 3.047264 -2.270710 -3.668084 -1.145722 -3.331212 -5.458789 0.972683 -2.223423 -4.251154 1.160877 3.195630 3.236203 3.802675 2.138866 -3.008873 -0.048528 -0.477222 -0.221128 4.512918 -0.662851 3.185596 -2.539516 -1.822817 1.873150 0.183421 1.971576 -0.250374 0.957592 1.266634 -4.232468 0.288521 2.480283 2.362800 -0.684439 3.244188 4.325834 5.123552 -2.174193 0.391694 3.615740 -2.717778 -0.487702 1.107905 -3.792534 1.119362 1.870916 2.162810 4.863802 0.214207 -0.504185 0.940656 -0.696033 1.153630 -2.212539 -0.377839 -2.066297 -0.891948 -1.520342 1.149230 -2.183803 -1.091180 -2.382988 -3.686429 5.059603 -6.393221 -2.460428 6.357650 -2.706076 2.097673 -4.451757 5.736010 -3.041827 2.607503 -0.585878 -0.060605 0.095510 -1.275160 -5.450257 2.241607 1.306902 -0.694965 1.072348 4.987766 2.733828 0.657312 -1.719648 4.643005 -3.161462 5.576174 -2.032311 4.997238 -1.736454 -1.479398 -0.582018 -0.487461 -3.179676 -2.493532 2.344905 3.668636 0.093039 3.076405 2.129731 2.029825 5.558533 -2.675757 4.637244 -1.323560 0.547901 -2.243762 -2.326344 3.250180 1.906186 -0.828987 2.035911 -6.150291 -5.113319 -7.603831 -3.034502 0.621765 -1.746883 1.738177 -2.057982 -1.489706 -3.639362 -4.159517 5.447941 -0.848046 0.315766 3.270357 0.758701 2.777601 4.447259 -1.292762 0.760196 -1.284584 1.315412 1.950744 -1.643839 -4.240785 5.560253 -2.686957 -0.191529 6.411920 -2.672693 2.318336 -0.182711 2.625331 -3.586745 4.195495 0.398582 -2.351956 3.448009 5.341713 3.253245 1.041452 -2.622585 -PE-benchmarks/strongly-connected-components.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.454650 -1.415683 10.976578 7.255382 -3.804405 0.502429 -0.134304 -6.096897 4.514725 -0.756527 -2.126724 1.616095 -2.715706 2.150751 -3.379919 4.586684 -9.730788 -2.266901 -2.670288 -5.951044 -2.654838 -1.081067 2.249859 0.236066 5.019292 4.105398 -2.994607 -0.145625 -1.410499 -5.544933 2.683105 -1.665808 1.969327 0.319550 1.764972 -10.836451 7.062670 3.725023 -3.131663 -4.372030 3.567404 -3.013502 -1.119229 -3.084151 -2.172824 0.984731 -0.479461 5.362917 4.278175 2.278790 -0.438924 2.918503 3.109540 10.547407 -3.114105 2.910838 2.360055 -1.338953 -1.541212 1.363771 0.843809 0.950307 0.642134 0.313755 1.130949 -7.186633 -1.302000 -3.136528 -1.757502 4.399982 -0.343523 -3.023099 -4.151539 -2.594822 -5.473251 -1.058392 -9.272228 6.882896 5.891541 -6.045330 1.969058 0.106010 -0.267667 0.971719 1.292389 0.866243 5.196173 1.878881 0.842668 -0.639781 -1.080469 -2.405251 3.415476 -3.988703 -3.184524 -11.911763 3.691466 -9.510895 -5.388325 1.558363 4.887567 -3.856877 0.255160 -2.085120 1.276940 1.001942 -2.240618 -2.888739 1.490080 1.450741 0.812503 -0.662011 0.059471 -0.542774 0.293062 0.356621 -7.459761 3.878942 -0.319011 1.035126 0.110516 4.322404 1.560148 -2.280046 -0.321569 3.133897 -2.942893 6.390570 -2.349293 4.195099 -1.934927 5.250187 -0.123590 4.267122 3.930486 -1.573625 -1.994102 -0.005271 -2.916643 1.949661 -5.144676 0.515531 -2.961662 3.751728 2.258839 -2.956727 -4.310566 -1.869561 -4.771743 -6.606567 0.709044 -2.577229 -5.764386 2.412922 3.897589 5.200979 4.610201 1.907626 -3.710278 -0.278202 -0.764968 -0.022601 5.140072 -0.420958 3.615145 -2.912101 -2.018237 2.166956 -0.615294 2.919707 -0.318926 0.918422 1.416262 -5.102035 0.574570 3.252268 3.549825 -0.663687 4.304610 5.583613 4.061064 -2.818215 0.540315 4.372359 -3.580682 -0.774712 1.548701 -4.427533 1.596667 2.331238 2.659634 5.359664 0.116670 0.037194 0.992298 -0.838801 1.322299 -2.515193 -1.312741 -2.311772 -1.577516 -2.207469 2.501725 -2.823775 -1.277395 -3.255649 -5.235043 6.070013 -9.243079 -2.429947 7.846749 -3.052032 3.185360 -4.757670 6.318627 -3.651929 3.976637 0.106372 -0.053933 0.223424 -2.543436 -6.797930 2.544456 1.575578 -0.883807 0.722679 5.344161 3.495144 0.765880 -1.826024 5.834008 -4.185477 6.854226 -2.718956 5.573084 -2.148272 -2.052982 -0.470756 -0.566989 -3.962162 -2.864223 3.707194 5.214511 -0.186018 4.966719 3.142705 2.507839 6.464460 -3.113860 4.872305 -2.046053 0.273299 -2.907062 -2.798664 3.737025 2.544369 -1.054147 2.086506 -7.591416 -6.886629 -11.035045 -2.774761 0.726734 -3.519629 1.897612 -2.469416 -1.708517 -4.401678 -5.165743 6.194460 -1.260434 -0.425833 4.075363 0.688412 3.473183 5.442921 -1.783181 0.887254 -0.393070 2.205146 2.470287 -1.328393 -6.104753 6.999043 -3.467096 -0.335680 8.607335 -3.500144 2.988309 0.005216 3.664833 -4.310487 5.109443 0.695070 -3.822570 3.524320 7.084516 3.080384 2.473430 -3.327407 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::size() const = 0.529537 -0.209094 1.822897 1.211108 -0.646151 0.072147 -0.161702 -0.998133 0.734940 -0.067615 -0.431919 0.276326 -0.355492 0.352911 -0.603589 0.833457 -1.538249 -0.275203 -0.437378 -0.967629 -0.492000 -0.104607 0.273583 -0.048828 0.836137 0.859317 -0.425506 0.121098 -0.101518 -1.061425 0.243104 -0.229972 0.173298 0.092486 0.435287 -1.274429 1.160046 0.641950 -0.511691 -0.716766 0.506598 -0.392648 -0.166062 -0.431208 -0.143459 0.267408 -0.050281 0.935811 0.653055 0.497173 -0.023421 0.419421 0.655512 1.531542 -0.348153 0.495476 0.463582 -0.156952 -0.142828 0.229046 0.157114 0.124184 -0.067458 -0.055624 0.283384 -1.164925 -0.354162 -0.464640 -0.040132 0.665927 -0.166959 -0.630720 -0.756648 -0.649770 -0.803376 -0.160377 -2.438466 1.090704 0.900966 -1.078516 0.237614 0.118913 -0.009151 0.227806 0.228157 0.110872 0.779000 0.359099 0.142295 0.122020 0.158236 -0.457427 0.650011 -0.827789 -0.643900 -2.016666 0.649211 -1.666810 -0.876218 0.351494 0.838186 -0.606186 0.339365 -0.242117 0.088199 0.090434 -0.396198 -0.375425 0.469572 0.171716 0.279217 -0.063339 -0.002909 -0.016655 0.112973 0.312029 -1.254428 0.722625 -0.014612 0.228627 0.161386 0.685494 0.544360 -0.382898 -0.110532 0.411677 -0.436043 1.203171 -0.300620 0.746236 -0.629340 1.099138 -0.107606 1.077274 0.709741 -0.737863 -0.374961 0.194662 -0.361451 0.293120 -0.810412 0.180999 -0.686302 0.578224 0.359860 -0.450580 -0.763239 -0.351013 -1.063399 -0.993448 0.175563 -0.345897 -1.038863 0.247389 0.599493 0.951946 0.719291 0.160395 -0.612606 -0.379631 -0.182077 0.064067 0.757640 0.020186 0.586801 -0.469885 -0.239995 0.421968 -0.043178 0.365255 0.098160 0.129357 0.322407 -0.788614 0.422419 0.731365 0.598639 -0.216344 0.775400 0.926626 0.473832 -0.126196 -0.039382 0.661898 -0.573146 -0.157789 0.275049 -0.664815 0.305278 0.345357 0.683703 0.767627 0.048382 0.322153 0.171587 -0.221491 0.229339 -0.348640 -0.261531 -0.346049 -0.333056 -0.273313 0.740687 -0.458281 -0.115260 -0.424984 -0.862562 0.949086 -1.535304 -0.046376 1.207601 -0.459033 0.427140 -0.350326 0.952714 -0.569178 0.686947 0.163378 0.008757 0.091322 -0.544810 -1.014818 0.318805 0.254698 -0.027227 -0.064056 0.671516 0.534657 0.002450 -0.247011 0.931551 -0.885395 1.141046 -0.374792 0.853723 -0.339486 -0.215016 -0.057439 -0.050315 -0.773448 -0.528443 0.527837 0.911233 -0.213618 0.799046 0.378516 0.197320 1.033284 -0.555100 0.812456 -0.305627 -0.011900 -0.613372 -0.513557 0.642952 0.383887 -0.133466 0.160493 -1.199504 -0.919205 -1.920908 -0.138935 0.020580 -0.609694 0.284374 -0.441915 -0.374615 -0.437914 -0.951445 1.366297 -0.214224 -0.456695 0.578171 0.085719 0.577656 0.846698 -0.128479 0.205932 -0.191891 0.274467 0.493765 -0.128065 -0.903547 1.174088 -0.512702 -0.230575 1.390841 -0.589137 0.510320 0.181272 0.515788 -0.688259 0.644713 0.040569 -0.609528 0.508119 1.386978 0.528995 0.326774 -0.541702 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::max_size() const = -0.060684 -0.242359 0.738344 0.473410 -0.178748 0.088897 0.126817 -0.321186 0.369198 -0.274256 -0.171404 0.073556 -0.459349 0.123200 -0.406863 0.083453 -0.625894 -0.380420 -0.189902 -0.345308 -0.128666 -0.227405 0.176959 0.144704 0.316640 0.303078 -0.238947 -0.035086 -0.596292 0.013104 0.351697 -0.094790 0.201794 0.176148 0.063672 -0.713797 0.341946 0.382169 -0.206700 -0.399274 0.304938 -0.458476 0.039302 -0.379317 -0.068254 0.042176 0.000734 0.287233 0.307270 -0.017211 -0.057894 0.096085 -0.107515 0.716243 -0.362575 0.256861 0.235149 0.005446 -0.100967 0.050295 0.023278 0.035807 0.118039 0.114434 -0.241600 -0.418390 -0.080330 -0.390590 -0.244398 0.348045 -0.064056 -0.017954 -0.330669 -0.177352 -0.578461 -0.123543 -0.408217 0.450285 0.527992 -0.508423 0.293008 -0.014256 0.145100 0.060108 0.182029 0.113102 0.321353 0.079209 -0.014665 -0.075723 -0.490448 0.073347 0.044521 -0.152517 -0.193512 -0.614260 0.328009 -0.760649 -0.497402 0.018822 0.194140 -0.230525 -0.028037 0.159540 0.016704 0.195511 -0.224275 -0.346867 0.068977 0.202233 0.094793 -0.001713 0.109226 -0.010719 -0.077981 -0.424329 -0.578562 0.230950 -0.022720 -0.078573 -0.009787 0.470348 -0.206172 -0.033630 0.054699 0.156716 -0.240070 0.624346 -0.096176 0.084333 -0.126197 0.080099 -0.256649 0.042721 0.241949 0.506301 -0.337329 0.066271 -0.145990 0.037160 -0.352782 -0.254709 -0.168892 0.144100 0.056562 -0.454643 -0.277190 -0.193253 -0.297079 -0.626540 -0.041567 -0.204594 -0.247011 0.218702 0.332766 0.606711 0.329979 0.695463 -0.242018 0.033708 0.022110 -0.231211 0.344356 0.088992 0.320809 -0.251966 -0.297114 0.184381 -0.146712 0.230244 0.027888 0.106105 0.005935 -0.523612 -0.021698 0.213460 0.298594 0.010915 0.466968 0.457555 -0.243660 -0.488252 0.140517 0.302320 -0.212625 -0.030297 0.095383 -0.383972 0.231915 0.187030 -0.019886 0.325502 0.011574 -0.100667 0.117421 -0.117338 0.237562 -0.362005 -0.103781 -0.225858 -0.137550 -0.417555 0.200526 -0.167970 -0.236487 -0.239024 -0.437898 0.501104 -0.467446 -0.287645 0.422769 0.149372 0.394976 -0.507123 0.202474 -0.298674 0.628024 0.052930 0.090355 0.033682 -0.092606 -0.352575 0.075007 0.127525 -0.170538 0.130975 0.400044 0.301585 0.082713 -0.020822 0.487685 -0.190761 0.402567 -0.232008 0.300013 -0.102341 -0.351550 0.243550 -0.121579 -0.155961 -0.069598 0.254705 0.662049 0.292981 0.463669 0.428226 0.268874 0.488104 -0.196685 0.090288 -0.133170 0.223405 -0.196628 -0.202545 0.122736 0.283344 -0.053669 0.058721 -0.587946 -0.866147 -0.559959 -0.534622 0.213216 -0.473272 -0.009089 -0.024896 -0.032317 -0.501191 -0.342402 0.147103 -0.203145 0.599699 0.179757 0.061677 0.337362 0.485783 -0.406493 0.010441 0.342607 0.353623 0.050380 0.006126 -0.598789 0.485440 -0.369439 0.020184 0.682153 -0.327425 0.228461 0.057206 0.410018 -0.380010 0.622980 0.146052 -0.435875 0.412282 0.428403 0.407147 0.414338 -0.266229 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.687100 -1.333181 4.115750 2.850164 -0.762845 0.797575 -0.084913 -1.509203 0.857765 0.687100 -0.817709 1.641246 -1.186674 0.436554 -0.699167 1.232205 -2.774156 -0.871077 -0.815565 -1.378721 -0.743432 -0.556011 -0.309291 1.402620 1.785095 1.171675 -1.203870 0.446523 -1.519690 -2.916148 -0.467844 -0.265004 0.843305 -0.731019 1.623815 -2.779829 2.459511 2.171303 -0.432769 -2.295226 1.025120 -0.611915 -0.298070 -0.425159 -0.596368 1.038497 0.751075 1.355669 1.073475 1.153828 -0.565106 0.413740 1.744727 2.948743 0.067788 1.475827 1.749105 -0.660641 0.397878 -0.136631 0.034904 -0.580030 -0.040139 -0.318879 0.258251 -1.964581 -0.261394 -0.250838 -0.164266 1.114030 0.178326 -1.497351 -1.560662 -1.511049 -2.412743 -0.180612 -2.408444 2.039329 2.328397 -1.780996 1.345707 0.426945 0.355442 0.876876 1.133632 0.222043 1.366177 0.816405 -0.271016 0.368401 -0.532612 -1.018671 0.739885 -0.581817 -1.579425 -3.375763 1.180968 -3.718048 -2.098631 1.282041 0.885328 -1.667356 0.126625 -0.922914 0.424753 0.660353 -0.711849 -1.187857 0.373568 0.952030 0.217355 -0.399598 0.411568 -0.173114 0.122275 0.577504 -2.393495 1.491416 0.849258 0.051435 -0.072880 1.891397 0.705318 0.504542 -0.196998 1.035224 -0.719930 1.924316 0.403619 1.396100 -1.312652 1.024098 -0.479271 1.275925 0.925541 -1.470894 -1.100222 0.115073 -0.402494 0.911177 -0.630510 1.123441 -1.269881 1.872918 0.723562 -0.809262 -1.572977 -1.388747 -2.291232 -1.549182 0.235827 -0.445087 -2.532989 0.705784 1.296627 0.885676 0.755322 0.574968 -0.995944 -0.577809 -0.179764 -0.158338 1.062441 -0.726065 0.946966 -1.225177 -0.806734 1.256529 0.557164 1.086629 0.200511 0.067597 0.949773 -1.055814 0.499406 1.262697 1.023800 -0.166914 2.188665 2.093128 2.008510 0.076360 -0.643169 0.827260 -1.354201 -0.330717 0.251311 -1.541786 0.577253 0.784319 0.975961 2.565513 -0.032453 -0.107909 1.411004 -0.201443 0.424500 -1.075714 0.455176 -1.067239 -0.265313 -0.533638 0.417351 -1.115937 -0.318010 -1.718530 -1.635981 2.498507 -2.991981 -1.095677 1.820634 -0.567283 1.131127 -1.819960 2.157216 -1.071289 1.758345 0.848883 -0.116730 0.413734 -0.718564 -1.757260 0.637299 0.703116 -0.591412 0.331819 1.130957 0.849057 -0.223651 -0.279462 1.540083 -1.400314 1.666176 -1.103637 1.267875 -0.803563 -0.137528 -0.603465 -0.128461 -0.885601 -0.504726 0.508646 0.240983 -0.358538 1.029104 0.355786 1.189602 1.373166 -0.844128 1.237613 -0.873323 0.594496 -1.651150 -1.220284 0.489885 1.267004 0.430916 0.770658 -2.982127 -1.639880 -3.653346 -1.223366 -0.383264 -0.356677 0.572772 -0.253444 -0.908294 -1.548041 -2.124440 3.189071 0.002945 -0.084189 1.658733 0.224740 1.577514 1.405287 0.221884 0.036758 -0.434533 0.490284 0.524618 -0.202437 -1.509196 1.983123 -1.553910 0.151251 2.856849 -1.289956 1.467838 -0.131472 0.522219 -2.200588 1.957835 0.582652 -1.920497 0.488620 2.736595 1.337992 -0.674137 -1.316162 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_node() = 0.030755 -0.480498 1.775501 1.157439 -0.299968 0.104022 0.442571 -0.753126 0.726936 -0.107449 -0.306937 0.362753 -0.827519 0.307591 -0.779719 0.596256 -1.313383 -0.703520 -0.337876 -0.828649 -0.307838 -0.308581 0.538169 0.106870 0.932264 0.369386 -0.555913 -0.433870 -1.006593 -0.588685 0.542606 -0.272749 0.484767 -0.088578 -0.015416 -1.825389 0.914060 0.814705 -0.525148 -0.850298 0.815229 -0.705478 -0.024539 -0.540458 -0.195397 0.086435 0.096436 0.632970 0.718730 0.359653 0.091195 0.374420 0.271978 1.836414 -0.720606 0.572589 0.505752 -0.101413 -0.305582 0.172219 0.118365 0.005621 0.248762 0.113819 -0.111243 -1.059628 -0.282376 -0.668416 -0.540054 0.630405 -0.102715 -0.215769 -0.696376 -0.256893 -0.977618 -0.242811 -1.006935 0.935533 1.119755 -1.034167 0.650679 -0.027963 0.091705 0.048712 0.172946 0.251447 0.458975 0.246294 0.078997 -0.329817 -0.651907 0.043869 0.232307 -0.221174 -0.444578 -1.663078 0.808726 -1.191785 -1.057374 0.170087 0.600705 -0.602290 -0.100596 0.039464 0.026833 0.476820 -0.543365 -0.701039 -0.003720 0.250690 0.233879 -0.128500 0.108840 -0.258776 -0.183110 -0.482369 -1.238027 0.538033 -0.069273 -0.148111 -0.245288 0.817142 -0.160056 -0.066536 0.052836 0.569462 -0.517706 1.109007 -0.175043 0.505937 -0.085716 0.451583 -0.576574 0.198659 0.688508 0.667384 -0.605128 0.131342 -0.544471 0.193465 -0.680038 -0.147070 -0.261379 0.615050 0.437485 -0.811206 -0.692165 -0.352919 -0.440902 -1.165506 0.078400 -0.469569 -0.558076 0.344496 0.687287 0.794766 0.737256 1.179817 -0.555731 0.156823 0.048143 -0.369086 0.815171 -0.032003 0.699008 -0.546920 -0.563595 0.325039 0.002604 0.477439 -0.082269 0.344043 0.177083 -1.060130 -0.016943 0.296921 0.547046 -0.244598 0.813692 0.910803 0.365444 -0.824560 0.098552 0.690564 -0.566074 -0.088077 0.227904 -0.918790 0.377098 0.368113 0.042452 0.867359 0.106059 -0.325551 0.417776 -0.292222 0.290984 -0.589687 -0.038034 -0.507592 -0.366835 -0.583350 0.237401 -0.365784 -0.396410 -0.512816 -0.776210 1.113032 -1.076072 -0.561522 0.892988 -0.040339 0.447453 -1.210101 1.210992 -0.662868 0.818301 -0.028844 0.049416 0.044717 0.054012 -0.944537 0.213671 0.281405 -0.307985 0.405964 1.128423 0.615022 0.122585 -0.199251 1.056291 -0.494455 1.007282 -0.416960 0.817570 -0.324437 -0.703740 0.189497 -0.150733 -0.436320 -0.319049 0.504707 1.148171 0.307455 0.712981 0.732886 0.561644 1.223540 -0.507450 0.623088 -0.285147 0.565059 -0.402175 -0.439074 0.408836 0.517815 -0.118213 0.435034 -1.313423 -1.534802 -1.194281 -1.042562 0.409548 -0.655671 0.198517 -0.324919 -0.164487 -1.131400 -0.828958 0.476538 -0.327570 0.621257 0.663502 0.158187 0.688581 0.894005 -0.587361 0.103562 0.224214 0.619222 0.295391 -0.282096 -0.932604 0.934243 -0.799345 0.001989 1.357960 -0.566609 0.454338 0.020548 0.717556 -0.810192 1.248261 0.206115 -0.723921 0.904349 1.037311 0.891580 0.402366 -0.544996 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.017259 -0.516354 2.444010 1.752207 -0.748119 0.128804 0.261709 -1.135006 1.047104 0.183289 -0.239618 0.362467 -0.856039 0.408333 0.154505 1.184749 -2.101426 -0.576838 -0.370101 -1.267324 -0.602177 -0.354705 0.592229 -0.000952 1.116477 0.840833 -0.679718 -0.415490 -0.232077 -1.208033 0.799511 -0.520477 0.875437 0.546708 0.228131 -3.673165 1.502544 0.701616 -0.738170 -1.083403 0.830393 -0.672739 0.235986 -0.649163 -0.642847 0.333467 0.157608 0.742874 1.087631 0.613297 0.061202 0.288068 0.797111 2.489906 -0.787803 0.612885 0.481834 -0.664643 -0.628757 0.086323 0.224918 -0.010293 0.579768 0.199406 0.008546 -1.619941 -0.312111 -0.946682 -1.077404 0.854550 0.051207 -0.500285 -1.015315 -0.590238 -0.786925 -0.561235 -1.767675 1.498803 1.525308 -1.372300 0.833113 0.048929 -0.042857 0.202498 0.382589 0.337096 1.035548 0.333731 -0.055793 0.047751 -0.038714 -0.805585 0.731105 -0.281813 -0.426458 -2.199450 0.686979 -1.007051 -1.226607 0.571392 0.975185 -0.504076 -0.879359 -0.720843 0.376725 0.661867 -0.740643 -0.941825 -0.140573 0.145079 0.075209 -0.235830 -0.318273 -0.254225 -0.404454 -0.335172 -1.694840 0.629267 -0.068169 -0.069803 -0.269917 1.050112 -0.080050 -0.290819 -0.021029 0.802228 -0.822342 1.726823 -0.330050 0.926614 0.030859 0.599483 -0.515807 0.277599 0.889627 0.621062 -0.246176 -0.564849 -0.892459 0.323847 -1.156655 0.125707 0.154149 1.185902 1.428677 -0.468525 -0.971543 -0.411111 -0.724076 -1.868713 0.372790 -0.808578 -0.293124 1.030322 0.933697 0.754465 1.095529 0.919030 -1.022712 0.396091 -0.458614 -0.234167 1.290953 0.528547 0.999516 -0.716450 -0.371336 0.383978 0.129101 0.714163 0.072247 0.035594 0.369835 -1.132838 -0.228875 0.617280 0.738097 -0.196946 0.712932 1.108879 2.098591 -0.719553 0.058348 0.966948 -0.583112 -0.142997 0.433281 -1.045468 0.399074 0.450141 -0.210974 1.135321 -0.033755 -0.504105 0.227956 -0.262721 0.205612 -0.600507 -0.017284 -0.571448 -0.074257 -0.608201 0.076804 -0.843937 -0.550589 -0.686031 -0.635421 1.563065 -1.525459 -0.701768 1.527826 -0.818204 0.720949 -1.554404 2.271573 -0.923783 0.768626 -0.800681 -0.454733 -0.081609 -0.171152 -1.192580 0.531901 0.393911 -0.108053 0.014818 1.647272 0.871216 0.121928 -0.357859 1.390196 -0.421272 1.469543 -0.397316 1.423386 -0.569344 -0.021111 -0.039219 -0.170525 -0.548039 -0.431162 0.547116 1.208367 0.316894 0.755324 0.738675 0.716075 1.355774 -0.737450 1.064349 -0.282057 0.712716 -0.531442 -0.519396 0.670038 0.946484 -0.212921 0.557700 -1.697050 -1.587901 -1.700949 -0.752306 -0.182774 0.336123 0.418233 -0.380966 -0.166498 -1.127647 -0.860389 1.145876 -0.385094 0.410993 0.703506 0.202116 0.994589 1.301438 -0.412100 -0.381008 -0.096022 0.296803 0.423576 -0.107829 -1.359455 1.459400 -1.056782 0.066097 1.694536 -0.719968 0.410126 -0.105061 1.443322 -1.010177 1.474115 0.174555 -0.706747 1.159278 1.578318 0.906709 0.266310 -0.694533 -PE-benchmarks/strongly-connected-components.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.270414 -2.492304 5.492200 3.919477 -0.739328 1.947948 -0.280389 -1.371749 -0.351708 1.005609 -0.326199 3.064427 -1.735976 0.274850 -0.364393 0.640762 -2.845681 -0.892202 -1.393972 -1.555931 -0.210261 -0.451997 -1.300817 3.543338 2.041207 0.801199 -1.866872 0.472538 -3.408384 -3.724195 -0.930377 0.085516 2.030322 -1.817752 2.267362 -4.924084 3.036481 3.799113 -0.123159 -3.391007 1.686860 -0.546455 -0.257637 -0.040312 -2.386447 1.453072 1.054403 -0.839224 0.927469 1.189885 -1.282809 0.796531 2.863811 3.592288 0.605083 2.123586 2.465114 -1.463164 1.119433 -1.042478 -0.665172 -0.882054 0.163109 -1.244172 0.197390 -2.542012 -0.075574 0.417342 -0.620458 0.597071 0.210263 -2.064551 -1.249330 -1.755146 -4.055402 -0.370797 1.177272 2.091026 2.601555 -1.478752 2.353829 -0.097677 -0.286667 1.699053 2.215955 0.867082 0.628887 1.045250 -0.094854 0.983918 -0.476897 -0.197746 0.709198 1.096563 -2.662111 -3.360836 1.701377 -4.090260 -2.362268 2.368645 0.472565 -2.837004 -0.865463 -2.696310 -0.220939 1.547977 -1.370649 -1.703568 -0.183510 2.491931 0.893920 -0.896467 0.519391 -0.461321 0.158420 -0.255113 -2.142452 2.543340 1.776576 0.171068 -0.741694 2.968920 0.442754 1.220095 -0.272284 2.013411 -1.695356 2.010133 0.802848 1.540229 -2.392128 -0.079906 -0.338291 -0.663464 0.616492 -0.961008 -1.856464 -1.250222 -0.833497 1.247885 0.663889 2.081632 -0.404553 2.533658 1.444206 -0.306949 -1.163670 -2.029497 -2.757639 -2.249928 -0.763292 -0.118414 -3.321985 2.662568 1.507021 -0.234322 0.477371 1.090580 -0.295606 -0.546810 -0.211995 -1.534328 1.226448 -1.671017 0.672344 -1.601799 -1.504936 1.780503 0.586853 2.429697 0.328300 0.529323 1.169685 -0.192367 0.568189 1.239828 1.382219 0.107379 3.204284 3.192393 3.669743 0.844878 -1.528389 0.329306 -2.729305 -0.136733 -0.275087 -1.621475 -0.300826 1.651268 -1.183562 4.354541 -0.436757 -1.014207 2.816210 -0.258532 0.627407 -1.709536 2.113359 -1.621499 0.397086 -0.951289 -2.126184 -1.435130 -0.655559 -3.537486 -2.563011 3.624441 -4.633870 -1.990763 1.300292 0.538948 1.024685 -3.525090 2.695036 -1.241336 3.052654 1.566470 -0.374147 0.548235 -0.000484 -2.319554 0.891930 0.928660 -1.942865 0.651274 1.796833 0.985751 -1.003151 -0.745510 1.800451 -1.287774 1.667217 -2.144040 1.414352 -1.214284 0.133882 -0.802654 -0.123683 -0.935020 -0.605358 0.425790 -1.650356 -0.554416 1.051408 -0.777334 2.643606 1.134406 -0.232511 0.915563 -1.526557 1.062591 -1.942945 -1.623991 0.025514 3.153215 1.979484 1.014465 -4.205849 -1.931514 -4.651596 -2.245134 -0.002785 1.078437 0.245703 0.589006 -1.279917 -2.882923 -2.940087 4.047807 -0.094994 1.643384 2.533714 0.487861 2.242648 1.378890 0.626897 -0.201875 -0.345836 0.972182 0.709133 0.369758 -1.803479 2.371254 -2.185718 0.401491 3.535167 -1.403199 2.684379 0.092447 -0.218578 -3.426389 3.342661 0.910205 -2.861190 0.668372 3.044488 0.807429 -1.851566 -1.416275 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_S_buffer_size() = -0.120600 -0.182782 0.123618 0.108429 -0.038850 0.046941 -0.015737 0.082391 0.062242 -0.108214 -0.101779 0.045547 -0.164303 0.004410 0.009524 -0.063289 -0.117957 -0.153599 0.019008 0.078293 -0.027991 -0.119320 -0.059672 0.134182 -0.008529 0.242750 -0.047166 0.091548 -0.191973 0.109380 0.057351 -0.025585 0.078812 0.287037 0.116756 -0.110792 -0.027730 0.092824 0.017959 -0.193675 -0.032392 -0.113780 0.106158 -0.157680 0.006283 0.093504 0.112514 0.022994 -0.021948 -0.045695 -0.107068 -0.161203 -0.081574 0.017280 0.051573 0.055943 0.163582 -0.000406 0.053051 -0.133670 0.049618 -0.076244 0.046360 0.093873 -0.166044 0.021487 -0.053510 -0.163128 -0.076568 0.067670 -0.015813 0.109939 -0.125857 -0.152072 -0.127595 -0.037108 -0.179976 0.113218 0.203320 -0.165006 0.148985 0.084507 0.196525 0.052211 0.098918 0.042871 0.057673 0.043289 -0.103376 0.133484 -0.114368 -0.053784 -0.062436 0.002080 -0.030543 0.075100 0.048642 -0.196034 -0.102486 0.063562 -0.077311 0.063060 -0.005346 0.126029 0.009690 0.135041 -0.060387 -0.088667 0.003309 0.011319 0.044246 0.019765 0.038255 0.170587 -0.076573 -0.171976 -0.148087 -0.018907 0.068679 -0.128215 0.146905 0.141552 -0.112458 0.128016 -0.001487 -0.094211 -0.009145 0.304183 0.159992 -0.081805 -0.078464 -0.139883 -0.133690 -0.015104 0.018121 0.264649 -0.133604 -0.015925 0.107133 -0.031579 0.007870 -0.176352 -0.012427 -0.029598 0.070687 -0.113979 -0.113556 -0.179732 -0.182946 -0.190192 -0.030366 -0.082714 0.115821 0.197312 0.086806 0.215137 0.014810 0.346582 -0.112462 -0.003910 -0.039313 -0.094190 -0.048104 0.206059 0.046925 -0.053603 -0.069414 0.113499 -0.006789 0.045457 0.148122 -0.115746 0.012225 -0.090100 -0.025464 0.216400 0.110764 0.057456 0.149989 0.061455 -0.241889 -0.052457 -0.012646 -0.005424 0.065931 -0.036430 0.035629 -0.090675 0.160704 -0.035383 -0.040639 -0.043480 -0.019443 0.005721 0.060877 -0.057063 0.067420 -0.120215 0.004380 -0.053442 0.041834 -0.191599 0.142362 -0.066164 -0.062620 -0.013211 -0.022540 0.151475 -0.011708 -0.033165 -0.048723 0.162486 0.212669 -0.065791 -0.126454 -0.051241 0.353006 0.028105 -0.021737 0.029705 -0.146095 0.133114 -0.105776 0.068957 0.008908 -0.121514 -0.034701 0.049156 -0.062077 0.128991 0.074343 0.050754 0.002290 0.013760 -0.062804 0.019533 0.013456 0.138289 -0.055916 0.077616 0.093659 -0.038723 0.216231 0.158229 0.114685 0.170275 0.023702 -0.013201 -0.063034 -0.175755 0.012721 0.216680 -0.114761 -0.031309 -0.134461 0.182024 -0.021258 -0.099931 -0.088366 -0.256494 -0.096306 -0.116697 -0.127987 -0.061689 -0.046661 0.075139 0.024144 -0.006162 -0.039371 0.060038 -0.069061 0.339919 -0.066448 -0.014135 0.161042 0.095985 -0.125894 -0.150625 0.201321 0.068805 -0.072643 0.186954 -0.191583 0.044055 -0.136963 -0.004908 0.160403 -0.124659 0.028476 0.077509 0.224321 -0.089124 0.228332 0.115996 -0.221120 0.054276 0.077247 0.127462 0.116837 -0.098003 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.086689 -0.647507 2.610509 1.578740 -0.225793 0.001111 1.312915 -1.082872 1.328305 0.393354 -0.372993 -0.093612 -1.503861 0.259452 -0.861198 0.937035 -1.724315 -1.107209 -0.453712 -1.289787 -0.149468 -0.778609 1.438791 -0.234092 1.514665 0.010542 -0.609245 -1.193247 -1.234959 -0.991098 1.312925 -0.535678 0.926281 -0.052301 -0.564223 -2.862488 1.394007 0.995645 -0.826998 -1.007163 1.336312 -0.592013 -0.148495 -0.348486 -0.278978 0.129648 0.151506 1.049469 1.264107 0.722008 0.660603 0.021980 0.450012 2.680206 -1.464821 0.655209 0.258997 -0.250190 -0.510098 0.566569 0.126469 0.039738 0.419421 0.619069 0.178204 -1.359061 -0.008934 -1.040678 -1.522449 1.180333 -0.350791 -0.098214 -0.889728 -0.000545 -0.840653 -0.140725 -0.889062 1.267012 1.820006 -1.097327 1.180104 -0.030490 -0.148989 -0.455307 -0.580634 0.368062 0.166858 0.176264 0.165357 -0.996523 -1.037554 0.015351 0.164341 -0.034504 -0.290756 -2.005141 1.385408 -0.649137 -1.328890 -0.017550 0.945323 -0.863969 -0.445339 0.294100 -0.100414 0.791616 -0.633957 -1.139923 -0.417509 0.208429 0.147735 0.067479 0.013053 -0.437711 -0.647801 -0.803310 -1.571552 0.372769 -0.650770 -0.577521 -0.654295 0.890407 -0.622544 -0.013246 0.459649 1.183387 -0.655600 1.232802 -0.076379 1.037082 0.747277 0.526115 -0.929387 -0.344570 1.193870 1.690944 -0.242083 0.080028 -1.041391 0.234352 -1.094254 -0.164546 0.084454 0.619131 1.040081 -1.474504 -0.855250 -0.062734 -0.024650 -1.773352 0.214483 -0.966431 -0.277397 0.472826 0.929542 0.882936 1.093885 2.329733 -1.339441 0.620566 0.005216 -0.849311 0.880748 0.073054 1.030873 -0.628320 -0.831921 -0.079191 0.203713 0.649731 -0.387372 0.323227 0.028206 -1.811907 -0.174082 0.108591 0.434320 -0.734435 0.491422 1.271746 0.981938 -1.474437 0.257426 1.400861 -0.610681 -0.285917 0.637016 -1.727356 0.672079 0.334287 -0.248262 0.925902 0.199351 -0.594231 0.774018 -0.917396 0.107667 -0.915752 -0.037993 -0.740039 -0.358081 -1.013495 0.018815 -0.530588 -0.738860 -0.320790 -0.410572 1.382849 -0.751903 -0.942752 1.351687 -0.045474 0.136879 -1.884571 2.558229 -0.848033 0.588499 -0.405875 -0.051473 -0.185807 0.583253 -1.118063 -0.109261 0.110100 -0.205476 1.199856 2.298894 0.923745 0.059730 -0.309546 1.801217 -0.526532 1.443661 -0.599567 1.034372 -0.453735 -1.256609 0.190268 -0.257110 -0.528353 -0.635214 0.573640 1.792964 0.836681 0.535215 1.438525 0.605920 1.944063 -0.430369 1.198213 -0.069651 1.233864 -0.270384 -0.395205 0.840708 0.674742 -0.751822 1.144493 -1.850905 -2.427452 -0.789906 -1.922144 0.380666 -1.030005 0.606236 -0.581594 0.000596 -1.791398 -1.097024 0.055981 -0.353525 0.929429 0.902369 0.156287 0.806734 1.420378 -1.026691 0.222442 0.338099 1.156175 0.289927 -0.822662 -1.002338 1.140718 -1.283239 -0.024373 1.783904 -0.778236 0.407338 -0.484731 1.120232 -1.470391 1.927999 0.362799 -0.471461 1.804272 0.874430 1.524386 0.768842 -0.590012 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.338556 -4.536883 26.586276 17.159617 -8.708451 2.716481 -3.130747 -13.087518 7.451423 1.442992 -5.596294 8.204085 -4.155023 3.620909 -5.691419 10.084986 -21.324185 -3.690660 -5.697174 -12.591882 -7.644485 -1.627259 -0.048165 4.567974 11.403725 11.271962 -7.853982 2.987992 -2.536955 -18.917483 -0.814387 -2.051325 4.024866 -2.334977 9.148279 -22.563598 16.305350 10.839745 -5.037503 -11.792979 6.809340 -3.752655 -2.786025 -3.034249 -5.549208 4.571935 1.134306 10.599316 7.784025 6.416506 -1.846675 5.860105 10.668266 22.334939 -0.818689 7.981788 8.364028 -4.412505 -1.257057 1.071400 1.968979 -1.093132 0.130830 -1.879701 3.423886 -15.409959 -1.983598 -3.220137 -0.517943 8.642903 1.108106 -11.983405 -8.716854 -10.299210 -12.768467 -2.504670 -19.638145 14.474243 12.724299 -12.335527 5.031222 1.888280 0.483494 4.343463 5.538077 0.297868 12.980576 5.024325 0.886034 1.245980 1.327225 -7.265708 7.967244 -6.148201 -9.866757 -25.513586 7.926075 -25.300350 -13.352062 6.595397 10.523411 -10.314328 0.614734 -6.382496 4.074621 1.507042 -3.948307 -5.676998 3.296124 4.782708 0.111047 -2.040295 -0.395992 -1.061068 1.972213 6.954831 -16.541780 11.073491 3.135520 3.856871 0.203468 10.682112 7.332650 -2.074203 -1.608153 7.187677 -5.237028 13.170815 -2.035682 9.594563 -9.908440 12.522647 1.083003 11.647858 6.747689 -13.257270 -6.084744 -2.036161 -4.198072 5.704915 -8.466486 5.959194 -10.630873 12.107356 6.860416 -3.907856 -11.060390 -7.149859 -15.624023 -13.040358 1.374624 -3.749479 -17.287041 4.263286 7.931854 9.111141 7.112621 -0.881298 -6.904892 -2.775274 -1.330092 0.854205 9.387742 -3.471361 7.239948 -7.774388 -3.673300 6.688530 1.183567 7.562555 0.029140 1.132386 5.002520 -7.888533 2.211541 9.843432 8.217024 1.023622 11.372452 13.747039 16.988751 -1.614533 -2.588237 6.907898 -8.910855 -2.838812 2.714453 -8.935917 2.037935 5.589963 8.735540 16.513821 0.071677 1.999379 4.303598 -0.362677 2.787410 -5.949406 0.479159 -5.601506 -1.545048 -1.889166 4.076054 -8.440880 -0.145278 -10.309747 -13.694710 15.256686 -24.263056 -6.762413 17.411971 -7.811660 8.191970 -9.940824 12.802306 -7.019212 9.917750 1.828377 -0.885203 1.182351 -8.481576 -14.269020 7.931082 3.545491 -1.957987 -0.262540 9.302623 6.320953 0.862588 -4.238934 10.969648 -10.713558 14.710464 -6.564916 11.915952 -5.023815 -1.438573 -4.185858 -0.101166 -9.613189 -4.914314 6.147875 4.724700 -3.292646 8.889076 2.408122 6.064299 11.401232 -7.432165 10.926034 -5.016424 0.063014 -8.974905 -8.638329 7.176456 7.371374 0.124432 3.042391 -18.369738 -10.508002 -28.109574 -5.949597 -1.668561 -4.243458 4.626258 -4.244512 -6.536213 -7.356530 -13.023370 22.872831 -0.219939 -1.436206 9.865763 1.450551 9.594424 10.884810 0.244626 2.138487 -4.304434 1.758751 5.433775 -2.505717 -12.297465 15.515759 -7.019535 0.329170 19.291196 -8.273183 9.014805 0.720715 4.336142 -11.785070 9.972223 1.568223 -10.936488 3.512009 17.016970 6.569489 -1.424153 -8.623706 -PE-benchmarks/strongly-connected-components.cpp__int** std::copy(int**, int**, int**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/strongly-connected-components.cpp__int** std::copy_backward(int**, int**, int**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.419898 -0.789415 3.800926 1.847715 -0.576490 -0.132586 1.963594 -1.787232 1.767039 -0.235445 -0.327607 0.154859 -2.499750 0.670283 -1.847678 1.134604 -2.661703 -1.873183 -0.772931 -2.063454 -0.910640 -1.209273 2.165608 0.046919 2.169219 0.297657 -1.024608 -1.500605 -2.079253 -1.761460 1.638382 -0.628288 1.119386 -0.171953 -0.353444 -4.175207 1.908217 1.134044 -1.243167 -1.286354 2.218483 -1.030959 -0.155886 -0.510537 -0.206724 0.179448 0.524602 2.016217 2.054591 1.134363 0.982836 0.141823 0.154248 3.858917 -2.152618 1.084121 0.850428 -0.128943 -0.819134 0.736588 -0.262725 -0.390302 0.354029 0.777321 -0.509340 -1.667725 0.230463 -1.734852 -1.939704 1.868040 -0.214616 -0.469647 -1.555816 -0.503391 -1.716069 -0.403185 -1.155797 1.769519 2.917802 -2.085875 1.484309 -0.101896 0.173865 -0.560011 -0.377078 0.240535 0.697154 0.123507 -0.095858 -1.443934 -2.079848 0.253390 -0.410207 0.113329 -0.224027 -3.318967 1.901486 -2.036909 -2.417112 0.042659 1.015478 -1.249015 -0.914223 0.664792 0.274612 0.804511 -1.178166 -2.077377 -0.749700 0.445930 0.131694 0.482387 0.463680 -0.689272 -0.861300 -1.243680 -2.805565 0.751492 -0.636373 -1.032634 -1.179043 1.576934 -0.878559 0.587843 1.081871 1.861725 -1.000232 2.235145 0.253261 0.921530 0.768168 0.601846 -1.375843 -0.137018 1.388472 2.291427 -0.966299 0.266840 -1.442177 0.158615 -1.927193 -0.529949 -0.509317 1.226630 1.348447 -2.357636 -1.896455 0.079013 -0.292468 -2.930227 0.664298 -1.531379 -0.940257 0.136218 0.999911 1.476360 1.379592 3.379013 -1.435005 0.985828 0.236545 -1.144112 1.251456 -0.103233 1.945647 -1.230015 -1.476390 0.108500 0.005859 0.736518 -0.510325 0.280207 0.151579 -3.090489 -0.769945 -0.018996 0.852428 -0.809285 1.017176 1.887675 1.416844 -2.190100 0.173672 1.963250 -1.039171 -0.408790 0.846376 -2.336392 1.054531 0.578027 -0.115784 1.792198 0.448917 -1.047757 1.554984 -0.824693 0.679875 -1.524856 -0.282725 -1.246735 -0.749330 -1.633744 0.166794 -0.688995 -0.852566 -0.464091 -1.237105 2.164801 -1.429127 -1.733127 2.187646 -0.168887 1.237334 -3.295009 3.390684 -1.133491 1.213072 -0.404724 0.380283 -0.284725 0.515256 -1.239100 0.488252 -0.069365 -0.186661 1.678036 3.282058 1.067468 0.702912 -0.088441 2.721493 -0.764212 2.045907 -0.702995 1.771840 -0.886121 -2.182101 0.657996 -0.170368 -0.950783 -0.726610 1.028787 2.623091 1.287559 0.685438 2.294408 1.305235 2.890388 -0.746542 1.470481 -0.384992 1.701873 -0.937205 -0.907811 1.172185 0.976855 -0.974371 1.443486 -2.831154 -3.990305 -1.632930 -3.611752 0.583548 -1.702736 0.842674 -0.855865 -0.207065 -2.481099 -1.348464 0.654998 -0.360482 1.944519 1.667773 0.429501 1.692695 2.764167 -1.608355 0.186701 0.848934 1.650815 0.166425 -0.900258 -1.812526 1.234035 -1.866134 0.195734 2.571412 -1.045094 0.733524 -0.988668 1.825901 -2.295004 2.917102 0.500927 -0.929243 2.811276 1.575232 2.276495 1.486992 -0.807383 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/strongly-connected-components.cpp__int** std::__miter_base(int**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_wrap(int** const&, int**) = -0.090136 -0.251670 0.665673 0.509658 0.030368 0.003709 0.406774 -0.220953 0.393630 0.224799 -0.085117 0.051449 -0.526169 0.141520 -0.091674 0.418338 -0.389413 -0.362875 -0.024780 -0.260554 -0.019499 -0.227089 0.454230 -0.126570 0.449235 0.018739 -0.174298 -0.425321 -0.459830 -0.245494 0.303470 -0.225265 0.310698 0.148860 -0.197899 -0.634567 0.340936 0.279286 -0.250621 -0.337564 0.396248 -0.287569 0.157239 -0.177316 0.109437 0.119384 0.123878 0.157670 0.411341 0.270522 0.267063 -0.039133 0.171094 0.542531 -0.479266 0.204592 0.074611 -0.078613 -0.182684 0.042665 0.061485 -0.014832 0.228665 0.179459 -0.107183 -0.424211 -0.220957 -0.330541 -0.491794 0.224334 -0.142919 0.123854 -0.429369 0.001636 -0.083077 -0.117905 -0.628931 0.307190 0.553311 -0.351609 0.393308 0.037424 0.013887 -0.147983 -0.043617 0.154007 -0.034152 0.055977 -0.052087 -0.169700 -0.212985 -0.014736 0.040242 0.084683 -0.032071 -0.364753 0.314037 0.103628 -0.423856 0.045942 0.198794 -0.097383 -0.190366 0.186357 -0.055215 0.368510 -0.276164 -0.421905 -0.053280 -0.064633 0.185791 -0.082095 -0.070826 -0.247038 -0.306672 -0.338632 -0.474719 0.010064 -0.169481 -0.302778 -0.189358 0.258555 -0.203777 0.043781 0.082727 0.258205 -0.199669 0.500601 0.038458 0.323210 0.286877 0.011251 -0.517531 -0.019947 0.389141 0.605772 -0.158639 0.137678 -0.352380 -0.029987 -0.284802 -0.104762 0.191893 0.266888 0.454954 -0.412470 -0.253271 -0.019003 0.042675 -0.509921 0.203803 -0.292160 0.251304 0.067860 0.292811 0.122047 0.393683 0.828355 -0.375705 0.130263 -0.028233 -0.211477 0.401908 0.255345 0.359787 -0.205479 -0.222717 0.073626 0.184323 0.031030 0.001289 0.143422 0.075074 -0.523005 0.040653 0.060764 0.099196 -0.275451 0.247786 0.222770 0.258208 -0.242693 0.074452 0.375127 -0.067884 -0.009206 0.143136 -0.496985 0.304870 0.051757 -0.136330 0.141528 0.055647 -0.252559 0.231491 -0.270406 0.090184 -0.272898 0.065583 -0.244234 -0.121551 -0.319621 0.072010 -0.074318 -0.322790 0.023237 0.109857 0.438939 0.099692 -0.104332 0.166440 -0.019879 0.001865 -0.498017 0.860477 -0.327613 0.124048 -0.237316 -0.065795 -0.015801 0.277561 -0.212674 -0.161406 0.135561 0.009106 0.256635 0.584540 0.280899 -0.068298 0.008200 0.471930 -0.014410 0.385079 -0.024315 0.342052 -0.098241 -0.153118 0.185040 -0.090391 -0.068971 -0.119351 0.007251 0.653107 0.287352 0.087608 0.406324 0.096045 0.579572 -0.201829 0.337433 -0.024723 0.499995 -0.085994 -0.081923 0.135821 0.181627 -0.144023 0.312688 -0.487224 -0.669958 0.110557 -0.427497 0.088505 -0.041319 0.144091 -0.118808 0.065925 -0.488332 -0.265606 -0.066094 -0.179108 0.277336 0.137182 0.049564 0.258432 0.356617 -0.267894 -0.103436 0.011339 0.244812 0.099444 -0.125328 -0.209650 0.255859 -0.439878 -0.039791 0.401399 -0.230304 -0.014202 -0.123677 0.477346 -0.328178 0.600661 0.101073 -0.072982 0.662805 0.346434 0.539656 0.107546 -0.171658 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_base(int**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -0.622467 -1.705876 3.777121 2.486801 0.064591 0.961322 0.695170 -1.112612 0.916424 0.860358 -0.815065 1.736122 -1.786196 0.237628 -0.771812 0.653714 -2.235442 -1.724952 -0.346149 -1.027496 -0.392434 -1.193756 -0.062740 1.678770 1.651829 0.437597 -1.424815 -0.073625 -3.103438 -2.810522 -0.166165 -0.470268 1.334984 -0.619793 1.005101 -3.291133 2.034901 2.305907 -0.269789 -2.428241 1.317262 -1.189370 -0.031603 -0.179539 -0.336916 1.219371 1.187866 0.401359 1.332629 0.874659 -0.020105 -0.112376 0.730395 2.364497 -0.545095 1.524915 1.413691 -0.910918 0.162830 -0.202551 -0.119884 -1.034690 0.748894 0.409782 -0.803500 -1.567183 0.263949 -0.297684 -1.203332 1.262377 0.195103 -0.874899 -1.305197 -0.786945 -2.549557 -0.357780 0.961068 1.422482 2.780427 -0.926030 2.252926 0.192578 0.916339 0.260262 1.274979 0.271211 1.349203 0.497021 -0.857141 -0.469486 -1.855459 -0.431700 -0.300132 1.408348 -0.882349 -1.139742 1.071246 -3.289929 -2.291620 0.870394 0.229192 -1.367075 -1.385804 0.028844 0.816538 1.206176 -0.526771 -1.896005 -0.417505 1.105791 -0.520379 -0.424686 0.454993 -0.949533 -0.652463 -0.350429 -2.104668 0.813573 0.770546 -0.701903 -1.034399 2.179354 -0.433738 1.052045 0.203532 1.350312 -0.659110 1.481365 0.494894 0.967568 -0.332784 -0.476272 -1.865184 -0.359253 0.605855 0.412307 -1.612385 -0.420166 -0.566911 0.617676 -0.688463 0.443203 -1.018806 2.115518 1.671316 -1.430428 -1.485426 -1.247709 -0.974398 -1.886242 0.032224 -0.683662 -1.687114 0.325095 1.461593 0.473889 0.829413 2.337032 -0.875532 0.468428 0.141192 -0.865887 1.210760 -0.929686 1.221171 -1.430355 -1.138847 1.177621 0.813616 1.096884 -0.011167 0.036690 0.626844 -1.504854 -0.632169 1.139065 0.871423 0.572992 2.121456 1.930648 2.206367 -1.268761 -0.349062 0.902082 -0.976052 -0.364740 0.247749 -1.835362 0.889975 0.826966 0.200011 2.755694 0.023618 -1.202534 1.470226 0.011652 0.679964 -1.772114 0.855721 -1.346953 0.374203 -0.870820 -1.025434 -1.160376 -0.877807 -1.716531 -1.382390 2.610670 -1.418115 -2.594963 1.524900 -0.479012 1.516407 -3.591229 1.497441 -1.342114 1.870972 0.103357 0.166684 0.042436 0.222355 -1.307355 0.782195 0.703370 -1.039389 1.580683 1.754152 1.005028 0.244822 -0.159543 1.621771 -0.426970 1.124090 -0.937192 0.991017 -0.662565 -0.448485 -0.219830 -0.373188 -0.255790 0.248702 0.205101 0.183801 0.916189 0.374336 0.993536 2.009358 1.373508 -0.668086 0.749651 -0.876626 1.598736 -1.214043 -1.362007 -0.002130 1.352456 0.368602 0.906421 -3.129151 -2.583584 -2.095688 -3.293060 -0.037688 -0.261516 0.506499 0.372339 -0.274838 -2.637660 -1.456180 1.988258 0.190116 2.728320 1.417725 0.190241 1.632070 1.478266 -0.562193 -0.494470 -0.163812 0.807443 -0.246836 -0.442314 -1.644135 1.517120 -1.996526 0.960860 2.482010 -1.528769 1.079848 -0.219177 0.884960 -2.526382 2.816417 1.040891 -1.892965 1.165069 1.262730 1.951685 -0.702807 -1.306113 -PE-benchmarks/strongly-connected-components.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.291919 -0.319830 1.009497 0.707594 0.045139 0.080284 0.436779 -0.457132 0.629958 0.318439 -0.039797 0.114417 -0.634983 0.186418 -0.191570 0.547185 -0.587095 -0.523927 -0.120595 -0.559319 -0.170707 -0.314788 0.494613 -0.153751 0.555747 -0.147598 -0.362559 -0.438846 -0.682188 -0.524410 0.423416 -0.298477 0.424336 -0.168270 -0.231671 -1.364413 0.610235 0.439073 -0.381182 -0.479098 0.514907 -0.446230 0.194284 -0.178378 -0.033535 0.094860 0.096446 0.019063 0.607694 0.304208 0.449840 0.130804 0.131766 1.126370 -0.725029 0.354213 0.099893 -0.162022 -0.357253 0.175670 0.070200 0.012920 0.379966 0.227338 -0.167129 -0.664177 -0.154960 -0.377971 -0.708739 0.376487 -0.153886 -0.075331 -0.436390 -0.029326 -0.345703 -0.291607 -0.422740 0.373188 0.796174 -0.483737 0.547095 0.002861 0.059735 -0.035370 0.108407 0.173652 0.268902 0.075649 -0.116920 -0.245076 -0.233546 0.099669 0.074332 0.317992 -0.087649 -0.584398 0.457323 -0.099170 -0.653845 0.149873 0.327519 -0.128909 -0.601343 0.010903 0.073861 0.420177 -0.416321 -0.647446 -0.233241 0.070786 0.133428 -0.139321 -0.042217 -0.538318 -0.331261 -0.414147 -0.699325 0.064680 -0.157220 -0.309072 -0.508698 0.504549 -0.341659 -0.037585 0.089535 0.478237 -0.374297 0.616671 -0.122187 0.489890 0.169675 0.048814 -0.884720 -0.225443 0.432223 0.723348 -0.202332 0.029618 -0.547274 0.006530 -0.510643 -0.008959 0.113026 0.478298 0.715234 -0.453093 -0.357837 -0.040403 0.095851 -0.843774 0.206837 -0.423896 0.062700 0.118400 0.461628 0.269656 0.569625 1.067144 -0.428670 0.339053 -0.088256 -0.336354 0.667144 0.033201 0.533890 -0.337995 -0.354099 0.097212 0.241447 0.172004 0.007761 0.121451 0.070725 -0.718238 -0.083464 0.036530 0.196778 -0.238055 0.357491 0.408179 0.795339 -0.666815 0.165520 0.515936 -0.185023 0.037649 0.107105 -0.643668 0.225783 0.223632 -0.258966 0.443705 0.059148 -0.474859 0.203482 -0.267871 0.202883 -0.416833 0.116341 -0.359066 -0.104630 -0.370793 -0.132036 -0.269635 -0.374544 -0.152690 -0.130284 0.677113 -0.204938 -0.444352 0.513511 -0.062062 0.123411 -0.937584 1.125653 -0.485272 0.345339 -0.443020 -0.016080 -0.103832 0.497023 -0.430581 0.109056 0.198231 -0.171243 0.416671 0.968610 0.410301 0.129591 -0.123630 0.710085 -0.077050 0.544473 -0.143013 0.646633 -0.187018 -0.317072 0.161015 -0.158424 -0.110865 -0.161605 0.160299 0.618105 0.440436 0.083997 0.439544 0.386421 0.781162 -0.291051 0.525442 -0.065870 0.574371 -0.121160 -0.144312 0.253594 0.311995 -0.154337 0.374063 -0.772160 -0.880756 -0.150900 -0.733390 0.215882 0.097188 0.081466 -0.138173 0.064993 -0.786509 -0.352433 0.176191 -0.246757 0.595915 0.256291 0.163761 0.401495 0.614402 -0.385336 -0.156111 -0.047891 0.188800 0.096366 -0.260978 -0.402826 0.515288 -0.593723 0.061929 0.567316 -0.291550 0.064871 0.030645 0.465856 -0.477319 0.870836 0.156428 -0.093233 0.883849 0.505468 0.857706 0.079588 -0.268693 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -0.564241 -2.009305 4.351602 2.944994 -0.148244 1.099376 0.796985 -1.235459 0.960141 1.017331 -0.782166 2.060076 -1.992748 0.023091 -0.535952 0.757546 -2.627262 -1.772958 -0.447262 -1.160257 -0.427793 -1.244784 -0.327199 2.178549 1.897583 0.688883 -1.534129 -0.007277 -3.217369 -3.316117 -0.493413 -0.420302 1.545425 -0.647668 1.464377 -3.776693 2.368978 2.808328 -0.272268 -2.862196 1.383163 -1.122066 0.063065 -0.274244 -0.683202 1.469164 1.389922 0.522704 1.318985 1.027944 -0.314087 -0.074728 1.286812 2.629294 -0.160507 1.788839 1.836338 -1.032845 0.328315 -0.429145 -0.053028 -1.239181 0.765159 0.095936 -0.736152 -1.770399 0.126693 -0.221410 -1.239519 1.269410 0.386497 -1.179858 -1.603817 -1.116814 -3.206761 -0.494412 0.775640 1.686876 3.067352 -1.277924 2.505826 0.475915 0.911063 0.525997 1.533197 0.307108 1.537672 0.643195 -0.853812 -0.032072 -2.011072 -0.926683 -0.151629 1.163238 -1.228480 -1.999426 1.195079 -4.080886 -2.710400 1.221773 0.340615 -1.681333 -1.457228 -0.437935 0.910590 1.384876 -0.699342 -2.053169 -0.434303 1.259804 -0.533817 -0.509993 0.596670 -0.661188 -0.485059 -0.171847 -2.471476 1.126736 1.109820 -0.634800 -0.856414 2.491124 -0.290959 1.369792 0.131969 1.401706 -0.766973 1.734376 0.705914 1.117606 -0.643316 -0.425087 -1.588606 -0.484626 0.541635 0.076531 -1.618102 -0.672190 -0.530655 0.893041 -0.508501 0.906930 -0.991000 2.411709 1.660290 -1.314176 -1.577934 -1.640608 -1.715625 -2.062014 0.152994 -0.551343 -1.955493 0.703938 1.611778 0.301343 0.766672 2.040276 -0.805815 0.160947 0.060962 -0.887024 1.236660 -1.008878 1.328811 -1.507880 -1.223214 1.447743 0.965029 1.634171 0.046757 0.055793 0.827014 -1.332790 -0.687303 1.035180 0.934050 0.535373 2.497703 2.301005 2.455496 -0.926195 -0.579555 0.826639 -1.112743 -0.304243 0.230191 -2.012901 0.925788 0.879792 0.214408 3.183076 -0.085720 -1.106049 1.891678 0.026022 0.639752 -1.969964 0.968031 -1.559024 0.435383 -1.006214 -0.947046 -1.504282 -0.934399 -2.218911 -1.668479 3.057490 -1.826364 -2.673124 1.682184 -0.452028 1.802399 -3.744764 1.865533 -1.350538 2.214344 0.238789 -0.011820 0.288362 -0.090530 -1.473743 0.580936 0.808784 -1.235361 1.412636 1.637161 1.058898 0.045929 -0.178024 1.710395 -0.612543 1.406954 -1.271436 1.177811 -0.876685 -0.350113 -0.355046 -0.327770 -0.190265 0.302033 0.211917 -0.034105 0.688843 0.524163 0.871813 2.182314 1.369842 -0.829876 0.830379 -0.812932 1.694046 -1.520795 -1.432268 -0.111535 1.668006 0.525257 1.089242 -3.549384 -2.561265 -2.676812 -3.298028 -0.330328 -0.034148 0.599610 0.431325 -0.495922 -2.746144 -1.851989 2.646421 0.234491 2.217776 1.712889 0.232259 2.049222 1.612904 -0.322648 -0.530634 -0.122181 0.748131 -0.161189 -0.506792 -1.795440 1.748736 -2.245861 1.070925 2.869894 -1.710717 1.396919 -0.503967 1.110486 -2.896488 3.104336 1.062704 -2.338294 1.031535 1.902082 2.082244 -1.135976 -1.510736 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::deque() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_base() = -0.422402 -0.197699 1.578721 0.432520 -0.654569 -0.278359 0.828702 -0.684907 0.741040 -0.587305 -0.069896 -0.352785 -1.158898 0.231582 -0.375751 0.239878 -1.352828 -0.777384 -0.335529 -0.914970 -0.588688 -0.661828 1.098424 0.064967 0.709024 0.557120 -0.236500 -0.456767 -0.168416 -0.660461 1.041829 -0.296115 0.498303 0.730042 0.113278 -2.211142 0.697866 -0.155943 -0.529982 -0.284969 0.833505 -0.009375 0.031077 -0.172694 -0.318407 0.187853 0.441783 1.216086 0.883214 0.528279 0.294716 -0.537566 -0.154844 1.388754 -0.784517 0.191098 0.410752 -0.183390 -0.311405 0.201939 -0.293096 -0.410741 -0.052605 0.566578 -0.329223 -0.335616 0.482177 -1.141145 -1.082904 1.011277 -0.034434 -0.130676 -0.666620 -0.578806 -0.545350 -0.184712 -0.483994 0.896938 1.442675 -1.052777 0.500869 0.054700 0.234726 -0.283442 -0.443333 0.043194 0.304552 -0.057313 -0.212601 -0.346911 -0.818999 -0.283989 -0.445962 -0.089760 0.288433 -1.305546 0.702399 -0.892948 -0.834164 0.096229 0.297273 -0.255677 -0.644578 0.240985 0.277811 0.207099 -0.523896 -0.901667 -0.508994 0.043572 -0.091539 0.756797 0.218517 0.286993 -0.518202 -0.587141 -1.311783 0.219889 -0.377817 -0.632879 -0.210063 0.575970 -0.570283 0.543570 0.839111 0.835237 -0.457280 1.360557 0.581974 0.100210 0.437179 0.020069 -0.200526 -0.166813 0.431468 1.332076 -0.092785 -0.288545 -0.479025 -0.078188 -1.030862 -0.531806 -0.053369 0.247071 0.792872 -1.004508 -1.098541 0.217996 -0.410887 -1.705683 0.444745 -0.955695 -0.133691 0.533183 0.099938 0.871802 0.422332 1.539919 -0.781979 0.583196 -0.199135 -0.577375 0.039567 0.409038 0.955200 -0.447180 -0.485594 -0.177170 -0.267040 0.286278 0.018631 -0.580918 0.036532 -1.532293 -0.671626 0.102929 0.446559 -0.285421 -0.075916 0.752641 0.590257 -0.722391 -0.140908 0.938068 -0.208174 -0.414248 0.655302 -0.879508 0.576523 0.041511 -0.228313 0.409574 0.194467 -0.300442 0.777981 -0.411843 0.266335 -0.583081 -0.425670 -0.419118 -0.067458 -0.949106 0.212779 -0.493404 -0.224631 0.117853 -0.401884 0.782297 -0.542744 -0.702432 1.058329 -0.076832 1.065365 -1.276375 1.396817 -0.234714 0.790724 -0.298949 0.102096 -0.310461 -0.330820 0.129475 0.187438 -0.389217 0.395999 0.363507 1.411705 0.324302 0.360716 0.275796 1.317968 -0.177122 0.835647 -0.072947 0.571471 -0.538412 -0.849452 0.492465 0.071506 -0.432427 -0.285219 0.460013 1.158563 0.691180 0.167923 1.329459 0.448964 0.986867 -0.182765 0.284756 0.003533 0.929303 -0.585991 -0.349637 0.530061 0.741875 -0.767078 0.408280 -1.026774 -1.947016 -0.891461 -1.654972 -0.458732 -0.661480 0.420984 -0.370644 -0.034472 -0.494953 -0.204740 0.400812 -0.025835 1.034612 0.627723 0.132632 0.978715 1.640153 -0.792396 -0.318365 0.818313 0.737428 -0.165706 0.097182 -1.097576 0.241356 -0.790190 -0.022124 1.062404 -0.411677 0.167429 -0.695054 1.212798 -1.122848 1.229954 0.251464 -0.354252 1.336539 0.501885 0.684617 1.235296 -0.170472 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.020613 -0.364075 1.593080 1.020165 -0.051065 0.142324 0.484059 -0.919230 0.989565 0.194864 -0.236380 0.171933 -0.856262 0.358357 -0.995030 0.739344 -1.047357 -0.750437 -0.330132 -0.931333 -0.302451 -0.451216 0.704002 -0.185208 0.868731 -0.068916 -0.539793 -0.401772 -1.099846 -0.804952 0.565734 -0.359587 0.336985 -0.538736 -0.229366 -1.353181 1.017071 0.762517 -0.589968 -0.692429 0.780112 -0.750590 -0.015251 -0.350089 0.062380 0.041918 -0.035491 0.506484 0.890565 0.389274 0.547669 0.446111 0.161264 1.786603 -1.088617 0.623121 0.226269 0.044018 -0.362253 0.465406 0.078220 0.174098 0.281386 0.288281 -0.127991 -1.017475 -0.243165 -0.468027 -0.617186 0.712845 -0.334582 -0.235839 -0.694353 -0.058565 -0.878023 -0.248542 -1.162538 0.675532 1.145755 -0.835862 0.606633 -0.013956 0.113090 -0.026372 0.166473 0.164178 0.560610 0.178190 -0.068806 -0.478503 -0.528139 0.341139 0.182616 -0.085363 -0.341132 -1.473725 0.782459 -1.043940 -1.078623 0.099455 0.584480 -0.451277 -0.196238 0.184241 0.096297 0.324665 -0.570040 -0.869314 0.015278 0.251668 0.245006 -0.148027 0.207281 -0.715385 -0.159998 -0.393450 -1.128095 0.264850 -0.223815 -0.283019 -0.547046 0.799313 -0.171105 -0.181463 0.112115 0.632379 -0.460402 0.854924 -0.340521 0.735447 -0.115814 0.559712 -0.991562 0.243183 0.691971 0.414527 -0.468840 0.459965 -0.653902 0.116917 -0.835265 -0.048263 -0.425501 0.509312 0.421311 -0.840187 -0.573189 -0.083137 -0.135078 -1.107279 0.212127 -0.497928 -0.663862 -0.165162 0.711976 0.749597 0.861216 1.230996 -0.555491 0.163581 0.037364 -0.306962 0.968285 -0.301686 0.752475 -0.508442 -0.631043 0.238087 0.166476 0.230258 -0.101561 0.298039 0.072124 -1.138021 0.161147 0.127703 0.417660 -0.358242 0.779089 0.756289 0.394362 -0.997411 0.320007 0.815047 -0.445736 0.057868 0.092604 -0.995376 0.381506 0.421589 0.181362 0.738229 0.125404 -0.364715 0.308949 -0.354757 0.419079 -0.646995 -0.086848 -0.542950 -0.455075 -0.528155 0.259390 -0.265023 -0.430790 -0.300937 -0.616643 0.945764 -0.829894 -0.493037 1.027688 -0.032910 0.248490 -1.075782 1.219556 -0.699274 0.642423 -0.101999 0.249558 -0.042185 0.475365 -0.890039 0.212849 0.288269 -0.324114 0.734613 1.195460 0.598837 0.292793 -0.185049 1.087589 -0.502962 0.856772 -0.392864 0.913342 -0.248594 -0.810273 0.248991 -0.241697 -0.397330 -0.395769 0.498400 1.077055 0.460527 0.420484 0.695258 0.509942 1.278097 -0.454620 0.815339 -0.266199 0.420141 -0.321167 -0.321030 0.489579 0.207072 -0.250329 0.514057 -1.256972 -1.399395 -0.898924 -0.982727 0.570118 -0.683105 0.135115 -0.330772 -0.033840 -1.171094 -0.767243 0.514462 -0.378940 0.462991 0.566839 0.251189 0.519853 0.978343 -0.580168 0.176771 -0.019762 0.453260 0.216222 -0.485425 -0.691979 0.919538 -0.768178 0.045510 1.069903 -0.498437 0.268222 0.121392 0.370215 -0.729948 1.116842 0.240082 -0.279122 1.109166 0.909468 1.197937 0.400953 -0.475299 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 2.600057 -2.661362 16.754493 9.820825 -7.214981 0.473741 0.523615 -7.703761 5.166541 -0.579161 -3.341148 2.315033 -4.030648 1.770260 -1.255421 5.725668 -14.852132 -2.499169 -2.853623 -7.952815 -4.223466 -2.061768 2.497999 1.850270 7.204182 7.506006 -3.512069 -0.407506 1.073345 -8.888694 3.484843 -2.078115 3.577476 2.612357 4.614758 -19.293632 9.425115 4.137254 -3.752859 -6.589864 4.713877 -1.147829 -1.121467 -2.691130 -4.618231 2.223239 0.956015 9.284653 5.161896 3.968835 -1.903345 0.984852 5.634067 15.355938 -1.643443 3.575692 4.434774 -3.373704 -1.734068 0.783494 1.388178 -1.074305 0.503560 0.428786 2.256938 -8.851371 -0.229728 -5.073083 -3.195534 6.153317 1.175794 -5.351382 -5.686346 -5.991297 -6.265266 -1.631363 -12.718636 10.697472 8.983966 -8.604174 3.810435 1.035288 0.192259 1.487689 1.004136 0.850704 6.821498 2.488576 0.568733 0.454167 -0.586104 -6.185501 4.572852 -5.393400 -4.008398 -17.254824 4.987395 -12.062286 -7.342809 3.597878 6.801980 -5.771595 -0.581067 -3.840569 2.389824 1.696832 -3.343663 -4.075564 0.198503 1.870560 -0.716442 0.562487 -0.519580 1.929445 -0.582908 1.385056 -10.420466 5.937000 0.462747 1.131069 1.104033 5.970182 2.299401 -0.865943 0.591027 4.593539 -3.907537 9.894419 -0.103480 5.103152 -2.680976 6.467342 1.880697 5.224288 5.080184 -1.999141 -1.262313 -3.279013 -3.009130 3.132408 -6.237790 1.736392 -3.198418 6.393808 5.327877 -3.339504 -7.098795 -3.480439 -8.448991 -10.277863 1.721216 -3.932212 -7.054156 5.771105 4.461295 6.523261 4.578808 1.443891 -6.411084 0.580852 -2.341129 -0.330768 4.445162 1.226303 5.108882 -4.418209 -1.782272 2.036253 -0.330202 5.375851 -0.059196 -0.949123 2.673821 -6.445050 -0.642706 4.889029 5.512405 -0.622690 4.207552 8.641580 10.320043 -2.285070 -1.778160 5.744802 -4.595705 -2.807945 3.589072 -6.266516 2.392132 2.476575 2.844311 8.097185 0.055281 0.605923 2.820512 -1.717370 0.555624 -3.405288 -1.271212 -3.264092 -0.698958 -2.973495 3.103600 -5.972943 -1.110175 -4.993712 -6.682483 9.168082 -13.481723 -4.012677 10.927084 -5.016933 5.860077 -6.952479 11.473315 -3.840325 5.813872 -0.792683 -1.831782 -0.277842 -5.397813 -7.451160 3.585737 0.721557 0.579704 -0.598695 8.090985 4.315347 0.285995 -2.025766 8.396850 -5.523821 9.327897 -3.560940 7.096572 -3.859600 -1.408106 -1.556172 0.120093 -5.328321 -3.139530 4.396994 5.906634 -0.747814 5.868086 4.558547 3.282016 7.363763 -4.080109 6.070010 -2.188674 2.222618 -4.757644 -4.605199 4.765187 5.994708 -2.223948 2.466104 -11.072031 -9.359889 -16.192874 -4.345623 -2.910599 -2.778902 3.634302 -3.134628 -2.964187 -4.619518 -6.486193 10.761279 -0.700928 -0.652233 5.836053 0.449627 6.679699 8.394831 -1.598439 0.112907 0.250352 2.768528 2.664134 -0.706248 -8.835908 8.686481 -5.771589 -0.042387 12.402166 -4.813110 4.258055 -1.586552 6.796460 -8.021188 7.243462 1.225741 -6.420572 3.748395 10.206864 3.332260 2.544038 -4.591536 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.239800 -0.366758 1.501886 1.113580 -0.692877 -0.018134 0.100848 -0.524864 0.717943 -0.190231 -0.349488 0.125421 -0.583271 0.320870 0.351930 0.759143 -1.680434 -0.382737 -0.007714 -0.499923 -0.302800 -0.324913 0.464766 0.009424 0.633615 1.127585 -0.298512 -0.198651 0.219239 -0.338182 0.795000 -0.522568 0.586338 1.231812 0.271080 -2.284438 0.865990 0.067155 -0.434092 -0.737255 0.365322 -0.422296 0.280551 -0.838626 -0.336706 0.313051 0.298919 1.071038 0.672737 0.349942 -0.419516 -0.218130 0.482380 1.296011 -0.435697 0.211818 0.350939 -0.473873 -0.275134 -0.177458 0.251466 -0.090651 0.366405 0.401804 -0.089756 -0.937189 -0.293132 -0.946203 -0.739418 0.619542 0.143898 0.247590 -0.935199 -0.318607 -0.307405 -0.233297 -1.753006 1.285873 1.154773 -0.986823 0.553808 0.158197 0.248281 0.062003 0.137349 0.329117 0.618322 0.271144 -0.233449 0.188142 -0.256917 -0.900903 0.502253 -0.756907 -0.010949 -1.514194 0.162643 -0.643047 -0.634829 0.332017 0.536594 -0.090518 -0.184545 -0.332538 0.415782 0.520494 -0.471119 -0.549738 0.163937 -0.233847 -0.071689 -0.039532 -0.155958 0.273940 -0.366015 -0.373730 -1.137426 0.187256 -0.101550 -0.203256 0.428169 0.576668 -0.075259 -0.110656 -0.023413 0.221705 -0.424270 1.391196 0.057996 0.430389 0.280745 0.240461 0.104027 0.542658 0.675915 0.716666 -0.055676 -0.425754 -0.421957 0.206949 -0.771990 -0.381597 0.338918 0.546549 0.749515 -0.397586 -0.739482 -0.385279 -0.621906 -1.226301 0.372846 -0.619815 0.133233 0.943941 0.622185 0.563874 0.798322 0.492430 -0.925382 0.252611 -0.489063 0.140262 0.717033 0.979555 0.644943 -0.376004 -0.042749 0.279656 -0.028064 0.340185 0.161151 -0.324687 0.325477 -0.775426 -0.117184 0.611129 0.610610 -0.129012 0.348052 0.492119 0.691425 -0.198590 -0.018182 0.709146 -0.060144 -0.233189 0.483889 -0.672819 0.670556 0.061123 -0.032582 0.258903 -0.058424 -0.277988 0.103464 -0.139970 0.054134 -0.277219 -0.312793 -0.255241 -0.079039 -0.537396 0.604008 -0.545609 -0.443362 -0.281953 -0.106343 0.969096 -0.834341 -0.140371 0.833792 -0.674128 0.752426 -0.682177 1.317115 -0.615142 0.531489 -0.422938 -0.466899 0.010720 -0.609254 -0.545974 0.020276 0.296327 0.273411 -0.275055 0.706705 0.641645 -0.041821 0.070250 0.856462 -0.073191 0.862736 -0.010381 0.611150 -0.377876 0.262263 0.142169 -0.110969 -0.219782 -0.179039 0.319844 1.179288 0.244027 0.743070 0.910088 0.182581 0.720597 -0.552943 0.340624 -0.211925 0.614202 -0.401949 -0.271806 0.228204 0.637193 -0.331438 0.360074 -0.985455 -1.269527 -1.136674 -0.147781 -0.565043 0.063852 0.338110 -0.231020 0.074397 -0.519839 -0.347016 0.462989 -0.274336 0.074650 0.356166 -0.054486 0.667493 0.827374 -0.385218 -0.598024 0.235475 0.321640 0.198862 0.365337 -1.176847 0.873509 -0.812494 -0.009755 1.238717 -0.638918 -0.040433 -0.352490 1.510141 -0.563071 0.976244 0.253001 -0.648078 0.612501 0.966608 0.411864 0.606199 -0.494874 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator() = 0.211826 -0.331391 1.575723 1.170397 -0.523758 -0.035794 0.382275 -0.537557 0.871916 0.251829 -0.256719 0.012387 -0.608315 0.232965 0.666552 0.951341 -1.493004 -0.358599 0.086479 -0.683057 -0.298387 -0.293532 0.473896 -0.270181 0.762142 0.701829 -0.163317 -0.533664 0.221896 -0.397635 0.767920 -0.561760 0.571313 1.064961 0.218537 -2.335901 0.912908 0.026112 -0.499029 -0.708294 0.399385 -0.393482 0.443626 -0.579656 0.039830 0.369607 0.408871 1.111775 0.810348 0.563677 -0.122680 -0.310595 0.558678 1.449022 -0.600415 0.222711 0.214618 -0.595153 -0.352664 0.059650 0.204827 -0.218879 0.410124 0.286077 -0.017831 -1.020033 -0.327823 -0.910682 -0.799012 0.500876 0.260690 0.053721 -0.985366 -0.316204 0.006765 -0.384359 -2.584899 1.220747 1.117117 -1.003705 0.656685 0.265078 0.256401 0.052347 0.151734 0.323759 0.583649 0.177674 -0.285924 0.172461 -0.281475 -1.020740 0.517086 -0.738891 0.047451 -1.482888 0.170893 0.050283 -0.668280 0.428133 0.595220 -0.022055 -0.384353 -0.285666 0.354108 0.565106 -0.534972 -0.636022 -0.006451 -0.297423 -0.143968 -0.043181 -0.234247 -0.123577 -0.475976 -0.409688 -1.101717 0.195123 -0.139740 -0.191363 0.043250 0.601054 -0.130170 -0.151643 0.027702 0.343515 -0.468414 1.328393 0.094381 0.595790 0.532172 0.130504 -0.612555 0.658156 0.775007 0.782970 0.186797 -0.248119 -0.563555 0.192259 -0.844008 -0.070984 0.580108 0.853011 0.961511 -0.425196 -0.682530 -0.284678 -0.270290 -0.978657 0.627698 -0.592499 0.386118 0.573554 0.609675 0.547275 0.823669 0.427486 -1.017191 0.330474 -0.630635 0.204224 0.793975 1.103340 0.753607 -0.422049 0.128189 0.046125 0.251053 0.180931 0.158736 -0.280453 0.412109 -0.857215 0.000647 0.326461 0.439037 -0.401170 0.333819 0.531643 1.227577 -0.345727 -0.086132 0.750854 -0.108681 -0.236637 0.556853 -0.680744 0.659998 0.093610 -0.155219 0.251169 -0.025217 -0.307416 0.071643 -0.237928 -0.041005 -0.143116 -0.314052 -0.283385 -0.275564 -0.336645 0.622882 -0.714722 -0.538110 -0.180921 0.136983 0.956057 -0.355117 -0.060912 0.764316 -0.983929 0.362859 -0.667944 2.051064 -0.680884 -0.018171 -0.769275 -0.542865 -0.166683 -0.008041 -0.551883 0.040075 0.258234 0.245320 -0.089257 0.981904 0.661238 -0.007759 0.032630 0.940091 -0.156909 0.838759 0.048465 0.765323 -0.493762 0.429453 0.036870 -0.070225 -0.153736 -0.141170 0.197306 1.177233 0.197946 0.452980 0.718798 0.180628 0.731072 -0.524334 0.592096 -0.157053 0.734140 -0.357600 -0.237907 0.339601 0.388223 -0.292218 0.398037 -1.048268 -0.981054 -0.536275 0.026781 -0.496121 0.443754 0.291788 -0.194833 0.105832 -0.681483 -0.337442 0.254586 -0.239677 -0.501266 0.269364 -0.050903 0.657413 0.808893 -0.222592 -0.643777 0.003522 0.126458 0.233642 0.090680 -0.897894 0.883261 -0.934167 0.003113 1.075712 -0.518830 -0.141316 -0.355723 1.605666 -0.626230 0.890491 0.147127 -0.408083 0.720401 1.267271 0.743210 0.249396 -0.416715 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.839070 -0.824392 4.838994 2.031926 -1.090945 -0.051139 2.343173 -2.355453 2.925860 0.165827 -0.752489 -1.150385 -3.106682 -0.051968 -0.331548 0.688543 -3.941018 -2.213945 -0.805272 -2.693114 -1.108443 -2.398843 2.357673 0.067446 2.202341 1.036967 -0.765304 -0.850071 -1.329529 -2.466170 2.775441 -0.946007 1.497564 1.743769 0.453099 -5.832529 2.791144 0.825161 -1.134723 -1.463970 1.797844 -0.503707 -0.259737 0.037612 -0.094836 0.979333 0.867471 3.259587 2.742204 1.031811 1.076364 -1.790851 -0.553724 3.654037 -2.325370 0.894818 0.391537 -1.209736 -0.782230 1.321923 -0.378774 -0.939633 0.618182 2.094379 -0.742519 -1.429502 2.076826 -2.344378 -3.352779 3.249856 0.305575 -1.063890 -1.497181 -1.176142 -1.347571 -0.294652 -0.330442 2.513020 4.083738 -1.565458 2.324286 0.261934 0.745269 -1.065615 -0.705875 -0.108124 2.186396 -0.201086 -0.849603 -1.617064 -3.080560 -1.526662 -0.574000 0.591086 0.454273 -1.869874 1.800310 -2.299861 -2.479173 -0.084976 1.229140 -1.127104 -2.646402 1.224553 1.229293 0.583028 -0.332127 -2.574048 -1.422661 0.659977 -1.875254 1.429015 0.123045 -0.090265 -1.782949 -1.160457 -3.023193 0.317706 -1.050470 -1.256589 -1.335886 2.039234 -1.809717 0.667159 1.805702 2.268245 -0.806601 2.306887 0.532534 1.092086 1.850320 -0.138511 -1.499655 -0.835396 1.297805 3.130609 0.345039 -0.987809 -1.169319 0.357568 -3.142732 -0.560527 -0.747527 1.496348 2.449105 -3.063968 -2.296468 0.329345 -0.512960 -3.952196 0.815553 -2.205328 -0.868043 0.411748 1.333561 2.484768 1.334318 4.044920 -3.049299 1.860814 -0.484063 -1.393834 0.689711 0.789598 2.362727 -1.458578 -1.021772 -0.659139 -0.101945 1.076433 -0.502957 -1.315550 -0.234688 -3.960960 -1.948929 0.682163 0.605907 -0.109195 0.118809 2.695557 3.191634 -3.419765 0.311773 2.915469 -0.381318 -1.322291 1.959366 -2.848122 1.601735 0.408689 0.072927 1.981780 0.275923 -0.934601 1.055131 -1.001458 0.395068 -2.133632 -0.810801 -1.262740 0.590777 -2.026852 -0.102625 -1.957426 -1.257305 -0.452788 -0.836365 2.393470 -0.443869 -3.451182 3.838462 -1.236066 2.391281 -3.985167 3.381375 -1.183716 1.158006 -1.522251 0.170576 -1.007691 -0.150796 -0.803876 0.853938 -0.707910 0.378844 2.319097 4.181486 1.421074 1.103946 -0.118316 3.436099 -0.697951 2.118277 -0.943371 1.647423 -1.094963 -1.701555 0.305914 -0.415475 -0.838474 -0.375790 0.740584 2.573814 2.534052 0.339438 3.320965 1.245877 2.467064 -0.384680 1.554290 0.320712 2.191508 -0.955467 -1.155934 1.759140 1.353663 -2.078169 1.545560 -3.544223 -4.817753 -0.997692 -5.011160 -1.072251 -1.737777 1.419333 -0.247803 0.183538 -2.412305 -0.982056 1.134898 0.420338 3.637315 1.174039 0.109054 1.936923 3.822821 -2.084235 -0.479739 1.337567 1.827103 -0.735465 -1.117882 -2.797572 1.888879 -2.466053 0.803876 3.267767 -1.753382 0.626864 -2.297131 3.123195 -3.772714 3.263429 0.989621 -0.949576 3.026365 0.690761 2.940407 2.321585 -0.993627 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::empty() const = 0.529537 -0.209094 1.822897 1.211108 -0.646151 0.072147 -0.161702 -0.998133 0.734940 -0.067615 -0.431919 0.276326 -0.355492 0.352911 -0.603589 0.833457 -1.538249 -0.275203 -0.437378 -0.967629 -0.492000 -0.104607 0.273583 -0.048828 0.836137 0.859317 -0.425506 0.121098 -0.101518 -1.061425 0.243104 -0.229972 0.173298 0.092486 0.435287 -1.274429 1.160046 0.641950 -0.511691 -0.716766 0.506598 -0.392648 -0.166062 -0.431208 -0.143459 0.267408 -0.050281 0.935811 0.653055 0.497173 -0.023421 0.419421 0.655512 1.531542 -0.348153 0.495476 0.463582 -0.156952 -0.142828 0.229046 0.157114 0.124184 -0.067458 -0.055624 0.283384 -1.164925 -0.354162 -0.464640 -0.040132 0.665927 -0.166959 -0.630720 -0.756648 -0.649770 -0.803376 -0.160377 -2.438466 1.090704 0.900966 -1.078516 0.237614 0.118913 -0.009151 0.227806 0.228157 0.110872 0.779000 0.359099 0.142295 0.122020 0.158236 -0.457427 0.650011 -0.827789 -0.643900 -2.016666 0.649211 -1.666810 -0.876218 0.351494 0.838186 -0.606186 0.339365 -0.242117 0.088199 0.090434 -0.396198 -0.375425 0.469572 0.171716 0.279217 -0.063339 -0.002909 -0.016655 0.112973 0.312029 -1.254428 0.722625 -0.014612 0.228627 0.161386 0.685494 0.544360 -0.382898 -0.110532 0.411677 -0.436043 1.203171 -0.300620 0.746236 -0.629340 1.099138 -0.107606 1.077274 0.709741 -0.737863 -0.374961 0.194662 -0.361451 0.293120 -0.810412 0.180999 -0.686302 0.578224 0.359860 -0.450580 -0.763239 -0.351013 -1.063399 -0.993448 0.175563 -0.345897 -1.038863 0.247389 0.599493 0.951946 0.719291 0.160395 -0.612606 -0.379631 -0.182077 0.064067 0.757640 0.020186 0.586801 -0.469885 -0.239995 0.421968 -0.043178 0.365255 0.098160 0.129357 0.322407 -0.788614 0.422419 0.731365 0.598639 -0.216344 0.775400 0.926626 0.473832 -0.126196 -0.039382 0.661898 -0.573146 -0.157789 0.275049 -0.664815 0.305278 0.345357 0.683703 0.767627 0.048382 0.322153 0.171587 -0.221491 0.229339 -0.348640 -0.261531 -0.346049 -0.333056 -0.273313 0.740687 -0.458281 -0.115260 -0.424984 -0.862562 0.949086 -1.535304 -0.046376 1.207601 -0.459033 0.427140 -0.350326 0.952714 -0.569178 0.686947 0.163378 0.008757 0.091322 -0.544810 -1.014818 0.318805 0.254698 -0.027227 -0.064056 0.671516 0.534657 0.002450 -0.247011 0.931551 -0.885395 1.141046 -0.374792 0.853723 -0.339486 -0.215016 -0.057439 -0.050315 -0.773448 -0.528443 0.527837 0.911233 -0.213618 0.799046 0.378516 0.197320 1.033284 -0.555100 0.812456 -0.305627 -0.011900 -0.613372 -0.513557 0.642952 0.383887 -0.133466 0.160493 -1.199504 -0.919205 -1.920908 -0.138935 0.020580 -0.609694 0.284374 -0.441915 -0.374615 -0.437914 -0.951445 1.366297 -0.214224 -0.456695 0.578171 0.085719 0.577656 0.846698 -0.128479 0.205932 -0.191891 0.274467 0.493765 -0.128065 -0.903547 1.174088 -0.512702 -0.230575 1.390841 -0.589137 0.510320 0.181272 0.515788 -0.688259 0.644713 0.040569 -0.609528 0.508119 1.386978 0.528995 0.326774 -0.541702 -PE-benchmarks/strongly-connected-components.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::back() = -0.008397 -0.246573 0.895952 0.610601 -0.324634 0.006583 0.198208 -0.375245 0.378198 -0.530022 -0.191743 0.058209 -0.637135 0.226888 -0.406387 0.154038 -0.936188 -0.454991 -0.227335 -0.341205 -0.041229 -0.259752 0.498420 0.175253 0.453016 0.577489 -0.318093 -0.177484 -0.601166 0.163307 0.640993 -0.197879 0.404776 0.589375 -0.090811 -1.030853 0.412296 0.355186 -0.294236 -0.413316 0.509866 -0.558752 0.040557 -0.678084 -0.271294 0.027119 -0.048043 0.367789 0.445832 -0.045308 -0.202642 0.102834 -0.084593 0.685145 -0.545175 0.194961 0.200002 -0.052804 -0.203295 -0.111265 0.039421 0.132016 0.221462 0.231932 -0.315918 -0.604835 -0.139099 -0.635676 -0.502836 0.453062 -0.111743 0.289414 -0.466477 -0.048783 -0.607324 -0.066509 0.003447 0.652213 0.652816 -0.560760 0.322140 -0.148334 -0.006989 -0.090487 0.027353 0.242963 0.185202 0.101042 0.083200 -0.192570 -0.644629 0.035679 0.098350 -0.182110 -0.108524 -0.732241 0.349078 -0.784172 -0.523219 -0.122244 0.297813 -0.309359 -0.033329 0.175274 -0.009264 0.351821 -0.248356 -0.395466 0.186418 0.111420 0.178567 -0.006893 0.003276 0.141569 -0.229667 -0.665877 -0.717884 0.242491 -0.193531 -0.149738 0.176852 0.439469 -0.342792 -0.091538 0.088378 0.228107 -0.352959 0.809632 -0.167519 0.080990 0.122422 0.053816 0.188023 -0.131344 0.375226 0.985051 -0.432748 -0.123544 -0.338909 0.003770 -0.468961 -0.565490 0.059182 0.068057 0.128792 -0.605510 -0.330053 -0.126528 -0.367975 -0.956623 -0.069082 -0.324889 -0.056454 0.553030 0.396601 0.524514 0.529919 0.994366 -0.338836 0.100445 0.067944 -0.338910 0.529507 0.314825 0.411689 -0.260471 -0.369694 0.250018 -0.342847 0.322782 -0.054156 0.216100 -0.007295 -0.697334 -0.128016 0.273067 0.370780 0.030680 0.407844 0.467234 -0.440789 -0.404481 0.212515 0.494951 -0.191091 -0.063162 0.210722 -0.497792 0.347474 0.156904 -0.165446 0.296233 0.011895 -0.258927 0.167752 -0.142929 0.249396 -0.462164 -0.126566 -0.232396 -0.029228 -0.655567 0.134590 -0.067107 -0.386123 -0.243775 -0.395180 0.608945 -0.498363 -0.335365 0.461990 0.209518 0.570083 -0.712291 0.262191 -0.390600 0.770531 0.045998 0.018993 0.119952 -0.357306 -0.506116 -0.038905 0.141303 -0.055506 0.106641 0.500583 0.446713 -0.014992 -0.052253 0.606727 -0.048236 0.649439 -0.216269 0.343087 -0.113183 -0.409487 0.398203 -0.125799 -0.258664 -0.168120 0.314282 0.983059 0.402492 0.728496 0.751362 0.228910 0.755879 -0.252597 0.093862 -0.159008 0.340813 -0.117469 -0.225802 0.192215 0.499378 -0.142994 0.246036 -0.668995 -1.319755 -0.594107 -0.759590 0.222244 -0.619260 0.127251 -0.101490 0.025463 -0.603095 -0.341820 -0.089890 -0.266642 1.022225 0.255293 0.009969 0.359334 0.584633 -0.653362 -0.051104 0.533583 0.647374 0.139489 0.132625 -0.879784 0.567020 -0.448098 -0.049169 0.926072 -0.483099 0.187158 -0.216112 0.734770 -0.422988 0.864466 0.158201 -0.535028 0.677072 0.289570 0.253021 0.766322 -0.299355 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator--() = 0.189103 -0.469855 3.113567 2.228900 -1.164902 0.105364 -0.304418 -1.523999 1.138068 0.150140 -0.505464 0.609349 -0.708100 0.456388 0.581880 1.504503 -2.909343 -0.525395 -0.505905 -1.468733 -0.811926 -0.355071 0.509514 0.230809 1.311628 1.624666 -0.932039 0.209823 0.289864 -2.201210 0.532520 -0.631639 1.025374 1.099608 0.788283 -4.002830 2.095316 0.797654 -0.742835 -1.293363 0.824259 -0.571269 0.114123 -0.797106 -0.954014 0.793475 0.241857 0.815805 1.306327 0.801677 -0.194235 0.200985 1.158112 2.163486 -0.467238 0.633726 0.637907 -1.111518 -0.635300 -0.176654 0.298655 -0.123246 0.601969 0.251909 0.054058 -2.055300 -0.188947 -0.956471 -1.087827 1.195577 0.060226 -0.905198 -1.223998 -1.084353 -0.982040 -0.523446 -1.577999 1.933530 1.780611 -1.420719 0.797175 0.093400 -0.085999 0.277263 0.514430 0.270826 1.623026 0.506629 -0.104190 0.264081 0.405062 -1.662033 1.038630 -0.202023 -0.531224 -2.040900 0.587334 -2.077211 -1.384217 0.716672 1.296505 -0.692208 -1.195508 -0.962844 0.733314 0.625198 -0.394674 -0.874275 0.261241 0.125236 -0.153723 -0.234557 -0.673952 0.026693 -0.485312 0.395307 -2.160886 0.902489 0.011441 0.161339 0.060942 1.156077 0.237145 -0.445199 -0.133843 0.933153 -0.875715 2.092179 -0.445486 1.228159 -0.218432 0.875028 0.103319 0.607527 0.925804 -0.318357 -0.377445 -1.009820 -0.911628 0.437883 -1.543268 0.241385 -0.301062 1.589149 1.881531 -0.368601 -1.402464 -0.566949 -1.671774 -2.343735 0.420414 -0.944842 -0.719252 1.451266 1.077793 0.773665 1.268070 0.658515 -1.258349 0.166344 -0.576508 -0.108937 1.543349 0.515738 1.154767 -0.906788 -0.186756 0.799387 0.050526 0.872388 0.199276 -0.185412 0.620503 -1.229495 -0.390719 1.434608 0.864375 0.319712 0.761960 1.347627 2.773683 -0.190073 -0.075248 1.184502 -0.527535 -0.393257 0.652986 -1.045353 0.468609 0.454131 0.397152 1.557164 -0.068209 -0.335443 0.072264 -0.032609 0.231225 -0.763731 0.012028 -0.555625 0.561329 -0.512678 -0.069880 -1.124479 -0.493527 -0.878120 -0.861491 1.898944 -1.984326 -1.103108 2.162919 -1.363987 1.392842 -1.716670 1.969949 -1.092154 1.207290 -0.818685 -0.560847 0.005591 -1.242837 -1.498244 0.839377 0.450540 0.199915 -0.314963 1.470844 1.038887 0.050803 -0.523156 1.445978 -0.552864 2.040452 -0.363698 1.591033 -0.663788 0.490846 -0.308280 -0.104840 -0.965063 -0.498217 0.489642 0.918050 0.150548 1.001155 0.831438 0.691484 1.495160 -0.976151 1.313551 -0.346765 0.575626 -0.791976 -0.905264 0.956609 1.320383 -0.249918 0.514075 -2.033325 -1.687766 -2.631169 -0.895547 -0.792106 0.469597 0.762104 -0.445122 -0.372018 -0.751192 -1.005452 2.228972 -0.074551 0.811189 0.778005 0.075072 1.158996 1.494922 -0.262109 -0.612251 -0.447336 0.183771 0.543660 0.091236 -1.903365 1.940043 -1.059963 0.019046 2.243962 -1.160173 0.568964 -0.291524 1.544302 -1.304148 1.462182 0.167144 -1.016083 1.098601 1.631534 0.546835 0.197818 -0.955109 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator*() const = -0.148122 -0.189396 0.772426 0.558679 -0.116434 0.038016 0.063439 -0.360402 0.356672 0.161255 -0.070991 0.136224 -0.324044 0.153834 -0.071630 0.437590 -0.519722 -0.253456 -0.157096 -0.399789 -0.172265 -0.130819 0.278294 -0.063114 0.376824 0.171534 -0.286900 -0.096927 -0.233652 -0.582860 0.165327 -0.181041 0.288195 0.009349 -0.025675 -0.902704 0.495757 0.337272 -0.256214 -0.334375 0.318031 -0.202704 0.088760 -0.133750 -0.174664 0.147900 0.022552 -0.086673 0.370135 0.242501 0.243467 0.121845 0.252753 0.629159 -0.311200 0.222003 0.120872 -0.167855 -0.222724 -0.002870 0.076933 0.043354 0.193603 0.084308 -0.015506 -0.530118 -0.151375 -0.226166 -0.394216 0.263784 -0.184160 -0.166673 -0.292094 -0.201104 -0.252654 -0.179180 -0.355741 0.299951 0.500878 -0.350478 0.269971 0.001190 -0.061426 0.034767 0.070960 0.113454 0.212914 0.119612 0.003418 0.003573 0.214528 -0.067463 0.180234 0.223322 -0.166103 -0.407262 0.333821 -0.301135 -0.402618 0.166204 0.310995 -0.131427 -0.363196 -0.124287 0.013230 0.252298 -0.239744 -0.326572 -0.016972 0.032761 0.198570 -0.094899 -0.136702 -0.191288 -0.182960 -0.039575 -0.531968 0.156350 -0.084909 -0.109840 -0.168333 0.303961 -0.034217 -0.091422 -0.006455 0.317815 -0.277745 0.545494 -0.112019 0.397503 -0.123538 0.221327 -0.323724 -0.072731 0.295267 0.138103 -0.186989 -0.105597 -0.343344 0.006751 -0.349629 0.037066 -0.043692 0.309377 0.604841 -0.184174 -0.304298 -0.066890 -0.268839 -0.691377 0.082217 -0.285596 -0.056615 0.271317 0.295547 0.170281 0.387133 0.607993 -0.283855 0.056644 -0.088509 -0.246957 0.451290 0.031104 0.329070 -0.222038 -0.198147 0.185892 0.105310 0.183237 0.091060 0.062745 0.094846 -0.402503 0.016578 0.287886 0.185006 -0.079232 0.229307 0.313429 0.619017 -0.141723 0.041984 0.333394 -0.141595 -0.008043 0.094992 -0.373052 0.092638 0.140711 -0.059917 0.332822 0.025733 -0.157253 0.118210 -0.180132 0.130911 -0.283074 0.125300 -0.205873 0.094246 -0.233167 -0.087428 -0.193651 -0.161291 -0.119874 -0.169420 0.483131 -0.374955 -0.219831 0.412406 -0.028105 0.170191 -0.491906 0.596639 -0.310136 0.416123 -0.233516 -0.044914 -0.003071 0.001902 -0.318326 0.095470 0.140370 -0.018594 0.050557 0.532188 0.272587 -0.029460 -0.138917 0.457636 -0.125524 0.517796 -0.086035 0.454299 -0.108458 -0.081877 0.064028 -0.069936 -0.237288 -0.188604 0.097436 0.326563 0.161096 0.135359 0.218580 0.173985 0.541780 -0.236441 0.392319 -0.029447 0.305233 -0.151970 -0.161155 0.239679 0.384005 -0.081946 0.162451 -0.508490 -0.519818 -0.428000 -0.373939 -0.002747 0.125020 0.111055 -0.144343 -0.054902 -0.277843 -0.312517 0.502632 -0.138024 0.425544 0.161168 0.090311 0.289838 0.401430 -0.168176 -0.105924 -0.129934 0.086036 0.165959 -0.048271 -0.341386 0.430448 -0.314704 -0.079551 0.467427 -0.262017 0.128096 0.098857 0.261031 -0.317417 0.516437 0.054909 -0.111612 0.560639 0.379847 0.394322 0.038312 -0.206563 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::pop_back() = 1.531601 -0.726389 7.058717 4.616921 -2.107732 0.257746 0.004012 -4.104898 3.131025 0.453635 -1.350390 0.645213 -1.708091 1.141820 -1.536738 3.192971 -5.879440 -1.334698 -1.719239 -3.890558 -1.708611 -0.979198 1.734762 -0.226318 3.287229 2.529010 -1.843830 0.098942 -0.339394 -4.781523 1.520401 -1.036631 1.279126 0.364554 1.126782 -6.207301 4.805463 2.330465 -1.901161 -2.543264 2.132601 -1.162479 -0.892695 -1.120461 -0.972344 1.130432 -0.254040 3.222939 2.963361 1.914936 0.493258 1.208572 2.247870 5.767773 -1.898238 1.774932 1.157987 -1.073647 -0.892106 1.126813 0.496195 0.492730 0.308800 0.580121 1.036962 -4.363075 -0.306632 -1.664735 -1.526566 3.154214 -0.459868 -2.420158 -2.544776 -1.927146 -2.637573 -0.446745 -5.742516 3.991430 3.839007 -3.202917 1.340646 0.226595 -0.348165 0.194578 0.291856 0.236841 3.162071 1.098311 0.352880 -0.518115 -0.022465 -2.089128 2.109440 -1.810212 -1.861532 -6.368183 2.387753 -5.482241 -3.299693 0.948393 3.234088 -2.339073 -0.459997 -0.965421 0.886316 0.456679 -0.915311 -1.835055 0.916716 0.782702 0.121680 -0.175863 -0.412644 -0.456671 -0.229099 1.148153 -4.629237 2.162954 -0.512908 0.488549 -0.250834 2.452596 1.119701 -1.359873 0.012380 2.233063 -1.612227 3.685656 -1.292435 3.155864 -0.930147 3.501558 -0.256402 2.556561 2.553933 -1.742102 -0.780716 -0.183734 -1.895750 1.177831 -3.494674 0.866622 -2.181796 2.394518 2.318611 -1.878491 -2.868449 -0.776544 -3.085737 -4.226959 0.718689 -1.809773 -3.492568 1.029662 2.355177 2.857304 2.788689 1.384580 -2.874789 -0.296928 -0.602185 -0.110480 2.907200 -0.232935 2.343096 -1.801380 -1.106189 1.196220 0.013163 1.539957 -0.177449 0.192003 0.890926 -3.313101 0.371487 2.403411 1.722303 -0.468463 2.052098 3.493972 3.742716 -1.371685 0.239085 3.033481 -1.866917 -0.751311 1.280619 -2.977973 1.074397 1.225329 2.164945 3.385787 0.127106 0.289430 0.619473 -0.799443 0.633277 -1.699984 -0.638351 -1.418336 -0.360734 -1.201489 1.285897 -1.901753 -0.717502 -1.554611 -2.615649 3.629991 -4.856256 -1.743409 5.288503 -2.267192 1.709611 -2.745926 4.122212 -2.131151 1.954953 -0.292423 -0.116670 -0.027837 -1.690526 -3.910043 1.463389 0.692935 -0.058055 0.768365 3.653249 2.098333 0.316710 -1.238797 3.684215 -2.669262 4.363777 -1.590772 3.431130 -1.306267 -0.942737 -0.633763 -0.342461 -2.658646 -2.024862 1.747008 2.843530 0.068190 2.344066 1.896592 1.101686 4.058450 -1.822522 3.560025 -0.788843 0.285903 -1.816006 -1.822443 2.769337 1.481261 -1.140719 1.499930 -4.687216 -3.895224 -6.138298 -2.102114 -0.253024 -1.852790 1.643117 -1.596957 -1.145488 -2.212297 -3.225382 4.611174 -0.357213 -0.131782 2.307336 0.342854 2.015164 3.559269 -0.892033 0.641674 -0.895408 1.134642 1.400014 -1.192091 -3.377629 4.410788 -1.978557 -0.314694 5.140428 -2.295494 1.758173 -0.437284 2.077797 -3.094235 2.882261 0.354889 -1.723387 2.458593 3.822736 2.236363 1.216717 -1.978867 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_pop_back_aux() = 2.418695 -0.605600 8.449298 5.684099 -2.994820 0.291814 -0.770123 -5.172990 3.391475 -0.060291 -1.446978 1.342140 -1.364492 1.862308 -2.549783 4.301842 -7.280482 -1.057710 -2.262427 -4.919105 -2.395485 -0.324142 1.774780 -0.463921 3.931103 3.362122 -2.348063 0.239729 0.065746 -5.556669 1.492423 -1.166351 1.153441 -0.308678 1.432830 -7.646484 5.833763 2.765361 -2.580962 -2.968261 2.618415 -1.608242 -1.051168 -1.837015 -1.569710 0.875695 -0.747331 3.738212 3.342280 2.350245 0.226594 2.738649 3.284342 7.799255 -2.092582 2.232185 1.680281 -0.970779 -1.214721 1.231618 0.719854 1.080436 0.092244 -0.166195 1.666849 -5.828691 -1.348318 -1.914300 -0.833741 3.231877 -0.674292 -3.095589 -3.134122 -2.405127 -3.597650 -0.809559 -8.820068 4.952892 4.061265 -4.573266 0.888780 0.054273 -0.757618 0.904718 0.872620 0.497901 3.807367 1.645746 0.895431 0.042703 1.129212 -1.989402 3.287068 -3.187267 -2.821001 -9.689949 2.891043 -7.160275 -3.940077 1.562085 4.282776 -2.898591 0.440498 -2.193614 0.779012 0.314068 -1.833978 -1.837542 1.691191 0.867355 1.105890 -0.603151 -0.340399 -0.645960 0.501897 1.645963 -5.701457 3.234805 -0.308843 1.246902 0.084371 2.952474 2.351378 -2.249605 -0.577140 2.474984 -2.350288 4.854921 -2.149090 3.886326 -2.403490 5.320570 0.225896 4.092968 3.234728 -3.311892 -1.347556 0.071743 -2.485461 1.519183 -4.060906 1.235752 -2.740655 2.895641 2.259826 -1.530598 -3.423528 -1.104048 -4.215804 -5.022835 0.792876 -1.824085 -4.925926 1.472503 2.806849 3.497298 3.639246 0.278033 -2.685188 -1.017661 -0.811277 0.330231 4.124793 -0.566176 2.728358 -2.114796 -1.286804 1.812700 -0.288306 1.956777 0.004570 0.778856 1.353400 -3.503041 1.268859 2.809632 2.646305 -0.893267 2.947268 4.128979 4.121707 -0.899920 0.106332 3.327971 -2.828249 -0.492154 1.072128 -3.093309 0.794579 1.802659 2.681125 4.147627 0.147003 0.675234 0.599072 -0.721014 0.967436 -1.519651 -0.925194 -1.591825 -1.183680 -1.101499 2.187420 -2.043720 -0.466993 -2.221192 -4.011259 4.414152 -7.634722 -0.924569 6.301812 -2.665569 1.818156 -2.538729 5.059904 -2.655154 2.621989 0.137183 -0.117942 0.297442 -2.224461 -5.411759 2.146452 1.157884 -0.302013 -0.000358 3.936417 2.511088 0.348560 -1.747889 4.326890 -3.773921 5.580896 -1.919977 4.690573 -1.697247 -1.115617 -0.703240 -0.234074 -3.706531 -2.910002 2.726150 3.468295 -1.012380 3.504890 1.537900 1.321286 5.124534 -2.583171 4.452829 -1.414588 -0.473072 -2.386729 -2.203876 3.427185 1.847750 -0.742534 1.413303 -5.524610 -4.108287 -9.060203 -1.032670 0.339137 -2.026379 1.574532 -2.371162 -1.747318 -2.370865 -4.208818 6.268814 -0.963052 -1.817529 3.160859 0.630579 2.437616 4.072985 -0.647048 1.087179 -1.438013 1.060300 2.433384 -1.054132 -4.147260 5.602179 -2.072626 -0.829220 6.244432 -2.439525 2.337143 0.436508 2.111327 -2.962061 3.040167 0.031589 -2.206230 2.627376 5.850844 2.144766 1.392426 -2.381593 -PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.469629 -2.608704 6.412828 2.978221 -1.268066 0.510474 3.886778 -1.284850 1.859965 -0.921002 -1.661360 0.171431 -4.924555 -1.174197 -0.370652 -1.074080 -5.729659 -3.532580 -0.367754 -1.223912 -1.296379 -3.327839 1.585113 3.401935 3.183685 3.465932 -1.410427 -1.313955 -3.771044 -0.738911 2.557245 -0.433878 2.284916 4.932246 1.959583 -6.432836 2.504567 1.910183 -0.412325 -2.319483 2.248722 -0.965677 -0.149151 -1.468318 -0.476910 1.412320 2.786110 5.757707 2.527666 0.679820 -1.102695 -4.031419 -0.106143 4.357657 -0.369963 1.902628 3.094539 -1.153660 1.065861 0.241073 -0.335487 -3.130076 0.582654 2.261371 -2.174238 -0.086633 2.523867 -4.039260 -2.929897 3.947495 1.695866 -0.296179 -2.753838 -2.055768 -3.250850 -0.042881 0.276969 4.287356 5.522736 -3.485568 4.438315 1.115236 2.830980 -0.957212 -0.169313 0.112156 1.912143 0.003058 -1.717117 -1.433393 -7.814850 -2.742763 -1.635083 -0.926192 -0.170156 -3.062013 1.814810 -5.674939 -4.686761 0.280901 0.092098 -2.255009 -0.995874 2.762454 1.812364 0.794608 -0.203786 -3.393976 -1.449466 1.270150 -3.936178 2.057670 0.675444 2.140033 -2.018102 -2.136881 -4.469713 1.491771 0.176997 -1.993376 0.120771 3.884122 -2.427945 3.519250 2.097242 1.253725 -0.323123 3.656263 2.799762 -0.881239 2.389567 -1.672625 -0.363363 -0.611037 1.520017 4.956544 -1.417876 -1.550871 0.421586 1.219638 -2.269969 -1.053214 -0.576755 2.692862 0.167192 -4.972341 -3.965089 -1.957275 -3.020902 -4.802835 0.858467 -1.731716 -1.568495 1.816930 2.036004 3.446901 0.349777 4.580524 -3.113333 1.724437 0.216952 -1.542905 -0.884579 1.776971 2.868809 -2.546434 -1.700303 0.428161 -0.282375 2.169849 -0.762569 -1.489966 0.203342 -4.548040 -3.206255 0.499961 0.915535 0.576665 1.497659 4.076165 1.408848 -3.992080 -0.490956 2.602254 -0.113363 -2.307607 2.669223 -3.753563 3.497101 -0.104135 -0.305713 3.253381 0.426772 -1.323081 2.787907 -0.746920 0.483497 -3.413891 -0.886959 -1.570790 0.125049 -3.232301 0.856126 -2.494837 -1.973579 -1.943954 -2.123915 4.341486 -1.313686 -4.123400 3.314600 -0.033692 4.402417 -4.990083 3.782647 -1.287943 2.988055 0.140074 -1.479578 -0.165259 -1.932774 0.029233 0.268993 -0.917428 -0.239936 2.235522 3.448733 1.750071 1.618351 1.006519 3.410998 -0.250398 1.918891 -1.457345 0.238622 -1.438320 -2.785586 0.586646 -0.557994 0.226400 1.269098 0.127887 4.178653 3.649250 1.775443 4.698137 1.974329 2.187380 -1.182909 -1.139882 0.120247 4.109086 -2.526214 -2.542675 0.259613 1.796092 -1.504303 1.555764 -5.363738 -7.042037 -2.113509 -6.901780 -2.379651 -3.746239 1.865489 0.610743 -0.220459 -3.990641 -1.697590 0.440778 0.466836 4.267994 2.335924 -0.295031 4.154077 4.482075 -2.516873 -0.926098 4.119153 3.779270 -1.564874 0.185637 -5.282855 2.125882 -3.913375 2.366566 5.168074 -2.914053 1.728783 -3.774721 5.011253 -5.921567 5.190759 1.697131 -4.738429 1.774194 1.400969 2.574340 2.441658 -2.278795 -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.016149 -0.350546 1.486696 0.969387 -0.326382 0.036894 0.488886 -0.689549 0.776781 -0.406851 -0.251437 0.077280 -0.935135 0.321305 -0.645833 0.437192 -1.325670 -0.716754 -0.279550 -0.719734 -0.140743 -0.406281 0.748870 0.038651 0.795774 0.436704 -0.450524 -0.466027 -0.958868 -0.016534 0.915301 -0.358762 0.526336 0.395380 -0.187685 -1.680673 0.774551 0.537705 -0.525274 -0.644860 0.795157 -0.838275 0.084993 -0.791055 -0.157121 0.018254 0.000742 0.699454 0.807715 0.127195 -0.023880 0.220306 -0.048218 1.459968 -1.002323 0.391939 0.242411 -0.095943 -0.364699 0.136504 0.052989 0.126072 0.346360 0.315888 -0.354028 -0.989231 -0.201031 -0.850614 -0.745879 0.675723 -0.102127 0.211513 -0.727894 -0.005079 -0.842198 -0.199911 -0.612304 0.938589 1.058148 -0.883470 0.580022 -0.133009 0.079003 -0.096173 0.087127 0.320915 0.402407 0.127167 0.022919 -0.409689 -0.999624 0.088868 0.163794 -0.315778 -0.154573 -1.363670 0.578201 -0.943082 -0.902832 -0.075337 0.519278 -0.446368 -0.141602 0.222803 0.068007 0.480599 -0.476656 -0.726712 0.118495 0.163485 0.148334 -0.042496 0.092620 -0.213294 -0.312664 -0.891116 -1.107433 0.336617 -0.279518 -0.226886 -0.110943 0.738359 -0.466354 -0.170002 0.151954 0.481176 -0.535474 1.074604 -0.274231 0.332330 0.244949 0.170588 -0.317157 0.001117 0.650825 1.273793 -0.491680 0.047233 -0.616337 0.073797 -0.805962 -0.544251 0.043530 0.356865 0.260492 -0.931081 -0.518523 -0.143638 -0.247610 -1.248477 0.092729 -0.492483 -0.222986 0.413888 0.651134 0.803926 0.852480 1.328712 -0.572024 0.262041 0.016650 -0.368310 0.897373 0.281646 0.721258 -0.454390 -0.506931 0.222538 -0.240063 0.378504 -0.134484 0.304769 0.054060 -1.144699 -0.097880 0.159592 0.495651 -0.169093 0.654116 0.744561 -0.164465 -0.894601 0.301406 0.809952 -0.366889 -0.066912 0.295855 -0.839746 0.502326 0.318590 -0.171959 0.552952 0.065261 -0.457483 0.247124 -0.248399 0.344222 -0.611605 -0.228151 -0.415614 -0.302062 -0.770592 0.263083 -0.248640 -0.583375 -0.367361 -0.564350 0.943675 -0.684762 -0.524294 0.824781 0.027952 0.588793 -1.143112 0.958769 -0.667230 0.781876 -0.103898 0.059817 0.035389 -0.012795 -0.862368 0.077174 0.223613 -0.189213 0.442266 1.017345 0.689034 0.155852 -0.120240 1.024353 -0.231099 0.925704 -0.335390 0.693248 -0.276707 -0.664532 0.444362 -0.191392 -0.345724 -0.265585 0.510947 1.391036 0.550438 0.846262 1.001246 0.449466 1.189127 -0.408429 0.410424 -0.271325 0.526278 -0.200444 -0.328007 0.381547 0.471557 -0.226572 0.469765 -1.150265 -1.779682 -0.759613 -1.056245 0.447647 -0.777034 0.154159 -0.204364 0.053865 -1.143417 -0.560425 -0.097430 -0.383673 0.964327 0.472710 0.080900 0.545549 0.931637 -0.845918 -0.038221 0.532877 0.783925 0.208138 -0.114666 -1.114858 0.901806 -0.790609 0.018715 1.295091 -0.624721 0.217954 -0.242625 0.986357 -0.697537 1.249446 0.226135 -0.617693 1.045064 0.708138 0.753500 0.863224 -0.448449 -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.593603 -0.665346 4.039795 1.797191 -1.019585 -0.129205 1.594702 -1.965170 1.764390 -1.177053 -0.388163 0.088319 -2.408130 0.628797 -2.205024 0.716333 -3.220051 -1.886404 -0.989133 -2.361627 -0.936765 -1.083957 2.015416 0.295584 2.051542 0.603098 -1.124490 -1.144927 -2.143907 -1.243012 2.006449 -0.628475 1.130688 -0.123606 -0.263773 -4.974962 2.011762 1.123360 -1.374871 -1.251550 2.316179 -1.356071 -0.191649 -0.999356 -0.860696 -0.072571 0.311433 1.931421 2.056526 0.699135 0.497021 0.415019 -0.225830 4.374659 -2.277300 1.032870 0.924620 -0.207118 -0.978089 0.717741 -0.338595 -0.264297 0.333125 0.657315 -0.705244 -1.934165 0.392993 -2.025653 -1.861054 1.967471 -0.251661 -0.483762 -1.309484 -0.535198 -2.515343 -0.561813 -0.261948 2.028369 2.865400 -2.332996 1.353928 -0.367134 0.149101 -0.227541 -0.205537 0.426773 1.050750 0.128004 0.081437 -1.364291 -2.296059 0.529203 -0.267455 -0.105362 -0.268975 -3.815969 1.969970 -3.098770 -2.447119 -0.034170 1.190403 -1.424393 -0.898765 0.349064 0.301319 0.713485 -1.281280 -1.987549 -0.551760 0.721372 0.083665 0.633135 0.596133 -0.461012 -0.625129 -1.625361 -2.985027 1.139343 -0.630603 -0.661254 -0.969573 1.869275 -1.068417 0.269596 1.078092 1.964376 -1.332566 2.546378 -0.165182 0.635781 0.212242 0.665681 -0.842366 -0.482711 1.258294 2.591503 -1.178442 -0.131084 -1.459841 0.175015 -2.175408 -0.953309 -0.651878 1.051776 0.931004 -2.399462 -1.818201 -0.012431 -0.759137 -3.500161 0.262808 -1.487368 -1.497524 0.832514 1.078231 2.072282 1.555557 3.391716 -1.155824 0.988813 0.178199 -1.412067 1.475480 -0.364918 2.049019 -1.278038 -1.494282 0.156331 -0.631644 1.196443 -0.504291 0.308292 0.056966 -3.257374 -0.886187 0.063048 1.244197 -0.405437 1.125760 2.233964 0.808443 -2.582531 0.296668 2.035400 -1.279952 -0.433446 0.860783 -2.131797 0.814228 0.889761 -0.378488 1.971476 0.429736 -1.059956 1.264725 -0.667590 0.883148 -1.637761 -0.562468 -1.157806 -0.642010 -1.803028 0.045159 -0.912838 -0.868047 -0.922517 -2.113440 2.277734 -2.439290 -2.000458 2.595430 0.194725 1.877798 -3.522102 2.756628 -1.243696 2.200437 -0.192761 0.545976 -0.255761 0.022164 -1.626993 0.887408 -0.124684 -0.407369 1.512715 3.210116 1.322177 0.972619 -0.292886 2.946009 -0.950078 2.338696 -0.933804 1.809089 -1.008483 -2.574180 0.896511 -0.167391 -1.227870 -0.724869 1.604812 2.675851 1.318258 1.341048 2.476247 1.659786 2.999446 -0.747088 1.166140 -0.589836 1.461020 -0.893600 -1.081524 1.296740 1.441819 -0.805779 1.144008 -3.056902 -4.536444 -2.735522 -3.808573 0.896649 -2.159949 0.553949 -0.790533 -0.182180 -2.656745 -1.328919 0.756546 -0.504788 2.696999 1.758611 0.458596 1.802998 3.019362 -1.954672 0.137527 1.418773 1.967816 0.245570 -0.596047 -2.650297 1.685744 -1.902971 0.175102 3.048999 -1.234558 0.920128 -0.639544 1.759311 -2.347151 3.074610 0.496386 -1.391351 2.810573 1.660090 1.887449 2.148784 -0.880040 -PE-benchmarks/z-algorithm-linear-time.cpp__getZarr(std::__cxx11::basic_string, std::allocator >, int*) = -5.006887 -8.260307 11.001527 7.276635 1.093114 3.675776 4.097465 -0.100163 0.362502 4.741482 -2.976788 7.846539 -6.248280 -2.714865 0.352106 -0.869717 -5.077749 -6.742628 0.370863 -1.388764 -2.781214 -3.379593 -5.687072 10.183894 4.689711 -1.229606 -4.268876 -0.217954 -12.074267 -6.752093 -5.757355 0.093793 4.285036 -2.441789 6.098938 -10.198090 3.602163 8.757181 0.983179 -7.757376 2.046673 -3.395935 0.499364 0.373472 -2.636426 3.147797 7.385807 0.513952 1.156904 1.341254 0.144439 -3.421204 2.487420 10.127741 3.750696 6.736258 8.595806 -3.366548 2.371513 -1.632879 0.714124 -8.017210 2.966303 -0.176505 -3.913586 -1.414379 1.922994 -0.501117 -1.220663 2.210045 5.140711 -4.808901 -2.768345 -4.796459 -8.861439 -3.420635 6.546170 2.717919 9.280534 -4.681425 10.133554 4.755736 6.445494 2.089372 6.593149 -0.358539 7.104002 1.125897 -4.349602 0.720738 -8.338024 -2.314462 -2.747259 7.919437 -3.646578 -0.542270 3.386609 -11.102258 -10.465069 4.898527 -1.695377 -4.153841 -4.645009 1.179070 3.411364 2.802197 -1.226682 -6.344186 -5.221262 3.725501 -5.663600 -1.728032 0.946631 -0.826009 -0.429058 0.509955 -7.405858 2.919038 5.995105 -3.165940 -4.066121 8.169867 -2.209797 8.671771 0.624224 2.464872 0.361860 3.257630 5.702698 -0.090456 -2.201475 -5.624565 -9.003831 -3.308422 -0.321727 0.421925 -5.352791 -2.197766 2.926413 3.318250 1.752770 5.323180 -2.447374 11.822129 1.779710 -3.765705 -5.664469 -8.354436 -5.329405 -3.131721 0.496486 -1.619514 -6.240997 0.380582 4.201391 1.450360 -1.909016 6.317277 0.594788 4.584912 1.398604 -2.530750 0.139508 -5.976024 3.794324 -5.559946 -3.463434 4.152814 5.444561 5.485510 0.434663 -1.295163 2.193908 -3.402730 -6.149031 1.113205 0.806393 2.918794 8.792658 6.533131 13.358795 -6.362426 -1.150556 -0.971438 -1.363320 -1.618727 0.611877 -5.591897 2.052560 1.553850 -1.274183 10.764973 0.632911 -4.695094 5.281437 0.748323 1.250026 -6.628305 5.416385 -3.917331 2.195070 -1.577158 -2.740983 -6.241138 -2.104822 -7.004149 -4.487971 10.026025 -6.324549 -10.821063 2.455257 1.671941 6.472563 -12.640820 7.127437 -3.095171 8.231839 -1.562624 -3.010920 0.667888 1.841347 -0.617228 4.283537 2.235490 -5.201337 3.495451 3.129153 1.506811 3.510269 1.515352 3.284639 -0.572287 1.154750 -3.207485 1.934515 -0.737223 -2.839207 -3.287784 -1.168995 2.608723 5.984692 -0.610924 -3.246224 4.315150 -1.367702 0.331205 7.890751 0.099441 -2.923567 -0.979319 -1.231652 8.159217 -5.877243 -4.509578 -3.517790 3.016435 2.636969 1.739877 -10.607170 -4.830568 -5.033296 -9.969886 -3.191430 2.667144 1.469631 3.920172 -1.543588 -8.626763 -4.704157 7.863384 1.271815 7.917313 4.667758 2.021359 8.246746 3.129247 2.054903 -3.564527 0.479300 1.359045 -2.690141 -1.290051 -4.465746 2.572600 -7.539369 7.121871 6.239207 -3.346776 4.883201 0.162750 2.477200 -9.369300 9.367461 3.880602 -10.681575 -0.034853 6.827014 6.399042 -8.415816 -5.525299 -PE-benchmarks/z-algorithm-linear-time.cpp__main = 0.481100 -1.658956 8.679443 3.572307 -1.860673 -0.079924 5.520775 -4.169525 5.036607 -1.363471 -1.777382 -1.495800 -6.020859 0.026236 -2.646865 0.889150 -8.009808 -4.051246 -0.722379 -3.952180 -1.665192 -4.235573 5.358574 0.024056 4.796911 2.826192 -1.267347 -2.954508 -3.657446 -1.591639 6.316500 -1.704813 2.166747 3.641952 0.101763 -9.924644 4.416561 1.063189 -2.361790 -2.834789 3.845716 -1.315558 -0.557559 -1.501463 0.752750 0.598779 1.679351 8.502127 5.160589 1.976970 0.449625 -3.217405 -1.091556 7.797892 -4.452681 1.938743 1.687217 -1.120750 -0.856048 2.914709 -0.257792 -1.710170 0.664613 4.020986 -1.357440 -2.253237 2.668382 -5.673845 -5.288727 5.812456 0.625702 -0.162271 -3.620949 -1.044043 -2.882238 -0.031849 -3.724199 5.597252 7.596114 -4.170038 4.696974 -0.249074 2.124531 -2.400756 -1.344509 0.388497 2.245975 0.005929 -1.745312 -3.192017 -7.736122 -1.854078 -0.571704 -2.046247 0.988620 -7.047852 3.273899 -4.630901 -5.154442 -0.342099 2.383795 -2.162537 -1.687965 3.273785 1.952607 1.247034 -2.106602 -4.914923 -1.365331 0.556635 -3.656460 2.695082 1.136075 0.570311 -3.239348 -3.588644 -5.496564 0.605960 -1.829250 -2.459795 -1.242045 4.038083 -3.004669 1.622756 2.729904 2.856756 -1.392210 4.673484 0.928474 0.934462 3.695510 0.632216 -1.734226 0.167264 3.522292 7.276842 -0.147667 -0.360103 -1.960263 1.189310 -5.543382 -2.253974 -0.879725 2.129091 1.746189 -6.552372 -4.650478 0.357120 -0.838080 -7.207088 1.717970 -3.311472 -2.033145 0.758588 3.002485 4.716005 2.747641 6.538729 -5.252106 2.455640 -0.561339 -1.754355 1.380864 2.455081 4.682163 -2.767970 -2.079442 -1.246481 -1.092592 1.713449 -1.246121 -1.489453 -0.247759 -7.715983 -2.580930 -0.086449 2.299370 -1.493043 0.216422 4.749172 1.453695 -6.262863 -0.021753 5.506449 -0.426201 -2.560342 3.485021 -5.632004 4.159821 0.467510 0.470411 2.858845 0.860121 -1.882986 2.259607 -1.938403 1.005795 -3.286819 -3.008656 -2.248197 -1.043107 -3.954656 2.265407 -2.456067 -2.804467 -1.270768 -2.127859 4.610900 -1.574234 -4.169873 6.416483 -1.688925 4.324014 -6.193310 6.720028 -2.318795 2.075404 -1.061500 -0.001060 -0.968412 -0.294892 -2.056255 0.807223 -1.229165 0.658603 4.210362 7.203611 3.024729 2.296528 0.098857 6.378944 -1.765388 3.219828 -1.504269 2.481512 -2.412815 -4.610100 1.616533 -0.847493 -1.250349 -1.171319 1.933584 7.682189 4.142809 2.338893 7.230569 1.516357 5.242835 -1.652183 1.774942 0.197187 4.347699 -1.830919 -2.436297 2.767509 1.939520 -3.425495 2.962007 -6.682047 -10.189865 -2.465804 -8.541089 -1.002363 -5.732367 2.330768 -1.121080 0.452694 -5.461189 -1.925402 -0.137554 -0.351819 4.462628 3.129814 0.085793 3.691635 6.897016 -4.583575 0.280359 3.775088 5.176063 -1.159972 -1.487511 -5.876693 3.303631 -5.395596 1.406099 6.550719 -2.827599 0.694011 -4.522400 6.655689 -6.693529 5.782239 1.773858 -2.772407 4.992396 2.280655 5.144938 6.143545 -2.112574 -PE-benchmarks/z-algorithm-linear-time.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator > std::__str_concat, std::allocator > >(std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::allocator_type const&) = -0.212018 -2.019215 7.931176 4.573781 -0.617282 -0.026943 4.154787 -3.167455 3.573470 0.333029 -0.890720 0.800007 -5.059859 1.385212 -3.295815 2.764706 -5.714300 -4.010456 -1.251760 -3.509753 -1.633733 -2.486603 4.191545 0.207839 4.760487 0.524138 -2.615910 -3.551320 -4.592124 -2.868055 3.303183 -1.519482 2.612699 -0.373614 -1.034797 -9.209554 4.243343 2.731018 -2.364644 -2.865519 4.459465 -2.644226 -0.024396 -1.793538 -0.593115 0.272225 1.264294 4.498510 4.238187 2.235528 1.606045 0.348735 0.870240 8.888146 -4.267189 2.425986 1.841393 -0.282561 -1.623517 1.204482 -0.042277 -0.788525 1.239981 1.605422 -0.919230 -3.574688 -0.014767 -3.623963 -3.908730 3.657513 -0.128600 -0.295387 -3.568549 -0.338044 -3.346540 -0.707006 -2.417451 4.136193 5.940797 -4.482925 3.493360 -0.119958 0.691173 -0.756982 -0.772508 0.818747 1.185883 0.461669 -0.261180 -3.260069 -5.005897 0.275214 -0.386337 -0.654320 -0.798143 -7.488027 3.445350 -3.506696 -5.153230 0.068402 2.019554 -2.647345 -1.259041 1.118903 0.865593 1.968489 -2.201997 -4.181961 -1.358654 0.746198 -0.078911 0.320893 0.867900 -1.868609 -1.779846 -2.867606 -5.812618 1.596945 -1.174872 -2.029013 -2.123816 3.511811 -2.073999 1.046821 1.575248 3.326771 -1.940378 4.471130 0.446068 2.067016 1.998186 1.116991 -2.775156 -0.019310 3.250932 5.119436 -2.101765 0.589049 -3.067071 0.689850 -3.686135 -0.903459 -0.333106 2.898888 2.347418 -4.883779 -3.871409 -0.574736 -0.499697 -5.578097 1.426694 -2.772399 -1.596930 0.649605 2.764591 2.817626 3.169127 6.667996 -3.311287 2.167204 0.503298 -1.910308 2.966879 0.069736 3.728888 -2.657043 -2.941195 0.697383 0.544618 1.577366 -1.356358 1.023111 0.595066 -5.952248 -1.194319 -0.307822 1.621168 -1.614019 2.406023 3.680060 3.151960 -4.761721 0.600303 4.055154 -2.006070 -0.717999 1.674000 -4.977639 2.475660 1.127083 -0.561295 3.815222 0.845233 -2.768811 3.079987 -1.597222 1.092221 -3.103102 -0.355485 -2.375499 -1.923923 -3.134290 0.451765 -1.401261 -1.966996 -1.409793 -2.394814 4.865264 -2.928340 -3.437602 3.995673 -0.561623 1.969206 -6.691162 7.978737 -2.774302 2.063411 -0.692398 -0.082862 -0.209224 1.325088 -3.070829 0.820886 0.372276 -0.634723 3.369208 6.578390 2.601461 1.337203 -0.352351 5.168540 -1.079611 4.280563 -1.393629 3.369415 -1.731459 -4.118485 0.995685 -0.615395 -1.426406 -1.127631 1.795752 5.702212 2.730490 1.916604 4.759209 2.759885 6.024198 -1.956046 2.752932 -1.059943 3.720286 -1.774410 -1.881046 1.993858 1.699292 -1.689772 3.321109 -6.063211 -7.974565 -3.240297 -6.834471 1.419207 -3.165141 1.628182 -1.816085 -0.322449 -5.883705 -2.987620 0.648700 -1.019827 3.345272 3.562978 0.572059 3.419087 4.991260 -3.390714 0.183435 1.755895 3.263741 0.606009 -1.770467 -4.050769 3.197397 -4.159130 0.763486 5.555665 -2.613735 1.401749 -2.025325 3.830813 -4.489614 6.356607 1.116805 -2.384851 5.087327 3.278928 4.871699 2.285206 -2.148706 -PE-benchmarks/z-algorithm-linear-time.cpp__std::char_traits::length(char const*) = -0.173875 -0.252052 0.485083 0.342319 -0.058166 0.056757 0.182483 -0.107679 0.232035 -0.044797 -0.108295 0.084909 -0.391679 0.062133 -0.124683 0.105435 -0.352259 -0.299991 -0.047424 -0.148270 -0.055305 -0.192419 0.151104 0.101214 0.233252 0.177470 -0.154812 -0.124012 -0.433400 -0.053317 0.200226 -0.105543 0.224289 0.190282 -0.005689 -0.581061 0.185394 0.267922 -0.127653 -0.322279 0.223923 -0.287632 0.123077 -0.215313 -0.045515 0.082437 0.111080 0.083660 0.205486 0.050270 0.024529 -0.059798 -0.001675 0.434881 -0.218907 0.175735 0.178512 -0.051032 -0.091807 -0.049948 0.038981 -0.061845 0.156605 0.117128 -0.200044 -0.240449 -0.095987 -0.284385 -0.294139 0.184257 -0.068343 0.062222 -0.260675 -0.117340 -0.279453 -0.115637 -0.232064 0.262658 0.423728 -0.325015 0.313997 0.028920 0.114308 0.002303 0.098104 0.107171 0.105842 0.049354 -0.066310 -0.029307 -0.245514 0.010838 -0.015341 0.074010 -0.075459 -0.237393 0.227267 -0.266726 -0.342237 0.056478 0.067018 -0.087613 -0.141353 0.126075 -0.006218 0.261214 -0.193442 -0.295863 -0.048662 0.064192 0.087675 -0.026374 0.013956 -0.012609 -0.167363 -0.326293 -0.381904 0.071530 -0.012296 -0.184081 -0.039315 0.300714 -0.194169 0.097584 0.053499 0.117687 -0.143857 0.475877 0.056263 0.071951 0.016361 -0.067995 -0.303708 -0.096321 0.178892 0.495126 -0.227097 -0.002133 -0.110457 -0.011973 -0.170731 -0.176151 0.026171 0.158333 0.241967 -0.297310 -0.200627 -0.151262 -0.146072 -0.461687 0.018788 -0.190585 0.071875 0.221930 0.230005 0.266027 0.207922 0.655281 -0.216644 0.084817 -0.008069 -0.227472 0.211295 0.170570 0.238633 -0.178296 -0.200780 0.126774 0.024483 0.143725 0.054188 0.044637 0.024270 -0.346885 -0.054768 0.164718 0.172009 -0.028512 0.280300 0.245992 0.020062 -0.272308 0.053903 0.184810 -0.070118 -0.023637 0.080743 -0.312188 0.206983 0.071887 -0.131610 0.164299 0.014198 -0.151387 0.149505 -0.138776 0.124425 -0.273058 0.036986 -0.179815 -0.025360 -0.305681 0.047856 -0.115002 -0.210435 -0.109436 -0.120825 0.374594 -0.138400 -0.188493 0.144744 0.126960 0.232492 -0.421751 0.316784 -0.219512 0.409505 -0.088098 -0.022369 0.017259 0.023554 -0.100732 -0.045874 0.106894 -0.067312 0.081307 0.321013 0.201993 -0.008140 0.038491 0.330447 -0.009601 0.238202 -0.079212 0.175310 -0.054004 -0.155360 0.181167 -0.089916 -0.019862 0.018440 0.062539 0.459409 0.270845 0.182924 0.319635 0.176784 0.315211 -0.140248 0.051295 -0.046047 0.364370 -0.126165 -0.112933 0.002202 0.271802 -0.041206 0.081084 -0.386650 -0.593432 -0.173115 -0.404323 0.039810 -0.122776 0.026490 0.006120 0.030542 -0.344434 -0.192672 0.065994 -0.142934 0.507819 0.075069 0.041887 0.273320 0.293658 -0.248393 -0.116139 0.197411 0.215403 0.001451 0.042686 -0.325962 0.224545 -0.330766 0.026241 0.383994 -0.219355 0.087088 0.022670 0.358410 -0.278338 0.500808 0.128074 -0.264919 0.370311 0.258403 0.333225 0.160960 -0.176804 -PE-benchmarks/z-algorithm-linear-time.cpp__std::remove_reference, std::allocator >&>::type&& std::move, std::allocator >&>(std::__cxx11::basic_string, std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/mergeSort_LinkedList.cpp__MergeSort(Node**) = -0.508946 -0.773919 3.070680 2.001079 -0.440142 0.252189 0.346019 -1.489269 1.348726 -0.168554 -0.573375 0.751462 -1.507677 0.392452 -0.562593 0.863082 -2.586141 -1.483297 -0.550505 -1.319079 -0.517107 -0.932967 0.916503 0.669924 1.420644 0.774028 -1.335438 0.029428 -1.789218 -1.818202 0.770698 -0.646113 1.204739 0.339972 0.237017 -3.454879 1.925465 1.348218 -0.683381 -1.461426 1.316904 -1.353130 0.001215 -1.004330 -0.745242 0.606805 0.295832 0.319174 1.564834 0.358087 0.123220 0.269182 0.028586 2.075652 -1.259300 0.909151 0.656912 -0.760189 -0.713956 -0.040193 0.118491 -0.197073 0.938366 0.737935 -0.895665 -1.840995 0.234350 -0.985377 -1.569697 1.531816 -0.133569 -0.443028 -1.081196 -0.466570 -1.912796 -0.423066 1.585454 1.506865 2.202244 -1.074588 1.318367 -0.204567 0.302755 -0.069805 0.572894 0.262945 1.598586 0.308566 -0.337341 -0.809394 -1.368766 -0.509452 0.122166 0.938070 -0.276802 -0.880740 0.874315 -2.844588 -1.913773 0.085761 0.870560 -0.898759 -1.701522 0.142626 0.839787 0.866846 -0.200994 -1.461601 -0.007040 0.572371 -0.419420 -0.235148 -0.213555 -0.578948 -0.768579 -0.549972 -2.240917 0.598768 -0.110180 -0.393636 -0.630836 1.535197 -0.887076 -0.032076 0.206021 1.188059 -0.816317 1.642481 -0.525755 0.865497 0.208168 -0.009296 -0.625586 -0.589020 0.708343 1.141155 -1.167353 -0.596761 -1.003080 0.232627 -1.619140 -0.463410 -0.718097 1.442201 1.352505 -1.367143 -1.354527 -0.470580 -1.054983 -2.618723 0.090457 -1.030576 -0.934580 0.935113 1.297935 0.931308 1.339073 2.517740 -0.987448 0.700109 0.153388 -0.820740 1.728745 -0.404686 1.379529 -1.133809 -0.924376 0.932282 -0.081231 0.886252 -0.171331 0.194901 0.256190 -1.956205 -1.023101 1.032979 0.739890 0.765622 1.164125 1.454287 1.529534 -1.557376 0.449232 1.387711 -0.442546 -0.296823 0.439268 -1.502470 0.673790 0.629988 0.246688 1.955980 0.097721 -1.181991 0.315907 0.051701 0.726728 -1.541800 0.204561 -0.866856 0.681509 -1.036050 -0.833671 -0.816309 -0.903721 -1.039991 -1.234514 2.079834 -1.301430 -2.406900 2.123611 -0.442790 1.920047 -3.101899 1.009558 -1.297625 2.015669 -0.503649 0.156263 0.015332 -0.674339 -1.558437 0.862682 0.477998 -0.357920 0.928620 1.780656 1.189272 0.553732 -0.458910 1.598437 -0.177806 1.839380 -0.596939 1.365428 -0.471892 -0.744499 0.213135 -0.371933 -0.659271 -0.137751 0.551680 1.113720 1.203302 1.007210 1.603850 1.322151 1.936903 -0.879555 0.960658 -0.456776 1.033520 -0.551329 -1.039980 0.711591 1.237864 -0.291127 0.835039 -2.377117 -2.972574 -1.875888 -2.979745 0.139382 -0.686210 0.593352 -0.163474 -0.077429 -1.867522 -0.922147 1.223951 -0.050793 3.353449 0.900123 0.184132 1.174066 1.735024 -1.234612 -0.452322 0.228039 0.892350 0.045435 -0.340893 -2.187766 1.770112 -1.377651 0.496133 2.383238 -1.436618 0.617992 -0.479458 1.095371 -1.672121 2.312782 0.578736 -1.290367 1.706118 0.625558 1.218754 0.648958 -1.108580 -PE-benchmarks/mergeSort_LinkedList.cpp__FrontBackSplit(Node*, Node**, Node**) = -0.710824 -1.171667 5.719840 3.900032 -0.652620 0.430780 0.796529 -2.907167 2.767418 1.228129 -0.502474 1.182252 -2.078251 0.764995 0.051255 2.668858 -4.205880 -2.042661 -0.865322 -3.075560 -1.411947 -1.195151 1.447823 0.045896 2.684470 0.545297 -2.135032 -0.683562 -1.922057 -4.123532 1.273728 -1.254400 2.038490 -0.258540 0.368417 -7.582445 3.837117 2.074630 -1.539761 -2.488823 2.085455 -1.713924 0.303410 -0.853543 -0.895814 1.066977 0.526129 0.605720 2.911853 1.507103 1.109245 0.790404 1.027382 5.051662 -2.303129 1.649259 0.882417 -1.679957 -1.593542 0.558907 0.366969 -0.303695 1.687275 0.825972 -0.554808 -3.691146 0.067128 -1.468026 -2.818355 2.296826 0.154501 -1.703644 -1.893560 -1.044857 -2.165935 -1.277393 -0.547736 2.539522 3.737901 -2.151930 2.258608 0.009152 0.304672 0.236864 1.065805 0.420578 2.932362 0.603390 -0.589662 -0.905853 -0.935551 -1.382629 0.884318 1.405918 -0.689951 -2.784109 1.621033 -2.772244 -3.188277 1.005281 2.069706 -1.165924 -3.602527 -0.913288 1.443142 1.436033 -0.950739 -2.561409 -0.729434 0.660680 -0.613985 -0.654415 -0.684765 -1.967091 -1.284423 -0.291342 -3.857358 1.117585 -0.134260 -0.390687 -2.022231 2.569960 -0.942632 -0.528847 0.108076 2.419286 -1.742969 2.781773 -0.963330 2.423753 0.398048 0.622484 -2.584338 -0.379244 1.642557 1.194190 -0.958508 -1.120436 -2.325768 0.617213 -2.964899 0.645039 -0.575286 3.309387 3.638708 -1.535865 -2.383522 -0.671214 -0.988173 -4.105860 0.874924 -1.909040 -1.228730 1.065893 2.257654 1.307965 2.504725 3.137935 -2.093000 1.531965 -0.552817 -0.850855 3.272566 -0.377770 2.499920 -1.939345 -1.107123 1.024519 0.793698 1.324022 -0.059743 0.075615 0.802738 -3.089528 -1.292271 1.237203 1.081683 0.249096 1.651431 2.511413 5.730256 -2.701354 0.394379 2.422481 -1.096343 -0.365530 0.811109 -2.551761 0.701073 1.210918 0.051545 3.517820 0.133309 -2.004577 0.415540 -0.176710 0.787435 -1.887606 0.492660 -1.506127 0.560796 -1.007043 -1.206393 -2.081524 -1.287210 -1.647957 -1.603470 3.658845 -2.307030 -3.512152 3.911723 -1.991378 1.925652 -4.986769 4.317833 -2.309992 1.798196 -2.075761 -0.284190 -0.468951 0.304673 -2.940788 1.891650 0.888563 -0.650282 1.393229 4.134908 1.980474 0.951206 -1.130353 3.026964 -0.761380 3.264869 -0.915231 3.341287 -1.234967 -0.527922 -0.386416 -0.498530 -1.146010 -0.684974 0.869029 1.445145 1.373315 0.889386 1.689942 2.207563 3.308998 -1.674200 2.790330 -0.544497 1.747112 -1.004193 -1.469707 1.701479 1.733132 -0.518532 1.576559 -4.142539 -3.638960 -2.791598 -3.733542 0.004167 0.836437 0.937331 -0.629561 -0.325862 -3.153407 -1.742627 2.766852 -0.208678 3.085850 1.656580 0.543331 2.082246 3.018024 -1.270393 -0.898575 -0.874835 0.377965 0.500814 -1.213186 -2.874386 3.320293 -2.392166 0.678578 3.602611 -1.860186 0.915465 -0.425180 2.163994 -2.682522 3.623048 0.609804 -1.287710 2.956903 2.390655 3.019590 -0.150461 -1.704921 -PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -1.024922 -1.422594 6.369258 4.243229 -0.755316 0.628617 0.536529 -3.164385 2.998655 1.041908 -0.827022 1.536463 -2.348828 0.663355 0.138034 2.410044 -4.872022 -2.492884 -0.939024 -3.189799 -1.697173 -1.582419 1.071275 0.695565 2.764766 1.188389 -2.516889 0.037354 -2.514485 -4.818730 1.059220 -1.260995 2.250141 0.174894 1.027999 -8.065782 4.237095 2.530865 -1.380125 -2.976813 2.076577 -2.102001 0.226572 -1.006217 -0.885269 1.540486 0.817315 0.745493 3.125002 1.325473 0.822487 0.514596 0.615729 4.842213 -2.128010 1.890755 1.249405 -2.029486 -1.590298 0.363144 0.331037 -0.719765 1.921079 1.100345 -1.236265 -3.839221 0.632189 -1.534461 -2.989362 2.796373 0.522407 -2.122793 -1.999853 -1.531160 -2.813500 -1.332218 0.843690 2.770933 4.294331 -2.094427 2.677033 0.085094 0.806474 0.328943 1.607996 0.232222 3.951665 0.627983 -0.998149 -1.036915 -1.736364 -1.887894 0.643340 2.092467 -0.726138 -2.021629 1.540443 -4.272729 -3.701755 0.973734 1.986223 -1.378691 -4.391122 -0.567409 2.076658 1.473762 -0.488923 -2.850280 -0.714556 1.016446 -1.398319 -0.616602 -0.707802 -1.889208 -1.501289 -0.131330 -4.392481 1.290758 0.192962 -0.371361 -2.105172 3.108285 -1.214019 -0.292982 0.172788 2.528046 -1.676588 3.007786 -0.923778 2.240907 0.279274 0.197742 -2.629378 -0.568618 1.397695 1.098441 -1.469061 -1.610063 -2.089219 0.717980 -3.343761 0.480300 -1.383655 3.876097 3.941885 -1.895346 -2.823231 -1.068212 -1.578889 -4.562858 0.757615 -2.040976 -1.791582 1.031152 2.557792 1.662970 2.484536 3.616804 -2.290655 1.751771 -0.415307 -0.941768 3.417192 -0.532882 2.773154 -2.349936 -1.210897 1.471050 0.719392 1.574026 -0.063879 -0.201671 0.879510 -3.445992 -1.987559 1.948587 1.164564 1.159805 2.094487 2.963652 6.272575 -3.226004 0.459300 2.523696 -1.043677 -0.630018 0.993892 -2.683905 0.897736 1.351121 0.536551 4.359662 0.113446 -2.247231 0.318130 0.291366 1.030773 -2.478015 0.615819 -1.678429 1.195855 -1.123209 -1.559939 -2.530736 -1.409930 -2.148850 -2.145415 4.199631 -2.420204 -4.851749 4.552069 -2.299935 3.084178 -5.974782 3.383886 -2.555499 2.535630 -2.148954 -0.115648 -0.455033 -0.454620 -3.109824 2.451249 0.970524 -0.759452 1.601425 4.101297 2.169192 1.287238 -1.154529 3.106597 -0.712399 3.458984 -1.095305 3.366352 -1.268243 -0.422027 -0.495975 -0.615335 -1.192701 -0.248361 0.776097 1.179054 1.869695 1.085738 2.043876 2.672261 3.271849 -1.836290 2.635972 -0.630599 1.874582 -1.285811 -1.979911 1.657313 2.033252 -0.468303 1.498396 -4.743753 -4.259137 -3.196592 -4.991677 -0.312908 0.682584 1.094923 -0.253342 -0.393394 -3.416452 -1.782529 3.579926 0.193635 4.941445 1.684864 0.481580 2.422658 3.368448 -1.547314 -1.224344 -0.706841 0.429969 0.144336 -1.182175 -3.643201 3.772808 -2.593547 1.151314 4.247737 -2.462900 1.203883 -0.761298 2.473804 -3.284285 4.097332 0.889927 -2.017939 2.836635 2.133255 3.333130 -0.187742 -2.108506 -PE-benchmarks/mergeSort_LinkedList.cpp__printList(Node*) = -0.241571 -0.480069 1.918576 1.309969 -0.386153 0.190800 0.013841 -0.887690 0.839069 -0.002611 -0.370842 0.442837 -0.779420 0.200404 0.073939 0.560196 -1.629721 -0.771513 -0.320325 -0.827258 -0.478205 -0.524165 0.256809 0.402195 0.776318 0.809969 -0.742598 0.229911 -0.769566 -1.202863 0.359550 -0.334665 0.694969 0.592670 0.494891 -2.176076 1.194447 0.787486 -0.343334 -0.962387 0.562287 -0.702908 0.073274 -0.524884 -0.274052 0.566920 0.248522 0.343856 0.868183 0.260928 -0.029061 0.002466 0.081210 1.105517 -0.490853 0.529463 0.478907 -0.595440 -0.361609 -0.083266 0.104089 -0.220225 0.527970 0.374347 -0.523715 -1.110331 0.175908 -0.603162 -0.836663 0.909518 0.160199 -0.506012 -0.702234 -0.628536 -0.934255 -0.323303 0.194790 0.981680 1.314081 -0.705783 0.774382 0.046312 0.310457 0.088523 0.527286 0.080370 1.218937 0.212601 -0.291415 -0.163171 -0.673602 -0.731385 0.181480 0.464688 -0.256814 -0.459420 0.412142 -1.632583 -1.104473 0.228267 0.542167 -0.438887 -1.135438 0.010651 0.594139 0.464234 -0.042626 -0.786229 -0.002566 0.327145 -0.388459 -0.120617 -0.238336 -0.203120 -0.476434 -0.140393 -1.397307 0.448469 0.087050 -0.102865 -0.276487 0.967630 -0.386312 -0.048901 0.047921 0.587707 -0.470292 1.143322 -0.199756 0.499957 0.025534 -0.021010 -0.467453 -0.072975 0.391831 0.439346 -0.578464 -0.535714 -0.458693 0.181963 -0.995721 -0.107154 -0.479539 1.017533 1.049833 -0.668159 -0.899733 -0.435391 -0.813432 -1.476449 0.137716 -0.603860 -0.487360 0.521355 0.772188 0.706324 0.713585 1.206784 -0.739485 0.360589 -0.095937 -0.309650 0.930747 0.113932 0.801579 -0.707494 -0.366164 0.583010 0.014184 0.503209 0.070049 -0.100185 0.253575 -1.047596 -0.601083 0.867753 0.422681 0.512063 0.735075 0.945006 1.327179 -0.788508 0.141053 0.735565 -0.248803 -0.261176 0.372471 -0.771220 0.414001 0.339254 0.252868 1.223686 -0.007172 -0.513255 0.085332 0.109646 0.360582 -0.830638 0.112115 -0.476243 0.474205 -0.524508 -0.280086 -0.720298 -0.461825 -0.639353 -0.690571 1.296744 -0.717962 -1.416282 1.322520 -0.559130 1.202414 -1.659154 0.563553 -0.745133 1.059814 -0.465679 -0.041399 -0.036084 -0.597057 -0.852508 0.606680 0.298851 -0.129723 0.259864 0.975690 0.669077 0.253106 -0.243388 0.892379 -0.182747 1.083550 -0.334330 0.856766 -0.323222 -0.032106 -0.007027 -0.196598 -0.389056 -0.018903 0.186066 0.574384 0.619897 0.593501 0.769553 0.690262 0.924465 -0.560211 0.560482 -0.186618 0.552524 -0.463368 -0.657406 0.423444 0.749447 -0.144604 0.308717 -1.406940 -1.493547 -1.089191 -1.524108 -0.231699 -0.048129 0.350915 0.011666 -0.143603 -0.860037 -0.557877 1.082254 0.058173 1.805249 0.399170 0.059230 0.779862 1.035349 -0.576406 -0.412291 0.050392 0.284866 0.016075 -0.102246 -1.335025 1.185678 -0.756094 0.283791 1.472851 -0.893632 0.430821 -0.311872 0.967775 -1.024092 1.281306 0.306962 -0.857845 0.784501 0.592319 0.820570 0.207421 -0.692198 -PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.185067 -0.640419 2.800953 1.809203 -0.386163 0.168985 0.504550 -1.310831 1.403459 0.101989 -0.273256 0.527102 -1.066971 0.544867 -0.787177 1.179277 -2.122705 -1.106551 -0.466758 -1.490972 -0.720760 -0.525469 0.828419 -0.103440 1.308030 0.262460 -1.033957 -0.556473 -1.195126 -1.254030 1.027063 -0.628115 0.837042 -0.436397 -0.036738 -3.851025 1.683092 0.942568 -0.892919 -1.242053 1.073719 -0.981950 0.138210 -0.790408 -0.496871 0.117499 0.170961 0.685653 1.305634 0.610687 0.354651 0.639519 0.321900 3.294890 -1.340987 0.820974 0.570987 -0.426070 -0.710825 0.371043 0.254436 0.031173 0.624439 0.368819 -0.137489 -1.771253 -0.242458 -1.019783 -1.151098 1.098494 -0.009086 -0.419691 -0.964031 -0.303423 -1.409755 -0.605807 -1.091860 1.388435 1.890922 -1.487458 1.014097 -0.033857 0.317638 0.287222 0.392116 0.386569 1.158552 0.384142 -0.154692 -0.452407 -0.703012 -0.013868 0.416267 -0.001794 -0.433394 -2.475914 1.039427 -1.526397 -1.543004 0.480262 1.023925 -0.546049 -0.978935 -0.458509 0.475368 0.695211 -0.910553 -1.216049 -0.336788 0.271346 0.088387 -0.233877 0.151604 -0.840719 -0.357762 -0.623103 -1.927537 0.580749 -0.136947 -0.225737 -0.756489 1.320485 -0.461822 -0.310484 0.017398 1.051844 -0.966026 1.585702 -0.411402 1.021513 -0.142475 0.583826 -1.307127 -0.017456 0.994977 1.086992 -0.584147 -0.202407 -1.135842 0.319565 -1.362121 -0.058412 -0.228084 1.149602 1.184900 -0.957126 -1.167299 -0.449402 -0.362815 -2.027326 0.269506 -0.921292 -0.807193 0.640314 1.144314 1.130446 1.338218 1.652842 -0.938922 0.737251 -0.279323 -0.444506 1.513268 -0.208114 1.172868 -0.845751 -0.719705 0.396711 0.161481 0.744199 0.009579 0.075818 0.329106 -1.631400 -0.285840 0.347500 0.866566 -0.285228 0.935816 1.238461 1.654607 -1.672344 0.209959 1.219180 -0.695078 -0.099977 0.331202 -1.326510 0.426811 0.627339 -0.177718 1.398944 0.117893 -0.915357 0.374714 -0.294445 0.467147 -0.786194 -0.087205 -0.718851 -0.363638 -0.731024 0.062176 -0.913019 -0.518840 -0.817624 -1.139556 1.761278 -1.786525 -1.219677 1.759236 -0.431585 0.808854 -2.180153 2.143490 -1.107080 1.211097 -0.577812 0.008256 -0.167328 0.355730 -1.508064 0.744576 0.481490 -0.496020 0.596542 2.050174 1.018255 0.501855 -0.444667 1.696162 -0.569900 1.539247 -0.496848 1.539548 -0.629561 -0.890249 0.098116 -0.268672 -0.554580 -0.498080 0.861912 1.264783 0.581663 0.852182 1.068356 1.086760 1.804342 -0.867924 1.077609 -0.397595 0.878117 -0.553890 -0.574098 0.729122 0.870042 -0.335256 0.699194 -2.006565 -2.159615 -1.913006 -1.562551 0.402537 -0.231158 0.142457 -0.520440 -0.142896 -1.728144 -0.971839 0.987040 -0.471468 1.050022 1.009815 0.291651 1.076614 1.554050 -0.932351 -0.244914 0.067092 0.483562 0.381183 -0.452656 -1.583751 1.621586 -1.303716 0.131182 1.949747 -0.843973 0.463917 0.194843 1.105468 -1.143200 1.977178 0.372836 -0.825229 1.435545 1.520012 1.674216 0.507467 -0.831835 -PE-benchmarks/mergeSort_LinkedList.cpp__main = 0.037066 -0.634699 1.666349 0.934805 -0.846431 -0.119282 0.426055 -0.246173 0.908641 -1.695842 -0.713960 0.140446 -1.227832 0.464402 -0.678990 0.058484 -2.497742 -1.182967 0.197616 -0.107241 -0.036329 -0.760329 0.958923 0.475731 0.630037 1.684465 -0.523788 -0.305612 -0.857605 1.119510 1.877852 -0.885951 0.844758 1.898461 -0.088653 -2.971553 0.629162 -0.135427 -0.520433 -0.969090 0.701467 -1.233888 0.333995 -2.138688 -0.692500 -0.061075 0.541382 1.838194 0.818834 -0.306526 -1.336592 -0.438346 -0.573322 1.748926 -1.099749 0.113474 0.591829 -0.257758 -0.335111 -0.488934 0.297990 -0.184309 0.600424 1.098595 -0.960805 -0.871807 -0.108307 -1.877288 -1.176812 1.022349 0.253120 1.689826 -1.117035 0.407892 -1.318482 -0.067178 0.265145 1.752190 1.829887 -1.233895 0.951547 -0.124265 0.926944 -0.059279 -0.011084 0.749550 0.574474 0.282063 -0.502056 -0.468985 -2.199202 -0.178902 -0.012290 -1.085161 0.549011 -1.893003 0.136499 -1.814035 -0.840652 -0.242165 0.254071 -0.069730 0.245408 0.297481 0.752972 0.893197 -0.656940 -0.869823 0.332852 -0.327755 -0.407818 0.210327 0.521237 0.692642 -0.545840 -1.783236 -1.466345 -0.082145 -0.312852 -0.660933 1.017805 0.894168 -1.044071 0.147222 0.196373 0.107933 -0.526855 1.761826 0.192032 -0.344962 0.658478 -0.443080 0.776168 -0.115207 0.743653 2.897820 -0.710671 -0.602906 -0.409112 0.139316 -0.980239 -2.068805 0.454200 -0.052641 -0.200245 -1.386616 -0.900025 -0.636836 -0.525502 -1.943540 0.006708 -0.876699 0.059567 1.607342 0.926087 1.127333 1.201820 1.779915 -0.965379 0.865081 -0.258413 -0.137101 0.869281 1.137252 0.913191 -0.440013 -0.406201 0.402004 -0.771068 0.650294 -0.065817 -0.488802 0.143239 -1.566559 -0.651150 0.523491 1.160663 0.251737 0.512597 0.464467 -1.606317 -1.270509 0.312753 1.100754 0.189929 -0.390993 0.695685 -0.993540 1.310018 0.062285 -0.389436 -0.020200 0.046527 -1.047898 0.220983 0.035066 0.370103 -0.709829 -0.850962 -0.275763 -0.226991 -1.348470 0.926207 -0.452654 -0.848914 -0.595315 -0.649924 1.226190 -1.220426 -0.755505 0.787464 0.124133 1.969682 -1.592772 0.302550 -0.910392 1.830536 0.140699 -0.152231 0.186398 -1.178452 -0.660813 -0.187353 0.379672 0.169050 0.121797 0.576997 1.115115 0.360518 0.414918 1.210273 0.389317 0.845842 0.026602 0.046511 -0.399478 -0.806620 0.968162 -0.293417 0.010270 0.158160 0.932486 2.199521 1.057462 1.742206 2.459033 0.558556 1.087103 -0.676590 -0.681867 -0.553036 1.192866 -0.277174 -0.354809 -0.220837 1.062586 -0.597322 0.604252 -1.314273 -3.250236 -1.619652 -1.400007 -0.203707 -1.417958 0.127507 -0.134825 0.601502 -1.399404 0.002018 -0.775263 -0.524056 2.111385 0.636700 -0.219082 0.869715 1.180442 -1.680793 -1.023906 1.748910 1.457942 -0.120471 0.924258 -2.513375 0.912638 -1.403643 0.238845 2.039531 -1.235172 -0.349798 -0.735673 2.259542 -0.713425 2.009810 0.806223 -1.599874 0.901756 0.314634 0.513304 2.222996 -0.751361 -PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -0.575114 -1.307634 1.885057 1.384761 0.210108 0.460126 0.872676 -0.225506 0.506173 0.641872 -0.538421 1.034261 -1.437220 0.007716 -0.079932 0.227288 -1.112125 -1.336693 0.032672 -0.188659 -0.474109 -0.911688 -0.127482 1.200975 0.942697 0.205392 -0.781346 -0.265013 -2.058394 -0.904719 -0.249563 -0.172972 0.861679 0.225840 0.636430 -1.851455 0.701798 1.297462 0.028411 -1.450107 0.560264 -0.855548 0.151008 -0.244036 0.011323 0.568006 1.016180 0.650456 0.586929 0.338451 0.131429 -0.586994 0.112701 1.533287 -0.025594 0.991530 1.136210 -0.402826 0.081553 -0.290117 0.161264 -0.981701 0.654672 0.489762 -0.859590 -0.426216 0.190163 -0.518429 -0.779001 0.743741 0.652801 -0.303191 -0.914722 -0.621306 -0.937102 -0.314561 0.512544 0.787539 1.833013 -0.855891 1.628166 0.516737 0.969257 -0.061614 0.784069 -0.041562 0.995335 0.172931 -0.733551 -0.384498 -1.708210 -0.427374 -0.471384 0.973358 -0.364578 -0.095368 0.547126 -1.237600 -1.682845 0.416187 -0.187989 -0.568944 -0.820439 0.707164 0.611237 0.754859 -0.173376 -1.246733 -0.695798 0.435974 -0.686596 -0.292290 0.054955 -0.175054 -0.579037 -0.487907 -1.446983 0.168190 0.580733 -0.824381 -0.537988 1.245635 -0.701412 1.185054 0.198771 0.358848 0.054105 0.985769 0.841852 0.079504 0.377687 -0.887433 -1.392032 -0.182479 0.304229 0.997264 -0.956177 -0.078489 0.140563 0.342458 -0.212489 0.175746 -0.325069 1.585706 0.714376 -1.079398 -1.160002 -1.058944 -0.463715 -0.873271 0.252894 -0.633563 -0.343395 0.018809 0.871823 0.450302 0.098800 1.908736 -0.645646 0.879806 0.314948 -0.408159 0.313624 -0.077593 0.771102 -0.958452 -0.764266 0.718180 0.737105 0.493566 -0.044554 -0.096748 0.282067 -1.053560 -0.962768 0.488508 0.237071 0.361258 1.328919 0.913912 1.730211 -1.191377 0.023814 0.321237 -0.100519 -0.309469 0.259420 -1.257003 0.786745 0.093416 -0.023231 1.515414 0.095678 -0.960077 0.849821 -0.000750 0.305777 -1.196084 0.671710 -0.733605 0.201319 -0.674931 -0.191383 -0.641233 -0.583405 -0.740399 -0.301961 1.691144 -0.346770 -1.791016 0.518394 -0.113991 1.110843 -2.278721 1.307949 -0.695370 1.011318 -0.359367 -0.355427 0.075861 0.156570 -0.197990 0.427605 0.449325 -0.423285 0.675417 0.997568 0.414251 0.350429 0.308926 0.753842 0.158084 0.418124 -0.345035 0.479117 -0.087558 -0.384509 -0.162453 -0.345292 0.349998 0.691609 -0.240793 0.604578 1.102883 0.044195 0.845428 0.996417 0.570237 -0.578141 0.099060 -0.207045 1.485876 -0.827606 -0.687934 -0.362491 0.491405 0.000000 0.565356 -1.691359 -1.612678 -0.286737 -2.113302 -0.373236 -0.021637 0.466720 0.352721 -0.115583 -1.512664 -0.724095 0.753759 0.084363 2.080232 0.645458 0.177543 1.222056 0.809058 -0.331170 -0.505398 0.281762 0.466431 -0.449324 -0.214959 -0.855779 0.497871 -1.310680 0.938743 1.296936 -0.769357 0.580898 -0.507662 1.066599 -1.460820 1.837480 0.715149 -1.460746 0.535627 0.742790 1.411502 -0.611863 -0.937934 -PE-benchmarks/longest-palindrome-substring.cpp__longestPalSubstr(std::__cxx11::basic_string, std::allocator >) = -4.385890 -11.014364 14.876520 10.055874 0.431625 4.553468 6.530202 -0.722196 0.396059 4.626126 -4.057529 9.662765 -9.136288 -2.436982 -0.330998 -0.805941 -8.078093 -8.997292 0.687276 -1.484827 -3.203069 -5.396650 -4.938930 13.752031 6.652477 0.379769 -4.877552 -2.288686 -15.519091 -5.553386 -4.999702 -0.067479 6.190818 1.167795 7.904721 -12.441471 4.258943 10.247019 1.219276 -10.271354 3.287083 -3.995686 0.522645 0.212756 -3.442268 4.111951 9.191010 4.319517 2.235589 2.666663 0.381565 -5.148359 4.196172 12.241044 4.505848 8.353204 9.942969 -4.035822 4.307389 -2.942301 0.813855 -9.725223 3.649328 0.859895 -4.430851 -1.913588 1.221031 -2.095729 -2.831841 3.797782 7.039948 -3.845645 -5.692376 -5.294504 -9.387081 -3.489551 4.470017 5.457703 12.890479 -6.533599 13.101351 6.229120 8.133602 0.250574 7.333542 -0.076115 7.679104 1.530586 -5.123532 0.663346 -13.273566 -2.954807 -3.599493 5.942624 -4.741811 -3.539573 4.163213 -12.884593 -13.553968 5.980077 -1.925717 -6.042354 -2.651543 3.099857 4.099868 3.910176 -2.425394 -8.724378 -5.780724 4.676731 -6.414994 -1.719907 0.959519 0.427086 -0.932999 -1.333291 -9.689976 3.614244 6.838755 -4.816601 -2.850156 10.428739 -2.513917 11.375390 1.590167 2.595730 0.573236 5.864911 8.624832 -0.764110 -1.081342 -7.838933 -8.787096 -0.692090 0.651806 1.998873 -6.951512 -2.864695 3.453371 4.500838 2.215850 5.662386 -1.078779 13.425785 2.145372 -6.289848 -8.432233 -10.249813 -6.689742 -4.789650 1.105723 -2.758415 -6.779459 0.910435 5.415783 2.720985 -1.532302 7.447223 0.061484 5.876501 2.009781 -2.667479 -0.307198 -4.026430 5.154171 -6.932864 -4.933873 5.424723 6.166180 6.809236 0.259381 -1.503046 2.521849 -5.070399 -7.199014 1.398176 2.208663 3.493670 11.532141 8.488183 14.236737 -5.891564 -2.255139 0.043567 -1.558532 -2.757350 1.514792 -8.302085 4.524382 0.910632 -2.467490 12.933960 0.293451 -4.910042 8.419136 0.479226 1.805626 -9.028664 5.856687 -5.095929 1.646987 -4.130750 -1.529066 -7.178894 -3.236282 -8.222368 -5.059616 13.358549 -7.627888 -11.890234 2.878693 0.151661 7.785894 -15.136537 10.425803 -4.010697 8.911996 -0.889609 -4.846816 0.448241 0.841017 -0.758937 4.115192 2.607309 -5.494624 4.490326 4.855980 2.145896 2.989398 2.869442 5.044859 -0.349564 2.384955 -3.984973 2.741936 -1.110138 -3.154634 -2.767573 -1.567966 2.724810 6.648131 -1.035883 0.032601 5.779801 -0.397362 2.496309 8.595626 1.285090 -3.974379 -1.784275 -1.995451 10.530681 -8.134490 -5.917768 -4.176582 3.476919 1.997448 2.504901 -13.876972 -8.630509 -6.810371 -12.340045 -4.312516 0.313196 2.992324 4.537742 -1.974414 -11.298317 -6.581291 7.926697 1.110107 8.729318 6.992922 1.600300 11.372144 5.324838 1.586077 -3.582897 1.876909 3.400469 -3.260860 -0.620028 -6.719084 2.988391 -10.124493 9.092883 9.526406 -4.741537 6.231800 -2.155286 6.203431 -12.615871 12.958704 5.292790 -13.920211 0.855960 7.611485 6.943666 -8.023993 -7.135511 -PE-benchmarks/longest-palindrome-substring.cpp__main = 0.148138 -0.810116 5.238960 2.028590 -1.073212 -0.255108 3.364431 -2.222411 2.653137 -0.785709 -0.841352 -1.192685 -3.493942 -0.120775 -1.318297 0.411926 -4.541470 -2.404193 -0.748387 -2.399746 -1.215694 -2.322552 3.172497 -0.000326 2.894434 1.646673 -0.949599 -1.934161 -1.742471 -1.006798 3.661856 -0.774396 1.314236 2.262324 0.022486 -6.160788 2.714798 0.567084 -1.377089 -1.065433 2.436243 -0.411390 -0.323351 -0.718949 0.130354 0.436493 1.067521 4.917619 2.966635 1.333352 0.496886 -2.040426 -0.501474 4.852371 -2.338258 1.028609 1.156891 -0.523893 -0.455034 1.655306 -0.378636 -1.171134 0.083139 1.992889 -0.626675 -0.979872 1.787580 -3.534567 -2.966494 3.426002 0.252775 -0.469497 -1.954505 -0.978275 -1.669646 -0.018442 -2.072025 3.296765 4.149844 -2.861608 2.495140 -0.092727 1.173526 -1.075280 -1.402376 0.207951 0.795016 -0.091188 -0.666497 -1.882819 -4.576966 -1.269573 -0.629991 -1.450660 0.288934 -4.389971 2.096902 -2.640094 -2.976007 -0.196226 1.320898 -1.434650 -1.019387 1.754638 0.926748 0.425173 -0.955692 -2.615520 -1.055140 0.470028 -2.001277 2.002353 0.621993 0.414880 -1.838583 -1.978243 -3.478176 0.987163 -1.183329 -1.274999 -0.783576 2.411814 -1.926223 1.069784 1.828752 1.860080 -1.049419 3.041734 0.873188 0.445878 2.077701 0.490266 -1.002266 -0.173792 2.054234 4.378030 -0.107826 -0.452255 -1.228410 0.569136 -3.303224 -1.080432 -0.405758 1.109503 1.159119 -3.944134 -3.014354 0.198506 -0.917284 -4.454202 1.056710 -1.863711 -1.076064 0.820975 1.488046 3.175877 1.432689 4.048294 -3.121934 1.295641 -0.359483 -1.392160 0.257698 1.374543 2.669920 -1.654763 -1.242148 -0.727416 -0.678094 1.054229 -0.704531 -0.885529 -0.038422 -4.608670 -1.497997 -0.222362 1.025876 -0.949759 -0.191387 3.040112 1.007366 -3.618918 -0.186681 3.236040 -0.561950 -1.599874 2.277287 -3.109718 2.245527 0.253981 -0.132461 1.788093 0.614228 -0.880506 1.678880 -1.362650 0.414196 -1.881268 -1.718136 -1.140284 -0.692658 -2.379330 1.055516 -1.604692 -1.282793 -0.541649 -1.657828 2.639260 -0.861171 -2.356890 3.595421 -0.618398 2.243857 -3.416420 4.432459 -1.148761 1.247133 -0.421618 -0.226160 -0.638856 -0.307614 -0.847935 0.487793 -1.128690 0.450501 2.230335 4.485205 1.655499 1.316579 -0.001433 3.748224 -1.051695 2.264833 -0.877668 1.252286 -1.619414 -2.941783 0.924497 -0.282700 -0.940011 -0.732495 0.992132 4.402129 2.354234 1.334966 4.073811 1.039822 3.208644 -0.866109 0.796876 0.236558 2.615632 -1.259983 -1.556737 1.834092 1.266359 -2.019703 1.467739 -3.842401 -5.799024 -1.729526 -5.241436 -0.632266 -3.313858 1.276670 -0.904069 -0.066888 -2.940390 -1.219489 -0.039341 -0.128158 2.309186 1.941832 -0.065183 2.452135 4.254773 -2.809477 0.174303 2.627475 2.972459 -0.494750 -0.724054 -3.689840 2.057960 -2.843268 0.578168 3.835135 -1.760307 0.768415 -2.479233 3.691299 -4.040376 3.505164 0.722220 -1.634164 2.924707 1.287693 2.809260 3.461892 -1.108799 -PE-benchmarks/longest-palindrome-substring.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__merge(Node*, Node*) = -1.201229 -1.463628 8.476475 5.549959 -1.696960 0.709350 -0.094205 -4.388197 3.583518 0.909810 -0.801325 2.005442 -2.200050 0.957050 0.126343 3.356393 -6.689921 -2.505444 -1.610675 -4.729077 -2.469368 -1.285252 1.124523 0.652350 3.464366 1.596049 -3.293381 0.266840 -1.994327 -6.355902 1.394516 -1.543447 2.773074 -0.522317 1.371893 -11.945799 5.751142 3.040956 -2.099822 -3.564597 2.644765 -2.298589 0.214196 -1.357565 -2.437406 1.512357 0.561813 0.389051 3.807403 1.751492 0.855693 1.518411 1.475738 7.586238 -2.434439 2.307024 1.620048 -2.773149 -2.307618 0.514788 0.507104 -0.490776 2.177445 0.696917 -0.665079 -5.480148 0.485411 -1.951800 -3.406838 3.321600 0.364358 -3.318467 -2.115206 -2.236416 -4.035142 -2.041502 0.443339 3.831012 5.016319 -3.225843 2.802667 -0.152495 0.362256 1.138416 2.024406 0.537681 5.108667 1.026748 -0.623147 -0.639011 -0.438924 -2.245562 1.663227 2.083181 -1.379892 -4.327572 2.247532 -5.852050 -4.420019 1.774706 3.197546 -1.908373 -5.416511 -2.353545 2.333200 1.628377 -1.169106 -3.155565 -0.852963 1.376761 -1.109687 -0.802764 -1.032522 -2.199300 -1.273960 0.303291 -5.675601 2.335833 0.270957 0.320690 -2.498696 3.943460 -0.872751 -1.101728 -0.109860 3.504817 -2.733305 4.245186 -1.796084 3.207411 -0.921685 1.356104 -2.644879 -0.722177 1.854287 0.404992 -1.580789 -2.609347 -2.987497 1.081064 -4.352501 1.095125 -1.609442 4.860337 5.155673 -1.504133 -3.528024 -1.370018 -2.714666 -6.368342 0.628551 -2.523609 -2.982491 2.560143 3.166010 2.365058 3.356875 3.476298 -2.499834 1.929710 -0.983611 -1.334013 4.615578 -1.202957 3.417337 -2.848192 -1.334179 1.802519 0.520843 2.650958 0.153726 -0.193825 1.232491 -3.958536 -2.089677 2.510383 2.029069 1.302394 2.389192 4.056572 8.768219 -3.691906 0.334997 3.146204 -1.908605 -0.671607 1.099191 -2.986848 0.295971 2.073048 0.225453 5.674025 0.083580 -2.462540 0.135967 0.245625 1.228843 -2.669992 0.659627 -1.912468 1.467367 -1.133879 -2.146908 -3.530787 -1.290289 -3.143754 -3.635347 5.367727 -5.231080 -5.505360 6.321693 -2.802787 3.732690 -7.128094 4.874854 -3.187858 3.871436 -2.713208 -0.360366 -0.588191 -0.864152 -4.550754 3.693634 1.192476 -1.113411 1.127244 5.406065 2.842184 1.611929 -2.048205 4.210336 -1.499509 5.027311 -1.570266 4.829688 -1.885260 -0.592924 -0.909583 -0.569419 -2.160663 -0.912500 1.761179 1.016833 1.462371 1.808578 1.905370 3.600066 4.337153 -2.439450 3.678011 -0.954077 1.813533 -1.695382 -2.515285 2.607673 3.290534 -0.333041 1.492866 -6.028705 -4.887048 -6.221975 -5.156842 -0.284721 1.395828 1.084074 -0.813529 -0.857819 -3.882424 -2.527310 5.603976 -0.094288 5.044547 2.462863 0.792918 3.175744 4.380053 -1.547697 -1.378886 -1.186839 0.243864 0.861565 -1.219570 -4.955574 5.334122 -3.075680 0.952709 5.601709 -2.840893 1.879449 0.158055 2.528563 -3.860599 4.847100 0.731819 -2.511402 3.467387 3.617507 3.426423 -0.200154 -2.587939 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -0.542798 -0.746036 3.530282 2.289233 -0.497388 0.316247 0.472375 -1.792621 1.729342 -0.190706 -0.448822 0.591970 -1.590502 0.362960 -0.291305 0.916312 -2.876499 -1.602065 -0.693484 -1.858123 -0.698207 -0.948911 0.833259 0.511866 1.550591 0.545171 -1.390283 -0.136472 -1.984730 -1.513656 1.180200 -0.658398 1.294451 0.375725 0.375251 -4.394558 2.185449 1.379181 -0.848466 -1.575528 1.363241 -1.606967 0.162529 -1.093128 -0.555859 0.594785 0.228681 0.483744 1.835407 0.338880 0.163914 0.393490 -0.267545 2.794204 -1.641707 0.983574 0.604362 -0.958825 -0.890552 0.283251 0.059565 -0.183961 1.074797 0.634065 -1.011099 -2.227875 0.345258 -1.246093 -1.736099 1.671973 0.227698 -0.766353 -1.139554 -0.614030 -2.053820 -0.733522 0.936153 1.781669 2.330233 -1.400936 1.423399 -0.185729 0.456875 0.138038 0.865192 0.300541 2.090574 0.233820 -0.370910 -0.768872 -1.927598 -0.677070 0.212247 0.745270 -0.329695 -1.250360 0.921832 -2.695771 -2.120290 0.213409 1.114690 -0.893615 -2.210460 0.021891 0.940844 0.874817 -0.303831 -1.630572 -0.223503 0.776827 -0.629995 -0.205237 -0.220961 -0.958830 -0.824198 -0.979539 -2.513050 0.857227 -0.091047 -0.148391 -1.060508 1.911816 -1.272746 -0.343535 0.224784 1.358086 -1.154397 1.864257 -0.752018 0.929852 0.353343 -0.216417 -1.387342 -0.587206 0.793647 1.724133 -0.970317 -0.683433 -1.258389 0.293789 -2.032991 -0.295626 -0.499299 1.796643 1.471189 -1.512152 -1.418329 -0.504652 -0.817144 -2.761133 0.212797 -1.087419 -0.934658 0.861786 1.461783 1.551795 1.552503 2.559284 -1.130736 0.986921 -0.094427 -0.800186 2.032036 -0.235457 1.610905 -1.300190 -0.842419 0.734695 -0.157310 0.966310 -0.109067 0.165056 0.305442 -2.273310 -1.148172 0.768568 0.784339 0.697226 1.340482 1.848747 1.988196 -2.304237 0.524154 1.572215 -0.686248 -0.320360 0.559018 -1.499123 0.599255 0.866329 -0.052744 2.274961 0.049207 -1.340866 0.087665 0.099713 0.795634 -1.486384 -0.002331 -0.924362 0.456293 -1.059775 -0.787262 -1.279120 -1.055406 -1.248009 -1.511291 2.339808 -1.285093 -2.763187 2.552625 -0.799994 1.932804 -3.468908 1.545065 -1.479074 1.878954 -0.913765 0.144643 -0.246164 -0.232447 -1.961549 1.253078 0.477648 -0.637403 1.026695 2.322826 1.386664 0.799129 -0.640171 1.912447 -0.380817 2.048513 -0.788385 1.804651 -0.739008 -0.737722 0.182095 -0.393883 -0.664204 -0.158310 0.725938 1.287043 1.306606 1.214837 1.540224 1.623251 2.064436 -0.939666 1.135960 -0.469765 0.981798 -0.555127 -1.092931 0.975227 1.159847 -0.246063 0.733618 -2.713473 -3.109004 -1.774902 -3.097128 0.389600 -0.457938 0.351910 -0.053544 -0.125195 -2.307692 -0.983565 0.969209 -0.116977 3.275912 0.901767 0.218749 1.342878 2.086753 -1.442538 -0.524639 0.374812 0.788520 0.078972 -0.580046 -2.538536 2.289710 -1.556394 0.575945 2.713201 -1.452022 0.747592 -0.422349 1.538857 -1.854962 2.552806 0.512126 -1.393985 1.819064 1.142989 1.695019 0.711243 -1.163889 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__split(Node*) = -0.333584 -0.982345 5.685381 3.868750 -1.022670 0.265496 0.092845 -2.664514 2.085083 0.908986 -0.615651 1.534110 -1.457002 0.816537 0.095774 2.670634 -4.269296 -1.630709 -1.065539 -2.797348 -1.484132 -0.638142 1.145079 0.271951 2.665764 1.307503 -2.322507 -0.234488 -1.138765 -4.532158 0.650889 -0.987981 1.916072 -0.161589 0.766871 -6.935979 3.714461 2.029760 -1.363147 -2.321061 1.975620 -1.074215 -0.049253 -0.869964 -1.400717 1.230013 0.499320 0.320770 2.469157 1.547329 0.631403 0.980377 1.447012 4.392938 -1.408015 1.443911 1.135141 -1.711769 -1.318015 0.093959 0.449019 -0.281391 1.201254 0.423680 -0.062426 -3.632049 -0.036668 -1.207168 -2.139280 2.143561 0.136618 -1.925634 -1.669684 -1.454037 -2.163411 -0.968387 -0.049433 2.554482 3.265047 -2.033083 1.694092 -0.060851 0.000619 0.333188 0.757420 0.325718 2.579736 0.809569 -0.107945 -0.502401 0.074622 -1.705439 1.095496 1.421514 -1.021385 -2.744308 1.671227 -3.323167 -2.810945 1.065853 2.252193 -1.356424 -3.062525 -1.241142 1.240529 1.279972 -0.576116 -1.841122 -0.359637 0.505134 -0.289666 -0.604991 -0.880243 -1.263367 -0.975882 0.600051 -3.739282 1.538724 -0.003076 0.042227 -1.324006 2.087340 -0.340635 -0.577279 -0.138603 2.314382 -1.649897 2.712352 -0.783480 2.380089 -0.232198 1.171841 -1.319699 -0.178263 1.542871 0.149565 -1.113001 -1.440869 -2.159056 0.669537 -2.597946 0.755374 -0.892839 3.124003 3.597972 -1.086555 -2.568122 -0.854715 -1.863299 -3.893561 0.507909 -1.681425 -1.592270 1.593340 1.890653 1.012879 2.196204 2.526483 -1.806560 1.003071 -0.416831 -0.811572 2.905296 -0.632607 2.086804 -1.744766 -0.920391 1.284154 0.507473 1.530999 0.065791 0.114692 0.945559 -2.566237 -1.144609 1.840850 1.174774 0.509116 1.380967 2.441490 5.391098 -1.552489 -0.034310 2.107106 -1.188748 -0.564833 0.864543 -2.181448 0.399218 1.047309 0.469166 3.506031 0.139373 -1.451616 0.590934 -0.091986 0.615163 -1.569716 0.675905 -1.244504 1.036555 -0.768057 -1.232258 -1.920533 -0.672912 -1.677491 -1.890908 3.501085 -3.006703 -3.267271 3.704508 -1.761512 1.998799 -4.340889 3.429993 -1.921721 2.067501 -1.525907 -0.289200 -0.183076 -0.825566 -2.924689 1.877043 0.765351 -0.348673 0.546261 3.487485 1.705698 0.474642 -1.235375 2.652602 -0.938506 3.541393 -0.765248 2.995125 -1.141718 -0.264361 -0.636132 -0.150007 -1.617051 -0.898881 0.811493 0.831151 0.636666 1.192211 1.255398 1.812937 3.121539 -1.687787 2.632390 -0.497774 1.389899 -1.146378 -1.582429 1.751453 2.107598 -0.381748 1.289246 -3.792925 -3.115104 -3.656093 -3.407459 -0.372504 0.789526 1.102924 -0.863460 -0.834704 -2.154169 -1.932883 3.492195 0.051905 2.955549 1.721790 0.374851 1.974741 2.601515 -0.988944 -0.667677 -1.097412 0.368650 0.900199 -0.850405 -2.882323 3.215632 -1.883065 0.225546 3.730972 -1.871820 1.273172 -0.309548 1.772053 -2.503335 3.229988 0.382306 -1.585938 2.412219 2.200000 2.127245 -0.292401 -1.688808 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__insert(Node**, int) = -0.717306 -1.024629 5.254393 3.368212 -0.732341 0.437454 0.447857 -2.683051 2.653526 0.566861 -0.464893 1.061305 -1.685949 0.781290 -0.626903 2.162970 -4.011493 -1.923645 -0.881781 -2.975435 -1.545490 -1.024742 1.061422 0.005573 2.229022 0.518059 -2.038494 -0.334904 -1.844685 -3.338654 1.424388 -1.143488 1.616879 -0.774740 0.415638 -7.460039 3.478154 1.784479 -1.490969 -2.261446 1.736963 -1.709917 0.262796 -1.048560 -1.041492 0.627120 0.381245 0.722482 2.538509 1.093079 0.793598 1.021029 0.537802 5.514929 -2.201330 1.523066 0.926447 -1.332148 -1.467080 0.670950 0.370479 -0.183833 1.380539 0.707986 -0.497003 -3.350638 0.130037 -1.487796 -2.259274 2.158041 0.214302 -1.538670 -1.510667 -0.935777 -2.559611 -1.301957 -0.667216 2.352925 3.444875 -2.247594 1.915272 -0.030512 0.616368 0.671599 1.150155 0.453384 3.008313 0.617142 -0.577850 -0.713526 -0.952824 -0.679692 0.809322 0.915489 -0.700510 -3.386445 1.568510 -3.211526 -2.878574 1.015575 1.908768 -0.951240 -3.009012 -1.114544 1.425124 1.086459 -1.165845 -2.274030 -0.723673 0.718650 -0.556237 -0.461482 -0.112810 -1.818561 -0.789423 -0.467659 -3.565690 1.117307 -0.029156 -0.154177 -1.797780 2.574752 -0.859901 -0.665985 0.021392 2.149337 -1.744303 2.640719 -1.000730 2.005290 -0.387974 0.808640 -2.483009 -0.345616 1.424145 1.147662 -0.946010 -1.042356 -2.039012 0.626763 -2.806079 0.355913 -0.840220 2.731724 2.857649 -1.387316 -2.194427 -0.791648 -0.941928 -3.867898 0.542932 -1.695756 -1.761065 1.073932 2.120737 1.832071 2.348649 2.660168 -1.701111 1.519930 -0.652157 -0.759572 2.959986 -0.698587 2.255331 -1.734723 -1.051595 0.868704 0.442426 1.434551 0.063681 -0.183860 0.674208 -2.850233 -1.049780 1.033267 1.364925 0.244333 1.604001 2.393981 4.695490 -3.092865 0.401565 2.184084 -1.149624 -0.287108 0.642819 -2.166080 0.481596 1.302951 -0.067799 3.178338 0.137438 -1.810803 0.244569 -0.080500 0.889383 -1.624184 0.103050 -1.288334 0.169149 -0.940282 -0.708134 -2.129134 -0.912983 -1.761848 -2.190083 3.321514 -3.111986 -3.176688 3.803755 -1.459186 2.012151 -4.463774 3.470896 -2.099088 2.246264 -1.620131 -0.006808 -0.475748 0.316046 -2.812337 2.067165 0.830216 -0.881741 1.136424 3.716535 1.868583 1.223482 -1.066429 2.921263 -0.947630 2.880107 -0.935440 3.024626 -1.202153 -0.990525 -0.241040 -0.490125 -1.087737 -0.635642 1.336806 1.280072 1.194116 1.155186 1.586574 2.271404 2.956178 -1.565701 2.194726 -0.651004 1.374148 -1.017562 -1.316369 1.505523 1.696205 -0.470449 1.127596 -3.815086 -3.478764 -3.486541 -3.255472 0.283410 0.430166 0.382044 -0.620553 -0.299230 -2.950096 -1.551115 2.765089 -0.393409 2.790636 1.641849 0.555548 1.977844 2.919184 -1.401644 -0.810125 -0.411449 0.325371 0.468838 -0.934959 -3.041038 3.257111 -2.226173 0.600352 3.463931 -1.705804 0.904033 0.227943 1.792128 -2.313389 3.381493 0.648867 -1.422140 2.441322 2.444146 2.988654 0.317592 -1.594661 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__print(Node*) = -0.488033 -0.876956 4.453014 2.864993 -1.104269 0.377025 -0.000589 -2.171888 1.846616 -0.615292 -0.740488 0.936967 -1.636354 0.457462 -0.183729 1.004911 -3.986998 -1.689332 -0.893357 -2.167307 -1.097841 -0.991629 0.592005 0.947595 1.767609 1.756160 -1.722759 0.440111 -1.789254 -2.204847 1.169537 -0.707939 1.546976 1.091196 1.010009 -5.617294 2.735039 1.701849 -0.901861 -2.018826 1.443922 -1.772074 0.038839 -1.450710 -0.987094 0.929467 0.336026 0.913311 2.001587 0.326017 -0.362889 0.395814 -0.094265 3.119512 -1.337554 1.123169 1.026980 -1.351075 -0.986402 -0.039234 0.135503 -0.363829 1.146751 0.653379 -1.177431 -2.730697 0.551650 -1.537104 -1.790579 2.068346 0.536503 -1.167359 -1.340252 -1.219172 -2.557132 -0.808150 1.138993 2.370812 2.788629 -1.718837 1.579323 -0.177076 0.552123 0.359612 1.194499 0.298050 2.880260 0.429589 -0.404711 -0.564005 -1.944830 -1.330221 0.497479 0.784270 -0.587323 -1.729204 0.983790 -4.065137 -2.470695 0.366258 1.416540 -1.219786 -2.501270 -0.260085 1.329725 0.914447 -0.178676 -1.667649 -0.009100 0.922585 -0.979927 -0.187893 -0.385214 -0.496868 -0.866784 -0.664307 -3.181798 1.337478 0.134141 0.135422 -0.694424 2.295980 -1.024668 -0.415315 0.128072 1.499203 -1.322456 2.507295 -0.834443 0.921644 -0.062438 0.044468 -0.672608 -0.416932 0.847532 1.369123 -1.346385 -1.447577 -1.215592 0.491818 -2.421136 -0.424704 -1.033655 2.243201 1.934138 -1.570440 -1.909563 -0.922031 -1.762625 -3.470195 0.070744 -1.259941 -1.525666 1.402316 1.741667 1.885191 1.723436 2.489283 -1.406768 0.977739 -0.177133 -0.783857 2.291008 -0.021171 1.853082 -1.606060 -0.826855 1.165495 -0.429825 1.445777 -0.062250 -0.021157 0.499300 -2.481335 -1.489887 1.618583 1.136961 1.255117 1.638394 2.373937 2.746568 -2.264446 0.405333 1.743347 -0.882282 -0.587602 0.863314 -1.573620 0.664432 1.014709 0.287993 2.989817 0.002592 -1.297955 0.035703 0.409956 0.862009 -1.803307 0.008591 -0.992711 0.899283 -1.187773 -0.765378 -1.733715 -1.019573 -1.801620 -2.182391 2.931107 -2.278437 -3.421356 3.265244 -1.184646 2.885966 -4.014716 1.166636 -1.716966 2.575037 -0.942600 0.025419 -0.109215 -1.363672 -2.415313 1.753029 0.573003 -0.555411 0.667668 2.366677 1.656949 0.847042 -0.816039 2.163107 -0.582441 2.643010 -0.971587 2.057285 -0.885418 -0.505785 0.022380 -0.385437 -1.079965 -0.127446 0.908590 1.313055 1.299628 1.785329 1.787804 1.854618 2.254458 -1.220101 1.189354 -0.593283 0.953364 -0.897436 -1.557880 1.157327 1.782913 -0.206412 0.676627 -3.305807 -3.658587 -2.980060 -3.606376 -0.036728 -0.449136 0.606852 -0.023870 -0.352400 -2.283052 -1.236502 2.139846 0.063159 4.238321 1.132187 0.149299 1.728289 2.448333 -1.560379 -0.760658 0.481193 0.906890 0.174063 -0.294539 -3.444635 2.946687 -1.678859 0.668542 3.608076 -2.010823 1.119165 -0.650560 2.162125 -2.296301 2.946038 0.586420 -2.153208 1.709552 1.411921 1.637693 0.885755 -1.529161 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.789443 -0.702282 1.656300 1.056237 0.145103 0.254162 0.739228 -0.595295 0.833717 0.605793 -0.070607 0.498032 -0.956896 0.161563 -0.489612 0.657158 -0.834992 -0.902829 -0.138707 -0.854567 -0.392576 -0.487954 0.412780 0.068559 0.835129 -0.453412 -0.666452 -0.653350 -1.357154 -1.105381 0.344643 -0.368280 0.677723 -0.886617 -0.261108 -2.728297 0.898207 0.924508 -0.515890 -0.954813 0.808996 -0.726023 0.264208 -0.073383 -0.328688 0.060340 0.349723 -0.140596 0.776125 0.447163 0.668552 0.280393 0.245834 2.337181 -0.854594 0.735234 0.454371 -0.279277 -0.570415 0.272255 0.115709 -0.252673 0.629891 0.223786 -0.287093 -0.888638 -0.101136 -0.434523 -1.010631 0.496703 -0.130369 -0.416413 -0.462573 -0.125376 -0.918483 -0.578942 0.001990 0.481373 1.321583 -0.816461 1.085096 0.026164 0.241599 0.154284 0.375762 0.223287 0.567524 0.141443 -0.260257 -0.440481 -0.366016 0.340308 -0.019276 0.847961 -0.257308 -1.056403 0.846294 -0.498789 -1.193291 0.414135 0.354577 -0.320849 -1.129260 -0.212842 0.227056 0.699116 -0.753745 -1.095974 -0.744459 0.318897 0.023521 -0.275082 0.102785 -0.888200 -0.385433 -0.549895 -1.105452 0.197393 0.064937 -0.482665 -1.055129 0.983002 -0.501927 0.245474 0.130723 0.843676 -0.528635 0.870621 -0.070003 0.629790 -0.026624 0.016031 -1.637803 -0.628387 0.494151 0.966161 -0.493667 -0.091727 -0.675407 0.135071 -0.581371 0.194022 -0.060865 1.023963 1.167689 -0.588863 -0.612747 -0.334374 0.159231 -1.286837 0.164935 -0.617146 -0.242837 0.270834 0.757524 0.359299 0.646916 1.645988 -0.492651 0.719980 -0.048345 -0.664362 0.890378 -0.411895 0.814425 -0.644712 -0.674018 0.190500 0.551297 0.539785 -0.054591 0.173420 0.120108 -0.994985 -0.377535 0.001375 0.419351 -0.209555 0.700094 0.775158 1.817300 -1.400025 0.133721 0.563533 -0.458136 0.068690 0.022745 -1.034393 0.169628 0.468276 -0.502064 1.073253 0.124769 -0.903149 0.464800 -0.321892 0.305580 -0.739630 0.396365 -0.665316 -0.167800 -0.430227 -0.545558 -0.587925 -0.462107 -0.590501 -0.557594 1.221334 -0.810341 -1.068616 0.808105 -0.007706 0.317763 -1.918996 1.831473 -0.741795 0.791495 -0.695083 -0.020402 -0.183155 0.976755 -0.618023 0.461619 0.338374 -0.563858 0.769017 1.631509 0.569609 0.419995 -0.226341 1.100399 -0.159026 0.684561 -0.348114 0.993906 -0.327159 -0.722068 0.054431 -0.261553 -0.033217 -0.019255 0.357172 0.583910 0.695269 -0.061943 0.525901 1.038181 1.061300 -0.460233 0.734806 -0.188438 1.072666 -0.301556 -0.333920 0.195240 0.635358 -0.042851 0.540352 -1.380254 -1.311099 -0.653255 -1.454703 0.388663 0.288079 0.055711 -0.156151 0.045352 -1.490652 -0.602522 0.623809 -0.333852 1.153462 0.598342 0.381406 0.819872 0.914452 -0.454673 -0.248391 -0.094596 0.203368 0.012596 -0.511319 -0.571258 0.691614 -1.043832 0.368979 0.841238 -0.368074 0.288385 0.336841 0.421650 -0.884005 1.480928 0.342271 -0.397704 1.154885 0.894274 1.436844 -0.291045 -0.511648 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = -0.084087 -0.562150 1.736887 0.935768 -0.876499 -0.070335 0.247334 -0.376051 0.955936 -1.760104 -0.637396 0.126025 -1.101970 0.430053 -0.663379 -0.016881 -2.511914 -1.153356 0.068670 -0.319814 -0.155711 -0.696938 0.786895 0.475817 0.557561 1.585275 -0.597990 -0.120394 -0.870471 1.062965 1.867982 -0.822218 0.808612 1.683298 0.018006 -3.229506 0.721474 -0.081808 -0.540376 -0.937501 0.645508 -1.261084 0.327969 -2.082711 -0.787606 -0.088094 0.430022 1.602169 0.826533 -0.393574 -1.289437 -0.279971 -0.717528 1.920810 -1.112931 0.134146 0.568661 -0.322848 -0.402933 -0.397383 0.258321 -0.136845 0.601620 0.989343 -0.979189 -0.968345 0.014233 -1.819477 -1.120300 1.045382 0.307805 1.406353 -0.950103 0.280535 -1.491600 -0.192795 0.507310 1.694846 1.749472 -1.238463 0.874205 -0.168371 0.928109 0.121546 0.150808 0.714744 0.837844 0.264798 -0.470946 -0.385865 -2.125423 -0.117790 0.027337 -0.939673 0.464609 -1.855315 0.160511 -2.007284 -0.848806 -0.176113 0.335402 -0.074045 -0.031185 0.127130 0.792372 0.783210 -0.631275 -0.836416 0.267481 -0.165193 -0.463183 0.224632 0.516528 0.560685 -0.459195 -1.746025 -1.487645 0.061988 -0.252904 -0.462547 0.836517 1.013015 -1.098426 -0.019503 0.162077 0.188868 -0.652370 1.737593 0.011330 -0.338014 0.397416 -0.430200 0.613171 -0.260593 0.636755 2.787145 -0.693423 -0.742679 -0.447690 0.145408 -1.092746 -1.938718 0.325839 0.016645 -0.151720 -1.286336 -0.875710 -0.638995 -0.581325 -2.027352 -0.087523 -0.838992 -0.157471 1.626959 0.932791 1.329138 1.203703 1.693181 -0.851078 0.904583 -0.317822 -0.208076 0.944266 0.928811 0.922662 -0.475094 -0.383240 0.388219 -0.859106 0.750344 -0.003454 -0.519533 0.123570 -1.550526 -0.707155 0.523152 1.182624 0.389630 0.539009 0.605553 -1.359576 -1.484884 0.341892 1.077200 0.080268 -0.370264 0.651927 -0.859111 1.093889 0.202409 -0.458505 0.175909 0.023988 -1.041383 0.063483 0.119001 0.441726 -0.707891 -0.852005 -0.252281 -0.143616 -1.278925 0.763391 -0.624708 -0.769290 -0.734127 -0.935038 1.251191 -1.438188 -0.967415 1.001800 0.129621 2.050211 -1.683779 0.125963 -0.913350 1.997613 0.059263 -0.066910 0.109554 -1.140567 -0.796517 0.102580 0.355752 0.018076 0.080380 0.653613 1.128533 0.492894 0.261725 1.238283 0.275443 0.909509 -0.075353 0.187323 -0.447498 -0.834538 0.907752 -0.290019 -0.070992 0.144186 1.032106 1.950056 1.037292 1.777076 2.271751 0.713419 1.050714 -0.661326 -0.654754 -0.546075 1.019158 -0.273593 -0.401016 -0.104758 1.128304 -0.513314 0.435126 -1.355620 -3.141792 -1.817625 -1.457334 -0.095179 -1.283420 -0.028250 -0.076762 0.525738 -1.390283 -0.001716 -0.556291 -0.504872 2.299322 0.609129 -0.171878 0.886052 1.261558 -1.694208 -1.007267 1.726951 1.320226 -0.104576 0.872609 -2.632969 1.110638 -1.325947 0.250763 2.077199 -1.220673 -0.222101 -0.519999 2.106857 -0.722662 1.978615 0.750764 -1.609823 0.850269 0.377822 0.564557 2.182951 -0.749115 -PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -3.416782 -6.411842 9.196423 6.400355 0.290988 2.956438 3.087805 -1.221886 0.727375 3.342118 -2.382308 5.892746 -5.406294 -1.611655 -0.580176 -0.127675 -4.893027 -5.107663 -0.199381 -1.674429 -2.048807 -2.956115 -3.142184 7.800772 4.112663 0.223345 -3.389614 -0.518106 -9.452641 -5.633292 -3.407039 -0.085658 3.736317 -0.474916 4.034966 -8.400361 3.294160 7.165962 0.247772 -6.221546 2.315470 -3.193703 0.040296 -0.133658 -2.302196 2.244190 4.714291 0.327952 1.542441 1.095105 0.282651 -2.041243 2.842115 8.061472 2.045702 5.427175 6.322948 -2.497073 1.699919 -1.124038 0.588465 -5.170246 2.703284 0.273274 -2.811920 -2.057878 0.922106 -0.889196 -1.687985 2.449054 2.727000 -3.493561 -2.727950 -3.593252 -7.012136 -2.429413 3.669071 3.129593 7.477429 -4.099005 7.850907 3.171255 3.940984 0.859619 4.949129 -0.062143 5.486482 1.078503 -2.856372 -0.042858 -6.119019 -1.655855 -1.568695 5.455270 -3.189757 -1.016817 3.203892 -9.582093 -8.556536 3.502827 -0.665738 -3.781715 -3.320070 0.932694 2.170388 2.251539 -1.183059 -5.332339 -3.424189 3.251336 -3.553972 -1.638629 0.013929 -0.374886 -0.585530 0.352111 -6.189235 2.424857 3.937562 -2.600422 -2.987012 6.576563 -0.956774 5.991764 0.513998 2.253643 -0.062750 3.266941 3.322103 0.638541 -1.077215 -3.210637 -6.007703 -1.842556 0.548749 0.182784 -4.758819 -1.496682 1.647369 2.480124 0.690537 3.559821 -2.101808 8.835856 1.728473 -3.371871 -4.473170 -5.992003 -4.331940 -3.935171 0.174962 -1.744574 -4.767815 0.998929 3.738648 1.529237 -0.620303 5.206541 -0.278444 3.048320 1.471631 -2.148601 0.952987 -3.876996 3.213809 -4.575612 -3.405073 3.453745 3.764601 4.142413 -0.013485 -0.164741 1.330304 -3.104351 -4.515376 1.681181 0.996572 2.081208 7.186671 5.527462 10.109045 -5.045602 -0.338495 -0.001453 -1.515177 -1.100533 0.323210 -5.107195 2.096437 1.337736 -0.616752 8.524566 0.338486 -3.315822 3.930854 0.200256 1.256392 -5.657218 4.163081 -3.524422 1.247329 -1.973958 -2.451354 -4.109272 -2.349859 -5.275217 -3.467327 8.197984 -5.766319 -7.665583 3.046070 0.961817 4.708148 -10.101547 5.923422 -2.924279 6.415479 -1.116376 -2.559232 0.397259 1.033521 -1.379674 2.825360 1.991869 -4.211997 3.147781 3.387815 1.598992 2.535093 0.820619 3.166586 -0.606400 1.797107 -2.975628 2.461957 -0.402025 -2.508218 -2.294313 -1.317066 1.468114 3.649160 -0.246333 -0.711284 3.724325 -0.332419 0.868022 6.073496 1.458885 -2.509541 0.209060 -1.242578 5.999786 -4.494774 -3.768810 -1.977101 2.449253 1.688570 1.899485 -8.763352 -5.177366 -4.835496 -7.623455 -2.070689 0.674956 1.827922 2.522273 -1.169230 -7.338725 -4.341398 5.682032 0.441092 5.841534 3.846917 1.737807 6.417690 3.181946 1.272239 -2.049588 0.165687 1.773786 -1.754649 -1.171757 -3.889752 2.615178 -5.642577 5.282306 5.575931 -2.768769 4.057561 0.163278 2.056617 -7.418910 7.685419 2.994142 -8.007808 1.144538 5.275685 4.288498 -5.499969 -4.493305 -PE-benchmarks/kmp-algorithm.cpp__computeLPSArray(char*, int, int*) = -1.804813 -3.832364 6.079291 4.488623 0.326087 1.670148 2.194073 -1.177777 1.018755 3.063793 -1.370042 3.259743 -3.434229 -0.526323 0.474118 1.151274 -3.226112 -3.227296 -0.053304 -1.507708 -1.638572 -1.881711 -1.449630 3.764676 2.839797 -0.535411 -2.126123 -0.677794 -5.065623 -4.046112 -1.776238 -0.472433 2.416179 -0.303021 2.285114 -6.063797 2.754348 4.039682 -0.171276 -3.661470 1.346724 -1.852225 0.183988 0.069427 -0.989891 1.604142 2.958014 0.753977 1.549236 1.388434 1.168038 -1.404532 1.898367 5.660986 0.576340 3.387397 3.524696 -1.758317 0.607658 -0.311113 0.524919 -3.029869 1.866612 0.547440 -1.387638 -1.732396 0.376560 -0.800169 -1.498735 1.659926 2.010023 -2.251567 -2.156905 -2.170351 -3.078505 -1.752051 0.123303 1.930182 5.131057 -2.721860 4.950945 2.205539 2.488699 0.424637 2.949282 -0.056395 3.716036 0.677075 -2.064501 0.150037 -3.009878 -1.554040 -0.496185 3.435913 -1.783462 -1.075824 1.814122 -3.972721 -5.291640 2.461851 -0.045487 -1.902910 -2.554142 0.450916 1.547787 1.369248 -1.059592 -3.621278 -2.293205 1.421522 -2.153879 -1.165854 -0.339287 -0.934253 -0.748581 0.255952 -4.273373 1.100095 2.127161 -1.864769 -2.234034 3.924684 -0.700198 3.289170 0.264121 1.463330 -0.236050 2.389659 2.015512 1.168985 -0.241558 -1.808785 -4.907257 -0.616795 0.962203 0.223751 -2.122132 -0.809555 0.521782 1.560699 -0.234668 2.773247 -0.633305 6.026552 2.148236 -1.936470 -3.158921 -3.365803 -2.035616 -2.414246 0.986155 -1.676852 -2.397045 0.029374 2.558233 0.772640 0.164077 3.444892 -0.798979 2.543080 0.236580 -0.872688 1.124937 -1.964284 2.343673 -2.866871 -1.845620 2.048179 2.887695 2.086076 0.261237 -0.532669 1.139404 -2.404501 -2.627448 0.910409 0.337982 0.497934 4.123928 3.130782 8.189056 -2.947926 0.024622 0.550715 -0.672329 -0.635451 0.570875 -3.407746 1.354091 0.726192 -0.615427 5.082326 0.285254 -2.459401 2.176237 -0.166784 0.623048 -3.294151 2.513188 -2.037229 0.816130 -1.118504 -0.878384 -2.731145 -1.528734 -2.563720 -1.209642 5.171169 -2.987544 -4.597459 2.098332 -0.249134 2.415587 -6.153608 5.576970 -2.094143 2.993085 -1.703407 -1.970604 0.119506 1.421182 -0.952033 2.120392 1.362745 -1.984939 1.789166 2.849358 1.146345 1.551546 0.510141 2.368507 -0.338832 1.314433 -1.437461 2.202917 -0.349505 -0.936603 -1.636486 -0.881073 0.738461 1.909167 -0.283392 -0.142377 2.328352 -0.679194 0.544378 3.368086 1.212912 -1.778412 0.892180 -0.573132 3.915871 -2.808884 -2.072632 -0.785010 1.184485 0.579119 1.464394 -5.476180 -2.791048 -2.271775 -4.176119 -1.651593 1.836271 1.398082 1.273634 -0.588859 -4.381955 -2.565943 4.063882 0.060078 2.918344 2.384487 1.163058 3.890447 2.231116 0.972942 -1.695689 -0.651927 0.659762 -0.860360 -0.798596 -2.125140 1.949399 -3.860509 3.111993 3.281287 -1.649809 2.026331 -0.176101 2.251728 -4.464596 4.749407 1.738552 -4.172866 1.282316 3.980364 3.429253 -3.529083 -2.703668 -PE-benchmarks/kmp-algorithm.cpp__main = 0.531872 -0.348855 1.589249 1.064448 -0.553870 -0.149371 0.168589 -0.511833 0.557617 -0.513596 -0.525515 0.334440 -0.601679 0.459386 -0.634476 0.716569 -1.605227 -0.555596 -0.134382 -0.369173 -0.147856 -0.190928 0.793137 0.015070 0.864140 1.115246 -0.454873 -0.298640 -0.293587 -0.349613 0.699192 -0.474183 0.446120 0.768068 0.014940 -1.246881 0.804543 0.305595 -0.473409 -0.700820 0.668922 -0.412422 -0.088063 -0.988491 -0.244599 0.176059 0.199177 1.109530 0.591514 0.418123 -0.425391 0.109510 0.437423 1.089859 -0.492737 0.228674 0.490834 -0.109983 -0.124294 -0.227986 0.282334 0.048514 0.088521 0.336641 0.061354 -0.978394 -0.470719 -0.895797 -0.420761 0.623067 -0.121645 0.489000 -0.876459 -0.088276 -0.617638 0.094062 -1.215871 1.148589 1.084177 -0.928484 0.391131 0.002342 0.141669 -0.119060 -0.245782 0.393732 0.076398 0.399023 0.089037 -0.209979 -0.477486 -0.312423 0.352406 -0.788828 -0.176968 -1.689006 0.525876 -1.200202 -0.646863 0.039512 0.624796 -0.405920 0.566993 0.093212 0.091724 0.500344 -0.400524 -0.346351 0.502823 -0.287921 0.307701 -0.018439 0.060490 0.340486 -0.235922 -0.259495 -1.157780 0.339408 -0.248045 -0.218035 0.627366 0.370325 0.076752 -0.113579 -0.056174 0.272395 -0.378834 1.186275 0.067485 0.427310 0.108000 0.578696 0.485647 0.618122 0.839248 0.583834 -0.550423 0.014597 -0.462182 0.167301 -0.592128 -0.660977 -0.091397 0.170184 0.211314 -0.789732 -0.819207 -0.363328 -0.763076 -1.094653 0.135738 -0.524322 -0.309545 0.701436 0.570991 0.532882 0.845316 0.866672 -0.710179 -0.023937 -0.054676 -0.020037 0.647383 0.461123 0.550893 -0.318211 -0.288600 0.437369 -0.205447 0.301213 0.011642 0.059812 0.324199 -0.974578 0.139631 0.642268 0.630974 -0.269927 0.442778 0.485090 -0.553692 -0.008280 -0.071805 0.792374 -0.188948 -0.278333 0.463011 -0.797578 0.698460 0.014964 0.367852 0.256541 0.124169 -0.160959 0.409213 -0.246958 0.111872 -0.326651 -0.291490 -0.252641 -0.238822 -0.611368 0.773756 -0.156499 -0.289850 -0.222163 -0.418275 0.890332 -1.006644 -0.039438 0.604843 -0.109993 0.629456 -0.604242 0.736730 -0.582175 0.814734 0.325459 -0.088488 0.234929 -0.842813 -0.796101 -0.231009 0.287473 0.250130 -0.037253 0.511738 0.632213 -0.198699 0.013314 0.848066 -0.313636 1.067183 -0.030768 0.368116 -0.276562 -0.419714 0.292040 -0.036176 -0.533792 -0.438657 0.441315 1.332495 0.044993 1.029987 1.137316 -0.007905 1.165303 -0.606316 0.322516 -0.278980 0.562052 -0.388805 -0.359905 0.304531 0.593846 -0.366963 0.506531 -0.962030 -1.613575 -1.384075 -0.564636 -0.112006 -0.905866 0.394307 -0.531058 -0.071520 -0.543773 -0.604317 0.309871 -0.252045 0.330137 0.650323 -0.117887 0.521596 0.653264 -0.653849 -0.144150 0.332951 0.803134 0.418947 0.227338 -1.133159 0.741980 -0.685058 -0.309959 1.456338 -0.750370 0.103728 -0.349368 1.048846 -0.526555 1.064818 0.244072 -0.808448 0.701151 0.678838 0.356843 0.889490 -0.519089 -PE-benchmarks/program-wish-womens-day.cpp__main = -3.249185 -8.879910 10.389111 7.768600 2.590764 3.576578 4.207412 0.192530 2.329649 3.987492 -2.860303 8.954086 -6.314602 -1.134206 1.291545 -0.370881 -6.169206 -9.042936 1.907059 0.732444 -3.434976 -5.197178 -5.073690 10.449116 4.015514 1.835311 -5.093541 1.374328 -13.897632 -6.849336 -4.986794 -0.481413 4.154860 -0.839077 6.974487 -9.219800 3.989870 8.968011 2.123495 -9.909256 1.217850 -4.485699 1.511983 0.066417 -0.319002 5.734890 8.243312 3.472597 2.093380 2.523715 -0.771977 -3.166182 1.315641 4.863719 4.354363 5.939126 7.780622 -2.821784 1.580373 -3.022041 1.139619 -8.090469 3.819899 1.349458 -5.863702 -0.141742 2.218612 -1.075134 -3.250524 3.893352 7.050402 -4.603846 -3.886976 -3.890962 -7.702188 -1.779375 10.135715 3.791357 9.628043 -4.116318 10.028985 3.042285 8.627612 0.059782 5.990537 -1.426465 8.376067 1.130889 -5.581583 -1.053213 -12.244761 -5.031162 -4.228571 5.538592 -2.496459 1.462487 0.651982 -11.485563 -9.939736 3.042473 -2.438837 -2.343050 -5.907643 3.171262 6.735129 3.808230 0.984638 -5.833892 -3.874646 3.783577 -7.663258 -1.392077 0.684829 -0.737737 -2.693101 -0.962903 -7.439381 0.909745 6.789585 -3.425020 -1.547782 8.948561 -4.390759 9.319078 0.374423 0.296474 2.648275 4.268732 6.890233 -0.126350 -0.277187 -8.261205 -6.156383 -1.512190 -2.304244 1.912118 -6.366914 -3.011017 3.439412 3.724643 0.515360 3.128120 -3.775606 9.306613 3.913752 -5.383966 -7.594317 -7.999968 -5.145300 -3.259759 1.333025 -2.384748 -3.779404 -0.292027 5.591035 2.043429 -0.951225 7.304007 -1.835985 3.143500 3.414917 -1.778538 0.811234 -1.882256 3.070404 -6.056151 -3.758531 5.699461 4.390271 3.238025 -0.437322 -3.121509 2.650951 -3.841914 -6.738189 2.922543 1.044298 6.098996 8.803641 5.585921 9.764471 -4.990078 -2.011638 -0.950815 -0.701016 -1.702244 0.591256 -5.668091 3.623033 0.977152 2.815686 10.903526 -0.676455 -4.727925 6.017471 3.810304 1.086982 -7.501077 4.527617 -3.622881 3.667775 -1.372594 -2.540653 -6.270048 -0.741477 -7.348427 -4.684325 11.453617 -0.963518 -14.084409 3.518004 -3.844557 9.140752 -14.183211 2.536633 -3.407044 6.408372 -0.494569 -1.623552 1.074543 -3.027539 -0.474277 4.595755 2.718898 -2.797349 3.123855 2.734253 2.135384 2.245482 3.248678 2.121593 1.610348 2.053265 -1.513852 0.932017 -1.078371 0.144402 -2.040252 -2.375271 2.719475 6.809030 -2.947384 -0.404259 4.927586 0.727776 3.688863 6.874743 0.070105 -4.591425 -1.244101 -0.843743 7.901353 -5.651239 -4.655054 -3.482871 2.679619 1.253925 1.939716 -10.147869 -6.687990 -3.749685 -15.690393 -4.225319 0.326755 2.548060 3.464770 -0.748400 -8.001684 -3.723973 7.366849 3.205433 14.691875 4.129669 0.094684 8.060003 2.886646 -0.548917 -3.340715 -0.181715 -0.538455 -3.599336 -0.289563 -5.018817 2.471442 -7.085568 7.783468 7.576731 -5.709314 3.643937 -4.510631 4.621630 -9.915423 9.056763 4.501891 -9.933977 -2.147879 1.622699 7.584955 -6.771304 -7.318944 -PE-benchmarks/program-wish-womens-day.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.064182 -0.358805 0.298407 0.295030 0.225357 -0.060283 0.239882 0.014784 0.158390 -0.058908 0.063487 0.197333 -0.407644 0.202762 -0.236463 0.070367 -0.244179 -0.422771 0.025364 0.088675 -0.322438 -0.237256 0.031905 0.211815 0.048189 0.207926 -0.235174 0.006006 -0.542213 -0.137022 0.175448 -0.070655 0.253032 0.154186 -0.022381 -0.643547 -0.063536 0.286288 -0.064846 -0.167294 0.088640 -0.408232 0.218275 -0.388543 -0.027103 -0.039524 0.253962 -0.063272 0.183173 0.141970 0.064294 -0.012507 0.179167 0.481997 -0.070344 0.157306 0.205362 0.118558 0.008324 -0.094537 0.066767 -0.032135 0.278015 -0.038596 -0.232219 0.004535 -0.163438 -0.382092 -0.235215 0.222569 -0.026757 -0.020710 -0.265338 -0.134714 -0.246769 -0.141141 -0.347952 0.186411 0.282134 -0.512179 0.316465 -0.104738 0.155595 -0.095133 0.100578 -0.002289 0.183111 0.092318 -0.099987 0.069854 -0.106296 -0.024161 -0.133036 0.052798 0.063312 -0.290892 -0.032696 -0.306822 -0.294442 0.110640 -0.068898 0.143360 -0.212279 0.114559 0.072296 0.062424 -0.324353 -0.245613 -0.081548 -0.018086 0.101706 0.011136 0.039424 -0.010670 -0.313121 -0.368443 -0.347670 -0.179788 0.069414 -0.275021 0.071286 0.431862 -0.243962 0.306518 -0.003684 -0.148841 0.142473 0.600953 0.170470 0.175876 -0.215567 0.068648 -0.235743 -0.226261 -0.078617 0.451080 -0.261990 -0.104458 -0.037961 0.083482 -0.183802 -0.057499 0.155869 0.096914 0.186506 -0.342107 -0.381354 -0.182186 -0.124185 -0.527798 0.156047 -0.220123 0.196564 0.145962 0.335645 0.184973 0.166801 0.568850 -0.197063 -0.163830 0.221050 -0.340792 0.253285 0.161245 0.185609 -0.243091 -0.274976 0.294285 0.052339 -0.095104 0.113905 -0.165669 0.058793 -0.183932 -0.115851 -0.021207 0.146149 -0.048680 0.297573 0.135693 -0.073296 -0.429945 0.171355 -0.039534 -0.122402 0.137212 -0.024088 -0.186148 0.327477 0.118296 -0.029925 0.033272 -0.124746 -0.098319 0.271394 -0.021504 0.019938 -0.317152 -0.091649 -0.067574 -0.010178 -0.178278 -0.056033 -0.005109 0.021485 0.022920 -0.168695 0.503034 -0.284419 -0.175303 0.254873 0.069084 0.124795 -0.471462 0.312652 -0.166852 0.351949 -0.047410 -0.118541 0.005279 0.037721 0.066828 -0.001707 0.140075 -0.076347 -0.132715 0.309563 0.224325 0.089924 0.298307 0.242290 0.194385 0.277458 0.162145 0.136698 0.069707 -0.022523 0.134514 -0.234032 0.033545 0.138075 -0.114250 0.620378 0.313885 0.302698 0.359144 0.251775 0.294117 -0.272785 -0.156750 0.096205 0.306960 -0.136607 -0.018411 0.019986 0.118439 -0.148860 0.179811 -0.266393 -0.545875 -0.224168 -0.568207 -0.063463 -0.016950 -0.045506 0.039673 0.080338 -0.353579 -0.125531 0.037248 -0.136530 0.511629 0.042837 0.032959 0.122969 0.154343 -0.195020 -0.000864 0.122779 -0.015914 0.096160 0.308857 -0.158709 0.082773 -0.375331 0.148099 0.237454 -0.336413 0.001775 0.136407 0.452830 -0.310338 0.297817 0.019558 -0.051111 0.108194 0.226169 0.365479 0.111643 -0.298266 -PE-benchmarks/vertex-cover-problem.cpp__Graph::Graph(int) = 0.692269 -1.244844 3.506913 1.851015 -1.308601 0.339172 1.204345 -1.000455 0.625089 -0.291419 -0.729784 0.919786 -1.462076 -0.256313 0.201414 0.078171 -3.328404 -1.166654 -0.409280 -0.927012 -1.015144 -0.829841 0.313475 1.377666 1.733907 1.777576 -0.539013 -0.520772 -1.380910 -0.523509 0.556903 -0.162742 0.750329 2.097356 2.118593 -2.749548 1.353011 0.789002 -0.207828 -1.777241 0.813692 -0.039710 -0.170455 -0.626550 -0.090767 0.635207 1.035652 2.570358 0.928941 0.575710 -0.710720 -1.245153 0.257827 2.651771 0.619888 0.882439 1.619015 -1.141407 0.721717 0.167642 0.286350 -1.252460 -0.083773 0.343150 0.003560 -0.568120 0.492492 -1.876895 -0.383207 1.675851 0.998848 -1.242425 -1.276438 -1.775827 -1.817374 -0.083316 -2.556553 2.866678 2.433365 -2.020001 1.533652 0.323412 1.150349 -0.363046 0.926332 0.044550 1.782717 0.425304 -0.366870 0.304874 -2.082897 -2.181838 -0.036989 -0.618934 -0.503165 -1.462410 1.142455 -2.878669 -1.924225 1.024968 0.706550 -1.055731 -0.230868 0.475206 0.665278 0.471511 -0.660959 -1.183525 -0.665994 0.512592 -1.161013 0.658925 0.342505 1.231534 -0.870247 -0.224100 -1.673493 1.046842 0.656021 -0.200751 -0.029279 1.855185 -0.501380 1.078375 0.149899 0.277860 -0.312222 1.906961 0.804129 0.154971 0.387447 -0.087152 -0.454914 0.857210 0.734928 1.376718 -0.101848 -0.175162 0.277153 0.974010 -1.101004 0.278208 -0.679677 2.125538 0.072799 -1.553088 -2.375685 -0.849851 -1.659726 -1.771094 0.190379 -0.680335 -1.101418 1.155460 1.127030 2.254503 -0.143511 0.791525 -1.108597 0.197453 -0.112662 -0.393390 0.022062 0.311064 0.934918 -1.319310 -0.289164 0.211673 -0.283915 1.153400 0.328663 -0.545137 0.250203 -1.722290 -1.367305 0.729866 1.194909 0.136012 1.001646 2.047473 0.576955 -1.256664 -0.921278 0.998024 -0.375877 -1.227732 0.824636 -1.284944 1.124807 -0.000843 0.462754 1.461247 0.068774 0.090388 0.967294 -0.276093 0.320793 -0.863317 -0.545120 -0.569158 0.244058 -0.811912 0.667614 -1.228900 -0.541454 -1.087454 -1.364153 2.362905 -1.654503 -1.768477 2.148945 -1.058409 2.239339 -1.778525 2.001621 -0.619333 1.306742 0.138954 -0.284774 -0.098495 -0.737060 -0.733417 1.071771 -0.209418 -0.074937 -0.111710 1.446705 0.636286 0.449977 -0.001416 1.515626 -1.128552 1.149202 -0.483981 1.046440 -0.667333 -0.519872 -0.363624 -0.018678 -0.306711 0.177432 0.321065 1.442703 0.152585 1.283789 1.283389 0.667835 0.749309 -1.060993 0.140150 -0.062005 1.322201 -1.371668 -1.344858 0.670460 1.104817 -0.142978 -0.055397 -2.349364 -2.328127 -2.443136 -1.827235 -1.355630 -1.268259 0.962776 -0.090536 -0.608656 -0.936145 -1.080413 0.719789 0.342558 0.112475 1.239070 -0.142830 1.910125 1.640015 -0.398561 0.062099 0.744766 1.300507 -0.151953 0.001329 -2.239289 0.882888 -2.521375 0.643797 2.652918 -0.676938 1.369578 -0.762324 2.598861 -2.596534 1.509466 0.739954 -2.348113 0.239592 2.309937 0.634620 0.719970 -1.392323 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/vertex-cover-problem.cpp__Graph::addEdge(int, int) = -0.142363 -0.811098 2.215602 1.619710 -0.636782 0.228613 0.459885 -0.810670 0.410840 0.109393 -0.373545 0.623246 -1.127401 0.290007 -0.362976 0.743894 -1.859922 -0.705471 -0.384409 -0.879338 -0.505775 -0.381822 0.388413 0.687176 1.153720 0.775113 -0.693760 -0.403430 -0.827671 -1.048432 0.293489 -0.323767 0.873141 0.686163 0.246690 -2.705831 1.113969 1.017997 -0.516628 -0.855101 0.865750 -0.709616 0.002999 -0.692775 -0.869187 0.246668 0.333599 0.445175 0.846397 0.372809 0.119897 0.024934 0.921110 2.154699 -0.404119 0.801101 0.747055 -0.480291 -0.136825 -0.164039 0.157690 -0.258094 0.471997 0.142335 -0.081827 -1.204235 -0.324332 -0.851116 -0.633141 0.789679 -0.005135 -0.238845 -0.969121 -0.549605 -1.161596 -0.477081 -1.054677 1.233688 1.530773 -1.308845 1.053169 0.207913 -0.007529 0.014155 0.443610 0.307560 0.829903 0.311989 -0.038779 0.124269 -0.157994 -0.344501 0.408076 0.322179 -0.598715 -1.737554 0.804313 -1.618709 -1.468856 0.507362 0.577249 -0.790915 -0.264730 -0.286595 0.051687 0.432220 -0.712610 -1.000635 -0.131038 0.196424 0.144182 -0.238204 -0.225197 0.121154 -0.209555 -0.183194 -1.612949 0.614247 -0.001828 -0.351960 -0.118621 1.076528 0.219659 0.296016 0.083721 0.658435 -0.563526 1.518597 -0.061221 0.662951 -0.270901 0.493337 -0.395845 -0.115593 0.851966 0.394777 -0.716788 -0.496702 -0.468115 0.360122 -0.661907 0.162493 0.077261 1.333545 0.846437 -0.688902 -0.967203 -0.607047 -1.009743 -1.691984 0.131871 -0.683235 -0.650511 0.873349 0.853366 0.497938 0.724476 1.103375 -0.446221 0.350883 -0.056758 -0.487685 0.932676 -0.069266 0.869972 -0.764551 -0.639056 0.636973 0.134059 0.935973 -0.006855 0.233734 0.267095 -0.980965 -0.372222 0.599337 0.567001 -0.193819 1.060462 1.118937 1.678721 -0.572765 0.226054 0.728735 -0.493062 -0.130454 0.389388 -1.111071 0.528167 0.326023 -0.418132 1.137461 0.060872 -0.464493 0.592246 -0.371175 0.295117 -0.987249 0.285008 -0.570900 0.083407 -0.854741 0.042235 -0.508414 -0.586601 -0.614883 -0.641723 1.575706 -1.899247 -0.559972 1.114075 0.117535 0.773879 -1.557942 1.928100 -0.790216 1.218575 -0.410591 -0.636320 0.222031 -0.113480 -0.848235 0.406124 0.379440 -0.373419 0.116558 1.159690 0.700488 0.196309 -0.147515 1.258339 -0.258081 1.208771 -0.468041 1.043533 -0.159539 -0.487643 -0.114357 -0.218327 -0.477574 -0.113817 0.518653 1.068007 0.488099 0.669579 0.633252 0.810598 1.252347 -0.632595 0.536112 -0.355917 0.916611 -0.741864 -0.671008 0.334642 0.914095 -0.094061 0.561641 -1.731443 -1.688449 -1.757496 -0.811455 -0.248276 -0.013599 0.580469 -0.112759 -0.211652 -1.186296 -0.985465 1.203102 -0.429225 0.529994 0.824110 0.261457 1.086866 1.052814 -0.108267 -0.262207 0.069648 0.789926 0.368340 0.118303 -1.284740 1.084975 -1.182063 0.334686 1.573178 -0.764205 0.629014 0.106867 1.262524 -1.219833 1.575339 0.267333 -1.159573 1.084719 1.587109 0.457487 0.165061 -0.736008 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -0.875133 -6.318160 11.952780 8.845602 -1.604077 2.649832 2.247417 -2.970883 2.461471 2.591715 -3.376300 5.864034 -6.241170 -0.050888 0.189923 2.067484 -8.954800 -5.273579 -0.383592 -2.239237 -3.129736 -3.801624 -1.262142 7.225547 5.448454 5.913332 -3.968472 -0.164831 -7.589465 -6.841910 -1.249426 -0.943829 4.645483 5.260615 5.105859 -10.161016 5.172973 6.741987 -0.297522 -7.532357 2.762049 -3.638254 -0.262760 -1.987460 -1.039715 3.609328 4.455484 4.695525 3.260009 1.879491 -1.096870 -2.575439 3.916134 7.484521 1.251630 5.221541 6.177637 -3.272391 1.531942 -1.815613 1.114692 -4.509130 3.090390 1.956352 -3.057727 -4.134245 0.613073 -2.897908 -3.013474 4.682375 3.566144 -2.817367 -5.410716 -4.561395 -5.029409 -1.431160 -2.043700 6.401707 9.274854 -5.063287 7.846123 3.169336 3.960591 -0.466128 4.637786 -0.143791 7.033904 1.714372 -3.089364 -0.759687 -7.142969 -4.698861 -0.221315 2.644189 -3.191080 -2.671248 2.872593 -10.305104 -9.195867 2.993739 0.881795 -4.100974 -2.783827 1.919266 3.499281 2.700807 -0.404513 -5.646413 -1.607124 2.487599 -4.249429 -1.703180 -1.323948 0.944720 -1.955891 0.762397 -8.256898 2.651993 3.076972 -2.571911 -0.888377 6.688936 0.076344 4.739865 0.342599 2.110650 -0.055763 5.678919 3.322053 1.430991 1.104647 -1.823292 -2.835644 2.391552 2.495932 0.351860 -5.122086 -2.241146 0.728971 2.757432 -1.578298 1.707682 -2.785455 9.203622 3.482722 -4.765784 -6.564878 -6.110735 -5.503962 -5.731075 1.048756 -3.177438 -4.100620 1.446473 4.774600 2.659650 1.193106 4.964542 -3.928669 3.086944 1.178672 -0.258730 2.341418 0.893702 4.075321 -5.302357 -3.205576 4.260015 3.022672 3.319256 -0.414030 -0.715485 1.847523 -4.625049 -4.496939 4.845781 1.785148 2.444060 7.467197 6.052039 11.117687 -4.179336 -0.412731 2.003688 -1.362946 -2.283116 1.975958 -6.365207 4.354535 0.726611 1.775288 8.997708 -0.011606 -2.907661 3.662297 0.696907 1.194573 -5.973399 3.244053 -3.756764 0.997084 -2.915192 -0.140038 -4.174364 -2.999907 -5.053368 -2.721258 9.700058 -6.118769 -7.777715 5.342543 -2.812677 6.142647 -10.171737 6.228916 -3.968931 4.664492 -1.462615 -3.344172 0.294127 -2.677971 -2.951021 2.423008 2.472674 -2.233513 2.265521 4.527108 2.640258 1.650669 1.003158 4.092640 -0.665251 3.958023 -2.593953 3.632735 -0.713978 -0.467847 -2.135142 -1.530583 0.112202 2.441711 -0.782171 3.124803 4.203571 2.005607 3.316777 4.319137 3.230356 -3.695970 1.489602 -1.492932 5.633241 -5.188662 -4.588223 -0.660814 2.523150 0.126397 3.100647 -10.073050 -7.959235 -5.356034 -7.963240 -3.785636 -0.724026 3.858109 1.663965 -1.507671 -7.007659 -5.156944 6.575685 0.765263 6.657523 4.061752 0.821931 6.797856 4.758741 -0.082760 -2.407405 0.158959 2.468981 -1.100482 -0.459589 -6.204854 4.641026 -5.683389 4.777668 8.715861 -4.644346 3.979192 -3.333878 6.348812 -8.211488 8.835383 3.262507 -8.861340 1.760332 5.185218 4.750760 -3.160294 -5.562019 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/vertex-cover-problem.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/vertex-cover-problem.cpp__main = 0.198210 -0.549131 1.304566 0.665736 -0.730442 -0.253939 0.080919 0.118516 0.558791 -1.662057 -0.749154 0.345573 -0.674295 0.419747 -0.553622 0.053560 -2.079618 -0.980554 0.352985 0.271453 -0.011918 -0.428796 0.742851 0.399157 0.447580 1.717049 -0.482805 -0.115633 -0.411525 0.968803 1.471442 -0.850865 0.651879 1.728112 0.032178 -2.183853 0.384824 -0.386937 -0.325724 -0.795633 0.389498 -0.683426 0.228160 -1.986119 -0.662157 -0.005217 0.682427 1.532258 0.428828 -0.147991 -1.466891 -0.483179 -0.457768 1.073176 -0.531961 -0.121206 0.650970 -0.260416 -0.129038 -0.758758 0.441076 -0.296163 0.362276 0.936700 -0.614991 -0.609977 -0.193294 -1.613594 -0.770351 0.701254 0.302148 1.755555 -0.819191 0.393145 -0.979252 0.101638 0.608445 1.401533 1.477850 -0.913228 0.676226 -0.039132 1.006470 0.000510 -0.268584 0.720086 0.151390 0.423826 -0.448637 -0.268365 -1.627797 -0.214502 -0.075059 -0.948596 0.567714 -1.380072 0.047822 -1.559762 -0.377802 -0.141064 0.194531 0.162840 0.495920 0.181828 0.681145 0.802925 -0.470144 -0.366444 0.430852 -0.671768 -0.279262 0.223954 0.477931 0.907575 -0.440686 -1.181471 -1.115456 -0.172463 -0.200852 -0.578667 1.308915 0.424131 -0.765482 0.189913 -0.023132 -0.063365 -0.355542 1.388266 0.497388 -0.391659 0.431504 -0.395095 1.060098 -0.050370 0.602249 2.322301 -0.676599 -0.674078 -0.217295 0.114927 -0.551433 -1.964787 0.362408 -0.291577 -0.244274 -1.040458 -0.935082 -0.705526 -0.635630 -1.446305 -0.070210 -0.754992 0.103394 1.620965 0.648792 0.741958 0.932906 1.372016 -0.743517 0.735008 -0.278829 0.037150 0.463566 0.956421 0.587145 -0.225578 -0.109652 0.453559 -0.668252 0.482537 0.146808 -0.728709 0.320102 -1.185780 -0.523684 0.679962 1.030970 0.240956 0.129232 0.053822 -1.847354 -0.627485 -0.072221 0.815041 0.394495 -0.491724 0.712444 -0.658440 1.142687 -0.209271 -0.135365 -0.313887 0.110684 -0.842518 0.255264 0.105781 0.137591 -0.321623 -0.710055 -0.043808 -0.033487 -0.960887 0.975276 -0.401214 -0.403671 -0.420258 -0.501676 0.903365 -1.082580 -0.489344 0.302565 0.242138 1.775929 -1.070322 -0.299256 -0.668937 1.746635 0.413295 -0.139778 0.244465 -1.515712 -0.385460 -0.341352 0.353976 0.397694 -0.239873 0.045336 0.848711 0.104409 0.452358 0.787832 0.383645 0.707960 0.372483 -0.363847 -0.318093 -0.620889 0.746937 -0.112768 -0.035061 0.096856 0.707953 1.530216 0.593665 1.556406 2.165061 0.196799 0.749917 -0.687824 -0.884640 -0.412129 1.132231 -0.264104 -0.266332 -0.332523 1.079484 -0.566098 0.420699 -0.810175 -2.621723 -1.591467 -1.026076 -0.528630 -1.178231 0.070889 -0.297359 0.464513 -0.689479 0.174231 -0.611164 -0.280775 1.817591 0.599192 -0.339301 0.675242 0.655939 -1.448037 -1.115829 1.466082 1.200348 -0.007087 1.087373 -2.175389 0.517702 -1.069775 -0.046967 1.740271 -1.094389 -0.477984 -0.570505 1.840112 -0.366124 1.595761 0.716194 -1.534932 0.452276 -0.061217 0.207458 1.905530 -0.633395 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/vertex-cover-problem.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.559354 -1.112255 6.819190 3.704652 -1.380954 0.047994 2.326211 -3.691297 3.060954 -1.405149 -0.385703 0.456192 -3.699805 1.303337 -3.437818 1.789518 -5.247821 -2.978969 -1.943166 -4.166050 -1.450427 -1.519054 3.323599 0.218578 3.552059 0.603390 -2.300098 -2.054698 -3.856418 -2.065849 3.411039 -0.992663 2.110100 -0.642455 -0.758004 -8.582543 3.720794 2.423558 -2.389961 -2.275541 3.843565 -2.558679 -0.423550 -1.851452 -1.482355 -0.222742 -0.201668 2.329804 3.503682 1.098589 1.019756 1.711526 -0.097605 7.543765 -4.095587 1.910225 1.252360 -0.360410 -1.828120 1.268614 -0.260789 0.374290 0.991261 0.872637 -0.849289 -4.007665 0.155763 -3.014645 -3.193540 3.169458 -0.378084 -0.960239 -2.152450 -0.567133 -4.073924 -1.011025 -0.191880 3.374391 4.446855 -3.714946 2.112907 -0.841578 -0.232069 -0.304329 0.020527 0.791533 1.946217 0.411471 0.509629 -2.281502 -3.551152 0.937183 0.187993 -0.022996 -0.978813 -6.391859 3.278660 -4.558407 -4.087887 -0.002262 2.475109 -2.467011 -1.920696 0.053344 0.367677 1.331665 -2.053331 -3.187028 -0.795560 1.400502 0.518611 0.255011 0.546509 -1.410333 -0.966235 -2.705113 -4.889213 2.022339 -1.039281 -0.677593 -1.965741 3.125058 -1.807051 -0.416159 1.163518 3.220792 -2.541241 3.840183 -1.186485 1.666300 0.491352 1.357616 -1.590947 -0.913088 2.309584 4.268942 -1.933494 -0.257214 -2.986829 0.454602 -3.624373 -1.032610 -0.742329 1.942062 1.800914 -3.573781 -2.714045 -0.064914 -0.841786 -5.676562 0.281313 -2.335169 -2.360506 1.375087 2.196890 3.191665 3.025373 5.390624 -1.879563 1.669039 0.380629 -2.160820 3.289637 -0.792748 3.171486 -2.099596 -2.661947 0.531120 -0.954818 2.027242 -0.880286 1.193122 0.084250 -5.040238 -1.313558 0.004435 1.913389 -0.749311 2.149990 3.740640 1.973391 -4.418483 0.885425 3.400062 -2.391082 -0.327407 1.052112 -3.570283 0.952364 1.703567 -0.771380 3.758695 0.506256 -2.064566 1.677678 -0.996866 1.474986 -2.599514 -0.518459 -1.975769 -1.064646 -2.884815 -0.365093 -1.355398 -1.570138 -1.802033 -3.470798 4.016772 -4.096401 -3.464294 4.549205 0.059411 2.384510 -6.027617 4.739966 -2.299012 3.199410 -0.596205 0.752950 -0.319499 0.499384 -3.766198 1.647261 0.271396 -1.197521 2.457607 5.681952 2.346359 1.365054 -1.093640 4.696193 -1.594882 4.217757 -1.902216 3.735101 -1.561536 -3.972896 1.158951 -0.469027 -2.056081 -1.678221 2.581330 4.282399 1.991493 2.585902 3.480773 2.779690 5.327117 -1.477702 2.601096 -0.948847 1.861461 -1.116602 -1.604630 2.418357 2.176552 -1.084064 2.140924 -5.082892 -7.072766 -4.281309 -5.968200 2.150421 -2.992940 0.837788 -1.410230 -0.514485 -4.789053 -2.601293 0.991202 -1.116577 4.310278 2.958147 0.879085 2.652765 4.698513 -3.277458 0.635955 1.684040 2.951800 0.833996 -1.489656 -4.204246 3.498180 -2.830518 0.211195 5.180516 -1.940481 1.788466 -0.864630 2.777071 -3.468423 5.204653 0.643398 -2.067414 4.652301 2.862938 3.309809 3.053184 -1.603618 -PE-benchmarks/vertex-cover-problem.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/vertex-cover-problem.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/vertex-cover-problem.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/vertex-cover-problem.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__maxChainLength(Pair*, int) = -3.501940 -6.861122 10.785492 7.374722 0.277895 3.290132 2.970589 -2.140977 1.323916 4.905229 -2.911063 6.527507 -5.374615 -1.308197 0.611326 0.896094 -6.010503 -5.699195 -0.146302 -2.301502 -3.409586 -3.542584 -3.580464 7.699966 4.510565 0.062020 -3.920942 0.343010 -9.217303 -8.039684 -4.256802 -0.339458 3.875754 -0.821722 5.543144 -10.149364 4.845518 7.433455 0.403549 -7.157193 1.905243 -2.811589 -0.265531 1.189971 -1.990152 3.266262 5.459572 1.445302 2.140728 2.185082 1.595571 -2.888408 2.532970 9.177938 2.698941 6.044495 6.795708 -3.554277 1.464053 -0.805595 0.856426 -6.042777 2.899145 1.056452 -2.745730 -2.082951 1.886336 -0.873357 -2.113111 3.276074 3.796664 -5.517924 -2.923418 -4.930536 -6.103235 -2.566877 3.322269 3.401795 9.032741 -3.996915 8.713689 3.514423 4.908730 0.746145 5.886381 -0.729991 7.660233 1.283110 -3.850331 0.187623 -5.308802 -3.224848 -1.299319 6.705892 -3.377655 -0.098361 3.127933 -9.244506 -9.248533 4.483786 -0.436171 -3.792748 -4.949010 1.159870 3.557196 2.197357 -1.098656 -6.040446 -4.227590 3.410146 -4.952829 -1.662520 -0.412357 -0.871538 -1.478818 1.495396 -7.123242 2.336109 4.771684 -2.755093 -3.806712 7.293659 -1.254077 6.324556 0.376142 2.357759 0.222583 3.971651 3.765234 1.242072 -1.426719 -3.397129 -7.567551 -0.780668 0.530173 -1.205006 -4.272059 -1.997766 2.136184 3.035961 -0.312789 4.994702 -3.301794 10.822897 4.000304 -3.175155 -6.273525 -6.332359 -4.565778 -4.373271 0.814116 -2.726331 -5.624080 0.366420 4.471107 1.995802 -0.807969 5.622100 -1.185862 4.144081 0.938742 -1.705262 1.054546 -4.394034 3.757231 -5.435921 -3.184540 3.975199 4.744726 3.987616 0.532219 -1.413771 1.746747 -3.897065 -5.536780 2.992001 1.254062 2.930765 7.217027 5.995823 14.654504 -5.006612 -0.818140 0.400329 -1.246866 -1.828076 0.718716 -5.550916 1.802667 1.359238 0.268256 10.076894 0.444915 -3.656913 3.681267 0.543489 1.351216 -6.150334 4.672141 -3.415302 2.662604 -1.327869 -2.528049 -5.101977 -1.875808 -5.334633 -3.604425 9.294995 -6.024384 -9.999191 4.411663 -1.386858 5.929606 -11.330929 7.209880 -3.389918 6.336043 -2.176390 -2.727501 -0.035275 0.697420 -1.346824 5.273945 2.075155 -3.366180 2.951113 4.462593 1.639796 3.024332 0.683961 3.578161 -0.988347 1.981203 -2.665240 3.438563 -0.527515 -1.407015 -3.230104 -1.498860 1.029060 3.919985 -0.691621 -1.558000 3.889892 -1.341451 0.843407 6.289464 1.169796 -3.120369 1.145601 -1.032750 6.493069 -5.294875 -4.525358 -1.429938 2.763376 1.538310 1.471717 -9.624825 -4.724595 -5.676652 -9.056606 -3.503737 2.330724 2.695510 2.492344 -1.430818 -6.831319 -4.432064 8.985071 1.120571 7.703946 4.273142 1.864902 7.086957 3.857278 1.738875 -2.549610 -1.398000 0.882436 -2.298231 -1.240214 -4.119942 3.061776 -6.696258 6.031870 5.979210 -3.009984 4.367494 -0.208412 2.906301 -8.477569 7.648618 3.430415 -8.089329 0.960002 5.787872 5.418156 -6.547347 -5.206461 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 0.288479 -0.493912 1.567500 1.051719 -0.506072 -0.045153 0.331176 -0.405339 0.433390 -0.686374 -0.425629 0.392680 -0.743001 0.343096 -0.609541 0.365075 -1.495514 -0.663673 -0.216422 -0.384389 -0.145082 -0.213664 0.580440 0.297980 0.815110 0.976720 -0.490663 -0.403424 -0.751692 0.084949 0.756654 -0.286544 0.553377 0.760772 0.063216 -1.644943 0.606302 0.509765 -0.394383 -0.816180 0.706230 -0.590952 -0.052001 -0.996530 -0.324157 0.087253 0.194314 0.941830 0.473671 0.203839 -0.554321 0.149580 0.155956 1.308768 -0.431338 0.306767 0.636857 -0.099409 -0.129160 -0.246517 0.209402 -0.031280 0.170448 0.205698 -0.159653 -0.890200 -0.350394 -0.968757 -0.464659 0.568963 0.092961 0.383825 -0.740491 -0.165743 -0.857902 -0.015800 -0.622784 1.143425 1.032971 -1.030158 0.527656 -0.058227 0.193861 -0.043226 -0.047969 0.385120 0.127201 0.319629 0.146952 -0.240526 -0.988925 -0.199664 0.178384 -0.609265 -0.280615 -1.572607 0.600559 -1.189038 -0.756659 0.028387 0.491699 -0.513498 0.315000 0.133563 0.015838 0.589715 -0.402312 -0.400900 0.209147 -0.003618 0.228566 -0.033478 0.100433 0.394696 -0.249672 -0.690485 -1.152943 0.497273 -0.081088 -0.163122 0.436266 0.569480 -0.261002 0.018451 -0.011666 0.261442 -0.451578 1.206731 0.085058 0.131640 0.193043 0.209062 0.261836 0.228928 0.683110 1.197987 -0.671271 -0.114966 -0.377941 0.182023 -0.472081 -0.669307 0.036873 0.261891 0.122419 -0.860328 -0.749719 -0.511686 -0.624020 -1.092090 -0.039945 -0.461064 -0.214688 0.841727 0.576416 0.744762 0.665333 1.133552 -0.584636 0.158347 0.062313 -0.246396 0.539610 0.461663 0.520181 -0.395174 -0.431450 0.398679 -0.321826 0.492938 -0.032875 0.208985 0.229423 -0.962758 -0.154899 0.460437 0.636401 -0.140598 0.613333 0.699758 -0.574458 -0.448496 -0.044701 0.621527 -0.366562 -0.253619 0.402181 -0.767420 0.583291 0.107463 0.005249 0.511690 0.080923 -0.304843 0.459466 -0.191757 0.150550 -0.417131 -0.187934 -0.324808 -0.268960 -0.748094 0.507912 -0.232004 -0.359649 -0.449206 -0.638820 1.014550 -0.968030 -0.392983 0.526002 0.075890 0.707519 -0.998551 0.670608 -0.536638 0.949382 0.263576 -0.093180 0.195382 -0.643303 -0.808950 -0.098153 0.266159 -0.057973 0.007274 0.691182 0.596774 -0.129185 -0.020014 0.843735 -0.253088 0.973916 -0.233921 0.394152 -0.296903 -0.585171 0.326893 -0.069181 -0.364375 -0.268891 0.456334 1.361269 0.216514 1.126347 1.064910 0.294002 1.063830 -0.529466 0.130884 -0.267073 0.651760 -0.360836 -0.386277 0.187715 0.686430 -0.191059 0.400134 -1.033692 -1.766511 -1.216962 -0.948882 0.125077 -0.914849 0.253732 -0.343528 -0.129354 -0.849474 -0.631969 -0.038526 -0.286348 0.829739 0.651016 -0.064008 0.653535 0.685317 -0.801807 -0.074939 0.672195 0.909397 0.301306 0.156787 -1.217932 0.742075 -0.714045 -0.144033 1.528032 -0.670386 0.345275 -0.315163 1.175534 -0.628989 1.284520 0.256450 -1.073550 0.627841 0.709067 0.413832 0.844780 -0.536351 -PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.789443 -0.702282 1.656300 1.056237 0.145103 0.254162 0.739228 -0.595295 0.833717 0.605793 -0.070607 0.498032 -0.956896 0.161563 -0.489612 0.657158 -0.834992 -0.902829 -0.138707 -0.854567 -0.392576 -0.487954 0.412780 0.068559 0.835129 -0.453412 -0.666452 -0.653350 -1.357154 -1.105381 0.344643 -0.368280 0.677723 -0.886617 -0.261108 -2.728297 0.898207 0.924508 -0.515890 -0.954813 0.808996 -0.726023 0.264208 -0.073383 -0.328688 0.060340 0.349723 -0.140596 0.776125 0.447163 0.668552 0.280393 0.245834 2.337181 -0.854594 0.735234 0.454371 -0.279277 -0.570415 0.272255 0.115709 -0.252673 0.629891 0.223786 -0.287093 -0.888638 -0.101136 -0.434523 -1.010631 0.496703 -0.130369 -0.416413 -0.462573 -0.125376 -0.918483 -0.578942 0.001990 0.481373 1.321583 -0.816461 1.085096 0.026164 0.241599 0.154284 0.375762 0.223287 0.567524 0.141443 -0.260257 -0.440481 -0.366016 0.340308 -0.019276 0.847961 -0.257308 -1.056403 0.846294 -0.498789 -1.193291 0.414135 0.354577 -0.320849 -1.129260 -0.212842 0.227056 0.699116 -0.753745 -1.095974 -0.744459 0.318897 0.023521 -0.275082 0.102785 -0.888200 -0.385433 -0.549895 -1.105452 0.197393 0.064937 -0.482665 -1.055129 0.983002 -0.501927 0.245474 0.130723 0.843676 -0.528635 0.870621 -0.070003 0.629790 -0.026624 0.016031 -1.637803 -0.628387 0.494151 0.966161 -0.493667 -0.091727 -0.675407 0.135071 -0.581371 0.194022 -0.060865 1.023963 1.167689 -0.588863 -0.612747 -0.334374 0.159231 -1.286837 0.164935 -0.617146 -0.242837 0.270834 0.757524 0.359299 0.646916 1.645988 -0.492651 0.719980 -0.048345 -0.664362 0.890378 -0.411895 0.814425 -0.644712 -0.674018 0.190500 0.551297 0.539785 -0.054591 0.173420 0.120108 -0.994985 -0.377535 0.001375 0.419351 -0.209555 0.700094 0.775158 1.817300 -1.400025 0.133721 0.563533 -0.458136 0.068690 0.022745 -1.034393 0.169628 0.468276 -0.502064 1.073253 0.124769 -0.903149 0.464800 -0.321892 0.305580 -0.739630 0.396365 -0.665316 -0.167800 -0.430227 -0.545558 -0.587925 -0.462107 -0.590501 -0.557594 1.221334 -0.810341 -1.068616 0.808105 -0.007706 0.317763 -1.918996 1.831473 -0.741795 0.791495 -0.695083 -0.020402 -0.183155 0.976755 -0.618023 0.461619 0.338374 -0.563858 0.769017 1.631509 0.569609 0.419995 -0.226341 1.100399 -0.159026 0.684561 -0.348114 0.993906 -0.327159 -0.722068 0.054431 -0.261553 -0.033217 -0.019255 0.357172 0.583910 0.695269 -0.061943 0.525901 1.038181 1.061300 -0.460233 0.734806 -0.188438 1.072666 -0.301556 -0.333920 0.195240 0.635358 -0.042851 0.540352 -1.380254 -1.311099 -0.653255 -1.454703 0.388663 0.288079 0.055711 -0.156151 0.045352 -1.490652 -0.602522 0.623809 -0.333852 1.153462 0.598342 0.381406 0.819872 0.914452 -0.454673 -0.248391 -0.094596 0.203368 0.012596 -0.511319 -0.571258 0.691614 -1.043832 0.368979 0.841238 -0.368074 0.288385 0.336841 0.421650 -0.884005 1.480928 0.342271 -0.397704 1.154885 0.894274 1.436844 -0.291045 -0.511648 -PE-benchmarks/sort-array-wave-form-2.cpp__sortInWave(int*, int) = -2.443153 -4.139749 6.508307 4.587985 -0.125740 2.075780 1.203211 -1.331425 0.087132 2.570081 -1.567769 4.201803 -3.190150 -1.214612 0.090928 0.192189 -3.515669 -3.126758 -0.651788 -1.561707 -1.690204 -1.680761 -2.780872 5.662263 2.712468 -0.279216 -2.589078 0.919166 -5.626728 -5.426784 -3.530247 0.143490 2.418499 -1.218778 3.450513 -5.576298 3.018557 5.292335 0.257756 -3.917460 1.306542 -1.778340 -0.257974 0.229519 -2.687742 1.902795 3.008062 -0.854282 0.991123 0.897276 0.609516 -1.095538 2.361726 5.144312 2.124025 3.881107 4.407213 -2.004512 1.137308 -0.938547 0.341867 -3.481732 1.588526 -0.326326 -1.520659 -1.619948 0.791065 0.074716 -0.599136 1.635592 1.651312 -3.593097 -1.560639 -3.162249 -5.369185 -1.899540 3.637221 1.719451 4.866111 -2.704118 4.955807 2.242758 2.208484 1.151233 3.746404 -0.287035 4.482858 0.843005 -1.758334 0.906296 -2.303034 -1.653960 -0.540343 4.551630 -2.686608 -0.507366 2.104239 -7.706048 -5.896282 2.836483 -0.197296 -2.929831 -2.779380 -0.263855 1.516058 0.993160 -0.588381 -3.397117 -1.992554 2.461777 -2.224251 -1.179233 -0.297198 -0.063227 0.076332 1.493856 -4.546072 2.104622 3.001052 -1.243617 -1.946424 4.520103 -0.122215 3.887581 0.143422 1.627411 -0.199992 2.337078 1.815814 0.948189 -2.348687 -1.618117 -3.730962 -1.696148 0.013182 -2.126342 -3.050266 -1.508395 1.330724 1.868226 0.336074 3.582949 -2.006953 6.506459 1.483769 -1.409363 -3.161894 -4.084240 -4.479564 -2.931580 0.095024 -1.080231 -4.381536 1.150891 2.492263 0.666155 -0.616737 2.961657 0.532461 1.566299 0.766617 -1.724973 0.801948 -4.100563 2.144995 -3.121040 -2.164676 3.049384 2.531911 3.416437 0.383357 -0.240553 1.167272 -1.683962 -3.104085 1.599934 0.504353 1.902873 4.923450 3.994515 8.174275 -2.205897 -0.171225 -0.144809 -1.039682 -0.608109 0.091161 -3.037289 0.590700 1.122974 -0.219550 6.392220 0.203147 -1.889174 2.440649 0.234882 0.998084 -4.138586 3.180526 -2.167343 2.150040 -1.050877 -2.208216 -3.016204 -1.165081 -3.758313 -2.917387 5.624982 -4.988873 -5.551248 2.615252 0.937271 3.781495 -6.596462 3.655359 -1.846519 5.464830 -0.700808 -1.763992 0.710114 -0.086218 -1.066299 2.739665 1.308865 -2.694776 1.381767 1.675482 0.954891 1.661182 0.126990 2.019853 -0.773127 1.715985 -2.202233 1.976189 -0.189710 -1.276908 -2.087166 -0.775898 0.318555 2.389823 -0.053675 -1.992653 1.949845 -0.456132 -0.281204 4.236601 0.803825 -1.726018 0.421529 -0.744369 3.440916 -3.390060 -2.827475 -0.964901 2.240467 1.448081 0.821257 -6.003334 -2.507404 -4.894091 -4.846319 -1.910218 1.492531 1.406078 1.729942 -1.250773 -3.958447 -3.173286 6.427879 0.500777 4.149765 2.698360 1.361720 4.411485 2.125259 1.748955 -1.398642 -0.678293 0.713668 -0.892029 -0.531884 -2.684987 2.232858 -3.710491 3.485287 3.718131 -2.010191 3.235905 0.658077 0.487224 -5.164964 4.593075 1.710172 -5.387791 0.584665 4.139721 2.039357 -4.406633 -3.084084 -PE-benchmarks/sort-array-wave-form-2.cpp__main = -0.191763 -1.420849 2.845006 1.975296 -0.294587 0.343124 0.745812 -0.547509 0.750624 0.145051 -0.896211 1.265866 -1.526471 0.231248 -0.361718 0.610251 -2.204101 -1.523903 -0.020052 -0.438263 -0.550759 -0.842862 0.194713 1.228533 1.359012 1.050543 -1.018037 -0.304107 -1.912740 -1.140926 0.178824 -0.476382 1.094446 0.746597 0.723107 -2.797739 1.230479 1.364275 -0.270168 -1.823836 0.886624 -0.994328 -0.002169 -0.875668 -0.340497 0.647486 1.100068 1.344058 0.811251 0.559405 -0.356252 -0.436104 0.435026 2.177103 -0.155546 1.049142 1.489972 -0.559389 -0.014201 -0.459266 0.370989 -0.935868 0.668905 0.619916 -0.716274 -1.074883 -0.041349 -1.038069 -0.929805 1.025327 0.674105 -0.074608 -1.260294 -0.670178 -1.320419 -0.258889 0.031953 1.494041 2.365414 -1.356256 1.767628 0.491109 1.032164 -0.036713 0.635441 0.243931 1.110720 0.473739 -0.622459 -0.421849 -1.858635 -0.751300 -0.107096 0.383563 -0.478069 -1.232985 0.801892 -2.113900 -1.927244 0.496587 0.285314 -0.813819 -0.446707 0.500166 0.742193 0.988909 -0.378640 -1.263151 -0.309851 0.242250 -0.631293 -0.300154 0.026903 0.177499 -0.608681 -0.465228 -2.092713 0.491755 0.516133 -0.759358 -0.000308 1.393863 -0.530259 0.981989 0.069366 0.509542 -0.226197 1.618642 0.794787 0.278319 0.335844 -0.455554 -0.714770 0.239564 0.747449 1.117158 -1.231884 -0.329140 -0.078405 0.515567 -0.514590 -0.205430 -0.420921 1.657113 0.784582 -1.349911 -1.607660 -1.349093 -1.057415 -1.526285 0.255306 -0.915985 -0.709329 0.638330 1.177856 0.719482 0.603422 2.045140 -0.995347 0.871713 0.190891 -0.289908 0.680161 0.143123 1.049679 -1.095084 -0.798878 0.971408 0.507189 0.758337 -0.018989 -0.163765 0.524647 -1.531483 -0.933662 0.950164 0.673055 0.312980 1.469258 1.203924 1.500928 -1.053397 -0.116203 0.715832 -0.261866 -0.523100 0.566284 -1.582324 1.045005 0.147105 0.264658 1.722464 0.163668 -1.006744 0.939797 -0.012842 0.270588 -1.245989 0.471125 -0.787838 0.145064 -0.872646 0.250024 -0.855628 -0.662385 -1.026047 -0.721638 2.178922 -1.245192 -1.838413 0.944266 -0.298012 1.577228 -2.562786 1.532833 -1.029655 1.564863 -0.125356 -0.451428 0.214498 -0.650215 -0.800454 0.420379 0.606582 -0.245185 0.519236 1.166548 0.813508 0.258451 0.249607 1.187774 -0.126913 1.087053 -0.379417 0.661786 -0.329681 -0.563985 -0.072284 -0.305294 -0.058640 0.385919 0.134564 1.154361 0.929664 0.763774 1.425691 0.981139 1.138540 -0.962924 0.265360 -0.384053 1.671453 -1.015539 -0.912412 -0.170417 0.913223 -0.140537 0.805492 -2.228937 -2.425265 -1.464873 -2.299827 -0.530810 -0.478625 0.701693 0.010089 -0.159674 -1.732437 -1.024949 1.086961 -0.017089 2.201208 1.114226 0.115558 1.501531 1.117623 -0.644828 -0.668702 0.447131 0.909791 -0.158508 0.014586 -1.656775 1.006624 -1.574481 0.727496 2.204064 -1.185592 0.632392 -0.714597 1.654451 -1.673075 2.346068 0.829715 -2.032573 0.746151 1.098313 1.367040 -0.088447 -1.239337 -PE-benchmarks/tower-of-hanoi.cpp__towerOfHanoi(int, char, char, char) = -1.328465 -1.849980 4.120558 2.241597 -1.169340 0.603418 0.720698 -0.789596 0.641603 -2.248497 -0.833511 1.845252 -2.278742 -0.075104 -1.778505 -1.020715 -3.861963 -2.270754 -0.826626 -1.112004 -0.834924 -1.074252 -0.419960 2.913967 1.502133 1.905928 -1.828369 0.286371 -3.840916 -0.260132 0.754898 -0.043284 1.633380 0.287816 1.277755 -6.423179 1.366563 2.548868 -0.407963 -2.710730 1.670533 -2.354282 0.082222 -2.231506 -2.190722 0.180140 1.031203 1.074858 0.822573 -0.739533 -1.992196 0.372243 -0.730076 4.437342 -0.216731 1.426355 2.504019 -0.666537 -0.366554 -0.872346 0.031339 -1.245750 0.836293 0.032699 -1.893854 -1.570377 0.636194 -1.910816 -1.056029 1.612414 1.010758 -0.429390 -0.935902 -1.134878 -4.976157 -0.791428 4.016989 2.436673 2.818985 -2.512206 2.163286 -0.235164 1.216281 1.090824 1.550668 0.618831 2.181746 0.423753 -0.168881 -0.574729 -4.016391 0.011576 -0.522416 0.553632 -0.927677 -3.150197 1.424325 -6.139723 -2.893446 0.307812 0.279707 -1.957092 -1.270352 -0.230227 0.949654 1.402217 -0.709195 -1.655359 -0.777465 1.658960 -0.981004 0.086260 1.121786 0.911947 -0.198591 -2.198676 -3.108994 1.905047 1.054755 -0.003911 -0.061193 2.976743 -1.621302 1.204856 0.326827 1.021760 -1.146170 2.742424 0.166576 -0.891600 -1.038165 -0.870307 0.015016 -1.954901 0.157306 3.188951 -2.568509 -1.642882 -0.160588 0.763431 -1.004602 -1.328996 -1.079431 1.782697 -0.006457 -2.108993 -1.721641 -2.269345 -2.370543 -3.296234 -1.071873 -0.581369 -2.160913 2.707363 1.656958 2.316338 0.635484 3.218157 -0.271647 1.034374 0.613902 -1.818645 1.043008 -0.786204 1.451010 -1.616626 -1.614685 1.397254 -1.049378 2.960751 -0.399474 0.446750 0.256740 -2.009219 -2.158474 0.877014 1.898904 1.663371 2.548307 2.923288 -0.002340 -3.286072 0.032955 0.756623 -1.364856 -0.585262 0.453216 -1.514931 0.675038 1.116217 -0.842378 3.305159 0.051276 -1.612753 1.263130 0.526692 1.020160 -2.275122 0.035520 -1.177718 0.333335 -1.966848 -0.826060 -1.656053 -0.893849 -3.096043 -3.791448 3.320071 -3.894303 -3.868866 2.046744 1.000189 3.908068 -4.982960 0.036177 -1.243989 4.646358 0.553642 0.215730 0.515456 -1.568689 -1.891003 1.418851 0.520495 -1.741736 0.524548 1.616473 1.483421 1.018209 -0.403071 1.996956 -0.338894 1.904104 -1.629401 0.856456 -0.883849 -2.237286 0.514646 -0.366169 -0.226827 1.018531 1.622573 1.487541 1.475369 2.643850 2.315361 3.048566 1.746916 -1.002294 -0.850540 -0.957331 1.823392 -1.266610 -1.728168 -0.310529 2.737168 0.507185 0.356527 -3.514820 -4.818399 -4.392270 -4.812078 0.661457 -1.972131 -0.089314 0.445404 -0.456177 -3.305463 -1.411849 1.367292 -0.210856 5.493478 1.768866 0.091443 2.535388 2.124286 -2.064567 -0.478931 2.734972 2.062909 -0.279872 0.237806 -4.053832 2.149961 -2.346702 1.255733 4.069326 -2.092915 1.984412 -0.164072 2.026325 -2.686152 3.980392 1.067245 -4.224788 0.676744 1.691977 1.342974 1.197595 -1.773878 -PE-benchmarks/tower-of-hanoi.cpp__main = -0.007067 -0.437586 0.743153 0.573744 0.036027 -0.024683 0.362374 -0.011838 0.316954 0.083504 -0.197723 0.295780 -0.456042 0.211075 -0.133011 0.415758 -0.510867 -0.505221 0.092427 0.003461 -0.063252 -0.219927 0.410697 -0.001852 0.426258 0.248641 -0.301038 -0.418793 -0.477059 -0.164099 0.356203 -0.287977 0.377804 0.270713 -0.113704 -0.878327 0.262985 0.195589 -0.188062 -0.532769 0.298621 -0.173182 0.115581 -0.397939 0.011430 0.131485 0.324848 0.320135 0.235201 0.323148 -0.037234 -0.100818 0.164473 0.667110 -0.253325 0.180037 0.359791 -0.053337 -0.054925 -0.186826 0.237425 -0.121299 0.223831 0.308172 -0.055994 -0.329730 -0.294688 -0.477842 -0.474255 0.239572 0.021787 0.413530 -0.462611 0.031874 -0.144498 -0.023119 -0.402538 0.430076 0.746942 -0.456219 0.480206 0.123621 0.319121 -0.094549 -0.112846 0.225533 -0.135644 0.217782 -0.146037 -0.143643 -0.384925 -0.096052 -0.054077 -0.022663 -0.002730 -0.487752 0.314171 -0.015193 -0.366189 0.154898 0.125956 0.027642 -0.059302 0.123966 0.081592 0.512625 -0.308221 -0.338485 -0.141854 -0.231303 0.156648 -0.103376 0.059642 0.022094 -0.319947 -0.325309 -0.549153 -0.081386 -0.033285 -0.430059 0.083015 0.202264 -0.263760 0.219885 -0.037171 0.109222 -0.157584 0.557789 0.346668 0.214580 0.342556 -0.101694 -0.385788 0.010476 0.425299 0.847812 -0.262564 0.025972 -0.247415 0.047114 -0.106076 -0.288776 0.226043 0.168302 0.421266 -0.418702 -0.492155 -0.313047 0.003656 -0.492568 0.157629 -0.398733 0.306112 0.349781 0.332229 0.102968 0.359431 0.911610 -0.464491 0.314571 -0.056171 -0.093590 0.202034 0.317829 0.266576 -0.170392 -0.249086 0.188423 0.220032 0.068170 0.120952 -0.113562 0.185971 -0.503043 -0.120677 0.200610 0.240191 -0.275405 0.185842 0.090705 0.009336 -0.236563 -0.103891 0.314978 0.048655 -0.111938 0.180152 -0.557206 0.444565 -0.109544 -0.077376 0.078936 0.071370 -0.392163 0.382427 -0.216815 0.002454 -0.159447 0.075594 -0.218559 -0.134298 -0.365609 0.248639 -0.122747 -0.187242 -0.018081 0.104686 0.550397 -0.064794 -0.178031 0.008917 0.030807 0.157204 -0.610141 0.684621 -0.295123 0.329183 -0.061279 -0.132656 0.029957 0.006200 -0.134862 -0.266939 0.238066 0.047115 0.073172 0.486191 0.254106 -0.137221 0.147488 0.403695 0.090875 0.317431 0.096920 0.152384 -0.129906 -0.217130 0.146475 -0.076956 0.079436 -0.094929 0.004896 0.626461 0.232267 0.224719 0.615278 0.087623 0.503521 -0.350551 0.085110 -0.017047 0.735710 -0.190048 -0.043920 -0.095029 0.312867 -0.237024 0.345871 -0.434464 -0.808973 -0.170557 -0.519674 -0.159161 -0.084036 0.136467 -0.226716 0.045589 -0.434569 -0.219285 -0.132565 -0.163873 0.382197 0.309923 -0.014836 0.379174 0.278644 -0.400476 -0.281681 0.147467 0.284274 0.049101 0.056235 -0.354275 0.133337 -0.494500 -0.064789 0.549201 -0.273374 -0.051718 -0.142722 0.659461 -0.252993 0.823565 0.266973 -0.366526 0.439009 0.243450 0.581003 0.166334 -0.279611 -PE-benchmarks/magic-square.cpp__generateSquare(int) = -3.583337 -9.092037 12.319402 8.616372 0.694805 4.391093 4.743506 -0.301750 1.097197 3.824133 -3.411376 8.473659 -6.375387 -2.125435 0.858773 -0.457539 -7.062251 -7.729733 1.479687 -0.874864 -2.077307 -4.935253 -4.988622 11.227708 4.842065 0.510285 -4.317044 -1.210857 -13.085299 -4.821386 -4.151756 -0.297546 5.119216 0.176525 7.423988 -11.676552 4.109468 8.422060 1.571430 -10.200868 2.037383 -3.778959 1.464851 0.464358 -2.522673 4.795556 7.669738 3.642475 2.054752 2.363890 -0.836234 -3.657263 2.575097 9.408423 4.022835 6.488748 7.348762 -3.852276 3.159623 -2.752834 1.003059 -8.024984 3.238756 0.835570 -3.971913 -1.921897 0.525520 -1.177885 -2.661699 3.177872 6.349814 -3.372064 -4.982825 -3.527855 -8.416215 -3.001298 4.364410 5.217158 10.440687 -4.763464 10.844568 4.303937 8.031552 0.674286 6.991175 -0.036061 7.256972 1.386212 -4.715440 0.735151 -11.810932 -3.566744 -2.855065 3.532119 -3.766501 -2.924274 1.986856 -10.804172 -10.600593 5.131478 -1.600089 -4.420340 -3.359687 2.091087 5.097246 4.414092 -1.569432 -7.048338 -4.385304 4.529040 -6.170230 -1.712957 1.398994 -0.444143 -0.919885 -1.844935 -7.444063 2.893429 6.334697 -2.967038 -2.115565 9.183617 -2.883379 8.472590 0.755594 1.557417 0.222290 5.164692 6.809194 -0.684190 -1.159377 -7.850495 -8.234889 0.404129 -0.438633 1.652471 -5.719670 -3.185211 2.589915 4.055516 1.339032 4.275409 -1.067861 10.443074 3.357769 -4.753899 -6.767642 -8.808450 -5.005269 -3.468372 0.692568 -1.788277 -4.899278 1.596187 5.026282 2.723166 -0.627278 5.357586 -0.591810 4.771467 1.028940 -1.591450 0.396982 -2.049413 3.734923 -5.600639 -3.302047 4.813055 4.846124 6.138634 0.257868 -1.568592 2.515889 -3.302261 -5.812184 2.252721 2.944062 4.824793 9.705323 7.026780 10.015074 -4.948818 -3.040860 -0.003134 -1.505113 -2.442547 0.840105 -6.332553 3.912507 1.147972 -1.300973 10.902107 -0.648953 -3.823378 6.402573 1.671510 1.872121 -7.274857 4.050877 -4.374204 1.971869 -2.901105 -2.201290 -7.071146 -2.551847 -7.945072 -5.171393 11.157243 -4.654146 -11.289557 2.618243 -3.116833 7.084036 -13.089969 6.490432 -3.684687 6.650812 -0.693140 -2.915435 -0.152024 0.001806 -1.290078 3.846682 2.621483 -4.977050 3.724749 3.855905 2.242345 1.627592 1.971184 3.758658 0.096461 1.816331 -3.217777 2.168528 -1.989046 -0.532932 -2.006826 -1.328965 2.635451 6.094517 -1.018355 -0.118081 3.999215 0.237151 2.279593 7.705593 0.357324 -3.587061 -1.778745 -2.382184 8.370107 -6.435602 -5.230389 -4.053523 3.144258 2.192018 0.724813 -11.485895 -6.750777 -6.749895 -11.211954 -3.233602 0.286393 1.769069 4.063940 -1.330166 -9.778891 -4.957349 6.547847 1.594314 8.364272 5.230389 0.120124 9.379259 4.087808 0.395611 -3.229447 1.065371 1.415373 -3.168000 -0.684420 -6.060730 3.295737 -8.840165 7.620476 8.434789 -4.589453 4.853932 -1.778443 5.383733 -10.096269 10.553829 4.850877 -11.416286 -0.675199 5.143154 6.054613 -6.625368 -6.329359 -PE-benchmarks/magic-square.cpp__main = -0.072938 -0.430857 0.656352 0.530553 0.034117 0.035859 0.394488 -0.062788 0.342826 0.128081 -0.167301 0.210564 -0.541686 0.179299 -0.137711 0.353022 -0.456996 -0.478737 0.067302 -0.030790 -0.051641 -0.301122 0.379020 0.042470 0.381994 0.198397 -0.246423 -0.383088 -0.525725 -0.144175 0.338832 -0.246761 0.359771 0.269817 -0.120994 -0.820646 0.247899 0.248676 -0.174879 -0.510116 0.293841 -0.262429 0.138754 -0.326935 0.022489 0.119480 0.264419 0.309873 0.269094 0.245135 0.037403 -0.123539 0.141608 0.650898 -0.306121 0.230622 0.295370 -0.019358 -0.071016 -0.114009 0.175252 -0.090754 0.253036 0.320334 -0.139649 -0.276972 -0.247696 -0.422607 -0.505162 0.263220 -0.037748 0.339974 -0.480808 0.015293 -0.167220 -0.050994 -0.465080 0.406764 0.730140 -0.440716 0.501797 0.115140 0.263164 -0.119542 -0.024741 0.171349 -0.040015 0.151983 -0.175942 -0.142656 -0.395700 -0.067388 -0.056251 -0.010396 -0.016182 -0.448362 0.284820 -0.045990 -0.430423 0.121077 0.068736 -0.005187 -0.096717 0.167133 0.080679 0.463871 -0.314047 -0.431495 -0.152029 -0.120397 0.130020 -0.109684 0.056540 -0.013159 -0.302084 -0.387311 -0.520759 -0.111034 -0.032983 -0.450900 0.013464 0.271197 -0.263308 0.243859 0.022910 0.101583 -0.118546 0.560061 0.272505 0.196948 0.332443 -0.105531 -0.420089 0.002900 0.370922 0.797808 -0.235084 0.080378 -0.201738 0.036130 -0.136694 -0.249510 0.193099 0.181834 0.392492 -0.410864 -0.400254 -0.250613 0.024295 -0.513938 0.164772 -0.373795 0.288601 0.269280 0.341063 0.129857 0.325715 0.900594 -0.454162 0.268861 -0.027925 -0.122703 0.227243 0.325855 0.286824 -0.191899 -0.302847 0.172182 0.218727 0.067020 0.070447 -0.056369 0.103414 -0.476961 -0.114734 0.161424 0.215241 -0.235635 0.262529 0.130304 0.066100 -0.297632 0.004871 0.294086 0.031465 -0.046604 0.120226 -0.579357 0.444156 -0.059249 -0.102426 0.099064 0.036910 -0.355017 0.349489 -0.225847 0.059862 -0.256553 0.075539 -0.263698 -0.146873 -0.410716 0.202516 -0.077192 -0.263716 -0.021220 0.125599 0.529495 -0.032972 -0.169398 0.072188 0.034802 0.164567 -0.598099 0.706040 -0.292053 0.299599 -0.113403 -0.125955 0.027270 0.101198 -0.081259 -0.250269 0.223248 0.005155 0.146950 0.500980 0.238171 -0.085327 0.167251 0.412723 0.107788 0.243979 0.017960 0.197664 -0.085356 -0.198396 0.181529 -0.127755 0.119196 -0.045415 0.000768 0.688970 0.337579 0.161824 0.573464 0.135996 0.458079 -0.285308 0.112083 -0.033917 0.667019 -0.182341 -0.039329 -0.102547 0.254705 -0.211097 0.335282 -0.462138 -0.805916 -0.100925 -0.503458 -0.104970 -0.109693 0.149473 -0.139710 0.080507 -0.495038 -0.231848 -0.110710 -0.201876 0.388409 0.239299 0.037114 0.370154 0.337032 -0.351527 -0.222433 0.161707 0.275056 -0.018061 0.025055 -0.302377 0.138060 -0.497776 0.031411 0.474191 -0.244847 -0.029794 -0.146042 0.623004 -0.293301 0.776104 0.267666 -0.297660 0.483088 0.272328 0.569092 0.163990 -0.265763 -PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.262969 -4.440914 5.489905 3.764384 0.672265 2.003693 1.754648 0.020349 0.750999 1.804635 -2.131164 4.068123 -3.663750 -1.094106 0.501804 -1.035368 -3.003094 -3.881381 0.386900 -0.005237 -1.340019 -2.602989 -2.682041 5.694589 2.080894 0.553254 -2.211845 0.447459 -6.878557 -2.024004 -2.282929 -0.007073 2.318916 0.241178 3.513437 -4.481028 1.502730 4.262067 0.937523 -4.800935 0.880456 -2.399556 0.367675 -0.023007 -0.452057 1.748145 3.821368 1.616164 0.672068 0.276701 -0.671740 -2.408249 0.277854 4.224167 1.858083 3.316084 4.558291 -1.729108 1.157747 -1.251202 0.388128 -4.165600 1.852889 0.950806 -3.103965 -0.477178 1.543499 -0.614021 -1.304418 1.704752 2.953904 -1.838401 -1.768558 -2.698487 -3.720922 -1.115583 4.621115 2.108735 5.256067 -2.085508 5.312241 2.277859 3.957142 0.637213 3.547470 -0.391045 4.064824 0.483593 -2.771271 -0.568261 -6.400390 -1.569787 -1.800122 3.223976 -1.407252 1.262025 1.118341 -5.895318 -5.373802 1.837374 -1.290569 -1.949026 -2.204865 1.983995 2.508139 1.811528 0.280249 -3.370120 -2.250405 2.227052 -3.642118 -0.870277 0.155504 -0.100611 -0.955762 -0.620394 -3.872869 1.102027 3.137942 -1.937302 -1.439611 4.375205 -2.199009 4.632270 0.455838 0.782570 0.827146 1.911605 3.355485 -0.893490 0.233814 -4.090516 -3.471677 -0.426308 -0.565011 1.304473 -3.317873 -0.713765 2.024944 1.418047 0.631798 1.454321 -1.785262 5.523374 0.527409 -2.763135 -3.240424 -4.492825 -2.696220 -1.814471 0.150132 -1.089341 -2.701640 -0.076744 2.391725 1.685541 -1.011895 4.080070 -0.738772 2.544501 1.280114 -0.956586 -0.136369 -1.481840 1.951306 -3.169919 -1.953087 2.267380 2.511845 1.753621 0.060718 -0.892143 0.820060 -2.330747 -3.374812 1.468446 0.680991 2.744160 4.794408 3.205899 6.015983 -3.567794 -0.457485 -0.321129 -0.213613 -1.299305 0.322261 -3.128976 1.795428 0.497044 0.445875 5.730103 0.204837 -2.576359 2.311713 0.988881 0.869913 -3.675240 2.674043 -2.053357 1.129656 -1.159632 -1.151998 -2.926777 -1.396513 -3.608598 -1.834839 5.337683 -1.927451 -6.514059 1.346440 -0.048501 4.307918 -6.895541 2.362599 -1.831710 4.439861 -0.441543 -1.378070 0.115997 -0.528187 -0.203964 2.264491 1.284299 -1.940582 2.027173 1.326297 0.911893 1.804953 1.235140 1.255699 0.239817 0.372909 -1.518561 0.563420 -0.185838 -0.928578 -1.187214 -0.940315 1.791234 3.453079 -1.035012 -0.699695 3.233051 -0.217609 1.419753 3.713531 -0.183090 -1.591264 -0.744252 -0.807013 4.271957 -2.970584 -2.533861 -2.086372 1.333198 1.120223 0.898327 -5.445932 -3.599169 -1.674374 -6.289549 -1.814119 -0.009664 0.846020 2.311851 -0.495313 -4.609531 -2.111862 2.820932 1.032377 6.820968 1.947332 0.687506 4.202304 1.904473 0.103810 -1.959596 1.033467 0.788142 -2.276707 -0.399889 -2.911653 1.302058 -3.535532 3.940618 3.780335 -2.144419 2.346675 -1.085460 1.421962 -4.905305 5.136207 2.605560 -5.883487 -0.305554 1.801879 3.633422 -3.533785 -3.266401 -PE-benchmarks/optimized-naive-algorithm.cpp__main = 0.481100 -1.658956 8.679443 3.572307 -1.860673 -0.079924 5.520775 -4.169525 5.036607 -1.363471 -1.777382 -1.495800 -6.020859 0.026236 -2.646865 0.889150 -8.009808 -4.051246 -0.722379 -3.952180 -1.665192 -4.235573 5.358574 0.024056 4.796911 2.826192 -1.267347 -2.954508 -3.657446 -1.591639 6.316500 -1.704813 2.166747 3.641952 0.101763 -9.924644 4.416561 1.063189 -2.361790 -2.834789 3.845716 -1.315558 -0.557559 -1.501463 0.752750 0.598779 1.679351 8.502127 5.160589 1.976970 0.449625 -3.217405 -1.091556 7.797892 -4.452681 1.938743 1.687217 -1.120750 -0.856048 2.914709 -0.257792 -1.710170 0.664613 4.020986 -1.357440 -2.253237 2.668382 -5.673845 -5.288727 5.812456 0.625702 -0.162271 -3.620949 -1.044043 -2.882238 -0.031849 -3.724199 5.597252 7.596114 -4.170038 4.696974 -0.249074 2.124531 -2.400756 -1.344509 0.388497 2.245975 0.005929 -1.745312 -3.192017 -7.736122 -1.854078 -0.571704 -2.046247 0.988620 -7.047852 3.273899 -4.630901 -5.154442 -0.342099 2.383795 -2.162537 -1.687965 3.273785 1.952607 1.247034 -2.106602 -4.914923 -1.365331 0.556635 -3.656460 2.695082 1.136075 0.570311 -3.239348 -3.588644 -5.496564 0.605960 -1.829250 -2.459795 -1.242045 4.038083 -3.004669 1.622756 2.729904 2.856756 -1.392210 4.673484 0.928474 0.934462 3.695510 0.632216 -1.734226 0.167264 3.522292 7.276842 -0.147667 -0.360103 -1.960263 1.189310 -5.543382 -2.253974 -0.879725 2.129091 1.746189 -6.552372 -4.650478 0.357120 -0.838080 -7.207088 1.717970 -3.311472 -2.033145 0.758588 3.002485 4.716005 2.747641 6.538729 -5.252106 2.455640 -0.561339 -1.754355 1.380864 2.455081 4.682163 -2.767970 -2.079442 -1.246481 -1.092592 1.713449 -1.246121 -1.489453 -0.247759 -7.715983 -2.580930 -0.086449 2.299370 -1.493043 0.216422 4.749172 1.453695 -6.262863 -0.021753 5.506449 -0.426201 -2.560342 3.485021 -5.632004 4.159821 0.467510 0.470411 2.858845 0.860121 -1.882986 2.259607 -1.938403 1.005795 -3.286819 -3.008656 -2.248197 -1.043107 -3.954656 2.265407 -2.456067 -2.804467 -1.270768 -2.127859 4.610900 -1.574234 -4.169873 6.416483 -1.688925 4.324014 -6.193310 6.720028 -2.318795 2.075404 -1.061500 -0.001060 -0.968412 -0.294892 -2.056255 0.807223 -1.229165 0.658603 4.210362 7.203611 3.024729 2.296528 0.098857 6.378944 -1.765388 3.219828 -1.504269 2.481512 -2.412815 -4.610100 1.616533 -0.847493 -1.250349 -1.171319 1.933584 7.682189 4.142809 2.338893 7.230569 1.516357 5.242835 -1.652183 1.774942 0.197187 4.347699 -1.830919 -2.436297 2.767509 1.939520 -3.425495 2.962007 -6.682047 -10.189865 -2.465804 -8.541089 -1.002363 -5.732367 2.330768 -1.121080 0.452694 -5.461189 -1.925402 -0.137554 -0.351819 4.462628 3.129814 0.085793 3.691635 6.897016 -4.583575 0.280359 3.775088 5.176063 -1.159972 -1.487511 -5.876693 3.303631 -5.395596 1.406099 6.550719 -2.827599 0.694011 -4.522400 6.655689 -6.693529 5.782239 1.773858 -2.772407 4.992396 2.280655 5.144938 6.143545 -2.112574 -PE-benchmarks/optimized-naive-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.789443 -0.702282 1.656300 1.056237 0.145103 0.254162 0.739228 -0.595295 0.833717 0.605793 -0.070607 0.498032 -0.956896 0.161563 -0.489612 0.657158 -0.834992 -0.902829 -0.138707 -0.854567 -0.392576 -0.487954 0.412780 0.068559 0.835129 -0.453412 -0.666452 -0.653350 -1.357154 -1.105381 0.344643 -0.368280 0.677723 -0.886617 -0.261108 -2.728297 0.898207 0.924508 -0.515890 -0.954813 0.808996 -0.726023 0.264208 -0.073383 -0.328688 0.060340 0.349723 -0.140596 0.776125 0.447163 0.668552 0.280393 0.245834 2.337181 -0.854594 0.735234 0.454371 -0.279277 -0.570415 0.272255 0.115709 -0.252673 0.629891 0.223786 -0.287093 -0.888638 -0.101136 -0.434523 -1.010631 0.496703 -0.130369 -0.416413 -0.462573 -0.125376 -0.918483 -0.578942 0.001990 0.481373 1.321583 -0.816461 1.085096 0.026164 0.241599 0.154284 0.375762 0.223287 0.567524 0.141443 -0.260257 -0.440481 -0.366016 0.340308 -0.019276 0.847961 -0.257308 -1.056403 0.846294 -0.498789 -1.193291 0.414135 0.354577 -0.320849 -1.129260 -0.212842 0.227056 0.699116 -0.753745 -1.095974 -0.744459 0.318897 0.023521 -0.275082 0.102785 -0.888200 -0.385433 -0.549895 -1.105452 0.197393 0.064937 -0.482665 -1.055129 0.983002 -0.501927 0.245474 0.130723 0.843676 -0.528635 0.870621 -0.070003 0.629790 -0.026624 0.016031 -1.637803 -0.628387 0.494151 0.966161 -0.493667 -0.091727 -0.675407 0.135071 -0.581371 0.194022 -0.060865 1.023963 1.167689 -0.588863 -0.612747 -0.334374 0.159231 -1.286837 0.164935 -0.617146 -0.242837 0.270834 0.757524 0.359299 0.646916 1.645988 -0.492651 0.719980 -0.048345 -0.664362 0.890378 -0.411895 0.814425 -0.644712 -0.674018 0.190500 0.551297 0.539785 -0.054591 0.173420 0.120108 -0.994985 -0.377535 0.001375 0.419351 -0.209555 0.700094 0.775158 1.817300 -1.400025 0.133721 0.563533 -0.458136 0.068690 0.022745 -1.034393 0.169628 0.468276 -0.502064 1.073253 0.124769 -0.903149 0.464800 -0.321892 0.305580 -0.739630 0.396365 -0.665316 -0.167800 -0.430227 -0.545558 -0.587925 -0.462107 -0.590501 -0.557594 1.221334 -0.810341 -1.068616 0.808105 -0.007706 0.317763 -1.918996 1.831473 -0.741795 0.791495 -0.695083 -0.020402 -0.183155 0.976755 -0.618023 0.461619 0.338374 -0.563858 0.769017 1.631509 0.569609 0.419995 -0.226341 1.100399 -0.159026 0.684561 -0.348114 0.993906 -0.327159 -0.722068 0.054431 -0.261553 -0.033217 -0.019255 0.357172 0.583910 0.695269 -0.061943 0.525901 1.038181 1.061300 -0.460233 0.734806 -0.188438 1.072666 -0.301556 -0.333920 0.195240 0.635358 -0.042851 0.540352 -1.380254 -1.311099 -0.653255 -1.454703 0.388663 0.288079 0.055711 -0.156151 0.045352 -1.490652 -0.602522 0.623809 -0.333852 1.153462 0.598342 0.381406 0.819872 0.914452 -0.454673 -0.248391 -0.094596 0.203368 0.012596 -0.511319 -0.571258 0.691614 -1.043832 0.368979 0.841238 -0.368074 0.288385 0.336841 0.421650 -0.884005 1.480928 0.342271 -0.397704 1.154885 0.894274 1.436844 -0.291045 -0.511648 -PE-benchmarks/Iterative_QuickSort.cpp__partition(int*, int, int) = -2.043027 -3.690603 5.917148 4.154146 -0.068484 1.633000 1.835821 -1.116232 0.504957 2.218292 -1.198456 3.483046 -3.311369 -0.569925 -0.463228 0.681566 -3.215762 -2.919211 -0.448805 -1.527772 -1.509132 -1.527407 -1.525085 4.232185 2.745902 -0.508259 -2.214140 -0.381372 -5.134846 -3.756622 -2.116858 -0.184694 2.316480 -1.516510 2.127253 -6.198053 2.609520 4.446878 -0.203030 -3.588787 1.693231 -1.860777 0.066466 -0.018299 -2.294151 1.030616 2.558054 0.217996 1.202305 1.026737 0.853106 -0.657548 2.117165 6.162863 0.910704 3.391452 3.661911 -1.443166 0.393458 -0.650439 0.378716 -2.768086 1.524540 -0.105321 -1.208353 -1.742410 0.263779 -0.515571 -1.170841 1.297334 1.499327 -2.435176 -1.690659 -2.152811 -3.983522 -1.703279 2.001724 1.725859 4.606277 -2.818684 4.485763 1.718806 1.690435 0.844775 2.770919 0.097764 3.164435 0.699303 -1.344647 0.201260 -2.292426 -0.502974 -0.259351 3.243922 -2.191158 -2.227616 2.181417 -4.907735 -5.211378 2.308025 0.048170 -2.516488 -1.843546 -0.233992 1.057189 1.358996 -1.368711 -3.296481 -2.020640 1.833166 -1.426762 -1.130114 -0.081356 -0.510405 -0.170506 0.090652 -4.108511 1.668284 2.191845 -1.433983 -1.823462 3.878943 -0.508462 3.271876 0.247495 1.655503 -0.380300 2.474342 1.728169 0.838330 -1.532955 -1.237307 -3.250243 -1.232595 0.583459 -0.242580 -2.532945 -0.964541 0.539003 1.536223 0.202188 2.635350 -0.911797 5.381842 1.437824 -1.603654 -2.736840 -3.309254 -2.955012 -2.812825 0.301481 -1.275305 -3.200617 0.964825 2.351060 0.597006 -0.038748 3.325974 -0.001051 1.920721 0.646727 -1.607634 1.111348 -2.744181 2.152680 -2.706670 -2.152721 2.225276 2.281831 2.834445 -0.005994 0.166263 0.919414 -2.000473 -2.190178 0.678990 0.749294 0.777539 4.193891 3.324635 7.385955 -2.300441 -0.090003 0.279340 -1.144941 -0.394918 0.176987 -3.146932 0.601958 1.029163 -0.975904 5.299192 0.302103 -2.184963 2.485058 -0.224827 0.791525 -3.479779 2.682333 -1.957126 0.911398 -1.232160 -1.326134 -2.385191 -1.187245 -3.198310 -2.261872 5.057534 -4.536884 -4.333900 1.900797 0.890617 2.698113 -5.917952 5.015489 -1.873855 4.226076 -0.845486 -1.667642 0.583324 0.758926 -1.186281 2.192711 1.209362 -2.082950 1.408497 2.451282 1.110976 1.340427 0.158586 2.314697 -0.623264 1.698120 -1.798951 2.092821 -0.294037 -1.645901 -1.306773 -0.745023 0.238356 1.725269 0.252848 -0.425476 1.910882 -0.228390 0.367716 3.487686 1.413418 -1.600049 0.745955 -0.748836 3.508466 -2.710237 -2.113380 -0.729272 2.033720 1.036378 1.316526 -5.402399 -2.944153 -3.679520 -4.238714 -0.938420 1.212416 1.146910 1.030896 -0.821626 -4.150564 -2.884531 4.762457 -0.144606 3.610436 2.660534 1.294791 3.876752 2.092489 0.958658 -1.101667 -0.180623 0.990434 -0.486138 -0.543485 -2.238274 1.887698 -3.641172 2.799349 3.392538 -1.598401 2.500617 0.192456 1.040303 -4.357899 4.587421 1.512538 -4.374105 1.255471 3.875141 2.634568 -3.276336 -2.619150 -PE-benchmarks/Iterative_QuickSort.cpp__quickSortIterative(int*, int, int) = -2.521564 -6.377931 8.831759 6.361749 0.327087 2.554087 4.169767 -0.331588 1.119893 3.818111 -1.743716 5.320539 -5.679363 -1.209741 1.207841 0.730103 -4.772449 -4.945567 0.424985 -1.391006 -2.270693 -2.858110 -2.906160 6.928582 4.166164 -2.109365 -2.659444 -1.843494 -8.278450 -1.882564 -2.723587 -0.401866 3.582669 -2.012773 4.131009 -10.132744 3.113913 5.602358 0.251125 -6.276234 1.866704 -3.042747 1.465844 -0.489273 -2.591650 1.140021 5.397065 3.197656 1.700575 1.686649 0.366918 -2.527431 2.615775 11.218544 1.663351 5.054578 5.882942 -2.393391 1.112166 -1.057995 0.682486 -5.560314 2.402391 -0.046187 -2.337762 -1.733209 0.262113 -1.678269 -1.879879 1.476105 4.455087 -2.738196 -3.604637 -3.003981 -4.567202 -2.787253 -0.207408 3.749846 7.435620 -5.464140 7.592535 3.569837 4.324969 1.702717 4.580509 0.266840 4.674371 0.682292 -3.071632 0.242823 -6.674957 -1.354522 -0.835374 1.859789 -2.565740 -4.510903 2.292826 -3.944135 -8.122531 4.033359 -0.801316 -3.162111 -1.696672 0.235118 2.290320 2.797127 -2.483726 -5.407525 -3.997386 2.545792 -3.203738 -1.544739 0.466639 -0.867353 -0.486676 -2.259183 -6.181940 2.002687 4.011413 -2.679910 -2.496060 6.335036 -2.752565 6.145718 0.607491 1.499324 0.080509 4.258547 4.875716 0.065606 -0.602247 -4.544656 -6.363688 0.136971 0.842844 2.275153 -2.568289 -0.088229 1.520445 2.688580 0.953845 4.092008 0.937195 8.828541 0.233354 -3.001289 -4.583209 -5.955412 -3.395486 -2.415063 1.616661 -1.936445 -3.276333 1.603520 3.587351 1.983900 -0.721484 4.590959 -0.807779 4.342897 0.379155 -1.326914 0.745945 -2.004467 3.319659 -4.274381 -2.524150 2.556602 4.266368 3.589428 -0.011237 -0.611044 1.854235 -3.235537 -3.179391 -0.941601 1.264292 0.617405 6.746922 4.600198 11.084456 -4.300333 -0.880863 0.156363 -1.096591 -1.081292 0.489216 -4.882856 1.791890 0.904660 -2.682768 7.319342 0.301152 -4.131313 4.195075 -0.309040 0.814238 -4.430877 3.384562 -2.690668 -0.372458 -1.662106 -0.199646 -4.343606 -2.125107 -5.017218 -2.178318 8.113236 -5.506378 -6.297720 1.426448 0.058310 3.898286 -8.570973 10.981968 -2.798683 4.916470 -1.497512 -3.607538 0.299592 2.453252 -0.823687 3.018349 1.877867 -2.683566 1.679680 3.850309 1.594376 2.157136 1.512748 3.275379 -0.326566 1.548371 -2.072540 2.553889 -1.001342 -1.696047 -1.859963 -1.132828 2.066874 3.926557 -0.243316 0.540227 3.289006 -0.382927 1.226346 4.988399 0.878450 -2.493913 -0.029439 -1.357174 6.499835 -4.514852 -2.677774 -2.156070 2.021786 1.625991 1.985167 -8.307422 -4.312930 -3.471650 -5.193658 -1.886610 2.260305 1.047072 1.990145 -0.905883 -7.135382 -3.907450 4.553808 -0.297747 3.513057 3.936653 1.503333 6.626953 3.099327 1.489065 -2.623942 1.177307 1.003546 -1.385584 -0.450306 -3.318643 2.253185 -6.970688 4.988804 5.268692 -1.899518 3.149155 -1.071992 2.754909 -6.825379 7.207192 2.766741 -7.438062 0.650675 6.984715 4.956209 -5.450221 -4.259243 -PE-benchmarks/Iterative_QuickSort.cpp__printArr(int*, int) = -0.462143 -1.226195 2.150738 1.582816 0.015874 0.437937 0.769150 -0.475110 0.641424 0.581249 -0.564216 0.965449 -1.436688 0.068828 -0.008779 0.420595 -1.419678 -1.279243 -0.063267 -0.423182 -0.498354 -0.868772 -0.000871 1.102216 1.051572 0.411250 -0.810381 -0.237571 -1.858054 -1.064345 -0.096374 -0.250122 0.927895 0.426652 0.641571 -2.118550 0.955967 1.313311 -0.108016 -1.458764 0.660510 -0.895709 0.120191 -0.337503 -0.088754 0.616616 0.889464 0.733891 0.742244 0.401685 0.130086 -0.481821 0.256087 1.626923 -0.165523 0.998432 1.081147 -0.500568 -0.026196 -0.246501 0.170190 -0.844381 0.687167 0.488067 -0.792638 -0.722892 0.141941 -0.607647 -0.883682 0.836704 0.592982 -0.392330 -1.002816 -0.678779 -0.939524 -0.351059 0.226463 0.964490 1.896916 -0.945546 1.585053 0.473069 0.811545 -0.073486 0.776813 0.011234 1.124983 0.213013 -0.648675 -0.336072 -1.555975 -0.594216 -0.241387 0.831937 -0.423032 -0.361933 0.591131 -1.369847 -1.738432 0.431420 0.049031 -0.650036 -0.864964 0.570705 0.616284 0.748840 -0.207396 -1.262623 -0.525152 0.435816 -0.643086 -0.312157 -0.095006 -0.176196 -0.593369 -0.430221 -1.615053 0.300338 0.490728 -0.714203 -0.473892 1.286358 -0.611074 0.956398 0.172961 0.464316 -0.091064 1.161899 0.637894 0.251871 0.361865 -0.678592 -1.181841 -0.050629 0.429695 0.882344 -0.915413 -0.191273 -0.016394 0.364577 -0.420383 0.192555 -0.316331 1.637977 0.855681 -1.064456 -1.192500 -0.992908 -0.642731 -1.131308 0.297571 -0.707453 -0.426627 0.147616 0.951052 0.518252 0.309450 1.836198 -0.752419 0.804835 0.225725 -0.375683 0.553988 0.026653 0.885367 -0.992753 -0.737368 0.751753 0.643006 0.540145 -0.040941 -0.054385 0.312718 -1.173126 -0.895379 0.611729 0.292587 0.348943 1.339549 1.040670 1.916802 -1.073732 0.069743 0.483017 -0.183657 -0.316112 0.337511 -1.306577 0.765769 0.175657 0.034750 1.605150 0.078010 -0.903399 0.744731 -0.015717 0.316510 -1.220587 0.619055 -0.742687 0.252261 -0.708663 -0.152659 -0.708878 -0.655797 -0.785981 -0.376562 1.789208 -0.542853 -1.759924 0.783403 -0.273636 1.164819 -2.270439 1.460096 -0.807831 1.049698 -0.439808 -0.399157 0.080589 -0.032180 -0.449200 0.490772 0.465062 -0.349052 0.626287 1.115012 0.547171 0.318571 0.200551 0.902469 0.033084 0.689441 -0.408698 0.691982 -0.158285 -0.301256 -0.144807 -0.340114 0.141501 0.516809 -0.148293 0.736085 1.047193 0.208652 0.875931 0.949074 0.761575 -0.647159 0.322946 -0.223767 1.374507 -0.821513 -0.736911 -0.156869 0.575516 -0.026022 0.619922 -1.842688 -1.722011 -0.531005 -2.041729 -0.383555 -0.004407 0.558567 0.280738 -0.133385 -1.520648 -0.826196 0.939199 0.038470 2.029596 0.692100 0.198696 1.238119 0.958940 -0.349775 -0.507157 0.200720 0.510499 -0.316341 -0.204180 -1.045927 0.764831 -1.299944 0.850557 1.500243 -0.856636 0.604348 -0.585028 1.211811 -1.509682 1.868608 0.655938 -1.439640 0.705261 0.884058 1.345602 -0.481602 -0.972775 -PE-benchmarks/Iterative_QuickSort.cpp__main = 0.182243 -0.698906 1.741581 1.178067 -0.438185 -0.008915 0.405246 -0.313797 0.526901 -0.291975 -0.448420 0.627349 -0.779021 0.251972 -0.428821 0.603368 -1.555354 -0.747145 -0.025884 -0.266640 -0.167110 -0.307884 0.506755 0.394863 0.879194 0.939968 -0.549817 -0.387942 -0.658400 -0.522132 0.484037 -0.455210 0.644259 0.508962 0.181601 -1.891747 0.785052 0.578496 -0.389760 -1.035575 0.642941 -0.410381 0.090760 -0.941863 -0.468940 0.252444 0.518844 0.929732 0.468034 0.443331 -0.534894 0.000791 0.555734 1.437912 -0.236069 0.410400 0.820380 -0.199320 -0.066366 -0.396279 0.343556 -0.266565 0.251239 0.250557 -0.069732 -0.852893 -0.443034 -0.842275 -0.592543 0.525262 0.097125 0.417222 -0.893244 -0.164046 -0.995745 -0.083023 -0.647568 1.105667 1.332559 -1.048792 0.770791 0.194058 0.381685 0.082065 -0.017096 0.426117 0.140807 0.439055 -0.099243 -0.051998 -0.748537 -0.402761 0.181872 -0.511045 -0.235518 -1.813090 0.578151 -1.327093 -0.884851 0.308723 0.437967 -0.405111 0.186355 -0.162577 0.244597 0.751492 -0.569464 -0.554963 0.093536 -0.185939 0.141559 -0.099116 0.239539 0.376040 -0.239021 -0.371793 -1.247605 0.322570 0.076508 -0.381587 0.476458 0.606867 -0.131778 0.329955 -0.066028 0.295770 -0.386536 1.203448 0.389508 0.341239 0.053866 0.208342 0.180572 0.133513 0.666184 0.857645 -0.581264 -0.226964 -0.363620 0.297735 -0.311739 -0.433396 0.063830 0.423080 0.347588 -0.700026 -0.857137 -0.705453 -0.824371 -1.133973 0.161724 -0.502790 -0.233574 0.953724 0.660156 0.324233 0.665951 1.006403 -0.621305 0.162243 -0.096147 -0.154100 0.516778 0.323001 0.587511 -0.383669 -0.397967 0.518246 0.064884 0.628325 0.068400 -0.068150 0.400559 -0.836595 -0.164175 0.430466 0.651094 -0.231939 0.604918 0.579402 -0.131873 -0.202186 -0.232242 0.596224 -0.176466 -0.224640 0.371741 -0.917720 0.694201 0.022538 0.073546 0.511832 0.079007 -0.426340 0.708645 -0.208797 0.069490 -0.458484 -0.066894 -0.413223 -0.177358 -0.665954 0.543101 -0.429608 -0.328757 -0.557713 -0.498443 1.170843 -1.056477 -0.365418 0.469363 0.029430 0.807057 -1.058134 1.007468 -0.570568 1.068487 0.216128 -0.216203 0.275923 -0.652870 -0.635223 -0.288638 0.376383 -0.011563 -0.003126 0.576618 0.603519 -0.170381 0.096239 0.841203 -0.181080 0.931483 -0.150713 0.360072 -0.382554 -0.461707 0.205274 -0.061901 -0.178358 -0.161578 0.375558 1.019288 0.139791 0.852655 1.085426 0.330876 0.968683 -0.665357 0.159639 -0.211382 0.949292 -0.516040 -0.331301 -0.024901 0.822782 -0.235577 0.600000 -1.150223 -1.605217 -1.412296 -0.851299 -0.287817 -0.502367 0.315542 -0.377200 -0.072985 -0.809620 -0.643118 0.455998 -0.227690 0.454200 0.794294 -0.038507 0.839202 0.658167 -0.575210 -0.370664 0.445152 0.680876 0.248288 0.181418 -1.114487 0.632579 -0.948988 -0.044328 1.459273 -0.747001 0.197297 -0.378529 1.143774 -0.722756 1.406392 0.393337 -1.096701 0.581689 0.862249 0.652378 0.432545 -0.631276 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__findCommon(int*, int*, int*, int, int, int) = -3.489164 -6.198216 10.256095 7.111699 0.310395 2.705842 2.848232 -1.734394 0.945940 4.254754 -2.562259 6.243573 -5.204626 -0.960132 0.100933 1.182466 -5.482469 -5.326280 -0.448525 -2.324044 -2.799198 -2.779188 -2.896344 7.089066 4.724620 -0.870176 -4.098297 -0.329409 -8.757767 -7.189445 -3.971442 -0.264476 3.910953 -2.217831 4.173600 -10.445070 4.409350 7.123262 0.063912 -6.458784 2.666255 -3.114427 -0.086681 0.396204 -2.877503 2.486663 4.985284 0.480289 2.194077 2.016330 1.290938 -1.749188 2.745927 9.701296 1.847423 5.591930 6.310803 -3.060022 0.653816 -0.901014 0.643317 -5.403039 2.703079 0.365751 -2.441868 -2.742664 1.182926 -0.818356 -1.956283 2.715464 2.975852 -4.743338 -2.784310 -4.113683 -6.138410 -2.597995 4.189979 3.330323 7.953446 -4.390522 7.777240 2.803103 3.736827 1.080498 4.776254 -0.356154 6.058968 1.094681 -2.797615 -0.477980 -4.529382 -2.173081 -1.054753 6.324728 -3.235892 -1.197483 3.333755 -8.296643 -8.733080 3.749675 -0.110728 -3.972993 -4.372995 0.566176 2.626553 2.483651 -1.031536 -5.449883 -3.801286 3.134473 -3.521060 -1.819626 -0.614724 -1.268342 -1.015862 0.748521 -7.094164 2.679662 3.970591 -2.407886 -3.701002 6.517681 -1.460458 5.634847 0.460162 2.850362 -0.193009 4.009826 3.245940 1.350177 -1.351583 -2.893636 -6.920856 -1.359218 0.861797 -0.446165 -4.465910 -1.376394 1.149166 2.513988 -0.251408 4.301351 -2.347542 10.082326 3.359188 -3.069659 -5.545247 -5.814184 -4.390053 -4.215036 0.591398 -2.469451 -5.092419 1.182686 3.928140 1.549240 -0.355470 6.230685 -0.882534 3.887321 1.237183 -2.358766 1.608117 -4.594240 3.609494 -5.034192 -3.254199 3.756744 4.209262 3.965120 0.025108 -0.223666 1.810836 -3.866866 -4.709240 2.271302 1.191466 2.385533 6.824891 5.607080 13.360581 -4.815705 -0.466332 0.470878 -1.731002 -1.414615 0.586531 -5.309162 1.417688 1.532626 -0.437730 9.452202 0.624162 -3.980957 3.724774 0.145460 1.255932 -5.605846 4.578075 -3.330716 2.134502 -1.374544 -3.092633 -4.317137 -1.841638 -5.108453 -3.518170 8.694689 -6.241010 -9.040223 3.648082 -0.206847 5.014734 -11.112886 7.874016 -3.254605 6.427425 -1.946627 -2.535860 0.296568 1.070770 -1.824887 4.516239 1.978154 -3.230491 2.704925 4.611355 1.724381 2.622858 0.362827 3.635358 -0.775293 2.660125 -2.442880 3.214138 -0.618021 -1.976369 -2.834084 -1.143350 0.590669 3.433772 -0.235499 -1.064135 3.544035 -0.774079 0.878195 6.282530 2.060640 -2.812239 1.382137 -1.447176 6.309564 -4.674440 -4.167817 -1.166277 2.962541 1.623002 1.831662 -9.207331 -4.995384 -5.648095 -8.564694 -2.110216 1.968725 2.245846 1.819672 -1.570741 -7.025070 -4.464482 7.557600 0.681868 7.540747 4.146230 1.821394 6.494709 3.485462 1.370905 -2.181804 -0.893636 1.250312 -1.404580 -1.315357 -3.891523 3.109331 -6.113288 5.073825 5.911841 -2.822693 4.216705 0.295453 1.716752 -7.668805 7.641085 2.793403 -7.631114 1.600971 5.667924 4.536292 -6.083985 -4.725508 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = 0.676542 -0.894220 3.318428 2.153589 -0.851816 -0.197969 0.774114 -0.931712 0.940940 -0.713672 -0.885150 0.975652 -1.304806 0.758324 -1.382544 1.300863 -2.934346 -1.241761 -0.271200 -0.864600 -0.330390 -0.314153 1.414873 0.231969 1.891875 1.567944 -1.017439 -1.045177 -1.169903 -0.875332 1.161393 -0.791986 1.036146 0.704548 -0.120371 -3.268605 1.523749 0.973829 -0.930415 -1.567861 1.584801 -0.891242 -0.206808 -1.622916 -0.644106 0.188039 0.546630 1.884938 1.112208 0.906334 -0.656829 0.432287 0.914925 2.905922 -0.927223 0.663661 1.180993 -0.273771 -0.383738 -0.334970 0.498648 -0.159244 0.304783 0.399056 0.126078 -1.930442 -0.822359 -1.633611 -0.916048 1.056368 -0.042473 0.605106 -1.488918 -0.109159 -1.474427 0.006200 -1.529135 2.110454 2.151583 -1.886745 1.090246 -0.074838 0.214340 -0.169974 -0.379790 0.770525 0.052672 0.731948 0.271069 -0.719351 -1.223177 -0.323574 0.504886 -1.000960 -0.493292 -3.477060 1.322514 -2.133998 -1.528588 0.182339 1.166282 -1.065619 0.702863 0.017514 0.101880 1.166372 -0.927394 -0.843413 0.398662 -0.308203 0.493750 -0.165794 0.173649 0.340335 -0.475126 -0.672303 -2.290587 0.873780 -0.273966 -0.425301 0.601339 0.914312 -0.035911 0.049261 -0.057579 0.839381 -0.818314 2.117618 0.179046 0.776669 0.326342 0.934040 0.388910 0.681511 1.576981 1.482492 -1.245383 -0.058730 -1.001207 0.436646 -0.947767 -0.946393 -0.102152 0.801755 0.597821 -1.573798 -1.600073 -0.854842 -1.104089 -2.050231 0.163892 -0.981773 -0.693511 1.323250 1.154734 0.853344 1.463515 1.950740 -1.202480 0.304399 0.097197 -0.338469 1.252837 0.433932 1.132611 -0.792044 -0.766283 0.750829 -0.165051 0.867887 -0.208090 0.437747 0.638032 -1.927093 -0.063632 0.846738 1.196294 -0.579003 1.008154 1.201057 -0.219727 -0.585221 -0.255432 1.384592 -0.722185 -0.504734 0.794092 -1.695865 1.099687 0.201906 0.336884 1.066368 0.317044 -0.684794 1.068161 -0.477352 0.146486 -0.718983 -0.221249 -0.678142 -0.595024 -1.065903 0.898866 -0.436113 -0.578462 -0.797491 -1.084624 1.983688 -2.113488 -0.599934 1.102711 -0.169388 1.025805 -1.979407 2.094537 -1.172727 1.470697 0.439065 -0.201093 0.373280 -0.975102 -1.720441 -0.163562 0.554601 0.051843 0.310580 1.546671 1.202959 -0.208775 -0.157660 1.753968 -0.647819 2.062033 -0.267609 0.908229 -0.650894 -1.193480 0.348286 -0.051132 -0.913876 -0.709457 0.919670 2.346613 0.123830 1.761149 2.011972 0.513906 2.378252 -1.165066 0.791869 -0.588806 1.409250 -0.729502 -0.798644 0.541191 1.229644 -0.464029 1.159307 -2.154049 -3.169147 -2.582910 -1.708703 0.161357 -1.536605 0.743796 -1.026805 -0.237857 -1.683854 -1.325834 0.464989 -0.453665 0.887236 1.569041 -0.074871 1.203186 1.230691 -1.221335 -0.128857 0.598946 1.603026 0.783586 0.012739 -1.994153 1.334164 -1.510958 -0.339981 2.815627 -1.280216 0.467117 -0.573725 1.855359 -1.253001 2.369030 0.462075 -1.735933 1.403068 1.485945 0.963607 1.169726 -1.049260 -PE-benchmarks/topological-sorting.cpp__Graph::Graph(int) = 0.692269 -1.244844 3.506913 1.851015 -1.308601 0.339172 1.204345 -1.000455 0.625089 -0.291419 -0.729784 0.919786 -1.462076 -0.256313 0.201414 0.078171 -3.328404 -1.166654 -0.409280 -0.927012 -1.015144 -0.829841 0.313475 1.377666 1.733907 1.777576 -0.539013 -0.520772 -1.380910 -0.523509 0.556903 -0.162742 0.750329 2.097356 2.118593 -2.749548 1.353011 0.789002 -0.207828 -1.777241 0.813692 -0.039710 -0.170455 -0.626550 -0.090767 0.635207 1.035652 2.570358 0.928941 0.575710 -0.710720 -1.245153 0.257827 2.651771 0.619888 0.882439 1.619015 -1.141407 0.721717 0.167642 0.286350 -1.252460 -0.083773 0.343150 0.003560 -0.568120 0.492492 -1.876895 -0.383207 1.675851 0.998848 -1.242425 -1.276438 -1.775827 -1.817374 -0.083316 -2.556553 2.866678 2.433365 -2.020001 1.533652 0.323412 1.150349 -0.363046 0.926332 0.044550 1.782717 0.425304 -0.366870 0.304874 -2.082897 -2.181838 -0.036989 -0.618934 -0.503165 -1.462410 1.142455 -2.878669 -1.924225 1.024968 0.706550 -1.055731 -0.230868 0.475206 0.665278 0.471511 -0.660959 -1.183525 -0.665994 0.512592 -1.161013 0.658925 0.342505 1.231534 -0.870247 -0.224100 -1.673493 1.046842 0.656021 -0.200751 -0.029279 1.855185 -0.501380 1.078375 0.149899 0.277860 -0.312222 1.906961 0.804129 0.154971 0.387447 -0.087152 -0.454914 0.857210 0.734928 1.376718 -0.101848 -0.175162 0.277153 0.974010 -1.101004 0.278208 -0.679677 2.125538 0.072799 -1.553088 -2.375685 -0.849851 -1.659726 -1.771094 0.190379 -0.680335 -1.101418 1.155460 1.127030 2.254503 -0.143511 0.791525 -1.108597 0.197453 -0.112662 -0.393390 0.022062 0.311064 0.934918 -1.319310 -0.289164 0.211673 -0.283915 1.153400 0.328663 -0.545137 0.250203 -1.722290 -1.367305 0.729866 1.194909 0.136012 1.001646 2.047473 0.576955 -1.256664 -0.921278 0.998024 -0.375877 -1.227732 0.824636 -1.284944 1.124807 -0.000843 0.462754 1.461247 0.068774 0.090388 0.967294 -0.276093 0.320793 -0.863317 -0.545120 -0.569158 0.244058 -0.811912 0.667614 -1.228900 -0.541454 -1.087454 -1.364153 2.362905 -1.654503 -1.768477 2.148945 -1.058409 2.239339 -1.778525 2.001621 -0.619333 1.306742 0.138954 -0.284774 -0.098495 -0.737060 -0.733417 1.071771 -0.209418 -0.074937 -0.111710 1.446705 0.636286 0.449977 -0.001416 1.515626 -1.128552 1.149202 -0.483981 1.046440 -0.667333 -0.519872 -0.363624 -0.018678 -0.306711 0.177432 0.321065 1.442703 0.152585 1.283789 1.283389 0.667835 0.749309 -1.060993 0.140150 -0.062005 1.322201 -1.371668 -1.344858 0.670460 1.104817 -0.142978 -0.055397 -2.349364 -2.328127 -2.443136 -1.827235 -1.355630 -1.268259 0.962776 -0.090536 -0.608656 -0.936145 -1.080413 0.719789 0.342558 0.112475 1.239070 -0.142830 1.910125 1.640015 -0.398561 0.062099 0.744766 1.300507 -0.151953 0.001329 -2.239289 0.882888 -2.521375 0.643797 2.652918 -0.676938 1.369578 -0.762324 2.598861 -2.596534 1.509466 0.739954 -2.348113 0.239592 2.309937 0.634620 0.719970 -1.392323 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/topological-sorting.cpp__Graph::addEdge(int, int) = -0.040695 -0.593699 1.518205 1.170907 -0.271185 0.118268 0.544401 -0.539771 0.430181 0.244448 -0.209725 0.378121 -0.937224 0.284385 -0.244581 0.671877 -1.167493 -0.594314 -0.232043 -0.558655 -0.293649 -0.369974 0.530621 0.288131 0.897490 0.391129 -0.490690 -0.529480 -0.723258 -0.656981 0.338666 -0.270666 0.652568 0.450223 0.002731 -1.755716 0.748866 0.691998 -0.387412 -0.661246 0.683302 -0.511360 0.081767 -0.467874 -0.343879 0.191721 0.241554 0.391660 0.690384 0.380290 0.226929 0.000190 0.598171 1.453785 -0.487318 0.543740 0.431815 -0.249956 -0.142742 -0.076897 0.128606 -0.122144 0.373931 0.200597 -0.072064 -0.837344 -0.326812 -0.639836 -0.629056 0.581339 -0.054737 -0.006413 -0.827702 -0.271024 -0.604065 -0.267233 -0.987066 0.866181 1.138476 -0.914293 0.763919 0.131499 -0.003871 -0.127761 0.171843 0.216407 0.361708 0.198465 -0.042227 -0.076234 -0.279141 -0.210208 0.197889 0.157507 -0.339944 -1.170496 0.591792 -0.687040 -1.021786 0.276542 0.392445 -0.475075 -0.218855 -0.012923 -0.004983 0.453663 -0.518379 -0.784469 -0.147816 0.051222 0.227632 -0.192742 -0.135936 -0.066180 -0.308675 -0.319337 -1.120524 0.280086 -0.111175 -0.406443 -0.173224 0.683861 -0.025493 0.225457 0.094092 0.461354 -0.373437 1.067117 0.043188 0.547335 0.138839 0.258941 -0.509550 -0.030170 0.696526 0.631671 -0.449652 -0.109888 -0.471676 0.183767 -0.497941 0.039516 0.202790 0.838507 0.696808 -0.624702 -0.700170 -0.319810 -0.426525 -1.117805 0.219484 -0.537565 -0.116384 0.463017 0.610640 0.302705 0.581246 1.072674 -0.499340 0.278215 -0.002940 -0.345477 0.683827 0.162326 0.626933 -0.512554 -0.510765 0.382639 0.200108 0.472655 -0.029931 0.232460 0.180759 -0.796290 -0.191590 0.301696 0.336750 -0.317952 0.694477 0.679295 0.997288 -0.445045 0.164621 0.610461 -0.285221 -0.065738 0.270498 -0.914586 0.509722 0.142436 -0.288577 0.664177 0.050164 -0.412463 0.524705 -0.366684 0.199536 -0.657942 0.186227 -0.459446 -0.084529 -0.679476 0.092496 -0.234606 -0.479345 -0.253821 -0.183588 1.085804 -0.855971 -0.333315 0.655581 0.010636 0.344514 -1.115589 1.597416 -0.564505 0.581888 -0.331480 -0.391134 0.119041 0.147150 -0.550368 0.064566 0.287904 -0.183912 0.200694 0.990569 0.483388 0.020039 -0.051013 0.907381 -0.089822 0.837916 -0.251652 0.756977 -0.123836 -0.340008 0.018427 -0.172459 -0.238599 -0.155892 0.228655 1.009676 0.425858 0.400263 0.595058 0.457462 1.015466 -0.454631 0.489644 -0.194490 0.775186 -0.456758 -0.369525 0.245277 0.529713 -0.185919 0.536523 -1.151218 -1.281772 -0.770389 -0.682978 -0.084464 -0.062076 0.423652 -0.170971 -0.115363 -0.904177 -0.691320 0.482970 -0.327862 0.340631 0.536916 0.144032 0.715509 0.756286 -0.232702 -0.129618 0.044560 0.553746 0.249305 -0.053377 -0.725798 0.664166 -0.875476 0.153657 1.053979 -0.508557 0.342408 -0.092180 0.986720 -0.818712 1.195952 0.203134 -0.626444 0.933959 1.025104 0.582968 0.151969 -0.487951 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -0.095569 -2.123945 6.497433 4.449375 -1.823720 0.754008 0.842514 -2.583219 1.699201 -0.679669 -1.428683 1.896689 -3.121122 0.871446 -1.584017 1.342400 -5.794125 -2.362010 -1.165368 -2.483743 -1.639900 -1.416841 0.840910 2.275240 3.051861 3.471812 -2.233299 -0.389747 -3.102423 -2.567296 1.317577 -0.828391 2.310432 2.551229 1.245955 -7.205481 3.198894 3.023125 -1.234275 -2.848458 2.338982 -2.465742 -0.370880 -2.205749 -1.533573 0.879157 0.829390 2.437744 2.441728 0.481953 -0.541906 0.169378 1.372327 5.358917 -1.274828 2.190764 2.304057 -1.308287 -0.412134 -0.449761 0.364632 -0.778544 1.356933 0.844796 -1.134822 -3.477146 0.020365 -2.460278 -1.812061 2.790218 0.841496 -0.728302 -2.545948 -1.691371 -3.616281 -0.931754 -0.999780 3.650809 4.537284 -3.117702 2.896250 0.409243 0.680317 -0.032545 1.574406 0.582391 3.300248 0.861564 -0.413686 -0.455435 -2.786044 -1.082895 0.727623 0.751109 -1.560461 -4.314731 1.977908 -6.169498 -4.238479 0.757195 1.627952 -2.364033 -0.969294 0.075370 1.035537 1.026395 -1.113430 -2.678202 -0.019513 0.964615 -0.821827 -0.503329 -0.325352 0.311734 -0.725345 -0.686775 -4.656325 1.923687 0.208168 -0.595073 -0.186286 3.303090 0.116659 0.623623 0.253530 1.817140 -1.369046 3.737541 -0.284497 1.122545 -0.318199 0.917812 -0.102368 0.063547 1.923410 1.588258 -2.660349 -1.776227 -1.098242 1.058093 -2.274953 -0.428866 -1.108108 3.455114 1.875280 -2.675091 -2.875956 -1.951911 -2.788727 -4.691622 0.000753 -1.757108 -2.669845 1.417443 2.554283 2.168392 2.065179 3.067684 -1.590390 1.178228 0.324248 -0.917502 2.648071 0.168252 2.505393 -2.379022 -1.848084 1.850228 -0.226901 2.381282 -0.382392 0.447914 0.573580 -3.221006 -1.589874 2.179920 1.684563 0.581287 3.270217 3.488338 3.891187 -2.621120 0.703309 2.162046 -1.460199 -0.742210 1.321440 -3.027838 1.706011 1.088826 0.036623 4.064040 0.144094 -1.424345 1.316820 -0.048316 1.024944 -2.990322 0.493448 -1.654155 0.239207 -2.394833 0.349784 -1.776487 -1.563682 -2.417678 -2.659690 4.558032 -4.921068 -3.143423 3.804373 -0.312759 3.305489 -5.081885 2.994289 -2.340694 3.495755 -0.690705 -1.035309 0.516242 -1.585032 -3.028275 1.702671 1.035976 -1.145425 0.948409 2.964865 2.133433 1.012029 -0.483060 3.280145 -0.882092 3.373935 -1.646862 2.683157 -0.549798 -1.575778 -0.172135 -0.677979 -1.383537 -0.101628 1.434306 2.908038 1.826942 2.627268 2.416985 2.380944 3.366106 -1.843724 1.255590 -1.077926 1.972013 -1.995204 -2.244160 0.962182 2.267783 -0.325292 1.634097 -5.146117 -5.546158 -4.627519 -3.968492 -0.388976 -1.328308 1.518505 0.049604 -0.627663 -3.723917 -2.623690 3.049531 -0.553242 3.857582 2.342666 0.484993 2.927047 3.205752 -1.348710 -0.615489 0.888446 2.394998 0.525550 0.016265 -4.529647 3.544277 -2.750300 1.310996 5.254094 -2.768489 1.969753 -0.818852 3.925180 -3.660416 4.773463 1.076301 -3.993548 2.408240 3.169379 2.129755 1.139353 -2.380723 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/topological-sorting.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -1.252277 -2.930734 6.896236 4.133461 -0.206923 0.869818 2.225463 -1.184707 1.548955 1.927070 -1.600660 1.752679 -3.835429 -0.780021 0.769513 0.765916 -4.729098 -3.687507 -0.455183 -1.123824 -2.223951 -2.773938 0.228623 3.504015 3.168236 2.844347 -2.801204 -0.328168 -3.323492 -4.815911 -0.178695 -0.505465 2.610963 3.058009 2.375211 -6.406293 3.772268 3.031186 -0.087901 -2.478109 1.938370 -0.933089 -0.055052 -0.465372 -0.889821 2.532740 3.175327 3.193031 2.361817 1.657093 0.491388 -3.043202 1.613276 4.311440 0.699213 2.503543 3.370348 -1.557338 0.776254 -0.551351 -0.004151 -3.373615 1.187205 1.576852 -1.908983 -0.606135 2.044484 -2.335398 -2.424560 3.460886 1.387735 -2.189167 -2.589083 -2.796327 -2.439105 -0.417659 1.151647 3.345302 5.121245 -3.110890 4.342313 1.768976 2.898094 0.092531 0.391834 -0.338483 2.752048 0.456110 -1.868191 -1.538742 -5.072622 -3.297724 -1.489115 1.192169 -1.392867 -0.825699 1.682558 -5.408878 -5.055192 1.176630 -0.039248 -2.180099 -2.654881 1.633278 2.519609 0.704721 0.938878 -3.106867 -1.721098 1.553389 -3.562480 0.757580 -0.487797 0.232793 -1.744296 0.667213 -5.117411 2.025957 1.029604 -1.777224 -1.017737 3.922645 -1.420145 3.300943 1.269634 1.717100 -0.175256 3.430608 2.945124 0.548320 1.263347 -1.276152 -1.969197 0.163530 1.312028 1.053896 -2.364620 -1.771707 0.218381 1.138161 -1.840787 0.947509 -1.857093 4.414643 2.495808 -3.642844 -4.716516 -2.851379 -3.658993 -4.280273 1.182406 -1.933317 -1.893343 1.405310 2.247930 2.338239 0.400376 4.350929 -3.262630 1.953081 0.374828 -1.108216 -0.311238 0.272569 2.507542 -3.100699 -1.748238 2.087251 1.857074 1.530470 -0.454654 -1.449509 1.115428 -3.613429 -3.046781 2.119103 -0.073889 1.641300 2.259068 3.604083 6.439368 -3.078688 -0.567144 1.907809 -0.492802 -1.904571 2.028629 -3.520456 2.577058 0.118882 0.520201 4.924716 0.455247 -1.747924 2.713141 -0.161890 0.312104 -3.659917 1.382856 -1.605221 0.952599 -1.694982 -1.128887 -2.884431 -1.044651 -1.996697 -2.169472 4.982356 -1.684441 -5.213424 3.108060 -1.140240 3.500215 -5.572014 4.295311 -1.817330 2.568985 -0.460460 -1.993990 -0.334698 -1.849777 0.024950 1.270098 -0.079854 -0.391389 1.847903 3.559053 1.425550 1.521599 0.653550 2.433910 0.103245 2.642039 -0.980652 0.845059 -1.122980 -1.179728 -0.877721 -0.577944 -0.068307 1.591296 -1.164938 1.580088 3.301260 0.278932 2.802529 2.606286 2.117728 -1.751367 -0.044501 -0.189409 3.905867 -3.074750 -2.953403 0.176614 1.488554 -0.764167 1.412522 -5.519237 -4.749849 -2.747840 -6.703449 -2.792795 -0.877431 2.156134 0.281321 -0.935456 -3.425884 -2.278517 3.732424 1.069438 4.625208 2.350707 -0.053737 4.367014 3.713298 -1.177700 -1.816067 1.411814 1.309443 -1.056805 -0.045746 -4.388138 2.710014 -2.908246 2.569068 4.497908 -3.292708 2.203092 -2.501855 2.747320 -5.380601 5.214660 1.496402 -4.279416 1.304679 1.067906 2.889135 -1.436780 -2.824563 -PE-benchmarks/topological-sorting.cpp__std::stack > >::stack >, void>() = 0.044817 -0.256273 0.939189 0.605167 -0.290102 0.000000 0.036052 -0.336670 0.497510 -0.265564 -0.280262 0.135067 -0.411291 0.236487 -0.294118 0.361396 -0.953241 -0.420854 -0.061527 -0.298740 -0.176242 -0.247489 0.348718 0.019262 0.386888 0.569793 -0.305879 -0.018477 -0.269339 -0.225279 0.482487 -0.330520 0.282383 0.390065 0.062641 -1.067431 0.527474 0.174429 -0.289238 -0.465669 0.294046 -0.367769 0.089288 -0.576796 -0.177444 0.118600 0.144923 0.501509 0.411184 0.143432 -0.159295 -0.006637 0.073870 0.822925 -0.401009 0.188853 0.259341 -0.121817 -0.147209 -0.070831 0.155883 -0.001992 0.174566 0.309818 -0.147031 -0.553287 -0.164233 -0.547175 -0.387048 0.441709 -0.077177 0.224654 -0.489306 -0.107310 -0.483510 -0.097275 -0.608829 0.633499 0.772006 -0.562976 0.339794 0.043720 0.261898 0.059842 0.056555 0.216305 0.342629 0.196050 -0.142759 -0.039596 -0.285416 -0.129466 0.159327 -0.281750 -0.037928 -0.834074 0.257370 -0.792523 -0.454861 0.105812 0.298202 -0.081805 -0.005939 0.001262 0.212103 0.293294 -0.302213 -0.366436 0.164430 -0.082614 0.053426 0.002554 0.093495 0.052823 -0.163610 -0.269567 -0.722255 0.094161 -0.097369 -0.189623 0.208234 0.401611 -0.122703 -0.063081 -0.005365 0.175502 -0.266441 0.783034 0.000649 0.242553 -0.073557 0.190186 -0.065099 0.190002 0.398497 0.462850 -0.277102 -0.082294 -0.254230 0.067860 -0.472757 -0.404143 -0.092234 0.154519 0.266015 -0.432051 -0.473343 -0.240672 -0.404568 -0.826366 0.086890 -0.377483 -0.189573 0.442151 0.416787 0.480086 0.538896 0.655819 -0.443976 0.132668 -0.157701 -0.071002 0.456903 0.240603 0.405920 -0.237611 -0.188667 0.248679 -0.076732 0.208406 0.109750 -0.158264 0.141204 -0.619520 -0.009570 0.403510 0.422798 -0.033219 0.309855 0.310140 -0.090692 -0.315160 0.059722 0.476960 -0.039137 -0.116982 0.222203 -0.470093 0.401405 0.090881 0.085555 0.178153 0.035535 -0.209863 0.114589 -0.113055 0.176733 -0.295240 -0.188729 -0.183464 -0.065023 -0.404510 0.376180 -0.258291 -0.220487 -0.183332 -0.307621 0.584737 -0.633455 -0.207596 0.508167 -0.041191 0.552489 -0.503818 0.372336 -0.405907 0.706881 -0.003468 -0.018959 0.045895 -0.354322 -0.369831 0.012767 0.201936 0.060461 0.009328 0.381378 0.418674 0.059104 0.037365 0.573100 -0.115528 0.530484 -0.033186 0.287634 -0.169313 -0.222935 0.228107 -0.106385 -0.197309 -0.134915 0.298251 0.707512 0.247227 0.516831 0.683552 0.165711 0.584265 -0.354050 0.116885 -0.160602 0.388848 -0.249266 -0.197944 0.121792 0.417870 -0.225971 0.188909 -0.636550 -1.000804 -0.846194 -0.409751 -0.109533 -0.341756 0.087690 -0.175317 0.057755 -0.395976 -0.258599 0.332200 -0.199562 0.497812 0.270161 -0.004696 0.386906 0.537739 -0.442420 -0.273507 0.244150 0.327312 0.103678 0.190116 -0.796192 0.537259 -0.502807 -0.051514 0.813376 -0.472984 0.008194 -0.024349 0.623608 -0.351183 0.722527 0.235293 -0.453257 0.474203 0.422104 0.424817 0.537692 -0.338715 -PE-benchmarks/topological-sorting.cpp__std::stack > >::empty() const = -0.061833 -0.261137 0.681481 0.506468 -0.197877 0.041514 0.110987 -0.199577 0.249791 -0.053909 -0.145438 0.135643 -0.374759 0.111598 -0.040834 0.241812 -0.571990 -0.258945 -0.089766 -0.220447 -0.112649 -0.157849 0.178205 0.108802 0.320812 0.388933 -0.195535 -0.103937 -0.263970 -0.202203 0.215582 -0.130490 0.281267 0.347821 0.077706 -0.817790 0.315687 0.287500 -0.170343 -0.392165 0.255639 -0.251002 0.100135 -0.277683 -0.141123 0.140705 0.107343 0.192035 0.247841 0.132737 -0.051067 -0.031060 0.170845 0.534000 -0.162609 0.188458 0.237632 -0.124248 -0.104923 -0.103507 0.079017 -0.044813 0.151315 0.094106 -0.107253 -0.383423 -0.156110 -0.347442 -0.308860 0.237558 -0.052863 0.004282 -0.353416 -0.220373 -0.278654 -0.115607 -0.497883 0.432045 0.492875 -0.438637 0.304420 0.040936 0.054645 0.018525 0.092012 0.127382 0.161090 0.111380 -0.019330 0.047906 -0.110229 -0.180041 0.117402 -0.050978 -0.145497 -0.471912 0.253860 -0.376354 -0.380072 0.124664 0.185425 -0.147303 -0.115731 -0.002709 0.011383 0.286302 -0.213492 -0.278041 0.016308 0.033044 0.126283 -0.047143 -0.066560 0.091447 -0.170763 -0.222459 -0.512984 0.164838 -0.006585 -0.130392 0.070812 0.315273 -0.079802 0.045014 0.010431 0.142663 -0.194402 0.631897 0.041533 0.162674 -0.008686 0.073140 -0.134305 0.042811 0.262985 0.370429 -0.223727 -0.093892 -0.155810 0.037322 -0.234712 -0.134923 0.032139 0.233725 0.360050 -0.257923 -0.304158 -0.201479 -0.323548 -0.580744 0.047684 -0.239729 0.034761 0.378337 0.272875 0.280253 0.274668 0.560508 -0.309796 0.034448 -0.060683 -0.178965 0.275187 0.271474 0.271319 -0.207986 -0.178549 0.190929 0.006981 0.203317 0.078059 0.035269 0.089904 -0.362111 -0.038421 0.300927 0.238471 -0.041196 0.295070 0.316842 0.194958 -0.130349 0.002045 0.241068 -0.116856 -0.062593 0.139117 -0.351525 0.229143 0.067752 -0.067581 0.234330 -0.000542 -0.098246 0.165257 -0.144821 0.093055 -0.260308 0.030735 -0.188062 0.004029 -0.319087 0.108389 -0.164017 -0.199181 -0.150877 -0.152120 0.479024 -0.330868 -0.150268 0.262937 -0.003554 0.282337 -0.419105 0.461195 -0.257181 0.431613 -0.102492 -0.110079 0.046191 -0.166065 -0.209442 -0.025871 0.134464 -0.001793 -0.047199 0.364911 0.246113 -0.077694 0.001015 0.391170 -0.070124 0.400019 -0.090666 0.271200 -0.099068 -0.055451 0.124703 -0.068964 -0.120357 -0.065629 0.086619 0.524340 0.178571 0.289242 0.335013 0.147761 0.397266 -0.214515 0.150563 -0.061173 0.353526 -0.193487 -0.162134 0.078223 0.368203 -0.059488 0.110661 -0.473668 -0.631800 -0.423711 -0.326702 -0.074260 -0.074914 0.116087 -0.068371 -0.036233 -0.292753 -0.281974 0.252373 -0.145181 0.385613 0.144039 0.027795 0.336078 0.349953 -0.209305 -0.129146 0.137401 0.219841 0.089697 0.088664 -0.428200 0.341913 -0.347822 -0.028871 0.542160 -0.276291 0.140871 -0.021696 0.491888 -0.322759 0.536226 0.105868 -0.337022 0.379455 0.400470 0.264553 0.170521 -0.229746 -PE-benchmarks/topological-sorting.cpp__std::stack > >::top() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/topological-sorting.cpp__std::stack > >::pop() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/topological-sorting.cpp__std::stack > >::~stack() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/topological-sorting.cpp__main = 0.235072 -0.533061 1.451804 0.731569 -0.870946 -0.267231 0.045445 0.044122 0.587269 -1.942103 -0.785137 0.325471 -0.727604 0.439482 -0.631858 -0.028128 -2.319174 -1.021948 0.280274 0.183478 -0.019947 -0.425353 0.771038 0.473656 0.489662 1.896801 -0.521820 -0.081077 -0.474852 1.161259 1.636714 -0.854517 0.696053 1.909422 0.072820 -2.404592 0.434862 -0.367935 -0.368217 -0.824223 0.461136 -0.807625 0.212389 -2.182468 -0.760133 -0.036899 0.634067 1.652654 0.481796 -0.246280 -1.638963 -0.437182 -0.566943 1.185236 -0.605364 -0.132570 0.682327 -0.288160 -0.162091 -0.782687 0.420488 -0.264680 0.365354 0.927695 -0.696854 -0.731802 -0.162888 -1.767907 -0.785536 0.780495 0.353227 1.797329 -0.846480 0.371596 -1.164555 0.088629 0.722823 1.561748 1.516498 -1.023674 0.664513 -0.107532 1.001290 0.031618 -0.240241 0.773349 0.242073 0.426025 -0.388985 -0.285903 -1.851480 -0.220601 -0.040446 -1.079474 0.551077 -1.562430 0.069897 -1.831381 -0.428790 -0.201815 0.267515 0.073410 0.530836 0.185870 0.686457 0.810995 -0.472063 -0.363872 0.515214 -0.613158 -0.303050 0.267189 0.495359 1.003163 -0.432755 -1.352332 -1.231831 -0.044138 -0.226815 -0.491134 1.402385 0.515643 -0.849006 0.105949 -0.009670 -0.040942 -0.450781 1.530882 0.407235 -0.473156 0.409889 -0.401815 1.238851 -0.079304 0.626573 2.536599 -0.757533 -0.769360 -0.253349 0.127040 -0.664321 -2.128111 0.361011 -0.310533 -0.354680 -1.150645 -0.964986 -0.737228 -0.759768 -1.608136 -0.144203 -0.763428 0.011475 1.780132 0.695518 0.939654 1.014246 1.439342 -0.745356 0.741807 -0.271169 -0.012446 0.549642 1.017212 0.644477 -0.264482 -0.126420 0.480527 -0.867428 0.592553 0.120017 -0.683150 0.311102 -1.302631 -0.575429 0.716952 1.128095 0.324670 0.197417 0.186774 -2.072025 -0.740593 -0.033015 0.891517 0.319986 -0.530310 0.777619 -0.653372 1.160427 -0.149301 -0.182259 -0.241810 0.103783 -0.855932 0.214377 0.146765 0.187504 -0.373567 -0.812439 -0.037319 -0.034420 -1.070078 1.015092 -0.450260 -0.455249 -0.532206 -0.702730 0.985892 -1.266849 -0.585694 0.426356 0.278683 1.967642 -1.175904 -0.413836 -0.721815 1.939183 0.471624 -0.115531 0.267442 -1.693599 -0.543283 -0.272767 0.344392 0.364835 -0.272618 0.068496 0.944991 0.138302 0.407113 0.880352 0.340263 0.848226 0.301715 -0.332485 -0.362779 -0.710483 0.827214 -0.111722 -0.125071 0.081898 0.837004 1.690629 0.627513 1.814601 2.297976 0.259708 0.849259 -0.710662 -0.948088 -0.467815 1.091813 -0.266723 -0.336477 -0.270774 1.186353 -0.553980 0.395168 -0.919253 -2.880606 -1.801387 -1.151017 -0.445186 -1.372825 0.047146 -0.285916 0.452497 -0.784994 0.143233 -0.679042 -0.309536 2.049825 0.641272 -0.367024 0.723416 0.759052 -1.605985 -1.111854 1.672888 1.359942 0.032282 1.152985 -2.454788 0.679514 -1.110033 -0.059587 1.973912 -1.199689 -0.408280 -0.616571 1.998216 -0.430015 1.708383 0.714329 -1.716659 0.486155 -0.013288 0.144021 2.150637 -0.677438 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/topological-sorting.cpp__std::deque >::~deque() = 0.211362 -0.538844 2.551283 1.152947 -0.911126 -0.010824 1.112920 -1.130486 1.417721 -0.873387 -0.885340 -0.448692 -1.731207 0.151912 -1.422947 0.175872 -2.689512 -1.173207 -0.353598 -1.040878 -0.146104 -1.126996 1.445597 0.193172 1.324159 1.216133 -0.364672 -0.478396 -1.190083 -0.136648 1.793513 -0.669929 0.593220 1.099389 -0.053146 -2.356950 1.337741 0.653533 -0.726245 -0.959270 1.171926 -0.903393 -0.270829 -1.015665 -0.301140 0.052614 0.198268 2.335725 1.322973 0.105686 -0.260921 -0.579350 -0.247945 2.223444 -1.367224 0.507219 0.340375 -0.225702 -0.250676 0.522375 0.034246 -0.104059 0.201978 1.088020 -0.358121 -0.998902 0.428608 -1.579205 -1.256018 1.610791 -0.265935 0.393312 -1.047349 -0.061715 -1.466922 0.141167 -0.832214 1.841346 2.100244 -1.169647 1.162982 -0.141844 0.327790 -0.569219 -0.408182 0.363572 0.774247 0.127312 -0.109774 -0.937061 -1.962101 -0.131603 0.127031 -0.879095 0.031040 -2.260678 1.088102 -2.290788 -1.347148 -0.395429 0.782212 -0.951711 0.362672 0.899623 0.274281 0.432868 -0.534285 -1.183394 0.157939 0.227921 -0.506783 0.589267 0.460569 0.463730 -0.588620 -1.174502 -1.548172 0.306577 -0.695589 -0.559569 0.316473 1.135170 -0.603987 0.054919 0.636919 0.764920 -0.406443 1.512916 -0.131370 0.372619 0.510306 0.527929 0.297020 0.098721 1.062421 1.815505 -0.386294 0.047508 -0.462448 0.294718 -1.483047 -1.195376 -0.515002 0.188677 -0.041988 -2.015998 -0.959148 -0.068780 -0.758682 -2.179433 -0.026345 -0.854033 -0.969659 0.670679 1.047004 1.668261 1.081583 2.075324 -1.406334 0.365258 0.028228 -0.690681 0.728210 0.463061 1.132800 -0.680722 -0.695033 -0.075018 -0.631246 0.831326 -0.452047 -0.074002 -0.235259 -2.121667 -0.305834 0.496416 0.911788 -0.167259 0.573310 1.441640 -0.854244 -1.606365 0.372035 1.656997 -0.300586 -0.607524 0.926384 -1.644232 1.189959 0.296048 0.265705 0.566095 0.181785 -0.234267 0.509560 -0.652921 0.372699 -1.215485 -0.868738 -0.614683 -0.205262 -1.385495 0.823365 -0.485260 -0.904033 -0.550615 -0.982684 1.290051 -1.280485 -0.950896 1.764906 0.081289 1.426712 -1.519032 1.117168 -0.888341 1.401577 0.225786 0.236273 -0.002481 -0.619264 -0.983507 -0.051513 -0.091766 0.085659 1.103912 1.494320 1.112465 0.386364 -0.052777 1.892206 -0.615744 1.272020 -0.611899 0.514554 -0.369883 -1.485565 0.673446 -0.352326 -0.659593 -0.313022 0.961285 2.465173 1.122250 1.336068 2.324690 0.393871 1.733912 -0.396565 0.415864 -0.259345 0.972883 -0.409488 -0.678878 0.728468 0.854086 -0.904458 0.830788 -2.033750 -3.374878 -1.595994 -2.083407 0.086657 -2.450654 0.635310 -0.308890 0.280415 -1.608141 -0.851833 0.079917 -0.291038 1.650050 0.807937 -0.072193 0.831069 1.696640 -1.450387 0.128073 1.303881 1.865265 -0.025320 -0.170869 -2.027398 1.210742 -1.594121 0.202352 2.307863 -1.240098 0.304094 -0.918372 1.620853 -1.774637 1.810271 0.652641 -1.139642 1.494871 0.638457 1.023734 2.186297 -0.759655 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.080122 -0.272632 0.640047 0.519425 0.052134 0.024782 0.402261 -0.227671 0.394202 0.262543 -0.071807 0.060751 -0.531359 0.156003 -0.091969 0.429601 -0.355264 -0.366223 -0.036478 -0.241675 -0.030300 -0.247739 0.449549 -0.115299 0.431751 0.008225 -0.188833 -0.414787 -0.470314 -0.263809 0.296138 -0.208813 0.313144 0.138095 -0.196404 -0.614876 0.335451 0.296338 -0.237208 -0.353299 0.372587 -0.274577 0.142310 -0.158157 0.112730 0.122141 0.103571 0.140481 0.394764 0.271762 0.287895 -0.024076 0.180341 0.537935 -0.464590 0.224814 0.085117 -0.048624 -0.163858 0.043357 0.073795 0.014524 0.235931 0.200641 -0.097391 -0.398587 -0.229219 -0.306450 -0.502433 0.238279 -0.148245 0.118531 -0.438532 -0.005075 -0.068618 -0.104851 -0.632731 0.299021 0.565676 -0.350175 0.393502 0.049218 0.019627 -0.158750 -0.030035 0.131569 -0.024723 0.065774 -0.062630 -0.161298 -0.202507 -0.018900 0.033566 0.088533 -0.055546 -0.352120 0.313856 0.118100 -0.430669 0.059963 0.182596 -0.084205 -0.203292 0.180507 -0.045930 0.363717 -0.274785 -0.434595 -0.078330 -0.047511 0.203093 -0.106176 -0.069592 -0.237942 -0.300298 -0.324970 -0.469305 -0.020632 -0.152019 -0.327988 -0.192551 0.255745 -0.202773 0.060021 0.071269 0.232672 -0.182446 0.484640 0.048222 0.336034 0.299226 0.014583 -0.526585 -0.008979 0.381233 0.590114 -0.149807 0.155861 -0.338047 -0.021953 -0.263381 -0.075397 0.184230 0.247001 0.465843 -0.388023 -0.260901 -0.027458 0.062665 -0.501232 0.206473 -0.304871 0.262186 0.057979 0.298037 0.110636 0.377379 0.829799 -0.389862 0.136531 -0.017507 -0.194293 0.381341 0.252251 0.336177 -0.198726 -0.260742 0.090423 0.206239 0.015601 0.011985 0.131710 0.060485 -0.494741 0.026144 0.065804 0.090607 -0.283461 0.255369 0.206211 0.276129 -0.240617 0.089549 0.357543 -0.059067 0.011999 0.110545 -0.519410 0.308693 0.037894 -0.121275 0.148188 0.040439 -0.253446 0.246719 -0.274337 0.094684 -0.277184 0.089579 -0.259611 -0.125505 -0.338966 0.072153 -0.048013 -0.312401 0.039082 0.140354 0.442772 0.109277 -0.104417 0.171810 -0.018397 -0.020572 -0.494017 0.849036 -0.308843 0.107022 -0.232968 -0.071406 -0.012711 0.288919 -0.192040 -0.176503 0.152229 -0.002789 0.248833 0.594253 0.252311 -0.080491 0.024065 0.452062 0.002108 0.353243 -0.039985 0.357755 -0.080117 -0.146537 0.173276 -0.107716 -0.035522 -0.135694 -0.016054 0.648468 0.301056 0.067478 0.387392 0.092066 0.560441 -0.205151 0.346569 -0.010058 0.486135 -0.096685 -0.056732 0.115515 0.160069 -0.159861 0.323003 -0.468041 -0.646565 0.118101 -0.422764 0.073064 -0.030367 0.154723 -0.122761 0.052861 -0.477284 -0.280278 -0.057862 -0.191807 0.260190 0.141823 0.067535 0.260467 0.362254 -0.260728 -0.080172 -0.008097 0.219451 0.079227 -0.136133 -0.170666 0.239111 -0.415867 -0.027268 0.378176 -0.204112 0.001514 -0.126408 0.467457 -0.311955 0.607855 0.116683 -0.053125 0.649032 0.332029 0.555452 0.088649 -0.177338 -PE-benchmarks/topological-sorting.cpp__std::deque >::begin() = 0.310427 -0.258252 1.509167 1.009178 -0.353336 0.049927 0.206996 -0.802826 0.809251 0.036658 -0.344590 0.131472 -0.603809 0.337184 -0.595730 0.758050 -1.238518 -0.461330 -0.253502 -0.766637 -0.295647 -0.292252 0.539422 -0.154533 0.782743 0.482426 -0.360186 -0.200923 -0.425341 -0.708689 0.468527 -0.344653 0.257336 0.096464 0.069291 -1.125922 0.951876 0.503734 -0.502418 -0.625167 0.570800 -0.517770 -0.014836 -0.453743 0.040406 0.177035 0.028532 0.846433 0.734292 0.423397 0.158321 0.236360 0.397335 1.368066 -0.689271 0.441274 0.270069 -0.076445 -0.212847 0.263372 0.124679 0.107870 0.116763 0.196548 0.042839 -0.966732 -0.320396 -0.528584 -0.365280 0.628456 -0.212918 -0.187321 -0.778807 -0.258389 -0.610960 -0.146608 -1.907321 0.887227 0.974918 -0.876302 0.407151 0.083856 0.082589 0.012088 0.105277 0.167533 0.527183 0.234949 -0.023304 -0.148433 -0.238545 -0.181888 0.389438 -0.578539 -0.329876 -1.581916 0.556886 -1.061167 -0.839287 0.168452 0.619789 -0.406829 0.171849 0.053742 0.106267 0.243833 -0.445153 -0.576409 0.295040 0.058441 0.213423 -0.067289 0.070745 -0.248692 -0.101173 -0.117077 -1.075785 0.351240 -0.173868 -0.108863 -0.029707 0.615758 0.150313 -0.228252 0.025242 0.407180 -0.369197 1.006023 -0.208004 0.653596 -0.151390 0.689429 -0.404447 0.708023 0.700568 0.005046 -0.314337 0.313263 -0.458411 0.166802 -0.763763 -0.070189 -0.347996 0.451133 0.343048 -0.638068 -0.610872 -0.175087 -0.517976 -0.939357 0.268322 -0.418018 -0.572732 0.071655 0.594333 0.726684 0.765588 0.632080 -0.637466 -0.097148 -0.123590 -0.025546 0.778248 0.127677 0.631133 -0.414983 -0.322518 0.272316 0.059879 0.193731 0.002140 0.132258 0.203448 -0.908779 0.297251 0.399995 0.458037 -0.319197 0.649174 0.672474 0.241850 -0.398947 0.123411 0.724722 -0.352290 -0.079640 0.246454 -0.778429 0.463843 0.265676 0.389523 0.499403 0.073838 -0.023062 0.217491 -0.287128 0.252234 -0.418605 -0.241259 -0.377318 -0.385109 -0.407964 0.608783 -0.297623 -0.325892 -0.229829 -0.473598 0.830033 -0.891754 -0.102202 0.928196 -0.303500 0.318977 -0.542261 1.086958 -0.595168 0.494680 -0.002513 0.038168 0.033382 -0.096224 -0.783000 0.090644 0.248806 -0.023377 0.268549 0.780920 0.547540 0.075013 -0.099211 0.916573 -0.541017 0.883952 -0.251487 0.723155 -0.268875 -0.349983 0.150960 -0.130629 -0.481939 -0.392872 0.417811 1.080738 0.142442 0.578924 0.629960 0.202928 1.034616 -0.466234 0.686139 -0.258596 0.269180 -0.408798 -0.342661 0.469713 0.237032 -0.244591 0.360515 -1.078249 -1.121936 -1.124963 -0.387738 0.144572 -0.595198 0.245823 -0.347317 -0.099845 -0.697583 -0.706694 0.677459 -0.281542 -0.122510 0.468079 0.092602 0.483033 0.815263 -0.341999 0.065232 -0.037576 0.382640 0.309402 -0.181183 -0.751650 0.899160 -0.644365 -0.102322 1.117470 -0.534094 0.215285 -0.013363 0.617431 -0.623270 0.797068 0.150850 -0.389575 0.765528 1.026644 0.744832 0.439358 -0.450875 -PE-benchmarks/topological-sorting.cpp__std::deque >::end() = 0.310427 -0.258252 1.509167 1.009178 -0.353336 0.049927 0.206996 -0.802826 0.809251 0.036658 -0.344590 0.131472 -0.603809 0.337184 -0.595730 0.758050 -1.238518 -0.461330 -0.253502 -0.766637 -0.295647 -0.292252 0.539422 -0.154533 0.782743 0.482426 -0.360186 -0.200923 -0.425341 -0.708689 0.468527 -0.344653 0.257336 0.096464 0.069291 -1.125922 0.951876 0.503734 -0.502418 -0.625167 0.570800 -0.517770 -0.014836 -0.453743 0.040406 0.177035 0.028532 0.846433 0.734292 0.423397 0.158321 0.236360 0.397335 1.368066 -0.689271 0.441274 0.270069 -0.076445 -0.212847 0.263372 0.124679 0.107870 0.116763 0.196548 0.042839 -0.966732 -0.320396 -0.528584 -0.365280 0.628456 -0.212918 -0.187321 -0.778807 -0.258389 -0.610960 -0.146608 -1.907321 0.887227 0.974918 -0.876302 0.407151 0.083856 0.082589 0.012088 0.105277 0.167533 0.527183 0.234949 -0.023304 -0.148433 -0.238545 -0.181888 0.389438 -0.578539 -0.329876 -1.581916 0.556886 -1.061167 -0.839287 0.168452 0.619789 -0.406829 0.171849 0.053742 0.106267 0.243833 -0.445153 -0.576409 0.295040 0.058441 0.213423 -0.067289 0.070745 -0.248692 -0.101173 -0.117077 -1.075785 0.351240 -0.173868 -0.108863 -0.029707 0.615758 0.150313 -0.228252 0.025242 0.407180 -0.369197 1.006023 -0.208004 0.653596 -0.151390 0.689429 -0.404447 0.708023 0.700568 0.005046 -0.314337 0.313263 -0.458411 0.166802 -0.763763 -0.070189 -0.347996 0.451133 0.343048 -0.638068 -0.610872 -0.175087 -0.517976 -0.939357 0.268322 -0.418018 -0.572732 0.071655 0.594333 0.726684 0.765588 0.632080 -0.637466 -0.097148 -0.123590 -0.025546 0.778248 0.127677 0.631133 -0.414983 -0.322518 0.272316 0.059879 0.193731 0.002140 0.132258 0.203448 -0.908779 0.297251 0.399995 0.458037 -0.319197 0.649174 0.672474 0.241850 -0.398947 0.123411 0.724722 -0.352290 -0.079640 0.246454 -0.778429 0.463843 0.265676 0.389523 0.499403 0.073838 -0.023062 0.217491 -0.287128 0.252234 -0.418605 -0.241259 -0.377318 -0.385109 -0.407964 0.608783 -0.297623 -0.325892 -0.229829 -0.473598 0.830033 -0.891754 -0.102202 0.928196 -0.303500 0.318977 -0.542261 1.086958 -0.595168 0.494680 -0.002513 0.038168 0.033382 -0.096224 -0.783000 0.090644 0.248806 -0.023377 0.268549 0.780920 0.547540 0.075013 -0.099211 0.916573 -0.541017 0.883952 -0.251487 0.723155 -0.268875 -0.349983 0.150960 -0.130629 -0.481939 -0.392872 0.417811 1.080738 0.142442 0.578924 0.629960 0.202928 1.034616 -0.466234 0.686139 -0.258596 0.269180 -0.408798 -0.342661 0.469713 0.237032 -0.244591 0.360515 -1.078249 -1.121936 -1.124963 -0.387738 0.144572 -0.595198 0.245823 -0.347317 -0.099845 -0.697583 -0.706694 0.677459 -0.281542 -0.122510 0.468079 0.092602 0.483033 0.815263 -0.341999 0.065232 -0.037576 0.382640 0.309402 -0.181183 -0.751650 0.899160 -0.644365 -0.102322 1.117470 -0.534094 0.215285 -0.013363 0.617431 -0.623270 0.797068 0.150850 -0.389575 0.765528 1.026644 0.744832 0.439358 -0.450875 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::~_Deque_base() = 1.134606 -0.501335 4.878249 3.348777 -2.211512 0.115987 -1.036558 -2.576256 1.547066 -0.352534 -1.091010 1.061882 -0.613441 0.878256 -0.236052 2.255535 -4.769959 -0.477487 -1.037538 -2.298238 -1.390906 -0.218294 0.571989 0.406568 2.013795 3.121895 -1.382105 0.846460 0.843859 -3.500277 0.527616 -0.768008 1.013038 1.286383 1.519222 -5.053914 3.300579 1.316574 -1.158905 -1.910656 1.168450 -0.695988 -0.390753 -1.366689 -1.546469 1.026275 0.065868 2.001303 1.698855 1.220514 -0.716581 0.809043 2.080610 3.488797 -0.289362 1.021361 1.263222 -1.230967 -0.609376 -0.163107 0.520720 0.091537 0.246537 0.073355 0.643677 -3.181385 -0.517867 -1.287655 -0.648453 1.880216 -0.116855 -1.622180 -1.849323 -1.867672 -1.980875 -0.446341 -3.764015 3.183655 2.461707 -2.465486 0.656995 0.142131 -0.239375 0.624369 0.663913 0.322970 2.494727 1.031637 0.225122 0.555570 1.027280 -2.318907 1.933341 -1.458627 -1.332364 -4.508337 1.122278 -4.644217 -2.046848 1.073308 2.236736 -1.481714 -0.288542 -1.566143 0.920180 0.429479 -0.616571 -0.844449 1.111051 0.267441 0.122400 -0.257215 -0.651634 0.580015 -0.023222 1.321024 -3.379880 1.827678 0.116334 0.712824 0.833654 1.636867 1.351929 -0.934053 -0.409438 1.188219 -1.195144 3.229723 -0.828347 1.885753 -1.336936 2.507126 1.198378 2.082648 1.536019 -2.045249 -0.844238 -1.045075 -1.026999 0.888972 -2.239846 0.387556 -1.428390 1.946250 1.882437 -0.510276 -2.251602 -1.046326 -3.375095 -3.285610 0.372021 -1.162776 -2.393322 2.029221 1.563936 1.637808 1.857085 -0.014591 -1.708204 -0.545190 -0.701942 0.215175 2.115571 0.309763 1.512816 -1.269356 -0.318111 1.439742 -0.294034 1.408561 0.264651 -0.144795 1.005910 -1.686321 0.097817 2.554651 1.655818 0.371580 1.426105 2.233035 2.954399 0.281233 -0.264033 1.715777 -1.153756 -0.644566 0.912842 -1.476062 0.640371 0.749406 1.573196 2.364701 -0.043606 0.349806 0.186399 -0.032111 0.383225 -0.966909 -0.362986 -0.729961 0.383940 -0.619170 0.843946 -1.481157 -0.264285 -1.468158 -2.090165 2.724196 -4.405098 -0.956556 3.543891 -1.889803 2.114404 -1.647848 2.194127 -1.494638 2.155273 -0.149802 -0.557607 0.309962 -2.733789 -2.647699 1.285082 0.677191 0.342329 -0.808101 1.592644 1.473671 -0.021751 -0.833773 2.149209 -1.621087 3.284036 -0.760537 2.250664 -0.963293 0.348343 -0.567511 -0.045005 -2.031183 -1.167507 1.214820 1.513049 -0.526666 2.124013 1.117912 0.731866 2.375374 -1.575008 2.000772 -0.771645 0.087737 -1.533813 -1.533249 1.628156 1.839265 -0.350886 0.557849 -3.084512 -2.402284 -5.663659 -0.657772 -1.033074 -0.468101 1.198322 -1.066955 -0.946245 -0.678625 -2.011602 4.238738 -0.159329 0.043790 1.553039 0.083734 1.647709 2.177088 -0.174152 -0.243829 -0.702722 0.481724 1.179754 0.242669 -2.992255 3.139991 -1.254890 -0.327614 3.795264 -1.806820 1.230290 -0.096162 1.772205 -1.836061 1.738542 0.153075 -1.863944 1.083047 2.920199 0.356191 0.684125 -1.541383 -PE-benchmarks/topological-sorting.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.030971 -0.534112 3.689031 2.585290 -1.093533 0.124847 -0.031637 -1.880698 1.479275 0.413230 -0.240911 0.681280 -0.810499 0.673387 0.180417 1.990954 -3.040441 -0.668667 -0.711690 -2.089670 -1.050674 -0.239376 0.846609 -0.208405 1.628213 1.076641 -1.209520 -0.350421 0.037631 -2.497298 0.928100 -0.767047 1.213740 0.172951 0.329682 -5.506866 2.476931 1.023896 -1.154621 -1.415579 1.195596 -0.668144 0.166676 -0.737999 -1.237193 0.479158 0.045174 0.521805 1.585326 1.061276 0.330911 0.825352 1.366200 3.684623 -1.055960 0.844195 0.617182 -1.087942 -1.042372 0.144134 0.379700 0.144368 0.769753 0.123258 0.365978 -2.604733 -0.413163 -1.096995 -1.445428 1.217522 -0.046967 -1.120439 -1.171893 -0.926344 -1.170565 -0.851635 -1.919319 1.950786 2.040849 -1.793400 0.931256 -0.040081 -0.297241 0.464538 0.475002 0.461586 1.591759 0.601486 0.096050 0.121291 0.755619 -1.071656 1.258580 0.006462 -0.744264 -3.157385 1.100461 -1.627999 -1.626050 0.965090 1.709545 -0.740541 -1.590522 -1.528181 0.574037 0.790255 -1.001329 -1.143419 -0.178216 0.176496 0.233296 -0.404909 -0.604215 -0.606993 -0.451353 0.148988 -2.438033 1.067081 -0.127140 0.177185 -0.576127 1.367438 0.156617 -0.750961 -0.200215 1.414737 -1.354213 2.260919 -0.751254 1.677234 -0.419354 1.280584 -0.603902 0.238219 1.257940 0.125472 -0.332942 -1.083183 -1.537775 0.486339 -1.764273 0.520180 -0.052837 1.775318 2.408074 -0.333204 -1.476896 -0.480973 -1.224394 -2.823852 0.439093 -1.174120 -0.832669 1.550921 1.295354 0.860528 1.680332 1.020997 -1.290311 0.543668 -0.721416 -0.374479 2.035689 0.183288 1.388512 -0.993324 -0.456324 0.630821 0.207060 1.117947 0.186055 0.015728 0.626512 -1.510536 -0.281514 1.038385 1.046981 -0.203309 0.782017 1.580878 3.752139 -0.809741 -0.021434 1.441182 -0.936799 -0.197053 0.563779 -1.331140 0.154333 0.747768 -0.159804 1.890501 -0.002645 -0.713973 0.199787 -0.296838 0.276517 -0.733776 0.146620 -0.723411 0.193111 -0.573520 -0.260334 -1.326626 -0.470943 -1.059533 -1.192556 2.215580 -2.687325 -1.158352 2.484154 -1.237169 0.954120 -2.247117 3.110791 -1.315909 1.237149 -1.188333 -0.551782 -0.145737 -0.395621 -2.015881 1.125757 0.556801 -0.152452 -0.107865 2.442864 1.237226 0.203405 -0.866522 1.969941 -0.798707 2.412700 -0.543727 2.280386 -0.868235 -0.029411 -0.327474 -0.142926 -1.140859 -0.911890 0.881999 1.046461 0.120388 0.984097 0.719026 1.037309 2.099758 -1.142887 1.856207 -0.354314 0.752326 -0.733162 -0.800658 1.275998 1.538982 -0.284021 0.763865 -2.380657 -1.890280 -2.962667 -1.044296 -0.268227 0.862751 0.578471 -0.780335 -0.432818 -1.300736 -1.283313 2.369377 -0.429579 0.625437 1.151454 0.339706 1.326649 1.821207 -0.446457 -0.487985 -0.647352 0.132356 0.853757 -0.267690 -1.917211 2.282762 -1.263739 -0.111377 2.400065 -1.009353 0.685208 0.146880 1.528884 -1.328777 1.943127 0.098009 -0.790377 1.661455 2.162319 1.215091 0.128892 -0.966292 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.372193 -0.743402 2.556830 1.817560 -0.072969 0.233445 0.728796 -1.243910 1.429419 0.630500 -0.385598 0.499926 -1.484536 0.410374 -0.150822 1.174691 -1.884086 -1.288796 -0.262703 -1.118130 -0.499251 -0.952840 0.972095 0.132487 1.326914 0.464327 -0.988051 -0.431689 -1.468055 -1.812751 0.705385 -0.663416 1.058624 0.397373 0.027656 -2.825515 1.662618 1.114583 -0.632063 -1.293174 1.079735 -1.056978 0.167997 -0.508828 0.055737 0.672855 0.384304 0.595245 1.494674 0.644467 0.602648 0.005164 0.244746 1.740759 -1.308561 0.841037 0.397544 -0.614687 -0.656394 0.154755 0.151001 -0.211428 0.930050 0.797898 -0.701802 -1.519168 0.073042 -0.792737 -1.609998 1.253622 0.035277 -0.338261 -1.198448 -0.324813 -0.853183 -0.395215 -0.040910 1.122498 2.061971 -0.823016 1.341566 0.069732 0.333363 -0.294610 0.436073 0.143953 1.244565 0.212311 -0.517325 -0.738614 -1.134675 -0.599202 0.092264 0.869630 -0.146346 -0.712452 0.708066 -1.231064 -1.676255 0.159336 0.694903 -0.522136 -1.600134 0.350190 0.740235 0.841471 -0.306924 -1.483338 -0.246348 0.240435 -0.411123 -0.312282 -0.263154 -0.882529 -0.914747 -0.451910 -1.850549 0.175762 -0.177282 -0.647968 -0.855750 1.209132 -0.682787 0.079972 0.221308 1.000915 -0.566981 1.299903 -0.208265 0.998288 0.710459 -0.052955 -1.242983 -0.192571 0.832313 1.118757 -0.687651 -0.281213 -0.988402 0.175508 -1.375213 -0.115481 -0.336140 1.425412 1.676005 -1.203089 -1.149777 -0.270140 -0.263125 -1.917913 0.519450 -1.003113 -0.225963 0.075419 1.152479 0.480568 1.199258 2.189453 -1.231577 0.772769 -0.005777 -0.425604 1.500484 0.192120 1.263609 -0.962643 -0.744600 0.594120 0.458702 0.375906 -0.156426 0.082328 0.264361 -1.705063 -0.718459 0.686330 0.347745 0.146545 0.942494 1.042181 2.109331 -1.329338 0.387263 1.252752 -0.244714 -0.185205 0.460795 -1.513023 0.802673 0.400200 0.201929 1.508210 0.084680 -1.098338 0.393877 -0.120389 0.465493 -1.232926 0.287835 -0.846081 0.287950 -0.811879 -0.393241 -0.691008 -0.898388 -0.548098 -0.330275 1.747418 -0.275755 -1.799152 1.603798 -0.801640 1.060840 -2.517610 1.734943 -1.153663 0.736814 -0.903663 -0.042450 -0.110026 0.114198 -1.113103 0.482071 0.470500 -0.162069 1.024713 1.860920 0.950727 0.368070 -0.231428 1.399346 -0.051684 1.341997 -0.369918 1.342701 -0.388176 -0.313008 0.107558 -0.377193 -0.326760 -0.144062 0.115365 1.190774 1.147172 0.354523 1.283849 0.867207 1.638699 -0.762791 1.167336 -0.204536 1.119294 -0.449938 -0.676112 0.573013 0.637181 -0.433261 1.010756 -1.985066 -2.222674 -0.474250 -2.318887 -0.028400 -0.023163 0.658846 -0.131189 0.049778 -1.686542 -0.775127 0.890650 -0.072697 2.198993 0.652272 0.195799 0.950855 1.457558 -0.893499 -0.468544 -0.176640 0.491564 -0.018305 -0.570409 -1.298969 1.339118 -1.255254 0.481783 1.695860 -1.092253 0.264311 -0.756519 1.414385 -1.407967 1.992804 0.500743 -0.641050 1.651271 0.690788 1.746417 0.163658 -0.864995 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.074628 -1.180886 3.512171 2.501607 -0.140533 0.121084 1.744633 -1.506536 1.452058 0.387254 -0.502250 0.901278 -2.354976 0.905171 -1.872503 1.697223 -2.425117 -1.756175 -0.562907 -1.331219 -0.324069 -0.970974 2.137690 0.123099 2.342769 0.410711 -1.328845 -1.766445 -2.583811 -1.665281 1.234134 -0.742914 1.419356 -0.254108 -0.898109 -3.514174 1.850202 1.864043 -1.131424 -1.756229 2.246634 -1.463736 -0.183035 -1.010787 -0.328953 0.145184 0.222547 1.237705 1.796913 1.050473 0.742710 0.771382 0.929308 3.445243 -1.989961 1.273031 0.822447 0.000814 -0.785757 0.192591 0.282728 0.163093 0.856823 0.708979 -0.261421 -2.120343 -0.755225 -1.311719 -1.882250 1.418671 -0.518982 0.258545 -1.779524 0.191107 -1.511075 -0.151032 -0.763972 1.725958 2.651513 -1.728536 1.667317 -0.253500 -0.256066 -0.732414 -0.221352 0.534026 0.130477 0.477085 0.192908 -1.520703 -1.579718 0.415360 0.197966 0.246011 -0.661915 -3.087893 1.804881 -1.490705 -2.362788 -0.060242 1.103322 -1.387829 -0.335162 0.523350 -0.030215 1.395838 -1.140092 -1.876486 -0.223891 0.228455 0.718189 -0.553756 0.057383 -0.802580 -0.879300 -1.178064 -2.498617 0.529733 -0.551925 -1.075775 -0.756905 1.313851 -0.519647 0.278561 0.301947 1.417073 -0.849094 1.890421 -0.217344 1.339588 0.969183 0.836090 -0.865557 -0.102621 1.725471 2.119577 -1.429187 0.463801 -1.589528 0.306355 -1.242532 -0.495458 -0.108746 1.228661 1.348385 -2.025837 -1.455252 -0.314857 -0.145357 -2.508319 0.382223 -1.259647 -0.433943 0.403844 1.486838 0.450846 1.693229 3.382014 -1.392717 0.656069 0.619854 -0.946972 1.898500 -0.017701 1.515420 -1.110151 -1.684609 0.744693 0.371738 0.759146 -0.675650 1.201558 0.218899 -2.388697 -0.308566 0.291224 0.796449 -0.863939 1.464812 1.445872 1.073594 -1.494782 0.449556 1.721440 -0.944794 -0.025060 0.413728 -2.560816 1.132655 0.481911 -0.031706 1.745463 0.309837 -1.330484 1.464889 -0.828858 0.526385 -1.559052 0.404194 -1.307066 -0.691449 -1.560750 -0.040043 0.003339 -1.152964 -0.671705 -0.687380 2.345433 -1.332101 -1.278300 1.481087 0.008211 0.506937 -3.161391 3.267553 -1.432583 0.989732 -0.192675 -0.001327 0.288928 0.554593 -1.875220 -0.154314 0.667206 -0.430650 1.541112 2.831526 1.233806 0.005452 -0.319350 2.186538 -0.392568 2.086815 -0.736662 1.758837 -0.427735 -1.742333 0.493040 -0.426182 -0.714181 -0.844444 0.671967 2.817986 1.079261 1.041997 2.040412 0.999199 3.128106 -1.061359 1.714059 -0.506400 1.701772 -0.555328 -0.723069 0.764821 0.923686 -0.588779 1.915815 -2.683634 -3.717041 -1.276875 -2.985662 0.987007 -1.454513 1.049452 -0.942166 -0.141008 -2.801074 -1.742654 0.245184 -0.711602 1.856446 1.646652 0.383335 1.251755 1.764250 -1.442791 0.417661 0.202416 1.714806 0.571680 -0.959280 -1.340188 1.349910 -1.779867 0.139865 2.533692 -1.156116 0.672665 -0.873089 1.640506 -1.721242 3.035994 0.555955 -1.014974 2.629774 1.361369 2.025556 0.771602 -1.086090 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.071811 -0.688315 2.733736 1.599799 -0.420647 0.080161 1.063639 -1.155692 1.414464 0.233799 -0.568754 -0.041433 -1.496911 0.241866 -0.921467 0.822599 -2.044144 -1.128486 -0.421229 -1.273612 -0.305769 -0.911917 1.180430 -0.024939 1.424070 0.500777 -0.617915 -0.755456 -1.138461 -1.210188 1.208511 -0.555343 0.849201 0.201618 -0.218977 -2.909837 1.509312 1.034349 -0.758776 -1.144571 1.184406 -0.696347 -0.179730 -0.434012 -0.280567 0.269992 0.256347 1.410536 1.263025 0.610649 0.428105 -0.142529 0.395109 2.644655 -1.287097 0.720035 0.403619 -0.302524 -0.440608 0.514058 0.131606 -0.100472 0.387808 0.733914 0.003554 -1.311512 0.160738 -1.057066 -1.397262 1.348301 -0.250391 -0.218544 -0.973421 -0.226266 -1.048168 -0.129733 -1.071719 1.411379 1.998804 -1.138393 1.243635 0.071727 0.089837 -0.341742 -0.352549 0.278529 0.628066 0.209457 -0.044402 -0.881403 -1.111645 -0.203784 0.192436 -0.151466 -0.310317 -2.078919 1.263733 -1.381391 -1.446536 0.015574 0.879646 -0.886967 -0.370665 0.342867 0.181269 0.669776 -0.546496 -1.187041 -0.266431 0.279087 -0.154162 0.135625 0.114972 -0.236438 -0.571226 -0.610670 -1.722114 0.393548 -0.498933 -0.535989 -0.435124 1.065152 -0.440847 0.066488 0.463554 1.080893 -0.533391 1.395758 -0.031827 0.924831 0.461996 0.609767 -0.707720 -0.068128 1.102524 1.280547 -0.349594 -0.047152 -0.783474 0.312834 -1.213044 -0.269479 -0.346162 0.698001 0.985261 -1.497832 -0.980168 -0.245769 -0.393596 -1.874185 0.190716 -0.970474 -0.654249 0.431953 1.019356 1.089783 1.055061 2.117603 -1.437215 0.543942 -0.044291 -0.693146 0.844871 0.132930 1.088942 -0.721966 -0.784569 0.075803 0.148537 0.723350 -0.359099 0.081263 0.053133 -1.817824 -0.229676 0.471287 0.571213 -0.437228 0.664482 1.375793 1.022872 -1.504805 0.270154 1.384489 -0.555980 -0.372851 0.699542 -1.714707 0.804545 0.370702 0.086883 1.049715 0.168884 -0.463138 0.683545 -0.738752 0.183305 -1.067485 -0.155580 -0.750527 -0.258656 -1.007663 0.248820 -0.688098 -0.709977 -0.484270 -0.632219 1.478340 -1.088921 -1.103459 1.608589 -0.203163 0.604465 -1.865045 2.116335 -0.897244 0.859009 -0.315597 -0.018827 -0.134667 0.136225 -1.065953 0.056289 0.140678 -0.146044 1.122004 2.050601 0.965776 0.200549 -0.211174 1.804534 -0.595279 1.394474 -0.638232 0.947390 -0.437842 -1.131557 0.162720 -0.306798 -0.560705 -0.460847 0.636036 1.772558 0.911138 0.644298 1.553942 0.661461 1.775771 -0.477386 1.051973 -0.158940 1.135274 -0.458382 -0.553444 0.757055 0.729761 -0.759618 1.024984 -2.011928 -2.535150 -1.258104 -1.958295 0.126135 -1.177820 0.655533 -0.450226 0.014618 -1.706995 -1.094154 0.611796 -0.262084 1.153441 0.878469 0.129568 0.908144 1.533662 -0.984956 0.091582 0.416073 1.119022 0.153738 -0.643241 -1.288375 1.291257 -1.331334 0.141240 1.971878 -0.994149 0.441457 -0.523694 1.246396 -1.610767 1.907614 0.484267 -0.737751 1.578615 0.932005 1.538938 0.863976 -0.729133 -PE-benchmarks/topological-sorting.cpp__std::__deque_buf_size(unsigned long) = -0.116121 -0.623844 0.979156 0.524649 0.030321 0.105621 0.281413 0.193531 0.015119 0.492195 -0.528737 0.707594 -0.485573 -0.027828 0.401757 0.260386 -0.495962 -0.620167 0.306523 0.227686 -0.079697 -0.409765 -0.163546 0.569301 0.506457 0.399986 -0.473787 -0.109338 -0.615937 -0.806649 -0.439282 -0.107910 0.402599 0.330315 0.647154 -0.349462 0.107323 0.369117 0.193385 -0.793463 0.213179 0.076683 0.181805 0.028307 0.330817 0.699365 0.724824 0.268254 0.083560 0.219676 -0.301719 -0.568431 -0.012190 0.000508 0.282780 0.227862 0.587925 -0.265651 0.230415 -0.434771 0.267538 -0.688217 0.206806 0.247552 -0.349619 -0.136379 0.045271 -0.108106 -0.106933 0.273015 0.453772 -0.066260 -0.551848 -0.543991 -0.217233 0.030894 0.158652 0.482695 0.725903 -0.085403 0.667450 0.386950 0.821935 -0.100270 0.171772 -0.167583 0.238507 0.129630 -0.434137 -0.137739 -0.648005 -0.708830 -0.402105 0.661217 -0.062548 0.583856 0.075780 -0.487141 -0.594738 0.237135 -0.008452 -0.200319 -0.401491 0.649158 0.428512 0.526169 0.238068 -0.369246 -0.314528 -0.021199 -0.410078 -0.048503 0.028335 -0.092699 -0.469933 0.141138 -0.510601 0.050926 0.369764 -0.408596 -0.029319 0.343869 -0.302477 0.749008 0.114202 0.062891 0.108242 0.264396 0.962674 0.208077 0.179913 -0.495013 -0.696716 0.049743 0.089514 0.338915 -0.412382 -0.184655 0.065231 0.118674 0.109088 -0.069746 -0.311237 0.851842 0.749980 -0.487501 -0.698926 -0.679867 -0.319111 -0.117205 0.276569 -0.153171 0.238388 -0.051665 0.148780 -0.009904 -0.112036 0.801181 -0.631938 0.350295 0.086671 0.074556 -0.137238 0.114893 0.157106 -0.427044 -0.094373 0.273651 0.543862 0.072404 0.091312 -0.301535 0.402913 -0.266654 -0.423974 0.576671 0.183152 0.308982 0.436901 0.255966 0.482396 -0.122943 -0.458469 0.062276 0.070066 -0.441943 0.254171 -0.591318 0.616995 -0.103476 0.432791 0.564450 0.020542 -0.265709 0.632820 -0.045037 0.057991 -0.353938 0.442251 -0.415613 0.322673 -0.131809 -0.096751 -0.467629 -0.008358 -0.176808 0.114480 0.757224 0.402811 -0.903577 0.058964 -0.224272 0.590442 -0.922340 0.225784 -0.066792 0.253055 -0.027053 0.020035 -0.027827 -0.234378 0.160528 -0.123160 0.165050 0.149979 0.083226 0.186370 0.066126 -0.264405 0.309358 0.131781 0.283192 0.083294 0.088509 -0.097168 -0.124138 0.321470 -0.178421 0.140489 0.155400 0.451380 -0.409898 -0.067337 0.164414 -0.023758 0.377895 0.250061 0.041764 -0.335812 -0.063845 -0.140034 0.848046 -0.274280 -0.461668 -0.382035 0.439259 -0.219702 0.078883 -0.662524 -0.578198 0.075472 -1.165239 -0.679275 0.072791 0.290138 0.169417 -0.204161 -0.311566 -0.117581 0.288000 0.415583 0.989791 0.096590 -0.258428 0.612515 0.191438 -0.287290 -0.359340 -0.039330 0.009719 -0.201023 -0.051455 -0.293259 0.006961 -0.618624 0.262711 0.665426 -0.586347 0.071031 -0.382058 0.576456 -0.717278 0.834256 0.443793 -0.818326 -0.125062 0.137225 0.622229 -0.568378 -0.494916 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.131137 -0.515222 1.981708 1.408704 -0.059030 0.083277 0.924341 -0.999307 1.071187 0.288900 -0.209352 0.224498 -1.210847 0.469492 -0.878236 1.016873 -1.287111 -0.912945 -0.366425 -1.023795 -0.215445 -0.498064 1.120905 -0.233199 1.251544 -0.028076 -0.618578 -0.978504 -1.339885 -0.680000 0.871223 -0.427802 0.646108 -0.180245 -0.440533 -1.838109 1.123407 0.905709 -0.726254 -0.879226 1.127225 -0.856953 0.013893 -0.517298 0.125704 0.074648 -0.003654 0.738024 1.102621 0.597115 0.567162 0.470605 0.355940 2.045464 -1.344597 0.683744 0.280231 -0.009809 -0.456160 0.413424 0.118953 0.212346 0.432782 0.320099 -0.098685 -1.311545 -0.450909 -0.761299 -0.978046 0.786216 -0.252091 -0.033281 -1.001867 0.036884 -0.735164 -0.230516 -1.452719 0.983145 1.379915 -1.074711 0.814945 -0.058816 -0.056087 -0.277604 -0.005947 0.292795 0.274585 0.207170 0.078519 -0.679820 -0.917975 0.174565 0.224590 -0.190079 -0.379310 -1.814608 0.967420 -0.579918 -1.275615 0.050868 0.751165 -0.622981 -0.240576 0.289693 -0.055900 0.643764 -0.688482 -1.037448 -0.072105 0.171133 0.410748 -0.250286 0.039886 -0.720564 -0.425321 -0.761422 -1.383245 0.348148 -0.362830 -0.434241 -0.594794 0.824322 -0.373999 -0.148824 0.153474 0.768801 -0.609345 1.097925 -0.281505 0.868830 0.492425 0.470936 -1.033466 0.213719 1.007386 1.164027 -0.516862 0.480126 -0.960793 0.140694 -0.903029 -0.107661 0.028730 0.682661 0.658046 -1.115146 -0.716083 -0.074438 0.056780 -1.285804 0.355934 -0.661830 -0.227212 -0.017361 0.835377 0.665007 1.063222 1.688725 -0.821570 0.308449 0.109682 -0.393352 1.165283 0.090828 0.901881 -0.597409 -0.778465 0.226531 0.205921 0.255800 -0.223475 0.580471 0.132771 -1.420510 0.064261 -0.008148 0.398001 -0.652851 0.850389 0.889985 0.514855 -1.034526 0.312260 1.031700 -0.568658 0.026549 0.241744 -1.318639 0.579786 0.367134 -0.041096 0.850551 0.139686 -0.584729 0.559814 -0.523256 0.336420 -0.699286 -0.005001 -0.682872 -0.605593 -0.780086 0.250046 -0.190347 -0.678276 -0.271489 -0.386144 1.224351 -0.552326 -0.525152 0.979179 -0.161180 0.063211 -1.454846 2.012204 -0.836945 0.356888 -0.258888 0.059919 -0.018983 0.639500 -1.137767 -0.008545 0.346650 -0.303199 0.853567 1.668809 0.733919 0.086435 -0.213419 1.314459 -0.431740 1.159494 -0.439812 1.148727 -0.343310 -0.862770 0.310377 -0.240496 -0.410452 -0.558045 0.427811 1.637969 0.542808 0.592870 0.953066 0.496282 1.697009 -0.567402 1.069045 -0.244686 0.742258 -0.286633 -0.320895 0.598379 0.263871 -0.332317 0.870549 -1.488308 -1.837169 -0.540419 -1.271867 0.676194 -0.710912 0.356611 -0.471697 -0.066513 -1.553403 -0.964725 -0.009915 -0.477196 0.465366 0.751219 0.231137 0.647319 1.103115 -0.785584 0.235490 0.065326 0.754039 0.359460 -0.641297 -0.742889 0.992644 -0.969831 -0.017948 1.373573 -0.548788 0.322133 -0.283146 0.938233 -0.894109 1.530931 0.219517 -0.367145 1.487446 1.085646 1.353095 0.473612 -0.538228 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/topological-sorting.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/topological-sorting.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.559354 -1.112255 6.819190 3.704652 -1.380954 0.047994 2.326211 -3.691297 3.060954 -1.405149 -0.385703 0.456192 -3.699805 1.303337 -3.437818 1.789518 -5.247821 -2.978969 -1.943166 -4.166050 -1.450427 -1.519054 3.323599 0.218578 3.552059 0.603390 -2.300098 -2.054698 -3.856418 -2.065849 3.411039 -0.992663 2.110100 -0.642455 -0.758004 -8.582543 3.720794 2.423558 -2.389961 -2.275541 3.843565 -2.558679 -0.423550 -1.851452 -1.482355 -0.222742 -0.201668 2.329804 3.503682 1.098589 1.019756 1.711526 -0.097605 7.543765 -4.095587 1.910225 1.252360 -0.360410 -1.828120 1.268614 -0.260789 0.374290 0.991261 0.872637 -0.849289 -4.007665 0.155763 -3.014645 -3.193540 3.169458 -0.378084 -0.960239 -2.152450 -0.567133 -4.073924 -1.011025 -0.191880 3.374391 4.446855 -3.714946 2.112907 -0.841578 -0.232069 -0.304329 0.020527 0.791533 1.946217 0.411471 0.509629 -2.281502 -3.551152 0.937183 0.187993 -0.022996 -0.978813 -6.391859 3.278660 -4.558407 -4.087887 -0.002262 2.475109 -2.467011 -1.920696 0.053344 0.367677 1.331665 -2.053331 -3.187028 -0.795560 1.400502 0.518611 0.255011 0.546509 -1.410333 -0.966235 -2.705113 -4.889213 2.022339 -1.039281 -0.677593 -1.965741 3.125058 -1.807051 -0.416159 1.163518 3.220792 -2.541241 3.840183 -1.186485 1.666300 0.491352 1.357616 -1.590947 -0.913088 2.309584 4.268942 -1.933494 -0.257214 -2.986829 0.454602 -3.624373 -1.032610 -0.742329 1.942062 1.800914 -3.573781 -2.714045 -0.064914 -0.841786 -5.676562 0.281313 -2.335169 -2.360506 1.375087 2.196890 3.191665 3.025373 5.390624 -1.879563 1.669039 0.380629 -2.160820 3.289637 -0.792748 3.171486 -2.099596 -2.661947 0.531120 -0.954818 2.027242 -0.880286 1.193122 0.084250 -5.040238 -1.313558 0.004435 1.913389 -0.749311 2.149990 3.740640 1.973391 -4.418483 0.885425 3.400062 -2.391082 -0.327407 1.052112 -3.570283 0.952364 1.703567 -0.771380 3.758695 0.506256 -2.064566 1.677678 -0.996866 1.474986 -2.599514 -0.518459 -1.975769 -1.064646 -2.884815 -0.365093 -1.355398 -1.570138 -1.802033 -3.470798 4.016772 -4.096401 -3.464294 4.549205 0.059411 2.384510 -6.027617 4.739966 -2.299012 3.199410 -0.596205 0.752950 -0.319499 0.499384 -3.766198 1.647261 0.271396 -1.197521 2.457607 5.681952 2.346359 1.365054 -1.093640 4.696193 -1.594882 4.217757 -1.902216 3.735101 -1.561536 -3.972896 1.158951 -0.469027 -2.056081 -1.678221 2.581330 4.282399 1.991493 2.585902 3.480773 2.779690 5.327117 -1.477702 2.601096 -0.948847 1.861461 -1.116602 -1.604630 2.418357 2.176552 -1.084064 2.140924 -5.082892 -7.072766 -4.281309 -5.968200 2.150421 -2.992940 0.837788 -1.410230 -0.514485 -4.789053 -2.601293 0.991202 -1.116577 4.310278 2.958147 0.879085 2.652765 4.698513 -3.277458 0.635955 1.684040 2.951800 0.833996 -1.489656 -4.204246 3.498180 -2.830518 0.211195 5.180516 -1.940481 1.788466 -0.864630 2.777071 -3.468423 5.204653 0.643398 -2.067414 4.652301 2.862938 3.309809 3.053184 -1.603618 -PE-benchmarks/topological-sorting.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/topological-sorting.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/topological-sorting.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/topological-sorting.cpp__std::deque >::push_back(int const&) = 1.593463 -1.166333 8.946647 6.090056 -2.288172 0.480470 0.218929 -5.200769 3.808786 0.552082 -1.360632 1.621589 -2.347515 1.785137 -2.374203 4.329366 -7.198459 -1.993012 -2.138291 -4.974245 -2.313273 -0.977687 2.197086 -0.175750 4.352460 2.593934 -2.786249 -0.438557 -1.577702 -5.852482 1.733001 -1.333336 1.825488 -0.457182 1.056162 -8.636688 5.994516 3.347376 -2.592343 -3.502420 3.138258 -2.202842 -0.816478 -1.757429 -1.248207 1.100804 -0.341950 3.310872 3.861444 2.431192 0.775373 2.470590 2.774771 8.088335 -2.794443 2.601915 1.768350 -1.195049 -1.520422 1.262156 0.664894 0.704287 0.842898 0.343028 0.831651 -5.943292 -1.010756 -2.098337 -1.954910 3.561836 -0.429446 -2.952038 -3.358273 -2.114876 -3.793377 -1.008813 -6.668971 4.838956 4.875857 -4.417865 1.871888 0.018820 -0.401268 0.493742 1.081727 0.495148 3.973455 1.474964 0.447646 -0.785831 -0.343859 -1.853416 2.598834 -1.725572 -2.538402 -8.504877 3.098456 -6.679274 -4.661239 1.391340 4.019662 -2.944132 -1.060593 -1.509153 1.108394 0.977286 -1.756993 -2.722388 0.883214 1.108914 0.603428 -0.822961 -0.420650 -1.436518 -0.277914 0.799034 -6.082285 2.894370 -0.304665 0.531208 -0.981497 3.438950 1.156881 -1.691278 -0.279184 2.927979 -2.421699 4.763696 -1.951497 3.919907 -1.237998 4.143481 -1.158231 2.913908 3.251807 -1.515583 -1.722372 -0.034859 -2.881736 1.430170 -4.268799 1.116858 -2.435219 3.617732 3.047264 -2.270710 -3.668084 -1.145722 -3.331212 -5.458789 0.972683 -2.223423 -4.251154 1.160877 3.195630 3.236203 3.802675 2.138866 -3.008873 -0.048528 -0.477222 -0.221128 4.512918 -0.662851 3.185596 -2.539516 -1.822817 1.873150 0.183421 1.971576 -0.250374 0.957592 1.266634 -4.232468 0.288521 2.480283 2.362800 -0.684439 3.244188 4.325834 5.123552 -2.174193 0.391694 3.615740 -2.717778 -0.487702 1.107905 -3.792534 1.119362 1.870916 2.162810 4.863802 0.214207 -0.504185 0.940656 -0.696033 1.153630 -2.212539 -0.377839 -2.066297 -0.891948 -1.520342 1.149230 -2.183803 -1.091180 -2.382988 -3.686429 5.059603 -6.393221 -2.460428 6.357650 -2.706076 2.097673 -4.451757 5.736010 -3.041827 2.607503 -0.585878 -0.060605 0.095510 -1.275160 -5.450257 2.241607 1.306902 -0.694965 1.072348 4.987766 2.733828 0.657312 -1.719648 4.643005 -3.161462 5.576174 -2.032311 4.997238 -1.736454 -1.479398 -0.582018 -0.487461 -3.179676 -2.493532 2.344905 3.668636 0.093039 3.076405 2.129731 2.029825 5.558533 -2.675757 4.637244 -1.323560 0.547901 -2.243762 -2.326344 3.250180 1.906186 -0.828987 2.035911 -6.150291 -5.113319 -7.603831 -3.034502 0.621765 -1.746883 1.738177 -2.057982 -1.489706 -3.639362 -4.159517 5.447941 -0.848046 0.315766 3.270357 0.758701 2.777601 4.447259 -1.292762 0.760196 -1.284584 1.315412 1.950744 -1.643839 -4.240785 5.560253 -2.686957 -0.191529 6.411920 -2.672693 2.318336 -0.182711 2.625331 -3.586745 4.195495 0.398582 -2.351956 3.448009 5.341713 3.253245 1.041452 -2.622585 -PE-benchmarks/topological-sorting.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.454650 -1.415683 10.976578 7.255382 -3.804405 0.502429 -0.134304 -6.096897 4.514725 -0.756527 -2.126724 1.616095 -2.715706 2.150751 -3.379919 4.586684 -9.730788 -2.266901 -2.670288 -5.951044 -2.654838 -1.081067 2.249859 0.236066 5.019292 4.105398 -2.994607 -0.145625 -1.410499 -5.544933 2.683105 -1.665808 1.969327 0.319550 1.764972 -10.836451 7.062670 3.725023 -3.131663 -4.372030 3.567404 -3.013502 -1.119229 -3.084151 -2.172824 0.984731 -0.479461 5.362917 4.278175 2.278790 -0.438924 2.918503 3.109540 10.547407 -3.114105 2.910838 2.360055 -1.338953 -1.541212 1.363771 0.843809 0.950307 0.642134 0.313755 1.130949 -7.186633 -1.302000 -3.136528 -1.757502 4.399982 -0.343523 -3.023099 -4.151539 -2.594822 -5.473251 -1.058392 -9.272228 6.882896 5.891541 -6.045330 1.969058 0.106010 -0.267667 0.971719 1.292389 0.866243 5.196173 1.878881 0.842668 -0.639781 -1.080469 -2.405251 3.415476 -3.988703 -3.184524 -11.911763 3.691466 -9.510895 -5.388325 1.558363 4.887567 -3.856877 0.255160 -2.085120 1.276940 1.001942 -2.240618 -2.888739 1.490080 1.450741 0.812503 -0.662011 0.059471 -0.542774 0.293062 0.356621 -7.459761 3.878942 -0.319011 1.035126 0.110516 4.322404 1.560148 -2.280046 -0.321569 3.133897 -2.942893 6.390570 -2.349293 4.195099 -1.934927 5.250187 -0.123590 4.267122 3.930486 -1.573625 -1.994102 -0.005271 -2.916643 1.949661 -5.144676 0.515531 -2.961662 3.751728 2.258839 -2.956727 -4.310566 -1.869561 -4.771743 -6.606567 0.709044 -2.577229 -5.764386 2.412922 3.897589 5.200979 4.610201 1.907626 -3.710278 -0.278202 -0.764968 -0.022601 5.140072 -0.420958 3.615145 -2.912101 -2.018237 2.166956 -0.615294 2.919707 -0.318926 0.918422 1.416262 -5.102035 0.574570 3.252268 3.549825 -0.663687 4.304610 5.583613 4.061064 -2.818215 0.540315 4.372359 -3.580682 -0.774712 1.548701 -4.427533 1.596667 2.331238 2.659634 5.359664 0.116670 0.037194 0.992298 -0.838801 1.322299 -2.515193 -1.312741 -2.311772 -1.577516 -2.207469 2.501725 -2.823775 -1.277395 -3.255649 -5.235043 6.070013 -9.243079 -2.429947 7.846749 -3.052032 3.185360 -4.757670 6.318627 -3.651929 3.976637 0.106372 -0.053933 0.223424 -2.543436 -6.797930 2.544456 1.575578 -0.883807 0.722679 5.344161 3.495144 0.765880 -1.826024 5.834008 -4.185477 6.854226 -2.718956 5.573084 -2.148272 -2.052982 -0.470756 -0.566989 -3.962162 -2.864223 3.707194 5.214511 -0.186018 4.966719 3.142705 2.507839 6.464460 -3.113860 4.872305 -2.046053 0.273299 -2.907062 -2.798664 3.737025 2.544369 -1.054147 2.086506 -7.591416 -6.886629 -11.035045 -2.774761 0.726734 -3.519629 1.897612 -2.469416 -1.708517 -4.401678 -5.165743 6.194460 -1.260434 -0.425833 4.075363 0.688412 3.473183 5.442921 -1.783181 0.887254 -0.393070 2.205146 2.470287 -1.328393 -6.104753 6.999043 -3.467096 -0.335680 8.607335 -3.500144 2.988309 0.005216 3.664833 -4.310487 5.109443 0.695070 -3.822570 3.524320 7.084516 3.080384 2.473430 -3.327407 -PE-benchmarks/topological-sorting.cpp__std::deque >::size() const = 0.529537 -0.209094 1.822897 1.211108 -0.646151 0.072147 -0.161702 -0.998133 0.734940 -0.067615 -0.431919 0.276326 -0.355492 0.352911 -0.603589 0.833457 -1.538249 -0.275203 -0.437378 -0.967629 -0.492000 -0.104607 0.273583 -0.048828 0.836137 0.859317 -0.425506 0.121098 -0.101518 -1.061425 0.243104 -0.229972 0.173298 0.092486 0.435287 -1.274429 1.160046 0.641950 -0.511691 -0.716766 0.506598 -0.392648 -0.166062 -0.431208 -0.143459 0.267408 -0.050281 0.935811 0.653055 0.497173 -0.023421 0.419421 0.655512 1.531542 -0.348153 0.495476 0.463582 -0.156952 -0.142828 0.229046 0.157114 0.124184 -0.067458 -0.055624 0.283384 -1.164925 -0.354162 -0.464640 -0.040132 0.665927 -0.166959 -0.630720 -0.756648 -0.649770 -0.803376 -0.160377 -2.438466 1.090704 0.900966 -1.078516 0.237614 0.118913 -0.009151 0.227806 0.228157 0.110872 0.779000 0.359099 0.142295 0.122020 0.158236 -0.457427 0.650011 -0.827789 -0.643900 -2.016666 0.649211 -1.666810 -0.876218 0.351494 0.838186 -0.606186 0.339365 -0.242117 0.088199 0.090434 -0.396198 -0.375425 0.469572 0.171716 0.279217 -0.063339 -0.002909 -0.016655 0.112973 0.312029 -1.254428 0.722625 -0.014612 0.228627 0.161386 0.685494 0.544360 -0.382898 -0.110532 0.411677 -0.436043 1.203171 -0.300620 0.746236 -0.629340 1.099138 -0.107606 1.077274 0.709741 -0.737863 -0.374961 0.194662 -0.361451 0.293120 -0.810412 0.180999 -0.686302 0.578224 0.359860 -0.450580 -0.763239 -0.351013 -1.063399 -0.993448 0.175563 -0.345897 -1.038863 0.247389 0.599493 0.951946 0.719291 0.160395 -0.612606 -0.379631 -0.182077 0.064067 0.757640 0.020186 0.586801 -0.469885 -0.239995 0.421968 -0.043178 0.365255 0.098160 0.129357 0.322407 -0.788614 0.422419 0.731365 0.598639 -0.216344 0.775400 0.926626 0.473832 -0.126196 -0.039382 0.661898 -0.573146 -0.157789 0.275049 -0.664815 0.305278 0.345357 0.683703 0.767627 0.048382 0.322153 0.171587 -0.221491 0.229339 -0.348640 -0.261531 -0.346049 -0.333056 -0.273313 0.740687 -0.458281 -0.115260 -0.424984 -0.862562 0.949086 -1.535304 -0.046376 1.207601 -0.459033 0.427140 -0.350326 0.952714 -0.569178 0.686947 0.163378 0.008757 0.091322 -0.544810 -1.014818 0.318805 0.254698 -0.027227 -0.064056 0.671516 0.534657 0.002450 -0.247011 0.931551 -0.885395 1.141046 -0.374792 0.853723 -0.339486 -0.215016 -0.057439 -0.050315 -0.773448 -0.528443 0.527837 0.911233 -0.213618 0.799046 0.378516 0.197320 1.033284 -0.555100 0.812456 -0.305627 -0.011900 -0.613372 -0.513557 0.642952 0.383887 -0.133466 0.160493 -1.199504 -0.919205 -1.920908 -0.138935 0.020580 -0.609694 0.284374 -0.441915 -0.374615 -0.437914 -0.951445 1.366297 -0.214224 -0.456695 0.578171 0.085719 0.577656 0.846698 -0.128479 0.205932 -0.191891 0.274467 0.493765 -0.128065 -0.903547 1.174088 -0.512702 -0.230575 1.390841 -0.589137 0.510320 0.181272 0.515788 -0.688259 0.644713 0.040569 -0.609528 0.508119 1.386978 0.528995 0.326774 -0.541702 -PE-benchmarks/topological-sorting.cpp__std::deque >::max_size() const = -0.060684 -0.242359 0.738344 0.473410 -0.178748 0.088897 0.126817 -0.321186 0.369198 -0.274256 -0.171404 0.073556 -0.459349 0.123200 -0.406863 0.083453 -0.625894 -0.380420 -0.189902 -0.345308 -0.128666 -0.227405 0.176959 0.144704 0.316640 0.303078 -0.238947 -0.035086 -0.596292 0.013104 0.351697 -0.094790 0.201794 0.176148 0.063672 -0.713797 0.341946 0.382169 -0.206700 -0.399274 0.304938 -0.458476 0.039302 -0.379317 -0.068254 0.042176 0.000734 0.287233 0.307270 -0.017211 -0.057894 0.096085 -0.107515 0.716243 -0.362575 0.256861 0.235149 0.005446 -0.100967 0.050295 0.023278 0.035807 0.118039 0.114434 -0.241600 -0.418390 -0.080330 -0.390590 -0.244398 0.348045 -0.064056 -0.017954 -0.330669 -0.177352 -0.578461 -0.123543 -0.408217 0.450285 0.527992 -0.508423 0.293008 -0.014256 0.145100 0.060108 0.182029 0.113102 0.321353 0.079209 -0.014665 -0.075723 -0.490448 0.073347 0.044521 -0.152517 -0.193512 -0.614260 0.328009 -0.760649 -0.497402 0.018822 0.194140 -0.230525 -0.028037 0.159540 0.016704 0.195511 -0.224275 -0.346867 0.068977 0.202233 0.094793 -0.001713 0.109226 -0.010719 -0.077981 -0.424329 -0.578562 0.230950 -0.022720 -0.078573 -0.009787 0.470348 -0.206172 -0.033630 0.054699 0.156716 -0.240070 0.624346 -0.096176 0.084333 -0.126197 0.080099 -0.256649 0.042721 0.241949 0.506301 -0.337329 0.066271 -0.145990 0.037160 -0.352782 -0.254709 -0.168892 0.144100 0.056562 -0.454643 -0.277190 -0.193253 -0.297079 -0.626540 -0.041567 -0.204594 -0.247011 0.218702 0.332766 0.606711 0.329979 0.695463 -0.242018 0.033708 0.022110 -0.231211 0.344356 0.088992 0.320809 -0.251966 -0.297114 0.184381 -0.146712 0.230244 0.027888 0.106105 0.005935 -0.523612 -0.021698 0.213460 0.298594 0.010915 0.466968 0.457555 -0.243660 -0.488252 0.140517 0.302320 -0.212625 -0.030297 0.095383 -0.383972 0.231915 0.187030 -0.019886 0.325502 0.011574 -0.100667 0.117421 -0.117338 0.237562 -0.362005 -0.103781 -0.225858 -0.137550 -0.417555 0.200526 -0.167970 -0.236487 -0.239024 -0.437898 0.501104 -0.467446 -0.287645 0.422769 0.149372 0.394976 -0.507123 0.202474 -0.298674 0.628024 0.052930 0.090355 0.033682 -0.092606 -0.352575 0.075007 0.127525 -0.170538 0.130975 0.400044 0.301585 0.082713 -0.020822 0.487685 -0.190761 0.402567 -0.232008 0.300013 -0.102341 -0.351550 0.243550 -0.121579 -0.155961 -0.069598 0.254705 0.662049 0.292981 0.463669 0.428226 0.268874 0.488104 -0.196685 0.090288 -0.133170 0.223405 -0.196628 -0.202545 0.122736 0.283344 -0.053669 0.058721 -0.587946 -0.866147 -0.559959 -0.534622 0.213216 -0.473272 -0.009089 -0.024896 -0.032317 -0.501191 -0.342402 0.147103 -0.203145 0.599699 0.179757 0.061677 0.337362 0.485783 -0.406493 0.010441 0.342607 0.353623 0.050380 0.006126 -0.598789 0.485440 -0.369439 0.020184 0.682153 -0.327425 0.228461 0.057206 0.410018 -0.380010 0.622980 0.146052 -0.435875 0.412282 0.428403 0.407147 0.414338 -0.266229 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.687100 -1.333181 4.115750 2.850164 -0.762845 0.797575 -0.084913 -1.509203 0.857765 0.687100 -0.817709 1.641246 -1.186674 0.436554 -0.699167 1.232205 -2.774156 -0.871077 -0.815565 -1.378721 -0.743432 -0.556011 -0.309291 1.402620 1.785095 1.171675 -1.203870 0.446523 -1.519690 -2.916148 -0.467844 -0.265004 0.843305 -0.731019 1.623815 -2.779829 2.459511 2.171303 -0.432769 -2.295226 1.025120 -0.611915 -0.298070 -0.425159 -0.596368 1.038497 0.751075 1.355669 1.073475 1.153828 -0.565106 0.413740 1.744727 2.948743 0.067788 1.475827 1.749105 -0.660641 0.397878 -0.136631 0.034904 -0.580030 -0.040139 -0.318879 0.258251 -1.964581 -0.261394 -0.250838 -0.164266 1.114030 0.178326 -1.497351 -1.560662 -1.511049 -2.412743 -0.180612 -2.408444 2.039329 2.328397 -1.780996 1.345707 0.426945 0.355442 0.876876 1.133632 0.222043 1.366177 0.816405 -0.271016 0.368401 -0.532612 -1.018671 0.739885 -0.581817 -1.579425 -3.375763 1.180968 -3.718048 -2.098631 1.282041 0.885328 -1.667356 0.126625 -0.922914 0.424753 0.660353 -0.711849 -1.187857 0.373568 0.952030 0.217355 -0.399598 0.411568 -0.173114 0.122275 0.577504 -2.393495 1.491416 0.849258 0.051435 -0.072880 1.891397 0.705318 0.504542 -0.196998 1.035224 -0.719930 1.924316 0.403619 1.396100 -1.312652 1.024098 -0.479271 1.275925 0.925541 -1.470894 -1.100222 0.115073 -0.402494 0.911177 -0.630510 1.123441 -1.269881 1.872918 0.723562 -0.809262 -1.572977 -1.388747 -2.291232 -1.549182 0.235827 -0.445087 -2.532989 0.705784 1.296627 0.885676 0.755322 0.574968 -0.995944 -0.577809 -0.179764 -0.158338 1.062441 -0.726065 0.946966 -1.225177 -0.806734 1.256529 0.557164 1.086629 0.200511 0.067597 0.949773 -1.055814 0.499406 1.262697 1.023800 -0.166914 2.188665 2.093128 2.008510 0.076360 -0.643169 0.827260 -1.354201 -0.330717 0.251311 -1.541786 0.577253 0.784319 0.975961 2.565513 -0.032453 -0.107909 1.411004 -0.201443 0.424500 -1.075714 0.455176 -1.067239 -0.265313 -0.533638 0.417351 -1.115937 -0.318010 -1.718530 -1.635981 2.498507 -2.991981 -1.095677 1.820634 -0.567283 1.131127 -1.819960 2.157216 -1.071289 1.758345 0.848883 -0.116730 0.413734 -0.718564 -1.757260 0.637299 0.703116 -0.591412 0.331819 1.130957 0.849057 -0.223651 -0.279462 1.540083 -1.400314 1.666176 -1.103637 1.267875 -0.803563 -0.137528 -0.603465 -0.128461 -0.885601 -0.504726 0.508646 0.240983 -0.358538 1.029104 0.355786 1.189602 1.373166 -0.844128 1.237613 -0.873323 0.594496 -1.651150 -1.220284 0.489885 1.267004 0.430916 0.770658 -2.982127 -1.639880 -3.653346 -1.223366 -0.383264 -0.356677 0.572772 -0.253444 -0.908294 -1.548041 -2.124440 3.189071 0.002945 -0.084189 1.658733 0.224740 1.577514 1.405287 0.221884 0.036758 -0.434533 0.490284 0.524618 -0.202437 -1.509196 1.983123 -1.553910 0.151251 2.856849 -1.289956 1.467838 -0.131472 0.522219 -2.200588 1.957835 0.582652 -1.920497 0.488620 2.736595 1.337992 -0.674137 -1.316162 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_node() = 0.030755 -0.480498 1.775501 1.157439 -0.299968 0.104022 0.442571 -0.753126 0.726936 -0.107449 -0.306937 0.362753 -0.827519 0.307591 -0.779719 0.596256 -1.313383 -0.703520 -0.337876 -0.828649 -0.307838 -0.308581 0.538169 0.106870 0.932264 0.369386 -0.555913 -0.433870 -1.006593 -0.588685 0.542606 -0.272749 0.484767 -0.088578 -0.015416 -1.825389 0.914060 0.814705 -0.525148 -0.850298 0.815229 -0.705478 -0.024539 -0.540458 -0.195397 0.086435 0.096436 0.632970 0.718730 0.359653 0.091195 0.374420 0.271978 1.836414 -0.720606 0.572589 0.505752 -0.101413 -0.305582 0.172219 0.118365 0.005621 0.248762 0.113819 -0.111243 -1.059628 -0.282376 -0.668416 -0.540054 0.630405 -0.102715 -0.215769 -0.696376 -0.256893 -0.977618 -0.242811 -1.006935 0.935533 1.119755 -1.034167 0.650679 -0.027963 0.091705 0.048712 0.172946 0.251447 0.458975 0.246294 0.078997 -0.329817 -0.651907 0.043869 0.232307 -0.221174 -0.444578 -1.663078 0.808726 -1.191785 -1.057374 0.170087 0.600705 -0.602290 -0.100596 0.039464 0.026833 0.476820 -0.543365 -0.701039 -0.003720 0.250690 0.233879 -0.128500 0.108840 -0.258776 -0.183110 -0.482369 -1.238027 0.538033 -0.069273 -0.148111 -0.245288 0.817142 -0.160056 -0.066536 0.052836 0.569462 -0.517706 1.109007 -0.175043 0.505937 -0.085716 0.451583 -0.576574 0.198659 0.688508 0.667384 -0.605128 0.131342 -0.544471 0.193465 -0.680038 -0.147070 -0.261379 0.615050 0.437485 -0.811206 -0.692165 -0.352919 -0.440902 -1.165506 0.078400 -0.469569 -0.558076 0.344496 0.687287 0.794766 0.737256 1.179817 -0.555731 0.156823 0.048143 -0.369086 0.815171 -0.032003 0.699008 -0.546920 -0.563595 0.325039 0.002604 0.477439 -0.082269 0.344043 0.177083 -1.060130 -0.016943 0.296921 0.547046 -0.244598 0.813692 0.910803 0.365444 -0.824560 0.098552 0.690564 -0.566074 -0.088077 0.227904 -0.918790 0.377098 0.368113 0.042452 0.867359 0.106059 -0.325551 0.417776 -0.292222 0.290984 -0.589687 -0.038034 -0.507592 -0.366835 -0.583350 0.237401 -0.365784 -0.396410 -0.512816 -0.776210 1.113032 -1.076072 -0.561522 0.892988 -0.040339 0.447453 -1.210101 1.210992 -0.662868 0.818301 -0.028844 0.049416 0.044717 0.054012 -0.944537 0.213671 0.281405 -0.307985 0.405964 1.128423 0.615022 0.122585 -0.199251 1.056291 -0.494455 1.007282 -0.416960 0.817570 -0.324437 -0.703740 0.189497 -0.150733 -0.436320 -0.319049 0.504707 1.148171 0.307455 0.712981 0.732886 0.561644 1.223540 -0.507450 0.623088 -0.285147 0.565059 -0.402175 -0.439074 0.408836 0.517815 -0.118213 0.435034 -1.313423 -1.534802 -1.194281 -1.042562 0.409548 -0.655671 0.198517 -0.324919 -0.164487 -1.131400 -0.828958 0.476538 -0.327570 0.621257 0.663502 0.158187 0.688581 0.894005 -0.587361 0.103562 0.224214 0.619222 0.295391 -0.282096 -0.932604 0.934243 -0.799345 0.001989 1.357960 -0.566609 0.454338 0.020548 0.717556 -0.810192 1.248261 0.206115 -0.723921 0.904349 1.037311 0.891580 0.402366 -0.544996 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.017259 -0.516354 2.444010 1.752207 -0.748119 0.128804 0.261709 -1.135006 1.047104 0.183289 -0.239618 0.362467 -0.856039 0.408333 0.154505 1.184749 -2.101426 -0.576838 -0.370101 -1.267324 -0.602177 -0.354705 0.592229 -0.000952 1.116477 0.840833 -0.679718 -0.415490 -0.232077 -1.208033 0.799511 -0.520477 0.875437 0.546708 0.228131 -3.673165 1.502544 0.701616 -0.738170 -1.083403 0.830393 -0.672739 0.235986 -0.649163 -0.642847 0.333467 0.157608 0.742874 1.087631 0.613297 0.061202 0.288068 0.797111 2.489906 -0.787803 0.612885 0.481834 -0.664643 -0.628757 0.086323 0.224918 -0.010293 0.579768 0.199406 0.008546 -1.619941 -0.312111 -0.946682 -1.077404 0.854550 0.051207 -0.500285 -1.015315 -0.590238 -0.786925 -0.561235 -1.767675 1.498803 1.525308 -1.372300 0.833113 0.048929 -0.042857 0.202498 0.382589 0.337096 1.035548 0.333731 -0.055793 0.047751 -0.038714 -0.805585 0.731105 -0.281813 -0.426458 -2.199450 0.686979 -1.007051 -1.226607 0.571392 0.975185 -0.504076 -0.879359 -0.720843 0.376725 0.661867 -0.740643 -0.941825 -0.140573 0.145079 0.075209 -0.235830 -0.318273 -0.254225 -0.404454 -0.335172 -1.694840 0.629267 -0.068169 -0.069803 -0.269917 1.050112 -0.080050 -0.290819 -0.021029 0.802228 -0.822342 1.726823 -0.330050 0.926614 0.030859 0.599483 -0.515807 0.277599 0.889627 0.621062 -0.246176 -0.564849 -0.892459 0.323847 -1.156655 0.125707 0.154149 1.185902 1.428677 -0.468525 -0.971543 -0.411111 -0.724076 -1.868713 0.372790 -0.808578 -0.293124 1.030322 0.933697 0.754465 1.095529 0.919030 -1.022712 0.396091 -0.458614 -0.234167 1.290953 0.528547 0.999516 -0.716450 -0.371336 0.383978 0.129101 0.714163 0.072247 0.035594 0.369835 -1.132838 -0.228875 0.617280 0.738097 -0.196946 0.712932 1.108879 2.098591 -0.719553 0.058348 0.966948 -0.583112 -0.142997 0.433281 -1.045468 0.399074 0.450141 -0.210974 1.135321 -0.033755 -0.504105 0.227956 -0.262721 0.205612 -0.600507 -0.017284 -0.571448 -0.074257 -0.608201 0.076804 -0.843937 -0.550589 -0.686031 -0.635421 1.563065 -1.525459 -0.701768 1.527826 -0.818204 0.720949 -1.554404 2.271573 -0.923783 0.768626 -0.800681 -0.454733 -0.081609 -0.171152 -1.192580 0.531901 0.393911 -0.108053 0.014818 1.647272 0.871216 0.121928 -0.357859 1.390196 -0.421272 1.469543 -0.397316 1.423386 -0.569344 -0.021111 -0.039219 -0.170525 -0.548039 -0.431162 0.547116 1.208367 0.316894 0.755324 0.738675 0.716075 1.355774 -0.737450 1.064349 -0.282057 0.712716 -0.531442 -0.519396 0.670038 0.946484 -0.212921 0.557700 -1.697050 -1.587901 -1.700949 -0.752306 -0.182774 0.336123 0.418233 -0.380966 -0.166498 -1.127647 -0.860389 1.145876 -0.385094 0.410993 0.703506 0.202116 0.994589 1.301438 -0.412100 -0.381008 -0.096022 0.296803 0.423576 -0.107829 -1.359455 1.459400 -1.056782 0.066097 1.694536 -0.719968 0.410126 -0.105061 1.443322 -1.010177 1.474115 0.174555 -0.706747 1.159278 1.578318 0.906709 0.266310 -0.694533 -PE-benchmarks/topological-sorting.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.270414 -2.492304 5.492200 3.919477 -0.739328 1.947948 -0.280389 -1.371749 -0.351708 1.005609 -0.326199 3.064427 -1.735976 0.274850 -0.364393 0.640762 -2.845681 -0.892202 -1.393972 -1.555931 -0.210261 -0.451997 -1.300817 3.543338 2.041207 0.801199 -1.866872 0.472538 -3.408384 -3.724195 -0.930377 0.085516 2.030322 -1.817752 2.267362 -4.924084 3.036481 3.799113 -0.123159 -3.391007 1.686860 -0.546455 -0.257637 -0.040312 -2.386447 1.453072 1.054403 -0.839224 0.927469 1.189885 -1.282809 0.796531 2.863811 3.592288 0.605083 2.123586 2.465114 -1.463164 1.119433 -1.042478 -0.665172 -0.882054 0.163109 -1.244172 0.197390 -2.542012 -0.075574 0.417342 -0.620458 0.597071 0.210263 -2.064551 -1.249330 -1.755146 -4.055402 -0.370797 1.177272 2.091026 2.601555 -1.478752 2.353829 -0.097677 -0.286667 1.699053 2.215955 0.867082 0.628887 1.045250 -0.094854 0.983918 -0.476897 -0.197746 0.709198 1.096563 -2.662111 -3.360836 1.701377 -4.090260 -2.362268 2.368645 0.472565 -2.837004 -0.865463 -2.696310 -0.220939 1.547977 -1.370649 -1.703568 -0.183510 2.491931 0.893920 -0.896467 0.519391 -0.461321 0.158420 -0.255113 -2.142452 2.543340 1.776576 0.171068 -0.741694 2.968920 0.442754 1.220095 -0.272284 2.013411 -1.695356 2.010133 0.802848 1.540229 -2.392128 -0.079906 -0.338291 -0.663464 0.616492 -0.961008 -1.856464 -1.250222 -0.833497 1.247885 0.663889 2.081632 -0.404553 2.533658 1.444206 -0.306949 -1.163670 -2.029497 -2.757639 -2.249928 -0.763292 -0.118414 -3.321985 2.662568 1.507021 -0.234322 0.477371 1.090580 -0.295606 -0.546810 -0.211995 -1.534328 1.226448 -1.671017 0.672344 -1.601799 -1.504936 1.780503 0.586853 2.429697 0.328300 0.529323 1.169685 -0.192367 0.568189 1.239828 1.382219 0.107379 3.204284 3.192393 3.669743 0.844878 -1.528389 0.329306 -2.729305 -0.136733 -0.275087 -1.621475 -0.300826 1.651268 -1.183562 4.354541 -0.436757 -1.014207 2.816210 -0.258532 0.627407 -1.709536 2.113359 -1.621499 0.397086 -0.951289 -2.126184 -1.435130 -0.655559 -3.537486 -2.563011 3.624441 -4.633870 -1.990763 1.300292 0.538948 1.024685 -3.525090 2.695036 -1.241336 3.052654 1.566470 -0.374147 0.548235 -0.000484 -2.319554 0.891930 0.928660 -1.942865 0.651274 1.796833 0.985751 -1.003151 -0.745510 1.800451 -1.287774 1.667217 -2.144040 1.414352 -1.214284 0.133882 -0.802654 -0.123683 -0.935020 -0.605358 0.425790 -1.650356 -0.554416 1.051408 -0.777334 2.643606 1.134406 -0.232511 0.915563 -1.526557 1.062591 -1.942945 -1.623991 0.025514 3.153215 1.979484 1.014465 -4.205849 -1.931514 -4.651596 -2.245134 -0.002785 1.078437 0.245703 0.589006 -1.279917 -2.882923 -2.940087 4.047807 -0.094994 1.643384 2.533714 0.487861 2.242648 1.378890 0.626897 -0.201875 -0.345836 0.972182 0.709133 0.369758 -1.803479 2.371254 -2.185718 0.401491 3.535167 -1.403199 2.684379 0.092447 -0.218578 -3.426389 3.342661 0.910205 -2.861190 0.668372 3.044488 0.807429 -1.851566 -1.416275 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_S_buffer_size() = -0.120600 -0.182782 0.123618 0.108429 -0.038850 0.046941 -0.015737 0.082391 0.062242 -0.108214 -0.101779 0.045547 -0.164303 0.004410 0.009524 -0.063289 -0.117957 -0.153599 0.019008 0.078293 -0.027991 -0.119320 -0.059672 0.134182 -0.008529 0.242750 -0.047166 0.091548 -0.191973 0.109380 0.057351 -0.025585 0.078812 0.287037 0.116756 -0.110792 -0.027730 0.092824 0.017959 -0.193675 -0.032392 -0.113780 0.106158 -0.157680 0.006283 0.093504 0.112514 0.022994 -0.021948 -0.045695 -0.107068 -0.161203 -0.081574 0.017280 0.051573 0.055943 0.163582 -0.000406 0.053051 -0.133670 0.049618 -0.076244 0.046360 0.093873 -0.166044 0.021487 -0.053510 -0.163128 -0.076568 0.067670 -0.015813 0.109939 -0.125857 -0.152072 -0.127595 -0.037108 -0.179976 0.113218 0.203320 -0.165006 0.148985 0.084507 0.196525 0.052211 0.098918 0.042871 0.057673 0.043289 -0.103376 0.133484 -0.114368 -0.053784 -0.062436 0.002080 -0.030543 0.075100 0.048642 -0.196034 -0.102486 0.063562 -0.077311 0.063060 -0.005346 0.126029 0.009690 0.135041 -0.060387 -0.088667 0.003309 0.011319 0.044246 0.019765 0.038255 0.170587 -0.076573 -0.171976 -0.148087 -0.018907 0.068679 -0.128215 0.146905 0.141552 -0.112458 0.128016 -0.001487 -0.094211 -0.009145 0.304183 0.159992 -0.081805 -0.078464 -0.139883 -0.133690 -0.015104 0.018121 0.264649 -0.133604 -0.015925 0.107133 -0.031579 0.007870 -0.176352 -0.012427 -0.029598 0.070687 -0.113979 -0.113556 -0.179732 -0.182946 -0.190192 -0.030366 -0.082714 0.115821 0.197312 0.086806 0.215137 0.014810 0.346582 -0.112462 -0.003910 -0.039313 -0.094190 -0.048104 0.206059 0.046925 -0.053603 -0.069414 0.113499 -0.006789 0.045457 0.148122 -0.115746 0.012225 -0.090100 -0.025464 0.216400 0.110764 0.057456 0.149989 0.061455 -0.241889 -0.052457 -0.012646 -0.005424 0.065931 -0.036430 0.035629 -0.090675 0.160704 -0.035383 -0.040639 -0.043480 -0.019443 0.005721 0.060877 -0.057063 0.067420 -0.120215 0.004380 -0.053442 0.041834 -0.191599 0.142362 -0.066164 -0.062620 -0.013211 -0.022540 0.151475 -0.011708 -0.033165 -0.048723 0.162486 0.212669 -0.065791 -0.126454 -0.051241 0.353006 0.028105 -0.021737 0.029705 -0.146095 0.133114 -0.105776 0.068957 0.008908 -0.121514 -0.034701 0.049156 -0.062077 0.128991 0.074343 0.050754 0.002290 0.013760 -0.062804 0.019533 0.013456 0.138289 -0.055916 0.077616 0.093659 -0.038723 0.216231 0.158229 0.114685 0.170275 0.023702 -0.013201 -0.063034 -0.175755 0.012721 0.216680 -0.114761 -0.031309 -0.134461 0.182024 -0.021258 -0.099931 -0.088366 -0.256494 -0.096306 -0.116697 -0.127987 -0.061689 -0.046661 0.075139 0.024144 -0.006162 -0.039371 0.060038 -0.069061 0.339919 -0.066448 -0.014135 0.161042 0.095985 -0.125894 -0.150625 0.201321 0.068805 -0.072643 0.186954 -0.191583 0.044055 -0.136963 -0.004908 0.160403 -0.124659 0.028476 0.077509 0.224321 -0.089124 0.228332 0.115996 -0.221120 0.054276 0.077247 0.127462 0.116837 -0.098003 -PE-benchmarks/topological-sorting.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.086689 -0.647507 2.610509 1.578740 -0.225793 0.001111 1.312915 -1.082872 1.328305 0.393354 -0.372993 -0.093612 -1.503861 0.259452 -0.861198 0.937035 -1.724315 -1.107209 -0.453712 -1.289787 -0.149468 -0.778609 1.438791 -0.234092 1.514665 0.010542 -0.609245 -1.193247 -1.234959 -0.991098 1.312925 -0.535678 0.926281 -0.052301 -0.564223 -2.862488 1.394007 0.995645 -0.826998 -1.007163 1.336312 -0.592013 -0.148495 -0.348486 -0.278978 0.129648 0.151506 1.049469 1.264107 0.722008 0.660603 0.021980 0.450012 2.680206 -1.464821 0.655209 0.258997 -0.250190 -0.510098 0.566569 0.126469 0.039738 0.419421 0.619069 0.178204 -1.359061 -0.008934 -1.040678 -1.522449 1.180333 -0.350791 -0.098214 -0.889728 -0.000545 -0.840653 -0.140725 -0.889062 1.267012 1.820006 -1.097327 1.180104 -0.030490 -0.148989 -0.455307 -0.580634 0.368062 0.166858 0.176264 0.165357 -0.996523 -1.037554 0.015351 0.164341 -0.034504 -0.290756 -2.005141 1.385408 -0.649137 -1.328890 -0.017550 0.945323 -0.863969 -0.445339 0.294100 -0.100414 0.791616 -0.633957 -1.139923 -0.417509 0.208429 0.147735 0.067479 0.013053 -0.437711 -0.647801 -0.803310 -1.571552 0.372769 -0.650770 -0.577521 -0.654295 0.890407 -0.622544 -0.013246 0.459649 1.183387 -0.655600 1.232802 -0.076379 1.037082 0.747277 0.526115 -0.929387 -0.344570 1.193870 1.690944 -0.242083 0.080028 -1.041391 0.234352 -1.094254 -0.164546 0.084454 0.619131 1.040081 -1.474504 -0.855250 -0.062734 -0.024650 -1.773352 0.214483 -0.966431 -0.277397 0.472826 0.929542 0.882936 1.093885 2.329733 -1.339441 0.620566 0.005216 -0.849311 0.880748 0.073054 1.030873 -0.628320 -0.831921 -0.079191 0.203713 0.649731 -0.387372 0.323227 0.028206 -1.811907 -0.174082 0.108591 0.434320 -0.734435 0.491422 1.271746 0.981938 -1.474437 0.257426 1.400861 -0.610681 -0.285917 0.637016 -1.727356 0.672079 0.334287 -0.248262 0.925902 0.199351 -0.594231 0.774018 -0.917396 0.107667 -0.915752 -0.037993 -0.740039 -0.358081 -1.013495 0.018815 -0.530588 -0.738860 -0.320790 -0.410572 1.382849 -0.751903 -0.942752 1.351687 -0.045474 0.136879 -1.884571 2.558229 -0.848033 0.588499 -0.405875 -0.051473 -0.185807 0.583253 -1.118063 -0.109261 0.110100 -0.205476 1.199856 2.298894 0.923745 0.059730 -0.309546 1.801217 -0.526532 1.443661 -0.599567 1.034372 -0.453735 -1.256609 0.190268 -0.257110 -0.528353 -0.635214 0.573640 1.792964 0.836681 0.535215 1.438525 0.605920 1.944063 -0.430369 1.198213 -0.069651 1.233864 -0.270384 -0.395205 0.840708 0.674742 -0.751822 1.144493 -1.850905 -2.427452 -0.789906 -1.922144 0.380666 -1.030005 0.606236 -0.581594 0.000596 -1.791398 -1.097024 0.055981 -0.353525 0.929429 0.902369 0.156287 0.806734 1.420378 -1.026691 0.222442 0.338099 1.156175 0.289927 -0.822662 -1.002338 1.140718 -1.283239 -0.024373 1.783904 -0.778236 0.407338 -0.484731 1.120232 -1.470391 1.927999 0.362799 -0.471461 1.804272 0.874430 1.524386 0.768842 -0.590012 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.338556 -4.536883 26.586276 17.159617 -8.708451 2.716481 -3.130747 -13.087518 7.451423 1.442992 -5.596294 8.204085 -4.155023 3.620909 -5.691419 10.084986 -21.324185 -3.690660 -5.697174 -12.591882 -7.644485 -1.627259 -0.048165 4.567974 11.403725 11.271962 -7.853982 2.987992 -2.536955 -18.917483 -0.814387 -2.051325 4.024866 -2.334977 9.148279 -22.563598 16.305350 10.839745 -5.037503 -11.792979 6.809340 -3.752655 -2.786025 -3.034249 -5.549208 4.571935 1.134306 10.599316 7.784025 6.416506 -1.846675 5.860105 10.668266 22.334939 -0.818689 7.981788 8.364028 -4.412505 -1.257057 1.071400 1.968979 -1.093132 0.130830 -1.879701 3.423886 -15.409959 -1.983598 -3.220137 -0.517943 8.642903 1.108106 -11.983405 -8.716854 -10.299210 -12.768467 -2.504670 -19.638145 14.474243 12.724299 -12.335527 5.031222 1.888280 0.483494 4.343463 5.538077 0.297868 12.980576 5.024325 0.886034 1.245980 1.327225 -7.265708 7.967244 -6.148201 -9.866757 -25.513586 7.926075 -25.300350 -13.352062 6.595397 10.523411 -10.314328 0.614734 -6.382496 4.074621 1.507042 -3.948307 -5.676998 3.296124 4.782708 0.111047 -2.040295 -0.395992 -1.061068 1.972213 6.954831 -16.541780 11.073491 3.135520 3.856871 0.203468 10.682112 7.332650 -2.074203 -1.608153 7.187677 -5.237028 13.170815 -2.035682 9.594563 -9.908440 12.522647 1.083003 11.647858 6.747689 -13.257270 -6.084744 -2.036161 -4.198072 5.704915 -8.466486 5.959194 -10.630873 12.107356 6.860416 -3.907856 -11.060390 -7.149859 -15.624023 -13.040358 1.374624 -3.749479 -17.287041 4.263286 7.931854 9.111141 7.112621 -0.881298 -6.904892 -2.775274 -1.330092 0.854205 9.387742 -3.471361 7.239948 -7.774388 -3.673300 6.688530 1.183567 7.562555 0.029140 1.132386 5.002520 -7.888533 2.211541 9.843432 8.217024 1.023622 11.372452 13.747039 16.988751 -1.614533 -2.588237 6.907898 -8.910855 -2.838812 2.714453 -8.935917 2.037935 5.589963 8.735540 16.513821 0.071677 1.999379 4.303598 -0.362677 2.787410 -5.949406 0.479159 -5.601506 -1.545048 -1.889166 4.076054 -8.440880 -0.145278 -10.309747 -13.694710 15.256686 -24.263056 -6.762413 17.411971 -7.811660 8.191970 -9.940824 12.802306 -7.019212 9.917750 1.828377 -0.885203 1.182351 -8.481576 -14.269020 7.931082 3.545491 -1.957987 -0.262540 9.302623 6.320953 0.862588 -4.238934 10.969648 -10.713558 14.710464 -6.564916 11.915952 -5.023815 -1.438573 -4.185858 -0.101166 -9.613189 -4.914314 6.147875 4.724700 -3.292646 8.889076 2.408122 6.064299 11.401232 -7.432165 10.926034 -5.016424 0.063014 -8.974905 -8.638329 7.176456 7.371374 0.124432 3.042391 -18.369738 -10.508002 -28.109574 -5.949597 -1.668561 -4.243458 4.626258 -4.244512 -6.536213 -7.356530 -13.023370 22.872831 -0.219939 -1.436206 9.865763 1.450551 9.594424 10.884810 0.244626 2.138487 -4.304434 1.758751 5.433775 -2.505717 -12.297465 15.515759 -7.019535 0.329170 19.291196 -8.273183 9.014805 0.720715 4.336142 -11.785070 9.972223 1.568223 -10.936488 3.512009 17.016970 6.569489 -1.424153 -8.623706 -PE-benchmarks/topological-sorting.cpp__int** std::copy(int**, int**, int**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/topological-sorting.cpp__int** std::copy_backward(int**, int**, int**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.419898 -0.789415 3.800926 1.847715 -0.576490 -0.132586 1.963594 -1.787232 1.767039 -0.235445 -0.327607 0.154859 -2.499750 0.670283 -1.847678 1.134604 -2.661703 -1.873183 -0.772931 -2.063454 -0.910640 -1.209273 2.165608 0.046919 2.169219 0.297657 -1.024608 -1.500605 -2.079253 -1.761460 1.638382 -0.628288 1.119386 -0.171953 -0.353444 -4.175207 1.908217 1.134044 -1.243167 -1.286354 2.218483 -1.030959 -0.155886 -0.510537 -0.206724 0.179448 0.524602 2.016217 2.054591 1.134363 0.982836 0.141823 0.154248 3.858917 -2.152618 1.084121 0.850428 -0.128943 -0.819134 0.736588 -0.262725 -0.390302 0.354029 0.777321 -0.509340 -1.667725 0.230463 -1.734852 -1.939704 1.868040 -0.214616 -0.469647 -1.555816 -0.503391 -1.716069 -0.403185 -1.155797 1.769519 2.917802 -2.085875 1.484309 -0.101896 0.173865 -0.560011 -0.377078 0.240535 0.697154 0.123507 -0.095858 -1.443934 -2.079848 0.253390 -0.410207 0.113329 -0.224027 -3.318967 1.901486 -2.036909 -2.417112 0.042659 1.015478 -1.249015 -0.914223 0.664792 0.274612 0.804511 -1.178166 -2.077377 -0.749700 0.445930 0.131694 0.482387 0.463680 -0.689272 -0.861300 -1.243680 -2.805565 0.751492 -0.636373 -1.032634 -1.179043 1.576934 -0.878559 0.587843 1.081871 1.861725 -1.000232 2.235145 0.253261 0.921530 0.768168 0.601846 -1.375843 -0.137018 1.388472 2.291427 -0.966299 0.266840 -1.442177 0.158615 -1.927193 -0.529949 -0.509317 1.226630 1.348447 -2.357636 -1.896455 0.079013 -0.292468 -2.930227 0.664298 -1.531379 -0.940257 0.136218 0.999911 1.476360 1.379592 3.379013 -1.435005 0.985828 0.236545 -1.144112 1.251456 -0.103233 1.945647 -1.230015 -1.476390 0.108500 0.005859 0.736518 -0.510325 0.280207 0.151579 -3.090489 -0.769945 -0.018996 0.852428 -0.809285 1.017176 1.887675 1.416844 -2.190100 0.173672 1.963250 -1.039171 -0.408790 0.846376 -2.336392 1.054531 0.578027 -0.115784 1.792198 0.448917 -1.047757 1.554984 -0.824693 0.679875 -1.524856 -0.282725 -1.246735 -0.749330 -1.633744 0.166794 -0.688995 -0.852566 -0.464091 -1.237105 2.164801 -1.429127 -1.733127 2.187646 -0.168887 1.237334 -3.295009 3.390684 -1.133491 1.213072 -0.404724 0.380283 -0.284725 0.515256 -1.239100 0.488252 -0.069365 -0.186661 1.678036 3.282058 1.067468 0.702912 -0.088441 2.721493 -0.764212 2.045907 -0.702995 1.771840 -0.886121 -2.182101 0.657996 -0.170368 -0.950783 -0.726610 1.028787 2.623091 1.287559 0.685438 2.294408 1.305235 2.890388 -0.746542 1.470481 -0.384992 1.701873 -0.937205 -0.907811 1.172185 0.976855 -0.974371 1.443486 -2.831154 -3.990305 -1.632930 -3.611752 0.583548 -1.702736 0.842674 -0.855865 -0.207065 -2.481099 -1.348464 0.654998 -0.360482 1.944519 1.667773 0.429501 1.692695 2.764167 -1.608355 0.186701 0.848934 1.650815 0.166425 -0.900258 -1.812526 1.234035 -1.866134 0.195734 2.571412 -1.045094 0.733524 -0.988668 1.825901 -2.295004 2.917102 0.500927 -0.929243 2.811276 1.575232 2.276495 1.486992 -0.807383 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/topological-sorting.cpp__int** std::__miter_base(int**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/topological-sorting.cpp__int** std::__niter_wrap(int** const&, int**) = -0.090136 -0.251670 0.665673 0.509658 0.030368 0.003709 0.406774 -0.220953 0.393630 0.224799 -0.085117 0.051449 -0.526169 0.141520 -0.091674 0.418338 -0.389413 -0.362875 -0.024780 -0.260554 -0.019499 -0.227089 0.454230 -0.126570 0.449235 0.018739 -0.174298 -0.425321 -0.459830 -0.245494 0.303470 -0.225265 0.310698 0.148860 -0.197899 -0.634567 0.340936 0.279286 -0.250621 -0.337564 0.396248 -0.287569 0.157239 -0.177316 0.109437 0.119384 0.123878 0.157670 0.411341 0.270522 0.267063 -0.039133 0.171094 0.542531 -0.479266 0.204592 0.074611 -0.078613 -0.182684 0.042665 0.061485 -0.014832 0.228665 0.179459 -0.107183 -0.424211 -0.220957 -0.330541 -0.491794 0.224334 -0.142919 0.123854 -0.429369 0.001636 -0.083077 -0.117905 -0.628931 0.307190 0.553311 -0.351609 0.393308 0.037424 0.013887 -0.147983 -0.043617 0.154007 -0.034152 0.055977 -0.052087 -0.169700 -0.212985 -0.014736 0.040242 0.084683 -0.032071 -0.364753 0.314037 0.103628 -0.423856 0.045942 0.198794 -0.097383 -0.190366 0.186357 -0.055215 0.368510 -0.276164 -0.421905 -0.053280 -0.064633 0.185791 -0.082095 -0.070826 -0.247038 -0.306672 -0.338632 -0.474719 0.010064 -0.169481 -0.302778 -0.189358 0.258555 -0.203777 0.043781 0.082727 0.258205 -0.199669 0.500601 0.038458 0.323210 0.286877 0.011251 -0.517531 -0.019947 0.389141 0.605772 -0.158639 0.137678 -0.352380 -0.029987 -0.284802 -0.104762 0.191893 0.266888 0.454954 -0.412470 -0.253271 -0.019003 0.042675 -0.509921 0.203803 -0.292160 0.251304 0.067860 0.292811 0.122047 0.393683 0.828355 -0.375705 0.130263 -0.028233 -0.211477 0.401908 0.255345 0.359787 -0.205479 -0.222717 0.073626 0.184323 0.031030 0.001289 0.143422 0.075074 -0.523005 0.040653 0.060764 0.099196 -0.275451 0.247786 0.222770 0.258208 -0.242693 0.074452 0.375127 -0.067884 -0.009206 0.143136 -0.496985 0.304870 0.051757 -0.136330 0.141528 0.055647 -0.252559 0.231491 -0.270406 0.090184 -0.272898 0.065583 -0.244234 -0.121551 -0.319621 0.072010 -0.074318 -0.322790 0.023237 0.109857 0.438939 0.099692 -0.104332 0.166440 -0.019879 0.001865 -0.498017 0.860477 -0.327613 0.124048 -0.237316 -0.065795 -0.015801 0.277561 -0.212674 -0.161406 0.135561 0.009106 0.256635 0.584540 0.280899 -0.068298 0.008200 0.471930 -0.014410 0.385079 -0.024315 0.342052 -0.098241 -0.153118 0.185040 -0.090391 -0.068971 -0.119351 0.007251 0.653107 0.287352 0.087608 0.406324 0.096045 0.579572 -0.201829 0.337433 -0.024723 0.499995 -0.085994 -0.081923 0.135821 0.181627 -0.144023 0.312688 -0.487224 -0.669958 0.110557 -0.427497 0.088505 -0.041319 0.144091 -0.118808 0.065925 -0.488332 -0.265606 -0.066094 -0.179108 0.277336 0.137182 0.049564 0.258432 0.356617 -0.267894 -0.103436 0.011339 0.244812 0.099444 -0.125328 -0.209650 0.255859 -0.439878 -0.039791 0.401399 -0.230304 -0.014202 -0.123677 0.477346 -0.328178 0.600661 0.101073 -0.072982 0.662805 0.346434 0.539656 0.107546 -0.171658 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/topological-sorting.cpp__int** std::__niter_base(int**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -0.622467 -1.705876 3.777121 2.486801 0.064591 0.961322 0.695170 -1.112612 0.916424 0.860358 -0.815065 1.736122 -1.786196 0.237628 -0.771812 0.653714 -2.235442 -1.724952 -0.346149 -1.027496 -0.392434 -1.193756 -0.062740 1.678770 1.651829 0.437597 -1.424815 -0.073625 -3.103438 -2.810522 -0.166165 -0.470268 1.334984 -0.619793 1.005101 -3.291133 2.034901 2.305907 -0.269789 -2.428241 1.317262 -1.189370 -0.031603 -0.179539 -0.336916 1.219371 1.187866 0.401359 1.332629 0.874659 -0.020105 -0.112376 0.730395 2.364497 -0.545095 1.524915 1.413691 -0.910918 0.162830 -0.202551 -0.119884 -1.034690 0.748894 0.409782 -0.803500 -1.567183 0.263949 -0.297684 -1.203332 1.262377 0.195103 -0.874899 -1.305197 -0.786945 -2.549557 -0.357780 0.961068 1.422482 2.780427 -0.926030 2.252926 0.192578 0.916339 0.260262 1.274979 0.271211 1.349203 0.497021 -0.857141 -0.469486 -1.855459 -0.431700 -0.300132 1.408348 -0.882349 -1.139742 1.071246 -3.289929 -2.291620 0.870394 0.229192 -1.367075 -1.385804 0.028844 0.816538 1.206176 -0.526771 -1.896005 -0.417505 1.105791 -0.520379 -0.424686 0.454993 -0.949533 -0.652463 -0.350429 -2.104668 0.813573 0.770546 -0.701903 -1.034399 2.179354 -0.433738 1.052045 0.203532 1.350312 -0.659110 1.481365 0.494894 0.967568 -0.332784 -0.476272 -1.865184 -0.359253 0.605855 0.412307 -1.612385 -0.420166 -0.566911 0.617676 -0.688463 0.443203 -1.018806 2.115518 1.671316 -1.430428 -1.485426 -1.247709 -0.974398 -1.886242 0.032224 -0.683662 -1.687114 0.325095 1.461593 0.473889 0.829413 2.337032 -0.875532 0.468428 0.141192 -0.865887 1.210760 -0.929686 1.221171 -1.430355 -1.138847 1.177621 0.813616 1.096884 -0.011167 0.036690 0.626844 -1.504854 -0.632169 1.139065 0.871423 0.572992 2.121456 1.930648 2.206367 -1.268761 -0.349062 0.902082 -0.976052 -0.364740 0.247749 -1.835362 0.889975 0.826966 0.200011 2.755694 0.023618 -1.202534 1.470226 0.011652 0.679964 -1.772114 0.855721 -1.346953 0.374203 -0.870820 -1.025434 -1.160376 -0.877807 -1.716531 -1.382390 2.610670 -1.418115 -2.594963 1.524900 -0.479012 1.516407 -3.591229 1.497441 -1.342114 1.870972 0.103357 0.166684 0.042436 0.222355 -1.307355 0.782195 0.703370 -1.039389 1.580683 1.754152 1.005028 0.244822 -0.159543 1.621771 -0.426970 1.124090 -0.937192 0.991017 -0.662565 -0.448485 -0.219830 -0.373188 -0.255790 0.248702 0.205101 0.183801 0.916189 0.374336 0.993536 2.009358 1.373508 -0.668086 0.749651 -0.876626 1.598736 -1.214043 -1.362007 -0.002130 1.352456 0.368602 0.906421 -3.129151 -2.583584 -2.095688 -3.293060 -0.037688 -0.261516 0.506499 0.372339 -0.274838 -2.637660 -1.456180 1.988258 0.190116 2.728320 1.417725 0.190241 1.632070 1.478266 -0.562193 -0.494470 -0.163812 0.807443 -0.246836 -0.442314 -1.644135 1.517120 -1.996526 0.960860 2.482010 -1.528769 1.079848 -0.219177 0.884960 -2.526382 2.816417 1.040891 -1.892965 1.165069 1.262730 1.951685 -0.702807 -1.306113 -PE-benchmarks/topological-sorting.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.291919 -0.319830 1.009497 0.707594 0.045139 0.080284 0.436779 -0.457132 0.629958 0.318439 -0.039797 0.114417 -0.634983 0.186418 -0.191570 0.547185 -0.587095 -0.523927 -0.120595 -0.559319 -0.170707 -0.314788 0.494613 -0.153751 0.555747 -0.147598 -0.362559 -0.438846 -0.682188 -0.524410 0.423416 -0.298477 0.424336 -0.168270 -0.231671 -1.364413 0.610235 0.439073 -0.381182 -0.479098 0.514907 -0.446230 0.194284 -0.178378 -0.033535 0.094860 0.096446 0.019063 0.607694 0.304208 0.449840 0.130804 0.131766 1.126370 -0.725029 0.354213 0.099893 -0.162022 -0.357253 0.175670 0.070200 0.012920 0.379966 0.227338 -0.167129 -0.664177 -0.154960 -0.377971 -0.708739 0.376487 -0.153886 -0.075331 -0.436390 -0.029326 -0.345703 -0.291607 -0.422740 0.373188 0.796174 -0.483737 0.547095 0.002861 0.059735 -0.035370 0.108407 0.173652 0.268902 0.075649 -0.116920 -0.245076 -0.233546 0.099669 0.074332 0.317992 -0.087649 -0.584398 0.457323 -0.099170 -0.653845 0.149873 0.327519 -0.128909 -0.601343 0.010903 0.073861 0.420177 -0.416321 -0.647446 -0.233241 0.070786 0.133428 -0.139321 -0.042217 -0.538318 -0.331261 -0.414147 -0.699325 0.064680 -0.157220 -0.309072 -0.508698 0.504549 -0.341659 -0.037585 0.089535 0.478237 -0.374297 0.616671 -0.122187 0.489890 0.169675 0.048814 -0.884720 -0.225443 0.432223 0.723348 -0.202332 0.029618 -0.547274 0.006530 -0.510643 -0.008959 0.113026 0.478298 0.715234 -0.453093 -0.357837 -0.040403 0.095851 -0.843774 0.206837 -0.423896 0.062700 0.118400 0.461628 0.269656 0.569625 1.067144 -0.428670 0.339053 -0.088256 -0.336354 0.667144 0.033201 0.533890 -0.337995 -0.354099 0.097212 0.241447 0.172004 0.007761 0.121451 0.070725 -0.718238 -0.083464 0.036530 0.196778 -0.238055 0.357491 0.408179 0.795339 -0.666815 0.165520 0.515936 -0.185023 0.037649 0.107105 -0.643668 0.225783 0.223632 -0.258966 0.443705 0.059148 -0.474859 0.203482 -0.267871 0.202883 -0.416833 0.116341 -0.359066 -0.104630 -0.370793 -0.132036 -0.269635 -0.374544 -0.152690 -0.130284 0.677113 -0.204938 -0.444352 0.513511 -0.062062 0.123411 -0.937584 1.125653 -0.485272 0.345339 -0.443020 -0.016080 -0.103832 0.497023 -0.430581 0.109056 0.198231 -0.171243 0.416671 0.968610 0.410301 0.129591 -0.123630 0.710085 -0.077050 0.544473 -0.143013 0.646633 -0.187018 -0.317072 0.161015 -0.158424 -0.110865 -0.161605 0.160299 0.618105 0.440436 0.083997 0.439544 0.386421 0.781162 -0.291051 0.525442 -0.065870 0.574371 -0.121160 -0.144312 0.253594 0.311995 -0.154337 0.374063 -0.772160 -0.880756 -0.150900 -0.733390 0.215882 0.097188 0.081466 -0.138173 0.064993 -0.786509 -0.352433 0.176191 -0.246757 0.595915 0.256291 0.163761 0.401495 0.614402 -0.385336 -0.156111 -0.047891 0.188800 0.096366 -0.260978 -0.402826 0.515288 -0.593723 0.061929 0.567316 -0.291550 0.064871 0.030645 0.465856 -0.477319 0.870836 0.156428 -0.093233 0.883849 0.505468 0.857706 0.079588 -0.268693 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -0.564241 -2.009305 4.351602 2.944994 -0.148244 1.099376 0.796985 -1.235459 0.960141 1.017331 -0.782166 2.060076 -1.992748 0.023091 -0.535952 0.757546 -2.627262 -1.772958 -0.447262 -1.160257 -0.427793 -1.244784 -0.327199 2.178549 1.897583 0.688883 -1.534129 -0.007277 -3.217369 -3.316117 -0.493413 -0.420302 1.545425 -0.647668 1.464377 -3.776693 2.368978 2.808328 -0.272268 -2.862196 1.383163 -1.122066 0.063065 -0.274244 -0.683202 1.469164 1.389922 0.522704 1.318985 1.027944 -0.314087 -0.074728 1.286812 2.629294 -0.160507 1.788839 1.836338 -1.032845 0.328315 -0.429145 -0.053028 -1.239181 0.765159 0.095936 -0.736152 -1.770399 0.126693 -0.221410 -1.239519 1.269410 0.386497 -1.179858 -1.603817 -1.116814 -3.206761 -0.494412 0.775640 1.686876 3.067352 -1.277924 2.505826 0.475915 0.911063 0.525997 1.533197 0.307108 1.537672 0.643195 -0.853812 -0.032072 -2.011072 -0.926683 -0.151629 1.163238 -1.228480 -1.999426 1.195079 -4.080886 -2.710400 1.221773 0.340615 -1.681333 -1.457228 -0.437935 0.910590 1.384876 -0.699342 -2.053169 -0.434303 1.259804 -0.533817 -0.509993 0.596670 -0.661188 -0.485059 -0.171847 -2.471476 1.126736 1.109820 -0.634800 -0.856414 2.491124 -0.290959 1.369792 0.131969 1.401706 -0.766973 1.734376 0.705914 1.117606 -0.643316 -0.425087 -1.588606 -0.484626 0.541635 0.076531 -1.618102 -0.672190 -0.530655 0.893041 -0.508501 0.906930 -0.991000 2.411709 1.660290 -1.314176 -1.577934 -1.640608 -1.715625 -2.062014 0.152994 -0.551343 -1.955493 0.703938 1.611778 0.301343 0.766672 2.040276 -0.805815 0.160947 0.060962 -0.887024 1.236660 -1.008878 1.328811 -1.507880 -1.223214 1.447743 0.965029 1.634171 0.046757 0.055793 0.827014 -1.332790 -0.687303 1.035180 0.934050 0.535373 2.497703 2.301005 2.455496 -0.926195 -0.579555 0.826639 -1.112743 -0.304243 0.230191 -2.012901 0.925788 0.879792 0.214408 3.183076 -0.085720 -1.106049 1.891678 0.026022 0.639752 -1.969964 0.968031 -1.559024 0.435383 -1.006214 -0.947046 -1.504282 -0.934399 -2.218911 -1.668479 3.057490 -1.826364 -2.673124 1.682184 -0.452028 1.802399 -3.744764 1.865533 -1.350538 2.214344 0.238789 -0.011820 0.288362 -0.090530 -1.473743 0.580936 0.808784 -1.235361 1.412636 1.637161 1.058898 0.045929 -0.178024 1.710395 -0.612543 1.406954 -1.271436 1.177811 -0.876685 -0.350113 -0.355046 -0.327770 -0.190265 0.302033 0.211917 -0.034105 0.688843 0.524163 0.871813 2.182314 1.369842 -0.829876 0.830379 -0.812932 1.694046 -1.520795 -1.432268 -0.111535 1.668006 0.525257 1.089242 -3.549384 -2.561265 -2.676812 -3.298028 -0.330328 -0.034148 0.599610 0.431325 -0.495922 -2.746144 -1.851989 2.646421 0.234491 2.217776 1.712889 0.232259 2.049222 1.612904 -0.322648 -0.530634 -0.122181 0.748131 -0.161189 -0.506792 -1.795440 1.748736 -2.245861 1.070925 2.869894 -1.710717 1.396919 -0.503967 1.110486 -2.896488 3.104336 1.062704 -2.338294 1.031535 1.902082 2.082244 -1.135976 -1.510736 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/topological-sorting.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/topological-sorting.cpp__std::deque >::deque() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_base() = -0.422402 -0.197699 1.578721 0.432520 -0.654569 -0.278359 0.828702 -0.684907 0.741040 -0.587305 -0.069896 -0.352785 -1.158898 0.231582 -0.375751 0.239878 -1.352828 -0.777384 -0.335529 -0.914970 -0.588688 -0.661828 1.098424 0.064967 0.709024 0.557120 -0.236500 -0.456767 -0.168416 -0.660461 1.041829 -0.296115 0.498303 0.730042 0.113278 -2.211142 0.697866 -0.155943 -0.529982 -0.284969 0.833505 -0.009375 0.031077 -0.172694 -0.318407 0.187853 0.441783 1.216086 0.883214 0.528279 0.294716 -0.537566 -0.154844 1.388754 -0.784517 0.191098 0.410752 -0.183390 -0.311405 0.201939 -0.293096 -0.410741 -0.052605 0.566578 -0.329223 -0.335616 0.482177 -1.141145 -1.082904 1.011277 -0.034434 -0.130676 -0.666620 -0.578806 -0.545350 -0.184712 -0.483994 0.896938 1.442675 -1.052777 0.500869 0.054700 0.234726 -0.283442 -0.443333 0.043194 0.304552 -0.057313 -0.212601 -0.346911 -0.818999 -0.283989 -0.445962 -0.089760 0.288433 -1.305546 0.702399 -0.892948 -0.834164 0.096229 0.297273 -0.255677 -0.644578 0.240985 0.277811 0.207099 -0.523896 -0.901667 -0.508994 0.043572 -0.091539 0.756797 0.218517 0.286993 -0.518202 -0.587141 -1.311783 0.219889 -0.377817 -0.632879 -0.210063 0.575970 -0.570283 0.543570 0.839111 0.835237 -0.457280 1.360557 0.581974 0.100210 0.437179 0.020069 -0.200526 -0.166813 0.431468 1.332076 -0.092785 -0.288545 -0.479025 -0.078188 -1.030862 -0.531806 -0.053369 0.247071 0.792872 -1.004508 -1.098541 0.217996 -0.410887 -1.705683 0.444745 -0.955695 -0.133691 0.533183 0.099938 0.871802 0.422332 1.539919 -0.781979 0.583196 -0.199135 -0.577375 0.039567 0.409038 0.955200 -0.447180 -0.485594 -0.177170 -0.267040 0.286278 0.018631 -0.580918 0.036532 -1.532293 -0.671626 0.102929 0.446559 -0.285421 -0.075916 0.752641 0.590257 -0.722391 -0.140908 0.938068 -0.208174 -0.414248 0.655302 -0.879508 0.576523 0.041511 -0.228313 0.409574 0.194467 -0.300442 0.777981 -0.411843 0.266335 -0.583081 -0.425670 -0.419118 -0.067458 -0.949106 0.212779 -0.493404 -0.224631 0.117853 -0.401884 0.782297 -0.542744 -0.702432 1.058329 -0.076832 1.065365 -1.276375 1.396817 -0.234714 0.790724 -0.298949 0.102096 -0.310461 -0.330820 0.129475 0.187438 -0.389217 0.395999 0.363507 1.411705 0.324302 0.360716 0.275796 1.317968 -0.177122 0.835647 -0.072947 0.571471 -0.538412 -0.849452 0.492465 0.071506 -0.432427 -0.285219 0.460013 1.158563 0.691180 0.167923 1.329459 0.448964 0.986867 -0.182765 0.284756 0.003533 0.929303 -0.585991 -0.349637 0.530061 0.741875 -0.767078 0.408280 -1.026774 -1.947016 -0.891461 -1.654972 -0.458732 -0.661480 0.420984 -0.370644 -0.034472 -0.494953 -0.204740 0.400812 -0.025835 1.034612 0.627723 0.132632 0.978715 1.640153 -0.792396 -0.318365 0.818313 0.737428 -0.165706 0.097182 -1.097576 0.241356 -0.790190 -0.022124 1.062404 -0.411677 0.167429 -0.695054 1.212798 -1.122848 1.229954 0.251464 -0.354252 1.336539 0.501885 0.684617 1.235296 -0.170472 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.020613 -0.364075 1.593080 1.020165 -0.051065 0.142324 0.484059 -0.919230 0.989565 0.194864 -0.236380 0.171933 -0.856262 0.358357 -0.995030 0.739344 -1.047357 -0.750437 -0.330132 -0.931333 -0.302451 -0.451216 0.704002 -0.185208 0.868731 -0.068916 -0.539793 -0.401772 -1.099846 -0.804952 0.565734 -0.359587 0.336985 -0.538736 -0.229366 -1.353181 1.017071 0.762517 -0.589968 -0.692429 0.780112 -0.750590 -0.015251 -0.350089 0.062380 0.041918 -0.035491 0.506484 0.890565 0.389274 0.547669 0.446111 0.161264 1.786603 -1.088617 0.623121 0.226269 0.044018 -0.362253 0.465406 0.078220 0.174098 0.281386 0.288281 -0.127991 -1.017475 -0.243165 -0.468027 -0.617186 0.712845 -0.334582 -0.235839 -0.694353 -0.058565 -0.878023 -0.248542 -1.162538 0.675532 1.145755 -0.835862 0.606633 -0.013956 0.113090 -0.026372 0.166473 0.164178 0.560610 0.178190 -0.068806 -0.478503 -0.528139 0.341139 0.182616 -0.085363 -0.341132 -1.473725 0.782459 -1.043940 -1.078623 0.099455 0.584480 -0.451277 -0.196238 0.184241 0.096297 0.324665 -0.570040 -0.869314 0.015278 0.251668 0.245006 -0.148027 0.207281 -0.715385 -0.159998 -0.393450 -1.128095 0.264850 -0.223815 -0.283019 -0.547046 0.799313 -0.171105 -0.181463 0.112115 0.632379 -0.460402 0.854924 -0.340521 0.735447 -0.115814 0.559712 -0.991562 0.243183 0.691971 0.414527 -0.468840 0.459965 -0.653902 0.116917 -0.835265 -0.048263 -0.425501 0.509312 0.421311 -0.840187 -0.573189 -0.083137 -0.135078 -1.107279 0.212127 -0.497928 -0.663862 -0.165162 0.711976 0.749597 0.861216 1.230996 -0.555491 0.163581 0.037364 -0.306962 0.968285 -0.301686 0.752475 -0.508442 -0.631043 0.238087 0.166476 0.230258 -0.101561 0.298039 0.072124 -1.138021 0.161147 0.127703 0.417660 -0.358242 0.779089 0.756289 0.394362 -0.997411 0.320007 0.815047 -0.445736 0.057868 0.092604 -0.995376 0.381506 0.421589 0.181362 0.738229 0.125404 -0.364715 0.308949 -0.354757 0.419079 -0.646995 -0.086848 -0.542950 -0.455075 -0.528155 0.259390 -0.265023 -0.430790 -0.300937 -0.616643 0.945764 -0.829894 -0.493037 1.027688 -0.032910 0.248490 -1.075782 1.219556 -0.699274 0.642423 -0.101999 0.249558 -0.042185 0.475365 -0.890039 0.212849 0.288269 -0.324114 0.734613 1.195460 0.598837 0.292793 -0.185049 1.087589 -0.502962 0.856772 -0.392864 0.913342 -0.248594 -0.810273 0.248991 -0.241697 -0.397330 -0.395769 0.498400 1.077055 0.460527 0.420484 0.695258 0.509942 1.278097 -0.454620 0.815339 -0.266199 0.420141 -0.321167 -0.321030 0.489579 0.207072 -0.250329 0.514057 -1.256972 -1.399395 -0.898924 -0.982727 0.570118 -0.683105 0.135115 -0.330772 -0.033840 -1.171094 -0.767243 0.514462 -0.378940 0.462991 0.566839 0.251189 0.519853 0.978343 -0.580168 0.176771 -0.019762 0.453260 0.216222 -0.485425 -0.691979 0.919538 -0.768178 0.045510 1.069903 -0.498437 0.268222 0.121392 0.370215 -0.729948 1.116842 0.240082 -0.279122 1.109166 0.909468 1.197937 0.400953 -0.475299 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 2.600057 -2.661362 16.754493 9.820825 -7.214981 0.473741 0.523615 -7.703761 5.166541 -0.579161 -3.341148 2.315033 -4.030648 1.770260 -1.255421 5.725668 -14.852132 -2.499169 -2.853623 -7.952815 -4.223466 -2.061768 2.497999 1.850270 7.204182 7.506006 -3.512069 -0.407506 1.073345 -8.888694 3.484843 -2.078115 3.577476 2.612357 4.614758 -19.293632 9.425115 4.137254 -3.752859 -6.589864 4.713877 -1.147829 -1.121467 -2.691130 -4.618231 2.223239 0.956015 9.284653 5.161896 3.968835 -1.903345 0.984852 5.634067 15.355938 -1.643443 3.575692 4.434774 -3.373704 -1.734068 0.783494 1.388178 -1.074305 0.503560 0.428786 2.256938 -8.851371 -0.229728 -5.073083 -3.195534 6.153317 1.175794 -5.351382 -5.686346 -5.991297 -6.265266 -1.631363 -12.718636 10.697472 8.983966 -8.604174 3.810435 1.035288 0.192259 1.487689 1.004136 0.850704 6.821498 2.488576 0.568733 0.454167 -0.586104 -6.185501 4.572852 -5.393400 -4.008398 -17.254824 4.987395 -12.062286 -7.342809 3.597878 6.801980 -5.771595 -0.581067 -3.840569 2.389824 1.696832 -3.343663 -4.075564 0.198503 1.870560 -0.716442 0.562487 -0.519580 1.929445 -0.582908 1.385056 -10.420466 5.937000 0.462747 1.131069 1.104033 5.970182 2.299401 -0.865943 0.591027 4.593539 -3.907537 9.894419 -0.103480 5.103152 -2.680976 6.467342 1.880697 5.224288 5.080184 -1.999141 -1.262313 -3.279013 -3.009130 3.132408 -6.237790 1.736392 -3.198418 6.393808 5.327877 -3.339504 -7.098795 -3.480439 -8.448991 -10.277863 1.721216 -3.932212 -7.054156 5.771105 4.461295 6.523261 4.578808 1.443891 -6.411084 0.580852 -2.341129 -0.330768 4.445162 1.226303 5.108882 -4.418209 -1.782272 2.036253 -0.330202 5.375851 -0.059196 -0.949123 2.673821 -6.445050 -0.642706 4.889029 5.512405 -0.622690 4.207552 8.641580 10.320043 -2.285070 -1.778160 5.744802 -4.595705 -2.807945 3.589072 -6.266516 2.392132 2.476575 2.844311 8.097185 0.055281 0.605923 2.820512 -1.717370 0.555624 -3.405288 -1.271212 -3.264092 -0.698958 -2.973495 3.103600 -5.972943 -1.110175 -4.993712 -6.682483 9.168082 -13.481723 -4.012677 10.927084 -5.016933 5.860077 -6.952479 11.473315 -3.840325 5.813872 -0.792683 -1.831782 -0.277842 -5.397813 -7.451160 3.585737 0.721557 0.579704 -0.598695 8.090985 4.315347 0.285995 -2.025766 8.396850 -5.523821 9.327897 -3.560940 7.096572 -3.859600 -1.408106 -1.556172 0.120093 -5.328321 -3.139530 4.396994 5.906634 -0.747814 5.868086 4.558547 3.282016 7.363763 -4.080109 6.070010 -2.188674 2.222618 -4.757644 -4.605199 4.765187 5.994708 -2.223948 2.466104 -11.072031 -9.359889 -16.192874 -4.345623 -2.910599 -2.778902 3.634302 -3.134628 -2.964187 -4.619518 -6.486193 10.761279 -0.700928 -0.652233 5.836053 0.449627 6.679699 8.394831 -1.598439 0.112907 0.250352 2.768528 2.664134 -0.706248 -8.835908 8.686481 -5.771589 -0.042387 12.402166 -4.813110 4.258055 -1.586552 6.796460 -8.021188 7.243462 1.225741 -6.420572 3.748395 10.206864 3.332260 2.544038 -4.591536 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.239800 -0.366758 1.501886 1.113580 -0.692877 -0.018134 0.100848 -0.524864 0.717943 -0.190231 -0.349488 0.125421 -0.583271 0.320870 0.351930 0.759143 -1.680434 -0.382737 -0.007714 -0.499923 -0.302800 -0.324913 0.464766 0.009424 0.633615 1.127585 -0.298512 -0.198651 0.219239 -0.338182 0.795000 -0.522568 0.586338 1.231812 0.271080 -2.284438 0.865990 0.067155 -0.434092 -0.737255 0.365322 -0.422296 0.280551 -0.838626 -0.336706 0.313051 0.298919 1.071038 0.672737 0.349942 -0.419516 -0.218130 0.482380 1.296011 -0.435697 0.211818 0.350939 -0.473873 -0.275134 -0.177458 0.251466 -0.090651 0.366405 0.401804 -0.089756 -0.937189 -0.293132 -0.946203 -0.739418 0.619542 0.143898 0.247590 -0.935199 -0.318607 -0.307405 -0.233297 -1.753006 1.285873 1.154773 -0.986823 0.553808 0.158197 0.248281 0.062003 0.137349 0.329117 0.618322 0.271144 -0.233449 0.188142 -0.256917 -0.900903 0.502253 -0.756907 -0.010949 -1.514194 0.162643 -0.643047 -0.634829 0.332017 0.536594 -0.090518 -0.184545 -0.332538 0.415782 0.520494 -0.471119 -0.549738 0.163937 -0.233847 -0.071689 -0.039532 -0.155958 0.273940 -0.366015 -0.373730 -1.137426 0.187256 -0.101550 -0.203256 0.428169 0.576668 -0.075259 -0.110656 -0.023413 0.221705 -0.424270 1.391196 0.057996 0.430389 0.280745 0.240461 0.104027 0.542658 0.675915 0.716666 -0.055676 -0.425754 -0.421957 0.206949 -0.771990 -0.381597 0.338918 0.546549 0.749515 -0.397586 -0.739482 -0.385279 -0.621906 -1.226301 0.372846 -0.619815 0.133233 0.943941 0.622185 0.563874 0.798322 0.492430 -0.925382 0.252611 -0.489063 0.140262 0.717033 0.979555 0.644943 -0.376004 -0.042749 0.279656 -0.028064 0.340185 0.161151 -0.324687 0.325477 -0.775426 -0.117184 0.611129 0.610610 -0.129012 0.348052 0.492119 0.691425 -0.198590 -0.018182 0.709146 -0.060144 -0.233189 0.483889 -0.672819 0.670556 0.061123 -0.032582 0.258903 -0.058424 -0.277988 0.103464 -0.139970 0.054134 -0.277219 -0.312793 -0.255241 -0.079039 -0.537396 0.604008 -0.545609 -0.443362 -0.281953 -0.106343 0.969096 -0.834341 -0.140371 0.833792 -0.674128 0.752426 -0.682177 1.317115 -0.615142 0.531489 -0.422938 -0.466899 0.010720 -0.609254 -0.545974 0.020276 0.296327 0.273411 -0.275055 0.706705 0.641645 -0.041821 0.070250 0.856462 -0.073191 0.862736 -0.010381 0.611150 -0.377876 0.262263 0.142169 -0.110969 -0.219782 -0.179039 0.319844 1.179288 0.244027 0.743070 0.910088 0.182581 0.720597 -0.552943 0.340624 -0.211925 0.614202 -0.401949 -0.271806 0.228204 0.637193 -0.331438 0.360074 -0.985455 -1.269527 -1.136674 -0.147781 -0.565043 0.063852 0.338110 -0.231020 0.074397 -0.519839 -0.347016 0.462989 -0.274336 0.074650 0.356166 -0.054486 0.667493 0.827374 -0.385218 -0.598024 0.235475 0.321640 0.198862 0.365337 -1.176847 0.873509 -0.812494 -0.009755 1.238717 -0.638918 -0.040433 -0.352490 1.510141 -0.563071 0.976244 0.253001 -0.648078 0.612501 0.966608 0.411864 0.606199 -0.494874 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator() = 0.211826 -0.331391 1.575723 1.170397 -0.523758 -0.035794 0.382275 -0.537557 0.871916 0.251829 -0.256719 0.012387 -0.608315 0.232965 0.666552 0.951341 -1.493004 -0.358599 0.086479 -0.683057 -0.298387 -0.293532 0.473896 -0.270181 0.762142 0.701829 -0.163317 -0.533664 0.221896 -0.397635 0.767920 -0.561760 0.571313 1.064961 0.218537 -2.335901 0.912908 0.026112 -0.499029 -0.708294 0.399385 -0.393482 0.443626 -0.579656 0.039830 0.369607 0.408871 1.111775 0.810348 0.563677 -0.122680 -0.310595 0.558678 1.449022 -0.600415 0.222711 0.214618 -0.595153 -0.352664 0.059650 0.204827 -0.218879 0.410124 0.286077 -0.017831 -1.020033 -0.327823 -0.910682 -0.799012 0.500876 0.260690 0.053721 -0.985366 -0.316204 0.006765 -0.384359 -2.584899 1.220747 1.117117 -1.003705 0.656685 0.265078 0.256401 0.052347 0.151734 0.323759 0.583649 0.177674 -0.285924 0.172461 -0.281475 -1.020740 0.517086 -0.738891 0.047451 -1.482888 0.170893 0.050283 -0.668280 0.428133 0.595220 -0.022055 -0.384353 -0.285666 0.354108 0.565106 -0.534972 -0.636022 -0.006451 -0.297423 -0.143968 -0.043181 -0.234247 -0.123577 -0.475976 -0.409688 -1.101717 0.195123 -0.139740 -0.191363 0.043250 0.601054 -0.130170 -0.151643 0.027702 0.343515 -0.468414 1.328393 0.094381 0.595790 0.532172 0.130504 -0.612555 0.658156 0.775007 0.782970 0.186797 -0.248119 -0.563555 0.192259 -0.844008 -0.070984 0.580108 0.853011 0.961511 -0.425196 -0.682530 -0.284678 -0.270290 -0.978657 0.627698 -0.592499 0.386118 0.573554 0.609675 0.547275 0.823669 0.427486 -1.017191 0.330474 -0.630635 0.204224 0.793975 1.103340 0.753607 -0.422049 0.128189 0.046125 0.251053 0.180931 0.158736 -0.280453 0.412109 -0.857215 0.000647 0.326461 0.439037 -0.401170 0.333819 0.531643 1.227577 -0.345727 -0.086132 0.750854 -0.108681 -0.236637 0.556853 -0.680744 0.659998 0.093610 -0.155219 0.251169 -0.025217 -0.307416 0.071643 -0.237928 -0.041005 -0.143116 -0.314052 -0.283385 -0.275564 -0.336645 0.622882 -0.714722 -0.538110 -0.180921 0.136983 0.956057 -0.355117 -0.060912 0.764316 -0.983929 0.362859 -0.667944 2.051064 -0.680884 -0.018171 -0.769275 -0.542865 -0.166683 -0.008041 -0.551883 0.040075 0.258234 0.245320 -0.089257 0.981904 0.661238 -0.007759 0.032630 0.940091 -0.156909 0.838759 0.048465 0.765323 -0.493762 0.429453 0.036870 -0.070225 -0.153736 -0.141170 0.197306 1.177233 0.197946 0.452980 0.718798 0.180628 0.731072 -0.524334 0.592096 -0.157053 0.734140 -0.357600 -0.237907 0.339601 0.388223 -0.292218 0.398037 -1.048268 -0.981054 -0.536275 0.026781 -0.496121 0.443754 0.291788 -0.194833 0.105832 -0.681483 -0.337442 0.254586 -0.239677 -0.501266 0.269364 -0.050903 0.657413 0.808893 -0.222592 -0.643777 0.003522 0.126458 0.233642 0.090680 -0.897894 0.883261 -0.934167 0.003113 1.075712 -0.518830 -0.141316 -0.355723 1.605666 -0.626230 0.890491 0.147127 -0.408083 0.720401 1.267271 0.743210 0.249396 -0.416715 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.839070 -0.824392 4.838994 2.031926 -1.090945 -0.051139 2.343173 -2.355453 2.925860 0.165827 -0.752489 -1.150385 -3.106682 -0.051968 -0.331548 0.688543 -3.941018 -2.213945 -0.805272 -2.693114 -1.108443 -2.398843 2.357673 0.067446 2.202341 1.036967 -0.765304 -0.850071 -1.329529 -2.466170 2.775441 -0.946007 1.497564 1.743769 0.453099 -5.832529 2.791144 0.825161 -1.134723 -1.463970 1.797844 -0.503707 -0.259737 0.037612 -0.094836 0.979333 0.867471 3.259587 2.742204 1.031811 1.076364 -1.790851 -0.553724 3.654037 -2.325370 0.894818 0.391537 -1.209736 -0.782230 1.321923 -0.378774 -0.939633 0.618182 2.094379 -0.742519 -1.429502 2.076826 -2.344378 -3.352779 3.249856 0.305575 -1.063890 -1.497181 -1.176142 -1.347571 -0.294652 -0.330442 2.513020 4.083738 -1.565458 2.324286 0.261934 0.745269 -1.065615 -0.705875 -0.108124 2.186396 -0.201086 -0.849603 -1.617064 -3.080560 -1.526662 -0.574000 0.591086 0.454273 -1.869874 1.800310 -2.299861 -2.479173 -0.084976 1.229140 -1.127104 -2.646402 1.224553 1.229293 0.583028 -0.332127 -2.574048 -1.422661 0.659977 -1.875254 1.429015 0.123045 -0.090265 -1.782949 -1.160457 -3.023193 0.317706 -1.050470 -1.256589 -1.335886 2.039234 -1.809717 0.667159 1.805702 2.268245 -0.806601 2.306887 0.532534 1.092086 1.850320 -0.138511 -1.499655 -0.835396 1.297805 3.130609 0.345039 -0.987809 -1.169319 0.357568 -3.142732 -0.560527 -0.747527 1.496348 2.449105 -3.063968 -2.296468 0.329345 -0.512960 -3.952196 0.815553 -2.205328 -0.868043 0.411748 1.333561 2.484768 1.334318 4.044920 -3.049299 1.860814 -0.484063 -1.393834 0.689711 0.789598 2.362727 -1.458578 -1.021772 -0.659139 -0.101945 1.076433 -0.502957 -1.315550 -0.234688 -3.960960 -1.948929 0.682163 0.605907 -0.109195 0.118809 2.695557 3.191634 -3.419765 0.311773 2.915469 -0.381318 -1.322291 1.959366 -2.848122 1.601735 0.408689 0.072927 1.981780 0.275923 -0.934601 1.055131 -1.001458 0.395068 -2.133632 -0.810801 -1.262740 0.590777 -2.026852 -0.102625 -1.957426 -1.257305 -0.452788 -0.836365 2.393470 -0.443869 -3.451182 3.838462 -1.236066 2.391281 -3.985167 3.381375 -1.183716 1.158006 -1.522251 0.170576 -1.007691 -0.150796 -0.803876 0.853938 -0.707910 0.378844 2.319097 4.181486 1.421074 1.103946 -0.118316 3.436099 -0.697951 2.118277 -0.943371 1.647423 -1.094963 -1.701555 0.305914 -0.415475 -0.838474 -0.375790 0.740584 2.573814 2.534052 0.339438 3.320965 1.245877 2.467064 -0.384680 1.554290 0.320712 2.191508 -0.955467 -1.155934 1.759140 1.353663 -2.078169 1.545560 -3.544223 -4.817753 -0.997692 -5.011160 -1.072251 -1.737777 1.419333 -0.247803 0.183538 -2.412305 -0.982056 1.134898 0.420338 3.637315 1.174039 0.109054 1.936923 3.822821 -2.084235 -0.479739 1.337567 1.827103 -0.735465 -1.117882 -2.797572 1.888879 -2.466053 0.803876 3.267767 -1.753382 0.626864 -2.297131 3.123195 -3.772714 3.263429 0.989621 -0.949576 3.026365 0.690761 2.940407 2.321585 -0.993627 -PE-benchmarks/topological-sorting.cpp__std::deque >::empty() const = 0.529537 -0.209094 1.822897 1.211108 -0.646151 0.072147 -0.161702 -0.998133 0.734940 -0.067615 -0.431919 0.276326 -0.355492 0.352911 -0.603589 0.833457 -1.538249 -0.275203 -0.437378 -0.967629 -0.492000 -0.104607 0.273583 -0.048828 0.836137 0.859317 -0.425506 0.121098 -0.101518 -1.061425 0.243104 -0.229972 0.173298 0.092486 0.435287 -1.274429 1.160046 0.641950 -0.511691 -0.716766 0.506598 -0.392648 -0.166062 -0.431208 -0.143459 0.267408 -0.050281 0.935811 0.653055 0.497173 -0.023421 0.419421 0.655512 1.531542 -0.348153 0.495476 0.463582 -0.156952 -0.142828 0.229046 0.157114 0.124184 -0.067458 -0.055624 0.283384 -1.164925 -0.354162 -0.464640 -0.040132 0.665927 -0.166959 -0.630720 -0.756648 -0.649770 -0.803376 -0.160377 -2.438466 1.090704 0.900966 -1.078516 0.237614 0.118913 -0.009151 0.227806 0.228157 0.110872 0.779000 0.359099 0.142295 0.122020 0.158236 -0.457427 0.650011 -0.827789 -0.643900 -2.016666 0.649211 -1.666810 -0.876218 0.351494 0.838186 -0.606186 0.339365 -0.242117 0.088199 0.090434 -0.396198 -0.375425 0.469572 0.171716 0.279217 -0.063339 -0.002909 -0.016655 0.112973 0.312029 -1.254428 0.722625 -0.014612 0.228627 0.161386 0.685494 0.544360 -0.382898 -0.110532 0.411677 -0.436043 1.203171 -0.300620 0.746236 -0.629340 1.099138 -0.107606 1.077274 0.709741 -0.737863 -0.374961 0.194662 -0.361451 0.293120 -0.810412 0.180999 -0.686302 0.578224 0.359860 -0.450580 -0.763239 -0.351013 -1.063399 -0.993448 0.175563 -0.345897 -1.038863 0.247389 0.599493 0.951946 0.719291 0.160395 -0.612606 -0.379631 -0.182077 0.064067 0.757640 0.020186 0.586801 -0.469885 -0.239995 0.421968 -0.043178 0.365255 0.098160 0.129357 0.322407 -0.788614 0.422419 0.731365 0.598639 -0.216344 0.775400 0.926626 0.473832 -0.126196 -0.039382 0.661898 -0.573146 -0.157789 0.275049 -0.664815 0.305278 0.345357 0.683703 0.767627 0.048382 0.322153 0.171587 -0.221491 0.229339 -0.348640 -0.261531 -0.346049 -0.333056 -0.273313 0.740687 -0.458281 -0.115260 -0.424984 -0.862562 0.949086 -1.535304 -0.046376 1.207601 -0.459033 0.427140 -0.350326 0.952714 -0.569178 0.686947 0.163378 0.008757 0.091322 -0.544810 -1.014818 0.318805 0.254698 -0.027227 -0.064056 0.671516 0.534657 0.002450 -0.247011 0.931551 -0.885395 1.141046 -0.374792 0.853723 -0.339486 -0.215016 -0.057439 -0.050315 -0.773448 -0.528443 0.527837 0.911233 -0.213618 0.799046 0.378516 0.197320 1.033284 -0.555100 0.812456 -0.305627 -0.011900 -0.613372 -0.513557 0.642952 0.383887 -0.133466 0.160493 -1.199504 -0.919205 -1.920908 -0.138935 0.020580 -0.609694 0.284374 -0.441915 -0.374615 -0.437914 -0.951445 1.366297 -0.214224 -0.456695 0.578171 0.085719 0.577656 0.846698 -0.128479 0.205932 -0.191891 0.274467 0.493765 -0.128065 -0.903547 1.174088 -0.512702 -0.230575 1.390841 -0.589137 0.510320 0.181272 0.515788 -0.688259 0.644713 0.040569 -0.609528 0.508119 1.386978 0.528995 0.326774 -0.541702 -PE-benchmarks/topological-sorting.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/topological-sorting.cpp__std::deque >::back() = -0.008397 -0.246573 0.895952 0.610601 -0.324634 0.006583 0.198208 -0.375245 0.378198 -0.530022 -0.191743 0.058209 -0.637135 0.226888 -0.406387 0.154038 -0.936188 -0.454991 -0.227335 -0.341205 -0.041229 -0.259752 0.498420 0.175253 0.453016 0.577489 -0.318093 -0.177484 -0.601166 0.163307 0.640993 -0.197879 0.404776 0.589375 -0.090811 -1.030853 0.412296 0.355186 -0.294236 -0.413316 0.509866 -0.558752 0.040557 -0.678084 -0.271294 0.027119 -0.048043 0.367789 0.445832 -0.045308 -0.202642 0.102834 -0.084593 0.685145 -0.545175 0.194961 0.200002 -0.052804 -0.203295 -0.111265 0.039421 0.132016 0.221462 0.231932 -0.315918 -0.604835 -0.139099 -0.635676 -0.502836 0.453062 -0.111743 0.289414 -0.466477 -0.048783 -0.607324 -0.066509 0.003447 0.652213 0.652816 -0.560760 0.322140 -0.148334 -0.006989 -0.090487 0.027353 0.242963 0.185202 0.101042 0.083200 -0.192570 -0.644629 0.035679 0.098350 -0.182110 -0.108524 -0.732241 0.349078 -0.784172 -0.523219 -0.122244 0.297813 -0.309359 -0.033329 0.175274 -0.009264 0.351821 -0.248356 -0.395466 0.186418 0.111420 0.178567 -0.006893 0.003276 0.141569 -0.229667 -0.665877 -0.717884 0.242491 -0.193531 -0.149738 0.176852 0.439469 -0.342792 -0.091538 0.088378 0.228107 -0.352959 0.809632 -0.167519 0.080990 0.122422 0.053816 0.188023 -0.131344 0.375226 0.985051 -0.432748 -0.123544 -0.338909 0.003770 -0.468961 -0.565490 0.059182 0.068057 0.128792 -0.605510 -0.330053 -0.126528 -0.367975 -0.956623 -0.069082 -0.324889 -0.056454 0.553030 0.396601 0.524514 0.529919 0.994366 -0.338836 0.100445 0.067944 -0.338910 0.529507 0.314825 0.411689 -0.260471 -0.369694 0.250018 -0.342847 0.322782 -0.054156 0.216100 -0.007295 -0.697334 -0.128016 0.273067 0.370780 0.030680 0.407844 0.467234 -0.440789 -0.404481 0.212515 0.494951 -0.191091 -0.063162 0.210722 -0.497792 0.347474 0.156904 -0.165446 0.296233 0.011895 -0.258927 0.167752 -0.142929 0.249396 -0.462164 -0.126566 -0.232396 -0.029228 -0.655567 0.134590 -0.067107 -0.386123 -0.243775 -0.395180 0.608945 -0.498363 -0.335365 0.461990 0.209518 0.570083 -0.712291 0.262191 -0.390600 0.770531 0.045998 0.018993 0.119952 -0.357306 -0.506116 -0.038905 0.141303 -0.055506 0.106641 0.500583 0.446713 -0.014992 -0.052253 0.606727 -0.048236 0.649439 -0.216269 0.343087 -0.113183 -0.409487 0.398203 -0.125799 -0.258664 -0.168120 0.314282 0.983059 0.402492 0.728496 0.751362 0.228910 0.755879 -0.252597 0.093862 -0.159008 0.340813 -0.117469 -0.225802 0.192215 0.499378 -0.142994 0.246036 -0.668995 -1.319755 -0.594107 -0.759590 0.222244 -0.619260 0.127251 -0.101490 0.025463 -0.603095 -0.341820 -0.089890 -0.266642 1.022225 0.255293 0.009969 0.359334 0.584633 -0.653362 -0.051104 0.533583 0.647374 0.139489 0.132625 -0.879784 0.567020 -0.448098 -0.049169 0.926072 -0.483099 0.187158 -0.216112 0.734770 -0.422988 0.864466 0.158201 -0.535028 0.677072 0.289570 0.253021 0.766322 -0.299355 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator--() = 0.189103 -0.469855 3.113567 2.228900 -1.164902 0.105364 -0.304418 -1.523999 1.138068 0.150140 -0.505464 0.609349 -0.708100 0.456388 0.581880 1.504503 -2.909343 -0.525395 -0.505905 -1.468733 -0.811926 -0.355071 0.509514 0.230809 1.311628 1.624666 -0.932039 0.209823 0.289864 -2.201210 0.532520 -0.631639 1.025374 1.099608 0.788283 -4.002830 2.095316 0.797654 -0.742835 -1.293363 0.824259 -0.571269 0.114123 -0.797106 -0.954014 0.793475 0.241857 0.815805 1.306327 0.801677 -0.194235 0.200985 1.158112 2.163486 -0.467238 0.633726 0.637907 -1.111518 -0.635300 -0.176654 0.298655 -0.123246 0.601969 0.251909 0.054058 -2.055300 -0.188947 -0.956471 -1.087827 1.195577 0.060226 -0.905198 -1.223998 -1.084353 -0.982040 -0.523446 -1.577999 1.933530 1.780611 -1.420719 0.797175 0.093400 -0.085999 0.277263 0.514430 0.270826 1.623026 0.506629 -0.104190 0.264081 0.405062 -1.662033 1.038630 -0.202023 -0.531224 -2.040900 0.587334 -2.077211 -1.384217 0.716672 1.296505 -0.692208 -1.195508 -0.962844 0.733314 0.625198 -0.394674 -0.874275 0.261241 0.125236 -0.153723 -0.234557 -0.673952 0.026693 -0.485312 0.395307 -2.160886 0.902489 0.011441 0.161339 0.060942 1.156077 0.237145 -0.445199 -0.133843 0.933153 -0.875715 2.092179 -0.445486 1.228159 -0.218432 0.875028 0.103319 0.607527 0.925804 -0.318357 -0.377445 -1.009820 -0.911628 0.437883 -1.543268 0.241385 -0.301062 1.589149 1.881531 -0.368601 -1.402464 -0.566949 -1.671774 -2.343735 0.420414 -0.944842 -0.719252 1.451266 1.077793 0.773665 1.268070 0.658515 -1.258349 0.166344 -0.576508 -0.108937 1.543349 0.515738 1.154767 -0.906788 -0.186756 0.799387 0.050526 0.872388 0.199276 -0.185412 0.620503 -1.229495 -0.390719 1.434608 0.864375 0.319712 0.761960 1.347627 2.773683 -0.190073 -0.075248 1.184502 -0.527535 -0.393257 0.652986 -1.045353 0.468609 0.454131 0.397152 1.557164 -0.068209 -0.335443 0.072264 -0.032609 0.231225 -0.763731 0.012028 -0.555625 0.561329 -0.512678 -0.069880 -1.124479 -0.493527 -0.878120 -0.861491 1.898944 -1.984326 -1.103108 2.162919 -1.363987 1.392842 -1.716670 1.969949 -1.092154 1.207290 -0.818685 -0.560847 0.005591 -1.242837 -1.498244 0.839377 0.450540 0.199915 -0.314963 1.470844 1.038887 0.050803 -0.523156 1.445978 -0.552864 2.040452 -0.363698 1.591033 -0.663788 0.490846 -0.308280 -0.104840 -0.965063 -0.498217 0.489642 0.918050 0.150548 1.001155 0.831438 0.691484 1.495160 -0.976151 1.313551 -0.346765 0.575626 -0.791976 -0.905264 0.956609 1.320383 -0.249918 0.514075 -2.033325 -1.687766 -2.631169 -0.895547 -0.792106 0.469597 0.762104 -0.445122 -0.372018 -0.751192 -1.005452 2.228972 -0.074551 0.811189 0.778005 0.075072 1.158996 1.494922 -0.262109 -0.612251 -0.447336 0.183771 0.543660 0.091236 -1.903365 1.940043 -1.059963 0.019046 2.243962 -1.160173 0.568964 -0.291524 1.544302 -1.304148 1.462182 0.167144 -1.016083 1.098601 1.631534 0.546835 0.197818 -0.955109 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator*() const = -0.148122 -0.189396 0.772426 0.558679 -0.116434 0.038016 0.063439 -0.360402 0.356672 0.161255 -0.070991 0.136224 -0.324044 0.153834 -0.071630 0.437590 -0.519722 -0.253456 -0.157096 -0.399789 -0.172265 -0.130819 0.278294 -0.063114 0.376824 0.171534 -0.286900 -0.096927 -0.233652 -0.582860 0.165327 -0.181041 0.288195 0.009349 -0.025675 -0.902704 0.495757 0.337272 -0.256214 -0.334375 0.318031 -0.202704 0.088760 -0.133750 -0.174664 0.147900 0.022552 -0.086673 0.370135 0.242501 0.243467 0.121845 0.252753 0.629159 -0.311200 0.222003 0.120872 -0.167855 -0.222724 -0.002870 0.076933 0.043354 0.193603 0.084308 -0.015506 -0.530118 -0.151375 -0.226166 -0.394216 0.263784 -0.184160 -0.166673 -0.292094 -0.201104 -0.252654 -0.179180 -0.355741 0.299951 0.500878 -0.350478 0.269971 0.001190 -0.061426 0.034767 0.070960 0.113454 0.212914 0.119612 0.003418 0.003573 0.214528 -0.067463 0.180234 0.223322 -0.166103 -0.407262 0.333821 -0.301135 -0.402618 0.166204 0.310995 -0.131427 -0.363196 -0.124287 0.013230 0.252298 -0.239744 -0.326572 -0.016972 0.032761 0.198570 -0.094899 -0.136702 -0.191288 -0.182960 -0.039575 -0.531968 0.156350 -0.084909 -0.109840 -0.168333 0.303961 -0.034217 -0.091422 -0.006455 0.317815 -0.277745 0.545494 -0.112019 0.397503 -0.123538 0.221327 -0.323724 -0.072731 0.295267 0.138103 -0.186989 -0.105597 -0.343344 0.006751 -0.349629 0.037066 -0.043692 0.309377 0.604841 -0.184174 -0.304298 -0.066890 -0.268839 -0.691377 0.082217 -0.285596 -0.056615 0.271317 0.295547 0.170281 0.387133 0.607993 -0.283855 0.056644 -0.088509 -0.246957 0.451290 0.031104 0.329070 -0.222038 -0.198147 0.185892 0.105310 0.183237 0.091060 0.062745 0.094846 -0.402503 0.016578 0.287886 0.185006 -0.079232 0.229307 0.313429 0.619017 -0.141723 0.041984 0.333394 -0.141595 -0.008043 0.094992 -0.373052 0.092638 0.140711 -0.059917 0.332822 0.025733 -0.157253 0.118210 -0.180132 0.130911 -0.283074 0.125300 -0.205873 0.094246 -0.233167 -0.087428 -0.193651 -0.161291 -0.119874 -0.169420 0.483131 -0.374955 -0.219831 0.412406 -0.028105 0.170191 -0.491906 0.596639 -0.310136 0.416123 -0.233516 -0.044914 -0.003071 0.001902 -0.318326 0.095470 0.140370 -0.018594 0.050557 0.532188 0.272587 -0.029460 -0.138917 0.457636 -0.125524 0.517796 -0.086035 0.454299 -0.108458 -0.081877 0.064028 -0.069936 -0.237288 -0.188604 0.097436 0.326563 0.161096 0.135359 0.218580 0.173985 0.541780 -0.236441 0.392319 -0.029447 0.305233 -0.151970 -0.161155 0.239679 0.384005 -0.081946 0.162451 -0.508490 -0.519818 -0.428000 -0.373939 -0.002747 0.125020 0.111055 -0.144343 -0.054902 -0.277843 -0.312517 0.502632 -0.138024 0.425544 0.161168 0.090311 0.289838 0.401430 -0.168176 -0.105924 -0.129934 0.086036 0.165959 -0.048271 -0.341386 0.430448 -0.314704 -0.079551 0.467427 -0.262017 0.128096 0.098857 0.261031 -0.317417 0.516437 0.054909 -0.111612 0.560639 0.379847 0.394322 0.038312 -0.206563 -PE-benchmarks/topological-sorting.cpp__std::deque >::pop_back() = 1.531601 -0.726389 7.058717 4.616921 -2.107732 0.257746 0.004012 -4.104898 3.131025 0.453635 -1.350390 0.645213 -1.708091 1.141820 -1.536738 3.192971 -5.879440 -1.334698 -1.719239 -3.890558 -1.708611 -0.979198 1.734762 -0.226318 3.287229 2.529010 -1.843830 0.098942 -0.339394 -4.781523 1.520401 -1.036631 1.279126 0.364554 1.126782 -6.207301 4.805463 2.330465 -1.901161 -2.543264 2.132601 -1.162479 -0.892695 -1.120461 -0.972344 1.130432 -0.254040 3.222939 2.963361 1.914936 0.493258 1.208572 2.247870 5.767773 -1.898238 1.774932 1.157987 -1.073647 -0.892106 1.126813 0.496195 0.492730 0.308800 0.580121 1.036962 -4.363075 -0.306632 -1.664735 -1.526566 3.154214 -0.459868 -2.420158 -2.544776 -1.927146 -2.637573 -0.446745 -5.742516 3.991430 3.839007 -3.202917 1.340646 0.226595 -0.348165 0.194578 0.291856 0.236841 3.162071 1.098311 0.352880 -0.518115 -0.022465 -2.089128 2.109440 -1.810212 -1.861532 -6.368183 2.387753 -5.482241 -3.299693 0.948393 3.234088 -2.339073 -0.459997 -0.965421 0.886316 0.456679 -0.915311 -1.835055 0.916716 0.782702 0.121680 -0.175863 -0.412644 -0.456671 -0.229099 1.148153 -4.629237 2.162954 -0.512908 0.488549 -0.250834 2.452596 1.119701 -1.359873 0.012380 2.233063 -1.612227 3.685656 -1.292435 3.155864 -0.930147 3.501558 -0.256402 2.556561 2.553933 -1.742102 -0.780716 -0.183734 -1.895750 1.177831 -3.494674 0.866622 -2.181796 2.394518 2.318611 -1.878491 -2.868449 -0.776544 -3.085737 -4.226959 0.718689 -1.809773 -3.492568 1.029662 2.355177 2.857304 2.788689 1.384580 -2.874789 -0.296928 -0.602185 -0.110480 2.907200 -0.232935 2.343096 -1.801380 -1.106189 1.196220 0.013163 1.539957 -0.177449 0.192003 0.890926 -3.313101 0.371487 2.403411 1.722303 -0.468463 2.052098 3.493972 3.742716 -1.371685 0.239085 3.033481 -1.866917 -0.751311 1.280619 -2.977973 1.074397 1.225329 2.164945 3.385787 0.127106 0.289430 0.619473 -0.799443 0.633277 -1.699984 -0.638351 -1.418336 -0.360734 -1.201489 1.285897 -1.901753 -0.717502 -1.554611 -2.615649 3.629991 -4.856256 -1.743409 5.288503 -2.267192 1.709611 -2.745926 4.122212 -2.131151 1.954953 -0.292423 -0.116670 -0.027837 -1.690526 -3.910043 1.463389 0.692935 -0.058055 0.768365 3.653249 2.098333 0.316710 -1.238797 3.684215 -2.669262 4.363777 -1.590772 3.431130 -1.306267 -0.942737 -0.633763 -0.342461 -2.658646 -2.024862 1.747008 2.843530 0.068190 2.344066 1.896592 1.101686 4.058450 -1.822522 3.560025 -0.788843 0.285903 -1.816006 -1.822443 2.769337 1.481261 -1.140719 1.499930 -4.687216 -3.895224 -6.138298 -2.102114 -0.253024 -1.852790 1.643117 -1.596957 -1.145488 -2.212297 -3.225382 4.611174 -0.357213 -0.131782 2.307336 0.342854 2.015164 3.559269 -0.892033 0.641674 -0.895408 1.134642 1.400014 -1.192091 -3.377629 4.410788 -1.978557 -0.314694 5.140428 -2.295494 1.758173 -0.437284 2.077797 -3.094235 2.882261 0.354889 -1.723387 2.458593 3.822736 2.236363 1.216717 -1.978867 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_pop_back_aux() = 2.418695 -0.605600 8.449298 5.684099 -2.994820 0.291814 -0.770123 -5.172990 3.391475 -0.060291 -1.446978 1.342140 -1.364492 1.862308 -2.549783 4.301842 -7.280482 -1.057710 -2.262427 -4.919105 -2.395485 -0.324142 1.774780 -0.463921 3.931103 3.362122 -2.348063 0.239729 0.065746 -5.556669 1.492423 -1.166351 1.153441 -0.308678 1.432830 -7.646484 5.833763 2.765361 -2.580962 -2.968261 2.618415 -1.608242 -1.051168 -1.837015 -1.569710 0.875695 -0.747331 3.738212 3.342280 2.350245 0.226594 2.738649 3.284342 7.799255 -2.092582 2.232185 1.680281 -0.970779 -1.214721 1.231618 0.719854 1.080436 0.092244 -0.166195 1.666849 -5.828691 -1.348318 -1.914300 -0.833741 3.231877 -0.674292 -3.095589 -3.134122 -2.405127 -3.597650 -0.809559 -8.820068 4.952892 4.061265 -4.573266 0.888780 0.054273 -0.757618 0.904718 0.872620 0.497901 3.807367 1.645746 0.895431 0.042703 1.129212 -1.989402 3.287068 -3.187267 -2.821001 -9.689949 2.891043 -7.160275 -3.940077 1.562085 4.282776 -2.898591 0.440498 -2.193614 0.779012 0.314068 -1.833978 -1.837542 1.691191 0.867355 1.105890 -0.603151 -0.340399 -0.645960 0.501897 1.645963 -5.701457 3.234805 -0.308843 1.246902 0.084371 2.952474 2.351378 -2.249605 -0.577140 2.474984 -2.350288 4.854921 -2.149090 3.886326 -2.403490 5.320570 0.225896 4.092968 3.234728 -3.311892 -1.347556 0.071743 -2.485461 1.519183 -4.060906 1.235752 -2.740655 2.895641 2.259826 -1.530598 -3.423528 -1.104048 -4.215804 -5.022835 0.792876 -1.824085 -4.925926 1.472503 2.806849 3.497298 3.639246 0.278033 -2.685188 -1.017661 -0.811277 0.330231 4.124793 -0.566176 2.728358 -2.114796 -1.286804 1.812700 -0.288306 1.956777 0.004570 0.778856 1.353400 -3.503041 1.268859 2.809632 2.646305 -0.893267 2.947268 4.128979 4.121707 -0.899920 0.106332 3.327971 -2.828249 -0.492154 1.072128 -3.093309 0.794579 1.802659 2.681125 4.147627 0.147003 0.675234 0.599072 -0.721014 0.967436 -1.519651 -0.925194 -1.591825 -1.183680 -1.101499 2.187420 -2.043720 -0.466993 -2.221192 -4.011259 4.414152 -7.634722 -0.924569 6.301812 -2.665569 1.818156 -2.538729 5.059904 -2.655154 2.621989 0.137183 -0.117942 0.297442 -2.224461 -5.411759 2.146452 1.157884 -0.302013 -0.000358 3.936417 2.511088 0.348560 -1.747889 4.326890 -3.773921 5.580896 -1.919977 4.690573 -1.697247 -1.115617 -0.703240 -0.234074 -3.706531 -2.910002 2.726150 3.468295 -1.012380 3.504890 1.537900 1.321286 5.124534 -2.583171 4.452829 -1.414588 -0.473072 -2.386729 -2.203876 3.427185 1.847750 -0.742534 1.413303 -5.524610 -4.108287 -9.060203 -1.032670 0.339137 -2.026379 1.574532 -2.371162 -1.747318 -2.370865 -4.208818 6.268814 -0.963052 -1.817529 3.160859 0.630579 2.437616 4.072985 -0.647048 1.087179 -1.438013 1.060300 2.433384 -1.054132 -4.147260 5.602179 -2.072626 -0.829220 6.244432 -2.439525 2.337143 0.436508 2.111327 -2.962061 3.040167 0.031589 -2.206230 2.627376 5.850844 2.144766 1.392426 -2.381593 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__cmp(suffix, suffix) = 1.469264 -1.734144 6.187099 4.477317 -2.041453 0.245259 -0.315912 -1.720222 0.891711 0.510587 -1.298920 2.580243 -0.915106 0.461218 0.548756 2.663451 -5.189261 -1.146412 -0.519470 -1.464451 -1.392406 -0.189232 0.102919 1.611879 2.929649 4.001601 -1.742949 -0.179925 -0.030752 -4.116179 -0.593071 -0.631416 1.695393 2.429395 2.569455 -4.913472 3.256331 1.830061 -0.770859 -3.291192 1.377131 -0.153673 -0.284193 -1.603095 -1.416573 1.860631 1.586818 2.340934 1.305447 1.941009 -1.527961 -0.084525 3.155541 3.874653 1.153428 1.352483 2.609591 -1.672031 0.670822 -1.050709 0.942916 -1.257434 0.125115 -0.240458 0.840095 -2.670437 -1.056000 -1.687849 -0.401845 1.840433 0.560860 -1.817637 -2.715489 -2.325855 -2.296403 0.122515 -4.952894 4.209809 3.077472 -3.221116 1.716194 0.828325 0.465698 0.403596 0.666196 0.363428 1.920788 1.486343 0.110824 0.417478 0.067182 -3.535972 1.457173 -2.077204 -1.822867 -3.847818 1.612285 -4.685282 -2.833581 1.922771 1.987412 -1.971528 0.118155 -1.285074 1.025143 1.587419 -0.494681 -0.896633 0.544882 0.258199 -0.116677 -0.453242 -0.561924 1.350466 -0.600133 1.872656 -3.989858 2.270446 1.038144 0.267820 0.945080 1.873130 1.078028 0.497927 -0.586713 0.933287 -0.822790 3.989818 0.989387 1.814838 -0.478532 1.761059 0.823663 2.789409 1.906582 -1.478034 -1.232665 -0.907062 -0.525314 1.497058 -1.219341 0.858764 -1.156370 3.340067 1.886520 -0.906869 -3.544086 -2.539876 -3.729926 -2.695559 0.494056 -1.364200 -1.534533 3.592431 1.672212 1.457378 1.214447 0.357531 -2.351177 -0.410949 -0.422013 0.672684 1.211439 0.540178 1.346501 -1.698295 -0.363948 1.952817 0.687187 1.755728 0.214555 -0.241283 1.790225 -1.510715 -0.611419 3.017585 1.764444 0.263116 2.087706 2.555740 2.761124 0.657962 -1.634925 1.286537 -1.269097 -1.358062 1.023818 -2.206860 1.296523 0.183210 1.645462 2.879076 -0.083077 0.279428 1.582521 -0.225198 -0.088176 -0.707448 0.435745 -0.881573 -0.144938 -0.353720 0.783120 -1.783222 -0.171157 -1.768426 -2.008344 4.019868 -4.744005 -1.541144 2.812537 -2.864168 2.108608 -2.326725 3.663666 -1.446710 1.710773 0.599642 -1.308519 0.025028 -2.948199 -2.281440 0.711043 0.956978 -0.009537 -1.227981 1.909009 1.295272 -0.729310 -0.185452 1.972435 -1.468568 3.546824 -0.480598 1.893808 -1.241542 0.541817 -1.133529 0.228238 -1.506167 -0.593764 0.595353 1.747974 -1.004957 2.214744 1.315743 0.928823 2.271833 -2.138942 1.618448 -0.890179 1.604834 -2.296838 -1.937478 0.880570 1.998986 0.033887 0.887228 -3.626624 -2.633119 -6.080533 -1.167804 -2.137885 -0.634377 1.994132 -1.335145 -1.589474 -0.973072 -2.834873 3.931867 0.279253 -1.410175 2.282230 -0.259425 2.767416 1.851874 0.072166 -0.572188 -1.017588 0.659731 1.262854 0.299132 -2.912784 2.626056 -2.385713 -0.034060 4.673950 -1.868989 1.676386 -0.788902 2.668358 -2.746643 2.549411 0.471411 -3.458135 0.258353 3.855999 0.258913 -0.895745 -2.310834 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -2.436637 -13.489570 26.273356 18.881853 -5.078997 4.993274 5.775445 -5.030765 1.780665 7.209259 -6.580066 12.823887 -11.402102 -1.044253 3.122523 5.655756 -18.924214 -9.429037 -0.720455 -5.762202 -7.087655 -5.359594 -5.009566 15.554232 12.058051 8.762816 -7.497900 -1.553461 -11.348923 -17.153023 -6.097507 -1.549035 9.665802 7.450524 11.913823 -26.653147 11.562541 13.605886 -0.962122 -14.446289 5.680405 -4.501330 -0.569397 -2.106630 -6.951941 7.864057 11.330671 9.024839 5.478962 6.410117 -1.346590 -5.822710 11.935498 20.392217 6.132185 11.266992 14.768946 -8.017409 3.415564 -3.967142 2.291202 -11.601714 4.576144 0.898408 -2.446937 -8.200193 0.044302 -5.621029 -3.869809 7.438883 8.325223 -8.505091 -10.533130 -10.922263 -11.464017 -5.008963 -8.294940 12.972069 19.190139 -13.088094 16.591604 7.848736 7.394434 1.093954 9.262222 0.248423 13.531440 3.908522 -5.314982 3.111413 -7.983682 -11.918244 1.170792 6.022067 -7.981374 -11.981816 6.559938 -19.869372 -19.001817 9.853701 2.189997 -9.417312 -4.719179 -1.026130 5.882513 5.089474 -3.715473 -11.079436 -5.293839 4.102055 -7.488493 -2.936521 -2.574523 3.709427 -2.026540 4.034762 -18.123608 7.552328 7.868320 -4.521367 -1.523421 13.623665 2.710416 11.702109 0.746482 4.961007 -1.314792 13.677404 8.610992 4.051721 -1.860643 -2.168676 -7.675597 3.449302 5.352067 -3.210911 -8.263558 -6.864884 2.295335 7.207306 -1.612454 8.658961 -2.652376 22.127864 9.236871 -6.425343 -14.382647 -13.809186 -14.074235 -11.261604 3.285053 -6.534225 -9.948811 6.114801 8.838209 3.324272 0.998456 7.120320 -5.249689 6.425827 -0.092634 -1.287767 3.232225 -1.725769 8.425206 -10.542705 -5.247930 8.763155 7.603442 10.319422 0.592852 -2.463188 5.749610 -7.904513 -9.247631 8.477034 4.125955 2.463859 14.626111 13.455851 29.215404 -4.427117 -3.083032 2.740351 -4.147938 -4.702349 4.773528 -12.328116 6.646812 1.780648 0.220824 18.772395 0.368163 -4.963199 9.564122 -0.162003 0.937507 -11.168409 7.301851 -7.012092 3.521953 -4.880141 -0.097936 -10.666232 -4.492313 -10.617438 -6.354396 20.474042 -17.530631 -13.829468 9.704627 -4.927317 11.568464 -20.039608 20.676787 -7.164841 10.699869 -4.207671 -9.504535 1.631752 -4.018395 -4.822509 6.912278 4.316578 -4.461751 1.483160 9.232885 4.733379 2.720719 1.975988 9.675193 -2.774235 8.615867 -5.179240 7.982306 -2.743641 -0.300874 -6.712816 -1.577923 -0.836196 5.396952 0.179078 2.915215 4.561614 2.124683 3.399514 10.368461 5.370046 -7.626513 3.128188 -3.175841 13.381784 -12.622112 -9.622092 -1.721894 7.461037 1.570852 5.012627 -21.396167 -12.102623 -17.302382 -12.518129 -10.472391 4.481810 8.518232 2.799960 -4.245149 -12.789745 -11.292650 19.332557 1.014630 5.822157 10.555909 2.401531 16.030906 9.164448 4.614415 -5.970203 -1.628320 4.467813 -0.692459 0.464234 -11.590991 8.730582 -13.961805 9.471073 16.926481 -8.001040 9.191649 -3.682542 13.760998 -17.729056 17.082740 5.548900 -18.984975 2.770907 17.339216 6.685091 -9.883616 -10.806948 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::sort(suffix*, suffix*, int (*)(suffix, suffix)) = 0.010073 -0.481443 2.128567 1.496111 -0.484139 0.015106 0.540143 -0.953320 0.890385 -0.093378 -0.241999 0.322726 -1.047050 0.464790 -0.427262 0.974713 -1.773950 -0.757899 -0.371374 -0.994979 -0.292759 -0.371329 1.000678 -0.016434 1.166098 0.616121 -0.694353 -0.686033 -0.782276 -0.756446 0.929794 -0.500689 0.853946 0.415237 -0.223621 -2.741807 1.209850 0.743499 -0.717948 -0.898935 1.073979 -0.766722 0.091516 -0.792036 -0.498132 0.153711 0.052422 0.606618 1.048201 0.489178 0.124676 0.374071 0.502382 1.998212 -1.047482 0.523332 0.367949 -0.354811 -0.576236 0.023367 0.170066 0.133423 0.521124 0.297048 -0.121933 -1.459550 -0.371686 -0.960174 -1.095773 0.795586 -0.160832 0.016733 -0.935247 -0.150665 -0.821517 -0.306874 -0.750843 1.224984 1.388947 -1.115544 0.761990 -0.151375 -0.165679 -0.116786 0.026451 0.414909 0.431886 0.278861 0.124235 -0.392894 -0.513621 -0.209968 0.434758 -0.099877 -0.304454 -1.829322 0.809582 -0.884914 -1.131529 0.152045 0.846674 -0.599842 -0.507593 -0.189450 0.096232 0.732277 -0.652288 -0.884633 0.006021 0.076957 0.309929 -0.206890 -0.189409 -0.274748 -0.480847 -0.667782 -1.492823 0.494736 -0.313661 -0.266584 -0.214111 0.813328 -0.319307 -0.218518 0.076813 0.792783 -0.749871 1.415075 -0.322992 0.751864 0.310545 0.453983 -0.264666 -0.057206 0.923453 1.188968 -0.531301 -0.259689 -0.972038 0.163925 -0.972756 -0.308220 0.192626 0.750731 0.985604 -0.842765 -0.810772 -0.202109 -0.443596 -1.736461 0.209801 -0.742249 -0.154569 0.815811 0.832267 0.554472 1.109338 1.506911 -0.823125 0.366134 -0.073756 -0.469142 1.230484 0.340573 0.914776 -0.599693 -0.592172 0.370526 -0.054192 0.582308 -0.127098 0.383321 0.218193 -1.286382 -0.187157 0.378355 0.603123 -0.290290 0.648860 0.916770 0.933433 -0.711363 0.188860 1.025384 -0.513598 -0.099774 0.393451 -1.119832 0.479874 0.356684 -0.250781 0.904038 0.075699 -0.636405 0.418447 -0.357716 0.267947 -0.695761 0.018028 -0.552816 -0.138326 -0.813187 0.003012 -0.385439 -0.627596 -0.490491 -0.545999 1.346785 -1.073311 -0.662989 1.113648 -0.247408 0.577637 -1.584678 1.794761 -0.861619 0.816558 -0.406338 -0.186746 0.056038 -0.094881 -1.173035 0.173608 0.336059 -0.112751 0.352439 1.518733 0.845806 0.016756 -0.312535 1.300892 -0.270493 1.413263 -0.354116 1.126588 -0.406469 -0.535579 0.265921 -0.169663 -0.560448 -0.500376 0.518996 1.449075 0.463588 0.852480 1.038398 0.552279 1.607063 -0.634124 0.888568 -0.266974 0.788688 -0.300948 -0.438758 0.605269 0.837217 -0.277137 0.753664 -1.494945 -1.961294 -1.156655 -1.215181 0.258948 -0.333950 0.426786 -0.450814 -0.071309 -1.264497 -0.813782 0.395747 -0.417148 0.986267 0.738022 0.145360 0.767326 1.122134 -0.776801 -0.128555 0.184892 0.759439 0.439232 -0.187629 -1.230296 1.147510 -0.967984 -0.060367 1.605253 -0.734931 0.328935 -0.317137 1.231336 -0.896448 1.581526 0.192951 -0.644552 1.397080 1.003634 0.842198 0.628582 -0.589535 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::push_back(int const&) = 1.294852 -1.217723 8.898397 5.935895 -2.005821 0.503435 0.570240 -5.162289 3.937113 0.370815 -1.298674 1.554762 -2.627053 1.749865 -2.835356 4.060358 -7.014887 -2.324940 -2.145353 -5.030538 -2.195127 -1.117572 2.371184 -0.175259 4.385669 2.096998 -2.861687 -0.693057 -2.368787 -5.407665 1.999329 -1.353131 1.858671 -0.855411 0.730531 -8.636268 5.871371 3.464404 -2.647756 -3.480795 3.350588 -2.538296 -0.776883 -1.852477 -1.115238 0.894012 -0.360552 3.156463 3.975609 2.234717 0.932760 2.561979 2.252426 8.326852 -3.257348 2.658673 1.690730 -1.046436 -1.629431 1.434774 0.567322 0.708064 0.959886 0.439416 0.502979 -5.907681 -0.882050 -2.197467 -2.133534 3.595938 -0.442974 -2.740446 -3.239188 -1.788250 -4.103327 -1.068803 -5.771329 4.647821 4.951034 -4.356356 2.039719 -0.123768 -0.266634 0.432174 1.082375 0.565765 3.892240 1.350811 0.412818 -1.190054 -1.086883 -1.245529 2.277086 -1.413883 -2.404347 -8.309799 3.238765 -6.657700 -4.802464 1.155516 3.903703 -2.970103 -1.226533 -1.153341 1.054892 1.063977 -1.826553 -2.931162 0.702431 1.257024 0.542299 -0.783435 -0.182672 -1.803698 -0.356107 0.217353 -6.052750 2.822276 -0.411472 0.390493 -1.361452 3.597179 0.649249 -1.647707 -0.133043 3.066932 -2.508816 4.592472 -2.041984 3.744579 -1.070556 3.791137 -1.643890 2.402378 3.212964 -0.679038 -1.916399 0.140840 -3.015440 1.329359 -4.326513 0.833239 -2.401625 3.531625 2.783959 -2.663169 -3.543363 -1.048380 -2.879820 -5.512010 0.859067 -2.221635 -4.253121 0.919225 3.256284 3.412770 3.883063 2.807997 -2.856480 0.234846 -0.288581 -0.512935 4.629345 -0.948707 3.299471 -2.592952 -2.039828 1.748552 0.090808 1.986422 -0.398346 1.141798 1.113229 -4.549549 0.139961 2.088126 2.329831 -0.683166 3.354831 4.387817 4.616223 -2.890239 0.595611 3.710018 -2.767845 -0.418976 1.050431 -3.898626 1.120996 2.003166 1.864612 4.926808 0.292933 -0.859782 0.978327 -0.716534 1.320888 -2.395127 -0.404833 -2.146722 -1.043817 -1.692670 0.943832 -2.138704 -1.262964 -2.448900 -3.875329 5.069725 -6.138409 -2.832624 6.283519 -2.314697 2.132330 -4.925266 5.605713 -3.133245 2.792923 -0.561470 0.216062 0.024124 -0.766514 -5.530899 2.283875 1.279090 -0.984524 1.570955 5.234801 2.832622 0.907014 -1.740276 4.783572 -3.078388 5.484033 -2.124719 4.964560 -1.731061 -2.043442 -0.324608 -0.566733 -3.058734 -2.380854 2.482426 3.831124 0.459819 3.105686 2.374814 2.296655 5.751288 -2.599826 4.494194 -1.366724 0.719641 -2.071648 -2.308381 3.205237 1.830847 -0.815096 2.120036 -6.258969 -5.572678 -7.177653 -3.686012 1.163648 -2.118093 1.520755 -1.954041 -1.331339 -4.176833 -4.082207 4.820545 -0.931305 1.061234 3.298769 0.812613 2.757825 4.545873 -1.715940 0.821443 -0.930587 1.589074 1.824024 -1.850448 -4.343463 5.530554 -2.843655 -0.059272 6.421439 -2.694707 2.286402 -0.151037 2.531503 -3.663494 4.513173 0.490564 -2.387228 3.727331 5.110942 3.625325 1.284665 -2.601515 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::~vector() = 0.682113 -0.754541 4.660507 2.687766 -1.164030 0.216191 1.078863 -2.609550 2.478800 -0.013092 -1.028568 -0.027124 -2.041359 0.632138 -1.939394 1.564908 -3.965549 -1.520013 -0.982877 -2.466823 -0.939415 -1.293394 1.817509 -0.176364 2.341977 1.357769 -1.094819 -0.533285 -1.447557 -2.235804 1.886783 -0.871452 0.850017 0.269977 0.253385 -4.134673 2.958188 1.601875 -1.350606 -1.764793 1.738577 -1.152498 -0.584274 -0.866556 -0.244096 0.392354 -0.048155 2.861929 2.234433 0.969870 0.510479 0.296511 0.623535 4.279986 -1.996062 1.283711 0.679390 -0.414165 -0.587211 1.146728 0.233818 0.220132 0.337389 1.051971 0.179002 -2.437514 0.168317 -1.639666 -1.580186 2.433105 -0.351341 -0.904174 -1.744493 -0.734871 -2.050066 -0.155494 -3.164333 2.671740 3.164577 -2.091949 1.489785 0.015013 0.192960 -0.378445 -0.030605 0.244657 1.913055 0.523515 -0.026645 -1.038987 -1.514109 -0.566625 0.834680 -1.063519 -0.834517 -4.243436 1.925379 -3.470730 -2.467917 0.179718 1.856431 -1.558186 -0.167073 0.366923 0.553150 0.438323 -0.934435 -1.824733 0.149230 0.581125 -0.285457 0.232960 0.309924 -0.357336 -0.527969 -0.418594 -2.905688 0.956611 -0.662396 -0.342692 -0.404570 1.898921 -0.042114 -0.497566 0.441268 1.526502 -0.944824 2.293472 -0.676821 1.713105 0.030135 1.831073 -0.657881 1.072482 1.835042 0.636797 -0.558666 0.279467 -1.222456 0.699187 -2.483603 -0.206188 -1.375610 1.215223 1.027274 -2.253783 -1.853153 -0.255967 -1.269204 -3.136535 0.373338 -1.362077 -2.181166 0.286678 1.785719 2.334622 1.907682 2.203140 -2.150024 0.324305 -0.146168 -0.527784 1.787931 -0.029035 1.790324 -1.270184 -1.159247 0.314692 -0.177244 1.069604 -0.407210 0.099605 0.095976 -2.930526 -0.059492 1.003394 1.241146 -0.580093 1.338583 2.444850 1.304173 -2.130578 0.437920 2.425418 -1.047909 -0.586481 1.003610 -2.549724 1.200574 0.785083 1.054015 1.952979 0.212647 -0.214516 0.704667 -0.853677 0.609609 -1.583295 -0.751547 -1.166727 -0.539869 -1.432293 1.082689 -1.069393 -0.914399 -0.985220 -1.742828 2.426544 -2.678187 -1.504301 3.451649 -0.856423 1.360267 -2.377148 2.759078 -1.519642 1.456228 -0.101561 0.293737 -0.123248 -0.400594 -2.332630 0.675845 0.266972 -0.210639 1.447193 2.922963 1.550390 0.562576 -0.596769 2.905086 -1.613407 2.485692 -1.174091 2.045101 -0.770352 -1.693955 0.185770 -0.482140 -1.419055 -1.136138 1.340370 2.857941 0.934816 1.600143 2.240909 0.809388 2.978795 -1.050961 1.998637 -0.413195 0.810617 -1.011918 -1.112248 1.674118 0.926665 -1.125714 1.309189 -3.403043 -3.834661 -3.171046 -2.539829 0.264925 -2.372111 1.024009 -0.896979 -0.287107 -2.302681 -2.013303 1.894062 -0.434500 1.002631 1.599522 0.263490 1.394409 2.723523 -1.418488 0.564608 0.328788 1.624791 0.481892 -1.000893 -2.448922 2.573548 -1.966751 0.128956 3.497744 -1.599707 0.976612 -0.742833 1.838518 -2.518619 2.552696 0.645473 -1.228106 2.203837 2.091384 2.260818 1.811434 -1.327901 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__kasai(std::__cxx11::basic_string, std::allocator >, std::vector >) = -3.334396 -8.770688 16.710182 9.715560 0.067865 2.995860 7.735107 -3.168710 3.641045 2.641028 -4.409799 6.443228 -10.222309 -1.390923 -2.934439 0.165054 -10.429878 -9.783152 -0.632733 -4.059903 -3.811405 -5.779762 -0.461713 9.218742 8.220880 0.115730 -5.399418 -3.072517 -14.853253 -5.386626 -0.124546 -1.143965 5.533852 0.048158 4.838340 -15.389403 6.414323 8.713393 -0.943053 -8.831314 5.346795 -4.776131 -0.670643 -1.380125 -1.736751 2.512951 7.522516 7.289131 4.861030 2.779940 0.931927 -4.570184 0.874711 15.917703 -0.568286 7.612378 9.263698 -3.198449 1.462073 0.516430 0.509002 -7.965077 3.031060 2.918390 -4.478927 -3.450228 3.215385 -5.126482 -4.528081 6.259718 5.315596 -3.754940 -5.170276 -4.555014 -9.271822 -2.633755 3.974893 6.816428 13.932023 -7.817574 12.200719 3.812249 7.389117 -0.209413 4.355121 0.186508 7.364217 1.170179 -4.504806 -3.143905 -14.575191 -1.967518 -3.097370 5.031920 -3.039563 -5.622252 5.901257 -12.515178 -13.401317 3.559261 0.353753 -5.892987 -3.712386 4.641388 3.910605 3.312277 -2.303485 -8.984076 -5.294663 3.882880 -6.865038 0.016892 1.227420 -0.870132 -2.685940 -3.044193 -11.352464 3.613997 3.703041 -4.750558 -4.454022 10.108192 -4.915608 8.569468 2.461477 4.326649 -0.765474 6.522534 5.949288 0.344136 1.417333 -4.935337 -9.247146 -1.473605 2.933920 6.684708 -6.108186 -0.932833 1.025925 3.617112 -2.358605 2.585800 -2.709114 12.089352 1.575329 -9.262841 -9.251001 -7.446897 -4.887374 -7.758035 1.487028 -4.440370 -7.524045 0.391468 6.074771 5.819282 0.706161 11.975854 -3.230602 6.840217 1.829975 -3.512376 1.329587 -4.086689 6.748606 -7.373659 -5.330566 3.291146 3.868593 5.156347 -0.806867 -1.373641 1.873898 -9.895222 -7.092202 0.909161 2.297433 1.395883 8.769161 9.244799 12.329839 -10.602177 -0.569084 3.488311 -2.074316 -3.503618 3.111115 -9.507205 4.753368 1.689673 -0.803470 12.303185 1.640062 -6.229940 6.500465 -0.824420 2.018116 -8.349265 3.177922 -4.853481 0.378256 -4.552993 -0.408958 -6.534036 -3.751092 -6.726695 -5.806016 12.719390 -7.349401 -13.115747 6.262431 0.821531 8.329436 -16.396170 11.975881 -4.923229 9.172066 -1.197454 -2.757443 -0.120289 1.423196 -2.964452 5.112127 1.382932 -4.004442 6.479024 8.586154 3.692788 4.916682 1.524025 7.669347 -1.890988 4.127017 -3.801135 3.657938 -2.035963 -7.119847 -1.582066 -1.748579 0.787396 4.043580 0.956820 3.729440 7.141609 1.332041 6.114122 8.052489 5.056686 -4.153354 0.536784 -1.587746 10.510748 -6.673768 -6.026215 -0.799986 3.430332 -0.129330 3.946473 -14.602014 -12.795960 -6.415567 -15.900789 -2.197599 -3.316763 3.093395 2.029081 -1.340196 -12.514205 -6.153313 5.472799 0.535006 11.876029 7.263334 1.932524 10.033417 7.798333 -2.278299 -2.493144 3.577728 5.873268 -2.790008 -2.155740 -8.727622 4.912248 -10.326315 7.041819 11.198907 -5.060749 5.300723 -3.084701 6.428337 -12.926202 13.410765 4.848028 -12.183252 4.023783 7.279051 9.286035 -2.516533 -6.817722 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::size() const = 0.492760 -0.633217 2.407654 1.666429 -0.468103 0.544625 -0.199468 -1.033112 0.457096 0.402377 -0.366034 0.776471 -0.631469 0.445464 -0.682746 0.803463 -1.494142 -0.281470 -0.667859 -1.016523 -0.345365 -0.196784 -0.062164 0.533237 1.028265 0.712809 -0.644540 0.235101 -0.825330 -1.842449 -0.037275 -0.155533 0.426510 -0.538698 0.737973 -1.487882 1.531758 1.290033 -0.380970 -1.166588 0.700684 -0.322638 -0.257948 -0.161033 -0.205419 0.584677 0.156056 0.515073 0.718857 0.697294 -0.231749 0.459765 1.128042 1.669838 -0.297537 0.811046 0.805201 -0.316745 0.265305 0.092516 -0.161930 -0.010067 -0.170062 -0.290963 0.347651 -1.339106 -0.228183 -0.075396 -0.013628 0.599626 -0.240498 -0.868801 -0.836856 -0.819790 -1.400118 -0.051909 -2.084338 1.103294 1.195129 -0.919303 0.608936 0.022520 -0.114677 0.570751 0.629058 0.248589 0.518380 0.487206 -0.005212 0.303142 0.171351 -0.242125 0.575736 -0.264711 -1.045845 -2.139153 0.816129 -1.975390 -0.976543 0.760732 0.600752 -1.010122 0.202587 -0.736966 -0.111794 0.285524 -0.601396 -0.649906 0.392476 0.628706 0.555626 -0.219725 0.300068 -0.335770 0.103818 0.297447 -1.197684 0.956403 0.289353 0.126431 -0.186841 1.071100 0.711156 -0.039437 -0.122791 0.782198 -0.672109 1.105503 -0.056781 1.068745 -0.992202 0.988144 -0.413409 0.705192 0.733165 -0.938357 -0.628672 0.129898 -0.498391 0.427160 -0.428639 0.635447 -0.731890 0.854029 0.594994 -0.417165 -0.665295 -0.524200 -1.093121 -0.963689 0.008930 -0.199802 -1.586010 0.290825 0.713587 0.492352 0.622742 0.288779 -0.594498 -0.596516 -0.228460 -0.196670 0.783300 -0.429969 0.471985 -0.640178 -0.500941 0.600476 0.181769 0.527036 0.172908 0.171839 0.509347 -0.546672 0.767759 0.816795 0.616039 -0.457313 1.260198 1.286746 0.999871 0.169570 -0.337869 0.578625 -1.094785 -0.071236 0.112836 -0.814624 0.224483 0.652275 0.402586 1.359758 -0.040559 0.073781 0.822420 -0.307132 0.298625 -0.514732 0.248893 -0.639880 -0.345543 -0.349132 0.210070 -0.477268 -0.210996 -0.882244 -0.953563 1.272474 -1.900112 -0.177628 1.066745 -0.119723 0.208397 -0.792345 1.236475 -0.648526 0.851124 0.615531 0.094039 0.206539 -0.037741 -1.189896 0.294390 0.389648 -0.470151 0.301192 0.806217 0.531235 -0.278802 -0.310764 1.051977 -0.993760 0.934999 -0.734035 0.819201 -0.473770 -0.074617 -0.276912 -0.072086 -0.760813 -0.666006 0.431330 0.139312 -0.381266 0.628624 -0.035688 0.667756 0.949690 -0.283118 0.886373 -0.628380 0.095858 -0.872285 -0.663580 0.483983 0.801962 0.344220 0.438305 -1.703769 -0.889658 -2.139740 -0.392510 0.060792 -0.147534 0.216698 -0.168942 -0.521152 -0.922715 -1.321836 1.860678 -0.169437 -0.407225 0.924032 0.170847 0.681742 0.823296 0.145383 0.179810 -0.403113 0.390329 0.516797 -0.071084 -0.746591 1.293458 -0.785273 -0.216133 1.589664 -0.698576 0.874160 0.239349 0.207077 -1.216117 1.064842 0.242981 -0.783458 0.531885 1.753003 0.778779 -0.163282 -0.565556 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(unsigned long, int const&, std::allocator const&) = -0.817602 -0.598917 2.987670 1.147809 -0.617027 -0.120598 1.451259 -1.291831 1.292870 -0.525376 -0.211655 0.074667 -1.901524 0.351568 -1.508030 0.494436 -2.127395 -1.494138 -0.623643 -1.741233 -0.874466 -0.938051 1.432310 0.239802 1.514338 0.136069 -0.768955 -0.952513 -1.578715 -1.339472 1.243022 -0.437422 0.819835 -0.410707 -0.100067 -3.908393 1.392761 0.748215 -0.959719 -0.932433 1.693062 -0.757424 -0.020459 -0.310828 -0.559713 0.028273 0.581469 1.395749 1.513860 0.738567 0.683211 -0.025720 -0.133301 3.424366 -1.534630 0.810533 0.800371 -0.211375 -0.705736 0.589087 -0.344610 -0.587848 0.184638 0.505803 -0.535141 -1.101134 0.485842 -1.442879 -1.462908 1.445463 -0.157261 -0.599528 -0.927664 -0.604290 -1.757735 -0.524398 -0.286116 1.320556 2.293938 -1.765259 1.181407 -0.104627 0.298054 -0.140958 -0.202738 0.191798 0.730798 0.009204 -0.154725 -0.994918 -1.531499 0.384253 -0.513559 0.305729 -0.066786 -2.630674 1.543138 -2.040477 -1.886787 0.165345 0.659454 -0.932648 -0.983987 0.286297 0.294191 0.536911 -1.043930 -1.648314 -0.862740 0.503722 -0.053818 0.655581 0.554202 -0.434007 -0.561214 -1.054205 -2.215993 0.718456 -0.373964 -0.740100 -1.047394 1.419606 -0.826857 0.644441 1.017705 1.603247 -0.871457 1.908153 0.313345 0.442523 0.138890 0.322369 -1.213841 -0.517938 0.820602 1.854527 -0.769566 -0.072723 -0.977752 0.082557 -1.546919 -0.484891 -0.530565 0.991878 1.038504 -1.771071 -1.528535 0.003847 -0.435205 -2.557565 0.361920 -1.207523 -1.006199 0.461795 0.651928 1.441885 0.888439 2.694869 -0.891078 0.915200 0.063591 -1.189383 0.759361 -0.386476 1.600108 -1.011362 -1.099975 -0.037908 -0.145565 0.846861 -0.302665 -0.054738 0.081152 -2.458185 -0.817422 -0.060214 0.855407 -0.397098 0.699382 1.629359 1.273168 -2.036240 0.006370 1.426056 -0.880493 -0.399016 0.669443 -1.637245 0.618702 0.577548 -0.387695 1.470345 0.392979 -0.833117 1.207983 -0.601432 0.614739 -1.235216 -0.313499 -0.933341 -0.459136 -1.250937 -0.115199 -0.834588 -0.518670 -0.550761 -1.423462 1.685979 -1.622170 -1.596122 1.822557 0.125611 1.381538 -2.789967 2.501496 -0.806479 1.545806 -0.354935 0.392363 -0.353970 0.370429 -0.710381 0.719472 -0.237776 -0.242401 1.223286 2.590429 0.809796 0.847288 -0.057998 2.254385 -0.642923 1.527027 -0.551253 1.278627 -0.808435 -1.943347 0.565636 -0.066416 -0.755373 -0.342619 1.055618 1.731002 1.073239 0.445483 1.789427 1.382217 2.059461 -0.476290 0.837795 -0.350553 1.457468 -0.838150 -0.819752 0.864772 1.112318 -0.674861 0.807091 -2.270951 -3.211339 -1.834775 -3.034519 0.381790 -1.271463 0.414855 -0.565411 -0.140842 -1.890178 -0.873161 0.828630 -0.235001 1.918000 1.304278 0.393125 1.540296 2.352334 -1.260088 -0.057386 0.965989 1.250492 -0.016639 -0.505269 -1.688251 0.896094 -1.577044 0.245849 1.982315 -0.783320 0.644183 -0.380404 1.195184 -1.940408 2.293861 0.419096 -0.903392 2.141635 1.300887 1.669152 1.262948 -0.583461 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::operator[](unsigned long) = 0.110472 -0.333707 1.662834 1.169146 -0.365610 0.113372 0.140748 -0.875319 0.677956 0.313364 -0.223731 0.338679 -0.576629 0.331357 -0.435874 0.877202 -1.206208 -0.387876 -0.387508 -0.887080 -0.448684 -0.232813 0.427341 -0.029572 0.860481 0.414031 -0.512439 -0.168227 -0.377735 -1.234746 0.176562 -0.235308 0.388139 -0.185557 0.146509 -1.640994 1.059531 0.747030 -0.484613 -0.714217 0.632136 -0.405275 -0.023030 -0.211318 -0.261946 0.232352 0.012976 0.409573 0.722701 0.529760 0.337010 0.378805 0.679760 1.587467 -0.477935 0.551321 0.354824 -0.209267 -0.299775 0.172063 0.121178 0.065521 0.177134 0.018560 0.167172 -1.052605 -0.307645 -0.362520 -0.420747 0.604283 -0.253052 -0.581361 -0.696258 -0.492556 -0.671171 -0.255609 -1.534362 0.836225 0.960130 -0.900152 0.444819 0.046526 -0.141758 0.103660 0.201864 0.099678 0.591730 0.263526 0.081684 -0.049910 0.266364 -0.243983 0.457964 -0.129111 -0.527530 -1.544769 0.686348 -1.062546 -0.937838 0.344044 0.676050 -0.535282 -0.220103 -0.274810 0.061118 0.289289 -0.463402 -0.608188 0.065190 0.190904 0.323768 -0.176668 -0.101441 -0.290262 -0.107555 0.136914 -1.143421 0.498381 -0.062395 -0.042342 -0.256135 0.673900 0.278169 -0.161906 -0.016418 0.578356 -0.429290 1.054258 -0.249522 0.801414 -0.361356 0.808182 -0.463874 0.440564 0.639883 -0.298857 -0.369073 0.072979 -0.537208 0.202773 -0.713858 0.281121 -0.389894 0.729452 0.798107 -0.402246 -0.686255 -0.217153 -0.665333 -1.099674 0.200075 -0.436106 -0.616044 0.277658 0.595633 0.522628 0.661396 0.640392 -0.572591 -0.089590 -0.083466 -0.229256 0.813912 -0.079115 0.614977 -0.498877 -0.408642 0.374917 0.189437 0.396801 0.011046 0.246031 0.228608 -0.744292 0.171533 0.508912 0.449584 -0.236977 0.666225 0.800494 1.142961 -0.303880 0.044162 0.633931 -0.499810 -0.040481 0.161296 -0.786621 0.232839 0.324938 0.253645 0.839308 0.048817 -0.056807 0.324375 -0.302268 0.238792 -0.503335 0.067014 -0.452309 -0.158710 -0.350483 0.155613 -0.351977 -0.223660 -0.363903 -0.566078 0.987844 -1.170477 -0.291254 1.035351 -0.324092 0.276898 -0.807761 1.358664 -0.567017 0.566835 -0.190510 -0.072302 0.045473 -0.044488 -0.820664 0.298112 0.262498 -0.117406 0.146605 1.004324 0.478039 0.020576 -0.280160 0.922473 -0.539764 1.030745 -0.335062 0.952682 -0.260310 -0.248086 -0.069017 -0.110890 -0.560325 -0.421696 0.348522 0.768432 0.071957 0.401524 0.344913 0.385914 1.080085 -0.484495 0.897881 -0.220324 0.312590 -0.480601 -0.427659 0.551950 0.492563 -0.130920 0.356280 -1.157748 -0.934943 -1.334840 -0.509646 0.080090 -0.160523 0.324884 -0.383861 -0.283309 -0.637979 -0.848117 1.178363 -0.235581 0.035186 0.531802 0.176623 0.595983 0.823780 -0.136810 0.129480 -0.307687 0.203710 0.386590 -0.268905 -0.622557 0.930892 -0.617446 -0.073341 1.087683 -0.479149 0.451131 0.152741 0.432826 -0.725910 0.837113 0.068507 -0.365086 0.807588 1.138139 0.695155 0.033631 -0.479523 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__printArr(std::vector >, int) = -0.427767 -1.116723 1.874272 1.331558 -0.076595 0.397331 0.560095 -0.314449 0.472742 -0.016087 -0.583213 0.857744 -1.315867 0.043199 -0.113697 -0.028683 -1.445727 -1.262251 -0.121427 -0.249186 -0.432115 -0.813064 -0.158120 1.254798 0.780838 0.643373 -0.785804 0.039654 -1.897067 -0.390612 0.082622 -0.135027 0.819906 0.729232 0.743971 -1.855673 0.696898 1.143256 -0.011000 -1.323856 0.516579 -0.975271 0.056970 -0.629604 -0.141387 0.511417 0.775913 0.787251 0.528557 0.031529 -0.276666 -0.483188 -0.202375 1.340320 -0.079537 0.829629 1.123468 -0.395051 0.102033 -0.349234 0.121920 -0.771170 0.571751 0.509463 -0.987401 -0.539669 0.290066 -0.749680 -0.672009 0.852031 0.739759 -0.153205 -0.823990 -0.648519 -1.145697 -0.254597 0.811244 0.967905 1.690772 -0.896055 1.368297 0.383828 0.962179 0.041315 0.816841 0.051095 1.178515 0.172557 -0.583926 -0.291444 -2.003204 -0.495314 -0.351564 0.619009 -0.339435 -0.190962 0.424658 -1.711161 -1.521144 0.260822 -0.079725 -0.603779 -0.670802 0.691771 0.625220 0.628173 -0.029461 -1.035667 -0.398403 0.531209 -0.762624 -0.157711 0.066080 0.129675 -0.485963 -0.702626 -1.489285 0.381962 0.511287 -0.530850 -0.182926 1.272406 -0.812969 0.863787 0.169413 0.230603 -0.112139 1.101145 0.593274 -0.150673 0.268597 -0.901376 -0.812393 -0.157565 0.266608 1.223518 -0.992772 -0.307771 0.160489 0.320428 -0.391429 -0.186763 -0.353002 1.294348 0.359086 -1.143781 -1.092374 -1.085387 -0.738403 -1.062693 0.052554 -0.572352 -0.505936 0.313431 0.861723 0.839488 0.224213 1.763937 -0.582519 0.799472 0.262935 -0.379044 0.354951 0.075361 0.729243 -0.881955 -0.702491 0.734367 0.234006 0.599336 -0.005488 -0.133497 0.213228 -1.109073 -1.008295 0.632404 0.371408 0.599532 1.306147 1.041127 1.011655 -1.203915 0.132616 0.398042 -0.135121 -0.387557 0.339166 -1.029163 0.732008 0.177276 -0.022397 1.465177 0.046062 -0.853706 0.567223 0.156252 0.384111 -1.144972 0.388760 -0.567101 0.294693 -0.825977 -0.020727 -0.681684 -0.599739 -0.836848 -0.629396 1.628171 -0.598629 -1.842142 0.697785 -0.033757 1.435481 -2.130238 0.617688 -0.672835 1.358082 -0.156232 -0.263624 0.111094 -0.400310 -0.441164 0.540312 0.386419 -0.412728 0.438744 0.760177 0.544969 0.384114 0.231191 0.743487 0.099718 0.545401 -0.457599 0.406430 -0.142808 -0.415764 0.024513 -0.320995 0.196287 0.631132 -0.019288 0.729890 1.070302 0.570724 0.994307 0.933292 0.568248 -0.555709 -0.159231 -0.235265 1.168900 -0.753205 -0.719405 -0.286311 0.588457 -0.001202 0.364716 -1.626895 -1.819551 -0.646353 -2.087275 -0.293425 -0.366164 0.344636 0.430579 -0.107331 -1.410213 -0.638755 0.604900 0.042168 2.428054 0.590081 0.069338 1.157402 0.913257 -0.602359 -0.504275 0.674832 0.668669 -0.412471 0.035676 -1.362429 0.792171 -1.134391 0.817335 1.570138 -0.914497 0.656536 -0.578357 1.270804 -1.359208 1.831323 0.688679 -1.680470 0.399767 0.625516 1.103766 -0.036196 -0.930576 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 0.930589 -2.061621 10.576263 3.174635 -3.033090 -0.080167 7.811307 -3.981496 6.008452 -2.946165 -3.002045 -3.629878 -7.817330 -2.003023 -1.052847 -1.926627 -11.275485 -4.732078 -0.184270 -3.639175 -2.127587 -6.528227 6.216549 1.210093 5.500838 6.448773 -0.673995 -3.288768 -3.115767 0.989164 9.624278 -1.693452 2.525701 9.345872 1.590223 -13.309452 4.640577 -0.287771 -1.922549 -2.705480 3.702267 0.018320 -0.499499 -1.585937 1.263871 1.005183 3.347136 13.909100 6.157177 1.570687 -1.563673 -8.411764 -2.473367 8.738938 -3.545851 1.630967 2.690879 -2.300236 0.317657 3.898810 -0.591536 -4.101188 0.199988 6.331895 -2.199815 -0.009230 6.194841 -8.901827 -6.984105 8.434662 1.949619 0.190836 -3.961791 -2.455206 -2.829116 0.720353 -3.773219 8.478741 9.780530 -5.105249 6.890519 -0.023946 4.462082 -3.325056 -2.758131 0.206070 2.551184 -0.592455 -3.301334 -3.579583 -12.946112 -4.800475 -1.513878 -4.528449 2.365661 -7.590279 3.080627 -6.471322 -5.985213 -0.738825 2.109804 -2.252481 -1.674637 5.543370 3.428160 0.597501 -1.377997 -5.763042 -2.202941 0.692232 -8.469020 5.788392 1.397838 3.595019 -5.114206 -4.979485 -5.982721 0.807350 -2.348618 -3.042863 0.030117 5.687503 -4.913652 3.600929 4.300759 2.526228 -0.785364 5.866948 2.938016 -1.173407 6.121537 -0.633633 0.075877 -0.259522 3.810459 11.337443 1.110473 -2.441476 -0.534536 1.867245 -7.273298 -3.778190 -0.702537 1.955373 0.981131 -9.345478 -6.445261 0.075519 -2.405446 -9.857422 1.881224 -3.505523 -2.113637 2.312432 3.534429 7.787343 1.839655 7.108874 -7.956343 2.951453 -1.406216 -2.322061 -1.416981 5.859553 5.738175 -3.621087 -1.315642 -3.088405 -2.503887 2.432420 -1.563903 -4.120471 -0.917210 -9.818639 -4.353885 -0.102630 2.911199 -0.723640 -1.983837 6.788160 0.734954 -8.851923 -1.113332 7.067136 0.911555 -5.155633 6.090367 -6.628818 6.611758 -0.405969 0.330842 2.712137 1.028452 -1.307820 2.523156 -2.449162 0.447764 -4.010717 -5.476143 -1.990714 -0.562873 -5.280516 3.626570 -4.384435 -3.551859 -1.893723 -2.725568 5.367607 -0.564545 -5.441558 8.468479 -2.211022 7.053908 -6.356808 7.384918 -1.992225 2.768431 -1.072683 -1.512084 -1.693816 -2.646198 -0.299343 0.839596 -3.379787 1.828471 4.924814 8.317755 3.806683 3.633077 0.732068 7.646559 -1.743805 2.704910 -1.688416 0.565469 -3.439068 -5.542435 2.032183 -1.012685 -0.486172 -0.090601 1.483115 10.294432 6.490965 3.307504 10.451170 1.208089 4.493693 -1.555589 -0.615616 1.284049 6.470242 -2.580231 -3.867759 3.106782 2.920070 -4.974462 2.528287 -8.318104 -13.437187 -2.289050 -11.459709 -4.165627 -8.774316 2.901414 -0.273369 0.913371 -5.988656 -1.137439 -1.913609 0.537864 6.088966 3.081031 -1.008528 5.332240 9.257679 -6.404843 -0.229905 7.715108 7.584681 -3.168597 -0.482975 -9.536718 4.000494 -7.124499 2.752603 8.602399 -4.106973 0.733158 -7.210708 9.988775 -10.220700 6.662779 2.553790 -4.924339 4.264069 0.962683 5.573555 9.560838 -2.731677 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(std::vector > const&) = 1.290298 -1.451514 11.196678 6.299531 -2.670994 0.118751 3.109629 -6.277355 5.209674 -1.182484 -1.358275 0.508781 -4.912643 1.893467 -4.793408 3.670408 -9.065087 -3.723430 -2.741496 -6.505456 -2.611686 -2.302172 4.756212 -0.296201 5.890539 2.167158 -3.010775 -2.549630 -3.989686 -4.254726 4.789856 -1.590899 2.388789 -0.251904 0.058132 -11.773312 6.534095 3.364691 -3.605161 -3.717000 5.110332 -2.967097 -1.038029 -2.464708 -1.108400 0.238887 -0.124642 6.067280 5.524963 2.590606 1.179263 1.918628 1.189176 11.558990 -5.323852 3.019368 2.072955 -0.724843 -1.968748 2.641790 0.021984 0.400384 0.693869 1.386574 0.083221 -6.236345 -0.013465 -4.482214 -3.731962 5.308466 -0.380957 -2.302602 -4.122064 -1.697654 -5.384331 -1.049345 -6.559462 6.290891 6.976181 -6.157503 3.034426 -0.590081 0.032263 -0.457958 -0.026915 0.828967 3.592701 1.029456 0.483565 -2.675717 -4.443293 -0.504843 1.461415 -2.633719 -1.923472 -11.642838 4.737911 -7.634261 -6.250758 0.599076 4.491391 -3.870024 -1.075055 0.096604 0.913360 1.288931 -2.973141 -4.444269 -0.155676 1.609398 0.160482 0.616764 0.798514 -1.513604 -1.119703 -2.196672 -7.636772 3.241401 -1.446113 -0.471576 -1.965984 4.692843 -0.908955 -0.994636 1.320764 4.238498 -3.265215 6.106049 -1.610035 3.414170 0.319028 3.863437 -2.093344 1.847234 4.298954 3.318008 -1.975449 0.522527 -3.924039 1.416047 -5.984468 -0.481830 -2.071402 3.346274 2.298370 -5.261092 -4.793606 -0.380095 -2.441551 -7.792090 1.191507 -3.254098 -4.736237 1.242090 3.639523 5.470452 4.585335 5.522749 -3.956901 1.224899 -0.133063 -1.688031 4.624388 -0.407083 4.757856 -3.232834 -3.120031 0.716323 -0.993529 2.610449 -1.089991 1.130927 0.671949 -7.413003 -0.665790 0.807332 3.141835 -1.837283 3.195890 5.969440 3.240883 -5.507705 0.677991 5.517911 -3.398907 -1.083111 2.104388 -5.594418 2.217683 2.211302 1.002632 5.366106 0.724833 -1.491796 2.264229 -1.729206 1.785004 -3.244201 -1.818518 -2.817572 -2.273943 -3.536169 1.780577 -2.447925 -2.029430 -2.517079 -4.957727 6.091187 -6.801586 -3.682223 7.870650 -1.746416 3.126728 -6.910756 8.135450 -3.458072 3.497614 -0.396308 0.643597 -0.415214 -0.101886 -5.990212 2.318141 0.388631 -1.023235 3.145211 8.013554 3.571850 1.779567 -1.589485 7.167925 -3.701716 6.480870 -2.749454 5.649303 -2.620818 -4.902416 0.840072 -0.620670 -3.556345 -3.044711 3.733947 7.017853 1.803740 4.128638 4.993946 2.986434 7.822901 -2.687970 4.650923 -1.396101 2.075206 -2.475447 -2.779753 4.238104 2.387329 -2.055175 3.057919 -8.039158 -9.533611 -7.792777 -6.756849 1.909384 -5.071537 1.857171 -2.609054 -1.242094 -6.242811 -4.600336 3.139883 -1.405865 2.235211 4.589655 0.936635 3.944517 7.090862 -3.810368 1.519515 1.454802 4.002676 1.588498 -2.406332 -6.160863 5.992548 -4.473098 0.037004 8.378109 -3.088504 2.679913 -1.502998 4.532813 -5.636421 6.554959 0.828301 -3.113348 5.836150 5.884413 5.032147 4.387362 -2.776256 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = -0.020613 -0.364075 1.593080 1.020165 -0.051065 0.142324 0.484059 -0.919230 0.989565 0.194864 -0.236380 0.171933 -0.856262 0.358357 -0.995030 0.739344 -1.047357 -0.750437 -0.330132 -0.931333 -0.302451 -0.451216 0.704002 -0.185208 0.868731 -0.068916 -0.539793 -0.401772 -1.099846 -0.804952 0.565734 -0.359587 0.336985 -0.538736 -0.229366 -1.353181 1.017071 0.762517 -0.589968 -0.692429 0.780112 -0.750590 -0.015251 -0.350089 0.062380 0.041918 -0.035491 0.506484 0.890565 0.389274 0.547669 0.446111 0.161264 1.786603 -1.088617 0.623121 0.226269 0.044018 -0.362253 0.465406 0.078220 0.174098 0.281386 0.288281 -0.127991 -1.017475 -0.243165 -0.468027 -0.617186 0.712845 -0.334582 -0.235839 -0.694353 -0.058565 -0.878023 -0.248542 -1.162538 0.675532 1.145755 -0.835862 0.606633 -0.013956 0.113090 -0.026372 0.166473 0.164178 0.560610 0.178190 -0.068806 -0.478503 -0.528139 0.341139 0.182616 -0.085363 -0.341132 -1.473725 0.782459 -1.043940 -1.078623 0.099455 0.584480 -0.451277 -0.196238 0.184241 0.096297 0.324665 -0.570040 -0.869314 0.015278 0.251668 0.245006 -0.148027 0.207281 -0.715385 -0.159998 -0.393450 -1.128095 0.264850 -0.223815 -0.283019 -0.547046 0.799313 -0.171105 -0.181463 0.112115 0.632379 -0.460402 0.854924 -0.340521 0.735447 -0.115814 0.559712 -0.991562 0.243183 0.691971 0.414527 -0.468840 0.459965 -0.653902 0.116917 -0.835265 -0.048263 -0.425501 0.509312 0.421311 -0.840187 -0.573189 -0.083137 -0.135078 -1.107279 0.212127 -0.497928 -0.663862 -0.165162 0.711976 0.749597 0.861216 1.230996 -0.555491 0.163581 0.037364 -0.306962 0.968285 -0.301686 0.752475 -0.508442 -0.631043 0.238087 0.166476 0.230258 -0.101561 0.298039 0.072124 -1.138021 0.161147 0.127703 0.417660 -0.358242 0.779089 0.756289 0.394362 -0.997411 0.320007 0.815047 -0.445736 0.057868 0.092604 -0.995376 0.381506 0.421589 0.181362 0.738229 0.125404 -0.364715 0.308949 -0.354757 0.419079 -0.646995 -0.086848 -0.542950 -0.455075 -0.528155 0.259390 -0.265023 -0.430790 -0.300937 -0.616643 0.945764 -0.829894 -0.493037 1.027688 -0.032910 0.248490 -1.075782 1.219556 -0.699274 0.642423 -0.101999 0.249558 -0.042185 0.475365 -0.890039 0.212849 0.288269 -0.324114 0.734613 1.195460 0.598837 0.292793 -0.185049 1.087589 -0.502962 0.856772 -0.392864 0.913342 -0.248594 -0.810273 0.248991 -0.241697 -0.397330 -0.395769 0.498400 1.077055 0.460527 0.420484 0.695258 0.509942 1.278097 -0.454620 0.815339 -0.266199 0.420141 -0.321167 -0.321030 0.489579 0.207072 -0.250329 0.514057 -1.256972 -1.399395 -0.898924 -0.982727 0.570118 -0.683105 0.135115 -0.330772 -0.033840 -1.171094 -0.767243 0.514462 -0.378940 0.462991 0.566839 0.251189 0.519853 0.978343 -0.580168 0.176771 -0.019762 0.453260 0.216222 -0.485425 -0.691979 0.919538 -0.768178 0.045510 1.069903 -0.498437 0.268222 0.121392 0.370215 -0.729948 1.116842 0.240082 -0.279122 1.109166 0.909468 1.197937 0.400953 -0.475299 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = 0.120249 -0.296222 1.285002 0.961006 -0.381057 -0.015795 0.330416 -0.443554 0.725430 0.236916 -0.203664 0.019100 -0.540423 0.198731 0.485563 0.781153 -1.170127 -0.332138 0.053213 -0.556561 -0.238045 -0.266036 0.415348 -0.219918 0.629666 0.528475 -0.161132 -0.438289 0.085398 -0.364282 0.613121 -0.455221 0.477594 0.809516 0.140721 -1.850845 0.745026 0.076663 -0.411863 -0.591424 0.349663 -0.341338 0.363321 -0.453272 0.041017 0.304560 0.320547 0.818999 0.671062 0.461486 -0.029480 -0.237940 0.440640 1.167388 -0.522712 0.208429 0.174772 -0.456529 -0.293744 0.049062 0.166196 -0.159581 0.349382 0.250654 -0.038319 -0.828301 -0.278658 -0.724247 -0.683591 0.418164 0.156117 0.044416 -0.802666 -0.255078 -0.017150 -0.315122 -2.025101 0.949607 0.934262 -0.805510 0.556918 0.210203 0.202479 0.026931 0.123450 0.260625 0.452318 0.145175 -0.233596 0.120368 -0.210570 -0.759374 0.391969 -0.508043 0.021691 -1.137071 0.182254 0.036090 -0.573349 0.340324 0.472888 -0.018568 -0.346837 -0.189331 0.261244 0.479892 -0.446649 -0.552366 -0.018800 -0.223005 -0.069132 -0.049419 -0.188500 -0.137913 -0.404871 -0.349107 -0.904651 0.139104 -0.125000 -0.198847 -0.006059 0.501911 -0.131314 -0.106283 0.029892 0.296520 -0.384051 1.084192 0.074528 0.507240 0.411946 0.100579 -0.567057 0.475848 0.632944 0.662949 0.110409 -0.167794 -0.473069 0.133224 -0.680585 -0.061572 0.445705 0.676954 0.817600 -0.372102 -0.554893 -0.219982 -0.210054 -0.835140 0.497401 -0.497517 0.324688 0.445345 0.508564 0.438552 0.679429 0.473139 -0.822011 0.265303 -0.482380 0.107396 0.660199 0.855082 0.621155 -0.350730 0.050182 0.058778 0.225458 0.140772 0.138586 -0.202527 0.315348 -0.719978 0.007693 0.276858 0.346726 -0.332225 0.296009 0.433414 0.980335 -0.299896 -0.045462 0.617825 -0.084461 -0.170991 0.427899 -0.590433 0.536593 0.081737 -0.136739 0.214615 -0.014440 -0.267355 0.084928 -0.224661 -0.003367 -0.163904 -0.211975 -0.255778 -0.206379 -0.309944 0.467577 -0.552120 -0.448910 -0.128713 0.116173 0.790966 -0.258327 -0.071217 0.609943 -0.722838 0.282445 -0.579532 1.646444 -0.562165 0.040706 -0.621114 -0.410367 -0.129158 0.036776 -0.432655 0.010633 0.221444 0.180906 -0.035734 0.827898 0.536257 -0.015449 0.026936 0.779553 -0.117294 0.685173 0.030359 0.635635 -0.377212 0.302932 0.060474 -0.075361 -0.123000 -0.124440 0.142313 0.968895 0.208074 0.340650 0.592511 0.155235 0.632880 -0.426796 0.496767 -0.114194 0.629558 -0.289120 -0.189122 0.272201 0.333480 -0.243531 0.332444 -0.861258 -0.834548 -0.397117 -0.052576 -0.367759 0.345231 0.232262 -0.157948 0.088121 -0.572199 -0.297379 0.223404 -0.213055 -0.295685 0.210643 -0.021523 0.539592 0.672817 -0.208091 -0.506311 -0.006029 0.113766 0.182788 0.055947 -0.705687 0.709105 -0.765725 -0.004014 0.861639 -0.427246 -0.102921 -0.257974 1.260346 -0.520819 0.767941 0.133089 -0.309297 0.652699 1.000238 0.658496 0.196109 -0.343479 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.067239 -1.316348 4.732736 2.966568 -0.815657 0.670121 0.278909 -1.834284 1.124838 -0.362459 -0.908119 1.605862 -1.655612 0.715650 -1.774522 1.051429 -3.528744 -1.570543 -0.904329 -1.802835 -0.504593 -0.743845 0.643819 1.315092 2.117921 1.241720 -1.683049 -0.143163 -2.632274 -2.471224 0.731443 -0.674480 1.373690 -0.499212 0.732270 -4.339055 2.661700 2.251860 -0.883469 -2.290391 1.900084 -1.383704 -0.333148 -1.116535 -1.162058 0.776654 0.546644 0.908755 1.696723 0.864456 -0.455276 0.805729 0.994645 3.544265 -1.154377 1.406385 1.365200 -0.825186 -0.151614 -0.150382 -0.051024 -0.314250 0.465154 0.157455 -0.277565 -2.654078 -0.170649 -0.952158 -1.075518 1.553024 -0.166275 -0.658168 -1.456627 -0.677424 -3.266492 -0.331772 0.192171 2.210388 2.820592 -1.655003 1.701145 -0.277649 0.283835 0.454964 0.863030 0.720784 1.251309 0.769392 -0.074909 -0.465910 -1.483410 -0.009432 0.462044 0.255361 -1.212144 -3.421909 1.571756 -4.407433 -2.314152 0.725462 1.186321 -1.867055 -0.468860 -0.601364 0.435016 1.096156 -1.001739 -1.622546 0.362021 1.016554 0.242316 -0.308697 0.510709 -0.653471 -0.288545 -0.566711 -2.705692 1.563238 0.254246 -0.108357 -0.393208 2.224480 -0.051599 0.078338 0.047856 1.710017 -1.381881 2.233977 -0.292399 1.287367 -1.025162 0.756960 -0.506018 -0.019495 1.218552 0.483516 -1.845908 -0.612115 -1.255335 0.693394 -1.311250 -0.109588 -1.037100 1.642566 1.248455 -1.644652 -1.652057 -1.072666 -1.743338 -2.875374 -0.276473 -0.801837 -2.517518 1.224042 1.646592 1.160693 1.670471 2.168012 -0.831768 0.092036 0.033494 -1.008905 1.959844 -1.001880 1.459379 -1.389577 -1.228456 1.269857 -0.134353 1.600793 -0.091391 0.470756 0.689948 -2.019104 -0.048911 1.297018 1.531380 0.252915 2.142552 2.405396 1.151661 -1.074446 -0.258642 1.558329 -1.558279 -0.392820 0.486795 -1.887544 0.708089 1.155487 0.149098 2.794633 0.100801 -0.936074 1.370431 -0.181983 0.830138 -1.664945 0.279405 -1.211215 0.027179 -1.234241 -0.441314 -1.130573 -0.791551 -2.000462 -2.437072 2.842378 -3.307871 -2.025476 2.268080 -0.140888 1.730298 -3.354173 1.625044 -1.619490 2.706465 0.665271 0.313570 0.272833 -0.613717 -2.513544 0.946197 0.700260 -0.970143 1.169875 2.028724 1.530519 0.136635 -0.667497 2.318058 -1.110223 2.317922 -1.177559 1.499423 -0.924734 -1.155259 0.118150 -0.233464 -1.309474 -0.656058 1.214561 1.044033 0.370937 1.725701 1.432372 1.880431 2.485312 -0.948736 1.085430 -1.182477 1.072328 -1.201938 -1.527143 0.782818 1.953088 0.241137 0.992652 -3.535317 -3.543441 -4.058585 -2.969874 0.571942 -1.254711 0.459707 -0.306977 -0.498730 -2.695752 -1.943296 2.253088 -0.259430 2.421292 1.973559 0.153988 1.649833 1.949864 -1.110970 -0.089853 0.228885 1.538966 0.618525 -0.171827 -2.729508 2.444894 -1.993214 0.226643 3.596205 -1.875404 1.340973 0.029010 1.107826 -2.464301 3.090941 0.771195 -2.211659 1.678612 1.900154 1.470177 0.645611 -1.388127 -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.038897 -0.261324 1.108302 0.770612 -0.347610 0.013688 0.122280 -0.499709 0.420417 -0.280896 -0.182251 0.175299 -0.571122 0.264959 -0.342378 0.402727 -1.014856 -0.414301 -0.265133 -0.475949 -0.148446 -0.210466 0.508823 0.106769 0.555519 0.560858 -0.411397 -0.156803 -0.447395 -0.347787 0.492326 -0.239662 0.452360 0.374233 -0.064399 -1.317142 0.616633 0.445141 -0.357594 -0.478285 0.555762 -0.452353 0.022680 -0.541367 -0.392561 0.097282 -0.032706 0.220047 0.509795 0.140570 -0.037224 0.198656 0.190809 0.879759 -0.493368 0.262745 0.234284 -0.152259 -0.275980 -0.107505 0.086640 0.125574 0.244830 0.180859 -0.149775 -0.760022 -0.189715 -0.542585 -0.544538 0.467577 -0.189381 0.064470 -0.476716 -0.156635 -0.585783 -0.125270 -0.120965 0.655762 0.729348 -0.589864 0.346206 -0.124319 -0.103949 -0.037515 0.031370 0.231928 0.249109 0.170774 0.103579 -0.135550 -0.208563 -0.050409 0.227353 -0.012412 -0.202401 -0.857524 0.444487 -0.807198 -0.586293 0.027815 0.429934 -0.343249 -0.197154 -0.052729 0.016003 0.371798 -0.304498 -0.423211 0.140930 0.085324 0.245550 -0.076892 -0.099598 0.035613 -0.229001 -0.367227 -0.820022 0.299471 -0.171696 -0.125811 0.069037 0.447438 -0.158737 -0.128793 0.032000 0.367965 -0.404503 0.860922 -0.204355 0.318399 -0.030770 0.271059 0.116109 -0.104065 0.439414 0.605973 -0.420046 -0.207042 -0.444587 0.042290 -0.515385 -0.331764 -0.025608 0.247607 0.458174 -0.466677 -0.432465 -0.135821 -0.483329 -1.081578 -0.019384 -0.389479 -0.161547 0.604462 0.440193 0.384717 0.589004 0.924935 -0.384382 0.080500 0.009390 -0.353181 0.635850 0.174830 0.459626 -0.306831 -0.367236 0.312207 -0.187033 0.375706 -0.014442 0.202033 0.071483 -0.674716 -0.088523 0.395913 0.388866 -0.006874 0.386388 0.508984 0.164289 -0.270694 0.138745 0.533128 -0.246374 -0.058568 0.199501 -0.556413 0.255993 0.191527 -0.097170 0.452024 0.026636 -0.255590 0.202064 -0.179185 0.220847 -0.467028 0.006864 -0.271803 0.064774 -0.549704 0.005684 -0.147400 -0.314526 -0.279615 -0.417289 0.713856 -0.721093 -0.356712 0.603782 0.084433 0.507358 -0.784317 0.540827 -0.441851 0.776767 -0.069217 -0.037295 0.110485 -0.348746 -0.591647 0.065670 0.180181 -0.028907 0.065109 0.643731 0.461705 -0.039826 -0.155782 0.673903 -0.131928 0.802556 -0.207579 0.519453 -0.149394 -0.325140 0.250667 -0.106013 -0.375150 -0.267514 0.305335 0.805330 0.291283 0.602002 0.623380 0.260929 0.860013 -0.332018 0.338850 -0.147153 0.370651 -0.183140 -0.274046 0.300143 0.607260 -0.139591 0.298353 -0.768180 -1.185661 -0.832544 -0.717942 0.118726 -0.349308 0.208365 -0.209981 -0.052411 -0.541076 -0.446148 0.350759 -0.242716 0.894479 0.339900 0.061388 0.414867 0.618361 -0.499002 -0.067090 0.231525 0.498127 0.235851 0.066996 -0.812703 0.649018 -0.462142 -0.090706 0.940437 -0.487321 0.233289 -0.106462 0.613313 -0.471927 0.867993 0.123999 -0.451973 0.754240 0.422349 0.306424 0.523280 -0.338104 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__introsort_loop >(suffix*, suffix*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -0.032955 -1.926787 7.085330 4.446622 -0.916776 0.771677 0.752925 -2.777029 2.233757 0.010807 -1.346265 2.317278 -2.715389 1.035523 -2.220605 1.955747 -5.225438 -2.654213 -1.191111 -2.739130 -1.141101 -1.297601 1.197115 1.538525 3.336385 1.383650 -2.601784 -0.298919 -3.867532 -3.952323 1.003182 -1.154417 2.024695 -1.083987 0.957994 -6.759223 4.113233 3.188849 -1.381156 -3.448424 2.792300 -2.215763 -0.369968 -1.687547 -1.247523 1.028016 1.047459 1.786751 2.758290 1.415696 -0.303802 0.995835 1.146033 5.824998 -1.994555 2.161902 2.179052 -1.240451 -0.706420 0.052788 0.124012 -0.731538 0.942653 0.562634 -0.702952 -3.900089 0.030447 -1.624013 -1.879887 2.495302 0.095767 -1.237959 -2.250224 -1.111552 -4.269698 -0.589717 0.291720 3.257255 4.480652 -2.698678 2.690010 -0.203195 0.713021 0.656790 1.192438 0.815685 2.349103 1.038126 -0.439372 -1.315699 -2.530861 -0.310001 0.572245 0.656662 -1.430081 -4.567435 2.319867 -5.821060 -3.786949 0.930965 1.807797 -2.489611 -1.368394 -0.494176 1.080144 1.657894 -1.208009 -2.613591 0.125973 1.232497 -0.189323 -0.517129 0.520639 -1.323267 -0.778262 -0.716407 -4.437420 1.988086 0.312078 -0.439949 -1.110485 3.228735 -0.621025 0.248425 0.129422 2.567770 -1.755893 3.207063 -0.275338 1.998181 -0.762212 0.915206 -1.394731 0.109512 1.898849 1.054956 -2.525424 -0.435425 -1.873177 0.969687 -2.333125 -0.096955 -1.730205 3.047718 1.832579 -2.694368 -2.816403 -1.578724 -2.265109 -4.147096 0.103007 -1.580072 -3.410665 1.351875 2.564316 1.811386 2.415726 3.805186 -1.800678 0.831068 0.153759 -1.241000 3.005996 -1.424745 2.449199 -2.303507 -1.791520 1.751468 0.242059 1.901621 -0.322971 0.514993 1.102024 -3.551007 -0.565013 1.697589 1.871052 0.272020 2.999822 3.340105 3.006872 -2.428811 -0.108908 2.484509 -1.942665 -0.686504 0.844211 -3.053482 1.136270 1.536427 0.666085 4.315062 0.367082 -1.956025 1.716896 -0.197415 1.124939 -2.438325 0.499057 -1.795575 -0.050208 -1.525448 -0.517636 -1.788229 -1.221939 -2.719017 -3.126536 4.370820 -4.355698 -3.687030 3.597681 -0.580484 2.776350 -5.478737 3.311367 -2.544094 3.650624 0.356688 0.361637 0.269853 -0.649142 -3.633467 1.679206 1.076416 -1.097563 1.882824 3.428643 2.271007 0.705549 -0.903231 3.411422 -1.500856 3.493084 -1.472073 2.475033 -1.338857 -1.883025 -0.084374 -0.446499 -1.671602 -0.726758 1.534066 1.682113 1.016155 2.174756 2.471137 2.681960 3.834634 -1.680489 2.041278 -1.490068 1.968250 -1.751140 -2.190590 1.290667 2.458258 0.043275 1.871274 -5.299098 -5.282987 -5.064719 -4.863608 0.645911 -1.519440 0.879037 -0.677610 -0.664163 -4.099735 -2.716948 3.275127 -0.203836 4.052987 2.827597 0.378458 2.495879 3.024666 -1.719596 -0.406279 0.201289 1.934111 0.708820 -0.717419 -3.851169 3.554223 -3.078820 0.530718 5.217841 -2.682459 1.732406 -0.487705 1.608992 -3.645057 4.619367 1.175070 -3.127651 2.598161 2.870837 2.948975 0.598516 -2.243719 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__long std::__lg(long) = -0.157550 -0.567777 0.532341 0.455388 0.050301 0.173314 0.413470 0.111758 -0.022268 0.138693 -0.101964 0.335858 -0.551191 -0.129665 -0.070520 -0.057399 -0.220479 -0.410135 -0.016356 0.051178 -0.027842 -0.220135 -0.155236 0.573260 0.302275 0.065434 -0.164064 -0.193172 -0.789864 -0.017803 -0.164226 0.023041 0.282443 0.240315 0.254576 -0.235931 0.049826 0.540817 0.029329 -0.415248 0.125391 -0.182540 0.118106 -0.226860 -0.070972 0.174434 0.368954 0.040715 0.008933 0.053767 -0.067237 -0.247440 0.215439 0.364834 0.174283 0.354603 0.508505 -0.003464 0.307582 -0.223449 0.078519 -0.327632 0.112249 -0.048181 -0.182983 -0.025557 -0.180034 -0.201147 -0.067853 0.087515 0.179822 0.096193 -0.369141 -0.222741 -0.581556 -0.156904 -0.274353 0.196221 0.533589 -0.446987 0.555600 0.354985 0.322385 0.061692 0.267052 0.091350 0.060189 0.101347 -0.150933 0.265663 -0.571834 -0.077572 -0.189829 0.171947 -0.267610 -0.288883 0.265343 -0.536029 -0.571636 0.267343 -0.140751 -0.198472 0.063829 0.162338 -0.084491 0.242765 -0.247187 -0.362322 -0.194785 0.090835 0.043767 -0.070451 0.176979 0.219664 -0.019748 -0.228733 -0.422659 0.110798 0.237980 -0.322172 0.035620 0.417311 -0.112446 0.561249 0.032419 -0.034056 -0.043217 0.368633 0.436918 -0.013070 -0.091658 -0.302738 -0.480073 -0.280475 0.117802 0.418562 -0.299328 0.001015 0.144857 0.146231 0.235521 0.157089 0.167922 0.371736 -0.078994 -0.325730 -0.247414 -0.484989 -0.374088 -0.191380 0.062879 -0.055641 -0.023482 0.160082 0.226445 0.100088 -0.067627 0.531376 0.056210 0.046290 0.057291 -0.215258 -0.082798 -0.050645 0.160662 -0.189025 -0.286559 0.271858 0.224137 0.364676 0.136344 0.005574 0.113556 -0.146178 -0.174662 -0.057827 0.024646 -0.175957 0.566987 0.325759 -0.085357 -0.155586 -0.038959 -0.033129 -0.011533 0.000775 0.054801 -0.379067 0.321239 -0.044596 -0.274499 0.258795 -0.004380 -0.132993 0.512444 -0.178301 0.076169 -0.382145 0.203409 -0.247290 -0.046436 -0.414218 0.202348 -0.195187 -0.216950 -0.216911 -0.080980 0.534541 -0.172283 -0.127978 -0.130686 0.490542 0.210031 -0.412869 0.422885 -0.100054 0.521388 0.085554 -0.228916 0.184866 0.144905 0.089631 -0.259616 0.162737 -0.324378 0.040127 0.039971 0.070968 -0.069812 0.209688 0.221271 0.022011 0.070115 -0.201874 0.030819 0.004357 -0.248751 0.022196 -0.081242 0.237231 0.238256 -0.058714 0.211097 0.220913 0.106767 0.128006 0.253930 0.099886 -0.166061 -0.238646 0.029597 0.558685 -0.363597 -0.104627 -0.298930 0.212208 0.057013 0.133161 -0.476646 -0.416534 -0.112685 -0.305015 -0.188571 -0.005121 0.043779 0.199726 -0.088723 -0.410232 -0.351452 0.118266 -0.120420 0.019060 0.223002 0.062507 0.500716 0.160143 0.021253 -0.148260 0.285056 0.274721 -0.050820 0.056081 -0.217451 0.064207 -0.494541 0.216196 0.382489 -0.211758 0.266070 -0.020926 0.480439 -0.463163 0.659566 0.200940 -0.638070 0.125793 0.590364 0.373310 -0.221814 -0.255650 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__final_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.496741 -1.253085 5.924774 3.749190 -1.371568 0.556468 0.021583 -2.653847 1.779646 -0.519416 -1.177671 1.671185 -1.980417 1.118474 -2.123001 1.819636 -4.840697 -1.722312 -1.250734 -2.438285 -0.929485 -0.856101 1.199949 1.063954 2.711155 2.181602 -2.069843 0.156803 -2.301854 -3.570802 1.101615 -1.004891 1.553349 -0.216337 0.810985 -5.401587 3.658837 2.489783 -1.324376 -2.602098 2.316183 -1.681525 -0.550060 -1.724351 -1.313775 0.897983 0.397724 1.668327 2.323371 1.112921 -0.611456 1.096921 1.374081 4.428056 -1.679178 1.607012 1.629611 -0.950287 -0.527400 -0.041781 0.077461 -0.077694 0.509062 0.407447 -0.218552 -3.552115 -0.186054 -1.426697 -1.322197 2.205299 -0.367893 -0.905742 -1.979493 -1.017355 -3.650697 -0.281944 -0.785101 2.988388 3.514747 -2.275806 1.723738 -0.372260 0.077446 0.553663 0.809899 0.781195 1.889570 1.020497 -0.040776 -0.719881 -1.205772 -0.431653 0.991777 -0.063802 -1.361912 -4.566664 1.907778 -5.558943 -2.828130 0.700563 1.841211 -2.190469 -0.531265 -0.831820 0.689360 1.099354 -1.076181 -1.868534 0.817069 0.901043 0.291306 -0.346722 0.371238 -0.588226 -0.414425 -0.181263 -3.687593 1.843964 -0.016035 -0.058809 -0.231043 2.471290 0.280061 -0.328453 -0.011687 2.085885 -1.646640 2.949784 -0.698661 1.907603 -1.118341 1.731286 0.065588 0.497918 1.807493 0.110257 -2.069712 -0.607494 -1.687817 0.804625 -2.159503 -0.350529 -1.666915 2.005550 1.514468 -1.994035 -2.206849 -1.072875 -2.472145 -3.823916 -0.071705 -1.261384 -3.174863 1.496842 2.081254 1.499043 2.308423 2.476713 -1.568714 0.017055 -0.042725 -0.856354 2.693776 -0.900096 1.928422 -1.716862 -1.400593 1.582896 -0.314608 1.682523 -0.210102 0.464746 0.896767 -2.740827 0.026819 1.956211 1.779328 0.097527 2.352531 2.805121 1.818213 -1.225443 -0.027985 2.245577 -1.771919 -0.512465 0.791123 -2.372858 0.959975 1.335743 0.879885 3.262383 0.209520 -1.046420 1.274627 -0.226174 0.946539 -1.914404 0.095653 -1.380999 -0.013811 -1.413457 -0.015491 -1.241801 -0.928941 -2.154334 -2.772388 3.411199 -4.401142 -2.249075 3.339337 -0.443151 2.340274 -3.768208 2.155029 -2.070934 3.158891 0.664817 0.336473 0.451142 -1.355624 -3.299926 1.170664 0.873526 -0.674628 1.120032 2.488034 1.974522 0.282305 -0.890574 2.918994 -1.512945 3.217814 -1.304494 2.108516 -1.081718 -1.358595 0.037952 -0.311847 -1.932549 -1.144079 1.587826 1.660700 0.405852 2.332009 2.034628 1.851806 3.387267 -1.363545 1.818551 -1.339317 1.003718 -1.466430 -1.828877 1.379260 2.284390 -0.066270 1.506002 -4.270027 -4.432802 -5.187175 -3.271203 0.392484 -1.589156 0.902593 -0.787035 -0.632164 -2.855759 -2.397539 3.284141 -0.331709 2.673739 2.348703 0.246959 1.837422 2.581388 -1.361403 -0.139690 0.092768 1.810986 0.973484 -0.200641 -3.474690 3.274236 -2.221133 -0.016824 4.563669 -2.399638 1.463946 -0.337541 1.513908 -2.819438 3.518182 0.801283 -2.458433 2.207394 2.546070 1.788616 1.197235 -1.753767 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__partial_sort >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.041749 -0.509296 2.950142 1.814997 -0.648309 -0.015761 0.541144 -1.369320 1.256090 -0.344766 -0.464953 0.502526 -1.225582 0.600743 -1.201777 1.191026 -2.466733 -1.071925 -0.504446 -1.463861 -0.450954 -0.421986 1.261615 -0.062916 1.556240 0.698680 -0.990675 -0.659692 -1.178730 -1.261830 1.103138 -0.737266 0.905804 -0.115144 -0.302757 -3.439097 1.743682 1.012676 -1.026145 -1.116072 1.492321 -1.100141 -0.008216 -1.071165 -0.734360 0.079068 0.090325 0.831161 1.431060 0.600733 0.187394 0.678212 0.520816 2.917797 -1.485125 0.718777 0.505559 -0.409948 -0.803375 0.187095 0.189209 0.112086 0.535987 0.343845 -0.149174 -2.000764 -0.370262 -1.169335 -1.167142 1.091121 -0.356115 -0.099792 -1.045656 -0.106855 -1.542707 -0.411932 -0.640182 1.494851 1.836351 -1.423586 0.933003 -0.273648 -0.104917 0.023561 0.026672 0.572330 0.728797 0.396972 0.155045 -0.694144 -0.623804 0.151882 0.547659 -0.079712 -0.388823 -2.666256 1.188810 -1.949420 -1.544817 0.134951 1.193627 -0.901119 -0.437080 -0.237877 0.205050 0.782566 -0.888077 -1.121591 0.184996 0.137381 0.316313 -0.160057 0.027341 -0.578632 -0.412562 -0.650727 -2.011369 0.769822 -0.434671 -0.209203 -0.356531 1.153250 -0.252926 -0.393364 0.112423 1.211273 -1.006560 1.738981 -0.584345 1.007305 -0.138165 0.892925 -0.360517 -0.047402 1.184365 1.064518 -0.914819 -0.221832 -1.268897 0.230349 -1.407668 -0.509610 -0.291680 0.956771 0.985867 -1.237722 -1.086588 -0.259266 -0.766417 -2.329893 0.132793 -0.890227 -0.928392 0.865807 1.121764 0.898950 1.548667 1.899406 -0.858930 0.400011 -0.040666 -0.672821 1.725844 -0.183771 1.290687 -0.832351 -0.753611 0.509884 -0.160285 0.860083 -0.236019 0.490168 0.311782 -1.852270 -0.081821 0.530758 0.940501 -0.252257 0.920563 1.290238 0.938285 -1.157448 0.244361 1.434096 -0.764570 -0.173612 0.501009 -1.408063 0.516035 0.646227 -0.053772 1.296708 0.232348 -0.798262 0.476617 -0.388392 0.477820 -0.975840 -0.124960 -0.684273 -0.233364 -0.881271 0.050561 -0.606072 -0.681075 -0.821170 -1.255277 1.722989 -1.982095 -0.996121 1.670437 -0.138100 0.976282 -2.112210 1.953391 -1.226017 1.499680 -0.236729 0.081380 0.086281 -0.191493 -1.735888 0.491782 0.402915 -0.242296 0.693871 1.852205 1.219557 0.311077 -0.524800 1.822261 -0.635333 1.944401 -0.473626 1.387084 -0.572501 -1.125702 0.367313 -0.188991 -0.989584 -0.642560 1.009487 1.665669 0.509638 1.191821 1.439421 0.872763 2.255397 -0.859132 1.138011 -0.520985 0.900407 -0.432888 -0.746048 0.898237 1.123256 -0.316447 0.906976 -2.123657 -2.692445 -2.155800 -1.761533 0.590524 -0.862596 0.411571 -0.671617 -0.069542 -1.740212 -1.083499 0.943192 -0.485253 1.459194 1.116177 0.200592 0.963062 1.500777 -1.076175 -0.109626 0.224345 1.071353 0.634466 -0.298820 -1.819638 1.635172 -1.327195 -0.092418 2.222334 -1.113356 0.423027 -0.088308 1.097454 -1.234039 2.002573 0.280715 -0.943381 1.801229 1.311123 1.179959 0.952118 -0.818514 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition_pivot >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.274932 -1.129650 5.792186 3.739847 -1.506002 0.673170 0.158792 -2.489631 1.380343 -0.364981 -0.660127 1.559897 -1.762212 1.028341 -1.827731 1.892186 -4.443310 -1.279997 -1.424292 -2.783072 -0.847366 -0.403974 1.091402 0.945705 2.703114 1.774149 -1.919354 -0.313061 -2.024458 -3.393691 0.999860 -0.776710 1.612191 -0.812754 0.506114 -6.070867 3.575153 2.590293 -1.398435 -2.356709 2.480357 -1.422505 -0.357857 -1.228506 -1.807196 0.701060 -0.011068 0.880591 2.234153 1.129369 -0.444739 1.602310 1.835196 5.036484 -1.616092 1.522388 1.467794 -0.932948 -0.774632 0.018280 -0.042737 0.183009 0.268084 -0.246597 0.302246 -3.732368 -0.516998 -1.314701 -1.126235 1.727250 -0.489867 -1.299554 -1.585549 -0.905697 -3.557673 -0.604195 -0.989359 2.844934 2.953268 -2.456676 1.476077 -0.775197 -0.568062 0.763431 0.757908 0.924321 1.411731 0.935447 0.525180 -0.374451 -0.192551 0.083860 1.308237 0.137611 -1.722296 -5.107097 2.044246 -4.531287 -2.659374 0.924773 2.037355 -2.292777 -0.531009 -1.569424 0.107523 1.064878 -1.470038 -1.662289 0.596248 1.113984 0.865972 -0.425944 0.075040 -0.692257 -0.179393 -0.265101 -3.345392 2.259510 -0.190679 0.317436 -0.595618 2.369550 0.557883 -0.577394 -0.029319 2.353358 -2.047721 2.891185 -0.934611 2.065401 -1.477563 1.909911 0.083446 0.006510 1.684337 0.156809 -1.971874 -0.981293 -2.011719 0.761067 -1.851315 0.159909 -0.999673 1.971815 1.806619 -1.551307 -1.691224 -0.727206 -2.290375 -3.882154 -0.273401 -1.140560 -2.946810 1.950309 1.841211 1.241337 2.205454 2.152055 -1.182539 0.011695 -0.067556 -1.193905 2.761609 -0.850654 1.649894 -1.628014 -1.377397 1.201381 -0.540110 2.018442 -0.345477 0.966600 0.820535 -2.278744 0.407705 1.625970 1.675442 -0.367339 2.243077 2.977927 2.591485 -0.963701 -0.239691 2.023169 -2.415505 -0.290773 0.611919 -2.113596 0.290912 1.615216 0.085770 3.323897 0.079776 -0.824490 1.344945 -0.425582 0.881127 -1.718652 0.449689 -1.363330 -0.110297 -1.330288 -0.587866 -1.277071 -0.794812 -2.258893 -2.863008 3.263943 -4.887111 -1.725172 3.058064 -0.098639 1.530649 -3.564225 3.037044 -1.944533 2.824331 0.424602 0.127849 0.428306 -0.730162 -3.455953 1.370720 0.742723 -1.070926 0.879884 2.805885 1.887063 -0.009256 -1.254591 2.984709 -1.628803 3.338841 -1.540865 2.530143 -1.173782 -1.418504 -0.116048 -0.183615 -2.168553 -1.389860 1.743945 1.359969 -0.142524 2.184454 1.154756 1.940323 3.410544 -1.182616 2.120727 -1.396841 0.932195 -1.317360 -1.724501 1.534208 2.562276 0.401524 1.291946 -4.172368 -3.784849 -5.238317 -2.761102 0.736498 -0.870940 0.763268 -0.830266 -0.754325 -2.898066 -2.595924 3.207686 -0.537460 1.961266 2.318302 0.369698 1.836267 2.382937 -0.919122 0.138210 -0.201728 1.671998 1.368982 -0.273796 -3.018079 3.249290 -2.061501 -0.399148 4.261427 -1.892907 1.737349 0.105535 1.101102 -2.664532 3.310212 0.469567 -2.082381 2.338960 3.027894 1.366985 0.989384 -1.512986 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__heap_select >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.603897 -0.917991 3.904726 2.535606 -0.478032 0.233117 0.769617 -1.807695 1.915057 0.259844 -0.649702 0.810993 -1.985886 0.580597 -0.468694 1.428424 -3.199299 -1.786529 -0.454556 -1.742436 -0.852715 -1.190004 1.252615 0.362377 1.920343 1.189013 -1.491901 -0.346253 -1.959375 -2.544141 1.055730 -0.961003 1.506076 0.667248 0.212225 -4.636064 2.451846 1.573673 -0.946632 -1.790972 1.650454 -1.618783 0.184892 -1.012184 -0.308414 0.871663 0.578095 1.014662 2.146951 0.710351 0.443715 0.097957 0.207962 2.720577 -1.770743 1.085827 0.653615 -1.059615 -1.074752 0.051254 0.147953 -0.445101 1.233343 0.974092 -1.105817 -2.359164 0.312260 -1.324083 -2.110298 1.823683 0.215188 -0.542224 -1.532789 -0.563300 -1.643563 -0.621769 0.642434 1.738254 2.882782 -1.223663 1.809363 -0.086674 0.427945 -0.193455 0.651397 0.311592 1.985822 0.310840 -0.600991 -1.062562 -1.658871 -0.744488 0.216163 1.278618 -0.191207 -1.399740 1.020341 -2.519451 -2.362188 0.122811 1.121557 -0.957967 -2.206766 0.307081 1.131460 1.111243 -0.412410 -1.943654 -0.179565 0.364072 -0.778129 -0.272698 -0.288413 -1.047833 -1.199648 -0.643755 -2.774777 0.609942 -0.255208 -0.587102 -1.017793 1.826121 -0.856873 -0.024120 0.328246 1.585253 -0.956726 2.023288 -0.457622 1.165468 0.551423 0.085357 -1.142041 -0.485854 1.123395 1.568838 -1.242801 -0.907971 -1.428949 0.280428 -2.134049 -0.495155 -0.736602 2.096899 2.286032 -1.789124 -1.692930 -0.472956 -0.801028 -3.015642 0.467024 -1.339913 -0.802462 0.421712 1.638569 0.862225 1.765432 2.959491 -1.565834 1.105414 -0.002692 -0.756603 2.254423 0.165493 1.894615 -1.448426 -0.911422 0.904507 0.236584 0.923289 -0.335390 0.143458 0.431251 -2.515872 -1.119584 1.181822 0.739431 0.548679 1.339206 1.716234 2.974627 -1.993455 0.466163 1.851590 -0.522053 -0.430751 0.862769 -1.916020 0.988966 0.733344 0.222733 2.375969 0.184572 -1.566027 0.457246 0.053274 0.702657 -1.829975 0.255851 -1.073581 0.583982 -1.116858 -0.619678 -1.202976 -1.167075 -1.160603 -1.123749 2.564434 -1.160102 -2.829718 2.489678 -1.045221 2.061618 -3.791123 1.993156 -1.718223 1.551989 -1.155931 0.023462 -0.064457 -0.393287 -1.869659 1.073209 0.569597 -0.233606 1.300369 2.503798 1.538349 0.692644 -0.541801 2.106405 -0.207439 2.215297 -0.556063 1.830899 -0.642074 -0.617138 0.173774 -0.430619 -0.827317 -0.107757 0.517033 1.586312 1.522130 0.922377 1.984996 1.409817 2.443111 -1.101896 1.441051 -0.452252 1.486338 -0.658675 -1.241409 0.952149 1.329037 -0.488513 1.297980 -3.002965 -3.495269 -1.387910 -3.554984 0.039991 -0.224688 0.863000 -0.169620 0.025494 -2.386217 -1.045398 1.677784 0.007636 3.792311 1.039695 0.164432 1.410278 2.112842 -1.435301 -0.765280 0.056780 0.930935 0.127839 -0.577365 -2.441591 2.168488 -1.832575 0.660027 2.812132 -1.858927 0.495528 -1.035191 2.121960 -2.130312 2.888764 0.638979 -1.342302 2.232956 0.988336 2.248426 0.570935 -1.279863 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.321019 -1.065251 2.721118 1.893708 -0.059996 0.614453 0.537161 -0.876085 0.786072 0.613338 -0.376946 0.916992 -1.481818 0.330924 -0.140180 0.692637 -1.707114 -1.071163 -0.361966 -0.860868 -0.189028 -0.822402 0.318772 0.870993 1.254815 0.464546 -0.934019 -0.204291 -1.908078 -1.832263 0.361794 -0.474299 1.115577 0.020560 0.481931 -2.632667 1.599294 1.449647 -0.344465 -1.557051 1.056530 -0.875213 0.122797 -0.393630 -0.106363 0.852655 0.680726 0.299256 1.196998 0.607325 -0.119834 -0.136718 0.558465 1.578331 -0.870235 0.916127 0.801703 -0.744290 -0.057834 -0.134190 -0.206638 -0.491085 0.596002 0.348926 -0.612271 -1.373283 0.192287 -0.471718 -1.159918 0.904997 0.072901 -0.358631 -1.075344 -0.486000 -1.479848 -0.227751 0.247352 1.141191 1.959226 -0.678129 1.499782 -0.027892 0.313447 0.202039 0.776578 0.357966 0.732074 0.294417 -0.569287 -0.330622 -1.203296 -0.401736 -0.024971 0.969248 -0.448953 -0.821998 0.678912 -1.574891 -1.434245 0.527080 0.272324 -0.862346 -1.207920 -0.166957 0.396808 0.946774 -0.452824 -1.389609 -0.180460 0.625354 -0.156434 -0.287568 0.161370 -0.755501 -0.733283 -0.594083 -1.497450 0.507837 0.223831 -0.552259 -0.777405 1.440598 -0.474612 0.482641 0.188864 1.088780 -0.711839 1.172987 0.195088 0.882257 0.192249 -0.324059 -1.153147 -0.474318 0.674925 0.966089 -0.882427 -0.361855 -0.789653 0.293624 -0.705297 0.112452 -0.224722 1.432747 1.325057 -1.052839 -0.864382 -0.563021 -0.462623 -1.532653 0.184593 -0.608350 -0.719919 0.412020 1.035204 0.167122 0.830252 1.878165 -0.952177 0.374074 -0.104110 -0.623176 1.138411 -0.119498 0.929331 -0.972168 -0.729972 0.653028 0.419475 0.584567 -0.022257 0.055154 0.465243 -1.193949 -0.270763 0.692086 0.447069 -0.009600 1.306479 1.291908 1.746956 -0.807608 -0.093232 0.893555 -0.721843 -0.192070 0.331310 -1.281224 0.674835 0.616695 -0.188338 1.717271 -0.009744 -1.083974 0.948482 -0.139806 0.421217 -1.123856 0.566630 -0.915994 0.187374 -0.768808 -0.692779 -0.695826 -0.871216 -1.022306 -0.518315 1.781446 -0.714164 -1.559976 1.057691 -0.262229 0.901235 -2.463844 1.575796 -1.034198 1.020182 -0.150289 -0.001379 0.049036 0.344531 -1.045404 0.336114 0.482246 -0.550531 1.048247 1.450769 0.847127 0.022914 -0.170390 1.276980 -0.161801 0.904184 -0.617255 0.842362 -0.524294 -0.112147 -0.045574 -0.275605 -0.235636 -0.082806 0.099411 0.352747 0.724350 0.377109 0.801461 1.226231 1.154902 -0.351459 0.722138 -0.582085 1.130847 -0.673672 -0.794761 0.202923 1.072909 0.208358 0.946638 -2.171893 -1.980171 -0.848038 -2.089274 -0.050504 0.229759 0.388142 0.240653 -0.068355 -1.884722 -0.935107 1.014758 0.000441 1.871445 0.858443 0.134664 0.975201 1.132529 -0.520622 -0.551767 -0.017957 0.691932 -0.005946 -0.184712 -1.197883 1.225384 -1.433402 0.402749 1.780342 -1.099487 0.572307 -0.532220 1.036353 -1.735061 2.072641 0.635132 -1.043160 1.210508 1.049586 1.450893 -0.163521 -0.769067 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__make_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 0.181847 -3.075296 7.742057 5.036356 -0.704400 1.613128 1.149459 -2.100655 1.504365 0.440491 -1.603470 3.402701 -3.299354 0.823612 -2.559107 1.424349 -5.087678 -2.930933 -1.114574 -2.072996 -0.810626 -1.593607 0.161953 3.173747 3.560675 1.863492 -2.689518 -0.182430 -5.414433 -4.564817 0.033127 -0.780288 2.220666 -1.524849 1.867977 -6.059988 4.112548 4.438641 -0.768442 -4.624894 2.828863 -2.101945 -0.535662 -1.318532 -1.016436 1.718403 1.783936 2.207371 2.279282 1.589826 -1.391289 0.661522 1.896295 5.777586 -0.950252 2.781798 3.492061 -0.986045 0.402514 -0.497740 -0.077956 -1.435742 0.408702 0.171084 -0.733008 -3.454534 -0.073311 -1.181148 -1.194945 2.259191 0.481471 -1.353489 -2.599739 -1.426877 -5.449611 -0.229692 0.153688 3.523779 5.066796 -2.915481 3.548450 -0.005777 1.300982 1.024703 1.855230 0.855642 1.858242 1.340786 -0.767411 -0.912978 -3.522547 -0.269466 0.105726 0.721342 -2.294020 -5.106450 2.472782 -6.978094 -4.305714 1.526302 1.001482 -3.197958 -0.373375 -0.502666 0.915182 2.028855 -1.402153 -2.880162 0.078517 1.927582 -0.128105 -0.699696 1.287798 -0.731673 -0.512249 -0.664605 -4.419320 2.365732 1.208807 -0.800181 -0.844985 3.817469 -0.122431 1.651229 0.111678 2.406411 -1.526465 3.122205 1.001550 1.806069 -1.185444 0.379512 -1.398139 0.238304 1.640985 0.724514 -3.405551 -0.267856 -1.123422 1.428505 -1.001880 0.400687 -2.105249 3.277431 1.286796 -3.001928 -2.802777 -2.518647 -2.789345 -3.481401 -0.168152 -1.228260 -4.235647 1.313422 2.684248 1.313088 1.645068 3.826434 -1.779946 0.390270 0.535235 -1.229009 2.175150 -1.580977 1.946097 -2.578800 -2.317398 2.184450 0.574996 2.302829 -0.394415 0.546989 1.433319 -2.943183 -0.211420 2.042991 1.894668 -0.048910 4.242304 3.906426 2.417033 -1.835128 -0.932223 1.824672 -2.690170 -0.730761 0.607795 -3.496960 1.527372 1.656749 0.956735 5.112894 0.166617 -1.806642 3.184951 -0.155673 1.109229 -2.830064 1.255062 -2.376564 -0.407513 -1.800846 -0.445645 -1.827205 -1.252120 -3.560718 -3.309345 4.971040 -4.781549 -3.756398 2.745313 0.097267 2.718440 -5.866443 3.185014 -2.425539 3.906188 1.710657 0.370679 0.777011 -0.585328 -3.375127 1.128502 1.357490 -1.911395 2.277736 2.819665 2.002214 0.036412 -0.379892 3.231811 -1.662567 2.733222 -2.136896 1.842441 -1.449031 -1.945407 -0.429844 -0.487655 -1.185742 -0.354506 1.184508 1.008809 0.579284 2.125757 2.026069 3.178585 3.194114 -1.486407 1.507801 -1.987933 2.548768 -2.570801 -2.494276 0.220453 2.761042 0.873453 2.115124 -6.078586 -5.266260 -5.577651 -5.423534 0.271752 -1.754851 1.041684 -0.118986 -0.943427 -4.877657 -3.528523 3.764501 0.027897 3.673601 3.464638 0.353088 3.071908 2.647910 -1.125102 -0.292373 0.367188 2.357784 0.399460 -0.544115 -3.449136 3.175059 -3.579527 0.760644 5.699949 -2.806480 2.491920 -0.884963 1.483993 -4.538759 5.328761 1.798011 -4.289747 1.759263 3.577258 3.223464 -0.188440 -2.612391 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(suffix*, suffix*) = 0.596856 -1.038874 4.934412 2.972271 -1.135651 0.135045 0.329922 -2.113913 1.503108 -0.584710 -1.187621 1.530856 -1.303719 0.787274 -2.625870 1.679823 -3.832071 -1.537116 -0.922188 -2.110913 -0.883174 -0.311697 1.110680 0.531550 2.503521 1.260930 -1.637189 -0.445172 -1.910739 -2.618056 0.650210 -0.736519 0.925430 -1.095273 0.341622 -4.246363 2.732820 2.072532 -1.309160 -2.175378 2.057228 -1.312855 -0.636871 -1.400119 -1.227662 0.216803 0.329761 1.631503 1.583337 1.203447 -0.225565 1.387581 1.303039 4.756193 -1.090229 1.443749 1.664081 -0.344261 -0.580902 0.272825 0.480158 -0.095650 0.177631 -0.024799 0.411111 -2.905395 -0.769851 -1.296926 -0.575354 1.575834 -0.532153 -0.973133 -1.475615 -0.778123 -3.150655 -0.346418 -1.832587 2.531214 2.693104 -2.613725 1.281185 -0.140205 0.135710 0.388907 0.205660 0.620572 1.207235 1.007351 0.451670 -0.816806 -0.715597 -0.003883 0.904089 -0.865605 -1.413122 -4.868302 2.221468 -4.802290 -2.584213 0.617259 1.886278 -1.924616 0.499503 -0.500489 0.226268 0.899468 -1.185994 -1.227537 0.556996 0.517759 0.659001 -0.319531 0.358642 -0.285697 0.097809 0.143428 -3.275588 1.778300 0.051370 0.069601 -0.074548 1.826743 0.496935 -0.287501 -0.176545 1.590157 -1.209149 2.604956 -0.536277 1.551645 -1.202662 2.097966 -0.307716 1.077037 1.696602 -0.347831 -1.868460 0.303830 -1.169568 0.776613 -1.569795 -0.127590 -1.655519 1.578091 0.643912 -1.696431 -2.115100 -1.146640 -2.204083 -2.900024 -0.077680 -1.053886 -2.844021 1.295030 1.658194 1.800320 1.799542 1.999173 -1.037839 -0.110662 0.243829 -0.690642 1.973783 -1.288373 1.607910 -1.375341 -1.232256 1.234335 -0.097226 1.470348 -0.208239 0.775364 0.784831 -2.483395 0.173527 1.315218 1.712410 -0.274453 1.951319 2.327574 0.709041 -1.286446 -0.213521 1.666622 -1.601777 -0.438167 0.529102 -2.162850 0.660103 0.950947 1.155621 2.514835 0.431811 -0.395368 1.104165 -0.510345 0.624104 -1.279241 -0.111981 -1.136228 -0.666700 -0.870684 0.558184 -0.977501 -0.389010 -1.671467 -2.798415 2.818975 -4.279504 -1.379824 2.633547 -0.172013 1.510095 -2.785273 2.336260 -1.646126 2.805659 0.813652 0.320219 0.350893 -1.015240 -2.822233 0.860364 0.734100 -0.623255 0.770556 2.213723 1.510008 0.326355 -0.742286 2.521363 -1.845082 2.999143 -0.973374 1.837347 -0.907381 -2.023261 -0.011617 -0.132694 -1.751541 -1.094776 1.665926 2.008777 -0.124034 2.062185 1.691719 1.412962 3.191105 -1.537697 1.727078 -1.018121 0.999098 -1.300533 -1.488998 1.246181 1.576728 -0.160110 1.009076 -3.443697 -3.603157 -5.186179 -2.392670 0.776460 -2.255483 0.704727 -1.355917 -0.781233 -2.316632 -2.364942 2.507140 -0.485171 1.006292 2.271274 0.359007 1.713166 1.975465 -1.054061 0.468331 0.019757 1.550489 1.099699 -0.613217 -2.582558 2.442091 -1.799042 -0.245291 3.812452 -1.566156 1.354318 0.505470 0.635054 -2.017052 2.678321 0.466579 -2.231168 1.706917 2.623278 1.360271 0.798016 -1.580110 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__pop_heap >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 0.766093 -1.299065 6.249901 3.683477 -1.351157 0.506236 0.391675 -2.737396 1.862782 -1.360280 -1.256237 1.710182 -2.119292 1.290752 -3.866536 1.520273 -4.937055 -2.033744 -1.507381 -2.735175 -0.877494 -0.655668 1.449819 0.946606 2.973082 1.763248 -2.167372 -0.354939 -3.321190 -2.536380 1.631274 -0.914242 1.279335 -1.294470 0.356957 -5.375036 3.518721 2.763901 -1.627916 -2.662854 2.761271 -2.094466 -0.833131 -2.180831 -1.318252 0.196435 0.139048 2.155021 2.246569 0.943489 -0.765065 1.849345 0.960990 5.865815 -2.213395 1.776708 1.899163 -0.287875 -0.485258 0.366785 0.071465 0.215687 0.143077 0.124174 -0.034325 -3.755038 -0.504269 -1.763817 -0.854764 2.176373 -0.512078 -0.622207 -1.857872 -0.610751 -4.596463 -0.237835 -1.337633 3.130252 3.515083 -2.908184 1.619728 -0.604048 0.169720 0.747382 0.600288 1.049545 1.447040 1.120887 0.421620 -1.158157 -2.086641 0.883245 0.892704 -0.916018 -1.707103 -6.318932 2.603219 -6.266188 -3.045353 0.501793 2.044170 -2.595562 0.666803 -0.625077 0.167615 1.046745 -1.637168 -1.816130 0.894254 1.122851 0.849232 -0.241548 1.136672 -0.726476 0.077256 -0.944953 -3.857256 2.276949 -0.129020 0.104098 -0.258117 2.694405 0.180572 -0.527953 -0.012640 2.182403 -1.942363 3.042793 -0.886966 1.694664 -1.620076 2.218115 -0.175814 0.626932 2.121375 0.829879 -2.540491 0.145058 -1.820976 0.875389 -2.083255 -0.779736 -1.912056 1.476129 0.310984 -2.614370 -2.163576 -1.202607 -2.239830 -3.785088 -0.459670 -1.112996 -3.997477 1.340401 2.178863 2.381491 2.517498 2.877310 -1.215181 -0.053489 0.261856 -1.111333 2.734908 -1.547311 1.954892 -1.698744 -1.837062 1.410735 -0.759532 1.923871 -0.402785 0.997858 0.778693 -3.209191 0.507792 1.341089 2.207898 -0.473484 2.784393 3.180907 -0.110481 -2.104629 0.034933 2.364779 -2.384630 -0.407081 0.661661 -2.577735 0.877825 1.629966 0.728709 3.278696 0.408094 -0.993786 1.583917 -0.505094 1.142387 -1.835640 -0.319411 -1.459615 -1.083865 -1.679163 0.659855 -1.075824 -0.820652 -2.426710 -3.800376 3.472224 -5.460836 -1.925826 3.274700 0.484817 2.046318 -3.798970 2.141732 -2.137966 3.711322 1.549761 0.857549 0.532909 -0.831991 -3.907331 1.121503 0.881108 -1.259100 1.502417 2.773641 2.137211 0.482904 -0.989849 3.372499 -2.155299 3.382579 -1.659757 2.107759 -1.207880 -2.830954 0.441064 -0.303141 -2.178909 -1.488619 2.407445 2.434368 0.207714 3.089688 2.330685 2.102489 4.022954 -1.421243 1.647572 -1.628194 0.905458 -1.478505 -1.813184 1.471759 2.179317 0.002772 1.499028 -4.547430 -5.209275 -6.064509 -3.502383 1.619401 -3.084643 0.429381 -1.154772 -0.744034 -3.617433 -2.844715 2.562218 -0.795074 2.303880 2.905123 0.358124 1.893914 2.729643 -1.967629 0.558624 0.830683 2.548531 1.284589 -0.459463 -3.767934 3.449585 -2.385757 -0.295735 5.084971 -2.315681 1.778697 0.250832 1.188013 -2.778799 3.926190 0.818499 -2.895683 2.328277 3.082299 2.167970 1.982039 -1.791174 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference::type&& std::move(suffix&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__adjust_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_iter) = -0.907040 -4.913241 11.728917 7.435538 -1.847731 2.066861 2.400247 -2.844158 2.832816 0.424533 -2.438201 5.376547 -4.532480 0.161340 -2.442693 1.926109 -8.496418 -4.968553 -0.875818 -3.414585 -2.283078 -2.538516 -0.764471 5.390884 5.132085 2.398325 -3.981147 -0.741883 -7.307666 -5.969741 -0.769417 -1.121897 3.380733 -2.368947 3.773139 -12.582495 5.766228 6.284285 -1.158536 -7.424624 3.585184 -3.345881 0.386361 -1.945732 -3.356139 1.989166 3.381375 4.049929 3.079530 2.208072 -1.701659 0.732390 2.686503 11.290511 0.120543 4.411025 5.586412 -1.910996 -0.358687 -0.997812 0.941806 -3.389165 1.339255 -0.076855 -1.321681 -4.798691 -0.497958 -2.303466 -2.036687 3.365521 2.201440 -3.089165 -3.942912 -2.657461 -8.536552 -1.942382 0.093805 5.839337 7.957878 -5.906872 5.803269 1.182579 3.257739 1.916548 3.339053 0.839503 4.996574 1.834568 -1.333521 -0.437945 -5.681917 -1.485444 0.287710 -0.135635 -3.371589 -9.291786 3.445692 -11.320579 -7.821807 2.969502 1.935444 -4.329990 -1.311041 -1.077100 2.913654 3.082584 -2.539796 -4.571109 -1.337543 2.771347 -1.823472 -0.957786 1.677346 -0.315911 -0.023775 -0.847633 -7.658501 3.781841 2.719659 -0.730265 -0.978988 6.431279 -0.724974 3.140466 0.150992 2.975856 -1.829388 5.765788 1.965085 1.670567 -2.432414 -0.303438 -2.574162 0.505021 1.348337 0.626724 -4.538584 -1.742925 -0.763722 2.787561 -1.802631 1.455154 -2.608313 6.062264 2.236048 -3.842875 -5.078360 -4.877463 -5.559039 -5.811648 0.155690 -1.969261 -5.887009 2.986162 4.271925 3.294094 2.072033 4.530193 -1.935208 1.744851 0.530736 -1.640083 3.046867 -2.029944 3.614218 -4.092978 -3.030917 3.357580 1.341187 5.194054 -0.527766 0.275003 2.125727 -4.395851 -2.080472 2.152184 3.531487 1.479990 6.425179 6.188005 5.403732 -3.911659 -1.645915 2.195227 -3.144061 -1.309092 0.917227 -5.145648 1.894126 2.143339 0.921592 8.103076 0.093170 -2.427517 4.154570 0.374709 1.657521 -4.627750 1.362515 -3.445849 -0.167669 -2.441008 -0.140429 -4.729484 -1.382471 -6.271898 -6.315009 8.401472 -8.200730 -6.807778 4.938315 -1.351291 5.813069 -9.315716 6.173446 -3.605787 6.962081 0.717413 -0.543438 0.687622 -1.835296 -4.533185 2.948340 1.970757 -3.071910 2.147717 4.297561 3.028022 1.180908 -0.467466 4.909863 -2.348528 4.912047 -3.047541 3.620807 -2.512480 -3.014894 -0.784114 -0.653861 -1.120188 1.105606 2.153762 1.992070 1.179864 3.115697 3.231963 5.523575 4.160690 -3.464596 1.750178 -2.368908 4.671115 -4.349625 -3.942195 0.002298 4.200781 0.973326 1.922265 -9.445458 -7.441190 -10.387119 -8.027795 -0.395953 -2.215536 1.439615 -0.201836 -1.519566 -7.093140 -5.056573 6.550691 0.143593 5.228326 5.167764 0.579817 6.335542 4.566132 -1.469485 -1.007718 1.110918 2.128164 0.133233 -1.083921 -6.184925 4.906513 -6.158191 2.591670 8.747661 -4.010704 3.864812 -0.626241 3.208730 -6.832879 8.027225 2.617372 -7.642909 1.704641 6.320946 4.661231 -1.342228 -4.737839 -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.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -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.020958 -0.342894 1.523905 1.111491 -0.353020 0.057579 0.253800 -0.722039 0.694520 0.057913 -0.136756 0.205083 -0.659644 0.319567 -0.102403 0.749513 -1.231965 -0.486577 -0.289689 -0.772769 -0.304224 -0.262856 0.572320 -0.052805 0.755464 0.444568 -0.497556 -0.353606 -0.417140 -0.648040 0.612069 -0.335571 0.584913 0.317355 -0.022745 -2.038920 0.915374 0.514282 -0.495642 -0.663193 0.626317 -0.484175 0.117702 -0.480307 -0.319434 0.182470 0.020306 0.339019 0.728796 0.372090 0.147409 0.249334 0.376877 1.432072 -0.671160 0.388518 0.259996 -0.306209 -0.397715 0.045314 0.141992 0.107823 0.379730 0.193473 -0.053620 -1.046324 -0.253061 -0.634308 -0.764005 0.576275 -0.077173 -0.154762 -0.658324 -0.263652 -0.514948 -0.291502 -0.843799 0.864007 0.985481 -0.819994 0.516422 -0.029713 -0.059030 0.017414 0.138149 0.244898 0.479510 0.211697 0.026150 -0.099787 -0.176181 -0.292352 0.367756 -0.059012 -0.267837 -1.223162 0.532400 -0.575572 -0.787315 0.239515 0.621119 -0.324542 -0.528109 -0.248473 0.123658 0.473629 -0.456960 -0.621920 -0.043989 0.084223 0.204159 -0.161706 -0.184586 -0.225520 -0.323758 -0.363679 -1.072448 0.348925 -0.154299 -0.139373 -0.198168 0.622369 -0.195445 -0.210448 0.005402 0.525079 -0.553406 1.055364 -0.232036 0.602661 0.110315 0.327695 -0.376215 0.034854 0.616825 0.672592 -0.267694 -0.230999 -0.659700 0.125266 -0.730070 -0.060462 0.115903 0.590237 0.851883 -0.460058 -0.602433 -0.180993 -0.363248 -1.235029 0.193307 -0.543330 -0.092563 0.580500 0.599318 0.484394 0.768154 0.946369 -0.630971 0.251382 -0.175099 -0.271752 0.860437 0.292707 0.632983 -0.429526 -0.364431 0.269287 0.029184 0.385773 0.039408 0.136563 0.178403 -0.837277 -0.117024 0.350979 0.418237 -0.187719 0.462798 0.666272 0.938382 -0.493931 0.116106 0.687345 -0.344193 -0.057644 0.256439 -0.739700 0.291666 0.261469 -0.162746 0.662503 0.007560 -0.382880 0.209327 -0.242908 0.194555 -0.447561 0.025452 -0.384449 -0.050738 -0.526140 0.028991 -0.390407 -0.393225 -0.331675 -0.363432 0.972334 -0.764557 -0.464335 0.879057 -0.285063 0.392377 -1.033874 1.288453 -0.594717 0.565076 -0.409133 -0.172865 -0.019900 -0.048744 -0.785191 0.202550 0.260456 -0.084959 0.119111 1.089280 0.566232 0.012182 -0.227962 0.904183 -0.224959 0.976538 -0.252359 0.885477 -0.303708 -0.200268 0.116601 -0.132797 -0.368417 -0.361044 0.314207 0.903741 0.303441 0.534698 0.584282 0.387305 1.025482 -0.465745 0.669665 -0.137143 0.498405 -0.269115 -0.287668 0.447079 0.590109 -0.194620 0.418002 -1.036091 -1.192983 -0.854468 -0.698354 0.055745 0.009269 0.247549 -0.279664 -0.093638 -0.767614 -0.576707 0.489301 -0.292710 0.566591 0.440952 0.125824 0.577221 0.835743 -0.457942 -0.154887 0.019460 0.331910 0.292011 -0.114215 -0.847717 0.895087 -0.644083 -0.048392 1.094067 -0.484531 0.257857 -0.106883 0.881028 -0.613829 1.061488 0.125760 -0.399308 0.922244 0.823126 0.672721 0.324920 -0.424299 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__push_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_val&) = -0.065411 -2.248116 6.512652 4.188046 -1.088331 0.859099 1.522685 -1.646984 1.980439 0.235409 -1.153889 2.313443 -2.702766 0.482676 -1.391982 1.714762 -4.959979 -2.664908 -0.551625 -2.131612 -1.403694 -1.398536 0.425284 1.929891 3.165913 2.117543 -2.225840 -0.726926 -3.427569 -3.446490 0.309435 -0.806293 1.837524 -0.385430 1.538093 -6.822986 3.344162 2.997579 -0.900508 -3.665557 2.211056 -1.849182 0.258425 -1.384022 -0.866472 1.424159 1.594198 2.751140 2.314051 1.247388 -0.939485 0.404479 1.312304 6.017783 -0.868018 2.078549 2.631623 -0.924850 -0.468002 -0.208024 0.457541 -1.453379 0.495483 0.297430 -0.651439 -2.957562 -0.349669 -1.878593 -1.185762 2.312022 1.047590 -1.256462 -2.570572 -1.258020 -4.199061 -0.885830 -1.654951 3.576876 4.408269 -3.422828 2.845760 0.220084 1.598557 0.655242 1.306456 0.432769 2.599234 0.908857 -0.623985 -0.615864 -2.870894 -1.049997 0.211805 0.009026 -1.489601 -5.211089 1.795754 -5.445197 -4.120929 1.150541 1.361665 -2.022970 -0.845451 -0.212867 1.497127 1.632129 -1.215833 -2.496939 -0.422124 0.949730 -0.817827 -0.305135 0.772900 -0.340492 -0.467584 -0.477726 -4.336473 1.846870 0.580403 -0.508675 -0.697535 3.153459 -0.267026 1.195313 0.247828 1.827685 -1.207155 3.313701 0.828757 1.395414 -0.561799 0.454710 -1.585956 0.454003 1.371413 1.288643 -2.408975 -0.778527 -1.153802 1.227505 -1.778451 0.095296 -1.339298 3.222705 1.709379 -2.658666 -2.846170 -2.021516 -2.360931 -3.376521 0.407489 -1.427337 -2.561815 1.281868 2.255511 1.886479 1.611108 2.995347 -1.864551 1.082702 0.228432 -0.631464 2.078762 -0.183416 2.004044 -2.231936 -1.512710 1.402269 0.314399 2.340343 -0.557783 0.213838 1.153470 -2.824899 -0.937951 1.624634 1.699619 0.078876 3.126319 3.233191 2.804908 -2.636819 -0.624565 1.826756 -1.849170 -0.807199 0.973488 -3.000342 1.629887 1.113382 0.860735 3.851113 0.073691 -1.273810 2.159272 0.027747 0.924303 -2.326331 0.312491 -1.890338 -0.368911 -1.580597 0.325879 -2.303695 -0.895588 -2.659008 -2.801786 4.331967 -3.951435 -3.328088 3.006109 -0.912122 2.795381 -4.967924 3.645979 -2.036701 2.680830 -0.003372 -0.106296 0.397867 -0.753766 -2.624614 1.334036 0.969266 -1.388967 1.217912 2.837326 1.817718 0.522196 -0.278661 3.046351 -1.126405 2.892095 -1.380347 2.219032 -1.377997 -1.628228 -0.406296 -0.291782 -0.907117 0.210247 1.267623 2.046662 0.650041 1.970315 2.112575 2.512797 2.918611 -1.896901 1.369584 -1.335381 2.564835 -2.230292 -2.086974 0.384233 2.037514 0.054461 1.405755 -5.064032 -4.521927 -4.690745 -4.463430 -0.320893 -1.252691 1.055618 -0.383661 -0.758901 -3.818732 -2.688296 2.987095 0.050803 2.395606 2.467569 0.076010 3.098863 2.701557 -1.183402 -0.532831 0.424948 1.465425 0.417797 -0.721697 -3.410677 2.890820 -3.311886 0.791235 4.947011 -2.378764 1.803999 -0.889600 2.605599 -3.639549 4.455331 1.277402 -3.655132 1.522773 3.596518 3.079896 0.305562 -2.441942 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference::type&& std::move(int (*&)(suffix, suffix)) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(suffix*, suffix&) = 0.596856 -1.038874 4.934412 2.972271 -1.135651 0.135045 0.329922 -2.113913 1.503108 -0.584710 -1.187621 1.530856 -1.303719 0.787274 -2.625870 1.679823 -3.832071 -1.537116 -0.922188 -2.110913 -0.883174 -0.311697 1.110680 0.531550 2.503521 1.260930 -1.637189 -0.445172 -1.910739 -2.618056 0.650210 -0.736519 0.925430 -1.095273 0.341622 -4.246363 2.732820 2.072532 -1.309160 -2.175378 2.057228 -1.312855 -0.636871 -1.400119 -1.227662 0.216803 0.329761 1.631503 1.583337 1.203447 -0.225565 1.387581 1.303039 4.756193 -1.090229 1.443749 1.664081 -0.344261 -0.580902 0.272825 0.480158 -0.095650 0.177631 -0.024799 0.411111 -2.905395 -0.769851 -1.296926 -0.575354 1.575834 -0.532153 -0.973133 -1.475615 -0.778123 -3.150655 -0.346418 -1.832587 2.531214 2.693104 -2.613725 1.281185 -0.140205 0.135710 0.388907 0.205660 0.620572 1.207235 1.007351 0.451670 -0.816806 -0.715597 -0.003883 0.904089 -0.865605 -1.413122 -4.868302 2.221468 -4.802290 -2.584213 0.617259 1.886278 -1.924616 0.499503 -0.500489 0.226268 0.899468 -1.185994 -1.227537 0.556996 0.517759 0.659001 -0.319531 0.358642 -0.285697 0.097809 0.143428 -3.275588 1.778300 0.051370 0.069601 -0.074548 1.826743 0.496935 -0.287501 -0.176545 1.590157 -1.209149 2.604956 -0.536277 1.551645 -1.202662 2.097966 -0.307716 1.077037 1.696602 -0.347831 -1.868460 0.303830 -1.169568 0.776613 -1.569795 -0.127590 -1.655519 1.578091 0.643912 -1.696431 -2.115100 -1.146640 -2.204083 -2.900024 -0.077680 -1.053886 -2.844021 1.295030 1.658194 1.800320 1.799542 1.999173 -1.037839 -0.110662 0.243829 -0.690642 1.973783 -1.288373 1.607910 -1.375341 -1.232256 1.234335 -0.097226 1.470348 -0.208239 0.775364 0.784831 -2.483395 0.173527 1.315218 1.712410 -0.274453 1.951319 2.327574 0.709041 -1.286446 -0.213521 1.666622 -1.601777 -0.438167 0.529102 -2.162850 0.660103 0.950947 1.155621 2.514835 0.431811 -0.395368 1.104165 -0.510345 0.624104 -1.279241 -0.111981 -1.136228 -0.666700 -0.870684 0.558184 -0.977501 -0.389010 -1.671467 -2.798415 2.818975 -4.279504 -1.379824 2.633547 -0.172013 1.510095 -2.785273 2.336260 -1.646126 2.805659 0.813652 0.320219 0.350893 -1.015240 -2.822233 0.860364 0.734100 -0.623255 0.770556 2.213723 1.510008 0.326355 -0.742286 2.521363 -1.845082 2.999143 -0.973374 1.837347 -0.907381 -2.023261 -0.011617 -0.132694 -1.751541 -1.094776 1.665926 2.008777 -0.124034 2.062185 1.691719 1.412962 3.191105 -1.537697 1.727078 -1.018121 0.999098 -1.300533 -1.488998 1.246181 1.576728 -0.160110 1.009076 -3.443697 -3.603157 -5.186179 -2.392670 0.776460 -2.255483 0.704727 -1.355917 -0.781233 -2.316632 -2.364942 2.507140 -0.485171 1.006292 2.271274 0.359007 1.713166 1.975465 -1.054061 0.468331 0.019757 1.550489 1.099699 -0.613217 -2.582558 2.442091 -1.799042 -0.245291 3.812452 -1.566156 1.354318 0.505470 0.635054 -2.017052 2.678321 0.466579 -2.231168 1.706917 2.623278 1.360271 0.798016 -1.580110 -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.705607 -1.490885 6.198752 3.611691 -1.032288 0.561392 0.403842 -2.914147 3.087771 -0.882419 -1.295857 1.612278 -3.314923 1.074050 -1.730460 1.224769 -5.802480 -3.322352 -0.871868 -2.574984 -2.060744 -2.388991 1.393046 1.420482 2.520848 3.589249 -2.951248 1.021014 -3.791711 -4.428846 1.699570 -1.455224 2.383152 1.566960 0.973785 -8.031012 3.919927 2.858270 -1.172248 -2.986929 2.345884 -3.160763 0.039930 -2.102500 -0.751784 1.519703 0.980059 1.906107 3.388995 0.099645 0.065125 0.019328 -1.003626 3.862633 -2.639583 1.753252 1.305093 -1.712333 -1.860032 -0.480968 0.099999 -1.013983 2.107708 2.132753 -3.044085 -3.438279 1.706038 -2.229052 -3.330992 3.562606 1.015393 -0.839438 -2.028531 -1.217874 -3.594903 -0.904035 4.669600 2.386228 5.045255 -1.289739 2.995072 -0.379631 1.391604 -0.016085 1.693062 0.204700 4.590033 0.443894 -1.513378 -1.996885 -3.638552 -0.596401 -0.227834 3.460570 -0.133247 -1.370808 1.305264 -6.401127 -3.948854 -0.346308 1.324933 -1.570767 -4.246070 0.961540 2.798712 1.356430 -0.111781 -3.213974 -0.230689 0.950289 -2.437593 -0.151296 0.095171 -1.283514 -1.932818 -1.028848 -4.641447 0.920345 -0.131138 -0.823240 -1.375011 3.381582 -1.520920 0.182618 0.650256 2.488126 -1.301873 3.096995 -0.830419 0.840894 -0.152865 -0.154925 -0.608817 -1.786102 1.097850 2.705942 -3.007486 -2.871723 -1.809598 0.408633 -3.803209 -1.967843 -2.810266 3.175701 3.744227 -3.261943 -2.948135 -1.095295 -1.837147 -5.511149 -0.027841 -2.155211 -2.500934 0.318192 2.809688 1.686841 2.655354 5.208828 -2.298564 2.325264 0.387028 -1.439840 3.586111 0.026459 3.118926 -2.576230 -1.709199 2.009021 -0.410105 2.069266 -0.765680 -0.351531 0.392410 -4.144821 -2.782414 2.915208 1.453563 2.439287 2.386698 2.930800 4.850285 -4.193016 1.116108 2.935540 -0.626431 -0.921341 1.615306 -2.723770 1.561878 1.401385 0.693324 4.632638 0.293401 -2.960091 0.481369 1.104105 1.630571 -3.851975 0.416397 -1.619268 1.879042 -2.147066 -1.218967 -2.237794 -1.565837 -2.645239 -3.085127 4.271428 -2.833109 -6.355355 4.616208 -1.190478 5.390348 -7.126269 -0.027148 -2.786739 3.888207 -1.607976 0.677239 0.185807 -2.155173 -2.949664 2.761323 0.871124 -0.508726 2.151338 3.378133 2.586141 1.866777 -0.932061 3.205741 0.042622 3.344194 -1.066478 2.484088 -0.691448 -1.415417 0.489954 -0.902803 -1.526636 0.536411 1.118752 1.935707 3.350707 1.993043 3.859015 2.745114 3.580704 -1.715756 1.250570 -0.824075 2.059324 -1.189202 -2.509682 1.219330 2.838208 -0.849810 1.819085 -4.999528 -6.642983 -2.841719 -7.637247 -0.063142 -0.838973 1.247284 0.378025 0.140135 -3.713725 -1.197418 4.212955 0.483626 10.124154 1.570376 0.124240 2.324927 3.657025 -3.195035 -1.644683 1.014957 1.747437 -0.347831 -0.336335 -5.224822 3.819451 -2.732356 1.719710 5.063137 -3.971036 1.030109 -2.121628 3.881838 -3.728370 5.168104 1.447428 -3.129459 3.079293 0.244482 4.123339 1.831717 -2.337671 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.559575 -1.121588 4.866091 3.281014 -0.792052 0.389345 0.708267 -2.329931 2.504363 0.591455 -0.828409 0.931745 -2.340299 0.704293 0.129362 1.881168 -4.177642 -2.010488 -0.494478 -2.184707 -1.358404 -1.589273 1.156793 0.477277 2.233733 2.040742 -1.733012 -0.065648 -1.828277 -3.438364 1.188836 -1.149206 1.825395 1.524132 0.819354 -5.994458 3.165193 1.820637 -1.032344 -2.321484 1.645273 -1.885801 0.322270 -1.109235 -0.079124 1.406079 0.823938 1.782675 2.672822 0.913932 0.399664 -0.205649 0.372493 3.151520 -1.873092 1.344185 0.827386 -1.537095 -1.245706 0.041669 0.203551 -0.706433 1.554966 1.280389 -1.421803 -2.857055 0.574804 -1.612758 -2.558969 2.390797 0.714307 -1.006343 -2.104670 -1.138081 -1.622478 -0.826433 -0.346531 2.351488 3.660311 -1.521842 2.252114 0.162507 0.744629 -0.146167 1.145409 0.162388 3.090316 0.371655 -1.043472 -0.940527 -1.975761 -1.724734 0.428672 1.351060 -0.254293 -1.685755 0.896654 -3.035483 -2.920957 0.356573 1.349276 -1.020332 -2.987270 0.269470 1.787420 1.201814 -0.327633 -2.416266 -0.248362 0.431545 -1.418090 -0.326875 -0.497167 -1.125794 -1.532129 -0.462332 -3.513264 0.708580 -0.103462 -0.607450 -1.136401 2.352644 -0.808577 -0.017917 0.358886 1.748400 -1.025537 2.639803 -0.429837 1.434722 0.748280 0.085907 -1.402839 -0.050538 1.309716 1.459969 -1.227778 -1.415882 -1.538418 0.476122 -2.806287 -0.338028 -1.019387 2.913701 3.191803 -1.973273 -2.236752 -0.732511 -1.133090 -3.561107 0.832407 -1.677593 -0.922436 0.285259 2.062687 1.163010 2.054731 2.979899 -2.283621 1.382014 -0.286167 -0.460898 2.688315 0.821534 2.342175 -1.862315 -0.854706 1.146412 0.437713 1.041739 -0.298618 -0.236318 0.638303 -2.899789 -1.498622 1.789093 0.847087 0.837141 1.694907 2.162205 4.606164 -2.338819 0.517312 2.213714 -0.526983 -0.633129 1.223419 -2.248943 1.365902 0.827842 0.552614 3.050635 0.078870 -1.735601 0.370419 0.300058 0.770408 -2.195580 0.225446 -1.298385 0.814521 -1.241936 -0.424213 -1.794044 -1.396602 -1.447757 -1.155814 3.237457 -1.285532 -3.555916 3.354501 -2.049407 2.739132 -4.463214 2.506337 -2.085553 1.417014 -1.795138 -0.233761 -0.156440 -0.773437 -2.159044 1.531021 0.728698 -0.103933 1.290255 2.979070 1.822848 0.875888 -0.560987 2.478800 -0.236726 2.592834 -0.666624 2.374704 -0.827863 -0.010515 -0.068228 -0.557305 -0.908825 0.032421 0.404665 1.856842 1.864937 1.030697 2.260507 1.625344 2.590715 -1.392956 1.820418 -0.482204 1.635314 -1.023144 -1.576581 1.154836 1.478053 -0.666087 1.482260 -3.724819 -3.904135 -1.585775 -3.996793 -0.551783 0.291283 1.207799 0.005071 -0.037982 -2.639333 -1.216192 2.630058 0.191103 4.272158 1.085776 0.132036 1.823427 2.693906 -1.475773 -1.179031 -0.122370 0.713385 0.009792 -0.611231 -3.041362 2.858285 -2.195535 1.019696 3.486254 -2.369815 0.610415 -1.594087 3.223496 -2.709186 3.357894 0.793675 -1.688888 2.352084 1.475318 2.927578 0.461402 -1.647887 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::iter_swap(suffix*, suffix*) = -0.208266 -0.294392 0.858988 0.585873 -0.070385 0.037466 0.352605 -0.335522 0.502913 0.032287 -0.125037 0.087222 -0.619543 0.180527 -0.250851 0.381850 -0.658713 -0.481461 -0.074470 -0.370117 -0.086072 -0.310544 0.484983 -0.033168 0.470793 0.131533 -0.293119 -0.326885 -0.586430 -0.275824 0.451141 -0.292655 0.387949 0.133289 -0.194013 -1.108000 0.473891 0.336433 -0.316888 -0.426794 0.470413 -0.453561 0.164638 -0.346664 -0.104556 0.077476 0.111452 0.175677 0.511403 0.176118 0.192839 0.022528 0.072983 0.851096 -0.610264 0.262945 0.124533 -0.116708 -0.275613 0.034131 0.065789 0.000728 0.313073 0.271330 -0.233004 -0.543983 -0.149040 -0.448591 -0.615332 0.364444 -0.166848 0.147884 -0.446645 0.009855 -0.378164 -0.181558 -0.263504 0.427914 0.735259 -0.450368 0.476840 -0.025076 0.074478 -0.075650 0.043493 0.201377 0.179261 0.077021 -0.102362 -0.220346 -0.326356 0.076082 0.052371 0.137594 -0.019928 -0.551945 0.357867 -0.302130 -0.554566 0.040003 0.242468 -0.137926 -0.320830 0.104463 0.068355 0.398767 -0.350802 -0.545083 -0.061023 0.014592 0.117286 -0.072350 -0.001743 -0.253752 -0.301235 -0.464613 -0.638551 0.040549 -0.171893 -0.313237 -0.195376 0.425950 -0.302802 0.014951 0.102484 0.342585 -0.292536 0.650468 -0.064890 0.307001 0.161165 0.025436 -0.446947 -0.171087 0.388966 0.761091 -0.269464 -0.008568 -0.408315 -0.009377 -0.437959 -0.260308 0.098255 0.291837 0.476326 -0.488358 -0.323136 -0.068382 -0.064476 -0.825151 0.127114 -0.377738 0.066030 0.260689 0.408841 0.267291 0.518412 1.001501 -0.391418 0.239610 -0.041296 -0.303771 0.555766 0.160488 0.469374 -0.279866 -0.316923 0.144277 0.072742 0.186666 -0.015242 0.097283 0.045977 -0.664649 -0.076518 0.136106 0.251129 -0.134165 0.326473 0.332561 0.286409 -0.487333 0.162585 0.477164 -0.102607 -0.007716 0.146531 -0.573118 0.317338 0.151701 -0.196815 0.276439 0.052239 -0.388518 0.198161 -0.221345 0.196037 -0.419797 0.019673 -0.289404 -0.062257 -0.440403 0.000106 -0.162925 -0.374655 -0.136994 -0.132834 0.587559 -0.248679 -0.326508 0.397979 0.047825 0.296370 -0.772439 0.771206 -0.432355 0.481126 -0.246918 -0.018620 -0.007882 0.163562 -0.335632 -0.013479 0.171413 -0.062674 0.301344 0.686781 0.402166 0.073079 -0.029892 0.620474 -0.007116 0.492243 -0.095797 0.425999 -0.131129 -0.308842 0.259713 -0.143828 -0.114884 -0.101147 0.183116 0.723394 0.431855 0.243502 0.585997 0.281459 0.694755 -0.258184 0.299091 -0.104075 0.537339 -0.114356 -0.154285 0.153751 0.362331 -0.163834 0.330322 -0.672076 -0.996547 -0.260591 -0.668887 0.135060 -0.151914 0.112440 -0.109326 0.110867 -0.658208 -0.276609 0.077062 -0.236084 0.701077 0.218600 0.087915 0.358996 0.538734 -0.433730 -0.182516 0.154289 0.342349 0.070842 -0.055839 -0.521034 0.426626 -0.556213 0.039265 0.604535 -0.359732 0.017625 -0.069414 0.533572 -0.424605 0.807087 0.184315 -0.224826 0.769775 0.357320 0.591919 0.312338 -0.261414 -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.300531 -0.334370 2.758088 1.506241 -0.670804 0.096581 0.079100 -1.551052 1.383917 -1.120883 -0.614370 0.353833 -0.964945 0.632085 -2.148411 0.616410 -2.449564 -1.159211 -0.767350 -1.543727 -0.574794 -0.434189 0.882210 0.057758 1.218534 0.762492 -1.027872 0.028619 -1.590535 -0.578720 1.238866 -0.508267 0.378764 -0.473962 0.017006 -2.373760 1.643076 1.025917 -0.932022 -1.013583 1.171865 -1.325373 -0.330950 -1.338162 -0.439898 -0.136691 -0.252069 1.193819 1.223055 0.124244 -0.131989 1.010611 -0.282962 2.908554 -1.522834 0.755890 0.595596 0.068741 -0.480287 0.503130 0.129634 0.387985 0.149265 0.333500 -0.295348 -1.816055 -0.164166 -1.108037 -0.467806 1.311491 -0.276258 -0.201920 -0.831096 -0.177697 -2.236170 -0.254964 -0.781666 1.463032 1.646853 -1.509845 0.535496 -0.285155 0.344498 0.307705 0.289104 0.409890 1.229569 0.421877 0.153818 -0.691773 -1.380950 0.641424 0.394268 -0.757004 -0.605520 -2.923599 1.178833 -3.272322 -1.516493 -0.054579 1.141801 -0.940723 0.226985 0.120643 0.288648 0.241662 -0.699397 -0.887426 0.551977 0.513550 0.222252 0.033374 0.602687 -0.484877 0.113507 -0.729710 -1.970759 0.931453 -0.300077 0.143544 -0.133338 1.346877 -0.283028 -0.684235 0.039868 0.876309 -0.951682 1.533295 -0.817587 0.661126 -0.819592 1.068531 -0.326937 0.426922 0.958793 0.716696 -1.112885 0.266731 -0.879544 0.284291 -1.517406 -0.769555 -1.137704 0.383124 -0.204888 -1.474204 -1.043002 -0.393658 -0.978862 -2.032125 -0.195498 -0.640423 -1.938224 0.385345 1.108056 1.915836 1.458316 1.572301 -0.570808 0.142534 0.096299 -0.449221 1.508626 -0.707053 1.099772 -0.765021 -0.868070 0.569311 -0.672560 0.781191 -0.140626 0.350324 0.147122 -1.915693 0.124152 0.545808 1.110935 -0.007473 1.257764 1.466365 -0.803471 -1.711622 0.449718 1.348604 -0.883056 -0.152898 0.327369 -1.163800 0.461418 0.807031 0.510602 1.300405 0.213924 -0.398795 0.202368 -0.162088 0.790913 -0.934760 -0.638316 -0.575604 -0.597195 -0.934529 0.720116 -0.603563 -0.409598 -0.950150 -2.077293 1.505340 -2.496904 -1.067929 1.993249 0.244423 1.290262 -1.649514 0.421154 -1.079955 2.043715 0.564995 0.680244 0.097813 -0.501640 -1.936062 0.735796 0.373890 -0.572966 0.727473 1.336082 1.138353 0.637233 -0.474031 1.719018 -1.086108 1.715106 -0.752553 1.156340 -0.513661 -1.695543 0.540371 -0.256725 -1.074532 -0.694190 1.401165 1.657924 0.453441 1.749421 1.439270 0.897849 2.056987 -0.802577 0.686814 -0.654755 0.149062 -0.559803 -0.775762 0.898266 0.728970 -0.319239 0.428933 -2.030709 -2.775849 -2.884866 -1.748590 1.057120 -2.026433 -0.041167 -0.578105 -0.211487 -1.658225 -1.157837 0.936265 -0.519759 1.498951 1.118953 0.188978 0.827000 1.619300 -1.416438 0.310261 0.716670 1.168713 0.510908 -0.293308 -2.192914 1.918073 -1.017727 -0.120237 2.467818 -1.156089 0.679410 0.296526 0.634953 -1.082695 1.794492 0.374288 -1.259584 1.255489 1.277496 1.272844 1.614718 -0.877917 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int std::__bit_width(unsigned long) = -0.059454 -0.557949 0.707526 0.588639 0.051697 0.101903 0.542161 0.022483 0.229243 0.169503 -0.086678 0.333109 -0.649548 0.006743 -0.066857 0.192108 -0.382318 -0.487708 0.007079 0.008157 -0.014548 -0.308015 0.165915 0.345668 0.443435 0.141195 -0.230124 -0.402600 -0.760595 -0.098700 0.088443 -0.087386 0.382233 0.172920 0.105245 -0.667623 0.185362 0.506823 -0.073510 -0.631871 0.288644 -0.229396 0.191749 -0.298526 0.005210 0.187747 0.359438 0.305213 0.164440 0.221388 -0.107543 -0.137462 0.240301 0.588658 -0.053699 0.322349 0.468279 0.009085 0.095878 -0.211555 0.132440 -0.239300 0.184628 0.060912 -0.165855 -0.191839 -0.268548 -0.320416 -0.375945 0.177462 0.122900 0.193008 -0.544119 -0.131366 -0.474629 -0.084395 -0.425775 0.403907 0.681323 -0.542088 0.563831 0.236262 0.263864 -0.004847 0.100557 0.134971 -0.079092 0.138459 -0.122978 0.030290 -0.690904 -0.177384 -0.141877 -0.097473 -0.184921 -0.645964 0.317319 -0.288681 -0.573389 0.200206 -0.012594 -0.183304 -0.047505 0.118953 0.007522 0.499708 -0.310590 -0.437922 -0.218515 0.020769 0.135444 -0.104395 0.197777 0.123257 -0.194759 -0.425575 -0.542118 0.056334 0.151115 -0.385915 0.030236 0.385041 -0.285498 0.478041 0.034973 0.054823 -0.099454 0.532427 0.436234 0.102163 0.223807 -0.240870 -0.406305 -0.145457 0.238958 0.769802 -0.257175 0.091823 -0.095727 0.128476 0.072239 -0.018267 0.235420 0.268868 0.166702 -0.416279 -0.343120 -0.412761 -0.208685 -0.337305 0.167019 -0.171286 0.230595 0.282056 0.306737 0.085392 0.120350 0.770832 -0.281442 0.079186 0.045947 -0.196400 0.075742 0.251883 0.241790 -0.198107 -0.339554 0.232831 0.249861 0.287858 0.053387 0.067633 0.149637 -0.312149 -0.139665 -0.059711 0.145586 -0.256975 0.469076 0.296456 -0.120724 -0.205237 -0.111276 0.142979 -0.051748 -0.009139 0.075698 -0.556658 0.428725 -0.063440 -0.171756 0.255531 -0.011127 -0.258546 0.597312 -0.213452 0.045671 -0.321928 0.123939 -0.337222 -0.189098 -0.467278 0.213644 -0.158500 -0.264413 -0.220588 0.000000 0.621612 0.024819 -0.192385 -0.053661 0.184774 0.194260 -0.597478 0.733771 -0.183321 0.342112 0.040276 -0.146349 0.146078 0.112159 -0.054662 -0.390109 0.205532 -0.173951 0.103998 0.348574 0.160609 -0.193390 0.176526 0.336392 0.048393 0.239492 -0.157333 0.155481 -0.138249 -0.214975 0.129207 -0.081101 0.232767 0.078679 -0.067269 0.551209 0.229783 0.195292 0.422674 0.216063 0.348274 -0.253428 0.006094 0.017905 0.669581 -0.292767 -0.055553 -0.211209 0.286790 -0.067026 0.336796 -0.530938 -0.689640 -0.058280 -0.539047 -0.099508 -0.107398 0.104205 -0.025034 -0.067075 -0.537472 -0.384699 -0.075985 -0.135384 0.131455 0.295192 0.014266 0.506733 0.281952 -0.239197 -0.112479 0.304276 0.271673 -0.016015 -0.073092 -0.226241 0.105488 -0.562311 0.099405 0.537281 -0.255666 0.182593 -0.275817 0.637828 -0.446385 0.817816 0.226611 -0.515041 0.303166 0.515870 0.611780 -0.087264 -0.291026 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int std::__countl_zero(unsigned long) = 0.283614 -1.569874 2.421747 2.046685 0.385295 0.251058 1.677667 -0.205162 1.000420 1.095293 -0.533756 1.124826 -1.802573 0.290096 0.125928 1.064506 -1.346847 -1.518980 0.240892 -0.030313 -0.134465 -1.027515 0.918879 0.658830 1.601979 0.540917 -0.796220 -1.620093 -2.093067 -0.657543 0.552122 -0.517800 1.252662 0.975491 0.134554 -2.011903 0.749993 1.145062 -0.259085 -1.956658 0.982150 -0.600509 0.310904 -0.556633 0.746579 0.680381 1.166933 1.497932 0.852444 1.042529 -0.080613 -0.557310 0.872307 1.714024 -0.482956 0.924489 1.237699 -0.286146 0.187887 -0.357784 0.504112 -0.752117 0.810169 0.730489 -0.366274 -0.868886 -0.579450 -0.963874 -1.459323 0.855455 0.599644 0.636009 -1.739289 -0.212723 -0.413698 0.005164 -1.413542 1.532183 2.345619 -1.247183 1.829580 0.696296 0.937532 -0.597206 0.084703 0.267330 -0.031924 0.452075 -0.612638 -0.680179 -2.501203 -0.979140 -0.420811 -0.163383 -0.253400 -1.196840 0.785143 -0.252210 -1.731795 0.451661 0.188424 -0.410257 -0.361477 0.782437 0.462487 1.477611 -0.467291 -1.384481 -0.703155 -0.201263 -0.171989 -0.491693 0.043923 -0.198664 -1.022376 -0.789154 -1.648054 -0.091152 0.223840 -1.310923 -0.278056 0.947009 -0.804411 1.246526 0.088476 0.425254 -0.070102 1.126932 1.293451 0.640051 1.940842 -0.771138 -1.336553 0.428031 1.003176 2.191794 -0.765640 0.400132 -0.547295 0.397208 -0.126668 -0.028824 0.605770 1.300863 1.011665 -1.512044 -1.412667 -1.070276 0.169925 -0.855627 0.779957 -0.849255 0.819128 0.013917 1.022898 0.125823 0.616223 2.134463 -1.469569 0.751192 0.279539 0.023019 0.462250 1.066387 0.844825 -0.824566 -0.888990 0.464634 1.135178 0.057155 -0.075762 0.071710 0.495136 -1.355904 -0.636691 0.122803 0.275436 -0.676786 1.173864 0.712751 0.961198 -0.946841 -0.308186 0.754268 -0.043452 -0.344875 0.425502 -1.988538 1.610165 -0.329776 0.220038 1.055711 0.070391 -1.075202 1.518220 -0.403210 -0.061377 -0.731102 0.509011 -1.055821 -0.690832 -1.007832 0.488302 -0.463377 -0.874621 -0.380509 0.655354 1.962458 0.702934 -1.007361 0.243430 -0.653545 0.226955 -2.238984 2.757743 -0.824098 -0.074512 -0.339964 -0.639742 0.015912 0.430164 -0.515231 -0.817896 0.688281 -0.244479 0.917624 1.572593 0.554119 -0.311941 0.513077 0.974900 0.254052 0.752888 -0.199090 0.690295 -0.400061 -0.315976 -0.051664 -0.268262 0.708397 0.075234 -0.539778 1.687327 0.869984 0.290752 1.446783 0.535087 1.240112 -0.950046 0.684682 -0.062955 2.088093 -0.770765 -0.321129 -0.354476 0.197493 -0.490364 1.480311 -1.769445 -2.091082 0.546143 -1.892504 -0.524769 -0.351758 0.752816 -0.227716 -0.113200 -1.955883 -1.044247 -0.915157 -0.066429 0.366976 1.001725 -0.010296 1.326716 0.887852 -0.730587 -0.402089 0.192110 0.675241 -0.205972 -0.668873 -0.579539 0.341876 -1.456820 0.502046 1.676916 -0.725666 0.265887 -1.286514 2.016386 -1.391234 2.480510 0.827985 -1.278688 0.989120 0.918308 2.117980 -0.506020 -1.016932 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.360403 -1.269878 7.618391 4.931452 -1.770239 0.423015 0.150495 -4.074569 3.272010 -0.766889 -1.485555 1.630376 -2.751331 1.394219 -2.050281 2.557081 -6.705727 -2.735062 -1.648755 -3.620945 -1.848810 -1.574684 1.946511 0.888973 3.479491 3.167227 -2.934468 0.390853 -2.835653 -4.509169 1.897216 -1.326183 2.137376 1.014113 1.094463 -7.601132 4.900232 3.012795 -1.818042 -3.222998 2.808832 -2.700175 -0.604684 -2.392618 -1.145505 1.330483 0.173370 2.560819 3.527507 1.138042 -0.086861 1.320035 0.655537 5.373488 -2.635973 2.037030 1.631905 -1.408748 -1.443125 0.239869 0.407578 0.025457 1.356742 1.230131 -1.103933 -4.783165 0.251845 -2.327153 -2.502245 3.654582 0.208954 -1.595675 -2.717580 -1.579732 -4.016058 -0.695390 -0.246674 3.941794 4.799868 -2.937178 2.209527 -0.312846 0.477784 0.101673 1.204399 0.447855 4.053595 1.038196 -0.279906 -1.464572 -2.601772 -1.480402 1.146314 0.363703 -1.351791 -4.614866 2.168743 -7.128477 -4.201185 0.318748 2.779071 -2.424689 -2.302235 -0.044475 1.821499 1.211379 -0.591391 -2.684840 0.751458 1.098719 -0.763901 -0.437873 -0.261599 -0.934859 -1.071225 -0.291856 -5.427738 2.098153 -0.269751 0.000806 -0.704566 3.297962 -0.512581 -0.910823 0.112341 2.529094 -1.938309 3.945974 -1.473859 2.254431 -0.382522 1.756422 -0.313146 0.675345 2.168402 0.883451 -2.505811 -1.240244 -2.289477 0.917737 -4.008266 -0.726135 -2.512970 3.074377 2.686067 -2.977484 -3.380780 -1.181672 -2.961899 -5.480097 0.307809 -2.136129 -3.393484 1.250935 2.948566 2.765852 3.274462 3.820372 -2.549897 0.907235 0.128419 -0.836406 3.968826 -0.426370 3.016165 -2.482555 -1.787042 2.106513 -0.553244 1.970697 -0.444034 0.446705 0.857991 -4.331098 -1.354037 2.769445 1.944438 1.092006 2.823042 3.680311 3.459633 -2.928063 0.745809 3.337917 -1.633294 -0.831114 1.370683 -3.204683 1.445821 1.524338 1.672759 4.641843 0.234528 -1.611522 0.640142 0.247059 1.427288 -2.930722 -0.172121 -1.749689 0.631232 -2.012059 -0.046044 -2.015488 -1.399186 -2.475196 -3.513132 4.650306 -4.434080 -4.469099 5.470088 -1.781759 3.955381 -5.702984 2.202335 -2.857911 3.669438 -0.541499 0.414394 0.228200 -2.365474 -4.453015 2.260217 1.074525 -0.566084 1.480721 3.844787 2.696889 1.056713 -1.312038 3.790722 -1.588059 4.701882 -1.595133 3.508003 -1.254942 -1.579765 0.095522 -0.623725 -2.435938 -1.139523 1.753556 2.967663 1.583255 3.122177 3.249884 2.261114 4.679773 -2.245316 2.724279 -1.125733 1.133232 -1.658566 -2.472319 2.289748 2.357974 -0.836098 1.834311 -5.488792 -6.213202 -5.553449 -5.480736 0.359344 -2.095976 1.515319 -0.930398 -0.789103 -3.601887 -2.738325 4.071464 -0.126984 5.387179 2.498741 0.286874 2.492387 4.006102 -2.535246 -0.283252 0.204877 1.929915 0.858580 -0.872818 -5.107246 4.772025 -2.564208 0.542087 6.122642 -3.384898 1.804284 -1.304697 3.115169 -3.595046 4.691046 0.924372 -3.080776 3.156328 2.517793 3.004222 1.900447 -2.550163 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.436106 -0.908908 4.226671 3.012452 -0.860314 0.137080 0.676308 -2.047757 1.871394 0.218237 -0.773890 0.819152 -1.819793 0.854220 -0.524906 1.983062 -3.584282 -1.487956 -0.629391 -1.780654 -0.794889 -0.939829 1.546687 0.172443 2.202449 1.645551 -1.407273 -0.610020 -1.296014 -2.401528 1.239868 -0.926604 1.441202 1.118568 0.278142 -4.307904 2.632791 1.489778 -1.099768 -1.909550 1.685683 -1.309553 -0.091547 -1.270929 -0.339923 0.853359 0.319019 1.742845 2.053505 1.100395 0.145222 0.397636 0.970116 2.961887 -1.575206 1.102715 0.849816 -0.814111 -0.788125 0.060360 0.370941 -0.011603 0.911604 0.820770 -0.345716 -2.665099 -0.348144 -1.491682 -1.812578 1.864310 0.058090 -0.421063 -1.992955 -0.678300 -1.404021 -0.335944 -1.688203 2.405396 2.864716 -1.815263 1.482042 0.028445 0.128872 -0.319855 0.328746 0.389946 1.585749 0.609256 -0.190253 -0.769493 -1.277550 -1.262854 0.752605 -0.169201 -0.609665 -2.793832 1.199883 -2.504067 -2.305286 0.317452 1.542991 -1.160248 -1.093012 0.029216 0.802087 1.095329 -0.601685 -1.661649 0.272385 0.171331 -0.117034 -0.400174 -0.411164 -0.478508 -0.944884 -0.362175 -3.009099 0.843787 -0.316513 -0.455608 -0.291570 1.578020 -0.277134 -0.280415 0.080635 1.317477 -1.009823 2.414573 -0.420928 1.550381 0.691156 0.870616 -0.443975 0.713786 1.616847 1.033474 -1.032854 -0.412280 -1.465568 0.495451 -2.030713 -0.276837 -0.502490 1.803622 1.929056 -1.651657 -1.920315 -0.586794 -1.202982 -2.890159 0.650564 -1.398221 -0.821588 0.780095 1.657139 1.041040 1.935302 2.297175 -1.883745 0.564011 -0.093469 -0.272247 2.181380 0.597510 1.720693 -1.296848 -0.948911 1.009256 0.166920 0.786678 -0.219332 0.301713 0.604496 -2.418321 -0.566176 1.316496 0.930995 -0.088969 1.402122 1.752556 2.239917 -1.137801 0.281706 1.947485 -0.725880 -0.427622 0.872369 -2.147728 1.203995 0.530796 0.684644 2.102281 0.111112 -0.985103 0.671784 -0.258310 0.494260 -1.417493 0.015001 -1.075875 0.043134 -1.227769 0.268665 -0.915347 -1.056441 -0.927311 -0.923686 2.637181 -1.644469 -1.796605 2.548478 -1.323878 1.517120 -2.954764 2.682372 -1.631047 1.181287 -0.661829 -0.260495 0.105633 -0.839834 -2.203375 0.557143 0.698720 0.010270 0.780482 2.458880 1.481741 0.141226 -0.457030 2.175779 -0.619490 2.563693 -0.633384 2.027689 -0.735174 -0.465387 0.074705 -0.343309 -1.056918 -0.767174 0.601787 2.285910 0.849824 1.437548 1.940999 0.885144 2.722944 -1.330455 1.815358 -0.488146 1.184074 -0.882844 -1.092148 1.146265 1.128090 -0.661197 1.445071 -2.964993 -3.370019 -2.198788 -2.515514 -0.132792 -0.702675 1.161979 -0.705273 -0.295798 -2.080255 -1.568797 1.563510 -0.257159 1.867679 1.377240 0.135879 1.434936 2.125157 -1.211380 -0.308815 -0.122477 1.079290 0.557901 -0.521056 -2.320258 2.308145 -1.669049 0.172251 3.185776 -1.673860 0.671182 -1.132101 2.374746 -1.928664 2.729953 0.514717 -1.374088 2.095231 1.688146 1.785995 0.795171 -1.350508 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::move_backward(suffix*, suffix*, suffix*) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_linear_insert >(suffix*, __gnu_cxx::__ops::_Val_comp_iter) = 0.176030 -0.704995 4.748125 2.829069 -1.144068 0.224584 0.332418 -2.510328 2.395648 -0.937271 -0.889760 0.664996 -1.776650 0.927527 -1.972954 1.421588 -4.253830 -1.817674 -0.953002 -2.533314 -1.202495 -0.961265 1.275050 0.144530 2.098794 1.657211 -1.643176 -0.069698 -2.009740 -1.830276 1.830097 -0.981445 1.081874 0.185503 0.388926 -5.223497 2.936196 1.610085 -1.401823 -1.897451 1.781920 -2.029834 -0.160579 -1.809989 -0.542550 0.342931 0.059216 2.128623 2.286540 0.502124 -0.082539 0.979139 -0.043126 4.504071 -2.259022 1.241379 0.903063 -0.612055 -1.036620 0.578945 0.218126 0.111111 0.739316 0.744833 -0.731292 -3.035972 0.046610 -1.836603 -1.433610 2.214296 0.158734 -0.658563 -1.662529 -0.651504 -2.805625 -0.665518 -1.443038 2.527352 3.051583 -2.243738 1.370017 -0.212962 0.607554 0.363269 0.766910 0.513279 2.538758 0.571868 -0.224359 -0.955354 -2.073206 -0.143261 0.721947 -0.503907 -0.709367 -4.073815 1.485760 -4.319171 -2.614427 0.178876 1.775271 -1.325327 -0.905656 -0.036087 1.027993 0.668384 -0.950921 -1.791906 0.406722 0.637964 -0.390031 -0.072946 0.416287 -0.909788 -0.419353 -0.934562 -3.374519 1.301792 -0.330457 0.047058 -0.557660 2.292996 -0.498634 -0.807940 0.151616 1.580804 -1.439044 2.656756 -1.036210 1.226493 -0.561033 1.227548 -0.813832 0.545271 1.528767 1.289763 -1.431984 -0.432431 -1.540137 0.542755 -2.690808 -0.836201 -1.396325 1.607093 1.082699 -2.133189 -1.915102 -0.699630 -1.384957 -3.423130 0.181691 -1.291650 -2.324735 0.581338 1.920542 2.448166 2.308587 2.392823 -1.508842 0.745377 -0.176723 -0.500446 2.610532 -0.221778 2.043697 -1.487930 -1.076506 0.907861 -0.541079 1.268393 -0.268445 0.199694 0.446314 -3.009169 -0.422099 1.159202 1.526553 0.218578 1.868504 2.368161 1.305485 -2.682334 0.598240 2.231708 -1.186433 -0.414740 0.874158 -1.971305 0.939964 1.179578 0.608052 2.498753 0.221764 -1.054804 0.277176 -0.016705 1.016620 -1.651559 -0.673363 -1.037807 -0.425223 -1.344100 0.700645 -1.452774 -0.920538 -1.602690 -2.600031 2.790290 -3.265497 -2.335508 3.407902 -0.768588 2.317002 -3.323991 1.721561 -1.910409 2.425425 -0.268442 0.467845 -0.011547 -0.762848 -2.890334 1.459766 0.642867 -0.613658 1.101734 2.600521 1.894315 1.030028 -0.747938 2.763004 -1.262243 2.776918 -1.025908 2.199338 -0.942087 -1.607592 0.435507 -0.436727 -1.470117 -0.719417 1.694619 2.427228 1.046966 2.233139 2.253920 1.560561 3.041172 -1.366340 1.445830 -0.879392 0.713315 -0.972458 -1.376326 1.420034 1.317966 -0.566611 0.993150 -3.525493 -4.211630 -3.684675 -3.027990 0.808744 -1.728523 0.394645 -0.615024 -0.239078 -2.708342 -1.619001 2.013520 -0.490313 2.749274 1.595470 0.237058 1.572254 2.713805 -1.923860 -0.196110 0.677845 1.376476 0.599826 -0.504236 -3.463707 3.151643 -1.905362 0.272065 3.890493 -2.040515 0.905708 -0.311734 2.107238 -2.112340 3.055267 0.620079 -1.934334 2.083349 2.123204 2.411901 1.819465 -1.501468 -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.168811 -0.259853 1.167136 0.863297 -0.485318 -0.031684 0.095203 -0.477929 0.384660 -0.305944 -0.243355 0.170476 -0.544796 0.291602 -0.160158 0.497218 -1.170244 -0.328157 -0.227612 -0.416463 -0.137085 -0.173405 0.529115 0.104658 0.603538 0.831178 -0.345988 -0.182424 -0.188494 -0.308605 0.513765 -0.260573 0.472112 0.733908 0.033840 -1.303266 0.628329 0.358287 -0.350535 -0.508763 0.525321 -0.374284 0.025374 -0.625634 -0.367826 0.172580 0.013149 0.481331 0.494151 0.216675 -0.202595 0.099258 0.360375 0.775918 -0.373850 0.211548 0.276379 -0.201481 -0.215301 -0.195146 0.127771 0.105243 0.200539 0.173712 -0.058266 -0.794580 -0.281488 -0.631570 -0.506456 0.466479 -0.126535 0.137083 -0.615508 -0.226589 -0.434883 -0.066495 -0.638769 0.838941 0.740100 -0.678991 0.314504 -0.067695 -0.126874 -0.078386 -0.026755 0.252559 0.195586 0.213099 0.128050 -0.029009 -0.160853 -0.335817 0.335900 -0.305059 -0.208488 -1.031553 0.380369 -0.746280 -0.541088 0.060857 0.477841 -0.352485 -0.004075 -0.080486 0.011340 0.398719 -0.287916 -0.349702 0.257044 -0.026607 0.262269 -0.067585 -0.176418 0.244998 -0.250772 -0.301012 -0.869085 0.331479 -0.173610 -0.104683 0.306828 0.379887 -0.031539 -0.128954 0.000238 0.281168 -0.376032 0.995017 -0.116589 0.331107 0.081595 0.339473 0.357129 0.164887 0.526997 0.537017 -0.353905 -0.229963 -0.407893 0.082214 -0.505456 -0.349075 0.080180 0.257682 0.464476 -0.440995 -0.499581 -0.186805 -0.618778 -1.041594 0.060031 -0.402029 -0.049646 0.716560 0.430388 0.366683 0.598374 0.736050 -0.509144 -0.013360 -0.055670 -0.209483 0.591782 0.458937 0.443339 -0.287701 -0.270439 0.334564 -0.200590 0.347379 0.009681 0.163516 0.147560 -0.639199 -0.029069 0.503456 0.415167 -0.070391 0.361617 0.492539 0.115753 -0.009532 0.054496 0.548575 -0.218875 -0.123695 0.294885 -0.559108 0.370231 0.102528 -0.005549 0.357558 0.004523 -0.138343 0.224916 -0.192074 0.132243 -0.380434 -0.060680 -0.240003 0.034439 -0.553844 0.215698 -0.142398 -0.322427 -0.230554 -0.287213 0.731446 -0.708614 -0.162479 0.569214 -0.089536 0.500496 -0.605417 0.677035 -0.431831 0.639224 -0.045468 -0.175062 0.151750 -0.570017 -0.586346 -0.052387 0.189360 0.120286 -0.109824 0.555504 0.467260 -0.175799 -0.097826 0.655521 -0.142418 0.864643 -0.152739 0.487803 -0.176750 -0.126658 0.216764 -0.067615 -0.403094 -0.304957 0.256695 0.957146 0.170393 0.703067 0.668137 0.111937 0.839776 -0.374971 0.346712 -0.148240 0.373402 -0.238803 -0.279249 0.302813 0.606869 -0.175838 0.320408 -0.753135 -1.161003 -0.892920 -0.484139 -0.073899 -0.339893 0.319556 -0.257963 -0.083009 -0.415266 -0.474753 0.342513 -0.229676 0.562723 0.346512 -0.008461 0.434642 0.588473 -0.424404 -0.104357 0.226193 0.522018 0.296831 0.169775 -0.843845 0.656692 -0.465963 -0.159297 1.031986 -0.517862 0.209305 -0.256046 0.853513 -0.464161 0.815487 0.100042 -0.517363 0.675254 0.540180 0.163318 0.559234 -0.355516 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a(suffix*, suffix*, suffix*) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__miter_base(suffix*) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_wrap(suffix* const&, suffix*) = -0.090136 -0.251670 0.665673 0.509658 0.030368 0.003709 0.406774 -0.220953 0.393630 0.224799 -0.085117 0.051449 -0.526169 0.141520 -0.091674 0.418338 -0.389413 -0.362875 -0.024780 -0.260554 -0.019499 -0.227089 0.454230 -0.126570 0.449235 0.018739 -0.174298 -0.425321 -0.459830 -0.245494 0.303470 -0.225265 0.310698 0.148860 -0.197899 -0.634567 0.340936 0.279286 -0.250621 -0.337564 0.396248 -0.287569 0.157239 -0.177316 0.109437 0.119384 0.123878 0.157670 0.411341 0.270522 0.267063 -0.039133 0.171094 0.542531 -0.479266 0.204592 0.074611 -0.078613 -0.182684 0.042665 0.061485 -0.014832 0.228665 0.179459 -0.107183 -0.424211 -0.220957 -0.330541 -0.491794 0.224334 -0.142919 0.123854 -0.429369 0.001636 -0.083077 -0.117905 -0.628931 0.307190 0.553311 -0.351609 0.393308 0.037424 0.013887 -0.147983 -0.043617 0.154007 -0.034152 0.055977 -0.052087 -0.169700 -0.212985 -0.014736 0.040242 0.084683 -0.032071 -0.364753 0.314037 0.103628 -0.423856 0.045942 0.198794 -0.097383 -0.190366 0.186357 -0.055215 0.368510 -0.276164 -0.421905 -0.053280 -0.064633 0.185791 -0.082095 -0.070826 -0.247038 -0.306672 -0.338632 -0.474719 0.010064 -0.169481 -0.302778 -0.189358 0.258555 -0.203777 0.043781 0.082727 0.258205 -0.199669 0.500601 0.038458 0.323210 0.286877 0.011251 -0.517531 -0.019947 0.389141 0.605772 -0.158639 0.137678 -0.352380 -0.029987 -0.284802 -0.104762 0.191893 0.266888 0.454954 -0.412470 -0.253271 -0.019003 0.042675 -0.509921 0.203803 -0.292160 0.251304 0.067860 0.292811 0.122047 0.393683 0.828355 -0.375705 0.130263 -0.028233 -0.211477 0.401908 0.255345 0.359787 -0.205479 -0.222717 0.073626 0.184323 0.031030 0.001289 0.143422 0.075074 -0.523005 0.040653 0.060764 0.099196 -0.275451 0.247786 0.222770 0.258208 -0.242693 0.074452 0.375127 -0.067884 -0.009206 0.143136 -0.496985 0.304870 0.051757 -0.136330 0.141528 0.055647 -0.252559 0.231491 -0.270406 0.090184 -0.272898 0.065583 -0.244234 -0.121551 -0.319621 0.072010 -0.074318 -0.322790 0.023237 0.109857 0.438939 0.099692 -0.104332 0.166440 -0.019879 0.001865 -0.498017 0.860477 -0.327613 0.124048 -0.237316 -0.065795 -0.015801 0.277561 -0.212674 -0.161406 0.135561 0.009106 0.256635 0.584540 0.280899 -0.068298 0.008200 0.471930 -0.014410 0.385079 -0.024315 0.342052 -0.098241 -0.153118 0.185040 -0.090391 -0.068971 -0.119351 0.007251 0.653107 0.287352 0.087608 0.406324 0.096045 0.579572 -0.201829 0.337433 -0.024723 0.499995 -0.085994 -0.081923 0.135821 0.181627 -0.144023 0.312688 -0.487224 -0.669958 0.110557 -0.427497 0.088505 -0.041319 0.144091 -0.118808 0.065925 -0.488332 -0.265606 -0.066094 -0.179108 0.277336 0.137182 0.049564 0.258432 0.356617 -0.267894 -0.103436 0.011339 0.244812 0.099444 -0.125328 -0.209650 0.255859 -0.439878 -0.039791 0.401399 -0.230304 -0.014202 -0.123677 0.477346 -0.328178 0.600661 0.101073 -0.072982 0.662805 0.346434 0.539656 0.107546 -0.171658 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a1(suffix*, suffix*, suffix*) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_base(suffix*) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a2(suffix*, suffix*, suffix*) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward::__copy_move_b(suffix*, suffix*, suffix*) = -0.564241 -2.009305 4.351602 2.944994 -0.148244 1.099376 0.796985 -1.235459 0.960141 1.017331 -0.782166 2.060076 -1.992748 0.023091 -0.535952 0.757546 -2.627262 -1.772958 -0.447262 -1.160257 -0.427793 -1.244784 -0.327199 2.178549 1.897583 0.688883 -1.534129 -0.007277 -3.217369 -3.316117 -0.493413 -0.420302 1.545425 -0.647668 1.464377 -3.776693 2.368978 2.808328 -0.272268 -2.862196 1.383163 -1.122066 0.063065 -0.274244 -0.683202 1.469164 1.389922 0.522704 1.318985 1.027944 -0.314087 -0.074728 1.286812 2.629294 -0.160507 1.788839 1.836338 -1.032845 0.328315 -0.429145 -0.053028 -1.239181 0.765159 0.095936 -0.736152 -1.770399 0.126693 -0.221410 -1.239519 1.269410 0.386497 -1.179858 -1.603817 -1.116814 -3.206761 -0.494412 0.775640 1.686876 3.067352 -1.277924 2.505826 0.475915 0.911063 0.525997 1.533197 0.307108 1.537672 0.643195 -0.853812 -0.032072 -2.011072 -0.926683 -0.151629 1.163238 -1.228480 -1.999426 1.195079 -4.080886 -2.710400 1.221773 0.340615 -1.681333 -1.457228 -0.437935 0.910590 1.384876 -0.699342 -2.053169 -0.434303 1.259804 -0.533817 -0.509993 0.596670 -0.661188 -0.485059 -0.171847 -2.471476 1.126736 1.109820 -0.634800 -0.856414 2.491124 -0.290959 1.369792 0.131969 1.401706 -0.766973 1.734376 0.705914 1.117606 -0.643316 -0.425087 -1.588606 -0.484626 0.541635 0.076531 -1.618102 -0.672190 -0.530655 0.893041 -0.508501 0.906930 -0.991000 2.411709 1.660290 -1.314176 -1.577934 -1.640608 -1.715625 -2.062014 0.152994 -0.551343 -1.955493 0.703938 1.611778 0.301343 0.766672 2.040276 -0.805815 0.160947 0.060962 -0.887024 1.236660 -1.008878 1.328811 -1.507880 -1.223214 1.447743 0.965029 1.634171 0.046757 0.055793 0.827014 -1.332790 -0.687303 1.035180 0.934050 0.535373 2.497703 2.301005 2.455496 -0.926195 -0.579555 0.826639 -1.112743 -0.304243 0.230191 -2.012901 0.925788 0.879792 0.214408 3.183076 -0.085720 -1.106049 1.891678 0.026022 0.639752 -1.969964 0.968031 -1.559024 0.435383 -1.006214 -0.947046 -1.504282 -0.934399 -2.218911 -1.668479 3.057490 -1.826364 -2.673124 1.682184 -0.452028 1.802399 -3.744764 1.865533 -1.350538 2.214344 0.238789 -0.011820 0.288362 -0.090530 -1.473743 0.580936 0.808784 -1.235361 1.412636 1.637161 1.058898 0.045929 -0.178024 1.710395 -0.612543 1.406954 -1.271436 1.177811 -0.876685 -0.350113 -0.355046 -0.327770 -0.190265 0.302033 0.211917 -0.034105 0.688843 0.524163 0.871813 2.182314 1.369842 -0.829876 0.830379 -0.812932 1.694046 -1.520795 -1.432268 -0.111535 1.668006 0.525257 1.089242 -3.549384 -2.561265 -2.676812 -3.298028 -0.330328 -0.034148 0.599610 0.431325 -0.495922 -2.746144 -1.851989 2.646421 0.234491 2.217776 1.712889 0.232259 2.049222 1.612904 -0.322648 -0.530634 -0.122181 0.748131 -0.161189 -0.506792 -1.795440 1.748736 -2.245861 1.070925 2.869894 -1.710717 1.396919 -0.503967 1.110486 -2.896488 3.104336 1.062704 -2.338294 1.031535 1.902082 2.082244 -1.135976 -1.510736 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__copy_move::__assign_one(suffix*, suffix*) = 0.015153 -0.274600 1.301765 0.801248 -0.191538 0.053603 0.259852 -0.647457 0.730941 -0.214046 -0.248863 0.132125 -0.639288 0.289628 -0.733548 0.450137 -1.036490 -0.615232 -0.258268 -0.672264 -0.221704 -0.309180 0.534304 -0.061507 0.642480 0.247007 -0.444249 -0.217927 -0.805959 -0.330406 0.607723 -0.311425 0.308362 -0.064927 -0.092568 -1.210879 0.752499 0.493481 -0.454690 -0.551561 0.587652 -0.624543 0.012338 -0.544817 -0.062723 0.033883 -0.000287 0.486458 0.655985 0.190215 0.129474 0.288389 -0.023525 1.317163 -0.803676 0.382615 0.238891 -0.028649 -0.268978 0.209311 0.084109 0.114831 0.206128 0.245657 -0.188276 -0.838835 -0.171197 -0.567603 -0.469423 0.583070 -0.164337 0.000118 -0.538051 -0.070855 -0.790188 -0.178831 -0.684694 0.666664 0.903978 -0.718506 0.431987 -0.049167 0.172808 0.036278 0.110681 0.218535 0.446418 0.168601 -0.028244 -0.304700 -0.595834 0.192254 0.145609 -0.196610 -0.206952 -1.162212 0.557024 -1.012297 -0.764272 0.033968 0.478071 -0.325610 -0.091244 0.144424 0.100211 0.296586 -0.408046 -0.574966 0.121726 0.141005 0.155759 -0.037976 0.172202 -0.331153 -0.148684 -0.462153 -0.939835 0.281526 -0.184442 -0.150649 -0.180231 0.630562 -0.244590 -0.195736 0.062826 0.428845 -0.432969 0.819235 -0.239937 0.412193 -0.107941 0.327569 -0.499662 0.130014 0.534917 0.618138 -0.436144 0.169069 -0.488112 0.076065 -0.690182 -0.309643 -0.260848 0.293191 0.224216 -0.722509 -0.499997 -0.153830 -0.276101 -0.987469 0.072962 -0.401234 -0.479032 0.158615 0.556522 0.744450 0.719966 1.020439 -0.433056 0.154798 -0.018155 -0.259428 0.739574 -0.065714 0.586505 -0.380717 -0.418958 0.226554 -0.091517 0.265885 -0.018075 0.148243 0.087934 -0.946905 0.051911 0.217685 0.432395 -0.157529 0.572917 0.612894 -0.072129 -0.767477 0.209001 0.667219 -0.310469 -0.047213 0.183177 -0.684561 0.345911 0.302350 0.075172 0.506690 0.092073 -0.297539 0.181611 -0.209502 0.329626 -0.476724 -0.183436 -0.342510 -0.273366 -0.505544 0.296234 -0.276492 -0.334588 -0.297974 -0.610364 0.768155 -0.753301 -0.434133 0.782688 0.051961 0.447154 -0.849628 0.654327 -0.558619 0.762363 0.007210 0.183726 0.000688 0.034437 -0.737864 0.163680 0.215472 -0.196398 0.392041 0.802108 0.544280 0.198489 -0.132314 0.856278 -0.353847 0.761511 -0.262312 0.598155 -0.230942 -0.630699 0.292598 -0.157009 -0.357029 -0.278933 0.464452 0.931227 0.358367 0.608857 0.717073 0.374462 0.990624 -0.388394 0.413408 -0.226055 0.355479 -0.247108 -0.291615 0.358387 0.338878 -0.202324 0.307872 -0.966323 -1.308527 -0.878323 -0.820088 0.377740 -0.652159 0.045723 -0.236852 -0.013050 -0.846940 -0.522022 0.284355 -0.289710 0.665608 0.428336 0.102614 0.442887 0.775308 -0.631781 0.003906 0.247818 0.490702 0.194323 -0.162980 -0.860872 0.800203 -0.615127 -0.036887 1.040441 -0.515781 0.200336 0.050669 0.512879 -0.553409 0.963256 0.206064 -0.450778 0.804224 0.644544 0.795346 0.594447 -0.399773 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(suffix&, suffix*) = 0.596856 -1.038874 4.934412 2.972271 -1.135651 0.135045 0.329922 -2.113913 1.503108 -0.584710 -1.187621 1.530856 -1.303719 0.787274 -2.625870 1.679823 -3.832071 -1.537116 -0.922188 -2.110913 -0.883174 -0.311697 1.110680 0.531550 2.503521 1.260930 -1.637189 -0.445172 -1.910739 -2.618056 0.650210 -0.736519 0.925430 -1.095273 0.341622 -4.246363 2.732820 2.072532 -1.309160 -2.175378 2.057228 -1.312855 -0.636871 -1.400119 -1.227662 0.216803 0.329761 1.631503 1.583337 1.203447 -0.225565 1.387581 1.303039 4.756193 -1.090229 1.443749 1.664081 -0.344261 -0.580902 0.272825 0.480158 -0.095650 0.177631 -0.024799 0.411111 -2.905395 -0.769851 -1.296926 -0.575354 1.575834 -0.532153 -0.973133 -1.475615 -0.778123 -3.150655 -0.346418 -1.832587 2.531214 2.693104 -2.613725 1.281185 -0.140205 0.135710 0.388907 0.205660 0.620572 1.207235 1.007351 0.451670 -0.816806 -0.715597 -0.003883 0.904089 -0.865605 -1.413122 -4.868302 2.221468 -4.802290 -2.584213 0.617259 1.886278 -1.924616 0.499503 -0.500489 0.226268 0.899468 -1.185994 -1.227537 0.556996 0.517759 0.659001 -0.319531 0.358642 -0.285697 0.097809 0.143428 -3.275588 1.778300 0.051370 0.069601 -0.074548 1.826743 0.496935 -0.287501 -0.176545 1.590157 -1.209149 2.604956 -0.536277 1.551645 -1.202662 2.097966 -0.307716 1.077037 1.696602 -0.347831 -1.868460 0.303830 -1.169568 0.776613 -1.569795 -0.127590 -1.655519 1.578091 0.643912 -1.696431 -2.115100 -1.146640 -2.204083 -2.900024 -0.077680 -1.053886 -2.844021 1.295030 1.658194 1.800320 1.799542 1.999173 -1.037839 -0.110662 0.243829 -0.690642 1.973783 -1.288373 1.607910 -1.375341 -1.232256 1.234335 -0.097226 1.470348 -0.208239 0.775364 0.784831 -2.483395 0.173527 1.315218 1.712410 -0.274453 1.951319 2.327574 0.709041 -1.286446 -0.213521 1.666622 -1.601777 -0.438167 0.529102 -2.162850 0.660103 0.950947 1.155621 2.514835 0.431811 -0.395368 1.104165 -0.510345 0.624104 -1.279241 -0.111981 -1.136228 -0.666700 -0.870684 0.558184 -0.977501 -0.389010 -1.671467 -2.798415 2.818975 -4.279504 -1.379824 2.633547 -0.172013 1.510095 -2.785273 2.336260 -1.646126 2.805659 0.813652 0.320219 0.350893 -1.015240 -2.822233 0.860364 0.734100 -0.623255 0.770556 2.213723 1.510008 0.326355 -0.742286 2.521363 -1.845082 2.999143 -0.973374 1.837347 -0.907381 -2.023261 -0.011617 -0.132694 -1.751541 -1.094776 1.665926 2.008777 -0.124034 2.062185 1.691719 1.412962 3.191105 -1.537697 1.727078 -1.018121 0.999098 -1.300533 -1.488998 1.246181 1.576728 -0.160110 1.009076 -3.443697 -3.603157 -5.186179 -2.392670 0.776460 -2.255483 0.704727 -1.355917 -0.781233 -2.316632 -2.364942 2.507140 -0.485171 1.006292 2.271274 0.359007 1.713166 1.975465 -1.054061 0.468331 0.019757 1.550489 1.099699 -0.613217 -2.582558 2.442091 -1.799042 -0.245291 3.812452 -1.566156 1.354318 0.505470 0.635054 -2.017052 2.678321 0.466579 -2.231168 1.706917 2.623278 1.360271 0.798016 -1.580110 -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.020958 -0.342894 1.523905 1.111491 -0.353020 0.057579 0.253800 -0.722039 0.694520 0.057913 -0.136756 0.205083 -0.659644 0.319567 -0.102403 0.749513 -1.231965 -0.486577 -0.289689 -0.772769 -0.304224 -0.262856 0.572320 -0.052805 0.755464 0.444568 -0.497556 -0.353606 -0.417140 -0.648040 0.612069 -0.335571 0.584913 0.317355 -0.022745 -2.038920 0.915374 0.514282 -0.495642 -0.663193 0.626317 -0.484175 0.117702 -0.480307 -0.319434 0.182470 0.020306 0.339019 0.728796 0.372090 0.147409 0.249334 0.376877 1.432072 -0.671160 0.388518 0.259996 -0.306209 -0.397715 0.045314 0.141992 0.107823 0.379730 0.193473 -0.053620 -1.046324 -0.253061 -0.634308 -0.764005 0.576275 -0.077173 -0.154762 -0.658324 -0.263652 -0.514948 -0.291502 -0.843799 0.864007 0.985481 -0.819994 0.516422 -0.029713 -0.059030 0.017414 0.138149 0.244898 0.479510 0.211697 0.026150 -0.099787 -0.176181 -0.292352 0.367756 -0.059012 -0.267837 -1.223162 0.532400 -0.575572 -0.787315 0.239515 0.621119 -0.324542 -0.528109 -0.248473 0.123658 0.473629 -0.456960 -0.621920 -0.043989 0.084223 0.204159 -0.161706 -0.184586 -0.225520 -0.323758 -0.363679 -1.072448 0.348925 -0.154299 -0.139373 -0.198168 0.622369 -0.195445 -0.210448 0.005402 0.525079 -0.553406 1.055364 -0.232036 0.602661 0.110315 0.327695 -0.376215 0.034854 0.616825 0.672592 -0.267694 -0.230999 -0.659700 0.125266 -0.730070 -0.060462 0.115903 0.590237 0.851883 -0.460058 -0.602433 -0.180993 -0.363248 -1.235029 0.193307 -0.543330 -0.092563 0.580500 0.599318 0.484394 0.768154 0.946369 -0.630971 0.251382 -0.175099 -0.271752 0.860437 0.292707 0.632983 -0.429526 -0.364431 0.269287 0.029184 0.385773 0.039408 0.136563 0.178403 -0.837277 -0.117024 0.350979 0.418237 -0.187719 0.462798 0.666272 0.938382 -0.493931 0.116106 0.687345 -0.344193 -0.057644 0.256439 -0.739700 0.291666 0.261469 -0.162746 0.662503 0.007560 -0.382880 0.209327 -0.242908 0.194555 -0.447561 0.025452 -0.384449 -0.050738 -0.526140 0.028991 -0.390407 -0.393225 -0.331675 -0.363432 0.972334 -0.764557 -0.464335 0.879057 -0.285063 0.392377 -1.033874 1.288453 -0.594717 0.565076 -0.409133 -0.172865 -0.019900 -0.048744 -0.785191 0.202550 0.260456 -0.084959 0.119111 1.089280 0.566232 0.012182 -0.227962 0.904183 -0.224959 0.976538 -0.252359 0.885477 -0.303708 -0.200268 0.116601 -0.132797 -0.368417 -0.361044 0.314207 0.903741 0.303441 0.534698 0.584282 0.387305 1.025482 -0.465745 0.669665 -0.137143 0.498405 -0.269115 -0.287668 0.447079 0.590109 -0.194620 0.418002 -1.036091 -1.192983 -0.854468 -0.698354 0.055745 0.009269 0.247549 -0.279664 -0.093638 -0.767614 -0.576707 0.489301 -0.292710 0.566591 0.440952 0.125824 0.577221 0.835743 -0.457942 -0.154887 0.019460 0.331910 0.292011 -0.114215 -0.847717 0.895087 -0.644083 -0.048392 1.094067 -0.484531 0.257857 -0.106883 0.881028 -0.613829 1.061488 0.125760 -0.399308 0.922244 0.823126 0.672721 0.324920 -0.424299 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(int (*)(suffix, suffix)) = -0.037334 -0.323251 1.189943 0.875879 -0.211307 0.042693 0.369714 -0.516463 0.623250 0.051090 -0.123574 0.098794 -0.667157 0.247279 -0.087882 0.571250 -0.947890 -0.482525 -0.167483 -0.568930 -0.178177 -0.294934 0.538411 -0.070092 0.628364 0.291961 -0.350701 -0.419376 -0.497099 -0.311088 0.602795 -0.306588 0.490708 0.361951 -0.091295 -1.551584 0.666484 0.388273 -0.403204 -0.553900 0.532444 -0.479367 0.166279 -0.439834 -0.103483 0.141232 0.073636 0.383554 0.628441 0.283263 0.133230 0.092458 0.201404 1.129993 -0.664239 0.311874 0.183851 -0.208998 -0.310802 0.064791 0.103052 0.053427 0.346018 0.232368 -0.147692 -0.794936 -0.224589 -0.597178 -0.696480 0.468575 -0.045287 0.033732 -0.611633 -0.127540 -0.365646 -0.232787 -0.829966 0.708413 0.857938 -0.681877 0.503874 0.002879 0.037370 -0.055900 0.092207 0.225108 0.315491 0.129969 -0.043339 -0.147670 -0.399042 -0.196001 0.210816 -0.101683 -0.133848 -0.928153 0.415098 -0.295399 -0.666441 0.136186 0.432213 -0.214399 -0.386274 -0.018663 0.083794 0.450375 -0.400278 -0.584056 -0.057814 0.034587 0.143662 -0.110861 -0.100374 -0.224249 -0.338728 -0.505131 -0.859349 0.194316 -0.167634 -0.225622 -0.180630 0.525699 -0.296980 -0.105470 0.059777 0.388330 -0.423844 0.877420 -0.114810 0.433925 0.272774 0.113840 -0.474001 0.025542 0.536222 0.853032 -0.208293 -0.070402 -0.532300 0.066600 -0.592180 -0.160229 0.209753 0.449530 0.622018 -0.513151 -0.462487 -0.131543 -0.143745 -0.956931 0.214930 -0.457593 0.093566 0.379783 0.503774 0.437906 0.644032 0.947029 -0.569429 0.258260 -0.134931 -0.225068 0.688585 0.375005 0.551324 -0.351015 -0.312096 0.163333 0.050629 0.238263 0.015788 0.116782 0.123213 -0.771307 -0.090263 0.186103 0.311615 -0.225869 0.408487 0.508128 0.540054 -0.516686 0.135573 0.590275 -0.223217 -0.044858 0.235074 -0.663721 0.361584 0.180739 -0.199184 0.427975 0.014927 -0.371914 0.200675 -0.243706 0.168692 -0.386469 -0.029591 -0.336154 -0.139853 -0.503469 0.117937 -0.287374 -0.423634 -0.199732 -0.170765 0.781063 -0.367143 -0.346553 0.608105 -0.198005 0.285826 -0.860265 1.135839 -0.509359 0.383317 -0.356595 -0.135212 -0.036501 0.109224 -0.562470 0.044487 0.214494 -0.066804 0.201191 0.913258 0.483548 0.015317 -0.095054 0.764356 -0.114403 0.714990 -0.174611 0.662047 -0.240936 -0.201603 0.195624 -0.136305 -0.195370 -0.230350 0.217407 0.925695 0.367098 0.423127 0.598282 0.296357 0.841136 -0.360164 0.478991 -0.107977 0.522844 -0.190134 -0.194469 0.297708 0.396915 -0.194303 0.380902 -0.847011 -1.091587 -0.413653 -0.619795 0.091260 -0.077040 0.179545 -0.178664 0.009315 -0.745165 -0.426708 0.108298 -0.275176 0.479248 0.309624 0.084159 0.471479 0.693264 -0.461520 -0.166140 0.134148 0.346923 0.176498 -0.103393 -0.674383 0.668025 -0.613791 -0.006759 0.869284 -0.401200 0.126307 -0.167736 0.854271 -0.517221 0.938145 0.146216 -0.320493 0.824970 0.656823 0.666959 0.341752 -0.335827 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::~_Vector_base() = 0.794306 -0.989546 4.341266 2.663906 -1.592598 0.459904 0.304228 -1.769677 1.183630 -0.017584 -0.943277 0.478901 -1.505701 0.455569 -0.534292 1.124187 -3.799352 -0.669841 -0.883552 -1.667947 -0.602477 -0.832541 0.802629 0.773259 1.907041 2.251610 -0.834946 0.045434 -0.414041 -2.400238 1.178014 -0.622545 1.088070 1.103500 1.109971 -4.252711 2.611722 1.441642 -0.776986 -1.861283 1.254179 -0.283421 -0.484681 -0.706544 -0.993996 0.867077 0.402162 2.244640 1.478393 0.975306 -0.778857 -0.298299 1.552702 3.071714 -0.538458 0.946242 1.120804 -1.004551 0.115017 0.110932 0.007686 -0.219090 0.000662 0.465635 0.555750 -2.023397 0.230996 -1.261227 -1.092714 1.739075 -0.122875 -0.824282 -1.505915 -1.258625 -1.888058 0.088181 -2.601781 2.753961 2.650449 -1.686798 1.372394 0.002834 -0.126836 0.166345 0.190214 0.469939 1.149051 0.692472 -0.010381 0.116550 -0.383333 -1.411226 1.033963 -0.910463 -1.006024 -3.714148 1.369778 -3.137719 -1.584136 0.818091 1.326370 -1.602558 0.033328 -0.850898 0.266822 0.623272 -0.817925 -1.194978 0.275099 0.568184 -0.050464 0.237471 0.126625 0.700029 -0.469656 0.032041 -2.219981 1.229296 -0.087295 -0.093422 0.448610 1.614533 0.573014 0.016459 0.199481 1.280230 -0.946065 2.289455 0.047475 1.431639 -0.407705 1.440410 0.682656 0.740297 1.447454 0.001173 -0.381312 -0.751508 -0.758002 0.821498 -1.405974 0.137686 -0.681877 1.207288 1.310398 -1.234559 -1.543343 -0.679051 -2.022136 -2.682312 0.034496 -0.941787 -1.891542 1.644011 1.349388 1.254390 1.182586 1.021155 -1.911108 -0.224437 -0.563763 -0.505715 1.001211 0.464355 1.092276 -1.034690 -0.624284 0.496500 -0.245103 1.375403 -0.004927 -0.320369 0.474053 -1.606789 0.173015 1.567874 1.275481 -0.439008 1.082720 2.271841 1.796476 -0.255059 -0.455692 1.672512 -1.176004 -0.751163 1.024836 -1.811128 0.933647 0.611133 0.476645 1.789307 -0.060519 0.055656 1.125890 -0.702767 0.142173 -1.092815 -0.221814 -0.913808 0.100658 -1.168475 0.527608 -1.090016 -0.644036 -1.328031 -1.304310 2.243366 -3.033244 -0.841466 2.472052 -0.699099 1.327228 -1.736350 2.422782 -1.082143 1.531640 0.351598 -0.341778 0.167749 -1.199048 -1.737949 0.351962 0.222088 -0.007785 0.366557 1.886963 1.202111 -0.324284 -0.462921 2.230279 -1.267012 1.981103 -1.043343 1.235889 -0.835396 -0.313108 -0.286944 -0.184521 -1.259934 -0.966895 0.881993 1.434944 0.078301 1.485357 1.395568 0.730885 1.810565 -0.594428 1.277609 -0.568519 0.829876 -1.222783 -1.130655 1.083426 1.859953 -0.403066 1.021456 -2.973977 -2.794119 -3.589025 -1.413334 -0.875037 -0.963625 1.038524 -0.470126 -0.484073 -1.400663 -1.805898 2.448415 -0.134031 0.378254 1.502405 -0.002707 1.369582 1.919376 -0.465099 -0.027238 0.235013 1.421585 0.561325 0.101544 -2.215134 2.107833 -1.784102 -0.124253 3.244382 -1.500592 1.141543 -0.763494 1.841037 -2.506226 2.126087 0.607424 -1.610377 1.219771 2.158633 0.871395 1.108425 -1.087929 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*) = -0.208266 -0.294392 0.858988 0.585873 -0.070385 0.037466 0.352605 -0.335522 0.502913 0.032287 -0.125037 0.087222 -0.619543 0.180527 -0.250851 0.381850 -0.658713 -0.481461 -0.074470 -0.370117 -0.086072 -0.310544 0.484983 -0.033168 0.470793 0.131533 -0.293119 -0.326885 -0.586430 -0.275824 0.451141 -0.292655 0.387949 0.133289 -0.194013 -1.108000 0.473891 0.336433 -0.316888 -0.426794 0.470413 -0.453561 0.164638 -0.346664 -0.104556 0.077476 0.111452 0.175677 0.511403 0.176118 0.192839 0.022528 0.072983 0.851096 -0.610264 0.262945 0.124533 -0.116708 -0.275613 0.034131 0.065789 0.000728 0.313073 0.271330 -0.233004 -0.543983 -0.149040 -0.448591 -0.615332 0.364444 -0.166848 0.147884 -0.446645 0.009855 -0.378164 -0.181558 -0.263504 0.427914 0.735259 -0.450368 0.476840 -0.025076 0.074478 -0.075650 0.043493 0.201377 0.179261 0.077021 -0.102362 -0.220346 -0.326356 0.076082 0.052371 0.137594 -0.019928 -0.551945 0.357867 -0.302130 -0.554566 0.040003 0.242468 -0.137926 -0.320830 0.104463 0.068355 0.398767 -0.350802 -0.545083 -0.061023 0.014592 0.117286 -0.072350 -0.001743 -0.253752 -0.301235 -0.464613 -0.638551 0.040549 -0.171893 -0.313237 -0.195376 0.425950 -0.302802 0.014951 0.102484 0.342585 -0.292536 0.650468 -0.064890 0.307001 0.161165 0.025436 -0.446947 -0.171087 0.388966 0.761091 -0.269464 -0.008568 -0.408315 -0.009377 -0.437959 -0.260308 0.098255 0.291837 0.476326 -0.488358 -0.323136 -0.068382 -0.064476 -0.825151 0.127114 -0.377738 0.066030 0.260689 0.408841 0.267291 0.518412 1.001501 -0.391418 0.239610 -0.041296 -0.303771 0.555766 0.160488 0.469374 -0.279866 -0.316923 0.144277 0.072742 0.186666 -0.015242 0.097283 0.045977 -0.664649 -0.076518 0.136106 0.251129 -0.134165 0.326473 0.332561 0.286409 -0.487333 0.162585 0.477164 -0.102607 -0.007716 0.146531 -0.573118 0.317338 0.151701 -0.196815 0.276439 0.052239 -0.388518 0.198161 -0.221345 0.196037 -0.419797 0.019673 -0.289404 -0.062257 -0.440403 0.000106 -0.162925 -0.374655 -0.136994 -0.132834 0.587559 -0.248679 -0.326508 0.397979 0.047825 0.296370 -0.772439 0.771206 -0.432355 0.481126 -0.246918 -0.018620 -0.007882 0.163562 -0.335632 -0.013479 0.171413 -0.062674 0.301344 0.686781 0.402166 0.073079 -0.029892 0.620474 -0.007116 0.492243 -0.095797 0.425999 -0.131129 -0.308842 0.259713 -0.143828 -0.114884 -0.101147 0.183116 0.723394 0.431855 0.243502 0.585997 0.281459 0.694755 -0.258184 0.299091 -0.104075 0.537339 -0.114356 -0.154285 0.153751 0.362331 -0.163834 0.330322 -0.672076 -0.996547 -0.260591 -0.668887 0.135060 -0.151914 0.112440 -0.109326 0.110867 -0.658208 -0.276609 0.077062 -0.236084 0.701077 0.218600 0.087915 0.358996 0.538734 -0.433730 -0.182516 0.154289 0.342349 0.070842 -0.055839 -0.521034 0.426626 -0.556213 0.039265 0.604535 -0.359732 0.017625 -0.069414 0.533572 -0.424605 0.807087 0.184315 -0.224826 0.769775 0.357320 0.591919 0.312338 -0.261414 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy_aux::__destroy(int*, int*) = 0.015544 -0.262075 0.502483 0.447961 0.054137 -0.005347 0.446680 -0.113993 0.340689 0.246608 -0.095768 0.005195 -0.521953 0.133180 0.006402 0.387714 -0.290921 -0.321125 0.043386 -0.110012 0.038403 -0.245248 0.442741 -0.124998 0.392211 0.067082 -0.082701 -0.460482 -0.380843 -0.075742 0.302221 -0.204776 0.275918 0.340230 -0.181559 -0.364270 0.216854 0.189907 -0.187459 -0.313891 0.310430 -0.233138 0.167946 -0.180054 0.233073 0.139171 0.153164 0.293390 0.336765 0.265401 0.198120 -0.152213 0.177387 0.334976 -0.401371 0.160894 0.068093 -0.024630 -0.090062 0.009274 0.074890 -0.022839 0.196929 0.216515 -0.098673 -0.290171 -0.260870 -0.332378 -0.449630 0.183880 -0.100879 0.249085 -0.484583 0.028004 0.081482 -0.046107 -0.884715 0.312813 0.507280 -0.325680 0.371378 0.093827 0.056365 -0.215842 -0.082069 0.131988 -0.133493 0.046072 -0.085139 -0.131969 -0.290083 -0.113428 0.009369 -0.079126 0.008405 -0.291630 0.223145 0.288645 -0.347629 0.024819 0.112096 -0.033752 -0.035835 0.281533 -0.068194 0.365551 -0.238153 -0.378909 -0.027185 -0.128294 0.181204 -0.076100 -0.065896 -0.132614 -0.318669 -0.362588 -0.387287 -0.081932 -0.159643 -0.360549 -0.064886 0.173634 -0.189941 0.112429 0.082575 0.120900 -0.103430 0.462715 0.150718 0.258020 0.436638 -0.058138 -0.454968 0.120841 0.384722 0.645856 -0.087036 0.224699 -0.256000 -0.031325 -0.189471 -0.133937 0.284049 0.181685 0.354061 -0.401729 -0.224486 -0.028225 0.104692 -0.342191 0.256992 -0.268277 0.411202 0.013670 0.245363 0.078375 0.320003 0.735687 -0.421472 0.093040 -0.029953 -0.099102 0.273381 0.435453 0.287204 -0.149905 -0.186176 0.048624 0.210183 -0.072318 0.012237 0.102561 0.070928 -0.443998 0.069252 0.037137 0.050447 -0.334294 0.215827 0.118917 0.052697 -0.121413 0.057158 0.316732 0.015170 -0.014171 0.147555 -0.482768 0.400771 -0.046971 -0.093684 -0.016309 0.033066 -0.189340 0.253819 -0.281180 0.037451 -0.203341 0.028286 -0.219564 -0.185230 -0.329701 0.221633 0.006005 -0.331556 0.129584 0.301725 0.355932 0.314224 0.051590 0.019050 -0.061852 -0.077279 -0.317762 0.840832 -0.261154 -0.052629 -0.194826 -0.121464 -0.000379 0.257268 -0.078029 -0.314563 0.133838 0.080885 0.202406 0.462129 0.213747 -0.146910 0.119497 0.372958 0.052141 0.253513 0.026308 0.230215 -0.062409 -0.047963 0.195836 -0.090270 0.037029 -0.089069 -0.088773 0.735353 0.272439 0.062225 0.416770 -0.027905 0.458150 -0.173837 0.255163 0.003981 0.499730 -0.085026 -0.012734 0.042165 0.063276 -0.177825 0.315480 -0.365979 -0.583538 0.308321 -0.266583 -0.005490 -0.068815 0.176316 -0.096252 0.089039 -0.403154 -0.219581 -0.252487 -0.176520 0.050641 0.079465 0.011777 0.217484 0.276070 -0.225218 -0.104432 0.046581 0.238903 0.051960 -0.079332 -0.099570 0.129416 -0.402632 -0.040747 0.311560 -0.177717 -0.076253 -0.231627 0.574178 -0.259768 0.519930 0.114933 -0.046413 0.560903 0.307793 0.481018 0.115043 -0.141808 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -0.180714 -0.915238 2.971694 2.028916 -0.070742 0.215932 1.075113 -1.282653 1.358659 0.639056 -0.456387 0.744852 -1.614404 0.462304 -0.852621 1.296595 -1.975901 -1.392601 -0.372336 -1.274886 -0.475924 -0.825534 1.111910 0.175104 1.715927 0.085237 -1.053735 -0.905225 -1.889673 -1.768964 0.618391 -0.595817 1.016030 -0.373083 -0.136012 -3.012555 1.696159 1.410438 -0.784416 -1.499010 1.439769 -1.131198 0.052535 -0.541831 -0.100634 0.414307 0.437906 0.786193 1.487620 0.873585 0.633774 0.345208 0.577369 2.743852 -1.343432 1.056638 0.686188 -0.392996 -0.591672 0.316540 0.183833 -0.239883 0.730840 0.488204 -0.341256 -1.685678 -0.284390 -0.859258 -1.351935 1.187943 -0.176518 -0.428081 -1.313160 -0.274506 -1.333378 -0.396363 -0.845536 1.382320 2.144176 -1.358521 1.422564 0.034289 0.218235 -0.212902 0.284136 0.263172 0.859012 0.320737 -0.214215 -0.904405 -1.166032 -0.204334 0.134365 0.406165 -0.462500 -1.850443 1.194319 -1.534337 -1.957042 0.273309 0.843104 -0.908784 -0.937775 0.263079 0.374268 0.963119 -0.674438 -1.531837 -0.314676 0.333800 0.050656 -0.352730 -0.003772 -0.928610 -0.680041 -0.556035 -2.068561 0.493607 -0.149978 -0.636442 -0.939874 1.340867 -0.500923 0.199953 0.213292 1.157811 -0.663142 1.515293 -0.146488 1.145881 0.482995 0.365578 -1.530958 0.055423 1.107960 1.055398 -0.915314 0.268038 -1.072156 0.300957 -1.230327 0.044941 -0.369579 1.512820 1.296064 -1.417314 -1.289014 -0.427920 -0.337540 -1.876254 0.454676 -0.946126 -0.596961 0.194876 1.218298 0.710680 1.217840 2.318425 -1.124487 0.584754 0.168727 -0.608043 1.493222 -0.243878 1.303368 -1.048153 -0.983017 0.580903 0.534885 0.569224 -0.271859 0.500988 0.346675 -1.864391 -0.401133 0.410941 0.592120 -0.291504 1.245896 1.317182 1.677304 -1.480431 0.231510 1.280247 -0.651269 -0.154413 0.352636 -1.793234 0.803373 0.495538 0.184604 1.640353 0.203743 -0.993161 0.807225 -0.430583 0.467442 -1.188149 0.252139 -1.004276 -0.278503 -0.845104 -0.211199 -0.585372 -0.845829 -0.688340 -0.705161 1.958854 -0.949083 -1.473461 1.544853 -0.513383 0.710033 -2.607031 2.536449 -1.205205 0.901773 -0.499892 0.008309 -0.040322 0.513409 -1.388207 0.373776 0.512534 -0.426245 1.166715 2.163143 0.986581 0.319547 -0.293226 1.689245 -0.435786 1.568450 -0.527747 1.456252 -0.500345 -0.914923 0.080180 -0.320312 -0.460702 -0.329843 0.426992 1.574213 0.849804 0.538517 1.302417 1.074159 2.070274 -0.866680 1.353867 -0.411393 1.297721 -0.625246 -0.766609 0.644158 0.659578 -0.329385 1.114405 -2.291962 -2.467646 -1.183404 -2.267412 0.420239 -0.600827 0.623702 -0.469285 -0.148976 -2.099180 -1.230570 0.769906 -0.280621 1.373079 1.075091 0.274160 1.140612 1.495459 -0.843871 -0.037837 -0.130918 0.787088 0.242036 -0.816130 -1.198554 1.333543 -1.530017 0.337808 1.971652 -0.975458 0.540923 -0.343150 1.078036 -1.560240 2.178468 0.464592 -0.870222 1.758190 1.351278 1.787315 0.093074 -0.958407 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 1.628194 -2.538667 16.381497 10.345876 -4.147546 1.262668 1.618084 -8.675468 6.446633 -1.351100 -2.091589 2.794689 -5.289655 2.861822 -6.084950 5.519068 -13.147045 -4.307176 -4.038731 -9.348647 -3.469288 -1.760465 3.573839 0.757433 7.780957 3.503976 -4.897853 -1.935656 -5.873194 -6.831030 4.832041 -2.230483 3.625544 -2.010179 1.172604 -18.283167 9.946237 6.450939 -4.876773 -6.479666 6.638795 -5.613018 -1.027755 -4.325642 -3.046110 0.599528 -0.465338 5.975585 6.920096 2.881389 -0.030787 4.839585 3.081147 17.346871 -6.422061 4.771799 3.522670 -1.935977 -2.927513 2.592772 0.315213 0.909059 1.597089 -0.033945 0.222347 -10.731909 -1.215343 -4.852476 -3.635473 5.920124 -0.233862 -4.253980 -5.278190 -2.707874 -9.454412 -2.391225 -8.990350 8.917540 8.755053 -8.612308 4.158259 -0.952809 -0.395297 1.812287 2.535692 1.912468 6.490675 2.137569 1.049779 -2.151469 -4.141219 -0.606278 3.796160 -3.207422 -4.370099 -17.152003 6.101505 -12.597886 -8.630673 2.057314 6.557107 -6.039720 -1.595339 -2.872622 1.233403 2.298945 -4.390322 -5.465159 0.785716 3.184807 1.009817 -0.998380 0.888739 -3.095588 -0.219728 -2.385805 -10.665912 6.071859 -0.458404 1.185665 -2.633301 7.542712 0.154988 -2.752049 0.112739 5.912170 -5.456759 8.769109 -3.778555 5.370153 -2.516886 5.865325 -2.925771 2.692230 5.572925 1.915603 -3.924374 -0.390383 -5.499247 2.512453 -7.358227 0.452507 -3.219308 6.162458 3.432446 -5.355722 -5.512383 -2.325396 -4.689065 -10.249630 0.527826 -3.431837 -8.273695 3.038426 5.910364 7.173671 6.884068 5.448145 -4.285535 0.876627 -0.662498 -1.947451 8.337710 -1.817891 6.016233 -4.820713 -3.848835 2.490739 -1.087310 4.853647 -1.088905 2.587370 1.809938 -8.340065 0.293092 2.428305 5.081518 -1.412023 6.758224 8.935293 6.502025 -6.952420 0.934210 6.408949 -6.283198 -0.671436 1.910333 -6.607442 1.614942 4.552855 0.937586 9.181763 0.484029 -2.290715 2.159466 -1.273958 2.582307 -4.330259 -1.223335 -3.922198 -2.973820 -3.664757 1.362066 -4.310795 -2.781585 -5.935639 -8.693309 9.415055 -12.873120 -5.247107 10.761838 -2.607952 4.304776 -9.964720 10.410166 -5.812976 6.338653 -0.336396 0.549882 0.046701 -0.278712 -10.526929 4.523598 2.083801 -3.145450 3.210981 9.793465 5.624698 2.120621 -3.282450 9.326817 -5.709226 9.497245 -4.636746 8.482506 -3.682796 -5.010471 0.134100 -0.967834 -5.290961 -3.779972 5.877315 7.307213 0.961710 6.871561 4.523634 5.694375 10.192097 -4.009805 6.665195 -3.356815 1.635720 -3.527070 -4.326084 5.274246 4.365005 -0.360333 3.531904 -12.057812 -11.537978 -13.898434 -7.111350 3.658216 -4.511739 1.513742 -2.799632 -2.053285 -9.499440 -7.259156 6.852459 -2.337491 2.730416 6.434146 1.514805 5.362747 8.365037 -3.884895 1.321752 0.652987 4.267744 3.310720 -2.695383 -9.157985 10.294109 -6.057485 0.165039 12.404653 -4.873860 4.581598 0.378759 5.111475 -7.128883 9.148876 1.028444 -5.746432 6.586470 10.250599 6.298092 3.528040 -4.499572 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -0.679955 -2.093142 3.280141 2.047509 -0.649624 0.523682 1.320760 0.146651 0.507759 -0.634998 -1.312985 1.519465 -2.320236 -0.353009 -0.270088 -0.587091 -2.788748 -2.162578 0.021526 -0.025807 -0.120317 -1.293152 -0.499569 2.724288 1.502642 1.223016 -1.012154 -0.352984 -3.213592 0.036254 0.005866 -0.226173 1.453202 1.127507 1.463920 -3.461434 0.790416 1.944504 0.154147 -2.721388 1.129752 -1.735256 0.217367 -1.443003 -0.875476 0.817718 1.844054 1.988270 0.530911 -0.162734 -1.720114 -1.044340 -0.244028 2.578285 0.357798 1.202782 2.138939 -0.768088 0.274183 -0.888413 0.154972 -1.783100 0.736570 0.437889 -1.579422 -0.680767 0.383146 -1.359142 -0.964772 1.168967 1.188590 0.067480 -1.482484 -0.924441 -2.916773 -0.201078 1.825800 2.416268 2.730803 -1.872431 2.402772 0.588625 1.564256 0.124138 0.958650 0.255658 1.445905 0.251136 -0.610208 -0.691253 -4.111551 -1.284453 -0.819738 -0.014331 -0.497402 -1.173713 0.870394 -3.668219 -2.451313 0.225045 -0.303275 -1.513251 -0.368402 0.978191 0.927222 1.641137 0.031770 -1.496609 -0.774617 0.956841 -1.158772 -0.056863 0.620709 1.021451 -0.587223 -1.735648 -2.372377 0.917508 1.057742 -0.832539 0.375852 2.067685 -1.664034 1.938585 0.485787 0.448042 0.014055 2.088495 1.480364 -0.650988 0.810598 -1.775249 -0.542949 -0.370582 0.193397 2.699032 -1.618896 -0.260828 0.576565 0.697303 -0.192286 -0.846626 -0.340512 1.979839 -0.205644 -2.121336 -1.620590 -2.184694 -1.607897 -1.414270 -0.245371 -0.660593 -0.692569 1.687531 1.245238 1.610588 0.016633 3.009190 -1.054361 1.005076 0.632301 -0.887045 0.179344 0.169821 1.005406 -1.377865 -1.028103 1.024887 0.156376 1.633908 -0.379368 0.053548 0.373141 -1.713042 -1.804375 0.868637 1.053400 1.234157 2.341152 1.979368 -0.181173 -2.022758 -0.215992 0.411061 -0.576824 -0.817831 0.649342 -1.863280 1.484225 0.248545 -0.020554 2.126186 0.007685 -1.116261 1.537818 0.129815 0.334279 -1.787571 0.337632 -1.140126 0.246605 -1.446487 -0.177386 -1.206251 -1.059726 -1.924877 -1.426744 2.744824 -1.218157 -3.091372 0.735522 0.001137 2.788860 -3.746234 1.154935 -0.986646 2.573137 0.358704 -0.250158 0.285065 -1.091438 -0.598452 0.178950 0.533812 -0.750838 0.728737 0.955014 0.888643 0.245618 0.639488 1.301910 0.122597 1.036975 -0.847781 -0.025848 -0.472300 -0.865751 0.160449 -0.268546 0.539129 1.491237 0.311513 1.585687 1.438775 1.476334 2.181437 1.932683 0.734370 -0.689345 -0.633905 -0.768267 2.335935 -1.234999 -1.222018 -0.877467 1.417010 0.209260 0.692658 -2.947527 -3.695888 -1.915764 -3.662973 -0.403356 -1.764201 0.628930 0.622827 -0.171602 -2.695556 -1.259951 -0.023435 0.282836 3.556600 1.137505 -0.142930 2.112703 1.213450 -1.151786 -0.798534 1.949799 1.667956 -0.660765 0.042181 -2.455572 0.868915 -2.396769 1.384025 3.147134 -1.629832 1.249392 -1.165068 2.073322 -2.578400 3.210724 1.298744 -3.612510 0.292960 1.253390 1.065740 0.054265 -1.665109 -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.148217 -0.757471 1.703462 1.197128 -0.136274 0.534433 0.252258 -0.477967 0.173460 -0.010851 -0.104413 0.631222 -0.983484 0.291437 -0.493544 0.124225 -0.971224 -0.550961 -0.504778 -0.550501 0.022485 -0.365044 0.083704 0.807078 0.731112 0.320907 -0.606799 -0.147291 -1.530040 -0.655397 0.384394 -0.099200 0.722228 -0.196265 0.261257 -1.686102 0.864364 1.145516 -0.205100 -0.996905 0.771873 -0.584139 -0.021013 -0.380818 -0.352327 0.334789 0.198793 -0.066577 0.560206 0.178260 -0.379560 0.211630 0.358519 1.211111 -0.538627 0.611952 0.640260 -0.268288 0.148377 -0.173502 -0.286532 -0.070201 0.175199 -0.074656 -0.286035 -0.886555 0.016139 -0.295253 -0.526549 0.413031 -0.083063 -0.126158 -0.542538 -0.303621 -1.362165 -0.076316 0.311980 0.736548 1.045922 -0.549004 0.820095 -0.233445 -0.053665 0.344355 0.552673 0.388900 0.061739 0.229450 -0.068563 -0.029576 -0.786364 0.260682 0.014078 0.450874 -0.598060 -1.024955 0.626382 -1.150027 -0.776503 0.376446 0.106558 -0.783786 -0.357686 -0.386734 -0.192620 0.605284 -0.530831 -0.766774 -0.055711 0.688549 0.403417 -0.188490 0.330992 -0.293801 -0.244655 -0.788921 -0.790364 0.600884 0.193593 -0.210550 -0.370024 0.999906 -0.274274 0.267174 0.080208 0.696433 -0.683682 0.802456 0.060316 0.416748 -0.266838 -0.112597 -0.428697 -0.583029 0.414045 0.939056 -0.727667 -0.225438 -0.523654 0.185626 -0.140286 -0.002507 0.012041 0.539873 0.458936 -0.621321 -0.295455 -0.397103 -0.354096 -1.002583 -0.243715 -0.202967 -0.675453 0.615388 0.588257 0.220929 0.445798 1.233577 -0.338153 -0.001970 0.004147 -0.676612 0.618969 -0.202355 0.376222 -0.530415 -0.684760 0.411500 -0.073384 0.593329 0.019646 0.296134 0.203596 -0.547594 0.126781 0.295588 0.436043 -0.217298 1.021381 1.010237 0.375632 -0.398102 -0.105683 0.416519 -0.853462 0.019171 0.048788 -0.710840 0.215729 0.561523 -0.559024 1.114973 -0.073832 -0.597853 0.848626 -0.229010 0.340406 -0.672084 0.423257 -0.602747 -0.110626 -0.737617 -0.481973 -0.243493 -0.510873 -0.854079 -0.658199 1.100786 -0.989875 -0.670821 0.434587 0.505467 0.369670 -1.426908 0.784600 -0.536369 0.991087 0.390582 0.097320 0.173059 0.335549 -0.801903 0.091033 0.298888 -0.661977 0.543690 0.872248 0.492104 -0.209354 -0.181110 0.849270 -0.237685 0.509411 -0.677983 0.457938 -0.329798 -0.356048 0.129911 -0.161313 -0.231080 -0.273448 0.280166 0.221379 0.275813 0.577837 0.296692 0.902036 0.735599 -0.019548 0.234646 -0.503986 0.534161 -0.425672 -0.436019 0.065289 0.969665 0.400450 0.513007 -1.359767 -1.372820 -0.896721 -1.191344 0.365762 -0.080435 0.001407 0.196053 -0.171394 -1.316286 -0.803517 0.439754 -0.242274 1.153296 0.679433 0.146215 0.593108 0.665968 -0.414910 -0.073047 0.352273 0.749401 0.159267 0.075407 -0.801513 0.812959 -0.828544 0.039573 1.252249 -0.591216 0.673071 -0.070580 0.492369 -1.077312 1.448865 0.369824 -0.829343 0.735631 0.863007 0.697461 0.168228 -0.383521 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_allocate(unsigned long) = 0.023263 -0.708104 2.573436 1.681628 -0.155764 0.082243 0.687981 -0.794691 0.925653 0.385396 -0.549087 0.770047 -1.138406 0.333052 -0.493081 0.987872 -1.744910 -1.150899 -0.268233 -0.867095 -0.465647 -0.508019 0.652971 0.265596 1.479265 0.534313 -0.975074 -0.569822 -1.386255 -1.492378 0.238611 -0.404408 0.779056 0.006860 0.290595 -2.056214 1.301505 1.063905 -0.497457 -1.242967 1.091808 -0.711795 -0.009952 -0.538156 0.095699 0.614478 0.647578 0.867948 1.109255 0.716373 0.165049 0.059765 0.362145 1.819636 -0.728328 0.748272 0.732680 -0.452219 -0.285991 0.076371 0.159912 -0.476795 0.367769 0.307968 -0.312390 -1.306167 -0.117523 -0.717151 -0.771433 0.998808 0.190886 -0.405133 -1.111213 -0.497704 -1.046734 -0.190134 -0.678149 1.233315 1.694639 -1.055278 1.056260 0.132265 0.430774 -0.151733 0.156028 0.120416 0.717474 0.289452 -0.162715 -0.608792 -1.083492 -0.561178 0.009099 0.375867 -0.382151 -1.208529 0.896042 -1.483216 -1.519907 0.197496 0.700803 -0.739369 -0.623717 0.450773 0.411494 0.782809 -0.201459 -0.979782 -0.125726 0.123120 -0.174176 -0.148256 0.003195 -0.541243 -0.556958 -0.181129 -1.737353 0.586929 -0.016654 -0.357010 -0.501124 0.967642 -0.391061 0.268109 0.139285 0.876590 -0.428916 1.233954 0.224752 0.778831 0.345478 0.207728 -1.063728 0.252267 0.867594 0.751412 -0.816392 0.111136 -0.753054 0.264310 -0.957873 -0.049222 -0.467704 1.381188 1.033125 -1.239466 -1.294969 -0.561638 -0.576784 -1.239933 0.316002 -0.657806 -0.558711 0.102989 0.833216 0.660584 0.833735 1.798956 -0.945296 0.392279 0.150715 -0.363165 1.010935 -0.101251 0.976770 -0.857172 -0.567635 0.522201 0.358535 0.463586 -0.149220 0.249584 0.434540 -1.493935 -0.387262 0.640560 0.481688 -0.019198 0.972818 1.105763 1.081560 -0.967993 -0.076502 0.946832 -0.476518 -0.398334 0.524797 -1.309776 0.753515 0.294391 0.442554 1.345480 0.201116 -0.642118 0.758703 -0.215372 0.307732 -0.816758 0.165075 -0.694902 -0.017819 -0.550514 0.026373 -0.632155 -0.457784 -0.579700 -0.667036 1.615509 -0.664713 -1.406049 1.128635 -0.509537 0.812239 -1.966080 1.585762 -0.845173 0.703546 -0.260969 0.070863 0.011185 -0.068361 -1.045352 0.337443 0.321274 -0.167265 0.656999 1.453230 0.728209 0.134429 -0.141238 1.242693 -0.395903 1.342667 -0.241661 0.869136 -0.442156 -0.513686 -0.019435 -0.043448 -0.491822 -0.113252 0.214585 1.076100 0.503510 0.618125 1.022464 0.705376 1.494678 -0.730625 0.856717 -0.317000 1.084919 -0.641424 -0.764611 0.468146 0.571497 -0.242783 0.733978 -1.847397 -1.907013 -0.927947 -2.000591 0.063873 -0.546960 0.540403 -0.309925 -0.335646 -1.364258 -1.008636 0.731184 0.061924 1.309905 0.796694 0.012791 0.955682 1.070234 -0.729313 -0.132123 -0.047311 0.665378 0.272472 -0.520939 -1.172871 1.100657 -1.191177 0.179876 1.835080 -0.975582 0.541730 -0.464060 1.099338 -1.384616 1.747814 0.355108 -1.087137 1.093215 1.031042 1.403856 0.014107 -0.850814 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.116750 -0.445017 1.864158 1.284877 -0.141420 -0.014846 0.805977 -0.819217 0.777459 0.104147 -0.141848 0.301397 -1.096340 0.395915 -0.665268 0.883010 -1.248451 -0.805768 -0.358968 -0.920767 -0.128883 -0.320331 1.110293 -0.126175 1.198526 0.080490 -0.643941 -0.947165 -1.176324 -0.694901 0.767964 -0.411964 0.775039 -0.067867 -0.510229 -2.055775 1.002357 0.857676 -0.685246 -0.743371 1.199945 -0.742312 0.050877 -0.534393 -0.246121 0.062483 0.019277 0.268737 0.999210 0.519655 0.453582 0.450248 0.388210 1.736495 -1.162636 0.520682 0.244959 -0.196819 -0.569591 0.133630 0.084875 0.134991 0.474508 0.190794 -0.125298 -1.310220 -0.384196 -0.756393 -1.038723 0.614221 -0.284313 0.023465 -0.762119 0.052245 -0.709888 -0.256306 -0.318094 0.829115 1.168641 -0.871578 0.745890 -0.220321 -0.289833 -0.261565 -0.126615 0.388995 0.038757 0.181494 0.237434 -0.643075 -0.602663 0.210689 0.219265 0.267039 -0.289276 -1.400049 0.939111 -0.458620 -1.079580 -0.007844 0.741862 -0.649030 -0.475844 0.109069 -0.162690 0.738936 -0.601770 -0.859122 -0.087083 0.102080 0.449663 -0.222059 -0.156726 -0.566970 -0.514897 -0.732364 -1.249540 0.445939 -0.400758 -0.341006 -0.527372 0.671225 -0.418658 -0.146423 0.148732 0.876409 -0.687041 1.051886 -0.313539 0.735612 0.426927 0.338576 -0.608685 -0.317165 0.884276 1.301128 -0.611719 0.036116 -1.027412 0.050219 -0.782013 -0.226743 0.203135 0.677641 0.872219 -0.963562 -0.619813 -0.021703 -0.088730 -1.431719 0.171399 -0.616018 -0.042603 0.399699 0.707284 0.339614 0.994277 1.785117 -0.612546 0.339681 0.151280 -0.662944 1.150522 0.051196 0.848622 -0.548574 -0.673622 0.250265 0.059087 0.441005 -0.242383 0.669783 0.139050 -1.286019 -0.096064 0.073540 0.370570 -0.441162 0.614758 0.825797 0.708202 -0.764419 0.208454 0.948841 -0.547052 -0.026852 0.300407 -1.105754 0.364433 0.353369 -0.333523 0.856952 0.164958 -0.682130 0.533691 -0.462236 0.264472 -0.698590 0.180891 -0.567740 -0.216873 -0.731999 -0.220197 -0.175541 -0.630498 -0.347633 -0.428576 1.154897 -0.582568 -0.647465 0.776550 0.038153 0.192679 -1.588464 1.782540 -0.788555 0.579636 -0.337356 -0.010966 0.042071 0.380180 -1.094487 0.045680 0.262054 -0.221243 0.675789 1.559659 0.742175 -0.013925 -0.355614 1.204050 -0.260161 1.282927 -0.340267 1.024382 -0.318478 -0.787926 0.314272 -0.142057 -0.527484 -0.493162 0.389999 1.332499 0.485294 0.587273 0.899290 0.511432 1.674323 -0.501603 0.941235 -0.197447 0.842054 -0.140067 -0.376755 0.603393 0.636093 -0.203110 0.815089 -1.344307 -1.811181 -0.503317 -1.428534 0.620000 -0.433225 0.367497 -0.442989 -0.059364 -1.366183 -0.807855 0.025469 -0.379810 1.073288 0.689330 0.171215 0.599432 0.920220 -0.781533 0.092471 0.103178 0.819802 0.445432 -0.460899 -0.815130 0.880882 -0.882873 -0.104878 1.301696 -0.587379 0.317306 -0.280287 0.852441 -0.842191 1.498233 0.114115 -0.408432 1.528378 0.769583 0.967831 0.424744 -0.451339 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.052456 -0.178838 0.634863 0.487216 -0.114431 0.007887 0.107858 -0.246725 0.303159 0.145320 -0.094952 0.080668 -0.314638 0.131011 0.026741 0.395703 -0.455379 -0.208358 -0.077233 -0.268126 -0.103561 -0.128327 0.271486 -0.072813 0.337283 0.230391 -0.180768 -0.142622 -0.144181 -0.394794 0.171409 -0.177005 0.250969 0.211484 -0.010830 -0.652098 0.377159 0.230841 -0.206466 -0.294967 0.255874 -0.161265 0.114396 -0.155647 -0.054321 0.164930 0.072145 0.066237 0.312136 0.236141 0.153692 -0.006292 0.249800 0.426199 -0.247981 0.158083 0.103847 -0.143860 -0.148928 -0.036953 0.078028 0.005991 0.154601 0.100182 -0.016788 -0.421702 -0.183026 -0.252094 -0.341412 0.209385 -0.136794 -0.036119 -0.338144 -0.168024 -0.102554 -0.120436 -0.607726 0.313744 0.442482 -0.325983 0.247847 0.045798 -0.024688 -0.022326 0.018926 0.113874 0.104144 0.099911 -0.019090 0.032902 0.126953 -0.161991 0.156037 0.055663 -0.102153 -0.346771 0.243111 -0.130590 -0.319578 0.131060 0.240496 -0.080973 -0.195740 -0.023261 -0.009033 0.254132 -0.203112 -0.270885 0.034173 -0.048023 0.176681 -0.064823 -0.133006 -0.085961 -0.201331 -0.077193 -0.449950 0.095050 -0.092534 -0.142401 -0.040668 0.221851 -0.021385 -0.039014 0.004851 0.206042 -0.198729 0.523569 -0.009523 0.319489 0.013874 0.148606 -0.252107 0.057089 0.298756 0.193845 -0.124218 -0.036759 -0.261297 -0.002620 -0.275719 -0.021473 0.056127 0.244061 0.493060 -0.197880 -0.267882 -0.067657 -0.226812 -0.532336 0.132736 -0.249003 0.092400 0.227007 0.242873 0.138020 0.329758 0.513880 -0.315465 0.013153 -0.100955 -0.151766 0.343330 0.214306 0.280097 -0.173218 -0.123581 0.144094 0.109255 0.095319 0.091311 0.033596 0.105289 -0.351760 0.059686 0.259220 0.144845 -0.130066 0.189766 0.226135 0.395585 -0.022519 0.009593 0.292583 -0.067357 -0.034213 0.132002 -0.336410 0.184715 0.055846 -0.032326 0.168325 0.018360 -0.093147 0.125309 -0.186976 0.073677 -0.209231 0.064006 -0.165826 0.034521 -0.223902 0.062052 -0.139633 -0.180446 -0.029372 -0.008049 0.396291 -0.170008 -0.063823 0.259646 -0.071561 0.113484 -0.315651 0.588435 -0.262447 0.256472 -0.195373 -0.094971 0.009261 -0.029749 -0.204315 -0.042591 0.121979 0.065080 0.004130 0.400064 0.234023 -0.095879 -0.043485 0.378532 -0.075491 0.418066 -0.019741 0.326759 -0.090750 0.016697 0.086588 -0.052490 -0.164737 -0.141979 0.024717 0.413449 0.132479 0.130106 0.247958 0.054014 0.439489 -0.205126 0.300913 -0.015408 0.318828 -0.140311 -0.117158 0.166329 0.287213 -0.099911 0.154928 -0.406427 -0.456791 -0.237781 -0.217758 -0.081302 0.086572 0.132648 -0.117834 -0.018724 -0.203713 -0.251820 0.308007 -0.122737 0.215994 0.098810 0.034553 0.246854 0.315247 -0.132666 -0.130184 -0.075256 0.105488 0.138692 0.008529 -0.270290 0.320754 -0.301469 -0.093030 0.400810 -0.235622 0.050328 -0.006362 0.367752 -0.265230 0.428512 0.053159 -0.104900 0.472509 0.355611 0.319888 0.064706 -0.171033 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::max_size() const = -0.060684 -0.242359 0.738344 0.473410 -0.178748 0.088897 0.126817 -0.321186 0.369198 -0.274256 -0.171404 0.073556 -0.459349 0.123200 -0.406863 0.083453 -0.625894 -0.380420 -0.189902 -0.345308 -0.128666 -0.227405 0.176959 0.144704 0.316640 0.303078 -0.238947 -0.035086 -0.596292 0.013104 0.351697 -0.094790 0.201794 0.176148 0.063672 -0.713797 0.341946 0.382169 -0.206700 -0.399274 0.304938 -0.458476 0.039302 -0.379317 -0.068254 0.042176 0.000734 0.287233 0.307270 -0.017211 -0.057894 0.096085 -0.107515 0.716243 -0.362575 0.256861 0.235149 0.005446 -0.100967 0.050295 0.023278 0.035807 0.118039 0.114434 -0.241600 -0.418390 -0.080330 -0.390590 -0.244398 0.348045 -0.064056 -0.017954 -0.330669 -0.177352 -0.578461 -0.123543 -0.408217 0.450285 0.527992 -0.508423 0.293008 -0.014256 0.145100 0.060108 0.182029 0.113102 0.321353 0.079209 -0.014665 -0.075723 -0.490448 0.073347 0.044521 -0.152517 -0.193512 -0.614260 0.328009 -0.760649 -0.497402 0.018822 0.194140 -0.230525 -0.028037 0.159540 0.016704 0.195511 -0.224275 -0.346867 0.068977 0.202233 0.094793 -0.001713 0.109226 -0.010719 -0.077981 -0.424329 -0.578562 0.230950 -0.022720 -0.078573 -0.009787 0.470348 -0.206172 -0.033630 0.054699 0.156716 -0.240070 0.624346 -0.096176 0.084333 -0.126197 0.080099 -0.256649 0.042721 0.241949 0.506301 -0.337329 0.066271 -0.145990 0.037160 -0.352782 -0.254709 -0.168892 0.144100 0.056562 -0.454643 -0.277190 -0.193253 -0.297079 -0.626540 -0.041567 -0.204594 -0.247011 0.218702 0.332766 0.606711 0.329979 0.695463 -0.242018 0.033708 0.022110 -0.231211 0.344356 0.088992 0.320809 -0.251966 -0.297114 0.184381 -0.146712 0.230244 0.027888 0.106105 0.005935 -0.523612 -0.021698 0.213460 0.298594 0.010915 0.466968 0.457555 -0.243660 -0.488252 0.140517 0.302320 -0.212625 -0.030297 0.095383 -0.383972 0.231915 0.187030 -0.019886 0.325502 0.011574 -0.100667 0.117421 -0.117338 0.237562 -0.362005 -0.103781 -0.225858 -0.137550 -0.417555 0.200526 -0.167970 -0.236487 -0.239024 -0.437898 0.501104 -0.467446 -0.287645 0.422769 0.149372 0.394976 -0.507123 0.202474 -0.298674 0.628024 0.052930 0.090355 0.033682 -0.092606 -0.352575 0.075007 0.127525 -0.170538 0.130975 0.400044 0.301585 0.082713 -0.020822 0.487685 -0.190761 0.402567 -0.232008 0.300013 -0.102341 -0.351550 0.243550 -0.121579 -0.155961 -0.069598 0.254705 0.662049 0.292981 0.463669 0.428226 0.268874 0.488104 -0.196685 0.090288 -0.133170 0.223405 -0.196628 -0.202545 0.122736 0.283344 -0.053669 0.058721 -0.587946 -0.866147 -0.559959 -0.534622 0.213216 -0.473272 -0.009089 -0.024896 -0.032317 -0.501191 -0.342402 0.147103 -0.203145 0.599699 0.179757 0.061677 0.337362 0.485783 -0.406493 0.010441 0.342607 0.353623 0.050380 0.006126 -0.598789 0.485440 -0.369439 0.020184 0.682153 -0.327425 0.228461 0.057206 0.410018 -0.380010 0.622980 0.146052 -0.435875 0.412282 0.428403 0.407147 0.414338 -0.266229 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_max_size(std::allocator const&) = -0.086689 -0.647507 2.610509 1.578740 -0.225793 0.001111 1.312915 -1.082872 1.328305 0.393354 -0.372993 -0.093612 -1.503861 0.259452 -0.861198 0.937035 -1.724315 -1.107209 -0.453712 -1.289787 -0.149468 -0.778609 1.438791 -0.234092 1.514665 0.010542 -0.609245 -1.193247 -1.234959 -0.991098 1.312925 -0.535678 0.926281 -0.052301 -0.564223 -2.862488 1.394007 0.995645 -0.826998 -1.007163 1.336312 -0.592013 -0.148495 -0.348486 -0.278978 0.129648 0.151506 1.049469 1.264107 0.722008 0.660603 0.021980 0.450012 2.680206 -1.464821 0.655209 0.258997 -0.250190 -0.510098 0.566569 0.126469 0.039738 0.419421 0.619069 0.178204 -1.359061 -0.008934 -1.040678 -1.522449 1.180333 -0.350791 -0.098214 -0.889728 -0.000545 -0.840653 -0.140725 -0.889062 1.267012 1.820006 -1.097327 1.180104 -0.030490 -0.148989 -0.455307 -0.580634 0.368062 0.166858 0.176264 0.165357 -0.996523 -1.037554 0.015351 0.164341 -0.034504 -0.290756 -2.005141 1.385408 -0.649137 -1.328890 -0.017550 0.945323 -0.863969 -0.445339 0.294100 -0.100414 0.791616 -0.633957 -1.139923 -0.417509 0.208429 0.147735 0.067479 0.013053 -0.437711 -0.647801 -0.803310 -1.571552 0.372769 -0.650770 -0.577521 -0.654295 0.890407 -0.622544 -0.013246 0.459649 1.183387 -0.655600 1.232802 -0.076379 1.037082 0.747277 0.526115 -0.929387 -0.344570 1.193870 1.690944 -0.242083 0.080028 -1.041391 0.234352 -1.094254 -0.164546 0.084454 0.619131 1.040081 -1.474504 -0.855250 -0.062734 -0.024650 -1.773352 0.214483 -0.966431 -0.277397 0.472826 0.929542 0.882936 1.093885 2.329733 -1.339441 0.620566 0.005216 -0.849311 0.880748 0.073054 1.030873 -0.628320 -0.831921 -0.079191 0.203713 0.649731 -0.387372 0.323227 0.028206 -1.811907 -0.174082 0.108591 0.434320 -0.734435 0.491422 1.271746 0.981938 -1.474437 0.257426 1.400861 -0.610681 -0.285917 0.637016 -1.727356 0.672079 0.334287 -0.248262 0.925902 0.199351 -0.594231 0.774018 -0.917396 0.107667 -0.915752 -0.037993 -0.740039 -0.358081 -1.013495 0.018815 -0.530588 -0.738860 -0.320790 -0.410572 1.382849 -0.751903 -0.942752 1.351687 -0.045474 0.136879 -1.884571 2.558229 -0.848033 0.588499 -0.405875 -0.051473 -0.185807 0.583253 -1.118063 -0.109261 0.110100 -0.205476 1.199856 2.298894 0.923745 0.059730 -0.309546 1.801217 -0.526532 1.443661 -0.599567 1.034372 -0.453735 -1.256609 0.190268 -0.257110 -0.528353 -0.635214 0.573640 1.792964 0.836681 0.535215 1.438525 0.605920 1.944063 -0.430369 1.198213 -0.069651 1.233864 -0.270384 -0.395205 0.840708 0.674742 -0.751822 1.144493 -1.850905 -2.427452 -0.789906 -1.922144 0.380666 -1.030005 0.606236 -0.581594 0.000596 -1.791398 -1.097024 0.055981 -0.353525 0.929429 0.902369 0.156287 0.806734 1.420378 -1.026691 0.222442 0.338099 1.156175 0.289927 -0.822662 -1.002338 1.140718 -1.283239 -0.024373 1.783904 -0.778236 0.407338 -0.484731 1.120232 -1.470391 1.927999 0.362799 -0.471461 1.804272 0.874430 1.524386 0.768842 -0.590012 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.179876 -0.328916 1.205895 0.871743 -0.094572 0.065041 0.365283 -0.549030 0.647714 0.309327 -0.076940 0.165150 -0.618064 0.235884 -0.107721 0.683562 -0.806826 -0.482880 -0.162938 -0.631496 -0.228050 -0.280218 0.521714 -0.146163 0.643307 0.063866 -0.403282 -0.418771 -0.512758 -0.673295 0.438772 -0.323424 0.481315 -0.010731 -0.148277 -1.601143 0.740528 0.458650 -0.423872 -0.548984 0.546623 -0.409599 0.171343 -0.240748 -0.129142 0.153128 0.092709 0.127437 0.650049 0.386674 0.374245 0.159542 0.304286 1.225489 -0.668731 0.366936 0.159013 -0.235238 -0.370370 0.122110 0.110236 0.029952 0.374676 0.204317 -0.074339 -0.807150 -0.215082 -0.441029 -0.723460 0.429788 -0.138406 -0.133271 -0.529131 -0.132359 -0.344904 -0.291577 -0.688559 0.542575 0.865321 -0.597359 0.537518 0.014877 0.000000 -0.019149 0.102315 0.193862 0.324150 0.137676 -0.069940 -0.167863 -0.098261 -0.091210 0.207076 0.193003 -0.157687 -0.818917 0.483915 -0.208797 -0.691679 0.218059 0.445926 -0.188599 -0.575721 -0.117881 0.091461 0.445264 -0.436371 -0.629623 -0.168271 0.039639 0.172036 -0.160090 -0.122733 -0.434261 -0.334661 -0.310314 -0.830406 0.157988 -0.151509 -0.255384 -0.398571 0.519108 -0.227292 -0.090155 0.046466 0.503213 -0.424843 0.772690 -0.136917 0.580612 0.144628 0.189949 -0.715317 -0.086312 0.516316 0.598651 -0.198961 -0.062141 -0.592627 0.055825 -0.574624 0.032269 0.118995 0.553689 0.833318 -0.413706 -0.461368 -0.090619 -0.081625 -0.962830 0.235733 -0.473039 0.025587 0.274807 0.504497 0.283882 0.636371 0.972371 -0.521822 0.288684 -0.140870 -0.287847 0.731036 0.134106 0.566575 -0.367685 -0.331869 0.161367 0.223946 0.231596 0.031632 0.112083 0.136359 -0.733464 -0.067117 0.172740 0.263239 -0.250739 0.372261 0.479029 0.970236 -0.524856 0.113662 0.572194 -0.231762 -0.001308 0.165480 -0.683005 0.247943 0.219497 -0.194937 0.513736 0.044408 -0.421718 0.219234 -0.273917 0.171513 -0.404083 0.110090 -0.367314 -0.075241 -0.384199 -0.071502 -0.318651 -0.363290 -0.194131 -0.161579 0.781544 -0.397406 -0.406126 0.631704 -0.192576 0.173256 -0.934938 1.270064 -0.522941 0.367446 -0.457415 -0.103790 -0.074900 0.307404 -0.539291 0.129059 0.225802 -0.105724 0.288165 1.012508 0.454420 0.060037 -0.161106 0.770809 -0.137573 0.706290 -0.154467 0.742523 -0.232082 -0.217164 0.104552 -0.137471 -0.211360 -0.245674 0.184379 0.683036 0.348163 0.190315 0.454922 0.357399 0.863216 -0.365318 0.624710 -0.080996 0.563527 -0.188482 -0.193513 0.329615 0.408396 -0.172619 0.403641 -0.859177 -0.919125 -0.401495 -0.655769 0.101812 0.145050 0.171063 -0.212664 -0.001783 -0.734828 -0.441735 0.362569 -0.249004 0.473708 0.325261 0.149669 0.464254 0.670697 -0.346248 -0.169118 -0.107901 0.193239 0.184613 -0.215000 -0.505064 0.632656 -0.610779 0.006817 0.725482 -0.348486 0.118654 -0.013721 0.599335 -0.521740 0.906255 0.134221 -0.165335 0.892994 0.647535 0.789034 0.089149 -0.321635 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = -0.116750 -0.445017 1.864158 1.284877 -0.141420 -0.014846 0.805977 -0.819217 0.777459 0.104147 -0.141848 0.301397 -1.096340 0.395915 -0.665268 0.883010 -1.248451 -0.805768 -0.358968 -0.920767 -0.128883 -0.320331 1.110293 -0.126175 1.198526 0.080490 -0.643941 -0.947165 -1.176324 -0.694901 0.767964 -0.411964 0.775039 -0.067867 -0.510229 -2.055775 1.002357 0.857676 -0.685246 -0.743371 1.199945 -0.742312 0.050877 -0.534393 -0.246121 0.062483 0.019277 0.268737 0.999210 0.519655 0.453582 0.450248 0.388210 1.736495 -1.162636 0.520682 0.244959 -0.196819 -0.569591 0.133630 0.084875 0.134991 0.474508 0.190794 -0.125298 -1.310220 -0.384196 -0.756393 -1.038723 0.614221 -0.284313 0.023465 -0.762119 0.052245 -0.709888 -0.256306 -0.318094 0.829115 1.168641 -0.871578 0.745890 -0.220321 -0.289833 -0.261565 -0.126615 0.388995 0.038757 0.181494 0.237434 -0.643075 -0.602663 0.210689 0.219265 0.267039 -0.289276 -1.400049 0.939111 -0.458620 -1.079580 -0.007844 0.741862 -0.649030 -0.475844 0.109069 -0.162690 0.738936 -0.601770 -0.859122 -0.087083 0.102080 0.449663 -0.222059 -0.156726 -0.566970 -0.514897 -0.732364 -1.249540 0.445939 -0.400758 -0.341006 -0.527372 0.671225 -0.418658 -0.146423 0.148732 0.876409 -0.687041 1.051886 -0.313539 0.735612 0.426927 0.338576 -0.608685 -0.317165 0.884276 1.301128 -0.611719 0.036116 -1.027412 0.050219 -0.782013 -0.226743 0.203135 0.677641 0.872219 -0.963562 -0.619813 -0.021703 -0.088730 -1.431719 0.171399 -0.616018 -0.042603 0.399699 0.707284 0.339614 0.994277 1.785117 -0.612546 0.339681 0.151280 -0.662944 1.150522 0.051196 0.848622 -0.548574 -0.673622 0.250265 0.059087 0.441005 -0.242383 0.669783 0.139050 -1.286019 -0.096064 0.073540 0.370570 -0.441162 0.614758 0.825797 0.708202 -0.764419 0.208454 0.948841 -0.547052 -0.026852 0.300407 -1.105754 0.364433 0.353369 -0.333523 0.856952 0.164958 -0.682130 0.533691 -0.462236 0.264472 -0.698590 0.180891 -0.567740 -0.216873 -0.731999 -0.220197 -0.175541 -0.630498 -0.347633 -0.428576 1.154897 -0.582568 -0.647465 0.776550 0.038153 0.192679 -1.588464 1.782540 -0.788555 0.579636 -0.337356 -0.010966 0.042071 0.380180 -1.094487 0.045680 0.262054 -0.221243 0.675789 1.559659 0.742175 -0.013925 -0.355614 1.204050 -0.260161 1.282927 -0.340267 1.024382 -0.318478 -0.787926 0.314272 -0.142057 -0.527484 -0.493162 0.389999 1.332499 0.485294 0.587273 0.899290 0.511432 1.674323 -0.501603 0.941235 -0.197447 0.842054 -0.140067 -0.376755 0.603393 0.636093 -0.203110 0.815089 -1.344307 -1.811181 -0.503317 -1.428534 0.620000 -0.433225 0.367497 -0.442989 -0.059364 -1.366183 -0.807855 0.025469 -0.379810 1.073288 0.689330 0.171215 0.599432 0.920220 -0.781533 0.092471 0.103178 0.819802 0.445432 -0.460899 -0.815130 0.880882 -0.882873 -0.104878 1.301696 -0.587379 0.317306 -0.280287 0.852441 -0.842191 1.498233 0.114115 -0.408432 1.528378 0.769583 0.967831 0.424744 -0.451339 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = -0.070947 -0.403858 2.096108 1.370329 -0.505712 0.023161 0.581949 -0.998532 0.885109 -0.669102 -0.198473 0.190037 -1.162040 0.423362 -0.769156 0.546532 -1.814050 -0.894032 -0.546693 -1.117770 -0.215090 -0.369827 1.002412 0.119456 1.117722 0.550285 -0.731801 -0.664722 -1.284472 -0.057360 1.233813 -0.381947 0.834932 0.446761 -0.285719 -2.688043 1.079535 0.827686 -0.730119 -0.810846 1.189792 -1.075034 0.042122 -1.045938 -0.503903 -0.030236 -0.142656 0.562953 1.063755 0.131380 -0.055516 0.536115 -0.059872 2.025953 -1.297834 0.489584 0.321389 -0.247523 -0.611205 0.102007 0.035143 0.244965 0.502797 0.229515 -0.416208 -1.502100 -0.208752 -1.128929 -1.051787 0.854938 -0.067319 0.098027 -0.777467 -0.057254 -1.219577 -0.327996 0.006686 1.224169 1.255406 -1.143941 0.684793 -0.350923 -0.153482 -0.081910 0.102171 0.464051 0.498224 0.169860 0.271472 -0.570215 -1.243817 0.153039 0.278502 -0.123935 -0.313857 -1.768024 0.869320 -1.230831 -1.167966 -0.111476 0.839439 -0.745487 -0.504007 0.055261 -0.015055 0.669427 -0.578558 -0.857759 0.060718 0.333763 0.269045 -0.099549 -0.047637 -0.285616 -0.430948 -1.210769 -1.492558 0.693214 -0.375472 -0.093555 -0.278795 0.970648 -0.711414 -0.372609 0.160814 0.811960 -0.903426 1.386980 -0.553375 0.432977 0.296443 0.213422 -0.218466 -0.389985 0.817015 1.854535 -0.723960 -0.266425 -1.001272 0.098469 -1.082790 -0.637198 0.162654 0.563559 0.519518 -1.138061 -0.667601 -0.155088 -0.375946 -1.818963 -0.041127 -0.632996 -0.308957 0.822096 0.828574 0.994710 1.136211 1.820846 -0.609173 0.427682 0.090686 -0.700657 1.294463 0.229696 0.937178 -0.624703 -0.705323 0.311063 -0.487165 0.710025 -0.228239 0.602312 0.063992 -1.487317 -0.315530 0.175271 0.641214 -0.112242 0.792310 1.134873 0.122781 -1.207093 0.369549 1.063485 -0.674347 -0.091734 0.399234 -1.008890 0.388052 0.515921 -0.471572 1.016451 0.080050 -0.711966 0.305741 -0.268820 0.436307 -0.808323 -0.145423 -0.527109 -0.203429 -1.021775 -0.076039 -0.373648 -0.723428 -0.657878 -0.974755 1.327556 -1.088175 -0.962405 1.175227 0.100487 0.792852 -1.804548 1.248232 -0.869091 1.135534 -0.226754 0.058686 0.049943 -0.092294 -1.399507 0.314395 0.251371 -0.366155 0.505133 1.540016 0.935116 0.170390 -0.414793 1.367698 -0.320401 1.471158 -0.553994 1.088189 -0.417094 -0.940446 0.510679 -0.189762 -0.622677 -0.458284 0.731540 1.638641 0.647497 1.243660 1.178401 0.729626 1.708957 -0.532386 0.638569 -0.323800 0.624326 -0.168151 -0.497237 0.673589 0.859554 -0.182281 0.618119 -1.546173 -2.374250 -1.096754 -1.655304 0.753980 -0.853463 0.197054 -0.307445 -0.067989 -1.547612 -0.792539 -0.120945 -0.469948 1.696045 0.711903 0.125750 0.730783 1.228587 -1.191329 0.035987 0.708267 1.086993 0.416496 -0.219844 -1.584746 1.320388 -0.927536 -0.041055 1.830104 -0.807736 0.492135 -0.318380 1.265854 -0.938818 1.737246 0.165888 -0.880540 1.447815 0.862232 0.827196 1.094698 -0.567233 -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.278834 -1.486703 3.333066 2.253777 0.035571 0.780161 0.969041 -0.917052 0.699123 0.810462 -0.580213 1.404786 -1.649713 0.312445 -0.868484 0.765657 -1.824135 -1.350647 -0.335211 -0.981715 -0.145237 -0.851965 0.244328 1.208370 1.654229 0.132919 -1.067228 -0.719654 -2.693476 -2.007958 0.105496 -0.410152 1.183393 -0.687761 0.520295 -2.901746 1.673368 1.995201 -0.407343 -2.045122 1.400832 -0.971585 0.012307 -0.157453 -0.265888 0.838388 0.923879 0.512680 1.174022 0.954691 0.062565 0.096196 0.998130 2.493738 -0.700082 1.310893 1.144236 -0.629999 0.162410 -0.065785 -0.139906 -0.709894 0.521793 0.110906 -0.327124 -1.513268 -0.182606 -0.370773 -1.021984 0.862202 0.018221 -0.525100 -1.268202 -0.450644 -2.042499 -0.297680 -0.345620 1.344700 2.290561 -1.048194 1.906724 0.096033 0.456689 0.150365 0.842864 0.446009 0.509492 0.445542 -0.429075 -0.381068 -1.482420 -0.075866 -0.085421 0.701099 -0.903161 -1.898153 1.160145 -2.123517 -1.909339 0.801534 0.334579 -1.325739 -0.612641 -0.124106 0.218210 1.181924 -0.871707 -1.624257 -0.345164 0.862100 0.090777 -0.410306 0.454821 -0.890480 -0.497713 -0.652924 -1.728300 0.832682 0.488284 -0.622155 -0.876583 1.783997 -0.228222 0.827114 0.186203 1.248714 -0.748806 1.402874 0.441325 0.986284 -0.159625 -0.153083 -1.668157 -0.142712 0.845130 0.703522 -1.271396 -0.064534 -0.747143 0.540787 -0.414171 0.465841 -0.334441 1.668715 1.321108 -1.278460 -1.109901 -0.946367 -0.554311 -1.507236 0.090221 -0.524966 -1.215684 0.333626 1.217136 0.324783 0.845658 1.965681 -0.735543 0.235169 0.081443 -0.812178 1.101638 -0.589494 1.030679 -1.130825 -1.039570 0.798003 0.718669 0.948875 -0.079600 0.395913 0.558838 -1.289312 -0.066194 0.565836 0.812443 -0.163095 1.856656 1.704834 1.565697 -0.865085 -0.401779 0.838920 -1.125775 -0.200712 0.206111 -1.707599 0.768955 0.739835 -0.225417 2.131725 0.038577 -0.936346 1.560458 -0.348059 0.472632 -1.322165 0.688569 -1.203169 -0.211205 -0.856551 -0.620154 -0.802042 -0.844801 -1.377460 -1.037139 2.209366 -1.299587 -1.514227 0.989410 -0.236255 0.628469 -2.797094 2.215614 -1.157580 1.218868 0.206111 0.020135 0.069691 0.727089 -1.277669 0.319378 0.597929 -0.957794 1.394872 1.783879 0.900472 -0.074096 -0.160548 1.600429 -0.530737 1.057532 -0.865158 0.966533 -0.658124 -0.550852 -0.067150 -0.254511 -0.299445 -0.093753 0.308356 0.628759 0.510478 0.417000 0.766501 1.603999 1.462667 -0.515033 0.833582 -0.823772 1.457819 -0.980788 -1.013712 0.083124 1.121453 0.374996 0.958696 -2.710935 -2.237689 -1.684071 -2.350184 0.320151 -0.307621 0.404746 0.115926 -0.257129 -2.502082 -1.484521 1.183324 -0.132520 1.317370 1.391987 0.190107 1.371996 1.213480 -0.426690 -0.157525 -0.106706 0.938831 0.094900 -0.457748 -1.146527 1.235896 -1.833540 0.556545 2.131952 -1.112223 0.936353 -0.112892 0.897827 -2.113242 2.479780 0.759203 -1.461214 1.258187 1.554610 1.668368 -0.526878 -0.982204 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_base(int*) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = -0.215334 -1.226967 3.344760 2.225486 -0.248728 0.243084 1.486805 -1.279023 1.573928 0.482588 -0.704172 0.633183 -2.135550 0.564242 -1.548945 1.251401 -2.351303 -1.760955 -0.460121 -1.340097 -0.271143 -1.089371 1.384130 0.347390 1.942880 -0.009014 -1.039357 -1.252354 -2.462162 -1.429021 0.977758 -0.769783 1.161005 -0.472892 -0.370228 -3.338192 1.771910 1.732842 -0.911488 -1.829473 1.753380 -1.571561 -0.064612 -0.843539 -0.359866 0.227605 0.433390 1.285551 1.543556 0.710036 0.540795 0.423456 0.550975 3.544866 -1.722037 1.200455 0.725816 -0.218265 -0.597166 0.350084 0.217076 -0.115626 0.813246 0.672136 -0.338852 -1.825703 -0.410132 -1.087296 -1.569913 1.375197 -0.359855 -0.026772 -1.523825 0.019746 -1.879107 -0.281709 -0.922939 1.804191 2.585098 -1.647099 1.684691 0.078733 0.187563 -0.365881 0.101816 0.424200 0.882237 0.349379 -0.031566 -1.314011 -1.768674 0.147075 0.040677 0.067466 -0.575964 -2.550486 1.594444 -1.943313 -2.184795 0.065612 0.832178 -1.269114 -0.413369 0.448316 0.206188 1.190155 -0.858104 -1.783924 -0.476994 0.476318 0.334167 -0.386323 0.335955 -0.783506 -0.593345 -1.132569 -2.256662 0.460721 -0.316428 -0.928559 -0.780465 1.507481 -0.685821 0.285197 0.393463 1.308448 -0.651659 1.717519 -0.108770 1.230580 0.714167 0.395120 -1.484959 0.007326 1.310115 1.708426 -1.044572 0.624117 -1.076512 0.358168 -1.207638 -0.345524 -0.340542 1.334011 0.923867 -1.937439 -1.229786 -0.557881 -0.203021 -2.053245 0.255844 -1.142332 -0.728137 0.397503 1.442336 1.129207 1.406449 3.019177 -1.378230 0.789719 0.378400 -0.846328 1.572940 -0.359060 1.321874 -1.084048 -1.367870 0.526333 0.496653 0.849986 -0.522926 0.704927 0.131575 -2.211110 -0.404526 0.365018 0.794955 -0.464595 1.683812 1.566286 0.941949 -2.020523 0.522833 1.523792 -0.906004 -0.105649 0.374612 -2.320802 1.061692 0.576412 0.066302 1.580379 0.199645 -1.047873 1.135711 -0.735110 0.481492 -1.514947 0.201553 -1.245173 -0.598209 -1.322670 -0.031032 -0.473252 -1.089353 -0.792172 -0.847196 2.172023 -1.379056 -1.563205 1.591985 -0.176818 0.733146 -3.013464 2.897452 -1.394436 1.207644 -0.244801 0.161308 -0.017629 0.721897 -1.587113 0.051086 0.640827 -0.643836 1.587156 2.446833 1.156970 0.263685 -0.170947 2.100871 -0.489070 1.736726 -0.807259 1.461830 -0.394539 -1.503672 0.264734 -0.469373 -0.419215 -0.303370 0.799308 2.249724 1.126224 0.867099 1.876089 1.309959 2.446740 -0.789852 1.420710 -0.626170 1.555684 -0.636200 -0.674186 0.551882 0.741143 -0.532308 1.475840 -2.705185 -3.335883 -1.574996 -2.574738 0.767538 -1.498515 0.746876 -0.549807 0.022761 -2.752293 -1.579708 0.295983 -0.490151 1.503680 1.322442 0.311195 1.245243 1.654328 -1.167287 0.090997 0.308655 1.336350 0.257962 -0.973486 -1.372005 1.332657 -1.940417 0.423913 2.427644 -1.168519 0.675451 -0.397440 1.249035 -1.812054 2.790823 0.772286 -1.174790 2.105618 1.522430 1.957089 0.522770 -1.124646 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base(unsigned long, std::allocator const&) = -0.529881 -0.426764 2.232367 0.866393 -0.638679 -0.251780 1.257170 -0.907340 0.963132 -0.408960 -0.094276 -0.154516 -1.597261 0.335382 -0.631470 0.520397 -1.733610 -1.086571 -0.414797 -1.205750 -0.676414 -0.816371 1.420466 0.105379 1.171272 0.432165 -0.463480 -0.895252 -0.682181 -0.975114 1.189748 -0.403828 0.780018 0.493260 -0.053359 -3.121316 1.000237 0.197982 -0.727470 -0.603407 1.277606 -0.280288 0.072791 -0.256862 -0.417535 0.175376 0.561893 1.362358 1.225121 0.739440 0.483658 -0.411192 0.034088 2.229438 -1.129250 0.436503 0.554794 -0.260116 -0.506488 0.272207 -0.283260 -0.502230 0.130100 0.591762 -0.371385 -0.705786 0.385320 -1.357498 -1.428086 1.204789 -0.064195 -0.194911 -0.940903 -0.554902 -0.845846 -0.305243 -0.567908 1.188255 1.888735 -1.396762 0.864429 -0.000790 0.168340 -0.355163 -0.443797 0.139209 0.326492 -0.023239 -0.176364 -0.643706 -1.098240 -0.178783 -0.449024 0.070534 0.187017 -1.898486 1.042238 -1.011713 -1.295915 0.135013 0.467319 -0.535622 -0.846446 0.248751 0.258550 0.490553 -0.776036 -1.282346 -0.718611 0.118327 -0.009583 0.663617 0.239364 0.025799 -0.688851 -0.849626 -1.742427 0.361921 -0.444052 -0.801100 -0.536471 0.868130 -0.709676 0.658792 0.931826 1.178540 -0.632080 1.683835 0.563742 0.326079 0.617604 0.096139 -0.581350 -0.321966 0.711636 1.783253 -0.317166 -0.239936 -0.802600 -0.011803 -1.244152 -0.506984 0.021057 0.646055 1.112209 -1.346725 -1.343715 0.158684 -0.335598 -2.109693 0.527273 -1.146690 -0.175465 0.610020 0.349977 0.919858 0.664651 2.135081 -0.976721 0.785251 -0.100038 -0.827909 0.381894 0.334718 1.257038 -0.691956 -0.752993 -0.120037 -0.127899 0.495827 -0.148981 -0.311883 0.095604 -1.941523 -0.781277 0.012553 0.579995 -0.457726 0.188846 1.065807 1.102463 -1.137779 -0.105595 1.213013 -0.443872 -0.420975 0.725812 -1.312295 0.712216 0.169674 -0.404206 0.805426 0.264677 -0.618195 1.076078 -0.566347 0.338242 -0.851515 -0.314055 -0.671027 -0.223400 -1.156943 0.045576 -0.572451 -0.436616 -0.070455 -0.555149 1.234900 -0.792514 -1.005955 1.298446 -0.118752 1.100881 -1.993931 2.275556 -0.496464 0.887449 -0.465307 0.056853 -0.311149 0.007610 -0.195717 0.264078 -0.301510 0.234846 0.689773 2.049588 0.541176 0.430894 0.165696 1.742272 -0.233355 1.197971 -0.206681 0.930724 -0.659823 -1.170429 0.504112 0.019280 -0.519380 -0.344926 0.594117 1.578344 0.879828 0.246262 1.613054 0.773449 1.534407 -0.342442 0.614238 -0.112409 1.325209 -0.682216 -0.513108 0.673786 0.933722 -0.799237 0.745320 -1.559032 -2.549928 -1.051407 -2.224175 -0.226890 -0.753022 0.565035 -0.511192 -0.070650 -1.111833 -0.498543 0.413663 -0.129936 1.298843 0.933086 0.209432 1.249966 1.941914 -0.979701 -0.260641 0.831525 0.990994 -0.062254 -0.156154 -1.278423 0.452744 -1.205588 0.073249 1.464446 -0.570727 0.314986 -0.771731 1.469241 -1.496835 1.779197 0.312625 -0.535058 1.808118 0.864997 1.093371 1.202842 -0.346176 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_fill_initialize(unsigned long, int const&) = 0.507342 -0.410905 3.039991 1.973289 -0.768726 0.131285 0.231703 -1.667850 1.350801 -0.098957 -0.480378 0.433284 -0.930763 0.604075 -1.152403 1.283332 -2.432756 -0.783756 -0.738575 -1.727908 -0.749203 -0.339965 0.782399 -0.112425 1.504568 0.779935 -0.875739 -0.293180 -0.848863 -1.425598 0.788080 -0.443561 0.531264 -0.238917 0.275117 -2.851161 1.880725 1.125176 -0.938636 -1.169003 1.138020 -0.943348 -0.169606 -0.781160 -0.299524 0.206479 -0.102076 1.280790 1.324489 0.700535 0.204740 0.836873 0.682971 3.039535 -1.145600 0.869329 0.602069 -0.265307 -0.500714 0.517524 0.172514 0.222195 0.192875 0.044818 0.184717 -1.996652 -0.421450 -0.913841 -0.547786 1.178112 -0.174366 -0.823195 -1.169112 -0.654145 -1.502573 -0.399262 -2.722744 1.690953 1.641976 -1.715069 0.636559 -0.018625 -0.022279 0.257232 0.351079 0.268262 1.222022 0.445457 0.202154 -0.291708 -0.446508 -0.271601 0.784002 -0.852849 -0.847279 -3.203343 1.163295 -2.312869 -1.615978 0.392351 1.324509 -1.009096 -0.038252 -0.312061 0.193158 0.349042 -0.770914 -0.948924 0.329349 0.396845 0.346828 -0.155431 0.098762 -0.522882 -0.033472 -0.152892 -2.081710 1.055117 -0.181183 0.184320 -0.325189 1.283473 0.243661 -0.587590 -0.022107 0.965084 -0.898024 1.786631 -0.636165 1.167171 -0.554597 1.361501 -0.673612 0.984323 1.169850 -0.063469 -0.672249 0.234352 -0.975839 0.419650 -1.479950 0.130930 -0.760078 1.076050 0.685374 -1.032769 -1.185021 -0.401629 -1.058206 -1.834734 0.262638 -0.684776 -1.456671 0.352016 1.087441 1.491121 1.333598 0.966230 -0.942407 -0.056377 -0.156572 -0.215401 1.515554 -0.176800 1.131694 -0.862239 -0.642450 0.520838 -0.088716 0.701349 -0.075035 0.421851 0.388554 -1.605989 0.294700 0.650216 0.919308 -0.389083 1.241895 1.561957 1.010972 -1.045294 0.166817 1.271722 -1.004718 -0.161271 0.406624 -1.274288 0.456165 0.693108 0.536255 1.468385 0.120377 -0.124659 0.362063 -0.360956 0.485748 -0.748896 -0.346316 -0.690392 -0.614196 -0.653244 0.680584 -0.745137 -0.421169 -0.801858 -1.445127 1.690127 -2.238235 -0.645931 2.024835 -0.595492 0.687950 -1.418708 1.968194 -1.060456 1.074073 -0.042344 0.107404 0.021389 -0.196608 -1.845681 0.679939 0.406852 -0.352176 0.411676 1.703471 1.002873 0.281168 -0.533290 1.729147 -1.173262 1.878361 -0.702920 1.602249 -0.613397 -0.814673 0.033839 -0.167665 -1.080036 -0.795973 0.979655 1.609585 0.087989 1.249159 0.874165 0.733358 1.990597 -0.867642 1.364578 -0.525431 0.264933 -0.766269 -0.786540 1.083688 0.644559 -0.259152 0.561605 -2.129361 -2.004102 -2.578594 -1.004820 0.517546 -0.965276 0.350930 -0.677307 -0.457616 -1.410869 -1.432435 1.496618 -0.437245 0.051846 1.070005 0.220436 0.977021 1.566766 -0.646277 0.319752 -0.068068 0.652646 0.706336 -0.511747 -1.579107 1.918435 -1.076185 -0.149340 2.284414 -0.939057 0.788125 0.155880 0.955302 -1.237575 1.526301 0.134118 -0.927533 1.253052 2.033927 1.266951 0.667310 -0.863961 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = 0.077456 -0.616358 2.681481 1.778354 -0.041648 0.168679 1.061805 -1.477359 1.529388 0.450679 -0.310816 0.347033 -1.468080 0.610778 -1.499117 1.348598 -1.705569 -1.216730 -0.517600 -1.516415 -0.414234 -0.666554 1.349503 -0.346599 1.605136 -0.230826 -0.885403 -1.054414 -1.806524 -1.287564 0.989349 -0.589330 0.692444 -0.842942 -0.542857 -2.443678 1.648475 1.257641 -0.999968 -1.141361 1.453734 -1.162123 -0.059893 -0.545226 0.098092 0.034686 -0.032370 0.900454 1.496637 0.782108 0.909360 0.784909 0.442702 3.012770 -1.824955 1.000925 0.364746 0.026354 -0.645394 0.735229 0.139082 0.274268 0.516803 0.410432 -0.087729 -1.752492 -0.480512 -0.816671 -1.142540 1.096995 -0.442715 -0.307475 -1.187693 0.043406 -1.245562 -0.366301 -1.806373 1.172029 1.855729 -1.376991 1.049064 -0.078814 0.006584 -0.203031 0.106636 0.319474 0.644407 0.289731 0.020697 -0.950608 -0.998673 0.472094 0.313777 -0.137447 -0.546843 -2.559347 1.335282 -1.248035 -1.768404 0.128016 1.025928 -0.847141 -0.346839 0.259961 0.063406 0.670415 -0.952904 -1.421162 -0.096137 0.332271 0.445542 -0.316797 0.221490 -1.199898 -0.374403 -0.731867 -1.845377 0.474210 -0.424202 -0.494779 -0.978816 1.198257 -0.330328 -0.259093 0.193120 1.129478 -0.791087 1.319740 -0.517809 1.255860 0.219942 0.867972 -1.545502 0.326839 1.255067 0.977266 -0.725662 0.715825 -1.241115 0.230432 -1.292862 -0.001968 -0.385938 0.959206 0.798919 -1.409977 -0.951808 -0.088126 0.010044 -1.726997 0.421942 -0.840879 -0.834375 -0.237274 1.146555 0.963283 1.425002 2.049739 -0.961824 0.386608 0.134374 -0.502282 1.619166 -0.381532 1.236003 -0.833455 -1.052431 0.316588 0.337354 0.383938 -0.310722 0.685331 0.162745 -1.887062 0.166195 0.005009 0.598468 -0.767059 1.187441 1.228500 0.896810 -1.575376 0.456104 1.371695 -0.812820 0.079079 0.209163 -1.722821 0.627666 0.635686 0.149817 1.279389 0.227275 -0.746718 0.654128 -0.625113 0.547678 -0.980151 -0.040662 -0.920168 -0.822973 -0.857401 0.284614 -0.354388 -0.770613 -0.481920 -0.826068 1.600832 -1.162451 -0.814620 1.557031 -0.198106 0.169789 -1.951240 2.497033 -1.148214 0.673771 -0.268946 0.268159 -0.064880 0.942106 -1.583921 0.259926 0.462058 -0.521298 1.289679 2.190986 0.980853 0.368866 -0.363220 1.792749 -0.755651 1.498658 -0.639894 1.579611 -0.463449 -1.330316 0.323708 -0.342815 -0.636161 -0.730081 0.750100 1.863916 0.680143 0.665132 1.152341 0.822069 2.241773 -0.760434 1.498822 -0.413704 0.817230 -0.440653 -0.495581 0.851909 0.299333 -0.410323 1.083966 -2.075942 -2.317284 -1.170600 -1.701531 0.999842 -1.013153 0.372581 -0.648693 -0.090355 -2.090458 -1.301961 0.481301 -0.604118 0.576286 1.071548 0.395002 0.842662 1.527079 -0.946925 0.365854 -0.091536 0.849628 0.447526 -0.954029 -0.991376 1.412177 -1.283469 0.060888 1.767142 -0.735043 0.447468 -0.069882 0.789383 -1.210430 1.917746 0.324937 -0.422187 1.905609 1.493086 1.921657 0.532538 -0.746764 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_create_storage(unsigned long) = 0.943651 -0.544304 4.233679 2.946711 -1.585250 0.144121 -0.193899 -2.194211 1.584191 0.183716 -0.692481 0.736634 -0.802153 0.788170 -0.348927 2.144865 -3.723479 -0.509872 -0.845893 -2.226930 -1.226516 -0.230295 0.665869 -0.068249 1.934686 1.901349 -1.041391 -0.092392 0.312936 -2.585936 0.730340 -0.647358 0.851594 0.546503 0.937447 -4.741783 2.726361 1.197364 -1.172834 -1.688274 1.163074 -0.730079 -0.121582 -0.941006 -0.855200 0.626537 0.070235 1.950849 1.600218 1.246689 -0.139329 0.820530 1.805691 3.963375 -0.725440 1.032801 0.982121 -0.856897 -0.630501 0.308084 0.413772 0.107153 0.260900 -0.072713 0.696231 -2.766437 -0.684993 -1.208554 -0.686980 1.467703 0.002867 -1.413731 -1.731864 -1.404862 -1.456227 -0.599685 -4.789233 2.694042 2.181375 -2.447674 0.768645 0.217447 -0.181750 0.528436 0.559412 0.328115 1.882648 0.775603 0.211987 0.336936 0.572860 -1.593155 1.602568 -1.516416 -1.205509 -4.622359 1.213940 -2.865284 -1.930468 1.039512 1.932015 -1.211406 -0.185469 -1.283415 0.517632 0.491929 -1.003145 -1.011228 0.481909 0.241474 0.326491 -0.287749 -0.352385 -0.068600 -0.045329 0.581796 -2.874182 1.510744 0.017364 0.455241 0.116327 1.544569 0.980905 -0.772093 -0.257774 1.130803 -1.143401 2.784576 -0.633700 1.763052 -0.823170 2.128047 -0.146708 1.880255 1.583713 -1.059574 -0.462493 -0.385092 -1.135473 0.771998 -1.902595 0.628856 -0.738476 1.828703 1.653148 -0.612002 -1.813017 -0.800118 -2.054782 -2.527130 0.582252 -1.009269 -1.686542 1.226732 1.401092 1.589888 1.658570 0.178659 -1.583136 -0.230174 -0.690758 0.172204 1.885133 0.443125 1.410289 -1.118249 -0.392192 0.829696 0.086749 1.074868 0.146483 0.108244 0.826545 -1.608390 0.345775 1.457945 1.346916 -0.425524 1.370593 2.000231 2.834485 -0.392555 -0.182971 1.520269 -1.234578 -0.376084 0.719289 -1.505918 0.584235 0.728629 0.858604 1.941519 -0.002918 0.150472 0.369753 -0.363302 0.279041 -0.674135 -0.368290 -0.790167 -0.452265 -0.561347 1.009703 -1.307966 -0.370003 -1.130697 -1.566483 2.382135 -3.457024 -0.475821 2.844837 -1.651857 1.029255 -1.467098 3.218882 -1.336797 1.124171 -0.455319 -0.541075 0.060894 -1.048948 -2.299006 0.981469 0.600630 -0.006206 -0.344324 2.053395 1.258496 0.054358 -0.686623 2.132307 -1.518810 2.649808 -0.740603 2.253633 -0.944340 0.022191 -0.447539 -0.088235 -1.494350 -1.079342 1.100500 1.795817 -0.392716 1.567788 0.812791 0.750151 2.225336 -1.311292 1.992589 -0.636684 0.319556 -1.270601 -1.086963 1.430118 1.192062 -0.318268 0.650285 -2.759435 -1.979048 -4.125060 -0.335046 -0.394988 -0.210797 0.824297 -0.986043 -0.767257 -1.161594 -1.878541 2.959682 -0.435950 -0.973496 1.396658 0.211408 1.479931 1.970680 -0.154485 -0.000372 -0.602304 0.351389 1.075254 -0.242381 -2.107704 2.628239 -1.348150 -0.254287 3.058534 -1.218925 1.018803 0.082770 1.757055 -1.588160 1.672488 0.068494 -1.294759 1.205215 3.152331 1.064159 0.375830 -1.212822 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n_a(int*, unsigned long, int const&, std::allocator&) = -0.128782 -0.487869 1.469865 1.033528 -0.071844 0.017889 0.784550 -0.507514 0.636147 0.145983 -0.142311 0.267324 -0.994484 0.290130 -0.424358 0.649343 -0.993559 -0.725631 -0.180081 -0.609012 -0.129926 -0.371775 0.810337 -0.015162 0.950836 0.079771 -0.473035 -0.830618 -1.031184 -0.392648 0.615119 -0.333917 0.645043 0.082922 -0.319968 -1.765015 0.692889 0.651569 -0.481584 -0.707878 0.889919 -0.639940 0.160529 -0.462342 -0.088060 0.081983 0.195464 0.410570 0.778342 0.410637 0.279886 0.155868 0.267719 1.496083 -0.865128 0.441994 0.281991 -0.164421 -0.386631 0.065424 0.083768 -0.055664 0.411980 0.212766 -0.193531 -0.908168 -0.311334 -0.695528 -0.852496 0.503149 -0.107082 0.120588 -0.734038 0.002807 -0.546842 -0.229099 -0.581419 0.758323 1.055983 -0.809774 0.738152 -0.071845 -0.033287 -0.191031 -0.031524 0.298909 0.056023 0.123979 0.043228 -0.475960 -0.701840 0.070653 0.065841 0.113860 -0.169114 -1.140548 0.685553 -0.262019 -0.921996 0.049270 0.444699 -0.442638 -0.357771 0.177926 -0.059575 0.671492 -0.526901 -0.781699 -0.200193 0.048885 0.270137 -0.154019 -0.030283 -0.391797 -0.468971 -0.737649 -1.025789 0.259608 -0.244317 -0.401730 -0.402306 0.616438 -0.425840 0.083288 0.157419 0.600945 -0.465499 0.949777 -0.035441 0.486284 0.461408 0.085212 -0.717223 -0.190541 0.703850 1.272257 -0.464282 0.091052 -0.712900 0.060206 -0.579352 -0.226988 0.268240 0.622518 0.684364 -0.843040 -0.566613 -0.139283 0.006935 -1.059950 0.212627 -0.512614 0.134330 0.320816 0.591857 0.347424 0.712277 1.495959 -0.589886 0.360622 0.079835 -0.484718 0.801340 0.236047 0.688598 -0.475236 -0.526989 0.179937 0.146639 0.335549 -0.165583 0.427240 0.138076 -1.029515 -0.137233 0.025480 0.329485 -0.385309 0.562752 0.639130 0.544743 -0.748758 0.127814 0.715928 -0.363544 -0.055093 0.266206 -0.939747 0.462263 0.209261 -0.335712 0.609408 0.115235 -0.596996 0.514908 -0.384845 0.197368 -0.565193 0.098829 -0.489985 -0.278189 -0.640958 -0.039859 -0.191290 -0.550473 -0.260128 -0.220937 0.984870 -0.335369 -0.507168 0.514628 -0.025104 0.204203 -1.321170 1.606055 -0.624495 0.406157 -0.323622 -0.094636 0.010474 0.417796 -0.692924 -0.036834 0.235291 -0.182814 0.517761 1.250366 0.570777 0.006281 -0.137869 0.965876 -0.103144 0.880317 -0.218167 0.733277 -0.261064 -0.563353 0.253514 -0.141963 -0.225739 -0.226864 0.248478 1.207826 0.488448 0.424978 0.817838 0.463334 1.222470 -0.409413 0.603611 -0.176062 0.864520 -0.198098 -0.291879 0.323496 0.478172 -0.188544 0.638042 -1.100153 -1.509379 -0.274976 -1.122313 0.370287 -0.307951 0.270696 -0.280867 -0.006971 -1.169524 -0.600892 -0.120175 -0.312001 0.754585 0.512808 0.099294 0.582899 0.747665 -0.622297 -0.038223 0.207175 0.635683 0.244434 -0.313464 -0.648211 0.610737 -0.870432 0.023419 1.038864 -0.477971 0.211467 -0.248044 0.894157 -0.736397 1.285539 0.175748 -0.438614 1.139797 0.733444 0.904740 0.302084 -0.401700 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_fill_n(int*, unsigned long, int const&) = -0.096811 -0.511075 1.473172 1.057692 -0.049441 0.018781 0.769333 -0.497249 0.628095 0.168868 -0.139141 0.305031 -0.971126 0.315205 -0.423086 0.681518 -0.977366 -0.737808 -0.183404 -0.578716 -0.144597 -0.365360 0.816214 -0.018665 0.948106 0.086005 -0.505775 -0.831986 -1.025446 -0.417604 0.613577 -0.331203 0.653500 0.072456 -0.316043 -1.764550 0.692433 0.650926 -0.472565 -0.731163 0.867851 -0.597199 0.137876 -0.466851 -0.088454 0.088742 0.195301 0.396802 0.750468 0.437881 0.275838 0.178498 0.284588 1.496892 -0.832853 0.445354 0.313970 -0.145759 -0.362442 0.041844 0.116801 -0.036490 0.409511 0.229894 -0.155854 -0.900130 -0.335260 -0.689849 -0.852833 0.509211 -0.092563 0.139783 -0.737136 0.001623 -0.524808 -0.206753 -0.564371 0.757923 1.073948 -0.813508 0.731149 -0.057224 -0.008895 -0.193467 -0.047311 0.294532 0.033576 0.155709 0.042654 -0.467887 -0.687771 0.056934 0.059889 0.113621 -0.188105 -1.141046 0.695155 -0.237282 -0.907398 0.074565 0.447573 -0.418517 -0.358225 0.157687 -0.049985 0.682951 -0.523580 -0.763387 -0.221851 0.029039 0.296316 -0.175998 -0.028015 -0.370950 -0.468552 -0.703320 -1.029840 0.238794 -0.226955 -0.419993 -0.382315 0.590650 -0.424987 0.091537 0.125934 0.577959 -0.461289 0.933058 -0.000957 0.504985 0.477128 0.089822 -0.714843 -0.177048 0.714068 1.273266 -0.464611 0.091100 -0.713793 0.071901 -0.547725 -0.210712 0.271558 0.598120 0.704844 -0.821206 -0.604877 -0.168549 0.020046 -1.044137 0.212917 -0.533638 0.151050 0.337768 0.594139 0.327050 0.707213 1.501075 -0.607486 0.382127 0.081145 -0.457830 0.772370 0.230278 0.658239 -0.461314 -0.547094 0.202147 0.168990 0.320502 -0.138051 0.396465 0.151006 -1.009945 -0.153723 0.043582 0.329213 -0.406576 0.544773 0.609371 0.543744 -0.726326 0.106657 0.705308 -0.348998 -0.055665 0.253591 -0.954788 0.466222 0.178633 -0.312307 0.609359 0.111514 -0.610266 0.541115 -0.385765 0.182733 -0.537110 0.122843 -0.490316 -0.277951 -0.645268 -0.024342 -0.180170 -0.514592 -0.243237 -0.197412 0.995670 -0.336390 -0.510130 0.498908 -0.024953 0.179312 -1.321184 1.587474 -0.606748 0.398992 -0.301900 -0.102481 0.014459 0.397488 -0.690158 -0.057488 0.256899 -0.180723 0.485366 1.255150 0.547500 -0.023210 -0.128592 0.942999 -0.092264 0.872965 -0.207517 0.733886 -0.257790 -0.563017 0.230065 -0.142356 -0.205543 -0.259712 0.226550 1.182351 0.467049 0.425812 0.812844 0.443231 1.218487 -0.434483 0.603755 -0.155774 0.873557 -0.211357 -0.268219 0.305696 0.476001 -0.213024 0.651887 -1.071746 -1.487004 -0.290643 -1.122985 0.336782 -0.288447 0.276993 -0.313822 -0.031674 -1.138319 -0.611376 -0.119228 -0.312032 0.735369 0.540991 0.099948 0.587940 0.733840 -0.631447 -0.034709 0.182992 0.613394 0.246604 -0.313875 -0.626526 0.592414 -0.845329 0.003876 1.040644 -0.461288 0.219875 -0.249668 0.896419 -0.706738 1.308554 0.191127 -0.441713 1.111332 0.709413 0.924506 0.283968 -0.411997 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n::__uninit_fill_n(int*, unsigned long, int const&) = -0.203144 -0.405952 1.242657 0.846938 -0.076932 0.037310 0.557130 -0.441388 0.527919 0.075616 -0.115003 0.245809 -0.799872 0.230155 -0.389792 0.490331 -0.839793 -0.612161 -0.190191 -0.544408 -0.156644 -0.307582 0.600491 0.031007 0.751324 0.079960 -0.438781 -0.567995 -0.884965 -0.393062 0.467702 -0.260710 0.528336 -0.011993 -0.216293 -1.545816 0.598819 0.583546 -0.394739 -0.595395 0.717828 -0.550267 0.140627 -0.378303 -0.156211 0.069262 0.147469 0.210763 0.636782 0.293790 0.242111 0.159970 0.173905 1.280633 -0.690141 0.382762 0.252106 -0.156452 -0.339759 0.039365 0.060275 -0.051874 0.343205 0.156510 -0.195926 -0.762686 -0.213280 -0.554023 -0.687393 0.434899 -0.116437 0.018555 -0.550072 -0.063820 -0.567117 -0.231659 -0.294395 0.595489 0.876007 -0.670526 0.602268 -0.075488 -0.012199 -0.081595 0.037111 0.238566 0.139071 0.105887 0.029245 -0.350571 -0.497188 0.114277 0.048893 0.209828 -0.169158 -0.888048 0.588035 -0.386609 -0.779884 0.066203 0.367994 -0.366539 -0.388767 0.097092 -0.030993 0.532026 -0.433799 -0.648502 -0.177709 0.096643 0.222419 -0.115977 -0.011947 -0.334776 -0.360230 -0.580044 -0.869939 0.251285 -0.173080 -0.295041 -0.363742 0.565175 -0.357815 0.053063 0.122611 0.523807 -0.414013 0.816725 -0.068693 0.391840 0.213451 0.081433 -0.621201 -0.252637 0.529373 0.985027 -0.433231 0.008375 -0.576465 0.038278 -0.506288 -0.184926 0.126505 0.524300 0.604387 -0.667838 -0.477694 -0.137720 -0.085076 -0.963308 0.112665 -0.420313 0.012541 0.323556 0.499050 0.349170 0.581606 1.276257 -0.436494 0.293882 0.059726 -0.473515 0.678871 0.094103 0.576222 -0.413285 -0.450084 0.186249 0.089073 0.340245 -0.099431 0.326783 0.102658 -0.843044 -0.134546 0.087726 0.308673 -0.227240 0.489963 0.571646 0.507225 -0.670542 0.114813 0.577126 -0.316280 -0.041143 0.196698 -0.739835 0.319948 0.217485 -0.295737 0.566175 0.092688 -0.490725 0.392974 -0.295370 0.212232 -0.514276 0.103503 -0.403330 -0.151507 -0.531833 -0.110351 -0.207590 -0.419382 -0.271297 -0.307548 0.837791 -0.412602 -0.504884 0.489641 0.053728 0.265977 -1.141450 1.189602 -0.521659 0.516473 -0.267285 -0.036102 0.006603 0.300105 -0.575855 0.061978 0.194138 -0.192360 0.393763 1.021993 0.479780 0.048254 -0.152078 0.811755 -0.103702 0.751487 -0.202139 0.622093 -0.208509 -0.493447 0.211526 -0.125016 -0.221009 -0.165423 0.241864 0.903237 0.425849 0.361157 0.644094 0.450326 1.000333 -0.338444 0.467822 -0.151621 0.694198 -0.185093 -0.277913 0.277982 0.487357 -0.126150 0.450705 -0.932338 -1.257842 -0.372719 -0.990196 0.314549 -0.227922 0.169656 -0.205401 -0.024845 -0.936585 -0.497803 0.067547 -0.253383 0.815450 0.405466 0.098375 0.508562 0.650000 -0.526158 -0.051964 0.180589 0.491921 0.195436 -0.225585 -0.606614 0.558263 -0.714967 0.025292 0.880108 -0.426354 0.222214 -0.086363 0.651084 -0.629029 1.077973 0.150041 -0.398430 0.940357 0.600554 0.753644 0.249682 -0.348133 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::fill_n(int*, unsigned long, int const&) = 0.051495 -0.681837 1.782254 1.335477 -0.139131 0.022187 0.995812 -0.588408 0.541776 0.039438 -0.215587 0.480219 -1.274206 0.421131 -0.755344 0.745854 -1.211412 -0.868144 -0.323614 -0.581902 -0.079580 -0.405548 1.073851 0.189815 1.243556 0.314155 -0.633387 -1.086278 -1.377546 -0.430294 0.675238 -0.270635 0.835274 0.213277 -0.427627 -1.872452 0.744379 0.984531 -0.530198 -0.936071 1.197854 -0.731471 -0.020419 -0.624427 -0.227401 0.069641 0.142530 0.567181 0.803306 0.501480 0.185885 0.325684 0.485357 1.669753 -0.861725 0.587715 0.514093 -0.029931 -0.344765 -0.077306 0.134549 0.038615 0.414180 0.202315 -0.134604 -1.063335 -0.502442 -0.827134 -0.948753 0.609001 -0.182626 0.230561 -0.937325 -0.000103 -0.728621 -0.080616 -0.457666 0.998785 1.238916 -1.031778 0.847806 -0.155141 -0.223298 -0.387440 -0.164457 0.347259 -0.205292 0.230691 0.269572 -0.661493 -0.935946 0.106328 0.076353 0.027003 -0.403968 -1.548093 0.967244 -0.506245 -1.152523 -0.030239 0.535187 -0.773572 -0.089495 0.295246 -0.246850 0.862343 -0.586941 -0.852292 -0.157784 0.120976 0.542064 -0.266438 -0.070043 -0.148990 -0.520478 -0.869298 -1.268554 0.420619 -0.259943 -0.510689 -0.246320 0.643220 -0.393863 0.213347 0.150857 0.647804 -0.496508 1.147844 0.012952 0.522701 0.644216 0.239721 -0.361664 -0.166980 0.901096 1.533861 -0.771929 0.176408 -0.790017 0.124524 -0.485590 -0.323281 0.270852 0.607286 0.659652 -1.068527 -0.732516 -0.247273 -0.140256 -1.252721 0.124698 -0.596265 0.123181 0.523065 0.690989 0.297174 0.763542 1.883752 -0.686944 0.284318 0.351605 -0.630967 0.838368 0.282397 0.705041 -0.550650 -0.847318 0.367763 0.073306 0.473020 -0.303696 0.766945 0.131272 -1.168790 -0.193927 0.115908 0.413038 -0.500056 0.767556 0.810046 0.274463 -0.637439 0.123893 0.788478 -0.552610 -0.057992 0.271177 -1.252735 0.588831 0.172705 -0.285900 0.828834 0.133502 -0.628236 0.856800 -0.507200 0.199554 -0.734179 0.247861 -0.646814 -0.364894 -0.927803 -0.042082 0.044097 -0.630481 -0.337760 -0.295998 1.240440 -0.533117 -0.542339 0.495530 0.146396 0.188368 -1.601948 1.791302 -0.662800 0.522634 -0.075883 -0.137235 0.188062 0.227256 -0.911153 -0.236615 0.311645 -0.228385 0.564463 1.451744 0.603137 -0.213967 -0.151290 1.087129 -0.138477 1.136391 -0.380267 0.832489 -0.231521 -0.828538 0.309889 -0.160699 -0.330338 -0.408076 0.261782 1.641079 0.495447 0.699729 1.030562 0.474267 1.592246 -0.514198 0.732716 -0.215244 1.009010 -0.274969 -0.365618 0.343658 0.624110 -0.212096 0.896417 -1.303038 -1.971186 -0.488294 -1.498962 0.517388 -0.730820 0.516357 -0.457549 -0.157707 -1.402510 -0.935701 -0.240859 -0.402929 0.969221 0.793221 0.124949 0.710672 0.818139 -0.784037 0.239214 0.333881 1.021050 0.368222 -0.386597 -0.709379 0.623266 -0.924945 -0.040646 1.385911 -0.552581 0.464870 -0.479974 1.080754 -0.886682 1.634120 0.207382 -0.697740 1.328507 0.794150 0.844826 0.425249 -0.526961 -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.587576 -0.963302 2.887110 1.983118 -0.188358 0.297826 0.819708 -1.212001 1.188413 0.673263 -0.412066 0.863473 -1.566694 0.357965 -0.440715 1.145888 -2.013010 -1.302521 -0.360596 -1.202020 -0.589630 -0.863002 0.819739 0.465070 1.533999 0.394015 -1.119282 -0.547020 -1.689705 -2.167167 0.363218 -0.543037 1.166252 -0.145793 0.072788 -3.524457 1.693733 1.495051 -0.653899 -1.536564 1.321532 -1.087436 0.126598 -0.403698 -0.461012 0.568716 0.511453 0.379774 1.403468 0.733757 0.567303 0.188754 0.622682 2.480709 -1.019417 1.051569 0.734188 -0.649256 -0.695397 0.052222 0.149898 -0.402996 0.890756 0.495096 -0.543346 -1.588839 -0.032634 -0.739131 -1.498278 1.169010 -0.104256 -0.657938 -1.143764 -0.516771 -1.341221 -0.505735 0.184633 1.250467 2.132887 -1.142225 1.511547 0.007442 0.152513 -0.118675 0.500366 0.186010 1.141245 0.284751 -0.323174 -0.722529 -0.786502 -0.425746 0.132369 1.042096 -0.437727 -1.283449 1.045012 -1.697145 -1.937017 0.354012 0.712296 -0.877686 -1.521003 0.019468 0.564302 0.984755 -0.536615 -1.549495 -0.466005 0.437471 -0.192932 -0.381205 -0.215149 -0.760823 -0.773489 -0.357043 -2.030739 0.493358 0.015654 -0.605010 -0.958606 1.400514 -0.470948 0.341506 0.217446 1.200278 -0.621726 1.546192 -0.149131 1.016139 0.291972 0.192872 -1.240617 -0.393500 0.838051 0.867170 -0.976440 -0.337833 -0.946887 0.284627 -1.187770 0.101782 -0.462305 1.717767 1.782809 -1.128081 -1.267326 -0.503693 -0.591070 -2.126782 0.325235 -0.966449 -0.544593 0.507857 1.198339 0.435204 1.049181 2.292462 -1.062541 0.685043 0.142347 -0.767769 1.462081 -0.212484 1.290518 -1.110407 -0.938350 0.721490 0.538475 0.789826 -0.241565 0.359590 0.313159 -1.627348 -0.748377 0.732993 0.575371 0.160271 1.169732 1.330771 2.551174 -1.351823 0.213757 1.112074 -0.574390 -0.174136 0.347212 -1.643441 0.632936 0.526887 0.035018 1.882105 0.132585 -1.087844 0.710871 -0.235712 0.466527 -1.376812 0.527448 -0.992986 0.258280 -0.806998 -0.726751 -0.721578 -0.814397 -0.880578 -0.745240 2.028025 -1.077855 -1.866022 1.618714 -0.560386 1.100956 -2.886449 2.199025 -1.174301 1.162472 -0.788589 -0.128236 -0.010045 0.176204 -1.196111 0.629614 0.495244 -0.386718 0.969779 2.070660 0.945304 0.357574 -0.355948 1.553462 -0.204280 1.526353 -0.531705 1.449510 -0.427785 -0.584427 -0.036200 -0.339289 -0.433122 -0.093991 0.292979 1.128578 0.998361 0.357626 1.157254 1.240941 1.804465 -0.813636 1.249115 -0.351052 1.349134 -0.632574 -0.872637 0.540649 1.028361 -0.204124 1.003894 -2.277752 -2.347513 -1.258833 -2.494363 0.090179 -0.050201 0.705314 -0.249451 -0.138749 -1.901785 -1.080315 1.350514 -0.134450 2.192909 0.931226 0.304398 1.220857 1.468341 -0.695409 -0.298626 -0.204475 0.601296 0.102356 -0.612478 -1.293644 1.314803 -1.460402 0.534296 1.866336 -1.061418 0.607555 -0.370204 1.103214 -1.641834 2.169526 0.480221 -0.951495 1.667515 1.094904 1.584477 -0.159935 -0.980343 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__size_to_integer(unsigned long) = -0.187385 -0.258035 0.340248 0.274763 0.079166 0.050257 0.222088 -0.014104 0.176531 0.220802 -0.059017 0.121074 -0.343717 0.059307 -0.045978 0.181484 -0.129869 -0.256980 0.010331 -0.045020 -0.075445 -0.198308 0.134316 0.040720 0.213654 0.007785 -0.133528 -0.158162 -0.360744 -0.228526 0.012430 -0.086116 0.178741 0.010373 -0.018401 -0.365777 0.117961 0.232688 -0.065644 -0.278760 0.154034 -0.150853 0.152938 -0.038511 0.049442 0.112319 0.178717 -0.020619 0.168118 0.146902 0.179914 -0.119039 0.098792 0.327159 -0.125651 0.168043 0.137436 -0.034791 -0.046543 -0.056297 0.048378 -0.121148 0.131841 0.105931 -0.111624 -0.107440 -0.119141 -0.144463 -0.247034 0.124306 -0.096819 0.028501 -0.256116 -0.116078 -0.107706 -0.093230 -0.342493 0.129023 0.372979 -0.231161 0.298157 0.086638 0.114372 -0.018784 0.055551 0.043017 0.006372 0.037896 -0.113934 -0.015195 -0.028874 0.014405 -0.074684 0.201173 -0.048183 -0.067077 0.189323 -0.008609 -0.285404 0.104554 -0.015597 -0.010825 -0.163686 0.127587 -0.014385 0.243899 -0.171034 -0.285999 -0.139864 -0.010896 0.124295 -0.047058 0.015920 -0.096569 -0.181045 -0.155546 -0.272415 -0.046982 -0.002429 -0.259527 -0.127947 0.204106 -0.111573 0.197633 0.050688 0.098028 -0.040547 0.348196 0.169713 0.141245 0.026325 -0.061515 -0.473732 -0.077286 0.155164 0.292098 -0.155822 0.094160 -0.089114 -0.028401 -0.078030 -0.025193 0.036408 0.196302 0.342164 -0.210209 -0.204751 -0.112882 -0.040917 -0.281422 0.090441 -0.166800 0.169795 0.071367 0.166589 0.079033 0.107868 0.582746 -0.205249 0.072888 -0.002316 -0.193946 0.111369 0.112734 0.172582 -0.146086 -0.168400 0.105107 0.202919 0.048356 0.070863 0.010298 0.047119 -0.223499 -0.005722 0.122936 0.081012 -0.104493 0.204699 0.112577 0.227914 -0.160521 0.000000 0.123839 0.010051 -0.005792 0.033935 -0.294220 0.205555 -0.009631 -0.098657 0.085298 0.024541 -0.137443 0.219419 -0.175020 0.082081 -0.217097 0.116644 -0.171789 -0.020613 -0.205205 0.007953 -0.056803 -0.133545 0.015163 0.073523 0.291259 0.036681 -0.092038 0.015728 0.089416 0.061963 -0.319919 0.443427 -0.148963 0.208231 -0.132306 -0.049008 0.003638 0.190668 0.064762 -0.100201 0.101302 -0.023139 0.077853 0.287550 0.095792 -0.046723 0.071478 0.232915 0.055148 0.122265 0.017602 0.128987 -0.005173 -0.060312 0.080628 -0.074601 0.057014 0.049325 -0.069160 0.302779 0.223273 -0.055316 0.203517 0.117482 0.233003 -0.114361 0.086018 -0.004309 0.407300 -0.143835 -0.066650 -0.041800 0.183715 -0.065248 0.096833 -0.264322 -0.346439 0.029698 -0.283926 -0.052920 0.060789 0.045136 -0.016849 0.010717 -0.215886 -0.153907 0.129852 -0.089512 0.268702 0.028626 0.030717 0.227785 0.184827 -0.097745 -0.108676 0.010532 0.058347 -0.016678 -0.012643 -0.062843 0.055368 -0.313297 0.027223 0.172500 -0.138835 0.034186 0.069898 0.210388 -0.229804 0.381564 0.112601 -0.103051 0.317568 0.223969 0.381817 -0.066337 -0.131576 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__fill_a(int*, int*, int const&) = -0.239584 -0.365904 1.249387 0.834160 -0.089065 0.027102 0.540120 -0.508608 0.664082 0.080845 -0.141693 0.154989 -0.818371 0.248842 -0.383493 0.571486 -0.910971 -0.636680 -0.132527 -0.585262 -0.117256 -0.356578 0.706318 -0.080910 0.727329 0.083000 -0.418970 -0.554346 -0.811635 -0.445163 0.599807 -0.386351 0.539436 0.036833 -0.314028 -1.597496 0.692043 0.493836 -0.466895 -0.562950 0.728322 -0.597665 0.173832 -0.427964 -0.160041 0.070411 0.130161 0.239764 0.727539 0.298087 0.299557 0.131506 0.160503 1.274101 -0.863146 0.365875 0.160937 -0.178661 -0.415107 0.093580 0.075877 0.004946 0.413583 0.290530 -0.239119 -0.823505 -0.207182 -0.588260 -0.822600 0.473148 -0.199533 0.124686 -0.575397 0.050113 -0.522448 -0.250795 -0.294744 0.585125 0.961267 -0.615545 0.634655 -0.077836 0.010912 -0.117227 0.013310 0.283739 0.195555 0.105019 -0.055327 -0.383465 -0.453910 0.131149 0.100191 0.205436 -0.060359 -0.877568 0.546276 -0.362557 -0.772906 0.044192 0.405871 -0.277656 -0.444366 0.090119 0.052752 0.541192 -0.481915 -0.721275 -0.109602 0.030496 0.169590 -0.116387 -0.025008 -0.425197 -0.397979 -0.598263 -0.881832 0.140868 -0.252969 -0.362156 -0.358412 0.562134 -0.384664 -0.023472 0.137444 0.557030 -0.440260 0.821405 -0.143899 0.466635 0.259361 0.098604 -0.605532 -0.249779 0.567863 1.008237 -0.372117 -0.012911 -0.641130 0.013890 -0.606355 -0.273195 0.147834 0.475258 0.657196 -0.674302 -0.440840 -0.060723 -0.034482 -1.089523 0.173887 -0.493921 0.027921 0.312140 0.549095 0.309218 0.722762 1.313871 -0.499042 0.343573 -0.019468 -0.427349 0.806762 0.122324 0.654333 -0.397391 -0.430369 0.162965 0.104449 0.285318 -0.092342 0.238601 0.085541 -0.930128 -0.107803 0.097486 0.320691 -0.233390 0.431221 0.503899 0.529439 -0.686827 0.192881 0.674361 -0.232926 -0.016701 0.211620 -0.787247 0.363753 0.242205 -0.279436 0.477510 0.097367 -0.558008 0.297768 -0.300047 0.233906 -0.540272 0.052297 -0.400730 -0.125261 -0.539449 -0.079026 -0.226949 -0.496980 -0.232172 -0.238091 0.817645 -0.385979 -0.484715 0.570355 0.010968 0.313739 -1.132413 1.207304 -0.601649 0.547487 -0.345745 -0.021485 -0.019433 0.301545 -0.587346 0.040866 0.214289 -0.124907 0.479572 1.037565 0.560315 0.109718 -0.126980 0.873568 -0.073109 0.752639 -0.162448 0.649020 -0.219516 -0.483903 0.290906 -0.160896 -0.225615 -0.192870 0.285754 0.945736 0.509367 0.332706 0.749295 0.418417 1.038315 -0.357145 0.517150 -0.157221 0.707927 -0.128329 -0.237439 0.292921 0.471496 -0.192425 0.514866 -0.961136 -1.334504 -0.360611 -0.961919 0.284793 -0.204448 0.181255 -0.207348 0.105626 -0.976324 -0.425722 0.075733 -0.297290 0.866907 0.383659 0.126621 0.474281 0.716946 -0.572546 -0.167780 0.145632 0.492020 0.167323 -0.189713 -0.672711 0.605542 -0.748924 0.038348 0.853130 -0.463937 0.068929 -0.123146 0.679813 -0.600383 1.095383 0.196162 -0.291580 1.071116 0.528850 0.801653 0.357242 -0.344831 -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.472685 -0.913097 2.419787 1.755121 0.115143 0.297826 0.943620 -0.995322 1.338116 0.986864 -0.379943 0.603115 -1.493813 0.286181 0.028741 1.131209 -1.570534 -1.297853 -0.085216 -0.942120 -0.495697 -0.979221 0.741345 0.193894 1.290190 0.222660 -0.873792 -0.602155 -1.566297 -1.836370 0.456208 -0.597774 1.025142 0.229533 0.097639 -2.760613 1.468313 1.152001 -0.516203 -1.411816 0.965648 -0.965268 0.256158 -0.252132 0.262865 0.716668 0.626619 0.636722 1.331593 0.753489 0.662835 -0.186338 0.342524 1.813745 -1.071907 0.911418 0.539725 -0.601273 -0.547772 0.175577 0.175042 -0.459883 0.930682 0.733275 -0.673998 -1.261985 0.045016 -0.678299 -1.533852 1.081239 0.171962 -0.423019 -1.191883 -0.379093 -0.681136 -0.436954 -0.453602 1.014078 2.063252 -0.839172 1.525881 0.245766 0.512904 -0.270405 0.511274 0.082013 1.139104 0.190186 -0.653091 -0.685735 -1.177394 -0.685717 -0.043115 0.923141 -0.156582 -0.595246 0.694522 -0.834792 -1.697879 0.314728 0.485742 -0.442819 -1.597155 0.402376 0.735116 0.922501 -0.355492 -1.524087 -0.521777 0.226516 -0.504695 -0.352125 -0.204362 -0.916320 -0.930617 -0.415197 -1.733453 0.082911 0.018665 -0.776991 -0.999001 1.215063 -0.660607 0.383348 0.226817 0.904255 -0.405038 1.207527 0.099823 0.926877 0.829794 -0.246453 -1.712934 -0.109731 0.774686 1.092645 -0.612559 -0.134258 -0.790899 0.221635 -1.109041 0.118346 -0.251406 1.603570 1.736147 -1.130136 -1.145545 -0.430260 -0.045946 -1.568026 0.622231 -0.951836 -0.033485 -0.107090 1.108692 0.362569 0.952843 2.116699 -1.257107 0.845176 -0.021409 -0.352570 1.236597 0.246977 1.194151 -0.977188 -0.707558 0.511399 0.781326 0.300151 -0.127487 0.012995 0.315960 -1.551437 -0.746004 0.557442 0.263413 0.018153 0.993043 0.979130 2.407073 -1.383209 0.234105 1.029899 -0.220504 -0.188009 0.407439 -1.542445 0.848926 0.318866 0.160535 1.485514 0.090629 -1.102169 0.537511 -0.163557 0.345036 -1.145815 0.413442 -0.902392 0.134644 -0.666303 -0.363147 -0.746988 -0.872525 -0.524094 -0.113381 1.742880 0.000581 -1.741009 1.314828 -0.895023 0.830328 -2.510244 2.078749 -1.080145 0.440612 -1.001215 -0.157453 -0.171917 0.476432 -0.829915 0.393009 0.489730 -0.231202 1.072049 1.874571 0.809093 0.351134 -0.081975 1.289827 -0.007125 1.041543 -0.319813 1.230548 -0.389870 -0.200935 -0.029375 -0.374732 -0.048308 0.057407 -0.067861 1.082604 1.124216 0.031908 1.112920 0.921835 1.377946 -0.730799 1.110208 -0.161782 1.347872 -0.524816 -0.622186 0.340407 0.481410 -0.353444 0.988873 -1.937777 -1.922897 -0.141446 -2.204681 -0.148054 0.231805 0.642565 -0.049582 0.055222 -1.749860 -0.759222 0.803179 -0.030051 1.793341 0.624620 0.221878 1.028401 1.298954 -0.661308 -0.518801 -0.273569 0.317708 -0.156340 -0.668092 -0.944653 1.070276 -1.339740 0.619480 1.453887 -0.920795 0.244037 -0.694753 1.405233 -1.428214 1.944426 0.549033 -0.643248 1.450896 0.837369 1.922383 -0.283488 -0.854725 -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.820057 -0.520637 3.424532 2.290641 -0.914279 -0.117717 0.547957 -1.593864 1.283391 -0.364595 -0.669152 0.590274 -1.214291 0.813812 -1.292857 1.621245 -2.902459 -0.964133 -0.640710 -1.528881 -0.478377 -0.285821 1.494484 -0.165925 1.939519 1.269408 -0.979493 -0.837049 -0.877629 -1.341152 1.155568 -0.705631 0.870883 0.407804 -0.105322 -2.991973 1.963723 1.094072 -1.112516 -1.293798 1.604936 -0.936897 -0.260798 -1.269371 -0.452039 0.236675 0.018351 1.644722 1.472344 0.959807 -0.056278 0.795964 1.019096 2.895957 -1.334812 0.755595 0.713851 -0.294809 -0.564696 0.158130 0.322693 0.271864 0.266059 0.231000 0.288880 -2.316059 -0.765157 -1.342306 -0.896575 1.220225 -0.289046 -0.096897 -1.500541 -0.317682 -1.346227 -0.143123 -2.459252 2.032148 1.923261 -1.824460 0.767949 -0.149413 -0.241959 -0.147981 -0.198926 0.578362 0.525794 0.609575 0.431129 -0.606636 -0.672477 -0.370879 0.863758 -1.038380 -0.719396 -3.565958 1.351190 -2.116754 -1.625232 0.178404 1.537952 -1.185858 0.390337 -0.129002 0.009448 0.778517 -0.860969 -0.925688 0.612805 -0.026660 0.635194 -0.205945 -0.073305 -0.188756 -0.343654 -0.369384 -2.331398 1.059244 -0.481962 -0.079594 0.159275 1.019234 0.204910 -0.536289 -0.028046 1.069146 -0.997630 2.054979 -0.472079 1.263562 0.058205 1.436021 0.108049 0.972630 1.614256 0.655187 -0.933628 0.145636 -1.296339 0.395249 -1.439076 -0.400079 -0.339932 0.930992 0.790026 -1.402897 -1.400259 -0.392842 -1.147025 -2.160505 0.315390 -0.912419 -1.030251 0.810679 1.173597 1.087143 1.681107 1.539455 -1.199900 -0.024399 -0.008106 -0.291128 1.699678 0.244594 1.254656 -0.834123 -0.738550 0.653516 -0.203693 0.726320 -0.225808 0.667537 0.524691 -1.958045 0.288886 0.781481 1.008812 -0.653759 1.096110 1.451436 0.437567 -0.558978 0.051057 1.597457 -0.943677 -0.310907 0.691363 -1.620124 0.805510 0.480839 0.519529 1.286485 0.234740 -0.350788 0.705301 -0.537572 0.324252 -0.775920 -0.302101 -0.711283 -0.596497 -0.949085 0.814483 -0.464836 -0.625192 -0.686016 -1.164960 1.880397 -2.122247 -0.467551 1.748649 -0.496379 0.704056 -1.641838 2.343001 -1.230515 1.102395 0.156273 -0.058342 0.242878 -0.664912 -2.090477 0.161553 0.478081 -0.007098 0.431205 1.816816 1.233062 -0.108246 -0.486314 1.907198 -1.014169 2.335904 -0.520238 1.505080 -0.657083 -0.984807 0.255083 -0.090394 -1.282745 -1.058561 0.970075 2.263389 0.044023 1.641089 1.524239 0.436980 2.582477 -1.069912 1.455257 -0.547828 0.727740 -0.671144 -0.810613 1.124112 0.929231 -0.455444 1.072639 -2.251602 -2.748525 -2.529286 -1.332857 0.455989 -1.353157 0.740628 -1.021614 -0.379275 -1.568372 -1.542119 0.966543 -0.502763 0.341835 1.379950 0.071418 1.007248 1.518977 -0.994578 0.242805 0.101848 1.280096 0.974684 -0.357332 -1.823021 1.832264 -1.257485 -0.436397 2.717828 -1.191838 0.623089 -0.432684 1.522275 -1.281039 1.974931 0.176381 -1.141915 1.697847 1.816640 1.058417 1.091124 -0.940895 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() const = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() const = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -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.958362 -0.648965 3.658355 2.525559 -0.864385 -0.135354 0.744943 -1.639459 1.375515 -0.248458 -0.690121 0.687204 -1.362188 0.923938 -1.324880 1.844607 -3.023839 -1.101957 -0.637245 -1.532893 -0.481002 -0.337184 1.716085 -0.219100 2.133571 1.281689 -1.079226 -1.102408 -1.012373 -1.390650 1.299901 -0.773411 1.004503 0.481787 -0.201147 -3.210242 2.056880 1.160807 -1.181323 -1.452851 1.732892 -0.941088 -0.286203 -1.362428 -0.384675 0.262913 0.066019 1.816993 1.558155 1.131142 -0.026598 0.837122 1.146647 3.113024 -1.445249 0.821547 0.807695 -0.265453 -0.563190 0.137029 0.412253 0.306423 0.329896 0.321512 0.366628 -2.445464 -0.911063 -1.472452 -1.062350 1.300600 -0.250654 0.043526 -1.690702 -0.253423 -1.281884 -0.095872 -2.712180 2.194183 2.139168 -1.971176 0.889827 -0.116528 -0.214263 -0.262289 -0.299134 0.629952 0.397852 0.691127 0.443964 -0.715878 -0.848991 -0.441940 0.868804 -1.134826 -0.757334 -3.819452 1.467913 -1.942689 -1.738148 0.212061 1.620406 -1.213716 0.420425 -0.088646 0.000000 0.940900 -0.947428 -1.022260 0.547006 -0.114111 0.735270 -0.287944 -0.087106 -0.204083 -0.451556 -0.458330 -2.495350 1.025939 -0.518475 -0.222809 0.160693 1.018921 0.138592 -0.489565 -0.056209 1.100311 -1.040696 2.154593 -0.369858 1.395407 0.337602 1.449021 0.016787 1.061712 1.809169 0.944436 -0.965336 0.228409 -1.434560 0.440567 -1.448886 -0.409588 -0.191562 0.980414 0.910964 -1.534431 -1.565706 -0.452937 -1.028793 -2.225522 0.415932 -1.046767 -0.875022 0.841844 1.270968 1.044649 1.801649 1.769389 -1.388492 0.085351 0.014623 -0.248555 1.764207 0.375000 1.306314 -0.868231 -0.855666 0.691624 -0.101424 0.691531 -0.236896 0.706443 0.585969 -2.105377 0.253219 0.755439 1.029081 -0.854363 1.132941 1.459404 0.473086 -0.592330 0.021743 1.715020 -0.961848 -0.326002 0.735641 -1.850119 0.955743 0.411359 0.526363 1.329621 0.249845 -0.483598 0.879650 -0.628887 0.280117 -0.770671 -0.258746 -0.798601 -0.722703 -1.066830 0.916009 -0.426297 -0.684521 -0.641065 -1.031299 2.049077 -2.047057 -0.475759 1.742195 -0.574909 0.592500 -1.821586 2.722292 -1.297858 0.977748 0.143380 -0.132566 0.254720 -0.587838 -2.202014 0.021434 0.562450 0.006630 0.490414 2.054756 1.277506 -0.209201 -0.453551 2.015564 -0.991850 2.450030 -0.514966 1.617482 -0.703090 -1.054041 0.250174 -0.108126 -1.247083 -1.185698 0.932832 2.517027 0.063823 1.706579 1.687993 0.409781 2.796647 -1.191021 1.591335 -0.531693 0.916135 -0.710668 -0.777259 1.134025 0.915705 -0.566798 1.287666 -2.362603 -2.955312 -2.462876 -1.466318 0.444717 -1.394179 0.854262 -1.162989 -0.410807 -1.738901 -1.666175 0.780715 -0.561443 0.242537 1.543658 0.073644 1.091668 1.588992 -1.109018 0.263574 0.080069 1.379280 1.028023 -0.446034 -1.821249 1.848092 -1.362746 -0.477358 2.880144 -1.210090 0.629158 -0.597614 1.769873 -1.329089 2.228527 0.232847 -1.188296 1.840355 1.901469 1.249046 1.107294 -1.015054 -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.745694 -0.438719 3.197324 2.104050 -0.919368 -0.098297 0.320537 -1.527738 1.175164 -0.434963 -0.641845 0.568760 -1.019680 0.753837 -1.258291 1.462233 -2.748693 -0.850663 -0.650820 -1.464276 -0.505095 -0.221629 1.284639 -0.119756 1.740007 1.269597 -0.945239 -0.574426 -0.731410 -1.341566 1.008151 -0.632424 0.754176 0.312890 -0.001648 -2.772774 1.869653 1.026049 -1.025671 -1.181315 1.432846 -0.847224 -0.280700 -1.185332 -0.520190 0.223954 -0.029645 1.444914 1.330783 0.842959 -0.094053 0.800066 0.925281 2.680507 -1.159826 0.696363 0.683966 -0.286840 -0.517824 0.132071 0.299201 0.275654 0.197285 0.174744 0.286485 -2.170576 -0.667103 -1.200801 -0.731471 1.151975 -0.298401 -0.198930 -1.316575 -0.384309 -1.366503 -0.145684 -2.172227 1.869314 1.743284 -1.685212 0.632065 -0.153055 -0.220872 -0.038545 -0.130292 0.518018 0.608842 0.591482 0.417145 -0.481247 -0.467825 -0.327255 0.846811 -0.942412 -0.719439 -3.313458 1.253673 -2.241344 -1.483120 0.195337 1.461247 -1.109759 0.359341 -0.209835 0.038030 0.639051 -0.767866 -0.792491 0.635289 0.021098 0.587476 -0.167903 -0.054970 -0.131735 -0.234912 -0.211778 -2.175548 1.050922 -0.410724 0.027095 0.197839 0.967970 0.272935 -0.566514 -0.062853 0.992007 -0.946144 1.921928 -0.505330 1.169118 -0.189752 1.432242 0.204071 0.910535 1.439779 0.367958 -0.902577 0.062959 -1.159904 0.373321 -1.366012 -0.358017 -0.481667 0.832774 0.710049 -1.227694 -1.311339 -0.391279 -1.239037 -2.063863 0.215427 -0.820118 -1.152040 0.813419 1.080790 1.088889 1.550436 1.319753 -1.046508 -0.091140 -0.028214 -0.279924 1.577208 0.102650 1.142281 -0.772172 -0.661646 0.659828 -0.261260 0.731017 -0.159657 0.567079 0.489272 -1.771573 0.291572 0.843728 0.988000 -0.495690 1.023320 1.383952 0.400048 -0.480763 0.038055 1.458655 -0.896412 -0.296957 0.621856 -1.420213 0.663194 0.489062 0.559504 1.243252 0.212193 -0.244516 0.583367 -0.448096 0.339116 -0.725003 -0.297427 -0.624627 -0.469815 -0.839960 0.743991 -0.481135 -0.494102 -0.697184 -1.251571 1.733318 -2.199480 -0.465268 1.723663 -0.417548 0.765830 -1.462118 1.926548 -1.127680 1.212711 0.212610 0.000192 0.239007 -0.782603 -1.973408 0.260366 0.436928 -0.016643 0.307206 1.588442 1.142066 -0.066273 -0.500523 1.753076 -1.014727 2.207074 -0.504210 1.393897 -0.604528 -0.914901 0.213095 -0.073446 -1.278015 -0.997120 0.963460 1.958800 -0.018576 1.577269 1.350495 0.423972 2.360339 -0.998942 1.319469 -0.523387 0.557417 -0.658138 -0.796647 1.078599 0.938416 -0.393050 0.885303 -2.083787 -2.496989 -2.627029 -1.200740 0.400252 -1.273127 0.639588 -0.946148 -0.397148 -1.335434 -1.439030 1.154265 -0.444145 0.402700 1.272608 0.070499 0.932912 1.421312 -0.898439 0.229064 0.075263 1.136334 0.925686 -0.269453 -1.781424 1.779791 -1.102020 -0.434524 2.559073 -1.140220 0.633836 -0.271003 1.279203 -1.173671 1.767365 0.150674 -1.101730 1.498407 1.683751 0.907321 1.038722 -0.887327 -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.245008 -0.669797 4.955683 3.427953 -1.709514 -0.122290 0.320583 -2.417161 1.627769 -0.783410 -0.842457 0.904233 -1.477038 1.185732 -1.345829 2.268687 -4.474651 -1.093100 -1.128515 -2.283710 -0.856101 -0.251132 1.873359 0.009196 2.617544 2.335837 -1.496005 -0.837800 -0.672693 -1.964132 1.668124 -0.861099 1.383194 1.069698 0.179165 -5.061396 2.905266 1.525375 -1.527777 -1.853285 2.124160 -1.185338 -0.445333 -1.913476 -1.196373 0.390555 -0.185121 2.178623 1.972106 1.225140 -0.443816 1.285196 1.609039 4.128730 -1.528498 1.011276 1.097991 -0.639141 -0.840083 -0.008356 0.487580 0.532608 0.412366 0.187779 0.520856 -3.442667 -0.996113 -1.944629 -1.277816 1.796850 -0.220999 -0.414835 -2.036274 -0.785866 -1.964641 -0.257842 -3.084425 3.149033 2.598643 -2.685211 0.886735 -0.300135 -0.574054 -0.037663 -0.104009 0.780360 1.081504 0.939167 0.776270 -0.500104 -0.587247 -1.009489 1.515946 -1.553037 -1.207630 -5.216965 1.780284 -3.286059 -2.200365 0.411042 2.342854 -1.754130 0.232888 -0.768974 0.124989 1.021220 -1.108613 -1.119205 0.866536 0.114022 0.868153 -0.348909 -0.383772 0.169163 -0.400647 -0.350816 -3.397529 1.758658 -0.532109 0.218238 0.486440 1.470358 0.403649 -0.956606 -0.184116 1.463513 -1.565366 3.109267 -0.863517 1.739576 -0.087382 2.143001 0.885803 1.295680 2.150960 0.729421 -1.220946 -0.430596 -1.821720 0.673392 -2.098815 -0.428067 -0.392082 1.383719 1.366864 -1.564620 -2.051202 -0.674052 -2.057264 -3.357739 0.287254 -1.316775 -1.517019 1.820759 1.647133 1.579397 2.323588 1.705833 -1.694674 -0.046018 -0.136792 -0.363510 2.424652 0.539147 1.663166 -1.176777 -0.985252 1.074950 -0.578542 1.324998 -0.229169 0.856518 0.754577 -2.484081 0.132864 1.405466 1.552865 -0.609490 1.458598 2.209694 1.208036 -0.529835 0.030014 2.160701 -1.457757 -0.463103 0.985518 -2.085383 0.895436 0.718020 0.616812 2.096309 0.168857 -0.401312 0.824726 -0.563434 0.407199 -1.035980 -0.365965 -0.928801 -0.495945 -1.387436 0.908067 -0.798116 -0.755333 -1.213821 -1.867388 2.791598 -3.574144 -0.821816 2.810249 -0.934300 1.293627 -2.366647 3.101463 -1.647620 1.750854 0.091425 -0.330332 0.389949 -1.575454 -3.144788 0.525850 0.680467 0.007669 0.052939 2.550778 1.713049 -0.252198 -0.871633 2.607724 -1.409495 3.528323 -0.887546 2.349031 -0.978433 -1.018253 0.163124 -0.090981 -1.947682 -1.612131 1.429943 2.965478 -0.110133 2.616817 1.928701 0.691697 3.497836 -1.552899 2.062305 -0.742893 0.718940 -1.003376 -1.199286 1.703295 1.669858 -0.562474 1.362899 -3.151405 -3.750569 -4.219117 -1.707265 0.348562 -1.532130 1.130649 -1.433081 -0.751017 -1.911780 -2.215149 1.794293 -0.683861 0.641419 1.981333 0.107977 1.519003 2.231690 -1.306949 0.307514 0.153781 1.671171 1.469505 -0.265285 -2.896593 2.863726 -1.540141 -0.631954 4.063318 -1.682209 1.153849 -0.658984 2.382249 -1.765801 2.739650 0.144253 -1.807675 2.150335 2.633318 0.988410 1.581402 -1.376735 -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.923186 -0.437325 3.709398 2.396684 -1.416085 -0.088245 0.165101 -1.845467 1.290790 -1.441916 -0.745849 0.516257 -1.248489 0.876226 -1.572120 1.169268 -3.604470 -1.026284 -0.976755 -1.759538 -0.569614 -0.269809 1.383343 0.212055 1.855881 1.957065 -1.144908 -0.404601 -1.016172 -0.626688 1.647245 -0.597676 0.938209 1.005838 0.165407 -3.596653 2.053350 1.153212 -1.155406 -1.342878 1.648417 -1.305042 -0.388570 -1.913250 -0.902218 0.105496 -0.284003 1.874932 1.492925 0.453518 -0.719843 1.029222 0.516320 3.114960 -1.409412 0.711574 0.840911 -0.307849 -0.593562 0.038431 0.253777 0.489652 0.231394 0.202272 -0.011592 -2.581006 -0.570265 -1.745779 -0.824124 1.510774 -0.110065 -0.047808 -1.453218 -0.490638 -2.064334 -0.158556 -1.726115 2.485664 1.934967 -2.122697 0.585795 -0.391274 -0.224373 0.053588 0.023828 0.663759 0.999860 0.629668 0.624127 -0.526193 -1.331123 -0.364142 0.965234 -1.454372 -0.856412 -4.004992 1.341427 -3.284405 -1.707510 -0.005602 1.704588 -1.427948 0.460229 -0.211218 0.087132 0.656951 -0.771402 -0.820275 0.897590 0.306904 0.544233 -0.067208 0.018444 0.277906 -0.184070 -0.854235 -2.624807 1.472133 -0.462188 0.301595 0.562138 1.325585 -0.058147 -0.853649 -0.043380 1.005101 -1.275437 2.444508 -0.836650 0.881603 -0.239166 1.415357 0.891922 0.827700 1.513349 1.178173 -1.199821 -0.263620 -1.261119 0.445873 -1.753298 -0.923217 -0.510245 0.697288 0.301090 -1.595102 -1.453845 -0.543450 -1.675619 -2.685121 -0.072529 -0.891995 -1.487067 1.420441 1.283370 1.845438 1.826887 1.593390 -1.096338 -0.045139 0.034601 -0.426757 1.859811 0.336531 1.300779 -0.907527 -0.842794 0.818089 -0.992218 1.124789 -0.234734 0.714184 0.409506 -2.154184 0.041067 1.006808 1.350733 -0.184865 1.318808 1.866085 -0.444870 -0.926971 0.240169 1.711808 -1.168001 -0.387684 0.784786 -1.467219 0.745624 0.687352 0.417095 1.551538 0.138967 -0.300837 0.465502 -0.295950 0.552267 -0.945635 -0.634974 -0.644803 -0.485411 -1.334756 0.903686 -0.598402 -0.669245 -1.097441 -1.964298 2.074923 -2.907800 -0.850921 2.234937 -0.266923 1.465372 -1.872446 1.433904 -1.282879 1.931826 0.458970 0.080344 0.340185 -1.460074 -2.542802 0.489415 0.448595 -0.183763 0.152821 1.710226 1.441422 0.032717 -0.633907 2.063551 -1.138698 2.672631 -0.834292 1.566451 -0.728899 -1.253533 0.498908 -0.121237 -1.537709 -1.105981 1.409754 2.586536 0.157928 2.549659 1.825355 0.663667 2.700314 -1.100262 1.093081 -0.702133 0.354168 -0.700689 -1.001655 1.264678 1.301220 -0.392091 0.814123 -2.462553 -3.462340 -3.444081 -1.686304 0.687705 -2.018650 0.576514 -0.912233 -0.484401 -1.684351 -1.607040 0.907448 -0.597286 1.280200 1.454853 0.013516 1.131712 1.850676 -1.508733 0.314754 0.844182 1.698626 1.022510 -0.039421 -2.782068 2.376794 -1.191022 -0.447433 3.423970 -1.482847 0.959799 -0.463459 1.881951 -1.380568 2.239432 0.190045 -1.769067 1.592604 1.832252 0.700959 1.962459 -1.080537 -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.298478 -0.230277 1.366690 0.927472 -0.368995 -0.031109 0.082424 -0.627640 0.554589 -0.067672 -0.321834 0.236980 -0.447541 0.332267 -0.485793 0.706356 -1.137208 -0.372443 -0.242594 -0.580419 -0.235057 -0.137626 0.531424 -0.095222 0.726031 0.608175 -0.390015 -0.163645 -0.260400 -0.711469 0.354466 -0.304944 0.299286 0.194600 0.051010 -1.004052 0.817831 0.443227 -0.430176 -0.544881 0.546605 -0.322853 -0.065526 -0.469409 -0.136625 0.186837 0.038743 0.585697 0.565950 0.424873 0.036519 0.243013 0.463724 1.027057 -0.449807 0.313502 0.307011 -0.117912 -0.180210 0.026507 0.162648 0.097669 0.072906 0.123684 0.130604 -0.897030 -0.347934 -0.490139 -0.308901 0.498733 -0.215529 -0.083581 -0.634011 -0.250779 -0.505222 -0.063860 -1.281116 0.773602 0.806795 -0.729104 0.292689 0.021426 -0.029663 -0.007141 -0.043417 0.208066 0.262519 0.280688 0.103948 -0.095091 -0.003922 -0.199119 0.373264 -0.385208 -0.315289 -1.302369 0.535740 -0.942153 -0.635191 0.148281 0.599873 -0.387664 0.181530 -0.036909 0.014002 0.289984 -0.344081 -0.359348 0.321168 -0.051658 0.313712 -0.071518 -0.039796 -0.041773 -0.126829 0.015846 -0.948446 0.377198 -0.169159 -0.066740 0.141420 0.407096 0.191713 -0.204194 -0.043428 0.373647 -0.360431 0.910474 -0.130858 0.573645 -0.168978 0.648383 -0.034985 0.501921 0.640116 -0.003215 -0.376378 0.101872 -0.444249 0.127364 -0.574746 -0.130492 -0.260803 0.336723 0.411401 -0.503666 -0.601374 -0.191940 -0.622107 -0.897628 0.148522 -0.383232 -0.432636 0.315915 0.474166 0.471272 0.669855 0.617447 -0.518788 -0.124306 -0.069299 -0.100314 0.644573 0.117341 0.493026 -0.324250 -0.262886 0.329312 -0.010329 0.237427 0.039039 0.146779 0.236695 -0.744281 0.231868 0.500974 0.419361 -0.245163 0.456526 0.540085 0.170713 -0.067609 -0.007693 0.620846 -0.295350 -0.128431 0.266360 -0.635835 0.355678 0.160964 0.330114 0.430335 0.088573 -0.018761 0.259685 -0.254338 0.157006 -0.324902 -0.107015 -0.275333 -0.166895 -0.361914 0.431907 -0.210483 -0.199982 -0.199328 -0.423627 0.739324 -0.863869 -0.077235 0.695601 -0.161454 0.312727 -0.479442 0.812199 -0.489881 0.569417 0.083305 -0.009987 0.108185 -0.366085 -0.714198 0.017797 0.219250 0.076069 0.061967 0.605083 0.473990 -0.093788 -0.141488 0.746022 -0.435422 0.917050 -0.146378 0.565830 -0.223439 -0.282489 0.112624 -0.048237 -0.532117 -0.420141 0.326537 0.853430 0.001801 0.592292 0.571249 0.087082 0.975222 -0.452859 0.569654 -0.188179 0.300096 -0.344935 -0.326671 0.424562 0.412793 -0.206889 0.328391 -0.867590 -1.002004 -1.105899 -0.394925 0.032775 -0.472853 0.279060 -0.400469 -0.156768 -0.435064 -0.628826 0.669099 -0.200382 0.097076 0.462804 0.025743 0.418115 0.607546 -0.320890 0.027588 -0.055021 0.401905 0.382009 -0.046980 -0.702853 0.740141 -0.492382 -0.235256 1.047054 -0.515694 0.221177 -0.038369 0.536390 -0.497628 0.732025 0.094300 -0.419575 0.669491 0.760355 0.462027 0.388924 -0.394430 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_wrap(int* const&, int*) = -0.090136 -0.251670 0.665673 0.509658 0.030368 0.003709 0.406774 -0.220953 0.393630 0.224799 -0.085117 0.051449 -0.526169 0.141520 -0.091674 0.418338 -0.389413 -0.362875 -0.024780 -0.260554 -0.019499 -0.227089 0.454230 -0.126570 0.449235 0.018739 -0.174298 -0.425321 -0.459830 -0.245494 0.303470 -0.225265 0.310698 0.148860 -0.197899 -0.634567 0.340936 0.279286 -0.250621 -0.337564 0.396248 -0.287569 0.157239 -0.177316 0.109437 0.119384 0.123878 0.157670 0.411341 0.270522 0.267063 -0.039133 0.171094 0.542531 -0.479266 0.204592 0.074611 -0.078613 -0.182684 0.042665 0.061485 -0.014832 0.228665 0.179459 -0.107183 -0.424211 -0.220957 -0.330541 -0.491794 0.224334 -0.142919 0.123854 -0.429369 0.001636 -0.083077 -0.117905 -0.628931 0.307190 0.553311 -0.351609 0.393308 0.037424 0.013887 -0.147983 -0.043617 0.154007 -0.034152 0.055977 -0.052087 -0.169700 -0.212985 -0.014736 0.040242 0.084683 -0.032071 -0.364753 0.314037 0.103628 -0.423856 0.045942 0.198794 -0.097383 -0.190366 0.186357 -0.055215 0.368510 -0.276164 -0.421905 -0.053280 -0.064633 0.185791 -0.082095 -0.070826 -0.247038 -0.306672 -0.338632 -0.474719 0.010064 -0.169481 -0.302778 -0.189358 0.258555 -0.203777 0.043781 0.082727 0.258205 -0.199669 0.500601 0.038458 0.323210 0.286877 0.011251 -0.517531 -0.019947 0.389141 0.605772 -0.158639 0.137678 -0.352380 -0.029987 -0.284802 -0.104762 0.191893 0.266888 0.454954 -0.412470 -0.253271 -0.019003 0.042675 -0.509921 0.203803 -0.292160 0.251304 0.067860 0.292811 0.122047 0.393683 0.828355 -0.375705 0.130263 -0.028233 -0.211477 0.401908 0.255345 0.359787 -0.205479 -0.222717 0.073626 0.184323 0.031030 0.001289 0.143422 0.075074 -0.523005 0.040653 0.060764 0.099196 -0.275451 0.247786 0.222770 0.258208 -0.242693 0.074452 0.375127 -0.067884 -0.009206 0.143136 -0.496985 0.304870 0.051757 -0.136330 0.141528 0.055647 -0.252559 0.231491 -0.270406 0.090184 -0.272898 0.065583 -0.244234 -0.121551 -0.319621 0.072010 -0.074318 -0.322790 0.023237 0.109857 0.438939 0.099692 -0.104332 0.166440 -0.019879 0.001865 -0.498017 0.860477 -0.327613 0.124048 -0.237316 -0.065795 -0.015801 0.277561 -0.212674 -0.161406 0.135561 0.009106 0.256635 0.584540 0.280899 -0.068298 0.008200 0.471930 -0.014410 0.385079 -0.024315 0.342052 -0.098241 -0.153118 0.185040 -0.090391 -0.068971 -0.119351 0.007251 0.653107 0.287352 0.087608 0.406324 0.096045 0.579572 -0.201829 0.337433 -0.024723 0.499995 -0.085994 -0.081923 0.135821 0.181627 -0.144023 0.312688 -0.487224 -0.669958 0.110557 -0.427497 0.088505 -0.041319 0.144091 -0.118808 0.065925 -0.488332 -0.265606 -0.066094 -0.179108 0.277336 0.137182 0.049564 0.258432 0.356617 -0.267894 -0.103436 0.011339 0.244812 0.099444 -0.125328 -0.209650 0.255859 -0.439878 -0.039791 0.401399 -0.230304 -0.014202 -0.123677 0.477346 -0.328178 0.600661 0.101073 -0.072982 0.662805 0.346434 0.539656 0.107546 -0.171658 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a1(int const*, int const*, int*) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a2(int const*, int const*, int*) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = -0.622467 -1.705876 3.777121 2.486801 0.064591 0.961322 0.695170 -1.112612 0.916424 0.860358 -0.815065 1.736122 -1.786196 0.237628 -0.771812 0.653714 -2.235442 -1.724952 -0.346149 -1.027496 -0.392434 -1.193756 -0.062740 1.678770 1.651829 0.437597 -1.424815 -0.073625 -3.103438 -2.810522 -0.166165 -0.470268 1.334984 -0.619793 1.005101 -3.291133 2.034901 2.305907 -0.269789 -2.428241 1.317262 -1.189370 -0.031603 -0.179539 -0.336916 1.219371 1.187866 0.401359 1.332629 0.874659 -0.020105 -0.112376 0.730395 2.364497 -0.545095 1.524915 1.413691 -0.910918 0.162830 -0.202551 -0.119884 -1.034690 0.748894 0.409782 -0.803500 -1.567183 0.263949 -0.297684 -1.203332 1.262377 0.195103 -0.874899 -1.305197 -0.786945 -2.549557 -0.357780 0.961068 1.422482 2.780427 -0.926030 2.252926 0.192578 0.916339 0.260262 1.274979 0.271211 1.349203 0.497021 -0.857141 -0.469486 -1.855459 -0.431700 -0.300132 1.408348 -0.882349 -1.139742 1.071246 -3.289929 -2.291620 0.870394 0.229192 -1.367075 -1.385804 0.028844 0.816538 1.206176 -0.526771 -1.896005 -0.417505 1.105791 -0.520379 -0.424686 0.454993 -0.949533 -0.652463 -0.350429 -2.104668 0.813573 0.770546 -0.701903 -1.034399 2.179354 -0.433738 1.052045 0.203532 1.350312 -0.659110 1.481365 0.494894 0.967568 -0.332784 -0.476272 -1.865184 -0.359253 0.605855 0.412307 -1.612385 -0.420166 -0.566911 0.617676 -0.688463 0.443203 -1.018806 2.115518 1.671316 -1.430428 -1.485426 -1.247709 -0.974398 -1.886242 0.032224 -0.683662 -1.687114 0.325095 1.461593 0.473889 0.829413 2.337032 -0.875532 0.468428 0.141192 -0.865887 1.210760 -0.929686 1.221171 -1.430355 -1.138847 1.177621 0.813616 1.096884 -0.011167 0.036690 0.626844 -1.504854 -0.632169 1.139065 0.871423 0.572992 2.121456 1.930648 2.206367 -1.268761 -0.349062 0.902082 -0.976052 -0.364740 0.247749 -1.835362 0.889975 0.826966 0.200011 2.755694 0.023618 -1.202534 1.470226 0.011652 0.679964 -1.772114 0.855721 -1.346953 0.374203 -0.870820 -1.025434 -1.160376 -0.877807 -1.716531 -1.382390 2.610670 -1.418115 -2.594963 1.524900 -0.479012 1.516407 -3.591229 1.497441 -1.342114 1.870972 0.103357 0.166684 0.042436 0.222355 -1.307355 0.782195 0.703370 -1.039389 1.580683 1.754152 1.005028 0.244822 -0.159543 1.621771 -0.426970 1.124090 -0.937192 0.991017 -0.662565 -0.448485 -0.219830 -0.373188 -0.255790 0.248702 0.205101 0.183801 0.916189 0.374336 0.993536 2.009358 1.373508 -0.668086 0.749651 -0.876626 1.598736 -1.214043 -1.362007 -0.002130 1.352456 0.368602 0.906421 -3.129151 -2.583584 -2.095688 -3.293060 -0.037688 -0.261516 0.506499 0.372339 -0.274838 -2.637660 -1.456180 1.988258 0.190116 2.728320 1.417725 0.190241 1.632070 1.478266 -0.562193 -0.494470 -0.163812 0.807443 -0.246836 -0.442314 -1.644135 1.517120 -1.996526 0.960860 2.482010 -1.528769 1.079848 -0.219177 0.884960 -2.526382 2.816417 1.040891 -1.892965 1.165069 1.262730 1.951685 -0.702807 -1.306113 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__copy_move::__assign_one(int*, int const*) = -0.348171 -0.397237 0.934503 0.651246 0.080431 0.106130 0.479895 -0.328872 0.547541 0.361512 -0.067608 0.180191 -0.636604 0.132788 -0.180615 0.463720 -0.498299 -0.529771 -0.048721 -0.442544 -0.160965 -0.327102 0.377827 -0.057907 0.514678 -0.158294 -0.323775 -0.445250 -0.728165 -0.505960 0.309649 -0.264763 0.408015 -0.202479 -0.185273 -1.329059 0.504210 0.459678 -0.315979 -0.531971 0.466695 -0.424760 0.210724 -0.123224 -0.025652 0.099560 0.200310 0.041653 0.507008 0.297854 0.396321 0.044983 0.152740 1.126706 -0.580930 0.375730 0.191816 -0.144655 -0.299021 0.132352 0.079467 -0.098722 0.366337 0.209086 -0.185524 -0.529696 -0.150187 -0.343098 -0.650364 0.311473 -0.115707 -0.071379 -0.415210 -0.053415 -0.350960 -0.286824 -0.423476 0.339445 0.795555 -0.487378 0.615187 0.054606 0.138508 -0.014862 0.139567 0.156334 0.225736 0.075123 -0.166269 -0.220936 -0.257523 0.091882 0.007761 0.338378 -0.090882 -0.539814 0.446178 -0.087786 -0.656537 0.190206 0.215663 -0.118986 -0.543326 0.033263 0.079680 0.449070 -0.426162 -0.644482 -0.310419 0.076121 0.089515 -0.140795 0.005568 -0.465594 -0.314997 -0.402214 -0.651399 0.036839 -0.062771 -0.359386 -0.487495 0.509270 -0.317557 0.114167 0.093110 0.417967 -0.291953 0.598344 0.009258 0.401747 0.156381 -0.023264 -0.936617 -0.221755 0.380036 0.701293 -0.229738 0.049583 -0.420066 0.026326 -0.378170 0.011550 0.098098 0.506804 0.681742 -0.427396 -0.356578 -0.134068 0.103263 -0.739040 0.193107 -0.393475 0.086097 0.120444 0.439678 0.225605 0.449499 1.045001 -0.407004 0.347280 -0.066369 -0.331141 0.533491 0.032672 0.491390 -0.340614 -0.354274 0.100283 0.316435 0.185417 0.010603 0.089275 0.078929 -0.640002 -0.115318 0.036207 0.201867 -0.224889 0.387027 0.382492 0.801462 -0.663611 0.103669 0.405529 -0.168829 0.026649 0.081636 -0.641425 0.248648 0.189432 -0.262383 0.430973 0.062354 -0.465657 0.269089 -0.262770 0.167848 -0.411681 0.161457 -0.372414 -0.130234 -0.337443 -0.125657 -0.271279 -0.352091 -0.178091 -0.103798 0.673487 -0.191114 -0.434362 0.387640 -0.032082 0.122988 -0.939456 1.124434 -0.445899 0.344957 -0.412816 -0.049823 -0.092968 0.527235 -0.298518 0.072288 0.203633 -0.193362 0.405889 0.900583 0.354699 0.126077 -0.049750 0.650072 -0.044820 0.417996 -0.127499 0.544010 -0.168775 -0.306208 0.130618 -0.158618 -0.009924 -0.053954 0.116455 0.573222 0.438976 0.005068 0.412617 0.421240 0.658728 -0.274279 0.429405 -0.070615 0.663346 -0.161026 -0.144334 0.124045 0.307674 -0.110195 0.345012 -0.749505 -0.820277 -0.134453 -0.722126 0.154921 0.119345 0.078015 -0.096200 0.072563 -0.791082 -0.336917 0.180203 -0.227741 0.550445 0.254799 0.166756 0.440511 0.540359 -0.311193 -0.182312 -0.022604 0.168921 0.028219 -0.235650 -0.320320 0.391383 -0.623829 0.126185 0.498247 -0.253110 0.069994 0.064107 0.441778 -0.487179 0.858735 0.195392 -0.163484 0.770689 0.516803 0.850013 -0.040807 -0.277684 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.052456 -0.178838 0.634863 0.487216 -0.114431 0.007887 0.107858 -0.246725 0.303159 0.145320 -0.094952 0.080668 -0.314638 0.131011 0.026741 0.395703 -0.455379 -0.208358 -0.077233 -0.268126 -0.103561 -0.128327 0.271486 -0.072813 0.337283 0.230391 -0.180768 -0.142622 -0.144181 -0.394794 0.171409 -0.177005 0.250969 0.211484 -0.010830 -0.652098 0.377159 0.230841 -0.206466 -0.294967 0.255874 -0.161265 0.114396 -0.155647 -0.054321 0.164930 0.072145 0.066237 0.312136 0.236141 0.153692 -0.006292 0.249800 0.426199 -0.247981 0.158083 0.103847 -0.143860 -0.148928 -0.036953 0.078028 0.005991 0.154601 0.100182 -0.016788 -0.421702 -0.183026 -0.252094 -0.341412 0.209385 -0.136794 -0.036119 -0.338144 -0.168024 -0.102554 -0.120436 -0.607726 0.313744 0.442482 -0.325983 0.247847 0.045798 -0.024688 -0.022326 0.018926 0.113874 0.104144 0.099911 -0.019090 0.032902 0.126953 -0.161991 0.156037 0.055663 -0.102153 -0.346771 0.243111 -0.130590 -0.319578 0.131060 0.240496 -0.080973 -0.195740 -0.023261 -0.009033 0.254132 -0.203112 -0.270885 0.034173 -0.048023 0.176681 -0.064823 -0.133006 -0.085961 -0.201331 -0.077193 -0.449950 0.095050 -0.092534 -0.142401 -0.040668 0.221851 -0.021385 -0.039014 0.004851 0.206042 -0.198729 0.523569 -0.009523 0.319489 0.013874 0.148606 -0.252107 0.057089 0.298756 0.193845 -0.124218 -0.036759 -0.261297 -0.002620 -0.275719 -0.021473 0.056127 0.244061 0.493060 -0.197880 -0.267882 -0.067657 -0.226812 -0.532336 0.132736 -0.249003 0.092400 0.227007 0.242873 0.138020 0.329758 0.513880 -0.315465 0.013153 -0.100955 -0.151766 0.343330 0.214306 0.280097 -0.173218 -0.123581 0.144094 0.109255 0.095319 0.091311 0.033596 0.105289 -0.351760 0.059686 0.259220 0.144845 -0.130066 0.189766 0.226135 0.395585 -0.022519 0.009593 0.292583 -0.067357 -0.034213 0.132002 -0.336410 0.184715 0.055846 -0.032326 0.168325 0.018360 -0.093147 0.125309 -0.186976 0.073677 -0.209231 0.064006 -0.165826 0.034521 -0.223902 0.062052 -0.139633 -0.180446 -0.029372 -0.008049 0.396291 -0.170008 -0.063823 0.259646 -0.071561 0.113484 -0.315651 0.588435 -0.262447 0.256472 -0.195373 -0.094971 0.009261 -0.029749 -0.204315 -0.042591 0.121979 0.065080 0.004130 0.400064 0.234023 -0.095879 -0.043485 0.378532 -0.075491 0.418066 -0.019741 0.326759 -0.090750 0.016697 0.086588 -0.052490 -0.164737 -0.141979 0.024717 0.413449 0.132479 0.130106 0.247958 0.054014 0.439489 -0.205126 0.300913 -0.015408 0.318828 -0.140311 -0.117158 0.166329 0.287213 -0.099911 0.154928 -0.406427 -0.456791 -0.237781 -0.217758 -0.081302 0.086572 0.132648 -0.117834 -0.018724 -0.203713 -0.251820 0.308007 -0.122737 0.215994 0.098810 0.034553 0.246854 0.315247 -0.132666 -0.130184 -0.075256 0.105488 0.138692 0.008529 -0.270290 0.320754 -0.301469 -0.093030 0.400810 -0.235622 0.050328 -0.006362 0.367752 -0.265230 0.428512 0.053159 -0.104900 0.472509 0.355611 0.319888 0.064706 -0.171033 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.179876 -0.328916 1.205895 0.871743 -0.094572 0.065041 0.365283 -0.549030 0.647714 0.309327 -0.076940 0.165150 -0.618064 0.235884 -0.107721 0.683562 -0.806826 -0.482880 -0.162938 -0.631496 -0.228050 -0.280218 0.521714 -0.146163 0.643307 0.063866 -0.403282 -0.418771 -0.512758 -0.673295 0.438772 -0.323424 0.481315 -0.010731 -0.148277 -1.601143 0.740528 0.458650 -0.423872 -0.548984 0.546623 -0.409599 0.171343 -0.240748 -0.129142 0.153128 0.092709 0.127437 0.650049 0.386674 0.374245 0.159542 0.304286 1.225489 -0.668731 0.366936 0.159013 -0.235238 -0.370370 0.122110 0.110236 0.029952 0.374676 0.204317 -0.074339 -0.807150 -0.215082 -0.441029 -0.723460 0.429788 -0.138406 -0.133271 -0.529131 -0.132359 -0.344904 -0.291577 -0.688559 0.542575 0.865321 -0.597359 0.537518 0.014877 0.000000 -0.019149 0.102315 0.193862 0.324150 0.137676 -0.069940 -0.167863 -0.098261 -0.091210 0.207076 0.193003 -0.157687 -0.818917 0.483915 -0.208797 -0.691679 0.218059 0.445926 -0.188599 -0.575721 -0.117881 0.091461 0.445264 -0.436371 -0.629623 -0.168271 0.039639 0.172036 -0.160090 -0.122733 -0.434261 -0.334661 -0.310314 -0.830406 0.157988 -0.151509 -0.255384 -0.398571 0.519108 -0.227292 -0.090155 0.046466 0.503213 -0.424843 0.772690 -0.136917 0.580612 0.144628 0.189949 -0.715317 -0.086312 0.516316 0.598651 -0.198961 -0.062141 -0.592627 0.055825 -0.574624 0.032269 0.118995 0.553689 0.833318 -0.413706 -0.461368 -0.090619 -0.081625 -0.962830 0.235733 -0.473039 0.025587 0.274807 0.504497 0.283882 0.636371 0.972371 -0.521822 0.288684 -0.140870 -0.287847 0.731036 0.134106 0.566575 -0.367685 -0.331869 0.161367 0.223946 0.231596 0.031632 0.112083 0.136359 -0.733464 -0.067117 0.172740 0.263239 -0.250739 0.372261 0.479029 0.970236 -0.524856 0.113662 0.572194 -0.231762 -0.001308 0.165480 -0.683005 0.247943 0.219497 -0.194937 0.513736 0.044408 -0.421718 0.219234 -0.273917 0.171513 -0.404083 0.110090 -0.367314 -0.075241 -0.384199 -0.071502 -0.318651 -0.363290 -0.194131 -0.161579 0.781544 -0.397406 -0.406126 0.631704 -0.192576 0.173256 -0.934938 1.270064 -0.522941 0.367446 -0.457415 -0.103790 -0.074900 0.307404 -0.539291 0.129059 0.225802 -0.105724 0.288165 1.012508 0.454420 0.060037 -0.161106 0.770809 -0.137573 0.706290 -0.154467 0.742523 -0.232082 -0.217164 0.104552 -0.137471 -0.211360 -0.245674 0.184379 0.683036 0.348163 0.190315 0.454922 0.357399 0.863216 -0.365318 0.624710 -0.080996 0.563527 -0.188482 -0.193513 0.329615 0.408396 -0.172619 0.403641 -0.859177 -0.919125 -0.401495 -0.655769 0.101812 0.145050 0.171063 -0.212664 -0.001783 -0.734828 -0.441735 0.362569 -0.249004 0.473708 0.325261 0.149669 0.464254 0.670697 -0.346248 -0.169118 -0.107901 0.193239 0.184613 -0.215000 -0.505064 0.632656 -0.610779 0.006817 0.725482 -0.348486 0.118654 -0.013721 0.599335 -0.521740 0.906255 0.134221 -0.165335 0.892994 0.647535 0.789034 0.089149 -0.321635 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::Graph(int) = 0.692269 -1.244844 3.506913 1.851015 -1.308601 0.339172 1.204345 -1.000455 0.625089 -0.291419 -0.729784 0.919786 -1.462076 -0.256313 0.201414 0.078171 -3.328404 -1.166654 -0.409280 -0.927012 -1.015144 -0.829841 0.313475 1.377666 1.733907 1.777576 -0.539013 -0.520772 -1.380910 -0.523509 0.556903 -0.162742 0.750329 2.097356 2.118593 -2.749548 1.353011 0.789002 -0.207828 -1.777241 0.813692 -0.039710 -0.170455 -0.626550 -0.090767 0.635207 1.035652 2.570358 0.928941 0.575710 -0.710720 -1.245153 0.257827 2.651771 0.619888 0.882439 1.619015 -1.141407 0.721717 0.167642 0.286350 -1.252460 -0.083773 0.343150 0.003560 -0.568120 0.492492 -1.876895 -0.383207 1.675851 0.998848 -1.242425 -1.276438 -1.775827 -1.817374 -0.083316 -2.556553 2.866678 2.433365 -2.020001 1.533652 0.323412 1.150349 -0.363046 0.926332 0.044550 1.782717 0.425304 -0.366870 0.304874 -2.082897 -2.181838 -0.036989 -0.618934 -0.503165 -1.462410 1.142455 -2.878669 -1.924225 1.024968 0.706550 -1.055731 -0.230868 0.475206 0.665278 0.471511 -0.660959 -1.183525 -0.665994 0.512592 -1.161013 0.658925 0.342505 1.231534 -0.870247 -0.224100 -1.673493 1.046842 0.656021 -0.200751 -0.029279 1.855185 -0.501380 1.078375 0.149899 0.277860 -0.312222 1.906961 0.804129 0.154971 0.387447 -0.087152 -0.454914 0.857210 0.734928 1.376718 -0.101848 -0.175162 0.277153 0.974010 -1.101004 0.278208 -0.679677 2.125538 0.072799 -1.553088 -2.375685 -0.849851 -1.659726 -1.771094 0.190379 -0.680335 -1.101418 1.155460 1.127030 2.254503 -0.143511 0.791525 -1.108597 0.197453 -0.112662 -0.393390 0.022062 0.311064 0.934918 -1.319310 -0.289164 0.211673 -0.283915 1.153400 0.328663 -0.545137 0.250203 -1.722290 -1.367305 0.729866 1.194909 0.136012 1.001646 2.047473 0.576955 -1.256664 -0.921278 0.998024 -0.375877 -1.227732 0.824636 -1.284944 1.124807 -0.000843 0.462754 1.461247 0.068774 0.090388 0.967294 -0.276093 0.320793 -0.863317 -0.545120 -0.569158 0.244058 -0.811912 0.667614 -1.228900 -0.541454 -1.087454 -1.364153 2.362905 -1.654503 -1.768477 2.148945 -1.058409 2.239339 -1.778525 2.001621 -0.619333 1.306742 0.138954 -0.284774 -0.098495 -0.737060 -0.733417 1.071771 -0.209418 -0.074937 -0.111710 1.446705 0.636286 0.449977 -0.001416 1.515626 -1.128552 1.149202 -0.483981 1.046440 -0.667333 -0.519872 -0.363624 -0.018678 -0.306711 0.177432 0.321065 1.442703 0.152585 1.283789 1.283389 0.667835 0.749309 -1.060993 0.140150 -0.062005 1.322201 -1.371668 -1.344858 0.670460 1.104817 -0.142978 -0.055397 -2.349364 -2.328127 -2.443136 -1.827235 -1.355630 -1.268259 0.962776 -0.090536 -0.608656 -0.936145 -1.080413 0.719789 0.342558 0.112475 1.239070 -0.142830 1.910125 1.640015 -0.398561 0.062099 0.744766 1.300507 -0.151953 0.001329 -2.239289 0.882888 -2.521375 0.643797 2.652918 -0.676938 1.369578 -0.762324 2.598861 -2.596534 1.509466 0.739954 -2.348113 0.239592 2.309937 0.634620 0.719970 -1.392323 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::addEdge(int, int) = -0.040695 -0.593699 1.518205 1.170907 -0.271185 0.118268 0.544401 -0.539771 0.430181 0.244448 -0.209725 0.378121 -0.937224 0.284385 -0.244581 0.671877 -1.167493 -0.594314 -0.232043 -0.558655 -0.293649 -0.369974 0.530621 0.288131 0.897490 0.391129 -0.490690 -0.529480 -0.723258 -0.656981 0.338666 -0.270666 0.652568 0.450223 0.002731 -1.755716 0.748866 0.691998 -0.387412 -0.661246 0.683302 -0.511360 0.081767 -0.467874 -0.343879 0.191721 0.241554 0.391660 0.690384 0.380290 0.226929 0.000190 0.598171 1.453785 -0.487318 0.543740 0.431815 -0.249956 -0.142742 -0.076897 0.128606 -0.122144 0.373931 0.200597 -0.072064 -0.837344 -0.326812 -0.639836 -0.629056 0.581339 -0.054737 -0.006413 -0.827702 -0.271024 -0.604065 -0.267233 -0.987066 0.866181 1.138476 -0.914293 0.763919 0.131499 -0.003871 -0.127761 0.171843 0.216407 0.361708 0.198465 -0.042227 -0.076234 -0.279141 -0.210208 0.197889 0.157507 -0.339944 -1.170496 0.591792 -0.687040 -1.021786 0.276542 0.392445 -0.475075 -0.218855 -0.012923 -0.004983 0.453663 -0.518379 -0.784469 -0.147816 0.051222 0.227632 -0.192742 -0.135936 -0.066180 -0.308675 -0.319337 -1.120524 0.280086 -0.111175 -0.406443 -0.173224 0.683861 -0.025493 0.225457 0.094092 0.461354 -0.373437 1.067117 0.043188 0.547335 0.138839 0.258941 -0.509550 -0.030170 0.696526 0.631671 -0.449652 -0.109888 -0.471676 0.183767 -0.497941 0.039516 0.202790 0.838507 0.696808 -0.624702 -0.700170 -0.319810 -0.426525 -1.117805 0.219484 -0.537565 -0.116384 0.463017 0.610640 0.302705 0.581246 1.072674 -0.499340 0.278215 -0.002940 -0.345477 0.683827 0.162326 0.626933 -0.512554 -0.510765 0.382639 0.200108 0.472655 -0.029931 0.232460 0.180759 -0.796290 -0.191590 0.301696 0.336750 -0.317952 0.694477 0.679295 0.997288 -0.445045 0.164621 0.610461 -0.285221 -0.065738 0.270498 -0.914586 0.509722 0.142436 -0.288577 0.664177 0.050164 -0.412463 0.524705 -0.366684 0.199536 -0.657942 0.186227 -0.459446 -0.084529 -0.679476 0.092496 -0.234606 -0.479345 -0.253821 -0.183588 1.085804 -0.855971 -0.333315 0.655581 0.010636 0.344514 -1.115589 1.597416 -0.564505 0.581888 -0.331480 -0.391134 0.119041 0.147150 -0.550368 0.064566 0.287904 -0.183912 0.200694 0.990569 0.483388 0.020039 -0.051013 0.907381 -0.089822 0.837916 -0.251652 0.756977 -0.123836 -0.340008 0.018427 -0.172459 -0.238599 -0.155892 0.228655 1.009676 0.425858 0.400263 0.595058 0.457462 1.015466 -0.454631 0.489644 -0.194490 0.775186 -0.456758 -0.369525 0.245277 0.529713 -0.185919 0.536523 -1.151218 -1.281772 -0.770389 -0.682978 -0.084464 -0.062076 0.423652 -0.170971 -0.115363 -0.904177 -0.691320 0.482970 -0.327862 0.340631 0.536916 0.144032 0.715509 0.756286 -0.232702 -0.129618 0.044560 0.553746 0.249305 -0.053377 -0.725798 0.664166 -0.875476 0.153657 1.053979 -0.508557 0.342408 -0.092180 0.986720 -0.818712 1.195952 0.203134 -0.626444 0.933959 1.025104 0.582968 0.151969 -0.487951 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclicUtil(int, bool*, bool*) = -0.819158 -4.095830 9.575616 6.779358 -1.796151 1.808549 1.448820 -3.200483 2.138924 0.955891 -2.181136 3.777758 -4.640486 0.542660 -1.285068 1.634512 -7.471558 -3.699004 -1.215974 -3.144981 -2.812801 -2.423831 -0.273691 4.540797 4.375412 4.748096 -3.319891 -0.451698 -5.549023 -4.940875 0.308683 -0.835581 3.499577 3.793649 2.933002 -9.586672 4.274661 5.134988 -1.080911 -4.747858 2.724261 -3.164185 -0.406008 -1.912223 -1.336346 1.958913 2.260487 2.842660 3.107542 0.938867 -0.259252 -0.772457 2.724451 7.330938 -0.476045 3.871544 4.105550 -2.401449 0.439887 -0.783288 0.619522 -2.404786 2.312314 1.164739 -1.908553 -4.285186 0.456993 -2.719189 -2.288688 3.916736 2.100836 -2.073177 -3.641383 -3.320233 -4.856037 -1.647260 -1.731438 4.818944 6.977153 -4.128242 5.344516 1.750369 2.069710 -0.054436 3.367629 0.287279 5.635568 1.258455 -1.572703 -0.317037 -4.509900 -2.157571 0.327197 2.709277 -2.662372 -3.913273 2.804245 -8.918915 -6.939173 2.013385 1.577110 -3.267670 -2.262384 0.604423 1.965722 1.351965 -1.111198 -4.326535 -1.103776 1.804704 -2.381818 -1.083701 -0.817638 0.058468 -1.120764 0.316689 -6.528582 2.596871 1.331134 -1.346829 -1.279573 5.336509 0.619592 2.305080 0.316068 2.537632 -1.200057 4.545272 0.853452 1.593361 -0.271727 0.203567 -2.101748 0.351874 2.331931 0.920511 -4.139680 -2.650311 -0.653358 1.842320 -2.286871 0.932857 -2.060110 6.676575 3.201293 -3.740372 -4.566482 -3.840525 -3.904964 -5.812868 0.217472 -2.402974 -4.016711 0.809069 3.736369 2.721780 1.906872 3.827800 -2.212952 2.219698 0.692780 -0.936138 2.946245 -0.092674 3.476844 -3.978617 -2.676932 2.805017 1.243458 3.199689 -0.310835 0.029394 0.990434 -4.008770 -2.983177 3.407563 1.745959 1.229945 5.553350 5.245709 8.626382 -4.301772 0.557261 2.252510 -1.829180 -1.331029 1.702565 -4.607912 2.732644 1.320379 0.345177 6.911934 0.130738 -2.133862 2.341218 0.237240 1.312570 -4.650380 1.951225 -2.785432 0.508274 -2.824645 -0.092261 -3.306165 -2.210038 -3.822874 -3.240486 7.227425 -6.528396 -5.364504 5.215720 -0.910873 4.406706 -7.929448 4.715325 -3.289721 4.344936 -1.618350 -2.243450 0.283936 -1.348233 -3.464534 2.720986 1.717123 -2.444466 1.871566 4.192185 2.531003 1.877370 -0.226983 4.146226 -1.051803 3.896265 -2.458125 3.775487 -0.483370 -1.594901 -1.399627 -1.134046 -0.958195 0.950674 0.846660 2.631836 3.107436 2.312070 2.281653 3.904937 3.673826 -2.742006 1.604765 -1.314943 3.587332 -3.625551 -3.573347 0.575673 2.539199 -0.066701 2.284172 -7.918120 -6.723413 -5.322601 -5.824587 -1.722065 -0.611843 2.365414 1.061082 -1.183910 -5.704376 -4.044865 5.112212 -0.126353 5.000631 3.252945 0.904466 4.908927 4.287707 -0.642445 -1.373503 0.282610 2.467131 -0.010149 -0.456014 -5.683268 4.618542 -4.072567 3.094657 7.027958 -3.758997 3.274673 -1.005376 5.261047 -6.094920 7.106896 1.991063 -6.377041 2.552141 4.717420 3.963898 -0.926596 -3.867952 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -0.942614 -3.144358 5.996376 4.411243 -0.172798 1.119245 1.743555 -1.431285 1.558866 1.947114 -1.495822 2.761722 -3.211637 0.218615 0.313119 1.593123 -4.026073 -3.056197 -0.075158 -1.360084 -1.648877 -1.894318 -0.284307 2.682038 2.831795 1.400412 -2.177445 -0.597726 -3.978356 -3.799246 -0.447507 -0.793275 2.430127 1.275103 1.888728 -6.305462 2.870581 3.274832 -0.401059 -3.663364 1.517030 -1.845281 0.047017 -0.708546 -0.355314 1.762891 2.442142 2.018762 1.872034 1.413799 0.384614 -1.162754 1.354538 4.604935 -0.083767 2.626250 2.985279 -1.636951 0.027374 -0.595258 0.653778 -2.308436 1.784874 1.172716 -1.480759 -2.170329 0.354139 -1.504292 -2.054246 2.136120 1.945671 -1.352752 -2.492899 -1.892406 -2.176582 -1.060537 -0.234319 2.511410 5.044825 -2.429280 4.172776 1.516342 2.174213 -0.072236 2.087925 0.043225 3.309902 0.799749 -1.761850 -0.510775 -3.270514 -2.073221 -0.250597 2.414691 -1.246098 -1.436848 1.524084 -3.572721 -4.458894 1.596927 0.449014 -1.605000 -2.416348 0.790648 1.834237 1.659433 -0.636483 -3.108211 -1.505860 0.789194 -2.006948 -0.935566 -0.452502 -0.457473 -1.374503 -0.092202 -4.317978 0.904467 1.418508 -1.648363 -1.283525 3.219641 -0.771500 2.321478 0.184216 1.338185 -0.354770 2.790471 1.626262 1.064105 0.749853 -1.217971 -3.085317 0.100751 1.369017 1.301878 -2.148555 -1.175629 -0.119402 1.254950 -1.082880 1.123302 -0.866701 4.835283 2.806042 -2.296466 -3.356702 -2.800522 -1.702505 -2.840554 0.952681 -1.962942 -1.522011 0.225486 2.523317 0.906599 0.891164 3.709285 -1.955695 2.363619 0.207987 -0.438181 1.489472 -0.137517 2.304356 -2.585571 -1.606267 1.968809 1.992014 1.557799 0.026363 -0.571349 1.121928 -2.817823 -2.496672 1.812568 0.673219 0.638716 3.266339 2.707942 6.663586 -2.583730 -0.039575 1.233458 -0.542768 -0.933621 1.110773 -3.304130 1.837452 0.444900 0.241106 4.448417 0.241581 -2.346465 1.825949 0.118076 0.486194 -2.867104 1.750029 -1.826206 0.757141 -1.386444 -0.240144 -2.286229 -1.435145 -2.135125 -0.976446 4.779342 -2.155447 -4.489723 2.365398 -1.269755 2.793699 -5.866078 4.251477 -2.148556 2.225823 -1.539180 -1.469203 0.146902 -0.124046 -1.441946 1.660562 1.297214 -0.963220 1.428549 2.981792 1.418601 0.975943 0.352692 2.370221 -0.144263 1.883116 -0.997329 2.080882 -0.528837 -0.477588 -1.056192 -0.769174 0.180575 1.164174 -0.276030 1.201185 2.224072 0.332566 1.779512 2.466197 1.867710 -1.910834 1.123792 -0.507799 3.473362 -2.315879 -1.974410 -0.276283 1.405355 -0.123570 1.754922 -4.908567 -3.795100 -1.924874 -4.689751 -1.611490 0.938025 1.707116 0.605721 -0.482365 -3.759649 -2.173739 3.346324 0.231508 4.102491 2.156348 0.591410 3.286342 2.365957 -0.333264 -1.607765 -0.221270 0.990792 -0.589373 -0.560472 -2.698611 2.189753 -3.262143 2.277599 3.893869 -2.178212 1.541378 -1.411656 3.542778 -3.878166 4.738818 1.623231 -3.787877 1.501215 2.760952 3.493046 -1.811797 -2.562104 -PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 0.363074 -0.661650 1.752754 0.991725 -0.908131 -0.225590 0.081701 -0.051600 0.740354 -1.979102 -0.959625 0.432574 -1.016616 0.511833 -0.487834 -0.040924 -2.681544 -1.254325 0.274500 0.246815 -0.189323 -0.696056 0.760345 0.692682 0.629887 2.586502 -0.657464 0.119957 -0.724702 0.934489 1.654978 -0.849560 0.836231 2.692128 0.418950 -2.323915 0.572047 -0.165296 -0.248867 -1.073302 0.454644 -0.972949 0.156011 -2.314708 -0.330773 0.326723 0.794497 2.195816 0.651022 -0.266662 -1.812729 -0.729538 -0.764176 0.713674 -0.558437 -0.067836 0.817666 -0.401460 -0.091355 -0.963580 0.415151 -0.455051 0.462130 1.173379 -1.082475 -0.783356 0.077469 -1.924281 -0.921080 1.100574 0.758657 1.789084 -1.146257 0.114721 -1.071778 0.213539 0.802976 1.743677 1.851735 -0.944911 0.866101 -0.001833 1.253635 -0.154094 -0.077124 0.625814 0.637609 0.426236 -0.605418 -0.413803 -2.558844 -0.680030 -0.191271 -0.892768 0.558948 -1.176894 -0.052003 -2.179607 -0.658740 -0.359651 0.210346 -0.023467 0.314047 0.686875 0.987656 0.850674 -0.139628 -0.499067 0.608766 -0.601175 -0.729026 0.290031 0.432202 1.157571 -0.713711 -1.344530 -1.521118 -0.039169 -0.161064 -0.572160 1.518828 0.657168 -0.931484 0.259094 0.049799 -0.109592 -0.311455 1.660302 0.587952 -0.607823 0.744999 -0.638917 1.383867 0.098497 0.654773 2.746339 -0.994429 -0.983810 -0.159765 0.163876 -0.875226 -2.333843 0.055600 -0.066917 -0.116750 -1.520600 -1.256162 -0.891471 -0.899825 -1.650761 -0.052516 -0.855939 0.041738 1.417242 0.836425 1.030218 1.018103 1.705083 -1.092225 0.848894 -0.145975 0.134287 0.570191 1.492685 0.769806 -0.452874 -0.156477 0.696892 -0.897416 0.536590 0.043710 -0.786909 0.372324 -1.531021 -0.892979 1.126971 1.029975 0.612185 0.417310 0.340867 -1.890915 -0.842386 0.003709 1.026687 0.422789 -0.727164 1.052626 -0.792345 1.507944 -0.244840 0.181370 0.082723 0.080980 -0.933059 0.280364 0.384134 0.226844 -0.655318 -0.790203 -0.118857 0.173139 -1.250384 1.199890 -0.550090 -0.572072 -0.595215 -0.640335 1.236637 -0.840459 -1.137975 0.602676 -0.076905 2.435512 -1.531595 -0.839029 -0.815163 1.790379 0.402955 -0.110749 0.339143 -2.169151 -0.596091 -0.211199 0.386060 0.499158 -0.189741 0.044533 1.009218 0.117857 0.495046 0.870407 0.453633 0.939926 0.277259 -0.351260 -0.323418 -0.471090 0.800119 -0.166702 -0.137219 0.255944 0.577314 1.917045 0.920899 1.980465 2.620785 0.190640 0.883756 -0.802207 -1.001289 -0.419032 1.166690 -0.415076 -0.551191 -0.281900 1.154961 -0.681785 0.529704 -1.144352 -3.260769 -1.390693 -1.796541 -0.708552 -1.489236 0.310213 -0.094629 0.392246 -0.841031 0.107170 -0.495250 -0.052305 2.909617 0.601878 -0.519521 0.826632 0.896274 -1.842137 -1.226524 1.813027 1.481154 -0.117113 1.148237 -2.747627 0.853765 -1.157657 0.128528 2.363214 -1.594671 -0.312429 -1.294353 2.724756 -0.735458 1.994465 0.830950 -2.064098 0.428928 -0.209533 0.503938 2.252780 -0.860470 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.559354 -1.112255 6.819190 3.704652 -1.380954 0.047994 2.326211 -3.691297 3.060954 -1.405149 -0.385703 0.456192 -3.699805 1.303337 -3.437818 1.789518 -5.247821 -2.978969 -1.943166 -4.166050 -1.450427 -1.519054 3.323599 0.218578 3.552059 0.603390 -2.300098 -2.054698 -3.856418 -2.065849 3.411039 -0.992663 2.110100 -0.642455 -0.758004 -8.582543 3.720794 2.423558 -2.389961 -2.275541 3.843565 -2.558679 -0.423550 -1.851452 -1.482355 -0.222742 -0.201668 2.329804 3.503682 1.098589 1.019756 1.711526 -0.097605 7.543765 -4.095587 1.910225 1.252360 -0.360410 -1.828120 1.268614 -0.260789 0.374290 0.991261 0.872637 -0.849289 -4.007665 0.155763 -3.014645 -3.193540 3.169458 -0.378084 -0.960239 -2.152450 -0.567133 -4.073924 -1.011025 -0.191880 3.374391 4.446855 -3.714946 2.112907 -0.841578 -0.232069 -0.304329 0.020527 0.791533 1.946217 0.411471 0.509629 -2.281502 -3.551152 0.937183 0.187993 -0.022996 -0.978813 -6.391859 3.278660 -4.558407 -4.087887 -0.002262 2.475109 -2.467011 -1.920696 0.053344 0.367677 1.331665 -2.053331 -3.187028 -0.795560 1.400502 0.518611 0.255011 0.546509 -1.410333 -0.966235 -2.705113 -4.889213 2.022339 -1.039281 -0.677593 -1.965741 3.125058 -1.807051 -0.416159 1.163518 3.220792 -2.541241 3.840183 -1.186485 1.666300 0.491352 1.357616 -1.590947 -0.913088 2.309584 4.268942 -1.933494 -0.257214 -2.986829 0.454602 -3.624373 -1.032610 -0.742329 1.942062 1.800914 -3.573781 -2.714045 -0.064914 -0.841786 -5.676562 0.281313 -2.335169 -2.360506 1.375087 2.196890 3.191665 3.025373 5.390624 -1.879563 1.669039 0.380629 -2.160820 3.289637 -0.792748 3.171486 -2.099596 -2.661947 0.531120 -0.954818 2.027242 -0.880286 1.193122 0.084250 -5.040238 -1.313558 0.004435 1.913389 -0.749311 2.149990 3.740640 1.973391 -4.418483 0.885425 3.400062 -2.391082 -0.327407 1.052112 -3.570283 0.952364 1.703567 -0.771380 3.758695 0.506256 -2.064566 1.677678 -0.996866 1.474986 -2.599514 -0.518459 -1.975769 -1.064646 -2.884815 -0.365093 -1.355398 -1.570138 -1.802033 -3.470798 4.016772 -4.096401 -3.464294 4.549205 0.059411 2.384510 -6.027617 4.739966 -2.299012 3.199410 -0.596205 0.752950 -0.319499 0.499384 -3.766198 1.647261 0.271396 -1.197521 2.457607 5.681952 2.346359 1.365054 -1.093640 4.696193 -1.594882 4.217757 -1.902216 3.735101 -1.561536 -3.972896 1.158951 -0.469027 -2.056081 -1.678221 2.581330 4.282399 1.991493 2.585902 3.480773 2.779690 5.327117 -1.477702 2.601096 -0.948847 1.861461 -1.116602 -1.604630 2.418357 2.176552 -1.084064 2.140924 -5.082892 -7.072766 -4.281309 -5.968200 2.150421 -2.992940 0.837788 -1.410230 -0.514485 -4.789053 -2.601293 0.991202 -1.116577 4.310278 2.958147 0.879085 2.652765 4.698513 -3.277458 0.635955 1.684040 2.951800 0.833996 -1.489656 -4.204246 3.498180 -2.830518 0.211195 5.180516 -1.940481 1.788466 -0.864630 2.777071 -3.468423 5.204653 0.643398 -2.067414 4.652301 2.862938 3.309809 3.053184 -1.603618 -PE-benchmarks/detect-cycle-in-a-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/detect-cycle-in-a-graph.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -8.353536 -14.702777 28.442927 18.943716 -3.568677 7.294682 4.593043 -8.242871 1.592408 7.902978 -6.037858 15.319798 -11.408852 -2.160192 -2.805793 3.047374 -17.902604 -11.050235 -3.765701 -9.716434 -9.117771 -5.221287 -7.652188 17.706433 11.984544 3.184180 -10.369083 1.115976 -18.713872 -22.439968 -8.830154 -0.210615 9.614623 -2.823237 11.271727 -31.834764 13.520576 19.343295 -1.699915 -15.164890 7.071912 -6.989103 -2.705834 0.735506 -10.918992 5.615069 9.235182 -0.405823 5.317515 4.362135 2.937473 -1.669510 9.513221 27.499124 5.563495 14.645866 16.591353 -8.333835 1.801732 -1.366864 1.807711 -11.123358 6.035331 -0.610139 -3.332855 -9.115608 2.906353 -3.202793 -3.463639 8.041325 5.482250 -15.343110 -5.319638 -12.637663 -19.674609 -7.416107 6.504232 9.656027 19.790659 -12.553270 18.486493 5.875140 6.326342 3.498600 13.391762 -0.309947 18.211617 4.072579 -4.671700 1.966679 -5.035985 -5.620586 0.485956 16.409070 -11.021089 -8.519163 10.901919 -28.699561 -22.245761 11.143040 2.602994 -11.947152 -11.064375 -3.190755 5.076013 3.709112 -5.064905 -13.047915 -8.849481 9.084450 -7.551621 -4.144906 -1.886515 -0.131561 -0.900853 5.627247 -18.752551 9.784893 9.843009 -3.378453 -8.724174 17.723267 1.917195 11.283526 0.107975 8.230987 -3.144473 11.923496 3.462461 5.087588 -8.736687 -0.288797 -13.653917 -4.911668 3.244762 -5.976446 -11.782830 -7.992559 2.514706 7.585941 -2.311830 12.006170 -8.897281 25.558009 10.475412 -5.632898 -14.083845 -14.270372 -14.502915 -15.621697 -0.894469 -6.471711 -17.595799 6.247981 10.804594 5.487410 0.057736 11.408088 -0.797101 7.547975 2.037333 -6.636817 5.285507 -13.763108 9.221429 -12.883012 -8.802782 9.977681 7.651435 13.869062 0.773592 -0.205944 3.796031 -8.798483 -12.288335 8.629754 4.961446 5.373010 17.214515 17.322542 36.164356 -11.987840 -0.807868 1.694464 -7.241263 -3.166521 1.569620 -12.619313 1.334702 5.720065 -1.289608 25.570884 1.227862 -6.975208 8.045953 -0.019791 3.495116 -14.734692 10.895954 -8.350485 6.171471 -4.085875 -7.958439 -11.721689 -3.879871 -14.458998 -13.980534 22.732785 -25.713138 -20.926597 14.408671 0.357983 13.623126 -27.311471 17.734916 -8.448292 19.174232 -4.747510 -6.797389 1.114887 0.292383 -7.650146 14.044861 4.768987 -10.452672 4.939984 12.673446 5.081172 7.425406 -1.917558 11.272019 -5.332912 9.052802 -8.823742 11.455213 -1.579839 -6.751562 -8.325123 -3.065324 -2.081162 5.619473 3.214736 -2.992707 6.438495 0.491249 0.031366 17.022281 6.853809 -7.675295 4.896502 -3.469919 12.784909 -12.502260 -11.816973 -0.150254 10.446563 4.585896 3.284003 -24.357941 -12.862141 -23.925440 -19.163062 -5.852299 4.785154 6.703645 3.616603 -5.105870 -16.425975 -13.124441 25.767424 0.282195 15.246889 12.230947 5.895815 17.008068 10.463038 4.788718 -3.647069 -3.655485 4.490709 -1.471170 -2.469946 -12.422572 10.681570 -14.626478 11.902573 16.637750 -7.131505 13.263567 4.527062 5.958317 -19.795619 18.456979 5.915023 -19.977622 4.580682 18.357282 8.388710 -12.901669 -11.938044 -PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -0.928147 -1.642355 3.727314 2.626818 -0.841110 0.787975 0.262474 -1.238554 0.141347 0.873078 -0.681719 1.743762 -1.325526 -0.068807 -0.313417 0.781489 -2.526466 -1.038563 -0.694864 -1.515884 -1.173951 -0.404182 -0.775569 1.955563 1.624859 0.814172 -1.308199 0.139191 -1.635748 -3.112881 -0.984251 -0.063348 1.282341 -0.002947 1.234452 -4.485307 1.859144 2.395888 -0.453485 -1.674213 1.025756 -0.860850 -0.264802 -0.155961 -1.777255 0.709042 0.868314 -0.370223 0.810937 0.634338 0.386880 0.080724 1.778089 3.577456 0.566507 1.747746 1.880790 -1.090329 0.055692 -0.271017 0.223566 -1.057886 0.710629 -0.323488 -0.071151 -1.630269 -0.059421 -0.507916 -0.378942 0.999777 0.257540 -1.892300 -0.858135 -1.714595 -2.469602 -1.090753 -0.400585 1.435357 2.295571 -1.895789 2.016135 0.653835 0.247406 0.558968 1.512498 0.109923 2.121598 0.578680 -0.229924 0.633522 0.445504 -0.812947 0.516564 1.854806 -1.572318 -1.802120 1.472801 -3.700332 -2.690104 1.463085 0.669896 -1.560956 -1.222377 -0.915995 0.274422 0.406483 -0.827836 -1.504401 -0.779015 0.975349 -0.314094 -0.566200 -0.514959 0.137447 0.053464 0.908398 -2.550792 1.465578 0.929677 -0.217505 -0.828442 2.115619 0.833599 0.987467 -0.047673 1.177712 -0.699247 2.001808 0.058539 1.008851 -1.494316 0.673680 -1.421053 -0.541418 0.731028 -1.170732 -1.466939 -1.217501 -0.033554 0.857867 -0.512533 1.500796 -0.859924 3.114483 1.726234 -0.452286 -1.668184 -1.636986 -2.242301 -2.373537 -0.114996 -0.833192 -2.097263 1.252263 1.316609 0.649116 0.352710 1.188216 -0.122796 0.549285 0.036014 -0.961733 1.006500 -1.444613 1.206961 -1.524755 -1.032020 1.347151 0.770328 1.937073 0.194983 0.198437 0.562154 -0.972540 -1.114617 1.384761 0.743434 0.395512 2.125040 2.258030 4.676949 -1.025908 0.009308 0.370993 -1.101624 -0.261150 0.296065 -1.511901 0.147117 0.787781 -0.369602 2.978232 0.101957 -0.555351 0.935135 -0.248726 0.426617 -1.785933 1.267518 -1.045004 0.771804 -0.672629 -0.914645 -1.391386 -0.507955 -1.658897 -1.747481 2.814309 -3.802102 -1.855613 1.972761 0.186444 1.444754 -3.031538 2.581271 -1.110247 2.500536 -0.762799 -1.074298 0.274478 -0.131698 -1.169610 1.547251 0.634495 -1.222953 0.168873 1.652847 0.759829 0.655765 -0.435679 1.654247 -0.771699 1.619660 -1.099509 1.705266 -0.203824 -0.613977 -1.028113 -0.313308 -0.676384 0.344489 0.614354 -0.035593 0.534950 0.331881 -0.162502 2.032092 1.245314 -0.984409 0.866813 -0.521690 1.411482 -1.602021 -1.492191 0.278715 1.616296 0.511291 0.359548 -3.058909 -1.600140 -3.629611 -1.637626 -0.742738 0.844653 0.884620 0.245194 -0.766669 -1.790976 -1.833024 3.631652 -0.232419 1.179278 1.440143 0.726534 2.094856 1.404780 0.783350 -0.423420 -0.616286 0.579708 0.295639 -0.082661 -1.684166 1.696248 -1.692536 1.086607 2.230178 -1.002432 1.710286 1.009083 0.915667 -2.330594 2.256683 0.450660 -2.332522 0.924233 2.805877 0.614384 -1.398037 -1.381540 -PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -1.908143 -3.727874 8.074623 5.716059 -1.510388 1.752429 1.019435 -2.557052 0.603574 2.192732 -1.499063 3.861207 -3.124706 -0.105188 -0.478825 1.757395 -5.417878 -2.543248 -1.214766 -3.078895 -2.560773 -1.175179 -1.590674 4.219072 3.569395 1.493508 -2.827603 -0.027219 -3.894375 -6.415648 -1.943172 -0.256701 2.859698 -0.148154 2.654230 -9.939944 4.010300 5.091469 -0.883979 -3.927906 2.196684 -1.991277 -0.473489 -0.264213 -3.390357 1.522189 2.175735 0.028523 1.858145 1.482110 0.822704 -0.038929 3.581063 8.029017 1.036090 3.853575 4.126746 -2.325790 0.033716 -0.510938 0.535441 -2.521145 1.727739 -0.369349 -0.428109 -3.366569 0.065457 -1.150514 -1.169693 2.207741 1.127801 -3.876212 -2.055811 -3.442594 -4.885625 -2.262914 -0.653265 3.149465 5.314132 -4.002275 4.684358 1.543379 0.954810 1.058153 3.298194 0.154150 4.678347 1.184108 -0.870205 0.898578 -0.098185 -1.841200 0.901466 3.786139 -3.146526 -3.969935 2.971004 -7.233716 -5.963416 3.076926 1.256658 -3.257545 -2.753253 -1.650660 1.042442 1.095923 -1.743855 -3.515480 -1.989967 2.054618 -1.209645 -1.313178 -0.960335 -0.007263 -0.120318 1.539622 -5.545333 2.848236 2.145206 -0.754121 -1.972833 4.620273 1.278872 2.433386 -0.024287 2.470780 -1.266846 4.091139 0.537553 1.991190 -2.468821 0.875656 -3.273748 -0.874606 1.548160 -1.850244 -3.019203 -2.443882 -0.040329 1.957578 -1.063959 3.195948 -1.685942 6.895418 3.646012 -1.230461 -3.734352 -3.646792 -4.215833 -4.760028 0.064514 -1.927747 -4.283271 2.189599 2.969449 1.277138 0.723124 2.735846 -0.633770 1.747633 0.140020 -1.729378 2.128104 -2.752315 2.707377 -3.386067 -2.268643 2.777259 1.989358 3.894975 0.193814 0.254896 1.248630 -2.322365 -2.649450 2.600851 1.505342 0.835956 4.623067 4.707188 10.551691 -2.624152 -0.010554 0.850848 -2.217646 -0.633945 0.689663 -3.530723 0.549051 1.594571 -0.721409 6.607752 0.231175 -1.697323 2.160018 -0.342780 0.822244 -3.844294 2.762575 -2.335254 1.380517 -1.392712 -1.765456 -3.091354 -1.210657 -3.678374 -3.415215 6.223508 -7.555115 -4.509855 4.110865 -0.137176 3.161269 -6.968462 6.091097 -2.483078 4.784465 -1.811817 -2.363163 0.488413 -0.001505 -2.479678 3.384474 1.442287 -2.508892 0.755829 3.826806 1.645808 1.561710 -0.704103 3.505070 -1.439941 3.208370 -2.307411 3.648925 -0.538896 -1.272950 -2.228332 -0.760232 -1.050410 0.975343 1.100812 0.080739 1.469827 0.519739 -0.003797 4.383614 2.547002 -2.188257 1.912167 -1.119551 3.320452 -3.420824 -3.096840 0.370072 3.111143 0.983448 1.173651 -6.731382 -3.603236 -6.985256 -4.015921 -1.606339 1.891451 1.983874 0.590728 -1.484732 -4.331321 -3.820905 7.334454 -0.375502 2.883698 3.251239 1.550324 4.579296 3.070299 1.474370 -1.068593 -1.196025 1.160601 0.318455 -0.426445 -3.503972 3.493648 -3.849890 2.705345 4.818718 -2.139142 3.469883 1.384000 2.342855 -5.119304 5.133444 1.212550 -5.062217 1.853897 5.791183 2.016404 -3.190092 -3.096612 -PE-benchmarks/boruvkas-algorithm.cpp__createGraph(int, int) = -0.059609 -1.079387 3.164552 1.831429 -0.715165 0.393839 0.963670 -1.270523 0.925920 -0.029952 -0.309926 0.821894 -1.269149 0.178139 -0.876856 0.560163 -2.450966 -1.151249 -0.618016 -1.446633 -1.013872 -0.565852 0.493635 0.598424 1.481883 0.675167 -0.859151 -0.680440 -1.696396 -0.934180 0.731267 -0.281643 0.802051 0.140154 0.739907 -3.715058 1.523595 1.254024 -0.695372 -1.503710 0.991450 -0.601163 -0.149802 -0.455615 -0.516988 0.097264 0.387474 1.111401 0.964861 0.519076 0.155624 0.111994 0.272557 3.682437 -0.452550 1.062462 1.233445 -0.593197 -0.008879 0.399685 0.263570 -0.413778 0.308434 0.153785 0.050342 -1.140875 0.062435 -1.353270 -0.739256 1.217755 0.348450 -1.033458 -0.800607 -0.975731 -1.991130 -0.461816 -1.437026 1.745701 2.134918 -1.790259 1.375534 0.070103 0.500662 0.124807 0.795058 0.285635 1.409375 0.466815 -0.075259 -0.014495 -1.086426 -0.283857 0.229355 -0.053949 -0.812159 -2.440777 1.437159 -2.209435 -1.865514 0.915600 0.878691 -0.974702 -0.633352 -0.263656 0.257704 0.566961 -1.209953 -1.286174 -0.823960 0.614819 -0.210138 0.065531 0.425771 0.026685 -0.481953 -0.504216 -1.825057 0.948951 0.342018 -0.209262 -0.755681 1.740701 -0.417054 0.352355 0.017913 0.807689 -0.850132 1.715552 -0.042167 0.665224 -0.338958 0.562823 -1.206888 -0.135583 0.852062 1.229423 -0.560739 -0.299993 -0.473904 0.703185 -1.034072 0.380854 -0.488296 1.630000 0.747884 -1.123092 -1.615062 -0.768874 -0.728990 -2.099865 -0.039280 -0.841738 -1.212029 1.020570 1.219855 1.663383 0.590235 1.422341 -0.669419 0.595930 -0.111401 -0.587620 0.786486 -0.539884 1.026643 -1.090543 -0.847882 0.292311 0.000332 1.222351 0.147311 0.005322 0.153922 -1.559032 -0.803725 0.308647 1.098001 -0.326181 1.146973 1.823398 1.507866 -1.776327 -0.244058 0.959691 -0.890756 -0.431930 0.317377 -1.374588 0.329117 0.544700 -0.292376 1.721818 0.114347 -0.479817 0.779768 -0.439941 0.464142 -0.912670 -0.026572 -0.673047 -0.333398 -0.830094 0.235617 -1.035479 -0.379618 -1.070936 -1.667776 2.159109 -2.536418 -1.438867 1.922536 -0.291488 1.185595 -2.211827 2.320920 -0.876133 1.511128 -0.168343 -0.167734 -0.211849 0.288273 -1.270484 1.184788 0.265126 -0.850714 0.360517 2.069113 0.800112 0.600248 -0.413675 1.744186 -0.962065 1.311184 -0.813762 1.585875 -0.556970 -1.297369 -0.147394 -0.258117 -0.461610 -0.326230 0.936044 1.222149 0.345009 0.940538 0.862077 1.211948 1.447476 -0.921602 0.717324 -0.190498 1.103051 -0.949819 -0.868814 0.699234 1.140480 -0.039596 0.346068 -2.194557 -2.187446 -2.476831 -1.792120 -0.061906 -0.634108 0.401649 -0.371550 -0.424464 -1.592757 -1.296835 1.196346 -0.381744 0.542499 1.361723 0.360568 1.566177 1.616176 -0.654669 0.155401 0.244795 0.927225 0.197744 -0.368113 -1.697602 1.257100 -1.880387 0.420778 2.155347 -0.568229 1.124060 0.225315 1.536314 -1.793614 1.890036 0.508219 -1.543653 0.984242 2.254888 1.427275 0.443871 -1.061503 -PE-benchmarks/boruvkas-algorithm.cpp__main = 1.912201 -2.131620 15.456709 11.436037 -6.107944 0.533412 -2.014332 -8.036351 4.948254 1.081157 -1.226255 3.675604 -1.852137 3.235496 1.805167 8.691503 -13.880928 -1.423993 -3.419008 -8.093681 -4.997147 -0.196785 2.554868 0.070114 6.396242 7.276409 -5.216614 -0.089653 3.188301 -11.217115 3.161683 -2.589267 4.972541 2.524340 2.979097 -23.545712 10.519466 3.914328 -4.295777 -6.186492 3.970807 -1.316174 -0.371378 -3.419503 -6.619316 2.344812 -0.263080 3.330637 5.443905 4.630417 -0.597286 3.949619 7.437285 14.818849 -1.832583 3.307293 3.584079 -4.620843 -3.471775 -0.499644 2.174076 1.098150 2.487045 0.073195 3.081485 -10.797355 -2.084805 -4.316559 -4.814754 5.209665 0.522101 -5.247248 -5.044515 -5.065353 -4.498818 -2.753432 -9.273447 9.443291 8.017458 -7.980940 2.743016 0.053455 -1.751600 2.244103 1.992017 1.526921 7.068468 3.347242 1.048390 1.906516 4.915975 -6.866659 6.472942 -2.102584 -4.168250 -15.060649 4.027745 -8.348607 -6.072201 4.789708 7.586332 -3.472621 -5.288825 -8.294178 2.816919 2.691501 -3.586558 -3.366528 -0.089534 0.619391 1.179635 -2.019144 -3.114114 0.164658 -0.980069 2.787894 -10.336731 5.125984 0.366528 1.741377 -0.018736 4.953475 2.594684 -3.310591 -1.780499 4.842955 -5.282212 9.739501 -2.862733 6.973611 -2.350801 6.887771 1.489164 3.034186 5.125683 -2.393708 -1.035130 -5.717270 -5.512718 2.908351 -6.646163 2.949215 -0.650499 7.057804 9.870535 0.366571 -6.945232 -2.987601 -7.168093 -11.431920 1.522048 -4.818122 -4.316824 8.327008 5.120457 3.178493 6.300672 0.895591 -5.681829 1.391107 -3.199948 -0.043328 7.465233 1.506385 4.676386 -3.764848 -1.613194 3.536181 0.293423 5.138068 1.112495 -0.565670 3.053759 -4.584100 -1.432559 5.914956 4.893622 -0.384342 2.877159 6.486722 16.295754 -0.753657 -0.915749 5.252531 -4.115634 -1.122534 2.298695 -5.030612 0.400087 2.481238 0.777319 8.257856 -0.521441 -1.656424 0.918788 -0.579964 0.423661 -2.110027 0.635613 -2.617920 1.269259 -2.098490 -0.230429 -5.327661 -0.750711 -4.804095 -5.185358 9.359017 -13.690350 -3.955444 10.934615 -6.475143 4.387045 -7.891948 11.897102 -4.648845 4.897466 -3.925430 -3.361487 0.029665 -5.009042 -8.726962 4.796450 2.540491 0.047134 -2.970362 8.918351 4.441097 -0.197142 -3.621149 7.193672 -3.654562 10.380222 -2.487183 9.488210 -3.608591 1.422817 -2.654406 -0.273712 -5.154943 -4.618622 3.602049 3.611284 -1.325047 5.210205 2.153498 3.529207 7.796152 -5.201360 7.694333 -1.448897 1.665717 -3.844395 -3.351638 5.237114 6.823867 -1.245566 2.935883 -9.249750 -6.499629 -15.693668 -2.289827 -3.069915 3.885604 3.379959 -3.965765 -3.004130 -3.325063 -5.906375 11.861480 -1.475292 0.132717 5.537758 1.205214 5.667114 7.120032 -0.710453 -1.540586 -3.275454 0.000652 4.032795 -0.139518 -8.201321 9.654968 -3.955643 -0.867532 10.697514 -3.931873 3.793825 0.045191 6.866185 -4.892553 7.137075 0.206087 -4.194909 4.677642 9.400337 2.649295 0.333473 -4.345197 -PE-benchmarks/birthday-paradox.cpp__find(double) = 0.334074 -0.556240 0.143885 0.462126 0.558078 -0.507061 0.372486 0.217982 0.280285 -0.634870 0.129657 0.403637 -0.360675 0.475866 -0.594461 -0.248202 -0.494580 -0.943225 -0.007191 0.363928 -1.008018 0.108332 -0.146740 -0.105568 -0.159462 0.743041 -0.598282 -0.105168 -0.987876 0.449251 0.352075 -0.387021 0.176758 0.172068 -0.222412 -0.689039 -0.005853 0.570503 -0.069941 -0.186632 -0.072131 -0.756123 0.175872 -1.052722 -0.459364 -0.136827 0.564785 0.368496 0.082610 0.180395 0.002397 0.391628 0.123247 0.727295 0.004381 0.206950 0.478201 0.353748 -0.095011 -0.097952 0.168914 0.129505 0.470904 -0.445236 -0.403630 0.436694 0.030512 -1.003306 -0.913545 0.383044 0.189699 -0.193660 -0.006875 0.202321 -0.679566 -0.287905 0.072240 0.058460 0.078954 -1.300109 0.489363 0.014326 0.263642 0.075126 -0.039128 -0.140192 0.574775 0.255650 0.106951 0.064097 -0.400191 0.009130 0.032179 -0.543515 -0.327543 -0.744867 -0.152468 -1.002709 -0.282957 0.053571 -0.154327 0.458188 0.225058 0.056545 0.294544 0.012271 -0.344154 0.320479 0.076107 -0.087917 0.204268 0.253023 0.228403 0.218031 -0.004144 -0.800322 -0.829888 -0.491207 0.352341 -0.258615 0.315283 0.852403 -0.405804 0.614809 -0.199035 -0.621295 0.392028 0.849222 0.302629 0.387257 -0.445141 -0.145055 -0.043241 -0.208823 -0.434669 1.023669 -0.266228 0.178514 0.264186 0.277668 -0.502423 -0.463630 -0.165976 -0.149007 0.185171 -0.330968 -0.912601 -0.142101 -0.375334 -0.692938 -0.154981 -0.408346 0.038496 0.728142 0.777282 0.739077 0.415201 1.083466 -0.003931 -0.497053 0.543766 -0.290174 0.537692 0.104558 0.167035 -0.215259 -0.502216 0.727693 -0.413331 -0.369072 -0.163009 -0.708538 0.141707 -0.446268 -0.174005 -0.237867 0.065057 -0.023293 -0.015314 0.002863 -0.448305 -0.661981 0.463001 -0.350213 -0.411214 0.436371 0.036206 0.135395 0.126987 -0.151019 -0.330310 -0.084937 -0.116350 -0.297095 0.380595 0.162235 -0.139718 -0.118896 -0.568692 0.447448 -0.346366 0.009593 0.579824 -0.020154 0.540773 -0.248951 -0.955874 1.006577 -0.573309 -0.212393 0.601389 0.234656 0.568283 -0.364470 0.343099 0.146965 0.706280 -0.093028 -0.173268 0.524375 -0.530717 0.305798 -0.001013 0.285318 0.238565 -0.819454 -0.037750 0.549186 0.281532 0.665843 0.471356 0.571434 0.572395 0.535990 0.149644 0.103695 -0.064199 0.272041 -0.378927 -0.033327 0.323528 0.274631 1.241833 0.358777 0.959232 0.716767 0.349169 0.304124 -0.618235 -0.625313 -0.160615 -0.071207 -0.447907 0.195076 0.349638 0.312995 -0.420394 0.210304 0.195490 -1.147166 -0.954320 -0.627841 -0.051979 -0.357749 0.270961 -0.562165 0.209395 -0.083457 -0.101963 -0.111127 -0.159049 0.863696 0.287852 0.178402 0.697246 -0.001887 -0.460989 0.098723 0.096785 -0.145015 0.511989 0.747518 -0.355353 0.179878 -0.316780 0.500382 0.512848 -0.725279 -0.152744 -0.342895 0.891069 -0.356320 0.025293 -0.279678 -0.387911 -0.412210 0.320562 0.109692 0.581428 -0.736247 -PE-benchmarks/birthday-paradox.cpp__main = -0.051766 -0.189917 0.274164 0.198426 -0.156951 0.034541 -0.066428 0.018262 0.082668 -0.365375 -0.134593 0.063153 -0.194255 0.049220 -0.067440 -0.112803 -0.341321 -0.207170 -0.057025 0.020615 -0.050692 -0.109463 -0.025608 0.205179 0.030822 0.428736 -0.118922 0.124736 -0.249563 0.276879 0.221082 -0.026523 0.131443 0.457881 0.161324 -0.331065 0.021851 0.111183 -0.015515 -0.245550 0.017179 -0.195237 0.067734 -0.358538 -0.092087 0.068580 0.063991 0.129622 0.003146 -0.116741 -0.283187 -0.092576 -0.173881 0.130148 0.010444 0.047940 0.226919 -0.009487 0.044187 -0.181179 0.062064 -0.025587 0.046969 0.101996 -0.210230 -0.092301 -0.047030 -0.311761 -0.092089 0.152974 0.049784 0.170907 -0.156243 -0.174805 -0.290864 -0.027770 -0.048551 0.273033 0.259933 -0.279186 0.130269 0.030728 0.215737 0.080883 0.111475 0.091758 0.125908 0.077218 -0.044298 0.124020 -0.323982 -0.073602 -0.033775 -0.129037 -0.066171 -0.107756 0.080319 -0.442916 -0.138875 0.028106 -0.001452 -0.002250 0.029116 0.109832 0.024591 0.154569 -0.058983 -0.067782 0.066014 0.050083 0.046637 0.041021 0.057951 0.287022 -0.068223 -0.308508 -0.268513 0.088604 0.060078 -0.058946 0.260365 0.207275 -0.195129 0.052301 -0.019511 -0.094774 -0.100175 0.430080 0.104324 -0.144601 -0.084359 -0.141992 0.047444 -0.030546 0.052663 0.479956 -0.214867 -0.111160 0.070186 -0.007771 -0.073390 -0.323400 -0.010506 -0.072952 -0.019239 -0.202332 -0.181724 -0.240700 -0.293974 -0.336210 -0.104068 -0.112174 0.040621 0.373431 0.135813 0.392458 0.091086 0.419025 -0.131902 0.024394 -0.030343 -0.116898 0.009002 0.261080 0.073898 -0.078584 -0.106287 0.162677 -0.183614 0.140426 0.148862 -0.100962 0.016156 -0.187381 -0.093698 0.271492 0.207616 0.119903 0.200194 0.164649 -0.467560 -0.143134 0.005402 0.060432 0.005968 -0.075588 0.088190 -0.100649 0.182403 -0.006041 -0.064127 0.028548 -0.030065 -0.020963 0.046198 -0.016998 0.102697 -0.144076 -0.073989 -0.047284 0.041139 -0.305099 0.197696 -0.104089 -0.078317 -0.108268 -0.200068 0.244802 -0.196998 -0.132477 0.059348 0.199181 0.379491 -0.171387 -0.259615 -0.086372 0.538389 0.108157 -0.005335 0.056668 -0.344290 -0.021943 -0.057844 0.080981 -0.021859 -0.186653 -0.006756 0.122160 -0.057676 0.093023 0.143986 0.018253 0.135204 -0.046358 -0.030833 -0.021879 -0.075801 0.195116 -0.055262 0.007801 0.045853 0.068401 0.351169 0.170677 0.373715 0.298194 0.066506 0.082158 -0.110942 -0.239059 -0.022676 0.185299 -0.130640 -0.077794 -0.090512 0.286723 -0.033620 -0.111617 -0.169037 -0.493002 -0.321893 -0.242310 -0.078047 -0.236780 -0.064106 0.053628 -0.012574 -0.070473 -0.080854 -0.006893 -0.097853 0.552936 0.003815 -0.041205 0.214257 0.185272 -0.292992 -0.143136 0.383945 0.206110 -0.031104 0.252154 -0.449298 0.187544 -0.152119 -0.037071 0.395825 -0.213276 0.106588 0.029818 0.384688 -0.123357 0.363967 0.129510 -0.405946 0.059689 0.101146 0.083791 0.343828 -0.152341 -PE-benchmarks/find-parity.cpp__getParity(unsigned int) = -0.641837 -1.459890 1.681787 1.286020 0.221072 0.649738 1.081003 0.096875 0.309644 1.109349 -0.386390 1.287124 -1.058316 -0.431013 0.617721 0.157556 -0.598023 -1.210592 0.347660 0.134502 -0.222755 -0.843414 -0.530232 1.436104 0.738158 -0.138535 -0.601962 -0.380058 -2.007321 -1.406149 -0.669444 -0.162978 0.761430 -0.203641 1.048345 -1.372714 0.671095 1.163104 0.244403 -1.734043 0.252211 -0.376539 0.483871 0.060835 0.146650 0.607276 1.195677 -0.035222 0.252743 0.544701 -0.280087 -0.637093 0.278327 0.928934 0.531425 1.002445 1.224700 -0.421512 0.373694 -0.336406 0.342686 -1.263543 0.550197 0.181013 -0.620335 -0.153701 -0.125451 -0.133752 -0.578651 0.436823 0.503312 -0.671051 -0.885752 -0.473518 -1.085384 -0.346621 -0.276217 0.729641 1.523242 -0.808641 1.673761 0.888111 1.281423 0.117552 0.880656 -0.054587 0.767807 0.262772 -0.890070 -0.050551 -1.702508 -0.782015 -0.667881 0.492525 -0.436965 0.769458 0.470466 -1.113006 -1.527521 0.873119 -0.391644 -0.376020 -1.044482 0.620891 0.712892 0.944269 -0.231282 -1.066221 -1.065106 0.606212 -0.803418 -0.281669 0.136890 -0.235965 -0.341131 -0.068025 -1.150152 0.150633 1.011136 -0.749141 -0.507781 1.191337 -0.452731 1.433338 0.076230 0.111866 0.116552 0.665363 1.276897 0.047384 0.431771 -1.355382 -2.167392 0.032246 0.015711 0.360673 -0.682740 0.059202 0.429705 0.497011 0.224657 0.570359 -0.209915 1.631875 0.608203 -0.555326 -0.965875 -1.200811 -0.532970 -0.284528 0.331447 -0.299970 0.076245 0.294985 0.688397 0.259968 -0.149229 1.203063 -0.637310 0.684362 0.031304 0.004295 -0.088717 0.049848 0.521532 -0.750669 -0.545609 0.633643 1.019788 0.476776 0.154772 -0.377906 0.511941 -0.448426 -0.935440 0.253994 0.044788 0.463239 1.153257 0.772470 0.964391 -0.943592 -0.564586 -0.081957 0.127881 -0.415313 0.100705 -1.040424 0.667701 -0.070859 0.263421 1.221741 -0.056671 -0.803871 0.917930 0.005747 0.175119 -0.843677 0.802918 -0.883669 0.087999 -0.154469 -0.346741 -0.989014 -0.623608 -0.950022 -0.182355 1.446749 0.387496 -1.532116 0.195999 -0.584272 0.854377 -1.796585 1.209229 -0.532998 0.670612 -0.224213 -0.330697 -0.344567 0.538836 0.144987 -0.083713 0.452171 -0.831194 0.723294 0.685442 0.092611 0.281381 0.486587 0.347824 0.087447 0.099739 -0.188159 0.198462 -0.436237 -0.149758 -0.226007 -0.213056 0.742095 0.802494 -0.784583 -0.070377 0.767385 -0.318271 0.455417 0.920572 -0.009436 -0.578995 -0.079027 -0.083198 1.531795 -0.894070 -0.583148 -0.657765 0.223404 0.178762 0.234450 -1.537231 -0.835349 -0.320409 -1.527321 -0.706677 0.078489 0.368689 0.398109 -0.121684 -1.341669 -0.687706 0.384732 0.406970 0.838891 0.542013 0.082996 1.386686 0.528587 -0.097167 -0.697777 0.149502 -0.164423 -0.586138 -0.298925 -0.428902 0.165784 -1.261699 1.015309 0.929476 -0.340094 0.456127 -0.214644 0.686264 -1.381241 1.536558 0.802309 -1.385178 -0.003169 0.925185 0.988822 -1.486432 -0.937979 -PE-benchmarks/find-parity.cpp__main = -0.128138 -0.756902 1.681723 1.069136 -0.558605 0.239211 0.225326 -0.336309 0.274307 -1.057127 -0.318590 0.565875 -0.791635 -0.108649 -0.483352 -0.266292 -1.537447 -0.876932 -0.244972 -0.399354 -0.046517 -0.272034 -0.020111 1.030228 0.619127 1.113056 -0.493071 -0.206553 -1.480839 0.574069 0.616178 -0.067033 0.675040 1.178909 0.509892 -1.585008 0.520117 0.775376 -0.240586 -1.109625 0.618119 -0.876694 0.021993 -1.170026 -0.579841 0.148069 0.281574 0.440038 0.254255 -0.285033 -0.942199 0.011649 -0.248373 1.353125 -0.162005 0.434172 0.898057 -0.226445 0.252695 -0.315878 0.111070 -0.269025 0.251171 0.022927 -0.648320 -0.599611 -0.109699 -1.067103 -0.380031 0.562964 0.225278 -0.002103 -0.544463 -0.299941 -1.637242 -0.031251 0.256592 1.264536 0.905432 -1.123580 0.812149 -0.045969 0.420196 0.148008 0.489861 0.387449 0.572794 0.262045 0.090239 -0.243776 -1.797667 -0.152791 -0.041824 -0.715964 -0.475161 -0.694898 0.662375 -1.953084 -1.055287 0.178615 0.285247 -0.722443 -0.009133 0.186471 0.101242 0.714442 -0.290151 -0.473786 0.069750 0.685091 -0.152903 0.000755 0.216669 0.572595 -0.254195 -1.007469 -1.168443 0.830926 0.357861 0.026755 0.200145 1.067903 -0.830766 0.185289 0.021162 0.130854 -0.528094 1.384690 0.086645 -0.326568 0.035851 -0.430033 0.162479 -0.115451 0.312045 1.671046 -0.840256 -0.333065 0.020500 0.320400 -0.273558 -0.685973 -0.134733 0.515209 -0.454487 -0.922084 -0.697143 -0.935552 -0.797367 -1.215710 -0.414615 -0.364659 -0.306724 1.659624 0.643273 1.332287 0.391685 1.250437 -0.372947 0.221286 0.170923 -0.348512 0.347778 0.153659 0.480878 -0.572228 -0.536032 0.512580 -0.511374 0.852558 -0.069655 0.215879 0.146626 -0.866583 -0.654057 0.464913 0.707552 0.435388 1.069214 1.117475 -1.208738 -1.034911 -0.123036 0.313466 -0.561996 -0.316476 0.162046 -0.672106 0.367067 0.338065 -0.356067 0.905497 -0.078656 -0.304179 0.340424 -0.005761 0.325441 -0.586364 -0.031540 -0.307210 -0.320888 -0.745249 0.004946 -0.503272 -0.525396 -0.931063 -1.339283 1.351093 -1.433846 -1.085975 0.670768 0.069293 1.186556 -1.371141 0.086450 -0.550927 1.519592 0.572934 -0.054752 -0.094559 -0.704303 -0.798482 0.184915 0.266672 -0.697311 0.039930 0.672793 0.635833 0.087774 0.054703 0.749759 -0.273042 0.885271 -0.570756 0.350983 -0.358420 -0.818859 0.444123 -0.155508 -0.146644 0.144660 0.584562 1.216274 0.432282 1.387320 0.955007 0.799535 0.719384 -0.471125 -0.353225 -0.371164 0.653157 -0.385631 -0.557235 -0.057483 0.788233 0.279891 0.035597 -1.228774 -1.987137 -1.631456 -1.351684 0.250592 -1.281400 0.110714 0.033358 -0.164074 -1.208637 -0.739593 -0.257539 -0.268496 1.267851 0.627780 0.009152 0.997858 0.809493 -0.957770 -0.167198 1.042793 1.001906 0.047592 0.270028 -1.640761 0.903124 -0.940545 0.252827 1.769092 -0.628332 0.646165 -0.211004 1.090920 -0.927150 1.428509 0.365631 -1.710658 0.278814 0.816311 0.094398 0.671887 -0.748860 -PE-benchmarks/reservoir-sampling.cpp__printArray(int*, int) = -0.427819 -1.208906 2.255963 1.649367 -0.095755 0.425377 0.732998 -0.539006 0.640437 0.333123 -0.580748 0.939537 -1.501561 0.120061 -0.087386 0.337194 -1.642247 -1.317375 -0.165865 -0.471369 -0.504873 -0.882100 0.041011 1.169693 1.053343 0.593056 -0.876952 -0.178484 -1.921959 -0.888008 0.069791 -0.222542 0.972176 0.608407 0.661848 -2.322707 0.985248 1.336626 -0.152415 -1.486205 0.731378 -1.018043 0.074443 -0.529591 -0.187130 0.586298 0.798958 0.832474 0.756676 0.282246 -0.023714 -0.406615 0.151598 1.739576 -0.237914 0.990369 1.144687 -0.479823 -0.028252 -0.270870 0.151182 -0.761040 0.683363 0.522756 -0.874633 -0.805167 0.172724 -0.761270 -0.899419 0.950561 0.631786 -0.325154 -1.030327 -0.700798 -1.119028 -0.329381 0.358113 1.118747 1.936079 -1.054071 1.542641 0.405831 0.806826 -0.031810 0.810960 0.064281 1.223127 0.216516 -0.569500 -0.359155 -1.778973 -0.605917 -0.207063 0.700918 -0.442237 -0.542485 0.598018 -1.630128 -1.769153 0.371401 0.090954 -0.735655 -0.828575 0.573380 0.621296 0.755113 -0.182590 -1.258616 -0.473159 0.531292 -0.665675 -0.269957 -0.057197 -0.056803 -0.582130 -0.602915 -1.728343 0.427500 0.462086 -0.627506 -0.375672 1.377594 -0.696639 0.872741 0.187896 0.442507 -0.189144 1.287000 0.540247 0.169425 0.356619 -0.682912 -1.003196 -0.073241 0.469022 1.098333 -0.992800 -0.272321 -0.051174 0.373554 -0.531330 0.031078 -0.318020 1.581137 0.749262 -1.174925 -1.222438 -1.054621 -0.747986 -1.298537 0.206977 -0.712617 -0.500914 0.308456 1.004011 0.715873 0.391493 1.906865 -0.774571 0.815794 0.243320 -0.423928 0.600569 0.082662 0.903054 -1.004605 -0.812778 0.779416 0.446517 0.646797 -0.065595 -0.008978 0.272387 -1.255539 -0.967527 0.666879 0.393673 0.430422 1.408606 1.176760 1.692094 -1.189055 0.144356 0.561094 -0.249129 -0.353357 0.357502 -1.302463 0.782570 0.237207 -0.010795 1.677620 0.060377 -0.931876 0.701510 0.024498 0.378969 -1.265489 0.517481 -0.723256 0.253630 -0.859310 -0.109890 -0.715308 -0.710214 -0.863612 -0.550952 1.866226 -0.722912 -1.860017 0.906743 -0.235009 1.315891 -2.373956 1.327057 -0.824875 1.234279 -0.362533 -0.373979 0.103708 -0.210727 -0.608028 0.557188 0.456571 -0.404557 0.570396 1.141558 0.640334 0.351903 0.155048 0.970804 0.027859 0.778381 -0.517577 0.724166 -0.201873 -0.388833 -0.057664 -0.352023 0.101578 0.503307 -0.024373 0.898422 1.091900 0.466121 1.012193 1.010568 0.864225 -0.662604 0.239526 -0.259098 1.323267 -0.826743 -0.778554 -0.137883 0.648380 -0.042908 0.597309 -1.912344 -1.934956 -0.740626 -2.166933 -0.305078 -0.193346 0.535462 0.304627 -0.144053 -1.621445 -0.854548 0.872398 -0.017858 2.243585 0.734948 0.156309 1.281258 1.083575 -0.511506 -0.467022 0.408853 0.657039 -0.311886 -0.138618 -1.302347 0.929791 -1.306084 0.838058 1.693250 -0.951320 0.706535 -0.632602 1.368114 -1.542387 2.010776 0.680646 -1.591689 0.705761 0.910436 1.300325 -0.228400 -1.013661 -PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -1.880339 -4.203741 6.206549 4.424811 -0.110132 1.733192 2.290618 -0.759196 1.076221 1.680397 -1.674269 3.550963 -4.043052 -0.391509 -0.416266 0.335739 -4.029730 -3.675059 0.018398 -0.902897 -1.472684 -2.407668 -1.183375 4.724857 2.811312 1.209885 -2.266545 -0.601497 -6.070322 -2.909930 -0.970188 -0.369409 2.688708 0.750108 2.425135 -6.715696 2.333150 4.326701 0.110558 -4.615759 1.738805 -2.604366 0.326908 -0.572577 -1.256197 1.333854 3.072715 1.805521 1.491974 0.612742 -0.290927 -1.519427 1.306598 5.928651 0.600283 3.402469 3.856273 -1.540357 0.653615 -0.877165 0.445088 -3.156108 2.000649 1.014405 -2.257445 -1.497524 0.465539 -1.502291 -2.011213 2.111850 1.871571 -1.511213 -2.496787 -2.057974 -3.724240 -1.299776 1.445629 2.982387 5.480036 -3.033612 5.263197 1.759777 2.592674 0.175248 2.967861 -0.013025 3.547040 0.638032 -1.906045 -0.797822 -4.709159 -1.255976 -0.948714 2.509566 -1.644186 -1.388272 1.814478 -5.241196 -5.603966 1.832985 -0.567490 -2.301906 -2.005007 1.252977 1.945977 2.030627 -0.866034 -3.819626 -2.167580 1.790190 -2.328369 -1.087171 -0.037831 -0.009877 -1.119777 -0.980676 -4.463408 1.168096 2.106836 -2.028983 -1.481871 4.261936 -1.232806 3.821246 0.543666 1.262877 0.058766 3.088164 2.449815 -0.026720 0.264199 -2.315433 -3.163807 -0.156452 0.725052 1.658528 -3.095968 -0.807873 0.758408 1.465651 -0.214326 0.930699 -1.169299 5.526543 1.557174 -2.767066 -3.292010 -3.729181 -2.319784 -3.124064 0.284521 -1.789431 -2.380049 1.004821 2.710809 1.464997 0.140504 4.307674 -1.460775 2.397590 0.984313 -1.130615 0.966818 -0.760057 2.365440 -3.015632 -2.307600 2.133180 2.125609 2.356883 -0.483927 -0.176815 0.584205 -2.676429 -3.052227 1.571204 1.110428 1.618433 4.445716 3.261222 6.305933 -3.670316 -0.079935 0.589313 -0.954840 -0.941085 0.590887 -3.806303 2.040484 0.605152 -0.439228 5.145573 0.061941 -2.515473 2.560973 0.151204 0.929725 -3.851683 2.318076 -2.388879 0.359277 -1.846038 -1.106249 -2.290409 -1.855724 -3.370332 -1.833278 5.587266 -3.383282 -5.274873 2.128024 -0.412744 3.523535 -6.800188 4.192714 -2.209369 3.669909 -0.914064 -1.658286 0.278228 0.133177 -0.822356 1.652314 1.397568 -1.878813 2.003254 2.840006 1.355073 1.431423 0.844662 2.398763 0.044064 1.358158 -1.666313 1.801261 -0.429627 -1.385088 -0.916798 -1.014367 0.907950 2.297525 -0.188089 1.295115 2.997604 0.378471 1.840304 3.621559 1.406056 -1.788348 0.162977 -1.176275 4.268976 -2.622209 -2.354611 -1.246801 1.727384 0.596116 1.660896 -5.823711 -4.810336 -2.794800 -5.735391 -1.356288 -0.250125 1.465370 1.395040 -0.414047 -5.161417 -2.698594 3.045660 0.109265 5.225654 2.408917 0.773849 4.223832 2.550605 -0.105944 -1.442286 0.976559 1.553029 -1.183881 -0.441298 -3.114864 1.859367 -4.035716 3.422683 4.267731 -2.132956 2.276134 -0.983374 2.530290 -4.845907 5.598199 2.056484 -5.188957 1.175499 2.935231 3.328852 -2.352869 -3.127466 -PE-benchmarks/reservoir-sampling.cpp__main = 0.146068 -0.648043 1.600868 1.121655 -0.201354 -0.032195 0.604659 -0.339151 0.556271 -0.020982 -0.408356 0.529377 -0.837320 0.378982 -0.566715 0.742313 -1.252017 -0.777027 -0.017797 -0.302094 -0.153919 -0.323924 0.751718 0.095670 0.942173 0.577331 -0.530359 -0.693715 -0.807823 -0.510660 0.569047 -0.446375 0.618379 0.307247 -0.157564 -1.714278 0.693727 0.543181 -0.437822 -0.923939 0.762825 -0.457264 0.029817 -0.703698 -0.183049 0.154358 0.415412 0.819066 0.561668 0.545918 -0.120267 0.061667 0.477560 1.506602 -0.514190 0.421359 0.633561 -0.103556 -0.183263 -0.182169 0.307376 -0.153495 0.297396 0.355602 -0.019397 -0.833187 -0.475151 -0.807876 -0.686806 0.517773 -0.049679 0.414410 -0.844639 -0.014013 -0.583690 -0.041630 -0.862867 0.962278 1.272190 -0.943428 0.774819 0.079149 0.261816 -0.154556 -0.157475 0.373542 -0.055787 0.364306 -0.047786 -0.372677 -0.642785 -0.139563 0.111023 -0.267629 -0.190558 -1.490987 0.685649 -0.659555 -0.848293 0.185020 0.428397 -0.364083 0.136180 0.111838 0.085911 0.756274 -0.563734 -0.621297 -0.045725 -0.202071 0.270716 -0.165295 0.098696 0.046852 -0.389095 -0.454484 -1.138379 0.191684 -0.094411 -0.510710 0.137652 0.493437 -0.178636 0.247507 -0.006057 0.383771 -0.340446 1.077005 0.300377 0.447418 0.371155 0.245133 -0.279375 0.218245 0.810476 1.029970 -0.588335 0.070992 -0.491710 0.183850 -0.370855 -0.419397 0.107804 0.457303 0.553690 -0.807917 -0.841795 -0.479880 -0.293615 -1.020033 0.200254 -0.609237 -0.007461 0.591031 0.636907 0.297622 0.704255 1.326649 -0.737508 0.323006 0.026238 -0.208586 0.569873 0.326797 0.587009 -0.414387 -0.496312 0.370732 0.200208 0.329643 -0.029044 0.119272 0.304852 -0.977279 -0.106995 0.370585 0.534677 -0.413771 0.527111 0.481535 0.128432 -0.413745 -0.112536 0.657487 -0.228108 -0.193304 0.332124 -1.028858 0.681166 0.016372 0.038764 0.460236 0.147459 -0.518323 0.666482 -0.348184 0.068165 -0.422462 0.044656 -0.445677 -0.325402 -0.616050 0.402282 -0.198667 -0.372768 -0.277224 -0.229206 1.065804 -0.706553 -0.331186 0.384693 -0.047685 0.385094 -1.143961 1.345832 -0.605377 0.645387 0.035676 -0.173901 0.136047 -0.148977 -0.614007 -0.245254 0.360189 0.004250 0.257426 0.937670 0.554097 -0.136562 0.069385 0.885699 -0.137248 0.845431 -0.067136 0.464401 -0.281263 -0.554846 0.202805 -0.108447 -0.191689 -0.267416 0.276340 1.238708 0.273264 0.612570 1.052454 0.291554 1.137403 -0.606701 0.400550 -0.212852 1.017435 -0.386221 -0.288891 0.088723 0.578286 -0.302423 0.674913 -1.069082 -1.592400 -0.891359 -0.957706 -0.025587 -0.524090 0.379382 -0.468891 -0.029067 -0.956633 -0.634205 0.105026 -0.290292 0.510988 0.732436 0.023145 0.684887 0.630661 -0.613421 -0.195216 0.236000 0.700349 0.246200 -0.037240 -0.788998 0.495054 -0.887989 -0.073581 1.237224 -0.571231 0.134220 -0.280546 1.022563 -0.643897 1.369275 0.355154 -0.763210 0.831694 0.713835 0.795678 0.386331 -0.546483 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::addEdge(int, int) = -0.142363 -0.811098 2.215602 1.619710 -0.636782 0.228613 0.459885 -0.810670 0.410840 0.109393 -0.373545 0.623246 -1.127401 0.290007 -0.362976 0.743894 -1.859922 -0.705471 -0.384409 -0.879338 -0.505775 -0.381822 0.388413 0.687176 1.153720 0.775113 -0.693760 -0.403430 -0.827671 -1.048432 0.293489 -0.323767 0.873141 0.686163 0.246690 -2.705831 1.113969 1.017997 -0.516628 -0.855101 0.865750 -0.709616 0.002999 -0.692775 -0.869187 0.246668 0.333599 0.445175 0.846397 0.372809 0.119897 0.024934 0.921110 2.154699 -0.404119 0.801101 0.747055 -0.480291 -0.136825 -0.164039 0.157690 -0.258094 0.471997 0.142335 -0.081827 -1.204235 -0.324332 -0.851116 -0.633141 0.789679 -0.005135 -0.238845 -0.969121 -0.549605 -1.161596 -0.477081 -1.054677 1.233688 1.530773 -1.308845 1.053169 0.207913 -0.007529 0.014155 0.443610 0.307560 0.829903 0.311989 -0.038779 0.124269 -0.157994 -0.344501 0.408076 0.322179 -0.598715 -1.737554 0.804313 -1.618709 -1.468856 0.507362 0.577249 -0.790915 -0.264730 -0.286595 0.051687 0.432220 -0.712610 -1.000635 -0.131038 0.196424 0.144182 -0.238204 -0.225197 0.121154 -0.209555 -0.183194 -1.612949 0.614247 -0.001828 -0.351960 -0.118621 1.076528 0.219659 0.296016 0.083721 0.658435 -0.563526 1.518597 -0.061221 0.662951 -0.270901 0.493337 -0.395845 -0.115593 0.851966 0.394777 -0.716788 -0.496702 -0.468115 0.360122 -0.661907 0.162493 0.077261 1.333545 0.846437 -0.688902 -0.967203 -0.607047 -1.009743 -1.691984 0.131871 -0.683235 -0.650511 0.873349 0.853366 0.497938 0.724476 1.103375 -0.446221 0.350883 -0.056758 -0.487685 0.932676 -0.069266 0.869972 -0.764551 -0.639056 0.636973 0.134059 0.935973 -0.006855 0.233734 0.267095 -0.980965 -0.372222 0.599337 0.567001 -0.193819 1.060462 1.118937 1.678721 -0.572765 0.226054 0.728735 -0.493062 -0.130454 0.389388 -1.111071 0.528167 0.326023 -0.418132 1.137461 0.060872 -0.464493 0.592246 -0.371175 0.295117 -0.987249 0.285008 -0.570900 0.083407 -0.854741 0.042235 -0.508414 -0.586601 -0.614883 -0.641723 1.575706 -1.899247 -0.559972 1.114075 0.117535 0.773879 -1.557942 1.928100 -0.790216 1.218575 -0.410591 -0.636320 0.222031 -0.113480 -0.848235 0.406124 0.379440 -0.373419 0.116558 1.159690 0.700488 0.196309 -0.147515 1.258339 -0.258081 1.208771 -0.468041 1.043533 -0.159539 -0.487643 -0.114357 -0.218327 -0.477574 -0.113817 0.518653 1.068007 0.488099 0.669579 0.633252 0.810598 1.252347 -0.632595 0.536112 -0.355917 0.916611 -0.741864 -0.671008 0.334642 0.914095 -0.094061 0.561641 -1.731443 -1.688449 -1.757496 -0.811455 -0.248276 -0.013599 0.580469 -0.112759 -0.211652 -1.186296 -0.985465 1.203102 -0.429225 0.529994 0.824110 0.261457 1.086866 1.052814 -0.108267 -0.262207 0.069648 0.789926 0.368340 0.118303 -1.284740 1.084975 -1.182063 0.334686 1.573178 -0.764205 0.629014 0.106867 1.262524 -1.219833 1.575339 0.267333 -1.159573 1.084719 1.587109 0.457487 0.165061 -0.736008 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::DFSUtil(int, bool*) = 0.063893 -2.030673 5.888093 4.134640 -1.682520 0.751688 0.704656 -2.302282 1.429321 -0.497971 -1.358797 1.802451 -2.834110 0.778607 -1.292493 1.200514 -5.238417 -2.091553 -1.069319 -2.140155 -1.552944 -1.308002 0.584142 2.240852 2.756282 3.397037 -2.003162 -0.250187 -2.761102 -2.385941 1.013908 -0.650852 2.084140 2.652490 1.363579 -6.222861 2.842302 2.825628 -1.004587 -2.638807 1.983247 -2.142654 -0.402403 -1.935942 -1.260801 0.930887 0.802800 2.338461 2.108953 0.455627 -0.553568 0.013796 1.392165 4.622752 -0.876272 2.049703 2.228238 -1.178251 -0.160886 -0.499984 0.362550 -0.768965 1.179280 0.754907 -0.993094 -3.052228 -0.001673 -2.178468 -1.491894 2.555348 0.892783 -0.734457 -2.409084 -1.746559 -3.162451 -0.785810 -1.337767 3.364705 4.141693 -2.852332 2.655097 0.536297 0.689031 -0.074067 1.531061 0.430221 3.079970 0.822320 -0.420988 -0.233267 -2.534641 -1.232944 0.660998 0.634207 -1.555648 -3.789283 1.745487 -5.688841 -3.896242 0.772966 1.404677 -2.170582 -0.728219 0.165758 0.936854 0.848921 -0.906299 -2.391522 0.011759 0.886609 -0.788324 -0.493119 -0.369937 0.498989 -0.627664 -0.413482 -4.243798 1.762187 0.309118 -0.560906 -0.020425 2.996701 0.298549 0.707116 0.187355 1.492782 -1.111232 3.400775 -0.092376 0.991944 -0.278333 0.833791 -0.023421 0.304347 1.736780 1.170135 -2.438039 -1.607455 -0.795159 1.022250 -1.931979 -0.231069 -1.071712 3.226857 1.683927 -2.388811 -2.696016 -1.918646 -2.691580 -4.103330 0.033340 -1.568057 -2.435580 1.163281 2.303224 1.969811 1.719796 2.583612 -1.481210 0.971186 0.326208 -0.684446 2.222650 0.298179 2.187237 -2.180357 -1.678457 1.777686 -0.125111 2.111565 -0.278065 0.341023 0.548523 -2.785619 -1.455927 2.148237 1.454479 0.531216 3.094364 3.190650 3.637877 -2.174910 0.599978 1.845228 -1.286340 -0.713510 1.220365 -2.760001 1.650951 0.884515 0.194783 3.734719 0.087166 -1.119783 1.265771 -0.022605 0.885722 -2.727234 0.530730 -1.513036 0.238963 -2.194351 0.500962 -1.597551 -1.379103 -2.146424 -2.281245 4.183159 -4.425811 -2.763125 3.405828 -0.342123 2.971178 -4.443488 2.636021 -2.047888 3.055291 -0.577928 -1.085231 0.522964 -1.597658 -2.632970 1.485303 0.973916 -1.023307 0.717670 2.521553 1.825429 0.821820 -0.332015 2.858638 -0.806875 2.974540 -1.524399 2.391891 -0.410399 -1.238411 -0.289765 -0.624798 -1.193445 -0.044452 1.132498 2.610770 1.618631 2.362040 2.055082 2.054593 2.888233 -1.691729 1.085009 -0.930764 1.750221 -1.963560 -2.063454 0.784776 1.956355 -0.292727 1.442234 -4.653022 -4.858219 -4.148806 -3.429337 -0.600704 -1.154227 1.491973 0.134190 -0.680427 -3.224877 -2.478246 2.915937 -0.447758 3.250865 2.100829 0.425907 2.713234 2.851060 -1.036892 -0.527882 0.734717 2.122428 0.437454 0.069845 -4.027601 3.177846 -2.417243 1.245380 4.779141 -2.508664 1.902339 -0.822114 3.712824 -3.371988 4.285934 0.996822 -3.755094 1.986156 2.972558 1.883555 0.870760 -2.213230 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -1.277022 -5.271676 9.020281 6.712845 -0.288377 2.022749 2.245168 -1.608015 2.457757 3.303841 -2.728412 4.747457 -4.733993 -0.439318 1.997661 1.945058 -6.351647 -4.739332 0.688033 -1.050327 -2.265533 -3.484385 -1.361538 5.318677 3.953312 3.005810 -3.034997 -0.112418 -5.903321 -5.946419 -1.432165 -1.151912 3.718044 3.242039 4.337245 -8.558478 4.109336 4.615063 0.167233 -6.587978 1.538805 -2.626201 0.506901 -1.120631 -0.110780 3.519282 4.720445 3.710759 2.511708 2.141986 -0.788063 -3.035487 2.328676 5.526547 1.218461 3.933285 4.956002 -3.065723 0.962336 -1.373183 1.110818 -4.549898 2.866297 2.123258 -2.845103 -2.514173 0.824213 -2.073707 -3.057464 3.468851 3.347889 -2.247253 -4.346808 -3.386241 -3.255677 -1.251754 -0.837673 4.797153 7.737873 -3.687468 6.816301 2.892952 4.452668 -0.133931 3.763062 -0.293253 5.703123 1.244129 -3.608989 -0.821843 -6.210643 -5.046645 -0.835401 2.385331 -1.490709 -0.325522 1.479279 -6.354205 -6.935052 2.772317 0.012800 -2.184376 -3.909570 1.635717 3.895115 2.954933 0.058835 -4.723006 -2.184271 1.557348 -4.356881 -1.338748 -0.832715 0.080231 -2.300937 0.384546 -6.392089 1.064981 3.036521 -2.655452 -1.312522 5.181241 -1.421905 4.411255 0.269805 1.321763 0.373674 4.287158 3.623131 1.135893 2.096137 -3.197040 -4.540704 1.820373 1.518804 1.017004 -3.131833 -1.315703 0.875507 2.175084 -1.248689 1.630971 -1.743846 7.799844 3.570993 -3.479809 -5.577190 -5.125183 -3.351824 -3.596587 1.726575 -2.832582 -1.846148 1.223174 3.813440 1.679999 0.616359 4.628100 -3.880215 3.373782 0.268777 0.221867 1.384516 0.843672 3.259728 -4.179032 -1.912806 3.227474 3.560098 1.931785 0.106836 -1.761788 2.007804 -3.756480 -4.366228 3.537685 1.146820 2.258041 5.231073 3.966236 9.535214 -3.731319 -0.896111 1.379181 -0.145794 -2.035407 1.524930 -5.015197 3.746758 0.140719 1.659684 6.720210 0.005281 -3.243057 2.702584 0.808505 0.608115 -4.209741 2.499229 -2.957517 1.239137 -1.529720 -0.612283 -3.914971 -2.406831 -3.668624 -1.006667 7.583519 -2.288758 -7.345750 3.630277 -3.698588 5.152581 -8.802380 5.688948 -3.154041 3.035148 -1.949309 -2.523006 -0.295999 -1.371789 -1.300871 1.859057 2.077989 -1.223910 1.994478 3.729724 1.912286 1.404041 1.332778 2.791307 0.216811 2.236109 -1.192130 2.307248 -1.081274 0.715082 -1.941559 -1.207008 1.314218 2.791718 -1.445471 1.639502 3.574032 0.335709 3.053048 3.683255 1.585897 -3.024633 1.006504 -0.950840 5.557171 -4.002301 -3.326362 -1.237130 1.654394 -0.062918 2.339145 -7.574837 -5.574865 -2.879511 -6.940176 -3.892018 0.846363 2.848238 1.383374 -0.708475 -5.509476 -3.078934 4.672666 1.202828 5.614911 2.835424 0.409179 5.466362 3.466254 -0.068498 -3.110619 -0.269685 0.777478 -1.806827 -0.613462 -4.227352 2.926256 -5.186040 4.185166 6.104059 -3.430175 2.199105 -2.996725 4.961539 -6.330065 6.814654 3.020888 -6.534383 0.859220 3.610472 4.573674 -3.669520 -4.441050 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::size() const = -0.196079 -0.184826 0.760324 0.265882 -0.264421 -0.027373 0.395087 -0.192384 0.481676 -0.043093 -0.284893 -0.488965 -0.535913 -0.194232 -0.094076 -0.127103 -0.628121 -0.302775 -0.131788 -0.353885 0.064829 -0.463384 0.343546 0.018515 0.288132 0.267561 0.068081 -0.093479 -0.078861 -0.101583 0.602393 -0.140422 0.248488 0.476514 -0.020049 -0.813620 0.332695 0.169952 -0.148436 -0.223614 0.214669 0.009253 -0.062008 -0.000888 -0.206227 0.134738 0.131600 0.572050 0.298087 0.029509 0.072738 -0.595092 -0.049453 0.611007 -0.301946 0.044603 -0.026752 -0.175936 -0.015173 0.224315 -0.032945 -0.136572 -0.019344 0.403079 0.065026 -0.106700 0.400810 -0.448147 -0.571249 0.552706 -0.200998 -0.013250 -0.123525 -0.173954 -0.243073 0.057764 -0.213043 0.465061 0.609722 -0.219811 0.435855 0.098851 0.030124 -0.179856 -0.442439 0.079234 0.085938 -0.064529 -0.006524 -0.222727 -0.350527 -0.194139 -0.043882 -0.121474 0.057275 -0.279912 0.436743 -0.388134 -0.224813 -0.119100 0.187519 -0.250063 -0.033834 0.293393 -0.064780 0.142890 0.003112 -0.259624 -0.140572 0.118591 -0.227071 0.392362 0.039606 0.338901 -0.247120 -0.279916 -0.365018 0.035095 -0.340419 -0.206188 0.066759 0.273481 -0.302310 0.108492 0.383153 0.328906 -0.055108 0.475509 0.180192 0.147174 0.171340 0.058967 -0.053983 -0.308795 0.260454 0.647553 0.211872 -0.185423 -0.001096 0.042882 -0.384542 -0.246984 -0.053239 -0.128921 0.248883 -0.600941 -0.157065 -0.006076 -0.275972 -0.665204 -0.092129 -0.336356 -0.074989 0.418012 0.204663 0.637556 0.147831 0.874573 -0.668502 0.140334 -0.148798 -0.477795 -0.193618 0.243860 0.261754 -0.102854 -0.105406 -0.256289 -0.097196 0.344270 -0.089772 -0.273439 -0.152814 -0.599312 -0.069070 0.267281 0.123521 -0.076622 -0.098050 0.532937 -0.022491 -0.544422 0.087957 0.488642 -0.020870 -0.309217 0.448100 -0.519146 0.321348 0.014301 -0.113340 -0.023960 0.029873 0.154179 0.161983 -0.483866 -0.071900 -0.393528 -0.221451 -0.124130 0.139303 -0.458192 0.120676 -0.361721 -0.236538 0.000923 -0.068181 0.242175 -0.152290 -0.298748 0.503661 0.191653 0.253060 -0.293136 0.457159 -0.114767 0.455787 -0.089065 -0.043043 -0.151071 -0.130196 0.053082 -0.208624 -0.209325 0.123888 0.360925 0.582519 0.300573 -0.018446 0.028382 0.655493 -0.180136 0.327524 -0.224864 -0.094860 -0.086777 -0.393697 0.111827 -0.103747 -0.141903 -0.035416 0.183825 0.617009 0.491137 0.130621 0.683767 0.064065 0.320366 0.126830 0.069187 0.128905 0.491387 -0.085742 -0.126856 0.255945 0.390051 -0.469848 0.167491 -0.529811 -0.901792 -0.294400 -0.620666 -0.266074 -0.644848 0.207914 0.002233 0.130062 -0.309259 -0.228440 0.081675 0.006827 0.540053 0.006535 -0.084216 0.241237 0.537232 -0.371169 -0.026407 0.494987 0.530403 -0.118463 -0.074681 -0.481941 0.343640 -0.456741 -0.011353 0.609138 -0.392779 0.092951 -0.180014 0.413946 -0.713893 0.497277 0.207880 -0.208549 0.475850 0.010218 0.325869 0.602576 -0.125440 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isEulerian() = -0.618838 -2.985648 4.413790 3.400931 0.286909 1.143638 1.384912 -0.412982 1.115594 2.017840 -1.366736 2.741078 -2.381836 -0.440837 1.492753 0.867753 -2.620403 -2.799949 0.582712 0.033534 -0.852102 -1.871684 -0.870859 2.997220 1.915265 1.133837 -1.514524 -0.269104 -3.704033 -3.124332 -1.218694 -0.494584 1.876736 1.562573 2.538650 -2.932388 1.949454 2.400103 0.376960 -3.762909 0.596570 -1.146940 0.357176 -0.541458 0.340397 1.943468 2.707085 1.517429 0.972943 1.232572 -0.504739 -1.880961 0.826501 1.965338 0.993037 1.960930 2.730021 -1.383183 0.934448 -0.911521 0.667546 -2.600028 1.371147 1.102475 -1.681864 -0.695205 0.303974 -0.872894 -1.471067 1.589572 1.790784 -1.286630 -2.265304 -1.584423 -1.469519 -0.226359 -0.288827 2.282907 3.801115 -1.664308 3.612840 1.685032 2.703208 -0.142460 1.912745 -0.261473 2.560606 0.693119 -1.993557 -0.658769 -3.845603 -2.614632 -0.882121 0.900639 -0.816962 1.513235 0.796122 -2.748258 -3.521514 1.511704 -0.292088 -1.043115 -1.975303 1.496246 2.060203 1.839522 0.343456 -2.293968 -1.282165 1.049944 -2.325080 -0.748550 -0.237207 0.044920 -1.414167 0.218356 -3.099784 0.409127 1.956535 -1.534383 -0.805324 2.544398 -1.320216 2.601069 0.067641 0.272428 0.489562 2.023320 2.434749 0.375880 1.641301 -2.486207 -2.840114 1.105364 0.496430 0.690336 -1.532770 -0.170224 0.870590 1.181036 -0.152422 0.929806 -0.950475 3.880896 1.408854 -1.899757 -3.009759 -2.807300 -1.494523 -1.130708 0.846245 -1.429939 -0.304212 0.774287 1.873440 0.897269 -0.026691 2.818897 -2.243869 1.737897 0.322492 0.348700 0.200344 0.434478 1.395242 -2.098047 -1.060584 1.825154 2.195529 0.690326 0.115599 -1.012908 1.198780 -1.878092 -2.405142 1.642846 0.246871 1.262862 2.757401 1.804942 3.405696 -1.662256 -0.891497 0.395754 0.162109 -1.184444 0.523386 -2.543118 1.797825 -0.178537 1.076097 3.306973 -0.041792 -1.752405 1.549720 0.398183 0.267929 -1.926367 1.615256 -1.457202 0.448858 -0.495949 -0.376289 -1.914450 -1.167759 -1.715301 -0.329472 3.953337 -0.106848 -4.190314 1.252892 -2.296406 2.570511 -4.342525 2.601554 -1.480592 1.352681 -0.420284 -1.084340 -0.550915 -0.608550 -0.302144 0.559198 1.126426 -0.812709 1.125885 1.701150 0.711798 0.424211 1.014569 0.944063 0.236797 0.898962 -0.428066 0.768429 -0.600526 0.382596 -0.829978 -0.608365 1.037471 1.600024 -1.336147 0.632179 1.819140 -0.044115 1.628110 1.795661 0.425828 -1.579463 0.238130 -0.332913 3.154893 -2.005031 -1.599290 -0.893974 0.457045 0.154154 1.068797 -3.574172 -2.561276 -0.932734 -3.916369 -2.011440 -0.000814 1.595880 0.646885 -0.419922 -2.679876 -1.594048 1.623030 0.897592 3.004824 1.400784 0.104236 2.886671 1.461420 -0.310743 -1.660226 -0.133136 0.153818 -1.183324 -0.428619 -1.724993 1.057371 -2.829262 2.194889 2.970206 -1.494839 1.050164 -1.816141 2.383017 -3.202602 3.414145 1.711022 -3.459520 0.004781 1.572047 2.155386 -2.468988 -2.419232 -PE-benchmarks/eulerian-path-and-circuit.cpp__test(Graph&) = -0.069834 -0.844267 1.757897 1.299581 -0.135561 0.256389 0.394215 -0.484019 0.752878 -0.107657 -0.696025 0.597067 -1.218419 0.071420 0.244468 0.136513 -1.585105 -1.195872 -0.033088 -0.158482 -0.255482 -0.948308 0.161900 0.954616 0.778584 1.186100 -0.683493 0.227182 -1.481274 -0.697987 0.289799 -0.264147 0.788497 1.558011 0.801227 -1.172492 0.821224 0.874407 0.031708 -1.301662 0.444342 -0.910978 0.039336 -0.748269 0.401502 0.913666 0.701078 1.039868 0.740431 0.125685 -0.512307 -0.685687 -0.365172 0.122093 -0.221640 0.563505 0.798772 -0.505866 0.059182 -0.366110 0.118249 -0.646140 0.601343 0.768189 -1.112746 -0.616955 0.362257 -0.769144 -0.876932 1.079895 0.593335 -0.008880 -1.053467 -0.625119 -0.854898 0.016775 0.617148 1.148997 1.615738 -0.578959 1.168185 0.277337 0.924318 -0.304036 0.603920 -0.062819 1.192088 0.161085 -0.677631 -0.449769 -2.193575 -1.233184 -0.382761 0.378383 -0.050425 0.508116 0.138620 -1.844616 -1.279041 -0.055200 0.028370 -0.445350 -0.932880 1.034891 0.856818 0.681099 0.438046 -0.911575 0.034921 0.315478 -0.917707 -0.071135 -0.115495 0.236356 -0.807790 -0.488989 -1.443372 0.167595 0.302592 -0.520877 0.067559 1.012311 -0.833120 0.597426 0.181689 0.150667 -0.009208 1.068393 0.433676 -0.011777 0.912364 -0.887011 -0.474663 0.164903 0.280350 1.171147 -0.871343 -0.266491 0.051503 0.208065 -0.758774 -0.555475 -0.557622 1.049534 0.617454 -1.259710 -1.118475 -0.781880 -0.724299 -1.020509 0.243132 -0.603976 -0.080150 0.170230 0.815786 0.762842 0.398346 1.728884 -1.036579 0.485082 0.228145 -0.090766 0.469840 0.645225 0.740790 -0.813246 -0.456882 0.773466 0.086346 0.222303 -0.022119 -0.236912 0.274849 -1.218371 -1.072979 1.042508 0.233829 0.812328 1.019115 0.855084 0.290440 -0.919717 0.120201 0.618519 0.108377 -0.501004 0.537524 -0.993970 1.099880 -0.009819 0.679956 1.179331 -0.022336 -0.645353 0.338727 0.311572 0.331562 -1.052911 0.091337 -0.583580 0.512711 -0.787106 0.011417 -0.565743 -0.727865 -0.540914 -0.255043 1.406597 0.438826 -1.889752 0.909569 -0.703288 1.628449 -1.952571 -0.086131 -0.694547 0.875870 -0.179099 -0.043430 0.061386 -0.967731 -0.448942 0.171816 0.353996 -0.025217 0.521014 0.576573 0.567507 0.153282 0.262035 0.598154 0.204496 0.669311 -0.255129 0.276046 -0.199046 0.099214 0.103084 -0.285184 0.120504 0.481967 -0.304056 0.983778 1.066481 0.680960 1.336293 0.592544 0.608989 -0.562404 0.021730 -0.161358 0.946840 -0.591582 -0.753565 -0.089997 0.407193 -0.248641 0.442583 -1.422384 -1.967069 -0.187516 -2.251905 -0.554863 -0.677288 0.600274 0.349077 -0.044025 -1.079797 -0.438866 0.258195 0.346633 2.525809 0.301184 -0.172565 0.880007 0.905874 -0.857471 -0.557450 0.548522 0.630438 -0.474901 -0.051037 -1.402255 0.818679 -0.912735 0.643892 1.652127 -1.132980 0.378907 -1.140296 1.607526 -1.272501 1.567526 0.639825 -1.417474 0.452515 0.103640 0.956829 0.288140 -0.883917 -PE-benchmarks/eulerian-path-and-circuit.cpp__main = 1.846144 -0.151361 7.317732 1.770588 -0.789860 -2.079577 4.973077 0.928075 2.963625 -1.144412 -2.819073 -5.093402 -3.864081 -2.097912 2.366696 -0.589544 -9.087358 -4.406429 0.439615 1.224635 -2.486236 -4.602884 5.584200 -0.726151 3.714622 8.273451 -3.301596 -2.112376 4.020129 -0.421490 7.887483 -2.533412 2.205126 11.428321 -0.362222 -11.268989 5.913302 -3.132386 -0.669655 3.574618 1.965837 2.851203 0.136577 -3.719050 -1.403949 2.449759 4.643380 12.487157 4.304478 2.166598 -1.586168 -10.067287 -0.428197 5.806870 -0.279218 -0.962412 2.415360 -0.866131 1.062331 0.629974 0.120799 -4.401450 -0.843935 5.844713 -0.615496 3.966183 6.195074 -9.033608 -4.653832 7.167069 0.362848 2.959148 -2.666836 -0.837384 0.111626 2.486942 0.838932 6.743449 5.956242 -4.637361 3.876156 0.933866 6.068773 0.276807 -8.723281 1.120763 -2.488781 0.010604 -2.516665 -3.651931 -10.156210 -6.998216 -2.530400 -7.273022 1.936902 -5.998904 0.005251 -4.198243 -2.171682 -1.607462 0.053952 -0.089536 0.453091 3.194140 4.676451 -1.855515 2.925175 -1.311795 -0.794486 -2.200395 -8.642160 7.030661 1.287239 3.586375 -4.331651 -0.838234 -5.666359 2.030328 -3.528168 -2.386637 3.753292 3.239819 -4.684428 2.863105 3.019992 0.553233 -0.796347 5.355215 5.152649 -1.144732 5.079701 0.771558 3.830003 -1.364488 3.984265 8.699008 1.107004 -5.438506 -0.561702 0.914591 -6.254417 -4.223617 0.372890 -1.532893 1.380478 -7.733599 -7.628220 -1.245005 -5.419338 -8.826707 2.605551 -2.109913 0.435620 5.684594 2.484747 6.204459 2.181513 5.635592 -8.801277 1.881495 -2.804777 -1.210108 -4.802962 5.605070 2.874274 -1.992167 0.752706 -0.342901 -1.027534 0.914402 -0.966234 -6.435463 1.240712 -7.089667 -2.520493 0.883833 -0.645117 0.281654 -6.624333 2.983870 -1.017285 -4.830035 -1.360259 6.703235 2.674185 -5.205189 7.538711 -3.350546 6.434702 -2.253114 -0.751426 -0.640105 1.745133 -1.319816 2.708520 -2.305313 -2.157449 -2.289047 -4.997474 1.821735 0.527152 -3.366019 2.943744 -4.247083 0.105315 1.000505 -2.904296 2.545779 1.607683 -2.513764 3.822176 0.006158 4.474947 -0.527779 5.661303 -1.109151 2.103879 1.798670 -4.478806 -0.362258 -6.786576 3.485947 -1.258384 -4.359351 4.477464 1.273957 4.235568 3.499413 2.666968 1.081912 3.606328 1.773618 3.671665 1.764781 -5.093194 -3.413784 -3.797420 1.271462 -0.020548 -0.446468 0.823976 -1.110278 6.737086 5.270295 3.089776 10.032545 -0.288187 3.448411 -1.954173 -5.349585 1.743667 6.171960 -2.418289 -3.432740 1.784020 2.472093 -5.586061 1.074063 -4.196404 -8.655948 -4.170492 -8.444534 -6.965818 -5.676183 2.041815 -2.666142 0.711362 -1.126613 1.184459 -0.853138 1.225844 2.763839 2.555756 -3.684752 4.506155 6.125137 -7.151716 -3.956455 8.738863 4.701260 -1.417103 3.892440 -11.487410 4.703760 -3.366374 0.787576 5.939435 -7.096765 -0.904100 -5.669819 7.140336 -6.345950 5.652141 1.045384 -3.790058 0.670408 -4.401564 2.418280 7.262469 -2.146069 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::Graph(int) = 0.692269 -1.244844 3.506913 1.851015 -1.308601 0.339172 1.204345 -1.000455 0.625089 -0.291419 -0.729784 0.919786 -1.462076 -0.256313 0.201414 0.078171 -3.328404 -1.166654 -0.409280 -0.927012 -1.015144 -0.829841 0.313475 1.377666 1.733907 1.777576 -0.539013 -0.520772 -1.380910 -0.523509 0.556903 -0.162742 0.750329 2.097356 2.118593 -2.749548 1.353011 0.789002 -0.207828 -1.777241 0.813692 -0.039710 -0.170455 -0.626550 -0.090767 0.635207 1.035652 2.570358 0.928941 0.575710 -0.710720 -1.245153 0.257827 2.651771 0.619888 0.882439 1.619015 -1.141407 0.721717 0.167642 0.286350 -1.252460 -0.083773 0.343150 0.003560 -0.568120 0.492492 -1.876895 -0.383207 1.675851 0.998848 -1.242425 -1.276438 -1.775827 -1.817374 -0.083316 -2.556553 2.866678 2.433365 -2.020001 1.533652 0.323412 1.150349 -0.363046 0.926332 0.044550 1.782717 0.425304 -0.366870 0.304874 -2.082897 -2.181838 -0.036989 -0.618934 -0.503165 -1.462410 1.142455 -2.878669 -1.924225 1.024968 0.706550 -1.055731 -0.230868 0.475206 0.665278 0.471511 -0.660959 -1.183525 -0.665994 0.512592 -1.161013 0.658925 0.342505 1.231534 -0.870247 -0.224100 -1.673493 1.046842 0.656021 -0.200751 -0.029279 1.855185 -0.501380 1.078375 0.149899 0.277860 -0.312222 1.906961 0.804129 0.154971 0.387447 -0.087152 -0.454914 0.857210 0.734928 1.376718 -0.101848 -0.175162 0.277153 0.974010 -1.101004 0.278208 -0.679677 2.125538 0.072799 -1.553088 -2.375685 -0.849851 -1.659726 -1.771094 0.190379 -0.680335 -1.101418 1.155460 1.127030 2.254503 -0.143511 0.791525 -1.108597 0.197453 -0.112662 -0.393390 0.022062 0.311064 0.934918 -1.319310 -0.289164 0.211673 -0.283915 1.153400 0.328663 -0.545137 0.250203 -1.722290 -1.367305 0.729866 1.194909 0.136012 1.001646 2.047473 0.576955 -1.256664 -0.921278 0.998024 -0.375877 -1.227732 0.824636 -1.284944 1.124807 -0.000843 0.462754 1.461247 0.068774 0.090388 0.967294 -0.276093 0.320793 -0.863317 -0.545120 -0.569158 0.244058 -0.811912 0.667614 -1.228900 -0.541454 -1.087454 -1.364153 2.362905 -1.654503 -1.768477 2.148945 -1.058409 2.239339 -1.778525 2.001621 -0.619333 1.306742 0.138954 -0.284774 -0.098495 -0.737060 -0.733417 1.071771 -0.209418 -0.074937 -0.111710 1.446705 0.636286 0.449977 -0.001416 1.515626 -1.128552 1.149202 -0.483981 1.046440 -0.667333 -0.519872 -0.363624 -0.018678 -0.306711 0.177432 0.321065 1.442703 0.152585 1.283789 1.283389 0.667835 0.749309 -1.060993 0.140150 -0.062005 1.322201 -1.371668 -1.344858 0.670460 1.104817 -0.142978 -0.055397 -2.349364 -2.328127 -2.443136 -1.827235 -1.355630 -1.268259 0.962776 -0.090536 -0.608656 -0.936145 -1.080413 0.719789 0.342558 0.112475 1.239070 -0.142830 1.910125 1.640015 -0.398561 0.062099 0.744766 1.300507 -0.151953 0.001329 -2.239289 0.882888 -2.521375 0.643797 2.652918 -0.676938 1.369578 -0.762324 2.598861 -2.596534 1.509466 0.739954 -2.348113 0.239592 2.309937 0.634620 0.719970 -1.392323 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::~Graph() = 0.256314 -0.477906 2.471757 1.613705 -0.717891 0.117453 -0.091676 -0.897171 0.829631 -0.028229 -0.849852 0.575613 -0.787934 0.035529 0.416175 0.673704 -2.298714 -0.809070 -0.223270 -0.766046 -0.352769 -0.551330 0.110380 0.744866 1.140785 1.157884 -0.733268 0.425186 -0.494938 -1.442673 -0.041217 -0.393613 0.634038 1.034616 1.111404 -1.570503 1.442866 0.661237 -0.257906 -1.157743 0.634601 -0.685902 0.060727 -0.774784 -0.224611 0.993333 0.720726 1.035970 1.060416 0.438991 -0.554534 -0.463434 0.351869 0.859659 -0.166107 0.553668 0.693852 -0.885080 -0.034498 -0.089776 0.070725 -0.659458 0.273748 0.333653 -0.493589 -1.218374 0.154919 -0.671715 -0.458801 1.169990 0.157470 -0.652741 -1.204234 -0.961678 -1.287532 -0.156194 -0.784648 1.741205 1.502008 -1.049639 0.814334 0.249241 0.567684 0.037402 0.499983 -0.005854 1.462049 0.237048 -0.386814 -0.050911 -0.912110 -1.712888 0.260088 -0.280485 -0.211118 -0.548517 0.254747 -2.688425 -1.380702 0.269842 0.652103 -0.706475 -0.604752 0.298335 0.826078 0.498439 0.340876 -0.750267 0.501562 0.256157 -0.666799 0.063607 -0.272513 0.100509 -0.413038 0.266756 -1.779956 0.705434 0.173937 0.003788 0.189444 1.078638 -0.258887 0.155179 0.131310 0.545971 -0.261788 1.528362 0.090303 0.629901 0.134211 0.031996 -0.286289 0.840878 0.502189 -0.289753 -0.556174 -0.080416 -0.233835 0.334483 -1.229297 -0.072302 -0.694732 1.494868 0.603393 -0.932380 -1.308659 -0.675727 -1.654649 -1.323038 0.353511 -0.511287 -0.849401 0.755100 0.760597 1.051247 0.688367 0.888257 -0.957450 -0.114896 -0.142519 -0.025426 0.906818 0.071921 0.939725 -0.882249 -0.058958 0.741728 0.020780 0.468055 0.077302 -0.198180 0.535679 -1.264380 -0.489769 1.254796 0.603388 0.806960 0.982466 1.188593 0.650942 -0.355754 -0.088254 0.864543 -0.170117 -0.616401 0.600590 -0.900138 0.897048 0.256234 1.010732 1.186294 0.014931 -0.112512 0.172882 0.124409 0.371388 -0.798236 -0.246877 -0.489726 0.579557 -0.373954 0.055676 -0.880505 -0.543807 -0.664764 -0.732619 1.516612 -0.792122 -1.399577 1.603283 -1.080687 1.671710 -1.420613 0.776634 -0.807307 1.218497 -0.132235 -0.089298 0.010145 -1.264686 -0.865620 0.507685 0.231701 0.178732 0.116994 0.560545 0.764471 0.200801 -0.000408 0.974935 -0.393958 1.368411 -0.176838 0.570823 -0.490560 0.351900 -0.134303 0.002785 -0.539995 0.212178 0.168181 0.764197 0.369715 0.891701 1.003048 0.647092 0.885073 -0.678572 0.535224 -0.485966 0.616305 -0.826480 -1.031731 0.465253 0.627831 -0.122110 0.196233 -1.829716 -1.654652 -1.839898 -1.341760 -0.713270 -0.680213 0.631694 0.016221 -0.307016 -0.743742 -0.771912 1.182709 0.351125 1.034712 0.412089 -0.187381 0.977955 1.133117 -0.331406 -0.496487 -0.004168 0.455085 0.057251 0.026480 -1.749080 1.382502 -1.126299 0.319199 2.010927 -1.198226 0.492822 -0.465035 0.958895 -1.483077 1.110742 0.361151 -1.384632 0.541052 1.072194 0.271439 0.172272 -0.967219 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::~list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::~_List_base() = -0.087369 -0.264129 0.720739 0.506486 -0.290167 0.036215 0.083844 -0.255226 0.415269 -0.233830 -0.209404 0.050405 -0.487764 0.177861 -0.095168 0.250215 -0.831142 -0.358684 -0.028582 -0.205048 -0.110101 -0.310905 0.314693 0.105864 0.283834 0.563179 -0.220680 -0.026608 -0.228924 -0.097634 0.471586 -0.287258 0.333465 0.573848 0.028127 -1.078061 0.400389 0.149323 -0.226089 -0.410346 0.256229 -0.397379 0.165537 -0.518978 -0.238330 0.117931 0.126173 0.390881 0.379684 0.035850 -0.153474 -0.124188 0.056916 0.632815 -0.368864 0.167170 0.180146 -0.142071 -0.168368 -0.121495 0.101134 -0.008261 0.252680 0.336852 -0.261200 -0.418790 -0.110754 -0.515956 -0.493519 0.394754 -0.095246 0.267724 -0.473960 -0.092140 -0.378067 -0.117199 -0.384639 0.574605 0.701951 -0.473078 0.370855 0.021808 0.175709 -0.002613 0.102660 0.187016 0.322859 0.112391 -0.175199 -0.001329 -0.264462 -0.173574 0.125227 -0.169984 0.026560 -0.587543 0.149171 -0.586544 -0.421731 0.062918 0.170647 -0.047975 -0.134680 0.009155 0.202864 0.313520 -0.277746 -0.418561 0.095927 -0.034018 0.013195 -0.009261 0.013785 0.120365 -0.220824 -0.390731 -0.608164 0.002722 -0.095144 -0.253650 0.199433 0.389611 -0.192768 0.024384 0.055520 0.125725 -0.209208 0.763493 -0.001464 0.143866 0.049620 0.034866 0.023241 0.025417 0.297478 0.600311 -0.211494 -0.173392 -0.194740 0.027889 -0.412791 -0.420277 0.060825 0.143442 0.323129 -0.352620 -0.342412 -0.176404 -0.337070 -0.836024 0.083067 -0.359683 0.030767 0.514163 0.374811 0.352575 0.448160 0.673392 -0.424270 0.151133 -0.141249 -0.128790 0.414559 0.387903 0.377714 -0.217599 -0.200888 0.218595 -0.084103 0.215323 0.069448 -0.128691 0.053393 -0.505298 -0.102949 0.357612 0.359800 0.042829 0.275641 0.254570 0.023045 -0.271317 0.136173 0.397451 0.020487 -0.062367 0.180222 -0.437818 0.397627 0.072140 -0.083058 0.115814 -0.018409 -0.237739 0.088075 -0.106472 0.175417 -0.359628 -0.126404 -0.191448 0.029704 -0.466279 0.217347 -0.182508 -0.312097 -0.152986 -0.140193 0.523684 -0.447271 -0.196245 0.422573 -0.021583 0.566644 -0.507986 0.382044 -0.357781 0.634301 -0.133943 -0.106347 0.052853 -0.309691 -0.201574 -0.037956 0.173569 0.076973 -0.007109 0.350011 0.370840 0.041845 0.087062 0.497542 0.055681 0.401098 -0.045788 0.255275 -0.102987 -0.091023 0.269290 -0.141800 -0.078010 -0.028663 0.207704 0.723156 0.377955 0.411256 0.647129 0.180922 0.446142 -0.258530 0.050552 -0.131369 0.406846 -0.184407 -0.148695 0.035183 0.433478 -0.191301 0.185466 -0.552823 -0.960520 -0.592095 -0.383444 -0.160744 -0.200560 0.123164 -0.049805 0.130453 -0.384156 -0.167104 0.213301 -0.218814 0.627233 0.141572 0.017712 0.364052 0.512752 -0.386154 -0.313600 0.300565 0.314106 0.006739 0.250304 -0.711882 0.426152 -0.483658 0.050647 0.650625 -0.415496 -0.025836 -0.111003 0.683758 -0.337488 0.672710 0.231753 -0.375306 0.496418 0.314506 0.291343 0.508180 -0.285164 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_clear() = 0.314976 -1.009866 6.433739 4.116286 -1.253148 0.271435 1.041284 -3.510137 3.024757 0.433138 -0.920414 0.587916 -2.426897 0.962857 -1.679285 2.579918 -4.976360 -2.014612 -1.485951 -3.542625 -1.241114 -1.304323 2.228830 -0.108017 3.193892 1.227423 -1.990359 -0.843196 -1.923645 -3.765936 2.034238 -1.104926 1.775061 -0.157011 0.079573 -6.791729 4.145084 2.433561 -1.858920 -2.421935 2.583533 -1.649935 -0.533060 -1.134346 -1.041396 0.721601 -0.102083 2.074088 3.038259 1.493527 0.953822 1.087061 1.261492 5.780107 -2.701263 1.729684 0.880862 -0.991259 -1.289119 1.050630 0.319305 0.348818 0.946050 0.907841 0.193191 -3.963085 -0.006159 -1.836945 -2.512739 2.921795 -0.451378 -1.581270 -2.116792 -0.995612 -2.719645 -0.638209 -2.166035 3.229126 3.906469 -2.666926 1.932277 -0.157750 -0.278434 -0.166782 0.125700 0.470517 2.443087 0.732048 0.212946 -1.383551 -1.294568 -0.885249 1.203575 -0.190032 -1.249385 -4.885794 2.494618 -4.100733 -3.336105 0.466022 2.657732 -2.096548 -1.625435 -0.412254 0.730415 1.061355 -1.049300 -2.344143 -0.013980 0.890691 -0.000794 -0.247109 -0.283401 -1.156134 -0.831451 -0.347030 -4.204649 1.609215 -0.752539 -0.198545 -1.227669 2.496780 -0.372527 -0.885345 0.370512 2.551016 -1.746206 3.113164 -1.204738 2.635302 0.087616 2.052988 -1.213363 0.438192 2.283996 0.937787 -1.047997 -0.409674 -2.297992 0.806878 -3.211403 0.232583 -1.258053 2.276180 2.507711 -2.379823 -2.421540 -0.469985 -1.632208 -4.415803 0.483030 -1.941482 -2.360296 1.052395 2.333944 2.298256 2.750461 3.297481 -2.514851 0.772758 -0.184500 -1.047663 2.999113 -0.491757 2.455632 -1.798825 -1.581927 0.858558 0.063531 1.611133 -0.502944 0.563943 0.488226 -3.653748 -0.473770 1.394362 1.395350 -0.398708 1.813360 3.193563 3.566004 -2.645048 0.612056 3.009676 -1.663199 -0.529747 1.107361 -3.164335 0.978942 1.267084 0.730094 3.336296 0.234584 -1.008703 0.848828 -0.876103 0.774369 -2.093351 -0.153912 -1.573448 -0.167840 -1.649550 -0.032642 -1.638907 -1.214702 -1.536503 -2.257686 3.576314 -3.520138 -2.727509 4.505534 -1.302983 1.625421 -4.199273 4.213232 -2.195356 2.095280 -0.829292 0.073499 -0.195986 -0.344909 -3.558750 1.305240 0.624582 -0.549263 1.717203 4.347034 2.158835 0.614173 -1.217734 3.704517 -1.721599 3.901543 -1.536507 3.231686 -1.169975 -1.776064 -0.103557 -0.514857 -1.965143 -1.554979 1.587506 2.860488 1.142195 1.878076 2.366469 1.704726 4.210730 -1.534021 3.099168 -0.631990 1.234322 -1.149829 -1.544315 2.335937 1.661172 -1.080880 1.898718 -4.532640 -4.707131 -4.162576 -3.746429 0.565267 -1.625898 1.316948 -1.232980 -0.603907 -3.283312 -2.658835 2.742919 -0.500830 2.225471 2.171799 0.474530 1.952805 3.469713 -1.733781 0.358506 -0.201362 1.599780 0.951215 -1.471935 -3.205776 3.766495 -2.305541 0.104507 4.595943 -2.127376 1.443145 -0.652523 2.099068 -3.094579 3.725389 0.571198 -1.525327 3.255283 2.679807 2.800808 1.311466 -1.761242 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/eulerian-path-and-circuit.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.040231 -0.673241 2.411878 1.656984 -0.130947 0.130664 0.847906 -1.118135 1.218191 0.431324 -0.341670 0.477467 -1.292556 0.517644 -0.884499 1.209028 -1.651670 -1.075115 -0.324330 -1.115676 -0.416815 -0.611430 1.081269 -0.123855 1.385662 0.252143 -0.826041 -0.824674 -1.373211 -1.354513 0.762171 -0.566979 0.794704 -0.220951 -0.293152 -2.511586 1.423483 1.075661 -0.774116 -1.146039 1.193895 -0.903496 0.019615 -0.526401 -0.033054 0.241917 0.200628 0.796348 1.234719 0.734814 0.584654 0.417532 0.521841 2.360729 -1.289431 0.820792 0.475098 -0.197233 -0.561247 0.306350 0.202544 0.025059 0.567042 0.454038 -0.171050 -1.483541 -0.362975 -0.797955 -1.152704 0.951678 -0.201667 -0.183472 -1.095299 -0.117303 -0.908448 -0.307962 -1.200583 1.090675 1.762417 -1.130942 1.065204 0.006657 0.094688 -0.200433 0.114908 0.292958 0.591023 0.311870 -0.103948 -0.702987 -0.769451 0.019243 0.259612 0.150659 -0.399706 -1.911259 1.043508 -1.014219 -1.503466 0.197548 0.814216 -0.658187 -0.558193 0.154997 0.219415 0.755931 -0.732669 -1.216125 -0.156657 0.143622 0.210981 -0.300790 0.022876 -0.765356 -0.522036 -0.511781 -1.675964 0.360194 -0.256758 -0.525890 -0.652677 0.998962 -0.274289 -0.028449 0.128320 0.933054 -0.626466 1.287799 -0.206812 1.006424 0.329576 0.558273 -1.075247 0.158624 1.056732 0.951537 -0.689054 0.193271 -0.998322 0.218037 -1.040240 -0.085196 -0.242765 0.995592 1.111355 -1.134159 -0.987455 -0.257133 -0.166961 -1.622261 0.386686 -0.833978 -0.449746 0.084541 1.014696 0.576020 1.170242 1.851683 -0.991026 0.467130 0.056166 -0.415625 1.317927 0.002471 1.074599 -0.762640 -0.824975 0.412030 0.372489 0.414807 -0.201887 0.397666 0.245603 -1.555046 -0.117267 0.327016 0.526075 -0.477988 0.937528 0.998143 1.266052 -1.124860 0.243649 1.132171 -0.555729 -0.058891 0.325070 -1.492634 0.645752 0.416382 0.103868 1.171970 0.172111 -0.763604 0.631119 -0.435816 0.360253 -0.895938 0.136128 -0.783975 -0.392828 -0.759966 0.129662 -0.416994 -0.665139 -0.473124 -0.540791 1.528026 -0.914172 -0.906760 1.246382 -0.335863 0.415045 -1.890205 2.103200 -1.007255 0.637587 -0.407510 0.016955 -0.003268 0.426291 -1.214640 0.202319 0.444411 -0.270371 0.893714 1.824248 0.855106 0.192670 -0.245565 1.466851 -0.430111 1.323200 -0.421655 1.273118 -0.396751 -0.821072 0.193945 -0.276495 -0.483044 -0.483341 0.452848 1.504067 0.644754 0.537465 1.102754 0.680434 1.812839 -0.735075 1.184431 -0.288126 0.973560 -0.445630 -0.494545 0.591419 0.530522 -0.371400 0.982844 -1.801526 -2.051780 -0.950890 -1.633008 0.424977 -0.494261 0.490670 -0.495802 -0.067393 -1.653130 -1.028233 0.651749 -0.389401 0.951589 0.901773 0.262429 0.851002 1.255381 -0.785541 0.000811 -0.094160 0.689669 0.322646 -0.606009 -0.974487 1.151003 -1.159005 0.114675 1.605384 -0.780056 0.345050 -0.305676 1.066724 -1.117683 1.803431 0.351752 -0.561999 1.566130 1.135331 1.601629 0.316544 -0.721784 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.202365 -1.180928 5.990142 3.793016 -1.015916 0.342388 1.570648 -3.244632 2.726558 -1.066534 -0.535351 0.887787 -3.000123 1.260208 -3.155669 1.820767 -4.744092 -2.569097 -1.627844 -3.444710 -0.975710 -1.141066 2.550426 0.244701 3.141624 0.626198 -2.302483 -1.636441 -3.900704 -1.509665 2.846586 -0.997544 1.951272 -0.798350 -0.840724 -7.468689 3.428346 2.711129 -2.090462 -2.408468 3.267882 -2.916935 -0.296814 -2.221403 -1.405964 -0.288662 -0.497136 1.508020 2.988855 0.632164 0.546687 2.132478 0.121778 6.793230 -3.662334 1.869436 1.043228 -0.330417 -1.679719 0.920907 0.154166 0.766589 1.286811 0.638857 -0.753382 -4.108424 -0.452832 -2.407868 -2.593852 2.545053 -0.419050 -0.537321 -1.953724 -0.074939 -3.899067 -0.934220 -0.071678 3.059829 3.711732 -3.140415 1.975696 -0.871643 -0.272435 -0.015169 0.537151 0.953417 1.932647 0.603109 0.556999 -1.936249 -2.993024 1.038043 0.759907 -0.107309 -1.236202 -5.686986 2.735216 -4.241737 -3.654043 -0.024299 2.367557 -2.248366 -1.398326 -0.192875 0.293035 1.454338 -1.805239 -2.672919 -0.187247 1.285944 0.632221 -0.508945 0.342811 -1.565210 -0.674811 -2.488035 -4.195059 1.815055 -0.756709 -0.291417 -1.533061 2.915721 -1.429687 -0.943336 0.359901 2.513826 -2.306181 3.242361 -1.745202 1.715834 0.107164 1.373692 -1.355747 -0.718332 2.193719 3.553845 -2.061363 -0.160195 -2.717770 0.564341 -2.996096 -0.934170 -0.617154 1.833922 1.340762 -2.924506 -1.988551 -0.480125 -0.774849 -4.799780 -0.082747 -1.747470 -2.190211 1.382901 2.468819 2.663474 3.062440 4.527769 -1.525297 1.252213 0.429100 -1.702530 3.656227 -0.816559 2.587251 -1.862846 -2.359320 0.932299 -0.771446 1.956670 -0.812634 1.626284 0.128629 -4.021937 -0.746862 0.272180 1.834947 -0.434319 2.475985 3.229370 1.387257 -3.947053 1.126253 2.866408 -2.156690 0.002695 0.597007 -3.121209 0.773604 1.717430 -0.617775 3.458226 0.304867 -2.014246 0.998752 -0.688484 1.364932 -2.343692 -0.219174 -1.733053 -0.963292 -2.386952 -0.345151 -1.059687 -1.632113 -2.071826 -3.216078 3.765126 -4.011535 -2.960985 3.892359 0.113329 1.883334 -5.263243 3.718053 -2.423103 3.052849 -0.413824 0.542273 0.044711 0.488846 -4.115115 1.416311 0.839122 -1.502560 2.062398 4.615328 2.398208 1.028884 -1.288962 3.872757 -1.367717 3.807691 -1.848737 3.403812 -1.140960 -3.220712 0.924091 -0.665401 -1.714917 -1.438170 2.330398 3.826155 1.643165 2.850200 2.812381 2.495524 4.801540 -1.575214 2.357902 -1.078125 1.361901 -0.717587 -1.405219 1.925985 1.887542 -0.516929 1.921640 -4.599717 -6.087290 -4.005154 -4.702077 2.430345 -2.523468 0.535633 -1.118393 -0.361199 -4.658100 -2.559469 0.796406 -1.296888 3.900828 2.495538 0.746848 2.041109 3.551650 -2.887533 0.620971 1.161544 2.531550 1.028828 -1.326142 -3.835851 3.681401 -2.522894 0.251899 4.793741 -1.953809 1.587893 -0.279471 2.260183 -2.669626 4.663229 0.623456 -2.111423 3.797487 2.665933 2.920506 2.326849 -1.722926 -PE-benchmarks/eulerian-path-and-circuit.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::_M_node_count() const = -0.107561 -0.237467 0.616732 0.397810 -0.060010 0.081116 0.166804 -0.240074 0.340148 -0.031953 -0.148730 0.084356 -0.400849 0.088982 -0.328332 0.153879 -0.420487 -0.335677 -0.105494 -0.276213 -0.109836 -0.210198 0.153453 0.058934 0.292043 0.133840 -0.185396 -0.080176 -0.522480 -0.161037 0.193757 -0.107590 0.155174 0.005602 0.021535 -0.512750 0.297393 0.346115 -0.177620 -0.354949 0.256960 -0.347269 0.070001 -0.202127 0.026430 0.071102 0.069400 0.184026 0.270879 0.079839 0.093345 0.035032 -0.007586 0.608779 -0.303848 0.248002 0.193286 0.003201 -0.086739 0.073532 0.031556 -0.025032 0.107695 0.102257 -0.169529 -0.322189 -0.102474 -0.260368 -0.218575 0.254859 -0.109809 -0.054403 -0.294218 -0.149092 -0.407618 -0.123588 -0.518796 0.298240 0.476981 -0.399410 0.304527 0.042351 0.144540 0.039766 0.140104 0.082276 0.221241 0.067213 -0.063775 -0.066587 -0.277243 0.083610 0.016585 -0.025489 -0.153400 -0.444534 0.306116 -0.503502 -0.439601 0.065551 0.137354 -0.154272 -0.050027 0.161348 0.002108 0.192234 -0.223736 -0.336748 0.009665 0.126501 0.101278 -0.020866 0.090564 -0.115403 -0.092285 -0.267130 -0.467600 0.133321 -0.014219 -0.140895 -0.100064 0.381647 -0.123652 0.034093 0.052695 0.159826 -0.162052 0.497691 -0.015787 0.153006 -0.116930 0.083487 -0.426349 0.060688 0.225534 0.307662 -0.265226 0.143370 -0.124270 0.017014 -0.261316 -0.120750 -0.159832 0.182943 0.156079 -0.368903 -0.239656 -0.153097 -0.192931 -0.473399 0.029754 -0.183447 -0.165975 0.069417 0.280815 0.420427 0.264942 0.626693 -0.226022 0.020641 0.003724 -0.198799 0.278847 0.031295 0.287087 -0.219815 -0.242321 0.140617 0.030548 0.135658 0.043984 0.072257 0.029524 -0.435025 0.044555 0.171430 0.210058 -0.064789 0.391200 0.341161 -0.036911 -0.377219 0.086214 0.243427 -0.146932 -0.012917 0.062798 -0.366614 0.210352 0.140924 0.011953 0.246766 0.033682 -0.086365 0.143080 -0.154392 0.183149 -0.305776 -0.025394 -0.216970 -0.132663 -0.289019 0.160566 -0.145230 -0.195298 -0.142921 -0.267340 0.414744 -0.292762 -0.191211 0.293608 0.111346 0.225700 -0.405541 0.328495 -0.264567 0.452502 -0.009747 0.071720 0.007615 0.073922 -0.215385 0.021519 0.120441 -0.125784 0.171522 0.367170 0.233893 0.061013 0.008557 0.415033 -0.163897 0.294137 -0.145570 0.252949 -0.075779 -0.268537 0.175038 -0.105300 -0.099400 -0.038297 0.148957 0.506275 0.245429 0.225604 0.314244 0.209946 0.407893 -0.170525 0.144601 -0.092150 0.277682 -0.183318 -0.157591 0.081292 0.198033 -0.049949 0.073937 -0.498050 -0.630658 -0.357582 -0.414415 0.145212 -0.289629 0.004022 -0.032386 -0.007237 -0.416723 -0.296732 0.206749 -0.161685 0.384611 0.133035 0.071430 0.287154 0.377032 -0.255711 -0.016798 0.155237 0.219390 0.031228 -0.048681 -0.358374 0.340376 -0.353191 0.020280 0.471734 -0.248316 0.143042 0.106003 0.261803 -0.332342 0.503165 0.132307 -0.274004 0.392176 0.394879 0.454789 0.188128 -0.216507 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_size() const = 0.019709 -0.284975 1.090229 0.830628 -0.360563 0.033376 -0.036436 -0.415938 0.309767 0.186105 -0.173089 0.303465 -0.291827 0.199135 0.107024 0.626878 -0.870390 -0.177208 -0.169907 -0.427368 -0.277210 -0.073993 0.215708 0.047906 0.510874 0.583765 -0.329562 -0.063180 0.059231 -0.862181 0.082271 -0.197221 0.385829 0.290219 0.187512 -1.340809 0.650317 0.397032 -0.276390 -0.527019 0.333251 -0.107973 0.059316 -0.203336 -0.357998 0.269135 0.118941 0.152667 0.354160 0.401080 0.038756 0.093501 0.618766 0.827732 -0.054503 0.268966 0.331035 -0.296920 -0.190725 -0.153306 0.166271 -0.034222 0.169394 0.020013 0.151680 -0.681583 -0.266849 -0.317408 -0.365284 0.305374 -0.115022 -0.278603 -0.456396 -0.431259 -0.256313 -0.174338 -0.888114 0.604981 0.638555 -0.581362 0.318909 0.076966 -0.101978 0.087718 0.089938 0.136558 0.280245 0.243139 0.048030 0.182139 0.461122 -0.457009 0.379149 -0.006267 -0.309412 -0.831715 0.375861 -0.509007 -0.480980 0.342908 0.435952 -0.240883 -0.253934 -0.359496 0.054250 0.331367 -0.289685 -0.287963 0.035789 -0.024200 0.231873 -0.137911 -0.249949 0.089548 -0.173497 0.180025 -0.746203 0.315126 0.020960 -0.052776 0.073123 0.337802 0.218619 -0.044810 -0.089016 0.307497 -0.296492 0.839206 -0.010034 0.490805 -0.186926 0.431517 -0.036816 0.209221 0.411267 -0.133347 -0.207654 -0.269150 -0.306841 0.125136 -0.345117 0.140031 -0.046683 0.488666 0.807515 -0.079703 -0.510101 -0.260989 -0.616377 -0.824755 0.126278 -0.353462 -0.107446 0.586177 0.359336 0.154684 0.400499 0.396305 -0.448494 -0.035866 -0.171851 -0.144730 0.445421 0.232385 0.351942 -0.284037 -0.153860 0.317274 0.145295 0.315832 0.141644 0.011834 0.234316 -0.354720 0.017418 0.559983 0.323018 -0.091434 0.288384 0.429441 0.974932 0.145396 -0.123582 0.335504 -0.218877 -0.096956 0.186270 -0.449483 0.159823 0.098241 0.064725 0.460152 -0.000541 -0.041768 0.215321 -0.187122 0.033135 -0.252421 0.157915 -0.235717 0.127421 -0.226629 0.040017 -0.293326 -0.116329 -0.228158 -0.205524 0.688366 -0.746065 -0.133389 0.522921 -0.259153 0.269457 -0.488486 0.884242 -0.346101 0.459957 -0.232101 -0.254077 0.065658 -0.347125 -0.403682 0.098707 0.200913 0.090325 -0.217237 0.551957 0.305224 -0.172083 -0.139990 0.519069 -0.214339 0.714953 -0.093429 0.543456 -0.180343 0.128804 -0.079296 -0.028225 -0.337339 -0.249091 0.101752 0.411542 -0.024911 0.269066 0.222408 0.150758 0.583455 -0.368203 0.494819 -0.064445 0.372520 -0.326480 -0.259579 0.262171 0.572486 -0.074367 0.192555 -0.659870 -0.536075 -0.912744 -0.207431 -0.291848 0.242900 0.286798 -0.251353 -0.180883 -0.179054 -0.475605 0.879401 -0.123501 0.135660 0.297616 0.065122 0.454370 0.439977 -0.015856 -0.158139 -0.224667 0.075033 0.274305 0.069013 -0.463357 0.541279 -0.378922 -0.125520 0.714690 -0.337450 0.240786 0.043588 0.503910 -0.416119 0.575171 0.049459 -0.326069 0.465767 0.675316 0.249284 -0.062961 -0.321438 -PE-benchmarks/tug-of-war.cpp__TOWUtil(int*, int, bool*, int, bool*, int*, int, int, int) = -5.440857 -7.182881 11.322959 7.202752 0.627144 3.716959 3.672531 -0.972538 1.563275 4.095988 -1.791694 7.343213 -5.743502 -1.670662 -1.037373 0.518411 -5.563074 -6.267025 -0.042035 -2.745074 -2.847327 -3.335922 -3.617971 8.248439 4.730439 -0.919419 -4.647631 -0.505004 -11.250645 -8.353419 -4.295625 -0.391175 4.306328 -5.515481 4.185386 -13.655834 4.941296 8.565927 0.172844 -8.193287 3.225697 -3.571252 1.121851 1.059884 -3.742771 2.653665 5.350439 -0.535112 2.395824 1.735936 0.365004 -0.723053 2.792330 12.415077 1.766936 6.030921 7.189820 -2.822787 0.000637 -1.247394 0.615018 -6.096711 2.494404 -0.270462 -2.966556 -2.929262 1.138435 -0.693525 -2.262105 2.449629 3.081870 -5.287588 -2.177884 -3.337203 -9.194822 -3.491430 7.627419 3.257532 8.696675 -4.956355 8.827553 1.870004 4.703259 2.483932 5.620047 0.112370 6.259272 1.224532 -3.126301 -0.797389 -5.425876 0.142996 -1.815731 7.387898 -3.655550 -3.024991 3.723892 -10.018382 -9.763663 4.345353 -0.447369 -4.063721 -5.441020 -0.748298 3.352765 3.421091 -2.209678 -6.252816 -4.782011 4.315224 -3.879115 -1.765400 0.841456 -2.053895 -0.595743 0.025593 -7.049558 3.166286 4.361051 -2.352489 -5.008087 7.878344 -1.827658 6.531205 0.670677 3.891029 -0.946951 3.821613 3.838749 1.161049 -3.000385 -3.822602 -7.558007 -3.606141 -0.417999 0.683763 -6.021003 -2.721002 0.630694 2.711154 0.425678 4.046843 -3.002132 9.778259 3.747447 -3.555175 -4.838728 -6.155290 -4.409319 -5.415603 -0.205417 -2.324130 -6.045519 2.228018 4.326527 1.344023 -0.401126 7.118935 -0.529881 4.650503 1.639544 -3.413985 1.874340 -5.057291 3.455000 -5.508047 -3.953954 3.387287 3.931937 5.709072 -0.755606 -0.105069 1.839388 -3.500099 -4.607238 1.973481 1.807134 2.603526 7.759992 6.495090 13.743450 -6.783101 -1.682640 0.213070 -3.169366 -1.127942 -0.128435 -5.631572 0.860595 2.632628 -1.039792 10.872037 0.256386 -4.672827 4.921435 0.780048 1.931569 -6.546911 5.305114 -4.319034 1.692154 -1.560368 -4.830543 -5.810604 -1.673457 -7.373378 -5.661622 9.588536 -7.975234 -10.534801 3.640086 0.816732 5.756089 -13.383071 7.574282 -3.693857 7.924188 -1.409223 -1.506896 0.251883 1.872050 -2.207402 4.923569 2.193763 -5.374549 3.972061 5.165963 2.186653 2.861292 -0.077974 4.183286 -0.785045 2.564718 -3.451814 3.625529 -1.560382 -3.681189 -2.664656 -1.306359 1.040300 4.174138 0.500045 -2.361817 3.318108 -0.925294 0.723725 8.058366 2.188110 -3.017031 1.098517 -2.168371 7.605723 -4.986412 -4.581262 -2.164027 4.527680 2.790596 1.820925 -10.595941 -5.785120 -7.176045 -11.151519 -1.376255 2.030894 1.266551 2.165487 -1.190322 -9.121128 -4.881359 8.426404 0.965178 9.555134 4.762466 1.832362 7.706377 3.781741 0.877437 -2.572608 -0.433786 0.842894 -1.778181 -1.861787 -4.228781 3.226720 -7.134965 5.171340 6.538340 -3.075138 4.699890 0.611627 0.170197 -8.543588 9.240050 3.628822 -8.365801 1.478657 5.792380 6.383770 -6.254747 -5.297419 -PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -3.132226 -6.036662 10.597559 7.218038 -0.369870 2.736368 2.439643 -2.266575 1.635974 2.432645 -2.538605 5.815833 -5.470663 -0.733306 -0.988359 0.675215 -6.597107 -5.441564 -0.608631 -2.651743 -2.803445 -2.972390 -2.179976 7.071678 4.585507 1.615054 -4.086247 -0.324948 -9.187051 -5.795418 -1.939834 -0.533128 4.125895 0.431733 3.900693 -10.675219 4.333742 6.913198 -0.337863 -6.460124 2.828974 -3.758074 -0.146805 -0.992459 -2.432515 2.162537 4.165184 1.140104 2.492217 1.151073 0.263525 -1.418302 2.317273 9.234263 0.869442 5.263165 5.931858 -2.914756 0.863974 -1.031810 0.698870 -4.563296 3.012322 0.900786 -3.051875 -3.446510 1.137613 -1.928773 -2.441511 3.364805 3.014433 -3.550019 -2.991221 -3.662939 -6.483334 -2.418341 3.509713 4.060434 8.027713 -4.446315 7.639788 2.510878 3.828150 0.715257 4.826301 0.122768 6.391077 1.244717 -2.649487 -0.924540 -6.279233 -1.501580 -0.977966 5.247323 -3.116655 -1.581444 3.482406 -9.519414 -8.695173 3.149760 0.359327 -3.872548 -3.966810 1.014914 2.634155 2.361592 -1.095051 -5.412515 -3.036942 3.252916 -3.730994 -1.623798 -0.566754 -0.774777 -1.124365 -0.112414 -7.108158 2.841986 3.329072 -2.165222 -3.019545 6.812572 -1.281033 4.649567 0.420765 2.809023 -0.705479 4.210387 2.556040 0.898601 -0.855880 -2.693650 -5.399817 -1.044519 1.342440 1.096312 -5.136810 -2.147194 0.649528 2.365586 -0.776399 2.491076 -2.511030 8.975152 2.672507 -4.003613 -5.325898 -5.723285 -4.244453 -5.323577 0.010801 -2.594387 -5.029398 1.499979 4.249377 2.619448 0.558643 6.038965 -1.400763 3.967195 1.326934 -2.069602 2.143895 -2.876780 3.777909 -5.004057 -3.447351 3.566174 2.980368 4.022090 -0.215733 -0.231212 1.374822 -4.316205 -4.700757 2.746267 1.582525 2.525098 7.027667 5.933364 11.233801 -5.936084 -0.123979 1.107380 -1.866751 -1.564979 0.930465 -5.337264 2.095441 1.648078 -0.486997 9.205829 0.404200 -3.878784 3.235571 0.484178 1.549242 -5.790094 3.876041 -3.391184 1.324095 -2.191173 -2.390670 -4.388932 -2.388664 -5.496189 -4.225090 8.855260 -6.902874 -8.683583 4.404435 -0.110286 5.441130 -11.043175 5.855635 -3.636345 6.537088 -1.572551 -2.377709 -0.015611 0.103029 -2.715804 3.874663 2.084025 -3.730018 3.002117 4.789174 2.345105 2.807893 0.236540 3.982969 -0.822086 3.116531 -2.823988 3.408411 -0.655188 -2.582353 -2.011985 -1.424435 0.335230 2.908140 0.212760 0.521590 4.179977 0.845247 1.866322 5.901255 2.755150 -2.981807 0.840767 -1.481990 5.732846 -4.358981 -4.210431 -0.873582 2.954736 1.199857 2.053780 -9.428876 -6.786633 -5.523161 -8.689682 -1.648430 0.238093 2.034142 1.962803 -1.249410 -7.643959 -4.463385 6.150597 0.356711 8.295941 4.069230 1.573364 6.443613 4.111447 -0.014359 -2.212796 0.339642 2.127127 -1.239049 -0.966615 -5.433192 3.977059 -5.630651 4.889490 7.025535 -3.464440 4.124037 -0.408292 3.064855 -7.558651 8.460165 2.967388 -8.193254 1.940053 4.852573 4.758754 -4.031314 -4.842848 -PE-benchmarks/tug-of-war.cpp__main = 0.201667 -0.475918 1.282157 0.905552 -0.240369 -0.048569 0.389245 -0.304591 0.485571 -0.135499 -0.367057 0.358127 -0.660228 0.339222 -0.446300 0.603968 -1.104747 -0.603787 -0.028292 -0.234019 -0.117806 -0.271992 0.641292 0.051070 0.729436 0.630325 -0.410552 -0.458481 -0.542378 -0.334816 0.535690 -0.389106 0.474757 0.448377 -0.087873 -1.260602 0.582056 0.365817 -0.362037 -0.711625 0.575196 -0.377372 0.026836 -0.673042 -0.135053 0.149966 0.293003 0.746156 0.474092 0.403058 -0.169418 0.015879 0.352197 1.082453 -0.437683 0.293552 0.473255 -0.077632 -0.126191 -0.174721 0.254987 -0.065245 0.212984 0.337526 -0.032564 -0.696184 -0.397855 -0.708760 -0.537576 0.468020 -0.069691 0.414461 -0.733969 -0.028999 -0.456183 0.000480 -0.847939 0.839211 1.028835 -0.770876 0.555916 0.065544 0.222216 -0.131053 -0.142666 0.312875 -0.006468 0.305104 -0.044897 -0.241771 -0.505324 -0.173125 0.135726 -0.355617 -0.127903 -1.209451 0.498782 -0.635249 -0.641860 0.115203 0.373976 -0.258397 0.202152 0.124061 0.086104 0.573496 -0.426102 -0.466381 0.101690 -0.203463 0.236146 -0.097806 0.071909 0.124726 -0.309034 -0.367096 -0.938973 0.140020 -0.125146 -0.393215 0.259494 0.378320 -0.121731 0.125929 -0.013107 0.252583 -0.279275 0.941114 0.213456 0.357225 0.270533 0.239433 -0.071272 0.279756 0.673549 0.803870 -0.457947 0.055323 -0.385210 0.129094 -0.366559 -0.443295 0.069835 0.269774 0.385832 -0.669504 -0.687085 -0.364607 -0.344132 -0.876208 0.166921 -0.502451 -0.009468 0.520582 0.516320 0.320120 0.625095 1.031305 -0.633950 0.189310 -0.018788 -0.117109 0.481500 0.371258 0.474909 -0.308165 -0.362586 0.326761 0.071162 0.232626 0.017682 0.040905 0.244155 -0.809606 -0.027366 0.391425 0.460297 -0.306444 0.410806 0.365643 -0.119720 -0.239885 -0.059823 0.581316 -0.128530 -0.172747 0.305120 -0.801931 0.607927 -0.009304 0.101397 0.271947 0.102846 -0.344766 0.475061 -0.273663 0.079966 -0.335222 -0.057098 -0.320672 -0.237033 -0.546045 0.459518 -0.144119 -0.308778 -0.173536 -0.173960 0.828544 -0.582057 -0.180008 0.353908 -0.040959 0.393039 -0.782100 0.929534 -0.493202 0.586573 0.082577 -0.129448 0.132749 -0.296864 -0.497123 -0.242178 0.290303 0.086512 0.122374 0.650129 0.474827 -0.140196 0.083317 0.715496 -0.114365 0.718864 -0.026648 0.343393 -0.214394 -0.390985 0.225458 -0.090793 -0.202095 -0.250496 0.239474 1.086725 0.218612 0.601460 0.921078 0.139881 0.920262 -0.499441 0.278383 -0.175250 0.748835 -0.319122 -0.229375 0.096902 0.475612 -0.293494 0.505575 -0.831083 -1.337297 -0.792120 -0.675267 -0.080854 -0.513216 0.307720 -0.379887 -0.006693 -0.665148 -0.490123 0.101396 -0.248071 0.409845 0.540686 -0.019209 0.525546 0.540319 -0.539599 -0.187266 0.243553 0.592846 0.215695 0.071718 -0.741511 0.458365 -0.690274 -0.117377 1.055918 -0.522149 0.069385 -0.258652 0.898138 -0.487918 1.070066 0.288964 -0.623106 0.671978 0.555000 0.573871 0.479937 -0.443778 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -1.025992 -3.089318 4.745807 3.635760 0.389791 1.249633 1.855936 -0.814065 1.001791 2.577178 -1.144279 2.693941 -2.905242 -0.386779 0.423869 1.069933 -2.525474 -2.593493 0.152123 -0.720979 -1.088678 -1.782214 -0.633180 2.957929 2.429511 0.616567 -1.662681 -0.759278 -4.090608 -3.552631 -1.286953 -0.393593 2.028769 0.827933 1.822391 -3.696956 1.975078 3.174374 0.007825 -3.238814 1.160886 -1.296076 0.195272 -0.031527 0.040395 1.682908 2.423044 0.906249 1.318612 1.276670 0.563790 -1.366883 1.822376 3.147209 0.526514 2.495924 2.655154 -1.334684 0.797649 -0.529102 0.485730 -2.379182 1.520250 0.716850 -1.216219 -1.271602 0.118453 -0.655596 -1.467629 1.584844 1.370232 -1.356229 -2.208222 -1.674314 -2.042665 -0.870513 -0.533924 1.876955 4.045737 -1.889691 3.896194 1.742861 1.959925 -0.246450 1.988815 -0.147799 2.460802 0.608461 -1.664883 -0.348829 -2.934573 -1.737365 -0.687584 2.315450 -1.240462 -0.109677 1.389101 -3.169153 -4.109454 1.628878 -0.085869 -1.450730 -1.929804 0.989484 1.305995 1.437477 -0.355364 -2.813523 -1.541750 0.955543 -1.700123 -0.916595 -0.380128 -0.488780 -1.019696 0.445013 -3.208111 0.617080 1.490779 -1.726879 -1.466283 2.826467 -0.358590 2.742120 0.243156 1.049612 0.138469 1.768554 1.928646 1.003847 0.804024 -1.454577 -3.374759 0.137198 0.934221 0.277933 -1.923639 -0.341247 0.269989 1.112333 -0.134246 1.657561 -0.728809 4.420014 1.888757 -1.951738 -2.646189 -2.582516 -1.484851 -1.753193 0.865317 -1.283552 -1.123717 -0.107670 1.957323 0.345029 0.155232 2.778611 -1.353449 1.580598 0.516062 -0.420059 0.722581 -0.498152 1.716622 -2.232822 -1.491379 1.641392 2.384742 1.207015 -0.008336 -0.296618 0.895756 -1.817750 -2.033004 1.198212 0.168782 0.462632 3.171648 2.270469 5.480973 -2.053299 -0.281804 0.572929 -0.314990 -0.709862 0.521038 -2.953496 1.814504 0.167127 0.321910 3.734006 0.116193 -1.687057 2.048074 -0.082432 0.403558 -2.555501 1.940497 -1.846473 0.408676 -0.983644 -0.678348 -1.808612 -1.370935 -1.789436 -0.381891 4.062622 -1.225322 -3.416094 1.539488 -0.832493 1.737028 -4.714691 3.803681 -1.586241 1.501202 -1.065762 -1.433503 -0.023833 0.625036 -0.599378 0.665365 1.115498 -1.356429 1.635985 2.215034 0.821652 0.730678 0.592321 1.606556 -0.001839 1.088060 -0.947236 1.482540 -0.270237 -0.337033 -1.182249 -0.677708 0.779153 1.388820 -0.860204 0.530558 1.932165 -0.441000 0.907606 2.156035 1.158262 -1.474316 0.799110 -0.349893 3.200148 -2.183647 -1.671510 -0.679246 0.663165 0.144166 1.534595 -4.160005 -2.583520 -0.860139 -3.590440 -1.592233 0.674712 1.480196 0.857032 -0.529364 -3.336180 -2.111711 2.409731 0.393919 2.092835 1.670889 0.545703 2.967313 1.681867 0.448943 -1.162567 -0.575497 0.563691 -0.750929 -0.867388 -1.443936 1.250153 -2.815217 2.296043 2.746327 -1.530244 1.481666 -0.992895 2.046398 -3.580078 3.837372 1.467505 -3.202030 0.999041 2.377098 2.825622 -2.721473 -2.213502 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycleUtil(bool (*) [5], int*, int) = -1.953148 -4.073749 6.934704 4.921207 0.158696 1.806325 1.743639 -1.409589 1.506878 2.823339 -1.565255 3.890020 -3.564398 -0.635261 0.389685 1.153800 -4.051079 -3.628603 0.037703 -1.456972 -1.927788 -2.276811 -1.439172 4.311984 3.052527 1.121163 -2.611226 -0.104176 -5.557206 -5.231117 -1.761688 -0.545259 2.737594 0.569170 2.968287 -6.414396 3.150060 4.413545 -0.044269 -4.556966 1.452884 -1.992117 0.229011 -0.283611 -0.720645 2.222494 3.231405 0.872980 1.800076 1.390181 0.450601 -1.493101 1.966057 4.990257 0.827912 3.415868 3.730735 -2.158157 0.784311 -0.743027 0.624360 -3.350550 2.125135 0.852836 -1.979388 -2.043966 0.674888 -0.950927 -1.896078 2.304003 2.158849 -2.544411 -2.491293 -2.556917 -3.518497 -1.502021 0.863925 2.549604 5.477448 -2.616803 5.244491 2.145240 2.929219 0.318450 3.212610 -0.184386 4.354851 0.877414 -2.333531 -0.468578 -3.850104 -2.121333 -0.782468 3.522857 -1.775241 -0.160268 1.929245 -5.432517 -5.669005 2.376712 0.096278 -2.063176 -3.401531 0.788220 2.269398 1.795751 -0.407338 -3.722571 -2.141221 1.767390 -2.854932 -1.131962 -0.436623 -0.754915 -1.148071 0.686148 -4.628214 1.306597 2.352969 -1.758687 -2.157492 4.285799 -0.676800 3.317555 0.215143 1.658280 -0.127650 2.600457 2.245922 1.106217 0.021423 -2.021978 -4.427052 -0.126535 0.961196 -0.000438 -2.842880 -1.229142 0.402857 1.617679 -0.554691 2.116078 -1.721012 6.240996 2.611372 -2.448443 -3.778427 -3.785041 -2.597778 -2.944030 0.740313 -1.806440 -2.508098 0.542274 2.815115 1.050460 0.298892 3.650872 -1.668226 2.568381 0.506229 -0.768986 1.249988 -1.238395 2.485126 -3.242112 -1.901871 2.433468 2.818018 2.210398 0.044465 -0.756842 1.275506 -2.571803 -3.174898 2.046103 0.609780 1.510446 4.367419 3.478836 8.186614 -3.442979 -0.481933 0.772748 -0.667182 -1.128976 0.718081 -3.624634 1.869263 0.669544 0.333010 5.805910 0.144848 -2.539270 2.273072 0.382967 0.791496 -3.646578 2.606985 -2.360141 1.033380 -1.048364 -1.459992 -3.123311 -1.598058 -3.249419 -1.815692 5.814791 -3.049155 -5.728095 2.811032 -1.246677 3.369790 -7.024277 4.166439 -2.335031 3.102319 -1.467802 -1.642340 -0.212135 0.223681 -1.247059 1.935035 1.484092 -2.075061 1.992615 3.134731 1.360392 1.520092 0.420808 2.325243 -0.274465 1.802481 -1.443183 2.195158 -0.606130 -0.627782 -1.648755 -0.926185 0.648713 2.062885 -0.692795 0.043881 2.688061 -0.214550 1.192689 3.429011 1.490604 -2.097550 0.833400 -0.623078 4.024040 -3.021629 -2.621830 -0.724966 1.502906 0.460916 1.593552 -6.009185 -3.748049 -2.483780 -5.502681 -2.018828 1.062758 1.660266 1.272958 -0.802624 -4.552823 -2.764361 4.542373 0.692130 4.487852 2.378660 0.793735 4.243255 2.576489 0.340922 -1.905922 -0.553636 0.551167 -1.018797 -0.922605 -2.880549 2.365763 -3.840395 3.283704 4.224332 -2.366356 2.286989 -1.012288 2.376077 -5.009764 5.320004 2.025182 -4.856024 1.051489 3.108242 3.769877 -3.547731 -3.211152 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycle(bool (*) [5]) = -0.385848 -1.854124 3.961570 2.842644 -0.126166 0.652940 1.064318 -1.168494 1.661887 0.747452 -0.921170 1.467758 -2.169369 0.213937 0.032378 1.106897 -2.930265 -2.241146 0.002558 -0.956946 -0.908242 -1.479026 0.321632 1.410057 1.783497 1.127016 -1.448192 -0.329020 -2.748440 -1.975557 0.534469 -0.727879 1.557206 1.179021 1.114120 -3.932330 2.050715 1.782370 -0.408151 -2.550768 1.007136 -1.482235 0.189646 -1.076136 0.110428 1.154835 1.362407 1.662083 1.518549 0.792474 -0.091287 -0.619395 0.326027 2.749290 -0.721517 1.492164 1.564996 -0.939267 -0.034407 -0.199692 0.452759 -1.138345 1.249760 1.134139 -1.275749 -1.607701 0.171972 -1.349475 -1.714326 1.745196 1.121590 -0.469694 -1.905744 -0.849563 -1.516700 -0.513944 -0.517681 2.045204 3.295520 -1.683941 2.543070 0.780126 1.672909 -0.153951 1.237310 0.126525 2.246899 0.515000 -1.235651 -0.791554 -3.003017 -1.369310 -0.230773 0.610590 -0.483431 -0.896050 0.894347 -2.380523 -2.801817 0.741954 0.470912 -0.812132 -1.715276 0.819072 1.470696 1.292175 -0.281488 -2.076705 -0.658473 0.592246 -1.374221 -0.476904 -0.090484 -0.431529 -1.059705 -0.678979 -2.862170 0.402610 0.673600 -1.042554 -0.690462 2.147936 -1.090023 1.004874 0.143253 0.754630 -0.379605 1.980516 0.855263 0.691156 0.997505 -1.015653 -2.018545 0.541290 1.053036 1.610760 -1.258623 -0.348857 -0.395722 0.716802 -1.188133 -0.025339 -0.598524 2.551578 1.390359 -1.904550 -2.225921 -1.625068 -0.856081 -2.033331 0.691726 -1.413466 -0.660455 0.489056 1.771522 1.201613 1.037245 2.708339 -1.843133 1.596361 0.022541 -0.072212 1.243328 0.509023 1.587708 -1.603972 -1.032668 1.181220 0.932135 0.743347 -0.037862 -0.516589 0.676708 -2.212458 -1.586014 1.160196 0.625366 0.538987 2.005499 1.670272 2.749972 -2.201361 0.021146 1.214979 -0.210923 -0.670869 0.717778 -2.231215 1.552524 0.273105 0.428782 2.525959 0.040970 -1.635548 0.910425 0.156130 0.517563 -1.745460 0.545668 -1.218054 0.138717 -1.066223 0.053302 -1.466110 -1.173272 -1.354191 -0.745662 3.075731 -0.916281 -3.028547 1.882147 -1.296250 2.055262 -3.770195 2.172229 -1.534017 1.328688 -0.750925 -0.512362 -0.200040 -0.290074 -1.185231 0.653232 0.873254 -0.553655 1.108601 2.179590 1.157208 0.628641 0.293390 1.661118 -0.058155 1.383836 -0.576387 1.355189 -0.615587 -0.373358 -0.179479 -0.590642 0.176085 0.529296 -0.108400 1.578679 1.694952 0.773202 1.867714 1.378009 1.506000 -1.325037 0.642525 -0.368291 2.043767 -1.287604 -1.152651 -0.019969 0.688362 -0.394740 1.174440 -3.160438 -3.191662 -1.073986 -3.304535 -0.744842 -0.289797 0.926299 0.203695 -0.134209 -2.640080 -1.280298 1.307993 0.101226 2.912246 1.254311 0.171696 2.025249 1.894610 -1.031389 -1.070629 0.320892 0.726437 -0.438127 -0.417815 -2.211201 1.726686 -2.161552 1.286686 2.910376 -1.584003 0.728436 -1.387789 2.438202 -2.374440 3.224918 1.175717 -2.330016 1.126806 1.359829 2.447160 -0.310793 -1.725381 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -0.398571 -1.108508 2.802028 1.897611 -0.660897 0.439600 0.279110 -0.920818 0.715939 -0.556112 -0.687867 0.947942 -1.454017 0.174670 -0.302519 0.117019 -2.474058 -1.333755 -0.501357 -0.889803 -0.653556 -0.773055 -0.061764 1.442641 1.084693 1.275040 -1.088869 0.253172 -1.895091 -0.665255 0.449988 -0.205049 1.083568 1.011427 0.928069 -3.247604 1.307577 1.467850 -0.305004 -1.583714 0.866327 -1.318355 -0.055439 -1.055523 -0.762142 0.521569 0.533276 0.933203 0.858774 -0.038986 -0.546838 -0.094404 -0.085561 2.158046 -0.309911 0.992745 1.294738 -0.640794 -0.179663 -0.357915 0.116058 -0.580586 0.679221 0.420792 -1.035101 -1.287734 0.326272 -1.105442 -0.879315 1.208444 0.721179 -0.498413 -0.952187 -0.947898 -1.830956 -0.439080 0.970488 1.565572 2.011689 -1.367688 1.411718 0.175077 0.721089 0.234244 1.024777 0.194410 1.751029 0.296007 -0.347066 -0.235070 -2.015466 -0.674410 0.061498 0.450640 -0.636819 -1.120027 0.699896 -2.836246 -1.906725 0.322085 0.431739 -1.025348 -0.909240 0.269307 0.708533 0.672356 -0.172415 -1.168003 -0.176923 0.820993 -0.737092 -0.175607 -0.090181 0.274082 -0.428875 -0.816326 -2.127830 0.948947 0.484865 -0.184057 -0.079075 1.702631 -0.776723 0.469560 0.128449 0.566622 -0.561009 1.744806 0.096013 0.011431 -0.106992 -0.492756 -0.281858 -0.202928 0.447524 1.262287 -1.254294 -0.802452 -0.135588 0.450946 -0.914632 -0.304698 -0.566637 1.547746 0.578140 -1.254105 -1.329149 -1.204292 -1.412932 -1.983920 -0.134245 -0.746710 -1.090590 0.980809 1.163615 1.346491 0.647678 1.893690 -0.697794 0.767704 0.192610 -0.592126 0.922029 0.037837 1.053053 -1.131181 -0.854125 0.967285 -0.209284 1.114404 -0.046083 0.035804 0.251311 -1.492123 -1.144136 1.009763 0.764729 0.870050 1.602098 1.666740 1.395710 -1.426089 0.244284 0.733285 -0.552028 -0.447210 0.486517 -1.186363 0.607247 0.527617 -0.061121 2.092068 0.006318 -0.877344 0.436540 0.232985 0.561865 -1.435514 0.292772 -0.679942 0.462812 -1.091712 -0.149792 -0.990930 -0.728760 -1.355218 -1.426686 2.158805 -1.741179 -2.264671 1.529308 -0.132603 2.038171 -2.680841 0.707415 -0.983701 2.112725 -0.197866 -0.277966 0.176013 -1.009273 -1.194822 1.005561 0.447802 -0.542148 0.302283 1.168992 0.930784 0.497108 -0.115546 1.239082 -0.234766 1.307567 -0.817646 0.945459 -0.350293 -0.591828 0.082416 -0.344791 -0.323635 0.373253 0.455615 1.049336 1.080912 1.268502 1.206395 1.273627 1.107325 -0.768780 0.132792 -0.416930 1.004741 -0.880288 -1.044359 0.133475 1.152585 0.067446 0.380261 -2.274094 -2.549574 -1.901839 -2.483654 -0.136713 -0.599762 0.436294 0.324948 -0.269085 -1.730535 -1.002221 1.241510 -0.087719 3.095378 0.889538 0.152779 1.454546 1.443446 -0.878332 -0.469023 0.868072 0.974507 -0.148504 0.124991 -2.256000 1.597182 -1.278896 0.772078 2.438055 -1.274154 1.041142 -0.549429 1.616029 -1.707944 2.271038 0.646225 -2.155641 0.724096 1.074141 0.979524 0.419876 -1.181879 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.478864 -0.480500 1.647554 1.091879 -0.637432 -0.067234 0.180850 -0.448288 0.448593 -0.712455 -0.602503 0.422746 -0.622068 0.356077 -0.709463 0.487177 -1.633310 -0.583167 -0.148013 -0.345343 -0.101024 -0.143463 0.564515 0.255315 0.821696 1.251058 -0.421720 -0.285355 -0.504209 -0.138346 0.686163 -0.365803 0.466991 0.862140 0.115925 -1.364219 0.707514 0.483611 -0.437090 -0.859517 0.676607 -0.505495 -0.162869 -1.021385 -0.321805 0.153329 0.214156 1.175163 0.406238 0.314157 -0.658369 0.137883 0.388749 1.195774 -0.308595 0.312880 0.734441 -0.063643 -0.060398 -0.258613 0.288986 -0.005006 0.072649 0.235967 -0.015379 -0.938470 -0.463396 -0.937824 -0.338126 0.541176 -0.017099 0.404439 -0.789053 -0.186987 -0.812200 0.076775 -1.113726 1.205687 1.073249 -1.047776 0.497780 0.020080 0.207498 -0.061875 -0.119850 0.417179 0.093795 0.429343 0.147828 -0.160203 -0.747295 -0.335586 0.343339 -0.883782 -0.337555 -1.801134 0.626174 -1.443985 -0.725058 0.079129 0.576939 -0.536383 0.677775 0.109924 0.027676 0.555879 -0.425636 -0.305350 0.462420 -0.108396 0.254332 -0.043921 0.080585 0.564335 -0.156723 -0.399860 -1.193678 0.520868 -0.051383 -0.149960 0.722198 0.484889 0.046962 -0.017511 -0.085922 0.193033 -0.389692 1.261080 0.114090 0.219486 0.062133 0.483447 0.570645 0.619717 0.771107 0.719060 -0.690899 -0.042467 -0.262231 0.236542 -0.411917 -0.678426 -0.155572 0.171739 0.045233 -0.798500 -0.782622 -0.585730 -0.873448 -1.080837 -0.006187 -0.474777 -0.411451 0.848251 0.595795 0.694374 0.721515 0.889867 -0.656470 -0.043211 0.013827 -0.062376 0.513463 0.484297 0.513774 -0.355549 -0.372095 0.474791 -0.282792 0.435630 0.010953 0.127716 0.298973 -0.945712 0.037387 0.683549 0.702787 -0.190096 0.621489 0.661491 -0.744001 -0.097935 -0.128184 0.614693 -0.347593 -0.290136 0.432689 -0.811961 0.646325 0.080657 0.343061 0.425326 0.105468 -0.099477 0.442055 -0.210416 0.082373 -0.359500 -0.229374 -0.305642 -0.303048 -0.653448 0.788885 -0.215290 -0.317313 -0.436588 -0.642183 0.991801 -1.176148 -0.146287 0.537725 0.002290 0.709432 -0.709481 0.567039 -0.568706 1.002066 0.450091 -0.105425 0.266738 -0.959608 -0.833382 -0.220855 0.308666 0.093755 -0.057992 0.482208 0.622122 -0.215713 0.053622 0.833796 -0.419482 1.006832 -0.203850 0.314812 -0.304432 -0.524350 0.323326 -0.048529 -0.478850 -0.366298 0.490574 1.394178 0.035034 1.177839 1.087713 0.110913 1.052828 -0.602828 0.199882 -0.291969 0.589344 -0.427184 -0.398960 0.168551 0.655909 -0.208656 0.417134 -1.059405 -1.699646 -1.568334 -0.692960 -0.031908 -1.068690 0.370803 -0.441121 -0.110912 -0.703223 -0.715183 0.249883 -0.291869 0.486094 0.725807 -0.054180 0.635150 0.632542 -0.669365 -0.084874 0.540218 0.935136 0.354562 0.251559 -1.215111 0.754704 -0.653098 -0.236465 1.581447 -0.705303 0.281434 -0.328676 1.123896 -0.582881 1.167795 0.287064 -1.107698 0.547705 0.769322 0.282240 0.853210 -0.578982 -PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.789443 -0.702282 1.656300 1.056237 0.145103 0.254162 0.739228 -0.595295 0.833717 0.605793 -0.070607 0.498032 -0.956896 0.161563 -0.489612 0.657158 -0.834992 -0.902829 -0.138707 -0.854567 -0.392576 -0.487954 0.412780 0.068559 0.835129 -0.453412 -0.666452 -0.653350 -1.357154 -1.105381 0.344643 -0.368280 0.677723 -0.886617 -0.261108 -2.728297 0.898207 0.924508 -0.515890 -0.954813 0.808996 -0.726023 0.264208 -0.073383 -0.328688 0.060340 0.349723 -0.140596 0.776125 0.447163 0.668552 0.280393 0.245834 2.337181 -0.854594 0.735234 0.454371 -0.279277 -0.570415 0.272255 0.115709 -0.252673 0.629891 0.223786 -0.287093 -0.888638 -0.101136 -0.434523 -1.010631 0.496703 -0.130369 -0.416413 -0.462573 -0.125376 -0.918483 -0.578942 0.001990 0.481373 1.321583 -0.816461 1.085096 0.026164 0.241599 0.154284 0.375762 0.223287 0.567524 0.141443 -0.260257 -0.440481 -0.366016 0.340308 -0.019276 0.847961 -0.257308 -1.056403 0.846294 -0.498789 -1.193291 0.414135 0.354577 -0.320849 -1.129260 -0.212842 0.227056 0.699116 -0.753745 -1.095974 -0.744459 0.318897 0.023521 -0.275082 0.102785 -0.888200 -0.385433 -0.549895 -1.105452 0.197393 0.064937 -0.482665 -1.055129 0.983002 -0.501927 0.245474 0.130723 0.843676 -0.528635 0.870621 -0.070003 0.629790 -0.026624 0.016031 -1.637803 -0.628387 0.494151 0.966161 -0.493667 -0.091727 -0.675407 0.135071 -0.581371 0.194022 -0.060865 1.023963 1.167689 -0.588863 -0.612747 -0.334374 0.159231 -1.286837 0.164935 -0.617146 -0.242837 0.270834 0.757524 0.359299 0.646916 1.645988 -0.492651 0.719980 -0.048345 -0.664362 0.890378 -0.411895 0.814425 -0.644712 -0.674018 0.190500 0.551297 0.539785 -0.054591 0.173420 0.120108 -0.994985 -0.377535 0.001375 0.419351 -0.209555 0.700094 0.775158 1.817300 -1.400025 0.133721 0.563533 -0.458136 0.068690 0.022745 -1.034393 0.169628 0.468276 -0.502064 1.073253 0.124769 -0.903149 0.464800 -0.321892 0.305580 -0.739630 0.396365 -0.665316 -0.167800 -0.430227 -0.545558 -0.587925 -0.462107 -0.590501 -0.557594 1.221334 -0.810341 -1.068616 0.808105 -0.007706 0.317763 -1.918996 1.831473 -0.741795 0.791495 -0.695083 -0.020402 -0.183155 0.976755 -0.618023 0.461619 0.338374 -0.563858 0.769017 1.631509 0.569609 0.419995 -0.226341 1.100399 -0.159026 0.684561 -0.348114 0.993906 -0.327159 -0.722068 0.054431 -0.261553 -0.033217 -0.019255 0.357172 0.583910 0.695269 -0.061943 0.525901 1.038181 1.061300 -0.460233 0.734806 -0.188438 1.072666 -0.301556 -0.333920 0.195240 0.635358 -0.042851 0.540352 -1.380254 -1.311099 -0.653255 -1.454703 0.388663 0.288079 0.055711 -0.156151 0.045352 -1.490652 -0.602522 0.623809 -0.333852 1.153462 0.598342 0.381406 0.819872 0.914452 -0.454673 -0.248391 -0.094596 0.203368 0.012596 -0.511319 -0.571258 0.691614 -1.043832 0.368979 0.841238 -0.368074 0.288385 0.336841 0.421650 -0.884005 1.480928 0.342271 -0.397704 1.154885 0.894274 1.436844 -0.291045 -0.511648 -PE-benchmarks/quicksort-for-linked-list.cpp__lastNode(Node*) = -0.231335 -0.524336 2.261087 1.518968 -0.173665 0.123436 0.037036 -0.773759 0.861271 0.545153 -0.518657 0.724502 -0.710998 0.142050 0.485803 0.888848 -1.639888 -0.950581 -0.194395 -0.745208 -0.527190 -0.503939 0.221962 0.383642 1.056638 0.704075 -0.991163 0.206874 -0.756117 -1.990483 -0.101557 -0.415128 0.778340 0.433972 0.737132 -1.855294 1.389339 0.784169 -0.260034 -1.076258 0.611469 -0.433040 0.078556 -0.334568 -0.016936 0.998987 0.689564 0.231393 1.016488 0.598931 0.109113 -0.258329 0.209879 0.757249 -0.320654 0.547558 0.559066 -0.877804 -0.269131 -0.131985 0.152089 -0.593189 0.504589 0.434887 -0.494565 -1.156089 0.279808 -0.416831 -0.826209 1.016194 0.311153 -0.713042 -0.841926 -0.788742 -0.774261 -0.250269 0.474663 0.984081 1.498861 -0.519514 0.903970 0.216488 0.562069 -0.025147 0.410788 -0.058223 1.257518 0.245171 -0.458249 -0.245981 -0.586508 -1.233599 0.021480 0.994474 -0.153377 0.247803 0.387925 -1.581362 -1.213009 0.316857 0.598796 -0.377858 -1.508401 0.234428 0.847508 0.609130 0.326353 -0.788647 -0.065313 0.113999 -0.656473 -0.119503 -0.374717 -0.483925 -0.677554 0.402510 -1.533099 0.415482 0.141029 -0.193033 -0.470790 0.855922 -0.467996 0.157124 0.046691 0.771347 -0.334368 0.981472 0.160940 0.776630 0.257786 -0.191087 -0.902079 0.012507 0.433836 0.104047 -0.558395 -0.472833 -0.566899 0.194788 -1.056886 0.150079 -0.612531 1.522515 1.480068 -0.749364 -1.267813 -0.527437 -0.888692 -1.249967 0.337032 -0.652051 -0.441892 0.276414 0.711790 0.421149 0.674966 1.396648 -0.899516 0.439072 -0.094649 -0.213737 0.935172 -0.126555 0.864297 -0.809309 -0.188949 0.653791 0.393030 0.347222 0.130979 -0.284850 0.487685 -1.164013 -0.756768 1.096881 0.260262 0.663616 0.632486 0.886240 1.850150 -0.601975 -0.108453 0.791494 -0.069186 -0.497564 0.534713 -0.877322 0.557597 0.216122 0.645843 1.378131 0.078515 -0.624184 0.259691 0.158722 0.288179 -0.771111 0.306145 -0.495857 0.840165 -0.240997 -0.501676 -0.907987 -0.337809 -0.535795 -0.453468 1.443542 -0.225486 -1.873860 1.320431 -0.915340 1.256846 -1.872944 0.711713 -0.748208 0.831267 -0.621566 0.001666 -0.112049 -0.647034 -0.760075 0.653982 0.274116 0.068530 0.331063 0.997517 0.620628 0.199207 -0.185163 0.835225 -0.118527 1.203159 -0.044623 0.743240 -0.393619 0.278421 -0.263438 -0.018791 -0.413894 0.121431 -0.141855 0.109840 0.552048 0.298286 0.713865 0.639514 0.907612 -0.669590 0.723233 -0.137834 0.849095 -0.584527 -0.806181 0.442529 0.672139 -0.203713 0.402515 -1.546760 -1.283738 -0.766432 -1.918499 -0.612258 0.256649 0.538294 -0.000239 -0.294867 -0.702211 -0.579316 1.301236 0.442860 1.942638 0.382857 -0.070351 0.835225 0.949351 -0.472779 -0.624539 -0.409454 0.088749 0.025848 -0.272143 -1.253206 1.143484 -0.879209 0.302570 1.527730 -1.042103 0.389397 -0.503727 0.885492 -1.270856 1.341270 0.348433 -0.912279 0.760623 0.456634 1.034877 -0.330486 -0.814563 -PE-benchmarks/quicksort-for-linked-list.cpp__partition(Node*, Node*) = -0.830266 -1.572110 8.362167 5.504688 -1.396793 0.504692 -0.026533 -3.746308 3.072813 1.105391 -1.281837 2.492507 -2.362688 1.000352 0.153062 3.373353 -6.509894 -2.825911 -1.372467 -3.734693 -2.233760 -1.366240 1.298507 1.063437 3.786605 2.471292 -3.623891 0.378543 -2.245634 -7.050082 0.573585 -1.457191 2.844248 0.214592 1.653270 -9.620194 5.438967 3.129747 -1.644732 -3.605694 2.772040 -1.865467 -0.151135 -1.377924 -1.800598 2.262213 1.203820 0.714124 3.691793 1.905932 0.561676 0.838266 1.444860 5.490500 -1.828943 2.175635 1.855028 -2.717454 -1.782139 -0.107202 0.541784 -0.984307 1.886521 1.063558 -0.959899 -4.971967 0.671839 -1.670140 -3.153031 3.521857 0.574797 -2.828692 -2.461615 -2.296492 -3.580969 -1.249282 1.956103 3.654663 5.139063 -2.476711 2.824122 -0.010301 0.650173 0.358243 1.437072 0.202756 4.503643 1.067015 -0.716946 -1.063002 -0.913294 -2.836141 1.055712 2.910894 -1.187098 -2.606500 2.093256 -6.127826 -4.392188 1.233340 2.872500 -2.028890 -4.979982 -1.032397 2.529842 1.835796 -0.141569 -2.887611 -0.430723 0.898552 -1.438966 -0.725427 -1.145625 -1.750823 -1.659757 1.045690 -5.609471 2.080514 0.240160 -0.108287 -1.884767 3.293022 -0.847542 -0.352522 -0.006616 3.333267 -2.007675 3.745441 -0.860868 3.019952 -0.229673 1.034198 -1.740086 -0.524904 1.837390 0.185972 -2.096824 -2.425636 -2.724079 0.974309 -3.962250 0.644404 -2.128946 4.902103 5.201978 -2.033793 -4.010610 -1.503244 -3.048584 -5.694122 0.618645 -2.440128 -2.741854 1.924556 2.837082 1.482859 2.979735 4.142630 -2.699308 1.692344 -0.318100 -1.169344 4.130537 -1.123686 3.180525 -2.805816 -1.338734 2.200396 0.681275 2.261147 -0.061433 -0.191428 1.355998 -3.973957 -2.383471 3.259045 1.630737 1.770689 2.242028 3.631557 7.758558 -2.655840 0.049373 3.048236 -1.375897 -1.126426 1.450379 -3.201594 0.935014 1.507185 1.291997 5.549075 0.234746 -2.393118 0.811847 0.417205 1.111508 -2.835121 1.047748 -1.869648 2.217205 -1.139210 -2.109811 -2.998987 -1.073466 -2.726486 -2.980531 5.278483 -3.951785 -6.044293 5.628125 -2.723964 4.097305 -7.053444 3.547715 -2.873252 3.498287 -2.140565 -0.113357 -0.200051 -1.966080 -4.008277 3.063256 1.073046 -0.433981 1.174674 4.604252 2.527609 1.073026 -1.570847 3.664753 -1.034553 4.938215 -1.050280 3.867604 -1.535689 -0.280740 -0.915740 -0.275832 -2.213333 -0.602322 0.943057 0.805044 1.542425 1.712530 2.305141 2.909850 4.205795 -2.436486 3.331045 -0.817779 2.187113 -1.808210 -2.718079 2.234871 3.102409 -0.562758 1.847036 -5.818210 -5.050472 -5.112231 -6.281480 -0.921690 0.768796 1.791509 -0.735732 -1.097490 -3.242856 -2.544683 5.479220 0.633887 6.317576 2.347053 0.373653 2.972299 3.859861 -1.735384 -1.367035 -1.326234 0.681018 0.769208 -1.118789 -4.749932 4.687223 -2.880956 0.916164 5.702532 -3.311877 1.849237 -1.045929 2.736204 -4.129733 4.946823 0.911951 -2.925806 3.229129 2.389275 3.270621 -0.395131 -2.740411 -PE-benchmarks/quicksort-for-linked-list.cpp___quickSort(Node*, Node*) = -0.825783 -0.788908 4.076724 2.591704 -0.648918 0.379649 -0.099445 -2.146280 1.555457 0.021673 -0.532905 1.137627 -1.313544 0.371866 -0.516996 1.199471 -3.169826 -1.552713 -0.983747 -2.128586 -0.896770 -0.781700 0.704774 0.824691 1.722976 0.493981 -1.852046 0.413713 -1.844503 -3.016781 0.479732 -0.638479 1.402189 -0.562022 0.557805 -4.907162 2.719764 1.825493 -0.906054 -1.746269 1.552986 -1.395890 -0.089058 -0.853977 -1.497445 0.718887 0.175704 -0.499237 1.858502 0.573868 0.381117 0.835924 0.323063 3.110881 -1.240298 1.205065 0.856874 -1.201004 -1.005763 0.103116 0.131040 -0.188299 1.060132 0.414394 -0.674325 -2.575706 0.357490 -0.826225 -1.647798 1.785242 -0.302193 -1.490996 -0.895147 -0.969118 -2.744894 -0.805956 2.361869 1.751351 2.414602 -1.401517 1.369417 -0.332679 0.104731 0.399813 0.934771 0.252391 2.337407 0.462940 -0.169590 -0.673490 -0.650070 -0.663093 0.444506 1.520961 -0.691439 -1.192703 1.263101 -3.960666 -2.339481 0.516534 1.401820 -1.239481 -2.645738 -0.661973 0.995453 0.852423 -0.241399 -1.586305 -0.169617 1.002467 -0.369486 -0.359599 -0.449003 -0.989463 -0.625273 -0.008493 -2.804908 1.195645 0.074738 0.043198 -1.197337 2.012001 -0.829509 -0.377623 0.060422 1.781065 -1.286735 1.952719 -1.031943 1.418344 -0.573094 0.381766 -1.058759 -0.927898 0.681218 0.314050 -1.335436 -0.986896 -1.366291 0.382288 -2.076177 0.184907 -1.179794 2.134176 1.980957 -1.107518 -1.705727 -0.616531 -1.721784 -3.379544 -0.070506 -1.160328 -1.784887 1.517256 1.540448 1.253429 1.575378 2.559821 -0.854391 0.723729 0.026642 -1.199883 2.259917 -1.375416 1.638628 -1.458563 -1.019414 1.197898 -0.052709 1.396953 -0.014770 0.257710 0.428771 -2.143075 -1.230458 1.355433 0.992830 1.151293 1.377770 2.080827 2.996550 -1.873126 0.370141 1.564428 -0.882692 -0.318356 0.326734 -1.549932 0.146727 1.060046 0.281458 2.923687 0.105290 -1.284544 0.162923 0.125464 0.920847 -1.737217 0.457834 -1.017239 1.138061 -0.836233 -1.675426 -1.364448 -0.749814 -1.593811 -2.133269 2.645533 -2.482345 -3.190048 3.087978 -0.633975 2.277456 -3.895015 1.364484 -1.556479 2.873334 -0.748794 0.234919 -0.123220 -0.772585 -2.254545 1.716885 0.551245 -0.715325 0.870438 2.367644 1.405048 0.819585 -1.036667 1.983913 -0.619350 2.587180 -0.896698 2.082979 -0.737560 -0.848280 -0.177361 -0.334935 -1.139622 -0.355362 0.877269 0.415771 1.011878 1.091298 1.232516 1.982105 2.360071 -1.121254 1.549948 -0.579480 0.912072 -0.768203 -1.437073 1.232582 1.806385 -0.066473 0.663735 -3.014151 -2.987187 -3.329343 -3.425870 0.231253 -0.262058 0.519904 -0.330350 -0.443902 -2.043843 -1.316001 2.473816 0.034708 3.812997 1.216738 0.379999 1.520705 2.159495 -1.096295 -0.427393 -0.283617 0.585660 0.291921 -0.601356 -2.666089 2.522612 -1.500079 0.489765 2.904337 -1.576266 1.137897 0.221151 0.446616 -2.057880 2.544449 0.473822 -1.483956 1.930397 1.146524 1.227885 0.194632 -1.366299 -PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.257055 -0.309841 1.118164 0.732937 -0.191126 0.075377 0.268199 -0.530312 0.585476 -0.194080 -0.123749 0.131977 -0.687449 0.237568 -0.427753 0.353311 -0.928462 -0.571301 -0.238742 -0.570875 -0.173606 -0.330243 0.515297 0.062301 0.534931 0.241915 -0.452802 -0.236100 -0.749712 -0.289750 0.602999 -0.283891 0.471795 0.101699 -0.166720 -1.559652 0.637042 0.478918 -0.395717 -0.510526 0.580548 -0.606206 0.108302 -0.501956 -0.319582 0.031521 -0.006807 0.125974 0.605794 0.085428 0.131374 0.211718 -0.023992 1.161520 -0.732211 0.335723 0.183420 -0.138457 -0.363637 0.044976 0.056415 0.098930 0.362419 0.267633 -0.303793 -0.748599 -0.095245 -0.552885 -0.693958 0.512029 -0.168462 0.053779 -0.437046 -0.051485 -0.699107 -0.240257 0.099060 0.566166 0.844666 -0.583876 0.487445 -0.126290 0.038299 0.001784 0.137451 0.231783 0.388144 0.108718 -0.030743 -0.258810 -0.451985 0.160347 0.104504 0.178226 -0.123990 -0.782161 0.470471 -0.729822 -0.695407 0.028417 0.369753 -0.264632 -0.466297 0.001628 0.105215 0.400211 -0.387973 -0.610888 -0.052856 0.171107 0.132690 -0.083273 0.013222 -0.254395 -0.268560 -0.584193 -0.831530 0.199478 -0.172769 -0.218355 -0.232764 0.596762 -0.398154 -0.105180 0.093182 0.451248 -0.449570 0.799047 -0.247775 0.316342 0.014486 0.094768 -0.348865 -0.318873 0.401892 0.903988 -0.404338 -0.154505 -0.512082 0.020141 -0.603335 -0.335727 -0.010625 0.318310 0.488590 -0.560392 -0.397085 -0.107771 -0.210651 -1.137334 0.005274 -0.435478 -0.164021 0.454284 0.513466 0.485837 0.640824 1.164384 -0.375805 0.296168 -0.010465 -0.431375 0.729234 0.034983 0.552070 -0.360837 -0.446284 0.229839 -0.108463 0.369170 -0.031589 0.160281 0.011945 -0.803979 -0.185879 0.206803 0.379825 -0.007628 0.441782 0.536249 0.303093 -0.717570 0.249279 0.576868 -0.242538 0.001073 0.142107 -0.627118 0.246823 0.282672 -0.256244 0.519673 0.037504 -0.466926 0.165402 -0.177448 0.307683 -0.549870 0.002579 -0.338339 -0.007420 -0.578204 -0.109415 -0.239684 -0.396689 -0.323599 -0.464763 0.760759 -0.628309 -0.578950 0.679900 0.129308 0.522353 -1.050276 0.653388 -0.514151 0.816299 -0.222383 0.050073 0.005853 0.028684 -0.586833 0.178069 0.196889 -0.191102 0.307224 0.851780 0.508422 0.161198 -0.154704 0.772230 -0.084013 0.700403 -0.248529 0.600604 -0.175399 -0.490429 0.305666 -0.177553 -0.243996 -0.179073 0.361583 0.792283 0.508024 0.486820 0.670600 0.460358 0.877258 -0.315659 0.336184 -0.159135 0.469467 -0.139325 -0.243237 0.268545 0.544435 -0.149589 0.322628 -0.864035 -1.295063 -0.653187 -0.945276 0.281618 -0.297109 0.077736 -0.128345 0.049610 -0.816805 -0.382976 0.212041 -0.292831 1.125715 0.327680 0.133919 0.452188 0.733668 -0.620022 -0.131018 0.286983 0.457130 0.117260 -0.057832 -0.832545 0.681385 -0.585696 0.052647 0.881570 -0.465236 0.180812 -0.012993 0.575066 -0.524460 1.014827 0.199811 -0.393408 0.878010 0.415081 0.618712 0.512154 -0.346667 -PE-benchmarks/quicksort-for-linked-list.cpp__printList(Node*) = -0.207246 -0.462781 2.023801 1.376520 -0.497783 0.178240 -0.022312 -0.951586 0.838081 -0.250737 -0.387374 0.416924 -0.844293 0.251636 -0.004668 0.476795 -1.852290 -0.809645 -0.422924 -0.875445 -0.484725 -0.537493 0.298690 0.469672 0.778089 0.991776 -0.809169 0.288997 -0.833471 -1.026526 0.525715 -0.307084 0.739250 0.774425 0.515168 -2.380233 1.223728 0.810800 -0.387732 -0.989828 0.633156 -0.825242 0.027527 -0.716972 -0.372429 0.536603 0.158016 0.442440 0.882615 0.141489 -0.182861 0.077673 -0.023279 1.218169 -0.563243 0.521400 0.542447 -0.574695 -0.363665 -0.107636 0.085082 -0.136883 0.524166 0.409035 -0.605709 -1.192607 0.206691 -0.756785 -0.852401 1.023375 0.199003 -0.438836 -0.729744 -0.650556 -1.113759 -0.301625 0.326440 1.135937 1.353244 -0.814308 0.731971 -0.020927 0.305738 0.130199 0.561433 0.133417 1.317080 0.216104 -0.212240 -0.186254 -0.896600 -0.743087 0.215805 0.333669 -0.276019 -0.639972 0.419029 -1.892864 -1.135195 0.168248 0.584090 -0.524506 -1.099048 0.013326 0.599152 0.470507 -0.017820 -0.782223 0.049428 0.422622 -0.411048 -0.078416 -0.200528 -0.083728 -0.465195 -0.313087 -1.510597 0.575631 0.058408 -0.016169 -0.178266 1.058866 -0.471878 -0.132558 0.062856 0.565898 -0.568373 1.268423 -0.297404 0.417511 0.020289 -0.025331 -0.288807 -0.095587 0.431158 0.655335 -0.655851 -0.616762 -0.493473 0.190940 -1.106667 -0.268631 -0.481228 0.960694 0.943414 -0.778629 -0.929671 -0.497104 -0.918687 -1.643678 0.047123 -0.609024 -0.561646 0.682196 0.825147 0.903944 0.795627 1.277451 -0.761637 0.371548 -0.078342 -0.357895 0.977328 0.169940 0.819266 -0.719345 -0.441574 0.610673 -0.182304 0.609860 0.045394 -0.054778 0.213245 -1.130009 -0.673230 0.922903 0.523767 0.593542 0.804132 1.081096 1.102471 -0.903830 0.215667 0.813642 -0.314275 -0.298421 0.392462 -0.767106 0.430802 0.400804 0.207323 1.296156 -0.024804 -0.541732 0.042111 0.149861 0.423040 -0.875541 0.010541 -0.456812 0.475574 -0.675155 -0.237318 -0.726728 -0.516241 -0.716985 -0.864960 1.373762 -0.898021 -1.516375 1.445860 -0.520503 1.353486 -1.762672 0.430513 -0.762177 1.244395 -0.388404 -0.016221 -0.012964 -0.775604 -1.011337 0.673097 0.290360 -0.185227 0.203973 1.002236 0.762241 0.286437 -0.288890 0.960714 -0.187972 1.172490 -0.443208 0.888950 -0.366810 -0.119684 0.080117 -0.208507 -0.428979 -0.032405 0.309986 0.736722 0.664605 0.850970 0.905814 0.751756 1.027115 -0.575656 0.477062 -0.221949 0.501283 -0.468598 -0.699049 0.442430 0.822311 -0.161491 0.286104 -1.476596 -1.706492 -1.298812 -1.649313 -0.153223 -0.237069 0.327810 0.035555 -0.154271 -0.960834 -0.586229 1.015453 0.001845 2.019238 0.442017 0.016843 0.823002 1.159985 -0.738137 -0.372156 0.258525 0.431406 0.020531 -0.036684 -1.591445 1.350638 -0.762234 0.271293 1.665858 -0.988316 0.533009 -0.359447 1.124079 -1.056797 1.423473 0.331671 -1.009894 0.785001 0.618697 0.775293 0.460623 -0.733083 -PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -0.632715 -0.865539 4.137518 2.731985 -0.519607 0.382445 0.446707 -2.131817 1.992647 0.624958 -0.282443 0.878688 -1.411068 0.590413 -0.426251 1.746735 -3.012106 -1.485773 -0.785930 -2.371151 -1.167773 -0.795561 0.872277 0.072862 1.829051 0.213628 -1.628113 -0.385590 -1.561069 -2.723512 0.991149 -0.803107 1.349281 -0.737618 0.264939 -5.852451 2.717154 1.573050 -1.164779 -1.806299 1.463372 -1.324560 0.206811 -0.685990 -0.916532 0.497523 0.236663 0.277630 1.991251 0.917449 0.779370 0.876845 0.580234 4.344435 -1.687379 1.272872 0.734935 -1.036361 -1.158751 0.519938 0.262004 -0.099533 1.112354 0.444399 -0.323716 -2.650739 0.017241 -1.076504 -1.831746 1.652378 0.032587 -1.352003 -1.195162 -0.800747 -2.018314 -1.046181 -0.445855 1.826940 2.648115 -1.809054 1.527482 -0.059623 0.280099 0.475757 0.900907 0.330863 2.226586 0.467752 -0.329664 -0.547977 -0.573247 -0.524948 0.644148 0.870054 -0.678432 -2.571629 1.346345 -2.384019 -2.337029 0.835925 1.506442 -0.860215 -2.464978 -0.920198 0.950020 0.922761 -0.932753 -1.832060 -0.659286 0.676026 -0.237556 -0.441175 -0.212426 -1.450765 -0.643253 -0.371118 -2.800884 0.942208 -0.014341 -0.147184 -1.542096 2.032688 -0.684933 -0.465664 0.029984 1.750415 -1.393170 2.103237 -0.817413 1.668924 -0.268087 0.644939 -2.052580 -0.398425 1.118762 0.875549 -0.764769 -0.739881 -1.650310 0.475874 -2.123384 0.472068 -0.559939 2.223796 2.362743 -1.033238 -1.691708 -0.582360 -0.758450 -3.076829 0.408613 -1.321572 -1.266879 0.945605 1.648211 1.344405 1.780909 2.233746 -1.291125 1.109273 -0.419992 -0.766391 2.330273 -0.632242 1.746541 -1.387454 -0.943725 0.712862 0.417005 1.168049 0.034562 0.063108 0.495655 -2.176847 -0.824810 0.762421 1.015452 0.139421 1.317652 1.949478 3.865934 -2.331388 0.324356 1.665002 -0.994928 -0.156446 0.407874 -1.771809 0.299055 1.034872 -0.167049 2.592200 0.087780 -1.397286 0.298943 -0.178768 0.706453 -1.336115 0.254128 -1.090484 0.175965 -0.790048 -0.804996 -1.565906 -0.757234 -1.361927 -1.651271 2.661773 -2.382048 -2.468250 2.944345 -1.058055 1.406909 -3.582517 2.990090 -1.617177 1.746288 -1.315754 -0.060714 -0.356655 0.406346 -2.201408 1.567925 0.653849 -0.763654 0.896420 3.061843 1.409881 0.848762 -0.894686 2.298775 -0.732895 2.325157 -0.815083 2.492257 -0.909875 -0.773911 -0.225413 -0.390119 -0.852015 -0.553358 0.961766 1.012832 0.932169 0.811839 1.099984 1.837408 2.399290 -1.200145 1.869629 -0.481591 1.123596 -0.798167 -1.032092 1.221586 1.383000 -0.298791 0.911684 -3.013500 -2.673012 -2.666556 -2.593980 0.301859 0.418342 0.359886 -0.510209 -0.324375 -2.353487 -1.353846 2.148437 -0.350575 2.145548 1.291532 0.498943 1.587978 2.288291 -1.001289 -0.487334 -0.427388 0.253801 0.411538 -0.839051 -2.207460 2.510580 -1.738621 0.451695 2.659680 -1.239509 0.850354 0.251465 1.256573 -1.866930 2.673695 0.448230 -1.040450 2.045421 1.995284 2.253562 0.057163 -1.239642 -PE-benchmarks/quicksort-for-linked-list.cpp__main = -0.213723 -0.555584 1.832572 0.942578 -0.996665 -0.032713 0.085028 -0.498781 0.944542 -1.999526 -0.664573 0.181536 -1.133891 0.459216 -0.920968 -0.119356 -2.694262 -1.192258 -0.053307 -0.405353 -0.204614 -0.724742 0.780322 0.630572 0.536933 1.729944 -0.722609 0.094860 -0.969876 0.942059 1.877751 -0.810730 0.840666 1.580287 0.023544 -3.455077 0.817297 0.046110 -0.571184 -0.956461 0.723735 -1.381041 0.254775 -2.183535 -1.095626 -0.143539 0.325698 1.449543 0.857539 -0.534947 -1.342010 -0.139547 -0.778026 2.046051 -1.142203 0.187580 0.605877 -0.314196 -0.474248 -0.446485 0.230995 -0.064128 0.622465 1.005641 -1.070385 -1.047395 0.099118 -1.819829 -1.142802 1.150020 0.180265 1.343940 -0.874322 0.248030 -1.831835 -0.209527 1.149669 1.714216 1.799748 -1.248916 0.855396 -0.288351 0.850723 0.187120 0.219329 0.723569 0.997622 0.283640 -0.421338 -0.419463 -2.046673 0.057234 0.053044 -0.780663 0.399944 -1.930712 0.232693 -2.561601 -0.937018 -0.226970 0.372276 -0.194911 -0.098057 0.033026 0.831088 0.741882 -0.640962 -0.876429 0.334017 -0.022852 -0.444422 0.229348 0.548575 0.622845 -0.386473 -1.741922 -1.581442 0.150575 -0.252228 -0.408538 0.871325 1.121614 -1.085083 -0.063792 0.172441 0.274215 -0.715629 1.815998 -0.161085 -0.370752 0.110711 -0.309417 0.896276 -0.468402 0.568394 2.696736 -0.876938 -0.900406 -0.457599 0.144582 -1.178088 -2.059900 0.100449 -0.034673 -0.176656 -1.291577 -0.883206 -0.644630 -0.818826 -2.333934 -0.265903 -0.857708 -0.458008 1.831034 0.988298 1.400260 1.256002 1.812092 -0.747164 0.876885 -0.236555 -0.375580 1.057210 0.692370 0.962843 -0.521775 -0.513118 0.513467 -1.036135 0.940459 -0.043796 -0.466337 0.050415 -1.589730 -0.784443 0.666999 1.308979 0.608443 0.612636 0.717723 -1.402720 -1.564167 0.439994 1.113087 0.008478 -0.341511 0.597358 -0.869228 1.001152 0.316973 -0.459886 0.344346 0.020339 -1.070872 0.032983 0.176203 0.568482 -0.890910 -0.826103 -0.277760 0.014015 -1.382102 0.581198 -0.610849 -0.756582 -0.900482 -1.253360 1.328350 -1.881214 -1.158709 1.212878 0.327752 2.339037 -1.867129 -0.204936 -0.954788 2.442842 0.161706 0.032898 0.179945 -1.379061 -0.911722 0.261722 0.360778 -0.054690 0.082500 0.640963 1.192215 0.586519 0.171188 1.309890 0.250949 1.032255 -0.187045 0.236863 -0.412174 -1.017211 0.973015 -0.327247 -0.206860 0.127898 1.198986 1.902411 1.121049 1.926122 2.345509 0.864521 1.153743 -0.669340 -0.689301 -0.617982 0.932040 -0.287537 -0.497453 -0.060407 1.352838 -0.478239 0.402900 -1.468886 -3.382617 -2.284544 -1.699788 -0.000828 -1.464180 -0.036127 -0.071932 0.510897 -1.430397 -0.051473 -0.258884 -0.537442 2.825654 0.672614 -0.118893 0.926513 1.377720 -1.797305 -0.965403 1.824523 1.431798 -0.097955 0.953755 -2.876069 1.242940 -1.315999 0.287124 2.222647 -1.332136 -0.106505 -0.410728 1.948979 -0.787758 2.074894 0.782382 -1.731885 0.927147 0.287772 0.443668 2.362132 -0.808281 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -3.179347 -18.085823 37.492590 26.794304 -8.090845 6.698230 0.121438 -5.674020 3.849260 10.906716 -9.049333 22.525098 -9.751288 -0.329144 11.229986 10.301993 -26.076925 -9.840329 -0.943170 -7.611484 -11.847589 -3.875713 -11.715970 21.449517 14.328824 5.043727 -11.503485 2.920806 -9.482437 -17.587712 -12.984039 -2.319854 12.322161 -9.344710 20.249206 -47.479923 18.653673 17.528511 -0.283162 -25.931097 5.743924 -4.342787 2.648105 0.402949 -19.373394 5.705334 16.089639 14.922149 4.149094 11.201020 -3.928405 -3.025467 17.840938 42.196781 14.243354 15.268946 23.173320 -13.041046 -2.222390 -8.531958 5.152546 -16.611194 5.476556 -3.059431 -0.435200 -13.492829 0.091107 -3.511085 -5.809741 3.899790 14.716261 -18.541753 -10.374936 -18.481860 -9.127059 -7.628812 0.596937 18.348043 24.048415 -19.789595 19.055421 9.341194 8.375171 10.735569 13.411474 0.817055 18.105219 6.557819 -5.771998 4.514207 -2.890472 -13.959631 8.735237 -1.381769 -12.794862 -25.975637 7.454704 -16.113122 -23.340283 17.506475 5.510089 -12.996186 -4.267749 -12.043853 11.130411 10.825409 -6.657309 -10.972880 -7.276005 7.662966 -8.243183 -6.949604 -6.058886 2.682289 -0.298392 3.481932 -24.860203 13.642853 16.491805 -0.968725 0.768589 17.911423 -2.841545 14.213922 -2.888905 6.770030 -0.819067 21.195539 14.956433 3.634083 -10.688737 -5.186010 0.539274 12.683449 2.020045 -10.834463 -7.615242 -7.166382 4.659237 10.648376 1.518812 17.051309 -2.723648 29.531354 9.758325 -0.058061 -20.111445 -22.185050 -26.031874 -14.074088 4.226124 -8.446305 -17.450200 17.435041 12.012655 5.444060 -0.772539 5.699498 -7.388831 9.817580 -1.527052 -1.487253 4.919379 -3.476956 10.424017 -14.641636 -4.335352 12.630081 12.749851 12.900470 1.997779 -3.942911 10.072783 -8.340677 -5.947353 9.204084 10.352478 8.586799 18.377730 16.242779 55.151915 3.007765 -9.937853 0.346066 -6.694873 -6.667083 2.400411 -13.760792 -1.466248 3.954197 0.233286 30.894830 0.619883 -8.836012 10.727736 2.040859 -0.317272 -10.452084 14.063780 -6.136623 5.441350 0.966106 -1.196903 -17.453262 0.174586 -21.991230 -12.398846 29.794825 -33.673477 -22.040763 10.258453 -10.448847 18.232131 -24.302163 37.909155 -10.215149 22.144084 -3.370524 -14.068364 2.686107 -12.885565 -9.114040 17.782437 6.963442 1.817451 -7.035929 11.470139 6.382174 1.578183 0.510485 9.712471 -6.834206 15.186285 -5.437241 12.339505 -6.336155 4.363959 -9.839246 -0.962277 -2.789648 6.931687 -0.369724 -4.259486 0.968194 2.708250 1.650481 11.841202 3.468515 -12.122792 8.671227 -5.336121 16.496228 -16.833280 -11.465082 -1.724787 16.597988 7.498354 4.476129 -28.407251 -9.002917 -32.570282 -12.797771 -12.618514 13.698437 6.843199 -0.470799 -7.787316 -12.196119 -16.288610 36.770160 1.761099 17.214264 16.051906 4.725185 22.710545 10.212204 8.769695 -9.181199 -3.383346 -2.984118 0.395959 3.264750 -14.535416 13.163143 -17.588595 10.048546 23.793146 -7.469837 13.230154 -4.925015 3.164239 -20.632634 19.035782 6.950964 -25.356064 -2.160631 22.741589 9.019786 -21.366635 -16.690807 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 0.636803 -0.994204 2.693054 1.588726 -1.769368 -0.106848 -0.153680 -0.024139 -0.060375 -2.524096 -1.216279 1.070061 -0.568581 0.163565 -0.589167 -0.324718 -3.232794 -0.761620 -0.088162 -0.150949 -0.193921 0.193355 -0.222078 1.438785 0.930176 3.165219 -0.536662 -0.035216 -0.539555 1.044157 1.095576 -0.283914 0.864518 2.500102 1.051718 -3.549847 0.554579 0.616326 -0.354917 -1.693815 0.743874 -0.819103 -0.241954 -2.251516 -1.298550 0.182712 0.778563 2.319318 -0.154284 -0.087272 -2.778222 -0.104764 0.255720 2.105481 0.715483 0.250396 2.012665 -0.489995 0.141927 -1.102688 0.507335 -0.651369 -0.032425 -0.092486 -0.303975 -1.224944 -0.442439 -2.024455 -0.001174 0.512764 0.926790 0.690341 -0.817718 -0.797090 -1.942569 0.011285 -0.684576 2.468693 1.435321 -2.088139 0.866877 0.033015 0.794671 0.491468 0.185104 0.879792 0.359549 0.775022 0.361271 0.299171 -2.031241 -1.188248 0.514776 -1.956035 -0.628541 -3.188117 0.751648 -3.246433 -0.891015 0.331145 0.670171 -1.023812 1.324757 -0.305632 0.184028 1.037352 -0.531281 0.130528 0.605548 0.024260 -0.206006 0.172665 0.215788 2.262695 -0.018488 -1.082816 -1.926778 1.547002 0.641327 0.363284 2.054572 0.994192 -0.112249 0.288035 -0.306640 -0.118130 -0.705869 2.461999 0.612108 -0.852453 -0.199102 0.082813 2.011486 0.741402 0.769332 1.900674 -1.392728 -1.189547 0.346610 0.637548 -0.140094 -1.585404 -0.048078 0.379511 -0.511313 -1.039549 -1.335702 -1.895236 -2.180571 -1.644328 -0.613996 -0.483282 -0.780536 2.764675 0.805622 1.679848 0.563661 0.792436 -0.739609 0.116569 -0.114512 -0.100934 0.112248 1.292085 0.557367 -0.605201 -0.188579 0.838585 -1.154087 1.471140 0.155614 -0.112554 0.662629 -1.117702 -0.650582 1.431679 1.614664 0.457262 1.073104 1.453623 -1.763664 -0.261640 -0.785386 0.321758 -0.809565 -0.893265 0.976176 -0.661094 0.844638 0.131184 0.103142 0.954344 0.070763 -0.055386 0.584735 0.201719 -0.162756 -0.288246 -0.535516 -0.214235 -0.273203 -0.982619 1.297433 -0.955554 -0.291646 -1.592161 -1.944438 1.809942 -2.848587 -0.702663 0.511539 0.076397 2.144997 -1.407418 -0.101349 -0.708289 2.482669 1.031838 -0.538287 0.525510 -2.797123 -1.280761 0.022354 0.396684 -0.047529 -1.025184 0.121617 0.998838 -0.342752 0.171759 1.038780 -0.665626 1.493209 -0.446360 -0.139197 -0.746251 -0.647355 0.408280 0.142701 -0.598679 0.047567 1.074856 1.965311 -0.279563 2.767523 1.757427 0.604668 0.853323 -0.957594 -0.858094 -0.611175 1.087906 -0.853706 -0.935962 -0.277089 1.800077 0.215884 -0.017179 -1.696607 -2.906879 -3.645638 -1.165233 -0.469778 -1.745565 0.314703 -0.323074 -0.334186 -1.035685 -0.904729 0.203345 -0.267231 1.487031 1.268870 -0.326509 1.448420 0.703880 -1.143805 -0.604948 1.987264 1.801284 0.423939 1.200218 -2.923211 1.230233 -1.036460 -0.193310 3.155783 -1.237564 0.856803 -0.484043 2.556047 -0.991752 1.990537 0.507817 -3.276322 -0.315425 1.406688 -0.497832 1.546484 -1.081040 -PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -5.805689 -10.925053 13.908881 9.811500 1.863657 5.003285 5.337707 -0.003703 0.402444 6.674947 -3.862497 10.347696 -7.221776 -2.865015 0.590755 -0.629091 -6.089791 -8.713659 0.718859 -1.456858 -2.836739 -4.552125 -6.885991 13.345357 5.597780 -1.774624 -5.296615 -0.888184 -16.130481 -7.713789 -6.535878 0.125981 5.667564 -2.844270 7.895680 -12.626500 4.778527 11.615563 1.856580 -11.103883 2.542424 -4.068394 0.848464 2.659686 -3.520674 4.001282 8.968501 0.803045 1.370762 2.171493 0.840489 -3.867583 3.506684 12.758692 5.120392 8.868893 9.997733 -4.439479 3.514029 -2.448839 1.063747 -9.626376 4.206379 0.350784 -4.136671 -1.944334 1.226929 -0.161717 -2.795140 2.623814 6.024195 -5.868397 -3.672608 -5.333835 -9.587548 -4.191647 8.487820 3.880477 12.064326 -5.035061 13.324326 6.141870 7.662043 1.661001 8.562147 -0.481657 8.251155 1.555107 -4.789711 0.737634 -10.677826 -2.747802 -3.295208 8.900481 -5.144298 -0.745637 3.719667 -12.466991 -13.096169 6.634896 -2.740770 -5.410759 -5.148054 2.281981 4.872591 4.264152 -1.775733 -8.264678 -6.632209 4.798175 -6.459843 -3.053961 0.392482 -1.435475 -1.163430 -0.010452 -8.842532 3.449838 7.454680 -3.923329 -4.815853 10.318726 -2.765678 11.084738 0.718524 2.755964 0.582842 4.379033 7.835510 -0.739935 -2.579048 -8.313885 -10.657086 -1.779079 -0.977180 -0.421416 -6.974983 -2.903061 3.571501 4.249676 2.759140 6.769731 -2.614744 14.718410 3.858798 -4.370185 -7.049164 -10.537853 -6.123238 -4.187986 0.305940 -2.379623 -7.928344 0.045421 5.536391 1.766607 -1.787510 7.394356 0.776146 5.147421 2.117857 -2.937457 0.236509 -6.524327 4.635442 -6.523739 -4.404640 5.237394 7.418431 6.685654 0.191716 -1.244495 1.776415 -3.863867 -7.346418 2.025764 1.677044 5.371765 11.019727 7.640119 17.348280 -6.503012 -2.138107 -1.174478 -2.159047 -2.148209 0.484102 -7.516088 2.595879 1.452913 -2.103754 13.601191 -0.004350 -5.058628 7.057914 1.101133 1.795768 -8.906217 7.524200 -5.272311 2.683071 -2.360930 -4.466198 -7.467272 -2.771703 -9.428962 -5.330011 12.937452 -6.700410 -13.916953 2.656647 -0.449240 6.949326 -15.279590 8.558075 -4.230459 9.492408 -1.837989 -4.027697 0.735346 1.928318 -0.584956 5.435120 3.159826 -5.961563 5.161492 4.120988 1.945426 3.216022 1.937755 3.890863 -0.596554 1.465126 -4.346451 3.278741 -1.300092 -2.434755 -3.889379 -1.561085 3.128511 7.283109 -1.514549 -3.923646 5.051619 -2.137722 0.050346 9.758162 0.011247 -3.871516 -0.853465 -2.448265 10.369360 -6.552591 -5.579045 -4.654032 3.552952 3.471673 1.945038 -13.333686 -6.004663 -6.684991 -13.326750 -3.865736 2.704565 1.843322 5.317497 -1.626475 -11.582854 -6.354247 9.495043 1.657966 10.832199 6.132924 1.796075 10.664473 3.858688 2.809859 -3.595525 0.382462 1.326497 -3.470203 -1.834375 -5.287416 3.172617 -9.251567 9.472621 7.887019 -4.009390 6.242797 0.263750 2.488702 -11.817063 12.199544 4.652256 -12.768093 0.076801 6.598394 8.303114 -11.166348 -7.185126 -PE-benchmarks/rabin-karp-algorithm.cpp__main = 0.476273 -0.520980 1.907961 1.280551 -0.514855 -0.132997 0.384003 -0.546394 0.628317 -0.399079 -0.566813 0.505690 -0.778771 0.499146 -0.754890 0.854914 -1.752497 -0.728837 -0.123886 -0.437248 -0.183970 -0.242861 0.903563 0.059670 1.076877 1.062252 -0.574680 -0.533874 -0.559032 -0.525457 0.732548 -0.531451 0.589742 0.626937 -0.054751 -1.700557 0.916214 0.482958 -0.549194 -0.913134 0.856551 -0.492315 -0.085082 -1.019148 -0.292595 0.180451 0.321587 1.182440 0.679090 0.560982 -0.376239 0.155297 0.562786 1.514008 -0.569244 0.356481 0.651140 -0.135906 -0.181366 -0.235434 0.334723 -0.039736 0.172933 0.354717 0.074522 -1.115397 -0.548015 -0.994913 -0.569990 0.672820 -0.101633 0.488948 -0.987129 -0.073290 -0.745146 0.051953 -1.230798 1.271657 1.327531 -1.101036 0.610034 0.015947 0.181268 -0.142564 -0.260591 0.454400 0.027080 0.458225 0.086148 -0.340885 -0.614947 -0.278862 0.327703 -0.700839 -0.239624 -1.970541 0.712743 -1.224508 -0.853296 0.109329 0.679216 -0.511606 0.501021 0.080989 0.091530 0.683122 -0.538156 -0.501267 0.355409 -0.286530 0.342271 -0.085928 0.087277 0.262611 -0.315983 -0.346882 -1.357186 0.391073 -0.217310 -0.335530 0.505524 0.485443 0.019846 0.007999 -0.049124 0.403582 -0.440004 1.322166 0.154406 0.517503 0.208623 0.584396 0.277545 0.556612 0.976175 0.809933 -0.680810 0.030267 -0.568682 0.222057 -0.596424 -0.637080 -0.053429 0.357713 0.379172 -0.928145 -0.973917 -0.478601 -0.712558 -1.238479 0.169070 -0.631108 -0.307538 0.771884 0.691578 0.510383 0.924475 1.162015 -0.813737 0.109759 -0.009651 -0.111514 0.735757 0.416661 0.662993 -0.424432 -0.422325 0.481340 -0.076402 0.398231 -0.035083 0.138179 0.384896 -1.142251 0.060002 0.621427 0.705354 -0.377254 0.559083 0.600982 -0.305540 -0.182139 -0.124518 0.868545 -0.288525 -0.298890 0.490014 -1.024505 0.771699 0.040640 0.305220 0.444830 0.168783 -0.334516 0.600634 -0.321479 0.100071 -0.413891 -0.189736 -0.377646 -0.327192 -0.681373 0.716520 -0.211046 -0.353840 -0.325851 -0.473520 1.127592 -1.131141 -0.190617 0.635629 -0.116719 0.621511 -0.966102 1.153028 -0.694350 0.873547 0.278557 -0.132941 0.238228 -0.694926 -0.912986 -0.234086 0.357359 0.167868 0.097798 0.799279 0.711483 -0.195066 -0.000618 1.018269 -0.336519 1.193749 -0.071256 0.489123 -0.343431 -0.583575 0.269387 -0.053831 -0.523386 -0.455577 0.478180 1.484479 0.099645 1.041097 1.268692 0.143767 1.382444 -0.713575 0.444683 -0.316583 0.830652 -0.455904 -0.419421 0.296352 0.696520 -0.375892 0.675869 -1.200029 -1.868678 -1.483315 -0.847075 -0.056738 -0.916739 0.465968 -0.620063 -0.093894 -0.835258 -0.748398 0.313501 -0.294266 0.431280 0.842073 -0.075532 0.680937 0.743606 -0.727671 -0.152099 0.325398 0.910637 0.449451 0.118381 -1.180646 0.778669 -0.882773 -0.266164 1.637645 -0.799451 0.168563 -0.371262 1.173271 -0.682535 1.364028 0.310262 -0.948552 0.860867 0.837673 0.578651 0.795884 -0.621793 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.294789 -0.616110 2.526752 1.705771 -0.287478 0.201541 0.562093 -1.228495 1.265449 0.342170 -0.138517 0.462222 -1.059476 0.470058 -0.527420 1.146471 -1.795650 -0.970892 -0.463986 -1.419381 -0.656749 -0.507921 0.770450 -0.100540 1.222959 0.084196 -0.936069 -0.617344 -1.117582 -1.284123 0.862407 -0.521499 0.848098 -0.439178 -0.089982 -3.638828 1.541650 0.966747 -0.813251 -1.136908 1.023893 -0.887007 0.181424 -0.541346 -0.464106 0.141708 0.115044 0.404107 1.232072 0.603870 0.524471 0.588444 0.406012 2.999175 -1.241063 0.804859 0.458895 -0.432224 -0.712851 0.362996 0.194289 0.046707 0.657147 0.288108 -0.124556 -1.625400 -0.229246 -0.844587 -1.186835 0.965827 -0.050592 -0.531204 -0.885359 -0.329550 -1.159326 -0.620822 -0.981113 1.195025 1.697315 -1.323296 0.983751 -0.037876 0.134120 0.209527 0.403145 0.309490 1.034139 0.299142 -0.114350 -0.392824 -0.481112 -0.054266 0.394234 0.224720 -0.445000 -2.102681 0.978107 -1.085206 -1.462204 0.478450 0.923195 -0.522129 -1.144669 -0.469749 0.364823 0.683347 -0.848079 -1.200682 -0.448693 0.321501 0.138550 -0.285513 -0.000885 -0.871792 -0.402043 -0.580667 -1.731632 0.520125 -0.124685 -0.246744 -0.886937 1.223200 -0.445693 -0.246599 0.047220 1.029459 -0.894942 1.438218 -0.412662 1.017049 -0.030997 0.487043 -1.360988 -0.160721 0.890643 1.013391 -0.470485 -0.216097 -1.102465 0.268357 -1.222908 0.139539 -0.081206 1.178892 1.332423 -0.788101 -1.002918 -0.334988 -0.230192 -1.880796 0.291853 -0.854507 -0.550596 0.563808 1.038982 0.889953 1.180130 1.591381 -0.871893 0.689861 -0.237361 -0.505189 1.425026 -0.149159 1.084049 -0.800172 -0.712284 0.337774 0.261746 0.683399 -0.014443 0.180679 0.259948 -1.426277 -0.305155 0.254926 0.691796 -0.299633 0.862456 1.160393 1.963575 -1.503064 0.230670 1.078445 -0.674968 -0.020683 0.248815 -1.254743 0.318489 0.593519 -0.313437 1.366191 0.074730 -0.871380 0.374431 -0.330079 0.417210 -0.777527 0.082323 -0.721712 -0.268480 -0.681277 -0.174233 -0.802646 -0.539429 -0.717549 -0.890808 1.638444 -1.456917 -1.142158 1.594863 -0.436225 0.585211 -2.086153 2.250673 -1.001902 0.941089 -0.736829 -0.076250 -0.180621 0.546011 -1.330861 0.683988 0.435662 -0.491402 0.581824 2.048691 0.887718 0.409638 -0.452311 1.551166 -0.456018 1.402427 -0.504261 1.550782 -0.548054 -0.701186 0.042066 -0.268094 -0.461920 -0.456658 0.668220 1.123254 0.596505 0.595967 0.822882 1.036527 1.653327 -0.747363 1.141024 -0.303050 0.845176 -0.472328 -0.496485 0.697934 0.801739 -0.262810 0.685640 -1.840049 -1.855771 -1.477977 -1.451034 0.383326 0.059081 0.187989 -0.430920 -0.151319 -1.620579 -0.930037 0.919610 -0.449031 0.965251 0.862164 0.331465 0.996179 1.433129 -0.745758 -0.181667 -0.074122 0.353367 0.340112 -0.518758 -1.259153 1.449405 -1.181466 0.167766 1.650478 -0.683452 0.475827 0.159145 1.002670 -1.085264 1.808859 0.287805 -0.602146 1.438920 1.425764 1.562912 0.246769 -0.724059 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__printList(Node*) = -0.410795 -0.634095 1.789409 1.190952 -0.330991 0.261003 0.096325 -0.662813 0.727715 0.074688 -0.466364 0.532959 -0.766776 0.044843 0.095207 0.393280 -1.451947 -0.783088 -0.134966 -0.643136 -0.391582 -0.523249 0.005120 0.554602 0.666698 0.778955 -0.615032 0.205756 -0.869694 -1.182141 0.184395 -0.315239 0.662626 0.532214 0.530332 -2.114148 1.022669 0.844110 -0.265372 -1.082257 0.486026 -0.698121 0.092903 -0.394643 -0.255542 0.577164 0.438001 0.373991 0.652187 0.250298 -0.123560 -0.157743 0.131328 1.102109 -0.257035 0.590385 0.671686 -0.567690 -0.288390 -0.110036 0.132697 -0.417225 0.536818 0.357062 -0.583408 -0.889361 0.179210 -0.528724 -0.773117 0.726967 0.196677 -0.508889 -0.605252 -0.629430 -0.932117 -0.345589 0.189222 0.869204 1.324682 -0.681314 0.965477 0.159371 0.472495 0.120264 0.604443 0.089956 1.140752 0.220272 -0.403627 -0.116439 -0.717947 -0.737733 0.104472 0.509041 -0.261083 -0.358800 0.421774 -1.597284 -1.114737 0.320262 0.353914 -0.406933 -1.031644 0.050112 0.602204 0.545305 -0.104666 -0.792483 -0.118192 0.353648 -0.519252 -0.144585 -0.182786 -0.090025 -0.438777 -0.129960 -1.293096 0.403857 0.290677 -0.202455 -0.240562 0.990078 -0.337257 0.206192 0.045228 0.487173 -0.338967 1.092760 0.006774 0.335255 0.009899 -0.168018 -0.579653 -0.056767 0.294174 0.388355 -0.622788 -0.515988 -0.189189 0.222150 -0.711823 -0.070770 -0.519412 1.056409 0.992377 -0.595041 -0.821529 -0.627626 -0.780633 -1.312538 0.112265 -0.561006 -0.463452 0.518118 0.756445 0.608230 0.527063 1.171473 -0.701105 0.381036 -0.089714 -0.284268 0.711708 0.110057 0.757629 -0.706098 -0.359712 0.561756 0.183724 0.516171 0.085271 -0.175267 0.256874 -0.932458 -0.644882 0.871650 0.429194 0.530939 0.801398 0.911116 1.355138 -0.781533 0.031811 0.501325 -0.236549 -0.262898 0.317385 -0.790379 0.423284 0.327813 0.258860 1.205412 0.007563 -0.495022 0.143262 0.114298 0.270876 -0.824084 0.223803 -0.516591 0.419323 -0.421034 -0.267300 -0.768198 -0.477931 -0.731301 -0.654684 1.287274 -0.681523 -1.396430 1.075858 -0.498653 1.181635 -1.659397 0.548430 -0.720502 1.093529 -0.437859 -0.098488 -0.036158 -0.526446 -0.624356 0.519724 0.323338 -0.184695 0.318501 0.850528 0.606305 0.267652 -0.086979 0.802246 -0.177540 0.813772 -0.339723 0.665741 -0.313149 -0.027867 -0.015532 -0.212386 -0.194353 0.180888 0.126977 0.481691 0.630720 0.415864 0.701037 0.756666 0.664459 -0.529443 0.416726 -0.182880 0.739310 -0.491830 -0.634917 0.149157 0.724799 -0.016634 0.259864 -1.407313 -1.372201 -1.049625 -1.497226 -0.319609 0.007291 0.343574 0.122614 -0.051717 -0.946298 -0.527709 1.090090 0.059580 1.745221 0.400271 0.125036 0.850581 0.893061 -0.420685 -0.510832 0.080546 0.265392 -0.142481 -0.061350 -1.176435 0.969348 -0.794737 0.423055 1.313641 -0.793381 0.391748 -0.244541 0.909343 -1.029321 1.263153 0.403955 -0.978485 0.609682 0.602404 0.819078 -0.050092 -0.706872 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__getTail(Node*) = -0.231335 -0.524336 2.261087 1.518968 -0.173665 0.123436 0.037036 -0.773759 0.861271 0.545153 -0.518657 0.724502 -0.710998 0.142050 0.485803 0.888848 -1.639888 -0.950581 -0.194395 -0.745208 -0.527190 -0.503939 0.221962 0.383642 1.056638 0.704075 -0.991163 0.206874 -0.756117 -1.990483 -0.101557 -0.415128 0.778340 0.433972 0.737132 -1.855294 1.389339 0.784169 -0.260034 -1.076258 0.611469 -0.433040 0.078556 -0.334568 -0.016936 0.998987 0.689564 0.231393 1.016488 0.598931 0.109113 -0.258329 0.209879 0.757249 -0.320654 0.547558 0.559066 -0.877804 -0.269131 -0.131985 0.152089 -0.593189 0.504589 0.434887 -0.494565 -1.156089 0.279808 -0.416831 -0.826209 1.016194 0.311153 -0.713042 -0.841926 -0.788742 -0.774261 -0.250269 0.474663 0.984081 1.498861 -0.519514 0.903970 0.216488 0.562069 -0.025147 0.410788 -0.058223 1.257518 0.245171 -0.458249 -0.245981 -0.586508 -1.233599 0.021480 0.994474 -0.153377 0.247803 0.387925 -1.581362 -1.213009 0.316857 0.598796 -0.377858 -1.508401 0.234428 0.847508 0.609130 0.326353 -0.788647 -0.065313 0.113999 -0.656473 -0.119503 -0.374717 -0.483925 -0.677554 0.402510 -1.533099 0.415482 0.141029 -0.193033 -0.470790 0.855922 -0.467996 0.157124 0.046691 0.771347 -0.334368 0.981472 0.160940 0.776630 0.257786 -0.191087 -0.902079 0.012507 0.433836 0.104047 -0.558395 -0.472833 -0.566899 0.194788 -1.056886 0.150079 -0.612531 1.522515 1.480068 -0.749364 -1.267813 -0.527437 -0.888692 -1.249967 0.337032 -0.652051 -0.441892 0.276414 0.711790 0.421149 0.674966 1.396648 -0.899516 0.439072 -0.094649 -0.213737 0.935172 -0.126555 0.864297 -0.809309 -0.188949 0.653791 0.393030 0.347222 0.130979 -0.284850 0.487685 -1.164013 -0.756768 1.096881 0.260262 0.663616 0.632486 0.886240 1.850150 -0.601975 -0.108453 0.791494 -0.069186 -0.497564 0.534713 -0.877322 0.557597 0.216122 0.645843 1.378131 0.078515 -0.624184 0.259691 0.158722 0.288179 -0.771111 0.306145 -0.495857 0.840165 -0.240997 -0.501676 -0.907987 -0.337809 -0.535795 -0.453468 1.443542 -0.225486 -1.873860 1.320431 -0.915340 1.256846 -1.872944 0.711713 -0.748208 0.831267 -0.621566 0.001666 -0.112049 -0.647034 -0.760075 0.653982 0.274116 0.068530 0.331063 0.997517 0.620628 0.199207 -0.185163 0.835225 -0.118527 1.203159 -0.044623 0.743240 -0.393619 0.278421 -0.263438 -0.018791 -0.413894 0.121431 -0.141855 0.109840 0.552048 0.298286 0.713865 0.639514 0.907612 -0.669590 0.723233 -0.137834 0.849095 -0.584527 -0.806181 0.442529 0.672139 -0.203713 0.402515 -1.546760 -1.283738 -0.766432 -1.918499 -0.612258 0.256649 0.538294 -0.000239 -0.294867 -0.702211 -0.579316 1.301236 0.442860 1.942638 0.382857 -0.070351 0.835225 0.949351 -0.472779 -0.624539 -0.409454 0.088749 0.025848 -0.272143 -1.253206 1.143484 -0.879209 0.302570 1.527730 -1.042103 0.389397 -0.503727 0.885492 -1.270856 1.341270 0.348433 -0.912279 0.760623 0.456634 1.034877 -0.330486 -0.814563 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__partition(Node*, Node*, Node**, Node**) = -1.839674 -2.324264 10.269749 6.847804 -0.675358 0.988717 1.551226 -5.164678 4.921634 2.474167 -1.006608 2.511585 -3.884639 1.082591 -0.116512 4.326259 -7.230594 -4.106548 -1.499618 -5.402496 -2.548039 -2.445071 2.206442 0.652120 4.775419 0.378674 -4.094582 -0.893678 -4.482474 -7.995499 1.687776 -2.107595 3.671674 -1.242535 0.871954 -13.265106 6.876689 4.182297 -2.480906 -4.691946 3.764024 -3.308037 0.410451 -1.165672 -1.478483 2.095420 1.248480 0.583356 5.213035 2.553424 2.170516 1.294944 1.343202 8.791795 -3.975136 3.221585 1.796232 -3.097749 -2.787466 1.064485 0.528455 -1.008272 3.200680 1.589881 -1.529515 -6.316236 0.688364 -2.215156 -5.061761 4.256760 0.419048 -3.499931 -3.104804 -1.914712 -4.473693 -2.305610 1.298726 4.161084 6.865609 -3.444911 4.448784 0.022183 0.953745 0.421488 2.278392 0.488251 5.723412 0.964307 -1.403376 -2.107222 -2.448641 -2.317492 0.988525 3.644664 -1.183946 -3.706255 2.910567 -5.813307 -6.090803 1.694461 3.330615 -2.269562 -7.226009 -1.178090 2.973209 2.567946 -1.248980 -4.856771 -1.666530 1.625234 -1.751898 -1.208257 -1.072975 -3.934703 -2.392980 -0.349004 -6.919562 1.944027 0.103457 -0.836046 -4.279201 4.920937 -2.111707 -0.470672 0.332494 4.512193 -2.872113 4.457818 -1.630727 4.142969 0.725051 0.479001 -5.323176 -1.287103 2.491023 1.967222 -2.154625 -1.967080 -3.894804 1.135795 -5.245231 1.330093 -1.744447 6.410209 6.473275 -3.012027 -4.374017 -1.387399 -1.674396 -7.194999 1.403580 -3.337841 -2.704648 1.419638 4.116627 2.256657 4.142239 6.164003 -3.502297 3.046336 -0.581584 -1.794953 5.742084 -1.625725 4.537098 -3.752431 -2.207827 2.030043 1.674384 2.435244 -0.280711 0.134461 1.381021 -5.660036 -2.971196 2.234003 1.733027 1.143959 3.248485 4.667283 10.662663 -5.568870 0.771538 4.160860 -1.915728 -0.726328 1.274375 -4.651048 1.180688 2.298986 0.392704 7.015811 0.319119 -3.994103 0.803929 0.027825 1.607120 -3.832381 1.243446 -2.892227 1.436944 -1.627025 -3.027485 -3.873060 -2.337880 -3.290625 -3.212464 6.730815 -3.756344 -7.565835 7.151313 -3.518430 3.948507 -9.933721 7.003181 -4.180615 3.593556 -3.685609 -0.146718 -0.924821 0.747772 -5.169271 3.838416 1.584114 -1.563146 3.201426 7.406880 3.458196 2.161473 -2.051704 5.244319 -1.223575 5.570303 -1.788676 5.808297 -2.140963 -1.249822 -0.900484 -0.986602 -1.796201 -0.692569 1.358155 1.822072 2.909184 1.165035 3.019403 4.567187 5.731584 -2.934875 4.860394 -1.034189 3.319979 -1.852728 -2.943957 2.829425 2.995454 -0.729965 2.815940 -7.699784 -6.624669 -4.757862 -7.993354 0.151875 1.333782 1.666009 -0.774154 -0.587969 -6.111146 -3.043831 5.161857 0.052438 6.976135 3.015805 1.042461 3.834440 5.385085 -2.333232 -1.629992 -1.643042 0.603891 0.410512 -2.583836 -5.113202 5.804230 -4.391253 1.796790 6.374381 -3.461063 1.844901 -0.770021 3.204605 -5.206647 6.678585 1.330886 -2.588235 5.128422 3.715318 5.720611 -0.848971 -3.237476 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSortRecur(Node*, Node*) = -1.210308 -1.581887 8.554746 5.562730 -1.138427 0.643288 0.936901 -4.415264 3.933285 0.655332 -0.891070 1.761935 -3.158540 0.954993 -0.459596 3.065532 -6.591459 -3.284610 -1.574306 -4.651312 -1.946590 -1.788352 1.970107 0.689918 3.895369 0.988863 -3.348950 -0.499181 -3.644319 -5.381887 2.040291 -1.654873 2.996261 -0.236286 0.758177 -10.926710 5.597654 3.277967 -2.159874 -3.596744 3.275115 -3.047035 0.219695 -1.758789 -1.602658 1.469490 0.600076 0.740370 4.324146 1.564196 1.050516 1.317690 0.572766 7.077613 -3.502231 2.370522 1.368950 -2.514051 -2.337688 0.747357 0.289768 -0.487764 2.439078 1.137056 -1.453476 -5.527922 0.614804 -2.335728 -3.958450 3.630869 0.367441 -2.541753 -2.469236 -1.541123 -4.235730 -1.817214 1.603098 3.844790 5.336417 -3.064907 3.214503 -0.367064 0.530369 0.432673 1.775411 0.633590 4.719479 0.747372 -0.690154 -1.699396 -2.630110 -1.735917 0.989159 2.287995 -0.991714 -3.528265 2.376565 -5.657425 -4.840732 0.978277 3.017042 -2.156859 -5.426342 -0.903786 2.196068 1.960429 -0.921809 -3.654686 -0.756619 1.486459 -1.280287 -0.728438 -0.848423 -2.706002 -1.803750 -0.933171 -5.815559 2.107821 -0.179187 -0.178216 -2.904473 4.104810 -1.972569 -0.928990 0.303544 3.654955 -2.717113 4.025904 -1.823809 2.974343 0.385228 0.463221 -3.244502 -1.164729 2.061050 2.313331 -1.994800 -1.880892 -3.304258 0.853975 -4.630394 0.325341 -1.349264 4.760073 4.510736 -2.787410 -3.447606 -1.036976 -1.912937 -6.329183 0.738828 -2.592225 -2.507292 1.806476 3.333948 2.589802 3.653999 5.077878 -2.633427 2.243312 -0.408635 -1.681835 4.924340 -1.106770 3.749246 -3.016824 -1.747384 1.684752 0.331361 2.311030 -0.306160 0.402748 1.013583 -4.908378 -2.380799 1.894564 1.712422 1.228961 2.718154 4.162061 7.088569 -4.617869 0.811079 3.636491 -1.804354 -0.704325 1.259918 -3.500400 0.894009 2.058700 0.120870 5.658109 0.232268 -3.061458 0.359833 0.144075 1.499425 -3.159407 0.497993 -2.149057 1.199488 -1.719599 -2.245966 -3.125362 -2.013209 -2.924282 -3.363405 5.461877 -3.661398 -6.155252 6.105489 -2.466067 3.796016 -7.977911 4.811250 -3.458369 3.667778 -2.548358 0.073059 -0.606911 -0.244420 -4.780154 3.243927 1.142453 -1.291077 2.304837 5.788887 3.114333 1.752691 -1.892703 4.460592 -1.191113 5.070956 -1.664644 4.673071 -1.830874 -1.368471 -0.297806 -0.721663 -1.952245 -0.754269 1.624945 2.055117 2.314629 2.062744 2.855051 3.687866 4.997323 -2.345586 3.587577 -1.016712 2.248531 -1.363240 -2.572264 2.629149 2.796874 -0.524683 2.031643 -6.345512 -6.191866 -4.589313 -6.640048 0.580858 0.135846 1.163574 -0.620719 -0.535989 -4.990696 -2.499491 3.697288 -0.090672 6.398243 2.456829 0.668250 3.057970 4.601782 -2.508917 -1.160432 -0.466711 1.171295 0.616966 -1.725247 -5.157616 5.259413 -3.464374 1.160460 5.919304 -3.138250 1.718503 -0.720746 2.960862 -4.231389 5.537106 0.918230 -2.622714 4.255204 3.000123 4.008968 0.503109 -2.628789 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -0.473874 -0.247849 1.326266 0.805364 -0.223197 0.154453 0.045060 -0.773867 0.686285 -0.242406 -0.023224 0.173111 -0.570994 0.226042 -0.510513 0.319832 -1.006978 -0.586788 -0.447551 -0.915110 -0.361692 -0.269343 0.350077 0.072087 0.501995 0.083868 -0.633137 -0.005186 -0.852049 -0.534361 0.587047 -0.224195 0.472875 -0.315599 -0.074906 -2.068211 0.847951 0.638969 -0.465408 -0.518345 0.586746 -0.674840 0.076640 -0.424083 -0.535031 -0.012529 -0.167761 -0.262960 0.671492 0.004741 0.268304 0.498229 -0.165244 1.536363 -0.808612 0.420316 0.177278 -0.227541 -0.505255 0.170610 0.015651 0.183758 0.402616 0.142507 -0.320895 -0.953552 0.058945 -0.469145 -0.690249 0.589461 -0.161143 -0.360248 -0.224063 -0.211921 -1.022324 -0.424619 0.593210 0.495029 0.822647 -0.612939 0.432228 -0.215004 0.002727 0.239701 0.351377 0.196558 0.760285 0.111155 0.022876 -0.205019 -0.290631 0.315988 0.168328 0.491373 -0.272343 -0.804962 0.585193 -1.093617 -0.786601 0.129612 0.521583 -0.319400 -0.910346 -0.269750 0.166879 0.288390 -0.398940 -0.633168 -0.169372 0.414453 0.099215 -0.099044 0.004816 -0.491680 -0.163544 -0.509364 -0.934847 0.404911 -0.105197 0.012592 -0.541718 0.797718 -0.465341 -0.324314 0.047580 0.643956 -0.654101 0.796739 -0.530972 0.401304 -0.383987 0.180368 -0.583479 -0.594080 0.291505 0.737571 -0.449861 -0.363117 -0.632707 0.035604 -0.789752 -0.147102 -0.238804 0.452911 0.648897 -0.446406 -0.409186 -0.109164 -0.308501 -1.380187 -0.139476 -0.434364 -0.530074 0.518210 0.572846 0.719904 0.700083 1.171763 -0.229895 0.379161 -0.057428 -0.597541 0.912179 -0.356659 0.610514 -0.444739 -0.497889 0.257853 -0.200445 0.557138 0.030522 0.158700 -0.018169 -0.838689 -0.284991 0.235130 0.441947 0.181098 0.507735 0.764629 0.773266 -1.051149 0.310809 0.594125 -0.426436 0.047972 0.061339 -0.529331 -0.061384 0.507662 -0.352905 0.880279 0.022338 -0.524517 0.000802 -0.086670 0.436539 -0.621775 0.062830 -0.354904 0.135680 -0.517925 -0.421711 -0.465756 -0.297910 -0.552913 -0.911249 0.872600 -1.051017 -0.946868 1.046997 0.178252 0.659589 -1.317537 0.485005 -0.564799 1.143027 -0.341962 0.185450 -0.083323 0.098220 -0.836548 0.606062 0.191361 -0.425750 0.312235 1.060521 0.560405 0.359994 -0.403328 0.879345 -0.247919 0.863801 -0.416778 0.868956 -0.241127 -0.616920 0.222695 -0.191599 -0.397809 -0.239673 0.533923 0.455933 0.516471 0.526943 0.453939 0.735191 0.943161 -0.331709 0.454704 -0.166213 0.282164 -0.147402 -0.333441 0.457974 0.706946 -0.047616 0.161024 -1.007445 -1.249646 -1.041379 -1.158783 0.468701 -0.124124 -0.099614 -0.096791 -0.062331 -0.881813 -0.447407 0.625638 -0.288935 1.523201 0.362467 0.236880 0.511508 0.900968 -0.668946 -0.090119 0.210346 0.299961 0.160421 -0.166282 -1.023235 0.989079 -0.521234 0.078044 0.985855 -0.477131 0.386276 0.307900 0.315660 -0.585885 1.071556 0.146101 -0.410070 0.914653 0.502505 0.744400 0.445716 -0.379951 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = -0.118057 -0.545026 1.695009 0.871114 -0.994663 -0.062843 0.129446 -0.385103 0.891028 -2.015461 -0.688534 0.125980 -1.124485 0.436393 -0.822598 -0.161242 -2.629918 -1.147160 0.026557 -0.273691 -0.135910 -0.722251 0.773514 0.620873 0.497393 1.788801 -0.616477 0.049164 -0.880406 1.130126 1.883834 -0.806693 0.803440 1.782423 0.038389 -3.204471 0.698699 -0.060321 -0.521436 -0.917054 0.661578 -1.339602 0.280411 -2.205432 -0.975283 -0.126509 0.375291 1.602453 0.799539 -0.541307 -1.431785 -0.267684 -0.780979 1.843091 -1.078984 0.123660 0.588852 -0.290202 -0.400452 -0.480567 0.232090 -0.101492 0.583464 1.021515 -1.071667 -0.938980 0.067467 -1.845757 -1.089999 1.095621 0.227632 1.474494 -0.920372 0.281109 -1.681735 -0.150783 0.897684 1.728008 1.741353 -1.224421 0.833272 -0.243743 0.887461 0.130027 0.167296 0.723989 0.888851 0.263938 -0.443847 -0.390134 -2.134248 -0.037294 0.028847 -0.948322 0.463895 -1.870222 0.141982 -2.391055 -0.853979 -0.262113 0.301776 -0.144457 0.069400 0.134052 0.808825 0.743716 -0.604330 -0.820743 0.385162 -0.103635 -0.466311 0.259424 0.552271 0.728173 -0.404844 -1.779540 -1.499424 0.089275 -0.259852 -0.441099 0.998990 1.039504 -1.072251 -0.011384 0.183748 0.162443 -0.636613 1.794073 -0.058589 -0.448765 0.248123 -0.382137 0.967893 -0.338582 0.571883 2.752478 -0.814167 -0.831568 -0.375552 0.135211 -1.104178 -2.118439 0.200268 -0.099989 -0.288438 -1.305282 -0.846790 -0.645397 -0.776799 -2.174893 -0.215384 -0.821115 -0.308993 1.786724 0.935623 1.367998 1.198626 1.717979 -0.778774 0.833394 -0.249001 -0.280389 0.949250 0.875572 0.913870 -0.472954 -0.438551 0.471668 -1.032191 0.852541 -0.043544 -0.495486 0.060859 -1.538987 -0.741335 0.638333 1.268819 0.557610 0.573095 0.630429 -1.626153 -1.444963 0.407603 1.072276 0.082716 -0.367681 0.634368 -0.832586 1.093230 0.232108 -0.432295 0.179849 0.012966 -1.006766 0.040083 0.169359 0.511249 -0.817067 -0.887397 -0.237712 -0.045709 -1.372836 0.730678 -0.556831 -0.775737 -0.809980 -1.091989 1.241510 -1.676268 -1.002701 1.060118 0.284296 2.282330 -1.690875 -0.213140 -0.907099 2.283191 0.199848 -0.017160 0.192277 -1.410712 -0.797711 0.123662 0.342386 0.028985 0.036073 0.508838 1.153651 0.520100 0.266620 1.230785 0.300982 0.932525 -0.120751 0.109323 -0.394466 -0.918637 0.995575 -0.309802 -0.134309 0.174523 1.126267 1.989296 1.092432 1.920869 2.374887 0.744551 1.051451 -0.638025 -0.780708 -0.603943 0.945634 -0.275878 -0.453455 -0.133757 1.256045 -0.496203 0.395377 -1.366823 -3.319590 -2.094325 -1.543607 -0.079382 -1.502628 -0.014534 -0.045423 0.547075 -1.356267 0.009224 -0.453509 -0.522155 2.616104 0.610255 -0.174650 0.883529 1.291536 -1.761795 -0.989663 1.879201 1.451250 -0.125221 1.010555 -2.804973 1.133245 -1.302764 0.273645 2.156031 -1.305741 -0.184272 -0.515946 2.055700 -0.735571 1.986970 0.780632 -1.725173 0.839018 0.263536 0.369234 2.388526 -0.772750 -PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -0.645975 -2.421196 3.883194 3.021957 0.353900 0.867052 1.624780 -0.695165 0.957736 2.111005 -1.054501 2.070671 -2.503144 0.051555 0.298022 1.081720 -2.170745 -2.149654 0.101207 -0.564390 -0.968150 -1.554575 -0.096045 2.028945 2.115254 0.670852 -1.405350 -0.859154 -3.205655 -2.693631 -0.735732 -0.446049 1.697320 0.899169 1.210787 -3.216270 1.574081 2.405991 -0.065429 -2.594239 1.097455 -1.133554 0.152765 0.005489 0.334545 1.319268 1.940309 1.188769 1.288110 1.144991 0.626088 -1.185207 1.329319 2.690095 0.099472 1.939832 2.060406 -1.061347 0.362226 -0.436145 0.409660 -1.841338 1.274314 0.859070 -0.988819 -1.146461 0.126640 -0.719686 -1.425463 1.435985 1.102559 -0.794411 -1.939885 -1.337338 -1.191477 -0.583038 -0.558301 1.634919 3.530434 -1.478763 3.103233 1.279556 1.509630 -0.416531 1.349114 -0.127342 1.847503 0.465057 -1.358110 -0.509768 -2.412687 -1.385407 -0.553836 1.963694 -0.832641 -0.207232 1.071977 -2.141869 -3.249242 1.088292 -0.013627 -1.080528 -1.453422 1.064778 1.075495 1.230596 -0.281505 -2.342406 -1.221934 0.478935 -1.265070 -0.736798 -0.403985 -0.538287 -1.119966 0.185813 -2.709584 0.324810 0.920523 -1.579042 -1.163793 2.145392 -0.391777 2.166471 0.265260 0.944006 0.155284 1.574085 1.555139 0.867882 1.051059 -1.053044 -2.609507 0.204097 0.909979 0.715357 -1.620217 -0.244907 0.018691 0.754609 -0.387674 1.047930 -0.498912 3.522038 1.960006 -1.798955 -2.286332 -1.883707 -0.878162 -1.572829 0.802054 -1.218178 -0.648121 -0.491524 1.623292 0.288852 0.319439 2.679378 -1.357331 1.384208 0.489923 -0.335758 0.746140 -0.056068 1.490352 -1.852840 -1.243672 1.244837 1.915874 0.663129 -0.055692 -0.179647 0.681694 -1.790751 -1.541227 1.116028 0.190983 0.254208 2.427191 1.712127 4.689055 -1.670795 -0.069634 0.715918 -0.192486 -0.631206 0.601225 -2.549964 1.653027 0.052959 0.370741 2.925667 0.187349 -1.487194 1.670310 -0.125759 0.307537 -2.055393 1.520390 -1.476029 0.303879 -0.960543 -0.313643 -1.278013 -1.105583 -1.128516 0.045582 3.251837 -0.650590 -2.755323 1.241510 -0.789948 1.359472 -3.941231 3.406590 -1.384495 1.021159 -1.072020 -1.173567 0.035109 0.479626 -0.540664 0.669729 0.910142 -0.744415 1.384683 1.981529 0.736148 0.556703 0.483438 1.428748 0.138862 0.980586 -0.582148 1.264135 -0.111843 -0.233951 -0.889951 -0.559519 0.531086 0.997877 -0.724842 0.815514 1.712516 -0.350153 1.065330 1.637313 1.203790 -1.234417 0.893496 -0.328559 2.751907 -1.703478 -1.357920 -0.407974 0.566155 -0.111198 1.430559 -3.327600 -2.374774 -0.369420 -3.131529 -1.265385 0.529266 1.313295 0.555876 -0.355894 -2.697031 -1.616184 1.673760 0.295796 2.154945 1.314245 0.381868 2.271921 1.436939 0.114740 -0.923745 -0.496000 0.581679 -0.600264 -0.703905 -1.191117 0.985502 -2.265279 1.733147 2.288379 -1.351538 1.036442 -0.915992 2.052739 -2.853773 3.244865 1.212573 -2.408110 1.124523 1.741781 2.621965 -1.871320 -1.769254 -PE-benchmarks/m-coloring-problem.cpp__graphColoringUtil(bool (*) [4], int, int*, int) = -1.634970 -3.091611 5.250561 3.630590 0.477657 1.150976 1.918027 -0.923947 1.593844 2.154028 -1.253179 2.819401 -3.108733 -0.176943 0.146526 1.097266 -3.076518 -3.234763 0.277512 -0.945099 -1.424581 -2.084101 -0.462361 2.709726 2.479953 0.433133 -2.069653 -0.526703 -4.617822 -3.756669 -0.853790 -0.678524 2.179982 -0.008679 1.763891 -5.573043 2.402373 3.153582 -0.113405 -3.744588 1.397192 -1.878042 0.389068 -0.327714 -0.083221 1.654802 2.707124 1.338894 1.697960 1.258873 0.491256 -1.254092 0.755890 4.182144 -0.055505 2.475488 2.689911 -1.519654 0.002387 -0.472803 0.479092 -2.665411 1.796055 1.117909 -1.898865 -1.493513 0.629560 -1.063616 -2.065241 1.878806 1.727532 -1.485938 -2.107044 -1.531831 -2.303977 -1.012743 1.148260 1.958039 4.553994 -1.970368 4.182080 1.324234 2.471808 0.048779 2.087530 -0.108150 3.008813 0.538248 -1.992847 -1.143484 -3.632915 -1.457983 -0.918898 2.715877 -0.821175 -0.192801 1.412579 -3.132889 -4.242231 1.398413 -0.076266 -1.370865 -2.951695 1.118523 2.002179 1.895152 -0.371546 -3.114280 -1.905971 1.087983 -2.264436 -0.791924 -0.050951 -1.007783 -1.449725 -0.367646 -3.685157 0.571220 1.583312 -1.736172 -1.901991 3.177262 -1.377969 2.607694 0.362818 1.341599 -0.036478 2.214707 1.880880 0.701933 0.800277 -1.942760 -3.931135 -0.232432 0.866547 1.436046 -2.153190 -0.588280 0.012053 1.043885 -0.822208 0.920061 -1.188931 4.599551 2.446942 -2.358290 -3.074721 -2.652208 -1.110189 -2.243029 0.815461 -1.680442 -1.218826 0.164168 2.278952 0.804833 0.468066 4.036797 -1.865508 2.481961 0.437140 -0.727840 1.133179 -0.508983 2.122746 -2.527212 -1.534344 1.710160 2.231483 1.355766 -0.192367 -0.551426 1.004949 -2.589915 -2.596315 1.385695 0.577247 1.074737 3.052620 2.372656 5.976458 -3.206861 -0.320037 0.935512 -0.369240 -0.929939 0.712892 -3.049558 1.697363 0.432888 0.236819 4.247021 0.260509 -2.585419 1.833467 0.260515 0.609513 -2.792393 1.765633 -1.863733 0.634350 -0.924960 -1.075617 -2.207810 -1.355043 -2.238905 -1.066159 4.405779 -1.276866 -4.944137 1.903213 -1.334040 2.752354 -6.070260 3.631269 -1.964696 2.039956 -1.350284 -0.870662 -0.221921 0.534808 -0.874830 1.469156 1.135677 -1.155989 1.922282 2.976719 1.197001 1.171679 0.421285 1.984774 0.128187 1.318431 -0.759801 1.566595 -0.616969 -0.632288 -0.877679 -0.763129 0.651453 1.664578 -0.564240 0.775312 2.459406 -0.251837 1.825237 2.676190 1.500934 -1.625235 0.760269 -0.529778 3.628082 -2.043107 -1.911215 -0.583950 1.187055 0.057881 1.517804 -4.538315 -3.598526 -1.095285 -5.274192 -1.159371 0.634541 1.269220 0.698881 -0.306490 -3.879878 -1.763504 2.788756 0.549651 4.722015 1.794862 0.454964 3.111556 2.080605 -0.521771 -1.587026 -0.091735 0.576181 -0.989255 -0.901954 -2.140138 1.573987 -3.326939 2.460129 3.254889 -1.949018 1.317384 -1.283954 2.293384 -3.764531 4.407144 1.702123 -3.425876 1.218932 1.925126 3.666753 -2.252696 -2.422109 -PE-benchmarks/m-coloring-problem.cpp__graphColoring(bool (*) [4], int) = -0.117241 -1.983871 3.431845 2.625188 -0.101167 0.514808 1.257713 -0.497812 1.066731 0.952969 -1.044814 1.612530 -2.074412 0.088077 0.487175 1.041529 -2.521517 -1.967824 0.368319 -0.197270 -0.612310 -1.325384 0.225193 1.583734 1.731560 1.465106 -1.091077 -0.600556 -2.299045 -1.783785 0.072261 -0.626971 1.530691 1.809315 1.169974 -2.975726 1.486474 1.583792 -0.116859 -2.518227 0.858343 -1.045610 0.203534 -0.924214 0.287075 1.307501 1.730008 1.936177 1.064601 0.985552 -0.429503 -1.134020 0.821757 1.818450 0.019971 1.290705 1.747671 -0.899375 0.306574 -0.645997 0.531999 -1.464178 1.060952 1.021931 -1.054621 -1.077738 -0.092663 -1.257299 -1.446057 1.323026 1.193063 -0.069707 -2.010005 -0.845291 -0.831982 -0.205223 -1.056238 1.976521 3.011813 -1.520922 2.541100 0.966967 1.590479 -0.432086 0.888966 0.126804 1.419922 0.544569 -1.172856 -0.623610 -2.746705 -1.816181 -0.318074 0.357976 -0.394632 -0.538233 0.699565 -1.613820 -2.455048 0.738810 0.128238 -0.772563 -1.001441 1.032255 1.212542 1.475053 -0.139807 -1.739752 -0.579205 0.195913 -1.256223 -0.478947 -0.249949 0.236294 -1.161153 -0.422202 -2.489395 0.241209 0.790497 -1.256540 -0.095006 1.643690 -0.720542 1.527571 0.116023 0.368887 0.049505 1.874250 1.507908 0.432312 1.433377 -1.165397 -1.433259 0.892025 1.054523 1.427112 -1.206269 -0.239129 0.020181 0.714820 -0.500411 -0.039665 -0.227698 2.438931 1.298060 -1.736687 -2.166573 -1.778621 -0.924092 -1.366043 0.796891 -1.253182 0.018090 0.593273 1.475579 0.522351 0.577844 2.365336 -1.883429 1.306207 0.136123 0.133820 0.606810 1.093478 1.266362 -1.410968 -0.803157 1.182225 1.175178 0.544520 -0.061353 -0.478227 0.810756 -1.741236 -1.464003 1.261905 0.441232 0.331182 1.785595 1.262144 2.387522 -1.186227 -0.377769 0.830910 0.030013 -0.806654 0.815131 -2.137467 1.803894 -0.181683 0.551960 2.012700 0.058184 -1.340498 1.260328 0.051147 0.119957 -1.470349 0.725521 -1.103994 0.128290 -0.917102 0.303025 -1.112529 -1.099486 -1.044326 -0.001391 2.803970 -0.270507 -2.349441 0.954177 -1.340224 1.693614 -3.162762 2.322818 -1.248987 0.738267 -0.529011 -0.888188 0.001799 -0.592692 -0.573237 -0.022858 0.825201 -0.142578 0.759217 1.600760 0.861290 0.089874 0.645423 1.201492 0.202748 1.038103 -0.248944 0.750693 -0.468536 0.103899 -0.291642 -0.436743 0.420076 0.725009 -0.590937 1.638910 1.362671 0.517214 1.798572 0.878758 1.091541 -1.233162 0.361904 -0.261971 2.359814 -1.318528 -1.045469 -0.440263 0.591450 -0.336074 1.240386 -2.700856 -2.729324 -0.474404 -2.750598 -1.274700 -0.165724 1.249271 0.180918 -0.139426 -2.151504 -1.178971 0.943622 0.258615 2.118744 1.147093 -0.027913 1.933189 1.278970 -0.582679 -1.119266 0.256627 0.789227 -0.452683 -0.157998 -1.601942 0.978660 -2.061157 1.174309 2.525785 -1.411509 0.559966 -1.764873 2.631247 -2.198181 2.869099 1.130206 -2.378062 0.713139 1.193622 1.878608 -0.713475 -1.601908 -PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -0.597950 -1.294093 1.828164 1.289421 -0.065572 0.503542 0.614193 -0.166201 0.442236 0.306236 -0.729104 0.954680 -1.234092 -0.173022 0.067818 0.003282 -1.246976 -1.185706 0.157425 -0.149901 -0.325306 -0.765771 -0.453264 1.322807 0.714768 0.615645 -0.564185 -0.022956 -1.788256 -0.704649 -0.196753 -0.202392 0.794550 0.652224 0.782745 -1.815872 0.661376 1.229253 0.020621 -1.492743 0.419734 -0.879422 0.093878 -0.326043 -0.113676 0.607088 1.013769 0.808710 0.337159 0.198878 -0.255541 -0.686006 0.125301 1.313894 0.210989 0.946088 1.299286 -0.456919 0.115581 -0.321058 0.198920 -0.998014 0.624954 0.457743 -0.923099 -0.409802 0.211884 -0.561573 -0.670953 0.564282 0.693191 -0.316496 -0.743682 -0.688668 -0.958179 -0.339676 0.383262 0.817799 1.737596 -0.839764 1.654334 0.582885 1.055113 0.029995 0.897964 0.054003 1.097457 0.225540 -0.751815 -0.145636 -1.689250 -0.662057 -0.274741 0.677062 -0.396825 -0.119728 0.476133 -1.522943 -1.564810 0.481076 -0.175107 -0.544732 -0.602488 0.608903 0.641993 0.735091 -0.180658 -1.071290 -0.465715 0.483889 -0.884063 -0.267772 -0.037747 0.183331 -0.451862 -0.449766 -1.385042 0.304683 0.764096 -0.669356 -0.164759 1.254159 -0.562981 1.109548 0.118900 0.194313 0.046372 1.068351 0.801642 -0.136501 0.240742 -0.907060 -0.953676 0.026693 0.202308 0.808294 -0.936690 -0.300827 0.449734 0.397868 -0.051820 0.060780 -0.406217 1.451827 0.526070 -0.896468 -0.981444 -1.250218 -0.752970 -0.903290 0.150982 -0.583152 -0.473578 0.271601 0.866992 0.556972 0.064888 1.568487 -0.616650 0.747348 0.170813 -0.251659 0.209891 0.116241 0.748090 -0.898935 -0.609517 0.716794 0.601662 0.550992 0.050961 -0.255020 0.281864 -0.959387 -0.941712 0.708841 0.331312 0.530046 1.350996 0.972681 1.473854 -0.959448 -0.052385 0.121594 -0.129998 -0.348936 0.298342 -1.122801 0.710068 0.173876 0.097645 1.458363 0.060525 -0.741645 0.599864 0.106083 0.200076 -1.116884 0.617210 -0.663825 0.259966 -0.563523 -0.005520 -0.801596 -0.636680 -0.934798 -0.460529 1.636929 -0.555200 -1.681220 0.472146 -0.140572 1.295998 -2.016803 0.874471 -0.721920 1.253941 -0.270046 -0.420972 0.094136 -0.298917 -0.180999 0.399079 0.455710 -0.371398 0.529558 0.668189 0.476273 0.334647 0.410864 0.678645 -0.003988 0.307194 -0.428310 0.308425 -0.145775 -0.235284 -0.063625 -0.336253 0.336492 0.761349 -0.150992 0.557699 0.992992 0.201190 0.776309 0.922072 0.257362 -0.564791 -0.062992 -0.203716 1.382021 -0.789919 -0.680409 -0.521259 0.551953 0.173700 0.373772 -1.699536 -1.522222 -0.617880 -1.847808 -0.521804 -0.071388 0.453893 0.499152 0.016833 -1.441267 -0.674588 0.873011 0.048365 2.064813 0.597849 0.240573 1.237421 0.727889 -0.222068 -0.682349 0.421171 0.524306 -0.531885 0.036836 -1.038780 0.561301 -1.163475 0.956805 1.330011 -0.743618 0.527046 -0.508519 1.167119 -1.375098 1.696651 0.758053 -1.678347 0.299788 0.748331 1.088804 -0.554856 -0.949382 -PE-benchmarks/m-coloring-problem.cpp__main = 0.181388 -0.515178 1.296247 0.912008 -0.243658 -0.019851 0.402507 -0.269014 0.402889 -0.149577 -0.380266 0.407520 -0.625843 0.272235 -0.453243 0.522828 -1.033385 -0.579154 -0.044346 -0.242593 -0.090054 -0.197452 0.517349 0.123705 0.725947 0.617662 -0.380364 -0.483476 -0.623882 -0.298894 0.455965 -0.311466 0.463957 0.407513 -0.047493 -1.217703 0.529105 0.470942 -0.342325 -0.758195 0.584865 -0.368128 -0.019620 -0.603445 -0.128478 0.149661 0.292062 0.702109 0.368711 0.400838 -0.214324 0.055775 0.373769 1.084906 -0.319060 0.328327 0.573357 -0.062407 -0.094089 -0.169073 0.249460 -0.095781 0.178712 0.222726 -0.012276 -0.683357 -0.410196 -0.669831 -0.455573 0.377246 -0.026473 0.297551 -0.654021 -0.095648 -0.488200 -0.012237 -0.851688 0.804586 0.955413 -0.794107 0.578440 0.077462 0.203597 -0.104697 -0.104028 0.311922 -0.054806 0.314694 0.026162 -0.210425 -0.544994 -0.180770 0.140564 -0.347645 -0.234506 -1.208481 0.572461 -0.646770 -0.653716 0.148542 0.371560 -0.335172 0.245510 0.125775 -0.001215 0.587614 -0.420344 -0.405789 0.072312 -0.121482 0.246007 -0.118417 0.044950 0.182796 -0.266154 -0.362310 -0.918721 0.261506 -0.030528 -0.325063 0.247683 0.394365 -0.094031 0.154053 -0.037784 0.239365 -0.286390 0.922525 0.232302 0.294013 0.235575 0.219410 -0.095347 0.285729 0.641775 0.773782 -0.508574 0.056403 -0.305457 0.154079 -0.247540 -0.359659 0.038489 0.300678 0.342552 -0.641315 -0.648253 -0.446507 -0.376751 -0.795550 0.107708 -0.446831 -0.047734 0.524671 0.494431 0.350080 0.537670 1.002664 -0.576355 0.143611 0.022856 -0.148318 0.401874 0.340220 0.437847 -0.317427 -0.375501 0.322647 0.075351 0.273690 0.020129 0.118356 0.248163 -0.763855 -0.034202 0.386208 0.444612 -0.307749 0.476797 0.450874 -0.126220 -0.223033 -0.123432 0.470654 -0.232018 -0.176912 0.286052 -0.778164 0.527676 0.022935 0.097921 0.367802 0.106490 -0.277655 0.496984 -0.274535 0.038657 -0.312976 0.015563 -0.336923 -0.266953 -0.501654 0.428223 -0.169372 -0.292194 -0.253806 -0.260502 0.846472 -0.599889 -0.200305 0.278275 0.002317 0.325346 -0.787636 0.899147 -0.467326 0.590038 0.128449 -0.133670 0.136983 -0.288115 -0.521607 -0.234485 0.283835 0.008325 0.116765 0.645449 0.442724 -0.180086 0.066868 0.683576 -0.204211 0.700890 -0.102760 0.330687 -0.229801 -0.418018 0.198367 -0.070310 -0.204668 -0.238559 0.224183 1.041299 0.148838 0.610131 0.801217 0.168558 0.867144 -0.483516 0.277372 -0.156420 0.743942 -0.324616 -0.247315 0.066775 0.475467 -0.187534 0.450664 -0.847967 -1.260248 -0.797556 -0.699190 -0.017085 -0.525583 0.295681 -0.350937 -0.060418 -0.702524 -0.563067 0.093020 -0.240789 0.389300 0.566577 0.012362 0.552515 0.479172 -0.485777 -0.117590 0.258090 0.613033 0.221546 0.026086 -0.681836 0.442564 -0.634749 -0.119679 1.061824 -0.461195 0.173350 -0.221463 0.859133 -0.502072 1.058706 0.261909 -0.710094 0.592721 0.614120 0.539757 0.355653 -0.443772 -PE-benchmarks/finite-automata-algorithm.cpp__getNextState(char*, int, int, int) = -2.763122 -5.862733 7.599004 5.641766 1.383941 2.540866 3.110464 -0.594500 0.700681 4.670276 -2.125066 5.492896 -4.816965 -1.553439 1.039331 0.471673 -3.256443 -4.898944 0.282810 -0.595529 -1.769862 -3.039786 -3.054794 6.810033 3.585836 -1.181730 -3.044740 -0.006896 -8.348382 -6.126326 -4.435510 -0.064019 3.169088 -1.282261 4.241407 -5.310818 3.105008 6.346757 0.907668 -5.745305 1.384223 -2.158965 0.185007 0.710056 -0.916724 2.970839 5.028045 0.578426 1.274656 1.804825 0.948758 -2.684481 2.210203 5.242643 2.515643 4.817406 5.665186 -2.260113 1.730772 -1.296355 0.648541 -5.305636 2.334430 0.551341 -2.667127 -0.983650 1.109510 0.082368 -1.538667 1.971180 3.222151 -3.416671 -2.784296 -3.362490 -4.932362 -1.787422 4.122796 1.871286 6.838218 -2.803797 7.117296 3.469783 4.202648 0.606200 4.334718 -0.668513 4.803197 0.874602 -3.331781 0.005571 -5.698657 -2.727554 -1.930241 5.545177 -2.458470 1.059784 2.047407 -6.771926 -7.420477 3.214439 -1.231229 -2.906724 -3.690689 1.618397 2.638194 2.193475 -0.181794 -4.745415 -3.253803 2.412771 -3.739508 -1.593527 0.019863 -0.728025 -1.055265 0.984280 -5.398706 1.297053 4.001003 -2.868176 -2.807403 5.284037 -1.607729 6.171293 0.415920 1.436896 0.781898 2.168756 4.142508 0.767963 -0.227439 -4.084264 -6.362463 -1.334842 0.028825 -0.571208 -3.519833 -0.619655 1.951855 2.248842 0.974929 4.193567 -1.904223 8.282554 1.958626 -2.787279 -4.386386 -5.378950 -3.663040 -1.894322 1.206708 -1.555106 -3.474117 -0.429318 3.148319 0.151388 -1.212915 4.996620 -0.558621 2.914375 1.260153 -1.338109 0.199054 -3.619742 2.644918 -3.939937 -2.642470 3.501356 4.535799 2.826815 0.271241 -0.811052 1.736039 -2.549353 -4.305737 1.264445 -0.139719 1.943562 6.054472 4.026241 9.833474 -3.217301 -0.661706 -0.229190 -0.298089 -1.094076 0.353590 -4.498815 2.025074 0.468194 0.355333 7.530936 0.359526 -3.318643 3.848859 0.422315 0.819038 -4.931002 4.151099 -2.960208 2.018551 -1.191542 -2.009617 -3.594053 -1.785577 -3.984238 -1.559559 7.021585 -2.213661 -7.697499 1.756248 -0.021370 4.202167 -8.781868 5.439348 -2.248905 4.607741 -1.121821 -2.155995 0.610507 0.940740 -0.260189 2.296207 1.819284 -2.742409 2.750324 2.275198 0.851380 1.727981 1.217024 1.902528 0.008057 0.974903 -1.987063 1.625264 -0.297212 -1.005027 -2.517529 -1.080251 1.938238 3.780101 -1.630506 -1.893228 3.233442 -1.629368 0.663577 4.667770 0.461902 -2.244636 0.315601 -0.525444 5.688758 -4.159040 -3.062657 -2.192021 1.466609 1.268363 1.925700 -7.147759 -3.159406 -2.116261 -7.328411 -2.845171 1.979843 2.002763 2.353719 -1.139528 -5.532148 -3.430725 5.762111 1.267388 5.599907 3.140636 1.246704 5.467011 2.172402 1.621022 -2.241717 -0.701613 0.543031 -2.097826 -1.407996 -2.110008 1.504190 -5.129667 4.862488 4.103516 -2.454777 3.153546 -1.271666 1.685908 -6.537239 6.262139 2.774661 -6.491474 0.382219 4.040674 4.635969 -6.381886 -3.968590 -PE-benchmarks/finite-automata-algorithm.cpp__computeTF(char*, int, int (*) [256]) = -1.052238 -2.396583 3.710533 2.706639 0.397427 0.860050 1.575421 -0.524795 1.019902 1.802737 -1.055939 2.037997 -2.399715 -0.088306 0.287531 0.832837 -2.084929 -2.312578 0.260908 -0.504775 -0.935532 -1.543319 -0.385455 2.031660 1.830041 0.211622 -1.367552 -0.548083 -3.326327 -2.489819 -0.768925 -0.481753 1.592980 0.148480 1.253861 -3.715166 1.609020 2.344947 -0.022342 -2.728769 0.986319 -1.321730 0.259655 -0.064914 0.042864 1.217597 2.076386 1.245103 1.121583 1.014246 0.470181 -1.142457 0.728077 2.996654 0.111639 1.897257 2.134320 -1.020414 0.063254 -0.403250 0.386631 -2.003388 1.277032 0.852809 -1.299685 -0.947500 0.349155 -0.720601 -1.469648 1.221507 1.297972 -0.934200 -1.638742 -1.191707 -1.366705 -0.695832 0.458115 1.371667 3.462249 -1.458144 3.159957 1.148507 1.784477 -0.076015 1.475873 -0.091473 1.987458 0.394928 -1.496849 -0.627964 -2.592368 -1.186855 -0.613701 1.942029 -0.666670 -0.243858 0.977112 -1.948597 -3.127568 1.070475 -0.184039 -0.999828 -1.734756 0.960761 1.322222 1.387741 -0.361463 -2.310812 -1.364766 0.646700 -1.535337 -0.660609 -0.131975 -0.586878 -1.070946 -0.281234 -2.690473 0.312171 1.202719 -1.481432 -1.193569 2.229878 -0.940163 2.176897 0.274434 0.832747 0.135523 1.651615 1.601424 0.492652 0.725567 -1.462259 -2.775549 -0.033320 0.633429 1.039216 -1.512747 -0.280970 0.232605 0.771175 -0.354910 0.864283 -0.628830 3.390267 1.768447 -1.669642 -2.194549 -2.003586 -0.835834 -1.472865 0.739995 -1.235593 -0.761061 -0.160005 1.646015 0.407937 0.216713 2.991074 -1.299727 1.709808 0.351084 -0.460034 0.673245 -0.277868 1.523616 -1.817564 -1.163280 1.265864 1.826787 0.828825 -0.058379 -0.374215 0.726624 -1.862399 -1.734954 0.947009 0.322788 0.561648 2.325208 1.639924 4.514039 -1.911643 -0.160877 0.558631 -0.179339 -0.619160 0.533323 -2.357649 1.320287 0.207705 0.178493 2.987590 0.223317 -1.791003 1.479283 0.044340 0.334825 -2.050439 1.436363 -1.358309 0.454168 -0.771649 -0.444210 -1.467689 -1.029503 -1.432949 -0.354714 3.186095 -0.691585 -3.308294 1.063983 -0.779110 1.818930 -4.191297 3.095084 -1.397648 1.445198 -1.007745 -0.877507 0.027157 0.429459 -0.427096 0.969032 0.872530 -0.653645 1.339221 1.949884 0.785730 0.708613 0.515948 1.387073 0.132187 0.787003 -0.544421 1.055392 -0.295993 -0.349303 -0.661409 -0.573901 0.601704 1.264860 -0.549275 0.622512 1.779795 -0.366368 1.243020 1.811675 0.934238 -1.169335 0.609362 -0.345516 2.816262 -1.567636 -1.293805 -0.605931 0.775091 0.067084 1.191470 -3.270480 -2.419964 -0.569342 -3.576903 -1.027427 0.642804 1.054725 0.588939 -0.175141 -2.764889 -1.348197 1.968600 0.301837 3.159172 1.316260 0.425730 2.281952 1.391390 -0.115737 -1.156188 -0.134677 0.489780 -0.795322 -0.567544 -1.299432 0.937879 -2.436485 1.826799 2.207900 -1.314097 0.915187 -0.975322 1.839969 -2.736358 3.185895 1.289108 -2.490569 0.909845 1.581790 2.688480 -1.816289 -1.753526 -PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -1.609075 -3.693883 5.837137 4.042336 -0.161102 1.515649 2.025462 -0.891451 1.047482 1.292940 -1.370817 3.342258 -3.573454 -0.353701 -0.901767 0.351939 -3.523444 -3.079407 -0.180153 -1.105553 -1.134668 -1.847697 -0.710388 4.029919 2.766155 0.870404 -2.087696 -1.103312 -5.570487 -2.181406 -0.721988 -0.336978 2.477452 -0.142466 1.683212 -6.167449 2.000809 3.989702 -0.269882 -4.158711 2.015384 -2.226084 0.268379 -0.615473 -1.469825 0.774838 2.405889 1.288153 1.273018 0.740839 -0.181989 -0.677292 1.730298 5.909226 0.342871 3.010852 3.524057 -1.213507 0.346014 -0.759065 0.459167 -2.457802 1.694459 0.428174 -1.629489 -1.816426 0.113949 -1.196459 -1.832723 1.585463 1.360910 -1.299813 -2.035169 -1.707536 -3.596121 -1.149422 1.548148 2.644705 4.650575 -2.877954 4.418833 1.312271 1.865625 0.287768 2.274435 0.321914 2.469593 0.714675 -1.250169 -0.817404 -4.081078 -0.352650 -0.554961 1.758212 -1.756508 -2.314230 2.196764 -4.684271 -4.966081 1.648605 0.096161 -2.309060 -1.275715 0.507603 1.152844 2.014290 -1.173258 -3.213722 -1.779499 1.796862 -1.440725 -1.029255 -0.015638 -0.265460 -0.658554 -1.003822 -3.846075 1.481012 1.816102 -1.600066 -1.322304 3.758052 -1.053465 3.066130 0.335828 1.557739 -0.268703 2.618139 1.905079 0.310105 0.040509 -1.560572 -2.231258 -0.354653 0.775520 1.658975 -2.927272 -0.573437 0.240312 1.274626 0.111670 1.025223 -0.767571 4.366640 1.038224 -2.422937 -2.692786 -3.252122 -2.179686 -3.044758 0.029261 -1.330109 -2.185904 1.245955 2.373120 1.288668 0.305920 3.743677 -1.000048 1.860490 1.038402 -1.352263 1.087732 -0.911497 2.084504 -2.672005 -2.305612 1.736216 1.793642 2.203008 -0.404472 0.404261 0.592046 -2.377586 -2.031126 0.877433 1.253319 0.932478 4.071509 3.202146 5.231866 -3.025315 -0.298879 0.536389 -1.202161 -0.668464 0.213971 -3.487060 1.429343 0.820680 -0.513063 4.810622 0.180375 -2.170206 2.530501 -0.105589 0.764326 -3.147810 2.183289 -2.182904 -0.138916 -1.599004 -1.007677 -2.044173 -1.521495 -3.252128 -2.062102 5.046318 -3.712841 -4.101859 1.800815 0.294884 2.619031 -6.005327 4.356286 -1.996911 3.622573 -0.429610 -1.395049 0.163620 0.229512 -1.398422 1.252894 1.245232 -1.959953 1.804334 2.838511 1.324715 1.087887 0.416238 2.302008 -0.365289 1.707107 -1.700559 1.789325 -0.471499 -1.789535 -0.585920 -0.805637 0.598223 1.496534 0.104542 1.236343 2.330992 0.632825 1.506566 3.160101 1.761553 -1.663801 0.607996 -0.927300 3.677553 -2.326980 -1.997903 -0.851263 1.836321 0.725889 1.653999 -5.306158 -4.320266 -2.862165 -4.755656 -0.485431 -0.576622 1.040366 0.799460 -0.565996 -4.760990 -2.801564 2.274744 -0.169387 4.114137 2.476878 0.934000 3.764156 2.296845 -0.276723 -0.877657 0.753362 1.479398 -0.699688 -0.641435 -2.675722 1.746918 -3.333353 2.560876 3.977892 -1.698372 2.222235 -0.593782 1.548434 -4.171455 5.106623 1.811606 -4.549609 1.346893 2.732907 2.944754 -2.130324 -2.730408 -PE-benchmarks/finite-automata-algorithm.cpp__main = -0.079975 -0.401757 1.118438 0.811024 -0.042258 -0.001243 0.554103 -0.374399 0.594464 0.110681 -0.159315 0.174849 -0.762249 0.276169 -0.282579 0.593949 -0.814243 -0.615936 -0.059308 -0.393008 -0.077896 -0.341257 0.711264 -0.097614 0.682329 0.154326 -0.378318 -0.602778 -0.710689 -0.307007 0.602807 -0.376886 0.519124 0.218036 -0.291332 -1.345961 0.572533 0.386117 -0.399109 -0.570113 0.622029 -0.470744 0.154162 -0.458880 -0.040485 0.100957 0.179427 0.365137 0.613791 0.346214 0.201688 0.048629 0.191287 1.072758 -0.735377 0.308676 0.207871 -0.117341 -0.292932 0.012337 0.143039 0.005931 0.369644 0.340660 -0.165047 -0.699013 -0.286684 -0.602828 -0.770469 0.430874 -0.123129 0.293630 -0.627643 0.080825 -0.328281 -0.147360 -0.512633 0.598118 0.938802 -0.598518 0.598524 -0.003985 0.096434 -0.179191 -0.070297 0.275405 0.041890 0.148777 -0.078984 -0.337990 -0.513347 0.009185 0.064092 0.037298 -0.034390 -0.818072 0.474771 -0.142537 -0.660669 0.059638 0.341121 -0.178962 -0.277817 0.150668 0.049667 0.565944 -0.438641 -0.628964 -0.101773 -0.089981 0.200058 -0.130268 -0.016777 -0.278175 -0.415511 -0.567222 -0.807916 0.037940 -0.225869 -0.431242 -0.190765 0.428448 -0.370125 0.045434 0.085780 0.399284 -0.352824 0.766044 0.027567 0.426023 0.428213 0.035105 -0.529156 -0.092973 0.591787 1.065999 -0.310003 0.056022 -0.560868 0.027907 -0.469190 -0.299182 0.254288 0.361146 0.586375 -0.644339 -0.480953 -0.120022 0.033766 -0.898857 0.224985 -0.499375 0.210376 0.301735 0.500985 0.236209 0.655257 1.229991 -0.565853 0.343092 -0.029293 -0.278382 0.640862 0.293988 0.544642 -0.320727 -0.396013 0.165589 0.153095 0.167306 -0.037027 0.147901 0.121844 -0.840245 -0.097676 0.105024 0.279986 -0.326758 0.355721 0.357088 0.304007 -0.522761 0.118175 0.612310 -0.129595 -0.044017 0.223399 -0.780687 0.463748 0.096084 -0.205035 0.312915 0.082552 -0.520440 0.357282 -0.308730 0.147402 -0.410263 0.039032 -0.361344 -0.184510 -0.538802 0.101489 -0.150691 -0.444374 -0.107888 -0.029669 0.752406 -0.183075 -0.334632 0.386155 -0.032187 0.207250 -0.956187 1.161938 -0.518467 0.373506 -0.264158 -0.087232 0.000870 0.229278 -0.467802 -0.138502 0.239114 -0.037050 0.368355 0.915008 0.475198 -0.015683 -0.012993 0.748708 -0.001316 0.638205 -0.074855 0.522699 -0.195261 -0.384657 0.266568 -0.144236 -0.112671 -0.211941 0.169179 0.981671 0.437951 0.329122 0.768684 0.258239 0.928056 -0.375971 0.426033 -0.102605 0.739595 -0.143189 -0.146121 0.183971 0.370362 -0.259350 0.535033 -0.802259 -1.226728 -0.201725 -0.807082 0.139229 -0.203887 0.215442 -0.246749 0.092398 -0.839785 -0.385993 -0.116998 -0.282066 0.618925 0.377667 0.072171 0.441381 0.603112 -0.555336 -0.185010 0.151946 0.466895 0.144397 -0.133736 -0.558245 0.459203 -0.685483 -0.014218 0.790074 -0.404176 0.007978 -0.231613 0.791060 -0.488878 1.053488 0.225171 -0.291064 0.926056 0.456553 0.766753 0.347405 -0.329893 -PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -1.740804 -3.808508 5.604456 3.992963 0.326395 1.706622 1.711344 -0.762418 0.948436 1.862335 -1.721237 3.501975 -3.486428 -0.611907 0.022104 -0.090864 -3.188832 -3.325274 -0.106446 -0.736079 -1.273256 -2.218674 -1.539090 4.549351 2.449734 0.793411 -2.211037 -0.128095 -5.887784 -2.804083 -1.601366 -0.140463 2.346259 0.383409 2.578010 -4.757169 1.950258 4.133041 0.303130 -4.185083 1.402672 -2.154357 0.115037 -0.094821 -0.600901 1.568605 2.848810 1.120663 1.147789 0.618329 -0.072017 -1.497160 1.058375 4.288315 0.977255 3.108277 3.803197 -1.535356 0.759812 -0.867304 0.376450 -3.062568 1.764858 0.776972 -2.232515 -1.292083 0.918328 -0.703357 -1.551404 1.865548 1.963949 -1.780280 -1.917847 -2.363320 -3.491368 -1.056002 2.951623 2.225459 4.879349 -2.164248 4.630228 1.783206 2.674004 0.259005 2.865361 -0.202272 3.465423 0.588054 -1.962519 -0.568664 -4.820286 -1.389803 -1.117305 2.983861 -1.596558 0.086371 1.555285 -5.482713 -5.060085 1.645149 -0.442684 -2.078738 -2.129369 1.340121 1.814726 1.642996 -0.110592 -3.231364 -1.836972 1.912660 -2.507047 -0.959356 -0.177724 -0.333236 -0.927140 -0.232139 -3.864698 1.236995 2.254397 -1.690178 -1.545198 3.902970 -1.336737 3.563947 0.378337 1.247946 0.232834 2.047651 2.250221 0.109914 0.284301 -2.502519 -2.995775 -0.489061 0.157778 0.943879 -3.029426 -0.743763 0.952260 1.262864 0.035894 1.485856 -1.497885 5.016928 1.293612 -2.519338 -2.960823 -3.567611 -2.421836 -2.461412 0.203038 -1.207804 -2.427347 0.059803 2.342745 1.310627 -0.227188 3.787803 -0.895471 1.934429 1.138813 -1.068299 0.634712 -1.346217 1.996821 -2.877648 -2.080126 2.064258 2.160521 1.769056 -0.070740 -0.227535 0.692235 -2.339038 -2.746686 1.472561 0.674813 1.825782 4.285093 3.201699 5.912317 -3.068575 -0.146123 0.273120 -0.626765 -0.946064 0.341402 -3.238529 1.637250 0.635425 0.368424 5.285828 0.178840 -2.165670 2.214308 0.463187 0.835106 -3.425205 2.425531 -2.110774 0.862997 -1.375939 -1.207593 -2.384170 -1.456282 -3.038635 -1.662109 5.012342 -2.280604 -5.319763 1.916679 -0.094786 3.293613 -6.330570 3.021471 -1.871650 3.699205 -0.674212 -1.304641 0.159298 -0.209962 -0.922763 1.827298 1.230772 -1.890252 1.987620 2.022591 1.066141 1.398014 0.639678 1.719962 -0.073937 1.145347 -1.625630 1.365587 -0.221496 -1.058352 -1.098892 -0.856471 1.014706 2.245075 -0.624311 0.000777 2.707442 0.035617 1.236042 3.322900 0.907311 -1.598220 0.296041 -0.720638 3.654405 -2.602939 -2.309145 -1.166410 1.376970 0.745904 1.295991 -5.222779 -3.618524 -2.001103 -5.495779 -1.330567 -0.048864 1.149188 1.577354 -0.627954 -4.360323 -2.428160 2.775736 0.587065 5.263452 2.033966 0.773364 3.733708 2.126777 0.042502 -1.287064 0.375240 0.985075 -1.441109 -0.739426 -2.629801 1.681133 -3.118013 3.129822 3.719733 -2.003016 2.299506 -0.807753 1.591053 -4.488822 4.892456 2.062879 -4.811906 0.688814 2.155481 3.280200 -2.874568 -2.888879 -PE-benchmarks/naive-algorithm.cpp__main = 0.531872 -0.348855 1.589249 1.064448 -0.553870 -0.149371 0.168589 -0.511833 0.557617 -0.513596 -0.525515 0.334440 -0.601679 0.459386 -0.634476 0.716569 -1.605227 -0.555596 -0.134382 -0.369173 -0.147856 -0.190928 0.793137 0.015070 0.864140 1.115246 -0.454873 -0.298640 -0.293587 -0.349613 0.699192 -0.474183 0.446120 0.768068 0.014940 -1.246881 0.804543 0.305595 -0.473409 -0.700820 0.668922 -0.412422 -0.088063 -0.988491 -0.244599 0.176059 0.199177 1.109530 0.591514 0.418123 -0.425391 0.109510 0.437423 1.089859 -0.492737 0.228674 0.490834 -0.109983 -0.124294 -0.227986 0.282334 0.048514 0.088521 0.336641 0.061354 -0.978394 -0.470719 -0.895797 -0.420761 0.623067 -0.121645 0.489000 -0.876459 -0.088276 -0.617638 0.094062 -1.215871 1.148589 1.084177 -0.928484 0.391131 0.002342 0.141669 -0.119060 -0.245782 0.393732 0.076398 0.399023 0.089037 -0.209979 -0.477486 -0.312423 0.352406 -0.788828 -0.176968 -1.689006 0.525876 -1.200202 -0.646863 0.039512 0.624796 -0.405920 0.566993 0.093212 0.091724 0.500344 -0.400524 -0.346351 0.502823 -0.287921 0.307701 -0.018439 0.060490 0.340486 -0.235922 -0.259495 -1.157780 0.339408 -0.248045 -0.218035 0.627366 0.370325 0.076752 -0.113579 -0.056174 0.272395 -0.378834 1.186275 0.067485 0.427310 0.108000 0.578696 0.485647 0.618122 0.839248 0.583834 -0.550423 0.014597 -0.462182 0.167301 -0.592128 -0.660977 -0.091397 0.170184 0.211314 -0.789732 -0.819207 -0.363328 -0.763076 -1.094653 0.135738 -0.524322 -0.309545 0.701436 0.570991 0.532882 0.845316 0.866672 -0.710179 -0.023937 -0.054676 -0.020037 0.647383 0.461123 0.550893 -0.318211 -0.288600 0.437369 -0.205447 0.301213 0.011642 0.059812 0.324199 -0.974578 0.139631 0.642268 0.630974 -0.269927 0.442778 0.485090 -0.553692 -0.008280 -0.071805 0.792374 -0.188948 -0.278333 0.463011 -0.797578 0.698460 0.014964 0.367852 0.256541 0.124169 -0.160959 0.409213 -0.246958 0.111872 -0.326651 -0.291490 -0.252641 -0.238822 -0.611368 0.773756 -0.156499 -0.289850 -0.222163 -0.418275 0.890332 -1.006644 -0.039438 0.604843 -0.109993 0.629456 -0.604242 0.736730 -0.582175 0.814734 0.325459 -0.088488 0.234929 -0.842813 -0.796101 -0.231009 0.287473 0.250130 -0.037253 0.511738 0.632213 -0.198699 0.013314 0.848066 -0.313636 1.067183 -0.030768 0.368116 -0.276562 -0.419714 0.292040 -0.036176 -0.533792 -0.438657 0.441315 1.332495 0.044993 1.029987 1.137316 -0.007905 1.165303 -0.606316 0.322516 -0.278980 0.562052 -0.388805 -0.359905 0.304531 0.593846 -0.366963 0.506531 -0.962030 -1.613575 -1.384075 -0.564636 -0.112006 -0.905866 0.394307 -0.531058 -0.071520 -0.543773 -0.604317 0.309871 -0.252045 0.330137 0.650323 -0.117887 0.521596 0.653264 -0.653849 -0.144150 0.332951 0.803134 0.418947 0.227338 -1.133159 0.741980 -0.685058 -0.309959 1.456338 -0.750370 0.103728 -0.349368 1.048846 -0.526555 1.064818 0.244072 -0.808448 0.701151 0.678838 0.356843 0.889490 -0.519089 -PE-benchmarks/union-find.cpp__createGraph(int, int) = 0.102867 -1.256250 3.868001 2.262741 -0.913933 0.462583 0.849256 -1.514040 1.025723 -0.220653 -0.519384 1.153141 -1.191655 0.299023 -1.164573 0.736692 -3.059448 -1.353305 -0.654530 -1.668809 -1.123091 -0.574820 0.477752 0.797903 1.706849 0.971864 -1.124093 -0.699431 -1.866019 -1.135401 0.839088 -0.398356 0.945271 0.174603 0.994286 -4.376179 1.865742 1.424648 -0.799289 -1.848533 1.115586 -0.622601 -0.228545 -0.588278 -0.835411 0.242792 0.487396 1.358697 1.089789 0.730731 0.068739 0.297137 0.485931 4.192645 -0.370458 1.206775 1.381110 -0.751941 0.097963 0.284271 0.395841 -0.454410 0.327797 0.161698 0.229815 -1.530127 -0.119069 -1.463574 -0.776425 1.419295 0.472851 -1.050169 -0.994847 -1.022268 -2.421883 -0.532535 -1.567416 2.111049 2.521881 -2.001164 1.537639 0.136518 0.727933 0.160157 0.893486 0.413154 1.640349 0.677224 -0.046984 0.143938 -1.246495 -0.364926 0.364410 -0.340156 -1.050373 -3.240819 1.586900 -2.993061 -2.095719 1.153392 1.153140 -1.165040 -0.448221 -0.449662 0.444493 0.678739 -1.406065 -1.367672 -0.712198 0.667123 -0.207434 0.031115 0.536494 0.040169 -0.355050 -0.433288 -2.163947 1.214880 0.469670 -0.084891 -0.534907 2.013881 -0.270201 0.274035 -0.090492 0.925930 -1.057812 2.058255 -0.013314 0.800000 -0.720858 0.699593 -1.138611 0.156810 0.986563 1.012456 -0.786245 -0.608143 -0.595618 0.910199 -1.153169 0.434271 -0.581617 1.726221 1.000855 -1.210480 -1.985457 -1.069993 -1.087867 -2.452742 -0.127173 -0.910566 -1.680664 1.260262 1.441892 1.932864 0.892452 1.290467 -0.609190 0.598125 -0.218449 -0.565946 0.986011 -0.680821 1.172325 -1.186829 -0.898037 0.537063 -0.036628 1.578699 0.278443 -0.091118 0.305730 -1.710760 -0.783631 0.570927 1.524936 -0.129819 1.393429 2.126760 1.451984 -1.691160 -0.473732 1.143732 -1.040798 -0.562389 0.408266 -1.554813 0.424624 0.632429 -0.246793 2.055853 0.077355 -0.406183 0.975095 -0.372284 0.554941 -1.038028 -0.121014 -0.746280 -0.278567 -0.961446 0.373379 -1.370190 -0.291029 -1.407057 -2.222557 2.565841 -3.210246 -1.625666 2.254486 -0.566004 1.433348 -2.469878 2.292611 -1.060877 1.930583 0.001584 -0.173191 -0.224788 -0.074617 -1.673239 1.401720 0.383847 -0.971621 0.328996 2.215168 1.008032 0.545446 -0.506774 2.035753 -1.189240 1.706588 -0.910139 1.771924 -0.746414 -1.343424 -0.142068 -0.220954 -0.714083 -0.449863 1.193120 1.309753 0.168806 1.305659 1.016076 1.408612 1.707652 -1.184665 0.722643 -0.361758 1.157880 -1.190974 -1.097962 0.771076 1.410824 -0.074096 0.252542 -2.619357 -2.534018 -3.541978 -1.992356 -0.085909 -0.887419 0.399100 -0.466628 -0.560008 -1.788149 -1.557590 1.643015 -0.402312 0.575651 1.747259 0.268694 1.877476 1.855379 -0.809323 0.154234 0.202340 1.034577 0.338155 -0.283709 -2.237082 1.646630 -2.106878 0.455978 2.746446 -0.861398 1.310594 0.412426 1.811079 -2.032155 2.277721 0.630271 -1.967425 0.987974 2.423959 1.496712 0.559548 -1.294942 -PE-benchmarks/union-find.cpp__find(int*, int) = -0.885945 -1.358771 2.377935 1.665409 -0.006388 0.566286 0.792961 -0.588923 0.442199 0.857622 -0.508942 1.168325 -1.394286 -0.061937 -0.322555 0.430383 -1.371210 -1.237217 -0.177281 -0.714919 -0.641354 -0.742627 -0.251626 1.252114 1.151954 0.161143 -0.914366 -0.269084 -2.000777 -1.867862 -0.463974 -0.170884 0.964079 -0.097647 0.584217 -2.725580 1.059945 1.676435 -0.212996 -1.418602 0.788357 -0.884797 0.024348 -0.079572 -0.485954 0.579894 0.911535 0.013107 0.708644 0.452266 0.441729 -0.288032 0.646492 2.215800 -0.032778 1.245070 1.246488 -0.586636 -0.012752 -0.107774 0.142420 -0.952212 0.724778 0.222217 -0.583307 -0.810254 0.100203 -0.435272 -0.715695 0.792018 0.297420 -0.853584 -0.787531 -0.832608 -1.520318 -0.638189 0.217990 0.810434 1.924404 -1.091944 1.790057 0.497049 0.655987 0.095096 0.981230 0.024264 1.283233 0.262807 -0.565587 -0.143612 -0.824101 -0.365911 -0.216023 1.547715 -0.697899 -0.533632 0.946327 -1.980473 -1.989123 0.728206 0.085643 -0.836870 -1.158236 0.160857 0.420572 0.635880 -0.471954 -1.406611 -0.832332 0.610391 -0.511812 -0.380912 -0.079187 -0.309974 -0.391668 0.008679 -1.697934 0.509754 0.600451 -0.681378 -0.918424 1.517552 -0.135272 1.063577 0.164031 0.756237 -0.252219 1.182791 0.411795 0.506707 -0.224036 -0.262685 -1.787441 -0.564301 0.470589 0.295126 -1.113227 -0.409568 -0.037307 0.449389 -0.358302 0.625932 -0.544846 2.071035 1.226016 -0.864707 -1.183227 -1.094290 -0.767799 -1.397093 0.121534 -0.686234 -0.861072 0.268679 1.006584 0.404032 0.241467 1.775513 -0.420631 0.764191 0.214181 -0.700662 0.621380 -0.717581 0.946809 -1.116331 -0.890672 0.811151 0.827068 0.959026 -0.002058 0.074084 0.311273 -1.034756 -1.008856 0.685463 0.347332 0.253416 1.514983 1.331828 2.723144 -1.366156 0.093520 0.353846 -0.473962 -0.197638 0.208476 -1.360634 0.539427 0.399691 -0.203723 1.919113 0.128891 -0.863005 0.842739 -0.163161 0.362137 -1.399893 0.871869 -0.905680 0.334680 -0.625757 -0.635498 -0.854722 -0.618130 -0.962344 -0.760986 1.950052 -1.344802 -1.761446 1.021674 0.056056 1.020632 -2.615218 1.755436 -0.854117 1.385251 -0.629053 -0.472913 0.061405 0.457211 -0.491867 0.740181 0.489985 -0.841515 0.762472 1.373493 0.534323 0.543483 -0.003238 1.120569 -0.153126 0.727915 -0.604793 0.931072 -0.127792 -0.600519 -0.426336 -0.354561 0.039972 0.544937 0.101065 0.355240 0.959497 -0.060160 0.447126 1.459660 0.874311 -0.649667 0.456411 -0.294849 1.497665 -0.968673 -0.914538 -0.120652 0.795755 0.159376 0.529112 -2.109652 -1.571303 -1.235655 -2.011115 -0.328529 0.309000 0.560762 0.307201 -0.235946 -1.741827 -1.033523 1.601816 -0.065367 1.648181 0.859297 0.424502 1.424692 0.999131 0.036888 -0.438578 -0.150265 0.483431 -0.218089 -0.347175 -0.953781 0.824010 -1.435604 0.994904 1.390620 -0.771006 0.866717 0.216223 0.883868 -1.703708 1.946290 0.599598 -1.508321 0.849250 1.398608 1.260007 -0.926993 -0.987619 -PE-benchmarks/union-find.cpp__Union(int*, int, int) = -0.833125 -1.452127 2.588014 1.774861 0.015539 0.482601 1.211092 -0.554343 0.616675 0.658893 -0.470383 1.192165 -1.683179 0.053882 -0.580501 0.489225 -1.547580 -1.445325 -0.166519 -0.730526 -0.537001 -0.846641 0.149633 1.151759 1.392191 0.026369 -0.976005 -0.785672 -2.356390 -1.426409 -0.050184 -0.233756 1.116006 -0.303080 0.294532 -3.400697 1.022096 1.694319 -0.338719 -1.692163 1.123932 -1.109936 0.148106 -0.325692 -0.511435 0.388564 0.951169 0.366094 0.851181 0.521391 0.267821 -0.131654 0.535722 2.866344 -0.374154 1.244167 1.293320 -0.474807 -0.217752 -0.079076 0.155207 -0.918100 0.789136 0.247681 -0.628096 -0.941275 -0.061335 -0.738660 -1.020960 0.846698 0.252263 -0.565273 -0.989409 -0.601507 -1.695972 -0.592867 0.171944 1.155388 2.089854 -1.423791 1.890809 0.293226 0.614799 0.041510 0.769551 0.169990 0.930227 0.255881 -0.435106 -0.525058 -1.384024 -0.192177 -0.300293 1.091279 -0.614444 -1.242878 1.126078 -1.745479 -2.090203 0.591903 0.143555 -0.948622 -1.064863 0.191815 0.354325 1.018132 -0.694172 -1.553538 -0.985635 0.620188 -0.302685 -0.376937 0.120435 -0.370922 -0.540450 -0.653018 -1.852286 0.538063 0.496729 -0.794442 -0.964552 1.595591 -0.541794 1.104339 0.244232 0.864459 -0.372181 1.455038 0.464970 0.445161 0.191894 -0.343920 -1.843525 -0.604018 0.635469 1.245147 -1.185991 -0.159687 -0.304632 0.437105 -0.450959 0.275242 -0.259947 1.935121 1.153042 -1.172380 -1.257276 -1.082551 -0.466849 -1.551137 0.132825 -0.763616 -0.549212 0.572558 1.100306 0.579130 0.403776 2.291705 -0.662720 0.878278 0.312889 -0.871343 0.742572 -0.460493 1.049296 -1.156855 -1.071625 0.692822 0.736020 1.019342 -0.187830 0.341933 0.302764 -1.319002 -1.009174 0.392763 0.586314 0.060403 1.539463 1.410458 2.184317 -1.744168 0.033508 0.530372 -0.648370 -0.194126 0.201936 -1.619587 0.702007 0.415334 -0.401473 1.891314 0.152782 -1.108579 1.093799 -0.297440 0.369891 -1.363707 0.705508 -1.048141 -0.067660 -0.845743 -0.626809 -0.753337 -0.757208 -1.056901 -0.833938 2.111061 -1.263669 -1.807418 0.957353 0.013449 0.982785 -3.010373 2.324639 -0.945715 1.349086 -0.542236 -0.375184 0.035249 0.679640 -0.680029 0.536261 0.514315 -0.876866 0.926778 1.828395 0.666379 0.462669 -0.010519 1.356888 -0.106883 0.897004 -0.633150 1.003010 -0.312451 -0.918288 -0.189768 -0.356022 0.126949 0.451861 0.257018 1.015063 1.036688 0.211929 0.911957 1.617132 1.253023 -0.709833 0.535692 -0.413412 1.788551 -0.883772 -0.872766 -0.107716 0.923082 0.093735 0.758275 -2.256854 -2.186295 -1.239371 -2.405849 0.058767 -0.131221 0.507960 0.061422 -0.202057 -2.213290 -1.120392 0.884447 -0.210947 1.764030 1.043606 0.371806 1.526551 1.155735 -0.403587 -0.293174 0.228489 0.757812 -0.171257 -0.504690 -1.062603 0.799867 -1.705154 0.908436 1.674346 -0.774688 0.863195 0.053589 1.089311 -1.757202 2.311757 0.648482 -1.592353 1.096372 1.483384 1.485678 -0.607876 -1.034025 -PE-benchmarks/union-find.cpp__isCycle(Graph*) = -1.421716 -3.566047 7.826868 4.953334 -1.138336 1.552781 1.322422 -2.387533 1.087404 0.977940 -1.590945 3.838125 -2.715118 0.015880 -1.565447 1.120792 -5.401336 -3.164974 -0.910592 -2.563143 -2.219072 -1.454690 -0.743179 3.683683 3.285435 1.679910 -2.872572 -0.358826 -4.848264 -4.897317 -0.788388 -0.473164 2.541673 -0.354887 2.604294 -8.832110 3.682618 4.433847 -0.794781 -4.404325 2.153893 -1.585057 -0.634260 -0.278328 -2.566111 1.413501 2.088857 0.981168 1.665445 1.490313 0.406699 0.053824 1.895100 7.273441 0.794295 3.292323 3.816633 -2.004464 0.291287 -0.466742 0.752341 -2.259085 1.410292 0.280212 -0.512385 -2.744474 0.312733 -1.515239 -1.591083 2.459752 1.320414 -2.994808 -1.694441 -2.638536 -5.099820 -1.436442 1.406438 3.140685 5.460601 -3.187701 4.386397 0.955864 1.829154 0.476318 2.712832 0.331574 3.986247 1.353463 -0.859816 0.182210 -2.124730 -1.194694 0.157960 2.656901 -2.572421 -3.744568 2.988496 -7.256525 -5.181236 2.616409 1.290977 -2.857910 -2.328236 -0.728110 1.523664 1.610430 -1.789724 -3.183228 -1.946028 1.954520 -1.469930 -0.762959 0.170638 0.006124 -0.619584 0.530843 -4.746184 2.446648 2.121266 -0.739557 -1.541122 4.380924 -0.068532 2.195309 -0.124798 2.118409 -1.281882 3.557026 0.830705 1.319869 -1.926240 0.179432 -2.650800 -0.749248 1.147772 -0.006303 -2.961135 -2.236100 -0.157231 1.944534 -1.113415 1.919478 -2.093106 5.174506 3.175174 -1.928096 -4.056870 -3.370393 -3.226713 -4.639295 -0.425390 -1.812539 -4.037415 2.131427 2.968742 2.024475 0.881241 3.275820 -0.690207 1.771931 0.324987 -1.636438 1.653506 -2.597477 2.406479 -2.977825 -2.254140 2.366176 1.294756 3.622708 0.330184 -0.162089 0.929696 -2.758903 -2.790743 2.293647 2.285916 1.348288 3.827402 4.353949 6.716462 -2.903780 -0.858335 1.185697 -1.882750 -1.080901 0.591355 -3.431077 0.684638 1.324618 -0.186849 6.004301 0.216966 -1.623951 2.398747 -0.035192 1.007979 -3.393927 1.878276 -2.053526 1.182773 -1.520464 -1.352989 -3.033654 -0.731805 -3.721441 -4.201298 5.873655 -6.315848 -5.259356 3.900490 -0.722667 3.658705 -6.882316 3.825802 -2.276329 4.850509 -0.575748 -0.992321 0.051313 -0.678174 -2.610968 3.245605 1.197686 -2.291478 1.213464 3.785671 1.689679 1.286589 -0.698511 3.330003 -1.559180 2.953241 -2.028114 3.029011 -0.942445 -1.976144 -1.238857 -0.630797 -0.927808 0.590633 1.264071 0.465318 1.231473 1.170525 1.223166 3.894911 2.554958 -2.329383 1.257595 -0.874620 3.255530 -2.910657 -2.884553 0.336420 3.179796 0.606314 0.799964 -6.044387 -4.473412 -6.832998 -5.646239 -1.020653 -0.137856 1.476737 0.153371 -1.245314 -4.119898 -3.305489 5.634068 -0.033512 4.332923 3.535620 0.946653 4.317732 3.082267 -0.334708 -0.564102 -0.437186 1.550868 -0.097965 -0.577210 -3.950210 2.929248 -3.955084 2.324873 5.110017 -2.189824 3.124955 0.721756 2.515100 -4.822407 5.219580 1.684891 -4.967703 1.508284 3.878630 2.739141 -1.683434 -3.089251 -PE-benchmarks/union-find.cpp__main = 0.896371 -1.471660 7.597085 5.635355 -2.609050 0.322167 -0.363126 -3.584986 2.481919 0.209123 -0.918886 1.923138 -1.634881 1.468336 0.683846 3.705325 -6.781541 -1.419154 -1.476534 -3.441773 -2.152319 -0.608436 1.369373 0.583636 3.279258 3.719908 -2.616930 -0.244383 0.190458 -4.699651 1.735200 -1.229352 2.625368 2.043504 1.544518 -10.619334 4.788100 2.196773 -1.835778 -3.420756 2.092167 -1.157900 -0.175711 -2.066009 -2.493048 1.397325 0.285441 2.184181 2.700929 2.027530 -0.661968 1.348219 2.843517 6.481201 -1.026412 1.716163 2.057855 -2.105297 -1.394808 -0.448713 1.013543 0.144594 1.379982 0.466476 0.666041 -4.943052 -0.807763 -2.460138 -2.578177 2.800567 0.626889 -1.940788 -2.809965 -2.335901 -2.430262 -1.075325 -3.579702 4.753134 4.352933 -3.847532 1.875668 0.128270 -0.203283 0.663108 1.037694 0.710567 3.361260 1.529454 0.185248 0.381159 0.359705 -3.444823 2.426321 -0.874812 -1.813355 -6.332851 1.916291 -4.409156 -3.327291 1.887759 3.230847 -1.805089 -2.516712 -2.738903 1.514875 1.668795 -1.349049 -1.938425 -0.049275 0.408381 0.123406 -0.903634 -1.295552 0.284281 -0.923153 0.538003 -5.236921 2.305649 0.267256 0.362529 0.099252 2.645057 0.436498 -1.013106 -0.637522 2.102734 -2.294141 4.768158 -0.874136 2.835290 -0.196226 2.305080 0.375539 1.339880 2.463622 0.267630 -1.045649 -2.428338 -2.375933 1.349371 -3.149076 0.730441 -0.376898 3.452718 4.305987 -0.802047 -3.602062 -1.756072 -3.259028 -5.366984 0.743781 -2.399598 -1.701392 3.665655 2.646790 1.860767 2.934050 1.660866 -3.017427 0.942704 -1.101186 -0.128676 3.386037 1.132105 2.386448 -2.037655 -1.070537 1.896416 0.077772 2.303645 0.386346 -0.197377 1.436684 -2.777909 -1.232333 2.908083 2.230891 0.101303 1.851417 3.257272 6.499557 -0.978011 -0.330315 2.617608 -1.759191 -0.772881 1.318574 -2.816775 0.904898 0.992339 0.575693 4.109867 -0.199063 -1.168976 0.758824 -0.159191 0.338636 -1.456507 0.281405 -1.473084 0.593157 -1.514810 0.049814 -2.451712 -0.802259 -2.322936 -2.333177 4.815375 -5.425304 -2.699237 4.946527 -2.959475 2.658028 -4.564789 5.113422 -2.364143 2.520519 -1.603499 -1.435619 0.088990 -2.566117 -4.049665 1.927868 1.293133 -0.065920 -0.880890 4.227426 2.231373 -0.095123 -1.340005 3.447846 -1.414022 4.815068 -1.232096 4.123682 -1.664188 0.387742 -0.933849 -0.269950 -2.064352 -1.754799 1.393903 2.451076 0.068220 2.810567 1.871001 1.807763 3.826461 -2.548308 3.187072 -0.712449 1.390302 -1.917326 -1.795306 2.120278 3.088834 -0.701582 1.621219 -4.738979 -4.177584 -6.570511 -2.433959 -1.390725 0.933704 1.762191 -1.565307 -1.308520 -2.255946 -2.828165 4.597802 -0.524216 1.520546 2.646994 0.379284 2.923948 3.512642 -1.032822 -0.846173 -0.802318 0.649731 1.492705 -0.139468 -4.307883 4.485582 -2.255819 -0.076945 5.624182 -2.289810 1.861888 -0.771211 4.044678 -2.785620 4.144881 0.472257 -2.732886 2.319688 4.043201 1.737723 0.517760 -2.348372 -PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -7.557730 -19.657462 25.060081 18.885923 0.250634 9.876680 9.166545 -1.896190 -2.875477 12.779357 -6.524566 18.635344 -13.080732 -5.710141 1.241849 0.054592 -12.200191 -12.417869 1.020133 -3.058943 -5.463823 -7.377749 -13.212400 25.935548 11.162215 -0.481658 -7.774026 -2.334663 -24.530639 -15.496945 -15.145792 1.588354 10.204211 0.519480 16.002459 -18.832124 8.214699 20.936068 3.057251 -17.237756 4.036201 -5.503258 0.296827 3.756962 -8.812859 8.870195 15.071603 2.144200 2.314564 5.571736 3.200756 -7.635061 13.498361 19.253263 12.651288 16.163068 16.298002 -8.131904 9.783044 -5.432512 1.612481 -16.735475 6.116656 -2.176481 -4.338576 -3.554175 -0.500676 0.804034 -1.187153 4.370208 11.139863 -11.479852 -9.529342 -10.623786 -16.449753 -7.528656 0.891814 7.734951 19.269978 -10.379471 22.829206 12.174068 11.482466 0.975095 15.837417 -0.929813 14.771727 3.134047 -7.566992 6.013708 -13.839634 -6.838029 -3.150114 12.041502 -12.320772 -6.119320 7.061719 -23.168593 -23.993216 13.522136 -3.054378 -12.521071 -3.606151 1.953857 5.317816 5.106677 -4.756853 -14.373720 -9.242934 9.842926 -9.785923 -5.205583 -0.435717 0.963405 1.326305 3.453660 -15.167965 8.141357 14.160497 -6.003298 -5.109668 18.554196 2.445427 19.248262 1.021640 3.542253 1.401227 9.628547 13.102608 1.098910 -7.939684 -10.398228 -16.872857 0.626909 0.966480 -8.737464 -11.455780 -6.325860 7.693157 9.575844 6.494842 16.878698 -2.250642 26.643213 6.022970 -6.018498 -13.122323 -18.930447 -14.805920 -5.854531 1.358921 -2.502995 -14.184057 1.946506 9.488721 1.466026 -4.139328 5.437497 3.475353 6.804096 2.736318 -4.199867 -0.342010 -10.020287 7.430178 -11.827838 -7.662370 11.667409 13.070076 14.703177 1.126588 -0.633246 5.016186 -3.116338 -10.605207 4.113762 3.197837 6.611451 22.302386 15.805978 31.145454 -4.553088 -4.614308 -2.676699 -4.015227 -3.429838 0.944532 -12.960754 5.537599 2.348442 -5.152103 23.982926 -0.695145 -4.697480 14.391055 0.452968 2.791920 -16.441752 12.769763 -8.857285 4.961187 -4.851333 -4.864761 -12.609041 -5.059824 -15.438380 -9.522217 23.295163 -17.265428 -17.164304 4.788306 -1.305895 9.964173 -22.560076 19.202798 -6.404220 13.493250 -2.280630 -10.941474 1.606483 3.004842 -1.325195 7.918367 5.312511 -11.773229 5.664090 6.510714 2.556489 3.424847 3.558608 7.354525 -2.087611 3.856994 -8.279192 6.239019 -0.778840 -1.167378 -7.988669 -2.714903 3.480813 11.948580 -2.625506 -3.688829 6.571685 -3.005470 -2.791976 15.091837 0.154818 -6.576611 -2.032650 -3.733128 15.507444 -15.343473 -11.211250 -7.397736 5.508851 6.290394 1.900910 -24.220920 -7.726232 -15.831484 -14.435066 -8.480059 5.398260 6.454230 9.250248 -5.157963 -17.563760 -13.881503 21.977398 1.529689 6.203428 11.803814 3.323266 19.762011 6.601155 9.629958 -4.434693 -2.612367 3.236647 -3.794755 -1.046615 -8.164169 5.984994 -17.174872 17.046752 14.125660 -7.193340 13.124330 0.529884 8.300945 -21.937996 18.715906 7.463536 -23.480659 -0.959519 17.329269 7.225648 -20.801899 -12.297470 -PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -1.030371 -1.859547 4.093246 2.637715 -0.917671 0.807343 0.613456 -1.142847 0.421694 -0.705108 -0.783739 1.760985 -2.017272 -0.100978 -1.018805 -0.204960 -3.196797 -1.831669 -0.883943 -1.451247 -0.959009 -0.762257 -0.644896 2.640475 1.642839 1.081947 -1.605051 0.145119 -3.221469 -1.153466 -0.007469 -0.005969 1.525312 0.296980 1.313917 -5.040339 1.685082 2.653670 -0.436634 -2.145530 1.378377 -1.780576 -0.184039 -1.268737 -1.884382 0.390630 0.857367 0.430125 0.875648 -0.153080 -0.635348 0.218035 0.347105 4.034046 0.015981 1.748715 2.244667 -0.836318 -0.015519 -0.480202 0.097562 -1.077797 0.828217 -0.121265 -1.130171 -1.724487 0.322900 -1.269862 -0.714148 1.326577 0.913449 -1.154425 -0.931382 -1.407315 -3.647340 -0.995692 1.956172 1.888941 2.660776 -2.243511 2.221016 0.351272 0.825913 0.736940 1.700444 0.378712 2.316441 0.463832 -0.202855 0.036024 -2.399383 -0.243005 0.012655 1.221617 -1.410146 -2.299282 1.494223 -4.771099 -3.037014 0.869534 0.519575 -1.884931 -1.100296 -0.247702 0.517349 0.786783 -0.734516 -1.686767 -0.700270 1.485876 -0.736977 -0.323558 0.164945 0.408688 -0.030079 -0.928278 -2.957159 1.795504 1.012370 -0.125435 -0.508347 2.700010 -0.684702 1.073509 0.151262 1.053423 -0.976452 2.280958 0.122178 -0.005577 -1.150253 -0.445367 -0.830136 -1.181319 0.485369 1.287146 -2.046200 -1.299584 -0.038121 0.853515 -0.698918 0.268843 -0.774218 2.588099 0.427124 -1.501421 -1.680987 -2.020521 -2.315035 -2.771184 -0.548595 -0.745770 -2.300824 1.687499 1.575560 1.712319 0.533011 2.396328 -0.038800 0.991757 0.415483 -1.362491 1.107535 -1.215922 1.409782 -1.653185 -1.449377 1.414545 -0.173318 2.372435 -0.077612 0.408164 0.354440 -1.721186 -1.660099 0.880028 1.124569 0.979213 2.641249 2.749121 2.344693 -2.246714 0.235325 0.604419 -1.243085 -0.405207 0.404656 -1.614181 0.361563 1.011198 -0.789776 3.369813 0.084357 -1.196957 1.050908 0.126294 0.810165 -2.189710 0.786027 -1.085481 0.537087 -1.478109 -0.686666 -1.560618 -0.864760 -2.415050 -2.758543 3.229622 -3.766667 -3.043669 1.990913 0.846486 2.629038 -4.041270 1.433746 -1.260310 3.670284 -0.073794 -0.538814 0.417936 -0.718861 -1.718060 1.618865 0.610939 -1.599699 0.486915 1.644664 1.177688 0.918426 -0.364410 1.869292 -0.636698 1.803704 -1.550347 1.413320 -0.459079 -1.601782 -0.192298 -0.415362 -0.459559 0.683922 1.065843 0.771329 1.212471 1.615277 0.982747 2.466707 1.515933 -1.009523 -0.016844 -0.686611 1.554996 -1.456799 -1.587644 0.018753 1.936551 0.578202 0.404954 -3.487295 -3.281585 -3.628381 -3.314969 0.135300 -0.638450 0.378382 0.557542 -0.625498 -2.803395 -1.783828 2.255753 -0.319304 3.607978 1.677792 0.525339 2.379981 1.858985 -0.676365 -0.410375 1.205068 1.517582 -0.004897 0.045434 -3.009335 2.126373 -2.027674 1.296274 3.309429 -1.531039 1.982717 0.194157 1.579576 -2.642806 3.314429 0.794420 -3.469829 0.902427 2.333212 1.101693 -0.078481 -1.654942 -PE-benchmarks/word-wrap.cpp__main = 0.146068 -0.648043 1.600868 1.121655 -0.201354 -0.032195 0.604659 -0.339151 0.556271 -0.020982 -0.408356 0.529377 -0.837320 0.378982 -0.566715 0.742313 -1.252017 -0.777027 -0.017797 -0.302094 -0.153919 -0.323924 0.751718 0.095670 0.942173 0.577331 -0.530359 -0.693715 -0.807823 -0.510660 0.569047 -0.446375 0.618379 0.307247 -0.157564 -1.714278 0.693727 0.543181 -0.437822 -0.923939 0.762825 -0.457264 0.029817 -0.703698 -0.183049 0.154358 0.415412 0.819066 0.561668 0.545918 -0.120267 0.061667 0.477560 1.506602 -0.514190 0.421359 0.633561 -0.103556 -0.183263 -0.182169 0.307376 -0.153495 0.297396 0.355602 -0.019397 -0.833187 -0.475151 -0.807876 -0.686806 0.517773 -0.049679 0.414410 -0.844639 -0.014013 -0.583690 -0.041630 -0.862867 0.962278 1.272190 -0.943428 0.774819 0.079149 0.261816 -0.154556 -0.157475 0.373542 -0.055787 0.364306 -0.047786 -0.372677 -0.642785 -0.139563 0.111023 -0.267629 -0.190558 -1.490987 0.685649 -0.659555 -0.848293 0.185020 0.428397 -0.364083 0.136180 0.111838 0.085911 0.756274 -0.563734 -0.621297 -0.045725 -0.202071 0.270716 -0.165295 0.098696 0.046852 -0.389095 -0.454484 -1.138379 0.191684 -0.094411 -0.510710 0.137652 0.493437 -0.178636 0.247507 -0.006057 0.383771 -0.340446 1.077005 0.300377 0.447418 0.371155 0.245133 -0.279375 0.218245 0.810476 1.029970 -0.588335 0.070992 -0.491710 0.183850 -0.370855 -0.419397 0.107804 0.457303 0.553690 -0.807917 -0.841795 -0.479880 -0.293615 -1.020033 0.200254 -0.609237 -0.007461 0.591031 0.636907 0.297622 0.704255 1.326649 -0.737508 0.323006 0.026238 -0.208586 0.569873 0.326797 0.587009 -0.414387 -0.496312 0.370732 0.200208 0.329643 -0.029044 0.119272 0.304852 -0.977279 -0.106995 0.370585 0.534677 -0.413771 0.527111 0.481535 0.128432 -0.413745 -0.112536 0.657487 -0.228108 -0.193304 0.332124 -1.028858 0.681166 0.016372 0.038764 0.460236 0.147459 -0.518323 0.666482 -0.348184 0.068165 -0.422462 0.044656 -0.445677 -0.325402 -0.616050 0.402282 -0.198667 -0.372768 -0.277224 -0.229206 1.065804 -0.706553 -0.331186 0.384693 -0.047685 0.385094 -1.143961 1.345832 -0.605377 0.645387 0.035676 -0.173901 0.136047 -0.148977 -0.614007 -0.245254 0.360189 0.004250 0.257426 0.937670 0.554097 -0.136562 0.069385 0.885699 -0.137248 0.845431 -0.067136 0.464401 -0.281263 -0.554846 0.202805 -0.108447 -0.191689 -0.267416 0.276340 1.238708 0.273264 0.612570 1.052454 0.291554 1.137403 -0.606701 0.400550 -0.212852 1.017435 -0.386221 -0.288891 0.088723 0.578286 -0.302423 0.674913 -1.069082 -1.592400 -0.891359 -0.957706 -0.025587 -0.524090 0.379382 -0.468891 -0.029067 -0.956633 -0.634205 0.105026 -0.290292 0.510988 0.732436 0.023145 0.684887 0.630661 -0.613421 -0.195216 0.236000 0.700349 0.246200 -0.037240 -0.788998 0.495054 -0.887989 -0.073581 1.237224 -0.571231 0.134220 -0.280546 1.022563 -0.643897 1.369275 0.355154 -0.763210 0.831694 0.713835 0.795678 0.386331 -0.546483 -PE-benchmarks/bellman-ford-algorithm.cpp__createGraph(int, int) = -0.059609 -1.079387 3.164552 1.831429 -0.715165 0.393839 0.963670 -1.270523 0.925920 -0.029952 -0.309926 0.821894 -1.269149 0.178139 -0.876856 0.560163 -2.450966 -1.151249 -0.618016 -1.446633 -1.013872 -0.565852 0.493635 0.598424 1.481883 0.675167 -0.859151 -0.680440 -1.696396 -0.934180 0.731267 -0.281643 0.802051 0.140154 0.739907 -3.715058 1.523595 1.254024 -0.695372 -1.503710 0.991450 -0.601163 -0.149802 -0.455615 -0.516988 0.097264 0.387474 1.111401 0.964861 0.519076 0.155624 0.111994 0.272557 3.682437 -0.452550 1.062462 1.233445 -0.593197 -0.008879 0.399685 0.263570 -0.413778 0.308434 0.153785 0.050342 -1.140875 0.062435 -1.353270 -0.739256 1.217755 0.348450 -1.033458 -0.800607 -0.975731 -1.991130 -0.461816 -1.437026 1.745701 2.134918 -1.790259 1.375534 0.070103 0.500662 0.124807 0.795058 0.285635 1.409375 0.466815 -0.075259 -0.014495 -1.086426 -0.283857 0.229355 -0.053949 -0.812159 -2.440777 1.437159 -2.209435 -1.865514 0.915600 0.878691 -0.974702 -0.633352 -0.263656 0.257704 0.566961 -1.209953 -1.286174 -0.823960 0.614819 -0.210138 0.065531 0.425771 0.026685 -0.481953 -0.504216 -1.825057 0.948951 0.342018 -0.209262 -0.755681 1.740701 -0.417054 0.352355 0.017913 0.807689 -0.850132 1.715552 -0.042167 0.665224 -0.338958 0.562823 -1.206888 -0.135583 0.852062 1.229423 -0.560739 -0.299993 -0.473904 0.703185 -1.034072 0.380854 -0.488296 1.630000 0.747884 -1.123092 -1.615062 -0.768874 -0.728990 -2.099865 -0.039280 -0.841738 -1.212029 1.020570 1.219855 1.663383 0.590235 1.422341 -0.669419 0.595930 -0.111401 -0.587620 0.786486 -0.539884 1.026643 -1.090543 -0.847882 0.292311 0.000332 1.222351 0.147311 0.005322 0.153922 -1.559032 -0.803725 0.308647 1.098001 -0.326181 1.146973 1.823398 1.507866 -1.776327 -0.244058 0.959691 -0.890756 -0.431930 0.317377 -1.374588 0.329117 0.544700 -0.292376 1.721818 0.114347 -0.479817 0.779768 -0.439941 0.464142 -0.912670 -0.026572 -0.673047 -0.333398 -0.830094 0.235617 -1.035479 -0.379618 -1.070936 -1.667776 2.159109 -2.536418 -1.438867 1.922536 -0.291488 1.185595 -2.211827 2.320920 -0.876133 1.511128 -0.168343 -0.167734 -0.211849 0.288273 -1.270484 1.184788 0.265126 -0.850714 0.360517 2.069113 0.800112 0.600248 -0.413675 1.744186 -0.962065 1.311184 -0.813762 1.585875 -0.556970 -1.297369 -0.147394 -0.258117 -0.461610 -0.326230 0.936044 1.222149 0.345009 0.940538 0.862077 1.211948 1.447476 -0.921602 0.717324 -0.190498 1.103051 -0.949819 -0.868814 0.699234 1.140480 -0.039596 0.346068 -2.194557 -2.187446 -2.476831 -1.792120 -0.061906 -0.634108 0.401649 -0.371550 -0.424464 -1.592757 -1.296835 1.196346 -0.381744 0.542499 1.361723 0.360568 1.566177 1.616176 -0.654669 0.155401 0.244795 0.927225 0.197744 -0.368113 -1.697602 1.257100 -1.880387 0.420778 2.155347 -0.568229 1.124060 0.225315 1.536314 -1.793614 1.890036 0.508219 -1.543653 0.984242 2.254888 1.427275 0.443871 -1.061503 -PE-benchmarks/bellman-ford-algorithm.cpp__printArr(int*, int) = -0.793301 -1.447223 2.109767 1.469148 0.082560 0.543042 0.854846 -0.228934 0.500595 0.679812 -0.676898 1.167600 -1.429882 -0.132023 -0.074631 0.200837 -1.251602 -1.338411 0.125802 -0.272826 -0.459890 -0.862011 -0.357856 1.348894 0.957907 0.321195 -0.735628 -0.232968 -2.083145 -1.194926 -0.384048 -0.217471 0.914010 0.140618 0.707071 -2.291564 0.802246 1.479920 -0.028013 -1.655180 0.621855 -0.923883 0.145551 -0.149370 -0.185997 0.611772 1.153521 0.650895 0.500138 0.389823 0.051011 -0.614771 0.320885 1.831406 0.134499 1.124569 1.372367 -0.509435 0.012634 -0.283198 0.194660 -1.145015 0.714121 0.415473 -0.879236 -0.501481 0.189928 -0.496500 -0.803926 0.629593 0.625599 -0.516485 -0.829440 -0.730130 -1.107203 -0.440360 0.475944 0.812647 1.952929 -0.950647 1.866170 0.581470 1.009879 0.046623 0.923582 0.025521 1.102975 0.230062 -0.777185 -0.302931 -1.547199 -0.509659 -0.354094 1.060486 -0.471009 -0.289851 0.680509 -1.508181 -1.827615 0.584869 -0.164381 -0.671789 -0.857683 0.537348 0.643146 0.861764 -0.317289 -1.308909 -0.744051 0.531315 -0.813205 -0.343594 0.003400 -0.104801 -0.527451 -0.383900 -1.550347 0.319882 0.778965 -0.806335 -0.541236 1.398447 -0.551752 1.294594 0.173997 0.440818 0.026367 1.130896 0.863610 0.064218 0.183175 -0.828290 -1.408503 -0.171520 0.284270 0.769214 -1.058745 -0.238602 0.283938 0.425898 -0.099344 0.278622 -0.463288 1.790562 0.865626 -0.976381 -1.141823 -1.269587 -0.664537 -1.030393 0.205199 -0.658061 -0.539221 0.200614 0.960807 0.419779 0.076482 1.871412 -0.646606 0.870733 0.255555 -0.457463 0.329822 -0.157858 0.871500 -1.049549 -0.767631 0.758572 0.861673 0.669868 -0.033824 -0.120782 0.328366 -1.058760 -0.999631 0.638930 0.352939 0.439829 1.467366 1.084946 2.156394 -1.184834 -0.084057 0.196766 -0.238263 -0.323869 0.252537 -1.337710 0.702018 0.228744 -0.005321 1.731981 0.118531 -0.939182 0.845941 0.004810 0.244503 -1.278439 0.813157 -0.821053 0.235453 -0.561759 -0.283118 -0.838744 -0.640684 -1.009677 -0.506057 1.859119 -0.707122 -1.886005 0.558260 -0.141205 1.222760 -2.452809 1.463400 -0.810285 1.259708 -0.424276 -0.434321 0.075956 0.088936 -0.223629 0.520204 0.496673 -0.497923 0.728371 1.044234 0.495948 0.408215 0.319542 0.851295 0.003970 0.424752 -0.449202 0.510172 -0.165800 -0.391307 -0.194506 -0.356216 0.331144 0.793969 -0.155202 0.516262 1.071469 -0.022531 0.770042 1.174246 0.500557 -0.627610 0.165424 -0.253478 1.650534 -0.890808 -0.783632 -0.467049 0.664898 0.179893 0.539225 -1.941651 -1.626605 -0.672755 -2.164497 -0.438429 0.100665 0.515550 0.411102 -0.057043 -1.696661 -0.826537 1.137440 0.056305 2.150792 0.749427 0.305284 1.388801 0.823153 -0.162586 -0.630902 0.220919 0.477054 -0.495560 -0.183951 -0.914911 0.551039 -1.405939 1.055033 1.361804 -0.770531 0.632449 -0.376285 1.032468 -1.593181 1.919084 0.778034 -1.657101 0.519185 0.944119 1.395054 -0.867008 -1.026291 -PE-benchmarks/bellman-ford-algorithm.cpp__BellmanFord(Graph*, int) = -4.163649 -10.330284 19.119639 13.921129 -1.665893 4.431664 4.217109 -4.834617 2.018303 6.912503 -4.205299 10.381661 -8.812326 -0.624447 -0.137860 4.273219 -11.879037 -7.800492 -1.470093 -5.196566 -5.248605 -4.225315 -3.460332 11.164298 8.892859 2.352308 -6.869070 -0.933887 -11.930404 -14.661894 -5.355988 -0.904560 7.308394 -0.670470 6.710801 -20.698078 9.151417 12.504527 -1.096330 -11.224101 5.151866 -4.835851 -0.835488 -0.319906 -6.070403 4.461342 7.018093 2.127125 4.257376 4.379933 1.722505 -1.676746 7.967056 17.375607 2.932806 9.620538 10.716695 -5.213115 0.834297 -1.879723 1.693815 -7.413294 4.686849 0.486142 -2.341830 -6.712041 0.363430 -2.349677 -3.960332 5.204652 4.123141 -8.028960 -6.043540 -7.357402 -10.047846 -4.283546 0.952227 7.381515 13.991858 -8.771605 12.779530 4.623537 4.243382 1.369650 7.627692 -0.027084 10.247095 2.831981 -3.581772 0.236327 -4.660528 -5.210447 0.594753 8.532072 -6.708332 -6.868018 6.476157 -14.948949 -14.969183 6.967374 1.663155 -7.526134 -6.391408 -1.285627 3.821451 4.189002 -3.082262 -9.171557 -5.244356 4.738955 -4.410159 -3.641064 -2.017816 -0.374671 -1.507905 2.660879 -13.210113 5.317200 6.055951 -3.646144 -4.565097 10.802820 0.689460 8.076187 0.144529 5.029217 -1.338079 8.660037 4.116204 4.012317 -2.580596 -1.224942 -8.401965 -0.634717 3.340629 -2.588111 -7.386591 -3.851892 0.826564 4.882625 -1.138697 7.427902 -3.742553 16.690761 7.569257 -4.336537 -9.714441 -9.662665 -8.908357 -9.320583 1.323989 -4.941379 -8.638890 3.835616 7.367642 1.858784 0.940883 8.506410 -2.902361 5.368369 1.354264 -3.148236 3.975454 -5.505619 6.417429 -8.348182 -5.852591 7.019487 6.590196 7.686307 -0.055350 0.116965 3.365587 -6.187113 -7.160923 5.425559 2.717798 2.414994 11.513731 10.131662 24.246326 -5.998219 -0.788197 1.763135 -3.886755 -2.043579 1.504272 -9.821882 2.811686 2.618996 -0.297485 16.075739 0.645228 -5.562568 6.519845 -0.370098 1.593188 -9.482760 7.507930 -6.050582 2.998116 -3.172364 -3.862125 -6.972995 -3.465546 -8.744322 -5.964276 15.496806 -13.661455 -12.708329 7.873633 -1.594909 7.800373 -17.808406 15.095145 -5.991018 9.942222 -3.521423 -5.571810 1.130784 -0.040826 -4.775742 6.530160 3.891790 -5.051431 3.305853 8.835700 3.546589 3.141583 -0.070813 7.240168 -2.228355 6.439737 -4.886865 7.381153 -1.339804 -2.595581 -5.057977 -2.082115 -0.519533 3.529373 0.378372 0.498738 4.729814 0.169761 1.624913 9.620902 5.309358 -5.576606 4.200514 -2.326869 9.760769 -8.277186 -6.999532 -0.770595 5.945934 2.033076 4.306658 -16.231674 -9.163104 -12.590906 -12.147741 -4.502710 3.650226 5.465493 1.671180 -3.089512 -11.409001 -8.979506 15.205700 0.119603 9.021398 8.088341 3.327245 11.274396 6.733282 2.869466 -3.108933 -2.486706 2.671369 -0.768956 -1.796896 -7.127814 6.680994 -9.911385 7.523905 11.405025 -5.171529 7.528564 -0.323397 5.570540 -12.768462 13.259267 4.167481 -12.625387 3.705489 11.593151 6.647487 -9.185310 -8.139551 -PE-benchmarks/bellman-ford-algorithm.cpp__main = 3.143257 -2.992626 23.882799 17.663869 -9.746561 0.790845 -3.685386 -12.626219 7.545993 1.663033 -1.831376 5.640521 -2.346094 4.985740 3.171589 13.554214 -21.610772 -1.774044 -5.416218 -12.719936 -7.910162 -0.025624 3.660584 0.015586 9.733714 11.505645 -8.028686 0.318750 5.777906 -17.753907 4.661605 -3.935482 7.539710 3.924035 4.929226 -36.525262 16.466100 5.863300 -6.627835 -9.354751 5.896668 -1.725345 -0.665110 -5.136719 -10.491162 3.701318 -0.590724 5.012708 8.343378 7.186180 -1.018256 6.262562 11.748990 22.755009 -2.506798 4.980544 5.429332 -7.359676 -5.391685 -0.772972 3.354191 1.797613 3.696196 -0.121525 5.075188 -16.834909 -3.129802 -6.464392 -7.154431 8.010297 0.861204 -8.579788 -7.605650 -8.120377 -6.833297 -4.306654 -14.573987 14.618486 12.075806 -12.243058 3.861314 0.069651 -2.931206 3.703924 3.166395 2.267475 11.255773 5.220935 1.743329 3.312547 8.387218 -11.000298 10.364555 -3.381578 -6.555002 -23.382600 6.045091 -13.123467 -9.142224 7.577382 11.960916 -5.357043 -8.283353 -13.364818 4.454116 3.850118 -5.387378 -4.884193 0.048393 0.960205 1.759664 -3.092845 -5.029523 0.364422 -1.299138 4.932428 -15.906837 8.146727 0.630960 3.141271 0.103804 7.537548 4.441498 -5.470256 -2.902105 7.500131 -8.231610 14.995894 -4.681528 10.929100 -4.078517 11.037745 2.769775 4.943803 7.802068 -4.685685 -1.346530 -9.185440 -8.506510 4.571622 -10.395997 4.911511 -1.188172 10.991543 15.410893 1.061810 -10.712305 -4.556869 -11.488218 -17.643997 2.327160 -7.338935 -7.010489 13.031696 7.794338 4.882130 9.697539 0.489503 -8.677069 1.925495 -5.170155 0.152173 11.569036 2.228842 7.119072 -5.751962 -2.177488 5.486062 0.335432 8.016185 1.832093 -1.035408 4.814235 -6.760993 -2.110230 9.387572 7.574633 -0.403507 4.237733 10.055135 25.833213 -0.717529 -1.532564 8.045756 -6.426099 -1.774440 3.570499 -7.405478 0.286758 3.899710 1.410738 12.861568 -0.876420 -2.234708 1.102989 -0.717364 0.571816 -3.028806 0.923683 -3.859049 2.219258 -2.905959 -0.417062 -8.424124 -0.887149 -7.505299 -8.198565 14.329174 -21.639248 -5.986406 17.228366 -10.379996 6.824320 -11.780622 18.175639 -7.085859 7.495846 -6.148049 -5.284463 0.019454 -8.185273 -13.641159 7.765130 3.853868 0.206995 -5.024301 13.555297 6.802251 -0.311397 -5.826056 10.973584 -5.858077 16.208317 -3.838400 14.803368 -5.639166 2.638512 -4.406824 -0.303358 -8.258619 -7.285278 5.631025 5.028560 -2.473778 8.069250 2.881623 5.342862 11.841074 -8.031317 12.057662 -2.222000 2.065203 -5.981152 -5.243094 8.352140 10.619396 -1.840643 4.290385 -14.154429 -9.433783 -24.836069 -2.952486 -5.021483 6.432993 5.231118 -6.180307 -4.827096 -4.593110 -9.094781 19.066977 -2.132122 -0.301719 8.495472 1.835190 8.652175 10.940605 -0.728373 -2.385601 -5.433534 -0.380544 6.410143 -0.108570 -12.717630 15.157186 -5.799674 -1.472146 16.486254 -6.029875 5.950324 0.237330 10.378851 -7.420747 10.540769 0.104472 -6.346892 6.899246 14.657825 3.661569 0.340777 -6.652558 -PE-benchmarks/permutations-of-a-given-string.cpp__permute(std::__cxx11::basic_string, std::allocator >, int, int) = -1.644863 -2.421299 4.679556 2.325168 -0.870348 0.608911 1.860764 -0.814972 0.715196 -1.125707 -1.319500 1.613165 -3.432872 -0.158781 -1.252449 -0.826945 -3.820577 -3.077077 -0.428159 -1.094057 -1.285528 -1.922441 -0.019277 3.411316 1.937506 1.363463 -1.557922 -0.146784 -4.182215 -0.993837 0.474623 -0.299264 1.821223 1.530507 1.665957 -5.285697 1.486160 2.132452 -0.253012 -2.354650 1.718416 -1.902530 -0.164524 -1.294680 -1.349726 0.726381 2.198739 2.320379 1.373484 0.036689 -0.562761 -1.595672 -0.626327 4.076453 -0.258990 1.872347 2.853692 -0.922400 0.271685 -0.560578 -0.250072 -2.424914 0.834359 1.128388 -2.294563 -0.780616 1.397529 -2.261227 -1.506586 2.225705 1.541361 -0.477957 -1.547344 -1.605317 -3.582257 -0.786483 2.985181 2.272840 4.268690 -2.536273 3.269477 0.810493 2.170336 -0.013551 1.358678 0.145314 2.593161 0.152671 -1.311423 -0.850137 -4.782474 -0.471535 -1.430977 1.707464 -0.423976 -1.430987 1.490292 -5.293765 -3.813697 0.577392 -0.335935 -1.793474 -1.289060 1.492914 1.320706 0.904047 -0.586551 -2.696789 -1.383325 1.297541 -1.975905 0.572278 0.638752 0.865914 -0.833901 -1.669341 -3.752808 1.168929 0.940819 -1.506008 -0.544283 3.097613 -1.749006 2.759282 1.264526 1.254918 -0.412310 2.832806 1.783896 -0.860277 0.138968 -1.873944 -1.345953 -1.174406 0.473645 3.019997 -2.402970 -1.169642 0.527226 0.716663 -1.091968 -0.754866 -1.000558 3.008922 0.330689 -3.060006 -2.864031 -2.131927 -2.129304 -3.310277 0.016304 -1.633679 -2.181674 1.152690 1.502908 2.218114 0.196708 4.271436 -0.726748 2.224358 0.647633 -1.536558 0.237315 -0.766576 2.161446 -2.168579 -1.789457 1.259765 -0.011755 1.995787 -0.249790 -0.719722 0.330095 -3.247163 -2.925770 0.931373 1.118516 1.252552 2.636589 2.818897 2.326952 -3.235990 0.141767 1.116649 -0.585917 -1.159352 1.171758 -2.459164 1.598645 0.533172 -0.661693 3.414484 0.432842 -1.934753 1.920496 0.122979 1.002323 -2.980293 0.510158 -1.333229 0.657501 -2.244063 -0.253638 -1.791797 -1.208161 -1.964656 -2.309653 3.690890 -2.871565 -4.344393 2.034384 0.827789 4.143183 -5.453600 1.872948 -1.335059 4.117408 -0.130756 -0.504462 0.112513 -1.010627 -0.447231 1.679803 0.172124 -0.940285 1.414378 2.088706 1.173626 1.672113 0.772004 2.468105 -0.023127 1.380444 -1.100248 0.734063 -0.533383 -2.368094 0.261168 -0.473126 -0.018039 1.557961 0.842620 1.620133 2.652603 1.118943 2.790135 2.785836 1.496587 -0.971821 -0.848593 -0.748434 3.094301 -2.103805 -1.998054 -0.441184 1.891180 -0.239095 0.829170 -4.181740 -5.194558 -2.901684 -5.564842 -0.866735 -1.682635 0.948860 0.875350 -0.184434 -3.402223 -1.270721 1.749178 0.156510 5.731414 2.010574 0.426786 3.226981 2.897237 -1.377281 -1.267427 2.406309 2.431490 -1.095372 0.422943 -3.786759 1.305051 -3.027391 2.106745 3.761120 -2.008998 1.620966 -1.186799 2.810565 -3.862746 4.411011 1.589282 -4.256041 1.489341 1.683058 1.826463 0.868579 -1.902685 -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.648814 -0.716958 2.021136 1.283037 -0.211110 0.277506 0.619267 -0.838631 0.920866 -0.121114 -0.138628 0.465632 -1.132396 0.264217 -0.725204 0.445881 -1.451212 -1.037056 -0.391931 -1.061855 -0.449066 -0.539576 0.483297 0.325870 0.908921 0.054304 -0.827105 -0.518081 -1.578589 -0.582958 0.818465 -0.329879 0.817582 -0.374979 -0.134696 -3.331437 1.031867 1.032670 -0.603131 -1.087786 0.952928 -1.059643 0.172109 -0.604952 -0.612739 -0.026437 0.143725 0.169026 0.885299 0.156011 0.214834 0.463553 -0.053951 2.659575 -1.030776 0.761809 0.579960 -0.272542 -0.613098 0.202544 0.090873 -0.070158 0.660922 0.260319 -0.503307 -1.177242 -0.034704 -0.825188 -1.088099 0.776260 0.006888 -0.307065 -0.571928 -0.210156 -1.431012 -0.578806 0.333725 0.937508 1.474618 -1.143499 1.050539 -0.143655 0.243278 0.215310 0.501538 0.315763 0.867860 0.177430 -0.112928 -0.467888 -1.005631 0.309520 0.064535 0.466878 -0.377644 -1.565579 0.911974 -1.270230 -1.366693 0.273947 0.524934 -0.549608 -1.063288 -0.218266 0.270847 0.708947 -0.755363 -1.126331 -0.566520 0.546093 0.004066 -0.217621 0.158770 -0.574147 -0.342521 -1.021491 -1.438336 0.490279 0.039436 -0.295698 -0.784299 1.249105 -0.749486 0.042303 0.136734 0.834347 -0.762687 1.250585 -0.311170 0.423771 -0.054423 0.005866 -1.128704 -0.682287 0.543398 1.562078 -0.709976 -0.323024 -0.740569 0.195510 -0.855769 -0.207854 -0.088046 0.907434 0.869137 -0.846084 -0.725349 -0.454844 -0.153212 -1.746263 -0.049029 -0.680586 -0.485945 0.718690 0.913379 0.918153 0.842026 1.852299 -0.540641 0.759182 0.006811 -0.761599 1.086905 -0.238804 0.915591 -0.741164 -0.838399 0.321793 0.019515 0.823542 -0.102877 0.274965 0.049340 -1.260745 -0.576295 0.127466 0.684959 0.017557 0.927396 1.124339 1.197052 -1.733125 0.296629 0.740210 -0.655215 0.016549 0.120500 -1.086466 0.234317 0.606596 -0.597579 1.309463 0.058445 -0.946055 0.387822 -0.210731 0.468818 -0.908318 0.161202 -0.691981 -0.182463 -0.815833 -0.425680 -0.656147 -0.585673 -0.878810 -1.069267 1.480413 -1.334392 -1.357920 1.195589 0.106374 0.825592 -2.223741 1.453410 -0.844116 1.318061 -0.507052 0.035504 -0.104954 0.477170 -1.029593 0.622083 0.359625 -0.698120 0.647377 1.730131 0.772685 0.485093 -0.314481 1.318354 -0.239616 1.009852 -0.607429 1.135099 -0.406845 -0.971107 0.259968 -0.310390 -0.202900 -0.113158 0.674414 1.051233 0.837925 0.652252 0.867846 1.214967 1.301933 -0.538715 0.571868 -0.311499 0.909834 -0.341487 -0.468783 0.319570 0.891292 -0.054010 0.494703 -1.649942 -2.017567 -1.260386 -1.815326 0.592672 -0.262850 0.016379 -0.133680 -0.029886 -1.744054 -0.739533 0.444870 -0.458231 1.798728 0.738507 0.352147 0.970498 1.240703 -0.907020 -0.166675 0.467517 0.606066 0.070051 -0.346899 -1.292503 1.126805 -1.092575 0.368689 1.472494 -0.605401 0.544644 0.190450 0.866294 -1.027011 1.840374 0.383507 -0.883314 1.215204 0.994847 1.293920 0.387585 -0.660816 -PE-benchmarks/permutations-of-a-given-string.cpp__main = -0.069090 -1.391722 5.493328 2.252387 -1.100741 -0.007279 3.528556 -2.172687 2.838493 -0.757199 -0.951220 -0.462568 -3.807708 -0.097558 -1.555032 0.341613 -4.600889 -2.592605 -0.471536 -2.343652 -1.082413 -2.495362 2.951326 0.556732 2.970728 1.609237 -0.826189 -2.142036 -2.623374 -0.858883 3.482751 -0.893576 1.505605 1.931697 0.293613 -6.327444 2.345123 0.855061 -1.366029 -2.040946 2.466180 -0.644346 -0.113273 -0.703855 0.249704 0.331995 1.408237 4.878299 2.840707 1.320040 0.145303 -1.921306 -0.278738 5.183570 -2.289702 1.321356 1.565039 -0.679350 -0.326656 1.424123 -0.204901 -1.422213 0.359525 2.029048 -0.818571 -1.271282 1.456363 -3.353794 -3.182671 3.265177 0.514972 -0.171199 -2.210180 -0.981243 -2.148243 -0.210083 -2.057856 3.429366 4.764306 -2.888372 2.994495 0.174591 1.418121 -1.188655 -0.733876 0.299237 1.073356 0.060976 -1.006150 -1.700861 -4.971765 -0.974021 -0.723171 -1.160365 0.391196 -4.590367 2.247734 -3.080565 -3.365971 0.160819 1.240183 -1.373007 -0.988764 1.670977 1.034757 1.006071 -1.500124 -3.048389 -1.292279 0.453452 -1.883182 1.624412 0.855594 0.421722 -1.790972 -2.205192 -3.465829 0.623197 -0.788827 -1.659889 -0.865693 2.602692 -1.882899 1.620312 1.758518 1.957327 -0.896337 2.951517 1.238140 0.408045 2.150548 0.016097 -1.198461 -0.126863 1.863119 4.606905 -0.377295 -0.253474 -1.124499 0.694071 -2.799592 -1.106157 -0.295892 1.445134 1.046176 -3.926746 -2.921195 -0.189421 -0.707059 -4.365973 1.012183 -1.950928 -1.143461 0.651084 1.604740 2.845787 1.352544 4.031574 -2.861055 1.468812 -0.200290 -1.281098 0.482582 1.346511 2.818622 -1.743666 -1.457742 -0.780421 -0.361315 1.196587 -0.603232 -0.907754 -0.058926 -4.537557 -1.619052 -0.331033 1.466593 -1.009096 0.483580 3.032029 1.120081 -3.745874 -0.387362 2.978345 -0.503239 -1.508876 1.938054 -3.497837 2.473037 0.256626 -0.018439 1.987474 0.522240 -1.132946 2.030004 -1.223641 0.561373 -1.953688 -1.452030 -1.585248 -0.943419 -2.504925 1.213382 -1.741638 -1.532791 -1.001656 -1.413060 3.082870 -1.208262 -2.480151 3.500401 -0.608464 2.535692 -4.057105 4.575762 -1.275488 1.628175 -0.526683 -0.132761 -0.654452 -0.031815 -0.978850 0.296151 -0.712006 0.088886 2.468729 4.368179 1.636735 1.304893 0.282051 3.858020 -1.062205 1.979648 -1.017772 1.509488 -1.579136 -2.992585 0.927680 -0.352496 -0.463582 -0.526252 1.102691 4.251731 2.381648 1.223185 4.128259 1.306030 3.030836 -1.021774 0.958892 0.079690 3.073346 -1.427535 -1.433735 1.337908 1.416193 -1.862898 1.833891 -4.197794 -6.109590 -1.671525 -5.239580 -0.715401 -3.279154 1.198800 -0.615749 0.062169 -3.470759 -1.387881 -0.278552 -0.163440 2.321384 2.131158 0.172797 2.739996 4.237941 -2.576037 0.027211 2.456718 2.958504 -0.751446 -0.931839 -3.432458 1.652033 -3.269137 0.880244 4.007517 -1.548860 0.709453 -2.487825 3.801041 -4.223546 3.961148 1.170037 -2.071507 2.991232 1.709595 3.350106 3.108661 -1.331795 -PE-benchmarks/permutations-of-a-given-string.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/permutations-of-a-given-string.cpp__std::remove_reference::type&& std::move(char&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/find-two-non-repeating-element.cpp__get2NonRepeatingNos(int*, int, int*, int*) = -3.102790 -4.800904 7.894072 5.573133 -0.006462 2.499188 3.241659 -1.689119 1.282633 3.776841 -1.351404 4.693510 -3.940740 -0.492532 0.254687 1.232390 -3.839006 -4.091790 -0.227615 -2.115448 -2.386134 -2.603267 -1.793522 4.694402 3.381460 -0.771876 -3.292055 -0.909273 -7.061742 -6.125133 -1.951095 -0.660134 3.084728 -2.748106 2.933450 -9.929320 4.003005 5.314939 -0.137150 -5.532527 2.065258 -2.281064 0.755577 1.081196 -1.353534 1.348858 3.151664 -0.397224 2.004229 1.674453 0.898804 -0.429710 1.168439 8.020867 0.544099 4.618857 4.502724 -2.009900 -0.433058 -0.310556 0.947481 -3.781751 2.310579 0.410667 -1.697849 -2.510005 0.509778 -0.545312 -2.363141 2.217153 1.774464 -4.031545 -2.214871 -2.348989 -4.999846 -2.363727 2.017798 2.290859 6.541145 -3.247122 6.098237 2.308234 3.079426 0.941649 3.788183 -0.168507 4.775269 0.909841 -2.526587 -0.245199 -3.978300 -1.107803 -1.070580 4.660058 -2.528507 -0.614629 2.568721 -5.709314 -6.562626 3.248436 -0.206524 -2.490028 -4.738939 0.458665 2.458275 2.330562 -1.972312 -4.597386 -4.218015 2.633944 -2.689526 -1.367295 -0.167103 -2.342492 -0.759429 0.122834 -5.508185 1.732440 3.081388 -1.963715 -3.316815 5.268604 -0.868037 4.115033 0.368889 2.319830 -0.803311 2.916703 2.391500 0.967166 -1.083594 -2.479706 -7.188585 -1.593810 0.416112 0.702938 -3.300253 -1.747896 0.403242 1.911752 -0.762630 3.057106 -1.731436 7.567255 4.142035 -1.541648 -3.642411 -3.936409 -2.156017 -3.667887 0.637375 -1.680746 -3.004301 0.235408 3.160846 1.236807 0.459114 4.732805 -0.902541 3.430386 0.223938 -1.114608 1.728805 -2.584333 2.952853 -3.516523 -2.716893 2.406885 2.967594 2.908184 0.160542 -0.496038 1.341555 -2.554781 -3.542598 1.360556 0.890544 1.931015 4.677846 4.234905 10.103877 -4.855633 -0.448193 0.539793 -1.074311 -1.021144 0.624407 -4.186211 0.806941 1.362162 -0.158946 7.031524 0.230457 -3.567072 2.766736 0.137783 1.198580 -4.297533 3.623597 -3.179489 1.287794 -0.951578 -2.257301 -4.042400 -1.915732 -4.365916 -2.720744 5.988479 -3.413704 -6.936956 3.154731 -0.863360 3.618013 -8.669619 6.045500 -2.785818 4.282589 -2.338622 -1.420193 -0.514645 2.486347 -1.599353 3.629452 1.620317 -3.369733 2.972997 4.257788 1.138273 2.652851 0.139629 2.962986 -0.652685 1.773686 -1.778817 3.082204 -1.157176 -2.105709 -1.598075 -0.971326 0.699835 2.189786 -0.671794 -1.156939 3.041013 -0.987741 0.757540 4.832391 1.607029 -2.249627 1.547869 -0.942208 4.704229 -3.370131 -2.898807 -0.963025 2.291038 0.946864 1.150726 -7.181791 -3.704345 -4.170277 -6.646935 -1.361409 1.973150 1.298793 1.403383 -0.730278 -5.923830 -3.202906 5.309765 0.664585 5.719870 3.092622 1.465626 5.152825 3.165986 0.060195 -1.894805 -0.482394 0.007171 -1.311321 -1.284763 -2.894481 2.509037 -4.399399 4.051314 4.133585 -1.657289 2.699300 0.896855 2.191890 -5.679847 6.356032 2.477866 -4.959763 1.694860 4.552803 4.711412 -4.857313 -3.487742 -PE-benchmarks/find-two-non-repeating-element.cpp__main = 0.052857 -0.503726 3.045016 1.736665 -1.039399 0.097782 -0.049151 -1.445608 1.049762 -1.644456 -0.568667 0.617666 -1.023722 0.596891 -1.802640 0.368869 -2.895269 -1.167031 -0.911463 -1.528994 -0.623488 -0.305250 0.738243 0.554341 1.253409 1.322831 -1.230434 0.057232 -1.588096 -0.342364 1.368663 -0.398869 0.779836 0.111531 0.186527 -3.665620 1.592788 1.188332 -0.891453 -1.221701 1.311606 -1.384821 -0.308334 -1.664631 -1.173248 -0.136490 -0.224779 0.913541 1.084123 -0.074849 -0.672906 1.059012 -0.262068 3.118549 -1.187706 0.714382 0.899970 -0.219574 -0.600935 0.032182 0.153435 0.291627 0.312542 0.173264 -0.437023 -1.990175 -0.089294 -1.416413 -0.683533 1.297713 -0.030284 -0.197775 -0.716450 -0.412466 -2.558052 -0.360066 0.541100 1.768557 1.676550 -1.712195 0.638409 -0.474673 0.171078 0.434059 0.386937 0.558873 1.246666 0.483728 0.380709 -0.535991 -1.482907 0.386958 0.455714 -0.481437 -0.725582 -2.976246 1.240933 -3.555119 -1.545809 0.010190 1.196066 -1.146521 -0.185419 -0.284153 0.261353 0.515137 -0.687879 -0.789874 0.369957 0.662220 0.212336 -0.001216 0.361266 0.059598 -0.002760 -1.039583 -2.174830 1.291399 -0.134839 0.312576 0.101681 1.478739 -0.521044 -0.606875 -0.018384 0.947005 -1.195633 1.915013 -0.818111 0.350984 -0.810373 0.798212 0.348364 -0.211752 0.853357 1.414968 -1.361401 -0.549538 -0.913075 0.338093 -1.430502 -0.982955 -0.821257 0.535942 0.097516 -1.357754 -1.163649 -0.677582 -1.372291 -2.545277 -0.521135 -0.712360 -1.741641 1.411101 1.141993 1.911975 1.388866 1.831622 -0.501626 0.348941 0.136184 -0.801191 1.510237 -0.464853 1.087816 -0.857422 -0.939387 0.750525 -1.034147 1.314544 -0.134361 0.452299 0.169580 -1.842901 -0.403070 0.787903 1.324765 0.369352 1.250978 1.734722 -0.459406 -1.698744 0.318981 1.240437 -1.069663 -0.263546 0.437149 -1.076388 0.287544 0.848083 -0.010804 1.679042 0.136762 -0.619808 0.273206 -0.020591 0.733386 -1.048301 -0.420561 -0.569965 -0.183981 -1.185151 0.198332 -0.759460 -0.433862 -1.373212 -2.430159 1.845379 -3.008327 -1.536551 2.016592 0.394492 1.787953 -2.266331 0.286694 -1.081901 2.618562 0.450467 0.412908 0.204512 -1.095289 -2.108598 0.936998 0.378858 -0.665983 0.295294 1.478785 1.230249 0.500554 -0.642023 1.752419 -0.890301 2.037153 -0.889277 1.222529 -0.593081 -1.636571 0.528213 -0.203096 -1.142854 -0.612042 1.484446 1.638149 0.491092 2.184164 1.528967 1.198220 2.086715 -0.861895 0.445441 -0.656221 0.362993 -0.560564 -0.935910 0.844980 1.446761 -0.128786 0.360503 -2.167606 -3.197327 -3.370894 -2.215407 0.928923 -1.780593 0.015209 -0.511765 -0.352369 -1.726836 -1.182685 0.953719 -0.515590 2.539892 1.247581 0.155970 1.101228 1.668795 -1.614480 0.133878 1.127758 1.418955 0.581818 0.023568 -2.734021 2.067143 -1.047854 -0.092908 2.899043 -1.288727 1.001881 0.189549 1.098127 -1.220410 2.201042 0.349333 -1.838551 1.218001 1.224011 0.820617 1.734436 -0.984376 -PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -0.987201 -2.412331 3.490967 2.649482 0.430175 0.976540 1.478960 -0.492918 0.871270 1.846089 -1.040405 1.844821 -2.328831 -0.213548 0.552602 0.624626 -1.945953 -2.270061 0.259636 -0.512031 -0.980646 -1.513692 -0.740386 2.196563 1.622235 0.045060 -1.238874 -0.364149 -3.289283 -2.050647 -0.786837 -0.432688 1.486550 0.696408 1.475753 -3.108535 1.489212 2.174906 0.072002 -2.338112 0.614973 -1.282611 0.221526 -0.133357 0.193011 1.233948 2.060159 1.113535 1.042324 0.783005 0.587251 -1.431264 0.585967 2.698236 0.183197 1.925315 2.070831 -1.059776 0.457241 -0.291275 0.361536 -2.020378 1.269454 0.901694 -1.338309 -0.780049 0.434266 -0.740858 -1.151398 1.230020 1.574068 -0.848267 -1.590799 -1.231885 -1.286268 -0.846352 -0.054816 1.215773 3.410058 -1.408477 3.190450 1.477417 2.073882 -0.059831 1.772430 -0.133883 2.379140 0.335850 -1.707961 -0.185058 -2.746660 -1.247085 -0.647840 2.071788 -0.678443 0.255931 0.747496 -1.954983 -3.141070 1.220841 -0.322135 -0.799378 -1.626626 1.110709 1.301855 0.946693 -0.304106 -2.314257 -1.335513 0.620511 -1.775378 -0.621885 -0.187673 -0.544641 -0.887272 -0.168216 -2.589219 0.207185 1.226138 -1.490446 -1.188772 2.312024 -0.851156 2.171858 0.257892 0.585222 0.154777 1.433798 1.609824 0.431984 0.617669 -1.717761 -3.199876 -0.034673 0.611629 0.881072 -1.307598 -0.356170 0.492349 0.824692 -0.290748 1.134807 -0.393636 3.566548 1.357542 -1.621597 -2.116868 -2.074333 -0.818766 -1.222669 0.821090 -1.200408 -0.903816 -0.504490 1.613383 0.607184 0.119584 2.575139 -0.981095 1.876964 0.161067 -0.211016 0.535638 -0.424778 1.465370 -1.780497 -1.025110 1.237173 1.825952 0.752469 0.181812 -0.696933 0.692843 -1.756273 -1.821425 0.800868 0.055956 0.467431 2.455285 1.608176 4.545551 -2.024033 0.100420 0.465967 0.043519 -0.594413 0.597635 -2.169617 1.373538 0.158099 -0.065611 2.808013 0.177887 -1.709799 1.225456 0.069523 0.380352 -2.047950 1.372144 -1.197214 0.522440 -0.816209 -0.109071 -1.609778 -1.096619 -1.224510 -0.165670 3.086785 -0.690424 -3.105474 1.065947 -0.527398 1.738660 -3.812222 2.916478 -1.332468 1.417485 -1.150498 -1.147312 -0.020338 0.685940 -0.242229 1.097771 0.869403 -0.860301 1.248385 1.595532 0.708492 0.955305 0.682432 1.292021 0.178127 0.474801 -0.564828 0.999696 -0.111610 -0.266370 -0.808549 -0.640741 0.761563 1.435292 -0.569139 0.340887 1.898963 -0.437508 0.891949 1.754486 0.546956 -1.103480 0.240367 -0.269498 2.637459 -1.678812 -1.224190 -0.709384 0.385444 0.051626 0.965446 -3.190767 -2.033028 -0.306656 -2.958860 -1.304101 0.937784 0.946715 0.978469 -0.117023 -2.653508 -1.218544 1.870646 0.222109 2.559156 1.162295 0.485106 2.275216 1.358499 0.188407 -1.371706 -0.136562 0.450936 -0.887001 -0.358781 -1.395381 1.020120 -2.408032 2.041352 2.015542 -1.234120 0.873735 -0.755893 2.078610 -2.712000 3.047551 1.308166 -2.589405 0.712157 1.842530 2.546185 -1.823676 -1.707482 -PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -3.313202 -6.310036 9.839142 5.719158 -0.601931 2.208905 3.379459 -0.200268 0.105978 0.730703 -2.741610 6.016644 -5.737898 -1.608236 -0.996287 -1.546388 -5.837251 -5.657104 -0.429559 -1.245666 -2.224440 -2.699034 -3.066230 8.786213 4.267684 1.070475 -3.568378 -0.558294 -9.578246 -3.070473 -2.924349 0.233549 3.733565 -0.503718 4.883660 -9.058221 2.582299 6.388162 0.474226 -6.349091 2.861291 -2.685563 -0.041557 -0.821453 -3.234312 1.829426 5.691985 2.658605 1.059500 0.793200 -1.438811 -2.660195 1.381855 8.863901 2.756725 4.869258 7.510706 -2.335918 1.687667 -1.953213 0.184691 -6.228010 1.544985 0.020931 -3.364388 -1.394044 1.876037 -1.959731 -1.401925 2.459007 4.107142 -2.898231 -2.490757 -4.203349 -7.592113 -1.927354 7.015624 3.775981 7.827443 -4.820382 7.356723 2.970845 4.618911 1.263564 3.878084 0.074747 4.536261 0.900260 -2.399290 -0.316003 -8.552073 -1.374117 -2.420311 4.151091 -2.759703 -2.706777 3.359137 -10.333695 -8.354685 2.997851 -0.865408 -4.266004 -1.888744 1.482393 2.333654 2.557017 -0.984704 -4.674801 -3.502110 3.162961 -3.885903 -0.349964 0.930347 1.137813 -0.463027 -1.179130 -6.764876 3.406844 4.160655 -2.347053 -1.538331 6.373369 -2.687547 7.094853 1.233261 2.386615 -0.045610 4.013750 5.210881 -1.316109 -1.244389 -4.389229 -3.290425 -2.040018 -0.127476 2.636141 -5.078018 -1.892195 2.088623 2.369927 1.008318 2.127077 -1.871414 7.953644 0.074510 -4.330966 -5.322414 -6.493449 -5.605096 -4.092088 -0.263286 -1.686933 -5.376428 2.087090 2.883251 2.627716 -1.341129 6.272659 0.104422 3.428723 1.852785 -2.779065 -0.372731 -3.603543 3.316304 -4.488146 -3.318783 3.074132 2.382981 4.655394 -0.143268 -0.650107 1.426686 -4.080301 -4.927038 1.083854 1.783555 2.719860 6.708896 5.910845 7.649176 -4.541188 -1.415686 -0.066133 -1.698031 -2.075091 1.108919 -4.797165 1.906354 1.120570 -0.979616 8.659284 0.712895 -3.407541 5.121636 0.465812 1.193677 -5.340993 3.519763 -2.981174 1.336370 -2.559089 -1.482452 -4.512413 -1.437414 -5.882830 -4.802990 8.331553 -6.513072 -8.752382 2.197411 2.124958 6.629395 -10.346963 5.248163 -2.236635 8.239854 0.367266 -2.005664 0.732642 -1.289496 -0.950665 3.260902 1.057836 -3.092132 2.205486 2.785623 1.493936 2.398309 1.416894 3.348322 -0.773928 2.294803 -2.717828 1.167454 -1.017814 -3.692045 -1.323398 -0.462317 1.013796 4.058865 0.328353 -0.582622 3.484565 0.958250 2.248774 5.899004 1.212142 -2.320818 -1.262236 -1.327312 6.645270 -4.877281 -3.962749 -2.251692 3.690992 1.651833 1.570865 -8.835455 -6.673697 -5.823931 -9.651884 -2.118058 -1.026199 1.393403 2.324605 -1.621416 -6.782887 -4.112879 4.941556 0.978852 8.717467 4.538682 1.261477 7.136552 3.659009 -0.091002 -2.184746 2.807935 3.009294 -1.861454 -0.141583 -5.465591 2.077253 -5.817085 4.769004 6.919938 -3.109341 4.533169 -1.314501 2.528726 -8.030379 8.452157 3.147071 -9.770792 0.603052 4.605253 4.046475 -3.797670 -4.524082 -PE-benchmarks/boyer-moore-algorithm.cpp__int const& std::max(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/boyer-moore-algorithm.cpp__main = 0.481100 -1.658956 8.679443 3.572307 -1.860673 -0.079924 5.520775 -4.169525 5.036607 -1.363471 -1.777382 -1.495800 -6.020859 0.026236 -2.646865 0.889150 -8.009808 -4.051246 -0.722379 -3.952180 -1.665192 -4.235573 5.358574 0.024056 4.796911 2.826192 -1.267347 -2.954508 -3.657446 -1.591639 6.316500 -1.704813 2.166747 3.641952 0.101763 -9.924644 4.416561 1.063189 -2.361790 -2.834789 3.845716 -1.315558 -0.557559 -1.501463 0.752750 0.598779 1.679351 8.502127 5.160589 1.976970 0.449625 -3.217405 -1.091556 7.797892 -4.452681 1.938743 1.687217 -1.120750 -0.856048 2.914709 -0.257792 -1.710170 0.664613 4.020986 -1.357440 -2.253237 2.668382 -5.673845 -5.288727 5.812456 0.625702 -0.162271 -3.620949 -1.044043 -2.882238 -0.031849 -3.724199 5.597252 7.596114 -4.170038 4.696974 -0.249074 2.124531 -2.400756 -1.344509 0.388497 2.245975 0.005929 -1.745312 -3.192017 -7.736122 -1.854078 -0.571704 -2.046247 0.988620 -7.047852 3.273899 -4.630901 -5.154442 -0.342099 2.383795 -2.162537 -1.687965 3.273785 1.952607 1.247034 -2.106602 -4.914923 -1.365331 0.556635 -3.656460 2.695082 1.136075 0.570311 -3.239348 -3.588644 -5.496564 0.605960 -1.829250 -2.459795 -1.242045 4.038083 -3.004669 1.622756 2.729904 2.856756 -1.392210 4.673484 0.928474 0.934462 3.695510 0.632216 -1.734226 0.167264 3.522292 7.276842 -0.147667 -0.360103 -1.960263 1.189310 -5.543382 -2.253974 -0.879725 2.129091 1.746189 -6.552372 -4.650478 0.357120 -0.838080 -7.207088 1.717970 -3.311472 -2.033145 0.758588 3.002485 4.716005 2.747641 6.538729 -5.252106 2.455640 -0.561339 -1.754355 1.380864 2.455081 4.682163 -2.767970 -2.079442 -1.246481 -1.092592 1.713449 -1.246121 -1.489453 -0.247759 -7.715983 -2.580930 -0.086449 2.299370 -1.493043 0.216422 4.749172 1.453695 -6.262863 -0.021753 5.506449 -0.426201 -2.560342 3.485021 -5.632004 4.159821 0.467510 0.470411 2.858845 0.860121 -1.882986 2.259607 -1.938403 1.005795 -3.286819 -3.008656 -2.248197 -1.043107 -3.954656 2.265407 -2.456067 -2.804467 -1.270768 -2.127859 4.610900 -1.574234 -4.169873 6.416483 -1.688925 4.324014 -6.193310 6.720028 -2.318795 2.075404 -1.061500 -0.001060 -0.968412 -0.294892 -2.056255 0.807223 -1.229165 0.658603 4.210362 7.203611 3.024729 2.296528 0.098857 6.378944 -1.765388 3.219828 -1.504269 2.481512 -2.412815 -4.610100 1.616533 -0.847493 -1.250349 -1.171319 1.933584 7.682189 4.142809 2.338893 7.230569 1.516357 5.242835 -1.652183 1.774942 0.197187 4.347699 -1.830919 -2.436297 2.767509 1.939520 -3.425495 2.962007 -6.682047 -10.189865 -2.465804 -8.541089 -1.002363 -5.732367 2.330768 -1.121080 0.452694 -5.461189 -1.925402 -0.137554 -0.351819 4.462628 3.129814 0.085793 3.691635 6.897016 -4.583575 0.280359 3.775088 5.176063 -1.159972 -1.487511 -5.876693 3.303631 -5.395596 1.406099 6.550719 -2.827599 0.694011 -4.522400 6.655689 -6.693529 5.782239 1.773858 -2.772407 4.992396 2.280655 5.144938 6.143545 -2.112574 -PE-benchmarks/boyer-moore-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::Graph(int) = 0.534908 -2.633236 6.057651 3.365033 -1.702838 0.944292 2.069356 -1.628819 1.014817 0.198023 -1.347746 2.080490 -2.590081 -0.549015 0.250114 0.091240 -5.220601 -2.316684 -0.521125 -1.524985 -1.923325 -1.551157 -0.151995 2.812259 2.797345 2.506460 -1.135696 -0.640799 -3.117196 -1.542936 0.269239 -0.261773 1.439771 2.819753 3.616341 -4.950990 2.431332 2.014561 -0.230994 -3.327254 1.150299 -0.347314 -0.403127 -0.590852 -0.189701 1.201602 2.095347 3.880540 1.356365 0.987724 -0.798730 -2.111549 0.468070 4.863067 1.269044 1.994364 3.221546 -1.949918 1.315417 0.194068 0.553907 -2.464339 0.239265 0.665108 -0.352032 -0.822070 1.048254 -2.721407 -0.725721 2.617806 2.081541 -2.392574 -1.918836 -3.010632 -3.207349 -0.360821 -2.969400 4.143594 4.510911 -3.133406 3.283370 0.965871 2.321276 -0.385746 2.119826 -0.026052 3.514508 0.799995 -1.077646 0.499392 -3.718204 -3.200788 -0.221030 -0.098925 -1.157258 -2.041425 1.939842 -4.965635 -3.753281 2.053610 0.841318 -1.876630 -0.847898 0.828284 1.394516 0.844572 -1.164190 -2.342804 -1.576798 1.120429 -2.403660 0.680637 0.560894 1.662917 -1.406504 -0.101523 -3.116529 1.665955 1.633026 -0.647307 -0.534372 3.463887 -0.885405 2.307411 0.174262 0.541232 -0.376587 2.936656 1.611777 0.252935 0.366701 -0.553754 -1.547822 1.009178 1.014012 1.803626 -0.644232 -0.613449 0.841586 1.821991 -1.394536 1.083236 -1.398360 4.248023 0.477427 -2.483842 -4.012873 -2.111030 -2.584406 -2.862807 0.309267 -1.330544 -2.309825 1.533381 2.153834 3.333377 -0.395987 1.650184 -1.596485 0.991472 -0.070253 -0.476643 -0.017763 -0.221960 1.688918 -2.461879 -0.821590 0.714614 0.246478 2.049775 0.538634 -1.092200 0.515268 -2.787952 -2.690330 1.270485 1.753046 0.445012 2.264563 3.531035 2.756752 -2.473055 -1.374311 1.299170 -0.681150 -1.914381 1.186516 -2.423191 1.611386 0.175641 0.648110 3.329861 0.158510 -0.370386 1.724703 -0.239620 0.538852 -1.868965 -0.101143 -1.090847 0.498508 -1.195543 0.876407 -2.384918 -0.862422 -2.168938 -2.390916 4.393380 -3.243535 -3.724686 3.425044 -1.649506 3.765404 -3.817951 3.556294 -1.249369 2.482226 -0.007404 -0.809695 -0.238236 -0.899034 -1.155645 2.319078 0.040935 -0.699567 0.247184 2.489533 1.031743 1.122330 0.127793 2.440512 -1.698433 1.587491 -1.096085 1.864137 -0.930415 -1.075910 -0.955391 -0.286719 -0.171749 0.730603 0.451534 1.634614 0.675430 1.515652 1.787313 1.681253 0.988278 -1.845077 0.243056 -0.093417 2.595618 -2.532300 -2.303206 0.634115 1.745609 0.055629 0.143340 -4.312012 -3.633351 -3.931084 -3.631339 -2.366039 -1.372368 1.648385 0.233764 -0.941093 -2.141800 -2.025032 2.192684 0.556672 1.017892 2.350826 0.138451 3.496992 2.655624 -0.334226 -0.263655 0.788146 1.885477 -0.611698 -0.141436 -3.497220 1.494283 -4.250035 1.745415 4.268013 -1.193091 2.377275 -1.176700 4.051236 -4.529546 2.977032 1.511903 -4.287594 0.237132 3.952182 1.777590 0.133177 -2.555186 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isEulerianCycle() = -0.575446 -2.363603 3.978998 3.055627 -0.118136 0.933785 0.969498 -0.800097 0.861563 1.532901 -1.186023 2.065549 -2.140967 -0.221052 0.758048 0.896427 -2.677746 -2.088271 0.148679 -0.530395 -1.002155 -1.436375 -0.658901 2.425623 1.787947 1.334527 -1.361475 0.065337 -2.713657 -2.938319 -0.844937 -0.393158 1.635292 1.674623 1.928590 -3.185828 1.863657 2.293034 0.068199 -2.693312 0.668462 -1.113566 0.022822 -0.494434 -0.044389 1.691757 1.947302 1.231746 1.057141 0.943967 -0.082677 -1.318227 1.133473 1.997290 0.622594 1.833455 2.196927 -1.272421 0.634635 -0.614970 0.471046 -1.897702 1.198439 0.843617 -1.192059 -1.120598 0.256337 -0.862016 -1.133180 1.527276 1.378459 -1.121159 -1.902831 -1.594468 -1.487069 -0.576136 -0.613180 1.877242 3.319782 -1.597564 3.011532 1.365513 1.829132 -0.176905 1.723789 -0.162634 2.520820 0.580482 -1.466695 -0.136851 -2.406487 -2.197334 -0.341434 1.488180 -0.904301 0.219785 0.815263 -2.933933 -3.138765 1.256619 0.023742 -1.092817 -1.685253 0.895233 1.421911 1.111479 0.059120 -2.052053 -0.845462 0.729650 -1.735471 -0.630817 -0.508307 0.180284 -0.945307 0.422996 -2.872820 0.571001 1.313933 -1.177280 -0.578427 2.256383 -0.337932 1.908908 0.088667 0.514668 0.107623 1.885404 1.484041 0.625818 0.671206 -1.248263 -2.212658 0.643804 0.811458 0.117063 -1.493951 -0.610177 0.465376 0.962800 -0.470645 0.930237 -0.854530 3.529412 1.604024 -1.537937 -2.454405 -2.249167 -1.675773 -1.566017 0.716202 -1.260590 -0.919554 0.426009 1.672665 0.650161 0.236495 2.159999 -1.515880 1.374730 0.165908 -0.010255 0.580047 0.136826 1.396301 -1.828487 -0.945772 1.623219 1.543918 0.953501 0.150642 -0.664950 0.887384 -1.606386 -1.956762 1.726016 0.273119 0.846495 2.446270 1.840476 4.141485 -1.414126 -0.255905 0.568760 -0.090245 -0.837815 0.719381 -2.198116 1.600820 0.050710 0.661673 2.987291 0.018339 -1.268256 1.213304 0.217385 0.309714 -2.032039 1.274879 -1.290913 0.765927 -0.793506 -0.256799 -1.598075 -1.099989 -1.442101 -0.437124 3.336547 -1.053561 -3.112174 1.551398 -1.264181 2.126714 -3.731873 2.257420 -1.344891 1.401875 -0.818889 -1.162238 -0.000567 -0.551178 -0.548713 0.739578 0.923655 -0.669113 0.816562 1.550395 0.779162 0.511593 0.558979 1.240661 0.009348 1.033337 -0.619905 1.068998 -0.305775 0.244932 -0.907384 -0.558187 0.396155 1.140674 -0.698206 0.684918 1.555128 0.127865 1.091600 1.505623 0.778544 -1.308126 0.405075 -0.293035 2.358805 -1.838256 -1.508352 -0.481940 0.677791 -0.009188 0.949928 -3.322814 -2.331795 -1.204248 -2.981433 -1.743721 0.460138 1.411000 0.693613 -0.425098 -2.272479 -1.524701 2.424711 0.458269 2.405315 1.234227 0.251106 2.387425 1.464006 0.149193 -1.263841 -0.266970 0.509717 -0.656025 -0.223521 -1.765341 1.343442 -2.217283 1.786804 2.640149 -1.531489 1.147632 -1.210726 2.304632 -2.831381 2.978678 1.227892 -2.909109 0.501452 1.774780 1.816528 -1.675234 -1.916654 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -2.059574 -7.904444 14.135811 9.861403 -0.929662 2.764873 4.074579 -2.719055 3.495894 4.239388 -4.096471 6.852344 -7.932460 -0.592826 2.134058 2.528082 -9.969967 -7.400183 0.602152 -1.979447 -3.672990 -5.504215 -1.219377 8.474066 6.366737 4.919123 -4.506429 -0.579872 -9.055895 -9.056574 -1.793289 -1.552051 5.719430 5.352029 6.479422 -12.859399 6.132808 6.864574 0.072474 -9.533591 3.048989 -3.567634 0.292233 -1.381740 -0.519960 5.130073 7.217854 6.436895 4.044436 3.415253 -0.865513 -4.949856 3.544029 8.547635 1.678645 5.996109 7.787136 -4.378011 1.600950 -2.008088 1.194681 -7.114725 3.834423 3.351014 -4.340320 -3.505850 1.785167 -3.600945 -4.872178 5.726104 4.928764 -3.453770 -6.637166 -5.468931 -5.116645 -1.666018 -0.538124 7.387458 12.181895 -5.906417 10.273517 4.324984 6.380250 -0.787985 4.960434 -0.578492 8.162580 1.697742 -5.173173 -1.656720 -9.972189 -7.179444 -1.836296 3.720477 -2.203164 -1.151987 2.868105 -10.365396 -10.895059 3.908445 0.011175 -3.891341 -5.416098 3.022897 5.555744 4.102106 -0.066567 -7.439915 -3.503346 2.504033 -6.446212 -1.294951 -1.149153 0.756885 -3.520503 0.489387 -10.111392 1.934335 4.193869 -4.430247 -1.909481 7.799689 -2.118665 7.392250 1.246217 2.600369 0.554296 6.769210 6.059202 1.373575 3.369040 -4.628040 -5.792232 2.538911 2.350723 1.932491 -5.031295 -2.067622 1.311287 3.149148 -2.024097 2.176880 -2.857518 11.539302 5.127843 -6.010961 -8.915880 -7.289813 -5.502787 -6.236855 2.621825 -4.660894 -3.342653 1.721258 5.317567 2.741876 0.688180 7.682537 -5.731939 5.173691 0.865694 -0.237821 1.515773 1.090847 5.303417 -6.453637 -3.429497 4.611723 4.900602 3.045037 -0.147046 -2.664903 2.759271 -6.487555 -6.950379 5.094883 1.728662 3.146385 7.731911 6.444369 14.275955 -5.471955 -1.450059 2.441561 -0.492098 -3.363793 2.685722 -8.017575 5.796551 0.120749 2.401836 10.407645 0.261636 -4.682789 4.992575 0.884746 1.045725 -6.820459 3.720079 -4.624246 1.806015 -3.019188 -0.842655 -5.675433 -3.539635 -5.272406 -1.811067 11.539419 -3.999603 -11.178141 5.771830 -4.850327 8.214443 -13.650393 9.010236 -4.482735 5.008564 -2.520561 -3.697330 -0.449041 -2.569864 -1.594347 2.812764 2.504786 -1.516042 3.409082 6.110476 2.715660 2.303855 2.286377 4.808478 0.113299 3.755900 -2.001529 3.504347 -1.668445 -0.056892 -2.581567 -1.609611 1.444934 3.921323 -1.918584 2.962943 5.707493 0.455984 5.207304 5.556571 2.938401 -4.339238 1.525044 -1.371014 8.671029 -6.419867 -5.259539 -1.495886 2.778109 -0.537180 3.892284 -11.803086 -9.511815 -4.701980 -11.622085 -6.004492 0.123180 4.814199 1.874636 -1.278602 -8.316240 -4.883644 7.118498 1.930251 9.091573 4.872430 0.797641 8.717949 6.106980 -0.347674 -4.295811 0.316400 2.143797 -2.810635 -0.858673 -6.696189 3.959545 -7.811440 6.261408 9.577162 -5.165284 3.708752 -5.284718 7.673851 -10.325050 10.739012 4.556242 -10.060752 2.105305 5.253477 6.646232 -4.594197 -6.551462 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::size() const = -0.196079 -0.184826 0.760324 0.265882 -0.264421 -0.027373 0.395087 -0.192384 0.481676 -0.043093 -0.284893 -0.488965 -0.535913 -0.194232 -0.094076 -0.127103 -0.628121 -0.302775 -0.131788 -0.353885 0.064829 -0.463384 0.343546 0.018515 0.288132 0.267561 0.068081 -0.093479 -0.078861 -0.101583 0.602393 -0.140422 0.248488 0.476514 -0.020049 -0.813620 0.332695 0.169952 -0.148436 -0.223614 0.214669 0.009253 -0.062008 -0.000888 -0.206227 0.134738 0.131600 0.572050 0.298087 0.029509 0.072738 -0.595092 -0.049453 0.611007 -0.301946 0.044603 -0.026752 -0.175936 -0.015173 0.224315 -0.032945 -0.136572 -0.019344 0.403079 0.065026 -0.106700 0.400810 -0.448147 -0.571249 0.552706 -0.200998 -0.013250 -0.123525 -0.173954 -0.243073 0.057764 -0.213043 0.465061 0.609722 -0.219811 0.435855 0.098851 0.030124 -0.179856 -0.442439 0.079234 0.085938 -0.064529 -0.006524 -0.222727 -0.350527 -0.194139 -0.043882 -0.121474 0.057275 -0.279912 0.436743 -0.388134 -0.224813 -0.119100 0.187519 -0.250063 -0.033834 0.293393 -0.064780 0.142890 0.003112 -0.259624 -0.140572 0.118591 -0.227071 0.392362 0.039606 0.338901 -0.247120 -0.279916 -0.365018 0.035095 -0.340419 -0.206188 0.066759 0.273481 -0.302310 0.108492 0.383153 0.328906 -0.055108 0.475509 0.180192 0.147174 0.171340 0.058967 -0.053983 -0.308795 0.260454 0.647553 0.211872 -0.185423 -0.001096 0.042882 -0.384542 -0.246984 -0.053239 -0.128921 0.248883 -0.600941 -0.157065 -0.006076 -0.275972 -0.665204 -0.092129 -0.336356 -0.074989 0.418012 0.204663 0.637556 0.147831 0.874573 -0.668502 0.140334 -0.148798 -0.477795 -0.193618 0.243860 0.261754 -0.102854 -0.105406 -0.256289 -0.097196 0.344270 -0.089772 -0.273439 -0.152814 -0.599312 -0.069070 0.267281 0.123521 -0.076622 -0.098050 0.532937 -0.022491 -0.544422 0.087957 0.488642 -0.020870 -0.309217 0.448100 -0.519146 0.321348 0.014301 -0.113340 -0.023960 0.029873 0.154179 0.161983 -0.483866 -0.071900 -0.393528 -0.221451 -0.124130 0.139303 -0.458192 0.120676 -0.361721 -0.236538 0.000923 -0.068181 0.242175 -0.152290 -0.298748 0.503661 0.191653 0.253060 -0.293136 0.457159 -0.114767 0.455787 -0.089065 -0.043043 -0.151071 -0.130196 0.053082 -0.208624 -0.209325 0.123888 0.360925 0.582519 0.300573 -0.018446 0.028382 0.655493 -0.180136 0.327524 -0.224864 -0.094860 -0.086777 -0.393697 0.111827 -0.103747 -0.141903 -0.035416 0.183825 0.617009 0.491137 0.130621 0.683767 0.064065 0.320366 0.126830 0.069187 0.128905 0.491387 -0.085742 -0.126856 0.255945 0.390051 -0.469848 0.167491 -0.529811 -0.901792 -0.294400 -0.620666 -0.266074 -0.644848 0.207914 0.002233 0.130062 -0.309259 -0.228440 0.081675 0.006827 0.540053 0.006535 -0.084216 0.241237 0.537232 -0.371169 -0.026407 0.494987 0.530403 -0.118463 -0.074681 -0.481941 0.343640 -0.456741 -0.011353 0.609138 -0.392779 0.092951 -0.180014 0.413946 -0.713893 0.497277 0.207880 -0.208549 0.475850 0.010218 0.325869 0.602576 -0.125440 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::DFSUtil(int, bool*) = 0.063893 -2.030673 5.888093 4.134640 -1.682520 0.751688 0.704656 -2.302282 1.429321 -0.497971 -1.358797 1.802451 -2.834110 0.778607 -1.292493 1.200514 -5.238417 -2.091553 -1.069319 -2.140155 -1.552944 -1.308002 0.584142 2.240852 2.756282 3.397037 -2.003162 -0.250187 -2.761102 -2.385941 1.013908 -0.650852 2.084140 2.652490 1.363579 -6.222861 2.842302 2.825628 -1.004587 -2.638807 1.983247 -2.142654 -0.402403 -1.935942 -1.260801 0.930887 0.802800 2.338461 2.108953 0.455627 -0.553568 0.013796 1.392165 4.622752 -0.876272 2.049703 2.228238 -1.178251 -0.160886 -0.499984 0.362550 -0.768965 1.179280 0.754907 -0.993094 -3.052228 -0.001673 -2.178468 -1.491894 2.555348 0.892783 -0.734457 -2.409084 -1.746559 -3.162451 -0.785810 -1.337767 3.364705 4.141693 -2.852332 2.655097 0.536297 0.689031 -0.074067 1.531061 0.430221 3.079970 0.822320 -0.420988 -0.233267 -2.534641 -1.232944 0.660998 0.634207 -1.555648 -3.789283 1.745487 -5.688841 -3.896242 0.772966 1.404677 -2.170582 -0.728219 0.165758 0.936854 0.848921 -0.906299 -2.391522 0.011759 0.886609 -0.788324 -0.493119 -0.369937 0.498989 -0.627664 -0.413482 -4.243798 1.762187 0.309118 -0.560906 -0.020425 2.996701 0.298549 0.707116 0.187355 1.492782 -1.111232 3.400775 -0.092376 0.991944 -0.278333 0.833791 -0.023421 0.304347 1.736780 1.170135 -2.438039 -1.607455 -0.795159 1.022250 -1.931979 -0.231069 -1.071712 3.226857 1.683927 -2.388811 -2.696016 -1.918646 -2.691580 -4.103330 0.033340 -1.568057 -2.435580 1.163281 2.303224 1.969811 1.719796 2.583612 -1.481210 0.971186 0.326208 -0.684446 2.222650 0.298179 2.187237 -2.180357 -1.678457 1.777686 -0.125111 2.111565 -0.278065 0.341023 0.548523 -2.785619 -1.455927 2.148237 1.454479 0.531216 3.094364 3.190650 3.637877 -2.174910 0.599978 1.845228 -1.286340 -0.713510 1.220365 -2.760001 1.650951 0.884515 0.194783 3.734719 0.087166 -1.119783 1.265771 -0.022605 0.885722 -2.727234 0.530730 -1.513036 0.238963 -2.194351 0.500962 -1.597551 -1.379103 -2.146424 -2.281245 4.183159 -4.425811 -2.763125 3.405828 -0.342123 2.971178 -4.443488 2.636021 -2.047888 3.055291 -0.577928 -1.085231 0.522964 -1.597658 -2.632970 1.485303 0.973916 -1.023307 0.717670 2.521553 1.825429 0.821820 -0.332015 2.858638 -0.806875 2.974540 -1.524399 2.391891 -0.410399 -1.238411 -0.289765 -0.624798 -1.193445 -0.044452 1.132498 2.610770 1.618631 2.362040 2.055082 2.054593 2.888233 -1.691729 1.085009 -0.930764 1.750221 -1.963560 -2.063454 0.784776 1.956355 -0.292727 1.442234 -4.653022 -4.858219 -4.148806 -3.429337 -0.600704 -1.154227 1.491973 0.134190 -0.680427 -3.224877 -2.478246 2.915937 -0.447758 3.250865 2.100829 0.425907 2.713234 2.851060 -1.036892 -0.527882 0.734717 2.122428 0.437454 0.069845 -4.027601 3.177846 -2.417243 1.245380 4.779141 -2.508664 1.902339 -0.822114 3.712824 -3.371988 4.285934 0.996822 -3.755094 1.986156 2.972558 1.883555 0.870760 -2.213230 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::getTranspose() = -0.182703 -2.865046 8.634343 5.421925 -2.358846 0.658816 1.809080 -3.116611 2.457025 -0.314758 -1.931320 2.206247 -4.324752 0.914924 -0.947684 2.002618 -7.399611 -3.411834 -1.047265 -3.040837 -2.516271 -2.299840 1.210579 2.907112 3.979980 3.984452 -2.488379 -0.517595 -3.164391 -4.184361 1.371685 -1.157866 2.881440 3.243717 2.389933 -9.409076 4.339107 3.123120 -1.355686 -3.895262 2.767293 -2.231266 -0.398037 -2.015917 -1.537679 1.744669 2.198997 4.823521 3.197360 1.662278 -0.406515 -1.074417 1.598616 6.717957 -1.083427 2.744913 3.412740 -1.834337 -0.444501 -0.483856 0.305672 -2.099988 1.326186 1.521235 -1.510557 -3.564254 0.673503 -3.347695 -2.741728 3.751680 1.822287 -1.508863 -3.666262 -2.792261 -3.561477 -1.038890 -2.179342 4.749728 6.579563 -4.304336 4.044010 1.145203 1.692773 -0.265202 1.539699 0.272240 4.215070 0.970774 -1.291944 -0.677335 -4.012617 -2.701689 0.300392 0.466678 -1.426003 -5.442633 2.368077 -6.748153 -5.518625 1.369754 1.676613 -2.738667 -1.682678 0.529816 2.068606 1.424373 -1.322318 -3.731392 -0.717011 0.935503 -1.805641 0.032028 -0.258166 0.835820 -1.387112 -0.635208 -6.448328 2.066769 0.681205 -1.452615 -0.192613 4.009920 -0.445907 1.966245 0.953512 2.289653 -1.226442 5.222958 1.333577 1.202032 0.409827 0.343163 -0.658063 1.056378 2.279663 1.932268 -2.547708 -1.904099 -0.831080 1.460684 -2.968226 -0.106995 -1.463315 4.761081 2.849914 -3.536043 -4.706448 -2.499430 -3.648827 -5.577292 1.101164 -2.923096 -3.006087 1.620302 2.857641 2.686966 1.986121 4.253442 -2.909499 2.158677 -0.009846 -0.744734 2.248663 0.765031 3.544123 -3.152007 -2.060342 2.148373 0.399307 2.493490 -0.283834 -0.743909 1.196292 -4.738172 -2.675672 2.615026 1.903379 0.540758 3.539663 4.209055 6.151551 -2.743107 0.021104 2.807182 -1.389590 -1.504157 2.212276 -4.195948 2.535349 0.810608 0.594821 5.143311 0.353174 -1.887588 2.390058 -0.140086 0.943444 -3.628703 0.459964 -2.136773 0.455827 -2.806099 1.003965 -2.732795 -1.662116 -2.570388 -2.632637 5.883706 -5.052630 -4.637908 4.683358 -1.579678 4.823643 -6.636996 5.209893 -2.650032 3.764222 -1.075054 -1.378622 0.308705 -2.376821 -2.569691 2.163994 0.857060 -0.237389 1.139624 4.169465 2.262535 1.249523 0.254076 4.302098 -1.113412 3.993593 -1.521281 3.102652 -1.231901 -1.551418 -0.332445 -0.600155 -1.521662 0.152477 1.227457 3.597206 2.382306 2.286655 3.699461 2.684264 3.704259 -2.335446 1.656793 -1.023838 3.336789 -3.161887 -2.810007 1.094029 2.708110 -0.990631 2.208923 -6.593025 -6.938494 -5.410674 -5.837974 -1.876149 -1.229705 2.517041 -0.223652 -0.854715 -4.093280 -2.997703 4.658197 -0.044101 4.782363 3.290435 0.587115 4.339299 4.637829 -1.467058 -1.403688 1.217108 2.640129 0.016875 0.084697 -5.317321 3.621728 -3.973343 1.832042 6.523132 -3.269377 2.178363 -2.510998 5.553659 -5.241240 5.941881 1.594934 -4.925791 2.921653 4.076402 3.126461 1.115465 -2.989775 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::~Graph() = 0.369456 -0.630874 3.197063 2.088211 -0.894911 0.200454 -0.185612 -1.269283 1.177930 -0.059660 -1.148932 0.758122 -1.032930 0.065800 0.466613 0.830605 -3.040618 -1.113667 -0.282668 -0.984531 -0.509333 -0.835695 0.114463 1.019308 1.412593 1.574376 -0.974279 0.735863 -0.720847 -1.973891 -0.029020 -0.532307 0.789542 1.395387 1.514264 -1.952232 1.946267 0.884970 -0.295532 -1.548734 0.740612 -0.959530 0.010701 -1.016573 -0.190262 1.326258 0.905412 1.468146 1.400837 0.527655 -0.732888 -0.613314 0.340792 1.005475 -0.237343 0.752940 0.911866 -1.125077 -0.020760 -0.097118 0.104660 -0.841876 0.403671 0.568318 -0.743932 -1.554240 0.315139 -0.843420 -0.618746 1.628740 0.265788 -0.859367 -1.568500 -1.238715 -1.716200 -0.162187 -0.828826 2.239289 2.041073 -1.278816 1.090269 0.348339 0.857409 0.036262 0.751996 -0.065543 2.123270 0.323380 -0.633284 -0.144988 -1.397702 -2.255294 0.291386 -0.350987 -0.248203 -0.591743 0.250717 -3.744515 -1.833335 0.312159 0.800106 -0.901757 -0.858804 0.471310 1.241460 0.564791 0.527655 -1.026459 0.688695 0.385202 -1.040862 0.070410 -0.305207 0.119379 -0.545149 0.408770 -2.343580 0.833261 0.269389 -0.020567 0.245014 1.460066 -0.337566 0.196393 0.162178 0.653796 -0.278798 1.901131 0.070693 0.792160 0.197090 0.000520 -0.339838 1.162479 0.597681 -0.490026 -0.772191 -0.123022 -0.223527 0.466593 -1.667189 -0.131101 -1.117029 1.920715 0.728766 -1.261656 -1.736109 -0.899740 -2.141759 -1.723790 0.475963 -0.696413 -1.254691 0.811345 1.061267 1.408556 0.904905 1.107037 -1.294226 -0.091971 -0.157201 0.075748 1.182059 0.058307 1.234201 -1.179569 -0.112530 1.039978 0.025496 0.552039 0.084654 -0.362680 0.682315 -1.681029 -0.738186 1.709351 0.757902 1.171228 1.329154 1.533264 0.864348 -0.584786 -0.038988 1.157088 -0.154489 -0.804637 0.767624 -1.186625 1.221266 0.329496 1.506732 1.639623 0.006634 -0.191456 0.142561 0.288592 0.525713 -1.122207 -0.353221 -0.653570 0.785406 -0.491254 0.112522 -1.162306 -0.723616 -0.896869 -0.986977 1.981920 -0.989194 -1.996903 2.226053 -1.519494 2.329896 -1.938192 0.724439 -1.086475 1.605728 -0.131627 -0.055556 0.010360 -1.757873 -1.159964 0.739699 0.342931 0.214966 0.266490 0.665233 1.002573 0.367008 0.012922 1.220694 -0.498932 1.710502 -0.275404 0.745156 -0.612762 0.448583 -0.207133 -0.072707 -0.659257 0.306086 0.201786 0.940494 0.580745 1.156284 1.393506 0.866918 1.110823 -0.909290 0.678967 -0.635134 0.706941 -1.098242 -1.372001 0.587046 0.722189 -0.215339 0.286021 -2.400040 -2.202903 -2.415055 -1.880195 -0.971455 -0.978268 0.849575 0.066239 -0.358041 -1.003785 -0.955779 1.651714 0.516575 1.547201 0.558219 -0.241885 1.253371 1.520812 -0.478944 -0.665528 -0.007704 0.552810 -0.047205 0.001624 -2.332432 1.841164 -1.422976 0.525983 2.641325 -1.628071 0.619098 -0.715295 1.255582 -1.935651 1.447130 0.548268 -1.818123 0.621350 1.251659 0.451212 0.275975 -1.305549 -PE-benchmarks/euler-circuit-directed-graph.cpp__main = 0.185985 -0.129597 2.804242 0.917709 -0.293242 -0.840885 1.498609 0.225257 0.851475 -0.397707 -0.706761 -1.224583 -1.519699 -0.209660 0.462442 0.266129 -2.784297 -1.756111 -0.221892 0.022172 -1.126993 -1.267277 1.858099 -0.081321 1.462595 2.612853 -1.420035 -0.852447 0.908374 -0.894771 2.036989 -0.778861 0.989536 3.354587 -0.109383 -3.757909 2.045729 -0.584956 -0.358368 1.069387 1.139147 0.558477 0.138430 -1.235385 -0.534731 1.026946 1.600432 3.532018 1.519112 0.972310 -0.093987 -2.606487 0.050778 1.952588 -0.314553 -0.180908 0.961688 -0.173677 0.024251 -0.269977 -0.194036 -1.463057 -0.247049 1.364152 -0.481062 0.770879 1.645329 -2.798603 -1.484263 2.158256 0.109995 0.658015 -1.129190 -0.617983 -0.202639 0.559557 0.440638 1.988868 1.995631 -1.849611 1.011334 0.406050 1.651889 0.259670 -2.769220 0.331638 -0.821710 0.016608 -0.494366 -1.320813 -3.132318 -1.962382 -1.183524 -1.690938 0.270843 -2.008824 0.335155 -1.598672 -1.032240 -0.526046 0.003912 -0.321806 -0.185032 0.941294 1.293960 -0.414015 0.949040 -0.523054 -0.347437 -0.615990 -1.895707 2.066485 0.348595 0.715445 -1.310564 -0.229602 -2.512913 1.121733 -1.094312 -0.858975 0.872552 1.056003 -1.452943 1.032949 1.156864 0.722732 -0.546390 2.247373 1.878325 -0.202276 1.444099 0.212775 0.916933 -0.495917 1.235645 2.738057 -0.379925 -1.700166 -0.591240 -0.002538 -2.000833 -1.336520 -0.049927 -0.138800 1.070921 -2.611811 -2.741295 -0.446962 -1.895419 -2.961540 0.976299 -0.940210 0.239019 1.574702 0.574967 1.920826 0.855476 2.612783 -2.591905 0.691350 -0.573769 -0.664284 -1.182969 1.549254 1.127652 -0.848043 -0.110883 0.377708 -0.148043 0.238479 -0.315500 -1.640226 0.672857 -2.576013 -0.868952 0.494433 -0.393505 0.097503 -1.465289 1.062812 0.237767 -1.313365 -0.388386 2.096353 0.285545 -1.437892 2.403168 -1.127006 1.881566 -0.565159 -0.362091 0.343008 0.654856 -0.590939 1.453758 -0.659136 -0.523346 -1.016574 -1.037630 0.343233 0.051808 -1.281633 0.596692 -1.327929 0.204132 0.434434 -1.182372 1.134474 0.405455 -1.149270 0.989042 0.171767 1.486319 -0.891370 2.122535 -0.512791 0.844490 0.524126 -1.193164 -0.067862 -2.174755 0.993552 -0.297084 -1.234704 1.373095 0.365571 1.642007 1.025560 0.670174 0.413735 1.333050 0.603124 1.898951 0.593343 -1.187274 -1.101671 -1.300308 0.501371 0.187522 -0.570958 0.202152 -0.363292 2.061907 1.622625 0.931507 3.083657 0.323137 1.662952 -0.681392 -1.331567 0.289736 2.064505 -1.060686 -1.212991 0.698963 0.988817 -1.640929 0.519448 -1.560698 -3.069539 -1.451902 -3.314983 -1.816856 -1.489610 0.744499 -1.050065 -0.108930 -0.445230 0.044676 0.196943 0.479310 1.560665 1.051356 -1.042456 1.757543 2.168107 -2.373036 -1.449772 2.669178 1.336921 -0.074042 1.173647 -3.639085 1.493267 -0.862825 0.008732 2.167726 -2.496760 0.055520 -1.792635 2.354256 -2.012984 2.422205 0.166937 -1.340810 0.858204 -1.081104 1.045521 1.872777 -0.685527 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::addEdge(int, int) = -0.260066 -1.019693 2.379560 1.767905 -0.454694 0.338222 0.577531 -0.747585 0.417332 0.488465 -0.351426 0.853719 -1.181247 0.233869 -0.205667 0.816330 -1.698430 -0.811121 -0.357757 -0.900658 -0.601260 -0.393629 0.179840 0.836711 1.221377 0.319466 -0.767970 -0.495866 -1.094293 -1.074212 0.027599 -0.273057 0.920805 0.135724 0.375780 -2.894739 1.165001 1.204866 -0.457167 -1.070352 0.845648 -0.672655 0.070085 -0.436356 -0.919215 0.213313 0.504575 0.410585 0.788064 0.525264 0.327097 0.029654 1.025787 2.627109 -0.245898 0.987776 0.942037 -0.518149 -0.133777 -0.146796 0.197161 -0.441427 0.510778 0.041204 -0.041994 -1.178949 -0.324651 -0.703061 -0.645299 0.663188 0.203342 -0.511234 -0.941478 -0.668810 -1.049399 -0.585086 -0.971747 1.154069 1.650903 -1.405688 1.243900 0.360259 0.122493 0.151049 0.591383 0.260994 0.877765 0.325116 -0.119284 0.133126 -0.203637 -0.256996 0.397563 0.424837 -0.746785 -1.790110 0.889698 -1.255416 -1.656846 0.735746 0.528870 -0.833839 -0.340055 -0.356057 0.089619 0.523858 -0.800013 -1.103427 -0.394949 0.320679 0.101143 -0.362233 -0.257765 -0.092937 -0.176106 -0.201409 -1.680365 0.666080 0.229518 -0.405445 -0.351681 1.202076 0.049142 0.511973 0.047258 0.698267 -0.504094 1.482239 0.200825 0.681864 -0.353595 0.257850 -0.771042 -0.026542 0.778687 0.305845 -0.682272 -0.350737 -0.381371 0.441099 -0.454598 0.572948 0.151374 1.623697 0.854824 -0.611496 -1.067874 -0.801423 -0.986252 -1.532057 0.216780 -0.708671 -0.739936 0.785753 0.899353 0.481841 0.572798 1.179486 -0.404307 0.549215 -0.035663 -0.510629 0.856367 -0.264815 0.888594 -0.868715 -0.701423 0.651841 0.454171 0.921946 0.035551 0.217669 0.334770 -0.972105 -0.359153 0.402538 0.527078 -0.225580 1.225027 1.173717 2.394785 -0.602789 0.102017 0.594874 -0.542957 -0.124346 0.281928 -1.211152 0.364806 0.351276 -0.537327 1.433742 0.082624 -0.612873 0.733613 -0.397450 0.266717 -0.998877 0.562537 -0.615284 0.030115 -0.719062 -0.030794 -0.653130 -0.511856 -0.768100 -0.628746 1.774534 -1.969593 -0.769404 0.983883 0.102462 0.650481 -1.720532 2.492751 -0.810005 1.239847 -0.479733 -0.752807 0.176896 0.170147 -0.810842 0.601288 0.437260 -0.425748 0.134854 1.318334 0.636196 0.225962 -0.114306 1.237379 -0.317013 1.157058 -0.506851 1.152772 -0.188301 -0.489292 -0.255460 -0.231774 -0.353373 -0.005858 0.387948 0.808105 0.495934 0.427415 0.421166 0.904343 1.141366 -0.686298 0.645824 -0.333306 1.098202 -0.858141 -0.654923 0.245616 0.887430 0.046098 0.578391 -1.880777 -1.453115 -1.659563 -0.873648 -0.236364 0.311572 0.516812 -0.083345 -0.297677 -1.322829 -1.124615 1.406002 -0.418445 0.569375 0.943942 0.376077 1.259052 1.032008 0.079004 -0.282341 -0.064636 0.580607 0.312903 -0.001089 -1.088262 1.042575 -1.297762 0.462739 1.529780 -0.621188 0.748104 0.141994 0.993388 -1.333436 1.671953 0.322169 -1.227679 0.996885 1.763067 0.734328 -0.344143 -0.831679 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::~list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::~_List_base() = -0.087369 -0.264129 0.720739 0.506486 -0.290167 0.036215 0.083844 -0.255226 0.415269 -0.233830 -0.209404 0.050405 -0.487764 0.177861 -0.095168 0.250215 -0.831142 -0.358684 -0.028582 -0.205048 -0.110101 -0.310905 0.314693 0.105864 0.283834 0.563179 -0.220680 -0.026608 -0.228924 -0.097634 0.471586 -0.287258 0.333465 0.573848 0.028127 -1.078061 0.400389 0.149323 -0.226089 -0.410346 0.256229 -0.397379 0.165537 -0.518978 -0.238330 0.117931 0.126173 0.390881 0.379684 0.035850 -0.153474 -0.124188 0.056916 0.632815 -0.368864 0.167170 0.180146 -0.142071 -0.168368 -0.121495 0.101134 -0.008261 0.252680 0.336852 -0.261200 -0.418790 -0.110754 -0.515956 -0.493519 0.394754 -0.095246 0.267724 -0.473960 -0.092140 -0.378067 -0.117199 -0.384639 0.574605 0.701951 -0.473078 0.370855 0.021808 0.175709 -0.002613 0.102660 0.187016 0.322859 0.112391 -0.175199 -0.001329 -0.264462 -0.173574 0.125227 -0.169984 0.026560 -0.587543 0.149171 -0.586544 -0.421731 0.062918 0.170647 -0.047975 -0.134680 0.009155 0.202864 0.313520 -0.277746 -0.418561 0.095927 -0.034018 0.013195 -0.009261 0.013785 0.120365 -0.220824 -0.390731 -0.608164 0.002722 -0.095144 -0.253650 0.199433 0.389611 -0.192768 0.024384 0.055520 0.125725 -0.209208 0.763493 -0.001464 0.143866 0.049620 0.034866 0.023241 0.025417 0.297478 0.600311 -0.211494 -0.173392 -0.194740 0.027889 -0.412791 -0.420277 0.060825 0.143442 0.323129 -0.352620 -0.342412 -0.176404 -0.337070 -0.836024 0.083067 -0.359683 0.030767 0.514163 0.374811 0.352575 0.448160 0.673392 -0.424270 0.151133 -0.141249 -0.128790 0.414559 0.387903 0.377714 -0.217599 -0.200888 0.218595 -0.084103 0.215323 0.069448 -0.128691 0.053393 -0.505298 -0.102949 0.357612 0.359800 0.042829 0.275641 0.254570 0.023045 -0.271317 0.136173 0.397451 0.020487 -0.062367 0.180222 -0.437818 0.397627 0.072140 -0.083058 0.115814 -0.018409 -0.237739 0.088075 -0.106472 0.175417 -0.359628 -0.126404 -0.191448 0.029704 -0.466279 0.217347 -0.182508 -0.312097 -0.152986 -0.140193 0.523684 -0.447271 -0.196245 0.422573 -0.021583 0.566644 -0.507986 0.382044 -0.357781 0.634301 -0.133943 -0.106347 0.052853 -0.309691 -0.201574 -0.037956 0.173569 0.076973 -0.007109 0.350011 0.370840 0.041845 0.087062 0.497542 0.055681 0.401098 -0.045788 0.255275 -0.102987 -0.091023 0.269290 -0.141800 -0.078010 -0.028663 0.207704 0.723156 0.377955 0.411256 0.647129 0.180922 0.446142 -0.258530 0.050552 -0.131369 0.406846 -0.184407 -0.148695 0.035183 0.433478 -0.191301 0.185466 -0.552823 -0.960520 -0.592095 -0.383444 -0.160744 -0.200560 0.123164 -0.049805 0.130453 -0.384156 -0.167104 0.213301 -0.218814 0.627233 0.141572 0.017712 0.364052 0.512752 -0.386154 -0.313600 0.300565 0.314106 0.006739 0.250304 -0.711882 0.426152 -0.483658 0.050647 0.650625 -0.415496 -0.025836 -0.111003 0.683758 -0.337488 0.672710 0.231753 -0.375306 0.496418 0.314506 0.291343 0.508180 -0.285164 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_clear() = 0.314976 -1.009866 6.433739 4.116286 -1.253148 0.271435 1.041284 -3.510137 3.024757 0.433138 -0.920414 0.587916 -2.426897 0.962857 -1.679285 2.579918 -4.976360 -2.014612 -1.485951 -3.542625 -1.241114 -1.304323 2.228830 -0.108017 3.193892 1.227423 -1.990359 -0.843196 -1.923645 -3.765936 2.034238 -1.104926 1.775061 -0.157011 0.079573 -6.791729 4.145084 2.433561 -1.858920 -2.421935 2.583533 -1.649935 -0.533060 -1.134346 -1.041396 0.721601 -0.102083 2.074088 3.038259 1.493527 0.953822 1.087061 1.261492 5.780107 -2.701263 1.729684 0.880862 -0.991259 -1.289119 1.050630 0.319305 0.348818 0.946050 0.907841 0.193191 -3.963085 -0.006159 -1.836945 -2.512739 2.921795 -0.451378 -1.581270 -2.116792 -0.995612 -2.719645 -0.638209 -2.166035 3.229126 3.906469 -2.666926 1.932277 -0.157750 -0.278434 -0.166782 0.125700 0.470517 2.443087 0.732048 0.212946 -1.383551 -1.294568 -0.885249 1.203575 -0.190032 -1.249385 -4.885794 2.494618 -4.100733 -3.336105 0.466022 2.657732 -2.096548 -1.625435 -0.412254 0.730415 1.061355 -1.049300 -2.344143 -0.013980 0.890691 -0.000794 -0.247109 -0.283401 -1.156134 -0.831451 -0.347030 -4.204649 1.609215 -0.752539 -0.198545 -1.227669 2.496780 -0.372527 -0.885345 0.370512 2.551016 -1.746206 3.113164 -1.204738 2.635302 0.087616 2.052988 -1.213363 0.438192 2.283996 0.937787 -1.047997 -0.409674 -2.297992 0.806878 -3.211403 0.232583 -1.258053 2.276180 2.507711 -2.379823 -2.421540 -0.469985 -1.632208 -4.415803 0.483030 -1.941482 -2.360296 1.052395 2.333944 2.298256 2.750461 3.297481 -2.514851 0.772758 -0.184500 -1.047663 2.999113 -0.491757 2.455632 -1.798825 -1.581927 0.858558 0.063531 1.611133 -0.502944 0.563943 0.488226 -3.653748 -0.473770 1.394362 1.395350 -0.398708 1.813360 3.193563 3.566004 -2.645048 0.612056 3.009676 -1.663199 -0.529747 1.107361 -3.164335 0.978942 1.267084 0.730094 3.336296 0.234584 -1.008703 0.848828 -0.876103 0.774369 -2.093351 -0.153912 -1.573448 -0.167840 -1.649550 -0.032642 -1.638907 -1.214702 -1.536503 -2.257686 3.576314 -3.520138 -2.727509 4.505534 -1.302983 1.625421 -4.199273 4.213232 -2.195356 2.095280 -0.829292 0.073499 -0.195986 -0.344909 -3.558750 1.305240 0.624582 -0.549263 1.717203 4.347034 2.158835 0.614173 -1.217734 3.704517 -1.721599 3.901543 -1.536507 3.231686 -1.169975 -1.776064 -0.103557 -0.514857 -1.965143 -1.554979 1.587506 2.860488 1.142195 1.878076 2.366469 1.704726 4.210730 -1.534021 3.099168 -0.631990 1.234322 -1.149829 -1.544315 2.335937 1.661172 -1.080880 1.898718 -4.532640 -4.707131 -4.162576 -3.746429 0.565267 -1.625898 1.316948 -1.232980 -0.603907 -3.283312 -2.658835 2.742919 -0.500830 2.225471 2.171799 0.474530 1.952805 3.469713 -1.733781 0.358506 -0.201362 1.599780 0.951215 -1.471935 -3.205776 3.766495 -2.305541 0.104507 4.595943 -2.127376 1.443145 -0.652523 2.099068 -3.094579 3.725389 0.571198 -1.525327 3.255283 2.679807 2.800808 1.311466 -1.761242 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/euler-circuit-directed-graph.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.040231 -0.673241 2.411878 1.656984 -0.130947 0.130664 0.847906 -1.118135 1.218191 0.431324 -0.341670 0.477467 -1.292556 0.517644 -0.884499 1.209028 -1.651670 -1.075115 -0.324330 -1.115676 -0.416815 -0.611430 1.081269 -0.123855 1.385662 0.252143 -0.826041 -0.824674 -1.373211 -1.354513 0.762171 -0.566979 0.794704 -0.220951 -0.293152 -2.511586 1.423483 1.075661 -0.774116 -1.146039 1.193895 -0.903496 0.019615 -0.526401 -0.033054 0.241917 0.200628 0.796348 1.234719 0.734814 0.584654 0.417532 0.521841 2.360729 -1.289431 0.820792 0.475098 -0.197233 -0.561247 0.306350 0.202544 0.025059 0.567042 0.454038 -0.171050 -1.483541 -0.362975 -0.797955 -1.152704 0.951678 -0.201667 -0.183472 -1.095299 -0.117303 -0.908448 -0.307962 -1.200583 1.090675 1.762417 -1.130942 1.065204 0.006657 0.094688 -0.200433 0.114908 0.292958 0.591023 0.311870 -0.103948 -0.702987 -0.769451 0.019243 0.259612 0.150659 -0.399706 -1.911259 1.043508 -1.014219 -1.503466 0.197548 0.814216 -0.658187 -0.558193 0.154997 0.219415 0.755931 -0.732669 -1.216125 -0.156657 0.143622 0.210981 -0.300790 0.022876 -0.765356 -0.522036 -0.511781 -1.675964 0.360194 -0.256758 -0.525890 -0.652677 0.998962 -0.274289 -0.028449 0.128320 0.933054 -0.626466 1.287799 -0.206812 1.006424 0.329576 0.558273 -1.075247 0.158624 1.056732 0.951537 -0.689054 0.193271 -0.998322 0.218037 -1.040240 -0.085196 -0.242765 0.995592 1.111355 -1.134159 -0.987455 -0.257133 -0.166961 -1.622261 0.386686 -0.833978 -0.449746 0.084541 1.014696 0.576020 1.170242 1.851683 -0.991026 0.467130 0.056166 -0.415625 1.317927 0.002471 1.074599 -0.762640 -0.824975 0.412030 0.372489 0.414807 -0.201887 0.397666 0.245603 -1.555046 -0.117267 0.327016 0.526075 -0.477988 0.937528 0.998143 1.266052 -1.124860 0.243649 1.132171 -0.555729 -0.058891 0.325070 -1.492634 0.645752 0.416382 0.103868 1.171970 0.172111 -0.763604 0.631119 -0.435816 0.360253 -0.895938 0.136128 -0.783975 -0.392828 -0.759966 0.129662 -0.416994 -0.665139 -0.473124 -0.540791 1.528026 -0.914172 -0.906760 1.246382 -0.335863 0.415045 -1.890205 2.103200 -1.007255 0.637587 -0.407510 0.016955 -0.003268 0.426291 -1.214640 0.202319 0.444411 -0.270371 0.893714 1.824248 0.855106 0.192670 -0.245565 1.466851 -0.430111 1.323200 -0.421655 1.273118 -0.396751 -0.821072 0.193945 -0.276495 -0.483044 -0.483341 0.452848 1.504067 0.644754 0.537465 1.102754 0.680434 1.812839 -0.735075 1.184431 -0.288126 0.973560 -0.445630 -0.494545 0.591419 0.530522 -0.371400 0.982844 -1.801526 -2.051780 -0.950890 -1.633008 0.424977 -0.494261 0.490670 -0.495802 -0.067393 -1.653130 -1.028233 0.651749 -0.389401 0.951589 0.901773 0.262429 0.851002 1.255381 -0.785541 0.000811 -0.094160 0.689669 0.322646 -0.606009 -0.974487 1.151003 -1.159005 0.114675 1.605384 -0.780056 0.345050 -0.305676 1.066724 -1.117683 1.803431 0.351752 -0.561999 1.566130 1.135331 1.601629 0.316544 -0.721784 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.202365 -1.180928 5.990142 3.793016 -1.015916 0.342388 1.570648 -3.244632 2.726558 -1.066534 -0.535351 0.887787 -3.000123 1.260208 -3.155669 1.820767 -4.744092 -2.569097 -1.627844 -3.444710 -0.975710 -1.141066 2.550426 0.244701 3.141624 0.626198 -2.302483 -1.636441 -3.900704 -1.509665 2.846586 -0.997544 1.951272 -0.798350 -0.840724 -7.468689 3.428346 2.711129 -2.090462 -2.408468 3.267882 -2.916935 -0.296814 -2.221403 -1.405964 -0.288662 -0.497136 1.508020 2.988855 0.632164 0.546687 2.132478 0.121778 6.793230 -3.662334 1.869436 1.043228 -0.330417 -1.679719 0.920907 0.154166 0.766589 1.286811 0.638857 -0.753382 -4.108424 -0.452832 -2.407868 -2.593852 2.545053 -0.419050 -0.537321 -1.953724 -0.074939 -3.899067 -0.934220 -0.071678 3.059829 3.711732 -3.140415 1.975696 -0.871643 -0.272435 -0.015169 0.537151 0.953417 1.932647 0.603109 0.556999 -1.936249 -2.993024 1.038043 0.759907 -0.107309 -1.236202 -5.686986 2.735216 -4.241737 -3.654043 -0.024299 2.367557 -2.248366 -1.398326 -0.192875 0.293035 1.454338 -1.805239 -2.672919 -0.187247 1.285944 0.632221 -0.508945 0.342811 -1.565210 -0.674811 -2.488035 -4.195059 1.815055 -0.756709 -0.291417 -1.533061 2.915721 -1.429687 -0.943336 0.359901 2.513826 -2.306181 3.242361 -1.745202 1.715834 0.107164 1.373692 -1.355747 -0.718332 2.193719 3.553845 -2.061363 -0.160195 -2.717770 0.564341 -2.996096 -0.934170 -0.617154 1.833922 1.340762 -2.924506 -1.988551 -0.480125 -0.774849 -4.799780 -0.082747 -1.747470 -2.190211 1.382901 2.468819 2.663474 3.062440 4.527769 -1.525297 1.252213 0.429100 -1.702530 3.656227 -0.816559 2.587251 -1.862846 -2.359320 0.932299 -0.771446 1.956670 -0.812634 1.626284 0.128629 -4.021937 -0.746862 0.272180 1.834947 -0.434319 2.475985 3.229370 1.387257 -3.947053 1.126253 2.866408 -2.156690 0.002695 0.597007 -3.121209 0.773604 1.717430 -0.617775 3.458226 0.304867 -2.014246 0.998752 -0.688484 1.364932 -2.343692 -0.219174 -1.733053 -0.963292 -2.386952 -0.345151 -1.059687 -1.632113 -2.071826 -3.216078 3.765126 -4.011535 -2.960985 3.892359 0.113329 1.883334 -5.263243 3.718053 -2.423103 3.052849 -0.413824 0.542273 0.044711 0.488846 -4.115115 1.416311 0.839122 -1.502560 2.062398 4.615328 2.398208 1.028884 -1.288962 3.872757 -1.367717 3.807691 -1.848737 3.403812 -1.140960 -3.220712 0.924091 -0.665401 -1.714917 -1.438170 2.330398 3.826155 1.643165 2.850200 2.812381 2.495524 4.801540 -1.575214 2.357902 -1.078125 1.361901 -0.717587 -1.405219 1.925985 1.887542 -0.516929 1.921640 -4.599717 -6.087290 -4.005154 -4.702077 2.430345 -2.523468 0.535633 -1.118393 -0.361199 -4.658100 -2.559469 0.796406 -1.296888 3.900828 2.495538 0.746848 2.041109 3.551650 -2.887533 0.620971 1.161544 2.531550 1.028828 -1.326142 -3.835851 3.681401 -2.522894 0.251899 4.793741 -1.953809 1.587893 -0.279471 2.260183 -2.669626 4.663229 0.623456 -2.111423 3.797487 2.665933 2.920506 2.326849 -1.722926 -PE-benchmarks/euler-circuit-directed-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::_M_node_count() const = -0.107561 -0.237467 0.616732 0.397810 -0.060010 0.081116 0.166804 -0.240074 0.340148 -0.031953 -0.148730 0.084356 -0.400849 0.088982 -0.328332 0.153879 -0.420487 -0.335677 -0.105494 -0.276213 -0.109836 -0.210198 0.153453 0.058934 0.292043 0.133840 -0.185396 -0.080176 -0.522480 -0.161037 0.193757 -0.107590 0.155174 0.005602 0.021535 -0.512750 0.297393 0.346115 -0.177620 -0.354949 0.256960 -0.347269 0.070001 -0.202127 0.026430 0.071102 0.069400 0.184026 0.270879 0.079839 0.093345 0.035032 -0.007586 0.608779 -0.303848 0.248002 0.193286 0.003201 -0.086739 0.073532 0.031556 -0.025032 0.107695 0.102257 -0.169529 -0.322189 -0.102474 -0.260368 -0.218575 0.254859 -0.109809 -0.054403 -0.294218 -0.149092 -0.407618 -0.123588 -0.518796 0.298240 0.476981 -0.399410 0.304527 0.042351 0.144540 0.039766 0.140104 0.082276 0.221241 0.067213 -0.063775 -0.066587 -0.277243 0.083610 0.016585 -0.025489 -0.153400 -0.444534 0.306116 -0.503502 -0.439601 0.065551 0.137354 -0.154272 -0.050027 0.161348 0.002108 0.192234 -0.223736 -0.336748 0.009665 0.126501 0.101278 -0.020866 0.090564 -0.115403 -0.092285 -0.267130 -0.467600 0.133321 -0.014219 -0.140895 -0.100064 0.381647 -0.123652 0.034093 0.052695 0.159826 -0.162052 0.497691 -0.015787 0.153006 -0.116930 0.083487 -0.426349 0.060688 0.225534 0.307662 -0.265226 0.143370 -0.124270 0.017014 -0.261316 -0.120750 -0.159832 0.182943 0.156079 -0.368903 -0.239656 -0.153097 -0.192931 -0.473399 0.029754 -0.183447 -0.165975 0.069417 0.280815 0.420427 0.264942 0.626693 -0.226022 0.020641 0.003724 -0.198799 0.278847 0.031295 0.287087 -0.219815 -0.242321 0.140617 0.030548 0.135658 0.043984 0.072257 0.029524 -0.435025 0.044555 0.171430 0.210058 -0.064789 0.391200 0.341161 -0.036911 -0.377219 0.086214 0.243427 -0.146932 -0.012917 0.062798 -0.366614 0.210352 0.140924 0.011953 0.246766 0.033682 -0.086365 0.143080 -0.154392 0.183149 -0.305776 -0.025394 -0.216970 -0.132663 -0.289019 0.160566 -0.145230 -0.195298 -0.142921 -0.267340 0.414744 -0.292762 -0.191211 0.293608 0.111346 0.225700 -0.405541 0.328495 -0.264567 0.452502 -0.009747 0.071720 0.007615 0.073922 -0.215385 0.021519 0.120441 -0.125784 0.171522 0.367170 0.233893 0.061013 0.008557 0.415033 -0.163897 0.294137 -0.145570 0.252949 -0.075779 -0.268537 0.175038 -0.105300 -0.099400 -0.038297 0.148957 0.506275 0.245429 0.225604 0.314244 0.209946 0.407893 -0.170525 0.144601 -0.092150 0.277682 -0.183318 -0.157591 0.081292 0.198033 -0.049949 0.073937 -0.498050 -0.630658 -0.357582 -0.414415 0.145212 -0.289629 0.004022 -0.032386 -0.007237 -0.416723 -0.296732 0.206749 -0.161685 0.384611 0.133035 0.071430 0.287154 0.377032 -0.255711 -0.016798 0.155237 0.219390 0.031228 -0.048681 -0.358374 0.340376 -0.353191 0.020280 0.471734 -0.248316 0.143042 0.106003 0.261803 -0.332342 0.503165 0.132307 -0.274004 0.392176 0.394879 0.454789 0.188128 -0.216507 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_size() const = 0.019709 -0.284975 1.090229 0.830628 -0.360563 0.033376 -0.036436 -0.415938 0.309767 0.186105 -0.173089 0.303465 -0.291827 0.199135 0.107024 0.626878 -0.870390 -0.177208 -0.169907 -0.427368 -0.277210 -0.073993 0.215708 0.047906 0.510874 0.583765 -0.329562 -0.063180 0.059231 -0.862181 0.082271 -0.197221 0.385829 0.290219 0.187512 -1.340809 0.650317 0.397032 -0.276390 -0.527019 0.333251 -0.107973 0.059316 -0.203336 -0.357998 0.269135 0.118941 0.152667 0.354160 0.401080 0.038756 0.093501 0.618766 0.827732 -0.054503 0.268966 0.331035 -0.296920 -0.190725 -0.153306 0.166271 -0.034222 0.169394 0.020013 0.151680 -0.681583 -0.266849 -0.317408 -0.365284 0.305374 -0.115022 -0.278603 -0.456396 -0.431259 -0.256313 -0.174338 -0.888114 0.604981 0.638555 -0.581362 0.318909 0.076966 -0.101978 0.087718 0.089938 0.136558 0.280245 0.243139 0.048030 0.182139 0.461122 -0.457009 0.379149 -0.006267 -0.309412 -0.831715 0.375861 -0.509007 -0.480980 0.342908 0.435952 -0.240883 -0.253934 -0.359496 0.054250 0.331367 -0.289685 -0.287963 0.035789 -0.024200 0.231873 -0.137911 -0.249949 0.089548 -0.173497 0.180025 -0.746203 0.315126 0.020960 -0.052776 0.073123 0.337802 0.218619 -0.044810 -0.089016 0.307497 -0.296492 0.839206 -0.010034 0.490805 -0.186926 0.431517 -0.036816 0.209221 0.411267 -0.133347 -0.207654 -0.269150 -0.306841 0.125136 -0.345117 0.140031 -0.046683 0.488666 0.807515 -0.079703 -0.510101 -0.260989 -0.616377 -0.824755 0.126278 -0.353462 -0.107446 0.586177 0.359336 0.154684 0.400499 0.396305 -0.448494 -0.035866 -0.171851 -0.144730 0.445421 0.232385 0.351942 -0.284037 -0.153860 0.317274 0.145295 0.315832 0.141644 0.011834 0.234316 -0.354720 0.017418 0.559983 0.323018 -0.091434 0.288384 0.429441 0.974932 0.145396 -0.123582 0.335504 -0.218877 -0.096956 0.186270 -0.449483 0.159823 0.098241 0.064725 0.460152 -0.000541 -0.041768 0.215321 -0.187122 0.033135 -0.252421 0.157915 -0.235717 0.127421 -0.226629 0.040017 -0.293326 -0.116329 -0.228158 -0.205524 0.688366 -0.746065 -0.133389 0.522921 -0.259153 0.269457 -0.488486 0.884242 -0.346101 0.459957 -0.232101 -0.254077 0.065658 -0.347125 -0.403682 0.098707 0.200913 0.090325 -0.217237 0.551957 0.305224 -0.172083 -0.139990 0.519069 -0.214339 0.714953 -0.093429 0.543456 -0.180343 0.128804 -0.079296 -0.028225 -0.337339 -0.249091 0.101752 0.411542 -0.024911 0.269066 0.222408 0.150758 0.583455 -0.368203 0.494819 -0.064445 0.372520 -0.326480 -0.259579 0.262171 0.572486 -0.074367 0.192555 -0.659870 -0.536075 -0.912744 -0.207431 -0.291848 0.242900 0.286798 -0.251353 -0.180883 -0.179054 -0.475605 0.879401 -0.123501 0.135660 0.297616 0.065122 0.454370 0.439977 -0.015856 -0.158139 -0.224667 0.075033 0.274305 0.069013 -0.463357 0.541279 -0.378922 -0.125520 0.714690 -0.337450 0.240786 0.043588 0.503910 -0.416119 0.575171 0.049459 -0.326069 0.465767 0.675316 0.249284 -0.062961 -0.321438 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/cutting-a-rod.cpp__max(int, int) = -0.412424 -0.733312 1.172376 0.776973 0.208506 0.143927 0.512441 0.134319 0.210559 0.616499 -0.383314 0.770448 -0.727375 -0.019082 0.096625 0.294164 -0.564760 -0.811733 0.131326 0.066101 -0.291561 -0.454387 -0.070927 0.582450 0.701587 0.251006 -0.596022 -0.222541 -1.041621 -1.090796 -0.481009 -0.107869 0.507910 -0.028404 0.454097 -0.942191 0.350480 0.686188 0.078828 -0.913779 0.396112 -0.245405 0.160508 -0.026042 0.149159 0.608505 0.923192 0.232428 0.350975 0.393871 0.031744 -0.501966 0.154906 0.621812 0.176981 0.481055 0.699019 -0.355246 0.059723 -0.271251 0.108353 -0.840287 0.259306 0.241627 -0.438744 -0.155154 0.113823 -0.192873 -0.381914 0.445254 0.309702 -0.243114 -0.597814 -0.490496 -0.513537 -0.084902 0.346651 0.463825 1.055413 -0.396703 0.918618 0.300885 0.653582 -0.080269 0.226073 -0.109560 0.344258 0.111173 -0.432075 -0.260215 -0.658018 -0.529738 -0.445475 0.900005 -0.099517 0.291011 0.355809 -0.693582 -0.896855 0.241376 -0.123783 -0.244840 -0.658220 0.503140 0.424595 0.638013 0.104179 -0.621657 -0.485236 0.034055 -0.400094 -0.082157 0.068595 -0.161509 -0.473427 0.061912 -0.820941 0.077321 0.332662 -0.524483 -0.357562 0.539581 -0.365623 0.867402 0.138562 0.333010 0.138240 0.566741 0.780959 0.159053 0.270960 -0.452273 -1.018496 -0.160400 0.190616 0.452856 -0.584179 -0.012087 -0.019841 0.131349 -0.123823 0.058761 -0.323580 1.074432 0.849589 -0.633412 -0.877728 -0.641988 -0.300736 -0.353829 0.165012 -0.321515 0.009299 0.029589 0.351295 0.031243 -0.033618 1.298341 -0.514203 0.389586 0.196746 -0.299990 0.079644 -0.083604 0.405540 -0.545163 -0.302323 0.397046 0.602608 0.257245 -0.003908 -0.117690 0.295153 -0.561927 -0.580963 0.536304 0.159620 0.286941 0.567742 0.434162 0.979080 -0.524582 -0.273994 0.148590 0.008260 -0.340258 0.249994 -0.732476 0.580051 -0.054981 0.231766 0.768457 0.114483 -0.504811 0.724408 -0.038971 0.105370 -0.558785 0.438007 -0.448079 0.306429 -0.210119 -0.293461 -0.404864 -0.149592 -0.314530 -0.069773 0.956058 0.109883 -1.159037 0.155683 -0.208359 0.651461 -1.359350 0.696723 -0.294945 0.427503 -0.249285 -0.060098 0.016432 0.024053 0.108936 0.104815 0.182852 -0.077203 0.302424 0.573274 0.148429 0.042696 0.226319 0.391032 0.173494 0.286379 0.086711 0.047288 -0.112431 -0.019251 -0.173544 -0.001625 0.175222 0.500148 -0.312348 0.164947 0.491117 -0.143640 0.496915 0.544567 0.319341 -0.344695 0.068631 -0.105457 1.126214 -0.527652 -0.481206 -0.256343 0.406538 -0.043145 0.300928 -0.922291 -0.835728 -0.047222 -1.484550 -0.434920 0.090775 0.341967 0.105042 -0.198989 -0.621061 -0.393405 0.531514 0.300283 1.245576 0.266423 -0.059689 0.705124 0.333858 -0.203559 -0.371463 -0.052440 0.159645 -0.197619 -0.177496 -0.367104 0.104827 -0.824929 0.411261 0.719449 -0.537992 0.300136 -0.257901 0.561428 -0.933663 1.052552 0.393980 -0.845604 0.275189 0.309466 0.897806 -0.615964 -0.549620 -PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -1.699349 -4.082206 6.017097 4.381354 0.155276 1.627699 2.564530 -0.795295 1.068373 2.444579 -1.292867 3.515961 -3.888177 -0.516244 -0.046249 0.933411 -3.381587 -3.369679 0.112592 -0.973783 -1.391669 -2.096852 -1.112086 4.132053 2.921662 0.154697 -2.067344 -0.990893 -5.504384 -3.347965 -1.532248 -0.383065 2.567460 -0.449232 2.197102 -6.302610 2.461871 4.276269 -0.081591 -4.380675 1.677973 -2.049413 0.405475 -0.361497 -1.243046 1.381018 3.057051 1.670694 1.340037 1.297925 0.333319 -1.231804 1.968322 5.865971 0.725861 3.337036 3.754923 -1.339899 0.507741 -0.791137 0.558354 -3.048189 1.784693 0.474224 -1.682751 -1.500953 0.108308 -1.017012 -1.838571 1.509953 2.050023 -1.768051 -2.510685 -1.898850 -3.216178 -1.359459 0.475996 2.314019 5.099268 -3.011963 4.991297 1.931391 2.342267 0.379209 2.642755 0.071334 2.918894 0.713476 -1.820709 -0.414028 -3.903812 -1.218368 -0.602260 2.185960 -1.806038 -2.260410 1.972992 -3.759317 -5.336096 2.138281 -0.222032 -2.249604 -1.848304 0.549622 1.536265 2.094403 -1.270129 -3.618597 -2.217422 1.628875 -1.898780 -1.165741 0.102424 -0.329403 -0.802477 -0.706183 -4.231401 1.169359 2.303069 -1.983536 -1.564081 3.876587 -1.082366 3.684598 0.344196 1.249802 -0.018986 2.765445 2.555149 0.566270 0.027183 -1.988731 -3.501926 -0.247755 0.900524 1.163759 -2.396369 -0.501258 0.571126 1.605608 0.231583 1.966041 -0.586358 5.267433 1.537031 -2.220065 -3.080106 -3.578217 -2.202629 -2.392070 0.811933 -1.543017 -1.952596 0.864889 2.556247 0.636087 0.017593 3.811788 -1.250606 2.327644 0.644517 -1.014574 0.882020 -0.979916 2.234294 -2.771507 -2.172682 2.115075 2.636681 2.343477 -0.249313 -0.083919 1.058712 -2.282198 -2.441327 0.682247 0.760238 0.578962 4.243467 3.068895 6.724374 -2.665684 -0.425400 0.433905 -0.849206 -0.639021 0.407568 -3.680537 1.570670 0.592100 -0.620262 5.010848 0.173929 -2.526200 2.862085 -0.153763 0.578762 -3.369722 2.437341 -2.228039 0.215953 -1.424599 -0.676112 -2.344439 -1.587655 -3.115031 -1.463048 5.331172 -3.038057 -4.502899 1.521991 -0.250119 2.706107 -6.197807 5.477709 -1.974363 2.974452 -0.906498 -1.738168 0.355052 0.767029 -0.880524 1.269154 1.378590 -1.739988 1.672967 2.899719 1.154510 0.983531 0.737069 2.260431 -0.202799 1.395317 -1.550595 1.864456 -0.559066 -1.176458 -1.001254 -0.871477 0.921979 1.934704 -0.353906 0.903246 2.351848 -0.115805 1.333340 3.082162 1.383860 -1.776250 0.627346 -0.648825 4.128822 -2.718751 -1.917487 -1.160875 1.571011 0.645362 1.844672 -5.468183 -3.661323 -2.227294 -4.759464 -1.224219 0.781349 1.453388 0.954026 -0.598345 -4.635680 -2.805338 3.562313 -0.014107 3.592426 2.603587 0.974696 4.055220 2.200036 0.340508 -1.350675 0.301273 1.037522 -0.860609 -0.709461 -2.104880 1.582857 -4.006959 2.984388 3.690436 -1.737737 2.118158 -1.290056 2.331966 -4.466504 5.097121 1.870897 -4.527439 1.109393 3.551239 3.480553 -3.126017 -2.824699 -PE-benchmarks/cutting-a-rod.cpp__main = 0.129268 -0.668901 1.412706 0.942469 -0.429143 0.046123 0.409148 -0.187180 0.322608 -0.571331 -0.507841 0.492105 -0.735548 0.202018 -0.588567 0.209422 -1.283591 -0.678596 -0.042759 -0.181388 -0.069260 -0.233398 0.324070 0.461658 0.688005 0.935192 -0.377631 -0.417044 -0.862305 0.087356 0.574167 -0.250665 0.523480 0.689551 0.100153 -1.563324 0.429039 0.583440 -0.303008 -0.951784 0.606308 -0.573173 -0.047301 -0.847130 -0.302354 0.100253 0.363486 0.954776 0.241098 0.194449 -0.627988 0.004428 0.215321 1.300764 -0.182844 0.387911 0.840142 -0.041669 -0.037115 -0.272595 0.250319 -0.198924 0.186561 0.209595 -0.209555 -0.643606 -0.355354 -0.870228 -0.411751 0.400357 0.124113 0.375625 -0.652672 -0.173348 -0.841304 -0.025033 -0.632151 1.022779 1.055936 -1.004256 0.718944 0.066626 0.361639 -0.022251 0.042770 0.372268 0.058446 0.337096 0.024197 -0.185392 -1.022793 -0.210175 0.094700 -0.561062 -0.308359 -1.459354 0.610010 -1.139268 -0.773736 0.134403 0.287248 -0.468367 0.405868 0.167174 0.033187 0.665994 -0.462973 -0.419845 0.068472 0.040006 0.115076 -0.081528 0.157217 0.516887 -0.205641 -0.666390 -1.043319 0.421964 0.140002 -0.287921 0.468998 0.589117 -0.210943 0.289785 -0.025817 0.135375 -0.303030 1.140207 0.301352 -0.020238 0.189757 0.065385 0.140581 0.256104 0.577545 1.131339 -0.706764 -0.077058 -0.094105 0.230244 -0.166762 -0.603558 -0.010664 0.280880 0.075852 -0.762762 -0.679146 -0.712377 -0.571230 -0.919489 -0.062726 -0.430921 -0.179897 0.828608 0.565900 0.635257 0.462508 1.099684 -0.560413 0.185063 0.079261 -0.203831 0.300004 0.454695 0.452621 -0.387025 -0.463023 0.394222 -0.130371 0.490470 -0.006956 0.122192 0.218133 -0.819356 -0.213207 0.469374 0.634325 -0.129733 0.687239 0.649309 -0.528577 -0.439446 -0.138847 0.369704 -0.345491 -0.234136 0.314505 -0.809003 0.596397 0.082159 0.026296 0.500076 0.080451 -0.287497 0.532624 -0.191036 0.065344 -0.414863 -0.052250 -0.380533 -0.327796 -0.663965 0.520842 -0.253599 -0.365366 -0.525310 -0.572437 1.008913 -0.922005 -0.373216 0.284710 0.137849 0.664304 -0.994794 0.644045 -0.493237 0.966071 0.295742 -0.155881 0.198398 -0.561334 -0.560164 -0.200207 0.307313 -0.124840 0.058109 0.575733 0.505414 -0.126832 0.152260 0.733733 -0.231363 0.672302 -0.254985 0.218829 -0.268706 -0.574351 0.306623 -0.102294 -0.136222 -0.085444 0.373941 1.263937 0.241041 0.928579 0.977461 0.356426 0.784694 -0.502019 -0.003736 -0.248669 0.824686 -0.399988 -0.338597 -0.106878 0.640224 -0.078927 0.361596 -1.014882 -1.621771 -1.169852 -0.917267 0.021726 -0.848478 0.257023 -0.236533 -0.050531 -0.924687 -0.616472 -0.022458 -0.297640 0.752565 0.656759 0.019769 0.726289 0.548666 -0.638920 -0.150216 0.682913 0.864562 0.122533 0.186878 -1.020357 0.508996 -0.728677 0.007754 1.345599 -0.543943 0.321918 -0.250563 1.107213 -0.617995 1.273562 0.369054 -1.174334 0.439250 0.704748 0.428136 0.568370 -0.556705 -PE-benchmarks/min-cost-path.cpp__minCost(int (*) [3], int, int) = -2.225119 -3.657049 5.436618 3.538052 0.034732 1.512572 1.608058 -0.428481 0.153165 1.473854 -1.205533 3.754495 -2.696785 -1.210911 -0.280615 -0.294946 -2.873823 -2.928567 -0.235120 -0.914820 -1.160778 -1.376867 -2.272268 4.671442 2.315837 -0.139371 -2.148698 0.126639 -5.270564 -3.853901 -2.536860 0.129763 2.087782 -1.489064 2.732162 -5.766612 2.004095 4.373760 0.236313 -3.907995 1.299123 -1.547385 0.149576 -0.256817 -2.057643 1.457131 2.989505 -0.317325 0.493609 0.750831 -0.527958 -0.789747 1.474222 4.830924 1.861406 2.976818 4.108098 -1.497528 0.806544 -1.018464 0.382719 -3.303524 1.245849 -0.555471 -1.435041 -1.110032 0.513192 -0.350283 -0.652383 1.101267 1.615901 -2.468441 -1.260066 -2.350739 -5.311260 -1.520681 3.514000 1.703410 4.033205 -2.636098 4.271754 1.653071 2.282743 1.309114 2.806917 0.056559 2.914595 0.772973 -1.357400 0.420376 -3.192297 -1.324545 -1.006137 3.109729 -1.961725 -1.422809 1.954695 -6.524105 -4.671726 2.264065 -0.371297 -2.350548 -2.402847 -0.395796 1.293080 1.643249 -0.752335 -2.654058 -2.165141 1.930286 -1.796530 -0.743434 0.647698 0.212769 -0.086484 0.290566 -3.705466 1.867207 2.749365 -1.017872 -1.531859 3.800181 -0.785252 3.594973 0.118593 1.321926 -0.341745 2.129106 2.006240 0.219604 -1.543084 -1.795129 -3.384495 -2.047206 -0.123215 0.010500 -2.731604 -1.262552 0.967229 1.573589 0.564806 2.179943 -1.449557 4.904794 1.080226 -1.503028 -2.618401 -3.811904 -3.267083 -2.202835 -0.118878 -0.631163 -2.965324 1.646420 2.009148 0.737267 -0.650702 2.984373 0.253711 1.312871 0.650037 -1.710480 0.264867 -2.978246 1.681570 -2.449164 -1.768717 2.256280 1.937156 3.255116 0.211907 -0.124603 1.158056 -1.411871 -2.834304 0.834394 0.875517 1.424181 3.910767 3.371294 4.938769 -2.630298 -0.831623 -0.299672 -1.105273 -0.619306 0.108622 -2.487832 0.732270 0.854700 -0.406300 5.081368 0.200436 -1.851657 2.599544 0.256056 0.610565 -3.023428 2.187380 -1.988832 1.119749 -0.946881 -1.824239 -2.767510 -0.874218 -3.608790 -2.949501 4.719405 -3.634772 -4.854383 1.574193 0.825537 3.328650 -6.122028 2.804576 -1.396944 4.620424 -0.174974 -0.993027 0.547154 0.068095 -0.854964 1.617188 1.063410 -2.576072 1.226471 1.597602 0.847283 1.144365 0.141586 1.709531 -0.572973 1.317518 -1.783573 1.123870 -0.732336 -1.551887 -1.400326 -0.438267 0.782343 2.204154 0.181587 -1.235942 1.353638 0.070179 0.452130 3.966231 0.721060 -1.483772 -0.193290 -0.639621 3.523630 -2.668599 -2.241632 -1.262725 2.317479 1.277396 0.721379 -4.863676 -2.747697 -4.088470 -4.881843 -1.165538 0.649431 0.658930 1.161756 -1.023707 -3.807304 -2.450669 4.064969 0.524378 3.528291 2.452875 0.791199 3.889054 1.588368 0.604754 -1.203518 0.415043 0.789111 -0.837115 -0.682695 -2.362440 1.462631 -3.434099 2.678412 3.414913 -1.732100 2.639454 0.451763 0.847264 -4.210844 4.344069 1.531840 -5.001670 0.121471 3.417028 2.294652 -3.426637 -2.536740 -PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -1.116755 -1.826051 2.825197 1.813900 0.576041 0.499380 1.212504 0.207834 0.566190 1.595315 -0.998442 1.980999 -1.680402 -0.232412 0.357646 0.495689 -1.396678 -2.015554 0.434423 0.133059 -0.742175 -1.228243 -0.510154 1.672693 1.550620 0.481073 -1.404958 -0.295944 -2.664326 -2.923082 -1.318762 -0.243548 1.201049 -0.203103 1.301663 -2.497202 0.951395 1.751538 0.309459 -2.344519 0.820727 -0.708086 0.265590 0.134519 0.409211 1.535842 2.324393 0.698694 0.797666 0.876290 -0.023056 -1.273487 0.235749 1.493598 0.569886 1.279011 1.808976 -0.984435 0.141532 -0.535686 0.234513 -2.233711 0.779894 0.672835 -1.264434 -0.272537 0.629557 -0.281644 -0.946297 1.113817 1.024795 -0.891017 -1.267547 -1.178225 -1.391217 -0.249600 1.589943 1.046521 2.628760 -0.759135 2.438584 0.787512 1.807451 -0.146486 0.865624 -0.391549 1.338351 0.237436 -1.312347 -0.804813 -2.062695 -1.503020 -1.168885 2.355948 -0.188381 1.004308 0.684850 -2.083413 -2.296769 0.618765 -0.437341 -0.657724 -1.969932 1.187067 1.418115 1.431941 0.439760 -1.607240 -1.330009 0.319225 -1.581977 -0.257134 0.185384 -0.486787 -1.119697 0.318588 -1.970479 0.160582 1.088198 -1.211076 -1.091823 1.491492 -0.928642 2.217023 0.342642 0.801697 0.464812 1.057820 1.814828 0.246793 0.791259 -1.356129 -2.548176 -0.392649 0.212227 0.791939 -1.430384 -0.210574 0.200350 0.475443 -0.296929 0.332553 -1.117794 2.892179 1.985128 -1.468467 -2.096729 -1.699314 -0.627166 -0.718760 0.419753 -0.753399 -0.328910 -0.179305 0.950728 0.019653 -0.234108 2.818790 -1.224581 1.175644 0.513165 -0.525982 0.141370 -0.459351 1.021116 -1.447579 -0.706927 0.995916 1.583694 0.645373 -0.138548 -0.445569 0.718459 -1.327292 -1.813567 1.279760 0.300023 1.055199 1.478772 1.144845 2.974249 -1.641055 -0.630649 0.232279 0.013283 -0.853714 0.543486 -1.747097 1.333280 -0.029688 0.811860 2.291172 0.254809 -1.396375 1.558968 0.247535 0.222641 -1.461918 1.125177 -1.150840 0.846092 -0.273583 -0.987697 -1.201422 -0.429234 -1.069747 -0.326616 2.384193 0.305258 -3.396251 0.634740 -0.926649 1.856010 -3.723102 1.434125 -0.783676 0.948478 -0.708907 -0.132550 -0.057632 0.032490 0.187760 0.607909 0.473562 -0.370790 1.076181 1.358983 0.352220 0.442546 0.529206 0.811184 0.412600 0.454860 0.040404 0.124596 -0.333672 0.008391 -0.662859 -0.096007 0.614271 1.465887 -0.777985 -0.023128 1.315471 -0.544112 1.142596 1.632549 0.483881 -0.827501 0.176986 -0.304660 2.621610 -1.283877 -1.285742 -0.736119 0.780866 0.014181 0.770166 -2.394632 -1.899130 -0.165573 -3.922323 -1.131840 0.302874 0.895010 0.462441 -0.389119 -1.800917 -0.829530 1.472885 0.941884 3.289312 0.749676 -0.063947 1.745713 0.810367 -0.357181 -0.999425 -0.221485 0.226177 -0.803385 -0.631416 -0.908127 0.275726 -1.963407 1.430842 1.687760 -1.290109 0.742295 -0.813276 1.243531 -2.377352 2.479740 1.082086 -2.176341 0.341633 0.575045 2.222244 -1.812537 -1.422663 -PE-benchmarks/min-cost-path.cpp__main = 0.261511 -0.408875 1.107647 0.734184 -0.386611 -0.064032 0.173326 -0.146620 0.261002 -0.530785 -0.423044 0.338753 -0.446587 0.219764 -0.396976 0.261153 -1.072789 -0.470807 -0.038928 -0.122884 -0.059967 -0.100261 0.339441 0.219900 0.543732 0.873207 -0.297199 -0.243894 -0.435298 0.074573 0.485694 -0.251613 0.360208 0.696343 0.114098 -0.987864 0.371504 0.297794 -0.252619 -0.642446 0.423849 -0.331466 -0.037381 -0.761319 -0.177949 0.126290 0.265443 0.779028 0.210822 0.205344 -0.538824 -0.014689 0.175447 0.783960 -0.136659 0.176950 0.579279 -0.069514 -0.001110 -0.277416 0.227199 -0.108053 0.064279 0.169284 -0.069930 -0.568870 -0.329051 -0.726978 -0.242548 0.325956 0.082462 0.392364 -0.537328 -0.145217 -0.536104 0.040231 -0.681424 0.823531 0.761289 -0.745978 0.401521 0.052854 0.274895 -0.012915 -0.088452 0.323323 -0.021722 0.301032 0.059290 -0.073574 -0.648009 -0.247328 0.134757 -0.554303 -0.182751 -1.090979 0.416091 -0.862169 -0.458140 0.080855 0.316413 -0.287107 0.429359 0.135621 0.010719 0.474303 -0.290586 -0.183331 0.233695 -0.132867 0.161487 -0.004962 0.085444 0.452483 -0.173808 -0.392517 -0.806693 0.330090 0.007021 -0.156455 0.530565 0.329525 -0.096849 0.084281 -0.067850 0.075423 -0.264141 0.909408 0.236115 0.045936 0.106786 0.137470 0.262479 0.327044 0.513237 0.773260 -0.504847 -0.070854 -0.138254 0.138553 -0.203248 -0.552549 0.006158 0.113678 0.049978 -0.592618 -0.583456 -0.498224 -0.557754 -0.694576 -0.018109 -0.334686 -0.106590 0.669101 0.392731 0.508297 0.442202 0.759847 -0.459855 0.055415 -0.011454 -0.081815 0.249119 0.439593 0.327081 -0.238390 -0.222877 0.319543 -0.177013 0.300868 0.076575 0.015245 0.241708 -0.652185 -0.042133 0.469840 0.489080 -0.130056 0.407089 0.415849 -0.630763 -0.118366 -0.165872 0.374480 -0.179295 -0.249496 0.338705 -0.529159 0.495315 -0.010503 0.126943 0.225439 0.081155 -0.133075 0.352242 -0.147908 0.027064 -0.207791 -0.143422 -0.188684 -0.196738 -0.477418 0.562402 -0.195884 -0.206346 -0.285374 -0.393767 0.702046 -0.667052 -0.141241 0.203229 0.072906 0.519672 -0.541258 0.352770 -0.370702 0.743114 0.298633 -0.103180 0.169316 -0.647010 -0.466218 -0.210705 0.219646 0.063582 -0.110999 0.303183 0.414755 -0.187938 0.096258 0.539860 -0.203755 0.637080 -0.064886 0.108232 -0.219074 -0.345377 0.247529 -0.017938 -0.230651 -0.161955 0.275277 0.963172 0.056365 0.820218 0.803703 0.082364 0.657204 -0.425818 -0.022262 -0.168002 0.569694 -0.305140 -0.261027 0.012167 0.514116 -0.139629 0.233803 -0.677943 -1.205587 -0.938212 -0.541238 -0.085997 -0.670043 0.188157 -0.266520 -0.065769 -0.470815 -0.426093 0.010954 -0.182977 0.470779 0.462498 -0.089354 0.486375 0.378974 -0.528392 -0.171365 0.488242 0.651390 0.207037 0.246770 -0.865841 0.440634 -0.505215 -0.175971 1.095098 -0.497992 0.168725 -0.209959 0.893038 -0.392973 0.891657 0.232355 -0.867879 0.324337 0.495297 0.254759 0.575534 -0.403333 -PE-benchmarks/edit-distance.cpp__min(int, int, int) = 0.101798 -0.411479 1.042695 0.795699 -0.154477 -0.012605 0.605215 -0.270219 0.397033 -0.151965 -0.132390 0.174627 -0.860637 0.281510 -0.271233 0.347379 -0.882547 -0.570171 -0.168180 -0.281871 -0.116007 -0.366001 0.623815 0.147933 0.706840 0.366020 -0.344602 -0.592416 -0.782146 0.155076 0.578097 -0.175382 0.502649 0.544097 -0.085616 -1.217178 0.360419 0.408375 -0.258464 -0.562515 0.597669 -0.527450 0.159521 -0.600063 -0.009662 0.076310 0.175930 0.617646 0.555221 0.183179 -0.080387 -0.031626 0.069146 0.981663 -0.553373 0.266113 0.261492 -0.069246 -0.144322 -0.111209 0.056422 -0.062691 0.246706 0.202397 -0.237864 -0.568440 -0.256456 -0.716701 -0.565044 0.485757 0.058600 0.321568 -0.742410 -0.079917 -0.435952 -0.069219 -0.687488 0.811938 0.810753 -0.760866 0.491783 -0.040653 0.063084 -0.176930 -0.026286 0.203573 0.022925 0.079553 0.036308 -0.291098 -0.878674 -0.098433 -0.034375 -0.252247 -0.107040 -0.935611 0.396405 -0.300726 -0.673540 -0.048120 0.232123 -0.340814 -0.032547 0.296746 -0.048065 0.510893 -0.317336 -0.547758 -0.079886 0.012097 0.232426 -0.039732 0.055359 0.022013 -0.381423 -0.785384 -0.819809 0.184549 -0.194096 -0.324087 -0.014848 0.473840 -0.414517 0.154806 0.145614 0.251614 -0.283414 0.897477 0.122033 0.168380 0.480405 -0.061213 -0.308917 -0.008827 0.538143 1.286372 -0.381449 0.107341 -0.434847 0.047118 -0.447464 -0.401965 0.319438 0.353076 0.282665 -0.778267 -0.525713 -0.182962 -0.103154 -0.744121 0.143043 -0.362997 0.263303 0.381667 0.422722 0.469513 0.461857 1.149274 -0.524916 0.222242 0.101496 -0.313317 0.459628 0.517927 0.447338 -0.347674 -0.400572 0.190611 -0.077949 0.257427 -0.113864 0.301351 0.098475 -0.760547 -0.149000 0.072921 0.311965 -0.253757 0.486981 0.479407 -0.144183 -0.541661 0.104971 0.550237 -0.204547 -0.109935 0.274858 -0.682688 0.565935 0.023039 -0.270164 0.315388 0.032304 -0.377530 0.470025 -0.270384 0.176314 -0.423354 -0.094931 -0.333849 -0.276123 -0.697956 0.228682 -0.051379 -0.427478 -0.129405 -0.107782 0.756520 -0.176597 -0.289261 0.313572 0.005808 0.319334 -0.890023 1.048417 -0.387504 0.321189 -0.091386 -0.133590 0.082225 0.071446 -0.428415 -0.162331 0.167424 -0.070925 0.172359 0.789439 0.393325 -0.096652 0.016622 0.676436 0.045272 0.645444 -0.135240 0.415559 -0.155117 -0.355241 0.261105 -0.108331 -0.091839 -0.104305 0.150267 1.231070 0.416128 0.588366 0.812562 0.268567 0.871967 -0.302522 0.191516 -0.163126 0.644415 -0.237047 -0.232215 0.167609 0.373531 -0.221322 0.421510 -0.753244 -1.344271 -0.193785 -0.797662 0.175990 -0.488614 0.210803 -0.175849 -0.067378 -0.784630 -0.435889 -0.372928 -0.240343 0.563382 0.328027 -0.064738 0.482152 0.586222 -0.606189 -0.003842 0.478300 0.619411 0.162101 -0.058222 -0.659431 0.435711 -0.702301 0.000000 0.955143 -0.449851 0.217135 -0.348733 1.013127 -0.570591 1.023083 0.156830 -0.546880 0.718931 0.583786 0.559035 0.526507 -0.335783 -PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = -0.967179 -4.750559 11.219072 4.021666 -1.927480 1.007881 8.457711 -1.945279 4.196062 -1.351055 -3.261532 -0.478449 -8.611679 -3.923125 0.589438 -3.356576 -10.317067 -6.278358 0.575971 -1.886270 -2.086122 -6.826043 2.178253 5.697003 5.422368 5.373112 -1.378427 -1.894255 -6.454044 -1.357969 4.973076 -0.907406 3.338994 8.115688 4.668582 -12.353871 4.315432 2.667327 -0.232279 -4.726122 2.728168 -0.096039 -0.020489 -1.484907 0.394176 2.897292 6.364719 12.150301 4.382488 1.504946 -2.806859 -9.724459 -1.811450 7.272480 0.301833 3.124317 5.799136 -2.912431 2.254276 1.614418 -0.340339 -7.368265 0.637667 4.836284 -3.769486 1.474087 6.425960 -7.356931 -5.665918 7.223057 4.477417 -1.017876 -4.155676 -3.829181 -6.140624 -0.139029 1.287259 7.115406 10.733820 -5.211665 9.311505 2.332209 6.842096 -1.738496 -0.167755 -0.152998 3.850856 -0.228599 -4.762067 -1.662551 -15.351105 -6.492095 -3.300968 -1.354477 1.199417 -5.326392 2.747809 -9.854851 -7.904678 1.017272 -0.092816 -3.096881 -3.169592 5.325654 4.418815 1.471943 -0.785960 -6.335218 -3.660641 1.568593 -10.122535 5.026725 2.569299 4.711370 -4.396193 -3.862239 -6.856256 1.375420 1.005312 -3.719527 -0.041634 7.114141 -5.359656 7.499213 3.946977 1.665922 0.085381 5.294120 5.929590 -2.340413 4.428562 -4.081981 -2.034159 -2.824005 1.967317 9.911595 -0.301714 -3.622533 1.913944 2.998440 -4.233714 -1.327712 -1.219836 4.864530 0.214144 -8.871018 -6.964254 -3.423538 -4.956252 -7.789036 2.043851 -2.536261 -3.075089 2.580215 3.769154 5.783518 -0.576753 7.326186 -5.866495 3.347482 -0.932820 -2.648315 -3.147972 3.221509 5.437722 -4.225662 -1.596150 -0.774966 -0.388521 4.695739 -0.889787 -4.862147 0.444637 -8.155202 -6.780265 -0.414635 1.804125 0.729109 0.710207 7.421331 2.169950 -8.163688 -2.268911 4.657753 1.370824 -5.072567 5.679946 -6.506977 6.621810 -0.711654 -0.106954 5.141886 0.875394 -2.341800 4.712529 -1.277135 0.229383 -5.557339 -3.184026 -2.652007 1.267396 -5.019758 2.503385 -6.118740 -3.487999 -4.155204 -3.543581 7.184559 -0.163146 -8.480615 6.320365 -0.706504 9.263737 -8.780052 6.081454 -1.610451 5.108614 -0.376216 -2.184774 -0.408099 -2.991457 1.222770 0.567295 -2.539613 -0.016650 4.632769 5.716437 3.024131 3.462344 1.821773 6.186104 -0.998448 1.541758 -2.408933 -0.834532 -3.437165 -4.972997 0.628895 -0.909371 1.595419 3.128629 0.115008 6.159157 6.432086 2.069677 9.057245 3.157448 2.019411 -1.882926 -2.965474 1.592829 8.420053 -4.317765 -4.475083 0.091528 3.621698 -3.186477 2.394862 -9.430597 -11.899903 -2.355820 -13.399714 -6.095309 -6.077143 2.906394 1.831052 0.221037 -6.603379 -1.677749 1.168922 1.869450 7.452077 3.882504 -0.910725 7.386035 7.822628 -4.472399 -2.052140 7.973171 6.747125 -4.300581 -0.311144 -9.119394 2.980165 -8.599846 4.976131 8.676124 -4.917464 2.089525 -7.872986 10.170501 -11.788121 8.131273 3.444713 -8.517717 1.726673 2.451745 6.239914 4.714388 -3.810364 -PE-benchmarks/edit-distance.cpp__main = 0.553686 -1.941992 9.085380 3.760897 -2.052100 0.098588 5.413135 -3.874446 4.832297 -1.739027 -2.031389 -1.243521 -6.105052 -0.237791 -2.648782 0.155465 -8.342429 -4.048350 -0.860623 -3.806712 -1.768033 -4.283095 4.903307 0.819646 4.888067 3.769831 -1.404719 -3.062615 -4.052377 -0.661289 6.394897 -1.449538 2.293375 4.421833 0.516452 -10.219133 4.103998 1.309741 -2.163111 -3.031690 3.922691 -1.375435 -0.486956 -1.530481 0.658560 0.479653 1.877232 8.897193 4.946082 1.631150 -0.232242 -3.522792 -0.867196 8.302096 -3.869928 2.049897 2.254665 -1.229599 -0.487886 2.666648 -0.313364 -2.077006 0.594317 3.785912 -1.488151 -2.122099 2.925965 -5.888310 -5.070160 5.919026 0.827509 -0.207123 -3.543248 -1.578465 -3.312243 0.019407 -3.454151 6.219136 7.638154 -4.524777 4.866279 -0.100934 2.386512 -2.142485 -1.289896 0.439955 2.210936 0.024076 -1.635173 -3.159442 -8.804267 -1.917093 -0.760108 -2.611303 0.619472 -7.311904 3.370446 -5.755610 -5.458182 -0.306246 2.280639 -2.461208 -1.103112 3.356986 1.928817 1.150127 -1.837176 -4.772305 -1.404950 0.918554 -3.980667 2.864682 1.080556 0.938572 -3.104070 -3.657556 -5.577402 1.243761 -1.637933 -2.235985 -0.961278 4.505495 -3.014297 1.999217 2.764952 2.910504 -1.325667 4.812314 1.312149 0.424979 3.709281 0.460689 -0.998574 0.334942 3.287955 7.536331 -0.699033 -0.668914 -1.649884 1.242953 -5.268356 -2.359356 -0.989455 2.193597 1.236707 -6.904778 -4.779743 -0.210506 -1.473229 -7.499901 1.301496 -2.961100 -2.386235 0.991009 3.009492 5.508766 2.454691 6.223689 -5.207546 2.136707 -0.253323 -1.894118 0.941195 2.794746 4.596139 -3.041875 -2.152882 -1.328450 -1.256607 1.848621 -1.315086 -1.374718 -0.375294 -7.659015 -2.484357 0.047604 2.509422 -1.045384 0.609699 5.321713 1.309762 -6.651025 -0.238507 5.290189 -0.731821 -2.835640 3.552375 -5.641633 4.348205 0.522876 0.472565 3.325539 0.829690 -1.531892 2.500527 -1.814869 0.960168 -3.371451 -2.919731 -2.305417 -1.411570 -4.101301 2.271476 -2.799943 -2.716112 -1.816198 -2.719338 4.969947 -2.157617 -4.181727 6.463548 -1.343992 4.465697 -6.198516 6.578626 -2.313324 2.608193 -0.661346 -0.397671 -1.033534 -0.869573 -2.085648 0.894509 -1.346078 0.305392 4.164749 7.010011 3.079248 2.452456 0.132571 6.287925 -1.868669 3.353935 -1.809804 2.195279 -2.420126 -4.825297 1.526670 -0.800551 -1.082797 -0.864141 1.845349 7.723674 4.289884 2.813670 7.155351 1.854571 5.058577 -1.695102 1.334634 0.026683 4.476489 -2.126120 -2.808594 2.600680 2.123870 -3.129396 2.739908 -7.090014 -10.482147 -2.961298 -8.656581 -1.092892 -6.442368 2.080212 -0.840756 0.203440 -5.795937 -2.240941 -0.732378 -0.235927 4.482442 3.190496 -0.032867 4.141662 7.018089 -4.675987 0.373965 4.430342 5.361711 -1.281362 -1.325139 -6.573300 3.567518 -5.175687 1.618531 7.107132 -3.057110 1.223106 -4.252279 6.477363 -7.139202 6.183652 1.874504 -3.683288 4.525677 2.184844 5.108918 6.024235 -2.403914 -PE-benchmarks/edit-distance.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/dfs.cpp__Graph::Graph(int) = 0.692269 -1.244844 3.506913 1.851015 -1.308601 0.339172 1.204345 -1.000455 0.625089 -0.291419 -0.729784 0.919786 -1.462076 -0.256313 0.201414 0.078171 -3.328404 -1.166654 -0.409280 -0.927012 -1.015144 -0.829841 0.313475 1.377666 1.733907 1.777576 -0.539013 -0.520772 -1.380910 -0.523509 0.556903 -0.162742 0.750329 2.097356 2.118593 -2.749548 1.353011 0.789002 -0.207828 -1.777241 0.813692 -0.039710 -0.170455 -0.626550 -0.090767 0.635207 1.035652 2.570358 0.928941 0.575710 -0.710720 -1.245153 0.257827 2.651771 0.619888 0.882439 1.619015 -1.141407 0.721717 0.167642 0.286350 -1.252460 -0.083773 0.343150 0.003560 -0.568120 0.492492 -1.876895 -0.383207 1.675851 0.998848 -1.242425 -1.276438 -1.775827 -1.817374 -0.083316 -2.556553 2.866678 2.433365 -2.020001 1.533652 0.323412 1.150349 -0.363046 0.926332 0.044550 1.782717 0.425304 -0.366870 0.304874 -2.082897 -2.181838 -0.036989 -0.618934 -0.503165 -1.462410 1.142455 -2.878669 -1.924225 1.024968 0.706550 -1.055731 -0.230868 0.475206 0.665278 0.471511 -0.660959 -1.183525 -0.665994 0.512592 -1.161013 0.658925 0.342505 1.231534 -0.870247 -0.224100 -1.673493 1.046842 0.656021 -0.200751 -0.029279 1.855185 -0.501380 1.078375 0.149899 0.277860 -0.312222 1.906961 0.804129 0.154971 0.387447 -0.087152 -0.454914 0.857210 0.734928 1.376718 -0.101848 -0.175162 0.277153 0.974010 -1.101004 0.278208 -0.679677 2.125538 0.072799 -1.553088 -2.375685 -0.849851 -1.659726 -1.771094 0.190379 -0.680335 -1.101418 1.155460 1.127030 2.254503 -0.143511 0.791525 -1.108597 0.197453 -0.112662 -0.393390 0.022062 0.311064 0.934918 -1.319310 -0.289164 0.211673 -0.283915 1.153400 0.328663 -0.545137 0.250203 -1.722290 -1.367305 0.729866 1.194909 0.136012 1.001646 2.047473 0.576955 -1.256664 -0.921278 0.998024 -0.375877 -1.227732 0.824636 -1.284944 1.124807 -0.000843 0.462754 1.461247 0.068774 0.090388 0.967294 -0.276093 0.320793 -0.863317 -0.545120 -0.569158 0.244058 -0.811912 0.667614 -1.228900 -0.541454 -1.087454 -1.364153 2.362905 -1.654503 -1.768477 2.148945 -1.058409 2.239339 -1.778525 2.001621 -0.619333 1.306742 0.138954 -0.284774 -0.098495 -0.737060 -0.733417 1.071771 -0.209418 -0.074937 -0.111710 1.446705 0.636286 0.449977 -0.001416 1.515626 -1.128552 1.149202 -0.483981 1.046440 -0.667333 -0.519872 -0.363624 -0.018678 -0.306711 0.177432 0.321065 1.442703 0.152585 1.283789 1.283389 0.667835 0.749309 -1.060993 0.140150 -0.062005 1.322201 -1.371668 -1.344858 0.670460 1.104817 -0.142978 -0.055397 -2.349364 -2.328127 -2.443136 -1.827235 -1.355630 -1.268259 0.962776 -0.090536 -0.608656 -0.936145 -1.080413 0.719789 0.342558 0.112475 1.239070 -0.142830 1.910125 1.640015 -0.398561 0.062099 0.744766 1.300507 -0.151953 0.001329 -2.239289 0.882888 -2.521375 0.643797 2.652918 -0.676938 1.369578 -0.762324 2.598861 -2.596534 1.509466 0.739954 -2.348113 0.239592 2.309937 0.634620 0.719970 -1.392323 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/dfs.cpp__Graph::addEdge(int, int) = -0.040695 -0.593699 1.518205 1.170907 -0.271185 0.118268 0.544401 -0.539771 0.430181 0.244448 -0.209725 0.378121 -0.937224 0.284385 -0.244581 0.671877 -1.167493 -0.594314 -0.232043 -0.558655 -0.293649 -0.369974 0.530621 0.288131 0.897490 0.391129 -0.490690 -0.529480 -0.723258 -0.656981 0.338666 -0.270666 0.652568 0.450223 0.002731 -1.755716 0.748866 0.691998 -0.387412 -0.661246 0.683302 -0.511360 0.081767 -0.467874 -0.343879 0.191721 0.241554 0.391660 0.690384 0.380290 0.226929 0.000190 0.598171 1.453785 -0.487318 0.543740 0.431815 -0.249956 -0.142742 -0.076897 0.128606 -0.122144 0.373931 0.200597 -0.072064 -0.837344 -0.326812 -0.639836 -0.629056 0.581339 -0.054737 -0.006413 -0.827702 -0.271024 -0.604065 -0.267233 -0.987066 0.866181 1.138476 -0.914293 0.763919 0.131499 -0.003871 -0.127761 0.171843 0.216407 0.361708 0.198465 -0.042227 -0.076234 -0.279141 -0.210208 0.197889 0.157507 -0.339944 -1.170496 0.591792 -0.687040 -1.021786 0.276542 0.392445 -0.475075 -0.218855 -0.012923 -0.004983 0.453663 -0.518379 -0.784469 -0.147816 0.051222 0.227632 -0.192742 -0.135936 -0.066180 -0.308675 -0.319337 -1.120524 0.280086 -0.111175 -0.406443 -0.173224 0.683861 -0.025493 0.225457 0.094092 0.461354 -0.373437 1.067117 0.043188 0.547335 0.138839 0.258941 -0.509550 -0.030170 0.696526 0.631671 -0.449652 -0.109888 -0.471676 0.183767 -0.497941 0.039516 0.202790 0.838507 0.696808 -0.624702 -0.700170 -0.319810 -0.426525 -1.117805 0.219484 -0.537565 -0.116384 0.463017 0.610640 0.302705 0.581246 1.072674 -0.499340 0.278215 -0.002940 -0.345477 0.683827 0.162326 0.626933 -0.512554 -0.510765 0.382639 0.200108 0.472655 -0.029931 0.232460 0.180759 -0.796290 -0.191590 0.301696 0.336750 -0.317952 0.694477 0.679295 0.997288 -0.445045 0.164621 0.610461 -0.285221 -0.065738 0.270498 -0.914586 0.509722 0.142436 -0.288577 0.664177 0.050164 -0.412463 0.524705 -0.366684 0.199536 -0.657942 0.186227 -0.459446 -0.084529 -0.679476 0.092496 -0.234606 -0.479345 -0.253821 -0.183588 1.085804 -0.855971 -0.333315 0.655581 0.010636 0.344514 -1.115589 1.597416 -0.564505 0.581888 -0.331480 -0.391134 0.119041 0.147150 -0.550368 0.064566 0.287904 -0.183912 0.200694 0.990569 0.483388 0.020039 -0.051013 0.907381 -0.089822 0.837916 -0.251652 0.756977 -0.123836 -0.340008 0.018427 -0.172459 -0.238599 -0.155892 0.228655 1.009676 0.425858 0.400263 0.595058 0.457462 1.015466 -0.454631 0.489644 -0.194490 0.775186 -0.456758 -0.369525 0.245277 0.529713 -0.185919 0.536523 -1.151218 -1.281772 -0.770389 -0.682978 -0.084464 -0.062076 0.423652 -0.170971 -0.115363 -0.904177 -0.691320 0.482970 -0.327862 0.340631 0.536916 0.144032 0.715509 0.756286 -0.232702 -0.129618 0.044560 0.553746 0.249305 -0.053377 -0.725798 0.664166 -0.875476 0.153657 1.053979 -0.508557 0.342408 -0.092180 0.986720 -0.818712 1.195952 0.203134 -0.626444 0.933959 1.025104 0.582968 0.151969 -0.487951 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/dfs.cpp__Graph::DFSUtil(int, bool*) = -0.014302 -2.086496 6.245140 4.281421 -1.930238 0.781080 0.632405 -2.436487 1.457373 -0.999055 -1.434615 1.883577 -2.951757 0.787269 -1.536380 0.995559 -5.693077 -2.225282 -1.222730 -2.330991 -1.627963 -1.315922 0.530537 2.495393 2.838917 3.686988 -2.148542 -0.141784 -3.023205 -2.170648 1.224603 -0.628479 2.193392 2.778768 1.476416 -6.879588 2.954950 2.990669 -1.074120 -2.788267 2.140469 -2.411020 -0.443141 -2.251588 -1.569215 0.855192 0.760352 2.448935 2.172202 0.259054 -0.861455 0.148105 1.197741 5.050167 -0.942198 2.112413 2.399900 -1.240367 -0.242556 -0.557077 0.329547 -0.780279 1.210809 0.702772 -1.173933 -3.269814 0.095562 -2.426294 -1.516691 2.703216 0.985753 -0.777513 -2.396430 -1.846826 -3.688413 -0.865788 -0.857762 3.637598 4.276765 -3.101361 2.721888 0.406632 0.720707 0.065751 1.670942 0.519011 3.326941 0.845893 -0.328524 -0.273532 -2.918408 -1.158402 0.687848 0.560498 -1.656105 -4.169905 1.869201 -6.391241 -4.083951 0.726941 1.509288 -2.389974 -0.767826 0.095174 0.975561 0.892120 -0.956608 -2.439101 0.052162 1.089947 -0.857924 -0.438199 -0.290991 0.657560 -0.577169 -0.705653 -4.510639 2.052297 0.359265 -0.403594 0.060052 3.266555 0.142772 0.638532 0.206549 1.589132 -1.298384 3.689605 -0.243733 0.818823 -0.472269 0.820994 0.210571 0.120346 1.729751 1.520932 -2.690085 -1.846891 -0.822105 1.075642 -2.099191 -0.478668 -1.189253 3.282767 1.541404 -2.569783 -2.790981 -2.074948 -2.974471 -4.481300 -0.178894 -1.591101 -2.745036 1.527969 2.427399 2.353412 1.819726 2.790234 -1.431612 1.036503 0.375860 -0.873615 2.369109 0.236030 2.308374 -2.309602 -1.786734 1.876490 -0.452421 2.432927 -0.329058 0.429116 0.528284 -2.991828 -1.634377 2.250561 1.693979 0.762644 3.299811 3.518162 3.418091 -2.517128 0.648930 1.928584 -1.493402 -0.775511 1.288236 -2.784266 1.617219 1.055119 0.069989 4.030637 0.083945 -1.201516 1.242504 0.071308 1.007745 -2.899812 0.432372 -1.553454 0.271217 -2.388647 0.437493 -1.751304 -1.440651 -2.486223 -2.818238 4.431426 -4.985472 -3.101842 3.680299 -0.195598 3.410887 -4.832779 2.413846 -2.161959 3.599656 -0.469208 -1.020422 0.567450 -1.891568 -2.930565 1.723765 0.978540 -1.194817 0.687826 2.631972 2.000952 0.952509 -0.444057 3.062769 -0.911440 3.228324 -1.716715 2.479532 -0.499235 -1.505308 -0.182170 -0.640346 -1.345076 -0.013342 1.419476 2.799828 1.713484 2.804755 2.264604 2.335198 3.066774 -1.751948 0.953481 -1.060919 1.744767 -2.020324 -2.247763 0.852076 2.262566 -0.206384 1.369643 -4.950587 -5.378532 -4.742420 -3.824136 -0.416222 -1.482813 1.419445 0.172541 -0.733067 -3.494611 -2.585424 2.978817 -0.501552 3.879412 2.245857 0.429212 2.891579 3.069426 -1.314155 -0.521873 1.118939 2.402284 0.475311 0.169596 -4.574990 3.487260 -2.541101 1.297876 5.243972 -2.707220 2.124636 -0.775565 3.898232 -3.561818 4.586999 1.033805 -4.195511 2.028883 3.103987 1.823420 1.214185 -2.345836 -PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/dfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/dfs.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/dfs.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/dfs.cpp__Graph::DFS(int) = -0.556542 -1.626876 3.195539 2.331807 -0.163680 0.549129 0.985326 -0.816010 0.859348 0.867480 -0.715112 1.354122 -1.787121 0.183025 -0.080625 0.894271 -2.179377 -1.608264 -0.135336 -0.834468 -0.780649 -0.972917 0.099149 1.310662 1.558982 0.547544 -1.159966 -0.493092 -2.140065 -1.776925 -0.023339 -0.466716 1.317891 0.451333 0.731072 -3.584355 1.525404 1.705651 -0.362166 -1.877025 0.981031 -1.074423 0.101676 -0.524899 -0.478329 0.723233 1.140149 0.874193 1.074734 0.715919 0.272097 -0.427598 0.771846 2.823725 -0.298979 1.381726 1.478099 -0.774533 -0.099955 -0.256857 0.327646 -1.026404 0.941290 0.567838 -0.685925 -1.272123 -0.004945 -0.910621 -1.181558 1.122104 0.691467 -0.564901 -1.344950 -0.857196 -1.366820 -0.619367 -0.229600 1.429548 2.644176 -1.490603 2.132165 0.651846 0.936262 -0.002369 0.977069 0.161278 1.527531 0.417997 -0.758875 -0.282052 -1.502682 -0.778984 -0.043472 1.088750 -0.666773 -1.185045 0.960841 -1.892291 -2.366153 0.822687 0.336802 -0.887611 -1.133791 0.250380 0.756071 0.956255 -0.589130 -1.704094 -0.758910 0.435502 -0.685351 -0.483820 -0.183390 -0.283073 -0.665369 -0.318292 -2.312522 0.506763 0.576599 -0.897165 -0.676640 1.730917 -0.474921 1.104456 0.130510 0.806478 -0.354826 1.679726 0.682667 0.662549 0.264368 -0.461685 -1.613236 -0.102155 0.828330 0.926047 -1.132236 -0.475573 -0.257406 0.596909 -0.644416 0.464157 -0.252496 2.362863 1.383855 -1.231390 -1.686232 -1.343062 -0.915245 -1.785050 0.432993 -1.069780 -0.758240 0.472890 1.352396 0.591091 0.637990 2.176411 -0.959914 1.154722 0.094366 -0.462888 0.950731 -0.173848 1.264721 -1.323235 -0.966876 0.987633 0.917990 0.927527 0.010701 -0.118239 0.517535 -1.569729 -1.128414 0.801459 0.520308 0.170074 1.711199 1.456802 3.135282 -1.408333 0.069981 0.766923 -0.381148 -0.379635 0.489049 -1.818357 0.926010 0.313903 -0.142828 2.173804 0.133546 -1.244514 1.002349 -0.149874 0.349872 -1.526138 0.829061 -0.992308 0.260266 -0.900007 -0.180544 -1.077892 -0.826612 -1.090367 -0.616218 2.519732 -1.446546 -2.085245 1.279503 -0.370265 1.375737 -3.058284 2.545924 -1.177770 1.457717 -0.744675 -0.739778 0.094549 0.106937 -0.843177 0.765567 0.683101 -0.562767 0.730923 1.736216 0.837170 0.486359 0.123206 1.445183 -0.104238 1.150140 -0.559461 1.205823 -0.299352 -0.506738 -0.364163 -0.421090 0.012153 0.450915 0.080421 0.923327 1.171045 0.317492 1.040434 1.370364 1.246862 -0.999727 0.647417 -0.349523 1.869473 -1.158909 -0.980008 -0.052104 0.914023 -0.078720 0.932665 -2.617667 -2.248776 -1.343774 -2.338577 -0.595884 0.295304 0.796761 0.168227 -0.212520 -2.092719 -1.220669 1.573524 -0.119808 2.011532 1.176573 0.369223 1.746775 1.368872 -0.287247 -0.742900 0.007359 0.678145 -0.171077 -0.244466 -1.502060 1.204564 -1.835061 1.046896 2.095643 -1.095786 0.805600 -0.451904 1.694383 -1.994703 2.579847 0.816231 -1.893773 1.096646 1.622540 1.705977 -0.679333 -1.311389 -PE-benchmarks/dfs.cpp__main = 0.257030 -0.535304 1.480738 0.745966 -0.870310 -0.287412 0.034740 0.061106 0.578645 -1.956962 -0.795278 0.353876 -0.699056 0.450074 -0.630291 -0.007216 -2.337131 -1.030775 0.288649 0.194895 -0.023817 -0.398288 0.781597 0.458882 0.504417 1.913549 -0.540025 -0.092978 -0.458630 1.154617 1.642504 -0.868256 0.702064 1.909721 0.075250 -2.423819 0.439890 -0.385631 -0.372612 -0.831774 0.462730 -0.777876 0.204664 -2.206136 -0.763820 -0.032898 0.654210 1.656075 0.470499 -0.220276 -1.663842 -0.429609 -0.559321 1.190640 -0.587766 -0.149431 0.703801 -0.299487 -0.156728 -0.806960 0.441213 -0.274861 0.355619 0.923641 -0.668969 -0.749388 -0.178552 -1.786319 -0.775233 0.772613 0.373072 1.821847 -0.840414 0.377124 -1.156981 0.097921 0.743670 1.569518 1.522098 -1.028842 0.657316 -0.104705 1.019943 0.039949 -0.269609 0.791411 0.210196 0.447958 -0.379017 -0.286232 -1.847888 -0.230156 -0.039721 -1.083563 0.555562 -1.575560 0.079680 -1.821116 -0.407378 -0.190541 0.286588 0.084352 0.543307 0.171481 0.686761 0.827246 -0.470121 -0.332868 0.518606 -0.650127 -0.294174 0.269291 0.496393 1.014913 -0.438710 -1.331664 -1.241295 -0.034256 -0.226916 -0.484187 1.425568 0.492665 -0.849156 0.097958 -0.029697 -0.038395 -0.463794 1.530125 0.431956 -0.467279 0.413260 -0.400536 1.250285 -0.076779 0.644699 2.553267 -0.766693 -0.787495 -0.268574 0.130701 -0.654115 -2.141200 0.371992 -0.315044 -0.345089 -1.153258 -0.995620 -0.758039 -0.766648 -1.601013 -0.146584 -0.771740 0.017311 1.806965 0.692573 0.930691 1.025485 1.443014 -0.748799 0.757044 -0.280585 -0.002741 0.541239 1.014537 0.637728 -0.257313 -0.108500 0.485941 -0.866993 0.592936 0.136852 -0.702214 0.338621 -1.311325 -0.577410 0.730014 1.136412 0.311413 0.171854 0.173575 -2.090946 -0.720237 -0.069269 0.898481 0.325716 -0.552088 0.797595 -0.645989 1.160564 -0.166066 -0.173909 -0.248520 0.115270 -0.868315 0.225357 0.149776 0.168368 -0.341198 -0.812421 -0.022272 -0.030229 -1.055042 1.030467 -0.465445 -0.429758 -0.531160 -0.709701 0.992859 -1.277456 -0.588571 0.405266 0.277352 1.965187 -1.179918 -0.420976 -0.722838 1.949044 0.488999 -0.117764 0.268337 -1.725265 -0.561151 -0.278324 0.349331 0.378822 -0.297211 0.063567 0.950302 0.121004 0.400526 0.877342 0.334626 0.872710 0.328035 -0.347578 -0.377629 -0.716728 0.815529 -0.094789 -0.138325 0.065393 0.838380 1.669793 0.592409 1.835566 2.311913 0.243583 0.864406 -0.732410 -0.957079 -0.462191 1.114710 -0.269292 -0.338008 -0.268268 1.205740 -0.562622 0.398698 -0.910029 -2.881625 -1.824598 -1.156422 -0.463250 -1.364273 0.042811 -0.314918 0.440858 -0.764838 0.147421 -0.686327 -0.296868 2.047754 0.664813 -0.384341 0.726422 0.739589 -1.622301 -1.131604 1.668142 1.363014 0.054669 1.163378 -2.472087 0.677939 -1.108941 -0.091653 1.998916 -1.209198 -0.415588 -0.615464 2.010368 -0.416579 1.724203 0.714098 -1.739614 0.471462 -0.022914 0.147991 2.151418 -0.682053 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/dfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/dfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.559354 -1.112255 6.819190 3.704652 -1.380954 0.047994 2.326211 -3.691297 3.060954 -1.405149 -0.385703 0.456192 -3.699805 1.303337 -3.437818 1.789518 -5.247821 -2.978969 -1.943166 -4.166050 -1.450427 -1.519054 3.323599 0.218578 3.552059 0.603390 -2.300098 -2.054698 -3.856418 -2.065849 3.411039 -0.992663 2.110100 -0.642455 -0.758004 -8.582543 3.720794 2.423558 -2.389961 -2.275541 3.843565 -2.558679 -0.423550 -1.851452 -1.482355 -0.222742 -0.201668 2.329804 3.503682 1.098589 1.019756 1.711526 -0.097605 7.543765 -4.095587 1.910225 1.252360 -0.360410 -1.828120 1.268614 -0.260789 0.374290 0.991261 0.872637 -0.849289 -4.007665 0.155763 -3.014645 -3.193540 3.169458 -0.378084 -0.960239 -2.152450 -0.567133 -4.073924 -1.011025 -0.191880 3.374391 4.446855 -3.714946 2.112907 -0.841578 -0.232069 -0.304329 0.020527 0.791533 1.946217 0.411471 0.509629 -2.281502 -3.551152 0.937183 0.187993 -0.022996 -0.978813 -6.391859 3.278660 -4.558407 -4.087887 -0.002262 2.475109 -2.467011 -1.920696 0.053344 0.367677 1.331665 -2.053331 -3.187028 -0.795560 1.400502 0.518611 0.255011 0.546509 -1.410333 -0.966235 -2.705113 -4.889213 2.022339 -1.039281 -0.677593 -1.965741 3.125058 -1.807051 -0.416159 1.163518 3.220792 -2.541241 3.840183 -1.186485 1.666300 0.491352 1.357616 -1.590947 -0.913088 2.309584 4.268942 -1.933494 -0.257214 -2.986829 0.454602 -3.624373 -1.032610 -0.742329 1.942062 1.800914 -3.573781 -2.714045 -0.064914 -0.841786 -5.676562 0.281313 -2.335169 -2.360506 1.375087 2.196890 3.191665 3.025373 5.390624 -1.879563 1.669039 0.380629 -2.160820 3.289637 -0.792748 3.171486 -2.099596 -2.661947 0.531120 -0.954818 2.027242 -0.880286 1.193122 0.084250 -5.040238 -1.313558 0.004435 1.913389 -0.749311 2.149990 3.740640 1.973391 -4.418483 0.885425 3.400062 -2.391082 -0.327407 1.052112 -3.570283 0.952364 1.703567 -0.771380 3.758695 0.506256 -2.064566 1.677678 -0.996866 1.474986 -2.599514 -0.518459 -1.975769 -1.064646 -2.884815 -0.365093 -1.355398 -1.570138 -1.802033 -3.470798 4.016772 -4.096401 -3.464294 4.549205 0.059411 2.384510 -6.027617 4.739966 -2.299012 3.199410 -0.596205 0.752950 -0.319499 0.499384 -3.766198 1.647261 0.271396 -1.197521 2.457607 5.681952 2.346359 1.365054 -1.093640 4.696193 -1.594882 4.217757 -1.902216 3.735101 -1.561536 -3.972896 1.158951 -0.469027 -2.056081 -1.678221 2.581330 4.282399 1.991493 2.585902 3.480773 2.779690 5.327117 -1.477702 2.601096 -0.948847 1.861461 -1.116602 -1.604630 2.418357 2.176552 -1.084064 2.140924 -5.082892 -7.072766 -4.281309 -5.968200 2.150421 -2.992940 0.837788 -1.410230 -0.514485 -4.789053 -2.601293 0.991202 -1.116577 4.310278 2.958147 0.879085 2.652765 4.698513 -3.277458 0.635955 1.684040 2.951800 0.833996 -1.489656 -4.204246 3.498180 -2.830518 0.211195 5.180516 -1.940481 1.788466 -0.864630 2.777071 -3.468423 5.204653 0.643398 -2.067414 4.652301 2.862938 3.309809 3.053184 -1.603618 -PE-benchmarks/dfs.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/dfs.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/dfs.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/dfs.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/dfs.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/dfs.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -0.208879 -1.747821 6.023531 3.122328 -1.894539 0.197902 1.790304 -2.059438 1.574756 -0.977300 -1.337404 0.784723 -3.036343 0.000887 -0.391821 0.488318 -5.373973 -2.350505 -0.757719 -2.207811 -1.569130 -1.738574 1.203383 2.085812 2.732665 2.419262 -1.369255 -0.515280 -1.861274 -1.981423 1.692550 -0.648728 1.837166 2.721810 1.795874 -6.814132 2.736220 1.356516 -0.927912 -2.210085 1.913419 -0.804401 -0.368487 -1.275747 -1.363711 1.001534 1.733556 3.630797 2.220998 1.113491 -0.594588 -1.694313 0.485352 4.710023 -0.580677 1.542930 2.422349 -1.481490 0.054219 0.143824 -0.028819 -1.868516 0.452361 1.265562 -0.838205 -1.787536 1.197303 -2.992190 -2.012347 2.961328 1.139583 -1.048324 -2.131449 -2.107255 -2.807209 -0.621087 -0.928066 3.675192 4.542878 -3.246936 2.826262 0.622009 1.446081 -0.339999 0.438855 0.240072 2.479325 0.448048 -0.885312 -0.394980 -3.398427 -2.202696 -0.181615 -0.181931 -0.439430 -3.577683 1.792578 -4.934035 -3.566406 0.956983 1.163255 -1.814404 -1.246006 0.602130 1.274504 0.733992 -0.886579 -2.472499 -0.839044 0.701925 -1.798237 1.036401 -0.002058 1.355906 -1.164614 -0.816143 -4.253853 1.529139 0.206537 -0.975503 -0.050707 2.826880 -1.000466 1.656477 1.148109 1.627943 -0.982155 3.690718 1.238672 0.376275 0.613461 -0.157922 -0.515219 0.132491 1.503032 2.292269 -1.117906 -1.412078 -0.349734 1.011707 -2.366321 -0.297121 -0.630309 2.896263 1.316434 -2.849631 -3.511956 -1.414316 -2.781603 -4.329850 0.663441 -2.033408 -2.080346 2.046869 1.644003 2.681510 0.991001 3.107574 -2.017056 1.524552 -0.320971 -1.042933 0.616831 0.420237 2.537850 -2.080645 -1.143929 0.715347 -0.371200 1.944544 -0.002724 -1.132464 0.641203 -3.744314 -2.310943 1.290324 1.505825 0.291589 1.456544 3.274456 3.021249 -2.361605 -0.428078 2.221713 -0.687068 -1.623703 1.918085 -2.767745 1.867172 0.351198 0.024905 3.031792 0.369429 -1.019450 1.637428 -0.492222 0.577953 -2.225189 -0.516809 -1.246130 0.533758 -2.132372 0.584455 -2.193615 -1.130043 -1.565813 -2.077701 3.790904 -3.288481 -3.202064 3.570645 -0.724260 3.707208 -4.405723 3.702467 -1.408835 3.159484 -0.522834 -0.944022 -0.175747 -1.780003 -1.226077 1.471753 -0.192470 -0.003538 0.802306 3.130153 1.530488 1.171348 0.212183 3.309524 -0.952330 2.595802 -0.982720 1.613361 -1.260659 -1.731894 -0.049180 -0.210183 -0.987908 0.086595 1.082906 2.634822 1.728007 1.661892 3.061352 1.859142 2.377115 -1.360741 0.483183 -0.389408 2.699433 -2.201138 -2.090501 1.031404 2.170357 -1.034897 1.026583 -4.460770 -5.235713 -4.099476 -4.426547 -1.784010 -1.728580 1.551897 -0.191583 -0.563865 -2.582873 -1.659369 2.269250 0.126029 3.013718 2.279648 0.203748 3.236961 3.715384 -1.320213 -0.874380 1.754226 2.446792 -0.351217 0.237908 -4.229171 2.242180 -3.096494 1.136327 4.587154 -1.988558 1.506189 -1.638872 3.737448 -4.170246 3.854077 1.072238 -3.526818 1.992816 2.631974 1.466268 1.827302 -1.836234 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::SuffixTrieNode() = 0.020023 -1.131077 2.453139 1.843633 -0.252672 0.348082 0.612827 -0.666712 1.021677 0.552493 -0.720746 0.775373 -1.315022 0.206068 0.380014 0.827775 -1.962603 -1.219391 0.070637 -0.542931 -0.577249 -0.889805 0.135357 0.767911 1.105606 0.864670 -0.716008 -0.197304 -1.212458 -1.008470 0.312752 -0.535180 0.907852 1.113855 0.825436 -2.385582 1.270345 0.897269 -0.256276 -1.518413 0.489089 -0.827729 0.207900 -0.655184 0.140459 0.773436 0.953960 1.490925 0.936470 0.598449 -0.105998 -0.659225 0.402760 1.738278 -0.324726 0.883869 1.024526 -0.651213 -0.005516 -0.169276 0.324160 -0.771116 0.689564 0.723189 -0.637872 -0.996967 0.001427 -0.918921 -0.962840 1.017131 0.768320 -0.171504 -1.365692 -0.698779 -0.623908 -0.339438 -1.345280 1.429285 2.158885 -1.180671 1.538269 0.671596 1.061699 -0.053391 0.737626 0.102462 1.400859 0.333220 -0.846741 -0.117935 -1.590550 -1.206103 0.075448 0.005895 -0.266536 -0.922824 0.366512 -1.274855 -1.663999 0.576299 0.304685 -0.395342 -0.659731 0.444479 0.901086 0.729136 -0.276280 -1.247050 -0.237043 0.104459 -0.801031 -0.260850 -0.138209 -0.083244 -0.641256 -0.337015 -1.846967 0.198228 0.393062 -0.686071 -0.098030 1.264967 -0.492970 0.673240 0.072383 0.324295 -0.164429 1.468066 0.674094 0.478594 0.602255 -0.513399 -1.081516 0.708188 0.714294 0.807472 -0.556636 -0.192531 -0.105200 0.461862 -0.754586 0.094166 -0.129414 1.635108 0.901818 -1.061104 -1.404251 -1.041241 -0.735505 -1.198841 0.646027 -0.891892 -0.323232 0.203037 1.084770 0.770299 0.655616 1.383483 -1.199000 0.823256 -0.201142 0.169849 0.725337 0.619798 1.017934 -0.957039 -0.437284 0.703284 0.658025 0.327775 0.142652 -0.489707 0.510431 -1.354391 -0.712120 0.786949 0.420235 0.148062 1.231981 0.958890 1.883022 -0.905877 0.019376 0.763049 -0.002372 -0.441352 0.584532 -1.363210 1.090605 0.073970 0.326443 1.312415 0.028955 -0.800307 0.521809 0.005385 0.213157 -0.960024 0.210331 -0.653352 0.066384 -0.671642 0.570629 -0.956930 -0.718689 -0.638848 -0.131778 1.854664 -0.548401 -1.426439 1.069931 -0.891801 1.240729 -1.887956 1.811366 -0.958234 0.775855 -0.568654 -0.586820 -0.008257 -0.342136 -0.592473 0.393433 0.553826 -0.025049 0.392009 1.074508 0.727214 0.288745 0.337710 1.048993 -0.069930 0.829832 -0.234104 0.794110 -0.344618 0.105350 -0.155583 -0.330251 0.105365 0.347663 -0.081990 1.079766 0.902467 0.454647 1.125273 0.653034 0.772386 -0.849597 0.434108 -0.243059 1.305713 -0.922451 -0.665701 -0.044105 0.408779 -0.289535 0.676326 -1.922401 -1.744677 -0.762432 -1.433630 -0.817033 0.088750 0.631237 0.154164 -0.032468 -1.371859 -0.760786 0.947803 -0.007349 1.176272 0.699682 0.084257 1.269120 1.143947 -0.366917 -0.824080 0.127628 0.388127 -0.241843 -0.015291 -1.362511 1.073327 -1.405859 0.723933 1.771572 -0.990332 0.305542 -0.821067 1.835811 -1.435283 1.831207 0.712334 -1.424881 0.645354 1.218107 1.451631 -0.173865 -1.052917 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -0.253486 -1.162982 4.723760 2.635482 -1.452690 -0.010192 1.099021 -1.779176 1.338478 -0.849139 -0.885520 0.675075 -2.333700 0.366112 -0.218511 0.807481 -4.130281 -1.930840 -0.760974 -1.912986 -1.193458 -1.187779 1.179980 1.361237 2.153003 2.031553 -1.276361 -0.396692 -1.451730 -1.995220 1.322681 -0.631354 1.627522 2.382140 1.197107 -5.127792 2.279243 1.106677 -0.873567 -1.665614 1.717895 -0.947081 -0.223715 -1.259233 -0.865044 1.047543 1.132579 2.271141 1.912958 0.912338 -0.330778 -0.792090 0.309321 2.991544 -0.914046 1.058933 1.634372 -1.178573 -0.269755 -0.156055 -0.093404 -1.126468 0.560176 0.877911 -0.906904 -1.930151 0.663205 -2.260066 -1.752454 2.278823 0.776331 -0.692887 -1.820565 -1.557167 -2.150186 -0.540401 -0.370398 2.729658 3.408488 -2.379035 1.865611 0.380005 0.836198 -0.315776 0.353381 0.242938 2.003121 0.365287 -0.494719 -0.463885 -2.565269 -1.797111 -0.215204 0.302174 -0.315972 -2.268379 1.326260 -3.830114 -2.678840 0.524101 1.043605 -1.358755 -1.513381 0.434371 0.978613 0.746902 -0.445032 -1.864060 -0.421122 0.451759 -0.929922 0.574432 -0.212763 0.653121 -1.029991 -0.616868 -3.553256 1.270095 -0.028964 -0.700181 -0.183221 2.015525 -0.826749 0.864430 0.861978 1.511461 -1.048003 2.971492 0.638682 0.559928 0.762717 -0.176749 -0.463023 -0.013599 1.199244 1.930503 -1.185894 -1.206455 -0.780000 0.515958 -2.085075 -0.502760 -0.483836 2.258022 1.589238 -2.225095 -2.680560 -0.914580 -1.973352 -3.451529 0.603926 -1.728617 -1.191689 1.409865 1.207814 1.873183 1.187003 2.812121 -1.567304 1.193069 -0.152587 -0.779126 1.047985 0.434035 2.042742 -1.597144 -0.952530 0.838744 -0.340671 1.293414 0.010141 -0.604608 0.629082 -3.044621 -1.886855 1.299121 0.972650 0.354749 1.322873 2.401227 2.286633 -1.672219 -0.098130 1.852483 -0.697929 -1.068280 1.483042 -2.044937 1.414221 0.366070 0.125129 2.447916 0.256861 -0.983308 1.191329 -0.170204 0.553965 -1.763525 -0.215751 -1.043314 0.542647 -1.749500 0.122191 -1.587092 -0.963605 -0.997042 -1.497075 2.945504 -2.038872 -2.727523 2.768220 -0.803996 2.872641 -3.803085 2.474969 -1.274629 2.268776 -0.626349 -0.459963 -0.153252 -1.518022 -1.302940 1.061577 0.048490 0.002795 0.644680 2.492217 1.268377 0.717742 0.061375 2.543451 -0.542328 2.473459 -0.677849 1.569303 -0.983134 -1.053035 0.094617 -0.088221 -1.004347 -0.114677 0.782465 2.015936 1.313948 1.420967 2.393661 1.523100 2.245464 -1.104688 0.722328 -0.407806 1.888441 -1.552878 -1.574812 0.971421 1.653104 -0.816464 0.972917 -3.358962 -4.208421 -2.834126 -3.710038 -1.088206 -1.059449 1.269473 -0.229573 -0.463761 -1.999829 -1.254344 1.611133 0.175123 2.890359 1.662457 0.117644 2.357974 2.900383 -1.292728 -0.884054 1.103940 1.730478 -0.024769 0.081264 -3.321344 1.912571 -2.061986 0.618740 3.654907 -1.772025 1.109620 -1.427171 3.167686 -2.917635 3.242319 0.704364 -2.520108 2.006447 1.849467 1.219628 1.390247 -1.351181 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 0.342815 -1.407154 6.148214 3.470955 -2.288614 0.015559 1.426957 -2.526813 2.260886 -2.898535 -1.293924 0.668414 -3.698385 0.933153 -1.707617 0.337862 -6.277265 -2.759183 -1.349123 -2.295470 -1.238475 -1.981448 2.179233 1.996840 2.781556 4.297309 -1.838848 -0.503088 -2.939603 -0.549065 3.129066 -0.743416 2.178750 4.001956 1.226882 -6.636449 2.703054 1.775273 -1.265378 -2.696181 2.718766 -2.370186 -0.349950 -2.929604 -0.865027 0.866692 0.704662 4.473853 2.631193 0.169407 -1.756357 -0.342742 -0.505879 4.028649 -2.057963 1.276788 2.110747 -0.802022 -0.558135 -0.419571 -0.180059 -0.630921 0.767299 1.488448 -2.024481 -2.855399 0.838698 -3.591879 -2.612017 3.487938 1.078753 0.274613 -2.816836 -1.537787 -3.673433 -0.129877 0.309199 4.374978 4.548984 -3.285628 2.089716 -0.152399 0.952756 -0.528700 0.427049 0.556107 2.558736 0.449232 -0.235372 -1.406574 -5.770280 -1.596650 -0.249376 -1.307010 -0.445641 -4.584776 1.661875 -6.384332 -3.603304 -0.405322 1.460237 -2.240420 -0.826087 1.217873 1.362068 1.287660 -0.500640 -2.454157 0.262647 1.040227 -1.124285 0.776527 0.428397 1.333570 -1.303454 -2.516010 -4.766987 1.894464 -0.374804 -0.644263 0.715401 2.941085 -1.703129 0.659491 1.166250 1.659032 -1.466252 4.167576 0.275072 -0.094877 1.420292 -0.124437 1.603080 0.254420 1.565475 4.458310 -2.299074 -1.414596 -1.268382 0.593440 -3.063270 -2.463462 -0.959850 1.561575 0.750038 -3.914000 -3.068103 -1.240108 -2.608093 -5.040886 0.149146 -1.904591 -1.720876 1.892943 1.927660 3.376511 2.097252 4.135025 -2.410396 1.076744 0.479413 -1.036186 1.846628 1.762007 2.641310 -1.997675 -1.880721 1.141274 -1.726952 1.876948 -0.672380 0.041656 0.258024 -4.326586 -2.143761 1.643236 1.941828 0.898817 2.331770 3.489481 -0.239487 -2.907710 0.417702 2.814196 -1.247947 -1.278462 1.829777 -2.905489 2.369112 0.733268 0.491035 3.228023 0.127071 -1.296826 1.590431 0.156200 1.154377 -2.652639 -1.054064 -1.514968 -0.145061 -3.331174 1.023458 -1.516801 -1.674666 -1.962615 -2.790399 3.957067 -2.892529 -3.678091 3.873091 -0.683919 4.497458 -5.084532 1.517357 -1.801047 3.451745 0.251515 0.078536 0.222098 -3.145215 -2.673234 0.870218 0.190657 -0.184344 1.093653 3.008675 2.144655 0.792607 0.018705 3.414102 -0.652018 3.499960 -1.563403 1.903735 -1.289483 -2.122654 1.232134 -0.345951 -1.302745 -0.351150 1.566162 4.455111 2.213140 3.676019 4.437803 1.863016 3.573177 -1.442099 0.532059 -0.853898 1.822492 -1.658468 -1.989569 1.162364 2.267676 -1.185216 1.669806 -4.561223 -7.330222 -3.824592 -5.780802 -0.165753 -3.759775 1.372112 -0.255043 -0.444215 -3.464127 -1.885635 0.570192 -0.135287 5.434020 2.216857 -0.161342 2.863348 4.189614 -3.322468 -0.384802 3.153410 3.302205 -0.074088 0.155425 -5.457305 3.117210 -2.431817 0.700095 5.908814 -2.983729 1.690080 -2.959464 4.939334 -3.692140 5.010196 1.177525 -3.959733 2.618848 1.670825 2.068545 3.784491 -1.993038 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/trie-suffixes.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/trie-suffixes.cpp__main = 2.519957 -2.529873 19.782618 8.394817 -3.513566 -0.314632 12.175242 -9.314322 10.746025 -2.022152 -3.856573 -4.819086 -12.332515 -0.949105 -4.927190 1.756669 -18.130443 -8.307573 -2.628516 -8.915336 -3.820761 -8.850613 11.854260 -0.862256 11.183364 6.635740 -3.751237 -6.607596 -6.628871 -3.339599 14.400140 -3.110631 4.434548 8.604105 -0.241115 -22.032781 11.332179 2.791122 -5.186285 -4.013092 8.643200 -2.054816 -1.803405 -3.217245 1.374923 1.469972 2.781217 19.180525 11.686419 4.340227 1.390171 -7.436589 -1.750437 18.042500 -9.203649 4.045602 3.409928 -2.268652 -1.455824 7.461491 -0.690095 -3.316071 0.737117 8.167795 -1.715569 -4.457491 6.926325 -12.915400 -10.724113 13.471295 0.885435 -1.727329 -7.160365 -2.546182 -6.110077 0.565113 -8.457277 12.929447 15.031854 -9.564713 9.660407 -0.975543 4.297301 -4.218377 -4.807958 0.948414 3.920710 -0.135519 -2.519838 -7.494746 -17.669160 -5.323880 -0.429552 -6.651757 0.809971 -16.653508 7.177750 -10.374429 -11.067644 -1.327045 6.040557 -5.764936 -2.982048 6.987066 3.918333 1.054279 -2.790576 -9.450033 -2.378657 1.938515 -9.402678 6.882305 1.920694 0.873454 -6.968159 -6.848696 -12.135322 3.655741 -4.871226 -3.468071 -2.697306 9.454121 -6.667056 2.047999 5.639420 6.102829 -3.718205 9.859729 0.894847 2.506977 7.831248 3.150474 -3.048591 0.167462 8.567994 15.082396 0.263103 -1.559585 -4.745050 2.992513 -13.281208 -3.599201 -2.138452 4.288697 3.143151 -14.995262 -10.404690 0.754062 -3.429722 -16.288070 3.482499 -5.806929 -5.375726 2.242738 7.082456 12.045305 6.292916 13.140695 -12.374468 3.930707 -1.510886 -4.287113 2.228796 5.115258 9.709715 -6.186372 -4.006463 -2.856301 -2.868660 4.114571 -3.316180 -2.518956 -0.490365 -16.784123 -4.547449 -0.669698 3.843544 -3.180950 -0.931113 11.862702 3.269277 -14.297464 0.116392 12.961728 -1.569570 -6.217440 8.548181 -11.659229 8.617651 1.368455 0.786339 6.942226 2.099276 -3.079313 4.244974 -4.816480 1.452969 -6.991865 -7.302445 -3.779826 -2.341708 -8.080933 4.516122 -5.958327 -5.601073 -2.968992 -6.495936 9.798420 -3.212779 -8.718998 14.897550 -3.429081 7.678143 -11.529393 15.595407 -4.956996 3.656860 -1.345903 -1.165885 -1.974348 -1.196363 -5.408649 2.230253 -3.909387 1.198056 9.125310 16.299764 7.314635 5.268285 -1.451980 13.640902 -4.583491 8.315181 -3.994044 4.680108 -5.871382 -10.527812 2.810286 -1.737717 -3.599891 -3.043891 3.718766 16.903343 8.737809 6.218576 15.102050 2.972430 12.295164 -3.648409 3.472241 1.054598 8.392605 -3.740406 -6.225238 7.552781 3.678953 -7.383319 5.674536 -14.857119 -20.981577 -6.168010 -18.555816 -1.724352 -13.372777 4.795960 -3.031357 0.123624 -11.852373 -4.890692 -0.329612 -0.661829 7.659261 6.859728 -0.818985 7.834665 15.113218 -10.615335 1.860593 8.982366 11.489207 -1.629187 -3.566055 -14.418958 9.874065 -10.801836 2.614870 14.858013 -7.301062 2.694529 -9.484746 13.448799 -15.203659 12.032666 2.634612 -5.936340 9.715034 4.371577 10.739140 13.256165 -4.730568 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::SuffixTrie(std::__cxx11::basic_string, std::allocator >) = -0.696961 -1.343575 3.236674 1.588185 -0.772504 0.079643 1.431560 -0.741723 0.854036 -0.441100 -0.802370 0.630667 -2.274131 0.118891 -0.402683 0.194480 -2.670807 -1.854153 -0.164745 -0.883290 -0.894445 -1.299235 0.757630 1.477921 1.480954 1.205725 -0.787076 -0.511869 -1.706085 -1.184261 0.754915 -0.500733 1.223102 1.592896 0.886847 -3.539114 1.236925 0.806237 -0.427483 -1.389552 1.224924 -0.707008 -0.028056 -0.682250 -0.537799 0.694926 1.495174 2.163081 1.218193 0.672144 -0.074948 -1.313333 0.055321 2.419559 -0.468785 0.978211 1.596591 -0.657328 0.024832 -0.251151 -0.121007 -1.463116 0.424452 1.005021 -1.080615 -0.643505 0.715541 -1.731303 -1.438786 1.593801 0.784080 -0.127434 -1.420061 -1.065025 -1.452959 -0.374735 0.173268 1.714317 3.026664 -1.762336 1.964590 0.634500 1.215575 -0.380923 0.247081 0.109689 1.255492 0.154777 -0.888093 -0.522099 -2.525435 -0.889908 -0.770033 0.554458 0.025086 -1.415150 0.999727 -2.515789 -2.256600 0.443232 0.087150 -0.866255 -0.812579 0.902014 0.875821 0.679615 -0.565919 -1.794926 -0.803730 0.273535 -1.020215 0.580073 0.213935 0.633224 -0.863068 -0.805513 -2.581358 0.479227 0.208905 -1.269480 -0.153742 1.595529 -0.905924 1.687385 0.979142 0.977220 -0.313810 2.158004 1.426531 -0.088902 0.714485 -0.801864 -0.685748 -0.150811 0.705155 1.936426 -1.023548 -0.655044 -0.033834 0.360437 -1.035004 -0.530996 -0.313385 1.716822 0.906152 -1.964668 -2.131361 -0.929890 -1.220623 -2.364605 0.592253 -1.449202 -0.773387 0.708786 0.824750 1.177366 0.431300 2.707111 -1.127625 1.356272 0.057064 -0.686955 0.156266 0.311754 1.598862 -1.263115 -0.952556 0.553656 0.182101 0.852546 -0.046206 -0.829875 0.372416 -2.398993 -1.637627 0.674445 0.665633 0.182999 1.114846 1.542721 1.803977 -1.434816 -0.157875 1.133988 -0.187924 -0.857602 1.089191 -1.841374 1.369376 0.049964 -0.154894 1.667476 0.319315 -1.046270 1.433012 -0.241042 0.411316 -1.615238 0.071225 -0.881520 0.255196 -1.482762 0.333622 -1.118206 -0.761527 -0.648637 -0.754151 2.243396 -1.272627 -2.158729 1.418910 -0.090852 2.355911 -3.067359 2.170514 -0.846876 1.888045 -0.373215 -0.453653 -0.087167 -0.780601 -0.055609 0.590494 -0.023320 0.114262 0.811009 1.731535 0.744246 0.748954 0.686815 1.864657 -0.055568 1.156022 -0.336877 0.661794 -0.560508 -1.167856 0.263974 -0.165609 -0.207845 0.495126 0.376550 1.555640 1.521809 0.463233 2.137359 1.219429 1.258469 -0.713651 -0.012062 -0.279048 2.181786 -1.391665 -1.080934 0.054047 1.152686 -0.691544 0.878195 -2.561144 -3.387458 -1.550254 -3.216310 -1.118669 -0.871117 0.992599 0.088550 -0.057623 -1.732493 -0.747603 1.107894 0.125955 2.674830 1.330129 0.217316 2.070278 2.169205 -0.882858 -0.981318 1.239351 1.462034 -0.552704 0.280071 -2.200939 0.660733 -1.940704 0.927193 2.363372 -1.219379 0.614913 -1.322206 2.394732 -2.440283 2.736610 0.928740 -2.108026 1.473719 1.156792 1.324928 0.857556 -1.049926 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/trie-suffixes.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/trie-suffixes.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.559354 -1.112255 6.819190 3.704652 -1.380954 0.047994 2.326211 -3.691297 3.060954 -1.405149 -0.385703 0.456192 -3.699805 1.303337 -3.437818 1.789518 -5.247821 -2.978969 -1.943166 -4.166050 -1.450427 -1.519054 3.323599 0.218578 3.552059 0.603390 -2.300098 -2.054698 -3.856418 -2.065849 3.411039 -0.992663 2.110100 -0.642455 -0.758004 -8.582543 3.720794 2.423558 -2.389961 -2.275541 3.843565 -2.558679 -0.423550 -1.851452 -1.482355 -0.222742 -0.201668 2.329804 3.503682 1.098589 1.019756 1.711526 -0.097605 7.543765 -4.095587 1.910225 1.252360 -0.360410 -1.828120 1.268614 -0.260789 0.374290 0.991261 0.872637 -0.849289 -4.007665 0.155763 -3.014645 -3.193540 3.169458 -0.378084 -0.960239 -2.152450 -0.567133 -4.073924 -1.011025 -0.191880 3.374391 4.446855 -3.714946 2.112907 -0.841578 -0.232069 -0.304329 0.020527 0.791533 1.946217 0.411471 0.509629 -2.281502 -3.551152 0.937183 0.187993 -0.022996 -0.978813 -6.391859 3.278660 -4.558407 -4.087887 -0.002262 2.475109 -2.467011 -1.920696 0.053344 0.367677 1.331665 -2.053331 -3.187028 -0.795560 1.400502 0.518611 0.255011 0.546509 -1.410333 -0.966235 -2.705113 -4.889213 2.022339 -1.039281 -0.677593 -1.965741 3.125058 -1.807051 -0.416159 1.163518 3.220792 -2.541241 3.840183 -1.186485 1.666300 0.491352 1.357616 -1.590947 -0.913088 2.309584 4.268942 -1.933494 -0.257214 -2.986829 0.454602 -3.624373 -1.032610 -0.742329 1.942062 1.800914 -3.573781 -2.714045 -0.064914 -0.841786 -5.676562 0.281313 -2.335169 -2.360506 1.375087 2.196890 3.191665 3.025373 5.390624 -1.879563 1.669039 0.380629 -2.160820 3.289637 -0.792748 3.171486 -2.099596 -2.661947 0.531120 -0.954818 2.027242 -0.880286 1.193122 0.084250 -5.040238 -1.313558 0.004435 1.913389 -0.749311 2.149990 3.740640 1.973391 -4.418483 0.885425 3.400062 -2.391082 -0.327407 1.052112 -3.570283 0.952364 1.703567 -0.771380 3.758695 0.506256 -2.064566 1.677678 -0.996866 1.474986 -2.599514 -0.518459 -1.975769 -1.064646 -2.884815 -0.365093 -1.355398 -1.570138 -1.802033 -3.470798 4.016772 -4.096401 -3.464294 4.549205 0.059411 2.384510 -6.027617 4.739966 -2.299012 3.199410 -0.596205 0.752950 -0.319499 0.499384 -3.766198 1.647261 0.271396 -1.197521 2.457607 5.681952 2.346359 1.365054 -1.093640 4.696193 -1.594882 4.217757 -1.902216 3.735101 -1.561536 -3.972896 1.158951 -0.469027 -2.056081 -1.678221 2.581330 4.282399 1.991493 2.585902 3.480773 2.779690 5.327117 -1.477702 2.601096 -0.948847 1.861461 -1.116602 -1.604630 2.418357 2.176552 -1.084064 2.140924 -5.082892 -7.072766 -4.281309 -5.968200 2.150421 -2.992940 0.837788 -1.410230 -0.514485 -4.789053 -2.601293 0.991202 -1.116577 4.310278 2.958147 0.879085 2.652765 4.698513 -3.277458 0.635955 1.684040 2.951800 0.833996 -1.489656 -4.204246 3.498180 -2.830518 0.211195 5.180516 -1.940481 1.788466 -0.864630 2.777071 -3.468423 5.204653 0.643398 -2.067414 4.652301 2.862938 3.309809 3.053184 -1.603618 -PE-benchmarks/trie-suffixes.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/trie-suffixes.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/trie-suffixes.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/trie-suffixes.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/trie-suffixes.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/trie-suffixes.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -1.601631 -5.593962 12.078013 7.775790 -0.892032 1.735461 3.504341 -2.245599 2.376274 3.079475 -3.113763 4.841180 -6.055855 -0.268654 0.376346 2.080048 -8.302384 -5.881664 -0.563473 -2.278953 -3.622633 -3.866231 -0.468047 6.030656 5.645901 3.491689 -4.589828 -0.703519 -6.490302 -7.458962 -1.223771 -1.151745 4.295777 2.154842 4.392780 -11.863699 5.930398 5.672221 -0.383731 -6.064859 3.265075 -2.235733 -0.090565 -0.792168 -1.748830 3.457348 5.409767 5.285801 3.538223 2.908233 0.138921 -3.267608 2.762671 9.366420 1.106868 4.886209 6.464474 -2.859561 0.597821 -1.226717 0.741985 -5.511716 2.078682 1.950892 -2.457700 -2.758612 1.938174 -3.109690 -3.320924 4.778284 3.205231 -3.387410 -4.573727 -4.466604 -5.141058 -1.369137 1.309679 5.530115 9.581617 -5.383456 7.451456 3.081778 4.564272 0.434509 2.325687 -0.254138 5.471440 1.331153 -3.117495 -1.316726 -7.164286 -4.553847 -1.366463 2.837653 -2.568197 -3.874367 2.979107 -9.330032 -8.700084 2.885962 0.453047 -3.780161 -3.458839 1.608898 3.970754 2.277489 -0.377614 -5.433970 -2.935511 1.915292 -4.589592 -0.141316 -0.314405 -0.046654 -2.103439 0.758602 -8.803891 2.942541 2.637796 -2.892158 -1.495320 6.371251 -1.630729 5.636835 1.244655 2.936457 -0.410432 5.714824 4.621605 1.252867 0.593424 -1.879790 -3.818785 0.526651 2.034141 1.439636 -4.245762 -2.434520 0.363455 2.425641 -2.287984 2.153135 -2.671298 8.651737 4.214912 -4.851154 -7.394567 -5.479280 -5.584568 -6.174010 1.805187 -3.213868 -4.346419 1.453968 4.058441 2.824432 0.918150 6.628054 -3.738868 3.577595 0.577576 -1.229886 1.033865 -1.022456 4.358432 -5.036497 -2.970451 3.657868 3.247061 3.186595 -0.254824 -1.789411 2.239042 -5.589039 -4.576917 3.342879 1.309285 2.173551 5.257415 5.801225 11.667271 -4.403967 -0.972150 2.541602 -1.107136 -2.673268 2.747046 -6.190640 3.632560 0.626153 1.193262 8.691272 0.770177 -3.485820 4.673262 0.052745 0.798435 -5.649839 2.779794 -3.133879 1.566927 -2.584701 -0.560937 -4.854996 -1.735438 -4.301893 -3.395152 8.796130 -5.000617 -8.624152 4.857304 -1.701419 6.263821 -10.236697 8.098333 -3.412257 5.445445 -1.231169 -2.845247 0.312766 -2.153468 -1.568002 3.357548 1.140064 -1.068595 2.535258 5.154077 2.364392 2.361064 1.015968 4.462980 -0.610412 4.185714 -1.750321 2.575242 -1.638833 -1.998189 -1.909315 -0.808477 -0.187835 2.516394 -0.646879 1.632454 4.079837 0.754710 3.963664 4.738550 3.399150 -3.420514 1.131109 -1.099079 6.614086 -5.325063 -4.536102 -0.353731 3.193037 -0.513153 2.735692 -9.705894 -7.494635 -6.161672 -9.919472 -4.040812 -0.130505 3.247476 0.636521 -1.577724 -6.242747 -4.320409 7.242140 1.300479 7.361832 4.690123 0.607487 7.152833 5.363580 -0.915877 -2.840142 1.025045 2.124818 -1.298914 -0.351818 -6.450498 4.118408 -5.819041 4.253828 7.923424 -4.697508 3.588421 -2.900052 5.053535 -8.500255 8.877413 2.980382 -7.897686 2.148315 4.432820 5.666096 -3.103855 -5.001703 -PE-benchmarks/snake-ladder.cpp__std::queue > >::queue >, void>() = 0.044817 -0.256273 0.939189 0.605167 -0.290102 0.000000 0.036052 -0.336670 0.497510 -0.265564 -0.280262 0.135067 -0.411291 0.236487 -0.294118 0.361396 -0.953241 -0.420854 -0.061527 -0.298740 -0.176242 -0.247489 0.348718 0.019262 0.386888 0.569793 -0.305879 -0.018477 -0.269339 -0.225279 0.482487 -0.330520 0.282383 0.390065 0.062641 -1.067431 0.527474 0.174429 -0.289238 -0.465669 0.294046 -0.367769 0.089288 -0.576796 -0.177444 0.118600 0.144923 0.501509 0.411184 0.143432 -0.159295 -0.006637 0.073870 0.822925 -0.401009 0.188853 0.259341 -0.121817 -0.147209 -0.070831 0.155883 -0.001992 0.174566 0.309818 -0.147031 -0.553287 -0.164233 -0.547175 -0.387048 0.441709 -0.077177 0.224654 -0.489306 -0.107310 -0.483510 -0.097275 -0.608829 0.633499 0.772006 -0.562976 0.339794 0.043720 0.261898 0.059842 0.056555 0.216305 0.342629 0.196050 -0.142759 -0.039596 -0.285416 -0.129466 0.159327 -0.281750 -0.037928 -0.834074 0.257370 -0.792523 -0.454861 0.105812 0.298202 -0.081805 -0.005939 0.001262 0.212103 0.293294 -0.302213 -0.366436 0.164430 -0.082614 0.053426 0.002554 0.093495 0.052823 -0.163610 -0.269567 -0.722255 0.094161 -0.097369 -0.189623 0.208234 0.401611 -0.122703 -0.063081 -0.005365 0.175502 -0.266441 0.783034 0.000649 0.242553 -0.073557 0.190186 -0.065099 0.190002 0.398497 0.462850 -0.277102 -0.082294 -0.254230 0.067860 -0.472757 -0.404143 -0.092234 0.154519 0.266015 -0.432051 -0.473343 -0.240672 -0.404568 -0.826366 0.086890 -0.377483 -0.189573 0.442151 0.416787 0.480086 0.538896 0.655819 -0.443976 0.132668 -0.157701 -0.071002 0.456903 0.240603 0.405920 -0.237611 -0.188667 0.248679 -0.076732 0.208406 0.109750 -0.158264 0.141204 -0.619520 -0.009570 0.403510 0.422798 -0.033219 0.309855 0.310140 -0.090692 -0.315160 0.059722 0.476960 -0.039137 -0.116982 0.222203 -0.470093 0.401405 0.090881 0.085555 0.178153 0.035535 -0.209863 0.114589 -0.113055 0.176733 -0.295240 -0.188729 -0.183464 -0.065023 -0.404510 0.376180 -0.258291 -0.220487 -0.183332 -0.307621 0.584737 -0.633455 -0.207596 0.508167 -0.041191 0.552489 -0.503818 0.372336 -0.405907 0.706881 -0.003468 -0.018959 0.045895 -0.354322 -0.369831 0.012767 0.201936 0.060461 0.009328 0.381378 0.418674 0.059104 0.037365 0.573100 -0.115528 0.530484 -0.033186 0.287634 -0.169313 -0.222935 0.228107 -0.106385 -0.197309 -0.134915 0.298251 0.707512 0.247227 0.516831 0.683552 0.165711 0.584265 -0.354050 0.116885 -0.160602 0.388848 -0.249266 -0.197944 0.121792 0.417870 -0.225971 0.188909 -0.636550 -1.000804 -0.846194 -0.409751 -0.109533 -0.341756 0.087690 -0.175317 0.057755 -0.395976 -0.258599 0.332200 -0.199562 0.497812 0.270161 -0.004696 0.386906 0.537739 -0.442420 -0.273507 0.244150 0.327312 0.103678 0.190116 -0.796192 0.537259 -0.502807 -0.051514 0.813376 -0.472984 0.008194 -0.024349 0.623608 -0.351183 0.722527 0.235293 -0.453257 0.474203 0.422104 0.424817 0.537692 -0.338715 -PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/snake-ladder.cpp__std::queue > >::empty() const = -0.061833 -0.261137 0.681481 0.506468 -0.197877 0.041514 0.110987 -0.199577 0.249791 -0.053909 -0.145438 0.135643 -0.374759 0.111598 -0.040834 0.241812 -0.571990 -0.258945 -0.089766 -0.220447 -0.112649 -0.157849 0.178205 0.108802 0.320812 0.388933 -0.195535 -0.103937 -0.263970 -0.202203 0.215582 -0.130490 0.281267 0.347821 0.077706 -0.817790 0.315687 0.287500 -0.170343 -0.392165 0.255639 -0.251002 0.100135 -0.277683 -0.141123 0.140705 0.107343 0.192035 0.247841 0.132737 -0.051067 -0.031060 0.170845 0.534000 -0.162609 0.188458 0.237632 -0.124248 -0.104923 -0.103507 0.079017 -0.044813 0.151315 0.094106 -0.107253 -0.383423 -0.156110 -0.347442 -0.308860 0.237558 -0.052863 0.004282 -0.353416 -0.220373 -0.278654 -0.115607 -0.497883 0.432045 0.492875 -0.438637 0.304420 0.040936 0.054645 0.018525 0.092012 0.127382 0.161090 0.111380 -0.019330 0.047906 -0.110229 -0.180041 0.117402 -0.050978 -0.145497 -0.471912 0.253860 -0.376354 -0.380072 0.124664 0.185425 -0.147303 -0.115731 -0.002709 0.011383 0.286302 -0.213492 -0.278041 0.016308 0.033044 0.126283 -0.047143 -0.066560 0.091447 -0.170763 -0.222459 -0.512984 0.164838 -0.006585 -0.130392 0.070812 0.315273 -0.079802 0.045014 0.010431 0.142663 -0.194402 0.631897 0.041533 0.162674 -0.008686 0.073140 -0.134305 0.042811 0.262985 0.370429 -0.223727 -0.093892 -0.155810 0.037322 -0.234712 -0.134923 0.032139 0.233725 0.360050 -0.257923 -0.304158 -0.201479 -0.323548 -0.580744 0.047684 -0.239729 0.034761 0.378337 0.272875 0.280253 0.274668 0.560508 -0.309796 0.034448 -0.060683 -0.178965 0.275187 0.271474 0.271319 -0.207986 -0.178549 0.190929 0.006981 0.203317 0.078059 0.035269 0.089904 -0.362111 -0.038421 0.300927 0.238471 -0.041196 0.295070 0.316842 0.194958 -0.130349 0.002045 0.241068 -0.116856 -0.062593 0.139117 -0.351525 0.229143 0.067752 -0.067581 0.234330 -0.000542 -0.098246 0.165257 -0.144821 0.093055 -0.260308 0.030735 -0.188062 0.004029 -0.319087 0.108389 -0.164017 -0.199181 -0.150877 -0.152120 0.479024 -0.330868 -0.150268 0.262937 -0.003554 0.282337 -0.419105 0.461195 -0.257181 0.431613 -0.102492 -0.110079 0.046191 -0.166065 -0.209442 -0.025871 0.134464 -0.001793 -0.047199 0.364911 0.246113 -0.077694 0.001015 0.391170 -0.070124 0.400019 -0.090666 0.271200 -0.099068 -0.055451 0.124703 -0.068964 -0.120357 -0.065629 0.086619 0.524340 0.178571 0.289242 0.335013 0.147761 0.397266 -0.214515 0.150563 -0.061173 0.353526 -0.193487 -0.162134 0.078223 0.368203 -0.059488 0.110661 -0.473668 -0.631800 -0.423711 -0.326702 -0.074260 -0.074914 0.116087 -0.068371 -0.036233 -0.292753 -0.281974 0.252373 -0.145181 0.385613 0.144039 0.027795 0.336078 0.349953 -0.209305 -0.129146 0.137401 0.219841 0.089697 0.088664 -0.428200 0.341913 -0.347822 -0.028871 0.542160 -0.276291 0.140871 -0.021696 0.491888 -0.322759 0.536226 0.105868 -0.337022 0.379455 0.400470 0.264553 0.170521 -0.229746 -PE-benchmarks/snake-ladder.cpp__std::queue > >::front() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/snake-ladder.cpp__std::queue > >::pop() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/snake-ladder.cpp__std::queue > >::~queue() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/snake-ladder.cpp__main = 0.242964 -2.407348 5.493783 4.163023 -1.120746 0.613927 1.868514 -1.424260 2.205249 0.807712 -1.068276 1.489935 -2.893470 0.515825 0.976609 2.075959 -4.737901 -2.282795 0.213901 -1.446787 -1.184896 -1.653357 0.764822 1.328712 2.621249 2.205013 -1.307265 -1.581298 -1.972749 -1.438721 1.672076 -1.187618 2.299362 2.843544 1.293597 -7.610503 2.620936 1.581933 -0.932791 -3.444104 1.429925 -1.815184 0.744861 -1.928730 -0.298057 1.177370 1.856386 3.716449 2.072498 1.371413 -0.862109 -0.970061 1.477704 5.294489 -1.012577 1.713360 2.063739 -1.443468 -0.311174 -0.275338 0.755656 -1.376212 1.622590 1.208942 -0.910097 -2.505298 -0.563523 -2.691299 -2.501734 2.032547 1.702049 -0.049735 -3.217813 -1.104570 -1.317952 -0.915151 -4.801809 3.977318 4.420449 -3.414499 3.292757 1.098132 1.732935 -0.079037 1.305685 0.616815 2.435600 0.745332 -1.309765 -0.354456 -3.393380 -2.739698 0.590096 -1.400314 -0.566775 -4.157799 1.026072 -1.637068 -3.446478 1.409548 1.010759 -0.967988 -1.335238 -0.070931 1.636609 2.078051 -1.368829 -2.702539 -0.978430 0.197952 -1.295389 -0.600648 -0.242955 0.168765 -1.371658 -1.649531 -3.985958 0.702412 0.685324 -1.265724 -0.143751 2.739203 -0.995238 1.128239 0.143528 0.814405 -0.846624 3.797028 1.248880 1.020127 1.962631 -0.711699 -2.008248 1.649086 2.067301 3.065068 -0.742203 -0.695753 -0.835085 1.190538 -1.673177 -0.090612 0.901316 3.408674 2.102694 -2.073515 -2.888697 -2.198442 -0.958080 -2.887377 1.414104 -2.018149 0.223249 1.846319 2.369732 1.731051 1.692020 2.455045 -3.075730 2.013990 -0.770436 0.412784 1.756910 2.493924 2.204293 -1.942743 -0.931027 1.011231 1.119456 1.227386 -0.046121 -0.663441 1.113094 -2.727985 -1.571221 1.077806 1.408697 -0.417304 2.363544 2.244067 4.061067 -2.418097 -0.249866 1.753239 -0.600478 -0.847444 1.288273 -3.062545 2.401470 0.229365 -0.324327 2.525829 -0.132784 -1.872191 1.333620 -0.273670 0.144280 -1.547112 0.032177 -1.552672 -0.868609 -1.627082 1.207321 -2.071588 -1.793736 -1.684866 -0.375706 4.181100 -1.941510 -2.273662 2.362083 -2.534255 2.079828 -4.231268 5.631590 -2.071701 0.759397 -1.566736 -1.737089 -0.268260 -0.163554 -1.663502 0.368705 1.180008 -0.330848 0.512963 3.407654 1.742072 0.376859 0.552660 2.698181 -0.125090 2.074622 -0.650267 2.195158 -1.251155 0.189821 -0.221764 -0.630766 0.344938 0.352300 0.324749 3.599063 1.599158 1.557213 2.629805 1.611497 2.079808 -1.867233 1.098713 -0.676941 2.966402 -1.767236 -1.170296 0.035355 1.145152 -0.646588 1.769271 -4.212421 -4.252536 -2.063415 -2.367307 -1.403942 0.240828 1.375721 -0.171408 -0.069629 -3.588137 -1.770811 0.901229 -0.537752 0.788050 1.831996 0.151814 2.948971 2.678598 -1.010702 -1.602465 0.757836 1.077503 -0.085582 -0.081495 -3.040587 2.387932 -3.331563 1.370748 4.108852 -1.743021 0.674471 -1.928655 4.921735 -2.901823 4.211860 1.293521 -3.047320 1.531775 3.476723 2.733490 0.063663 -2.132035 -PE-benchmarks/snake-ladder.cpp__std::deque >::~deque() = 0.211362 -0.538844 2.551283 1.152947 -0.911126 -0.010824 1.112920 -1.130486 1.417721 -0.873387 -0.885340 -0.448692 -1.731207 0.151912 -1.422947 0.175872 -2.689512 -1.173207 -0.353598 -1.040878 -0.146104 -1.126996 1.445597 0.193172 1.324159 1.216133 -0.364672 -0.478396 -1.190083 -0.136648 1.793513 -0.669929 0.593220 1.099389 -0.053146 -2.356950 1.337741 0.653533 -0.726245 -0.959270 1.171926 -0.903393 -0.270829 -1.015665 -0.301140 0.052614 0.198268 2.335725 1.322973 0.105686 -0.260921 -0.579350 -0.247945 2.223444 -1.367224 0.507219 0.340375 -0.225702 -0.250676 0.522375 0.034246 -0.104059 0.201978 1.088020 -0.358121 -0.998902 0.428608 -1.579205 -1.256018 1.610791 -0.265935 0.393312 -1.047349 -0.061715 -1.466922 0.141167 -0.832214 1.841346 2.100244 -1.169647 1.162982 -0.141844 0.327790 -0.569219 -0.408182 0.363572 0.774247 0.127312 -0.109774 -0.937061 -1.962101 -0.131603 0.127031 -0.879095 0.031040 -2.260678 1.088102 -2.290788 -1.347148 -0.395429 0.782212 -0.951711 0.362672 0.899623 0.274281 0.432868 -0.534285 -1.183394 0.157939 0.227921 -0.506783 0.589267 0.460569 0.463730 -0.588620 -1.174502 -1.548172 0.306577 -0.695589 -0.559569 0.316473 1.135170 -0.603987 0.054919 0.636919 0.764920 -0.406443 1.512916 -0.131370 0.372619 0.510306 0.527929 0.297020 0.098721 1.062421 1.815505 -0.386294 0.047508 -0.462448 0.294718 -1.483047 -1.195376 -0.515002 0.188677 -0.041988 -2.015998 -0.959148 -0.068780 -0.758682 -2.179433 -0.026345 -0.854033 -0.969659 0.670679 1.047004 1.668261 1.081583 2.075324 -1.406334 0.365258 0.028228 -0.690681 0.728210 0.463061 1.132800 -0.680722 -0.695033 -0.075018 -0.631246 0.831326 -0.452047 -0.074002 -0.235259 -2.121667 -0.305834 0.496416 0.911788 -0.167259 0.573310 1.441640 -0.854244 -1.606365 0.372035 1.656997 -0.300586 -0.607524 0.926384 -1.644232 1.189959 0.296048 0.265705 0.566095 0.181785 -0.234267 0.509560 -0.652921 0.372699 -1.215485 -0.868738 -0.614683 -0.205262 -1.385495 0.823365 -0.485260 -0.904033 -0.550615 -0.982684 1.290051 -1.280485 -0.950896 1.764906 0.081289 1.426712 -1.519032 1.117168 -0.888341 1.401577 0.225786 0.236273 -0.002481 -0.619264 -0.983507 -0.051513 -0.091766 0.085659 1.103912 1.494320 1.112465 0.386364 -0.052777 1.892206 -0.615744 1.272020 -0.611899 0.514554 -0.369883 -1.485565 0.673446 -0.352326 -0.659593 -0.313022 0.961285 2.465173 1.122250 1.336068 2.324690 0.393871 1.733912 -0.396565 0.415864 -0.259345 0.972883 -0.409488 -0.678878 0.728468 0.854086 -0.904458 0.830788 -2.033750 -3.374878 -1.595994 -2.083407 0.086657 -2.450654 0.635310 -0.308890 0.280415 -1.608141 -0.851833 0.079917 -0.291038 1.650050 0.807937 -0.072193 0.831069 1.696640 -1.450387 0.128073 1.303881 1.865265 -0.025320 -0.170869 -2.027398 1.210742 -1.594121 0.202352 2.307863 -1.240098 0.304094 -0.918372 1.620853 -1.774637 1.810271 0.652641 -1.139642 1.494871 0.638457 1.023734 2.186297 -0.759655 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.080122 -0.272632 0.640047 0.519425 0.052134 0.024782 0.402261 -0.227671 0.394202 0.262543 -0.071807 0.060751 -0.531359 0.156003 -0.091969 0.429601 -0.355264 -0.366223 -0.036478 -0.241675 -0.030300 -0.247739 0.449549 -0.115299 0.431751 0.008225 -0.188833 -0.414787 -0.470314 -0.263809 0.296138 -0.208813 0.313144 0.138095 -0.196404 -0.614876 0.335451 0.296338 -0.237208 -0.353299 0.372587 -0.274577 0.142310 -0.158157 0.112730 0.122141 0.103571 0.140481 0.394764 0.271762 0.287895 -0.024076 0.180341 0.537935 -0.464590 0.224814 0.085117 -0.048624 -0.163858 0.043357 0.073795 0.014524 0.235931 0.200641 -0.097391 -0.398587 -0.229219 -0.306450 -0.502433 0.238279 -0.148245 0.118531 -0.438532 -0.005075 -0.068618 -0.104851 -0.632731 0.299021 0.565676 -0.350175 0.393502 0.049218 0.019627 -0.158750 -0.030035 0.131569 -0.024723 0.065774 -0.062630 -0.161298 -0.202507 -0.018900 0.033566 0.088533 -0.055546 -0.352120 0.313856 0.118100 -0.430669 0.059963 0.182596 -0.084205 -0.203292 0.180507 -0.045930 0.363717 -0.274785 -0.434595 -0.078330 -0.047511 0.203093 -0.106176 -0.069592 -0.237942 -0.300298 -0.324970 -0.469305 -0.020632 -0.152019 -0.327988 -0.192551 0.255745 -0.202773 0.060021 0.071269 0.232672 -0.182446 0.484640 0.048222 0.336034 0.299226 0.014583 -0.526585 -0.008979 0.381233 0.590114 -0.149807 0.155861 -0.338047 -0.021953 -0.263381 -0.075397 0.184230 0.247001 0.465843 -0.388023 -0.260901 -0.027458 0.062665 -0.501232 0.206473 -0.304871 0.262186 0.057979 0.298037 0.110636 0.377379 0.829799 -0.389862 0.136531 -0.017507 -0.194293 0.381341 0.252251 0.336177 -0.198726 -0.260742 0.090423 0.206239 0.015601 0.011985 0.131710 0.060485 -0.494741 0.026144 0.065804 0.090607 -0.283461 0.255369 0.206211 0.276129 -0.240617 0.089549 0.357543 -0.059067 0.011999 0.110545 -0.519410 0.308693 0.037894 -0.121275 0.148188 0.040439 -0.253446 0.246719 -0.274337 0.094684 -0.277184 0.089579 -0.259611 -0.125505 -0.338966 0.072153 -0.048013 -0.312401 0.039082 0.140354 0.442772 0.109277 -0.104417 0.171810 -0.018397 -0.020572 -0.494017 0.849036 -0.308843 0.107022 -0.232968 -0.071406 -0.012711 0.288919 -0.192040 -0.176503 0.152229 -0.002789 0.248833 0.594253 0.252311 -0.080491 0.024065 0.452062 0.002108 0.353243 -0.039985 0.357755 -0.080117 -0.146537 0.173276 -0.107716 -0.035522 -0.135694 -0.016054 0.648468 0.301056 0.067478 0.387392 0.092066 0.560441 -0.205151 0.346569 -0.010058 0.486135 -0.096685 -0.056732 0.115515 0.160069 -0.159861 0.323003 -0.468041 -0.646565 0.118101 -0.422764 0.073064 -0.030367 0.154723 -0.122761 0.052861 -0.477284 -0.280278 -0.057862 -0.191807 0.260190 0.141823 0.067535 0.260467 0.362254 -0.260728 -0.080172 -0.008097 0.219451 0.079227 -0.136133 -0.170666 0.239111 -0.415867 -0.027268 0.378176 -0.204112 0.001514 -0.126408 0.467457 -0.311955 0.607855 0.116683 -0.053125 0.649032 0.332029 0.555452 0.088649 -0.177338 -PE-benchmarks/snake-ladder.cpp__std::deque >::begin() = 0.310427 -0.258252 1.509167 1.009178 -0.353336 0.049927 0.206996 -0.802826 0.809251 0.036658 -0.344590 0.131472 -0.603809 0.337184 -0.595730 0.758050 -1.238518 -0.461330 -0.253502 -0.766637 -0.295647 -0.292252 0.539422 -0.154533 0.782743 0.482426 -0.360186 -0.200923 -0.425341 -0.708689 0.468527 -0.344653 0.257336 0.096464 0.069291 -1.125922 0.951876 0.503734 -0.502418 -0.625167 0.570800 -0.517770 -0.014836 -0.453743 0.040406 0.177035 0.028532 0.846433 0.734292 0.423397 0.158321 0.236360 0.397335 1.368066 -0.689271 0.441274 0.270069 -0.076445 -0.212847 0.263372 0.124679 0.107870 0.116763 0.196548 0.042839 -0.966732 -0.320396 -0.528584 -0.365280 0.628456 -0.212918 -0.187321 -0.778807 -0.258389 -0.610960 -0.146608 -1.907321 0.887227 0.974918 -0.876302 0.407151 0.083856 0.082589 0.012088 0.105277 0.167533 0.527183 0.234949 -0.023304 -0.148433 -0.238545 -0.181888 0.389438 -0.578539 -0.329876 -1.581916 0.556886 -1.061167 -0.839287 0.168452 0.619789 -0.406829 0.171849 0.053742 0.106267 0.243833 -0.445153 -0.576409 0.295040 0.058441 0.213423 -0.067289 0.070745 -0.248692 -0.101173 -0.117077 -1.075785 0.351240 -0.173868 -0.108863 -0.029707 0.615758 0.150313 -0.228252 0.025242 0.407180 -0.369197 1.006023 -0.208004 0.653596 -0.151390 0.689429 -0.404447 0.708023 0.700568 0.005046 -0.314337 0.313263 -0.458411 0.166802 -0.763763 -0.070189 -0.347996 0.451133 0.343048 -0.638068 -0.610872 -0.175087 -0.517976 -0.939357 0.268322 -0.418018 -0.572732 0.071655 0.594333 0.726684 0.765588 0.632080 -0.637466 -0.097148 -0.123590 -0.025546 0.778248 0.127677 0.631133 -0.414983 -0.322518 0.272316 0.059879 0.193731 0.002140 0.132258 0.203448 -0.908779 0.297251 0.399995 0.458037 -0.319197 0.649174 0.672474 0.241850 -0.398947 0.123411 0.724722 -0.352290 -0.079640 0.246454 -0.778429 0.463843 0.265676 0.389523 0.499403 0.073838 -0.023062 0.217491 -0.287128 0.252234 -0.418605 -0.241259 -0.377318 -0.385109 -0.407964 0.608783 -0.297623 -0.325892 -0.229829 -0.473598 0.830033 -0.891754 -0.102202 0.928196 -0.303500 0.318977 -0.542261 1.086958 -0.595168 0.494680 -0.002513 0.038168 0.033382 -0.096224 -0.783000 0.090644 0.248806 -0.023377 0.268549 0.780920 0.547540 0.075013 -0.099211 0.916573 -0.541017 0.883952 -0.251487 0.723155 -0.268875 -0.349983 0.150960 -0.130629 -0.481939 -0.392872 0.417811 1.080738 0.142442 0.578924 0.629960 0.202928 1.034616 -0.466234 0.686139 -0.258596 0.269180 -0.408798 -0.342661 0.469713 0.237032 -0.244591 0.360515 -1.078249 -1.121936 -1.124963 -0.387738 0.144572 -0.595198 0.245823 -0.347317 -0.099845 -0.697583 -0.706694 0.677459 -0.281542 -0.122510 0.468079 0.092602 0.483033 0.815263 -0.341999 0.065232 -0.037576 0.382640 0.309402 -0.181183 -0.751650 0.899160 -0.644365 -0.102322 1.117470 -0.534094 0.215285 -0.013363 0.617431 -0.623270 0.797068 0.150850 -0.389575 0.765528 1.026644 0.744832 0.439358 -0.450875 -PE-benchmarks/snake-ladder.cpp__std::deque >::end() = 0.310427 -0.258252 1.509167 1.009178 -0.353336 0.049927 0.206996 -0.802826 0.809251 0.036658 -0.344590 0.131472 -0.603809 0.337184 -0.595730 0.758050 -1.238518 -0.461330 -0.253502 -0.766637 -0.295647 -0.292252 0.539422 -0.154533 0.782743 0.482426 -0.360186 -0.200923 -0.425341 -0.708689 0.468527 -0.344653 0.257336 0.096464 0.069291 -1.125922 0.951876 0.503734 -0.502418 -0.625167 0.570800 -0.517770 -0.014836 -0.453743 0.040406 0.177035 0.028532 0.846433 0.734292 0.423397 0.158321 0.236360 0.397335 1.368066 -0.689271 0.441274 0.270069 -0.076445 -0.212847 0.263372 0.124679 0.107870 0.116763 0.196548 0.042839 -0.966732 -0.320396 -0.528584 -0.365280 0.628456 -0.212918 -0.187321 -0.778807 -0.258389 -0.610960 -0.146608 -1.907321 0.887227 0.974918 -0.876302 0.407151 0.083856 0.082589 0.012088 0.105277 0.167533 0.527183 0.234949 -0.023304 -0.148433 -0.238545 -0.181888 0.389438 -0.578539 -0.329876 -1.581916 0.556886 -1.061167 -0.839287 0.168452 0.619789 -0.406829 0.171849 0.053742 0.106267 0.243833 -0.445153 -0.576409 0.295040 0.058441 0.213423 -0.067289 0.070745 -0.248692 -0.101173 -0.117077 -1.075785 0.351240 -0.173868 -0.108863 -0.029707 0.615758 0.150313 -0.228252 0.025242 0.407180 -0.369197 1.006023 -0.208004 0.653596 -0.151390 0.689429 -0.404447 0.708023 0.700568 0.005046 -0.314337 0.313263 -0.458411 0.166802 -0.763763 -0.070189 -0.347996 0.451133 0.343048 -0.638068 -0.610872 -0.175087 -0.517976 -0.939357 0.268322 -0.418018 -0.572732 0.071655 0.594333 0.726684 0.765588 0.632080 -0.637466 -0.097148 -0.123590 -0.025546 0.778248 0.127677 0.631133 -0.414983 -0.322518 0.272316 0.059879 0.193731 0.002140 0.132258 0.203448 -0.908779 0.297251 0.399995 0.458037 -0.319197 0.649174 0.672474 0.241850 -0.398947 0.123411 0.724722 -0.352290 -0.079640 0.246454 -0.778429 0.463843 0.265676 0.389523 0.499403 0.073838 -0.023062 0.217491 -0.287128 0.252234 -0.418605 -0.241259 -0.377318 -0.385109 -0.407964 0.608783 -0.297623 -0.325892 -0.229829 -0.473598 0.830033 -0.891754 -0.102202 0.928196 -0.303500 0.318977 -0.542261 1.086958 -0.595168 0.494680 -0.002513 0.038168 0.033382 -0.096224 -0.783000 0.090644 0.248806 -0.023377 0.268549 0.780920 0.547540 0.075013 -0.099211 0.916573 -0.541017 0.883952 -0.251487 0.723155 -0.268875 -0.349983 0.150960 -0.130629 -0.481939 -0.392872 0.417811 1.080738 0.142442 0.578924 0.629960 0.202928 1.034616 -0.466234 0.686139 -0.258596 0.269180 -0.408798 -0.342661 0.469713 0.237032 -0.244591 0.360515 -1.078249 -1.121936 -1.124963 -0.387738 0.144572 -0.595198 0.245823 -0.347317 -0.099845 -0.697583 -0.706694 0.677459 -0.281542 -0.122510 0.468079 0.092602 0.483033 0.815263 -0.341999 0.065232 -0.037576 0.382640 0.309402 -0.181183 -0.751650 0.899160 -0.644365 -0.102322 1.117470 -0.534094 0.215285 -0.013363 0.617431 -0.623270 0.797068 0.150850 -0.389575 0.765528 1.026644 0.744832 0.439358 -0.450875 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::~_Deque_base() = 1.134606 -0.501335 4.878249 3.348777 -2.211512 0.115987 -1.036558 -2.576256 1.547066 -0.352534 -1.091010 1.061882 -0.613441 0.878256 -0.236052 2.255535 -4.769959 -0.477487 -1.037538 -2.298238 -1.390906 -0.218294 0.571989 0.406568 2.013795 3.121895 -1.382105 0.846460 0.843859 -3.500277 0.527616 -0.768008 1.013038 1.286383 1.519222 -5.053914 3.300579 1.316574 -1.158905 -1.910656 1.168450 -0.695988 -0.390753 -1.366689 -1.546469 1.026275 0.065868 2.001303 1.698855 1.220514 -0.716581 0.809043 2.080610 3.488797 -0.289362 1.021361 1.263222 -1.230967 -0.609376 -0.163107 0.520720 0.091537 0.246537 0.073355 0.643677 -3.181385 -0.517867 -1.287655 -0.648453 1.880216 -0.116855 -1.622180 -1.849323 -1.867672 -1.980875 -0.446341 -3.764015 3.183655 2.461707 -2.465486 0.656995 0.142131 -0.239375 0.624369 0.663913 0.322970 2.494727 1.031637 0.225122 0.555570 1.027280 -2.318907 1.933341 -1.458627 -1.332364 -4.508337 1.122278 -4.644217 -2.046848 1.073308 2.236736 -1.481714 -0.288542 -1.566143 0.920180 0.429479 -0.616571 -0.844449 1.111051 0.267441 0.122400 -0.257215 -0.651634 0.580015 -0.023222 1.321024 -3.379880 1.827678 0.116334 0.712824 0.833654 1.636867 1.351929 -0.934053 -0.409438 1.188219 -1.195144 3.229723 -0.828347 1.885753 -1.336936 2.507126 1.198378 2.082648 1.536019 -2.045249 -0.844238 -1.045075 -1.026999 0.888972 -2.239846 0.387556 -1.428390 1.946250 1.882437 -0.510276 -2.251602 -1.046326 -3.375095 -3.285610 0.372021 -1.162776 -2.393322 2.029221 1.563936 1.637808 1.857085 -0.014591 -1.708204 -0.545190 -0.701942 0.215175 2.115571 0.309763 1.512816 -1.269356 -0.318111 1.439742 -0.294034 1.408561 0.264651 -0.144795 1.005910 -1.686321 0.097817 2.554651 1.655818 0.371580 1.426105 2.233035 2.954399 0.281233 -0.264033 1.715777 -1.153756 -0.644566 0.912842 -1.476062 0.640371 0.749406 1.573196 2.364701 -0.043606 0.349806 0.186399 -0.032111 0.383225 -0.966909 -0.362986 -0.729961 0.383940 -0.619170 0.843946 -1.481157 -0.264285 -1.468158 -2.090165 2.724196 -4.405098 -0.956556 3.543891 -1.889803 2.114404 -1.647848 2.194127 -1.494638 2.155273 -0.149802 -0.557607 0.309962 -2.733789 -2.647699 1.285082 0.677191 0.342329 -0.808101 1.592644 1.473671 -0.021751 -0.833773 2.149209 -1.621087 3.284036 -0.760537 2.250664 -0.963293 0.348343 -0.567511 -0.045005 -2.031183 -1.167507 1.214820 1.513049 -0.526666 2.124013 1.117912 0.731866 2.375374 -1.575008 2.000772 -0.771645 0.087737 -1.533813 -1.533249 1.628156 1.839265 -0.350886 0.557849 -3.084512 -2.402284 -5.663659 -0.657772 -1.033074 -0.468101 1.198322 -1.066955 -0.946245 -0.678625 -2.011602 4.238738 -0.159329 0.043790 1.553039 0.083734 1.647709 2.177088 -0.174152 -0.243829 -0.702722 0.481724 1.179754 0.242669 -2.992255 3.139991 -1.254890 -0.327614 3.795264 -1.806820 1.230290 -0.096162 1.772205 -1.836061 1.738542 0.153075 -1.863944 1.083047 2.920199 0.356191 0.684125 -1.541383 -PE-benchmarks/snake-ladder.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.030971 -0.534112 3.689031 2.585290 -1.093533 0.124847 -0.031637 -1.880698 1.479275 0.413230 -0.240911 0.681280 -0.810499 0.673387 0.180417 1.990954 -3.040441 -0.668667 -0.711690 -2.089670 -1.050674 -0.239376 0.846609 -0.208405 1.628213 1.076641 -1.209520 -0.350421 0.037631 -2.497298 0.928100 -0.767047 1.213740 0.172951 0.329682 -5.506866 2.476931 1.023896 -1.154621 -1.415579 1.195596 -0.668144 0.166676 -0.737999 -1.237193 0.479158 0.045174 0.521805 1.585326 1.061276 0.330911 0.825352 1.366200 3.684623 -1.055960 0.844195 0.617182 -1.087942 -1.042372 0.144134 0.379700 0.144368 0.769753 0.123258 0.365978 -2.604733 -0.413163 -1.096995 -1.445428 1.217522 -0.046967 -1.120439 -1.171893 -0.926344 -1.170565 -0.851635 -1.919319 1.950786 2.040849 -1.793400 0.931256 -0.040081 -0.297241 0.464538 0.475002 0.461586 1.591759 0.601486 0.096050 0.121291 0.755619 -1.071656 1.258580 0.006462 -0.744264 -3.157385 1.100461 -1.627999 -1.626050 0.965090 1.709545 -0.740541 -1.590522 -1.528181 0.574037 0.790255 -1.001329 -1.143419 -0.178216 0.176496 0.233296 -0.404909 -0.604215 -0.606993 -0.451353 0.148988 -2.438033 1.067081 -0.127140 0.177185 -0.576127 1.367438 0.156617 -0.750961 -0.200215 1.414737 -1.354213 2.260919 -0.751254 1.677234 -0.419354 1.280584 -0.603902 0.238219 1.257940 0.125472 -0.332942 -1.083183 -1.537775 0.486339 -1.764273 0.520180 -0.052837 1.775318 2.408074 -0.333204 -1.476896 -0.480973 -1.224394 -2.823852 0.439093 -1.174120 -0.832669 1.550921 1.295354 0.860528 1.680332 1.020997 -1.290311 0.543668 -0.721416 -0.374479 2.035689 0.183288 1.388512 -0.993324 -0.456324 0.630821 0.207060 1.117947 0.186055 0.015728 0.626512 -1.510536 -0.281514 1.038385 1.046981 -0.203309 0.782017 1.580878 3.752139 -0.809741 -0.021434 1.441182 -0.936799 -0.197053 0.563779 -1.331140 0.154333 0.747768 -0.159804 1.890501 -0.002645 -0.713973 0.199787 -0.296838 0.276517 -0.733776 0.146620 -0.723411 0.193111 -0.573520 -0.260334 -1.326626 -0.470943 -1.059533 -1.192556 2.215580 -2.687325 -1.158352 2.484154 -1.237169 0.954120 -2.247117 3.110791 -1.315909 1.237149 -1.188333 -0.551782 -0.145737 -0.395621 -2.015881 1.125757 0.556801 -0.152452 -0.107865 2.442864 1.237226 0.203405 -0.866522 1.969941 -0.798707 2.412700 -0.543727 2.280386 -0.868235 -0.029411 -0.327474 -0.142926 -1.140859 -0.911890 0.881999 1.046461 0.120388 0.984097 0.719026 1.037309 2.099758 -1.142887 1.856207 -0.354314 0.752326 -0.733162 -0.800658 1.275998 1.538982 -0.284021 0.763865 -2.380657 -1.890280 -2.962667 -1.044296 -0.268227 0.862751 0.578471 -0.780335 -0.432818 -1.300736 -1.283313 2.369377 -0.429579 0.625437 1.151454 0.339706 1.326649 1.821207 -0.446457 -0.487985 -0.647352 0.132356 0.853757 -0.267690 -1.917211 2.282762 -1.263739 -0.111377 2.400065 -1.009353 0.685208 0.146880 1.528884 -1.328777 1.943127 0.098009 -0.790377 1.661455 2.162319 1.215091 0.128892 -0.966292 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_destroy_nodes(queueEntry**, queueEntry**) = -0.372193 -0.743402 2.556830 1.817560 -0.072969 0.233445 0.728796 -1.243910 1.429419 0.630500 -0.385598 0.499926 -1.484536 0.410374 -0.150822 1.174691 -1.884086 -1.288796 -0.262703 -1.118130 -0.499251 -0.952840 0.972095 0.132487 1.326914 0.464327 -0.988051 -0.431689 -1.468055 -1.812751 0.705385 -0.663416 1.058624 0.397373 0.027656 -2.825515 1.662618 1.114583 -0.632063 -1.293174 1.079735 -1.056978 0.167997 -0.508828 0.055737 0.672855 0.384304 0.595245 1.494674 0.644467 0.602648 0.005164 0.244746 1.740759 -1.308561 0.841037 0.397544 -0.614687 -0.656394 0.154755 0.151001 -0.211428 0.930050 0.797898 -0.701802 -1.519168 0.073042 -0.792737 -1.609998 1.253622 0.035277 -0.338261 -1.198448 -0.324813 -0.853183 -0.395215 -0.040910 1.122498 2.061971 -0.823016 1.341566 0.069732 0.333363 -0.294610 0.436073 0.143953 1.244565 0.212311 -0.517325 -0.738614 -1.134675 -0.599202 0.092264 0.869630 -0.146346 -0.712452 0.708066 -1.231064 -1.676255 0.159336 0.694903 -0.522136 -1.600134 0.350190 0.740235 0.841471 -0.306924 -1.483338 -0.246348 0.240435 -0.411123 -0.312282 -0.263154 -0.882529 -0.914747 -0.451910 -1.850549 0.175762 -0.177282 -0.647968 -0.855750 1.209132 -0.682787 0.079972 0.221308 1.000915 -0.566981 1.299903 -0.208265 0.998288 0.710459 -0.052955 -1.242983 -0.192571 0.832313 1.118757 -0.687651 -0.281213 -0.988402 0.175508 -1.375213 -0.115481 -0.336140 1.425412 1.676005 -1.203089 -1.149777 -0.270140 -0.263125 -1.917913 0.519450 -1.003113 -0.225963 0.075419 1.152479 0.480568 1.199258 2.189453 -1.231577 0.772769 -0.005777 -0.425604 1.500484 0.192120 1.263609 -0.962643 -0.744600 0.594120 0.458702 0.375906 -0.156426 0.082328 0.264361 -1.705063 -0.718459 0.686330 0.347745 0.146545 0.942494 1.042181 2.109331 -1.329338 0.387263 1.252752 -0.244714 -0.185205 0.460795 -1.513023 0.802673 0.400200 0.201929 1.508210 0.084680 -1.098338 0.393877 -0.120389 0.465493 -1.232926 0.287835 -0.846081 0.287950 -0.811879 -0.393241 -0.691008 -0.898388 -0.548098 -0.330275 1.747418 -0.275755 -1.799152 1.603798 -0.801640 1.060840 -2.517610 1.734943 -1.153663 0.736814 -0.903663 -0.042450 -0.110026 0.114198 -1.113103 0.482071 0.470500 -0.162069 1.024713 1.860920 0.950727 0.368070 -0.231428 1.399346 -0.051684 1.341997 -0.369918 1.342701 -0.388176 -0.313008 0.107558 -0.377193 -0.326760 -0.144062 0.115365 1.190774 1.147172 0.354523 1.283849 0.867207 1.638699 -0.762791 1.167336 -0.204536 1.119294 -0.449938 -0.676112 0.573013 0.637181 -0.433261 1.010756 -1.985066 -2.222674 -0.474250 -2.318887 -0.028400 -0.023163 0.658846 -0.131189 0.049778 -1.686542 -0.775127 0.890650 -0.072697 2.198993 0.652272 0.195799 0.950855 1.457558 -0.893499 -0.468544 -0.176640 0.491564 -0.018305 -0.570409 -1.298969 1.339118 -1.255254 0.481783 1.695860 -1.092253 0.264311 -0.756519 1.414385 -1.407967 1.992804 0.500743 -0.641050 1.651271 0.690788 1.746417 0.163658 -0.864995 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_map(queueEntry**, unsigned long) = 0.074628 -1.180886 3.512171 2.501607 -0.140533 0.121084 1.744633 -1.506536 1.452058 0.387254 -0.502250 0.901278 -2.354976 0.905171 -1.872503 1.697223 -2.425117 -1.756175 -0.562907 -1.331219 -0.324069 -0.970974 2.137690 0.123099 2.342769 0.410711 -1.328845 -1.766445 -2.583811 -1.665281 1.234134 -0.742914 1.419356 -0.254108 -0.898109 -3.514174 1.850202 1.864043 -1.131424 -1.756229 2.246634 -1.463736 -0.183035 -1.010787 -0.328953 0.145184 0.222547 1.237705 1.796913 1.050473 0.742710 0.771382 0.929308 3.445243 -1.989961 1.273031 0.822447 0.000814 -0.785757 0.192591 0.282728 0.163093 0.856823 0.708979 -0.261421 -2.120343 -0.755225 -1.311719 -1.882250 1.418671 -0.518982 0.258545 -1.779524 0.191107 -1.511075 -0.151032 -0.763972 1.725958 2.651513 -1.728536 1.667317 -0.253500 -0.256066 -0.732414 -0.221352 0.534026 0.130477 0.477085 0.192908 -1.520703 -1.579718 0.415360 0.197966 0.246011 -0.661915 -3.087893 1.804881 -1.490705 -2.362788 -0.060242 1.103322 -1.387829 -0.335162 0.523350 -0.030215 1.395838 -1.140092 -1.876486 -0.223891 0.228455 0.718189 -0.553756 0.057383 -0.802580 -0.879300 -1.178064 -2.498617 0.529733 -0.551925 -1.075775 -0.756905 1.313851 -0.519647 0.278561 0.301947 1.417073 -0.849094 1.890421 -0.217344 1.339588 0.969183 0.836090 -0.865557 -0.102621 1.725471 2.119577 -1.429187 0.463801 -1.589528 0.306355 -1.242532 -0.495458 -0.108746 1.228661 1.348385 -2.025837 -1.455252 -0.314857 -0.145357 -2.508319 0.382223 -1.259647 -0.433943 0.403844 1.486838 0.450846 1.693229 3.382014 -1.392717 0.656069 0.619854 -0.946972 1.898500 -0.017701 1.515420 -1.110151 -1.684609 0.744693 0.371738 0.759146 -0.675650 1.201558 0.218899 -2.388697 -0.308566 0.291224 0.796449 -0.863939 1.464812 1.445872 1.073594 -1.494782 0.449556 1.721440 -0.944794 -0.025060 0.413728 -2.560816 1.132655 0.481911 -0.031706 1.745463 0.309837 -1.330484 1.464889 -0.828858 0.526385 -1.559052 0.404194 -1.307066 -0.691449 -1.560750 -0.040043 0.003339 -1.152964 -0.671705 -0.687380 2.345433 -1.332101 -1.278300 1.481087 0.008211 0.506937 -3.161391 3.267553 -1.432583 0.989732 -0.192675 -0.001327 0.288928 0.554593 -1.875220 -0.154314 0.667206 -0.430650 1.541112 2.831526 1.233806 0.005452 -0.319350 2.186538 -0.392568 2.086815 -0.736662 1.758837 -0.427735 -1.742333 0.493040 -0.426182 -0.714181 -0.844444 0.671967 2.817986 1.079261 1.041997 2.040412 0.999199 3.128106 -1.061359 1.714059 -0.506400 1.701772 -0.555328 -0.723069 0.764821 0.923686 -0.588779 1.915815 -2.683634 -3.717041 -1.276875 -2.985662 0.987007 -1.454513 1.049452 -0.942166 -0.141008 -2.801074 -1.742654 0.245184 -0.711602 1.856446 1.646652 0.383335 1.251755 1.764250 -1.442791 0.417661 0.202416 1.714806 0.571680 -0.959280 -1.340188 1.349910 -1.779867 0.139865 2.533692 -1.156116 0.672665 -0.873089 1.640506 -1.721242 3.035994 0.555955 -1.014974 2.629774 1.361369 2.025556 0.771602 -1.086090 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_node(queueEntry*) = -0.071811 -0.688315 2.733736 1.599799 -0.420647 0.080161 1.063639 -1.155692 1.414464 0.233799 -0.568754 -0.041433 -1.496911 0.241866 -0.921467 0.822599 -2.044144 -1.128486 -0.421229 -1.273612 -0.305769 -0.911917 1.180430 -0.024939 1.424070 0.500777 -0.617915 -0.755456 -1.138461 -1.210188 1.208511 -0.555343 0.849201 0.201618 -0.218977 -2.909837 1.509312 1.034349 -0.758776 -1.144571 1.184406 -0.696347 -0.179730 -0.434012 -0.280567 0.269992 0.256347 1.410536 1.263025 0.610649 0.428105 -0.142529 0.395109 2.644655 -1.287097 0.720035 0.403619 -0.302524 -0.440608 0.514058 0.131606 -0.100472 0.387808 0.733914 0.003554 -1.311512 0.160738 -1.057066 -1.397262 1.348301 -0.250391 -0.218544 -0.973421 -0.226266 -1.048168 -0.129733 -1.071719 1.411379 1.998804 -1.138393 1.243635 0.071727 0.089837 -0.341742 -0.352549 0.278529 0.628066 0.209457 -0.044402 -0.881403 -1.111645 -0.203784 0.192436 -0.151466 -0.310317 -2.078919 1.263733 -1.381391 -1.446536 0.015574 0.879646 -0.886967 -0.370665 0.342867 0.181269 0.669776 -0.546496 -1.187041 -0.266431 0.279087 -0.154162 0.135625 0.114972 -0.236438 -0.571226 -0.610670 -1.722114 0.393548 -0.498933 -0.535989 -0.435124 1.065152 -0.440847 0.066488 0.463554 1.080893 -0.533391 1.395758 -0.031827 0.924831 0.461996 0.609767 -0.707720 -0.068128 1.102524 1.280547 -0.349594 -0.047152 -0.783474 0.312834 -1.213044 -0.269479 -0.346162 0.698001 0.985261 -1.497832 -0.980168 -0.245769 -0.393596 -1.874185 0.190716 -0.970474 -0.654249 0.431953 1.019356 1.089783 1.055061 2.117603 -1.437215 0.543942 -0.044291 -0.693146 0.844871 0.132930 1.088942 -0.721966 -0.784569 0.075803 0.148537 0.723350 -0.359099 0.081263 0.053133 -1.817824 -0.229676 0.471287 0.571213 -0.437228 0.664482 1.375793 1.022872 -1.504805 0.270154 1.384489 -0.555980 -0.372851 0.699542 -1.714707 0.804545 0.370702 0.086883 1.049715 0.168884 -0.463138 0.683545 -0.738752 0.183305 -1.067485 -0.155580 -0.750527 -0.258656 -1.007663 0.248820 -0.688098 -0.709977 -0.484270 -0.632219 1.478340 -1.088921 -1.103459 1.608589 -0.203163 0.604465 -1.865045 2.116335 -0.897244 0.859009 -0.315597 -0.018827 -0.134667 0.136225 -1.065953 0.056289 0.140678 -0.146044 1.122004 2.050601 0.965776 0.200549 -0.211174 1.804534 -0.595279 1.394474 -0.638232 0.947390 -0.437842 -1.131557 0.162720 -0.306798 -0.560705 -0.460847 0.636036 1.772558 0.911138 0.644298 1.553942 0.661461 1.775771 -0.477386 1.051973 -0.158940 1.135274 -0.458382 -0.553444 0.757055 0.729761 -0.759618 1.024984 -2.011928 -2.535150 -1.258104 -1.958295 0.126135 -1.177820 0.655533 -0.450226 0.014618 -1.706995 -1.094154 0.611796 -0.262084 1.153441 0.878469 0.129568 0.908144 1.533662 -0.984956 0.091582 0.416073 1.119022 0.153738 -0.643241 -1.288375 1.291257 -1.331334 0.141240 1.971878 -0.994149 0.441457 -0.523694 1.246396 -1.610767 1.907614 0.484267 -0.737751 1.578615 0.932005 1.538938 0.863976 -0.729133 -PE-benchmarks/snake-ladder.cpp__std::__deque_buf_size(unsigned long) = -0.116121 -0.623844 0.979156 0.524649 0.030321 0.105621 0.281413 0.193531 0.015119 0.492195 -0.528737 0.707594 -0.485573 -0.027828 0.401757 0.260386 -0.495962 -0.620167 0.306523 0.227686 -0.079697 -0.409765 -0.163546 0.569301 0.506457 0.399986 -0.473787 -0.109338 -0.615937 -0.806649 -0.439282 -0.107910 0.402599 0.330315 0.647154 -0.349462 0.107323 0.369117 0.193385 -0.793463 0.213179 0.076683 0.181805 0.028307 0.330817 0.699365 0.724824 0.268254 0.083560 0.219676 -0.301719 -0.568431 -0.012190 0.000508 0.282780 0.227862 0.587925 -0.265651 0.230415 -0.434771 0.267538 -0.688217 0.206806 0.247552 -0.349619 -0.136379 0.045271 -0.108106 -0.106933 0.273015 0.453772 -0.066260 -0.551848 -0.543991 -0.217233 0.030894 0.158652 0.482695 0.725903 -0.085403 0.667450 0.386950 0.821935 -0.100270 0.171772 -0.167583 0.238507 0.129630 -0.434137 -0.137739 -0.648005 -0.708830 -0.402105 0.661217 -0.062548 0.583856 0.075780 -0.487141 -0.594738 0.237135 -0.008452 -0.200319 -0.401491 0.649158 0.428512 0.526169 0.238068 -0.369246 -0.314528 -0.021199 -0.410078 -0.048503 0.028335 -0.092699 -0.469933 0.141138 -0.510601 0.050926 0.369764 -0.408596 -0.029319 0.343869 -0.302477 0.749008 0.114202 0.062891 0.108242 0.264396 0.962674 0.208077 0.179913 -0.495013 -0.696716 0.049743 0.089514 0.338915 -0.412382 -0.184655 0.065231 0.118674 0.109088 -0.069746 -0.311237 0.851842 0.749980 -0.487501 -0.698926 -0.679867 -0.319111 -0.117205 0.276569 -0.153171 0.238388 -0.051665 0.148780 -0.009904 -0.112036 0.801181 -0.631938 0.350295 0.086671 0.074556 -0.137238 0.114893 0.157106 -0.427044 -0.094373 0.273651 0.543862 0.072404 0.091312 -0.301535 0.402913 -0.266654 -0.423974 0.576671 0.183152 0.308982 0.436901 0.255966 0.482396 -0.122943 -0.458469 0.062276 0.070066 -0.441943 0.254171 -0.591318 0.616995 -0.103476 0.432791 0.564450 0.020542 -0.265709 0.632820 -0.045037 0.057991 -0.353938 0.442251 -0.415613 0.322673 -0.131809 -0.096751 -0.467629 -0.008358 -0.176808 0.114480 0.757224 0.402811 -0.903577 0.058964 -0.224272 0.590442 -0.922340 0.225784 -0.066792 0.253055 -0.027053 0.020035 -0.027827 -0.234378 0.160528 -0.123160 0.165050 0.149979 0.083226 0.186370 0.066126 -0.264405 0.309358 0.131781 0.283192 0.083294 0.088509 -0.097168 -0.124138 0.321470 -0.178421 0.140489 0.155400 0.451380 -0.409898 -0.067337 0.164414 -0.023758 0.377895 0.250061 0.041764 -0.335812 -0.063845 -0.140034 0.848046 -0.274280 -0.461668 -0.382035 0.439259 -0.219702 0.078883 -0.662524 -0.578198 0.075472 -1.165239 -0.679275 0.072791 0.290138 0.169417 -0.204161 -0.311566 -0.117581 0.288000 0.415583 0.989791 0.096590 -0.258428 0.612515 0.191438 -0.287290 -0.359340 -0.039330 0.009719 -0.201023 -0.051455 -0.293259 0.006961 -0.618624 0.262711 0.665426 -0.586347 0.071031 -0.382058 0.576456 -0.717278 0.834256 0.443793 -0.818326 -0.125062 0.137225 0.622229 -0.568378 -0.494916 -PE-benchmarks/snake-ladder.cpp__std::__new_allocator::deallocate(queueEntry*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.131137 -0.515222 1.981708 1.408704 -0.059030 0.083277 0.924341 -0.999307 1.071187 0.288900 -0.209352 0.224498 -1.210847 0.469492 -0.878236 1.016873 -1.287111 -0.912945 -0.366425 -1.023795 -0.215445 -0.498064 1.120905 -0.233199 1.251544 -0.028076 -0.618578 -0.978504 -1.339885 -0.680000 0.871223 -0.427802 0.646108 -0.180245 -0.440533 -1.838109 1.123407 0.905709 -0.726254 -0.879226 1.127225 -0.856953 0.013893 -0.517298 0.125704 0.074648 -0.003654 0.738024 1.102621 0.597115 0.567162 0.470605 0.355940 2.045464 -1.344597 0.683744 0.280231 -0.009809 -0.456160 0.413424 0.118953 0.212346 0.432782 0.320099 -0.098685 -1.311545 -0.450909 -0.761299 -0.978046 0.786216 -0.252091 -0.033281 -1.001867 0.036884 -0.735164 -0.230516 -1.452719 0.983145 1.379915 -1.074711 0.814945 -0.058816 -0.056087 -0.277604 -0.005947 0.292795 0.274585 0.207170 0.078519 -0.679820 -0.917975 0.174565 0.224590 -0.190079 -0.379310 -1.814608 0.967420 -0.579918 -1.275615 0.050868 0.751165 -0.622981 -0.240576 0.289693 -0.055900 0.643764 -0.688482 -1.037448 -0.072105 0.171133 0.410748 -0.250286 0.039886 -0.720564 -0.425321 -0.761422 -1.383245 0.348148 -0.362830 -0.434241 -0.594794 0.824322 -0.373999 -0.148824 0.153474 0.768801 -0.609345 1.097925 -0.281505 0.868830 0.492425 0.470936 -1.033466 0.213719 1.007386 1.164027 -0.516862 0.480126 -0.960793 0.140694 -0.903029 -0.107661 0.028730 0.682661 0.658046 -1.115146 -0.716083 -0.074438 0.056780 -1.285804 0.355934 -0.661830 -0.227212 -0.017361 0.835377 0.665007 1.063222 1.688725 -0.821570 0.308449 0.109682 -0.393352 1.165283 0.090828 0.901881 -0.597409 -0.778465 0.226531 0.205921 0.255800 -0.223475 0.580471 0.132771 -1.420510 0.064261 -0.008148 0.398001 -0.652851 0.850389 0.889985 0.514855 -1.034526 0.312260 1.031700 -0.568658 0.026549 0.241744 -1.318639 0.579786 0.367134 -0.041096 0.850551 0.139686 -0.584729 0.559814 -0.523256 0.336420 -0.699286 -0.005001 -0.682872 -0.605593 -0.780086 0.250046 -0.190347 -0.678276 -0.271489 -0.386144 1.224351 -0.552326 -0.525152 0.979179 -0.161180 0.063211 -1.454846 2.012204 -0.836945 0.356888 -0.258888 0.059919 -0.018983 0.639500 -1.137767 -0.008545 0.346650 -0.303199 0.853567 1.668809 0.733919 0.086435 -0.213419 1.314459 -0.431740 1.159494 -0.439812 1.148727 -0.343310 -0.862770 0.310377 -0.240496 -0.410452 -0.558045 0.427811 1.637969 0.542808 0.592870 0.953066 0.496282 1.697009 -0.567402 1.069045 -0.244686 0.742258 -0.286633 -0.320895 0.598379 0.263871 -0.332317 0.870549 -1.488308 -1.837169 -0.540419 -1.271867 0.676194 -0.710912 0.356611 -0.471697 -0.066513 -1.553403 -0.964725 -0.009915 -0.477196 0.465366 0.751219 0.231137 0.647319 1.103115 -0.785584 0.235490 0.065326 0.754039 0.359460 -0.641297 -0.742889 0.992644 -0.969831 -0.017948 1.373573 -0.548788 0.322133 -0.283146 0.938233 -0.894109 1.530931 0.219517 -0.367145 1.487446 1.085646 1.353095 0.473612 -0.538228 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/snake-ladder.cpp__std::__new_allocator::deallocate(queueEntry**, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/snake-ladder.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/snake-ladder.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/snake-ladder.cpp__std::deque >::deque() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_base() = -0.422402 -0.197699 1.578721 0.432520 -0.654569 -0.278359 0.828702 -0.684907 0.741040 -0.587305 -0.069896 -0.352785 -1.158898 0.231582 -0.375751 0.239878 -1.352828 -0.777384 -0.335529 -0.914970 -0.588688 -0.661828 1.098424 0.064967 0.709024 0.557120 -0.236500 -0.456767 -0.168416 -0.660461 1.041829 -0.296115 0.498303 0.730042 0.113278 -2.211142 0.697866 -0.155943 -0.529982 -0.284969 0.833505 -0.009375 0.031077 -0.172694 -0.318407 0.187853 0.441783 1.216086 0.883214 0.528279 0.294716 -0.537566 -0.154844 1.388754 -0.784517 0.191098 0.410752 -0.183390 -0.311405 0.201939 -0.293096 -0.410741 -0.052605 0.566578 -0.329223 -0.335616 0.482177 -1.141145 -1.082904 1.011277 -0.034434 -0.130676 -0.666620 -0.578806 -0.545350 -0.184712 -0.483994 0.896938 1.442675 -1.052777 0.500869 0.054700 0.234726 -0.283442 -0.443333 0.043194 0.304552 -0.057313 -0.212601 -0.346911 -0.818999 -0.283989 -0.445962 -0.089760 0.288433 -1.305546 0.702399 -0.892948 -0.834164 0.096229 0.297273 -0.255677 -0.644578 0.240985 0.277811 0.207099 -0.523896 -0.901667 -0.508994 0.043572 -0.091539 0.756797 0.218517 0.286993 -0.518202 -0.587141 -1.311783 0.219889 -0.377817 -0.632879 -0.210063 0.575970 -0.570283 0.543570 0.839111 0.835237 -0.457280 1.360557 0.581974 0.100210 0.437179 0.020069 -0.200526 -0.166813 0.431468 1.332076 -0.092785 -0.288545 -0.479025 -0.078188 -1.030862 -0.531806 -0.053369 0.247071 0.792872 -1.004508 -1.098541 0.217996 -0.410887 -1.705683 0.444745 -0.955695 -0.133691 0.533183 0.099938 0.871802 0.422332 1.539919 -0.781979 0.583196 -0.199135 -0.577375 0.039567 0.409038 0.955200 -0.447180 -0.485594 -0.177170 -0.267040 0.286278 0.018631 -0.580918 0.036532 -1.532293 -0.671626 0.102929 0.446559 -0.285421 -0.075916 0.752641 0.590257 -0.722391 -0.140908 0.938068 -0.208174 -0.414248 0.655302 -0.879508 0.576523 0.041511 -0.228313 0.409574 0.194467 -0.300442 0.777981 -0.411843 0.266335 -0.583081 -0.425670 -0.419118 -0.067458 -0.949106 0.212779 -0.493404 -0.224631 0.117853 -0.401884 0.782297 -0.542744 -0.702432 1.058329 -0.076832 1.065365 -1.276375 1.396817 -0.234714 0.790724 -0.298949 0.102096 -0.310461 -0.330820 0.129475 0.187438 -0.389217 0.395999 0.363507 1.411705 0.324302 0.360716 0.275796 1.317968 -0.177122 0.835647 -0.072947 0.571471 -0.538412 -0.849452 0.492465 0.071506 -0.432427 -0.285219 0.460013 1.158563 0.691180 0.167923 1.329459 0.448964 0.986867 -0.182765 0.284756 0.003533 0.929303 -0.585991 -0.349637 0.530061 0.741875 -0.767078 0.408280 -1.026774 -1.947016 -0.891461 -1.654972 -0.458732 -0.661480 0.420984 -0.370644 -0.034472 -0.494953 -0.204740 0.400812 -0.025835 1.034612 0.627723 0.132632 0.978715 1.640153 -0.792396 -0.318365 0.818313 0.737428 -0.165706 0.097182 -1.097576 0.241356 -0.790190 -0.022124 1.062404 -0.411677 0.167429 -0.695054 1.212798 -1.122848 1.229954 0.251464 -0.354252 1.336539 0.501885 0.684617 1.235296 -0.170472 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.020613 -0.364075 1.593080 1.020165 -0.051065 0.142324 0.484059 -0.919230 0.989565 0.194864 -0.236380 0.171933 -0.856262 0.358357 -0.995030 0.739344 -1.047357 -0.750437 -0.330132 -0.931333 -0.302451 -0.451216 0.704002 -0.185208 0.868731 -0.068916 -0.539793 -0.401772 -1.099846 -0.804952 0.565734 -0.359587 0.336985 -0.538736 -0.229366 -1.353181 1.017071 0.762517 -0.589968 -0.692429 0.780112 -0.750590 -0.015251 -0.350089 0.062380 0.041918 -0.035491 0.506484 0.890565 0.389274 0.547669 0.446111 0.161264 1.786603 -1.088617 0.623121 0.226269 0.044018 -0.362253 0.465406 0.078220 0.174098 0.281386 0.288281 -0.127991 -1.017475 -0.243165 -0.468027 -0.617186 0.712845 -0.334582 -0.235839 -0.694353 -0.058565 -0.878023 -0.248542 -1.162538 0.675532 1.145755 -0.835862 0.606633 -0.013956 0.113090 -0.026372 0.166473 0.164178 0.560610 0.178190 -0.068806 -0.478503 -0.528139 0.341139 0.182616 -0.085363 -0.341132 -1.473725 0.782459 -1.043940 -1.078623 0.099455 0.584480 -0.451277 -0.196238 0.184241 0.096297 0.324665 -0.570040 -0.869314 0.015278 0.251668 0.245006 -0.148027 0.207281 -0.715385 -0.159998 -0.393450 -1.128095 0.264850 -0.223815 -0.283019 -0.547046 0.799313 -0.171105 -0.181463 0.112115 0.632379 -0.460402 0.854924 -0.340521 0.735447 -0.115814 0.559712 -0.991562 0.243183 0.691971 0.414527 -0.468840 0.459965 -0.653902 0.116917 -0.835265 -0.048263 -0.425501 0.509312 0.421311 -0.840187 -0.573189 -0.083137 -0.135078 -1.107279 0.212127 -0.497928 -0.663862 -0.165162 0.711976 0.749597 0.861216 1.230996 -0.555491 0.163581 0.037364 -0.306962 0.968285 -0.301686 0.752475 -0.508442 -0.631043 0.238087 0.166476 0.230258 -0.101561 0.298039 0.072124 -1.138021 0.161147 0.127703 0.417660 -0.358242 0.779089 0.756289 0.394362 -0.997411 0.320007 0.815047 -0.445736 0.057868 0.092604 -0.995376 0.381506 0.421589 0.181362 0.738229 0.125404 -0.364715 0.308949 -0.354757 0.419079 -0.646995 -0.086848 -0.542950 -0.455075 -0.528155 0.259390 -0.265023 -0.430790 -0.300937 -0.616643 0.945764 -0.829894 -0.493037 1.027688 -0.032910 0.248490 -1.075782 1.219556 -0.699274 0.642423 -0.101999 0.249558 -0.042185 0.475365 -0.890039 0.212849 0.288269 -0.324114 0.734613 1.195460 0.598837 0.292793 -0.185049 1.087589 -0.502962 0.856772 -0.392864 0.913342 -0.248594 -0.810273 0.248991 -0.241697 -0.397330 -0.395769 0.498400 1.077055 0.460527 0.420484 0.695258 0.509942 1.278097 -0.454620 0.815339 -0.266199 0.420141 -0.321167 -0.321030 0.489579 0.207072 -0.250329 0.514057 -1.256972 -1.399395 -0.898924 -0.982727 0.570118 -0.683105 0.135115 -0.330772 -0.033840 -1.171094 -0.767243 0.514462 -0.378940 0.462991 0.566839 0.251189 0.519853 0.978343 -0.580168 0.176771 -0.019762 0.453260 0.216222 -0.485425 -0.691979 0.919538 -0.768178 0.045510 1.069903 -0.498437 0.268222 0.121392 0.370215 -0.729948 1.116842 0.240082 -0.279122 1.109166 0.909468 1.197937 0.400953 -0.475299 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 2.600057 -2.661362 16.754493 9.820825 -7.214981 0.473741 0.523615 -7.703761 5.166541 -0.579161 -3.341148 2.315033 -4.030648 1.770260 -1.255421 5.725668 -14.852132 -2.499169 -2.853623 -7.952815 -4.223466 -2.061768 2.497999 1.850270 7.204182 7.506006 -3.512069 -0.407506 1.073345 -8.888694 3.484843 -2.078115 3.577476 2.612357 4.614758 -19.293632 9.425115 4.137254 -3.752859 -6.589864 4.713877 -1.147829 -1.121467 -2.691130 -4.618231 2.223239 0.956015 9.284653 5.161896 3.968835 -1.903345 0.984852 5.634067 15.355938 -1.643443 3.575692 4.434774 -3.373704 -1.734068 0.783494 1.388178 -1.074305 0.503560 0.428786 2.256938 -8.851371 -0.229728 -5.073083 -3.195534 6.153317 1.175794 -5.351382 -5.686346 -5.991297 -6.265266 -1.631363 -12.718636 10.697472 8.983966 -8.604174 3.810435 1.035288 0.192259 1.487689 1.004136 0.850704 6.821498 2.488576 0.568733 0.454167 -0.586104 -6.185501 4.572852 -5.393400 -4.008398 -17.254824 4.987395 -12.062286 -7.342809 3.597878 6.801980 -5.771595 -0.581067 -3.840569 2.389824 1.696832 -3.343663 -4.075564 0.198503 1.870560 -0.716442 0.562487 -0.519580 1.929445 -0.582908 1.385056 -10.420466 5.937000 0.462747 1.131069 1.104033 5.970182 2.299401 -0.865943 0.591027 4.593539 -3.907537 9.894419 -0.103480 5.103152 -2.680976 6.467342 1.880697 5.224288 5.080184 -1.999141 -1.262313 -3.279013 -3.009130 3.132408 -6.237790 1.736392 -3.198418 6.393808 5.327877 -3.339504 -7.098795 -3.480439 -8.448991 -10.277863 1.721216 -3.932212 -7.054156 5.771105 4.461295 6.523261 4.578808 1.443891 -6.411084 0.580852 -2.341129 -0.330768 4.445162 1.226303 5.108882 -4.418209 -1.782272 2.036253 -0.330202 5.375851 -0.059196 -0.949123 2.673821 -6.445050 -0.642706 4.889029 5.512405 -0.622690 4.207552 8.641580 10.320043 -2.285070 -1.778160 5.744802 -4.595705 -2.807945 3.589072 -6.266516 2.392132 2.476575 2.844311 8.097185 0.055281 0.605923 2.820512 -1.717370 0.555624 -3.405288 -1.271212 -3.264092 -0.698958 -2.973495 3.103600 -5.972943 -1.110175 -4.993712 -6.682483 9.168082 -13.481723 -4.012677 10.927084 -5.016933 5.860077 -6.952479 11.473315 -3.840325 5.813872 -0.792683 -1.831782 -0.277842 -5.397813 -7.451160 3.585737 0.721557 0.579704 -0.598695 8.090985 4.315347 0.285995 -2.025766 8.396850 -5.523821 9.327897 -3.560940 7.096572 -3.859600 -1.408106 -1.556172 0.120093 -5.328321 -3.139530 4.396994 5.906634 -0.747814 5.868086 4.558547 3.282016 7.363763 -4.080109 6.070010 -2.188674 2.222618 -4.757644 -4.605199 4.765187 5.994708 -2.223948 2.466104 -11.072031 -9.359889 -16.192874 -4.345623 -2.910599 -2.778902 3.634302 -3.134628 -2.964187 -4.619518 -6.486193 10.761279 -0.700928 -0.652233 5.836053 0.449627 6.679699 8.394831 -1.598439 0.112907 0.250352 2.768528 2.664134 -0.706248 -8.835908 8.686481 -5.771589 -0.042387 12.402166 -4.813110 4.258055 -1.586552 6.796460 -8.021188 7.243462 1.225741 -6.420572 3.748395 10.206864 3.332260 2.544038 -4.591536 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.239800 -0.366758 1.501886 1.113580 -0.692877 -0.018134 0.100848 -0.524864 0.717943 -0.190231 -0.349488 0.125421 -0.583271 0.320870 0.351930 0.759143 -1.680434 -0.382737 -0.007714 -0.499923 -0.302800 -0.324913 0.464766 0.009424 0.633615 1.127585 -0.298512 -0.198651 0.219239 -0.338182 0.795000 -0.522568 0.586338 1.231812 0.271080 -2.284438 0.865990 0.067155 -0.434092 -0.737255 0.365322 -0.422296 0.280551 -0.838626 -0.336706 0.313051 0.298919 1.071038 0.672737 0.349942 -0.419516 -0.218130 0.482380 1.296011 -0.435697 0.211818 0.350939 -0.473873 -0.275134 -0.177458 0.251466 -0.090651 0.366405 0.401804 -0.089756 -0.937189 -0.293132 -0.946203 -0.739418 0.619542 0.143898 0.247590 -0.935199 -0.318607 -0.307405 -0.233297 -1.753006 1.285873 1.154773 -0.986823 0.553808 0.158197 0.248281 0.062003 0.137349 0.329117 0.618322 0.271144 -0.233449 0.188142 -0.256917 -0.900903 0.502253 -0.756907 -0.010949 -1.514194 0.162643 -0.643047 -0.634829 0.332017 0.536594 -0.090518 -0.184545 -0.332538 0.415782 0.520494 -0.471119 -0.549738 0.163937 -0.233847 -0.071689 -0.039532 -0.155958 0.273940 -0.366015 -0.373730 -1.137426 0.187256 -0.101550 -0.203256 0.428169 0.576668 -0.075259 -0.110656 -0.023413 0.221705 -0.424270 1.391196 0.057996 0.430389 0.280745 0.240461 0.104027 0.542658 0.675915 0.716666 -0.055676 -0.425754 -0.421957 0.206949 -0.771990 -0.381597 0.338918 0.546549 0.749515 -0.397586 -0.739482 -0.385279 -0.621906 -1.226301 0.372846 -0.619815 0.133233 0.943941 0.622185 0.563874 0.798322 0.492430 -0.925382 0.252611 -0.489063 0.140262 0.717033 0.979555 0.644943 -0.376004 -0.042749 0.279656 -0.028064 0.340185 0.161151 -0.324687 0.325477 -0.775426 -0.117184 0.611129 0.610610 -0.129012 0.348052 0.492119 0.691425 -0.198590 -0.018182 0.709146 -0.060144 -0.233189 0.483889 -0.672819 0.670556 0.061123 -0.032582 0.258903 -0.058424 -0.277988 0.103464 -0.139970 0.054134 -0.277219 -0.312793 -0.255241 -0.079039 -0.537396 0.604008 -0.545609 -0.443362 -0.281953 -0.106343 0.969096 -0.834341 -0.140371 0.833792 -0.674128 0.752426 -0.682177 1.317115 -0.615142 0.531489 -0.422938 -0.466899 0.010720 -0.609254 -0.545974 0.020276 0.296327 0.273411 -0.275055 0.706705 0.641645 -0.041821 0.070250 0.856462 -0.073191 0.862736 -0.010381 0.611150 -0.377876 0.262263 0.142169 -0.110969 -0.219782 -0.179039 0.319844 1.179288 0.244027 0.743070 0.910088 0.182581 0.720597 -0.552943 0.340624 -0.211925 0.614202 -0.401949 -0.271806 0.228204 0.637193 -0.331438 0.360074 -0.985455 -1.269527 -1.136674 -0.147781 -0.565043 0.063852 0.338110 -0.231020 0.074397 -0.519839 -0.347016 0.462989 -0.274336 0.074650 0.356166 -0.054486 0.667493 0.827374 -0.385218 -0.598024 0.235475 0.321640 0.198862 0.365337 -1.176847 0.873509 -0.812494 -0.009755 1.238717 -0.638918 -0.040433 -0.352490 1.510141 -0.563071 0.976244 0.253001 -0.648078 0.612501 0.966608 0.411864 0.606199 -0.494874 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator() = 0.211826 -0.331391 1.575723 1.170397 -0.523758 -0.035794 0.382275 -0.537557 0.871916 0.251829 -0.256719 0.012387 -0.608315 0.232965 0.666552 0.951341 -1.493004 -0.358599 0.086479 -0.683057 -0.298387 -0.293532 0.473896 -0.270181 0.762142 0.701829 -0.163317 -0.533664 0.221896 -0.397635 0.767920 -0.561760 0.571313 1.064961 0.218537 -2.335901 0.912908 0.026112 -0.499029 -0.708294 0.399385 -0.393482 0.443626 -0.579656 0.039830 0.369607 0.408871 1.111775 0.810348 0.563677 -0.122680 -0.310595 0.558678 1.449022 -0.600415 0.222711 0.214618 -0.595153 -0.352664 0.059650 0.204827 -0.218879 0.410124 0.286077 -0.017831 -1.020033 -0.327823 -0.910682 -0.799012 0.500876 0.260690 0.053721 -0.985366 -0.316204 0.006765 -0.384359 -2.584899 1.220747 1.117117 -1.003705 0.656685 0.265078 0.256401 0.052347 0.151734 0.323759 0.583649 0.177674 -0.285924 0.172461 -0.281475 -1.020740 0.517086 -0.738891 0.047451 -1.482888 0.170893 0.050283 -0.668280 0.428133 0.595220 -0.022055 -0.384353 -0.285666 0.354108 0.565106 -0.534972 -0.636022 -0.006451 -0.297423 -0.143968 -0.043181 -0.234247 -0.123577 -0.475976 -0.409688 -1.101717 0.195123 -0.139740 -0.191363 0.043250 0.601054 -0.130170 -0.151643 0.027702 0.343515 -0.468414 1.328393 0.094381 0.595790 0.532172 0.130504 -0.612555 0.658156 0.775007 0.782970 0.186797 -0.248119 -0.563555 0.192259 -0.844008 -0.070984 0.580108 0.853011 0.961511 -0.425196 -0.682530 -0.284678 -0.270290 -0.978657 0.627698 -0.592499 0.386118 0.573554 0.609675 0.547275 0.823669 0.427486 -1.017191 0.330474 -0.630635 0.204224 0.793975 1.103340 0.753607 -0.422049 0.128189 0.046125 0.251053 0.180931 0.158736 -0.280453 0.412109 -0.857215 0.000647 0.326461 0.439037 -0.401170 0.333819 0.531643 1.227577 -0.345727 -0.086132 0.750854 -0.108681 -0.236637 0.556853 -0.680744 0.659998 0.093610 -0.155219 0.251169 -0.025217 -0.307416 0.071643 -0.237928 -0.041005 -0.143116 -0.314052 -0.283385 -0.275564 -0.336645 0.622882 -0.714722 -0.538110 -0.180921 0.136983 0.956057 -0.355117 -0.060912 0.764316 -0.983929 0.362859 -0.667944 2.051064 -0.680884 -0.018171 -0.769275 -0.542865 -0.166683 -0.008041 -0.551883 0.040075 0.258234 0.245320 -0.089257 0.981904 0.661238 -0.007759 0.032630 0.940091 -0.156909 0.838759 0.048465 0.765323 -0.493762 0.429453 0.036870 -0.070225 -0.153736 -0.141170 0.197306 1.177233 0.197946 0.452980 0.718798 0.180628 0.731072 -0.524334 0.592096 -0.157053 0.734140 -0.357600 -0.237907 0.339601 0.388223 -0.292218 0.398037 -1.048268 -0.981054 -0.536275 0.026781 -0.496121 0.443754 0.291788 -0.194833 0.105832 -0.681483 -0.337442 0.254586 -0.239677 -0.501266 0.269364 -0.050903 0.657413 0.808893 -0.222592 -0.643777 0.003522 0.126458 0.233642 0.090680 -0.897894 0.883261 -0.934167 0.003113 1.075712 -0.518830 -0.141316 -0.355723 1.605666 -0.626230 0.890491 0.147127 -0.408083 0.720401 1.267271 0.743210 0.249396 -0.416715 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.419898 -0.789415 3.800926 1.847715 -0.576490 -0.132586 1.963594 -1.787232 1.767039 -0.235445 -0.327607 0.154859 -2.499750 0.670283 -1.847678 1.134604 -2.661703 -1.873183 -0.772931 -2.063454 -0.910640 -1.209273 2.165608 0.046919 2.169219 0.297657 -1.024608 -1.500605 -2.079253 -1.761460 1.638382 -0.628288 1.119386 -0.171953 -0.353444 -4.175207 1.908217 1.134044 -1.243167 -1.286354 2.218483 -1.030959 -0.155886 -0.510537 -0.206724 0.179448 0.524602 2.016217 2.054591 1.134363 0.982836 0.141823 0.154248 3.858917 -2.152618 1.084121 0.850428 -0.128943 -0.819134 0.736588 -0.262725 -0.390302 0.354029 0.777321 -0.509340 -1.667725 0.230463 -1.734852 -1.939704 1.868040 -0.214616 -0.469647 -1.555816 -0.503391 -1.716069 -0.403185 -1.155797 1.769519 2.917802 -2.085875 1.484309 -0.101896 0.173865 -0.560011 -0.377078 0.240535 0.697154 0.123507 -0.095858 -1.443934 -2.079848 0.253390 -0.410207 0.113329 -0.224027 -3.318967 1.901486 -2.036909 -2.417112 0.042659 1.015478 -1.249015 -0.914223 0.664792 0.274612 0.804511 -1.178166 -2.077377 -0.749700 0.445930 0.131694 0.482387 0.463680 -0.689272 -0.861300 -1.243680 -2.805565 0.751492 -0.636373 -1.032634 -1.179043 1.576934 -0.878559 0.587843 1.081871 1.861725 -1.000232 2.235145 0.253261 0.921530 0.768168 0.601846 -1.375843 -0.137018 1.388472 2.291427 -0.966299 0.266840 -1.442177 0.158615 -1.927193 -0.529949 -0.509317 1.226630 1.348447 -2.357636 -1.896455 0.079013 -0.292468 -2.930227 0.664298 -1.531379 -0.940257 0.136218 0.999911 1.476360 1.379592 3.379013 -1.435005 0.985828 0.236545 -1.144112 1.251456 -0.103233 1.945647 -1.230015 -1.476390 0.108500 0.005859 0.736518 -0.510325 0.280207 0.151579 -3.090489 -0.769945 -0.018996 0.852428 -0.809285 1.017176 1.887675 1.416844 -2.190100 0.173672 1.963250 -1.039171 -0.408790 0.846376 -2.336392 1.054531 0.578027 -0.115784 1.792198 0.448917 -1.047757 1.554984 -0.824693 0.679875 -1.524856 -0.282725 -1.246735 -0.749330 -1.633744 0.166794 -0.688995 -0.852566 -0.464091 -1.237105 2.164801 -1.429127 -1.733127 2.187646 -0.168887 1.237334 -3.295009 3.390684 -1.133491 1.213072 -0.404724 0.380283 -0.284725 0.515256 -1.239100 0.488252 -0.069365 -0.186661 1.678036 3.282058 1.067468 0.702912 -0.088441 2.721493 -0.764212 2.045907 -0.702995 1.771840 -0.886121 -2.182101 0.657996 -0.170368 -0.950783 -0.726610 1.028787 2.623091 1.287559 0.685438 2.294408 1.305235 2.890388 -0.746542 1.470481 -0.384992 1.701873 -0.937205 -0.907811 1.172185 0.976855 -0.974371 1.443486 -2.831154 -3.990305 -1.632930 -3.611752 0.583548 -1.702736 0.842674 -0.855865 -0.207065 -2.481099 -1.348464 0.654998 -0.360482 1.944519 1.667773 0.429501 1.692695 2.764167 -1.608355 0.186701 0.848934 1.650815 0.166425 -0.900258 -1.812526 1.234035 -1.866134 0.195734 2.571412 -1.045094 0.733524 -0.988668 1.825901 -2.295004 2.917102 0.500927 -0.929243 2.811276 1.575232 2.276495 1.486992 -0.807383 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_create_nodes(queueEntry**, queueEntry**) = -0.839070 -0.824392 4.838994 2.031926 -1.090945 -0.051139 2.343173 -2.355453 2.925860 0.165827 -0.752489 -1.150385 -3.106682 -0.051968 -0.331548 0.688543 -3.941018 -2.213945 -0.805272 -2.693114 -1.108443 -2.398843 2.357673 0.067446 2.202341 1.036967 -0.765304 -0.850071 -1.329529 -2.466170 2.775441 -0.946007 1.497564 1.743769 0.453099 -5.832529 2.791144 0.825161 -1.134723 -1.463970 1.797844 -0.503707 -0.259737 0.037612 -0.094836 0.979333 0.867471 3.259587 2.742204 1.031811 1.076364 -1.790851 -0.553724 3.654037 -2.325370 0.894818 0.391537 -1.209736 -0.782230 1.321923 -0.378774 -0.939633 0.618182 2.094379 -0.742519 -1.429502 2.076826 -2.344378 -3.352779 3.249856 0.305575 -1.063890 -1.497181 -1.176142 -1.347571 -0.294652 -0.330442 2.513020 4.083738 -1.565458 2.324286 0.261934 0.745269 -1.065615 -0.705875 -0.108124 2.186396 -0.201086 -0.849603 -1.617064 -3.080560 -1.526662 -0.574000 0.591086 0.454273 -1.869874 1.800310 -2.299861 -2.479173 -0.084976 1.229140 -1.127104 -2.646402 1.224553 1.229293 0.583028 -0.332127 -2.574048 -1.422661 0.659977 -1.875254 1.429015 0.123045 -0.090265 -1.782949 -1.160457 -3.023193 0.317706 -1.050470 -1.256589 -1.335886 2.039234 -1.809717 0.667159 1.805702 2.268245 -0.806601 2.306887 0.532534 1.092086 1.850320 -0.138511 -1.499655 -0.835396 1.297805 3.130609 0.345039 -0.987809 -1.169319 0.357568 -3.142732 -0.560527 -0.747527 1.496348 2.449105 -3.063968 -2.296468 0.329345 -0.512960 -3.952196 0.815553 -2.205328 -0.868043 0.411748 1.333561 2.484768 1.334318 4.044920 -3.049299 1.860814 -0.484063 -1.393834 0.689711 0.789598 2.362727 -1.458578 -1.021772 -0.659139 -0.101945 1.076433 -0.502957 -1.315550 -0.234688 -3.960960 -1.948929 0.682163 0.605907 -0.109195 0.118809 2.695557 3.191634 -3.419765 0.311773 2.915469 -0.381318 -1.322291 1.959366 -2.848122 1.601735 0.408689 0.072927 1.981780 0.275923 -0.934601 1.055131 -1.001458 0.395068 -2.133632 -0.810801 -1.262740 0.590777 -2.026852 -0.102625 -1.957426 -1.257305 -0.452788 -0.836365 2.393470 -0.443869 -3.451182 3.838462 -1.236066 2.391281 -3.985167 3.381375 -1.183716 1.158006 -1.522251 0.170576 -1.007691 -0.150796 -0.803876 0.853938 -0.707910 0.378844 2.319097 4.181486 1.421074 1.103946 -0.118316 3.436099 -0.697951 2.118277 -0.943371 1.647423 -1.094963 -1.701555 0.305914 -0.415475 -0.838474 -0.375790 0.740584 2.573814 2.534052 0.339438 3.320965 1.245877 2.467064 -0.384680 1.554290 0.320712 2.191508 -0.955467 -1.155934 1.759140 1.353663 -2.078169 1.545560 -3.544223 -4.817753 -0.997692 -5.011160 -1.072251 -1.737777 1.419333 -0.247803 0.183538 -2.412305 -0.982056 1.134898 0.420338 3.637315 1.174039 0.109054 1.936923 3.822821 -2.084235 -0.479739 1.337567 1.827103 -0.735465 -1.117882 -2.797572 1.888879 -2.466053 0.803876 3.267767 -1.753382 0.626864 -2.297131 3.123195 -3.772714 3.263429 0.989621 -0.949576 3.026365 0.690761 2.940407 2.321585 -0.993627 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_M_set_node(queueEntry**) = -0.017259 -0.516354 2.444010 1.752207 -0.748119 0.128804 0.261709 -1.135006 1.047104 0.183289 -0.239618 0.362467 -0.856039 0.408333 0.154505 1.184749 -2.101426 -0.576838 -0.370101 -1.267324 -0.602177 -0.354705 0.592229 -0.000952 1.116477 0.840833 -0.679718 -0.415490 -0.232077 -1.208033 0.799511 -0.520477 0.875437 0.546708 0.228131 -3.673165 1.502544 0.701616 -0.738170 -1.083403 0.830393 -0.672739 0.235986 -0.649163 -0.642847 0.333467 0.157608 0.742874 1.087631 0.613297 0.061202 0.288068 0.797111 2.489906 -0.787803 0.612885 0.481834 -0.664643 -0.628757 0.086323 0.224918 -0.010293 0.579768 0.199406 0.008546 -1.619941 -0.312111 -0.946682 -1.077404 0.854550 0.051207 -0.500285 -1.015315 -0.590238 -0.786925 -0.561235 -1.767675 1.498803 1.525308 -1.372300 0.833113 0.048929 -0.042857 0.202498 0.382589 0.337096 1.035548 0.333731 -0.055793 0.047751 -0.038714 -0.805585 0.731105 -0.281813 -0.426458 -2.199450 0.686979 -1.007051 -1.226607 0.571392 0.975185 -0.504076 -0.879359 -0.720843 0.376725 0.661867 -0.740643 -0.941825 -0.140573 0.145079 0.075209 -0.235830 -0.318273 -0.254225 -0.404454 -0.335172 -1.694840 0.629267 -0.068169 -0.069803 -0.269917 1.050112 -0.080050 -0.290819 -0.021029 0.802228 -0.822342 1.726823 -0.330050 0.926614 0.030859 0.599483 -0.515807 0.277599 0.889627 0.621062 -0.246176 -0.564849 -0.892459 0.323847 -1.156655 0.125707 0.154149 1.185902 1.428677 -0.468525 -0.971543 -0.411111 -0.724076 -1.868713 0.372790 -0.808578 -0.293124 1.030322 0.933697 0.754465 1.095529 0.919030 -1.022712 0.396091 -0.458614 -0.234167 1.290953 0.528547 0.999516 -0.716450 -0.371336 0.383978 0.129101 0.714163 0.072247 0.035594 0.369835 -1.132838 -0.228875 0.617280 0.738097 -0.196946 0.712932 1.108879 2.098591 -0.719553 0.058348 0.966948 -0.583112 -0.142997 0.433281 -1.045468 0.399074 0.450141 -0.210974 1.135321 -0.033755 -0.504105 0.227956 -0.262721 0.205612 -0.600507 -0.017284 -0.571448 -0.074257 -0.608201 0.076804 -0.843937 -0.550589 -0.686031 -0.635421 1.563065 -1.525459 -0.701768 1.527826 -0.818204 0.720949 -1.554404 2.271573 -0.923783 0.768626 -0.800681 -0.454733 -0.081609 -0.171152 -1.192580 0.531901 0.393911 -0.108053 0.014818 1.647272 0.871216 0.121928 -0.357859 1.390196 -0.421272 1.469543 -0.397316 1.423386 -0.569344 -0.021111 -0.039219 -0.170525 -0.548039 -0.431162 0.547116 1.208367 0.316894 0.755324 0.738675 0.716075 1.355774 -0.737450 1.064349 -0.282057 0.712716 -0.531442 -0.519396 0.670038 0.946484 -0.212921 0.557700 -1.697050 -1.587901 -1.700949 -0.752306 -0.182774 0.336123 0.418233 -0.380966 -0.166498 -1.127647 -0.860389 1.145876 -0.385094 0.410993 0.703506 0.202116 0.994589 1.301438 -0.412100 -0.381008 -0.096022 0.296803 0.423576 -0.107829 -1.359455 1.459400 -1.056782 0.066097 1.694536 -0.719968 0.410126 -0.105061 1.443322 -1.010177 1.474115 0.174555 -0.706747 1.159278 1.578318 0.906709 0.266310 -0.694533 -PE-benchmarks/snake-ladder.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_node() = 0.030755 -0.480498 1.775501 1.157439 -0.299968 0.104022 0.442571 -0.753126 0.726936 -0.107449 -0.306937 0.362753 -0.827519 0.307591 -0.779719 0.596256 -1.313383 -0.703520 -0.337876 -0.828649 -0.307838 -0.308581 0.538169 0.106870 0.932264 0.369386 -0.555913 -0.433870 -1.006593 -0.588685 0.542606 -0.272749 0.484767 -0.088578 -0.015416 -1.825389 0.914060 0.814705 -0.525148 -0.850298 0.815229 -0.705478 -0.024539 -0.540458 -0.195397 0.086435 0.096436 0.632970 0.718730 0.359653 0.091195 0.374420 0.271978 1.836414 -0.720606 0.572589 0.505752 -0.101413 -0.305582 0.172219 0.118365 0.005621 0.248762 0.113819 -0.111243 -1.059628 -0.282376 -0.668416 -0.540054 0.630405 -0.102715 -0.215769 -0.696376 -0.256893 -0.977618 -0.242811 -1.006935 0.935533 1.119755 -1.034167 0.650679 -0.027963 0.091705 0.048712 0.172946 0.251447 0.458975 0.246294 0.078997 -0.329817 -0.651907 0.043869 0.232307 -0.221174 -0.444578 -1.663078 0.808726 -1.191785 -1.057374 0.170087 0.600705 -0.602290 -0.100596 0.039464 0.026833 0.476820 -0.543365 -0.701039 -0.003720 0.250690 0.233879 -0.128500 0.108840 -0.258776 -0.183110 -0.482369 -1.238027 0.538033 -0.069273 -0.148111 -0.245288 0.817142 -0.160056 -0.066536 0.052836 0.569462 -0.517706 1.109007 -0.175043 0.505937 -0.085716 0.451583 -0.576574 0.198659 0.688508 0.667384 -0.605128 0.131342 -0.544471 0.193465 -0.680038 -0.147070 -0.261379 0.615050 0.437485 -0.811206 -0.692165 -0.352919 -0.440902 -1.165506 0.078400 -0.469569 -0.558076 0.344496 0.687287 0.794766 0.737256 1.179817 -0.555731 0.156823 0.048143 -0.369086 0.815171 -0.032003 0.699008 -0.546920 -0.563595 0.325039 0.002604 0.477439 -0.082269 0.344043 0.177083 -1.060130 -0.016943 0.296921 0.547046 -0.244598 0.813692 0.910803 0.365444 -0.824560 0.098552 0.690564 -0.566074 -0.088077 0.227904 -0.918790 0.377098 0.368113 0.042452 0.867359 0.106059 -0.325551 0.417776 -0.292222 0.290984 -0.589687 -0.038034 -0.507592 -0.366835 -0.583350 0.237401 -0.365784 -0.396410 -0.512816 -0.776210 1.113032 -1.076072 -0.561522 0.892988 -0.040339 0.447453 -1.210101 1.210992 -0.662868 0.818301 -0.028844 0.049416 0.044717 0.054012 -0.944537 0.213671 0.281405 -0.307985 0.405964 1.128423 0.615022 0.122585 -0.199251 1.056291 -0.494455 1.007282 -0.416960 0.817570 -0.324437 -0.703740 0.189497 -0.150733 -0.436320 -0.319049 0.504707 1.148171 0.307455 0.712981 0.732886 0.561644 1.223540 -0.507450 0.623088 -0.285147 0.565059 -0.402175 -0.439074 0.408836 0.517815 -0.118213 0.435034 -1.313423 -1.534802 -1.194281 -1.042562 0.409548 -0.655671 0.198517 -0.324919 -0.164487 -1.131400 -0.828958 0.476538 -0.327570 0.621257 0.663502 0.158187 0.688581 0.894005 -0.587361 0.103562 0.224214 0.619222 0.295391 -0.282096 -0.932604 0.934243 -0.799345 0.001989 1.357960 -0.566609 0.454338 0.020548 0.717556 -0.810192 1.248261 0.206115 -0.723921 0.904349 1.037311 0.891580 0.402366 -0.544996 -PE-benchmarks/snake-ladder.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_S_buffer_size() = -0.120600 -0.182782 0.123618 0.108429 -0.038850 0.046941 -0.015737 0.082391 0.062242 -0.108214 -0.101779 0.045547 -0.164303 0.004410 0.009524 -0.063289 -0.117957 -0.153599 0.019008 0.078293 -0.027991 -0.119320 -0.059672 0.134182 -0.008529 0.242750 -0.047166 0.091548 -0.191973 0.109380 0.057351 -0.025585 0.078812 0.287037 0.116756 -0.110792 -0.027730 0.092824 0.017959 -0.193675 -0.032392 -0.113780 0.106158 -0.157680 0.006283 0.093504 0.112514 0.022994 -0.021948 -0.045695 -0.107068 -0.161203 -0.081574 0.017280 0.051573 0.055943 0.163582 -0.000406 0.053051 -0.133670 0.049618 -0.076244 0.046360 0.093873 -0.166044 0.021487 -0.053510 -0.163128 -0.076568 0.067670 -0.015813 0.109939 -0.125857 -0.152072 -0.127595 -0.037108 -0.179976 0.113218 0.203320 -0.165006 0.148985 0.084507 0.196525 0.052211 0.098918 0.042871 0.057673 0.043289 -0.103376 0.133484 -0.114368 -0.053784 -0.062436 0.002080 -0.030543 0.075100 0.048642 -0.196034 -0.102486 0.063562 -0.077311 0.063060 -0.005346 0.126029 0.009690 0.135041 -0.060387 -0.088667 0.003309 0.011319 0.044246 0.019765 0.038255 0.170587 -0.076573 -0.171976 -0.148087 -0.018907 0.068679 -0.128215 0.146905 0.141552 -0.112458 0.128016 -0.001487 -0.094211 -0.009145 0.304183 0.159992 -0.081805 -0.078464 -0.139883 -0.133690 -0.015104 0.018121 0.264649 -0.133604 -0.015925 0.107133 -0.031579 0.007870 -0.176352 -0.012427 -0.029598 0.070687 -0.113979 -0.113556 -0.179732 -0.182946 -0.190192 -0.030366 -0.082714 0.115821 0.197312 0.086806 0.215137 0.014810 0.346582 -0.112462 -0.003910 -0.039313 -0.094190 -0.048104 0.206059 0.046925 -0.053603 -0.069414 0.113499 -0.006789 0.045457 0.148122 -0.115746 0.012225 -0.090100 -0.025464 0.216400 0.110764 0.057456 0.149989 0.061455 -0.241889 -0.052457 -0.012646 -0.005424 0.065931 -0.036430 0.035629 -0.090675 0.160704 -0.035383 -0.040639 -0.043480 -0.019443 0.005721 0.060877 -0.057063 0.067420 -0.120215 0.004380 -0.053442 0.041834 -0.191599 0.142362 -0.066164 -0.062620 -0.013211 -0.022540 0.151475 -0.011708 -0.033165 -0.048723 0.162486 0.212669 -0.065791 -0.126454 -0.051241 0.353006 0.028105 -0.021737 0.029705 -0.146095 0.133114 -0.105776 0.068957 0.008908 -0.121514 -0.034701 0.049156 -0.062077 0.128991 0.074343 0.050754 0.002290 0.013760 -0.062804 0.019533 0.013456 0.138289 -0.055916 0.077616 0.093659 -0.038723 0.216231 0.158229 0.114685 0.170275 0.023702 -0.013201 -0.063034 -0.175755 0.012721 0.216680 -0.114761 -0.031309 -0.134461 0.182024 -0.021258 -0.099931 -0.088366 -0.256494 -0.096306 -0.116697 -0.127987 -0.061689 -0.046661 0.075139 0.024144 -0.006162 -0.039371 0.060038 -0.069061 0.339919 -0.066448 -0.014135 0.161042 0.095985 -0.125894 -0.150625 0.201321 0.068805 -0.072643 0.186954 -0.191583 0.044055 -0.136963 -0.004908 0.160403 -0.124659 0.028476 0.077509 0.224321 -0.089124 0.228332 0.115996 -0.221120 0.054276 0.077247 0.127462 0.116837 -0.098003 -PE-benchmarks/snake-ladder.cpp__std::deque >::push_back(queueEntry const&) = 1.909911 -1.038804 9.192297 6.164457 -2.441403 0.420162 0.038873 -5.438242 3.963137 0.218826 -1.519213 1.584323 -2.291698 1.907760 -2.848605 4.386209 -7.531243 -2.033730 -2.263430 -5.134869 -2.355182 -0.942558 2.330057 -0.265121 4.455664 2.829997 -2.853171 -0.256324 -1.581684 -5.851070 1.873135 -1.392799 1.679215 -0.490176 1.106729 -8.317463 6.198252 3.345125 -2.701973 -3.477686 3.211237 -2.291419 -0.984164 -2.001832 -1.190593 1.064053 -0.473881 3.652469 3.974030 2.420603 0.659766 2.652943 2.698434 8.171328 -2.958462 2.599942 1.773562 -1.081288 -1.476152 1.362352 0.677814 0.857001 0.672345 0.367421 0.900970 -6.156229 -1.053910 -2.192620 -1.748146 3.740246 -0.523828 -2.916990 -3.444663 -2.104056 -4.061763 -0.900866 -7.040768 5.014130 4.933269 -4.539980 1.700207 -0.028347 -0.367529 0.524540 1.010916 0.526523 4.094025 1.556446 0.536561 -0.860460 -0.468965 -1.742782 2.708745 -2.133533 -2.614361 -8.957550 3.187409 -7.346638 -4.711172 1.281832 4.225285 -3.074504 -0.630502 -1.396184 1.114328 0.821525 -1.738338 -2.642753 1.256047 1.098066 0.676157 -0.739296 -0.272678 -1.406761 -0.125904 0.896295 -6.259760 3.041429 -0.417836 0.677622 -0.764510 3.471541 1.312367 -1.933457 -0.311472 2.941967 -2.484697 4.857932 -2.120303 3.999026 -1.493054 4.497703 -0.890975 3.283644 3.390272 -1.797377 -1.856675 0.161725 -2.928061 1.459764 -4.489345 0.929624 -2.785105 3.442962 2.689256 -2.480084 -3.773968 -1.125327 -3.606428 -5.554076 0.923860 -2.210036 -4.735247 1.049762 3.260523 3.568764 4.008105 2.045534 -3.018929 -0.254077 -0.447393 -0.117002 4.653492 -0.818934 3.246990 -2.547469 -1.832707 1.955656 -0.047270 1.957459 -0.262957 0.982712 1.299228 -4.450784 0.522003 2.619730 2.504792 -0.692782 3.354310 4.439843 4.456711 -2.167025 0.442723 3.818538 -2.793725 -0.544184 1.176861 -3.818312 1.195063 1.937727 2.532203 4.860783 0.266033 -0.321765 0.878838 -0.679818 1.260995 -2.221353 -0.644345 -2.027505 -1.030192 -1.559908 1.531162 -2.166275 -1.032489 -2.406768 -4.022437 5.067912 -6.780725 -2.363765 6.623537 -2.660060 2.252563 -4.260348 5.391924 -3.120440 2.849387 -0.228529 0.154308 0.163100 -1.601430 -5.752414 2.279511 1.311658 -0.653248 1.099046 4.856416 2.855718 0.708025 -1.772832 4.776560 -3.443626 5.811259 -2.080686 5.004318 -1.772060 -1.720877 -0.488551 -0.469573 -3.470220 -2.687209 2.587155 3.870866 -0.035123 3.442129 2.320206 1.924119 5.810218 -2.763711 4.675559 -1.437979 0.294310 -2.316534 -2.428670 3.443079 1.852078 -0.917397 2.013987 -6.277213 -5.366080 -8.145325 -3.012257 0.776581 -2.334744 1.718995 -2.206123 -1.550240 -3.610753 -4.298952 5.611740 -0.868556 0.215841 3.397173 0.704312 2.729768 4.573458 -1.462568 0.919174 -1.201533 1.502961 2.097696 -1.625976 -4.540922 5.824009 -2.662007 -0.354504 6.743695 -2.856256 2.363258 -0.147352 2.548218 -3.605307 4.180201 0.395509 -2.477379 3.461438 5.435930 3.246220 1.450496 -2.694952 -PE-benchmarks/snake-ladder.cpp__void std::deque >::_M_push_back_aux(queueEntry const&) = 2.771099 -1.288154 11.222228 7.329784 -3.957637 0.442121 -0.314359 -6.334370 4.669076 -1.089783 -2.285305 1.578829 -2.659889 2.273374 -3.854321 4.643527 -10.063571 -2.307620 -2.795428 -6.111668 -2.696747 -1.045939 2.382830 0.146695 5.122497 4.341460 -3.061529 0.036608 -1.414481 -5.543521 2.823239 -1.725270 1.823054 0.286555 1.815539 -10.517226 7.266407 3.722772 -3.241294 -4.347296 3.640383 -3.102079 -1.286915 -3.328554 -2.115211 0.947980 -0.611392 5.704515 4.390760 2.268201 -0.554532 3.100856 3.033203 10.630400 -3.278125 2.908865 2.365267 -1.225192 -1.496941 1.463966 0.856729 1.103021 0.471581 0.338149 1.200269 -7.399571 -1.345154 -3.230811 -1.550737 4.578393 -0.437905 -2.988051 -4.237929 -2.584002 -5.741637 -0.950445 -9.644025 7.058071 5.948953 -6.167445 1.797377 0.058844 -0.233927 1.002517 1.221578 0.897618 5.316743 1.960363 0.931583 -0.714409 -1.205575 -2.294617 3.525387 -4.396664 -3.260483 -12.364436 3.780420 -10.178259 -5.438258 1.448854 5.093189 -3.987249 0.685252 -1.972150 1.282873 0.846181 -2.221963 -2.809105 1.862913 1.439894 0.885232 -0.578346 0.207444 -0.513018 0.445072 0.453881 -7.637236 4.026000 -0.432183 1.181540 0.327503 4.354995 1.715634 -2.522225 -0.353858 3.147884 -3.005892 6.484807 -2.518099 4.274217 -2.189984 5.604409 0.143666 4.636858 4.068951 -1.855419 -2.128404 0.191313 -2.962968 1.979255 -5.365221 0.328298 -3.311548 3.576958 1.900831 -3.166100 -4.416451 -1.849166 -5.046960 -6.701854 0.660220 -2.563841 -6.248479 2.301807 3.962482 5.533540 4.815631 1.814294 -3.720333 -0.483751 -0.735139 0.081525 5.280646 -0.577041 3.676538 -2.920053 -2.028127 2.249462 -0.845986 2.905589 -0.331509 0.943542 1.448856 -5.320351 0.808052 3.391716 3.691817 -0.672030 4.414733 5.697621 3.394223 -2.811047 0.591344 4.575157 -3.656629 -0.831194 1.617657 -4.453310 1.672367 2.398049 3.029028 5.356645 0.168496 0.219614 0.930480 -0.822587 1.429664 -2.524007 -1.579247 -2.272979 -1.715760 -2.247034 2.883657 -2.806247 -1.218703 -3.279429 -5.571052 6.078322 -9.630583 -2.333283 8.112636 -3.006016 3.340250 -4.566261 5.974542 -3.730542 4.218522 0.463721 0.160980 0.291013 -2.869706 -7.100087 2.582361 1.580333 -0.842089 0.749377 5.212811 3.617034 0.816593 -1.879207 5.967563 -4.467641 7.089310 -2.767331 5.580164 -2.183877 -2.294461 -0.377288 -0.549100 -4.252706 -3.057900 3.949445 5.416741 -0.314179 5.332442 3.333179 2.402132 6.716145 -3.201814 4.910620 -2.160472 0.019708 -2.979834 -2.900991 3.929923 2.490262 -1.142557 2.064582 -7.718338 -7.139389 -11.576539 -2.752515 0.881550 -4.107490 1.878430 -2.617558 -1.769050 -4.373068 -5.305178 6.358258 -1.280944 -0.525758 4.202179 0.634023 3.425350 5.569121 -1.952988 1.046232 -0.310019 2.392695 2.617239 -1.310530 -6.404890 7.262799 -3.442146 -0.498655 8.939110 -3.683707 3.033231 0.040575 3.587719 -4.329049 5.094149 0.691997 -3.947993 3.537748 7.178732 3.073359 2.882474 -3.399774 -PE-benchmarks/snake-ladder.cpp__queueEntry const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/snake-ladder.cpp__std::deque >::size() const = 0.529537 -0.209094 1.822897 1.211108 -0.646151 0.072147 -0.161702 -0.998133 0.734940 -0.067615 -0.431919 0.276326 -0.355492 0.352911 -0.603589 0.833457 -1.538249 -0.275203 -0.437378 -0.967629 -0.492000 -0.104607 0.273583 -0.048828 0.836137 0.859317 -0.425506 0.121098 -0.101518 -1.061425 0.243104 -0.229972 0.173298 0.092486 0.435287 -1.274429 1.160046 0.641950 -0.511691 -0.716766 0.506598 -0.392648 -0.166062 -0.431208 -0.143459 0.267408 -0.050281 0.935811 0.653055 0.497173 -0.023421 0.419421 0.655512 1.531542 -0.348153 0.495476 0.463582 -0.156952 -0.142828 0.229046 0.157114 0.124184 -0.067458 -0.055624 0.283384 -1.164925 -0.354162 -0.464640 -0.040132 0.665927 -0.166959 -0.630720 -0.756648 -0.649770 -0.803376 -0.160377 -2.438466 1.090704 0.900966 -1.078516 0.237614 0.118913 -0.009151 0.227806 0.228157 0.110872 0.779000 0.359099 0.142295 0.122020 0.158236 -0.457427 0.650011 -0.827789 -0.643900 -2.016666 0.649211 -1.666810 -0.876218 0.351494 0.838186 -0.606186 0.339365 -0.242117 0.088199 0.090434 -0.396198 -0.375425 0.469572 0.171716 0.279217 -0.063339 -0.002909 -0.016655 0.112973 0.312029 -1.254428 0.722625 -0.014612 0.228627 0.161386 0.685494 0.544360 -0.382898 -0.110532 0.411677 -0.436043 1.203171 -0.300620 0.746236 -0.629340 1.099138 -0.107606 1.077274 0.709741 -0.737863 -0.374961 0.194662 -0.361451 0.293120 -0.810412 0.180999 -0.686302 0.578224 0.359860 -0.450580 -0.763239 -0.351013 -1.063399 -0.993448 0.175563 -0.345897 -1.038863 0.247389 0.599493 0.951946 0.719291 0.160395 -0.612606 -0.379631 -0.182077 0.064067 0.757640 0.020186 0.586801 -0.469885 -0.239995 0.421968 -0.043178 0.365255 0.098160 0.129357 0.322407 -0.788614 0.422419 0.731365 0.598639 -0.216344 0.775400 0.926626 0.473832 -0.126196 -0.039382 0.661898 -0.573146 -0.157789 0.275049 -0.664815 0.305278 0.345357 0.683703 0.767627 0.048382 0.322153 0.171587 -0.221491 0.229339 -0.348640 -0.261531 -0.346049 -0.333056 -0.273313 0.740687 -0.458281 -0.115260 -0.424984 -0.862562 0.949086 -1.535304 -0.046376 1.207601 -0.459033 0.427140 -0.350326 0.952714 -0.569178 0.686947 0.163378 0.008757 0.091322 -0.544810 -1.014818 0.318805 0.254698 -0.027227 -0.064056 0.671516 0.534657 0.002450 -0.247011 0.931551 -0.885395 1.141046 -0.374792 0.853723 -0.339486 -0.215016 -0.057439 -0.050315 -0.773448 -0.528443 0.527837 0.911233 -0.213618 0.799046 0.378516 0.197320 1.033284 -0.555100 0.812456 -0.305627 -0.011900 -0.613372 -0.513557 0.642952 0.383887 -0.133466 0.160493 -1.199504 -0.919205 -1.920908 -0.138935 0.020580 -0.609694 0.284374 -0.441915 -0.374615 -0.437914 -0.951445 1.366297 -0.214224 -0.456695 0.578171 0.085719 0.577656 0.846698 -0.128479 0.205932 -0.191891 0.274467 0.493765 -0.128065 -0.903547 1.174088 -0.512702 -0.230575 1.390841 -0.589137 0.510320 0.181272 0.515788 -0.688259 0.644713 0.040569 -0.609528 0.508119 1.386978 0.528995 0.326774 -0.541702 -PE-benchmarks/snake-ladder.cpp__std::deque >::max_size() const = -0.060684 -0.242359 0.738344 0.473410 -0.178748 0.088897 0.126817 -0.321186 0.369198 -0.274256 -0.171404 0.073556 -0.459349 0.123200 -0.406863 0.083453 -0.625894 -0.380420 -0.189902 -0.345308 -0.128666 -0.227405 0.176959 0.144704 0.316640 0.303078 -0.238947 -0.035086 -0.596292 0.013104 0.351697 -0.094790 0.201794 0.176148 0.063672 -0.713797 0.341946 0.382169 -0.206700 -0.399274 0.304938 -0.458476 0.039302 -0.379317 -0.068254 0.042176 0.000734 0.287233 0.307270 -0.017211 -0.057894 0.096085 -0.107515 0.716243 -0.362575 0.256861 0.235149 0.005446 -0.100967 0.050295 0.023278 0.035807 0.118039 0.114434 -0.241600 -0.418390 -0.080330 -0.390590 -0.244398 0.348045 -0.064056 -0.017954 -0.330669 -0.177352 -0.578461 -0.123543 -0.408217 0.450285 0.527992 -0.508423 0.293008 -0.014256 0.145100 0.060108 0.182029 0.113102 0.321353 0.079209 -0.014665 -0.075723 -0.490448 0.073347 0.044521 -0.152517 -0.193512 -0.614260 0.328009 -0.760649 -0.497402 0.018822 0.194140 -0.230525 -0.028037 0.159540 0.016704 0.195511 -0.224275 -0.346867 0.068977 0.202233 0.094793 -0.001713 0.109226 -0.010719 -0.077981 -0.424329 -0.578562 0.230950 -0.022720 -0.078573 -0.009787 0.470348 -0.206172 -0.033630 0.054699 0.156716 -0.240070 0.624346 -0.096176 0.084333 -0.126197 0.080099 -0.256649 0.042721 0.241949 0.506301 -0.337329 0.066271 -0.145990 0.037160 -0.352782 -0.254709 -0.168892 0.144100 0.056562 -0.454643 -0.277190 -0.193253 -0.297079 -0.626540 -0.041567 -0.204594 -0.247011 0.218702 0.332766 0.606711 0.329979 0.695463 -0.242018 0.033708 0.022110 -0.231211 0.344356 0.088992 0.320809 -0.251966 -0.297114 0.184381 -0.146712 0.230244 0.027888 0.106105 0.005935 -0.523612 -0.021698 0.213460 0.298594 0.010915 0.466968 0.457555 -0.243660 -0.488252 0.140517 0.302320 -0.212625 -0.030297 0.095383 -0.383972 0.231915 0.187030 -0.019886 0.325502 0.011574 -0.100667 0.117421 -0.117338 0.237562 -0.362005 -0.103781 -0.225858 -0.137550 -0.417555 0.200526 -0.167970 -0.236487 -0.239024 -0.437898 0.501104 -0.467446 -0.287645 0.422769 0.149372 0.394976 -0.507123 0.202474 -0.298674 0.628024 0.052930 0.090355 0.033682 -0.092606 -0.352575 0.075007 0.127525 -0.170538 0.130975 0.400044 0.301585 0.082713 -0.020822 0.487685 -0.190761 0.402567 -0.232008 0.300013 -0.102341 -0.351550 0.243550 -0.121579 -0.155961 -0.069598 0.254705 0.662049 0.292981 0.463669 0.428226 0.268874 0.488104 -0.196685 0.090288 -0.133170 0.223405 -0.196628 -0.202545 0.122736 0.283344 -0.053669 0.058721 -0.587946 -0.866147 -0.559959 -0.534622 0.213216 -0.473272 -0.009089 -0.024896 -0.032317 -0.501191 -0.342402 0.147103 -0.203145 0.599699 0.179757 0.061677 0.337362 0.485783 -0.406493 0.010441 0.342607 0.353623 0.050380 0.006126 -0.598789 0.485440 -0.369439 0.020184 0.682153 -0.327425 0.228461 0.057206 0.410018 -0.380010 0.622980 0.146052 -0.435875 0.412282 0.428403 0.407147 0.414338 -0.266229 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.687100 -1.333181 4.115750 2.850164 -0.762845 0.797575 -0.084913 -1.509203 0.857765 0.687100 -0.817709 1.641246 -1.186674 0.436554 -0.699167 1.232205 -2.774156 -0.871077 -0.815565 -1.378721 -0.743432 -0.556011 -0.309291 1.402620 1.785095 1.171675 -1.203870 0.446523 -1.519690 -2.916148 -0.467844 -0.265004 0.843305 -0.731019 1.623815 -2.779829 2.459511 2.171303 -0.432769 -2.295226 1.025120 -0.611915 -0.298070 -0.425159 -0.596368 1.038497 0.751075 1.355669 1.073475 1.153828 -0.565106 0.413740 1.744727 2.948743 0.067788 1.475827 1.749105 -0.660641 0.397878 -0.136631 0.034904 -0.580030 -0.040139 -0.318879 0.258251 -1.964581 -0.261394 -0.250838 -0.164266 1.114030 0.178326 -1.497351 -1.560662 -1.511049 -2.412743 -0.180612 -2.408444 2.039329 2.328397 -1.780996 1.345707 0.426945 0.355442 0.876876 1.133632 0.222043 1.366177 0.816405 -0.271016 0.368401 -0.532612 -1.018671 0.739885 -0.581817 -1.579425 -3.375763 1.180968 -3.718048 -2.098631 1.282041 0.885328 -1.667356 0.126625 -0.922914 0.424753 0.660353 -0.711849 -1.187857 0.373568 0.952030 0.217355 -0.399598 0.411568 -0.173114 0.122275 0.577504 -2.393495 1.491416 0.849258 0.051435 -0.072880 1.891397 0.705318 0.504542 -0.196998 1.035224 -0.719930 1.924316 0.403619 1.396100 -1.312652 1.024098 -0.479271 1.275925 0.925541 -1.470894 -1.100222 0.115073 -0.402494 0.911177 -0.630510 1.123441 -1.269881 1.872918 0.723562 -0.809262 -1.572977 -1.388747 -2.291232 -1.549182 0.235827 -0.445087 -2.532989 0.705784 1.296627 0.885676 0.755322 0.574968 -0.995944 -0.577809 -0.179764 -0.158338 1.062441 -0.726065 0.946966 -1.225177 -0.806734 1.256529 0.557164 1.086629 0.200511 0.067597 0.949773 -1.055814 0.499406 1.262697 1.023800 -0.166914 2.188665 2.093128 2.008510 0.076360 -0.643169 0.827260 -1.354201 -0.330717 0.251311 -1.541786 0.577253 0.784319 0.975961 2.565513 -0.032453 -0.107909 1.411004 -0.201443 0.424500 -1.075714 0.455176 -1.067239 -0.265313 -0.533638 0.417351 -1.115937 -0.318010 -1.718530 -1.635981 2.498507 -2.991981 -1.095677 1.820634 -0.567283 1.131127 -1.819960 2.157216 -1.071289 1.758345 0.848883 -0.116730 0.413734 -0.718564 -1.757260 0.637299 0.703116 -0.591412 0.331819 1.130957 0.849057 -0.223651 -0.279462 1.540083 -1.400314 1.666176 -1.103637 1.267875 -0.803563 -0.137528 -0.603465 -0.128461 -0.885601 -0.504726 0.508646 0.240983 -0.358538 1.029104 0.355786 1.189602 1.373166 -0.844128 1.237613 -0.873323 0.594496 -1.651150 -1.220284 0.489885 1.267004 0.430916 0.770658 -2.982127 -1.639880 -3.653346 -1.223366 -0.383264 -0.356677 0.572772 -0.253444 -0.908294 -1.548041 -2.124440 3.189071 0.002945 -0.084189 1.658733 0.224740 1.577514 1.405287 0.221884 0.036758 -0.434533 0.490284 0.524618 -0.202437 -1.509196 1.983123 -1.553910 0.151251 2.856849 -1.289956 1.467838 -0.131472 0.522219 -2.200588 1.957835 0.582652 -1.920497 0.488620 2.736595 1.337992 -0.674137 -1.316162 -PE-benchmarks/snake-ladder.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.270414 -2.492304 5.492200 3.919477 -0.739328 1.947948 -0.280389 -1.371749 -0.351708 1.005609 -0.326199 3.064427 -1.735976 0.274850 -0.364393 0.640762 -2.845681 -0.892202 -1.393972 -1.555931 -0.210261 -0.451997 -1.300817 3.543338 2.041207 0.801199 -1.866872 0.472538 -3.408384 -3.724195 -0.930377 0.085516 2.030322 -1.817752 2.267362 -4.924084 3.036481 3.799113 -0.123159 -3.391007 1.686860 -0.546455 -0.257637 -0.040312 -2.386447 1.453072 1.054403 -0.839224 0.927469 1.189885 -1.282809 0.796531 2.863811 3.592288 0.605083 2.123586 2.465114 -1.463164 1.119433 -1.042478 -0.665172 -0.882054 0.163109 -1.244172 0.197390 -2.542012 -0.075574 0.417342 -0.620458 0.597071 0.210263 -2.064551 -1.249330 -1.755146 -4.055402 -0.370797 1.177272 2.091026 2.601555 -1.478752 2.353829 -0.097677 -0.286667 1.699053 2.215955 0.867082 0.628887 1.045250 -0.094854 0.983918 -0.476897 -0.197746 0.709198 1.096563 -2.662111 -3.360836 1.701377 -4.090260 -2.362268 2.368645 0.472565 -2.837004 -0.865463 -2.696310 -0.220939 1.547977 -1.370649 -1.703568 -0.183510 2.491931 0.893920 -0.896467 0.519391 -0.461321 0.158420 -0.255113 -2.142452 2.543340 1.776576 0.171068 -0.741694 2.968920 0.442754 1.220095 -0.272284 2.013411 -1.695356 2.010133 0.802848 1.540229 -2.392128 -0.079906 -0.338291 -0.663464 0.616492 -0.961008 -1.856464 -1.250222 -0.833497 1.247885 0.663889 2.081632 -0.404553 2.533658 1.444206 -0.306949 -1.163670 -2.029497 -2.757639 -2.249928 -0.763292 -0.118414 -3.321985 2.662568 1.507021 -0.234322 0.477371 1.090580 -0.295606 -0.546810 -0.211995 -1.534328 1.226448 -1.671017 0.672344 -1.601799 -1.504936 1.780503 0.586853 2.429697 0.328300 0.529323 1.169685 -0.192367 0.568189 1.239828 1.382219 0.107379 3.204284 3.192393 3.669743 0.844878 -1.528389 0.329306 -2.729305 -0.136733 -0.275087 -1.621475 -0.300826 1.651268 -1.183562 4.354541 -0.436757 -1.014207 2.816210 -0.258532 0.627407 -1.709536 2.113359 -1.621499 0.397086 -0.951289 -2.126184 -1.435130 -0.655559 -3.537486 -2.563011 3.624441 -4.633870 -1.990763 1.300292 0.538948 1.024685 -3.525090 2.695036 -1.241336 3.052654 1.566470 -0.374147 0.548235 -0.000484 -2.319554 0.891930 0.928660 -1.942865 0.651274 1.796833 0.985751 -1.003151 -0.745510 1.800451 -1.287774 1.667217 -2.144040 1.414352 -1.214284 0.133882 -0.802654 -0.123683 -0.935020 -0.605358 0.425790 -1.650356 -0.554416 1.051408 -0.777334 2.643606 1.134406 -0.232511 0.915563 -1.526557 1.062591 -1.942945 -1.623991 0.025514 3.153215 1.979484 1.014465 -4.205849 -1.931514 -4.651596 -2.245134 -0.002785 1.078437 0.245703 0.589006 -1.279917 -2.882923 -2.940087 4.047807 -0.094994 1.643384 2.533714 0.487861 2.242648 1.378890 0.626897 -0.201875 -0.345836 0.972182 0.709133 0.369758 -1.803479 2.371254 -2.185718 0.401491 3.535167 -1.403199 2.684379 0.092447 -0.218578 -3.426389 3.342661 0.910205 -2.861190 0.668372 3.044488 0.807429 -1.851566 -1.416275 -PE-benchmarks/snake-ladder.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.086689 -0.647507 2.610509 1.578740 -0.225793 0.001111 1.312915 -1.082872 1.328305 0.393354 -0.372993 -0.093612 -1.503861 0.259452 -0.861198 0.937035 -1.724315 -1.107209 -0.453712 -1.289787 -0.149468 -0.778609 1.438791 -0.234092 1.514665 0.010542 -0.609245 -1.193247 -1.234959 -0.991098 1.312925 -0.535678 0.926281 -0.052301 -0.564223 -2.862488 1.394007 0.995645 -0.826998 -1.007163 1.336312 -0.592013 -0.148495 -0.348486 -0.278978 0.129648 0.151506 1.049469 1.264107 0.722008 0.660603 0.021980 0.450012 2.680206 -1.464821 0.655209 0.258997 -0.250190 -0.510098 0.566569 0.126469 0.039738 0.419421 0.619069 0.178204 -1.359061 -0.008934 -1.040678 -1.522449 1.180333 -0.350791 -0.098214 -0.889728 -0.000545 -0.840653 -0.140725 -0.889062 1.267012 1.820006 -1.097327 1.180104 -0.030490 -0.148989 -0.455307 -0.580634 0.368062 0.166858 0.176264 0.165357 -0.996523 -1.037554 0.015351 0.164341 -0.034504 -0.290756 -2.005141 1.385408 -0.649137 -1.328890 -0.017550 0.945323 -0.863969 -0.445339 0.294100 -0.100414 0.791616 -0.633957 -1.139923 -0.417509 0.208429 0.147735 0.067479 0.013053 -0.437711 -0.647801 -0.803310 -1.571552 0.372769 -0.650770 -0.577521 -0.654295 0.890407 -0.622544 -0.013246 0.459649 1.183387 -0.655600 1.232802 -0.076379 1.037082 0.747277 0.526115 -0.929387 -0.344570 1.193870 1.690944 -0.242083 0.080028 -1.041391 0.234352 -1.094254 -0.164546 0.084454 0.619131 1.040081 -1.474504 -0.855250 -0.062734 -0.024650 -1.773352 0.214483 -0.966431 -0.277397 0.472826 0.929542 0.882936 1.093885 2.329733 -1.339441 0.620566 0.005216 -0.849311 0.880748 0.073054 1.030873 -0.628320 -0.831921 -0.079191 0.203713 0.649731 -0.387372 0.323227 0.028206 -1.811907 -0.174082 0.108591 0.434320 -0.734435 0.491422 1.271746 0.981938 -1.474437 0.257426 1.400861 -0.610681 -0.285917 0.637016 -1.727356 0.672079 0.334287 -0.248262 0.925902 0.199351 -0.594231 0.774018 -0.917396 0.107667 -0.915752 -0.037993 -0.740039 -0.358081 -1.013495 0.018815 -0.530588 -0.738860 -0.320790 -0.410572 1.382849 -0.751903 -0.942752 1.351687 -0.045474 0.136879 -1.884571 2.558229 -0.848033 0.588499 -0.405875 -0.051473 -0.185807 0.583253 -1.118063 -0.109261 0.110100 -0.205476 1.199856 2.298894 0.923745 0.059730 -0.309546 1.801217 -0.526532 1.443661 -0.599567 1.034372 -0.453735 -1.256609 0.190268 -0.257110 -0.528353 -0.635214 0.573640 1.792964 0.836681 0.535215 1.438525 0.605920 1.944063 -0.430369 1.198213 -0.069651 1.233864 -0.270384 -0.395205 0.840708 0.674742 -0.751822 1.144493 -1.850905 -2.427452 -0.789906 -1.922144 0.380666 -1.030005 0.606236 -0.581594 0.000596 -1.791398 -1.097024 0.055981 -0.353525 0.929429 0.902369 0.156287 0.806734 1.420378 -1.026691 0.222442 0.338099 1.156175 0.289927 -0.822662 -1.002338 1.140718 -1.283239 -0.024373 1.783904 -0.778236 0.407338 -0.484731 1.120232 -1.470391 1.927999 0.362799 -0.471461 1.804272 0.874430 1.524386 0.768842 -0.590012 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.338556 -4.536883 26.586276 17.159617 -8.708451 2.716481 -3.130747 -13.087518 7.451423 1.442992 -5.596294 8.204085 -4.155023 3.620909 -5.691419 10.084986 -21.324185 -3.690660 -5.697174 -12.591882 -7.644485 -1.627259 -0.048165 4.567974 11.403725 11.271962 -7.853982 2.987992 -2.536955 -18.917483 -0.814387 -2.051325 4.024866 -2.334977 9.148279 -22.563598 16.305350 10.839745 -5.037503 -11.792979 6.809340 -3.752655 -2.786025 -3.034249 -5.549208 4.571935 1.134306 10.599316 7.784025 6.416506 -1.846675 5.860105 10.668266 22.334939 -0.818689 7.981788 8.364028 -4.412505 -1.257057 1.071400 1.968979 -1.093132 0.130830 -1.879701 3.423886 -15.409959 -1.983598 -3.220137 -0.517943 8.642903 1.108106 -11.983405 -8.716854 -10.299210 -12.768467 -2.504670 -19.638145 14.474243 12.724299 -12.335527 5.031222 1.888280 0.483494 4.343463 5.538077 0.297868 12.980576 5.024325 0.886034 1.245980 1.327225 -7.265708 7.967244 -6.148201 -9.866757 -25.513586 7.926075 -25.300350 -13.352062 6.595397 10.523411 -10.314328 0.614734 -6.382496 4.074621 1.507042 -3.948307 -5.676998 3.296124 4.782708 0.111047 -2.040295 -0.395992 -1.061068 1.972213 6.954831 -16.541780 11.073491 3.135520 3.856871 0.203468 10.682112 7.332650 -2.074203 -1.608153 7.187677 -5.237028 13.170815 -2.035682 9.594563 -9.908440 12.522647 1.083003 11.647858 6.747689 -13.257270 -6.084744 -2.036161 -4.198072 5.704915 -8.466486 5.959194 -10.630873 12.107356 6.860416 -3.907856 -11.060390 -7.149859 -15.624023 -13.040358 1.374624 -3.749479 -17.287041 4.263286 7.931854 9.111141 7.112621 -0.881298 -6.904892 -2.775274 -1.330092 0.854205 9.387742 -3.471361 7.239948 -7.774388 -3.673300 6.688530 1.183567 7.562555 0.029140 1.132386 5.002520 -7.888533 2.211541 9.843432 8.217024 1.023622 11.372452 13.747039 16.988751 -1.614533 -2.588237 6.907898 -8.910855 -2.838812 2.714453 -8.935917 2.037935 5.589963 8.735540 16.513821 0.071677 1.999379 4.303598 -0.362677 2.787410 -5.949406 0.479159 -5.601506 -1.545048 -1.889166 4.076054 -8.440880 -0.145278 -10.309747 -13.694710 15.256686 -24.263056 -6.762413 17.411971 -7.811660 8.191970 -9.940824 12.802306 -7.019212 9.917750 1.828377 -0.885203 1.182351 -8.481576 -14.269020 7.931082 3.545491 -1.957987 -0.262540 9.302623 6.320953 0.862588 -4.238934 10.969648 -10.713558 14.710464 -6.564916 11.915952 -5.023815 -1.438573 -4.185858 -0.101166 -9.613189 -4.914314 6.147875 4.724700 -3.292646 8.889076 2.408122 6.064299 11.401232 -7.432165 10.926034 -5.016424 0.063014 -8.974905 -8.638329 7.176456 7.371374 0.124432 3.042391 -18.369738 -10.508002 -28.109574 -5.949597 -1.668561 -4.243458 4.626258 -4.244512 -6.536213 -7.356530 -13.023370 22.872831 -0.219939 -1.436206 9.865763 1.450551 9.594424 10.884810 0.244626 2.138487 -4.304434 1.758751 5.433775 -2.505717 -12.297465 15.515759 -7.019535 0.329170 19.291196 -8.273183 9.014805 0.720715 4.336142 -11.785070 9.972223 1.568223 -10.936488 3.512009 17.016970 6.569489 -1.424153 -8.623706 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy(queueEntry**, queueEntry**, queueEntry**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy_backward(queueEntry**, queueEntry**, queueEntry**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a(queueEntry**, queueEntry**, queueEntry**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__miter_base(queueEntry**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_wrap(queueEntry** const&, queueEntry**) = -0.090136 -0.251670 0.665673 0.509658 0.030368 0.003709 0.406774 -0.220953 0.393630 0.224799 -0.085117 0.051449 -0.526169 0.141520 -0.091674 0.418338 -0.389413 -0.362875 -0.024780 -0.260554 -0.019499 -0.227089 0.454230 -0.126570 0.449235 0.018739 -0.174298 -0.425321 -0.459830 -0.245494 0.303470 -0.225265 0.310698 0.148860 -0.197899 -0.634567 0.340936 0.279286 -0.250621 -0.337564 0.396248 -0.287569 0.157239 -0.177316 0.109437 0.119384 0.123878 0.157670 0.411341 0.270522 0.267063 -0.039133 0.171094 0.542531 -0.479266 0.204592 0.074611 -0.078613 -0.182684 0.042665 0.061485 -0.014832 0.228665 0.179459 -0.107183 -0.424211 -0.220957 -0.330541 -0.491794 0.224334 -0.142919 0.123854 -0.429369 0.001636 -0.083077 -0.117905 -0.628931 0.307190 0.553311 -0.351609 0.393308 0.037424 0.013887 -0.147983 -0.043617 0.154007 -0.034152 0.055977 -0.052087 -0.169700 -0.212985 -0.014736 0.040242 0.084683 -0.032071 -0.364753 0.314037 0.103628 -0.423856 0.045942 0.198794 -0.097383 -0.190366 0.186357 -0.055215 0.368510 -0.276164 -0.421905 -0.053280 -0.064633 0.185791 -0.082095 -0.070826 -0.247038 -0.306672 -0.338632 -0.474719 0.010064 -0.169481 -0.302778 -0.189358 0.258555 -0.203777 0.043781 0.082727 0.258205 -0.199669 0.500601 0.038458 0.323210 0.286877 0.011251 -0.517531 -0.019947 0.389141 0.605772 -0.158639 0.137678 -0.352380 -0.029987 -0.284802 -0.104762 0.191893 0.266888 0.454954 -0.412470 -0.253271 -0.019003 0.042675 -0.509921 0.203803 -0.292160 0.251304 0.067860 0.292811 0.122047 0.393683 0.828355 -0.375705 0.130263 -0.028233 -0.211477 0.401908 0.255345 0.359787 -0.205479 -0.222717 0.073626 0.184323 0.031030 0.001289 0.143422 0.075074 -0.523005 0.040653 0.060764 0.099196 -0.275451 0.247786 0.222770 0.258208 -0.242693 0.074452 0.375127 -0.067884 -0.009206 0.143136 -0.496985 0.304870 0.051757 -0.136330 0.141528 0.055647 -0.252559 0.231491 -0.270406 0.090184 -0.272898 0.065583 -0.244234 -0.121551 -0.319621 0.072010 -0.074318 -0.322790 0.023237 0.109857 0.438939 0.099692 -0.104332 0.166440 -0.019879 0.001865 -0.498017 0.860477 -0.327613 0.124048 -0.237316 -0.065795 -0.015801 0.277561 -0.212674 -0.161406 0.135561 0.009106 0.256635 0.584540 0.280899 -0.068298 0.008200 0.471930 -0.014410 0.385079 -0.024315 0.342052 -0.098241 -0.153118 0.185040 -0.090391 -0.068971 -0.119351 0.007251 0.653107 0.287352 0.087608 0.406324 0.096045 0.579572 -0.201829 0.337433 -0.024723 0.499995 -0.085994 -0.081923 0.135821 0.181627 -0.144023 0.312688 -0.487224 -0.669958 0.110557 -0.427497 0.088505 -0.041319 0.144091 -0.118808 0.065925 -0.488332 -0.265606 -0.066094 -0.179108 0.277336 0.137182 0.049564 0.258432 0.356617 -0.267894 -0.103436 0.011339 0.244812 0.099444 -0.125328 -0.209650 0.255859 -0.439878 -0.039791 0.401399 -0.230304 -0.014202 -0.123677 0.477346 -0.328178 0.600661 0.101073 -0.072982 0.662805 0.346434 0.539656 0.107546 -0.171658 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a1(queueEntry**, queueEntry**, queueEntry**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_base(queueEntry**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a2(queueEntry**, queueEntry**, queueEntry**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move::__copy_m(queueEntry**, queueEntry**, queueEntry**) = -0.622467 -1.705876 3.777121 2.486801 0.064591 0.961322 0.695170 -1.112612 0.916424 0.860358 -0.815065 1.736122 -1.786196 0.237628 -0.771812 0.653714 -2.235442 -1.724952 -0.346149 -1.027496 -0.392434 -1.193756 -0.062740 1.678770 1.651829 0.437597 -1.424815 -0.073625 -3.103438 -2.810522 -0.166165 -0.470268 1.334984 -0.619793 1.005101 -3.291133 2.034901 2.305907 -0.269789 -2.428241 1.317262 -1.189370 -0.031603 -0.179539 -0.336916 1.219371 1.187866 0.401359 1.332629 0.874659 -0.020105 -0.112376 0.730395 2.364497 -0.545095 1.524915 1.413691 -0.910918 0.162830 -0.202551 -0.119884 -1.034690 0.748894 0.409782 -0.803500 -1.567183 0.263949 -0.297684 -1.203332 1.262377 0.195103 -0.874899 -1.305197 -0.786945 -2.549557 -0.357780 0.961068 1.422482 2.780427 -0.926030 2.252926 0.192578 0.916339 0.260262 1.274979 0.271211 1.349203 0.497021 -0.857141 -0.469486 -1.855459 -0.431700 -0.300132 1.408348 -0.882349 -1.139742 1.071246 -3.289929 -2.291620 0.870394 0.229192 -1.367075 -1.385804 0.028844 0.816538 1.206176 -0.526771 -1.896005 -0.417505 1.105791 -0.520379 -0.424686 0.454993 -0.949533 -0.652463 -0.350429 -2.104668 0.813573 0.770546 -0.701903 -1.034399 2.179354 -0.433738 1.052045 0.203532 1.350312 -0.659110 1.481365 0.494894 0.967568 -0.332784 -0.476272 -1.865184 -0.359253 0.605855 0.412307 -1.612385 -0.420166 -0.566911 0.617676 -0.688463 0.443203 -1.018806 2.115518 1.671316 -1.430428 -1.485426 -1.247709 -0.974398 -1.886242 0.032224 -0.683662 -1.687114 0.325095 1.461593 0.473889 0.829413 2.337032 -0.875532 0.468428 0.141192 -0.865887 1.210760 -0.929686 1.221171 -1.430355 -1.138847 1.177621 0.813616 1.096884 -0.011167 0.036690 0.626844 -1.504854 -0.632169 1.139065 0.871423 0.572992 2.121456 1.930648 2.206367 -1.268761 -0.349062 0.902082 -0.976052 -0.364740 0.247749 -1.835362 0.889975 0.826966 0.200011 2.755694 0.023618 -1.202534 1.470226 0.011652 0.679964 -1.772114 0.855721 -1.346953 0.374203 -0.870820 -1.025434 -1.160376 -0.877807 -1.716531 -1.382390 2.610670 -1.418115 -2.594963 1.524900 -0.479012 1.516407 -3.591229 1.497441 -1.342114 1.870972 0.103357 0.166684 0.042436 0.222355 -1.307355 0.782195 0.703370 -1.039389 1.580683 1.754152 1.005028 0.244822 -0.159543 1.621771 -0.426970 1.124090 -0.937192 0.991017 -0.662565 -0.448485 -0.219830 -0.373188 -0.255790 0.248702 0.205101 0.183801 0.916189 0.374336 0.993536 2.009358 1.373508 -0.668086 0.749651 -0.876626 1.598736 -1.214043 -1.362007 -0.002130 1.352456 0.368602 0.906421 -3.129151 -2.583584 -2.095688 -3.293060 -0.037688 -0.261516 0.506499 0.372339 -0.274838 -2.637660 -1.456180 1.988258 0.190116 2.728320 1.417725 0.190241 1.632070 1.478266 -0.562193 -0.494470 -0.163812 0.807443 -0.246836 -0.442314 -1.644135 1.517120 -1.996526 0.960860 2.482010 -1.528769 1.079848 -0.219177 0.884960 -2.526382 2.816417 1.040891 -1.892965 1.165069 1.262730 1.951685 -0.702807 -1.306113 -PE-benchmarks/snake-ladder.cpp__void std::__copy_move::__assign_one(queueEntry**, queueEntry**) = -0.291919 -0.319830 1.009497 0.707594 0.045139 0.080284 0.436779 -0.457132 0.629958 0.318439 -0.039797 0.114417 -0.634983 0.186418 -0.191570 0.547185 -0.587095 -0.523927 -0.120595 -0.559319 -0.170707 -0.314788 0.494613 -0.153751 0.555747 -0.147598 -0.362559 -0.438846 -0.682188 -0.524410 0.423416 -0.298477 0.424336 -0.168270 -0.231671 -1.364413 0.610235 0.439073 -0.381182 -0.479098 0.514907 -0.446230 0.194284 -0.178378 -0.033535 0.094860 0.096446 0.019063 0.607694 0.304208 0.449840 0.130804 0.131766 1.126370 -0.725029 0.354213 0.099893 -0.162022 -0.357253 0.175670 0.070200 0.012920 0.379966 0.227338 -0.167129 -0.664177 -0.154960 -0.377971 -0.708739 0.376487 -0.153886 -0.075331 -0.436390 -0.029326 -0.345703 -0.291607 -0.422740 0.373188 0.796174 -0.483737 0.547095 0.002861 0.059735 -0.035370 0.108407 0.173652 0.268902 0.075649 -0.116920 -0.245076 -0.233546 0.099669 0.074332 0.317992 -0.087649 -0.584398 0.457323 -0.099170 -0.653845 0.149873 0.327519 -0.128909 -0.601343 0.010903 0.073861 0.420177 -0.416321 -0.647446 -0.233241 0.070786 0.133428 -0.139321 -0.042217 -0.538318 -0.331261 -0.414147 -0.699325 0.064680 -0.157220 -0.309072 -0.508698 0.504549 -0.341659 -0.037585 0.089535 0.478237 -0.374297 0.616671 -0.122187 0.489890 0.169675 0.048814 -0.884720 -0.225443 0.432223 0.723348 -0.202332 0.029618 -0.547274 0.006530 -0.510643 -0.008959 0.113026 0.478298 0.715234 -0.453093 -0.357837 -0.040403 0.095851 -0.843774 0.206837 -0.423896 0.062700 0.118400 0.461628 0.269656 0.569625 1.067144 -0.428670 0.339053 -0.088256 -0.336354 0.667144 0.033201 0.533890 -0.337995 -0.354099 0.097212 0.241447 0.172004 0.007761 0.121451 0.070725 -0.718238 -0.083464 0.036530 0.196778 -0.238055 0.357491 0.408179 0.795339 -0.666815 0.165520 0.515936 -0.185023 0.037649 0.107105 -0.643668 0.225783 0.223632 -0.258966 0.443705 0.059148 -0.474859 0.203482 -0.267871 0.202883 -0.416833 0.116341 -0.359066 -0.104630 -0.370793 -0.132036 -0.269635 -0.374544 -0.152690 -0.130284 0.677113 -0.204938 -0.444352 0.513511 -0.062062 0.123411 -0.937584 1.125653 -0.485272 0.345339 -0.443020 -0.016080 -0.103832 0.497023 -0.430581 0.109056 0.198231 -0.171243 0.416671 0.968610 0.410301 0.129591 -0.123630 0.710085 -0.077050 0.544473 -0.143013 0.646633 -0.187018 -0.317072 0.161015 -0.158424 -0.110865 -0.161605 0.160299 0.618105 0.440436 0.083997 0.439544 0.386421 0.781162 -0.291051 0.525442 -0.065870 0.574371 -0.121160 -0.144312 0.253594 0.311995 -0.154337 0.374063 -0.772160 -0.880756 -0.150900 -0.733390 0.215882 0.097188 0.081466 -0.138173 0.064993 -0.786509 -0.352433 0.176191 -0.246757 0.595915 0.256291 0.163761 0.401495 0.614402 -0.385336 -0.156111 -0.047891 0.188800 0.096366 -0.260978 -0.402826 0.515288 -0.593723 0.061929 0.567316 -0.291550 0.064871 0.030645 0.465856 -0.477319 0.870836 0.156428 -0.093233 0.883849 0.505468 0.857706 0.079588 -0.268693 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a(queueEntry**, queueEntry**, queueEntry**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a1(queueEntry**, queueEntry**, queueEntry**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a2(queueEntry**, queueEntry**, queueEntry**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward::__copy_move_b(queueEntry**, queueEntry**, queueEntry**) = -0.564241 -2.009305 4.351602 2.944994 -0.148244 1.099376 0.796985 -1.235459 0.960141 1.017331 -0.782166 2.060076 -1.992748 0.023091 -0.535952 0.757546 -2.627262 -1.772958 -0.447262 -1.160257 -0.427793 -1.244784 -0.327199 2.178549 1.897583 0.688883 -1.534129 -0.007277 -3.217369 -3.316117 -0.493413 -0.420302 1.545425 -0.647668 1.464377 -3.776693 2.368978 2.808328 -0.272268 -2.862196 1.383163 -1.122066 0.063065 -0.274244 -0.683202 1.469164 1.389922 0.522704 1.318985 1.027944 -0.314087 -0.074728 1.286812 2.629294 -0.160507 1.788839 1.836338 -1.032845 0.328315 -0.429145 -0.053028 -1.239181 0.765159 0.095936 -0.736152 -1.770399 0.126693 -0.221410 -1.239519 1.269410 0.386497 -1.179858 -1.603817 -1.116814 -3.206761 -0.494412 0.775640 1.686876 3.067352 -1.277924 2.505826 0.475915 0.911063 0.525997 1.533197 0.307108 1.537672 0.643195 -0.853812 -0.032072 -2.011072 -0.926683 -0.151629 1.163238 -1.228480 -1.999426 1.195079 -4.080886 -2.710400 1.221773 0.340615 -1.681333 -1.457228 -0.437935 0.910590 1.384876 -0.699342 -2.053169 -0.434303 1.259804 -0.533817 -0.509993 0.596670 -0.661188 -0.485059 -0.171847 -2.471476 1.126736 1.109820 -0.634800 -0.856414 2.491124 -0.290959 1.369792 0.131969 1.401706 -0.766973 1.734376 0.705914 1.117606 -0.643316 -0.425087 -1.588606 -0.484626 0.541635 0.076531 -1.618102 -0.672190 -0.530655 0.893041 -0.508501 0.906930 -0.991000 2.411709 1.660290 -1.314176 -1.577934 -1.640608 -1.715625 -2.062014 0.152994 -0.551343 -1.955493 0.703938 1.611778 0.301343 0.766672 2.040276 -0.805815 0.160947 0.060962 -0.887024 1.236660 -1.008878 1.328811 -1.507880 -1.223214 1.447743 0.965029 1.634171 0.046757 0.055793 0.827014 -1.332790 -0.687303 1.035180 0.934050 0.535373 2.497703 2.301005 2.455496 -0.926195 -0.579555 0.826639 -1.112743 -0.304243 0.230191 -2.012901 0.925788 0.879792 0.214408 3.183076 -0.085720 -1.106049 1.891678 0.026022 0.639752 -1.969964 0.968031 -1.559024 0.435383 -1.006214 -0.947046 -1.504282 -0.934399 -2.218911 -1.668479 3.057490 -1.826364 -2.673124 1.682184 -0.452028 1.802399 -3.744764 1.865533 -1.350538 2.214344 0.238789 -0.011820 0.288362 -0.090530 -1.473743 0.580936 0.808784 -1.235361 1.412636 1.637161 1.058898 0.045929 -0.178024 1.710395 -0.612543 1.406954 -1.271436 1.177811 -0.876685 -0.350113 -0.355046 -0.327770 -0.190265 0.302033 0.211917 -0.034105 0.688843 0.524163 0.871813 2.182314 1.369842 -0.829876 0.830379 -0.812932 1.694046 -1.520795 -1.432268 -0.111535 1.668006 0.525257 1.089242 -3.549384 -2.561265 -2.676812 -3.298028 -0.330328 -0.034148 0.599610 0.431325 -0.495922 -2.746144 -1.851989 2.646421 0.234491 2.217776 1.712889 0.232259 2.049222 1.612904 -0.322648 -0.530634 -0.122181 0.748131 -0.161189 -0.506792 -1.795440 1.748736 -2.245861 1.070925 2.869894 -1.710717 1.396919 -0.503967 1.110486 -2.896488 3.104336 1.062704 -2.338294 1.031535 1.902082 2.082244 -1.135976 -1.510736 -PE-benchmarks/snake-ladder.cpp__std::deque >::empty() const = 0.529537 -0.209094 1.822897 1.211108 -0.646151 0.072147 -0.161702 -0.998133 0.734940 -0.067615 -0.431919 0.276326 -0.355492 0.352911 -0.603589 0.833457 -1.538249 -0.275203 -0.437378 -0.967629 -0.492000 -0.104607 0.273583 -0.048828 0.836137 0.859317 -0.425506 0.121098 -0.101518 -1.061425 0.243104 -0.229972 0.173298 0.092486 0.435287 -1.274429 1.160046 0.641950 -0.511691 -0.716766 0.506598 -0.392648 -0.166062 -0.431208 -0.143459 0.267408 -0.050281 0.935811 0.653055 0.497173 -0.023421 0.419421 0.655512 1.531542 -0.348153 0.495476 0.463582 -0.156952 -0.142828 0.229046 0.157114 0.124184 -0.067458 -0.055624 0.283384 -1.164925 -0.354162 -0.464640 -0.040132 0.665927 -0.166959 -0.630720 -0.756648 -0.649770 -0.803376 -0.160377 -2.438466 1.090704 0.900966 -1.078516 0.237614 0.118913 -0.009151 0.227806 0.228157 0.110872 0.779000 0.359099 0.142295 0.122020 0.158236 -0.457427 0.650011 -0.827789 -0.643900 -2.016666 0.649211 -1.666810 -0.876218 0.351494 0.838186 -0.606186 0.339365 -0.242117 0.088199 0.090434 -0.396198 -0.375425 0.469572 0.171716 0.279217 -0.063339 -0.002909 -0.016655 0.112973 0.312029 -1.254428 0.722625 -0.014612 0.228627 0.161386 0.685494 0.544360 -0.382898 -0.110532 0.411677 -0.436043 1.203171 -0.300620 0.746236 -0.629340 1.099138 -0.107606 1.077274 0.709741 -0.737863 -0.374961 0.194662 -0.361451 0.293120 -0.810412 0.180999 -0.686302 0.578224 0.359860 -0.450580 -0.763239 -0.351013 -1.063399 -0.993448 0.175563 -0.345897 -1.038863 0.247389 0.599493 0.951946 0.719291 0.160395 -0.612606 -0.379631 -0.182077 0.064067 0.757640 0.020186 0.586801 -0.469885 -0.239995 0.421968 -0.043178 0.365255 0.098160 0.129357 0.322407 -0.788614 0.422419 0.731365 0.598639 -0.216344 0.775400 0.926626 0.473832 -0.126196 -0.039382 0.661898 -0.573146 -0.157789 0.275049 -0.664815 0.305278 0.345357 0.683703 0.767627 0.048382 0.322153 0.171587 -0.221491 0.229339 -0.348640 -0.261531 -0.346049 -0.333056 -0.273313 0.740687 -0.458281 -0.115260 -0.424984 -0.862562 0.949086 -1.535304 -0.046376 1.207601 -0.459033 0.427140 -0.350326 0.952714 -0.569178 0.686947 0.163378 0.008757 0.091322 -0.544810 -1.014818 0.318805 0.254698 -0.027227 -0.064056 0.671516 0.534657 0.002450 -0.247011 0.931551 -0.885395 1.141046 -0.374792 0.853723 -0.339486 -0.215016 -0.057439 -0.050315 -0.773448 -0.528443 0.527837 0.911233 -0.213618 0.799046 0.378516 0.197320 1.033284 -0.555100 0.812456 -0.305627 -0.011900 -0.613372 -0.513557 0.642952 0.383887 -0.133466 0.160493 -1.199504 -0.919205 -1.920908 -0.138935 0.020580 -0.609694 0.284374 -0.441915 -0.374615 -0.437914 -0.951445 1.366297 -0.214224 -0.456695 0.578171 0.085719 0.577656 0.846698 -0.128479 0.205932 -0.191891 0.274467 0.493765 -0.128065 -0.903547 1.174088 -0.512702 -0.230575 1.390841 -0.589137 0.510320 0.181272 0.515788 -0.688259 0.644713 0.040569 -0.609528 0.508119 1.386978 0.528995 0.326774 -0.541702 -PE-benchmarks/snake-ladder.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/snake-ladder.cpp__std::deque >::front() = -0.055273 -0.241681 0.774340 0.535000 -0.205897 -0.001198 0.238195 -0.294133 0.349148 -0.287720 -0.169069 0.069009 -0.578635 0.192670 -0.327856 0.224464 -0.730781 -0.410249 -0.142927 -0.272109 -0.022398 -0.242544 0.474914 0.089482 0.428419 0.408251 -0.264542 -0.222574 -0.527354 -0.010834 0.483053 -0.210679 0.358156 0.418829 -0.132948 -0.829806 0.367743 0.319132 -0.265156 -0.368992 0.461889 -0.447545 0.071257 -0.500894 -0.176610 0.056045 0.020624 0.264582 0.409440 0.051743 -0.051403 0.041781 0.015335 0.577681 -0.486447 0.186102 0.158139 -0.055049 -0.189067 -0.088028 0.047700 0.071178 0.211118 0.219755 -0.243847 -0.508634 -0.161243 -0.505455 -0.477013 0.359876 -0.157495 0.252964 -0.430025 -0.020523 -0.436482 -0.066555 -0.107131 0.500168 0.601804 -0.451747 0.333659 -0.091727 -0.007549 -0.110829 -0.014572 0.212138 0.085090 0.089046 0.034090 -0.183434 -0.431424 0.045942 0.070413 -0.055083 -0.068412 -0.562515 0.327185 -0.527025 -0.465418 -0.075514 0.241028 -0.233106 -0.055319 0.177082 -0.023861 0.348544 -0.247816 -0.385347 0.127105 0.035688 0.185053 -0.026047 -0.015386 0.036884 -0.243971 -0.508679 -0.606923 0.144862 -0.185031 -0.212060 0.086575 0.350768 -0.260272 -0.023815 0.086375 0.231217 -0.274941 0.682978 -0.087130 0.149663 0.131689 0.057205 0.018323 -0.113377 0.358810 0.786412 -0.360645 -0.046445 -0.317188 -0.016376 -0.377495 -0.431531 0.068243 0.106900 0.228310 -0.519770 -0.292519 -0.086372 -0.263827 -0.803481 0.002239 -0.303742 0.024582 0.403744 0.344650 0.338229 0.464882 0.925595 -0.322840 0.087378 0.049558 -0.306497 0.463998 0.257128 0.377967 -0.228320 -0.314901 0.206253 -0.165587 0.228196 -0.038061 0.182252 0.016294 -0.608747 -0.061762 0.231037 0.282244 -0.045023 0.332077 0.350840 -0.234039 -0.293448 0.158212 0.436058 -0.125398 -0.045782 0.178137 -0.480434 0.325910 0.110797 -0.133608 0.217496 0.034003 -0.244625 0.193412 -0.179983 0.194984 -0.405935 -0.048179 -0.223507 -0.024341 -0.527032 0.094631 -0.044366 -0.344935 -0.147672 -0.224622 0.522585 -0.323679 -0.238930 0.332829 0.171491 0.400806 -0.610709 0.388213 -0.356493 0.595009 -0.016679 0.000358 0.093885 -0.190778 -0.368926 -0.092393 0.134219 -0.010752 0.147188 0.467709 0.379021 -0.036691 -0.022874 0.534075 -0.021372 0.541009 -0.129831 0.296023 -0.086622 -0.326475 0.329691 -0.109520 -0.202103 -0.136819 0.208535 0.827285 0.354940 0.490431 0.637381 0.169982 0.675668 -0.226437 0.148175 -0.117988 0.395090 -0.104159 -0.180847 0.150772 0.414067 -0.139275 0.261253 -0.579099 -1.084265 -0.391730 -0.639383 0.154241 -0.435617 0.140361 -0.108981 0.050542 -0.518628 -0.296149 -0.030244 -0.225182 0.807136 0.208571 0.019722 0.309125 0.475883 -0.502580 -0.078343 0.346213 0.513141 0.120337 0.077818 -0.639369 0.421956 -0.431851 -0.049073 0.715654 -0.403990 0.101739 -0.167315 0.586556 -0.375319 0.744651 0.144455 -0.373158 0.656966 0.256046 0.300662 0.540112 -0.249632 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::operator*() const = -0.148122 -0.189396 0.772426 0.558679 -0.116434 0.038016 0.063439 -0.360402 0.356672 0.161255 -0.070991 0.136224 -0.324044 0.153834 -0.071630 0.437590 -0.519722 -0.253456 -0.157096 -0.399789 -0.172265 -0.130819 0.278294 -0.063114 0.376824 0.171534 -0.286900 -0.096927 -0.233652 -0.582860 0.165327 -0.181041 0.288195 0.009349 -0.025675 -0.902704 0.495757 0.337272 -0.256214 -0.334375 0.318031 -0.202704 0.088760 -0.133750 -0.174664 0.147900 0.022552 -0.086673 0.370135 0.242501 0.243467 0.121845 0.252753 0.629159 -0.311200 0.222003 0.120872 -0.167855 -0.222724 -0.002870 0.076933 0.043354 0.193603 0.084308 -0.015506 -0.530118 -0.151375 -0.226166 -0.394216 0.263784 -0.184160 -0.166673 -0.292094 -0.201104 -0.252654 -0.179180 -0.355741 0.299951 0.500878 -0.350478 0.269971 0.001190 -0.061426 0.034767 0.070960 0.113454 0.212914 0.119612 0.003418 0.003573 0.214528 -0.067463 0.180234 0.223322 -0.166103 -0.407262 0.333821 -0.301135 -0.402618 0.166204 0.310995 -0.131427 -0.363196 -0.124287 0.013230 0.252298 -0.239744 -0.326572 -0.016972 0.032761 0.198570 -0.094899 -0.136702 -0.191288 -0.182960 -0.039575 -0.531968 0.156350 -0.084909 -0.109840 -0.168333 0.303961 -0.034217 -0.091422 -0.006455 0.317815 -0.277745 0.545494 -0.112019 0.397503 -0.123538 0.221327 -0.323724 -0.072731 0.295267 0.138103 -0.186989 -0.105597 -0.343344 0.006751 -0.349629 0.037066 -0.043692 0.309377 0.604841 -0.184174 -0.304298 -0.066890 -0.268839 -0.691377 0.082217 -0.285596 -0.056615 0.271317 0.295547 0.170281 0.387133 0.607993 -0.283855 0.056644 -0.088509 -0.246957 0.451290 0.031104 0.329070 -0.222038 -0.198147 0.185892 0.105310 0.183237 0.091060 0.062745 0.094846 -0.402503 0.016578 0.287886 0.185006 -0.079232 0.229307 0.313429 0.619017 -0.141723 0.041984 0.333394 -0.141595 -0.008043 0.094992 -0.373052 0.092638 0.140711 -0.059917 0.332822 0.025733 -0.157253 0.118210 -0.180132 0.130911 -0.283074 0.125300 -0.205873 0.094246 -0.233167 -0.087428 -0.193651 -0.161291 -0.119874 -0.169420 0.483131 -0.374955 -0.219831 0.412406 -0.028105 0.170191 -0.491906 0.596639 -0.310136 0.416123 -0.233516 -0.044914 -0.003071 0.001902 -0.318326 0.095470 0.140370 -0.018594 0.050557 0.532188 0.272587 -0.029460 -0.138917 0.457636 -0.125524 0.517796 -0.086035 0.454299 -0.108458 -0.081877 0.064028 -0.069936 -0.237288 -0.188604 0.097436 0.326563 0.161096 0.135359 0.218580 0.173985 0.541780 -0.236441 0.392319 -0.029447 0.305233 -0.151970 -0.161155 0.239679 0.384005 -0.081946 0.162451 -0.508490 -0.519818 -0.428000 -0.373939 -0.002747 0.125020 0.111055 -0.144343 -0.054902 -0.277843 -0.312517 0.502632 -0.138024 0.425544 0.161168 0.090311 0.289838 0.401430 -0.168176 -0.105924 -0.129934 0.086036 0.165959 -0.048271 -0.341386 0.430448 -0.314704 -0.079551 0.467427 -0.262017 0.128096 0.098857 0.261031 -0.317417 0.516437 0.054909 -0.111612 0.560639 0.379847 0.394322 0.038312 -0.206563 -PE-benchmarks/snake-ladder.cpp__std::deque >::pop_front() = 1.621686 -0.733232 7.226181 4.766673 -2.248079 0.262684 -0.056779 -4.213779 3.157405 0.459382 -1.377393 0.667541 -1.719719 1.180693 -1.454455 3.308436 -6.081215 -1.284824 -1.769957 -3.974153 -1.762084 -0.971693 1.751304 -0.203956 3.360034 2.723726 -1.866348 0.130919 -0.186186 -4.923767 1.529967 -1.047839 1.330093 0.521794 1.207747 -6.424804 4.930728 2.367738 -1.939457 -2.605598 2.162724 -1.155597 -0.907912 -1.159164 -1.064266 1.184698 -0.277920 3.327892 3.017014 1.971398 0.442542 1.229737 2.412769 5.861488 -1.859538 1.804517 1.195634 -1.135537 -0.910586 1.097526 0.515506 0.519944 0.313245 0.561154 1.101867 -4.488462 -0.351091 -1.709381 -1.551589 3.215398 -0.464233 -2.502617 -2.643583 -2.035707 -2.644348 -0.456007 -6.029182 4.153046 3.902554 -3.311371 1.338266 0.235784 -0.426480 0.202469 0.315133 0.238990 3.249195 1.138404 0.389892 -0.440573 0.109228 -2.270452 2.241459 -1.931111 -1.936055 -6.589572 2.404562 -5.602134 -3.358939 1.005306 3.333422 -2.409705 -0.446847 -1.079817 0.903611 0.465515 -0.937304 -1.848236 0.978294 0.788523 0.151412 -0.198734 -0.494194 -0.364366 -0.226544 1.231319 -4.750853 2.246380 -0.507097 0.535291 -0.163891 2.490134 1.234219 -1.404452 -0.010661 2.255493 -1.649760 3.842433 -1.331886 3.240709 -0.958565 3.641413 -0.098433 2.693167 2.619901 -1.883467 -0.768186 -0.257357 -1.925877 1.223465 -3.568860 0.920939 -2.186809 2.474420 2.427103 -1.836491 -2.941346 -0.805950 -3.256332 -4.353139 0.749965 -1.850604 -3.535518 1.159236 2.400991 2.880494 2.844196 1.286136 -2.964498 -0.362533 -0.645383 -0.071677 2.979495 -0.129355 2.382531 -1.838239 -1.101878 1.254961 -0.004774 1.599166 -0.170413 0.201699 0.929040 -3.319633 0.389815 2.526558 1.780448 -0.467890 2.092430 3.578021 3.936534 -1.250083 0.223481 3.082776 -1.919385 -0.768490 1.319018 -3.024693 1.096421 1.237959 2.220624 3.462527 0.100879 0.354953 0.624246 -0.808499 0.621043 -1.719602 -0.644620 -1.441630 -0.335536 -1.229930 1.331056 -1.935584 -0.731739 -1.597098 -2.639973 3.727454 -5.038116 -1.702305 5.427786 -2.396375 1.761910 -2.739265 4.273763 -2.167796 1.967199 -0.324193 -0.202147 0.000200 -1.848479 -4.000886 1.488949 0.715566 -0.006522 0.664452 3.702077 2.137141 0.264454 -1.269685 3.747948 -2.724147 4.501110 -1.628546 3.542113 -1.336481 -0.836584 -0.678541 -0.338441 -2.745888 -2.092426 1.769712 2.929297 0.011021 2.429418 1.898032 1.088788 4.125357 -1.875041 3.668284 -0.809592 0.252162 -1.880759 -1.870113 2.842852 1.558275 -1.150359 1.525978 -4.783459 -3.932574 -6.365683 -2.019087 -0.349030 -1.813481 1.737050 -1.642446 -1.200624 -2.180772 -3.318871 4.804838 -0.372127 -0.251918 2.352764 0.346079 2.074916 3.635027 -0.836629 0.648416 -0.950671 1.136007 1.465874 -1.156506 -3.462568 4.529731 -1.996705 -0.337740 5.273590 -2.342922 1.819265 -0.482756 2.199123 -3.152091 2.901859 0.332914 -1.772535 2.482431 3.974429 2.163721 1.225497 -2.027193 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_pop_front_aux() = 2.328610 -0.598757 8.281834 5.534347 -2.854473 0.286876 -0.709332 -5.064109 3.365095 -0.066038 -1.419975 1.319812 -1.352864 1.823435 -2.632066 4.186377 -7.078708 -1.107584 -2.211709 -4.835511 -2.342012 -0.331647 1.758238 -0.486283 3.858298 3.167407 -2.325545 0.207752 -0.087462 -5.414425 1.482857 -1.155142 1.102473 -0.465918 1.351866 -7.428981 5.708499 2.728088 -2.542667 -2.905926 2.588293 -1.615124 -1.035951 -1.798313 -1.477789 0.821429 -0.723451 3.633259 3.288627 2.293783 0.277311 2.717484 3.119444 7.705540 -2.131282 2.202600 1.642634 -0.908890 -1.196240 1.260905 0.700544 1.053222 0.087799 -0.147228 1.601944 -5.703303 -1.303859 -1.869654 -0.808718 3.170693 -0.669927 -3.013130 -3.035315 -2.296567 -3.590875 -0.800297 -8.533402 4.791276 3.997718 -4.464812 0.891160 0.045083 -0.679303 0.896828 0.849343 0.495752 3.720243 1.605653 0.858419 -0.034839 0.997518 -1.808078 3.155049 -3.066368 -2.746479 -9.468560 2.874234 -7.040382 -3.880830 1.505173 4.183442 -2.827958 0.427348 -2.079218 0.761716 0.305232 -1.811986 -1.824360 1.629613 0.861534 1.076157 -0.580280 -0.258849 -0.738266 0.499343 1.562797 -5.579840 3.151379 -0.314654 1.200161 -0.002572 2.914936 2.236860 -2.205026 -0.554099 2.452554 -2.312755 4.698144 -2.109639 3.801482 -2.375072 5.180714 0.067927 3.956361 3.168760 -3.170527 -1.360087 0.145367 -2.455334 1.473549 -3.986719 1.181436 -2.735642 2.815739 2.151334 -1.572598 -3.350631 -1.074642 -4.045209 -4.896656 0.761599 -1.783254 -4.882975 1.342929 2.761036 3.474108 3.583738 0.376477 -2.595479 -0.952056 -0.768078 0.291429 4.052498 -0.669756 2.688923 -2.077937 -1.291115 1.753958 -0.270369 1.897569 -0.002466 0.769159 1.315286 -3.496509 1.250531 2.686485 2.588160 -0.893840 2.906936 4.044930 3.927890 -1.021522 0.121936 3.278676 -2.775780 -0.474975 1.033730 -3.046588 0.772555 1.790029 2.625446 4.070887 0.173230 0.609711 0.594300 -0.711957 0.979670 -1.500033 -0.918925 -1.568531 -1.208878 -1.073058 2.142261 -2.009889 -0.452756 -2.178705 -3.986935 4.316689 -7.452862 -0.965672 6.162530 -2.536387 1.765857 -2.545389 4.908353 -2.618509 2.609743 0.168952 -0.032466 0.269405 -2.066508 -5.320917 2.120893 1.135253 -0.353546 0.103555 3.887589 2.472280 0.400816 -1.717001 4.263157 -3.719036 5.443563 -1.882203 4.579590 -1.667033 -1.221770 -0.658461 -0.238094 -3.619289 -2.842437 2.703446 3.382528 -0.955210 3.419538 1.536460 1.334184 5.057627 -2.530652 4.344570 -1.393838 -0.439330 -2.321976 -2.156206 3.353670 1.770736 -0.732895 1.387255 -5.428368 -4.070937 -8.832818 -1.115696 0.435143 -2.065689 1.480599 -2.325673 -1.692182 -2.402390 -4.115328 6.075150 -0.948138 -1.697393 3.115430 0.627354 2.377864 3.997228 -0.702453 1.080437 -1.382750 1.058934 2.367525 -1.089717 -4.062322 5.483237 -2.054478 -0.806174 6.111270 -2.392098 2.276052 0.481980 1.990001 -2.904204 3.020569 0.053564 -2.157083 2.603538 5.699151 2.217408 1.383646 -2.333267 -PE-benchmarks/binary-insertion-sort.cpp__binarySearch(int*, int, int, int) = -3.082528 -4.237408 6.314108 4.009057 0.519321 1.883370 2.027988 -0.206410 0.454105 2.546743 -1.505793 4.501879 -3.255994 -0.935152 -0.297180 0.153409 -2.970508 -3.681709 0.068324 -1.012763 -1.708992 -1.844279 -2.385723 4.924320 2.769188 -0.760652 -2.734889 -0.135727 -6.356265 -4.706427 -3.114852 -0.031508 2.409999 -3.096357 2.750326 -7.246978 2.423707 4.840018 0.369969 -4.761560 1.744551 -1.949178 0.392299 0.668559 -2.054196 1.605654 3.686420 0.007260 1.008988 1.145506 0.263874 -1.005671 1.336126 6.691395 1.667955 3.515206 4.478857 -1.761072 0.149508 -0.912120 0.370499 -4.058038 1.445634 -0.081513 -1.878298 -1.185850 0.929716 -0.236540 -1.110301 1.310538 2.008327 -3.174403 -1.293094 -2.471901 -4.711373 -1.719304 4.777246 1.768201 4.997586 -2.715542 5.146492 1.420032 2.877103 1.262950 3.080438 -0.216819 3.429309 0.651099 -1.894880 -0.564533 -3.143921 -0.601071 -1.272202 4.494130 -1.987255 -0.855612 2.153023 -5.492601 -5.510532 2.415706 -0.581695 -2.446599 -3.004549 0.168709 1.941450 2.125208 -0.780703 -3.400775 -2.936917 2.277972 -2.402915 -1.005412 0.335480 -0.887478 -0.561345 0.142690 -4.171943 1.763091 2.944317 -1.535106 -2.606741 4.277821 -1.381893 4.284917 0.386024 1.949914 0.011198 2.357930 2.757212 0.275526 -1.471757 -2.450185 -4.512849 -1.688804 -0.226331 0.224194 -3.374019 -1.070947 0.940812 1.537478 0.445818 2.400532 -1.928973 6.091275 2.184626 -1.968944 -3.310776 -3.982836 -2.727681 -2.484138 -0.054848 -1.292599 -3.305283 1.129758 2.317327 0.757530 -0.751880 4.529395 -0.364888 2.621025 1.084685 -2.008357 0.552913 -3.178763 2.009195 -3.222065 -2.152951 2.233507 2.688018 2.968024 -0.232797 -0.147308 1.181323 -2.113739 -3.017196 1.365347 1.054447 1.934198 4.357256 3.537271 8.054187 -3.475244 -1.032180 -0.214033 -1.410466 -0.939257 0.068916 -3.224123 0.591248 1.157275 -0.325124 6.251508 0.389529 -2.746760 2.933864 0.376482 0.874020 -3.619662 3.193275 -2.293645 1.350962 -0.635240 -2.647492 -3.060539 -0.749705 -3.963625 -2.927584 5.513163 -4.031742 -6.469610 1.624631 0.314859 3.599141 -7.699772 4.356984 -1.896223 4.668567 -0.794235 -0.983505 0.242600 0.724036 -0.719245 2.941481 1.180148 -2.398966 1.888041 2.745872 0.958619 1.590226 0.279667 2.093787 -0.336060 1.277229 -1.544520 1.487839 -0.666470 -1.700732 -1.641724 -0.590957 0.724145 2.792705 -0.121762 -1.385585 2.077712 -0.767702 0.588298 4.520873 0.891634 -1.677697 0.388211 -1.113053 4.644902 -2.985546 -2.731536 -1.431048 2.545471 1.543737 0.895157 -5.848647 -3.189911 -3.821493 -6.652198 -1.067644 1.181650 0.931718 1.232571 -0.935751 -4.724385 -2.694080 4.980120 0.779238 6.186283 2.645520 1.016684 4.384280 1.878459 0.607795 -1.503265 -0.170110 0.533140 -1.214368 -0.905544 -2.235062 1.405932 -4.126408 3.211265 3.621465 -1.766810 2.774383 0.339784 0.170742 -4.971873 5.098110 2.056608 -5.170164 0.509375 3.122454 3.425636 -4.212002 -3.085415 -PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -1.969442 -3.573740 5.581887 3.938267 0.358360 1.477097 2.059710 -0.919378 0.848862 2.486943 -1.167024 3.360359 -3.212558 -0.359111 -0.337885 0.924590 -2.767240 -3.027731 -0.172869 -1.271455 -1.442525 -1.637415 -1.125606 3.534448 2.666928 -0.698406 -2.160518 -0.760489 -5.114512 -3.627460 -1.762481 -0.297294 2.251508 -1.737625 1.743993 -6.131071 2.409799 4.099778 -0.185203 -3.783557 1.681522 -1.789941 0.165102 0.226355 -1.511104 1.050783 2.601374 0.562952 1.216741 1.292619 0.981725 -0.658787 1.701699 5.949963 0.590539 3.158384 3.443728 -1.300579 0.076146 -0.505803 0.467115 -2.688630 1.601394 0.229529 -1.265690 -1.581875 0.276177 -0.537641 -1.560415 1.244266 1.546861 -2.199912 -1.674624 -1.869213 -3.100607 -1.451093 1.840533 1.607683 4.560336 -2.532074 4.407171 1.530817 1.862871 0.590999 2.399516 0.024377 2.724615 0.660768 -1.457387 -0.418912 -2.602696 -0.523189 -0.478635 3.093049 -1.826652 -1.772877 2.093235 -3.559369 -4.822946 2.057637 -0.021956 -2.114867 -2.126109 0.153936 1.227914 1.721930 -1.204398 -3.213731 -2.252282 1.598856 -1.466865 -1.161487 -0.077346 -0.900147 -0.617112 -0.217225 -3.851380 1.262092 2.077328 -1.625898 -2.053087 3.522405 -0.960296 3.146087 0.238429 1.595895 -0.214732 2.273884 1.918946 0.799783 -0.643715 -1.490937 -3.679730 -0.867592 0.642780 0.504848 -2.368296 -0.572329 0.344502 1.344499 0.123463 2.259228 -0.885880 5.031373 1.914645 -1.726221 -2.787913 -3.092727 -1.962657 -2.425415 0.481847 -1.435682 -2.379807 0.543067 2.286857 0.522367 0.024555 3.802155 -0.637171 2.209811 0.681798 -1.395640 1.014743 -2.087796 2.060953 -2.610883 -2.084925 1.924882 2.514683 2.172965 -0.094481 0.094960 0.913306 -2.173743 -2.168056 0.669697 0.697411 0.656269 3.748252 2.897247 7.258883 -2.566028 -0.273580 0.340638 -1.020910 -0.477025 0.181662 -3.228840 0.740344 0.840132 -0.651926 5.019093 0.348869 -2.425010 2.421105 -0.193752 0.618648 -3.091620 2.622623 -1.972243 0.603523 -1.008254 -1.312465 -2.198329 -1.110077 -2.851941 -1.721774 4.802136 -3.289182 -4.511228 1.577013 0.211072 2.292722 -6.027625 5.078476 -1.858563 3.319075 -1.032368 -1.372529 0.294570 1.063201 -1.044579 1.980070 1.219026 -1.728215 1.658617 2.884914 1.024208 1.168451 0.244180 2.157180 -0.424246 1.445092 -1.449986 1.974595 -0.407859 -1.436791 -1.166161 -0.742239 0.481793 1.599172 -0.098404 -0.068435 2.005134 -0.499196 0.710514 3.214327 1.439441 -1.596509 1.005221 -0.629544 3.708844 -2.394602 -1.876449 -0.755715 1.719191 0.797692 1.470653 -5.007806 -2.943034 -2.570321 -4.671992 -0.742913 1.180880 1.115712 0.746193 -0.673006 -4.166806 -2.590113 3.922305 -0.005027 4.017677 2.478614 1.155261 3.583749 1.952779 0.491240 -1.074306 -0.284495 0.725456 -0.673367 -0.875116 -1.747861 1.532989 -3.447743 2.601522 3.111536 -1.409775 2.121663 -0.195073 1.128283 -4.004878 4.540599 1.578688 -3.834007 1.279451 3.166741 3.260191 -3.255850 -2.501056 -PE-benchmarks/binary-insertion-sort.cpp__main = -0.360988 -1.574875 2.715838 1.856279 -0.239424 0.413327 0.828297 -0.322633 0.639270 0.222350 -0.991733 1.355989 -1.513827 0.075687 -0.340450 0.443335 -2.026327 -1.535478 0.165307 -0.254141 -0.464135 -0.841946 -0.056975 1.380939 1.249391 1.019528 -0.890471 -0.328262 -2.012869 -1.120204 0.003669 -0.456955 1.062103 0.686141 0.758549 -2.735811 1.058701 1.420899 -0.192206 -1.943706 0.810362 -0.989541 0.017460 -0.745426 -0.321987 0.657729 1.289547 1.374193 0.595255 0.548776 -0.450751 -0.596313 0.485144 2.173695 0.078271 1.110064 1.682751 -0.531639 0.059018 -0.486036 0.399597 -1.132868 0.677753 0.602631 -0.775967 -0.853913 -0.038048 -0.963630 -0.866259 0.842776 0.710584 -0.077485 -1.163312 -0.671071 -1.318281 -0.281175 0.026384 1.381565 2.376015 -1.331787 1.958723 0.604168 1.194202 -0.004972 0.712598 0.253516 1.032535 0.481409 -0.734671 -0.375117 -1.902981 -0.757648 -0.184104 0.427915 -0.482338 -1.132365 0.811524 -2.078601 -1.937507 0.588582 0.097061 -0.781866 -0.342913 0.539626 0.750258 1.069980 -0.440680 -1.269405 -0.425477 0.268753 -0.762086 -0.324122 0.082453 0.290594 -0.571024 -0.454796 -1.988502 0.447143 0.719760 -0.858947 0.035617 1.416310 -0.481204 1.237082 0.066673 0.409008 -0.094871 1.568080 1.001318 0.113618 0.320209 -0.602563 -0.826971 0.255771 0.649793 1.066168 -1.276208 -0.309415 0.191099 0.555754 -0.230693 -0.169046 -0.460795 1.695989 0.727126 -1.276792 -1.529457 -1.541328 -1.024616 -1.362374 0.229855 -0.873131 -0.685421 0.635093 1.162113 0.621388 0.416900 2.009828 -0.956967 0.892161 0.197114 -0.264526 0.461121 0.139249 1.005728 -1.093688 -0.792426 0.950153 0.676729 0.771300 -0.003767 -0.238846 0.527946 -1.416345 -0.977462 0.954061 0.679567 0.331857 1.535580 1.170034 1.528887 -1.046423 -0.225446 0.481593 -0.249611 -0.524822 0.511198 -1.601483 1.054289 0.135664 0.270649 1.704190 0.178403 -0.988511 0.997727 -0.008190 0.180883 -1.239435 0.582813 -0.828186 0.090182 -0.769171 0.262810 -0.903527 -0.678491 -1.117995 -0.685751 2.169452 -1.208753 -1.818561 0.697604 -0.237535 1.556449 -2.563030 1.517710 -1.005023 1.598578 -0.097537 -0.508518 0.214424 -0.579604 -0.572301 0.333422 0.631069 -0.300157 0.577873 1.041386 0.750735 0.272997 0.406016 1.097641 -0.121706 0.817274 -0.384811 0.470761 -0.319608 -0.559746 -0.080789 -0.321082 0.136063 0.585709 0.075475 1.061668 0.940487 0.586137 1.357176 1.047543 0.878534 -0.932155 0.121604 -0.380315 1.858239 -1.044000 -0.889923 -0.444704 0.888575 -0.012567 0.756638 -2.229310 -2.303919 -1.425308 -2.272945 -0.618719 -0.423206 0.694352 0.121037 -0.067788 -1.818698 -0.994780 1.094796 -0.015682 2.141180 1.115328 0.181365 1.572249 0.975334 -0.489107 -0.767242 0.477285 0.890317 -0.317064 0.055483 -1.498185 0.790294 -1.613124 0.866761 2.044854 -1.085341 0.593319 -0.647266 1.596019 -1.678304 2.327915 0.926708 -2.153214 0.571332 1.108398 1.365548 -0.345960 -1.254011 -PE-benchmarks/egg-dropping-puzzle.cpp__max(int, int) = -0.412424 -0.733312 1.172376 0.776973 0.208506 0.143927 0.512441 0.134319 0.210559 0.616499 -0.383314 0.770448 -0.727375 -0.019082 0.096625 0.294164 -0.564760 -0.811733 0.131326 0.066101 -0.291561 -0.454387 -0.070927 0.582450 0.701587 0.251006 -0.596022 -0.222541 -1.041621 -1.090796 -0.481009 -0.107869 0.507910 -0.028404 0.454097 -0.942191 0.350480 0.686188 0.078828 -0.913779 0.396112 -0.245405 0.160508 -0.026042 0.149159 0.608505 0.923192 0.232428 0.350975 0.393871 0.031744 -0.501966 0.154906 0.621812 0.176981 0.481055 0.699019 -0.355246 0.059723 -0.271251 0.108353 -0.840287 0.259306 0.241627 -0.438744 -0.155154 0.113823 -0.192873 -0.381914 0.445254 0.309702 -0.243114 -0.597814 -0.490496 -0.513537 -0.084902 0.346651 0.463825 1.055413 -0.396703 0.918618 0.300885 0.653582 -0.080269 0.226073 -0.109560 0.344258 0.111173 -0.432075 -0.260215 -0.658018 -0.529738 -0.445475 0.900005 -0.099517 0.291011 0.355809 -0.693582 -0.896855 0.241376 -0.123783 -0.244840 -0.658220 0.503140 0.424595 0.638013 0.104179 -0.621657 -0.485236 0.034055 -0.400094 -0.082157 0.068595 -0.161509 -0.473427 0.061912 -0.820941 0.077321 0.332662 -0.524483 -0.357562 0.539581 -0.365623 0.867402 0.138562 0.333010 0.138240 0.566741 0.780959 0.159053 0.270960 -0.452273 -1.018496 -0.160400 0.190616 0.452856 -0.584179 -0.012087 -0.019841 0.131349 -0.123823 0.058761 -0.323580 1.074432 0.849589 -0.633412 -0.877728 -0.641988 -0.300736 -0.353829 0.165012 -0.321515 0.009299 0.029589 0.351295 0.031243 -0.033618 1.298341 -0.514203 0.389586 0.196746 -0.299990 0.079644 -0.083604 0.405540 -0.545163 -0.302323 0.397046 0.602608 0.257245 -0.003908 -0.117690 0.295153 -0.561927 -0.580963 0.536304 0.159620 0.286941 0.567742 0.434162 0.979080 -0.524582 -0.273994 0.148590 0.008260 -0.340258 0.249994 -0.732476 0.580051 -0.054981 0.231766 0.768457 0.114483 -0.504811 0.724408 -0.038971 0.105370 -0.558785 0.438007 -0.448079 0.306429 -0.210119 -0.293461 -0.404864 -0.149592 -0.314530 -0.069773 0.956058 0.109883 -1.159037 0.155683 -0.208359 0.651461 -1.359350 0.696723 -0.294945 0.427503 -0.249285 -0.060098 0.016432 0.024053 0.108936 0.104815 0.182852 -0.077203 0.302424 0.573274 0.148429 0.042696 0.226319 0.391032 0.173494 0.286379 0.086711 0.047288 -0.112431 -0.019251 -0.173544 -0.001625 0.175222 0.500148 -0.312348 0.164947 0.491117 -0.143640 0.496915 0.544567 0.319341 -0.344695 0.068631 -0.105457 1.126214 -0.527652 -0.481206 -0.256343 0.406538 -0.043145 0.300928 -0.922291 -0.835728 -0.047222 -1.484550 -0.434920 0.090775 0.341967 0.105042 -0.198989 -0.621061 -0.393405 0.531514 0.300283 1.245576 0.266423 -0.059689 0.705124 0.333858 -0.203559 -0.371463 -0.052440 0.159645 -0.197619 -0.177496 -0.367104 0.104827 -0.824929 0.411261 0.719449 -0.537992 0.300136 -0.257901 0.561428 -0.933663 1.052552 0.393980 -0.845604 0.275189 0.309466 0.897806 -0.615964 -0.549620 -PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -3.257824 -10.238076 13.454469 10.313037 0.285236 4.906974 5.216914 -1.151530 -0.297383 6.699626 -3.793615 9.391579 -7.215209 -2.069901 1.289251 0.837086 -7.218847 -7.064188 1.034756 -1.351089 -2.961082 -4.749886 -5.730203 12.500569 6.028724 0.658852 -4.219863 -1.867798 -12.536019 -7.420557 -6.372383 0.152465 5.693229 1.786260 8.175454 -11.165386 4.524557 10.069701 1.510304 -9.753522 2.155878 -3.195877 0.619268 1.728788 -3.307257 5.175016 8.173627 3.310872 2.052413 3.458703 1.616417 -4.553758 6.239657 9.970742 5.591018 8.074780 7.939145 -4.457546 4.489117 -2.941992 1.091606 -8.638683 3.688330 0.224848 -2.696484 -2.168241 -0.254923 -0.357075 -2.059458 3.077477 6.386346 -4.788554 -6.070673 -5.178736 -7.150599 -3.551271 -0.701369 4.975515 11.230351 -5.235635 12.133413 6.211447 6.781713 -0.253872 7.831943 -0.500563 7.841697 1.635899 -4.635613 2.494267 -8.750061 -4.589521 -1.807642 5.230196 -5.550034 -3.615583 2.959933 -10.655286 -12.264286 6.605846 -1.488646 -5.784545 -2.267069 1.887152 3.884421 3.472395 -2.374981 -7.989441 -4.802745 4.394686 -5.570200 -2.657918 -0.151302 0.048930 -0.459391 0.654186 -8.301668 3.338032 6.945008 -3.725203 -2.261174 9.598011 0.255997 9.803595 0.675173 1.690636 0.852263 5.794531 7.242477 0.602081 -2.251223 -6.072156 -8.953305 1.500934 0.864335 -2.458202 -5.656549 -3.420179 3.389224 4.833879 2.281427 7.597333 -0.632658 13.454132 4.804440 -3.860701 -7.605950 -9.620069 -6.436150 -3.390506 1.415713 -1.969839 -5.876908 0.315395 5.372226 1.175825 -1.233333 3.775443 0.213041 4.201554 1.057194 -1.498607 0.321543 -2.952391 4.284560 -6.221814 -3.817578 5.936830 6.936603 6.765218 0.628940 -0.967808 2.715586 -2.557060 -5.651792 2.691122 2.229869 3.684918 11.194493 7.779619 16.031174 -2.654195 -2.463184 -0.458402 -1.506641 -2.163449 1.088056 -7.380969 4.109339 0.794025 -2.158784 12.062532 -0.503054 -2.956769 7.513123 0.496956 1.441216 -8.441311 5.876368 -4.732057 2.419402 -3.082169 -1.604071 -6.691139 -2.884640 -7.461572 -3.919020 12.356000 -6.853182 -9.527685 2.765298 -2.811527 5.599663 -12.367220 10.456333 -3.768936 5.815819 -1.924159 -5.563964 0.491881 1.116444 -0.770333 4.051982 2.974508 -5.025277 3.208586 4.211935 1.734782 1.444535 2.227348 4.200997 -0.380235 2.137260 -3.643777 3.383550 -0.726357 0.463719 -3.599596 -1.541253 2.104908 6.093219 -1.746365 -0.213275 4.065535 -1.281582 0.232350 7.511910 0.478933 -3.793742 -0.716737 -2.050497 8.653916 -7.850681 -5.736865 -3.803672 2.720923 2.279463 1.387494 -12.643331 -5.247439 -7.152516 -8.559589 -4.774796 2.600002 3.601094 4.560657 -2.235292 -9.421945 -6.671197 10.194501 0.952325 4.539200 5.971804 1.107923 10.249506 4.054891 3.618284 -2.783492 -1.149925 1.569499 -2.426565 -0.525332 -4.820878 3.307276 -9.333357 8.891092 7.989211 -4.397263 5.972685 -1.010607 6.594546 -11.384035 10.505516 4.374478 -11.836635 -0.023665 8.007425 5.234419 -9.667753 -6.591519 -PE-benchmarks/egg-dropping-puzzle.cpp__main = -0.492073 -0.837583 1.237791 0.773295 -0.012322 0.163311 0.637227 0.034693 0.217953 0.034076 -0.319925 0.700936 -0.750998 0.027595 -0.506588 0.139390 -0.703061 -0.769770 0.068324 -0.146170 -0.154610 -0.275697 0.066311 0.518592 0.624168 0.183717 -0.441902 -0.557650 -1.231905 -0.375797 0.118932 -0.169878 0.557362 -0.216233 -0.003150 -1.886693 0.286744 0.790740 -0.204160 -1.003555 0.589778 -0.501727 0.107412 -0.313407 -0.340534 0.066411 0.590547 0.255462 0.151351 0.278666 -0.153096 -0.023160 0.229703 1.605677 -0.060899 0.533788 0.875941 -0.113667 -0.139584 -0.202908 0.202517 -0.496968 0.328837 0.085737 -0.260261 -0.387610 -0.212785 -0.528815 -0.496778 0.187308 0.107016 0.026179 -0.364852 -0.182923 -0.856938 -0.248075 0.139984 0.542946 1.028925 -0.809726 0.979649 0.114692 0.430328 0.111663 0.197816 0.276412 0.022197 0.241206 -0.130065 -0.262797 -0.714249 0.126450 -0.179474 0.343466 -0.292726 -0.923777 0.715790 -0.689319 -0.860233 0.326726 0.031551 -0.374571 -0.219424 0.037392 0.041893 0.761435 -0.553385 -0.600347 -0.528182 0.164913 0.028099 -0.170961 0.207292 0.051946 -0.258551 -0.557063 -0.847373 0.290913 0.330078 -0.448110 -0.212054 0.677877 -0.331403 0.627556 0.029777 0.335778 -0.227518 0.840771 0.457935 0.008386 0.037090 -0.204030 -0.754332 -0.352082 0.352677 1.061781 -0.722456 -0.112299 -0.075674 0.190047 0.071897 -0.185426 -0.030770 0.637237 0.507971 -0.575666 -0.599829 -0.742041 -0.183743 -0.760195 -0.082671 -0.389899 -0.089182 0.617500 0.515532 0.290205 0.185769 1.353532 -0.345431 0.462786 0.135505 -0.504096 0.178163 -0.050656 0.436861 -0.465287 -0.539860 0.298224 0.326026 0.562052 -0.013992 0.130203 0.192022 -0.639041 -0.405701 0.218641 0.483828 -0.103367 0.665536 0.595024 0.512470 -0.800696 -0.223208 0.121641 -0.363635 -0.132982 0.108089 -0.799154 0.331678 0.153491 -0.310970 0.732762 0.133046 -0.573708 0.674111 -0.223405 0.057024 -0.497150 0.357515 -0.487850 -0.215551 -0.425312 -0.126310 -0.371614 -0.277808 -0.606024 -0.521519 1.022345 -0.747162 -0.719100 0.068298 0.281785 0.437658 -1.437203 1.013005 -0.446029 0.906634 -0.050472 -0.140274 0.059527 0.211168 -0.253551 0.018941 0.296732 -0.398067 0.319761 0.847743 0.349117 0.058990 0.090671 0.661432 -0.084733 0.376537 -0.224114 0.253133 -0.229251 -0.656600 0.099277 -0.124705 0.127839 0.197032 0.211909 0.656798 0.381750 0.253781 0.616219 0.731607 0.596985 -0.405148 0.046222 -0.180020 1.157765 -0.379087 -0.325373 -0.280440 0.687841 0.098085 0.331438 -1.000625 -1.234255 -0.761707 -1.222798 0.102619 -0.206067 0.110551 -0.107517 -0.031125 -1.103491 -0.525375 0.201490 -0.213705 1.018219 0.609979 0.167875 0.803580 0.408301 -0.392396 -0.233341 0.380874 0.514517 -0.051810 -0.079930 -0.542231 0.201933 -0.845032 0.254964 0.867518 -0.328128 0.348182 0.139474 0.600630 -0.693726 1.301730 0.394105 -0.970372 0.461749 0.649497 0.787542 -0.184971 -0.499177 -PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -0.686553 -2.047017 2.904863 2.210224 0.219081 0.778414 1.025584 -0.313915 0.727002 1.274273 -1.098330 1.668060 -1.898719 -0.182972 0.552723 0.447789 -1.766335 -1.884472 0.309622 -0.131651 -0.668832 -1.301077 -0.630385 1.980345 1.281979 0.662712 -1.009181 -0.045390 -2.636697 -1.775051 -0.720034 -0.353291 1.263314 0.904343 1.394149 -2.300638 1.222717 1.879150 0.172393 -2.290107 0.516250 -1.049994 0.105576 -0.172934 0.188437 1.224573 1.772622 1.285820 0.689199 0.682019 0.034115 -1.265405 0.474988 1.670584 0.459602 1.527683 1.934375 -0.852395 0.336024 -0.525887 0.372917 -1.711530 1.010371 0.850578 -1.264367 -0.590413 0.382881 -0.593129 -1.055562 0.995461 1.301069 -0.654384 -1.369611 -1.148245 -0.942058 -0.425135 0.439254 1.146982 2.849161 -1.054217 2.618105 1.151573 1.737033 -0.137117 1.363496 -0.137208 1.823317 0.372223 -1.393850 -0.282216 -2.467709 -1.403879 -0.500760 1.408442 -0.567834 0.378501 0.558765 -1.868562 -2.502628 0.866047 -0.294907 -0.749248 -1.183105 1.093172 1.226894 1.045495 -0.000844 -1.742546 -0.825018 0.539877 -1.553168 -0.534678 -0.249340 -0.025700 -0.866164 -0.112135 -2.180338 0.221365 1.185935 -1.218454 -0.488421 1.785898 -0.767655 1.891395 0.152037 0.321044 0.308451 1.327379 1.521872 0.143979 0.689673 -1.506723 -1.823398 0.325473 0.377590 0.668620 -1.270052 -0.320606 0.631566 0.677253 -0.099345 0.613922 -0.636202 2.674499 1.143224 -1.352067 -1.815544 -1.882723 -1.037893 -1.029747 0.601522 -0.995128 -0.647119 -0.157349 1.334444 0.421206 0.021042 2.258454 -1.108793 1.314063 0.281683 -0.090109 0.292543 0.070910 1.141338 -1.456419 -0.850341 1.215238 1.419754 0.530182 0.104057 -0.577696 0.612410 -1.437829 -1.530188 1.113554 0.162961 0.743630 2.011806 1.284357 3.285466 -1.183726 -0.141547 0.281165 0.080293 -0.624186 0.520162 -1.843849 1.229756 0.031070 0.476481 2.394879 0.117405 -1.275513 1.059874 0.218782 0.224531 -1.707488 1.195937 -1.016136 0.606277 -0.657096 -0.039207 -1.232728 -0.880031 -1.164717 -0.144940 2.586919 -0.307317 -2.771388 0.742278 -0.684961 1.789199 -3.126382 1.802241 -1.087063 1.320538 -0.631451 -0.824816 0.112367 -0.303627 -0.168591 0.683669 0.754187 -0.357407 0.895551 1.049438 0.582592 0.475141 0.679134 0.867305 0.149232 0.451534 -0.446032 0.571168 -0.138901 0.030843 -0.509596 -0.502449 0.599319 1.196015 -0.681540 0.430824 1.514523 -0.164012 1.033521 1.213712 0.353486 -0.969467 0.191047 -0.196808 2.197703 -1.369110 -1.065152 -0.731932 0.504945 0.085543 0.826453 -2.592337 -1.878443 -0.352548 -2.824191 -1.239110 0.412097 0.973832 0.737419 -0.106999 -1.995792 -1.044289 1.657849 0.363787 2.850687 0.948727 0.299772 1.873553 1.026074 -0.021314 -1.130674 0.033571 0.441263 -0.850877 -0.169644 -1.215768 0.750761 -1.807805 1.588629 1.875133 -1.161788 0.735249 -1.137552 1.747143 -2.220325 2.511638 1.182050 -2.341412 0.388216 1.054844 1.951419 -1.444893 -1.523890 -PE-benchmarks/n-queen-problem.cpp__solveNQUtil(int (*) [4], int) = -2.283809 -6.926575 9.810142 7.252303 0.128296 2.798279 3.157017 -0.470794 0.098973 4.465904 -2.449941 6.475858 -4.859289 -1.904106 1.940219 0.770204 -5.086652 -4.852786 0.232608 -1.268648 -2.348095 -2.211645 -4.427614 8.215071 4.326589 -0.742366 -3.108108 -0.436149 -7.947835 -5.129438 -4.730103 -0.200814 3.724334 -0.587622 5.637513 -8.262614 3.761005 6.767588 0.607937 -6.298344 1.269536 -1.897451 0.404990 -0.195044 -2.728911 2.714208 5.976614 1.687244 0.896499 2.172978 0.007018 -2.948111 3.983154 8.600292 3.815993 5.490507 7.317742 -3.055202 2.488281 -1.872152 1.118485 -6.235785 2.171040 -0.547333 -1.731415 -1.939472 0.325308 -0.848421 -0.680274 1.435252 4.817594 -3.710598 -3.254627 -4.283510 -5.802351 -2.807874 0.980533 3.120548 7.765647 -4.874863 8.025098 4.746705 4.796258 1.844708 5.177860 0.109873 5.467762 1.461704 -3.224782 2.037903 -5.596297 -3.388966 -0.764084 4.121119 -3.581413 -2.677579 2.509219 -7.448231 -8.458184 5.022567 -0.606680 -3.517639 -2.152879 -0.135530 2.343771 2.149619 -1.612540 -4.766095 -3.440639 2.231009 -3.781709 -1.773418 -0.082534 0.375829 -0.054981 1.033023 -6.693346 2.710367 4.945476 -2.406460 -1.816788 6.270622 -0.889709 6.747606 -0.077985 1.360621 0.061008 3.562479 5.177025 0.768574 -1.793793 -4.062473 -6.115221 -0.682533 0.654933 -0.970478 -3.301308 -1.701358 2.425913 3.265108 1.813194 5.696941 -0.322728 9.971009 0.996289 -2.334715 -5.126801 -7.200346 -5.694673 -2.265655 1.465829 -1.656483 -4.770530 1.261952 3.612180 0.807274 -1.226478 3.377521 0.213893 3.416812 0.260171 -0.951619 0.115636 -3.763931 3.052688 -4.311282 -2.241742 3.836378 4.821849 4.371402 1.009507 -1.401251 2.623512 -2.477823 -4.049167 0.705124 0.460124 1.006519 7.208198 5.134173 12.052942 -2.494282 -1.384379 -0.513996 -0.835911 -1.390269 0.920309 -4.633209 1.753609 0.649102 -1.246965 8.359940 0.378159 -3.270117 4.454820 0.113754 0.369834 -4.751333 4.402011 -2.723880 1.547911 -1.282164 -0.348869 -5.216890 -1.692095 -5.288970 -2.529696 8.594752 -5.951871 -6.832662 1.671641 0.697679 4.467507 -8.508076 8.638685 -2.607116 6.106947 -1.131868 -4.092489 1.018243 0.638349 -0.930390 2.964366 2.166882 -3.243768 1.206972 2.049035 1.314239 1.790559 1.401881 2.677164 -0.918585 1.808278 -2.434499 2.199264 -0.781248 -1.104632 -3.257851 -0.836536 1.723276 4.029696 -0.780696 -2.277280 2.244161 -0.661333 -0.169904 5.026779 0.194160 -2.982098 -0.241375 -0.736120 6.460459 -5.396141 -3.317315 -2.495341 2.341042 1.959876 1.758961 -8.639783 -2.816330 -4.903242 -5.145534 -3.960877 3.507970 1.826285 2.583280 -1.637844 -5.982529 -4.462239 7.343793 0.600150 2.704503 4.429788 1.574794 7.060171 2.380389 2.976148 -3.213644 -0.271770 0.854998 -1.256659 -0.287870 -3.503012 2.545317 -6.356558 5.097904 5.579765 -2.526394 3.911250 -0.653120 3.086901 -7.371497 7.214136 2.798601 -8.773694 -0.315188 7.460554 4.256862 -7.264920 -4.632051 -PE-benchmarks/n-queen-problem.cpp__solveNQ() = 0.197842 -0.903236 1.779297 1.278934 -0.418405 0.172501 0.259367 -0.269830 0.612745 -0.243120 -0.685974 0.727482 -0.896427 0.099406 -0.033996 0.421926 -1.709928 -0.958162 0.197836 0.002749 -0.253410 -0.618073 0.190355 0.802674 0.751702 1.577397 -0.522083 0.022209 -0.884778 -0.646231 0.394558 -0.396645 0.688721 1.563320 0.718563 -1.345967 0.760636 0.588419 -0.114153 -1.333358 0.348343 -0.567473 0.047461 -1.028377 0.048060 0.685927 0.758695 1.293417 0.449775 0.328079 -0.822485 -0.532151 0.308511 0.620005 0.049452 0.462554 0.913453 -0.364071 0.286520 -0.482716 0.356088 -0.555029 0.395159 0.620160 -0.570571 -0.615976 -0.179310 -0.943428 -0.601066 0.808474 0.466341 0.295296 -1.118096 -0.404391 -0.673755 0.071037 -0.992673 1.340415 1.460393 -0.935677 1.065040 0.403454 0.923126 -0.172243 0.349936 0.195635 0.718470 0.413746 -0.515762 -0.242471 -1.481759 -1.034053 -0.046878 -0.543248 -0.161384 -0.566097 0.330180 -1.502718 -1.055666 0.268418 0.182090 -0.336423 -0.082453 0.532791 0.658302 0.759014 -0.034697 -0.644123 0.158481 0.034678 -0.560315 -0.093566 0.009395 0.638030 -0.488626 -0.271552 -1.318297 0.200667 0.341237 -0.485826 0.593319 0.779929 -0.221591 0.507446 -0.035403 -0.039732 -0.045271 1.259367 0.695388 0.065456 0.551436 -0.361143 -0.045889 0.847815 0.645553 0.745841 -0.727038 -0.171287 0.083933 0.358939 -0.360972 -0.637677 -0.336585 0.725691 0.291836 -0.973231 -1.164058 -1.004616 -0.872806 -0.905051 0.227549 -0.648457 -0.069769 0.853697 0.764373 0.642453 0.473863 1.033369 -1.150774 0.412388 -0.028195 0.226887 0.271290 0.957959 0.573887 -0.598920 -0.323390 0.710029 0.155244 0.341895 0.050372 -0.413212 0.433364 -0.902405 -0.623798 1.054126 0.520938 0.305946 0.848748 0.623221 -0.095957 -0.462255 -0.290539 0.513449 0.056488 -0.526086 0.505910 -0.981042 1.127202 -0.149153 0.571860 0.687050 -0.030334 -0.409259 0.498663 0.092370 0.106260 -0.637658 -0.028015 -0.470894 -0.032741 -0.595744 0.568379 -0.535228 -0.530041 -0.583344 -0.313259 1.366073 -0.521020 -0.913043 0.605784 -0.685041 1.215211 -1.230836 0.302500 -0.631766 0.722347 0.178025 -0.292625 0.034640 -1.072619 -0.378605 -0.324286 0.438086 0.051286 0.071007 0.507714 0.555137 -0.094105 0.408148 0.622079 -0.001754 0.669899 -0.075303 0.154448 -0.321856 0.033166 0.130865 -0.204111 0.050773 0.213876 -0.099017 1.278690 0.565895 0.873169 1.294197 0.200558 0.611817 -0.710166 -0.141488 -0.199178 0.987762 -0.685492 -0.551107 -0.232664 0.455592 -0.292860 0.455629 -1.280279 -1.800741 -0.901011 -1.203052 -0.735934 -0.765215 0.589957 -0.046913 -0.046534 -0.844937 -0.576961 0.434744 0.071003 1.064424 0.552075 -0.185940 0.958580 0.718664 -0.627161 -0.617554 0.519432 0.622686 -0.133217 0.288525 -1.302510 0.667829 -0.950912 0.336624 1.652774 -0.925257 0.225349 -0.955798 1.547377 -0.960614 1.440079 0.624251 -1.472417 0.194775 0.481166 0.597705 0.336420 -0.870047 -PE-benchmarks/n-queen-problem.cpp__main = -0.037619 -0.297992 0.351730 0.320907 -0.008186 0.048204 0.192336 0.007350 0.189443 -0.000514 -0.139211 0.088707 -0.330209 0.072551 -0.024239 0.133536 -0.238364 -0.280864 0.040752 0.028710 0.012224 -0.174650 0.144652 0.070505 0.165768 0.238728 -0.096428 -0.172849 -0.341784 0.067592 0.225750 -0.111853 0.205349 0.370084 -0.010923 -0.324071 0.083278 0.176436 -0.079382 -0.344372 0.115882 -0.173292 0.089317 -0.226682 0.077061 0.114784 0.141068 0.192916 0.076138 0.100055 -0.056654 -0.129430 0.037817 0.229201 -0.110992 0.137591 0.235166 0.021791 0.018158 -0.100913 0.117335 -0.033040 0.134352 0.187458 -0.132528 -0.127141 -0.182742 -0.284562 -0.273929 0.122693 -0.014542 0.223115 -0.290191 -0.066342 -0.071730 -0.021601 -0.453901 0.249072 0.413363 -0.291395 0.305418 0.113452 0.204945 -0.069682 0.028706 0.109729 -0.039034 0.102372 -0.101995 0.019595 -0.297909 -0.108595 -0.026710 -0.090413 -0.060130 -0.165856 0.171632 -0.033205 -0.235846 0.084599 0.011899 0.023724 0.012612 0.181070 -0.006447 0.295211 -0.170657 -0.215987 -0.033993 -0.039808 0.105311 -0.062806 0.002794 0.122785 -0.179143 -0.295137 -0.301101 -0.041212 0.030900 -0.265253 0.123495 0.172124 -0.178703 0.150405 -0.008817 -0.042823 -0.064491 0.405581 0.204431 0.043543 0.196863 -0.131254 -0.236061 0.070384 0.202221 0.541619 -0.155324 0.065788 -0.015485 0.006359 -0.013380 -0.189772 0.123784 0.025209 0.181354 -0.244261 -0.206711 -0.217241 -0.058842 -0.289455 0.072227 -0.211388 0.248328 0.202921 0.198587 0.182316 0.159130 0.576609 -0.293009 0.089466 -0.031307 -0.062436 0.059244 0.339278 0.137662 -0.094940 -0.182036 0.124097 0.093870 0.011067 0.119619 -0.057285 0.046725 -0.263536 -0.041941 0.177047 0.125176 -0.129613 0.212216 0.099644 -0.188552 -0.106919 -0.006024 0.107254 0.027554 -0.030211 0.074154 -0.328663 0.290666 -0.052686 -0.043269 0.006630 -0.004060 -0.114349 0.179991 -0.152199 0.030353 -0.147067 0.046447 -0.154943 -0.088424 -0.296320 0.228457 -0.047898 -0.183142 0.002198 0.094302 0.310162 0.073692 -0.038517 -0.034231 0.084804 0.104819 -0.241774 0.259355 -0.154002 0.244251 -0.020630 -0.085724 0.028206 -0.037940 0.011141 -0.239500 0.146894 0.009230 0.006289 0.208759 0.126798 -0.128850 0.164734 0.210600 0.040825 0.099439 -0.017664 0.063950 -0.033893 -0.061568 0.177091 -0.089618 0.106217 -0.016558 -0.051389 0.491561 0.213152 0.159385 0.322227 0.013000 0.187820 -0.162123 -0.011095 0.022515 0.393526 -0.120736 0.002247 -0.124495 0.151886 -0.096208 0.111032 -0.241023 -0.473765 -0.007122 -0.244943 -0.096468 -0.111186 0.065772 -0.021756 0.049156 -0.240929 -0.160711 -0.122716 -0.152372 0.266721 0.073440 0.026331 0.237781 0.185542 -0.223883 -0.144808 0.183797 0.187740 -0.042715 0.088381 -0.195215 0.085571 -0.244536 -0.014687 0.298791 -0.134812 0.009335 -0.086959 0.459574 -0.151476 0.465535 0.174421 -0.244544 0.244115 0.172612 0.313170 0.133312 -0.163052 -PE-benchmarks/sieve-of-eratosthenes.cpp__SieveOfEratosthenes(int) = -2.030325 -4.780490 6.477823 4.652866 0.558142 2.154671 2.097584 -0.561850 1.245745 2.703845 -2.107059 4.506271 -4.032283 -0.655901 0.211330 0.266059 -3.737624 -4.111715 0.670558 -0.232065 -1.636794 -3.077175 -1.787175 5.482122 2.787368 1.655826 -2.523131 -0.262157 -6.803191 -3.810474 -2.055793 -0.376035 2.855904 1.092748 3.452679 -5.375974 2.213927 4.565397 0.701069 -5.459127 1.306937 -2.257378 0.479254 0.193150 -0.327318 2.396065 3.947187 2.084174 1.449050 1.189789 0.051390 -2.353021 1.600374 4.270745 1.588303 3.563460 3.950170 -2.015754 1.267496 -1.453103 0.605618 -4.068523 2.264221 1.409062 -2.753927 -1.085780 0.860112 -0.684777 -2.175403 2.286945 2.722470 -1.785419 -2.859771 -2.445556 -3.008955 -1.017337 2.313548 2.692478 5.937075 -2.059364 5.849578 2.340902 3.783328 -0.274761 3.399657 -0.418138 4.053921 0.737389 -2.880681 -0.921955 -5.762866 -1.869646 -1.564675 3.022296 -1.629470 0.530376 1.426973 -5.382949 -5.864958 2.081517 -0.848557 -2.149768 -2.405110 2.092034 2.833598 2.332464 -0.098485 -4.021903 -2.233334 2.077573 -3.472539 -1.176749 -0.157228 -0.444680 -1.389934 -0.158311 -4.190895 0.858944 2.898720 -2.352757 -1.470894 4.493561 -1.249504 4.552026 0.478113 1.129178 0.847030 2.539148 3.543877 -0.052461 0.571844 -3.442570 -3.610372 0.779152 0.282047 0.599180 -3.506213 -1.034076 1.284529 1.636457 0.270980 1.507071 -1.811234 5.858136 2.334830 -2.979935 -3.968898 -4.354192 -2.418624 -2.404846 0.502323 -1.577067 -2.193310 -0.020956 2.809188 1.077527 -0.287307 3.968806 -1.724595 2.661647 1.209759 -0.688234 0.485091 -0.289966 2.297438 -3.383587 -2.172877 2.631010 3.116952 1.917171 -0.230251 -0.793220 0.983438 -2.372299 -3.230836 2.282489 1.059715 2.651597 4.938618 3.251713 7.276634 -3.077732 -0.908332 0.322135 -0.261444 -1.441418 0.534450 -3.983312 2.577733 0.280307 0.593607 5.953767 -0.023306 -2.490213 3.015586 0.802612 0.933650 -4.153751 2.872248 -2.537651 0.974740 -1.387845 -1.296719 -2.887271 -1.616784 -3.600168 -1.551606 6.013714 -2.047846 -6.267158 1.875620 -1.704494 3.889173 -7.245766 3.302777 -2.231179 3.082714 -0.861265 -1.656621 -0.205639 -0.469859 -0.417273 1.718732 1.545613 -1.751790 2.372969 2.553674 1.130214 1.230592 1.207677 1.805344 0.391317 1.033439 -1.305086 1.292294 -0.312585 -0.220761 -1.167084 -1.062296 1.375345 2.991853 -1.410948 0.554783 3.375462 -0.368247 1.872712 3.377643 0.732329 -1.999653 -0.026238 -0.926080 4.591004 -3.244897 -2.808291 -1.757825 1.376660 0.565235 1.462421 -6.062289 -4.320185 -1.766707 -6.518264 -2.127443 -0.067418 1.708935 1.869205 -0.603651 -4.897744 -2.662790 3.725675 1.032425 6.287517 2.289232 0.428854 4.550555 2.376061 -0.007939 -1.819148 0.121500 0.709373 -1.904277 -0.601403 -2.841668 1.542330 -4.008457 4.094257 4.297910 -2.618077 2.276623 -1.819727 2.485860 -5.383833 5.720522 2.711439 -5.546911 0.412707 1.601482 4.023593 -3.701034 -3.549455 -PE-benchmarks/sieve-of-eratosthenes.cpp__main = -0.079946 -0.453322 1.265862 0.809719 -0.465734 0.039399 0.250610 -0.335284 0.398368 -0.901176 -0.295635 0.245675 -0.777515 0.258929 -0.538441 -0.017024 -1.373782 -0.691992 -0.261419 -0.357788 -0.141208 -0.318928 0.395484 0.438987 0.508482 0.849907 -0.497391 -0.181042 -0.915059 0.439912 0.880964 -0.200460 0.557478 0.759160 0.052763 -1.902269 0.439866 0.456033 -0.331304 -0.715607 0.593570 -0.777327 0.036497 -1.031017 -0.482278 -0.018214 0.083104 0.639326 0.399743 -0.169167 -0.596356 0.131973 -0.266480 1.303026 -0.517841 0.273905 0.561928 -0.088473 -0.187795 -0.219401 0.102652 0.012756 0.283838 0.293883 -0.484346 -0.698659 -0.089273 -0.978368 -0.560881 0.604185 0.145105 0.405866 -0.522953 -0.128542 -1.057988 -0.122302 0.260952 0.994129 0.943022 -0.908718 0.514464 -0.150163 0.284940 0.093061 0.177631 0.366450 0.395782 0.181258 0.055349 -0.223542 -1.226147 -0.010646 0.039536 -0.346001 -0.152481 -1.191895 0.437496 -1.280289 -0.699841 -0.045718 0.288255 -0.399628 -0.065019 0.103266 0.129710 0.521413 -0.341469 -0.472495 0.024729 0.237028 0.014044 0.030671 0.190722 0.360393 -0.232420 -1.023037 -1.017265 0.434562 -0.037440 -0.119360 0.285631 0.723799 -0.588174 0.007654 0.070502 0.198546 -0.499019 1.116607 -0.066652 -0.140116 0.111646 -0.129369 0.171302 -0.232647 0.427544 1.578891 -0.645452 -0.335388 -0.299517 0.110613 -0.527741 -0.821909 0.072472 0.161949 0.033144 -0.812492 -0.555060 -0.500329 -0.487989 -1.220967 -0.212047 -0.410439 -0.187062 0.953975 0.564922 0.908774 0.589028 1.245209 -0.428555 0.351936 0.046982 -0.409714 0.506360 0.380505 0.482981 -0.371899 -0.503303 0.325617 -0.504247 0.605050 -0.031992 0.122691 0.033844 -0.882433 -0.417077 0.355888 0.652952 0.160986 0.605218 0.726858 -0.603066 -0.868281 0.167643 0.531996 -0.315579 -0.184436 0.273264 -0.594440 0.444965 0.232874 -0.319658 0.539528 0.009155 -0.478642 0.242114 -0.050735 0.294256 -0.525978 -0.226777 -0.278195 -0.114184 -0.864849 0.221632 -0.286419 -0.431258 -0.550598 -0.786838 0.937306 -0.956962 -0.704558 0.593790 0.256499 0.947061 -1.196489 0.236245 -0.476045 1.221093 0.130921 -0.011723 0.117853 -0.549145 -0.695506 0.123194 0.209796 -0.254718 0.028471 0.661106 0.603137 0.112586 -0.035538 0.777709 -0.045384 0.726969 -0.354002 0.348850 -0.262466 -0.642464 0.456545 -0.154165 -0.162369 -0.042765 0.540717 1.200779 0.510987 1.120204 1.052163 0.541002 0.838612 -0.383810 -0.166314 -0.255087 0.569907 -0.246955 -0.335426 0.045488 0.740649 -0.129522 0.214547 -0.938437 -1.798058 -1.114081 -1.148402 0.241433 -0.821812 0.030096 -0.066028 0.005184 -0.961084 -0.398377 -0.182508 -0.340758 1.463179 0.469253 -0.029690 0.639812 0.783146 -0.948469 -0.172314 0.960868 0.861045 0.063621 0.255980 -1.385585 0.774246 -0.668032 0.058789 1.365671 -0.643388 0.364395 -0.193133 1.122820 -0.579727 1.331957 0.327493 -1.071854 0.560193 0.478063 0.400243 1.005724 -0.483297 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__countNonDecreasing(int) = -1.604073 -7.193039 9.677179 7.519204 0.946519 3.109334 3.967557 -0.823421 1.024523 4.872991 -3.060996 6.579021 -5.443454 -0.715685 1.135920 1.406997 -5.247377 -5.852009 1.163217 -0.398566 -1.919912 -4.015319 -2.695925 7.816498 4.463668 0.453160 -3.352885 -1.641728 -9.275412 -4.680322 -3.420395 -0.560923 4.192810 1.325503 5.295606 -7.293451 3.523260 6.483689 1.036836 -7.609021 1.668616 -2.425044 0.560112 0.882234 -0.953254 3.900208 5.991042 3.915270 1.995197 3.019305 1.184579 -3.417204 3.327008 6.446548 2.891561 5.379873 5.380260 -2.932021 2.586661 -2.167045 1.130632 -5.855686 2.912759 1.500825 -2.432009 -1.720279 -0.075331 -0.650980 -2.695287 2.658244 4.876209 -2.237792 -4.902925 -2.987312 -3.500922 -1.733638 0.510808 3.766515 8.798977 -3.212541 8.586606 4.199376 5.555278 -0.831526 4.727226 -0.371254 5.098132 1.272432 -3.832375 0.338111 -7.953166 -3.485185 -1.610004 2.979275 -3.044189 -1.791192 1.711043 -5.765095 -8.372186 3.957995 -0.942515 -3.393450 -1.797101 2.611018 3.654652 3.303445 -1.126372 -5.789589 -3.103563 2.432509 -4.240908 -1.990386 -0.115213 -0.659664 -1.404118 -0.424459 -6.133192 1.382890 4.510257 -3.348996 -1.329545 6.249746 -1.439717 6.713409 0.441681 1.033614 0.943355 3.993071 5.742703 0.489753 0.392552 -5.227975 -6.098761 2.143125 0.863573 0.125404 -3.890688 -1.528352 1.877970 3.102331 1.058219 4.179972 -0.425003 8.701744 3.726263 -3.619133 -6.021362 -6.521579 -3.437127 -2.239577 1.645013 -2.092902 -3.019493 -0.563629 4.075675 0.867787 -0.170746 4.375186 -1.349282 3.736810 0.914695 -0.422328 0.540819 -0.813377 3.228312 -4.360677 -2.761022 4.169259 5.173070 3.302612 0.361590 -1.155220 2.060122 -2.976372 -3.962129 2.070569 1.551614 2.720273 7.334199 4.604269 10.409213 -1.930477 -1.810454 0.469729 -0.276840 -1.874344 1.031391 -5.869628 3.642352 0.039394 -0.363133 8.200150 -0.207451 -3.029560 5.274095 0.592142 0.966547 -5.679255 3.935658 -3.306829 1.565947 -2.276517 -0.437968 -4.397187 -2.106109 -4.665928 -1.632279 8.758840 -2.407925 -7.729504 1.684707 -3.160893 4.225494 -9.211037 7.247363 -3.010774 3.378683 -1.236388 -3.314540 0.154666 0.144892 -0.720253 2.464098 2.343414 -2.234929 2.795648 3.411120 1.471570 0.662490 1.978922 2.835198 0.258965 1.631706 -1.823003 2.164056 -0.707813 0.592832 -1.902712 -1.205984 1.764285 3.946454 -1.959213 0.791579 3.498945 -0.769080 1.852075 4.381630 0.845278 -3.088476 -0.009691 -1.274941 6.627309 -5.131106 -3.671761 -2.655845 1.462253 0.758263 1.795722 -8.680317 -4.720385 -3.184767 -7.626804 -3.323878 1.141609 2.710697 2.615230 -1.175321 -6.746899 -4.270669 5.752056 1.011429 5.542448 4.201150 0.399310 6.856512 3.051542 1.020300 -2.300993 -0.639753 1.025335 -2.130592 -0.650759 -3.456608 2.179176 -6.538638 5.896083 6.044885 -3.461614 3.297439 -2.552812 5.141442 -7.681893 8.019484 3.627001 -7.821874 0.402421 3.832785 5.254622 -6.028212 -4.892012 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -0.022989 -0.464921 0.794457 0.610887 -0.091081 0.052567 0.371893 -0.089142 0.262167 -0.142747 -0.189889 0.265219 -0.571149 0.163438 -0.222715 0.195817 -0.608207 -0.497229 -0.048117 -0.093185 -0.070889 -0.246237 0.289982 0.214881 0.425587 0.365040 -0.287518 -0.362587 -0.671711 0.083135 0.394523 -0.140547 0.394218 0.400900 -0.010547 -0.984249 0.222107 0.373621 -0.164732 -0.586081 0.353237 -0.351811 0.075688 -0.454075 -0.068639 0.088450 0.214089 0.385150 0.215705 0.144206 -0.175429 -0.035834 0.054543 0.765153 -0.226373 0.255201 0.427616 -0.013391 -0.040932 -0.161876 0.150254 -0.088272 0.207421 0.197511 -0.184876 -0.349162 -0.230641 -0.528291 -0.417060 0.284921 0.073824 0.267565 -0.460042 -0.099903 -0.383636 -0.054265 -0.354302 0.550764 0.695628 -0.589552 0.485250 0.059770 0.239988 -0.062823 0.041613 0.190331 0.002971 0.164309 -0.043746 -0.123874 -0.655618 -0.087828 -0.048206 -0.133166 -0.152257 -0.629159 0.364523 -0.328160 -0.494235 0.095012 0.113475 -0.170858 -0.018785 0.172593 0.005100 0.472020 -0.288339 -0.368586 -0.128934 0.020838 0.146228 -0.088591 0.067636 0.161223 -0.250653 -0.539838 -0.618355 0.117895 0.037039 -0.308340 0.096767 0.370846 -0.319055 0.220345 0.010889 0.088019 -0.195609 0.683062 0.234260 0.052859 0.276569 -0.129182 -0.265735 -0.018993 0.356160 0.977627 -0.367474 0.005371 -0.158416 0.076947 -0.129328 -0.312199 0.161534 0.192908 0.239485 -0.491500 -0.432983 -0.365991 -0.131455 -0.567988 0.031898 -0.323972 0.175301 0.431258 0.354434 0.356804 0.284613 0.935515 -0.403009 0.231099 0.045516 -0.202395 0.199278 0.355469 0.274764 -0.240004 -0.354943 0.217133 0.024914 0.217317 0.046682 0.066151 0.097682 -0.513262 -0.190522 0.193445 0.294220 -0.153503 0.396872 0.331466 -0.163967 -0.393134 -0.019212 0.257822 -0.132057 -0.088890 0.152111 -0.549913 0.401780 -0.002451 -0.151680 0.266731 0.021888 -0.301678 0.374780 -0.184926 0.080532 -0.286518 0.047087 -0.274323 -0.177867 -0.503575 0.211094 -0.116032 -0.263008 -0.184943 -0.138206 0.632974 -0.234677 -0.286024 0.120490 0.115105 0.287334 -0.708967 0.561695 -0.282612 0.469860 0.009266 -0.113934 0.066927 -0.067354 -0.235263 -0.174830 0.208688 -0.106470 0.064595 0.518871 0.263838 -0.108208 0.109166 0.448442 0.012447 0.358765 -0.118544 0.217060 -0.123179 -0.302987 0.202688 -0.107190 0.046927 -0.048852 0.088576 0.803102 0.301633 0.428515 0.584381 0.227207 0.502306 -0.292494 0.028033 -0.070055 0.610361 -0.221435 -0.126086 -0.073484 0.358653 -0.120780 0.255372 -0.555668 -0.976247 -0.315846 -0.652133 0.017517 -0.316732 0.119227 -0.114795 -0.030138 -0.583848 -0.342695 -0.182753 -0.211392 0.576069 0.307548 0.020039 0.449970 0.378917 -0.455787 -0.114081 0.383543 0.432013 0.028181 0.044512 -0.499398 0.259958 -0.481288 0.017374 0.712663 -0.287784 0.176392 -0.156487 0.742297 -0.370481 0.877937 0.237018 -0.566377 0.405073 0.378466 0.472490 0.283727 -0.314293 -PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -1.249987 -2.770739 4.873356 3.453285 -0.014662 1.011515 1.552408 -0.977211 1.080720 1.631899 -1.331532 2.479752 -2.886879 0.090094 -0.169703 0.956111 -3.199729 -2.706757 0.007119 -0.955687 -1.550052 -1.736324 -0.506028 2.544054 2.317193 1.516713 -1.872215 -0.282194 -3.790424 -3.655275 -0.770909 -0.554489 1.998037 1.141513 1.670834 -5.033453 2.171911 3.064244 -0.168704 -3.017812 1.265830 -1.674583 -0.012697 -0.432509 -0.103163 1.607340 2.280535 1.522286 1.494759 0.970972 0.426027 -1.240936 0.947706 3.491498 0.127775 2.293468 2.618825 -1.349679 0.115193 -0.654387 0.431658 -2.301211 1.503482 1.015310 -1.614514 -1.490926 0.601832 -1.153565 -1.543150 1.827850 1.711906 -1.196810 -1.951168 -1.718151 -2.082833 -0.914157 0.497153 1.693862 4.298793 -1.738259 3.741538 1.315066 1.987357 -0.106661 1.930292 -0.098370 2.936581 0.579465 -1.660819 -0.508696 -2.816102 -1.420488 -0.601876 3.011143 -1.032198 -0.588193 1.329497 -3.548542 -3.883282 1.192179 0.018741 -1.434455 -2.189181 1.073499 1.565402 1.260693 -0.419099 -2.725521 -1.426504 0.703435 -1.985471 -0.682671 -0.185734 -0.342974 -1.214990 0.129027 -3.547391 0.704907 1.272506 -1.533792 -1.266779 2.814000 -0.372641 2.351874 0.303805 1.172276 -0.087452 2.178763 1.504351 0.605409 0.289063 -1.064282 -2.791325 -0.452387 0.996494 0.966004 -2.270602 -1.298879 0.151260 0.988310 -0.801025 0.765155 -1.269863 4.267525 2.587946 -2.147162 -2.808289 -2.443017 -1.432437 -2.340560 0.587823 -1.536430 -1.505710 -0.322034 2.088336 0.547688 0.478728 3.394916 -1.431071 2.038310 0.422473 -0.622475 1.062310 -0.322153 1.954631 -2.292443 -1.443440 1.774169 1.721844 1.507176 -0.110702 -0.467912 0.857939 -2.293174 -2.357022 1.799834 0.444583 0.782568 2.919413 2.340025 5.839935 -2.473999 0.031789 0.878790 -0.420249 -0.836040 1.034690 -2.713078 1.632737 0.391551 0.206624 3.920421 0.291956 -2.011150 1.701832 0.232635 0.499965 -2.806298 1.674212 -1.598995 0.874537 -1.211059 -0.387775 -1.913016 -1.171197 -1.870295 -1.007083 3.989330 -1.813976 -4.113905 1.840630 -0.683837 2.649786 -5.259088 2.828136 -1.766295 2.018110 -1.327852 -1.097999 0.243885 -0.049834 -0.889222 1.520969 1.028107 -1.004844 1.450243 2.304435 1.113810 1.025711 0.334075 1.929415 0.026158 1.319067 -0.838966 1.473118 -0.203619 -0.598691 -0.934965 -0.688978 0.165019 1.395805 -0.306051 0.783752 2.165096 0.028762 1.496972 2.284441 1.451680 -1.480235 0.592518 -0.420350 3.109205 -2.043327 -1.899392 -0.448770 1.295945 -0.037308 1.415891 -4.173857 -3.318511 -1.326695 -4.527099 -1.397136 0.789473 1.492709 0.828249 -0.368689 -3.198710 -1.725882 3.318458 0.384919 4.329815 1.696889 0.465668 2.785717 1.857226 -0.252981 -1.418408 -0.100046 0.974015 -0.667853 -0.436983 -2.236350 1.625384 -2.801090 2.202656 3.130969 -2.088877 1.384480 -1.115338 3.112174 -3.494943 4.092963 1.433322 -3.422707 1.203056 2.087064 3.189393 -1.659657 -2.148756 -PE-benchmarks/sudoku.cpp__FindUnassignedLocation(int (*) [9], int&, int&) = -1.334944 -2.463980 4.697238 3.411863 0.606694 1.041777 1.277885 -1.384777 1.850551 2.369602 -1.054059 2.248702 -2.510639 0.103463 0.480012 1.479641 -2.641986 -2.815330 -0.010206 -1.229254 -1.385853 -1.886406 -0.199444 1.850937 2.088571 0.011873 -2.058778 -0.097219 -3.699331 -3.971873 -0.627254 -0.772157 1.902781 -0.266617 1.438197 -4.773730 2.653174 2.707474 -0.254085 -3.095289 1.080662 -1.508439 0.190965 0.020923 0.085222 1.640673 1.980972 0.740480 1.781965 1.295483 1.107377 -0.837589 0.552193 3.412847 -0.471384 2.222459 2.083497 -1.410282 -0.277087 -0.143511 0.502377 -1.854532 1.741777 1.303864 -1.519292 -1.681949 0.703874 -0.628091 -2.149150 1.897241 1.346703 -1.578565 -1.753385 -1.423719 -1.682300 -0.942479 1.499330 1.429667 4.214956 -1.348015 3.453771 1.187209 2.074610 0.009977 1.873174 -0.237727 3.125089 0.539564 -1.892279 -0.846939 -2.622374 -1.496435 -0.551328 2.943803 -0.719778 0.324881 1.107606 -2.644975 -3.649555 1.291948 0.262746 -0.891657 -3.299959 0.791823 2.026618 1.411673 -0.156195 -2.814010 -1.546875 0.861087 -1.956764 -0.870856 -0.362364 -1.461114 -1.371031 0.171166 -3.356215 0.251986 1.203179 -1.523813 -1.976334 2.687864 -1.319986 1.789713 0.175511 1.350719 -0.198953 1.672016 1.174313 1.235037 0.702382 -1.491453 -3.669619 -0.326303 0.706369 0.764920 -1.577125 -0.641270 -0.314049 0.831186 -1.177173 1.243377 -1.207588 4.002234 2.811199 -1.769132 -2.721190 -1.978773 -0.867577 -2.282097 0.944727 -1.714544 -1.243801 -0.419808 2.118786 0.592850 0.789236 3.613101 -1.694567 2.231477 0.175989 -0.467718 1.447062 -0.860135 1.957672 -2.167839 -1.376985 1.585487 2.116612 0.807205 0.137218 -0.769084 0.841187 -2.448199 -2.241988 1.386120 0.268999 0.980503 2.450754 1.937014 6.173417 -2.632882 0.097857 1.095932 -0.116038 -0.636736 0.549595 -2.725777 1.245285 0.474136 0.576384 3.895474 0.206072 -2.364573 1.186287 0.288260 0.638722 -2.451663 1.682338 -1.599766 1.058601 -0.767294 -1.055030 -2.020510 -1.099604 -1.637410 -0.634289 3.789642 -0.740545 -4.643405 2.241705 -1.373891 2.335311 -5.301111 3.051420 -1.832885 1.836390 -1.606610 -0.633567 -0.238670 0.441527 -1.046063 1.704152 1.100376 -0.812295 1.776656 2.717821 1.084065 1.124088 0.160766 1.760859 0.062629 1.316551 -0.685787 1.857765 -0.468129 -0.285437 -0.911259 -0.758242 0.406558 1.037455 -0.588524 0.067698 2.226368 -0.517202 1.348146 2.230283 1.411227 -1.532350 1.316003 -0.252461 2.805156 -1.677916 -1.510635 -0.141313 0.896013 -0.192460 1.419527 -3.900405 -2.725254 -0.845812 -4.656315 -1.171010 1.202630 1.135371 0.560932 -0.250948 -3.089475 -1.477422 2.970779 0.502079 4.490016 1.484596 0.598777 2.490821 2.055114 -0.450719 -1.466993 -0.779508 0.044168 -0.903172 -1.003737 -1.809185 1.760450 -2.542823 2.038100 2.669089 -1.697134 1.009743 -1.023532 1.799421 -3.107724 3.772791 1.490392 -2.350825 1.429719 1.408408 3.633762 -2.043321 -2.092604 -PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -1.545345 -2.404174 3.966963 2.446745 -0.106235 0.671453 1.308653 0.269572 -0.243205 0.676574 -0.671544 2.703533 -1.609371 -0.494479 -0.801005 0.024544 -2.106879 -2.090231 -0.306659 -0.628827 -0.896041 -0.417514 -1.245356 2.949067 1.875950 0.518793 -1.748585 -0.379763 -3.663900 -2.740220 -1.352302 0.101796 1.484523 -1.116797 1.622644 -4.606273 1.335280 3.137632 0.143466 -2.659979 1.278902 -0.815165 0.148658 -0.047305 -1.610631 0.738308 2.161761 -0.354948 0.326627 0.390227 -0.636456 -0.207022 0.895625 4.008860 1.171013 1.916966 2.768233 -1.013130 0.519082 -0.910969 0.250275 -2.282611 0.600923 -0.554990 -0.602470 -0.932874 -0.029063 -0.669096 -0.421095 0.670977 0.946855 -1.409176 -0.711077 -1.417138 -3.623373 -1.050895 2.512338 1.282767 2.714768 -1.870549 2.859576 0.952625 1.118826 0.891094 1.451411 0.174280 1.229464 0.569153 -0.175634 0.109839 -1.595915 -0.387975 -0.794100 2.637378 -1.400286 -1.585377 1.628394 -4.088689 -3.038776 1.452185 -0.357325 -1.673985 -1.416467 -0.095960 0.693394 1.355249 -0.706177 -1.560355 -1.712477 0.667986 -0.664823 -0.492888 0.532790 0.237252 -0.326603 0.088185 -2.606579 1.518958 1.350016 -0.516937 -1.075906 2.240111 -0.295188 2.527251 0.137729 1.188020 -0.509836 1.668068 1.709996 -0.215525 -1.409418 -0.899964 -1.943089 -1.662504 0.114987 0.541235 -2.199938 -1.253593 0.100758 0.904912 0.389581 0.745291 -0.959710 3.560282 1.351502 -1.184510 -1.849858 -2.523856 -2.049968 -1.739786 -0.509526 -0.568224 -2.178238 1.237892 1.142229 0.311667 -0.201210 2.487492 0.240749 0.751155 0.619855 -1.481701 0.262530 -1.956199 1.133159 -1.384854 -1.073317 1.229749 1.043551 2.638781 -0.253159 0.206895 0.473131 -1.030164 -1.943800 0.798505 0.754289 1.009902 2.156482 2.052453 3.232600 -1.888072 -0.836349 -0.075484 -1.255930 -0.609434 0.521855 -1.646367 0.413062 0.418132 -0.900879 3.098478 0.144822 -1.189775 2.231829 -0.011619 0.378373 -2.020817 1.636181 -1.333138 0.591600 -0.805751 -1.493779 -1.687884 -0.306524 -2.652985 -2.315183 3.216146 -2.901460 -3.368187 0.709820 0.784414 1.969035 -4.029692 1.602459 -0.890964 3.030855 -0.107756 -0.512073 0.694833 0.053147 -0.486038 0.995994 0.592435 -1.577669 0.737996 1.244615 0.638008 0.468910 -0.077316 1.397458 -0.419782 1.240139 -1.046378 0.843808 -0.689891 -1.517353 -0.910121 0.075646 -0.001825 1.363909 0.386857 -0.824557 0.508750 0.334958 0.256194 2.681471 0.932874 -1.026424 -0.330457 -0.779899 2.819408 -1.340119 -1.508433 -0.759179 2.060134 0.861879 0.655027 -3.240959 -2.324836 -2.903688 -4.036004 -0.633733 0.322431 0.330775 0.651743 -0.796796 -2.670849 -1.806434 2.696205 0.388112 2.983010 1.785877 0.142490 2.658875 0.861981 0.140968 -0.635068 0.777527 1.002998 0.104838 -0.403002 -1.852201 0.965760 -2.411631 1.458792 2.605216 -1.325475 1.904769 0.531374 0.820871 -2.904150 3.455593 0.548630 -3.558060 0.381690 2.180687 1.964753 -2.017165 -1.644574 -PE-benchmarks/sudoku.cpp__UsedInRow(int (*) [9], int, int) = -0.429383 -1.942147 3.039768 2.430484 0.401604 0.614565 1.465545 -0.515291 0.895397 1.761462 -0.859621 1.549866 -2.086605 0.081174 0.456278 1.051754 -1.720509 -1.886874 0.209754 -0.313823 -0.688256 -1.352960 0.083399 1.436983 1.691283 0.341795 -1.103217 -0.693730 -2.528066 -2.204820 -0.501160 -0.453117 1.376309 0.785564 0.937329 -2.472665 1.363277 1.804537 -0.034747 -2.145898 0.820071 -0.930559 0.156987 -0.142672 0.452768 1.224662 1.654926 1.185261 1.087461 1.062313 0.506520 -1.081837 0.828497 1.886303 -0.039219 1.489696 1.594246 -0.797777 0.236202 -0.344007 0.382216 -1.482250 1.054178 0.881422 -0.893220 -0.833397 0.058811 -0.685138 -1.299882 1.184397 0.975042 -0.484014 -1.728453 -0.919648 -0.743087 -0.381066 -0.583995 1.299775 2.918141 -1.190082 2.532948 1.039184 1.377237 -0.429036 0.984331 -0.115976 1.420919 0.370280 -1.219132 -0.507596 -2.131125 -1.406640 -0.502378 1.422775 -0.491895 -0.006169 0.732996 -1.260229 -2.524118 0.807203 -0.076940 -0.736321 -1.322927 1.049434 0.998372 1.150603 -0.162641 -1.917846 -0.964714 0.253964 -1.075222 -0.581698 -0.265716 -0.401911 -1.082752 -0.060044 -2.257492 0.047517 0.745044 -1.414048 -0.849361 1.613001 -0.622535 1.737412 0.217893 0.574348 0.163965 1.365113 1.362135 0.713329 1.173082 -1.079118 -2.357775 0.269254 0.821701 0.900488 -1.102566 -0.011263 0.021280 0.608036 -0.411180 0.719868 -0.277535 2.748375 1.631601 -1.512790 -1.942887 -1.478618 -0.530341 -1.092098 0.877434 -1.121228 -0.160716 -0.342128 1.349225 0.157652 0.319471 2.477776 -1.362247 1.266760 0.275385 -0.144647 0.576205 0.161038 1.216887 -1.424845 -0.948318 1.077499 1.598890 0.393215 -0.005405 -0.290961 0.663494 -1.578301 -1.375524 0.874266 0.062091 0.126466 1.809916 1.186032 3.416520 -1.266772 -0.064280 0.669594 0.036507 -0.527671 0.566567 -2.107937 1.474939 -0.090139 0.377834 2.149712 0.150417 -1.364085 1.321464 -0.118983 0.199330 -1.601796 1.089998 -1.153451 0.321724 -0.797241 -0.102224 -0.958552 -0.969964 -0.707906 0.306515 2.564175 0.082746 -2.356120 0.859900 -0.897070 1.172455 -3.203318 2.782143 -1.117355 0.598295 -0.885734 -0.854913 0.047487 0.381730 -0.317592 0.354264 0.762534 -0.359498 1.091907 1.636571 0.596559 0.312323 0.521869 1.121480 0.244431 0.719145 -0.311074 0.918891 -0.177569 -0.027284 -0.604696 -0.472184 0.527546 0.809598 -0.709164 0.889904 1.427825 -0.304643 1.145007 1.152731 0.964504 -1.025870 0.682660 -0.178283 2.329590 -1.309864 -0.977651 -0.389527 0.344057 -0.243644 1.211552 -2.549972 -1.986364 0.031327 -2.698301 -1.102008 0.483251 1.157396 0.351381 -0.191189 -2.107199 -1.156381 1.221394 0.260392 1.882969 1.023311 0.221840 1.764203 1.138534 -0.086444 -0.875725 -0.338863 0.465893 -0.558955 -0.553083 -0.874579 0.709768 -1.967289 1.343534 1.807600 -1.114082 0.633160 -1.114381 1.967371 -2.199950 2.602642 1.017304 -1.815098 0.922777 1.320884 2.186949 -1.381907 -1.405050 -PE-benchmarks/sudoku.cpp__UsedInCol(int (*) [9], int, int) = -0.429383 -1.942147 3.039768 2.430484 0.401604 0.614565 1.465545 -0.515291 0.895397 1.761462 -0.859621 1.549866 -2.086605 0.081174 0.456278 1.051754 -1.720509 -1.886874 0.209754 -0.313823 -0.688256 -1.352960 0.083399 1.436983 1.691283 0.341795 -1.103217 -0.693730 -2.528066 -2.204820 -0.501160 -0.453117 1.376309 0.785564 0.937329 -2.472665 1.363277 1.804537 -0.034747 -2.145898 0.820071 -0.930559 0.156987 -0.142672 0.452768 1.224662 1.654926 1.185261 1.087461 1.062313 0.506520 -1.081837 0.828497 1.886303 -0.039219 1.489696 1.594246 -0.797777 0.236202 -0.344007 0.382216 -1.482250 1.054178 0.881422 -0.893220 -0.833397 0.058811 -0.685138 -1.299882 1.184397 0.975042 -0.484014 -1.728453 -0.919648 -0.743087 -0.381066 -0.583995 1.299775 2.918141 -1.190082 2.532948 1.039184 1.377237 -0.429036 0.984331 -0.115976 1.420919 0.370280 -1.219132 -0.507596 -2.131125 -1.406640 -0.502378 1.422775 -0.491895 -0.006169 0.732996 -1.260229 -2.524118 0.807203 -0.076940 -0.736321 -1.322927 1.049434 0.998372 1.150603 -0.162641 -1.917846 -0.964714 0.253964 -1.075222 -0.581698 -0.265716 -0.401911 -1.082752 -0.060044 -2.257492 0.047517 0.745044 -1.414048 -0.849361 1.613001 -0.622535 1.737412 0.217893 0.574348 0.163965 1.365113 1.362135 0.713329 1.173082 -1.079118 -2.357775 0.269254 0.821701 0.900488 -1.102566 -0.011263 0.021280 0.608036 -0.411180 0.719868 -0.277535 2.748375 1.631601 -1.512790 -1.942887 -1.478618 -0.530341 -1.092098 0.877434 -1.121228 -0.160716 -0.342128 1.349225 0.157652 0.319471 2.477776 -1.362247 1.266760 0.275385 -0.144647 0.576205 0.161038 1.216887 -1.424845 -0.948318 1.077499 1.598890 0.393215 -0.005405 -0.290961 0.663494 -1.578301 -1.375524 0.874266 0.062091 0.126466 1.809916 1.186032 3.416520 -1.266772 -0.064280 0.669594 0.036507 -0.527671 0.566567 -2.107937 1.474939 -0.090139 0.377834 2.149712 0.150417 -1.364085 1.321464 -0.118983 0.199330 -1.601796 1.089998 -1.153451 0.321724 -0.797241 -0.102224 -0.958552 -0.969964 -0.707906 0.306515 2.564175 0.082746 -2.356120 0.859900 -0.897070 1.172455 -3.203318 2.782143 -1.117355 0.598295 -0.885734 -0.854913 0.047487 0.381730 -0.317592 0.354264 0.762534 -0.359498 1.091907 1.636571 0.596559 0.312323 0.521869 1.121480 0.244431 0.719145 -0.311074 0.918891 -0.177569 -0.027284 -0.604696 -0.472184 0.527546 0.809598 -0.709164 0.889904 1.427825 -0.304643 1.145007 1.152731 0.964504 -1.025870 0.682660 -0.178283 2.329590 -1.309864 -0.977651 -0.389527 0.344057 -0.243644 1.211552 -2.549972 -1.986364 0.031327 -2.698301 -1.102008 0.483251 1.157396 0.351381 -0.191189 -2.107199 -1.156381 1.221394 0.260392 1.882969 1.023311 0.221840 1.764203 1.138534 -0.086444 -0.875725 -0.338863 0.465893 -0.558955 -0.553083 -0.874579 0.709768 -1.967289 1.343534 1.807600 -1.114082 0.633160 -1.114381 1.967371 -2.199950 2.602642 1.017304 -1.815098 0.922777 1.320884 2.186949 -1.381907 -1.405050 -PE-benchmarks/sudoku.cpp__UsedInBox(int (*) [9], int, int, int) = -0.712765 -3.011509 4.374715 3.472073 0.794945 1.002977 2.090097 -0.506316 1.271478 2.683123 -1.307711 2.585659 -3.057942 0.040997 0.877608 1.330704 -2.304362 -2.896114 0.415658 -0.192003 -1.041034 -2.058372 -0.217520 2.502052 2.347098 -0.001962 -1.677294 -0.813096 -4.033152 -2.725637 -1.108518 -0.573096 1.977371 0.304332 1.668946 -3.469963 1.923299 2.713094 0.207519 -3.453054 1.073202 -1.363484 0.329119 0.031132 0.470330 1.636242 2.662030 2.040377 1.393544 1.534163 0.678492 -1.643178 0.991601 3.070776 0.284588 2.283186 2.564162 -1.151650 0.291034 -0.673969 0.564777 -2.455664 1.515324 1.254140 -1.508374 -0.967052 0.314265 -0.733688 -1.893316 1.510616 1.870896 -0.897991 -2.386048 -1.403836 -0.826377 -0.493347 0.399194 1.756519 4.300201 -1.639001 3.780091 1.595495 2.264866 -0.403375 1.580708 -0.282299 2.122471 0.489283 -1.939319 -0.944199 -3.594610 -1.817858 -0.814102 1.895353 -0.736954 0.100071 0.906270 -1.405374 -3.773316 1.231704 -0.332315 -1.144808 -1.774682 1.604942 1.740220 1.811845 -0.113763 -2.785812 -1.544619 0.603365 -1.846573 -0.942858 -0.349752 -0.712794 -1.509878 -0.348691 -3.239327 0.072389 1.472053 -2.064467 -1.205381 2.414197 -1.475007 2.888976 0.303294 0.727980 0.537285 1.808812 2.483244 0.662308 1.601999 -2.215667 -3.104656 0.675962 0.793466 1.275250 -1.596593 0.221052 0.357305 0.956640 -0.226652 1.266667 -0.442823 4.075439 1.886629 -2.129748 -2.898523 -2.414245 -0.918455 -1.232131 1.291170 -1.573954 -0.478747 -0.536434 1.940561 0.215334 0.123615 3.675559 -1.889744 2.128068 0.591845 -0.174848 0.609539 0.066840 1.710204 -2.162605 -1.403901 1.637768 2.537114 0.449862 -0.091742 -0.498124 0.990450 -2.261060 -1.981700 0.980931 0.106314 0.585046 2.776408 1.619083 5.450821 -1.658843 -0.298837 0.724694 0.149341 -0.842457 0.635648 -3.050216 1.857908 -0.148783 0.575060 3.514296 0.237683 -2.252593 2.037510 0.050849 0.295083 -2.360359 1.892105 -1.585165 0.528507 -0.927514 -0.207478 -1.478992 -1.216558 -1.395491 0.376322 3.866953 0.114439 -3.978612 0.910777 -1.345904 1.974927 -4.772851 4.216141 -1.579130 1.127132 -1.043013 -1.242152 0.105394 0.339963 -0.332815 0.866470 1.120501 -0.280727 1.526887 2.191585 0.756358 0.492176 0.904981 1.340905 0.407902 0.886023 -0.430021 1.161002 -0.264801 0.003614 -0.879151 -0.689835 0.957266 1.493359 -1.265798 0.848824 2.167975 -0.611309 1.644836 1.632198 1.022654 -1.492653 0.885696 -0.294767 3.470184 -1.968297 -1.388166 -0.815844 0.509018 -0.113030 1.748925 -3.757320 -2.681501 0.216880 -4.256763 -1.540435 0.784531 1.535501 0.602790 -0.318750 -3.078116 -1.682077 1.966230 0.549318 3.655601 1.594407 0.369134 2.686076 1.531872 -0.075466 -1.323870 -0.330382 0.423179 -1.051234 -0.764388 -1.156459 0.852421 -2.898398 2.176927 2.610463 -1.508424 0.994161 -2.024132 2.205434 -3.264930 3.767900 1.639361 -2.844816 0.940783 1.572278 3.366075 -2.463817 -2.203437 -PE-benchmarks/sudoku.cpp__printGrid(int (*) [9]) = -0.483004 -1.875702 3.139255 2.395792 0.052289 0.695651 0.906947 -0.602687 0.837368 0.948848 -1.019341 1.552025 -1.976236 0.023821 0.452847 0.531303 -2.166677 -1.911029 0.021663 -0.363960 -0.761975 -1.315321 -0.336814 1.895415 1.393371 0.875533 -1.203318 0.037851 -2.600474 -1.619436 -0.378714 -0.345136 1.339939 1.146554 1.378985 -2.566723 1.423776 1.845841 0.050032 -2.197679 0.663380 -1.177115 0.040200 -0.495262 0.071550 1.184013 1.492637 1.354269 0.919627 0.573210 -0.025187 -1.029989 0.320381 1.786645 0.153394 1.458698 1.805136 -0.859400 0.260749 -0.523486 0.325301 -1.431189 0.997719 0.902552 -1.286668 -0.893659 0.410362 -0.821190 -1.134845 1.291869 1.303394 -0.584332 -1.494103 -1.169371 -1.123700 -0.381171 0.576472 1.413715 2.877723 -1.187211 2.384598 0.971276 1.570276 -0.127181 1.320486 -0.093747 1.999646 0.368055 -1.202463 -0.352031 -2.646361 -1.409233 -0.389428 1.233070 -0.582770 0.097328 0.556021 -2.164141 -2.523087 0.714033 -0.064731 -0.866821 -1.250510 1.056387 1.223843 0.970697 0.086002 -1.732285 -0.657398 0.608851 -1.444964 -0.468509 -0.267081 -0.019403 -0.892582 -0.295261 -2.397839 0.393138 0.953667 -1.032168 -0.426126 1.854686 -0.902275 1.552645 0.169665 0.399768 0.079044 1.503042 1.217694 0.226235 0.700063 -1.364035 -1.532551 0.286653 0.514574 0.935599 -1.303115 -0.421380 0.327282 0.646043 -0.494190 0.416062 -0.598019 2.578783 1.094261 -1.535655 -1.923686 -1.752201 -1.175948 -1.360887 0.536380 -1.043146 -0.745314 0.006728 1.403146 0.716920 0.289606 2.364432 -1.169325 1.304574 0.293056 -0.163736 0.558163 0.130793 1.202975 -1.469666 -0.932204 1.264156 1.053726 0.623872 0.064180 -0.457207 0.568781 -1.635380 -1.558536 1.164807 0.257534 0.806233 2.014540 1.454336 3.032799 -1.306023 0.042309 0.593482 0.002566 -0.659709 0.595238 -1.820576 1.237273 0.104061 0.424944 2.485622 0.085038 -1.322223 0.958723 0.254345 0.376695 -1.758944 0.982674 -0.956357 0.662529 -0.911218 -0.009225 -1.191258 -0.918341 -1.150400 -0.355217 2.673407 -0.523815 -2.891333 1.112281 -0.706812 1.961049 -3.229657 1.684324 -1.128739 1.471404 -0.581995 -0.742549 0.135561 -0.552785 -0.555572 0.837042 0.721210 -0.357939 0.781024 1.201146 0.738528 0.493926 0.477222 1.025773 0.138800 0.810251 -0.549517 0.794377 -0.192562 -0.060973 -0.413947 -0.498571 0.364693 0.982722 -0.498531 0.685855 1.548407 0.271094 1.238298 1.208802 0.716141 -1.015680 0.251383 -0.235877 1.959676 -1.345879 -1.129285 -0.438659 0.602457 -0.059314 0.852694 -2.661620 -2.212734 -0.601735 -2.976278 -1.072724 0.167738 0.958067 0.650360 -0.209553 -2.010328 -1.102809 1.583212 0.306051 3.124705 0.990473 0.191578 1.845974 1.292999 -0.338766 -0.991998 0.211549 0.607277 -0.687866 -0.144978 -1.630777 1.132051 -1.775301 1.436867 2.227350 -1.356724 0.876510 -1.252457 1.961879 -2.247800 2.671958 1.109766 -2.372820 0.563534 1.071137 1.907634 -0.934178 -1.550102 -PE-benchmarks/sudoku.cpp__main = 0.395902 -0.676246 1.667561 1.234640 -0.510207 0.094933 0.124251 -0.418635 0.584987 -0.391701 -0.618134 0.547772 -0.856220 0.180317 -0.057045 0.454434 -1.735433 -0.811246 0.038332 -0.071258 -0.210819 -0.564814 0.380635 0.691419 0.759843 1.682841 -0.498843 0.118448 -0.683051 -0.561753 0.461960 -0.351646 0.631558 1.747536 0.667764 -0.904438 0.794535 0.513012 -0.135442 -1.095455 0.386828 -0.540109 -0.018561 -1.087936 0.059279 0.674218 0.507797 1.243209 0.550989 0.259795 -0.775376 -0.430701 0.284893 0.231983 -0.071548 0.348487 0.668683 -0.328241 0.272310 -0.476737 0.275104 -0.329590 0.307902 0.580820 -0.521768 -0.707031 -0.184621 -0.917385 -0.542358 0.875802 0.336498 0.315038 -1.142245 -0.389671 -0.579420 0.167245 -0.983155 1.339150 1.253862 -0.827018 0.784036 0.273584 0.640573 -0.275420 0.232152 0.163190 0.665482 0.361701 -0.337630 -0.247473 -1.339895 -1.021778 0.050192 -0.645207 -0.161620 -0.481892 0.264456 -1.527265 -0.940309 0.083742 0.299800 -0.409725 0.032672 0.596831 0.536387 0.605978 0.105115 -0.529766 0.428028 0.026832 -0.403157 -0.045123 -0.101155 0.666661 -0.472036 -0.223733 -1.259518 0.253082 0.131808 -0.348152 0.701058 0.647460 -0.145371 0.264967 -0.009963 -0.029780 -0.080251 1.218326 0.464503 0.129117 0.539421 -0.184627 0.339340 0.901165 0.667700 0.594566 -0.682644 -0.134714 -0.041895 0.280566 -0.514585 -0.702147 -0.340803 0.550618 0.180931 -0.988157 -1.071184 -0.746816 -0.988057 -0.935521 0.203879 -0.582182 -0.082646 0.798315 0.681327 0.643836 0.554358 0.920425 -1.093091 0.195030 0.032745 0.210669 0.384276 1.006264 0.538536 -0.531018 -0.286453 0.716571 -0.077410 0.275895 -0.005823 -0.248391 0.369673 -0.890464 -0.477819 1.076756 0.442832 0.327299 0.763220 0.602417 -0.400877 -0.205777 -0.167783 0.635843 0.061200 -0.501957 0.534288 -0.867219 1.084521 -0.155780 0.643099 0.581327 -0.052406 -0.244176 0.395429 0.085196 0.166703 -0.638590 -0.130475 -0.384991 0.056703 -0.659323 0.579353 -0.351117 -0.529709 -0.436559 -0.280225 1.207249 -0.436959 -0.743148 0.700171 -0.657699 1.177311 -0.959502 0.074308 -0.580824 0.633023 0.264549 -0.222722 0.096177 -1.268294 -0.495431 -0.357779 0.357949 0.175541 -0.008051 0.391378 0.554959 -0.188641 0.297705 0.584062 -0.020964 0.838552 -0.080521 0.197878 -0.253429 0.094762 0.196232 -0.170638 -0.168395 0.043139 -0.097057 1.362028 0.500832 1.017916 1.274374 -0.003630 0.744227 -0.639258 -0.056762 -0.187773 0.678559 -0.597406 -0.553473 -0.005254 0.410666 -0.347504 0.443037 -1.147914 -1.783782 -0.823354 -1.069601 -0.635992 -0.937722 0.641464 -0.091523 -0.105482 -0.619023 -0.582471 0.389608 0.084660 1.043593 0.446862 -0.254630 0.777095 0.728357 -0.668183 -0.437281 0.502832 0.695397 0.009885 0.306215 -1.327124 0.761687 -0.775064 0.172366 1.663753 -0.973051 0.245214 -1.072878 1.486080 -0.886169 1.243769 0.475843 -1.292325 0.298702 0.356445 0.346690 0.595022 -0.780142 -PE-benchmarks/rotate-bits-of-an-integer.cpp__main = -0.668271 -1.050569 3.178294 1.583368 -1.646303 0.286275 0.096806 -0.767436 0.270600 -3.298841 -0.791562 1.029045 -1.438682 0.126412 -1.961360 -1.215800 -3.475438 -1.444513 -0.932681 -1.170833 -0.489021 -0.288127 -0.170647 2.088994 1.046894 2.242431 -1.214589 0.180225 -2.636700 1.338900 1.521740 0.046847 1.158613 1.052252 0.702452 -5.294695 0.833397 1.671393 -0.567272 -1.758416 1.485385 -2.102696 -0.228407 -2.395740 -2.143632 -0.398103 0.150308 1.116917 0.466292 -1.049917 -2.235205 0.767113 -1.016788 3.683458 -0.416443 0.784850 1.819600 -0.376761 -0.514035 -0.633424 -0.030181 -0.380582 0.407680 -0.219288 -1.357118 -1.640632 0.329398 -2.090928 -0.533755 1.102387 0.658203 -0.030319 -0.354770 -0.769969 -3.908786 -0.555216 2.900489 2.284155 1.654887 -2.270542 1.154385 -0.728115 0.483406 0.818694 0.938794 0.797152 1.385550 0.363359 0.567501 -0.453554 -3.178630 0.462213 0.034644 -0.471572 -0.904726 -3.176411 1.337864 -4.965244 -1.839828 -0.137671 0.663862 -1.743334 -0.107513 -0.226284 0.162816 0.922302 -0.706346 -0.717053 0.002241 1.374009 -0.291279 0.210226 0.623433 1.323962 0.079375 -2.410711 -2.367823 2.061846 0.533314 0.582534 0.632844 2.155157 -1.233651 0.102172 0.145130 0.722923 -1.305928 2.587455 -0.516351 -1.170606 -0.996319 -0.247637 1.217919 -1.263802 0.309992 3.237355 -2.217744 -1.501601 -0.161825 0.478611 -0.918259 -1.878840 -0.669924 0.678562 -0.672176 -1.705252 -1.080837 -1.592587 -2.018956 -2.950468 -1.411646 -0.452395 -1.856706 2.865613 1.173835 2.672091 0.767030 2.443162 -0.043257 0.641769 0.510080 -1.544382 0.978680 -0.143600 1.048946 -1.138190 -1.168703 0.919543 -1.925721 2.414611 -0.351496 0.754109 0.001033 -1.810926 -1.399213 0.891150 1.889788 1.315587 1.867889 2.513408 -1.519411 -2.562398 0.146941 0.625722 -1.567670 -0.515243 0.556836 -0.847466 0.210759 1.088448 -0.958815 2.310930 0.058205 -0.853818 0.475504 0.362550 0.789549 -1.486723 -0.382915 -0.641487 -0.026379 -1.736182 -0.284729 -1.078417 -0.674081 -2.524792 -3.662915 2.360624 -3.968813 -2.515014 1.649545 1.213982 3.104083 -3.425076 -0.714328 -1.026481 4.100553 0.826997 0.247860 0.431870 -1.925472 -2.051967 1.259969 0.275217 -1.295297 -0.032315 1.241731 1.362244 0.675555 -0.530558 1.763869 -0.686424 1.918440 -1.403255 0.654881 -0.685322 -2.175079 0.867707 -0.200299 -0.850855 0.287156 1.905643 2.043001 0.895601 3.189582 1.948174 2.161117 1.635006 -0.701746 -0.871103 -0.947036 0.870654 -0.666072 -1.387053 0.153765 2.443421 0.571402 -0.144862 -2.603671 -4.416893 -4.250002 -3.407028 1.213721 -2.519486 -0.256689 0.132515 -0.380102 -2.512720 -1.161662 0.288349 -0.554658 4.716408 1.390346 0.096049 1.740813 1.668605 -2.139973 -0.048162 2.892830 2.375341 0.223105 0.662509 -3.900025 2.052782 -1.397557 0.448457 3.721850 -1.540066 1.706216 0.178349 1.874822 -1.718587 2.961236 0.551272 -3.641435 0.631252 1.296446 0.080562 2.230466 -1.239575 -PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::leftRotate(int, unsigned int) = -0.569178 -1.120498 1.454322 1.065645 0.066700 0.361725 0.841618 -0.059766 0.159310 0.689839 -0.197041 1.004157 -0.848522 -0.273953 -0.359912 0.169344 -0.462581 -0.750644 -0.010312 -0.183024 -0.130636 -0.410738 -0.192321 1.025812 0.780097 -0.234014 -0.551587 -0.723783 -1.768094 -0.766989 -0.342744 -0.076440 0.657240 -0.726151 0.372813 -1.502798 0.320090 1.311915 0.039085 -1.246469 0.640387 -0.312312 0.336671 -0.043159 -0.411820 0.163811 0.684860 0.037362 0.251876 0.315277 0.155463 0.003497 0.880290 1.603312 0.146636 0.840641 0.958908 -0.029184 0.060512 -0.280195 -0.020817 -0.692068 0.228687 -0.167674 -0.134803 -0.378243 -0.456388 -0.116307 -0.485465 0.166603 0.115620 -0.321162 -0.600215 -0.327429 -0.823082 -0.301349 -0.218322 0.594586 1.163354 -0.816052 1.114567 0.359453 0.193666 0.227622 0.440127 0.254945 -0.035504 0.220894 -0.195136 -0.104503 -0.933797 -0.161357 -0.324178 0.678341 -0.601609 -0.683405 1.036486 -0.718881 -1.288343 0.668185 -0.052457 -0.545674 -0.280857 -0.285235 0.143010 0.661791 -0.633746 -0.879898 -0.775940 0.503741 0.214919 -0.302475 0.264786 -0.350942 -0.199814 -0.248224 -0.885991 0.381434 0.306204 -0.474027 -0.815192 0.662191 -0.290727 0.832091 0.103153 0.641089 -0.065227 0.890870 0.766762 0.026006 -0.044736 -0.120558 -0.871601 -0.376433 0.114520 0.615174 -0.642196 -0.026795 -0.163082 0.270777 0.326605 0.426395 -0.242666 1.043960 0.384896 -0.625948 -0.463551 -0.714910 -0.602629 -0.624164 -0.026767 0.046163 -0.276816 0.245965 0.495447 -0.053780 -0.054142 1.262351 -0.290677 0.401480 0.338668 -0.676306 0.180037 -0.354360 0.475160 -0.472665 -0.652119 0.458325 0.742413 0.798077 0.018216 0.296009 0.378281 -0.434926 -0.442274 0.113412 0.044078 -0.177012 1.079355 0.711538 0.959837 -0.620276 -0.259685 0.040660 -0.468260 -0.000262 -0.031088 -0.886218 0.135824 0.172079 -0.399563 1.039355 0.081350 -0.356662 1.061537 -0.165381 0.163316 -0.677833 0.841524 -0.776021 -0.216325 -0.489494 -0.527621 -0.491457 -0.483620 -0.664257 -0.361402 1.187694 -0.447283 -0.967423 -0.012346 0.464071 0.182777 -1.402607 1.350805 -0.431844 0.826035 -0.023488 -0.143568 0.256450 0.944818 -0.208549 -0.280505 0.231665 -0.735241 0.584052 0.813334 0.234469 -0.080460 0.168047 0.574628 -0.228635 0.439569 -0.362092 0.323733 -0.096055 -0.588539 -0.172703 -0.073610 0.117690 0.372676 -0.152658 0.030874 0.270589 -0.084900 0.130346 0.971729 0.510473 -0.475145 0.128819 -0.316583 1.285264 -0.623491 -0.344114 -0.375804 0.681830 0.298483 0.333157 -1.269208 -0.682861 -0.963720 -0.969971 -0.044514 0.299349 0.168353 0.224377 -0.224078 -1.290471 -0.785461 0.253236 -0.024446 0.400646 0.731668 0.217078 1.119221 0.303447 0.116033 -0.251472 0.320071 0.195212 -0.043774 -0.428369 -0.314695 0.209272 -1.106929 0.368204 0.787520 -0.083997 0.617684 0.286774 0.472724 -1.079691 1.437603 0.407452 -0.879876 0.406895 0.848647 0.818828 -0.957407 -0.605524 -PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::rightRotate(int, unsigned int) = -0.569178 -1.120498 1.454322 1.065645 0.066700 0.361725 0.841618 -0.059766 0.159310 0.689839 -0.197041 1.004157 -0.848522 -0.273953 -0.359912 0.169344 -0.462581 -0.750644 -0.010312 -0.183024 -0.130636 -0.410738 -0.192321 1.025812 0.780097 -0.234014 -0.551587 -0.723783 -1.768094 -0.766989 -0.342744 -0.076440 0.657240 -0.726151 0.372813 -1.502798 0.320090 1.311915 0.039085 -1.246469 0.640387 -0.312312 0.336671 -0.043159 -0.411820 0.163811 0.684860 0.037362 0.251876 0.315277 0.155463 0.003497 0.880290 1.603312 0.146636 0.840641 0.958908 -0.029184 0.060512 -0.280195 -0.020817 -0.692068 0.228687 -0.167674 -0.134803 -0.378243 -0.456388 -0.116307 -0.485465 0.166603 0.115620 -0.321162 -0.600215 -0.327429 -0.823082 -0.301349 -0.218322 0.594586 1.163354 -0.816052 1.114567 0.359453 0.193666 0.227622 0.440127 0.254945 -0.035504 0.220894 -0.195136 -0.104503 -0.933797 -0.161357 -0.324178 0.678341 -0.601609 -0.683405 1.036486 -0.718881 -1.288343 0.668185 -0.052457 -0.545674 -0.280857 -0.285235 0.143010 0.661791 -0.633746 -0.879898 -0.775940 0.503741 0.214919 -0.302475 0.264786 -0.350942 -0.199814 -0.248224 -0.885991 0.381434 0.306204 -0.474027 -0.815192 0.662191 -0.290727 0.832091 0.103153 0.641089 -0.065227 0.890870 0.766762 0.026006 -0.044736 -0.120558 -0.871601 -0.376433 0.114520 0.615174 -0.642196 -0.026795 -0.163082 0.270777 0.326605 0.426395 -0.242666 1.043960 0.384896 -0.625948 -0.463551 -0.714910 -0.602629 -0.624164 -0.026767 0.046163 -0.276816 0.245965 0.495447 -0.053780 -0.054142 1.262351 -0.290677 0.401480 0.338668 -0.676306 0.180037 -0.354360 0.475160 -0.472665 -0.652119 0.458325 0.742413 0.798077 0.018216 0.296009 0.378281 -0.434926 -0.442274 0.113412 0.044078 -0.177012 1.079355 0.711538 0.959837 -0.620276 -0.259685 0.040660 -0.468260 -0.000262 -0.031088 -0.886218 0.135824 0.172079 -0.399563 1.039355 0.081350 -0.356662 1.061537 -0.165381 0.163316 -0.677833 0.841524 -0.776021 -0.216325 -0.489494 -0.527621 -0.491457 -0.483620 -0.664257 -0.361402 1.187694 -0.447283 -0.967423 -0.012346 0.464071 0.182777 -1.402607 1.350805 -0.431844 0.826035 -0.023488 -0.143568 0.256450 0.944818 -0.208549 -0.280505 0.231665 -0.735241 0.584052 0.813334 0.234469 -0.080460 0.168047 0.574628 -0.228635 0.439569 -0.362092 0.323733 -0.096055 -0.588539 -0.172703 -0.073610 0.117690 0.372676 -0.152658 0.030874 0.270589 -0.084900 0.130346 0.971729 0.510473 -0.475145 0.128819 -0.316583 1.285264 -0.623491 -0.344114 -0.375804 0.681830 0.298483 0.333157 -1.269208 -0.682861 -0.963720 -0.969971 -0.044514 0.299349 0.168353 0.224377 -0.224078 -1.290471 -0.785461 0.253236 -0.024446 0.400646 0.731668 0.217078 1.119221 0.303447 0.116033 -0.251472 0.320071 0.195212 -0.043774 -0.428369 -0.314695 0.209272 -1.106929 0.368204 0.787520 -0.083997 0.617684 0.286774 0.472724 -1.079691 1.437603 0.407452 -0.879876 0.406895 0.848647 0.818828 -0.957407 -0.605524 -PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -1.891718 -3.674114 6.721706 4.801075 -0.035112 1.625007 1.748683 -1.704027 1.068630 2.739268 -1.559823 3.492390 -3.446244 -0.227286 -0.201351 1.241612 -3.932234 -3.184797 -0.446398 -1.926214 -1.990507 -1.899531 -1.112022 3.774643 3.182869 0.773553 -2.559782 -0.425515 -5.070661 -5.238666 -1.676836 -0.460822 2.598692 0.315569 2.242462 -6.691532 3.041098 4.405411 -0.347325 -3.706032 1.796605 -2.001009 -0.147628 0.045328 -1.050428 1.797568 2.673258 0.387070 1.921727 1.322742 1.153411 -1.093322 2.135101 5.536164 0.425556 3.409044 3.504912 -2.012714 0.398989 -0.428668 0.453699 -2.874868 1.944792 0.629589 -1.413050 -2.310260 0.593273 -0.905121 -1.592448 2.238908 1.542695 -2.556932 -2.127026 -2.576841 -3.577907 -1.657268 0.746198 2.255118 5.305022 -2.590145 4.847187 1.799421 2.046151 0.199568 2.894140 -0.124534 4.071334 0.788659 -1.786740 -0.177442 -2.512448 -1.545165 -0.465456 4.344223 -1.968049 -0.823092 2.183030 -5.574149 -5.486486 2.190221 0.345074 -2.268785 -2.990612 0.488625 1.535458 1.248303 -0.759749 -3.627738 -2.072427 1.509796 -2.089832 -1.120989 -0.640115 -0.912594 -0.959703 0.959675 -4.597322 1.479853 1.785748 -1.649326 -2.394800 4.057975 0.004074 2.958132 0.298198 2.046086 -0.426005 2.604531 1.403148 1.458431 -0.460103 -0.922030 -4.338723 -0.898863 1.155429 -0.258220 -2.941094 -1.462927 0.104134 1.426826 -0.848706 2.336058 -1.573486 6.248813 3.118100 -2.240731 -3.470122 -3.197405 -2.416265 -3.367071 0.512396 -1.777572 -2.906271 -0.010189 2.677652 0.906272 0.487430 3.698339 -0.977711 2.237669 0.590904 -1.239963 1.584019 -2.052627 2.517047 -3.166156 -2.056673 2.258906 2.508104 2.311051 0.061513 -0.190280 1.021243 -2.654537 -2.823429 2.001066 0.597266 0.975877 4.197953 3.602964 8.764596 -3.277967 0.145984 0.911814 -1.039653 -0.830389 0.775961 -3.526961 1.472324 0.925558 -0.065742 5.669026 0.350164 -2.258125 2.126014 -0.015732 0.821712 -3.680578 2.629821 -2.248742 1.185630 -1.289370 -1.505156 -2.685265 -1.475738 -2.701919 -1.802880 5.428917 -3.745615 -5.017266 2.993161 -0.359081 2.807926 -6.844221 4.708540 -2.316117 3.351886 -1.809970 -1.755046 0.104884 0.742976 -1.515905 2.504266 1.341615 -2.150412 1.996488 3.221339 1.358891 1.685167 0.008251 2.682666 -0.473285 1.998730 -1.571588 2.546147 -0.217407 -1.110449 -1.810673 -0.866443 0.063026 1.619055 -0.092072 -0.009013 2.442815 -0.325799 0.725313 3.694224 1.955852 -1.899951 1.311729 -0.757973 3.762938 -2.882556 -2.672336 -0.241035 1.702932 0.460176 1.538672 -5.864399 -3.539742 -3.083074 -5.012781 -1.598856 1.320906 1.724512 1.135404 -0.842109 -4.423413 -2.817296 4.712459 0.288977 4.018414 2.429243 1.074501 3.887234 2.545594 0.677124 -1.427111 -0.954926 0.963572 -0.623563 -0.936443 -2.709860 2.421173 -3.581848 2.993031 3.879616 -2.190331 2.413842 0.163014 2.352335 -4.814305 5.064193 1.656551 -4.373853 1.733338 3.635833 3.372139 -3.152798 -2.856006 -PE-benchmarks/channel-assignment.cpp__maxBPM(int (*) [4]) = -0.128143 -3.282085 6.942827 4.806331 -1.099816 0.898211 0.926945 -1.227396 1.297537 -0.295898 -2.217053 3.445915 -3.178244 0.346310 0.124601 0.828793 -5.634683 -3.403299 -0.319745 -0.953968 -1.542566 -1.696433 -0.505807 3.953932 2.989624 2.696437 -2.573829 0.258578 -4.315227 -1.709099 -0.168094 -0.713945 2.587857 1.783867 2.927802 -6.546954 2.987102 3.258195 -0.137535 -4.476156 1.715725 -2.212983 -0.123367 -2.106857 -1.505854 1.527619 2.670039 3.604019 1.556745 0.966472 -1.656193 -1.064977 0.643162 4.941035 0.682586 2.402705 3.915755 -1.769913 0.090691 -1.638098 0.773565 -2.581139 1.354893 1.000022 -1.937077 -2.559662 0.523714 -2.246172 -1.690298 2.251039 2.788217 -0.910497 -2.616487 -2.285345 -2.971692 -0.544156 2.350157 3.753671 5.208746 -3.118802 3.819946 1.188400 2.543833 0.438659 1.975709 0.361306 3.322554 1.065603 -1.325054 -0.739481 -5.147743 -2.288363 -0.012897 0.457331 -1.426470 -2.528895 1.375467 -5.328118 -4.517478 1.245639 0.712137 -2.363853 -0.931838 0.966662 2.163570 2.081906 -0.147905 -2.409845 -0.453654 1.102640 -2.173641 -0.688200 -0.353005 0.936252 -1.153127 -1.113284 -5.054785 1.921071 1.865610 -0.953937 0.565609 3.419308 -1.853321 2.335848 -0.008377 0.959232 -0.369092 3.724118 2.207231 -0.128336 0.330928 -1.974221 -0.088041 1.041041 1.024434 2.118316 -2.906040 -1.299258 0.392542 1.453805 -0.943401 -0.056259 -1.084627 4.282722 0.896523 -2.872836 -4.008569 -3.693714 -3.685205 -3.206569 0.341378 -1.866096 -2.484062 2.008109 2.606388 2.118907 0.837148 4.017806 -1.916307 2.224892 0.627052 -0.506739 1.292070 0.243875 2.270339 -2.762655 -1.509418 2.611011 0.718027 1.996917 -0.047019 -0.496443 1.406599 -3.372585 -2.498306 2.293024 1.582641 1.922523 3.683143 3.151506 4.306279 -1.770683 -0.622904 1.300804 -0.676181 -1.630921 1.409824 -3.084816 1.748072 0.391422 0.709326 5.048060 0.280221 -2.342769 1.922108 0.723484 0.610958 -2.878832 1.376712 -1.390370 1.048180 -1.690111 0.423260 -2.465492 -1.127531 -3.257436 -2.383907 5.410954 -3.547704 -5.426043 2.240302 -1.020051 4.707059 -6.003718 2.933979 -2.243208 4.356860 0.135220 -1.306374 0.661229 -3.077715 -2.234413 2.082869 1.275083 -0.208304 0.365795 1.993378 1.809249 0.601933 0.428793 2.205482 -0.444063 2.891838 -1.061924 1.396930 -0.850810 -0.765414 -0.493047 -0.515620 -0.410899 1.306760 0.090256 1.652273 1.912872 2.354420 2.962408 2.184449 1.959621 -2.264423 0.234022 -0.959584 3.322842 -2.591525 -2.473431 -0.334422 2.444204 0.238618 1.411429 -5.338335 -5.225095 -3.940676 -5.640102 -1.486049 -0.917654 1.516383 0.382845 -0.867227 -3.534495 -2.452569 3.236488 0.510014 6.736720 2.714914 0.103568 3.720806 2.457749 -1.324473 -1.647120 1.484749 1.887457 -0.414792 0.465930 -4.567191 2.765368 -3.358699 1.907505 5.796701 -2.903808 2.100768 -2.457465 3.408979 -4.145600 5.203038 1.840905 -5.716953 0.653746 2.248187 2.467712 -0.567116 -3.190739 -PE-benchmarks/channel-assignment.cpp__main = 1.396874 -0.763595 3.375811 2.630413 -1.259055 -0.170378 0.351953 -1.104627 1.259457 0.026954 -0.737794 0.627480 -0.811628 0.820710 0.593250 2.050681 -3.267547 -0.639031 -0.110084 -1.000151 -0.682495 -0.245870 1.035141 -0.233633 1.685188 2.164958 -0.687192 -0.880946 0.630311 -0.994581 1.344517 -0.888475 1.059270 2.136563 0.637990 -4.033361 1.828175 0.242728 -0.880209 -1.625555 0.791806 -0.306357 0.140166 -1.490118 -0.235233 0.688196 0.604366 2.634694 1.143362 1.325791 -0.869809 -0.038751 1.545807 2.760224 -0.493923 0.462928 1.026967 -0.772527 -0.236597 -0.290890 0.725721 -0.103319 0.372772 0.457834 0.630691 -2.076118 -1.008196 -1.765770 -0.997885 1.109417 0.595093 0.273614 -2.003062 -0.724586 -0.213506 -0.165088 -4.904527 2.759808 2.175057 -2.204598 0.886675 0.480194 0.410738 0.007213 -0.088057 0.603412 0.715224 0.830931 -0.077088 0.303327 -0.504731 -2.153656 1.170843 -2.161606 -0.457843 -3.821621 0.626495 -0.843173 -1.188293 0.867586 1.422480 -0.423491 0.320022 -0.735650 0.559810 1.031368 -0.866072 -0.680147 0.350386 -0.692289 0.201610 -0.247981 -0.359619 0.630513 -0.582344 -0.145246 -2.365209 0.694211 -0.085453 -0.195287 0.968727 0.788202 0.319385 -0.303476 -0.340704 0.376669 -0.817804 2.529224 0.401626 1.207061 0.870625 0.972754 0.188766 1.977305 1.742555 0.875131 -0.058113 -0.388512 -0.943426 0.667183 -1.224950 -0.178937 0.667257 1.195172 1.366150 -0.764638 -1.841513 -0.986135 -1.136048 -1.712832 0.925544 -1.171053 0.147211 1.509672 1.153852 0.988577 1.502235 0.412784 -2.001126 0.317394 -0.857386 0.752734 1.155842 1.896604 1.032405 -0.676749 -0.046541 0.570771 0.220690 0.452413 0.328631 -0.434813 0.985679 -1.450435 0.039727 1.117018 1.085937 -0.905424 0.669832 1.005756 1.362175 0.099761 -0.510956 1.360022 -0.416078 -0.607658 1.040590 -1.464781 1.327515 -0.114147 0.505375 0.697513 -0.028289 -0.266200 0.603400 -0.394285 -0.263730 0.001051 -0.537020 -0.501358 -0.669039 -0.751752 1.719947 -0.986635 -0.505410 -0.427959 -0.090053 2.003016 -1.619607 0.094324 1.453609 -1.781011 0.665733 -1.023240 3.256484 -1.066723 0.167098 -0.437823 -1.034358 0.063440 -1.182152 -1.513814 -0.180374 0.666449 0.572253 -0.695576 1.562274 1.065444 -0.520581 0.040385 1.574790 -0.611541 1.960855 -0.014218 1.339006 -0.913290 0.509141 -0.203253 0.000231 -0.613020 -0.873174 0.470037 2.323546 -0.324508 1.590962 1.483662 -0.018044 1.676046 -1.338687 1.140027 -0.326589 1.092225 -0.982577 -0.494662 0.655261 0.836952 -0.722669 0.961814 -1.882416 -1.995796 -2.326182 0.066848 -1.120988 -0.008445 0.912331 -0.997006 -0.362842 -0.876337 -1.164163 0.767357 -0.404011 -1.429764 1.210024 -0.205706 1.293646 1.336102 -0.525687 -0.667121 -0.026822 0.573501 0.802867 0.264407 -1.823292 1.663014 -1.356463 -0.417387 2.681481 -1.019914 0.206066 -0.911071 3.021983 -0.988962 1.827087 0.319775 -1.348088 0.816822 2.340923 0.927711 0.714167 -1.025613 -PE-benchmarks/bfs.cpp__Graph::Graph(int) = 0.692269 -1.244844 3.506913 1.851015 -1.308601 0.339172 1.204345 -1.000455 0.625089 -0.291419 -0.729784 0.919786 -1.462076 -0.256313 0.201414 0.078171 -3.328404 -1.166654 -0.409280 -0.927012 -1.015144 -0.829841 0.313475 1.377666 1.733907 1.777576 -0.539013 -0.520772 -1.380910 -0.523509 0.556903 -0.162742 0.750329 2.097356 2.118593 -2.749548 1.353011 0.789002 -0.207828 -1.777241 0.813692 -0.039710 -0.170455 -0.626550 -0.090767 0.635207 1.035652 2.570358 0.928941 0.575710 -0.710720 -1.245153 0.257827 2.651771 0.619888 0.882439 1.619015 -1.141407 0.721717 0.167642 0.286350 -1.252460 -0.083773 0.343150 0.003560 -0.568120 0.492492 -1.876895 -0.383207 1.675851 0.998848 -1.242425 -1.276438 -1.775827 -1.817374 -0.083316 -2.556553 2.866678 2.433365 -2.020001 1.533652 0.323412 1.150349 -0.363046 0.926332 0.044550 1.782717 0.425304 -0.366870 0.304874 -2.082897 -2.181838 -0.036989 -0.618934 -0.503165 -1.462410 1.142455 -2.878669 -1.924225 1.024968 0.706550 -1.055731 -0.230868 0.475206 0.665278 0.471511 -0.660959 -1.183525 -0.665994 0.512592 -1.161013 0.658925 0.342505 1.231534 -0.870247 -0.224100 -1.673493 1.046842 0.656021 -0.200751 -0.029279 1.855185 -0.501380 1.078375 0.149899 0.277860 -0.312222 1.906961 0.804129 0.154971 0.387447 -0.087152 -0.454914 0.857210 0.734928 1.376718 -0.101848 -0.175162 0.277153 0.974010 -1.101004 0.278208 -0.679677 2.125538 0.072799 -1.553088 -2.375685 -0.849851 -1.659726 -1.771094 0.190379 -0.680335 -1.101418 1.155460 1.127030 2.254503 -0.143511 0.791525 -1.108597 0.197453 -0.112662 -0.393390 0.022062 0.311064 0.934918 -1.319310 -0.289164 0.211673 -0.283915 1.153400 0.328663 -0.545137 0.250203 -1.722290 -1.367305 0.729866 1.194909 0.136012 1.001646 2.047473 0.576955 -1.256664 -0.921278 0.998024 -0.375877 -1.227732 0.824636 -1.284944 1.124807 -0.000843 0.462754 1.461247 0.068774 0.090388 0.967294 -0.276093 0.320793 -0.863317 -0.545120 -0.569158 0.244058 -0.811912 0.667614 -1.228900 -0.541454 -1.087454 -1.364153 2.362905 -1.654503 -1.768477 2.148945 -1.058409 2.239339 -1.778525 2.001621 -0.619333 1.306742 0.138954 -0.284774 -0.098495 -0.737060 -0.733417 1.071771 -0.209418 -0.074937 -0.111710 1.446705 0.636286 0.449977 -0.001416 1.515626 -1.128552 1.149202 -0.483981 1.046440 -0.667333 -0.519872 -0.363624 -0.018678 -0.306711 0.177432 0.321065 1.442703 0.152585 1.283789 1.283389 0.667835 0.749309 -1.060993 0.140150 -0.062005 1.322201 -1.371668 -1.344858 0.670460 1.104817 -0.142978 -0.055397 -2.349364 -2.328127 -2.443136 -1.827235 -1.355630 -1.268259 0.962776 -0.090536 -0.608656 -0.936145 -1.080413 0.719789 0.342558 0.112475 1.239070 -0.142830 1.910125 1.640015 -0.398561 0.062099 0.744766 1.300507 -0.151953 0.001329 -2.239289 0.882888 -2.521375 0.643797 2.652918 -0.676938 1.369578 -0.762324 2.598861 -2.596534 1.509466 0.739954 -2.348113 0.239592 2.309937 0.634620 0.719970 -1.392323 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/bfs.cpp__Graph::addEdge(int, int) = -0.040695 -0.593699 1.518205 1.170907 -0.271185 0.118268 0.544401 -0.539771 0.430181 0.244448 -0.209725 0.378121 -0.937224 0.284385 -0.244581 0.671877 -1.167493 -0.594314 -0.232043 -0.558655 -0.293649 -0.369974 0.530621 0.288131 0.897490 0.391129 -0.490690 -0.529480 -0.723258 -0.656981 0.338666 -0.270666 0.652568 0.450223 0.002731 -1.755716 0.748866 0.691998 -0.387412 -0.661246 0.683302 -0.511360 0.081767 -0.467874 -0.343879 0.191721 0.241554 0.391660 0.690384 0.380290 0.226929 0.000190 0.598171 1.453785 -0.487318 0.543740 0.431815 -0.249956 -0.142742 -0.076897 0.128606 -0.122144 0.373931 0.200597 -0.072064 -0.837344 -0.326812 -0.639836 -0.629056 0.581339 -0.054737 -0.006413 -0.827702 -0.271024 -0.604065 -0.267233 -0.987066 0.866181 1.138476 -0.914293 0.763919 0.131499 -0.003871 -0.127761 0.171843 0.216407 0.361708 0.198465 -0.042227 -0.076234 -0.279141 -0.210208 0.197889 0.157507 -0.339944 -1.170496 0.591792 -0.687040 -1.021786 0.276542 0.392445 -0.475075 -0.218855 -0.012923 -0.004983 0.453663 -0.518379 -0.784469 -0.147816 0.051222 0.227632 -0.192742 -0.135936 -0.066180 -0.308675 -0.319337 -1.120524 0.280086 -0.111175 -0.406443 -0.173224 0.683861 -0.025493 0.225457 0.094092 0.461354 -0.373437 1.067117 0.043188 0.547335 0.138839 0.258941 -0.509550 -0.030170 0.696526 0.631671 -0.449652 -0.109888 -0.471676 0.183767 -0.497941 0.039516 0.202790 0.838507 0.696808 -0.624702 -0.700170 -0.319810 -0.426525 -1.117805 0.219484 -0.537565 -0.116384 0.463017 0.610640 0.302705 0.581246 1.072674 -0.499340 0.278215 -0.002940 -0.345477 0.683827 0.162326 0.626933 -0.512554 -0.510765 0.382639 0.200108 0.472655 -0.029931 0.232460 0.180759 -0.796290 -0.191590 0.301696 0.336750 -0.317952 0.694477 0.679295 0.997288 -0.445045 0.164621 0.610461 -0.285221 -0.065738 0.270498 -0.914586 0.509722 0.142436 -0.288577 0.664177 0.050164 -0.412463 0.524705 -0.366684 0.199536 -0.657942 0.186227 -0.459446 -0.084529 -0.679476 0.092496 -0.234606 -0.479345 -0.253821 -0.183588 1.085804 -0.855971 -0.333315 0.655581 0.010636 0.344514 -1.115589 1.597416 -0.564505 0.581888 -0.331480 -0.391134 0.119041 0.147150 -0.550368 0.064566 0.287904 -0.183912 0.200694 0.990569 0.483388 0.020039 -0.051013 0.907381 -0.089822 0.837916 -0.251652 0.756977 -0.123836 -0.340008 0.018427 -0.172459 -0.238599 -0.155892 0.228655 1.009676 0.425858 0.400263 0.595058 0.457462 1.015466 -0.454631 0.489644 -0.194490 0.775186 -0.456758 -0.369525 0.245277 0.529713 -0.185919 0.536523 -1.151218 -1.281772 -0.770389 -0.682978 -0.084464 -0.062076 0.423652 -0.170971 -0.115363 -0.904177 -0.691320 0.482970 -0.327862 0.340631 0.536916 0.144032 0.715509 0.756286 -0.232702 -0.129618 0.044560 0.553746 0.249305 -0.053377 -0.725798 0.664166 -0.875476 0.153657 1.053979 -0.508557 0.342408 -0.092180 0.986720 -0.818712 1.195952 0.203134 -0.626444 0.933959 1.025104 0.582968 0.151969 -0.487951 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/bfs.cpp__Graph::BFS(int) = -0.420584 -3.707240 10.496792 6.682466 -2.821371 1.118956 2.463139 -3.345803 2.333231 -0.874373 -2.387055 2.410577 -5.582112 0.664235 -1.188786 1.225125 -9.279510 -4.431899 -1.622286 -3.284071 -3.192140 -3.119536 1.011361 4.528439 4.718218 5.866619 -3.594815 -0.545273 -4.582000 -3.828752 2.174130 -1.064775 3.786199 5.656956 2.984199 -11.829502 5.162165 4.148092 -1.286121 -4.008613 3.343521 -3.045579 -0.515600 -2.914850 -2.078717 2.084680 2.565097 5.634003 3.783688 1.011707 -1.060280 -1.839162 1.404773 8.222215 -0.985677 3.536284 4.503334 -2.080219 0.064561 -0.786190 0.263753 -2.757357 1.705495 1.927116 -2.361351 -3.701758 1.475329 -4.655481 -3.075830 5.116024 2.311826 -1.521993 -4.250791 -3.437793 -5.338551 -1.220363 -0.955784 6.086096 7.907588 -5.457617 5.239242 1.531694 2.595392 -0.081300 1.828288 0.413732 5.289174 1.013960 -1.550679 -0.820282 -6.824286 -3.321925 -0.255671 0.654326 -2.174223 -5.901323 2.636310 -9.787646 -7.066941 1.341732 1.429494 -3.623100 -2.008712 1.205893 2.577921 1.098414 -0.986810 -4.486237 -1.149388 1.716006 -3.090843 0.467658 -0.296332 1.319809 -1.570641 -1.152914 -8.023382 3.190875 0.736600 -1.609602 0.025086 5.660224 -0.844650 2.728931 1.324614 2.496550 -1.702536 6.289344 1.648753 0.620131 0.455895 -0.041636 -0.623963 0.144254 2.645868 3.578162 -3.844700 -3.399298 -0.647517 1.817862 -3.719998 -0.524565 -1.728817 5.843331 2.867309 -4.885052 -5.721264 -3.607592 -4.964352 -7.429496 0.774950 -3.006107 -3.873108 2.299769 3.666144 4.263549 2.275829 5.356719 -3.218332 2.682019 0.210266 -1.195775 2.155386 0.962220 4.102233 -4.032243 -2.804009 2.826120 -0.187783 3.489700 -0.511530 -0.868010 1.131239 -5.564686 -3.836119 3.257747 1.931690 1.476799 4.470077 5.798062 6.754187 -4.692814 0.614835 3.402393 -1.687798 -2.067032 3.100416 -4.949226 3.473041 1.065412 0.013818 6.605664 0.355023 -2.342194 2.924554 -0.023140 1.270103 -5.101290 0.561808 -2.445579 0.735730 -4.085128 0.848825 -3.628238 -2.289567 -3.489814 -4.066868 7.199944 -6.270707 -6.028093 5.835811 -0.739861 6.151137 -8.225431 5.252325 -3.194032 5.261238 -0.996122 -2.316510 0.501705 -3.090421 -2.917854 2.880592 0.730923 -1.222591 1.601531 4.773421 2.888690 2.237235 0.267187 5.025277 -0.836851 4.740850 -2.294215 3.109786 -1.326383 -2.645830 -0.375941 -0.907113 -1.507996 0.843194 1.301192 4.421672 3.824609 3.503281 4.561520 3.835118 4.345288 -2.732515 0.588533 -1.278463 4.019539 -4.037455 -3.916233 0.944980 3.296560 -1.108931 2.182044 -8.347938 -8.969968 -6.826098 -7.724033 -2.382106 -2.180014 2.751814 0.470755 -1.089769 -5.611718 -3.649190 4.801141 -0.067706 6.493711 3.892768 0.395602 5.692385 5.879088 -2.415685 -1.808121 2.865912 3.818548 -0.245389 0.684326 -7.947709 5.128720 -4.492617 2.898339 8.309452 -4.656705 3.254668 -2.612463 7.251930 -6.889216 8.012195 2.040252 -7.051105 3.077245 4.403423 3.545205 1.727866 -3.869782 -PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::empty() const = 0.561737 -0.230479 2.170651 1.499835 -0.667728 0.111606 -0.279966 -1.253211 0.826666 0.195043 -0.461616 0.396280 -0.279332 0.314427 -0.374355 1.094804 -1.698329 -0.282454 -0.540054 -1.191691 -0.492003 -0.070366 0.282382 -0.018139 0.988380 0.623167 -0.558914 0.190069 -0.029275 -1.562699 0.086527 -0.265597 0.260825 -0.134201 0.539219 -1.470729 1.488398 0.756467 -0.580378 -0.838615 0.579592 -0.328594 -0.210847 -0.337442 -0.342197 0.401946 -0.070287 0.630694 0.774602 0.708943 0.105461 0.543818 0.919043 1.673025 -0.317211 0.604217 0.515326 -0.333364 -0.165100 0.307094 0.199123 0.154543 -0.008757 -0.118452 0.457894 -1.429294 -0.416940 -0.350325 -0.113186 0.753435 -0.335084 -0.968261 -0.799719 -0.791736 -0.965123 -0.229520 -2.405164 1.255350 0.986854 -1.190669 0.269059 0.139241 -0.100642 0.277038 0.288345 0.099504 0.943702 0.438986 0.180665 0.181669 0.457115 -0.762893 0.805341 -0.777348 -0.766602 -1.957606 0.741914 -1.937315 -1.023597 0.542984 1.047301 -0.702469 0.052037 -0.484114 0.135680 0.137178 -0.340214 -0.425080 0.494750 0.273434 0.345926 -0.160337 -0.206754 -0.149444 0.120158 0.615115 -1.450197 0.854794 0.038347 0.303512 0.016616 0.777316 0.559244 -0.487281 -0.181993 0.569895 -0.549320 1.287317 -0.439105 1.093364 -0.662617 1.197005 -0.307273 1.162258 0.751663 -1.182898 -0.320621 0.257963 -0.478424 0.359866 -0.938676 0.532971 -0.735390 0.842282 0.551838 -0.325457 -0.908467 -0.376812 -1.319271 -1.180067 0.252904 -0.425624 -1.195604 0.490167 0.683505 0.971778 0.821072 0.131884 -0.655064 -0.466179 -0.247987 0.038188 0.932424 -0.302017 0.660822 -0.560590 -0.248014 0.537041 0.092300 0.393640 0.197910 0.142349 0.429124 -0.852305 0.389578 0.847143 0.614279 -0.145301 0.822286 1.072380 0.895452 -0.009648 -0.086104 0.743211 -0.638401 -0.165453 0.200849 -0.767571 0.216885 0.412853 0.853753 1.008681 0.034046 0.340756 0.117470 -0.263849 0.247974 -0.354957 -0.159242 -0.423445 -0.154562 -0.165164 0.443649 -0.578197 -0.136683 -0.482604 -0.919582 1.136933 -1.676616 -0.198083 1.522995 -0.681578 0.418422 -0.512694 1.281479 -0.663843 0.851531 0.092862 -0.035458 0.023638 -0.582995 -1.222945 0.441206 0.312230 -0.061141 -0.060220 0.839373 0.585550 -0.009957 -0.377695 1.016270 -1.023005 1.402648 -0.435160 1.100941 -0.445086 -0.098223 -0.236250 -0.036150 -0.875293 -0.664399 0.511450 0.690298 -0.335857 0.744898 0.239489 0.325139 1.170952 -0.670319 1.144180 -0.330026 -0.027219 -0.692754 -0.608983 0.822983 0.442334 -0.092328 0.165634 -1.399525 -0.816615 -2.349389 -0.134067 -0.078306 -0.472507 0.371675 -0.551188 -0.491872 -0.459012 -1.122799 1.643409 -0.168874 -0.673462 0.681450 0.153043 0.678666 0.966243 0.038182 0.215740 -0.541630 0.126031 0.560783 -0.269676 -0.935006 1.379909 -0.555148 -0.261758 1.516731 -0.568439 0.624950 0.354831 0.200620 -0.806136 0.641497 0.017666 -0.571104 0.614832 1.576342 0.386374 0.046904 -0.645690 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::front() = 0.115659 -0.270540 1.105295 0.825007 -0.346818 0.004028 0.255304 -0.475074 0.469485 -0.268917 -0.167607 0.080582 -0.626249 0.259422 -0.164886 0.413864 -1.019958 -0.411313 -0.235939 -0.470922 -0.114503 -0.226934 0.528342 0.052559 0.585990 0.568679 -0.322123 -0.315066 -0.438023 -0.046098 0.634707 -0.224612 0.460916 0.647491 -0.030230 -1.273391 0.560335 0.370972 -0.351471 -0.496098 0.523919 -0.473351 0.072898 -0.594065 -0.175538 0.119801 -0.017192 0.472459 0.526479 0.158887 -0.111012 0.111712 0.143757 0.856578 -0.540422 0.235032 0.217457 -0.147339 -0.224256 -0.057368 0.084963 0.123878 0.244063 0.180793 -0.158535 -0.759587 -0.236792 -0.654042 -0.558161 0.464007 -0.035934 0.138813 -0.595014 -0.157917 -0.423964 -0.117784 -0.673593 0.780667 0.724483 -0.683256 0.360693 -0.063772 -0.044656 -0.091078 0.034143 0.235868 0.221320 0.141994 0.093113 -0.110759 -0.504110 -0.226141 0.228859 -0.294360 -0.182333 -0.938723 0.384416 -0.520294 -0.577293 0.020668 0.430772 -0.309579 -0.120763 0.053956 -0.008421 0.400151 -0.297292 -0.424320 0.130315 0.055683 0.211428 -0.064557 -0.114018 0.066387 -0.281464 -0.549196 -0.827722 0.298630 -0.180772 -0.124445 0.101322 0.450516 -0.254449 -0.144236 0.043667 0.276962 -0.406249 0.909930 -0.137050 0.276587 0.243298 0.145609 -0.008730 0.083251 0.506066 0.878353 -0.299475 -0.108279 -0.441173 0.059601 -0.531715 -0.331452 0.179741 0.264593 0.374002 -0.544563 -0.431870 -0.149533 -0.343096 -0.935261 0.090055 -0.383597 0.052117 0.522839 0.439583 0.508843 0.590503 0.871123 -0.500850 0.106028 -0.044076 -0.227794 0.596818 0.471644 0.459917 -0.299470 -0.310073 0.225310 -0.187700 0.279793 -0.007030 0.201751 0.093529 -0.715405 -0.075507 0.281034 0.342730 -0.136727 0.414091 0.526407 0.019605 -0.322801 0.131200 0.549170 -0.246008 -0.082924 0.266680 -0.571037 0.370157 0.139836 -0.135978 0.369032 -0.003310 -0.228022 0.195925 -0.202344 0.167639 -0.372606 -0.097443 -0.270258 -0.101936 -0.590098 0.212462 -0.168814 -0.393914 -0.210410 -0.262553 0.716089 -0.442143 -0.258976 0.542955 -0.074339 0.390262 -0.698535 0.752845 -0.433497 0.497200 -0.126357 -0.116234 0.065265 -0.245115 -0.595764 -0.034427 0.177299 -0.014882 0.047035 0.694186 0.460403 -0.094453 -0.088036 0.677957 -0.128659 0.763757 -0.208646 0.532071 -0.196429 -0.219235 0.265601 -0.101996 -0.282589 -0.266022 0.242825 1.029586 0.290183 0.670056 0.649666 0.184880 0.822048 -0.328417 0.328075 -0.121890 0.380596 -0.179937 -0.221032 0.294729 0.448651 -0.169744 0.311833 -0.754034 -1.179306 -0.544792 -0.590290 0.110442 -0.360743 0.207467 -0.178318 -0.051009 -0.605585 -0.446249 0.000992 -0.264274 0.585307 0.299595 0.015966 0.421608 0.630412 -0.530370 -0.061966 0.326071 0.517715 0.225993 0.030264 -0.792718 0.663354 -0.489429 -0.095096 0.980403 -0.445458 0.210420 -0.265636 0.907254 -0.467936 0.875709 0.106357 -0.468825 0.712161 0.555549 0.375701 0.569527 -0.324045 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::pop_front() = 0.062695 -0.317456 1.373396 0.989770 -0.468545 0.014761 0.169626 -0.600430 0.567474 -0.228239 -0.221996 0.177888 -0.644204 0.313676 -0.161684 0.584178 -1.303583 -0.444111 -0.243563 -0.583567 -0.219589 -0.258612 0.562689 0.067778 0.670510 0.723698 -0.428116 -0.241645 -0.321382 -0.399454 0.639794 -0.329748 0.548525 0.618913 0.014913 -1.782506 0.779030 0.411642 -0.431347 -0.610889 0.581823 -0.491506 0.088055 -0.648593 -0.390455 0.165086 0.035311 0.495633 0.632505 0.244000 -0.109592 0.141058 0.318094 1.156798 -0.556395 0.297249 0.284636 -0.260895 -0.316074 -0.096225 0.137581 0.095632 0.312838 0.237465 -0.119494 -0.926130 -0.247141 -0.704927 -0.670597 0.564233 -0.090135 0.068452 -0.668579 -0.224472 -0.547409 -0.181453 -0.684563 0.918732 0.924566 -0.786625 0.446167 -0.057650 -0.044288 -0.022866 0.073235 0.272624 0.389869 0.213069 0.040709 -0.075056 -0.268990 -0.315939 0.345794 -0.239410 -0.200116 -1.190708 0.432945 -0.778533 -0.688036 0.129645 0.536068 -0.333558 -0.247596 -0.154913 0.118152 0.452219 -0.391441 -0.519557 0.128229 0.028028 0.188017 -0.094735 -0.144113 0.059046 -0.293732 -0.414145 -1.011673 0.324794 -0.168973 -0.143538 0.115153 0.543770 -0.156589 -0.157912 0.018352 0.389427 -0.471644 1.089162 -0.174739 0.419773 0.101804 0.304316 0.061557 0.089210 0.573569 0.710336 -0.334826 -0.269185 -0.520740 0.109359 -0.657386 -0.311811 0.101132 0.403777 0.612975 -0.495324 -0.567732 -0.208972 -0.523575 -1.216406 0.113584 -0.497172 -0.089234 0.722789 0.546531 0.482030 0.716941 0.880726 -0.593719 0.151939 -0.128139 -0.239169 0.749059 0.419995 0.568468 -0.371397 -0.327256 0.316351 -0.139522 0.400435 0.016404 0.112396 0.153655 -0.783688 -0.110078 0.450555 0.472588 -0.083829 0.431781 0.590654 0.429452 -0.314450 0.113172 0.648573 -0.261777 -0.103009 0.295864 -0.669150 0.383221 0.189538 -0.100594 0.495237 0.000651 -0.296538 0.204006 -0.196382 0.187709 -0.450526 -0.071216 -0.314787 -0.008365 -0.595750 0.161132 -0.283697 -0.393336 -0.315979 -0.365982 0.882780 -0.808298 -0.346491 0.763525 -0.175175 0.565336 -0.868729 0.934007 -0.541800 0.700864 -0.213030 -0.175405 0.076050 -0.382206 -0.690241 0.080015 0.233639 0.023611 0.003784 0.807451 0.558098 -0.044329 -0.134223 0.814572 -0.155025 0.924307 -0.205143 0.664843 -0.247819 -0.192038 0.215299 -0.118202 -0.372436 -0.300586 0.337024 1.009030 0.294860 0.694202 0.730735 0.282343 0.939075 -0.432878 0.443314 -0.175348 0.461373 -0.262310 -0.297640 0.347236 0.640444 -0.204117 0.374260 -0.936008 -1.308774 -0.964159 -0.633852 -0.025077 -0.239833 0.278523 -0.250818 -0.047763 -0.639313 -0.500883 0.390173 -0.282037 0.671753 0.403262 0.049979 0.534722 0.760075 -0.506336 -0.181292 0.221641 0.485458 0.266487 0.090925 -0.965925 0.806426 -0.606573 -0.071056 1.131286 -0.552713 0.210611 -0.206942 0.948744 -0.561115 0.997738 0.153647 -0.530901 0.808169 0.674978 0.406934 0.557670 -0.417020 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/bfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/bfs.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/bfs.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::~list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/bfs.cpp__main = 0.293892 -0.519233 1.627977 0.811799 -1.010813 -0.300703 -0.000734 -0.013288 0.607123 -2.237008 -0.831261 0.333774 -0.752366 0.469809 -0.708527 -0.088904 -2.576688 -1.072169 0.215938 0.106921 -0.031846 -0.394846 0.809784 0.533381 0.546499 2.093301 -0.579041 -0.058422 -0.521957 1.347073 1.807777 -0.871908 0.746238 2.091032 0.115892 -2.644557 0.489928 -0.366629 -0.415105 -0.860364 0.534368 -0.902075 0.188893 -2.402484 -0.861796 -0.064580 0.605851 1.776472 0.523466 -0.318566 -1.835913 -0.383613 -0.668497 1.302699 -0.661169 -0.160795 0.735158 -0.327231 -0.189781 -0.830889 0.420625 -0.243379 0.358697 0.914637 -0.750832 -0.871214 -0.148146 -1.940632 -0.790418 0.851854 0.424151 1.863620 -0.867703 0.355575 -1.342283 0.084913 0.858048 1.729733 1.560746 -1.139288 0.645603 -0.173106 1.014763 0.071057 -0.241265 0.844674 0.300879 0.450157 -0.319364 -0.303770 -2.071571 -0.236255 -0.005108 -1.214440 0.538925 -1.757919 0.101755 -2.092735 -0.458366 -0.251292 0.359572 -0.005078 0.578223 0.175523 0.692073 0.835316 -0.472039 -0.330296 0.602969 -0.591517 -0.317962 0.312526 0.513822 1.110501 -0.430780 -1.502525 -1.357670 0.094069 -0.252879 -0.396655 1.519038 0.584176 -0.932680 0.013994 -0.016235 -0.015972 -0.559034 1.672741 0.341804 -0.548775 0.391645 -0.407256 1.429038 -0.105714 0.669023 2.767564 -0.847627 -0.882777 -0.304628 0.142814 -0.767002 -2.304523 0.370595 -0.334000 -0.455495 -1.263445 -1.025524 -0.789740 -0.890786 -1.762844 -0.220576 -0.780176 -0.074608 1.966132 0.739298 1.128386 1.106825 1.510340 -0.750638 0.763843 -0.272925 -0.052337 0.627316 1.075327 0.695060 -0.296216 -0.125268 0.512908 -1.066169 0.702952 0.110060 -0.656655 0.329621 -1.428176 -0.629154 0.767005 1.233537 0.395128 0.240039 0.306527 -2.315616 -0.833346 -0.030064 0.974957 0.251206 -0.590674 0.862770 -0.640921 1.178304 -0.106097 -0.220802 -0.176443 0.108369 -0.881729 0.184470 0.190760 0.218280 -0.393142 -0.914805 -0.015783 -0.031162 -1.164232 1.070283 -0.514490 -0.481336 -0.643107 -0.910755 1.075386 -1.461726 -0.684921 0.529057 0.313896 2.156900 -1.285500 -0.535556 -0.775715 2.141592 0.547328 -0.093517 0.291314 -1.903152 -0.718975 -0.209738 0.339747 0.345963 -0.329956 0.086727 1.046582 0.154896 0.355281 0.969862 0.291244 1.012976 0.257267 -0.316216 -0.422315 -0.806321 0.895805 -0.093743 -0.228336 0.050436 0.967432 1.830206 0.626257 2.093762 2.444828 0.306492 0.963748 -0.755248 -1.020528 -0.517877 1.074293 -0.271912 -0.408153 -0.206519 1.312610 -0.550504 0.373167 -1.019107 -3.140508 -2.034519 -1.281363 -0.379806 -1.558867 0.019068 -0.303474 0.428842 -0.860354 0.116422 -0.754206 -0.325629 2.279989 0.706894 -0.412064 0.774596 0.842702 -1.780249 -1.127629 1.874948 1.522608 0.094038 1.228990 -2.751487 0.839751 -1.149199 -0.104273 2.232558 -1.314499 -0.345885 -0.661530 2.168472 -0.480471 1.836824 0.712233 -1.921341 0.505340 0.025015 0.084553 2.396525 -0.726096 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::~_List_base() = -0.087369 -0.264129 0.720739 0.506486 -0.290167 0.036215 0.083844 -0.255226 0.415269 -0.233830 -0.209404 0.050405 -0.487764 0.177861 -0.095168 0.250215 -0.831142 -0.358684 -0.028582 -0.205048 -0.110101 -0.310905 0.314693 0.105864 0.283834 0.563179 -0.220680 -0.026608 -0.228924 -0.097634 0.471586 -0.287258 0.333465 0.573848 0.028127 -1.078061 0.400389 0.149323 -0.226089 -0.410346 0.256229 -0.397379 0.165537 -0.518978 -0.238330 0.117931 0.126173 0.390881 0.379684 0.035850 -0.153474 -0.124188 0.056916 0.632815 -0.368864 0.167170 0.180146 -0.142071 -0.168368 -0.121495 0.101134 -0.008261 0.252680 0.336852 -0.261200 -0.418790 -0.110754 -0.515956 -0.493519 0.394754 -0.095246 0.267724 -0.473960 -0.092140 -0.378067 -0.117199 -0.384639 0.574605 0.701951 -0.473078 0.370855 0.021808 0.175709 -0.002613 0.102660 0.187016 0.322859 0.112391 -0.175199 -0.001329 -0.264462 -0.173574 0.125227 -0.169984 0.026560 -0.587543 0.149171 -0.586544 -0.421731 0.062918 0.170647 -0.047975 -0.134680 0.009155 0.202864 0.313520 -0.277746 -0.418561 0.095927 -0.034018 0.013195 -0.009261 0.013785 0.120365 -0.220824 -0.390731 -0.608164 0.002722 -0.095144 -0.253650 0.199433 0.389611 -0.192768 0.024384 0.055520 0.125725 -0.209208 0.763493 -0.001464 0.143866 0.049620 0.034866 0.023241 0.025417 0.297478 0.600311 -0.211494 -0.173392 -0.194740 0.027889 -0.412791 -0.420277 0.060825 0.143442 0.323129 -0.352620 -0.342412 -0.176404 -0.337070 -0.836024 0.083067 -0.359683 0.030767 0.514163 0.374811 0.352575 0.448160 0.673392 -0.424270 0.151133 -0.141249 -0.128790 0.414559 0.387903 0.377714 -0.217599 -0.200888 0.218595 -0.084103 0.215323 0.069448 -0.128691 0.053393 -0.505298 -0.102949 0.357612 0.359800 0.042829 0.275641 0.254570 0.023045 -0.271317 0.136173 0.397451 0.020487 -0.062367 0.180222 -0.437818 0.397627 0.072140 -0.083058 0.115814 -0.018409 -0.237739 0.088075 -0.106472 0.175417 -0.359628 -0.126404 -0.191448 0.029704 -0.466279 0.217347 -0.182508 -0.312097 -0.152986 -0.140193 0.523684 -0.447271 -0.196245 0.422573 -0.021583 0.566644 -0.507986 0.382044 -0.357781 0.634301 -0.133943 -0.106347 0.052853 -0.309691 -0.201574 -0.037956 0.173569 0.076973 -0.007109 0.350011 0.370840 0.041845 0.087062 0.497542 0.055681 0.401098 -0.045788 0.255275 -0.102987 -0.091023 0.269290 -0.141800 -0.078010 -0.028663 0.207704 0.723156 0.377955 0.411256 0.647129 0.180922 0.446142 -0.258530 0.050552 -0.131369 0.406846 -0.184407 -0.148695 0.035183 0.433478 -0.191301 0.185466 -0.552823 -0.960520 -0.592095 -0.383444 -0.160744 -0.200560 0.123164 -0.049805 0.130453 -0.384156 -0.167104 0.213301 -0.218814 0.627233 0.141572 0.017712 0.364052 0.512752 -0.386154 -0.313600 0.300565 0.314106 0.006739 0.250304 -0.711882 0.426152 -0.483658 0.050647 0.650625 -0.415496 -0.025836 -0.111003 0.683758 -0.337488 0.672710 0.231753 -0.375306 0.496418 0.314506 0.291343 0.508180 -0.285164 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_clear() = 0.314976 -1.009866 6.433739 4.116286 -1.253148 0.271435 1.041284 -3.510137 3.024757 0.433138 -0.920414 0.587916 -2.426897 0.962857 -1.679285 2.579918 -4.976360 -2.014612 -1.485951 -3.542625 -1.241114 -1.304323 2.228830 -0.108017 3.193892 1.227423 -1.990359 -0.843196 -1.923645 -3.765936 2.034238 -1.104926 1.775061 -0.157011 0.079573 -6.791729 4.145084 2.433561 -1.858920 -2.421935 2.583533 -1.649935 -0.533060 -1.134346 -1.041396 0.721601 -0.102083 2.074088 3.038259 1.493527 0.953822 1.087061 1.261492 5.780107 -2.701263 1.729684 0.880862 -0.991259 -1.289119 1.050630 0.319305 0.348818 0.946050 0.907841 0.193191 -3.963085 -0.006159 -1.836945 -2.512739 2.921795 -0.451378 -1.581270 -2.116792 -0.995612 -2.719645 -0.638209 -2.166035 3.229126 3.906469 -2.666926 1.932277 -0.157750 -0.278434 -0.166782 0.125700 0.470517 2.443087 0.732048 0.212946 -1.383551 -1.294568 -0.885249 1.203575 -0.190032 -1.249385 -4.885794 2.494618 -4.100733 -3.336105 0.466022 2.657732 -2.096548 -1.625435 -0.412254 0.730415 1.061355 -1.049300 -2.344143 -0.013980 0.890691 -0.000794 -0.247109 -0.283401 -1.156134 -0.831451 -0.347030 -4.204649 1.609215 -0.752539 -0.198545 -1.227669 2.496780 -0.372527 -0.885345 0.370512 2.551016 -1.746206 3.113164 -1.204738 2.635302 0.087616 2.052988 -1.213363 0.438192 2.283996 0.937787 -1.047997 -0.409674 -2.297992 0.806878 -3.211403 0.232583 -1.258053 2.276180 2.507711 -2.379823 -2.421540 -0.469985 -1.632208 -4.415803 0.483030 -1.941482 -2.360296 1.052395 2.333944 2.298256 2.750461 3.297481 -2.514851 0.772758 -0.184500 -1.047663 2.999113 -0.491757 2.455632 -1.798825 -1.581927 0.858558 0.063531 1.611133 -0.502944 0.563943 0.488226 -3.653748 -0.473770 1.394362 1.395350 -0.398708 1.813360 3.193563 3.566004 -2.645048 0.612056 3.009676 -1.663199 -0.529747 1.107361 -3.164335 0.978942 1.267084 0.730094 3.336296 0.234584 -1.008703 0.848828 -0.876103 0.774369 -2.093351 -0.153912 -1.573448 -0.167840 -1.649550 -0.032642 -1.638907 -1.214702 -1.536503 -2.257686 3.576314 -3.520138 -2.727509 4.505534 -1.302983 1.625421 -4.199273 4.213232 -2.195356 2.095280 -0.829292 0.073499 -0.195986 -0.344909 -3.558750 1.305240 0.624582 -0.549263 1.717203 4.347034 2.158835 0.614173 -1.217734 3.704517 -1.721599 3.901543 -1.536507 3.231686 -1.169975 -1.776064 -0.103557 -0.514857 -1.965143 -1.554979 1.587506 2.860488 1.142195 1.878076 2.366469 1.704726 4.210730 -1.534021 3.099168 -0.631990 1.234322 -1.149829 -1.544315 2.335937 1.661172 -1.080880 1.898718 -4.532640 -4.707131 -4.162576 -3.746429 0.565267 -1.625898 1.316948 -1.232980 -0.603907 -3.283312 -2.658835 2.742919 -0.500830 2.225471 2.171799 0.474530 1.952805 3.469713 -1.733781 0.358506 -0.201362 1.599780 0.951215 -1.471935 -3.205776 3.766495 -2.305541 0.104507 4.595943 -2.127376 1.443145 -0.652523 2.099068 -3.094579 3.725389 0.571198 -1.525327 3.255283 2.679807 2.800808 1.311466 -1.761242 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/bfs.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/bfs.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.040231 -0.673241 2.411878 1.656984 -0.130947 0.130664 0.847906 -1.118135 1.218191 0.431324 -0.341670 0.477467 -1.292556 0.517644 -0.884499 1.209028 -1.651670 -1.075115 -0.324330 -1.115676 -0.416815 -0.611430 1.081269 -0.123855 1.385662 0.252143 -0.826041 -0.824674 -1.373211 -1.354513 0.762171 -0.566979 0.794704 -0.220951 -0.293152 -2.511586 1.423483 1.075661 -0.774116 -1.146039 1.193895 -0.903496 0.019615 -0.526401 -0.033054 0.241917 0.200628 0.796348 1.234719 0.734814 0.584654 0.417532 0.521841 2.360729 -1.289431 0.820792 0.475098 -0.197233 -0.561247 0.306350 0.202544 0.025059 0.567042 0.454038 -0.171050 -1.483541 -0.362975 -0.797955 -1.152704 0.951678 -0.201667 -0.183472 -1.095299 -0.117303 -0.908448 -0.307962 -1.200583 1.090675 1.762417 -1.130942 1.065204 0.006657 0.094688 -0.200433 0.114908 0.292958 0.591023 0.311870 -0.103948 -0.702987 -0.769451 0.019243 0.259612 0.150659 -0.399706 -1.911259 1.043508 -1.014219 -1.503466 0.197548 0.814216 -0.658187 -0.558193 0.154997 0.219415 0.755931 -0.732669 -1.216125 -0.156657 0.143622 0.210981 -0.300790 0.022876 -0.765356 -0.522036 -0.511781 -1.675964 0.360194 -0.256758 -0.525890 -0.652677 0.998962 -0.274289 -0.028449 0.128320 0.933054 -0.626466 1.287799 -0.206812 1.006424 0.329576 0.558273 -1.075247 0.158624 1.056732 0.951537 -0.689054 0.193271 -0.998322 0.218037 -1.040240 -0.085196 -0.242765 0.995592 1.111355 -1.134159 -0.987455 -0.257133 -0.166961 -1.622261 0.386686 -0.833978 -0.449746 0.084541 1.014696 0.576020 1.170242 1.851683 -0.991026 0.467130 0.056166 -0.415625 1.317927 0.002471 1.074599 -0.762640 -0.824975 0.412030 0.372489 0.414807 -0.201887 0.397666 0.245603 -1.555046 -0.117267 0.327016 0.526075 -0.477988 0.937528 0.998143 1.266052 -1.124860 0.243649 1.132171 -0.555729 -0.058891 0.325070 -1.492634 0.645752 0.416382 0.103868 1.171970 0.172111 -0.763604 0.631119 -0.435816 0.360253 -0.895938 0.136128 -0.783975 -0.392828 -0.759966 0.129662 -0.416994 -0.665139 -0.473124 -0.540791 1.528026 -0.914172 -0.906760 1.246382 -0.335863 0.415045 -1.890205 2.103200 -1.007255 0.637587 -0.407510 0.016955 -0.003268 0.426291 -1.214640 0.202319 0.444411 -0.270371 0.893714 1.824248 0.855106 0.192670 -0.245565 1.466851 -0.430111 1.323200 -0.421655 1.273118 -0.396751 -0.821072 0.193945 -0.276495 -0.483044 -0.483341 0.452848 1.504067 0.644754 0.537465 1.102754 0.680434 1.812839 -0.735075 1.184431 -0.288126 0.973560 -0.445630 -0.494545 0.591419 0.530522 -0.371400 0.982844 -1.801526 -2.051780 -0.950890 -1.633008 0.424977 -0.494261 0.490670 -0.495802 -0.067393 -1.653130 -1.028233 0.651749 -0.389401 0.951589 0.901773 0.262429 0.851002 1.255381 -0.785541 0.000811 -0.094160 0.689669 0.322646 -0.606009 -0.974487 1.151003 -1.159005 0.114675 1.605384 -0.780056 0.345050 -0.305676 1.066724 -1.117683 1.803431 0.351752 -0.561999 1.566130 1.135331 1.601629 0.316544 -0.721784 -PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/bfs.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/bfs.cpp__std::__new_allocator >::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/bfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/bfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.202365 -1.180928 5.990142 3.793016 -1.015916 0.342388 1.570648 -3.244632 2.726558 -1.066534 -0.535351 0.887787 -3.000123 1.260208 -3.155669 1.820767 -4.744092 -2.569097 -1.627844 -3.444710 -0.975710 -1.141066 2.550426 0.244701 3.141624 0.626198 -2.302483 -1.636441 -3.900704 -1.509665 2.846586 -0.997544 1.951272 -0.798350 -0.840724 -7.468689 3.428346 2.711129 -2.090462 -2.408468 3.267882 -2.916935 -0.296814 -2.221403 -1.405964 -0.288662 -0.497136 1.508020 2.988855 0.632164 0.546687 2.132478 0.121778 6.793230 -3.662334 1.869436 1.043228 -0.330417 -1.679719 0.920907 0.154166 0.766589 1.286811 0.638857 -0.753382 -4.108424 -0.452832 -2.407868 -2.593852 2.545053 -0.419050 -0.537321 -1.953724 -0.074939 -3.899067 -0.934220 -0.071678 3.059829 3.711732 -3.140415 1.975696 -0.871643 -0.272435 -0.015169 0.537151 0.953417 1.932647 0.603109 0.556999 -1.936249 -2.993024 1.038043 0.759907 -0.107309 -1.236202 -5.686986 2.735216 -4.241737 -3.654043 -0.024299 2.367557 -2.248366 -1.398326 -0.192875 0.293035 1.454338 -1.805239 -2.672919 -0.187247 1.285944 0.632221 -0.508945 0.342811 -1.565210 -0.674811 -2.488035 -4.195059 1.815055 -0.756709 -0.291417 -1.533061 2.915721 -1.429687 -0.943336 0.359901 2.513826 -2.306181 3.242361 -1.745202 1.715834 0.107164 1.373692 -1.355747 -0.718332 2.193719 3.553845 -2.061363 -0.160195 -2.717770 0.564341 -2.996096 -0.934170 -0.617154 1.833922 1.340762 -2.924506 -1.988551 -0.480125 -0.774849 -4.799780 -0.082747 -1.747470 -2.190211 1.382901 2.468819 2.663474 3.062440 4.527769 -1.525297 1.252213 0.429100 -1.702530 3.656227 -0.816559 2.587251 -1.862846 -2.359320 0.932299 -0.771446 1.956670 -0.812634 1.626284 0.128629 -4.021937 -0.746862 0.272180 1.834947 -0.434319 2.475985 3.229370 1.387257 -3.947053 1.126253 2.866408 -2.156690 0.002695 0.597007 -3.121209 0.773604 1.717430 -0.617775 3.458226 0.304867 -2.014246 0.998752 -0.688484 1.364932 -2.343692 -0.219174 -1.733053 -0.963292 -2.386952 -0.345151 -1.059687 -1.632113 -2.071826 -3.216078 3.765126 -4.011535 -2.960985 3.892359 0.113329 1.883334 -5.263243 3.718053 -2.423103 3.052849 -0.413824 0.542273 0.044711 0.488846 -4.115115 1.416311 0.839122 -1.502560 2.062398 4.615328 2.398208 1.028884 -1.288962 3.872757 -1.367717 3.807691 -1.848737 3.403812 -1.140960 -3.220712 0.924091 -0.665401 -1.714917 -1.438170 2.330398 3.826155 1.643165 2.850200 2.812381 2.495524 4.801540 -1.575214 2.357902 -1.078125 1.361901 -0.717587 -1.405219 1.925985 1.887542 -0.516929 1.921640 -4.599717 -6.087290 -4.005154 -4.702077 2.430345 -2.523468 0.535633 -1.118393 -0.361199 -4.658100 -2.559469 0.796406 -1.296888 3.900828 2.495538 0.746848 2.041109 3.551650 -2.887533 0.620971 1.161544 2.531550 1.028828 -1.326142 -3.835851 3.681401 -2.522894 0.251899 4.793741 -1.953809 1.587893 -0.279471 2.260183 -2.669626 4.663229 0.623456 -2.111423 3.797487 2.665933 2.920506 2.326849 -1.722926 -PE-benchmarks/bfs.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/bfs.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/bfs.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::_M_erase(std::_List_iterator) = 0.210160 -0.741346 4.864314 2.887631 -1.127909 0.145839 0.988323 -2.631296 2.423133 -0.382103 -0.767302 0.126479 -2.054161 0.777839 -2.125474 1.612241 -3.992825 -1.667865 -1.184804 -2.759213 -0.795226 -1.074375 1.972813 -0.143287 2.384626 0.923450 -1.410195 -0.826437 -1.732054 -1.966631 2.190712 -0.921747 1.260930 -0.257114 -0.320193 -5.426404 2.995449 1.729135 -1.593629 -1.735244 2.138609 -1.525173 -0.437644 -1.280872 -1.074366 0.088693 -0.237665 1.971360 2.317441 0.809739 0.520285 0.920778 0.608589 5.123577 -2.501993 1.264641 0.610087 -0.432936 -1.025283 0.978013 0.201603 0.471648 0.595356 0.819817 0.113494 -2.966871 -0.024602 -1.774284 -1.936740 2.317764 -0.586956 -0.681670 -1.546401 -0.381436 -2.553618 -0.446667 -1.677936 2.614900 3.058343 -2.297432 1.449488 -0.292158 -0.185705 -0.089868 -0.159629 0.583669 1.625884 0.515498 0.301142 -1.262011 -1.419097 0.068404 0.868266 -0.724217 -0.858000 -4.625642 2.123733 -3.481618 -2.518838 0.111339 2.025879 -1.668152 -0.566595 -0.220962 0.349268 0.782284 -1.162953 -1.839811 0.071997 0.725168 0.193313 0.030925 0.231763 -0.708092 -0.434129 -0.956551 -3.191782 1.207220 -0.832494 -0.218319 -0.702113 2.003145 -0.482786 -0.761313 0.439913 1.949066 -1.453692 2.554391 -1.034377 1.758066 -0.139314 1.738578 -0.648411 0.144569 1.861565 1.484124 -0.855152 -0.135245 -1.767023 0.579969 -2.510544 -0.440162 -0.878101 1.139173 1.220150 -2.165146 -1.657421 -0.286882 -1.140650 -3.652428 0.106531 -1.501482 -2.044336 1.082339 1.826578 2.260175 2.274666 2.850113 -1.845394 0.634363 -0.116902 -1.036887 2.262768 -0.443162 1.919435 -1.260854 -1.399998 0.434566 -0.380250 1.442587 -0.519041 0.493595 0.139082 -3.058686 -0.142968 0.760767 1.386389 -0.517169 1.391939 2.520962 1.412419 -2.536217 0.678197 2.469752 -1.380261 -0.349025 0.853713 -2.532585 0.834415 1.085436 0.217231 2.169841 0.231172 -0.763208 0.692945 -0.900574 0.712463 -1.663292 -0.534889 -1.170825 -0.567718 -1.625378 0.374618 -1.134304 -1.011603 -1.226672 -2.113921 2.615708 -3.307067 -1.767227 3.444836 -0.323839 1.332284 -3.090728 3.088929 -1.697235 2.130445 -0.248192 0.255022 -0.111072 -0.153222 -2.774779 0.814255 0.394178 -0.557001 1.482380 3.378551 1.823633 0.630965 -0.849740 3.156129 -1.422853 2.945164 -1.308732 2.272239 -0.893035 -2.139460 0.362169 -0.466185 -1.540710 -1.273930 1.770004 2.829917 1.053333 1.877801 2.292384 1.384933 3.437559 -1.063489 2.022989 -0.632540 0.971048 -0.770893 -1.065078 1.746577 1.390391 -0.968883 1.452392 -3.522951 -4.304135 -3.688638 -2.872915 0.896489 -2.152503 0.753692 -1.034147 -0.242274 -2.853303 -2.028662 1.549902 -0.740545 1.769660 1.775129 0.390509 1.475510 2.849581 -1.783634 0.431470 0.576397 1.778762 0.749365 -0.956518 -2.830152 2.917905 -1.953058 -0.009589 3.721848 -1.665419 1.026892 -0.258803 1.609302 -2.335972 3.067351 0.549697 -1.315059 2.689375 2.082538 2.127230 1.911301 -1.296449 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_dec_size(unsigned long) = -0.035929 -0.602064 1.512318 1.155093 -0.278732 0.123184 0.428100 -0.428809 0.505894 0.432339 -0.136452 0.483661 -0.695819 0.115670 0.160781 0.736162 -1.066174 -0.456526 -0.124712 -0.498637 -0.289613 -0.287627 0.252338 0.262485 0.793489 0.427541 -0.421523 -0.398254 -0.412326 -0.948502 0.099600 -0.253667 0.603273 0.178795 0.271668 -1.907541 0.801900 0.690575 -0.321097 -0.892165 0.498609 -0.252440 0.235976 -0.300490 -0.329115 0.353434 0.389788 0.416058 0.507216 0.545036 0.007781 0.012376 0.784723 1.360772 -0.136389 0.494561 0.565099 -0.333542 -0.152192 -0.168831 0.203473 -0.259637 0.314654 -0.006707 0.049287 -0.780600 -0.357210 -0.438156 -0.610559 0.384208 0.083584 -0.254838 -0.786716 -0.440799 -0.608081 -0.302744 -1.161714 0.826819 1.044687 -0.898602 0.714412 0.265111 0.081380 0.140960 0.223954 0.193176 0.334488 0.268754 -0.094832 0.179541 -0.120542 -0.597917 0.274409 -0.111623 -0.372520 -1.398446 0.499283 -0.612689 -0.888279 0.504835 0.408817 -0.365888 -0.402700 -0.400567 0.155624 0.600443 -0.517001 -0.636503 -0.219564 0.026707 0.153033 -0.199124 -0.038358 -0.002232 -0.244692 -0.101050 -1.040904 0.334873 0.154284 -0.256939 -0.088983 0.637589 0.000533 0.290191 -0.026458 0.398865 -0.356121 1.023338 0.242818 0.572280 0.009290 0.214263 -0.439744 0.057423 0.497469 0.312627 -0.217997 -0.214510 -0.403173 0.269342 -0.317332 0.302626 0.176883 0.794091 0.839789 -0.296668 -0.644218 -0.486123 -0.610008 -0.906811 0.327482 -0.387259 -0.021753 0.618628 0.547646 0.130144 0.441624 0.646300 -0.562667 0.080792 -0.192924 -0.197119 0.525085 0.286294 0.540945 -0.415387 -0.309240 0.360697 0.387039 0.543113 0.092504 0.045261 0.339917 -0.503613 -0.115508 0.246449 0.354560 -0.290801 0.583283 0.637536 1.149845 -0.137314 -0.187771 0.414911 -0.272503 -0.060627 0.207436 -0.773912 0.386637 0.111180 -0.117276 0.689162 -0.022296 -0.280583 0.589804 -0.264268 0.039117 -0.427548 0.186303 -0.467246 -0.079597 -0.421513 0.120205 -0.500363 -0.312977 -0.458517 -0.210447 1.065117 -0.680486 -0.315368 0.550267 -0.287279 0.345846 -0.927497 1.595363 -0.455373 0.468533 -0.314734 -0.362710 0.110806 -0.030093 -0.467041 -0.071818 0.300614 -0.117172 -0.016148 0.821896 0.401231 -0.166881 -0.056906 0.729820 -0.190713 0.790611 -0.245255 0.699449 -0.342205 0.003137 -0.085822 -0.069213 -0.094444 -0.118785 0.096129 0.606176 0.101294 0.270900 0.398036 0.400651 0.723782 -0.489151 0.545931 -0.068176 0.747629 -0.490070 -0.267910 0.128783 0.625391 -0.079506 0.474431 -1.043845 -0.824804 -0.837813 -0.490524 -0.315336 0.319330 0.310888 -0.209452 -0.193849 -0.658548 -0.672794 0.783188 -0.168249 -0.093242 0.518124 0.094633 0.777780 0.627523 -0.070293 -0.238443 -0.073990 0.139321 0.222155 -0.124792 -0.529086 0.608601 -0.801282 0.074972 0.963716 -0.441978 0.320780 -0.202546 0.874033 -0.740438 1.028402 0.170843 -0.583532 0.588468 1.115641 0.731922 -0.276518 -0.476572 -PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -11.698052 -30.066689 37.174305 28.105619 -1.889986 16.675416 11.845566 -2.547871 -12.863659 17.277777 -9.974531 29.917050 -15.074303 -8.624068 -3.106233 -2.939913 -16.473760 -15.188367 -0.203759 -6.612827 -7.601637 -6.419402 -24.602088 43.160348 15.903877 -4.325377 -10.765796 -6.194114 -36.947777 -17.102442 -26.323897 5.212550 14.460342 -1.455322 24.439108 -27.359224 9.317858 32.953947 4.770905 -21.972635 6.291016 -6.160315 -1.875445 10.597039 -22.007633 10.435370 20.341594 -3.047932 0.196797 7.807089 9.485227 -8.392089 25.267570 33.999383 24.124703 25.709923 23.138001 -12.560498 18.654144 -8.726220 1.597222 -24.144431 6.775702 -8.813841 -0.051450 -5.328736 -4.531307 4.205226 4.493955 2.744375 15.530104 -19.152666 -10.524376 -15.720569 -26.730023 -13.749276 -0.430067 9.416947 25.186775 -15.222479 33.232658 18.381839 13.731584 1.124336 25.288987 0.015479 19.934765 4.995842 -6.235186 16.140722 -11.969563 -2.738284 -1.968386 18.564677 -24.718833 -15.887637 12.681395 -37.133551 -35.540433 24.042092 -3.701460 -22.763227 4.469743 -0.853336 1.864873 3.780059 -12.059283 -19.542901 -13.449609 17.478827 -9.447000 -8.473226 -1.784527 2.186933 8.275705 6.880572 -19.485360 17.437610 22.471482 -5.203749 -6.219700 28.977504 10.801044 28.170398 0.816678 5.718118 0.124574 15.058473 17.710464 0.576354 -23.784318 -12.266160 -23.931596 1.074555 0.611855 -21.908217 -19.000995 -13.974334 13.544755 16.027726 14.771283 31.926678 0.390432 40.358404 8.827860 -4.568761 -17.973474 -29.536099 -24.815595 -8.775194 -3.075916 -0.694688 -28.277427 4.254402 12.695856 3.393497 -7.300839 -0.245108 16.889698 7.553652 4.257553 -9.462086 -1.771757 -22.947414 9.249140 -16.787431 -11.823907 18.121044 18.156958 27.874587 3.492524 2.804879 6.044383 0.306161 -11.685488 5.154175 8.369628 10.654853 36.517488 26.885377 48.054570 -0.101085 -8.073584 -7.331741 -10.264865 -4.151224 -0.400470 -16.899932 2.890101 5.758573 -16.517048 37.219698 -1.598092 -0.827964 23.251715 -1.343703 5.086623 -25.362851 21.397670 -11.297235 8.273796 -7.785305 -8.614120 -19.046497 -4.627123 -24.600020 -20.891619 34.635211 -39.516876 -18.895151 4.940826 2.888282 9.205343 -28.592312 30.309220 -8.410468 24.506440 -1.299338 -19.947891 2.634286 7.233739 -3.078283 17.589145 7.092851 -22.251384 5.791447 7.959080 2.869664 4.233297 3.406866 12.207098 -6.397708 6.425909 -14.729507 10.555889 1.054928 -3.491389 -12.826475 -2.891505 0.668480 17.169826 0.614710 -8.840455 4.796867 -4.229780 -13.048055 25.195825 -1.063689 -8.578243 -5.648444 -8.287377 20.327721 -24.603724 -18.627050 -10.867759 10.175472 13.673478 -3.886818 -36.660884 -6.106313 -36.705340 -13.009113 -9.165769 8.291466 7.937485 15.783891 -9.967785 -25.555025 -24.010255 37.434458 -1.219405 0.535708 20.465193 6.054694 31.077064 8.024007 20.487826 -2.066042 -6.796410 6.933717 -2.207111 1.910171 -12.481528 9.339608 -25.258600 26.494721 19.866943 -8.229409 24.151999 13.501965 9.171728 -33.022813 25.834567 9.159798 -37.241084 -2.469314 29.993693 1.446477 -33.285810 -17.227709 -PE-benchmarks/boolean-parenthesization-problem.cpp__main = 0.604204 -0.724472 2.346834 1.567937 -0.879039 -0.006965 0.223779 -0.565408 0.535892 -0.844363 -0.743792 0.760840 -0.870753 0.443999 -0.796287 0.498407 -2.238977 -0.693012 -0.284006 -0.513293 -0.273292 -0.229462 0.624254 0.620987 1.192252 1.813036 -0.641216 -0.512529 -0.788427 -0.002826 0.831395 -0.373233 0.727696 1.211008 0.329766 -2.169998 0.802506 0.714712 -0.497797 -1.249330 0.950805 -0.647966 -0.095410 -1.191403 -0.476183 0.118093 0.351046 1.504476 0.582735 0.340721 -0.961244 0.150774 0.723459 1.917142 -0.249171 0.468638 1.050363 -0.270731 -0.022254 -0.433534 0.326650 -0.166993 0.153825 0.167743 -0.005657 -1.304281 -0.509630 -1.195821 -0.454327 0.777592 0.100252 0.398070 -1.055567 -0.490000 -1.157708 0.032249 -1.307499 1.832347 1.450234 -1.452327 0.699842 0.049914 0.215798 -0.014734 -0.031323 0.504599 0.225629 0.526616 0.221994 -0.205781 -1.167797 -0.427286 0.391933 -1.112531 -0.526120 -2.422282 0.827115 -2.120850 -1.111995 0.186289 0.764950 -0.807830 0.835634 0.008720 0.057454 0.726410 -0.505676 -0.456173 0.421871 -0.018465 0.269705 -0.074529 0.010950 0.662069 -0.203860 -0.475090 -1.560785 0.846097 -0.035688 -0.118499 0.784999 0.810711 0.098923 0.132611 -0.075605 0.441152 -0.485576 1.624263 0.245859 0.240461 0.139862 0.561858 0.882737 0.784572 0.888881 0.957057 -1.044649 -0.203735 -0.410174 0.321597 -0.505840 -0.746889 -0.129075 0.496288 0.111806 -1.083962 -1.086129 -0.861185 -1.219468 -1.525650 -0.115188 -0.509618 -0.610615 1.098746 0.756446 1.033006 0.825936 0.933216 -0.790006 -0.083727 0.156161 -0.163594 0.666525 0.706082 0.677964 -0.619810 -0.504959 0.516255 -0.331142 0.632567 -0.057278 0.283584 0.335459 -1.148370 0.041026 0.849688 1.013314 -0.093168 0.968717 1.065683 -0.388465 -0.329224 -0.248745 0.762351 -0.581388 -0.453334 0.525100 -1.076273 0.863084 0.133615 0.352564 0.846806 0.096784 -0.105052 0.707810 -0.199443 0.133158 -0.492575 -0.175048 -0.483780 -0.504529 -0.865026 0.807284 -0.418841 -0.376302 -0.782681 -0.917785 1.491285 -1.803648 -0.259511 0.848366 -0.054251 0.916974 -1.128226 1.051084 -0.743834 1.322829 0.482155 -0.331855 0.253227 -1.219674 -1.173160 -0.099824 0.383223 -0.054511 -0.073299 0.736094 0.795280 -0.180863 -0.021467 1.088672 -0.510479 1.419497 -0.354798 0.540590 -0.379241 -0.639892 0.228428 -0.030264 -0.549402 -0.370838 0.585326 1.678066 0.090027 1.551411 1.267306 0.372226 1.364040 -0.796531 0.317960 -0.483861 0.823194 -0.676728 -0.672217 0.262938 0.954550 -0.168202 0.566796 -1.567583 -2.234268 -2.094545 -0.894637 -0.086786 -1.367630 0.407168 -0.465891 -0.298674 -1.069398 -1.050430 0.142142 -0.281845 0.543213 0.957144 -0.097598 0.997823 0.904773 -0.770872 -0.043847 0.702690 1.123955 0.454484 0.238295 -1.699635 1.045562 -0.838990 -0.172223 2.216515 -0.933741 0.583383 -0.290179 1.335792 -0.982352 1.659945 0.375936 -1.645502 0.642207 1.070515 0.442552 0.882031 -0.850972 -PE-benchmarks/coin-change.cpp__count(int*, int, int) = -2.538449 -8.018322 11.263523 8.412429 0.372142 3.507749 4.373507 -0.787812 -0.125743 5.304446 -2.859865 7.783106 -5.999589 -1.575099 0.535670 1.162546 -5.795823 -5.928136 0.508995 -1.085050 -2.297988 -3.414280 -3.841536 9.603060 5.494382 0.640911 -3.980106 -1.802480 -10.288546 -6.880566 -5.207672 0.087427 4.719764 0.465703 6.050205 -8.600541 3.894166 8.352502 0.927816 -7.835753 2.439158 -2.298112 0.282653 0.808191 -2.631864 4.137491 6.600841 2.202928 1.781995 2.939988 0.999297 -3.093221 5.019035 7.962449 4.079348 6.358268 6.705939 -3.299811 3.291832 -2.430518 0.941863 -6.772398 2.673287 -0.037286 -2.101876 -2.093562 -0.250294 -0.380730 -1.716027 2.538944 4.804619 -3.780585 -4.857796 -4.046753 -6.184601 -2.455953 0.881616 3.918873 8.916539 -4.323525 9.407237 4.635264 5.004051 -0.172362 5.418947 -0.335410 5.397838 1.456410 -3.182424 1.252289 -6.898661 -3.459998 -1.603815 4.798371 -4.410655 -2.907334 3.071894 -8.602059 -9.892243 4.871290 -0.754253 -4.839569 -2.126698 1.550903 2.816264 3.233372 -1.586319 -6.119669 -3.782485 3.183113 -3.969582 -2.102051 0.014724 -0.064135 -0.565746 0.780481 -6.985043 2.912276 5.203361 -3.030524 -2.003250 7.158396 -0.201932 7.811354 0.493855 1.886094 0.492006 4.346474 5.922469 0.885593 -1.443147 -4.340253 -6.640082 0.371694 1.048768 -1.258429 -4.787200 -2.299275 1.957015 3.684280 1.803507 5.654092 -0.821605 10.653236 3.630109 -3.487832 -6.273245 -7.534822 -5.328701 -2.808731 1.049855 -1.636782 -4.597414 0.634720 4.095452 0.361384 -0.860817 4.256705 -0.164590 3.241588 1.291467 -1.576808 0.488096 -2.896933 3.424540 -4.901984 -3.335453 4.732048 5.407326 5.436907 0.173584 -0.303305 2.331624 -2.454314 -4.578104 2.000822 1.487488 2.448258 8.553039 6.140196 12.018962 -2.173082 -2.123907 -0.133525 -1.389764 -1.784423 0.974408 -6.184437 3.169160 0.605437 -1.269326 9.720214 -0.109987 -2.830124 6.555298 0.149120 1.046049 -6.523443 4.976355 -3.890993 1.946460 -2.405471 -1.616794 -4.996920 -2.094167 -5.963627 -3.238628 9.974336 -5.405523 -8.054840 2.061470 -1.357399 4.478896 -10.293543 8.294955 -2.868427 4.811480 -1.081037 -3.847058 0.705986 0.660302 -1.000363 2.581247 2.280103 -3.859439 2.595311 3.674147 1.393033 0.850111 1.573928 3.427409 -0.413990 2.376169 -2.780760 2.595375 -0.749115 -0.468683 -2.763220 -0.889157 1.350800 4.389262 -1.416575 -0.300421 3.028940 -0.678587 0.517720 5.697959 1.213859 -3.161529 -0.144516 -1.377661 7.219041 -6.041261 -4.439693 -2.759013 2.518213 1.699236 1.911967 -10.134985 -4.722447 -5.213447 -7.983386 -3.465655 1.689726 3.054708 2.962501 -2.164307 -7.437316 -5.694820 7.869333 0.968899 4.408859 5.024704 0.905474 8.021876 3.132912 2.244991 -2.003922 -0.805897 1.677272 -1.383726 -0.890900 -3.761315 2.583831 -7.330954 6.356457 6.773791 -3.634134 4.923602 -1.542317 4.767718 -9.128400 8.866148 3.319546 -9.523693 0.463764 6.210501 4.627115 -7.661527 -5.306414 -PE-benchmarks/coin-change.cpp__main = 0.196017 -0.682108 1.738974 1.201989 -0.326553 -0.015487 0.582064 -0.365506 0.475612 -0.291810 -0.430944 0.584033 -0.866783 0.363121 -0.651719 0.585109 -1.403229 -0.795519 -0.133215 -0.364488 -0.173167 -0.269039 0.662679 0.268081 0.985766 0.743974 -0.571454 -0.673213 -0.953810 -0.283351 0.624738 -0.340160 0.652826 0.438330 -0.047117 -1.877882 0.667935 0.668126 -0.427674 -0.999904 0.822221 -0.546646 -0.033249 -0.830838 -0.274177 0.123328 0.365083 0.894343 0.508279 0.444988 -0.333098 0.149372 0.390495 1.620857 -0.434441 0.445937 0.765807 -0.097588 -0.153178 -0.230035 0.282379 -0.151012 0.251782 0.232778 -0.064623 -0.905377 -0.458095 -0.913561 -0.598704 0.539475 0.061894 0.342001 -0.823872 -0.129209 -0.800107 -0.044901 -0.752089 1.106278 1.237678 -1.092263 0.758272 0.023779 0.238640 -0.097838 -0.091121 0.392524 -0.012800 0.376632 0.084411 -0.353894 -0.902704 -0.160003 0.119068 -0.390399 -0.326633 -1.671784 0.765351 -0.941725 -0.912105 0.158955 0.473135 -0.529754 0.214112 0.117299 0.010332 0.764423 -0.538026 -0.558388 -0.022629 -0.060836 0.286925 -0.144202 0.109792 0.221233 -0.337664 -0.607011 -1.235974 0.420613 -0.024389 -0.368149 0.220954 0.593086 -0.234384 0.223993 -0.018079 0.370207 -0.417509 1.200006 0.262132 0.303330 0.315281 0.221482 -0.125020 0.196352 0.795714 1.209789 -0.720724 -0.004015 -0.448388 0.224667 -0.363489 -0.482086 0.076238 0.468376 0.400683 -0.888554 -0.874525 -0.595258 -0.449364 -1.074084 0.067379 -0.559415 -0.120761 0.753009 0.650278 0.524568 0.663153 1.361569 -0.686354 0.285244 0.099679 -0.288277 0.541908 0.356410 0.574950 -0.462492 -0.548407 0.415683 0.006395 0.479940 -0.052808 0.241792 0.299120 -1.013580 -0.182783 0.402606 0.613656 -0.331639 0.661453 0.682697 -0.101635 -0.509247 -0.136620 0.621222 -0.391630 -0.235591 0.364009 -0.999414 0.638790 0.073169 -0.010490 0.627903 0.132437 -0.464985 0.691773 -0.307262 0.088836 -0.452427 0.016204 -0.456302 -0.356396 -0.708909 0.410860 -0.237506 -0.372061 -0.440947 -0.493011 1.169284 -0.908257 -0.447812 0.432996 0.032619 0.507861 -1.254829 1.201487 -0.595936 0.815648 0.158345 -0.161880 0.175704 -0.317530 -0.768011 -0.169815 0.345629 -0.107375 0.175070 0.955562 0.579764 -0.159443 0.011300 0.921418 -0.232589 0.960216 -0.203640 0.483797 -0.319087 -0.659437 0.223963 -0.087882 -0.263958 -0.270854 0.364148 1.352840 0.237318 0.879262 1.063371 0.382766 1.181630 -0.613887 0.316500 -0.248990 0.960777 -0.425315 -0.375648 0.117786 0.682234 -0.212106 0.595003 -1.162612 -1.762731 -1.106281 -1.106381 0.096900 -0.731129 0.349136 -0.443976 -0.139712 -1.045443 -0.745052 0.032983 -0.299808 0.698648 0.800686 0.006070 0.764703 0.672547 -0.717681 -0.086863 0.457836 0.857306 0.292442 -0.017783 -0.986019 0.616952 -0.871501 -0.087618 1.475697 -0.614167 0.340407 -0.290991 1.141855 -0.721077 1.471108 0.324505 -1.031927 0.753678 0.819974 0.699077 0.506067 -0.595013 -PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.412424 -0.733312 1.172376 0.776973 0.208506 0.143927 0.512441 0.134319 0.210559 0.616499 -0.383314 0.770448 -0.727375 -0.019082 0.096625 0.294164 -0.564760 -0.811733 0.131326 0.066101 -0.291561 -0.454387 -0.070927 0.582450 0.701587 0.251006 -0.596022 -0.222541 -1.041621 -1.090796 -0.481009 -0.107869 0.507910 -0.028404 0.454097 -0.942191 0.350480 0.686188 0.078828 -0.913779 0.396112 -0.245405 0.160508 -0.026042 0.149159 0.608505 0.923192 0.232428 0.350975 0.393871 0.031744 -0.501966 0.154906 0.621812 0.176981 0.481055 0.699019 -0.355246 0.059723 -0.271251 0.108353 -0.840287 0.259306 0.241627 -0.438744 -0.155154 0.113823 -0.192873 -0.381914 0.445254 0.309702 -0.243114 -0.597814 -0.490496 -0.513537 -0.084902 0.346651 0.463825 1.055413 -0.396703 0.918618 0.300885 0.653582 -0.080269 0.226073 -0.109560 0.344258 0.111173 -0.432075 -0.260215 -0.658018 -0.529738 -0.445475 0.900005 -0.099517 0.291011 0.355809 -0.693582 -0.896855 0.241376 -0.123783 -0.244840 -0.658220 0.503140 0.424595 0.638013 0.104179 -0.621657 -0.485236 0.034055 -0.400094 -0.082157 0.068595 -0.161509 -0.473427 0.061912 -0.820941 0.077321 0.332662 -0.524483 -0.357562 0.539581 -0.365623 0.867402 0.138562 0.333010 0.138240 0.566741 0.780959 0.159053 0.270960 -0.452273 -1.018496 -0.160400 0.190616 0.452856 -0.584179 -0.012087 -0.019841 0.131349 -0.123823 0.058761 -0.323580 1.074432 0.849589 -0.633412 -0.877728 -0.641988 -0.300736 -0.353829 0.165012 -0.321515 0.009299 0.029589 0.351295 0.031243 -0.033618 1.298341 -0.514203 0.389586 0.196746 -0.299990 0.079644 -0.083604 0.405540 -0.545163 -0.302323 0.397046 0.602608 0.257245 -0.003908 -0.117690 0.295153 -0.561927 -0.580963 0.536304 0.159620 0.286941 0.567742 0.434162 0.979080 -0.524582 -0.273994 0.148590 0.008260 -0.340258 0.249994 -0.732476 0.580051 -0.054981 0.231766 0.768457 0.114483 -0.504811 0.724408 -0.038971 0.105370 -0.558785 0.438007 -0.448079 0.306429 -0.210119 -0.293461 -0.404864 -0.149592 -0.314530 -0.069773 0.956058 0.109883 -1.159037 0.155683 -0.208359 0.651461 -1.359350 0.696723 -0.294945 0.427503 -0.249285 -0.060098 0.016432 0.024053 0.108936 0.104815 0.182852 -0.077203 0.302424 0.573274 0.148429 0.042696 0.226319 0.391032 0.173494 0.286379 0.086711 0.047288 -0.112431 -0.019251 -0.173544 -0.001625 0.175222 0.500148 -0.312348 0.164947 0.491117 -0.143640 0.496915 0.544567 0.319341 -0.344695 0.068631 -0.105457 1.126214 -0.527652 -0.481206 -0.256343 0.406538 -0.043145 0.300928 -0.922291 -0.835728 -0.047222 -1.484550 -0.434920 0.090775 0.341967 0.105042 -0.198989 -0.621061 -0.393405 0.531514 0.300283 1.245576 0.266423 -0.059689 0.705124 0.333858 -0.203559 -0.371463 -0.052440 0.159645 -0.197619 -0.177496 -0.367104 0.104827 -0.824929 0.411261 0.719449 -0.537992 0.300136 -0.257901 0.561428 -0.933663 1.052552 0.393980 -0.845604 0.275189 0.309466 0.897806 -0.615964 -0.549620 -PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -5.753549 -14.550448 18.802374 14.055256 0.550386 7.306983 5.874426 -1.367199 -1.103988 9.694442 -5.218746 13.934665 -9.968018 -4.236483 1.138435 0.035187 -9.077117 -9.542634 0.818668 -1.983269 -4.483571 -5.704386 -9.378804 19.000207 8.296062 1.303049 -6.198724 -1.052499 -18.603034 -11.866668 -10.636195 0.871165 7.599958 1.731419 11.712052 -12.380169 5.987600 15.073177 2.237595 -12.959684 2.914447 -4.306779 0.045729 2.142347 -4.844153 6.411144 11.200489 1.282557 1.940805 3.515124 1.718450 -6.205705 9.532190 13.521324 8.695450 11.846712 12.610234 -6.165650 7.288090 -3.733839 1.394581 -12.374064 4.911383 -0.460671 -4.243838 -2.789858 0.577632 0.101497 -1.208384 4.028072 7.961881 -8.385802 -6.809556 -8.386054 -11.123534 -4.956564 1.275645 6.193680 14.518880 -7.467256 16.974676 9.077601 9.136441 0.489646 11.611689 -0.961590 11.596279 2.409660 -6.303069 2.676170 -11.154424 -4.993621 -2.787084 9.891647 -8.447570 -0.598478 5.519910 -17.331537 -18.032463 9.436307 -2.176741 -8.450373 -3.614725 2.796545 4.434609 3.698958 -2.019904 -10.534980 -6.691119 7.168307 -8.265948 -3.943268 -1.390110 0.332053 0.109940 3.512562 -11.355009 5.507079 9.991620 -4.989297 -4.465442 13.500370 1.315346 14.049411 0.666480 2.941232 1.640840 6.225952 9.964303 0.948981 -3.916368 -7.966993 -12.310106 1.331439 1.063511 -5.938951 -9.214615 -3.628936 5.663815 6.449767 4.431195 11.181429 -3.124811 20.133440 3.566821 -5.491921 -10.166802 -14.071581 -10.574608 -4.706844 0.861676 -2.613801 -10.247655 0.997289 7.053091 1.845637 -3.086597 5.236788 0.741882 5.844205 2.749584 -2.422967 -0.208762 -6.569529 5.529149 -9.373797 -5.820906 8.139540 9.892034 8.875031 0.577703 -1.101090 3.412980 -3.286565 -8.273551 4.330477 1.614627 5.207904 16.320408 11.289518 24.026601 -5.365456 -2.961003 -1.747707 -2.441670 -3.177333 0.747601 -10.021341 4.757315 1.494773 -1.869304 17.912203 -0.195271 -4.229411 9.603166 0.657112 2.090274 -11.837216 10.139254 -6.695219 3.163444 -2.942804 -3.924201 -9.110607 -4.025611 -11.052490 -6.032217 17.475378 -12.387550 -13.640647 4.281870 -0.796806 7.651735 -17.168414 13.080940 -5.115182 9.848869 -1.849645 -7.997391 0.345380 1.650466 -0.933211 5.553606 4.105681 -8.484677 4.815436 5.143981 1.940252 3.516068 3.016251 4.978903 -1.280172 2.677144 -5.632088 4.412923 -0.103000 -1.291120 -6.225372 -2.311230 3.036112 8.823480 -2.946965 -2.778290 6.274035 -2.236583 -1.507814 10.495436 0.236990 -5.142790 -1.077867 -2.536534 11.795802 -11.163567 -8.374484 -5.293598 3.210301 4.276257 2.249654 -18.096469 -6.561931 -9.418695 -11.448687 -6.939089 3.112781 4.982309 6.828022 -3.643173 -13.157478 -10.157747 14.753881 1.698902 6.569658 7.958800 2.753625 14.318312 5.101646 6.532891 -4.022444 -2.049581 2.208275 -3.312547 -1.077468 -6.373399 4.524603 -11.721393 12.475254 10.725453 -5.281287 9.361550 -0.394766 4.763999 -16.265400 14.256356 6.071770 -17.563518 -0.572979 11.312436 6.300677 -15.384247 -9.659763 -PE-benchmarks/palindrome-partitioning.cpp__main = 0.217596 -0.404390 1.049779 0.705390 -0.387884 -0.023670 0.194736 -0.180587 0.278250 -0.501067 -0.402763 0.281942 -0.503683 0.198579 -0.400109 0.219329 -1.036875 -0.453152 -0.055678 -0.145718 -0.052227 -0.154391 0.318324 0.249448 0.514223 0.839711 -0.260789 -0.220090 -0.467742 0.087856 0.474113 -0.224136 0.348187 0.695746 0.109238 -0.949410 0.361447 0.333185 -0.243830 -0.627344 0.420663 -0.390964 -0.021933 -0.713984 -0.170576 0.118287 0.225157 0.772186 0.233417 0.153335 -0.489066 -0.029836 0.160204 0.773152 -0.171857 0.210673 0.536331 -0.046861 -0.011838 -0.228871 0.185750 -0.087690 0.083749 0.177393 -0.125700 -0.533698 -0.297723 -0.690155 -0.263153 0.341721 0.042772 0.343327 -0.549460 -0.156272 -0.551252 0.021647 -0.723118 0.807990 0.750088 -0.735643 0.415916 0.047200 0.237590 -0.029576 -0.029715 0.287201 0.042030 0.257165 0.039353 -0.072917 -0.655192 -0.228218 0.133308 -0.546125 -0.191720 -1.064719 0.396524 -0.882699 -0.500963 0.058307 0.278267 -0.308993 0.404415 0.164399 0.010110 0.441800 -0.294471 -0.245338 0.226911 -0.058929 0.143736 -0.009167 0.083376 0.428982 -0.161899 -0.433851 -0.787764 0.310325 0.007222 -0.170349 0.484198 0.375480 -0.096547 0.100263 -0.027796 0.070331 -0.238116 0.910923 0.186673 0.034181 0.100044 0.134912 0.239611 0.321994 0.476985 0.739924 -0.486527 -0.034583 -0.107803 0.131231 -0.223660 -0.526372 -0.015804 0.122699 0.030795 -0.587392 -0.522188 -0.456602 -0.543994 -0.708822 -0.013347 -0.318060 -0.118264 0.615434 0.398620 0.526223 0.419724 0.752504 -0.452970 0.024942 0.007377 -0.101224 0.265924 0.444943 0.340579 -0.252728 -0.258718 0.308715 -0.177883 0.300101 0.042905 0.053373 0.186670 -0.634797 -0.038171 0.443716 0.472447 -0.103542 0.458213 0.442248 -0.592921 -0.159078 -0.093364 0.360552 -0.190756 -0.205939 0.298754 -0.543927 0.495043 0.023028 0.110243 0.238857 0.058182 -0.108311 0.330283 -0.153929 0.065335 -0.272528 -0.143459 -0.218777 -0.205121 -0.507489 0.531654 -0.165514 -0.257328 -0.287467 -0.379825 0.688111 -0.645838 -0.135486 0.245409 0.075569 0.524581 -0.533230 0.367050 -0.368655 0.723391 0.263883 -0.098713 0.167525 -0.583677 -0.430482 -0.199592 0.209767 0.035609 -0.061813 0.313042 0.404132 -0.153342 0.109434 0.545879 -0.192479 0.588112 -0.117526 0.138419 -0.189373 -0.332887 0.270899 -0.051804 -0.204144 -0.128946 0.272525 1.004845 0.126573 0.778288 0.775828 0.114613 0.626909 -0.382322 -0.004280 -0.179248 0.523901 -0.300003 -0.257966 0.007155 0.475342 -0.122345 0.226744 -0.696392 -1.203549 -0.891790 -0.530428 -0.049869 -0.687147 0.196827 -0.208516 -0.042490 -0.511128 -0.434468 0.025524 -0.208312 0.474920 0.415416 -0.054721 0.480362 0.417899 -0.495760 -0.131867 0.497736 0.645244 0.162263 0.225984 -0.831243 0.443783 -0.507399 -0.111838 1.045090 -0.478974 0.183341 -0.212172 0.868734 -0.419844 0.860016 0.232817 -0.821968 0.353723 0.514548 0.246818 0.573971 -0.394101 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__maxSubArraySum(int*, int) = -1.285692 -3.284932 6.078205 4.031439 -0.431692 0.981120 2.412080 -0.962160 1.903089 0.307036 -1.611657 2.436431 -3.784199 0.158771 -0.442921 0.472010 -4.710109 -3.722825 -0.071964 -1.224274 -1.043052 -2.251994 -0.014423 3.066983 2.658201 0.723090 -2.122548 -1.156376 -5.183860 -1.031375 0.938666 -0.891548 2.596185 0.551110 1.480333 -8.239584 2.407681 3.021115 -0.507032 -4.344621 2.040231 -2.991843 0.336058 -1.791487 -1.124830 0.860861 2.456327 3.127715 1.728182 0.494730 -0.971917 -0.835029 -0.128416 6.616359 -0.905366 2.374946 3.135670 -1.367229 -0.425138 -0.498713 0.491384 -2.262232 1.918404 1.359456 -2.191905 -2.089237 0.634765 -2.389604 -2.591445 2.259986 2.180513 -0.351268 -2.344423 -1.048697 -3.584976 -0.936079 1.929263 3.557367 5.227811 -3.145119 4.249854 0.915086 2.563361 0.343082 1.891966 0.557723 3.206772 0.535833 -1.432348 -1.657830 -6.034468 -1.307872 -0.703793 0.694737 -0.720090 -2.924325 1.594394 -3.997185 -4.365437 0.939392 0.172045 -1.955051 -1.988619 0.820149 2.006559 2.462587 -0.804919 -3.235128 -2.033063 1.470403 -2.160979 -0.595635 0.614165 -0.238575 -1.296537 -2.736842 -4.378999 1.137076 1.385837 -1.521971 -1.040425 3.744374 -2.747007 2.277779 0.579855 1.346743 -0.638246 3.208357 1.596596 0.002715 1.554622 -2.410564 -2.706359 -0.394360 1.075321 4.436186 -2.190533 -0.673524 -0.182787 1.237464 -1.258668 -0.456361 -0.246128 3.990377 1.157167 -3.233006 -3.017941 -3.148345 -1.061990 -3.092302 0.314512 -1.917867 -1.343503 1.657097 2.722996 2.445680 1.075877 4.916839 -2.211303 3.099416 0.447766 -1.029166 1.439685 0.006124 2.282908 -2.539324 -1.988160 1.378407 1.069353 2.127059 -0.558188 -0.241183 0.685362 -3.505454 -2.951627 0.840840 1.603526 1.141407 3.543513 3.150480 3.886781 -4.534465 0.161618 1.474180 -1.028037 -1.050728 0.905789 -3.481598 1.910651 0.831092 -0.598621 4.311862 0.174741 -3.090702 1.852853 0.207335 0.655855 -2.815809 0.856123 -1.889655 -0.106107 -2.046540 -0.394927 -2.387043 -1.856585 -2.963154 -2.011908 4.949974 -2.538063 -5.460130 2.277210 -1.031129 3.589668 -7.091776 4.335148 -2.292746 3.262455 -0.866434 -0.806341 -0.137001 -0.006030 -1.968023 1.652191 1.207989 -1.432905 1.899091 3.495338 1.917103 1.336222 0.427462 2.804288 0.076060 1.857221 -1.455614 1.647071 -1.048980 -1.666125 -0.152357 -0.858458 0.786359 1.669656 0.755721 2.440161 2.754864 1.605419 3.318984 3.433479 2.101405 -1.642013 0.348907 -1.096785 3.852699 -1.860349 -1.768139 -0.707302 1.775148 -0.085542 1.793697 -5.245455 -5.647817 -2.697265 -5.917330 -0.255639 -1.055707 0.936126 0.584368 0.020426 -5.354848 -1.949795 0.799117 -0.094327 5.582446 2.436158 0.325560 3.481886 2.786214 -1.864281 -1.517405 1.922562 1.885682 -1.019912 -0.624804 -3.797355 2.260075 -3.982258 2.475562 4.779815 -2.289173 1.636784 -1.620902 3.537198 -3.939696 5.723594 2.149878 -4.637459 1.385878 2.468240 3.540920 -0.311473 -2.729749 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 0.289117 -0.607970 1.500232 1.106643 -0.219975 -0.037990 0.629545 -0.322677 0.484662 -0.055914 -0.380969 0.454399 -0.830993 0.363602 -0.487634 0.687464 -1.170168 -0.694356 -0.060890 -0.273044 -0.102306 -0.284741 0.733912 0.102812 0.930458 0.617027 -0.446884 -0.735159 -0.771257 -0.299548 0.573526 -0.352447 0.581737 0.493065 -0.121743 -1.422665 0.600296 0.539784 -0.396241 -0.871483 0.735044 -0.432228 -0.000557 -0.687872 -0.060053 0.163339 0.339028 0.900845 0.509295 0.517267 -0.172404 0.053486 0.468122 1.300098 -0.459517 0.388726 0.604028 -0.051890 -0.109925 -0.172600 0.274070 -0.098035 0.233066 0.279963 0.006468 -0.792031 -0.509260 -0.801637 -0.599394 0.478731 0.000158 0.402311 -0.869880 -0.056018 -0.467021 0.012777 -1.138563 0.985830 1.135653 -0.948513 0.686966 0.082216 0.183133 -0.214878 -0.173290 0.338936 -0.137212 0.333324 0.041631 -0.330839 -0.746211 -0.231089 0.126105 -0.443478 -0.247298 -1.460390 0.653928 -0.521210 -0.796796 0.132956 0.422435 -0.410736 0.276163 0.206313 -0.023367 0.713042 -0.491577 -0.539241 0.017939 -0.168596 0.323860 -0.157989 0.047241 0.146499 -0.374274 -0.506368 -1.076043 0.248946 -0.100399 -0.444876 0.210763 0.437721 -0.161980 0.216604 -0.003783 0.293735 -0.312584 1.054550 0.298615 0.389077 0.484230 0.226281 -0.191693 0.348893 0.808941 1.056622 -0.540453 0.158275 -0.442270 0.179725 -0.319370 -0.384722 0.181401 0.398021 0.423209 -0.815157 -0.778830 -0.449846 -0.283732 -0.865069 0.208002 -0.536493 0.090940 0.520654 0.575773 0.347625 0.633324 1.218601 -0.734349 0.211489 0.067102 -0.158408 0.489928 0.482025 0.517893 -0.379318 -0.474819 0.338432 0.134093 0.268210 -0.045443 0.218324 0.282841 -0.915528 -0.054096 0.324210 0.462964 -0.466096 0.549754 0.501337 -0.087598 -0.300494 -0.110112 0.607378 -0.264808 -0.190397 0.341338 -0.977466 0.690126 -0.020700 0.059060 0.410771 0.117272 -0.384284 0.663174 -0.363201 0.035861 -0.364160 0.012160 -0.424442 -0.393775 -0.638839 0.498771 -0.117614 -0.387583 -0.214142 -0.150101 0.996576 -0.522259 -0.202567 0.303406 -0.076031 0.262319 -0.967106 1.316222 -0.533719 0.453969 0.090580 -0.200208 0.153300 -0.169840 -0.610372 -0.334136 0.326480 0.017290 0.196763 0.873233 0.495210 -0.238942 0.084685 0.812817 -0.165767 0.822213 -0.108413 0.442611 -0.260086 -0.475889 0.208329 -0.088222 -0.189084 -0.300417 0.204845 1.345032 0.211417 0.673777 0.972825 0.181193 1.087284 -0.554758 0.393570 -0.180144 0.902917 -0.368601 -0.259953 0.109730 0.463506 -0.277689 0.638533 -0.983350 -1.500281 -0.699377 -0.831118 0.013926 -0.605690 0.402257 -0.441880 -0.087449 -0.891381 -0.673060 -0.090491 -0.287444 0.304406 0.674198 -0.007642 0.631525 0.576756 -0.582051 -0.069148 0.285167 0.733971 0.271566 -0.062315 -0.700730 0.470924 -0.788993 -0.120667 1.219504 -0.511403 0.195120 -0.384712 1.102399 -0.608574 1.266844 0.285888 -0.750281 0.759523 0.746099 0.691803 0.406968 -0.501833 -PE-benchmarks/biconnectivity.cpp__Graph::Graph(int) = 0.692269 -1.244844 3.506913 1.851015 -1.308601 0.339172 1.204345 -1.000455 0.625089 -0.291419 -0.729784 0.919786 -1.462076 -0.256313 0.201414 0.078171 -3.328404 -1.166654 -0.409280 -0.927012 -1.015144 -0.829841 0.313475 1.377666 1.733907 1.777576 -0.539013 -0.520772 -1.380910 -0.523509 0.556903 -0.162742 0.750329 2.097356 2.118593 -2.749548 1.353011 0.789002 -0.207828 -1.777241 0.813692 -0.039710 -0.170455 -0.626550 -0.090767 0.635207 1.035652 2.570358 0.928941 0.575710 -0.710720 -1.245153 0.257827 2.651771 0.619888 0.882439 1.619015 -1.141407 0.721717 0.167642 0.286350 -1.252460 -0.083773 0.343150 0.003560 -0.568120 0.492492 -1.876895 -0.383207 1.675851 0.998848 -1.242425 -1.276438 -1.775827 -1.817374 -0.083316 -2.556553 2.866678 2.433365 -2.020001 1.533652 0.323412 1.150349 -0.363046 0.926332 0.044550 1.782717 0.425304 -0.366870 0.304874 -2.082897 -2.181838 -0.036989 -0.618934 -0.503165 -1.462410 1.142455 -2.878669 -1.924225 1.024968 0.706550 -1.055731 -0.230868 0.475206 0.665278 0.471511 -0.660959 -1.183525 -0.665994 0.512592 -1.161013 0.658925 0.342505 1.231534 -0.870247 -0.224100 -1.673493 1.046842 0.656021 -0.200751 -0.029279 1.855185 -0.501380 1.078375 0.149899 0.277860 -0.312222 1.906961 0.804129 0.154971 0.387447 -0.087152 -0.454914 0.857210 0.734928 1.376718 -0.101848 -0.175162 0.277153 0.974010 -1.101004 0.278208 -0.679677 2.125538 0.072799 -1.553088 -2.375685 -0.849851 -1.659726 -1.771094 0.190379 -0.680335 -1.101418 1.155460 1.127030 2.254503 -0.143511 0.791525 -1.108597 0.197453 -0.112662 -0.393390 0.022062 0.311064 0.934918 -1.319310 -0.289164 0.211673 -0.283915 1.153400 0.328663 -0.545137 0.250203 -1.722290 -1.367305 0.729866 1.194909 0.136012 1.001646 2.047473 0.576955 -1.256664 -0.921278 0.998024 -0.375877 -1.227732 0.824636 -1.284944 1.124807 -0.000843 0.462754 1.461247 0.068774 0.090388 0.967294 -0.276093 0.320793 -0.863317 -0.545120 -0.569158 0.244058 -0.811912 0.667614 -1.228900 -0.541454 -1.087454 -1.364153 2.362905 -1.654503 -1.768477 2.148945 -1.058409 2.239339 -1.778525 2.001621 -0.619333 1.306742 0.138954 -0.284774 -0.098495 -0.737060 -0.733417 1.071771 -0.209418 -0.074937 -0.111710 1.446705 0.636286 0.449977 -0.001416 1.515626 -1.128552 1.149202 -0.483981 1.046440 -0.667333 -0.519872 -0.363624 -0.018678 -0.306711 0.177432 0.321065 1.442703 0.152585 1.283789 1.283389 0.667835 0.749309 -1.060993 0.140150 -0.062005 1.322201 -1.371668 -1.344858 0.670460 1.104817 -0.142978 -0.055397 -2.349364 -2.328127 -2.443136 -1.827235 -1.355630 -1.268259 0.962776 -0.090536 -0.608656 -0.936145 -1.080413 0.719789 0.342558 0.112475 1.239070 -0.142830 1.910125 1.640015 -0.398561 0.062099 0.744766 1.300507 -0.151953 0.001329 -2.239289 0.882888 -2.521375 0.643797 2.652918 -0.676938 1.369578 -0.762324 2.598861 -2.596534 1.509466 0.739954 -2.348113 0.239592 2.309937 0.634620 0.719970 -1.392323 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/biconnectivity.cpp__Graph::addEdge(int, int) = -0.142363 -0.811098 2.215602 1.619710 -0.636782 0.228613 0.459885 -0.810670 0.410840 0.109393 -0.373545 0.623246 -1.127401 0.290007 -0.362976 0.743894 -1.859922 -0.705471 -0.384409 -0.879338 -0.505775 -0.381822 0.388413 0.687176 1.153720 0.775113 -0.693760 -0.403430 -0.827671 -1.048432 0.293489 -0.323767 0.873141 0.686163 0.246690 -2.705831 1.113969 1.017997 -0.516628 -0.855101 0.865750 -0.709616 0.002999 -0.692775 -0.869187 0.246668 0.333599 0.445175 0.846397 0.372809 0.119897 0.024934 0.921110 2.154699 -0.404119 0.801101 0.747055 -0.480291 -0.136825 -0.164039 0.157690 -0.258094 0.471997 0.142335 -0.081827 -1.204235 -0.324332 -0.851116 -0.633141 0.789679 -0.005135 -0.238845 -0.969121 -0.549605 -1.161596 -0.477081 -1.054677 1.233688 1.530773 -1.308845 1.053169 0.207913 -0.007529 0.014155 0.443610 0.307560 0.829903 0.311989 -0.038779 0.124269 -0.157994 -0.344501 0.408076 0.322179 -0.598715 -1.737554 0.804313 -1.618709 -1.468856 0.507362 0.577249 -0.790915 -0.264730 -0.286595 0.051687 0.432220 -0.712610 -1.000635 -0.131038 0.196424 0.144182 -0.238204 -0.225197 0.121154 -0.209555 -0.183194 -1.612949 0.614247 -0.001828 -0.351960 -0.118621 1.076528 0.219659 0.296016 0.083721 0.658435 -0.563526 1.518597 -0.061221 0.662951 -0.270901 0.493337 -0.395845 -0.115593 0.851966 0.394777 -0.716788 -0.496702 -0.468115 0.360122 -0.661907 0.162493 0.077261 1.333545 0.846437 -0.688902 -0.967203 -0.607047 -1.009743 -1.691984 0.131871 -0.683235 -0.650511 0.873349 0.853366 0.497938 0.724476 1.103375 -0.446221 0.350883 -0.056758 -0.487685 0.932676 -0.069266 0.869972 -0.764551 -0.639056 0.636973 0.134059 0.935973 -0.006855 0.233734 0.267095 -0.980965 -0.372222 0.599337 0.567001 -0.193819 1.060462 1.118937 1.678721 -0.572765 0.226054 0.728735 -0.493062 -0.130454 0.389388 -1.111071 0.528167 0.326023 -0.418132 1.137461 0.060872 -0.464493 0.592246 -0.371175 0.295117 -0.987249 0.285008 -0.570900 0.083407 -0.854741 0.042235 -0.508414 -0.586601 -0.614883 -0.641723 1.575706 -1.899247 -0.559972 1.114075 0.117535 0.773879 -1.557942 1.928100 -0.790216 1.218575 -0.410591 -0.636320 0.222031 -0.113480 -0.848235 0.406124 0.379440 -0.373419 0.116558 1.159690 0.700488 0.196309 -0.147515 1.258339 -0.258081 1.208771 -0.468041 1.043533 -0.159539 -0.487643 -0.114357 -0.218327 -0.477574 -0.113817 0.518653 1.068007 0.488099 0.669579 0.633252 0.810598 1.252347 -0.632595 0.536112 -0.355917 0.916611 -0.741864 -0.671008 0.334642 0.914095 -0.094061 0.561641 -1.731443 -1.688449 -1.757496 -0.811455 -0.248276 -0.013599 0.580469 -0.112759 -0.211652 -1.186296 -0.985465 1.203102 -0.429225 0.529994 0.824110 0.261457 1.086866 1.052814 -0.108267 -0.262207 0.069648 0.789926 0.368340 0.118303 -1.284740 1.084975 -1.182063 0.334686 1.573178 -0.764205 0.629014 0.106867 1.262524 -1.219833 1.575339 0.267333 -1.159573 1.084719 1.587109 0.457487 0.165061 -0.736008 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -3.957854 -7.785273 16.918688 11.603848 -2.275276 3.670669 3.179613 -5.421271 2.265002 3.516946 -3.446961 7.506599 -7.710189 -0.221630 -2.130509 2.559876 -11.550841 -6.759924 -2.340017 -6.403848 -5.000399 -3.460749 -2.563670 8.956191 7.632042 2.700932 -6.083765 -0.511246 -10.853880 -11.014064 -2.486286 -0.913039 5.988706 0.729801 5.131212 -19.089261 8.063061 10.397106 -1.816136 -7.958592 4.913000 -5.553976 -0.931473 -1.592129 -5.164893 2.993062 4.737143 1.294580 4.793127 2.121256 1.614610 -0.739118 4.979579 16.048345 0.220728 7.988323 8.122198 -4.612814 0.301394 -0.496771 0.765943 -5.470690 4.061816 0.414045 -2.699224 -6.978521 1.116689 -3.250304 -2.973906 5.533631 3.244074 -6.521699 -4.607603 -6.065415 -10.794259 -4.519830 0.856423 6.563440 11.889655 -7.776325 10.389774 3.200825 3.427820 1.465891 7.047430 0.389346 10.470658 1.963388 -2.679849 0.296334 -5.014202 -2.762805 0.485218 8.220288 -5.515480 -6.604936 5.807229 -15.885791 -13.053633 5.101493 2.181089 -6.590249 -5.866029 -0.855608 2.833988 2.090370 -2.960578 -8.127152 -3.939111 4.365316 -3.996442 -2.293824 -1.198417 -1.158384 -0.864742 1.284274 -11.715819 5.325805 3.790136 -2.162400 -4.792098 10.268159 0.722764 5.122875 0.592839 5.235599 -2.564391 7.657291 1.077690 3.298673 -3.395568 -0.062359 -7.997757 -2.416407 3.234460 -0.649608 -6.954919 -4.481029 -0.347485 3.773162 -3.116521 4.968438 -3.613655 14.230467 5.889597 -4.932951 -7.774259 -7.307640 -7.284547 -9.760635 0.207744 -4.062156 -9.073675 2.387692 6.560225 3.933014 2.105687 7.476277 -1.332193 4.789766 0.901204 -3.501837 4.929846 -5.673056 6.269492 -7.408602 -5.002269 5.378058 3.532378 7.396141 -0.123744 0.433811 2.173325 -6.572391 -6.266355 4.457156 2.710536 2.176943 10.246964 9.949892 19.221661 -8.238974 1.027198 2.700279 -4.048854 -1.624415 1.958201 -7.743041 2.326267 3.405353 -1.458213 13.777135 0.710449 -4.713092 4.198593 -0.165317 2.399837 -8.736093 4.902199 -4.947230 2.344057 -3.723225 -3.082904 -6.570848 -3.483096 -7.551629 -7.200183 13.042830 -13.675091 -11.038163 8.847747 0.154036 7.515351 -15.852042 11.085192 -5.715415 9.970773 -3.611794 -4.060681 0.669984 0.763052 -5.618797 7.158182 2.913033 -5.815977 3.638909 8.017585 4.028566 4.495740 -1.077845 7.634299 -2.477480 6.301116 -4.874778 7.106221 -0.994410 -4.050727 -3.768014 -1.930544 -1.628660 2.752212 2.416620 1.170292 4.871620 1.791379 1.665633 9.486539 5.765438 -4.465600 3.021450 -2.551644 7.186222 -6.737864 -6.653968 0.677419 5.247924 1.516438 2.957329 -14.621132 -9.661656 -11.990030 -10.680688 -2.261021 1.797170 3.634745 2.151769 -2.327034 -10.866668 -7.320964 12.173156 -0.528718 8.674889 6.587315 2.882101 9.337298 7.009872 1.160270 -2.531339 -0.884296 3.642317 -0.147759 -1.404300 -8.664881 7.657413 -8.543358 6.470226 10.789242 -5.337320 6.676260 1.643297 5.973143 -11.271297 11.905435 3.170923 -11.224896 4.452493 10.729576 5.907035 -4.897094 -6.656750 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/biconnectivity.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/biconnectivity.cpp__Graph::isBC() = -0.735123 -5.118777 9.886684 6.120404 -1.313495 2.140833 3.111183 -2.623730 1.554688 1.630808 -2.082485 4.531035 -4.489618 -0.852961 -0.867757 0.592064 -6.954795 -4.422545 -0.726261 -2.474662 -2.930388 -2.497795 -0.767211 5.237798 4.480785 3.054208 -2.713397 -0.997780 -7.149836 -4.458305 -0.688310 -0.411163 3.009900 2.676214 4.557161 -7.818600 4.117036 5.148831 -0.489564 -5.774611 2.139812 -1.508401 -0.914233 -0.501764 -0.681581 2.043309 3.358032 3.421923 1.965788 1.628983 -0.153528 -2.189569 1.618216 7.745240 1.589812 4.149363 5.510723 -2.708713 2.094149 -0.138594 0.981397 -3.760757 1.467425 1.003340 -1.257905 -1.952340 1.199505 -3.102900 -1.685202 3.619487 2.917974 -3.748902 -2.698677 -3.986609 -5.496795 -0.961238 -1.262727 4.825544 7.331322 -4.245260 6.327433 1.984735 3.475932 -0.465010 3.837804 0.075985 5.428828 1.539510 -1.882806 -0.087831 -5.759833 -2.854214 -0.637121 2.209129 -2.763318 -2.069946 3.718673 -8.080565 -7.020583 3.362689 1.026153 -3.454077 -2.309089 1.403617 1.951965 1.826586 -1.739370 -4.290798 -2.836683 2.420154 -3.458290 -0.295546 0.316657 1.201344 -1.924648 0.409577 -5.568987 2.626162 2.933217 -1.672836 -1.996555 5.771933 -0.991073 3.935083 0.077758 1.600008 -0.692698 3.919838 2.454266 0.970597 0.113032 -1.172094 -3.833308 0.383481 1.737306 1.670814 -2.969041 -1.357815 1.028817 2.786772 -1.090158 2.363261 -2.598620 7.379283 1.697978 -3.923856 -5.850436 -4.424658 -3.518801 -4.704315 0.079212 -2.464863 -4.116665 1.999240 3.820134 3.638819 -0.131700 4.077329 -1.996626 2.584471 0.710503 -0.933522 0.624217 -1.792685 2.877561 -4.199555 -2.557570 2.168545 1.782333 3.421811 0.374800 -0.937875 0.944292 -4.097491 -4.440158 2.331220 1.995736 0.930218 4.955137 5.618349 7.052206 -4.537211 -1.505609 1.515951 -1.569160 -2.314511 1.194239 -4.658121 2.046279 0.763446 0.570565 6.992500 0.320439 -1.802108 3.137400 -0.219737 1.017818 -4.020886 2.037236 -2.383899 0.597322 -1.843440 -0.143078 -3.702946 -1.585764 -4.040474 -3.968611 7.718807 -6.068117 -6.747728 4.726444 -1.559324 4.848337 -7.929035 5.415397 -2.601024 4.394782 -0.229970 -1.733333 -0.540703 -0.518371 -2.308066 3.414030 1.143557 -2.781698 1.818798 4.552928 1.754763 1.958240 0.109019 3.724320 -2.042163 2.620826 -2.420586 3.338170 -0.961731 -2.614034 -1.781194 -1.004488 -0.026469 1.333017 0.417178 1.614667 2.134198 1.425073 2.089538 3.652200 2.301623 -3.000376 0.846137 -0.288390 4.709399 -4.017543 -3.624012 0.242467 2.510522 0.590057 1.314218 -7.557986 -5.863314 -5.371557 -7.067165 -2.735562 -1.374153 2.639268 0.739439 -1.445408 -5.097873 -4.151151 4.748721 0.514470 3.720927 4.184430 0.988425 5.761363 3.884295 -0.329160 -0.745329 0.111789 2.670164 -0.961964 -0.906314 -4.728848 2.699048 -5.921691 3.481741 6.503808 -2.235672 3.945556 -1.430955 4.683200 -7.058953 6.199339 2.611123 -7.029504 1.071460 5.469952 3.937292 -1.939279 -4.300633 -PE-benchmarks/biconnectivity.cpp__main = 2.079837 -1.427277 7.389396 3.703571 -4.223997 -1.349669 -0.159961 -0.130077 1.943464 -8.390207 -3.662389 1.787042 -3.121841 1.801658 -1.750719 -0.387074 -10.832406 -4.254903 0.415635 0.340453 -0.918011 -1.439951 2.519994 2.746754 3.212132 10.703852 -3.008352 0.387876 -2.013420 3.406958 5.559777 -2.625052 3.000297 10.098339 2.312102 -8.122514 2.249359 -0.754195 -0.875598 -3.217939 2.412308 -3.146169 0.023311 -8.861984 -1.417997 1.573299 3.121215 8.697226 2.752554 -1.316558 -7.678051 -2.355796 -3.240860 2.068312 -1.759534 -0.719142 2.786584 -2.090269 -0.392524 -3.562548 0.996983 -2.113653 0.778633 3.287165 -3.922609 -3.555099 1.049829 -7.032551 -2.256302 4.257858 3.888115 5.728492 -4.003549 -0.096259 -4.343593 1.112479 4.701533 6.920545 5.920212 -3.156226 2.233088 -0.585572 4.039827 -0.731741 -0.901024 1.960221 2.405001 1.266548 -1.152644 -1.812331 -9.882524 -3.152531 -0.618086 -2.898923 1.867905 -4.532435 -0.121315 -9.042447 -2.363452 -2.122218 1.662380 -1.089991 1.446274 2.889958 3.609939 2.731622 0.744949 -0.851648 2.894044 -2.267026 -3.317871 1.625746 1.360076 4.270462 -2.326007 -4.343771 -5.786340 1.403750 -0.885391 -0.640666 5.767076 1.948341 -3.404192 0.428839 0.391081 0.437840 -1.331519 5.694919 2.039639 -2.604161 2.534832 -1.838972 6.923774 0.296474 2.360571 9.928310 -3.844567 -4.389989 -1.241922 0.683681 -3.778311 -8.765972 -0.205934 0.616067 -0.793202 -5.998580 -4.960701 -3.021524 -4.144309 -5.470652 -0.755455 -2.418586 -0.970280 4.930652 2.289288 3.929613 3.577722 5.592107 -3.466636 2.766175 -0.048914 0.416287 2.454018 4.981033 2.842693 -1.782178 0.154735 2.277884 -4.519381 2.616398 -0.595815 -2.104262 1.555724 -5.855959 -3.500275 4.291707 3.756309 3.120028 1.231650 2.042084 -7.396462 -2.705863 -0.450024 3.886717 0.746438 -3.440777 4.808963 -2.228852 5.050882 -0.538308 1.052865 1.112311 0.486550 -2.975003 1.256196 1.974047 0.766557 -2.029462 -3.187039 0.012061 1.357340 -4.058070 4.046306 -2.361666 -1.390741 -2.811879 -3.703977 4.522091 -3.756633 -5.350669 2.656834 -0.552634 9.636274 -5.622509 -4.152059 -2.583215 5.997355 1.765983 0.151555 1.448731 -9.308388 -3.211901 0.204443 0.590480 2.134128 -1.168646 -0.052310 3.710803 0.369150 1.223798 3.255191 1.095074 4.692912 1.139270 -1.615892 -1.471601 -1.661853 2.682003 0.461445 -2.011310 0.959173 2.517877 6.394874 2.507918 8.494419 9.139908 0.534975 3.511455 -2.682196 -3.708429 -1.837543 3.408609 -1.406281 -2.788300 -0.089754 4.467320 -2.087916 1.753023 -4.633629 -12.097685 -5.258240 -7.762833 -2.096365 -6.202790 1.402686 -0.291203 0.389662 -2.557465 0.034979 -1.847476 0.803948 11.757631 2.275008 -2.473686 2.738948 3.097774 -7.208895 -3.900660 6.942582 6.239754 0.612252 4.038538 -11.206592 3.880691 -3.845629 0.102443 9.918804 -6.454246 -0.303230 -5.790378 10.431943 -3.404647 7.062053 2.255733 -8.646626 1.149142 -0.911194 0.962083 8.635628 -3.136670 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/biconnectivity.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/biconnectivity.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.559354 -1.112255 6.819190 3.704652 -1.380954 0.047994 2.326211 -3.691297 3.060954 -1.405149 -0.385703 0.456192 -3.699805 1.303337 -3.437818 1.789518 -5.247821 -2.978969 -1.943166 -4.166050 -1.450427 -1.519054 3.323599 0.218578 3.552059 0.603390 -2.300098 -2.054698 -3.856418 -2.065849 3.411039 -0.992663 2.110100 -0.642455 -0.758004 -8.582543 3.720794 2.423558 -2.389961 -2.275541 3.843565 -2.558679 -0.423550 -1.851452 -1.482355 -0.222742 -0.201668 2.329804 3.503682 1.098589 1.019756 1.711526 -0.097605 7.543765 -4.095587 1.910225 1.252360 -0.360410 -1.828120 1.268614 -0.260789 0.374290 0.991261 0.872637 -0.849289 -4.007665 0.155763 -3.014645 -3.193540 3.169458 -0.378084 -0.960239 -2.152450 -0.567133 -4.073924 -1.011025 -0.191880 3.374391 4.446855 -3.714946 2.112907 -0.841578 -0.232069 -0.304329 0.020527 0.791533 1.946217 0.411471 0.509629 -2.281502 -3.551152 0.937183 0.187993 -0.022996 -0.978813 -6.391859 3.278660 -4.558407 -4.087887 -0.002262 2.475109 -2.467011 -1.920696 0.053344 0.367677 1.331665 -2.053331 -3.187028 -0.795560 1.400502 0.518611 0.255011 0.546509 -1.410333 -0.966235 -2.705113 -4.889213 2.022339 -1.039281 -0.677593 -1.965741 3.125058 -1.807051 -0.416159 1.163518 3.220792 -2.541241 3.840183 -1.186485 1.666300 0.491352 1.357616 -1.590947 -0.913088 2.309584 4.268942 -1.933494 -0.257214 -2.986829 0.454602 -3.624373 -1.032610 -0.742329 1.942062 1.800914 -3.573781 -2.714045 -0.064914 -0.841786 -5.676562 0.281313 -2.335169 -2.360506 1.375087 2.196890 3.191665 3.025373 5.390624 -1.879563 1.669039 0.380629 -2.160820 3.289637 -0.792748 3.171486 -2.099596 -2.661947 0.531120 -0.954818 2.027242 -0.880286 1.193122 0.084250 -5.040238 -1.313558 0.004435 1.913389 -0.749311 2.149990 3.740640 1.973391 -4.418483 0.885425 3.400062 -2.391082 -0.327407 1.052112 -3.570283 0.952364 1.703567 -0.771380 3.758695 0.506256 -2.064566 1.677678 -0.996866 1.474986 -2.599514 -0.518459 -1.975769 -1.064646 -2.884815 -0.365093 -1.355398 -1.570138 -1.802033 -3.470798 4.016772 -4.096401 -3.464294 4.549205 0.059411 2.384510 -6.027617 4.739966 -2.299012 3.199410 -0.596205 0.752950 -0.319499 0.499384 -3.766198 1.647261 0.271396 -1.197521 2.457607 5.681952 2.346359 1.365054 -1.093640 4.696193 -1.594882 4.217757 -1.902216 3.735101 -1.561536 -3.972896 1.158951 -0.469027 -2.056081 -1.678221 2.581330 4.282399 1.991493 2.585902 3.480773 2.779690 5.327117 -1.477702 2.601096 -0.948847 1.861461 -1.116602 -1.604630 2.418357 2.176552 -1.084064 2.140924 -5.082892 -7.072766 -4.281309 -5.968200 2.150421 -2.992940 0.837788 -1.410230 -0.514485 -4.789053 -2.601293 0.991202 -1.116577 4.310278 2.958147 0.879085 2.652765 4.698513 -3.277458 0.635955 1.684040 2.951800 0.833996 -1.489656 -4.204246 3.498180 -2.830518 0.211195 5.180516 -1.940481 1.788466 -0.864630 2.777071 -3.468423 5.204653 0.643398 -2.067414 4.652301 2.862938 3.309809 3.053184 -1.603618 -PE-benchmarks/biconnectivity.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/biconnectivity.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/biconnectivity.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/biconnectivity.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/biconnectivity.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/biconnectivity.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/weighted-job-scheduling.cpp__jobComparataor(Job, Job) = 0.940701 -0.715008 3.084285 2.190793 -0.885701 -0.020695 0.362210 -1.157531 0.974352 0.024545 -0.724832 0.800016 -0.935009 0.607894 -0.486354 1.468154 -2.683875 -0.776024 -0.397691 -1.035406 -0.595205 -0.357757 0.831800 0.229503 1.670357 1.242209 -0.823026 -0.509968 -0.383480 -1.352178 0.542509 -0.528395 0.738774 0.598065 0.566277 -2.799345 1.657131 0.821144 -0.698922 -1.453293 1.021221 -0.571844 -0.079531 -1.058653 -0.425127 0.472339 0.469093 1.769281 1.108447 1.027578 -0.416444 0.263087 1.226968 2.660153 -0.454072 0.723311 0.981768 -0.455292 -0.132686 -0.056974 0.401717 -0.199979 0.144680 0.151622 0.424225 -1.736826 -0.731317 -1.139138 -0.500319 1.126403 -0.009171 -0.283403 -1.613634 -0.732932 -1.198991 -0.121188 -3.215056 2.235842 1.840524 -1.962019 0.787521 0.222058 0.194260 0.088323 0.061676 0.345496 0.728965 0.627211 0.092231 -0.109855 -0.464250 -1.164313 0.722276 -1.402479 -0.677243 -3.189281 0.920304 -2.104832 -1.493093 0.581312 1.123831 -0.931231 0.435036 -0.334452 0.290155 0.721069 -0.642778 -0.787530 0.360827 -0.072976 0.380514 -0.168085 -0.016974 0.237932 -0.236884 0.052331 -2.171178 0.873150 -0.030690 -0.123818 0.402447 1.007759 0.343048 -0.033658 -0.111779 0.621138 -0.602663 2.086508 0.118706 1.103030 0.044597 1.099068 -0.182783 1.444852 1.320517 0.012535 -0.618937 0.267223 -0.717521 0.550465 -1.112477 0.017774 -0.257751 1.206839 0.681355 -0.993372 -1.617047 -0.792780 -1.399603 -1.572351 0.488344 -0.786075 -0.823957 1.061471 1.019516 1.102763 1.111778 0.806741 -1.263570 -0.115198 -0.210082 0.078210 1.058073 0.395286 0.957768 -0.817093 -0.438049 0.722556 0.144812 0.630660 0.044720 0.164630 0.716405 -1.404386 0.138294 0.932483 1.017501 -0.463072 1.076041 1.251533 0.697573 -0.266514 -0.285112 1.172222 -0.652327 -0.445284 0.585812 -1.404314 0.994247 0.164825 0.732987 1.082561 0.101101 -0.099402 0.768262 -0.420543 0.161909 -0.493790 -0.346527 -0.641114 -0.533173 -0.675683 0.945003 -0.622299 -0.391842 -0.594323 -0.794427 1.831212 -1.956595 -0.290320 1.527441 -0.946487 0.787738 -1.272344 2.474672 -0.941242 0.907268 0.161623 -0.401746 0.173598 -0.797461 -1.436150 0.115581 0.501377 0.089981 -0.100501 1.331066 0.881244 -0.174883 -0.153753 1.486385 -0.806784 1.844448 -0.295926 1.149135 -0.648261 -0.290605 -0.184393 -0.039886 -0.773476 -0.622827 0.622282 1.816080 -0.179385 1.309521 1.225420 0.477631 1.791195 -1.055471 1.066647 -0.562557 0.826648 -1.025046 -0.808043 0.706008 0.779922 -0.398998 0.714963 -1.981995 -2.020607 -2.741904 -0.631017 -0.351367 -0.906510 0.720915 -0.866165 -0.527696 -1.071929 -1.372469 1.142947 -0.268400 -0.710927 1.193580 -0.076015 1.184279 1.269866 -0.403649 -0.001844 -0.054202 0.727693 0.682068 -0.123006 -1.533953 1.459779 -1.343779 -0.212595 2.428222 -0.994191 0.634266 -0.205947 1.410214 -1.256100 1.563593 0.274436 -1.326072 0.871880 2.099712 0.699353 0.471824 -1.010848 -PE-benchmarks/weighted-job-scheduling.cpp__latestNonConflict(Job*, int) = -0.767458 -2.117851 3.545879 2.686986 0.146121 0.799243 1.194373 -0.722153 0.875474 1.807294 -0.866180 1.896687 -2.028796 -0.128997 0.461048 1.006668 -2.051322 -1.857876 0.046535 -0.621367 -0.886165 -1.290936 -0.405267 1.888621 1.738551 0.506998 -1.290121 -0.282114 -2.569476 -3.010907 -0.950534 -0.375692 1.476625 0.302663 1.351208 -3.321392 1.727558 2.304435 -0.064855 -2.462374 0.850734 -0.931680 0.156866 -0.023731 -0.172851 1.348485 1.737309 0.827836 1.018192 1.070499 0.392241 -0.874318 1.198414 2.409317 0.359521 1.761017 1.966495 -1.004404 0.188239 -0.451735 0.392682 -1.668025 1.083430 0.551486 -0.866402 -1.050679 0.151298 -0.469643 -1.232818 1.169114 0.976662 -1.148444 -1.603103 -1.344301 -1.508256 -0.647571 -0.052365 1.335618 3.068625 -1.386342 2.709249 1.132278 1.325128 0.007382 1.377115 -0.125291 1.893656 0.487633 -1.202847 -0.140485 -1.710559 -1.549475 -0.311364 1.721151 -0.858445 -0.502223 0.935693 -2.337288 -2.861799 1.177081 0.050454 -1.025004 -1.694604 0.418054 1.135153 1.161182 -0.309067 -2.007393 -1.064912 0.586667 -1.171600 -0.649982 -0.218648 -0.302890 -0.824637 0.337588 -2.541734 0.452677 1.124953 -1.173670 -0.930667 1.991130 -0.366037 1.865399 0.129369 0.794157 0.005342 1.568012 1.275802 0.818776 0.357063 -0.852494 -2.214196 -0.056722 0.604188 0.151110 -1.267720 -0.473125 0.117903 0.804947 -0.346856 1.170719 -0.677492 3.117165 1.862010 -1.201377 -1.993849 -1.816628 -1.285064 -1.493742 0.719094 -1.028866 -0.833215 0.096131 1.481183 0.133198 0.230040 2.213081 -1.124622 1.083585 0.200390 -0.367109 0.677869 -0.369603 1.327569 -1.578268 -1.025473 1.336718 1.667446 0.989414 0.075336 -0.319971 0.761337 -1.394681 -1.497664 1.064560 0.249959 0.432052 2.109981 1.615940 4.246622 -1.202921 -0.224767 0.503756 -0.228909 -0.473109 0.449071 -2.102420 1.150721 0.182578 0.378713 2.782683 0.099050 -1.282631 1.423102 -0.003038 0.263134 -1.855790 1.328193 -1.299860 0.619074 -0.707834 -0.460453 -1.385468 -0.863870 -1.329895 -0.377214 2.937372 -0.881573 -2.725303 1.248277 -0.782359 1.606791 -3.541393 2.740077 -1.179626 1.337460 -0.877179 -0.879041 0.162554 0.072300 -0.511813 0.694267 0.821835 -0.646431 0.947868 1.615284 0.663050 0.407192 0.315659 1.239332 -0.040380 0.971708 -0.642435 1.160256 -0.321222 -0.050962 -0.805551 -0.453928 0.383967 0.908237 -0.513413 0.295823 1.260751 -0.293568 0.821570 1.579861 0.902637 -1.125312 0.790338 -0.210487 2.293347 -1.555632 -1.194862 -0.395412 0.848951 0.054403 1.099133 -2.975508 -1.873950 -1.035387 -2.863784 -1.238207 0.825001 1.118369 0.443444 -0.383510 -2.159894 -1.446337 2.411527 0.317340 2.074876 1.243627 0.391666 2.114946 1.289694 0.204856 -0.939179 -0.467625 0.274720 -0.515215 -0.554334 -1.120083 1.030448 -2.070670 1.503839 2.062296 -1.245137 1.013199 -0.822216 1.664032 -2.512668 2.741019 1.021776 -2.187188 0.791633 1.764286 2.176405 -1.859649 -1.589110 -PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -2.238773 -4.428728 8.887945 5.698269 -1.107154 2.059871 2.209758 -2.629342 1.235354 1.736964 -1.624724 4.191988 -4.144016 -0.623457 -1.374183 0.800341 -5.892351 -3.783697 -1.186638 -3.081637 -2.493514 -1.991548 -1.441187 5.014968 3.890310 0.897000 -3.034334 -0.279971 -6.406253 -5.509263 -1.583164 -0.306810 2.947988 -0.851225 3.144042 -9.765089 4.196127 5.725554 -0.823904 -4.882769 2.535184 -2.482867 -0.437855 -0.447969 -2.908655 1.425457 2.701425 0.931180 2.013583 1.182566 0.567608 -0.465908 2.212503 8.903476 0.750163 4.319931 4.871638 -2.201329 0.447676 -0.180809 0.498634 -3.124901 1.777700 0.014673 -1.330703 -2.832169 0.770820 -1.660980 -1.612107 2.716178 1.656703 -3.909388 -2.099320 -3.349335 -6.607371 -2.096860 1.475471 3.417024 6.389353 -4.215898 5.621956 1.585968 2.086207 1.017938 3.811138 0.228546 5.186430 1.144154 -1.373056 0.276268 -3.171009 -1.338087 -0.027972 3.612097 -2.981424 -3.956954 3.427567 -8.683973 -6.881062 3.050872 0.927889 -3.627634 -2.984148 -0.641839 1.551294 1.565632 -2.047599 -4.317568 -2.586657 2.735207 -2.146054 -0.901738 0.294866 -0.127396 -0.517217 0.278379 -5.809290 2.864423 2.638829 -1.184480 -2.508760 5.657814 -0.435221 3.339336 0.257727 2.465586 -1.261436 3.941846 1.063367 1.390596 -2.140909 -0.344217 -3.984465 -1.652899 1.139887 0.104431 -3.283070 -1.869390 0.291263 2.272622 -1.108662 2.857682 -2.245702 7.004038 2.340415 -2.517144 -4.166262 -4.058506 -4.079671 -5.084633 -0.096924 -1.892841 -4.947807 2.067916 3.494810 2.299888 0.456176 4.119096 -0.521836 2.133293 0.553518 -2.149503 1.857411 -3.632845 3.070225 -3.778068 -2.856745 2.637219 1.856434 4.320083 0.076292 0.089693 0.976927 -3.290715 -3.465591 1.660032 1.853941 1.156070 5.239835 5.406911 8.648311 -4.213852 -0.226637 1.102661 -2.157275 -0.909831 0.503168 -4.127041 0.813697 1.786042 -0.668510 7.261700 0.337042 -2.305308 2.769159 -0.232219 1.301378 -4.479537 2.454746 -2.611489 1.113818 -1.870329 -1.627602 -3.541424 -1.553190 -4.483325 -4.483212 6.988008 -7.272880 -6.206135 4.442151 0.284272 4.416943 -8.263545 5.724246 -2.657304 5.944475 -0.967709 -1.536107 0.342871 0.320558 -2.615462 3.661864 1.343004 -3.191208 1.839639 4.117039 1.916094 2.194190 -0.507238 3.867946 -1.699301 2.933687 -2.858516 3.530040 -0.882576 -2.746672 -1.646585 -0.966935 -0.408308 1.513458 1.374058 0.271325 2.133954 0.859770 1.054187 5.016098 2.612601 -2.379085 1.330741 -0.985111 4.037566 -3.579584 -3.291983 0.045280 3.218910 1.113090 1.333479 -7.526056 -4.990451 -6.877520 -6.294911 -1.168407 0.322821 1.676692 0.908249 -1.263645 -5.541822 -3.983340 6.485838 -0.202975 4.471893 3.848317 1.578683 5.255161 3.695819 0.388882 -0.892413 -0.054743 1.908016 -0.467232 -0.929970 -4.255945 3.371211 -5.084621 3.376772 5.537937 -2.366363 3.800302 0.605311 2.482967 -6.155062 6.092703 1.952771 -6.041422 1.851980 5.780353 3.406561 -2.699262 -3.631313 -PE-benchmarks/weighted-job-scheduling.cpp__void std::sort(Job*, Job*, bool (*)(Job, Job)) = 0.010073 -0.481443 2.128567 1.496111 -0.484139 0.015106 0.540143 -0.953320 0.890385 -0.093378 -0.241999 0.322726 -1.047050 0.464790 -0.427262 0.974713 -1.773950 -0.757899 -0.371374 -0.994979 -0.292759 -0.371329 1.000678 -0.016434 1.166098 0.616121 -0.694353 -0.686033 -0.782276 -0.756446 0.929794 -0.500689 0.853946 0.415237 -0.223621 -2.741807 1.209850 0.743499 -0.717948 -0.898935 1.073979 -0.766722 0.091516 -0.792036 -0.498132 0.153711 0.052422 0.606618 1.048201 0.489178 0.124676 0.374071 0.502382 1.998212 -1.047482 0.523332 0.367949 -0.354811 -0.576236 0.023367 0.170066 0.133423 0.521124 0.297048 -0.121933 -1.459550 -0.371686 -0.960174 -1.095773 0.795586 -0.160832 0.016733 -0.935247 -0.150665 -0.821517 -0.306874 -0.750843 1.224984 1.388947 -1.115544 0.761990 -0.151375 -0.165679 -0.116786 0.026451 0.414909 0.431886 0.278861 0.124235 -0.392894 -0.513621 -0.209968 0.434758 -0.099877 -0.304454 -1.829322 0.809582 -0.884914 -1.131529 0.152045 0.846674 -0.599842 -0.507593 -0.189450 0.096232 0.732277 -0.652288 -0.884633 0.006021 0.076957 0.309929 -0.206890 -0.189409 -0.274748 -0.480847 -0.667782 -1.492823 0.494736 -0.313661 -0.266584 -0.214111 0.813328 -0.319307 -0.218518 0.076813 0.792783 -0.749871 1.415075 -0.322992 0.751864 0.310545 0.453983 -0.264666 -0.057206 0.923453 1.188968 -0.531301 -0.259689 -0.972038 0.163925 -0.972756 -0.308220 0.192626 0.750731 0.985604 -0.842765 -0.810772 -0.202109 -0.443596 -1.736461 0.209801 -0.742249 -0.154569 0.815811 0.832267 0.554472 1.109338 1.506911 -0.823125 0.366134 -0.073756 -0.469142 1.230484 0.340573 0.914776 -0.599693 -0.592172 0.370526 -0.054192 0.582308 -0.127098 0.383321 0.218193 -1.286382 -0.187157 0.378355 0.603123 -0.290290 0.648860 0.916770 0.933433 -0.711363 0.188860 1.025384 -0.513598 -0.099774 0.393451 -1.119832 0.479874 0.356684 -0.250781 0.904038 0.075699 -0.636405 0.418447 -0.357716 0.267947 -0.695761 0.018028 -0.552816 -0.138326 -0.813187 0.003012 -0.385439 -0.627596 -0.490491 -0.545999 1.346785 -1.073311 -0.662989 1.113648 -0.247408 0.577637 -1.584678 1.794761 -0.861619 0.816558 -0.406338 -0.186746 0.056038 -0.094881 -1.173035 0.173608 0.336059 -0.112751 0.352439 1.518733 0.845806 0.016756 -0.312535 1.300892 -0.270493 1.413263 -0.354116 1.126588 -0.406469 -0.535579 0.265921 -0.169663 -0.560448 -0.500376 0.518996 1.449075 0.463588 0.852480 1.038398 0.552279 1.607063 -0.634124 0.888568 -0.266974 0.788688 -0.300948 -0.438758 0.605269 0.837217 -0.277137 0.753664 -1.494945 -1.961294 -1.156655 -1.215181 0.258948 -0.333950 0.426786 -0.450814 -0.071309 -1.264497 -0.813782 0.395747 -0.417148 0.986267 0.738022 0.145360 0.767326 1.122134 -0.776801 -0.128555 0.184892 0.759439 0.439232 -0.187629 -1.230296 1.147510 -0.967984 -0.060367 1.605253 -0.734931 0.328935 -0.317137 1.231336 -0.896448 1.581526 0.192951 -0.644552 1.397080 1.003634 0.842198 0.628582 -0.589535 -PE-benchmarks/weighted-job-scheduling.cpp__int const& std::max(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/weighted-job-scheduling.cpp__main = 0.288479 -0.493912 1.567500 1.051719 -0.506072 -0.045153 0.331176 -0.405339 0.433390 -0.686374 -0.425629 0.392680 -0.743001 0.343096 -0.609541 0.365075 -1.495514 -0.663673 -0.216422 -0.384389 -0.145082 -0.213664 0.580440 0.297980 0.815110 0.976720 -0.490663 -0.403424 -0.751692 0.084949 0.756654 -0.286544 0.553377 0.760772 0.063216 -1.644943 0.606302 0.509765 -0.394383 -0.816180 0.706230 -0.590952 -0.052001 -0.996530 -0.324157 0.087253 0.194314 0.941830 0.473671 0.203839 -0.554321 0.149580 0.155956 1.308768 -0.431338 0.306767 0.636857 -0.099409 -0.129160 -0.246517 0.209402 -0.031280 0.170448 0.205698 -0.159653 -0.890200 -0.350394 -0.968757 -0.464659 0.568963 0.092961 0.383825 -0.740491 -0.165743 -0.857902 -0.015800 -0.622784 1.143425 1.032971 -1.030158 0.527656 -0.058227 0.193861 -0.043226 -0.047969 0.385120 0.127201 0.319629 0.146952 -0.240526 -0.988925 -0.199664 0.178384 -0.609265 -0.280615 -1.572607 0.600559 -1.189038 -0.756659 0.028387 0.491699 -0.513498 0.315000 0.133563 0.015838 0.589715 -0.402312 -0.400900 0.209147 -0.003618 0.228566 -0.033478 0.100433 0.394696 -0.249672 -0.690485 -1.152943 0.497273 -0.081088 -0.163122 0.436266 0.569480 -0.261002 0.018451 -0.011666 0.261442 -0.451578 1.206731 0.085058 0.131640 0.193043 0.209062 0.261836 0.228928 0.683110 1.197987 -0.671271 -0.114966 -0.377941 0.182023 -0.472081 -0.669307 0.036873 0.261891 0.122419 -0.860328 -0.749719 -0.511686 -0.624020 -1.092090 -0.039945 -0.461064 -0.214688 0.841727 0.576416 0.744762 0.665333 1.133552 -0.584636 0.158347 0.062313 -0.246396 0.539610 0.461663 0.520181 -0.395174 -0.431450 0.398679 -0.321826 0.492938 -0.032875 0.208985 0.229423 -0.962758 -0.154899 0.460437 0.636401 -0.140598 0.613333 0.699758 -0.574458 -0.448496 -0.044701 0.621527 -0.366562 -0.253619 0.402181 -0.767420 0.583291 0.107463 0.005249 0.511690 0.080923 -0.304843 0.459466 -0.191757 0.150550 -0.417131 -0.187934 -0.324808 -0.268960 -0.748094 0.507912 -0.232004 -0.359649 -0.449206 -0.638820 1.014550 -0.968030 -0.392983 0.526002 0.075890 0.707519 -0.998551 0.670608 -0.536638 0.949382 0.263576 -0.093180 0.195382 -0.643303 -0.808950 -0.098153 0.266159 -0.057973 0.007274 0.691182 0.596774 -0.129185 -0.020014 0.843735 -0.253088 0.973916 -0.233921 0.394152 -0.296903 -0.585171 0.326893 -0.069181 -0.364375 -0.268891 0.456334 1.361269 0.216514 1.126347 1.064910 0.294002 1.063830 -0.529466 0.130884 -0.267073 0.651760 -0.360836 -0.386277 0.187715 0.686430 -0.191059 0.400134 -1.033692 -1.766511 -1.216962 -0.948882 0.125077 -0.914849 0.253732 -0.343528 -0.129354 -0.849474 -0.631969 -0.038526 -0.286348 0.829739 0.651016 -0.064008 0.653535 0.685317 -0.801807 -0.074939 0.672195 0.909397 0.301306 0.156787 -1.217932 0.742075 -0.714045 -0.144033 1.528032 -0.670386 0.345275 -0.315163 1.175534 -0.628989 1.284520 0.256450 -1.073550 0.627841 0.709067 0.413832 0.844780 -0.536351 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.067239 -1.316348 4.732736 2.966568 -0.815657 0.670121 0.278909 -1.834284 1.124838 -0.362459 -0.908119 1.605862 -1.655612 0.715650 -1.774522 1.051429 -3.528744 -1.570543 -0.904329 -1.802835 -0.504593 -0.743845 0.643819 1.315092 2.117921 1.241720 -1.683049 -0.143163 -2.632274 -2.471224 0.731443 -0.674480 1.373690 -0.499212 0.732270 -4.339055 2.661700 2.251860 -0.883469 -2.290391 1.900084 -1.383704 -0.333148 -1.116535 -1.162058 0.776654 0.546644 0.908755 1.696723 0.864456 -0.455276 0.805729 0.994645 3.544265 -1.154377 1.406385 1.365200 -0.825186 -0.151614 -0.150382 -0.051024 -0.314250 0.465154 0.157455 -0.277565 -2.654078 -0.170649 -0.952158 -1.075518 1.553024 -0.166275 -0.658168 -1.456627 -0.677424 -3.266492 -0.331772 0.192171 2.210388 2.820592 -1.655003 1.701145 -0.277649 0.283835 0.454964 0.863030 0.720784 1.251309 0.769392 -0.074909 -0.465910 -1.483410 -0.009432 0.462044 0.255361 -1.212144 -3.421909 1.571756 -4.407433 -2.314152 0.725462 1.186321 -1.867055 -0.468860 -0.601364 0.435016 1.096156 -1.001739 -1.622546 0.362021 1.016554 0.242316 -0.308697 0.510709 -0.653471 -0.288545 -0.566711 -2.705692 1.563238 0.254246 -0.108357 -0.393208 2.224480 -0.051599 0.078338 0.047856 1.710017 -1.381881 2.233977 -0.292399 1.287367 -1.025162 0.756960 -0.506018 -0.019495 1.218552 0.483516 -1.845908 -0.612115 -1.255335 0.693394 -1.311250 -0.109588 -1.037100 1.642566 1.248455 -1.644652 -1.652057 -1.072666 -1.743338 -2.875374 -0.276473 -0.801837 -2.517518 1.224042 1.646592 1.160693 1.670471 2.168012 -0.831768 0.092036 0.033494 -1.008905 1.959844 -1.001880 1.459379 -1.389577 -1.228456 1.269857 -0.134353 1.600793 -0.091391 0.470756 0.689948 -2.019104 -0.048911 1.297018 1.531380 0.252915 2.142552 2.405396 1.151661 -1.074446 -0.258642 1.558329 -1.558279 -0.392820 0.486795 -1.887544 0.708089 1.155487 0.149098 2.794633 0.100801 -0.936074 1.370431 -0.181983 0.830138 -1.664945 0.279405 -1.211215 0.027179 -1.234241 -0.441314 -1.130573 -0.791551 -2.000462 -2.437072 2.842378 -3.307871 -2.025476 2.268080 -0.140888 1.730298 -3.354173 1.625044 -1.619490 2.706465 0.665271 0.313570 0.272833 -0.613717 -2.513544 0.946197 0.700260 -0.970143 1.169875 2.028724 1.530519 0.136635 -0.667497 2.318058 -1.110223 2.317922 -1.177559 1.499423 -0.924734 -1.155259 0.118150 -0.233464 -1.309474 -0.656058 1.214561 1.044033 0.370937 1.725701 1.432372 1.880431 2.485312 -0.948736 1.085430 -1.182477 1.072328 -1.201938 -1.527143 0.782818 1.953088 0.241137 0.992652 -3.535317 -3.543441 -4.058585 -2.969874 0.571942 -1.254711 0.459707 -0.306977 -0.498730 -2.695752 -1.943296 2.253088 -0.259430 2.421292 1.973559 0.153988 1.649833 1.949864 -1.110970 -0.089853 0.228885 1.538966 0.618525 -0.171827 -2.729508 2.444894 -1.993214 0.226643 3.596205 -1.875404 1.340973 0.029010 1.107826 -2.464301 3.090941 0.771195 -2.211659 1.678612 1.900154 1.470177 0.645611 -1.388127 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(bool (*)(Job, Job)) = -0.038897 -0.261324 1.108302 0.770612 -0.347610 0.013688 0.122280 -0.499709 0.420417 -0.280896 -0.182251 0.175299 -0.571122 0.264959 -0.342378 0.402727 -1.014856 -0.414301 -0.265133 -0.475949 -0.148446 -0.210466 0.508823 0.106769 0.555519 0.560858 -0.411397 -0.156803 -0.447395 -0.347787 0.492326 -0.239662 0.452360 0.374233 -0.064399 -1.317142 0.616633 0.445141 -0.357594 -0.478285 0.555762 -0.452353 0.022680 -0.541367 -0.392561 0.097282 -0.032706 0.220047 0.509795 0.140570 -0.037224 0.198656 0.190809 0.879759 -0.493368 0.262745 0.234284 -0.152259 -0.275980 -0.107505 0.086640 0.125574 0.244830 0.180859 -0.149775 -0.760022 -0.189715 -0.542585 -0.544538 0.467577 -0.189381 0.064470 -0.476716 -0.156635 -0.585783 -0.125270 -0.120965 0.655762 0.729348 -0.589864 0.346206 -0.124319 -0.103949 -0.037515 0.031370 0.231928 0.249109 0.170774 0.103579 -0.135550 -0.208563 -0.050409 0.227353 -0.012412 -0.202401 -0.857524 0.444487 -0.807198 -0.586293 0.027815 0.429934 -0.343249 -0.197154 -0.052729 0.016003 0.371798 -0.304498 -0.423211 0.140930 0.085324 0.245550 -0.076892 -0.099598 0.035613 -0.229001 -0.367227 -0.820022 0.299471 -0.171696 -0.125811 0.069037 0.447438 -0.158737 -0.128793 0.032000 0.367965 -0.404503 0.860922 -0.204355 0.318399 -0.030770 0.271059 0.116109 -0.104065 0.439414 0.605973 -0.420046 -0.207042 -0.444587 0.042290 -0.515385 -0.331764 -0.025608 0.247607 0.458174 -0.466677 -0.432465 -0.135821 -0.483329 -1.081578 -0.019384 -0.389479 -0.161547 0.604462 0.440193 0.384717 0.589004 0.924935 -0.384382 0.080500 0.009390 -0.353181 0.635850 0.174830 0.459626 -0.306831 -0.367236 0.312207 -0.187033 0.375706 -0.014442 0.202033 0.071483 -0.674716 -0.088523 0.395913 0.388866 -0.006874 0.386388 0.508984 0.164289 -0.270694 0.138745 0.533128 -0.246374 -0.058568 0.199501 -0.556413 0.255993 0.191527 -0.097170 0.452024 0.026636 -0.255590 0.202064 -0.179185 0.220847 -0.467028 0.006864 -0.271803 0.064774 -0.549704 0.005684 -0.147400 -0.314526 -0.279615 -0.417289 0.713856 -0.721093 -0.356712 0.603782 0.084433 0.507358 -0.784317 0.540827 -0.441851 0.776767 -0.069217 -0.037295 0.110485 -0.348746 -0.591647 0.065670 0.180181 -0.028907 0.065109 0.643731 0.461705 -0.039826 -0.155782 0.673903 -0.131928 0.802556 -0.207579 0.519453 -0.149394 -0.325140 0.250667 -0.106013 -0.375150 -0.267514 0.305335 0.805330 0.291283 0.602002 0.623380 0.260929 0.860013 -0.332018 0.338850 -0.147153 0.370651 -0.183140 -0.274046 0.300143 0.607260 -0.139591 0.298353 -0.768180 -1.185661 -0.832544 -0.717942 0.118726 -0.349308 0.208365 -0.209981 -0.052411 -0.541076 -0.446148 0.350759 -0.242716 0.894479 0.339900 0.061388 0.414867 0.618361 -0.499002 -0.067090 0.231525 0.498127 0.235851 0.066996 -0.812703 0.649018 -0.462142 -0.090706 0.940437 -0.487321 0.233289 -0.106462 0.613313 -0.471927 0.867993 0.123999 -0.451973 0.754240 0.422349 0.306424 0.523280 -0.338104 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__introsort_loop >(Job*, Job*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -0.032955 -1.926787 7.085330 4.446622 -0.916776 0.771677 0.752925 -2.777029 2.233757 0.010807 -1.346265 2.317278 -2.715389 1.035523 -2.220605 1.955747 -5.225438 -2.654213 -1.191111 -2.739130 -1.141101 -1.297601 1.197115 1.538525 3.336385 1.383650 -2.601784 -0.298919 -3.867532 -3.952323 1.003182 -1.154417 2.024695 -1.083987 0.957994 -6.759223 4.113233 3.188849 -1.381156 -3.448424 2.792300 -2.215763 -0.369968 -1.687547 -1.247523 1.028016 1.047459 1.786751 2.758290 1.415696 -0.303802 0.995835 1.146033 5.824998 -1.994555 2.161902 2.179052 -1.240451 -0.706420 0.052788 0.124012 -0.731538 0.942653 0.562634 -0.702952 -3.900089 0.030447 -1.624013 -1.879887 2.495302 0.095767 -1.237959 -2.250224 -1.111552 -4.269698 -0.589717 0.291720 3.257255 4.480652 -2.698678 2.690010 -0.203195 0.713021 0.656790 1.192438 0.815685 2.349103 1.038126 -0.439372 -1.315699 -2.530861 -0.310001 0.572245 0.656662 -1.430081 -4.567435 2.319867 -5.821060 -3.786949 0.930965 1.807797 -2.489611 -1.368394 -0.494176 1.080144 1.657894 -1.208009 -2.613591 0.125973 1.232497 -0.189323 -0.517129 0.520639 -1.323267 -0.778262 -0.716407 -4.437420 1.988086 0.312078 -0.439949 -1.110485 3.228735 -0.621025 0.248425 0.129422 2.567770 -1.755893 3.207063 -0.275338 1.998181 -0.762212 0.915206 -1.394731 0.109512 1.898849 1.054956 -2.525424 -0.435425 -1.873177 0.969687 -2.333125 -0.096955 -1.730205 3.047718 1.832579 -2.694368 -2.816403 -1.578724 -2.265109 -4.147096 0.103007 -1.580072 -3.410665 1.351875 2.564316 1.811386 2.415726 3.805186 -1.800678 0.831068 0.153759 -1.241000 3.005996 -1.424745 2.449199 -2.303507 -1.791520 1.751468 0.242059 1.901621 -0.322971 0.514993 1.102024 -3.551007 -0.565013 1.697589 1.871052 0.272020 2.999822 3.340105 3.006872 -2.428811 -0.108908 2.484509 -1.942665 -0.686504 0.844211 -3.053482 1.136270 1.536427 0.666085 4.315062 0.367082 -1.956025 1.716896 -0.197415 1.124939 -2.438325 0.499057 -1.795575 -0.050208 -1.525448 -0.517636 -1.788229 -1.221939 -2.719017 -3.126536 4.370820 -4.355698 -3.687030 3.597681 -0.580484 2.776350 -5.478737 3.311367 -2.544094 3.650624 0.356688 0.361637 0.269853 -0.649142 -3.633467 1.679206 1.076416 -1.097563 1.882824 3.428643 2.271007 0.705549 -0.903231 3.411422 -1.500856 3.493084 -1.472073 2.475033 -1.338857 -1.883025 -0.084374 -0.446499 -1.671602 -0.726758 1.534066 1.682113 1.016155 2.174756 2.471137 2.681960 3.834634 -1.680489 2.041278 -1.490068 1.968250 -1.751140 -2.190590 1.290667 2.458258 0.043275 1.871274 -5.299098 -5.282987 -5.064719 -4.863608 0.645911 -1.519440 0.879037 -0.677610 -0.664163 -4.099735 -2.716948 3.275127 -0.203836 4.052987 2.827597 0.378458 2.495879 3.024666 -1.719596 -0.406279 0.201289 1.934111 0.708820 -0.717419 -3.851169 3.554223 -3.078820 0.530718 5.217841 -2.682459 1.732406 -0.487705 1.608992 -3.645057 4.619367 1.175070 -3.127651 2.598161 2.870837 2.948975 0.598516 -2.243719 -PE-benchmarks/weighted-job-scheduling.cpp__long std::__lg(long) = -0.157550 -0.567777 0.532341 0.455388 0.050301 0.173314 0.413470 0.111758 -0.022268 0.138693 -0.101964 0.335858 -0.551191 -0.129665 -0.070520 -0.057399 -0.220479 -0.410135 -0.016356 0.051178 -0.027842 -0.220135 -0.155236 0.573260 0.302275 0.065434 -0.164064 -0.193172 -0.789864 -0.017803 -0.164226 0.023041 0.282443 0.240315 0.254576 -0.235931 0.049826 0.540817 0.029329 -0.415248 0.125391 -0.182540 0.118106 -0.226860 -0.070972 0.174434 0.368954 0.040715 0.008933 0.053767 -0.067237 -0.247440 0.215439 0.364834 0.174283 0.354603 0.508505 -0.003464 0.307582 -0.223449 0.078519 -0.327632 0.112249 -0.048181 -0.182983 -0.025557 -0.180034 -0.201147 -0.067853 0.087515 0.179822 0.096193 -0.369141 -0.222741 -0.581556 -0.156904 -0.274353 0.196221 0.533589 -0.446987 0.555600 0.354985 0.322385 0.061692 0.267052 0.091350 0.060189 0.101347 -0.150933 0.265663 -0.571834 -0.077572 -0.189829 0.171947 -0.267610 -0.288883 0.265343 -0.536029 -0.571636 0.267343 -0.140751 -0.198472 0.063829 0.162338 -0.084491 0.242765 -0.247187 -0.362322 -0.194785 0.090835 0.043767 -0.070451 0.176979 0.219664 -0.019748 -0.228733 -0.422659 0.110798 0.237980 -0.322172 0.035620 0.417311 -0.112446 0.561249 0.032419 -0.034056 -0.043217 0.368633 0.436918 -0.013070 -0.091658 -0.302738 -0.480073 -0.280475 0.117802 0.418562 -0.299328 0.001015 0.144857 0.146231 0.235521 0.157089 0.167922 0.371736 -0.078994 -0.325730 -0.247414 -0.484989 -0.374088 -0.191380 0.062879 -0.055641 -0.023482 0.160082 0.226445 0.100088 -0.067627 0.531376 0.056210 0.046290 0.057291 -0.215258 -0.082798 -0.050645 0.160662 -0.189025 -0.286559 0.271858 0.224137 0.364676 0.136344 0.005574 0.113556 -0.146178 -0.174662 -0.057827 0.024646 -0.175957 0.566987 0.325759 -0.085357 -0.155586 -0.038959 -0.033129 -0.011533 0.000775 0.054801 -0.379067 0.321239 -0.044596 -0.274499 0.258795 -0.004380 -0.132993 0.512444 -0.178301 0.076169 -0.382145 0.203409 -0.247290 -0.046436 -0.414218 0.202348 -0.195187 -0.216950 -0.216911 -0.080980 0.534541 -0.172283 -0.127978 -0.130686 0.490542 0.210031 -0.412869 0.422885 -0.100054 0.521388 0.085554 -0.228916 0.184866 0.144905 0.089631 -0.259616 0.162737 -0.324378 0.040127 0.039971 0.070968 -0.069812 0.209688 0.221271 0.022011 0.070115 -0.201874 0.030819 0.004357 -0.248751 0.022196 -0.081242 0.237231 0.238256 -0.058714 0.211097 0.220913 0.106767 0.128006 0.253930 0.099886 -0.166061 -0.238646 0.029597 0.558685 -0.363597 -0.104627 -0.298930 0.212208 0.057013 0.133161 -0.476646 -0.416534 -0.112685 -0.305015 -0.188571 -0.005121 0.043779 0.199726 -0.088723 -0.410232 -0.351452 0.118266 -0.120420 0.019060 0.223002 0.062507 0.500716 0.160143 0.021253 -0.148260 0.285056 0.274721 -0.050820 0.056081 -0.217451 0.064207 -0.494541 0.216196 0.382489 -0.211758 0.266070 -0.020926 0.480439 -0.463163 0.659566 0.200940 -0.638070 0.125793 0.590364 0.373310 -0.221814 -0.255650 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__final_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.496741 -1.253085 5.924774 3.749190 -1.371568 0.556468 0.021583 -2.653847 1.779646 -0.519416 -1.177671 1.671185 -1.980417 1.118474 -2.123001 1.819636 -4.840697 -1.722312 -1.250734 -2.438285 -0.929485 -0.856101 1.199949 1.063954 2.711155 2.181602 -2.069843 0.156803 -2.301854 -3.570802 1.101615 -1.004891 1.553349 -0.216337 0.810985 -5.401587 3.658837 2.489783 -1.324376 -2.602098 2.316183 -1.681525 -0.550060 -1.724351 -1.313775 0.897983 0.397724 1.668327 2.323371 1.112921 -0.611456 1.096921 1.374081 4.428056 -1.679178 1.607012 1.629611 -0.950287 -0.527400 -0.041781 0.077461 -0.077694 0.509062 0.407447 -0.218552 -3.552115 -0.186054 -1.426697 -1.322197 2.205299 -0.367893 -0.905742 -1.979493 -1.017355 -3.650697 -0.281944 -0.785101 2.988388 3.514747 -2.275806 1.723738 -0.372260 0.077446 0.553663 0.809899 0.781195 1.889570 1.020497 -0.040776 -0.719881 -1.205772 -0.431653 0.991777 -0.063802 -1.361912 -4.566664 1.907778 -5.558943 -2.828130 0.700563 1.841211 -2.190469 -0.531265 -0.831820 0.689360 1.099354 -1.076181 -1.868534 0.817069 0.901043 0.291306 -0.346722 0.371238 -0.588226 -0.414425 -0.181263 -3.687593 1.843964 -0.016035 -0.058809 -0.231043 2.471290 0.280061 -0.328453 -0.011687 2.085885 -1.646640 2.949784 -0.698661 1.907603 -1.118341 1.731286 0.065588 0.497918 1.807493 0.110257 -2.069712 -0.607494 -1.687817 0.804625 -2.159503 -0.350529 -1.666915 2.005550 1.514468 -1.994035 -2.206849 -1.072875 -2.472145 -3.823916 -0.071705 -1.261384 -3.174863 1.496842 2.081254 1.499043 2.308423 2.476713 -1.568714 0.017055 -0.042725 -0.856354 2.693776 -0.900096 1.928422 -1.716862 -1.400593 1.582896 -0.314608 1.682523 -0.210102 0.464746 0.896767 -2.740827 0.026819 1.956211 1.779328 0.097527 2.352531 2.805121 1.818213 -1.225443 -0.027985 2.245577 -1.771919 -0.512465 0.791123 -2.372858 0.959975 1.335743 0.879885 3.262383 0.209520 -1.046420 1.274627 -0.226174 0.946539 -1.914404 0.095653 -1.380999 -0.013811 -1.413457 -0.015491 -1.241801 -0.928941 -2.154334 -2.772388 3.411199 -4.401142 -2.249075 3.339337 -0.443151 2.340274 -3.768208 2.155029 -2.070934 3.158891 0.664817 0.336473 0.451142 -1.355624 -3.299926 1.170664 0.873526 -0.674628 1.120032 2.488034 1.974522 0.282305 -0.890574 2.918994 -1.512945 3.217814 -1.304494 2.108516 -1.081718 -1.358595 0.037952 -0.311847 -1.932549 -1.144079 1.587826 1.660700 0.405852 2.332009 2.034628 1.851806 3.387267 -1.363545 1.818551 -1.339317 1.003718 -1.466430 -1.828877 1.379260 2.284390 -0.066270 1.506002 -4.270027 -4.432802 -5.187175 -3.271203 0.392484 -1.589156 0.902593 -0.787035 -0.632164 -2.855759 -2.397539 3.284141 -0.331709 2.673739 2.348703 0.246959 1.837422 2.581388 -1.361403 -0.139690 0.092768 1.810986 0.973484 -0.200641 -3.474690 3.274236 -2.221133 -0.016824 4.563669 -2.399638 1.463946 -0.337541 1.513908 -2.819438 3.518182 0.801283 -2.458433 2.207394 2.546070 1.788616 1.197235 -1.753767 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__partial_sort >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.041749 -0.509296 2.950142 1.814997 -0.648309 -0.015761 0.541144 -1.369320 1.256090 -0.344766 -0.464953 0.502526 -1.225582 0.600743 -1.201777 1.191026 -2.466733 -1.071925 -0.504446 -1.463861 -0.450954 -0.421986 1.261615 -0.062916 1.556240 0.698680 -0.990675 -0.659692 -1.178730 -1.261830 1.103138 -0.737266 0.905804 -0.115144 -0.302757 -3.439097 1.743682 1.012676 -1.026145 -1.116072 1.492321 -1.100141 -0.008216 -1.071165 -0.734360 0.079068 0.090325 0.831161 1.431060 0.600733 0.187394 0.678212 0.520816 2.917797 -1.485125 0.718777 0.505559 -0.409948 -0.803375 0.187095 0.189209 0.112086 0.535987 0.343845 -0.149174 -2.000764 -0.370262 -1.169335 -1.167142 1.091121 -0.356115 -0.099792 -1.045656 -0.106855 -1.542707 -0.411932 -0.640182 1.494851 1.836351 -1.423586 0.933003 -0.273648 -0.104917 0.023561 0.026672 0.572330 0.728797 0.396972 0.155045 -0.694144 -0.623804 0.151882 0.547659 -0.079712 -0.388823 -2.666256 1.188810 -1.949420 -1.544817 0.134951 1.193627 -0.901119 -0.437080 -0.237877 0.205050 0.782566 -0.888077 -1.121591 0.184996 0.137381 0.316313 -0.160057 0.027341 -0.578632 -0.412562 -0.650727 -2.011369 0.769822 -0.434671 -0.209203 -0.356531 1.153250 -0.252926 -0.393364 0.112423 1.211273 -1.006560 1.738981 -0.584345 1.007305 -0.138165 0.892925 -0.360517 -0.047402 1.184365 1.064518 -0.914819 -0.221832 -1.268897 0.230349 -1.407668 -0.509610 -0.291680 0.956771 0.985867 -1.237722 -1.086588 -0.259266 -0.766417 -2.329893 0.132793 -0.890227 -0.928392 0.865807 1.121764 0.898950 1.548667 1.899406 -0.858930 0.400011 -0.040666 -0.672821 1.725844 -0.183771 1.290687 -0.832351 -0.753611 0.509884 -0.160285 0.860083 -0.236019 0.490168 0.311782 -1.852270 -0.081821 0.530758 0.940501 -0.252257 0.920563 1.290238 0.938285 -1.157448 0.244361 1.434096 -0.764570 -0.173612 0.501009 -1.408063 0.516035 0.646227 -0.053772 1.296708 0.232348 -0.798262 0.476617 -0.388392 0.477820 -0.975840 -0.124960 -0.684273 -0.233364 -0.881271 0.050561 -0.606072 -0.681075 -0.821170 -1.255277 1.722989 -1.982095 -0.996121 1.670437 -0.138100 0.976282 -2.112210 1.953391 -1.226017 1.499680 -0.236729 0.081380 0.086281 -0.191493 -1.735888 0.491782 0.402915 -0.242296 0.693871 1.852205 1.219557 0.311077 -0.524800 1.822261 -0.635333 1.944401 -0.473626 1.387084 -0.572501 -1.125702 0.367313 -0.188991 -0.989584 -0.642560 1.009487 1.665669 0.509638 1.191821 1.439421 0.872763 2.255397 -0.859132 1.138011 -0.520985 0.900407 -0.432888 -0.746048 0.898237 1.123256 -0.316447 0.906976 -2.123657 -2.692445 -2.155800 -1.761533 0.590524 -0.862596 0.411571 -0.671617 -0.069542 -1.740212 -1.083499 0.943192 -0.485253 1.459194 1.116177 0.200592 0.963062 1.500777 -1.076175 -0.109626 0.224345 1.071353 0.634466 -0.298820 -1.819638 1.635172 -1.327195 -0.092418 2.222334 -1.113356 0.423027 -0.088308 1.097454 -1.234039 2.002573 0.280715 -0.943381 1.801229 1.311123 1.179959 0.952118 -0.818514 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition_pivot >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.274932 -1.129650 5.792186 3.739847 -1.506002 0.673170 0.158792 -2.489631 1.380343 -0.364981 -0.660127 1.559897 -1.762212 1.028341 -1.827731 1.892186 -4.443310 -1.279997 -1.424292 -2.783072 -0.847366 -0.403974 1.091402 0.945705 2.703114 1.774149 -1.919354 -0.313061 -2.024458 -3.393691 0.999860 -0.776710 1.612191 -0.812754 0.506114 -6.070867 3.575153 2.590293 -1.398435 -2.356709 2.480357 -1.422505 -0.357857 -1.228506 -1.807196 0.701060 -0.011068 0.880591 2.234153 1.129369 -0.444739 1.602310 1.835196 5.036484 -1.616092 1.522388 1.467794 -0.932948 -0.774632 0.018280 -0.042737 0.183009 0.268084 -0.246597 0.302246 -3.732368 -0.516998 -1.314701 -1.126235 1.727250 -0.489867 -1.299554 -1.585549 -0.905697 -3.557673 -0.604195 -0.989359 2.844934 2.953268 -2.456676 1.476077 -0.775197 -0.568062 0.763431 0.757908 0.924321 1.411731 0.935447 0.525180 -0.374451 -0.192551 0.083860 1.308237 0.137611 -1.722296 -5.107097 2.044246 -4.531287 -2.659374 0.924773 2.037355 -2.292777 -0.531009 -1.569424 0.107523 1.064878 -1.470038 -1.662289 0.596248 1.113984 0.865972 -0.425944 0.075040 -0.692257 -0.179393 -0.265101 -3.345392 2.259510 -0.190679 0.317436 -0.595618 2.369550 0.557883 -0.577394 -0.029319 2.353358 -2.047721 2.891185 -0.934611 2.065401 -1.477563 1.909911 0.083446 0.006510 1.684337 0.156809 -1.971874 -0.981293 -2.011719 0.761067 -1.851315 0.159909 -0.999673 1.971815 1.806619 -1.551307 -1.691224 -0.727206 -2.290375 -3.882154 -0.273401 -1.140560 -2.946810 1.950309 1.841211 1.241337 2.205454 2.152055 -1.182539 0.011695 -0.067556 -1.193905 2.761609 -0.850654 1.649894 -1.628014 -1.377397 1.201381 -0.540110 2.018442 -0.345477 0.966600 0.820535 -2.278744 0.407705 1.625970 1.675442 -0.367339 2.243077 2.977927 2.591485 -0.963701 -0.239691 2.023169 -2.415505 -0.290773 0.611919 -2.113596 0.290912 1.615216 0.085770 3.323897 0.079776 -0.824490 1.344945 -0.425582 0.881127 -1.718652 0.449689 -1.363330 -0.110297 -1.330288 -0.587866 -1.277071 -0.794812 -2.258893 -2.863008 3.263943 -4.887111 -1.725172 3.058064 -0.098639 1.530649 -3.564225 3.037044 -1.944533 2.824331 0.424602 0.127849 0.428306 -0.730162 -3.455953 1.370720 0.742723 -1.070926 0.879884 2.805885 1.887063 -0.009256 -1.254591 2.984709 -1.628803 3.338841 -1.540865 2.530143 -1.173782 -1.418504 -0.116048 -0.183615 -2.168553 -1.389860 1.743945 1.359969 -0.142524 2.184454 1.154756 1.940323 3.410544 -1.182616 2.120727 -1.396841 0.932195 -1.317360 -1.724501 1.534208 2.562276 0.401524 1.291946 -4.172368 -3.784849 -5.238317 -2.761102 0.736498 -0.870940 0.763268 -0.830266 -0.754325 -2.898066 -2.595924 3.207686 -0.537460 1.961266 2.318302 0.369698 1.836267 2.382937 -0.919122 0.138210 -0.201728 1.671998 1.368982 -0.273796 -3.018079 3.249290 -2.061501 -0.399148 4.261427 -1.892907 1.737349 0.105535 1.101102 -2.664532 3.310212 0.469567 -2.082381 2.338960 3.027894 1.366985 0.989384 -1.512986 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__heap_select >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.603897 -0.917991 3.904726 2.535606 -0.478032 0.233117 0.769617 -1.807695 1.915057 0.259844 -0.649702 0.810993 -1.985886 0.580597 -0.468694 1.428424 -3.199299 -1.786529 -0.454556 -1.742436 -0.852715 -1.190004 1.252615 0.362377 1.920343 1.189013 -1.491901 -0.346253 -1.959375 -2.544141 1.055730 -0.961003 1.506076 0.667248 0.212225 -4.636064 2.451846 1.573673 -0.946632 -1.790972 1.650454 -1.618783 0.184892 -1.012184 -0.308414 0.871663 0.578095 1.014662 2.146951 0.710351 0.443715 0.097957 0.207962 2.720577 -1.770743 1.085827 0.653615 -1.059615 -1.074752 0.051254 0.147953 -0.445101 1.233343 0.974092 -1.105817 -2.359164 0.312260 -1.324083 -2.110298 1.823683 0.215188 -0.542224 -1.532789 -0.563300 -1.643563 -0.621769 0.642434 1.738254 2.882782 -1.223663 1.809363 -0.086674 0.427945 -0.193455 0.651397 0.311592 1.985822 0.310840 -0.600991 -1.062562 -1.658871 -0.744488 0.216163 1.278618 -0.191207 -1.399740 1.020341 -2.519451 -2.362188 0.122811 1.121557 -0.957967 -2.206766 0.307081 1.131460 1.111243 -0.412410 -1.943654 -0.179565 0.364072 -0.778129 -0.272698 -0.288413 -1.047833 -1.199648 -0.643755 -2.774777 0.609942 -0.255208 -0.587102 -1.017793 1.826121 -0.856873 -0.024120 0.328246 1.585253 -0.956726 2.023288 -0.457622 1.165468 0.551423 0.085357 -1.142041 -0.485854 1.123395 1.568838 -1.242801 -0.907971 -1.428949 0.280428 -2.134049 -0.495155 -0.736602 2.096899 2.286032 -1.789124 -1.692930 -0.472956 -0.801028 -3.015642 0.467024 -1.339913 -0.802462 0.421712 1.638569 0.862225 1.765432 2.959491 -1.565834 1.105414 -0.002692 -0.756603 2.254423 0.165493 1.894615 -1.448426 -0.911422 0.904507 0.236584 0.923289 -0.335390 0.143458 0.431251 -2.515872 -1.119584 1.181822 0.739431 0.548679 1.339206 1.716234 2.974627 -1.993455 0.466163 1.851590 -0.522053 -0.430751 0.862769 -1.916020 0.988966 0.733344 0.222733 2.375969 0.184572 -1.566027 0.457246 0.053274 0.702657 -1.829975 0.255851 -1.073581 0.583982 -1.116858 -0.619678 -1.202976 -1.167075 -1.160603 -1.123749 2.564434 -1.160102 -2.829718 2.489678 -1.045221 2.061618 -3.791123 1.993156 -1.718223 1.551989 -1.155931 0.023462 -0.064457 -0.393287 -1.869659 1.073209 0.569597 -0.233606 1.300369 2.503798 1.538349 0.692644 -0.541801 2.106405 -0.207439 2.215297 -0.556063 1.830899 -0.642074 -0.617138 0.173774 -0.430619 -0.827317 -0.107757 0.517033 1.586312 1.522130 0.922377 1.984996 1.409817 2.443111 -1.101896 1.441051 -0.452252 1.486338 -0.658675 -1.241409 0.952149 1.329037 -0.488513 1.297980 -3.002965 -3.495269 -1.387910 -3.554984 0.039991 -0.224688 0.863000 -0.169620 0.025494 -2.386217 -1.045398 1.677784 0.007636 3.792311 1.039695 0.164432 1.410278 2.112842 -1.435301 -0.765280 0.056780 0.930935 0.127839 -0.577365 -2.441591 2.168488 -1.832575 0.660027 2.812132 -1.858927 0.495528 -1.035191 2.121960 -2.130312 2.888764 0.638979 -1.342302 2.232956 0.988336 2.248426 0.570935 -1.279863 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.321019 -1.065251 2.721118 1.893708 -0.059996 0.614453 0.537161 -0.876085 0.786072 0.613338 -0.376946 0.916992 -1.481818 0.330924 -0.140180 0.692637 -1.707114 -1.071163 -0.361966 -0.860868 -0.189028 -0.822402 0.318772 0.870993 1.254815 0.464546 -0.934019 -0.204291 -1.908078 -1.832263 0.361794 -0.474299 1.115577 0.020560 0.481931 -2.632667 1.599294 1.449647 -0.344465 -1.557051 1.056530 -0.875213 0.122797 -0.393630 -0.106363 0.852655 0.680726 0.299256 1.196998 0.607325 -0.119834 -0.136718 0.558465 1.578331 -0.870235 0.916127 0.801703 -0.744290 -0.057834 -0.134190 -0.206638 -0.491085 0.596002 0.348926 -0.612271 -1.373283 0.192287 -0.471718 -1.159918 0.904997 0.072901 -0.358631 -1.075344 -0.486000 -1.479848 -0.227751 0.247352 1.141191 1.959226 -0.678129 1.499782 -0.027892 0.313447 0.202039 0.776578 0.357966 0.732074 0.294417 -0.569287 -0.330622 -1.203296 -0.401736 -0.024971 0.969248 -0.448953 -0.821998 0.678912 -1.574891 -1.434245 0.527080 0.272324 -0.862346 -1.207920 -0.166957 0.396808 0.946774 -0.452824 -1.389609 -0.180460 0.625354 -0.156434 -0.287568 0.161370 -0.755501 -0.733283 -0.594083 -1.497450 0.507837 0.223831 -0.552259 -0.777405 1.440598 -0.474612 0.482641 0.188864 1.088780 -0.711839 1.172987 0.195088 0.882257 0.192249 -0.324059 -1.153147 -0.474318 0.674925 0.966089 -0.882427 -0.361855 -0.789653 0.293624 -0.705297 0.112452 -0.224722 1.432747 1.325057 -1.052839 -0.864382 -0.563021 -0.462623 -1.532653 0.184593 -0.608350 -0.719919 0.412020 1.035204 0.167122 0.830252 1.878165 -0.952177 0.374074 -0.104110 -0.623176 1.138411 -0.119498 0.929331 -0.972168 -0.729972 0.653028 0.419475 0.584567 -0.022257 0.055154 0.465243 -1.193949 -0.270763 0.692086 0.447069 -0.009600 1.306479 1.291908 1.746956 -0.807608 -0.093232 0.893555 -0.721843 -0.192070 0.331310 -1.281224 0.674835 0.616695 -0.188338 1.717271 -0.009744 -1.083974 0.948482 -0.139806 0.421217 -1.123856 0.566630 -0.915994 0.187374 -0.768808 -0.692779 -0.695826 -0.871216 -1.022306 -0.518315 1.781446 -0.714164 -1.559976 1.057691 -0.262229 0.901235 -2.463844 1.575796 -1.034198 1.020182 -0.150289 -0.001379 0.049036 0.344531 -1.045404 0.336114 0.482246 -0.550531 1.048247 1.450769 0.847127 0.022914 -0.170390 1.276980 -0.161801 0.904184 -0.617255 0.842362 -0.524294 -0.112147 -0.045574 -0.275605 -0.235636 -0.082806 0.099411 0.352747 0.724350 0.377109 0.801461 1.226231 1.154902 -0.351459 0.722138 -0.582085 1.130847 -0.673672 -0.794761 0.202923 1.072909 0.208358 0.946638 -2.171893 -1.980171 -0.848038 -2.089274 -0.050504 0.229759 0.388142 0.240653 -0.068355 -1.884722 -0.935107 1.014758 0.000441 1.871445 0.858443 0.134664 0.975201 1.132529 -0.520622 -0.551767 -0.017957 0.691932 -0.005946 -0.184712 -1.197883 1.225384 -1.433402 0.402749 1.780342 -1.099487 0.572307 -0.532220 1.036353 -1.735061 2.072641 0.635132 -1.043160 1.210508 1.049586 1.450893 -0.163521 -0.769067 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__make_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 0.181847 -3.075296 7.742057 5.036356 -0.704400 1.613128 1.149459 -2.100655 1.504365 0.440491 -1.603470 3.402701 -3.299354 0.823612 -2.559107 1.424349 -5.087678 -2.930933 -1.114574 -2.072996 -0.810626 -1.593607 0.161953 3.173747 3.560675 1.863492 -2.689518 -0.182430 -5.414433 -4.564817 0.033127 -0.780288 2.220666 -1.524849 1.867977 -6.059988 4.112548 4.438641 -0.768442 -4.624894 2.828863 -2.101945 -0.535662 -1.318532 -1.016436 1.718403 1.783936 2.207371 2.279282 1.589826 -1.391289 0.661522 1.896295 5.777586 -0.950252 2.781798 3.492061 -0.986045 0.402514 -0.497740 -0.077956 -1.435742 0.408702 0.171084 -0.733008 -3.454534 -0.073311 -1.181148 -1.194945 2.259191 0.481471 -1.353489 -2.599739 -1.426877 -5.449611 -0.229692 0.153688 3.523779 5.066796 -2.915481 3.548450 -0.005777 1.300982 1.024703 1.855230 0.855642 1.858242 1.340786 -0.767411 -0.912978 -3.522547 -0.269466 0.105726 0.721342 -2.294020 -5.106450 2.472782 -6.978094 -4.305714 1.526302 1.001482 -3.197958 -0.373375 -0.502666 0.915182 2.028855 -1.402153 -2.880162 0.078517 1.927582 -0.128105 -0.699696 1.287798 -0.731673 -0.512249 -0.664605 -4.419320 2.365732 1.208807 -0.800181 -0.844985 3.817469 -0.122431 1.651229 0.111678 2.406411 -1.526465 3.122205 1.001550 1.806069 -1.185444 0.379512 -1.398139 0.238304 1.640985 0.724514 -3.405551 -0.267856 -1.123422 1.428505 -1.001880 0.400687 -2.105249 3.277431 1.286796 -3.001928 -2.802777 -2.518647 -2.789345 -3.481401 -0.168152 -1.228260 -4.235647 1.313422 2.684248 1.313088 1.645068 3.826434 -1.779946 0.390270 0.535235 -1.229009 2.175150 -1.580977 1.946097 -2.578800 -2.317398 2.184450 0.574996 2.302829 -0.394415 0.546989 1.433319 -2.943183 -0.211420 2.042991 1.894668 -0.048910 4.242304 3.906426 2.417033 -1.835128 -0.932223 1.824672 -2.690170 -0.730761 0.607795 -3.496960 1.527372 1.656749 0.956735 5.112894 0.166617 -1.806642 3.184951 -0.155673 1.109229 -2.830064 1.255062 -2.376564 -0.407513 -1.800846 -0.445645 -1.827205 -1.252120 -3.560718 -3.309345 4.971040 -4.781549 -3.756398 2.745313 0.097267 2.718440 -5.866443 3.185014 -2.425539 3.906188 1.710657 0.370679 0.777011 -0.585328 -3.375127 1.128502 1.357490 -1.911395 2.277736 2.819665 2.002214 0.036412 -0.379892 3.231811 -1.662567 2.733222 -2.136896 1.842441 -1.449031 -1.945407 -0.429844 -0.487655 -1.185742 -0.354506 1.184508 1.008809 0.579284 2.125757 2.026069 3.178585 3.194114 -1.486407 1.507801 -1.987933 2.548768 -2.570801 -2.494276 0.220453 2.761042 0.873453 2.115124 -6.078586 -5.266260 -5.577651 -5.423534 0.271752 -1.754851 1.041684 -0.118986 -0.943427 -4.877657 -3.528523 3.764501 0.027897 3.673601 3.464638 0.353088 3.071908 2.647910 -1.125102 -0.292373 0.367188 2.357784 0.399460 -0.544115 -3.449136 3.175059 -3.579527 0.760644 5.699949 -2.806480 2.491920 -0.884963 1.483993 -4.538759 5.328761 1.798011 -4.289747 1.759263 3.577258 3.223464 -0.188440 -2.612391 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(Job*, Job*) = 0.568451 -0.952590 4.845068 2.885507 -1.172979 0.097025 0.339847 -2.128542 1.544643 -0.626457 -1.110480 1.433811 -1.340792 0.906867 -2.803617 1.729718 -3.821496 -1.474502 -0.937560 -2.149787 -0.996260 -0.311403 1.218512 0.351307 2.480095 1.474396 -1.617664 -0.475156 -1.799456 -2.639684 0.766097 -0.762653 0.895799 -1.049818 0.215275 -4.352480 2.709803 2.045061 -1.364639 -2.058074 2.076748 -1.321730 -0.618678 -1.388654 -1.154387 0.143727 0.241097 1.762867 1.637737 1.157903 -0.110630 1.437253 1.286314 4.803583 -1.231062 1.398138 1.533223 -0.273345 -0.694911 0.266127 0.455376 -0.010628 0.165662 0.009263 0.393253 -2.913108 -0.746797 -1.334611 -0.612679 1.575736 -0.499690 -0.889005 -1.470029 -0.725447 -2.969683 -0.350109 -2.010414 2.396091 2.678766 -2.521867 1.212912 -0.191090 0.032816 0.363809 0.147697 0.620162 1.181481 0.975789 0.473059 -0.843246 -0.558025 0.232837 0.943608 -0.762645 -1.385548 -5.084100 2.225534 -4.576460 -2.518627 0.524221 1.902067 -1.883089 0.552516 -0.494465 0.197931 0.827557 -1.290223 -1.239594 0.560116 0.421579 0.694312 -0.293160 0.410794 -0.343337 0.080981 0.106393 -3.220417 1.721069 -0.074102 0.062009 -0.081980 1.761147 0.642154 -0.364132 -0.145012 1.629521 -1.216747 2.591183 -0.590795 1.524192 -1.312655 2.288141 -0.139499 1.013118 1.752928 -0.276487 -1.873532 0.155201 -1.270257 0.724932 -1.630634 -0.253257 -1.687274 1.469587 0.805217 -1.705805 -2.042909 -1.015657 -2.064098 -2.950218 -0.089211 -1.060857 -2.821606 1.074806 1.642668 1.693705 1.865734 1.976724 -1.059151 -0.067523 0.238714 -0.693953 2.047398 -1.102960 1.631074 -1.335547 -1.239524 1.172967 -0.152312 1.481091 -0.287952 0.799545 0.721171 -2.466629 0.279695 1.309546 1.701451 -0.382960 1.879003 2.262457 0.905298 -1.292766 -0.142463 1.726929 -1.613730 -0.393131 0.597576 -2.128342 0.634014 0.969040 1.048914 2.449013 0.446196 -0.407455 1.116007 -0.512354 0.631090 -1.315308 -0.125973 -1.099937 -0.729780 -0.921355 0.704563 -0.921049 -0.343934 -1.625332 -2.783019 2.732699 -4.364140 -1.256577 2.606906 -0.103202 1.458966 -2.689045 2.294490 -1.641062 2.637832 0.721375 0.344122 0.397351 -0.967040 -2.813833 0.884863 0.705105 -0.554610 0.760562 2.261971 1.524397 0.334740 -0.782422 2.566843 -1.817757 2.992652 -0.946149 1.884210 -0.841384 -2.060326 0.061741 -0.143812 -1.853869 -1.149359 1.715833 2.117703 -0.076439 2.047802 1.715753 1.298468 3.264859 -1.496924 1.745369 -0.982745 0.932384 -1.244386 -1.440264 1.301120 1.611096 -0.233346 1.081773 -3.374740 -3.631114 -4.989373 -2.361749 0.850853 -2.153427 0.706326 -1.368105 -0.737781 -2.249098 -2.317620 2.673950 -0.538279 1.142854 2.230552 0.357424 1.625667 1.983155 -1.124190 0.488487 0.046898 1.566485 1.174802 -0.572957 -2.549225 2.443747 -1.741625 -0.287834 3.744991 -1.620008 1.288004 0.406992 0.840691 -1.951689 2.681346 0.416547 -2.093330 1.805225 2.564984 1.560018 0.954456 -1.501264 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__pop_heap >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 0.766093 -1.299065 6.249901 3.683477 -1.351157 0.506236 0.391675 -2.737396 1.862782 -1.360280 -1.256237 1.710182 -2.119292 1.290752 -3.866536 1.520273 -4.937055 -2.033744 -1.507381 -2.735175 -0.877494 -0.655668 1.449819 0.946606 2.973082 1.763248 -2.167372 -0.354939 -3.321190 -2.536380 1.631274 -0.914242 1.279335 -1.294470 0.356957 -5.375036 3.518721 2.763901 -1.627916 -2.662854 2.761271 -2.094466 -0.833131 -2.180831 -1.318252 0.196435 0.139048 2.155021 2.246569 0.943489 -0.765065 1.849345 0.960990 5.865815 -2.213395 1.776708 1.899163 -0.287875 -0.485258 0.366785 0.071465 0.215687 0.143077 0.124174 -0.034325 -3.755038 -0.504269 -1.763817 -0.854764 2.176373 -0.512078 -0.622207 -1.857872 -0.610751 -4.596463 -0.237835 -1.337633 3.130252 3.515083 -2.908184 1.619728 -0.604048 0.169720 0.747382 0.600288 1.049545 1.447040 1.120887 0.421620 -1.158157 -2.086641 0.883245 0.892704 -0.916018 -1.707103 -6.318932 2.603219 -6.266188 -3.045353 0.501793 2.044170 -2.595562 0.666803 -0.625077 0.167615 1.046745 -1.637168 -1.816130 0.894254 1.122851 0.849232 -0.241548 1.136672 -0.726476 0.077256 -0.944953 -3.857256 2.276949 -0.129020 0.104098 -0.258117 2.694405 0.180572 -0.527953 -0.012640 2.182403 -1.942363 3.042793 -0.886966 1.694664 -1.620076 2.218115 -0.175814 0.626932 2.121375 0.829879 -2.540491 0.145058 -1.820976 0.875389 -2.083255 -0.779736 -1.912056 1.476129 0.310984 -2.614370 -2.163576 -1.202607 -2.239830 -3.785088 -0.459670 -1.112996 -3.997477 1.340401 2.178863 2.381491 2.517498 2.877310 -1.215181 -0.053489 0.261856 -1.111333 2.734908 -1.547311 1.954892 -1.698744 -1.837062 1.410735 -0.759532 1.923871 -0.402785 0.997858 0.778693 -3.209191 0.507792 1.341089 2.207898 -0.473484 2.784393 3.180907 -0.110481 -2.104629 0.034933 2.364779 -2.384630 -0.407081 0.661661 -2.577735 0.877825 1.629966 0.728709 3.278696 0.408094 -0.993786 1.583917 -0.505094 1.142387 -1.835640 -0.319411 -1.459615 -1.083865 -1.679163 0.659855 -1.075824 -0.820652 -2.426710 -3.800376 3.472224 -5.460836 -1.925826 3.274700 0.484817 2.046318 -3.798970 2.141732 -2.137966 3.711322 1.549761 0.857549 0.532909 -0.831991 -3.907331 1.121503 0.881108 -1.259100 1.502417 2.773641 2.137211 0.482904 -0.989849 3.372499 -2.155299 3.382579 -1.659757 2.107759 -1.207880 -2.830954 0.441064 -0.303141 -2.178909 -1.488619 2.407445 2.434368 0.207714 3.089688 2.330685 2.102489 4.022954 -1.421243 1.647572 -1.628194 0.905458 -1.478505 -1.813184 1.471759 2.179317 0.002772 1.499028 -4.547430 -5.209275 -6.064509 -3.502383 1.619401 -3.084643 0.429381 -1.154772 -0.744034 -3.617433 -2.844715 2.562218 -0.795074 2.303880 2.905123 0.358124 1.893914 2.729643 -1.967629 0.558624 0.830683 2.548531 1.284589 -0.459463 -3.767934 3.449585 -2.385757 -0.295735 5.084971 -2.315681 1.778697 0.250832 1.188013 -2.778799 3.926190 0.818499 -2.895683 2.328277 3.082299 2.167970 1.982039 -1.791174 -PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference::type&& std::move(Job&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__adjust_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_iter) = -0.907040 -4.913241 11.728917 7.435538 -1.847731 2.066861 2.400247 -2.844158 2.832816 0.424533 -2.438201 5.376547 -4.532480 0.161340 -2.442693 1.926109 -8.496418 -4.968553 -0.875818 -3.414585 -2.283078 -2.538516 -0.764471 5.390884 5.132085 2.398325 -3.981147 -0.741883 -7.307666 -5.969741 -0.769417 -1.121897 3.380733 -2.368947 3.773139 -12.582495 5.766228 6.284285 -1.158536 -7.424624 3.585184 -3.345881 0.386361 -1.945732 -3.356139 1.989166 3.381375 4.049929 3.079530 2.208072 -1.701659 0.732390 2.686503 11.290511 0.120543 4.411025 5.586412 -1.910996 -0.358687 -0.997812 0.941806 -3.389165 1.339255 -0.076855 -1.321681 -4.798691 -0.497958 -2.303466 -2.036687 3.365521 2.201440 -3.089165 -3.942912 -2.657461 -8.536552 -1.942382 0.093805 5.839337 7.957878 -5.906872 5.803269 1.182579 3.257739 1.916548 3.339053 0.839503 4.996574 1.834568 -1.333521 -0.437945 -5.681917 -1.485444 0.287710 -0.135635 -3.371589 -9.291786 3.445692 -11.320579 -7.821807 2.969502 1.935444 -4.329990 -1.311041 -1.077100 2.913654 3.082584 -2.539796 -4.571109 -1.337543 2.771347 -1.823472 -0.957786 1.677346 -0.315911 -0.023775 -0.847633 -7.658501 3.781841 2.719659 -0.730265 -0.978988 6.431279 -0.724974 3.140466 0.150992 2.975856 -1.829388 5.765788 1.965085 1.670567 -2.432414 -0.303438 -2.574162 0.505021 1.348337 0.626724 -4.538584 -1.742925 -0.763722 2.787561 -1.802631 1.455154 -2.608313 6.062264 2.236048 -3.842875 -5.078360 -4.877463 -5.559039 -5.811648 0.155690 -1.969261 -5.887009 2.986162 4.271925 3.294094 2.072033 4.530193 -1.935208 1.744851 0.530736 -1.640083 3.046867 -2.029944 3.614218 -4.092978 -3.030917 3.357580 1.341187 5.194054 -0.527766 0.275003 2.125727 -4.395851 -2.080472 2.152184 3.531487 1.479990 6.425179 6.188005 5.403732 -3.911659 -1.645915 2.195227 -3.144061 -1.309092 0.917227 -5.145648 1.894126 2.143339 0.921592 8.103076 0.093170 -2.427517 4.154570 0.374709 1.657521 -4.627750 1.362515 -3.445849 -0.167669 -2.441008 -0.140429 -4.729484 -1.382471 -6.271898 -6.315009 8.401472 -8.200730 -6.807778 4.938315 -1.351291 5.813069 -9.315716 6.173446 -3.605787 6.962081 0.717413 -0.543438 0.687622 -1.835296 -4.533185 2.948340 1.970757 -3.071910 2.147717 4.297561 3.028022 1.180908 -0.467466 4.909863 -2.348528 4.912047 -3.047541 3.620807 -2.512480 -3.014894 -0.784114 -0.653861 -1.120188 1.105606 2.153762 1.992070 1.179864 3.115697 3.231963 5.523575 4.160690 -3.464596 1.750178 -2.368908 4.671115 -4.349625 -3.942195 0.002298 4.200781 0.973326 1.922265 -9.445458 -7.441190 -10.387119 -8.027795 -0.395953 -2.215536 1.439615 -0.201836 -1.519566 -7.093140 -5.056573 6.550691 0.143593 5.228326 5.167764 0.579817 6.335542 4.566132 -1.469485 -1.007718 1.110918 2.128164 0.133233 -1.083921 -6.184925 4.906513 -6.158191 2.591670 8.747661 -4.010704 3.864812 -0.626241 3.208730 -6.832879 8.027225 2.617372 -7.642909 1.704641 6.320946 4.661231 -1.342228 -4.737839 -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.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.020958 -0.342894 1.523905 1.111491 -0.353020 0.057579 0.253800 -0.722039 0.694520 0.057913 -0.136756 0.205083 -0.659644 0.319567 -0.102403 0.749513 -1.231965 -0.486577 -0.289689 -0.772769 -0.304224 -0.262856 0.572320 -0.052805 0.755464 0.444568 -0.497556 -0.353606 -0.417140 -0.648040 0.612069 -0.335571 0.584913 0.317355 -0.022745 -2.038920 0.915374 0.514282 -0.495642 -0.663193 0.626317 -0.484175 0.117702 -0.480307 -0.319434 0.182470 0.020306 0.339019 0.728796 0.372090 0.147409 0.249334 0.376877 1.432072 -0.671160 0.388518 0.259996 -0.306209 -0.397715 0.045314 0.141992 0.107823 0.379730 0.193473 -0.053620 -1.046324 -0.253061 -0.634308 -0.764005 0.576275 -0.077173 -0.154762 -0.658324 -0.263652 -0.514948 -0.291502 -0.843799 0.864007 0.985481 -0.819994 0.516422 -0.029713 -0.059030 0.017414 0.138149 0.244898 0.479510 0.211697 0.026150 -0.099787 -0.176181 -0.292352 0.367756 -0.059012 -0.267837 -1.223162 0.532400 -0.575572 -0.787315 0.239515 0.621119 -0.324542 -0.528109 -0.248473 0.123658 0.473629 -0.456960 -0.621920 -0.043989 0.084223 0.204159 -0.161706 -0.184586 -0.225520 -0.323758 -0.363679 -1.072448 0.348925 -0.154299 -0.139373 -0.198168 0.622369 -0.195445 -0.210448 0.005402 0.525079 -0.553406 1.055364 -0.232036 0.602661 0.110315 0.327695 -0.376215 0.034854 0.616825 0.672592 -0.267694 -0.230999 -0.659700 0.125266 -0.730070 -0.060462 0.115903 0.590237 0.851883 -0.460058 -0.602433 -0.180993 -0.363248 -1.235029 0.193307 -0.543330 -0.092563 0.580500 0.599318 0.484394 0.768154 0.946369 -0.630971 0.251382 -0.175099 -0.271752 0.860437 0.292707 0.632983 -0.429526 -0.364431 0.269287 0.029184 0.385773 0.039408 0.136563 0.178403 -0.837277 -0.117024 0.350979 0.418237 -0.187719 0.462798 0.666272 0.938382 -0.493931 0.116106 0.687345 -0.344193 -0.057644 0.256439 -0.739700 0.291666 0.261469 -0.162746 0.662503 0.007560 -0.382880 0.209327 -0.242908 0.194555 -0.447561 0.025452 -0.384449 -0.050738 -0.526140 0.028991 -0.390407 -0.393225 -0.331675 -0.363432 0.972334 -0.764557 -0.464335 0.879057 -0.285063 0.392377 -1.033874 1.288453 -0.594717 0.565076 -0.409133 -0.172865 -0.019900 -0.048744 -0.785191 0.202550 0.260456 -0.084959 0.119111 1.089280 0.566232 0.012182 -0.227962 0.904183 -0.224959 0.976538 -0.252359 0.885477 -0.303708 -0.200268 0.116601 -0.132797 -0.368417 -0.361044 0.314207 0.903741 0.303441 0.534698 0.584282 0.387305 1.025482 -0.465745 0.669665 -0.137143 0.498405 -0.269115 -0.287668 0.447079 0.590109 -0.194620 0.418002 -1.036091 -1.192983 -0.854468 -0.698354 0.055745 0.009269 0.247549 -0.279664 -0.093638 -0.767614 -0.576707 0.489301 -0.292710 0.566591 0.440952 0.125824 0.577221 0.835743 -0.457942 -0.154887 0.019460 0.331910 0.292011 -0.114215 -0.847717 0.895087 -0.644083 -0.048392 1.094067 -0.484531 0.257857 -0.106883 0.881028 -0.613829 1.061488 0.125760 -0.399308 0.922244 0.823126 0.672721 0.324920 -0.424299 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__push_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_val&) = -0.065411 -2.248116 6.512652 4.188046 -1.088331 0.859099 1.522685 -1.646984 1.980439 0.235409 -1.153889 2.313443 -2.702766 0.482676 -1.391982 1.714762 -4.959979 -2.664908 -0.551625 -2.131612 -1.403694 -1.398536 0.425284 1.929891 3.165913 2.117543 -2.225840 -0.726926 -3.427569 -3.446490 0.309435 -0.806293 1.837524 -0.385430 1.538093 -6.822986 3.344162 2.997579 -0.900508 -3.665557 2.211056 -1.849182 0.258425 -1.384022 -0.866472 1.424159 1.594198 2.751140 2.314051 1.247388 -0.939485 0.404479 1.312304 6.017783 -0.868018 2.078549 2.631623 -0.924850 -0.468002 -0.208024 0.457541 -1.453379 0.495483 0.297430 -0.651439 -2.957562 -0.349669 -1.878593 -1.185762 2.312022 1.047590 -1.256462 -2.570572 -1.258020 -4.199061 -0.885830 -1.654951 3.576876 4.408269 -3.422828 2.845760 0.220084 1.598557 0.655242 1.306456 0.432769 2.599234 0.908857 -0.623985 -0.615864 -2.870894 -1.049997 0.211805 0.009026 -1.489601 -5.211089 1.795754 -5.445197 -4.120929 1.150541 1.361665 -2.022970 -0.845451 -0.212867 1.497127 1.632129 -1.215833 -2.496939 -0.422124 0.949730 -0.817827 -0.305135 0.772900 -0.340492 -0.467584 -0.477726 -4.336473 1.846870 0.580403 -0.508675 -0.697535 3.153459 -0.267026 1.195313 0.247828 1.827685 -1.207155 3.313701 0.828757 1.395414 -0.561799 0.454710 -1.585956 0.454003 1.371413 1.288643 -2.408975 -0.778527 -1.153802 1.227505 -1.778451 0.095296 -1.339298 3.222705 1.709379 -2.658666 -2.846170 -2.021516 -2.360931 -3.376521 0.407489 -1.427337 -2.561815 1.281868 2.255511 1.886479 1.611108 2.995347 -1.864551 1.082702 0.228432 -0.631464 2.078762 -0.183416 2.004044 -2.231936 -1.512710 1.402269 0.314399 2.340343 -0.557783 0.213838 1.153470 -2.824899 -0.937951 1.624634 1.699619 0.078876 3.126319 3.233191 2.804908 -2.636819 -0.624565 1.826756 -1.849170 -0.807199 0.973488 -3.000342 1.629887 1.113382 0.860735 3.851113 0.073691 -1.273810 2.159272 0.027747 0.924303 -2.326331 0.312491 -1.890338 -0.368911 -1.580597 0.325879 -2.303695 -0.895588 -2.659008 -2.801786 4.331967 -3.951435 -3.328088 3.006109 -0.912122 2.795381 -4.967924 3.645979 -2.036701 2.680830 -0.003372 -0.106296 0.397867 -0.753766 -2.624614 1.334036 0.969266 -1.388967 1.217912 2.837326 1.817718 0.522196 -0.278661 3.046351 -1.126405 2.892095 -1.380347 2.219032 -1.377997 -1.628228 -0.406296 -0.291782 -0.907117 0.210247 1.267623 2.046662 0.650041 1.970315 2.112575 2.512797 2.918611 -1.896901 1.369584 -1.335381 2.564835 -2.230292 -2.086974 0.384233 2.037514 0.054461 1.405755 -5.064032 -4.521927 -4.690745 -4.463430 -0.320893 -1.252691 1.055618 -0.383661 -0.758901 -3.818732 -2.688296 2.987095 0.050803 2.395606 2.467569 0.076010 3.098863 2.701557 -1.183402 -0.532831 0.424948 1.465425 0.417797 -0.721697 -3.410677 2.890820 -3.311886 0.791235 4.947011 -2.378764 1.803999 -0.889600 2.605599 -3.639549 4.455331 1.277402 -3.655132 1.522773 3.596518 3.079896 0.305562 -2.441942 -PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference::type&& std::move(bool (*&)(Job, Job)) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(Job*, Job&) = 0.568451 -0.952590 4.845068 2.885507 -1.172979 0.097025 0.339847 -2.128542 1.544643 -0.626457 -1.110480 1.433811 -1.340792 0.906867 -2.803617 1.729718 -3.821496 -1.474502 -0.937560 -2.149787 -0.996260 -0.311403 1.218512 0.351307 2.480095 1.474396 -1.617664 -0.475156 -1.799456 -2.639684 0.766097 -0.762653 0.895799 -1.049818 0.215275 -4.352480 2.709803 2.045061 -1.364639 -2.058074 2.076748 -1.321730 -0.618678 -1.388654 -1.154387 0.143727 0.241097 1.762867 1.637737 1.157903 -0.110630 1.437253 1.286314 4.803583 -1.231062 1.398138 1.533223 -0.273345 -0.694911 0.266127 0.455376 -0.010628 0.165662 0.009263 0.393253 -2.913108 -0.746797 -1.334611 -0.612679 1.575736 -0.499690 -0.889005 -1.470029 -0.725447 -2.969683 -0.350109 -2.010414 2.396091 2.678766 -2.521867 1.212912 -0.191090 0.032816 0.363809 0.147697 0.620162 1.181481 0.975789 0.473059 -0.843246 -0.558025 0.232837 0.943608 -0.762645 -1.385548 -5.084100 2.225534 -4.576460 -2.518627 0.524221 1.902067 -1.883089 0.552516 -0.494465 0.197931 0.827557 -1.290223 -1.239594 0.560116 0.421579 0.694312 -0.293160 0.410794 -0.343337 0.080981 0.106393 -3.220417 1.721069 -0.074102 0.062009 -0.081980 1.761147 0.642154 -0.364132 -0.145012 1.629521 -1.216747 2.591183 -0.590795 1.524192 -1.312655 2.288141 -0.139499 1.013118 1.752928 -0.276487 -1.873532 0.155201 -1.270257 0.724932 -1.630634 -0.253257 -1.687274 1.469587 0.805217 -1.705805 -2.042909 -1.015657 -2.064098 -2.950218 -0.089211 -1.060857 -2.821606 1.074806 1.642668 1.693705 1.865734 1.976724 -1.059151 -0.067523 0.238714 -0.693953 2.047398 -1.102960 1.631074 -1.335547 -1.239524 1.172967 -0.152312 1.481091 -0.287952 0.799545 0.721171 -2.466629 0.279695 1.309546 1.701451 -0.382960 1.879003 2.262457 0.905298 -1.292766 -0.142463 1.726929 -1.613730 -0.393131 0.597576 -2.128342 0.634014 0.969040 1.048914 2.449013 0.446196 -0.407455 1.116007 -0.512354 0.631090 -1.315308 -0.125973 -1.099937 -0.729780 -0.921355 0.704563 -0.921049 -0.343934 -1.625332 -2.783019 2.732699 -4.364140 -1.256577 2.606906 -0.103202 1.458966 -2.689045 2.294490 -1.641062 2.637832 0.721375 0.344122 0.397351 -0.967040 -2.813833 0.884863 0.705105 -0.554610 0.760562 2.261971 1.524397 0.334740 -0.782422 2.566843 -1.817757 2.992652 -0.946149 1.884210 -0.841384 -2.060326 0.061741 -0.143812 -1.853869 -1.149359 1.715833 2.117703 -0.076439 2.047802 1.715753 1.298468 3.264859 -1.496924 1.745369 -0.982745 0.932384 -1.244386 -1.440264 1.301120 1.611096 -0.233346 1.081773 -3.374740 -3.631114 -4.989373 -2.361749 0.850853 -2.153427 0.706326 -1.368105 -0.737781 -2.249098 -2.317620 2.673950 -0.538279 1.142854 2.230552 0.357424 1.625667 1.983155 -1.124190 0.488487 0.046898 1.566485 1.174802 -0.572957 -2.549225 2.443747 -1.741625 -0.287834 3.744991 -1.620008 1.288004 0.406992 0.840691 -1.951689 2.681346 0.416547 -2.093330 1.805225 2.564984 1.560018 0.954456 -1.501264 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__move_median_to_first >(Job*, Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.705607 -1.490885 6.198752 3.611691 -1.032288 0.561392 0.403842 -2.914147 3.087771 -0.882419 -1.295857 1.612278 -3.314923 1.074050 -1.730460 1.224769 -5.802480 -3.322352 -0.871868 -2.574984 -2.060744 -2.388991 1.393046 1.420482 2.520848 3.589249 -2.951248 1.021014 -3.791711 -4.428846 1.699570 -1.455224 2.383152 1.566960 0.973785 -8.031012 3.919927 2.858270 -1.172248 -2.986929 2.345884 -3.160763 0.039930 -2.102500 -0.751784 1.519703 0.980059 1.906107 3.388995 0.099645 0.065125 0.019328 -1.003626 3.862633 -2.639583 1.753252 1.305093 -1.712333 -1.860032 -0.480968 0.099999 -1.013983 2.107708 2.132753 -3.044085 -3.438279 1.706038 -2.229052 -3.330992 3.562606 1.015393 -0.839438 -2.028531 -1.217874 -3.594903 -0.904035 4.669600 2.386228 5.045255 -1.289739 2.995072 -0.379631 1.391604 -0.016085 1.693062 0.204700 4.590033 0.443894 -1.513378 -1.996885 -3.638552 -0.596401 -0.227834 3.460570 -0.133247 -1.370808 1.305264 -6.401127 -3.948854 -0.346308 1.324933 -1.570767 -4.246070 0.961540 2.798712 1.356430 -0.111781 -3.213974 -0.230689 0.950289 -2.437593 -0.151296 0.095171 -1.283514 -1.932818 -1.028848 -4.641447 0.920345 -0.131138 -0.823240 -1.375011 3.381582 -1.520920 0.182618 0.650256 2.488126 -1.301873 3.096995 -0.830419 0.840894 -0.152865 -0.154925 -0.608817 -1.786102 1.097850 2.705942 -3.007486 -2.871723 -1.809598 0.408633 -3.803209 -1.967843 -2.810266 3.175701 3.744227 -3.261943 -2.948135 -1.095295 -1.837147 -5.511149 -0.027841 -2.155211 -2.500934 0.318192 2.809688 1.686841 2.655354 5.208828 -2.298564 2.325264 0.387028 -1.439840 3.586111 0.026459 3.118926 -2.576230 -1.709199 2.009021 -0.410105 2.069266 -0.765680 -0.351531 0.392410 -4.144821 -2.782414 2.915208 1.453563 2.439287 2.386698 2.930800 4.850285 -4.193016 1.116108 2.935540 -0.626431 -0.921341 1.615306 -2.723770 1.561878 1.401385 0.693324 4.632638 0.293401 -2.960091 0.481369 1.104105 1.630571 -3.851975 0.416397 -1.619268 1.879042 -2.147066 -1.218967 -2.237794 -1.565837 -2.645239 -3.085127 4.271428 -2.833109 -6.355355 4.616208 -1.190478 5.390348 -7.126269 -0.027148 -2.786739 3.888207 -1.607976 0.677239 0.185807 -2.155173 -2.949664 2.761323 0.871124 -0.508726 2.151338 3.378133 2.586141 1.866777 -0.932061 3.205741 0.042622 3.344194 -1.066478 2.484088 -0.691448 -1.415417 0.489954 -0.902803 -1.526636 0.536411 1.118752 1.935707 3.350707 1.993043 3.859015 2.745114 3.580704 -1.715756 1.250570 -0.824075 2.059324 -1.189202 -2.509682 1.219330 2.838208 -0.849810 1.819085 -4.999528 -6.642983 -2.841719 -7.637247 -0.063142 -0.838973 1.247284 0.378025 0.140135 -3.713725 -1.197418 4.212955 0.483626 10.124154 1.570376 0.124240 2.324927 3.657025 -3.195035 -1.644683 1.014957 1.747437 -0.347831 -0.336335 -5.224822 3.819451 -2.732356 1.719710 5.063137 -3.971036 1.030109 -2.121628 3.881838 -3.728370 5.168104 1.447428 -3.129459 3.079293 0.244482 4.123339 1.831717 -2.337671 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.559575 -1.121588 4.866091 3.281014 -0.792052 0.389345 0.708267 -2.329931 2.504363 0.591455 -0.828409 0.931745 -2.340299 0.704293 0.129362 1.881168 -4.177642 -2.010488 -0.494478 -2.184707 -1.358404 -1.589273 1.156793 0.477277 2.233733 2.040742 -1.733012 -0.065648 -1.828277 -3.438364 1.188836 -1.149206 1.825395 1.524132 0.819354 -5.994458 3.165193 1.820637 -1.032344 -2.321484 1.645273 -1.885801 0.322270 -1.109235 -0.079124 1.406079 0.823938 1.782675 2.672822 0.913932 0.399664 -0.205649 0.372493 3.151520 -1.873092 1.344185 0.827386 -1.537095 -1.245706 0.041669 0.203551 -0.706433 1.554966 1.280389 -1.421803 -2.857055 0.574804 -1.612758 -2.558969 2.390797 0.714307 -1.006343 -2.104670 -1.138081 -1.622478 -0.826433 -0.346531 2.351488 3.660311 -1.521842 2.252114 0.162507 0.744629 -0.146167 1.145409 0.162388 3.090316 0.371655 -1.043472 -0.940527 -1.975761 -1.724734 0.428672 1.351060 -0.254293 -1.685755 0.896654 -3.035483 -2.920957 0.356573 1.349276 -1.020332 -2.987270 0.269470 1.787420 1.201814 -0.327633 -2.416266 -0.248362 0.431545 -1.418090 -0.326875 -0.497167 -1.125794 -1.532129 -0.462332 -3.513264 0.708580 -0.103462 -0.607450 -1.136401 2.352644 -0.808577 -0.017917 0.358886 1.748400 -1.025537 2.639803 -0.429837 1.434722 0.748280 0.085907 -1.402839 -0.050538 1.309716 1.459969 -1.227778 -1.415882 -1.538418 0.476122 -2.806287 -0.338028 -1.019387 2.913701 3.191803 -1.973273 -2.236752 -0.732511 -1.133090 -3.561107 0.832407 -1.677593 -0.922436 0.285259 2.062687 1.163010 2.054731 2.979899 -2.283621 1.382014 -0.286167 -0.460898 2.688315 0.821534 2.342175 -1.862315 -0.854706 1.146412 0.437713 1.041739 -0.298618 -0.236318 0.638303 -2.899789 -1.498622 1.789093 0.847087 0.837141 1.694907 2.162205 4.606164 -2.338819 0.517312 2.213714 -0.526983 -0.633129 1.223419 -2.248943 1.365902 0.827842 0.552614 3.050635 0.078870 -1.735601 0.370419 0.300058 0.770408 -2.195580 0.225446 -1.298385 0.814521 -1.241936 -0.424213 -1.794044 -1.396602 -1.447757 -1.155814 3.237457 -1.285532 -3.555916 3.354501 -2.049407 2.739132 -4.463214 2.506337 -2.085553 1.417014 -1.795138 -0.233761 -0.156440 -0.773437 -2.159044 1.531021 0.728698 -0.103933 1.290255 2.979070 1.822848 0.875888 -0.560987 2.478800 -0.236726 2.592834 -0.666624 2.374704 -0.827863 -0.010515 -0.068228 -0.557305 -0.908825 0.032421 0.404665 1.856842 1.864937 1.030697 2.260507 1.625344 2.590715 -1.392956 1.820418 -0.482204 1.635314 -1.023144 -1.576581 1.154836 1.478053 -0.666087 1.482260 -3.724819 -3.904135 -1.585775 -3.996793 -0.551783 0.291283 1.207799 0.005071 -0.037982 -2.639333 -1.216192 2.630058 0.191103 4.272158 1.085776 0.132036 1.823427 2.693906 -1.475773 -1.179031 -0.122370 0.713385 0.009792 -0.611231 -3.041362 2.858285 -2.195535 1.019696 3.486254 -2.369815 0.610415 -1.594087 3.223496 -2.709186 3.357894 0.793675 -1.688888 2.352084 1.475318 2.927578 0.461402 -1.647887 -PE-benchmarks/weighted-job-scheduling.cpp__void std::iter_swap(Job*, Job*) = -0.208266 -0.294392 0.858988 0.585873 -0.070385 0.037466 0.352605 -0.335522 0.502913 0.032287 -0.125037 0.087222 -0.619543 0.180527 -0.250851 0.381850 -0.658713 -0.481461 -0.074470 -0.370117 -0.086072 -0.310544 0.484983 -0.033168 0.470793 0.131533 -0.293119 -0.326885 -0.586430 -0.275824 0.451141 -0.292655 0.387949 0.133289 -0.194013 -1.108000 0.473891 0.336433 -0.316888 -0.426794 0.470413 -0.453561 0.164638 -0.346664 -0.104556 0.077476 0.111452 0.175677 0.511403 0.176118 0.192839 0.022528 0.072983 0.851096 -0.610264 0.262945 0.124533 -0.116708 -0.275613 0.034131 0.065789 0.000728 0.313073 0.271330 -0.233004 -0.543983 -0.149040 -0.448591 -0.615332 0.364444 -0.166848 0.147884 -0.446645 0.009855 -0.378164 -0.181558 -0.263504 0.427914 0.735259 -0.450368 0.476840 -0.025076 0.074478 -0.075650 0.043493 0.201377 0.179261 0.077021 -0.102362 -0.220346 -0.326356 0.076082 0.052371 0.137594 -0.019928 -0.551945 0.357867 -0.302130 -0.554566 0.040003 0.242468 -0.137926 -0.320830 0.104463 0.068355 0.398767 -0.350802 -0.545083 -0.061023 0.014592 0.117286 -0.072350 -0.001743 -0.253752 -0.301235 -0.464613 -0.638551 0.040549 -0.171893 -0.313237 -0.195376 0.425950 -0.302802 0.014951 0.102484 0.342585 -0.292536 0.650468 -0.064890 0.307001 0.161165 0.025436 -0.446947 -0.171087 0.388966 0.761091 -0.269464 -0.008568 -0.408315 -0.009377 -0.437959 -0.260308 0.098255 0.291837 0.476326 -0.488358 -0.323136 -0.068382 -0.064476 -0.825151 0.127114 -0.377738 0.066030 0.260689 0.408841 0.267291 0.518412 1.001501 -0.391418 0.239610 -0.041296 -0.303771 0.555766 0.160488 0.469374 -0.279866 -0.316923 0.144277 0.072742 0.186666 -0.015242 0.097283 0.045977 -0.664649 -0.076518 0.136106 0.251129 -0.134165 0.326473 0.332561 0.286409 -0.487333 0.162585 0.477164 -0.102607 -0.007716 0.146531 -0.573118 0.317338 0.151701 -0.196815 0.276439 0.052239 -0.388518 0.198161 -0.221345 0.196037 -0.419797 0.019673 -0.289404 -0.062257 -0.440403 0.000106 -0.162925 -0.374655 -0.136994 -0.132834 0.587559 -0.248679 -0.326508 0.397979 0.047825 0.296370 -0.772439 0.771206 -0.432355 0.481126 -0.246918 -0.018620 -0.007882 0.163562 -0.335632 -0.013479 0.171413 -0.062674 0.301344 0.686781 0.402166 0.073079 -0.029892 0.620474 -0.007116 0.492243 -0.095797 0.425999 -0.131129 -0.308842 0.259713 -0.143828 -0.114884 -0.101147 0.183116 0.723394 0.431855 0.243502 0.585997 0.281459 0.694755 -0.258184 0.299091 -0.104075 0.537339 -0.114356 -0.154285 0.153751 0.362331 -0.163834 0.330322 -0.672076 -0.996547 -0.260591 -0.668887 0.135060 -0.151914 0.112440 -0.109326 0.110867 -0.658208 -0.276609 0.077062 -0.236084 0.701077 0.218600 0.087915 0.358996 0.538734 -0.433730 -0.182516 0.154289 0.342349 0.070842 -0.055839 -0.521034 0.426626 -0.556213 0.039265 0.604535 -0.359732 0.017625 -0.069414 0.533572 -0.424605 0.807087 0.184315 -0.224826 0.769775 0.357320 0.591919 0.312338 -0.261414 -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.300531 -0.334370 2.758088 1.506241 -0.670804 0.096581 0.079100 -1.551052 1.383917 -1.120883 -0.614370 0.353833 -0.964945 0.632085 -2.148411 0.616410 -2.449564 -1.159211 -0.767350 -1.543727 -0.574794 -0.434189 0.882210 0.057758 1.218534 0.762492 -1.027872 0.028619 -1.590535 -0.578720 1.238866 -0.508267 0.378764 -0.473962 0.017006 -2.373760 1.643076 1.025917 -0.932022 -1.013583 1.171865 -1.325373 -0.330950 -1.338162 -0.439898 -0.136691 -0.252069 1.193819 1.223055 0.124244 -0.131989 1.010611 -0.282962 2.908554 -1.522834 0.755890 0.595596 0.068741 -0.480287 0.503130 0.129634 0.387985 0.149265 0.333500 -0.295348 -1.816055 -0.164166 -1.108037 -0.467806 1.311491 -0.276258 -0.201920 -0.831096 -0.177697 -2.236170 -0.254964 -0.781666 1.463032 1.646853 -1.509845 0.535496 -0.285155 0.344498 0.307705 0.289104 0.409890 1.229569 0.421877 0.153818 -0.691773 -1.380950 0.641424 0.394268 -0.757004 -0.605520 -2.923599 1.178833 -3.272322 -1.516493 -0.054579 1.141801 -0.940723 0.226985 0.120643 0.288648 0.241662 -0.699397 -0.887426 0.551977 0.513550 0.222252 0.033374 0.602687 -0.484877 0.113507 -0.729710 -1.970759 0.931453 -0.300077 0.143544 -0.133338 1.346877 -0.283028 -0.684235 0.039868 0.876309 -0.951682 1.533295 -0.817587 0.661126 -0.819592 1.068531 -0.326937 0.426922 0.958793 0.716696 -1.112885 0.266731 -0.879544 0.284291 -1.517406 -0.769555 -1.137704 0.383124 -0.204888 -1.474204 -1.043002 -0.393658 -0.978862 -2.032125 -0.195498 -0.640423 -1.938224 0.385345 1.108056 1.915836 1.458316 1.572301 -0.570808 0.142534 0.096299 -0.449221 1.508626 -0.707053 1.099772 -0.765021 -0.868070 0.569311 -0.672560 0.781191 -0.140626 0.350324 0.147122 -1.915693 0.124152 0.545808 1.110935 -0.007473 1.257764 1.466365 -0.803471 -1.711622 0.449718 1.348604 -0.883056 -0.152898 0.327369 -1.163800 0.461418 0.807031 0.510602 1.300405 0.213924 -0.398795 0.202368 -0.162088 0.790913 -0.934760 -0.638316 -0.575604 -0.597195 -0.934529 0.720116 -0.603563 -0.409598 -0.950150 -2.077293 1.505340 -2.496904 -1.067929 1.993249 0.244423 1.290262 -1.649514 0.421154 -1.079955 2.043715 0.564995 0.680244 0.097813 -0.501640 -1.936062 0.735796 0.373890 -0.572966 0.727473 1.336082 1.138353 0.637233 -0.474031 1.719018 -1.086108 1.715106 -0.752553 1.156340 -0.513661 -1.695543 0.540371 -0.256725 -1.074532 -0.694190 1.401165 1.657924 0.453441 1.749421 1.439270 0.897849 2.056987 -0.802577 0.686814 -0.654755 0.149062 -0.559803 -0.775762 0.898266 0.728970 -0.319239 0.428933 -2.030709 -2.775849 -2.884866 -1.748590 1.057120 -2.026433 -0.041167 -0.578105 -0.211487 -1.658225 -1.157837 0.936265 -0.519759 1.498951 1.118953 0.188978 0.827000 1.619300 -1.416438 0.310261 0.716670 1.168713 0.510908 -0.293308 -2.192914 1.918073 -1.017727 -0.120237 2.467818 -1.156089 0.679410 0.296526 0.634953 -1.082695 1.794492 0.374288 -1.259584 1.255489 1.277496 1.272844 1.614718 -0.877917 -PE-benchmarks/weighted-job-scheduling.cpp__int std::__bit_width(unsigned long) = -0.059454 -0.557949 0.707526 0.588639 0.051697 0.101903 0.542161 0.022483 0.229243 0.169503 -0.086678 0.333109 -0.649548 0.006743 -0.066857 0.192108 -0.382318 -0.487708 0.007079 0.008157 -0.014548 -0.308015 0.165915 0.345668 0.443435 0.141195 -0.230124 -0.402600 -0.760595 -0.098700 0.088443 -0.087386 0.382233 0.172920 0.105245 -0.667623 0.185362 0.506823 -0.073510 -0.631871 0.288644 -0.229396 0.191749 -0.298526 0.005210 0.187747 0.359438 0.305213 0.164440 0.221388 -0.107543 -0.137462 0.240301 0.588658 -0.053699 0.322349 0.468279 0.009085 0.095878 -0.211555 0.132440 -0.239300 0.184628 0.060912 -0.165855 -0.191839 -0.268548 -0.320416 -0.375945 0.177462 0.122900 0.193008 -0.544119 -0.131366 -0.474629 -0.084395 -0.425775 0.403907 0.681323 -0.542088 0.563831 0.236262 0.263864 -0.004847 0.100557 0.134971 -0.079092 0.138459 -0.122978 0.030290 -0.690904 -0.177384 -0.141877 -0.097473 -0.184921 -0.645964 0.317319 -0.288681 -0.573389 0.200206 -0.012594 -0.183304 -0.047505 0.118953 0.007522 0.499708 -0.310590 -0.437922 -0.218515 0.020769 0.135444 -0.104395 0.197777 0.123257 -0.194759 -0.425575 -0.542118 0.056334 0.151115 -0.385915 0.030236 0.385041 -0.285498 0.478041 0.034973 0.054823 -0.099454 0.532427 0.436234 0.102163 0.223807 -0.240870 -0.406305 -0.145457 0.238958 0.769802 -0.257175 0.091823 -0.095727 0.128476 0.072239 -0.018267 0.235420 0.268868 0.166702 -0.416279 -0.343120 -0.412761 -0.208685 -0.337305 0.167019 -0.171286 0.230595 0.282056 0.306737 0.085392 0.120350 0.770832 -0.281442 0.079186 0.045947 -0.196400 0.075742 0.251883 0.241790 -0.198107 -0.339554 0.232831 0.249861 0.287858 0.053387 0.067633 0.149637 -0.312149 -0.139665 -0.059711 0.145586 -0.256975 0.469076 0.296456 -0.120724 -0.205237 -0.111276 0.142979 -0.051748 -0.009139 0.075698 -0.556658 0.428725 -0.063440 -0.171756 0.255531 -0.011127 -0.258546 0.597312 -0.213452 0.045671 -0.321928 0.123939 -0.337222 -0.189098 -0.467278 0.213644 -0.158500 -0.264413 -0.220588 0.000000 0.621612 0.024819 -0.192385 -0.053661 0.184774 0.194260 -0.597478 0.733771 -0.183321 0.342112 0.040276 -0.146349 0.146078 0.112159 -0.054662 -0.390109 0.205532 -0.173951 0.103998 0.348574 0.160609 -0.193390 0.176526 0.336392 0.048393 0.239492 -0.157333 0.155481 -0.138249 -0.214975 0.129207 -0.081101 0.232767 0.078679 -0.067269 0.551209 0.229783 0.195292 0.422674 0.216063 0.348274 -0.253428 0.006094 0.017905 0.669581 -0.292767 -0.055553 -0.211209 0.286790 -0.067026 0.336796 -0.530938 -0.689640 -0.058280 -0.539047 -0.099508 -0.107398 0.104205 -0.025034 -0.067075 -0.537472 -0.384699 -0.075985 -0.135384 0.131455 0.295192 0.014266 0.506733 0.281952 -0.239197 -0.112479 0.304276 0.271673 -0.016015 -0.073092 -0.226241 0.105488 -0.562311 0.099405 0.537281 -0.255666 0.182593 -0.275817 0.637828 -0.446385 0.817816 0.226611 -0.515041 0.303166 0.515870 0.611780 -0.087264 -0.291026 -PE-benchmarks/weighted-job-scheduling.cpp__int std::__countl_zero(unsigned long) = 0.283614 -1.569874 2.421747 2.046685 0.385295 0.251058 1.677667 -0.205162 1.000420 1.095293 -0.533756 1.124826 -1.802573 0.290096 0.125928 1.064506 -1.346847 -1.518980 0.240892 -0.030313 -0.134465 -1.027515 0.918879 0.658830 1.601979 0.540917 -0.796220 -1.620093 -2.093067 -0.657543 0.552122 -0.517800 1.252662 0.975491 0.134554 -2.011903 0.749993 1.145062 -0.259085 -1.956658 0.982150 -0.600509 0.310904 -0.556633 0.746579 0.680381 1.166933 1.497932 0.852444 1.042529 -0.080613 -0.557310 0.872307 1.714024 -0.482956 0.924489 1.237699 -0.286146 0.187887 -0.357784 0.504112 -0.752117 0.810169 0.730489 -0.366274 -0.868886 -0.579450 -0.963874 -1.459323 0.855455 0.599644 0.636009 -1.739289 -0.212723 -0.413698 0.005164 -1.413542 1.532183 2.345619 -1.247183 1.829580 0.696296 0.937532 -0.597206 0.084703 0.267330 -0.031924 0.452075 -0.612638 -0.680179 -2.501203 -0.979140 -0.420811 -0.163383 -0.253400 -1.196840 0.785143 -0.252210 -1.731795 0.451661 0.188424 -0.410257 -0.361477 0.782437 0.462487 1.477611 -0.467291 -1.384481 -0.703155 -0.201263 -0.171989 -0.491693 0.043923 -0.198664 -1.022376 -0.789154 -1.648054 -0.091152 0.223840 -1.310923 -0.278056 0.947009 -0.804411 1.246526 0.088476 0.425254 -0.070102 1.126932 1.293451 0.640051 1.940842 -0.771138 -1.336553 0.428031 1.003176 2.191794 -0.765640 0.400132 -0.547295 0.397208 -0.126668 -0.028824 0.605770 1.300863 1.011665 -1.512044 -1.412667 -1.070276 0.169925 -0.855627 0.779957 -0.849255 0.819128 0.013917 1.022898 0.125823 0.616223 2.134463 -1.469569 0.751192 0.279539 0.023019 0.462250 1.066387 0.844825 -0.824566 -0.888990 0.464634 1.135178 0.057155 -0.075762 0.071710 0.495136 -1.355904 -0.636691 0.122803 0.275436 -0.676786 1.173864 0.712751 0.961198 -0.946841 -0.308186 0.754268 -0.043452 -0.344875 0.425502 -1.988538 1.610165 -0.329776 0.220038 1.055711 0.070391 -1.075202 1.518220 -0.403210 -0.061377 -0.731102 0.509011 -1.055821 -0.690832 -1.007832 0.488302 -0.463377 -0.874621 -0.380509 0.655354 1.962458 0.702934 -1.007361 0.243430 -0.653545 0.226955 -2.238984 2.757743 -0.824098 -0.074512 -0.339964 -0.639742 0.015912 0.430164 -0.515231 -0.817896 0.688281 -0.244479 0.917624 1.572593 0.554119 -0.311941 0.513077 0.974900 0.254052 0.752888 -0.199090 0.690295 -0.400061 -0.315976 -0.051664 -0.268262 0.708397 0.075234 -0.539778 1.687327 0.869984 0.290752 1.446783 0.535087 1.240112 -0.950046 0.684682 -0.062955 2.088093 -0.770765 -0.321129 -0.354476 0.197493 -0.490364 1.480311 -1.769445 -2.091082 0.546143 -1.892504 -0.524769 -0.351758 0.752816 -0.227716 -0.113200 -1.955883 -1.044247 -0.915157 -0.066429 0.366976 1.001725 -0.010296 1.326716 0.887852 -0.730587 -0.402089 0.192110 0.675241 -0.205972 -0.668873 -0.579539 0.341876 -1.456820 0.502046 1.676916 -0.725666 0.265887 -1.286514 2.016386 -1.391234 2.480510 0.827985 -1.278688 0.989120 0.918308 2.117980 -0.506020 -1.016932 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.360403 -1.269878 7.618391 4.931452 -1.770239 0.423015 0.150495 -4.074569 3.272010 -0.766889 -1.485555 1.630376 -2.751331 1.394219 -2.050281 2.557081 -6.705727 -2.735062 -1.648755 -3.620945 -1.848810 -1.574684 1.946511 0.888973 3.479491 3.167227 -2.934468 0.390853 -2.835653 -4.509169 1.897216 -1.326183 2.137376 1.014113 1.094463 -7.601132 4.900232 3.012795 -1.818042 -3.222998 2.808832 -2.700175 -0.604684 -2.392618 -1.145505 1.330483 0.173370 2.560819 3.527507 1.138042 -0.086861 1.320035 0.655537 5.373488 -2.635973 2.037030 1.631905 -1.408748 -1.443125 0.239869 0.407578 0.025457 1.356742 1.230131 -1.103933 -4.783165 0.251845 -2.327153 -2.502245 3.654582 0.208954 -1.595675 -2.717580 -1.579732 -4.016058 -0.695390 -0.246674 3.941794 4.799868 -2.937178 2.209527 -0.312846 0.477784 0.101673 1.204399 0.447855 4.053595 1.038196 -0.279906 -1.464572 -2.601772 -1.480402 1.146314 0.363703 -1.351791 -4.614866 2.168743 -7.128477 -4.201185 0.318748 2.779071 -2.424689 -2.302235 -0.044475 1.821499 1.211379 -0.591391 -2.684840 0.751458 1.098719 -0.763901 -0.437873 -0.261599 -0.934859 -1.071225 -0.291856 -5.427738 2.098153 -0.269751 0.000806 -0.704566 3.297962 -0.512581 -0.910823 0.112341 2.529094 -1.938309 3.945974 -1.473859 2.254431 -0.382522 1.756422 -0.313146 0.675345 2.168402 0.883451 -2.505811 -1.240244 -2.289477 0.917737 -4.008266 -0.726135 -2.512970 3.074377 2.686067 -2.977484 -3.380780 -1.181672 -2.961899 -5.480097 0.307809 -2.136129 -3.393484 1.250935 2.948566 2.765852 3.274462 3.820372 -2.549897 0.907235 0.128419 -0.836406 3.968826 -0.426370 3.016165 -2.482555 -1.787042 2.106513 -0.553244 1.970697 -0.444034 0.446705 0.857991 -4.331098 -1.354037 2.769445 1.944438 1.092006 2.823042 3.680311 3.459633 -2.928063 0.745809 3.337917 -1.633294 -0.831114 1.370683 -3.204683 1.445821 1.524338 1.672759 4.641843 0.234528 -1.611522 0.640142 0.247059 1.427288 -2.930722 -0.172121 -1.749689 0.631232 -2.012059 -0.046044 -2.015488 -1.399186 -2.475196 -3.513132 4.650306 -4.434080 -4.469099 5.470088 -1.781759 3.955381 -5.702984 2.202335 -2.857911 3.669438 -0.541499 0.414394 0.228200 -2.365474 -4.453015 2.260217 1.074525 -0.566084 1.480721 3.844787 2.696889 1.056713 -1.312038 3.790722 -1.588059 4.701882 -1.595133 3.508003 -1.254942 -1.579765 0.095522 -0.623725 -2.435938 -1.139523 1.753556 2.967663 1.583255 3.122177 3.249884 2.261114 4.679773 -2.245316 2.724279 -1.125733 1.133232 -1.658566 -2.472319 2.289748 2.357974 -0.836098 1.834311 -5.488792 -6.213202 -5.553449 -5.480736 0.359344 -2.095976 1.515319 -0.930398 -0.789103 -3.601887 -2.738325 4.071464 -0.126984 5.387179 2.498741 0.286874 2.492387 4.006102 -2.535246 -0.283252 0.204877 1.929915 0.858580 -0.872818 -5.107246 4.772025 -2.564208 0.542087 6.122642 -3.384898 1.804284 -1.304697 3.115169 -3.595046 4.691046 0.924372 -3.080776 3.156328 2.517793 3.004222 1.900447 -2.550163 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.436106 -0.908908 4.226671 3.012452 -0.860314 0.137080 0.676308 -2.047757 1.871394 0.218237 -0.773890 0.819152 -1.819793 0.854220 -0.524906 1.983062 -3.584282 -1.487956 -0.629391 -1.780654 -0.794889 -0.939829 1.546687 0.172443 2.202449 1.645551 -1.407273 -0.610020 -1.296014 -2.401528 1.239868 -0.926604 1.441202 1.118568 0.278142 -4.307904 2.632791 1.489778 -1.099768 -1.909550 1.685683 -1.309553 -0.091547 -1.270929 -0.339923 0.853359 0.319019 1.742845 2.053505 1.100395 0.145222 0.397636 0.970116 2.961887 -1.575206 1.102715 0.849816 -0.814111 -0.788125 0.060360 0.370941 -0.011603 0.911604 0.820770 -0.345716 -2.665099 -0.348144 -1.491682 -1.812578 1.864310 0.058090 -0.421063 -1.992955 -0.678300 -1.404021 -0.335944 -1.688203 2.405396 2.864716 -1.815263 1.482042 0.028445 0.128872 -0.319855 0.328746 0.389946 1.585749 0.609256 -0.190253 -0.769493 -1.277550 -1.262854 0.752605 -0.169201 -0.609665 -2.793832 1.199883 -2.504067 -2.305286 0.317452 1.542991 -1.160248 -1.093012 0.029216 0.802087 1.095329 -0.601685 -1.661649 0.272385 0.171331 -0.117034 -0.400174 -0.411164 -0.478508 -0.944884 -0.362175 -3.009099 0.843787 -0.316513 -0.455608 -0.291570 1.578020 -0.277134 -0.280415 0.080635 1.317477 -1.009823 2.414573 -0.420928 1.550381 0.691156 0.870616 -0.443975 0.713786 1.616847 1.033474 -1.032854 -0.412280 -1.465568 0.495451 -2.030713 -0.276837 -0.502490 1.803622 1.929056 -1.651657 -1.920315 -0.586794 -1.202982 -2.890159 0.650564 -1.398221 -0.821588 0.780095 1.657139 1.041040 1.935302 2.297175 -1.883745 0.564011 -0.093469 -0.272247 2.181380 0.597510 1.720693 -1.296848 -0.948911 1.009256 0.166920 0.786678 -0.219332 0.301713 0.604496 -2.418321 -0.566176 1.316496 0.930995 -0.088969 1.402122 1.752556 2.239917 -1.137801 0.281706 1.947485 -0.725880 -0.427622 0.872369 -2.147728 1.203995 0.530796 0.684644 2.102281 0.111112 -0.985103 0.671784 -0.258310 0.494260 -1.417493 0.015001 -1.075875 0.043134 -1.227769 0.268665 -0.915347 -1.056441 -0.927311 -0.923686 2.637181 -1.644469 -1.796605 2.548478 -1.323878 1.517120 -2.954764 2.682372 -1.631047 1.181287 -0.661829 -0.260495 0.105633 -0.839834 -2.203375 0.557143 0.698720 0.010270 0.780482 2.458880 1.481741 0.141226 -0.457030 2.175779 -0.619490 2.563693 -0.633384 2.027689 -0.735174 -0.465387 0.074705 -0.343309 -1.056918 -0.767174 0.601787 2.285910 0.849824 1.437548 1.940999 0.885144 2.722944 -1.330455 1.815358 -0.488146 1.184074 -0.882844 -1.092148 1.146265 1.128090 -0.661197 1.445071 -2.964993 -3.370019 -2.198788 -2.515514 -0.132792 -0.702675 1.161979 -0.705273 -0.295798 -2.080255 -1.568797 1.563510 -0.257159 1.867679 1.377240 0.135879 1.434936 2.125157 -1.211380 -0.308815 -0.122477 1.079290 0.557901 -0.521056 -2.320258 2.308145 -1.669049 0.172251 3.185776 -1.673860 0.671182 -1.132101 2.374746 -1.928664 2.729953 0.514717 -1.374088 2.095231 1.688146 1.785995 0.795171 -1.350508 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::move_backward(Job*, Job*, Job*) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_linear_insert >(Job*, __gnu_cxx::__ops::_Val_comp_iter) = 0.176030 -0.704995 4.748125 2.829069 -1.144068 0.224584 0.332418 -2.510328 2.395648 -0.937271 -0.889760 0.664996 -1.776650 0.927527 -1.972954 1.421588 -4.253830 -1.817674 -0.953002 -2.533314 -1.202495 -0.961265 1.275050 0.144530 2.098794 1.657211 -1.643176 -0.069698 -2.009740 -1.830276 1.830097 -0.981445 1.081874 0.185503 0.388926 -5.223497 2.936196 1.610085 -1.401823 -1.897451 1.781920 -2.029834 -0.160579 -1.809989 -0.542550 0.342931 0.059216 2.128623 2.286540 0.502124 -0.082539 0.979139 -0.043126 4.504071 -2.259022 1.241379 0.903063 -0.612055 -1.036620 0.578945 0.218126 0.111111 0.739316 0.744833 -0.731292 -3.035972 0.046610 -1.836603 -1.433610 2.214296 0.158734 -0.658563 -1.662529 -0.651504 -2.805625 -0.665518 -1.443038 2.527352 3.051583 -2.243738 1.370017 -0.212962 0.607554 0.363269 0.766910 0.513279 2.538758 0.571868 -0.224359 -0.955354 -2.073206 -0.143261 0.721947 -0.503907 -0.709367 -4.073815 1.485760 -4.319171 -2.614427 0.178876 1.775271 -1.325327 -0.905656 -0.036087 1.027993 0.668384 -0.950921 -1.791906 0.406722 0.637964 -0.390031 -0.072946 0.416287 -0.909788 -0.419353 -0.934562 -3.374519 1.301792 -0.330457 0.047058 -0.557660 2.292996 -0.498634 -0.807940 0.151616 1.580804 -1.439044 2.656756 -1.036210 1.226493 -0.561033 1.227548 -0.813832 0.545271 1.528767 1.289763 -1.431984 -0.432431 -1.540137 0.542755 -2.690808 -0.836201 -1.396325 1.607093 1.082699 -2.133189 -1.915102 -0.699630 -1.384957 -3.423130 0.181691 -1.291650 -2.324735 0.581338 1.920542 2.448166 2.308587 2.392823 -1.508842 0.745377 -0.176723 -0.500446 2.610532 -0.221778 2.043697 -1.487930 -1.076506 0.907861 -0.541079 1.268393 -0.268445 0.199694 0.446314 -3.009169 -0.422099 1.159202 1.526553 0.218578 1.868504 2.368161 1.305485 -2.682334 0.598240 2.231708 -1.186433 -0.414740 0.874158 -1.971305 0.939964 1.179578 0.608052 2.498753 0.221764 -1.054804 0.277176 -0.016705 1.016620 -1.651559 -0.673363 -1.037807 -0.425223 -1.344100 0.700645 -1.452774 -0.920538 -1.602690 -2.600031 2.790290 -3.265497 -2.335508 3.407902 -0.768588 2.317002 -3.323991 1.721561 -1.910409 2.425425 -0.268442 0.467845 -0.011547 -0.762848 -2.890334 1.459766 0.642867 -0.613658 1.101734 2.600521 1.894315 1.030028 -0.747938 2.763004 -1.262243 2.776918 -1.025908 2.199338 -0.942087 -1.607592 0.435507 -0.436727 -1.470117 -0.719417 1.694619 2.427228 1.046966 2.233139 2.253920 1.560561 3.041172 -1.366340 1.445830 -0.879392 0.713315 -0.972458 -1.376326 1.420034 1.317966 -0.566611 0.993150 -3.525493 -4.211630 -3.684675 -3.027990 0.808744 -1.728523 0.394645 -0.615024 -0.239078 -2.708342 -1.619001 2.013520 -0.490313 2.749274 1.595470 0.237058 1.572254 2.713805 -1.923860 -0.196110 0.677845 1.376476 0.599826 -0.504236 -3.463707 3.151643 -1.905362 0.272065 3.890493 -2.040515 0.905708 -0.311734 2.107238 -2.112340 3.055267 0.620079 -1.934334 2.083349 2.123204 2.411901 1.819465 -1.501468 -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.168811 -0.259853 1.167136 0.863297 -0.485318 -0.031684 0.095203 -0.477929 0.384660 -0.305944 -0.243355 0.170476 -0.544796 0.291602 -0.160158 0.497218 -1.170244 -0.328157 -0.227612 -0.416463 -0.137085 -0.173405 0.529115 0.104658 0.603538 0.831178 -0.345988 -0.182424 -0.188494 -0.308605 0.513765 -0.260573 0.472112 0.733908 0.033840 -1.303266 0.628329 0.358287 -0.350535 -0.508763 0.525321 -0.374284 0.025374 -0.625634 -0.367826 0.172580 0.013149 0.481331 0.494151 0.216675 -0.202595 0.099258 0.360375 0.775918 -0.373850 0.211548 0.276379 -0.201481 -0.215301 -0.195146 0.127771 0.105243 0.200539 0.173712 -0.058266 -0.794580 -0.281488 -0.631570 -0.506456 0.466479 -0.126535 0.137083 -0.615508 -0.226589 -0.434883 -0.066495 -0.638769 0.838941 0.740100 -0.678991 0.314504 -0.067695 -0.126874 -0.078386 -0.026755 0.252559 0.195586 0.213099 0.128050 -0.029009 -0.160853 -0.335817 0.335900 -0.305059 -0.208488 -1.031553 0.380369 -0.746280 -0.541088 0.060857 0.477841 -0.352485 -0.004075 -0.080486 0.011340 0.398719 -0.287916 -0.349702 0.257044 -0.026607 0.262269 -0.067585 -0.176418 0.244998 -0.250772 -0.301012 -0.869085 0.331479 -0.173610 -0.104683 0.306828 0.379887 -0.031539 -0.128954 0.000238 0.281168 -0.376032 0.995017 -0.116589 0.331107 0.081595 0.339473 0.357129 0.164887 0.526997 0.537017 -0.353905 -0.229963 -0.407893 0.082214 -0.505456 -0.349075 0.080180 0.257682 0.464476 -0.440995 -0.499581 -0.186805 -0.618778 -1.041594 0.060031 -0.402029 -0.049646 0.716560 0.430388 0.366683 0.598374 0.736050 -0.509144 -0.013360 -0.055670 -0.209483 0.591782 0.458937 0.443339 -0.287701 -0.270439 0.334564 -0.200590 0.347379 0.009681 0.163516 0.147560 -0.639199 -0.029069 0.503456 0.415167 -0.070391 0.361617 0.492539 0.115753 -0.009532 0.054496 0.548575 -0.218875 -0.123695 0.294885 -0.559108 0.370231 0.102528 -0.005549 0.357558 0.004523 -0.138343 0.224916 -0.192074 0.132243 -0.380434 -0.060680 -0.240003 0.034439 -0.553844 0.215698 -0.142398 -0.322427 -0.230554 -0.287213 0.731446 -0.708614 -0.162479 0.569214 -0.089536 0.500496 -0.605417 0.677035 -0.431831 0.639224 -0.045468 -0.175062 0.151750 -0.570017 -0.586346 -0.052387 0.189360 0.120286 -0.109824 0.555504 0.467260 -0.175799 -0.097826 0.655521 -0.142418 0.864643 -0.152739 0.487803 -0.176750 -0.126658 0.216764 -0.067615 -0.403094 -0.304957 0.256695 0.957146 0.170393 0.703067 0.668137 0.111937 0.839776 -0.374971 0.346712 -0.148240 0.373402 -0.238803 -0.279249 0.302813 0.606869 -0.175838 0.320408 -0.753135 -1.161003 -0.892920 -0.484139 -0.073899 -0.339893 0.319556 -0.257963 -0.083009 -0.415266 -0.474753 0.342513 -0.229676 0.562723 0.346512 -0.008461 0.434642 0.588473 -0.424404 -0.104357 0.226193 0.522018 0.296831 0.169775 -0.843845 0.656692 -0.465963 -0.159297 1.031986 -0.517862 0.209305 -0.256046 0.853513 -0.464161 0.815487 0.100042 -0.517363 0.675254 0.540180 0.163318 0.559234 -0.355516 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a(Job*, Job*, Job*) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__miter_base(Job*) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_wrap(Job* const&, Job*) = -0.090136 -0.251670 0.665673 0.509658 0.030368 0.003709 0.406774 -0.220953 0.393630 0.224799 -0.085117 0.051449 -0.526169 0.141520 -0.091674 0.418338 -0.389413 -0.362875 -0.024780 -0.260554 -0.019499 -0.227089 0.454230 -0.126570 0.449235 0.018739 -0.174298 -0.425321 -0.459830 -0.245494 0.303470 -0.225265 0.310698 0.148860 -0.197899 -0.634567 0.340936 0.279286 -0.250621 -0.337564 0.396248 -0.287569 0.157239 -0.177316 0.109437 0.119384 0.123878 0.157670 0.411341 0.270522 0.267063 -0.039133 0.171094 0.542531 -0.479266 0.204592 0.074611 -0.078613 -0.182684 0.042665 0.061485 -0.014832 0.228665 0.179459 -0.107183 -0.424211 -0.220957 -0.330541 -0.491794 0.224334 -0.142919 0.123854 -0.429369 0.001636 -0.083077 -0.117905 -0.628931 0.307190 0.553311 -0.351609 0.393308 0.037424 0.013887 -0.147983 -0.043617 0.154007 -0.034152 0.055977 -0.052087 -0.169700 -0.212985 -0.014736 0.040242 0.084683 -0.032071 -0.364753 0.314037 0.103628 -0.423856 0.045942 0.198794 -0.097383 -0.190366 0.186357 -0.055215 0.368510 -0.276164 -0.421905 -0.053280 -0.064633 0.185791 -0.082095 -0.070826 -0.247038 -0.306672 -0.338632 -0.474719 0.010064 -0.169481 -0.302778 -0.189358 0.258555 -0.203777 0.043781 0.082727 0.258205 -0.199669 0.500601 0.038458 0.323210 0.286877 0.011251 -0.517531 -0.019947 0.389141 0.605772 -0.158639 0.137678 -0.352380 -0.029987 -0.284802 -0.104762 0.191893 0.266888 0.454954 -0.412470 -0.253271 -0.019003 0.042675 -0.509921 0.203803 -0.292160 0.251304 0.067860 0.292811 0.122047 0.393683 0.828355 -0.375705 0.130263 -0.028233 -0.211477 0.401908 0.255345 0.359787 -0.205479 -0.222717 0.073626 0.184323 0.031030 0.001289 0.143422 0.075074 -0.523005 0.040653 0.060764 0.099196 -0.275451 0.247786 0.222770 0.258208 -0.242693 0.074452 0.375127 -0.067884 -0.009206 0.143136 -0.496985 0.304870 0.051757 -0.136330 0.141528 0.055647 -0.252559 0.231491 -0.270406 0.090184 -0.272898 0.065583 -0.244234 -0.121551 -0.319621 0.072010 -0.074318 -0.322790 0.023237 0.109857 0.438939 0.099692 -0.104332 0.166440 -0.019879 0.001865 -0.498017 0.860477 -0.327613 0.124048 -0.237316 -0.065795 -0.015801 0.277561 -0.212674 -0.161406 0.135561 0.009106 0.256635 0.584540 0.280899 -0.068298 0.008200 0.471930 -0.014410 0.385079 -0.024315 0.342052 -0.098241 -0.153118 0.185040 -0.090391 -0.068971 -0.119351 0.007251 0.653107 0.287352 0.087608 0.406324 0.096045 0.579572 -0.201829 0.337433 -0.024723 0.499995 -0.085994 -0.081923 0.135821 0.181627 -0.144023 0.312688 -0.487224 -0.669958 0.110557 -0.427497 0.088505 -0.041319 0.144091 -0.118808 0.065925 -0.488332 -0.265606 -0.066094 -0.179108 0.277336 0.137182 0.049564 0.258432 0.356617 -0.267894 -0.103436 0.011339 0.244812 0.099444 -0.125328 -0.209650 0.255859 -0.439878 -0.039791 0.401399 -0.230304 -0.014202 -0.123677 0.477346 -0.328178 0.600661 0.101073 -0.072982 0.662805 0.346434 0.539656 0.107546 -0.171658 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a1(Job*, Job*, Job*) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_base(Job*) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a2(Job*, Job*, Job*) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward::__copy_move_b(Job*, Job*, Job*) = -0.564241 -2.009305 4.351602 2.944994 -0.148244 1.099376 0.796985 -1.235459 0.960141 1.017331 -0.782166 2.060076 -1.992748 0.023091 -0.535952 0.757546 -2.627262 -1.772958 -0.447262 -1.160257 -0.427793 -1.244784 -0.327199 2.178549 1.897583 0.688883 -1.534129 -0.007277 -3.217369 -3.316117 -0.493413 -0.420302 1.545425 -0.647668 1.464377 -3.776693 2.368978 2.808328 -0.272268 -2.862196 1.383163 -1.122066 0.063065 -0.274244 -0.683202 1.469164 1.389922 0.522704 1.318985 1.027944 -0.314087 -0.074728 1.286812 2.629294 -0.160507 1.788839 1.836338 -1.032845 0.328315 -0.429145 -0.053028 -1.239181 0.765159 0.095936 -0.736152 -1.770399 0.126693 -0.221410 -1.239519 1.269410 0.386497 -1.179858 -1.603817 -1.116814 -3.206761 -0.494412 0.775640 1.686876 3.067352 -1.277924 2.505826 0.475915 0.911063 0.525997 1.533197 0.307108 1.537672 0.643195 -0.853812 -0.032072 -2.011072 -0.926683 -0.151629 1.163238 -1.228480 -1.999426 1.195079 -4.080886 -2.710400 1.221773 0.340615 -1.681333 -1.457228 -0.437935 0.910590 1.384876 -0.699342 -2.053169 -0.434303 1.259804 -0.533817 -0.509993 0.596670 -0.661188 -0.485059 -0.171847 -2.471476 1.126736 1.109820 -0.634800 -0.856414 2.491124 -0.290959 1.369792 0.131969 1.401706 -0.766973 1.734376 0.705914 1.117606 -0.643316 -0.425087 -1.588606 -0.484626 0.541635 0.076531 -1.618102 -0.672190 -0.530655 0.893041 -0.508501 0.906930 -0.991000 2.411709 1.660290 -1.314176 -1.577934 -1.640608 -1.715625 -2.062014 0.152994 -0.551343 -1.955493 0.703938 1.611778 0.301343 0.766672 2.040276 -0.805815 0.160947 0.060962 -0.887024 1.236660 -1.008878 1.328811 -1.507880 -1.223214 1.447743 0.965029 1.634171 0.046757 0.055793 0.827014 -1.332790 -0.687303 1.035180 0.934050 0.535373 2.497703 2.301005 2.455496 -0.926195 -0.579555 0.826639 -1.112743 -0.304243 0.230191 -2.012901 0.925788 0.879792 0.214408 3.183076 -0.085720 -1.106049 1.891678 0.026022 0.639752 -1.969964 0.968031 -1.559024 0.435383 -1.006214 -0.947046 -1.504282 -0.934399 -2.218911 -1.668479 3.057490 -1.826364 -2.673124 1.682184 -0.452028 1.802399 -3.744764 1.865533 -1.350538 2.214344 0.238789 -0.011820 0.288362 -0.090530 -1.473743 0.580936 0.808784 -1.235361 1.412636 1.637161 1.058898 0.045929 -0.178024 1.710395 -0.612543 1.406954 -1.271436 1.177811 -0.876685 -0.350113 -0.355046 -0.327770 -0.190265 0.302033 0.211917 -0.034105 0.688843 0.524163 0.871813 2.182314 1.369842 -0.829876 0.830379 -0.812932 1.694046 -1.520795 -1.432268 -0.111535 1.668006 0.525257 1.089242 -3.549384 -2.561265 -2.676812 -3.298028 -0.330328 -0.034148 0.599610 0.431325 -0.495922 -2.746144 -1.851989 2.646421 0.234491 2.217776 1.712889 0.232259 2.049222 1.612904 -0.322648 -0.530634 -0.122181 0.748131 -0.161189 -0.506792 -1.795440 1.748736 -2.245861 1.070925 2.869894 -1.710717 1.396919 -0.503967 1.110486 -2.896488 3.104336 1.062704 -2.338294 1.031535 1.902082 2.082244 -1.135976 -1.510736 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__copy_move::__assign_one(Job*, Job*) = 0.015153 -0.274600 1.301765 0.801248 -0.191538 0.053603 0.259852 -0.647457 0.730941 -0.214046 -0.248863 0.132125 -0.639288 0.289628 -0.733548 0.450137 -1.036490 -0.615232 -0.258268 -0.672264 -0.221704 -0.309180 0.534304 -0.061507 0.642480 0.247007 -0.444249 -0.217927 -0.805959 -0.330406 0.607723 -0.311425 0.308362 -0.064927 -0.092568 -1.210879 0.752499 0.493481 -0.454690 -0.551561 0.587652 -0.624543 0.012338 -0.544817 -0.062723 0.033883 -0.000287 0.486458 0.655985 0.190215 0.129474 0.288389 -0.023525 1.317163 -0.803676 0.382615 0.238891 -0.028649 -0.268978 0.209311 0.084109 0.114831 0.206128 0.245657 -0.188276 -0.838835 -0.171197 -0.567603 -0.469423 0.583070 -0.164337 0.000118 -0.538051 -0.070855 -0.790188 -0.178831 -0.684694 0.666664 0.903978 -0.718506 0.431987 -0.049167 0.172808 0.036278 0.110681 0.218535 0.446418 0.168601 -0.028244 -0.304700 -0.595834 0.192254 0.145609 -0.196610 -0.206952 -1.162212 0.557024 -1.012297 -0.764272 0.033968 0.478071 -0.325610 -0.091244 0.144424 0.100211 0.296586 -0.408046 -0.574966 0.121726 0.141005 0.155759 -0.037976 0.172202 -0.331153 -0.148684 -0.462153 -0.939835 0.281526 -0.184442 -0.150649 -0.180231 0.630562 -0.244590 -0.195736 0.062826 0.428845 -0.432969 0.819235 -0.239937 0.412193 -0.107941 0.327569 -0.499662 0.130014 0.534917 0.618138 -0.436144 0.169069 -0.488112 0.076065 -0.690182 -0.309643 -0.260848 0.293191 0.224216 -0.722509 -0.499997 -0.153830 -0.276101 -0.987469 0.072962 -0.401234 -0.479032 0.158615 0.556522 0.744450 0.719966 1.020439 -0.433056 0.154798 -0.018155 -0.259428 0.739574 -0.065714 0.586505 -0.380717 -0.418958 0.226554 -0.091517 0.265885 -0.018075 0.148243 0.087934 -0.946905 0.051911 0.217685 0.432395 -0.157529 0.572917 0.612894 -0.072129 -0.767477 0.209001 0.667219 -0.310469 -0.047213 0.183177 -0.684561 0.345911 0.302350 0.075172 0.506690 0.092073 -0.297539 0.181611 -0.209502 0.329626 -0.476724 -0.183436 -0.342510 -0.273366 -0.505544 0.296234 -0.276492 -0.334588 -0.297974 -0.610364 0.768155 -0.753301 -0.434133 0.782688 0.051961 0.447154 -0.849628 0.654327 -0.558619 0.762363 0.007210 0.183726 0.000688 0.034437 -0.737864 0.163680 0.215472 -0.196398 0.392041 0.802108 0.544280 0.198489 -0.132314 0.856278 -0.353847 0.761511 -0.262312 0.598155 -0.230942 -0.630699 0.292598 -0.157009 -0.357029 -0.278933 0.464452 0.931227 0.358367 0.608857 0.717073 0.374462 0.990624 -0.388394 0.413408 -0.226055 0.355479 -0.247108 -0.291615 0.358387 0.338878 -0.202324 0.307872 -0.966323 -1.308527 -0.878323 -0.820088 0.377740 -0.652159 0.045723 -0.236852 -0.013050 -0.846940 -0.522022 0.284355 -0.289710 0.665608 0.428336 0.102614 0.442887 0.775308 -0.631781 0.003906 0.247818 0.490702 0.194323 -0.162980 -0.860872 0.800203 -0.615127 -0.036887 1.040441 -0.515781 0.200336 0.050669 0.512879 -0.553409 0.963256 0.206064 -0.450778 0.804224 0.644544 0.795346 0.594447 -0.399773 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(Job&, Job*) = 0.568451 -0.952590 4.845068 2.885507 -1.172979 0.097025 0.339847 -2.128542 1.544643 -0.626457 -1.110480 1.433811 -1.340792 0.906867 -2.803617 1.729718 -3.821496 -1.474502 -0.937560 -2.149787 -0.996260 -0.311403 1.218512 0.351307 2.480095 1.474396 -1.617664 -0.475156 -1.799456 -2.639684 0.766097 -0.762653 0.895799 -1.049818 0.215275 -4.352480 2.709803 2.045061 -1.364639 -2.058074 2.076748 -1.321730 -0.618678 -1.388654 -1.154387 0.143727 0.241097 1.762867 1.637737 1.157903 -0.110630 1.437253 1.286314 4.803583 -1.231062 1.398138 1.533223 -0.273345 -0.694911 0.266127 0.455376 -0.010628 0.165662 0.009263 0.393253 -2.913108 -0.746797 -1.334611 -0.612679 1.575736 -0.499690 -0.889005 -1.470029 -0.725447 -2.969683 -0.350109 -2.010414 2.396091 2.678766 -2.521867 1.212912 -0.191090 0.032816 0.363809 0.147697 0.620162 1.181481 0.975789 0.473059 -0.843246 -0.558025 0.232837 0.943608 -0.762645 -1.385548 -5.084100 2.225534 -4.576460 -2.518627 0.524221 1.902067 -1.883089 0.552516 -0.494465 0.197931 0.827557 -1.290223 -1.239594 0.560116 0.421579 0.694312 -0.293160 0.410794 -0.343337 0.080981 0.106393 -3.220417 1.721069 -0.074102 0.062009 -0.081980 1.761147 0.642154 -0.364132 -0.145012 1.629521 -1.216747 2.591183 -0.590795 1.524192 -1.312655 2.288141 -0.139499 1.013118 1.752928 -0.276487 -1.873532 0.155201 -1.270257 0.724932 -1.630634 -0.253257 -1.687274 1.469587 0.805217 -1.705805 -2.042909 -1.015657 -2.064098 -2.950218 -0.089211 -1.060857 -2.821606 1.074806 1.642668 1.693705 1.865734 1.976724 -1.059151 -0.067523 0.238714 -0.693953 2.047398 -1.102960 1.631074 -1.335547 -1.239524 1.172967 -0.152312 1.481091 -0.287952 0.799545 0.721171 -2.466629 0.279695 1.309546 1.701451 -0.382960 1.879003 2.262457 0.905298 -1.292766 -0.142463 1.726929 -1.613730 -0.393131 0.597576 -2.128342 0.634014 0.969040 1.048914 2.449013 0.446196 -0.407455 1.116007 -0.512354 0.631090 -1.315308 -0.125973 -1.099937 -0.729780 -0.921355 0.704563 -0.921049 -0.343934 -1.625332 -2.783019 2.732699 -4.364140 -1.256577 2.606906 -0.103202 1.458966 -2.689045 2.294490 -1.641062 2.637832 0.721375 0.344122 0.397351 -0.967040 -2.813833 0.884863 0.705105 -0.554610 0.760562 2.261971 1.524397 0.334740 -0.782422 2.566843 -1.817757 2.992652 -0.946149 1.884210 -0.841384 -2.060326 0.061741 -0.143812 -1.853869 -1.149359 1.715833 2.117703 -0.076439 2.047802 1.715753 1.298468 3.264859 -1.496924 1.745369 -0.982745 0.932384 -1.244386 -1.440264 1.301120 1.611096 -0.233346 1.081773 -3.374740 -3.631114 -4.989373 -2.361749 0.850853 -2.153427 0.706326 -1.368105 -0.737781 -2.249098 -2.317620 2.673950 -0.538279 1.142854 2.230552 0.357424 1.625667 1.983155 -1.124190 0.488487 0.046898 1.566485 1.174802 -0.572957 -2.549225 2.443747 -1.741625 -0.287834 3.744991 -1.620008 1.288004 0.406992 0.840691 -1.951689 2.681346 0.416547 -2.093330 1.805225 2.564984 1.560018 0.954456 -1.501264 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.020958 -0.342894 1.523905 1.111491 -0.353020 0.057579 0.253800 -0.722039 0.694520 0.057913 -0.136756 0.205083 -0.659644 0.319567 -0.102403 0.749513 -1.231965 -0.486577 -0.289689 -0.772769 -0.304224 -0.262856 0.572320 -0.052805 0.755464 0.444568 -0.497556 -0.353606 -0.417140 -0.648040 0.612069 -0.335571 0.584913 0.317355 -0.022745 -2.038920 0.915374 0.514282 -0.495642 -0.663193 0.626317 -0.484175 0.117702 -0.480307 -0.319434 0.182470 0.020306 0.339019 0.728796 0.372090 0.147409 0.249334 0.376877 1.432072 -0.671160 0.388518 0.259996 -0.306209 -0.397715 0.045314 0.141992 0.107823 0.379730 0.193473 -0.053620 -1.046324 -0.253061 -0.634308 -0.764005 0.576275 -0.077173 -0.154762 -0.658324 -0.263652 -0.514948 -0.291502 -0.843799 0.864007 0.985481 -0.819994 0.516422 -0.029713 -0.059030 0.017414 0.138149 0.244898 0.479510 0.211697 0.026150 -0.099787 -0.176181 -0.292352 0.367756 -0.059012 -0.267837 -1.223162 0.532400 -0.575572 -0.787315 0.239515 0.621119 -0.324542 -0.528109 -0.248473 0.123658 0.473629 -0.456960 -0.621920 -0.043989 0.084223 0.204159 -0.161706 -0.184586 -0.225520 -0.323758 -0.363679 -1.072448 0.348925 -0.154299 -0.139373 -0.198168 0.622369 -0.195445 -0.210448 0.005402 0.525079 -0.553406 1.055364 -0.232036 0.602661 0.110315 0.327695 -0.376215 0.034854 0.616825 0.672592 -0.267694 -0.230999 -0.659700 0.125266 -0.730070 -0.060462 0.115903 0.590237 0.851883 -0.460058 -0.602433 -0.180993 -0.363248 -1.235029 0.193307 -0.543330 -0.092563 0.580500 0.599318 0.484394 0.768154 0.946369 -0.630971 0.251382 -0.175099 -0.271752 0.860437 0.292707 0.632983 -0.429526 -0.364431 0.269287 0.029184 0.385773 0.039408 0.136563 0.178403 -0.837277 -0.117024 0.350979 0.418237 -0.187719 0.462798 0.666272 0.938382 -0.493931 0.116106 0.687345 -0.344193 -0.057644 0.256439 -0.739700 0.291666 0.261469 -0.162746 0.662503 0.007560 -0.382880 0.209327 -0.242908 0.194555 -0.447561 0.025452 -0.384449 -0.050738 -0.526140 0.028991 -0.390407 -0.393225 -0.331675 -0.363432 0.972334 -0.764557 -0.464335 0.879057 -0.285063 0.392377 -1.033874 1.288453 -0.594717 0.565076 -0.409133 -0.172865 -0.019900 -0.048744 -0.785191 0.202550 0.260456 -0.084959 0.119111 1.089280 0.566232 0.012182 -0.227962 0.904183 -0.224959 0.976538 -0.252359 0.885477 -0.303708 -0.200268 0.116601 -0.132797 -0.368417 -0.361044 0.314207 0.903741 0.303441 0.534698 0.584282 0.387305 1.025482 -0.465745 0.669665 -0.137143 0.498405 -0.269115 -0.287668 0.447079 0.590109 -0.194620 0.418002 -1.036091 -1.192983 -0.854468 -0.698354 0.055745 0.009269 0.247549 -0.279664 -0.093638 -0.767614 -0.576707 0.489301 -0.292710 0.566591 0.440952 0.125824 0.577221 0.835743 -0.457942 -0.154887 0.019460 0.331910 0.292011 -0.114215 -0.847717 0.895087 -0.644083 -0.048392 1.094067 -0.484531 0.257857 -0.106883 0.881028 -0.613829 1.061488 0.125760 -0.399308 0.922244 0.823126 0.672721 0.324920 -0.424299 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(bool (*)(Job, Job)) = -0.037334 -0.323251 1.189943 0.875879 -0.211307 0.042693 0.369714 -0.516463 0.623250 0.051090 -0.123574 0.098794 -0.667157 0.247279 -0.087882 0.571250 -0.947890 -0.482525 -0.167483 -0.568930 -0.178177 -0.294934 0.538411 -0.070092 0.628364 0.291961 -0.350701 -0.419376 -0.497099 -0.311088 0.602795 -0.306588 0.490708 0.361951 -0.091295 -1.551584 0.666484 0.388273 -0.403204 -0.553900 0.532444 -0.479367 0.166279 -0.439834 -0.103483 0.141232 0.073636 0.383554 0.628441 0.283263 0.133230 0.092458 0.201404 1.129993 -0.664239 0.311874 0.183851 -0.208998 -0.310802 0.064791 0.103052 0.053427 0.346018 0.232368 -0.147692 -0.794936 -0.224589 -0.597178 -0.696480 0.468575 -0.045287 0.033732 -0.611633 -0.127540 -0.365646 -0.232787 -0.829966 0.708413 0.857938 -0.681877 0.503874 0.002879 0.037370 -0.055900 0.092207 0.225108 0.315491 0.129969 -0.043339 -0.147670 -0.399042 -0.196001 0.210816 -0.101683 -0.133848 -0.928153 0.415098 -0.295399 -0.666441 0.136186 0.432213 -0.214399 -0.386274 -0.018663 0.083794 0.450375 -0.400278 -0.584056 -0.057814 0.034587 0.143662 -0.110861 -0.100374 -0.224249 -0.338728 -0.505131 -0.859349 0.194316 -0.167634 -0.225622 -0.180630 0.525699 -0.296980 -0.105470 0.059777 0.388330 -0.423844 0.877420 -0.114810 0.433925 0.272774 0.113840 -0.474001 0.025542 0.536222 0.853032 -0.208293 -0.070402 -0.532300 0.066600 -0.592180 -0.160229 0.209753 0.449530 0.622018 -0.513151 -0.462487 -0.131543 -0.143745 -0.956931 0.214930 -0.457593 0.093566 0.379783 0.503774 0.437906 0.644032 0.947029 -0.569429 0.258260 -0.134931 -0.225068 0.688585 0.375005 0.551324 -0.351015 -0.312096 0.163333 0.050629 0.238263 0.015788 0.116782 0.123213 -0.771307 -0.090263 0.186103 0.311615 -0.225869 0.408487 0.508128 0.540054 -0.516686 0.135573 0.590275 -0.223217 -0.044858 0.235074 -0.663721 0.361584 0.180739 -0.199184 0.427975 0.014927 -0.371914 0.200675 -0.243706 0.168692 -0.386469 -0.029591 -0.336154 -0.139853 -0.503469 0.117937 -0.287374 -0.423634 -0.199732 -0.170765 0.781063 -0.367143 -0.346553 0.608105 -0.198005 0.285826 -0.860265 1.135839 -0.509359 0.383317 -0.356595 -0.135212 -0.036501 0.109224 -0.562470 0.044487 0.214494 -0.066804 0.201191 0.913258 0.483548 0.015317 -0.095054 0.764356 -0.114403 0.714990 -0.174611 0.662047 -0.240936 -0.201603 0.195624 -0.136305 -0.195370 -0.230350 0.217407 0.925695 0.367098 0.423127 0.598282 0.296357 0.841136 -0.360164 0.478991 -0.107977 0.522844 -0.190134 -0.194469 0.297708 0.396915 -0.194303 0.380902 -0.847011 -1.091587 -0.413653 -0.619795 0.091260 -0.077040 0.179545 -0.178664 0.009315 -0.745165 -0.426708 0.108298 -0.275176 0.479248 0.309624 0.084159 0.471479 0.693264 -0.461520 -0.166140 0.134148 0.346923 0.176498 -0.103393 -0.674383 0.668025 -0.613791 -0.006759 0.869284 -0.401200 0.126307 -0.167736 0.854271 -0.517221 0.938145 0.146216 -0.320493 0.824970 0.656823 0.666959 0.341752 -0.335827 -PE-benchmarks/karatsuba.cpp__makeEqualLength(std::__cxx11::basic_string, std::allocator >&, std::__cxx11::basic_string, std::allocator >&) = -1.896158 -3.800216 6.261356 4.169770 0.286884 1.456713 2.075651 -1.041609 2.211263 1.332685 -1.839471 3.484430 -4.051631 -0.254644 -0.405175 0.371076 -4.178326 -4.026663 0.201923 -0.768265 -1.215187 -2.927558 -0.385860 3.956642 2.780616 1.654595 -2.590481 -0.379046 -6.206249 -3.358088 -0.427797 -0.843444 2.761543 0.403319 2.099500 -6.638178 2.534120 3.992232 -0.044532 -5.085353 1.965466 -2.701204 0.538087 -0.840925 -0.353333 1.778540 3.089662 2.154025 1.904550 0.820931 -0.647872 -1.383158 0.471981 4.681024 -0.126555 2.912232 3.628997 -1.591451 -0.147408 -1.010998 0.537818 -3.015457 2.256258 1.595022 -2.917677 -1.793149 1.058535 -1.312622 -2.983900 2.492916 1.765252 -0.990849 -2.520625 -1.792474 -3.959759 -0.835079 4.153725 2.852873 5.822510 -2.180323 4.945761 1.276834 2.987691 0.097985 2.417081 0.019408 3.440711 0.688907 -2.365060 -1.629135 -6.013541 -1.587404 -1.367206 2.551589 -0.823655 -0.787833 1.547034 -5.953939 -5.174530 1.101411 -0.208835 -1.827668 -3.082597 1.414383 2.752975 2.651257 -0.251448 -3.769931 -1.802665 1.577738 -2.804691 -0.850348 0.401630 -0.671968 -1.710625 -1.143400 -4.394334 0.721079 1.922208 -2.133372 -1.469282 4.040399 -2.275734 3.433829 0.538338 1.668877 0.042343 2.605851 2.195762 0.209735 1.236171 -2.593778 -2.502812 -0.826777 0.306704 2.738696 -3.234966 -0.981824 0.114823 1.127078 -0.871914 -0.016088 -1.812835 4.435204 2.196314 -3.210869 -3.285751 -3.341446 -1.962995 -3.490050 0.422712 -1.655323 -1.780276 0.521012 2.800461 1.243590 0.645488 5.142508 -2.093901 2.233311 1.080115 -1.146304 1.408608 -0.379379 2.552113 -2.968871 -2.256978 2.089218 1.977631 1.791165 -0.444533 -0.432399 0.772073 -3.214554 -3.092627 1.706510 1.278077 2.142390 3.912936 3.041293 4.986132 -3.908875 -0.260639 1.096684 -0.443223 -1.033150 0.587099 -3.870986 2.356439 0.653994 0.900973 5.247348 0.178238 -2.995308 2.436589 0.719230 0.967024 -3.660368 1.846476 -2.523067 0.730954 -1.777655 -1.311887 -2.541557 -1.786820 -3.391196 -1.835269 5.360689 -1.520900 -6.303206 2.485806 -0.959958 4.383967 -7.630061 2.707393 -2.364018 3.859008 -0.779333 -0.546179 0.103317 -0.834520 -1.322981 1.342861 1.400195 -1.430284 2.634037 2.794088 1.648044 1.359827 0.616194 2.235826 0.305347 1.665452 -1.396197 1.441325 -0.774209 -1.241925 -0.363219 -0.958361 1.108234 2.080617 -0.416930 1.094870 3.276411 0.542029 3.049199 3.535981 1.761559 -1.935663 0.629098 -0.842385 4.246248 -2.273717 -2.302075 -1.093743 2.024599 0.152856 2.098961 -5.613014 -5.475360 -1.999221 -7.348726 -1.125166 -0.817333 1.222137 1.044419 -0.164957 -5.044079 -2.114554 2.278881 0.748231 7.269597 2.206100 0.483331 3.806723 2.760471 -1.529348 -1.710557 0.992068 1.198419 -1.664284 -0.991053 -3.413741 1.912183 -3.634484 3.026711 4.530643 -2.777063 1.656550 -1.969628 2.481359 -4.628818 5.848313 2.470873 -4.728951 1.426296 1.238499 4.521827 -1.777986 -3.130262 -PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char, std::__cxx11::basic_string, std::allocator > const&) = -0.327557 -0.596012 3.698134 1.667220 -0.891138 -0.220918 1.664810 -1.762234 1.676225 -0.963514 -0.355826 -0.014695 -2.316377 0.659030 -1.939262 0.824249 -2.941578 -1.759530 -0.846849 -2.081532 -0.843912 -1.066135 2.107675 0.116345 1.991203 0.568058 -0.962465 -1.265432 -1.840595 -1.085493 1.943045 -0.631975 1.035468 0.124498 -0.289269 -4.293358 1.812704 0.854013 -1.269549 -1.099628 2.148120 -1.115143 -0.149609 -0.926011 -0.533328 -0.006571 0.374228 2.096603 1.975971 0.816642 0.522329 0.207955 -0.135375 3.861491 -2.169431 0.879182 0.789551 -0.141592 -0.819277 0.662964 -0.303241 -0.267510 0.241518 0.713246 -0.563316 -1.710768 0.277840 -1.966781 -1.767053 1.869798 -0.209065 -0.241132 -1.421304 -0.444872 -2.016105 -0.404354 -0.858563 1.955663 2.716444 -2.190245 1.218745 -0.257322 0.168260 -0.385758 -0.399104 0.376399 0.754457 0.109398 0.037570 -1.307588 -2.216524 0.337783 -0.314570 -0.334144 -0.129556 -3.569754 1.771352 -2.486209 -2.206915 -0.071418 1.081521 -1.232501 -0.644656 0.510031 0.252394 0.682402 -1.172446 -1.850964 -0.485152 0.459536 0.146598 0.652099 0.559972 -0.386192 -0.691397 -1.507454 -2.763480 0.905258 -0.713072 -0.769770 -0.804088 1.577937 -0.983406 0.330959 1.062832 1.758455 -1.149358 2.376456 0.056301 0.655890 0.526044 0.603409 -0.814878 -0.194231 1.303949 2.523024 -0.954548 0.082967 -1.402505 0.131743 -2.035732 -0.923662 -0.423757 0.906209 0.861611 -2.343635 -1.789017 0.088816 -0.564229 -3.090735 0.449517 -1.441841 -1.108250 0.608240 0.933698 1.844442 1.455813 3.158214 -1.246916 0.903179 0.138483 -1.166484 1.264318 -0.061590 1.897161 -1.131646 -1.332700 0.070206 -0.497956 0.896778 -0.462424 0.217054 0.105428 -3.091169 -0.735562 -0.017641 1.067517 -0.617518 0.923561 1.921889 0.562309 -2.213108 0.218596 1.992593 -1.052956 -0.457514 0.900849 -2.057830 0.978048 0.642085 -0.263531 1.576163 0.418406 -0.940271 1.309440 -0.723542 0.746736 -1.411182 -0.626500 -1.056669 -0.730870 -1.721681 0.313356 -0.733840 -0.816040 -0.574623 -1.599310 2.035146 -1.869162 -1.604940 2.271045 0.040439 1.569388 -3.065903 2.849502 -1.099395 1.673078 -0.169166 0.445120 -0.251597 0.075456 -1.362774 0.573076 -0.150852 -0.171636 1.394793 2.985214 1.171173 0.775221 -0.133636 2.727403 -0.806612 2.142425 -0.709267 1.610918 -0.939206 -2.292512 0.848041 -0.117382 -1.086637 -0.741232 1.349589 2.712399 1.193512 1.172065 2.440819 1.305621 2.831106 -0.700414 1.114232 -0.494985 1.451201 -0.861347 -0.923564 1.217787 1.162297 -0.934373 1.187607 -2.724696 -4.201503 -2.184384 -3.387750 0.674266 -2.055930 0.625529 -0.835411 -0.161923 -2.344158 -1.194759 0.428087 -0.439838 2.065038 1.617126 0.333570 1.637523 2.798382 -1.816298 0.126185 1.291780 1.847256 0.243226 -0.563515 -2.305808 1.402760 -1.803823 0.065326 2.775121 -1.123006 0.714977 -0.837839 1.851074 -2.154724 2.814634 0.453829 -1.148906 2.666265 1.541818 1.814633 2.076554 -0.765056 -PE-benchmarks/karatsuba.cpp__addBitStrings(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -1.884276 -4.560187 7.642470 4.497755 -0.454634 1.450833 4.487154 -0.200857 0.580232 1.400100 -1.665649 3.395654 -4.976527 -0.863276 -0.336100 -0.433746 -4.391097 -4.663254 -0.296936 -0.752992 -1.657472 -2.836285 -0.481511 5.395819 3.688918 1.274589 -2.738707 -2.578802 -6.701793 -3.286026 -0.392216 -0.452950 2.973826 0.809593 2.607983 -8.033120 2.812890 4.106250 0.020483 -4.075293 2.959394 -1.504176 0.561746 -0.731443 -1.699270 0.800609 3.873480 3.015654 1.670820 1.440203 -0.342140 -2.527171 1.326757 7.392753 0.973685 3.512091 5.150940 -0.794788 0.580236 -1.066341 0.388326 -4.487700 1.053878 0.645065 -1.939112 -0.650556 1.023836 -2.473026 -2.058409 2.572404 1.927506 -1.874898 -2.672846 -2.145060 -4.624464 -1.075315 1.252899 3.505395 6.339895 -4.326211 5.617605 2.400679 3.659240 0.650408 1.121877 0.283406 1.922608 0.644241 -1.882717 -1.212418 -7.466120 -1.320538 -2.400765 1.692130 -2.058839 -2.135395 2.953549 -6.451404 -6.201231 1.951125 -0.720236 -2.831763 -1.237189 1.788748 1.886127 1.545223 -1.263861 -3.896229 -3.414379 2.142464 -2.931840 0.454492 0.985238 0.065169 -0.859269 -1.041598 -5.372890 2.415868 2.170319 -2.433536 -1.456699 4.842999 -1.617805 5.353222 1.428124 1.802176 -0.356982 3.497521 4.237327 -0.803539 0.668111 -2.830976 -3.299965 -1.508317 0.640494 3.695001 -3.224459 -1.731035 0.974764 1.661931 -0.194805 1.030081 -1.062372 4.995976 1.101885 -3.845649 -4.271458 -3.560441 -3.407505 -3.825459 0.595129 -1.313907 -2.309101 0.598565 2.415732 2.508324 -0.167164 5.296581 -1.690303 2.395722 0.927361 -2.038756 -0.547697 -0.702838 2.714370 -3.238887 -2.832846 1.985561 1.968801 2.870035 -0.454509 -0.721756 1.227862 -3.852803 -3.171950 0.000672 0.388146 0.820652 3.801307 4.252555 4.073598 -4.167817 -1.046331 1.036644 -0.927982 -1.655200 1.687084 -4.130645 2.163507 0.422466 -0.898382 5.404871 0.709148 -2.827280 4.356570 -0.547389 0.498889 -4.041692 2.251330 -2.580639 -0.179078 -2.328083 -0.537031 -3.401804 -1.696082 -3.559594 -3.017515 5.701838 -2.181587 -5.598620 1.762121 1.082280 3.988263 -6.914591 5.828752 -2.004823 4.645709 0.166331 -1.690101 0.095642 0.537454 -0.247762 1.269303 0.130284 -2.107853 2.865914 3.323716 1.197988 2.022392 1.189975 2.902488 -0.548850 2.117067 -1.516777 0.752352 -1.375661 -3.677512 -0.305983 -0.456796 0.711933 2.287784 -0.796477 1.092219 3.261979 0.497833 2.916902 4.173923 1.808528 -2.019451 -0.718723 -0.753526 5.587001 -3.469182 -2.957627 -1.035080 2.140066 0.138226 1.529656 -6.720351 -5.538726 -4.212078 -7.253150 -1.554676 -1.606301 1.634593 0.735260 -0.759576 -5.595468 -2.723534 1.612724 0.756189 4.855778 3.676555 0.595990 5.656569 3.503032 -1.468076 -1.760561 3.271129 2.191440 -1.334022 -0.245653 -4.390675 1.731705 -4.496676 3.388712 4.993700 -2.353847 2.718288 -0.984575 3.927434 -6.175566 7.037966 2.352053 -6.145716 1.360502 3.169516 3.383872 -2.265476 -3.270420 -PE-benchmarks/karatsuba.cpp__multiplyiSingleBit(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.226537 -0.832069 0.882853 0.666087 -0.019040 0.363953 0.343131 0.117444 -0.285582 -0.074164 -0.177424 0.672725 -0.450087 -0.363654 -0.181574 -0.360456 -0.376903 -0.555167 -0.069701 -0.024816 0.041338 -0.120633 -0.630277 1.199593 0.312028 0.068644 -0.296863 -0.092468 -1.260435 0.104370 -0.403744 0.124123 0.385550 0.304107 0.674079 -0.187588 0.097451 0.899978 0.113649 -0.547186 0.062628 -0.117965 0.042389 -0.249993 -0.464722 0.330886 0.496552 -0.241292 -0.175860 -0.002307 -0.189968 -0.189884 0.340100 0.312354 0.599215 0.537639 0.744402 -0.133018 0.723781 -0.438623 0.115287 -0.501888 0.092292 -0.316290 -0.136983 -0.113115 -0.262209 -0.075453 0.159530 0.007997 0.484240 0.014731 -0.295085 -0.302337 -1.259337 -0.339900 0.352221 0.134412 0.632023 -0.444488 0.770372 0.608246 0.588417 0.192372 0.589252 0.200714 0.249585 0.222213 -0.111904 0.774867 -0.969942 -0.047421 -0.236265 0.275523 -0.622834 -0.521418 0.342835 -1.437406 -0.795443 0.570433 -0.114340 -0.429441 0.221845 0.017190 -0.088600 0.183179 -0.355291 -0.348416 -0.154826 0.313861 -0.064870 -0.091898 0.326513 0.380479 0.307098 -0.153259 -0.490290 0.461554 0.570450 -0.132860 0.221480 0.723608 -0.022013 0.724466 -0.067510 -0.061281 -0.218322 0.329777 0.563644 -0.141663 -0.699355 -0.581954 -0.472670 -0.548962 -0.062432 0.150697 -0.516756 -0.480367 0.315891 0.377559 0.561310 0.511610 0.237686 0.486817 -0.266202 -0.277917 -0.286244 -0.908934 -0.883341 -0.225409 -0.150738 0.166258 -0.558798 0.294263 0.292574 0.184857 -0.113726 0.189875 0.685122 -0.042270 0.018153 -0.326688 -0.171811 -0.537771 0.152233 -0.188055 -0.314246 0.530030 0.170953 0.924833 0.353932 -0.056506 0.196237 0.036243 -0.294895 -0.134752 0.147448 0.087154 0.951962 0.671971 -0.402027 0.054377 -0.237764 -0.204818 -0.102803 -0.023365 0.048545 -0.306168 0.212946 0.053414 -0.568935 0.619938 -0.086010 0.021856 0.748716 -0.053006 0.156685 -0.593948 0.305821 -0.259345 0.208913 -0.553215 0.175867 -0.600497 -0.155573 -0.672650 -0.684576 0.813947 -0.644647 -0.321945 -0.153435 0.788580 0.415797 -0.499187 -0.074750 -0.085816 1.125224 0.349413 -0.307417 0.281553 -0.075359 -0.084142 -0.136732 0.209717 -0.768390 -0.001340 -0.281334 0.116423 -0.113102 0.170482 0.243105 -0.156724 0.176206 -0.481558 -0.006052 -0.069918 -0.359911 -0.009983 -0.018731 0.194904 0.383090 0.078898 -0.274489 0.039536 0.327817 -0.166168 0.506236 -0.069553 -0.249952 -0.632132 0.021342 0.531608 -0.583657 -0.259000 -0.482021 0.403567 0.288709 -0.132771 -0.757464 -0.335846 -0.779974 -0.381920 -0.226037 -0.026413 -0.122285 0.509158 -0.244468 -0.541547 -0.565313 0.463521 -0.094207 -0.014556 0.499065 0.038051 0.824697 0.148805 0.131752 -0.178013 0.398246 0.391190 -0.013139 0.181401 -0.604597 0.283746 -0.601540 0.424209 0.685757 -0.384326 0.592696 0.217651 0.591832 -0.719132 0.934105 0.269721 -1.234049 -0.122583 0.750979 0.235428 -0.443115 -0.384329 -PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 0.127492 -7.136256 18.423773 6.254599 -4.358867 1.750242 15.194897 -4.490103 7.394722 -3.061530 -6.617278 -3.135678 -14.363585 -5.745277 0.216733 -5.419880 -18.436100 -9.714088 1.679760 -3.707344 -3.018407 -11.975191 6.268564 7.419337 9.274817 9.960199 -0.783260 -4.816799 -9.583002 1.199787 12.153013 -2.169461 5.106743 17.100356 6.301301 -20.256133 6.424909 2.170017 -0.927053 -6.905388 4.580351 0.522327 -0.872763 -1.567631 2.316962 4.015818 9.286248 23.635834 8.612117 2.642726 -3.654957 -17.872461 -3.952413 11.925539 -1.425870 4.632272 7.384592 -5.194077 3.784453 4.917493 -0.463973 -10.997149 0.783205 10.825515 -5.122272 2.357000 10.943701 -14.049998 -10.515217 13.370729 7.065222 0.138316 -7.069057 -4.845082 -5.753247 0.656175 -3.344680 13.129989 18.615373 -7.503151 15.882499 2.536762 10.969465 -6.475353 -1.410993 -0.123299 5.930253 -0.755722 -8.099890 -3.306246 -25.423896 -10.254519 -4.266669 -3.905442 3.281194 -8.688606 4.729038 -12.274450 -12.324072 0.891359 0.977985 -4.535261 -2.761576 11.370061 6.802372 1.752864 -2.319539 -11.015313 -5.295819 1.804303 -17.871205 9.088359 2.685203 8.408512 -8.658963 -7.838154 -10.003455 0.733167 -0.688545 -6.644653 0.167920 11.085176 -7.998961 10.986944 7.189382 2.412024 0.529579 9.089735 8.807535 -3.858105 9.885680 -5.413413 -2.857361 -1.709878 5.029692 18.013148 0.827331 -5.998643 2.941389 4.992985 -8.736830 -3.736410 -1.018603 7.301442 0.955935 -16.162369 -11.748167 -3.387047 -5.625079 -13.924001 3.191284 -5.443568 -4.398784 3.090557 6.569513 10.876652 0.136770 12.090789 -11.599348 6.994336 -2.073920 -3.428624 -5.025623 8.608105 9.490209 -6.812047 -2.094960 -3.588013 -2.102528 6.572607 -1.933577 -8.504805 -0.601489 -15.100559 -10.516313 0.253211 3.906621 0.110143 -0.808636 12.161868 3.350715 -13.872823 -3.285460 9.581737 3.030732 -9.736000 10.653836 -11.807458 12.342643 -1.681122 -0.344525 6.475312 1.410771 -2.933069 6.146350 -3.264071 0.551714 -8.930846 -6.924179 -3.970772 1.790485 -9.002086 6.076206 -9.286433 -6.874192 -5.073222 -3.771567 11.037290 0.440832 -12.268522 11.717850 -2.944977 13.750614 -12.884705 11.234738 -3.043740 5.795214 -2.018986 -4.303294 -2.088314 -3.939914 1.780420 1.374679 -5.077190 1.229493 8.841171 11.468712 5.616281 5.897983 3.117758 11.787436 -2.080844 1.714309 -3.308059 -1.238693 -4.986441 -8.375901 1.830712 -1.971393 1.501816 3.689069 0.655272 14.382931 11.609859 3.725588 16.421718 3.286720 3.924185 -2.862941 -4.439289 2.640233 14.008275 -6.326369 -7.478567 1.536143 5.017746 -6.935658 3.509988 -15.650460 -21.310154 -2.752215 -21.160871 -10.416819 -12.426276 6.168117 3.175779 1.626105 -11.316492 -2.247147 -1.210289 2.158665 11.722277 5.886759 -1.790457 11.226871 13.914151 -8.092450 -2.117461 13.021334 13.571158 -7.476621 -0.024850 -15.497843 4.905201 -14.964756 8.209252 14.479399 -7.082764 2.130874 -13.543727 19.692512 -20.060599 12.467937 6.013477 -12.535104 4.095530 2.682194 9.032530 12.202519 -5.868852 -PE-benchmarks/karatsuba.cpp__main = 4.992352 -8.264870 45.331318 20.999168 -7.784277 0.977903 26.166577 -22.038217 24.711173 -4.495266 -9.646179 -5.643483 -28.100235 -0.277563 -15.832990 5.743615 -40.238292 -19.561420 -5.051284 -20.649534 -7.598229 -19.042354 24.745079 -0.107811 25.714299 13.076990 -8.547393 -14.977480 -20.820658 -9.016907 29.495932 -7.721097 10.396409 13.513020 -0.766044 -48.606663 24.791707 10.204427 -12.169667 -14.340891 20.251669 -8.848236 -4.241873 -8.233753 3.129675 2.329876 5.959535 40.475353 25.544422 9.475205 2.413157 -11.507268 -2.800853 42.631617 -21.857350 11.507058 8.812294 -4.655310 -4.407132 15.749640 -0.255187 -6.400218 3.616019 17.038359 -4.718319 -14.137460 11.372154 -26.240744 -23.331409 27.984380 1.949522 -3.469129 -17.103075 -4.138890 -17.000036 -0.019497 -19.378171 28.232537 35.252844 -21.338821 23.288997 -2.200533 8.896603 -9.819506 -6.012646 2.625544 11.054114 1.083649 -5.876041 -17.087702 -38.307573 -7.918357 0.303505 -12.107977 0.252495 -39.067682 17.696982 -26.161419 -27.106914 -2.044771 14.056638 -14.091560 -5.522653 14.883451 8.247554 5.453078 -9.390135 -22.865911 -4.421516 4.923077 -17.565151 10.699150 4.960801 -0.148605 -13.957446 -16.074306 -27.772234 7.031231 -8.484808 -8.618499 -7.047002 21.719193 -12.820486 4.561240 10.674624 14.208113 -7.970084 21.838422 0.286825 6.831789 15.432938 7.325355 -8.827122 2.036544 19.019760 31.591093 -3.030308 -0.589409 -10.623534 7.390241 -27.134979 -8.129209 -6.587681 11.952876 6.520500 -32.411402 -21.754242 -0.129974 -5.859670 -34.635338 6.725071 -13.570811 -14.346782 3.005390 17.413771 24.438264 15.141386 30.234316 -25.276879 9.288626 -1.336064 -8.671098 9.614381 8.452787 22.264616 -14.587708 -10.987144 -4.141708 -4.847713 9.935477 -7.781479 -2.387360 -0.726732 -36.995581 -9.507550 -0.458335 10.846929 -7.185723 3.980312 26.087834 7.271429 -32.261695 1.095346 27.095647 -5.339181 -11.561577 16.132287 -28.043782 18.719020 4.600501 3.589836 17.917932 4.379946 -8.530823 9.921154 -9.577323 4.670326 -16.755841 -13.537294 -11.107940 -6.878771 -17.630571 10.170815 -12.069355 -13.893437 -9.530484 -14.998121 24.206376 -11.477450 -20.465908 32.688005 -7.674995 17.721619 -29.907636 33.823308 -13.264702 10.130956 -2.905274 -0.511323 -3.266540 -0.312069 -15.823193 5.167911 -4.667593 -0.136040 22.095091 35.916445 16.614590 11.211187 -2.964584 31.007468 -11.502546 18.470914 -10.111228 13.409796 -11.815608 -24.182328 6.218810 -4.815235 -7.903906 -6.869744 10.213659 37.841374 18.581241 14.447011 32.713204 8.629145 28.460496 -9.396775 10.833918 -0.150171 18.719542 -8.365096 -13.522116 15.076552 8.315272 -14.065184 14.699108 -35.380416 -48.555151 -15.828584 -41.177023 -0.043513 -30.134493 10.879055 -6.415490 0.672741 -30.371718 -13.340219 0.704656 -2.801406 19.135951 16.839781 0.480884 17.316874 31.981143 -22.314689 4.826412 16.808445 25.798784 -2.918084 -9.894462 -29.736165 21.294419 -25.617707 6.877713 34.449880 -15.349378 6.222285 -19.293880 28.965792 -32.895855 28.548956 7.404492 -15.146991 22.900688 13.202979 25.702780 26.853180 -12.029319 -PE-benchmarks/karatsuba.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::__str_concat, std::allocator > >(std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::allocator_type const&) = -0.212018 -2.019215 7.931176 4.573781 -0.617282 -0.026943 4.154787 -3.167455 3.573470 0.333029 -0.890720 0.800007 -5.059859 1.385212 -3.295815 2.764706 -5.714300 -4.010456 -1.251760 -3.509753 -1.633733 -2.486603 4.191545 0.207839 4.760487 0.524138 -2.615910 -3.551320 -4.592124 -2.868055 3.303183 -1.519482 2.612699 -0.373614 -1.034797 -9.209554 4.243343 2.731018 -2.364644 -2.865519 4.459465 -2.644226 -0.024396 -1.793538 -0.593115 0.272225 1.264294 4.498510 4.238187 2.235528 1.606045 0.348735 0.870240 8.888146 -4.267189 2.425986 1.841393 -0.282561 -1.623517 1.204482 -0.042277 -0.788525 1.239981 1.605422 -0.919230 -3.574688 -0.014767 -3.623963 -3.908730 3.657513 -0.128600 -0.295387 -3.568549 -0.338044 -3.346540 -0.707006 -2.417451 4.136193 5.940797 -4.482925 3.493360 -0.119958 0.691173 -0.756982 -0.772508 0.818747 1.185883 0.461669 -0.261180 -3.260069 -5.005897 0.275214 -0.386337 -0.654320 -0.798143 -7.488027 3.445350 -3.506696 -5.153230 0.068402 2.019554 -2.647345 -1.259041 1.118903 0.865593 1.968489 -2.201997 -4.181961 -1.358654 0.746198 -0.078911 0.320893 0.867900 -1.868609 -1.779846 -2.867606 -5.812618 1.596945 -1.174872 -2.029013 -2.123816 3.511811 -2.073999 1.046821 1.575248 3.326771 -1.940378 4.471130 0.446068 2.067016 1.998186 1.116991 -2.775156 -0.019310 3.250932 5.119436 -2.101765 0.589049 -3.067071 0.689850 -3.686135 -0.903459 -0.333106 2.898888 2.347418 -4.883779 -3.871409 -0.574736 -0.499697 -5.578097 1.426694 -2.772399 -1.596930 0.649605 2.764591 2.817626 3.169127 6.667996 -3.311287 2.167204 0.503298 -1.910308 2.966879 0.069736 3.728888 -2.657043 -2.941195 0.697383 0.544618 1.577366 -1.356358 1.023111 0.595066 -5.952248 -1.194319 -0.307822 1.621168 -1.614019 2.406023 3.680060 3.151960 -4.761721 0.600303 4.055154 -2.006070 -0.717999 1.674000 -4.977639 2.475660 1.127083 -0.561295 3.815222 0.845233 -2.768811 3.079987 -1.597222 1.092221 -3.103102 -0.355485 -2.375499 -1.923923 -3.134290 0.451765 -1.401261 -1.966996 -1.409793 -2.394814 4.865264 -2.928340 -3.437602 3.995673 -0.561623 1.969206 -6.691162 7.978737 -2.774302 2.063411 -0.692398 -0.082862 -0.209224 1.325088 -3.070829 0.820886 0.372276 -0.634723 3.369208 6.578390 2.601461 1.337203 -0.352351 5.168540 -1.079611 4.280563 -1.393629 3.369415 -1.731459 -4.118485 0.995685 -0.615395 -1.426406 -1.127631 1.795752 5.702212 2.730490 1.916604 4.759209 2.759885 6.024198 -1.956046 2.752932 -1.059943 3.720286 -1.774410 -1.881046 1.993858 1.699292 -1.689772 3.321109 -6.063211 -7.974565 -3.240297 -6.834471 1.419207 -3.165141 1.628182 -1.816085 -0.322449 -5.883705 -2.987620 0.648700 -1.019827 3.345272 3.562978 0.572059 3.419087 4.991260 -3.390714 0.183435 1.755895 3.263741 0.606009 -1.770467 -4.050769 3.197397 -4.159130 0.763486 5.555665 -2.613735 1.401749 -2.025325 3.830813 -4.489614 6.356607 1.116805 -2.384851 5.087327 3.278928 4.871699 2.285206 -2.148706 -PE-benchmarks/tarjan-algorithm.cpp__Graph::Graph(int) = 0.692269 -1.244844 3.506913 1.851015 -1.308601 0.339172 1.204345 -1.000455 0.625089 -0.291419 -0.729784 0.919786 -1.462076 -0.256313 0.201414 0.078171 -3.328404 -1.166654 -0.409280 -0.927012 -1.015144 -0.829841 0.313475 1.377666 1.733907 1.777576 -0.539013 -0.520772 -1.380910 -0.523509 0.556903 -0.162742 0.750329 2.097356 2.118593 -2.749548 1.353011 0.789002 -0.207828 -1.777241 0.813692 -0.039710 -0.170455 -0.626550 -0.090767 0.635207 1.035652 2.570358 0.928941 0.575710 -0.710720 -1.245153 0.257827 2.651771 0.619888 0.882439 1.619015 -1.141407 0.721717 0.167642 0.286350 -1.252460 -0.083773 0.343150 0.003560 -0.568120 0.492492 -1.876895 -0.383207 1.675851 0.998848 -1.242425 -1.276438 -1.775827 -1.817374 -0.083316 -2.556553 2.866678 2.433365 -2.020001 1.533652 0.323412 1.150349 -0.363046 0.926332 0.044550 1.782717 0.425304 -0.366870 0.304874 -2.082897 -2.181838 -0.036989 -0.618934 -0.503165 -1.462410 1.142455 -2.878669 -1.924225 1.024968 0.706550 -1.055731 -0.230868 0.475206 0.665278 0.471511 -0.660959 -1.183525 -0.665994 0.512592 -1.161013 0.658925 0.342505 1.231534 -0.870247 -0.224100 -1.673493 1.046842 0.656021 -0.200751 -0.029279 1.855185 -0.501380 1.078375 0.149899 0.277860 -0.312222 1.906961 0.804129 0.154971 0.387447 -0.087152 -0.454914 0.857210 0.734928 1.376718 -0.101848 -0.175162 0.277153 0.974010 -1.101004 0.278208 -0.679677 2.125538 0.072799 -1.553088 -2.375685 -0.849851 -1.659726 -1.771094 0.190379 -0.680335 -1.101418 1.155460 1.127030 2.254503 -0.143511 0.791525 -1.108597 0.197453 -0.112662 -0.393390 0.022062 0.311064 0.934918 -1.319310 -0.289164 0.211673 -0.283915 1.153400 0.328663 -0.545137 0.250203 -1.722290 -1.367305 0.729866 1.194909 0.136012 1.001646 2.047473 0.576955 -1.256664 -0.921278 0.998024 -0.375877 -1.227732 0.824636 -1.284944 1.124807 -0.000843 0.462754 1.461247 0.068774 0.090388 0.967294 -0.276093 0.320793 -0.863317 -0.545120 -0.569158 0.244058 -0.811912 0.667614 -1.228900 -0.541454 -1.087454 -1.364153 2.362905 -1.654503 -1.768477 2.148945 -1.058409 2.239339 -1.778525 2.001621 -0.619333 1.306742 0.138954 -0.284774 -0.098495 -0.737060 -0.733417 1.071771 -0.209418 -0.074937 -0.111710 1.446705 0.636286 0.449977 -0.001416 1.515626 -1.128552 1.149202 -0.483981 1.046440 -0.667333 -0.519872 -0.363624 -0.018678 -0.306711 0.177432 0.321065 1.442703 0.152585 1.283789 1.283389 0.667835 0.749309 -1.060993 0.140150 -0.062005 1.322201 -1.371668 -1.344858 0.670460 1.104817 -0.142978 -0.055397 -2.349364 -2.328127 -2.443136 -1.827235 -1.355630 -1.268259 0.962776 -0.090536 -0.608656 -0.936145 -1.080413 0.719789 0.342558 0.112475 1.239070 -0.142830 1.910125 1.640015 -0.398561 0.062099 0.744766 1.300507 -0.151953 0.001329 -2.239289 0.882888 -2.521375 0.643797 2.652918 -0.676938 1.369578 -0.762324 2.598861 -2.596534 1.509466 0.739954 -2.348113 0.239592 2.309937 0.634620 0.719970 -1.392323 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/tarjan-algorithm.cpp__Graph::addEdge(int, int) = -0.040695 -0.593699 1.518205 1.170907 -0.271185 0.118268 0.544401 -0.539771 0.430181 0.244448 -0.209725 0.378121 -0.937224 0.284385 -0.244581 0.671877 -1.167493 -0.594314 -0.232043 -0.558655 -0.293649 -0.369974 0.530621 0.288131 0.897490 0.391129 -0.490690 -0.529480 -0.723258 -0.656981 0.338666 -0.270666 0.652568 0.450223 0.002731 -1.755716 0.748866 0.691998 -0.387412 -0.661246 0.683302 -0.511360 0.081767 -0.467874 -0.343879 0.191721 0.241554 0.391660 0.690384 0.380290 0.226929 0.000190 0.598171 1.453785 -0.487318 0.543740 0.431815 -0.249956 -0.142742 -0.076897 0.128606 -0.122144 0.373931 0.200597 -0.072064 -0.837344 -0.326812 -0.639836 -0.629056 0.581339 -0.054737 -0.006413 -0.827702 -0.271024 -0.604065 -0.267233 -0.987066 0.866181 1.138476 -0.914293 0.763919 0.131499 -0.003871 -0.127761 0.171843 0.216407 0.361708 0.198465 -0.042227 -0.076234 -0.279141 -0.210208 0.197889 0.157507 -0.339944 -1.170496 0.591792 -0.687040 -1.021786 0.276542 0.392445 -0.475075 -0.218855 -0.012923 -0.004983 0.453663 -0.518379 -0.784469 -0.147816 0.051222 0.227632 -0.192742 -0.135936 -0.066180 -0.308675 -0.319337 -1.120524 0.280086 -0.111175 -0.406443 -0.173224 0.683861 -0.025493 0.225457 0.094092 0.461354 -0.373437 1.067117 0.043188 0.547335 0.138839 0.258941 -0.509550 -0.030170 0.696526 0.631671 -0.449652 -0.109888 -0.471676 0.183767 -0.497941 0.039516 0.202790 0.838507 0.696808 -0.624702 -0.700170 -0.319810 -0.426525 -1.117805 0.219484 -0.537565 -0.116384 0.463017 0.610640 0.302705 0.581246 1.072674 -0.499340 0.278215 -0.002940 -0.345477 0.683827 0.162326 0.626933 -0.512554 -0.510765 0.382639 0.200108 0.472655 -0.029931 0.232460 0.180759 -0.796290 -0.191590 0.301696 0.336750 -0.317952 0.694477 0.679295 0.997288 -0.445045 0.164621 0.610461 -0.285221 -0.065738 0.270498 -0.914586 0.509722 0.142436 -0.288577 0.664177 0.050164 -0.412463 0.524705 -0.366684 0.199536 -0.657942 0.186227 -0.459446 -0.084529 -0.679476 0.092496 -0.234606 -0.479345 -0.253821 -0.183588 1.085804 -0.855971 -0.333315 0.655581 0.010636 0.344514 -1.115589 1.597416 -0.564505 0.581888 -0.331480 -0.391134 0.119041 0.147150 -0.550368 0.064566 0.287904 -0.183912 0.200694 0.990569 0.483388 0.020039 -0.051013 0.907381 -0.089822 0.837916 -0.251652 0.756977 -0.123836 -0.340008 0.018427 -0.172459 -0.238599 -0.155892 0.228655 1.009676 0.425858 0.400263 0.595058 0.457462 1.015466 -0.454631 0.489644 -0.194490 0.775186 -0.456758 -0.369525 0.245277 0.529713 -0.185919 0.536523 -1.151218 -1.281772 -0.770389 -0.682978 -0.084464 -0.062076 0.423652 -0.170971 -0.115363 -0.904177 -0.691320 0.482970 -0.327862 0.340631 0.536916 0.144032 0.715509 0.756286 -0.232702 -0.129618 0.044560 0.553746 0.249305 -0.053377 -0.725798 0.664166 -0.875476 0.153657 1.053979 -0.508557 0.342408 -0.092180 0.986720 -0.818712 1.195952 0.203134 -0.626444 0.933959 1.025104 0.582968 0.151969 -0.487951 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCCUtil(int, int*, int*, std::stack > >*, bool*) = -4.393198 -7.255896 17.683952 11.576742 -3.628796 3.673619 2.229887 -6.473476 2.762981 0.566233 -3.254684 7.018774 -7.767117 0.031286 -3.928326 1.761140 -13.384651 -6.891753 -3.226574 -7.596408 -5.132318 -3.321586 -2.100396 9.182509 7.416600 3.995350 -6.585572 0.244563 -11.179507 -9.775970 -0.555688 -1.020764 6.182910 0.994868 4.750373 -21.898704 8.647188 10.454607 -2.554232 -7.859224 5.552678 -6.744576 -1.096956 -3.386939 -7.069023 2.079401 3.458222 0.974259 5.222759 0.786233 0.451442 0.696387 3.880065 17.761581 -1.051911 7.834607 7.824464 -4.477324 -0.428659 -0.340980 0.550507 -4.307697 4.195006 0.378947 -3.300738 -8.121426 1.350373 -4.340879 -3.357523 6.253800 2.638696 -6.271654 -4.178574 -5.697025 -13.173609 -4.845601 3.067641 7.475345 11.791828 -8.561310 9.831189 2.016174 2.897500 2.090511 7.309859 0.986518 11.391098 2.011111 -1.921935 -0.002568 -5.611473 -1.425674 1.011916 7.330751 -5.667541 -8.673439 6.316978 -18.814282 -13.207107 4.549757 3.016016 -7.122544 -6.105244 -1.819542 2.840989 1.950142 -3.513336 -8.146086 -3.302269 5.299583 -3.685189 -1.955567 -0.717452 -0.716643 -0.306291 -0.236276 -12.309159 6.261259 3.318910 -1.199427 -4.352036 11.097016 0.186870 3.641789 0.629089 5.722212 -3.815592 8.696118 -0.718824 2.813516 -4.730503 0.714515 -6.165053 -3.484578 3.272782 0.827194 -7.610090 -5.566126 -1.105134 3.721321 -4.300931 3.191494 -4.092912 13.117491 4.964490 -5.279978 -7.470551 -7.079896 -8.132197 -12.054897 -1.032119 -4.194607 -10.401249 4.618035 6.973125 5.678703 3.196489 7.947448 -1.019240 4.857105 0.842520 -4.373666 6.129151 -5.970077 6.659852 -7.456886 -5.538153 5.485710 1.356204 8.770742 -0.419292 0.845517 1.609037 -7.243491 -6.549122 4.682244 3.981421 3.056436 10.444130 10.933313 16.913305 -9.853663 1.721399 3.393361 -4.931845 -1.432678 1.862011 -7.506934 1.782809 4.413559 -2.328516 14.176146 0.519979 -4.919955 3.405797 0.123990 3.229124 -9.247136 3.905703 -4.928672 2.265396 -4.688659 -3.556504 -6.797661 -3.746639 -8.789491 -9.838735 13.402300 -16.778110 -11.651663 10.552566 1.121540 9.153764 -16.694770 9.096235 -6.136401 12.439265 -3.007400 -3.255502 0.655000 -0.464252 -7.154338 7.875945 2.828441 -6.609935 3.446437 8.619810 4.928344 5.173297 -1.877073 8.630076 -2.934871 7.471676 -5.744016 7.744680 -1.378722 -5.578774 -2.643917 -2.114499 -2.629964 2.117040 4.300611 2.321489 5.278339 4.070581 2.647729 10.366988 6.864666 -4.508403 2.520776 -3.102873 6.174210 -6.337309 -6.940537 1.401272 6.589721 1.589826 2.537623 -15.286582 -12.058117 -15.069543 -11.592194 -0.775286 -0.118775 2.931144 1.947707 -2.202591 -11.690522 -7.452395 12.175456 -1.304093 11.084842 6.925577 3.028360 9.494544 8.221381 -0.555080 -2.253176 0.897373 4.799244 0.311272 -0.775153 -11.186291 9.249473 -8.524512 6.195852 12.373051 -5.950122 7.195297 2.265176 6.074467 -11.256489 12.731349 3.126407 -12.048396 5.142295 10.656194 5.080379 -2.134219 -6.811796 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/tarjan-algorithm.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::top() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::pop() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -1.374990 -4.164873 9.815178 5.544323 -1.728772 1.483887 3.170789 -3.231704 1.877066 0.773111 -1.767508 3.319873 -4.726850 -0.239813 -1.517475 0.838758 -7.043974 -4.336738 -1.354286 -3.570926 -3.140001 -2.470111 0.195142 4.271627 4.412925 2.004391 -2.757223 -1.020758 -5.984255 -4.835558 0.174105 -0.570431 2.917939 1.435022 3.472898 -9.770944 4.443604 4.440741 -1.142471 -4.625479 2.831026 -1.648087 -0.953485 -0.425943 -1.690157 1.575635 2.903918 3.437726 2.660871 1.782053 0.713653 -1.615389 1.097669 8.861040 0.133454 3.869754 4.933749 -2.317485 0.759842 0.371896 0.341921 -3.295711 1.196508 1.071586 -1.238383 -2.429133 1.598987 -3.299612 -2.269479 3.883491 2.212376 -3.676626 -2.509238 -3.814949 -5.686010 -1.438313 -0.232076 4.412133 7.461478 -4.640762 5.553685 1.497895 2.664197 -0.171378 2.856206 0.074704 5.171183 1.114445 -1.550461 -0.299495 -4.785562 -2.106483 -0.683150 2.628391 -2.254463 -3.946769 3.836398 -8.158152 -6.798746 2.825248 1.303133 -3.406417 -2.845050 0.725117 1.788538 1.311607 -2.134890 -4.533791 -2.905748 2.209747 -2.671523 0.311323 0.482881 0.676230 -1.600444 -0.152385 -6.294680 2.678638 1.983698 -1.732189 -2.332878 5.477090 -1.234249 3.495697 0.939939 2.611725 -1.362299 4.568715 1.850456 1.156057 -0.402246 -0.434898 -3.707016 -0.718518 1.728849 2.123930 -2.685918 -1.706260 0.143091 2.213574 -2.233600 1.934607 -2.324335 6.662488 2.482942 -3.861602 -5.637590 -3.294920 -3.447449 -5.841573 0.424422 -2.946452 -4.505190 1.784865 3.296986 3.702851 0.537329 5.042821 -1.695964 2.842043 0.364848 -1.778565 1.119452 -2.438243 3.534771 -3.963724 -2.797449 1.821452 1.130792 3.523130 0.261253 -0.997082 0.837654 -5.020357 -4.286411 1.761925 2.050091 0.506865 4.213934 5.626361 7.644361 -4.707382 -0.736625 2.192874 -1.917948 -1.902320 1.537637 -4.618080 1.597006 1.198445 -0.133596 6.771065 0.608032 -2.085128 3.133905 -0.561645 1.252850 -4.166126 1.416177 -2.401468 0.784499 -2.475557 -0.332811 -3.619414 -1.402348 -3.387984 -4.208595 7.085008 -6.463181 -6.608414 5.310469 -0.698832 5.095537 -8.368225 6.246358 -2.511602 5.172730 -0.850779 -1.238972 -0.390189 -0.323163 -2.277849 3.927836 0.596653 -2.157724 2.017875 5.270744 1.878838 2.411708 -0.057629 4.691597 -2.050919 3.248702 -2.393619 3.716802 -1.257200 -3.435337 -1.218049 -0.760089 -0.879010 0.756672 1.460691 1.796895 2.394344 1.202180 2.587797 4.230909 3.158818 -2.542322 1.390690 -0.521754 4.486261 -3.866424 -3.429557 0.966111 3.041812 -0.077716 1.472199 -7.535562 -6.537080 -6.358097 -7.619284 -2.068412 -1.149316 2.391440 0.260608 -1.295245 -5.030750 -3.689825 5.308851 0.150881 4.655063 4.320816 1.328199 5.606581 4.941891 -0.789311 -0.812221 0.671863 2.902743 -0.756734 -0.820455 -5.069127 2.948511 -5.530001 2.953517 6.325528 -2.288349 3.627302 -0.955451 4.533132 -6.851843 6.376466 2.169442 -6.002309 2.562408 5.520866 3.891469 -0.530593 -3.580431 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::stack >, void>() = 0.044817 -0.256273 0.939189 0.605167 -0.290102 0.000000 0.036052 -0.336670 0.497510 -0.265564 -0.280262 0.135067 -0.411291 0.236487 -0.294118 0.361396 -0.953241 -0.420854 -0.061527 -0.298740 -0.176242 -0.247489 0.348718 0.019262 0.386888 0.569793 -0.305879 -0.018477 -0.269339 -0.225279 0.482487 -0.330520 0.282383 0.390065 0.062641 -1.067431 0.527474 0.174429 -0.289238 -0.465669 0.294046 -0.367769 0.089288 -0.576796 -0.177444 0.118600 0.144923 0.501509 0.411184 0.143432 -0.159295 -0.006637 0.073870 0.822925 -0.401009 0.188853 0.259341 -0.121817 -0.147209 -0.070831 0.155883 -0.001992 0.174566 0.309818 -0.147031 -0.553287 -0.164233 -0.547175 -0.387048 0.441709 -0.077177 0.224654 -0.489306 -0.107310 -0.483510 -0.097275 -0.608829 0.633499 0.772006 -0.562976 0.339794 0.043720 0.261898 0.059842 0.056555 0.216305 0.342629 0.196050 -0.142759 -0.039596 -0.285416 -0.129466 0.159327 -0.281750 -0.037928 -0.834074 0.257370 -0.792523 -0.454861 0.105812 0.298202 -0.081805 -0.005939 0.001262 0.212103 0.293294 -0.302213 -0.366436 0.164430 -0.082614 0.053426 0.002554 0.093495 0.052823 -0.163610 -0.269567 -0.722255 0.094161 -0.097369 -0.189623 0.208234 0.401611 -0.122703 -0.063081 -0.005365 0.175502 -0.266441 0.783034 0.000649 0.242553 -0.073557 0.190186 -0.065099 0.190002 0.398497 0.462850 -0.277102 -0.082294 -0.254230 0.067860 -0.472757 -0.404143 -0.092234 0.154519 0.266015 -0.432051 -0.473343 -0.240672 -0.404568 -0.826366 0.086890 -0.377483 -0.189573 0.442151 0.416787 0.480086 0.538896 0.655819 -0.443976 0.132668 -0.157701 -0.071002 0.456903 0.240603 0.405920 -0.237611 -0.188667 0.248679 -0.076732 0.208406 0.109750 -0.158264 0.141204 -0.619520 -0.009570 0.403510 0.422798 -0.033219 0.309855 0.310140 -0.090692 -0.315160 0.059722 0.476960 -0.039137 -0.116982 0.222203 -0.470093 0.401405 0.090881 0.085555 0.178153 0.035535 -0.209863 0.114589 -0.113055 0.176733 -0.295240 -0.188729 -0.183464 -0.065023 -0.404510 0.376180 -0.258291 -0.220487 -0.183332 -0.307621 0.584737 -0.633455 -0.207596 0.508167 -0.041191 0.552489 -0.503818 0.372336 -0.405907 0.706881 -0.003468 -0.018959 0.045895 -0.354322 -0.369831 0.012767 0.201936 0.060461 0.009328 0.381378 0.418674 0.059104 0.037365 0.573100 -0.115528 0.530484 -0.033186 0.287634 -0.169313 -0.222935 0.228107 -0.106385 -0.197309 -0.134915 0.298251 0.707512 0.247227 0.516831 0.683552 0.165711 0.584265 -0.354050 0.116885 -0.160602 0.388848 -0.249266 -0.197944 0.121792 0.417870 -0.225971 0.188909 -0.636550 -1.000804 -0.846194 -0.409751 -0.109533 -0.341756 0.087690 -0.175317 0.057755 -0.395976 -0.258599 0.332200 -0.199562 0.497812 0.270161 -0.004696 0.386906 0.537739 -0.442420 -0.273507 0.244150 0.327312 0.103678 0.190116 -0.796192 0.537259 -0.502807 -0.051514 0.813376 -0.472984 0.008194 -0.024349 0.623608 -0.351183 0.722527 0.235293 -0.453257 0.474203 0.422104 0.424817 0.537692 -0.338715 -PE-benchmarks/tarjan-algorithm.cpp__main = 1.387980 -2.172732 7.051530 2.760028 -5.520383 -1.645898 -0.826561 0.600759 2.419897 -12.591071 -4.381418 1.761428 -2.778128 2.098232 -3.853578 -1.596752 -13.208029 -5.015398 1.670368 1.336574 -0.122796 -1.777967 3.263417 3.244092 1.733158 10.969311 -2.653421 0.699563 -1.565767 7.537391 9.035373 -4.519684 3.253975 10.290978 0.862535 -13.719152 1.884614 -3.015938 -1.684889 -3.776449 1.970973 -4.339721 0.749550 -12.562795 -5.353248 -0.885208 3.366823 9.530154 1.960056 -2.477414 -10.644300 -2.176245 -4.039367 6.470946 -2.614016 -1.369104 3.727588 -1.734279 -0.831556 -4.475342 2.103443 -1.662673 1.596396 4.841870 -3.984235 -3.460819 0.075631 -9.652324 -3.280602 4.076759 2.637761 10.056163 -3.502559 2.466268 -7.354574 0.634345 7.249534 8.529848 7.391794 -5.098437 2.860509 -1.078331 5.736162 0.847248 -1.179795 4.280644 1.997451 2.210430 -2.061633 -1.631939 -10.730188 -0.936071 -0.246570 -6.553759 3.545531 -8.977785 -0.476381 -11.885272 -1.509548 -1.489168 1.210108 0.343571 3.430851 0.178253 4.468398 3.621135 -2.108264 -1.083143 3.119618 -3.195847 -2.843192 1.963920 3.327457 6.286837 -1.525510 -7.262105 -6.086033 0.084598 -0.941635 -1.657094 8.456640 2.637760 -4.538631 0.268264 -0.114284 -0.498690 -2.369799 7.543508 1.766791 -3.860614 1.384326 -2.288765 9.060402 -0.841998 2.534614 13.377355 -4.123133 -5.365637 -0.763064 0.953834 -3.552824 -12.448164 1.431888 -2.215392 -3.631066 -5.777382 -4.859535 -4.205097 -4.584439 -8.427707 -1.619153 -3.586380 -1.411766 10.479552 3.387216 5.350642 5.097679 5.875016 -3.058163 4.323839 -1.522244 0.343746 2.555888 4.692751 3.095543 -1.156017 -0.040475 2.429509 -5.999650 3.908255 0.265580 -4.245553 1.579136 -6.501152 -3.793240 3.717770 6.645406 3.041797 0.481295 0.864851 -12.438809 -4.463843 -0.262959 4.436872 1.727850 -3.175386 4.269674 -2.327321 5.695288 -0.568010 -0.969216 -1.330887 0.555511 -4.714336 0.357155 1.926429 0.956478 -1.574816 -5.254666 0.510910 0.115940 -5.243995 5.322252 -2.778498 -1.900210 -3.815170 -5.297684 4.704408 -8.717446 -3.767919 2.632148 1.524492 12.105613 -6.267000 -4.669606 -3.574584 11.408725 3.325302 -0.351762 1.533062 -10.699255 -3.214306 -0.407215 1.491091 1.833313 -1.906900 -0.949639 5.145743 1.661672 2.001145 4.200745 1.888478 4.181480 1.618417 -2.744630 -2.132099 -4.243316 4.325985 -0.350620 -0.818979 1.003790 5.601866 7.954831 2.935319 10.725323 12.614346 1.905856 3.646266 -3.571400 -6.512123 -3.043005 4.884297 -1.178785 -2.058656 -1.732970 6.677228 -2.671232 1.548306 -4.533202 -15.550843 -11.739895 -6.057093 -2.387896 -8.208647 -0.241775 -1.296721 2.643764 -3.948449 1.729947 -3.705152 -1.273800 11.778705 3.706261 -2.280258 3.584645 3.727870 -8.878377 -6.307186 10.093386 7.604221 -0.048512 7.014497 -14.533572 3.690704 -5.574521 0.076998 10.829944 -6.621199 -2.328782 -3.239680 10.294265 -1.869172 8.488396 3.883418 -10.173545 1.062644 -0.924846 -0.822604 12.666689 -3.545696 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/tarjan-algorithm.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.559354 -1.112255 6.819190 3.704652 -1.380954 0.047994 2.326211 -3.691297 3.060954 -1.405149 -0.385703 0.456192 -3.699805 1.303337 -3.437818 1.789518 -5.247821 -2.978969 -1.943166 -4.166050 -1.450427 -1.519054 3.323599 0.218578 3.552059 0.603390 -2.300098 -2.054698 -3.856418 -2.065849 3.411039 -0.992663 2.110100 -0.642455 -0.758004 -8.582543 3.720794 2.423558 -2.389961 -2.275541 3.843565 -2.558679 -0.423550 -1.851452 -1.482355 -0.222742 -0.201668 2.329804 3.503682 1.098589 1.019756 1.711526 -0.097605 7.543765 -4.095587 1.910225 1.252360 -0.360410 -1.828120 1.268614 -0.260789 0.374290 0.991261 0.872637 -0.849289 -4.007665 0.155763 -3.014645 -3.193540 3.169458 -0.378084 -0.960239 -2.152450 -0.567133 -4.073924 -1.011025 -0.191880 3.374391 4.446855 -3.714946 2.112907 -0.841578 -0.232069 -0.304329 0.020527 0.791533 1.946217 0.411471 0.509629 -2.281502 -3.551152 0.937183 0.187993 -0.022996 -0.978813 -6.391859 3.278660 -4.558407 -4.087887 -0.002262 2.475109 -2.467011 -1.920696 0.053344 0.367677 1.331665 -2.053331 -3.187028 -0.795560 1.400502 0.518611 0.255011 0.546509 -1.410333 -0.966235 -2.705113 -4.889213 2.022339 -1.039281 -0.677593 -1.965741 3.125058 -1.807051 -0.416159 1.163518 3.220792 -2.541241 3.840183 -1.186485 1.666300 0.491352 1.357616 -1.590947 -0.913088 2.309584 4.268942 -1.933494 -0.257214 -2.986829 0.454602 -3.624373 -1.032610 -0.742329 1.942062 1.800914 -3.573781 -2.714045 -0.064914 -0.841786 -5.676562 0.281313 -2.335169 -2.360506 1.375087 2.196890 3.191665 3.025373 5.390624 -1.879563 1.669039 0.380629 -2.160820 3.289637 -0.792748 3.171486 -2.099596 -2.661947 0.531120 -0.954818 2.027242 -0.880286 1.193122 0.084250 -5.040238 -1.313558 0.004435 1.913389 -0.749311 2.149990 3.740640 1.973391 -4.418483 0.885425 3.400062 -2.391082 -0.327407 1.052112 -3.570283 0.952364 1.703567 -0.771380 3.758695 0.506256 -2.064566 1.677678 -0.996866 1.474986 -2.599514 -0.518459 -1.975769 -1.064646 -2.884815 -0.365093 -1.355398 -1.570138 -1.802033 -3.470798 4.016772 -4.096401 -3.464294 4.549205 0.059411 2.384510 -6.027617 4.739966 -2.299012 3.199410 -0.596205 0.752950 -0.319499 0.499384 -3.766198 1.647261 0.271396 -1.197521 2.457607 5.681952 2.346359 1.365054 -1.093640 4.696193 -1.594882 4.217757 -1.902216 3.735101 -1.561536 -3.972896 1.158951 -0.469027 -2.056081 -1.678221 2.581330 4.282399 1.991493 2.585902 3.480773 2.779690 5.327117 -1.477702 2.601096 -0.948847 1.861461 -1.116602 -1.604630 2.418357 2.176552 -1.084064 2.140924 -5.082892 -7.072766 -4.281309 -5.968200 2.150421 -2.992940 0.837788 -1.410230 -0.514485 -4.789053 -2.601293 0.991202 -1.116577 4.310278 2.958147 0.879085 2.652765 4.698513 -3.277458 0.635955 1.684040 2.951800 0.833996 -1.489656 -4.204246 3.498180 -2.830518 0.211195 5.180516 -1.940481 1.788466 -0.864630 2.777071 -3.468423 5.204653 0.643398 -2.067414 4.652301 2.862938 3.309809 3.053184 -1.603618 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/tarjan-algorithm.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::push_back(int const&) = 1.593463 -1.166333 8.946647 6.090056 -2.288172 0.480470 0.218929 -5.200769 3.808786 0.552082 -1.360632 1.621589 -2.347515 1.785137 -2.374203 4.329366 -7.198459 -1.993012 -2.138291 -4.974245 -2.313273 -0.977687 2.197086 -0.175750 4.352460 2.593934 -2.786249 -0.438557 -1.577702 -5.852482 1.733001 -1.333336 1.825488 -0.457182 1.056162 -8.636688 5.994516 3.347376 -2.592343 -3.502420 3.138258 -2.202842 -0.816478 -1.757429 -1.248207 1.100804 -0.341950 3.310872 3.861444 2.431192 0.775373 2.470590 2.774771 8.088335 -2.794443 2.601915 1.768350 -1.195049 -1.520422 1.262156 0.664894 0.704287 0.842898 0.343028 0.831651 -5.943292 -1.010756 -2.098337 -1.954910 3.561836 -0.429446 -2.952038 -3.358273 -2.114876 -3.793377 -1.008813 -6.668971 4.838956 4.875857 -4.417865 1.871888 0.018820 -0.401268 0.493742 1.081727 0.495148 3.973455 1.474964 0.447646 -0.785831 -0.343859 -1.853416 2.598834 -1.725572 -2.538402 -8.504877 3.098456 -6.679274 -4.661239 1.391340 4.019662 -2.944132 -1.060593 -1.509153 1.108394 0.977286 -1.756993 -2.722388 0.883214 1.108914 0.603428 -0.822961 -0.420650 -1.436518 -0.277914 0.799034 -6.082285 2.894370 -0.304665 0.531208 -0.981497 3.438950 1.156881 -1.691278 -0.279184 2.927979 -2.421699 4.763696 -1.951497 3.919907 -1.237998 4.143481 -1.158231 2.913908 3.251807 -1.515583 -1.722372 -0.034859 -2.881736 1.430170 -4.268799 1.116858 -2.435219 3.617732 3.047264 -2.270710 -3.668084 -1.145722 -3.331212 -5.458789 0.972683 -2.223423 -4.251154 1.160877 3.195630 3.236203 3.802675 2.138866 -3.008873 -0.048528 -0.477222 -0.221128 4.512918 -0.662851 3.185596 -2.539516 -1.822817 1.873150 0.183421 1.971576 -0.250374 0.957592 1.266634 -4.232468 0.288521 2.480283 2.362800 -0.684439 3.244188 4.325834 5.123552 -2.174193 0.391694 3.615740 -2.717778 -0.487702 1.107905 -3.792534 1.119362 1.870916 2.162810 4.863802 0.214207 -0.504185 0.940656 -0.696033 1.153630 -2.212539 -0.377839 -2.066297 -0.891948 -1.520342 1.149230 -2.183803 -1.091180 -2.382988 -3.686429 5.059603 -6.393221 -2.460428 6.357650 -2.706076 2.097673 -4.451757 5.736010 -3.041827 2.607503 -0.585878 -0.060605 0.095510 -1.275160 -5.450257 2.241607 1.306902 -0.694965 1.072348 4.987766 2.733828 0.657312 -1.719648 4.643005 -3.161462 5.576174 -2.032311 4.997238 -1.736454 -1.479398 -0.582018 -0.487461 -3.179676 -2.493532 2.344905 3.668636 0.093039 3.076405 2.129731 2.029825 5.558533 -2.675757 4.637244 -1.323560 0.547901 -2.243762 -2.326344 3.250180 1.906186 -0.828987 2.035911 -6.150291 -5.113319 -7.603831 -3.034502 0.621765 -1.746883 1.738177 -2.057982 -1.489706 -3.639362 -4.159517 5.447941 -0.848046 0.315766 3.270357 0.758701 2.777601 4.447259 -1.292762 0.760196 -1.284584 1.315412 1.950744 -1.643839 -4.240785 5.560253 -2.686957 -0.191529 6.411920 -2.672693 2.318336 -0.182711 2.625331 -3.586745 4.195495 0.398582 -2.351956 3.448009 5.341713 3.253245 1.041452 -2.622585 -PE-benchmarks/tarjan-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.454650 -1.415683 10.976578 7.255382 -3.804405 0.502429 -0.134304 -6.096897 4.514725 -0.756527 -2.126724 1.616095 -2.715706 2.150751 -3.379919 4.586684 -9.730788 -2.266901 -2.670288 -5.951044 -2.654838 -1.081067 2.249859 0.236066 5.019292 4.105398 -2.994607 -0.145625 -1.410499 -5.544933 2.683105 -1.665808 1.969327 0.319550 1.764972 -10.836451 7.062670 3.725023 -3.131663 -4.372030 3.567404 -3.013502 -1.119229 -3.084151 -2.172824 0.984731 -0.479461 5.362917 4.278175 2.278790 -0.438924 2.918503 3.109540 10.547407 -3.114105 2.910838 2.360055 -1.338953 -1.541212 1.363771 0.843809 0.950307 0.642134 0.313755 1.130949 -7.186633 -1.302000 -3.136528 -1.757502 4.399982 -0.343523 -3.023099 -4.151539 -2.594822 -5.473251 -1.058392 -9.272228 6.882896 5.891541 -6.045330 1.969058 0.106010 -0.267667 0.971719 1.292389 0.866243 5.196173 1.878881 0.842668 -0.639781 -1.080469 -2.405251 3.415476 -3.988703 -3.184524 -11.911763 3.691466 -9.510895 -5.388325 1.558363 4.887567 -3.856877 0.255160 -2.085120 1.276940 1.001942 -2.240618 -2.888739 1.490080 1.450741 0.812503 -0.662011 0.059471 -0.542774 0.293062 0.356621 -7.459761 3.878942 -0.319011 1.035126 0.110516 4.322404 1.560148 -2.280046 -0.321569 3.133897 -2.942893 6.390570 -2.349293 4.195099 -1.934927 5.250187 -0.123590 4.267122 3.930486 -1.573625 -1.994102 -0.005271 -2.916643 1.949661 -5.144676 0.515531 -2.961662 3.751728 2.258839 -2.956727 -4.310566 -1.869561 -4.771743 -6.606567 0.709044 -2.577229 -5.764386 2.412922 3.897589 5.200979 4.610201 1.907626 -3.710278 -0.278202 -0.764968 -0.022601 5.140072 -0.420958 3.615145 -2.912101 -2.018237 2.166956 -0.615294 2.919707 -0.318926 0.918422 1.416262 -5.102035 0.574570 3.252268 3.549825 -0.663687 4.304610 5.583613 4.061064 -2.818215 0.540315 4.372359 -3.580682 -0.774712 1.548701 -4.427533 1.596667 2.331238 2.659634 5.359664 0.116670 0.037194 0.992298 -0.838801 1.322299 -2.515193 -1.312741 -2.311772 -1.577516 -2.207469 2.501725 -2.823775 -1.277395 -3.255649 -5.235043 6.070013 -9.243079 -2.429947 7.846749 -3.052032 3.185360 -4.757670 6.318627 -3.651929 3.976637 0.106372 -0.053933 0.223424 -2.543436 -6.797930 2.544456 1.575578 -0.883807 0.722679 5.344161 3.495144 0.765880 -1.826024 5.834008 -4.185477 6.854226 -2.718956 5.573084 -2.148272 -2.052982 -0.470756 -0.566989 -3.962162 -2.864223 3.707194 5.214511 -0.186018 4.966719 3.142705 2.507839 6.464460 -3.113860 4.872305 -2.046053 0.273299 -2.907062 -2.798664 3.737025 2.544369 -1.054147 2.086506 -7.591416 -6.886629 -11.035045 -2.774761 0.726734 -3.519629 1.897612 -2.469416 -1.708517 -4.401678 -5.165743 6.194460 -1.260434 -0.425833 4.075363 0.688412 3.473183 5.442921 -1.783181 0.887254 -0.393070 2.205146 2.470287 -1.328393 -6.104753 6.999043 -3.467096 -0.335680 8.607335 -3.500144 2.988309 0.005216 3.664833 -4.310487 5.109443 0.695070 -3.822570 3.524320 7.084516 3.080384 2.473430 -3.327407 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::size() const = 0.529537 -0.209094 1.822897 1.211108 -0.646151 0.072147 -0.161702 -0.998133 0.734940 -0.067615 -0.431919 0.276326 -0.355492 0.352911 -0.603589 0.833457 -1.538249 -0.275203 -0.437378 -0.967629 -0.492000 -0.104607 0.273583 -0.048828 0.836137 0.859317 -0.425506 0.121098 -0.101518 -1.061425 0.243104 -0.229972 0.173298 0.092486 0.435287 -1.274429 1.160046 0.641950 -0.511691 -0.716766 0.506598 -0.392648 -0.166062 -0.431208 -0.143459 0.267408 -0.050281 0.935811 0.653055 0.497173 -0.023421 0.419421 0.655512 1.531542 -0.348153 0.495476 0.463582 -0.156952 -0.142828 0.229046 0.157114 0.124184 -0.067458 -0.055624 0.283384 -1.164925 -0.354162 -0.464640 -0.040132 0.665927 -0.166959 -0.630720 -0.756648 -0.649770 -0.803376 -0.160377 -2.438466 1.090704 0.900966 -1.078516 0.237614 0.118913 -0.009151 0.227806 0.228157 0.110872 0.779000 0.359099 0.142295 0.122020 0.158236 -0.457427 0.650011 -0.827789 -0.643900 -2.016666 0.649211 -1.666810 -0.876218 0.351494 0.838186 -0.606186 0.339365 -0.242117 0.088199 0.090434 -0.396198 -0.375425 0.469572 0.171716 0.279217 -0.063339 -0.002909 -0.016655 0.112973 0.312029 -1.254428 0.722625 -0.014612 0.228627 0.161386 0.685494 0.544360 -0.382898 -0.110532 0.411677 -0.436043 1.203171 -0.300620 0.746236 -0.629340 1.099138 -0.107606 1.077274 0.709741 -0.737863 -0.374961 0.194662 -0.361451 0.293120 -0.810412 0.180999 -0.686302 0.578224 0.359860 -0.450580 -0.763239 -0.351013 -1.063399 -0.993448 0.175563 -0.345897 -1.038863 0.247389 0.599493 0.951946 0.719291 0.160395 -0.612606 -0.379631 -0.182077 0.064067 0.757640 0.020186 0.586801 -0.469885 -0.239995 0.421968 -0.043178 0.365255 0.098160 0.129357 0.322407 -0.788614 0.422419 0.731365 0.598639 -0.216344 0.775400 0.926626 0.473832 -0.126196 -0.039382 0.661898 -0.573146 -0.157789 0.275049 -0.664815 0.305278 0.345357 0.683703 0.767627 0.048382 0.322153 0.171587 -0.221491 0.229339 -0.348640 -0.261531 -0.346049 -0.333056 -0.273313 0.740687 -0.458281 -0.115260 -0.424984 -0.862562 0.949086 -1.535304 -0.046376 1.207601 -0.459033 0.427140 -0.350326 0.952714 -0.569178 0.686947 0.163378 0.008757 0.091322 -0.544810 -1.014818 0.318805 0.254698 -0.027227 -0.064056 0.671516 0.534657 0.002450 -0.247011 0.931551 -0.885395 1.141046 -0.374792 0.853723 -0.339486 -0.215016 -0.057439 -0.050315 -0.773448 -0.528443 0.527837 0.911233 -0.213618 0.799046 0.378516 0.197320 1.033284 -0.555100 0.812456 -0.305627 -0.011900 -0.613372 -0.513557 0.642952 0.383887 -0.133466 0.160493 -1.199504 -0.919205 -1.920908 -0.138935 0.020580 -0.609694 0.284374 -0.441915 -0.374615 -0.437914 -0.951445 1.366297 -0.214224 -0.456695 0.578171 0.085719 0.577656 0.846698 -0.128479 0.205932 -0.191891 0.274467 0.493765 -0.128065 -0.903547 1.174088 -0.512702 -0.230575 1.390841 -0.589137 0.510320 0.181272 0.515788 -0.688259 0.644713 0.040569 -0.609528 0.508119 1.386978 0.528995 0.326774 -0.541702 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::max_size() const = -0.060684 -0.242359 0.738344 0.473410 -0.178748 0.088897 0.126817 -0.321186 0.369198 -0.274256 -0.171404 0.073556 -0.459349 0.123200 -0.406863 0.083453 -0.625894 -0.380420 -0.189902 -0.345308 -0.128666 -0.227405 0.176959 0.144704 0.316640 0.303078 -0.238947 -0.035086 -0.596292 0.013104 0.351697 -0.094790 0.201794 0.176148 0.063672 -0.713797 0.341946 0.382169 -0.206700 -0.399274 0.304938 -0.458476 0.039302 -0.379317 -0.068254 0.042176 0.000734 0.287233 0.307270 -0.017211 -0.057894 0.096085 -0.107515 0.716243 -0.362575 0.256861 0.235149 0.005446 -0.100967 0.050295 0.023278 0.035807 0.118039 0.114434 -0.241600 -0.418390 -0.080330 -0.390590 -0.244398 0.348045 -0.064056 -0.017954 -0.330669 -0.177352 -0.578461 -0.123543 -0.408217 0.450285 0.527992 -0.508423 0.293008 -0.014256 0.145100 0.060108 0.182029 0.113102 0.321353 0.079209 -0.014665 -0.075723 -0.490448 0.073347 0.044521 -0.152517 -0.193512 -0.614260 0.328009 -0.760649 -0.497402 0.018822 0.194140 -0.230525 -0.028037 0.159540 0.016704 0.195511 -0.224275 -0.346867 0.068977 0.202233 0.094793 -0.001713 0.109226 -0.010719 -0.077981 -0.424329 -0.578562 0.230950 -0.022720 -0.078573 -0.009787 0.470348 -0.206172 -0.033630 0.054699 0.156716 -0.240070 0.624346 -0.096176 0.084333 -0.126197 0.080099 -0.256649 0.042721 0.241949 0.506301 -0.337329 0.066271 -0.145990 0.037160 -0.352782 -0.254709 -0.168892 0.144100 0.056562 -0.454643 -0.277190 -0.193253 -0.297079 -0.626540 -0.041567 -0.204594 -0.247011 0.218702 0.332766 0.606711 0.329979 0.695463 -0.242018 0.033708 0.022110 -0.231211 0.344356 0.088992 0.320809 -0.251966 -0.297114 0.184381 -0.146712 0.230244 0.027888 0.106105 0.005935 -0.523612 -0.021698 0.213460 0.298594 0.010915 0.466968 0.457555 -0.243660 -0.488252 0.140517 0.302320 -0.212625 -0.030297 0.095383 -0.383972 0.231915 0.187030 -0.019886 0.325502 0.011574 -0.100667 0.117421 -0.117338 0.237562 -0.362005 -0.103781 -0.225858 -0.137550 -0.417555 0.200526 -0.167970 -0.236487 -0.239024 -0.437898 0.501104 -0.467446 -0.287645 0.422769 0.149372 0.394976 -0.507123 0.202474 -0.298674 0.628024 0.052930 0.090355 0.033682 -0.092606 -0.352575 0.075007 0.127525 -0.170538 0.130975 0.400044 0.301585 0.082713 -0.020822 0.487685 -0.190761 0.402567 -0.232008 0.300013 -0.102341 -0.351550 0.243550 -0.121579 -0.155961 -0.069598 0.254705 0.662049 0.292981 0.463669 0.428226 0.268874 0.488104 -0.196685 0.090288 -0.133170 0.223405 -0.196628 -0.202545 0.122736 0.283344 -0.053669 0.058721 -0.587946 -0.866147 -0.559959 -0.534622 0.213216 -0.473272 -0.009089 -0.024896 -0.032317 -0.501191 -0.342402 0.147103 -0.203145 0.599699 0.179757 0.061677 0.337362 0.485783 -0.406493 0.010441 0.342607 0.353623 0.050380 0.006126 -0.598789 0.485440 -0.369439 0.020184 0.682153 -0.327425 0.228461 0.057206 0.410018 -0.380010 0.622980 0.146052 -0.435875 0.412282 0.428403 0.407147 0.414338 -0.266229 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.687100 -1.333181 4.115750 2.850164 -0.762845 0.797575 -0.084913 -1.509203 0.857765 0.687100 -0.817709 1.641246 -1.186674 0.436554 -0.699167 1.232205 -2.774156 -0.871077 -0.815565 -1.378721 -0.743432 -0.556011 -0.309291 1.402620 1.785095 1.171675 -1.203870 0.446523 -1.519690 -2.916148 -0.467844 -0.265004 0.843305 -0.731019 1.623815 -2.779829 2.459511 2.171303 -0.432769 -2.295226 1.025120 -0.611915 -0.298070 -0.425159 -0.596368 1.038497 0.751075 1.355669 1.073475 1.153828 -0.565106 0.413740 1.744727 2.948743 0.067788 1.475827 1.749105 -0.660641 0.397878 -0.136631 0.034904 -0.580030 -0.040139 -0.318879 0.258251 -1.964581 -0.261394 -0.250838 -0.164266 1.114030 0.178326 -1.497351 -1.560662 -1.511049 -2.412743 -0.180612 -2.408444 2.039329 2.328397 -1.780996 1.345707 0.426945 0.355442 0.876876 1.133632 0.222043 1.366177 0.816405 -0.271016 0.368401 -0.532612 -1.018671 0.739885 -0.581817 -1.579425 -3.375763 1.180968 -3.718048 -2.098631 1.282041 0.885328 -1.667356 0.126625 -0.922914 0.424753 0.660353 -0.711849 -1.187857 0.373568 0.952030 0.217355 -0.399598 0.411568 -0.173114 0.122275 0.577504 -2.393495 1.491416 0.849258 0.051435 -0.072880 1.891397 0.705318 0.504542 -0.196998 1.035224 -0.719930 1.924316 0.403619 1.396100 -1.312652 1.024098 -0.479271 1.275925 0.925541 -1.470894 -1.100222 0.115073 -0.402494 0.911177 -0.630510 1.123441 -1.269881 1.872918 0.723562 -0.809262 -1.572977 -1.388747 -2.291232 -1.549182 0.235827 -0.445087 -2.532989 0.705784 1.296627 0.885676 0.755322 0.574968 -0.995944 -0.577809 -0.179764 -0.158338 1.062441 -0.726065 0.946966 -1.225177 -0.806734 1.256529 0.557164 1.086629 0.200511 0.067597 0.949773 -1.055814 0.499406 1.262697 1.023800 -0.166914 2.188665 2.093128 2.008510 0.076360 -0.643169 0.827260 -1.354201 -0.330717 0.251311 -1.541786 0.577253 0.784319 0.975961 2.565513 -0.032453 -0.107909 1.411004 -0.201443 0.424500 -1.075714 0.455176 -1.067239 -0.265313 -0.533638 0.417351 -1.115937 -0.318010 -1.718530 -1.635981 2.498507 -2.991981 -1.095677 1.820634 -0.567283 1.131127 -1.819960 2.157216 -1.071289 1.758345 0.848883 -0.116730 0.413734 -0.718564 -1.757260 0.637299 0.703116 -0.591412 0.331819 1.130957 0.849057 -0.223651 -0.279462 1.540083 -1.400314 1.666176 -1.103637 1.267875 -0.803563 -0.137528 -0.603465 -0.128461 -0.885601 -0.504726 0.508646 0.240983 -0.358538 1.029104 0.355786 1.189602 1.373166 -0.844128 1.237613 -0.873323 0.594496 -1.651150 -1.220284 0.489885 1.267004 0.430916 0.770658 -2.982127 -1.639880 -3.653346 -1.223366 -0.383264 -0.356677 0.572772 -0.253444 -0.908294 -1.548041 -2.124440 3.189071 0.002945 -0.084189 1.658733 0.224740 1.577514 1.405287 0.221884 0.036758 -0.434533 0.490284 0.524618 -0.202437 -1.509196 1.983123 -1.553910 0.151251 2.856849 -1.289956 1.467838 -0.131472 0.522219 -2.200588 1.957835 0.582652 -1.920497 0.488620 2.736595 1.337992 -0.674137 -1.316162 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = 0.030755 -0.480498 1.775501 1.157439 -0.299968 0.104022 0.442571 -0.753126 0.726936 -0.107449 -0.306937 0.362753 -0.827519 0.307591 -0.779719 0.596256 -1.313383 -0.703520 -0.337876 -0.828649 -0.307838 -0.308581 0.538169 0.106870 0.932264 0.369386 -0.555913 -0.433870 -1.006593 -0.588685 0.542606 -0.272749 0.484767 -0.088578 -0.015416 -1.825389 0.914060 0.814705 -0.525148 -0.850298 0.815229 -0.705478 -0.024539 -0.540458 -0.195397 0.086435 0.096436 0.632970 0.718730 0.359653 0.091195 0.374420 0.271978 1.836414 -0.720606 0.572589 0.505752 -0.101413 -0.305582 0.172219 0.118365 0.005621 0.248762 0.113819 -0.111243 -1.059628 -0.282376 -0.668416 -0.540054 0.630405 -0.102715 -0.215769 -0.696376 -0.256893 -0.977618 -0.242811 -1.006935 0.935533 1.119755 -1.034167 0.650679 -0.027963 0.091705 0.048712 0.172946 0.251447 0.458975 0.246294 0.078997 -0.329817 -0.651907 0.043869 0.232307 -0.221174 -0.444578 -1.663078 0.808726 -1.191785 -1.057374 0.170087 0.600705 -0.602290 -0.100596 0.039464 0.026833 0.476820 -0.543365 -0.701039 -0.003720 0.250690 0.233879 -0.128500 0.108840 -0.258776 -0.183110 -0.482369 -1.238027 0.538033 -0.069273 -0.148111 -0.245288 0.817142 -0.160056 -0.066536 0.052836 0.569462 -0.517706 1.109007 -0.175043 0.505937 -0.085716 0.451583 -0.576574 0.198659 0.688508 0.667384 -0.605128 0.131342 -0.544471 0.193465 -0.680038 -0.147070 -0.261379 0.615050 0.437485 -0.811206 -0.692165 -0.352919 -0.440902 -1.165506 0.078400 -0.469569 -0.558076 0.344496 0.687287 0.794766 0.737256 1.179817 -0.555731 0.156823 0.048143 -0.369086 0.815171 -0.032003 0.699008 -0.546920 -0.563595 0.325039 0.002604 0.477439 -0.082269 0.344043 0.177083 -1.060130 -0.016943 0.296921 0.547046 -0.244598 0.813692 0.910803 0.365444 -0.824560 0.098552 0.690564 -0.566074 -0.088077 0.227904 -0.918790 0.377098 0.368113 0.042452 0.867359 0.106059 -0.325551 0.417776 -0.292222 0.290984 -0.589687 -0.038034 -0.507592 -0.366835 -0.583350 0.237401 -0.365784 -0.396410 -0.512816 -0.776210 1.113032 -1.076072 -0.561522 0.892988 -0.040339 0.447453 -1.210101 1.210992 -0.662868 0.818301 -0.028844 0.049416 0.044717 0.054012 -0.944537 0.213671 0.281405 -0.307985 0.405964 1.128423 0.615022 0.122585 -0.199251 1.056291 -0.494455 1.007282 -0.416960 0.817570 -0.324437 -0.703740 0.189497 -0.150733 -0.436320 -0.319049 0.504707 1.148171 0.307455 0.712981 0.732886 0.561644 1.223540 -0.507450 0.623088 -0.285147 0.565059 -0.402175 -0.439074 0.408836 0.517815 -0.118213 0.435034 -1.313423 -1.534802 -1.194281 -1.042562 0.409548 -0.655671 0.198517 -0.324919 -0.164487 -1.131400 -0.828958 0.476538 -0.327570 0.621257 0.663502 0.158187 0.688581 0.894005 -0.587361 0.103562 0.224214 0.619222 0.295391 -0.282096 -0.932604 0.934243 -0.799345 0.001989 1.357960 -0.566609 0.454338 0.020548 0.717556 -0.810192 1.248261 0.206115 -0.723921 0.904349 1.037311 0.891580 0.402366 -0.544996 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.017259 -0.516354 2.444010 1.752207 -0.748119 0.128804 0.261709 -1.135006 1.047104 0.183289 -0.239618 0.362467 -0.856039 0.408333 0.154505 1.184749 -2.101426 -0.576838 -0.370101 -1.267324 -0.602177 -0.354705 0.592229 -0.000952 1.116477 0.840833 -0.679718 -0.415490 -0.232077 -1.208033 0.799511 -0.520477 0.875437 0.546708 0.228131 -3.673165 1.502544 0.701616 -0.738170 -1.083403 0.830393 -0.672739 0.235986 -0.649163 -0.642847 0.333467 0.157608 0.742874 1.087631 0.613297 0.061202 0.288068 0.797111 2.489906 -0.787803 0.612885 0.481834 -0.664643 -0.628757 0.086323 0.224918 -0.010293 0.579768 0.199406 0.008546 -1.619941 -0.312111 -0.946682 -1.077404 0.854550 0.051207 -0.500285 -1.015315 -0.590238 -0.786925 -0.561235 -1.767675 1.498803 1.525308 -1.372300 0.833113 0.048929 -0.042857 0.202498 0.382589 0.337096 1.035548 0.333731 -0.055793 0.047751 -0.038714 -0.805585 0.731105 -0.281813 -0.426458 -2.199450 0.686979 -1.007051 -1.226607 0.571392 0.975185 -0.504076 -0.879359 -0.720843 0.376725 0.661867 -0.740643 -0.941825 -0.140573 0.145079 0.075209 -0.235830 -0.318273 -0.254225 -0.404454 -0.335172 -1.694840 0.629267 -0.068169 -0.069803 -0.269917 1.050112 -0.080050 -0.290819 -0.021029 0.802228 -0.822342 1.726823 -0.330050 0.926614 0.030859 0.599483 -0.515807 0.277599 0.889627 0.621062 -0.246176 -0.564849 -0.892459 0.323847 -1.156655 0.125707 0.154149 1.185902 1.428677 -0.468525 -0.971543 -0.411111 -0.724076 -1.868713 0.372790 -0.808578 -0.293124 1.030322 0.933697 0.754465 1.095529 0.919030 -1.022712 0.396091 -0.458614 -0.234167 1.290953 0.528547 0.999516 -0.716450 -0.371336 0.383978 0.129101 0.714163 0.072247 0.035594 0.369835 -1.132838 -0.228875 0.617280 0.738097 -0.196946 0.712932 1.108879 2.098591 -0.719553 0.058348 0.966948 -0.583112 -0.142997 0.433281 -1.045468 0.399074 0.450141 -0.210974 1.135321 -0.033755 -0.504105 0.227956 -0.262721 0.205612 -0.600507 -0.017284 -0.571448 -0.074257 -0.608201 0.076804 -0.843937 -0.550589 -0.686031 -0.635421 1.563065 -1.525459 -0.701768 1.527826 -0.818204 0.720949 -1.554404 2.271573 -0.923783 0.768626 -0.800681 -0.454733 -0.081609 -0.171152 -1.192580 0.531901 0.393911 -0.108053 0.014818 1.647272 0.871216 0.121928 -0.357859 1.390196 -0.421272 1.469543 -0.397316 1.423386 -0.569344 -0.021111 -0.039219 -0.170525 -0.548039 -0.431162 0.547116 1.208367 0.316894 0.755324 0.738675 0.716075 1.355774 -0.737450 1.064349 -0.282057 0.712716 -0.531442 -0.519396 0.670038 0.946484 -0.212921 0.557700 -1.697050 -1.587901 -1.700949 -0.752306 -0.182774 0.336123 0.418233 -0.380966 -0.166498 -1.127647 -0.860389 1.145876 -0.385094 0.410993 0.703506 0.202116 0.994589 1.301438 -0.412100 -0.381008 -0.096022 0.296803 0.423576 -0.107829 -1.359455 1.459400 -1.056782 0.066097 1.694536 -0.719968 0.410126 -0.105061 1.443322 -1.010177 1.474115 0.174555 -0.706747 1.159278 1.578318 0.906709 0.266310 -0.694533 -PE-benchmarks/tarjan-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.270414 -2.492304 5.492200 3.919477 -0.739328 1.947948 -0.280389 -1.371749 -0.351708 1.005609 -0.326199 3.064427 -1.735976 0.274850 -0.364393 0.640762 -2.845681 -0.892202 -1.393972 -1.555931 -0.210261 -0.451997 -1.300817 3.543338 2.041207 0.801199 -1.866872 0.472538 -3.408384 -3.724195 -0.930377 0.085516 2.030322 -1.817752 2.267362 -4.924084 3.036481 3.799113 -0.123159 -3.391007 1.686860 -0.546455 -0.257637 -0.040312 -2.386447 1.453072 1.054403 -0.839224 0.927469 1.189885 -1.282809 0.796531 2.863811 3.592288 0.605083 2.123586 2.465114 -1.463164 1.119433 -1.042478 -0.665172 -0.882054 0.163109 -1.244172 0.197390 -2.542012 -0.075574 0.417342 -0.620458 0.597071 0.210263 -2.064551 -1.249330 -1.755146 -4.055402 -0.370797 1.177272 2.091026 2.601555 -1.478752 2.353829 -0.097677 -0.286667 1.699053 2.215955 0.867082 0.628887 1.045250 -0.094854 0.983918 -0.476897 -0.197746 0.709198 1.096563 -2.662111 -3.360836 1.701377 -4.090260 -2.362268 2.368645 0.472565 -2.837004 -0.865463 -2.696310 -0.220939 1.547977 -1.370649 -1.703568 -0.183510 2.491931 0.893920 -0.896467 0.519391 -0.461321 0.158420 -0.255113 -2.142452 2.543340 1.776576 0.171068 -0.741694 2.968920 0.442754 1.220095 -0.272284 2.013411 -1.695356 2.010133 0.802848 1.540229 -2.392128 -0.079906 -0.338291 -0.663464 0.616492 -0.961008 -1.856464 -1.250222 -0.833497 1.247885 0.663889 2.081632 -0.404553 2.533658 1.444206 -0.306949 -1.163670 -2.029497 -2.757639 -2.249928 -0.763292 -0.118414 -3.321985 2.662568 1.507021 -0.234322 0.477371 1.090580 -0.295606 -0.546810 -0.211995 -1.534328 1.226448 -1.671017 0.672344 -1.601799 -1.504936 1.780503 0.586853 2.429697 0.328300 0.529323 1.169685 -0.192367 0.568189 1.239828 1.382219 0.107379 3.204284 3.192393 3.669743 0.844878 -1.528389 0.329306 -2.729305 -0.136733 -0.275087 -1.621475 -0.300826 1.651268 -1.183562 4.354541 -0.436757 -1.014207 2.816210 -0.258532 0.627407 -1.709536 2.113359 -1.621499 0.397086 -0.951289 -2.126184 -1.435130 -0.655559 -3.537486 -2.563011 3.624441 -4.633870 -1.990763 1.300292 0.538948 1.024685 -3.525090 2.695036 -1.241336 3.052654 1.566470 -0.374147 0.548235 -0.000484 -2.319554 0.891930 0.928660 -1.942865 0.651274 1.796833 0.985751 -1.003151 -0.745510 1.800451 -1.287774 1.667217 -2.144040 1.414352 -1.214284 0.133882 -0.802654 -0.123683 -0.935020 -0.605358 0.425790 -1.650356 -0.554416 1.051408 -0.777334 2.643606 1.134406 -0.232511 0.915563 -1.526557 1.062591 -1.942945 -1.623991 0.025514 3.153215 1.979484 1.014465 -4.205849 -1.931514 -4.651596 -2.245134 -0.002785 1.078437 0.245703 0.589006 -1.279917 -2.882923 -2.940087 4.047807 -0.094994 1.643384 2.533714 0.487861 2.242648 1.378890 0.626897 -0.201875 -0.345836 0.972182 0.709133 0.369758 -1.803479 2.371254 -2.185718 0.401491 3.535167 -1.403199 2.684379 0.092447 -0.218578 -3.426389 3.342661 0.910205 -2.861190 0.668372 3.044488 0.807429 -1.851566 -1.416275 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.142804 -0.115556 0.398859 0.031992 -0.245105 -0.037189 0.196868 -0.002315 0.311883 -0.106510 -0.278378 -0.528328 -0.308537 -0.251955 0.040132 -0.295827 -0.393820 -0.156384 -0.065357 -0.127322 0.092143 -0.390286 0.132770 0.051483 0.046350 0.332841 0.175727 0.122080 0.162565 0.061114 0.459518 -0.060464 0.103011 0.573268 0.102396 -0.343351 0.119571 -0.005146 -0.002823 -0.095010 -0.041647 0.183106 -0.078927 0.056745 -0.154429 0.145805 0.133035 0.511384 0.070653 -0.066456 -0.058859 -0.696496 -0.129352 0.193406 -0.031465 -0.075189 -0.041682 -0.125309 0.129685 0.140593 -0.022309 -0.150971 -0.129589 0.379824 0.099027 0.155236 0.443288 -0.326890 -0.353678 0.436120 -0.148468 0.034466 0.011293 -0.208686 -0.091215 0.136293 -0.160956 0.315621 0.389314 -0.059803 0.270843 0.154438 0.112341 -0.129949 -0.441625 0.014934 0.037769 -0.070593 -0.043590 -0.059935 -0.219381 -0.258761 -0.090977 -0.193404 0.102191 0.032581 0.258118 -0.317442 0.014938 -0.112016 0.043190 -0.099390 0.102174 0.293347 -0.048873 0.016716 0.136167 -0.052428 -0.088601 0.065718 -0.270499 0.438501 0.063905 0.522097 -0.156330 -0.125599 -0.131202 -0.055342 -0.259444 -0.150323 0.252978 0.114320 -0.220599 0.138924 0.328166 0.117008 0.079604 0.303815 0.283922 -0.006582 0.076515 -0.012922 0.116035 -0.227578 0.099684 0.417076 0.305365 -0.199215 0.216494 0.023276 -0.205940 -0.247185 -0.091836 -0.316852 0.077604 -0.417609 -0.069994 -0.034546 -0.312846 -0.393708 -0.141283 -0.228485 -0.031043 0.393394 0.061464 0.586666 -0.045281 0.565875 -0.564321 0.051607 -0.180042 -0.344512 -0.453017 0.279349 0.070045 0.021840 0.025960 -0.269564 -0.128468 0.246002 0.004163 -0.433821 -0.164859 -0.342527 -0.039766 0.318963 0.062275 0.009347 -0.228361 0.348399 -0.284442 -0.324572 0.021407 0.298409 0.115179 -0.322010 0.402987 -0.297633 0.275069 -0.092969 -0.022369 -0.231740 -0.003767 0.311287 0.073356 -0.402153 -0.128905 -0.240684 -0.254056 0.002242 0.206498 -0.344111 0.215182 -0.312883 -0.088723 0.097147 0.030105 0.019056 -0.025597 -0.143419 0.310194 0.227179 0.233236 0.062824 0.013921 0.053504 0.399288 0.027137 -0.042411 -0.138624 -0.299845 0.286928 -0.268526 -0.247262 0.200109 0.158104 0.226805 0.147736 -0.072383 0.118882 0.399389 -0.119781 0.091612 -0.131892 -0.332974 -0.013240 -0.224881 0.068949 -0.069746 -0.044425 0.039803 0.082563 0.373831 0.378521 0.062382 0.534407 -0.089017 -0.008046 0.204044 -0.157863 0.187673 0.343696 -0.074337 -0.045233 0.119281 0.300272 -0.449899 -0.013523 -0.231526 -0.564854 -0.217590 -0.333040 -0.433871 -0.583762 0.134764 0.071253 0.123664 0.029014 -0.075138 0.075719 0.080701 0.372152 -0.134982 -0.140238 0.128960 0.339559 -0.248670 -0.060893 0.498897 0.383805 -0.192557 0.069587 -0.347562 0.163150 -0.262939 -0.042502 0.385546 -0.298083 0.034339 -0.125175 0.279858 -0.524679 0.224801 0.195802 -0.164750 0.159815 -0.170939 0.120105 0.558453 -0.046639 -PE-benchmarks/tarjan-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.116121 -0.623844 0.979156 0.524649 0.030321 0.105621 0.281413 0.193531 0.015119 0.492195 -0.528737 0.707594 -0.485573 -0.027828 0.401757 0.260386 -0.495962 -0.620167 0.306523 0.227686 -0.079697 -0.409765 -0.163546 0.569301 0.506457 0.399986 -0.473787 -0.109338 -0.615937 -0.806649 -0.439282 -0.107910 0.402599 0.330315 0.647154 -0.349462 0.107323 0.369117 0.193385 -0.793463 0.213179 0.076683 0.181805 0.028307 0.330817 0.699365 0.724824 0.268254 0.083560 0.219676 -0.301719 -0.568431 -0.012190 0.000508 0.282780 0.227862 0.587925 -0.265651 0.230415 -0.434771 0.267538 -0.688217 0.206806 0.247552 -0.349619 -0.136379 0.045271 -0.108106 -0.106933 0.273015 0.453772 -0.066260 -0.551848 -0.543991 -0.217233 0.030894 0.158652 0.482695 0.725903 -0.085403 0.667450 0.386950 0.821935 -0.100270 0.171772 -0.167583 0.238507 0.129630 -0.434137 -0.137739 -0.648005 -0.708830 -0.402105 0.661217 -0.062548 0.583856 0.075780 -0.487141 -0.594738 0.237135 -0.008452 -0.200319 -0.401491 0.649158 0.428512 0.526169 0.238068 -0.369246 -0.314528 -0.021199 -0.410078 -0.048503 0.028335 -0.092699 -0.469933 0.141138 -0.510601 0.050926 0.369764 -0.408596 -0.029319 0.343869 -0.302477 0.749008 0.114202 0.062891 0.108242 0.264396 0.962674 0.208077 0.179913 -0.495013 -0.696716 0.049743 0.089514 0.338915 -0.412382 -0.184655 0.065231 0.118674 0.109088 -0.069746 -0.311237 0.851842 0.749980 -0.487501 -0.698926 -0.679867 -0.319111 -0.117205 0.276569 -0.153171 0.238388 -0.051665 0.148780 -0.009904 -0.112036 0.801181 -0.631938 0.350295 0.086671 0.074556 -0.137238 0.114893 0.157106 -0.427044 -0.094373 0.273651 0.543862 0.072404 0.091312 -0.301535 0.402913 -0.266654 -0.423974 0.576671 0.183152 0.308982 0.436901 0.255966 0.482396 -0.122943 -0.458469 0.062276 0.070066 -0.441943 0.254171 -0.591318 0.616995 -0.103476 0.432791 0.564450 0.020542 -0.265709 0.632820 -0.045037 0.057991 -0.353938 0.442251 -0.415613 0.322673 -0.131809 -0.096751 -0.467629 -0.008358 -0.176808 0.114480 0.757224 0.402811 -0.903577 0.058964 -0.224272 0.590442 -0.922340 0.225784 -0.066792 0.253055 -0.027053 0.020035 -0.027827 -0.234378 0.160528 -0.123160 0.165050 0.149979 0.083226 0.186370 0.066126 -0.264405 0.309358 0.131781 0.283192 0.083294 0.088509 -0.097168 -0.124138 0.321470 -0.178421 0.140489 0.155400 0.451380 -0.409898 -0.067337 0.164414 -0.023758 0.377895 0.250061 0.041764 -0.335812 -0.063845 -0.140034 0.848046 -0.274280 -0.461668 -0.382035 0.439259 -0.219702 0.078883 -0.662524 -0.578198 0.075472 -1.165239 -0.679275 0.072791 0.290138 0.169417 -0.204161 -0.311566 -0.117581 0.288000 0.415583 0.989791 0.096590 -0.258428 0.612515 0.191438 -0.287290 -0.359340 -0.039330 0.009719 -0.201023 -0.051455 -0.293259 0.006961 -0.618624 0.262711 0.665426 -0.586347 0.071031 -0.382058 0.576456 -0.717278 0.834256 0.443793 -0.818326 -0.125062 0.137225 0.622229 -0.568378 -0.494916 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.086689 -0.647507 2.610509 1.578740 -0.225793 0.001111 1.312915 -1.082872 1.328305 0.393354 -0.372993 -0.093612 -1.503861 0.259452 -0.861198 0.937035 -1.724315 -1.107209 -0.453712 -1.289787 -0.149468 -0.778609 1.438791 -0.234092 1.514665 0.010542 -0.609245 -1.193247 -1.234959 -0.991098 1.312925 -0.535678 0.926281 -0.052301 -0.564223 -2.862488 1.394007 0.995645 -0.826998 -1.007163 1.336312 -0.592013 -0.148495 -0.348486 -0.278978 0.129648 0.151506 1.049469 1.264107 0.722008 0.660603 0.021980 0.450012 2.680206 -1.464821 0.655209 0.258997 -0.250190 -0.510098 0.566569 0.126469 0.039738 0.419421 0.619069 0.178204 -1.359061 -0.008934 -1.040678 -1.522449 1.180333 -0.350791 -0.098214 -0.889728 -0.000545 -0.840653 -0.140725 -0.889062 1.267012 1.820006 -1.097327 1.180104 -0.030490 -0.148989 -0.455307 -0.580634 0.368062 0.166858 0.176264 0.165357 -0.996523 -1.037554 0.015351 0.164341 -0.034504 -0.290756 -2.005141 1.385408 -0.649137 -1.328890 -0.017550 0.945323 -0.863969 -0.445339 0.294100 -0.100414 0.791616 -0.633957 -1.139923 -0.417509 0.208429 0.147735 0.067479 0.013053 -0.437711 -0.647801 -0.803310 -1.571552 0.372769 -0.650770 -0.577521 -0.654295 0.890407 -0.622544 -0.013246 0.459649 1.183387 -0.655600 1.232802 -0.076379 1.037082 0.747277 0.526115 -0.929387 -0.344570 1.193870 1.690944 -0.242083 0.080028 -1.041391 0.234352 -1.094254 -0.164546 0.084454 0.619131 1.040081 -1.474504 -0.855250 -0.062734 -0.024650 -1.773352 0.214483 -0.966431 -0.277397 0.472826 0.929542 0.882936 1.093885 2.329733 -1.339441 0.620566 0.005216 -0.849311 0.880748 0.073054 1.030873 -0.628320 -0.831921 -0.079191 0.203713 0.649731 -0.387372 0.323227 0.028206 -1.811907 -0.174082 0.108591 0.434320 -0.734435 0.491422 1.271746 0.981938 -1.474437 0.257426 1.400861 -0.610681 -0.285917 0.637016 -1.727356 0.672079 0.334287 -0.248262 0.925902 0.199351 -0.594231 0.774018 -0.917396 0.107667 -0.915752 -0.037993 -0.740039 -0.358081 -1.013495 0.018815 -0.530588 -0.738860 -0.320790 -0.410572 1.382849 -0.751903 -0.942752 1.351687 -0.045474 0.136879 -1.884571 2.558229 -0.848033 0.588499 -0.405875 -0.051473 -0.185807 0.583253 -1.118063 -0.109261 0.110100 -0.205476 1.199856 2.298894 0.923745 0.059730 -0.309546 1.801217 -0.526532 1.443661 -0.599567 1.034372 -0.453735 -1.256609 0.190268 -0.257110 -0.528353 -0.635214 0.573640 1.792964 0.836681 0.535215 1.438525 0.605920 1.944063 -0.430369 1.198213 -0.069651 1.233864 -0.270384 -0.395205 0.840708 0.674742 -0.751822 1.144493 -1.850905 -2.427452 -0.789906 -1.922144 0.380666 -1.030005 0.606236 -0.581594 0.000596 -1.791398 -1.097024 0.055981 -0.353525 0.929429 0.902369 0.156287 0.806734 1.420378 -1.026691 0.222442 0.338099 1.156175 0.289927 -0.822662 -1.002338 1.140718 -1.283239 -0.024373 1.783904 -0.778236 0.407338 -0.484731 1.120232 -1.470391 1.927999 0.362799 -0.471461 1.804272 0.874430 1.524386 0.768842 -0.590012 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.338556 -4.536883 26.586276 17.159617 -8.708451 2.716481 -3.130747 -13.087518 7.451423 1.442992 -5.596294 8.204085 -4.155023 3.620909 -5.691419 10.084986 -21.324185 -3.690660 -5.697174 -12.591882 -7.644485 -1.627259 -0.048165 4.567974 11.403725 11.271962 -7.853982 2.987992 -2.536955 -18.917483 -0.814387 -2.051325 4.024866 -2.334977 9.148279 -22.563598 16.305350 10.839745 -5.037503 -11.792979 6.809340 -3.752655 -2.786025 -3.034249 -5.549208 4.571935 1.134306 10.599316 7.784025 6.416506 -1.846675 5.860105 10.668266 22.334939 -0.818689 7.981788 8.364028 -4.412505 -1.257057 1.071400 1.968979 -1.093132 0.130830 -1.879701 3.423886 -15.409959 -1.983598 -3.220137 -0.517943 8.642903 1.108106 -11.983405 -8.716854 -10.299210 -12.768467 -2.504670 -19.638145 14.474243 12.724299 -12.335527 5.031222 1.888280 0.483494 4.343463 5.538077 0.297868 12.980576 5.024325 0.886034 1.245980 1.327225 -7.265708 7.967244 -6.148201 -9.866757 -25.513586 7.926075 -25.300350 -13.352062 6.595397 10.523411 -10.314328 0.614734 -6.382496 4.074621 1.507042 -3.948307 -5.676998 3.296124 4.782708 0.111047 -2.040295 -0.395992 -1.061068 1.972213 6.954831 -16.541780 11.073491 3.135520 3.856871 0.203468 10.682112 7.332650 -2.074203 -1.608153 7.187677 -5.237028 13.170815 -2.035682 9.594563 -9.908440 12.522647 1.083003 11.647858 6.747689 -13.257270 -6.084744 -2.036161 -4.198072 5.704915 -8.466486 5.959194 -10.630873 12.107356 6.860416 -3.907856 -11.060390 -7.149859 -15.624023 -13.040358 1.374624 -3.749479 -17.287041 4.263286 7.931854 9.111141 7.112621 -0.881298 -6.904892 -2.775274 -1.330092 0.854205 9.387742 -3.471361 7.239948 -7.774388 -3.673300 6.688530 1.183567 7.562555 0.029140 1.132386 5.002520 -7.888533 2.211541 9.843432 8.217024 1.023622 11.372452 13.747039 16.988751 -1.614533 -2.588237 6.907898 -8.910855 -2.838812 2.714453 -8.935917 2.037935 5.589963 8.735540 16.513821 0.071677 1.999379 4.303598 -0.362677 2.787410 -5.949406 0.479159 -5.601506 -1.545048 -1.889166 4.076054 -8.440880 -0.145278 -10.309747 -13.694710 15.256686 -24.263056 -6.762413 17.411971 -7.811660 8.191970 -9.940824 12.802306 -7.019212 9.917750 1.828377 -0.885203 1.182351 -8.481576 -14.269020 7.931082 3.545491 -1.957987 -0.262540 9.302623 6.320953 0.862588 -4.238934 10.969648 -10.713558 14.710464 -6.564916 11.915952 -5.023815 -1.438573 -4.185858 -0.101166 -9.613189 -4.914314 6.147875 4.724700 -3.292646 8.889076 2.408122 6.064299 11.401232 -7.432165 10.926034 -5.016424 0.063014 -8.974905 -8.638329 7.176456 7.371374 0.124432 3.042391 -18.369738 -10.508002 -28.109574 -5.949597 -1.668561 -4.243458 4.626258 -4.244512 -6.536213 -7.356530 -13.023370 22.872831 -0.219939 -1.436206 9.865763 1.450551 9.594424 10.884810 0.244626 2.138487 -4.304434 1.758751 5.433775 -2.505717 -12.297465 15.515759 -7.019535 0.329170 19.291196 -8.273183 9.014805 0.720715 4.336142 -11.785070 9.972223 1.568223 -10.936488 3.512009 17.016970 6.569489 -1.424153 -8.623706 -PE-benchmarks/tarjan-algorithm.cpp__int** std::copy(int**, int**, int**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/tarjan-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.419898 -0.789415 3.800926 1.847715 -0.576490 -0.132586 1.963594 -1.787232 1.767039 -0.235445 -0.327607 0.154859 -2.499750 0.670283 -1.847678 1.134604 -2.661703 -1.873183 -0.772931 -2.063454 -0.910640 -1.209273 2.165608 0.046919 2.169219 0.297657 -1.024608 -1.500605 -2.079253 -1.761460 1.638382 -0.628288 1.119386 -0.171953 -0.353444 -4.175207 1.908217 1.134044 -1.243167 -1.286354 2.218483 -1.030959 -0.155886 -0.510537 -0.206724 0.179448 0.524602 2.016217 2.054591 1.134363 0.982836 0.141823 0.154248 3.858917 -2.152618 1.084121 0.850428 -0.128943 -0.819134 0.736588 -0.262725 -0.390302 0.354029 0.777321 -0.509340 -1.667725 0.230463 -1.734852 -1.939704 1.868040 -0.214616 -0.469647 -1.555816 -0.503391 -1.716069 -0.403185 -1.155797 1.769519 2.917802 -2.085875 1.484309 -0.101896 0.173865 -0.560011 -0.377078 0.240535 0.697154 0.123507 -0.095858 -1.443934 -2.079848 0.253390 -0.410207 0.113329 -0.224027 -3.318967 1.901486 -2.036909 -2.417112 0.042659 1.015478 -1.249015 -0.914223 0.664792 0.274612 0.804511 -1.178166 -2.077377 -0.749700 0.445930 0.131694 0.482387 0.463680 -0.689272 -0.861300 -1.243680 -2.805565 0.751492 -0.636373 -1.032634 -1.179043 1.576934 -0.878559 0.587843 1.081871 1.861725 -1.000232 2.235145 0.253261 0.921530 0.768168 0.601846 -1.375843 -0.137018 1.388472 2.291427 -0.966299 0.266840 -1.442177 0.158615 -1.927193 -0.529949 -0.509317 1.226630 1.348447 -2.357636 -1.896455 0.079013 -0.292468 -2.930227 0.664298 -1.531379 -0.940257 0.136218 0.999911 1.476360 1.379592 3.379013 -1.435005 0.985828 0.236545 -1.144112 1.251456 -0.103233 1.945647 -1.230015 -1.476390 0.108500 0.005859 0.736518 -0.510325 0.280207 0.151579 -3.090489 -0.769945 -0.018996 0.852428 -0.809285 1.017176 1.887675 1.416844 -2.190100 0.173672 1.963250 -1.039171 -0.408790 0.846376 -2.336392 1.054531 0.578027 -0.115784 1.792198 0.448917 -1.047757 1.554984 -0.824693 0.679875 -1.524856 -0.282725 -1.246735 -0.749330 -1.633744 0.166794 -0.688995 -0.852566 -0.464091 -1.237105 2.164801 -1.429127 -1.733127 2.187646 -0.168887 1.237334 -3.295009 3.390684 -1.133491 1.213072 -0.404724 0.380283 -0.284725 0.515256 -1.239100 0.488252 -0.069365 -0.186661 1.678036 3.282058 1.067468 0.702912 -0.088441 2.721493 -0.764212 2.045907 -0.702995 1.771840 -0.886121 -2.182101 0.657996 -0.170368 -0.950783 -0.726610 1.028787 2.623091 1.287559 0.685438 2.294408 1.305235 2.890388 -0.746542 1.470481 -0.384992 1.701873 -0.937205 -0.907811 1.172185 0.976855 -0.974371 1.443486 -2.831154 -3.990305 -1.632930 -3.611752 0.583548 -1.702736 0.842674 -0.855865 -0.207065 -2.481099 -1.348464 0.654998 -0.360482 1.944519 1.667773 0.429501 1.692695 2.764167 -1.608355 0.186701 0.848934 1.650815 0.166425 -0.900258 -1.812526 1.234035 -1.866134 0.195734 2.571412 -1.045094 0.733524 -0.988668 1.825901 -2.295004 2.917102 0.500927 -0.929243 2.811276 1.575232 2.276495 1.486992 -0.807383 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.074628 -1.180886 3.512171 2.501607 -0.140533 0.121084 1.744633 -1.506536 1.452058 0.387254 -0.502250 0.901278 -2.354976 0.905171 -1.872503 1.697223 -2.425117 -1.756175 -0.562907 -1.331219 -0.324069 -0.970974 2.137690 0.123099 2.342769 0.410711 -1.328845 -1.766445 -2.583811 -1.665281 1.234134 -0.742914 1.419356 -0.254108 -0.898109 -3.514174 1.850202 1.864043 -1.131424 -1.756229 2.246634 -1.463736 -0.183035 -1.010787 -0.328953 0.145184 0.222547 1.237705 1.796913 1.050473 0.742710 0.771382 0.929308 3.445243 -1.989961 1.273031 0.822447 0.000814 -0.785757 0.192591 0.282728 0.163093 0.856823 0.708979 -0.261421 -2.120343 -0.755225 -1.311719 -1.882250 1.418671 -0.518982 0.258545 -1.779524 0.191107 -1.511075 -0.151032 -0.763972 1.725958 2.651513 -1.728536 1.667317 -0.253500 -0.256066 -0.732414 -0.221352 0.534026 0.130477 0.477085 0.192908 -1.520703 -1.579718 0.415360 0.197966 0.246011 -0.661915 -3.087893 1.804881 -1.490705 -2.362788 -0.060242 1.103322 -1.387829 -0.335162 0.523350 -0.030215 1.395838 -1.140092 -1.876486 -0.223891 0.228455 0.718189 -0.553756 0.057383 -0.802580 -0.879300 -1.178064 -2.498617 0.529733 -0.551925 -1.075775 -0.756905 1.313851 -0.519647 0.278561 0.301947 1.417073 -0.849094 1.890421 -0.217344 1.339588 0.969183 0.836090 -0.865557 -0.102621 1.725471 2.119577 -1.429187 0.463801 -1.589528 0.306355 -1.242532 -0.495458 -0.108746 1.228661 1.348385 -2.025837 -1.455252 -0.314857 -0.145357 -2.508319 0.382223 -1.259647 -0.433943 0.403844 1.486838 0.450846 1.693229 3.382014 -1.392717 0.656069 0.619854 -0.946972 1.898500 -0.017701 1.515420 -1.110151 -1.684609 0.744693 0.371738 0.759146 -0.675650 1.201558 0.218899 -2.388697 -0.308566 0.291224 0.796449 -0.863939 1.464812 1.445872 1.073594 -1.494782 0.449556 1.721440 -0.944794 -0.025060 0.413728 -2.560816 1.132655 0.481911 -0.031706 1.745463 0.309837 -1.330484 1.464889 -0.828858 0.526385 -1.559052 0.404194 -1.307066 -0.691449 -1.560750 -0.040043 0.003339 -1.152964 -0.671705 -0.687380 2.345433 -1.332101 -1.278300 1.481087 0.008211 0.506937 -3.161391 3.267553 -1.432583 0.989732 -0.192675 -0.001327 0.288928 0.554593 -1.875220 -0.154314 0.667206 -0.430650 1.541112 2.831526 1.233806 0.005452 -0.319350 2.186538 -0.392568 2.086815 -0.736662 1.758837 -0.427735 -1.742333 0.493040 -0.426182 -0.714181 -0.844444 0.671967 2.817986 1.079261 1.041997 2.040412 0.999199 3.128106 -1.061359 1.714059 -0.506400 1.701772 -0.555328 -0.723069 0.764821 0.923686 -0.588779 1.915815 -2.683634 -3.717041 -1.276875 -2.985662 0.987007 -1.454513 1.049452 -0.942166 -0.141008 -2.801074 -1.742654 0.245184 -0.711602 1.856446 1.646652 0.383335 1.251755 1.764250 -1.442791 0.417661 0.202416 1.714806 0.571680 -0.959280 -1.340188 1.349910 -1.779867 0.139865 2.533692 -1.156116 0.672665 -0.873089 1.640506 -1.721242 3.035994 0.555955 -1.014974 2.629774 1.361369 2.025556 0.771602 -1.086090 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__miter_base(int**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.090136 -0.251670 0.665673 0.509658 0.030368 0.003709 0.406774 -0.220953 0.393630 0.224799 -0.085117 0.051449 -0.526169 0.141520 -0.091674 0.418338 -0.389413 -0.362875 -0.024780 -0.260554 -0.019499 -0.227089 0.454230 -0.126570 0.449235 0.018739 -0.174298 -0.425321 -0.459830 -0.245494 0.303470 -0.225265 0.310698 0.148860 -0.197899 -0.634567 0.340936 0.279286 -0.250621 -0.337564 0.396248 -0.287569 0.157239 -0.177316 0.109437 0.119384 0.123878 0.157670 0.411341 0.270522 0.267063 -0.039133 0.171094 0.542531 -0.479266 0.204592 0.074611 -0.078613 -0.182684 0.042665 0.061485 -0.014832 0.228665 0.179459 -0.107183 -0.424211 -0.220957 -0.330541 -0.491794 0.224334 -0.142919 0.123854 -0.429369 0.001636 -0.083077 -0.117905 -0.628931 0.307190 0.553311 -0.351609 0.393308 0.037424 0.013887 -0.147983 -0.043617 0.154007 -0.034152 0.055977 -0.052087 -0.169700 -0.212985 -0.014736 0.040242 0.084683 -0.032071 -0.364753 0.314037 0.103628 -0.423856 0.045942 0.198794 -0.097383 -0.190366 0.186357 -0.055215 0.368510 -0.276164 -0.421905 -0.053280 -0.064633 0.185791 -0.082095 -0.070826 -0.247038 -0.306672 -0.338632 -0.474719 0.010064 -0.169481 -0.302778 -0.189358 0.258555 -0.203777 0.043781 0.082727 0.258205 -0.199669 0.500601 0.038458 0.323210 0.286877 0.011251 -0.517531 -0.019947 0.389141 0.605772 -0.158639 0.137678 -0.352380 -0.029987 -0.284802 -0.104762 0.191893 0.266888 0.454954 -0.412470 -0.253271 -0.019003 0.042675 -0.509921 0.203803 -0.292160 0.251304 0.067860 0.292811 0.122047 0.393683 0.828355 -0.375705 0.130263 -0.028233 -0.211477 0.401908 0.255345 0.359787 -0.205479 -0.222717 0.073626 0.184323 0.031030 0.001289 0.143422 0.075074 -0.523005 0.040653 0.060764 0.099196 -0.275451 0.247786 0.222770 0.258208 -0.242693 0.074452 0.375127 -0.067884 -0.009206 0.143136 -0.496985 0.304870 0.051757 -0.136330 0.141528 0.055647 -0.252559 0.231491 -0.270406 0.090184 -0.272898 0.065583 -0.244234 -0.121551 -0.319621 0.072010 -0.074318 -0.322790 0.023237 0.109857 0.438939 0.099692 -0.104332 0.166440 -0.019879 0.001865 -0.498017 0.860477 -0.327613 0.124048 -0.237316 -0.065795 -0.015801 0.277561 -0.212674 -0.161406 0.135561 0.009106 0.256635 0.584540 0.280899 -0.068298 0.008200 0.471930 -0.014410 0.385079 -0.024315 0.342052 -0.098241 -0.153118 0.185040 -0.090391 -0.068971 -0.119351 0.007251 0.653107 0.287352 0.087608 0.406324 0.096045 0.579572 -0.201829 0.337433 -0.024723 0.499995 -0.085994 -0.081923 0.135821 0.181627 -0.144023 0.312688 -0.487224 -0.669958 0.110557 -0.427497 0.088505 -0.041319 0.144091 -0.118808 0.065925 -0.488332 -0.265606 -0.066094 -0.179108 0.277336 0.137182 0.049564 0.258432 0.356617 -0.267894 -0.103436 0.011339 0.244812 0.099444 -0.125328 -0.209650 0.255859 -0.439878 -0.039791 0.401399 -0.230304 -0.014202 -0.123677 0.477346 -0.328178 0.600661 0.101073 -0.072982 0.662805 0.346434 0.539656 0.107546 -0.171658 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_base(int**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -0.622467 -1.705876 3.777121 2.486801 0.064591 0.961322 0.695170 -1.112612 0.916424 0.860358 -0.815065 1.736122 -1.786196 0.237628 -0.771812 0.653714 -2.235442 -1.724952 -0.346149 -1.027496 -0.392434 -1.193756 -0.062740 1.678770 1.651829 0.437597 -1.424815 -0.073625 -3.103438 -2.810522 -0.166165 -0.470268 1.334984 -0.619793 1.005101 -3.291133 2.034901 2.305907 -0.269789 -2.428241 1.317262 -1.189370 -0.031603 -0.179539 -0.336916 1.219371 1.187866 0.401359 1.332629 0.874659 -0.020105 -0.112376 0.730395 2.364497 -0.545095 1.524915 1.413691 -0.910918 0.162830 -0.202551 -0.119884 -1.034690 0.748894 0.409782 -0.803500 -1.567183 0.263949 -0.297684 -1.203332 1.262377 0.195103 -0.874899 -1.305197 -0.786945 -2.549557 -0.357780 0.961068 1.422482 2.780427 -0.926030 2.252926 0.192578 0.916339 0.260262 1.274979 0.271211 1.349203 0.497021 -0.857141 -0.469486 -1.855459 -0.431700 -0.300132 1.408348 -0.882349 -1.139742 1.071246 -3.289929 -2.291620 0.870394 0.229192 -1.367075 -1.385804 0.028844 0.816538 1.206176 -0.526771 -1.896005 -0.417505 1.105791 -0.520379 -0.424686 0.454993 -0.949533 -0.652463 -0.350429 -2.104668 0.813573 0.770546 -0.701903 -1.034399 2.179354 -0.433738 1.052045 0.203532 1.350312 -0.659110 1.481365 0.494894 0.967568 -0.332784 -0.476272 -1.865184 -0.359253 0.605855 0.412307 -1.612385 -0.420166 -0.566911 0.617676 -0.688463 0.443203 -1.018806 2.115518 1.671316 -1.430428 -1.485426 -1.247709 -0.974398 -1.886242 0.032224 -0.683662 -1.687114 0.325095 1.461593 0.473889 0.829413 2.337032 -0.875532 0.468428 0.141192 -0.865887 1.210760 -0.929686 1.221171 -1.430355 -1.138847 1.177621 0.813616 1.096884 -0.011167 0.036690 0.626844 -1.504854 -0.632169 1.139065 0.871423 0.572992 2.121456 1.930648 2.206367 -1.268761 -0.349062 0.902082 -0.976052 -0.364740 0.247749 -1.835362 0.889975 0.826966 0.200011 2.755694 0.023618 -1.202534 1.470226 0.011652 0.679964 -1.772114 0.855721 -1.346953 0.374203 -0.870820 -1.025434 -1.160376 -0.877807 -1.716531 -1.382390 2.610670 -1.418115 -2.594963 1.524900 -0.479012 1.516407 -3.591229 1.497441 -1.342114 1.870972 0.103357 0.166684 0.042436 0.222355 -1.307355 0.782195 0.703370 -1.039389 1.580683 1.754152 1.005028 0.244822 -0.159543 1.621771 -0.426970 1.124090 -0.937192 0.991017 -0.662565 -0.448485 -0.219830 -0.373188 -0.255790 0.248702 0.205101 0.183801 0.916189 0.374336 0.993536 2.009358 1.373508 -0.668086 0.749651 -0.876626 1.598736 -1.214043 -1.362007 -0.002130 1.352456 0.368602 0.906421 -3.129151 -2.583584 -2.095688 -3.293060 -0.037688 -0.261516 0.506499 0.372339 -0.274838 -2.637660 -1.456180 1.988258 0.190116 2.728320 1.417725 0.190241 1.632070 1.478266 -0.562193 -0.494470 -0.163812 0.807443 -0.246836 -0.442314 -1.644135 1.517120 -1.996526 0.960860 2.482010 -1.528769 1.079848 -0.219177 0.884960 -2.526382 2.816417 1.040891 -1.892965 1.165069 1.262730 1.951685 -0.702807 -1.306113 -PE-benchmarks/tarjan-algorithm.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.291919 -0.319830 1.009497 0.707594 0.045139 0.080284 0.436779 -0.457132 0.629958 0.318439 -0.039797 0.114417 -0.634983 0.186418 -0.191570 0.547185 -0.587095 -0.523927 -0.120595 -0.559319 -0.170707 -0.314788 0.494613 -0.153751 0.555747 -0.147598 -0.362559 -0.438846 -0.682188 -0.524410 0.423416 -0.298477 0.424336 -0.168270 -0.231671 -1.364413 0.610235 0.439073 -0.381182 -0.479098 0.514907 -0.446230 0.194284 -0.178378 -0.033535 0.094860 0.096446 0.019063 0.607694 0.304208 0.449840 0.130804 0.131766 1.126370 -0.725029 0.354213 0.099893 -0.162022 -0.357253 0.175670 0.070200 0.012920 0.379966 0.227338 -0.167129 -0.664177 -0.154960 -0.377971 -0.708739 0.376487 -0.153886 -0.075331 -0.436390 -0.029326 -0.345703 -0.291607 -0.422740 0.373188 0.796174 -0.483737 0.547095 0.002861 0.059735 -0.035370 0.108407 0.173652 0.268902 0.075649 -0.116920 -0.245076 -0.233546 0.099669 0.074332 0.317992 -0.087649 -0.584398 0.457323 -0.099170 -0.653845 0.149873 0.327519 -0.128909 -0.601343 0.010903 0.073861 0.420177 -0.416321 -0.647446 -0.233241 0.070786 0.133428 -0.139321 -0.042217 -0.538318 -0.331261 -0.414147 -0.699325 0.064680 -0.157220 -0.309072 -0.508698 0.504549 -0.341659 -0.037585 0.089535 0.478237 -0.374297 0.616671 -0.122187 0.489890 0.169675 0.048814 -0.884720 -0.225443 0.432223 0.723348 -0.202332 0.029618 -0.547274 0.006530 -0.510643 -0.008959 0.113026 0.478298 0.715234 -0.453093 -0.357837 -0.040403 0.095851 -0.843774 0.206837 -0.423896 0.062700 0.118400 0.461628 0.269656 0.569625 1.067144 -0.428670 0.339053 -0.088256 -0.336354 0.667144 0.033201 0.533890 -0.337995 -0.354099 0.097212 0.241447 0.172004 0.007761 0.121451 0.070725 -0.718238 -0.083464 0.036530 0.196778 -0.238055 0.357491 0.408179 0.795339 -0.666815 0.165520 0.515936 -0.185023 0.037649 0.107105 -0.643668 0.225783 0.223632 -0.258966 0.443705 0.059148 -0.474859 0.203482 -0.267871 0.202883 -0.416833 0.116341 -0.359066 -0.104630 -0.370793 -0.132036 -0.269635 -0.374544 -0.152690 -0.130284 0.677113 -0.204938 -0.444352 0.513511 -0.062062 0.123411 -0.937584 1.125653 -0.485272 0.345339 -0.443020 -0.016080 -0.103832 0.497023 -0.430581 0.109056 0.198231 -0.171243 0.416671 0.968610 0.410301 0.129591 -0.123630 0.710085 -0.077050 0.544473 -0.143013 0.646633 -0.187018 -0.317072 0.161015 -0.158424 -0.110865 -0.161605 0.160299 0.618105 0.440436 0.083997 0.439544 0.386421 0.781162 -0.291051 0.525442 -0.065870 0.574371 -0.121160 -0.144312 0.253594 0.311995 -0.154337 0.374063 -0.772160 -0.880756 -0.150900 -0.733390 0.215882 0.097188 0.081466 -0.138173 0.064993 -0.786509 -0.352433 0.176191 -0.246757 0.595915 0.256291 0.163761 0.401495 0.614402 -0.385336 -0.156111 -0.047891 0.188800 0.096366 -0.260978 -0.402826 0.515288 -0.593723 0.061929 0.567316 -0.291550 0.064871 0.030645 0.465856 -0.477319 0.870836 0.156428 -0.093233 0.883849 0.505468 0.857706 0.079588 -0.268693 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -0.564241 -2.009305 4.351602 2.944994 -0.148244 1.099376 0.796985 -1.235459 0.960141 1.017331 -0.782166 2.060076 -1.992748 0.023091 -0.535952 0.757546 -2.627262 -1.772958 -0.447262 -1.160257 -0.427793 -1.244784 -0.327199 2.178549 1.897583 0.688883 -1.534129 -0.007277 -3.217369 -3.316117 -0.493413 -0.420302 1.545425 -0.647668 1.464377 -3.776693 2.368978 2.808328 -0.272268 -2.862196 1.383163 -1.122066 0.063065 -0.274244 -0.683202 1.469164 1.389922 0.522704 1.318985 1.027944 -0.314087 -0.074728 1.286812 2.629294 -0.160507 1.788839 1.836338 -1.032845 0.328315 -0.429145 -0.053028 -1.239181 0.765159 0.095936 -0.736152 -1.770399 0.126693 -0.221410 -1.239519 1.269410 0.386497 -1.179858 -1.603817 -1.116814 -3.206761 -0.494412 0.775640 1.686876 3.067352 -1.277924 2.505826 0.475915 0.911063 0.525997 1.533197 0.307108 1.537672 0.643195 -0.853812 -0.032072 -2.011072 -0.926683 -0.151629 1.163238 -1.228480 -1.999426 1.195079 -4.080886 -2.710400 1.221773 0.340615 -1.681333 -1.457228 -0.437935 0.910590 1.384876 -0.699342 -2.053169 -0.434303 1.259804 -0.533817 -0.509993 0.596670 -0.661188 -0.485059 -0.171847 -2.471476 1.126736 1.109820 -0.634800 -0.856414 2.491124 -0.290959 1.369792 0.131969 1.401706 -0.766973 1.734376 0.705914 1.117606 -0.643316 -0.425087 -1.588606 -0.484626 0.541635 0.076531 -1.618102 -0.672190 -0.530655 0.893041 -0.508501 0.906930 -0.991000 2.411709 1.660290 -1.314176 -1.577934 -1.640608 -1.715625 -2.062014 0.152994 -0.551343 -1.955493 0.703938 1.611778 0.301343 0.766672 2.040276 -0.805815 0.160947 0.060962 -0.887024 1.236660 -1.008878 1.328811 -1.507880 -1.223214 1.447743 0.965029 1.634171 0.046757 0.055793 0.827014 -1.332790 -0.687303 1.035180 0.934050 0.535373 2.497703 2.301005 2.455496 -0.926195 -0.579555 0.826639 -1.112743 -0.304243 0.230191 -2.012901 0.925788 0.879792 0.214408 3.183076 -0.085720 -1.106049 1.891678 0.026022 0.639752 -1.969964 0.968031 -1.559024 0.435383 -1.006214 -0.947046 -1.504282 -0.934399 -2.218911 -1.668479 3.057490 -1.826364 -2.673124 1.682184 -0.452028 1.802399 -3.744764 1.865533 -1.350538 2.214344 0.238789 -0.011820 0.288362 -0.090530 -1.473743 0.580936 0.808784 -1.235361 1.412636 1.637161 1.058898 0.045929 -0.178024 1.710395 -0.612543 1.406954 -1.271436 1.177811 -0.876685 -0.350113 -0.355046 -0.327770 -0.190265 0.302033 0.211917 -0.034105 0.688843 0.524163 0.871813 2.182314 1.369842 -0.829876 0.830379 -0.812932 1.694046 -1.520795 -1.432268 -0.111535 1.668006 0.525257 1.089242 -3.549384 -2.561265 -2.676812 -3.298028 -0.330328 -0.034148 0.599610 0.431325 -0.495922 -2.746144 -1.851989 2.646421 0.234491 2.217776 1.712889 0.232259 2.049222 1.612904 -0.322648 -0.530634 -0.122181 0.748131 -0.161189 -0.506792 -1.795440 1.748736 -2.245861 1.070925 2.869894 -1.710717 1.396919 -0.503967 1.110486 -2.896488 3.104336 1.062704 -2.338294 1.031535 1.902082 2.082244 -1.135976 -1.510736 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.131137 -0.515222 1.981708 1.408704 -0.059030 0.083277 0.924341 -0.999307 1.071187 0.288900 -0.209352 0.224498 -1.210847 0.469492 -0.878236 1.016873 -1.287111 -0.912945 -0.366425 -1.023795 -0.215445 -0.498064 1.120905 -0.233199 1.251544 -0.028076 -0.618578 -0.978504 -1.339885 -0.680000 0.871223 -0.427802 0.646108 -0.180245 -0.440533 -1.838109 1.123407 0.905709 -0.726254 -0.879226 1.127225 -0.856953 0.013893 -0.517298 0.125704 0.074648 -0.003654 0.738024 1.102621 0.597115 0.567162 0.470605 0.355940 2.045464 -1.344597 0.683744 0.280231 -0.009809 -0.456160 0.413424 0.118953 0.212346 0.432782 0.320099 -0.098685 -1.311545 -0.450909 -0.761299 -0.978046 0.786216 -0.252091 -0.033281 -1.001867 0.036884 -0.735164 -0.230516 -1.452719 0.983145 1.379915 -1.074711 0.814945 -0.058816 -0.056087 -0.277604 -0.005947 0.292795 0.274585 0.207170 0.078519 -0.679820 -0.917975 0.174565 0.224590 -0.190079 -0.379310 -1.814608 0.967420 -0.579918 -1.275615 0.050868 0.751165 -0.622981 -0.240576 0.289693 -0.055900 0.643764 -0.688482 -1.037448 -0.072105 0.171133 0.410748 -0.250286 0.039886 -0.720564 -0.425321 -0.761422 -1.383245 0.348148 -0.362830 -0.434241 -0.594794 0.824322 -0.373999 -0.148824 0.153474 0.768801 -0.609345 1.097925 -0.281505 0.868830 0.492425 0.470936 -1.033466 0.213719 1.007386 1.164027 -0.516862 0.480126 -0.960793 0.140694 -0.903029 -0.107661 0.028730 0.682661 0.658046 -1.115146 -0.716083 -0.074438 0.056780 -1.285804 0.355934 -0.661830 -0.227212 -0.017361 0.835377 0.665007 1.063222 1.688725 -0.821570 0.308449 0.109682 -0.393352 1.165283 0.090828 0.901881 -0.597409 -0.778465 0.226531 0.205921 0.255800 -0.223475 0.580471 0.132771 -1.420510 0.064261 -0.008148 0.398001 -0.652851 0.850389 0.889985 0.514855 -1.034526 0.312260 1.031700 -0.568658 0.026549 0.241744 -1.318639 0.579786 0.367134 -0.041096 0.850551 0.139686 -0.584729 0.559814 -0.523256 0.336420 -0.699286 -0.005001 -0.682872 -0.605593 -0.780086 0.250046 -0.190347 -0.678276 -0.271489 -0.386144 1.224351 -0.552326 -0.525152 0.979179 -0.161180 0.063211 -1.454846 2.012204 -0.836945 0.356888 -0.258888 0.059919 -0.018983 0.639500 -1.137767 -0.008545 0.346650 -0.303199 0.853567 1.668809 0.733919 0.086435 -0.213419 1.314459 -0.431740 1.159494 -0.439812 1.148727 -0.343310 -0.862770 0.310377 -0.240496 -0.410452 -0.558045 0.427811 1.637969 0.542808 0.592870 0.953066 0.496282 1.697009 -0.567402 1.069045 -0.244686 0.742258 -0.286633 -0.320895 0.598379 0.263871 -0.332317 0.870549 -1.488308 -1.837169 -0.540419 -1.271867 0.676194 -0.710912 0.356611 -0.471697 -0.066513 -1.553403 -0.964725 -0.009915 -0.477196 0.465366 0.751219 0.231137 0.647319 1.103115 -0.785584 0.235490 0.065326 0.754039 0.359460 -0.641297 -0.742889 0.992644 -0.969831 -0.017948 1.373573 -0.548788 0.322133 -0.283146 0.938233 -0.894109 1.530931 0.219517 -0.367145 1.487446 1.085646 1.353095 0.473612 -0.538228 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::back() = -0.008397 -0.246573 0.895952 0.610601 -0.324634 0.006583 0.198208 -0.375245 0.378198 -0.530022 -0.191743 0.058209 -0.637135 0.226888 -0.406387 0.154038 -0.936188 -0.454991 -0.227335 -0.341205 -0.041229 -0.259752 0.498420 0.175253 0.453016 0.577489 -0.318093 -0.177484 -0.601166 0.163307 0.640993 -0.197879 0.404776 0.589375 -0.090811 -1.030853 0.412296 0.355186 -0.294236 -0.413316 0.509866 -0.558752 0.040557 -0.678084 -0.271294 0.027119 -0.048043 0.367789 0.445832 -0.045308 -0.202642 0.102834 -0.084593 0.685145 -0.545175 0.194961 0.200002 -0.052804 -0.203295 -0.111265 0.039421 0.132016 0.221462 0.231932 -0.315918 -0.604835 -0.139099 -0.635676 -0.502836 0.453062 -0.111743 0.289414 -0.466477 -0.048783 -0.607324 -0.066509 0.003447 0.652213 0.652816 -0.560760 0.322140 -0.148334 -0.006989 -0.090487 0.027353 0.242963 0.185202 0.101042 0.083200 -0.192570 -0.644629 0.035679 0.098350 -0.182110 -0.108524 -0.732241 0.349078 -0.784172 -0.523219 -0.122244 0.297813 -0.309359 -0.033329 0.175274 -0.009264 0.351821 -0.248356 -0.395466 0.186418 0.111420 0.178567 -0.006893 0.003276 0.141569 -0.229667 -0.665877 -0.717884 0.242491 -0.193531 -0.149738 0.176852 0.439469 -0.342792 -0.091538 0.088378 0.228107 -0.352959 0.809632 -0.167519 0.080990 0.122422 0.053816 0.188023 -0.131344 0.375226 0.985051 -0.432748 -0.123544 -0.338909 0.003770 -0.468961 -0.565490 0.059182 0.068057 0.128792 -0.605510 -0.330053 -0.126528 -0.367975 -0.956623 -0.069082 -0.324889 -0.056454 0.553030 0.396601 0.524514 0.529919 0.994366 -0.338836 0.100445 0.067944 -0.338910 0.529507 0.314825 0.411689 -0.260471 -0.369694 0.250018 -0.342847 0.322782 -0.054156 0.216100 -0.007295 -0.697334 -0.128016 0.273067 0.370780 0.030680 0.407844 0.467234 -0.440789 -0.404481 0.212515 0.494951 -0.191091 -0.063162 0.210722 -0.497792 0.347474 0.156904 -0.165446 0.296233 0.011895 -0.258927 0.167752 -0.142929 0.249396 -0.462164 -0.126566 -0.232396 -0.029228 -0.655567 0.134590 -0.067107 -0.386123 -0.243775 -0.395180 0.608945 -0.498363 -0.335365 0.461990 0.209518 0.570083 -0.712291 0.262191 -0.390600 0.770531 0.045998 0.018993 0.119952 -0.357306 -0.506116 -0.038905 0.141303 -0.055506 0.106641 0.500583 0.446713 -0.014992 -0.052253 0.606727 -0.048236 0.649439 -0.216269 0.343087 -0.113183 -0.409487 0.398203 -0.125799 -0.258664 -0.168120 0.314282 0.983059 0.402492 0.728496 0.751362 0.228910 0.755879 -0.252597 0.093862 -0.159008 0.340813 -0.117469 -0.225802 0.192215 0.499378 -0.142994 0.246036 -0.668995 -1.319755 -0.594107 -0.759590 0.222244 -0.619260 0.127251 -0.101490 0.025463 -0.603095 -0.341820 -0.089890 -0.266642 1.022225 0.255293 0.009969 0.359334 0.584633 -0.653362 -0.051104 0.533583 0.647374 0.139489 0.132625 -0.879784 0.567020 -0.448098 -0.049169 0.926072 -0.483099 0.187158 -0.216112 0.734770 -0.422988 0.864466 0.158201 -0.535028 0.677072 0.289570 0.253021 0.766322 -0.299355 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::end() = 0.310427 -0.258252 1.509167 1.009178 -0.353336 0.049927 0.206996 -0.802826 0.809251 0.036658 -0.344590 0.131472 -0.603809 0.337184 -0.595730 0.758050 -1.238518 -0.461330 -0.253502 -0.766637 -0.295647 -0.292252 0.539422 -0.154533 0.782743 0.482426 -0.360186 -0.200923 -0.425341 -0.708689 0.468527 -0.344653 0.257336 0.096464 0.069291 -1.125922 0.951876 0.503734 -0.502418 -0.625167 0.570800 -0.517770 -0.014836 -0.453743 0.040406 0.177035 0.028532 0.846433 0.734292 0.423397 0.158321 0.236360 0.397335 1.368066 -0.689271 0.441274 0.270069 -0.076445 -0.212847 0.263372 0.124679 0.107870 0.116763 0.196548 0.042839 -0.966732 -0.320396 -0.528584 -0.365280 0.628456 -0.212918 -0.187321 -0.778807 -0.258389 -0.610960 -0.146608 -1.907321 0.887227 0.974918 -0.876302 0.407151 0.083856 0.082589 0.012088 0.105277 0.167533 0.527183 0.234949 -0.023304 -0.148433 -0.238545 -0.181888 0.389438 -0.578539 -0.329876 -1.581916 0.556886 -1.061167 -0.839287 0.168452 0.619789 -0.406829 0.171849 0.053742 0.106267 0.243833 -0.445153 -0.576409 0.295040 0.058441 0.213423 -0.067289 0.070745 -0.248692 -0.101173 -0.117077 -1.075785 0.351240 -0.173868 -0.108863 -0.029707 0.615758 0.150313 -0.228252 0.025242 0.407180 -0.369197 1.006023 -0.208004 0.653596 -0.151390 0.689429 -0.404447 0.708023 0.700568 0.005046 -0.314337 0.313263 -0.458411 0.166802 -0.763763 -0.070189 -0.347996 0.451133 0.343048 -0.638068 -0.610872 -0.175087 -0.517976 -0.939357 0.268322 -0.418018 -0.572732 0.071655 0.594333 0.726684 0.765588 0.632080 -0.637466 -0.097148 -0.123590 -0.025546 0.778248 0.127677 0.631133 -0.414983 -0.322518 0.272316 0.059879 0.193731 0.002140 0.132258 0.203448 -0.908779 0.297251 0.399995 0.458037 -0.319197 0.649174 0.672474 0.241850 -0.398947 0.123411 0.724722 -0.352290 -0.079640 0.246454 -0.778429 0.463843 0.265676 0.389523 0.499403 0.073838 -0.023062 0.217491 -0.287128 0.252234 -0.418605 -0.241259 -0.377318 -0.385109 -0.407964 0.608783 -0.297623 -0.325892 -0.229829 -0.473598 0.830033 -0.891754 -0.102202 0.928196 -0.303500 0.318977 -0.542261 1.086958 -0.595168 0.494680 -0.002513 0.038168 0.033382 -0.096224 -0.783000 0.090644 0.248806 -0.023377 0.268549 0.780920 0.547540 0.075013 -0.099211 0.916573 -0.541017 0.883952 -0.251487 0.723155 -0.268875 -0.349983 0.150960 -0.130629 -0.481939 -0.392872 0.417811 1.080738 0.142442 0.578924 0.629960 0.202928 1.034616 -0.466234 0.686139 -0.258596 0.269180 -0.408798 -0.342661 0.469713 0.237032 -0.244591 0.360515 -1.078249 -1.121936 -1.124963 -0.387738 0.144572 -0.595198 0.245823 -0.347317 -0.099845 -0.697583 -0.706694 0.677459 -0.281542 -0.122510 0.468079 0.092602 0.483033 0.815263 -0.341999 0.065232 -0.037576 0.382640 0.309402 -0.181183 -0.751650 0.899160 -0.644365 -0.102322 1.117470 -0.534094 0.215285 -0.013363 0.617431 -0.623270 0.797068 0.150850 -0.389575 0.765528 1.026644 0.744832 0.439358 -0.450875 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator--() = 0.189103 -0.469855 3.113567 2.228900 -1.164902 0.105364 -0.304418 -1.523999 1.138068 0.150140 -0.505464 0.609349 -0.708100 0.456388 0.581880 1.504503 -2.909343 -0.525395 -0.505905 -1.468733 -0.811926 -0.355071 0.509514 0.230809 1.311628 1.624666 -0.932039 0.209823 0.289864 -2.201210 0.532520 -0.631639 1.025374 1.099608 0.788283 -4.002830 2.095316 0.797654 -0.742835 -1.293363 0.824259 -0.571269 0.114123 -0.797106 -0.954014 0.793475 0.241857 0.815805 1.306327 0.801677 -0.194235 0.200985 1.158112 2.163486 -0.467238 0.633726 0.637907 -1.111518 -0.635300 -0.176654 0.298655 -0.123246 0.601969 0.251909 0.054058 -2.055300 -0.188947 -0.956471 -1.087827 1.195577 0.060226 -0.905198 -1.223998 -1.084353 -0.982040 -0.523446 -1.577999 1.933530 1.780611 -1.420719 0.797175 0.093400 -0.085999 0.277263 0.514430 0.270826 1.623026 0.506629 -0.104190 0.264081 0.405062 -1.662033 1.038630 -0.202023 -0.531224 -2.040900 0.587334 -2.077211 -1.384217 0.716672 1.296505 -0.692208 -1.195508 -0.962844 0.733314 0.625198 -0.394674 -0.874275 0.261241 0.125236 -0.153723 -0.234557 -0.673952 0.026693 -0.485312 0.395307 -2.160886 0.902489 0.011441 0.161339 0.060942 1.156077 0.237145 -0.445199 -0.133843 0.933153 -0.875715 2.092179 -0.445486 1.228159 -0.218432 0.875028 0.103319 0.607527 0.925804 -0.318357 -0.377445 -1.009820 -0.911628 0.437883 -1.543268 0.241385 -0.301062 1.589149 1.881531 -0.368601 -1.402464 -0.566949 -1.671774 -2.343735 0.420414 -0.944842 -0.719252 1.451266 1.077793 0.773665 1.268070 0.658515 -1.258349 0.166344 -0.576508 -0.108937 1.543349 0.515738 1.154767 -0.906788 -0.186756 0.799387 0.050526 0.872388 0.199276 -0.185412 0.620503 -1.229495 -0.390719 1.434608 0.864375 0.319712 0.761960 1.347627 2.773683 -0.190073 -0.075248 1.184502 -0.527535 -0.393257 0.652986 -1.045353 0.468609 0.454131 0.397152 1.557164 -0.068209 -0.335443 0.072264 -0.032609 0.231225 -0.763731 0.012028 -0.555625 0.561329 -0.512678 -0.069880 -1.124479 -0.493527 -0.878120 -0.861491 1.898944 -1.984326 -1.103108 2.162919 -1.363987 1.392842 -1.716670 1.969949 -1.092154 1.207290 -0.818685 -0.560847 0.005591 -1.242837 -1.498244 0.839377 0.450540 0.199915 -0.314963 1.470844 1.038887 0.050803 -0.523156 1.445978 -0.552864 2.040452 -0.363698 1.591033 -0.663788 0.490846 -0.308280 -0.104840 -0.965063 -0.498217 0.489642 0.918050 0.150548 1.001155 0.831438 0.691484 1.495160 -0.976151 1.313551 -0.346765 0.575626 -0.791976 -0.905264 0.956609 1.320383 -0.249918 0.514075 -2.033325 -1.687766 -2.631169 -0.895547 -0.792106 0.469597 0.762104 -0.445122 -0.372018 -0.751192 -1.005452 2.228972 -0.074551 0.811189 0.778005 0.075072 1.158996 1.494922 -0.262109 -0.612251 -0.447336 0.183771 0.543660 0.091236 -1.903365 1.940043 -1.059963 0.019046 2.243962 -1.160173 0.568964 -0.291524 1.544302 -1.304148 1.462182 0.167144 -1.016083 1.098601 1.631534 0.546835 0.197818 -0.955109 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.148122 -0.189396 0.772426 0.558679 -0.116434 0.038016 0.063439 -0.360402 0.356672 0.161255 -0.070991 0.136224 -0.324044 0.153834 -0.071630 0.437590 -0.519722 -0.253456 -0.157096 -0.399789 -0.172265 -0.130819 0.278294 -0.063114 0.376824 0.171534 -0.286900 -0.096927 -0.233652 -0.582860 0.165327 -0.181041 0.288195 0.009349 -0.025675 -0.902704 0.495757 0.337272 -0.256214 -0.334375 0.318031 -0.202704 0.088760 -0.133750 -0.174664 0.147900 0.022552 -0.086673 0.370135 0.242501 0.243467 0.121845 0.252753 0.629159 -0.311200 0.222003 0.120872 -0.167855 -0.222724 -0.002870 0.076933 0.043354 0.193603 0.084308 -0.015506 -0.530118 -0.151375 -0.226166 -0.394216 0.263784 -0.184160 -0.166673 -0.292094 -0.201104 -0.252654 -0.179180 -0.355741 0.299951 0.500878 -0.350478 0.269971 0.001190 -0.061426 0.034767 0.070960 0.113454 0.212914 0.119612 0.003418 0.003573 0.214528 -0.067463 0.180234 0.223322 -0.166103 -0.407262 0.333821 -0.301135 -0.402618 0.166204 0.310995 -0.131427 -0.363196 -0.124287 0.013230 0.252298 -0.239744 -0.326572 -0.016972 0.032761 0.198570 -0.094899 -0.136702 -0.191288 -0.182960 -0.039575 -0.531968 0.156350 -0.084909 -0.109840 -0.168333 0.303961 -0.034217 -0.091422 -0.006455 0.317815 -0.277745 0.545494 -0.112019 0.397503 -0.123538 0.221327 -0.323724 -0.072731 0.295267 0.138103 -0.186989 -0.105597 -0.343344 0.006751 -0.349629 0.037066 -0.043692 0.309377 0.604841 -0.184174 -0.304298 -0.066890 -0.268839 -0.691377 0.082217 -0.285596 -0.056615 0.271317 0.295547 0.170281 0.387133 0.607993 -0.283855 0.056644 -0.088509 -0.246957 0.451290 0.031104 0.329070 -0.222038 -0.198147 0.185892 0.105310 0.183237 0.091060 0.062745 0.094846 -0.402503 0.016578 0.287886 0.185006 -0.079232 0.229307 0.313429 0.619017 -0.141723 0.041984 0.333394 -0.141595 -0.008043 0.094992 -0.373052 0.092638 0.140711 -0.059917 0.332822 0.025733 -0.157253 0.118210 -0.180132 0.130911 -0.283074 0.125300 -0.205873 0.094246 -0.233167 -0.087428 -0.193651 -0.161291 -0.119874 -0.169420 0.483131 -0.374955 -0.219831 0.412406 -0.028105 0.170191 -0.491906 0.596639 -0.310136 0.416123 -0.233516 -0.044914 -0.003071 0.001902 -0.318326 0.095470 0.140370 -0.018594 0.050557 0.532188 0.272587 -0.029460 -0.138917 0.457636 -0.125524 0.517796 -0.086035 0.454299 -0.108458 -0.081877 0.064028 -0.069936 -0.237288 -0.188604 0.097436 0.326563 0.161096 0.135359 0.218580 0.173985 0.541780 -0.236441 0.392319 -0.029447 0.305233 -0.151970 -0.161155 0.239679 0.384005 -0.081946 0.162451 -0.508490 -0.519818 -0.428000 -0.373939 -0.002747 0.125020 0.111055 -0.144343 -0.054902 -0.277843 -0.312517 0.502632 -0.138024 0.425544 0.161168 0.090311 0.289838 0.401430 -0.168176 -0.105924 -0.129934 0.086036 0.165959 -0.048271 -0.341386 0.430448 -0.314704 -0.079551 0.467427 -0.262017 0.128096 0.098857 0.261031 -0.317417 0.516437 0.054909 -0.111612 0.560639 0.379847 0.394322 0.038312 -0.206563 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.030971 -0.534112 3.689031 2.585290 -1.093533 0.124847 -0.031637 -1.880698 1.479275 0.413230 -0.240911 0.681280 -0.810499 0.673387 0.180417 1.990954 -3.040441 -0.668667 -0.711690 -2.089670 -1.050674 -0.239376 0.846609 -0.208405 1.628213 1.076641 -1.209520 -0.350421 0.037631 -2.497298 0.928100 -0.767047 1.213740 0.172951 0.329682 -5.506866 2.476931 1.023896 -1.154621 -1.415579 1.195596 -0.668144 0.166676 -0.737999 -1.237193 0.479158 0.045174 0.521805 1.585326 1.061276 0.330911 0.825352 1.366200 3.684623 -1.055960 0.844195 0.617182 -1.087942 -1.042372 0.144134 0.379700 0.144368 0.769753 0.123258 0.365978 -2.604733 -0.413163 -1.096995 -1.445428 1.217522 -0.046967 -1.120439 -1.171893 -0.926344 -1.170565 -0.851635 -1.919319 1.950786 2.040849 -1.793400 0.931256 -0.040081 -0.297241 0.464538 0.475002 0.461586 1.591759 0.601486 0.096050 0.121291 0.755619 -1.071656 1.258580 0.006462 -0.744264 -3.157385 1.100461 -1.627999 -1.626050 0.965090 1.709545 -0.740541 -1.590522 -1.528181 0.574037 0.790255 -1.001329 -1.143419 -0.178216 0.176496 0.233296 -0.404909 -0.604215 -0.606993 -0.451353 0.148988 -2.438033 1.067081 -0.127140 0.177185 -0.576127 1.367438 0.156617 -0.750961 -0.200215 1.414737 -1.354213 2.260919 -0.751254 1.677234 -0.419354 1.280584 -0.603902 0.238219 1.257940 0.125472 -0.332942 -1.083183 -1.537775 0.486339 -1.764273 0.520180 -0.052837 1.775318 2.408074 -0.333204 -1.476896 -0.480973 -1.224394 -2.823852 0.439093 -1.174120 -0.832669 1.550921 1.295354 0.860528 1.680332 1.020997 -1.290311 0.543668 -0.721416 -0.374479 2.035689 0.183288 1.388512 -0.993324 -0.456324 0.630821 0.207060 1.117947 0.186055 0.015728 0.626512 -1.510536 -0.281514 1.038385 1.046981 -0.203309 0.782017 1.580878 3.752139 -0.809741 -0.021434 1.441182 -0.936799 -0.197053 0.563779 -1.331140 0.154333 0.747768 -0.159804 1.890501 -0.002645 -0.713973 0.199787 -0.296838 0.276517 -0.733776 0.146620 -0.723411 0.193111 -0.573520 -0.260334 -1.326626 -0.470943 -1.059533 -1.192556 2.215580 -2.687325 -1.158352 2.484154 -1.237169 0.954120 -2.247117 3.110791 -1.315909 1.237149 -1.188333 -0.551782 -0.145737 -0.395621 -2.015881 1.125757 0.556801 -0.152452 -0.107865 2.442864 1.237226 0.203405 -0.866522 1.969941 -0.798707 2.412700 -0.543727 2.280386 -0.868235 -0.029411 -0.327474 -0.142926 -1.140859 -0.911890 0.881999 1.046461 0.120388 0.984097 0.719026 1.037309 2.099758 -1.142887 1.856207 -0.354314 0.752326 -0.733162 -0.800658 1.275998 1.538982 -0.284021 0.763865 -2.380657 -1.890280 -2.962667 -1.044296 -0.268227 0.862751 0.578471 -0.780335 -0.432818 -1.300736 -1.283313 2.369377 -0.429579 0.625437 1.151454 0.339706 1.326649 1.821207 -0.446457 -0.487985 -0.647352 0.132356 0.853757 -0.267690 -1.917211 2.282762 -1.263739 -0.111377 2.400065 -1.009353 0.685208 0.146880 1.528884 -1.328777 1.943127 0.098009 -0.790377 1.661455 2.162319 1.215091 0.128892 -0.966292 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::pop_back() = 1.531601 -0.726389 7.058717 4.616921 -2.107732 0.257746 0.004012 -4.104898 3.131025 0.453635 -1.350390 0.645213 -1.708091 1.141820 -1.536738 3.192971 -5.879440 -1.334698 -1.719239 -3.890558 -1.708611 -0.979198 1.734762 -0.226318 3.287229 2.529010 -1.843830 0.098942 -0.339394 -4.781523 1.520401 -1.036631 1.279126 0.364554 1.126782 -6.207301 4.805463 2.330465 -1.901161 -2.543264 2.132601 -1.162479 -0.892695 -1.120461 -0.972344 1.130432 -0.254040 3.222939 2.963361 1.914936 0.493258 1.208572 2.247870 5.767773 -1.898238 1.774932 1.157987 -1.073647 -0.892106 1.126813 0.496195 0.492730 0.308800 0.580121 1.036962 -4.363075 -0.306632 -1.664735 -1.526566 3.154214 -0.459868 -2.420158 -2.544776 -1.927146 -2.637573 -0.446745 -5.742516 3.991430 3.839007 -3.202917 1.340646 0.226595 -0.348165 0.194578 0.291856 0.236841 3.162071 1.098311 0.352880 -0.518115 -0.022465 -2.089128 2.109440 -1.810212 -1.861532 -6.368183 2.387753 -5.482241 -3.299693 0.948393 3.234088 -2.339073 -0.459997 -0.965421 0.886316 0.456679 -0.915311 -1.835055 0.916716 0.782702 0.121680 -0.175863 -0.412644 -0.456671 -0.229099 1.148153 -4.629237 2.162954 -0.512908 0.488549 -0.250834 2.452596 1.119701 -1.359873 0.012380 2.233063 -1.612227 3.685656 -1.292435 3.155864 -0.930147 3.501558 -0.256402 2.556561 2.553933 -1.742102 -0.780716 -0.183734 -1.895750 1.177831 -3.494674 0.866622 -2.181796 2.394518 2.318611 -1.878491 -2.868449 -0.776544 -3.085737 -4.226959 0.718689 -1.809773 -3.492568 1.029662 2.355177 2.857304 2.788689 1.384580 -2.874789 -0.296928 -0.602185 -0.110480 2.907200 -0.232935 2.343096 -1.801380 -1.106189 1.196220 0.013163 1.539957 -0.177449 0.192003 0.890926 -3.313101 0.371487 2.403411 1.722303 -0.468463 2.052098 3.493972 3.742716 -1.371685 0.239085 3.033481 -1.866917 -0.751311 1.280619 -2.977973 1.074397 1.225329 2.164945 3.385787 0.127106 0.289430 0.619473 -0.799443 0.633277 -1.699984 -0.638351 -1.418336 -0.360734 -1.201489 1.285897 -1.901753 -0.717502 -1.554611 -2.615649 3.629991 -4.856256 -1.743409 5.288503 -2.267192 1.709611 -2.745926 4.122212 -2.131151 1.954953 -0.292423 -0.116670 -0.027837 -1.690526 -3.910043 1.463389 0.692935 -0.058055 0.768365 3.653249 2.098333 0.316710 -1.238797 3.684215 -2.669262 4.363777 -1.590772 3.431130 -1.306267 -0.942737 -0.633763 -0.342461 -2.658646 -2.024862 1.747008 2.843530 0.068190 2.344066 1.896592 1.101686 4.058450 -1.822522 3.560025 -0.788843 0.285903 -1.816006 -1.822443 2.769337 1.481261 -1.140719 1.499930 -4.687216 -3.895224 -6.138298 -2.102114 -0.253024 -1.852790 1.643117 -1.596957 -1.145488 -2.212297 -3.225382 4.611174 -0.357213 -0.131782 2.307336 0.342854 2.015164 3.559269 -0.892033 0.641674 -0.895408 1.134642 1.400014 -1.192091 -3.377629 4.410788 -1.978557 -0.314694 5.140428 -2.295494 1.758173 -0.437284 2.077797 -3.094235 2.882261 0.354889 -1.723387 2.458593 3.822736 2.236363 1.216717 -1.978867 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_pop_back_aux() = 2.418695 -0.605600 8.449298 5.684099 -2.994820 0.291814 -0.770123 -5.172990 3.391475 -0.060291 -1.446978 1.342140 -1.364492 1.862308 -2.549783 4.301842 -7.280482 -1.057710 -2.262427 -4.919105 -2.395485 -0.324142 1.774780 -0.463921 3.931103 3.362122 -2.348063 0.239729 0.065746 -5.556669 1.492423 -1.166351 1.153441 -0.308678 1.432830 -7.646484 5.833763 2.765361 -2.580962 -2.968261 2.618415 -1.608242 -1.051168 -1.837015 -1.569710 0.875695 -0.747331 3.738212 3.342280 2.350245 0.226594 2.738649 3.284342 7.799255 -2.092582 2.232185 1.680281 -0.970779 -1.214721 1.231618 0.719854 1.080436 0.092244 -0.166195 1.666849 -5.828691 -1.348318 -1.914300 -0.833741 3.231877 -0.674292 -3.095589 -3.134122 -2.405127 -3.597650 -0.809559 -8.820068 4.952892 4.061265 -4.573266 0.888780 0.054273 -0.757618 0.904718 0.872620 0.497901 3.807367 1.645746 0.895431 0.042703 1.129212 -1.989402 3.287068 -3.187267 -2.821001 -9.689949 2.891043 -7.160275 -3.940077 1.562085 4.282776 -2.898591 0.440498 -2.193614 0.779012 0.314068 -1.833978 -1.837542 1.691191 0.867355 1.105890 -0.603151 -0.340399 -0.645960 0.501897 1.645963 -5.701457 3.234805 -0.308843 1.246902 0.084371 2.952474 2.351378 -2.249605 -0.577140 2.474984 -2.350288 4.854921 -2.149090 3.886326 -2.403490 5.320570 0.225896 4.092968 3.234728 -3.311892 -1.347556 0.071743 -2.485461 1.519183 -4.060906 1.235752 -2.740655 2.895641 2.259826 -1.530598 -3.423528 -1.104048 -4.215804 -5.022835 0.792876 -1.824085 -4.925926 1.472503 2.806849 3.497298 3.639246 0.278033 -2.685188 -1.017661 -0.811277 0.330231 4.124793 -0.566176 2.728358 -2.114796 -1.286804 1.812700 -0.288306 1.956777 0.004570 0.778856 1.353400 -3.503041 1.268859 2.809632 2.646305 -0.893267 2.947268 4.128979 4.121707 -0.899920 0.106332 3.327971 -2.828249 -0.492154 1.072128 -3.093309 0.794579 1.802659 2.681125 4.147627 0.147003 0.675234 0.599072 -0.721014 0.967436 -1.519651 -0.925194 -1.591825 -1.183680 -1.101499 2.187420 -2.043720 -0.466993 -2.221192 -4.011259 4.414152 -7.634722 -0.924569 6.301812 -2.665569 1.818156 -2.538729 5.059904 -2.655154 2.621989 0.137183 -0.117942 0.297442 -2.224461 -5.411759 2.146452 1.157884 -0.302013 -0.000358 3.936417 2.511088 0.348560 -1.747889 4.326890 -3.773921 5.580896 -1.919977 4.690573 -1.697247 -1.115617 -0.703240 -0.234074 -3.706531 -2.910002 2.726150 3.468295 -1.012380 3.504890 1.537900 1.321286 5.124534 -2.583171 4.452829 -1.414588 -0.473072 -2.386729 -2.203876 3.427185 1.847750 -0.742534 1.413303 -5.524610 -4.108287 -9.060203 -1.032670 0.339137 -2.026379 1.574532 -2.371162 -1.747318 -2.370865 -4.208818 6.268814 -0.963052 -1.817529 3.160859 0.630579 2.437616 4.072985 -0.647048 1.087179 -1.438013 1.060300 2.433384 -1.054132 -4.147260 5.602179 -2.072626 -0.829220 6.244432 -2.439525 2.337143 0.436508 2.111327 -2.962061 3.040167 0.031589 -2.206230 2.627376 5.850844 2.144766 1.392426 -2.381593 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.049607 -0.755540 2.458496 1.676237 -0.214392 0.164291 0.851035 -1.070987 1.164823 0.232095 -0.392155 0.532442 -1.352677 0.498231 -0.952075 1.055137 -1.768282 -1.125701 -0.336864 -1.067996 -0.425903 -0.640951 0.987988 0.057760 1.369190 0.410686 -0.840808 -0.785988 -1.493000 -1.161922 0.806344 -0.520464 0.825002 -0.084614 -0.204617 -2.677278 1.362011 1.132320 -0.737994 -1.243236 1.193661 -0.993232 0.005355 -0.648437 -0.119855 0.217691 0.235826 0.922146 1.170424 0.631410 0.379895 0.392764 0.442887 2.468529 -1.204059 0.851167 0.608884 -0.177621 -0.517242 0.239796 0.203533 -0.025745 0.563757 0.447963 -0.261516 -1.445262 -0.336059 -0.893304 -1.120152 0.979851 -0.117736 -0.143072 -1.110571 -0.169652 -1.084548 -0.303134 -1.090740 1.208976 1.812810 -1.243596 1.121777 0.001796 0.174020 -0.159583 0.187993 0.306466 0.647969 0.323340 -0.104188 -0.687983 -1.006632 0.001193 0.220977 0.044018 -0.443051 -2.036400 1.054257 -1.259982 -1.563959 0.191152 0.759145 -0.724517 -0.478185 0.175549 0.239831 0.788101 -0.743049 -1.223280 -0.174522 0.224688 0.160583 -0.283111 0.089323 -0.587948 -0.491469 -0.657047 -1.738999 0.429982 -0.170810 -0.513881 -0.541198 1.092384 -0.332706 0.055579 0.133900 0.869674 -0.622140 1.396127 -0.155757 0.849608 0.307016 0.482806 -0.957445 0.144345 1.020961 1.128120 -0.788563 0.136138 -0.892835 0.257979 -0.999234 -0.198646 -0.266753 0.985255 0.978345 -1.194202 -1.023730 -0.390955 -0.263696 -1.670669 0.301634 -0.824704 -0.507386 0.235871 1.044698 0.718254 1.115152 1.898311 -0.985356 0.488425 0.096438 -0.442824 1.249783 0.059639 1.065821 -0.797408 -0.879943 0.458866 0.270215 0.522805 -0.215140 0.399339 0.230218 -1.565397 -0.215374 0.368723 0.619701 -0.389119 1.042832 1.088849 1.065425 -1.232690 0.236101 1.080657 -0.605227 -0.087271 0.332185 -1.507749 0.690179 0.428288 0.068613 1.237975 0.153209 -0.768704 0.671066 -0.393662 0.379630 -0.947016 0.102857 -0.806212 -0.423319 -0.855151 0.176000 -0.441378 -0.683874 -0.594628 -0.684863 1.610759 -1.075032 -0.993205 1.249672 -0.267856 0.583897 -1.993659 1.975960 -1.001989 0.812727 -0.314629 0.001847 0.033662 0.289975 -1.219767 0.219039 0.456897 -0.337244 0.842386 1.789095 0.867197 0.210855 -0.201065 1.479489 -0.424744 1.305153 -0.492580 1.217560 -0.405069 -0.893220 0.232060 -0.292968 -0.438664 -0.406991 0.514751 1.614958 0.690846 0.696601 1.189809 0.774181 1.770616 -0.744463 1.034082 -0.333892 1.008258 -0.498806 -0.539521 0.503313 0.611512 -0.330977 0.938576 -1.868768 -2.226789 -1.136820 -1.741952 0.432019 -0.655748 0.474109 -0.446339 -0.084902 -1.742170 -1.058387 0.596116 -0.411845 1.121207 0.947003 0.255671 0.940226 1.290088 -0.862180 0.001850 0.118498 0.804022 0.273651 -0.525874 -1.132396 1.172162 -1.205358 0.178834 1.746734 -0.820724 0.435594 -0.321010 1.190860 -1.175212 1.911145 0.404460 -0.794121 1.473076 1.180190 1.546294 0.422360 -0.780497 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::deque() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_base() = -0.422402 -0.197699 1.578721 0.432520 -0.654569 -0.278359 0.828702 -0.684907 0.741040 -0.587305 -0.069896 -0.352785 -1.158898 0.231582 -0.375751 0.239878 -1.352828 -0.777384 -0.335529 -0.914970 -0.588688 -0.661828 1.098424 0.064967 0.709024 0.557120 -0.236500 -0.456767 -0.168416 -0.660461 1.041829 -0.296115 0.498303 0.730042 0.113278 -2.211142 0.697866 -0.155943 -0.529982 -0.284969 0.833505 -0.009375 0.031077 -0.172694 -0.318407 0.187853 0.441783 1.216086 0.883214 0.528279 0.294716 -0.537566 -0.154844 1.388754 -0.784517 0.191098 0.410752 -0.183390 -0.311405 0.201939 -0.293096 -0.410741 -0.052605 0.566578 -0.329223 -0.335616 0.482177 -1.141145 -1.082904 1.011277 -0.034434 -0.130676 -0.666620 -0.578806 -0.545350 -0.184712 -0.483994 0.896938 1.442675 -1.052777 0.500869 0.054700 0.234726 -0.283442 -0.443333 0.043194 0.304552 -0.057313 -0.212601 -0.346911 -0.818999 -0.283989 -0.445962 -0.089760 0.288433 -1.305546 0.702399 -0.892948 -0.834164 0.096229 0.297273 -0.255677 -0.644578 0.240985 0.277811 0.207099 -0.523896 -0.901667 -0.508994 0.043572 -0.091539 0.756797 0.218517 0.286993 -0.518202 -0.587141 -1.311783 0.219889 -0.377817 -0.632879 -0.210063 0.575970 -0.570283 0.543570 0.839111 0.835237 -0.457280 1.360557 0.581974 0.100210 0.437179 0.020069 -0.200526 -0.166813 0.431468 1.332076 -0.092785 -0.288545 -0.479025 -0.078188 -1.030862 -0.531806 -0.053369 0.247071 0.792872 -1.004508 -1.098541 0.217996 -0.410887 -1.705683 0.444745 -0.955695 -0.133691 0.533183 0.099938 0.871802 0.422332 1.539919 -0.781979 0.583196 -0.199135 -0.577375 0.039567 0.409038 0.955200 -0.447180 -0.485594 -0.177170 -0.267040 0.286278 0.018631 -0.580918 0.036532 -1.532293 -0.671626 0.102929 0.446559 -0.285421 -0.075916 0.752641 0.590257 -0.722391 -0.140908 0.938068 -0.208174 -0.414248 0.655302 -0.879508 0.576523 0.041511 -0.228313 0.409574 0.194467 -0.300442 0.777981 -0.411843 0.266335 -0.583081 -0.425670 -0.419118 -0.067458 -0.949106 0.212779 -0.493404 -0.224631 0.117853 -0.401884 0.782297 -0.542744 -0.702432 1.058329 -0.076832 1.065365 -1.276375 1.396817 -0.234714 0.790724 -0.298949 0.102096 -0.310461 -0.330820 0.129475 0.187438 -0.389217 0.395999 0.363507 1.411705 0.324302 0.360716 0.275796 1.317968 -0.177122 0.835647 -0.072947 0.571471 -0.538412 -0.849452 0.492465 0.071506 -0.432427 -0.285219 0.460013 1.158563 0.691180 0.167923 1.329459 0.448964 0.986867 -0.182765 0.284756 0.003533 0.929303 -0.585991 -0.349637 0.530061 0.741875 -0.767078 0.408280 -1.026774 -1.947016 -0.891461 -1.654972 -0.458732 -0.661480 0.420984 -0.370644 -0.034472 -0.494953 -0.204740 0.400812 -0.025835 1.034612 0.627723 0.132632 0.978715 1.640153 -0.792396 -0.318365 0.818313 0.737428 -0.165706 0.097182 -1.097576 0.241356 -0.790190 -0.022124 1.062404 -0.411677 0.167429 -0.695054 1.212798 -1.122848 1.229954 0.251464 -0.354252 1.336539 0.501885 0.684617 1.235296 -0.170472 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.020613 -0.364075 1.593080 1.020165 -0.051065 0.142324 0.484059 -0.919230 0.989565 0.194864 -0.236380 0.171933 -0.856262 0.358357 -0.995030 0.739344 -1.047357 -0.750437 -0.330132 -0.931333 -0.302451 -0.451216 0.704002 -0.185208 0.868731 -0.068916 -0.539793 -0.401772 -1.099846 -0.804952 0.565734 -0.359587 0.336985 -0.538736 -0.229366 -1.353181 1.017071 0.762517 -0.589968 -0.692429 0.780112 -0.750590 -0.015251 -0.350089 0.062380 0.041918 -0.035491 0.506484 0.890565 0.389274 0.547669 0.446111 0.161264 1.786603 -1.088617 0.623121 0.226269 0.044018 -0.362253 0.465406 0.078220 0.174098 0.281386 0.288281 -0.127991 -1.017475 -0.243165 -0.468027 -0.617186 0.712845 -0.334582 -0.235839 -0.694353 -0.058565 -0.878023 -0.248542 -1.162538 0.675532 1.145755 -0.835862 0.606633 -0.013956 0.113090 -0.026372 0.166473 0.164178 0.560610 0.178190 -0.068806 -0.478503 -0.528139 0.341139 0.182616 -0.085363 -0.341132 -1.473725 0.782459 -1.043940 -1.078623 0.099455 0.584480 -0.451277 -0.196238 0.184241 0.096297 0.324665 -0.570040 -0.869314 0.015278 0.251668 0.245006 -0.148027 0.207281 -0.715385 -0.159998 -0.393450 -1.128095 0.264850 -0.223815 -0.283019 -0.547046 0.799313 -0.171105 -0.181463 0.112115 0.632379 -0.460402 0.854924 -0.340521 0.735447 -0.115814 0.559712 -0.991562 0.243183 0.691971 0.414527 -0.468840 0.459965 -0.653902 0.116917 -0.835265 -0.048263 -0.425501 0.509312 0.421311 -0.840187 -0.573189 -0.083137 -0.135078 -1.107279 0.212127 -0.497928 -0.663862 -0.165162 0.711976 0.749597 0.861216 1.230996 -0.555491 0.163581 0.037364 -0.306962 0.968285 -0.301686 0.752475 -0.508442 -0.631043 0.238087 0.166476 0.230258 -0.101561 0.298039 0.072124 -1.138021 0.161147 0.127703 0.417660 -0.358242 0.779089 0.756289 0.394362 -0.997411 0.320007 0.815047 -0.445736 0.057868 0.092604 -0.995376 0.381506 0.421589 0.181362 0.738229 0.125404 -0.364715 0.308949 -0.354757 0.419079 -0.646995 -0.086848 -0.542950 -0.455075 -0.528155 0.259390 -0.265023 -0.430790 -0.300937 -0.616643 0.945764 -0.829894 -0.493037 1.027688 -0.032910 0.248490 -1.075782 1.219556 -0.699274 0.642423 -0.101999 0.249558 -0.042185 0.475365 -0.890039 0.212849 0.288269 -0.324114 0.734613 1.195460 0.598837 0.292793 -0.185049 1.087589 -0.502962 0.856772 -0.392864 0.913342 -0.248594 -0.810273 0.248991 -0.241697 -0.397330 -0.395769 0.498400 1.077055 0.460527 0.420484 0.695258 0.509942 1.278097 -0.454620 0.815339 -0.266199 0.420141 -0.321167 -0.321030 0.489579 0.207072 -0.250329 0.514057 -1.256972 -1.399395 -0.898924 -0.982727 0.570118 -0.683105 0.135115 -0.330772 -0.033840 -1.171094 -0.767243 0.514462 -0.378940 0.462991 0.566839 0.251189 0.519853 0.978343 -0.580168 0.176771 -0.019762 0.453260 0.216222 -0.485425 -0.691979 0.919538 -0.768178 0.045510 1.069903 -0.498437 0.268222 0.121392 0.370215 -0.729948 1.116842 0.240082 -0.279122 1.109166 0.909468 1.197937 0.400953 -0.475299 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 2.600057 -2.661362 16.754493 9.820825 -7.214981 0.473741 0.523615 -7.703761 5.166541 -0.579161 -3.341148 2.315033 -4.030648 1.770260 -1.255421 5.725668 -14.852132 -2.499169 -2.853623 -7.952815 -4.223466 -2.061768 2.497999 1.850270 7.204182 7.506006 -3.512069 -0.407506 1.073345 -8.888694 3.484843 -2.078115 3.577476 2.612357 4.614758 -19.293632 9.425115 4.137254 -3.752859 -6.589864 4.713877 -1.147829 -1.121467 -2.691130 -4.618231 2.223239 0.956015 9.284653 5.161896 3.968835 -1.903345 0.984852 5.634067 15.355938 -1.643443 3.575692 4.434774 -3.373704 -1.734068 0.783494 1.388178 -1.074305 0.503560 0.428786 2.256938 -8.851371 -0.229728 -5.073083 -3.195534 6.153317 1.175794 -5.351382 -5.686346 -5.991297 -6.265266 -1.631363 -12.718636 10.697472 8.983966 -8.604174 3.810435 1.035288 0.192259 1.487689 1.004136 0.850704 6.821498 2.488576 0.568733 0.454167 -0.586104 -6.185501 4.572852 -5.393400 -4.008398 -17.254824 4.987395 -12.062286 -7.342809 3.597878 6.801980 -5.771595 -0.581067 -3.840569 2.389824 1.696832 -3.343663 -4.075564 0.198503 1.870560 -0.716442 0.562487 -0.519580 1.929445 -0.582908 1.385056 -10.420466 5.937000 0.462747 1.131069 1.104033 5.970182 2.299401 -0.865943 0.591027 4.593539 -3.907537 9.894419 -0.103480 5.103152 -2.680976 6.467342 1.880697 5.224288 5.080184 -1.999141 -1.262313 -3.279013 -3.009130 3.132408 -6.237790 1.736392 -3.198418 6.393808 5.327877 -3.339504 -7.098795 -3.480439 -8.448991 -10.277863 1.721216 -3.932212 -7.054156 5.771105 4.461295 6.523261 4.578808 1.443891 -6.411084 0.580852 -2.341129 -0.330768 4.445162 1.226303 5.108882 -4.418209 -1.782272 2.036253 -0.330202 5.375851 -0.059196 -0.949123 2.673821 -6.445050 -0.642706 4.889029 5.512405 -0.622690 4.207552 8.641580 10.320043 -2.285070 -1.778160 5.744802 -4.595705 -2.807945 3.589072 -6.266516 2.392132 2.476575 2.844311 8.097185 0.055281 0.605923 2.820512 -1.717370 0.555624 -3.405288 -1.271212 -3.264092 -0.698958 -2.973495 3.103600 -5.972943 -1.110175 -4.993712 -6.682483 9.168082 -13.481723 -4.012677 10.927084 -5.016933 5.860077 -6.952479 11.473315 -3.840325 5.813872 -0.792683 -1.831782 -0.277842 -5.397813 -7.451160 3.585737 0.721557 0.579704 -0.598695 8.090985 4.315347 0.285995 -2.025766 8.396850 -5.523821 9.327897 -3.560940 7.096572 -3.859600 -1.408106 -1.556172 0.120093 -5.328321 -3.139530 4.396994 5.906634 -0.747814 5.868086 4.558547 3.282016 7.363763 -4.080109 6.070010 -2.188674 2.222618 -4.757644 -4.605199 4.765187 5.994708 -2.223948 2.466104 -11.072031 -9.359889 -16.192874 -4.345623 -2.910599 -2.778902 3.634302 -3.134628 -2.964187 -4.619518 -6.486193 10.761279 -0.700928 -0.652233 5.836053 0.449627 6.679699 8.394831 -1.598439 0.112907 0.250352 2.768528 2.664134 -0.706248 -8.835908 8.686481 -5.771589 -0.042387 12.402166 -4.813110 4.258055 -1.586552 6.796460 -8.021188 7.243462 1.225741 -6.420572 3.748395 10.206864 3.332260 2.544038 -4.591536 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.239800 -0.366758 1.501886 1.113580 -0.692877 -0.018134 0.100848 -0.524864 0.717943 -0.190231 -0.349488 0.125421 -0.583271 0.320870 0.351930 0.759143 -1.680434 -0.382737 -0.007714 -0.499923 -0.302800 -0.324913 0.464766 0.009424 0.633615 1.127585 -0.298512 -0.198651 0.219239 -0.338182 0.795000 -0.522568 0.586338 1.231812 0.271080 -2.284438 0.865990 0.067155 -0.434092 -0.737255 0.365322 -0.422296 0.280551 -0.838626 -0.336706 0.313051 0.298919 1.071038 0.672737 0.349942 -0.419516 -0.218130 0.482380 1.296011 -0.435697 0.211818 0.350939 -0.473873 -0.275134 -0.177458 0.251466 -0.090651 0.366405 0.401804 -0.089756 -0.937189 -0.293132 -0.946203 -0.739418 0.619542 0.143898 0.247590 -0.935199 -0.318607 -0.307405 -0.233297 -1.753006 1.285873 1.154773 -0.986823 0.553808 0.158197 0.248281 0.062003 0.137349 0.329117 0.618322 0.271144 -0.233449 0.188142 -0.256917 -0.900903 0.502253 -0.756907 -0.010949 -1.514194 0.162643 -0.643047 -0.634829 0.332017 0.536594 -0.090518 -0.184545 -0.332538 0.415782 0.520494 -0.471119 -0.549738 0.163937 -0.233847 -0.071689 -0.039532 -0.155958 0.273940 -0.366015 -0.373730 -1.137426 0.187256 -0.101550 -0.203256 0.428169 0.576668 -0.075259 -0.110656 -0.023413 0.221705 -0.424270 1.391196 0.057996 0.430389 0.280745 0.240461 0.104027 0.542658 0.675915 0.716666 -0.055676 -0.425754 -0.421957 0.206949 -0.771990 -0.381597 0.338918 0.546549 0.749515 -0.397586 -0.739482 -0.385279 -0.621906 -1.226301 0.372846 -0.619815 0.133233 0.943941 0.622185 0.563874 0.798322 0.492430 -0.925382 0.252611 -0.489063 0.140262 0.717033 0.979555 0.644943 -0.376004 -0.042749 0.279656 -0.028064 0.340185 0.161151 -0.324687 0.325477 -0.775426 -0.117184 0.611129 0.610610 -0.129012 0.348052 0.492119 0.691425 -0.198590 -0.018182 0.709146 -0.060144 -0.233189 0.483889 -0.672819 0.670556 0.061123 -0.032582 0.258903 -0.058424 -0.277988 0.103464 -0.139970 0.054134 -0.277219 -0.312793 -0.255241 -0.079039 -0.537396 0.604008 -0.545609 -0.443362 -0.281953 -0.106343 0.969096 -0.834341 -0.140371 0.833792 -0.674128 0.752426 -0.682177 1.317115 -0.615142 0.531489 -0.422938 -0.466899 0.010720 -0.609254 -0.545974 0.020276 0.296327 0.273411 -0.275055 0.706705 0.641645 -0.041821 0.070250 0.856462 -0.073191 0.862736 -0.010381 0.611150 -0.377876 0.262263 0.142169 -0.110969 -0.219782 -0.179039 0.319844 1.179288 0.244027 0.743070 0.910088 0.182581 0.720597 -0.552943 0.340624 -0.211925 0.614202 -0.401949 -0.271806 0.228204 0.637193 -0.331438 0.360074 -0.985455 -1.269527 -1.136674 -0.147781 -0.565043 0.063852 0.338110 -0.231020 0.074397 -0.519839 -0.347016 0.462989 -0.274336 0.074650 0.356166 -0.054486 0.667493 0.827374 -0.385218 -0.598024 0.235475 0.321640 0.198862 0.365337 -1.176847 0.873509 -0.812494 -0.009755 1.238717 -0.638918 -0.040433 -0.352490 1.510141 -0.563071 0.976244 0.253001 -0.648078 0.612501 0.966608 0.411864 0.606199 -0.494874 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = 0.211826 -0.331391 1.575723 1.170397 -0.523758 -0.035794 0.382275 -0.537557 0.871916 0.251829 -0.256719 0.012387 -0.608315 0.232965 0.666552 0.951341 -1.493004 -0.358599 0.086479 -0.683057 -0.298387 -0.293532 0.473896 -0.270181 0.762142 0.701829 -0.163317 -0.533664 0.221896 -0.397635 0.767920 -0.561760 0.571313 1.064961 0.218537 -2.335901 0.912908 0.026112 -0.499029 -0.708294 0.399385 -0.393482 0.443626 -0.579656 0.039830 0.369607 0.408871 1.111775 0.810348 0.563677 -0.122680 -0.310595 0.558678 1.449022 -0.600415 0.222711 0.214618 -0.595153 -0.352664 0.059650 0.204827 -0.218879 0.410124 0.286077 -0.017831 -1.020033 -0.327823 -0.910682 -0.799012 0.500876 0.260690 0.053721 -0.985366 -0.316204 0.006765 -0.384359 -2.584899 1.220747 1.117117 -1.003705 0.656685 0.265078 0.256401 0.052347 0.151734 0.323759 0.583649 0.177674 -0.285924 0.172461 -0.281475 -1.020740 0.517086 -0.738891 0.047451 -1.482888 0.170893 0.050283 -0.668280 0.428133 0.595220 -0.022055 -0.384353 -0.285666 0.354108 0.565106 -0.534972 -0.636022 -0.006451 -0.297423 -0.143968 -0.043181 -0.234247 -0.123577 -0.475976 -0.409688 -1.101717 0.195123 -0.139740 -0.191363 0.043250 0.601054 -0.130170 -0.151643 0.027702 0.343515 -0.468414 1.328393 0.094381 0.595790 0.532172 0.130504 -0.612555 0.658156 0.775007 0.782970 0.186797 -0.248119 -0.563555 0.192259 -0.844008 -0.070984 0.580108 0.853011 0.961511 -0.425196 -0.682530 -0.284678 -0.270290 -0.978657 0.627698 -0.592499 0.386118 0.573554 0.609675 0.547275 0.823669 0.427486 -1.017191 0.330474 -0.630635 0.204224 0.793975 1.103340 0.753607 -0.422049 0.128189 0.046125 0.251053 0.180931 0.158736 -0.280453 0.412109 -0.857215 0.000647 0.326461 0.439037 -0.401170 0.333819 0.531643 1.227577 -0.345727 -0.086132 0.750854 -0.108681 -0.236637 0.556853 -0.680744 0.659998 0.093610 -0.155219 0.251169 -0.025217 -0.307416 0.071643 -0.237928 -0.041005 -0.143116 -0.314052 -0.283385 -0.275564 -0.336645 0.622882 -0.714722 -0.538110 -0.180921 0.136983 0.956057 -0.355117 -0.060912 0.764316 -0.983929 0.362859 -0.667944 2.051064 -0.680884 -0.018171 -0.769275 -0.542865 -0.166683 -0.008041 -0.551883 0.040075 0.258234 0.245320 -0.089257 0.981904 0.661238 -0.007759 0.032630 0.940091 -0.156909 0.838759 0.048465 0.765323 -0.493762 0.429453 0.036870 -0.070225 -0.153736 -0.141170 0.197306 1.177233 0.197946 0.452980 0.718798 0.180628 0.731072 -0.524334 0.592096 -0.157053 0.734140 -0.357600 -0.237907 0.339601 0.388223 -0.292218 0.398037 -1.048268 -0.981054 -0.536275 0.026781 -0.496121 0.443754 0.291788 -0.194833 0.105832 -0.681483 -0.337442 0.254586 -0.239677 -0.501266 0.269364 -0.050903 0.657413 0.808893 -0.222592 -0.643777 0.003522 0.126458 0.233642 0.090680 -0.897894 0.883261 -0.934167 0.003113 1.075712 -0.518830 -0.141316 -0.355723 1.605666 -0.626230 0.890491 0.147127 -0.408083 0.720401 1.267271 0.743210 0.249396 -0.416715 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.839070 -0.824392 4.838994 2.031926 -1.090945 -0.051139 2.343173 -2.355453 2.925860 0.165827 -0.752489 -1.150385 -3.106682 -0.051968 -0.331548 0.688543 -3.941018 -2.213945 -0.805272 -2.693114 -1.108443 -2.398843 2.357673 0.067446 2.202341 1.036967 -0.765304 -0.850071 -1.329529 -2.466170 2.775441 -0.946007 1.497564 1.743769 0.453099 -5.832529 2.791144 0.825161 -1.134723 -1.463970 1.797844 -0.503707 -0.259737 0.037612 -0.094836 0.979333 0.867471 3.259587 2.742204 1.031811 1.076364 -1.790851 -0.553724 3.654037 -2.325370 0.894818 0.391537 -1.209736 -0.782230 1.321923 -0.378774 -0.939633 0.618182 2.094379 -0.742519 -1.429502 2.076826 -2.344378 -3.352779 3.249856 0.305575 -1.063890 -1.497181 -1.176142 -1.347571 -0.294652 -0.330442 2.513020 4.083738 -1.565458 2.324286 0.261934 0.745269 -1.065615 -0.705875 -0.108124 2.186396 -0.201086 -0.849603 -1.617064 -3.080560 -1.526662 -0.574000 0.591086 0.454273 -1.869874 1.800310 -2.299861 -2.479173 -0.084976 1.229140 -1.127104 -2.646402 1.224553 1.229293 0.583028 -0.332127 -2.574048 -1.422661 0.659977 -1.875254 1.429015 0.123045 -0.090265 -1.782949 -1.160457 -3.023193 0.317706 -1.050470 -1.256589 -1.335886 2.039234 -1.809717 0.667159 1.805702 2.268245 -0.806601 2.306887 0.532534 1.092086 1.850320 -0.138511 -1.499655 -0.835396 1.297805 3.130609 0.345039 -0.987809 -1.169319 0.357568 -3.142732 -0.560527 -0.747527 1.496348 2.449105 -3.063968 -2.296468 0.329345 -0.512960 -3.952196 0.815553 -2.205328 -0.868043 0.411748 1.333561 2.484768 1.334318 4.044920 -3.049299 1.860814 -0.484063 -1.393834 0.689711 0.789598 2.362727 -1.458578 -1.021772 -0.659139 -0.101945 1.076433 -0.502957 -1.315550 -0.234688 -3.960960 -1.948929 0.682163 0.605907 -0.109195 0.118809 2.695557 3.191634 -3.419765 0.311773 2.915469 -0.381318 -1.322291 1.959366 -2.848122 1.601735 0.408689 0.072927 1.981780 0.275923 -0.934601 1.055131 -1.001458 0.395068 -2.133632 -0.810801 -1.262740 0.590777 -2.026852 -0.102625 -1.957426 -1.257305 -0.452788 -0.836365 2.393470 -0.443869 -3.451182 3.838462 -1.236066 2.391281 -3.985167 3.381375 -1.183716 1.158006 -1.522251 0.170576 -1.007691 -0.150796 -0.803876 0.853938 -0.707910 0.378844 2.319097 4.181486 1.421074 1.103946 -0.118316 3.436099 -0.697951 2.118277 -0.943371 1.647423 -1.094963 -1.701555 0.305914 -0.415475 -0.838474 -0.375790 0.740584 2.573814 2.534052 0.339438 3.320965 1.245877 2.467064 -0.384680 1.554290 0.320712 2.191508 -0.955467 -1.155934 1.759140 1.353663 -2.078169 1.545560 -3.544223 -4.817753 -0.997692 -5.011160 -1.072251 -1.737777 1.419333 -0.247803 0.183538 -2.412305 -0.982056 1.134898 0.420338 3.637315 1.174039 0.109054 1.936923 3.822821 -2.084235 -0.479739 1.337567 1.827103 -0.735465 -1.117882 -2.797572 1.888879 -2.466053 0.803876 3.267767 -1.753382 0.626864 -2.297131 3.123195 -3.772714 3.263429 0.989621 -0.949576 3.026365 0.690761 2.940407 2.321585 -0.993627 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.372193 -0.743402 2.556830 1.817560 -0.072969 0.233445 0.728796 -1.243910 1.429419 0.630500 -0.385598 0.499926 -1.484536 0.410374 -0.150822 1.174691 -1.884086 -1.288796 -0.262703 -1.118130 -0.499251 -0.952840 0.972095 0.132487 1.326914 0.464327 -0.988051 -0.431689 -1.468055 -1.812751 0.705385 -0.663416 1.058624 0.397373 0.027656 -2.825515 1.662618 1.114583 -0.632063 -1.293174 1.079735 -1.056978 0.167997 -0.508828 0.055737 0.672855 0.384304 0.595245 1.494674 0.644467 0.602648 0.005164 0.244746 1.740759 -1.308561 0.841037 0.397544 -0.614687 -0.656394 0.154755 0.151001 -0.211428 0.930050 0.797898 -0.701802 -1.519168 0.073042 -0.792737 -1.609998 1.253622 0.035277 -0.338261 -1.198448 -0.324813 -0.853183 -0.395215 -0.040910 1.122498 2.061971 -0.823016 1.341566 0.069732 0.333363 -0.294610 0.436073 0.143953 1.244565 0.212311 -0.517325 -0.738614 -1.134675 -0.599202 0.092264 0.869630 -0.146346 -0.712452 0.708066 -1.231064 -1.676255 0.159336 0.694903 -0.522136 -1.600134 0.350190 0.740235 0.841471 -0.306924 -1.483338 -0.246348 0.240435 -0.411123 -0.312282 -0.263154 -0.882529 -0.914747 -0.451910 -1.850549 0.175762 -0.177282 -0.647968 -0.855750 1.209132 -0.682787 0.079972 0.221308 1.000915 -0.566981 1.299903 -0.208265 0.998288 0.710459 -0.052955 -1.242983 -0.192571 0.832313 1.118757 -0.687651 -0.281213 -0.988402 0.175508 -1.375213 -0.115481 -0.336140 1.425412 1.676005 -1.203089 -1.149777 -0.270140 -0.263125 -1.917913 0.519450 -1.003113 -0.225963 0.075419 1.152479 0.480568 1.199258 2.189453 -1.231577 0.772769 -0.005777 -0.425604 1.500484 0.192120 1.263609 -0.962643 -0.744600 0.594120 0.458702 0.375906 -0.156426 0.082328 0.264361 -1.705063 -0.718459 0.686330 0.347745 0.146545 0.942494 1.042181 2.109331 -1.329338 0.387263 1.252752 -0.244714 -0.185205 0.460795 -1.513023 0.802673 0.400200 0.201929 1.508210 0.084680 -1.098338 0.393877 -0.120389 0.465493 -1.232926 0.287835 -0.846081 0.287950 -0.811879 -0.393241 -0.691008 -0.898388 -0.548098 -0.330275 1.747418 -0.275755 -1.799152 1.603798 -0.801640 1.060840 -2.517610 1.734943 -1.153663 0.736814 -0.903663 -0.042450 -0.110026 0.114198 -1.113103 0.482071 0.470500 -0.162069 1.024713 1.860920 0.950727 0.368070 -0.231428 1.399346 -0.051684 1.341997 -0.369918 1.342701 -0.388176 -0.313008 0.107558 -0.377193 -0.326760 -0.144062 0.115365 1.190774 1.147172 0.354523 1.283849 0.867207 1.638699 -0.762791 1.167336 -0.204536 1.119294 -0.449938 -0.676112 0.573013 0.637181 -0.433261 1.010756 -1.985066 -2.222674 -0.474250 -2.318887 -0.028400 -0.023163 0.658846 -0.131189 0.049778 -1.686542 -0.775127 0.890650 -0.072697 2.198993 0.652272 0.195799 0.950855 1.457558 -0.893499 -0.468544 -0.176640 0.491564 -0.018305 -0.570409 -1.298969 1.339118 -1.255254 0.481783 1.695860 -1.092253 0.264311 -0.756519 1.414385 -1.407967 1.992804 0.500743 -0.641050 1.651271 0.690788 1.746417 0.163658 -0.864995 -PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -0.408231 -1.677944 2.817525 2.032600 0.235298 0.430827 0.713862 -0.012037 -0.073525 1.157863 -0.981496 1.932650 -1.044449 -0.425209 0.663815 0.425516 -1.439164 -1.536295 0.063354 -0.048013 -0.323620 -0.557773 -0.661323 1.962504 1.503310 -0.156841 -1.206768 -0.197713 -2.119996 -2.118873 -1.394468 -0.058134 1.081384 0.055690 1.425243 -1.615101 0.960590 1.532279 0.253415 -1.848749 0.649639 -0.319900 -0.087535 -0.202445 -0.416691 1.248851 1.819442 -0.180775 0.406836 0.916095 -0.306059 -0.879356 0.806936 1.284761 1.053286 1.159500 1.916442 -1.039879 0.722603 -0.547460 0.339397 -1.763807 0.476252 0.066924 -0.362218 -0.583383 0.031036 -0.294949 -0.207132 0.807408 0.607588 -0.931988 -0.999256 -1.212163 -1.805051 -0.287838 1.047276 1.380928 1.963791 -1.235955 1.908799 0.843465 1.333420 0.045910 0.783796 -0.084039 0.976654 0.473543 -0.656613 -0.060242 -1.419035 -1.770273 -0.644550 1.400932 -0.634086 0.826349 0.778501 -2.624415 -2.007140 1.017945 -0.038616 -0.905259 -1.112070 0.501436 0.652535 1.025740 0.412048 -0.974838 -0.770951 0.414278 -0.783614 -0.329921 -0.269604 0.153562 -0.527801 0.709590 -1.900233 0.711790 1.073207 -0.684682 -0.532376 1.317073 -0.575679 1.689429 -0.012664 0.533865 0.061825 1.079573 1.351008 0.547848 0.427090 -1.107310 -2.167426 -0.101948 0.349270 -0.093710 -1.199705 0.080668 0.351007 0.634079 0.041791 0.977736 -0.453929 2.694378 0.807262 -0.995085 -1.962472 -1.784179 -1.484281 -0.634976 0.251103 -0.580732 -0.693816 0.935301 0.794376 0.409205 -0.243010 1.844740 -0.460797 0.592824 0.334995 -0.479641 -0.032548 -1.242596 0.673638 -1.217261 -0.516825 1.149054 1.173648 0.768261 0.342809 -0.232850 0.889880 -1.012192 -1.489547 1.053525 0.265214 0.730867 1.482462 1.289765 1.792449 -0.744481 -0.678283 0.100279 -0.136401 -0.794277 0.330832 -1.355091 0.938244 -0.100022 0.611738 1.987192 0.201576 -0.781682 1.206737 -0.043095 0.106979 -0.969694 0.979756 -0.838174 0.870915 -0.204557 -0.969086 -1.062994 -0.382542 -0.883739 -0.498477 2.236486 -0.525663 -2.349344 0.639973 -0.404569 1.304600 -2.808900 1.625539 -0.642790 1.620137 -0.075939 -0.590334 0.006661 -0.272437 -0.257547 0.460138 0.497891 -0.643738 0.412924 0.785510 0.293600 0.171968 0.297878 0.651504 -0.050442 0.853127 -0.154924 0.212167 -0.359413 -0.095270 -0.971656 0.024584 0.336164 0.916541 -0.492089 -0.387663 0.438884 -0.004917 0.474315 1.481983 0.500388 -0.904447 0.103935 -0.355869 2.062863 -1.360686 -1.246152 -0.426796 0.697687 0.275891 0.297794 -2.133592 -1.259209 -1.557619 -2.337244 -1.186217 0.028240 0.763076 0.217148 -0.700926 -1.366535 -1.110685 0.982192 0.648472 1.178775 1.000532 -0.006578 1.713697 0.558156 0.295390 -0.698751 -0.403034 0.407304 -0.324103 -0.350058 -1.033050 0.491864 -1.662375 0.921028 1.791552 -0.833037 1.065288 0.156438 0.401420 -2.017613 1.901143 0.750957 -2.342637 0.072517 1.301580 0.492799 -1.762007 -1.333401 -PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -0.686553 -2.047017 2.904863 2.210224 0.219081 0.778414 1.025584 -0.313915 0.727002 1.274273 -1.098330 1.668060 -1.898719 -0.182972 0.552723 0.447789 -1.766335 -1.884472 0.309622 -0.131651 -0.668832 -1.301077 -0.630385 1.980345 1.281979 0.662712 -1.009181 -0.045390 -2.636697 -1.775051 -0.720034 -0.353291 1.263314 0.904343 1.394149 -2.300638 1.222717 1.879150 0.172393 -2.290107 0.516250 -1.049994 0.105576 -0.172934 0.188437 1.224573 1.772622 1.285820 0.689199 0.682019 0.034115 -1.265405 0.474988 1.670584 0.459602 1.527683 1.934375 -0.852395 0.336024 -0.525887 0.372917 -1.711530 1.010371 0.850578 -1.264367 -0.590413 0.382881 -0.593129 -1.055562 0.995461 1.301069 -0.654384 -1.369611 -1.148245 -0.942058 -0.425135 0.439254 1.146982 2.849161 -1.054217 2.618105 1.151573 1.737033 -0.137117 1.363496 -0.137208 1.823317 0.372223 -1.393850 -0.282216 -2.467709 -1.403879 -0.500760 1.408442 -0.567834 0.378501 0.558765 -1.868562 -2.502628 0.866047 -0.294907 -0.749248 -1.183105 1.093172 1.226894 1.045495 -0.000844 -1.742546 -0.825018 0.539877 -1.553168 -0.534678 -0.249340 -0.025700 -0.866164 -0.112135 -2.180338 0.221365 1.185935 -1.218454 -0.488421 1.785898 -0.767655 1.891395 0.152037 0.321044 0.308451 1.327379 1.521872 0.143979 0.689673 -1.506723 -1.823398 0.325473 0.377590 0.668620 -1.270052 -0.320606 0.631566 0.677253 -0.099345 0.613922 -0.636202 2.674499 1.143224 -1.352067 -1.815544 -1.882723 -1.037893 -1.029747 0.601522 -0.995128 -0.647119 -0.157349 1.334444 0.421206 0.021042 2.258454 -1.108793 1.314063 0.281683 -0.090109 0.292543 0.070910 1.141338 -1.456419 -0.850341 1.215238 1.419754 0.530182 0.104057 -0.577696 0.612410 -1.437829 -1.530188 1.113554 0.162961 0.743630 2.011806 1.284357 3.285466 -1.183726 -0.141547 0.281165 0.080293 -0.624186 0.520162 -1.843849 1.229756 0.031070 0.476481 2.394879 0.117405 -1.275513 1.059874 0.218782 0.224531 -1.707488 1.195937 -1.016136 0.606277 -0.657096 -0.039207 -1.232728 -0.880031 -1.164717 -0.144940 2.586919 -0.307317 -2.771388 0.742278 -0.684961 1.789199 -3.126382 1.802241 -1.087063 1.320538 -0.631451 -0.824816 0.112367 -0.303627 -0.168591 0.683669 0.754187 -0.357407 0.895551 1.049438 0.582592 0.475141 0.679134 0.867305 0.149232 0.451534 -0.446032 0.571168 -0.138901 0.030843 -0.509596 -0.502449 0.599319 1.196015 -0.681540 0.430824 1.514523 -0.164012 1.033521 1.213712 0.353486 -0.969467 0.191047 -0.196808 2.197703 -1.369110 -1.065152 -0.731932 0.504945 0.085543 0.826453 -2.592337 -1.878443 -0.352548 -2.824191 -1.239110 0.412097 0.973832 0.737419 -0.106999 -1.995792 -1.044289 1.657849 0.363787 2.850687 0.948727 0.299772 1.873553 1.026074 -0.021314 -1.130674 0.033571 0.441263 -0.850877 -0.169644 -1.215768 0.750761 -1.807805 1.588629 1.875133 -1.161788 0.735249 -1.137552 1.747143 -2.220325 2.511638 1.182050 -2.341412 0.388216 1.054844 1.951419 -1.444893 -1.523890 -PE-benchmarks/the-knights-tour.cpp__solveKT() = 0.794573 -2.664508 5.678973 4.319823 -0.712632 0.502162 1.199504 -1.087698 1.637622 1.031016 -2.074337 2.451945 -2.618780 0.528886 0.962605 1.967816 -4.706519 -2.682461 0.376638 -0.437574 -1.133414 -1.700989 0.356166 2.133685 2.750965 3.095089 -1.744634 -0.370421 -2.321717 -2.897714 0.147661 -1.153996 2.145008 3.340334 2.199342 -4.436149 2.716910 2.033413 -0.264771 -3.672028 1.144128 -1.260405 -0.066258 -1.658297 0.381372 2.181840 2.569090 3.923239 1.662131 1.743382 -1.095019 -1.697475 1.441394 2.606432 0.303494 1.756703 2.890159 -1.558974 0.409059 -1.165236 0.994688 -2.093594 1.264589 1.613989 -1.105955 -2.108014 -0.115308 -2.034131 -1.777616 2.198757 2.062213 -0.040960 -3.168633 -1.670823 -1.085209 -0.079386 -2.117124 3.426076 4.805707 -2.360336 3.366095 1.560563 2.403307 -0.510391 1.101435 0.217033 2.461636 1.104197 -1.678453 -0.468451 -3.725617 -3.584075 0.081959 -0.077031 -0.657624 -1.697847 0.770932 -3.341625 -3.446027 1.146993 0.684539 -1.198161 -0.780458 1.269878 2.089896 1.870976 0.013576 -2.152437 -0.111080 -0.259059 -1.930984 -0.628745 -0.536367 0.815058 -1.612952 0.144908 -4.190897 0.618841 1.096028 -1.524349 0.756543 2.201210 -0.572194 1.911475 -0.083775 0.478183 0.020105 3.070097 2.160753 0.892577 1.869646 -1.049090 -0.891825 2.094934 1.720621 1.251323 -1.739482 -0.725507 0.077204 1.219267 -1.140033 -0.046099 -0.634752 3.634894 2.019620 -2.457555 -3.662734 -2.782946 -2.261393 -2.192178 1.353099 -1.952255 -0.682338 0.704061 2.255173 0.925951 1.166659 2.807461 -2.883420 1.575568 -0.054687 0.762414 1.061724 1.646669 1.946091 -2.067606 -0.803702 2.034492 1.474746 0.680778 0.199031 -1.095098 1.550397 -2.822014 -1.894038 2.538796 0.862679 0.559032 2.503296 1.904016 3.661936 -0.789459 -0.628990 1.533953 0.148563 -1.476560 1.665451 -3.055292 2.765662 -0.375204 1.724967 3.055174 0.190960 -1.608170 1.649575 0.300647 -0.002889 -1.908755 0.735388 -1.336332 0.555668 -1.273968 1.416301 -1.866950 -1.272882 -1.435246 -0.076421 4.204353 -0.963010 -3.335512 1.855623 -2.371143 3.012071 -4.203488 3.215275 -1.952751 1.473081 -0.545496 -1.466639 0.368741 -2.285704 -1.369451 0.413275 1.279505 0.485566 0.526011 1.711354 1.449673 -0.003437 0.873248 1.820081 -0.079237 2.086654 -0.210346 1.109100 -0.752692 0.554527 -0.727516 -0.447483 0.034835 0.716913 -0.637222 2.173394 1.396278 1.315373 2.837803 0.925680 1.714924 -2.148961 0.807963 -0.479406 3.136689 -2.225246 -1.752694 -0.314391 1.064802 -0.710475 1.837267 -4.086272 -3.906158 -1.920254 -3.629411 -2.552474 -0.231444 2.109258 -0.005415 -0.404629 -2.487412 -1.799445 2.240609 0.587463 2.828779 1.978302 -0.219661 2.789794 1.914787 -0.742144 -1.818961 0.110820 1.218665 -0.389820 0.140158 -2.996138 1.939589 -2.830426 1.359886 4.371226 -2.510132 0.785688 -2.761095 4.422973 -3.194583 4.056800 1.629995 -3.846462 0.775674 2.043975 2.562609 -0.639880 -2.529152 -PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -2.270172 -4.646689 8.030146 5.656118 0.282097 1.760012 2.870259 -1.543362 1.424517 3.177511 -1.815356 4.373184 -4.503299 -0.125724 -0.383049 1.629747 -4.539525 -4.268697 -0.196992 -1.896062 -2.176057 -2.371988 -0.940934 4.360673 3.980713 -0.033688 -3.060010 -1.200827 -6.632021 -5.250904 -1.771583 -0.677670 3.220329 -0.926239 2.306384 -8.758610 3.525160 5.201095 -0.407861 -4.999259 2.459524 -2.604357 0.101794 -0.144956 -1.422571 1.750760 3.594952 1.452386 2.208784 1.881426 1.220484 -1.199780 2.105531 7.739366 0.286472 4.060907 4.413008 -2.075735 0.006687 -0.646889 0.647347 -3.667623 2.314494 0.799357 -1.852008 -2.550755 0.508308 -1.352727 -2.334622 2.283393 2.281138 -2.608386 -2.704039 -2.510285 -3.859331 -1.825349 1.582412 2.727779 6.542167 -3.445116 6.019140 1.948824 2.656923 0.338316 3.044967 0.043072 4.027256 0.902311 -2.106850 -0.942272 -3.927887 -1.337077 -0.693166 4.325286 -2.111337 -2.094346 2.697477 -4.954592 -6.534767 2.463111 0.216934 -2.786245 -3.162371 0.736414 1.913223 2.291238 -1.317899 -4.442908 -2.843616 1.726749 -2.343257 -1.411587 -0.329847 -1.227647 -1.363391 -0.204022 -5.605451 1.612924 2.335711 -2.272371 -2.754589 4.722092 -1.148245 3.918393 0.424545 2.301172 -0.389569 3.391242 2.382633 1.278799 -0.047946 -1.822146 -5.158838 -0.863754 1.426847 1.223884 -3.355213 -1.074301 0.076962 1.752418 -0.665883 2.422360 -1.272304 7.165662 3.260942 -2.938659 -4.279300 -3.982069 -2.324422 -3.589196 0.851298 -2.295760 -2.898502 0.415683 3.266959 0.947287 0.518736 5.436183 -1.520083 3.299876 0.827729 -1.610888 1.748086 -2.102192 3.066639 -3.732841 -2.619037 2.602856 3.176765 2.695227 -0.241589 -0.020110 1.381508 -3.547018 -3.292699 1.544726 0.946824 0.881206 4.897999 3.984812 9.971170 -3.944678 -0.195989 1.086905 -1.266760 -1.010431 0.864106 -4.515933 1.655740 0.988534 -0.532679 6.709169 0.554882 -3.446921 3.048922 -0.145885 0.819088 -4.217182 3.146567 -2.650973 0.897245 -1.538209 -1.526651 -3.010833 -1.735803 -3.458382 -2.055870 6.629399 -4.028774 -6.360800 2.670464 -0.509760 3.366063 -8.610572 6.838039 -2.804647 3.874186 -1.830434 -1.925532 0.243296 1.189385 -1.737073 2.803122 1.643189 -2.084412 2.418228 4.312105 1.676682 1.720471 0.257716 3.249652 -0.397869 2.326865 -1.652812 2.801128 -0.580618 -1.704425 -1.682959 -1.003709 0.350948 2.054430 -0.121328 0.681772 2.960876 -0.316599 1.635916 4.275497 2.496301 -2.337953 1.492275 -0.963642 5.160149 -3.252742 -2.872089 -0.618848 2.190637 0.595729 2.209429 -6.979455 -4.743127 -3.179128 -6.736963 -1.298321 1.370040 1.928120 0.902526 -0.842854 -5.770061 -3.312194 4.946377 0.187422 5.725866 3.298558 1.231553 4.755857 2.910472 0.215269 -1.696120 -0.443096 1.344935 -0.803189 -1.172387 -2.958573 2.428973 -4.835710 3.478025 4.745642 -2.421631 2.647760 -0.673884 2.812035 -5.613763 6.417521 2.133682 -5.292955 2.073677 4.197648 4.561775 -3.691425 -3.463333 -PE-benchmarks/the-knights-tour.cpp__main = -0.037619 -0.297992 0.351730 0.320907 -0.008186 0.048204 0.192336 0.007350 0.189443 -0.000514 -0.139211 0.088707 -0.330209 0.072551 -0.024239 0.133536 -0.238364 -0.280864 0.040752 0.028710 0.012224 -0.174650 0.144652 0.070505 0.165768 0.238728 -0.096428 -0.172849 -0.341784 0.067592 0.225750 -0.111853 0.205349 0.370084 -0.010923 -0.324071 0.083278 0.176436 -0.079382 -0.344372 0.115882 -0.173292 0.089317 -0.226682 0.077061 0.114784 0.141068 0.192916 0.076138 0.100055 -0.056654 -0.129430 0.037817 0.229201 -0.110992 0.137591 0.235166 0.021791 0.018158 -0.100913 0.117335 -0.033040 0.134352 0.187458 -0.132528 -0.127141 -0.182742 -0.284562 -0.273929 0.122693 -0.014542 0.223115 -0.290191 -0.066342 -0.071730 -0.021601 -0.453901 0.249072 0.413363 -0.291395 0.305418 0.113452 0.204945 -0.069682 0.028706 0.109729 -0.039034 0.102372 -0.101995 0.019595 -0.297909 -0.108595 -0.026710 -0.090413 -0.060130 -0.165856 0.171632 -0.033205 -0.235846 0.084599 0.011899 0.023724 0.012612 0.181070 -0.006447 0.295211 -0.170657 -0.215987 -0.033993 -0.039808 0.105311 -0.062806 0.002794 0.122785 -0.179143 -0.295137 -0.301101 -0.041212 0.030900 -0.265253 0.123495 0.172124 -0.178703 0.150405 -0.008817 -0.042823 -0.064491 0.405581 0.204431 0.043543 0.196863 -0.131254 -0.236061 0.070384 0.202221 0.541619 -0.155324 0.065788 -0.015485 0.006359 -0.013380 -0.189772 0.123784 0.025209 0.181354 -0.244261 -0.206711 -0.217241 -0.058842 -0.289455 0.072227 -0.211388 0.248328 0.202921 0.198587 0.182316 0.159130 0.576609 -0.293009 0.089466 -0.031307 -0.062436 0.059244 0.339278 0.137662 -0.094940 -0.182036 0.124097 0.093870 0.011067 0.119619 -0.057285 0.046725 -0.263536 -0.041941 0.177047 0.125176 -0.129613 0.212216 0.099644 -0.188552 -0.106919 -0.006024 0.107254 0.027554 -0.030211 0.074154 -0.328663 0.290666 -0.052686 -0.043269 0.006630 -0.004060 -0.114349 0.179991 -0.152199 0.030353 -0.147067 0.046447 -0.154943 -0.088424 -0.296320 0.228457 -0.047898 -0.183142 0.002198 0.094302 0.310162 0.073692 -0.038517 -0.034231 0.084804 0.104819 -0.241774 0.259355 -0.154002 0.244251 -0.020630 -0.085724 0.028206 -0.037940 0.011141 -0.239500 0.146894 0.009230 0.006289 0.208759 0.126798 -0.128850 0.164734 0.210600 0.040825 0.099439 -0.017664 0.063950 -0.033893 -0.061568 0.177091 -0.089618 0.106217 -0.016558 -0.051389 0.491561 0.213152 0.159385 0.322227 0.013000 0.187820 -0.162123 -0.011095 0.022515 0.393526 -0.120736 0.002247 -0.124495 0.151886 -0.096208 0.111032 -0.241023 -0.473765 -0.007122 -0.244943 -0.096468 -0.111186 0.065772 -0.021756 0.049156 -0.240929 -0.160711 -0.122716 -0.152372 0.266721 0.073440 0.026331 0.237781 0.185542 -0.223883 -0.144808 0.183797 0.187740 -0.042715 0.088381 -0.195215 0.085571 -0.244536 -0.014687 0.298791 -0.134812 0.009335 -0.086959 0.459574 -0.151476 0.465535 0.174421 -0.244544 0.244115 0.172612 0.313170 0.133312 -0.163052 -PE-benchmarks/graph-coloring.cpp__Graph::addEdge(int, int) = -0.142363 -0.811098 2.215602 1.619710 -0.636782 0.228613 0.459885 -0.810670 0.410840 0.109393 -0.373545 0.623246 -1.127401 0.290007 -0.362976 0.743894 -1.859922 -0.705471 -0.384409 -0.879338 -0.505775 -0.381822 0.388413 0.687176 1.153720 0.775113 -0.693760 -0.403430 -0.827671 -1.048432 0.293489 -0.323767 0.873141 0.686163 0.246690 -2.705831 1.113969 1.017997 -0.516628 -0.855101 0.865750 -0.709616 0.002999 -0.692775 -0.869187 0.246668 0.333599 0.445175 0.846397 0.372809 0.119897 0.024934 0.921110 2.154699 -0.404119 0.801101 0.747055 -0.480291 -0.136825 -0.164039 0.157690 -0.258094 0.471997 0.142335 -0.081827 -1.204235 -0.324332 -0.851116 -0.633141 0.789679 -0.005135 -0.238845 -0.969121 -0.549605 -1.161596 -0.477081 -1.054677 1.233688 1.530773 -1.308845 1.053169 0.207913 -0.007529 0.014155 0.443610 0.307560 0.829903 0.311989 -0.038779 0.124269 -0.157994 -0.344501 0.408076 0.322179 -0.598715 -1.737554 0.804313 -1.618709 -1.468856 0.507362 0.577249 -0.790915 -0.264730 -0.286595 0.051687 0.432220 -0.712610 -1.000635 -0.131038 0.196424 0.144182 -0.238204 -0.225197 0.121154 -0.209555 -0.183194 -1.612949 0.614247 -0.001828 -0.351960 -0.118621 1.076528 0.219659 0.296016 0.083721 0.658435 -0.563526 1.518597 -0.061221 0.662951 -0.270901 0.493337 -0.395845 -0.115593 0.851966 0.394777 -0.716788 -0.496702 -0.468115 0.360122 -0.661907 0.162493 0.077261 1.333545 0.846437 -0.688902 -0.967203 -0.607047 -1.009743 -1.691984 0.131871 -0.683235 -0.650511 0.873349 0.853366 0.497938 0.724476 1.103375 -0.446221 0.350883 -0.056758 -0.487685 0.932676 -0.069266 0.869972 -0.764551 -0.639056 0.636973 0.134059 0.935973 -0.006855 0.233734 0.267095 -0.980965 -0.372222 0.599337 0.567001 -0.193819 1.060462 1.118937 1.678721 -0.572765 0.226054 0.728735 -0.493062 -0.130454 0.389388 -1.111071 0.528167 0.326023 -0.418132 1.137461 0.060872 -0.464493 0.592246 -0.371175 0.295117 -0.987249 0.285008 -0.570900 0.083407 -0.854741 0.042235 -0.508414 -0.586601 -0.614883 -0.641723 1.575706 -1.899247 -0.559972 1.114075 0.117535 0.773879 -1.557942 1.928100 -0.790216 1.218575 -0.410591 -0.636320 0.222031 -0.113480 -0.848235 0.406124 0.379440 -0.373419 0.116558 1.159690 0.700488 0.196309 -0.147515 1.258339 -0.258081 1.208771 -0.468041 1.043533 -0.159539 -0.487643 -0.114357 -0.218327 -0.477574 -0.113817 0.518653 1.068007 0.488099 0.669579 0.633252 0.810598 1.252347 -0.632595 0.536112 -0.355917 0.916611 -0.741864 -0.671008 0.334642 0.914095 -0.094061 0.561641 -1.731443 -1.688449 -1.757496 -0.811455 -0.248276 -0.013599 0.580469 -0.112759 -0.211652 -1.186296 -0.985465 1.203102 -0.429225 0.529994 0.824110 0.261457 1.086866 1.052814 -0.108267 -0.262207 0.069648 0.789926 0.368340 0.118303 -1.284740 1.084975 -1.182063 0.334686 1.573178 -0.764205 0.629014 0.106867 1.262524 -1.219833 1.575339 0.267333 -1.159573 1.084719 1.587109 0.457487 0.165061 -0.736008 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -0.723211 -9.672089 20.288844 14.938968 -3.924007 3.896385 3.407545 -5.789933 3.649450 2.611600 -5.579842 8.885126 -9.999184 0.352357 0.204035 3.680365 -16.314514 -8.406335 -1.472327 -4.723453 -5.304991 -5.538749 -1.955162 11.429948 9.137487 9.624123 -6.592822 0.300161 -11.154472 -11.002367 -1.388188 -1.498814 7.571563 8.929070 8.435083 -18.866101 9.503284 10.935293 -1.047848 -11.637576 4.796353 -6.401637 -1.105355 -4.542061 -3.191329 5.798831 6.570799 8.444795 5.573298 2.927465 -2.323056 -3.426454 5.776702 13.429113 1.632875 8.410360 10.220846 -5.356400 1.876775 -2.721684 1.711532 -6.710258 4.628338 2.745642 -4.588791 -7.672070 0.920867 -5.697614 -4.389627 7.909840 6.150112 -4.966222 -8.867768 -7.588614 -9.375231 -2.648763 -3.827164 11.090586 15.093661 -9.399154 12.188010 4.620365 5.789413 -0.216169 7.576780 0.072100 12.236741 2.887242 -4.207110 -0.432191 -11.027828 -8.553875 0.695723 3.533061 -5.583700 -7.068772 4.717495 -17.932615 -14.902610 4.805976 2.234200 -7.465312 -4.359498 2.132231 5.411585 3.923018 -1.087216 -8.874749 -2.002887 4.074045 -6.533112 -2.507587 -2.022198 2.556629 -2.736953 0.620576 -14.681290 5.362676 4.868018 -3.222792 -0.653883 11.077578 0.114298 6.609738 0.453025 3.289944 -1.159589 10.660257 4.063936 2.415659 0.793044 -1.933977 -3.961033 3.381108 4.636930 0.934562 -7.908356 -4.471116 0.977339 4.899760 -3.744657 2.734560 -4.192012 15.177137 5.482117 -7.526517 -10.957668 -9.877226 -10.051696 -10.106758 1.712921 -5.456164 -7.650136 3.720994 8.066713 5.116594 2.582789 8.113721 -6.026074 5.060386 1.209508 -0.626451 4.512926 0.760784 6.961644 -8.547892 -5.098440 7.491595 3.475590 6.663374 -0.518714 -0.934784 3.389202 -8.160767 -7.810422 7.976426 3.311510 3.684856 12.109382 10.663581 17.420879 -6.508234 -0.049095 3.835086 -2.899912 -3.631659 3.867250 -9.974060 6.471693 1.700562 2.230361 14.903960 0.050052 -4.716221 5.360573 1.055148 1.989644 -9.776245 4.270804 -5.647052 2.315917 -5.332268 0.492694 -6.943461 -4.933939 -8.336828 -5.719611 15.946527 -11.752352 -12.911489 9.664004 -4.410769 11.047972 -16.812553 10.494434 -6.596186 8.719564 -2.345809 -5.452604 1.237322 -5.286887 -6.047502 5.069496 3.894061 -3.442136 2.585185 7.511327 4.826981 2.711150 1.012332 7.529536 -1.753333 7.530500 -4.710762 6.525753 -1.591505 -1.096692 -3.409492 -2.338521 -1.067790 3.383692 0.254062 5.822102 6.073575 4.822776 5.730192 7.432884 6.001655 -6.132142 2.427131 -2.649835 8.398246 -8.519256 -7.714806 -0.254022 4.910714 0.193958 4.627402 -16.728465 -13.584767 -11.513542 -12.865772 -5.797782 -1.032336 6.564519 2.276870 -2.716987 -11.252705 -8.527606 12.065761 0.658464 10.897235 7.287540 1.375627 11.084739 8.264281 -0.414640 -3.760612 0.967284 5.062566 -0.996940 -0.108993 -11.513695 8.853476 -9.728927 7.300066 15.304012 -7.948682 6.979988 -5.288468 12.104731 -13.299070 14.326669 4.744548 -15.041515 3.083438 10.342633 6.387397 -3.458068 -8.948406 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/graph-coloring.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/graph-coloring.cpp__main = 0.743356 0.119377 4.147161 1.083469 -0.394036 -1.430595 2.423175 0.737298 1.232425 -0.711130 -1.274698 -2.685155 -1.890373 -0.869813 1.069544 0.026203 -4.720430 -2.484055 -0.152753 0.511418 -1.513872 -1.986785 3.097990 -0.513283 2.120445 4.244263 -2.252173 -1.383293 2.455256 -0.533031 3.973091 -1.361525 1.335017 5.652781 -0.583594 -6.475526 3.436519 -1.610889 -0.555188 2.509885 1.501969 1.466588 0.175295 -2.262969 -1.455339 1.278440 2.465035 6.050497 2.270868 1.345646 -0.550853 -4.800256 0.168682 3.700244 -0.214101 -0.623023 1.406166 -0.223044 0.320827 -0.042364 -0.096156 -2.248282 -0.611738 2.504983 -0.163524 1.927252 2.989990 -4.907322 -2.243828 3.593569 -0.215767 1.518534 -1.337840 -0.476541 -0.250071 1.198274 0.906547 3.515220 2.787586 -3.007437 1.561361 0.473148 2.936657 0.755137 -5.272486 0.838794 -1.958662 0.053328 -0.746518 -2.079984 -4.998193 -3.393406 -1.524971 -4.016227 0.627563 -3.856927 0.235394 -2.417061 -1.111226 -0.890668 0.061888 -0.259999 0.396258 1.121898 2.185015 -1.106911 1.684654 -0.361335 -0.401602 -1.172904 -3.783483 3.820188 0.690209 1.545015 -2.002115 -0.304301 -3.522728 1.847660 -2.082995 -1.066768 1.982853 1.683119 -2.504610 1.333599 1.663214 0.700661 -0.917569 3.322045 2.815396 -0.435041 2.248771 0.772580 2.159150 -1.029279 2.214499 4.538114 0.111980 -3.055721 -0.779711 0.218249 -3.334243 -2.226880 0.353145 -0.970917 0.924457 -4.102009 -4.268942 -0.752288 -3.364385 -5.031696 1.377741 -1.108711 0.263926 3.579495 1.100287 3.471038 1.432998 3.413556 -4.430653 0.858208 -1.428931 -1.029078 -2.506422 2.479287 1.482564 -1.064112 0.248176 0.200619 -0.511954 0.561276 -0.512168 -3.090403 0.950623 -3.864568 -1.032544 0.393674 -0.569226 0.079012 -3.496982 1.623491 -0.536923 -2.309915 -0.696028 3.606730 0.881614 -2.579053 4.046869 -1.545122 3.064583 -1.031054 -0.921527 -0.211622 1.096606 -0.755271 1.838630 -1.370641 -1.210504 -1.193222 -2.383879 1.147762 0.052255 -1.825940 1.137965 -2.278948 0.466883 0.698516 -2.175330 1.377756 0.336062 -1.104693 1.656358 0.624067 2.008326 -0.265141 3.553390 -0.657077 1.535463 1.295881 -2.478678 -0.109474 -3.745291 1.812321 -0.666635 -2.403744 2.339020 0.364157 2.385451 1.917805 1.327947 0.435146 1.958964 1.018825 2.767384 1.054621 -2.737713 -1.978286 -2.373257 0.775341 0.248252 -0.686853 0.286417 -0.440988 3.371526 2.527231 1.824939 5.163803 0.222799 2.409843 -1.092964 -2.922968 0.686370 3.277094 -1.415109 -1.898169 1.125942 1.576773 -2.820342 0.475100 -2.195050 -4.552562 -3.098294 -4.518624 -3.276193 -2.827712 0.869495 -1.911191 0.090093 -0.512173 0.437172 -0.263025 0.530623 1.248363 1.644481 -2.019869 2.629441 3.318421 -3.996646 -2.318632 4.847281 2.340738 -0.162953 2.346080 -6.477349 2.784291 -1.392412 -0.056458 3.256979 -4.075482 -0.212695 -2.414462 3.246015 -3.083833 3.405239 0.203355 -2.027026 0.665909 -2.257704 1.000393 3.574996 -1.059213 -PE-benchmarks/graph-coloring.cpp__Graph::Graph(int) = 0.692269 -1.244844 3.506913 1.851015 -1.308601 0.339172 1.204345 -1.000455 0.625089 -0.291419 -0.729784 0.919786 -1.462076 -0.256313 0.201414 0.078171 -3.328404 -1.166654 -0.409280 -0.927012 -1.015144 -0.829841 0.313475 1.377666 1.733907 1.777576 -0.539013 -0.520772 -1.380910 -0.523509 0.556903 -0.162742 0.750329 2.097356 2.118593 -2.749548 1.353011 0.789002 -0.207828 -1.777241 0.813692 -0.039710 -0.170455 -0.626550 -0.090767 0.635207 1.035652 2.570358 0.928941 0.575710 -0.710720 -1.245153 0.257827 2.651771 0.619888 0.882439 1.619015 -1.141407 0.721717 0.167642 0.286350 -1.252460 -0.083773 0.343150 0.003560 -0.568120 0.492492 -1.876895 -0.383207 1.675851 0.998848 -1.242425 -1.276438 -1.775827 -1.817374 -0.083316 -2.556553 2.866678 2.433365 -2.020001 1.533652 0.323412 1.150349 -0.363046 0.926332 0.044550 1.782717 0.425304 -0.366870 0.304874 -2.082897 -2.181838 -0.036989 -0.618934 -0.503165 -1.462410 1.142455 -2.878669 -1.924225 1.024968 0.706550 -1.055731 -0.230868 0.475206 0.665278 0.471511 -0.660959 -1.183525 -0.665994 0.512592 -1.161013 0.658925 0.342505 1.231534 -0.870247 -0.224100 -1.673493 1.046842 0.656021 -0.200751 -0.029279 1.855185 -0.501380 1.078375 0.149899 0.277860 -0.312222 1.906961 0.804129 0.154971 0.387447 -0.087152 -0.454914 0.857210 0.734928 1.376718 -0.101848 -0.175162 0.277153 0.974010 -1.101004 0.278208 -0.679677 2.125538 0.072799 -1.553088 -2.375685 -0.849851 -1.659726 -1.771094 0.190379 -0.680335 -1.101418 1.155460 1.127030 2.254503 -0.143511 0.791525 -1.108597 0.197453 -0.112662 -0.393390 0.022062 0.311064 0.934918 -1.319310 -0.289164 0.211673 -0.283915 1.153400 0.328663 -0.545137 0.250203 -1.722290 -1.367305 0.729866 1.194909 0.136012 1.001646 2.047473 0.576955 -1.256664 -0.921278 0.998024 -0.375877 -1.227732 0.824636 -1.284944 1.124807 -0.000843 0.462754 1.461247 0.068774 0.090388 0.967294 -0.276093 0.320793 -0.863317 -0.545120 -0.569158 0.244058 -0.811912 0.667614 -1.228900 -0.541454 -1.087454 -1.364153 2.362905 -1.654503 -1.768477 2.148945 -1.058409 2.239339 -1.778525 2.001621 -0.619333 1.306742 0.138954 -0.284774 -0.098495 -0.737060 -0.733417 1.071771 -0.209418 -0.074937 -0.111710 1.446705 0.636286 0.449977 -0.001416 1.515626 -1.128552 1.149202 -0.483981 1.046440 -0.667333 -0.519872 -0.363624 -0.018678 -0.306711 0.177432 0.321065 1.442703 0.152585 1.283789 1.283389 0.667835 0.749309 -1.060993 0.140150 -0.062005 1.322201 -1.371668 -1.344858 0.670460 1.104817 -0.142978 -0.055397 -2.349364 -2.328127 -2.443136 -1.827235 -1.355630 -1.268259 0.962776 -0.090536 -0.608656 -0.936145 -1.080413 0.719789 0.342558 0.112475 1.239070 -0.142830 1.910125 1.640015 -0.398561 0.062099 0.744766 1.300507 -0.151953 0.001329 -2.239289 0.882888 -2.521375 0.643797 2.652918 -0.676938 1.369578 -0.762324 2.598861 -2.596534 1.509466 0.739954 -2.348113 0.239592 2.309937 0.634620 0.719970 -1.392323 -PE-benchmarks/graph-coloring.cpp__Graph::~Graph() = 0.256314 -0.477906 2.471757 1.613705 -0.717891 0.117453 -0.091676 -0.897171 0.829631 -0.028229 -0.849852 0.575613 -0.787934 0.035529 0.416175 0.673704 -2.298714 -0.809070 -0.223270 -0.766046 -0.352769 -0.551330 0.110380 0.744866 1.140785 1.157884 -0.733268 0.425186 -0.494938 -1.442673 -0.041217 -0.393613 0.634038 1.034616 1.111404 -1.570503 1.442866 0.661237 -0.257906 -1.157743 0.634601 -0.685902 0.060727 -0.774784 -0.224611 0.993333 0.720726 1.035970 1.060416 0.438991 -0.554534 -0.463434 0.351869 0.859659 -0.166107 0.553668 0.693852 -0.885080 -0.034498 -0.089776 0.070725 -0.659458 0.273748 0.333653 -0.493589 -1.218374 0.154919 -0.671715 -0.458801 1.169990 0.157470 -0.652741 -1.204234 -0.961678 -1.287532 -0.156194 -0.784648 1.741205 1.502008 -1.049639 0.814334 0.249241 0.567684 0.037402 0.499983 -0.005854 1.462049 0.237048 -0.386814 -0.050911 -0.912110 -1.712888 0.260088 -0.280485 -0.211118 -0.548517 0.254747 -2.688425 -1.380702 0.269842 0.652103 -0.706475 -0.604752 0.298335 0.826078 0.498439 0.340876 -0.750267 0.501562 0.256157 -0.666799 0.063607 -0.272513 0.100509 -0.413038 0.266756 -1.779956 0.705434 0.173937 0.003788 0.189444 1.078638 -0.258887 0.155179 0.131310 0.545971 -0.261788 1.528362 0.090303 0.629901 0.134211 0.031996 -0.286289 0.840878 0.502189 -0.289753 -0.556174 -0.080416 -0.233835 0.334483 -1.229297 -0.072302 -0.694732 1.494868 0.603393 -0.932380 -1.308659 -0.675727 -1.654649 -1.323038 0.353511 -0.511287 -0.849401 0.755100 0.760597 1.051247 0.688367 0.888257 -0.957450 -0.114896 -0.142519 -0.025426 0.906818 0.071921 0.939725 -0.882249 -0.058958 0.741728 0.020780 0.468055 0.077302 -0.198180 0.535679 -1.264380 -0.489769 1.254796 0.603388 0.806960 0.982466 1.188593 0.650942 -0.355754 -0.088254 0.864543 -0.170117 -0.616401 0.600590 -0.900138 0.897048 0.256234 1.010732 1.186294 0.014931 -0.112512 0.172882 0.124409 0.371388 -0.798236 -0.246877 -0.489726 0.579557 -0.373954 0.055676 -0.880505 -0.543807 -0.664764 -0.732619 1.516612 -0.792122 -1.399577 1.603283 -1.080687 1.671710 -1.420613 0.776634 -0.807307 1.218497 -0.132235 -0.089298 0.010145 -1.264686 -0.865620 0.507685 0.231701 0.178732 0.116994 0.560545 0.764471 0.200801 -0.000408 0.974935 -0.393958 1.368411 -0.176838 0.570823 -0.490560 0.351900 -0.134303 0.002785 -0.539995 0.212178 0.168181 0.764197 0.369715 0.891701 1.003048 0.647092 0.885073 -0.678572 0.535224 -0.485966 0.616305 -0.826480 -1.031731 0.465253 0.627831 -0.122110 0.196233 -1.829716 -1.654652 -1.839898 -1.341760 -0.713270 -0.680213 0.631694 0.016221 -0.307016 -0.743742 -0.771912 1.182709 0.351125 1.034712 0.412089 -0.187381 0.977955 1.133117 -0.331406 -0.496487 -0.004168 0.455085 0.057251 0.026480 -1.749080 1.382502 -1.126299 0.319199 2.010927 -1.198226 0.492822 -0.465035 0.958895 -1.483077 1.110742 0.361151 -1.384632 0.541052 1.072194 0.271439 0.172272 -0.967219 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::~list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::~_List_base() = -0.087369 -0.264129 0.720739 0.506486 -0.290167 0.036215 0.083844 -0.255226 0.415269 -0.233830 -0.209404 0.050405 -0.487764 0.177861 -0.095168 0.250215 -0.831142 -0.358684 -0.028582 -0.205048 -0.110101 -0.310905 0.314693 0.105864 0.283834 0.563179 -0.220680 -0.026608 -0.228924 -0.097634 0.471586 -0.287258 0.333465 0.573848 0.028127 -1.078061 0.400389 0.149323 -0.226089 -0.410346 0.256229 -0.397379 0.165537 -0.518978 -0.238330 0.117931 0.126173 0.390881 0.379684 0.035850 -0.153474 -0.124188 0.056916 0.632815 -0.368864 0.167170 0.180146 -0.142071 -0.168368 -0.121495 0.101134 -0.008261 0.252680 0.336852 -0.261200 -0.418790 -0.110754 -0.515956 -0.493519 0.394754 -0.095246 0.267724 -0.473960 -0.092140 -0.378067 -0.117199 -0.384639 0.574605 0.701951 -0.473078 0.370855 0.021808 0.175709 -0.002613 0.102660 0.187016 0.322859 0.112391 -0.175199 -0.001329 -0.264462 -0.173574 0.125227 -0.169984 0.026560 -0.587543 0.149171 -0.586544 -0.421731 0.062918 0.170647 -0.047975 -0.134680 0.009155 0.202864 0.313520 -0.277746 -0.418561 0.095927 -0.034018 0.013195 -0.009261 0.013785 0.120365 -0.220824 -0.390731 -0.608164 0.002722 -0.095144 -0.253650 0.199433 0.389611 -0.192768 0.024384 0.055520 0.125725 -0.209208 0.763493 -0.001464 0.143866 0.049620 0.034866 0.023241 0.025417 0.297478 0.600311 -0.211494 -0.173392 -0.194740 0.027889 -0.412791 -0.420277 0.060825 0.143442 0.323129 -0.352620 -0.342412 -0.176404 -0.337070 -0.836024 0.083067 -0.359683 0.030767 0.514163 0.374811 0.352575 0.448160 0.673392 -0.424270 0.151133 -0.141249 -0.128790 0.414559 0.387903 0.377714 -0.217599 -0.200888 0.218595 -0.084103 0.215323 0.069448 -0.128691 0.053393 -0.505298 -0.102949 0.357612 0.359800 0.042829 0.275641 0.254570 0.023045 -0.271317 0.136173 0.397451 0.020487 -0.062367 0.180222 -0.437818 0.397627 0.072140 -0.083058 0.115814 -0.018409 -0.237739 0.088075 -0.106472 0.175417 -0.359628 -0.126404 -0.191448 0.029704 -0.466279 0.217347 -0.182508 -0.312097 -0.152986 -0.140193 0.523684 -0.447271 -0.196245 0.422573 -0.021583 0.566644 -0.507986 0.382044 -0.357781 0.634301 -0.133943 -0.106347 0.052853 -0.309691 -0.201574 -0.037956 0.173569 0.076973 -0.007109 0.350011 0.370840 0.041845 0.087062 0.497542 0.055681 0.401098 -0.045788 0.255275 -0.102987 -0.091023 0.269290 -0.141800 -0.078010 -0.028663 0.207704 0.723156 0.377955 0.411256 0.647129 0.180922 0.446142 -0.258530 0.050552 -0.131369 0.406846 -0.184407 -0.148695 0.035183 0.433478 -0.191301 0.185466 -0.552823 -0.960520 -0.592095 -0.383444 -0.160744 -0.200560 0.123164 -0.049805 0.130453 -0.384156 -0.167104 0.213301 -0.218814 0.627233 0.141572 0.017712 0.364052 0.512752 -0.386154 -0.313600 0.300565 0.314106 0.006739 0.250304 -0.711882 0.426152 -0.483658 0.050647 0.650625 -0.415496 -0.025836 -0.111003 0.683758 -0.337488 0.672710 0.231753 -0.375306 0.496418 0.314506 0.291343 0.508180 -0.285164 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_clear() = 0.314976 -1.009866 6.433739 4.116286 -1.253148 0.271435 1.041284 -3.510137 3.024757 0.433138 -0.920414 0.587916 -2.426897 0.962857 -1.679285 2.579918 -4.976360 -2.014612 -1.485951 -3.542625 -1.241114 -1.304323 2.228830 -0.108017 3.193892 1.227423 -1.990359 -0.843196 -1.923645 -3.765936 2.034238 -1.104926 1.775061 -0.157011 0.079573 -6.791729 4.145084 2.433561 -1.858920 -2.421935 2.583533 -1.649935 -0.533060 -1.134346 -1.041396 0.721601 -0.102083 2.074088 3.038259 1.493527 0.953822 1.087061 1.261492 5.780107 -2.701263 1.729684 0.880862 -0.991259 -1.289119 1.050630 0.319305 0.348818 0.946050 0.907841 0.193191 -3.963085 -0.006159 -1.836945 -2.512739 2.921795 -0.451378 -1.581270 -2.116792 -0.995612 -2.719645 -0.638209 -2.166035 3.229126 3.906469 -2.666926 1.932277 -0.157750 -0.278434 -0.166782 0.125700 0.470517 2.443087 0.732048 0.212946 -1.383551 -1.294568 -0.885249 1.203575 -0.190032 -1.249385 -4.885794 2.494618 -4.100733 -3.336105 0.466022 2.657732 -2.096548 -1.625435 -0.412254 0.730415 1.061355 -1.049300 -2.344143 -0.013980 0.890691 -0.000794 -0.247109 -0.283401 -1.156134 -0.831451 -0.347030 -4.204649 1.609215 -0.752539 -0.198545 -1.227669 2.496780 -0.372527 -0.885345 0.370512 2.551016 -1.746206 3.113164 -1.204738 2.635302 0.087616 2.052988 -1.213363 0.438192 2.283996 0.937787 -1.047997 -0.409674 -2.297992 0.806878 -3.211403 0.232583 -1.258053 2.276180 2.507711 -2.379823 -2.421540 -0.469985 -1.632208 -4.415803 0.483030 -1.941482 -2.360296 1.052395 2.333944 2.298256 2.750461 3.297481 -2.514851 0.772758 -0.184500 -1.047663 2.999113 -0.491757 2.455632 -1.798825 -1.581927 0.858558 0.063531 1.611133 -0.502944 0.563943 0.488226 -3.653748 -0.473770 1.394362 1.395350 -0.398708 1.813360 3.193563 3.566004 -2.645048 0.612056 3.009676 -1.663199 -0.529747 1.107361 -3.164335 0.978942 1.267084 0.730094 3.336296 0.234584 -1.008703 0.848828 -0.876103 0.774369 -2.093351 -0.153912 -1.573448 -0.167840 -1.649550 -0.032642 -1.638907 -1.214702 -1.536503 -2.257686 3.576314 -3.520138 -2.727509 4.505534 -1.302983 1.625421 -4.199273 4.213232 -2.195356 2.095280 -0.829292 0.073499 -0.195986 -0.344909 -3.558750 1.305240 0.624582 -0.549263 1.717203 4.347034 2.158835 0.614173 -1.217734 3.704517 -1.721599 3.901543 -1.536507 3.231686 -1.169975 -1.776064 -0.103557 -0.514857 -1.965143 -1.554979 1.587506 2.860488 1.142195 1.878076 2.366469 1.704726 4.210730 -1.534021 3.099168 -0.631990 1.234322 -1.149829 -1.544315 2.335937 1.661172 -1.080880 1.898718 -4.532640 -4.707131 -4.162576 -3.746429 0.565267 -1.625898 1.316948 -1.232980 -0.603907 -3.283312 -2.658835 2.742919 -0.500830 2.225471 2.171799 0.474530 1.952805 3.469713 -1.733781 0.358506 -0.201362 1.599780 0.951215 -1.471935 -3.205776 3.766495 -2.305541 0.104507 4.595943 -2.127376 1.443145 -0.652523 2.099068 -3.094579 3.725389 0.571198 -1.525327 3.255283 2.679807 2.800808 1.311466 -1.761242 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/graph-coloring.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/graph-coloring.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.040231 -0.673241 2.411878 1.656984 -0.130947 0.130664 0.847906 -1.118135 1.218191 0.431324 -0.341670 0.477467 -1.292556 0.517644 -0.884499 1.209028 -1.651670 -1.075115 -0.324330 -1.115676 -0.416815 -0.611430 1.081269 -0.123855 1.385662 0.252143 -0.826041 -0.824674 -1.373211 -1.354513 0.762171 -0.566979 0.794704 -0.220951 -0.293152 -2.511586 1.423483 1.075661 -0.774116 -1.146039 1.193895 -0.903496 0.019615 -0.526401 -0.033054 0.241917 0.200628 0.796348 1.234719 0.734814 0.584654 0.417532 0.521841 2.360729 -1.289431 0.820792 0.475098 -0.197233 -0.561247 0.306350 0.202544 0.025059 0.567042 0.454038 -0.171050 -1.483541 -0.362975 -0.797955 -1.152704 0.951678 -0.201667 -0.183472 -1.095299 -0.117303 -0.908448 -0.307962 -1.200583 1.090675 1.762417 -1.130942 1.065204 0.006657 0.094688 -0.200433 0.114908 0.292958 0.591023 0.311870 -0.103948 -0.702987 -0.769451 0.019243 0.259612 0.150659 -0.399706 -1.911259 1.043508 -1.014219 -1.503466 0.197548 0.814216 -0.658187 -0.558193 0.154997 0.219415 0.755931 -0.732669 -1.216125 -0.156657 0.143622 0.210981 -0.300790 0.022876 -0.765356 -0.522036 -0.511781 -1.675964 0.360194 -0.256758 -0.525890 -0.652677 0.998962 -0.274289 -0.028449 0.128320 0.933054 -0.626466 1.287799 -0.206812 1.006424 0.329576 0.558273 -1.075247 0.158624 1.056732 0.951537 -0.689054 0.193271 -0.998322 0.218037 -1.040240 -0.085196 -0.242765 0.995592 1.111355 -1.134159 -0.987455 -0.257133 -0.166961 -1.622261 0.386686 -0.833978 -0.449746 0.084541 1.014696 0.576020 1.170242 1.851683 -0.991026 0.467130 0.056166 -0.415625 1.317927 0.002471 1.074599 -0.762640 -0.824975 0.412030 0.372489 0.414807 -0.201887 0.397666 0.245603 -1.555046 -0.117267 0.327016 0.526075 -0.477988 0.937528 0.998143 1.266052 -1.124860 0.243649 1.132171 -0.555729 -0.058891 0.325070 -1.492634 0.645752 0.416382 0.103868 1.171970 0.172111 -0.763604 0.631119 -0.435816 0.360253 -0.895938 0.136128 -0.783975 -0.392828 -0.759966 0.129662 -0.416994 -0.665139 -0.473124 -0.540791 1.528026 -0.914172 -0.906760 1.246382 -0.335863 0.415045 -1.890205 2.103200 -1.007255 0.637587 -0.407510 0.016955 -0.003268 0.426291 -1.214640 0.202319 0.444411 -0.270371 0.893714 1.824248 0.855106 0.192670 -0.245565 1.466851 -0.430111 1.323200 -0.421655 1.273118 -0.396751 -0.821072 0.193945 -0.276495 -0.483044 -0.483341 0.452848 1.504067 0.644754 0.537465 1.102754 0.680434 1.812839 -0.735075 1.184431 -0.288126 0.973560 -0.445630 -0.494545 0.591419 0.530522 -0.371400 0.982844 -1.801526 -2.051780 -0.950890 -1.633008 0.424977 -0.494261 0.490670 -0.495802 -0.067393 -1.653130 -1.028233 0.651749 -0.389401 0.951589 0.901773 0.262429 0.851002 1.255381 -0.785541 0.000811 -0.094160 0.689669 0.322646 -0.606009 -0.974487 1.151003 -1.159005 0.114675 1.605384 -0.780056 0.345050 -0.305676 1.066724 -1.117683 1.803431 0.351752 -0.561999 1.566130 1.135331 1.601629 0.316544 -0.721784 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/graph-coloring.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/graph-coloring.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.202365 -1.180928 5.990142 3.793016 -1.015916 0.342388 1.570648 -3.244632 2.726558 -1.066534 -0.535351 0.887787 -3.000123 1.260208 -3.155669 1.820767 -4.744092 -2.569097 -1.627844 -3.444710 -0.975710 -1.141066 2.550426 0.244701 3.141624 0.626198 -2.302483 -1.636441 -3.900704 -1.509665 2.846586 -0.997544 1.951272 -0.798350 -0.840724 -7.468689 3.428346 2.711129 -2.090462 -2.408468 3.267882 -2.916935 -0.296814 -2.221403 -1.405964 -0.288662 -0.497136 1.508020 2.988855 0.632164 0.546687 2.132478 0.121778 6.793230 -3.662334 1.869436 1.043228 -0.330417 -1.679719 0.920907 0.154166 0.766589 1.286811 0.638857 -0.753382 -4.108424 -0.452832 -2.407868 -2.593852 2.545053 -0.419050 -0.537321 -1.953724 -0.074939 -3.899067 -0.934220 -0.071678 3.059829 3.711732 -3.140415 1.975696 -0.871643 -0.272435 -0.015169 0.537151 0.953417 1.932647 0.603109 0.556999 -1.936249 -2.993024 1.038043 0.759907 -0.107309 -1.236202 -5.686986 2.735216 -4.241737 -3.654043 -0.024299 2.367557 -2.248366 -1.398326 -0.192875 0.293035 1.454338 -1.805239 -2.672919 -0.187247 1.285944 0.632221 -0.508945 0.342811 -1.565210 -0.674811 -2.488035 -4.195059 1.815055 -0.756709 -0.291417 -1.533061 2.915721 -1.429687 -0.943336 0.359901 2.513826 -2.306181 3.242361 -1.745202 1.715834 0.107164 1.373692 -1.355747 -0.718332 2.193719 3.553845 -2.061363 -0.160195 -2.717770 0.564341 -2.996096 -0.934170 -0.617154 1.833922 1.340762 -2.924506 -1.988551 -0.480125 -0.774849 -4.799780 -0.082747 -1.747470 -2.190211 1.382901 2.468819 2.663474 3.062440 4.527769 -1.525297 1.252213 0.429100 -1.702530 3.656227 -0.816559 2.587251 -1.862846 -2.359320 0.932299 -0.771446 1.956670 -0.812634 1.626284 0.128629 -4.021937 -0.746862 0.272180 1.834947 -0.434319 2.475985 3.229370 1.387257 -3.947053 1.126253 2.866408 -2.156690 0.002695 0.597007 -3.121209 0.773604 1.717430 -0.617775 3.458226 0.304867 -2.014246 0.998752 -0.688484 1.364932 -2.343692 -0.219174 -1.733053 -0.963292 -2.386952 -0.345151 -1.059687 -1.632113 -2.071826 -3.216078 3.765126 -4.011535 -2.960985 3.892359 0.113329 1.883334 -5.263243 3.718053 -2.423103 3.052849 -0.413824 0.542273 0.044711 0.488846 -4.115115 1.416311 0.839122 -1.502560 2.062398 4.615328 2.398208 1.028884 -1.288962 3.872757 -1.367717 3.807691 -1.848737 3.403812 -1.140960 -3.220712 0.924091 -0.665401 -1.714917 -1.438170 2.330398 3.826155 1.643165 2.850200 2.812381 2.495524 4.801540 -1.575214 2.357902 -1.078125 1.361901 -0.717587 -1.405219 1.925985 1.887542 -0.516929 1.921640 -4.599717 -6.087290 -4.005154 -4.702077 2.430345 -2.523468 0.535633 -1.118393 -0.361199 -4.658100 -2.559469 0.796406 -1.296888 3.900828 2.495538 0.746848 2.041109 3.551650 -2.887533 0.620971 1.161544 2.531550 1.028828 -1.326142 -3.835851 3.681401 -2.522894 0.251899 4.793741 -1.953809 1.587893 -0.279471 2.260183 -2.669626 4.663229 0.623456 -2.111423 3.797487 2.665933 2.920506 2.326849 -1.722926 -PE-benchmarks/graph-coloring.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/graph-coloring.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -4.775422 -9.475256 12.773111 9.316270 0.427141 4.525389 5.249601 -0.347649 0.752544 6.646278 -2.764699 8.126384 -7.345665 -2.135191 0.789182 1.120962 -6.426582 -7.142531 0.473273 -2.091525 -3.150726 -3.986296 -5.255362 10.868566 5.535867 -0.203785 -4.201039 -0.944331 -12.356184 -8.891912 -5.450479 -0.292198 5.122882 -1.721562 6.278861 -12.726040 5.460081 10.227466 1.046053 -9.279379 2.505329 -3.741259 0.764695 1.625051 -3.274186 3.644068 7.182257 1.767760 2.060626 1.981872 0.607107 -3.235342 4.596552 12.898417 3.502699 7.772277 8.664089 -3.502731 2.394458 -1.710058 0.953750 -7.768416 3.194195 0.391758 -3.025670 -2.332853 0.600951 -1.184269 -2.117447 2.678087 5.032428 -5.504572 -3.984441 -4.380910 -7.813118 -3.820526 2.328912 4.291051 10.801254 -5.894371 11.639037 4.873637 5.719460 1.506636 7.246904 -0.379235 7.867335 1.387024 -4.009019 0.399794 -6.857059 -2.434365 -1.767179 7.690593 -4.798008 -2.393383 3.569977 -9.238202 -11.953040 5.810413 -1.875289 -4.911096 -4.203216 1.121696 3.778394 3.219554 -2.220847 -7.637221 -5.691856 3.943801 -5.215239 -2.748318 -0.173628 -0.502439 -0.954672 0.662012 -8.432563 2.884795 5.416624 -3.805885 -4.410736 8.774826 -0.704596 9.163827 0.879551 2.690787 0.279719 4.579531 6.432718 0.745776 -1.891776 -5.415307 -8.941833 -1.097683 0.466619 -0.687725 -5.692713 -2.484698 2.636828 3.874664 1.784241 5.894684 -2.109897 13.516986 3.484473 -4.051579 -5.904380 -8.309368 -5.262594 -4.220061 0.964035 -3.293858 -6.541606 0.927604 5.115819 0.970072 -1.237389 6.565519 -1.223722 5.537624 1.570314 -1.918079 0.871070 -4.105208 3.906534 -6.069828 -4.076754 4.195635 6.138822 6.040152 -0.874696 -0.978562 1.771754 -3.500339 -6.020242 2.529004 0.572480 2.348889 9.802655 6.806005 17.892151 -6.137157 -1.210976 -0.310809 -2.793728 -1.594330 0.940643 -7.244407 2.496241 1.536838 -1.764141 11.505337 -0.119686 -4.531301 6.066059 0.278126 1.321598 -8.061344 6.867175 -4.875899 1.611775 -2.283762 -3.144925 -6.140862 -2.945801 -7.583456 -3.530359 11.447643 -7.975093 -10.831691 3.000882 -0.218029 5.439387 -13.148434 10.564098 -4.082249 6.496231 -2.369149 -4.293899 0.931211 2.480409 -0.718152 4.344960 2.917574 -5.254492 4.150817 4.686897 1.899428 2.693880 1.740527 4.283045 -0.544855 1.653485 -4.014208 4.008293 -0.893494 -2.411016 -4.138062 -1.772500 2.065081 5.785296 -0.877136 -1.902782 4.264210 -1.848172 -0.025864 7.803266 0.895584 -3.361678 0.484269 -2.340564 9.210871 -6.126340 -4.677601 -3.550189 2.994842 2.733542 2.920089 -12.333001 -5.512027 -5.743282 -10.204660 -4.208201 3.443384 3.152083 3.972330 -1.133864 -10.350244 -6.242984 9.828374 0.896829 7.182405 5.366665 2.021623 9.276715 3.650510 3.464888 -3.529172 -0.391541 1.541131 -2.155375 -1.422609 -3.967621 3.109016 -8.750126 7.562660 7.100860 -3.281700 5.354796 -1.144373 3.308017 -10.487022 10.618963 4.007444 -10.515323 0.875221 8.238656 6.883984 -8.807726 -6.365521 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__sort(int*, int) = -0.691749 -0.640162 1.187592 0.651791 -0.100147 0.205411 0.363411 -0.178633 0.270384 -0.094341 -0.237043 0.565382 -0.639434 -0.016669 -0.585458 0.020469 -0.716862 -0.662372 -0.095254 -0.402013 -0.226561 -0.241577 -0.042254 0.500395 0.495971 0.106528 -0.468879 -0.228290 -1.156876 -0.526174 0.076493 -0.126111 0.471279 -0.458441 0.029001 -1.935157 0.413182 0.827527 -0.245911 -0.823485 0.570598 -0.590195 0.098466 -0.229938 -0.532436 0.014443 0.369279 -0.095731 0.235523 0.094041 -0.014603 0.142065 0.076510 1.585830 -0.175380 0.527100 0.685726 -0.173058 -0.278483 -0.080135 0.081871 -0.372340 0.327366 0.001657 -0.346218 -0.483515 -0.024337 -0.389202 -0.452483 0.234228 -0.036766 -0.273267 -0.155886 -0.261700 -1.073698 -0.368146 0.624785 0.393092 0.866432 -0.678696 0.819001 -0.017372 0.268469 0.254224 0.348265 0.223658 0.333951 0.157948 -0.081011 -0.206695 -0.429775 0.309381 -0.094476 0.591274 -0.319990 -0.762227 0.691138 -1.055578 -0.849076 0.276605 0.112379 -0.418033 -0.487458 -0.111961 0.067435 0.552073 -0.495659 -0.593429 -0.439742 0.364782 -0.015051 -0.119667 0.168577 -0.122529 -0.142587 -0.463098 -0.803901 0.403477 0.279867 -0.228968 -0.385524 0.778556 -0.301868 0.384663 0.063085 0.474109 -0.332799 0.782166 0.097053 0.036819 -0.369796 -0.073511 -0.694223 -0.577197 0.188335 0.722178 -0.716953 -0.265740 -0.131482 0.130645 -0.134882 -0.124798 -0.275012 0.629135 0.522717 -0.453511 -0.441422 -0.566702 -0.344536 -0.966076 -0.217620 -0.314252 -0.422660 0.601767 0.495730 0.417975 0.231491 1.236181 -0.143452 0.373063 0.112751 -0.656777 0.363649 -0.361061 0.483426 -0.484550 -0.515057 0.293428 0.144391 0.670965 -0.022833 0.171686 0.084578 -0.611994 -0.379308 0.260610 0.490314 0.148160 0.664272 0.713238 0.713182 -0.910107 -0.063399 0.148333 -0.441626 -0.058939 0.032296 -0.615429 0.066367 0.358801 -0.350329 0.873565 0.110621 -0.501825 0.416077 -0.133358 0.212564 -0.613762 0.330319 -0.442278 -0.008208 -0.365219 -0.399069 -0.447342 -0.247268 -0.717121 -0.836067 0.937164 -1.030516 -0.874011 0.374472 0.375122 0.608799 -1.427824 0.650276 -0.464725 1.181452 -0.123302 0.019984 0.023594 0.167199 -0.370221 0.339446 0.220413 -0.487336 0.342354 0.814884 0.393528 0.247177 -0.104816 0.695193 -0.183678 0.464135 -0.337513 0.385988 -0.204346 -0.690559 0.123709 -0.141156 -0.068061 0.186398 0.364339 0.381995 0.427131 0.251508 0.436075 0.860083 0.592393 -0.310377 0.106577 -0.211072 0.843902 -0.308787 -0.401173 -0.089960 0.783094 0.191904 0.149456 -1.023566 -1.149956 -1.011572 -1.251377 0.271471 -0.157307 -0.016890 -0.005621 -0.031702 -1.022674 -0.481719 0.585216 -0.201995 1.374607 0.486580 0.235728 0.720122 0.517977 -0.371294 -0.183901 0.327436 0.412688 -0.032122 -0.083750 -0.680306 0.421278 -0.723994 0.277213 0.815884 -0.365203 0.422065 0.375052 0.258236 -0.701439 1.132341 0.300657 -0.837496 0.535224 0.587196 0.675070 -0.107922 -0.446941 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__printArr(int*, int) = -0.462143 -1.226195 2.150738 1.582816 0.015874 0.437937 0.769150 -0.475110 0.641424 0.581249 -0.564216 0.965449 -1.436688 0.068828 -0.008779 0.420595 -1.419678 -1.279243 -0.063267 -0.423182 -0.498354 -0.868772 -0.000871 1.102216 1.051572 0.411250 -0.810381 -0.237571 -1.858054 -1.064345 -0.096374 -0.250122 0.927895 0.426652 0.641571 -2.118550 0.955967 1.313311 -0.108016 -1.458764 0.660510 -0.895709 0.120191 -0.337503 -0.088754 0.616616 0.889464 0.733891 0.742244 0.401685 0.130086 -0.481821 0.256087 1.626923 -0.165523 0.998432 1.081147 -0.500568 -0.026196 -0.246501 0.170190 -0.844381 0.687167 0.488067 -0.792638 -0.722892 0.141941 -0.607647 -0.883682 0.836704 0.592982 -0.392330 -1.002816 -0.678779 -0.939524 -0.351059 0.226463 0.964490 1.896916 -0.945546 1.585053 0.473069 0.811545 -0.073486 0.776813 0.011234 1.124983 0.213013 -0.648675 -0.336072 -1.555975 -0.594216 -0.241387 0.831937 -0.423032 -0.361933 0.591131 -1.369847 -1.738432 0.431420 0.049031 -0.650036 -0.864964 0.570705 0.616284 0.748840 -0.207396 -1.262623 -0.525152 0.435816 -0.643086 -0.312157 -0.095006 -0.176196 -0.593369 -0.430221 -1.615053 0.300338 0.490728 -0.714203 -0.473892 1.286358 -0.611074 0.956398 0.172961 0.464316 -0.091064 1.161899 0.637894 0.251871 0.361865 -0.678592 -1.181841 -0.050629 0.429695 0.882344 -0.915413 -0.191273 -0.016394 0.364577 -0.420383 0.192555 -0.316331 1.637977 0.855681 -1.064456 -1.192500 -0.992908 -0.642731 -1.131308 0.297571 -0.707453 -0.426627 0.147616 0.951052 0.518252 0.309450 1.836198 -0.752419 0.804835 0.225725 -0.375683 0.553988 0.026653 0.885367 -0.992753 -0.737368 0.751753 0.643006 0.540145 -0.040941 -0.054385 0.312718 -1.173126 -0.895379 0.611729 0.292587 0.348943 1.339549 1.040670 1.916802 -1.073732 0.069743 0.483017 -0.183657 -0.316112 0.337511 -1.306577 0.765769 0.175657 0.034750 1.605150 0.078010 -0.903399 0.744731 -0.015717 0.316510 -1.220587 0.619055 -0.742687 0.252261 -0.708663 -0.152659 -0.708878 -0.655797 -0.785981 -0.376562 1.789208 -0.542853 -1.759924 0.783403 -0.273636 1.164819 -2.270439 1.460096 -0.807831 1.049698 -0.439808 -0.399157 0.080589 -0.032180 -0.449200 0.490772 0.465062 -0.349052 0.626287 1.115012 0.547171 0.318571 0.200551 0.902469 0.033084 0.689441 -0.408698 0.691982 -0.158285 -0.301256 -0.144807 -0.340114 0.141501 0.516809 -0.148293 0.736085 1.047193 0.208652 0.875931 0.949074 0.761575 -0.647159 0.322946 -0.223767 1.374507 -0.821513 -0.736911 -0.156869 0.575516 -0.026022 0.619922 -1.842688 -1.722011 -0.531005 -2.041729 -0.383555 -0.004407 0.558567 0.280738 -0.133385 -1.520648 -0.826196 0.939199 0.038470 2.029596 0.692100 0.198696 1.238119 0.958940 -0.349775 -0.507157 0.200720 0.510499 -0.316341 -0.204180 -1.045927 0.764831 -1.299944 0.850557 1.500243 -0.856636 0.604348 -0.585028 1.211811 -1.509682 1.868608 0.655938 -1.439640 0.705261 0.884058 1.345602 -0.481602 -0.972775 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 0.130683 -0.660282 2.257326 1.385716 -0.975254 -0.028578 0.162226 -0.596358 0.630626 -1.088182 -0.675393 0.603880 -0.912620 0.419410 -0.730929 0.450912 -2.452630 -0.846646 -0.190635 -0.577656 -0.340609 -0.346205 0.589161 0.571192 0.984666 1.637978 -0.701035 -0.186223 -0.654358 -0.234808 0.979419 -0.546561 0.794028 1.048048 0.257778 -3.091077 1.007546 0.564376 -0.561357 -1.161311 0.881133 -0.867535 0.026945 -1.457185 -0.941031 0.123206 0.412298 1.319271 0.696644 0.167417 -0.961903 0.086916 0.306116 2.131803 -0.475042 0.415566 0.916886 -0.380986 -0.325574 -0.434785 0.296404 -0.219091 0.335587 0.378346 -0.318723 -1.247612 -0.287386 -1.358036 -0.706436 0.855410 0.102579 0.448734 -0.947893 -0.296482 -1.454796 -0.169324 -0.413838 1.688713 1.582355 -1.426682 0.816194 -0.092324 0.359779 0.170822 0.111215 0.564805 0.607031 0.454996 -0.009794 -0.192236 -0.977768 -0.392692 0.374905 -0.728453 -0.236481 -2.353687 0.661849 -2.215434 -1.072685 0.170821 0.652791 -0.644232 0.204186 -0.232793 0.372138 0.767697 -0.641755 -0.640641 0.280613 -0.013664 0.006346 0.011831 0.177002 0.637843 -0.269320 -0.756574 -1.676523 0.649967 -0.016503 -0.181897 0.703441 0.940316 -0.211899 0.066226 -0.002736 0.446668 -0.626337 1.833387 0.040355 0.141327 -0.125503 0.385811 0.680520 0.183313 0.801477 1.280915 -0.907200 -0.607685 -0.434142 0.316653 -0.804506 -1.016290 -0.122827 0.529330 0.355167 -0.960380 -1.075908 -0.797624 -1.186817 -1.876354 -0.109452 -0.702504 -0.613054 1.561239 0.873217 0.969172 0.963080 1.275531 -0.783712 0.324784 -0.112502 -0.327816 0.862981 0.510066 0.836338 -0.612870 -0.464372 0.622857 -0.479212 0.940796 -0.036930 -0.019917 0.344814 -1.257104 -0.367192 0.877784 1.118692 0.160540 0.777998 0.974572 -0.186465 -0.669212 -0.062757 0.865212 -0.425718 -0.389261 0.573252 -0.973400 0.750747 0.261577 -0.022242 0.787200 0.089578 -0.517053 0.458889 -0.087601 0.249686 -0.688532 -0.323946 -0.410470 -0.104833 -0.927409 0.528880 -0.573354 -0.469028 -0.883268 -1.132063 1.484779 -2.023795 -0.720459 1.038470 -0.036492 1.509190 -1.548561 0.831098 -0.842571 1.763330 0.202956 -0.218288 0.267954 -1.222167 -1.053245 0.187509 0.375447 -0.012174 -0.116669 0.833248 0.944133 0.088592 -0.042278 1.238779 -0.276162 1.348074 -0.271689 0.529140 -0.459431 -0.673238 0.385164 -0.119409 -0.539950 -0.164153 0.856389 1.597498 0.360437 1.524677 1.561020 0.656076 1.306813 -0.766174 0.062994 -0.514397 0.926671 -0.574080 -0.663215 0.189817 1.278035 -0.225484 0.470204 -1.586036 -2.510806 -2.437643 -1.239625 -0.140037 -1.005462 0.347962 -0.395168 -0.033124 -1.123811 -0.692354 0.616269 -0.360609 1.420733 0.913358 -0.056088 1.022500 1.064008 -0.975038 -0.462420 0.912491 1.126948 0.317863 0.506142 -2.040510 1.143947 -1.145806 0.008738 2.154114 -1.080982 0.358827 -0.258601 1.565377 -0.949563 1.740405 0.454011 -1.614670 0.773188 1.008242 0.367199 1.195860 -0.823881 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__compare(char*, char*) = -0.671625 -2.076696 3.078296 2.439878 0.408878 0.787498 1.372199 -0.537921 0.599544 1.800182 -0.930269 1.628714 -2.054666 -0.132070 0.316644 0.785829 -1.598563 -1.902360 0.131419 -0.443179 -0.704363 -1.211924 -0.354487 1.812910 1.617800 0.127842 -1.094224 -0.504516 -2.824730 -2.271811 -0.814326 -0.354795 1.339419 0.810629 1.064042 -2.087402 1.344690 2.061750 -0.009088 -1.901953 0.725906 -0.963371 -0.031935 -0.046056 0.250564 1.201330 1.653948 0.674350 0.933508 0.879601 0.723175 -1.143695 0.900580 1.853792 0.156431 1.698604 1.762520 -0.843160 0.519883 -0.271368 0.339878 -1.579883 1.050833 0.739969 -0.909029 -0.794682 0.139266 -0.551807 -0.955146 1.080690 1.025515 -0.697749 -1.464889 -1.022750 -1.052081 -0.591774 -0.303240 0.988056 2.890848 -1.135606 2.722403 1.259857 1.465338 -0.360013 1.299769 -0.103452 1.710902 0.374304 -1.252638 -0.185043 -1.992386 -1.160603 -0.506952 2.036646 -0.737974 0.405956 0.858797 -1.763610 -2.736043 0.996312 -0.147716 -0.856981 -1.249414 1.090514 0.814043 0.809092 -0.204605 -1.949398 -0.973811 0.423108 -1.205758 -0.624928 -0.367095 -0.382950 -0.817552 0.234549 -2.252133 0.216321 0.887251 -1.377916 -0.991311 1.798131 -0.355583 1.841484 0.194957 0.582519 0.116785 1.161874 1.272383 0.685604 0.679370 -1.124595 -2.678976 -0.046183 0.767311 0.423627 -1.270535 -0.199199 0.298160 0.687136 -0.181012 1.098701 -0.377315 3.075109 1.361978 -1.449631 -1.839387 -1.658039 -0.780077 -1.085674 0.720898 -1.057843 -0.702261 -0.534881 1.364561 0.187194 0.180230 2.326768 -0.831278 1.336698 0.294386 -0.246914 0.508852 -0.493862 1.226671 -1.496897 -1.007104 1.185851 1.642981 0.601164 0.131174 -0.326979 0.616127 -1.505338 -1.487895 0.867100 -0.122753 0.152544 2.107339 1.387143 3.762918 -1.341888 0.119049 0.472947 -0.010153 -0.475920 0.540510 -2.027994 1.277717 0.050522 0.141012 2.371111 0.198434 -1.296799 1.219487 -0.137782 0.268424 -1.822658 1.351029 -1.114272 0.536656 -0.777047 -0.188257 -1.103137 -1.012108 -0.804140 0.076089 2.632535 -0.431404 -2.388688 0.872957 -0.320243 1.154108 -3.186586 2.553761 -1.137714 1.033495 -0.900524 -1.025971 0.098785 0.586444 -0.293294 0.620423 0.771778 -0.743124 1.182396 1.395539 0.571991 0.576009 0.524896 1.131478 0.093820 0.584776 -0.508249 0.923121 0.014242 -0.280471 -0.770450 -0.522649 0.472211 0.972326 -0.606049 0.398980 1.493645 -0.431563 0.680381 1.338107 0.773036 -0.981266 0.468835 -0.159863 2.282397 -1.438178 -1.087570 -0.479094 0.264325 -0.024790 1.022236 -2.728540 -1.731952 -0.178956 -2.514853 -1.145333 0.676835 1.121849 0.692975 -0.200747 -2.205696 -1.265019 1.617555 0.179758 1.818559 1.080898 0.435467 1.867217 1.070737 0.301092 -0.951911 -0.449997 0.594295 -0.572392 -0.449588 -0.954428 0.802532 -1.953780 1.579932 1.704097 -1.064225 0.826221 -0.662282 1.780932 -2.348912 2.610699 1.027864 -2.091290 0.878636 1.590383 1.969199 -1.659839 -1.430384 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -1.913521 -5.735778 10.552891 7.180045 -1.526528 2.357156 2.037639 -1.914859 1.111604 1.078001 -2.665557 5.674439 -5.112727 -0.486332 -0.979774 0.406632 -7.402222 -4.569520 -0.931749 -2.417300 -2.695777 -2.325190 -2.473063 7.208426 4.470372 2.841059 -3.661110 -0.138920 -7.691141 -4.038682 -1.834866 -0.340806 3.810072 0.657215 4.377859 -11.001906 4.078729 6.653842 -0.403019 -6.427716 2.746324 -3.366881 -0.107678 -1.612811 -3.339303 1.673175 3.970912 3.033527 1.815603 0.976330 -1.192200 -1.088901 2.903724 9.978141 1.721906 4.921679 6.592499 -2.522601 0.835651 -1.714387 0.781485 -4.324890 2.125901 0.050177 -2.324365 -3.535467 0.650466 -2.216876 -1.619994 2.770721 3.497856 -3.008384 -3.161009 -4.088294 -6.782259 -2.183482 2.171397 4.657985 7.727390 -5.201393 6.708781 2.585306 3.255896 1.560506 4.410125 0.510604 5.647735 1.455772 -1.847626 0.328469 -6.025521 -1.800914 -0.031860 2.713680 -3.533471 -5.399407 3.196390 -10.091885 -8.136478 3.226757 0.657174 -4.298518 -1.529656 -0.141339 2.202304 2.253277 -1.705554 -4.541959 -2.164861 2.831119 -2.958572 -1.338395 0.031946 0.746596 -0.289330 -0.505727 -7.230210 3.659122 3.480568 -1.388756 -1.006983 6.478490 -0.738330 4.624606 0.187735 2.273248 -0.861785 4.931294 2.868735 0.285218 -2.001336 -1.785310 -2.221268 -0.417836 1.142405 0.915060 -4.772727 -2.531548 0.980013 2.626939 -0.246177 2.355174 -1.877567 7.898286 1.426833 -3.448465 -4.929405 -6.130668 -5.837013 -5.180140 -0.099359 -1.907755 -5.592829 2.243782 3.957928 2.724606 0.416376 4.421907 -0.828098 2.710818 1.047013 -1.792665 1.736711 -2.164559 3.471121 -4.448923 -3.098758 3.545978 2.114063 4.703128 -0.089515 -0.023354 1.551413 -3.706287 -3.479611 2.270745 2.259945 2.016109 7.018634 6.069902 9.622653 -3.899236 -0.538500 0.843725 -2.188688 -1.487246 1.107996 -4.796219 1.748909 1.618316 -0.590236 8.716538 0.336066 -2.909630 3.683504 0.455714 1.176145 -5.167727 3.155191 -2.881808 0.838886 -2.532621 -0.398353 -4.383602 -1.813089 -5.957948 -4.764763 8.590393 -8.401809 -7.060019 3.752699 0.637438 5.732570 -9.274292 6.153875 -3.175897 7.343987 -0.445150 -2.701752 1.017865 -1.688526 -3.054241 3.606730 1.930884 -2.992545 1.382677 3.302195 2.392665 1.998261 0.268562 3.839724 -1.408517 3.519899 -3.129165 3.006687 -0.908621 -2.450519 -1.671291 -0.980407 -0.063253 2.590251 0.956753 0.739712 2.787027 2.101973 1.855709 5.216505 2.458874 -2.976588 0.463088 -1.550393 5.103220 -4.589282 -3.877709 -1.046603 3.743523 1.462620 1.921759 -9.068152 -6.318956 -7.327699 -6.994393 -1.801123 -0.003758 1.713101 1.664566 -1.553140 -6.658091 -4.744603 6.680074 -0.004967 6.609375 4.472092 1.328674 6.493666 3.832331 0.235260 -1.850965 1.388715 2.451134 -0.624641 -0.061466 -5.870208 4.129622 -5.367880 4.078458 7.571680 -3.575501 4.377123 -0.768907 3.700278 -7.124230 8.055835 2.641368 -8.824982 1.070494 5.995781 4.147804 -3.217631 -4.685566 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 0.531872 -0.348855 1.589249 1.064448 -0.553870 -0.149371 0.168589 -0.511833 0.557617 -0.513596 -0.525515 0.334440 -0.601679 0.459386 -0.634476 0.716569 -1.605227 -0.555596 -0.134382 -0.369173 -0.147856 -0.190928 0.793137 0.015070 0.864140 1.115246 -0.454873 -0.298640 -0.293587 -0.349613 0.699192 -0.474183 0.446120 0.768068 0.014940 -1.246881 0.804543 0.305595 -0.473409 -0.700820 0.668922 -0.412422 -0.088063 -0.988491 -0.244599 0.176059 0.199177 1.109530 0.591514 0.418123 -0.425391 0.109510 0.437423 1.089859 -0.492737 0.228674 0.490834 -0.109983 -0.124294 -0.227986 0.282334 0.048514 0.088521 0.336641 0.061354 -0.978394 -0.470719 -0.895797 -0.420761 0.623067 -0.121645 0.489000 -0.876459 -0.088276 -0.617638 0.094062 -1.215871 1.148589 1.084177 -0.928484 0.391131 0.002342 0.141669 -0.119060 -0.245782 0.393732 0.076398 0.399023 0.089037 -0.209979 -0.477486 -0.312423 0.352406 -0.788828 -0.176968 -1.689006 0.525876 -1.200202 -0.646863 0.039512 0.624796 -0.405920 0.566993 0.093212 0.091724 0.500344 -0.400524 -0.346351 0.502823 -0.287921 0.307701 -0.018439 0.060490 0.340486 -0.235922 -0.259495 -1.157780 0.339408 -0.248045 -0.218035 0.627366 0.370325 0.076752 -0.113579 -0.056174 0.272395 -0.378834 1.186275 0.067485 0.427310 0.108000 0.578696 0.485647 0.618122 0.839248 0.583834 -0.550423 0.014597 -0.462182 0.167301 -0.592128 -0.660977 -0.091397 0.170184 0.211314 -0.789732 -0.819207 -0.363328 -0.763076 -1.094653 0.135738 -0.524322 -0.309545 0.701436 0.570991 0.532882 0.845316 0.866672 -0.710179 -0.023937 -0.054676 -0.020037 0.647383 0.461123 0.550893 -0.318211 -0.288600 0.437369 -0.205447 0.301213 0.011642 0.059812 0.324199 -0.974578 0.139631 0.642268 0.630974 -0.269927 0.442778 0.485090 -0.553692 -0.008280 -0.071805 0.792374 -0.188948 -0.278333 0.463011 -0.797578 0.698460 0.014964 0.367852 0.256541 0.124169 -0.160959 0.409213 -0.246958 0.111872 -0.326651 -0.291490 -0.252641 -0.238822 -0.611368 0.773756 -0.156499 -0.289850 -0.222163 -0.418275 0.890332 -1.006644 -0.039438 0.604843 -0.109993 0.629456 -0.604242 0.736730 -0.582175 0.814734 0.325459 -0.088488 0.234929 -0.842813 -0.796101 -0.231009 0.287473 0.250130 -0.037253 0.511738 0.632213 -0.198699 0.013314 0.848066 -0.313636 1.067183 -0.030768 0.368116 -0.276562 -0.419714 0.292040 -0.036176 -0.533792 -0.438657 0.441315 1.332495 0.044993 1.029987 1.137316 -0.007905 1.165303 -0.606316 0.322516 -0.278980 0.562052 -0.388805 -0.359905 0.304531 0.593846 -0.366963 0.506531 -0.962030 -1.613575 -1.384075 -0.564636 -0.112006 -0.905866 0.394307 -0.531058 -0.071520 -0.543773 -0.604317 0.309871 -0.252045 0.330137 0.650323 -0.117887 0.521596 0.653264 -0.653849 -0.144150 0.332951 0.803134 0.418947 0.227338 -1.133159 0.741980 -0.685058 -0.309959 1.456338 -0.750370 0.103728 -0.349368 1.048846 -0.526555 1.064818 0.244072 -0.808448 0.701151 0.678838 0.356843 0.889490 -0.519089 -PE-benchmarks/matrix-chain-multiplication.cpp__MatrixChainOrder(int*, int) = -4.242624 -10.494209 13.741840 10.247749 0.402852 5.220242 5.177045 -1.283546 -0.931994 6.773480 -3.406115 10.033620 -7.123500 -2.515931 0.012850 0.432166 -6.571447 -6.985084 0.456913 -1.935795 -2.873331 -4.155020 -6.318816 13.240727 6.129560 -0.748945 -4.542356 -1.839369 -13.617553 -8.091117 -7.421329 0.567548 5.681739 -1.037967 7.872254 -11.461395 4.668900 11.366200 1.313361 -9.698374 2.684710 -3.135412 0.349873 2.328367 -4.942186 4.512114 7.818222 1.328859 1.582837 3.322615 2.286095 -3.350052 6.907002 11.360277 5.975782 8.691617 8.427330 -4.159432 4.399693 -2.883617 0.955064 -8.513798 3.497785 -0.932486 -2.249583 -2.382333 -0.447562 0.509544 -1.594923 2.363984 5.757762 -5.833518 -5.094539 -5.209762 -8.763249 -4.061666 1.911154 3.984213 10.808434 -5.339977 12.204146 6.056599 5.966334 0.467103 8.095522 -0.296988 7.435009 1.739497 -3.867538 2.806588 -7.561377 -2.805821 -1.621500 6.428496 -6.560367 -4.632940 4.023005 -11.798068 -12.776506 7.064787 -1.299747 -6.650753 -2.161756 0.784679 3.022385 3.339908 -3.120132 -7.985403 -5.149263 5.234643 -4.712968 -2.943365 0.096742 -0.325875 0.494866 0.979469 -8.205007 4.227847 7.369283 -3.330143 -2.957863 9.964301 0.609391 10.018110 0.554719 2.375179 0.395004 5.349163 6.818644 0.762497 -4.338070 -5.492685 -8.853056 -0.088858 0.422773 -3.620181 -6.229816 -3.589850 3.342948 4.986383 3.208306 8.742073 -1.003869 13.551104 4.266743 -3.270408 -6.997601 -9.818767 -7.288158 -3.798878 0.644650 -1.486098 -7.448523 0.829717 5.299557 0.678301 -1.565808 3.849597 1.831418 3.795636 1.512431 -2.714611 0.433754 -5.378997 4.223469 -6.221807 -4.491163 6.159431 7.009043 7.958567 0.547773 -0.046644 2.518417 -2.075782 -5.302451 1.864632 2.292008 3.586882 11.744178 8.408369 16.705969 -2.456558 -2.533825 -1.040887 -2.364192 -1.594422 0.327267 -7.321936 2.683288 1.512393 -3.076033 13.084241 -0.357959 -2.923704 8.061430 0.177264 1.670013 -8.915488 6.853603 -4.916916 2.598132 -2.944434 -2.789561 -6.761141 -2.533305 -8.487755 -5.441177 12.599369 -9.021205 -9.616942 2.588827 -0.803911 5.246681 -12.705090 10.629744 -3.656632 7.534077 -1.324029 -5.309485 0.884778 1.782278 -1.218682 4.501412 2.941717 -6.090207 3.426134 4.250463 1.643082 1.580664 1.593330 4.362189 -1.112351 2.478709 -4.493820 3.777730 -0.664602 -0.966640 -3.665689 -1.460490 1.655817 5.918995 -1.097181 -1.676013 3.590933 -1.556734 -0.983479 8.278785 0.741348 -3.657556 -0.491623 -2.051616 8.496755 -7.875923 -5.782148 -3.779614 3.525160 3.194383 1.278395 -13.075210 -4.731144 -8.689962 -8.812020 -3.660304 2.808024 3.120918 4.535497 -2.620314 -9.829041 -7.474492 11.661235 0.578371 4.841246 6.652262 1.816956 10.553554 3.880315 4.231329 -2.084146 -1.354651 1.681602 -1.971708 -0.879260 -4.441888 3.354789 -9.246750 8.875173 7.752623 -3.981917 6.878125 0.297110 4.437353 -11.588106 10.661840 4.122615 -12.040761 0.244089 8.586203 4.978670 -10.717587 -6.548611 -PE-benchmarks/matrix-chain-multiplication.cpp__main = 0.255750 -0.586298 1.611715 1.072694 -0.586345 0.008266 0.330175 -0.377371 0.407049 -0.871155 -0.489408 0.431593 -0.797774 0.306775 -0.677585 0.216823 -1.594959 -0.715877 -0.213999 -0.351984 -0.126001 -0.240738 0.475761 0.465590 0.776155 1.125195 -0.487698 -0.365144 -0.880810 0.260294 0.823351 -0.255804 0.585048 0.895707 0.123822 -1.805180 0.562224 0.582656 -0.377776 -0.928306 0.704246 -0.693269 -0.080351 -1.099020 -0.407939 0.064828 0.210234 1.051510 0.393776 0.102094 -0.742394 0.138057 0.085710 1.412230 -0.365819 0.356197 0.780363 -0.068294 -0.097366 -0.282793 0.221582 -0.054264 0.188849 0.219824 -0.256676 -0.863104 -0.330730 -1.049714 -0.464028 0.577845 0.154289 0.416174 -0.733033 -0.197806 -1.020446 -0.020371 -0.516889 1.235147 1.095466 -1.126220 0.611781 -0.052407 0.278309 -0.012396 0.039326 0.409519 0.192936 0.340358 0.134684 -0.222095 -1.219064 -0.215182 0.164479 -0.712191 -0.334599 -1.685706 0.627178 -1.421300 -0.822998 0.034665 0.446259 -0.567185 0.382424 0.148561 0.039109 0.631131 -0.433182 -0.420491 0.198122 0.093926 0.165336 -0.038349 0.147487 0.560476 -0.213353 -0.835636 -1.209092 0.557247 0.020957 -0.163199 0.542909 0.668000 -0.318492 0.086394 -0.016738 0.195299 -0.455321 1.300124 0.112816 -0.012972 0.182134 0.133835 0.370908 0.224550 0.646744 1.363302 -0.761121 -0.173111 -0.257744 0.226280 -0.410887 -0.770392 0.004044 0.232542 -0.000382 -0.897285 -0.751966 -0.652188 -0.701773 -1.158932 -0.122657 -0.467140 -0.278328 0.984453 0.623110 0.876294 0.628958 1.185388 -0.588521 0.184772 0.089172 -0.257526 0.485316 0.515876 0.520123 -0.423250 -0.502030 0.440215 -0.403359 0.586290 -0.036011 0.199437 0.200189 -0.979643 -0.250306 0.506936 0.723899 -0.059462 0.726053 0.790927 -0.758267 -0.555005 -0.037471 0.554508 -0.421720 -0.261258 0.390928 -0.805569 0.611407 0.140917 -0.016066 0.584620 0.058579 -0.310472 0.470386 -0.154342 0.162360 -0.472226 -0.198480 -0.361558 -0.303265 -0.834565 0.554336 -0.265542 -0.403696 -0.583361 -0.776186 1.098091 -1.119702 -0.479534 0.534517 0.144896 0.855188 -1.098254 0.531305 -0.549045 1.133249 0.342336 -0.105896 0.222957 -0.768847 -0.821747 -0.095692 0.293820 -0.136160 -0.007856 0.666332 0.618786 -0.106309 0.036743 0.861386 -0.269089 0.931539 -0.330891 0.353555 -0.309366 -0.662773 0.385270 -0.102017 -0.306860 -0.208468 0.520885 1.468378 0.276329 1.265528 1.135167 0.384143 1.004473 -0.541903 0.009261 -0.298891 0.683945 -0.393722 -0.407391 0.081862 0.748638 -0.138713 0.365649 -1.114183 -1.929630 -1.395784 -1.053282 0.141405 -1.065307 0.242267 -0.282540 -0.115022 -0.971547 -0.669891 -0.090138 -0.333454 1.006241 0.700609 -0.031872 0.740121 0.725742 -0.871146 -0.085339 0.864925 1.021212 0.231071 0.226639 -1.359559 0.770599 -0.737609 -0.068236 1.647234 -0.686273 0.419016 -0.331660 1.289588 -0.671161 1.398856 0.326497 -1.285812 0.553651 0.740432 0.373343 0.932785 -0.596250 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__minInitialPoints(int (*) [3]) = -3.297495 -12.865378 19.514521 14.521584 -1.129167 5.049404 6.634760 -1.890931 -0.789877 7.096881 -3.786730 12.367683 -9.728302 -3.570539 0.932023 1.852609 -10.412388 -8.329732 -1.113933 -3.355404 -3.748799 -3.071956 -7.089824 15.826170 9.471147 1.007997 -6.179049 -2.015403 -15.035495 -11.615472 -8.757747 0.262391 7.543238 -0.521205 9.566585 -15.363410 7.581440 14.993107 0.161079 -11.460443 4.178050 -3.072477 -0.411883 -1.374024 -6.687236 5.054482 9.648542 2.207392 1.504372 4.089564 -0.707234 -3.167701 10.081808 15.617049 7.165387 10.691745 14.199558 -4.624530 5.087976 -4.057145 2.029160 -10.066026 3.359063 -2.874770 -1.817302 -5.030044 -0.959389 -1.505803 -0.872234 2.567825 7.698053 -6.815081 -6.538437 -7.819511 -13.941929 -4.951871 1.372503 5.913249 13.961962 -9.804835 14.393660 8.376990 6.090546 3.027273 8.710685 0.837253 8.240165 3.386568 -3.505406 4.766148 -9.347037 -5.817225 -0.529278 7.532489 -8.694778 -9.939993 6.695845 -17.455170 -16.447556 9.077603 0.273653 -8.776305 -2.490363 -1.855920 2.201754 4.055075 -4.172804 -8.536734 -5.409313 4.339900 -4.572591 -3.557225 0.464525 2.484379 1.031370 2.752620 -13.038497 6.895565 8.646316 -3.772490 -2.292103 11.403826 0.926390 12.251486 -0.360591 3.376186 -1.220411 6.801257 8.277705 2.444843 -4.752869 -4.151579 -7.713848 -3.573435 2.173619 -2.407040 -7.213070 -4.531486 3.150790 6.616130 4.155500 10.935135 -0.656532 17.443513 1.743574 -4.293912 -8.592033 -13.199725 -12.576345 -5.596791 1.820778 -2.120934 -9.951061 3.446407 6.656275 -0.351386 -1.681354 5.549149 1.718188 3.709452 1.337328 -2.927316 0.925783 -7.828240 5.552176 -7.375666 -5.558148 7.853978 7.651118 10.869132 1.109257 -0.067977 4.708573 -3.707852 -6.946659 0.792733 0.862167 0.008144 14.087646 11.023987 19.417939 -2.674012 -2.558296 -0.814057 -3.379381 -1.588687 1.719409 -9.260886 2.973776 1.702710 -2.771131 16.163171 0.527652 -4.723023 10.454737 -0.686168 0.524067 -9.577294 8.448109 -5.920374 2.483264 -4.036500 -0.539380 -8.793249 -3.324085 -10.839024 -6.491800 16.395250 -13.634158 -10.706283 3.426291 3.989444 7.430565 -15.424881 15.379423 -4.354382 11.864994 -0.504750 -7.371621 3.697229 0.190573 -3.610861 3.176395 3.994188 -7.543118 2.125341 3.743141 2.601532 1.641609 1.490349 5.788395 -2.939417 5.320828 -6.497044 5.024701 -1.611921 -3.977440 -5.684079 -1.075496 1.711075 5.541296 -0.191318 -3.373678 2.458324 0.659284 -0.966426 9.231329 2.544900 -5.614268 0.384839 -0.919887 11.045165 -10.032687 -6.066907 -3.978198 5.729559 3.874225 4.785079 -16.691454 -6.220192 -11.361167 -9.639617 -6.181137 5.072058 4.362319 3.974186 -4.210013 -11.425028 -10.519600 14.713076 0.320060 2.209721 9.799689 3.250210 13.323625 4.485270 5.461140 -3.768061 -0.115843 3.733309 -0.307427 -1.278821 -6.554922 5.390687 -11.197011 8.292395 11.659102 -5.212461 8.990956 -1.947027 7.087498 -14.110008 14.462956 4.202102 -17.003119 0.610715 15.622077 7.018035 -12.748408 -8.314650 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::max(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 0.344078 -0.321787 1.248789 0.835616 -0.545086 -0.061527 0.115763 -0.370778 0.362690 -0.800891 -0.384330 0.221430 -0.565909 0.303336 -0.489126 0.226730 -1.348244 -0.490432 -0.226917 -0.316314 -0.108968 -0.161731 0.470014 0.253380 0.602373 1.029714 -0.370855 -0.168190 -0.486247 0.260793 0.723297 -0.229276 0.409755 0.901902 0.132907 -1.191266 0.494632 0.332401 -0.318598 -0.603866 0.518601 -0.511060 -0.054982 -0.965873 -0.276161 0.082861 0.071904 0.868921 0.386095 0.060980 -0.603472 0.103793 0.030593 0.884618 -0.354831 0.178960 0.476551 -0.073486 -0.072088 -0.239069 0.157013 0.056970 0.086036 0.187622 -0.172821 -0.753197 -0.273099 -0.869641 -0.315429 0.519210 0.072949 0.383876 -0.629821 -0.180729 -0.730394 0.026309 -0.607856 1.020358 0.789617 -0.857607 0.308752 -0.071833 0.154261 -0.019722 -0.033159 0.324452 0.176520 0.260427 0.149841 -0.109620 -0.851463 -0.233225 0.203087 -0.697254 -0.217959 -1.291071 0.413692 -1.164732 -0.550226 -0.041430 0.437278 -0.407812 0.380971 0.145786 0.016032 0.406937 -0.264679 -0.245984 0.356562 -0.005010 0.193996 0.034011 0.073646 0.472570 -0.169610 -0.603097 -0.953537 0.445608 -0.111823 -0.045627 0.558108 0.454363 -0.204096 -0.103127 -0.018716 0.130255 -0.390407 1.070839 -0.001863 0.041447 0.092421 0.203362 0.469938 0.290439 0.546183 0.971887 -0.540884 -0.130636 -0.271442 0.127267 -0.467785 -0.693205 -0.001096 0.074362 -0.045439 -0.721915 -0.595009 -0.396414 -0.674537 -0.948265 -0.073278 -0.354278 -0.216695 0.771279 0.455829 0.767260 0.586174 0.838208 -0.481078 0.024651 0.017288 -0.154919 0.451237 0.506124 0.408081 -0.288953 -0.297724 0.354708 -0.450872 0.395920 0.013851 0.130618 0.168726 -0.795084 -0.075270 0.481278 0.562021 -0.033271 0.497028 0.583866 -0.822610 -0.274636 0.008012 0.545356 -0.266985 -0.233061 0.375177 -0.540493 0.510053 0.081786 0.067882 0.323401 0.036310 -0.131286 0.268045 -0.117236 0.162351 -0.329891 -0.289688 -0.199803 -0.180590 -0.678089 0.565149 -0.177457 -0.295658 -0.345518 -0.583575 0.777289 -0.843534 -0.241804 0.495216 0.082616 0.715465 -0.636690 0.254310 -0.424463 0.890569 0.310477 -0.048727 0.192084 -0.791190 -0.692065 -0.095077 0.196273 0.024289 -0.127778 0.403641 0.517504 -0.132819 -0.006082 0.673532 -0.230205 0.847349 -0.193433 0.273144 -0.230034 -0.421310 0.349546 -0.051526 -0.374781 -0.251971 0.419468 1.209286 0.161861 1.115237 0.933534 0.142329 0.846689 -0.422206 0.008717 -0.229470 0.383160 -0.293737 -0.326761 0.195894 0.583756 -0.182130 0.230797 -0.795693 -1.511408 -1.117722 -0.666443 0.069809 -0.903976 0.182071 -0.254523 -0.106981 -0.557988 -0.487887 -0.042156 -0.244126 0.728596 0.459266 -0.106362 0.494194 0.594975 -0.727985 -0.066990 0.679747 0.801895 0.270801 0.265745 -1.170445 0.705386 -0.516330 -0.187828 1.346726 -0.621305 0.280439 -0.293269 1.051109 -0.473010 0.985311 0.190261 -0.933447 0.468125 0.550232 0.192025 0.938386 -0.433646 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -3.430659 -5.429670 8.734675 5.882435 -0.380697 2.564239 2.445213 -1.672970 0.407845 2.359329 -1.659260 5.323345 -4.663089 -1.069239 -1.340119 0.141686 -4.783048 -4.232759 -1.035950 -2.501619 -2.308489 -2.023211 -2.861376 6.771093 3.818648 -0.610597 -3.393509 -0.239963 -8.085064 -5.222742 -3.162709 0.205259 3.332028 -2.839264 3.323417 -10.099917 3.595864 7.025160 -0.233121 -5.486906 2.603867 -3.038053 -0.119915 -0.076876 -3.990350 1.215699 3.475693 -0.156847 1.366867 0.963436 0.638913 -0.351570 2.626902 9.724020 1.679845 5.089432 5.770269 -1.999057 0.468066 -0.909497 0.385780 -4.044114 2.106033 -0.707130 -1.958345 -2.522311 0.677894 -0.716649 -1.365612 1.831678 2.228405 -4.213247 -1.873911 -3.464137 -7.096352 -2.655402 4.407342 2.596830 6.369881 -4.406028 6.463175 2.110360 2.347734 1.717453 4.444031 0.112056 4.904937 1.001397 -1.550865 0.262035 -3.743453 -0.352001 -0.516606 4.867177 -3.648213 -3.740201 3.547948 -8.588893 -7.727601 3.343954 0.038069 -4.170478 -2.971928 -0.765110 1.393664 1.952487 -2.008956 -4.622504 -3.261261 3.469690 -2.098877 -1.576246 0.200634 -0.414735 0.138286 -0.209749 -6.025149 3.159385 3.636043 -1.508345 -2.859750 6.101623 -0.867062 4.734978 0.335004 2.540138 -0.822161 3.718030 2.106857 0.664416 -2.955915 -1.726842 -4.563963 -2.507340 0.409742 -0.122868 -4.206143 -1.802926 1.011062 2.356714 0.411437 3.734533 -1.918575 7.786528 1.770165 -2.242216 -3.821085 -5.171831 -4.621702 -4.360534 -0.317788 -1.541766 -5.391369 2.058491 3.405086 1.526575 -0.405006 4.869720 0.465552 2.670016 1.232751 -2.902292 1.448267 -4.627866 2.994838 -4.075011 -3.436973 3.296968 2.727628 4.893522 -0.156786 0.654482 1.147858 -2.727605 -3.629273 1.020593 1.495954 1.698194 6.455856 5.537904 10.269760 -4.207576 -0.213584 -0.010823 -2.405543 -0.519325 -0.008099 -4.321346 0.330383 1.955171 -1.652059 8.465393 0.376522 -3.065109 3.602742 -0.076166 1.314171 -5.207063 3.910753 -3.001546 1.287768 -1.856038 -2.622501 -3.680189 -1.546894 -5.503818 -4.678794 7.542184 -7.699560 -7.016355 3.092572 1.740770 4.407301 -9.330065 6.331739 -2.596145 7.052879 -0.873996 -2.044793 0.858381 0.910433 -2.105412 3.732982 1.667106 -3.821917 2.015139 3.741803 1.580828 2.199628 -0.142740 3.422881 -1.261327 2.536518 -3.237818 3.098308 -0.590015 -3.037299 -1.904256 -1.056346 0.247858 2.646194 0.903894 -0.841123 2.672569 0.196293 0.280319 5.939465 1.980064 -2.195969 0.779463 -1.274979 4.809692 -3.958414 -3.365279 -1.101218 3.486884 2.019901 1.438306 -8.086981 -4.622398 -6.593950 -6.955708 -0.663090 1.180012 1.295840 1.622575 -1.509244 -6.472898 -4.428180 7.083522 -0.226386 6.185899 4.077636 2.022457 5.870815 3.147173 1.122442 -1.136895 0.362172 1.668262 -0.764723 -0.938397 -3.691684 2.987275 -5.130454 4.225889 5.322825 -2.254150 4.407257 0.921808 1.102623 -6.497068 6.853974 2.129156 -7.064422 1.422695 5.805500 3.528938 -4.669571 -3.883911 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = 0.146068 -0.648043 1.600868 1.121655 -0.201354 -0.032195 0.604659 -0.339151 0.556271 -0.020982 -0.408356 0.529377 -0.837320 0.378982 -0.566715 0.742313 -1.252017 -0.777027 -0.017797 -0.302094 -0.153919 -0.323924 0.751718 0.095670 0.942173 0.577331 -0.530359 -0.693715 -0.807823 -0.510660 0.569047 -0.446375 0.618379 0.307247 -0.157564 -1.714278 0.693727 0.543181 -0.437822 -0.923939 0.762825 -0.457264 0.029817 -0.703698 -0.183049 0.154358 0.415412 0.819066 0.561668 0.545918 -0.120267 0.061667 0.477560 1.506602 -0.514190 0.421359 0.633561 -0.103556 -0.183263 -0.182169 0.307376 -0.153495 0.297396 0.355602 -0.019397 -0.833187 -0.475151 -0.807876 -0.686806 0.517773 -0.049679 0.414410 -0.844639 -0.014013 -0.583690 -0.041630 -0.862867 0.962278 1.272190 -0.943428 0.774819 0.079149 0.261816 -0.154556 -0.157475 0.373542 -0.055787 0.364306 -0.047786 -0.372677 -0.642785 -0.139563 0.111023 -0.267629 -0.190558 -1.490987 0.685649 -0.659555 -0.848293 0.185020 0.428397 -0.364083 0.136180 0.111838 0.085911 0.756274 -0.563734 -0.621297 -0.045725 -0.202071 0.270716 -0.165295 0.098696 0.046852 -0.389095 -0.454484 -1.138379 0.191684 -0.094411 -0.510710 0.137652 0.493437 -0.178636 0.247507 -0.006057 0.383771 -0.340446 1.077005 0.300377 0.447418 0.371155 0.245133 -0.279375 0.218245 0.810476 1.029970 -0.588335 0.070992 -0.491710 0.183850 -0.370855 -0.419397 0.107804 0.457303 0.553690 -0.807917 -0.841795 -0.479880 -0.293615 -1.020033 0.200254 -0.609237 -0.007461 0.591031 0.636907 0.297622 0.704255 1.326649 -0.737508 0.323006 0.026238 -0.208586 0.569873 0.326797 0.587009 -0.414387 -0.496312 0.370732 0.200208 0.329643 -0.029044 0.119272 0.304852 -0.977279 -0.106995 0.370585 0.534677 -0.413771 0.527111 0.481535 0.128432 -0.413745 -0.112536 0.657487 -0.228108 -0.193304 0.332124 -1.028858 0.681166 0.016372 0.038764 0.460236 0.147459 -0.518323 0.666482 -0.348184 0.068165 -0.422462 0.044656 -0.445677 -0.325402 -0.616050 0.402282 -0.198667 -0.372768 -0.277224 -0.229206 1.065804 -0.706553 -0.331186 0.384693 -0.047685 0.385094 -1.143961 1.345832 -0.605377 0.645387 0.035676 -0.173901 0.136047 -0.148977 -0.614007 -0.245254 0.360189 0.004250 0.257426 0.937670 0.554097 -0.136562 0.069385 0.885699 -0.137248 0.845431 -0.067136 0.464401 -0.281263 -0.554846 0.202805 -0.108447 -0.191689 -0.267416 0.276340 1.238708 0.273264 0.612570 1.052454 0.291554 1.137403 -0.606701 0.400550 -0.212852 1.017435 -0.386221 -0.288891 0.088723 0.578286 -0.302423 0.674913 -1.069082 -1.592400 -0.891359 -0.957706 -0.025587 -0.524090 0.379382 -0.468891 -0.029067 -0.956633 -0.634205 0.105026 -0.290292 0.510988 0.732436 0.023145 0.684887 0.630661 -0.613421 -0.195216 0.236000 0.700349 0.246200 -0.037240 -0.788998 0.495054 -0.887989 -0.073581 1.237224 -0.571231 0.134220 -0.280546 1.022563 -0.643897 1.369275 0.355154 -0.763210 0.831694 0.713835 0.795678 0.386331 -0.546483 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.095959 -0.566028 0.890574 0.680826 0.544303 -0.341075 0.548296 -0.030647 0.549405 0.259407 0.024709 0.638961 -0.778391 0.548068 -0.223793 0.425594 -0.609028 -0.996571 0.147197 0.115900 -0.938470 -0.234151 0.147088 -0.016030 0.401673 0.484307 -0.810695 0.004187 -0.846270 -1.021658 -0.084687 -0.522139 0.383565 -0.176001 0.129882 -1.235311 0.363464 0.641321 -0.109879 -0.504415 0.288966 -0.622448 0.234132 -0.436930 0.230041 0.425712 0.855827 0.297347 0.415732 0.512201 0.384887 -0.115535 0.156772 0.585037 -0.346467 0.304723 0.298068 -0.214823 -0.460589 -0.189015 0.132234 -0.328289 0.464178 0.111326 -0.404315 -0.070328 0.325783 -0.558535 -0.715880 0.593300 0.305652 -0.250461 -0.396353 -0.162382 -0.438429 -0.208096 0.095103 0.119513 0.846816 -0.558613 0.699964 0.031150 0.201378 -0.214769 -0.052907 -0.229919 0.565966 0.085535 -0.346657 -0.312226 -0.327661 -0.344516 -0.429700 0.845552 0.150449 0.070046 0.172119 -0.559897 -0.496271 -0.079401 -0.044059 0.230319 -0.758677 0.390556 0.327999 0.371954 -0.186174 -0.398163 -0.452188 -0.262700 -0.179495 0.132051 0.053220 -0.380750 -0.748085 -0.032894 -0.936701 -0.529983 0.106931 -0.579150 -0.294414 0.596749 -0.238954 0.766065 0.047742 -0.020202 0.483273 0.649882 0.462395 0.621234 -0.077569 -0.051198 -0.746486 -0.450721 0.093831 0.677964 -0.351331 -0.003313 -0.256491 0.173540 -0.623799 -0.270613 -0.350808 0.702584 1.047346 -0.755316 -1.123213 -0.136685 -0.065914 -0.603238 0.268325 -0.517883 -0.026153 -0.238119 0.619646 0.013975 0.413258 1.364408 -0.485677 0.022282 0.525642 -0.495368 0.661740 0.046705 0.426961 -0.540064 -0.364874 0.361205 0.261638 -0.180257 -0.139577 -0.576481 0.281743 -0.705061 -0.433471 0.215437 -0.022709 0.106792 0.203032 0.151111 1.097886 -0.746560 0.235994 0.046605 -0.001789 -0.026647 0.479943 -0.291368 0.530380 -0.076137 0.282227 0.301909 0.035615 -0.691584 0.649956 0.112592 -0.087312 -0.562122 0.129286 -0.200859 0.150963 -0.053004 0.176916 -0.205026 0.244614 -0.119058 -0.142509 1.015841 0.001147 -0.902267 0.658365 -0.259587 0.670484 -1.215883 0.665373 -0.351594 0.174148 -0.388162 0.092512 0.171744 0.035013 0.121886 0.491694 0.212591 0.373199 -0.083131 0.775795 0.367373 0.456120 0.367632 0.531488 0.572429 0.593196 0.554710 0.242365 0.083882 -0.105888 -0.096771 -0.222912 -0.121561 0.391698 -0.171607 0.545419 0.445066 0.261925 0.758743 0.327377 0.622846 -0.574229 0.109509 -0.039274 0.546440 -0.444650 -0.219505 0.265986 0.305715 -0.514173 0.583981 -0.427985 -1.058871 0.064255 -1.569495 -0.343967 0.165966 0.426297 -0.322229 0.087789 -0.271455 -0.118319 0.727915 0.232758 1.326411 0.201499 -0.068359 0.537629 0.158470 -0.364157 -0.166133 -0.331005 -0.285165 0.337341 0.179373 -0.286403 0.126259 -0.632576 0.385387 0.559309 -0.859923 -0.251587 -0.443354 0.806537 -0.807191 0.534372 0.037982 -0.270207 0.244250 0.281518 1.077206 -0.029927 -0.658623 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__dist(Point, Point) = -0.053513 -1.721005 3.433107 2.427410 -0.702105 0.641237 0.464738 -0.709720 0.247755 0.600224 -0.451416 2.036073 -0.912400 -0.247078 -0.165981 0.682129 -2.214711 -0.869818 -0.311141 -0.850400 -0.698726 -0.344438 -0.974365 2.090211 1.400235 0.884016 -1.034800 -0.134655 -1.425657 -2.198477 -1.176904 -0.023951 1.079541 -0.753290 1.778133 -3.581254 1.550708 2.330519 -0.178595 -2.370475 0.737884 -0.244383 0.224464 -0.071999 -1.750213 0.898921 1.186046 0.717114 0.259569 1.120978 -0.425239 0.354066 2.249538 2.980176 1.358721 1.455458 1.842209 -0.746986 0.419433 -0.847024 0.407788 -1.086925 0.273082 -0.986842 0.417212 -1.264183 -0.719913 -0.031295 -0.351214 0.386191 0.693048 -1.461241 -1.249276 -1.384804 -2.657254 -0.781879 -1.034066 1.498699 1.920803 -1.847733 1.639101 0.903058 0.406082 0.835500 1.138072 0.231916 1.045375 0.779486 0.007717 1.269352 -0.418817 -1.163882 0.543634 -0.592826 -1.721320 -4.003516 1.049632 -3.481595 -2.145013 1.684870 0.640049 -1.535428 0.019060 -1.454336 0.471315 0.993627 -1.204272 -1.008340 -0.384769 0.851628 0.117035 -0.439959 0.459690 0.530641 0.498748 0.436063 -2.045914 1.482753 1.470362 0.116134 0.344844 1.872856 0.637560 1.334285 -0.282363 0.570290 -0.472669 1.924863 0.993947 0.727638 -1.882908 0.355578 -0.063083 0.295029 0.136655 -1.342789 -0.905232 -0.982674 0.037302 1.190591 0.354704 1.691910 -0.315177 1.762067 1.070070 -0.067510 -1.403708 -1.957092 -2.729132 -1.434154 0.097340 0.005278 -1.769315 1.524387 1.089354 0.233137 0.205926 -0.173017 0.164785 -0.619029 -0.096584 -0.586495 0.488677 -0.687612 0.789910 -0.883288 -0.704112 1.379239 0.834355 2.226598 0.305356 0.108333 0.868420 -0.078051 -0.152338 0.440429 1.207194 0.325450 2.027187 1.966925 2.120538 0.663223 -1.149022 -0.050965 -1.031257 -0.127079 0.042958 -1.205522 0.223709 0.469661 -0.139775 2.414834 -0.256773 0.198289 1.943523 -0.074191 0.107602 -1.207154 0.656618 -0.982507 0.160709 -0.587893 0.079339 -1.606877 0.016306 -2.215571 -2.023165 2.608479 -2.964116 -0.980429 1.036632 -0.417227 1.192911 -1.733831 2.238170 -0.603467 2.050733 0.410405 -0.692835 0.592058 -0.958471 -1.031655 0.361691 0.621097 -0.842435 -0.389698 0.714817 0.592082 -0.473953 -0.150616 1.158387 -0.933381 1.623392 -1.099022 1.145483 -0.824997 0.016066 -0.529116 0.057148 -0.333185 0.263385 0.414133 -0.122025 -0.660728 0.756196 -0.074093 1.371279 0.730386 -1.054846 0.473706 -0.383297 1.035569 -1.654664 -0.972686 -0.199032 1.691567 0.593524 0.287735 -2.491341 -0.947172 -3.880138 -1.029960 -0.668699 0.346133 0.396618 -0.060223 -0.956050 -1.196908 -1.953511 3.285888 -0.005690 -0.551496 1.719183 0.149648 2.215872 0.924866 0.607116 0.033541 -0.172899 -0.003006 0.481421 -0.092554 -1.211071 1.261790 -1.643194 0.693603 2.312036 -1.068947 1.559323 0.080372 0.891054 -2.022169 1.880066 0.382874 -2.280529 -0.112597 2.592823 0.886267 -1.615349 -1.308336 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.064182 -0.358805 0.298407 0.295030 0.225357 -0.060283 0.239882 0.014784 0.158390 -0.058908 0.063487 0.197333 -0.407644 0.202762 -0.236463 0.070367 -0.244179 -0.422771 0.025364 0.088675 -0.322438 -0.237256 0.031905 0.211815 0.048189 0.207926 -0.235174 0.006006 -0.542213 -0.137022 0.175448 -0.070655 0.253032 0.154186 -0.022381 -0.643547 -0.063536 0.286288 -0.064846 -0.167294 0.088640 -0.408232 0.218275 -0.388543 -0.027103 -0.039524 0.253962 -0.063272 0.183173 0.141970 0.064294 -0.012507 0.179167 0.481997 -0.070344 0.157306 0.205362 0.118558 0.008324 -0.094537 0.066767 -0.032135 0.278015 -0.038596 -0.232219 0.004535 -0.163438 -0.382092 -0.235215 0.222569 -0.026757 -0.020710 -0.265338 -0.134714 -0.246769 -0.141141 -0.347952 0.186411 0.282134 -0.512179 0.316465 -0.104738 0.155595 -0.095133 0.100578 -0.002289 0.183111 0.092318 -0.099987 0.069854 -0.106296 -0.024161 -0.133036 0.052798 0.063312 -0.290892 -0.032696 -0.306822 -0.294442 0.110640 -0.068898 0.143360 -0.212279 0.114559 0.072296 0.062424 -0.324353 -0.245613 -0.081548 -0.018086 0.101706 0.011136 0.039424 -0.010670 -0.313121 -0.368443 -0.347670 -0.179788 0.069414 -0.275021 0.071286 0.431862 -0.243962 0.306518 -0.003684 -0.148841 0.142473 0.600953 0.170470 0.175876 -0.215567 0.068648 -0.235743 -0.226261 -0.078617 0.451080 -0.261990 -0.104458 -0.037961 0.083482 -0.183802 -0.057499 0.155869 0.096914 0.186506 -0.342107 -0.381354 -0.182186 -0.124185 -0.527798 0.156047 -0.220123 0.196564 0.145962 0.335645 0.184973 0.166801 0.568850 -0.197063 -0.163830 0.221050 -0.340792 0.253285 0.161245 0.185609 -0.243091 -0.274976 0.294285 0.052339 -0.095104 0.113905 -0.165669 0.058793 -0.183932 -0.115851 -0.021207 0.146149 -0.048680 0.297573 0.135693 -0.073296 -0.429945 0.171355 -0.039534 -0.122402 0.137212 -0.024088 -0.186148 0.327477 0.118296 -0.029925 0.033272 -0.124746 -0.098319 0.271394 -0.021504 0.019938 -0.317152 -0.091649 -0.067574 -0.010178 -0.178278 -0.056033 -0.005109 0.021485 0.022920 -0.168695 0.503034 -0.284419 -0.175303 0.254873 0.069084 0.124795 -0.471462 0.312652 -0.166852 0.351949 -0.047410 -0.118541 0.005279 0.037721 0.066828 -0.001707 0.140075 -0.076347 -0.132715 0.309563 0.224325 0.089924 0.298307 0.242290 0.194385 0.277458 0.162145 0.136698 0.069707 -0.022523 0.134514 -0.234032 0.033545 0.138075 -0.114250 0.620378 0.313885 0.302698 0.359144 0.251775 0.294117 -0.272785 -0.156750 0.096205 0.306960 -0.136607 -0.018411 0.019986 0.118439 -0.148860 0.179811 -0.266393 -0.545875 -0.224168 -0.568207 -0.063463 -0.016950 -0.045506 0.039673 0.080338 -0.353579 -0.125531 0.037248 -0.136530 0.511629 0.042837 0.032959 0.122969 0.154343 -0.195020 -0.000864 0.122779 -0.015914 0.096160 0.308857 -0.158709 0.082773 -0.375331 0.148099 0.237454 -0.336413 0.001775 0.136407 0.452830 -0.310338 0.297817 0.019558 -0.051111 0.108194 0.226169 0.365479 0.111643 -0.298266 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__cost(Point*, int, int, int) = 1.660721 -1.930441 8.233075 4.284033 -0.870744 0.257192 1.430949 -3.999541 2.878109 -1.670701 -2.201646 2.644546 -2.926405 1.977313 -8.036446 2.003773 -6.218061 -3.590775 -1.879050 -3.806921 -2.413142 -0.804646 1.571400 1.024462 4.045729 1.323252 -3.008771 -0.518304 -5.667246 -3.882046 1.104904 -1.173170 0.348857 -3.610641 0.172392 -4.764476 4.274685 4.343431 -2.343392 -3.059756 3.594417 -3.606871 -1.824382 -2.748213 -0.916017 -0.083704 0.469231 3.852107 2.725838 1.232460 0.868121 3.115155 1.624815 9.135155 -2.691174 3.174179 2.984614 0.659418 -0.584526 1.467992 0.485441 0.160873 -0.066499 -0.102344 0.362406 -3.981992 -0.827458 -2.379924 0.419811 3.315117 -1.079679 -1.960926 -2.202707 -1.019107 -6.755149 -0.644306 -4.871968 3.712954 4.389128 -5.225751 2.550772 -0.221565 0.856398 0.488337 0.747965 0.530885 3.090974 1.315292 0.641360 -2.079091 -3.002659 2.220569 0.704018 -2.009646 -3.061409 -9.975614 4.146854 -10.805061 -5.159810 0.471554 2.723003 -3.624469 2.793272 0.683621 0.150100 -0.286749 -2.540593 -2.479896 1.340788 1.465072 1.020013 -0.124945 2.088666 -1.369026 1.349550 -0.440876 -5.867734 2.739795 0.112439 -0.082997 -0.588971 4.208691 1.269863 0.024072 -0.036255 2.100451 -1.236543 4.182163 -1.270307 2.585738 -3.557202 4.470851 -1.511509 2.424745 3.111354 -1.299642 -4.179761 2.259165 -1.262658 1.733675 -3.127604 -0.399216 -4.485650 2.263590 -1.338191 -4.424753 -3.869045 -1.984305 -3.499826 -4.309950 -0.407250 -1.430588 -7.147428 -0.355579 3.398380 4.679506 3.159488 3.390247 -0.645458 -0.836502 1.667737 -1.239004 3.565665 -4.217185 2.879543 -2.709529 -3.070754 2.395494 -0.604394 2.038553 -1.047619 1.263668 0.888998 -5.037063 0.872228 1.037588 2.820156 -1.100896 4.929851 4.496658 -1.168790 -3.807442 0.901391 2.592424 -3.243656 -0.193835 0.827013 -3.736893 1.629198 2.124527 2.662377 4.365500 0.992869 -0.343920 2.302462 -0.939902 1.686362 -2.797995 -1.164390 -1.734176 -2.752932 -1.624746 2.789796 -1.127380 -0.205181 -2.651542 -6.481663 5.009449 -8.760253 -2.307310 5.336639 1.157203 2.439820 -4.392952 3.124929 -2.864865 5.043398 2.771739 1.274057 0.896591 -0.676985 -4.940473 2.290056 1.271358 -1.981964 2.338456 3.726846 2.814059 2.259918 -0.647097 4.935911 -3.664995 4.642816 -2.012851 3.021841 -0.807342 -5.656071 0.320590 -0.857257 -3.319485 -1.463508 4.079361 4.415062 0.267420 4.139705 3.096995 2.790573 6.043850 -2.739286 2.271107 -2.341612 0.688553 -2.878563 -2.903875 2.495241 1.221622 -0.750307 1.636700 -6.305359 -6.897966 -9.421662 -4.777272 3.005926 -6.431015 1.017552 -2.310130 -1.167473 -4.887131 -4.528780 4.365160 -1.326663 1.239187 4.267123 0.976523 2.998697 3.552565 -2.205084 2.150076 0.324431 3.080075 2.009451 -1.119158 -4.384843 4.337881 -3.259139 0.508443 6.541736 -3.128492 2.528236 1.778523 0.457237 -3.977056 4.243576 0.784576 -4.157333 2.447091 5.451834 3.314949 2.410001 -3.140011 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -3.057886 -8.988692 11.960509 8.752376 1.347857 3.475409 5.082488 -1.503690 0.418193 5.357265 -2.866200 8.619547 -6.750236 -0.610870 -0.531654 1.041220 -6.500695 -7.171767 0.846438 -1.416306 -4.000785 -3.868263 -4.407448 10.002212 5.044391 0.465702 -4.603366 -1.544523 -11.880532 -7.821650 -4.997206 -0.690341 4.855135 0.175353 5.858495 -11.374132 4.137857 9.346804 0.761082 -8.162107 2.452371 -4.075614 0.358565 0.883745 -3.006704 4.412222 7.252899 2.006145 2.108127 3.102993 2.793906 -2.807214 5.666447 9.568295 3.738618 7.145497 6.704844 -3.857071 2.417029 -2.327248 0.968711 -6.862697 4.034232 0.117064 -2.533849 -1.709909 0.429411 -1.131111 -2.596403 3.236037 4.723513 -4.900715 -4.421630 -4.161448 -6.717944 -3.526413 0.620455 3.822046 9.485761 -5.313539 11.066285 4.366634 5.115033 -0.647145 6.364452 -0.722665 7.424490 1.237246 -3.821903 1.063958 -6.931086 -3.084499 -1.977074 5.767693 -4.727436 -3.254723 2.982066 -10.141499 -10.572606 5.184033 -1.131801 -4.557713 -3.161349 1.585100 3.292934 2.500382 -2.659635 -7.005185 -4.490913 3.717584 -4.464874 -2.108100 -0.322097 -0.953814 -0.870842 0.101852 -7.922135 2.015167 5.799166 -3.636876 -2.803051 9.043340 0.060641 8.681535 0.498553 1.436157 1.327942 5.679216 5.411875 1.596042 -2.500779 -4.368779 -8.071682 0.076353 0.929188 -1.543098 -5.630096 -2.858778 2.430649 4.331485 0.738357 5.858046 -1.377749 11.623507 5.161755 -4.053128 -7.553804 -7.721682 -5.121447 -4.203041 1.015610 -2.448005 -5.334000 0.317123 5.583961 1.249925 -0.163544 4.857232 0.212444 3.309942 2.157156 -2.426107 1.728655 -3.582439 4.123368 -6.000073 -4.080082 5.573627 5.593211 5.178526 -0.123817 -1.374127 2.295021 -3.250866 -5.389602 2.041887 1.852850 3.096004 9.640847 6.758898 14.935205 -3.570332 -1.106200 -0.629293 -1.841428 -1.284713 1.276870 -6.183593 3.518541 1.062769 -1.650261 10.588665 -0.288032 -3.470800 6.603384 0.500409 1.107517 -7.700175 4.950331 -3.881644 1.931533 -2.228604 -1.903922 -5.366558 -1.829687 -6.309388 -4.497136 11.593757 -6.907071 -9.259153 3.927712 -2.243941 5.148533 -12.213792 9.440475 -3.803694 5.327087 -2.017754 -4.510413 0.484220 1.231887 -0.895372 4.804660 2.781957 -4.063923 2.823847 5.324886 2.249653 2.672354 2.043106 4.523114 0.371643 2.793111 -2.394999 3.620339 -0.184325 -0.625925 -3.034019 -2.005511 1.017544 5.252541 -0.788180 0.688581 3.999479 -0.565540 0.982280 7.102720 1.852663 -3.998718 -0.126152 -2.037975 7.248473 -6.801833 -5.258899 -2.025189 2.683955 1.170915 1.799350 -10.932810 -5.980795 -6.701860 -9.558127 -3.270574 1.902867 3.688323 2.821868 -1.430848 -8.518592 -5.630027 9.358296 0.646011 6.155204 5.380108 1.364910 9.045563 3.480168 2.342870 -1.964190 -1.902051 0.826138 -1.255790 -0.064033 -4.173159 2.961664 -8.105594 8.134255 6.935133 -4.542847 4.571765 -0.344271 5.417220 -10.233198 8.794332 3.267135 -9.626750 0.491639 6.885199 4.919140 -7.673498 -6.361614 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = 1.614300 -0.874697 4.058320 3.098556 -1.530461 -0.279051 0.260610 -1.368857 1.470575 -0.254793 -0.818319 0.812857 -0.875106 1.026049 0.654391 2.290539 -4.035294 -0.770465 -0.187458 -1.249837 -0.982658 -0.206575 1.093272 -0.201715 1.882628 2.686231 -0.934889 -0.850184 0.799977 -1.191055 1.644281 -1.084830 1.297642 2.484083 0.820045 -5.226793 2.193640 0.303417 -1.061517 -1.886432 0.916589 -0.465336 0.134006 -1.900703 -0.553282 0.743302 0.704674 3.000920 1.309525 1.500316 -1.136173 0.090725 1.785140 3.463027 -0.563193 0.503935 1.231394 -1.008432 -0.411135 -0.400749 0.849787 -0.074022 0.498587 0.424944 0.717616 -2.507444 -1.051169 -2.178099 -1.223312 1.342073 0.761183 0.187392 -2.196687 -0.896898 -0.493220 -0.297926 -5.319250 3.276083 2.494373 -2.686582 1.020344 0.441672 0.397351 0.137493 -0.053012 0.716280 1.040273 1.008465 -0.023662 0.416402 -0.526256 -2.536062 1.428255 -2.489171 -0.557350 -4.643663 0.690853 -1.339186 -1.335087 1.044041 1.736304 -0.509787 0.200819 -1.092057 0.732791 1.139183 -1.076109 -0.712649 0.412084 -0.739747 0.201181 -0.233594 -0.418795 0.798397 -0.663609 -0.200181 -2.878743 0.875920 -0.040476 -0.084748 1.146340 1.047942 0.336173 -0.415265 -0.450528 0.431133 -0.997703 3.071899 0.343857 1.415674 0.777561 1.208695 0.421435 2.131997 1.936771 1.052350 -0.106785 -0.712521 -1.137998 0.838109 -1.563155 -0.279062 0.705109 1.410318 1.656212 -0.851113 -2.255182 -1.187833 -1.500811 -2.247434 0.958157 -1.387688 -0.033033 2.039080 1.424668 1.264149 1.826162 0.435674 -2.260486 0.365112 -0.979611 0.756467 1.483844 2.115986 1.223189 -0.844766 -0.051218 0.755161 0.062329 0.661046 0.389032 -0.620707 1.182037 -1.708629 -0.085193 1.370404 1.380833 -0.895801 0.752366 1.281985 1.752394 -0.023445 -0.571422 1.537912 -0.602753 -0.710646 1.259814 -1.543041 1.415755 -0.032613 0.511176 0.934435 -0.060397 -0.363418 0.636935 -0.338527 -0.334417 -0.017919 -0.703380 -0.516814 -0.680513 -0.842431 1.891829 -1.266523 -0.488053 -0.662807 -0.429820 2.460671 -2.303908 -0.084821 1.945378 -2.102542 1.002834 -1.380587 3.676645 -1.274255 0.462669 -0.538024 -1.188554 0.097514 -1.607035 -1.901806 0.051823 0.777874 0.666419 -0.985484 1.889215 1.354501 -0.462973 -0.030083 1.915322 -0.685460 2.462326 -0.024108 1.653981 -1.105263 0.574877 -0.290723 -0.002781 -0.852745 -0.995683 0.715779 2.610564 -0.448133 2.092126 1.761783 0.136168 2.005405 -1.627542 1.258720 -0.438494 1.142047 -1.172488 -0.651408 0.892128 1.177863 -0.824140 1.053989 -2.207870 -2.470860 -3.136845 -0.065518 -1.296918 0.051609 1.029741 -1.221575 -0.430442 -1.001776 -1.305033 1.105626 -0.445331 -1.351398 1.493619 -0.245426 1.581566 1.575831 -0.684024 -0.788427 0.029547 0.612404 1.049114 0.440433 -2.368474 2.087100 -1.583087 -0.462511 3.292456 -1.320724 0.283103 -0.980332 3.567639 -1.200259 2.108427 0.311462 -1.677305 0.852886 2.778940 0.974733 0.978292 -1.271459 -PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -1.128908 -2.816037 6.630794 3.954339 -0.562863 0.661519 2.936587 -1.182048 1.380078 1.702175 -1.290319 1.260819 -4.165642 -0.333834 0.059070 0.991484 -4.663264 -3.463987 -0.694120 -1.568971 -1.954307 -2.466438 0.736384 3.062488 3.321363 1.151761 -2.343733 -1.334791 -3.197221 -3.208323 0.325938 -0.655123 2.549186 1.561935 1.510119 -7.378952 3.551997 2.818461 -0.484592 -2.121026 2.332503 -1.274405 -0.028386 -0.616429 -1.879358 1.389345 2.731418 3.638865 2.395753 1.483118 0.954151 -2.335772 1.646341 6.431906 -0.174166 2.472750 2.859609 -1.221796 0.247422 -0.233865 -0.111593 -2.808526 1.062048 1.214546 -1.237160 -0.937096 1.504757 -2.475404 -2.407105 2.946663 1.356086 -1.594984 -2.533749 -1.958655 -2.429569 -0.673853 0.488826 3.348594 5.053439 -3.562323 4.053421 1.542910 1.975839 0.128398 0.068690 0.029868 2.286116 0.254168 -1.181623 -1.558399 -4.501006 -1.929460 -0.987318 0.552082 -1.384434 -3.199833 1.992723 -3.804944 -4.847896 1.064385 0.152988 -2.531399 -1.464796 0.935614 1.687694 0.724299 -0.196494 -3.256894 -2.087999 1.385064 -2.398001 0.592005 -0.073672 0.021943 -1.208345 -0.641711 -4.918730 1.889097 0.549717 -1.853909 -1.059723 3.651660 -1.620685 3.012848 1.478180 1.970641 -0.441401 3.512602 2.574773 0.692348 1.017531 -0.947716 -1.799683 -0.208534 1.574896 2.019256 -1.654647 -1.178995 -0.165484 1.182292 -1.654067 1.069237 -0.506438 4.163735 1.665627 -3.481240 -4.027925 -2.335976 -2.832813 -4.011747 1.150335 -2.065550 -1.958913 1.562527 2.162116 2.272466 0.621848 4.454539 -2.627695 2.468027 0.311198 -1.462268 0.133668 -0.306816 2.485730 -2.773572 -1.963304 1.501328 1.615989 1.986908 -0.794150 -0.777590 0.798729 -3.713075 -2.452986 0.694276 0.199386 0.509598 2.389787 3.479336 6.402334 -3.107360 0.010446 2.102185 -0.955790 -1.390275 1.847454 -3.681518 1.986730 0.371748 -0.928162 4.343892 0.513909 -2.015904 2.937220 -0.823742 0.257970 -3.497710 1.197184 -1.479246 0.271122 -2.096454 -0.594866 -2.405016 -1.142232 -1.833128 -1.961646 4.700451 -2.897065 -4.286487 2.658169 -0.288328 2.746348 -5.374508 6.504318 -1.817184 2.510536 -0.601375 -2.079119 -0.100859 -0.456427 -0.382973 1.438794 -0.059280 -0.428939 1.802146 3.973345 1.485687 1.462075 0.548664 3.041123 -0.046045 2.738263 -1.190303 1.333667 -0.928142 -1.994198 -0.662654 -0.580156 -0.275551 1.280516 -0.102593 2.161005 2.998713 0.413380 2.793337 2.693524 2.527668 -1.379658 0.358418 -0.519168 3.816823 -2.740329 -2.297272 0.361698 1.578195 -0.795387 1.850983 -5.466467 -4.880914 -3.063516 -5.570187 -1.733806 -0.804776 1.969430 -0.028379 -0.659762 -3.927110 -2.443789 3.031429 0.242345 3.466264 2.748863 0.290088 4.082775 3.613013 -0.956335 -1.383956 1.719295 1.859287 -0.513085 -0.120941 -3.878256 2.397571 -3.514245 2.359904 4.289816 -2.697382 2.093229 -2.134917 2.750314 -5.034737 5.216782 1.355381 -3.820421 1.981387 2.237775 2.631441 -0.805828 -2.457447 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::priority_queue(int*, int*, std::greater const&) = 0.803547 -1.140399 7.940465 4.588587 -2.266706 -0.289397 2.626552 -3.976492 3.152408 -0.545967 -0.814197 0.293958 -3.658885 1.236284 -1.704817 2.963365 -6.607034 -2.330502 -1.650102 -4.121417 -1.669245 -1.555212 4.011706 -0.179726 4.378517 2.382090 -1.920619 -2.459496 -1.518316 -3.399591 3.566286 -1.259903 2.386410 1.640656 -0.052563 -9.371302 4.435753 1.828059 -2.484793 -2.533194 3.780027 -1.110945 -0.555085 -1.536677 -1.319734 0.591996 0.365337 4.246569 3.837891 2.423412 0.654714 0.398156 1.727448 7.179177 -3.119938 1.703240 1.549997 -1.139158 -1.461840 1.091806 0.110024 -0.093941 0.656145 1.201863 0.382237 -4.190452 -0.028101 -3.633141 -3.554710 3.603610 -0.163277 -1.180590 -3.101694 -1.426598 -2.484009 -0.569185 -4.041244 4.691887 5.085083 -4.197708 2.363544 -0.397264 -0.514025 -0.955762 -0.837122 0.748690 1.477907 0.761223 0.458956 -1.583195 -2.289188 -1.635233 1.109431 -1.396836 -0.918353 -7.543789 3.229346 -3.643095 -3.985174 0.602284 3.192646 -2.531022 -1.378661 -0.261974 0.494194 1.492517 -2.053299 -3.002906 -0.468626 0.427872 0.141021 0.609921 -0.355964 -0.024101 -1.634596 -1.363045 -5.329490 2.077320 -1.238433 -0.798174 -0.822402 2.651825 -0.682571 -0.144713 1.104396 3.085740 -2.288220 4.706837 -0.354049 2.412875 1.462437 2.327067 -0.276450 0.734061 3.237991 3.192563 -0.917333 -0.750848 -2.958993 0.903340 -3.932804 -0.390465 -0.167412 2.477493 3.042220 -3.363559 -3.712753 -0.080784 -1.911681 -6.029804 1.176876 -2.745052 -1.660263 2.164179 2.244159 2.617151 3.037334 4.191537 -3.356024 1.109351 -0.354146 -1.405512 2.772211 1.099887 3.364073 -2.129183 -1.903065 0.357393 -0.555665 1.898803 -0.659367 0.469074 0.655198 -5.075858 -1.080772 0.876395 2.000148 -1.532248 1.164095 3.854844 3.699894 -2.438542 -0.149265 3.955558 -1.945812 -1.150126 2.046102 -4.067138 1.783624 0.907749 0.086859 3.378338 0.487665 -1.208468 2.068402 -1.515904 0.627759 -2.076596 -0.842299 -1.877814 -0.743746 -2.703475 0.703921 -1.633485 -1.533974 -1.311250 -2.214565 4.351391 -3.857264 -2.329587 4.975744 -1.630627 2.157522 -4.974009 6.930334 -2.191092 1.876773 -0.987341 -0.491715 -0.254418 -0.854743 -3.505766 0.983614 -0.004191 0.255927 1.525128 5.961081 2.388107 0.451994 -0.954553 4.970549 -1.899661 4.827222 -1.411526 3.824499 -1.960410 -2.547347 0.483547 -0.174890 -2.453007 -2.284685 1.908470 5.062794 1.204980 2.491973 3.819753 1.505719 5.448878 -1.903035 3.358661 -0.457742 2.430119 -1.653389 -1.845929 2.962092 2.485261 -1.770919 2.583507 -5.312994 -6.731046 -4.598583 -4.835306 -0.040550 -2.369193 2.124414 -2.057173 -0.846625 -3.643484 -2.914107 1.964245 -0.748927 1.771729 3.207314 0.459849 3.002310 4.895473 -2.450887 0.474600 0.920406 2.998964 1.165797 -1.165791 -4.133337 3.530365 -3.188372 -0.257485 5.719778 -2.066342 1.595785 -2.185225 4.367665 -4.122517 4.748256 0.444800 -1.995303 4.514096 3.610798 2.728371 2.953030 -1.748114 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::top() const = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::pop() = 0.832884 -0.557337 3.226805 2.454416 -1.513133 -0.069244 -0.022019 -1.477645 0.900069 -0.601016 -0.546151 0.607736 -0.998975 0.818877 -0.062570 1.579738 -3.301065 -0.520596 -0.687107 -1.270177 -0.592619 -0.218174 1.167793 0.257989 1.596130 2.312244 -0.951873 -0.387463 0.235280 -1.263661 1.192933 -0.598843 1.210939 1.811048 0.359531 -4.067437 1.888848 0.828481 -0.912044 -1.341736 1.220438 -0.639490 -0.136336 -1.473415 -1.230898 0.462520 -0.064275 1.482309 1.209279 0.761314 -0.695476 0.529392 1.397283 2.415924 -0.624302 0.557704 0.810184 -0.686569 -0.549872 -0.461380 0.422207 0.342976 0.447369 0.257453 0.316446 -2.242148 -0.720882 -1.491177 -1.137794 1.224428 -0.045814 -0.081894 -1.556727 -0.771365 -0.991108 -0.170494 -2.083539 2.431734 1.818659 -1.870051 0.623140 -0.140234 -0.496873 -0.060929 -0.005922 0.549848 0.792705 0.683980 0.448700 0.102782 0.013032 -1.397419 1.223842 -1.149532 -0.744024 -3.348442 0.891211 -1.973844 -1.330685 0.432603 1.496452 -1.016895 -0.077208 -0.882102 0.229493 0.855085 -0.704851 -0.710837 0.577270 -0.056148 0.553556 -0.293543 -0.610901 0.757035 -0.444172 -0.225122 -2.318667 1.066691 -0.267647 0.063285 0.843860 0.905167 0.325239 -0.516643 -0.189560 0.752811 -1.014956 2.479721 -0.414936 1.070283 0.167184 1.280685 1.341114 0.835911 1.385357 0.645850 -0.632652 -0.889162 -1.098248 0.480000 -1.332579 -0.387431 0.189279 0.938000 1.377454 -0.678553 -1.450051 -0.588457 -1.732941 -2.567940 0.237471 -1.037522 -0.433193 2.026067 1.099101 0.800932 1.491032 0.944292 -1.389098 -0.009919 -0.302645 -0.143562 1.526832 1.124798 1.032877 -0.738350 -0.552457 0.879881 -0.461336 1.018245 -0.001578 0.313372 0.534477 -1.356210 -0.177402 1.347299 1.127602 -0.202821 0.797396 1.349523 1.302973 0.212984 -0.040726 1.347888 -0.759673 -0.353848 0.750525 -1.347511 0.733597 0.278324 0.193818 1.249014 -0.072173 -0.247295 0.512435 -0.318270 0.136292 -0.687022 -0.146540 -0.572283 0.067590 -1.130457 0.538599 -0.542954 -0.580593 -0.787855 -0.845886 1.977841 -2.427368 -0.412394 1.847173 -0.879612 1.174067 -1.497239 2.157877 -1.031285 1.226461 -0.225231 -0.708135 0.357830 -1.709871 -1.826268 0.194384 0.515086 0.320389 -0.590077 1.552591 1.112906 -0.459766 -0.441301 1.608535 -0.557523 2.376694 -0.493403 1.559763 -0.611278 0.002251 0.070823 -0.080283 -1.157103 -1.008320 0.745433 2.090445 -0.023674 1.847696 1.353237 0.324151 2.054931 -1.079664 1.221785 -0.407626 0.604592 -0.732768 -0.738508 0.962382 1.508155 -0.431719 0.892801 -1.968500 -2.495999 -2.957207 -0.795689 -0.469173 -0.457621 1.003495 -0.869331 -0.477293 -0.888480 -1.348784 1.371707 -0.486813 0.538988 1.170156 0.011151 1.155658 1.504261 -0.727117 -0.159236 0.175514 1.023127 0.921906 0.326577 -2.124378 1.874623 -1.001038 -0.388755 2.755441 -1.171456 0.721241 -0.737647 2.228360 -1.125481 1.864489 0.132564 -1.330918 1.330433 1.712602 0.148330 1.107115 -0.960991 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 0.801566 -0.628849 3.617204 2.702703 -1.531813 -0.079608 0.165496 -1.650731 1.061238 -0.552458 -0.562807 0.675504 -1.197802 0.887192 -0.195211 1.769374 -3.553324 -0.675816 -0.745164 -1.485323 -0.623803 -0.264208 1.389128 0.210247 1.852667 2.263712 -1.077724 -0.614924 0.010076 -1.432999 1.341599 -0.692540 1.362426 1.714593 0.239516 -4.556932 2.107001 0.985883 -1.062051 -1.477891 1.478346 -0.783594 -0.127141 -1.554715 -1.286383 0.455454 -0.045566 1.546396 1.425415 0.883283 -0.588758 0.638370 1.484803 2.838929 -0.877183 0.660635 0.846588 -0.748522 -0.689366 -0.401930 0.432295 0.347194 0.547880 0.276653 0.310331 -2.521670 -0.779024 -1.630846 -1.345062 1.333132 -0.078499 -0.105091 -1.685480 -0.731106 -1.135392 -0.239732 -2.114779 2.588945 2.044667 -2.035228 0.780955 -0.192994 -0.560438 -0.102506 -0.036105 0.632210 0.808998 0.711977 0.495735 -0.060338 -0.114523 -1.342352 1.271662 -1.081690 -0.784456 -3.674065 1.079620 -2.034271 -1.549024 0.436793 1.659855 -1.156625 -0.200743 -0.896446 0.213891 0.997510 -0.835964 -0.887029 0.528691 -0.040244 0.605860 -0.337579 -0.634165 0.585589 -0.540916 -0.358771 -2.561948 1.167010 -0.348723 0.014366 0.680824 1.041351 0.243377 -0.555066 -0.154601 0.967255 -1.162680 2.650658 -0.493944 1.229917 0.265380 1.353853 1.182529 0.757219 1.564253 0.892995 -0.735305 -0.893505 -1.331063 0.503266 -1.500975 -0.400318 0.238858 1.121421 1.558324 -0.864497 -1.567756 -0.580798 -1.702947 -2.832312 0.284244 -1.153705 -0.471302 2.077519 1.239355 0.842858 1.695382 1.256663 -1.496722 0.094045 -0.280816 -0.267140 1.777829 1.086634 1.217836 -0.855874 -0.665902 0.898570 -0.429629 1.116897 -0.078677 0.454690 0.574041 -1.621689 -0.208687 1.308679 1.197164 -0.302046 0.902145 1.520861 1.546003 0.013490 -0.010430 1.545085 -0.889992 -0.362833 0.815614 -1.561640 0.780012 0.368829 0.111197 1.450084 -0.027045 -0.416785 0.612042 -0.396972 0.174161 -0.807497 -0.113916 -0.683609 0.004587 -1.229503 0.459467 -0.606977 -0.702917 -0.883033 -0.951143 2.207927 -2.564668 -0.570601 2.019550 -0.916470 1.191436 -1.857213 2.593975 -1.200579 1.292821 -0.324059 -0.711000 0.346279 -1.571888 -2.077982 0.248729 0.557961 0.258156 -0.411849 1.903376 1.271054 -0.423127 -0.538390 1.861629 -0.623516 2.637090 -0.560055 1.782784 -0.699665 -0.172810 0.102016 -0.097350 -1.267833 -1.100043 0.848071 2.312787 0.053838 1.936900 1.516535 0.461109 2.398490 -1.178625 1.439843 -0.460771 0.775179 -0.746741 -0.821663 1.101552 1.617320 -0.460310 1.077346 -2.257560 -2.833956 -3.057227 -1.088721 -0.319440 -0.510155 1.072311 -0.967352 -0.482534 -1.206596 -1.497897 1.370378 -0.548019 0.704818 1.335215 0.049856 1.270943 1.682473 -0.865932 -0.144499 0.166857 1.172798 1.018387 0.192703 -2.276055 2.053539 -1.193749 -0.389672 3.004036 -1.275661 0.772544 -0.791379 2.374601 -1.301260 2.152785 0.144412 -1.397672 1.631775 1.884132 0.358064 1.152019 -1.044409 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::empty() const = -0.061833 -0.261137 0.681481 0.506468 -0.197877 0.041514 0.110987 -0.199577 0.249791 -0.053909 -0.145438 0.135643 -0.374759 0.111598 -0.040834 0.241812 -0.571990 -0.258945 -0.089766 -0.220447 -0.112649 -0.157849 0.178205 0.108802 0.320812 0.388933 -0.195535 -0.103937 -0.263970 -0.202203 0.215582 -0.130490 0.281267 0.347821 0.077706 -0.817790 0.315687 0.287500 -0.170343 -0.392165 0.255639 -0.251002 0.100135 -0.277683 -0.141123 0.140705 0.107343 0.192035 0.247841 0.132737 -0.051067 -0.031060 0.170845 0.534000 -0.162609 0.188458 0.237632 -0.124248 -0.104923 -0.103507 0.079017 -0.044813 0.151315 0.094106 -0.107253 -0.383423 -0.156110 -0.347442 -0.308860 0.237558 -0.052863 0.004282 -0.353416 -0.220373 -0.278654 -0.115607 -0.497883 0.432045 0.492875 -0.438637 0.304420 0.040936 0.054645 0.018525 0.092012 0.127382 0.161090 0.111380 -0.019330 0.047906 -0.110229 -0.180041 0.117402 -0.050978 -0.145497 -0.471912 0.253860 -0.376354 -0.380072 0.124664 0.185425 -0.147303 -0.115731 -0.002709 0.011383 0.286302 -0.213492 -0.278041 0.016308 0.033044 0.126283 -0.047143 -0.066560 0.091447 -0.170763 -0.222459 -0.512984 0.164838 -0.006585 -0.130392 0.070812 0.315273 -0.079802 0.045014 0.010431 0.142663 -0.194402 0.631897 0.041533 0.162674 -0.008686 0.073140 -0.134305 0.042811 0.262985 0.370429 -0.223727 -0.093892 -0.155810 0.037322 -0.234712 -0.134923 0.032139 0.233725 0.360050 -0.257923 -0.304158 -0.201479 -0.323548 -0.580744 0.047684 -0.239729 0.034761 0.378337 0.272875 0.280253 0.274668 0.560508 -0.309796 0.034448 -0.060683 -0.178965 0.275187 0.271474 0.271319 -0.207986 -0.178549 0.190929 0.006981 0.203317 0.078059 0.035269 0.089904 -0.362111 -0.038421 0.300927 0.238471 -0.041196 0.295070 0.316842 0.194958 -0.130349 0.002045 0.241068 -0.116856 -0.062593 0.139117 -0.351525 0.229143 0.067752 -0.067581 0.234330 -0.000542 -0.098246 0.165257 -0.144821 0.093055 -0.260308 0.030735 -0.188062 0.004029 -0.319087 0.108389 -0.164017 -0.199181 -0.150877 -0.152120 0.479024 -0.330868 -0.150268 0.262937 -0.003554 0.282337 -0.419105 0.461195 -0.257181 0.431613 -0.102492 -0.110079 0.046191 -0.166065 -0.209442 -0.025871 0.134464 -0.001793 -0.047199 0.364911 0.246113 -0.077694 0.001015 0.391170 -0.070124 0.400019 -0.090666 0.271200 -0.099068 -0.055451 0.124703 -0.068964 -0.120357 -0.065629 0.086619 0.524340 0.178571 0.289242 0.335013 0.147761 0.397266 -0.214515 0.150563 -0.061173 0.353526 -0.193487 -0.162134 0.078223 0.368203 -0.059488 0.110661 -0.473668 -0.631800 -0.423711 -0.326702 -0.074260 -0.074914 0.116087 -0.068371 -0.036233 -0.292753 -0.281974 0.252373 -0.145181 0.385613 0.144039 0.027795 0.336078 0.349953 -0.209305 -0.129146 0.137401 0.219841 0.089697 0.088664 -0.428200 0.341913 -0.347822 -0.028871 0.542160 -0.276291 0.140871 -0.021696 0.491888 -0.322759 0.536226 0.105868 -0.337022 0.379455 0.400470 0.264553 0.170521 -0.229746 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::~priority_queue() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/Nearly_sorted_Algo.cpp__printArray(int*, int) = -0.427819 -1.208906 2.255963 1.649367 -0.095755 0.425377 0.732998 -0.539006 0.640437 0.333123 -0.580748 0.939537 -1.501561 0.120061 -0.087386 0.337194 -1.642247 -1.317375 -0.165865 -0.471369 -0.504873 -0.882100 0.041011 1.169693 1.053343 0.593056 -0.876952 -0.178484 -1.921959 -0.888008 0.069791 -0.222542 0.972176 0.608407 0.661848 -2.322707 0.985248 1.336626 -0.152415 -1.486205 0.731378 -1.018043 0.074443 -0.529591 -0.187130 0.586298 0.798958 0.832474 0.756676 0.282246 -0.023714 -0.406615 0.151598 1.739576 -0.237914 0.990369 1.144687 -0.479823 -0.028252 -0.270870 0.151182 -0.761040 0.683363 0.522756 -0.874633 -0.805167 0.172724 -0.761270 -0.899419 0.950561 0.631786 -0.325154 -1.030327 -0.700798 -1.119028 -0.329381 0.358113 1.118747 1.936079 -1.054071 1.542641 0.405831 0.806826 -0.031810 0.810960 0.064281 1.223127 0.216516 -0.569500 -0.359155 -1.778973 -0.605917 -0.207063 0.700918 -0.442237 -0.542485 0.598018 -1.630128 -1.769153 0.371401 0.090954 -0.735655 -0.828575 0.573380 0.621296 0.755113 -0.182590 -1.258616 -0.473159 0.531292 -0.665675 -0.269957 -0.057197 -0.056803 -0.582130 -0.602915 -1.728343 0.427500 0.462086 -0.627506 -0.375672 1.377594 -0.696639 0.872741 0.187896 0.442507 -0.189144 1.287000 0.540247 0.169425 0.356619 -0.682912 -1.003196 -0.073241 0.469022 1.098333 -0.992800 -0.272321 -0.051174 0.373554 -0.531330 0.031078 -0.318020 1.581137 0.749262 -1.174925 -1.222438 -1.054621 -0.747986 -1.298537 0.206977 -0.712617 -0.500914 0.308456 1.004011 0.715873 0.391493 1.906865 -0.774571 0.815794 0.243320 -0.423928 0.600569 0.082662 0.903054 -1.004605 -0.812778 0.779416 0.446517 0.646797 -0.065595 -0.008978 0.272387 -1.255539 -0.967527 0.666879 0.393673 0.430422 1.408606 1.176760 1.692094 -1.189055 0.144356 0.561094 -0.249129 -0.353357 0.357502 -1.302463 0.782570 0.237207 -0.010795 1.677620 0.060377 -0.931876 0.701510 0.024498 0.378969 -1.265489 0.517481 -0.723256 0.253630 -0.859310 -0.109890 -0.715308 -0.710214 -0.863612 -0.550952 1.866226 -0.722912 -1.860017 0.906743 -0.235009 1.315891 -2.373956 1.327057 -0.824875 1.234279 -0.362533 -0.373979 0.103708 -0.210727 -0.608028 0.557188 0.456571 -0.404557 0.570396 1.141558 0.640334 0.351903 0.155048 0.970804 0.027859 0.778381 -0.517577 0.724166 -0.201873 -0.388833 -0.057664 -0.352023 0.101578 0.503307 -0.024373 0.898422 1.091900 0.466121 1.012193 1.010568 0.864225 -0.662604 0.239526 -0.259098 1.323267 -0.826743 -0.778554 -0.137883 0.648380 -0.042908 0.597309 -1.912344 -1.934956 -0.740626 -2.166933 -0.305078 -0.193346 0.535462 0.304627 -0.144053 -1.621445 -0.854548 0.872398 -0.017858 2.243585 0.734948 0.156309 1.281258 1.083575 -0.511506 -0.467022 0.408853 0.657039 -0.311886 -0.138618 -1.302347 0.929791 -1.306084 0.838058 1.693250 -0.951320 0.706535 -0.632602 1.368114 -1.542387 2.010776 0.680646 -1.591689 0.705761 0.910436 1.300325 -0.228400 -1.013661 -PE-benchmarks/Nearly_sorted_Algo.cpp__main = 0.090296 -0.779485 2.102543 1.368193 -0.572085 0.006519 0.504411 -0.449458 0.546117 -0.511401 -0.575733 0.701647 -0.929130 0.352089 -0.715971 0.584645 -1.854597 -0.873824 -0.115022 -0.482486 -0.237569 -0.286491 0.601710 0.428366 1.066300 1.068494 -0.645412 -0.582580 -0.945317 -0.424734 0.711186 -0.447462 0.767215 0.566218 0.055641 -2.586618 0.853521 0.747585 -0.517770 -1.195352 0.925463 -0.693102 -0.016584 -1.026173 -0.579463 0.140674 0.474119 1.061576 0.567563 0.425877 -0.561415 0.137081 0.476092 2.033730 -0.414247 0.517142 0.955479 -0.240007 -0.250852 -0.306552 0.322557 -0.260954 0.324425 0.261212 -0.142188 -1.096074 -0.432257 -1.093585 -0.689232 0.620694 0.079674 0.314636 -0.871653 -0.214404 -1.115014 -0.139248 -0.649565 1.352405 1.475527 -1.294561 0.927483 0.012133 0.311978 0.022737 0.008103 0.498555 0.202625 0.448842 0.040824 -0.316564 -0.918678 -0.256992 0.235450 -0.446074 -0.351450 -2.062134 0.840862 -1.461169 -1.075562 0.246168 0.565388 -0.633776 0.180555 -0.064874 0.141608 0.867493 -0.665803 -0.647835 0.014359 -0.025191 0.165678 -0.131088 0.124284 0.361479 -0.326359 -0.644437 -1.486902 0.568144 0.054529 -0.336899 0.347815 0.790480 -0.196021 0.245780 -0.025548 0.467595 -0.521092 1.504554 0.232673 0.276256 0.138180 0.298299 0.072447 0.175997 0.842667 1.238403 -0.863588 -0.259431 -0.436423 0.302615 -0.470809 -0.622259 -0.019873 0.617986 0.495077 -0.925166 -0.997374 -0.778289 -0.747577 -1.439448 0.002854 -0.653643 -0.347519 1.115448 0.793467 0.652108 0.785822 1.420120 -0.754794 0.345044 0.021024 -0.345149 0.680988 0.365162 0.730662 -0.576001 -0.560119 0.514666 -0.070791 0.724793 -0.053902 0.166312 0.359190 -1.155277 -0.283744 0.608547 0.848189 -0.181584 0.776698 0.871231 0.088560 -0.611555 -0.177612 0.688773 -0.480190 -0.305726 0.447122 -1.090826 0.672325 0.184052 -0.026532 0.813718 0.144469 -0.537356 0.680319 -0.256025 0.111715 -0.576870 -0.016107 -0.506827 -0.289223 -0.762342 0.405668 -0.438537 -0.436310 -0.712360 -0.794799 1.411850 -1.445255 -0.621709 0.651341 -0.002176 0.875477 -1.532727 1.266227 -0.754186 1.237230 0.141737 -0.222542 0.207883 -0.602880 -0.916552 -0.022719 0.396292 -0.123279 0.132295 1.024550 0.756647 -0.062058 -0.009861 1.115421 -0.307992 1.142061 -0.265768 0.544568 -0.419189 -0.723005 0.255566 -0.102273 -0.363189 -0.212309 0.569506 1.448669 0.274403 1.082850 1.252563 0.578328 1.277561 -0.724141 0.291845 -0.363597 1.101460 -0.519193 -0.523752 0.105053 0.979352 -0.162457 0.602316 -1.463442 -2.102105 -1.719558 -1.263808 0.008591 -0.782579 0.387464 -0.447582 -0.096007 -1.223341 -0.808264 0.354087 -0.339279 0.995887 0.944663 0.036277 0.960333 0.831359 -0.777318 -0.263116 0.585007 0.987586 0.303135 0.134340 -1.378822 0.822044 -1.060229 -0.012827 1.792228 -0.789693 0.382907 -0.243331 1.317178 -0.888874 1.693085 0.410622 -1.345979 0.803042 0.999576 0.658228 0.620009 -0.736528 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::~vector() = 0.682113 -0.754541 4.660507 2.687766 -1.164030 0.216191 1.078863 -2.609550 2.478800 -0.013092 -1.028568 -0.027124 -2.041359 0.632138 -1.939394 1.564908 -3.965549 -1.520013 -0.982877 -2.466823 -0.939415 -1.293394 1.817509 -0.176364 2.341977 1.357769 -1.094819 -0.533285 -1.447557 -2.235804 1.886783 -0.871452 0.850017 0.269977 0.253385 -4.134673 2.958188 1.601875 -1.350606 -1.764793 1.738577 -1.152498 -0.584274 -0.866556 -0.244096 0.392354 -0.048155 2.861929 2.234433 0.969870 0.510479 0.296511 0.623535 4.279986 -1.996062 1.283711 0.679390 -0.414165 -0.587211 1.146728 0.233818 0.220132 0.337389 1.051971 0.179002 -2.437514 0.168317 -1.639666 -1.580186 2.433105 -0.351341 -0.904174 -1.744493 -0.734871 -2.050066 -0.155494 -3.164333 2.671740 3.164577 -2.091949 1.489785 0.015013 0.192960 -0.378445 -0.030605 0.244657 1.913055 0.523515 -0.026645 -1.038987 -1.514109 -0.566625 0.834680 -1.063519 -0.834517 -4.243436 1.925379 -3.470730 -2.467917 0.179718 1.856431 -1.558186 -0.167073 0.366923 0.553150 0.438323 -0.934435 -1.824733 0.149230 0.581125 -0.285457 0.232960 0.309924 -0.357336 -0.527969 -0.418594 -2.905688 0.956611 -0.662396 -0.342692 -0.404570 1.898921 -0.042114 -0.497566 0.441268 1.526502 -0.944824 2.293472 -0.676821 1.713105 0.030135 1.831073 -0.657881 1.072482 1.835042 0.636797 -0.558666 0.279467 -1.222456 0.699187 -2.483603 -0.206188 -1.375610 1.215223 1.027274 -2.253783 -1.853153 -0.255967 -1.269204 -3.136535 0.373338 -1.362077 -2.181166 0.286678 1.785719 2.334622 1.907682 2.203140 -2.150024 0.324305 -0.146168 -0.527784 1.787931 -0.029035 1.790324 -1.270184 -1.159247 0.314692 -0.177244 1.069604 -0.407210 0.099605 0.095976 -2.930526 -0.059492 1.003394 1.241146 -0.580093 1.338583 2.444850 1.304173 -2.130578 0.437920 2.425418 -1.047909 -0.586481 1.003610 -2.549724 1.200574 0.785083 1.054015 1.952979 0.212647 -0.214516 0.704667 -0.853677 0.609609 -1.583295 -0.751547 -1.166727 -0.539869 -1.432293 1.082689 -1.069393 -0.914399 -0.985220 -1.742828 2.426544 -2.678187 -1.504301 3.451649 -0.856423 1.360267 -2.377148 2.759078 -1.519642 1.456228 -0.101561 0.293737 -0.123248 -0.400594 -2.332630 0.675845 0.266972 -0.210639 1.447193 2.922963 1.550390 0.562576 -0.596769 2.905086 -1.613407 2.485692 -1.174091 2.045101 -0.770352 -1.693955 0.185770 -0.482140 -1.419055 -1.136138 1.340370 2.857941 0.934816 1.600143 2.240909 0.809388 2.978795 -1.050961 1.998637 -0.413195 0.810617 -1.011918 -1.112248 1.674118 0.926665 -1.125714 1.309189 -3.403043 -3.834661 -3.171046 -2.539829 0.264925 -2.372111 1.024009 -0.896979 -0.287107 -2.302681 -2.013303 1.894062 -0.434500 1.002631 1.599522 0.263490 1.394409 2.723523 -1.418488 0.564608 0.328788 1.624791 0.481892 -1.000893 -2.448922 2.573548 -1.966751 0.128956 3.497744 -1.599707 0.976612 -0.742833 1.838518 -2.518619 2.552696 0.645473 -1.228106 2.203837 2.091384 2.260818 1.811434 -1.327901 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::~_Vector_base() = 0.794306 -0.989546 4.341266 2.663906 -1.592598 0.459904 0.304228 -1.769677 1.183630 -0.017584 -0.943277 0.478901 -1.505701 0.455569 -0.534292 1.124187 -3.799352 -0.669841 -0.883552 -1.667947 -0.602477 -0.832541 0.802629 0.773259 1.907041 2.251610 -0.834946 0.045434 -0.414041 -2.400238 1.178014 -0.622545 1.088070 1.103500 1.109971 -4.252711 2.611722 1.441642 -0.776986 -1.861283 1.254179 -0.283421 -0.484681 -0.706544 -0.993996 0.867077 0.402162 2.244640 1.478393 0.975306 -0.778857 -0.298299 1.552702 3.071714 -0.538458 0.946242 1.120804 -1.004551 0.115017 0.110932 0.007686 -0.219090 0.000662 0.465635 0.555750 -2.023397 0.230996 -1.261227 -1.092714 1.739075 -0.122875 -0.824282 -1.505915 -1.258625 -1.888058 0.088181 -2.601781 2.753961 2.650449 -1.686798 1.372394 0.002834 -0.126836 0.166345 0.190214 0.469939 1.149051 0.692472 -0.010381 0.116550 -0.383333 -1.411226 1.033963 -0.910463 -1.006024 -3.714148 1.369778 -3.137719 -1.584136 0.818091 1.326370 -1.602558 0.033328 -0.850898 0.266822 0.623272 -0.817925 -1.194978 0.275099 0.568184 -0.050464 0.237471 0.126625 0.700029 -0.469656 0.032041 -2.219981 1.229296 -0.087295 -0.093422 0.448610 1.614533 0.573014 0.016459 0.199481 1.280230 -0.946065 2.289455 0.047475 1.431639 -0.407705 1.440410 0.682656 0.740297 1.447454 0.001173 -0.381312 -0.751508 -0.758002 0.821498 -1.405974 0.137686 -0.681877 1.207288 1.310398 -1.234559 -1.543343 -0.679051 -2.022136 -2.682312 0.034496 -0.941787 -1.891542 1.644011 1.349388 1.254390 1.182586 1.021155 -1.911108 -0.224437 -0.563763 -0.505715 1.001211 0.464355 1.092276 -1.034690 -0.624284 0.496500 -0.245103 1.375403 -0.004927 -0.320369 0.474053 -1.606789 0.173015 1.567874 1.275481 -0.439008 1.082720 2.271841 1.796476 -0.255059 -0.455692 1.672512 -1.176004 -0.751163 1.024836 -1.811128 0.933647 0.611133 0.476645 1.789307 -0.060519 0.055656 1.125890 -0.702767 0.142173 -1.092815 -0.221814 -0.913808 0.100658 -1.168475 0.527608 -1.090016 -0.644036 -1.328031 -1.304310 2.243366 -3.033244 -0.841466 2.472052 -0.699099 1.327228 -1.736350 2.422782 -1.082143 1.531640 0.351598 -0.341778 0.167749 -1.199048 -1.737949 0.351962 0.222088 -0.007785 0.366557 1.886963 1.202111 -0.324284 -0.462921 2.230279 -1.267012 1.981103 -1.043343 1.235889 -0.835396 -0.313108 -0.286944 -0.184521 -1.259934 -0.966895 0.881993 1.434944 0.078301 1.485357 1.395568 0.730885 1.810565 -0.594428 1.277609 -0.568519 0.829876 -1.222783 -1.130655 1.083426 1.859953 -0.403066 1.021456 -2.973977 -2.794119 -3.589025 -1.413334 -0.875037 -0.963625 1.038524 -0.470126 -0.484073 -1.400663 -1.805898 2.448415 -0.134031 0.378254 1.502405 -0.002707 1.369582 1.919376 -0.465099 -0.027238 0.235013 1.421585 0.561325 0.101544 -2.215134 2.107833 -1.784102 -0.124253 3.244382 -1.500592 1.141543 -0.763494 1.841037 -2.506226 2.126087 0.607424 -1.610377 1.219771 2.158633 0.871395 1.108425 -1.087929 -PE-benchmarks/Nearly_sorted_Algo.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*) = -0.208266 -0.294392 0.858988 0.585873 -0.070385 0.037466 0.352605 -0.335522 0.502913 0.032287 -0.125037 0.087222 -0.619543 0.180527 -0.250851 0.381850 -0.658713 -0.481461 -0.074470 -0.370117 -0.086072 -0.310544 0.484983 -0.033168 0.470793 0.131533 -0.293119 -0.326885 -0.586430 -0.275824 0.451141 -0.292655 0.387949 0.133289 -0.194013 -1.108000 0.473891 0.336433 -0.316888 -0.426794 0.470413 -0.453561 0.164638 -0.346664 -0.104556 0.077476 0.111452 0.175677 0.511403 0.176118 0.192839 0.022528 0.072983 0.851096 -0.610264 0.262945 0.124533 -0.116708 -0.275613 0.034131 0.065789 0.000728 0.313073 0.271330 -0.233004 -0.543983 -0.149040 -0.448591 -0.615332 0.364444 -0.166848 0.147884 -0.446645 0.009855 -0.378164 -0.181558 -0.263504 0.427914 0.735259 -0.450368 0.476840 -0.025076 0.074478 -0.075650 0.043493 0.201377 0.179261 0.077021 -0.102362 -0.220346 -0.326356 0.076082 0.052371 0.137594 -0.019928 -0.551945 0.357867 -0.302130 -0.554566 0.040003 0.242468 -0.137926 -0.320830 0.104463 0.068355 0.398767 -0.350802 -0.545083 -0.061023 0.014592 0.117286 -0.072350 -0.001743 -0.253752 -0.301235 -0.464613 -0.638551 0.040549 -0.171893 -0.313237 -0.195376 0.425950 -0.302802 0.014951 0.102484 0.342585 -0.292536 0.650468 -0.064890 0.307001 0.161165 0.025436 -0.446947 -0.171087 0.388966 0.761091 -0.269464 -0.008568 -0.408315 -0.009377 -0.437959 -0.260308 0.098255 0.291837 0.476326 -0.488358 -0.323136 -0.068382 -0.064476 -0.825151 0.127114 -0.377738 0.066030 0.260689 0.408841 0.267291 0.518412 1.001501 -0.391418 0.239610 -0.041296 -0.303771 0.555766 0.160488 0.469374 -0.279866 -0.316923 0.144277 0.072742 0.186666 -0.015242 0.097283 0.045977 -0.664649 -0.076518 0.136106 0.251129 -0.134165 0.326473 0.332561 0.286409 -0.487333 0.162585 0.477164 -0.102607 -0.007716 0.146531 -0.573118 0.317338 0.151701 -0.196815 0.276439 0.052239 -0.388518 0.198161 -0.221345 0.196037 -0.419797 0.019673 -0.289404 -0.062257 -0.440403 0.000106 -0.162925 -0.374655 -0.136994 -0.132834 0.587559 -0.248679 -0.326508 0.397979 0.047825 0.296370 -0.772439 0.771206 -0.432355 0.481126 -0.246918 -0.018620 -0.007882 0.163562 -0.335632 -0.013479 0.171413 -0.062674 0.301344 0.686781 0.402166 0.073079 -0.029892 0.620474 -0.007116 0.492243 -0.095797 0.425999 -0.131129 -0.308842 0.259713 -0.143828 -0.114884 -0.101147 0.183116 0.723394 0.431855 0.243502 0.585997 0.281459 0.694755 -0.258184 0.299091 -0.104075 0.537339 -0.114356 -0.154285 0.153751 0.362331 -0.163834 0.330322 -0.672076 -0.996547 -0.260591 -0.668887 0.135060 -0.151914 0.112440 -0.109326 0.110867 -0.658208 -0.276609 0.077062 -0.236084 0.701077 0.218600 0.087915 0.358996 0.538734 -0.433730 -0.182516 0.154289 0.342349 0.070842 -0.055839 -0.521034 0.426626 -0.556213 0.039265 0.604535 -0.359732 0.017625 -0.069414 0.533572 -0.424605 0.807087 0.184315 -0.224826 0.769775 0.357320 0.591919 0.312338 -0.261414 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy_aux::__destroy(int*, int*) = 0.015544 -0.262075 0.502483 0.447961 0.054137 -0.005347 0.446680 -0.113993 0.340689 0.246608 -0.095768 0.005195 -0.521953 0.133180 0.006402 0.387714 -0.290921 -0.321125 0.043386 -0.110012 0.038403 -0.245248 0.442741 -0.124998 0.392211 0.067082 -0.082701 -0.460482 -0.380843 -0.075742 0.302221 -0.204776 0.275918 0.340230 -0.181559 -0.364270 0.216854 0.189907 -0.187459 -0.313891 0.310430 -0.233138 0.167946 -0.180054 0.233073 0.139171 0.153164 0.293390 0.336765 0.265401 0.198120 -0.152213 0.177387 0.334976 -0.401371 0.160894 0.068093 -0.024630 -0.090062 0.009274 0.074890 -0.022839 0.196929 0.216515 -0.098673 -0.290171 -0.260870 -0.332378 -0.449630 0.183880 -0.100879 0.249085 -0.484583 0.028004 0.081482 -0.046107 -0.884715 0.312813 0.507280 -0.325680 0.371378 0.093827 0.056365 -0.215842 -0.082069 0.131988 -0.133493 0.046072 -0.085139 -0.131969 -0.290083 -0.113428 0.009369 -0.079126 0.008405 -0.291630 0.223145 0.288645 -0.347629 0.024819 0.112096 -0.033752 -0.035835 0.281533 -0.068194 0.365551 -0.238153 -0.378909 -0.027185 -0.128294 0.181204 -0.076100 -0.065896 -0.132614 -0.318669 -0.362588 -0.387287 -0.081932 -0.159643 -0.360549 -0.064886 0.173634 -0.189941 0.112429 0.082575 0.120900 -0.103430 0.462715 0.150718 0.258020 0.436638 -0.058138 -0.454968 0.120841 0.384722 0.645856 -0.087036 0.224699 -0.256000 -0.031325 -0.189471 -0.133937 0.284049 0.181685 0.354061 -0.401729 -0.224486 -0.028225 0.104692 -0.342191 0.256992 -0.268277 0.411202 0.013670 0.245363 0.078375 0.320003 0.735687 -0.421472 0.093040 -0.029953 -0.099102 0.273381 0.435453 0.287204 -0.149905 -0.186176 0.048624 0.210183 -0.072318 0.012237 0.102561 0.070928 -0.443998 0.069252 0.037137 0.050447 -0.334294 0.215827 0.118917 0.052697 -0.121413 0.057158 0.316732 0.015170 -0.014171 0.147555 -0.482768 0.400771 -0.046971 -0.093684 -0.016309 0.033066 -0.189340 0.253819 -0.281180 0.037451 -0.203341 0.028286 -0.219564 -0.185230 -0.329701 0.221633 0.006005 -0.331556 0.129584 0.301725 0.355932 0.314224 0.051590 0.019050 -0.061852 -0.077279 -0.317762 0.840832 -0.261154 -0.052629 -0.194826 -0.121464 -0.000379 0.257268 -0.078029 -0.314563 0.133838 0.080885 0.202406 0.462129 0.213747 -0.146910 0.119497 0.372958 0.052141 0.253513 0.026308 0.230215 -0.062409 -0.047963 0.195836 -0.090270 0.037029 -0.089069 -0.088773 0.735353 0.272439 0.062225 0.416770 -0.027905 0.458150 -0.173837 0.255163 0.003981 0.499730 -0.085026 -0.012734 0.042165 0.063276 -0.177825 0.315480 -0.365979 -0.583538 0.308321 -0.266583 -0.005490 -0.068815 0.176316 -0.096252 0.089039 -0.403154 -0.219581 -0.252487 -0.176520 0.050641 0.079465 0.011777 0.217484 0.276070 -0.225218 -0.104432 0.046581 0.238903 0.051960 -0.079332 -0.099570 0.129416 -0.402632 -0.040747 0.311560 -0.177717 -0.076253 -0.231627 0.574178 -0.259768 0.519930 0.114933 -0.046413 0.560903 0.307793 0.481018 0.115043 -0.141808 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -0.180714 -0.915238 2.971694 2.028916 -0.070742 0.215932 1.075113 -1.282653 1.358659 0.639056 -0.456387 0.744852 -1.614404 0.462304 -0.852621 1.296595 -1.975901 -1.392601 -0.372336 -1.274886 -0.475924 -0.825534 1.111910 0.175104 1.715927 0.085237 -1.053735 -0.905225 -1.889673 -1.768964 0.618391 -0.595817 1.016030 -0.373083 -0.136012 -3.012555 1.696159 1.410438 -0.784416 -1.499010 1.439769 -1.131198 0.052535 -0.541831 -0.100634 0.414307 0.437906 0.786193 1.487620 0.873585 0.633774 0.345208 0.577369 2.743852 -1.343432 1.056638 0.686188 -0.392996 -0.591672 0.316540 0.183833 -0.239883 0.730840 0.488204 -0.341256 -1.685678 -0.284390 -0.859258 -1.351935 1.187943 -0.176518 -0.428081 -1.313160 -0.274506 -1.333378 -0.396363 -0.845536 1.382320 2.144176 -1.358521 1.422564 0.034289 0.218235 -0.212902 0.284136 0.263172 0.859012 0.320737 -0.214215 -0.904405 -1.166032 -0.204334 0.134365 0.406165 -0.462500 -1.850443 1.194319 -1.534337 -1.957042 0.273309 0.843104 -0.908784 -0.937775 0.263079 0.374268 0.963119 -0.674438 -1.531837 -0.314676 0.333800 0.050656 -0.352730 -0.003772 -0.928610 -0.680041 -0.556035 -2.068561 0.493607 -0.149978 -0.636442 -0.939874 1.340867 -0.500923 0.199953 0.213292 1.157811 -0.663142 1.515293 -0.146488 1.145881 0.482995 0.365578 -1.530958 0.055423 1.107960 1.055398 -0.915314 0.268038 -1.072156 0.300957 -1.230327 0.044941 -0.369579 1.512820 1.296064 -1.417314 -1.289014 -0.427920 -0.337540 -1.876254 0.454676 -0.946126 -0.596961 0.194876 1.218298 0.710680 1.217840 2.318425 -1.124487 0.584754 0.168727 -0.608043 1.493222 -0.243878 1.303368 -1.048153 -0.983017 0.580903 0.534885 0.569224 -0.271859 0.500988 0.346675 -1.864391 -0.401133 0.410941 0.592120 -0.291504 1.245896 1.317182 1.677304 -1.480431 0.231510 1.280247 -0.651269 -0.154413 0.352636 -1.793234 0.803373 0.495538 0.184604 1.640353 0.203743 -0.993161 0.807225 -0.430583 0.467442 -1.188149 0.252139 -1.004276 -0.278503 -0.845104 -0.211199 -0.585372 -0.845829 -0.688340 -0.705161 1.958854 -0.949083 -1.473461 1.544853 -0.513383 0.710033 -2.607031 2.536449 -1.205205 0.901773 -0.499892 0.008309 -0.040322 0.513409 -1.388207 0.373776 0.512534 -0.426245 1.166715 2.163143 0.986581 0.319547 -0.293226 1.689245 -0.435786 1.568450 -0.527747 1.456252 -0.500345 -0.914923 0.080180 -0.320312 -0.460702 -0.329843 0.426992 1.574213 0.849804 0.538517 1.302417 1.074159 2.070274 -0.866680 1.353867 -0.411393 1.297721 -0.625246 -0.766609 0.644158 0.659578 -0.329385 1.114405 -2.291962 -2.467646 -1.183404 -2.267412 0.420239 -0.600827 0.623702 -0.469285 -0.148976 -2.099180 -1.230570 0.769906 -0.280621 1.373079 1.075091 0.274160 1.140612 1.495459 -0.843871 -0.037837 -0.130918 0.787088 0.242036 -0.816130 -1.198554 1.333543 -1.530017 0.337808 1.971652 -0.975458 0.540923 -0.343150 1.078036 -1.560240 2.178468 0.464592 -0.870222 1.758190 1.351278 1.787315 0.093074 -0.958407 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector(int*, int*, std::allocator const&) = -0.070998 -0.648433 3.590334 1.839713 -0.510090 -0.242434 1.982766 -1.816380 1.673592 -0.074395 -0.306010 0.043341 -2.438836 0.771209 -1.823631 1.385216 -2.435510 -1.706629 -0.798697 -1.935824 -0.713002 -1.100068 2.497610 -0.194412 2.234875 0.333488 -0.929959 -1.656406 -1.824229 -1.844264 1.611195 -0.626242 1.075556 0.027891 -0.579137 -3.260749 1.874807 1.068429 -1.262402 -1.090913 2.276945 -0.804518 -0.307473 -0.423912 -0.004790 0.233997 0.329322 1.988536 2.035671 1.310456 1.151234 0.208067 0.417809 3.190943 -2.182489 0.979558 0.668822 0.016418 -0.741257 0.706337 -0.233297 -0.125891 0.251338 0.792965 -0.262602 -1.682802 0.008251 -1.606592 -1.920650 1.786222 -0.433424 -0.293403 -1.635145 -0.357695 -1.246911 -0.163613 -1.471889 1.645295 2.715902 -1.874100 1.260144 -0.130957 -0.153905 -0.873400 -0.708567 0.230573 0.239405 0.159568 0.109285 -1.496142 -1.779070 0.190053 -0.296463 -0.016269 -0.251740 -3.135293 1.909756 -1.570988 -2.221612 -0.105070 1.119892 -1.267564 -0.572646 0.834315 0.027595 0.775573 -1.061729 -1.904490 -0.462769 0.253221 0.444000 0.411726 0.249576 -0.617956 -0.912454 -1.014245 -2.643416 0.660030 -0.846261 -1.085816 -0.978162 1.201763 -0.659233 0.456599 1.037728 1.792164 -0.920790 2.043049 0.216541 1.121451 1.047908 0.830388 -0.973464 0.118856 1.541352 2.034906 -0.881269 0.500483 -1.542237 0.086897 -1.806846 -0.482502 -0.394738 0.955703 1.329916 -2.317856 -1.795288 0.325683 -0.242576 -2.734627 0.763618 -1.513860 -0.689284 -0.060722 0.879525 1.112215 1.434452 3.292974 -1.484451 0.710115 0.347472 -1.023520 1.233884 0.050812 1.820542 -1.066989 -1.476183 0.116998 0.033147 0.458794 -0.548003 0.478766 0.138963 -3.005873 -0.506971 -0.001955 0.636379 -1.066267 0.837380 1.661256 1.074129 -1.548379 0.183692 2.013306 -0.955353 -0.361579 0.848730 -2.371234 1.094907 0.411900 0.117052 1.527044 0.461045 -0.844046 1.614611 -0.965409 0.571169 -1.402253 -0.207454 -1.193506 -0.746030 -1.627198 0.294073 -0.320612 -0.850089 -0.116128 -0.807671 1.938579 -0.977133 -1.291206 1.962557 -0.170464 0.811394 -2.831028 3.386707 -1.041159 0.779391 -0.254449 0.362453 -0.180425 0.396919 -1.241717 0.100233 -0.086144 0.070122 1.657523 3.139448 0.973047 0.363634 -0.075829 2.570164 -0.764368 2.111933 -0.616189 1.733491 -0.774359 -2.052255 0.691931 -0.120485 -1.082115 -1.029408 0.812724 2.744844 1.097724 0.626564 2.228166 0.837301 3.023191 -0.718773 1.706448 -0.261431 1.542347 -0.811245 -0.765752 1.288147 0.761952 -1.084523 1.626848 -2.563521 -3.773092 -1.201032 -3.332755 0.573965 -1.810624 1.072150 -1.033435 -0.244029 -2.183266 -1.421765 0.444063 -0.361008 1.514039 1.631522 0.392137 1.440063 2.574958 -1.516502 0.414564 0.587881 1.719962 0.331578 -0.967792 -1.440311 1.063654 -1.593110 -0.074352 2.390692 -0.947617 0.639129 -1.273310 1.748592 -2.093272 2.685565 0.376311 -0.580405 2.942419 1.340028 2.049825 1.501499 -0.682783 -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.016566 -0.599038 3.317084 2.289312 -1.073953 -0.124670 0.425720 -1.548497 1.064027 -0.761390 -0.787137 0.698307 -1.318190 0.943509 -1.642380 1.491450 -3.058210 -0.980308 -0.728914 -1.235786 -0.380499 -0.343902 1.646386 0.130435 1.911293 1.775193 -1.063143 -0.683003 -0.920325 -1.202109 1.190913 -0.640280 0.922637 0.773501 -0.138462 -2.641550 1.849659 1.184530 -1.035804 -1.341299 1.661208 -0.954918 -0.473857 -1.546594 -0.730815 0.199089 -0.106217 1.768880 1.332660 0.810830 -0.362632 0.850011 1.080519 2.567517 -1.165458 0.755317 0.860831 -0.080769 -0.419804 -0.126877 0.374599 0.445452 0.195817 0.364468 0.262484 -2.203936 -0.855465 -1.403472 -0.858884 1.331214 -0.458053 0.237793 -1.596497 -0.267814 -1.520711 0.129218 -1.893236 2.164376 1.963191 -1.832591 0.676685 -0.253730 -0.366665 -0.322378 -0.338986 0.583499 0.324442 0.709031 0.564418 -0.661566 -0.737548 -0.309153 0.848578 -1.210074 -0.814084 -3.664845 1.377918 -2.649035 -1.615170 -0.000685 1.462533 -1.347113 0.839264 -0.012074 -0.055291 0.798827 -0.787256 -0.846440 0.861084 -0.011387 0.837870 -0.239372 -0.045458 0.335038 -0.287146 -0.384902 -2.365491 1.025806 -0.502083 -0.191478 0.670928 0.902396 0.318001 -0.411888 -0.053898 0.888136 -0.879125 2.141485 -0.432020 1.110886 0.043503 1.586967 1.003693 1.003347 1.617037 0.670468 -1.208238 0.126219 -1.148771 0.409094 -1.276977 -0.747564 -0.478984 0.561277 0.510806 -1.469102 -1.454975 -0.460483 -1.474963 -2.328414 0.111999 -0.941291 -1.116713 1.135382 1.170942 0.984202 1.640323 1.677197 -1.187622 -0.209789 0.246185 -0.329128 1.575765 0.301276 1.116379 -0.766750 -0.985523 0.910329 -0.464831 0.812009 -0.302407 0.782234 0.425274 -1.881281 0.236850 1.048781 1.126872 -0.520986 1.146115 1.377922 -0.337924 -0.203419 0.124683 1.570007 -0.896416 -0.299110 0.634362 -1.731878 0.949080 0.356021 0.703940 1.213143 0.201257 -0.257942 0.884214 -0.531723 0.372698 -0.927502 -0.271002 -0.725434 -0.491994 -1.251436 0.905434 -0.096634 -0.605727 -0.675656 -1.205438 1.886048 -2.404362 -0.362489 1.675261 -0.176956 0.947026 -1.564465 1.764232 -1.137846 1.453211 0.600808 -0.043945 0.502046 -1.293221 -2.059240 -0.099000 0.524777 0.101332 0.272588 1.532687 1.179729 -0.310646 -0.375634 1.801781 -0.895130 2.372727 -0.584698 1.315846 -0.489709 -1.143697 0.403757 -0.131756 -1.337475 -1.162081 0.994217 2.534346 0.077044 1.962768 1.793804 0.293680 2.660562 -1.093157 1.261097 -0.590991 0.653396 -0.713113 -0.813365 0.990993 1.094495 -0.535973 1.174945 -2.163772 -3.116351 -2.929949 -1.479685 0.396607 -1.910750 0.943990 -1.115362 -0.429507 -1.424727 -1.647511 0.955082 -0.569044 0.732781 1.498444 0.045601 0.990614 1.488621 -1.147929 0.422246 0.350249 1.627165 0.976643 -0.112902 -1.965209 1.710077 -1.127749 -0.494790 2.892062 -1.292992 0.734943 -0.644074 1.552549 -1.225507 2.077373 0.270200 -1.365744 1.657392 1.509290 0.646377 1.482215 -1.012181 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base(std::allocator const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_range_initialize(int*, int*, std::forward_iterator_tag) = 1.517193 -1.607937 9.029780 5.930645 -2.040799 0.825586 0.981650 -4.625234 3.233433 0.053597 -1.271007 1.800916 -2.939265 1.687513 -3.390608 3.411034 -6.775414 -2.129397 -2.208001 -4.792335 -1.693293 -0.915444 1.937723 0.461168 4.508827 1.967072 -2.539707 -1.190034 -3.204597 -4.469097 2.030280 -1.100644 1.859318 -1.266018 0.811614 -8.464867 5.481638 3.859288 -2.505613 -3.736666 3.636798 -2.618028 -0.781055 -1.913306 -1.087262 0.695963 -0.095562 3.477875 3.637154 2.132849 0.089784 2.513445 2.549180 8.812923 -3.112903 2.767378 2.142273 -0.847609 -1.033617 1.331527 0.132577 0.470197 0.487744 -0.213164 0.641314 -5.737101 -1.053810 -2.191795 -1.573371 3.042146 -0.386372 -2.405088 -3.248072 -1.665191 -4.777729 -0.895471 -6.648997 4.824626 4.769779 -4.604357 2.279662 -0.292495 -0.417104 0.826263 1.229729 0.968991 2.823817 1.348469 0.629068 -0.978535 -1.743228 -0.546390 2.143410 -2.019011 -2.786946 -9.496830 3.478137 -6.554736 -4.647105 1.352677 3.457009 -3.544172 0.005683 -1.422793 0.245675 1.291948 -2.398175 -2.891966 0.736654 1.645921 1.101350 -0.697117 0.521911 -1.605818 -0.074308 -0.674191 -5.660484 3.317352 -0.140047 0.436745 -1.223468 3.870731 0.834371 -1.165055 -0.031453 3.118502 -2.713999 4.646645 -1.570745 3.375417 -1.373811 3.625824 -1.626315 2.300549 3.321745 -0.009356 -2.177937 0.495461 -2.847020 1.456285 -3.474756 0.799293 -1.903575 3.341462 1.866167 -2.879141 -3.038394 -1.325467 -2.699558 -4.920794 0.500779 -1.702174 -4.584495 1.123403 3.123110 3.351687 3.531781 2.647623 -2.536757 -0.231824 -0.253677 -0.806908 4.206336 -0.929201 3.010176 -2.567411 -2.165653 1.514925 -0.093091 2.259174 -0.516252 1.582740 1.217220 -4.208372 0.923730 1.541763 2.548588 -1.414819 3.938952 4.788376 3.360925 -2.649125 0.136206 3.348099 -3.571429 -0.347055 0.966100 -3.830094 1.129503 2.282093 1.080736 4.894888 0.268340 -0.767638 1.813626 -1.027082 1.216301 -2.209547 -0.353661 -2.288799 -1.935438 -1.870367 1.164828 -1.932873 -1.426664 -2.937768 -4.133138 5.066096 -6.658321 -2.016996 5.342233 -1.434593 1.530623 -4.715565 6.141010 -3.026435 2.776404 0.411435 0.235530 0.246557 0.018096 -5.554707 1.794848 1.235702 -1.549431 1.796928 5.047310 2.797468 0.491138 -1.574005 4.904657 -3.368519 4.984374 -2.519448 4.411954 -1.917238 -2.358408 -0.175739 -0.451706 -2.929414 -2.368498 2.737178 3.883965 -0.007005 3.408170 2.071084 2.639903 5.511738 -2.094268 3.961912 -1.868926 0.886603 -2.221420 -2.322472 2.768905 2.097396 -0.094842 2.192448 -6.542318 -5.714584 -7.307582 -3.267475 1.739987 -2.472262 1.154560 -1.664862 -1.374633 -4.902832 -4.436588 4.065696 -1.195193 0.038315 3.656520 0.778354 2.806442 4.200469 -1.509074 1.080947 -0.251754 2.305310 1.989010 -1.569688 -4.134121 5.280784 -3.234593 -0.219354 6.604257 -2.547755 2.629322 0.036919 2.510073 -3.999169 4.750747 0.555014 -2.925578 3.445345 5.956953 3.454913 1.306074 -2.409422 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = 0.077456 -0.616358 2.681481 1.778354 -0.041648 0.168679 1.061805 -1.477359 1.529388 0.450679 -0.310816 0.347033 -1.468080 0.610778 -1.499117 1.348598 -1.705569 -1.216730 -0.517600 -1.516415 -0.414234 -0.666554 1.349503 -0.346599 1.605136 -0.230826 -0.885403 -1.054414 -1.806524 -1.287564 0.989349 -0.589330 0.692444 -0.842942 -0.542857 -2.443678 1.648475 1.257641 -0.999968 -1.141361 1.453734 -1.162123 -0.059893 -0.545226 0.098092 0.034686 -0.032370 0.900454 1.496637 0.782108 0.909360 0.784909 0.442702 3.012770 -1.824955 1.000925 0.364746 0.026354 -0.645394 0.735229 0.139082 0.274268 0.516803 0.410432 -0.087729 -1.752492 -0.480512 -0.816671 -1.142540 1.096995 -0.442715 -0.307475 -1.187693 0.043406 -1.245562 -0.366301 -1.806373 1.172029 1.855729 -1.376991 1.049064 -0.078814 0.006584 -0.203031 0.106636 0.319474 0.644407 0.289731 0.020697 -0.950608 -0.998673 0.472094 0.313777 -0.137447 -0.546843 -2.559347 1.335282 -1.248035 -1.768404 0.128016 1.025928 -0.847141 -0.346839 0.259961 0.063406 0.670415 -0.952904 -1.421162 -0.096137 0.332271 0.445542 -0.316797 0.221490 -1.199898 -0.374403 -0.731867 -1.845377 0.474210 -0.424202 -0.494779 -0.978816 1.198257 -0.330328 -0.259093 0.193120 1.129478 -0.791087 1.319740 -0.517809 1.255860 0.219942 0.867972 -1.545502 0.326839 1.255067 0.977266 -0.725662 0.715825 -1.241115 0.230432 -1.292862 -0.001968 -0.385938 0.959206 0.798919 -1.409977 -0.951808 -0.088126 0.010044 -1.726997 0.421942 -0.840879 -0.834375 -0.237274 1.146555 0.963283 1.425002 2.049739 -0.961824 0.386608 0.134374 -0.502282 1.619166 -0.381532 1.236003 -0.833455 -1.052431 0.316588 0.337354 0.383938 -0.310722 0.685331 0.162745 -1.887062 0.166195 0.005009 0.598468 -0.767059 1.187441 1.228500 0.896810 -1.575376 0.456104 1.371695 -0.812820 0.079079 0.209163 -1.722821 0.627666 0.635686 0.149817 1.279389 0.227275 -0.746718 0.654128 -0.625113 0.547678 -0.980151 -0.040662 -0.920168 -0.822973 -0.857401 0.284614 -0.354388 -0.770613 -0.481920 -0.826068 1.600832 -1.162451 -0.814620 1.557031 -0.198106 0.169789 -1.951240 2.497033 -1.148214 0.673771 -0.268946 0.268159 -0.064880 0.942106 -1.583921 0.259926 0.462058 -0.521298 1.289679 2.190986 0.980853 0.368866 -0.363220 1.792749 -0.755651 1.498658 -0.639894 1.579611 -0.463449 -1.330316 0.323708 -0.342815 -0.636161 -0.730081 0.750100 1.863916 0.680143 0.665132 1.152341 0.822069 2.241773 -0.760434 1.498822 -0.413704 0.817230 -0.440653 -0.495581 0.851909 0.299333 -0.410323 1.083966 -2.075942 -2.317284 -1.170600 -1.701531 0.999842 -1.013153 0.372581 -0.648693 -0.090355 -2.090458 -1.301961 0.481301 -0.604118 0.576286 1.071548 0.395002 0.842662 1.527079 -0.946925 0.365854 -0.091536 0.849628 0.447526 -0.954029 -0.991376 1.412177 -1.283469 0.060888 1.767142 -0.735043 0.447468 -0.069882 0.789383 -1.210430 1.917746 0.324937 -0.422187 1.905609 1.493086 1.921657 0.532538 -0.746764 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = 0.120249 -0.296222 1.285002 0.961006 -0.381057 -0.015795 0.330416 -0.443554 0.725430 0.236916 -0.203664 0.019100 -0.540423 0.198731 0.485563 0.781153 -1.170127 -0.332138 0.053213 -0.556561 -0.238045 -0.266036 0.415348 -0.219918 0.629666 0.528475 -0.161132 -0.438289 0.085398 -0.364282 0.613121 -0.455221 0.477594 0.809516 0.140721 -1.850845 0.745026 0.076663 -0.411863 -0.591424 0.349663 -0.341338 0.363321 -0.453272 0.041017 0.304560 0.320547 0.818999 0.671062 0.461486 -0.029480 -0.237940 0.440640 1.167388 -0.522712 0.208429 0.174772 -0.456529 -0.293744 0.049062 0.166196 -0.159581 0.349382 0.250654 -0.038319 -0.828301 -0.278658 -0.724247 -0.683591 0.418164 0.156117 0.044416 -0.802666 -0.255078 -0.017150 -0.315122 -2.025101 0.949607 0.934262 -0.805510 0.556918 0.210203 0.202479 0.026931 0.123450 0.260625 0.452318 0.145175 -0.233596 0.120368 -0.210570 -0.759374 0.391969 -0.508043 0.021691 -1.137071 0.182254 0.036090 -0.573349 0.340324 0.472888 -0.018568 -0.346837 -0.189331 0.261244 0.479892 -0.446649 -0.552366 -0.018800 -0.223005 -0.069132 -0.049419 -0.188500 -0.137913 -0.404871 -0.349107 -0.904651 0.139104 -0.125000 -0.198847 -0.006059 0.501911 -0.131314 -0.106283 0.029892 0.296520 -0.384051 1.084192 0.074528 0.507240 0.411946 0.100579 -0.567057 0.475848 0.632944 0.662949 0.110409 -0.167794 -0.473069 0.133224 -0.680585 -0.061572 0.445705 0.676954 0.817600 -0.372102 -0.554893 -0.219982 -0.210054 -0.835140 0.497401 -0.497517 0.324688 0.445345 0.508564 0.438552 0.679429 0.473139 -0.822011 0.265303 -0.482380 0.107396 0.660199 0.855082 0.621155 -0.350730 0.050182 0.058778 0.225458 0.140772 0.138586 -0.202527 0.315348 -0.719978 0.007693 0.276858 0.346726 -0.332225 0.296009 0.433414 0.980335 -0.299896 -0.045462 0.617825 -0.084461 -0.170991 0.427899 -0.590433 0.536593 0.081737 -0.136739 0.214615 -0.014440 -0.267355 0.084928 -0.224661 -0.003367 -0.163904 -0.211975 -0.255778 -0.206379 -0.309944 0.467577 -0.552120 -0.448910 -0.128713 0.116173 0.790966 -0.258327 -0.071217 0.609943 -0.722838 0.282445 -0.579532 1.646444 -0.562165 0.040706 -0.621114 -0.410367 -0.129158 0.036776 -0.432655 0.010633 0.221444 0.180906 -0.035734 0.827898 0.536257 -0.015449 0.026936 0.779553 -0.117294 0.685173 0.030359 0.635635 -0.377212 0.302932 0.060474 -0.075361 -0.123000 -0.124440 0.142313 0.968895 0.208074 0.340650 0.592511 0.155235 0.632880 -0.426796 0.496767 -0.114194 0.629558 -0.289120 -0.189122 0.272201 0.333480 -0.243531 0.332444 -0.861258 -0.834548 -0.397117 -0.052576 -0.367759 0.345231 0.232262 -0.157948 0.088121 -0.572199 -0.297379 0.223404 -0.213055 -0.295685 0.210643 -0.021523 0.539592 0.672817 -0.208091 -0.506311 -0.006029 0.113766 0.182788 0.055947 -0.705687 0.709105 -0.765725 -0.004014 0.861639 -0.427246 -0.102921 -0.257974 1.260346 -0.520819 0.767941 0.133089 -0.309297 0.652699 1.000238 0.658496 0.196109 -0.343479 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_allocate(unsigned long) = 0.023263 -0.708104 2.573436 1.681628 -0.155764 0.082243 0.687981 -0.794691 0.925653 0.385396 -0.549087 0.770047 -1.138406 0.333052 -0.493081 0.987872 -1.744910 -1.150899 -0.268233 -0.867095 -0.465647 -0.508019 0.652971 0.265596 1.479265 0.534313 -0.975074 -0.569822 -1.386255 -1.492378 0.238611 -0.404408 0.779056 0.006860 0.290595 -2.056214 1.301505 1.063905 -0.497457 -1.242967 1.091808 -0.711795 -0.009952 -0.538156 0.095699 0.614478 0.647578 0.867948 1.109255 0.716373 0.165049 0.059765 0.362145 1.819636 -0.728328 0.748272 0.732680 -0.452219 -0.285991 0.076371 0.159912 -0.476795 0.367769 0.307968 -0.312390 -1.306167 -0.117523 -0.717151 -0.771433 0.998808 0.190886 -0.405133 -1.111213 -0.497704 -1.046734 -0.190134 -0.678149 1.233315 1.694639 -1.055278 1.056260 0.132265 0.430774 -0.151733 0.156028 0.120416 0.717474 0.289452 -0.162715 -0.608792 -1.083492 -0.561178 0.009099 0.375867 -0.382151 -1.208529 0.896042 -1.483216 -1.519907 0.197496 0.700803 -0.739369 -0.623717 0.450773 0.411494 0.782809 -0.201459 -0.979782 -0.125726 0.123120 -0.174176 -0.148256 0.003195 -0.541243 -0.556958 -0.181129 -1.737353 0.586929 -0.016654 -0.357010 -0.501124 0.967642 -0.391061 0.268109 0.139285 0.876590 -0.428916 1.233954 0.224752 0.778831 0.345478 0.207728 -1.063728 0.252267 0.867594 0.751412 -0.816392 0.111136 -0.753054 0.264310 -0.957873 -0.049222 -0.467704 1.381188 1.033125 -1.239466 -1.294969 -0.561638 -0.576784 -1.239933 0.316002 -0.657806 -0.558711 0.102989 0.833216 0.660584 0.833735 1.798956 -0.945296 0.392279 0.150715 -0.363165 1.010935 -0.101251 0.976770 -0.857172 -0.567635 0.522201 0.358535 0.463586 -0.149220 0.249584 0.434540 -1.493935 -0.387262 0.640560 0.481688 -0.019198 0.972818 1.105763 1.081560 -0.967993 -0.076502 0.946832 -0.476518 -0.398334 0.524797 -1.309776 0.753515 0.294391 0.442554 1.345480 0.201116 -0.642118 0.758703 -0.215372 0.307732 -0.816758 0.165075 -0.694902 -0.017819 -0.550514 0.026373 -0.632155 -0.457784 -0.579700 -0.667036 1.615509 -0.664713 -1.406049 1.128635 -0.509537 0.812239 -1.966080 1.585762 -0.845173 0.703546 -0.260969 0.070863 0.011185 -0.068361 -1.045352 0.337443 0.321274 -0.167265 0.656999 1.453230 0.728209 0.134429 -0.141238 1.242693 -0.395903 1.342667 -0.241661 0.869136 -0.442156 -0.513686 -0.019435 -0.043448 -0.491822 -0.113252 0.214585 1.076100 0.503510 0.618125 1.022464 0.705376 1.494678 -0.730625 0.856717 -0.317000 1.084919 -0.641424 -0.764611 0.468146 0.571497 -0.242783 0.733978 -1.847397 -1.907013 -0.927947 -2.000591 0.063873 -0.546960 0.540403 -0.309925 -0.335646 -1.364258 -1.008636 0.731184 0.061924 1.309905 0.796694 0.012791 0.955682 1.070234 -0.729313 -0.132123 -0.047311 0.665378 0.272472 -0.520939 -1.172871 1.100657 -1.191177 0.179876 1.835080 -0.975582 0.541730 -0.464060 1.099338 -1.384616 1.747814 0.355108 -1.087137 1.093215 1.031042 1.403856 0.014107 -0.850814 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = -0.215334 -1.226967 3.344760 2.225486 -0.248728 0.243084 1.486805 -1.279023 1.573928 0.482588 -0.704172 0.633183 -2.135550 0.564242 -1.548945 1.251401 -2.351303 -1.760955 -0.460121 -1.340097 -0.271143 -1.089371 1.384130 0.347390 1.942880 -0.009014 -1.039357 -1.252354 -2.462162 -1.429021 0.977758 -0.769783 1.161005 -0.472892 -0.370228 -3.338192 1.771910 1.732842 -0.911488 -1.829473 1.753380 -1.571561 -0.064612 -0.843539 -0.359866 0.227605 0.433390 1.285551 1.543556 0.710036 0.540795 0.423456 0.550975 3.544866 -1.722037 1.200455 0.725816 -0.218265 -0.597166 0.350084 0.217076 -0.115626 0.813246 0.672136 -0.338852 -1.825703 -0.410132 -1.087296 -1.569913 1.375197 -0.359855 -0.026772 -1.523825 0.019746 -1.879107 -0.281709 -0.922939 1.804191 2.585098 -1.647099 1.684691 0.078733 0.187563 -0.365881 0.101816 0.424200 0.882237 0.349379 -0.031566 -1.314011 -1.768674 0.147075 0.040677 0.067466 -0.575964 -2.550486 1.594444 -1.943313 -2.184795 0.065612 0.832178 -1.269114 -0.413369 0.448316 0.206188 1.190155 -0.858104 -1.783924 -0.476994 0.476318 0.334167 -0.386323 0.335955 -0.783506 -0.593345 -1.132569 -2.256662 0.460721 -0.316428 -0.928559 -0.780465 1.507481 -0.685821 0.285197 0.393463 1.308448 -0.651659 1.717519 -0.108770 1.230580 0.714167 0.395120 -1.484959 0.007326 1.310115 1.708426 -1.044572 0.624117 -1.076512 0.358168 -1.207638 -0.345524 -0.340542 1.334011 0.923867 -1.937439 -1.229786 -0.557881 -0.203021 -2.053245 0.255844 -1.142332 -0.728137 0.397503 1.442336 1.129207 1.406449 3.019177 -1.378230 0.789719 0.378400 -0.846328 1.572940 -0.359060 1.321874 -1.084048 -1.367870 0.526333 0.496653 0.849986 -0.522926 0.704927 0.131575 -2.211110 -0.404526 0.365018 0.794955 -0.464595 1.683812 1.566286 0.941949 -2.020523 0.522833 1.523792 -0.906004 -0.105649 0.374612 -2.320802 1.061692 0.576412 0.066302 1.580379 0.199645 -1.047873 1.135711 -0.735110 0.481492 -1.514947 0.201553 -1.245173 -0.598209 -1.322670 -0.031032 -0.473252 -1.089353 -0.792172 -0.847196 2.172023 -1.379056 -1.563205 1.591985 -0.176818 0.733146 -3.013464 2.897452 -1.394436 1.207644 -0.244801 0.161308 -0.017629 0.721897 -1.587113 0.051086 0.640827 -0.643836 1.587156 2.446833 1.156970 0.263685 -0.170947 2.100871 -0.489070 1.736726 -0.807259 1.461830 -0.394539 -1.503672 0.264734 -0.469373 -0.419215 -0.303370 0.799308 2.249724 1.126224 0.867099 1.876089 1.309959 2.446740 -0.789852 1.420710 -0.626170 1.555684 -0.636200 -0.674186 0.551882 0.741143 -0.532308 1.475840 -2.705185 -3.335883 -1.574996 -2.574738 0.767538 -1.498515 0.746876 -0.549807 0.022761 -2.752293 -1.579708 0.295983 -0.490151 1.503680 1.322442 0.311195 1.245243 1.654328 -1.167287 0.090997 0.308655 1.336350 0.257962 -0.973486 -1.372005 1.332657 -1.940417 0.423913 2.427644 -1.168519 0.675451 -0.397440 1.249035 -1.812054 2.790823 0.772286 -1.174790 2.105618 1.522430 1.957089 0.522770 -1.124646 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a(int*, int*, int*, std::allocator&) = -0.105896 -0.399587 1.568083 1.081832 -0.125730 -0.009238 0.741816 -0.648237 0.745019 0.079614 -0.141103 0.176184 -0.982324 0.312369 -0.435487 0.727185 -1.099337 -0.718056 -0.225302 -0.759941 -0.100698 -0.336363 0.920406 -0.136284 0.986905 0.090913 -0.479551 -0.835154 -0.984051 -0.410030 0.758742 -0.399859 0.660293 0.126494 -0.395791 -1.814606 0.821794 0.630145 -0.579716 -0.654200 0.960042 -0.686983 0.144928 -0.517107 -0.096216 0.076327 0.092629 0.389051 0.880005 0.417410 0.329260 0.239876 0.246207 1.496005 -1.043756 0.419311 0.189281 -0.200274 -0.475900 0.138327 0.073383 0.054442 0.440029 0.230038 -0.191484 -1.079456 -0.315097 -0.740101 -0.932154 0.534927 -0.162536 0.113909 -0.723326 0.053894 -0.542489 -0.256335 -0.580833 0.773657 1.056339 -0.790974 0.697419 -0.124702 -0.112684 -0.210794 -0.062057 0.349556 0.098547 0.123968 0.091092 -0.505076 -0.681299 0.085135 0.163818 0.093338 -0.153046 -1.185724 0.712748 -0.274373 -0.918336 0.007591 0.582385 -0.453097 -0.415447 0.155862 -0.071824 0.656637 -0.538929 -0.784408 -0.091125 0.042906 0.283915 -0.151015 -0.098694 -0.485245 -0.485857 -0.763129 -1.072243 0.308331 -0.340133 -0.338292 -0.425153 0.619624 -0.450019 -0.100790 0.154650 0.683984 -0.573135 0.969130 -0.199948 0.573806 0.474003 0.154198 -0.665001 -0.195298 0.763349 1.298702 -0.436048 0.051893 -0.839731 0.036693 -0.713060 -0.264496 0.281990 0.594886 0.717177 -0.870099 -0.526214 -0.043841 -0.001485 -1.191807 0.226027 -0.545673 0.094050 0.320049 0.625272 0.392184 0.867421 1.521866 -0.606950 0.351257 0.033810 -0.491045 0.969409 0.236714 0.763428 -0.472678 -0.504401 0.154768 0.070477 0.322920 -0.169005 0.459906 0.130613 -1.142550 -0.088171 0.025554 0.326857 -0.398197 0.533050 0.681839 0.537518 -0.752714 0.189346 0.828414 -0.394214 -0.044557 0.305898 -0.942600 0.419264 0.278873 -0.333411 0.622405 0.123793 -0.605841 0.405046 -0.390756 0.220335 -0.570078 0.052442 -0.475774 -0.252445 -0.646249 -0.046294 -0.225104 -0.608628 -0.263222 -0.271214 0.985471 -0.349591 -0.517179 0.640354 -0.055567 0.205879 -1.319548 1.606651 -0.700310 0.432291 -0.372295 -0.052889 -0.012836 0.386999 -0.853292 0.000773 0.228396 -0.160115 0.572544 1.318983 0.664888 0.026679 -0.215356 1.050770 -0.173260 1.014301 -0.244056 0.835159 -0.301577 -0.586253 0.315938 -0.140805 -0.346994 -0.334099 0.318274 1.253565 0.489928 0.504081 0.846902 0.428890 1.346902 -0.425912 0.719237 -0.172035 0.786893 -0.127252 -0.293186 0.455603 0.485269 -0.204925 0.666560 -1.155240 -1.581362 -0.291860 -1.133767 0.455975 -0.330030 0.268611 -0.307361 0.030363 -1.209032 -0.609503 -0.128399 -0.342980 0.824084 0.514022 0.117222 0.539209 0.821789 -0.696307 -0.046725 0.181396 0.678386 0.311558 -0.338269 -0.753420 0.758754 -0.841547 -0.041722 1.109008 -0.517822 0.173825 -0.279939 0.918042 -0.727403 1.297069 0.138512 -0.368360 1.285594 0.723019 0.911482 0.423565 -0.388215 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_max_size(std::allocator const&) = -0.086689 -0.647507 2.610509 1.578740 -0.225793 0.001111 1.312915 -1.082872 1.328305 0.393354 -0.372993 -0.093612 -1.503861 0.259452 -0.861198 0.937035 -1.724315 -1.107209 -0.453712 -1.289787 -0.149468 -0.778609 1.438791 -0.234092 1.514665 0.010542 -0.609245 -1.193247 -1.234959 -0.991098 1.312925 -0.535678 0.926281 -0.052301 -0.564223 -2.862488 1.394007 0.995645 -0.826998 -1.007163 1.336312 -0.592013 -0.148495 -0.348486 -0.278978 0.129648 0.151506 1.049469 1.264107 0.722008 0.660603 0.021980 0.450012 2.680206 -1.464821 0.655209 0.258997 -0.250190 -0.510098 0.566569 0.126469 0.039738 0.419421 0.619069 0.178204 -1.359061 -0.008934 -1.040678 -1.522449 1.180333 -0.350791 -0.098214 -0.889728 -0.000545 -0.840653 -0.140725 -0.889062 1.267012 1.820006 -1.097327 1.180104 -0.030490 -0.148989 -0.455307 -0.580634 0.368062 0.166858 0.176264 0.165357 -0.996523 -1.037554 0.015351 0.164341 -0.034504 -0.290756 -2.005141 1.385408 -0.649137 -1.328890 -0.017550 0.945323 -0.863969 -0.445339 0.294100 -0.100414 0.791616 -0.633957 -1.139923 -0.417509 0.208429 0.147735 0.067479 0.013053 -0.437711 -0.647801 -0.803310 -1.571552 0.372769 -0.650770 -0.577521 -0.654295 0.890407 -0.622544 -0.013246 0.459649 1.183387 -0.655600 1.232802 -0.076379 1.037082 0.747277 0.526115 -0.929387 -0.344570 1.193870 1.690944 -0.242083 0.080028 -1.041391 0.234352 -1.094254 -0.164546 0.084454 0.619131 1.040081 -1.474504 -0.855250 -0.062734 -0.024650 -1.773352 0.214483 -0.966431 -0.277397 0.472826 0.929542 0.882936 1.093885 2.329733 -1.339441 0.620566 0.005216 -0.849311 0.880748 0.073054 1.030873 -0.628320 -0.831921 -0.079191 0.203713 0.649731 -0.387372 0.323227 0.028206 -1.811907 -0.174082 0.108591 0.434320 -0.734435 0.491422 1.271746 0.981938 -1.474437 0.257426 1.400861 -0.610681 -0.285917 0.637016 -1.727356 0.672079 0.334287 -0.248262 0.925902 0.199351 -0.594231 0.774018 -0.917396 0.107667 -0.915752 -0.037993 -0.740039 -0.358081 -1.013495 0.018815 -0.530588 -0.738860 -0.320790 -0.410572 1.382849 -0.751903 -0.942752 1.351687 -0.045474 0.136879 -1.884571 2.558229 -0.848033 0.588499 -0.405875 -0.051473 -0.185807 0.583253 -1.118063 -0.109261 0.110100 -0.205476 1.199856 2.298894 0.923745 0.059730 -0.309546 1.801217 -0.526532 1.443661 -0.599567 1.034372 -0.453735 -1.256609 0.190268 -0.257110 -0.528353 -0.635214 0.573640 1.792964 0.836681 0.535215 1.438525 0.605920 1.944063 -0.430369 1.198213 -0.069651 1.233864 -0.270384 -0.395205 0.840708 0.674742 -0.751822 1.144493 -1.850905 -2.427452 -0.789906 -1.922144 0.380666 -1.030005 0.606236 -0.581594 0.000596 -1.791398 -1.097024 0.055981 -0.353525 0.929429 0.902369 0.156287 0.806734 1.420378 -1.026691 0.222442 0.338099 1.156175 0.289927 -0.822662 -1.002338 1.140718 -1.283239 -0.024373 1.783904 -0.778236 0.407338 -0.484731 1.120232 -1.470391 1.927999 0.362799 -0.471461 1.804272 0.874430 1.524386 0.768842 -0.590012 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy(int*, int*, int*) = 0.032409 -0.527915 1.801905 1.316751 -0.075836 -0.026875 0.938802 -0.693831 0.837142 0.195751 -0.162072 0.273114 -1.130220 0.422494 -0.467510 0.950547 -1.220718 -0.855879 -0.221837 -0.763953 -0.103323 -0.387726 1.142006 -0.189458 1.180957 0.103193 -0.579285 -1.100512 -1.118795 -0.459528 0.903076 -0.467638 0.793913 0.200477 -0.491616 -2.032875 0.914951 0.696881 -0.648523 -0.813253 1.087998 -0.691174 0.119524 -0.610164 -0.028852 0.102565 0.140298 0.561323 0.965816 0.588745 0.358940 0.281035 0.373759 1.713072 -1.154193 0.485263 0.283125 -0.170918 -0.474394 0.117226 0.162943 0.089001 0.503866 0.320550 -0.113736 -1.208862 -0.461002 -0.870247 -1.097929 0.615302 -0.124144 0.254331 -0.913487 0.118153 -0.478146 -0.209083 -0.833762 0.935692 1.272246 -0.937690 0.819297 -0.091817 -0.084988 -0.325102 -0.162265 0.401146 -0.029395 0.205521 0.103927 -0.614318 -0.857813 0.014074 0.168864 -0.003108 -0.190984 -1.439219 0.829471 -0.100308 -1.031252 0.041247 0.664839 -0.480955 -0.385359 0.196218 -0.081226 0.819021 -0.625389 -0.880980 -0.156925 -0.044545 0.383990 -0.233014 -0.112494 -0.500571 -0.593760 -0.852076 -1.236195 0.275026 -0.376646 -0.481507 -0.423735 0.619311 -0.516337 -0.054066 0.126487 0.715149 -0.616201 1.068744 -0.097727 0.705651 0.753400 0.167199 -0.756263 -0.106216 0.958263 1.587951 -0.467756 0.134665 -0.977951 0.082010 -0.722870 -0.274005 0.430360 0.644308 0.838115 -1.001633 -0.691661 -0.103936 0.116748 -1.256824 0.326569 -0.680021 0.249278 0.351214 0.722643 0.349691 0.987962 1.751800 -0.795542 0.461007 0.056539 -0.448473 1.033939 0.367120 0.815086 -0.506786 -0.621517 0.192877 0.172746 0.288130 -0.180093 0.498813 0.191891 -1.289882 -0.123838 -0.000489 0.347125 -0.598801 0.569880 0.689806 0.573037 -0.786066 0.160033 0.945976 -0.412385 -0.059652 0.350175 -1.172594 0.569496 0.209393 -0.326576 0.665540 0.138899 -0.738651 0.579394 -0.482071 0.176200 -0.564829 0.095797 -0.563092 -0.378652 -0.763993 0.055232 -0.186565 -0.667957 -0.218271 -0.137552 1.154151 -0.274401 -0.525387 0.633900 -0.134097 0.094323 -1.499295 1.985942 -0.767652 0.307644 -0.385187 -0.127113 -0.000994 0.464073 -0.964829 -0.139346 0.312765 -0.146387 0.631753 1.556923 0.709331 -0.074275 -0.182593 1.159137 -0.150941 1.128427 -0.238784 0.947560 -0.347584 -0.655487 0.311029 -0.158538 -0.311332 -0.461236 0.281032 1.507203 0.509728 0.569571 1.010656 0.401690 1.561072 -0.547022 0.855315 -0.155900 0.975288 -0.166776 -0.259831 0.465516 0.471742 -0.316279 0.881586 -1.266241 -1.788149 -0.225450 -1.267228 0.444703 -0.371052 0.382244 -0.448736 -0.001169 -1.379561 -0.733559 -0.314227 -0.401660 0.724787 0.677729 0.119448 0.623629 0.891804 -0.810746 -0.025955 0.159617 0.777570 0.364896 -0.426971 -0.751648 0.774583 -0.946807 -0.082682 1.271324 -0.536074 0.179894 -0.444868 1.165640 -0.775453 1.550664 0.194978 -0.414742 1.428103 0.807848 1.102112 0.439735 -0.462375 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy(int*, int*, int*) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy(int*, int*, int*) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__miter_base(int*) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_wrap(int* const&, int*) = -0.090136 -0.251670 0.665673 0.509658 0.030368 0.003709 0.406774 -0.220953 0.393630 0.224799 -0.085117 0.051449 -0.526169 0.141520 -0.091674 0.418338 -0.389413 -0.362875 -0.024780 -0.260554 -0.019499 -0.227089 0.454230 -0.126570 0.449235 0.018739 -0.174298 -0.425321 -0.459830 -0.245494 0.303470 -0.225265 0.310698 0.148860 -0.197899 -0.634567 0.340936 0.279286 -0.250621 -0.337564 0.396248 -0.287569 0.157239 -0.177316 0.109437 0.119384 0.123878 0.157670 0.411341 0.270522 0.267063 -0.039133 0.171094 0.542531 -0.479266 0.204592 0.074611 -0.078613 -0.182684 0.042665 0.061485 -0.014832 0.228665 0.179459 -0.107183 -0.424211 -0.220957 -0.330541 -0.491794 0.224334 -0.142919 0.123854 -0.429369 0.001636 -0.083077 -0.117905 -0.628931 0.307190 0.553311 -0.351609 0.393308 0.037424 0.013887 -0.147983 -0.043617 0.154007 -0.034152 0.055977 -0.052087 -0.169700 -0.212985 -0.014736 0.040242 0.084683 -0.032071 -0.364753 0.314037 0.103628 -0.423856 0.045942 0.198794 -0.097383 -0.190366 0.186357 -0.055215 0.368510 -0.276164 -0.421905 -0.053280 -0.064633 0.185791 -0.082095 -0.070826 -0.247038 -0.306672 -0.338632 -0.474719 0.010064 -0.169481 -0.302778 -0.189358 0.258555 -0.203777 0.043781 0.082727 0.258205 -0.199669 0.500601 0.038458 0.323210 0.286877 0.011251 -0.517531 -0.019947 0.389141 0.605772 -0.158639 0.137678 -0.352380 -0.029987 -0.284802 -0.104762 0.191893 0.266888 0.454954 -0.412470 -0.253271 -0.019003 0.042675 -0.509921 0.203803 -0.292160 0.251304 0.067860 0.292811 0.122047 0.393683 0.828355 -0.375705 0.130263 -0.028233 -0.211477 0.401908 0.255345 0.359787 -0.205479 -0.222717 0.073626 0.184323 0.031030 0.001289 0.143422 0.075074 -0.523005 0.040653 0.060764 0.099196 -0.275451 0.247786 0.222770 0.258208 -0.242693 0.074452 0.375127 -0.067884 -0.009206 0.143136 -0.496985 0.304870 0.051757 -0.136330 0.141528 0.055647 -0.252559 0.231491 -0.270406 0.090184 -0.272898 0.065583 -0.244234 -0.121551 -0.319621 0.072010 -0.074318 -0.322790 0.023237 0.109857 0.438939 0.099692 -0.104332 0.166440 -0.019879 0.001865 -0.498017 0.860477 -0.327613 0.124048 -0.237316 -0.065795 -0.015801 0.277561 -0.212674 -0.161406 0.135561 0.009106 0.256635 0.584540 0.280899 -0.068298 0.008200 0.471930 -0.014410 0.385079 -0.024315 0.342052 -0.098241 -0.153118 0.185040 -0.090391 -0.068971 -0.119351 0.007251 0.653107 0.287352 0.087608 0.406324 0.096045 0.579572 -0.201829 0.337433 -0.024723 0.499995 -0.085994 -0.081923 0.135821 0.181627 -0.144023 0.312688 -0.487224 -0.669958 0.110557 -0.427497 0.088505 -0.041319 0.144091 -0.118808 0.065925 -0.488332 -0.265606 -0.066094 -0.179108 0.277336 0.137182 0.049564 0.258432 0.356617 -0.267894 -0.103436 0.011339 0.244812 0.099444 -0.125328 -0.209650 0.255859 -0.439878 -0.039791 0.401399 -0.230304 -0.014202 -0.123677 0.477346 -0.328178 0.600661 0.101073 -0.072982 0.662805 0.346434 0.539656 0.107546 -0.171658 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base(int*) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int*, int*, int*) = -0.622467 -1.705876 3.777121 2.486801 0.064591 0.961322 0.695170 -1.112612 0.916424 0.860358 -0.815065 1.736122 -1.786196 0.237628 -0.771812 0.653714 -2.235442 -1.724952 -0.346149 -1.027496 -0.392434 -1.193756 -0.062740 1.678770 1.651829 0.437597 -1.424815 -0.073625 -3.103438 -2.810522 -0.166165 -0.470268 1.334984 -0.619793 1.005101 -3.291133 2.034901 2.305907 -0.269789 -2.428241 1.317262 -1.189370 -0.031603 -0.179539 -0.336916 1.219371 1.187866 0.401359 1.332629 0.874659 -0.020105 -0.112376 0.730395 2.364497 -0.545095 1.524915 1.413691 -0.910918 0.162830 -0.202551 -0.119884 -1.034690 0.748894 0.409782 -0.803500 -1.567183 0.263949 -0.297684 -1.203332 1.262377 0.195103 -0.874899 -1.305197 -0.786945 -2.549557 -0.357780 0.961068 1.422482 2.780427 -0.926030 2.252926 0.192578 0.916339 0.260262 1.274979 0.271211 1.349203 0.497021 -0.857141 -0.469486 -1.855459 -0.431700 -0.300132 1.408348 -0.882349 -1.139742 1.071246 -3.289929 -2.291620 0.870394 0.229192 -1.367075 -1.385804 0.028844 0.816538 1.206176 -0.526771 -1.896005 -0.417505 1.105791 -0.520379 -0.424686 0.454993 -0.949533 -0.652463 -0.350429 -2.104668 0.813573 0.770546 -0.701903 -1.034399 2.179354 -0.433738 1.052045 0.203532 1.350312 -0.659110 1.481365 0.494894 0.967568 -0.332784 -0.476272 -1.865184 -0.359253 0.605855 0.412307 -1.612385 -0.420166 -0.566911 0.617676 -0.688463 0.443203 -1.018806 2.115518 1.671316 -1.430428 -1.485426 -1.247709 -0.974398 -1.886242 0.032224 -0.683662 -1.687114 0.325095 1.461593 0.473889 0.829413 2.337032 -0.875532 0.468428 0.141192 -0.865887 1.210760 -0.929686 1.221171 -1.430355 -1.138847 1.177621 0.813616 1.096884 -0.011167 0.036690 0.626844 -1.504854 -0.632169 1.139065 0.871423 0.572992 2.121456 1.930648 2.206367 -1.268761 -0.349062 0.902082 -0.976052 -0.364740 0.247749 -1.835362 0.889975 0.826966 0.200011 2.755694 0.023618 -1.202534 1.470226 0.011652 0.679964 -1.772114 0.855721 -1.346953 0.374203 -0.870820 -1.025434 -1.160376 -0.877807 -1.716531 -1.382390 2.610670 -1.418115 -2.594963 1.524900 -0.479012 1.516407 -3.591229 1.497441 -1.342114 1.870972 0.103357 0.166684 0.042436 0.222355 -1.307355 0.782195 0.703370 -1.039389 1.580683 1.754152 1.005028 0.244822 -0.159543 1.621771 -0.426970 1.124090 -0.937192 0.991017 -0.662565 -0.448485 -0.219830 -0.373188 -0.255790 0.248702 0.205101 0.183801 0.916189 0.374336 0.993536 2.009358 1.373508 -0.668086 0.749651 -0.876626 1.598736 -1.214043 -1.362007 -0.002130 1.352456 0.368602 0.906421 -3.129151 -2.583584 -2.095688 -3.293060 -0.037688 -0.261516 0.506499 0.372339 -0.274838 -2.637660 -1.456180 1.988258 0.190116 2.728320 1.417725 0.190241 1.632070 1.478266 -0.562193 -0.494470 -0.163812 0.807443 -0.246836 -0.442314 -1.644135 1.517120 -1.996526 0.960860 2.482010 -1.528769 1.079848 -0.219177 0.884960 -2.526382 2.816417 1.040891 -1.892965 1.165069 1.262730 1.951685 -0.702807 -1.306113 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__copy_move::__assign_one(int*, int*) = -0.348171 -0.397237 0.934503 0.651246 0.080431 0.106130 0.479895 -0.328872 0.547541 0.361512 -0.067608 0.180191 -0.636604 0.132788 -0.180615 0.463720 -0.498299 -0.529771 -0.048721 -0.442544 -0.160965 -0.327102 0.377827 -0.057907 0.514678 -0.158294 -0.323775 -0.445250 -0.728165 -0.505960 0.309649 -0.264763 0.408015 -0.202479 -0.185273 -1.329059 0.504210 0.459678 -0.315979 -0.531971 0.466695 -0.424760 0.210724 -0.123224 -0.025652 0.099560 0.200310 0.041653 0.507008 0.297854 0.396321 0.044983 0.152740 1.126706 -0.580930 0.375730 0.191816 -0.144655 -0.299021 0.132352 0.079467 -0.098722 0.366337 0.209086 -0.185524 -0.529696 -0.150187 -0.343098 -0.650364 0.311473 -0.115707 -0.071379 -0.415210 -0.053415 -0.350960 -0.286824 -0.423476 0.339445 0.795555 -0.487378 0.615187 0.054606 0.138508 -0.014862 0.139567 0.156334 0.225736 0.075123 -0.166269 -0.220936 -0.257523 0.091882 0.007761 0.338378 -0.090882 -0.539814 0.446178 -0.087786 -0.656537 0.190206 0.215663 -0.118986 -0.543326 0.033263 0.079680 0.449070 -0.426162 -0.644482 -0.310419 0.076121 0.089515 -0.140795 0.005568 -0.465594 -0.314997 -0.402214 -0.651399 0.036839 -0.062771 -0.359386 -0.487495 0.509270 -0.317557 0.114167 0.093110 0.417967 -0.291953 0.598344 0.009258 0.401747 0.156381 -0.023264 -0.936617 -0.221755 0.380036 0.701293 -0.229738 0.049583 -0.420066 0.026326 -0.378170 0.011550 0.098098 0.506804 0.681742 -0.427396 -0.356578 -0.134068 0.103263 -0.739040 0.193107 -0.393475 0.086097 0.120444 0.439678 0.225605 0.449499 1.045001 -0.407004 0.347280 -0.066369 -0.331141 0.533491 0.032672 0.491390 -0.340614 -0.354274 0.100283 0.316435 0.185417 0.010603 0.089275 0.078929 -0.640002 -0.115318 0.036207 0.201867 -0.224889 0.387027 0.382492 0.801462 -0.663611 0.103669 0.405529 -0.168829 0.026649 0.081636 -0.641425 0.248648 0.189432 -0.262383 0.430973 0.062354 -0.465657 0.269089 -0.262770 0.167848 -0.411681 0.161457 -0.372414 -0.130234 -0.337443 -0.125657 -0.271279 -0.352091 -0.178091 -0.103798 0.673487 -0.191114 -0.434362 0.387640 -0.032082 0.122988 -0.939456 1.124434 -0.445899 0.344957 -0.412816 -0.049823 -0.092968 0.527235 -0.298518 0.072288 0.203633 -0.193362 0.405889 0.900583 0.354699 0.126077 -0.049750 0.650072 -0.044820 0.417996 -0.127499 0.544010 -0.168775 -0.306208 0.130618 -0.158618 -0.009924 -0.053954 0.116455 0.573222 0.438976 0.005068 0.412617 0.421240 0.658728 -0.274279 0.429405 -0.070615 0.663346 -0.161026 -0.144334 0.124045 0.307674 -0.110195 0.345012 -0.749505 -0.820277 -0.134453 -0.722126 0.154921 0.119345 0.078015 -0.096200 0.072563 -0.791082 -0.336917 0.180203 -0.227741 0.550445 0.254799 0.166756 0.440511 0.540359 -0.311193 -0.182312 -0.022604 0.168921 0.028219 -0.235650 -0.320320 0.391383 -0.623829 0.126185 0.498247 -0.253110 0.069994 0.064107 0.441778 -0.487179 0.858735 0.195392 -0.163484 0.770689 0.516803 0.850013 -0.040807 -0.277684 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference&>::type&& std::move&>(std::greater&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_iter >::_Iter_comp_iter(std::greater) = 0.099261 -0.260527 0.863733 0.713931 -0.203324 0.022077 0.167424 -0.398575 0.312278 -0.012896 -0.115712 0.158130 -0.488128 0.254918 -0.183790 0.461741 -0.677257 -0.302412 -0.238838 -0.328628 -0.103476 -0.168311 0.468708 0.035911 0.498992 0.427037 -0.321646 -0.234171 -0.341764 -0.354085 0.329991 -0.139368 0.380001 0.368274 -0.065294 -0.804326 0.472709 0.422098 -0.264501 -0.420525 0.434275 -0.260377 -0.014577 -0.333702 -0.171981 0.144703 -0.060894 0.167662 0.376580 0.237453 0.078663 0.167109 0.307414 0.562003 -0.333017 0.244836 0.205374 -0.054187 -0.145400 -0.097586 0.106956 0.168726 0.174954 0.131353 -0.004371 -0.589002 -0.278156 -0.376352 -0.442278 0.355356 -0.176105 0.029793 -0.477767 -0.178276 -0.261777 -0.035509 -0.493992 0.518699 0.572129 -0.488237 0.263062 -0.038231 -0.153060 -0.131380 -0.028576 0.139682 0.054554 0.169324 0.132768 -0.068101 -0.074237 -0.149555 0.201872 -0.057623 -0.261494 -0.645066 0.400294 -0.372496 -0.469208 0.061795 0.353863 -0.276351 -0.092541 0.017466 -0.088997 0.331956 -0.227102 -0.325414 0.098573 0.040343 0.348660 -0.134800 -0.166214 0.060520 -0.221690 -0.213920 -0.645362 0.207593 -0.134359 -0.165773 0.068669 0.274421 -0.057703 -0.067482 -0.010674 0.232519 -0.277192 0.679132 -0.081479 0.360256 0.119640 0.263538 0.027417 0.069010 0.423772 0.419337 -0.291558 -0.024431 -0.359987 0.037747 -0.319386 -0.117488 0.052703 0.182883 0.458580 -0.341895 -0.377860 -0.103352 -0.336197 -0.748970 0.062647 -0.329322 0.045492 0.391871 0.334616 0.216652 0.431668 0.754678 -0.396983 -0.016311 0.043905 -0.226520 0.440858 0.263500 0.302819 -0.218938 -0.349081 0.275150 -0.031620 0.189211 0.023482 0.224749 0.071402 -0.476544 -0.000370 0.330650 0.219756 -0.164181 0.322866 0.366074 0.171930 -0.021903 0.080806 0.395924 -0.194018 -0.017648 0.130924 -0.525130 0.251171 0.063858 -0.006575 0.330433 -0.000372 -0.121406 0.265850 -0.236107 0.123994 -0.328700 0.100766 -0.257387 -0.002427 -0.467612 0.077874 -0.006182 -0.241882 -0.087694 -0.113604 0.572902 -0.353551 -0.134706 0.382984 0.019694 0.167980 -0.501895 0.607216 -0.299570 0.385637 -0.050920 -0.095693 0.108746 -0.212030 -0.427422 -0.112450 0.177665 0.019082 0.004796 0.560917 0.283262 -0.205589 -0.085961 0.485622 -0.106186 0.631721 -0.167437 0.466911 -0.080257 -0.156253 0.152466 -0.087226 -0.262338 -0.318404 0.082860 0.725765 0.174189 0.405848 0.405842 0.067557 0.706569 -0.282307 0.395463 -0.038471 0.305587 -0.176160 -0.151303 0.241600 0.383440 -0.151456 0.301349 -0.544962 -0.812285 -0.446308 -0.467085 0.041290 -0.216810 0.261280 -0.227369 -0.123480 -0.349105 -0.464489 0.224067 -0.211138 0.436446 0.267764 0.058977 0.318373 0.447518 -0.318833 0.058518 0.049704 0.349867 0.224018 -0.024103 -0.423350 0.444754 -0.297786 -0.144716 0.690854 -0.305510 0.232894 -0.166187 0.537308 -0.343054 0.675956 0.071977 -0.260415 0.619725 0.382654 0.285753 0.280694 -0.259709 -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.275370 -2.341259 5.930815 4.003280 -1.009277 0.633926 1.566134 -1.499250 1.744128 -0.421702 -1.497309 2.176986 -2.888448 0.527815 -1.234936 1.293534 -4.808970 -2.758722 -0.403087 -1.438459 -0.831749 -1.466502 0.832609 2.122410 2.937721 2.292148 -1.943226 -0.857432 -3.645156 -1.991858 0.878282 -0.830496 2.000679 1.000625 1.220180 -5.740986 2.787506 2.750861 -0.782156 -3.646564 2.194347 -2.078928 -0.053561 -1.931369 -0.732290 1.171755 1.488109 3.110989 1.908916 1.058411 -1.306052 0.042588 0.884027 4.739044 -0.811675 1.880328 2.694140 -0.790922 -0.303652 -0.568403 0.569649 -1.238815 0.842016 0.751587 -1.037308 -2.691921 -0.378673 -2.193612 -1.619335 2.145900 1.050965 -0.321821 -2.572205 -0.986867 -3.406058 -0.392328 -0.562191 3.574200 4.269255 -3.109908 2.887444 0.272315 1.483865 0.043639 0.976872 0.606671 1.944921 0.931303 -0.544492 -1.059056 -3.999184 -1.331839 0.114782 -0.554836 -1.194148 -4.143784 1.683479 -4.831615 -3.754058 0.662736 1.126142 -2.051641 -0.363136 0.576386 1.250979 1.929216 -0.857293 -2.257264 -0.078711 0.813264 -0.786724 -0.436653 0.346973 0.373971 -0.874521 -1.250040 -4.175663 1.568170 0.625548 -0.830113 0.106283 2.769018 -0.927204 1.235846 0.179884 1.258651 -0.924575 3.297894 0.906768 0.767099 0.639534 -0.251225 -0.586622 0.745951 1.488805 2.355467 -2.468492 -0.450180 -0.728345 1.087842 -1.413319 -0.644281 -0.896653 2.630602 0.994329 -2.884038 -2.795349 -2.167646 -2.208258 -3.198309 0.350232 -1.546034 -1.752533 1.599927 2.267946 1.858030 1.557998 3.571938 -2.033019 1.113862 0.514177 -0.556498 1.751227 0.469218 1.948773 -2.058247 -1.626906 1.621036 0.142468 1.788081 -0.500551 0.365686 0.998300 -3.081968 -1.298414 1.599480 1.581590 0.328921 2.950802 2.833637 1.377166 -2.147790 -0.376879 1.739735 -1.332729 -0.909490 1.033227 -3.068503 1.911185 0.669187 0.880511 3.459523 0.153283 -1.491860 1.905204 0.017872 0.676618 -2.251475 0.323074 -1.698040 -0.303041 -1.865403 0.547841 -1.628169 -1.310176 -2.344252 -2.156877 4.161857 -2.836199 -3.281965 2.362835 -0.830817 2.908937 -4.859652 2.986081 -2.030329 2.792939 0.352614 -0.340876 0.499103 -1.507625 -2.497589 0.688487 1.051093 -0.815374 1.183813 2.495834 1.811058 0.223259 0.047743 2.627008 -0.777804 2.731339 -1.239089 1.687755 -1.121483 -1.536034 0.063327 -0.443063 -0.614329 0.150877 0.857468 2.846096 1.111659 2.349797 2.862871 1.977256 2.846091 -1.865211 1.001447 -1.089406 2.626380 -1.834206 -1.856131 0.165579 1.820860 -0.121644 1.628617 -4.576248 -5.114914 -3.765105 -4.600440 -0.241605 -2.029830 1.295046 -0.397487 -0.499280 -3.766134 -2.409424 1.544218 -0.080523 3.419002 2.422643 0.044393 2.819937 2.435519 -1.659328 -0.541219 1.118046 2.092417 0.129362 -0.408469 -3.480863 2.471320 -2.953420 0.836004 4.934822 -2.316630 1.540736 -1.660473 3.031639 -3.253470 4.477256 1.372654 -3.853625 1.541958 2.556148 2.399848 0.736138 -2.379882 -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.148217 -0.757471 1.703462 1.197128 -0.136274 0.534433 0.252258 -0.477967 0.173460 -0.010851 -0.104413 0.631222 -0.983484 0.291437 -0.493544 0.124225 -0.971224 -0.550961 -0.504778 -0.550501 0.022485 -0.365044 0.083704 0.807078 0.731112 0.320907 -0.606799 -0.147291 -1.530040 -0.655397 0.384394 -0.099200 0.722228 -0.196265 0.261257 -1.686102 0.864364 1.145516 -0.205100 -0.996905 0.771873 -0.584139 -0.021013 -0.380818 -0.352327 0.334789 0.198793 -0.066577 0.560206 0.178260 -0.379560 0.211630 0.358519 1.211111 -0.538627 0.611952 0.640260 -0.268288 0.148377 -0.173502 -0.286532 -0.070201 0.175199 -0.074656 -0.286035 -0.886555 0.016139 -0.295253 -0.526549 0.413031 -0.083063 -0.126158 -0.542538 -0.303621 -1.362165 -0.076316 0.311980 0.736548 1.045922 -0.549004 0.820095 -0.233445 -0.053665 0.344355 0.552673 0.388900 0.061739 0.229450 -0.068563 -0.029576 -0.786364 0.260682 0.014078 0.450874 -0.598060 -1.024955 0.626382 -1.150027 -0.776503 0.376446 0.106558 -0.783786 -0.357686 -0.386734 -0.192620 0.605284 -0.530831 -0.766774 -0.055711 0.688549 0.403417 -0.188490 0.330992 -0.293801 -0.244655 -0.788921 -0.790364 0.600884 0.193593 -0.210550 -0.370024 0.999906 -0.274274 0.267174 0.080208 0.696433 -0.683682 0.802456 0.060316 0.416748 -0.266838 -0.112597 -0.428697 -0.583029 0.414045 0.939056 -0.727667 -0.225438 -0.523654 0.185626 -0.140286 -0.002507 0.012041 0.539873 0.458936 -0.621321 -0.295455 -0.397103 -0.354096 -1.002583 -0.243715 -0.202967 -0.675453 0.615388 0.588257 0.220929 0.445798 1.233577 -0.338153 -0.001970 0.004147 -0.676612 0.618969 -0.202355 0.376222 -0.530415 -0.684760 0.411500 -0.073384 0.593329 0.019646 0.296134 0.203596 -0.547594 0.126781 0.295588 0.436043 -0.217298 1.021381 1.010237 0.375632 -0.398102 -0.105683 0.416519 -0.853462 0.019171 0.048788 -0.710840 0.215729 0.561523 -0.559024 1.114973 -0.073832 -0.597853 0.848626 -0.229010 0.340406 -0.672084 0.423257 -0.602747 -0.110626 -0.737617 -0.481973 -0.243493 -0.510873 -0.854079 -0.658199 1.100786 -0.989875 -0.670821 0.434587 0.505467 0.369670 -1.426908 0.784600 -0.536369 0.991087 0.390582 0.097320 0.173059 0.335549 -0.801903 0.091033 0.298888 -0.661977 0.543690 0.872248 0.492104 -0.209354 -0.181110 0.849270 -0.237685 0.509411 -0.677983 0.457938 -0.329798 -0.356048 0.129911 -0.161313 -0.231080 -0.273448 0.280166 0.221379 0.275813 0.577837 0.296692 0.902036 0.735599 -0.019548 0.234646 -0.503986 0.534161 -0.425672 -0.436019 0.065289 0.969665 0.400450 0.513007 -1.359767 -1.372820 -0.896721 -1.191344 0.365762 -0.080435 0.001407 0.196053 -0.171394 -1.316286 -0.803517 0.439754 -0.242274 1.153296 0.679433 0.146215 0.593108 0.665968 -0.414910 -0.073047 0.352273 0.749401 0.159267 0.075407 -0.801513 0.812959 -0.828544 0.039573 1.252249 -0.591216 0.673071 -0.070580 0.492369 -1.077312 1.448865 0.369824 -0.829343 0.735631 0.863007 0.697461 0.168228 -0.383521 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference::type&& std::move(int&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator+(long) const = 0.018889 -0.522388 1.978572 1.452553 -0.471275 0.043254 0.453936 -0.848527 0.658167 0.174130 -0.234793 0.466732 -0.950885 0.437363 -0.353730 1.016776 -1.577588 -0.591174 -0.364750 -0.834525 -0.338960 -0.326377 0.846320 0.102631 1.136050 0.662331 -0.662602 -0.577793 -0.575194 -1.146025 0.499894 -0.379879 0.797847 0.270920 -0.107319 -2.460810 1.124525 0.836914 -0.593573 -0.900353 0.990063 -0.555555 0.042007 -0.530259 -0.581241 0.229021 0.108145 0.459251 0.894743 0.588950 0.197476 0.328938 0.826334 1.801216 -0.669699 0.561822 0.443736 -0.336347 -0.469606 -0.096154 0.176411 0.046849 0.423613 0.173059 0.047622 -1.276727 -0.421559 -0.712328 -0.914281 0.696333 -0.259105 -0.181938 -0.915259 -0.322776 -0.706952 -0.242025 -0.871741 1.117867 1.269454 -1.045479 0.709521 -0.090204 -0.303133 -0.116232 0.019748 0.297040 0.322738 0.304768 0.164156 -0.260053 0.002858 -0.311307 0.454440 0.032872 -0.431741 -1.724014 0.805653 -0.883865 -1.094136 0.252448 0.744736 -0.664086 -0.395165 -0.292184 0.026326 0.681107 -0.596763 -0.801821 -0.026503 0.076142 0.419634 -0.256948 -0.258245 -0.124806 -0.408426 -0.271852 -1.386988 0.489913 -0.200446 -0.281135 -0.153772 0.700183 0.014278 -0.026755 0.045143 0.736251 -0.572142 1.354380 -0.186615 0.801332 0.117805 0.634839 -0.116097 0.045455 0.845319 0.576790 -0.547592 -0.228534 -0.807588 0.191492 -0.753954 -0.048074 0.051171 0.820840 1.114492 -0.617320 -0.824164 -0.243055 -0.631973 -1.568993 0.197308 -0.662012 -0.191467 0.808113 0.732190 0.272494 0.872237 1.259554 -0.760146 0.159782 0.005015 -0.466810 1.028287 0.244205 0.776253 -0.579253 -0.591327 0.465269 0.115847 0.594040 -0.124355 0.425837 0.243302 -0.988853 -0.111755 0.527903 0.549784 -0.275005 0.638068 0.844095 1.269879 -0.309413 0.067391 0.837151 -0.506769 -0.082845 0.301608 -1.080326 0.418130 0.268216 -0.106461 0.922571 0.062780 -0.441265 0.561572 -0.389775 0.199236 -0.690385 0.208344 -0.561743 -0.035647 -0.690198 -0.095643 -0.260248 -0.477916 -0.439904 -0.425120 1.285827 -1.160921 -0.484557 0.977583 -0.253727 0.453305 -1.386986 1.830108 -0.725039 0.715298 -0.340068 -0.279972 0.143791 -0.180003 -0.958568 0.119288 0.327674 -0.040150 0.191701 1.351178 0.665226 -0.125350 -0.289002 1.130142 -0.260188 1.323765 -0.319773 1.054218 -0.301397 -0.350462 0.080796 -0.134314 -0.559830 -0.463896 0.357171 1.215396 0.296641 0.613817 0.790879 0.480585 1.457173 -0.595642 0.939307 -0.243285 0.762389 -0.408820 -0.464243 0.531654 0.865652 -0.211789 0.716549 -1.374619 -1.605408 -1.260549 -1.001556 0.057048 -0.159084 0.559688 -0.481952 -0.198484 -0.979236 -0.891745 0.811530 -0.335217 0.684133 0.717582 0.155044 0.760455 0.949061 -0.433867 -0.019605 -0.077342 0.597903 0.454040 -0.170389 -0.901327 0.934904 -0.872487 -0.060871 1.400165 -0.645434 0.426017 -0.226910 0.966458 -0.884299 1.359631 0.142843 -0.572303 1.224922 1.031292 0.637302 0.264060 -0.571034 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.148122 -0.189396 0.772426 0.558679 -0.116434 0.038016 0.063439 -0.360402 0.356672 0.161255 -0.070991 0.136224 -0.324044 0.153834 -0.071630 0.437590 -0.519722 -0.253456 -0.157096 -0.399789 -0.172265 -0.130819 0.278294 -0.063114 0.376824 0.171534 -0.286900 -0.096927 -0.233652 -0.582860 0.165327 -0.181041 0.288195 0.009349 -0.025675 -0.902704 0.495757 0.337272 -0.256214 -0.334375 0.318031 -0.202704 0.088760 -0.133750 -0.174664 0.147900 0.022552 -0.086673 0.370135 0.242501 0.243467 0.121845 0.252753 0.629159 -0.311200 0.222003 0.120872 -0.167855 -0.222724 -0.002870 0.076933 0.043354 0.193603 0.084308 -0.015506 -0.530118 -0.151375 -0.226166 -0.394216 0.263784 -0.184160 -0.166673 -0.292094 -0.201104 -0.252654 -0.179180 -0.355741 0.299951 0.500878 -0.350478 0.269971 0.001190 -0.061426 0.034767 0.070960 0.113454 0.212914 0.119612 0.003418 0.003573 0.214528 -0.067463 0.180234 0.223322 -0.166103 -0.407262 0.333821 -0.301135 -0.402618 0.166204 0.310995 -0.131427 -0.363196 -0.124287 0.013230 0.252298 -0.239744 -0.326572 -0.016972 0.032761 0.198570 -0.094899 -0.136702 -0.191288 -0.182960 -0.039575 -0.531968 0.156350 -0.084909 -0.109840 -0.168333 0.303961 -0.034217 -0.091422 -0.006455 0.317815 -0.277745 0.545494 -0.112019 0.397503 -0.123538 0.221327 -0.323724 -0.072731 0.295267 0.138103 -0.186989 -0.105597 -0.343344 0.006751 -0.349629 0.037066 -0.043692 0.309377 0.604841 -0.184174 -0.304298 -0.066890 -0.268839 -0.691377 0.082217 -0.285596 -0.056615 0.271317 0.295547 0.170281 0.387133 0.607993 -0.283855 0.056644 -0.088509 -0.246957 0.451290 0.031104 0.329070 -0.222038 -0.198147 0.185892 0.105310 0.183237 0.091060 0.062745 0.094846 -0.402503 0.016578 0.287886 0.185006 -0.079232 0.229307 0.313429 0.619017 -0.141723 0.041984 0.333394 -0.141595 -0.008043 0.094992 -0.373052 0.092638 0.140711 -0.059917 0.332822 0.025733 -0.157253 0.118210 -0.180132 0.130911 -0.283074 0.125300 -0.205873 0.094246 -0.233167 -0.087428 -0.193651 -0.161291 -0.119874 -0.169420 0.483131 -0.374955 -0.219831 0.412406 -0.028105 0.170191 -0.491906 0.596639 -0.310136 0.416123 -0.233516 -0.044914 -0.003071 0.001902 -0.318326 0.095470 0.140370 -0.018594 0.050557 0.532188 0.272587 -0.029460 -0.138917 0.457636 -0.125524 0.517796 -0.086035 0.454299 -0.108458 -0.081877 0.064028 -0.069936 -0.237288 -0.188604 0.097436 0.326563 0.161096 0.135359 0.218580 0.173985 0.541780 -0.236441 0.392319 -0.029447 0.305233 -0.151970 -0.161155 0.239679 0.384005 -0.081946 0.162451 -0.508490 -0.519818 -0.428000 -0.373939 -0.002747 0.125020 0.111055 -0.144343 -0.054902 -0.277843 -0.312517 0.502632 -0.138024 0.425544 0.161168 0.090311 0.289838 0.401430 -0.168176 -0.105924 -0.129934 0.086036 0.165959 -0.048271 -0.341386 0.430448 -0.314704 -0.079551 0.467427 -0.262017 0.128096 0.098857 0.261031 -0.317417 0.516437 0.054909 -0.111612 0.560639 0.379847 0.394322 0.038312 -0.206563 -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.399181 -5.469573 12.093063 8.228948 -2.337184 1.822156 3.504063 -2.278189 2.459803 -0.827560 -2.290152 5.306416 -5.547858 0.345253 -1.072729 1.640303 -9.422691 -5.387350 -0.828901 -2.847605 -1.700103 -2.636703 0.106093 5.982787 5.586891 3.645455 -3.996490 -2.303466 -7.768734 -3.150331 1.020765 -1.114268 4.630277 1.014553 3.471255 -14.590370 5.133253 6.043649 -1.146170 -7.923952 4.120583 -3.751344 0.669514 -3.468981 -3.576524 1.980905 3.492032 5.065195 3.068014 1.913643 -3.239447 0.235780 2.320838 11.069619 -0.097330 4.033313 5.955621 -2.179988 -0.366786 -1.971077 1.103831 -3.292144 1.945972 0.215928 -1.884003 -5.117140 -0.889004 -3.977424 -3.280059 3.444982 3.312813 -1.345090 -4.715453 -2.307177 -7.966449 -1.726006 0.876986 7.201974 8.334092 -6.645795 6.291270 0.923648 3.126309 1.153193 2.908428 1.440093 3.970183 1.834117 -0.892435 -0.626955 -8.346016 -2.623714 0.141500 -1.101361 -3.089731 -9.587075 3.279935 -9.565898 -7.776058 2.546032 1.941956 -4.460786 -1.451643 -0.697955 2.586638 4.281340 -2.546860 -4.597972 -1.648315 2.490076 -1.727895 -1.068691 1.085249 1.107711 -1.028017 -3.265095 -8.094908 3.947650 2.515752 -1.086436 0.016495 6.349681 -2.315502 3.390619 0.218167 2.554542 -2.303468 6.732695 2.511478 0.759823 0.275345 -1.935026 -1.284394 -0.192814 1.854415 5.169578 -4.574655 -2.697316 -1.181041 2.812847 -1.601893 0.140308 -0.128821 5.873188 2.266388 -4.599317 -5.316546 -5.268470 -4.980232 -6.314378 0.174510 -2.412874 -3.396860 4.809603 4.422234 3.404558 2.313956 5.923480 -2.708448 2.642823 0.640422 -1.787451 2.984135 0.592462 3.635568 -4.075212 -3.258771 3.287273 0.481534 5.491156 -0.714046 0.713812 2.138120 -4.885463 -3.281002 1.764552 3.611249 1.201185 6.307944 6.348305 4.041462 -4.059489 -1.686978 2.431970 -3.150380 -1.611216 1.602563 -5.559140 2.712836 1.605297 -0.615751 7.885509 -0.165049 -3.320020 4.630914 0.311158 1.223913 -4.501429 1.282409 -3.503138 -0.297310 -3.810653 -0.024869 -4.493931 -2.284697 -6.320533 -5.429829 9.081810 -6.812454 -7.122852 4.136207 -1.487855 6.081880 -10.441601 7.139045 -3.658230 6.459009 0.342129 -1.547169 0.852521 -2.506138 -4.855183 1.960419 2.070683 -2.902845 1.558426 5.031437 3.346045 0.284947 -0.160970 5.053503 -1.303044 5.376773 -3.122892 3.593306 -2.770983 -2.734834 -0.185006 -0.635780 -0.522436 1.060370 1.824441 4.096526 1.742946 4.602031 4.504550 5.366568 4.546176 -3.632591 1.074651 -2.154671 5.704471 -3.983353 -3.676380 -0.344066 4.769780 0.769322 2.592172 -9.477065 -9.277130 -8.815448 -8.929258 -0.544060 -2.391767 1.874519 -0.113799 -1.436226 -7.972282 -4.956250 3.214349 -0.195131 6.476010 5.363442 0.179995 6.768934 4.714655 -2.776905 -1.394009 2.909647 3.504532 0.180454 -0.546253 -7.213900 4.873401 -6.503643 2.505467 9.908574 -4.167662 3.962665 -2.576033 6.369488 -6.926914 9.524437 2.705086 -8.793052 2.088608 6.086218 4.143736 -0.066206 -4.847226 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.052456 -0.178838 0.634863 0.487216 -0.114431 0.007887 0.107858 -0.246725 0.303159 0.145320 -0.094952 0.080668 -0.314638 0.131011 0.026741 0.395703 -0.455379 -0.208358 -0.077233 -0.268126 -0.103561 -0.128327 0.271486 -0.072813 0.337283 0.230391 -0.180768 -0.142622 -0.144181 -0.394794 0.171409 -0.177005 0.250969 0.211484 -0.010830 -0.652098 0.377159 0.230841 -0.206466 -0.294967 0.255874 -0.161265 0.114396 -0.155647 -0.054321 0.164930 0.072145 0.066237 0.312136 0.236141 0.153692 -0.006292 0.249800 0.426199 -0.247981 0.158083 0.103847 -0.143860 -0.148928 -0.036953 0.078028 0.005991 0.154601 0.100182 -0.016788 -0.421702 -0.183026 -0.252094 -0.341412 0.209385 -0.136794 -0.036119 -0.338144 -0.168024 -0.102554 -0.120436 -0.607726 0.313744 0.442482 -0.325983 0.247847 0.045798 -0.024688 -0.022326 0.018926 0.113874 0.104144 0.099911 -0.019090 0.032902 0.126953 -0.161991 0.156037 0.055663 -0.102153 -0.346771 0.243111 -0.130590 -0.319578 0.131060 0.240496 -0.080973 -0.195740 -0.023261 -0.009033 0.254132 -0.203112 -0.270885 0.034173 -0.048023 0.176681 -0.064823 -0.133006 -0.085961 -0.201331 -0.077193 -0.449950 0.095050 -0.092534 -0.142401 -0.040668 0.221851 -0.021385 -0.039014 0.004851 0.206042 -0.198729 0.523569 -0.009523 0.319489 0.013874 0.148606 -0.252107 0.057089 0.298756 0.193845 -0.124218 -0.036759 -0.261297 -0.002620 -0.275719 -0.021473 0.056127 0.244061 0.493060 -0.197880 -0.267882 -0.067657 -0.226812 -0.532336 0.132736 -0.249003 0.092400 0.227007 0.242873 0.138020 0.329758 0.513880 -0.315465 0.013153 -0.100955 -0.151766 0.343330 0.214306 0.280097 -0.173218 -0.123581 0.144094 0.109255 0.095319 0.091311 0.033596 0.105289 -0.351760 0.059686 0.259220 0.144845 -0.130066 0.189766 0.226135 0.395585 -0.022519 0.009593 0.292583 -0.067357 -0.034213 0.132002 -0.336410 0.184715 0.055846 -0.032326 0.168325 0.018360 -0.093147 0.125309 -0.186976 0.073677 -0.209231 0.064006 -0.165826 0.034521 -0.223902 0.062052 -0.139633 -0.180446 -0.029372 -0.008049 0.396291 -0.170008 -0.063823 0.259646 -0.071561 0.113484 -0.315651 0.588435 -0.262447 0.256472 -0.195373 -0.094971 0.009261 -0.029749 -0.204315 -0.042591 0.121979 0.065080 0.004130 0.400064 0.234023 -0.095879 -0.043485 0.378532 -0.075491 0.418066 -0.019741 0.326759 -0.090750 0.016697 0.086588 -0.052490 -0.164737 -0.141979 0.024717 0.413449 0.132479 0.130106 0.247958 0.054014 0.439489 -0.205126 0.300913 -0.015408 0.318828 -0.140311 -0.117158 0.166329 0.287213 -0.099911 0.154928 -0.406427 -0.456791 -0.237781 -0.217758 -0.081302 0.086572 0.132648 -0.117834 -0.018724 -0.203713 -0.251820 0.308007 -0.122737 0.215994 0.098810 0.034553 0.246854 0.315247 -0.132666 -0.130184 -0.075256 0.105488 0.138692 0.008529 -0.270290 0.320754 -0.301469 -0.093030 0.400810 -0.235622 0.050328 -0.006362 0.367752 -0.265230 0.428512 0.053159 -0.104900 0.472509 0.355611 0.319888 0.064706 -0.171033 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.179876 -0.328916 1.205895 0.871743 -0.094572 0.065041 0.365283 -0.549030 0.647714 0.309327 -0.076940 0.165150 -0.618064 0.235884 -0.107721 0.683562 -0.806826 -0.482880 -0.162938 -0.631496 -0.228050 -0.280218 0.521714 -0.146163 0.643307 0.063866 -0.403282 -0.418771 -0.512758 -0.673295 0.438772 -0.323424 0.481315 -0.010731 -0.148277 -1.601143 0.740528 0.458650 -0.423872 -0.548984 0.546623 -0.409599 0.171343 -0.240748 -0.129142 0.153128 0.092709 0.127437 0.650049 0.386674 0.374245 0.159542 0.304286 1.225489 -0.668731 0.366936 0.159013 -0.235238 -0.370370 0.122110 0.110236 0.029952 0.374676 0.204317 -0.074339 -0.807150 -0.215082 -0.441029 -0.723460 0.429788 -0.138406 -0.133271 -0.529131 -0.132359 -0.344904 -0.291577 -0.688559 0.542575 0.865321 -0.597359 0.537518 0.014877 0.000000 -0.019149 0.102315 0.193862 0.324150 0.137676 -0.069940 -0.167863 -0.098261 -0.091210 0.207076 0.193003 -0.157687 -0.818917 0.483915 -0.208797 -0.691679 0.218059 0.445926 -0.188599 -0.575721 -0.117881 0.091461 0.445264 -0.436371 -0.629623 -0.168271 0.039639 0.172036 -0.160090 -0.122733 -0.434261 -0.334661 -0.310314 -0.830406 0.157988 -0.151509 -0.255384 -0.398571 0.519108 -0.227292 -0.090155 0.046466 0.503213 -0.424843 0.772690 -0.136917 0.580612 0.144628 0.189949 -0.715317 -0.086312 0.516316 0.598651 -0.198961 -0.062141 -0.592627 0.055825 -0.574624 0.032269 0.118995 0.553689 0.833318 -0.413706 -0.461368 -0.090619 -0.081625 -0.962830 0.235733 -0.473039 0.025587 0.274807 0.504497 0.283882 0.636371 0.972371 -0.521822 0.288684 -0.140870 -0.287847 0.731036 0.134106 0.566575 -0.367685 -0.331869 0.161367 0.223946 0.231596 0.031632 0.112083 0.136359 -0.733464 -0.067117 0.172740 0.263239 -0.250739 0.372261 0.479029 0.970236 -0.524856 0.113662 0.572194 -0.231762 -0.001308 0.165480 -0.683005 0.247943 0.219497 -0.194937 0.513736 0.044408 -0.421718 0.219234 -0.273917 0.171513 -0.404083 0.110090 -0.367314 -0.075241 -0.384199 -0.071502 -0.318651 -0.363290 -0.194131 -0.161579 0.781544 -0.397406 -0.406126 0.631704 -0.192576 0.173256 -0.934938 1.270064 -0.522941 0.367446 -0.457415 -0.103790 -0.074900 0.307404 -0.539291 0.129059 0.225802 -0.105724 0.288165 1.012508 0.454420 0.060037 -0.161106 0.770809 -0.137573 0.706290 -0.154467 0.742523 -0.232082 -0.217164 0.104552 -0.137471 -0.211360 -0.245674 0.184379 0.683036 0.348163 0.190315 0.454922 0.357399 0.863216 -0.365318 0.624710 -0.080996 0.563527 -0.188482 -0.193513 0.329615 0.408396 -0.172619 0.403641 -0.859177 -0.919125 -0.401495 -0.655769 0.101812 0.145050 0.171063 -0.212664 -0.001783 -0.734828 -0.441735 0.362569 -0.249004 0.473708 0.325261 0.149669 0.464254 0.670697 -0.346248 -0.169118 -0.107901 0.193239 0.184613 -0.215000 -0.505064 0.632656 -0.610779 0.006817 0.725482 -0.348486 0.118654 -0.013721 0.599335 -0.521740 0.906255 0.134221 -0.165335 0.892994 0.647535 0.789034 0.089149 -0.321635 -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.384700 -0.411003 1.823171 1.339612 -0.748129 -0.054397 0.351887 -0.664412 0.558714 -0.491491 -0.346306 0.239933 -0.836763 0.369950 -0.098740 0.669213 -1.798098 -0.486581 -0.299654 -0.669959 -0.189957 -0.210208 0.708470 0.180637 0.979118 1.170986 -0.423521 -0.519920 -0.344201 -0.114235 0.871673 -0.334105 0.716986 1.215351 0.118429 -2.171124 0.864488 0.500704 -0.514399 -0.814079 0.806529 -0.605483 0.062514 -0.963198 -0.391990 0.219317 0.099139 1.049191 0.721608 0.334785 -0.470851 0.110205 0.485162 1.387257 -0.546792 0.309642 0.478356 -0.342107 -0.291008 -0.206366 0.164897 0.044638 0.284441 0.142568 -0.080609 -1.203985 -0.411651 -1.065194 -0.698879 0.639143 0.098965 0.176012 -0.961407 -0.336283 -0.607109 -0.136443 -1.374814 1.416915 1.068419 -1.165269 0.533608 -0.064547 -0.117215 -0.105688 -0.000752 0.395018 0.286856 0.276016 0.221902 -0.083522 -0.696329 -0.661247 0.486010 -0.754645 -0.318759 -1.810667 0.546229 -0.889667 -0.841943 0.105669 0.721617 -0.597743 0.067336 -0.090527 0.000000 0.631548 -0.443633 -0.503646 0.270005 -0.007548 0.251360 -0.078295 -0.229404 0.376694 -0.379187 -0.671725 -1.319596 0.624749 -0.189565 -0.061327 0.400876 0.629942 -0.154167 -0.167603 0.020834 0.391739 -0.588944 1.495270 -0.101730 0.370012 0.393903 0.349526 0.369964 0.387397 0.828776 1.124087 -0.440956 -0.302618 -0.591492 0.203993 -0.734577 -0.463238 0.324752 0.543031 0.535358 -0.749929 -0.748867 -0.368442 -0.742752 -1.335803 0.157415 -0.539490 0.020273 1.004007 0.637678 0.700606 0.832184 0.945020 -0.806562 0.080789 -0.110375 -0.203550 0.820062 0.878753 0.676107 -0.469075 -0.321433 0.360550 -0.311241 0.533138 -0.060085 0.308567 0.274007 -0.999208 -0.114589 0.522833 0.607269 -0.215273 0.606559 0.859414 0.170446 -0.229080 0.002743 0.784141 -0.453882 -0.245577 0.525232 -0.819887 0.593575 0.162974 -0.113259 0.605011 0.001270 -0.231336 0.358856 -0.253895 0.100411 -0.440529 -0.195882 -0.364891 -0.192422 -0.782530 0.450072 -0.327540 -0.542010 -0.435317 -0.443597 1.147096 -0.929876 -0.271083 0.796877 -0.349155 0.641903 -0.984416 1.353763 -0.643945 0.640291 -0.127298 -0.354073 0.157752 -0.665697 -0.976646 -0.046319 0.252742 0.082620 -0.121704 0.955775 0.708905 -0.232963 -0.136009 1.005899 -0.276816 1.261845 -0.287166 0.748070 -0.383679 -0.174634 0.256307 -0.058862 -0.510830 -0.386565 0.406111 1.584205 0.186918 1.145910 0.979085 0.241549 1.204332 -0.550664 0.493779 -0.251678 0.591647 -0.359382 -0.428757 0.444790 0.756374 -0.196602 0.493427 -1.201490 -1.729377 -1.149257 -0.685574 -0.024037 -0.528439 0.449876 -0.345397 -0.158069 -0.846299 -0.728752 0.113929 -0.324431 0.483938 0.580824 -0.053998 0.706615 0.864099 -0.639304 -0.119730 0.484165 0.835428 0.442924 0.136087 -1.274669 1.005219 -0.773381 -0.168080 1.643286 -0.704001 0.366351 -0.525921 1.561199 -0.754120 1.247437 0.109138 -0.925051 0.864381 1.046240 0.302526 0.784660 -0.530849 -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.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter >&&) = 0.095173 -0.306254 1.292018 0.994785 -0.348028 0.032206 0.174864 -0.606256 0.512277 0.017952 -0.144806 0.206973 -0.565427 0.311976 -0.101172 0.673816 -1.064477 -0.373971 -0.285435 -0.586787 -0.232522 -0.198298 0.534064 -0.004653 0.671008 0.541534 -0.429963 -0.283851 -0.294737 -0.575505 0.478708 -0.249943 0.510946 0.421584 -0.002323 -1.539988 0.759188 0.477978 -0.401416 -0.576802 0.546154 -0.353961 0.040092 -0.438190 -0.293512 0.192720 -0.022163 0.307528 0.573865 0.346004 0.075238 0.222591 0.428406 1.046597 -0.473939 0.323038 0.262245 -0.216806 -0.278116 -0.052915 0.144492 0.146791 0.274697 0.150902 0.017399 -0.889150 -0.295670 -0.536859 -0.610502 0.492466 -0.118899 -0.091455 -0.614416 -0.272480 -0.387963 -0.163491 -0.801805 0.776046 0.813379 -0.710926 0.384953 -0.027964 -0.135877 -0.048872 0.051741 0.202396 0.294656 0.221524 0.102949 -0.045337 -0.057566 -0.316393 0.351186 -0.120812 -0.299685 -1.051373 0.479643 -0.528848 -0.647179 0.184748 0.546694 -0.330291 -0.297514 -0.179896 0.026131 0.415336 -0.352056 -0.464756 0.059777 0.046709 0.295714 -0.158638 -0.215658 -0.030472 -0.274424 -0.236883 -0.924446 0.324913 -0.141474 -0.125728 -0.009686 0.455675 -0.069391 -0.165250 -0.024170 0.391287 -0.440571 0.945258 -0.164122 0.526819 0.102454 0.366183 -0.089697 0.121498 0.562345 0.483616 -0.277941 -0.173594 -0.532519 0.106154 -0.556718 -0.068361 0.087287 0.424256 0.714273 -0.381283 -0.541912 -0.167281 -0.438460 -1.051528 0.142425 -0.460898 -0.042092 0.564389 0.488402 0.357636 0.633284 0.803137 -0.560553 0.092351 -0.091904 -0.224882 0.682593 0.328556 0.484244 -0.339077 -0.345641 0.304296 -0.009969 0.317288 0.043380 0.175972 0.157719 -0.664524 -0.050524 0.408920 0.352227 -0.182292 0.400217 0.551598 0.642604 -0.186938 0.072527 0.569764 -0.292475 -0.057124 0.222868 -0.652083 0.282499 0.160596 -0.052646 0.531483 -0.003776 -0.225572 0.245464 -0.242530 0.143589 -0.381755 0.059984 -0.325042 -0.011888 -0.503579 0.083699 -0.222802 -0.311926 -0.230405 -0.254166 0.824833 -0.655287 -0.280408 0.690117 -0.197941 0.305101 -0.766561 1.020040 -0.465978 0.486410 -0.237223 -0.178134 0.058889 -0.225197 -0.660661 0.055051 0.232846 -0.000179 -0.002299 0.847047 0.446807 -0.131480 -0.175699 0.725265 -0.195834 0.885038 -0.215625 0.724139 -0.214515 -0.128306 0.106302 -0.099535 -0.365625 -0.381759 0.210574 0.847218 0.192678 0.523432 0.502751 0.212920 0.907052 -0.411160 0.582198 -0.095370 0.396574 -0.256298 -0.244086 0.382350 0.534975 -0.182179 0.374464 -0.834036 -1.021818 -0.775685 -0.543909 -0.008518 -0.079839 0.299213 -0.290762 -0.141947 -0.532519 -0.565249 0.449874 -0.253047 0.440415 0.388843 0.085355 0.479176 0.669778 -0.368843 -0.054688 0.004577 0.343108 0.302138 -0.046170 -0.686653 0.728605 -0.479462 -0.124110 0.971544 -0.423489 0.272267 -0.158718 0.775907 -0.500652 0.886431 0.087765 -0.365913 0.775557 0.673924 0.444901 0.307587 -0.368475 -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.138137 -2.772048 6.993719 4.886197 -1.482328 0.731895 2.391152 -1.248760 1.742516 -0.522844 -1.078634 2.385512 -3.500571 0.565174 -0.324444 1.572070 -5.749688 -3.011509 -0.471110 -1.805846 -1.053543 -1.492988 0.956304 2.439630 3.578045 3.012121 -2.268858 -1.912947 -3.803237 -1.664278 1.511700 -0.836039 2.830494 1.948716 1.378902 -8.798244 2.984188 2.942191 -0.925528 -4.189594 2.660469 -2.185437 0.528191 -2.410940 -1.148342 1.457795 1.817934 3.481307 2.338066 1.119984 -2.029167 0.005928 1.205386 6.216205 -0.962973 1.909358 3.028937 -1.239404 -0.546397 -0.914843 0.592503 -1.541491 1.014003 0.468150 -1.064410 -3.258160 -0.625997 -3.104013 -2.167450 2.355553 1.882746 -0.155923 -3.153469 -1.102704 -3.886746 -0.850329 -1.173181 4.635082 4.830919 -4.077305 3.391671 0.081601 1.541181 0.186249 1.098475 0.889346 1.965513 0.928832 -0.368128 -0.721407 -4.696807 -1.954194 0.143088 -0.562200 -1.330429 -5.595605 1.755279 -4.241236 -4.237867 0.989474 1.376761 -2.171229 -1.113742 -0.087451 1.321626 2.603114 -1.336569 -2.636724 -0.799479 0.787529 -0.827583 -0.423061 0.324488 0.643555 -1.220009 -2.188917 -4.776443 2.033934 0.540035 -0.796750 -0.098152 3.236723 -1.376032 1.492877 0.304505 1.629671 -1.580592 4.154142 1.280867 0.785337 1.326316 -0.720789 -0.842833 -0.103136 1.754856 4.524227 -2.470918 -1.580264 -1.451491 1.304081 -1.633248 -0.732633 0.444583 3.344119 1.963302 -3.166637 -3.092919 -2.428122 -2.000872 -3.866824 0.449621 -1.799780 -0.807491 2.716852 2.443836 1.937064 1.780144 4.045556 -2.475554 1.814067 0.252476 -0.800586 2.082136 1.679262 2.118223 -2.322165 -1.688867 1.369921 -0.161650 2.688902 -0.695167 0.508903 1.220156 -3.207078 -1.881195 1.390274 1.833246 -0.106390 3.129287 3.468929 2.346073 -2.846703 -0.727786 1.975195 -1.933372 -1.042943 1.480192 -3.390488 2.205827 0.791046 -0.328265 3.875840 -0.101909 -1.998273 2.566325 -0.031923 0.585720 -2.304846 0.353684 -2.014769 -0.449485 -2.523672 0.290982 -2.292200 -1.583647 -2.848830 -2.240496 5.001113 -3.154982 -3.681053 2.497320 -1.104838 3.054968 -6.026798 4.695898 -2.160316 2.400286 -0.429028 -0.927753 0.488819 -1.143117 -2.866427 0.729777 1.077884 -1.328366 0.823331 3.537188 2.100369 -0.064873 -0.073775 3.261199 -0.402274 3.271507 -1.468088 2.297969 -1.631775 -1.399776 -0.054822 -0.288024 -0.452440 0.267737 1.059960 3.527337 1.079221 2.950860 3.007426 2.583706 3.211752 -2.071023 0.963826 -1.219686 3.501131 -2.046077 -1.974548 0.099557 2.586144 -0.020502 1.917673 -5.289028 -5.886569 -3.742803 -5.199678 -0.500856 -1.172808 1.404186 -0.303279 -0.694790 -4.615418 -2.680509 0.825202 -0.197855 3.316519 2.686561 -0.154682 3.570200 2.871115 -2.026787 -0.916953 1.652544 2.410530 0.432545 -0.358488 -4.187215 2.912276 -3.724917 0.836038 5.848682 -2.512386 1.919932 -2.212827 4.939807 -3.853430 5.661882 1.377629 -4.592363 1.838725 3.637863 2.808156 1.008684 -2.594627 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::greater::operator()(int const&, int const&) const = -0.514510 -0.593710 1.379185 0.932007 0.112956 0.193625 0.548046 -0.480907 0.517594 0.463916 -0.152514 0.486073 -0.747934 0.040859 -0.321335 0.495895 -0.649728 -0.718861 -0.171682 -0.609680 -0.120354 -0.332584 0.344027 0.241491 0.750926 -0.457970 -0.542298 -0.486618 -1.172907 -0.913864 0.084675 -0.223770 0.564840 -0.668173 -0.145735 -1.679827 0.720818 0.842360 -0.359594 -0.807441 0.723090 -0.533923 0.111937 -0.070415 -0.360900 0.139703 0.270057 -0.326576 0.557001 0.418406 0.446011 0.225369 0.318526 1.522292 -0.510370 0.604788 0.455319 -0.237406 -0.318455 0.148699 0.090880 -0.196648 0.440626 0.084525 -0.156270 -0.734719 -0.181992 -0.266584 -0.713700 0.374188 -0.293654 -0.391749 -0.389262 -0.163724 -0.876722 -0.359410 0.251291 0.482888 0.962006 -0.684242 0.829150 0.002387 0.081896 0.039504 0.231953 0.182824 0.279753 0.151657 -0.067583 -0.345757 -0.286929 0.081175 -0.012737 0.597404 -0.302878 -0.553748 0.738437 -0.681763 -0.983698 0.317990 0.315119 -0.421096 -0.765721 -0.077982 0.035645 0.618882 -0.434568 -0.778174 -0.416161 0.337440 0.171751 -0.247781 -0.062796 -0.543130 -0.292995 -0.319193 -0.913907 0.285951 0.086787 -0.353998 -0.708734 0.739087 -0.420998 0.236259 0.079413 0.645518 -0.399143 0.715189 -0.055351 0.562178 0.052872 -0.033030 -1.174413 -0.419328 0.378742 0.553567 -0.490185 0.133516 -0.461006 0.109006 -0.359348 0.237741 -0.067067 0.816283 0.733287 -0.493916 -0.519261 -0.306546 -0.171692 -0.998877 0.085471 -0.441998 -0.215310 0.449721 0.565658 0.288234 0.452479 1.397555 -0.320412 0.322779 0.089237 -0.616596 0.644266 -0.516219 0.590251 -0.521664 -0.570863 0.279808 0.408824 0.409136 -0.008003 0.302720 0.135856 -0.792314 -0.287850 0.100108 0.302063 -0.074081 0.628108 0.682933 1.006444 -0.807429 0.043416 0.406673 -0.382303 0.015062 -0.042194 -0.858444 0.146735 0.327128 -0.210200 0.883157 0.103435 -0.571494 0.418191 -0.319378 0.241833 -0.600900 0.386294 -0.553736 0.002301 -0.344129 -0.604559 -0.344949 -0.413309 -0.441430 -0.434966 1.001603 -0.529556 -0.830951 0.593086 0.066113 0.242090 -1.482713 1.367658 -0.565270 0.826563 -0.315261 -0.007643 -0.089973 0.554387 -0.532827 0.214642 0.268471 -0.431020 0.587168 1.152325 0.423836 0.169482 -0.180702 0.799841 -0.187730 0.673718 -0.312365 0.710678 -0.254411 -0.558862 0.026086 -0.165999 -0.079893 -0.064560 0.189076 0.436937 0.435304 0.028133 0.389659 0.793169 0.896235 -0.380215 0.628338 -0.170476 0.851566 -0.268253 -0.344318 0.178497 0.518772 0.051444 0.385471 -1.115344 -1.047061 -0.700822 -1.192059 0.295652 -0.044807 0.143962 -0.171223 -0.064522 -1.125674 -0.617288 0.364952 -0.207704 0.846381 0.503513 0.280432 0.665189 0.657064 -0.278507 -0.068728 -0.133172 0.277297 0.043941 -0.429601 -0.425637 0.515968 -0.791015 0.202850 0.754164 -0.273452 0.354273 0.302542 0.037477 -0.759035 1.109682 0.246360 -0.415258 0.918600 0.681263 0.753588 -0.324742 -0.453878 -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.130116 -0.407583 1.642725 1.171327 -0.491683 -0.016806 0.418952 -0.605080 0.565422 -0.224142 -0.262528 0.255556 -0.804588 0.309089 -0.202428 0.645149 -1.437303 -0.527982 -0.252767 -0.660349 -0.182487 -0.230062 0.664672 0.096977 0.906501 0.731427 -0.435379 -0.539390 -0.529291 -0.327557 0.692294 -0.325994 0.650614 0.685131 -0.021948 -1.983953 0.808240 0.551505 -0.492378 -0.739278 0.788993 -0.572346 0.090519 -0.701741 -0.322041 0.172945 0.121950 0.684700 0.700861 0.355730 -0.154241 0.148551 0.415524 1.383633 -0.607582 0.351980 0.394398 -0.295131 -0.337460 -0.095487 0.132045 0.004130 0.318388 0.137538 -0.100046 -1.073226 -0.342022 -0.845987 -0.711138 0.547054 -0.009634 0.066949 -0.786164 -0.238069 -0.587166 -0.195263 -0.967588 1.081691 1.006655 -0.967129 0.576829 -0.064565 -0.094850 -0.085158 0.015447 0.343562 0.240267 0.221696 0.148321 -0.180928 -0.530833 -0.365577 0.349526 -0.334970 -0.272560 -1.466913 0.588453 -0.693437 -0.829347 0.119355 0.616924 -0.512253 -0.147734 -0.060962 -0.009889 0.601350 -0.459675 -0.567035 0.094578 0.028652 0.241126 -0.106756 -0.171247 0.062625 -0.371719 -0.580742 -1.159572 0.495113 -0.179151 -0.144778 0.072808 0.608792 -0.198846 -0.099718 0.050592 0.481645 -0.539397 1.234521 -0.109107 0.425977 0.290804 0.284501 -0.040755 0.136412 0.724777 0.994403 -0.434994 -0.202598 -0.606466 0.143924 -0.653040 -0.311968 0.228024 0.571799 0.628574 -0.689870 -0.644217 -0.277301 -0.503156 -1.222645 0.149323 -0.505793 -0.010592 0.742624 0.595531 0.532356 0.757776 1.065134 -0.665803 0.161582 -0.063700 -0.314836 0.798621 0.536949 0.658672 -0.456055 -0.363437 0.294429 -0.120422 0.466879 -0.068113 0.313236 0.221519 -0.946138 -0.107790 0.373260 0.492432 -0.227460 0.555563 0.759466 0.425732 -0.379209 0.032690 0.709802 -0.415688 -0.163070 0.397263 -0.799835 0.457774 0.205868 -0.173041 0.620741 0.045492 -0.334281 0.361664 -0.278060 0.134602 -0.470893 -0.049950 -0.387803 -0.157200 -0.649854 0.200099 -0.309802 -0.492920 -0.388275 -0.403116 1.043146 -0.767672 -0.368881 0.702283 -0.213212 0.479489 -1.061735 1.343577 -0.619858 0.602312 -0.213723 -0.234941 0.090420 -0.277898 -0.844758 0.018251 0.236479 -0.021820 0.093777 1.011128 0.635657 -0.118690 -0.164585 0.951629 -0.239463 1.091328 -0.255567 0.732656 -0.329761 -0.290104 0.221698 -0.080981 -0.426324 -0.317820 0.349004 1.276614 0.260257 0.806780 0.820347 0.331613 1.144358 -0.481551 0.540230 -0.209571 0.643174 -0.290408 -0.378600 0.400675 0.671454 -0.156636 0.486589 -1.126639 -1.518546 -0.886504 -0.799169 0.100585 -0.354211 0.351797 -0.304906 -0.102392 -0.887642 -0.654476 0.181822 -0.296012 0.600605 0.527491 0.025604 0.636631 0.785237 -0.563120 -0.109701 0.302127 0.677305 0.362792 -0.021499 -1.003112 0.852482 -0.753313 -0.099393 1.341318 -0.594351 0.304915 -0.327541 1.172784 -0.714218 1.180128 0.119350 -0.697790 0.923260 0.894886 0.493273 0.522495 -0.463715 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::front() const = 0.115659 -0.270540 1.105295 0.825007 -0.346818 0.004028 0.255304 -0.475074 0.469485 -0.268917 -0.167607 0.080582 -0.626249 0.259422 -0.164886 0.413864 -1.019958 -0.411313 -0.235939 -0.470922 -0.114503 -0.226934 0.528342 0.052559 0.585990 0.568679 -0.322123 -0.315066 -0.438023 -0.046098 0.634707 -0.224612 0.460916 0.647491 -0.030230 -1.273391 0.560335 0.370972 -0.351471 -0.496098 0.523919 -0.473351 0.072898 -0.594065 -0.175538 0.119801 -0.017192 0.472459 0.526479 0.158887 -0.111012 0.111712 0.143757 0.856578 -0.540422 0.235032 0.217457 -0.147339 -0.224256 -0.057368 0.084963 0.123878 0.244063 0.180793 -0.158535 -0.759587 -0.236792 -0.654042 -0.558161 0.464007 -0.035934 0.138813 -0.595014 -0.157917 -0.423964 -0.117784 -0.673593 0.780667 0.724483 -0.683256 0.360693 -0.063772 -0.044656 -0.091078 0.034143 0.235868 0.221320 0.141994 0.093113 -0.110759 -0.504110 -0.226141 0.228859 -0.294360 -0.182333 -0.938723 0.384416 -0.520294 -0.577293 0.020668 0.430772 -0.309579 -0.120763 0.053956 -0.008421 0.400151 -0.297292 -0.424320 0.130315 0.055683 0.211428 -0.064557 -0.114018 0.066387 -0.281464 -0.549196 -0.827722 0.298630 -0.180772 -0.124445 0.101322 0.450516 -0.254449 -0.144236 0.043667 0.276962 -0.406249 0.909930 -0.137050 0.276587 0.243298 0.145609 -0.008730 0.083251 0.506066 0.878353 -0.299475 -0.108279 -0.441173 0.059601 -0.531715 -0.331452 0.179741 0.264593 0.374002 -0.544563 -0.431870 -0.149533 -0.343096 -0.935261 0.090055 -0.383597 0.052117 0.522839 0.439583 0.508843 0.590503 0.871123 -0.500850 0.106028 -0.044076 -0.227794 0.596818 0.471644 0.459917 -0.299470 -0.310073 0.225310 -0.187700 0.279793 -0.007030 0.201751 0.093529 -0.715405 -0.075507 0.281034 0.342730 -0.136727 0.414091 0.526407 0.019605 -0.322801 0.131200 0.549170 -0.246008 -0.082924 0.266680 -0.571037 0.370157 0.139836 -0.135978 0.369032 -0.003310 -0.228022 0.195925 -0.202344 0.167639 -0.372606 -0.097443 -0.270258 -0.101936 -0.590098 0.212462 -0.168814 -0.393914 -0.210410 -0.262553 0.716089 -0.442143 -0.258976 0.542955 -0.074339 0.390262 -0.698535 0.752845 -0.433497 0.497200 -0.126357 -0.116234 0.065265 -0.245115 -0.595764 -0.034427 0.177299 -0.014882 0.047035 0.694186 0.460403 -0.094453 -0.088036 0.677957 -0.128659 0.763757 -0.208646 0.532071 -0.196429 -0.219235 0.265601 -0.101996 -0.282589 -0.266022 0.242825 1.029586 0.290183 0.670056 0.649666 0.184880 0.822048 -0.328417 0.328075 -0.121890 0.380596 -0.179937 -0.221032 0.294729 0.448651 -0.169744 0.311833 -0.754034 -1.179306 -0.544792 -0.590290 0.110442 -0.360743 0.207467 -0.178318 -0.051009 -0.605585 -0.446249 0.000992 -0.264274 0.585307 0.299595 0.015966 0.421608 0.630412 -0.530370 -0.061966 0.326071 0.517715 0.225993 0.030264 -0.792718 0.663354 -0.489429 -0.095096 0.980403 -0.445458 0.210420 -0.265636 0.907254 -0.467936 0.875709 0.106357 -0.468825 0.712161 0.555549 0.375701 0.569527 -0.324045 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() const = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.148122 -0.189396 0.772426 0.558679 -0.116434 0.038016 0.063439 -0.360402 0.356672 0.161255 -0.070991 0.136224 -0.324044 0.153834 -0.071630 0.437590 -0.519722 -0.253456 -0.157096 -0.399789 -0.172265 -0.130819 0.278294 -0.063114 0.376824 0.171534 -0.286900 -0.096927 -0.233652 -0.582860 0.165327 -0.181041 0.288195 0.009349 -0.025675 -0.902704 0.495757 0.337272 -0.256214 -0.334375 0.318031 -0.202704 0.088760 -0.133750 -0.174664 0.147900 0.022552 -0.086673 0.370135 0.242501 0.243467 0.121845 0.252753 0.629159 -0.311200 0.222003 0.120872 -0.167855 -0.222724 -0.002870 0.076933 0.043354 0.193603 0.084308 -0.015506 -0.530118 -0.151375 -0.226166 -0.394216 0.263784 -0.184160 -0.166673 -0.292094 -0.201104 -0.252654 -0.179180 -0.355741 0.299951 0.500878 -0.350478 0.269971 0.001190 -0.061426 0.034767 0.070960 0.113454 0.212914 0.119612 0.003418 0.003573 0.214528 -0.067463 0.180234 0.223322 -0.166103 -0.407262 0.333821 -0.301135 -0.402618 0.166204 0.310995 -0.131427 -0.363196 -0.124287 0.013230 0.252298 -0.239744 -0.326572 -0.016972 0.032761 0.198570 -0.094899 -0.136702 -0.191288 -0.182960 -0.039575 -0.531968 0.156350 -0.084909 -0.109840 -0.168333 0.303961 -0.034217 -0.091422 -0.006455 0.317815 -0.277745 0.545494 -0.112019 0.397503 -0.123538 0.221327 -0.323724 -0.072731 0.295267 0.138103 -0.186989 -0.105597 -0.343344 0.006751 -0.349629 0.037066 -0.043692 0.309377 0.604841 -0.184174 -0.304298 -0.066890 -0.268839 -0.691377 0.082217 -0.285596 -0.056615 0.271317 0.295547 0.170281 0.387133 0.607993 -0.283855 0.056644 -0.088509 -0.246957 0.451290 0.031104 0.329070 -0.222038 -0.198147 0.185892 0.105310 0.183237 0.091060 0.062745 0.094846 -0.402503 0.016578 0.287886 0.185006 -0.079232 0.229307 0.313429 0.619017 -0.141723 0.041984 0.333394 -0.141595 -0.008043 0.094992 -0.373052 0.092638 0.140711 -0.059917 0.332822 0.025733 -0.157253 0.118210 -0.180132 0.130911 -0.283074 0.125300 -0.205873 0.094246 -0.233167 -0.087428 -0.193651 -0.161291 -0.119874 -0.169420 0.483131 -0.374955 -0.219831 0.412406 -0.028105 0.170191 -0.491906 0.596639 -0.310136 0.416123 -0.233516 -0.044914 -0.003071 0.001902 -0.318326 0.095470 0.140370 -0.018594 0.050557 0.532188 0.272587 -0.029460 -0.138917 0.457636 -0.125524 0.517796 -0.086035 0.454299 -0.108458 -0.081877 0.064028 -0.069936 -0.237288 -0.188604 0.097436 0.326563 0.161096 0.135359 0.218580 0.173985 0.541780 -0.236441 0.392319 -0.029447 0.305233 -0.151970 -0.161155 0.239679 0.384005 -0.081946 0.162451 -0.508490 -0.519818 -0.428000 -0.373939 -0.002747 0.125020 0.111055 -0.144343 -0.054902 -0.277843 -0.312517 0.502632 -0.138024 0.425544 0.161168 0.090311 0.289838 0.401430 -0.168176 -0.105924 -0.129934 0.086036 0.165959 -0.048271 -0.341386 0.430448 -0.314704 -0.079551 0.467427 -0.262017 0.128096 0.098857 0.261031 -0.317417 0.516437 0.054909 -0.111612 0.560639 0.379847 0.394322 0.038312 -0.206563 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.179876 -0.328916 1.205895 0.871743 -0.094572 0.065041 0.365283 -0.549030 0.647714 0.309327 -0.076940 0.165150 -0.618064 0.235884 -0.107721 0.683562 -0.806826 -0.482880 -0.162938 -0.631496 -0.228050 -0.280218 0.521714 -0.146163 0.643307 0.063866 -0.403282 -0.418771 -0.512758 -0.673295 0.438772 -0.323424 0.481315 -0.010731 -0.148277 -1.601143 0.740528 0.458650 -0.423872 -0.548984 0.546623 -0.409599 0.171343 -0.240748 -0.129142 0.153128 0.092709 0.127437 0.650049 0.386674 0.374245 0.159542 0.304286 1.225489 -0.668731 0.366936 0.159013 -0.235238 -0.370370 0.122110 0.110236 0.029952 0.374676 0.204317 -0.074339 -0.807150 -0.215082 -0.441029 -0.723460 0.429788 -0.138406 -0.133271 -0.529131 -0.132359 -0.344904 -0.291577 -0.688559 0.542575 0.865321 -0.597359 0.537518 0.014877 0.000000 -0.019149 0.102315 0.193862 0.324150 0.137676 -0.069940 -0.167863 -0.098261 -0.091210 0.207076 0.193003 -0.157687 -0.818917 0.483915 -0.208797 -0.691679 0.218059 0.445926 -0.188599 -0.575721 -0.117881 0.091461 0.445264 -0.436371 -0.629623 -0.168271 0.039639 0.172036 -0.160090 -0.122733 -0.434261 -0.334661 -0.310314 -0.830406 0.157988 -0.151509 -0.255384 -0.398571 0.519108 -0.227292 -0.090155 0.046466 0.503213 -0.424843 0.772690 -0.136917 0.580612 0.144628 0.189949 -0.715317 -0.086312 0.516316 0.598651 -0.198961 -0.062141 -0.592627 0.055825 -0.574624 0.032269 0.118995 0.553689 0.833318 -0.413706 -0.461368 -0.090619 -0.081625 -0.962830 0.235733 -0.473039 0.025587 0.274807 0.504497 0.283882 0.636371 0.972371 -0.521822 0.288684 -0.140870 -0.287847 0.731036 0.134106 0.566575 -0.367685 -0.331869 0.161367 0.223946 0.231596 0.031632 0.112083 0.136359 -0.733464 -0.067117 0.172740 0.263239 -0.250739 0.372261 0.479029 0.970236 -0.524856 0.113662 0.572194 -0.231762 -0.001308 0.165480 -0.683005 0.247943 0.219497 -0.194937 0.513736 0.044408 -0.421718 0.219234 -0.273917 0.171513 -0.404083 0.110090 -0.367314 -0.075241 -0.384199 -0.071502 -0.318651 -0.363290 -0.194131 -0.161579 0.781544 -0.397406 -0.406126 0.631704 -0.192576 0.173256 -0.934938 1.270064 -0.522941 0.367446 -0.457415 -0.103790 -0.074900 0.307404 -0.539291 0.129059 0.225802 -0.105724 0.288165 1.012508 0.454420 0.060037 -0.161106 0.770809 -0.137573 0.706290 -0.154467 0.742523 -0.232082 -0.217164 0.104552 -0.137471 -0.211360 -0.245674 0.184379 0.683036 0.348163 0.190315 0.454922 0.357399 0.863216 -0.365318 0.624710 -0.080996 0.563527 -0.188482 -0.193513 0.329615 0.408396 -0.172619 0.403641 -0.859177 -0.919125 -0.401495 -0.655769 0.101812 0.145050 0.171063 -0.212664 -0.001783 -0.734828 -0.441735 0.362569 -0.249004 0.473708 0.325261 0.149669 0.464254 0.670697 -0.346248 -0.169118 -0.107901 0.193239 0.184613 -0.215000 -0.505064 0.632656 -0.610779 0.006817 0.725482 -0.348486 0.118654 -0.013721 0.599335 -0.521740 0.906255 0.134221 -0.165335 0.892994 0.647535 0.789034 0.089149 -0.321635 -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.374192 -0.845252 4.613208 3.079166 -1.488545 -0.093255 0.360226 -2.086603 1.448604 -1.295231 -1.268249 1.070009 -1.704753 1.093451 -2.068114 1.637890 -4.363152 -1.481671 -0.960304 -1.617421 -0.579802 -0.572406 1.802479 0.574799 2.483846 2.585028 -1.501394 -0.448660 -1.472567 -1.572729 1.438761 -0.787444 1.179052 1.275909 0.328497 -3.389644 2.530676 1.630129 -1.198732 -1.963164 2.054185 -1.426761 -0.698578 -2.203770 -0.849921 0.479961 0.060298 2.590475 1.754459 0.901266 -0.889090 0.921146 1.037314 3.160833 -1.312532 1.032735 1.361835 -0.281194 -0.393851 -0.212818 0.456271 0.293168 0.242895 0.533649 0.018886 -2.880193 -0.792152 -1.898278 -0.948755 1.969226 -0.271067 0.110382 -2.103514 -0.602489 -2.433523 0.193744 -1.926629 3.069120 2.715257 -2.430875 0.992765 -0.256993 -0.057009 -0.296968 -0.148240 0.659730 0.984502 0.930515 0.533635 -0.905114 -1.713898 -0.800574 0.941204 -1.623819 -1.047916 -4.415936 1.650563 -4.442189 -2.290617 -0.033198 1.844983 -1.877465 0.935936 0.231835 0.281927 0.969325 -0.663451 -1.094118 1.238403 0.187128 0.573711 -0.200808 0.031096 0.582966 -0.370955 -0.444705 -3.317893 1.519492 -0.417122 -0.087539 0.965695 1.450248 0.211638 -0.451300 -0.059487 1.085434 -1.079172 2.845570 -0.499709 1.217313 0.029364 1.740280 1.286293 1.454271 1.926518 0.781783 -1.783207 0.075357 -1.234154 0.637384 -1.841760 -1.087789 -1.058761 0.986348 0.378910 -2.155209 -2.136719 -0.892917 -2.295663 -3.010617 0.075120 -1.177131 -1.879539 1.465451 1.619653 1.724119 2.043328 2.161497 -1.577480 -0.232303 0.368006 -0.323670 1.984435 0.256006 1.523837 -1.184829 -1.193265 1.366165 -0.761639 1.137257 -0.367925 0.816120 0.654216 -2.632080 -0.032825 1.647252 1.538688 -0.153979 1.742672 2.058486 -0.716300 -0.589733 0.115871 2.046638 -1.143021 -0.617392 0.947186 -2.187200 1.376491 0.509531 1.313883 1.936942 0.254893 -0.339707 1.015211 -0.369308 0.584533 -1.344775 -0.508170 -0.948961 -0.436451 -1.587828 1.182844 -0.424066 -0.805265 -1.165467 -1.968340 2.660254 -3.160777 -1.128238 2.494141 -0.480555 1.881716 -2.379573 1.628193 -1.553306 2.268405 0.956182 0.078190 0.622450 -2.183711 -2.811976 0.175889 0.682539 0.043869 0.411263 1.765302 1.612758 -0.182126 -0.457571 2.302432 -1.246195 3.135318 -0.842272 1.560025 -0.730434 -1.443767 0.429029 -0.171066 -1.729607 -1.225471 1.308328 3.132122 0.204035 2.828196 2.522420 0.617523 3.306683 -1.495998 1.387966 -0.882216 0.789072 -1.106687 -1.357577 1.247479 1.415137 -0.627482 1.339384 -3.081147 -4.305570 -4.176294 -2.416897 0.365590 -2.847725 1.206573 -1.239069 -0.636304 -1.964168 -2.121681 1.378718 -0.457089 1.557356 1.973423 -0.067556 1.443520 2.051369 -1.636038 0.413246 0.686222 2.172911 1.066108 -0.118028 -3.060794 2.475251 -1.558278 -0.415263 4.186274 -1.969455 1.121209 -0.974647 2.112446 -1.875798 2.797153 0.485552 -2.324395 1.810954 1.911468 0.822766 1.993924 -1.534410 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::pop_back() = 0.663000 -0.557992 4.312372 2.912146 -0.799414 0.241773 0.413346 -2.605358 2.040646 0.643373 -0.521641 0.673301 -1.247667 0.931785 -1.612765 2.328227 -3.083796 -1.039429 -1.078643 -2.619863 -1.087272 -0.461432 1.319869 -0.489125 2.234578 0.563032 -1.330072 -0.604730 -1.101934 -2.916148 0.882394 -0.684519 0.775420 -1.039887 0.086426 -3.947411 2.927558 1.751375 -1.442221 -1.614627 1.699771 -1.108425 -0.350006 -0.601158 -0.376798 0.331158 -0.292262 1.356236 1.987552 1.355972 0.975282 1.459716 1.411142 4.391150 -1.777260 1.386662 0.694309 -0.330243 -0.841645 0.957459 0.303810 0.521076 0.377924 0.094442 0.587641 -2.946716 -0.712997 -0.890593 -0.984949 1.620739 -0.532510 -1.479991 -1.601400 -0.807752 -1.785210 -0.583676 -3.898756 2.064145 2.351743 -2.196789 0.926690 -0.001360 -0.315477 0.215930 0.397458 0.281941 1.625996 0.683974 0.304726 -0.535917 0.088822 -0.279406 1.241176 -0.741610 -1.313619 -4.427829 1.814425 -2.733040 -2.342308 0.701003 2.023346 -1.394715 -0.397640 -0.662103 0.240745 0.482650 -1.176457 -1.480050 0.289439 0.536895 0.682134 -0.461916 -0.059883 -1.237660 -0.072905 0.279982 -2.871844 1.317356 -0.319538 0.118587 -0.922719 1.663646 0.582905 -0.908402 -0.095280 1.599020 -1.262449 2.193092 -1.049867 2.191116 -0.722791 2.256932 -1.312755 1.372891 1.754623 -0.715037 -0.784086 0.488404 -1.638346 0.604817 -2.053655 0.747275 -1.138235 1.663338 1.499988 -1.186092 -1.634016 -0.335356 -1.182205 -2.573306 0.557166 -1.083753 -2.061461 0.131439 1.566571 1.568590 1.979522 1.330277 -1.383521 -0.053445 -0.201863 -0.268677 2.331014 -0.640590 1.608950 -1.195073 -1.058401 0.721883 0.335383 0.810287 -0.136736 0.695619 0.538262 -2.180270 0.531366 0.815638 1.076653 -0.825714 1.624512 2.064290 2.471111 -1.281263 0.285370 1.836499 -1.447630 -0.036444 0.372244 -2.014361 0.440828 1.013635 0.891509 2.235550 0.192744 -0.263713 0.579446 -0.657521 0.629206 -1.049844 -0.126684 -1.103843 -0.824745 -0.714072 0.618315 -0.927312 -0.543202 -0.965279 -1.722340 2.366382 -3.017759 -0.862023 2.971806 -1.015781 0.418895 -2.048398 3.363412 -1.524910 1.076750 -0.319893 0.143140 -0.036357 0.223224 -2.674798 0.962183 0.650573 -0.507478 0.859436 2.773637 1.320248 0.353397 -0.890532 2.448317 -1.713081 2.667848 -1.015825 2.624247 -0.823475 -1.107631 -0.173256 -0.277951 -1.561749 -1.417502 1.219052 1.922809 0.046252 1.212172 0.883856 0.979447 2.982687 -1.265008 2.556173 -0.614450 0.336177 -1.008240 -0.968477 1.690784 0.714243 -0.431906 1.090074 -2.994987 -2.377249 -3.390177 -1.353970 0.768772 -0.878467 0.682855 -1.158092 -0.679570 -1.997936 -2.172899 2.502366 -0.641160 -0.342110 1.623788 0.529109 1.266820 2.192983 -0.616177 0.619244 -0.837380 0.593746 1.067962 -1.125912 -1.635016 2.628082 -1.373464 -0.230108 2.848221 -1.086823 1.065381 0.282508 0.880663 -1.666157 2.058419 0.137172 -0.713895 2.057299 2.818439 2.043673 0.377980 -1.162469 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator--() = -0.078502 -0.222322 1.034214 0.753673 -0.259771 0.038198 0.126002 -0.471389 0.511781 0.191028 -0.113906 0.101106 -0.420484 0.177476 0.107793 0.586866 -0.824642 -0.271090 -0.132205 -0.537703 -0.228737 -0.185380 0.326283 -0.098603 0.494545 0.328140 -0.270879 -0.180400 -0.113376 -0.609572 0.314336 -0.273841 0.375903 0.264496 0.049712 -1.368533 0.658610 0.304417 -0.338987 -0.443693 0.366159 -0.284598 0.176789 -0.236466 -0.172165 0.208946 0.090733 0.202682 0.520719 0.318688 0.175146 0.041616 0.363169 0.905389 -0.406502 0.253147 0.139244 -0.295153 -0.287008 0.031990 0.094840 -0.005763 0.264079 0.123785 -0.022902 -0.704264 -0.184876 -0.394188 -0.519939 0.354379 -0.099433 -0.181886 -0.480859 -0.267756 -0.236314 -0.257709 -0.936386 0.563320 0.678132 -0.543504 0.376935 0.053238 -0.026156 0.051851 0.128612 0.158526 0.376122 0.130177 -0.058878 0.055994 0.140032 -0.319275 0.304626 -0.003437 -0.144827 -0.739949 0.312676 -0.297207 -0.518960 0.242739 0.414254 -0.145857 -0.413184 -0.206233 0.105790 0.321260 -0.330008 -0.441231 -0.008015 -0.004688 0.114858 -0.090763 -0.183484 -0.188703 -0.248110 -0.120823 -0.719568 0.202487 -0.099548 -0.109303 -0.142207 0.426082 -0.032922 -0.128791 0.011382 0.362264 -0.349096 0.790452 -0.116887 0.480175 -0.006684 0.249973 -0.380655 0.107052 0.419204 0.241456 -0.101441 -0.167787 -0.418604 0.062125 -0.523257 0.040743 0.079730 0.489945 0.739162 -0.234655 -0.401301 -0.110774 -0.322195 -0.842017 0.214895 -0.372265 -0.001021 0.372692 0.399603 0.287967 0.520135 0.558668 -0.475593 0.106579 -0.227349 -0.159833 0.593469 0.282037 0.468271 -0.300525 -0.138061 0.167826 0.130470 0.223012 0.094374 0.003883 0.164087 -0.531045 0.011514 0.324427 0.269000 -0.134920 0.292679 0.424858 0.885180 -0.207911 0.037569 0.459459 -0.171545 -0.051911 0.203971 -0.470747 0.215907 0.169349 -0.086746 0.376085 0.003469 -0.184931 0.093945 -0.196410 0.112408 -0.294655 0.023205 -0.248527 0.020869 -0.274904 0.052503 -0.341068 -0.275982 -0.173130 -0.141639 0.641254 -0.461138 -0.206647 0.587870 -0.287865 0.253059 -0.576303 1.008399 -0.427832 0.347385 -0.399052 -0.175178 -0.041492 -0.011249 -0.419686 0.130468 0.172220 0.031833 0.021627 0.691124 0.392256 -0.004472 -0.126636 0.621183 -0.159501 0.646899 -0.094249 0.599080 -0.210158 0.050889 0.052109 -0.081733 -0.254771 -0.188829 0.151054 0.555738 0.186073 0.226725 0.330929 0.215502 0.624825 -0.312231 0.496639 -0.077930 0.386918 -0.217881 -0.208410 0.304572 0.419360 -0.121991 0.224514 -0.704725 -0.665305 -0.543948 -0.289177 -0.113046 0.214990 0.174916 -0.152225 -0.025551 -0.407283 -0.356768 0.541098 -0.177314 0.222034 0.196347 0.078248 0.404651 0.556969 -0.166361 -0.223641 -0.115636 0.095656 0.194425 -0.023931 -0.516293 0.606178 -0.484237 -0.040358 0.656496 -0.344093 0.097009 0.000000 0.594199 -0.436264 0.623167 0.069178 -0.187443 0.643034 0.656506 0.475065 0.090818 -0.275183 -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.738364 -1.023139 4.535572 2.912759 -1.585559 0.051882 0.721983 -1.846991 1.519149 -1.743159 -0.985759 0.872376 -1.925433 0.921764 -1.913627 1.083962 -4.388228 -1.609455 -0.895120 -1.825087 -0.667817 -0.623462 1.457784 0.716382 2.243108 2.274441 -1.384537 -0.837971 -1.883408 -0.331599 2.082380 -0.733937 1.359250 1.269658 0.215313 -5.267625 2.195179 1.536592 -1.277918 -2.066889 2.027966 -1.874385 -0.282052 -2.431068 -1.164064 0.046485 0.119990 2.607054 1.673201 0.426623 -1.166950 0.910875 0.455216 4.456982 -1.596384 1.061014 1.431749 -0.358665 -0.671169 -0.063078 0.356110 0.152947 0.522087 0.417699 -0.383686 -2.795358 -0.612396 -2.359559 -1.249854 1.803575 0.185179 0.224878 -1.873615 -0.494397 -2.786534 -0.303530 -1.741466 3.188730 2.766484 -2.845344 1.314889 -0.339852 0.211492 0.093618 0.252782 0.862324 1.237148 0.730688 0.425269 -0.795703 -2.480659 -0.401924 0.811464 -1.704346 -0.924479 -5.030583 1.641861 -3.931730 -2.374355 0.102528 1.645117 -1.703632 0.436758 -0.134439 0.313127 1.158020 -1.174269 -1.357082 0.529371 0.481083 0.317168 -0.126182 0.312658 0.483213 -0.351368 -1.654561 -3.282608 1.606355 -0.241744 -0.030759 0.575867 1.932701 -0.487054 -0.387416 0.062391 1.107266 -1.406560 3.133866 -0.541923 0.658908 0.082908 1.108131 0.618133 0.706420 1.750912 2.406993 -1.616659 -0.376203 -1.252608 0.660620 -1.847349 -1.324592 -0.366313 1.096597 0.307502 -2.147029 -1.870368 -1.093910 -1.689069 -3.248670 -0.095684 -1.186240 -1.531000 1.947603 1.714316 2.289940 1.992332 2.403259 -1.452181 0.437270 0.104186 -0.605414 2.003889 0.597225 1.650943 -1.257119 -1.239992 0.963131 -0.981733 1.567292 -0.380830 0.737770 0.470495 -2.686185 -0.424387 1.000590 1.807459 -0.182341 1.857356 2.325798 -0.435863 -1.821858 0.237929 1.874568 -1.401035 -0.493945 0.911443 -2.071576 1.190434 0.796506 0.112623 2.010433 0.156878 -0.811710 0.877219 -0.332627 0.633408 -1.323941 -0.677058 -0.994192 -0.830284 -1.824329 1.039005 -0.862953 -1.021272 -1.613525 -2.354680 2.834216 -3.506067 -1.417464 2.444507 -0.247877 2.035572 -2.984285 2.170453 -1.615006 2.489288 0.432678 -0.089826 0.376630 -1.394758 -2.767788 0.526465 0.651746 -0.497125 0.410323 2.309871 1.753807 0.233662 -0.449807 2.581629 -1.073339 2.832553 -1.074737 1.718349 -0.932965 -1.743264 0.659844 -0.275561 -1.285035 -0.854791 1.716670 3.429063 0.606256 3.005709 2.549306 1.286509 3.044903 -1.363445 0.921157 -0.952873 1.090371 -0.967222 -1.211867 0.985255 1.669855 -0.404481 1.117176 -3.245857 -4.669851 -4.053157 -2.542405 0.768655 -2.459352 0.661552 -0.892670 -0.399984 -2.711221 -1.875439 0.612292 -0.818048 1.937466 1.918724 0.087303 1.740514 2.301589 -1.970089 0.116147 1.506892 2.239146 0.849664 -0.003219 -3.466833 2.595178 -1.910724 -0.059118 4.213482 -1.764327 1.155462 -0.646091 2.731821 -1.910027 3.250287 0.561420 -2.642520 1.804248 2.346478 1.176944 2.242111 -1.478957 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::push_back(int const&) = 1.294852 -1.217723 8.898397 5.935895 -2.005821 0.503435 0.570240 -5.162289 3.937113 0.370815 -1.298674 1.554762 -2.627053 1.749865 -2.835356 4.060358 -7.014887 -2.324940 -2.145353 -5.030538 -2.195127 -1.117572 2.371184 -0.175259 4.385669 2.096998 -2.861687 -0.693057 -2.368787 -5.407665 1.999329 -1.353131 1.858671 -0.855411 0.730531 -8.636268 5.871371 3.464404 -2.647756 -3.480795 3.350588 -2.538296 -0.776883 -1.852477 -1.115238 0.894012 -0.360552 3.156463 3.975609 2.234717 0.932760 2.561979 2.252426 8.326852 -3.257348 2.658673 1.690730 -1.046436 -1.629431 1.434774 0.567322 0.708064 0.959886 0.439416 0.502979 -5.907681 -0.882050 -2.197467 -2.133534 3.595938 -0.442974 -2.740446 -3.239188 -1.788250 -4.103327 -1.068803 -5.771329 4.647821 4.951034 -4.356356 2.039719 -0.123768 -0.266634 0.432174 1.082375 0.565765 3.892240 1.350811 0.412818 -1.190054 -1.086883 -1.245529 2.277086 -1.413883 -2.404347 -8.309799 3.238765 -6.657700 -4.802464 1.155516 3.903703 -2.970103 -1.226533 -1.153341 1.054892 1.063977 -1.826553 -2.931162 0.702431 1.257024 0.542299 -0.783435 -0.182672 -1.803698 -0.356107 0.217353 -6.052750 2.822276 -0.411472 0.390493 -1.361452 3.597179 0.649249 -1.647707 -0.133043 3.066932 -2.508816 4.592472 -2.041984 3.744579 -1.070556 3.791137 -1.643890 2.402378 3.212964 -0.679038 -1.916399 0.140840 -3.015440 1.329359 -4.326513 0.833239 -2.401625 3.531625 2.783959 -2.663169 -3.543363 -1.048380 -2.879820 -5.512010 0.859067 -2.221635 -4.253121 0.919225 3.256284 3.412770 3.883063 2.807997 -2.856480 0.234846 -0.288581 -0.512935 4.629345 -0.948707 3.299471 -2.592952 -2.039828 1.748552 0.090808 1.986422 -0.398346 1.141798 1.113229 -4.549549 0.139961 2.088126 2.329831 -0.683166 3.354831 4.387817 4.616223 -2.890239 0.595611 3.710018 -2.767845 -0.418976 1.050431 -3.898626 1.120996 2.003166 1.864612 4.926808 0.292933 -0.859782 0.978327 -0.716534 1.320888 -2.395127 -0.404833 -2.146722 -1.043817 -1.692670 0.943832 -2.138704 -1.262964 -2.448900 -3.875329 5.069725 -6.138409 -2.832624 6.283519 -2.314697 2.132330 -4.925266 5.605713 -3.133245 2.792923 -0.561470 0.216062 0.024124 -0.766514 -5.530899 2.283875 1.279090 -0.984524 1.570955 5.234801 2.832622 0.907014 -1.740276 4.783572 -3.078388 5.484033 -2.124719 4.964560 -1.731061 -2.043442 -0.324608 -0.566733 -3.058734 -2.380854 2.482426 3.831124 0.459819 3.105686 2.374814 2.296655 5.751288 -2.599826 4.494194 -1.366724 0.719641 -2.071648 -2.308381 3.205237 1.830847 -0.815096 2.120036 -6.258969 -5.572678 -7.177653 -3.686012 1.163648 -2.118093 1.520755 -1.954041 -1.331339 -4.176833 -4.082207 4.820545 -0.931305 1.061234 3.298769 0.812613 2.757825 4.545873 -1.715940 0.821443 -0.930587 1.589074 1.824024 -1.850448 -4.343463 5.530554 -2.843655 -0.059272 6.421439 -2.694707 2.286402 -0.151037 2.531503 -3.663494 4.513173 0.490564 -2.387228 3.727331 5.110942 3.625325 1.284665 -2.601515 -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.951215 -1.062812 3.955980 2.759935 -1.452511 -0.039145 0.811851 -1.433486 0.985831 -1.533659 -0.824794 0.970681 -1.871340 0.818708 -1.489573 1.067186 -3.831113 -1.353914 -0.829318 -1.226812 -0.314737 -0.480866 1.546852 0.915092 2.162399 2.387086 -1.242837 -0.979222 -1.609742 -0.310381 1.672572 -0.560269 1.441232 1.649610 0.147508 -4.109755 1.806993 1.556886 -1.029792 -1.909662 1.939112 -1.377468 -0.336658 -2.296956 -1.217079 0.195998 0.116696 2.243522 1.299708 0.523636 -1.280333 0.770030 0.899505 3.195407 -1.046726 0.891019 1.435792 -0.225601 -0.371445 -0.544944 0.405691 0.208048 0.415369 0.257912 -0.169236 -2.420181 -0.859249 -2.061840 -1.197258 1.463972 0.113060 0.557490 -1.889182 -0.405390 -2.343680 0.005201 -1.130898 2.870802 2.386060 -2.470564 1.128277 -0.264176 -0.168468 -0.196733 -0.094420 0.835439 0.415526 0.768111 0.655145 -0.579391 -2.179111 -0.657480 0.737401 -1.604122 -0.963633 -4.476405 1.503716 -3.312099 -2.045268 0.027100 1.442868 -1.712899 0.722581 -0.115390 -0.002662 1.283028 -0.959660 -1.046433 0.648215 0.251053 0.663404 -0.230888 0.108193 1.001030 -0.404466 -1.389373 -2.879344 1.446709 -0.227410 -0.182727 1.027196 1.395720 -0.320550 -0.065156 -0.011386 0.837380 -1.169439 2.766897 -0.191376 0.597258 0.412006 0.959043 1.469360 0.466883 1.617693 2.266109 -1.526760 -0.433816 -1.126957 0.616320 -1.193611 -1.169914 0.052716 0.736898 0.238715 -1.859016 -1.644081 -1.030495 -1.843545 -2.815788 -0.072009 -0.983512 -0.899380 2.112849 1.413430 1.384356 1.647544 2.210893 -1.257051 0.058988 0.318455 -0.601989 1.581246 0.833373 1.280664 -0.955129 -1.234138 1.088700 -0.886564 1.504057 -0.384092 0.933736 0.480333 -2.121212 -0.385897 0.892426 1.442771 -0.338369 1.584665 1.924156 -0.913281 -0.682102 0.036273 1.571225 -1.149566 -0.411890 0.829785 -1.961067 1.194335 0.410450 0.093862 1.661920 0.085645 -0.619191 1.252191 -0.418250 0.378902 -1.198060 -0.337605 -0.917382 -0.551336 -1.881663 0.910354 -0.402564 -0.943264 -1.343927 -1.697085 2.545372 -2.752995 -0.937871 1.693558 0.048696 1.665970 -2.457647 1.920540 -1.247981 2.107854 0.701284 -0.300801 0.683654 -1.747103 -2.372974 -0.209894 0.612923 -0.242660 0.097877 1.754461 1.428899 -0.405462 -0.315225 2.058893 -0.750135 2.682104 -0.968168 1.358693 -0.744406 -1.404056 0.626128 -0.152546 -1.110083 -0.924078 1.204292 3.151840 0.324246 2.802340 2.322221 0.764316 2.795096 -1.243922 0.793171 -0.661556 1.105610 -0.852877 -0.956883 0.728333 1.672663 -0.381207 1.319501 -2.688717 -4.159470 -3.315337 -2.246223 0.434513 -2.227794 0.930117 -0.920614 -0.511961 -2.130354 -1.857831 0.318894 -0.690466 1.559709 1.833206 -0.023705 1.554145 1.784130 -1.686374 0.252676 1.389272 2.249149 0.921851 0.096150 -2.841876 2.001461 -1.567749 -0.265399 3.792346 -1.592339 1.130773 -1.177572 2.667702 -1.659294 2.990316 0.434165 -2.452569 1.623450 1.885994 0.641688 1.894161 -1.294721 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 1.628194 -2.538667 16.381497 10.345876 -4.147546 1.262668 1.618084 -8.675468 6.446633 -1.351100 -2.091589 2.794689 -5.289655 2.861822 -6.084950 5.519068 -13.147045 -4.307176 -4.038731 -9.348647 -3.469288 -1.760465 3.573839 0.757433 7.780957 3.503976 -4.897853 -1.935656 -5.873194 -6.831030 4.832041 -2.230483 3.625544 -2.010179 1.172604 -18.283167 9.946237 6.450939 -4.876773 -6.479666 6.638795 -5.613018 -1.027755 -4.325642 -3.046110 0.599528 -0.465338 5.975585 6.920096 2.881389 -0.030787 4.839585 3.081147 17.346871 -6.422061 4.771799 3.522670 -1.935977 -2.927513 2.592772 0.315213 0.909059 1.597089 -0.033945 0.222347 -10.731909 -1.215343 -4.852476 -3.635473 5.920124 -0.233862 -4.253980 -5.278190 -2.707874 -9.454412 -2.391225 -8.990350 8.917540 8.755053 -8.612308 4.158259 -0.952809 -0.395297 1.812287 2.535692 1.912468 6.490675 2.137569 1.049779 -2.151469 -4.141219 -0.606278 3.796160 -3.207422 -4.370099 -17.152003 6.101505 -12.597886 -8.630673 2.057314 6.557107 -6.039720 -1.595339 -2.872622 1.233403 2.298945 -4.390322 -5.465159 0.785716 3.184807 1.009817 -0.998380 0.888739 -3.095588 -0.219728 -2.385805 -10.665912 6.071859 -0.458404 1.185665 -2.633301 7.542712 0.154988 -2.752049 0.112739 5.912170 -5.456759 8.769109 -3.778555 5.370153 -2.516886 5.865325 -2.925771 2.692230 5.572925 1.915603 -3.924374 -0.390383 -5.499247 2.512453 -7.358227 0.452507 -3.219308 6.162458 3.432446 -5.355722 -5.512383 -2.325396 -4.689065 -10.249630 0.527826 -3.431837 -8.273695 3.038426 5.910364 7.173671 6.884068 5.448145 -4.285535 0.876627 -0.662498 -1.947451 8.337710 -1.817891 6.016233 -4.820713 -3.848835 2.490739 -1.087310 4.853647 -1.088905 2.587370 1.809938 -8.340065 0.293092 2.428305 5.081518 -1.412023 6.758224 8.935293 6.502025 -6.952420 0.934210 6.408949 -6.283198 -0.671436 1.910333 -6.607442 1.614942 4.552855 0.937586 9.181763 0.484029 -2.290715 2.159466 -1.273958 2.582307 -4.330259 -1.223335 -3.922198 -2.973820 -3.664757 1.362066 -4.310795 -2.781585 -5.935639 -8.693309 9.415055 -12.873120 -5.247107 10.761838 -2.607952 4.304776 -9.964720 10.410166 -5.812976 6.338653 -0.336396 0.549882 0.046701 -0.278712 -10.526929 4.523598 2.083801 -3.145450 3.210981 9.793465 5.624698 2.120621 -3.282450 9.326817 -5.709226 9.497245 -4.636746 8.482506 -3.682796 -5.010471 0.134100 -0.967834 -5.290961 -3.779972 5.877315 7.307213 0.961710 6.871561 4.523634 5.694375 10.192097 -4.009805 6.665195 -3.356815 1.635720 -3.527070 -4.326084 5.274246 4.365005 -0.360333 3.531904 -12.057812 -11.537978 -13.898434 -7.111350 3.658216 -4.511739 1.513742 -2.799632 -2.053285 -9.499440 -7.259156 6.852459 -2.337491 2.730416 6.434146 1.514805 5.362747 8.365037 -3.884895 1.321752 0.652987 4.267744 3.310720 -2.695383 -9.157985 10.294109 -6.057485 0.165039 12.404653 -4.873860 4.581598 0.378759 5.111475 -7.128883 9.148876 1.028444 -5.746432 6.586470 10.250599 6.298092 3.528040 -4.499572 -PE-benchmarks/Nearly_sorted_Algo.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -0.679955 -2.093142 3.280141 2.047509 -0.649624 0.523682 1.320760 0.146651 0.507759 -0.634998 -1.312985 1.519465 -2.320236 -0.353009 -0.270088 -0.587091 -2.788748 -2.162578 0.021526 -0.025807 -0.120317 -1.293152 -0.499569 2.724288 1.502642 1.223016 -1.012154 -0.352984 -3.213592 0.036254 0.005866 -0.226173 1.453202 1.127507 1.463920 -3.461434 0.790416 1.944504 0.154147 -2.721388 1.129752 -1.735256 0.217367 -1.443003 -0.875476 0.817718 1.844054 1.988270 0.530911 -0.162734 -1.720114 -1.044340 -0.244028 2.578285 0.357798 1.202782 2.138939 -0.768088 0.274183 -0.888413 0.154972 -1.783100 0.736570 0.437889 -1.579422 -0.680767 0.383146 -1.359142 -0.964772 1.168967 1.188590 0.067480 -1.482484 -0.924441 -2.916773 -0.201078 1.825800 2.416268 2.730803 -1.872431 2.402772 0.588625 1.564256 0.124138 0.958650 0.255658 1.445905 0.251136 -0.610208 -0.691253 -4.111551 -1.284453 -0.819738 -0.014331 -0.497402 -1.173713 0.870394 -3.668219 -2.451313 0.225045 -0.303275 -1.513251 -0.368402 0.978191 0.927222 1.641137 0.031770 -1.496609 -0.774617 0.956841 -1.158772 -0.056863 0.620709 1.021451 -0.587223 -1.735648 -2.372377 0.917508 1.057742 -0.832539 0.375852 2.067685 -1.664034 1.938585 0.485787 0.448042 0.014055 2.088495 1.480364 -0.650988 0.810598 -1.775249 -0.542949 -0.370582 0.193397 2.699032 -1.618896 -0.260828 0.576565 0.697303 -0.192286 -0.846626 -0.340512 1.979839 -0.205644 -2.121336 -1.620590 -2.184694 -1.607897 -1.414270 -0.245371 -0.660593 -0.692569 1.687531 1.245238 1.610588 0.016633 3.009190 -1.054361 1.005076 0.632301 -0.887045 0.179344 0.169821 1.005406 -1.377865 -1.028103 1.024887 0.156376 1.633908 -0.379368 0.053548 0.373141 -1.713042 -1.804375 0.868637 1.053400 1.234157 2.341152 1.979368 -0.181173 -2.022758 -0.215992 0.411061 -0.576824 -0.817831 0.649342 -1.863280 1.484225 0.248545 -0.020554 2.126186 0.007685 -1.116261 1.537818 0.129815 0.334279 -1.787571 0.337632 -1.140126 0.246605 -1.446487 -0.177386 -1.206251 -1.059726 -1.924877 -1.426744 2.744824 -1.218157 -3.091372 0.735522 0.001137 2.788860 -3.746234 1.154935 -0.986646 2.573137 0.358704 -0.250158 0.285065 -1.091438 -0.598452 0.178950 0.533812 -0.750838 0.728737 0.955014 0.888643 0.245618 0.639488 1.301910 0.122597 1.036975 -0.847781 -0.025848 -0.472300 -0.865751 0.160449 -0.268546 0.539129 1.491237 0.311513 1.585687 1.438775 1.476334 2.181437 1.932683 0.734370 -0.689345 -0.633905 -0.768267 2.335935 -1.234999 -1.222018 -0.877467 1.417010 0.209260 0.692658 -2.947527 -3.695888 -1.915764 -3.662973 -0.403356 -1.764201 0.628930 0.622827 -0.171602 -2.695556 -1.259951 -0.023435 0.282836 3.556600 1.137505 -0.142930 2.112703 1.213450 -1.151786 -0.798534 1.949799 1.667956 -0.660765 0.042181 -2.455572 0.868915 -2.396769 1.384025 3.147134 -1.629832 1.249392 -1.165068 2.073322 -2.578400 3.210724 1.298744 -3.612510 0.292960 1.253390 1.065740 0.054265 -1.665109 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.116750 -0.445017 1.864158 1.284877 -0.141420 -0.014846 0.805977 -0.819217 0.777459 0.104147 -0.141848 0.301397 -1.096340 0.395915 -0.665268 0.883010 -1.248451 -0.805768 -0.358968 -0.920767 -0.128883 -0.320331 1.110293 -0.126175 1.198526 0.080490 -0.643941 -0.947165 -1.176324 -0.694901 0.767964 -0.411964 0.775039 -0.067867 -0.510229 -2.055775 1.002357 0.857676 -0.685246 -0.743371 1.199945 -0.742312 0.050877 -0.534393 -0.246121 0.062483 0.019277 0.268737 0.999210 0.519655 0.453582 0.450248 0.388210 1.736495 -1.162636 0.520682 0.244959 -0.196819 -0.569591 0.133630 0.084875 0.134991 0.474508 0.190794 -0.125298 -1.310220 -0.384196 -0.756393 -1.038723 0.614221 -0.284313 0.023465 -0.762119 0.052245 -0.709888 -0.256306 -0.318094 0.829115 1.168641 -0.871578 0.745890 -0.220321 -0.289833 -0.261565 -0.126615 0.388995 0.038757 0.181494 0.237434 -0.643075 -0.602663 0.210689 0.219265 0.267039 -0.289276 -1.400049 0.939111 -0.458620 -1.079580 -0.007844 0.741862 -0.649030 -0.475844 0.109069 -0.162690 0.738936 -0.601770 -0.859122 -0.087083 0.102080 0.449663 -0.222059 -0.156726 -0.566970 -0.514897 -0.732364 -1.249540 0.445939 -0.400758 -0.341006 -0.527372 0.671225 -0.418658 -0.146423 0.148732 0.876409 -0.687041 1.051886 -0.313539 0.735612 0.426927 0.338576 -0.608685 -0.317165 0.884276 1.301128 -0.611719 0.036116 -1.027412 0.050219 -0.782013 -0.226743 0.203135 0.677641 0.872219 -0.963562 -0.619813 -0.021703 -0.088730 -1.431719 0.171399 -0.616018 -0.042603 0.399699 0.707284 0.339614 0.994277 1.785117 -0.612546 0.339681 0.151280 -0.662944 1.150522 0.051196 0.848622 -0.548574 -0.673622 0.250265 0.059087 0.441005 -0.242383 0.669783 0.139050 -1.286019 -0.096064 0.073540 0.370570 -0.441162 0.614758 0.825797 0.708202 -0.764419 0.208454 0.948841 -0.547052 -0.026852 0.300407 -1.105754 0.364433 0.353369 -0.333523 0.856952 0.164958 -0.682130 0.533691 -0.462236 0.264472 -0.698590 0.180891 -0.567740 -0.216873 -0.731999 -0.220197 -0.175541 -0.630498 -0.347633 -0.428576 1.154897 -0.582568 -0.647465 0.776550 0.038153 0.192679 -1.588464 1.782540 -0.788555 0.579636 -0.337356 -0.010966 0.042071 0.380180 -1.094487 0.045680 0.262054 -0.221243 0.675789 1.559659 0.742175 -0.013925 -0.355614 1.204050 -0.260161 1.282927 -0.340267 1.024382 -0.318478 -0.787926 0.314272 -0.142057 -0.527484 -0.493162 0.389999 1.332499 0.485294 0.587273 0.899290 0.511432 1.674323 -0.501603 0.941235 -0.197447 0.842054 -0.140067 -0.376755 0.603393 0.636093 -0.203110 0.815089 -1.344307 -1.811181 -0.503317 -1.428534 0.620000 -0.433225 0.367497 -0.442989 -0.059364 -1.366183 -0.807855 0.025469 -0.379810 1.073288 0.689330 0.171215 0.599432 0.920220 -0.781533 0.092471 0.103178 0.819802 0.445432 -0.460899 -0.815130 0.880882 -0.882873 -0.104878 1.301696 -0.587379 0.317306 -0.280287 0.852441 -0.842191 1.498233 0.114115 -0.408432 1.528378 0.769583 0.967831 0.424744 -0.451339 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::max_size() const = -0.060684 -0.242359 0.738344 0.473410 -0.178748 0.088897 0.126817 -0.321186 0.369198 -0.274256 -0.171404 0.073556 -0.459349 0.123200 -0.406863 0.083453 -0.625894 -0.380420 -0.189902 -0.345308 -0.128666 -0.227405 0.176959 0.144704 0.316640 0.303078 -0.238947 -0.035086 -0.596292 0.013104 0.351697 -0.094790 0.201794 0.176148 0.063672 -0.713797 0.341946 0.382169 -0.206700 -0.399274 0.304938 -0.458476 0.039302 -0.379317 -0.068254 0.042176 0.000734 0.287233 0.307270 -0.017211 -0.057894 0.096085 -0.107515 0.716243 -0.362575 0.256861 0.235149 0.005446 -0.100967 0.050295 0.023278 0.035807 0.118039 0.114434 -0.241600 -0.418390 -0.080330 -0.390590 -0.244398 0.348045 -0.064056 -0.017954 -0.330669 -0.177352 -0.578461 -0.123543 -0.408217 0.450285 0.527992 -0.508423 0.293008 -0.014256 0.145100 0.060108 0.182029 0.113102 0.321353 0.079209 -0.014665 -0.075723 -0.490448 0.073347 0.044521 -0.152517 -0.193512 -0.614260 0.328009 -0.760649 -0.497402 0.018822 0.194140 -0.230525 -0.028037 0.159540 0.016704 0.195511 -0.224275 -0.346867 0.068977 0.202233 0.094793 -0.001713 0.109226 -0.010719 -0.077981 -0.424329 -0.578562 0.230950 -0.022720 -0.078573 -0.009787 0.470348 -0.206172 -0.033630 0.054699 0.156716 -0.240070 0.624346 -0.096176 0.084333 -0.126197 0.080099 -0.256649 0.042721 0.241949 0.506301 -0.337329 0.066271 -0.145990 0.037160 -0.352782 -0.254709 -0.168892 0.144100 0.056562 -0.454643 -0.277190 -0.193253 -0.297079 -0.626540 -0.041567 -0.204594 -0.247011 0.218702 0.332766 0.606711 0.329979 0.695463 -0.242018 0.033708 0.022110 -0.231211 0.344356 0.088992 0.320809 -0.251966 -0.297114 0.184381 -0.146712 0.230244 0.027888 0.106105 0.005935 -0.523612 -0.021698 0.213460 0.298594 0.010915 0.466968 0.457555 -0.243660 -0.488252 0.140517 0.302320 -0.212625 -0.030297 0.095383 -0.383972 0.231915 0.187030 -0.019886 0.325502 0.011574 -0.100667 0.117421 -0.117338 0.237562 -0.362005 -0.103781 -0.225858 -0.137550 -0.417555 0.200526 -0.167970 -0.236487 -0.239024 -0.437898 0.501104 -0.467446 -0.287645 0.422769 0.149372 0.394976 -0.507123 0.202474 -0.298674 0.628024 0.052930 0.090355 0.033682 -0.092606 -0.352575 0.075007 0.127525 -0.170538 0.130975 0.400044 0.301585 0.082713 -0.020822 0.487685 -0.190761 0.402567 -0.232008 0.300013 -0.102341 -0.351550 0.243550 -0.121579 -0.155961 -0.069598 0.254705 0.662049 0.292981 0.463669 0.428226 0.268874 0.488104 -0.196685 0.090288 -0.133170 0.223405 -0.196628 -0.202545 0.122736 0.283344 -0.053669 0.058721 -0.587946 -0.866147 -0.559959 -0.534622 0.213216 -0.473272 -0.009089 -0.024896 -0.032317 -0.501191 -0.342402 0.147103 -0.203145 0.599699 0.179757 0.061677 0.337362 0.485783 -0.406493 0.010441 0.342607 0.353623 0.050380 0.006126 -0.598789 0.485440 -0.369439 0.020184 0.682153 -0.327425 0.228461 0.057206 0.410018 -0.380010 0.622980 0.146052 -0.435875 0.412282 0.428403 0.407147 0.414338 -0.266229 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::size() const = 0.492760 -0.633217 2.407654 1.666429 -0.468103 0.544625 -0.199468 -1.033112 0.457096 0.402377 -0.366034 0.776471 -0.631469 0.445464 -0.682746 0.803463 -1.494142 -0.281470 -0.667859 -1.016523 -0.345365 -0.196784 -0.062164 0.533237 1.028265 0.712809 -0.644540 0.235101 -0.825330 -1.842449 -0.037275 -0.155533 0.426510 -0.538698 0.737973 -1.487882 1.531758 1.290033 -0.380970 -1.166588 0.700684 -0.322638 -0.257948 -0.161033 -0.205419 0.584677 0.156056 0.515073 0.718857 0.697294 -0.231749 0.459765 1.128042 1.669838 -0.297537 0.811046 0.805201 -0.316745 0.265305 0.092516 -0.161930 -0.010067 -0.170062 -0.290963 0.347651 -1.339106 -0.228183 -0.075396 -0.013628 0.599626 -0.240498 -0.868801 -0.836856 -0.819790 -1.400118 -0.051909 -2.084338 1.103294 1.195129 -0.919303 0.608936 0.022520 -0.114677 0.570751 0.629058 0.248589 0.518380 0.487206 -0.005212 0.303142 0.171351 -0.242125 0.575736 -0.264711 -1.045845 -2.139153 0.816129 -1.975390 -0.976543 0.760732 0.600752 -1.010122 0.202587 -0.736966 -0.111794 0.285524 -0.601396 -0.649906 0.392476 0.628706 0.555626 -0.219725 0.300068 -0.335770 0.103818 0.297447 -1.197684 0.956403 0.289353 0.126431 -0.186841 1.071100 0.711156 -0.039437 -0.122791 0.782198 -0.672109 1.105503 -0.056781 1.068745 -0.992202 0.988144 -0.413409 0.705192 0.733165 -0.938357 -0.628672 0.129898 -0.498391 0.427160 -0.428639 0.635447 -0.731890 0.854029 0.594994 -0.417165 -0.665295 -0.524200 -1.093121 -0.963689 0.008930 -0.199802 -1.586010 0.290825 0.713587 0.492352 0.622742 0.288779 -0.594498 -0.596516 -0.228460 -0.196670 0.783300 -0.429969 0.471985 -0.640178 -0.500941 0.600476 0.181769 0.527036 0.172908 0.171839 0.509347 -0.546672 0.767759 0.816795 0.616039 -0.457313 1.260198 1.286746 0.999871 0.169570 -0.337869 0.578625 -1.094785 -0.071236 0.112836 -0.814624 0.224483 0.652275 0.402586 1.359758 -0.040559 0.073781 0.822420 -0.307132 0.298625 -0.514732 0.248893 -0.639880 -0.345543 -0.349132 0.210070 -0.477268 -0.210996 -0.882244 -0.953563 1.272474 -1.900112 -0.177628 1.066745 -0.119723 0.208397 -0.792345 1.236475 -0.648526 0.851124 0.615531 0.094039 0.206539 -0.037741 -1.189896 0.294390 0.389648 -0.470151 0.301192 0.806217 0.531235 -0.278802 -0.310764 1.051977 -0.993760 0.934999 -0.734035 0.819201 -0.473770 -0.074617 -0.276912 -0.072086 -0.760813 -0.666006 0.431330 0.139312 -0.381266 0.628624 -0.035688 0.667756 0.949690 -0.283118 0.886373 -0.628380 0.095858 -0.872285 -0.663580 0.483983 0.801962 0.344220 0.438305 -1.703769 -0.889658 -2.139740 -0.392510 0.060792 -0.147534 0.216698 -0.168942 -0.521152 -0.922715 -1.321836 1.860678 -0.169437 -0.407225 0.924032 0.170847 0.681742 0.823296 0.145383 0.179810 -0.403113 0.390329 0.516797 -0.071084 -0.746591 1.293458 -0.785273 -0.216133 1.589664 -0.698576 0.874160 0.239349 0.207077 -1.216117 1.064842 0.242981 -0.783458 0.531885 1.753003 0.778779 -0.163282 -0.565556 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = -0.116750 -0.445017 1.864158 1.284877 -0.141420 -0.014846 0.805977 -0.819217 0.777459 0.104147 -0.141848 0.301397 -1.096340 0.395915 -0.665268 0.883010 -1.248451 -0.805768 -0.358968 -0.920767 -0.128883 -0.320331 1.110293 -0.126175 1.198526 0.080490 -0.643941 -0.947165 -1.176324 -0.694901 0.767964 -0.411964 0.775039 -0.067867 -0.510229 -2.055775 1.002357 0.857676 -0.685246 -0.743371 1.199945 -0.742312 0.050877 -0.534393 -0.246121 0.062483 0.019277 0.268737 0.999210 0.519655 0.453582 0.450248 0.388210 1.736495 -1.162636 0.520682 0.244959 -0.196819 -0.569591 0.133630 0.084875 0.134991 0.474508 0.190794 -0.125298 -1.310220 -0.384196 -0.756393 -1.038723 0.614221 -0.284313 0.023465 -0.762119 0.052245 -0.709888 -0.256306 -0.318094 0.829115 1.168641 -0.871578 0.745890 -0.220321 -0.289833 -0.261565 -0.126615 0.388995 0.038757 0.181494 0.237434 -0.643075 -0.602663 0.210689 0.219265 0.267039 -0.289276 -1.400049 0.939111 -0.458620 -1.079580 -0.007844 0.741862 -0.649030 -0.475844 0.109069 -0.162690 0.738936 -0.601770 -0.859122 -0.087083 0.102080 0.449663 -0.222059 -0.156726 -0.566970 -0.514897 -0.732364 -1.249540 0.445939 -0.400758 -0.341006 -0.527372 0.671225 -0.418658 -0.146423 0.148732 0.876409 -0.687041 1.051886 -0.313539 0.735612 0.426927 0.338576 -0.608685 -0.317165 0.884276 1.301128 -0.611719 0.036116 -1.027412 0.050219 -0.782013 -0.226743 0.203135 0.677641 0.872219 -0.963562 -0.619813 -0.021703 -0.088730 -1.431719 0.171399 -0.616018 -0.042603 0.399699 0.707284 0.339614 0.994277 1.785117 -0.612546 0.339681 0.151280 -0.662944 1.150522 0.051196 0.848622 -0.548574 -0.673622 0.250265 0.059087 0.441005 -0.242383 0.669783 0.139050 -1.286019 -0.096064 0.073540 0.370570 -0.441162 0.614758 0.825797 0.708202 -0.764419 0.208454 0.948841 -0.547052 -0.026852 0.300407 -1.105754 0.364433 0.353369 -0.333523 0.856952 0.164958 -0.682130 0.533691 -0.462236 0.264472 -0.698590 0.180891 -0.567740 -0.216873 -0.731999 -0.220197 -0.175541 -0.630498 -0.347633 -0.428576 1.154897 -0.582568 -0.647465 0.776550 0.038153 0.192679 -1.588464 1.782540 -0.788555 0.579636 -0.337356 -0.010966 0.042071 0.380180 -1.094487 0.045680 0.262054 -0.221243 0.675789 1.559659 0.742175 -0.013925 -0.355614 1.204050 -0.260161 1.282927 -0.340267 1.024382 -0.318478 -0.787926 0.314272 -0.142057 -0.527484 -0.493162 0.389999 1.332499 0.485294 0.587273 0.899290 0.511432 1.674323 -0.501603 0.941235 -0.197447 0.842054 -0.140067 -0.376755 0.603393 0.636093 -0.203110 0.815089 -1.344307 -1.811181 -0.503317 -1.428534 0.620000 -0.433225 0.367497 -0.442989 -0.059364 -1.366183 -0.807855 0.025469 -0.379810 1.073288 0.689330 0.171215 0.599432 0.920220 -0.781533 0.092471 0.103178 0.819802 0.445432 -0.460899 -0.815130 0.880882 -0.882873 -0.104878 1.301696 -0.587379 0.317306 -0.280287 0.852441 -0.842191 1.498233 0.114115 -0.408432 1.528378 0.769583 0.967831 0.424744 -0.451339 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = -0.070947 -0.403858 2.096108 1.370329 -0.505712 0.023161 0.581949 -0.998532 0.885109 -0.669102 -0.198473 0.190037 -1.162040 0.423362 -0.769156 0.546532 -1.814050 -0.894032 -0.546693 -1.117770 -0.215090 -0.369827 1.002412 0.119456 1.117722 0.550285 -0.731801 -0.664722 -1.284472 -0.057360 1.233813 -0.381947 0.834932 0.446761 -0.285719 -2.688043 1.079535 0.827686 -0.730119 -0.810846 1.189792 -1.075034 0.042122 -1.045938 -0.503903 -0.030236 -0.142656 0.562953 1.063755 0.131380 -0.055516 0.536115 -0.059872 2.025953 -1.297834 0.489584 0.321389 -0.247523 -0.611205 0.102007 0.035143 0.244965 0.502797 0.229515 -0.416208 -1.502100 -0.208752 -1.128929 -1.051787 0.854938 -0.067319 0.098027 -0.777467 -0.057254 -1.219577 -0.327996 0.006686 1.224169 1.255406 -1.143941 0.684793 -0.350923 -0.153482 -0.081910 0.102171 0.464051 0.498224 0.169860 0.271472 -0.570215 -1.243817 0.153039 0.278502 -0.123935 -0.313857 -1.768024 0.869320 -1.230831 -1.167966 -0.111476 0.839439 -0.745487 -0.504007 0.055261 -0.015055 0.669427 -0.578558 -0.857759 0.060718 0.333763 0.269045 -0.099549 -0.047637 -0.285616 -0.430948 -1.210769 -1.492558 0.693214 -0.375472 -0.093555 -0.278795 0.970648 -0.711414 -0.372609 0.160814 0.811960 -0.903426 1.386980 -0.553375 0.432977 0.296443 0.213422 -0.218466 -0.389985 0.817015 1.854535 -0.723960 -0.266425 -1.001272 0.098469 -1.082790 -0.637198 0.162654 0.563559 0.519518 -1.138061 -0.667601 -0.155088 -0.375946 -1.818963 -0.041127 -0.632996 -0.308957 0.822096 0.828574 0.994710 1.136211 1.820846 -0.609173 0.427682 0.090686 -0.700657 1.294463 0.229696 0.937178 -0.624703 -0.705323 0.311063 -0.487165 0.710025 -0.228239 0.602312 0.063992 -1.487317 -0.315530 0.175271 0.641214 -0.112242 0.792310 1.134873 0.122781 -1.207093 0.369549 1.063485 -0.674347 -0.091734 0.399234 -1.008890 0.388052 0.515921 -0.471572 1.016451 0.080050 -0.711966 0.305741 -0.268820 0.436307 -0.808323 -0.145423 -0.527109 -0.203429 -1.021775 -0.076039 -0.373648 -0.723428 -0.657878 -0.974755 1.327556 -1.088175 -0.962405 1.175227 0.100487 0.792852 -1.804548 1.248232 -0.869091 1.135534 -0.226754 0.058686 0.049943 -0.092294 -1.399507 0.314395 0.251371 -0.366155 0.505133 1.540016 0.935116 0.170390 -0.414793 1.367698 -0.320401 1.471158 -0.553994 1.088189 -0.417094 -0.940446 0.510679 -0.189762 -0.622677 -0.458284 0.731540 1.638641 0.647497 1.243660 1.178401 0.729626 1.708957 -0.532386 0.638569 -0.323800 0.624326 -0.168151 -0.497237 0.673589 0.859554 -0.182281 0.618119 -1.546173 -2.374250 -1.096754 -1.655304 0.753980 -0.853463 0.197054 -0.307445 -0.067989 -1.547612 -0.792539 -0.120945 -0.469948 1.696045 0.711903 0.125750 0.730783 1.228587 -1.191329 0.035987 0.708267 1.086993 0.416496 -0.219844 -1.584746 1.320388 -0.927536 -0.041055 1.830104 -0.807736 0.492135 -0.318380 1.265854 -0.938818 1.737246 0.165888 -0.880540 1.447815 0.862232 0.827196 1.094698 -0.567233 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = -0.278834 -1.486703 3.333066 2.253777 0.035571 0.780161 0.969041 -0.917052 0.699123 0.810462 -0.580213 1.404786 -1.649713 0.312445 -0.868484 0.765657 -1.824135 -1.350647 -0.335211 -0.981715 -0.145237 -0.851965 0.244328 1.208370 1.654229 0.132919 -1.067228 -0.719654 -2.693476 -2.007958 0.105496 -0.410152 1.183393 -0.687761 0.520295 -2.901746 1.673368 1.995201 -0.407343 -2.045122 1.400832 -0.971585 0.012307 -0.157453 -0.265888 0.838388 0.923879 0.512680 1.174022 0.954691 0.062565 0.096196 0.998130 2.493738 -0.700082 1.310893 1.144236 -0.629999 0.162410 -0.065785 -0.139906 -0.709894 0.521793 0.110906 -0.327124 -1.513268 -0.182606 -0.370773 -1.021984 0.862202 0.018221 -0.525100 -1.268202 -0.450644 -2.042499 -0.297680 -0.345620 1.344700 2.290561 -1.048194 1.906724 0.096033 0.456689 0.150365 0.842864 0.446009 0.509492 0.445542 -0.429075 -0.381068 -1.482420 -0.075866 -0.085421 0.701099 -0.903161 -1.898153 1.160145 -2.123517 -1.909339 0.801534 0.334579 -1.325739 -0.612641 -0.124106 0.218210 1.181924 -0.871707 -1.624257 -0.345164 0.862100 0.090777 -0.410306 0.454821 -0.890480 -0.497713 -0.652924 -1.728300 0.832682 0.488284 -0.622155 -0.876583 1.783997 -0.228222 0.827114 0.186203 1.248714 -0.748806 1.402874 0.441325 0.986284 -0.159625 -0.153083 -1.668157 -0.142712 0.845130 0.703522 -1.271396 -0.064534 -0.747143 0.540787 -0.414171 0.465841 -0.334441 1.668715 1.321108 -1.278460 -1.109901 -0.946367 -0.554311 -1.507236 0.090221 -0.524966 -1.215684 0.333626 1.217136 0.324783 0.845658 1.965681 -0.735543 0.235169 0.081443 -0.812178 1.101638 -0.589494 1.030679 -1.130825 -1.039570 0.798003 0.718669 0.948875 -0.079600 0.395913 0.558838 -1.289312 -0.066194 0.565836 0.812443 -0.163095 1.856656 1.704834 1.565697 -0.865085 -0.401779 0.838920 -1.125775 -0.200712 0.206111 -1.707599 0.768955 0.739835 -0.225417 2.131725 0.038577 -0.936346 1.560458 -0.348059 0.472632 -1.322165 0.688569 -1.203169 -0.211205 -0.856551 -0.620154 -0.802042 -0.844801 -1.377460 -1.037139 2.209366 -1.299587 -1.514227 0.989410 -0.236255 0.628469 -2.797094 2.215614 -1.157580 1.218868 0.206111 0.020135 0.069691 0.727089 -1.277669 0.319378 0.597929 -0.957794 1.394872 1.783879 0.900472 -0.074096 -0.160548 1.600429 -0.530737 1.057532 -0.865158 0.966533 -0.658124 -0.550852 -0.067150 -0.254511 -0.299445 -0.093753 0.308356 0.628759 0.510478 0.417000 0.766501 1.603999 1.462667 -0.515033 0.833582 -0.823772 1.457819 -0.980788 -1.013712 0.083124 1.121453 0.374996 0.958696 -2.710935 -2.237689 -1.684071 -2.350184 0.320151 -0.307621 0.404746 0.115926 -0.257129 -2.502082 -1.484521 1.183324 -0.132520 1.317370 1.391987 0.190107 1.371996 1.213480 -0.426690 -0.157525 -0.106706 0.938831 0.094900 -0.457748 -1.146527 1.235896 -1.833540 0.556545 2.131952 -1.112223 0.936353 -0.112892 0.897827 -2.113242 2.479780 0.759203 -1.461214 1.258187 1.554610 1.668368 -0.526878 -0.982204 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(std::greater) = 0.099261 -0.260527 0.863733 0.713931 -0.203324 0.022077 0.167424 -0.398575 0.312278 -0.012896 -0.115712 0.158130 -0.488128 0.254918 -0.183790 0.461741 -0.677257 -0.302412 -0.238838 -0.328628 -0.103476 -0.168311 0.468708 0.035911 0.498992 0.427037 -0.321646 -0.234171 -0.341764 -0.354085 0.329991 -0.139368 0.380001 0.368274 -0.065294 -0.804326 0.472709 0.422098 -0.264501 -0.420525 0.434275 -0.260377 -0.014577 -0.333702 -0.171981 0.144703 -0.060894 0.167662 0.376580 0.237453 0.078663 0.167109 0.307414 0.562003 -0.333017 0.244836 0.205374 -0.054187 -0.145400 -0.097586 0.106956 0.168726 0.174954 0.131353 -0.004371 -0.589002 -0.278156 -0.376352 -0.442278 0.355356 -0.176105 0.029793 -0.477767 -0.178276 -0.261777 -0.035509 -0.493992 0.518699 0.572129 -0.488237 0.263062 -0.038231 -0.153060 -0.131380 -0.028576 0.139682 0.054554 0.169324 0.132768 -0.068101 -0.074237 -0.149555 0.201872 -0.057623 -0.261494 -0.645066 0.400294 -0.372496 -0.469208 0.061795 0.353863 -0.276351 -0.092541 0.017466 -0.088997 0.331956 -0.227102 -0.325414 0.098573 0.040343 0.348660 -0.134800 -0.166214 0.060520 -0.221690 -0.213920 -0.645362 0.207593 -0.134359 -0.165773 0.068669 0.274421 -0.057703 -0.067482 -0.010674 0.232519 -0.277192 0.679132 -0.081479 0.360256 0.119640 0.263538 0.027417 0.069010 0.423772 0.419337 -0.291558 -0.024431 -0.359987 0.037747 -0.319386 -0.117488 0.052703 0.182883 0.458580 -0.341895 -0.377860 -0.103352 -0.336197 -0.748970 0.062647 -0.329322 0.045492 0.391871 0.334616 0.216652 0.431668 0.754678 -0.396983 -0.016311 0.043905 -0.226520 0.440858 0.263500 0.302819 -0.218938 -0.349081 0.275150 -0.031620 0.189211 0.023482 0.224749 0.071402 -0.476544 -0.000370 0.330650 0.219756 -0.164181 0.322866 0.366074 0.171930 -0.021903 0.080806 0.395924 -0.194018 -0.017648 0.130924 -0.525130 0.251171 0.063858 -0.006575 0.330433 -0.000372 -0.121406 0.265850 -0.236107 0.123994 -0.328700 0.100766 -0.257387 -0.002427 -0.467612 0.077874 -0.006182 -0.241882 -0.087694 -0.113604 0.572902 -0.353551 -0.134706 0.382984 0.019694 0.167980 -0.501895 0.607216 -0.299570 0.385637 -0.050920 -0.095693 0.108746 -0.212030 -0.427422 -0.112450 0.177665 0.019082 0.004796 0.560917 0.283262 -0.205589 -0.085961 0.485622 -0.106186 0.631721 -0.167437 0.466911 -0.080257 -0.156253 0.152466 -0.087226 -0.262338 -0.318404 0.082860 0.725765 0.174189 0.405848 0.405842 0.067557 0.706569 -0.282307 0.395463 -0.038471 0.305587 -0.176160 -0.151303 0.241600 0.383440 -0.151456 0.301349 -0.544962 -0.812285 -0.446308 -0.467085 0.041290 -0.216810 0.261280 -0.227369 -0.123480 -0.349105 -0.464489 0.224067 -0.211138 0.436446 0.267764 0.058977 0.318373 0.447518 -0.318833 0.058518 0.049704 0.349867 0.224018 -0.024103 -0.423350 0.444754 -0.297786 -0.144716 0.690854 -0.305510 0.232894 -0.166187 0.537308 -0.343054 0.675956 0.071977 -0.260415 0.619725 0.382654 0.285753 0.280694 -0.259709 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator-(long) const = 0.049862 -0.634880 2.068717 1.536422 -0.442788 0.079801 0.558677 -0.803227 0.664071 0.228808 -0.187831 0.564570 -1.025340 0.319162 -0.273739 0.990104 -1.575853 -0.645668 -0.362256 -0.794720 -0.281021 -0.348785 0.755477 0.275636 1.185521 0.631152 -0.677437 -0.596925 -0.714775 -1.184248 0.385859 -0.357169 0.845876 0.212681 0.027541 -2.378229 1.159784 0.987011 -0.559735 -1.020499 0.974884 -0.497431 0.097829 -0.579690 -0.606429 0.309196 0.205836 0.473245 0.841674 0.622749 0.081050 0.316754 0.936115 1.738657 -0.540408 0.623161 0.578929 -0.322776 -0.348507 -0.187337 0.202959 -0.035884 0.413380 0.060730 0.043785 -1.261962 -0.475902 -0.657106 -0.910304 0.647004 -0.147190 -0.179059 -1.000926 -0.351158 -0.940083 -0.262925 -0.794890 1.112016 1.329465 -1.100770 0.789742 0.046018 -0.236277 -0.031273 0.076089 0.319520 0.285822 0.344039 0.141942 -0.112257 -0.231408 -0.427704 0.414885 -0.062926 -0.506187 -1.924763 0.815779 -1.067500 -1.194115 0.346134 0.723230 -0.718257 -0.389534 -0.381964 0.046809 0.753820 -0.636159 -0.831704 -0.043147 0.094345 0.407284 -0.271944 -0.126767 -0.046213 -0.344386 -0.273338 -1.433756 0.535932 -0.078976 -0.294580 -0.088496 0.762221 -0.034059 0.131150 0.020526 0.702273 -0.588100 1.313951 -0.038886 0.805920 0.074170 0.522560 -0.072830 -0.084026 0.780189 0.589671 -0.518056 -0.256463 -0.782360 0.274804 -0.603254 0.098087 0.129118 0.829923 0.971583 -0.609978 -0.799075 -0.378283 -0.808129 -1.495640 0.258686 -0.562448 -0.211536 0.853260 0.747248 0.158739 0.814201 1.176193 -0.671016 0.056540 -0.008412 -0.457748 0.967303 0.190010 0.772222 -0.548476 -0.610503 0.530259 0.185144 0.745286 -0.089958 0.411817 0.312858 -0.900250 -0.128414 0.347693 0.500191 -0.337020 0.742331 0.899542 1.085349 -0.190516 -0.028101 0.779623 -0.486351 -0.043289 0.279363 -1.112696 0.450598 0.241352 -0.127736 0.983615 0.027188 -0.437728 0.751375 -0.379966 0.172948 -0.721305 0.229570 -0.617952 -0.047196 -0.743651 -0.022298 -0.364979 -0.494838 -0.582210 -0.464635 1.375567 -1.088135 -0.493213 0.895638 -0.147696 0.503415 -1.381357 1.849820 -0.679574 0.791521 -0.225752 -0.295827 0.241443 -0.219578 -0.958563 -0.067874 0.356657 -0.135726 0.177570 1.214198 0.650234 -0.218739 -0.251940 1.089737 -0.283748 1.337561 -0.418405 1.024478 -0.376874 -0.363406 0.072721 -0.107000 -0.443922 -0.416603 0.312473 1.073822 0.215859 0.640633 0.754232 0.492515 1.396512 -0.629282 0.873800 -0.171152 0.810613 -0.478310 -0.417863 0.422636 0.899093 -0.167116 0.799599 -1.434585 -1.544438 -1.244674 -1.014945 -0.018815 -0.105259 0.527981 -0.431179 -0.251937 -1.010048 -0.978811 0.848103 -0.299995 0.457349 0.803393 0.143779 0.870801 0.927640 -0.393390 -0.041702 0.001341 0.575403 0.452529 -0.222682 -0.886903 0.929714 -0.944784 -0.031432 1.463061 -0.686662 0.486220 -0.393986 1.024426 -0.965643 1.457589 0.163058 -0.708887 1.132600 1.169474 0.751737 0.103032 -0.607907 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::empty() const = 0.282673 -0.422880 1.601146 1.185231 -0.586652 -0.018081 0.418870 -0.579232 0.541530 -0.444635 -0.295853 0.198502 -0.858873 0.334967 -0.182883 0.544099 -1.544217 -0.530976 -0.269009 -0.578903 -0.143415 -0.265428 0.676688 0.184320 0.874074 0.949009 -0.397333 -0.529462 -0.524116 0.016336 0.848985 -0.292705 0.662453 1.047047 0.036530 -1.914703 0.728711 0.498179 -0.458297 -0.759929 0.751152 -0.629122 0.070527 -0.881669 -0.293089 0.163807 0.082570 0.923628 0.662676 0.253558 -0.374423 0.096524 0.321889 1.283543 -0.588414 0.317140 0.429742 -0.238902 -0.259066 -0.152115 0.137170 0.056961 0.296997 0.186771 -0.163608 -1.035387 -0.359791 -0.978045 -0.694796 0.599786 0.078158 0.228629 -0.877830 -0.239961 -0.593449 -0.123419 -1.112794 1.239358 1.011636 -1.050213 0.543379 -0.064769 -0.051813 -0.132676 0.018921 0.352369 0.241037 0.223786 0.164379 -0.152333 -0.821136 -0.474531 0.346590 -0.625807 -0.272196 -1.563515 0.519456 -0.765567 -0.810921 0.051504 0.587012 -0.524875 0.028788 0.032407 -0.008271 0.601668 -0.422203 -0.534159 0.179986 0.040722 0.230054 -0.081607 -0.147655 0.281734 -0.369412 -0.761896 -1.183101 0.500745 -0.177813 -0.140226 0.287557 0.612572 -0.267530 -0.098793 0.052444 0.341230 -0.521176 1.323289 -0.077236 0.292114 0.431298 0.211724 0.191507 0.259233 0.736774 1.233127 -0.435495 -0.192676 -0.531807 0.162732 -0.649175 -0.475100 0.311120 0.447753 0.428164 -0.764869 -0.652966 -0.326680 -0.545286 -1.208057 0.131191 -0.503057 0.068270 0.837718 0.600035 0.674969 0.749134 1.041237 -0.727567 0.137426 -0.047036 -0.234873 0.735603 0.774755 0.619811 -0.432632 -0.381689 0.313191 -0.271823 0.458117 -0.073260 0.306224 0.193785 -0.955718 -0.145445 0.391664 0.532218 -0.210600 0.599372 0.772006 0.013472 -0.368963 0.069698 0.710299 -0.398327 -0.185415 0.434267 -0.802975 0.575237 0.153247 -0.162233 0.541640 0.000803 -0.285365 0.358332 -0.251780 0.136282 -0.457565 -0.165635 -0.372021 -0.225766 -0.788469 0.389682 -0.252220 -0.542874 -0.378031 -0.381806 1.046498 -0.727823 -0.309393 0.684054 -0.217159 0.569622 -0.983062 1.197911 -0.587506 0.601157 -0.108555 -0.271974 0.131909 -0.464719 -0.847303 -0.081419 0.241840 0.005205 -0.000999 0.921591 0.636197 -0.175602 -0.082668 0.925308 -0.199775 1.068192 -0.291382 0.667883 -0.320490 -0.267962 0.301006 -0.097140 -0.376884 -0.318839 0.358727 1.514635 0.292896 1.019461 0.944775 0.266592 1.103147 -0.479719 0.403647 -0.221887 0.588632 -0.302751 -0.354366 0.348463 0.638415 -0.194159 0.474165 -1.095290 -1.667614 -0.891118 -0.758463 0.074592 -0.565349 0.370911 -0.274859 -0.104357 -0.886932 -0.654122 -0.064217 -0.334884 0.588999 0.516496 -0.021935 0.645892 0.813441 -0.671226 -0.083459 0.524740 0.805629 0.334460 0.079304 -1.133447 0.871103 -0.732315 -0.100445 1.461897 -0.620873 0.328283 -0.484286 1.417831 -0.693476 1.219213 0.146955 -0.833091 0.841464 0.889769 0.386994 0.756202 -0.483588 -PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::operator== > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.286948 -0.356205 1.407625 0.937849 -0.198190 0.146786 0.198837 -0.719846 0.578786 -0.193138 -0.138892 0.255853 -0.657673 0.133757 -0.367372 0.321076 -1.020023 -0.638089 -0.414493 -0.785155 -0.135513 -0.275687 0.407957 0.257814 0.643207 -0.039055 -0.586582 -0.166702 -0.992886 -0.414829 0.486757 -0.188354 0.536790 -0.151444 -0.035737 -1.682826 0.809308 0.698804 -0.411567 -0.638454 0.681221 -0.668164 0.023393 -0.472960 -0.513840 0.076761 -0.073406 -0.212240 0.631596 0.113804 0.123021 0.395081 -0.020046 1.318140 -0.677819 0.456320 0.308290 -0.235686 -0.342708 0.128718 0.033391 0.114739 0.380796 0.105003 -0.267300 -0.942185 -0.080845 -0.481196 -0.664189 0.567937 -0.240495 -0.298231 -0.366609 -0.205614 -1.078069 -0.312701 0.508958 0.705424 0.826894 -0.731243 0.511919 -0.173349 -0.016705 0.091513 0.270084 0.219186 0.540584 0.138906 0.092843 -0.257591 -0.548310 0.025321 0.135136 0.230885 -0.312730 -0.669378 0.616285 -1.172869 -0.868762 0.125655 0.505199 -0.466896 -0.701315 -0.106124 0.059518 0.430016 -0.286231 -0.615456 -0.069552 0.445208 0.176998 -0.138409 -0.099010 -0.316860 -0.206543 -0.537468 -0.993814 0.467267 -0.055498 -0.054598 -0.404358 0.773673 -0.553384 -0.180509 0.052768 0.570926 -0.589364 0.850176 -0.409774 0.428659 -0.049618 0.027851 -0.563580 -0.394914 0.344959 0.763469 -0.485758 -0.074452 -0.540381 0.078408 -0.660252 -0.087672 -0.097247 0.518050 0.409479 -0.555294 -0.471511 -0.198731 -0.444797 -1.258947 -0.079155 -0.416239 -0.396949 0.702632 0.567980 0.718389 0.634758 1.265566 -0.273956 0.222227 0.049680 -0.585452 0.812160 -0.358510 0.581346 -0.469957 -0.528630 0.325708 -0.149295 0.488260 0.020525 0.305161 0.047296 -0.888744 -0.310856 0.218394 0.407982 0.158230 0.608239 0.812316 0.319750 -0.838483 0.230331 0.565658 -0.424576 -0.009920 0.041417 -0.661093 0.093894 0.411101 -0.199478 0.858363 0.022886 -0.448125 0.120824 -0.172839 0.378359 -0.598902 0.082666 -0.418113 0.110691 -0.549509 -0.458408 -0.349424 -0.428658 -0.503501 -0.754294 0.947655 -0.778858 -0.885508 0.925404 0.117581 0.586557 -1.326158 0.693396 -0.561706 1.129037 -0.155835 0.105590 -0.051106 0.011565 -0.840254 0.355906 0.212291 -0.402161 0.357212 0.993630 0.540863 0.195464 -0.305997 0.831945 -0.256441 0.914974 -0.433947 0.771328 -0.273759 -0.578136 0.204476 -0.163774 -0.317615 -0.234398 0.408925 0.620549 0.442112 0.593046 0.527112 0.708412 0.977097 -0.363796 0.484590 -0.204546 0.408333 -0.190478 -0.376219 0.401619 0.610429 0.000148 0.218282 -1.070567 -1.324436 -1.045994 -1.166704 0.419288 -0.414823 0.045195 -0.138212 -0.111516 -0.978394 -0.575875 0.230731 -0.254751 1.218815 0.430239 0.198260 0.570256 0.838804 -0.596709 0.000150 0.219089 0.461213 0.142273 -0.225964 -0.958786 0.891736 -0.594598 0.062540 1.087767 -0.430538 0.447845 0.194486 0.245712 -0.675097 1.078025 0.168466 -0.551598 0.897563 0.568516 0.448162 0.342460 -0.446243 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() const = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.052456 -0.178838 0.634863 0.487216 -0.114431 0.007887 0.107858 -0.246725 0.303159 0.145320 -0.094952 0.080668 -0.314638 0.131011 0.026741 0.395703 -0.455379 -0.208358 -0.077233 -0.268126 -0.103561 -0.128327 0.271486 -0.072813 0.337283 0.230391 -0.180768 -0.142622 -0.144181 -0.394794 0.171409 -0.177005 0.250969 0.211484 -0.010830 -0.652098 0.377159 0.230841 -0.206466 -0.294967 0.255874 -0.161265 0.114396 -0.155647 -0.054321 0.164930 0.072145 0.066237 0.312136 0.236141 0.153692 -0.006292 0.249800 0.426199 -0.247981 0.158083 0.103847 -0.143860 -0.148928 -0.036953 0.078028 0.005991 0.154601 0.100182 -0.016788 -0.421702 -0.183026 -0.252094 -0.341412 0.209385 -0.136794 -0.036119 -0.338144 -0.168024 -0.102554 -0.120436 -0.607726 0.313744 0.442482 -0.325983 0.247847 0.045798 -0.024688 -0.022326 0.018926 0.113874 0.104144 0.099911 -0.019090 0.032902 0.126953 -0.161991 0.156037 0.055663 -0.102153 -0.346771 0.243111 -0.130590 -0.319578 0.131060 0.240496 -0.080973 -0.195740 -0.023261 -0.009033 0.254132 -0.203112 -0.270885 0.034173 -0.048023 0.176681 -0.064823 -0.133006 -0.085961 -0.201331 -0.077193 -0.449950 0.095050 -0.092534 -0.142401 -0.040668 0.221851 -0.021385 -0.039014 0.004851 0.206042 -0.198729 0.523569 -0.009523 0.319489 0.013874 0.148606 -0.252107 0.057089 0.298756 0.193845 -0.124218 -0.036759 -0.261297 -0.002620 -0.275719 -0.021473 0.056127 0.244061 0.493060 -0.197880 -0.267882 -0.067657 -0.226812 -0.532336 0.132736 -0.249003 0.092400 0.227007 0.242873 0.138020 0.329758 0.513880 -0.315465 0.013153 -0.100955 -0.151766 0.343330 0.214306 0.280097 -0.173218 -0.123581 0.144094 0.109255 0.095319 0.091311 0.033596 0.105289 -0.351760 0.059686 0.259220 0.144845 -0.130066 0.189766 0.226135 0.395585 -0.022519 0.009593 0.292583 -0.067357 -0.034213 0.132002 -0.336410 0.184715 0.055846 -0.032326 0.168325 0.018360 -0.093147 0.125309 -0.186976 0.073677 -0.209231 0.064006 -0.165826 0.034521 -0.223902 0.062052 -0.139633 -0.180446 -0.029372 -0.008049 0.396291 -0.170008 -0.063823 0.259646 -0.071561 0.113484 -0.315651 0.588435 -0.262447 0.256472 -0.195373 -0.094971 0.009261 -0.029749 -0.204315 -0.042591 0.121979 0.065080 0.004130 0.400064 0.234023 -0.095879 -0.043485 0.378532 -0.075491 0.418066 -0.019741 0.326759 -0.090750 0.016697 0.086588 -0.052490 -0.164737 -0.141979 0.024717 0.413449 0.132479 0.130106 0.247958 0.054014 0.439489 -0.205126 0.300913 -0.015408 0.318828 -0.140311 -0.117158 0.166329 0.287213 -0.099911 0.154928 -0.406427 -0.456791 -0.237781 -0.217758 -0.081302 0.086572 0.132648 -0.117834 -0.018724 -0.203713 -0.251820 0.308007 -0.122737 0.215994 0.098810 0.034553 0.246854 0.315247 -0.132666 -0.130184 -0.075256 0.105488 0.138692 0.008529 -0.270290 0.320754 -0.301469 -0.093030 0.400810 -0.235622 0.050328 -0.006362 0.367752 -0.265230 0.428512 0.053159 -0.104900 0.472509 0.355611 0.319888 0.064706 -0.171033 -PE-benchmarks/subset-sum.cpp__printSubset(int*, int) = -0.609410 -1.382464 2.050504 1.478196 0.071673 0.487959 0.840930 -0.233250 0.521447 0.643689 -0.669878 1.083977 -1.395497 -0.076141 0.014056 0.274591 -1.259861 -1.299646 0.130468 -0.227643 -0.415600 -0.840791 -0.242001 1.239848 0.956706 0.396983 -0.701019 -0.273627 -1.941960 -1.050265 -0.265739 -0.244434 0.901563 0.366495 0.679443 -2.075849 0.789217 1.352239 -0.034449 -1.586185 0.585842 -0.861174 0.132095 -0.230930 -0.073930 0.630861 1.099087 0.767446 0.514951 0.417060 0.010708 -0.634457 0.313827 1.628919 0.085893 1.042493 1.295400 -0.484144 0.052387 -0.297543 0.219522 -1.051562 0.686280 0.466728 -0.824447 -0.519508 0.129579 -0.551621 -0.809834 0.646270 0.649305 -0.370687 -0.899769 -0.674145 -0.929812 -0.364053 0.241742 0.859784 1.913118 -0.926245 1.768950 0.588955 0.992236 -0.033414 0.824602 0.038881 1.014922 0.242616 -0.750919 -0.289669 -1.596729 -0.610118 -0.317670 0.872201 -0.422817 -0.274443 0.610546 -1.324282 -1.727284 0.534688 -0.120149 -0.607139 -0.748698 0.595776 0.624652 0.846163 -0.267494 -1.237874 -0.637386 0.425350 -0.765003 -0.334023 -0.038422 -0.051350 -0.561666 -0.399122 -1.520307 0.265608 0.694254 -0.806845 -0.414784 1.285827 -0.562169 1.203500 0.150242 0.366329 0.027250 1.110580 0.869146 0.093047 0.349600 -0.824321 -1.282608 -0.031896 0.350164 0.848022 -0.968897 -0.189682 0.237884 0.408426 -0.126280 0.215850 -0.345223 1.672342 0.807817 -0.993950 -1.144930 -1.205954 -0.616812 -0.960274 0.269738 -0.672912 -0.396882 0.171212 0.932365 0.411195 0.134167 1.804558 -0.717482 0.840520 0.222533 -0.340597 0.326545 0.020104 0.834667 -0.984189 -0.712995 0.735912 0.812980 0.553491 -0.008883 -0.148531 0.343536 -1.066682 -0.941160 0.628688 0.307416 0.354562 1.380309 0.993581 1.925840 -1.046401 -0.075754 0.255741 -0.165673 -0.339612 0.302401 -1.318352 0.775189 0.147451 0.049092 1.580167 0.104231 -0.897548 0.813641 -0.008054 0.207669 -1.181664 0.730761 -0.767989 0.201570 -0.590153 -0.124498 -0.771963 -0.646412 -0.876882 -0.347647 1.786706 -0.517021 -1.742949 0.515651 -0.214490 1.141586 -2.274696 1.437834 -0.784223 1.093274 -0.394614 -0.458480 0.081410 0.006765 -0.238915 0.398259 0.494488 -0.390039 0.660331 0.984921 0.489710 0.315819 0.350371 0.809326 0.032653 0.444147 -0.387772 0.485864 -0.163062 -0.303262 -0.164998 -0.338969 0.322950 0.700095 -0.206005 0.622555 1.022912 0.051979 0.821354 0.999354 0.516717 -0.638138 0.170199 -0.214405 1.584190 -0.852543 -0.715952 -0.428650 0.570255 0.093306 0.574598 -1.833836 -1.601683 -0.514650 -2.020252 -0.489528 0.059565 0.546891 0.362684 -0.053138 -1.586753 -0.791840 0.939750 0.052545 1.967496 0.716743 0.247186 1.311844 0.797188 -0.210370 -0.625447 0.226127 0.494098 -0.452510 -0.152890 -0.904636 0.546926 -1.337495 0.957754 1.366037 -0.765893 0.557967 -0.516590 1.165531 -1.501475 1.866276 0.752699 -1.583236 0.515750 0.884517 1.348080 -0.738334 -0.992065 -PE-benchmarks/subset-sum.cpp__comparator(void const*, void const*) = -0.510535 -0.773345 2.068927 1.330412 0.119849 0.344881 0.705025 -0.900224 0.880602 0.647032 -0.176454 0.687831 -1.024387 0.039803 -0.937541 0.787184 -0.984618 -1.002070 -0.277886 -1.019279 -0.289025 -0.462190 0.482628 0.314850 1.117476 -0.464102 -0.743371 -0.578013 -1.764042 -1.523448 0.101209 -0.267708 0.614155 -1.068080 -0.098466 -1.837759 1.176780 1.297355 -0.560934 -1.134725 1.004961 -0.782567 0.022113 -0.154417 -0.289693 0.171279 0.239781 -0.200071 0.852575 0.593486 0.682682 0.518037 0.570585 2.176404 -0.805110 0.937717 0.529296 -0.165904 -0.240055 0.416709 0.106053 -0.161878 0.481050 0.060192 -0.165525 -1.101777 -0.322877 -0.316147 -0.750817 0.636386 -0.400280 -0.757266 -0.651779 -0.168080 -1.281239 -0.430564 -0.612958 0.705146 1.232989 -1.024487 1.093552 0.059220 0.149589 0.023367 0.409297 0.183064 0.577724 0.245828 -0.058017 -0.666081 -0.508898 0.353269 0.051690 0.424487 -0.605391 -1.075110 1.183157 -1.198695 -1.527420 0.430399 0.564614 -0.749799 -0.747794 0.047590 0.047623 0.665044 -0.609914 -1.094321 -0.393017 0.651314 0.176906 -0.335214 0.045157 -0.861726 -0.195812 -0.249948 -1.285767 0.519191 0.120118 -0.351423 -1.032388 1.111619 -0.241843 0.146926 0.095569 0.877962 -0.510712 0.899741 -0.150379 0.869545 -0.165408 0.272751 -1.673226 0.027330 0.714810 0.202161 -0.738840 0.498984 -0.645330 0.255457 -0.546520 0.382987 -0.508320 1.110264 0.611931 -0.844879 -0.761115 -0.422902 -0.286192 -1.213443 0.121192 -0.559463 -0.723882 0.372186 0.835694 0.604379 0.691224 1.566207 -0.557616 0.364639 0.189751 -0.630790 0.944225 -0.724792 0.828772 -0.761104 -0.842809 0.406018 0.555090 0.555908 -0.176041 0.489235 0.185691 -1.103057 -0.183646 0.145866 0.404976 -0.201243 1.084833 1.068159 1.155925 -1.275470 0.023207 0.641874 -0.674814 0.004479 -0.094727 -1.243757 0.253234 0.523731 -0.013044 1.322688 0.124392 -0.601041 0.588298 -0.424454 0.426983 -0.875714 0.423759 -0.812876 -0.373493 -0.357924 -0.572057 -0.464780 -0.558227 -0.734131 -0.898650 1.428557 -1.120527 -1.005525 1.045677 -0.093292 0.193124 -1.798088 1.713297 -0.812569 0.828595 -0.155725 0.144045 -0.225422 0.839943 -0.929543 0.203059 0.376945 -0.758416 0.980004 1.692122 0.599937 0.310851 -0.269269 1.166271 -0.558127 0.992961 -0.553441 1.093512 -0.387248 -0.951025 0.041060 -0.269758 -0.288468 -0.218777 0.323951 0.836065 0.543157 0.172927 0.484710 0.918784 1.391444 -0.558502 0.931138 -0.284257 0.851555 -0.464079 -0.534198 0.390669 0.382015 0.037217 0.571309 -1.698988 -1.483527 -1.075069 -1.493280 0.624706 -0.535828 0.242871 -0.315825 -0.190190 -1.655045 -1.102628 0.793316 -0.295004 0.668325 0.797713 0.385537 0.910012 1.004279 -0.369936 0.161163 -0.244502 0.392991 0.196574 -0.758735 -0.567558 0.898772 -1.061873 0.294949 1.192709 -0.408272 0.603855 0.251250 -0.124346 -1.121362 1.445821 0.309414 -0.587138 1.163889 1.080854 1.147544 -0.409368 -0.692403 -PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -6.338469 -7.632188 11.463726 7.166457 0.691315 3.718754 2.526878 -1.476158 0.447103 4.620145 -2.538081 8.491578 -5.610930 -2.028131 -1.200392 -0.216900 -5.257347 -6.188743 -0.743985 -2.680819 -3.462954 -3.017960 -5.231701 9.931922 4.592392 -3.041192 -5.098248 1.145131 -11.629193 -8.836770 -6.704945 0.259286 4.172090 -7.813669 5.333436 -13.322191 4.938502 9.655452 0.513070 -8.118497 2.996273 -3.746922 0.262802 1.578092 -6.008855 1.826469 5.997760 -1.691929 1.456309 1.634557 1.634824 -0.955492 3.008679 13.337048 3.532946 7.115132 8.209309 -3.351226 0.214534 -1.539649 0.480316 -7.035395 2.962019 -0.932135 -3.214746 -2.428703 2.095763 0.661674 -1.716914 1.958048 3.108523 -7.216035 -1.388766 -5.114434 -9.552791 -3.752279 11.391069 2.197610 8.654195 -4.797764 9.149743 2.956710 4.179473 3.264902 6.534544 -0.424988 7.275846 1.187524 -3.139714 -0.341777 -4.136503 0.149685 -1.491067 8.767690 -4.442039 -2.101115 4.380723 -11.684600 -10.494134 4.993823 -0.839889 -5.309461 -5.552947 -1.150341 3.159517 2.917713 -1.904634 -6.299417 -5.264905 5.172016 -4.006893 -2.215125 0.342398 -1.931693 0.123504 0.892655 -7.696884 3.845150 6.034072 -2.189787 -5.052067 8.407431 -2.158387 7.547996 0.464896 3.850336 -0.137584 4.019532 3.923296 0.588716 -5.311258 -3.802496 -7.300401 -3.802869 -1.001970 -2.385679 -5.984868 -2.077621 2.216362 3.048994 1.164354 6.016190 -4.140408 11.508914 2.784866 -2.335898 -5.570954 -7.462445 -6.693413 -5.204782 -0.571314 -1.950587 -8.399790 2.536804 4.398953 1.350405 -1.653380 7.113413 1.164561 4.304549 2.003103 -4.451985 1.379301 -8.593466 3.968173 -5.948167 -4.299951 4.780795 5.075132 6.254283 -0.100866 0.071739 1.834145 -3.372276 -5.268658 1.641481 1.997666 4.280550 8.508622 6.893421 16.873933 -5.667092 -1.127551 -0.802222 -2.600920 -1.059209 -0.754285 -5.410683 -0.633703 2.744556 -1.462794 12.577170 0.829387 -4.993607 4.752903 0.659292 1.962580 -7.274111 6.508845 -3.882385 3.155067 -0.814292 -5.647370 -5.627991 -1.150363 -8.195487 -6.743992 10.239613 -10.264655 -11.869657 3.730343 1.997250 7.044722 -13.720306 8.005040 -3.496134 10.950794 -1.158876 -2.123884 0.776579 1.175681 -1.792020 6.679037 2.189753 -4.685716 3.102969 4.499505 1.721487 3.750006 -0.188312 3.713549 -1.380407 2.748267 -3.632697 3.403141 -0.765758 -3.730786 -3.241242 -1.347537 0.762664 4.983088 0.417231 -4.357750 3.878461 -1.733362 -0.112475 8.784892 1.458580 -2.907312 0.961210 -1.914041 7.210336 -5.548686 -5.031706 -2.095821 5.181710 3.464393 1.311497 -10.920458 -4.891856 -9.164849 -11.001706 -1.306925 2.807080 1.195803 2.458410 -1.987223 -8.238676 -5.328207 11.870046 0.904628 11.697872 5.303425 2.822758 8.101215 3.639707 2.264669 -2.340317 -0.595641 0.526588 -2.023551 -1.447882 -4.216963 3.163914 -7.175598 6.480983 6.169908 -2.925618 5.768953 2.023944 -2.238723 -9.081633 8.608023 3.371465 -9.388024 0.964655 6.200046 5.253639 -8.821441 -5.604739 -PE-benchmarks/subset-sum.cpp__generateSubsets(int*, int, int) = -1.682428 -3.011126 5.570401 3.596744 0.197081 1.259975 1.508026 -1.296411 1.188012 1.407664 -1.416846 3.019094 -2.713882 -0.070091 -1.337064 0.719287 -3.305742 -3.153400 -0.266649 -1.471594 -1.361979 -1.689641 -0.700072 3.022490 2.462479 -0.273193 -2.336160 -0.321637 -5.007548 -3.472246 -0.999476 -0.499005 1.906671 -1.552459 1.584771 -5.873014 2.521310 3.529678 -0.373151 -3.528136 1.705245 -2.025199 -0.063481 -0.296290 -1.337923 1.058169 2.217700 0.657057 1.489499 1.036399 0.676673 -0.289077 0.855192 5.581544 -0.033640 2.763916 2.915254 -1.202763 0.068802 -0.216757 0.421356 -2.245459 1.418480 0.621698 -1.306463 -1.812709 0.375666 -0.802223 -1.387390 1.826934 1.048305 -1.747176 -1.578600 -1.456384 -3.866163 -1.222505 2.086345 1.924276 4.455650 -2.338087 3.855977 1.051401 2.170241 0.515585 2.169564 0.127896 3.027907 0.707360 -1.379635 -0.752989 -2.958704 -0.296002 -0.631470 2.546761 -1.453825 -1.831616 1.948487 -5.130708 -4.399741 1.606823 0.237844 -1.935959 -1.973613 0.419122 1.524068 1.474115 -0.944621 -2.977274 -1.667508 1.568540 -1.509459 -0.764902 0.416364 -1.059687 -0.511516 -0.262560 -3.802742 1.246780 1.630850 -1.250293 -1.802217 3.531900 -0.950033 2.305611 0.256566 1.624259 -0.497640 2.333356 1.179800 0.814133 -0.916742 -1.060594 -3.671574 -0.618866 0.726573 0.498471 -2.612240 -0.550796 0.019316 1.195568 -0.746220 1.233824 -1.585808 4.229220 1.763827 -2.140348 -2.924936 -2.778412 -1.842151 -2.816555 0.100455 -1.382796 -2.903506 0.555372 2.329286 1.432312 0.657020 3.726261 -0.633981 1.944535 0.571959 -1.339305 1.322418 -2.390492 2.070417 -2.452397 -1.950567 1.892752 1.729136 2.127276 -0.019675 -0.106311 0.804571 -2.551010 -2.096918 1.200343 1.282698 1.191328 3.470488 2.929919 4.985893 -3.197092 -0.138741 0.877262 -0.994856 -0.669163 0.259640 -2.965600 1.029781 0.992602 -0.042817 4.576124 0.352298 -2.142008 1.906959 0.054781 0.995378 -2.953300 1.604233 -1.821879 0.597030 -1.128533 -1.196940 -2.201224 -0.986550 -2.676728 -2.551743 4.445737 -3.463288 -4.623779 2.336017 -0.160401 2.758306 -5.969705 3.256766 -1.961271 3.772177 -0.543573 -0.523717 0.019393 0.523282 -1.525707 2.167131 1.116370 -1.836742 1.912894 2.761013 1.329841 1.465604 0.003475 2.396063 -0.586423 1.663783 -1.312107 1.756986 -0.601045 -1.772092 -0.769202 -0.699022 0.067617 1.312433 0.562145 0.336766 1.917814 0.252130 1.408152 3.392595 1.873389 -1.634275 0.688003 -0.976826 3.137732 -2.217546 -2.120965 -0.403753 1.655647 0.396217 0.972826 -4.852389 -3.672186 -3.790801 -5.023317 -0.289728 -0.260406 0.766021 0.524359 -0.536164 -4.121976 -2.235641 3.475330 0.058608 4.340490 2.399832 0.735597 3.249876 2.277192 -0.403441 -0.885733 -0.031262 0.991412 -0.658571 -0.798858 -2.645717 1.991132 -3.307940 2.312719 3.535907 -1.862245 1.911567 0.472863 1.046052 -3.753812 4.438645 1.658713 -3.756622 1.304186 2.500678 3.008645 -1.851596 -2.453567 -PE-benchmarks/subset-sum.cpp__main = -0.058608 -0.786469 1.758906 1.138212 -0.291871 0.035054 0.611381 -0.283166 0.499883 -0.222243 -0.502606 0.671016 -0.892740 0.282888 -0.721584 0.529957 -1.395309 -0.873476 0.000000 -0.322334 -0.172197 -0.324504 0.546422 0.346280 0.936658 0.677279 -0.565673 -0.637212 -1.051420 -0.468304 0.530558 -0.418863 0.666062 0.227368 -0.068396 -2.129149 0.673190 0.709005 -0.432587 -1.096877 0.822108 -0.605534 0.022128 -0.767455 -0.385878 0.114089 0.526216 0.832805 0.472240 0.441700 -0.313748 0.062347 0.412748 1.822551 -0.397141 0.515782 0.865002 -0.139047 -0.204682 -0.229064 0.303109 -0.309469 0.326637 0.293238 -0.153115 -0.831275 -0.402540 -0.876215 -0.659326 0.488152 0.013115 0.330804 -0.751624 -0.089822 -0.930511 -0.126269 -0.498124 1.022804 1.367732 -1.070493 0.948773 0.068518 0.376820 -0.024593 -0.014149 0.425081 0.056694 0.384617 -0.065808 -0.376239 -0.830281 -0.060014 0.068094 -0.190209 -0.264775 -1.645257 0.792195 -1.079922 -0.986739 0.238732 0.373997 -0.484656 0.120017 0.059869 0.118695 0.834335 -0.643835 -0.668229 -0.134973 -0.052653 0.150857 -0.153554 0.187371 0.161835 -0.330889 -0.577409 -1.239447 0.346511 0.074781 -0.478120 0.144219 0.684410 -0.226864 0.382313 0.004058 0.420196 -0.375307 1.205918 0.337556 0.267031 0.184842 0.163885 -0.275709 0.065799 0.734249 1.148804 -0.786024 -0.072391 -0.355017 0.241207 -0.293941 -0.500163 -0.024445 0.561551 0.487400 -0.854366 -0.863939 -0.696370 -0.445963 -1.158561 0.047951 -0.596064 -0.218486 0.799874 0.703872 0.440186 0.637736 1.447567 -0.659802 0.388614 0.065979 -0.344061 0.531020 0.203467 0.640644 -0.507407 -0.565582 0.423544 0.145887 0.555186 -0.050982 0.130120 0.302557 -1.023200 -0.248346 0.435347 0.684603 -0.252614 0.693743 0.667429 0.138335 -0.640405 -0.164959 0.556039 -0.358941 -0.228184 0.323572 -1.056556 0.632424 0.128217 -0.043668 0.671611 0.166109 -0.577082 0.705453 -0.290964 0.093173 -0.537677 0.092528 -0.505069 -0.317679 -0.639746 0.305318 -0.340476 -0.395986 -0.558971 -0.562450 1.224893 -1.068518 -0.563585 0.409358 0.091793 0.633919 -1.429791 1.236396 -0.663639 1.022574 0.097802 -0.159079 0.155974 -0.235374 -0.650019 -0.111307 0.378306 -0.155940 0.293546 0.957491 0.616247 -0.026396 0.072860 0.962178 -0.204088 0.839978 -0.183546 0.417316 -0.329439 -0.733320 0.231753 -0.124272 -0.172683 -0.113282 0.416374 1.223325 0.332828 0.718337 1.104271 0.544442 1.096165 -0.627036 0.256025 -0.292785 1.152721 -0.449251 -0.404406 -0.032717 0.776082 -0.156294 0.598269 -1.267345 -1.804853 -1.259041 -1.216489 0.039217 -0.635847 0.321609 -0.384534 -0.017216 -1.179506 -0.687964 0.235587 -0.308272 0.885859 0.833613 0.078092 0.849401 0.671951 -0.658458 -0.254084 0.438210 0.823554 0.175519 0.022750 -0.997185 0.542865 -1.002915 0.054905 1.400421 -0.627456 0.259420 -0.152900 1.025596 -0.780562 1.545046 0.434694 -1.092150 0.760019 0.809580 0.790337 0.365341 -0.639543 -PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -2.146911 -6.657602 8.475994 6.496831 0.212761 3.159322 3.386513 -0.605567 -0.695581 3.937705 -2.212369 6.249449 -4.727640 -1.531698 0.101855 0.205223 -4.271902 -4.503783 0.344701 -0.731374 -1.629387 -2.786256 -3.631473 8.503031 3.955486 0.188684 -2.803328 -1.215154 -8.622525 -4.633502 -4.445038 0.426896 3.632746 0.579405 5.073830 -6.200204 2.668380 6.951950 1.005466 -6.129558 1.636762 -1.967482 0.177518 0.879141 -2.669565 3.043398 4.971586 1.259490 0.990238 2.005795 0.891970 -2.457146 4.243638 6.144444 3.843881 5.264909 5.288636 -2.473290 3.212022 -2.086509 0.635980 -5.324892 2.109979 -0.360213 -1.577556 -1.278666 -0.454016 -0.051642 -0.927299 1.751311 3.647690 -3.079983 -3.686310 -3.218349 -5.354746 -2.137354 0.511895 2.963495 6.722839 -3.501965 7.575194 3.827109 3.873080 -0.103158 4.857048 -0.223206 4.364131 1.116015 -2.411591 1.561249 -5.485645 -2.246227 -1.274387 3.415319 -3.970501 -2.367776 2.379795 -7.452335 -7.954445 4.141882 -0.975945 -4.176516 -0.962761 1.140639 1.822164 2.216818 -1.563357 -4.896320 -2.931499 3.138418 -2.899046 -1.742353 0.041870 0.419910 0.072681 0.421730 -5.181887 2.495028 4.470172 -2.285741 -1.320084 6.061013 0.287360 6.417232 0.390148 1.082325 0.462513 3.515032 4.583906 0.304121 -1.944884 -3.688287 -5.216751 0.418049 0.517685 -1.746119 -4.018541 -1.864768 2.206370 3.088686 2.021203 4.912049 -0.492687 8.250036 2.162350 -2.517232 -4.631941 -6.208072 -4.649512 -2.134715 0.478905 -0.976373 -4.061729 0.803074 3.265656 0.576102 -1.053391 2.624844 0.704520 2.231586 1.143522 -1.473569 -0.016507 -2.601221 2.479052 -3.858158 -2.834185 4.007925 4.153929 4.744181 0.268902 -0.001202 1.629957 -1.350954 -3.489020 1.422094 1.325318 2.197647 7.378671 5.118724 8.966215 -1.405319 -1.629206 -0.531972 -1.224447 -1.207327 0.376635 -4.688267 2.350419 0.527128 -1.604319 7.757053 -0.299770 -1.708741 5.225373 0.075875 1.026737 -5.543708 4.028636 -3.086040 1.470565 -2.165442 -1.397485 -3.839481 -1.787058 -4.968676 -2.971609 7.879270 -4.972629 -5.785284 1.415380 -0.652467 3.386638 -7.739493 6.201742 -2.162529 4.337088 -0.421045 -3.386343 0.604352 0.652114 -0.567220 2.066954 1.853558 -3.644109 1.974681 2.435912 0.948522 0.649760 1.298873 2.544466 -0.403105 1.549150 -2.639587 2.005803 -0.338390 -0.448099 -2.168484 -0.926338 1.211010 3.713821 -1.026077 -0.237358 2.371331 -0.526497 -0.084093 4.770406 0.557613 -2.326635 -0.697173 -1.258261 5.393318 -5.012965 -3.639862 -2.477784 1.949271 1.720076 0.920611 -7.990911 -3.466757 -4.933083 -5.538235 -2.571461 0.967821 2.243456 2.772551 -1.726543 -5.997804 -4.689814 6.407341 0.467820 2.783982 4.030409 0.800491 6.577445 2.373075 2.349666 -1.236047 -0.436591 1.434997 -1.249066 -0.385858 -2.901714 1.915120 -5.826057 5.429839 5.149930 -2.665929 4.291474 -0.473997 3.345318 -7.272665 6.750833 2.639622 -7.824313 0.004476 5.158515 2.728960 -6.210509 -4.177105 -PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.412424 -0.733312 1.172376 0.776973 0.208506 0.143927 0.512441 0.134319 0.210559 0.616499 -0.383314 0.770448 -0.727375 -0.019082 0.096625 0.294164 -0.564760 -0.811733 0.131326 0.066101 -0.291561 -0.454387 -0.070927 0.582450 0.701587 0.251006 -0.596022 -0.222541 -1.041621 -1.090796 -0.481009 -0.107869 0.507910 -0.028404 0.454097 -0.942191 0.350480 0.686188 0.078828 -0.913779 0.396112 -0.245405 0.160508 -0.026042 0.149159 0.608505 0.923192 0.232428 0.350975 0.393871 0.031744 -0.501966 0.154906 0.621812 0.176981 0.481055 0.699019 -0.355246 0.059723 -0.271251 0.108353 -0.840287 0.259306 0.241627 -0.438744 -0.155154 0.113823 -0.192873 -0.381914 0.445254 0.309702 -0.243114 -0.597814 -0.490496 -0.513537 -0.084902 0.346651 0.463825 1.055413 -0.396703 0.918618 0.300885 0.653582 -0.080269 0.226073 -0.109560 0.344258 0.111173 -0.432075 -0.260215 -0.658018 -0.529738 -0.445475 0.900005 -0.099517 0.291011 0.355809 -0.693582 -0.896855 0.241376 -0.123783 -0.244840 -0.658220 0.503140 0.424595 0.638013 0.104179 -0.621657 -0.485236 0.034055 -0.400094 -0.082157 0.068595 -0.161509 -0.473427 0.061912 -0.820941 0.077321 0.332662 -0.524483 -0.357562 0.539581 -0.365623 0.867402 0.138562 0.333010 0.138240 0.566741 0.780959 0.159053 0.270960 -0.452273 -1.018496 -0.160400 0.190616 0.452856 -0.584179 -0.012087 -0.019841 0.131349 -0.123823 0.058761 -0.323580 1.074432 0.849589 -0.633412 -0.877728 -0.641988 -0.300736 -0.353829 0.165012 -0.321515 0.009299 0.029589 0.351295 0.031243 -0.033618 1.298341 -0.514203 0.389586 0.196746 -0.299990 0.079644 -0.083604 0.405540 -0.545163 -0.302323 0.397046 0.602608 0.257245 -0.003908 -0.117690 0.295153 -0.561927 -0.580963 0.536304 0.159620 0.286941 0.567742 0.434162 0.979080 -0.524582 -0.273994 0.148590 0.008260 -0.340258 0.249994 -0.732476 0.580051 -0.054981 0.231766 0.768457 0.114483 -0.504811 0.724408 -0.038971 0.105370 -0.558785 0.438007 -0.448079 0.306429 -0.210119 -0.293461 -0.404864 -0.149592 -0.314530 -0.069773 0.956058 0.109883 -1.159037 0.155683 -0.208359 0.651461 -1.359350 0.696723 -0.294945 0.427503 -0.249285 -0.060098 0.016432 0.024053 0.108936 0.104815 0.182852 -0.077203 0.302424 0.573274 0.148429 0.042696 0.226319 0.391032 0.173494 0.286379 0.086711 0.047288 -0.112431 -0.019251 -0.173544 -0.001625 0.175222 0.500148 -0.312348 0.164947 0.491117 -0.143640 0.496915 0.544567 0.319341 -0.344695 0.068631 -0.105457 1.126214 -0.527652 -0.481206 -0.256343 0.406538 -0.043145 0.300928 -0.922291 -0.835728 -0.047222 -1.484550 -0.434920 0.090775 0.341967 0.105042 -0.198989 -0.621061 -0.393405 0.531514 0.300283 1.245576 0.266423 -0.059689 0.705124 0.333858 -0.203559 -0.371463 -0.052440 0.159645 -0.197619 -0.177496 -0.367104 0.104827 -0.824929 0.411261 0.719449 -0.537992 0.300136 -0.257901 0.561428 -0.933663 1.052552 0.393980 -0.845604 0.275189 0.309466 0.897806 -0.615964 -0.549620 -PE-benchmarks/binomial-coefficient.cpp__main = -0.304448 -0.627501 1.743986 0.975632 -0.715499 0.132961 0.195128 -0.410648 0.317273 -1.403697 -0.394669 0.519397 -0.865590 0.155208 -0.875845 -0.348624 -1.766782 -0.853675 -0.423941 -0.596599 -0.277116 -0.252790 0.105663 0.892735 0.648895 1.065654 -0.670109 -0.082467 -1.384206 0.554875 0.868667 -0.086229 0.675354 0.609187 0.285828 -2.753385 0.515497 0.832689 -0.344250 -0.990137 0.776925 -1.045702 -0.015828 -1.223825 -0.899197 -0.109708 0.155410 0.613364 0.369061 -0.348462 -0.947851 0.306039 -0.428799 1.939933 -0.365424 0.434471 0.900737 -0.201984 -0.271715 -0.309917 0.059521 -0.183050 0.291662 0.028927 -0.655321 -0.905718 0.038919 -1.141545 -0.465629 0.635338 0.306981 0.101946 -0.385630 -0.372442 -1.790680 -0.294245 0.975134 1.217399 1.049831 -1.227627 0.697141 -0.272617 0.334455 0.336289 0.419331 0.425876 0.643771 0.223034 0.184537 -0.235532 -1.593713 0.146061 0.004408 -0.227266 -0.413515 -1.601299 0.713773 -2.178212 -0.999559 0.003666 0.370522 -0.752779 -0.159597 -0.037349 0.106624 0.598341 -0.438728 -0.501202 -0.067040 0.555120 -0.056084 0.057014 0.285811 0.532253 -0.113472 -1.259153 -1.307918 0.890595 0.195981 0.101274 0.247921 1.091709 -0.703867 0.082315 0.066466 0.380177 -0.679048 1.422895 -0.139421 -0.397832 -0.295973 -0.164186 0.266542 -0.553028 0.318659 1.831378 -1.051508 -0.635838 -0.217533 0.216979 -0.539499 -0.921039 -0.182028 0.399481 -0.088567 -0.948676 -0.680342 -0.794740 -0.875980 -1.548754 -0.533482 -0.371958 -0.672033 1.376036 0.675006 1.321322 0.519367 1.486611 -0.238219 0.413983 0.176087 -0.737491 0.573146 0.111325 0.604455 -0.595589 -0.624980 0.469783 -0.779753 1.086818 -0.090201 0.296582 0.060553 -1.043302 -0.659620 0.458387 0.924184 0.465076 0.937445 1.197608 -0.616578 -1.308754 0.073341 0.448999 -0.687551 -0.257514 0.323140 -0.605348 0.279021 0.463254 -0.494224 1.075747 0.034330 -0.532577 0.330640 0.059760 0.392190 -0.748025 -0.169598 -0.386687 -0.076218 -0.957928 -0.019272 -0.554548 -0.406461 -1.108236 -1.578629 1.291415 -1.738976 -1.205741 0.814742 0.516655 1.437185 -1.775257 0.021190 -0.590717 1.927434 0.272749 0.061855 0.174317 -0.782557 -0.990858 0.487069 0.215476 -0.576248 0.015609 0.817254 0.722713 0.262160 -0.197581 0.988184 -0.274387 1.011689 -0.609054 0.432919 -0.363126 -1.020666 0.456962 -0.137553 -0.351407 0.075779 0.843765 1.214500 0.538638 1.518596 1.098968 1.010094 0.957716 -0.446990 -0.312237 -0.419499 0.648276 -0.378417 -0.634061 0.086972 1.191972 0.141970 0.052816 -1.358466 -2.301697 -1.894311 -1.716321 0.502959 -1.118845 -0.085249 -0.007235 -0.162977 -1.308583 -0.618559 0.065536 -0.331311 2.246622 0.695908 0.039708 0.934799 0.925264 -1.136793 -0.123293 1.348837 1.137347 0.122601 0.288959 -1.901149 1.043137 -0.836613 0.174958 1.896739 -0.804342 0.757866 0.031957 1.150307 -0.892303 1.661317 0.334222 -1.725761 0.513146 0.739228 0.339728 1.087792 -0.662389 -PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -2.457190 -7.233173 10.595047 8.041826 -0.140303 3.070042 2.657441 -1.225901 0.116161 5.268063 -3.588495 6.746611 -5.403041 -1.230722 1.892617 1.398269 -6.156088 -5.194610 0.332174 -1.329662 -3.187718 -2.919548 -4.287498 8.423563 4.686934 1.390924 -3.492919 0.381941 -7.806127 -7.698720 -5.079688 -0.429379 4.067787 2.070454 5.923650 -8.287633 4.374746 7.161096 0.712506 -6.414966 1.377136 -2.469934 -0.472494 0.284637 -1.887628 3.736265 6.193660 2.286774 1.609061 2.380446 0.910431 -4.030476 4.243557 7.588066 3.810413 5.984771 7.437794 -3.660467 2.445465 -1.871051 1.143781 -6.577416 2.738270 0.935219 -2.392462 -2.172593 1.047498 -1.110689 -0.981961 2.670267 4.679061 -4.245676 -3.747348 -5.141943 -4.461748 -2.518391 0.164852 3.472767 8.958368 -4.336230 8.910042 4.827147 5.036553 0.538972 5.652654 -0.524222 7.138628 1.521585 -4.014045 1.327932 -4.681352 -4.445312 -0.736152 6.485446 -3.613383 0.090907 2.489794 -8.393975 -9.216914 4.716832 -0.731619 -3.730923 -2.864163 1.551277 2.994465 1.672628 -0.671803 -5.451257 -3.179885 2.155086 -4.915447 -2.035383 -1.515044 0.537847 -1.053392 2.601898 -7.549070 2.321036 4.730745 -3.141878 -2.031503 6.504864 0.433252 6.929382 0.143329 1.522436 0.779961 4.158960 4.917021 1.161177 -1.069654 -3.433043 -6.487768 0.541925 1.390453 -2.476066 -4.445764 -2.310953 2.972563 3.173297 0.778000 5.318824 -2.063680 11.594435 3.262491 -3.007725 -6.340118 -7.234876 -5.737020 -3.203098 1.517849 -2.797922 -5.201706 -0.057184 4.189152 0.803569 -0.998481 4.407824 -1.096000 4.148172 0.701455 -0.574403 0.517941 -3.121979 3.565772 -5.272704 -2.560776 4.627385 5.269402 3.586317 0.799955 -1.766321 2.507023 -3.371196 -5.060511 3.653615 0.251351 2.001877 7.688932 5.386345 15.565444 -2.814165 -0.587897 -0.030766 -0.579295 -2.034387 1.655846 -5.455647 2.713498 0.529993 0.248397 9.333701 0.579977 -3.333696 3.830569 0.394239 0.555059 -5.953711 5.213537 -2.998985 2.769193 -1.384522 -0.684583 -4.863267 -2.136275 -4.545242 -1.732749 9.238092 -6.090745 -8.078200 2.915544 -0.663674 5.270761 -9.764057 8.059834 -3.332297 5.635400 -2.278406 -4.646057 0.849532 -0.262467 -0.736807 4.142876 2.416955 -2.597244 1.802659 2.702723 1.483307 2.375168 1.646277 3.025375 -0.544465 1.840862 -2.097627 2.564609 0.139293 -0.244304 -3.937461 -1.343300 1.036106 4.339536 -1.438524 -1.454075 3.585347 -1.239754 0.330303 5.060831 0.589161 -3.258220 0.420867 -1.025148 6.877386 -5.932813 -4.450921 -2.182103 2.060518 1.434855 1.938182 -9.517354 -3.783256 -4.784541 -6.452908 -5.204187 3.584143 3.553442 2.985259 -1.485455 -6.068182 -4.569805 9.314307 1.007618 5.415292 4.168777 1.718941 7.103075 2.851555 3.345569 -3.630086 -1.576848 1.305348 -1.757976 0.036332 -3.951286 2.907835 -6.316164 5.970736 5.981116 -3.337955 3.994881 -0.915795 4.452520 -8.228528 7.560022 3.252544 -9.073032 0.348118 6.760614 4.140910 -7.268266 -5.210749 -PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -0.662721 -2.482171 4.626340 3.397267 -0.418689 1.010458 0.866297 -1.105020 0.839381 0.652995 -1.493255 2.182347 -2.588351 -0.082480 0.353972 0.368753 -3.503425 -2.490508 -0.294993 -0.838539 -1.152661 -1.588332 -0.783835 3.064893 1.951695 1.711145 -1.742247 0.461267 -3.529754 -2.299944 -0.587427 -0.307937 1.849541 2.024886 2.198429 -3.804147 2.088822 2.756438 0.034852 -2.814054 0.976393 -1.760242 -0.217481 -0.973643 -0.436484 1.614025 1.847606 1.592059 1.244799 0.448196 -0.388880 -1.244903 0.449469 2.478548 0.421609 2.055883 2.614014 -1.352835 0.493830 -0.769737 0.329891 -1.940086 1.268378 0.944071 -1.776623 -1.487766 0.719084 -1.240980 -1.156577 1.921714 1.786765 -1.119302 -1.863881 -1.894048 -2.346837 -0.658080 1.248851 2.152308 3.806657 -1.802084 3.171990 1.220768 1.959407 -0.022974 2.074764 -0.097890 3.210422 0.535410 -1.395489 -0.195059 -3.548240 -2.008317 -0.384155 1.879767 -1.091660 -0.022568 0.880468 -4.393950 -3.625812 0.980128 0.097789 -1.592745 -1.665836 1.226262 1.545114 0.976663 0.213714 -2.235024 -0.644048 1.110036 -2.057582 -0.539990 -0.452964 0.377022 -0.930385 -0.158737 -3.503596 1.075371 1.353600 -0.991726 -0.421485 2.798462 -0.864879 1.929385 0.213909 0.662792 -0.130296 2.235110 1.218755 0.200238 0.358185 -1.548362 -1.628216 0.085142 0.660366 0.853848 -2.109163 -1.095139 0.556325 1.001250 -0.846238 0.566531 -1.138929 3.767209 1.234460 -2.102168 -2.648774 -2.522289 -2.313379 -2.253392 0.359048 -1.302215 -1.770434 0.399512 1.944943 1.340450 0.389162 2.896978 -1.174455 1.577045 0.455438 -0.420727 0.886220 -0.277465 1.692205 -2.141881 -1.273268 1.942573 0.912542 1.391871 0.083015 -0.473792 0.757654 -2.225813 -2.370383 1.911778 0.483033 1.447882 3.020238 2.491830 4.000287 -1.906093 0.196864 0.797005 -0.304358 -0.967596 0.934958 -2.278835 1.520602 0.380136 0.517514 3.784099 0.098905 -1.552436 1.127996 0.494680 0.649608 -2.639546 1.257800 -1.269317 1.209998 -1.366555 -0.214637 -1.800462 -1.261938 -1.924113 -1.258105 3.812919 -1.756274 -4.129771 2.025138 -0.643938 3.168113 -4.579001 1.637759 -1.581313 2.707542 -0.636309 -1.057337 0.315629 -1.271104 -1.141205 1.555286 0.914367 -0.844976 0.899214 1.437210 1.124627 0.886187 0.393931 1.551022 -0.080456 1.451999 -1.065998 1.185636 -0.226707 -0.311710 -0.707447 -0.639428 0.081460 1.351005 -0.272314 0.767912 1.999791 0.885726 1.501572 1.995906 1.069004 -1.378260 0.140735 -0.485155 2.323486 -1.985123 -1.915420 -0.378665 1.133445 0.131811 0.883816 -3.939973 -3.274505 -1.905528 -4.105323 -1.428027 -0.075549 1.346587 1.061739 -0.490120 -2.770063 -1.687057 2.652239 0.431053 4.469900 1.479452 0.294035 2.649521 1.896352 -0.370869 -1.255161 0.479738 1.196292 -0.753380 0.000326 -2.887783 1.993945 -2.371459 2.042066 3.505081 -2.080862 1.628372 -1.341672 2.764853 -3.321997 3.660088 1.381251 -3.819843 0.677805 1.810312 1.932685 -0.985607 -2.202323 -PE-benchmarks/floyd-warshall.cpp__main = 0.257267 -0.303793 0.963445 0.689449 -0.279384 -0.064943 0.173832 -0.270030 0.414871 -0.250016 -0.325759 0.186877 -0.483137 0.299463 -0.325886 0.465623 -0.957476 -0.430546 -0.038788 -0.165945 -0.081692 -0.220059 0.530866 0.006470 0.516698 0.683318 -0.290745 -0.223247 -0.276933 -0.158972 0.502333 -0.331838 0.331134 0.589508 -0.018181 -0.806925 0.470386 0.188453 -0.286252 -0.499311 0.387567 -0.297479 0.023855 -0.642385 -0.087057 0.145574 0.170593 0.673247 0.386516 0.260199 -0.218569 -0.029908 0.226834 0.658304 -0.361176 0.165744 0.312949 -0.051709 -0.069119 -0.167274 0.202599 0.023005 0.128572 0.319450 -0.045731 -0.559181 -0.320560 -0.609644 -0.388346 0.418267 -0.089703 0.414512 -0.623298 -0.043984 -0.328675 0.042589 -0.833012 0.716143 0.785481 -0.598324 0.337012 0.051938 0.182617 -0.107549 -0.127857 0.252207 0.042851 0.245902 -0.042008 -0.110865 -0.367862 -0.206686 0.160429 -0.443606 -0.065248 -0.927916 0.311915 -0.610943 -0.435426 0.045386 0.319556 -0.152710 0.268124 0.136283 0.086298 0.390719 -0.288469 -0.311465 0.249104 -0.204855 0.201575 -0.030317 0.045121 0.202601 -0.228972 -0.279709 -0.739567 0.088355 -0.155882 -0.275720 0.381336 0.263202 -0.064825 0.004351 -0.020157 0.121395 -0.218105 0.805222 0.126534 0.267033 0.169910 0.233732 0.136831 0.341267 0.536621 0.577771 -0.327560 0.039653 -0.278710 0.074337 -0.362264 -0.467192 0.031867 0.082244 0.217974 -0.531091 -0.532376 -0.249334 -0.394649 -0.732383 0.133589 -0.395665 -0.011476 0.450134 0.395733 0.342619 0.545936 0.735961 -0.530392 0.055614 -0.063813 -0.025632 0.393126 0.415720 0.362808 -0.201944 -0.228861 0.282790 -0.057883 0.135608 0.064407 -0.037462 0.183457 -0.641933 0.052263 0.412266 0.385918 -0.199117 0.294501 0.249751 -0.367872 -0.066026 -0.007110 0.505145 -0.028953 -0.152189 0.278116 -0.575004 0.534689 -0.034981 0.164030 0.083658 0.058233 -0.171209 0.283640 -0.199142 0.091768 -0.247982 -0.158853 -0.195667 -0.148663 -0.476039 0.516754 -0.089572 -0.244788 -0.069847 -0.118715 0.591283 -0.457560 -0.028829 0.323123 -0.034232 0.400984 -0.420240 0.513236 -0.381027 0.527760 0.129478 -0.084995 0.129451 -0.444751 -0.380238 -0.239101 0.220418 0.168773 -0.012677 0.362588 0.395557 -0.143830 0.097248 0.545293 -0.091483 0.592298 0.013840 0.222386 -0.147524 -0.227125 0.248111 -0.073138 -0.212501 -0.233576 0.202608 0.934741 0.163960 0.590350 0.789702 -0.011791 0.703120 -0.392182 0.156216 -0.137647 0.480236 -0.252024 -0.169858 0.105082 0.372939 -0.284565 0.336238 -0.593085 -1.082194 -0.692880 -0.392828 -0.136122 -0.502342 0.236059 -0.290882 0.015680 -0.373663 -0.346042 0.097765 -0.205849 0.308701 0.348936 -0.061563 0.366204 0.449977 -0.465777 -0.179317 0.251105 0.485344 0.185191 0.180676 -0.694024 0.421676 -0.492560 -0.161172 0.874611 -0.473068 0.004549 -0.236758 0.773712 -0.331939 0.770856 0.222774 -0.483002 0.512262 0.396165 0.352064 0.573543 -0.341074 -PE-benchmarks/subset-sum-problem.cpp__isSubsetSum(int*, int, int) = -3.440564 -11.038604 14.615134 11.107834 0.178901 5.461883 5.010748 -1.106024 -0.669598 7.286057 -3.654051 10.680670 -7.530963 -2.892428 0.800182 0.409325 -7.279216 -6.974074 0.589365 -1.481366 -3.056236 -4.551155 -6.481466 14.254813 6.705111 2.081401 -4.730693 -1.941793 -13.793019 -8.719223 -7.575068 0.635530 6.091302 2.075551 9.038887 -9.898936 4.428139 11.575238 1.640415 -10.331064 2.507462 -2.657860 0.542226 1.905844 -3.537161 5.428353 8.447173 1.876141 1.740569 3.263096 1.073890 -4.347170 8.218727 9.692997 6.752597 8.763258 8.978064 -4.672949 5.797671 -3.478120 1.134437 -9.093352 3.604460 -0.755809 -2.463942 -2.515303 -0.465258 0.319679 -1.490484 3.141720 6.175917 -5.488609 -6.171898 -6.130513 -8.862108 -3.624268 -0.370222 5.235524 11.288031 -5.429765 12.599324 6.981225 6.562196 -0.033745 8.332806 -0.518281 7.810173 2.003265 -4.314113 3.023531 -9.017446 -4.370088 -2.048174 6.007289 -6.687673 -3.406122 3.940868 -13.589362 -13.439514 7.259507 -1.245182 -6.572835 -1.991943 1.472034 3.397263 3.389748 -2.163544 -8.048137 -4.821140 4.996793 -5.458407 -2.905727 -0.268090 0.363434 0.188421 2.335677 -8.359526 4.302814 7.372649 -3.583016 -2.479560 10.176075 1.550841 10.720839 0.500131 2.361234 0.888475 5.035865 7.834961 1.022876 -3.020457 -5.589697 -8.073116 0.994459 0.691312 -4.123936 -6.756728 -3.756403 3.369351 5.117223 3.450604 8.601263 -1.339716 14.207617 4.051676 -4.037752 -7.555465 -10.522407 -8.097665 -3.736364 0.795581 -1.221145 -7.043748 0.422899 5.274388 0.750905 -1.770882 2.706776 0.927438 3.067996 1.853882 -1.806644 0.060269 -3.749603 4.135061 -6.551849 -4.334279 6.147845 7.392727 7.572709 0.535966 -0.434387 2.650248 -1.740533 -5.440555 2.787396 1.974574 3.706090 12.353985 8.755498 16.477403 -2.508158 -3.030290 -1.001760 -2.002193 -2.194611 0.697366 -7.769084 4.267225 0.897495 -1.726092 13.212953 -0.638842 -2.254517 8.692025 0.462099 1.521479 -8.900125 6.987630 -5.414218 2.102980 -3.123281 -2.267938 -7.169294 -2.831982 -8.632068 -4.691528 13.295580 -8.477919 -9.194892 3.072624 -1.437118 5.300872 -12.361510 9.945150 -3.579367 6.576211 -1.153894 -5.970743 0.609204 0.767294 -1.079149 3.104234 3.097433 -6.477431 3.476306 3.698261 1.538896 1.343923 2.083825 3.996609 -0.903054 2.646666 -4.518694 3.555104 -0.570379 -0.158798 -4.254851 -1.348128 2.270826 6.161931 -2.171977 -1.536441 3.809078 -1.158651 -0.984044 7.788633 0.552784 -4.010049 -0.678197 -1.879853 8.736823 -8.565518 -6.154382 -4.028913 2.957066 2.873770 1.913935 -13.622243 -5.001305 -7.550021 -8.366883 -5.247520 2.108725 3.622977 5.046919 -3.103690 -9.762604 -8.050933 10.678734 1.334852 2.957824 6.345532 1.337276 11.079254 4.027088 4.482269 -2.370078 -1.501377 1.573247 -2.061924 -1.074621 -4.897911 3.527104 -8.945377 9.122846 8.632062 -4.602468 7.184821 -0.784098 5.332288 -12.449747 11.282433 4.438496 -13.099167 -0.318755 8.529299 5.449715 -11.318599 -7.122883 -PE-benchmarks/subset-sum-problem.cpp__main = 0.072777 -1.138164 2.045279 1.454529 -0.257292 0.217279 0.678822 -0.251202 0.570557 -0.110112 -0.717903 0.938644 -1.189211 0.072844 -0.378178 0.435781 -1.632919 -1.181602 0.172443 -0.042303 -0.160040 -0.638577 0.322259 0.927506 1.030717 1.331963 -0.611031 -0.403900 -1.520181 -0.727430 0.342348 -0.345657 0.836075 1.231261 0.503834 -1.491353 0.746000 0.990125 -0.178923 -1.564569 0.690077 -0.718391 -0.033764 -0.942583 0.076372 0.630931 0.839999 1.243079 0.462118 0.456132 -0.683217 -0.400544 0.414354 0.979614 -0.037991 0.666726 1.131920 -0.262777 0.249408 -0.445464 0.354776 -0.637480 0.455801 0.527141 -0.592886 -0.701940 -0.293910 -0.964366 -0.717639 0.746929 0.419835 0.251867 -1.146987 -0.327117 -0.858953 0.065664 -0.755624 1.320951 1.609483 -1.068778 1.349589 0.363123 0.844705 -0.301806 0.292632 0.256936 0.428881 0.436403 -0.380707 -0.527586 -1.806708 -0.776676 -0.168962 -0.312168 -0.337367 -0.752848 0.690003 -1.452885 -1.335736 0.241537 0.185592 -0.615617 -0.036101 0.719690 0.439753 0.998703 -0.174673 -0.806300 -0.031486 0.164556 -0.419508 -0.203968 0.034368 0.526021 -0.563865 -0.485507 -1.452185 0.346935 0.392731 -0.631078 0.351803 0.888999 -0.320820 0.724483 0.015453 0.131368 -0.084888 1.282240 0.780069 0.079629 0.729113 -0.406222 -0.330970 0.658573 0.772904 1.108050 -1.015163 0.008419 0.012129 0.389879 -0.187518 -0.579070 -0.325949 0.890684 0.332000 -1.227398 -1.202953 -1.109390 -0.715772 -0.937157 0.171045 -0.675918 -0.062388 0.780334 0.852485 0.559820 0.457094 1.560310 -1.137348 0.480450 0.225527 -0.030720 0.297702 0.781913 0.659209 -0.718958 -0.604835 0.734015 0.298098 0.450170 -0.107739 -0.048234 0.423797 -1.093133 -0.689413 0.898117 0.508407 0.129457 1.084003 0.823358 -0.063028 -0.674077 -0.332032 0.495352 -0.184169 -0.498538 0.467015 -1.278761 1.135141 -0.080706 0.460851 0.977923 0.054967 -0.568647 0.821020 -0.058312 0.090559 -0.802440 0.219789 -0.670868 -0.208765 -0.699474 0.379517 -0.447246 -0.655219 -0.720816 -0.412771 1.592449 -0.488305 -1.094145 0.447270 -0.466382 1.022275 -1.689527 0.718824 -0.719929 0.740352 0.247096 -0.259490 0.079583 -0.733168 -0.520581 -0.427270 0.484258 -0.166121 0.410366 0.860158 0.591596 -0.150532 0.377006 0.776824 -0.085190 0.761086 -0.236687 0.243635 -0.343412 -0.354491 0.170162 -0.222975 0.064416 0.197028 -0.103894 1.506973 0.644900 0.843605 1.358162 0.388627 0.903769 -0.749862 0.019983 -0.219821 1.308172 -0.689350 -0.617405 -0.275058 0.496364 -0.185054 0.677954 -1.544372 -2.106200 -0.753120 -1.720217 -0.399293 -0.986512 0.684796 -0.112594 -0.097767 -1.328657 -0.846528 0.210149 0.004099 1.308954 0.790155 -0.082369 1.096365 0.723274 -0.719649 -0.408136 0.567634 0.903732 -0.100888 0.011734 -1.161398 0.585357 -1.105228 0.388660 1.782889 -0.890102 0.413388 -1.002811 1.528287 -1.162364 1.789930 0.659675 -1.637809 0.435437 0.589008 0.832013 0.135760 -0.942780 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__maxSumIS(int*, int) = -4.398404 -7.422611 10.866664 7.722621 0.420777 3.562752 3.254144 -1.826606 1.042544 5.464250 -3.024821 6.885249 -6.239663 -1.502268 0.428728 0.924872 -5.827752 -5.923346 0.034931 -2.163853 -3.321423 -3.771840 -4.078280 8.609463 4.726382 -0.119117 -4.023580 0.307108 -9.911942 -8.837410 -4.988678 -0.261995 4.274756 -1.007435 5.217375 -10.770904 4.725274 8.281123 0.455802 -7.296555 2.255346 -3.717142 -0.026787 0.859963 -2.534607 3.269765 5.902275 0.883276 2.241615 1.955794 1.668404 -3.018946 3.391927 9.696341 2.614248 6.624048 7.137313 -3.437739 1.337941 -1.056221 0.674660 -6.533871 3.384053 0.911116 -3.418603 -2.253635 1.653251 -0.666687 -2.130600 3.097777 3.606028 -5.456994 -3.349008 -4.855924 -6.416926 -3.048511 3.153390 3.255296 9.193364 -4.488416 9.510141 3.878842 4.769885 0.937680 6.283034 -0.742844 7.793366 1.101715 -4.116805 -0.139836 -5.176601 -2.846992 -1.402394 7.663408 -3.606004 -0.050212 3.277485 -9.558342 -10.165106 4.431509 -0.956690 -4.220872 -5.061987 1.257386 3.373408 2.338473 -1.094518 -6.661973 -4.372370 3.723401 -4.987535 -2.130109 -0.762849 -1.010496 -1.182912 1.407811 -7.693343 2.365360 4.908986 -3.267552 -4.125028 7.686245 -0.721399 7.051564 0.675445 2.588095 0.486757 4.301572 3.989353 1.190069 -1.562766 -3.582440 -8.234482 -1.063396 0.792022 -1.627353 -5.056509 -1.854685 2.348750 2.980464 0.090025 5.068413 -3.229212 11.772189 3.914152 -3.353516 -5.982729 -6.844948 -4.905177 -4.399453 0.945057 -2.814895 -5.696232 0.390730 4.617171 1.336629 -0.895981 6.251300 -1.235719 4.500810 1.283645 -2.067374 1.321031 -4.412765 4.082080 -5.821442 -3.650487 4.456168 5.349276 4.316726 0.005462 -0.891535 1.864948 -3.812242 -5.663713 3.113838 0.849199 2.898002 8.219268 6.165291 16.209335 -5.514001 -0.210644 0.089362 -1.436940 -1.496918 0.665181 -6.042577 2.173472 1.552067 -0.237446 10.581459 0.501466 -4.236827 3.975682 0.420993 1.409858 -6.981556 5.430612 -3.941392 2.479567 -1.533844 -3.085222 -4.943048 -2.550274 -5.683042 -3.284493 9.738413 -6.624017 -9.965841 4.044234 -0.602759 5.867136 -12.185944 8.177505 -3.701083 6.572884 -2.635537 -3.364666 0.293624 1.369799 -1.032581 4.798229 2.388562 -3.828786 3.401062 4.603979 1.730304 3.304630 1.040664 3.739379 -0.522833 1.866282 -2.889173 3.367799 -0.218978 -1.534998 -3.398331 -1.766428 1.321849 4.679380 -0.859365 -1.192247 4.754732 -1.726391 0.741089 6.941922 1.336742 -2.988659 1.036511 -1.453497 7.127459 -5.589767 -4.746043 -2.034080 2.673754 1.812376 2.029810 -10.416395 -5.173729 -5.377673 -9.067645 -3.346461 2.765389 2.987797 2.969879 -1.290093 -7.926443 -4.791667 9.553498 0.838838 8.111972 4.202046 2.226849 7.444781 3.835162 2.397489 -2.982824 -1.225927 1.096508 -2.342300 -1.187635 -3.923849 3.143014 -6.938582 6.722510 5.944768 -3.269552 4.486556 -0.122076 2.674046 -8.879575 8.321040 3.498435 -8.628190 1.334371 6.373580 5.278924 -7.464477 -5.385573 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 0.322803 -0.476623 1.672725 1.118270 -0.617701 -0.057713 0.295024 -0.469235 0.432403 -0.934500 -0.442161 0.366768 -0.807874 0.394329 -0.688148 0.281674 -1.718083 -0.701804 -0.319020 -0.432575 -0.151601 -0.226992 0.622322 0.365457 0.816881 1.158527 -0.557234 -0.344337 -0.815597 0.261286 0.922819 -0.258963 0.597658 0.942526 0.083493 -1.849101 0.635584 0.533079 -0.438782 -0.843621 0.777098 -0.713286 -0.097749 -1.188617 -0.422534 0.056936 0.103808 1.040414 0.488103 0.084400 -0.708121 0.224787 0.051467 1.421420 -0.503728 0.298704 0.700398 -0.078663 -0.131216 -0.270886 0.190394 0.052061 0.166644 0.240386 -0.241648 -0.972475 -0.319611 -1.122380 -0.480396 0.682820 0.131765 0.451001 -0.768001 -0.187763 -1.037405 0.005878 -0.491134 1.297682 1.072134 -1.138684 0.485244 -0.125465 0.189141 -0.001549 -0.013821 0.438167 0.225345 0.323132 0.226127 -0.263609 -1.211923 -0.211365 0.212708 -0.740284 -0.299819 -1.753159 0.607446 -1.449319 -0.787381 -0.031632 0.533622 -0.599117 0.351389 0.136239 0.020851 0.595988 -0.377506 -0.396893 0.261141 0.091858 0.205977 0.008722 0.138242 0.514088 -0.238433 -0.863179 -1.266233 0.624434 -0.109729 -0.076425 0.534487 0.660716 -0.346567 -0.065206 0.003269 0.239633 -0.549659 1.331831 -0.012590 0.049195 0.187798 0.204741 0.440481 0.206317 0.722437 1.413976 -0.748659 -0.196015 -0.412721 0.191000 -0.583028 -0.830784 0.035183 0.205052 0.016000 -0.970797 -0.779657 -0.573399 -0.729275 -1.259319 -0.130539 -0.466229 -0.288975 1.002567 0.629376 0.942382 0.747376 1.204218 -0.606787 0.169306 0.079908 -0.294641 0.586191 0.517671 0.537869 -0.407025 -0.506860 0.426342 -0.518315 0.599590 -0.057529 0.254393 0.189093 -1.045170 -0.227047 0.515587 0.737487 -0.059119 0.682390 0.835847 -0.799166 -0.563819 0.029912 0.699604 -0.432034 -0.290864 0.422172 -0.763305 0.600092 0.169012 -0.040296 0.584160 0.063291 -0.333320 0.416245 -0.151542 0.213008 -0.462034 -0.289509 -0.305377 -0.267591 -0.898741 0.550681 -0.238434 -0.414065 -0.526838 -0.813209 1.091568 -1.148090 -0.493076 0.649342 0.114516 0.858591 -1.102068 0.537569 -0.553682 1.133963 0.340851 -0.068002 0.218502 -0.821850 -0.967778 -0.031737 0.257668 -0.113477 -0.048617 0.717728 0.689938 -0.095853 -0.065516 0.912070 -0.258313 1.062855 -0.342799 0.426335 -0.340491 -0.672748 0.414036 -0.081090 -0.404298 -0.282393 0.580253 1.523607 0.261221 1.383816 1.201171 0.355495 1.166480 -0.544911 0.047464 -0.302403 0.600519 -0.366066 -0.427920 0.206701 0.759294 -0.207945 0.377521 -1.103347 -1.979456 -1.426583 -1.074087 0.203553 -1.103789 0.230627 -0.319639 -0.140022 -0.950271 -0.660320 -0.105327 -0.342676 1.043728 0.693863 -0.106395 0.696675 0.809953 -0.963538 -0.034804 0.880327 1.055937 0.305761 0.222348 -1.474351 0.907035 -0.720184 -0.156531 1.721039 -0.765070 0.447462 -0.362737 1.331838 -0.661694 1.426688 0.281159 -1.225600 0.628341 0.735445 0.368555 1.097982 -0.577236 -PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -4.683080 -13.736383 22.279119 15.612719 -1.508875 5.014073 7.092598 -2.461039 -0.442328 7.839100 -6.690827 11.813121 -11.347549 -2.662602 1.516123 2.015028 -13.873416 -10.804011 -0.217093 -3.523264 -6.143955 -5.413250 -6.373706 16.245700 10.401414 4.032054 -7.225699 -1.826305 -15.095771 -14.263009 -7.075849 -0.996942 8.455982 6.468976 10.066219 -19.777772 8.604227 13.337221 0.338128 -10.739694 4.755315 -4.465195 -1.287622 -1.500332 -5.134872 6.547695 12.036868 5.416736 3.824100 4.574408 1.116122 -8.022174 8.701081 17.604117 6.278623 11.246025 14.958351 -6.514255 4.956240 -3.100212 1.803174 -12.921219 4.561975 1.474773 -3.828924 -4.217597 2.046176 -4.948341 -2.024375 6.402487 7.824758 -7.056807 -7.464722 -9.326974 -11.297223 -4.897441 -1.288520 8.623339 17.786972 -10.791158 17.356402 8.751180 9.508773 0.970197 8.609267 0.067190 11.914475 2.974971 -6.489088 1.854926 -11.205024 -8.690005 -2.483548 11.368249 -7.045791 -3.490980 6.724917 -19.346337 -18.340636 8.708057 -0.895433 -8.071806 -4.621361 2.224292 4.758344 2.605354 -2.206766 -10.671246 -6.761835 4.023959 -9.062130 -2.141832 -1.758763 2.180881 -1.912809 4.097588 -15.769832 6.149309 7.607529 -6.085094 -4.205662 13.292262 1.136603 13.608379 1.350137 4.088047 -0.175936 9.683765 9.280086 1.982789 -1.476680 -4.812958 -12.173146 -1.264039 4.134190 -1.014327 -9.103653 -5.966586 4.472278 6.187630 0.308481 8.652212 -3.494061 21.778671 5.596584 -7.830933 -13.214831 -13.518281 -11.682986 -8.766422 2.535470 -5.477517 -10.194625 1.962592 7.997616 3.432771 -1.138218 9.749187 -2.352908 7.841572 1.190461 -2.848216 0.369095 -6.368293 7.522691 -10.255329 -5.524572 8.357363 8.545071 8.784157 1.017558 -3.098275 4.943811 -8.188648 -10.654272 6.060308 0.690982 2.178272 13.898958 11.941669 26.305015 -8.012606 -1.117373 1.386597 -2.343860 -4.354962 4.564100 -11.081356 6.427472 1.184335 -1.613128 17.348592 1.656641 -6.367816 8.846540 -0.531204 0.814858 -11.736785 8.433278 -6.035317 3.938213 -4.400653 -1.623308 -9.833730 -4.611571 -8.633496 -5.561412 18.180362 -13.384574 -14.799954 6.661081 1.054209 10.081203 -19.790299 16.913973 -6.452240 12.012953 -3.562964 -9.128833 1.690671 0.309043 -1.785859 6.833467 3.303594 -6.140235 4.304083 7.089184 3.654046 5.305861 2.821257 7.807594 -1.674440 5.154369 -4.438273 4.491139 -0.713645 -3.934977 -7.015585 -2.046462 1.135548 7.647857 -0.973779 -0.470444 6.928464 -0.484491 2.400223 11.479422 3.380021 -6.486977 -0.533838 -2.355382 14.394473 -11.730617 -9.317081 -3.388909 5.024644 1.814901 3.912419 -19.426958 -10.395642 -12.886158 -13.656270 -9.513493 4.262216 7.014364 4.676885 -3.093912 -13.408721 -8.967648 15.119380 1.282644 7.611726 9.627757 2.909677 14.991666 7.149284 4.697972 -6.748302 -0.004976 5.289920 -2.468124 0.359264 -10.462296 6.359025 -13.171104 10.974561 13.225447 -7.117094 8.391095 -0.584066 11.177673 -17.094386 16.636683 5.816933 -18.767991 1.969259 14.118937 6.814725 -11.123370 -9.836927 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::queue >, void>() = 0.044817 -0.256273 0.939189 0.605167 -0.290102 0.000000 0.036052 -0.336670 0.497510 -0.265564 -0.280262 0.135067 -0.411291 0.236487 -0.294118 0.361396 -0.953241 -0.420854 -0.061527 -0.298740 -0.176242 -0.247489 0.348718 0.019262 0.386888 0.569793 -0.305879 -0.018477 -0.269339 -0.225279 0.482487 -0.330520 0.282383 0.390065 0.062641 -1.067431 0.527474 0.174429 -0.289238 -0.465669 0.294046 -0.367769 0.089288 -0.576796 -0.177444 0.118600 0.144923 0.501509 0.411184 0.143432 -0.159295 -0.006637 0.073870 0.822925 -0.401009 0.188853 0.259341 -0.121817 -0.147209 -0.070831 0.155883 -0.001992 0.174566 0.309818 -0.147031 -0.553287 -0.164233 -0.547175 -0.387048 0.441709 -0.077177 0.224654 -0.489306 -0.107310 -0.483510 -0.097275 -0.608829 0.633499 0.772006 -0.562976 0.339794 0.043720 0.261898 0.059842 0.056555 0.216305 0.342629 0.196050 -0.142759 -0.039596 -0.285416 -0.129466 0.159327 -0.281750 -0.037928 -0.834074 0.257370 -0.792523 -0.454861 0.105812 0.298202 -0.081805 -0.005939 0.001262 0.212103 0.293294 -0.302213 -0.366436 0.164430 -0.082614 0.053426 0.002554 0.093495 0.052823 -0.163610 -0.269567 -0.722255 0.094161 -0.097369 -0.189623 0.208234 0.401611 -0.122703 -0.063081 -0.005365 0.175502 -0.266441 0.783034 0.000649 0.242553 -0.073557 0.190186 -0.065099 0.190002 0.398497 0.462850 -0.277102 -0.082294 -0.254230 0.067860 -0.472757 -0.404143 -0.092234 0.154519 0.266015 -0.432051 -0.473343 -0.240672 -0.404568 -0.826366 0.086890 -0.377483 -0.189573 0.442151 0.416787 0.480086 0.538896 0.655819 -0.443976 0.132668 -0.157701 -0.071002 0.456903 0.240603 0.405920 -0.237611 -0.188667 0.248679 -0.076732 0.208406 0.109750 -0.158264 0.141204 -0.619520 -0.009570 0.403510 0.422798 -0.033219 0.309855 0.310140 -0.090692 -0.315160 0.059722 0.476960 -0.039137 -0.116982 0.222203 -0.470093 0.401405 0.090881 0.085555 0.178153 0.035535 -0.209863 0.114589 -0.113055 0.176733 -0.295240 -0.188729 -0.183464 -0.065023 -0.404510 0.376180 -0.258291 -0.220487 -0.183332 -0.307621 0.584737 -0.633455 -0.207596 0.508167 -0.041191 0.552489 -0.503818 0.372336 -0.405907 0.706881 -0.003468 -0.018959 0.045895 -0.354322 -0.369831 0.012767 0.201936 0.060461 0.009328 0.381378 0.418674 0.059104 0.037365 0.573100 -0.115528 0.530484 -0.033186 0.287634 -0.169313 -0.222935 0.228107 -0.106385 -0.197309 -0.134915 0.298251 0.707512 0.247227 0.516831 0.683552 0.165711 0.584265 -0.354050 0.116885 -0.160602 0.388848 -0.249266 -0.197944 0.121792 0.417870 -0.225971 0.188909 -0.636550 -1.000804 -0.846194 -0.409751 -0.109533 -0.341756 0.087690 -0.175317 0.057755 -0.395976 -0.258599 0.332200 -0.199562 0.497812 0.270161 -0.004696 0.386906 0.537739 -0.442420 -0.273507 0.244150 0.327312 0.103678 0.190116 -0.796192 0.537259 -0.502807 -0.051514 0.813376 -0.472984 0.008194 -0.024349 0.623608 -0.351183 0.722527 0.235293 -0.453257 0.474203 0.422104 0.424817 0.537692 -0.338715 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::size() const = -0.061833 -0.261137 0.681481 0.506468 -0.197877 0.041514 0.110987 -0.199577 0.249791 -0.053909 -0.145438 0.135643 -0.374759 0.111598 -0.040834 0.241812 -0.571990 -0.258945 -0.089766 -0.220447 -0.112649 -0.157849 0.178205 0.108802 0.320812 0.388933 -0.195535 -0.103937 -0.263970 -0.202203 0.215582 -0.130490 0.281267 0.347821 0.077706 -0.817790 0.315687 0.287500 -0.170343 -0.392165 0.255639 -0.251002 0.100135 -0.277683 -0.141123 0.140705 0.107343 0.192035 0.247841 0.132737 -0.051067 -0.031060 0.170845 0.534000 -0.162609 0.188458 0.237632 -0.124248 -0.104923 -0.103507 0.079017 -0.044813 0.151315 0.094106 -0.107253 -0.383423 -0.156110 -0.347442 -0.308860 0.237558 -0.052863 0.004282 -0.353416 -0.220373 -0.278654 -0.115607 -0.497883 0.432045 0.492875 -0.438637 0.304420 0.040936 0.054645 0.018525 0.092012 0.127382 0.161090 0.111380 -0.019330 0.047906 -0.110229 -0.180041 0.117402 -0.050978 -0.145497 -0.471912 0.253860 -0.376354 -0.380072 0.124664 0.185425 -0.147303 -0.115731 -0.002709 0.011383 0.286302 -0.213492 -0.278041 0.016308 0.033044 0.126283 -0.047143 -0.066560 0.091447 -0.170763 -0.222459 -0.512984 0.164838 -0.006585 -0.130392 0.070812 0.315273 -0.079802 0.045014 0.010431 0.142663 -0.194402 0.631897 0.041533 0.162674 -0.008686 0.073140 -0.134305 0.042811 0.262985 0.370429 -0.223727 -0.093892 -0.155810 0.037322 -0.234712 -0.134923 0.032139 0.233725 0.360050 -0.257923 -0.304158 -0.201479 -0.323548 -0.580744 0.047684 -0.239729 0.034761 0.378337 0.272875 0.280253 0.274668 0.560508 -0.309796 0.034448 -0.060683 -0.178965 0.275187 0.271474 0.271319 -0.207986 -0.178549 0.190929 0.006981 0.203317 0.078059 0.035269 0.089904 -0.362111 -0.038421 0.300927 0.238471 -0.041196 0.295070 0.316842 0.194958 -0.130349 0.002045 0.241068 -0.116856 -0.062593 0.139117 -0.351525 0.229143 0.067752 -0.067581 0.234330 -0.000542 -0.098246 0.165257 -0.144821 0.093055 -0.260308 0.030735 -0.188062 0.004029 -0.319087 0.108389 -0.164017 -0.199181 -0.150877 -0.152120 0.479024 -0.330868 -0.150268 0.262937 -0.003554 0.282337 -0.419105 0.461195 -0.257181 0.431613 -0.102492 -0.110079 0.046191 -0.166065 -0.209442 -0.025871 0.134464 -0.001793 -0.047199 0.364911 0.246113 -0.077694 0.001015 0.391170 -0.070124 0.400019 -0.090666 0.271200 -0.099068 -0.055451 0.124703 -0.068964 -0.120357 -0.065629 0.086619 0.524340 0.178571 0.289242 0.335013 0.147761 0.397266 -0.214515 0.150563 -0.061173 0.353526 -0.193487 -0.162134 0.078223 0.368203 -0.059488 0.110661 -0.473668 -0.631800 -0.423711 -0.326702 -0.074260 -0.074914 0.116087 -0.068371 -0.036233 -0.292753 -0.281974 0.252373 -0.145181 0.385613 0.144039 0.027795 0.336078 0.349953 -0.209305 -0.129146 0.137401 0.219841 0.089697 0.088664 -0.428200 0.341913 -0.347822 -0.028871 0.542160 -0.276291 0.140871 -0.021696 0.491888 -0.322759 0.536226 0.105868 -0.337022 0.379455 0.400470 0.264553 0.170521 -0.229746 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::front() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::pop() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::~queue() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/aho-corasick-algorithm.cpp__findNextState(int, char) = -0.731450 -2.244837 3.295869 2.539260 -0.090531 0.828416 1.388949 -0.390654 -0.237504 1.555226 -0.785089 1.929797 -1.888662 -0.357649 -0.161188 0.562675 -1.711280 -1.478435 -0.149761 -0.648658 -0.767863 -0.636195 -0.834570 2.342360 1.803050 0.228956 -1.010580 -0.725700 -2.607288 -2.391560 -1.338007 -0.039123 1.333057 0.555583 1.170128 -2.669971 1.151493 2.475385 -0.108583 -1.652954 0.880857 -0.702736 -0.183201 -0.118171 -0.768152 0.889694 1.625507 0.079740 0.519939 0.811642 0.500243 -0.810153 1.851156 2.735814 0.846888 1.880390 2.206519 -0.812409 0.881359 -0.450563 0.313746 -1.684823 0.711709 -0.165888 -0.227556 -0.860162 -0.311427 -0.536260 -0.169978 0.687706 0.817814 -0.991137 -1.257322 -1.303380 -2.019866 -0.904236 -1.137754 1.054481 2.548124 -1.758137 2.677400 1.362839 0.939582 0.048685 1.384124 0.127388 1.356980 0.522234 -0.653106 0.623392 -0.935476 -0.836076 -0.210457 2.026208 -1.392867 -1.042659 1.364240 -2.677970 -2.889830 1.476417 -0.032609 -1.395990 -0.479595 0.175128 0.033934 0.560115 -0.818556 -1.715916 -1.085371 0.521662 -0.548451 -0.609687 -0.216934 0.263638 -0.133129 0.651522 -2.285673 0.922686 1.065786 -1.035635 -0.783573 1.933777 0.655202 2.059136 0.087645 0.695241 -0.185561 1.425569 1.183305 0.720908 -0.497404 -0.306672 -2.392288 -0.576190 0.900287 -0.341147 -1.480978 -0.593307 0.435928 0.940627 0.377930 1.677381 -0.127059 3.344350 1.016512 -1.034069 -1.674429 -1.998089 -1.573227 -1.206240 0.330994 -0.704932 -1.341474 0.242073 1.218144 0.046418 -0.116830 1.517576 0.042051 0.826453 0.265892 -0.660074 0.270996 -1.226290 1.066158 -1.437503 -1.080700 1.272331 1.473392 1.575916 0.201872 0.103680 0.700888 -0.922512 -1.254478 0.645369 0.089634 -0.354366 2.410177 1.858557 3.821091 -0.946443 -0.088985 0.089019 -0.579886 -0.316954 0.459821 -1.834852 0.903149 0.217406 -0.593484 2.459965 0.220185 -0.790667 1.673029 -0.491190 0.150787 -1.801906 1.493203 -1.117865 0.340868 -0.855137 -0.197120 -1.165448 -0.806234 -1.165700 -0.633027 2.761389 -2.252706 -1.447603 0.704739 0.694285 0.807160 -2.845891 3.133990 -0.927321 1.646080 -0.589413 -1.470566 0.435866 0.785334 -0.390826 0.567501 0.713422 -1.382203 0.648576 1.174880 0.472420 0.466892 0.296248 1.325222 -0.333462 0.807943 -0.871412 1.005745 0.046742 -0.774879 -1.094776 -0.336256 0.182885 0.896137 -0.037095 0.120998 0.778172 -0.196523 -0.075669 1.709821 0.836907 -0.938486 0.218008 -0.283871 2.258613 -1.766492 -1.233880 -0.517317 0.784933 0.402139 0.790377 -2.898310 -1.381559 -1.693080 -1.524835 -1.106295 0.851414 1.056304 0.637740 -0.581290 -2.150060 -1.763112 2.301045 -0.162331 0.094390 1.491315 0.606078 2.198511 0.855790 1.058685 -0.633716 -0.414373 0.927594 -0.017661 -0.210810 -0.953285 0.798754 -2.100104 1.452882 1.779103 -0.872196 1.418183 0.377899 1.617779 -2.482746 2.549559 0.712738 -2.639007 0.696349 2.891534 1.113473 -1.985856 -1.352135 -PE-benchmarks/aho-corasick-algorithm.cpp__searchWords(std::__cxx11::basic_string, std::allocator >*, int, std::__cxx11::basic_string, std::allocator >) = -1.770145 -4.465080 7.026172 4.861854 -0.923561 1.899916 1.826859 -0.914770 0.167045 0.281037 -2.340332 4.041169 -3.940571 -0.674556 -0.318473 -0.727759 -4.881474 -3.988561 -0.523642 -1.034673 -1.553901 -1.976627 -2.296281 6.072644 2.843558 1.584016 -2.610991 0.206419 -6.808172 -2.368782 -1.529903 -0.012058 2.779799 1.324012 3.536867 -6.729709 2.284166 4.941369 0.261129 -4.593898 1.643143 -2.867364 -0.201498 -1.663851 -1.945467 1.510993 3.169393 1.822575 0.984958 0.124896 -1.420450 -1.562117 0.580907 5.391473 1.524721 3.557097 4.976868 -1.715288 1.019531 -1.334382 0.414291 -3.558123 1.678016 0.425948 -2.732931 -1.752668 0.900025 -1.762468 -0.944298 2.162356 2.891041 -1.885708 -2.158163 -2.796003 -5.112767 -1.366564 3.052054 3.169992 5.523099 -3.363916 5.216684 1.922615 3.152644 0.741617 3.593061 0.148918 4.380613 0.845537 -1.754614 0.179742 -6.226603 -1.818514 -1.035122 2.630788 -2.317707 -1.115100 2.134230 -7.794776 -5.960486 1.966661 -0.322420 -3.077379 -1.584021 1.230416 1.775746 1.595186 -0.460420 -3.327442 -1.832649 2.482612 -2.885073 -0.873923 0.130853 1.055329 -0.495436 -0.990756 -5.211006 2.392872 2.824778 -1.266363 -0.955503 4.829099 -1.292596 3.860209 0.338075 1.003882 -0.303803 3.459752 2.274998 -0.595340 -0.400221 -2.573010 -2.791024 -0.975215 0.347994 1.525397 -3.831215 -1.820847 1.522435 1.873711 -0.095545 1.169513 -1.637058 5.963414 0.414689 -3.136891 -3.683350 -4.629302 -4.029791 -3.105533 -0.380754 -1.387186 -3.498139 1.484565 2.827611 2.384939 -0.222431 4.455500 -0.681648 2.595610 1.051652 -1.293354 0.645938 -1.653142 2.340727 -3.281380 -2.399650 2.931439 1.277546 3.435200 0.002068 -0.204647 1.113918 -2.942065 -3.796028 1.836427 1.014373 2.151022 5.282598 4.366524 4.873576 -3.545732 -0.029284 0.255753 -1.183924 -1.310183 0.879495 -3.235935 1.586966 0.929929 -0.421320 6.194028 0.207533 -2.534838 2.351340 0.598802 1.069412 -4.116665 2.332200 -2.143066 1.184993 -2.080905 -0.680252 -3.113118 -1.741274 -4.071763 -3.278934 6.135868 -4.248164 -6.381946 2.243534 0.697257 4.831314 -7.404778 2.706657 -2.187820 5.642019 -0.241368 -1.672724 0.447070 -1.089894 -1.638304 2.357144 1.347661 -2.762549 1.430272 1.905828 1.477318 1.656276 0.642209 2.327523 -0.478780 1.871821 -2.199156 1.203212 -0.377065 -1.924872 -1.012378 -0.835156 0.482354 2.621396 0.200911 0.533690 2.779757 1.581330 1.723976 4.438100 1.085905 -1.934302 -0.862651 -1.075769 4.022109 -3.279809 -2.968892 -1.279424 2.296873 1.136377 0.824751 -6.370080 -4.956803 -4.680666 -6.295788 -1.346124 -0.682507 1.478516 1.946254 -0.941610 -5.146265 -2.989700 3.280403 0.323337 6.448879 2.863791 0.802808 4.746275 2.541370 -0.406202 -1.671808 1.918957 2.266277 -1.185394 0.112147 -4.525044 2.605892 -4.127753 3.592020 5.422740 -2.562142 3.236201 -0.642351 3.533734 -5.325792 6.027566 2.205968 -7.097334 0.234988 3.749004 2.090857 -2.112351 -3.467548 -PE-benchmarks/aho-corasick-algorithm.cpp__main = 2.675370 -3.675708 21.078697 11.182352 -4.298619 -0.060975 9.429816 -9.514855 10.460943 -0.542372 -4.312795 -0.342852 -11.260827 1.121318 -3.514178 5.497952 -18.455481 -8.130667 -1.906668 -9.178871 -3.708589 -7.062134 9.905923 0.086796 11.861397 6.540622 -4.329664 -6.069852 -6.871640 -6.959446 10.385153 -4.022520 5.473134 6.811855 1.490354 -21.510697 11.463710 3.942141 -5.303024 -7.561579 8.714487 -3.750192 -0.943134 -4.199233 1.248699 2.955072 3.827016 16.407591 11.441111 5.493427 0.402942 -4.222857 0.862452 16.940497 -8.727316 4.707499 3.963242 -3.873822 -2.290276 4.899298 0.274525 -3.351109 2.070490 6.412066 -1.795335 -8.548213 3.132502 -10.560346 -9.807693 11.566839 1.894418 -1.930757 -9.222738 -3.043287 -6.385832 -0.605656 -11.072822 13.313619 15.648955 -9.549223 9.352862 0.000231 3.490206 -3.972762 -1.495726 1.061439 6.168519 1.016883 -2.622535 -5.906978 -13.680023 -6.646312 0.979635 -4.262833 0.234215 -15.737648 6.655157 -10.736624 -11.735512 0.338352 6.859819 -5.643824 -3.852022 4.830069 4.407625 3.787112 -3.418679 -9.571131 -1.230375 0.775224 -6.256178 3.232301 0.654795 -0.657242 -6.192575 -4.885464 -13.431716 3.225828 -3.024442 -3.454138 -2.589508 8.526824 -4.540947 1.664978 3.911703 6.741343 -3.656342 10.734775 0.899965 4.676992 7.156406 2.684098 -4.183615 3.051594 8.395234 11.182431 -1.337755 -0.528930 -5.685620 3.083240 -11.862403 -2.572209 -1.841166 7.972234 5.609700 -12.475066 -10.545242 -0.833086 -3.526292 -14.004801 4.179520 -6.619639 -4.759499 1.894102 7.091246 8.788100 7.271181 11.963955 -11.142473 4.114295 -1.246342 -2.178774 6.062628 4.384876 9.874252 -6.536047 -3.575546 -0.469188 -0.779941 3.768966 -2.454287 -1.287911 1.439168 -15.427567 -4.298134 1.867801 4.843825 -2.491590 2.867544 10.469990 6.715744 -10.781517 -0.309027 11.439172 -2.262503 -5.100542 7.114474 -11.802235 8.322804 1.670011 2.704757 8.165789 1.555328 -3.990765 4.485455 -3.191511 1.835918 -6.331995 -4.727146 -4.990822 -1.751038 -6.638120 4.097897 -5.880889 -5.754495 -3.735617 -4.658036 11.573643 -4.788820 -9.233108 13.964530 -6.476513 8.257415 -13.691258 16.327734 -6.245100 3.365717 -2.920630 -0.746199 -1.450383 -1.475556 -7.587654 2.494679 -0.771579 1.085991 7.374531 14.794487 7.066763 3.484457 -0.875013 13.075093 -4.372416 9.682069 -2.970642 7.092127 -5.379842 -6.503063 1.489390 -1.134267 -3.979156 -2.784038 3.696512 14.731544 6.299272 6.059940 13.096621 3.645324 12.262426 -4.895540 6.395160 -0.914152 8.287536 -4.428652 -5.942821 6.500065 3.935865 -5.697155 6.784670 -15.542706 -19.555389 -7.281250 -15.962326 -1.880304 -9.299778 5.642694 -2.938598 -0.509855 -11.702375 -6.032212 2.097679 -0.252198 6.812071 7.030481 -0.131731 7.841345 13.241898 -7.955509 0.076953 4.306220 9.116251 -0.054433 -3.838911 -12.487778 9.397742 -11.243699 2.316649 15.665114 -7.058688 2.396160 -8.768576 13.880025 -13.698502 12.500780 3.009612 -6.923500 10.057092 7.692090 10.384921 8.949349 -5.673079 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::~deque() = 0.211362 -0.538844 2.551283 1.152947 -0.911126 -0.010824 1.112920 -1.130486 1.417721 -0.873387 -0.885340 -0.448692 -1.731207 0.151912 -1.422947 0.175872 -2.689512 -1.173207 -0.353598 -1.040878 -0.146104 -1.126996 1.445597 0.193172 1.324159 1.216133 -0.364672 -0.478396 -1.190083 -0.136648 1.793513 -0.669929 0.593220 1.099389 -0.053146 -2.356950 1.337741 0.653533 -0.726245 -0.959270 1.171926 -0.903393 -0.270829 -1.015665 -0.301140 0.052614 0.198268 2.335725 1.322973 0.105686 -0.260921 -0.579350 -0.247945 2.223444 -1.367224 0.507219 0.340375 -0.225702 -0.250676 0.522375 0.034246 -0.104059 0.201978 1.088020 -0.358121 -0.998902 0.428608 -1.579205 -1.256018 1.610791 -0.265935 0.393312 -1.047349 -0.061715 -1.466922 0.141167 -0.832214 1.841346 2.100244 -1.169647 1.162982 -0.141844 0.327790 -0.569219 -0.408182 0.363572 0.774247 0.127312 -0.109774 -0.937061 -1.962101 -0.131603 0.127031 -0.879095 0.031040 -2.260678 1.088102 -2.290788 -1.347148 -0.395429 0.782212 -0.951711 0.362672 0.899623 0.274281 0.432868 -0.534285 -1.183394 0.157939 0.227921 -0.506783 0.589267 0.460569 0.463730 -0.588620 -1.174502 -1.548172 0.306577 -0.695589 -0.559569 0.316473 1.135170 -0.603987 0.054919 0.636919 0.764920 -0.406443 1.512916 -0.131370 0.372619 0.510306 0.527929 0.297020 0.098721 1.062421 1.815505 -0.386294 0.047508 -0.462448 0.294718 -1.483047 -1.195376 -0.515002 0.188677 -0.041988 -2.015998 -0.959148 -0.068780 -0.758682 -2.179433 -0.026345 -0.854033 -0.969659 0.670679 1.047004 1.668261 1.081583 2.075324 -1.406334 0.365258 0.028228 -0.690681 0.728210 0.463061 1.132800 -0.680722 -0.695033 -0.075018 -0.631246 0.831326 -0.452047 -0.074002 -0.235259 -2.121667 -0.305834 0.496416 0.911788 -0.167259 0.573310 1.441640 -0.854244 -1.606365 0.372035 1.656997 -0.300586 -0.607524 0.926384 -1.644232 1.189959 0.296048 0.265705 0.566095 0.181785 -0.234267 0.509560 -0.652921 0.372699 -1.215485 -0.868738 -0.614683 -0.205262 -1.385495 0.823365 -0.485260 -0.904033 -0.550615 -0.982684 1.290051 -1.280485 -0.950896 1.764906 0.081289 1.426712 -1.519032 1.117168 -0.888341 1.401577 0.225786 0.236273 -0.002481 -0.619264 -0.983507 -0.051513 -0.091766 0.085659 1.103912 1.494320 1.112465 0.386364 -0.052777 1.892206 -0.615744 1.272020 -0.611899 0.514554 -0.369883 -1.485565 0.673446 -0.352326 -0.659593 -0.313022 0.961285 2.465173 1.122250 1.336068 2.324690 0.393871 1.733912 -0.396565 0.415864 -0.259345 0.972883 -0.409488 -0.678878 0.728468 0.854086 -0.904458 0.830788 -2.033750 -3.374878 -1.595994 -2.083407 0.086657 -2.450654 0.635310 -0.308890 0.280415 -1.608141 -0.851833 0.079917 -0.291038 1.650050 0.807937 -0.072193 0.831069 1.696640 -1.450387 0.128073 1.303881 1.865265 -0.025320 -0.170869 -2.027398 1.210742 -1.594121 0.202352 2.307863 -1.240098 0.304094 -0.918372 1.620853 -1.774637 1.810271 0.652641 -1.139642 1.494871 0.638457 1.023734 2.186297 -0.759655 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.080122 -0.272632 0.640047 0.519425 0.052134 0.024782 0.402261 -0.227671 0.394202 0.262543 -0.071807 0.060751 -0.531359 0.156003 -0.091969 0.429601 -0.355264 -0.366223 -0.036478 -0.241675 -0.030300 -0.247739 0.449549 -0.115299 0.431751 0.008225 -0.188833 -0.414787 -0.470314 -0.263809 0.296138 -0.208813 0.313144 0.138095 -0.196404 -0.614876 0.335451 0.296338 -0.237208 -0.353299 0.372587 -0.274577 0.142310 -0.158157 0.112730 0.122141 0.103571 0.140481 0.394764 0.271762 0.287895 -0.024076 0.180341 0.537935 -0.464590 0.224814 0.085117 -0.048624 -0.163858 0.043357 0.073795 0.014524 0.235931 0.200641 -0.097391 -0.398587 -0.229219 -0.306450 -0.502433 0.238279 -0.148245 0.118531 -0.438532 -0.005075 -0.068618 -0.104851 -0.632731 0.299021 0.565676 -0.350175 0.393502 0.049218 0.019627 -0.158750 -0.030035 0.131569 -0.024723 0.065774 -0.062630 -0.161298 -0.202507 -0.018900 0.033566 0.088533 -0.055546 -0.352120 0.313856 0.118100 -0.430669 0.059963 0.182596 -0.084205 -0.203292 0.180507 -0.045930 0.363717 -0.274785 -0.434595 -0.078330 -0.047511 0.203093 -0.106176 -0.069592 -0.237942 -0.300298 -0.324970 -0.469305 -0.020632 -0.152019 -0.327988 -0.192551 0.255745 -0.202773 0.060021 0.071269 0.232672 -0.182446 0.484640 0.048222 0.336034 0.299226 0.014583 -0.526585 -0.008979 0.381233 0.590114 -0.149807 0.155861 -0.338047 -0.021953 -0.263381 -0.075397 0.184230 0.247001 0.465843 -0.388023 -0.260901 -0.027458 0.062665 -0.501232 0.206473 -0.304871 0.262186 0.057979 0.298037 0.110636 0.377379 0.829799 -0.389862 0.136531 -0.017507 -0.194293 0.381341 0.252251 0.336177 -0.198726 -0.260742 0.090423 0.206239 0.015601 0.011985 0.131710 0.060485 -0.494741 0.026144 0.065804 0.090607 -0.283461 0.255369 0.206211 0.276129 -0.240617 0.089549 0.357543 -0.059067 0.011999 0.110545 -0.519410 0.308693 0.037894 -0.121275 0.148188 0.040439 -0.253446 0.246719 -0.274337 0.094684 -0.277184 0.089579 -0.259611 -0.125505 -0.338966 0.072153 -0.048013 -0.312401 0.039082 0.140354 0.442772 0.109277 -0.104417 0.171810 -0.018397 -0.020572 -0.494017 0.849036 -0.308843 0.107022 -0.232968 -0.071406 -0.012711 0.288919 -0.192040 -0.176503 0.152229 -0.002789 0.248833 0.594253 0.252311 -0.080491 0.024065 0.452062 0.002108 0.353243 -0.039985 0.357755 -0.080117 -0.146537 0.173276 -0.107716 -0.035522 -0.135694 -0.016054 0.648468 0.301056 0.067478 0.387392 0.092066 0.560441 -0.205151 0.346569 -0.010058 0.486135 -0.096685 -0.056732 0.115515 0.160069 -0.159861 0.323003 -0.468041 -0.646565 0.118101 -0.422764 0.073064 -0.030367 0.154723 -0.122761 0.052861 -0.477284 -0.280278 -0.057862 -0.191807 0.260190 0.141823 0.067535 0.260467 0.362254 -0.260728 -0.080172 -0.008097 0.219451 0.079227 -0.136133 -0.170666 0.239111 -0.415867 -0.027268 0.378176 -0.204112 0.001514 -0.126408 0.467457 -0.311955 0.607855 0.116683 -0.053125 0.649032 0.332029 0.555452 0.088649 -0.177338 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::begin() = 0.310427 -0.258252 1.509167 1.009178 -0.353336 0.049927 0.206996 -0.802826 0.809251 0.036658 -0.344590 0.131472 -0.603809 0.337184 -0.595730 0.758050 -1.238518 -0.461330 -0.253502 -0.766637 -0.295647 -0.292252 0.539422 -0.154533 0.782743 0.482426 -0.360186 -0.200923 -0.425341 -0.708689 0.468527 -0.344653 0.257336 0.096464 0.069291 -1.125922 0.951876 0.503734 -0.502418 -0.625167 0.570800 -0.517770 -0.014836 -0.453743 0.040406 0.177035 0.028532 0.846433 0.734292 0.423397 0.158321 0.236360 0.397335 1.368066 -0.689271 0.441274 0.270069 -0.076445 -0.212847 0.263372 0.124679 0.107870 0.116763 0.196548 0.042839 -0.966732 -0.320396 -0.528584 -0.365280 0.628456 -0.212918 -0.187321 -0.778807 -0.258389 -0.610960 -0.146608 -1.907321 0.887227 0.974918 -0.876302 0.407151 0.083856 0.082589 0.012088 0.105277 0.167533 0.527183 0.234949 -0.023304 -0.148433 -0.238545 -0.181888 0.389438 -0.578539 -0.329876 -1.581916 0.556886 -1.061167 -0.839287 0.168452 0.619789 -0.406829 0.171849 0.053742 0.106267 0.243833 -0.445153 -0.576409 0.295040 0.058441 0.213423 -0.067289 0.070745 -0.248692 -0.101173 -0.117077 -1.075785 0.351240 -0.173868 -0.108863 -0.029707 0.615758 0.150313 -0.228252 0.025242 0.407180 -0.369197 1.006023 -0.208004 0.653596 -0.151390 0.689429 -0.404447 0.708023 0.700568 0.005046 -0.314337 0.313263 -0.458411 0.166802 -0.763763 -0.070189 -0.347996 0.451133 0.343048 -0.638068 -0.610872 -0.175087 -0.517976 -0.939357 0.268322 -0.418018 -0.572732 0.071655 0.594333 0.726684 0.765588 0.632080 -0.637466 -0.097148 -0.123590 -0.025546 0.778248 0.127677 0.631133 -0.414983 -0.322518 0.272316 0.059879 0.193731 0.002140 0.132258 0.203448 -0.908779 0.297251 0.399995 0.458037 -0.319197 0.649174 0.672474 0.241850 -0.398947 0.123411 0.724722 -0.352290 -0.079640 0.246454 -0.778429 0.463843 0.265676 0.389523 0.499403 0.073838 -0.023062 0.217491 -0.287128 0.252234 -0.418605 -0.241259 -0.377318 -0.385109 -0.407964 0.608783 -0.297623 -0.325892 -0.229829 -0.473598 0.830033 -0.891754 -0.102202 0.928196 -0.303500 0.318977 -0.542261 1.086958 -0.595168 0.494680 -0.002513 0.038168 0.033382 -0.096224 -0.783000 0.090644 0.248806 -0.023377 0.268549 0.780920 0.547540 0.075013 -0.099211 0.916573 -0.541017 0.883952 -0.251487 0.723155 -0.268875 -0.349983 0.150960 -0.130629 -0.481939 -0.392872 0.417811 1.080738 0.142442 0.578924 0.629960 0.202928 1.034616 -0.466234 0.686139 -0.258596 0.269180 -0.408798 -0.342661 0.469713 0.237032 -0.244591 0.360515 -1.078249 -1.121936 -1.124963 -0.387738 0.144572 -0.595198 0.245823 -0.347317 -0.099845 -0.697583 -0.706694 0.677459 -0.281542 -0.122510 0.468079 0.092602 0.483033 0.815263 -0.341999 0.065232 -0.037576 0.382640 0.309402 -0.181183 -0.751650 0.899160 -0.644365 -0.102322 1.117470 -0.534094 0.215285 -0.013363 0.617431 -0.623270 0.797068 0.150850 -0.389575 0.765528 1.026644 0.744832 0.439358 -0.450875 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::end() = 0.310427 -0.258252 1.509167 1.009178 -0.353336 0.049927 0.206996 -0.802826 0.809251 0.036658 -0.344590 0.131472 -0.603809 0.337184 -0.595730 0.758050 -1.238518 -0.461330 -0.253502 -0.766637 -0.295647 -0.292252 0.539422 -0.154533 0.782743 0.482426 -0.360186 -0.200923 -0.425341 -0.708689 0.468527 -0.344653 0.257336 0.096464 0.069291 -1.125922 0.951876 0.503734 -0.502418 -0.625167 0.570800 -0.517770 -0.014836 -0.453743 0.040406 0.177035 0.028532 0.846433 0.734292 0.423397 0.158321 0.236360 0.397335 1.368066 -0.689271 0.441274 0.270069 -0.076445 -0.212847 0.263372 0.124679 0.107870 0.116763 0.196548 0.042839 -0.966732 -0.320396 -0.528584 -0.365280 0.628456 -0.212918 -0.187321 -0.778807 -0.258389 -0.610960 -0.146608 -1.907321 0.887227 0.974918 -0.876302 0.407151 0.083856 0.082589 0.012088 0.105277 0.167533 0.527183 0.234949 -0.023304 -0.148433 -0.238545 -0.181888 0.389438 -0.578539 -0.329876 -1.581916 0.556886 -1.061167 -0.839287 0.168452 0.619789 -0.406829 0.171849 0.053742 0.106267 0.243833 -0.445153 -0.576409 0.295040 0.058441 0.213423 -0.067289 0.070745 -0.248692 -0.101173 -0.117077 -1.075785 0.351240 -0.173868 -0.108863 -0.029707 0.615758 0.150313 -0.228252 0.025242 0.407180 -0.369197 1.006023 -0.208004 0.653596 -0.151390 0.689429 -0.404447 0.708023 0.700568 0.005046 -0.314337 0.313263 -0.458411 0.166802 -0.763763 -0.070189 -0.347996 0.451133 0.343048 -0.638068 -0.610872 -0.175087 -0.517976 -0.939357 0.268322 -0.418018 -0.572732 0.071655 0.594333 0.726684 0.765588 0.632080 -0.637466 -0.097148 -0.123590 -0.025546 0.778248 0.127677 0.631133 -0.414983 -0.322518 0.272316 0.059879 0.193731 0.002140 0.132258 0.203448 -0.908779 0.297251 0.399995 0.458037 -0.319197 0.649174 0.672474 0.241850 -0.398947 0.123411 0.724722 -0.352290 -0.079640 0.246454 -0.778429 0.463843 0.265676 0.389523 0.499403 0.073838 -0.023062 0.217491 -0.287128 0.252234 -0.418605 -0.241259 -0.377318 -0.385109 -0.407964 0.608783 -0.297623 -0.325892 -0.229829 -0.473598 0.830033 -0.891754 -0.102202 0.928196 -0.303500 0.318977 -0.542261 1.086958 -0.595168 0.494680 -0.002513 0.038168 0.033382 -0.096224 -0.783000 0.090644 0.248806 -0.023377 0.268549 0.780920 0.547540 0.075013 -0.099211 0.916573 -0.541017 0.883952 -0.251487 0.723155 -0.268875 -0.349983 0.150960 -0.130629 -0.481939 -0.392872 0.417811 1.080738 0.142442 0.578924 0.629960 0.202928 1.034616 -0.466234 0.686139 -0.258596 0.269180 -0.408798 -0.342661 0.469713 0.237032 -0.244591 0.360515 -1.078249 -1.121936 -1.124963 -0.387738 0.144572 -0.595198 0.245823 -0.347317 -0.099845 -0.697583 -0.706694 0.677459 -0.281542 -0.122510 0.468079 0.092602 0.483033 0.815263 -0.341999 0.065232 -0.037576 0.382640 0.309402 -0.181183 -0.751650 0.899160 -0.644365 -0.102322 1.117470 -0.534094 0.215285 -0.013363 0.617431 -0.623270 0.797068 0.150850 -0.389575 0.765528 1.026644 0.744832 0.439358 -0.450875 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::~_Deque_base() = 1.134606 -0.501335 4.878249 3.348777 -2.211512 0.115987 -1.036558 -2.576256 1.547066 -0.352534 -1.091010 1.061882 -0.613441 0.878256 -0.236052 2.255535 -4.769959 -0.477487 -1.037538 -2.298238 -1.390906 -0.218294 0.571989 0.406568 2.013795 3.121895 -1.382105 0.846460 0.843859 -3.500277 0.527616 -0.768008 1.013038 1.286383 1.519222 -5.053914 3.300579 1.316574 -1.158905 -1.910656 1.168450 -0.695988 -0.390753 -1.366689 -1.546469 1.026275 0.065868 2.001303 1.698855 1.220514 -0.716581 0.809043 2.080610 3.488797 -0.289362 1.021361 1.263222 -1.230967 -0.609376 -0.163107 0.520720 0.091537 0.246537 0.073355 0.643677 -3.181385 -0.517867 -1.287655 -0.648453 1.880216 -0.116855 -1.622180 -1.849323 -1.867672 -1.980875 -0.446341 -3.764015 3.183655 2.461707 -2.465486 0.656995 0.142131 -0.239375 0.624369 0.663913 0.322970 2.494727 1.031637 0.225122 0.555570 1.027280 -2.318907 1.933341 -1.458627 -1.332364 -4.508337 1.122278 -4.644217 -2.046848 1.073308 2.236736 -1.481714 -0.288542 -1.566143 0.920180 0.429479 -0.616571 -0.844449 1.111051 0.267441 0.122400 -0.257215 -0.651634 0.580015 -0.023222 1.321024 -3.379880 1.827678 0.116334 0.712824 0.833654 1.636867 1.351929 -0.934053 -0.409438 1.188219 -1.195144 3.229723 -0.828347 1.885753 -1.336936 2.507126 1.198378 2.082648 1.536019 -2.045249 -0.844238 -1.045075 -1.026999 0.888972 -2.239846 0.387556 -1.428390 1.946250 1.882437 -0.510276 -2.251602 -1.046326 -3.375095 -3.285610 0.372021 -1.162776 -2.393322 2.029221 1.563936 1.637808 1.857085 -0.014591 -1.708204 -0.545190 -0.701942 0.215175 2.115571 0.309763 1.512816 -1.269356 -0.318111 1.439742 -0.294034 1.408561 0.264651 -0.144795 1.005910 -1.686321 0.097817 2.554651 1.655818 0.371580 1.426105 2.233035 2.954399 0.281233 -0.264033 1.715777 -1.153756 -0.644566 0.912842 -1.476062 0.640371 0.749406 1.573196 2.364701 -0.043606 0.349806 0.186399 -0.032111 0.383225 -0.966909 -0.362986 -0.729961 0.383940 -0.619170 0.843946 -1.481157 -0.264285 -1.468158 -2.090165 2.724196 -4.405098 -0.956556 3.543891 -1.889803 2.114404 -1.647848 2.194127 -1.494638 2.155273 -0.149802 -0.557607 0.309962 -2.733789 -2.647699 1.285082 0.677191 0.342329 -0.808101 1.592644 1.473671 -0.021751 -0.833773 2.149209 -1.621087 3.284036 -0.760537 2.250664 -0.963293 0.348343 -0.567511 -0.045005 -2.031183 -1.167507 1.214820 1.513049 -0.526666 2.124013 1.117912 0.731866 2.375374 -1.575008 2.000772 -0.771645 0.087737 -1.533813 -1.533249 1.628156 1.839265 -0.350886 0.557849 -3.084512 -2.402284 -5.663659 -0.657772 -1.033074 -0.468101 1.198322 -1.066955 -0.946245 -0.678625 -2.011602 4.238738 -0.159329 0.043790 1.553039 0.083734 1.647709 2.177088 -0.174152 -0.243829 -0.702722 0.481724 1.179754 0.242669 -2.992255 3.139991 -1.254890 -0.327614 3.795264 -1.806820 1.230290 -0.096162 1.772205 -1.836061 1.738542 0.153075 -1.863944 1.083047 2.920199 0.356191 0.684125 -1.541383 -PE-benchmarks/aho-corasick-algorithm.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.030971 -0.534112 3.689031 2.585290 -1.093533 0.124847 -0.031637 -1.880698 1.479275 0.413230 -0.240911 0.681280 -0.810499 0.673387 0.180417 1.990954 -3.040441 -0.668667 -0.711690 -2.089670 -1.050674 -0.239376 0.846609 -0.208405 1.628213 1.076641 -1.209520 -0.350421 0.037631 -2.497298 0.928100 -0.767047 1.213740 0.172951 0.329682 -5.506866 2.476931 1.023896 -1.154621 -1.415579 1.195596 -0.668144 0.166676 -0.737999 -1.237193 0.479158 0.045174 0.521805 1.585326 1.061276 0.330911 0.825352 1.366200 3.684623 -1.055960 0.844195 0.617182 -1.087942 -1.042372 0.144134 0.379700 0.144368 0.769753 0.123258 0.365978 -2.604733 -0.413163 -1.096995 -1.445428 1.217522 -0.046967 -1.120439 -1.171893 -0.926344 -1.170565 -0.851635 -1.919319 1.950786 2.040849 -1.793400 0.931256 -0.040081 -0.297241 0.464538 0.475002 0.461586 1.591759 0.601486 0.096050 0.121291 0.755619 -1.071656 1.258580 0.006462 -0.744264 -3.157385 1.100461 -1.627999 -1.626050 0.965090 1.709545 -0.740541 -1.590522 -1.528181 0.574037 0.790255 -1.001329 -1.143419 -0.178216 0.176496 0.233296 -0.404909 -0.604215 -0.606993 -0.451353 0.148988 -2.438033 1.067081 -0.127140 0.177185 -0.576127 1.367438 0.156617 -0.750961 -0.200215 1.414737 -1.354213 2.260919 -0.751254 1.677234 -0.419354 1.280584 -0.603902 0.238219 1.257940 0.125472 -0.332942 -1.083183 -1.537775 0.486339 -1.764273 0.520180 -0.052837 1.775318 2.408074 -0.333204 -1.476896 -0.480973 -1.224394 -2.823852 0.439093 -1.174120 -0.832669 1.550921 1.295354 0.860528 1.680332 1.020997 -1.290311 0.543668 -0.721416 -0.374479 2.035689 0.183288 1.388512 -0.993324 -0.456324 0.630821 0.207060 1.117947 0.186055 0.015728 0.626512 -1.510536 -0.281514 1.038385 1.046981 -0.203309 0.782017 1.580878 3.752139 -0.809741 -0.021434 1.441182 -0.936799 -0.197053 0.563779 -1.331140 0.154333 0.747768 -0.159804 1.890501 -0.002645 -0.713973 0.199787 -0.296838 0.276517 -0.733776 0.146620 -0.723411 0.193111 -0.573520 -0.260334 -1.326626 -0.470943 -1.059533 -1.192556 2.215580 -2.687325 -1.158352 2.484154 -1.237169 0.954120 -2.247117 3.110791 -1.315909 1.237149 -1.188333 -0.551782 -0.145737 -0.395621 -2.015881 1.125757 0.556801 -0.152452 -0.107865 2.442864 1.237226 0.203405 -0.866522 1.969941 -0.798707 2.412700 -0.543727 2.280386 -0.868235 -0.029411 -0.327474 -0.142926 -1.140859 -0.911890 0.881999 1.046461 0.120388 0.984097 0.719026 1.037309 2.099758 -1.142887 1.856207 -0.354314 0.752326 -0.733162 -0.800658 1.275998 1.538982 -0.284021 0.763865 -2.380657 -1.890280 -2.962667 -1.044296 -0.268227 0.862751 0.578471 -0.780335 -0.432818 -1.300736 -1.283313 2.369377 -0.429579 0.625437 1.151454 0.339706 1.326649 1.821207 -0.446457 -0.487985 -0.647352 0.132356 0.853757 -0.267690 -1.917211 2.282762 -1.263739 -0.111377 2.400065 -1.009353 0.685208 0.146880 1.528884 -1.328777 1.943127 0.098009 -0.790377 1.661455 2.162319 1.215091 0.128892 -0.966292 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.372193 -0.743402 2.556830 1.817560 -0.072969 0.233445 0.728796 -1.243910 1.429419 0.630500 -0.385598 0.499926 -1.484536 0.410374 -0.150822 1.174691 -1.884086 -1.288796 -0.262703 -1.118130 -0.499251 -0.952840 0.972095 0.132487 1.326914 0.464327 -0.988051 -0.431689 -1.468055 -1.812751 0.705385 -0.663416 1.058624 0.397373 0.027656 -2.825515 1.662618 1.114583 -0.632063 -1.293174 1.079735 -1.056978 0.167997 -0.508828 0.055737 0.672855 0.384304 0.595245 1.494674 0.644467 0.602648 0.005164 0.244746 1.740759 -1.308561 0.841037 0.397544 -0.614687 -0.656394 0.154755 0.151001 -0.211428 0.930050 0.797898 -0.701802 -1.519168 0.073042 -0.792737 -1.609998 1.253622 0.035277 -0.338261 -1.198448 -0.324813 -0.853183 -0.395215 -0.040910 1.122498 2.061971 -0.823016 1.341566 0.069732 0.333363 -0.294610 0.436073 0.143953 1.244565 0.212311 -0.517325 -0.738614 -1.134675 -0.599202 0.092264 0.869630 -0.146346 -0.712452 0.708066 -1.231064 -1.676255 0.159336 0.694903 -0.522136 -1.600134 0.350190 0.740235 0.841471 -0.306924 -1.483338 -0.246348 0.240435 -0.411123 -0.312282 -0.263154 -0.882529 -0.914747 -0.451910 -1.850549 0.175762 -0.177282 -0.647968 -0.855750 1.209132 -0.682787 0.079972 0.221308 1.000915 -0.566981 1.299903 -0.208265 0.998288 0.710459 -0.052955 -1.242983 -0.192571 0.832313 1.118757 -0.687651 -0.281213 -0.988402 0.175508 -1.375213 -0.115481 -0.336140 1.425412 1.676005 -1.203089 -1.149777 -0.270140 -0.263125 -1.917913 0.519450 -1.003113 -0.225963 0.075419 1.152479 0.480568 1.199258 2.189453 -1.231577 0.772769 -0.005777 -0.425604 1.500484 0.192120 1.263609 -0.962643 -0.744600 0.594120 0.458702 0.375906 -0.156426 0.082328 0.264361 -1.705063 -0.718459 0.686330 0.347745 0.146545 0.942494 1.042181 2.109331 -1.329338 0.387263 1.252752 -0.244714 -0.185205 0.460795 -1.513023 0.802673 0.400200 0.201929 1.508210 0.084680 -1.098338 0.393877 -0.120389 0.465493 -1.232926 0.287835 -0.846081 0.287950 -0.811879 -0.393241 -0.691008 -0.898388 -0.548098 -0.330275 1.747418 -0.275755 -1.799152 1.603798 -0.801640 1.060840 -2.517610 1.734943 -1.153663 0.736814 -0.903663 -0.042450 -0.110026 0.114198 -1.113103 0.482071 0.470500 -0.162069 1.024713 1.860920 0.950727 0.368070 -0.231428 1.399346 -0.051684 1.341997 -0.369918 1.342701 -0.388176 -0.313008 0.107558 -0.377193 -0.326760 -0.144062 0.115365 1.190774 1.147172 0.354523 1.283849 0.867207 1.638699 -0.762791 1.167336 -0.204536 1.119294 -0.449938 -0.676112 0.573013 0.637181 -0.433261 1.010756 -1.985066 -2.222674 -0.474250 -2.318887 -0.028400 -0.023163 0.658846 -0.131189 0.049778 -1.686542 -0.775127 0.890650 -0.072697 2.198993 0.652272 0.195799 0.950855 1.457558 -0.893499 -0.468544 -0.176640 0.491564 -0.018305 -0.570409 -1.298969 1.339118 -1.255254 0.481783 1.695860 -1.092253 0.264311 -0.756519 1.414385 -1.407967 1.992804 0.500743 -0.641050 1.651271 0.690788 1.746417 0.163658 -0.864995 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.074628 -1.180886 3.512171 2.501607 -0.140533 0.121084 1.744633 -1.506536 1.452058 0.387254 -0.502250 0.901278 -2.354976 0.905171 -1.872503 1.697223 -2.425117 -1.756175 -0.562907 -1.331219 -0.324069 -0.970974 2.137690 0.123099 2.342769 0.410711 -1.328845 -1.766445 -2.583811 -1.665281 1.234134 -0.742914 1.419356 -0.254108 -0.898109 -3.514174 1.850202 1.864043 -1.131424 -1.756229 2.246634 -1.463736 -0.183035 -1.010787 -0.328953 0.145184 0.222547 1.237705 1.796913 1.050473 0.742710 0.771382 0.929308 3.445243 -1.989961 1.273031 0.822447 0.000814 -0.785757 0.192591 0.282728 0.163093 0.856823 0.708979 -0.261421 -2.120343 -0.755225 -1.311719 -1.882250 1.418671 -0.518982 0.258545 -1.779524 0.191107 -1.511075 -0.151032 -0.763972 1.725958 2.651513 -1.728536 1.667317 -0.253500 -0.256066 -0.732414 -0.221352 0.534026 0.130477 0.477085 0.192908 -1.520703 -1.579718 0.415360 0.197966 0.246011 -0.661915 -3.087893 1.804881 -1.490705 -2.362788 -0.060242 1.103322 -1.387829 -0.335162 0.523350 -0.030215 1.395838 -1.140092 -1.876486 -0.223891 0.228455 0.718189 -0.553756 0.057383 -0.802580 -0.879300 -1.178064 -2.498617 0.529733 -0.551925 -1.075775 -0.756905 1.313851 -0.519647 0.278561 0.301947 1.417073 -0.849094 1.890421 -0.217344 1.339588 0.969183 0.836090 -0.865557 -0.102621 1.725471 2.119577 -1.429187 0.463801 -1.589528 0.306355 -1.242532 -0.495458 -0.108746 1.228661 1.348385 -2.025837 -1.455252 -0.314857 -0.145357 -2.508319 0.382223 -1.259647 -0.433943 0.403844 1.486838 0.450846 1.693229 3.382014 -1.392717 0.656069 0.619854 -0.946972 1.898500 -0.017701 1.515420 -1.110151 -1.684609 0.744693 0.371738 0.759146 -0.675650 1.201558 0.218899 -2.388697 -0.308566 0.291224 0.796449 -0.863939 1.464812 1.445872 1.073594 -1.494782 0.449556 1.721440 -0.944794 -0.025060 0.413728 -2.560816 1.132655 0.481911 -0.031706 1.745463 0.309837 -1.330484 1.464889 -0.828858 0.526385 -1.559052 0.404194 -1.307066 -0.691449 -1.560750 -0.040043 0.003339 -1.152964 -0.671705 -0.687380 2.345433 -1.332101 -1.278300 1.481087 0.008211 0.506937 -3.161391 3.267553 -1.432583 0.989732 -0.192675 -0.001327 0.288928 0.554593 -1.875220 -0.154314 0.667206 -0.430650 1.541112 2.831526 1.233806 0.005452 -0.319350 2.186538 -0.392568 2.086815 -0.736662 1.758837 -0.427735 -1.742333 0.493040 -0.426182 -0.714181 -0.844444 0.671967 2.817986 1.079261 1.041997 2.040412 0.999199 3.128106 -1.061359 1.714059 -0.506400 1.701772 -0.555328 -0.723069 0.764821 0.923686 -0.588779 1.915815 -2.683634 -3.717041 -1.276875 -2.985662 0.987007 -1.454513 1.049452 -0.942166 -0.141008 -2.801074 -1.742654 0.245184 -0.711602 1.856446 1.646652 0.383335 1.251755 1.764250 -1.442791 0.417661 0.202416 1.714806 0.571680 -0.959280 -1.340188 1.349910 -1.779867 0.139865 2.533692 -1.156116 0.672665 -0.873089 1.640506 -1.721242 3.035994 0.555955 -1.014974 2.629774 1.361369 2.025556 0.771602 -1.086090 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.071811 -0.688315 2.733736 1.599799 -0.420647 0.080161 1.063639 -1.155692 1.414464 0.233799 -0.568754 -0.041433 -1.496911 0.241866 -0.921467 0.822599 -2.044144 -1.128486 -0.421229 -1.273612 -0.305769 -0.911917 1.180430 -0.024939 1.424070 0.500777 -0.617915 -0.755456 -1.138461 -1.210188 1.208511 -0.555343 0.849201 0.201618 -0.218977 -2.909837 1.509312 1.034349 -0.758776 -1.144571 1.184406 -0.696347 -0.179730 -0.434012 -0.280567 0.269992 0.256347 1.410536 1.263025 0.610649 0.428105 -0.142529 0.395109 2.644655 -1.287097 0.720035 0.403619 -0.302524 -0.440608 0.514058 0.131606 -0.100472 0.387808 0.733914 0.003554 -1.311512 0.160738 -1.057066 -1.397262 1.348301 -0.250391 -0.218544 -0.973421 -0.226266 -1.048168 -0.129733 -1.071719 1.411379 1.998804 -1.138393 1.243635 0.071727 0.089837 -0.341742 -0.352549 0.278529 0.628066 0.209457 -0.044402 -0.881403 -1.111645 -0.203784 0.192436 -0.151466 -0.310317 -2.078919 1.263733 -1.381391 -1.446536 0.015574 0.879646 -0.886967 -0.370665 0.342867 0.181269 0.669776 -0.546496 -1.187041 -0.266431 0.279087 -0.154162 0.135625 0.114972 -0.236438 -0.571226 -0.610670 -1.722114 0.393548 -0.498933 -0.535989 -0.435124 1.065152 -0.440847 0.066488 0.463554 1.080893 -0.533391 1.395758 -0.031827 0.924831 0.461996 0.609767 -0.707720 -0.068128 1.102524 1.280547 -0.349594 -0.047152 -0.783474 0.312834 -1.213044 -0.269479 -0.346162 0.698001 0.985261 -1.497832 -0.980168 -0.245769 -0.393596 -1.874185 0.190716 -0.970474 -0.654249 0.431953 1.019356 1.089783 1.055061 2.117603 -1.437215 0.543942 -0.044291 -0.693146 0.844871 0.132930 1.088942 -0.721966 -0.784569 0.075803 0.148537 0.723350 -0.359099 0.081263 0.053133 -1.817824 -0.229676 0.471287 0.571213 -0.437228 0.664482 1.375793 1.022872 -1.504805 0.270154 1.384489 -0.555980 -0.372851 0.699542 -1.714707 0.804545 0.370702 0.086883 1.049715 0.168884 -0.463138 0.683545 -0.738752 0.183305 -1.067485 -0.155580 -0.750527 -0.258656 -1.007663 0.248820 -0.688098 -0.709977 -0.484270 -0.632219 1.478340 -1.088921 -1.103459 1.608589 -0.203163 0.604465 -1.865045 2.116335 -0.897244 0.859009 -0.315597 -0.018827 -0.134667 0.136225 -1.065953 0.056289 0.140678 -0.146044 1.122004 2.050601 0.965776 0.200549 -0.211174 1.804534 -0.595279 1.394474 -0.638232 0.947390 -0.437842 -1.131557 0.162720 -0.306798 -0.560705 -0.460847 0.636036 1.772558 0.911138 0.644298 1.553942 0.661461 1.775771 -0.477386 1.051973 -0.158940 1.135274 -0.458382 -0.553444 0.757055 0.729761 -0.759618 1.024984 -2.011928 -2.535150 -1.258104 -1.958295 0.126135 -1.177820 0.655533 -0.450226 0.014618 -1.706995 -1.094154 0.611796 -0.262084 1.153441 0.878469 0.129568 0.908144 1.533662 -0.984956 0.091582 0.416073 1.119022 0.153738 -0.643241 -1.288375 1.291257 -1.331334 0.141240 1.971878 -0.994149 0.441457 -0.523694 1.246396 -1.610767 1.907614 0.484267 -0.737751 1.578615 0.932005 1.538938 0.863976 -0.729133 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.116121 -0.623844 0.979156 0.524649 0.030321 0.105621 0.281413 0.193531 0.015119 0.492195 -0.528737 0.707594 -0.485573 -0.027828 0.401757 0.260386 -0.495962 -0.620167 0.306523 0.227686 -0.079697 -0.409765 -0.163546 0.569301 0.506457 0.399986 -0.473787 -0.109338 -0.615937 -0.806649 -0.439282 -0.107910 0.402599 0.330315 0.647154 -0.349462 0.107323 0.369117 0.193385 -0.793463 0.213179 0.076683 0.181805 0.028307 0.330817 0.699365 0.724824 0.268254 0.083560 0.219676 -0.301719 -0.568431 -0.012190 0.000508 0.282780 0.227862 0.587925 -0.265651 0.230415 -0.434771 0.267538 -0.688217 0.206806 0.247552 -0.349619 -0.136379 0.045271 -0.108106 -0.106933 0.273015 0.453772 -0.066260 -0.551848 -0.543991 -0.217233 0.030894 0.158652 0.482695 0.725903 -0.085403 0.667450 0.386950 0.821935 -0.100270 0.171772 -0.167583 0.238507 0.129630 -0.434137 -0.137739 -0.648005 -0.708830 -0.402105 0.661217 -0.062548 0.583856 0.075780 -0.487141 -0.594738 0.237135 -0.008452 -0.200319 -0.401491 0.649158 0.428512 0.526169 0.238068 -0.369246 -0.314528 -0.021199 -0.410078 -0.048503 0.028335 -0.092699 -0.469933 0.141138 -0.510601 0.050926 0.369764 -0.408596 -0.029319 0.343869 -0.302477 0.749008 0.114202 0.062891 0.108242 0.264396 0.962674 0.208077 0.179913 -0.495013 -0.696716 0.049743 0.089514 0.338915 -0.412382 -0.184655 0.065231 0.118674 0.109088 -0.069746 -0.311237 0.851842 0.749980 -0.487501 -0.698926 -0.679867 -0.319111 -0.117205 0.276569 -0.153171 0.238388 -0.051665 0.148780 -0.009904 -0.112036 0.801181 -0.631938 0.350295 0.086671 0.074556 -0.137238 0.114893 0.157106 -0.427044 -0.094373 0.273651 0.543862 0.072404 0.091312 -0.301535 0.402913 -0.266654 -0.423974 0.576671 0.183152 0.308982 0.436901 0.255966 0.482396 -0.122943 -0.458469 0.062276 0.070066 -0.441943 0.254171 -0.591318 0.616995 -0.103476 0.432791 0.564450 0.020542 -0.265709 0.632820 -0.045037 0.057991 -0.353938 0.442251 -0.415613 0.322673 -0.131809 -0.096751 -0.467629 -0.008358 -0.176808 0.114480 0.757224 0.402811 -0.903577 0.058964 -0.224272 0.590442 -0.922340 0.225784 -0.066792 0.253055 -0.027053 0.020035 -0.027827 -0.234378 0.160528 -0.123160 0.165050 0.149979 0.083226 0.186370 0.066126 -0.264405 0.309358 0.131781 0.283192 0.083294 0.088509 -0.097168 -0.124138 0.321470 -0.178421 0.140489 0.155400 0.451380 -0.409898 -0.067337 0.164414 -0.023758 0.377895 0.250061 0.041764 -0.335812 -0.063845 -0.140034 0.848046 -0.274280 -0.461668 -0.382035 0.439259 -0.219702 0.078883 -0.662524 -0.578198 0.075472 -1.165239 -0.679275 0.072791 0.290138 0.169417 -0.204161 -0.311566 -0.117581 0.288000 0.415583 0.989791 0.096590 -0.258428 0.612515 0.191438 -0.287290 -0.359340 -0.039330 0.009719 -0.201023 -0.051455 -0.293259 0.006961 -0.618624 0.262711 0.665426 -0.586347 0.071031 -0.382058 0.576456 -0.717278 0.834256 0.443793 -0.818326 -0.125062 0.137225 0.622229 -0.568378 -0.494916 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.131137 -0.515222 1.981708 1.408704 -0.059030 0.083277 0.924341 -0.999307 1.071187 0.288900 -0.209352 0.224498 -1.210847 0.469492 -0.878236 1.016873 -1.287111 -0.912945 -0.366425 -1.023795 -0.215445 -0.498064 1.120905 -0.233199 1.251544 -0.028076 -0.618578 -0.978504 -1.339885 -0.680000 0.871223 -0.427802 0.646108 -0.180245 -0.440533 -1.838109 1.123407 0.905709 -0.726254 -0.879226 1.127225 -0.856953 0.013893 -0.517298 0.125704 0.074648 -0.003654 0.738024 1.102621 0.597115 0.567162 0.470605 0.355940 2.045464 -1.344597 0.683744 0.280231 -0.009809 -0.456160 0.413424 0.118953 0.212346 0.432782 0.320099 -0.098685 -1.311545 -0.450909 -0.761299 -0.978046 0.786216 -0.252091 -0.033281 -1.001867 0.036884 -0.735164 -0.230516 -1.452719 0.983145 1.379915 -1.074711 0.814945 -0.058816 -0.056087 -0.277604 -0.005947 0.292795 0.274585 0.207170 0.078519 -0.679820 -0.917975 0.174565 0.224590 -0.190079 -0.379310 -1.814608 0.967420 -0.579918 -1.275615 0.050868 0.751165 -0.622981 -0.240576 0.289693 -0.055900 0.643764 -0.688482 -1.037448 -0.072105 0.171133 0.410748 -0.250286 0.039886 -0.720564 -0.425321 -0.761422 -1.383245 0.348148 -0.362830 -0.434241 -0.594794 0.824322 -0.373999 -0.148824 0.153474 0.768801 -0.609345 1.097925 -0.281505 0.868830 0.492425 0.470936 -1.033466 0.213719 1.007386 1.164027 -0.516862 0.480126 -0.960793 0.140694 -0.903029 -0.107661 0.028730 0.682661 0.658046 -1.115146 -0.716083 -0.074438 0.056780 -1.285804 0.355934 -0.661830 -0.227212 -0.017361 0.835377 0.665007 1.063222 1.688725 -0.821570 0.308449 0.109682 -0.393352 1.165283 0.090828 0.901881 -0.597409 -0.778465 0.226531 0.205921 0.255800 -0.223475 0.580471 0.132771 -1.420510 0.064261 -0.008148 0.398001 -0.652851 0.850389 0.889985 0.514855 -1.034526 0.312260 1.031700 -0.568658 0.026549 0.241744 -1.318639 0.579786 0.367134 -0.041096 0.850551 0.139686 -0.584729 0.559814 -0.523256 0.336420 -0.699286 -0.005001 -0.682872 -0.605593 -0.780086 0.250046 -0.190347 -0.678276 -0.271489 -0.386144 1.224351 -0.552326 -0.525152 0.979179 -0.161180 0.063211 -1.454846 2.012204 -0.836945 0.356888 -0.258888 0.059919 -0.018983 0.639500 -1.137767 -0.008545 0.346650 -0.303199 0.853567 1.668809 0.733919 0.086435 -0.213419 1.314459 -0.431740 1.159494 -0.439812 1.148727 -0.343310 -0.862770 0.310377 -0.240496 -0.410452 -0.558045 0.427811 1.637969 0.542808 0.592870 0.953066 0.496282 1.697009 -0.567402 1.069045 -0.244686 0.742258 -0.286633 -0.320895 0.598379 0.263871 -0.332317 0.870549 -1.488308 -1.837169 -0.540419 -1.271867 0.676194 -0.710912 0.356611 -0.471697 -0.066513 -1.553403 -0.964725 -0.009915 -0.477196 0.465366 0.751219 0.231137 0.647319 1.103115 -0.785584 0.235490 0.065326 0.754039 0.359460 -0.641297 -0.742889 0.992644 -0.969831 -0.017948 1.373573 -0.548788 0.322133 -0.283146 0.938233 -0.894109 1.530931 0.219517 -0.367145 1.487446 1.085646 1.353095 0.473612 -0.538228 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::deque() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_base() = -0.422402 -0.197699 1.578721 0.432520 -0.654569 -0.278359 0.828702 -0.684907 0.741040 -0.587305 -0.069896 -0.352785 -1.158898 0.231582 -0.375751 0.239878 -1.352828 -0.777384 -0.335529 -0.914970 -0.588688 -0.661828 1.098424 0.064967 0.709024 0.557120 -0.236500 -0.456767 -0.168416 -0.660461 1.041829 -0.296115 0.498303 0.730042 0.113278 -2.211142 0.697866 -0.155943 -0.529982 -0.284969 0.833505 -0.009375 0.031077 -0.172694 -0.318407 0.187853 0.441783 1.216086 0.883214 0.528279 0.294716 -0.537566 -0.154844 1.388754 -0.784517 0.191098 0.410752 -0.183390 -0.311405 0.201939 -0.293096 -0.410741 -0.052605 0.566578 -0.329223 -0.335616 0.482177 -1.141145 -1.082904 1.011277 -0.034434 -0.130676 -0.666620 -0.578806 -0.545350 -0.184712 -0.483994 0.896938 1.442675 -1.052777 0.500869 0.054700 0.234726 -0.283442 -0.443333 0.043194 0.304552 -0.057313 -0.212601 -0.346911 -0.818999 -0.283989 -0.445962 -0.089760 0.288433 -1.305546 0.702399 -0.892948 -0.834164 0.096229 0.297273 -0.255677 -0.644578 0.240985 0.277811 0.207099 -0.523896 -0.901667 -0.508994 0.043572 -0.091539 0.756797 0.218517 0.286993 -0.518202 -0.587141 -1.311783 0.219889 -0.377817 -0.632879 -0.210063 0.575970 -0.570283 0.543570 0.839111 0.835237 -0.457280 1.360557 0.581974 0.100210 0.437179 0.020069 -0.200526 -0.166813 0.431468 1.332076 -0.092785 -0.288545 -0.479025 -0.078188 -1.030862 -0.531806 -0.053369 0.247071 0.792872 -1.004508 -1.098541 0.217996 -0.410887 -1.705683 0.444745 -0.955695 -0.133691 0.533183 0.099938 0.871802 0.422332 1.539919 -0.781979 0.583196 -0.199135 -0.577375 0.039567 0.409038 0.955200 -0.447180 -0.485594 -0.177170 -0.267040 0.286278 0.018631 -0.580918 0.036532 -1.532293 -0.671626 0.102929 0.446559 -0.285421 -0.075916 0.752641 0.590257 -0.722391 -0.140908 0.938068 -0.208174 -0.414248 0.655302 -0.879508 0.576523 0.041511 -0.228313 0.409574 0.194467 -0.300442 0.777981 -0.411843 0.266335 -0.583081 -0.425670 -0.419118 -0.067458 -0.949106 0.212779 -0.493404 -0.224631 0.117853 -0.401884 0.782297 -0.542744 -0.702432 1.058329 -0.076832 1.065365 -1.276375 1.396817 -0.234714 0.790724 -0.298949 0.102096 -0.310461 -0.330820 0.129475 0.187438 -0.389217 0.395999 0.363507 1.411705 0.324302 0.360716 0.275796 1.317968 -0.177122 0.835647 -0.072947 0.571471 -0.538412 -0.849452 0.492465 0.071506 -0.432427 -0.285219 0.460013 1.158563 0.691180 0.167923 1.329459 0.448964 0.986867 -0.182765 0.284756 0.003533 0.929303 -0.585991 -0.349637 0.530061 0.741875 -0.767078 0.408280 -1.026774 -1.947016 -0.891461 -1.654972 -0.458732 -0.661480 0.420984 -0.370644 -0.034472 -0.494953 -0.204740 0.400812 -0.025835 1.034612 0.627723 0.132632 0.978715 1.640153 -0.792396 -0.318365 0.818313 0.737428 -0.165706 0.097182 -1.097576 0.241356 -0.790190 -0.022124 1.062404 -0.411677 0.167429 -0.695054 1.212798 -1.122848 1.229954 0.251464 -0.354252 1.336539 0.501885 0.684617 1.235296 -0.170472 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.020613 -0.364075 1.593080 1.020165 -0.051065 0.142324 0.484059 -0.919230 0.989565 0.194864 -0.236380 0.171933 -0.856262 0.358357 -0.995030 0.739344 -1.047357 -0.750437 -0.330132 -0.931333 -0.302451 -0.451216 0.704002 -0.185208 0.868731 -0.068916 -0.539793 -0.401772 -1.099846 -0.804952 0.565734 -0.359587 0.336985 -0.538736 -0.229366 -1.353181 1.017071 0.762517 -0.589968 -0.692429 0.780112 -0.750590 -0.015251 -0.350089 0.062380 0.041918 -0.035491 0.506484 0.890565 0.389274 0.547669 0.446111 0.161264 1.786603 -1.088617 0.623121 0.226269 0.044018 -0.362253 0.465406 0.078220 0.174098 0.281386 0.288281 -0.127991 -1.017475 -0.243165 -0.468027 -0.617186 0.712845 -0.334582 -0.235839 -0.694353 -0.058565 -0.878023 -0.248542 -1.162538 0.675532 1.145755 -0.835862 0.606633 -0.013956 0.113090 -0.026372 0.166473 0.164178 0.560610 0.178190 -0.068806 -0.478503 -0.528139 0.341139 0.182616 -0.085363 -0.341132 -1.473725 0.782459 -1.043940 -1.078623 0.099455 0.584480 -0.451277 -0.196238 0.184241 0.096297 0.324665 -0.570040 -0.869314 0.015278 0.251668 0.245006 -0.148027 0.207281 -0.715385 -0.159998 -0.393450 -1.128095 0.264850 -0.223815 -0.283019 -0.547046 0.799313 -0.171105 -0.181463 0.112115 0.632379 -0.460402 0.854924 -0.340521 0.735447 -0.115814 0.559712 -0.991562 0.243183 0.691971 0.414527 -0.468840 0.459965 -0.653902 0.116917 -0.835265 -0.048263 -0.425501 0.509312 0.421311 -0.840187 -0.573189 -0.083137 -0.135078 -1.107279 0.212127 -0.497928 -0.663862 -0.165162 0.711976 0.749597 0.861216 1.230996 -0.555491 0.163581 0.037364 -0.306962 0.968285 -0.301686 0.752475 -0.508442 -0.631043 0.238087 0.166476 0.230258 -0.101561 0.298039 0.072124 -1.138021 0.161147 0.127703 0.417660 -0.358242 0.779089 0.756289 0.394362 -0.997411 0.320007 0.815047 -0.445736 0.057868 0.092604 -0.995376 0.381506 0.421589 0.181362 0.738229 0.125404 -0.364715 0.308949 -0.354757 0.419079 -0.646995 -0.086848 -0.542950 -0.455075 -0.528155 0.259390 -0.265023 -0.430790 -0.300937 -0.616643 0.945764 -0.829894 -0.493037 1.027688 -0.032910 0.248490 -1.075782 1.219556 -0.699274 0.642423 -0.101999 0.249558 -0.042185 0.475365 -0.890039 0.212849 0.288269 -0.324114 0.734613 1.195460 0.598837 0.292793 -0.185049 1.087589 -0.502962 0.856772 -0.392864 0.913342 -0.248594 -0.810273 0.248991 -0.241697 -0.397330 -0.395769 0.498400 1.077055 0.460527 0.420484 0.695258 0.509942 1.278097 -0.454620 0.815339 -0.266199 0.420141 -0.321167 -0.321030 0.489579 0.207072 -0.250329 0.514057 -1.256972 -1.399395 -0.898924 -0.982727 0.570118 -0.683105 0.135115 -0.330772 -0.033840 -1.171094 -0.767243 0.514462 -0.378940 0.462991 0.566839 0.251189 0.519853 0.978343 -0.580168 0.176771 -0.019762 0.453260 0.216222 -0.485425 -0.691979 0.919538 -0.768178 0.045510 1.069903 -0.498437 0.268222 0.121392 0.370215 -0.729948 1.116842 0.240082 -0.279122 1.109166 0.909468 1.197937 0.400953 -0.475299 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 2.600057 -2.661362 16.754493 9.820825 -7.214981 0.473741 0.523615 -7.703761 5.166541 -0.579161 -3.341148 2.315033 -4.030648 1.770260 -1.255421 5.725668 -14.852132 -2.499169 -2.853623 -7.952815 -4.223466 -2.061768 2.497999 1.850270 7.204182 7.506006 -3.512069 -0.407506 1.073345 -8.888694 3.484843 -2.078115 3.577476 2.612357 4.614758 -19.293632 9.425115 4.137254 -3.752859 -6.589864 4.713877 -1.147829 -1.121467 -2.691130 -4.618231 2.223239 0.956015 9.284653 5.161896 3.968835 -1.903345 0.984852 5.634067 15.355938 -1.643443 3.575692 4.434774 -3.373704 -1.734068 0.783494 1.388178 -1.074305 0.503560 0.428786 2.256938 -8.851371 -0.229728 -5.073083 -3.195534 6.153317 1.175794 -5.351382 -5.686346 -5.991297 -6.265266 -1.631363 -12.718636 10.697472 8.983966 -8.604174 3.810435 1.035288 0.192259 1.487689 1.004136 0.850704 6.821498 2.488576 0.568733 0.454167 -0.586104 -6.185501 4.572852 -5.393400 -4.008398 -17.254824 4.987395 -12.062286 -7.342809 3.597878 6.801980 -5.771595 -0.581067 -3.840569 2.389824 1.696832 -3.343663 -4.075564 0.198503 1.870560 -0.716442 0.562487 -0.519580 1.929445 -0.582908 1.385056 -10.420466 5.937000 0.462747 1.131069 1.104033 5.970182 2.299401 -0.865943 0.591027 4.593539 -3.907537 9.894419 -0.103480 5.103152 -2.680976 6.467342 1.880697 5.224288 5.080184 -1.999141 -1.262313 -3.279013 -3.009130 3.132408 -6.237790 1.736392 -3.198418 6.393808 5.327877 -3.339504 -7.098795 -3.480439 -8.448991 -10.277863 1.721216 -3.932212 -7.054156 5.771105 4.461295 6.523261 4.578808 1.443891 -6.411084 0.580852 -2.341129 -0.330768 4.445162 1.226303 5.108882 -4.418209 -1.782272 2.036253 -0.330202 5.375851 -0.059196 -0.949123 2.673821 -6.445050 -0.642706 4.889029 5.512405 -0.622690 4.207552 8.641580 10.320043 -2.285070 -1.778160 5.744802 -4.595705 -2.807945 3.589072 -6.266516 2.392132 2.476575 2.844311 8.097185 0.055281 0.605923 2.820512 -1.717370 0.555624 -3.405288 -1.271212 -3.264092 -0.698958 -2.973495 3.103600 -5.972943 -1.110175 -4.993712 -6.682483 9.168082 -13.481723 -4.012677 10.927084 -5.016933 5.860077 -6.952479 11.473315 -3.840325 5.813872 -0.792683 -1.831782 -0.277842 -5.397813 -7.451160 3.585737 0.721557 0.579704 -0.598695 8.090985 4.315347 0.285995 -2.025766 8.396850 -5.523821 9.327897 -3.560940 7.096572 -3.859600 -1.408106 -1.556172 0.120093 -5.328321 -3.139530 4.396994 5.906634 -0.747814 5.868086 4.558547 3.282016 7.363763 -4.080109 6.070010 -2.188674 2.222618 -4.757644 -4.605199 4.765187 5.994708 -2.223948 2.466104 -11.072031 -9.359889 -16.192874 -4.345623 -2.910599 -2.778902 3.634302 -3.134628 -2.964187 -4.619518 -6.486193 10.761279 -0.700928 -0.652233 5.836053 0.449627 6.679699 8.394831 -1.598439 0.112907 0.250352 2.768528 2.664134 -0.706248 -8.835908 8.686481 -5.771589 -0.042387 12.402166 -4.813110 4.258055 -1.586552 6.796460 -8.021188 7.243462 1.225741 -6.420572 3.748395 10.206864 3.332260 2.544038 -4.591536 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.239800 -0.366758 1.501886 1.113580 -0.692877 -0.018134 0.100848 -0.524864 0.717943 -0.190231 -0.349488 0.125421 -0.583271 0.320870 0.351930 0.759143 -1.680434 -0.382737 -0.007714 -0.499923 -0.302800 -0.324913 0.464766 0.009424 0.633615 1.127585 -0.298512 -0.198651 0.219239 -0.338182 0.795000 -0.522568 0.586338 1.231812 0.271080 -2.284438 0.865990 0.067155 -0.434092 -0.737255 0.365322 -0.422296 0.280551 -0.838626 -0.336706 0.313051 0.298919 1.071038 0.672737 0.349942 -0.419516 -0.218130 0.482380 1.296011 -0.435697 0.211818 0.350939 -0.473873 -0.275134 -0.177458 0.251466 -0.090651 0.366405 0.401804 -0.089756 -0.937189 -0.293132 -0.946203 -0.739418 0.619542 0.143898 0.247590 -0.935199 -0.318607 -0.307405 -0.233297 -1.753006 1.285873 1.154773 -0.986823 0.553808 0.158197 0.248281 0.062003 0.137349 0.329117 0.618322 0.271144 -0.233449 0.188142 -0.256917 -0.900903 0.502253 -0.756907 -0.010949 -1.514194 0.162643 -0.643047 -0.634829 0.332017 0.536594 -0.090518 -0.184545 -0.332538 0.415782 0.520494 -0.471119 -0.549738 0.163937 -0.233847 -0.071689 -0.039532 -0.155958 0.273940 -0.366015 -0.373730 -1.137426 0.187256 -0.101550 -0.203256 0.428169 0.576668 -0.075259 -0.110656 -0.023413 0.221705 -0.424270 1.391196 0.057996 0.430389 0.280745 0.240461 0.104027 0.542658 0.675915 0.716666 -0.055676 -0.425754 -0.421957 0.206949 -0.771990 -0.381597 0.338918 0.546549 0.749515 -0.397586 -0.739482 -0.385279 -0.621906 -1.226301 0.372846 -0.619815 0.133233 0.943941 0.622185 0.563874 0.798322 0.492430 -0.925382 0.252611 -0.489063 0.140262 0.717033 0.979555 0.644943 -0.376004 -0.042749 0.279656 -0.028064 0.340185 0.161151 -0.324687 0.325477 -0.775426 -0.117184 0.611129 0.610610 -0.129012 0.348052 0.492119 0.691425 -0.198590 -0.018182 0.709146 -0.060144 -0.233189 0.483889 -0.672819 0.670556 0.061123 -0.032582 0.258903 -0.058424 -0.277988 0.103464 -0.139970 0.054134 -0.277219 -0.312793 -0.255241 -0.079039 -0.537396 0.604008 -0.545609 -0.443362 -0.281953 -0.106343 0.969096 -0.834341 -0.140371 0.833792 -0.674128 0.752426 -0.682177 1.317115 -0.615142 0.531489 -0.422938 -0.466899 0.010720 -0.609254 -0.545974 0.020276 0.296327 0.273411 -0.275055 0.706705 0.641645 -0.041821 0.070250 0.856462 -0.073191 0.862736 -0.010381 0.611150 -0.377876 0.262263 0.142169 -0.110969 -0.219782 -0.179039 0.319844 1.179288 0.244027 0.743070 0.910088 0.182581 0.720597 -0.552943 0.340624 -0.211925 0.614202 -0.401949 -0.271806 0.228204 0.637193 -0.331438 0.360074 -0.985455 -1.269527 -1.136674 -0.147781 -0.565043 0.063852 0.338110 -0.231020 0.074397 -0.519839 -0.347016 0.462989 -0.274336 0.074650 0.356166 -0.054486 0.667493 0.827374 -0.385218 -0.598024 0.235475 0.321640 0.198862 0.365337 -1.176847 0.873509 -0.812494 -0.009755 1.238717 -0.638918 -0.040433 -0.352490 1.510141 -0.563071 0.976244 0.253001 -0.648078 0.612501 0.966608 0.411864 0.606199 -0.494874 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = 0.211826 -0.331391 1.575723 1.170397 -0.523758 -0.035794 0.382275 -0.537557 0.871916 0.251829 -0.256719 0.012387 -0.608315 0.232965 0.666552 0.951341 -1.493004 -0.358599 0.086479 -0.683057 -0.298387 -0.293532 0.473896 -0.270181 0.762142 0.701829 -0.163317 -0.533664 0.221896 -0.397635 0.767920 -0.561760 0.571313 1.064961 0.218537 -2.335901 0.912908 0.026112 -0.499029 -0.708294 0.399385 -0.393482 0.443626 -0.579656 0.039830 0.369607 0.408871 1.111775 0.810348 0.563677 -0.122680 -0.310595 0.558678 1.449022 -0.600415 0.222711 0.214618 -0.595153 -0.352664 0.059650 0.204827 -0.218879 0.410124 0.286077 -0.017831 -1.020033 -0.327823 -0.910682 -0.799012 0.500876 0.260690 0.053721 -0.985366 -0.316204 0.006765 -0.384359 -2.584899 1.220747 1.117117 -1.003705 0.656685 0.265078 0.256401 0.052347 0.151734 0.323759 0.583649 0.177674 -0.285924 0.172461 -0.281475 -1.020740 0.517086 -0.738891 0.047451 -1.482888 0.170893 0.050283 -0.668280 0.428133 0.595220 -0.022055 -0.384353 -0.285666 0.354108 0.565106 -0.534972 -0.636022 -0.006451 -0.297423 -0.143968 -0.043181 -0.234247 -0.123577 -0.475976 -0.409688 -1.101717 0.195123 -0.139740 -0.191363 0.043250 0.601054 -0.130170 -0.151643 0.027702 0.343515 -0.468414 1.328393 0.094381 0.595790 0.532172 0.130504 -0.612555 0.658156 0.775007 0.782970 0.186797 -0.248119 -0.563555 0.192259 -0.844008 -0.070984 0.580108 0.853011 0.961511 -0.425196 -0.682530 -0.284678 -0.270290 -0.978657 0.627698 -0.592499 0.386118 0.573554 0.609675 0.547275 0.823669 0.427486 -1.017191 0.330474 -0.630635 0.204224 0.793975 1.103340 0.753607 -0.422049 0.128189 0.046125 0.251053 0.180931 0.158736 -0.280453 0.412109 -0.857215 0.000647 0.326461 0.439037 -0.401170 0.333819 0.531643 1.227577 -0.345727 -0.086132 0.750854 -0.108681 -0.236637 0.556853 -0.680744 0.659998 0.093610 -0.155219 0.251169 -0.025217 -0.307416 0.071643 -0.237928 -0.041005 -0.143116 -0.314052 -0.283385 -0.275564 -0.336645 0.622882 -0.714722 -0.538110 -0.180921 0.136983 0.956057 -0.355117 -0.060912 0.764316 -0.983929 0.362859 -0.667944 2.051064 -0.680884 -0.018171 -0.769275 -0.542865 -0.166683 -0.008041 -0.551883 0.040075 0.258234 0.245320 -0.089257 0.981904 0.661238 -0.007759 0.032630 0.940091 -0.156909 0.838759 0.048465 0.765323 -0.493762 0.429453 0.036870 -0.070225 -0.153736 -0.141170 0.197306 1.177233 0.197946 0.452980 0.718798 0.180628 0.731072 -0.524334 0.592096 -0.157053 0.734140 -0.357600 -0.237907 0.339601 0.388223 -0.292218 0.398037 -1.048268 -0.981054 -0.536275 0.026781 -0.496121 0.443754 0.291788 -0.194833 0.105832 -0.681483 -0.337442 0.254586 -0.239677 -0.501266 0.269364 -0.050903 0.657413 0.808893 -0.222592 -0.643777 0.003522 0.126458 0.233642 0.090680 -0.897894 0.883261 -0.934167 0.003113 1.075712 -0.518830 -0.141316 -0.355723 1.605666 -0.626230 0.890491 0.147127 -0.408083 0.720401 1.267271 0.743210 0.249396 -0.416715 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.419898 -0.789415 3.800926 1.847715 -0.576490 -0.132586 1.963594 -1.787232 1.767039 -0.235445 -0.327607 0.154859 -2.499750 0.670283 -1.847678 1.134604 -2.661703 -1.873183 -0.772931 -2.063454 -0.910640 -1.209273 2.165608 0.046919 2.169219 0.297657 -1.024608 -1.500605 -2.079253 -1.761460 1.638382 -0.628288 1.119386 -0.171953 -0.353444 -4.175207 1.908217 1.134044 -1.243167 -1.286354 2.218483 -1.030959 -0.155886 -0.510537 -0.206724 0.179448 0.524602 2.016217 2.054591 1.134363 0.982836 0.141823 0.154248 3.858917 -2.152618 1.084121 0.850428 -0.128943 -0.819134 0.736588 -0.262725 -0.390302 0.354029 0.777321 -0.509340 -1.667725 0.230463 -1.734852 -1.939704 1.868040 -0.214616 -0.469647 -1.555816 -0.503391 -1.716069 -0.403185 -1.155797 1.769519 2.917802 -2.085875 1.484309 -0.101896 0.173865 -0.560011 -0.377078 0.240535 0.697154 0.123507 -0.095858 -1.443934 -2.079848 0.253390 -0.410207 0.113329 -0.224027 -3.318967 1.901486 -2.036909 -2.417112 0.042659 1.015478 -1.249015 -0.914223 0.664792 0.274612 0.804511 -1.178166 -2.077377 -0.749700 0.445930 0.131694 0.482387 0.463680 -0.689272 -0.861300 -1.243680 -2.805565 0.751492 -0.636373 -1.032634 -1.179043 1.576934 -0.878559 0.587843 1.081871 1.861725 -1.000232 2.235145 0.253261 0.921530 0.768168 0.601846 -1.375843 -0.137018 1.388472 2.291427 -0.966299 0.266840 -1.442177 0.158615 -1.927193 -0.529949 -0.509317 1.226630 1.348447 -2.357636 -1.896455 0.079013 -0.292468 -2.930227 0.664298 -1.531379 -0.940257 0.136218 0.999911 1.476360 1.379592 3.379013 -1.435005 0.985828 0.236545 -1.144112 1.251456 -0.103233 1.945647 -1.230015 -1.476390 0.108500 0.005859 0.736518 -0.510325 0.280207 0.151579 -3.090489 -0.769945 -0.018996 0.852428 -0.809285 1.017176 1.887675 1.416844 -2.190100 0.173672 1.963250 -1.039171 -0.408790 0.846376 -2.336392 1.054531 0.578027 -0.115784 1.792198 0.448917 -1.047757 1.554984 -0.824693 0.679875 -1.524856 -0.282725 -1.246735 -0.749330 -1.633744 0.166794 -0.688995 -0.852566 -0.464091 -1.237105 2.164801 -1.429127 -1.733127 2.187646 -0.168887 1.237334 -3.295009 3.390684 -1.133491 1.213072 -0.404724 0.380283 -0.284725 0.515256 -1.239100 0.488252 -0.069365 -0.186661 1.678036 3.282058 1.067468 0.702912 -0.088441 2.721493 -0.764212 2.045907 -0.702995 1.771840 -0.886121 -2.182101 0.657996 -0.170368 -0.950783 -0.726610 1.028787 2.623091 1.287559 0.685438 2.294408 1.305235 2.890388 -0.746542 1.470481 -0.384992 1.701873 -0.937205 -0.907811 1.172185 0.976855 -0.974371 1.443486 -2.831154 -3.990305 -1.632930 -3.611752 0.583548 -1.702736 0.842674 -0.855865 -0.207065 -2.481099 -1.348464 0.654998 -0.360482 1.944519 1.667773 0.429501 1.692695 2.764167 -1.608355 0.186701 0.848934 1.650815 0.166425 -0.900258 -1.812526 1.234035 -1.866134 0.195734 2.571412 -1.045094 0.733524 -0.988668 1.825901 -2.295004 2.917102 0.500927 -0.929243 2.811276 1.575232 2.276495 1.486992 -0.807383 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.839070 -0.824392 4.838994 2.031926 -1.090945 -0.051139 2.343173 -2.355453 2.925860 0.165827 -0.752489 -1.150385 -3.106682 -0.051968 -0.331548 0.688543 -3.941018 -2.213945 -0.805272 -2.693114 -1.108443 -2.398843 2.357673 0.067446 2.202341 1.036967 -0.765304 -0.850071 -1.329529 -2.466170 2.775441 -0.946007 1.497564 1.743769 0.453099 -5.832529 2.791144 0.825161 -1.134723 -1.463970 1.797844 -0.503707 -0.259737 0.037612 -0.094836 0.979333 0.867471 3.259587 2.742204 1.031811 1.076364 -1.790851 -0.553724 3.654037 -2.325370 0.894818 0.391537 -1.209736 -0.782230 1.321923 -0.378774 -0.939633 0.618182 2.094379 -0.742519 -1.429502 2.076826 -2.344378 -3.352779 3.249856 0.305575 -1.063890 -1.497181 -1.176142 -1.347571 -0.294652 -0.330442 2.513020 4.083738 -1.565458 2.324286 0.261934 0.745269 -1.065615 -0.705875 -0.108124 2.186396 -0.201086 -0.849603 -1.617064 -3.080560 -1.526662 -0.574000 0.591086 0.454273 -1.869874 1.800310 -2.299861 -2.479173 -0.084976 1.229140 -1.127104 -2.646402 1.224553 1.229293 0.583028 -0.332127 -2.574048 -1.422661 0.659977 -1.875254 1.429015 0.123045 -0.090265 -1.782949 -1.160457 -3.023193 0.317706 -1.050470 -1.256589 -1.335886 2.039234 -1.809717 0.667159 1.805702 2.268245 -0.806601 2.306887 0.532534 1.092086 1.850320 -0.138511 -1.499655 -0.835396 1.297805 3.130609 0.345039 -0.987809 -1.169319 0.357568 -3.142732 -0.560527 -0.747527 1.496348 2.449105 -3.063968 -2.296468 0.329345 -0.512960 -3.952196 0.815553 -2.205328 -0.868043 0.411748 1.333561 2.484768 1.334318 4.044920 -3.049299 1.860814 -0.484063 -1.393834 0.689711 0.789598 2.362727 -1.458578 -1.021772 -0.659139 -0.101945 1.076433 -0.502957 -1.315550 -0.234688 -3.960960 -1.948929 0.682163 0.605907 -0.109195 0.118809 2.695557 3.191634 -3.419765 0.311773 2.915469 -0.381318 -1.322291 1.959366 -2.848122 1.601735 0.408689 0.072927 1.981780 0.275923 -0.934601 1.055131 -1.001458 0.395068 -2.133632 -0.810801 -1.262740 0.590777 -2.026852 -0.102625 -1.957426 -1.257305 -0.452788 -0.836365 2.393470 -0.443869 -3.451182 3.838462 -1.236066 2.391281 -3.985167 3.381375 -1.183716 1.158006 -1.522251 0.170576 -1.007691 -0.150796 -0.803876 0.853938 -0.707910 0.378844 2.319097 4.181486 1.421074 1.103946 -0.118316 3.436099 -0.697951 2.118277 -0.943371 1.647423 -1.094963 -1.701555 0.305914 -0.415475 -0.838474 -0.375790 0.740584 2.573814 2.534052 0.339438 3.320965 1.245877 2.467064 -0.384680 1.554290 0.320712 2.191508 -0.955467 -1.155934 1.759140 1.353663 -2.078169 1.545560 -3.544223 -4.817753 -0.997692 -5.011160 -1.072251 -1.737777 1.419333 -0.247803 0.183538 -2.412305 -0.982056 1.134898 0.420338 3.637315 1.174039 0.109054 1.936923 3.822821 -2.084235 -0.479739 1.337567 1.827103 -0.735465 -1.117882 -2.797572 1.888879 -2.466053 0.803876 3.267767 -1.753382 0.626864 -2.297131 3.123195 -3.772714 3.263429 0.989621 -0.949576 3.026365 0.690761 2.940407 2.321585 -0.993627 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.017259 -0.516354 2.444010 1.752207 -0.748119 0.128804 0.261709 -1.135006 1.047104 0.183289 -0.239618 0.362467 -0.856039 0.408333 0.154505 1.184749 -2.101426 -0.576838 -0.370101 -1.267324 -0.602177 -0.354705 0.592229 -0.000952 1.116477 0.840833 -0.679718 -0.415490 -0.232077 -1.208033 0.799511 -0.520477 0.875437 0.546708 0.228131 -3.673165 1.502544 0.701616 -0.738170 -1.083403 0.830393 -0.672739 0.235986 -0.649163 -0.642847 0.333467 0.157608 0.742874 1.087631 0.613297 0.061202 0.288068 0.797111 2.489906 -0.787803 0.612885 0.481834 -0.664643 -0.628757 0.086323 0.224918 -0.010293 0.579768 0.199406 0.008546 -1.619941 -0.312111 -0.946682 -1.077404 0.854550 0.051207 -0.500285 -1.015315 -0.590238 -0.786925 -0.561235 -1.767675 1.498803 1.525308 -1.372300 0.833113 0.048929 -0.042857 0.202498 0.382589 0.337096 1.035548 0.333731 -0.055793 0.047751 -0.038714 -0.805585 0.731105 -0.281813 -0.426458 -2.199450 0.686979 -1.007051 -1.226607 0.571392 0.975185 -0.504076 -0.879359 -0.720843 0.376725 0.661867 -0.740643 -0.941825 -0.140573 0.145079 0.075209 -0.235830 -0.318273 -0.254225 -0.404454 -0.335172 -1.694840 0.629267 -0.068169 -0.069803 -0.269917 1.050112 -0.080050 -0.290819 -0.021029 0.802228 -0.822342 1.726823 -0.330050 0.926614 0.030859 0.599483 -0.515807 0.277599 0.889627 0.621062 -0.246176 -0.564849 -0.892459 0.323847 -1.156655 0.125707 0.154149 1.185902 1.428677 -0.468525 -0.971543 -0.411111 -0.724076 -1.868713 0.372790 -0.808578 -0.293124 1.030322 0.933697 0.754465 1.095529 0.919030 -1.022712 0.396091 -0.458614 -0.234167 1.290953 0.528547 0.999516 -0.716450 -0.371336 0.383978 0.129101 0.714163 0.072247 0.035594 0.369835 -1.132838 -0.228875 0.617280 0.738097 -0.196946 0.712932 1.108879 2.098591 -0.719553 0.058348 0.966948 -0.583112 -0.142997 0.433281 -1.045468 0.399074 0.450141 -0.210974 1.135321 -0.033755 -0.504105 0.227956 -0.262721 0.205612 -0.600507 -0.017284 -0.571448 -0.074257 -0.608201 0.076804 -0.843937 -0.550589 -0.686031 -0.635421 1.563065 -1.525459 -0.701768 1.527826 -0.818204 0.720949 -1.554404 2.271573 -0.923783 0.768626 -0.800681 -0.454733 -0.081609 -0.171152 -1.192580 0.531901 0.393911 -0.108053 0.014818 1.647272 0.871216 0.121928 -0.357859 1.390196 -0.421272 1.469543 -0.397316 1.423386 -0.569344 -0.021111 -0.039219 -0.170525 -0.548039 -0.431162 0.547116 1.208367 0.316894 0.755324 0.738675 0.716075 1.355774 -0.737450 1.064349 -0.282057 0.712716 -0.531442 -0.519396 0.670038 0.946484 -0.212921 0.557700 -1.697050 -1.587901 -1.700949 -0.752306 -0.182774 0.336123 0.418233 -0.380966 -0.166498 -1.127647 -0.860389 1.145876 -0.385094 0.410993 0.703506 0.202116 0.994589 1.301438 -0.412100 -0.381008 -0.096022 0.296803 0.423576 -0.107829 -1.359455 1.459400 -1.056782 0.066097 1.694536 -0.719968 0.410126 -0.105061 1.443322 -1.010177 1.474115 0.174555 -0.706747 1.159278 1.578318 0.906709 0.266310 -0.694533 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = 0.030755 -0.480498 1.775501 1.157439 -0.299968 0.104022 0.442571 -0.753126 0.726936 -0.107449 -0.306937 0.362753 -0.827519 0.307591 -0.779719 0.596256 -1.313383 -0.703520 -0.337876 -0.828649 -0.307838 -0.308581 0.538169 0.106870 0.932264 0.369386 -0.555913 -0.433870 -1.006593 -0.588685 0.542606 -0.272749 0.484767 -0.088578 -0.015416 -1.825389 0.914060 0.814705 -0.525148 -0.850298 0.815229 -0.705478 -0.024539 -0.540458 -0.195397 0.086435 0.096436 0.632970 0.718730 0.359653 0.091195 0.374420 0.271978 1.836414 -0.720606 0.572589 0.505752 -0.101413 -0.305582 0.172219 0.118365 0.005621 0.248762 0.113819 -0.111243 -1.059628 -0.282376 -0.668416 -0.540054 0.630405 -0.102715 -0.215769 -0.696376 -0.256893 -0.977618 -0.242811 -1.006935 0.935533 1.119755 -1.034167 0.650679 -0.027963 0.091705 0.048712 0.172946 0.251447 0.458975 0.246294 0.078997 -0.329817 -0.651907 0.043869 0.232307 -0.221174 -0.444578 -1.663078 0.808726 -1.191785 -1.057374 0.170087 0.600705 -0.602290 -0.100596 0.039464 0.026833 0.476820 -0.543365 -0.701039 -0.003720 0.250690 0.233879 -0.128500 0.108840 -0.258776 -0.183110 -0.482369 -1.238027 0.538033 -0.069273 -0.148111 -0.245288 0.817142 -0.160056 -0.066536 0.052836 0.569462 -0.517706 1.109007 -0.175043 0.505937 -0.085716 0.451583 -0.576574 0.198659 0.688508 0.667384 -0.605128 0.131342 -0.544471 0.193465 -0.680038 -0.147070 -0.261379 0.615050 0.437485 -0.811206 -0.692165 -0.352919 -0.440902 -1.165506 0.078400 -0.469569 -0.558076 0.344496 0.687287 0.794766 0.737256 1.179817 -0.555731 0.156823 0.048143 -0.369086 0.815171 -0.032003 0.699008 -0.546920 -0.563595 0.325039 0.002604 0.477439 -0.082269 0.344043 0.177083 -1.060130 -0.016943 0.296921 0.547046 -0.244598 0.813692 0.910803 0.365444 -0.824560 0.098552 0.690564 -0.566074 -0.088077 0.227904 -0.918790 0.377098 0.368113 0.042452 0.867359 0.106059 -0.325551 0.417776 -0.292222 0.290984 -0.589687 -0.038034 -0.507592 -0.366835 -0.583350 0.237401 -0.365784 -0.396410 -0.512816 -0.776210 1.113032 -1.076072 -0.561522 0.892988 -0.040339 0.447453 -1.210101 1.210992 -0.662868 0.818301 -0.028844 0.049416 0.044717 0.054012 -0.944537 0.213671 0.281405 -0.307985 0.405964 1.128423 0.615022 0.122585 -0.199251 1.056291 -0.494455 1.007282 -0.416960 0.817570 -0.324437 -0.703740 0.189497 -0.150733 -0.436320 -0.319049 0.504707 1.148171 0.307455 0.712981 0.732886 0.561644 1.223540 -0.507450 0.623088 -0.285147 0.565059 -0.402175 -0.439074 0.408836 0.517815 -0.118213 0.435034 -1.313423 -1.534802 -1.194281 -1.042562 0.409548 -0.655671 0.198517 -0.324919 -0.164487 -1.131400 -0.828958 0.476538 -0.327570 0.621257 0.663502 0.158187 0.688581 0.894005 -0.587361 0.103562 0.224214 0.619222 0.295391 -0.282096 -0.932604 0.934243 -0.799345 0.001989 1.357960 -0.566609 0.454338 0.020548 0.717556 -0.810192 1.248261 0.206115 -0.723921 0.904349 1.037311 0.891580 0.402366 -0.544996 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.120600 -0.182782 0.123618 0.108429 -0.038850 0.046941 -0.015737 0.082391 0.062242 -0.108214 -0.101779 0.045547 -0.164303 0.004410 0.009524 -0.063289 -0.117957 -0.153599 0.019008 0.078293 -0.027991 -0.119320 -0.059672 0.134182 -0.008529 0.242750 -0.047166 0.091548 -0.191973 0.109380 0.057351 -0.025585 0.078812 0.287037 0.116756 -0.110792 -0.027730 0.092824 0.017959 -0.193675 -0.032392 -0.113780 0.106158 -0.157680 0.006283 0.093504 0.112514 0.022994 -0.021948 -0.045695 -0.107068 -0.161203 -0.081574 0.017280 0.051573 0.055943 0.163582 -0.000406 0.053051 -0.133670 0.049618 -0.076244 0.046360 0.093873 -0.166044 0.021487 -0.053510 -0.163128 -0.076568 0.067670 -0.015813 0.109939 -0.125857 -0.152072 -0.127595 -0.037108 -0.179976 0.113218 0.203320 -0.165006 0.148985 0.084507 0.196525 0.052211 0.098918 0.042871 0.057673 0.043289 -0.103376 0.133484 -0.114368 -0.053784 -0.062436 0.002080 -0.030543 0.075100 0.048642 -0.196034 -0.102486 0.063562 -0.077311 0.063060 -0.005346 0.126029 0.009690 0.135041 -0.060387 -0.088667 0.003309 0.011319 0.044246 0.019765 0.038255 0.170587 -0.076573 -0.171976 -0.148087 -0.018907 0.068679 -0.128215 0.146905 0.141552 -0.112458 0.128016 -0.001487 -0.094211 -0.009145 0.304183 0.159992 -0.081805 -0.078464 -0.139883 -0.133690 -0.015104 0.018121 0.264649 -0.133604 -0.015925 0.107133 -0.031579 0.007870 -0.176352 -0.012427 -0.029598 0.070687 -0.113979 -0.113556 -0.179732 -0.182946 -0.190192 -0.030366 -0.082714 0.115821 0.197312 0.086806 0.215137 0.014810 0.346582 -0.112462 -0.003910 -0.039313 -0.094190 -0.048104 0.206059 0.046925 -0.053603 -0.069414 0.113499 -0.006789 0.045457 0.148122 -0.115746 0.012225 -0.090100 -0.025464 0.216400 0.110764 0.057456 0.149989 0.061455 -0.241889 -0.052457 -0.012646 -0.005424 0.065931 -0.036430 0.035629 -0.090675 0.160704 -0.035383 -0.040639 -0.043480 -0.019443 0.005721 0.060877 -0.057063 0.067420 -0.120215 0.004380 -0.053442 0.041834 -0.191599 0.142362 -0.066164 -0.062620 -0.013211 -0.022540 0.151475 -0.011708 -0.033165 -0.048723 0.162486 0.212669 -0.065791 -0.126454 -0.051241 0.353006 0.028105 -0.021737 0.029705 -0.146095 0.133114 -0.105776 0.068957 0.008908 -0.121514 -0.034701 0.049156 -0.062077 0.128991 0.074343 0.050754 0.002290 0.013760 -0.062804 0.019533 0.013456 0.138289 -0.055916 0.077616 0.093659 -0.038723 0.216231 0.158229 0.114685 0.170275 0.023702 -0.013201 -0.063034 -0.175755 0.012721 0.216680 -0.114761 -0.031309 -0.134461 0.182024 -0.021258 -0.099931 -0.088366 -0.256494 -0.096306 -0.116697 -0.127987 -0.061689 -0.046661 0.075139 0.024144 -0.006162 -0.039371 0.060038 -0.069061 0.339919 -0.066448 -0.014135 0.161042 0.095985 -0.125894 -0.150625 0.201321 0.068805 -0.072643 0.186954 -0.191583 0.044055 -0.136963 -0.004908 0.160403 -0.124659 0.028476 0.077509 0.224321 -0.089124 0.228332 0.115996 -0.221120 0.054276 0.077247 0.127462 0.116837 -0.098003 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::push_back(int const&) = 1.593463 -1.166333 8.946647 6.090056 -2.288172 0.480470 0.218929 -5.200769 3.808786 0.552082 -1.360632 1.621589 -2.347515 1.785137 -2.374203 4.329366 -7.198459 -1.993012 -2.138291 -4.974245 -2.313273 -0.977687 2.197086 -0.175750 4.352460 2.593934 -2.786249 -0.438557 -1.577702 -5.852482 1.733001 -1.333336 1.825488 -0.457182 1.056162 -8.636688 5.994516 3.347376 -2.592343 -3.502420 3.138258 -2.202842 -0.816478 -1.757429 -1.248207 1.100804 -0.341950 3.310872 3.861444 2.431192 0.775373 2.470590 2.774771 8.088335 -2.794443 2.601915 1.768350 -1.195049 -1.520422 1.262156 0.664894 0.704287 0.842898 0.343028 0.831651 -5.943292 -1.010756 -2.098337 -1.954910 3.561836 -0.429446 -2.952038 -3.358273 -2.114876 -3.793377 -1.008813 -6.668971 4.838956 4.875857 -4.417865 1.871888 0.018820 -0.401268 0.493742 1.081727 0.495148 3.973455 1.474964 0.447646 -0.785831 -0.343859 -1.853416 2.598834 -1.725572 -2.538402 -8.504877 3.098456 -6.679274 -4.661239 1.391340 4.019662 -2.944132 -1.060593 -1.509153 1.108394 0.977286 -1.756993 -2.722388 0.883214 1.108914 0.603428 -0.822961 -0.420650 -1.436518 -0.277914 0.799034 -6.082285 2.894370 -0.304665 0.531208 -0.981497 3.438950 1.156881 -1.691278 -0.279184 2.927979 -2.421699 4.763696 -1.951497 3.919907 -1.237998 4.143481 -1.158231 2.913908 3.251807 -1.515583 -1.722372 -0.034859 -2.881736 1.430170 -4.268799 1.116858 -2.435219 3.617732 3.047264 -2.270710 -3.668084 -1.145722 -3.331212 -5.458789 0.972683 -2.223423 -4.251154 1.160877 3.195630 3.236203 3.802675 2.138866 -3.008873 -0.048528 -0.477222 -0.221128 4.512918 -0.662851 3.185596 -2.539516 -1.822817 1.873150 0.183421 1.971576 -0.250374 0.957592 1.266634 -4.232468 0.288521 2.480283 2.362800 -0.684439 3.244188 4.325834 5.123552 -2.174193 0.391694 3.615740 -2.717778 -0.487702 1.107905 -3.792534 1.119362 1.870916 2.162810 4.863802 0.214207 -0.504185 0.940656 -0.696033 1.153630 -2.212539 -0.377839 -2.066297 -0.891948 -1.520342 1.149230 -2.183803 -1.091180 -2.382988 -3.686429 5.059603 -6.393221 -2.460428 6.357650 -2.706076 2.097673 -4.451757 5.736010 -3.041827 2.607503 -0.585878 -0.060605 0.095510 -1.275160 -5.450257 2.241607 1.306902 -0.694965 1.072348 4.987766 2.733828 0.657312 -1.719648 4.643005 -3.161462 5.576174 -2.032311 4.997238 -1.736454 -1.479398 -0.582018 -0.487461 -3.179676 -2.493532 2.344905 3.668636 0.093039 3.076405 2.129731 2.029825 5.558533 -2.675757 4.637244 -1.323560 0.547901 -2.243762 -2.326344 3.250180 1.906186 -0.828987 2.035911 -6.150291 -5.113319 -7.603831 -3.034502 0.621765 -1.746883 1.738177 -2.057982 -1.489706 -3.639362 -4.159517 5.447941 -0.848046 0.315766 3.270357 0.758701 2.777601 4.447259 -1.292762 0.760196 -1.284584 1.315412 1.950744 -1.643839 -4.240785 5.560253 -2.686957 -0.191529 6.411920 -2.672693 2.318336 -0.182711 2.625331 -3.586745 4.195495 0.398582 -2.351956 3.448009 5.341713 3.253245 1.041452 -2.622585 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.454650 -1.415683 10.976578 7.255382 -3.804405 0.502429 -0.134304 -6.096897 4.514725 -0.756527 -2.126724 1.616095 -2.715706 2.150751 -3.379919 4.586684 -9.730788 -2.266901 -2.670288 -5.951044 -2.654838 -1.081067 2.249859 0.236066 5.019292 4.105398 -2.994607 -0.145625 -1.410499 -5.544933 2.683105 -1.665808 1.969327 0.319550 1.764972 -10.836451 7.062670 3.725023 -3.131663 -4.372030 3.567404 -3.013502 -1.119229 -3.084151 -2.172824 0.984731 -0.479461 5.362917 4.278175 2.278790 -0.438924 2.918503 3.109540 10.547407 -3.114105 2.910838 2.360055 -1.338953 -1.541212 1.363771 0.843809 0.950307 0.642134 0.313755 1.130949 -7.186633 -1.302000 -3.136528 -1.757502 4.399982 -0.343523 -3.023099 -4.151539 -2.594822 -5.473251 -1.058392 -9.272228 6.882896 5.891541 -6.045330 1.969058 0.106010 -0.267667 0.971719 1.292389 0.866243 5.196173 1.878881 0.842668 -0.639781 -1.080469 -2.405251 3.415476 -3.988703 -3.184524 -11.911763 3.691466 -9.510895 -5.388325 1.558363 4.887567 -3.856877 0.255160 -2.085120 1.276940 1.001942 -2.240618 -2.888739 1.490080 1.450741 0.812503 -0.662011 0.059471 -0.542774 0.293062 0.356621 -7.459761 3.878942 -0.319011 1.035126 0.110516 4.322404 1.560148 -2.280046 -0.321569 3.133897 -2.942893 6.390570 -2.349293 4.195099 -1.934927 5.250187 -0.123590 4.267122 3.930486 -1.573625 -1.994102 -0.005271 -2.916643 1.949661 -5.144676 0.515531 -2.961662 3.751728 2.258839 -2.956727 -4.310566 -1.869561 -4.771743 -6.606567 0.709044 -2.577229 -5.764386 2.412922 3.897589 5.200979 4.610201 1.907626 -3.710278 -0.278202 -0.764968 -0.022601 5.140072 -0.420958 3.615145 -2.912101 -2.018237 2.166956 -0.615294 2.919707 -0.318926 0.918422 1.416262 -5.102035 0.574570 3.252268 3.549825 -0.663687 4.304610 5.583613 4.061064 -2.818215 0.540315 4.372359 -3.580682 -0.774712 1.548701 -4.427533 1.596667 2.331238 2.659634 5.359664 0.116670 0.037194 0.992298 -0.838801 1.322299 -2.515193 -1.312741 -2.311772 -1.577516 -2.207469 2.501725 -2.823775 -1.277395 -3.255649 -5.235043 6.070013 -9.243079 -2.429947 7.846749 -3.052032 3.185360 -4.757670 6.318627 -3.651929 3.976637 0.106372 -0.053933 0.223424 -2.543436 -6.797930 2.544456 1.575578 -0.883807 0.722679 5.344161 3.495144 0.765880 -1.826024 5.834008 -4.185477 6.854226 -2.718956 5.573084 -2.148272 -2.052982 -0.470756 -0.566989 -3.962162 -2.864223 3.707194 5.214511 -0.186018 4.966719 3.142705 2.507839 6.464460 -3.113860 4.872305 -2.046053 0.273299 -2.907062 -2.798664 3.737025 2.544369 -1.054147 2.086506 -7.591416 -6.886629 -11.035045 -2.774761 0.726734 -3.519629 1.897612 -2.469416 -1.708517 -4.401678 -5.165743 6.194460 -1.260434 -0.425833 4.075363 0.688412 3.473183 5.442921 -1.783181 0.887254 -0.393070 2.205146 2.470287 -1.328393 -6.104753 6.999043 -3.467096 -0.335680 8.607335 -3.500144 2.988309 0.005216 3.664833 -4.310487 5.109443 0.695070 -3.822570 3.524320 7.084516 3.080384 2.473430 -3.327407 -PE-benchmarks/aho-corasick-algorithm.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::size() const = 0.529537 -0.209094 1.822897 1.211108 -0.646151 0.072147 -0.161702 -0.998133 0.734940 -0.067615 -0.431919 0.276326 -0.355492 0.352911 -0.603589 0.833457 -1.538249 -0.275203 -0.437378 -0.967629 -0.492000 -0.104607 0.273583 -0.048828 0.836137 0.859317 -0.425506 0.121098 -0.101518 -1.061425 0.243104 -0.229972 0.173298 0.092486 0.435287 -1.274429 1.160046 0.641950 -0.511691 -0.716766 0.506598 -0.392648 -0.166062 -0.431208 -0.143459 0.267408 -0.050281 0.935811 0.653055 0.497173 -0.023421 0.419421 0.655512 1.531542 -0.348153 0.495476 0.463582 -0.156952 -0.142828 0.229046 0.157114 0.124184 -0.067458 -0.055624 0.283384 -1.164925 -0.354162 -0.464640 -0.040132 0.665927 -0.166959 -0.630720 -0.756648 -0.649770 -0.803376 -0.160377 -2.438466 1.090704 0.900966 -1.078516 0.237614 0.118913 -0.009151 0.227806 0.228157 0.110872 0.779000 0.359099 0.142295 0.122020 0.158236 -0.457427 0.650011 -0.827789 -0.643900 -2.016666 0.649211 -1.666810 -0.876218 0.351494 0.838186 -0.606186 0.339365 -0.242117 0.088199 0.090434 -0.396198 -0.375425 0.469572 0.171716 0.279217 -0.063339 -0.002909 -0.016655 0.112973 0.312029 -1.254428 0.722625 -0.014612 0.228627 0.161386 0.685494 0.544360 -0.382898 -0.110532 0.411677 -0.436043 1.203171 -0.300620 0.746236 -0.629340 1.099138 -0.107606 1.077274 0.709741 -0.737863 -0.374961 0.194662 -0.361451 0.293120 -0.810412 0.180999 -0.686302 0.578224 0.359860 -0.450580 -0.763239 -0.351013 -1.063399 -0.993448 0.175563 -0.345897 -1.038863 0.247389 0.599493 0.951946 0.719291 0.160395 -0.612606 -0.379631 -0.182077 0.064067 0.757640 0.020186 0.586801 -0.469885 -0.239995 0.421968 -0.043178 0.365255 0.098160 0.129357 0.322407 -0.788614 0.422419 0.731365 0.598639 -0.216344 0.775400 0.926626 0.473832 -0.126196 -0.039382 0.661898 -0.573146 -0.157789 0.275049 -0.664815 0.305278 0.345357 0.683703 0.767627 0.048382 0.322153 0.171587 -0.221491 0.229339 -0.348640 -0.261531 -0.346049 -0.333056 -0.273313 0.740687 -0.458281 -0.115260 -0.424984 -0.862562 0.949086 -1.535304 -0.046376 1.207601 -0.459033 0.427140 -0.350326 0.952714 -0.569178 0.686947 0.163378 0.008757 0.091322 -0.544810 -1.014818 0.318805 0.254698 -0.027227 -0.064056 0.671516 0.534657 0.002450 -0.247011 0.931551 -0.885395 1.141046 -0.374792 0.853723 -0.339486 -0.215016 -0.057439 -0.050315 -0.773448 -0.528443 0.527837 0.911233 -0.213618 0.799046 0.378516 0.197320 1.033284 -0.555100 0.812456 -0.305627 -0.011900 -0.613372 -0.513557 0.642952 0.383887 -0.133466 0.160493 -1.199504 -0.919205 -1.920908 -0.138935 0.020580 -0.609694 0.284374 -0.441915 -0.374615 -0.437914 -0.951445 1.366297 -0.214224 -0.456695 0.578171 0.085719 0.577656 0.846698 -0.128479 0.205932 -0.191891 0.274467 0.493765 -0.128065 -0.903547 1.174088 -0.512702 -0.230575 1.390841 -0.589137 0.510320 0.181272 0.515788 -0.688259 0.644713 0.040569 -0.609528 0.508119 1.386978 0.528995 0.326774 -0.541702 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::max_size() const = -0.060684 -0.242359 0.738344 0.473410 -0.178748 0.088897 0.126817 -0.321186 0.369198 -0.274256 -0.171404 0.073556 -0.459349 0.123200 -0.406863 0.083453 -0.625894 -0.380420 -0.189902 -0.345308 -0.128666 -0.227405 0.176959 0.144704 0.316640 0.303078 -0.238947 -0.035086 -0.596292 0.013104 0.351697 -0.094790 0.201794 0.176148 0.063672 -0.713797 0.341946 0.382169 -0.206700 -0.399274 0.304938 -0.458476 0.039302 -0.379317 -0.068254 0.042176 0.000734 0.287233 0.307270 -0.017211 -0.057894 0.096085 -0.107515 0.716243 -0.362575 0.256861 0.235149 0.005446 -0.100967 0.050295 0.023278 0.035807 0.118039 0.114434 -0.241600 -0.418390 -0.080330 -0.390590 -0.244398 0.348045 -0.064056 -0.017954 -0.330669 -0.177352 -0.578461 -0.123543 -0.408217 0.450285 0.527992 -0.508423 0.293008 -0.014256 0.145100 0.060108 0.182029 0.113102 0.321353 0.079209 -0.014665 -0.075723 -0.490448 0.073347 0.044521 -0.152517 -0.193512 -0.614260 0.328009 -0.760649 -0.497402 0.018822 0.194140 -0.230525 -0.028037 0.159540 0.016704 0.195511 -0.224275 -0.346867 0.068977 0.202233 0.094793 -0.001713 0.109226 -0.010719 -0.077981 -0.424329 -0.578562 0.230950 -0.022720 -0.078573 -0.009787 0.470348 -0.206172 -0.033630 0.054699 0.156716 -0.240070 0.624346 -0.096176 0.084333 -0.126197 0.080099 -0.256649 0.042721 0.241949 0.506301 -0.337329 0.066271 -0.145990 0.037160 -0.352782 -0.254709 -0.168892 0.144100 0.056562 -0.454643 -0.277190 -0.193253 -0.297079 -0.626540 -0.041567 -0.204594 -0.247011 0.218702 0.332766 0.606711 0.329979 0.695463 -0.242018 0.033708 0.022110 -0.231211 0.344356 0.088992 0.320809 -0.251966 -0.297114 0.184381 -0.146712 0.230244 0.027888 0.106105 0.005935 -0.523612 -0.021698 0.213460 0.298594 0.010915 0.466968 0.457555 -0.243660 -0.488252 0.140517 0.302320 -0.212625 -0.030297 0.095383 -0.383972 0.231915 0.187030 -0.019886 0.325502 0.011574 -0.100667 0.117421 -0.117338 0.237562 -0.362005 -0.103781 -0.225858 -0.137550 -0.417555 0.200526 -0.167970 -0.236487 -0.239024 -0.437898 0.501104 -0.467446 -0.287645 0.422769 0.149372 0.394976 -0.507123 0.202474 -0.298674 0.628024 0.052930 0.090355 0.033682 -0.092606 -0.352575 0.075007 0.127525 -0.170538 0.130975 0.400044 0.301585 0.082713 -0.020822 0.487685 -0.190761 0.402567 -0.232008 0.300013 -0.102341 -0.351550 0.243550 -0.121579 -0.155961 -0.069598 0.254705 0.662049 0.292981 0.463669 0.428226 0.268874 0.488104 -0.196685 0.090288 -0.133170 0.223405 -0.196628 -0.202545 0.122736 0.283344 -0.053669 0.058721 -0.587946 -0.866147 -0.559959 -0.534622 0.213216 -0.473272 -0.009089 -0.024896 -0.032317 -0.501191 -0.342402 0.147103 -0.203145 0.599699 0.179757 0.061677 0.337362 0.485783 -0.406493 0.010441 0.342607 0.353623 0.050380 0.006126 -0.598789 0.485440 -0.369439 0.020184 0.682153 -0.327425 0.228461 0.057206 0.410018 -0.380010 0.622980 0.146052 -0.435875 0.412282 0.428403 0.407147 0.414338 -0.266229 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.687100 -1.333181 4.115750 2.850164 -0.762845 0.797575 -0.084913 -1.509203 0.857765 0.687100 -0.817709 1.641246 -1.186674 0.436554 -0.699167 1.232205 -2.774156 -0.871077 -0.815565 -1.378721 -0.743432 -0.556011 -0.309291 1.402620 1.785095 1.171675 -1.203870 0.446523 -1.519690 -2.916148 -0.467844 -0.265004 0.843305 -0.731019 1.623815 -2.779829 2.459511 2.171303 -0.432769 -2.295226 1.025120 -0.611915 -0.298070 -0.425159 -0.596368 1.038497 0.751075 1.355669 1.073475 1.153828 -0.565106 0.413740 1.744727 2.948743 0.067788 1.475827 1.749105 -0.660641 0.397878 -0.136631 0.034904 -0.580030 -0.040139 -0.318879 0.258251 -1.964581 -0.261394 -0.250838 -0.164266 1.114030 0.178326 -1.497351 -1.560662 -1.511049 -2.412743 -0.180612 -2.408444 2.039329 2.328397 -1.780996 1.345707 0.426945 0.355442 0.876876 1.133632 0.222043 1.366177 0.816405 -0.271016 0.368401 -0.532612 -1.018671 0.739885 -0.581817 -1.579425 -3.375763 1.180968 -3.718048 -2.098631 1.282041 0.885328 -1.667356 0.126625 -0.922914 0.424753 0.660353 -0.711849 -1.187857 0.373568 0.952030 0.217355 -0.399598 0.411568 -0.173114 0.122275 0.577504 -2.393495 1.491416 0.849258 0.051435 -0.072880 1.891397 0.705318 0.504542 -0.196998 1.035224 -0.719930 1.924316 0.403619 1.396100 -1.312652 1.024098 -0.479271 1.275925 0.925541 -1.470894 -1.100222 0.115073 -0.402494 0.911177 -0.630510 1.123441 -1.269881 1.872918 0.723562 -0.809262 -1.572977 -1.388747 -2.291232 -1.549182 0.235827 -0.445087 -2.532989 0.705784 1.296627 0.885676 0.755322 0.574968 -0.995944 -0.577809 -0.179764 -0.158338 1.062441 -0.726065 0.946966 -1.225177 -0.806734 1.256529 0.557164 1.086629 0.200511 0.067597 0.949773 -1.055814 0.499406 1.262697 1.023800 -0.166914 2.188665 2.093128 2.008510 0.076360 -0.643169 0.827260 -1.354201 -0.330717 0.251311 -1.541786 0.577253 0.784319 0.975961 2.565513 -0.032453 -0.107909 1.411004 -0.201443 0.424500 -1.075714 0.455176 -1.067239 -0.265313 -0.533638 0.417351 -1.115937 -0.318010 -1.718530 -1.635981 2.498507 -2.991981 -1.095677 1.820634 -0.567283 1.131127 -1.819960 2.157216 -1.071289 1.758345 0.848883 -0.116730 0.413734 -0.718564 -1.757260 0.637299 0.703116 -0.591412 0.331819 1.130957 0.849057 -0.223651 -0.279462 1.540083 -1.400314 1.666176 -1.103637 1.267875 -0.803563 -0.137528 -0.603465 -0.128461 -0.885601 -0.504726 0.508646 0.240983 -0.358538 1.029104 0.355786 1.189602 1.373166 -0.844128 1.237613 -0.873323 0.594496 -1.651150 -1.220284 0.489885 1.267004 0.430916 0.770658 -2.982127 -1.639880 -3.653346 -1.223366 -0.383264 -0.356677 0.572772 -0.253444 -0.908294 -1.548041 -2.124440 3.189071 0.002945 -0.084189 1.658733 0.224740 1.577514 1.405287 0.221884 0.036758 -0.434533 0.490284 0.524618 -0.202437 -1.509196 1.983123 -1.553910 0.151251 2.856849 -1.289956 1.467838 -0.131472 0.522219 -2.200588 1.957835 0.582652 -1.920497 0.488620 2.736595 1.337992 -0.674137 -1.316162 -PE-benchmarks/aho-corasick-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.270414 -2.492304 5.492200 3.919477 -0.739328 1.947948 -0.280389 -1.371749 -0.351708 1.005609 -0.326199 3.064427 -1.735976 0.274850 -0.364393 0.640762 -2.845681 -0.892202 -1.393972 -1.555931 -0.210261 -0.451997 -1.300817 3.543338 2.041207 0.801199 -1.866872 0.472538 -3.408384 -3.724195 -0.930377 0.085516 2.030322 -1.817752 2.267362 -4.924084 3.036481 3.799113 -0.123159 -3.391007 1.686860 -0.546455 -0.257637 -0.040312 -2.386447 1.453072 1.054403 -0.839224 0.927469 1.189885 -1.282809 0.796531 2.863811 3.592288 0.605083 2.123586 2.465114 -1.463164 1.119433 -1.042478 -0.665172 -0.882054 0.163109 -1.244172 0.197390 -2.542012 -0.075574 0.417342 -0.620458 0.597071 0.210263 -2.064551 -1.249330 -1.755146 -4.055402 -0.370797 1.177272 2.091026 2.601555 -1.478752 2.353829 -0.097677 -0.286667 1.699053 2.215955 0.867082 0.628887 1.045250 -0.094854 0.983918 -0.476897 -0.197746 0.709198 1.096563 -2.662111 -3.360836 1.701377 -4.090260 -2.362268 2.368645 0.472565 -2.837004 -0.865463 -2.696310 -0.220939 1.547977 -1.370649 -1.703568 -0.183510 2.491931 0.893920 -0.896467 0.519391 -0.461321 0.158420 -0.255113 -2.142452 2.543340 1.776576 0.171068 -0.741694 2.968920 0.442754 1.220095 -0.272284 2.013411 -1.695356 2.010133 0.802848 1.540229 -2.392128 -0.079906 -0.338291 -0.663464 0.616492 -0.961008 -1.856464 -1.250222 -0.833497 1.247885 0.663889 2.081632 -0.404553 2.533658 1.444206 -0.306949 -1.163670 -2.029497 -2.757639 -2.249928 -0.763292 -0.118414 -3.321985 2.662568 1.507021 -0.234322 0.477371 1.090580 -0.295606 -0.546810 -0.211995 -1.534328 1.226448 -1.671017 0.672344 -1.601799 -1.504936 1.780503 0.586853 2.429697 0.328300 0.529323 1.169685 -0.192367 0.568189 1.239828 1.382219 0.107379 3.204284 3.192393 3.669743 0.844878 -1.528389 0.329306 -2.729305 -0.136733 -0.275087 -1.621475 -0.300826 1.651268 -1.183562 4.354541 -0.436757 -1.014207 2.816210 -0.258532 0.627407 -1.709536 2.113359 -1.621499 0.397086 -0.951289 -2.126184 -1.435130 -0.655559 -3.537486 -2.563011 3.624441 -4.633870 -1.990763 1.300292 0.538948 1.024685 -3.525090 2.695036 -1.241336 3.052654 1.566470 -0.374147 0.548235 -0.000484 -2.319554 0.891930 0.928660 -1.942865 0.651274 1.796833 0.985751 -1.003151 -0.745510 1.800451 -1.287774 1.667217 -2.144040 1.414352 -1.214284 0.133882 -0.802654 -0.123683 -0.935020 -0.605358 0.425790 -1.650356 -0.554416 1.051408 -0.777334 2.643606 1.134406 -0.232511 0.915563 -1.526557 1.062591 -1.942945 -1.623991 0.025514 3.153215 1.979484 1.014465 -4.205849 -1.931514 -4.651596 -2.245134 -0.002785 1.078437 0.245703 0.589006 -1.279917 -2.882923 -2.940087 4.047807 -0.094994 1.643384 2.533714 0.487861 2.242648 1.378890 0.626897 -0.201875 -0.345836 0.972182 0.709133 0.369758 -1.803479 2.371254 -2.185718 0.401491 3.535167 -1.403199 2.684379 0.092447 -0.218578 -3.426389 3.342661 0.910205 -2.861190 0.668372 3.044488 0.807429 -1.851566 -1.416275 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.086689 -0.647507 2.610509 1.578740 -0.225793 0.001111 1.312915 -1.082872 1.328305 0.393354 -0.372993 -0.093612 -1.503861 0.259452 -0.861198 0.937035 -1.724315 -1.107209 -0.453712 -1.289787 -0.149468 -0.778609 1.438791 -0.234092 1.514665 0.010542 -0.609245 -1.193247 -1.234959 -0.991098 1.312925 -0.535678 0.926281 -0.052301 -0.564223 -2.862488 1.394007 0.995645 -0.826998 -1.007163 1.336312 -0.592013 -0.148495 -0.348486 -0.278978 0.129648 0.151506 1.049469 1.264107 0.722008 0.660603 0.021980 0.450012 2.680206 -1.464821 0.655209 0.258997 -0.250190 -0.510098 0.566569 0.126469 0.039738 0.419421 0.619069 0.178204 -1.359061 -0.008934 -1.040678 -1.522449 1.180333 -0.350791 -0.098214 -0.889728 -0.000545 -0.840653 -0.140725 -0.889062 1.267012 1.820006 -1.097327 1.180104 -0.030490 -0.148989 -0.455307 -0.580634 0.368062 0.166858 0.176264 0.165357 -0.996523 -1.037554 0.015351 0.164341 -0.034504 -0.290756 -2.005141 1.385408 -0.649137 -1.328890 -0.017550 0.945323 -0.863969 -0.445339 0.294100 -0.100414 0.791616 -0.633957 -1.139923 -0.417509 0.208429 0.147735 0.067479 0.013053 -0.437711 -0.647801 -0.803310 -1.571552 0.372769 -0.650770 -0.577521 -0.654295 0.890407 -0.622544 -0.013246 0.459649 1.183387 -0.655600 1.232802 -0.076379 1.037082 0.747277 0.526115 -0.929387 -0.344570 1.193870 1.690944 -0.242083 0.080028 -1.041391 0.234352 -1.094254 -0.164546 0.084454 0.619131 1.040081 -1.474504 -0.855250 -0.062734 -0.024650 -1.773352 0.214483 -0.966431 -0.277397 0.472826 0.929542 0.882936 1.093885 2.329733 -1.339441 0.620566 0.005216 -0.849311 0.880748 0.073054 1.030873 -0.628320 -0.831921 -0.079191 0.203713 0.649731 -0.387372 0.323227 0.028206 -1.811907 -0.174082 0.108591 0.434320 -0.734435 0.491422 1.271746 0.981938 -1.474437 0.257426 1.400861 -0.610681 -0.285917 0.637016 -1.727356 0.672079 0.334287 -0.248262 0.925902 0.199351 -0.594231 0.774018 -0.917396 0.107667 -0.915752 -0.037993 -0.740039 -0.358081 -1.013495 0.018815 -0.530588 -0.738860 -0.320790 -0.410572 1.382849 -0.751903 -0.942752 1.351687 -0.045474 0.136879 -1.884571 2.558229 -0.848033 0.588499 -0.405875 -0.051473 -0.185807 0.583253 -1.118063 -0.109261 0.110100 -0.205476 1.199856 2.298894 0.923745 0.059730 -0.309546 1.801217 -0.526532 1.443661 -0.599567 1.034372 -0.453735 -1.256609 0.190268 -0.257110 -0.528353 -0.635214 0.573640 1.792964 0.836681 0.535215 1.438525 0.605920 1.944063 -0.430369 1.198213 -0.069651 1.233864 -0.270384 -0.395205 0.840708 0.674742 -0.751822 1.144493 -1.850905 -2.427452 -0.789906 -1.922144 0.380666 -1.030005 0.606236 -0.581594 0.000596 -1.791398 -1.097024 0.055981 -0.353525 0.929429 0.902369 0.156287 0.806734 1.420378 -1.026691 0.222442 0.338099 1.156175 0.289927 -0.822662 -1.002338 1.140718 -1.283239 -0.024373 1.783904 -0.778236 0.407338 -0.484731 1.120232 -1.470391 1.927999 0.362799 -0.471461 1.804272 0.874430 1.524386 0.768842 -0.590012 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.338556 -4.536883 26.586276 17.159617 -8.708451 2.716481 -3.130747 -13.087518 7.451423 1.442992 -5.596294 8.204085 -4.155023 3.620909 -5.691419 10.084986 -21.324185 -3.690660 -5.697174 -12.591882 -7.644485 -1.627259 -0.048165 4.567974 11.403725 11.271962 -7.853982 2.987992 -2.536955 -18.917483 -0.814387 -2.051325 4.024866 -2.334977 9.148279 -22.563598 16.305350 10.839745 -5.037503 -11.792979 6.809340 -3.752655 -2.786025 -3.034249 -5.549208 4.571935 1.134306 10.599316 7.784025 6.416506 -1.846675 5.860105 10.668266 22.334939 -0.818689 7.981788 8.364028 -4.412505 -1.257057 1.071400 1.968979 -1.093132 0.130830 -1.879701 3.423886 -15.409959 -1.983598 -3.220137 -0.517943 8.642903 1.108106 -11.983405 -8.716854 -10.299210 -12.768467 -2.504670 -19.638145 14.474243 12.724299 -12.335527 5.031222 1.888280 0.483494 4.343463 5.538077 0.297868 12.980576 5.024325 0.886034 1.245980 1.327225 -7.265708 7.967244 -6.148201 -9.866757 -25.513586 7.926075 -25.300350 -13.352062 6.595397 10.523411 -10.314328 0.614734 -6.382496 4.074621 1.507042 -3.948307 -5.676998 3.296124 4.782708 0.111047 -2.040295 -0.395992 -1.061068 1.972213 6.954831 -16.541780 11.073491 3.135520 3.856871 0.203468 10.682112 7.332650 -2.074203 -1.608153 7.187677 -5.237028 13.170815 -2.035682 9.594563 -9.908440 12.522647 1.083003 11.647858 6.747689 -13.257270 -6.084744 -2.036161 -4.198072 5.704915 -8.466486 5.959194 -10.630873 12.107356 6.860416 -3.907856 -11.060390 -7.149859 -15.624023 -13.040358 1.374624 -3.749479 -17.287041 4.263286 7.931854 9.111141 7.112621 -0.881298 -6.904892 -2.775274 -1.330092 0.854205 9.387742 -3.471361 7.239948 -7.774388 -3.673300 6.688530 1.183567 7.562555 0.029140 1.132386 5.002520 -7.888533 2.211541 9.843432 8.217024 1.023622 11.372452 13.747039 16.988751 -1.614533 -2.588237 6.907898 -8.910855 -2.838812 2.714453 -8.935917 2.037935 5.589963 8.735540 16.513821 0.071677 1.999379 4.303598 -0.362677 2.787410 -5.949406 0.479159 -5.601506 -1.545048 -1.889166 4.076054 -8.440880 -0.145278 -10.309747 -13.694710 15.256686 -24.263056 -6.762413 17.411971 -7.811660 8.191970 -9.940824 12.802306 -7.019212 9.917750 1.828377 -0.885203 1.182351 -8.481576 -14.269020 7.931082 3.545491 -1.957987 -0.262540 9.302623 6.320953 0.862588 -4.238934 10.969648 -10.713558 14.710464 -6.564916 11.915952 -5.023815 -1.438573 -4.185858 -0.101166 -9.613189 -4.914314 6.147875 4.724700 -3.292646 8.889076 2.408122 6.064299 11.401232 -7.432165 10.926034 -5.016424 0.063014 -8.974905 -8.638329 7.176456 7.371374 0.124432 3.042391 -18.369738 -10.508002 -28.109574 -5.949597 -1.668561 -4.243458 4.626258 -4.244512 -6.536213 -7.356530 -13.023370 22.872831 -0.219939 -1.436206 9.865763 1.450551 9.594424 10.884810 0.244626 2.138487 -4.304434 1.758751 5.433775 -2.505717 -12.297465 15.515759 -7.019535 0.329170 19.291196 -8.273183 9.014805 0.720715 4.336142 -11.785070 9.972223 1.568223 -10.936488 3.512009 17.016970 6.569489 -1.424153 -8.623706 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy(int**, int**, int**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__miter_base(int**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.090136 -0.251670 0.665673 0.509658 0.030368 0.003709 0.406774 -0.220953 0.393630 0.224799 -0.085117 0.051449 -0.526169 0.141520 -0.091674 0.418338 -0.389413 -0.362875 -0.024780 -0.260554 -0.019499 -0.227089 0.454230 -0.126570 0.449235 0.018739 -0.174298 -0.425321 -0.459830 -0.245494 0.303470 -0.225265 0.310698 0.148860 -0.197899 -0.634567 0.340936 0.279286 -0.250621 -0.337564 0.396248 -0.287569 0.157239 -0.177316 0.109437 0.119384 0.123878 0.157670 0.411341 0.270522 0.267063 -0.039133 0.171094 0.542531 -0.479266 0.204592 0.074611 -0.078613 -0.182684 0.042665 0.061485 -0.014832 0.228665 0.179459 -0.107183 -0.424211 -0.220957 -0.330541 -0.491794 0.224334 -0.142919 0.123854 -0.429369 0.001636 -0.083077 -0.117905 -0.628931 0.307190 0.553311 -0.351609 0.393308 0.037424 0.013887 -0.147983 -0.043617 0.154007 -0.034152 0.055977 -0.052087 -0.169700 -0.212985 -0.014736 0.040242 0.084683 -0.032071 -0.364753 0.314037 0.103628 -0.423856 0.045942 0.198794 -0.097383 -0.190366 0.186357 -0.055215 0.368510 -0.276164 -0.421905 -0.053280 -0.064633 0.185791 -0.082095 -0.070826 -0.247038 -0.306672 -0.338632 -0.474719 0.010064 -0.169481 -0.302778 -0.189358 0.258555 -0.203777 0.043781 0.082727 0.258205 -0.199669 0.500601 0.038458 0.323210 0.286877 0.011251 -0.517531 -0.019947 0.389141 0.605772 -0.158639 0.137678 -0.352380 -0.029987 -0.284802 -0.104762 0.191893 0.266888 0.454954 -0.412470 -0.253271 -0.019003 0.042675 -0.509921 0.203803 -0.292160 0.251304 0.067860 0.292811 0.122047 0.393683 0.828355 -0.375705 0.130263 -0.028233 -0.211477 0.401908 0.255345 0.359787 -0.205479 -0.222717 0.073626 0.184323 0.031030 0.001289 0.143422 0.075074 -0.523005 0.040653 0.060764 0.099196 -0.275451 0.247786 0.222770 0.258208 -0.242693 0.074452 0.375127 -0.067884 -0.009206 0.143136 -0.496985 0.304870 0.051757 -0.136330 0.141528 0.055647 -0.252559 0.231491 -0.270406 0.090184 -0.272898 0.065583 -0.244234 -0.121551 -0.319621 0.072010 -0.074318 -0.322790 0.023237 0.109857 0.438939 0.099692 -0.104332 0.166440 -0.019879 0.001865 -0.498017 0.860477 -0.327613 0.124048 -0.237316 -0.065795 -0.015801 0.277561 -0.212674 -0.161406 0.135561 0.009106 0.256635 0.584540 0.280899 -0.068298 0.008200 0.471930 -0.014410 0.385079 -0.024315 0.342052 -0.098241 -0.153118 0.185040 -0.090391 -0.068971 -0.119351 0.007251 0.653107 0.287352 0.087608 0.406324 0.096045 0.579572 -0.201829 0.337433 -0.024723 0.499995 -0.085994 -0.081923 0.135821 0.181627 -0.144023 0.312688 -0.487224 -0.669958 0.110557 -0.427497 0.088505 -0.041319 0.144091 -0.118808 0.065925 -0.488332 -0.265606 -0.066094 -0.179108 0.277336 0.137182 0.049564 0.258432 0.356617 -0.267894 -0.103436 0.011339 0.244812 0.099444 -0.125328 -0.209650 0.255859 -0.439878 -0.039791 0.401399 -0.230304 -0.014202 -0.123677 0.477346 -0.328178 0.600661 0.101073 -0.072982 0.662805 0.346434 0.539656 0.107546 -0.171658 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_base(int**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -0.622467 -1.705876 3.777121 2.486801 0.064591 0.961322 0.695170 -1.112612 0.916424 0.860358 -0.815065 1.736122 -1.786196 0.237628 -0.771812 0.653714 -2.235442 -1.724952 -0.346149 -1.027496 -0.392434 -1.193756 -0.062740 1.678770 1.651829 0.437597 -1.424815 -0.073625 -3.103438 -2.810522 -0.166165 -0.470268 1.334984 -0.619793 1.005101 -3.291133 2.034901 2.305907 -0.269789 -2.428241 1.317262 -1.189370 -0.031603 -0.179539 -0.336916 1.219371 1.187866 0.401359 1.332629 0.874659 -0.020105 -0.112376 0.730395 2.364497 -0.545095 1.524915 1.413691 -0.910918 0.162830 -0.202551 -0.119884 -1.034690 0.748894 0.409782 -0.803500 -1.567183 0.263949 -0.297684 -1.203332 1.262377 0.195103 -0.874899 -1.305197 -0.786945 -2.549557 -0.357780 0.961068 1.422482 2.780427 -0.926030 2.252926 0.192578 0.916339 0.260262 1.274979 0.271211 1.349203 0.497021 -0.857141 -0.469486 -1.855459 -0.431700 -0.300132 1.408348 -0.882349 -1.139742 1.071246 -3.289929 -2.291620 0.870394 0.229192 -1.367075 -1.385804 0.028844 0.816538 1.206176 -0.526771 -1.896005 -0.417505 1.105791 -0.520379 -0.424686 0.454993 -0.949533 -0.652463 -0.350429 -2.104668 0.813573 0.770546 -0.701903 -1.034399 2.179354 -0.433738 1.052045 0.203532 1.350312 -0.659110 1.481365 0.494894 0.967568 -0.332784 -0.476272 -1.865184 -0.359253 0.605855 0.412307 -1.612385 -0.420166 -0.566911 0.617676 -0.688463 0.443203 -1.018806 2.115518 1.671316 -1.430428 -1.485426 -1.247709 -0.974398 -1.886242 0.032224 -0.683662 -1.687114 0.325095 1.461593 0.473889 0.829413 2.337032 -0.875532 0.468428 0.141192 -0.865887 1.210760 -0.929686 1.221171 -1.430355 -1.138847 1.177621 0.813616 1.096884 -0.011167 0.036690 0.626844 -1.504854 -0.632169 1.139065 0.871423 0.572992 2.121456 1.930648 2.206367 -1.268761 -0.349062 0.902082 -0.976052 -0.364740 0.247749 -1.835362 0.889975 0.826966 0.200011 2.755694 0.023618 -1.202534 1.470226 0.011652 0.679964 -1.772114 0.855721 -1.346953 0.374203 -0.870820 -1.025434 -1.160376 -0.877807 -1.716531 -1.382390 2.610670 -1.418115 -2.594963 1.524900 -0.479012 1.516407 -3.591229 1.497441 -1.342114 1.870972 0.103357 0.166684 0.042436 0.222355 -1.307355 0.782195 0.703370 -1.039389 1.580683 1.754152 1.005028 0.244822 -0.159543 1.621771 -0.426970 1.124090 -0.937192 0.991017 -0.662565 -0.448485 -0.219830 -0.373188 -0.255790 0.248702 0.205101 0.183801 0.916189 0.374336 0.993536 2.009358 1.373508 -0.668086 0.749651 -0.876626 1.598736 -1.214043 -1.362007 -0.002130 1.352456 0.368602 0.906421 -3.129151 -2.583584 -2.095688 -3.293060 -0.037688 -0.261516 0.506499 0.372339 -0.274838 -2.637660 -1.456180 1.988258 0.190116 2.728320 1.417725 0.190241 1.632070 1.478266 -0.562193 -0.494470 -0.163812 0.807443 -0.246836 -0.442314 -1.644135 1.517120 -1.996526 0.960860 2.482010 -1.528769 1.079848 -0.219177 0.884960 -2.526382 2.816417 1.040891 -1.892965 1.165069 1.262730 1.951685 -0.702807 -1.306113 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.291919 -0.319830 1.009497 0.707594 0.045139 0.080284 0.436779 -0.457132 0.629958 0.318439 -0.039797 0.114417 -0.634983 0.186418 -0.191570 0.547185 -0.587095 -0.523927 -0.120595 -0.559319 -0.170707 -0.314788 0.494613 -0.153751 0.555747 -0.147598 -0.362559 -0.438846 -0.682188 -0.524410 0.423416 -0.298477 0.424336 -0.168270 -0.231671 -1.364413 0.610235 0.439073 -0.381182 -0.479098 0.514907 -0.446230 0.194284 -0.178378 -0.033535 0.094860 0.096446 0.019063 0.607694 0.304208 0.449840 0.130804 0.131766 1.126370 -0.725029 0.354213 0.099893 -0.162022 -0.357253 0.175670 0.070200 0.012920 0.379966 0.227338 -0.167129 -0.664177 -0.154960 -0.377971 -0.708739 0.376487 -0.153886 -0.075331 -0.436390 -0.029326 -0.345703 -0.291607 -0.422740 0.373188 0.796174 -0.483737 0.547095 0.002861 0.059735 -0.035370 0.108407 0.173652 0.268902 0.075649 -0.116920 -0.245076 -0.233546 0.099669 0.074332 0.317992 -0.087649 -0.584398 0.457323 -0.099170 -0.653845 0.149873 0.327519 -0.128909 -0.601343 0.010903 0.073861 0.420177 -0.416321 -0.647446 -0.233241 0.070786 0.133428 -0.139321 -0.042217 -0.538318 -0.331261 -0.414147 -0.699325 0.064680 -0.157220 -0.309072 -0.508698 0.504549 -0.341659 -0.037585 0.089535 0.478237 -0.374297 0.616671 -0.122187 0.489890 0.169675 0.048814 -0.884720 -0.225443 0.432223 0.723348 -0.202332 0.029618 -0.547274 0.006530 -0.510643 -0.008959 0.113026 0.478298 0.715234 -0.453093 -0.357837 -0.040403 0.095851 -0.843774 0.206837 -0.423896 0.062700 0.118400 0.461628 0.269656 0.569625 1.067144 -0.428670 0.339053 -0.088256 -0.336354 0.667144 0.033201 0.533890 -0.337995 -0.354099 0.097212 0.241447 0.172004 0.007761 0.121451 0.070725 -0.718238 -0.083464 0.036530 0.196778 -0.238055 0.357491 0.408179 0.795339 -0.666815 0.165520 0.515936 -0.185023 0.037649 0.107105 -0.643668 0.225783 0.223632 -0.258966 0.443705 0.059148 -0.474859 0.203482 -0.267871 0.202883 -0.416833 0.116341 -0.359066 -0.104630 -0.370793 -0.132036 -0.269635 -0.374544 -0.152690 -0.130284 0.677113 -0.204938 -0.444352 0.513511 -0.062062 0.123411 -0.937584 1.125653 -0.485272 0.345339 -0.443020 -0.016080 -0.103832 0.497023 -0.430581 0.109056 0.198231 -0.171243 0.416671 0.968610 0.410301 0.129591 -0.123630 0.710085 -0.077050 0.544473 -0.143013 0.646633 -0.187018 -0.317072 0.161015 -0.158424 -0.110865 -0.161605 0.160299 0.618105 0.440436 0.083997 0.439544 0.386421 0.781162 -0.291051 0.525442 -0.065870 0.574371 -0.121160 -0.144312 0.253594 0.311995 -0.154337 0.374063 -0.772160 -0.880756 -0.150900 -0.733390 0.215882 0.097188 0.081466 -0.138173 0.064993 -0.786509 -0.352433 0.176191 -0.246757 0.595915 0.256291 0.163761 0.401495 0.614402 -0.385336 -0.156111 -0.047891 0.188800 0.096366 -0.260978 -0.402826 0.515288 -0.593723 0.061929 0.567316 -0.291550 0.064871 0.030645 0.465856 -0.477319 0.870836 0.156428 -0.093233 0.883849 0.505468 0.857706 0.079588 -0.268693 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -0.564241 -2.009305 4.351602 2.944994 -0.148244 1.099376 0.796985 -1.235459 0.960141 1.017331 -0.782166 2.060076 -1.992748 0.023091 -0.535952 0.757546 -2.627262 -1.772958 -0.447262 -1.160257 -0.427793 -1.244784 -0.327199 2.178549 1.897583 0.688883 -1.534129 -0.007277 -3.217369 -3.316117 -0.493413 -0.420302 1.545425 -0.647668 1.464377 -3.776693 2.368978 2.808328 -0.272268 -2.862196 1.383163 -1.122066 0.063065 -0.274244 -0.683202 1.469164 1.389922 0.522704 1.318985 1.027944 -0.314087 -0.074728 1.286812 2.629294 -0.160507 1.788839 1.836338 -1.032845 0.328315 -0.429145 -0.053028 -1.239181 0.765159 0.095936 -0.736152 -1.770399 0.126693 -0.221410 -1.239519 1.269410 0.386497 -1.179858 -1.603817 -1.116814 -3.206761 -0.494412 0.775640 1.686876 3.067352 -1.277924 2.505826 0.475915 0.911063 0.525997 1.533197 0.307108 1.537672 0.643195 -0.853812 -0.032072 -2.011072 -0.926683 -0.151629 1.163238 -1.228480 -1.999426 1.195079 -4.080886 -2.710400 1.221773 0.340615 -1.681333 -1.457228 -0.437935 0.910590 1.384876 -0.699342 -2.053169 -0.434303 1.259804 -0.533817 -0.509993 0.596670 -0.661188 -0.485059 -0.171847 -2.471476 1.126736 1.109820 -0.634800 -0.856414 2.491124 -0.290959 1.369792 0.131969 1.401706 -0.766973 1.734376 0.705914 1.117606 -0.643316 -0.425087 -1.588606 -0.484626 0.541635 0.076531 -1.618102 -0.672190 -0.530655 0.893041 -0.508501 0.906930 -0.991000 2.411709 1.660290 -1.314176 -1.577934 -1.640608 -1.715625 -2.062014 0.152994 -0.551343 -1.955493 0.703938 1.611778 0.301343 0.766672 2.040276 -0.805815 0.160947 0.060962 -0.887024 1.236660 -1.008878 1.328811 -1.507880 -1.223214 1.447743 0.965029 1.634171 0.046757 0.055793 0.827014 -1.332790 -0.687303 1.035180 0.934050 0.535373 2.497703 2.301005 2.455496 -0.926195 -0.579555 0.826639 -1.112743 -0.304243 0.230191 -2.012901 0.925788 0.879792 0.214408 3.183076 -0.085720 -1.106049 1.891678 0.026022 0.639752 -1.969964 0.968031 -1.559024 0.435383 -1.006214 -0.947046 -1.504282 -0.934399 -2.218911 -1.668479 3.057490 -1.826364 -2.673124 1.682184 -0.452028 1.802399 -3.744764 1.865533 -1.350538 2.214344 0.238789 -0.011820 0.288362 -0.090530 -1.473743 0.580936 0.808784 -1.235361 1.412636 1.637161 1.058898 0.045929 -0.178024 1.710395 -0.612543 1.406954 -1.271436 1.177811 -0.876685 -0.350113 -0.355046 -0.327770 -0.190265 0.302033 0.211917 -0.034105 0.688843 0.524163 0.871813 2.182314 1.369842 -0.829876 0.830379 -0.812932 1.694046 -1.520795 -1.432268 -0.111535 1.668006 0.525257 1.089242 -3.549384 -2.561265 -2.676812 -3.298028 -0.330328 -0.034148 0.599610 0.431325 -0.495922 -2.746144 -1.851989 2.646421 0.234491 2.217776 1.712889 0.232259 2.049222 1.612904 -0.322648 -0.530634 -0.122181 0.748131 -0.161189 -0.506792 -1.795440 1.748736 -2.245861 1.070925 2.869894 -1.710717 1.396919 -0.503967 1.110486 -2.896488 3.104336 1.062704 -2.338294 1.031535 1.902082 2.082244 -1.135976 -1.510736 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::front() = -0.055273 -0.241681 0.774340 0.535000 -0.205897 -0.001198 0.238195 -0.294133 0.349148 -0.287720 -0.169069 0.069009 -0.578635 0.192670 -0.327856 0.224464 -0.730781 -0.410249 -0.142927 -0.272109 -0.022398 -0.242544 0.474914 0.089482 0.428419 0.408251 -0.264542 -0.222574 -0.527354 -0.010834 0.483053 -0.210679 0.358156 0.418829 -0.132948 -0.829806 0.367743 0.319132 -0.265156 -0.368992 0.461889 -0.447545 0.071257 -0.500894 -0.176610 0.056045 0.020624 0.264582 0.409440 0.051743 -0.051403 0.041781 0.015335 0.577681 -0.486447 0.186102 0.158139 -0.055049 -0.189067 -0.088028 0.047700 0.071178 0.211118 0.219755 -0.243847 -0.508634 -0.161243 -0.505455 -0.477013 0.359876 -0.157495 0.252964 -0.430025 -0.020523 -0.436482 -0.066555 -0.107131 0.500168 0.601804 -0.451747 0.333659 -0.091727 -0.007549 -0.110829 -0.014572 0.212138 0.085090 0.089046 0.034090 -0.183434 -0.431424 0.045942 0.070413 -0.055083 -0.068412 -0.562515 0.327185 -0.527025 -0.465418 -0.075514 0.241028 -0.233106 -0.055319 0.177082 -0.023861 0.348544 -0.247816 -0.385347 0.127105 0.035688 0.185053 -0.026047 -0.015386 0.036884 -0.243971 -0.508679 -0.606923 0.144862 -0.185031 -0.212060 0.086575 0.350768 -0.260272 -0.023815 0.086375 0.231217 -0.274941 0.682978 -0.087130 0.149663 0.131689 0.057205 0.018323 -0.113377 0.358810 0.786412 -0.360645 -0.046445 -0.317188 -0.016376 -0.377495 -0.431531 0.068243 0.106900 0.228310 -0.519770 -0.292519 -0.086372 -0.263827 -0.803481 0.002239 -0.303742 0.024582 0.403744 0.344650 0.338229 0.464882 0.925595 -0.322840 0.087378 0.049558 -0.306497 0.463998 0.257128 0.377967 -0.228320 -0.314901 0.206253 -0.165587 0.228196 -0.038061 0.182252 0.016294 -0.608747 -0.061762 0.231037 0.282244 -0.045023 0.332077 0.350840 -0.234039 -0.293448 0.158212 0.436058 -0.125398 -0.045782 0.178137 -0.480434 0.325910 0.110797 -0.133608 0.217496 0.034003 -0.244625 0.193412 -0.179983 0.194984 -0.405935 -0.048179 -0.223507 -0.024341 -0.527032 0.094631 -0.044366 -0.344935 -0.147672 -0.224622 0.522585 -0.323679 -0.238930 0.332829 0.171491 0.400806 -0.610709 0.388213 -0.356493 0.595009 -0.016679 0.000358 0.093885 -0.190778 -0.368926 -0.092393 0.134219 -0.010752 0.147188 0.467709 0.379021 -0.036691 -0.022874 0.534075 -0.021372 0.541009 -0.129831 0.296023 -0.086622 -0.326475 0.329691 -0.109520 -0.202103 -0.136819 0.208535 0.827285 0.354940 0.490431 0.637381 0.169982 0.675668 -0.226437 0.148175 -0.117988 0.395090 -0.104159 -0.180847 0.150772 0.414067 -0.139275 0.261253 -0.579099 -1.084265 -0.391730 -0.639383 0.154241 -0.435617 0.140361 -0.108981 0.050542 -0.518628 -0.296149 -0.030244 -0.225182 0.807136 0.208571 0.019722 0.309125 0.475883 -0.502580 -0.078343 0.346213 0.513141 0.120337 0.077818 -0.639369 0.421956 -0.431851 -0.049073 0.715654 -0.403990 0.101739 -0.167315 0.586556 -0.375319 0.744651 0.144455 -0.373158 0.656966 0.256046 0.300662 0.540112 -0.249632 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.148122 -0.189396 0.772426 0.558679 -0.116434 0.038016 0.063439 -0.360402 0.356672 0.161255 -0.070991 0.136224 -0.324044 0.153834 -0.071630 0.437590 -0.519722 -0.253456 -0.157096 -0.399789 -0.172265 -0.130819 0.278294 -0.063114 0.376824 0.171534 -0.286900 -0.096927 -0.233652 -0.582860 0.165327 -0.181041 0.288195 0.009349 -0.025675 -0.902704 0.495757 0.337272 -0.256214 -0.334375 0.318031 -0.202704 0.088760 -0.133750 -0.174664 0.147900 0.022552 -0.086673 0.370135 0.242501 0.243467 0.121845 0.252753 0.629159 -0.311200 0.222003 0.120872 -0.167855 -0.222724 -0.002870 0.076933 0.043354 0.193603 0.084308 -0.015506 -0.530118 -0.151375 -0.226166 -0.394216 0.263784 -0.184160 -0.166673 -0.292094 -0.201104 -0.252654 -0.179180 -0.355741 0.299951 0.500878 -0.350478 0.269971 0.001190 -0.061426 0.034767 0.070960 0.113454 0.212914 0.119612 0.003418 0.003573 0.214528 -0.067463 0.180234 0.223322 -0.166103 -0.407262 0.333821 -0.301135 -0.402618 0.166204 0.310995 -0.131427 -0.363196 -0.124287 0.013230 0.252298 -0.239744 -0.326572 -0.016972 0.032761 0.198570 -0.094899 -0.136702 -0.191288 -0.182960 -0.039575 -0.531968 0.156350 -0.084909 -0.109840 -0.168333 0.303961 -0.034217 -0.091422 -0.006455 0.317815 -0.277745 0.545494 -0.112019 0.397503 -0.123538 0.221327 -0.323724 -0.072731 0.295267 0.138103 -0.186989 -0.105597 -0.343344 0.006751 -0.349629 0.037066 -0.043692 0.309377 0.604841 -0.184174 -0.304298 -0.066890 -0.268839 -0.691377 0.082217 -0.285596 -0.056615 0.271317 0.295547 0.170281 0.387133 0.607993 -0.283855 0.056644 -0.088509 -0.246957 0.451290 0.031104 0.329070 -0.222038 -0.198147 0.185892 0.105310 0.183237 0.091060 0.062745 0.094846 -0.402503 0.016578 0.287886 0.185006 -0.079232 0.229307 0.313429 0.619017 -0.141723 0.041984 0.333394 -0.141595 -0.008043 0.094992 -0.373052 0.092638 0.140711 -0.059917 0.332822 0.025733 -0.157253 0.118210 -0.180132 0.130911 -0.283074 0.125300 -0.205873 0.094246 -0.233167 -0.087428 -0.193651 -0.161291 -0.119874 -0.169420 0.483131 -0.374955 -0.219831 0.412406 -0.028105 0.170191 -0.491906 0.596639 -0.310136 0.416123 -0.233516 -0.044914 -0.003071 0.001902 -0.318326 0.095470 0.140370 -0.018594 0.050557 0.532188 0.272587 -0.029460 -0.138917 0.457636 -0.125524 0.517796 -0.086035 0.454299 -0.108458 -0.081877 0.064028 -0.069936 -0.237288 -0.188604 0.097436 0.326563 0.161096 0.135359 0.218580 0.173985 0.541780 -0.236441 0.392319 -0.029447 0.305233 -0.151970 -0.161155 0.239679 0.384005 -0.081946 0.162451 -0.508490 -0.519818 -0.428000 -0.373939 -0.002747 0.125020 0.111055 -0.144343 -0.054902 -0.277843 -0.312517 0.502632 -0.138024 0.425544 0.161168 0.090311 0.289838 0.401430 -0.168176 -0.105924 -0.129934 0.086036 0.165959 -0.048271 -0.341386 0.430448 -0.314704 -0.079551 0.467427 -0.262017 0.128096 0.098857 0.261031 -0.317417 0.516437 0.054909 -0.111612 0.560639 0.379847 0.394322 0.038312 -0.206563 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::pop_front() = 1.621686 -0.733232 7.226181 4.766673 -2.248079 0.262684 -0.056779 -4.213779 3.157405 0.459382 -1.377393 0.667541 -1.719719 1.180693 -1.454455 3.308436 -6.081215 -1.284824 -1.769957 -3.974153 -1.762084 -0.971693 1.751304 -0.203956 3.360034 2.723726 -1.866348 0.130919 -0.186186 -4.923767 1.529967 -1.047839 1.330093 0.521794 1.207747 -6.424804 4.930728 2.367738 -1.939457 -2.605598 2.162724 -1.155597 -0.907912 -1.159164 -1.064266 1.184698 -0.277920 3.327892 3.017014 1.971398 0.442542 1.229737 2.412769 5.861488 -1.859538 1.804517 1.195634 -1.135537 -0.910586 1.097526 0.515506 0.519944 0.313245 0.561154 1.101867 -4.488462 -0.351091 -1.709381 -1.551589 3.215398 -0.464233 -2.502617 -2.643583 -2.035707 -2.644348 -0.456007 -6.029182 4.153046 3.902554 -3.311371 1.338266 0.235784 -0.426480 0.202469 0.315133 0.238990 3.249195 1.138404 0.389892 -0.440573 0.109228 -2.270452 2.241459 -1.931111 -1.936055 -6.589572 2.404562 -5.602134 -3.358939 1.005306 3.333422 -2.409705 -0.446847 -1.079817 0.903611 0.465515 -0.937304 -1.848236 0.978294 0.788523 0.151412 -0.198734 -0.494194 -0.364366 -0.226544 1.231319 -4.750853 2.246380 -0.507097 0.535291 -0.163891 2.490134 1.234219 -1.404452 -0.010661 2.255493 -1.649760 3.842433 -1.331886 3.240709 -0.958565 3.641413 -0.098433 2.693167 2.619901 -1.883467 -0.768186 -0.257357 -1.925877 1.223465 -3.568860 0.920939 -2.186809 2.474420 2.427103 -1.836491 -2.941346 -0.805950 -3.256332 -4.353139 0.749965 -1.850604 -3.535518 1.159236 2.400991 2.880494 2.844196 1.286136 -2.964498 -0.362533 -0.645383 -0.071677 2.979495 -0.129355 2.382531 -1.838239 -1.101878 1.254961 -0.004774 1.599166 -0.170413 0.201699 0.929040 -3.319633 0.389815 2.526558 1.780448 -0.467890 2.092430 3.578021 3.936534 -1.250083 0.223481 3.082776 -1.919385 -0.768490 1.319018 -3.024693 1.096421 1.237959 2.220624 3.462527 0.100879 0.354953 0.624246 -0.808499 0.621043 -1.719602 -0.644620 -1.441630 -0.335536 -1.229930 1.331056 -1.935584 -0.731739 -1.597098 -2.639973 3.727454 -5.038116 -1.702305 5.427786 -2.396375 1.761910 -2.739265 4.273763 -2.167796 1.967199 -0.324193 -0.202147 0.000200 -1.848479 -4.000886 1.488949 0.715566 -0.006522 0.664452 3.702077 2.137141 0.264454 -1.269685 3.747948 -2.724147 4.501110 -1.628546 3.542113 -1.336481 -0.836584 -0.678541 -0.338441 -2.745888 -2.092426 1.769712 2.929297 0.011021 2.429418 1.898032 1.088788 4.125357 -1.875041 3.668284 -0.809592 0.252162 -1.880759 -1.870113 2.842852 1.558275 -1.150359 1.525978 -4.783459 -3.932574 -6.365683 -2.019087 -0.349030 -1.813481 1.737050 -1.642446 -1.200624 -2.180772 -3.318871 4.804838 -0.372127 -0.251918 2.352764 0.346079 2.074916 3.635027 -0.836629 0.648416 -0.950671 1.136007 1.465874 -1.156506 -3.462568 4.529731 -1.996705 -0.337740 5.273590 -2.342922 1.819265 -0.482756 2.199123 -3.152091 2.901859 0.332914 -1.772535 2.482431 3.974429 2.163721 1.225497 -2.027193 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_pop_front_aux() = 2.328610 -0.598757 8.281834 5.534347 -2.854473 0.286876 -0.709332 -5.064109 3.365095 -0.066038 -1.419975 1.319812 -1.352864 1.823435 -2.632066 4.186377 -7.078708 -1.107584 -2.211709 -4.835511 -2.342012 -0.331647 1.758238 -0.486283 3.858298 3.167407 -2.325545 0.207752 -0.087462 -5.414425 1.482857 -1.155142 1.102473 -0.465918 1.351866 -7.428981 5.708499 2.728088 -2.542667 -2.905926 2.588293 -1.615124 -1.035951 -1.798313 -1.477789 0.821429 -0.723451 3.633259 3.288627 2.293783 0.277311 2.717484 3.119444 7.705540 -2.131282 2.202600 1.642634 -0.908890 -1.196240 1.260905 0.700544 1.053222 0.087799 -0.147228 1.601944 -5.703303 -1.303859 -1.869654 -0.808718 3.170693 -0.669927 -3.013130 -3.035315 -2.296567 -3.590875 -0.800297 -8.533402 4.791276 3.997718 -4.464812 0.891160 0.045083 -0.679303 0.896828 0.849343 0.495752 3.720243 1.605653 0.858419 -0.034839 0.997518 -1.808078 3.155049 -3.066368 -2.746479 -9.468560 2.874234 -7.040382 -3.880830 1.505173 4.183442 -2.827958 0.427348 -2.079218 0.761716 0.305232 -1.811986 -1.824360 1.629613 0.861534 1.076157 -0.580280 -0.258849 -0.738266 0.499343 1.562797 -5.579840 3.151379 -0.314654 1.200161 -0.002572 2.914936 2.236860 -2.205026 -0.554099 2.452554 -2.312755 4.698144 -2.109639 3.801482 -2.375072 5.180714 0.067927 3.956361 3.168760 -3.170527 -1.360087 0.145367 -2.455334 1.473549 -3.986719 1.181436 -2.735642 2.815739 2.151334 -1.572598 -3.350631 -1.074642 -4.045209 -4.896656 0.761599 -1.783254 -4.882975 1.342929 2.761036 3.474108 3.583738 0.376477 -2.595479 -0.952056 -0.768078 0.291429 4.052498 -0.669756 2.688923 -2.077937 -1.291115 1.753958 -0.270369 1.897569 -0.002466 0.769159 1.315286 -3.496509 1.250531 2.686485 2.588160 -0.893840 2.906936 4.044930 3.927890 -1.021522 0.121936 3.278676 -2.775780 -0.474975 1.033730 -3.046588 0.772555 1.790029 2.625446 4.070887 0.173230 0.609711 0.594300 -0.711957 0.979670 -1.500033 -0.918925 -1.568531 -1.208878 -1.073058 2.142261 -2.009889 -0.452756 -2.178705 -3.986935 4.316689 -7.452862 -0.965672 6.162530 -2.536387 1.765857 -2.545389 4.908353 -2.618509 2.609743 0.168952 -0.032466 0.269405 -2.066508 -5.320917 2.120893 1.135253 -0.353546 0.103555 3.887589 2.472280 0.400816 -1.717001 4.263157 -3.719036 5.443563 -1.882203 4.579590 -1.667033 -1.221770 -0.658461 -0.238094 -3.619289 -2.842437 2.703446 3.382528 -0.955210 3.419538 1.536460 1.334184 5.057627 -2.530652 4.344570 -1.393838 -0.439330 -2.321976 -2.156206 3.353670 1.770736 -0.732895 1.387255 -5.428368 -4.070937 -8.832818 -1.115696 0.435143 -2.065689 1.480599 -2.325673 -1.692182 -2.402390 -4.115328 6.075150 -0.948138 -1.697393 3.115430 0.627354 2.377864 3.997228 -0.702453 1.080437 -1.382750 1.058934 2.367525 -1.089717 -4.062322 5.483237 -2.054478 -0.806174 6.111270 -2.392098 2.276052 0.481980 1.990001 -2.904204 3.020569 0.053564 -2.157083 2.603538 5.699151 2.217408 1.383646 -2.333267 -PE-benchmarks/cut-vertices.cpp__Graph::Graph(int) = 0.692269 -1.244844 3.506913 1.851015 -1.308601 0.339172 1.204345 -1.000455 0.625089 -0.291419 -0.729784 0.919786 -1.462076 -0.256313 0.201414 0.078171 -3.328404 -1.166654 -0.409280 -0.927012 -1.015144 -0.829841 0.313475 1.377666 1.733907 1.777576 -0.539013 -0.520772 -1.380910 -0.523509 0.556903 -0.162742 0.750329 2.097356 2.118593 -2.749548 1.353011 0.789002 -0.207828 -1.777241 0.813692 -0.039710 -0.170455 -0.626550 -0.090767 0.635207 1.035652 2.570358 0.928941 0.575710 -0.710720 -1.245153 0.257827 2.651771 0.619888 0.882439 1.619015 -1.141407 0.721717 0.167642 0.286350 -1.252460 -0.083773 0.343150 0.003560 -0.568120 0.492492 -1.876895 -0.383207 1.675851 0.998848 -1.242425 -1.276438 -1.775827 -1.817374 -0.083316 -2.556553 2.866678 2.433365 -2.020001 1.533652 0.323412 1.150349 -0.363046 0.926332 0.044550 1.782717 0.425304 -0.366870 0.304874 -2.082897 -2.181838 -0.036989 -0.618934 -0.503165 -1.462410 1.142455 -2.878669 -1.924225 1.024968 0.706550 -1.055731 -0.230868 0.475206 0.665278 0.471511 -0.660959 -1.183525 -0.665994 0.512592 -1.161013 0.658925 0.342505 1.231534 -0.870247 -0.224100 -1.673493 1.046842 0.656021 -0.200751 -0.029279 1.855185 -0.501380 1.078375 0.149899 0.277860 -0.312222 1.906961 0.804129 0.154971 0.387447 -0.087152 -0.454914 0.857210 0.734928 1.376718 -0.101848 -0.175162 0.277153 0.974010 -1.101004 0.278208 -0.679677 2.125538 0.072799 -1.553088 -2.375685 -0.849851 -1.659726 -1.771094 0.190379 -0.680335 -1.101418 1.155460 1.127030 2.254503 -0.143511 0.791525 -1.108597 0.197453 -0.112662 -0.393390 0.022062 0.311064 0.934918 -1.319310 -0.289164 0.211673 -0.283915 1.153400 0.328663 -0.545137 0.250203 -1.722290 -1.367305 0.729866 1.194909 0.136012 1.001646 2.047473 0.576955 -1.256664 -0.921278 0.998024 -0.375877 -1.227732 0.824636 -1.284944 1.124807 -0.000843 0.462754 1.461247 0.068774 0.090388 0.967294 -0.276093 0.320793 -0.863317 -0.545120 -0.569158 0.244058 -0.811912 0.667614 -1.228900 -0.541454 -1.087454 -1.364153 2.362905 -1.654503 -1.768477 2.148945 -1.058409 2.239339 -1.778525 2.001621 -0.619333 1.306742 0.138954 -0.284774 -0.098495 -0.737060 -0.733417 1.071771 -0.209418 -0.074937 -0.111710 1.446705 0.636286 0.449977 -0.001416 1.515626 -1.128552 1.149202 -0.483981 1.046440 -0.667333 -0.519872 -0.363624 -0.018678 -0.306711 0.177432 0.321065 1.442703 0.152585 1.283789 1.283389 0.667835 0.749309 -1.060993 0.140150 -0.062005 1.322201 -1.371668 -1.344858 0.670460 1.104817 -0.142978 -0.055397 -2.349364 -2.328127 -2.443136 -1.827235 -1.355630 -1.268259 0.962776 -0.090536 -0.608656 -0.936145 -1.080413 0.719789 0.342558 0.112475 1.239070 -0.142830 1.910125 1.640015 -0.398561 0.062099 0.744766 1.300507 -0.151953 0.001329 -2.239289 0.882888 -2.521375 0.643797 2.652918 -0.676938 1.369578 -0.762324 2.598861 -2.596534 1.509466 0.739954 -2.348113 0.239592 2.309937 0.634620 0.719970 -1.392323 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/cut-vertices.cpp__Graph::addEdge(int, int) = -0.142363 -0.811098 2.215602 1.619710 -0.636782 0.228613 0.459885 -0.810670 0.410840 0.109393 -0.373545 0.623246 -1.127401 0.290007 -0.362976 0.743894 -1.859922 -0.705471 -0.384409 -0.879338 -0.505775 -0.381822 0.388413 0.687176 1.153720 0.775113 -0.693760 -0.403430 -0.827671 -1.048432 0.293489 -0.323767 0.873141 0.686163 0.246690 -2.705831 1.113969 1.017997 -0.516628 -0.855101 0.865750 -0.709616 0.002999 -0.692775 -0.869187 0.246668 0.333599 0.445175 0.846397 0.372809 0.119897 0.024934 0.921110 2.154699 -0.404119 0.801101 0.747055 -0.480291 -0.136825 -0.164039 0.157690 -0.258094 0.471997 0.142335 -0.081827 -1.204235 -0.324332 -0.851116 -0.633141 0.789679 -0.005135 -0.238845 -0.969121 -0.549605 -1.161596 -0.477081 -1.054677 1.233688 1.530773 -1.308845 1.053169 0.207913 -0.007529 0.014155 0.443610 0.307560 0.829903 0.311989 -0.038779 0.124269 -0.157994 -0.344501 0.408076 0.322179 -0.598715 -1.737554 0.804313 -1.618709 -1.468856 0.507362 0.577249 -0.790915 -0.264730 -0.286595 0.051687 0.432220 -0.712610 -1.000635 -0.131038 0.196424 0.144182 -0.238204 -0.225197 0.121154 -0.209555 -0.183194 -1.612949 0.614247 -0.001828 -0.351960 -0.118621 1.076528 0.219659 0.296016 0.083721 0.658435 -0.563526 1.518597 -0.061221 0.662951 -0.270901 0.493337 -0.395845 -0.115593 0.851966 0.394777 -0.716788 -0.496702 -0.468115 0.360122 -0.661907 0.162493 0.077261 1.333545 0.846437 -0.688902 -0.967203 -0.607047 -1.009743 -1.691984 0.131871 -0.683235 -0.650511 0.873349 0.853366 0.497938 0.724476 1.103375 -0.446221 0.350883 -0.056758 -0.487685 0.932676 -0.069266 0.869972 -0.764551 -0.639056 0.636973 0.134059 0.935973 -0.006855 0.233734 0.267095 -0.980965 -0.372222 0.599337 0.567001 -0.193819 1.060462 1.118937 1.678721 -0.572765 0.226054 0.728735 -0.493062 -0.130454 0.389388 -1.111071 0.528167 0.326023 -0.418132 1.137461 0.060872 -0.464493 0.592246 -0.371175 0.295117 -0.987249 0.285008 -0.570900 0.083407 -0.854741 0.042235 -0.508414 -0.586601 -0.614883 -0.641723 1.575706 -1.899247 -0.559972 1.114075 0.117535 0.773879 -1.557942 1.928100 -0.790216 1.218575 -0.410591 -0.636320 0.222031 -0.113480 -0.848235 0.406124 0.379440 -0.373419 0.116558 1.159690 0.700488 0.196309 -0.147515 1.258339 -0.258081 1.208771 -0.468041 1.043533 -0.159539 -0.487643 -0.114357 -0.218327 -0.477574 -0.113817 0.518653 1.068007 0.488099 0.669579 0.633252 0.810598 1.252347 -0.632595 0.536112 -0.355917 0.916611 -0.741864 -0.671008 0.334642 0.914095 -0.094061 0.561641 -1.731443 -1.688449 -1.757496 -0.811455 -0.248276 -0.013599 0.580469 -0.112759 -0.211652 -1.186296 -0.985465 1.203102 -0.429225 0.529994 0.824110 0.261457 1.086866 1.052814 -0.108267 -0.262207 0.069648 0.789926 0.368340 0.118303 -1.284740 1.084975 -1.182063 0.334686 1.573178 -0.764205 0.629014 0.106867 1.262524 -1.219833 1.575339 0.267333 -1.159573 1.084719 1.587109 0.457487 0.165061 -0.736008 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/cut-vertices.cpp__Graph::APUtil(int, bool*, int*, int*, int*, bool*) = -4.398685 -7.884934 17.578275 11.951643 -2.666440 3.878927 2.956282 -5.916284 1.925600 3.401526 -3.370044 7.742603 -7.691405 -0.346621 -2.746871 2.526843 -11.913247 -6.635363 -2.851585 -7.181662 -5.151881 -3.097262 -2.847073 9.418728 7.873847 2.208033 -6.327364 -0.425597 -11.094320 -11.516142 -2.805109 -0.775896 6.107399 -0.152216 5.063711 -20.120367 8.475199 11.009796 -2.129934 -7.771438 5.295596 -5.725712 -1.172825 -1.542612 -6.459258 2.621389 4.409374 0.206430 4.846411 1.999603 2.002312 -0.103736 5.588871 17.430688 0.244463 8.423283 8.349066 -4.742603 0.250779 -0.294023 0.668680 -5.302858 4.051083 -0.158696 -2.311443 -7.524465 0.967007 -3.131407 -2.669085 5.482815 2.744131 -7.250066 -4.249169 -6.292653 -11.932032 -5.021787 1.313198 6.585384 11.867971 -8.280317 10.488271 3.091047 2.857987 1.857256 7.391425 0.574721 10.813248 2.051874 -2.216541 0.697546 -3.933920 -2.091500 0.922427 8.805173 -6.171174 -7.491530 6.446351 -17.138578 -13.580834 5.523506 2.567470 -7.202937 -5.851126 -1.706644 2.331935 1.779994 -3.493051 -8.285869 -4.008474 4.879632 -3.517977 -2.432201 -1.365500 -1.254383 -0.281597 1.608578 -12.064979 6.037861 3.851971 -1.823592 -5.176166 10.760441 1.245097 4.941887 0.545700 5.758825 -3.072844 7.937183 0.413698 3.668639 -4.683799 0.652347 -8.115886 -3.081528 3.324613 -1.547565 -7.271157 -4.792284 -0.483142 3.943225 -3.113422 5.658822 -3.720467 14.767769 5.773654 -4.629160 -7.688977 -7.409078 -8.060758 -10.572228 -0.221522 -4.041120 -10.250983 3.093048 6.708642 4.143673 2.221587 7.336422 -0.512728 4.649599 0.924867 -4.158332 5.354066 -7.070898 6.457206 -7.622683 -5.342185 5.574222 3.362414 8.239392 -0.076053 0.893852 2.087447 -6.556784 -6.187172 4.374444 2.962246 2.135481 10.717942 10.646051 20.178790 -8.394898 1.267949 2.662873 -4.677573 -1.387061 1.703529 -7.800350 1.655589 3.957871 -2.120893 14.449983 0.768665 -4.607255 4.189229 -0.446928 2.646646 -9.122214 5.252722 -5.052754 2.529316 -3.802920 -3.736525 -6.754868 -3.485813 -8.066275 -8.219319 13.451026 -15.788807 -10.955975 9.450135 1.075757 7.497401 -16.194637 11.718589 -5.893200 11.208073 -3.602497 -4.267405 0.782675 1.098315 -6.170044 7.827021 2.930289 -6.521749 3.600449 8.342701 4.205291 4.852676 -1.547630 8.144574 -3.006219 6.838632 -5.418296 7.723890 -0.946431 -4.785488 -3.986843 -1.954029 -2.180953 2.543856 3.141084 0.719894 4.678862 1.939411 0.991409 10.194960 6.190156 -4.504211 3.283055 -2.796855 7.023394 -6.948133 -6.954569 1.020981 5.801529 1.955741 2.754096 -15.267059 -9.700174 -13.803272 -10.404072 -1.838314 1.928378 3.544684 2.143775 -2.568844 -11.257028 -7.898104 13.257686 -0.949541 8.375072 7.031776 3.351647 9.684201 7.297548 1.681898 -2.255022 -1.128044 3.915684 0.275083 -1.369988 -9.042212 8.199975 -8.729547 6.548257 11.045765 -5.223771 7.309307 2.881454 5.151396 -11.610688 12.076237 2.987519 -11.548128 4.873138 11.723276 5.260770 -5.134333 -6.761021 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/cut-vertices.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/cut-vertices.cpp__Graph::AP() = -1.650535 -6.507191 12.731234 7.971790 -1.893808 2.940106 3.087966 -3.480765 1.631760 1.857801 -2.767103 6.127085 -5.569757 -1.048506 -1.387504 0.489132 -8.933401 -5.412935 -1.293454 -3.504003 -3.833111 -2.968537 -1.727166 7.410433 5.536976 3.799058 -3.860242 -0.556315 -9.125865 -6.144677 -1.478334 -0.348666 3.987592 2.534928 5.761278 -11.003602 5.325077 7.140312 -0.620684 -7.220061 2.887274 -2.432795 -1.175204 -0.621853 -2.162159 2.376809 4.075332 3.204462 2.459839 1.630689 -0.189313 -2.168123 2.522395 10.530609 2.165789 5.593886 7.174558 -3.566352 2.244276 -0.468364 1.062445 -4.758656 2.086301 0.847844 -1.794949 -3.059045 1.625845 -3.362748 -1.927528 4.459595 3.415319 -5.175534 -3.063807 -5.346950 -7.781584 -1.745121 0.388912 5.894149 9.175912 -5.447730 7.985510 2.466896 3.983501 0.069372 5.297504 0.093937 7.425058 1.908875 -2.223213 0.121449 -6.464688 -3.013634 -0.522610 3.803533 -3.962389 -2.958581 4.735821 -11.784506 -9.288770 4.308279 1.331134 -4.782347 -3.151690 0.985188 2.454576 2.022983 -2.086538 -5.477890 -3.422304 3.556700 -4.206274 -0.712859 0.016355 1.253638 -1.752667 0.883862 -7.429945 3.854192 3.860957 -1.765783 -2.633617 7.675686 -0.761616 4.931186 0.103141 2.544323 -1.046852 5.079735 2.612728 1.213229 -1.142515 -1.216780 -4.337147 -0.188264 1.811354 0.949841 -4.519776 -2.428877 1.301199 3.445494 -1.294974 3.288980 -3.628579 9.734162 2.330567 -4.509433 -7.056144 -5.920052 -5.425516 -6.585775 -0.379494 -2.935019 -6.347442 2.751092 4.844982 4.461064 -0.076181 5.010451 -1.756138 3.180465 1.119702 -1.753620 1.293710 -3.232301 3.788720 -5.532172 -3.501157 3.218644 2.171915 4.921535 0.375296 -0.807482 1.149564 -4.912564 -5.502256 3.327318 2.661162 1.945868 6.902531 7.509457 10.491651 -5.776330 -1.409026 1.629048 -2.401790 -2.615928 1.270895 -5.760244 2.053201 1.509333 0.398141 9.766437 0.397762 -2.400905 3.784002 -0.007689 1.545930 -5.646034 3.169058 -3.183184 1.274043 -2.384775 -1.083668 -4.912366 -1.941992 -5.824175 -5.783550 10.015079 -9.300389 -8.871575 6.329367 -1.086871 6.519979 -10.623765 6.511705 -3.481337 6.991204 -0.496339 -2.418199 -0.357283 -1.031492 -3.298865 5.023485 1.608180 -3.945595 2.238825 5.479817 2.358477 2.854865 -0.176976 4.791386 -2.578267 3.706455 -3.481730 4.423698 -0.994126 -3.430520 -2.493850 -1.314085 -0.388466 1.959884 0.910955 1.144895 2.923606 1.857597 2.036782 5.489457 2.965754 -3.703283 1.146912 -0.839005 5.682359 -5.258442 -4.939703 0.241475 3.766133 1.211173 1.517842 -10.118546 -7.379909 -8.221326 -8.950089 -3.107885 -1.280559 3.064583 1.315066 -1.996484 -6.793303 -5.513328 7.280182 0.525261 5.942666 5.325895 1.593675 7.467144 5.012828 0.049521 -1.077337 0.077480 3.221234 -1.082585 -0.926467 -6.463712 4.050055 -7.054606 4.711008 8.430496 -3.126274 5.446115 -0.758533 4.837225 -9.053415 8.145217 3.209832 -9.342931 1.472429 6.977157 4.499773 -2.969283 -5.558839 -PE-benchmarks/cut-vertices.cpp__main = 0.672095 -1.114670 3.513144 1.527752 -2.562057 -0.717795 -0.188021 0.107451 1.253194 -5.718513 -2.036224 0.802767 -1.578197 1.025967 -1.867835 -0.574860 -6.197945 -2.426235 0.670314 0.467955 -0.034907 -0.927241 1.724327 1.506869 1.036487 5.099602 -1.268479 0.121154 -0.989853 3.410374 4.261367 -2.096707 1.636710 4.883648 0.314335 -6.363546 1.001044 -1.141543 -0.862060 -1.878328 1.117289 -2.150814 0.366661 -5.821857 -2.400038 -0.351367 1.496998 4.435976 1.094389 -1.044931 -4.752211 -0.973075 -1.745312 3.071403 -1.397908 -0.495449 1.711969 -0.772328 -0.442189 -2.036466 0.957459 -0.689594 0.812285 2.237150 -1.876885 -1.793878 -0.101730 -4.534911 -1.707229 1.973973 1.085168 4.603214 -1.841752 1.078644 -3.415616 0.272598 2.977785 4.070427 3.578248 -2.511155 1.456928 -0.513385 2.493613 0.232074 -0.556222 1.981563 0.853975 1.024374 -0.881806 -0.816090 -5.031373 -0.430011 -0.074493 -3.017595 1.495399 -4.275853 -0.025712 -5.462895 -0.937662 -0.725017 0.665223 0.001814 1.578260 0.244755 1.914977 1.796207 -1.068370 -0.687852 1.491206 -1.413779 -1.100946 0.829383 1.424903 2.851246 -0.817656 -3.512491 -3.004100 0.092059 -0.517681 -0.884800 3.837421 1.321058 -2.131601 0.137731 -0.003538 -0.124866 -1.151099 3.715415 0.771182 -1.630840 0.777239 -0.981436 4.076683 -0.354901 1.323410 6.368392 -2.008904 -2.328588 -0.480002 0.419794 -1.726146 -5.726434 0.713519 -0.941941 -1.529897 -2.847690 -2.296596 -1.874668 -2.159360 -4.095297 -0.680621 -1.748436 -0.540345 4.815635 1.667832 2.527281 2.472067 3.095728 -1.549403 1.906681 -0.608495 0.020663 1.363665 2.315516 1.563760 -0.637260 -0.188750 1.197098 -2.739558 1.805259 0.079758 -1.727142 0.708618 -3.198013 -1.677169 1.744161 3.052119 1.267633 0.417217 0.551178 -5.740441 -2.051510 -0.039003 2.175697 0.692584 -1.409315 2.001331 -1.329642 2.746548 -0.238719 -0.470480 -0.506823 0.250394 -2.157123 0.313533 0.723044 0.504730 -0.920119 -2.336968 0.074489 -0.010928 -2.627645 2.464561 -1.192139 -1.047481 -1.734051 -2.381002 2.353003 -3.921996 -1.709301 1.291365 0.761283 5.522844 -3.031178 -1.815316 -1.764055 5.262480 1.487072 -0.185877 0.756980 -4.838038 -1.588363 -0.331883 0.740030 0.839936 -0.758883 -0.182243 2.438748 0.637633 0.917057 2.128317 0.815035 2.148245 0.651629 -1.058990 -0.955714 -2.024237 2.096488 -0.217349 -0.472881 0.336015 2.531095 4.071982 1.484510 5.018255 5.916134 0.867015 1.967051 -1.695545 -2.769861 -1.403979 2.359293 -0.580791 -0.993303 -0.674223 3.134331 -1.254709 0.860126 -2.308014 -7.489327 -5.292861 -2.979925 -0.973710 -3.933143 0.024421 -0.648234 1.172160 -2.006407 0.559137 -1.762842 -0.685367 5.548936 1.743836 -0.985384 1.740665 1.872902 -4.182947 -2.781070 4.660262 3.681705 0.063993 3.127747 -6.707418 1.808600 -2.686323 -0.000679 5.189508 -3.117117 -0.974917 -1.611305 4.929101 -1.036700 4.122466 1.772180 -4.703329 0.842948 -0.257154 -0.246797 5.895799 -1.699092 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/cut-vertices.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/cut-vertices.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.559354 -1.112255 6.819190 3.704652 -1.380954 0.047994 2.326211 -3.691297 3.060954 -1.405149 -0.385703 0.456192 -3.699805 1.303337 -3.437818 1.789518 -5.247821 -2.978969 -1.943166 -4.166050 -1.450427 -1.519054 3.323599 0.218578 3.552059 0.603390 -2.300098 -2.054698 -3.856418 -2.065849 3.411039 -0.992663 2.110100 -0.642455 -0.758004 -8.582543 3.720794 2.423558 -2.389961 -2.275541 3.843565 -2.558679 -0.423550 -1.851452 -1.482355 -0.222742 -0.201668 2.329804 3.503682 1.098589 1.019756 1.711526 -0.097605 7.543765 -4.095587 1.910225 1.252360 -0.360410 -1.828120 1.268614 -0.260789 0.374290 0.991261 0.872637 -0.849289 -4.007665 0.155763 -3.014645 -3.193540 3.169458 -0.378084 -0.960239 -2.152450 -0.567133 -4.073924 -1.011025 -0.191880 3.374391 4.446855 -3.714946 2.112907 -0.841578 -0.232069 -0.304329 0.020527 0.791533 1.946217 0.411471 0.509629 -2.281502 -3.551152 0.937183 0.187993 -0.022996 -0.978813 -6.391859 3.278660 -4.558407 -4.087887 -0.002262 2.475109 -2.467011 -1.920696 0.053344 0.367677 1.331665 -2.053331 -3.187028 -0.795560 1.400502 0.518611 0.255011 0.546509 -1.410333 -0.966235 -2.705113 -4.889213 2.022339 -1.039281 -0.677593 -1.965741 3.125058 -1.807051 -0.416159 1.163518 3.220792 -2.541241 3.840183 -1.186485 1.666300 0.491352 1.357616 -1.590947 -0.913088 2.309584 4.268942 -1.933494 -0.257214 -2.986829 0.454602 -3.624373 -1.032610 -0.742329 1.942062 1.800914 -3.573781 -2.714045 -0.064914 -0.841786 -5.676562 0.281313 -2.335169 -2.360506 1.375087 2.196890 3.191665 3.025373 5.390624 -1.879563 1.669039 0.380629 -2.160820 3.289637 -0.792748 3.171486 -2.099596 -2.661947 0.531120 -0.954818 2.027242 -0.880286 1.193122 0.084250 -5.040238 -1.313558 0.004435 1.913389 -0.749311 2.149990 3.740640 1.973391 -4.418483 0.885425 3.400062 -2.391082 -0.327407 1.052112 -3.570283 0.952364 1.703567 -0.771380 3.758695 0.506256 -2.064566 1.677678 -0.996866 1.474986 -2.599514 -0.518459 -1.975769 -1.064646 -2.884815 -0.365093 -1.355398 -1.570138 -1.802033 -3.470798 4.016772 -4.096401 -3.464294 4.549205 0.059411 2.384510 -6.027617 4.739966 -2.299012 3.199410 -0.596205 0.752950 -0.319499 0.499384 -3.766198 1.647261 0.271396 -1.197521 2.457607 5.681952 2.346359 1.365054 -1.093640 4.696193 -1.594882 4.217757 -1.902216 3.735101 -1.561536 -3.972896 1.158951 -0.469027 -2.056081 -1.678221 2.581330 4.282399 1.991493 2.585902 3.480773 2.779690 5.327117 -1.477702 2.601096 -0.948847 1.861461 -1.116602 -1.604630 2.418357 2.176552 -1.084064 2.140924 -5.082892 -7.072766 -4.281309 -5.968200 2.150421 -2.992940 0.837788 -1.410230 -0.514485 -4.789053 -2.601293 0.991202 -1.116577 4.310278 2.958147 0.879085 2.652765 4.698513 -3.277458 0.635955 1.684040 2.951800 0.833996 -1.489656 -4.204246 3.498180 -2.830518 0.211195 5.180516 -1.940481 1.788466 -0.864630 2.777071 -3.468423 5.204653 0.643398 -2.067414 4.652301 2.862938 3.309809 3.053184 -1.603618 -PE-benchmarks/cut-vertices.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/cut-vertices.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/cut-vertices.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/cut-vertices.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/cut-vertices.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/cut-vertices.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/box-stacking.cpp__min(int, int) = -0.412424 -0.733312 1.172376 0.776973 0.208506 0.143927 0.512441 0.134319 0.210559 0.616499 -0.383314 0.770448 -0.727375 -0.019082 0.096625 0.294164 -0.564760 -0.811733 0.131326 0.066101 -0.291561 -0.454387 -0.070927 0.582450 0.701587 0.251006 -0.596022 -0.222541 -1.041621 -1.090796 -0.481009 -0.107869 0.507910 -0.028404 0.454097 -0.942191 0.350480 0.686188 0.078828 -0.913779 0.396112 -0.245405 0.160508 -0.026042 0.149159 0.608505 0.923192 0.232428 0.350975 0.393871 0.031744 -0.501966 0.154906 0.621812 0.176981 0.481055 0.699019 -0.355246 0.059723 -0.271251 0.108353 -0.840287 0.259306 0.241627 -0.438744 -0.155154 0.113823 -0.192873 -0.381914 0.445254 0.309702 -0.243114 -0.597814 -0.490496 -0.513537 -0.084902 0.346651 0.463825 1.055413 -0.396703 0.918618 0.300885 0.653582 -0.080269 0.226073 -0.109560 0.344258 0.111173 -0.432075 -0.260215 -0.658018 -0.529738 -0.445475 0.900005 -0.099517 0.291011 0.355809 -0.693582 -0.896855 0.241376 -0.123783 -0.244840 -0.658220 0.503140 0.424595 0.638013 0.104179 -0.621657 -0.485236 0.034055 -0.400094 -0.082157 0.068595 -0.161509 -0.473427 0.061912 -0.820941 0.077321 0.332662 -0.524483 -0.357562 0.539581 -0.365623 0.867402 0.138562 0.333010 0.138240 0.566741 0.780959 0.159053 0.270960 -0.452273 -1.018496 -0.160400 0.190616 0.452856 -0.584179 -0.012087 -0.019841 0.131349 -0.123823 0.058761 -0.323580 1.074432 0.849589 -0.633412 -0.877728 -0.641988 -0.300736 -0.353829 0.165012 -0.321515 0.009299 0.029589 0.351295 0.031243 -0.033618 1.298341 -0.514203 0.389586 0.196746 -0.299990 0.079644 -0.083604 0.405540 -0.545163 -0.302323 0.397046 0.602608 0.257245 -0.003908 -0.117690 0.295153 -0.561927 -0.580963 0.536304 0.159620 0.286941 0.567742 0.434162 0.979080 -0.524582 -0.273994 0.148590 0.008260 -0.340258 0.249994 -0.732476 0.580051 -0.054981 0.231766 0.768457 0.114483 -0.504811 0.724408 -0.038971 0.105370 -0.558785 0.438007 -0.448079 0.306429 -0.210119 -0.293461 -0.404864 -0.149592 -0.314530 -0.069773 0.956058 0.109883 -1.159037 0.155683 -0.208359 0.651461 -1.359350 0.696723 -0.294945 0.427503 -0.249285 -0.060098 0.016432 0.024053 0.108936 0.104815 0.182852 -0.077203 0.302424 0.573274 0.148429 0.042696 0.226319 0.391032 0.173494 0.286379 0.086711 0.047288 -0.112431 -0.019251 -0.173544 -0.001625 0.175222 0.500148 -0.312348 0.164947 0.491117 -0.143640 0.496915 0.544567 0.319341 -0.344695 0.068631 -0.105457 1.126214 -0.527652 -0.481206 -0.256343 0.406538 -0.043145 0.300928 -0.922291 -0.835728 -0.047222 -1.484550 -0.434920 0.090775 0.341967 0.105042 -0.198989 -0.621061 -0.393405 0.531514 0.300283 1.245576 0.266423 -0.059689 0.705124 0.333858 -0.203559 -0.371463 -0.052440 0.159645 -0.197619 -0.177496 -0.367104 0.104827 -0.824929 0.411261 0.719449 -0.537992 0.300136 -0.257901 0.561428 -0.933663 1.052552 0.393980 -0.845604 0.275189 0.309466 0.897806 -0.615964 -0.549620 -PE-benchmarks/box-stacking.cpp__max(int, int) = -0.412424 -0.733312 1.172376 0.776973 0.208506 0.143927 0.512441 0.134319 0.210559 0.616499 -0.383314 0.770448 -0.727375 -0.019082 0.096625 0.294164 -0.564760 -0.811733 0.131326 0.066101 -0.291561 -0.454387 -0.070927 0.582450 0.701587 0.251006 -0.596022 -0.222541 -1.041621 -1.090796 -0.481009 -0.107869 0.507910 -0.028404 0.454097 -0.942191 0.350480 0.686188 0.078828 -0.913779 0.396112 -0.245405 0.160508 -0.026042 0.149159 0.608505 0.923192 0.232428 0.350975 0.393871 0.031744 -0.501966 0.154906 0.621812 0.176981 0.481055 0.699019 -0.355246 0.059723 -0.271251 0.108353 -0.840287 0.259306 0.241627 -0.438744 -0.155154 0.113823 -0.192873 -0.381914 0.445254 0.309702 -0.243114 -0.597814 -0.490496 -0.513537 -0.084902 0.346651 0.463825 1.055413 -0.396703 0.918618 0.300885 0.653582 -0.080269 0.226073 -0.109560 0.344258 0.111173 -0.432075 -0.260215 -0.658018 -0.529738 -0.445475 0.900005 -0.099517 0.291011 0.355809 -0.693582 -0.896855 0.241376 -0.123783 -0.244840 -0.658220 0.503140 0.424595 0.638013 0.104179 -0.621657 -0.485236 0.034055 -0.400094 -0.082157 0.068595 -0.161509 -0.473427 0.061912 -0.820941 0.077321 0.332662 -0.524483 -0.357562 0.539581 -0.365623 0.867402 0.138562 0.333010 0.138240 0.566741 0.780959 0.159053 0.270960 -0.452273 -1.018496 -0.160400 0.190616 0.452856 -0.584179 -0.012087 -0.019841 0.131349 -0.123823 0.058761 -0.323580 1.074432 0.849589 -0.633412 -0.877728 -0.641988 -0.300736 -0.353829 0.165012 -0.321515 0.009299 0.029589 0.351295 0.031243 -0.033618 1.298341 -0.514203 0.389586 0.196746 -0.299990 0.079644 -0.083604 0.405540 -0.545163 -0.302323 0.397046 0.602608 0.257245 -0.003908 -0.117690 0.295153 -0.561927 -0.580963 0.536304 0.159620 0.286941 0.567742 0.434162 0.979080 -0.524582 -0.273994 0.148590 0.008260 -0.340258 0.249994 -0.732476 0.580051 -0.054981 0.231766 0.768457 0.114483 -0.504811 0.724408 -0.038971 0.105370 -0.558785 0.438007 -0.448079 0.306429 -0.210119 -0.293461 -0.404864 -0.149592 -0.314530 -0.069773 0.956058 0.109883 -1.159037 0.155683 -0.208359 0.651461 -1.359350 0.696723 -0.294945 0.427503 -0.249285 -0.060098 0.016432 0.024053 0.108936 0.104815 0.182852 -0.077203 0.302424 0.573274 0.148429 0.042696 0.226319 0.391032 0.173494 0.286379 0.086711 0.047288 -0.112431 -0.019251 -0.173544 -0.001625 0.175222 0.500148 -0.312348 0.164947 0.491117 -0.143640 0.496915 0.544567 0.319341 -0.344695 0.068631 -0.105457 1.126214 -0.527652 -0.481206 -0.256343 0.406538 -0.043145 0.300928 -0.922291 -0.835728 -0.047222 -1.484550 -0.434920 0.090775 0.341967 0.105042 -0.198989 -0.621061 -0.393405 0.531514 0.300283 1.245576 0.266423 -0.059689 0.705124 0.333858 -0.203559 -0.371463 -0.052440 0.159645 -0.197619 -0.177496 -0.367104 0.104827 -0.824929 0.411261 0.719449 -0.537992 0.300136 -0.257901 0.561428 -0.933663 1.052552 0.393980 -0.845604 0.275189 0.309466 0.897806 -0.615964 -0.549620 -PE-benchmarks/box-stacking.cpp__compare(void const*, void const*) = -0.263569 -0.921904 2.911625 1.858979 -0.364160 0.561158 0.188092 -1.297537 0.753138 0.594900 -0.424570 1.209028 -0.557080 0.146167 -1.166346 0.924692 -1.678020 -0.823154 -0.508592 -1.460141 -0.645319 -0.315274 -0.171457 0.739628 1.230393 0.117059 -1.004331 -0.181721 -1.449506 -2.266662 -0.400259 -0.174302 0.600253 -1.385796 0.714504 -2.763054 1.656443 1.787423 -0.565515 -1.546190 0.909412 -0.497254 -0.110643 0.277682 -0.959507 0.523599 0.303367 0.088497 0.778161 0.921864 0.687519 0.883130 1.245298 2.816501 -0.049629 1.232429 0.815162 -0.430830 -0.066532 0.159248 0.215143 -0.283716 0.264254 -0.387754 0.401230 -1.537418 -0.508958 0.076507 -0.390326 0.695520 -0.127791 -1.406650 -0.741562 -0.763350 -2.025549 -0.683647 -1.064090 0.923578 1.586947 -1.151045 1.084012 0.316266 0.228081 0.409385 0.819625 0.159968 1.152678 0.542769 0.083907 0.345128 0.119833 0.017910 0.492468 0.142086 -1.333708 -2.839341 1.249747 -2.812638 -1.757536 1.045417 0.939327 -1.155340 -0.333244 -0.769368 0.292086 0.487334 -0.976601 -1.033462 -0.206428 0.830227 0.266065 -0.379044 0.288376 -0.704972 0.371772 0.463760 -1.618637 1.158059 0.599374 0.186960 -0.579659 1.532037 0.614341 0.133935 -0.136182 1.021189 -0.741027 1.336375 -0.166443 1.075485 -1.668254 0.928597 -1.170005 0.380302 0.482248 -1.331700 -0.921060 -0.399904 -0.548504 0.670429 -0.518709 1.174093 -0.923878 1.290012 1.369147 -0.343638 -1.065639 -0.918441 -1.348192 -1.557926 -0.072642 -0.264629 -1.920116 0.321012 0.998980 0.758545 0.807046 0.421071 0.041640 -0.234960 -0.084039 -0.604494 1.053581 -1.218919 0.894611 -0.797914 -0.762279 0.848573 0.582666 1.398669 0.184348 0.347360 0.404020 -0.710108 0.162050 0.606967 1.061031 0.226605 1.541173 1.674181 1.846398 -0.401133 -0.435416 0.545488 -1.058115 -0.018445 -0.066219 -1.171764 -0.011299 0.779995 0.142596 2.046767 -0.030946 0.108657 0.965495 -0.213725 0.507709 -1.075425 0.389854 -0.870385 -0.008056 -0.396449 -0.248474 -1.156693 -0.042709 -1.412771 -1.961863 1.853235 -2.484715 -0.997157 1.558970 -0.458894 0.529228 -1.639076 1.465490 -0.831032 1.533588 0.048369 0.078208 0.018515 0.055027 -1.389907 0.878885 0.468403 -0.935019 0.540068 1.383285 0.676753 0.088291 -0.560381 1.408558 -1.156672 1.478215 -0.920234 1.434596 -0.592209 -0.583359 -0.225967 -0.094054 -0.811415 -0.335547 0.737159 0.183471 -0.200921 0.423637 -0.043698 1.274876 1.305737 -0.804387 1.053603 -0.470722 0.484368 -1.015905 -0.906701 0.478467 0.990063 0.244841 0.092020 -2.188308 -1.060425 -3.211171 -1.237280 0.369128 -0.262979 0.147013 -0.247948 -0.636630 -1.363147 -1.595389 2.651068 -0.219922 0.133580 1.289845 0.312971 1.367210 1.194064 0.031841 0.375930 -0.665727 0.091538 0.449451 -0.595984 -1.049627 1.491246 -1.106379 0.382197 1.766712 -0.794810 1.158375 0.921488 0.123071 -1.464939 1.539783 0.286314 -1.096765 0.763848 1.702911 1.201363 -0.774932 -0.907279 -PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -7.653223 -17.297962 31.445038 22.398158 -6.049356 8.240907 4.516061 -7.174379 -0.806860 9.472602 -7.417123 17.618321 -12.195175 -2.634009 -0.216206 4.297413 -20.687624 -10.127381 -2.862887 -9.479273 -9.782639 -4.444152 -11.107759 21.741540 13.329322 5.864534 -9.863193 0.454756 -16.748506 -22.934431 -11.573469 0.025779 11.025345 0.949230 14.038233 -36.076130 13.801523 20.827983 -1.365238 -16.527309 6.786016 -7.213328 -1.972172 -0.126881 -14.238579 6.509301 11.810847 2.116098 4.576861 5.466321 1.384272 -3.397953 15.839283 31.281398 9.376948 16.395974 19.152727 -9.783368 3.707511 -3.540852 2.316280 -13.695741 6.235186 -2.473617 -2.024564 -10.376609 0.357111 -3.690377 -1.570770 6.879799 7.706997 -15.670146 -8.074113 -14.673587 -19.139098 -9.183155 -4.006782 12.364434 21.099152 -16.245432 20.917299 9.003880 6.684282 4.627744 15.248807 0.339157 19.155010 4.769476 -4.927244 5.702447 -2.802540 -8.463002 2.832886 13.818838 -13.536936 -14.569663 10.737072 -29.397760 -24.778912 14.213409 2.415777 -13.773086 -6.937285 -5.440885 4.477733 3.815948 -6.734374 -13.652073 -8.476157 8.924181 -7.546908 -5.365564 -3.647270 2.735203 1.184561 7.023009 -21.226731 11.916285 11.828813 -3.376332 -5.785764 19.266260 6.348155 13.742529 -0.207441 7.477886 -2.710748 15.599169 6.327191 5.047127 -11.087368 0.134930 -12.870103 -0.712207 4.907952 -10.490646 -12.437606 -9.697233 4.509924 9.360652 0.096861 15.050171 -6.029203 29.851808 10.560448 -4.329949 -15.220108 -18.213033 -18.969858 -15.176523 0.192576 -6.489696 -18.712121 8.671470 11.403457 4.708615 -0.495164 7.168934 -0.476740 7.540272 0.800358 -5.349019 4.774395 -11.316399 9.833641 -13.897284 -8.173952 11.804333 9.712857 16.353956 1.121402 -0.345126 5.669642 -7.035688 -11.184717 9.963598 5.697735 4.484689 20.767430 18.960987 43.010380 -8.368328 -1.826228 0.290205 -8.115704 -3.556471 2.686581 -13.559438 2.675627 5.450543 -3.502662 26.975959 0.779788 -5.792115 9.881972 -0.615209 2.375661 -15.582790 12.383965 -8.789771 5.364291 -4.366203 -5.342918 -13.467507 -4.619309 -16.278678 -13.451068 25.613461 -31.722909 -17.474814 13.135350 -0.212776 13.065395 -26.198260 24.687554 -9.119151 19.406407 -5.645718 -12.107155 2.313790 -0.686262 -7.152271 13.572958 5.856078 -10.655207 2.031485 11.659918 5.404815 6.429499 -0.352469 12.088208 -5.650453 9.879058 -9.269751 11.767440 -1.526195 -3.882721 -10.271073 -2.906975 -2.155777 7.449959 3.100745 -1.780744 5.388647 0.965537 -1.940965 17.498340 5.802385 -8.524290 3.936294 -4.912001 14.567747 -15.648186 -12.998938 -1.985343 11.089059 5.871684 3.252129 -27.484198 -11.694306 -28.337954 -13.356263 -9.062566 8.067272 8.224126 4.892168 -6.034665 -17.388569 -15.556984 30.296432 -0.836585 8.321143 13.581436 6.129620 20.054011 10.197454 9.584752 -5.485969 -4.034409 4.666138 -0.180593 0.218686 -13.357168 11.916958 -16.485197 13.579100 18.589520 -7.835269 14.621114 5.215571 9.184098 -21.692528 19.745777 5.880530 -24.139402 2.980761 24.534850 5.631222 -16.582724 -13.237788 -PE-benchmarks/box-stacking.cpp__main = 0.161997 -0.576514 1.368491 0.921493 -0.348870 -0.007296 0.410149 -0.215148 0.348950 -0.386550 -0.444061 0.453193 -0.680774 0.238339 -0.520523 0.357674 -1.184146 -0.626392 -0.045182 -0.213792 -0.088340 -0.206324 0.428750 0.294048 0.726960 0.786717 -0.380596 -0.455324 -0.733187 -0.087988 0.507470 -0.281405 0.491809 0.554615 0.039547 -1.403087 0.473118 0.510549 -0.319615 -0.839658 0.608292 -0.470856 -0.018951 -0.744640 -0.218572 0.122679 0.347566 0.845096 0.320993 0.296195 -0.439915 0.015951 0.285567 1.197301 -0.248364 0.338480 0.696637 -0.072784 -0.068910 -0.236319 0.238139 -0.175940 0.168161 0.195469 -0.112533 -0.670702 -0.375018 -0.789271 -0.412382 0.391474 0.062784 0.343275 -0.660130 -0.141286 -0.678760 -0.020462 -0.738046 0.931057 0.993442 -0.908194 0.634819 0.060806 0.277190 -0.053080 -0.044524 0.347868 -0.007288 0.316367 0.036465 -0.203823 -0.792654 -0.194656 0.108605 -0.458136 -0.254375 -1.346255 0.583391 -0.907005 -0.707396 0.128124 0.332688 -0.414679 0.338443 0.152177 0.009916 0.624577 -0.432103 -0.400254 0.079497 -0.057538 0.178306 -0.076656 0.110163 0.351107 -0.241961 -0.521239 -0.987170 0.361990 0.037957 -0.287844 0.362356 0.490598 -0.153453 0.221841 -0.020746 0.201519 -0.299286 1.046814 0.273594 0.124374 0.200666 0.140612 0.031509 0.260483 0.613912 0.966024 -0.616914 -0.018913 -0.214302 0.185987 -0.227955 -0.502474 0.022165 0.310229 0.198653 -0.725805 -0.676898 -0.571875 -0.493477 -0.852648 0.019986 -0.424846 -0.116256 0.685882 0.519207 0.503725 0.498884 1.047847 -0.556528 0.158638 0.052402 -0.192701 0.354298 0.400482 0.452679 -0.358949 -0.392443 0.352686 -0.048838 0.397119 -0.003820 0.131740 0.247367 -0.802470 -0.117800 0.422875 0.546827 -0.210869 0.574518 0.558140 -0.344768 -0.332938 -0.146077 0.436723 -0.290333 -0.226497 0.325758 -0.770854 0.568281 0.048704 0.047611 0.427146 0.102795 -0.281868 0.521704 -0.228450 0.053534 -0.359767 -0.041704 -0.343782 -0.293491 -0.577494 0.474418 -0.220061 -0.321319 -0.391155 -0.435070 0.925372 -0.770334 -0.286665 0.276195 0.068843 0.516635 -0.895090 0.783348 -0.480830 0.782205 0.216982 -0.143166 0.170823 -0.435790 -0.547367 -0.202668 0.279652 -0.046653 0.073238 0.600583 0.483402 -0.149708 0.095503 0.716082 -0.215362 0.714678 -0.158014 0.259426 -0.256243 -0.496748 0.248246 -0.069459 -0.193738 -0.145866 0.309390 1.156829 0.181225 0.789398 0.907204 0.266285 0.844051 -0.489582 0.117887 -0.216851 0.792500 -0.367101 -0.317482 -0.001025 0.578016 -0.131273 0.396081 -0.934391 -1.458652 -0.991030 -0.812867 0.005398 -0.698021 0.268488 -0.297521 -0.064864 -0.802613 -0.578550 0.029154 -0.250534 0.576063 0.607166 -0.012366 0.639703 0.508241 -0.569582 -0.139816 0.490183 0.752747 0.192768 0.117026 -0.878729 0.480472 -0.705113 -0.068043 1.226397 -0.528056 0.248177 -0.234066 0.993159 -0.575824 1.159226 0.299007 -0.962072 0.513439 0.673383 0.468626 0.480365 -0.496805 -PE-benchmarks/shortest-common-supersequence.cpp__superSeq(char*, char*, int, int) = -2.768050 -9.785063 12.868645 10.047665 -0.099656 4.784132 5.022228 -1.356987 -1.596786 6.002033 -3.236223 8.987074 -6.947640 -2.451081 0.266059 0.354768 -6.571451 -6.242775 0.063076 -1.729490 -2.444304 -3.646330 -5.769918 12.851102 6.101287 0.382895 -3.969063 -1.853288 -12.364030 -7.147721 -6.865204 0.754207 5.371432 1.966820 7.707612 -8.472031 4.204432 10.631268 1.274058 -8.121572 2.347740 -2.667486 -0.173643 1.273319 -4.147271 4.649109 7.053241 1.398099 1.506797 2.875419 1.755391 -3.678499 7.105346 8.759962 5.841291 8.050148 7.875177 -3.829474 5.385717 -2.905625 0.849145 -7.698518 2.962156 -1.049727 -1.755734 -2.319517 -0.878518 -0.019378 -0.618428 2.536289 5.561061 -4.740803 -5.462059 -5.041302 -8.410962 -3.587950 -0.721210 4.138999 9.903204 -5.279254 11.227400 6.237018 5.307818 -0.208404 7.521125 -0.215720 6.894408 1.713226 -3.298206 3.605662 -7.470246 -3.627572 -1.415283 5.700290 -6.475823 -4.029225 3.630482 -12.014168 -12.091107 6.516478 -1.097284 -6.535546 -0.899898 1.344864 2.038779 2.313270 -2.583291 -7.220444 -3.963159 4.444167 -4.145060 -2.605904 -0.229796 0.897875 0.684401 1.544609 -7.866621 4.178219 6.424929 -3.116506 -1.875513 9.101152 1.648676 9.328660 0.504613 1.685996 0.267946 4.966255 6.237039 0.968076 -3.598133 -4.725364 -7.804050 0.038668 1.098382 -3.695140 -5.799180 -3.487702 3.298954 4.843911 3.060712 8.362858 -0.267365 12.886989 2.996669 -3.502183 -6.561165 -9.175148 -7.558205 -3.221979 0.821401 -1.191136 -6.858540 0.468604 4.823784 0.581944 -1.445174 2.707142 2.130139 2.859460 1.399536 -2.050966 0.188296 -4.673373 3.775859 -5.644349 -4.070064 6.060200 6.034058 7.589752 0.726510 0.112870 2.476753 -1.759469 -5.042968 1.848861 1.406331 2.496645 11.356852 8.092338 13.929822 -1.475815 -1.868205 -0.771807 -1.971765 -1.548796 0.901580 -6.761485 3.360943 0.944518 -2.895930 11.575556 -0.431149 -1.946148 7.677648 -0.139943 1.453272 -8.434798 6.035993 -4.442425 2.485199 -3.495977 -1.474300 -5.937474 -2.833877 -7.132854 -4.405057 11.677067 -8.219108 -7.626300 2.419282 -0.029794 4.530595 -10.759118 9.538419 -3.173607 6.504029 -0.921275 -5.734861 1.320389 1.303821 -1.213603 3.228996 2.708389 -6.007754 2.786289 3.002789 1.446080 1.118054 1.724509 4.026532 -1.047867 2.512446 -4.405257 3.390867 -0.193514 -0.778596 -3.743618 -1.295450 1.359331 5.284386 -1.136819 -0.991897 3.077189 -0.711392 -1.217908 7.081317 0.833855 -3.406777 -1.007868 -1.697275 7.497962 -7.727818 -5.485604 -3.373387 2.610514 2.670287 1.346062 -12.127358 -4.349332 -7.710891 -6.819605 -4.216754 2.217962 3.561459 4.621485 -2.754736 -8.739862 -7.327339 10.191327 0.408689 1.923897 6.175128 1.456361 9.796533 3.473465 4.517673 -1.786169 -1.133472 2.538475 -1.336938 -0.445033 -4.478392 3.371760 -8.533009 8.142913 7.598273 -4.012356 6.699819 -0.119400 5.808867 -11.027541 9.855233 3.533469 -11.840478 0.205028 9.068058 3.490801 -9.388872 -6.013009 -PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/shortest-common-supersequence.cpp__main = 0.818561 -0.710190 2.533997 1.653513 -1.296270 0.032332 -0.186148 -0.563935 0.464656 -1.443101 -0.913148 0.826792 -0.752394 0.405871 -0.707369 0.120894 -2.702446 -0.524504 -0.395164 -0.524010 -0.323022 -0.161444 0.372862 1.010244 1.122888 2.663418 -0.622275 -0.265699 -0.637273 0.647512 1.018046 -0.295091 0.743777 1.987034 0.719030 -2.281351 0.663015 0.627767 -0.432045 -1.340938 0.872860 -0.699045 -0.076873 -1.449546 -0.625997 0.058693 0.300352 1.805564 0.482567 0.032248 -1.604398 0.073902 0.751902 1.904739 0.029455 0.383323 1.231339 -0.435998 0.141518 -0.648794 0.312046 -0.197363 0.079528 0.068404 -0.079868 -1.440969 -0.411929 -1.383066 -0.272116 0.874385 0.261321 0.470462 -1.049259 -0.816995 -1.396501 0.063500 -1.323977 2.301724 1.413943 -1.603014 0.561186 0.062899 0.266027 0.127651 0.116006 0.564534 0.457441 0.569544 0.308120 0.023251 -1.539767 -0.614041 0.508885 -1.628498 -0.621555 -2.620309 0.716559 -2.961804 -1.108615 0.181293 0.862654 -0.900241 1.218147 -0.081524 0.105070 0.619343 -0.359306 -0.254494 0.703800 0.091645 0.140323 0.030705 -0.083764 1.084109 -0.067085 -0.492909 -1.602686 1.168617 0.019012 0.174892 1.242851 0.966768 0.206827 0.059212 -0.123705 0.388613 -0.514179 1.808568 0.247925 -0.052426 0.011481 0.553108 1.743299 1.072053 0.739997 0.945895 -1.244964 -0.509952 -0.254993 0.344999 -0.510801 -1.007407 -0.190559 0.408283 -0.261635 -1.136143 -1.102073 -1.086442 -1.759043 -1.762530 -0.378659 -0.356226 -0.882645 1.406014 0.728192 1.530951 0.793156 0.448822 -0.722595 -0.335874 0.192335 -0.074691 0.606157 1.065790 0.636728 -0.685426 -0.382699 0.500043 -0.719422 0.730371 -0.002104 0.235531 0.277095 -1.084754 0.121761 1.129881 1.281673 0.273313 1.144763 1.319884 -0.751989 -0.279343 -0.329478 0.706655 -0.674199 -0.627076 0.606422 -0.910724 0.941619 0.170556 0.481602 0.951483 0.011267 0.206452 0.579346 0.003198 0.169017 -0.441261 -0.336010 -0.417702 -0.555053 -0.964932 1.017271 -0.612665 -0.336077 -1.081955 -1.257996 1.610699 -2.355438 -0.162706 1.063625 -0.031477 1.284419 -0.931231 0.548328 -0.745507 1.755306 0.703063 -0.478557 0.250039 -1.964975 -1.356005 0.019548 0.354056 -0.087889 -0.379023 0.380778 0.881043 -0.148117 -0.028720 1.039655 -0.620872 1.593127 -0.479476 0.452828 -0.384744 -0.529840 0.245870 0.025305 -0.630072 -0.313708 0.699601 1.724279 0.025342 2.084050 1.284417 0.388461 1.213903 -0.831376 0.071689 -0.621837 0.609172 -0.799118 -0.851945 0.275401 1.151603 -0.047067 0.349823 -1.694238 -2.435346 -2.647956 -0.646835 -0.247271 -1.778098 0.274539 -0.294191 -0.405730 -0.978446 -1.120156 -0.043252 -0.221112 0.594436 0.901377 -0.207300 1.129737 0.997901 -0.826572 -0.071523 1.063010 1.238552 0.466912 0.534109 -2.288114 1.312531 -0.652055 -0.184792 2.659256 -1.100332 0.782268 -0.220610 1.437004 -1.086030 1.699082 0.403741 -2.161269 0.346338 1.067060 0.125751 1.188716 -0.982190 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -3.860311 -5.684710 9.721819 6.581705 1.345561 2.353007 3.818350 -1.979158 3.739127 5.026952 -2.072552 4.923141 -5.476390 -0.410933 0.884274 2.303994 -5.277022 -6.025027 0.681418 -2.504029 -2.846024 -4.014448 -1.250159 4.251645 4.283844 -1.386472 -3.793588 -1.311277 -8.367901 -7.131223 -1.357786 -1.585215 3.939300 -2.293494 2.859169 -12.930164 4.810339 5.503693 -0.525574 -7.063196 2.404155 -3.668007 1.222034 0.289175 -0.393827 2.632285 5.143992 2.075899 3.388403 2.555026 1.781768 -2.052266 1.054149 10.215389 -0.818258 4.874359 4.889923 -3.067459 -0.908209 0.131128 0.900814 -5.024036 3.783176 2.158002 -3.334476 -2.879589 1.511153 -1.602607 -4.446152 3.280993 3.139740 -3.437319 -3.394963 -2.684057 -4.481748 -2.712985 2.289661 3.362469 8.915645 -3.829594 8.101244 2.520469 4.960342 0.857582 4.336349 -0.205557 6.349808 0.823209 -4.299229 -1.938483 -6.225111 -2.529010 -1.554249 5.417441 -1.178501 -1.257742 2.461990 -4.995118 -7.953520 3.247906 -0.128353 -1.866557 -6.864249 0.846132 4.323081 3.564029 -1.448700 -6.398099 -4.686930 2.143871 -4.536593 -1.636766 0.230388 -3.381127 -2.574199 -1.008720 -6.824302 0.630975 3.182470 -3.322732 -4.960822 6.398522 -3.319615 4.730065 0.696651 3.000691 -0.403439 3.919522 3.053820 1.803049 1.353932 -3.794714 -9.441734 -1.160534 1.166814 2.935587 -3.049859 -1.039928 -0.270574 2.002803 -1.970208 2.684542 -1.765929 9.087949 5.407042 -3.606224 -5.395637 -4.769380 -0.887907 -4.392364 1.943546 -3.309790 -2.430882 -0.099581 4.467518 1.725276 1.064023 7.389683 -3.313677 5.336749 0.051472 -1.374033 2.570584 -2.021015 4.293082 -4.777088 -2.755061 2.493261 4.929401 2.409149 -0.038736 -1.585027 1.800094 -4.974391 -4.894185 1.532160 1.314547 1.753478 5.414126 4.385397 13.492149 -7.348741 -0.295886 1.678165 -0.808599 -1.255948 0.833648 -5.752195 2.506538 1.384354 -0.166061 8.131027 0.505713 -5.497532 2.871495 0.428352 1.141323 -4.832990 3.180104 -3.637263 0.912078 -1.206269 -2.521080 -4.919455 -2.473814 -4.328407 -1.953420 8.173719 -2.473483 -9.674272 4.149743 -2.933948 4.778994 -12.039096 8.739088 -3.907942 3.929550 -3.783389 -1.586401 -0.939491 2.869537 -1.633813 3.881259 2.213835 -2.551757 4.125988 6.450324 2.323597 3.135061 0.601954 4.114794 0.139566 1.895669 -1.523234 3.632724 -1.552110 -1.234373 -1.950168 -1.565960 1.875597 3.257541 -0.485273 0.423784 4.710201 -1.558189 2.855634 6.172135 2.358450 -2.994264 2.161960 -1.113677 7.008816 -3.612506 -3.163241 -1.119592 2.106818 0.246519 2.708257 -8.666329 -5.858302 -2.476355 -9.520458 -1.885906 2.767855 1.593648 1.357811 -0.112765 -7.996931 -2.827538 5.225220 0.690757 8.017322 3.377143 1.456977 5.903173 4.283646 -0.633346 -3.404706 -0.792330 -0.027393 -2.356041 -2.287776 -3.602159 3.074921 -6.571807 5.061143 5.240479 -2.932630 2.001017 -0.979805 3.526729 -6.815273 8.136016 3.344806 -5.475522 2.510273 4.360461 7.969551 -4.990331 -4.380283 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__findMaxSum(int (*) [5]) = -1.244711 -4.730833 9.878040 6.648082 -1.308846 1.446894 2.653898 -2.151976 2.012142 -0.530625 -2.658650 4.419342 -5.388732 0.404015 -1.443873 0.764816 -7.767894 -5.158584 -0.814084 -2.126444 -1.905035 -2.701149 -0.055439 5.259253 4.516604 3.066708 -3.688753 -0.908817 -7.639502 -2.765465 0.659270 -0.805747 3.918361 1.843804 2.723514 -11.203241 3.996390 5.401992 -0.818817 -6.293688 3.500448 -4.174355 -0.282586 -2.968686 -2.123031 1.666237 3.192004 4.129301 2.568770 0.929974 -1.789493 -0.682920 0.623211 8.576541 -0.463203 3.808474 5.381874 -1.992266 -0.329924 -1.329622 0.709611 -3.169261 2.342457 1.344605 -3.065760 -3.802050 0.665368 -3.548117 -3.002348 3.521171 2.920741 -1.311064 -3.532260 -2.575011 -5.901783 -1.190544 3.242190 5.307926 7.458930 -4.893834 5.938007 1.001966 3.005647 0.366277 2.913911 0.746883 4.522002 1.207049 -1.419261 -1.865427 -7.903751 -2.144899 -0.483491 1.569918 -2.104788 -4.583114 2.899075 -8.328623 -6.983194 1.387268 0.932413 -3.851680 -2.276487 1.342875 2.377342 3.224370 -0.973641 -4.294265 -1.645121 2.340053 -2.691369 -0.953784 0.150957 0.654362 -1.714333 -2.727402 -7.233896 2.925592 2.200534 -1.572036 -0.742510 5.566797 -2.682156 3.203997 0.489734 2.066108 -1.227439 5.384003 1.881040 0.001273 0.923392 -2.195360 -2.036612 -0.323974 1.877210 4.778224 -4.622798 -1.727751 -0.203336 1.940818 -1.864053 -0.517002 -1.540093 6.132461 1.848585 -4.736550 -5.046761 -4.831941 -3.728400 -5.461313 -0.000223 -2.599366 -3.297904 2.778703 4.003902 3.335469 1.593897 6.970982 -2.612744 3.258471 1.235394 -1.832132 2.379138 -0.318208 3.547317 -4.065916 -3.187296 3.152668 0.754104 3.619417 -0.715954 0.467541 1.338677 -5.181788 -4.137512 2.545354 2.488153 2.071535 5.631398 5.351780 5.480372 -5.015375 -0.081754 2.090541 -1.986965 -1.749577 1.595076 -4.974904 2.580027 1.325638 -0.025359 7.427907 0.419989 -3.756348 2.954833 0.497245 1.229753 -4.635807 1.700024 -2.758755 0.592164 -3.177531 -0.565079 -3.166542 -2.446537 -4.777483 -4.124626 7.798386 -5.250237 -7.868022 3.827551 -0.780148 5.975163 -10.187734 4.839106 -3.378322 6.014371 -0.362481 -1.308570 0.646808 -2.109758 -3.672253 2.745909 1.735422 -1.969367 2.027115 4.557370 2.884774 1.510500 0.127403 4.108409 -0.647682 3.895450 -2.454496 2.680467 -1.392235 -2.653567 -0.289474 -1.026756 -0.266934 1.744713 1.086867 3.633343 3.395907 3.343348 4.433044 4.658439 3.863020 -2.883733 0.660819 -1.592183 5.081489 -3.247002 -3.551932 -0.402483 3.433016 0.365538 2.357931 -8.130543 -8.674315 -5.647712 -9.234181 -0.464210 -2.159900 1.999471 0.608106 -0.914197 -7.091655 -3.736904 3.200776 -0.029599 9.272828 4.059565 0.547829 5.374617 4.170319 -2.543547 -1.487662 2.569142 3.570758 -0.725699 -0.421764 -6.365371 4.057215 -5.200335 3.099682 8.046755 -3.892387 3.390552 -2.413338 5.253917 -6.191455 8.309556 2.596180 -7.790734 2.134052 3.897466 4.094483 -0.238546 -4.276799 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 0.257267 -0.303793 0.963445 0.689449 -0.279384 -0.064943 0.173832 -0.270030 0.414871 -0.250016 -0.325759 0.186877 -0.483137 0.299463 -0.325886 0.465623 -0.957476 -0.430546 -0.038788 -0.165945 -0.081692 -0.220059 0.530866 0.006470 0.516698 0.683318 -0.290745 -0.223247 -0.276933 -0.158972 0.502333 -0.331838 0.331134 0.589508 -0.018181 -0.806925 0.470386 0.188453 -0.286252 -0.499311 0.387567 -0.297479 0.023855 -0.642385 -0.087057 0.145574 0.170593 0.673247 0.386516 0.260199 -0.218569 -0.029908 0.226834 0.658304 -0.361176 0.165744 0.312949 -0.051709 -0.069119 -0.167274 0.202599 0.023005 0.128572 0.319450 -0.045731 -0.559181 -0.320560 -0.609644 -0.388346 0.418267 -0.089703 0.414512 -0.623298 -0.043984 -0.328675 0.042589 -0.833012 0.716143 0.785481 -0.598324 0.337012 0.051938 0.182617 -0.107549 -0.127857 0.252207 0.042851 0.245902 -0.042008 -0.110865 -0.367862 -0.206686 0.160429 -0.443606 -0.065248 -0.927916 0.311915 -0.610943 -0.435426 0.045386 0.319556 -0.152710 0.268124 0.136283 0.086298 0.390719 -0.288469 -0.311465 0.249104 -0.204855 0.201575 -0.030317 0.045121 0.202601 -0.228972 -0.279709 -0.739567 0.088355 -0.155882 -0.275720 0.381336 0.263202 -0.064825 0.004351 -0.020157 0.121395 -0.218105 0.805222 0.126534 0.267033 0.169910 0.233732 0.136831 0.341267 0.536621 0.577771 -0.327560 0.039653 -0.278710 0.074337 -0.362264 -0.467192 0.031867 0.082244 0.217974 -0.531091 -0.532376 -0.249334 -0.394649 -0.732383 0.133589 -0.395665 -0.011476 0.450134 0.395733 0.342619 0.545936 0.735961 -0.530392 0.055614 -0.063813 -0.025632 0.393126 0.415720 0.362808 -0.201944 -0.228861 0.282790 -0.057883 0.135608 0.064407 -0.037462 0.183457 -0.641933 0.052263 0.412266 0.385918 -0.199117 0.294501 0.249751 -0.367872 -0.066026 -0.007110 0.505145 -0.028953 -0.152189 0.278116 -0.575004 0.534689 -0.034981 0.164030 0.083658 0.058233 -0.171209 0.283640 -0.199142 0.091768 -0.247982 -0.158853 -0.195667 -0.148663 -0.476039 0.516754 -0.089572 -0.244788 -0.069847 -0.118715 0.591283 -0.457560 -0.028829 0.323123 -0.034232 0.400984 -0.420240 0.513236 -0.381027 0.527760 0.129478 -0.084995 0.129451 -0.444751 -0.380238 -0.239101 0.220418 0.168773 -0.012677 0.362588 0.395557 -0.143830 0.097248 0.545293 -0.091483 0.592298 0.013840 0.222386 -0.147524 -0.227125 0.248111 -0.073138 -0.212501 -0.233576 0.202608 0.934741 0.163960 0.590350 0.789702 -0.011791 0.703120 -0.392182 0.156216 -0.137647 0.480236 -0.252024 -0.169858 0.105082 0.372939 -0.284565 0.336238 -0.593085 -1.082194 -0.692880 -0.392828 -0.136122 -0.502342 0.236059 -0.290882 0.015680 -0.373663 -0.346042 0.097765 -0.205849 0.308701 0.348936 -0.061563 0.366204 0.449977 -0.465777 -0.179317 0.251105 0.485344 0.185191 0.180676 -0.694024 0.421676 -0.492560 -0.161172 0.874611 -0.473068 0.004549 -0.236758 0.773712 -0.331939 0.770856 0.222774 -0.483002 0.512262 0.396165 0.352064 0.573543 -0.341074 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__minCoins(int*, int, int) = -2.439632 -5.993130 8.786898 6.547758 0.573973 2.507981 3.229063 -1.277078 1.317081 4.390946 -2.377506 5.460286 -5.403116 -0.848341 0.787985 1.390980 -4.792754 -5.015420 0.228509 -1.171936 -2.201279 -3.277933 -2.130999 6.450333 4.213211 0.047367 -3.218229 -0.589374 -7.949787 -6.109268 -3.275367 -0.447513 3.670463 -0.263966 3.916347 -7.879192 3.779559 6.258507 0.362775 -6.351089 2.053511 -2.795472 0.216888 0.129374 -1.324536 2.748094 4.821535 2.015803 2.015257 2.100377 0.867015 -2.482614 2.751690 7.172645 1.711769 4.990847 5.594463 -2.458260 1.078240 -1.182055 0.782088 -4.956303 2.684114 1.080314 -2.637999 -1.926599 0.757561 -0.937360 -2.377122 2.569296 3.109411 -3.300405 -3.582980 -3.384193 -4.232884 -1.786221 1.759987 3.255027 7.584743 -3.774927 7.429862 3.072347 3.827658 0.231233 4.201109 -0.445283 5.115881 1.004402 -3.170084 -0.688092 -5.468810 -2.857818 -1.168619 4.425329 -2.548363 -0.683018 2.434605 -6.128726 -7.912912 3.169107 -0.596553 -3.245701 -3.410232 1.524918 2.769464 2.674523 -0.732740 -5.250958 -3.145291 2.457484 -3.554589 -1.780839 -0.539727 -0.615207 -1.486700 0.258731 -6.271345 1.511861 3.624760 -2.995351 -2.569555 5.620299 -1.451949 5.668722 0.495976 1.739988 0.534856 3.620744 3.871575 1.040365 0.383457 -3.357225 -5.754560 0.101294 1.019589 0.173411 -3.685676 -0.621390 1.405205 2.336821 0.128558 3.470462 -1.692556 8.643018 2.746957 -3.211011 -5.058001 -5.335424 -3.546437 -3.100823 1.344814 -2.406408 -3.209850 0.512780 3.703796 0.832049 -0.387302 5.557681 -1.930735 3.490109 1.152741 -1.189770 1.035090 -2.090387 3.192933 -4.401426 -2.944146 3.516435 4.327795 2.790899 -0.154614 -0.543187 1.713384 -3.392957 -4.180790 2.022002 0.640304 1.773923 6.261526 4.410586 11.182259 -3.629151 -0.534122 0.520411 -0.782287 -1.325791 0.681099 -5.305346 2.452395 0.636552 0.228030 7.847130 0.327067 -3.606296 3.754822 0.166447 0.878808 -5.140751 4.002832 -3.189595 1.397190 -1.580219 -1.651310 -3.461954 -2.217991 -4.138591 -1.607317 7.825815 -3.570843 -7.600795 2.604844 -1.168670 4.360922 -9.409234 7.299421 -2.907736 4.259846 -1.598737 -2.642356 0.356316 0.625200 -0.958700 2.586075 2.024720 -2.234784 2.612656 3.808955 1.425298 1.707636 1.173946 2.828332 -0.092222 1.824312 -1.963079 2.515886 -0.476766 -0.896310 -2.234081 -1.311125 1.357565 3.270513 -1.257635 0.274533 3.663291 -0.877449 1.628530 4.592314 1.535135 -2.632534 1.088216 -0.977361 5.998610 -4.273989 -3.331446 -1.645840 1.835996 0.934433 2.393170 -8.019696 -4.714087 -3.014419 -7.441061 -2.680845 1.489037 2.639541 1.750934 -1.047637 -6.280864 -3.913646 5.932696 0.728274 6.089038 3.503836 1.332105 5.828379 3.030563 1.118162 -2.213439 -0.554059 1.071533 -1.742854 -1.136362 -2.900721 2.223797 -5.636298 4.805678 5.182933 -2.685117 3.187590 -1.791503 2.837484 -6.852421 6.972303 2.882991 -6.665433 1.221376 4.576143 4.646481 -5.445697 -4.363021 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 0.232879 -0.666037 1.886212 1.267822 -0.467057 -0.028779 0.546590 -0.439900 0.504090 -0.571857 -0.466928 0.563930 -0.920092 0.382856 -0.729955 0.503420 -1.642785 -0.836913 -0.205926 -0.452463 -0.181195 -0.265596 0.690866 0.342580 1.027848 0.923726 -0.610470 -0.638657 -1.017137 -0.090895 0.790011 -0.343813 0.697000 0.619641 -0.006475 -2.098620 0.717973 0.687128 -0.470168 -1.028494 0.893859 -0.670845 -0.049020 -1.027187 -0.372154 0.091646 0.316723 1.014740 0.561247 0.346699 -0.505170 0.195368 0.281320 1.732917 -0.507845 0.434574 0.797163 -0.125332 -0.186232 -0.253965 0.261791 -0.119530 0.254860 0.223774 -0.146486 -1.027203 -0.427689 -1.067874 -0.613888 0.618716 0.112972 0.383774 -0.851161 -0.150758 -0.985409 -0.057909 -0.637711 1.266493 1.276325 -1.202710 0.746559 -0.044621 0.233460 -0.066729 -0.062778 0.445788 0.077883 0.378831 0.144063 -0.371432 -1.126386 -0.166102 0.153681 -0.521276 -0.343270 -1.854142 0.787426 -1.213344 -0.963093 0.098204 0.546120 -0.619185 0.249028 0.121341 0.015644 0.772493 -0.539944 -0.555816 0.061733 -0.002227 0.263137 -0.100967 0.127220 0.316821 -0.329734 -0.777872 -1.352349 0.548938 -0.050352 -0.280617 0.314424 0.684598 -0.317908 0.140029 -0.004616 0.392630 -0.512749 1.342622 0.171979 0.221833 0.293666 0.214762 0.053733 0.167418 0.820038 1.424086 -0.801659 -0.099297 -0.484441 0.236779 -0.476376 -0.645410 0.074841 0.449420 0.290277 -0.998741 -0.904429 -0.626959 -0.573503 -1.235915 -0.006613 -0.567851 -0.212680 0.912175 0.697003 0.722263 0.744493 1.428895 -0.688194 0.292043 0.107339 -0.337873 0.627984 0.417201 0.632282 -0.501395 -0.565175 0.442650 -0.192781 0.589956 -0.079600 0.287352 0.290121 -1.130431 -0.234527 0.439596 0.710781 -0.247925 0.729638 0.815649 -0.326306 -0.622356 -0.097414 0.697698 -0.466140 -0.274177 0.429184 -0.994346 0.656530 0.133139 -0.057384 0.699979 0.125537 -0.478400 0.650887 -0.266278 0.138748 -0.504371 -0.086180 -0.449813 -0.357329 -0.818100 0.450676 -0.286552 -0.423639 -0.552894 -0.694065 1.251810 -1.092527 -0.544162 0.556787 0.069163 0.699574 -1.360411 1.086907 -0.648813 1.008196 0.216674 -0.137633 0.198681 -0.495416 -0.925834 -0.101230 0.336044 -0.140234 0.142325 0.978723 0.676044 -0.125551 -0.033945 1.013938 -0.275971 1.100482 -0.274409 0.515159 -0.363773 -0.749031 0.304240 -0.086836 -0.353969 -0.285811 0.493200 1.513253 0.271166 1.137457 1.196285 0.445674 1.280972 -0.636725 0.253051 -0.304676 0.920359 -0.427934 -0.445793 0.179535 0.789103 -0.199988 0.569472 -1.271690 -2.021614 -1.316202 -1.231321 0.180344 -0.925723 0.325393 -0.432532 -0.151728 -1.140959 -0.776050 -0.034896 -0.328569 0.930882 0.842766 -0.021654 0.812877 0.775660 -0.875629 -0.082888 0.664642 1.016899 0.331811 0.047829 -1.265418 0.778764 -0.911759 -0.100238 1.709339 -0.719467 0.410110 -0.337057 1.299960 -0.784969 1.583730 0.322640 -1.213654 0.787557 0.867902 0.635639 0.751174 -0.639055 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__findLength(char*) = -4.259090 -10.316306 12.980785 9.593199 0.675366 5.000573 5.372166 -0.358007 -0.992289 6.241007 -2.991324 9.828260 -6.988372 -2.931756 0.000000 -0.156225 -5.790415 -6.909077 0.418867 -1.429252 -2.280844 -3.801477 -6.241636 13.196412 5.868589 -0.966156 -4.336736 -1.856547 -13.929484 -7.338387 -7.237936 0.725266 5.393161 -1.891726 7.449046 -10.430612 4.158449 11.254039 1.512361 -9.703062 2.705880 -2.947800 0.610800 2.065856 -4.632875 4.031850 7.687927 0.711412 1.081821 2.730602 0.965570 -3.048977 6.357170 11.142523 5.921425 8.301189 8.918514 -3.606544 4.364325 -2.886606 0.918223 -8.392295 3.017496 -1.296325 -2.293315 -1.944780 -0.507081 0.346959 -1.269928 1.911706 5.249622 -5.431680 -4.491813 -4.834543 -9.510515 -3.793453 3.360433 3.965063 10.145630 -5.565910 11.762995 5.658130 5.781419 1.037842 7.612461 -0.144467 6.353751 1.695947 -3.439219 2.335246 -8.094710 -2.367517 -2.084175 6.149308 -6.231966 -4.115528 4.016678 -11.835958 -12.359900 6.698203 -1.711823 -6.326849 -2.056028 0.714504 2.716378 3.579539 -2.805978 -7.407867 -5.170887 5.039492 -4.297610 -2.798240 0.478230 0.083754 0.461991 0.690159 -7.755854 4.172826 7.045080 -3.262034 -3.040334 9.460078 -0.039668 10.252567 0.549030 2.286366 0.350433 4.626456 7.094698 0.324758 -3.759672 -5.863696 -8.233131 -0.979075 -0.109252 -2.499997 -6.349573 -2.844085 3.296096 4.640040 3.758724 7.924895 -1.039332 12.804633 2.733426 -3.443847 -6.191272 -9.615531 -7.179463 -3.431787 0.350459 -1.250082 -7.109658 1.438690 4.829662 0.577112 -1.993703 4.329576 1.775013 3.343476 1.955385 -2.840468 -0.077050 -5.502248 3.669844 -5.843257 -4.448946 5.489745 6.505427 7.660613 0.166475 0.193140 2.273913 -1.886109 -5.204306 1.266228 1.806023 3.175284 11.218056 7.928048 14.490960 -3.038013 -2.712603 -1.394861 -2.624252 -1.465839 0.041935 -7.013826 2.506897 1.377468 -2.729295 12.343135 -0.355105 -2.980817 8.090484 0.153637 1.522825 -8.319340 6.837229 -4.977352 1.943169 -2.787722 -3.170454 -6.376111 -2.484241 -8.587397 -5.237557 12.016834 -8.351459 -9.423264 1.871771 0.405078 5.012494 -12.337166 9.821045 -3.297007 7.819131 -0.509550 -4.739293 1.163347 1.796500 -0.921902 3.502550 2.816494 -6.352186 3.552237 3.509678 1.431918 1.433752 1.669909 3.806507 -1.044560 2.089340 -4.599111 3.212179 -0.924117 -1.918998 -3.599792 -1.266702 2.205163 5.909221 -1.124960 -2.274694 3.149976 -1.348974 -1.019908 8.191566 0.508911 -3.453320 -0.772266 -2.086432 8.709988 -7.268651 -5.289583 -4.158187 3.505490 3.537294 1.607618 -12.450358 -4.665951 -7.938631 -9.121109 -3.455780 2.126045 2.582319 4.365036 -2.463399 -9.916313 -7.286260 9.822368 0.777622 4.591655 6.367309 1.714738 10.245150 3.309137 3.998934 -1.999808 -0.486311 1.795620 -1.982420 -1.208278 -3.999968 2.730940 -8.818756 8.146233 7.441284 -3.462941 6.731049 0.134057 2.969604 -11.104991 10.513914 3.965483 -11.959008 -0.103246 8.298898 5.037158 -10.427124 -6.379288 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 0.344078 -0.321787 1.248789 0.835616 -0.545086 -0.061527 0.115763 -0.370778 0.362690 -0.800891 -0.384330 0.221430 -0.565909 0.303336 -0.489126 0.226730 -1.348244 -0.490432 -0.226917 -0.316314 -0.108968 -0.161731 0.470014 0.253380 0.602373 1.029714 -0.370855 -0.168190 -0.486247 0.260793 0.723297 -0.229276 0.409755 0.901902 0.132907 -1.191266 0.494632 0.332401 -0.318598 -0.603866 0.518601 -0.511060 -0.054982 -0.965873 -0.276161 0.082861 0.071904 0.868921 0.386095 0.060980 -0.603472 0.103793 0.030593 0.884618 -0.354831 0.178960 0.476551 -0.073486 -0.072088 -0.239069 0.157013 0.056970 0.086036 0.187622 -0.172821 -0.753197 -0.273099 -0.869641 -0.315429 0.519210 0.072949 0.383876 -0.629821 -0.180729 -0.730394 0.026309 -0.607856 1.020358 0.789617 -0.857607 0.308752 -0.071833 0.154261 -0.019722 -0.033159 0.324452 0.176520 0.260427 0.149841 -0.109620 -0.851463 -0.233225 0.203087 -0.697254 -0.217959 -1.291071 0.413692 -1.164732 -0.550226 -0.041430 0.437278 -0.407812 0.380971 0.145786 0.016032 0.406937 -0.264679 -0.245984 0.356562 -0.005010 0.193996 0.034011 0.073646 0.472570 -0.169610 -0.603097 -0.953537 0.445608 -0.111823 -0.045627 0.558108 0.454363 -0.204096 -0.103127 -0.018716 0.130255 -0.390407 1.070839 -0.001863 0.041447 0.092421 0.203362 0.469938 0.290439 0.546183 0.971887 -0.540884 -0.130636 -0.271442 0.127267 -0.467785 -0.693205 -0.001096 0.074362 -0.045439 -0.721915 -0.595009 -0.396414 -0.674537 -0.948265 -0.073278 -0.354278 -0.216695 0.771279 0.455829 0.767260 0.586174 0.838208 -0.481078 0.024651 0.017288 -0.154919 0.451237 0.506124 0.408081 -0.288953 -0.297724 0.354708 -0.450872 0.395920 0.013851 0.130618 0.168726 -0.795084 -0.075270 0.481278 0.562021 -0.033271 0.497028 0.583866 -0.822610 -0.274636 0.008012 0.545356 -0.266985 -0.233061 0.375177 -0.540493 0.510053 0.081786 0.067882 0.323401 0.036310 -0.131286 0.268045 -0.117236 0.162351 -0.329891 -0.289688 -0.199803 -0.180590 -0.678089 0.565149 -0.177457 -0.295658 -0.345518 -0.583575 0.777289 -0.843534 -0.241804 0.495216 0.082616 0.715465 -0.636690 0.254310 -0.424463 0.890569 0.310477 -0.048727 0.192084 -0.791190 -0.692065 -0.095077 0.196273 0.024289 -0.127778 0.403641 0.517504 -0.132819 -0.006082 0.673532 -0.230205 0.847349 -0.193433 0.273144 -0.230034 -0.421310 0.349546 -0.051526 -0.374781 -0.251971 0.419468 1.209286 0.161861 1.115237 0.933534 0.142329 0.846689 -0.422206 0.008717 -0.229470 0.383160 -0.293737 -0.326761 0.195894 0.583756 -0.182130 0.230797 -0.795693 -1.511408 -1.117722 -0.666443 0.069809 -0.903976 0.182071 -0.254523 -0.106981 -0.557988 -0.487887 -0.042156 -0.244126 0.728596 0.459266 -0.106362 0.494194 0.594975 -0.727985 -0.066990 0.679747 0.801895 0.270801 0.265745 -1.170445 0.705386 -0.516330 -0.187828 1.346726 -0.621305 0.280439 -0.293269 1.051109 -0.473010 0.985311 0.190261 -0.933447 0.468125 0.550232 0.192025 0.938386 -0.433646 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__fact(int) = -0.278289 -0.903462 1.141178 0.786776 0.160608 0.263570 0.438401 0.320510 -0.007303 0.384818 -0.440651 0.952837 -0.544941 -0.218394 0.218681 -0.011821 -0.548464 -0.825192 0.230960 0.282476 -0.105329 -0.421306 -0.463519 1.034009 0.541669 0.420617 -0.544693 -0.137597 -1.184469 -0.685474 -0.616232 -0.005742 0.516083 0.266284 0.856699 -0.566212 0.191863 0.765216 0.264458 -1.079225 0.174945 -0.071893 0.182599 -0.037769 0.011105 0.798364 1.052014 0.300320 0.058850 0.351084 -0.302907 -0.579121 0.206333 0.161789 0.672433 0.481849 0.819788 -0.374977 0.472145 -0.543792 0.169324 -0.957611 0.181950 0.083337 -0.398666 -0.003471 -0.014710 -0.054294 -0.212853 0.300463 0.617404 -0.098527 -0.622100 -0.491423 -0.797580 -0.076700 0.580210 0.458513 1.011577 -0.294465 0.968878 0.529963 0.942743 -0.039975 0.389297 -0.056578 0.301185 0.199518 -0.444602 0.206394 -1.138808 -0.739440 -0.516700 0.502750 -0.272155 0.100639 0.196373 -1.126905 -0.842447 0.426721 -0.222191 -0.281400 -0.333018 0.444366 0.505533 0.678527 0.098473 -0.482475 -0.372675 0.127296 -0.500122 -0.065537 0.264854 0.167922 -0.237264 0.015908 -0.673267 0.202112 0.651819 -0.389502 0.090431 0.618291 -0.353397 1.046233 0.037560 0.065901 0.146651 0.499574 1.063784 -0.097832 0.014572 -0.816789 -0.718557 -0.087882 -0.061994 0.328160 -0.584869 -0.311343 0.240697 0.308622 0.270784 0.205363 -0.147060 0.842419 0.605834 -0.501297 -0.827511 -0.981321 -0.625673 -0.117495 0.061660 -0.054171 -0.090653 0.163150 0.307732 0.036091 -0.164705 0.786141 -0.143486 0.171229 0.121406 -0.183498 -0.201383 -0.044160 0.251055 -0.394100 -0.212913 0.550290 0.546949 0.553630 0.191239 -0.269114 0.357277 -0.220560 -0.589825 0.454385 0.285321 0.530684 0.736080 0.505639 0.179504 -0.065929 -0.571549 -0.091964 0.075602 -0.369718 0.216581 -0.593781 0.624771 -0.134419 0.141934 0.767478 -0.037882 -0.229535 0.942061 0.120021 0.079422 -0.548421 0.367014 -0.413740 0.418201 -0.308900 -0.095409 -0.640261 -0.057999 -0.589313 -0.318718 0.998641 0.187475 -1.100319 -0.094087 -0.221355 0.769834 -1.090036 0.072813 -0.145967 0.616190 0.088890 -0.100992 0.097319 -0.366925 0.174462 -0.089642 0.206421 -0.238867 0.124767 0.082592 0.081502 -0.209931 0.353059 0.198799 0.142805 0.177237 -0.041807 -0.200389 -0.208367 0.183245 -0.095659 0.078607 0.324965 0.640258 -0.360025 -0.095146 0.247586 0.050511 0.349552 0.518203 -0.062708 -0.363929 -0.380590 -0.063841 1.030144 -0.648681 -0.457822 -0.566739 0.447134 0.083781 0.043034 -0.875504 -0.626145 -0.346655 -1.340871 -0.593548 -0.027261 0.193442 0.343247 -0.280027 -0.507527 -0.434890 0.496508 0.375357 0.951047 0.363718 -0.209532 0.873849 0.199397 -0.162870 -0.384682 0.148052 0.139774 -0.271268 -0.001068 -0.522968 0.078610 -0.794843 0.521986 0.837294 -0.614360 0.421522 -0.326807 0.778539 -0.958325 1.093299 0.475066 -1.222132 -0.170592 0.209446 0.710256 -0.722007 -0.590111 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findSmallerInRight(char*, int, int) = -1.059366 -2.544283 3.568796 2.717285 0.508706 0.995847 1.604578 -0.421549 0.428922 2.029865 -0.945418 2.211603 -2.360617 -0.222352 0.114423 0.662190 -1.638145 -2.177319 0.038393 -0.515923 -0.885385 -1.261874 -0.702365 2.478353 1.859571 -0.599735 -1.353495 -0.634976 -3.605363 -2.135593 -1.322930 -0.203495 1.514294 -0.433310 1.273052 -2.950782 1.415216 2.604707 0.071968 -2.375251 0.959876 -1.148529 0.076103 0.168564 -0.450404 0.914750 1.970366 0.576370 0.857323 0.947524 0.872058 -1.003332 1.097224 3.268036 0.466758 2.127700 2.272507 -0.883923 0.452983 -0.389383 0.328220 -1.983499 1.088213 0.430020 -0.941213 -0.802163 0.152633 -0.419356 -0.925478 0.920663 1.224332 -1.150836 -1.406914 -1.247242 -1.504587 -0.822650 0.611234 1.062937 3.179049 -1.579918 3.118036 1.327417 1.534952 0.009121 1.588699 -0.093541 1.772482 0.383545 -1.223943 -0.276421 -2.127220 -0.625958 -0.546956 2.203871 -1.099021 -0.217964 1.190222 -1.878184 -3.293522 1.324004 -0.262355 -1.281228 -1.144973 0.837568 0.777376 1.037961 -0.523310 -2.228585 -1.426516 0.851870 -1.127008 -0.790950 -0.267667 -0.555873 -0.621228 -0.069561 -2.550389 0.544942 1.307566 -1.437034 -1.296198 2.241174 -0.695463 2.384188 0.228777 0.794284 0.155755 1.393513 1.662472 0.531652 0.135298 -1.430153 -2.915341 -0.194906 0.589300 0.406389 -1.554536 -0.008508 0.469685 0.856679 0.183126 1.589920 -0.342097 3.612060 1.085339 -1.455925 -2.059407 -2.093431 -1.135944 -1.191356 0.589214 -1.062913 -1.242184 -0.165553 1.500247 0.313794 -0.113511 2.725567 -0.525667 1.625597 0.537818 -0.684195 0.450319 -1.168148 1.337265 -1.799362 -1.332243 1.348462 1.932987 0.997256 0.035057 -0.077296 0.661163 -1.573233 -1.512150 0.512998 0.112320 0.304432 2.616138 1.725432 4.747693 -1.540418 -0.052689 0.260099 -0.303410 -0.460686 0.282797 -2.277013 0.925642 0.238615 -0.314516 3.095935 0.272436 -1.627209 1.658748 -0.219339 0.382576 -2.117227 1.835101 -1.250995 0.463785 -0.758981 -0.546858 -1.274378 -0.906098 -1.393240 -0.418206 3.178070 -1.395123 -2.877968 0.740149 0.095886 1.332825 -3.812266 3.572452 -1.224446 1.794981 -0.748358 -1.195116 0.182499 0.886682 -0.345391 1.118972 0.844316 -0.975919 1.185473 1.697637 0.564405 0.732455 0.501919 1.280801 -0.026312 0.711893 -0.725475 1.093669 -0.014611 -0.714047 -0.891802 -0.554169 0.535605 1.264802 -0.504297 0.128896 1.584381 -0.552113 0.526454 1.838928 0.808125 -1.066171 0.487009 -0.359630 2.701833 -1.733932 -1.263348 -0.646454 0.648059 0.364106 1.030458 -3.256867 -1.858937 -0.824489 -2.934709 -0.870983 0.790238 0.978462 0.706401 -0.402896 -2.691107 -1.661138 2.141481 0.084759 2.418925 1.486995 0.666578 2.355516 1.165712 0.516645 -0.855410 -0.312480 0.590713 -0.597097 -0.495756 -0.976398 0.790479 -2.402529 1.878493 1.938629 -0.953787 1.274539 -0.379230 1.074761 -2.766163 3.001743 1.153564 -2.598972 0.836983 2.043302 2.138227 -2.289649 -1.707295 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -1.753803 -2.967570 3.893952 2.546811 0.443269 1.306325 2.015183 0.134207 0.779993 1.341954 -0.793581 2.659532 -2.408138 -0.559450 -0.431598 -0.017363 -1.781087 -2.479496 0.394616 -0.456461 -0.613221 -1.481925 -1.049227 2.925730 1.709474 -0.203354 -1.399610 -1.131151 -4.574438 -1.552286 -0.921592 -0.227268 1.698688 -1.535832 1.275540 -5.008719 1.143313 2.972924 0.095051 -3.551825 1.259327 -1.410274 0.752670 0.314098 -0.827321 0.814906 2.265080 0.835378 0.627784 0.757304 -0.211806 -0.539644 0.917417 4.625655 0.583398 2.141543 2.717086 -0.761956 0.089260 -0.627854 0.365831 -2.308566 1.074286 0.089400 -1.211566 -0.776695 0.024826 -0.490298 -1.359232 0.636652 1.335014 -0.979924 -1.197947 -0.897665 -2.917406 -1.072293 1.902584 1.446947 3.433259 -1.891364 3.513357 0.895664 2.047851 0.602508 1.763988 0.254389 1.401621 0.455914 -1.222193 -0.399596 -3.316956 0.042159 -0.911523 1.475188 -1.147791 -1.987467 1.339092 -2.726548 -3.418122 1.488023 -0.413869 -1.285534 -1.250128 0.130443 1.170110 1.950242 -1.190060 -2.401630 -1.936151 1.357248 -1.237881 -0.677189 0.704376 -0.603838 -0.444419 -1.131562 -2.332162 0.855113 1.734505 -1.262525 -1.339795 2.826326 -1.225134 2.803331 0.289591 1.089503 -0.161338 1.611676 2.062157 -0.060839 -0.204632 -1.962461 -2.639624 -0.858592 -0.123852 1.765630 -2.073268 -0.626377 0.304601 0.971802 0.627781 0.964401 -0.338014 2.896279 1.270753 -1.564649 -1.650025 -2.532906 -0.936184 -1.646427 0.057875 -0.699105 -1.201213 0.670467 1.603627 0.595976 -0.119360 2.846238 -0.483021 1.564241 0.610186 -1.116842 0.356384 -0.697983 1.260186 -1.793336 -1.540258 0.959104 1.675162 1.844085 -0.239999 0.037867 0.567867 -1.306002 -1.399226 0.171777 1.035642 0.679979 2.886140 2.162152 3.587257 -2.385651 -0.919779 -0.055570 -1.003829 -0.385975 -0.079710 -2.400146 0.868124 0.677306 -0.635111 3.446750 0.016019 -1.690351 2.332490 0.106537 0.488328 -2.131858 1.661598 -1.745409 -0.187638 -0.936340 -1.010408 -2.007500 -0.803324 -2.695923 -1.619745 3.508067 -1.809446 -3.336267 0.521101 0.074321 1.727424 -4.686128 3.186032 -1.288958 2.431645 -0.334626 -0.606715 0.040232 0.871375 -0.514784 0.907349 0.897155 -1.776543 1.599180 1.962550 0.795093 0.580096 0.441187 1.498360 -0.085785 0.581441 -1.187775 0.954112 -0.729944 -1.237825 -0.365630 -0.473487 1.035434 1.598755 -0.019149 0.178934 1.350870 -0.175146 0.863981 2.743520 0.649447 -1.114423 0.133080 -0.719728 3.279799 -1.674788 -1.279842 -1.328857 1.518742 0.871077 0.872217 -3.695425 -2.548770 -1.789741 -4.052527 -0.257697 0.170735 0.225619 0.778531 -0.205600 -3.743456 -1.737966 1.481857 0.115117 3.084011 1.772714 0.509029 2.932433 1.317410 -0.227508 -0.851882 0.542384 0.497597 -0.915926 -0.717389 -1.352477 0.702128 -2.745797 1.934994 2.407301 -1.026119 1.422458 -0.212112 0.893753 -2.966939 3.805406 1.567486 -3.160170 0.503696 1.823335 2.983228 -2.119292 -1.895110 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.307216 -0.337858 1.101550 0.769782 -0.404582 -0.048235 0.151237 -0.296384 0.334212 -0.520844 -0.348347 0.241532 -0.512600 0.283601 -0.410890 0.308418 -1.108687 -0.449038 -0.154207 -0.228339 -0.100939 -0.165174 0.441828 0.178881 0.560291 0.849962 -0.331839 -0.202746 -0.422920 0.068338 0.558025 -0.225623 0.365581 0.720591 0.092265 -0.970528 0.444594 0.313399 -0.276104 -0.575276 0.446963 -0.386861 -0.039211 -0.769525 -0.178185 0.114543 0.120264 0.748524 0.333127 0.159270 -0.431401 0.057796 0.139769 0.772558 -0.281428 0.190323 0.445195 -0.045742 -0.039035 -0.215140 0.177601 0.025488 0.082958 0.196626 -0.090958 -0.631371 -0.303505 -0.715328 -0.300245 0.439969 0.021870 0.342103 -0.602532 -0.159180 -0.545092 0.039317 -0.722234 0.860143 0.750970 -0.747160 0.320465 -0.003432 0.159441 -0.050830 -0.061503 0.271189 0.085837 0.258229 0.090188 -0.092082 -0.627780 -0.227126 0.168474 -0.566376 -0.201323 -1.108713 0.391617 -0.893113 -0.499238 0.019321 0.364294 -0.318381 0.346055 0.141744 0.010720 0.398868 -0.262761 -0.248556 0.272199 -0.063620 0.217783 -0.009224 0.056218 0.376982 -0.177541 -0.432236 -0.837162 0.317283 -0.085860 -0.133159 0.464639 0.362851 -0.120573 -0.019163 -0.032179 0.107831 -0.295167 0.928223 0.088290 0.122944 0.114036 0.210082 0.291185 0.319374 0.521859 0.757590 -0.459949 -0.035354 -0.235388 0.115154 -0.354898 -0.529881 0.000301 0.093318 0.064968 -0.611728 -0.565105 -0.364712 -0.550399 -0.786433 0.000714 -0.345842 -0.124776 0.612112 0.409104 0.569565 0.504834 0.770882 -0.479238 0.017852 0.009628 -0.105323 0.365161 0.445334 0.350749 -0.250049 -0.280957 0.327741 -0.251695 0.285905 0.040642 0.085059 0.177726 -0.678234 -0.023525 0.444288 0.464897 -0.116986 0.428844 0.450913 -0.597939 -0.161528 -0.031194 0.468880 -0.192475 -0.194476 0.310001 -0.545560 0.492312 0.021817 0.114775 0.251324 0.043211 -0.117871 0.308932 -0.158221 0.112438 -0.277947 -0.187305 -0.206292 -0.179657 -0.568899 0.525332 -0.128412 -0.244080 -0.233570 -0.382520 0.694763 -0.659264 -0.145455 0.371425 0.046071 0.523752 -0.531108 0.368891 -0.371586 0.698021 0.252147 -0.072974 0.169107 -0.613304 -0.534242 -0.163662 0.205858 0.057147 -0.095033 0.380480 0.421224 -0.166711 0.039162 0.581012 -0.186824 0.707083 -0.122665 0.241782 -0.185348 -0.331716 0.269270 -0.052573 -0.284770 -0.237013 0.290417 1.048873 0.128014 0.857042 0.800619 0.079421 0.747347 -0.399368 0.072166 -0.173785 0.423578 -0.291117 -0.256616 0.134145 0.476887 -0.194249 0.256328 -0.686615 -1.252525 -0.907801 -0.541502 -0.013635 -0.709381 0.205813 -0.265967 -0.094965 -0.462473 -0.456889 0.025722 -0.215365 0.496362 0.417186 -0.078639 0.446020 0.491862 -0.570037 -0.070964 0.472941 0.642301 0.231432 0.200133 -0.891045 0.543574 -0.476072 -0.175209 1.113084 -0.516004 0.210736 -0.247203 0.893005 -0.409119 0.872690 0.192126 -0.751719 0.434246 0.502304 0.255463 0.693279 -0.389604 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -0.273087 -1.329183 1.861783 1.493743 0.558372 0.353840 0.859546 -0.085564 0.609693 1.220923 -0.724399 1.199357 -1.196811 -0.174758 0.805658 0.492409 -0.960614 -1.449572 0.315164 0.206400 -0.211814 -1.074194 -0.078463 1.150646 1.017924 -0.063477 -0.804229 -0.172744 -1.830819 -1.592137 -0.634420 -0.257092 0.872849 0.468194 0.961788 -1.035606 0.764388 1.004987 0.281502 -1.721323 0.346920 -0.504998 0.211700 -0.105280 0.565058 1.182189 1.437841 0.490437 0.612682 0.791894 -0.077713 -1.027710 0.172574 0.411789 0.321025 0.821901 1.167636 -0.692019 0.355182 -0.354917 0.285281 -1.302433 0.692306 0.693617 -0.771715 -0.246776 0.177958 -0.314194 -0.847916 0.900953 0.534265 -0.346911 -1.173737 -0.720170 -0.782030 -0.042257 0.494275 1.069757 1.861857 -0.677686 1.652637 0.676409 1.344235 -0.266565 0.623027 -0.214702 0.906208 0.249159 -1.029977 -0.501987 -1.918618 -1.652094 -0.773152 0.847200 -0.026026 1.199110 0.216972 -1.313188 -1.510730 0.499369 -0.297606 -0.300321 -1.354314 0.956064 0.984283 1.041875 0.485700 -1.126118 -0.661094 0.214760 -0.933868 -0.276541 -0.105264 -0.172653 -0.947949 0.086483 -1.424704 -0.134270 0.705263 -0.981983 -0.538045 1.020625 -0.952181 1.371025 0.127551 0.200558 0.314553 0.812128 1.171688 0.404073 1.270769 -1.345029 -2.026277 0.226940 0.230131 0.626033 -0.732806 0.376035 0.216553 0.343043 -0.301259 0.338907 -0.390524 1.795922 0.977198 -1.086660 -1.523959 -1.133784 -0.457383 -0.414529 0.620906 -0.662005 0.247470 0.123867 0.799778 0.279342 -0.029110 1.903747 -1.104130 0.667278 0.235688 -0.073469 0.047070 -0.040455 0.641844 -0.956111 -0.447596 0.826981 1.153883 -0.001361 0.172986 -0.434911 0.610668 -1.029246 -1.269098 0.820685 0.045556 0.612571 1.044202 0.643335 1.260469 -0.917225 -0.345089 0.344328 0.323585 -0.573551 0.268426 -1.296030 1.251751 -0.296493 0.857383 1.294839 0.060911 -0.899447 0.826571 0.103827 0.133205 -0.872454 0.550310 -0.806775 0.509230 -0.328042 -0.531145 -0.684833 -0.607800 -0.364103 0.346562 1.633916 1.077873 -2.078417 0.519552 -1.056284 1.125043 -2.372759 1.180334 -0.625041 0.553386 -0.342610 -0.272952 -0.149746 -0.072791 0.069015 0.007608 0.497460 -0.160987 0.748273 0.803039 0.262328 0.108664 0.475355 0.403163 0.383426 0.334620 0.042287 0.161655 -0.288385 0.322335 -0.500224 -0.235865 0.727961 0.809615 -0.832637 0.282191 0.909855 -0.278822 1.023670 0.929074 0.360932 -0.707222 0.228646 -0.143653 1.734291 -0.896905 -0.770554 -0.446376 0.158980 -0.184207 0.547539 -1.479159 -1.289991 0.045339 -2.263185 -1.034064 -0.038196 0.683873 0.216641 -0.188364 -1.211665 -0.514283 0.219788 0.616338 1.475992 0.462764 -0.145576 1.172275 0.617972 -0.219716 -0.722008 -0.225405 0.049718 -0.723004 -0.494156 -0.559794 0.216351 -1.349040 0.884607 1.200836 -0.784390 0.348170 -0.689914 0.821785 -1.474667 1.562486 0.820912 -1.312385 0.223476 0.392239 1.197607 -1.129815 -1.032830 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isadjacent(char, char) = -0.187691 -0.844265 0.893645 0.785990 0.231738 0.267532 0.724881 0.063308 -0.100849 0.571898 -0.175768 0.570401 -0.766431 -0.245718 0.014766 0.079158 -0.218699 -0.624203 -0.026309 -0.024548 0.036542 -0.269315 -0.174508 0.837960 0.603506 -0.452711 -0.270884 -0.467461 -1.239668 -0.277725 -0.431828 0.028578 0.437378 0.070040 0.295348 -0.171842 0.176612 0.809525 0.026218 -0.536782 0.279066 -0.210813 0.070300 -0.136038 -0.109513 0.272492 0.581169 -0.212720 0.102778 0.268378 0.178844 -0.346398 0.498350 0.619757 0.223163 0.607160 0.715307 -0.110621 0.511018 -0.148792 0.104667 -0.530505 0.203626 -0.105893 -0.087764 -0.117932 -0.302185 -0.161356 -0.058342 0.128613 0.147149 -0.044961 -0.517072 -0.265356 -0.807257 -0.256936 -0.377597 0.301897 0.767793 -0.652881 0.893695 0.544990 0.404951 -0.029536 0.363721 0.104251 0.068428 0.140227 -0.197427 0.261481 -0.715424 -0.203633 -0.278552 0.441293 -0.414460 -0.111178 0.457103 -0.672454 -0.945900 0.476872 -0.143403 -0.381030 -0.005648 0.261851 -0.191232 0.317516 -0.279982 -0.586882 -0.361490 0.167261 0.070724 -0.189722 0.065626 0.070381 -0.040704 -0.101702 -0.642599 0.181926 0.325334 -0.507101 -0.244989 0.603206 -0.150899 0.829180 0.053830 0.084091 -0.058059 0.378958 0.569577 0.235345 0.071337 -0.468022 -1.155743 -0.338168 0.262057 0.311666 -0.390007 0.251646 0.152553 0.252468 0.332304 0.583486 0.326068 0.882828 -0.114062 -0.475406 -0.442276 -0.652178 -0.432324 -0.167319 0.191330 -0.130435 -0.107491 0.146601 0.336549 0.063176 -0.103131 0.775351 0.151394 0.135299 0.132165 -0.314877 -0.061978 -0.495735 0.264043 -0.360248 -0.422292 0.379759 0.543126 0.413908 0.183135 0.115059 0.224376 -0.297275 -0.315262 -0.187878 -0.094544 -0.327719 0.846733 0.509027 0.260075 -0.263462 -0.033290 -0.012099 -0.047964 -0.018232 0.020628 -0.654480 0.430966 -0.056945 -0.345123 0.499844 0.050794 -0.258058 0.722418 -0.349493 0.084842 -0.526010 0.428476 -0.398982 -0.029584 -0.437528 -0.003727 -0.251547 -0.380699 -0.202935 0.028770 0.831410 -0.160150 -0.250938 -0.107353 0.575748 0.039560 -0.758349 1.121521 -0.204662 0.606235 0.028084 -0.429034 0.158984 0.563597 0.042869 -0.267514 0.244042 -0.563860 0.277220 0.238528 0.081292 -0.010729 0.248959 0.350484 -0.015864 0.148682 -0.275177 0.162878 0.006980 -0.388800 -0.197295 -0.106289 0.338887 0.313794 -0.145818 0.127720 0.270691 -0.072719 0.011295 0.492975 0.242101 -0.266834 -0.103971 -0.015271 0.884482 -0.545913 -0.228083 -0.321215 0.093592 0.123423 0.254775 -0.806674 -0.434577 -0.155817 -0.401922 -0.254726 0.057054 0.180888 0.236265 -0.174080 -0.761982 -0.593635 0.028744 -0.131448 -0.381196 0.422133 0.158755 0.728319 0.203326 0.274692 -0.144994 0.050309 0.372788 -0.053594 -0.142893 -0.133166 0.066735 -0.790885 0.386245 0.467791 -0.163109 0.419232 0.161526 0.348815 -0.763692 0.882105 0.262991 -0.824151 0.284378 0.978733 0.360310 -0.661692 -0.396556 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLenUtil(char (*) [3], int, int, char) = -2.636758 -5.645878 8.870409 6.230295 -0.585849 2.256225 2.734221 -1.104456 -0.227935 2.923436 -2.271239 5.405734 -4.619397 -0.673935 -0.723224 0.757349 -5.206657 -4.078113 -0.418351 -1.921436 -2.701850 -1.819732 -2.771777 6.454816 4.216632 0.733964 -3.058755 -0.861358 -7.002699 -5.384999 -3.223880 -0.084009 3.384270 -0.149612 3.507444 -9.592541 3.203647 6.253775 -0.119621 -4.983405 2.289317 -2.561563 -0.341283 -0.248129 -2.941108 1.663711 4.286766 1.123642 1.379760 1.502855 0.692209 -1.698559 3.400544 9.127989 2.186345 4.853200 5.934603 -2.422132 1.151662 -1.238388 0.656815 -4.733936 1.990726 -0.215235 -1.480835 -2.320064 0.360407 -1.494224 -0.747432 1.924809 2.923762 -3.353672 -2.503108 -3.664998 -5.311686 -2.465258 0.570134 2.997674 6.772946 -4.525999 6.852244 2.782567 2.866660 0.954075 4.098036 0.155923 4.718567 1.157086 -1.934278 0.602727 -3.162691 -1.337069 -0.478645 5.128294 -3.363700 -3.110480 3.263006 -7.283845 -7.518031 3.546626 -0.137913 -3.788537 -1.873795 0.130710 1.210308 1.613918 -1.905209 -4.426587 -3.169314 2.162162 -2.473362 -1.471050 -0.421619 0.263937 -0.347674 0.722237 -6.167338 2.790332 3.301029 -2.046617 -2.246729 5.574211 0.478377 5.117798 0.301579 2.110695 -0.363242 4.048420 2.977927 0.750301 -2.047901 -1.438897 -5.116621 -1.203748 1.489016 -0.370653 -4.248674 -2.086120 1.389625 2.427420 0.462006 3.575406 -1.355816 8.784322 2.526458 -2.630214 -4.662051 -5.470335 -4.196751 -3.688228 0.214993 -2.022268 -4.627587 1.211843 3.346176 1.196488 -0.449001 4.344244 -0.139420 3.231750 0.907215 -1.973788 0.954004 -3.287963 2.990135 -4.220955 -2.780749 3.259254 3.242734 4.251488 0.058734 0.020264 1.620326 -2.876845 -3.691339 2.022444 1.169614 0.854134 6.254464 5.095679 11.576877 -3.664443 -0.376283 0.153160 -1.889261 -1.196362 1.050643 -4.410379 1.424342 1.175878 -1.517291 7.671866 0.639324 -2.861582 3.662752 -0.311061 0.723762 -4.851925 3.898684 -2.647534 1.148672 -1.715502 -1.231719 -3.587350 -1.572004 -4.343102 -3.203946 7.534118 -7.422119 -5.911207 2.476905 1.059436 3.786588 -8.704166 7.439792 -2.708797 5.509472 -1.531800 -3.269086 0.816642 0.980053 -1.479727 3.568662 1.731521 -3.163810 1.545830 3.539751 1.509400 2.094821 0.440040 3.463059 -0.918034 2.245248 -2.278648 2.663282 -0.138270 -2.212909 -2.620484 -0.955207 0.146932 2.892629 0.428688 -0.060554 2.568256 -0.073508 0.409356 5.172748 1.873785 -2.434237 0.407619 -1.303139 5.621455 -4.451772 -3.662230 -1.245151 2.877193 1.487299 1.551661 -7.963193 -4.380068 -5.682692 -5.651662 -2.144699 1.914177 2.175729 1.675805 -1.426968 -5.967393 -4.174473 6.964022 -0.109753 4.412820 3.996371 1.626734 5.874098 2.648545 1.887994 -1.870043 -0.246070 2.057053 -0.525355 -0.225090 -3.593126 2.565108 -5.450276 4.254099 5.284358 -2.475629 3.903350 0.811937 3.224626 -6.569940 6.769644 2.145139 -7.456646 1.210415 6.445730 3.242209 -4.731617 -3.895680 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__int const& std::max(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLen(char (*) [3], char) = -1.726170 -4.596224 6.603474 4.819554 0.601025 1.697893 2.349839 -0.499940 0.840903 2.864074 -2.142357 4.274517 -3.916003 -0.460649 0.573919 0.828285 -3.622001 -4.071730 0.388140 -0.509244 -1.669243 -2.298735 -1.679542 4.818637 3.084338 0.046818 -2.517508 -0.444716 -6.193491 -3.621345 -2.267170 -0.521898 2.730715 -0.014308 2.952808 -5.653248 2.581509 4.364535 0.373181 -4.707484 1.404394 -2.056079 0.083798 -0.165773 -0.789971 1.932920 3.971982 1.976238 1.289020 1.536836 0.439057 -2.168011 1.447325 5.365343 1.373227 3.563674 4.514856 -1.878409 0.825335 -1.184338 0.756914 -3.993384 1.941834 1.072234 -2.129976 -1.350174 0.721303 -1.016861 -1.634091 1.754059 2.939699 -1.836126 -2.449871 -2.407900 -2.727808 -1.230975 2.371557 2.237540 5.933243 -2.655235 5.640728 2.430580 3.476554 0.220565 2.947382 -0.149573 3.630853 0.844144 -2.551938 -0.590990 -4.771361 -1.847277 -1.068238 3.538783 -1.663410 -0.110586 1.686531 -4.147344 -5.683527 2.276526 -0.564277 -2.149590 -2.085730 1.617553 2.179977 2.039453 -0.448183 -3.656191 -2.286049 1.384005 -2.918741 -1.253656 -0.370361 -0.390030 -1.256824 -0.095480 -4.734799 1.035368 2.744643 -2.372495 -1.556913 4.004681 -1.575578 4.376690 0.262723 1.126689 0.473040 2.581606 3.410247 0.323407 0.399880 -3.120147 -4.162626 0.044880 0.746977 0.946438 -2.985164 -0.635633 1.271080 1.670790 0.315024 2.162738 -1.075837 6.367965 1.761300 -2.700257 -4.047157 -4.301693 -2.523867 -2.075561 0.942617 -1.947714 -2.436664 0.070745 2.749497 0.770369 -0.289878 4.661912 -1.282270 3.180115 0.869438 -0.770975 0.543391 -1.558099 2.372223 -3.272603 -2.011446 2.640122 3.177556 1.798753 0.116264 -0.804144 1.432515 -2.926194 -3.195019 1.555726 0.476895 1.395171 4.546747 3.013965 8.106050 -2.679819 -0.503476 0.378232 -0.271078 -1.294460 0.843700 -3.838865 1.846950 0.284049 0.095848 5.760492 0.482049 -3.077257 2.742924 0.288114 0.528287 -3.659352 3.062402 -2.033614 1.209664 -1.145062 -0.673499 -2.742806 -1.430905 -2.987932 -1.113080 5.840394 -2.483284 -6.031106 1.352761 -0.454156 3.535381 -7.104295 5.070493 -2.249790 3.646602 -1.031662 -2.031190 0.365504 0.087822 -0.666572 2.255615 1.548858 -1.315166 1.806736 2.437997 1.146900 1.360256 1.087694 1.986918 0.049775 1.252384 -1.087934 1.396525 -0.255774 -0.893222 -1.578135 -0.899907 1.021133 2.641155 -0.971629 -0.046493 2.816168 -0.476254 1.555340 3.198692 0.974525 -2.109007 0.311749 -0.694968 4.896748 -3.180607 -2.477877 -1.475086 1.443753 0.652470 1.706648 -5.864136 -3.676196 -1.908771 -5.904550 -2.139944 1.166424 1.764647 1.383720 -0.640180 -4.583072 -2.605212 4.054110 0.644322 5.743444 2.731221 0.871198 4.329775 1.984720 0.494238 -2.127366 -0.052994 1.047225 -1.386889 -0.434851 -2.548053 1.522263 -4.223042 3.493425 4.051526 -2.168777 2.127795 -1.445347 2.436229 -4.972027 5.498397 2.362638 -5.460049 0.704012 2.956113 3.796455 -3.809335 -3.331627 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 0.950926 -0.503618 2.808947 1.841275 -1.939535 -0.163921 -0.347715 -0.841467 0.274366 -3.037945 -0.825872 0.508321 -0.947434 0.680264 -0.904939 -0.239148 -3.798489 -0.789681 -0.913862 -0.712835 -0.365878 -0.084754 0.537608 1.180799 0.965902 3.293454 -0.954463 0.265945 -0.654711 1.455603 1.920250 -0.116509 0.961099 2.874368 0.820809 -3.733546 0.938409 0.621589 -0.618456 -1.302262 1.046169 -1.289113 -0.412018 -2.774810 -1.427594 0.016358 -0.211886 2.220249 0.438749 -0.572152 -2.503396 0.538818 -0.294534 2.201721 -0.295792 0.185829 1.458038 -0.252110 -0.032298 -0.841834 0.245776 0.311262 0.012312 0.204862 -0.546011 -1.710375 -0.251431 -2.341624 -0.314046 1.346013 0.707935 0.781581 -1.094215 -0.755943 -2.314620 0.138746 -0.237041 2.851961 1.404588 -2.212100 0.227879 -0.444816 0.258643 0.413740 0.243627 0.816570 0.959539 0.587056 0.765941 0.038307 -2.482143 -0.957236 0.694834 -2.194328 -0.650263 -3.509497 0.636547 -3.774206 -0.984427 -0.172544 1.017240 -1.263437 0.963140 -0.217683 0.161974 0.684949 -0.252814 -0.068798 0.888144 0.495998 0.056199 0.288424 0.221666 2.032711 -0.051109 -1.677227 -2.259651 1.739721 -0.003742 0.701105 1.895482 1.234364 -0.546159 -0.543272 -0.124625 -0.017163 -1.163918 2.646486 -0.364898 -0.626098 -0.101128 0.374758 2.449376 0.526784 0.969609 2.486768 -1.337359 -1.164612 -0.363165 0.469754 -1.165445 -1.934779 -0.020783 -0.013787 -0.698342 -1.456585 -1.316525 -1.342030 -2.193985 -2.414742 -0.761630 -0.544668 -0.958594 2.763519 0.967953 2.386660 1.156948 1.125780 -0.849581 0.055811 0.028300 -0.344350 0.763347 1.315257 0.638222 -0.578866 -0.659433 0.873924 -1.992761 1.546860 -0.039155 0.304025 0.250224 -1.469945 -0.720555 1.361857 1.674142 0.635603 1.167597 1.825998 -2.323662 -0.778336 0.061642 1.052703 -0.943681 -0.748337 0.861862 -0.647721 0.813044 0.404178 -0.088362 1.138702 -0.103001 -0.177428 0.224404 0.245964 0.399490 -0.598896 -1.019247 -0.140367 -0.163520 -1.764689 1.197966 -0.582206 -0.536960 -1.364590 -2.237225 1.839776 -3.034719 -0.991044 1.516248 0.117367 2.349454 -1.580405 -0.484056 -0.699697 2.645177 1.041194 -0.216910 0.531688 -2.965623 -2.056006 0.395701 0.283067 -0.211560 -1.054706 0.562663 1.272594 -0.155007 -0.283862 1.339957 -0.525885 2.012883 -0.912338 0.525224 -0.713306 -0.892507 0.756888 -0.015901 -0.935856 -0.425072 1.436703 2.623582 0.129427 3.541727 2.107458 0.643796 1.636054 -0.867620 -0.641068 -0.642344 0.260510 -0.691667 -0.922276 0.369108 1.698674 -0.193585 0.059332 -1.718352 -3.525166 -3.778468 -1.532729 0.157265 -2.355588 0.243932 -0.327174 -0.473095 -1.183662 -1.004909 -0.082024 -0.550364 2.182972 1.151581 -0.463172 1.231073 1.494899 -1.868722 -0.013405 2.364847 2.075904 0.574664 1.079127 -3.604562 2.098136 -0.807267 -0.364184 3.584598 -1.541491 1.232345 -0.750370 2.813986 -0.983716 2.271899 0.375947 -2.909591 0.227380 1.273877 -0.472098 2.790662 -1.038704 -PE-benchmarks/overlapping-subproblems-property.cpp___initialize() = -0.253020 -0.971876 1.292236 1.076197 0.245986 0.336848 0.514878 -0.086609 0.502763 0.898296 -0.500212 0.685419 -0.908393 -0.037681 0.591100 0.420668 -0.723295 -0.921490 0.261771 0.026949 -0.346348 -0.714245 -0.216743 0.719864 0.581113 0.241639 -0.435891 -0.046743 -1.082675 -0.862736 -0.303963 -0.273850 0.585691 0.635660 0.694653 -0.838428 0.588593 0.688826 0.105739 -1.052952 0.080381 -0.385708 0.207012 -0.049039 0.405836 0.719570 0.944150 0.668388 0.411423 0.458829 0.181670 -0.828751 0.222340 0.552148 0.146332 0.658153 0.789117 -0.449787 0.215481 -0.244073 0.233402 -0.838272 0.519495 0.565354 -0.586169 -0.219067 0.121194 -0.303669 -0.593797 0.508969 0.658555 -0.168755 -0.819014 -0.549454 -0.074803 -0.201233 -0.421913 0.517574 1.440693 -0.447440 1.249652 0.706737 0.997145 -0.115728 0.613034 -0.094526 0.868403 0.169704 -0.856748 -0.024789 -1.091974 -0.863561 -0.271351 0.631315 -0.116392 0.474071 0.109191 -0.404330 -1.103246 0.480831 -0.183554 -0.072611 -0.661685 0.637193 0.672711 0.514816 0.030666 -0.873837 -0.401775 0.040516 -0.751135 -0.242684 -0.157962 -0.139793 -0.552828 0.001356 -1.002481 -0.149328 0.486164 -0.735604 -0.242411 0.762972 -0.429427 0.900988 0.061877 0.051776 0.211046 0.636459 0.891507 0.208706 0.527390 -0.850515 -1.227042 0.336751 0.250777 0.358424 -0.384288 -0.025283 0.258542 0.261861 -0.118911 0.338515 -0.122819 1.274727 0.723879 -0.638973 -0.937734 -0.833395 -0.331648 -0.359542 0.523916 -0.555878 0.034822 -0.268440 0.629191 0.163166 0.067172 1.090877 -0.716188 0.683476 -0.037496 0.131751 0.118280 0.305125 0.548658 -0.646022 -0.270075 0.529836 0.875141 -0.009432 0.207613 -0.518201 0.360051 -0.697086 -0.634633 0.539298 -0.037867 0.207046 0.841255 0.400973 1.658886 -0.463203 -0.075843 0.215413 0.293082 -0.317629 0.309661 -0.885732 0.765325 -0.140632 0.269629 0.866484 0.037957 -0.621878 0.462822 0.043675 0.078040 -0.706800 0.510008 -0.439627 0.285757 -0.289754 0.203534 -0.620036 -0.431737 -0.266548 0.351860 1.162933 0.341041 -1.151359 0.262815 -0.511482 0.715255 -1.262677 1.049463 -0.515107 0.347345 -0.481187 -0.467977 -0.027877 0.004770 0.127334 0.173994 0.391829 0.010479 0.355662 0.466959 0.246259 0.160351 0.452687 0.367830 0.203515 0.114070 -0.000448 0.248699 -0.049224 0.300742 -0.254561 -0.254291 0.423338 0.579737 -0.535709 0.228981 0.775630 -0.264460 0.521599 0.366151 0.081927 -0.494030 0.103071 0.005843 1.145275 -0.674820 -0.391775 -0.371503 0.074575 -0.127898 0.398547 -1.094409 -0.708962 0.287570 -1.086802 -0.850299 0.483486 0.448303 0.362538 0.016640 -0.754686 -0.367601 0.693700 0.197324 1.049302 0.278544 0.068669 0.849597 0.479669 0.028572 -0.734847 -0.136646 -0.008522 -0.450269 -0.041053 -0.442258 0.297668 -0.909889 0.700793 0.739283 -0.552695 0.127699 -0.606071 1.006105 -0.979984 1.137073 0.593575 -0.891008 0.220127 0.495232 1.158308 -0.747285 -0.693991 -PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -1.017577 -2.297095 2.903808 2.105543 -0.059303 0.975885 0.868442 -0.008730 -0.155961 1.115382 -0.897421 2.087322 -1.617719 -0.756349 0.392139 -0.209056 -1.597772 -1.565253 0.063524 -0.180802 -0.725825 -0.865349 -1.684684 2.957053 1.187101 0.382009 -0.965970 0.255961 -2.708303 -1.957951 -1.708717 0.108720 1.145947 0.309661 1.988155 -2.420188 0.944029 2.373256 0.362162 -2.100616 0.312240 -0.739623 0.081148 -0.121836 -0.822112 1.097696 1.956221 0.271015 0.103593 0.401820 -0.330926 -1.138825 1.084617 2.103135 1.526080 1.755939 2.490147 -0.916843 0.954683 -0.760199 0.279875 -2.123329 0.669233 -0.148309 -0.864632 -0.305006 0.253062 -0.250497 -0.072862 0.591393 1.294358 -1.229940 -0.990383 -1.620128 -2.414565 -0.834516 0.631549 0.982033 2.425387 -1.486990 2.624924 1.457603 1.626285 0.574547 1.834393 -0.081071 1.891824 0.444809 -1.099314 0.768097 -1.808216 -1.272683 -0.530531 1.680308 -1.169545 -0.301285 0.797901 -3.428627 -2.709375 1.481675 -0.488980 -1.171005 -0.872926 0.167400 0.756321 0.672666 -0.313703 -1.516025 -1.079766 0.889122 -1.298238 -0.438981 0.135353 0.576062 -0.041626 0.462107 -2.085142 0.866627 1.713022 -0.805718 -0.434595 2.126291 -0.064766 2.389603 0.049389 0.290150 0.142761 1.274869 1.605705 -0.011243 -0.772094 -1.250152 -1.928552 -0.568867 0.005092 -0.408534 -1.415740 -0.745614 1.098534 0.982198 0.598427 1.469811 -0.627148 3.062565 0.460450 -0.811700 -1.591609 -2.433182 -2.091382 -0.867622 0.180815 -0.402155 -1.530105 0.559414 1.120422 0.366847 -0.626339 1.252020 0.086469 0.759941 0.226675 -0.519151 -0.216262 -1.166576 0.875073 -1.405733 -0.820287 1.407695 1.342980 1.613855 0.345679 -0.457759 0.727618 -0.602773 -1.585015 0.754260 0.234638 0.698541 2.437700 1.776409 3.142621 -0.979549 -0.409770 -0.366719 -0.272105 -0.461609 0.265750 -1.398647 0.774411 0.199904 -0.155698 2.634798 0.056750 -0.782182 1.451660 0.130873 0.225156 -1.769340 1.341396 -1.009696 0.727509 -0.594029 -0.334060 -1.588532 -0.585545 -1.737993 -1.045467 2.682754 -1.834611 -2.321984 0.596376 0.422705 1.849786 -2.869316 1.664864 -0.719198 2.317930 -0.214758 -1.105159 0.411588 -0.146656 0.015062 0.763870 0.665612 -1.247208 0.376252 0.362184 0.328430 0.567641 0.524600 0.757927 -0.182327 0.364770 -0.879062 0.402939 -0.133366 -0.339311 -0.974663 -0.318565 0.657944 1.546132 -0.270256 -0.652220 0.875088 -0.138492 0.047165 1.856624 -0.121168 -0.841878 -0.452514 -0.257496 2.081404 -1.813776 -1.252761 -1.029521 0.961345 0.671790 0.299321 -2.695041 -1.149790 -1.848858 -2.012523 -1.414648 0.746675 0.628797 1.045597 -0.534095 -1.809896 -1.363954 2.528200 0.302964 1.342212 1.188985 0.426769 2.299175 0.739947 0.873550 -0.997178 0.146707 0.413695 -0.628068 0.033389 -1.237946 0.685472 -1.972918 1.752365 1.781788 -0.998416 1.410801 0.031071 1.125589 -2.464595 2.306893 0.971584 -3.074238 -0.260447 2.220350 1.133405 -2.168670 -1.497243 -PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.001424 -0.501978 0.971821 0.691239 -0.308570 0.063976 0.322155 -0.171145 0.346986 -0.593497 -0.276444 0.234636 -0.713617 0.213839 -0.362053 0.047016 -1.018570 -0.615460 -0.102351 -0.140181 -0.087588 -0.344408 0.337432 0.384354 0.432202 0.705930 -0.353758 -0.264757 -0.782652 0.415012 0.706218 -0.191099 0.480863 0.758011 0.050321 -1.408123 0.281018 0.360390 -0.210330 -0.680227 0.413223 -0.587570 0.078023 -0.822510 -0.256973 0.034647 0.182590 0.659274 0.294159 -0.053610 -0.490667 -0.041257 -0.146450 0.978223 -0.352880 0.258492 0.502375 -0.025246 -0.074292 -0.227730 0.147374 -0.049237 0.263172 0.317432 -0.384050 -0.456719 -0.168230 -0.802490 -0.513617 0.463819 0.143014 0.458597 -0.559820 -0.086865 -0.699465 -0.059128 -0.130281 0.837325 0.870192 -0.772830 0.535138 -0.014728 0.337877 -0.027241 0.118614 0.268947 0.207726 0.177647 -0.067419 -0.154326 -1.069769 -0.101800 -0.032337 -0.374942 -0.116276 -0.925587 0.339536 -0.820520 -0.599706 0.007200 0.143436 -0.237200 0.040198 0.189918 0.121004 0.507388 -0.326885 -0.446197 -0.026219 0.095012 0.049349 -0.029616 0.159077 0.364522 -0.249282 -0.860637 -0.811130 0.184708 0.018502 -0.289037 0.308690 0.544832 -0.487768 0.176200 0.043956 0.057517 -0.287477 0.937659 0.153019 -0.110037 0.279001 -0.191106 0.046166 -0.058279 0.375891 1.387328 -0.487631 -0.149136 -0.154025 0.108331 -0.300041 -0.660242 0.158654 0.113698 0.049558 -0.666834 -0.503967 -0.456294 -0.300726 -0.877319 -0.065593 -0.394103 0.058006 0.729062 0.469741 0.656071 0.417003 1.083319 -0.466329 0.310022 0.038392 -0.231911 0.310685 0.501511 0.369100 -0.297722 -0.429377 0.289750 -0.259983 0.379620 0.014307 0.024712 0.055439 -0.692749 -0.330839 0.282151 0.494528 0.012653 0.511786 0.470356 -0.565947 -0.629604 0.090832 0.377940 -0.158237 -0.130950 0.225101 -0.606762 0.527888 0.058734 -0.216412 0.315882 -0.011001 -0.387833 0.322890 -0.105654 0.183565 -0.415803 -0.138503 -0.288333 -0.183185 -0.743626 0.328629 -0.173363 -0.375217 -0.350775 -0.390084 0.781114 -0.552785 -0.448627 0.328430 0.177380 0.694409 -0.908716 0.338199 -0.373772 0.842810 0.100484 -0.098181 0.113245 -0.379533 -0.381400 -0.111477 0.233233 -0.139330 0.022330 0.521862 0.414233 -0.011550 0.137127 0.590533 0.042910 0.474629 -0.210171 0.220531 -0.164921 -0.443151 0.368433 -0.159461 0.017005 -0.015323 0.297470 1.116049 0.465071 0.817220 0.907415 0.351580 0.595409 -0.343695 -0.156028 -0.176388 0.607022 -0.251448 -0.199404 -0.087460 0.527876 -0.162276 0.250267 -0.728353 -1.475298 -0.699152 -0.857550 0.053519 -0.649417 0.096058 -0.071314 0.025903 -0.764061 -0.338672 -0.293868 -0.294541 1.005350 0.373330 -0.007120 0.557760 0.583601 -0.736896 -0.190182 0.768542 0.683235 -0.008535 0.225609 -0.980100 0.466095 -0.600635 0.082854 1.059601 -0.469925 0.215872 -0.256239 1.053459 -0.462390 1.116254 0.332255 -0.873379 0.444019 0.398640 0.402678 0.741122 -0.418241 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__maxProfit(int*, int) = -5.090266 -8.827890 14.861557 9.907533 -0.417537 4.315315 4.426892 -3.570602 1.472108 5.297917 -2.784465 8.377116 -7.582002 -2.050265 -1.513011 0.969743 -8.201538 -7.060521 -1.455991 -4.538951 -4.167916 -3.779979 -4.373523 10.332638 6.554261 -0.476805 -5.343317 -0.290588 -12.794518 -10.887051 -5.256218 -0.100527 5.259183 -3.194348 6.094977 -15.196201 6.799146 11.286140 -0.520262 -8.821340 3.790606 -4.181198 -0.503382 0.565649 -4.727077 3.100325 5.961488 0.180780 2.839388 2.267391 1.912028 -1.561292 4.517978 14.497545 2.630149 8.437749 9.203790 -3.831250 1.519615 -0.699469 0.813530 -6.851896 3.515840 -0.434303 -2.895618 -3.949881 1.579659 -1.172499 -2.389108 3.823021 3.769175 -7.532882 -3.465193 -6.023852 -11.417623 -4.196779 4.655234 4.207735 11.242220 -6.559274 11.063783 4.129791 4.525703 2.057150 7.611172 -0.176634 9.227238 1.808338 -3.428140 0.890830 -6.046558 -2.226152 -1.005959 8.721966 -5.642266 -4.655149 5.695427 -14.655491 -12.881206 5.971721 0.328677 -6.314920 -5.985091 -0.689040 2.977996 2.656044 -3.101144 -8.062776 -5.464507 5.134153 -4.589213 -2.276805 0.440155 -1.031547 -0.465145 1.437079 -9.834383 4.514060 5.837116 -2.859772 -5.409446 10.117946 -0.684487 7.745906 0.508771 4.163357 -1.232129 5.419137 3.320384 2.238904 -4.063718 -2.333468 -9.035562 -3.802844 1.052731 -1.394475 -6.051515 -3.091268 1.613728 4.194195 -0.142493 6.998913 -3.946376 13.640198 3.986201 -3.908659 -6.861638 -8.068163 -7.093215 -7.082799 0.318222 -2.805721 -8.888876 1.802627 5.914042 2.259369 -0.501861 7.121353 0.147796 4.215950 1.406349 -3.752864 2.396719 -7.759104 5.189321 -6.806522 -5.175608 5.175663 5.205258 7.538071 0.196797 -0.047923 2.032726 -4.753059 -6.533032 2.098232 1.840079 2.253973 10.194708 9.124765 17.731446 -7.112338 -0.452484 0.578992 -3.270035 -1.166850 0.419085 -7.363897 1.282254 2.915081 -1.403668 13.680835 0.609234 -4.607903 5.671691 -0.116921 2.054797 -8.532103 6.023102 -5.019249 2.502320 -2.662103 -3.726837 -6.609191 -2.737963 -8.245247 -6.900002 12.408858 -11.248855 -11.703832 6.292747 1.358012 7.184914 -15.026626 10.286597 -4.380163 10.087374 -2.126407 -3.260091 0.917017 2.007574 -3.271246 6.126306 2.672355 -6.338899 4.054724 6.262512 2.573140 4.007510 -0.194442 5.772653 -2.398144 3.814960 -5.152527 5.545209 -1.045489 -4.378546 -3.819049 -1.824512 0.574714 4.134759 1.034293 -1.981562 4.277132 -0.592272 0.303684 9.335552 3.074884 -3.904055 1.901304 -1.433625 7.840723 -6.756028 -5.647387 -1.336850 4.777894 2.654307 2.620590 -13.387599 -6.858397 -9.853675 -11.284809 -2.604438 2.553200 2.883766 2.835535 -2.302210 -10.148649 -7.081461 12.354435 0.230670 7.932918 6.615721 3.234202 9.582013 5.483024 2.319923 -2.179766 -0.912919 2.286654 -1.609525 -2.223712 -5.747484 4.936848 -8.858186 7.268450 8.374901 -3.852555 6.789250 0.962829 3.096021 -11.222302 10.785926 3.698063 -10.903847 2.425141 9.978952 6.825484 -8.045750 -6.455087 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__int const& std::max(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 0.288479 -0.493912 1.567500 1.051719 -0.506072 -0.045153 0.331176 -0.405339 0.433390 -0.686374 -0.425629 0.392680 -0.743001 0.343096 -0.609541 0.365075 -1.495514 -0.663673 -0.216422 -0.384389 -0.145082 -0.213664 0.580440 0.297980 0.815110 0.976720 -0.490663 -0.403424 -0.751692 0.084949 0.756654 -0.286544 0.553377 0.760772 0.063216 -1.644943 0.606302 0.509765 -0.394383 -0.816180 0.706230 -0.590952 -0.052001 -0.996530 -0.324157 0.087253 0.194314 0.941830 0.473671 0.203839 -0.554321 0.149580 0.155956 1.308768 -0.431338 0.306767 0.636857 -0.099409 -0.129160 -0.246517 0.209402 -0.031280 0.170448 0.205698 -0.159653 -0.890200 -0.350394 -0.968757 -0.464659 0.568963 0.092961 0.383825 -0.740491 -0.165743 -0.857902 -0.015800 -0.622784 1.143425 1.032971 -1.030158 0.527656 -0.058227 0.193861 -0.043226 -0.047969 0.385120 0.127201 0.319629 0.146952 -0.240526 -0.988925 -0.199664 0.178384 -0.609265 -0.280615 -1.572607 0.600559 -1.189038 -0.756659 0.028387 0.491699 -0.513498 0.315000 0.133563 0.015838 0.589715 -0.402312 -0.400900 0.209147 -0.003618 0.228566 -0.033478 0.100433 0.394696 -0.249672 -0.690485 -1.152943 0.497273 -0.081088 -0.163122 0.436266 0.569480 -0.261002 0.018451 -0.011666 0.261442 -0.451578 1.206731 0.085058 0.131640 0.193043 0.209062 0.261836 0.228928 0.683110 1.197987 -0.671271 -0.114966 -0.377941 0.182023 -0.472081 -0.669307 0.036873 0.261891 0.122419 -0.860328 -0.749719 -0.511686 -0.624020 -1.092090 -0.039945 -0.461064 -0.214688 0.841727 0.576416 0.744762 0.665333 1.133552 -0.584636 0.158347 0.062313 -0.246396 0.539610 0.461663 0.520181 -0.395174 -0.431450 0.398679 -0.321826 0.492938 -0.032875 0.208985 0.229423 -0.962758 -0.154899 0.460437 0.636401 -0.140598 0.613333 0.699758 -0.574458 -0.448496 -0.044701 0.621527 -0.366562 -0.253619 0.402181 -0.767420 0.583291 0.107463 0.005249 0.511690 0.080923 -0.304843 0.459466 -0.191757 0.150550 -0.417131 -0.187934 -0.324808 -0.268960 -0.748094 0.507912 -0.232004 -0.359649 -0.449206 -0.638820 1.014550 -0.968030 -0.392983 0.526002 0.075890 0.707519 -0.998551 0.670608 -0.536638 0.949382 0.263576 -0.093180 0.195382 -0.643303 -0.808950 -0.098153 0.266159 -0.057973 0.007274 0.691182 0.596774 -0.129185 -0.020014 0.843735 -0.253088 0.973916 -0.233921 0.394152 -0.296903 -0.585171 0.326893 -0.069181 -0.364375 -0.268891 0.456334 1.361269 0.216514 1.126347 1.064910 0.294002 1.063830 -0.529466 0.130884 -0.267073 0.651760 -0.360836 -0.386277 0.187715 0.686430 -0.191059 0.400134 -1.033692 -1.766511 -1.216962 -0.948882 0.125077 -0.914849 0.253732 -0.343528 -0.129354 -0.849474 -0.631969 -0.038526 -0.286348 0.829739 0.651016 -0.064008 0.653535 0.685317 -0.801807 -0.074939 0.672195 0.909397 0.301306 0.156787 -1.217932 0.742075 -0.714045 -0.144033 1.528032 -0.670386 0.345275 -0.315163 1.175534 -0.628989 1.284520 0.256450 -1.073550 0.627841 0.709067 0.413832 0.844780 -0.536351 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -1.870850 -4.485284 5.984695 4.376832 0.467069 1.798290 2.378611 -0.254570 0.418623 3.096530 -1.625275 4.107962 -3.448531 -1.302945 0.912992 0.454801 -3.016186 -3.451021 0.458981 -0.435270 -1.304730 -2.032957 -2.349572 5.065572 2.787087 0.042394 -2.019499 -0.345873 -5.613936 -4.501060 -2.948375 -0.147261 2.458828 0.085640 3.316138 -4.971579 2.227920 4.452123 0.511247 -4.472883 1.014901 -1.506039 0.310360 -0.036194 -0.867537 2.276175 3.979695 0.830852 0.809748 1.448147 -0.080789 -2.153683 2.221081 4.331548 2.148919 3.429680 4.416257 -1.863941 1.536644 -1.085176 0.633138 -4.115746 1.671981 0.194564 -1.686262 -0.866699 0.360368 -0.531129 -0.981277 1.406585 2.400531 -2.299208 -2.371448 -2.550184 -3.916977 -1.439770 0.741659 2.125299 5.033192 -2.776908 5.422350 2.690788 3.232377 0.568252 3.175932 -0.192902 3.390087 0.831587 -2.362174 0.352386 -4.034209 -2.608978 -1.205721 3.129841 -1.847146 -0.229885 1.661960 -5.223672 -5.436330 2.722916 -0.763079 -2.131643 -2.388553 0.737180 1.813091 1.880608 -0.512736 -3.379493 -2.418709 1.582080 -2.694848 -1.048543 0.104881 0.153262 -0.708964 0.699359 -4.140505 1.219351 3.041816 -1.995025 -1.610039 4.005271 -0.641716 4.529371 0.207524 0.911100 0.359878 2.279172 3.231081 0.546588 -0.096848 -2.688007 -4.754138 -0.512656 0.483294 -0.228965 -2.521353 -0.704262 1.454112 1.861071 0.771154 2.800893 -1.039329 6.233178 1.485623 -2.021151 -3.418135 -4.367639 -2.920475 -1.531077 0.903213 -1.190223 -2.177105 0.741441 2.381022 0.383315 -0.791234 3.103484 -0.801065 2.040057 0.514430 -0.758527 -0.002547 -1.842967 1.962327 -2.888020 -1.678884 2.488845 3.243500 2.492776 0.284672 -0.770259 1.542229 -1.718444 -3.195490 1.196150 0.294917 1.062450 4.466057 3.173254 6.738297 -2.471004 -0.941181 -0.193763 -0.424106 -1.000842 0.508597 -3.324168 1.906648 0.249382 0.040436 5.165674 0.173708 -2.167380 2.950558 0.146072 0.352881 -3.308401 2.654158 -2.248818 0.966420 -0.882447 -1.080257 -2.944611 -1.458466 -3.112995 -1.327134 5.402286 -2.322038 -4.949921 1.308967 -0.425819 3.029362 -6.287704 4.513342 -1.710692 3.164635 -0.829448 -1.978764 0.295691 0.582161 -0.184970 1.145302 1.397362 -2.210971 1.590071 1.864969 0.779926 1.086469 1.017158 1.666983 -0.135880 0.853781 -1.388353 1.137788 -0.557217 -0.549495 -1.899939 -0.698283 1.483634 2.774039 -0.945065 -0.636298 2.009847 -0.723115 0.666121 3.488108 0.392412 -1.822303 -0.075103 -0.507618 4.500064 -3.267839 -2.341819 -1.742804 1.295449 0.921032 1.304187 -5.441363 -2.628006 -2.360907 -4.622836 -2.489219 1.342268 1.555019 1.555079 -0.858100 -4.202703 -2.639411 4.027255 0.754502 2.515439 2.440093 0.736945 4.372086 1.635517 1.297232 -1.915733 -0.252119 0.593582 -1.291013 -0.725198 -1.911750 1.204478 -4.145224 3.448560 3.431506 -1.846624 2.307839 -0.742584 2.123120 -4.871353 4.750771 2.009904 -5.286839 0.046229 3.843433 2.966977 -4.516605 -2.996308 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__finalCount(int, int) = -0.844924 -2.258163 2.851044 2.037676 0.547588 0.703751 1.514042 0.145373 0.810856 1.277314 -0.726044 2.007639 -2.014437 -0.451471 0.448464 0.276310 -1.446739 -2.107867 0.418421 0.173281 -0.446498 -1.381100 -0.619556 2.190639 1.360889 -0.047149 -1.124823 -0.389613 -3.152317 -1.551410 -0.928449 -0.312977 1.318114 -0.455882 1.419749 -2.681317 1.046149 2.039361 0.273403 -2.741298 0.609129 -0.855811 0.564368 -0.317040 -0.090090 1.084845 2.149383 1.155805 0.501865 0.796911 -0.401541 -1.031487 0.472252 2.137558 0.648073 1.487488 2.178410 -0.660643 0.351246 -0.800551 0.425873 -2.001269 0.915961 0.424884 -1.222854 -0.332580 0.190488 -0.419176 -1.189152 0.708349 1.384120 -0.423875 -1.446966 -0.889029 -1.850427 -0.445356 1.501962 1.090097 2.831090 -1.272477 2.640312 1.178701 1.907045 0.358067 1.187453 0.009143 1.162491 0.410902 -1.355713 -0.280111 -3.136665 -1.159953 -0.892653 0.898168 -0.462919 -0.644553 0.623432 -1.985689 -2.499898 1.005141 -0.488730 -0.743015 -1.289268 0.541138 1.310148 1.599034 -0.304421 -1.766371 -1.232898 0.534126 -1.285716 -0.456627 0.604476 -0.099239 -0.716579 -0.613051 -2.063907 0.186022 1.452961 -1.280845 -0.534353 1.837698 -1.399208 2.402726 0.145607 0.366190 0.237081 1.168774 2.049344 0.010744 0.542206 -1.920136 -1.875423 -0.446891 0.010607 1.366280 -1.129411 -0.103691 0.419280 0.772247 0.345235 0.665210 -0.280632 2.281754 0.671207 -1.312929 -1.678826 -2.102935 -1.087459 -0.744397 0.652294 -0.604468 -0.396697 0.381036 1.234435 0.078254 -0.196903 2.363881 -0.839129 1.099184 0.305797 -0.393380 0.039449 -0.267514 1.023825 -1.240817 -0.919569 1.144791 1.577017 1.006786 0.059671 -0.497561 0.786489 -1.130840 -1.466681 0.127314 0.331516 0.548981 1.936638 1.177677 2.131435 -1.245443 -0.665785 0.118968 0.097734 -0.455274 0.219645 -1.831980 1.183048 -0.057604 0.156002 2.283587 0.068850 -1.550815 1.812676 0.193367 0.179414 -1.518083 1.039618 -1.170800 0.258373 -0.700971 -0.196229 -1.408673 -0.690323 -1.634428 -0.447110 2.635442 -0.025518 -2.827978 0.231227 -0.295273 1.876170 -3.339968 2.057421 -0.832831 1.631130 -0.128077 -0.483327 0.279864 -0.028401 -0.039671 0.057970 0.750127 -0.622258 0.889915 0.909292 0.488000 0.212380 0.678197 0.733931 0.262116 0.426104 -0.499828 0.292634 -0.554991 -0.346697 -0.339330 -0.327338 1.118490 1.355871 -0.625021 0.046560 1.179516 -0.149343 1.244197 1.490320 0.308918 -0.988104 -0.100088 -0.118030 2.552303 -1.360475 -0.787302 -1.108502 0.873519 0.190177 1.048217 -2.465291 -1.876307 -0.423474 -3.163997 -0.992451 0.337889 0.466591 0.517563 -0.215912 -2.158019 -1.039744 1.198750 0.464524 2.392735 1.210314 0.127340 2.104507 0.881035 -0.310967 -1.078848 0.538030 0.214109 -0.861783 -0.467220 -0.987856 0.372659 -2.179376 1.469376 1.865252 -1.127594 0.737796 -1.308380 1.270693 -2.210079 2.775402 1.231475 -2.457331 0.114564 1.156617 2.469939 -1.763989 -1.500459 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = -0.078588 -0.637046 1.113169 0.826990 -0.052067 0.068941 0.587307 -0.123703 0.332867 -0.028230 -0.231188 0.436469 -0.748240 0.203198 -0.343129 0.334162 -0.755478 -0.670470 -0.037621 -0.161260 -0.107002 -0.298170 0.400408 0.259481 0.638324 0.312047 -0.407325 -0.597820 -0.937156 -0.092710 0.427880 -0.197815 0.537840 0.259770 -0.080239 -1.437926 0.333778 0.550985 -0.240517 -0.798395 0.540866 -0.431703 0.078669 -0.484732 -0.116635 0.092842 0.336499 0.458060 0.303281 0.287065 -0.126277 0.009954 0.179906 1.189302 -0.302880 0.383008 0.587922 -0.039314 -0.098003 -0.169323 0.202643 -0.176521 0.291833 0.215587 -0.171709 -0.486165 -0.307936 -0.627408 -0.566290 0.334674 0.093836 0.267513 -0.570712 -0.084917 -0.511144 -0.096375 -0.369229 0.673832 0.938982 -0.762104 0.704154 0.073375 0.279588 -0.086327 0.026804 0.250999 -0.046347 0.223511 -0.046634 -0.254780 -0.793080 -0.054266 -0.072909 -0.045177 -0.214913 -0.910694 0.551390 -0.352466 -0.700668 0.164829 0.167895 -0.276544 -0.084757 0.160371 0.004907 0.654798 -0.425972 -0.523502 -0.276348 0.022230 0.180799 -0.156080 0.094423 0.083348 -0.330714 -0.627225 -0.817761 0.169560 0.067774 -0.425834 -0.025075 0.485963 -0.375961 0.341923 0.017939 0.219207 -0.256780 0.818953 0.321182 0.143052 0.377191 -0.123482 -0.473837 -0.080504 0.493087 1.203726 -0.497861 0.021040 -0.264916 0.131703 -0.133624 -0.288301 0.199502 0.380437 0.407343 -0.629913 -0.587693 -0.481264 -0.080938 -0.711813 0.065230 -0.430758 0.177308 0.501707 0.475021 0.334305 0.363772 1.230859 -0.506567 0.364795 0.090542 -0.293872 0.287651 0.311007 0.386865 -0.346225 -0.488668 0.261104 0.153959 0.314335 0.000000 0.144518 0.158379 -0.680935 -0.270151 0.172605 0.368600 -0.260830 0.513177 0.447358 0.084185 -0.566993 -0.071925 0.333993 -0.231635 -0.109447 0.179115 -0.776840 0.475019 0.023225 -0.214313 0.455020 0.066501 -0.475236 0.566201 -0.259446 0.068731 -0.373758 0.148842 -0.399328 -0.266236 -0.573581 0.153858 -0.170579 -0.326999 -0.288631 -0.193451 0.870235 -0.359173 -0.437203 0.151276 0.108379 0.279389 -1.070827 0.977993 -0.394787 0.528673 -0.037635 -0.158387 0.070225 0.080533 -0.352148 -0.177907 0.278573 -0.188732 0.199646 0.806412 0.343108 -0.104574 0.095234 0.618645 -0.010436 0.485331 -0.159032 0.338068 -0.190049 -0.466848 0.180034 -0.124844 0.057333 -0.065772 0.125442 0.955085 0.356285 0.439625 0.715757 0.378880 0.719447 -0.399753 0.150200 -0.107657 0.878960 -0.288533 -0.185602 -0.081663 0.461327 -0.129709 0.424710 -0.793666 -1.231350 -0.415086 -0.934572 0.072784 -0.327605 0.190888 -0.203799 -0.052512 -0.875333 -0.486777 -0.179123 -0.253613 0.677212 0.499299 0.062393 0.609312 0.469259 -0.529609 -0.122030 0.375990 0.539515 0.058686 -0.064446 -0.546885 0.296647 -0.679002 0.061169 0.893970 -0.336865 0.241228 -0.178381 0.866722 -0.526460 1.177146 0.303207 -0.706481 0.564789 0.537301 0.694297 0.190121 -0.416998 -PE-benchmarks/optimal-binary-search-tree.cpp__optimalSearchTree(int*, int*, int) = -4.205554 -10.569012 14.358480 10.456534 0.597971 4.826672 5.352588 -0.825415 -0.509467 6.805627 -3.952857 10.436523 -7.575805 -2.347260 0.444207 0.702814 -7.161479 -7.703938 0.737982 -1.371482 -3.091094 -4.459161 -5.911474 13.097416 6.690018 0.173834 -5.113083 -1.711067 -13.866193 -8.959355 -7.510621 0.335756 5.927179 -0.654110 8.096660 -11.635828 4.814863 11.181473 1.479597 -10.349571 3.034014 -3.295955 0.329501 1.751952 -3.997595 5.108160 8.765374 2.330659 1.923192 3.489928 1.429892 -4.058901 6.105623 10.937910 5.847974 8.501504 9.054532 -4.419160 4.013667 -3.124928 1.047381 -9.299521 3.521640 -0.242438 -3.087238 -2.308887 0.245730 -0.004421 -1.952356 2.964535 6.204116 -5.672787 -5.506390 -5.559134 -8.485192 -3.466942 3.274026 4.592263 11.465914 -5.368111 12.473438 5.882177 6.674151 0.240381 7.591554 -0.583302 7.498086 1.736386 -4.325631 1.541111 -8.714143 -3.885698 -2.265113 7.092270 -5.833401 -3.136469 3.979913 -11.893618 -12.961229 6.447290 -1.431390 -6.493285 -3.016346 1.896162 3.821593 4.057060 -2.029135 -7.987016 -5.272978 4.748444 -5.592772 -2.741980 0.049191 -0.259321 -0.498259 1.059137 -8.878208 3.989268 7.326866 -3.769886 -3.016745 9.696095 -0.389402 10.540413 0.722079 2.563988 0.879619 5.507715 7.635779 0.579333 -2.803920 -6.016279 -8.871196 0.060693 0.614652 -2.338611 -6.655870 -3.167273 3.251532 4.773402 2.647624 7.603959 -1.805747 14.183420 4.652225 -4.220929 -7.955632 -10.076702 -7.166319 -3.678623 0.881989 -1.954035 -6.857221 0.789331 5.310443 0.684952 -1.678673 5.621398 0.405382 4.377523 1.917651 -2.544938 0.359816 -4.787005 4.439035 -6.637315 -4.396487 6.226895 7.137079 7.287841 0.189572 -0.376807 2.857446 -3.040886 -6.170437 2.766348 2.159590 4.088181 11.403341 8.207607 16.694240 -3.228237 -2.774187 -0.733556 -2.019792 -2.317324 0.912578 -7.754434 3.447975 1.170737 -1.729937 13.324519 -0.032815 -3.754232 8.226855 0.502102 1.508657 -8.812396 6.895092 -5.035412 2.940433 -2.701009 -2.935434 -6.725785 -2.516338 -8.335973 -4.957252 12.960092 -7.760648 -11.292948 2.631546 -1.458897 6.357010 -13.963973 10.292174 -3.783131 7.322070 -1.397463 -4.839974 0.859465 0.887905 -1.039826 4.421529 2.898197 -5.255489 3.596397 4.546924 1.718806 1.674545 1.940510 4.278099 -0.655669 2.659564 -3.796729 3.153730 -0.825217 -0.845436 -3.746074 -1.261431 1.811547 6.361747 -1.672276 -1.330640 4.144827 -1.390477 0.291781 8.182707 0.993965 -3.903154 -0.413575 -2.062706 9.451206 -7.906359 -6.126918 -3.880574 3.631306 2.831572 1.890545 -13.338808 -5.852796 -7.587994 -10.936136 -4.222157 2.333573 3.649069 4.246519 -2.695983 -9.885257 -7.228122 11.119476 1.404749 7.298321 6.492132 1.455720 10.556394 3.912560 3.299483 -2.655071 -1.044843 1.938387 -2.290286 -1.073192 -4.847050 3.156326 -9.521653 8.795283 8.457854 -4.563055 6.650540 -1.086172 4.945422 -12.023845 11.258861 4.464314 -12.660685 0.207982 7.795731 5.787194 -10.591439 -6.975753 -PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -0.849780 -1.784605 2.680250 1.971855 0.409634 0.609110 1.424092 -0.351585 0.785832 1.495641 -0.599511 1.471086 -1.902678 0.025090 -0.000274 0.763823 -1.310165 -1.687276 0.143286 -0.439337 -0.642832 -1.114636 -0.031938 1.311440 1.455747 -0.357388 -0.992910 -0.801802 -2.584408 -1.595189 -0.497572 -0.345913 1.190183 -0.560069 0.586374 -2.983318 1.123110 1.770369 -0.125785 -2.022233 0.928689 -0.997339 0.324936 0.072194 -0.131018 0.611213 1.438607 0.815476 0.877836 0.853524 0.632019 -0.610073 0.678709 2.826434 -0.143584 1.448966 1.471772 -0.586386 -0.131849 -0.197758 0.263030 -1.344970 0.927010 0.498438 -0.786529 -0.726624 0.037255 -0.500515 -1.212374 0.751997 0.736483 -0.648642 -1.227863 -0.707063 -0.921921 -0.566757 0.113232 0.964700 2.496380 -1.244820 2.292074 0.728785 1.055903 -0.024015 0.920088 0.007067 1.065469 0.246836 -0.923837 -0.594513 -1.668894 -0.396639 -0.396152 1.258432 -0.542909 -0.737463 0.914363 -0.820382 -2.329746 0.805320 -0.097754 -0.787387 -1.104052 0.548268 0.722172 1.173570 -0.592329 -1.803076 -1.176131 0.504260 -0.708203 -0.553406 -0.022253 -0.680415 -0.749473 -0.534530 -1.919665 0.209595 0.774715 -1.179096 -1.074257 1.613860 -0.817031 1.614595 0.248387 0.740477 0.035319 1.289164 1.182844 0.464457 0.488883 -0.958514 -2.196012 -0.087461 0.546973 1.020659 -1.027699 0.118240 -0.042132 0.510715 -0.168785 0.731539 -0.166081 2.373053 1.269426 -1.197237 -1.503099 -1.318551 -0.373377 -1.111872 0.570420 -0.912865 -0.397732 -0.021032 1.189807 0.235163 0.200941 2.428266 -0.913068 1.259440 0.316249 -0.559044 0.580666 -0.273886 1.132887 -1.298825 -1.015388 0.784945 1.446046 0.612196 -0.136696 0.011714 0.461603 -1.380723 -0.979879 0.291886 0.317301 0.089076 1.693606 1.156079 3.387385 -1.417235 -0.118600 0.439553 -0.273339 -0.296444 0.217737 -1.864403 0.826208 0.203875 -0.217916 2.104154 0.191406 -1.404466 1.290118 -0.227216 0.269277 -1.460380 1.126884 -1.055053 0.022813 -0.621262 -0.388713 -0.897090 -0.748837 -1.014586 -0.200075 2.329908 -0.633616 -2.136274 0.593283 -0.350973 0.953323 -3.043461 3.045394 -1.020065 0.996671 -0.737570 -0.640395 0.016837 0.818853 -0.318868 0.613600 0.635952 -0.495146 1.031641 1.757593 0.562882 0.434254 0.329503 1.150066 0.077720 0.632312 -0.413711 0.935832 -0.234147 -0.497562 -0.356216 -0.426741 0.452901 0.783800 -0.320391 0.692066 1.276701 -0.379722 0.882668 1.345728 0.909038 -0.819808 0.654117 -0.290451 2.186613 -1.074652 -0.797584 -0.390331 0.628108 0.079946 0.995520 -2.385440 -1.798298 -0.345203 -2.501922 -0.384210 0.480575 0.662305 0.228633 -0.129802 -2.194398 -1.117270 1.235018 -0.007302 2.054606 1.046062 0.413180 1.679771 1.049922 -0.097262 -0.630320 -0.091614 0.358029 -0.450861 -0.545708 -0.668263 0.564112 -1.907741 1.216532 1.482276 -0.752851 0.675055 -0.549207 1.031669 -1.939812 2.388428 0.880510 -1.560339 0.940702 1.339660 2.112412 -1.383787 -1.213603 -PE-benchmarks/optimal-binary-search-tree.cpp__main = 0.563084 -0.538973 2.193305 1.426717 -0.780558 -0.129581 0.325934 -0.647142 0.576136 -0.949954 -0.625385 0.540243 -0.861543 0.503020 -0.918130 0.616022 -2.143265 -0.788722 -0.312016 -0.587617 -0.211246 -0.184533 0.842712 0.306580 1.162552 1.408648 -0.654791 -0.478816 -0.768346 -0.105692 0.953512 -0.428889 0.668363 0.939332 0.096337 -2.084899 0.940459 0.626906 -0.581541 -1.017689 0.987585 -0.705895 -0.163919 -1.342637 -0.481699 0.117739 0.222898 1.378114 0.678669 0.361763 -0.761142 0.288999 0.366545 1.740323 -0.562900 0.369696 0.814742 -0.157683 -0.184335 -0.307229 0.289137 -0.005771 0.130396 0.222889 -0.052568 -1.309413 -0.500553 -1.254910 -0.497073 0.773763 0.061018 0.458312 -0.993651 -0.210035 -1.146865 0.035674 -1.005643 1.575872 1.331667 -1.360318 0.581774 -0.107823 0.152913 -0.054737 -0.165894 0.526646 0.160749 0.472750 0.277997 -0.339641 -1.098549 -0.305401 0.370361 -0.954487 -0.392335 -2.333696 0.814520 -1.778297 -0.968096 0.022514 0.796939 -0.766708 0.613869 0.090492 0.021264 0.699340 -0.514366 -0.435786 0.462867 -0.086685 0.334692 -0.021600 0.115802 0.532581 -0.256622 -0.670270 -1.571157 0.748326 -0.173251 -0.105436 0.682296 0.676603 -0.119425 -0.099479 -0.047683 0.412442 -0.612307 1.587783 0.026009 0.291918 0.131133 0.554025 0.610653 0.505784 0.985737 1.204050 -0.894134 -0.140022 -0.561413 0.274987 -0.701945 -0.863093 -0.086391 0.349830 0.115759 -1.118969 -1.036550 -0.625680 -0.992446 -1.454360 -0.037796 -0.589721 -0.512757 1.093029 0.751674 0.935025 0.964714 1.264262 -0.764423 0.078796 0.071450 -0.240801 0.793867 0.507066 0.708266 -0.511440 -0.491189 0.553258 -0.469390 0.658543 -0.085640 0.306259 0.370164 -1.295403 -0.067531 0.690439 0.881458 -0.211408 0.761610 0.935097 -0.760278 -0.390750 -0.109396 0.908756 -0.526557 -0.379762 0.587075 -0.989994 0.747062 0.157407 0.209072 0.684573 0.146860 -0.294592 0.585038 -0.239573 0.170654 -0.495800 -0.320572 -0.381782 -0.359119 -0.883423 0.764914 -0.298931 -0.404711 -0.601522 -0.938379 1.313599 -1.517115 -0.403592 0.807722 0.000129 0.935991 -1.182552 0.894102 -0.737787 1.236357 0.459556 -0.096673 0.300861 -1.041366 -1.224813 -0.090062 0.333214 0.023384 -0.017302 0.840331 0.833431 -0.184054 -0.103948 1.146508 -0.475242 1.448801 -0.278529 0.539881 -0.425941 -0.777760 0.370822 -0.032219 -0.685666 -0.473972 0.695040 1.759024 0.097547 1.565984 1.412523 0.297887 1.526013 -0.743599 0.297184 -0.408406 0.733576 -0.497617 -0.576323 0.387164 0.907337 -0.273457 0.570428 -1.402637 -2.297892 -1.908157 -1.120691 0.149193 -1.318373 0.411980 -0.583704 -0.216555 -1.019584 -0.890244 0.173580 -0.332543 0.851175 0.952403 -0.120331 0.808927 0.888605 -0.989879 -0.039772 0.754041 1.227188 0.535062 0.203450 -1.657066 1.062379 -0.906543 -0.292821 2.109759 -0.947688 0.444454 -0.427773 1.450668 -0.823606 1.578482 0.277748 -1.398996 0.816730 0.991740 0.418611 1.160727 -0.714366 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.412424 -0.733312 1.172376 0.776973 0.208506 0.143927 0.512441 0.134319 0.210559 0.616499 -0.383314 0.770448 -0.727375 -0.019082 0.096625 0.294164 -0.564760 -0.811733 0.131326 0.066101 -0.291561 -0.454387 -0.070927 0.582450 0.701587 0.251006 -0.596022 -0.222541 -1.041621 -1.090796 -0.481009 -0.107869 0.507910 -0.028404 0.454097 -0.942191 0.350480 0.686188 0.078828 -0.913779 0.396112 -0.245405 0.160508 -0.026042 0.149159 0.608505 0.923192 0.232428 0.350975 0.393871 0.031744 -0.501966 0.154906 0.621812 0.176981 0.481055 0.699019 -0.355246 0.059723 -0.271251 0.108353 -0.840287 0.259306 0.241627 -0.438744 -0.155154 0.113823 -0.192873 -0.381914 0.445254 0.309702 -0.243114 -0.597814 -0.490496 -0.513537 -0.084902 0.346651 0.463825 1.055413 -0.396703 0.918618 0.300885 0.653582 -0.080269 0.226073 -0.109560 0.344258 0.111173 -0.432075 -0.260215 -0.658018 -0.529738 -0.445475 0.900005 -0.099517 0.291011 0.355809 -0.693582 -0.896855 0.241376 -0.123783 -0.244840 -0.658220 0.503140 0.424595 0.638013 0.104179 -0.621657 -0.485236 0.034055 -0.400094 -0.082157 0.068595 -0.161509 -0.473427 0.061912 -0.820941 0.077321 0.332662 -0.524483 -0.357562 0.539581 -0.365623 0.867402 0.138562 0.333010 0.138240 0.566741 0.780959 0.159053 0.270960 -0.452273 -1.018496 -0.160400 0.190616 0.452856 -0.584179 -0.012087 -0.019841 0.131349 -0.123823 0.058761 -0.323580 1.074432 0.849589 -0.633412 -0.877728 -0.641988 -0.300736 -0.353829 0.165012 -0.321515 0.009299 0.029589 0.351295 0.031243 -0.033618 1.298341 -0.514203 0.389586 0.196746 -0.299990 0.079644 -0.083604 0.405540 -0.545163 -0.302323 0.397046 0.602608 0.257245 -0.003908 -0.117690 0.295153 -0.561927 -0.580963 0.536304 0.159620 0.286941 0.567742 0.434162 0.979080 -0.524582 -0.273994 0.148590 0.008260 -0.340258 0.249994 -0.732476 0.580051 -0.054981 0.231766 0.768457 0.114483 -0.504811 0.724408 -0.038971 0.105370 -0.558785 0.438007 -0.448079 0.306429 -0.210119 -0.293461 -0.404864 -0.149592 -0.314530 -0.069773 0.956058 0.109883 -1.159037 0.155683 -0.208359 0.651461 -1.359350 0.696723 -0.294945 0.427503 -0.249285 -0.060098 0.016432 0.024053 0.108936 0.104815 0.182852 -0.077203 0.302424 0.573274 0.148429 0.042696 0.226319 0.391032 0.173494 0.286379 0.086711 0.047288 -0.112431 -0.019251 -0.173544 -0.001625 0.175222 0.500148 -0.312348 0.164947 0.491117 -0.143640 0.496915 0.544567 0.319341 -0.344695 0.068631 -0.105457 1.126214 -0.527652 -0.481206 -0.256343 0.406538 -0.043145 0.300928 -0.922291 -0.835728 -0.047222 -1.484550 -0.434920 0.090775 0.341967 0.105042 -0.198989 -0.621061 -0.393405 0.531514 0.300283 1.245576 0.266423 -0.059689 0.705124 0.333858 -0.203559 -0.371463 -0.052440 0.159645 -0.197619 -0.177496 -0.367104 0.104827 -0.824929 0.411261 0.719449 -0.537992 0.300136 -0.257901 0.561428 -0.933663 1.052552 0.393980 -0.845604 0.275189 0.309466 0.897806 -0.615964 -0.549620 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -2.730164 -5.534904 9.077520 6.124081 -0.048510 2.592913 2.498233 -1.986799 1.059169 3.518731 -2.174315 5.289197 -4.489023 -1.106256 0.060081 0.664058 -5.188791 -4.604084 -0.539049 -2.167026 -2.739564 -2.704042 -2.626420 6.288659 3.902660 0.096285 -3.315098 0.179444 -7.635030 -6.533304 -3.231550 -0.157590 3.204025 -0.925344 4.366088 -8.673566 4.091334 6.287626 0.103699 -5.842239 1.865651 -2.304272 -0.367560 0.552634 -2.041421 2.399034 4.116644 0.866160 1.733601 1.659130 0.962608 -1.876736 2.115100 7.999231 2.064005 4.947023 5.782769 -2.728205 1.155061 -0.565869 0.693143 -4.607385 2.200412 0.533730 -2.017234 -1.924702 1.400939 -0.973038 -1.647894 2.770316 2.703622 -4.625851 -2.309100 -4.106024 -5.897391 -2.057156 2.884066 3.089768 7.254589 -3.760629 6.884314 2.580116 3.570497 0.804408 4.655444 -0.442223 6.021104 1.155733 -2.668317 0.161526 -4.263692 -2.510874 -0.951778 5.178516 -2.977836 -0.844733 3.007142 -8.337133 -7.634101 3.638454 -0.062478 -3.403049 -4.019381 0.508764 2.507977 1.846178 -1.111076 -4.830795 -3.433260 2.947711 -3.521948 -1.274273 -0.128628 -0.366781 -1.081063 1.081733 -6.009747 2.275857 3.779009 -2.052010 -3.104658 6.027278 -1.091315 4.973851 0.247746 2.076738 -0.188296 3.437269 2.678902 1.170741 -1.321769 -2.254994 -5.823490 -1.190865 0.556652 -0.603195 -3.551355 -1.494628 1.486155 2.519467 -0.362286 3.970032 -2.739531 8.611163 2.805981 -2.656179 -5.078497 -5.091259 -4.075246 -4.014997 0.424879 -2.173045 -4.781435 1.083641 3.670960 1.894210 -0.607643 4.808770 -0.866527 3.022309 0.873048 -1.744753 0.954542 -4.001200 3.029697 -4.402793 -2.858927 3.223969 3.416278 3.648609 0.397352 -0.780015 1.367686 -3.271474 -4.562212 2.211855 1.172907 2.058090 5.874225 5.218626 11.012326 -4.325509 -0.633552 0.435325 -1.380807 -1.372272 0.453772 -4.576201 1.289289 1.248097 0.137796 8.258813 0.381244 -2.900877 3.137110 0.208580 1.163559 -4.947490 3.636020 -2.878685 1.968468 -1.327192 -2.201592 -4.010647 -1.542139 -4.513832 -3.460820 7.688004 -5.605558 -8.005542 3.916935 -0.528624 4.912609 -9.368084 5.941478 -2.690383 5.732069 -1.379108 -2.026278 0.122221 0.495274 -1.503570 4.101092 1.645677 -3.076584 2.258756 3.837679 1.399546 2.407762 0.271186 3.138019 -1.106759 2.017206 -2.501896 3.034376 -0.577107 -1.815607 -2.563021 -1.171540 0.668932 2.789648 -0.141270 -1.057442 2.897031 -0.561751 0.766127 5.318682 1.413627 -2.594867 1.066370 -0.803859 5.165917 -4.282016 -3.668789 -0.889998 2.627987 1.315644 1.307737 -7.918312 -4.261811 -5.412336 -7.491465 -2.533767 1.375066 2.137030 1.679432 -1.389890 -5.661294 -3.921913 7.094121 0.711292 5.879492 3.744081 1.629241 5.853085 3.323369 1.182140 -1.685623 -0.819587 1.098135 -1.581084 -1.163104 -3.579194 2.660193 -5.512712 4.556694 5.218852 -2.359993 3.917719 0.046676 2.165156 -6.942551 6.366253 2.646586 -6.758324 0.987886 5.247359 4.151948 -4.909733 -4.251450 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 0.288479 -0.493912 1.567500 1.051719 -0.506072 -0.045153 0.331176 -0.405339 0.433390 -0.686374 -0.425629 0.392680 -0.743001 0.343096 -0.609541 0.365075 -1.495514 -0.663673 -0.216422 -0.384389 -0.145082 -0.213664 0.580440 0.297980 0.815110 0.976720 -0.490663 -0.403424 -0.751692 0.084949 0.756654 -0.286544 0.553377 0.760772 0.063216 -1.644943 0.606302 0.509765 -0.394383 -0.816180 0.706230 -0.590952 -0.052001 -0.996530 -0.324157 0.087253 0.194314 0.941830 0.473671 0.203839 -0.554321 0.149580 0.155956 1.308768 -0.431338 0.306767 0.636857 -0.099409 -0.129160 -0.246517 0.209402 -0.031280 0.170448 0.205698 -0.159653 -0.890200 -0.350394 -0.968757 -0.464659 0.568963 0.092961 0.383825 -0.740491 -0.165743 -0.857902 -0.015800 -0.622784 1.143425 1.032971 -1.030158 0.527656 -0.058227 0.193861 -0.043226 -0.047969 0.385120 0.127201 0.319629 0.146952 -0.240526 -0.988925 -0.199664 0.178384 -0.609265 -0.280615 -1.572607 0.600559 -1.189038 -0.756659 0.028387 0.491699 -0.513498 0.315000 0.133563 0.015838 0.589715 -0.402312 -0.400900 0.209147 -0.003618 0.228566 -0.033478 0.100433 0.394696 -0.249672 -0.690485 -1.152943 0.497273 -0.081088 -0.163122 0.436266 0.569480 -0.261002 0.018451 -0.011666 0.261442 -0.451578 1.206731 0.085058 0.131640 0.193043 0.209062 0.261836 0.228928 0.683110 1.197987 -0.671271 -0.114966 -0.377941 0.182023 -0.472081 -0.669307 0.036873 0.261891 0.122419 -0.860328 -0.749719 -0.511686 -0.624020 -1.092090 -0.039945 -0.461064 -0.214688 0.841727 0.576416 0.744762 0.665333 1.133552 -0.584636 0.158347 0.062313 -0.246396 0.539610 0.461663 0.520181 -0.395174 -0.431450 0.398679 -0.321826 0.492938 -0.032875 0.208985 0.229423 -0.962758 -0.154899 0.460437 0.636401 -0.140598 0.613333 0.699758 -0.574458 -0.448496 -0.044701 0.621527 -0.366562 -0.253619 0.402181 -0.767420 0.583291 0.107463 0.005249 0.511690 0.080923 -0.304843 0.459466 -0.191757 0.150550 -0.417131 -0.187934 -0.324808 -0.268960 -0.748094 0.507912 -0.232004 -0.359649 -0.449206 -0.638820 1.014550 -0.968030 -0.392983 0.526002 0.075890 0.707519 -0.998551 0.670608 -0.536638 0.949382 0.263576 -0.093180 0.195382 -0.643303 -0.808950 -0.098153 0.266159 -0.057973 0.007274 0.691182 0.596774 -0.129185 -0.020014 0.843735 -0.253088 0.973916 -0.233921 0.394152 -0.296903 -0.585171 0.326893 -0.069181 -0.364375 -0.268891 0.456334 1.361269 0.216514 1.126347 1.064910 0.294002 1.063830 -0.529466 0.130884 -0.267073 0.651760 -0.360836 -0.386277 0.187715 0.686430 -0.191059 0.400134 -1.033692 -1.766511 -1.216962 -0.948882 0.125077 -0.914849 0.253732 -0.343528 -0.129354 -0.849474 -0.631969 -0.038526 -0.286348 0.829739 0.651016 -0.064008 0.653535 0.685317 -0.801807 -0.074939 0.672195 0.909397 0.301306 0.156787 -1.217932 0.742075 -0.714045 -0.144033 1.528032 -0.670386 0.345275 -0.315163 1.175534 -0.628989 1.284520 0.256450 -1.073550 0.627841 0.709067 0.413832 0.844780 -0.536351 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__computeTransFun(char*, int, int (*) [256]) = -2.460973 -5.581356 9.752224 7.210052 -0.418626 2.529901 2.373537 -2.327309 1.076503 4.382876 -2.321347 5.137325 -4.698313 -0.538745 0.676814 2.060829 -5.771423 -4.278390 -0.477605 -2.739551 -2.996059 -2.390302 -2.489118 5.858897 4.401666 0.568749 -3.364388 -0.347519 -6.449291 -7.335172 -3.030762 -0.593113 3.673505 0.358750 3.868291 -9.999563 4.630795 6.262119 -0.390154 -5.318477 2.044178 -2.564519 -0.262507 0.152560 -2.300972 2.576058 4.121250 1.044321 2.314137 2.152837 1.646238 -1.850428 3.742221 8.743641 1.472764 5.184230 5.507851 -3.021806 0.889268 -0.660172 0.834329 -4.388987 2.640720 0.587765 -1.553348 -3.148087 0.575310 -1.220705 -1.766858 2.719180 2.868044 -4.157167 -3.124277 -4.008596 -4.638152 -2.689332 -0.579729 3.294097 7.647085 -4.289842 7.179993 3.207559 3.125597 0.708131 4.609943 -0.168597 6.239726 1.264973 -2.711981 0.737052 -2.784757 -2.864050 0.015601 5.493798 -3.258424 -2.111719 2.918982 -7.160501 -8.012162 3.975469 0.439449 -3.326457 -3.651588 -0.005433 2.214306 1.552707 -1.522104 -5.127966 -3.044192 2.194437 -3.136766 -1.832911 -1.185159 -0.740127 -0.853200 1.631320 -6.821612 2.309418 3.227868 -2.262145 -2.928597 5.907670 0.327248 4.518702 0.181334 2.390180 -0.505232 4.110029 2.484525 2.076310 -1.301359 -1.445611 -6.242619 -0.433139 1.720524 -1.440763 -3.506785 -2.119043 0.890719 2.539053 -0.635027 4.501264 -1.614256 9.600176 3.975399 -2.393872 -5.105306 -5.187899 -4.146274 -4.308950 1.152120 -2.685018 -4.538065 0.564576 3.902090 1.174164 0.323199 4.257719 -1.178347 3.506815 0.272890 -1.227266 1.909418 -3.077448 3.527947 -4.513388 -2.678175 3.490794 4.023095 3.575447 0.446748 -0.754882 1.811871 -3.380068 -3.964696 2.626465 0.775712 1.057489 6.270888 5.155889 14.000548 -3.704145 0.041244 0.836702 -1.438900 -1.135691 1.099128 -4.961820 1.713371 1.274270 -0.562812 8.217900 0.419858 -3.107782 2.966946 -0.148756 0.868540 -5.084701 4.020244 -2.945865 1.792121 -1.527335 -1.433189 -4.180852 -2.003918 -4.036565 -2.373327 8.025999 -6.410352 -6.716875 3.971932 -0.668613 3.914665 -9.087340 8.200000 -3.238143 4.859093 -2.700818 -3.417450 0.356324 1.035221 -1.889191 3.950733 2.057308 -2.837729 1.973277 4.257081 1.784933 2.324111 0.368007 3.740283 -0.944072 2.604742 -2.311927 3.760397 -0.347777 -1.019107 -3.023348 -1.251635 0.181997 2.517679 -0.110664 -0.423835 3.030075 -0.691155 0.306928 5.068814 2.026265 -2.831508 1.731536 -1.038720 5.367907 -4.572236 -3.636894 -0.674440 2.312940 0.987328 1.943812 -8.539510 -4.005421 -5.243227 -5.701558 -3.023165 3.098410 2.671475 1.756118 -1.294160 -5.991782 -4.254177 8.000219 0.103909 4.229755 3.797211 1.861196 5.945669 3.458240 2.117304 -2.425788 -1.629411 1.064901 -0.814350 -0.755467 -3.664396 3.511018 -5.452635 4.556695 5.386526 -2.685235 3.568383 0.235005 3.572210 -6.864185 6.855580 2.350423 -6.610783 1.818007 6.514449 4.130113 -5.321814 -4.208817 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -1.448269 -3.593992 6.141371 4.239112 -0.429933 1.465232 1.910337 -1.145538 1.130935 0.744991 -1.368917 3.255833 -3.700554 -0.197712 -1.069391 0.275938 -4.057382 -3.154820 -0.453991 -1.324336 -1.197929 -1.868365 -0.516816 4.101327 2.856076 1.242214 -2.264333 -0.992325 -5.652897 -1.832131 -0.306639 -0.314536 2.583302 0.245445 1.727158 -6.613463 2.163275 4.012233 -0.389048 -4.162675 2.184191 -2.468513 0.189581 -1.059450 -1.673786 0.709095 2.162130 1.483472 1.440127 0.529045 -0.450195 -0.468456 1.496198 6.133345 0.087507 2.971076 3.527818 -1.219386 0.283708 -0.793632 0.411422 -2.229801 1.692942 0.473092 -1.758604 -2.118200 0.169356 -1.529568 -1.900737 1.876809 1.429891 -1.192088 -2.143041 -1.754013 -3.954766 -1.123083 1.795060 3.011330 4.729267 -3.108444 4.269259 1.126000 1.777576 0.339299 2.305138 0.412213 2.702227 0.721439 -1.060507 -0.877190 -4.500347 -0.369359 -0.450858 1.476064 -1.801953 -2.721134 2.220819 -5.226584 -5.046065 1.488849 0.297095 -2.493498 -1.262769 0.491665 1.163779 1.985700 -1.118660 -3.210362 -1.597855 1.946258 -1.413054 -0.943876 0.012440 -0.102480 -0.655026 -1.345762 -4.125138 1.743456 1.668415 -1.388648 -1.150173 3.928170 -1.246580 2.779082 0.359843 1.595853 -0.519075 2.903156 1.618895 0.234925 0.027641 -1.496443 -1.822286 -0.408820 0.884045 2.106927 -3.059017 -0.750538 0.041893 1.279638 -0.243403 0.696914 -0.754552 4.261463 0.855571 -2.667929 -2.795544 -3.253646 -2.415483 -3.451429 -0.121263 -1.371491 -2.358623 1.562640 2.483289 1.727325 0.554412 3.900047 -1.050307 1.871158 1.065908 -1.454203 1.319625 -0.794308 2.169693 -2.720081 -2.420030 1.809872 1.324165 2.405479 -0.458181 0.526913 0.533771 -2.620287 -2.140373 0.970144 1.443979 1.084228 4.179381 3.479854 4.777469 -3.256196 -0.122890 0.799270 -1.343861 -0.732832 0.310385 -3.479512 1.461154 0.940988 -0.600970 4.967635 0.140870 -2.221658 2.425042 -0.028680 0.923801 -3.250076 1.935485 -2.144498 -0.113017 -1.920251 -0.931413 -2.062545 -1.614241 -3.387811 -2.440241 5.212514 -4.090597 -4.308271 2.173962 0.340558 2.960987 -6.212304 4.110506 -2.069763 3.974331 -0.305741 -1.319885 0.211299 -0.156547 -1.818833 1.423825 1.223247 -2.026777 1.682479 2.955656 1.531250 1.141741 0.255219 2.497996 -0.408240 2.055284 -1.885344 1.956234 -0.555747 -1.965536 -0.420129 -0.817269 0.387663 1.360007 0.375405 1.603121 2.410987 1.227243 1.800533 3.249311 2.083982 -1.719130 0.537573 -1.012853 3.485571 -2.325944 -2.108341 -0.643536 2.017599 0.649217 1.635439 -5.475115 -4.841070 -3.297718 -5.016875 -0.287276 -0.982391 1.002504 0.777342 -0.641155 -4.908648 -2.883334 2.140263 -0.261529 4.581802 2.563576 0.839972 3.821128 2.598557 -0.670680 -0.772645 1.143506 1.782588 -0.586694 -0.536112 -3.271344 2.173481 -3.348424 2.472388 4.472534 -1.935387 2.421520 -0.722453 1.887113 -4.257326 5.374085 1.793758 -4.813136 1.461795 2.794969 2.844684 -1.512707 -2.810839 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.531872 -0.348855 1.589249 1.064448 -0.553870 -0.149371 0.168589 -0.511833 0.557617 -0.513596 -0.525515 0.334440 -0.601679 0.459386 -0.634476 0.716569 -1.605227 -0.555596 -0.134382 -0.369173 -0.147856 -0.190928 0.793137 0.015070 0.864140 1.115246 -0.454873 -0.298640 -0.293587 -0.349613 0.699192 -0.474183 0.446120 0.768068 0.014940 -1.246881 0.804543 0.305595 -0.473409 -0.700820 0.668922 -0.412422 -0.088063 -0.988491 -0.244599 0.176059 0.199177 1.109530 0.591514 0.418123 -0.425391 0.109510 0.437423 1.089859 -0.492737 0.228674 0.490834 -0.109983 -0.124294 -0.227986 0.282334 0.048514 0.088521 0.336641 0.061354 -0.978394 -0.470719 -0.895797 -0.420761 0.623067 -0.121645 0.489000 -0.876459 -0.088276 -0.617638 0.094062 -1.215871 1.148589 1.084177 -0.928484 0.391131 0.002342 0.141669 -0.119060 -0.245782 0.393732 0.076398 0.399023 0.089037 -0.209979 -0.477486 -0.312423 0.352406 -0.788828 -0.176968 -1.689006 0.525876 -1.200202 -0.646863 0.039512 0.624796 -0.405920 0.566993 0.093212 0.091724 0.500344 -0.400524 -0.346351 0.502823 -0.287921 0.307701 -0.018439 0.060490 0.340486 -0.235922 -0.259495 -1.157780 0.339408 -0.248045 -0.218035 0.627366 0.370325 0.076752 -0.113579 -0.056174 0.272395 -0.378834 1.186275 0.067485 0.427310 0.108000 0.578696 0.485647 0.618122 0.839248 0.583834 -0.550423 0.014597 -0.462182 0.167301 -0.592128 -0.660977 -0.091397 0.170184 0.211314 -0.789732 -0.819207 -0.363328 -0.763076 -1.094653 0.135738 -0.524322 -0.309545 0.701436 0.570991 0.532882 0.845316 0.866672 -0.710179 -0.023937 -0.054676 -0.020037 0.647383 0.461123 0.550893 -0.318211 -0.288600 0.437369 -0.205447 0.301213 0.011642 0.059812 0.324199 -0.974578 0.139631 0.642268 0.630974 -0.269927 0.442778 0.485090 -0.553692 -0.008280 -0.071805 0.792374 -0.188948 -0.278333 0.463011 -0.797578 0.698460 0.014964 0.367852 0.256541 0.124169 -0.160959 0.409213 -0.246958 0.111872 -0.326651 -0.291490 -0.252641 -0.238822 -0.611368 0.773756 -0.156499 -0.289850 -0.222163 -0.418275 0.890332 -1.006644 -0.039438 0.604843 -0.109993 0.629456 -0.604242 0.736730 -0.582175 0.814734 0.325459 -0.088488 0.234929 -0.842813 -0.796101 -0.231009 0.287473 0.250130 -0.037253 0.511738 0.632213 -0.198699 0.013314 0.848066 -0.313636 1.067183 -0.030768 0.368116 -0.276562 -0.419714 0.292040 -0.036176 -0.533792 -0.438657 0.441315 1.332495 0.044993 1.029987 1.137316 -0.007905 1.165303 -0.606316 0.322516 -0.278980 0.562052 -0.388805 -0.359905 0.304531 0.593846 -0.366963 0.506531 -0.962030 -1.613575 -1.384075 -0.564636 -0.112006 -0.905866 0.394307 -0.531058 -0.071520 -0.543773 -0.604317 0.309871 -0.252045 0.330137 0.650323 -0.117887 0.521596 0.653264 -0.653849 -0.144150 0.332951 0.803134 0.418947 0.227338 -1.133159 0.741980 -0.685058 -0.309959 1.456338 -0.750370 0.103728 -0.349368 1.048846 -0.526555 1.064818 0.244072 -0.808448 0.701151 0.678838 0.356843 0.889490 -0.519089 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWaysUtil(int, int) = -1.412512 -3.989589 6.132312 4.480816 0.114331 1.488689 2.465762 -0.613687 1.063110 2.673910 -1.461802 3.544652 -3.711667 -0.557493 0.612187 1.145360 -3.587532 -3.364026 0.297744 -0.757471 -1.438316 -2.100653 -1.184888 4.038054 3.044205 0.664158 -2.128374 -0.897438 -4.989842 -3.842816 -1.728657 -0.450124 2.575930 0.321960 2.603232 -5.945744 2.488857 3.931816 0.059594 -4.370907 1.499261 -1.739941 0.454964 -0.448719 -0.776768 1.929696 3.465488 1.942531 1.442846 1.481600 0.030989 -1.721769 2.000245 5.083780 0.981373 3.138697 3.736450 -1.644298 0.744941 -0.894644 0.603039 -3.375776 1.692947 0.618907 -1.676355 -1.420898 0.209840 -1.066458 -1.710881 1.736179 2.291293 -1.719720 -2.814928 -2.126683 -2.992816 -1.202443 -0.156849 2.605746 5.173939 -2.898555 4.949450 2.125652 2.683295 0.218930 2.522291 -0.087048 3.063109 0.728352 -2.042221 -0.265904 -3.942939 -2.220206 -0.746726 2.220632 -1.548289 -1.617338 1.667063 -3.868058 -5.210932 2.151783 -0.224442 -2.015733 -2.093313 0.788591 1.870255 2.131824 -0.788354 -3.479774 -2.126157 1.258274 -2.276905 -1.011069 0.026423 -0.191442 -1.028613 -0.190868 -4.296824 1.051975 2.286403 -1.993327 -1.385512 3.684293 -0.994893 3.783956 0.345410 1.163891 0.147741 2.764795 2.881975 0.701625 0.488219 -2.088282 -3.696947 0.071929 0.982637 0.980462 -2.202209 -0.591240 0.566704 1.623420 0.011550 1.912652 -0.616861 5.584833 1.916716 -2.282947 -3.433668 -3.656628 -2.284983 -2.085526 1.055385 -1.542224 -1.613235 0.747755 2.429368 0.545432 -0.025727 3.581911 -1.607902 2.247387 0.459631 -0.638787 0.746393 -0.625487 2.200317 -2.766969 -1.781639 2.119717 2.760855 2.147658 -0.122959 -0.475564 1.301409 -2.257629 -2.664995 1.110111 0.657144 0.726426 4.006322 2.944249 6.621466 -2.462819 -0.658520 0.503893 -0.556797 -0.946900 0.731612 -3.611154 2.019703 0.328646 -0.112652 4.773004 0.150828 -2.387012 2.878807 -0.023383 0.440310 -3.131840 2.222516 -2.172264 0.496294 -1.248790 -0.526503 -2.527610 -1.507337 -2.833488 -1.069213 5.302618 -2.346500 -4.630793 1.598298 -0.900343 2.884916 -6.069538 5.249365 -1.870593 2.453344 -1.089187 -1.778879 0.264005 0.416704 -0.650758 1.096744 1.312353 -1.455108 1.467689 2.680087 1.080335 0.862424 0.914667 2.129945 -0.029916 1.386775 -1.178793 1.586634 -0.653093 -0.532470 -1.241409 -0.672606 0.994198 2.104175 -0.658353 0.776231 2.214561 -0.151526 1.420571 2.904470 1.172516 -1.841717 0.522660 -0.605167 4.251774 -2.857442 -2.037655 -1.188704 1.397030 0.430192 1.795251 -5.389450 -3.480087 -1.927189 -4.736349 -1.910202 0.961104 1.674730 1.005491 -0.712743 -4.231620 -2.630762 3.463986 0.388517 3.149902 2.381944 0.654818 4.034346 2.116818 0.388309 -1.657107 0.059564 0.871178 -0.890741 -0.660085 -2.205970 1.554316 -4.059513 2.957388 3.790629 -1.961285 1.960485 -1.583116 2.881233 -4.586487 4.978836 1.881067 -4.639617 0.839964 3.502959 3.429966 -3.247965 -2.876168 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = -0.228762 -0.605878 0.767491 0.576820 0.062197 0.141592 0.445822 0.057114 0.137326 0.186347 -0.162675 0.472459 -0.651611 0.077572 -0.147993 0.129953 -0.391881 -0.527701 -0.014135 -0.010450 -0.165538 -0.304524 0.050883 0.469988 0.441422 -0.059167 -0.311184 -0.316473 -0.877757 0.016464 -0.062752 -0.044539 0.372876 -0.207989 0.146293 -0.939223 0.166449 0.531797 -0.022845 -0.675864 0.325201 -0.329489 0.184473 -0.154104 -0.213621 0.031245 0.417576 0.290218 0.164359 0.189413 0.036217 -0.136572 0.153790 1.054842 0.014355 0.397921 0.528034 -0.051190 -0.026307 -0.217284 0.095632 -0.361723 0.186535 0.062898 -0.217898 -0.166395 -0.145775 -0.292346 -0.319218 0.155884 0.167217 -0.000743 -0.414645 -0.235191 -0.347451 -0.133141 -0.021574 0.398050 0.708858 -0.587623 0.605662 0.154538 0.275527 0.076358 0.180684 0.086716 0.038476 0.092399 -0.131600 -0.124748 -0.528626 0.108645 -0.129380 0.084769 -0.225144 -0.537352 0.358360 -0.153497 -0.653916 0.222208 -0.066524 -0.268290 -0.002367 0.157598 0.029285 0.474685 -0.312542 -0.470030 -0.329891 0.154780 0.097156 -0.132002 0.087634 0.000592 -0.183125 -0.489596 -0.586845 0.129946 0.220484 -0.367210 -0.097597 0.472754 -0.383435 0.544056 0.066907 0.130505 -0.017460 0.623874 0.494166 -0.019292 0.011455 -0.319587 -0.452263 -0.025781 0.174442 0.660248 -0.391428 0.159657 0.008883 0.103596 0.075808 0.024575 0.122518 0.472203 0.160182 -0.412695 -0.466358 -0.463176 -0.243486 -0.388528 0.057678 -0.250349 0.004836 0.327565 0.318580 0.244022 0.019220 0.948448 -0.232640 0.298173 0.151977 -0.333971 0.072119 0.063339 0.270540 -0.344354 -0.384418 0.254661 0.284935 0.254857 0.000493 0.112567 0.113483 -0.402082 -0.132307 0.029049 0.256167 -0.042997 0.548464 0.336760 0.478555 -0.317633 -0.103986 0.094811 -0.122770 -0.081950 0.023883 -0.552383 0.244725 0.010690 -0.272461 0.481124 0.053845 -0.374428 0.539276 -0.190507 0.116150 -0.403510 0.298127 -0.280937 -0.125166 -0.361428 0.034328 -0.147759 -0.164269 -0.310546 -0.141589 0.716378 -0.375167 -0.428255 -0.054186 0.215862 0.296493 -0.780543 0.963111 -0.243421 0.581039 0.007176 -0.194011 0.092280 0.143086 -0.031432 0.042654 0.189159 -0.096584 0.063721 0.479406 0.155095 -0.035642 0.149445 0.363194 0.043408 0.253165 -0.101193 0.185796 -0.052482 -0.288905 0.075504 -0.107957 0.131160 0.201953 -0.038459 0.480543 0.346111 0.110190 0.386101 0.336595 0.334955 -0.243820 0.017498 -0.118097 0.745796 -0.351438 -0.187340 -0.182163 0.394766 0.049484 0.210651 -0.637442 -0.728359 -0.267574 -0.683401 0.010218 -0.077240 0.070244 -0.022626 -0.097088 -0.587193 -0.403404 0.180871 -0.139745 0.724664 0.321335 0.080515 0.566654 0.301191 -0.174456 -0.104738 0.282922 0.243777 -0.049130 0.018843 -0.271457 0.100268 -0.629329 0.196739 0.555190 -0.207462 0.280395 -0.065668 0.279538 -0.523133 0.811010 0.258152 -0.601629 0.291310 0.467259 0.548221 -0.193158 -0.366594 -PE-benchmarks/count-ways-reach-nth-stair.cpp__main = -0.168208 -0.703578 1.061399 0.762598 -0.035369 0.093506 0.630805 -0.007906 0.276904 -0.008453 -0.285604 0.476880 -0.739323 0.118176 -0.332348 0.245073 -0.683666 -0.674583 0.060907 -0.078638 -0.058290 -0.287387 0.276904 0.330048 0.592256 0.301796 -0.336275 -0.615165 -0.981978 -0.073192 0.343968 -0.196328 0.520446 0.234925 -0.063266 -1.416808 0.250631 0.570771 -0.208243 -0.850463 0.514566 -0.435806 0.095948 -0.429190 -0.109026 0.096586 0.441392 0.481722 0.203571 0.281130 -0.183943 -0.077679 0.200342 1.189896 -0.193309 0.403358 0.679058 -0.040433 -0.070807 -0.183055 0.210792 -0.289699 0.292624 0.196353 -0.206451 -0.388492 -0.302154 -0.602234 -0.529198 0.236426 0.114739 0.268737 -0.517640 -0.082008 -0.517304 -0.114045 -0.370114 0.621679 0.938100 -0.750586 0.799604 0.124008 0.357737 -0.065073 0.058592 0.267011 -0.090155 0.222448 -0.097469 -0.235615 -0.820492 -0.055358 -0.108075 -0.024926 -0.205310 -0.866701 0.556296 -0.342052 -0.702394 0.203815 0.081868 -0.267156 -0.026397 0.183026 0.004296 0.697730 -0.457681 -0.520284 -0.321636 0.026920 0.106751 -0.156024 0.121581 0.135347 -0.315073 -0.628841 -0.768362 0.162601 0.160856 -0.463024 -0.005516 0.498592 -0.351935 0.461349 0.022322 0.181707 -0.199728 0.801653 0.419565 0.054290 0.363199 -0.198652 -0.525411 -0.077883 0.448213 1.186060 -0.524439 0.021812 -0.137330 0.147780 -0.002386 -0.284792 0.183397 0.409819 0.373171 -0.605577 -0.544776 -0.573154 -0.074533 -0.634202 0.051169 -0.402976 0.183821 0.505029 0.464536 0.290963 0.278663 1.212480 -0.480298 0.371885 0.088290 -0.289773 0.188415 0.310617 0.376695 -0.348904 -0.466429 0.242078 0.227771 0.328531 0.002219 0.112833 0.167323 -0.637498 -0.284796 0.172033 0.376150 -0.247386 0.542547 0.438692 0.089204 -0.564544 -0.134095 0.225665 -0.229916 -0.120911 0.167867 -0.775206 0.477749 0.024436 -0.218845 0.442553 0.081472 -0.465675 0.587552 -0.255155 0.021628 -0.368338 0.192688 -0.411813 -0.291701 -0.512171 0.160179 -0.207681 -0.340247 -0.342528 -0.190756 0.863583 -0.345747 -0.427234 0.025260 0.137877 0.280218 -1.072949 0.976152 -0.391856 0.554044 -0.025899 -0.184126 0.068643 0.110159 -0.248388 -0.213837 0.282482 -0.210270 0.232866 0.738975 0.326016 -0.091205 0.165506 0.583513 -0.016091 0.366360 -0.153894 0.234704 -0.194074 -0.468019 0.181663 -0.124076 0.137959 0.042295 0.107550 0.911058 0.354845 0.360872 0.690966 0.414071 0.599010 -0.382708 0.073754 -0.113120 0.979283 -0.297419 -0.186952 -0.208654 0.459782 -0.057805 0.395126 -0.803444 -1.182374 -0.399075 -0.923498 0.036550 -0.305371 0.181902 -0.146349 0.000000 -0.923988 -0.464357 -0.179321 -0.246560 0.655771 0.497529 0.086311 0.643653 0.395296 -0.455332 -0.182932 0.400785 0.542459 -0.010483 -0.038595 -0.487082 0.196856 -0.710329 0.124540 0.825976 -0.299835 0.213833 -0.143350 0.842450 -0.537186 1.164473 0.343899 -0.776730 0.484265 0.549546 0.685653 0.070812 -0.421495 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__findMedian(int*, int) = -0.566719 -0.883151 1.719310 1.224686 -0.247880 0.492171 0.479812 -0.355451 0.114297 0.344411 -0.194851 0.716352 -0.889510 0.024106 -0.407410 0.357563 -1.058798 -0.710372 -0.246016 -0.689189 -0.390599 -0.308499 -0.123206 0.893356 0.808384 0.220425 -0.621499 -0.252653 -1.257852 -1.097487 -0.227505 -0.118969 0.655714 -0.181184 0.244806 -1.990621 0.832928 1.154219 -0.233374 -0.772959 0.635728 -0.535653 0.068793 -0.081740 -0.744108 0.308935 0.320023 -0.269626 0.549007 0.212602 0.237838 0.095876 0.694903 1.904564 -0.112724 0.804311 0.804213 -0.279860 -0.019607 -0.108578 0.080356 -0.382437 0.215739 -0.046473 -0.088868 -0.761975 -0.231209 -0.426472 -0.210724 0.462212 0.017063 -0.495443 -0.441370 -0.367265 -1.300970 -0.571711 -0.094675 0.649051 1.206703 -0.989049 1.050666 0.070418 0.249322 0.184607 0.623215 0.197089 0.727229 0.226346 -0.110142 0.194595 0.014554 0.273247 0.085482 1.012938 -0.706964 -0.922851 0.691277 -1.398612 -1.359672 0.591700 0.227022 -0.613774 -0.327417 -0.211977 -0.000370 0.263877 -0.629290 -0.873013 -0.338610 0.460625 0.049095 -0.234794 -0.107780 -0.094735 0.005166 0.018221 -1.113690 0.557492 0.131371 -0.314747 -0.513012 1.038590 0.240125 0.520490 0.099411 0.614138 -0.463320 0.910746 0.128764 0.501794 -0.653590 0.079532 -0.895921 -0.539529 0.344152 0.124964 -0.925439 -0.520399 -0.196998 0.295466 -0.169787 0.437958 -0.112771 1.190182 0.690649 -0.553062 -0.591533 -0.541194 -0.736923 -1.262384 -0.101494 -0.513954 -0.820019 0.544340 0.638353 0.312537 0.314058 1.082472 -0.018546 0.502162 0.134960 -0.595599 0.570386 -0.530897 0.488745 -0.718485 -0.663896 0.462158 0.173246 0.910213 -0.045840 0.201719 0.172184 -0.586577 -0.299024 0.532556 0.293990 -0.128630 1.109785 1.013535 1.680958 -0.712147 0.044038 0.305225 -0.654313 -0.039338 0.105407 -0.862612 0.170367 0.451470 -0.441757 1.196149 0.008179 -0.374375 0.618316 -0.229660 0.383124 -0.999212 0.654128 -0.573352 0.202649 -0.608986 -0.423070 -0.584106 -0.352888 -0.668240 -0.722649 1.294316 -1.709321 -0.725373 0.677113 0.563341 0.478577 -1.508695 1.355214 -0.609528 1.203706 -0.258168 -0.393986 0.164792 0.333122 -0.512072 0.604297 0.317654 -0.821209 0.350364 0.844275 0.446784 0.241207 -0.117070 0.942287 -0.200334 0.665237 -0.550015 0.821076 -0.070560 -0.699810 -0.262053 -0.220305 -0.282653 0.159118 0.383359 0.222662 0.337372 0.181178 0.010822 0.957866 0.755676 -0.442570 0.299492 -0.396171 0.959988 -0.719582 -0.641882 -0.019667 0.771161 0.284190 0.207089 -1.529222 -1.023009 -1.450593 -1.008487 -0.142376 0.217721 0.331757 0.175916 -0.148992 -1.201882 -0.883678 1.217515 -0.259815 0.764742 0.655334 0.314304 1.025004 0.685545 0.187236 -0.226105 -0.164077 0.509172 0.147754 0.013116 -0.772711 0.716945 -0.998590 0.349439 1.048743 -0.441603 0.702077 0.477901 0.397156 -1.116850 1.350357 0.366046 -1.008780 0.733105 1.288821 0.483390 -0.204332 -0.652958 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::sort(int*, int*) = -0.031061 -0.459187 1.154884 0.883089 -0.131213 0.032838 0.546474 -0.471173 0.518250 -0.045732 -0.198399 0.234661 -0.928303 0.361607 -0.575364 0.565139 -0.930761 -0.650223 -0.186993 -0.349708 -0.035309 -0.416411 0.861041 0.085168 0.744517 0.368512 -0.465928 -0.557957 -0.860617 -0.366639 0.613510 -0.322786 0.590353 0.303106 -0.369981 -1.252881 0.595727 0.580503 -0.404729 -0.623347 0.766930 -0.566916 0.016056 -0.558799 -0.247453 0.067239 0.040181 0.360218 0.626147 0.270839 0.160430 0.165692 0.277757 1.017975 -0.745338 0.392945 0.266252 0.014060 -0.278059 -0.083970 0.133289 0.153362 0.371232 0.395880 -0.200921 -0.723161 -0.335060 -0.604734 -0.825513 0.541780 -0.308212 0.366716 -0.707149 0.093880 -0.514370 -0.029758 -0.139950 0.676420 1.003716 -0.632549 0.591522 -0.109607 -0.091798 -0.308436 -0.113869 0.261570 -0.024928 0.183402 0.040895 -0.433797 -0.513748 0.121935 0.082775 0.046479 -0.158818 -0.948418 0.581749 -0.521333 -0.779082 -0.060171 0.345003 -0.379442 -0.108495 0.214514 -0.028745 0.584745 -0.437089 -0.688704 0.017603 0.021179 0.366519 -0.186709 -0.033938 -0.080642 -0.389869 -0.600933 -0.894682 0.070260 -0.266041 -0.502435 -0.032415 0.441784 -0.297598 0.100801 0.109948 0.399898 -0.324500 0.852189 -0.058641 0.418834 0.390581 0.200208 -0.076043 -0.143599 0.617390 1.041516 -0.516824 0.074696 -0.550474 0.034270 -0.443029 -0.427871 0.123372 0.226688 0.505103 -0.718948 -0.493843 -0.101151 -0.160066 -1.117014 0.100738 -0.532358 0.087145 0.450244 0.546553 0.176379 0.675816 1.423144 -0.555627 0.214135 0.175418 -0.402741 0.686268 0.234921 0.531598 -0.339326 -0.639951 0.330916 0.015961 0.268426 -0.145686 0.348316 0.021316 -0.856209 -0.123678 0.236543 0.344239 -0.255340 0.472702 0.418708 0.039446 -0.391546 0.237050 0.644871 -0.193844 0.014290 0.152202 -0.932909 0.507846 0.104454 -0.129585 0.406935 0.063420 -0.487398 0.489102 -0.347567 0.231964 -0.615047 0.118770 -0.444495 -0.122856 -0.762924 0.029264 0.088562 -0.496559 -0.147006 -0.114647 0.826010 -0.419407 -0.341488 0.459739 0.177048 0.327044 -1.043930 0.974777 -0.514208 0.602864 -0.059171 -0.054606 0.156117 -0.024954 -0.537047 -0.235212 0.269411 -0.041372 0.389854 0.903141 0.476551 -0.102588 -0.014607 0.778659 0.026029 0.741962 -0.207831 0.552879 -0.090324 -0.552449 0.363442 -0.199408 -0.203774 -0.310223 0.214360 1.198290 0.522352 0.489627 0.901785 0.260109 1.100515 -0.381944 0.457934 -0.148139 0.684210 -0.165444 -0.186221 0.186294 0.489632 -0.281423 0.653391 -0.871328 -1.523512 -0.461364 -1.017069 0.227678 -0.551386 0.375236 -0.303434 0.045697 -0.886851 -0.546241 -0.031225 -0.358957 0.943141 0.477485 0.120893 0.457162 0.676074 -0.641992 0.013807 0.246531 0.704993 0.167539 -0.093622 -0.625595 0.462322 -0.643462 -0.010860 0.923528 -0.470514 0.150261 -0.339696 0.749092 -0.545378 1.173650 0.260343 -0.377104 1.056606 0.345412 0.580966 0.541977 -0.387866 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__kthSmallest(int*, int, int, int) = -5.129947 -10.453850 14.151698 9.611012 0.765488 4.619552 5.925733 0.411172 0.361181 4.978142 -2.803265 10.243597 -7.393868 -3.144825 0.026784 -0.238476 -6.797086 -8.169894 0.660294 -1.450746 -2.346868 -3.946105 -5.974551 12.717810 6.174542 -0.712482 -5.199963 -1.605669 -14.843640 -8.109807 -6.426215 0.143514 5.726300 -4.290731 7.241727 -14.271247 4.977108 11.364113 1.248943 -11.279129 3.308660 -3.478206 1.347405 0.626756 -4.604739 4.211300 8.525202 1.389627 1.294869 2.583723 -1.500670 -2.432893 4.477200 13.253840 5.092151 7.899408 10.475224 -3.447091 2.715946 -3.083393 1.211881 -9.050803 2.820273 -1.210396 -3.365544 -2.354774 0.215039 -0.799910 -2.039411 2.090607 5.873314 -5.249695 -4.121437 -4.488321 -11.939807 -3.846702 7.589801 4.625951 11.091032 -6.641667 12.033990 4.604096 7.025494 2.684078 7.183561 0.309103 6.308268 1.948108 -3.818956 1.052709 -10.194149 -2.567290 -2.831049 6.380734 -5.306899 -5.401143 4.222551 -12.949380 -12.455455 6.327448 -1.607707 -5.793523 -4.205700 -0.173730 3.986597 5.151204 -2.766160 -7.357516 -5.900376 4.810520 -5.048641 -2.344609 1.995607 0.065766 -0.227077 -0.632373 -8.842666 4.328500 7.230675 -3.243441 -3.547233 9.722328 -2.490840 10.519774 0.509887 2.921801 -0.424256 4.982851 7.629129 -0.038105 -3.032732 -6.767612 -8.399413 -3.363976 -0.676812 1.314723 -6.861362 -3.242282 2.499260 4.539099 3.107847 6.028945 -1.765627 12.381983 2.632200 -4.318986 -6.440553 -10.070234 -7.042934 -4.246395 0.316673 -1.725373 -6.767251 3.240882 5.131067 0.875851 -1.744760 7.116784 0.389521 4.463140 1.864345 -3.292029 0.208573 -5.473328 3.856938 -6.063093 -4.516923 5.124304 5.738770 8.260485 -0.263526 -0.433631 2.956943 -3.084861 -6.314238 1.065802 2.159703 3.097909 10.592599 8.075451 12.926531 -5.561229 -3.512089 -1.055923 -3.166720 -1.726079 0.309122 -7.198183 2.404353 1.843261 -1.927931 12.892968 -0.096685 -4.849675 8.379029 0.844038 1.428703 -7.864476 6.357796 -5.381895 1.788938 -2.673736 -3.728644 -7.513110 -2.261635 -9.890522 -6.480537 12.567910 -8.009886 -12.166676 2.022654 0.926838 7.152585 -15.080884 9.229839 -3.604992 9.430451 -0.108297 -3.112861 1.439265 1.057733 -1.595194 3.483819 2.924039 -6.577505 3.822517 4.086019 2.059984 1.721287 1.448009 4.191550 -0.912972 2.499901 -4.580717 2.814548 -2.371033 -3.442492 -3.235898 -1.012658 2.775499 6.225060 -0.381634 -2.776864 3.007050 -0.365567 0.821922 9.300265 1.009311 -3.956242 -0.871656 -2.157982 10.231666 -6.947343 -5.188900 -4.658576 5.094745 3.709722 2.373539 -12.996757 -6.497794 -8.457743 -12.795675 -3.200627 2.008357 1.833610 3.572822 -2.153021 -11.044812 -6.759771 9.085888 1.434397 8.165599 6.822373 1.488237 10.689811 3.591557 1.839372 -3.191042 1.149096 1.862447 -2.330256 -1.740678 -5.127188 2.961469 -9.645782 7.281171 8.771753 -4.022631 6.399718 -1.151050 3.018517 -11.195363 12.072451 4.571972 -12.942117 -0.294007 8.284465 7.254294 -9.369467 -6.858479 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__partition(int*, int, int, int) = -3.109329 -4.695855 7.635213 5.220732 -0.074555 2.219893 2.088024 -1.630643 0.894806 2.979843 -1.875164 4.406273 -4.262512 -0.798731 -0.405882 0.668617 -4.467763 -3.961745 -0.372824 -1.999219 -2.253492 -2.428121 -2.251072 5.493403 3.343261 0.033902 -2.936890 0.181837 -6.577449 -6.017014 -2.814343 -0.344966 2.963347 -1.046133 3.068186 -8.355845 3.491383 5.619699 -0.105968 -4.662858 1.947733 -2.730727 0.011998 0.116215 -2.380464 1.901679 3.565959 0.223454 1.849620 1.121090 1.094341 -1.448204 2.184204 7.235234 1.111192 4.367568 4.599788 -2.280136 0.444485 -0.655094 0.373370 -3.972894 2.275987 0.470723 -2.199330 -2.068792 1.045341 -0.712149 -1.640551 2.282302 1.912828 -3.467926 -2.166112 -3.082966 -5.309873 -2.248268 2.889892 2.307553 6.270347 -3.235758 6.118832 2.185580 2.724021 0.884950 4.022219 -0.211164 5.212978 0.769251 -2.400882 -0.007526 -3.089661 -1.383510 -0.737026 5.277919 -2.403062 -1.224197 2.468099 -7.447889 -6.839462 2.806445 -0.231238 -2.992901 -3.557633 0.230078 2.084642 1.540482 -1.158019 -4.551926 -2.755071 2.441863 -2.849780 -1.283375 -0.208733 -0.797809 -0.650981 0.673177 -5.432157 1.828556 2.861437 -1.983566 -2.794819 5.304738 -0.471217 4.269697 0.507259 2.206955 -0.257356 3.213166 1.948760 1.048391 -1.671917 -1.722440 -5.078203 -1.702653 0.627487 -0.666246 -3.545289 -1.702972 0.940175 1.899600 -0.478286 3.001192 -2.147357 7.557804 2.804235 -2.310715 -3.846284 -4.254079 -3.573371 -3.907078 0.370503 -1.870530 -4.223205 0.747384 3.202637 1.033339 -0.054750 4.500712 -0.482470 2.771009 0.763450 -1.934705 1.514441 -3.470338 2.985322 -3.834723 -2.613698 2.983702 3.004279 3.483375 -0.026198 -0.318911 1.146290 -2.821630 -3.661470 1.937218 0.940521 1.833272 5.399811 4.404255 10.321107 -3.977073 0.153759 0.491291 -1.237825 -0.786976 0.478898 -4.029118 1.256616 1.385335 -0.566795 7.076237 0.384698 -2.928132 2.653858 0.152016 1.190968 -4.859708 3.289627 -2.676517 1.757940 -1.442135 -2.248498 -3.359937 -1.732249 -3.994733 -2.920025 6.553788 -5.366723 -6.585136 3.257499 0.268614 4.280372 -8.470409 5.357904 -2.631772 5.327594 -1.740509 -1.946788 0.412063 0.823253 -1.257711 3.377689 1.548045 -2.780911 2.290971 3.283807 1.510379 2.360868 0.244868 3.030495 -0.503060 1.864407 -2.149623 2.593597 -0.277612 -1.671890 -1.975748 -1.137520 0.419345 2.757546 0.196272 -0.664398 3.104130 -0.627338 0.784574 5.047721 1.597226 -2.034129 0.839555 -1.112900 4.619230 -3.595910 -3.235548 -0.954584 2.483967 1.128554 1.443429 -7.177429 -4.139857 -4.708337 -6.313747 -1.756355 1.608300 1.753988 1.749378 -0.829340 -5.480192 -3.251116 6.616495 0.270120 5.778198 3.007024 1.541967 4.973892 2.949635 1.142262 -1.889100 -0.525438 1.108077 -1.198570 -0.745784 -3.284454 2.585557 -4.784258 4.190519 4.360572 -2.499179 3.058753 0.443574 1.840064 -5.956379 5.891499 2.193665 -5.730245 1.548381 4.546068 3.541168 -4.161685 -3.518353 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.789443 -0.702282 1.656300 1.056237 0.145103 0.254162 0.739228 -0.595295 0.833717 0.605793 -0.070607 0.498032 -0.956896 0.161563 -0.489612 0.657158 -0.834992 -0.902829 -0.138707 -0.854567 -0.392576 -0.487954 0.412780 0.068559 0.835129 -0.453412 -0.666452 -0.653350 -1.357154 -1.105381 0.344643 -0.368280 0.677723 -0.886617 -0.261108 -2.728297 0.898207 0.924508 -0.515890 -0.954813 0.808996 -0.726023 0.264208 -0.073383 -0.328688 0.060340 0.349723 -0.140596 0.776125 0.447163 0.668552 0.280393 0.245834 2.337181 -0.854594 0.735234 0.454371 -0.279277 -0.570415 0.272255 0.115709 -0.252673 0.629891 0.223786 -0.287093 -0.888638 -0.101136 -0.434523 -1.010631 0.496703 -0.130369 -0.416413 -0.462573 -0.125376 -0.918483 -0.578942 0.001990 0.481373 1.321583 -0.816461 1.085096 0.026164 0.241599 0.154284 0.375762 0.223287 0.567524 0.141443 -0.260257 -0.440481 -0.366016 0.340308 -0.019276 0.847961 -0.257308 -1.056403 0.846294 -0.498789 -1.193291 0.414135 0.354577 -0.320849 -1.129260 -0.212842 0.227056 0.699116 -0.753745 -1.095974 -0.744459 0.318897 0.023521 -0.275082 0.102785 -0.888200 -0.385433 -0.549895 -1.105452 0.197393 0.064937 -0.482665 -1.055129 0.983002 -0.501927 0.245474 0.130723 0.843676 -0.528635 0.870621 -0.070003 0.629790 -0.026624 0.016031 -1.637803 -0.628387 0.494151 0.966161 -0.493667 -0.091727 -0.675407 0.135071 -0.581371 0.194022 -0.060865 1.023963 1.167689 -0.588863 -0.612747 -0.334374 0.159231 -1.286837 0.164935 -0.617146 -0.242837 0.270834 0.757524 0.359299 0.646916 1.645988 -0.492651 0.719980 -0.048345 -0.664362 0.890378 -0.411895 0.814425 -0.644712 -0.674018 0.190500 0.551297 0.539785 -0.054591 0.173420 0.120108 -0.994985 -0.377535 0.001375 0.419351 -0.209555 0.700094 0.775158 1.817300 -1.400025 0.133721 0.563533 -0.458136 0.068690 0.022745 -1.034393 0.169628 0.468276 -0.502064 1.073253 0.124769 -0.903149 0.464800 -0.321892 0.305580 -0.739630 0.396365 -0.665316 -0.167800 -0.430227 -0.545558 -0.587925 -0.462107 -0.590501 -0.557594 1.221334 -0.810341 -1.068616 0.808105 -0.007706 0.317763 -1.918996 1.831473 -0.741795 0.791495 -0.695083 -0.020402 -0.183155 0.976755 -0.618023 0.461619 0.338374 -0.563858 0.769017 1.631509 0.569609 0.419995 -0.226341 1.100399 -0.159026 0.684561 -0.348114 0.993906 -0.327159 -0.722068 0.054431 -0.261553 -0.033217 -0.019255 0.357172 0.583910 0.695269 -0.061943 0.525901 1.038181 1.061300 -0.460233 0.734806 -0.188438 1.072666 -0.301556 -0.333920 0.195240 0.635358 -0.042851 0.540352 -1.380254 -1.311099 -0.653255 -1.454703 0.388663 0.288079 0.055711 -0.156151 0.045352 -1.490652 -0.602522 0.623809 -0.333852 1.153462 0.598342 0.381406 0.819872 0.914452 -0.454673 -0.248391 -0.094596 0.203368 0.012596 -0.511319 -0.571258 0.691614 -1.043832 0.368979 0.841238 -0.368074 0.288385 0.336841 0.421650 -0.884005 1.480928 0.342271 -0.397704 1.154885 0.894274 1.436844 -0.291045 -0.511648 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 0.285809 -0.780772 2.005291 1.366088 -0.437934 -0.012412 0.640627 -0.377617 0.501371 -0.532038 -0.430106 0.690174 -0.965999 0.275247 -0.648398 0.497661 -1.659007 -0.900235 -0.195057 -0.401240 -0.127127 -0.260940 0.610582 0.500811 1.092073 0.909295 -0.643509 -0.669691 -1.140496 -0.135760 0.681766 -0.334841 0.751040 0.561701 0.130814 -2.035266 0.758261 0.819530 -0.440724 -1.156191 0.880274 -0.582971 -0.000922 -1.100285 -0.401028 0.175822 0.434557 1.032155 0.496880 0.406502 -0.646475 0.190758 0.398722 1.675761 -0.360955 0.479051 0.953831 -0.123088 -0.059769 -0.369420 0.309063 -0.212444 0.234891 0.107391 -0.122438 -1.030024 -0.497697 -1.031063 -0.599609 0.561504 0.244733 0.411171 -0.930763 -0.173612 -1.210967 -0.069518 -0.540013 1.268413 1.341936 -1.263169 0.819582 0.094427 0.318968 0.026560 -0.035805 0.486329 0.009090 0.440035 0.131817 -0.223965 -1.357060 -0.292054 0.114851 -0.621163 -0.413232 -2.068021 0.807336 -1.386714 -1.041660 0.203164 0.543687 -0.662412 0.267130 0.017172 0.036432 0.861458 -0.577398 -0.554696 0.048481 -0.020992 0.259662 -0.113861 0.259732 0.407164 -0.271648 -0.758691 -1.408582 0.604839 0.071017 -0.287115 0.402884 0.723658 -0.366395 0.289942 -0.049261 0.361199 -0.541718 1.301435 0.344429 0.232299 0.253402 0.103763 0.108434 0.040462 0.773033 1.453636 -0.781283 -0.145361 -0.474439 0.323754 -0.315470 -0.512337 0.163770 0.453993 0.156959 -0.994012 -0.909973 -0.782998 -0.756538 -1.155438 0.052384 -0.476599 -0.226913 0.984155 0.709116 0.599545 0.697696 1.349207 -0.602507 0.204038 0.084496 -0.319107 0.558597 0.360331 0.621502 -0.463449 -0.566431 0.513055 -0.123048 0.741586 -0.028368 0.254268 0.387196 -1.050522 -0.253168 0.272447 0.669505 -0.323197 0.808338 0.857896 -0.529757 -0.483102 -0.229160 0.647134 -0.439991 -0.256399 0.426914 -1.019333 0.689134 0.089510 -0.070308 0.754314 0.101431 -0.487245 0.851669 -0.253458 0.093324 -0.502922 -0.064936 -0.490976 -0.364688 -0.856517 0.539395 -0.406468 -0.415071 -0.694154 -0.740551 1.348518 -1.030348 -0.555696 0.453752 0.173864 0.747230 -1.358797 1.099479 -0.604372 1.094280 0.348365 -0.155721 0.297229 -0.566658 -0.943697 -0.293949 0.369967 -0.221824 0.103602 0.836813 0.666364 -0.236238 -0.003471 0.970524 -0.305168 1.138762 -0.346721 0.470326 -0.454100 -0.768220 0.284479 -0.042590 -0.251315 -0.255023 0.449878 1.350842 0.155280 1.185238 1.173577 0.441480 1.235459 -0.692113 0.178553 -0.226920 0.991481 -0.499993 -0.400944 0.073024 0.841931 -0.163958 0.656051 -1.322432 -1.961663 -1.323537 -1.250115 0.086417 -0.863346 0.289351 -0.410761 -0.216821 -1.151615 -0.858928 -0.005608 -0.280681 0.702028 0.952119 -0.050236 0.926229 0.734776 -0.851469 -0.124735 0.738578 0.997473 0.352688 0.005929 -1.268294 0.771999 -0.982964 -0.102865 1.797238 -0.770204 0.463005 -0.503025 1.370080 -0.852876 1.697507 0.342624 -1.373194 0.680541 0.996459 0.754045 0.590928 -0.680544 -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.325193 -1.310780 2.917752 2.035969 -0.100133 0.720672 0.565860 -0.892570 0.328606 0.184915 -0.445394 1.365365 -1.533083 0.412636 -0.997703 0.449088 -1.746465 -1.224339 -0.601539 -0.771240 -0.006020 -0.738321 0.399210 1.436680 1.403093 0.485327 -1.224760 -0.370411 -2.604935 -1.695251 0.223978 -0.254316 1.273710 -0.344131 0.367259 -2.551242 1.477273 1.975183 -0.307294 -1.757345 1.405433 -0.901317 -0.198882 -0.408153 -0.801530 0.719251 0.495565 -0.120687 0.989914 0.568804 -0.154858 0.348196 0.757938 1.711676 -0.599201 1.109215 1.004304 -0.515612 0.152974 -0.430848 -0.182293 -0.309242 0.509817 0.144763 -0.426424 -1.437057 -0.089519 -0.329563 -1.069599 0.888389 -0.188773 -0.252517 -0.980637 -0.348613 -2.161630 -0.088436 1.601092 1.152937 1.949589 -0.708060 1.520913 -0.249410 0.055475 0.026201 0.676510 0.460070 0.286283 0.450772 -0.108177 -0.387091 -1.301876 0.182533 -0.110124 1.060116 -0.922189 -1.301055 1.087019 -2.426928 -1.605574 0.487853 0.317398 -1.387529 -0.688553 -0.190611 0.062431 1.092000 -0.605115 -1.339413 -0.111855 0.961942 0.356240 -0.419653 0.273689 -0.461935 -0.472512 -0.726503 -1.516500 0.850151 0.340337 -0.503672 -0.513242 1.518364 -0.360873 0.637385 0.134160 1.163440 -0.816972 1.229934 0.152277 0.753357 -0.274794 -0.181320 -0.531881 -0.772052 0.617949 0.922804 -1.482909 -0.492520 -0.788790 0.396090 -0.306354 0.076670 -0.326732 1.105884 1.174373 -1.123946 -0.929494 -0.752015 -0.818933 -1.810175 -0.334840 -0.483555 -1.162590 0.860555 1.057129 0.105636 0.805032 2.162360 -0.424205 0.129739 0.346494 -1.102938 1.071702 -0.706811 0.781124 -0.945692 -1.220131 1.003060 0.159878 1.099194 -0.109960 0.578628 0.330666 -1.067734 -0.287618 0.765375 0.782466 0.230749 1.606806 1.551772 0.873487 -0.476728 -0.214360 0.776049 -1.051532 -0.123186 0.095818 -1.467822 0.516699 0.687459 -0.386943 2.071808 -0.036840 -0.944488 1.461565 -0.220047 0.578460 -1.433182 0.831231 -1.049845 0.315624 -1.143334 -1.085643 -0.405853 -0.742084 -1.351776 -1.173979 1.998045 -1.431183 -1.645840 0.924629 0.319532 0.908422 -2.754993 1.046093 -0.956556 1.727436 0.495915 0.137271 0.284011 0.008964 -1.318362 0.273165 0.529349 -0.891674 1.097296 1.456389 0.811569 -0.270894 -0.312512 1.333209 -0.258342 1.177356 -0.932319 0.822689 -0.433281 -0.666136 0.129534 -0.249128 -0.480955 -0.280003 0.315281 0.442588 0.573504 0.753846 0.806064 1.458189 1.484808 -0.395144 0.567531 -0.730084 1.114472 -0.745969 -0.949717 0.119908 1.475432 0.372201 0.888363 -2.319134 -2.420465 -1.815053 -2.640774 0.424218 -0.550757 0.434030 0.114145 -0.327353 -2.097355 -1.361826 1.061887 -0.140826 2.456336 1.306598 0.157829 1.146143 1.103865 -0.719771 0.006476 0.163396 1.192637 0.158854 -0.156818 -1.355274 1.170448 -1.376615 0.373830 2.115662 -1.152444 1.076427 -0.241720 0.681355 -1.850032 2.440771 0.681521 -1.457390 1.294906 0.762198 0.979331 -0.023769 -0.874941 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__iter_less_iter() = -0.133181 -0.098240 0.048066 0.074780 0.043960 0.033494 -0.008161 0.018259 0.124233 0.105874 -0.041153 -0.037833 -0.132729 0.013230 0.075533 0.069690 0.016611 -0.094185 0.023167 0.019197 -0.015033 -0.116864 0.023050 -0.032659 -0.006813 0.067460 -0.014194 0.064764 -0.088406 -0.076570 0.007387 -0.058361 0.042503 0.150401 0.025791 0.074127 0.028714 0.053861 -0.013769 -0.088927 -0.033751 -0.053792 0.128142 -0.011976 0.096771 0.113729 0.057173 -0.106225 0.053644 0.031705 0.122570 -0.144009 -0.010241 -0.095924 -0.051398 0.042430 0.008323 -0.008691 0.003682 -0.042844 0.027905 -0.015259 0.059380 0.104002 -0.103463 0.000793 -0.064762 -0.049367 -0.119423 0.047380 -0.119589 0.045019 -0.116651 -0.105250 0.040931 -0.051228 -0.310667 -0.012854 0.147327 -0.047184 0.099609 0.086542 0.098540 0.003029 0.055201 0.011301 0.032602 0.009887 -0.113105 0.118809 0.119222 -0.026179 -0.024526 0.112810 0.008317 0.213370 0.028110 0.039464 -0.063404 0.058685 -0.041313 0.118447 -0.097826 0.119867 -0.011031 0.086619 -0.051949 -0.112515 0.017782 -0.032779 0.085768 0.000000 -0.029226 -0.018572 -0.101186 -0.047377 -0.075587 -0.098578 -0.017169 -0.147171 0.012242 0.071107 -0.053890 0.051979 0.012960 -0.033378 -0.000459 0.196613 0.084216 0.069133 -0.059275 -0.065696 -0.262925 -0.003351 0.035767 0.071397 -0.024935 0.059343 0.016871 -0.075181 -0.043342 -0.049814 0.000580 -0.014751 0.194106 -0.051323 -0.046647 -0.025099 -0.079331 -0.148907 0.057067 -0.083676 0.167623 0.019148 0.059749 0.081867 0.058661 0.296283 -0.114689 -0.040441 -0.070170 -0.076695 0.028442 0.151565 0.062452 -0.026003 -0.032366 0.061249 0.095049 -0.062925 0.144540 -0.098354 0.000000 -0.071055 0.074624 0.161630 0.008821 -0.018156 0.070248 -0.016052 -0.022341 0.035017 0.031156 0.039127 0.109700 0.013729 0.008539 -0.082944 0.116140 -0.030524 -0.013734 -0.102775 -0.012028 0.023203 0.009950 -0.102229 0.067178 -0.101506 0.037633 -0.046252 0.068134 -0.111450 0.080650 -0.026594 -0.069376 0.107247 0.128503 0.061774 0.159759 0.056157 -0.030923 0.095810 0.046270 0.041677 0.007926 -0.055483 0.168005 -0.082151 -0.004396 -0.008121 0.021888 0.156109 -0.116939 0.051532 0.061794 -0.045592 0.005382 0.031755 -0.062964 0.091079 0.064715 0.051025 -0.004147 0.058364 0.007848 0.042701 0.091850 0.111859 -0.056375 0.046489 0.033814 -0.102002 0.126176 0.147241 -0.065416 0.069282 -0.053921 0.013876 -0.031898 -0.016414 0.052864 0.159085 -0.059015 0.015197 -0.048862 0.081646 -0.053038 -0.059193 -0.030349 -0.080465 0.112835 -0.002348 -0.116965 0.091245 -0.025764 0.054679 0.053293 0.062722 -0.013405 0.122957 -0.059284 0.172371 -0.135220 0.009940 0.068811 0.080741 -0.032939 -0.131914 -0.006590 -0.048621 -0.046036 0.096425 -0.016375 0.024470 -0.091702 -0.037001 -0.005951 -0.074481 -0.054759 0.091736 0.088033 -0.045031 0.104798 0.063519 0.033957 0.162023 0.042014 0.178826 0.010240 -0.034673 -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) = -0.575814 -1.936020 4.508214 3.155419 0.085160 0.837503 1.209282 -1.411460 1.112651 0.839323 -0.678705 1.953176 -2.565541 0.598120 -0.964882 1.137330 -2.713458 -2.148138 -0.720293 -1.254985 -0.423412 -1.303063 0.859475 1.695775 2.330380 0.335736 -1.915442 -0.687478 -3.758275 -2.805041 0.319384 -0.577440 1.921584 -0.723642 0.449386 -4.320031 2.420534 2.748558 -0.560476 -2.707289 2.075185 -1.518255 -0.128417 -0.688166 -0.707325 0.974435 1.015003 0.388976 1.767720 1.023315 0.100225 0.273208 0.849991 3.216931 -1.200643 1.723288 1.657630 -0.845403 -0.278999 -0.362617 -0.053576 -0.753675 1.040019 0.561307 -0.915997 -2.170423 0.127560 -0.783338 -1.928718 1.539705 0.114307 -0.624828 -1.627589 -0.648899 -2.600448 -0.259332 2.125201 1.806648 3.265574 -1.377360 2.469546 -0.133399 0.397442 0.026352 0.926801 0.456182 0.967230 0.576445 -0.515438 -1.171425 -2.294012 -0.152737 -0.223448 1.748371 -0.982268 -1.559062 1.587082 -2.843206 -2.771548 0.618457 0.565580 -1.772064 -1.716691 0.073785 0.567699 1.694267 -0.657234 -2.230719 -0.578666 1.113370 -0.055855 -0.680444 0.142235 -1.028796 -1.089765 -0.986386 -2.752166 0.946465 0.433845 -1.029180 -1.265881 2.219132 -1.084364 1.064316 0.257782 1.771400 -0.950712 1.823099 0.401602 1.241441 0.423454 -0.477252 -1.456274 -0.928170 1.068976 1.773898 -1.942730 -0.296196 -1.218602 0.553249 -0.907492 0.177727 -0.597450 2.330724 1.793411 -1.939856 -1.796377 -1.130096 -0.908620 -2.621056 0.080605 -1.150141 -1.347557 0.870748 1.730677 0.283163 1.189688 3.773881 -1.286923 0.920207 0.549131 -1.333635 1.740670 -0.858013 1.498043 -1.673339 -1.740029 1.344946 0.696203 1.169301 -0.340749 0.637837 0.611482 -2.192570 -0.926596 0.924925 0.793835 0.204299 2.215107 2.108783 2.713231 -1.555150 -0.062820 1.377603 -1.194655 -0.314876 0.322222 -2.469055 0.910888 0.840323 -0.147216 3.249101 0.155231 -1.988675 1.846954 -0.261146 0.728602 -2.080287 1.275758 -1.567325 0.347868 -1.402438 -1.406478 -0.782450 -1.192338 -1.772091 -1.221492 3.186865 -1.589062 -3.112422 1.659692 -0.020399 1.583744 -4.624173 2.645252 -1.609053 2.152642 0.028573 0.030939 0.267857 0.262472 -1.900308 0.684380 0.838445 -0.947654 1.747194 2.647142 1.255072 0.098100 -0.367906 2.014416 -0.242843 1.859028 -1.095161 1.524776 -0.659952 -1.086079 -0.079100 -0.467426 -0.444192 -0.171039 0.212643 0.884114 1.314941 0.773139 1.594819 2.061292 2.382974 -0.898871 1.312095 -0.832908 2.083757 -1.101426 -1.348845 0.330002 1.769145 0.215527 1.747636 -3.568329 -3.671775 -1.768999 -4.330280 0.360143 -0.414248 0.870284 -0.064369 -0.398241 -3.256782 -1.864773 1.503915 -0.039241 4.002764 1.856516 0.369528 1.799255 1.823706 -1.140048 -0.330518 0.107831 1.420964 0.044741 -0.677540 -1.885922 1.729633 -2.238142 0.755063 3.104064 -1.643811 1.316391 -0.942674 1.141945 -2.776359 3.705387 1.047578 -2.045640 2.056452 1.297420 2.255062 -0.378910 -1.510559 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__long std::__lg(long) = -0.157550 -0.567777 0.532341 0.455388 0.050301 0.173314 0.413470 0.111758 -0.022268 0.138693 -0.101964 0.335858 -0.551191 -0.129665 -0.070520 -0.057399 -0.220479 -0.410135 -0.016356 0.051178 -0.027842 -0.220135 -0.155236 0.573260 0.302275 0.065434 -0.164064 -0.193172 -0.789864 -0.017803 -0.164226 0.023041 0.282443 0.240315 0.254576 -0.235931 0.049826 0.540817 0.029329 -0.415248 0.125391 -0.182540 0.118106 -0.226860 -0.070972 0.174434 0.368954 0.040715 0.008933 0.053767 -0.067237 -0.247440 0.215439 0.364834 0.174283 0.354603 0.508505 -0.003464 0.307582 -0.223449 0.078519 -0.327632 0.112249 -0.048181 -0.182983 -0.025557 -0.180034 -0.201147 -0.067853 0.087515 0.179822 0.096193 -0.369141 -0.222741 -0.581556 -0.156904 -0.274353 0.196221 0.533589 -0.446987 0.555600 0.354985 0.322385 0.061692 0.267052 0.091350 0.060189 0.101347 -0.150933 0.265663 -0.571834 -0.077572 -0.189829 0.171947 -0.267610 -0.288883 0.265343 -0.536029 -0.571636 0.267343 -0.140751 -0.198472 0.063829 0.162338 -0.084491 0.242765 -0.247187 -0.362322 -0.194785 0.090835 0.043767 -0.070451 0.176979 0.219664 -0.019748 -0.228733 -0.422659 0.110798 0.237980 -0.322172 0.035620 0.417311 -0.112446 0.561249 0.032419 -0.034056 -0.043217 0.368633 0.436918 -0.013070 -0.091658 -0.302738 -0.480073 -0.280475 0.117802 0.418562 -0.299328 0.001015 0.144857 0.146231 0.235521 0.157089 0.167922 0.371736 -0.078994 -0.325730 -0.247414 -0.484989 -0.374088 -0.191380 0.062879 -0.055641 -0.023482 0.160082 0.226445 0.100088 -0.067627 0.531376 0.056210 0.046290 0.057291 -0.215258 -0.082798 -0.050645 0.160662 -0.189025 -0.286559 0.271858 0.224137 0.364676 0.136344 0.005574 0.113556 -0.146178 -0.174662 -0.057827 0.024646 -0.175957 0.566987 0.325759 -0.085357 -0.155586 -0.038959 -0.033129 -0.011533 0.000775 0.054801 -0.379067 0.321239 -0.044596 -0.274499 0.258795 -0.004380 -0.132993 0.512444 -0.178301 0.076169 -0.382145 0.203409 -0.247290 -0.046436 -0.414218 0.202348 -0.195187 -0.216950 -0.216911 -0.080980 0.534541 -0.172283 -0.127978 -0.130686 0.490542 0.210031 -0.412869 0.422885 -0.100054 0.521388 0.085554 -0.228916 0.184866 0.144905 0.089631 -0.259616 0.162737 -0.324378 0.040127 0.039971 0.070968 -0.069812 0.209688 0.221271 0.022011 0.070115 -0.201874 0.030819 0.004357 -0.248751 0.022196 -0.081242 0.237231 0.238256 -0.058714 0.211097 0.220913 0.106767 0.128006 0.253930 0.099886 -0.166061 -0.238646 0.029597 0.558685 -0.363597 -0.104627 -0.298930 0.212208 0.057013 0.133161 -0.476646 -0.416534 -0.112685 -0.305015 -0.188571 -0.005121 0.043779 0.199726 -0.088723 -0.410232 -0.351452 0.118266 -0.120420 0.019060 0.223002 0.062507 0.500716 0.160143 0.021253 -0.148260 0.285056 0.274721 -0.050820 0.056081 -0.217451 0.064207 -0.494541 0.216196 0.382489 -0.211758 0.266070 -0.020926 0.480439 -0.463163 0.659566 0.200940 -0.638070 0.125793 0.590364 0.373310 -0.221814 -0.255650 -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.046118 -1.262318 3.347659 2.457987 -0.369632 0.622295 0.477940 -1.288279 0.658540 0.309101 -0.510111 1.307082 -1.830569 0.681071 -0.867277 1.001219 -2.328717 -1.216237 -0.779917 -0.954140 -0.211796 -0.861563 0.862309 1.221205 1.705151 1.133688 -1.383502 -0.231756 -2.192597 -2.423520 0.417817 -0.427914 1.450238 0.144009 0.302377 -2.962395 1.966138 2.049492 -0.503695 -1.860963 1.599069 -0.984017 -0.308509 -0.724970 -0.773577 0.844401 0.365268 0.270551 1.332801 0.720539 -0.207429 0.374294 1.078039 1.819989 -0.885266 1.168398 1.108190 -0.555238 -0.099978 -0.457187 -0.100127 -0.099831 0.606428 0.406121 -0.431597 -1.822450 -0.088941 -0.586022 -1.371027 1.249702 -0.349353 -0.292612 -1.356858 -0.554701 -1.981446 0.048440 1.048380 1.537781 2.299670 -0.954488 1.503273 -0.302464 -0.238133 -0.076774 0.544261 0.421692 0.507696 0.558815 -0.116842 -0.575607 -0.968924 -0.274389 0.196083 1.027907 -0.914099 -1.558291 1.174992 -2.581089 -1.812728 0.388055 0.598994 -1.472922 -0.879562 -0.263859 0.176916 1.135727 -0.525406 -1.485662 0.112430 0.781916 0.424774 -0.510037 -0.007165 -0.293754 -0.725928 -0.451242 -2.002339 0.802343 0.105732 -0.648039 -0.386439 1.461687 -0.183278 0.487437 0.116673 1.289516 -0.841458 1.565819 -0.021722 1.150862 0.067325 0.338829 0.004045 -0.539763 0.977620 0.829199 -1.487019 -0.468266 -1.033242 0.388188 -0.733870 -0.075847 -0.534161 1.288557 1.475301 -1.239523 -1.186823 -0.624247 -1.115656 -2.297876 -0.094107 -0.831453 -1.111756 1.015715 1.247615 -0.029180 1.082385 2.445408 -1.054959 0.106194 0.352647 -0.948988 1.428450 -0.333364 0.977266 -1.086694 -1.349103 1.176374 0.139536 0.950204 -0.227881 0.587590 0.406225 -1.382391 -0.334765 1.183547 0.702111 0.029806 1.567815 1.573799 1.524572 -0.351781 0.018103 1.138670 -1.023909 -0.140837 0.269134 -1.788431 0.734592 0.639638 0.066583 2.196423 -0.002331 -1.079070 1.404684 -0.289905 0.550202 -1.556366 0.872354 -1.152749 0.384265 -1.290447 -0.904333 -0.236022 -0.899340 -1.207409 -0.867344 2.227245 -1.634506 -1.674467 1.401348 0.116934 1.147667 -2.913644 1.488914 -1.135893 1.660909 0.336702 0.005775 0.449145 -0.444010 -1.566767 0.175837 0.635555 -0.524719 0.984402 1.706533 0.958588 -0.325144 -0.355249 1.521988 -0.254932 1.583758 -0.927582 1.158259 -0.402813 -0.561649 0.043225 -0.332774 -0.705139 -0.588360 0.266403 0.862701 0.704638 0.930392 1.158310 1.231139 1.935606 -0.581927 1.089368 -0.682157 1.119225 -0.816716 -0.987132 0.418594 1.595278 0.105982 1.382364 -2.539258 -2.821591 -1.891455 -2.737875 0.106716 -0.483963 0.893840 -0.173794 -0.366242 -2.012806 -1.545365 1.512929 -0.167114 2.623516 1.377623 0.238029 1.140798 1.380428 -0.781855 -0.063929 -0.000690 1.297839 0.309404 -0.160762 -1.509443 1.449646 -1.380455 0.207521 2.449892 -1.360991 1.047931 -0.792510 1.046861 -1.950739 2.604203 0.673791 -1.376422 1.665686 0.972653 1.094703 0.219810 -1.020607 -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.283754 -0.488928 1.897290 1.245002 -0.219196 0.019514 0.658690 -0.851461 0.784731 -0.078536 -0.207063 0.385633 -1.130371 0.432119 -0.903862 0.804761 -1.414155 -0.885592 -0.369685 -0.884815 -0.171497 -0.405476 1.110037 0.023010 1.132588 0.233806 -0.760438 -0.725628 -1.233310 -0.857167 0.772006 -0.473914 0.808955 -0.165326 -0.524171 -2.302662 1.067528 0.899612 -0.694473 -0.791115 1.220135 -0.832875 0.018765 -0.653781 -0.553502 0.017843 0.020624 0.170053 1.008013 0.401812 0.384202 0.485773 0.343444 1.860685 -1.168685 0.563050 0.305188 -0.185849 -0.621622 0.041568 0.104259 0.144239 0.527947 0.319787 -0.233849 -1.296387 -0.305115 -0.764821 -1.106472 0.717447 -0.419650 0.098381 -0.716311 0.088113 -1.002234 -0.255646 0.344177 0.830556 1.309422 -0.851017 0.793004 -0.286966 -0.246058 -0.203528 -0.080730 0.410407 0.180619 0.221412 0.164575 -0.680781 -0.497585 0.378548 0.199016 0.438090 -0.256725 -1.432920 0.952122 -0.966265 -1.143063 -0.027758 0.698000 -0.659612 -0.528168 0.015667 -0.027675 0.737881 -0.645604 -0.938196 -0.058116 0.147284 0.410693 -0.218654 -0.068295 -0.490032 -0.468993 -0.700333 -1.318240 0.385268 -0.384256 -0.410602 -0.441203 0.750621 -0.408135 -0.091160 0.156670 0.914486 -0.681923 1.114859 -0.371933 0.696025 0.176907 0.408822 -0.350700 -0.514834 0.813032 1.224151 -0.771513 -0.121872 -0.990381 0.052180 -0.823509 -0.411775 -0.003697 0.600402 0.876871 -0.950822 -0.661488 -0.066593 -0.274097 -1.725535 0.038461 -0.683595 -0.281643 0.619959 0.776477 0.317061 1.043828 1.919406 -0.557558 0.386277 0.189962 -0.768251 1.214885 -0.160366 0.885334 -0.574750 -0.788452 0.382811 -0.025967 0.589205 -0.255378 0.583067 0.083761 -1.307967 -0.197652 0.240136 0.519889 -0.228868 0.633784 0.814312 0.675577 -0.835673 0.286837 0.976442 -0.499087 -0.005971 0.241043 -1.153046 0.358637 0.406277 -0.312553 0.917019 0.168916 -0.782439 0.528826 -0.400791 0.370800 -0.870352 0.201992 -0.589784 -0.054548 -0.822466 -0.349256 -0.162411 -0.611741 -0.470722 -0.634135 1.218277 -0.995356 -0.811455 0.921525 0.222656 0.525136 -1.768415 1.461606 -0.835191 1.039605 -0.247327 0.059479 0.110632 0.142256 -1.078684 0.140546 0.299065 -0.235269 0.684343 1.489034 0.797592 0.103467 -0.350154 1.249567 -0.189585 1.297325 -0.360059 0.983873 -0.268499 -0.944401 0.384807 -0.199391 -0.559956 -0.446168 0.532350 1.260777 0.615985 0.649728 1.063123 0.648946 1.706049 -0.533567 0.831398 -0.273358 0.869188 -0.170663 -0.432942 0.533082 0.857057 -0.226571 0.822035 -1.422060 -2.057704 -0.964455 -1.636661 0.580843 -0.559881 0.368969 -0.442614 0.007291 -1.386371 -0.772732 0.332000 -0.412640 1.579506 0.753336 0.217201 0.652307 1.009740 -0.873325 0.007272 0.186825 0.891843 0.379204 -0.308683 -1.036418 0.910871 -0.934676 -0.022388 1.375026 -0.706084 0.309951 -0.174799 0.711558 -0.874199 1.616213 0.228860 -0.516854 1.575524 0.608628 0.892179 0.590785 -0.525304 -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) = -0.117500 -1.124082 3.977202 2.809248 -0.790478 0.723721 0.445743 -1.547918 0.584110 0.182393 -0.197402 1.319399 -1.639683 0.725328 -1.050911 1.289845 -2.661031 -0.933793 -1.121502 -1.751477 -0.348793 -0.398450 0.846793 1.067293 1.988286 1.017755 -1.461065 -0.540309 -1.997119 -2.617719 0.492395 -0.356546 1.512210 -0.657672 0.141103 -4.283054 2.390727 2.313615 -0.822259 -1.823663 1.985706 -0.940118 -0.223591 -0.520124 -1.446668 0.643657 -0.062146 -0.148851 1.527345 0.833717 -0.144321 1.144778 1.598489 3.203895 -1.060916 1.225218 1.106898 -0.623374 -0.470044 -0.262186 -0.174006 0.188016 0.312747 -0.259289 0.153387 -2.515346 -0.435867 -0.692107 -1.120315 1.062615 -0.512364 -0.893902 -1.109559 -0.576887 -2.452811 -0.360860 0.419562 1.787483 2.082265 -1.509733 1.295846 -0.746958 -0.796422 0.334668 0.571388 0.663608 0.446705 0.616827 0.491911 -0.295632 -0.011017 0.275825 0.736070 0.942366 -1.432341 -2.986242 1.559509 -2.550782 -1.950796 0.687165 1.168432 -1.813250 -0.750702 -1.158672 -0.265061 1.060722 -1.073414 -1.379156 0.122372 1.059372 0.979896 -0.536900 -0.161980 -0.500721 -0.363360 -0.424894 -2.156201 1.546423 -0.104588 -0.077879 -0.715651 1.663434 0.248609 -0.018347 0.056984 1.806780 -1.482812 1.887141 -0.489936 1.531391 -0.727194 0.971631 0.057583 -0.746047 1.083733 0.596096 -1.608874 -0.861699 -1.545174 0.463763 -0.846418 0.346168 -0.289305 1.435134 1.732537 -1.030601 -0.968661 -0.406556 -1.365971 -2.816955 -0.331768 -0.822279 -1.591882 1.586821 1.251748 0.186281 1.340016 2.146403 -0.774976 0.049397 0.245444 -1.287937 1.873467 -0.555585 0.971639 -1.184129 -1.369073 0.934584 -0.245879 1.516843 -0.364046 1.074472 0.461254 -1.327374 0.168998 1.094327 0.926528 -0.389505 1.707330 2.124302 2.313311 -0.365983 -0.195409 1.240889 -1.908759 -0.021138 0.220942 -1.693874 0.099522 1.147188 -0.450272 2.601073 -0.057865 -0.832903 1.436079 -0.463647 0.629448 -1.486889 1.001515 -1.201961 0.178149 -1.239381 -1.232195 -0.552351 -0.745344 -1.610206 -1.599915 2.419610 -3.010424 -1.345536 1.714613 0.361781 0.708773 -2.965045 2.458094 -1.281599 1.845302 0.255245 -0.048450 0.439483 -0.107481 -2.260772 0.697689 0.571812 -0.992458 0.807305 2.233549 1.168113 -0.416785 -0.899605 1.999860 -0.776923 2.198275 -1.295625 1.853409 -0.682329 -0.929380 -0.104664 -0.199278 -1.340034 -1.013805 0.844665 0.758524 0.060042 1.212599 0.528448 1.518080 2.410040 -0.629025 1.602828 -0.944448 0.974339 -0.861391 -1.147076 0.871298 2.084620 0.532588 1.187656 -2.956185 -2.661872 -2.994784 -2.432002 0.588774 -0.166987 0.737591 -0.409143 -0.582948 -2.299670 -2.014454 2.016484 -0.418856 1.996311 1.651341 0.373538 1.332578 1.536939 -0.527923 0.234539 -0.267217 1.325669 0.909311 -0.258787 -1.643846 1.974845 -1.444903 -0.251961 2.780884 -1.169947 1.472804 -0.165195 0.674630 -2.050263 2.660042 0.379893 -1.328112 1.955254 1.889938 0.876139 0.320005 -0.999800 -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.695474 -0.882822 3.614005 2.326215 -0.335331 0.253116 0.717759 -1.713692 1.768572 0.244931 -0.596647 0.817706 -1.917994 0.546362 -0.649683 1.258236 -2.876423 -1.760068 -0.487823 -1.615939 -0.792372 -1.162507 1.194067 0.412640 1.787868 1.015659 -1.489717 -0.250878 -2.095873 -2.510788 0.900931 -0.854464 1.412357 0.411803 0.134409 -4.151008 2.283964 1.624224 -0.859465 -1.674103 1.600732 -1.566639 0.104588 -0.885800 -0.307226 0.806616 0.489771 0.721886 2.007665 0.608160 0.536915 0.170612 0.089924 2.438943 -1.693040 1.071544 0.613769 -0.920991 -1.015833 0.040666 0.109322 -0.385803 1.172601 0.938669 -1.126306 -2.167431 0.361425 -1.137649 -1.994877 1.740972 0.110615 -0.551530 -1.350089 -0.502175 -1.667477 -0.552532 1.202232 1.467114 2.699927 -1.025468 1.709596 -0.141549 0.374024 -0.218870 0.623113 0.248459 1.854491 0.278342 -0.548663 -1.114654 -1.587966 -0.483122 0.091046 1.509466 -0.216967 -1.053923 1.031702 -2.533644 -2.267257 0.035002 0.999225 -0.954479 -2.169250 0.403416 1.038596 1.026030 -0.324088 -1.859998 -0.191914 0.438489 -0.703293 -0.278937 -0.242665 -1.062169 -1.128543 -0.583174 -2.577711 0.553923 -0.240468 -0.594586 -1.067103 1.726978 -0.858018 0.021240 0.330436 1.538258 -0.872363 1.779087 -0.477474 1.076918 0.431198 0.055433 -1.096543 -0.668162 0.981332 1.448816 -1.319189 -0.827645 -1.338463 0.221393 -1.970627 -0.485743 -0.871006 1.920841 2.142120 -1.736030 -1.565292 -0.408260 -0.740792 -2.872126 0.336727 -1.244930 -0.863892 0.293503 1.537458 0.753502 1.621192 3.005144 -1.370654 1.040243 0.145563 -0.853431 2.120647 -0.082765 1.762164 -1.377107 -0.989429 0.917159 0.210989 0.883130 -0.355540 0.221384 0.334490 -2.378636 -1.112539 1.132220 0.647121 0.617623 1.301396 1.618005 2.727386 -1.947623 0.506833 1.718562 -0.497833 -0.365104 0.733815 -1.825708 0.865561 0.721471 0.241212 2.339415 0.195350 -1.525966 0.470532 0.066541 0.740295 -1.850763 0.357927 -1.045973 0.653167 -1.090157 -0.774983 -1.040374 -1.077875 -1.108394 -1.144559 2.399343 -1.063312 -2.840023 2.335305 -0.784130 1.981204 -3.702711 1.588536 -1.599504 1.610867 -1.007770 0.155960 -0.026932 -0.348470 -1.750431 1.043768 0.532808 -0.298020 1.353891 2.349792 1.413368 0.684954 -0.547495 1.945868 -0.167825 2.061711 -0.574168 1.701211 -0.525524 -0.743659 0.197379 -0.435755 -0.796581 -0.091028 0.462040 1.377974 1.532258 0.810046 1.858708 1.384424 2.344919 -1.004358 1.345722 -0.409393 1.381756 -0.590195 -1.192624 0.884749 1.274295 -0.439826 1.232387 -2.815954 -3.348763 -1.248751 -3.634341 0.168353 -0.323211 0.803473 -0.132736 0.007782 -2.276932 -1.005335 1.646603 0.034258 3.997891 0.980975 0.193812 1.292458 1.976766 -1.420800 -0.627814 0.047229 0.918243 0.076986 -0.612099 -2.249385 1.994332 -1.664134 0.652900 2.598060 -1.767343 0.533922 -0.937442 1.776639 -2.024901 2.766213 0.624942 -1.243516 2.165254 0.721303 2.163712 0.517648 -1.206627 -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.321019 -1.065251 2.721118 1.893708 -0.059996 0.614453 0.537161 -0.876085 0.786072 0.613338 -0.376946 0.916992 -1.481818 0.330924 -0.140180 0.692637 -1.707114 -1.071163 -0.361966 -0.860868 -0.189028 -0.822402 0.318772 0.870993 1.254815 0.464546 -0.934019 -0.204291 -1.908078 -1.832263 0.361794 -0.474299 1.115577 0.020560 0.481931 -2.632667 1.599294 1.449647 -0.344465 -1.557051 1.056530 -0.875213 0.122797 -0.393630 -0.106363 0.852655 0.680726 0.299256 1.196998 0.607325 -0.119834 -0.136718 0.558465 1.578331 -0.870235 0.916127 0.801703 -0.744290 -0.057834 -0.134190 -0.206638 -0.491085 0.596002 0.348926 -0.612271 -1.373283 0.192287 -0.471718 -1.159918 0.904997 0.072901 -0.358631 -1.075344 -0.486000 -1.479848 -0.227751 0.247352 1.141191 1.959226 -0.678129 1.499782 -0.027892 0.313447 0.202039 0.776578 0.357966 0.732074 0.294417 -0.569287 -0.330622 -1.203296 -0.401736 -0.024971 0.969248 -0.448953 -0.821998 0.678912 -1.574891 -1.434245 0.527080 0.272324 -0.862346 -1.207920 -0.166957 0.396808 0.946774 -0.452824 -1.389609 -0.180460 0.625354 -0.156434 -0.287568 0.161370 -0.755501 -0.733283 -0.594083 -1.497450 0.507837 0.223831 -0.552259 -0.777405 1.440598 -0.474612 0.482641 0.188864 1.088780 -0.711839 1.172987 0.195088 0.882257 0.192249 -0.324059 -1.153147 -0.474318 0.674925 0.966089 -0.882427 -0.361855 -0.789653 0.293624 -0.705297 0.112452 -0.224722 1.432747 1.325057 -1.052839 -0.864382 -0.563021 -0.462623 -1.532653 0.184593 -0.608350 -0.719919 0.412020 1.035204 0.167122 0.830252 1.878165 -0.952177 0.374074 -0.104110 -0.623176 1.138411 -0.119498 0.929331 -0.972168 -0.729972 0.653028 0.419475 0.584567 -0.022257 0.055154 0.465243 -1.193949 -0.270763 0.692086 0.447069 -0.009600 1.306479 1.291908 1.746956 -0.807608 -0.093232 0.893555 -0.721843 -0.192070 0.331310 -1.281224 0.674835 0.616695 -0.188338 1.717271 -0.009744 -1.083974 0.948482 -0.139806 0.421217 -1.123856 0.566630 -0.915994 0.187374 -0.768808 -0.692779 -0.695826 -0.871216 -1.022306 -0.518315 1.781446 -0.714164 -1.559976 1.057691 -0.262229 0.901235 -2.463844 1.575796 -1.034198 1.020182 -0.150289 -0.001379 0.049036 0.344531 -1.045404 0.336114 0.482246 -0.550531 1.048247 1.450769 0.847127 0.022914 -0.170390 1.276980 -0.161801 0.904184 -0.617255 0.842362 -0.524294 -0.112147 -0.045574 -0.275605 -0.235636 -0.082806 0.099411 0.352747 0.724350 0.377109 0.801461 1.226231 1.154902 -0.351459 0.722138 -0.582085 1.130847 -0.673672 -0.794761 0.202923 1.072909 0.208358 0.946638 -2.171893 -1.980171 -0.848038 -2.089274 -0.050504 0.229759 0.388142 0.240653 -0.068355 -1.884722 -0.935107 1.014758 0.000441 1.871445 0.858443 0.134664 0.975201 1.132529 -0.520622 -0.551767 -0.017957 0.691932 -0.005946 -0.184712 -1.197883 1.225384 -1.433402 0.402749 1.780342 -1.099487 0.572307 -0.532220 1.036353 -1.735061 2.072641 0.635132 -1.043160 1.210508 1.049586 1.450893 -0.163521 -0.769067 -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&) = -0.824963 -3.047746 5.182426 3.715490 0.232848 1.731802 1.546576 -0.698794 0.551756 1.459611 -0.769130 2.891711 -3.056208 0.209377 -0.493613 0.582965 -2.651837 -2.354580 -0.494392 -0.801471 -0.238449 -1.626969 -0.478629 3.249326 2.372844 0.639380 -1.923234 -0.512685 -4.971131 -3.410266 -0.536934 -0.321359 2.248715 -1.027243 1.520074 -4.788986 2.501140 3.742521 0.031074 -3.865167 1.914352 -1.442111 0.093420 -0.213497 -0.614018 1.730250 1.926716 0.571649 1.401417 1.127452 -0.953149 -0.311795 1.470767 3.509510 -0.210048 2.266275 2.821554 -1.029612 0.578030 -0.849869 -0.302297 -1.695325 0.777242 0.166359 -1.134392 -1.778736 0.270957 -0.429404 -1.537691 1.235683 0.778222 -0.964856 -1.851366 -1.087886 -3.641683 -0.296726 2.041777 2.075098 3.891271 -1.583179 3.500192 0.136348 1.153678 0.673492 1.901997 0.532391 0.947898 0.745309 -1.128903 -0.503318 -3.133499 -0.431449 -0.626465 2.113802 -1.590222 -1.826524 1.470776 -3.516622 -3.238811 1.465015 -0.271030 -2.162478 -1.590096 -0.358314 0.704518 2.121589 -0.936866 -2.643102 -0.995797 1.812189 -0.416027 -0.814860 0.769167 -0.705169 -0.969060 -1.094020 -2.709284 1.261687 1.426293 -1.299289 -1.358241 3.021259 -0.868444 2.397508 0.278855 1.730386 -0.885895 1.854677 1.626106 1.018861 0.033668 -1.425751 -2.020859 -1.169122 0.638298 1.742222 -2.448226 -0.655013 -0.553991 0.998676 0.200316 0.844700 -0.592034 2.972856 1.775636 -1.962131 -1.704920 -2.078054 -1.236849 -2.131691 -0.048016 -0.868078 -1.856801 1.072846 1.887095 -0.158765 0.445292 3.616454 -1.324487 0.876723 0.500859 -1.327478 1.060034 -0.778664 1.155861 -2.024307 -1.949016 1.563709 1.155640 1.685247 -0.268391 0.301791 0.994304 -1.531986 -0.851690 1.155711 0.821501 0.072062 3.288198 2.708656 3.306518 -1.358096 -0.902316 0.692733 -1.850114 -0.377813 0.168999 -2.695652 1.148788 1.087096 -0.368737 4.103654 -0.125632 -2.108054 2.973663 -0.078704 0.672850 -2.399225 2.006071 -2.091443 0.205117 -1.496582 -1.668555 -1.340007 -1.322826 -2.767040 -1.334848 3.857663 -1.915668 -3.485334 0.991459 0.258746 1.715612 -5.292758 2.975980 -1.592866 2.343167 0.649479 -0.190527 0.502956 0.652042 -1.512646 0.531639 1.084006 -1.809753 2.028865 2.277428 1.091855 -0.293501 0.087053 1.912160 -0.220086 1.001591 -1.668466 1.074481 -0.943007 -0.703444 -0.540301 -0.518999 0.243513 0.497790 -0.135705 -0.142807 1.051569 0.459445 0.976376 2.860962 1.420819 -0.663741 0.734484 -1.289756 2.823945 -1.854203 -1.639393 -0.750775 2.238503 1.139061 1.802619 -4.416161 -3.408897 -2.066419 -4.737567 -0.282296 0.303446 0.820642 0.767129 -0.496718 -4.109257 -2.333863 2.108102 0.233259 3.744871 2.249488 0.371547 2.504321 1.575649 -0.421967 -0.762259 0.225652 1.424554 -0.417872 -0.405421 -1.665286 1.519846 -2.931220 1.220016 3.421680 -1.732940 1.886657 -1.181958 1.304166 -3.722704 4.404591 1.655880 -3.110412 1.205126 2.188116 2.692201 -1.426076 -1.834412 -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.514510 -0.593710 1.379185 0.932007 0.112956 0.193625 0.548046 -0.480907 0.517594 0.463916 -0.152514 0.486073 -0.747934 0.040859 -0.321335 0.495895 -0.649728 -0.718861 -0.171682 -0.609680 -0.120354 -0.332584 0.344027 0.241491 0.750926 -0.457970 -0.542298 -0.486618 -1.172907 -0.913864 0.084675 -0.223770 0.564840 -0.668173 -0.145735 -1.679827 0.720818 0.842360 -0.359594 -0.807441 0.723090 -0.533923 0.111937 -0.070415 -0.360900 0.139703 0.270057 -0.326576 0.557001 0.418406 0.446011 0.225369 0.318526 1.522292 -0.510370 0.604788 0.455319 -0.237406 -0.318455 0.148699 0.090880 -0.196648 0.440626 0.084525 -0.156270 -0.734719 -0.181992 -0.266584 -0.713700 0.374188 -0.293654 -0.391749 -0.389262 -0.163724 -0.876722 -0.359410 0.251291 0.482888 0.962006 -0.684242 0.829150 0.002387 0.081896 0.039504 0.231953 0.182824 0.279753 0.151657 -0.067583 -0.345757 -0.286929 0.081175 -0.012737 0.597404 -0.302878 -0.553748 0.738437 -0.681763 -0.983698 0.317990 0.315119 -0.421096 -0.765721 -0.077982 0.035645 0.618882 -0.434568 -0.778174 -0.416161 0.337440 0.171751 -0.247781 -0.062796 -0.543130 -0.292995 -0.319193 -0.913907 0.285951 0.086787 -0.353998 -0.708734 0.739087 -0.420998 0.236259 0.079413 0.645518 -0.399143 0.715189 -0.055351 0.562178 0.052872 -0.033030 -1.174413 -0.419328 0.378742 0.553567 -0.490185 0.133516 -0.461006 0.109006 -0.359348 0.237741 -0.067067 0.816283 0.733287 -0.493916 -0.519261 -0.306546 -0.171692 -0.998877 0.085471 -0.441998 -0.215310 0.449721 0.565658 0.288234 0.452479 1.397555 -0.320412 0.322779 0.089237 -0.616596 0.644266 -0.516219 0.590251 -0.521664 -0.570863 0.279808 0.408824 0.409136 -0.008003 0.302720 0.135856 -0.792314 -0.287850 0.100108 0.302063 -0.074081 0.628108 0.682933 1.006444 -0.807429 0.043416 0.406673 -0.382303 0.015062 -0.042194 -0.858444 0.146735 0.327128 -0.210200 0.883157 0.103435 -0.571494 0.418191 -0.319378 0.241833 -0.600900 0.386294 -0.553736 0.002301 -0.344129 -0.604559 -0.344949 -0.413309 -0.441430 -0.434966 1.001603 -0.529556 -0.830951 0.593086 0.066113 0.242090 -1.482713 1.367658 -0.565270 0.826563 -0.315261 -0.007643 -0.089973 0.554387 -0.532827 0.214642 0.268471 -0.431020 0.587168 1.152325 0.423836 0.169482 -0.180702 0.799841 -0.187730 0.673718 -0.312365 0.710678 -0.254411 -0.558862 0.026086 -0.165999 -0.079893 -0.064560 0.189076 0.436937 0.435304 0.028133 0.389659 0.793169 0.896235 -0.380215 0.628338 -0.170476 0.851566 -0.268253 -0.344318 0.178497 0.518772 0.051444 0.385471 -1.115344 -1.047061 -0.700822 -1.192059 0.295652 -0.044807 0.143962 -0.171223 -0.064522 -1.125674 -0.617288 0.364952 -0.207704 0.846381 0.503513 0.280432 0.665189 0.657064 -0.278507 -0.068728 -0.133172 0.277297 0.043941 -0.429601 -0.425637 0.515968 -0.791015 0.202850 0.754164 -0.273452 0.354273 0.302542 0.037477 -0.759035 1.109682 0.246360 -0.415258 0.918600 0.681263 0.753588 -0.324742 -0.453878 -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.557166 -1.399044 3.444619 2.288210 -0.260677 0.685218 0.968848 -1.098062 0.755822 -0.007904 -0.263316 1.236458 -1.931963 0.553895 -1.326640 0.622045 -2.168429 -1.416673 -0.762059 -1.303026 -0.263407 -0.724159 0.676265 1.111556 1.682047 0.303073 -1.334166 -0.867428 -2.873906 -1.383242 0.921079 -0.395851 1.453657 -0.763870 -0.041514 -4.423260 1.703576 2.070033 -0.718770 -1.927861 1.773781 -1.346056 -0.036363 -0.831393 -0.973447 0.245034 0.413760 0.177701 1.256119 0.491705 -0.211318 0.693675 0.611800 3.514746 -1.309172 1.263158 1.223443 -0.445202 -0.354013 -0.085539 -0.165797 -0.196609 0.682169 0.095055 -0.505029 -1.866303 -0.116848 -0.917790 -1.404275 0.974454 -0.120945 -0.268621 -1.023109 -0.282580 -2.520149 -0.412816 0.922254 1.506396 2.282146 -1.453767 1.743151 -0.414756 -0.011324 0.365373 0.717867 0.694919 0.416126 0.443928 -0.028787 -0.673868 -1.572487 0.610628 0.050602 0.884403 -0.927346 -2.586332 1.512259 -2.137352 -1.928517 0.550014 0.566035 -1.429710 -0.980010 -0.593695 -0.048983 1.295240 -1.190536 -1.658704 -0.552892 1.018305 0.488581 -0.440377 0.470069 -0.729728 -0.531564 -1.471628 -1.969746 1.025846 0.201637 -0.541424 -0.988359 1.865605 -0.720927 0.460505 0.186826 1.492390 -1.238794 1.681029 -0.093604 0.828338 -0.145908 0.058631 -1.065791 -1.150230 0.980222 2.129380 -1.448862 -0.438684 -1.205220 0.415966 -0.660513 -0.148489 -0.048955 1.346324 1.157833 -1.365201 -0.959836 -0.782409 -0.412117 -2.340090 -0.290711 -0.766201 -1.134538 1.210941 1.316817 0.577076 1.112292 2.760664 -0.749666 0.638514 0.197650 -1.313929 1.479218 -0.588915 1.103263 -1.136299 -1.458789 0.707488 0.051803 1.320407 -0.264179 0.727541 0.307085 -1.579679 -0.365961 0.314362 0.992740 -0.344168 1.720164 1.869127 1.445845 -1.634765 0.013809 1.030042 -1.468628 0.002349 0.153908 -1.750650 0.423541 0.993502 -0.966157 2.272475 0.064019 -1.477617 1.434447 -0.444338 0.598642 -1.395987 0.698104 -1.213287 -0.332990 -1.335333 -0.944987 -0.606154 -0.950049 -1.609251 -1.489870 2.350538 -2.207451 -1.751426 1.254959 0.600280 0.888600 -3.416695 2.276783 -1.226679 1.906416 0.131234 0.081430 0.191266 0.731648 -1.742694 0.486736 0.602869 -1.199176 1.226847 2.362755 1.104962 0.102278 -0.469720 1.919293 -0.430654 1.415863 -1.142952 1.332719 -0.666251 -1.347512 0.237139 -0.352373 -0.459110 -0.442646 0.844981 1.080521 0.808161 1.057652 1.090518 1.890572 1.997974 -0.510623 0.835939 -0.815598 1.434226 -0.689135 -0.855975 0.307632 1.710885 0.356790 1.208446 -2.758082 -3.099152 -2.011783 -2.838661 0.910537 -0.438485 0.227522 -0.120515 -0.236791 -2.877643 -1.510621 0.742020 -0.569203 2.475075 1.563159 0.430973 1.374160 1.531183 -1.094687 -0.070241 0.606096 1.427752 0.320305 -0.338632 -1.683947 1.530616 -1.762400 0.326613 2.474928 -1.058579 1.128512 -0.081521 1.085300 -1.944183 3.017315 0.679441 -1.590924 1.760713 1.598941 1.643731 0.335360 -0.940829 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::remove_reference::type&& std::move(int&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -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.542488 -4.942564 8.502980 5.684909 -0.492446 2.314690 2.829667 -1.142957 1.512853 1.739722 -1.341814 4.946439 -4.208235 -0.652554 -0.363319 0.723768 -5.163366 -4.341925 -0.250239 -1.895258 -1.578040 -2.531408 -1.655030 5.640781 3.610639 0.533033 -3.217438 -1.028866 -7.221694 -4.936896 -1.765440 -0.426691 3.403770 -2.542010 3.174766 -10.925448 3.756797 5.797131 -0.157734 -6.494495 2.582319 -2.560193 0.997724 -0.321240 -3.129576 1.889685 3.430875 1.335220 1.869484 1.558686 -0.875883 -0.151645 2.103653 8.579390 1.082425 3.931663 4.847238 -1.833556 -0.214435 -1.407644 0.625069 -3.647037 1.810284 -0.193675 -1.848429 -2.671715 0.020452 -1.068342 -2.429443 2.019343 2.318785 -2.887473 -2.664805 -2.213121 -6.659072 -2.060087 3.725124 3.640998 6.417365 -4.065402 5.776641 1.216399 2.931491 1.541547 3.452726 0.391519 3.811126 1.111777 -1.658249 -0.092145 -4.941813 -1.134106 -0.749023 2.294005 -2.694468 -4.928634 2.484216 -7.391645 -6.597181 2.875900 0.308973 -3.208152 -3.049935 -0.953779 2.527162 3.172857 -1.975021 -4.301803 -2.828642 2.895776 -2.042697 -1.197638 1.077916 -0.473888 -0.472636 -1.229075 -5.457405 2.500882 3.086053 -1.345071 -1.937158 5.494210 -1.641671 4.134910 0.344337 2.326395 -1.061401 3.938573 2.583184 0.704535 -1.336807 -2.453144 -3.444435 -1.767644 -0.073118 1.634830 -3.661675 -2.254048 -0.048664 2.215721 -0.128189 2.146764 -1.115014 5.646535 2.906176 -2.475173 -3.614102 -4.325330 -3.653889 -4.265782 0.013206 -1.471733 -3.312830 2.645871 3.271797 1.305204 0.470739 4.602729 -1.043121 2.348865 0.751348 -2.132640 1.666002 -1.751129 2.578989 -3.436777 -2.860810 2.699339 2.096212 4.598975 -0.430290 0.190178 1.450894 -2.577407 -2.966032 1.054669 2.174330 1.798306 5.324705 4.784083 6.687904 -3.470091 -1.553626 0.637324 -2.268332 -0.742663 0.128779 -4.175192 1.080820 1.603405 -0.765020 7.188510 -0.210212 -2.894977 3.980316 0.468032 1.234218 -4.303248 2.644205 -3.183490 0.781441 -2.024983 -2.205417 -4.024085 -1.350015 -5.469019 -4.231285 7.033420 -4.959108 -6.810018 2.762443 -0.670673 4.552483 -8.933122 5.506839 -2.541194 5.460333 -0.461404 -0.996500 0.396252 -0.150956 -2.272407 2.393588 1.635838 -3.223906 2.069621 3.711376 1.822885 0.868205 -0.057764 3.239567 -0.632572 2.745395 -2.643615 2.713191 -1.777728 -1.895103 -0.931363 -0.729847 0.568218 2.138828 0.579983 0.135517 1.829203 0.864428 1.711978 5.381217 2.043614 -2.389941 0.858884 -1.485351 4.988472 -3.403973 -2.932741 -1.220720 3.722433 1.470446 1.507487 -7.416584 -5.112583 -6.246732 -7.679158 -0.744811 0.272102 1.091574 0.895159 -1.039019 -6.252992 -3.696145 4.858545 0.395458 6.044260 3.770438 0.788105 5.618456 3.181784 -0.602917 -1.372093 0.812060 0.985372 -0.906513 -1.088835 -3.810325 2.773040 -5.212407 3.212357 5.777164 -2.598239 3.336664 -0.656310 2.308461 -5.840493 6.960601 2.453716 -6.147290 1.122439 4.328669 4.041049 -3.120790 -3.772057 -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.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -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.059658 -0.246549 0.545724 0.474183 0.055125 0.029539 0.278907 -0.225565 0.265473 0.238518 -0.055895 0.118197 -0.446548 0.171235 -0.189108 0.395790 -0.252119 -0.298716 -0.112087 -0.187355 -0.027302 -0.185673 0.418102 -0.057448 0.386835 0.046335 -0.227372 -0.299337 -0.437382 -0.379341 0.156694 -0.127221 0.276403 0.040189 -0.190826 -0.366549 0.297863 0.366467 -0.192731 -0.306315 0.354581 -0.185801 0.039064 -0.094143 0.018310 0.115361 0.011510 -0.043920 0.297833 0.252037 0.305499 0.077318 0.234823 0.355420 -0.330588 0.223255 0.104391 0.016784 -0.118056 -0.020790 0.075199 0.090855 0.169899 0.142197 -0.025090 -0.349828 -0.240177 -0.183073 -0.401734 0.208868 -0.237338 0.051284 -0.348574 -0.046983 -0.091733 -0.035585 -0.338751 0.197267 0.451969 -0.265602 0.284158 0.006359 -0.093957 -0.167943 -0.064410 0.088646 -0.100806 0.095302 0.036678 -0.136178 0.003683 0.051587 0.041192 0.194393 -0.151344 -0.240822 0.351809 -0.005721 -0.373573 0.040339 0.178670 -0.140408 -0.140153 0.148058 -0.121194 0.303592 -0.206513 -0.333117 -0.025710 -0.004241 0.316537 -0.133184 -0.104361 -0.148221 -0.232594 -0.160555 -0.403320 0.016656 -0.131569 -0.281784 -0.131734 0.171161 -0.089550 0.052811 0.030390 0.210653 -0.148629 0.396458 0.013640 0.338206 0.153954 0.125792 -0.311685 -0.052155 0.323263 0.345395 -0.222826 0.144427 -0.292914 -0.031694 -0.163939 -0.024758 0.055795 0.146335 0.440014 -0.295542 -0.236795 -0.012979 -0.054574 -0.476772 0.105072 -0.259032 0.163642 0.086178 0.239795 0.016140 0.299885 0.780680 -0.287835 0.020991 0.078134 -0.242615 0.311457 0.104898 0.236412 -0.157097 -0.316518 0.167230 0.163142 0.035034 0.015707 0.200269 0.029358 -0.372731 0.049537 0.152411 0.064758 -0.227201 0.232329 0.178832 0.203783 -0.052828 0.078362 0.280773 -0.081586 0.038689 0.039965 -0.468435 0.207448 0.021886 -0.038766 0.181666 0.036476 -0.160245 0.275757 -0.267115 0.100952 -0.285221 0.185405 -0.240251 -0.026930 -0.325671 -0.022619 0.065574 -0.211947 0.049850 0.088248 0.382112 0.013601 -0.076497 0.135630 0.112181 -0.051141 -0.402959 0.588827 -0.227793 0.188007 -0.099202 -0.026618 0.053747 0.144117 -0.181522 -0.185941 0.143011 -0.001683 0.173849 0.484145 0.171450 -0.157735 -0.019105 0.352248 -0.018800 0.361474 -0.069545 0.323957 -0.008631 -0.173149 0.140417 -0.091899 -0.105281 -0.203034 -0.046967 0.505060 0.218911 0.061465 0.276482 0.037650 0.544303 -0.181880 0.350508 0.017675 0.370709 -0.095527 -0.057148 0.124136 0.201728 -0.129454 0.286987 -0.368049 -0.538427 0.006665 -0.424499 0.087357 -0.081029 0.184794 -0.160368 -0.031625 -0.316318 -0.329517 0.097335 -0.167432 0.343564 0.152072 0.082822 0.205405 0.282473 -0.207139 0.044286 -0.077657 0.211197 0.116620 -0.124888 -0.080697 0.182323 -0.264482 -0.089507 0.322270 -0.169465 0.093691 -0.073025 0.255615 -0.250965 0.520722 0.080439 -0.026442 0.590474 0.207063 0.402067 0.044923 -0.157044 -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.174186 -2.405691 5.022026 3.381552 -0.403197 1.037430 1.856754 -0.709580 1.300277 1.076705 -0.583395 2.213012 -2.603066 -0.029451 -0.111806 1.114611 -3.306688 -2.391194 -0.142597 -1.405729 -1.089067 -1.408902 -0.165862 2.156027 2.433282 1.094726 -1.848296 -0.985935 -3.438728 -3.098219 -0.278834 -0.485117 1.986961 -0.548639 1.267876 -6.638665 2.351015 2.839427 -0.403298 -3.347438 1.746557 -1.483869 0.694253 -0.454681 -0.898481 1.409752 1.804167 1.256780 1.696756 0.978063 -0.502042 -0.138690 1.132477 4.969563 -0.294979 1.911628 2.377402 -1.058183 -0.497377 -0.452877 0.307332 -1.792724 0.871961 0.188737 -0.974307 -1.901434 -0.048279 -1.275247 -1.537664 1.549907 1.193241 -1.291129 -1.887334 -1.108782 -3.284440 -1.111517 0.321682 2.477118 3.746015 -2.562123 3.071872 0.282802 1.481507 0.553790 1.482766 0.246022 2.067746 0.532080 -0.874011 -0.395682 -2.422338 -0.966077 -0.318955 1.496532 -1.137471 -3.004918 1.352631 -3.314070 -3.609551 1.263181 0.494541 -1.452584 -2.045045 -0.328528 1.362929 1.836625 -1.045720 -2.483836 -1.435244 1.048834 -1.055615 -0.470478 0.408867 -0.479254 -0.775622 -0.718253 -3.284490 1.235468 0.896744 -0.871524 -1.364549 2.811796 -0.792318 1.857886 0.363681 1.607879 -0.860384 2.495148 1.234790 0.893851 0.010242 -0.786527 -2.291769 -0.913678 0.618372 1.933659 -1.963769 -1.249196 -0.787336 0.975580 -0.876144 0.571195 -0.458177 3.304401 2.362463 -1.882400 -2.131615 -1.871551 -1.355975 -2.704260 0.358722 -1.227539 -1.146907 1.288259 1.804787 0.780091 0.750928 3.127863 -1.441334 1.564952 0.261235 -0.989109 1.397013 -0.022406 1.568206 -1.993740 -1.409217 1.042594 0.868595 2.187093 -0.501074 0.128833 0.860856 -1.893308 -1.552843 1.054134 1.051269 0.279882 2.601337 2.610017 4.115117 -2.560987 -0.668987 0.961947 -1.459539 -0.534834 0.586485 -2.559660 1.163984 0.898179 -0.223128 3.558853 -0.077633 -1.672617 2.117563 0.075138 0.651814 -2.213551 1.117330 -1.829945 0.178317 -1.308693 -0.963202 -2.140756 -0.939937 -2.417779 -1.758791 3.804200 -2.386174 -3.518331 1.883863 -0.653654 2.207196 -5.098789 3.705143 -1.569764 1.968746 -0.867056 -0.480605 0.188844 0.279342 -1.419494 1.169237 0.824202 -1.547225 1.204201 2.741590 1.247500 0.427872 -0.083593 2.276094 -0.200416 1.776861 -1.185441 1.835372 -1.079817 -0.984641 -0.563637 -0.335984 0.051773 0.892909 0.452261 0.994737 1.047190 0.664527 1.284184 2.666122 1.783313 -1.375449 0.948473 -0.891631 2.997514 -1.780664 -1.625351 -0.324640 1.968183 0.414708 1.210014 -4.194445 -3.336189 -2.600918 -4.410300 -0.591514 0.384010 0.882508 0.247620 -0.472596 -3.579397 -1.985453 2.263013 0.184126 2.943985 1.790945 0.243903 2.900773 2.020864 -0.640930 -0.905797 0.228567 0.804042 -0.171300 -0.736125 -2.208337 1.793879 -3.003652 1.251399 3.424220 -1.641394 1.549182 -0.828993 2.245675 -3.265484 4.059285 1.230096 -2.990822 1.263869 2.737218 2.866144 -0.888946 -1.996080 -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.514510 -0.593710 1.379185 0.932007 0.112956 0.193625 0.548046 -0.480907 0.517594 0.463916 -0.152514 0.486073 -0.747934 0.040859 -0.321335 0.495895 -0.649728 -0.718861 -0.171682 -0.609680 -0.120354 -0.332584 0.344027 0.241491 0.750926 -0.457970 -0.542298 -0.486618 -1.172907 -0.913864 0.084675 -0.223770 0.564840 -0.668173 -0.145735 -1.679827 0.720818 0.842360 -0.359594 -0.807441 0.723090 -0.533923 0.111937 -0.070415 -0.360900 0.139703 0.270057 -0.326576 0.557001 0.418406 0.446011 0.225369 0.318526 1.522292 -0.510370 0.604788 0.455319 -0.237406 -0.318455 0.148699 0.090880 -0.196648 0.440626 0.084525 -0.156270 -0.734719 -0.181992 -0.266584 -0.713700 0.374188 -0.293654 -0.391749 -0.389262 -0.163724 -0.876722 -0.359410 0.251291 0.482888 0.962006 -0.684242 0.829150 0.002387 0.081896 0.039504 0.231953 0.182824 0.279753 0.151657 -0.067583 -0.345757 -0.286929 0.081175 -0.012737 0.597404 -0.302878 -0.553748 0.738437 -0.681763 -0.983698 0.317990 0.315119 -0.421096 -0.765721 -0.077982 0.035645 0.618882 -0.434568 -0.778174 -0.416161 0.337440 0.171751 -0.247781 -0.062796 -0.543130 -0.292995 -0.319193 -0.913907 0.285951 0.086787 -0.353998 -0.708734 0.739087 -0.420998 0.236259 0.079413 0.645518 -0.399143 0.715189 -0.055351 0.562178 0.052872 -0.033030 -1.174413 -0.419328 0.378742 0.553567 -0.490185 0.133516 -0.461006 0.109006 -0.359348 0.237741 -0.067067 0.816283 0.733287 -0.493916 -0.519261 -0.306546 -0.171692 -0.998877 0.085471 -0.441998 -0.215310 0.449721 0.565658 0.288234 0.452479 1.397555 -0.320412 0.322779 0.089237 -0.616596 0.644266 -0.516219 0.590251 -0.521664 -0.570863 0.279808 0.408824 0.409136 -0.008003 0.302720 0.135856 -0.792314 -0.287850 0.100108 0.302063 -0.074081 0.628108 0.682933 1.006444 -0.807429 0.043416 0.406673 -0.382303 0.015062 -0.042194 -0.858444 0.146735 0.327128 -0.210200 0.883157 0.103435 -0.571494 0.418191 -0.319378 0.241833 -0.600900 0.386294 -0.553736 0.002301 -0.344129 -0.604559 -0.344949 -0.413309 -0.441430 -0.434966 1.001603 -0.529556 -0.830951 0.593086 0.066113 0.242090 -1.482713 1.367658 -0.565270 0.826563 -0.315261 -0.007643 -0.089973 0.554387 -0.532827 0.214642 0.268471 -0.431020 0.587168 1.152325 0.423836 0.169482 -0.180702 0.799841 -0.187730 0.673718 -0.312365 0.710678 -0.254411 -0.558862 0.026086 -0.165999 -0.079893 -0.064560 0.189076 0.436937 0.435304 0.028133 0.389659 0.793169 0.896235 -0.380215 0.628338 -0.170476 0.851566 -0.268253 -0.344318 0.178497 0.518772 0.051444 0.385471 -1.115344 -1.047061 -0.700822 -1.192059 0.295652 -0.044807 0.143962 -0.171223 -0.064522 -1.125674 -0.617288 0.364952 -0.207704 0.846381 0.503513 0.280432 0.665189 0.657064 -0.278507 -0.068728 -0.133172 0.277297 0.043941 -0.429601 -0.425637 0.515968 -0.791015 0.202850 0.754164 -0.273452 0.354273 0.302542 0.037477 -0.759035 1.109682 0.246360 -0.415258 0.918600 0.681263 0.753588 -0.324742 -0.453878 -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.797184 -1.455716 5.908031 3.402300 -0.889587 0.581392 0.351983 -2.820144 2.941285 -0.897332 -1.242802 1.618991 -3.247031 1.039815 -1.911448 1.054581 -5.479604 -3.295890 -0.905135 -2.448487 -2.000402 -2.361495 1.334498 1.470745 2.388373 3.415895 -2.949064 1.116389 -3.928209 -4.395493 1.544770 -1.348686 2.289433 1.311515 0.895968 -7.545956 3.752045 2.908821 -1.085081 -2.870060 2.296162 -3.108618 -0.040374 -1.976115 -0.750597 1.454656 0.891735 1.613331 3.249709 -0.002545 0.158325 0.091983 -1.121664 3.580999 -2.561880 1.738970 1.265246 -1.573708 -1.801113 -0.491556 0.061367 -0.954685 2.046966 2.097330 -3.064574 -3.246547 1.755203 -2.042618 -3.215572 3.479894 0.910821 -0.848744 -1.845831 -1.156748 -3.618818 -0.834798 5.229398 2.115088 4.862401 -1.091544 2.895306 -0.434506 1.337682 -0.041500 1.664779 0.141566 4.458701 0.411395 -1.461050 -2.048977 -3.567647 -0.335035 -0.352951 3.691418 -0.159007 -1.024991 1.316625 -6.415320 -3.853923 -0.434117 1.202600 -1.567280 -4.208554 1.057875 2.705847 1.271216 -0.023459 -3.130318 -0.243038 1.024707 -2.362758 -0.157535 0.140918 -1.297850 -1.861713 -0.968267 -4.444381 0.864325 -0.116399 -0.830724 -1.424320 3.282439 -1.522064 0.227978 0.652446 2.441131 -1.217510 2.852794 -0.850272 0.752344 -0.273091 -0.184850 -0.563319 -1.968409 0.955787 2.585921 -3.083874 -2.791397 -1.719112 0.349598 -3.639786 -1.958431 -2.944669 2.999644 3.600316 -3.208849 -2.820498 -1.030599 -1.776912 -5.367633 -0.158138 -2.060229 -2.562364 0.189983 2.708577 1.578118 2.511114 5.254480 -2.103384 2.260093 0.535282 -1.536669 3.452335 -0.221799 2.986475 -2.504912 -1.787205 2.021673 -0.435700 2.029108 -0.785830 -0.273605 0.295649 -4.007584 -2.775368 2.865606 1.361253 2.508231 2.348888 2.832571 4.603043 -4.147184 1.156778 2.802512 -0.602211 -0.855694 1.486352 -2.633458 1.438473 1.389512 0.711803 4.596085 0.304178 -2.920031 0.494654 1.117371 1.668209 -3.872763 0.518474 -1.591661 1.948228 -2.120365 -1.374273 -2.075192 -1.476637 -2.593031 -3.105937 4.106337 -2.736319 -6.365660 4.461835 -0.929387 5.309934 -7.037857 -0.431768 -2.668020 3.947084 -1.459815 0.809737 0.223332 -2.110356 -2.830436 2.731881 0.834334 -0.573140 2.204860 3.224127 2.461161 1.859087 -0.937755 3.045204 0.082237 3.190607 -1.084584 2.354400 -0.574898 -1.541938 0.513558 -0.907939 -1.495900 0.553141 1.063758 1.727368 3.360835 1.880712 3.732728 2.719721 3.482512 -1.618217 1.155241 -0.781216 1.954743 -1.120722 -2.460896 1.151930 2.783466 -0.801122 1.753493 -4.812518 -6.496477 -2.702561 -7.716604 0.065220 -0.937496 1.187757 0.414910 0.122424 -3.604440 -1.157355 4.181774 0.510248 10.329734 1.511655 0.153620 2.207106 3.520949 -3.180535 -1.507217 1.005406 1.734744 -0.398685 -0.371069 -5.032616 3.645296 -2.563915 1.712583 4.849064 -3.879452 1.068503 -2.023879 3.536518 -3.622959 5.045554 1.433390 -3.030674 3.011591 -0.022551 4.038625 1.778430 -2.264435 -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.651153 -1.086419 4.575370 3.071623 -0.649351 0.409345 0.656408 -2.235928 2.357878 0.576542 -0.775354 0.938458 -2.272407 0.670059 -0.051627 1.710980 -3.854766 -1.984026 -0.527744 -2.058210 -1.298062 -1.561777 1.098245 0.527540 2.101258 1.867388 -1.730828 0.029727 -1.964775 -3.405011 1.034036 -1.042668 1.731676 1.268687 0.741537 -5.509402 2.997311 1.871187 -0.945177 -2.204614 1.595551 -1.833657 0.241966 -0.982850 -0.077936 1.341032 0.735614 1.489899 2.533536 0.811741 0.492864 -0.132993 0.254456 2.869885 -1.795389 1.329903 0.787540 -1.398471 -1.186787 0.031081 0.164920 -0.647135 1.494224 1.244966 -1.442292 -2.665323 0.623968 -1.426324 -2.443548 2.308085 0.609734 -1.015649 -1.921970 -1.076956 -1.646393 -0.757196 0.213267 2.080348 3.477457 -1.323648 2.152347 0.107631 0.690708 -0.171582 1.117125 0.099255 2.958984 0.339157 -0.991144 -0.992620 -1.904856 -1.463368 0.303555 1.581908 -0.280053 -1.339938 0.908015 -3.049676 -2.826026 0.268764 1.226944 -1.016845 -2.949753 0.365805 1.694556 1.116601 -0.239310 -2.332610 -0.260710 0.505963 -1.343254 -0.333113 -0.451420 -1.140130 -1.461024 -0.401751 -3.316198 0.652560 -0.088722 -0.614934 -1.185711 2.253501 -0.809721 0.027442 0.361076 1.701404 -0.941174 2.395602 -0.449689 1.346172 0.628055 0.055982 -1.357341 -0.232846 1.167653 1.339947 -1.304167 -1.335556 -1.447932 0.417087 -2.642865 -0.328616 -1.153790 2.737644 3.047892 -1.920179 -2.109115 -0.667815 -1.072854 -3.417590 0.702111 -1.582610 -0.983866 0.157050 1.961576 1.054287 1.910491 3.025552 -2.088441 1.316843 -0.137912 -0.557726 2.554539 0.573276 2.209723 -1.790996 -0.932713 1.159064 0.412118 1.001581 -0.318768 -0.158391 0.541542 -2.762553 -1.491576 1.739490 0.754777 0.906085 1.657097 2.063976 4.358923 -2.292988 0.557982 2.080686 -0.502763 -0.567482 1.094465 -2.158632 1.242496 0.815969 0.571094 3.014082 0.089648 -1.695541 0.383704 0.313325 0.808046 -2.216368 0.327522 -1.270778 0.883707 -1.215235 -0.579518 -1.631441 -1.307402 -1.395548 -1.176624 3.072366 -1.188742 -3.566222 3.200127 -1.788316 2.658718 -4.374803 2.101717 -1.966834 1.475891 -1.646977 -0.101263 -0.118915 -0.728619 -2.039816 1.501580 0.691909 -0.168347 1.343778 2.825064 1.697867 0.868199 -0.566681 2.318263 -0.197112 2.439247 -0.684729 2.245017 -0.711313 -0.137036 -0.044624 -0.562441 -0.878089 0.049150 0.349671 1.648503 1.875065 0.918366 2.134219 1.599952 2.492523 -1.295418 1.725089 -0.439345 1.530732 -0.954664 -1.527796 1.087436 1.423311 -0.617399 1.416667 -3.537808 -3.757629 -1.446617 -4.076150 -0.423421 0.192760 1.148273 0.041955 -0.055693 -2.530049 -1.176129 2.598877 0.217725 4.477738 1.027055 0.161416 1.705607 2.557830 -1.461273 -1.041565 -0.131921 0.700693 -0.041061 -0.645965 -2.849155 2.684129 -2.027094 1.012569 3.272182 -2.278231 0.648809 -1.496338 2.878175 -2.603775 3.235344 0.779638 -1.590102 2.284381 1.208285 2.842865 0.408115 -1.574652 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::iter_swap(int*, int*) = -0.208266 -0.294392 0.858988 0.585873 -0.070385 0.037466 0.352605 -0.335522 0.502913 0.032287 -0.125037 0.087222 -0.619543 0.180527 -0.250851 0.381850 -0.658713 -0.481461 -0.074470 -0.370117 -0.086072 -0.310544 0.484983 -0.033168 0.470793 0.131533 -0.293119 -0.326885 -0.586430 -0.275824 0.451141 -0.292655 0.387949 0.133289 -0.194013 -1.108000 0.473891 0.336433 -0.316888 -0.426794 0.470413 -0.453561 0.164638 -0.346664 -0.104556 0.077476 0.111452 0.175677 0.511403 0.176118 0.192839 0.022528 0.072983 0.851096 -0.610264 0.262945 0.124533 -0.116708 -0.275613 0.034131 0.065789 0.000728 0.313073 0.271330 -0.233004 -0.543983 -0.149040 -0.448591 -0.615332 0.364444 -0.166848 0.147884 -0.446645 0.009855 -0.378164 -0.181558 -0.263504 0.427914 0.735259 -0.450368 0.476840 -0.025076 0.074478 -0.075650 0.043493 0.201377 0.179261 0.077021 -0.102362 -0.220346 -0.326356 0.076082 0.052371 0.137594 -0.019928 -0.551945 0.357867 -0.302130 -0.554566 0.040003 0.242468 -0.137926 -0.320830 0.104463 0.068355 0.398767 -0.350802 -0.545083 -0.061023 0.014592 0.117286 -0.072350 -0.001743 -0.253752 -0.301235 -0.464613 -0.638551 0.040549 -0.171893 -0.313237 -0.195376 0.425950 -0.302802 0.014951 0.102484 0.342585 -0.292536 0.650468 -0.064890 0.307001 0.161165 0.025436 -0.446947 -0.171087 0.388966 0.761091 -0.269464 -0.008568 -0.408315 -0.009377 -0.437959 -0.260308 0.098255 0.291837 0.476326 -0.488358 -0.323136 -0.068382 -0.064476 -0.825151 0.127114 -0.377738 0.066030 0.260689 0.408841 0.267291 0.518412 1.001501 -0.391418 0.239610 -0.041296 -0.303771 0.555766 0.160488 0.469374 -0.279866 -0.316923 0.144277 0.072742 0.186666 -0.015242 0.097283 0.045977 -0.664649 -0.076518 0.136106 0.251129 -0.134165 0.326473 0.332561 0.286409 -0.487333 0.162585 0.477164 -0.102607 -0.007716 0.146531 -0.573118 0.317338 0.151701 -0.196815 0.276439 0.052239 -0.388518 0.198161 -0.221345 0.196037 -0.419797 0.019673 -0.289404 -0.062257 -0.440403 0.000106 -0.162925 -0.374655 -0.136994 -0.132834 0.587559 -0.248679 -0.326508 0.397979 0.047825 0.296370 -0.772439 0.771206 -0.432355 0.481126 -0.246918 -0.018620 -0.007882 0.163562 -0.335632 -0.013479 0.171413 -0.062674 0.301344 0.686781 0.402166 0.073079 -0.029892 0.620474 -0.007116 0.492243 -0.095797 0.425999 -0.131129 -0.308842 0.259713 -0.143828 -0.114884 -0.101147 0.183116 0.723394 0.431855 0.243502 0.585997 0.281459 0.694755 -0.258184 0.299091 -0.104075 0.537339 -0.114356 -0.154285 0.153751 0.362331 -0.163834 0.330322 -0.672076 -0.996547 -0.260591 -0.668887 0.135060 -0.151914 0.112440 -0.109326 0.110867 -0.658208 -0.276609 0.077062 -0.236084 0.701077 0.218600 0.087915 0.358996 0.538734 -0.433730 -0.182516 0.154289 0.342349 0.070842 -0.055839 -0.521034 0.426626 -0.556213 0.039265 0.604535 -0.359732 0.017625 -0.069414 0.533572 -0.424605 0.807087 0.184315 -0.224826 0.769775 0.357320 0.591919 0.312338 -0.261414 -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.648814 -0.716958 2.021136 1.283037 -0.211110 0.277506 0.619267 -0.838631 0.920866 -0.121114 -0.138628 0.465632 -1.132396 0.264217 -0.725204 0.445881 -1.451212 -1.037056 -0.391931 -1.061855 -0.449066 -0.539576 0.483297 0.325870 0.908921 0.054304 -0.827105 -0.518081 -1.578589 -0.582958 0.818465 -0.329879 0.817582 -0.374979 -0.134696 -3.331437 1.031867 1.032670 -0.603131 -1.087786 0.952928 -1.059643 0.172109 -0.604952 -0.612739 -0.026437 0.143725 0.169026 0.885299 0.156011 0.214834 0.463553 -0.053951 2.659575 -1.030776 0.761809 0.579960 -0.272542 -0.613098 0.202544 0.090873 -0.070158 0.660922 0.260319 -0.503307 -1.177242 -0.034704 -0.825188 -1.088099 0.776260 0.006888 -0.307065 -0.571928 -0.210156 -1.431012 -0.578806 0.333725 0.937508 1.474618 -1.143499 1.050539 -0.143655 0.243278 0.215310 0.501538 0.315763 0.867860 0.177430 -0.112928 -0.467888 -1.005631 0.309520 0.064535 0.466878 -0.377644 -1.565579 0.911974 -1.270230 -1.366693 0.273947 0.524934 -0.549608 -1.063288 -0.218266 0.270847 0.708947 -0.755363 -1.126331 -0.566520 0.546093 0.004066 -0.217621 0.158770 -0.574147 -0.342521 -1.021491 -1.438336 0.490279 0.039436 -0.295698 -0.784299 1.249105 -0.749486 0.042303 0.136734 0.834347 -0.762687 1.250585 -0.311170 0.423771 -0.054423 0.005866 -1.128704 -0.682287 0.543398 1.562078 -0.709976 -0.323024 -0.740569 0.195510 -0.855769 -0.207854 -0.088046 0.907434 0.869137 -0.846084 -0.725349 -0.454844 -0.153212 -1.746263 -0.049029 -0.680586 -0.485945 0.718690 0.913379 0.918153 0.842026 1.852299 -0.540641 0.759182 0.006811 -0.761599 1.086905 -0.238804 0.915591 -0.741164 -0.838399 0.321793 0.019515 0.823542 -0.102877 0.274965 0.049340 -1.260745 -0.576295 0.127466 0.684959 0.017557 0.927396 1.124339 1.197052 -1.733125 0.296629 0.740210 -0.655215 0.016549 0.120500 -1.086466 0.234317 0.606596 -0.597579 1.309463 0.058445 -0.946055 0.387822 -0.210731 0.468818 -0.908318 0.161202 -0.691981 -0.182463 -0.815833 -0.425680 -0.656147 -0.585673 -0.878810 -1.069267 1.480413 -1.334392 -1.357920 1.195589 0.106374 0.825592 -2.223741 1.453410 -0.844116 1.318061 -0.507052 0.035504 -0.104954 0.477170 -1.029593 0.622083 0.359625 -0.698120 0.647377 1.730131 0.772685 0.485093 -0.314481 1.318354 -0.239616 1.009852 -0.607429 1.135099 -0.406845 -0.971107 0.259968 -0.310390 -0.202900 -0.113158 0.674414 1.051233 0.837925 0.652252 0.867846 1.214967 1.301933 -0.538715 0.571868 -0.311499 0.909834 -0.341487 -0.468783 0.319570 0.891292 -0.054010 0.494703 -1.649942 -2.017567 -1.260386 -1.815326 0.592672 -0.262850 0.016379 -0.133680 -0.029886 -1.744054 -0.739533 0.444870 -0.458231 1.798728 0.738507 0.352147 0.970498 1.240703 -0.907020 -0.166675 0.467517 0.606066 0.070051 -0.346899 -1.292503 1.126805 -1.092575 0.368689 1.472494 -0.605401 0.544644 0.190450 0.866294 -1.027011 1.840374 0.383507 -0.883314 1.215204 0.994847 1.293920 0.387585 -0.660816 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int std::__bit_width(unsigned long) = -0.059454 -0.557949 0.707526 0.588639 0.051697 0.101903 0.542161 0.022483 0.229243 0.169503 -0.086678 0.333109 -0.649548 0.006743 -0.066857 0.192108 -0.382318 -0.487708 0.007079 0.008157 -0.014548 -0.308015 0.165915 0.345668 0.443435 0.141195 -0.230124 -0.402600 -0.760595 -0.098700 0.088443 -0.087386 0.382233 0.172920 0.105245 -0.667623 0.185362 0.506823 -0.073510 -0.631871 0.288644 -0.229396 0.191749 -0.298526 0.005210 0.187747 0.359438 0.305213 0.164440 0.221388 -0.107543 -0.137462 0.240301 0.588658 -0.053699 0.322349 0.468279 0.009085 0.095878 -0.211555 0.132440 -0.239300 0.184628 0.060912 -0.165855 -0.191839 -0.268548 -0.320416 -0.375945 0.177462 0.122900 0.193008 -0.544119 -0.131366 -0.474629 -0.084395 -0.425775 0.403907 0.681323 -0.542088 0.563831 0.236262 0.263864 -0.004847 0.100557 0.134971 -0.079092 0.138459 -0.122978 0.030290 -0.690904 -0.177384 -0.141877 -0.097473 -0.184921 -0.645964 0.317319 -0.288681 -0.573389 0.200206 -0.012594 -0.183304 -0.047505 0.118953 0.007522 0.499708 -0.310590 -0.437922 -0.218515 0.020769 0.135444 -0.104395 0.197777 0.123257 -0.194759 -0.425575 -0.542118 0.056334 0.151115 -0.385915 0.030236 0.385041 -0.285498 0.478041 0.034973 0.054823 -0.099454 0.532427 0.436234 0.102163 0.223807 -0.240870 -0.406305 -0.145457 0.238958 0.769802 -0.257175 0.091823 -0.095727 0.128476 0.072239 -0.018267 0.235420 0.268868 0.166702 -0.416279 -0.343120 -0.412761 -0.208685 -0.337305 0.167019 -0.171286 0.230595 0.282056 0.306737 0.085392 0.120350 0.770832 -0.281442 0.079186 0.045947 -0.196400 0.075742 0.251883 0.241790 -0.198107 -0.339554 0.232831 0.249861 0.287858 0.053387 0.067633 0.149637 -0.312149 -0.139665 -0.059711 0.145586 -0.256975 0.469076 0.296456 -0.120724 -0.205237 -0.111276 0.142979 -0.051748 -0.009139 0.075698 -0.556658 0.428725 -0.063440 -0.171756 0.255531 -0.011127 -0.258546 0.597312 -0.213452 0.045671 -0.321928 0.123939 -0.337222 -0.189098 -0.467278 0.213644 -0.158500 -0.264413 -0.220588 0.000000 0.621612 0.024819 -0.192385 -0.053661 0.184774 0.194260 -0.597478 0.733771 -0.183321 0.342112 0.040276 -0.146349 0.146078 0.112159 -0.054662 -0.390109 0.205532 -0.173951 0.103998 0.348574 0.160609 -0.193390 0.176526 0.336392 0.048393 0.239492 -0.157333 0.155481 -0.138249 -0.214975 0.129207 -0.081101 0.232767 0.078679 -0.067269 0.551209 0.229783 0.195292 0.422674 0.216063 0.348274 -0.253428 0.006094 0.017905 0.669581 -0.292767 -0.055553 -0.211209 0.286790 -0.067026 0.336796 -0.530938 -0.689640 -0.058280 -0.539047 -0.099508 -0.107398 0.104205 -0.025034 -0.067075 -0.537472 -0.384699 -0.075985 -0.135384 0.131455 0.295192 0.014266 0.506733 0.281952 -0.239197 -0.112479 0.304276 0.271673 -0.016015 -0.073092 -0.226241 0.105488 -0.562311 0.099405 0.537281 -0.255666 0.182593 -0.275817 0.637828 -0.446385 0.817816 0.226611 -0.515041 0.303166 0.515870 0.611780 -0.087264 -0.291026 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int std::__countl_zero(unsigned long) = 0.283614 -1.569874 2.421747 2.046685 0.385295 0.251058 1.677667 -0.205162 1.000420 1.095293 -0.533756 1.124826 -1.802573 0.290096 0.125928 1.064506 -1.346847 -1.518980 0.240892 -0.030313 -0.134465 -1.027515 0.918879 0.658830 1.601979 0.540917 -0.796220 -1.620093 -2.093067 -0.657543 0.552122 -0.517800 1.252662 0.975491 0.134554 -2.011903 0.749993 1.145062 -0.259085 -1.956658 0.982150 -0.600509 0.310904 -0.556633 0.746579 0.680381 1.166933 1.497932 0.852444 1.042529 -0.080613 -0.557310 0.872307 1.714024 -0.482956 0.924489 1.237699 -0.286146 0.187887 -0.357784 0.504112 -0.752117 0.810169 0.730489 -0.366274 -0.868886 -0.579450 -0.963874 -1.459323 0.855455 0.599644 0.636009 -1.739289 -0.212723 -0.413698 0.005164 -1.413542 1.532183 2.345619 -1.247183 1.829580 0.696296 0.937532 -0.597206 0.084703 0.267330 -0.031924 0.452075 -0.612638 -0.680179 -2.501203 -0.979140 -0.420811 -0.163383 -0.253400 -1.196840 0.785143 -0.252210 -1.731795 0.451661 0.188424 -0.410257 -0.361477 0.782437 0.462487 1.477611 -0.467291 -1.384481 -0.703155 -0.201263 -0.171989 -0.491693 0.043923 -0.198664 -1.022376 -0.789154 -1.648054 -0.091152 0.223840 -1.310923 -0.278056 0.947009 -0.804411 1.246526 0.088476 0.425254 -0.070102 1.126932 1.293451 0.640051 1.940842 -0.771138 -1.336553 0.428031 1.003176 2.191794 -0.765640 0.400132 -0.547295 0.397208 -0.126668 -0.028824 0.605770 1.300863 1.011665 -1.512044 -1.412667 -1.070276 0.169925 -0.855627 0.779957 -0.849255 0.819128 0.013917 1.022898 0.125823 0.616223 2.134463 -1.469569 0.751192 0.279539 0.023019 0.462250 1.066387 0.844825 -0.824566 -0.888990 0.464634 1.135178 0.057155 -0.075762 0.071710 0.495136 -1.355904 -0.636691 0.122803 0.275436 -0.676786 1.173864 0.712751 0.961198 -0.946841 -0.308186 0.754268 -0.043452 -0.344875 0.425502 -1.988538 1.610165 -0.329776 0.220038 1.055711 0.070391 -1.075202 1.518220 -0.403210 -0.061377 -0.731102 0.509011 -1.055821 -0.690832 -1.007832 0.488302 -0.463377 -0.874621 -0.380509 0.655354 1.962458 0.702934 -1.007361 0.243430 -0.653545 0.226955 -2.238984 2.757743 -0.824098 -0.074512 -0.339964 -0.639742 0.015912 0.430164 -0.515231 -0.817896 0.688281 -0.244479 0.917624 1.572593 0.554119 -0.311941 0.513077 0.974900 0.254052 0.752888 -0.199090 0.690295 -0.400061 -0.315976 -0.051664 -0.268262 0.708397 0.075234 -0.539778 1.687327 0.869984 0.290752 1.446783 0.535087 1.240112 -0.950046 0.684682 -0.062955 2.088093 -0.770765 -0.321129 -0.354476 0.197493 -0.490364 1.480311 -1.769445 -2.091082 0.546143 -1.892504 -0.524769 -0.351758 0.752816 -0.227716 -0.113200 -1.955883 -1.044247 -0.915157 -0.066429 0.366976 1.001725 -0.010296 1.326716 0.887852 -0.730587 -0.402089 0.192110 0.675241 -0.205972 -0.668873 -0.579539 0.341876 -1.456820 0.502046 1.676916 -0.725666 0.265887 -1.286514 2.016386 -1.391234 2.480510 0.827985 -1.278688 0.989120 0.918308 2.117980 -0.506020 -1.016932 -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.586951 -1.553824 5.490953 3.847919 -0.700417 0.586275 0.821999 -2.772703 2.280985 0.262059 -0.883559 1.567719 -2.847835 0.945483 -1.084305 1.837193 -4.396651 -2.514837 -1.137390 -2.290525 -1.259268 -1.719546 1.610688 1.207500 2.684386 1.934087 -2.467812 -0.138935 -3.185815 -3.886863 1.118197 -0.859700 2.220965 0.821334 0.505540 -6.103719 3.420633 2.898640 -1.103898 -2.808078 2.341547 -2.200054 -0.308596 -1.334491 -0.884680 1.249223 0.373999 1.034202 2.673372 0.863930 0.483636 0.663490 0.493734 3.593158 -1.942232 1.857794 1.355816 -1.105253 -1.191229 -0.153936 0.270099 -0.223661 1.640425 1.275318 -1.412349 -3.196046 0.381786 -1.518301 -2.792112 2.778986 0.154118 -1.140813 -2.116111 -1.121599 -2.775950 -0.547119 2.060931 2.535796 3.998893 -1.802561 2.400236 -0.242823 0.279479 -0.420240 1.068117 0.152203 2.823756 0.632211 -0.484512 -1.505976 -2.353021 -1.088036 0.273686 1.911624 -0.962571 -1.920903 1.714725 -4.507439 -3.565457 0.167030 1.533931 -1.841769 -2.977943 0.372750 1.436328 1.473111 -0.302142 -2.640979 -0.274315 1.090442 -0.706084 -0.687657 -0.520973 -0.883111 -1.437442 -0.602783 -4.024801 1.095326 -0.026449 -0.778191 -1.204552 2.594792 -1.038914 0.156634 0.289260 2.025892 -1.210030 2.741429 -0.738494 1.611518 0.620894 0.383269 -0.807802 -0.696645 1.392971 1.706365 -2.182076 -1.203413 -1.729563 0.573992 -2.621684 -0.386370 -1.544889 2.726925 2.993456 -2.333964 -2.544688 -0.921172 -1.605621 -4.330089 0.248833 -1.862565 -1.574945 0.913202 2.328035 1.182675 2.129590 4.255641 -2.068541 1.256564 0.570390 -1.197265 2.883499 -0.234614 2.289807 -2.066205 -1.963326 1.793508 0.144317 1.512822 -0.533915 0.595678 0.407469 -3.185469 -1.904638 2.019495 1.050519 1.067807 2.244609 2.649644 3.879650 -2.500301 0.764712 2.291351 -1.026482 -0.445430 0.796644 -2.925316 1.211409 0.989039 0.713766 3.972160 0.100292 -1.981021 0.986249 0.133678 1.107424 -2.847367 0.821207 -1.735790 1.039001 -1.922907 -1.262605 -1.196905 -1.438524 -1.828882 -1.893878 3.838286 -2.155728 -4.314467 3.707870 -1.125438 2.961231 -5.561233 2.014833 -2.131742 2.578260 -1.018456 0.091942 0.205901 -1.171274 -2.807222 1.478697 0.937394 -0.633347 1.633439 3.479509 1.820038 0.664972 -0.830186 2.681780 -0.347455 3.173731 -1.305183 2.739944 -0.651971 -1.107437 0.054795 -0.716714 -1.179280 -0.457346 0.589920 2.129866 2.082200 1.574989 2.519322 2.093496 3.464067 -1.590624 2.128460 -0.583580 1.675304 -1.129267 -1.785177 1.258991 1.961570 -0.602279 1.877488 -4.198793 -4.973114 -2.683845 -5.495275 0.158494 -0.887509 1.528346 -0.355752 -0.479437 -3.245735 -2.030262 2.704375 -0.016367 5.830047 1.786791 0.426501 2.082417 2.994817 -1.996790 -0.327214 0.054237 1.470531 0.134201 -0.958275 -3.270730 3.013941 -2.089775 0.986658 4.178655 -2.450288 1.473995 -1.538195 2.547496 -3.022791 4.215695 0.957901 -2.202708 2.864635 1.140174 2.678995 0.679324 -1.993967 -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.121649 -0.937796 2.590534 2.077721 -0.096955 0.179723 0.987700 -1.220839 1.189070 0.580672 -0.489056 0.681962 -1.804663 0.650729 -0.507734 1.376860 -1.940774 -1.349167 -0.368305 -0.771482 -0.289166 -1.014434 1.476806 0.312229 1.613753 0.884537 -1.074462 -0.775341 -1.654140 -1.776396 0.741117 -0.579047 1.232247 0.859799 -0.209646 -2.172039 1.560666 1.371121 -0.604885 -1.445160 1.364356 -0.986586 -0.130831 -0.701608 0.036129 0.698596 0.255785 0.899422 1.424541 0.805105 0.484504 0.105796 0.655638 1.347543 -1.209504 0.919533 0.584151 -0.283093 -0.447689 -0.133054 0.259302 0.044707 0.854182 0.914745 -0.515494 -1.503855 -0.304512 -0.871396 -1.688916 1.345535 -0.185510 0.103895 -1.564265 -0.198528 -0.700685 0.028221 -0.124191 1.349747 2.178564 -0.924876 1.329389 0.004134 -0.001954 -0.780171 0.050841 0.157046 0.597050 0.366234 -0.217029 -0.960153 -1.279012 -0.649219 0.099799 0.562798 -0.372363 -1.005216 0.923771 -1.217757 -1.769425 -0.053283 0.709095 -0.838072 -0.908538 0.672380 0.428783 1.045538 -0.275126 -1.458518 -0.007724 0.141359 0.086240 -0.482627 -0.374594 -0.367247 -1.007082 -0.478581 -1.961111 0.135076 -0.299554 -0.941777 -0.357582 0.940031 -0.492495 0.302683 0.192977 0.842250 -0.407540 1.398502 -0.023174 1.065704 1.184459 0.205906 -0.404119 0.081268 1.118347 1.292800 -0.977724 0.017721 -0.998304 0.210893 -1.085221 -0.311539 -0.234182 1.106631 1.520428 -1.426884 -1.295991 -0.285504 -0.397137 -1.930726 0.493942 -1.097881 0.028765 0.220132 1.166393 0.122985 1.201290 2.545778 -1.422499 0.502241 0.408161 -0.424854 1.377201 0.477100 1.117121 -0.896403 -1.144976 0.861262 0.403098 0.300570 -0.334379 0.500926 0.219161 -1.709324 -0.649813 0.845441 0.321060 -0.129855 1.043934 0.949906 1.326252 -0.695703 0.402668 1.306515 -0.270962 -0.154903 0.436243 -1.919917 1.120984 0.129121 0.464438 1.426560 0.080529 -0.989762 0.894254 -0.339261 0.389126 -1.351766 0.475317 -0.984391 0.174416 -1.217748 -0.184032 -0.061708 -0.978396 -0.328557 0.023551 1.841780 -0.141125 -1.448645 1.318034 -0.575524 0.832750 -2.430196 1.806700 -1.062104 0.573878 -0.424087 -0.153120 0.218512 -0.298174 -1.161895 -0.148568 0.571099 0.026443 0.986598 1.830902 0.848669 -0.149089 -0.081544 1.333947 0.056787 1.505711 -0.440183 1.273790 -0.203414 -0.476016 0.220913 -0.400521 -0.381348 -0.472352 -0.077348 1.852575 1.092447 0.621806 1.591386 0.506114 2.010607 -0.851671 1.296169 -0.174831 1.218965 -0.499089 -0.609659 0.501305 0.623472 -0.604198 1.444401 -1.928839 -2.635453 -0.412172 -2.485561 -0.024010 -0.669930 1.136643 -0.426911 -0.107200 -1.666885 -1.139603 0.524018 -0.187561 2.110696 0.918921 0.166727 0.929301 1.366270 -1.012537 -0.034819 -0.107014 0.995004 0.127427 -0.570786 -1.084015 1.077573 -1.144718 0.290872 1.905339 -1.106375 0.430737 -1.294882 1.652846 -1.393532 2.224014 0.542100 -0.746866 1.830395 0.498960 1.446717 0.392138 -0.939046 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::move_backward(int*, int*, int*) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -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.864893 -1.052414 3.720453 2.396474 -0.541673 0.425508 0.820727 -1.703904 1.786112 0.047585 -0.360963 0.783507 -1.876208 0.525425 -0.730736 1.080870 -2.932602 -1.669057 -0.610850 -1.924946 -1.016425 -1.039156 0.817589 0.462905 1.656704 0.775670 -1.440224 -0.521023 -2.134292 -1.801162 1.254896 -0.696518 1.426973 0.029042 0.159407 -5.696119 2.157105 1.667389 -0.985765 -1.854786 1.513261 -1.711959 0.262175 -0.950394 -0.714204 0.388139 0.366686 0.811055 1.809498 0.431700 0.357484 0.504736 0.067847 3.973457 -1.689261 1.233015 0.847581 -0.814714 -1.110512 0.267772 0.140734 -0.287734 1.190232 0.636229 -0.959740 -2.205427 0.225236 -1.367319 -1.938483 1.596353 0.337307 -0.773014 -1.220661 -0.622837 -2.024383 -0.920123 0.232151 1.730687 2.696494 -1.679198 1.785294 -0.126337 0.452412 0.245459 0.951060 0.356019 2.045717 0.294923 -0.438776 -0.783562 -1.626982 -0.213799 0.267097 0.950823 -0.507250 -2.369978 1.230261 -2.331273 -2.369696 0.419592 1.036071 -0.930725 -2.158413 -0.278661 0.917327 1.050456 -0.918564 -1.947155 -0.724124 0.744925 -0.533382 -0.330180 0.018117 -1.013394 -0.804277 -1.165762 -2.645030 0.804599 0.023796 -0.399668 -1.257930 2.096081 -0.966237 -0.036042 0.250671 1.491845 -1.165685 2.129845 -0.549645 0.900588 0.083910 0.134958 -1.570102 -0.746245 0.971308 2.015124 -1.105464 -0.941860 -1.310676 0.394939 -1.865748 -0.265088 -0.481070 1.955346 2.012812 -1.451975 -1.469813 -0.696119 -0.499071 -2.993751 0.197863 -1.236830 -0.933886 0.786473 1.624754 1.341759 1.548057 2.718474 -1.283496 1.296854 -0.117957 -0.909652 2.055035 -0.001787 1.727066 -1.392754 -1.124841 0.672996 0.125401 1.270587 -0.250846 0.202261 0.251771 -2.216985 -1.115500 0.691257 1.008267 0.312552 1.500326 1.927906 3.058766 -2.658006 0.485821 1.490285 -0.934373 -0.179647 0.538335 -1.803660 0.589458 0.967271 -0.481649 2.471258 0.077062 -1.562003 0.475916 -0.052082 0.732163 -1.645905 0.228232 -1.126576 0.058695 -1.198703 -0.600456 -1.342755 -1.007413 -1.479141 -1.612815 2.600272 -2.006195 -2.635805 2.455869 -0.645545 1.771918 -3.809806 2.349196 -1.555852 1.758649 -1.192328 -0.044398 -0.176789 0.260780 -1.864637 1.316611 0.591813 -0.803225 1.075160 2.840565 1.403666 0.870198 -0.594081 2.201803 -0.376137 1.918078 -0.898890 2.048410 -0.718720 -1.009677 0.178708 -0.495528 -0.567749 -0.121656 0.912874 1.612198 1.441578 1.023638 1.556209 1.852287 2.187925 -1.004940 1.235555 -0.493276 1.369505 -0.685663 -1.020561 0.773938 1.425546 -0.252694 0.993328 -2.957716 -3.306841 -1.921036 -3.174083 0.472658 -0.063464 0.392664 -0.133715 -0.075188 -2.684886 -1.160634 1.490943 -0.402163 3.254631 1.156303 0.429606 1.597931 2.199132 -1.399941 -0.535581 0.419141 0.801137 0.108116 -0.592559 -2.371090 2.186219 -1.811769 0.753863 2.681096 -1.398243 0.809336 -0.320061 1.993259 -1.951244 2.978599 0.615260 -1.459279 1.975362 1.573522 2.348264 0.539045 -1.211131 -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.038354 -0.154074 0.180952 0.216128 0.052038 0.018830 0.095905 -0.045761 0.103732 0.152216 -0.052549 0.041127 -0.242530 0.088437 -0.056172 0.194891 -0.034010 -0.140147 -0.042333 0.008912 0.014684 -0.118990 0.201448 -0.020978 0.147783 0.105380 -0.086986 -0.082409 -0.201693 -0.191688 0.015360 -0.049977 0.122470 0.147409 -0.072306 0.103255 0.085195 0.192012 -0.056137 -0.154425 0.120334 -0.054690 0.044798 -0.032001 0.070502 0.119670 0.013107 -0.090818 0.098274 0.128829 0.177949 -0.046717 0.138055 -0.062990 -0.092383 0.100103 0.057481 0.048748 0.002613 -0.080932 0.052802 0.057282 0.062123 0.101814 -0.028766 -0.095930 -0.173774 -0.067496 -0.183827 0.086220 -0.199326 0.079806 -0.210658 -0.080530 0.038091 0.020599 -0.303712 0.048226 0.213597 -0.101859 0.126150 0.047325 -0.036132 -0.115600 -0.047809 0.028722 -0.126529 0.057507 0.000186 0.018540 0.120760 0.000683 0.000000 0.122702 -0.087437 0.072168 0.163581 0.040234 -0.148420 0.022129 0.031466 -0.013855 -0.003692 0.168251 -0.114877 0.165959 -0.076779 -0.144234 0.047919 -0.037267 0.246930 -0.065066 -0.082329 0.014127 -0.142223 -0.040568 -0.165453 -0.052966 -0.067956 -0.207655 0.034495 0.037787 -0.008693 0.074994 0.006889 0.021742 -0.018127 0.241482 0.082884 0.165749 0.043409 0.049292 -0.144046 0.015569 0.152275 0.113908 -0.129004 0.130588 -0.074431 -0.062994 -0.016965 -0.041235 0.013880 -0.017198 0.248255 -0.134045 -0.111460 -0.012183 -0.104559 -0.221089 0.055629 -0.130138 0.190868 0.044608 0.094314 -0.014376 0.111838 0.466865 -0.166053 -0.089241 0.045580 -0.136220 0.081028 0.146156 0.075062 -0.046326 -0.165047 0.131744 0.109519 -0.048188 0.082110 0.070662 0.004383 -0.135516 0.095331 0.185991 0.003785 -0.119965 0.119998 0.024053 -0.057168 0.144591 0.032969 0.101160 0.039916 0.026469 0.007467 -0.231882 0.157210 -0.054755 0.028800 -0.026065 0.006556 0.010133 0.160922 -0.184483 0.058582 -0.160461 0.128785 -0.113548 0.040027 -0.207280 0.056370 0.103292 -0.100012 0.129183 0.163009 0.148193 0.141314 0.081794 -0.042117 0.147556 -0.046074 -0.046985 0.164170 -0.077269 0.138673 -0.004722 -0.018142 0.062208 -0.005224 0.049558 -0.225189 0.083466 0.072446 0.003423 0.123647 0.041890 -0.182181 0.062118 0.119022 0.030675 0.132914 0.012777 0.085233 0.061632 -0.004669 0.120988 -0.057506 -0.028000 -0.094967 -0.126301 0.287357 0.127694 -0.007609 0.132117 -0.095328 0.219875 -0.079596 0.123313 0.056155 0.213981 -0.070863 0.000816 0.005273 0.114120 -0.085025 0.092128 -0.098171 -0.223864 0.099141 -0.136201 -0.046936 -0.039446 0.105347 -0.058394 -0.013321 -0.009250 -0.165732 0.090432 -0.093527 0.194880 -0.017628 0.026146 0.088086 0.098624 -0.075489 0.006286 -0.049565 0.086887 0.040356 0.019791 0.031996 0.020155 -0.095782 -0.101113 0.096898 -0.091452 0.026671 -0.016562 0.119264 -0.091409 0.225231 0.052981 0.020455 0.302905 0.049937 0.176537 0.018915 -0.067947 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__miter_base(int*) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_wrap(int* const&, int*) = -0.090136 -0.251670 0.665673 0.509658 0.030368 0.003709 0.406774 -0.220953 0.393630 0.224799 -0.085117 0.051449 -0.526169 0.141520 -0.091674 0.418338 -0.389413 -0.362875 -0.024780 -0.260554 -0.019499 -0.227089 0.454230 -0.126570 0.449235 0.018739 -0.174298 -0.425321 -0.459830 -0.245494 0.303470 -0.225265 0.310698 0.148860 -0.197899 -0.634567 0.340936 0.279286 -0.250621 -0.337564 0.396248 -0.287569 0.157239 -0.177316 0.109437 0.119384 0.123878 0.157670 0.411341 0.270522 0.267063 -0.039133 0.171094 0.542531 -0.479266 0.204592 0.074611 -0.078613 -0.182684 0.042665 0.061485 -0.014832 0.228665 0.179459 -0.107183 -0.424211 -0.220957 -0.330541 -0.491794 0.224334 -0.142919 0.123854 -0.429369 0.001636 -0.083077 -0.117905 -0.628931 0.307190 0.553311 -0.351609 0.393308 0.037424 0.013887 -0.147983 -0.043617 0.154007 -0.034152 0.055977 -0.052087 -0.169700 -0.212985 -0.014736 0.040242 0.084683 -0.032071 -0.364753 0.314037 0.103628 -0.423856 0.045942 0.198794 -0.097383 -0.190366 0.186357 -0.055215 0.368510 -0.276164 -0.421905 -0.053280 -0.064633 0.185791 -0.082095 -0.070826 -0.247038 -0.306672 -0.338632 -0.474719 0.010064 -0.169481 -0.302778 -0.189358 0.258555 -0.203777 0.043781 0.082727 0.258205 -0.199669 0.500601 0.038458 0.323210 0.286877 0.011251 -0.517531 -0.019947 0.389141 0.605772 -0.158639 0.137678 -0.352380 -0.029987 -0.284802 -0.104762 0.191893 0.266888 0.454954 -0.412470 -0.253271 -0.019003 0.042675 -0.509921 0.203803 -0.292160 0.251304 0.067860 0.292811 0.122047 0.393683 0.828355 -0.375705 0.130263 -0.028233 -0.211477 0.401908 0.255345 0.359787 -0.205479 -0.222717 0.073626 0.184323 0.031030 0.001289 0.143422 0.075074 -0.523005 0.040653 0.060764 0.099196 -0.275451 0.247786 0.222770 0.258208 -0.242693 0.074452 0.375127 -0.067884 -0.009206 0.143136 -0.496985 0.304870 0.051757 -0.136330 0.141528 0.055647 -0.252559 0.231491 -0.270406 0.090184 -0.272898 0.065583 -0.244234 -0.121551 -0.319621 0.072010 -0.074318 -0.322790 0.023237 0.109857 0.438939 0.099692 -0.104332 0.166440 -0.019879 0.001865 -0.498017 0.860477 -0.327613 0.124048 -0.237316 -0.065795 -0.015801 0.277561 -0.212674 -0.161406 0.135561 0.009106 0.256635 0.584540 0.280899 -0.068298 0.008200 0.471930 -0.014410 0.385079 -0.024315 0.342052 -0.098241 -0.153118 0.185040 -0.090391 -0.068971 -0.119351 0.007251 0.653107 0.287352 0.087608 0.406324 0.096045 0.579572 -0.201829 0.337433 -0.024723 0.499995 -0.085994 -0.081923 0.135821 0.181627 -0.144023 0.312688 -0.487224 -0.669958 0.110557 -0.427497 0.088505 -0.041319 0.144091 -0.118808 0.065925 -0.488332 -0.265606 -0.066094 -0.179108 0.277336 0.137182 0.049564 0.258432 0.356617 -0.267894 -0.103436 0.011339 0.244812 0.099444 -0.125328 -0.209650 0.255859 -0.439878 -0.039791 0.401399 -0.230304 -0.014202 -0.123677 0.477346 -0.328178 0.600661 0.101073 -0.072982 0.662805 0.346434 0.539656 0.107546 -0.171658 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_base(int*) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward::__copy_move_b(int*, int*, int*) = -0.564241 -2.009305 4.351602 2.944994 -0.148244 1.099376 0.796985 -1.235459 0.960141 1.017331 -0.782166 2.060076 -1.992748 0.023091 -0.535952 0.757546 -2.627262 -1.772958 -0.447262 -1.160257 -0.427793 -1.244784 -0.327199 2.178549 1.897583 0.688883 -1.534129 -0.007277 -3.217369 -3.316117 -0.493413 -0.420302 1.545425 -0.647668 1.464377 -3.776693 2.368978 2.808328 -0.272268 -2.862196 1.383163 -1.122066 0.063065 -0.274244 -0.683202 1.469164 1.389922 0.522704 1.318985 1.027944 -0.314087 -0.074728 1.286812 2.629294 -0.160507 1.788839 1.836338 -1.032845 0.328315 -0.429145 -0.053028 -1.239181 0.765159 0.095936 -0.736152 -1.770399 0.126693 -0.221410 -1.239519 1.269410 0.386497 -1.179858 -1.603817 -1.116814 -3.206761 -0.494412 0.775640 1.686876 3.067352 -1.277924 2.505826 0.475915 0.911063 0.525997 1.533197 0.307108 1.537672 0.643195 -0.853812 -0.032072 -2.011072 -0.926683 -0.151629 1.163238 -1.228480 -1.999426 1.195079 -4.080886 -2.710400 1.221773 0.340615 -1.681333 -1.457228 -0.437935 0.910590 1.384876 -0.699342 -2.053169 -0.434303 1.259804 -0.533817 -0.509993 0.596670 -0.661188 -0.485059 -0.171847 -2.471476 1.126736 1.109820 -0.634800 -0.856414 2.491124 -0.290959 1.369792 0.131969 1.401706 -0.766973 1.734376 0.705914 1.117606 -0.643316 -0.425087 -1.588606 -0.484626 0.541635 0.076531 -1.618102 -0.672190 -0.530655 0.893041 -0.508501 0.906930 -0.991000 2.411709 1.660290 -1.314176 -1.577934 -1.640608 -1.715625 -2.062014 0.152994 -0.551343 -1.955493 0.703938 1.611778 0.301343 0.766672 2.040276 -0.805815 0.160947 0.060962 -0.887024 1.236660 -1.008878 1.328811 -1.507880 -1.223214 1.447743 0.965029 1.634171 0.046757 0.055793 0.827014 -1.332790 -0.687303 1.035180 0.934050 0.535373 2.497703 2.301005 2.455496 -0.926195 -0.579555 0.826639 -1.112743 -0.304243 0.230191 -2.012901 0.925788 0.879792 0.214408 3.183076 -0.085720 -1.106049 1.891678 0.026022 0.639752 -1.969964 0.968031 -1.559024 0.435383 -1.006214 -0.947046 -1.504282 -0.934399 -2.218911 -1.668479 3.057490 -1.826364 -2.673124 1.682184 -0.452028 1.802399 -3.744764 1.865533 -1.350538 2.214344 0.238789 -0.011820 0.288362 -0.090530 -1.473743 0.580936 0.808784 -1.235361 1.412636 1.637161 1.058898 0.045929 -0.178024 1.710395 -0.612543 1.406954 -1.271436 1.177811 -0.876685 -0.350113 -0.355046 -0.327770 -0.190265 0.302033 0.211917 -0.034105 0.688843 0.524163 0.871813 2.182314 1.369842 -0.829876 0.830379 -0.812932 1.694046 -1.520795 -1.432268 -0.111535 1.668006 0.525257 1.089242 -3.549384 -2.561265 -2.676812 -3.298028 -0.330328 -0.034148 0.599610 0.431325 -0.495922 -2.746144 -1.851989 2.646421 0.234491 2.217776 1.712889 0.232259 2.049222 1.612904 -0.322648 -0.530634 -0.122181 0.748131 -0.161189 -0.506792 -1.795440 1.748736 -2.245861 1.070925 2.869894 -1.710717 1.396919 -0.503967 1.110486 -2.896488 3.104336 1.062704 -2.338294 1.031535 1.902082 2.082244 -1.135976 -1.510736 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__copy_move::__assign_one(int*, int*) = -0.301295 -0.402129 1.056115 0.726846 -0.038307 0.113911 0.439908 -0.409984 0.576590 0.119210 -0.090282 0.169391 -0.695104 0.167006 -0.259145 0.393294 -0.703706 -0.574513 -0.133129 -0.511640 -0.179795 -0.344309 0.401332 0.027864 0.539276 0.010944 -0.377326 -0.400161 -0.801977 -0.331819 0.467589 -0.251963 0.454634 -0.031933 -0.143136 -1.530105 0.548763 0.495732 -0.345060 -0.576295 0.514673 -0.535966 0.180024 -0.300414 -0.120336 0.070634 0.131644 0.144860 0.543399 0.200804 0.245081 0.106036 0.052812 1.234170 -0.639657 0.384588 0.233679 -0.142410 -0.313249 0.109115 0.071189 -0.037884 0.376680 0.221263 -0.257595 -0.625897 -0.128043 -0.473320 -0.676187 0.404659 -0.069955 -0.034930 -0.451662 -0.081675 -0.521803 -0.286778 -0.312897 0.491490 0.846566 -0.596391 0.603668 -0.002000 0.139068 0.005480 0.181492 0.187160 0.325848 0.087119 -0.117160 -0.230072 -0.470728 0.081619 0.035697 0.211351 -0.130994 -0.709539 0.468071 -0.344933 -0.714338 0.143476 0.272448 -0.195239 -0.521335 0.031454 0.094277 0.452347 -0.426701 -0.654601 -0.251106 0.151853 0.083030 -0.121642 0.024230 -0.360910 -0.300694 -0.559413 -0.762360 0.134468 -0.071271 -0.297064 -0.397218 0.597971 -0.400076 0.046443 0.095114 0.414857 -0.369971 0.724998 -0.071131 0.333074 0.147115 -0.026652 -0.766918 -0.239722 0.396452 0.899932 -0.301841 -0.027516 -0.441787 0.046472 -0.469636 -0.122409 0.089038 0.467961 0.582224 -0.513136 -0.394112 -0.174225 -0.000885 -0.892182 0.121786 -0.414622 0.005061 0.269730 0.491629 0.411889 0.514536 1.113772 -0.423001 0.360348 -0.047984 -0.363554 0.599000 0.090369 0.525112 -0.372764 -0.409068 0.144048 0.139174 0.280002 -0.005492 0.123123 0.055340 -0.728589 -0.181571 0.078238 0.290404 -0.149186 0.462794 0.498886 0.594712 -0.774645 0.157972 0.464421 -0.234522 0.009269 0.114221 -0.658783 0.270211 0.235539 -0.294221 0.509710 0.040246 -0.479959 0.243429 -0.225717 0.222261 -0.467910 0.083070 -0.381302 -0.135122 -0.465978 -0.085698 -0.294020 -0.393279 -0.274194 -0.274355 0.759846 -0.365798 -0.530797 0.516801 0.005945 0.292264 -1.041038 0.998413 -0.480006 0.520479 -0.350139 -0.031188 -0.066902 0.360707 -0.435708 0.125776 0.210717 -0.238116 0.365342 0.933457 0.422391 0.147776 -0.079130 0.722724 -0.071683 0.526426 -0.213937 0.591074 -0.195336 -0.389221 0.199130 -0.174897 -0.066485 -0.085255 0.222202 0.728996 0.486528 0.243133 0.526598 0.480168 0.738939 -0.300439 0.375092 -0.111636 0.609069 -0.174336 -0.189288 0.165489 0.392985 -0.113915 0.329796 -0.839401 -1.055766 -0.336830 -0.842334 0.222924 -0.064298 0.064905 -0.088710 0.047483 -0.875550 -0.382587 0.120557 -0.269201 0.765533 0.301520 0.157003 0.490719 0.649109 -0.461975 -0.155073 0.164766 0.303153 0.047371 -0.180843 -0.560735 0.536447 -0.640076 0.126088 0.708666 -0.332218 0.155414 0.015310 0.589992 -0.534847 0.978550 0.209137 -0.325354 0.790795 0.550327 0.802371 0.185403 -0.327406 -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.514510 -0.593710 1.379185 0.932007 0.112956 0.193625 0.548046 -0.480907 0.517594 0.463916 -0.152514 0.486073 -0.747934 0.040859 -0.321335 0.495895 -0.649728 -0.718861 -0.171682 -0.609680 -0.120354 -0.332584 0.344027 0.241491 0.750926 -0.457970 -0.542298 -0.486618 -1.172907 -0.913864 0.084675 -0.223770 0.564840 -0.668173 -0.145735 -1.679827 0.720818 0.842360 -0.359594 -0.807441 0.723090 -0.533923 0.111937 -0.070415 -0.360900 0.139703 0.270057 -0.326576 0.557001 0.418406 0.446011 0.225369 0.318526 1.522292 -0.510370 0.604788 0.455319 -0.237406 -0.318455 0.148699 0.090880 -0.196648 0.440626 0.084525 -0.156270 -0.734719 -0.181992 -0.266584 -0.713700 0.374188 -0.293654 -0.391749 -0.389262 -0.163724 -0.876722 -0.359410 0.251291 0.482888 0.962006 -0.684242 0.829150 0.002387 0.081896 0.039504 0.231953 0.182824 0.279753 0.151657 -0.067583 -0.345757 -0.286929 0.081175 -0.012737 0.597404 -0.302878 -0.553748 0.738437 -0.681763 -0.983698 0.317990 0.315119 -0.421096 -0.765721 -0.077982 0.035645 0.618882 -0.434568 -0.778174 -0.416161 0.337440 0.171751 -0.247781 -0.062796 -0.543130 -0.292995 -0.319193 -0.913907 0.285951 0.086787 -0.353998 -0.708734 0.739087 -0.420998 0.236259 0.079413 0.645518 -0.399143 0.715189 -0.055351 0.562178 0.052872 -0.033030 -1.174413 -0.419328 0.378742 0.553567 -0.490185 0.133516 -0.461006 0.109006 -0.359348 0.237741 -0.067067 0.816283 0.733287 -0.493916 -0.519261 -0.306546 -0.171692 -0.998877 0.085471 -0.441998 -0.215310 0.449721 0.565658 0.288234 0.452479 1.397555 -0.320412 0.322779 0.089237 -0.616596 0.644266 -0.516219 0.590251 -0.521664 -0.570863 0.279808 0.408824 0.409136 -0.008003 0.302720 0.135856 -0.792314 -0.287850 0.100108 0.302063 -0.074081 0.628108 0.682933 1.006444 -0.807429 0.043416 0.406673 -0.382303 0.015062 -0.042194 -0.858444 0.146735 0.327128 -0.210200 0.883157 0.103435 -0.571494 0.418191 -0.319378 0.241833 -0.600900 0.386294 -0.553736 0.002301 -0.344129 -0.604559 -0.344949 -0.413309 -0.441430 -0.434966 1.001603 -0.529556 -0.830951 0.593086 0.066113 0.242090 -1.482713 1.367658 -0.565270 0.826563 -0.315261 -0.007643 -0.089973 0.554387 -0.532827 0.214642 0.268471 -0.431020 0.587168 1.152325 0.423836 0.169482 -0.180702 0.799841 -0.187730 0.673718 -0.312365 0.710678 -0.254411 -0.558862 0.026086 -0.165999 -0.079893 -0.064560 0.189076 0.436937 0.435304 0.028133 0.389659 0.793169 0.896235 -0.380215 0.628338 -0.170476 0.851566 -0.268253 -0.344318 0.178497 0.518772 0.051444 0.385471 -1.115344 -1.047061 -0.700822 -1.192059 0.295652 -0.044807 0.143962 -0.171223 -0.064522 -1.125674 -0.617288 0.364952 -0.207704 0.846381 0.503513 0.280432 0.665189 0.657064 -0.278507 -0.068728 -0.133172 0.277297 0.043941 -0.429601 -0.425637 0.515968 -0.791015 0.202850 0.754164 -0.273452 0.354273 0.302542 0.037477 -0.759035 1.109682 0.246360 -0.415258 0.918600 0.681263 0.753588 -0.324742 -0.453878 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -1.320475 -4.366154 8.470483 5.465846 -0.823858 1.404498 3.212721 -1.187967 0.863119 2.251648 -1.935437 3.129708 -4.677128 -0.948059 0.254209 0.940012 -5.661685 -4.025994 -0.230905 -1.423756 -2.300720 -2.678808 -0.245268 5.072999 4.150674 3.017688 -2.788017 -1.465614 -4.792178 -4.682862 -0.551099 -0.597883 3.297834 3.813732 2.932754 -7.559666 3.617943 3.869037 -0.259335 -3.508553 2.407106 -1.241741 -0.030236 -0.796528 -1.379880 2.330249 3.936244 2.972872 2.318598 1.880838 0.088497 -3.138206 3.102681 6.189117 1.174071 3.521667 4.535492 -2.044917 1.761763 -0.826529 0.375054 -4.167161 1.463316 1.148563 -1.447885 -1.399542 0.928530 -2.858597 -2.014424 3.396427 1.733150 -1.975453 -3.421555 -2.965346 -3.717201 -1.097028 -1.621208 4.330464 6.306531 -4.436042 5.792301 2.685809 3.186131 -0.250772 1.424119 0.135770 3.120687 0.867470 -2.001571 -0.733584 -5.372202 -3.111185 -1.367665 1.540641 -2.084534 -1.925218 2.560456 -6.583073 -6.485855 2.384724 -0.014583 -2.873954 -1.732245 1.531992 1.854877 1.198826 -0.458462 -3.945094 -2.337527 1.587897 -3.190134 0.245159 -0.682580 0.721795 -1.314530 0.717091 -5.919160 2.402780 1.563060 -2.385632 -1.017089 4.766120 -0.228804 4.458417 1.207734 1.930613 -0.399741 4.131177 3.697949 0.752801 0.941119 -1.445013 -3.359927 0.522168 2.141155 1.108293 -3.196664 -1.739012 0.523127 1.768541 -1.003381 1.617858 -0.979883 6.388952 2.109656 -3.874180 -5.191242 -4.044638 -4.049100 -4.539716 1.172507 -2.205465 -2.434500 1.995038 2.659805 2.318330 0.376586 4.052654 -2.524004 2.489126 0.402134 -0.970084 -0.097686 -0.110876 2.942486 -3.625208 -2.188134 2.287938 2.313511 2.457415 -0.253941 -1.174987 1.428707 -3.598436 -3.392587 2.137517 0.468999 0.858054 3.859395 4.449228 7.541595 -3.541760 -0.813717 1.678870 -0.847746 -2.107184 2.145949 -4.514474 3.281493 0.111515 -0.253560 5.480243 0.456971 -1.920778 3.679438 -0.657406 0.402790 -4.145043 2.053669 -2.319273 0.323530 -2.163185 -0.651953 -3.328813 -1.868188 -2.692342 -2.145114 6.265113 -3.982597 -4.516373 3.109928 -0.516670 3.314593 -6.556127 6.529268 -2.290631 3.202713 -0.722362 -3.152721 -0.317418 -0.599531 -0.358172 1.151136 0.519503 -1.704496 2.031907 3.948215 1.552523 1.813084 1.111779 3.288214 -0.259902 2.747294 -1.336020 1.534046 -1.027391 -1.920695 -1.441478 -0.654687 0.183986 1.923325 -0.760314 2.064053 3.226564 0.502528 2.442778 3.259493 2.451823 -2.248302 -0.141396 -0.720063 5.120376 -4.081085 -3.397805 -0.445477 1.689179 -0.394296 1.765643 -7.046564 -5.525814 -4.017603 -5.685758 -3.351699 -0.783261 2.578289 0.754304 -1.088818 -4.901485 -3.359391 3.714884 0.563852 2.308547 3.297924 0.380791 5.605860 3.895130 -0.032213 -2.063417 1.157736 2.217025 -0.753458 0.150078 -4.687699 2.617507 -4.243249 3.295760 5.405837 -3.018190 2.768778 -1.557860 3.821179 -6.467035 6.456609 1.986308 -6.011129 1.662327 3.647478 2.615024 -2.284166 -3.438911 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::queue >, void>() = 0.044817 -0.256273 0.939189 0.605167 -0.290102 0.000000 0.036052 -0.336670 0.497510 -0.265564 -0.280262 0.135067 -0.411291 0.236487 -0.294118 0.361396 -0.953241 -0.420854 -0.061527 -0.298740 -0.176242 -0.247489 0.348718 0.019262 0.386888 0.569793 -0.305879 -0.018477 -0.269339 -0.225279 0.482487 -0.330520 0.282383 0.390065 0.062641 -1.067431 0.527474 0.174429 -0.289238 -0.465669 0.294046 -0.367769 0.089288 -0.576796 -0.177444 0.118600 0.144923 0.501509 0.411184 0.143432 -0.159295 -0.006637 0.073870 0.822925 -0.401009 0.188853 0.259341 -0.121817 -0.147209 -0.070831 0.155883 -0.001992 0.174566 0.309818 -0.147031 -0.553287 -0.164233 -0.547175 -0.387048 0.441709 -0.077177 0.224654 -0.489306 -0.107310 -0.483510 -0.097275 -0.608829 0.633499 0.772006 -0.562976 0.339794 0.043720 0.261898 0.059842 0.056555 0.216305 0.342629 0.196050 -0.142759 -0.039596 -0.285416 -0.129466 0.159327 -0.281750 -0.037928 -0.834074 0.257370 -0.792523 -0.454861 0.105812 0.298202 -0.081805 -0.005939 0.001262 0.212103 0.293294 -0.302213 -0.366436 0.164430 -0.082614 0.053426 0.002554 0.093495 0.052823 -0.163610 -0.269567 -0.722255 0.094161 -0.097369 -0.189623 0.208234 0.401611 -0.122703 -0.063081 -0.005365 0.175502 -0.266441 0.783034 0.000649 0.242553 -0.073557 0.190186 -0.065099 0.190002 0.398497 0.462850 -0.277102 -0.082294 -0.254230 0.067860 -0.472757 -0.404143 -0.092234 0.154519 0.266015 -0.432051 -0.473343 -0.240672 -0.404568 -0.826366 0.086890 -0.377483 -0.189573 0.442151 0.416787 0.480086 0.538896 0.655819 -0.443976 0.132668 -0.157701 -0.071002 0.456903 0.240603 0.405920 -0.237611 -0.188667 0.248679 -0.076732 0.208406 0.109750 -0.158264 0.141204 -0.619520 -0.009570 0.403510 0.422798 -0.033219 0.309855 0.310140 -0.090692 -0.315160 0.059722 0.476960 -0.039137 -0.116982 0.222203 -0.470093 0.401405 0.090881 0.085555 0.178153 0.035535 -0.209863 0.114589 -0.113055 0.176733 -0.295240 -0.188729 -0.183464 -0.065023 -0.404510 0.376180 -0.258291 -0.220487 -0.183332 -0.307621 0.584737 -0.633455 -0.207596 0.508167 -0.041191 0.552489 -0.503818 0.372336 -0.405907 0.706881 -0.003468 -0.018959 0.045895 -0.354322 -0.369831 0.012767 0.201936 0.060461 0.009328 0.381378 0.418674 0.059104 0.037365 0.573100 -0.115528 0.530484 -0.033186 0.287634 -0.169313 -0.222935 0.228107 -0.106385 -0.197309 -0.134915 0.298251 0.707512 0.247227 0.516831 0.683552 0.165711 0.584265 -0.354050 0.116885 -0.160602 0.388848 -0.249266 -0.197944 0.121792 0.417870 -0.225971 0.188909 -0.636550 -1.000804 -0.846194 -0.409751 -0.109533 -0.341756 0.087690 -0.175317 0.057755 -0.395976 -0.258599 0.332200 -0.199562 0.497812 0.270161 -0.004696 0.386906 0.537739 -0.442420 -0.273507 0.244150 0.327312 0.103678 0.190116 -0.796192 0.537259 -0.502807 -0.051514 0.813376 -0.472984 0.008194 -0.024349 0.623608 -0.351183 0.722527 0.235293 -0.453257 0.474203 0.422104 0.424817 0.537692 -0.338715 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::empty() const = -0.061833 -0.261137 0.681481 0.506468 -0.197877 0.041514 0.110987 -0.199577 0.249791 -0.053909 -0.145438 0.135643 -0.374759 0.111598 -0.040834 0.241812 -0.571990 -0.258945 -0.089766 -0.220447 -0.112649 -0.157849 0.178205 0.108802 0.320812 0.388933 -0.195535 -0.103937 -0.263970 -0.202203 0.215582 -0.130490 0.281267 0.347821 0.077706 -0.817790 0.315687 0.287500 -0.170343 -0.392165 0.255639 -0.251002 0.100135 -0.277683 -0.141123 0.140705 0.107343 0.192035 0.247841 0.132737 -0.051067 -0.031060 0.170845 0.534000 -0.162609 0.188458 0.237632 -0.124248 -0.104923 -0.103507 0.079017 -0.044813 0.151315 0.094106 -0.107253 -0.383423 -0.156110 -0.347442 -0.308860 0.237558 -0.052863 0.004282 -0.353416 -0.220373 -0.278654 -0.115607 -0.497883 0.432045 0.492875 -0.438637 0.304420 0.040936 0.054645 0.018525 0.092012 0.127382 0.161090 0.111380 -0.019330 0.047906 -0.110229 -0.180041 0.117402 -0.050978 -0.145497 -0.471912 0.253860 -0.376354 -0.380072 0.124664 0.185425 -0.147303 -0.115731 -0.002709 0.011383 0.286302 -0.213492 -0.278041 0.016308 0.033044 0.126283 -0.047143 -0.066560 0.091447 -0.170763 -0.222459 -0.512984 0.164838 -0.006585 -0.130392 0.070812 0.315273 -0.079802 0.045014 0.010431 0.142663 -0.194402 0.631897 0.041533 0.162674 -0.008686 0.073140 -0.134305 0.042811 0.262985 0.370429 -0.223727 -0.093892 -0.155810 0.037322 -0.234712 -0.134923 0.032139 0.233725 0.360050 -0.257923 -0.304158 -0.201479 -0.323548 -0.580744 0.047684 -0.239729 0.034761 0.378337 0.272875 0.280253 0.274668 0.560508 -0.309796 0.034448 -0.060683 -0.178965 0.275187 0.271474 0.271319 -0.207986 -0.178549 0.190929 0.006981 0.203317 0.078059 0.035269 0.089904 -0.362111 -0.038421 0.300927 0.238471 -0.041196 0.295070 0.316842 0.194958 -0.130349 0.002045 0.241068 -0.116856 -0.062593 0.139117 -0.351525 0.229143 0.067752 -0.067581 0.234330 -0.000542 -0.098246 0.165257 -0.144821 0.093055 -0.260308 0.030735 -0.188062 0.004029 -0.319087 0.108389 -0.164017 -0.199181 -0.150877 -0.152120 0.479024 -0.330868 -0.150268 0.262937 -0.003554 0.282337 -0.419105 0.461195 -0.257181 0.431613 -0.102492 -0.110079 0.046191 -0.166065 -0.209442 -0.025871 0.134464 -0.001793 -0.047199 0.364911 0.246113 -0.077694 0.001015 0.391170 -0.070124 0.400019 -0.090666 0.271200 -0.099068 -0.055451 0.124703 -0.068964 -0.120357 -0.065629 0.086619 0.524340 0.178571 0.289242 0.335013 0.147761 0.397266 -0.214515 0.150563 -0.061173 0.353526 -0.193487 -0.162134 0.078223 0.368203 -0.059488 0.110661 -0.473668 -0.631800 -0.423711 -0.326702 -0.074260 -0.074914 0.116087 -0.068371 -0.036233 -0.292753 -0.281974 0.252373 -0.145181 0.385613 0.144039 0.027795 0.336078 0.349953 -0.209305 -0.129146 0.137401 0.219841 0.089697 0.088664 -0.428200 0.341913 -0.347822 -0.028871 0.542160 -0.276291 0.140871 -0.021696 0.491888 -0.322759 0.536226 0.105868 -0.337022 0.379455 0.400470 0.264553 0.170521 -0.229746 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::front() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::pop() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::~queue() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__dfs(int (*) [6], int, bool*) = -1.102762 -2.346092 4.120618 2.989427 0.024298 1.012551 1.053031 -0.964559 0.779455 1.698553 -1.050767 2.171222 -2.231798 -0.095773 -0.020679 0.765294 -2.452752 -2.039489 -0.191755 -1.009390 -1.171591 -1.325092 -0.588922 2.386692 1.941622 0.628544 -1.581387 -0.250326 -3.188174 -2.979260 -0.946146 -0.364239 1.643458 0.416025 1.418284 -3.881263 1.809958 2.624381 -0.160513 -2.411047 1.066719 -1.252401 0.023342 -0.033033 -0.535555 1.134749 1.730615 0.415007 1.214830 0.806667 0.632723 -0.851599 1.304289 3.262122 0.247164 2.080765 2.173299 -1.236450 0.296183 -0.380841 0.325856 -1.794045 1.250057 0.576085 -0.980448 -1.370811 0.343976 -0.599475 -1.128345 1.443024 0.926507 -1.327131 -1.461540 -1.585432 -2.048508 -0.927963 0.479318 1.507854 3.420976 -1.568769 3.029723 1.178022 1.396217 0.053104 1.744225 -0.067505 2.454251 0.497745 -1.235503 -0.149194 -1.766095 -0.985688 -0.341174 2.486747 -1.105953 -0.337439 1.242747 -3.383295 -3.394032 1.313280 0.143703 -1.276930 -1.705299 0.473753 1.052103 0.876450 -0.414014 -2.293985 -1.184652 0.857489 -1.300993 -0.697520 -0.417363 -0.532241 -0.691723 0.487437 -2.827903 0.747197 1.068681 -1.181912 -1.301071 2.491549 -0.153685 1.933725 0.197807 1.184439 -0.143120 1.652879 1.063479 0.857942 -0.092692 -0.755673 -2.483516 -0.352747 0.676893 -0.001593 -1.834488 -0.772559 0.105164 0.820881 -0.490260 1.268604 -0.903164 3.718384 1.838847 -1.484893 -2.190662 -2.003392 -1.536597 -2.126126 0.371977 -1.142957 -1.627491 -0.007460 1.673806 0.603203 0.331310 2.406309 -0.749152 1.355807 0.398569 -0.692143 0.948254 -1.001592 1.558923 -1.955226 -1.281830 1.403300 1.603259 1.230317 0.082718 -0.225035 0.600815 -1.694247 -1.642356 1.301417 0.414618 0.681894 2.609148 2.097010 5.188122 -1.906239 0.081350 0.607510 -0.453793 -0.554820 0.461353 -2.275491 1.103803 0.459821 0.084524 3.363129 0.192444 -1.408814 1.352302 -0.006912 0.539215 -2.287647 1.617206 -1.398158 0.704331 -0.886015 -0.780151 -1.608623 -0.956762 -1.598707 -0.887261 3.379957 -2.090656 -3.036375 1.764120 -0.237410 1.820430 -4.122399 2.870207 -1.456473 2.151278 -1.043839 -1.118685 0.057190 0.269045 -0.808115 1.378984 0.873941 -1.153754 1.217723 1.858026 0.853180 0.974979 0.165027 1.594913 -0.158093 1.192095 -0.870653 1.464360 -0.085980 -0.578194 -0.997134 -0.572321 0.172690 1.044639 -0.206918 0.123971 1.653009 -0.183468 0.648288 2.134936 1.156397 -1.213745 0.753248 -0.473834 2.433922 -1.802844 -1.601275 -0.254118 1.034955 0.199324 1.009286 -3.600450 -2.316837 -1.721943 -3.078503 -1.131690 0.668773 1.051742 0.728527 -0.443054 -2.682188 -1.701607 2.679996 0.191186 2.646670 1.414236 0.611418 2.423543 1.606586 0.321988 -0.984651 -0.504176 0.570364 -0.494050 -0.468956 -1.727413 1.427386 -2.222459 1.845935 2.433510 -1.412902 1.368025 -0.052151 1.430326 -2.973368 3.207134 1.152005 -2.712223 1.092559 2.019845 2.181753 -1.859404 -1.832156 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__minCut(int (*) [6], int, int) = -3.793839 -10.094546 16.450940 11.773344 -1.008177 4.065222 4.044005 -2.314073 1.259619 5.695468 -5.084696 9.693997 -8.205098 -1.352979 1.221586 1.716175 -10.677645 -7.783880 0.135549 -2.648744 -4.725311 -4.581662 -4.918500 11.609711 7.312713 4.295500 -5.586577 -0.135763 -11.700256 -11.200939 -5.303678 -0.919157 6.367084 3.567766 7.864557 -15.920551 6.472651 10.399208 0.323576 -10.202025 3.222684 -4.481024 -0.328438 -0.754724 -2.803050 5.124983 8.585020 4.029326 3.103604 3.001303 -0.288981 -4.828040 5.568686 12.541394 4.166857 8.223013 10.690632 -5.411925 2.425137 -2.717553 1.537887 -9.131763 4.280340 1.470906 -3.976102 -4.239877 1.695501 -2.793448 -2.604219 4.841076 6.104655 -5.503905 -5.690279 -7.228844 -8.568082 -3.560199 1.159183 6.606176 13.421810 -6.922123 12.706248 5.695949 6.905467 0.968678 7.687871 -0.260355 10.230596 2.275422 -5.256242 0.714680 -8.297440 -6.265510 -1.330613 8.539015 -4.739307 -2.341317 4.173601 -14.743486 -13.366105 5.991136 -0.357465 -5.700149 -5.136369 1.584230 4.714664 3.413046 -1.268434 -8.110051 -4.751463 3.276266 -6.978547 -2.459087 -1.250427 0.783753 -2.075515 2.496001 -11.472807 3.942229 6.149911 -4.069636 -3.085473 9.995576 0.251513 9.284243 0.469153 3.258371 0.187772 7.009712 6.049654 1.508569 -0.871393 -3.989688 -8.308192 -0.328188 2.238913 -0.910174 -7.390840 -4.343416 2.795885 4.349308 -0.341971 5.344503 -3.632316 15.912418 5.814385 -5.381507 -9.252700 -10.220250 -7.885631 -6.648139 1.389721 -3.975518 -7.211017 1.162785 6.422979 2.208542 -0.350281 7.269139 -2.589789 5.582365 1.224798 -1.623402 1.754064 -3.328046 5.661542 -7.822993 -4.075723 6.194067 6.283638 6.096752 0.426794 -1.872302 3.352515 -5.664736 -7.719187 5.752460 1.831178 3.365165 10.880270 8.716815 20.478133 -6.360834 -1.039892 0.908506 -1.830206 -3.123900 2.642196 -8.212827 4.588463 1.338712 0.584523 13.814771 0.752947 -5.102910 5.770718 0.899086 1.093811 -8.641382 6.290192 -5.017093 3.108582 -2.808876 -1.695255 -7.374615 -3.380441 -7.597866 -4.229016 13.816841 -9.542359 -12.419613 5.702363 -1.606260 8.712467 -16.066232 10.672053 -5.255275 8.712771 -3.257570 -5.620284 0.927158 -1.104432 -2.452781 5.709386 3.407933 -4.420759 3.266220 5.343045 3.025587 3.653051 1.528458 5.426068 -0.838632 3.825412 -3.471310 4.141785 -0.704048 -1.323794 -4.911594 -1.826920 1.210681 5.790912 -0.859743 -0.297540 5.388737 -0.071123 2.324956 8.579802 2.482485 -4.924368 0.900157 -2.024182 10.148959 -8.139932 -6.929373 -2.578880 4.353088 1.693022 3.274454 -14.439212 -8.303295 -8.492582 -11.481696 -6.374218 3.152113 4.711335 3.644405 -2.083878 -10.158207 -6.586125 11.930599 1.478465 9.324682 6.285533 1.951468 10.484269 5.196975 2.590983 -4.861873 -0.888501 2.679868 -2.352199 -0.538223 -7.460311 5.067218 -9.329854 8.192741 10.303622 -5.809204 5.955758 -1.280346 7.624124 -12.220202 12.312201 4.775064 -13.627066 1.296909 9.363186 6.956100 -8.427605 -7.684484 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 0.301181 -0.308279 1.021312 0.718243 -0.278111 -0.105304 0.152422 -0.236063 0.397623 -0.279734 -0.346040 0.243688 -0.426041 0.320647 -0.322753 0.507447 -0.993390 -0.448202 -0.022038 -0.143110 -0.089433 -0.165929 0.551983 -0.023078 0.546207 0.716814 -0.327155 -0.247051 -0.244490 -0.172254 0.513914 -0.359315 0.343156 0.590105 -0.013321 -0.845379 0.480443 0.153062 -0.295040 -0.514413 0.390754 -0.237981 0.008406 -0.689721 -0.094430 0.153576 0.210879 0.680089 0.363921 0.312208 -0.268328 -0.014761 0.242077 0.669111 -0.325978 0.132021 0.355896 -0.074362 -0.058391 -0.215818 0.244048 0.002642 0.109102 0.311342 0.010039 -0.594353 -0.351888 -0.646467 -0.367742 0.402502 -0.050013 0.463550 -0.611167 -0.032930 -0.313527 0.061172 -0.791317 0.731684 0.796683 -0.608660 0.322618 0.057592 0.219921 -0.090888 -0.186593 0.288330 -0.020902 0.289769 -0.022071 -0.111522 -0.360679 -0.225796 0.161878 -0.451784 -0.056279 -0.954176 0.331482 -0.590412 -0.392603 0.067934 0.357702 -0.130824 0.293067 0.107506 0.086907 0.423222 -0.284585 -0.249458 0.255888 -0.278792 0.219327 -0.026112 0.047190 0.226102 -0.240881 -0.238375 -0.758496 0.108120 -0.156083 -0.261826 0.427703 0.217247 -0.065127 -0.011631 -0.060211 0.126487 -0.244130 0.803707 0.175976 0.278787 0.176653 0.236291 0.159698 0.346317 0.572873 0.611107 -0.345879 0.003382 -0.309161 0.081660 -0.341852 -0.493370 0.053829 0.073223 0.237157 -0.536317 -0.593643 -0.290956 -0.408408 -0.718136 0.128827 -0.412291 0.000198 0.503801 0.389844 0.324692 0.568413 0.743305 -0.537277 0.086087 -0.082644 -0.006222 0.376320 0.410369 0.349310 -0.187606 -0.193020 0.293617 -0.057012 0.136375 0.098078 -0.075591 0.238496 -0.659321 0.048300 0.438390 0.402551 -0.225631 0.243376 0.223352 -0.405715 -0.025313 -0.079619 0.519073 -0.017492 -0.195746 0.318067 -0.560237 0.534961 -0.068511 0.180730 0.070239 0.081206 -0.195973 0.305599 -0.193121 0.053496 -0.183245 -0.158816 -0.165574 -0.140280 -0.445968 0.547503 -0.119942 -0.193806 -0.067755 -0.132657 0.605218 -0.478774 -0.034584 0.280942 -0.036895 0.396076 -0.428268 0.498956 -0.383074 0.547482 0.164228 -0.089462 0.131241 -0.508083 -0.415973 -0.250214 0.230297 0.196746 -0.061863 0.352729 0.406180 -0.178426 0.084072 0.539274 -0.102758 0.641266 0.066480 0.192200 -0.177225 -0.239614 0.224742 -0.039272 -0.239008 -0.266585 0.205361 0.893068 0.093752 0.632281 0.817578 -0.044039 0.733415 -0.435677 0.138234 -0.126401 0.526030 -0.257161 -0.172920 0.110094 0.411713 -0.301850 0.343297 -0.574636 -1.084232 -0.739301 -0.403638 -0.172249 -0.485238 0.227389 -0.348886 -0.007598 -0.333350 -0.337666 0.083195 -0.180514 0.304560 0.396019 -0.096197 0.372218 0.411052 -0.498409 -0.218816 0.241612 0.491489 0.229965 0.201462 -0.728623 0.418527 -0.490376 -0.225305 0.924619 -0.492085 -0.010067 -0.234545 0.798017 -0.305067 0.802497 0.222312 -0.528913 0.482875 0.376914 0.360005 0.575105 -0.350305 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::~deque() = 0.211362 -0.538844 2.551283 1.152947 -0.911126 -0.010824 1.112920 -1.130486 1.417721 -0.873387 -0.885340 -0.448692 -1.731207 0.151912 -1.422947 0.175872 -2.689512 -1.173207 -0.353598 -1.040878 -0.146104 -1.126996 1.445597 0.193172 1.324159 1.216133 -0.364672 -0.478396 -1.190083 -0.136648 1.793513 -0.669929 0.593220 1.099389 -0.053146 -2.356950 1.337741 0.653533 -0.726245 -0.959270 1.171926 -0.903393 -0.270829 -1.015665 -0.301140 0.052614 0.198268 2.335725 1.322973 0.105686 -0.260921 -0.579350 -0.247945 2.223444 -1.367224 0.507219 0.340375 -0.225702 -0.250676 0.522375 0.034246 -0.104059 0.201978 1.088020 -0.358121 -0.998902 0.428608 -1.579205 -1.256018 1.610791 -0.265935 0.393312 -1.047349 -0.061715 -1.466922 0.141167 -0.832214 1.841346 2.100244 -1.169647 1.162982 -0.141844 0.327790 -0.569219 -0.408182 0.363572 0.774247 0.127312 -0.109774 -0.937061 -1.962101 -0.131603 0.127031 -0.879095 0.031040 -2.260678 1.088102 -2.290788 -1.347148 -0.395429 0.782212 -0.951711 0.362672 0.899623 0.274281 0.432868 -0.534285 -1.183394 0.157939 0.227921 -0.506783 0.589267 0.460569 0.463730 -0.588620 -1.174502 -1.548172 0.306577 -0.695589 -0.559569 0.316473 1.135170 -0.603987 0.054919 0.636919 0.764920 -0.406443 1.512916 -0.131370 0.372619 0.510306 0.527929 0.297020 0.098721 1.062421 1.815505 -0.386294 0.047508 -0.462448 0.294718 -1.483047 -1.195376 -0.515002 0.188677 -0.041988 -2.015998 -0.959148 -0.068780 -0.758682 -2.179433 -0.026345 -0.854033 -0.969659 0.670679 1.047004 1.668261 1.081583 2.075324 -1.406334 0.365258 0.028228 -0.690681 0.728210 0.463061 1.132800 -0.680722 -0.695033 -0.075018 -0.631246 0.831326 -0.452047 -0.074002 -0.235259 -2.121667 -0.305834 0.496416 0.911788 -0.167259 0.573310 1.441640 -0.854244 -1.606365 0.372035 1.656997 -0.300586 -0.607524 0.926384 -1.644232 1.189959 0.296048 0.265705 0.566095 0.181785 -0.234267 0.509560 -0.652921 0.372699 -1.215485 -0.868738 -0.614683 -0.205262 -1.385495 0.823365 -0.485260 -0.904033 -0.550615 -0.982684 1.290051 -1.280485 -0.950896 1.764906 0.081289 1.426712 -1.519032 1.117168 -0.888341 1.401577 0.225786 0.236273 -0.002481 -0.619264 -0.983507 -0.051513 -0.091766 0.085659 1.103912 1.494320 1.112465 0.386364 -0.052777 1.892206 -0.615744 1.272020 -0.611899 0.514554 -0.369883 -1.485565 0.673446 -0.352326 -0.659593 -0.313022 0.961285 2.465173 1.122250 1.336068 2.324690 0.393871 1.733912 -0.396565 0.415864 -0.259345 0.972883 -0.409488 -0.678878 0.728468 0.854086 -0.904458 0.830788 -2.033750 -3.374878 -1.595994 -2.083407 0.086657 -2.450654 0.635310 -0.308890 0.280415 -1.608141 -0.851833 0.079917 -0.291038 1.650050 0.807937 -0.072193 0.831069 1.696640 -1.450387 0.128073 1.303881 1.865265 -0.025320 -0.170869 -2.027398 1.210742 -1.594121 0.202352 2.307863 -1.240098 0.304094 -0.918372 1.620853 -1.774637 1.810271 0.652641 -1.139642 1.494871 0.638457 1.023734 2.186297 -0.759655 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.080122 -0.272632 0.640047 0.519425 0.052134 0.024782 0.402261 -0.227671 0.394202 0.262543 -0.071807 0.060751 -0.531359 0.156003 -0.091969 0.429601 -0.355264 -0.366223 -0.036478 -0.241675 -0.030300 -0.247739 0.449549 -0.115299 0.431751 0.008225 -0.188833 -0.414787 -0.470314 -0.263809 0.296138 -0.208813 0.313144 0.138095 -0.196404 -0.614876 0.335451 0.296338 -0.237208 -0.353299 0.372587 -0.274577 0.142310 -0.158157 0.112730 0.122141 0.103571 0.140481 0.394764 0.271762 0.287895 -0.024076 0.180341 0.537935 -0.464590 0.224814 0.085117 -0.048624 -0.163858 0.043357 0.073795 0.014524 0.235931 0.200641 -0.097391 -0.398587 -0.229219 -0.306450 -0.502433 0.238279 -0.148245 0.118531 -0.438532 -0.005075 -0.068618 -0.104851 -0.632731 0.299021 0.565676 -0.350175 0.393502 0.049218 0.019627 -0.158750 -0.030035 0.131569 -0.024723 0.065774 -0.062630 -0.161298 -0.202507 -0.018900 0.033566 0.088533 -0.055546 -0.352120 0.313856 0.118100 -0.430669 0.059963 0.182596 -0.084205 -0.203292 0.180507 -0.045930 0.363717 -0.274785 -0.434595 -0.078330 -0.047511 0.203093 -0.106176 -0.069592 -0.237942 -0.300298 -0.324970 -0.469305 -0.020632 -0.152019 -0.327988 -0.192551 0.255745 -0.202773 0.060021 0.071269 0.232672 -0.182446 0.484640 0.048222 0.336034 0.299226 0.014583 -0.526585 -0.008979 0.381233 0.590114 -0.149807 0.155861 -0.338047 -0.021953 -0.263381 -0.075397 0.184230 0.247001 0.465843 -0.388023 -0.260901 -0.027458 0.062665 -0.501232 0.206473 -0.304871 0.262186 0.057979 0.298037 0.110636 0.377379 0.829799 -0.389862 0.136531 -0.017507 -0.194293 0.381341 0.252251 0.336177 -0.198726 -0.260742 0.090423 0.206239 0.015601 0.011985 0.131710 0.060485 -0.494741 0.026144 0.065804 0.090607 -0.283461 0.255369 0.206211 0.276129 -0.240617 0.089549 0.357543 -0.059067 0.011999 0.110545 -0.519410 0.308693 0.037894 -0.121275 0.148188 0.040439 -0.253446 0.246719 -0.274337 0.094684 -0.277184 0.089579 -0.259611 -0.125505 -0.338966 0.072153 -0.048013 -0.312401 0.039082 0.140354 0.442772 0.109277 -0.104417 0.171810 -0.018397 -0.020572 -0.494017 0.849036 -0.308843 0.107022 -0.232968 -0.071406 -0.012711 0.288919 -0.192040 -0.176503 0.152229 -0.002789 0.248833 0.594253 0.252311 -0.080491 0.024065 0.452062 0.002108 0.353243 -0.039985 0.357755 -0.080117 -0.146537 0.173276 -0.107716 -0.035522 -0.135694 -0.016054 0.648468 0.301056 0.067478 0.387392 0.092066 0.560441 -0.205151 0.346569 -0.010058 0.486135 -0.096685 -0.056732 0.115515 0.160069 -0.159861 0.323003 -0.468041 -0.646565 0.118101 -0.422764 0.073064 -0.030367 0.154723 -0.122761 0.052861 -0.477284 -0.280278 -0.057862 -0.191807 0.260190 0.141823 0.067535 0.260467 0.362254 -0.260728 -0.080172 -0.008097 0.219451 0.079227 -0.136133 -0.170666 0.239111 -0.415867 -0.027268 0.378176 -0.204112 0.001514 -0.126408 0.467457 -0.311955 0.607855 0.116683 -0.053125 0.649032 0.332029 0.555452 0.088649 -0.177338 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::begin() = 0.310427 -0.258252 1.509167 1.009178 -0.353336 0.049927 0.206996 -0.802826 0.809251 0.036658 -0.344590 0.131472 -0.603809 0.337184 -0.595730 0.758050 -1.238518 -0.461330 -0.253502 -0.766637 -0.295647 -0.292252 0.539422 -0.154533 0.782743 0.482426 -0.360186 -0.200923 -0.425341 -0.708689 0.468527 -0.344653 0.257336 0.096464 0.069291 -1.125922 0.951876 0.503734 -0.502418 -0.625167 0.570800 -0.517770 -0.014836 -0.453743 0.040406 0.177035 0.028532 0.846433 0.734292 0.423397 0.158321 0.236360 0.397335 1.368066 -0.689271 0.441274 0.270069 -0.076445 -0.212847 0.263372 0.124679 0.107870 0.116763 0.196548 0.042839 -0.966732 -0.320396 -0.528584 -0.365280 0.628456 -0.212918 -0.187321 -0.778807 -0.258389 -0.610960 -0.146608 -1.907321 0.887227 0.974918 -0.876302 0.407151 0.083856 0.082589 0.012088 0.105277 0.167533 0.527183 0.234949 -0.023304 -0.148433 -0.238545 -0.181888 0.389438 -0.578539 -0.329876 -1.581916 0.556886 -1.061167 -0.839287 0.168452 0.619789 -0.406829 0.171849 0.053742 0.106267 0.243833 -0.445153 -0.576409 0.295040 0.058441 0.213423 -0.067289 0.070745 -0.248692 -0.101173 -0.117077 -1.075785 0.351240 -0.173868 -0.108863 -0.029707 0.615758 0.150313 -0.228252 0.025242 0.407180 -0.369197 1.006023 -0.208004 0.653596 -0.151390 0.689429 -0.404447 0.708023 0.700568 0.005046 -0.314337 0.313263 -0.458411 0.166802 -0.763763 -0.070189 -0.347996 0.451133 0.343048 -0.638068 -0.610872 -0.175087 -0.517976 -0.939357 0.268322 -0.418018 -0.572732 0.071655 0.594333 0.726684 0.765588 0.632080 -0.637466 -0.097148 -0.123590 -0.025546 0.778248 0.127677 0.631133 -0.414983 -0.322518 0.272316 0.059879 0.193731 0.002140 0.132258 0.203448 -0.908779 0.297251 0.399995 0.458037 -0.319197 0.649174 0.672474 0.241850 -0.398947 0.123411 0.724722 -0.352290 -0.079640 0.246454 -0.778429 0.463843 0.265676 0.389523 0.499403 0.073838 -0.023062 0.217491 -0.287128 0.252234 -0.418605 -0.241259 -0.377318 -0.385109 -0.407964 0.608783 -0.297623 -0.325892 -0.229829 -0.473598 0.830033 -0.891754 -0.102202 0.928196 -0.303500 0.318977 -0.542261 1.086958 -0.595168 0.494680 -0.002513 0.038168 0.033382 -0.096224 -0.783000 0.090644 0.248806 -0.023377 0.268549 0.780920 0.547540 0.075013 -0.099211 0.916573 -0.541017 0.883952 -0.251487 0.723155 -0.268875 -0.349983 0.150960 -0.130629 -0.481939 -0.392872 0.417811 1.080738 0.142442 0.578924 0.629960 0.202928 1.034616 -0.466234 0.686139 -0.258596 0.269180 -0.408798 -0.342661 0.469713 0.237032 -0.244591 0.360515 -1.078249 -1.121936 -1.124963 -0.387738 0.144572 -0.595198 0.245823 -0.347317 -0.099845 -0.697583 -0.706694 0.677459 -0.281542 -0.122510 0.468079 0.092602 0.483033 0.815263 -0.341999 0.065232 -0.037576 0.382640 0.309402 -0.181183 -0.751650 0.899160 -0.644365 -0.102322 1.117470 -0.534094 0.215285 -0.013363 0.617431 -0.623270 0.797068 0.150850 -0.389575 0.765528 1.026644 0.744832 0.439358 -0.450875 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::end() = 0.310427 -0.258252 1.509167 1.009178 -0.353336 0.049927 0.206996 -0.802826 0.809251 0.036658 -0.344590 0.131472 -0.603809 0.337184 -0.595730 0.758050 -1.238518 -0.461330 -0.253502 -0.766637 -0.295647 -0.292252 0.539422 -0.154533 0.782743 0.482426 -0.360186 -0.200923 -0.425341 -0.708689 0.468527 -0.344653 0.257336 0.096464 0.069291 -1.125922 0.951876 0.503734 -0.502418 -0.625167 0.570800 -0.517770 -0.014836 -0.453743 0.040406 0.177035 0.028532 0.846433 0.734292 0.423397 0.158321 0.236360 0.397335 1.368066 -0.689271 0.441274 0.270069 -0.076445 -0.212847 0.263372 0.124679 0.107870 0.116763 0.196548 0.042839 -0.966732 -0.320396 -0.528584 -0.365280 0.628456 -0.212918 -0.187321 -0.778807 -0.258389 -0.610960 -0.146608 -1.907321 0.887227 0.974918 -0.876302 0.407151 0.083856 0.082589 0.012088 0.105277 0.167533 0.527183 0.234949 -0.023304 -0.148433 -0.238545 -0.181888 0.389438 -0.578539 -0.329876 -1.581916 0.556886 -1.061167 -0.839287 0.168452 0.619789 -0.406829 0.171849 0.053742 0.106267 0.243833 -0.445153 -0.576409 0.295040 0.058441 0.213423 -0.067289 0.070745 -0.248692 -0.101173 -0.117077 -1.075785 0.351240 -0.173868 -0.108863 -0.029707 0.615758 0.150313 -0.228252 0.025242 0.407180 -0.369197 1.006023 -0.208004 0.653596 -0.151390 0.689429 -0.404447 0.708023 0.700568 0.005046 -0.314337 0.313263 -0.458411 0.166802 -0.763763 -0.070189 -0.347996 0.451133 0.343048 -0.638068 -0.610872 -0.175087 -0.517976 -0.939357 0.268322 -0.418018 -0.572732 0.071655 0.594333 0.726684 0.765588 0.632080 -0.637466 -0.097148 -0.123590 -0.025546 0.778248 0.127677 0.631133 -0.414983 -0.322518 0.272316 0.059879 0.193731 0.002140 0.132258 0.203448 -0.908779 0.297251 0.399995 0.458037 -0.319197 0.649174 0.672474 0.241850 -0.398947 0.123411 0.724722 -0.352290 -0.079640 0.246454 -0.778429 0.463843 0.265676 0.389523 0.499403 0.073838 -0.023062 0.217491 -0.287128 0.252234 -0.418605 -0.241259 -0.377318 -0.385109 -0.407964 0.608783 -0.297623 -0.325892 -0.229829 -0.473598 0.830033 -0.891754 -0.102202 0.928196 -0.303500 0.318977 -0.542261 1.086958 -0.595168 0.494680 -0.002513 0.038168 0.033382 -0.096224 -0.783000 0.090644 0.248806 -0.023377 0.268549 0.780920 0.547540 0.075013 -0.099211 0.916573 -0.541017 0.883952 -0.251487 0.723155 -0.268875 -0.349983 0.150960 -0.130629 -0.481939 -0.392872 0.417811 1.080738 0.142442 0.578924 0.629960 0.202928 1.034616 -0.466234 0.686139 -0.258596 0.269180 -0.408798 -0.342661 0.469713 0.237032 -0.244591 0.360515 -1.078249 -1.121936 -1.124963 -0.387738 0.144572 -0.595198 0.245823 -0.347317 -0.099845 -0.697583 -0.706694 0.677459 -0.281542 -0.122510 0.468079 0.092602 0.483033 0.815263 -0.341999 0.065232 -0.037576 0.382640 0.309402 -0.181183 -0.751650 0.899160 -0.644365 -0.102322 1.117470 -0.534094 0.215285 -0.013363 0.617431 -0.623270 0.797068 0.150850 -0.389575 0.765528 1.026644 0.744832 0.439358 -0.450875 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::~_Deque_base() = 1.134606 -0.501335 4.878249 3.348777 -2.211512 0.115987 -1.036558 -2.576256 1.547066 -0.352534 -1.091010 1.061882 -0.613441 0.878256 -0.236052 2.255535 -4.769959 -0.477487 -1.037538 -2.298238 -1.390906 -0.218294 0.571989 0.406568 2.013795 3.121895 -1.382105 0.846460 0.843859 -3.500277 0.527616 -0.768008 1.013038 1.286383 1.519222 -5.053914 3.300579 1.316574 -1.158905 -1.910656 1.168450 -0.695988 -0.390753 -1.366689 -1.546469 1.026275 0.065868 2.001303 1.698855 1.220514 -0.716581 0.809043 2.080610 3.488797 -0.289362 1.021361 1.263222 -1.230967 -0.609376 -0.163107 0.520720 0.091537 0.246537 0.073355 0.643677 -3.181385 -0.517867 -1.287655 -0.648453 1.880216 -0.116855 -1.622180 -1.849323 -1.867672 -1.980875 -0.446341 -3.764015 3.183655 2.461707 -2.465486 0.656995 0.142131 -0.239375 0.624369 0.663913 0.322970 2.494727 1.031637 0.225122 0.555570 1.027280 -2.318907 1.933341 -1.458627 -1.332364 -4.508337 1.122278 -4.644217 -2.046848 1.073308 2.236736 -1.481714 -0.288542 -1.566143 0.920180 0.429479 -0.616571 -0.844449 1.111051 0.267441 0.122400 -0.257215 -0.651634 0.580015 -0.023222 1.321024 -3.379880 1.827678 0.116334 0.712824 0.833654 1.636867 1.351929 -0.934053 -0.409438 1.188219 -1.195144 3.229723 -0.828347 1.885753 -1.336936 2.507126 1.198378 2.082648 1.536019 -2.045249 -0.844238 -1.045075 -1.026999 0.888972 -2.239846 0.387556 -1.428390 1.946250 1.882437 -0.510276 -2.251602 -1.046326 -3.375095 -3.285610 0.372021 -1.162776 -2.393322 2.029221 1.563936 1.637808 1.857085 -0.014591 -1.708204 -0.545190 -0.701942 0.215175 2.115571 0.309763 1.512816 -1.269356 -0.318111 1.439742 -0.294034 1.408561 0.264651 -0.144795 1.005910 -1.686321 0.097817 2.554651 1.655818 0.371580 1.426105 2.233035 2.954399 0.281233 -0.264033 1.715777 -1.153756 -0.644566 0.912842 -1.476062 0.640371 0.749406 1.573196 2.364701 -0.043606 0.349806 0.186399 -0.032111 0.383225 -0.966909 -0.362986 -0.729961 0.383940 -0.619170 0.843946 -1.481157 -0.264285 -1.468158 -2.090165 2.724196 -4.405098 -0.956556 3.543891 -1.889803 2.114404 -1.647848 2.194127 -1.494638 2.155273 -0.149802 -0.557607 0.309962 -2.733789 -2.647699 1.285082 0.677191 0.342329 -0.808101 1.592644 1.473671 -0.021751 -0.833773 2.149209 -1.621087 3.284036 -0.760537 2.250664 -0.963293 0.348343 -0.567511 -0.045005 -2.031183 -1.167507 1.214820 1.513049 -0.526666 2.124013 1.117912 0.731866 2.375374 -1.575008 2.000772 -0.771645 0.087737 -1.533813 -1.533249 1.628156 1.839265 -0.350886 0.557849 -3.084512 -2.402284 -5.663659 -0.657772 -1.033074 -0.468101 1.198322 -1.066955 -0.946245 -0.678625 -2.011602 4.238738 -0.159329 0.043790 1.553039 0.083734 1.647709 2.177088 -0.174152 -0.243829 -0.702722 0.481724 1.179754 0.242669 -2.992255 3.139991 -1.254890 -0.327614 3.795264 -1.806820 1.230290 -0.096162 1.772205 -1.836061 1.738542 0.153075 -1.863944 1.083047 2.920199 0.356191 0.684125 -1.541383 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.030971 -0.534112 3.689031 2.585290 -1.093533 0.124847 -0.031637 -1.880698 1.479275 0.413230 -0.240911 0.681280 -0.810499 0.673387 0.180417 1.990954 -3.040441 -0.668667 -0.711690 -2.089670 -1.050674 -0.239376 0.846609 -0.208405 1.628213 1.076641 -1.209520 -0.350421 0.037631 -2.497298 0.928100 -0.767047 1.213740 0.172951 0.329682 -5.506866 2.476931 1.023896 -1.154621 -1.415579 1.195596 -0.668144 0.166676 -0.737999 -1.237193 0.479158 0.045174 0.521805 1.585326 1.061276 0.330911 0.825352 1.366200 3.684623 -1.055960 0.844195 0.617182 -1.087942 -1.042372 0.144134 0.379700 0.144368 0.769753 0.123258 0.365978 -2.604733 -0.413163 -1.096995 -1.445428 1.217522 -0.046967 -1.120439 -1.171893 -0.926344 -1.170565 -0.851635 -1.919319 1.950786 2.040849 -1.793400 0.931256 -0.040081 -0.297241 0.464538 0.475002 0.461586 1.591759 0.601486 0.096050 0.121291 0.755619 -1.071656 1.258580 0.006462 -0.744264 -3.157385 1.100461 -1.627999 -1.626050 0.965090 1.709545 -0.740541 -1.590522 -1.528181 0.574037 0.790255 -1.001329 -1.143419 -0.178216 0.176496 0.233296 -0.404909 -0.604215 -0.606993 -0.451353 0.148988 -2.438033 1.067081 -0.127140 0.177185 -0.576127 1.367438 0.156617 -0.750961 -0.200215 1.414737 -1.354213 2.260919 -0.751254 1.677234 -0.419354 1.280584 -0.603902 0.238219 1.257940 0.125472 -0.332942 -1.083183 -1.537775 0.486339 -1.764273 0.520180 -0.052837 1.775318 2.408074 -0.333204 -1.476896 -0.480973 -1.224394 -2.823852 0.439093 -1.174120 -0.832669 1.550921 1.295354 0.860528 1.680332 1.020997 -1.290311 0.543668 -0.721416 -0.374479 2.035689 0.183288 1.388512 -0.993324 -0.456324 0.630821 0.207060 1.117947 0.186055 0.015728 0.626512 -1.510536 -0.281514 1.038385 1.046981 -0.203309 0.782017 1.580878 3.752139 -0.809741 -0.021434 1.441182 -0.936799 -0.197053 0.563779 -1.331140 0.154333 0.747768 -0.159804 1.890501 -0.002645 -0.713973 0.199787 -0.296838 0.276517 -0.733776 0.146620 -0.723411 0.193111 -0.573520 -0.260334 -1.326626 -0.470943 -1.059533 -1.192556 2.215580 -2.687325 -1.158352 2.484154 -1.237169 0.954120 -2.247117 3.110791 -1.315909 1.237149 -1.188333 -0.551782 -0.145737 -0.395621 -2.015881 1.125757 0.556801 -0.152452 -0.107865 2.442864 1.237226 0.203405 -0.866522 1.969941 -0.798707 2.412700 -0.543727 2.280386 -0.868235 -0.029411 -0.327474 -0.142926 -1.140859 -0.911890 0.881999 1.046461 0.120388 0.984097 0.719026 1.037309 2.099758 -1.142887 1.856207 -0.354314 0.752326 -0.733162 -0.800658 1.275998 1.538982 -0.284021 0.763865 -2.380657 -1.890280 -2.962667 -1.044296 -0.268227 0.862751 0.578471 -0.780335 -0.432818 -1.300736 -1.283313 2.369377 -0.429579 0.625437 1.151454 0.339706 1.326649 1.821207 -0.446457 -0.487985 -0.647352 0.132356 0.853757 -0.267690 -1.917211 2.282762 -1.263739 -0.111377 2.400065 -1.009353 0.685208 0.146880 1.528884 -1.328777 1.943127 0.098009 -0.790377 1.661455 2.162319 1.215091 0.128892 -0.966292 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.372193 -0.743402 2.556830 1.817560 -0.072969 0.233445 0.728796 -1.243910 1.429419 0.630500 -0.385598 0.499926 -1.484536 0.410374 -0.150822 1.174691 -1.884086 -1.288796 -0.262703 -1.118130 -0.499251 -0.952840 0.972095 0.132487 1.326914 0.464327 -0.988051 -0.431689 -1.468055 -1.812751 0.705385 -0.663416 1.058624 0.397373 0.027656 -2.825515 1.662618 1.114583 -0.632063 -1.293174 1.079735 -1.056978 0.167997 -0.508828 0.055737 0.672855 0.384304 0.595245 1.494674 0.644467 0.602648 0.005164 0.244746 1.740759 -1.308561 0.841037 0.397544 -0.614687 -0.656394 0.154755 0.151001 -0.211428 0.930050 0.797898 -0.701802 -1.519168 0.073042 -0.792737 -1.609998 1.253622 0.035277 -0.338261 -1.198448 -0.324813 -0.853183 -0.395215 -0.040910 1.122498 2.061971 -0.823016 1.341566 0.069732 0.333363 -0.294610 0.436073 0.143953 1.244565 0.212311 -0.517325 -0.738614 -1.134675 -0.599202 0.092264 0.869630 -0.146346 -0.712452 0.708066 -1.231064 -1.676255 0.159336 0.694903 -0.522136 -1.600134 0.350190 0.740235 0.841471 -0.306924 -1.483338 -0.246348 0.240435 -0.411123 -0.312282 -0.263154 -0.882529 -0.914747 -0.451910 -1.850549 0.175762 -0.177282 -0.647968 -0.855750 1.209132 -0.682787 0.079972 0.221308 1.000915 -0.566981 1.299903 -0.208265 0.998288 0.710459 -0.052955 -1.242983 -0.192571 0.832313 1.118757 -0.687651 -0.281213 -0.988402 0.175508 -1.375213 -0.115481 -0.336140 1.425412 1.676005 -1.203089 -1.149777 -0.270140 -0.263125 -1.917913 0.519450 -1.003113 -0.225963 0.075419 1.152479 0.480568 1.199258 2.189453 -1.231577 0.772769 -0.005777 -0.425604 1.500484 0.192120 1.263609 -0.962643 -0.744600 0.594120 0.458702 0.375906 -0.156426 0.082328 0.264361 -1.705063 -0.718459 0.686330 0.347745 0.146545 0.942494 1.042181 2.109331 -1.329338 0.387263 1.252752 -0.244714 -0.185205 0.460795 -1.513023 0.802673 0.400200 0.201929 1.508210 0.084680 -1.098338 0.393877 -0.120389 0.465493 -1.232926 0.287835 -0.846081 0.287950 -0.811879 -0.393241 -0.691008 -0.898388 -0.548098 -0.330275 1.747418 -0.275755 -1.799152 1.603798 -0.801640 1.060840 -2.517610 1.734943 -1.153663 0.736814 -0.903663 -0.042450 -0.110026 0.114198 -1.113103 0.482071 0.470500 -0.162069 1.024713 1.860920 0.950727 0.368070 -0.231428 1.399346 -0.051684 1.341997 -0.369918 1.342701 -0.388176 -0.313008 0.107558 -0.377193 -0.326760 -0.144062 0.115365 1.190774 1.147172 0.354523 1.283849 0.867207 1.638699 -0.762791 1.167336 -0.204536 1.119294 -0.449938 -0.676112 0.573013 0.637181 -0.433261 1.010756 -1.985066 -2.222674 -0.474250 -2.318887 -0.028400 -0.023163 0.658846 -0.131189 0.049778 -1.686542 -0.775127 0.890650 -0.072697 2.198993 0.652272 0.195799 0.950855 1.457558 -0.893499 -0.468544 -0.176640 0.491564 -0.018305 -0.570409 -1.298969 1.339118 -1.255254 0.481783 1.695860 -1.092253 0.264311 -0.756519 1.414385 -1.407967 1.992804 0.500743 -0.641050 1.651271 0.690788 1.746417 0.163658 -0.864995 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.074628 -1.180886 3.512171 2.501607 -0.140533 0.121084 1.744633 -1.506536 1.452058 0.387254 -0.502250 0.901278 -2.354976 0.905171 -1.872503 1.697223 -2.425117 -1.756175 -0.562907 -1.331219 -0.324069 -0.970974 2.137690 0.123099 2.342769 0.410711 -1.328845 -1.766445 -2.583811 -1.665281 1.234134 -0.742914 1.419356 -0.254108 -0.898109 -3.514174 1.850202 1.864043 -1.131424 -1.756229 2.246634 -1.463736 -0.183035 -1.010787 -0.328953 0.145184 0.222547 1.237705 1.796913 1.050473 0.742710 0.771382 0.929308 3.445243 -1.989961 1.273031 0.822447 0.000814 -0.785757 0.192591 0.282728 0.163093 0.856823 0.708979 -0.261421 -2.120343 -0.755225 -1.311719 -1.882250 1.418671 -0.518982 0.258545 -1.779524 0.191107 -1.511075 -0.151032 -0.763972 1.725958 2.651513 -1.728536 1.667317 -0.253500 -0.256066 -0.732414 -0.221352 0.534026 0.130477 0.477085 0.192908 -1.520703 -1.579718 0.415360 0.197966 0.246011 -0.661915 -3.087893 1.804881 -1.490705 -2.362788 -0.060242 1.103322 -1.387829 -0.335162 0.523350 -0.030215 1.395838 -1.140092 -1.876486 -0.223891 0.228455 0.718189 -0.553756 0.057383 -0.802580 -0.879300 -1.178064 -2.498617 0.529733 -0.551925 -1.075775 -0.756905 1.313851 -0.519647 0.278561 0.301947 1.417073 -0.849094 1.890421 -0.217344 1.339588 0.969183 0.836090 -0.865557 -0.102621 1.725471 2.119577 -1.429187 0.463801 -1.589528 0.306355 -1.242532 -0.495458 -0.108746 1.228661 1.348385 -2.025837 -1.455252 -0.314857 -0.145357 -2.508319 0.382223 -1.259647 -0.433943 0.403844 1.486838 0.450846 1.693229 3.382014 -1.392717 0.656069 0.619854 -0.946972 1.898500 -0.017701 1.515420 -1.110151 -1.684609 0.744693 0.371738 0.759146 -0.675650 1.201558 0.218899 -2.388697 -0.308566 0.291224 0.796449 -0.863939 1.464812 1.445872 1.073594 -1.494782 0.449556 1.721440 -0.944794 -0.025060 0.413728 -2.560816 1.132655 0.481911 -0.031706 1.745463 0.309837 -1.330484 1.464889 -0.828858 0.526385 -1.559052 0.404194 -1.307066 -0.691449 -1.560750 -0.040043 0.003339 -1.152964 -0.671705 -0.687380 2.345433 -1.332101 -1.278300 1.481087 0.008211 0.506937 -3.161391 3.267553 -1.432583 0.989732 -0.192675 -0.001327 0.288928 0.554593 -1.875220 -0.154314 0.667206 -0.430650 1.541112 2.831526 1.233806 0.005452 -0.319350 2.186538 -0.392568 2.086815 -0.736662 1.758837 -0.427735 -1.742333 0.493040 -0.426182 -0.714181 -0.844444 0.671967 2.817986 1.079261 1.041997 2.040412 0.999199 3.128106 -1.061359 1.714059 -0.506400 1.701772 -0.555328 -0.723069 0.764821 0.923686 -0.588779 1.915815 -2.683634 -3.717041 -1.276875 -2.985662 0.987007 -1.454513 1.049452 -0.942166 -0.141008 -2.801074 -1.742654 0.245184 -0.711602 1.856446 1.646652 0.383335 1.251755 1.764250 -1.442791 0.417661 0.202416 1.714806 0.571680 -0.959280 -1.340188 1.349910 -1.779867 0.139865 2.533692 -1.156116 0.672665 -0.873089 1.640506 -1.721242 3.035994 0.555955 -1.014974 2.629774 1.361369 2.025556 0.771602 -1.086090 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.071811 -0.688315 2.733736 1.599799 -0.420647 0.080161 1.063639 -1.155692 1.414464 0.233799 -0.568754 -0.041433 -1.496911 0.241866 -0.921467 0.822599 -2.044144 -1.128486 -0.421229 -1.273612 -0.305769 -0.911917 1.180430 -0.024939 1.424070 0.500777 -0.617915 -0.755456 -1.138461 -1.210188 1.208511 -0.555343 0.849201 0.201618 -0.218977 -2.909837 1.509312 1.034349 -0.758776 -1.144571 1.184406 -0.696347 -0.179730 -0.434012 -0.280567 0.269992 0.256347 1.410536 1.263025 0.610649 0.428105 -0.142529 0.395109 2.644655 -1.287097 0.720035 0.403619 -0.302524 -0.440608 0.514058 0.131606 -0.100472 0.387808 0.733914 0.003554 -1.311512 0.160738 -1.057066 -1.397262 1.348301 -0.250391 -0.218544 -0.973421 -0.226266 -1.048168 -0.129733 -1.071719 1.411379 1.998804 -1.138393 1.243635 0.071727 0.089837 -0.341742 -0.352549 0.278529 0.628066 0.209457 -0.044402 -0.881403 -1.111645 -0.203784 0.192436 -0.151466 -0.310317 -2.078919 1.263733 -1.381391 -1.446536 0.015574 0.879646 -0.886967 -0.370665 0.342867 0.181269 0.669776 -0.546496 -1.187041 -0.266431 0.279087 -0.154162 0.135625 0.114972 -0.236438 -0.571226 -0.610670 -1.722114 0.393548 -0.498933 -0.535989 -0.435124 1.065152 -0.440847 0.066488 0.463554 1.080893 -0.533391 1.395758 -0.031827 0.924831 0.461996 0.609767 -0.707720 -0.068128 1.102524 1.280547 -0.349594 -0.047152 -0.783474 0.312834 -1.213044 -0.269479 -0.346162 0.698001 0.985261 -1.497832 -0.980168 -0.245769 -0.393596 -1.874185 0.190716 -0.970474 -0.654249 0.431953 1.019356 1.089783 1.055061 2.117603 -1.437215 0.543942 -0.044291 -0.693146 0.844871 0.132930 1.088942 -0.721966 -0.784569 0.075803 0.148537 0.723350 -0.359099 0.081263 0.053133 -1.817824 -0.229676 0.471287 0.571213 -0.437228 0.664482 1.375793 1.022872 -1.504805 0.270154 1.384489 -0.555980 -0.372851 0.699542 -1.714707 0.804545 0.370702 0.086883 1.049715 0.168884 -0.463138 0.683545 -0.738752 0.183305 -1.067485 -0.155580 -0.750527 -0.258656 -1.007663 0.248820 -0.688098 -0.709977 -0.484270 -0.632219 1.478340 -1.088921 -1.103459 1.608589 -0.203163 0.604465 -1.865045 2.116335 -0.897244 0.859009 -0.315597 -0.018827 -0.134667 0.136225 -1.065953 0.056289 0.140678 -0.146044 1.122004 2.050601 0.965776 0.200549 -0.211174 1.804534 -0.595279 1.394474 -0.638232 0.947390 -0.437842 -1.131557 0.162720 -0.306798 -0.560705 -0.460847 0.636036 1.772558 0.911138 0.644298 1.553942 0.661461 1.775771 -0.477386 1.051973 -0.158940 1.135274 -0.458382 -0.553444 0.757055 0.729761 -0.759618 1.024984 -2.011928 -2.535150 -1.258104 -1.958295 0.126135 -1.177820 0.655533 -0.450226 0.014618 -1.706995 -1.094154 0.611796 -0.262084 1.153441 0.878469 0.129568 0.908144 1.533662 -0.984956 0.091582 0.416073 1.119022 0.153738 -0.643241 -1.288375 1.291257 -1.331334 0.141240 1.971878 -0.994149 0.441457 -0.523694 1.246396 -1.610767 1.907614 0.484267 -0.737751 1.578615 0.932005 1.538938 0.863976 -0.729133 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__deque_buf_size(unsigned long) = -0.116121 -0.623844 0.979156 0.524649 0.030321 0.105621 0.281413 0.193531 0.015119 0.492195 -0.528737 0.707594 -0.485573 -0.027828 0.401757 0.260386 -0.495962 -0.620167 0.306523 0.227686 -0.079697 -0.409765 -0.163546 0.569301 0.506457 0.399986 -0.473787 -0.109338 -0.615937 -0.806649 -0.439282 -0.107910 0.402599 0.330315 0.647154 -0.349462 0.107323 0.369117 0.193385 -0.793463 0.213179 0.076683 0.181805 0.028307 0.330817 0.699365 0.724824 0.268254 0.083560 0.219676 -0.301719 -0.568431 -0.012190 0.000508 0.282780 0.227862 0.587925 -0.265651 0.230415 -0.434771 0.267538 -0.688217 0.206806 0.247552 -0.349619 -0.136379 0.045271 -0.108106 -0.106933 0.273015 0.453772 -0.066260 -0.551848 -0.543991 -0.217233 0.030894 0.158652 0.482695 0.725903 -0.085403 0.667450 0.386950 0.821935 -0.100270 0.171772 -0.167583 0.238507 0.129630 -0.434137 -0.137739 -0.648005 -0.708830 -0.402105 0.661217 -0.062548 0.583856 0.075780 -0.487141 -0.594738 0.237135 -0.008452 -0.200319 -0.401491 0.649158 0.428512 0.526169 0.238068 -0.369246 -0.314528 -0.021199 -0.410078 -0.048503 0.028335 -0.092699 -0.469933 0.141138 -0.510601 0.050926 0.369764 -0.408596 -0.029319 0.343869 -0.302477 0.749008 0.114202 0.062891 0.108242 0.264396 0.962674 0.208077 0.179913 -0.495013 -0.696716 0.049743 0.089514 0.338915 -0.412382 -0.184655 0.065231 0.118674 0.109088 -0.069746 -0.311237 0.851842 0.749980 -0.487501 -0.698926 -0.679867 -0.319111 -0.117205 0.276569 -0.153171 0.238388 -0.051665 0.148780 -0.009904 -0.112036 0.801181 -0.631938 0.350295 0.086671 0.074556 -0.137238 0.114893 0.157106 -0.427044 -0.094373 0.273651 0.543862 0.072404 0.091312 -0.301535 0.402913 -0.266654 -0.423974 0.576671 0.183152 0.308982 0.436901 0.255966 0.482396 -0.122943 -0.458469 0.062276 0.070066 -0.441943 0.254171 -0.591318 0.616995 -0.103476 0.432791 0.564450 0.020542 -0.265709 0.632820 -0.045037 0.057991 -0.353938 0.442251 -0.415613 0.322673 -0.131809 -0.096751 -0.467629 -0.008358 -0.176808 0.114480 0.757224 0.402811 -0.903577 0.058964 -0.224272 0.590442 -0.922340 0.225784 -0.066792 0.253055 -0.027053 0.020035 -0.027827 -0.234378 0.160528 -0.123160 0.165050 0.149979 0.083226 0.186370 0.066126 -0.264405 0.309358 0.131781 0.283192 0.083294 0.088509 -0.097168 -0.124138 0.321470 -0.178421 0.140489 0.155400 0.451380 -0.409898 -0.067337 0.164414 -0.023758 0.377895 0.250061 0.041764 -0.335812 -0.063845 -0.140034 0.848046 -0.274280 -0.461668 -0.382035 0.439259 -0.219702 0.078883 -0.662524 -0.578198 0.075472 -1.165239 -0.679275 0.072791 0.290138 0.169417 -0.204161 -0.311566 -0.117581 0.288000 0.415583 0.989791 0.096590 -0.258428 0.612515 0.191438 -0.287290 -0.359340 -0.039330 0.009719 -0.201023 -0.051455 -0.293259 0.006961 -0.618624 0.262711 0.665426 -0.586347 0.071031 -0.382058 0.576456 -0.717278 0.834256 0.443793 -0.818326 -0.125062 0.137225 0.622229 -0.568378 -0.494916 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.131137 -0.515222 1.981708 1.408704 -0.059030 0.083277 0.924341 -0.999307 1.071187 0.288900 -0.209352 0.224498 -1.210847 0.469492 -0.878236 1.016873 -1.287111 -0.912945 -0.366425 -1.023795 -0.215445 -0.498064 1.120905 -0.233199 1.251544 -0.028076 -0.618578 -0.978504 -1.339885 -0.680000 0.871223 -0.427802 0.646108 -0.180245 -0.440533 -1.838109 1.123407 0.905709 -0.726254 -0.879226 1.127225 -0.856953 0.013893 -0.517298 0.125704 0.074648 -0.003654 0.738024 1.102621 0.597115 0.567162 0.470605 0.355940 2.045464 -1.344597 0.683744 0.280231 -0.009809 -0.456160 0.413424 0.118953 0.212346 0.432782 0.320099 -0.098685 -1.311545 -0.450909 -0.761299 -0.978046 0.786216 -0.252091 -0.033281 -1.001867 0.036884 -0.735164 -0.230516 -1.452719 0.983145 1.379915 -1.074711 0.814945 -0.058816 -0.056087 -0.277604 -0.005947 0.292795 0.274585 0.207170 0.078519 -0.679820 -0.917975 0.174565 0.224590 -0.190079 -0.379310 -1.814608 0.967420 -0.579918 -1.275615 0.050868 0.751165 -0.622981 -0.240576 0.289693 -0.055900 0.643764 -0.688482 -1.037448 -0.072105 0.171133 0.410748 -0.250286 0.039886 -0.720564 -0.425321 -0.761422 -1.383245 0.348148 -0.362830 -0.434241 -0.594794 0.824322 -0.373999 -0.148824 0.153474 0.768801 -0.609345 1.097925 -0.281505 0.868830 0.492425 0.470936 -1.033466 0.213719 1.007386 1.164027 -0.516862 0.480126 -0.960793 0.140694 -0.903029 -0.107661 0.028730 0.682661 0.658046 -1.115146 -0.716083 -0.074438 0.056780 -1.285804 0.355934 -0.661830 -0.227212 -0.017361 0.835377 0.665007 1.063222 1.688725 -0.821570 0.308449 0.109682 -0.393352 1.165283 0.090828 0.901881 -0.597409 -0.778465 0.226531 0.205921 0.255800 -0.223475 0.580471 0.132771 -1.420510 0.064261 -0.008148 0.398001 -0.652851 0.850389 0.889985 0.514855 -1.034526 0.312260 1.031700 -0.568658 0.026549 0.241744 -1.318639 0.579786 0.367134 -0.041096 0.850551 0.139686 -0.584729 0.559814 -0.523256 0.336420 -0.699286 -0.005001 -0.682872 -0.605593 -0.780086 0.250046 -0.190347 -0.678276 -0.271489 -0.386144 1.224351 -0.552326 -0.525152 0.979179 -0.161180 0.063211 -1.454846 2.012204 -0.836945 0.356888 -0.258888 0.059919 -0.018983 0.639500 -1.137767 -0.008545 0.346650 -0.303199 0.853567 1.668809 0.733919 0.086435 -0.213419 1.314459 -0.431740 1.159494 -0.439812 1.148727 -0.343310 -0.862770 0.310377 -0.240496 -0.410452 -0.558045 0.427811 1.637969 0.542808 0.592870 0.953066 0.496282 1.697009 -0.567402 1.069045 -0.244686 0.742258 -0.286633 -0.320895 0.598379 0.263871 -0.332317 0.870549 -1.488308 -1.837169 -0.540419 -1.271867 0.676194 -0.710912 0.356611 -0.471697 -0.066513 -1.553403 -0.964725 -0.009915 -0.477196 0.465366 0.751219 0.231137 0.647319 1.103115 -0.785584 0.235490 0.065326 0.754039 0.359460 -0.641297 -0.742889 0.992644 -0.969831 -0.017948 1.373573 -0.548788 0.322133 -0.283146 0.938233 -0.894109 1.530931 0.219517 -0.367145 1.487446 1.085646 1.353095 0.473612 -0.538228 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::deque() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_base() = -0.422402 -0.197699 1.578721 0.432520 -0.654569 -0.278359 0.828702 -0.684907 0.741040 -0.587305 -0.069896 -0.352785 -1.158898 0.231582 -0.375751 0.239878 -1.352828 -0.777384 -0.335529 -0.914970 -0.588688 -0.661828 1.098424 0.064967 0.709024 0.557120 -0.236500 -0.456767 -0.168416 -0.660461 1.041829 -0.296115 0.498303 0.730042 0.113278 -2.211142 0.697866 -0.155943 -0.529982 -0.284969 0.833505 -0.009375 0.031077 -0.172694 -0.318407 0.187853 0.441783 1.216086 0.883214 0.528279 0.294716 -0.537566 -0.154844 1.388754 -0.784517 0.191098 0.410752 -0.183390 -0.311405 0.201939 -0.293096 -0.410741 -0.052605 0.566578 -0.329223 -0.335616 0.482177 -1.141145 -1.082904 1.011277 -0.034434 -0.130676 -0.666620 -0.578806 -0.545350 -0.184712 -0.483994 0.896938 1.442675 -1.052777 0.500869 0.054700 0.234726 -0.283442 -0.443333 0.043194 0.304552 -0.057313 -0.212601 -0.346911 -0.818999 -0.283989 -0.445962 -0.089760 0.288433 -1.305546 0.702399 -0.892948 -0.834164 0.096229 0.297273 -0.255677 -0.644578 0.240985 0.277811 0.207099 -0.523896 -0.901667 -0.508994 0.043572 -0.091539 0.756797 0.218517 0.286993 -0.518202 -0.587141 -1.311783 0.219889 -0.377817 -0.632879 -0.210063 0.575970 -0.570283 0.543570 0.839111 0.835237 -0.457280 1.360557 0.581974 0.100210 0.437179 0.020069 -0.200526 -0.166813 0.431468 1.332076 -0.092785 -0.288545 -0.479025 -0.078188 -1.030862 -0.531806 -0.053369 0.247071 0.792872 -1.004508 -1.098541 0.217996 -0.410887 -1.705683 0.444745 -0.955695 -0.133691 0.533183 0.099938 0.871802 0.422332 1.539919 -0.781979 0.583196 -0.199135 -0.577375 0.039567 0.409038 0.955200 -0.447180 -0.485594 -0.177170 -0.267040 0.286278 0.018631 -0.580918 0.036532 -1.532293 -0.671626 0.102929 0.446559 -0.285421 -0.075916 0.752641 0.590257 -0.722391 -0.140908 0.938068 -0.208174 -0.414248 0.655302 -0.879508 0.576523 0.041511 -0.228313 0.409574 0.194467 -0.300442 0.777981 -0.411843 0.266335 -0.583081 -0.425670 -0.419118 -0.067458 -0.949106 0.212779 -0.493404 -0.224631 0.117853 -0.401884 0.782297 -0.542744 -0.702432 1.058329 -0.076832 1.065365 -1.276375 1.396817 -0.234714 0.790724 -0.298949 0.102096 -0.310461 -0.330820 0.129475 0.187438 -0.389217 0.395999 0.363507 1.411705 0.324302 0.360716 0.275796 1.317968 -0.177122 0.835647 -0.072947 0.571471 -0.538412 -0.849452 0.492465 0.071506 -0.432427 -0.285219 0.460013 1.158563 0.691180 0.167923 1.329459 0.448964 0.986867 -0.182765 0.284756 0.003533 0.929303 -0.585991 -0.349637 0.530061 0.741875 -0.767078 0.408280 -1.026774 -1.947016 -0.891461 -1.654972 -0.458732 -0.661480 0.420984 -0.370644 -0.034472 -0.494953 -0.204740 0.400812 -0.025835 1.034612 0.627723 0.132632 0.978715 1.640153 -0.792396 -0.318365 0.818313 0.737428 -0.165706 0.097182 -1.097576 0.241356 -0.790190 -0.022124 1.062404 -0.411677 0.167429 -0.695054 1.212798 -1.122848 1.229954 0.251464 -0.354252 1.336539 0.501885 0.684617 1.235296 -0.170472 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.020613 -0.364075 1.593080 1.020165 -0.051065 0.142324 0.484059 -0.919230 0.989565 0.194864 -0.236380 0.171933 -0.856262 0.358357 -0.995030 0.739344 -1.047357 -0.750437 -0.330132 -0.931333 -0.302451 -0.451216 0.704002 -0.185208 0.868731 -0.068916 -0.539793 -0.401772 -1.099846 -0.804952 0.565734 -0.359587 0.336985 -0.538736 -0.229366 -1.353181 1.017071 0.762517 -0.589968 -0.692429 0.780112 -0.750590 -0.015251 -0.350089 0.062380 0.041918 -0.035491 0.506484 0.890565 0.389274 0.547669 0.446111 0.161264 1.786603 -1.088617 0.623121 0.226269 0.044018 -0.362253 0.465406 0.078220 0.174098 0.281386 0.288281 -0.127991 -1.017475 -0.243165 -0.468027 -0.617186 0.712845 -0.334582 -0.235839 -0.694353 -0.058565 -0.878023 -0.248542 -1.162538 0.675532 1.145755 -0.835862 0.606633 -0.013956 0.113090 -0.026372 0.166473 0.164178 0.560610 0.178190 -0.068806 -0.478503 -0.528139 0.341139 0.182616 -0.085363 -0.341132 -1.473725 0.782459 -1.043940 -1.078623 0.099455 0.584480 -0.451277 -0.196238 0.184241 0.096297 0.324665 -0.570040 -0.869314 0.015278 0.251668 0.245006 -0.148027 0.207281 -0.715385 -0.159998 -0.393450 -1.128095 0.264850 -0.223815 -0.283019 -0.547046 0.799313 -0.171105 -0.181463 0.112115 0.632379 -0.460402 0.854924 -0.340521 0.735447 -0.115814 0.559712 -0.991562 0.243183 0.691971 0.414527 -0.468840 0.459965 -0.653902 0.116917 -0.835265 -0.048263 -0.425501 0.509312 0.421311 -0.840187 -0.573189 -0.083137 -0.135078 -1.107279 0.212127 -0.497928 -0.663862 -0.165162 0.711976 0.749597 0.861216 1.230996 -0.555491 0.163581 0.037364 -0.306962 0.968285 -0.301686 0.752475 -0.508442 -0.631043 0.238087 0.166476 0.230258 -0.101561 0.298039 0.072124 -1.138021 0.161147 0.127703 0.417660 -0.358242 0.779089 0.756289 0.394362 -0.997411 0.320007 0.815047 -0.445736 0.057868 0.092604 -0.995376 0.381506 0.421589 0.181362 0.738229 0.125404 -0.364715 0.308949 -0.354757 0.419079 -0.646995 -0.086848 -0.542950 -0.455075 -0.528155 0.259390 -0.265023 -0.430790 -0.300937 -0.616643 0.945764 -0.829894 -0.493037 1.027688 -0.032910 0.248490 -1.075782 1.219556 -0.699274 0.642423 -0.101999 0.249558 -0.042185 0.475365 -0.890039 0.212849 0.288269 -0.324114 0.734613 1.195460 0.598837 0.292793 -0.185049 1.087589 -0.502962 0.856772 -0.392864 0.913342 -0.248594 -0.810273 0.248991 -0.241697 -0.397330 -0.395769 0.498400 1.077055 0.460527 0.420484 0.695258 0.509942 1.278097 -0.454620 0.815339 -0.266199 0.420141 -0.321167 -0.321030 0.489579 0.207072 -0.250329 0.514057 -1.256972 -1.399395 -0.898924 -0.982727 0.570118 -0.683105 0.135115 -0.330772 -0.033840 -1.171094 -0.767243 0.514462 -0.378940 0.462991 0.566839 0.251189 0.519853 0.978343 -0.580168 0.176771 -0.019762 0.453260 0.216222 -0.485425 -0.691979 0.919538 -0.768178 0.045510 1.069903 -0.498437 0.268222 0.121392 0.370215 -0.729948 1.116842 0.240082 -0.279122 1.109166 0.909468 1.197937 0.400953 -0.475299 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 2.600057 -2.661362 16.754493 9.820825 -7.214981 0.473741 0.523615 -7.703761 5.166541 -0.579161 -3.341148 2.315033 -4.030648 1.770260 -1.255421 5.725668 -14.852132 -2.499169 -2.853623 -7.952815 -4.223466 -2.061768 2.497999 1.850270 7.204182 7.506006 -3.512069 -0.407506 1.073345 -8.888694 3.484843 -2.078115 3.577476 2.612357 4.614758 -19.293632 9.425115 4.137254 -3.752859 -6.589864 4.713877 -1.147829 -1.121467 -2.691130 -4.618231 2.223239 0.956015 9.284653 5.161896 3.968835 -1.903345 0.984852 5.634067 15.355938 -1.643443 3.575692 4.434774 -3.373704 -1.734068 0.783494 1.388178 -1.074305 0.503560 0.428786 2.256938 -8.851371 -0.229728 -5.073083 -3.195534 6.153317 1.175794 -5.351382 -5.686346 -5.991297 -6.265266 -1.631363 -12.718636 10.697472 8.983966 -8.604174 3.810435 1.035288 0.192259 1.487689 1.004136 0.850704 6.821498 2.488576 0.568733 0.454167 -0.586104 -6.185501 4.572852 -5.393400 -4.008398 -17.254824 4.987395 -12.062286 -7.342809 3.597878 6.801980 -5.771595 -0.581067 -3.840569 2.389824 1.696832 -3.343663 -4.075564 0.198503 1.870560 -0.716442 0.562487 -0.519580 1.929445 -0.582908 1.385056 -10.420466 5.937000 0.462747 1.131069 1.104033 5.970182 2.299401 -0.865943 0.591027 4.593539 -3.907537 9.894419 -0.103480 5.103152 -2.680976 6.467342 1.880697 5.224288 5.080184 -1.999141 -1.262313 -3.279013 -3.009130 3.132408 -6.237790 1.736392 -3.198418 6.393808 5.327877 -3.339504 -7.098795 -3.480439 -8.448991 -10.277863 1.721216 -3.932212 -7.054156 5.771105 4.461295 6.523261 4.578808 1.443891 -6.411084 0.580852 -2.341129 -0.330768 4.445162 1.226303 5.108882 -4.418209 -1.782272 2.036253 -0.330202 5.375851 -0.059196 -0.949123 2.673821 -6.445050 -0.642706 4.889029 5.512405 -0.622690 4.207552 8.641580 10.320043 -2.285070 -1.778160 5.744802 -4.595705 -2.807945 3.589072 -6.266516 2.392132 2.476575 2.844311 8.097185 0.055281 0.605923 2.820512 -1.717370 0.555624 -3.405288 -1.271212 -3.264092 -0.698958 -2.973495 3.103600 -5.972943 -1.110175 -4.993712 -6.682483 9.168082 -13.481723 -4.012677 10.927084 -5.016933 5.860077 -6.952479 11.473315 -3.840325 5.813872 -0.792683 -1.831782 -0.277842 -5.397813 -7.451160 3.585737 0.721557 0.579704 -0.598695 8.090985 4.315347 0.285995 -2.025766 8.396850 -5.523821 9.327897 -3.560940 7.096572 -3.859600 -1.408106 -1.556172 0.120093 -5.328321 -3.139530 4.396994 5.906634 -0.747814 5.868086 4.558547 3.282016 7.363763 -4.080109 6.070010 -2.188674 2.222618 -4.757644 -4.605199 4.765187 5.994708 -2.223948 2.466104 -11.072031 -9.359889 -16.192874 -4.345623 -2.910599 -2.778902 3.634302 -3.134628 -2.964187 -4.619518 -6.486193 10.761279 -0.700928 -0.652233 5.836053 0.449627 6.679699 8.394831 -1.598439 0.112907 0.250352 2.768528 2.664134 -0.706248 -8.835908 8.686481 -5.771589 -0.042387 12.402166 -4.813110 4.258055 -1.586552 6.796460 -8.021188 7.243462 1.225741 -6.420572 3.748395 10.206864 3.332260 2.544038 -4.591536 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.239800 -0.366758 1.501886 1.113580 -0.692877 -0.018134 0.100848 -0.524864 0.717943 -0.190231 -0.349488 0.125421 -0.583271 0.320870 0.351930 0.759143 -1.680434 -0.382737 -0.007714 -0.499923 -0.302800 -0.324913 0.464766 0.009424 0.633615 1.127585 -0.298512 -0.198651 0.219239 -0.338182 0.795000 -0.522568 0.586338 1.231812 0.271080 -2.284438 0.865990 0.067155 -0.434092 -0.737255 0.365322 -0.422296 0.280551 -0.838626 -0.336706 0.313051 0.298919 1.071038 0.672737 0.349942 -0.419516 -0.218130 0.482380 1.296011 -0.435697 0.211818 0.350939 -0.473873 -0.275134 -0.177458 0.251466 -0.090651 0.366405 0.401804 -0.089756 -0.937189 -0.293132 -0.946203 -0.739418 0.619542 0.143898 0.247590 -0.935199 -0.318607 -0.307405 -0.233297 -1.753006 1.285873 1.154773 -0.986823 0.553808 0.158197 0.248281 0.062003 0.137349 0.329117 0.618322 0.271144 -0.233449 0.188142 -0.256917 -0.900903 0.502253 -0.756907 -0.010949 -1.514194 0.162643 -0.643047 -0.634829 0.332017 0.536594 -0.090518 -0.184545 -0.332538 0.415782 0.520494 -0.471119 -0.549738 0.163937 -0.233847 -0.071689 -0.039532 -0.155958 0.273940 -0.366015 -0.373730 -1.137426 0.187256 -0.101550 -0.203256 0.428169 0.576668 -0.075259 -0.110656 -0.023413 0.221705 -0.424270 1.391196 0.057996 0.430389 0.280745 0.240461 0.104027 0.542658 0.675915 0.716666 -0.055676 -0.425754 -0.421957 0.206949 -0.771990 -0.381597 0.338918 0.546549 0.749515 -0.397586 -0.739482 -0.385279 -0.621906 -1.226301 0.372846 -0.619815 0.133233 0.943941 0.622185 0.563874 0.798322 0.492430 -0.925382 0.252611 -0.489063 0.140262 0.717033 0.979555 0.644943 -0.376004 -0.042749 0.279656 -0.028064 0.340185 0.161151 -0.324687 0.325477 -0.775426 -0.117184 0.611129 0.610610 -0.129012 0.348052 0.492119 0.691425 -0.198590 -0.018182 0.709146 -0.060144 -0.233189 0.483889 -0.672819 0.670556 0.061123 -0.032582 0.258903 -0.058424 -0.277988 0.103464 -0.139970 0.054134 -0.277219 -0.312793 -0.255241 -0.079039 -0.537396 0.604008 -0.545609 -0.443362 -0.281953 -0.106343 0.969096 -0.834341 -0.140371 0.833792 -0.674128 0.752426 -0.682177 1.317115 -0.615142 0.531489 -0.422938 -0.466899 0.010720 -0.609254 -0.545974 0.020276 0.296327 0.273411 -0.275055 0.706705 0.641645 -0.041821 0.070250 0.856462 -0.073191 0.862736 -0.010381 0.611150 -0.377876 0.262263 0.142169 -0.110969 -0.219782 -0.179039 0.319844 1.179288 0.244027 0.743070 0.910088 0.182581 0.720597 -0.552943 0.340624 -0.211925 0.614202 -0.401949 -0.271806 0.228204 0.637193 -0.331438 0.360074 -0.985455 -1.269527 -1.136674 -0.147781 -0.565043 0.063852 0.338110 -0.231020 0.074397 -0.519839 -0.347016 0.462989 -0.274336 0.074650 0.356166 -0.054486 0.667493 0.827374 -0.385218 -0.598024 0.235475 0.321640 0.198862 0.365337 -1.176847 0.873509 -0.812494 -0.009755 1.238717 -0.638918 -0.040433 -0.352490 1.510141 -0.563071 0.976244 0.253001 -0.648078 0.612501 0.966608 0.411864 0.606199 -0.494874 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator() = 0.211826 -0.331391 1.575723 1.170397 -0.523758 -0.035794 0.382275 -0.537557 0.871916 0.251829 -0.256719 0.012387 -0.608315 0.232965 0.666552 0.951341 -1.493004 -0.358599 0.086479 -0.683057 -0.298387 -0.293532 0.473896 -0.270181 0.762142 0.701829 -0.163317 -0.533664 0.221896 -0.397635 0.767920 -0.561760 0.571313 1.064961 0.218537 -2.335901 0.912908 0.026112 -0.499029 -0.708294 0.399385 -0.393482 0.443626 -0.579656 0.039830 0.369607 0.408871 1.111775 0.810348 0.563677 -0.122680 -0.310595 0.558678 1.449022 -0.600415 0.222711 0.214618 -0.595153 -0.352664 0.059650 0.204827 -0.218879 0.410124 0.286077 -0.017831 -1.020033 -0.327823 -0.910682 -0.799012 0.500876 0.260690 0.053721 -0.985366 -0.316204 0.006765 -0.384359 -2.584899 1.220747 1.117117 -1.003705 0.656685 0.265078 0.256401 0.052347 0.151734 0.323759 0.583649 0.177674 -0.285924 0.172461 -0.281475 -1.020740 0.517086 -0.738891 0.047451 -1.482888 0.170893 0.050283 -0.668280 0.428133 0.595220 -0.022055 -0.384353 -0.285666 0.354108 0.565106 -0.534972 -0.636022 -0.006451 -0.297423 -0.143968 -0.043181 -0.234247 -0.123577 -0.475976 -0.409688 -1.101717 0.195123 -0.139740 -0.191363 0.043250 0.601054 -0.130170 -0.151643 0.027702 0.343515 -0.468414 1.328393 0.094381 0.595790 0.532172 0.130504 -0.612555 0.658156 0.775007 0.782970 0.186797 -0.248119 -0.563555 0.192259 -0.844008 -0.070984 0.580108 0.853011 0.961511 -0.425196 -0.682530 -0.284678 -0.270290 -0.978657 0.627698 -0.592499 0.386118 0.573554 0.609675 0.547275 0.823669 0.427486 -1.017191 0.330474 -0.630635 0.204224 0.793975 1.103340 0.753607 -0.422049 0.128189 0.046125 0.251053 0.180931 0.158736 -0.280453 0.412109 -0.857215 0.000647 0.326461 0.439037 -0.401170 0.333819 0.531643 1.227577 -0.345727 -0.086132 0.750854 -0.108681 -0.236637 0.556853 -0.680744 0.659998 0.093610 -0.155219 0.251169 -0.025217 -0.307416 0.071643 -0.237928 -0.041005 -0.143116 -0.314052 -0.283385 -0.275564 -0.336645 0.622882 -0.714722 -0.538110 -0.180921 0.136983 0.956057 -0.355117 -0.060912 0.764316 -0.983929 0.362859 -0.667944 2.051064 -0.680884 -0.018171 -0.769275 -0.542865 -0.166683 -0.008041 -0.551883 0.040075 0.258234 0.245320 -0.089257 0.981904 0.661238 -0.007759 0.032630 0.940091 -0.156909 0.838759 0.048465 0.765323 -0.493762 0.429453 0.036870 -0.070225 -0.153736 -0.141170 0.197306 1.177233 0.197946 0.452980 0.718798 0.180628 0.731072 -0.524334 0.592096 -0.157053 0.734140 -0.357600 -0.237907 0.339601 0.388223 -0.292218 0.398037 -1.048268 -0.981054 -0.536275 0.026781 -0.496121 0.443754 0.291788 -0.194833 0.105832 -0.681483 -0.337442 0.254586 -0.239677 -0.501266 0.269364 -0.050903 0.657413 0.808893 -0.222592 -0.643777 0.003522 0.126458 0.233642 0.090680 -0.897894 0.883261 -0.934167 0.003113 1.075712 -0.518830 -0.141316 -0.355723 1.605666 -0.626230 0.890491 0.147127 -0.408083 0.720401 1.267271 0.743210 0.249396 -0.416715 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.419898 -0.789415 3.800926 1.847715 -0.576490 -0.132586 1.963594 -1.787232 1.767039 -0.235445 -0.327607 0.154859 -2.499750 0.670283 -1.847678 1.134604 -2.661703 -1.873183 -0.772931 -2.063454 -0.910640 -1.209273 2.165608 0.046919 2.169219 0.297657 -1.024608 -1.500605 -2.079253 -1.761460 1.638382 -0.628288 1.119386 -0.171953 -0.353444 -4.175207 1.908217 1.134044 -1.243167 -1.286354 2.218483 -1.030959 -0.155886 -0.510537 -0.206724 0.179448 0.524602 2.016217 2.054591 1.134363 0.982836 0.141823 0.154248 3.858917 -2.152618 1.084121 0.850428 -0.128943 -0.819134 0.736588 -0.262725 -0.390302 0.354029 0.777321 -0.509340 -1.667725 0.230463 -1.734852 -1.939704 1.868040 -0.214616 -0.469647 -1.555816 -0.503391 -1.716069 -0.403185 -1.155797 1.769519 2.917802 -2.085875 1.484309 -0.101896 0.173865 -0.560011 -0.377078 0.240535 0.697154 0.123507 -0.095858 -1.443934 -2.079848 0.253390 -0.410207 0.113329 -0.224027 -3.318967 1.901486 -2.036909 -2.417112 0.042659 1.015478 -1.249015 -0.914223 0.664792 0.274612 0.804511 -1.178166 -2.077377 -0.749700 0.445930 0.131694 0.482387 0.463680 -0.689272 -0.861300 -1.243680 -2.805565 0.751492 -0.636373 -1.032634 -1.179043 1.576934 -0.878559 0.587843 1.081871 1.861725 -1.000232 2.235145 0.253261 0.921530 0.768168 0.601846 -1.375843 -0.137018 1.388472 2.291427 -0.966299 0.266840 -1.442177 0.158615 -1.927193 -0.529949 -0.509317 1.226630 1.348447 -2.357636 -1.896455 0.079013 -0.292468 -2.930227 0.664298 -1.531379 -0.940257 0.136218 0.999911 1.476360 1.379592 3.379013 -1.435005 0.985828 0.236545 -1.144112 1.251456 -0.103233 1.945647 -1.230015 -1.476390 0.108500 0.005859 0.736518 -0.510325 0.280207 0.151579 -3.090489 -0.769945 -0.018996 0.852428 -0.809285 1.017176 1.887675 1.416844 -2.190100 0.173672 1.963250 -1.039171 -0.408790 0.846376 -2.336392 1.054531 0.578027 -0.115784 1.792198 0.448917 -1.047757 1.554984 -0.824693 0.679875 -1.524856 -0.282725 -1.246735 -0.749330 -1.633744 0.166794 -0.688995 -0.852566 -0.464091 -1.237105 2.164801 -1.429127 -1.733127 2.187646 -0.168887 1.237334 -3.295009 3.390684 -1.133491 1.213072 -0.404724 0.380283 -0.284725 0.515256 -1.239100 0.488252 -0.069365 -0.186661 1.678036 3.282058 1.067468 0.702912 -0.088441 2.721493 -0.764212 2.045907 -0.702995 1.771840 -0.886121 -2.182101 0.657996 -0.170368 -0.950783 -0.726610 1.028787 2.623091 1.287559 0.685438 2.294408 1.305235 2.890388 -0.746542 1.470481 -0.384992 1.701873 -0.937205 -0.907811 1.172185 0.976855 -0.974371 1.443486 -2.831154 -3.990305 -1.632930 -3.611752 0.583548 -1.702736 0.842674 -0.855865 -0.207065 -2.481099 -1.348464 0.654998 -0.360482 1.944519 1.667773 0.429501 1.692695 2.764167 -1.608355 0.186701 0.848934 1.650815 0.166425 -0.900258 -1.812526 1.234035 -1.866134 0.195734 2.571412 -1.045094 0.733524 -0.988668 1.825901 -2.295004 2.917102 0.500927 -0.929243 2.811276 1.575232 2.276495 1.486992 -0.807383 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.839070 -0.824392 4.838994 2.031926 -1.090945 -0.051139 2.343173 -2.355453 2.925860 0.165827 -0.752489 -1.150385 -3.106682 -0.051968 -0.331548 0.688543 -3.941018 -2.213945 -0.805272 -2.693114 -1.108443 -2.398843 2.357673 0.067446 2.202341 1.036967 -0.765304 -0.850071 -1.329529 -2.466170 2.775441 -0.946007 1.497564 1.743769 0.453099 -5.832529 2.791144 0.825161 -1.134723 -1.463970 1.797844 -0.503707 -0.259737 0.037612 -0.094836 0.979333 0.867471 3.259587 2.742204 1.031811 1.076364 -1.790851 -0.553724 3.654037 -2.325370 0.894818 0.391537 -1.209736 -0.782230 1.321923 -0.378774 -0.939633 0.618182 2.094379 -0.742519 -1.429502 2.076826 -2.344378 -3.352779 3.249856 0.305575 -1.063890 -1.497181 -1.176142 -1.347571 -0.294652 -0.330442 2.513020 4.083738 -1.565458 2.324286 0.261934 0.745269 -1.065615 -0.705875 -0.108124 2.186396 -0.201086 -0.849603 -1.617064 -3.080560 -1.526662 -0.574000 0.591086 0.454273 -1.869874 1.800310 -2.299861 -2.479173 -0.084976 1.229140 -1.127104 -2.646402 1.224553 1.229293 0.583028 -0.332127 -2.574048 -1.422661 0.659977 -1.875254 1.429015 0.123045 -0.090265 -1.782949 -1.160457 -3.023193 0.317706 -1.050470 -1.256589 -1.335886 2.039234 -1.809717 0.667159 1.805702 2.268245 -0.806601 2.306887 0.532534 1.092086 1.850320 -0.138511 -1.499655 -0.835396 1.297805 3.130609 0.345039 -0.987809 -1.169319 0.357568 -3.142732 -0.560527 -0.747527 1.496348 2.449105 -3.063968 -2.296468 0.329345 -0.512960 -3.952196 0.815553 -2.205328 -0.868043 0.411748 1.333561 2.484768 1.334318 4.044920 -3.049299 1.860814 -0.484063 -1.393834 0.689711 0.789598 2.362727 -1.458578 -1.021772 -0.659139 -0.101945 1.076433 -0.502957 -1.315550 -0.234688 -3.960960 -1.948929 0.682163 0.605907 -0.109195 0.118809 2.695557 3.191634 -3.419765 0.311773 2.915469 -0.381318 -1.322291 1.959366 -2.848122 1.601735 0.408689 0.072927 1.981780 0.275923 -0.934601 1.055131 -1.001458 0.395068 -2.133632 -0.810801 -1.262740 0.590777 -2.026852 -0.102625 -1.957426 -1.257305 -0.452788 -0.836365 2.393470 -0.443869 -3.451182 3.838462 -1.236066 2.391281 -3.985167 3.381375 -1.183716 1.158006 -1.522251 0.170576 -1.007691 -0.150796 -0.803876 0.853938 -0.707910 0.378844 2.319097 4.181486 1.421074 1.103946 -0.118316 3.436099 -0.697951 2.118277 -0.943371 1.647423 -1.094963 -1.701555 0.305914 -0.415475 -0.838474 -0.375790 0.740584 2.573814 2.534052 0.339438 3.320965 1.245877 2.467064 -0.384680 1.554290 0.320712 2.191508 -0.955467 -1.155934 1.759140 1.353663 -2.078169 1.545560 -3.544223 -4.817753 -0.997692 -5.011160 -1.072251 -1.737777 1.419333 -0.247803 0.183538 -2.412305 -0.982056 1.134898 0.420338 3.637315 1.174039 0.109054 1.936923 3.822821 -2.084235 -0.479739 1.337567 1.827103 -0.735465 -1.117882 -2.797572 1.888879 -2.466053 0.803876 3.267767 -1.753382 0.626864 -2.297131 3.123195 -3.772714 3.263429 0.989621 -0.949576 3.026365 0.690761 2.940407 2.321585 -0.993627 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.017259 -0.516354 2.444010 1.752207 -0.748119 0.128804 0.261709 -1.135006 1.047104 0.183289 -0.239618 0.362467 -0.856039 0.408333 0.154505 1.184749 -2.101426 -0.576838 -0.370101 -1.267324 -0.602177 -0.354705 0.592229 -0.000952 1.116477 0.840833 -0.679718 -0.415490 -0.232077 -1.208033 0.799511 -0.520477 0.875437 0.546708 0.228131 -3.673165 1.502544 0.701616 -0.738170 -1.083403 0.830393 -0.672739 0.235986 -0.649163 -0.642847 0.333467 0.157608 0.742874 1.087631 0.613297 0.061202 0.288068 0.797111 2.489906 -0.787803 0.612885 0.481834 -0.664643 -0.628757 0.086323 0.224918 -0.010293 0.579768 0.199406 0.008546 -1.619941 -0.312111 -0.946682 -1.077404 0.854550 0.051207 -0.500285 -1.015315 -0.590238 -0.786925 -0.561235 -1.767675 1.498803 1.525308 -1.372300 0.833113 0.048929 -0.042857 0.202498 0.382589 0.337096 1.035548 0.333731 -0.055793 0.047751 -0.038714 -0.805585 0.731105 -0.281813 -0.426458 -2.199450 0.686979 -1.007051 -1.226607 0.571392 0.975185 -0.504076 -0.879359 -0.720843 0.376725 0.661867 -0.740643 -0.941825 -0.140573 0.145079 0.075209 -0.235830 -0.318273 -0.254225 -0.404454 -0.335172 -1.694840 0.629267 -0.068169 -0.069803 -0.269917 1.050112 -0.080050 -0.290819 -0.021029 0.802228 -0.822342 1.726823 -0.330050 0.926614 0.030859 0.599483 -0.515807 0.277599 0.889627 0.621062 -0.246176 -0.564849 -0.892459 0.323847 -1.156655 0.125707 0.154149 1.185902 1.428677 -0.468525 -0.971543 -0.411111 -0.724076 -1.868713 0.372790 -0.808578 -0.293124 1.030322 0.933697 0.754465 1.095529 0.919030 -1.022712 0.396091 -0.458614 -0.234167 1.290953 0.528547 0.999516 -0.716450 -0.371336 0.383978 0.129101 0.714163 0.072247 0.035594 0.369835 -1.132838 -0.228875 0.617280 0.738097 -0.196946 0.712932 1.108879 2.098591 -0.719553 0.058348 0.966948 -0.583112 -0.142997 0.433281 -1.045468 0.399074 0.450141 -0.210974 1.135321 -0.033755 -0.504105 0.227956 -0.262721 0.205612 -0.600507 -0.017284 -0.571448 -0.074257 -0.608201 0.076804 -0.843937 -0.550589 -0.686031 -0.635421 1.563065 -1.525459 -0.701768 1.527826 -0.818204 0.720949 -1.554404 2.271573 -0.923783 0.768626 -0.800681 -0.454733 -0.081609 -0.171152 -1.192580 0.531901 0.393911 -0.108053 0.014818 1.647272 0.871216 0.121928 -0.357859 1.390196 -0.421272 1.469543 -0.397316 1.423386 -0.569344 -0.021111 -0.039219 -0.170525 -0.548039 -0.431162 0.547116 1.208367 0.316894 0.755324 0.738675 0.716075 1.355774 -0.737450 1.064349 -0.282057 0.712716 -0.531442 -0.519396 0.670038 0.946484 -0.212921 0.557700 -1.697050 -1.587901 -1.700949 -0.752306 -0.182774 0.336123 0.418233 -0.380966 -0.166498 -1.127647 -0.860389 1.145876 -0.385094 0.410993 0.703506 0.202116 0.994589 1.301438 -0.412100 -0.381008 -0.096022 0.296803 0.423576 -0.107829 -1.359455 1.459400 -1.056782 0.066097 1.694536 -0.719968 0.410126 -0.105061 1.443322 -1.010177 1.474115 0.174555 -0.706747 1.159278 1.578318 0.906709 0.266310 -0.694533 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_node() = 0.030755 -0.480498 1.775501 1.157439 -0.299968 0.104022 0.442571 -0.753126 0.726936 -0.107449 -0.306937 0.362753 -0.827519 0.307591 -0.779719 0.596256 -1.313383 -0.703520 -0.337876 -0.828649 -0.307838 -0.308581 0.538169 0.106870 0.932264 0.369386 -0.555913 -0.433870 -1.006593 -0.588685 0.542606 -0.272749 0.484767 -0.088578 -0.015416 -1.825389 0.914060 0.814705 -0.525148 -0.850298 0.815229 -0.705478 -0.024539 -0.540458 -0.195397 0.086435 0.096436 0.632970 0.718730 0.359653 0.091195 0.374420 0.271978 1.836414 -0.720606 0.572589 0.505752 -0.101413 -0.305582 0.172219 0.118365 0.005621 0.248762 0.113819 -0.111243 -1.059628 -0.282376 -0.668416 -0.540054 0.630405 -0.102715 -0.215769 -0.696376 -0.256893 -0.977618 -0.242811 -1.006935 0.935533 1.119755 -1.034167 0.650679 -0.027963 0.091705 0.048712 0.172946 0.251447 0.458975 0.246294 0.078997 -0.329817 -0.651907 0.043869 0.232307 -0.221174 -0.444578 -1.663078 0.808726 -1.191785 -1.057374 0.170087 0.600705 -0.602290 -0.100596 0.039464 0.026833 0.476820 -0.543365 -0.701039 -0.003720 0.250690 0.233879 -0.128500 0.108840 -0.258776 -0.183110 -0.482369 -1.238027 0.538033 -0.069273 -0.148111 -0.245288 0.817142 -0.160056 -0.066536 0.052836 0.569462 -0.517706 1.109007 -0.175043 0.505937 -0.085716 0.451583 -0.576574 0.198659 0.688508 0.667384 -0.605128 0.131342 -0.544471 0.193465 -0.680038 -0.147070 -0.261379 0.615050 0.437485 -0.811206 -0.692165 -0.352919 -0.440902 -1.165506 0.078400 -0.469569 -0.558076 0.344496 0.687287 0.794766 0.737256 1.179817 -0.555731 0.156823 0.048143 -0.369086 0.815171 -0.032003 0.699008 -0.546920 -0.563595 0.325039 0.002604 0.477439 -0.082269 0.344043 0.177083 -1.060130 -0.016943 0.296921 0.547046 -0.244598 0.813692 0.910803 0.365444 -0.824560 0.098552 0.690564 -0.566074 -0.088077 0.227904 -0.918790 0.377098 0.368113 0.042452 0.867359 0.106059 -0.325551 0.417776 -0.292222 0.290984 -0.589687 -0.038034 -0.507592 -0.366835 -0.583350 0.237401 -0.365784 -0.396410 -0.512816 -0.776210 1.113032 -1.076072 -0.561522 0.892988 -0.040339 0.447453 -1.210101 1.210992 -0.662868 0.818301 -0.028844 0.049416 0.044717 0.054012 -0.944537 0.213671 0.281405 -0.307985 0.405964 1.128423 0.615022 0.122585 -0.199251 1.056291 -0.494455 1.007282 -0.416960 0.817570 -0.324437 -0.703740 0.189497 -0.150733 -0.436320 -0.319049 0.504707 1.148171 0.307455 0.712981 0.732886 0.561644 1.223540 -0.507450 0.623088 -0.285147 0.565059 -0.402175 -0.439074 0.408836 0.517815 -0.118213 0.435034 -1.313423 -1.534802 -1.194281 -1.042562 0.409548 -0.655671 0.198517 -0.324919 -0.164487 -1.131400 -0.828958 0.476538 -0.327570 0.621257 0.663502 0.158187 0.688581 0.894005 -0.587361 0.103562 0.224214 0.619222 0.295391 -0.282096 -0.932604 0.934243 -0.799345 0.001989 1.357960 -0.566609 0.454338 0.020548 0.717556 -0.810192 1.248261 0.206115 -0.723921 0.904349 1.037311 0.891580 0.402366 -0.544996 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.120600 -0.182782 0.123618 0.108429 -0.038850 0.046941 -0.015737 0.082391 0.062242 -0.108214 -0.101779 0.045547 -0.164303 0.004410 0.009524 -0.063289 -0.117957 -0.153599 0.019008 0.078293 -0.027991 -0.119320 -0.059672 0.134182 -0.008529 0.242750 -0.047166 0.091548 -0.191973 0.109380 0.057351 -0.025585 0.078812 0.287037 0.116756 -0.110792 -0.027730 0.092824 0.017959 -0.193675 -0.032392 -0.113780 0.106158 -0.157680 0.006283 0.093504 0.112514 0.022994 -0.021948 -0.045695 -0.107068 -0.161203 -0.081574 0.017280 0.051573 0.055943 0.163582 -0.000406 0.053051 -0.133670 0.049618 -0.076244 0.046360 0.093873 -0.166044 0.021487 -0.053510 -0.163128 -0.076568 0.067670 -0.015813 0.109939 -0.125857 -0.152072 -0.127595 -0.037108 -0.179976 0.113218 0.203320 -0.165006 0.148985 0.084507 0.196525 0.052211 0.098918 0.042871 0.057673 0.043289 -0.103376 0.133484 -0.114368 -0.053784 -0.062436 0.002080 -0.030543 0.075100 0.048642 -0.196034 -0.102486 0.063562 -0.077311 0.063060 -0.005346 0.126029 0.009690 0.135041 -0.060387 -0.088667 0.003309 0.011319 0.044246 0.019765 0.038255 0.170587 -0.076573 -0.171976 -0.148087 -0.018907 0.068679 -0.128215 0.146905 0.141552 -0.112458 0.128016 -0.001487 -0.094211 -0.009145 0.304183 0.159992 -0.081805 -0.078464 -0.139883 -0.133690 -0.015104 0.018121 0.264649 -0.133604 -0.015925 0.107133 -0.031579 0.007870 -0.176352 -0.012427 -0.029598 0.070687 -0.113979 -0.113556 -0.179732 -0.182946 -0.190192 -0.030366 -0.082714 0.115821 0.197312 0.086806 0.215137 0.014810 0.346582 -0.112462 -0.003910 -0.039313 -0.094190 -0.048104 0.206059 0.046925 -0.053603 -0.069414 0.113499 -0.006789 0.045457 0.148122 -0.115746 0.012225 -0.090100 -0.025464 0.216400 0.110764 0.057456 0.149989 0.061455 -0.241889 -0.052457 -0.012646 -0.005424 0.065931 -0.036430 0.035629 -0.090675 0.160704 -0.035383 -0.040639 -0.043480 -0.019443 0.005721 0.060877 -0.057063 0.067420 -0.120215 0.004380 -0.053442 0.041834 -0.191599 0.142362 -0.066164 -0.062620 -0.013211 -0.022540 0.151475 -0.011708 -0.033165 -0.048723 0.162486 0.212669 -0.065791 -0.126454 -0.051241 0.353006 0.028105 -0.021737 0.029705 -0.146095 0.133114 -0.105776 0.068957 0.008908 -0.121514 -0.034701 0.049156 -0.062077 0.128991 0.074343 0.050754 0.002290 0.013760 -0.062804 0.019533 0.013456 0.138289 -0.055916 0.077616 0.093659 -0.038723 0.216231 0.158229 0.114685 0.170275 0.023702 -0.013201 -0.063034 -0.175755 0.012721 0.216680 -0.114761 -0.031309 -0.134461 0.182024 -0.021258 -0.099931 -0.088366 -0.256494 -0.096306 -0.116697 -0.127987 -0.061689 -0.046661 0.075139 0.024144 -0.006162 -0.039371 0.060038 -0.069061 0.339919 -0.066448 -0.014135 0.161042 0.095985 -0.125894 -0.150625 0.201321 0.068805 -0.072643 0.186954 -0.191583 0.044055 -0.136963 -0.004908 0.160403 -0.124659 0.028476 0.077509 0.224321 -0.089124 0.228332 0.115996 -0.221120 0.054276 0.077247 0.127462 0.116837 -0.098003 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::push_back(int const&) = 1.593463 -1.166333 8.946647 6.090056 -2.288172 0.480470 0.218929 -5.200769 3.808786 0.552082 -1.360632 1.621589 -2.347515 1.785137 -2.374203 4.329366 -7.198459 -1.993012 -2.138291 -4.974245 -2.313273 -0.977687 2.197086 -0.175750 4.352460 2.593934 -2.786249 -0.438557 -1.577702 -5.852482 1.733001 -1.333336 1.825488 -0.457182 1.056162 -8.636688 5.994516 3.347376 -2.592343 -3.502420 3.138258 -2.202842 -0.816478 -1.757429 -1.248207 1.100804 -0.341950 3.310872 3.861444 2.431192 0.775373 2.470590 2.774771 8.088335 -2.794443 2.601915 1.768350 -1.195049 -1.520422 1.262156 0.664894 0.704287 0.842898 0.343028 0.831651 -5.943292 -1.010756 -2.098337 -1.954910 3.561836 -0.429446 -2.952038 -3.358273 -2.114876 -3.793377 -1.008813 -6.668971 4.838956 4.875857 -4.417865 1.871888 0.018820 -0.401268 0.493742 1.081727 0.495148 3.973455 1.474964 0.447646 -0.785831 -0.343859 -1.853416 2.598834 -1.725572 -2.538402 -8.504877 3.098456 -6.679274 -4.661239 1.391340 4.019662 -2.944132 -1.060593 -1.509153 1.108394 0.977286 -1.756993 -2.722388 0.883214 1.108914 0.603428 -0.822961 -0.420650 -1.436518 -0.277914 0.799034 -6.082285 2.894370 -0.304665 0.531208 -0.981497 3.438950 1.156881 -1.691278 -0.279184 2.927979 -2.421699 4.763696 -1.951497 3.919907 -1.237998 4.143481 -1.158231 2.913908 3.251807 -1.515583 -1.722372 -0.034859 -2.881736 1.430170 -4.268799 1.116858 -2.435219 3.617732 3.047264 -2.270710 -3.668084 -1.145722 -3.331212 -5.458789 0.972683 -2.223423 -4.251154 1.160877 3.195630 3.236203 3.802675 2.138866 -3.008873 -0.048528 -0.477222 -0.221128 4.512918 -0.662851 3.185596 -2.539516 -1.822817 1.873150 0.183421 1.971576 -0.250374 0.957592 1.266634 -4.232468 0.288521 2.480283 2.362800 -0.684439 3.244188 4.325834 5.123552 -2.174193 0.391694 3.615740 -2.717778 -0.487702 1.107905 -3.792534 1.119362 1.870916 2.162810 4.863802 0.214207 -0.504185 0.940656 -0.696033 1.153630 -2.212539 -0.377839 -2.066297 -0.891948 -1.520342 1.149230 -2.183803 -1.091180 -2.382988 -3.686429 5.059603 -6.393221 -2.460428 6.357650 -2.706076 2.097673 -4.451757 5.736010 -3.041827 2.607503 -0.585878 -0.060605 0.095510 -1.275160 -5.450257 2.241607 1.306902 -0.694965 1.072348 4.987766 2.733828 0.657312 -1.719648 4.643005 -3.161462 5.576174 -2.032311 4.997238 -1.736454 -1.479398 -0.582018 -0.487461 -3.179676 -2.493532 2.344905 3.668636 0.093039 3.076405 2.129731 2.029825 5.558533 -2.675757 4.637244 -1.323560 0.547901 -2.243762 -2.326344 3.250180 1.906186 -0.828987 2.035911 -6.150291 -5.113319 -7.603831 -3.034502 0.621765 -1.746883 1.738177 -2.057982 -1.489706 -3.639362 -4.159517 5.447941 -0.848046 0.315766 3.270357 0.758701 2.777601 4.447259 -1.292762 0.760196 -1.284584 1.315412 1.950744 -1.643839 -4.240785 5.560253 -2.686957 -0.191529 6.411920 -2.672693 2.318336 -0.182711 2.625331 -3.586745 4.195495 0.398582 -2.351956 3.448009 5.341713 3.253245 1.041452 -2.622585 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.454650 -1.415683 10.976578 7.255382 -3.804405 0.502429 -0.134304 -6.096897 4.514725 -0.756527 -2.126724 1.616095 -2.715706 2.150751 -3.379919 4.586684 -9.730788 -2.266901 -2.670288 -5.951044 -2.654838 -1.081067 2.249859 0.236066 5.019292 4.105398 -2.994607 -0.145625 -1.410499 -5.544933 2.683105 -1.665808 1.969327 0.319550 1.764972 -10.836451 7.062670 3.725023 -3.131663 -4.372030 3.567404 -3.013502 -1.119229 -3.084151 -2.172824 0.984731 -0.479461 5.362917 4.278175 2.278790 -0.438924 2.918503 3.109540 10.547407 -3.114105 2.910838 2.360055 -1.338953 -1.541212 1.363771 0.843809 0.950307 0.642134 0.313755 1.130949 -7.186633 -1.302000 -3.136528 -1.757502 4.399982 -0.343523 -3.023099 -4.151539 -2.594822 -5.473251 -1.058392 -9.272228 6.882896 5.891541 -6.045330 1.969058 0.106010 -0.267667 0.971719 1.292389 0.866243 5.196173 1.878881 0.842668 -0.639781 -1.080469 -2.405251 3.415476 -3.988703 -3.184524 -11.911763 3.691466 -9.510895 -5.388325 1.558363 4.887567 -3.856877 0.255160 -2.085120 1.276940 1.001942 -2.240618 -2.888739 1.490080 1.450741 0.812503 -0.662011 0.059471 -0.542774 0.293062 0.356621 -7.459761 3.878942 -0.319011 1.035126 0.110516 4.322404 1.560148 -2.280046 -0.321569 3.133897 -2.942893 6.390570 -2.349293 4.195099 -1.934927 5.250187 -0.123590 4.267122 3.930486 -1.573625 -1.994102 -0.005271 -2.916643 1.949661 -5.144676 0.515531 -2.961662 3.751728 2.258839 -2.956727 -4.310566 -1.869561 -4.771743 -6.606567 0.709044 -2.577229 -5.764386 2.412922 3.897589 5.200979 4.610201 1.907626 -3.710278 -0.278202 -0.764968 -0.022601 5.140072 -0.420958 3.615145 -2.912101 -2.018237 2.166956 -0.615294 2.919707 -0.318926 0.918422 1.416262 -5.102035 0.574570 3.252268 3.549825 -0.663687 4.304610 5.583613 4.061064 -2.818215 0.540315 4.372359 -3.580682 -0.774712 1.548701 -4.427533 1.596667 2.331238 2.659634 5.359664 0.116670 0.037194 0.992298 -0.838801 1.322299 -2.515193 -1.312741 -2.311772 -1.577516 -2.207469 2.501725 -2.823775 -1.277395 -3.255649 -5.235043 6.070013 -9.243079 -2.429947 7.846749 -3.052032 3.185360 -4.757670 6.318627 -3.651929 3.976637 0.106372 -0.053933 0.223424 -2.543436 -6.797930 2.544456 1.575578 -0.883807 0.722679 5.344161 3.495144 0.765880 -1.826024 5.834008 -4.185477 6.854226 -2.718956 5.573084 -2.148272 -2.052982 -0.470756 -0.566989 -3.962162 -2.864223 3.707194 5.214511 -0.186018 4.966719 3.142705 2.507839 6.464460 -3.113860 4.872305 -2.046053 0.273299 -2.907062 -2.798664 3.737025 2.544369 -1.054147 2.086506 -7.591416 -6.886629 -11.035045 -2.774761 0.726734 -3.519629 1.897612 -2.469416 -1.708517 -4.401678 -5.165743 6.194460 -1.260434 -0.425833 4.075363 0.688412 3.473183 5.442921 -1.783181 0.887254 -0.393070 2.205146 2.470287 -1.328393 -6.104753 6.999043 -3.467096 -0.335680 8.607335 -3.500144 2.988309 0.005216 3.664833 -4.310487 5.109443 0.695070 -3.822570 3.524320 7.084516 3.080384 2.473430 -3.327407 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::size() const = 0.529537 -0.209094 1.822897 1.211108 -0.646151 0.072147 -0.161702 -0.998133 0.734940 -0.067615 -0.431919 0.276326 -0.355492 0.352911 -0.603589 0.833457 -1.538249 -0.275203 -0.437378 -0.967629 -0.492000 -0.104607 0.273583 -0.048828 0.836137 0.859317 -0.425506 0.121098 -0.101518 -1.061425 0.243104 -0.229972 0.173298 0.092486 0.435287 -1.274429 1.160046 0.641950 -0.511691 -0.716766 0.506598 -0.392648 -0.166062 -0.431208 -0.143459 0.267408 -0.050281 0.935811 0.653055 0.497173 -0.023421 0.419421 0.655512 1.531542 -0.348153 0.495476 0.463582 -0.156952 -0.142828 0.229046 0.157114 0.124184 -0.067458 -0.055624 0.283384 -1.164925 -0.354162 -0.464640 -0.040132 0.665927 -0.166959 -0.630720 -0.756648 -0.649770 -0.803376 -0.160377 -2.438466 1.090704 0.900966 -1.078516 0.237614 0.118913 -0.009151 0.227806 0.228157 0.110872 0.779000 0.359099 0.142295 0.122020 0.158236 -0.457427 0.650011 -0.827789 -0.643900 -2.016666 0.649211 -1.666810 -0.876218 0.351494 0.838186 -0.606186 0.339365 -0.242117 0.088199 0.090434 -0.396198 -0.375425 0.469572 0.171716 0.279217 -0.063339 -0.002909 -0.016655 0.112973 0.312029 -1.254428 0.722625 -0.014612 0.228627 0.161386 0.685494 0.544360 -0.382898 -0.110532 0.411677 -0.436043 1.203171 -0.300620 0.746236 -0.629340 1.099138 -0.107606 1.077274 0.709741 -0.737863 -0.374961 0.194662 -0.361451 0.293120 -0.810412 0.180999 -0.686302 0.578224 0.359860 -0.450580 -0.763239 -0.351013 -1.063399 -0.993448 0.175563 -0.345897 -1.038863 0.247389 0.599493 0.951946 0.719291 0.160395 -0.612606 -0.379631 -0.182077 0.064067 0.757640 0.020186 0.586801 -0.469885 -0.239995 0.421968 -0.043178 0.365255 0.098160 0.129357 0.322407 -0.788614 0.422419 0.731365 0.598639 -0.216344 0.775400 0.926626 0.473832 -0.126196 -0.039382 0.661898 -0.573146 -0.157789 0.275049 -0.664815 0.305278 0.345357 0.683703 0.767627 0.048382 0.322153 0.171587 -0.221491 0.229339 -0.348640 -0.261531 -0.346049 -0.333056 -0.273313 0.740687 -0.458281 -0.115260 -0.424984 -0.862562 0.949086 -1.535304 -0.046376 1.207601 -0.459033 0.427140 -0.350326 0.952714 -0.569178 0.686947 0.163378 0.008757 0.091322 -0.544810 -1.014818 0.318805 0.254698 -0.027227 -0.064056 0.671516 0.534657 0.002450 -0.247011 0.931551 -0.885395 1.141046 -0.374792 0.853723 -0.339486 -0.215016 -0.057439 -0.050315 -0.773448 -0.528443 0.527837 0.911233 -0.213618 0.799046 0.378516 0.197320 1.033284 -0.555100 0.812456 -0.305627 -0.011900 -0.613372 -0.513557 0.642952 0.383887 -0.133466 0.160493 -1.199504 -0.919205 -1.920908 -0.138935 0.020580 -0.609694 0.284374 -0.441915 -0.374615 -0.437914 -0.951445 1.366297 -0.214224 -0.456695 0.578171 0.085719 0.577656 0.846698 -0.128479 0.205932 -0.191891 0.274467 0.493765 -0.128065 -0.903547 1.174088 -0.512702 -0.230575 1.390841 -0.589137 0.510320 0.181272 0.515788 -0.688259 0.644713 0.040569 -0.609528 0.508119 1.386978 0.528995 0.326774 -0.541702 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::max_size() const = -0.060684 -0.242359 0.738344 0.473410 -0.178748 0.088897 0.126817 -0.321186 0.369198 -0.274256 -0.171404 0.073556 -0.459349 0.123200 -0.406863 0.083453 -0.625894 -0.380420 -0.189902 -0.345308 -0.128666 -0.227405 0.176959 0.144704 0.316640 0.303078 -0.238947 -0.035086 -0.596292 0.013104 0.351697 -0.094790 0.201794 0.176148 0.063672 -0.713797 0.341946 0.382169 -0.206700 -0.399274 0.304938 -0.458476 0.039302 -0.379317 -0.068254 0.042176 0.000734 0.287233 0.307270 -0.017211 -0.057894 0.096085 -0.107515 0.716243 -0.362575 0.256861 0.235149 0.005446 -0.100967 0.050295 0.023278 0.035807 0.118039 0.114434 -0.241600 -0.418390 -0.080330 -0.390590 -0.244398 0.348045 -0.064056 -0.017954 -0.330669 -0.177352 -0.578461 -0.123543 -0.408217 0.450285 0.527992 -0.508423 0.293008 -0.014256 0.145100 0.060108 0.182029 0.113102 0.321353 0.079209 -0.014665 -0.075723 -0.490448 0.073347 0.044521 -0.152517 -0.193512 -0.614260 0.328009 -0.760649 -0.497402 0.018822 0.194140 -0.230525 -0.028037 0.159540 0.016704 0.195511 -0.224275 -0.346867 0.068977 0.202233 0.094793 -0.001713 0.109226 -0.010719 -0.077981 -0.424329 -0.578562 0.230950 -0.022720 -0.078573 -0.009787 0.470348 -0.206172 -0.033630 0.054699 0.156716 -0.240070 0.624346 -0.096176 0.084333 -0.126197 0.080099 -0.256649 0.042721 0.241949 0.506301 -0.337329 0.066271 -0.145990 0.037160 -0.352782 -0.254709 -0.168892 0.144100 0.056562 -0.454643 -0.277190 -0.193253 -0.297079 -0.626540 -0.041567 -0.204594 -0.247011 0.218702 0.332766 0.606711 0.329979 0.695463 -0.242018 0.033708 0.022110 -0.231211 0.344356 0.088992 0.320809 -0.251966 -0.297114 0.184381 -0.146712 0.230244 0.027888 0.106105 0.005935 -0.523612 -0.021698 0.213460 0.298594 0.010915 0.466968 0.457555 -0.243660 -0.488252 0.140517 0.302320 -0.212625 -0.030297 0.095383 -0.383972 0.231915 0.187030 -0.019886 0.325502 0.011574 -0.100667 0.117421 -0.117338 0.237562 -0.362005 -0.103781 -0.225858 -0.137550 -0.417555 0.200526 -0.167970 -0.236487 -0.239024 -0.437898 0.501104 -0.467446 -0.287645 0.422769 0.149372 0.394976 -0.507123 0.202474 -0.298674 0.628024 0.052930 0.090355 0.033682 -0.092606 -0.352575 0.075007 0.127525 -0.170538 0.130975 0.400044 0.301585 0.082713 -0.020822 0.487685 -0.190761 0.402567 -0.232008 0.300013 -0.102341 -0.351550 0.243550 -0.121579 -0.155961 -0.069598 0.254705 0.662049 0.292981 0.463669 0.428226 0.268874 0.488104 -0.196685 0.090288 -0.133170 0.223405 -0.196628 -0.202545 0.122736 0.283344 -0.053669 0.058721 -0.587946 -0.866147 -0.559959 -0.534622 0.213216 -0.473272 -0.009089 -0.024896 -0.032317 -0.501191 -0.342402 0.147103 -0.203145 0.599699 0.179757 0.061677 0.337362 0.485783 -0.406493 0.010441 0.342607 0.353623 0.050380 0.006126 -0.598789 0.485440 -0.369439 0.020184 0.682153 -0.327425 0.228461 0.057206 0.410018 -0.380010 0.622980 0.146052 -0.435875 0.412282 0.428403 0.407147 0.414338 -0.266229 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.687100 -1.333181 4.115750 2.850164 -0.762845 0.797575 -0.084913 -1.509203 0.857765 0.687100 -0.817709 1.641246 -1.186674 0.436554 -0.699167 1.232205 -2.774156 -0.871077 -0.815565 -1.378721 -0.743432 -0.556011 -0.309291 1.402620 1.785095 1.171675 -1.203870 0.446523 -1.519690 -2.916148 -0.467844 -0.265004 0.843305 -0.731019 1.623815 -2.779829 2.459511 2.171303 -0.432769 -2.295226 1.025120 -0.611915 -0.298070 -0.425159 -0.596368 1.038497 0.751075 1.355669 1.073475 1.153828 -0.565106 0.413740 1.744727 2.948743 0.067788 1.475827 1.749105 -0.660641 0.397878 -0.136631 0.034904 -0.580030 -0.040139 -0.318879 0.258251 -1.964581 -0.261394 -0.250838 -0.164266 1.114030 0.178326 -1.497351 -1.560662 -1.511049 -2.412743 -0.180612 -2.408444 2.039329 2.328397 -1.780996 1.345707 0.426945 0.355442 0.876876 1.133632 0.222043 1.366177 0.816405 -0.271016 0.368401 -0.532612 -1.018671 0.739885 -0.581817 -1.579425 -3.375763 1.180968 -3.718048 -2.098631 1.282041 0.885328 -1.667356 0.126625 -0.922914 0.424753 0.660353 -0.711849 -1.187857 0.373568 0.952030 0.217355 -0.399598 0.411568 -0.173114 0.122275 0.577504 -2.393495 1.491416 0.849258 0.051435 -0.072880 1.891397 0.705318 0.504542 -0.196998 1.035224 -0.719930 1.924316 0.403619 1.396100 -1.312652 1.024098 -0.479271 1.275925 0.925541 -1.470894 -1.100222 0.115073 -0.402494 0.911177 -0.630510 1.123441 -1.269881 1.872918 0.723562 -0.809262 -1.572977 -1.388747 -2.291232 -1.549182 0.235827 -0.445087 -2.532989 0.705784 1.296627 0.885676 0.755322 0.574968 -0.995944 -0.577809 -0.179764 -0.158338 1.062441 -0.726065 0.946966 -1.225177 -0.806734 1.256529 0.557164 1.086629 0.200511 0.067597 0.949773 -1.055814 0.499406 1.262697 1.023800 -0.166914 2.188665 2.093128 2.008510 0.076360 -0.643169 0.827260 -1.354201 -0.330717 0.251311 -1.541786 0.577253 0.784319 0.975961 2.565513 -0.032453 -0.107909 1.411004 -0.201443 0.424500 -1.075714 0.455176 -1.067239 -0.265313 -0.533638 0.417351 -1.115937 -0.318010 -1.718530 -1.635981 2.498507 -2.991981 -1.095677 1.820634 -0.567283 1.131127 -1.819960 2.157216 -1.071289 1.758345 0.848883 -0.116730 0.413734 -0.718564 -1.757260 0.637299 0.703116 -0.591412 0.331819 1.130957 0.849057 -0.223651 -0.279462 1.540083 -1.400314 1.666176 -1.103637 1.267875 -0.803563 -0.137528 -0.603465 -0.128461 -0.885601 -0.504726 0.508646 0.240983 -0.358538 1.029104 0.355786 1.189602 1.373166 -0.844128 1.237613 -0.873323 0.594496 -1.651150 -1.220284 0.489885 1.267004 0.430916 0.770658 -2.982127 -1.639880 -3.653346 -1.223366 -0.383264 -0.356677 0.572772 -0.253444 -0.908294 -1.548041 -2.124440 3.189071 0.002945 -0.084189 1.658733 0.224740 1.577514 1.405287 0.221884 0.036758 -0.434533 0.490284 0.524618 -0.202437 -1.509196 1.983123 -1.553910 0.151251 2.856849 -1.289956 1.467838 -0.131472 0.522219 -2.200588 1.957835 0.582652 -1.920497 0.488620 2.736595 1.337992 -0.674137 -1.316162 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.270414 -2.492304 5.492200 3.919477 -0.739328 1.947948 -0.280389 -1.371749 -0.351708 1.005609 -0.326199 3.064427 -1.735976 0.274850 -0.364393 0.640762 -2.845681 -0.892202 -1.393972 -1.555931 -0.210261 -0.451997 -1.300817 3.543338 2.041207 0.801199 -1.866872 0.472538 -3.408384 -3.724195 -0.930377 0.085516 2.030322 -1.817752 2.267362 -4.924084 3.036481 3.799113 -0.123159 -3.391007 1.686860 -0.546455 -0.257637 -0.040312 -2.386447 1.453072 1.054403 -0.839224 0.927469 1.189885 -1.282809 0.796531 2.863811 3.592288 0.605083 2.123586 2.465114 -1.463164 1.119433 -1.042478 -0.665172 -0.882054 0.163109 -1.244172 0.197390 -2.542012 -0.075574 0.417342 -0.620458 0.597071 0.210263 -2.064551 -1.249330 -1.755146 -4.055402 -0.370797 1.177272 2.091026 2.601555 -1.478752 2.353829 -0.097677 -0.286667 1.699053 2.215955 0.867082 0.628887 1.045250 -0.094854 0.983918 -0.476897 -0.197746 0.709198 1.096563 -2.662111 -3.360836 1.701377 -4.090260 -2.362268 2.368645 0.472565 -2.837004 -0.865463 -2.696310 -0.220939 1.547977 -1.370649 -1.703568 -0.183510 2.491931 0.893920 -0.896467 0.519391 -0.461321 0.158420 -0.255113 -2.142452 2.543340 1.776576 0.171068 -0.741694 2.968920 0.442754 1.220095 -0.272284 2.013411 -1.695356 2.010133 0.802848 1.540229 -2.392128 -0.079906 -0.338291 -0.663464 0.616492 -0.961008 -1.856464 -1.250222 -0.833497 1.247885 0.663889 2.081632 -0.404553 2.533658 1.444206 -0.306949 -1.163670 -2.029497 -2.757639 -2.249928 -0.763292 -0.118414 -3.321985 2.662568 1.507021 -0.234322 0.477371 1.090580 -0.295606 -0.546810 -0.211995 -1.534328 1.226448 -1.671017 0.672344 -1.601799 -1.504936 1.780503 0.586853 2.429697 0.328300 0.529323 1.169685 -0.192367 0.568189 1.239828 1.382219 0.107379 3.204284 3.192393 3.669743 0.844878 -1.528389 0.329306 -2.729305 -0.136733 -0.275087 -1.621475 -0.300826 1.651268 -1.183562 4.354541 -0.436757 -1.014207 2.816210 -0.258532 0.627407 -1.709536 2.113359 -1.621499 0.397086 -0.951289 -2.126184 -1.435130 -0.655559 -3.537486 -2.563011 3.624441 -4.633870 -1.990763 1.300292 0.538948 1.024685 -3.525090 2.695036 -1.241336 3.052654 1.566470 -0.374147 0.548235 -0.000484 -2.319554 0.891930 0.928660 -1.942865 0.651274 1.796833 0.985751 -1.003151 -0.745510 1.800451 -1.287774 1.667217 -2.144040 1.414352 -1.214284 0.133882 -0.802654 -0.123683 -0.935020 -0.605358 0.425790 -1.650356 -0.554416 1.051408 -0.777334 2.643606 1.134406 -0.232511 0.915563 -1.526557 1.062591 -1.942945 -1.623991 0.025514 3.153215 1.979484 1.014465 -4.205849 -1.931514 -4.651596 -2.245134 -0.002785 1.078437 0.245703 0.589006 -1.279917 -2.882923 -2.940087 4.047807 -0.094994 1.643384 2.533714 0.487861 2.242648 1.378890 0.626897 -0.201875 -0.345836 0.972182 0.709133 0.369758 -1.803479 2.371254 -2.185718 0.401491 3.535167 -1.403199 2.684379 0.092447 -0.218578 -3.426389 3.342661 0.910205 -2.861190 0.668372 3.044488 0.807429 -1.851566 -1.416275 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.086689 -0.647507 2.610509 1.578740 -0.225793 0.001111 1.312915 -1.082872 1.328305 0.393354 -0.372993 -0.093612 -1.503861 0.259452 -0.861198 0.937035 -1.724315 -1.107209 -0.453712 -1.289787 -0.149468 -0.778609 1.438791 -0.234092 1.514665 0.010542 -0.609245 -1.193247 -1.234959 -0.991098 1.312925 -0.535678 0.926281 -0.052301 -0.564223 -2.862488 1.394007 0.995645 -0.826998 -1.007163 1.336312 -0.592013 -0.148495 -0.348486 -0.278978 0.129648 0.151506 1.049469 1.264107 0.722008 0.660603 0.021980 0.450012 2.680206 -1.464821 0.655209 0.258997 -0.250190 -0.510098 0.566569 0.126469 0.039738 0.419421 0.619069 0.178204 -1.359061 -0.008934 -1.040678 -1.522449 1.180333 -0.350791 -0.098214 -0.889728 -0.000545 -0.840653 -0.140725 -0.889062 1.267012 1.820006 -1.097327 1.180104 -0.030490 -0.148989 -0.455307 -0.580634 0.368062 0.166858 0.176264 0.165357 -0.996523 -1.037554 0.015351 0.164341 -0.034504 -0.290756 -2.005141 1.385408 -0.649137 -1.328890 -0.017550 0.945323 -0.863969 -0.445339 0.294100 -0.100414 0.791616 -0.633957 -1.139923 -0.417509 0.208429 0.147735 0.067479 0.013053 -0.437711 -0.647801 -0.803310 -1.571552 0.372769 -0.650770 -0.577521 -0.654295 0.890407 -0.622544 -0.013246 0.459649 1.183387 -0.655600 1.232802 -0.076379 1.037082 0.747277 0.526115 -0.929387 -0.344570 1.193870 1.690944 -0.242083 0.080028 -1.041391 0.234352 -1.094254 -0.164546 0.084454 0.619131 1.040081 -1.474504 -0.855250 -0.062734 -0.024650 -1.773352 0.214483 -0.966431 -0.277397 0.472826 0.929542 0.882936 1.093885 2.329733 -1.339441 0.620566 0.005216 -0.849311 0.880748 0.073054 1.030873 -0.628320 -0.831921 -0.079191 0.203713 0.649731 -0.387372 0.323227 0.028206 -1.811907 -0.174082 0.108591 0.434320 -0.734435 0.491422 1.271746 0.981938 -1.474437 0.257426 1.400861 -0.610681 -0.285917 0.637016 -1.727356 0.672079 0.334287 -0.248262 0.925902 0.199351 -0.594231 0.774018 -0.917396 0.107667 -0.915752 -0.037993 -0.740039 -0.358081 -1.013495 0.018815 -0.530588 -0.738860 -0.320790 -0.410572 1.382849 -0.751903 -0.942752 1.351687 -0.045474 0.136879 -1.884571 2.558229 -0.848033 0.588499 -0.405875 -0.051473 -0.185807 0.583253 -1.118063 -0.109261 0.110100 -0.205476 1.199856 2.298894 0.923745 0.059730 -0.309546 1.801217 -0.526532 1.443661 -0.599567 1.034372 -0.453735 -1.256609 0.190268 -0.257110 -0.528353 -0.635214 0.573640 1.792964 0.836681 0.535215 1.438525 0.605920 1.944063 -0.430369 1.198213 -0.069651 1.233864 -0.270384 -0.395205 0.840708 0.674742 -0.751822 1.144493 -1.850905 -2.427452 -0.789906 -1.922144 0.380666 -1.030005 0.606236 -0.581594 0.000596 -1.791398 -1.097024 0.055981 -0.353525 0.929429 0.902369 0.156287 0.806734 1.420378 -1.026691 0.222442 0.338099 1.156175 0.289927 -0.822662 -1.002338 1.140718 -1.283239 -0.024373 1.783904 -0.778236 0.407338 -0.484731 1.120232 -1.470391 1.927999 0.362799 -0.471461 1.804272 0.874430 1.524386 0.768842 -0.590012 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.338556 -4.536883 26.586276 17.159617 -8.708451 2.716481 -3.130747 -13.087518 7.451423 1.442992 -5.596294 8.204085 -4.155023 3.620909 -5.691419 10.084986 -21.324185 -3.690660 -5.697174 -12.591882 -7.644485 -1.627259 -0.048165 4.567974 11.403725 11.271962 -7.853982 2.987992 -2.536955 -18.917483 -0.814387 -2.051325 4.024866 -2.334977 9.148279 -22.563598 16.305350 10.839745 -5.037503 -11.792979 6.809340 -3.752655 -2.786025 -3.034249 -5.549208 4.571935 1.134306 10.599316 7.784025 6.416506 -1.846675 5.860105 10.668266 22.334939 -0.818689 7.981788 8.364028 -4.412505 -1.257057 1.071400 1.968979 -1.093132 0.130830 -1.879701 3.423886 -15.409959 -1.983598 -3.220137 -0.517943 8.642903 1.108106 -11.983405 -8.716854 -10.299210 -12.768467 -2.504670 -19.638145 14.474243 12.724299 -12.335527 5.031222 1.888280 0.483494 4.343463 5.538077 0.297868 12.980576 5.024325 0.886034 1.245980 1.327225 -7.265708 7.967244 -6.148201 -9.866757 -25.513586 7.926075 -25.300350 -13.352062 6.595397 10.523411 -10.314328 0.614734 -6.382496 4.074621 1.507042 -3.948307 -5.676998 3.296124 4.782708 0.111047 -2.040295 -0.395992 -1.061068 1.972213 6.954831 -16.541780 11.073491 3.135520 3.856871 0.203468 10.682112 7.332650 -2.074203 -1.608153 7.187677 -5.237028 13.170815 -2.035682 9.594563 -9.908440 12.522647 1.083003 11.647858 6.747689 -13.257270 -6.084744 -2.036161 -4.198072 5.704915 -8.466486 5.959194 -10.630873 12.107356 6.860416 -3.907856 -11.060390 -7.149859 -15.624023 -13.040358 1.374624 -3.749479 -17.287041 4.263286 7.931854 9.111141 7.112621 -0.881298 -6.904892 -2.775274 -1.330092 0.854205 9.387742 -3.471361 7.239948 -7.774388 -3.673300 6.688530 1.183567 7.562555 0.029140 1.132386 5.002520 -7.888533 2.211541 9.843432 8.217024 1.023622 11.372452 13.747039 16.988751 -1.614533 -2.588237 6.907898 -8.910855 -2.838812 2.714453 -8.935917 2.037935 5.589963 8.735540 16.513821 0.071677 1.999379 4.303598 -0.362677 2.787410 -5.949406 0.479159 -5.601506 -1.545048 -1.889166 4.076054 -8.440880 -0.145278 -10.309747 -13.694710 15.256686 -24.263056 -6.762413 17.411971 -7.811660 8.191970 -9.940824 12.802306 -7.019212 9.917750 1.828377 -0.885203 1.182351 -8.481576 -14.269020 7.931082 3.545491 -1.957987 -0.262540 9.302623 6.320953 0.862588 -4.238934 10.969648 -10.713558 14.710464 -6.564916 11.915952 -5.023815 -1.438573 -4.185858 -0.101166 -9.613189 -4.914314 6.147875 4.724700 -3.292646 8.889076 2.408122 6.064299 11.401232 -7.432165 10.926034 -5.016424 0.063014 -8.974905 -8.638329 7.176456 7.371374 0.124432 3.042391 -18.369738 -10.508002 -28.109574 -5.949597 -1.668561 -4.243458 4.626258 -4.244512 -6.536213 -7.356530 -13.023370 22.872831 -0.219939 -1.436206 9.865763 1.450551 9.594424 10.884810 0.244626 2.138487 -4.304434 1.758751 5.433775 -2.505717 -12.297465 15.515759 -7.019535 0.329170 19.291196 -8.273183 9.014805 0.720715 4.336142 -11.785070 9.972223 1.568223 -10.936488 3.512009 17.016970 6.569489 -1.424153 -8.623706 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy(int**, int**, int**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy_backward(int**, int**, int**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__miter_base(int**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.090136 -0.251670 0.665673 0.509658 0.030368 0.003709 0.406774 -0.220953 0.393630 0.224799 -0.085117 0.051449 -0.526169 0.141520 -0.091674 0.418338 -0.389413 -0.362875 -0.024780 -0.260554 -0.019499 -0.227089 0.454230 -0.126570 0.449235 0.018739 -0.174298 -0.425321 -0.459830 -0.245494 0.303470 -0.225265 0.310698 0.148860 -0.197899 -0.634567 0.340936 0.279286 -0.250621 -0.337564 0.396248 -0.287569 0.157239 -0.177316 0.109437 0.119384 0.123878 0.157670 0.411341 0.270522 0.267063 -0.039133 0.171094 0.542531 -0.479266 0.204592 0.074611 -0.078613 -0.182684 0.042665 0.061485 -0.014832 0.228665 0.179459 -0.107183 -0.424211 -0.220957 -0.330541 -0.491794 0.224334 -0.142919 0.123854 -0.429369 0.001636 -0.083077 -0.117905 -0.628931 0.307190 0.553311 -0.351609 0.393308 0.037424 0.013887 -0.147983 -0.043617 0.154007 -0.034152 0.055977 -0.052087 -0.169700 -0.212985 -0.014736 0.040242 0.084683 -0.032071 -0.364753 0.314037 0.103628 -0.423856 0.045942 0.198794 -0.097383 -0.190366 0.186357 -0.055215 0.368510 -0.276164 -0.421905 -0.053280 -0.064633 0.185791 -0.082095 -0.070826 -0.247038 -0.306672 -0.338632 -0.474719 0.010064 -0.169481 -0.302778 -0.189358 0.258555 -0.203777 0.043781 0.082727 0.258205 -0.199669 0.500601 0.038458 0.323210 0.286877 0.011251 -0.517531 -0.019947 0.389141 0.605772 -0.158639 0.137678 -0.352380 -0.029987 -0.284802 -0.104762 0.191893 0.266888 0.454954 -0.412470 -0.253271 -0.019003 0.042675 -0.509921 0.203803 -0.292160 0.251304 0.067860 0.292811 0.122047 0.393683 0.828355 -0.375705 0.130263 -0.028233 -0.211477 0.401908 0.255345 0.359787 -0.205479 -0.222717 0.073626 0.184323 0.031030 0.001289 0.143422 0.075074 -0.523005 0.040653 0.060764 0.099196 -0.275451 0.247786 0.222770 0.258208 -0.242693 0.074452 0.375127 -0.067884 -0.009206 0.143136 -0.496985 0.304870 0.051757 -0.136330 0.141528 0.055647 -0.252559 0.231491 -0.270406 0.090184 -0.272898 0.065583 -0.244234 -0.121551 -0.319621 0.072010 -0.074318 -0.322790 0.023237 0.109857 0.438939 0.099692 -0.104332 0.166440 -0.019879 0.001865 -0.498017 0.860477 -0.327613 0.124048 -0.237316 -0.065795 -0.015801 0.277561 -0.212674 -0.161406 0.135561 0.009106 0.256635 0.584540 0.280899 -0.068298 0.008200 0.471930 -0.014410 0.385079 -0.024315 0.342052 -0.098241 -0.153118 0.185040 -0.090391 -0.068971 -0.119351 0.007251 0.653107 0.287352 0.087608 0.406324 0.096045 0.579572 -0.201829 0.337433 -0.024723 0.499995 -0.085994 -0.081923 0.135821 0.181627 -0.144023 0.312688 -0.487224 -0.669958 0.110557 -0.427497 0.088505 -0.041319 0.144091 -0.118808 0.065925 -0.488332 -0.265606 -0.066094 -0.179108 0.277336 0.137182 0.049564 0.258432 0.356617 -0.267894 -0.103436 0.011339 0.244812 0.099444 -0.125328 -0.209650 0.255859 -0.439878 -0.039791 0.401399 -0.230304 -0.014202 -0.123677 0.477346 -0.328178 0.600661 0.101073 -0.072982 0.662805 0.346434 0.539656 0.107546 -0.171658 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_base(int**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -0.622467 -1.705876 3.777121 2.486801 0.064591 0.961322 0.695170 -1.112612 0.916424 0.860358 -0.815065 1.736122 -1.786196 0.237628 -0.771812 0.653714 -2.235442 -1.724952 -0.346149 -1.027496 -0.392434 -1.193756 -0.062740 1.678770 1.651829 0.437597 -1.424815 -0.073625 -3.103438 -2.810522 -0.166165 -0.470268 1.334984 -0.619793 1.005101 -3.291133 2.034901 2.305907 -0.269789 -2.428241 1.317262 -1.189370 -0.031603 -0.179539 -0.336916 1.219371 1.187866 0.401359 1.332629 0.874659 -0.020105 -0.112376 0.730395 2.364497 -0.545095 1.524915 1.413691 -0.910918 0.162830 -0.202551 -0.119884 -1.034690 0.748894 0.409782 -0.803500 -1.567183 0.263949 -0.297684 -1.203332 1.262377 0.195103 -0.874899 -1.305197 -0.786945 -2.549557 -0.357780 0.961068 1.422482 2.780427 -0.926030 2.252926 0.192578 0.916339 0.260262 1.274979 0.271211 1.349203 0.497021 -0.857141 -0.469486 -1.855459 -0.431700 -0.300132 1.408348 -0.882349 -1.139742 1.071246 -3.289929 -2.291620 0.870394 0.229192 -1.367075 -1.385804 0.028844 0.816538 1.206176 -0.526771 -1.896005 -0.417505 1.105791 -0.520379 -0.424686 0.454993 -0.949533 -0.652463 -0.350429 -2.104668 0.813573 0.770546 -0.701903 -1.034399 2.179354 -0.433738 1.052045 0.203532 1.350312 -0.659110 1.481365 0.494894 0.967568 -0.332784 -0.476272 -1.865184 -0.359253 0.605855 0.412307 -1.612385 -0.420166 -0.566911 0.617676 -0.688463 0.443203 -1.018806 2.115518 1.671316 -1.430428 -1.485426 -1.247709 -0.974398 -1.886242 0.032224 -0.683662 -1.687114 0.325095 1.461593 0.473889 0.829413 2.337032 -0.875532 0.468428 0.141192 -0.865887 1.210760 -0.929686 1.221171 -1.430355 -1.138847 1.177621 0.813616 1.096884 -0.011167 0.036690 0.626844 -1.504854 -0.632169 1.139065 0.871423 0.572992 2.121456 1.930648 2.206367 -1.268761 -0.349062 0.902082 -0.976052 -0.364740 0.247749 -1.835362 0.889975 0.826966 0.200011 2.755694 0.023618 -1.202534 1.470226 0.011652 0.679964 -1.772114 0.855721 -1.346953 0.374203 -0.870820 -1.025434 -1.160376 -0.877807 -1.716531 -1.382390 2.610670 -1.418115 -2.594963 1.524900 -0.479012 1.516407 -3.591229 1.497441 -1.342114 1.870972 0.103357 0.166684 0.042436 0.222355 -1.307355 0.782195 0.703370 -1.039389 1.580683 1.754152 1.005028 0.244822 -0.159543 1.621771 -0.426970 1.124090 -0.937192 0.991017 -0.662565 -0.448485 -0.219830 -0.373188 -0.255790 0.248702 0.205101 0.183801 0.916189 0.374336 0.993536 2.009358 1.373508 -0.668086 0.749651 -0.876626 1.598736 -1.214043 -1.362007 -0.002130 1.352456 0.368602 0.906421 -3.129151 -2.583584 -2.095688 -3.293060 -0.037688 -0.261516 0.506499 0.372339 -0.274838 -2.637660 -1.456180 1.988258 0.190116 2.728320 1.417725 0.190241 1.632070 1.478266 -0.562193 -0.494470 -0.163812 0.807443 -0.246836 -0.442314 -1.644135 1.517120 -1.996526 0.960860 2.482010 -1.528769 1.079848 -0.219177 0.884960 -2.526382 2.816417 1.040891 -1.892965 1.165069 1.262730 1.951685 -0.702807 -1.306113 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.291919 -0.319830 1.009497 0.707594 0.045139 0.080284 0.436779 -0.457132 0.629958 0.318439 -0.039797 0.114417 -0.634983 0.186418 -0.191570 0.547185 -0.587095 -0.523927 -0.120595 -0.559319 -0.170707 -0.314788 0.494613 -0.153751 0.555747 -0.147598 -0.362559 -0.438846 -0.682188 -0.524410 0.423416 -0.298477 0.424336 -0.168270 -0.231671 -1.364413 0.610235 0.439073 -0.381182 -0.479098 0.514907 -0.446230 0.194284 -0.178378 -0.033535 0.094860 0.096446 0.019063 0.607694 0.304208 0.449840 0.130804 0.131766 1.126370 -0.725029 0.354213 0.099893 -0.162022 -0.357253 0.175670 0.070200 0.012920 0.379966 0.227338 -0.167129 -0.664177 -0.154960 -0.377971 -0.708739 0.376487 -0.153886 -0.075331 -0.436390 -0.029326 -0.345703 -0.291607 -0.422740 0.373188 0.796174 -0.483737 0.547095 0.002861 0.059735 -0.035370 0.108407 0.173652 0.268902 0.075649 -0.116920 -0.245076 -0.233546 0.099669 0.074332 0.317992 -0.087649 -0.584398 0.457323 -0.099170 -0.653845 0.149873 0.327519 -0.128909 -0.601343 0.010903 0.073861 0.420177 -0.416321 -0.647446 -0.233241 0.070786 0.133428 -0.139321 -0.042217 -0.538318 -0.331261 -0.414147 -0.699325 0.064680 -0.157220 -0.309072 -0.508698 0.504549 -0.341659 -0.037585 0.089535 0.478237 -0.374297 0.616671 -0.122187 0.489890 0.169675 0.048814 -0.884720 -0.225443 0.432223 0.723348 -0.202332 0.029618 -0.547274 0.006530 -0.510643 -0.008959 0.113026 0.478298 0.715234 -0.453093 -0.357837 -0.040403 0.095851 -0.843774 0.206837 -0.423896 0.062700 0.118400 0.461628 0.269656 0.569625 1.067144 -0.428670 0.339053 -0.088256 -0.336354 0.667144 0.033201 0.533890 -0.337995 -0.354099 0.097212 0.241447 0.172004 0.007761 0.121451 0.070725 -0.718238 -0.083464 0.036530 0.196778 -0.238055 0.357491 0.408179 0.795339 -0.666815 0.165520 0.515936 -0.185023 0.037649 0.107105 -0.643668 0.225783 0.223632 -0.258966 0.443705 0.059148 -0.474859 0.203482 -0.267871 0.202883 -0.416833 0.116341 -0.359066 -0.104630 -0.370793 -0.132036 -0.269635 -0.374544 -0.152690 -0.130284 0.677113 -0.204938 -0.444352 0.513511 -0.062062 0.123411 -0.937584 1.125653 -0.485272 0.345339 -0.443020 -0.016080 -0.103832 0.497023 -0.430581 0.109056 0.198231 -0.171243 0.416671 0.968610 0.410301 0.129591 -0.123630 0.710085 -0.077050 0.544473 -0.143013 0.646633 -0.187018 -0.317072 0.161015 -0.158424 -0.110865 -0.161605 0.160299 0.618105 0.440436 0.083997 0.439544 0.386421 0.781162 -0.291051 0.525442 -0.065870 0.574371 -0.121160 -0.144312 0.253594 0.311995 -0.154337 0.374063 -0.772160 -0.880756 -0.150900 -0.733390 0.215882 0.097188 0.081466 -0.138173 0.064993 -0.786509 -0.352433 0.176191 -0.246757 0.595915 0.256291 0.163761 0.401495 0.614402 -0.385336 -0.156111 -0.047891 0.188800 0.096366 -0.260978 -0.402826 0.515288 -0.593723 0.061929 0.567316 -0.291550 0.064871 0.030645 0.465856 -0.477319 0.870836 0.156428 -0.093233 0.883849 0.505468 0.857706 0.079588 -0.268693 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -0.564241 -2.009305 4.351602 2.944994 -0.148244 1.099376 0.796985 -1.235459 0.960141 1.017331 -0.782166 2.060076 -1.992748 0.023091 -0.535952 0.757546 -2.627262 -1.772958 -0.447262 -1.160257 -0.427793 -1.244784 -0.327199 2.178549 1.897583 0.688883 -1.534129 -0.007277 -3.217369 -3.316117 -0.493413 -0.420302 1.545425 -0.647668 1.464377 -3.776693 2.368978 2.808328 -0.272268 -2.862196 1.383163 -1.122066 0.063065 -0.274244 -0.683202 1.469164 1.389922 0.522704 1.318985 1.027944 -0.314087 -0.074728 1.286812 2.629294 -0.160507 1.788839 1.836338 -1.032845 0.328315 -0.429145 -0.053028 -1.239181 0.765159 0.095936 -0.736152 -1.770399 0.126693 -0.221410 -1.239519 1.269410 0.386497 -1.179858 -1.603817 -1.116814 -3.206761 -0.494412 0.775640 1.686876 3.067352 -1.277924 2.505826 0.475915 0.911063 0.525997 1.533197 0.307108 1.537672 0.643195 -0.853812 -0.032072 -2.011072 -0.926683 -0.151629 1.163238 -1.228480 -1.999426 1.195079 -4.080886 -2.710400 1.221773 0.340615 -1.681333 -1.457228 -0.437935 0.910590 1.384876 -0.699342 -2.053169 -0.434303 1.259804 -0.533817 -0.509993 0.596670 -0.661188 -0.485059 -0.171847 -2.471476 1.126736 1.109820 -0.634800 -0.856414 2.491124 -0.290959 1.369792 0.131969 1.401706 -0.766973 1.734376 0.705914 1.117606 -0.643316 -0.425087 -1.588606 -0.484626 0.541635 0.076531 -1.618102 -0.672190 -0.530655 0.893041 -0.508501 0.906930 -0.991000 2.411709 1.660290 -1.314176 -1.577934 -1.640608 -1.715625 -2.062014 0.152994 -0.551343 -1.955493 0.703938 1.611778 0.301343 0.766672 2.040276 -0.805815 0.160947 0.060962 -0.887024 1.236660 -1.008878 1.328811 -1.507880 -1.223214 1.447743 0.965029 1.634171 0.046757 0.055793 0.827014 -1.332790 -0.687303 1.035180 0.934050 0.535373 2.497703 2.301005 2.455496 -0.926195 -0.579555 0.826639 -1.112743 -0.304243 0.230191 -2.012901 0.925788 0.879792 0.214408 3.183076 -0.085720 -1.106049 1.891678 0.026022 0.639752 -1.969964 0.968031 -1.559024 0.435383 -1.006214 -0.947046 -1.504282 -0.934399 -2.218911 -1.668479 3.057490 -1.826364 -2.673124 1.682184 -0.452028 1.802399 -3.744764 1.865533 -1.350538 2.214344 0.238789 -0.011820 0.288362 -0.090530 -1.473743 0.580936 0.808784 -1.235361 1.412636 1.637161 1.058898 0.045929 -0.178024 1.710395 -0.612543 1.406954 -1.271436 1.177811 -0.876685 -0.350113 -0.355046 -0.327770 -0.190265 0.302033 0.211917 -0.034105 0.688843 0.524163 0.871813 2.182314 1.369842 -0.829876 0.830379 -0.812932 1.694046 -1.520795 -1.432268 -0.111535 1.668006 0.525257 1.089242 -3.549384 -2.561265 -2.676812 -3.298028 -0.330328 -0.034148 0.599610 0.431325 -0.495922 -2.746144 -1.851989 2.646421 0.234491 2.217776 1.712889 0.232259 2.049222 1.612904 -0.322648 -0.530634 -0.122181 0.748131 -0.161189 -0.506792 -1.795440 1.748736 -2.245861 1.070925 2.869894 -1.710717 1.396919 -0.503967 1.110486 -2.896488 3.104336 1.062704 -2.338294 1.031535 1.902082 2.082244 -1.135976 -1.510736 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::empty() const = 0.529537 -0.209094 1.822897 1.211108 -0.646151 0.072147 -0.161702 -0.998133 0.734940 -0.067615 -0.431919 0.276326 -0.355492 0.352911 -0.603589 0.833457 -1.538249 -0.275203 -0.437378 -0.967629 -0.492000 -0.104607 0.273583 -0.048828 0.836137 0.859317 -0.425506 0.121098 -0.101518 -1.061425 0.243104 -0.229972 0.173298 0.092486 0.435287 -1.274429 1.160046 0.641950 -0.511691 -0.716766 0.506598 -0.392648 -0.166062 -0.431208 -0.143459 0.267408 -0.050281 0.935811 0.653055 0.497173 -0.023421 0.419421 0.655512 1.531542 -0.348153 0.495476 0.463582 -0.156952 -0.142828 0.229046 0.157114 0.124184 -0.067458 -0.055624 0.283384 -1.164925 -0.354162 -0.464640 -0.040132 0.665927 -0.166959 -0.630720 -0.756648 -0.649770 -0.803376 -0.160377 -2.438466 1.090704 0.900966 -1.078516 0.237614 0.118913 -0.009151 0.227806 0.228157 0.110872 0.779000 0.359099 0.142295 0.122020 0.158236 -0.457427 0.650011 -0.827789 -0.643900 -2.016666 0.649211 -1.666810 -0.876218 0.351494 0.838186 -0.606186 0.339365 -0.242117 0.088199 0.090434 -0.396198 -0.375425 0.469572 0.171716 0.279217 -0.063339 -0.002909 -0.016655 0.112973 0.312029 -1.254428 0.722625 -0.014612 0.228627 0.161386 0.685494 0.544360 -0.382898 -0.110532 0.411677 -0.436043 1.203171 -0.300620 0.746236 -0.629340 1.099138 -0.107606 1.077274 0.709741 -0.737863 -0.374961 0.194662 -0.361451 0.293120 -0.810412 0.180999 -0.686302 0.578224 0.359860 -0.450580 -0.763239 -0.351013 -1.063399 -0.993448 0.175563 -0.345897 -1.038863 0.247389 0.599493 0.951946 0.719291 0.160395 -0.612606 -0.379631 -0.182077 0.064067 0.757640 0.020186 0.586801 -0.469885 -0.239995 0.421968 -0.043178 0.365255 0.098160 0.129357 0.322407 -0.788614 0.422419 0.731365 0.598639 -0.216344 0.775400 0.926626 0.473832 -0.126196 -0.039382 0.661898 -0.573146 -0.157789 0.275049 -0.664815 0.305278 0.345357 0.683703 0.767627 0.048382 0.322153 0.171587 -0.221491 0.229339 -0.348640 -0.261531 -0.346049 -0.333056 -0.273313 0.740687 -0.458281 -0.115260 -0.424984 -0.862562 0.949086 -1.535304 -0.046376 1.207601 -0.459033 0.427140 -0.350326 0.952714 -0.569178 0.686947 0.163378 0.008757 0.091322 -0.544810 -1.014818 0.318805 0.254698 -0.027227 -0.064056 0.671516 0.534657 0.002450 -0.247011 0.931551 -0.885395 1.141046 -0.374792 0.853723 -0.339486 -0.215016 -0.057439 -0.050315 -0.773448 -0.528443 0.527837 0.911233 -0.213618 0.799046 0.378516 0.197320 1.033284 -0.555100 0.812456 -0.305627 -0.011900 -0.613372 -0.513557 0.642952 0.383887 -0.133466 0.160493 -1.199504 -0.919205 -1.920908 -0.138935 0.020580 -0.609694 0.284374 -0.441915 -0.374615 -0.437914 -0.951445 1.366297 -0.214224 -0.456695 0.578171 0.085719 0.577656 0.846698 -0.128479 0.205932 -0.191891 0.274467 0.493765 -0.128065 -0.903547 1.174088 -0.512702 -0.230575 1.390841 -0.589137 0.510320 0.181272 0.515788 -0.688259 0.644713 0.040569 -0.609528 0.508119 1.386978 0.528995 0.326774 -0.541702 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::front() = -0.055273 -0.241681 0.774340 0.535000 -0.205897 -0.001198 0.238195 -0.294133 0.349148 -0.287720 -0.169069 0.069009 -0.578635 0.192670 -0.327856 0.224464 -0.730781 -0.410249 -0.142927 -0.272109 -0.022398 -0.242544 0.474914 0.089482 0.428419 0.408251 -0.264542 -0.222574 -0.527354 -0.010834 0.483053 -0.210679 0.358156 0.418829 -0.132948 -0.829806 0.367743 0.319132 -0.265156 -0.368992 0.461889 -0.447545 0.071257 -0.500894 -0.176610 0.056045 0.020624 0.264582 0.409440 0.051743 -0.051403 0.041781 0.015335 0.577681 -0.486447 0.186102 0.158139 -0.055049 -0.189067 -0.088028 0.047700 0.071178 0.211118 0.219755 -0.243847 -0.508634 -0.161243 -0.505455 -0.477013 0.359876 -0.157495 0.252964 -0.430025 -0.020523 -0.436482 -0.066555 -0.107131 0.500168 0.601804 -0.451747 0.333659 -0.091727 -0.007549 -0.110829 -0.014572 0.212138 0.085090 0.089046 0.034090 -0.183434 -0.431424 0.045942 0.070413 -0.055083 -0.068412 -0.562515 0.327185 -0.527025 -0.465418 -0.075514 0.241028 -0.233106 -0.055319 0.177082 -0.023861 0.348544 -0.247816 -0.385347 0.127105 0.035688 0.185053 -0.026047 -0.015386 0.036884 -0.243971 -0.508679 -0.606923 0.144862 -0.185031 -0.212060 0.086575 0.350768 -0.260272 -0.023815 0.086375 0.231217 -0.274941 0.682978 -0.087130 0.149663 0.131689 0.057205 0.018323 -0.113377 0.358810 0.786412 -0.360645 -0.046445 -0.317188 -0.016376 -0.377495 -0.431531 0.068243 0.106900 0.228310 -0.519770 -0.292519 -0.086372 -0.263827 -0.803481 0.002239 -0.303742 0.024582 0.403744 0.344650 0.338229 0.464882 0.925595 -0.322840 0.087378 0.049558 -0.306497 0.463998 0.257128 0.377967 -0.228320 -0.314901 0.206253 -0.165587 0.228196 -0.038061 0.182252 0.016294 -0.608747 -0.061762 0.231037 0.282244 -0.045023 0.332077 0.350840 -0.234039 -0.293448 0.158212 0.436058 -0.125398 -0.045782 0.178137 -0.480434 0.325910 0.110797 -0.133608 0.217496 0.034003 -0.244625 0.193412 -0.179983 0.194984 -0.405935 -0.048179 -0.223507 -0.024341 -0.527032 0.094631 -0.044366 -0.344935 -0.147672 -0.224622 0.522585 -0.323679 -0.238930 0.332829 0.171491 0.400806 -0.610709 0.388213 -0.356493 0.595009 -0.016679 0.000358 0.093885 -0.190778 -0.368926 -0.092393 0.134219 -0.010752 0.147188 0.467709 0.379021 -0.036691 -0.022874 0.534075 -0.021372 0.541009 -0.129831 0.296023 -0.086622 -0.326475 0.329691 -0.109520 -0.202103 -0.136819 0.208535 0.827285 0.354940 0.490431 0.637381 0.169982 0.675668 -0.226437 0.148175 -0.117988 0.395090 -0.104159 -0.180847 0.150772 0.414067 -0.139275 0.261253 -0.579099 -1.084265 -0.391730 -0.639383 0.154241 -0.435617 0.140361 -0.108981 0.050542 -0.518628 -0.296149 -0.030244 -0.225182 0.807136 0.208571 0.019722 0.309125 0.475883 -0.502580 -0.078343 0.346213 0.513141 0.120337 0.077818 -0.639369 0.421956 -0.431851 -0.049073 0.715654 -0.403990 0.101739 -0.167315 0.586556 -0.375319 0.744651 0.144455 -0.373158 0.656966 0.256046 0.300662 0.540112 -0.249632 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::operator*() const = -0.148122 -0.189396 0.772426 0.558679 -0.116434 0.038016 0.063439 -0.360402 0.356672 0.161255 -0.070991 0.136224 -0.324044 0.153834 -0.071630 0.437590 -0.519722 -0.253456 -0.157096 -0.399789 -0.172265 -0.130819 0.278294 -0.063114 0.376824 0.171534 -0.286900 -0.096927 -0.233652 -0.582860 0.165327 -0.181041 0.288195 0.009349 -0.025675 -0.902704 0.495757 0.337272 -0.256214 -0.334375 0.318031 -0.202704 0.088760 -0.133750 -0.174664 0.147900 0.022552 -0.086673 0.370135 0.242501 0.243467 0.121845 0.252753 0.629159 -0.311200 0.222003 0.120872 -0.167855 -0.222724 -0.002870 0.076933 0.043354 0.193603 0.084308 -0.015506 -0.530118 -0.151375 -0.226166 -0.394216 0.263784 -0.184160 -0.166673 -0.292094 -0.201104 -0.252654 -0.179180 -0.355741 0.299951 0.500878 -0.350478 0.269971 0.001190 -0.061426 0.034767 0.070960 0.113454 0.212914 0.119612 0.003418 0.003573 0.214528 -0.067463 0.180234 0.223322 -0.166103 -0.407262 0.333821 -0.301135 -0.402618 0.166204 0.310995 -0.131427 -0.363196 -0.124287 0.013230 0.252298 -0.239744 -0.326572 -0.016972 0.032761 0.198570 -0.094899 -0.136702 -0.191288 -0.182960 -0.039575 -0.531968 0.156350 -0.084909 -0.109840 -0.168333 0.303961 -0.034217 -0.091422 -0.006455 0.317815 -0.277745 0.545494 -0.112019 0.397503 -0.123538 0.221327 -0.323724 -0.072731 0.295267 0.138103 -0.186989 -0.105597 -0.343344 0.006751 -0.349629 0.037066 -0.043692 0.309377 0.604841 -0.184174 -0.304298 -0.066890 -0.268839 -0.691377 0.082217 -0.285596 -0.056615 0.271317 0.295547 0.170281 0.387133 0.607993 -0.283855 0.056644 -0.088509 -0.246957 0.451290 0.031104 0.329070 -0.222038 -0.198147 0.185892 0.105310 0.183237 0.091060 0.062745 0.094846 -0.402503 0.016578 0.287886 0.185006 -0.079232 0.229307 0.313429 0.619017 -0.141723 0.041984 0.333394 -0.141595 -0.008043 0.094992 -0.373052 0.092638 0.140711 -0.059917 0.332822 0.025733 -0.157253 0.118210 -0.180132 0.130911 -0.283074 0.125300 -0.205873 0.094246 -0.233167 -0.087428 -0.193651 -0.161291 -0.119874 -0.169420 0.483131 -0.374955 -0.219831 0.412406 -0.028105 0.170191 -0.491906 0.596639 -0.310136 0.416123 -0.233516 -0.044914 -0.003071 0.001902 -0.318326 0.095470 0.140370 -0.018594 0.050557 0.532188 0.272587 -0.029460 -0.138917 0.457636 -0.125524 0.517796 -0.086035 0.454299 -0.108458 -0.081877 0.064028 -0.069936 -0.237288 -0.188604 0.097436 0.326563 0.161096 0.135359 0.218580 0.173985 0.541780 -0.236441 0.392319 -0.029447 0.305233 -0.151970 -0.161155 0.239679 0.384005 -0.081946 0.162451 -0.508490 -0.519818 -0.428000 -0.373939 -0.002747 0.125020 0.111055 -0.144343 -0.054902 -0.277843 -0.312517 0.502632 -0.138024 0.425544 0.161168 0.090311 0.289838 0.401430 -0.168176 -0.105924 -0.129934 0.086036 0.165959 -0.048271 -0.341386 0.430448 -0.314704 -0.079551 0.467427 -0.262017 0.128096 0.098857 0.261031 -0.317417 0.516437 0.054909 -0.111612 0.560639 0.379847 0.394322 0.038312 -0.206563 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::pop_front() = 1.621686 -0.733232 7.226181 4.766673 -2.248079 0.262684 -0.056779 -4.213779 3.157405 0.459382 -1.377393 0.667541 -1.719719 1.180693 -1.454455 3.308436 -6.081215 -1.284824 -1.769957 -3.974153 -1.762084 -0.971693 1.751304 -0.203956 3.360034 2.723726 -1.866348 0.130919 -0.186186 -4.923767 1.529967 -1.047839 1.330093 0.521794 1.207747 -6.424804 4.930728 2.367738 -1.939457 -2.605598 2.162724 -1.155597 -0.907912 -1.159164 -1.064266 1.184698 -0.277920 3.327892 3.017014 1.971398 0.442542 1.229737 2.412769 5.861488 -1.859538 1.804517 1.195634 -1.135537 -0.910586 1.097526 0.515506 0.519944 0.313245 0.561154 1.101867 -4.488462 -0.351091 -1.709381 -1.551589 3.215398 -0.464233 -2.502617 -2.643583 -2.035707 -2.644348 -0.456007 -6.029182 4.153046 3.902554 -3.311371 1.338266 0.235784 -0.426480 0.202469 0.315133 0.238990 3.249195 1.138404 0.389892 -0.440573 0.109228 -2.270452 2.241459 -1.931111 -1.936055 -6.589572 2.404562 -5.602134 -3.358939 1.005306 3.333422 -2.409705 -0.446847 -1.079817 0.903611 0.465515 -0.937304 -1.848236 0.978294 0.788523 0.151412 -0.198734 -0.494194 -0.364366 -0.226544 1.231319 -4.750853 2.246380 -0.507097 0.535291 -0.163891 2.490134 1.234219 -1.404452 -0.010661 2.255493 -1.649760 3.842433 -1.331886 3.240709 -0.958565 3.641413 -0.098433 2.693167 2.619901 -1.883467 -0.768186 -0.257357 -1.925877 1.223465 -3.568860 0.920939 -2.186809 2.474420 2.427103 -1.836491 -2.941346 -0.805950 -3.256332 -4.353139 0.749965 -1.850604 -3.535518 1.159236 2.400991 2.880494 2.844196 1.286136 -2.964498 -0.362533 -0.645383 -0.071677 2.979495 -0.129355 2.382531 -1.838239 -1.101878 1.254961 -0.004774 1.599166 -0.170413 0.201699 0.929040 -3.319633 0.389815 2.526558 1.780448 -0.467890 2.092430 3.578021 3.936534 -1.250083 0.223481 3.082776 -1.919385 -0.768490 1.319018 -3.024693 1.096421 1.237959 2.220624 3.462527 0.100879 0.354953 0.624246 -0.808499 0.621043 -1.719602 -0.644620 -1.441630 -0.335536 -1.229930 1.331056 -1.935584 -0.731739 -1.597098 -2.639973 3.727454 -5.038116 -1.702305 5.427786 -2.396375 1.761910 -2.739265 4.273763 -2.167796 1.967199 -0.324193 -0.202147 0.000200 -1.848479 -4.000886 1.488949 0.715566 -0.006522 0.664452 3.702077 2.137141 0.264454 -1.269685 3.747948 -2.724147 4.501110 -1.628546 3.542113 -1.336481 -0.836584 -0.678541 -0.338441 -2.745888 -2.092426 1.769712 2.929297 0.011021 2.429418 1.898032 1.088788 4.125357 -1.875041 3.668284 -0.809592 0.252162 -1.880759 -1.870113 2.842852 1.558275 -1.150359 1.525978 -4.783459 -3.932574 -6.365683 -2.019087 -0.349030 -1.813481 1.737050 -1.642446 -1.200624 -2.180772 -3.318871 4.804838 -0.372127 -0.251918 2.352764 0.346079 2.074916 3.635027 -0.836629 0.648416 -0.950671 1.136007 1.465874 -1.156506 -3.462568 4.529731 -1.996705 -0.337740 5.273590 -2.342922 1.819265 -0.482756 2.199123 -3.152091 2.901859 0.332914 -1.772535 2.482431 3.974429 2.163721 1.225497 -2.027193 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_pop_front_aux() = 2.328610 -0.598757 8.281834 5.534347 -2.854473 0.286876 -0.709332 -5.064109 3.365095 -0.066038 -1.419975 1.319812 -1.352864 1.823435 -2.632066 4.186377 -7.078708 -1.107584 -2.211709 -4.835511 -2.342012 -0.331647 1.758238 -0.486283 3.858298 3.167407 -2.325545 0.207752 -0.087462 -5.414425 1.482857 -1.155142 1.102473 -0.465918 1.351866 -7.428981 5.708499 2.728088 -2.542667 -2.905926 2.588293 -1.615124 -1.035951 -1.798313 -1.477789 0.821429 -0.723451 3.633259 3.288627 2.293783 0.277311 2.717484 3.119444 7.705540 -2.131282 2.202600 1.642634 -0.908890 -1.196240 1.260905 0.700544 1.053222 0.087799 -0.147228 1.601944 -5.703303 -1.303859 -1.869654 -0.808718 3.170693 -0.669927 -3.013130 -3.035315 -2.296567 -3.590875 -0.800297 -8.533402 4.791276 3.997718 -4.464812 0.891160 0.045083 -0.679303 0.896828 0.849343 0.495752 3.720243 1.605653 0.858419 -0.034839 0.997518 -1.808078 3.155049 -3.066368 -2.746479 -9.468560 2.874234 -7.040382 -3.880830 1.505173 4.183442 -2.827958 0.427348 -2.079218 0.761716 0.305232 -1.811986 -1.824360 1.629613 0.861534 1.076157 -0.580280 -0.258849 -0.738266 0.499343 1.562797 -5.579840 3.151379 -0.314654 1.200161 -0.002572 2.914936 2.236860 -2.205026 -0.554099 2.452554 -2.312755 4.698144 -2.109639 3.801482 -2.375072 5.180714 0.067927 3.956361 3.168760 -3.170527 -1.360087 0.145367 -2.455334 1.473549 -3.986719 1.181436 -2.735642 2.815739 2.151334 -1.572598 -3.350631 -1.074642 -4.045209 -4.896656 0.761599 -1.783254 -4.882975 1.342929 2.761036 3.474108 3.583738 0.376477 -2.595479 -0.952056 -0.768078 0.291429 4.052498 -0.669756 2.688923 -2.077937 -1.291115 1.753958 -0.270369 1.897569 -0.002466 0.769159 1.315286 -3.496509 1.250531 2.686485 2.588160 -0.893840 2.906936 4.044930 3.927890 -1.021522 0.121936 3.278676 -2.775780 -0.474975 1.033730 -3.046588 0.772555 1.790029 2.625446 4.070887 0.173230 0.609711 0.594300 -0.711957 0.979670 -1.500033 -0.918925 -1.568531 -1.208878 -1.073058 2.142261 -2.009889 -0.452756 -2.178705 -3.986935 4.316689 -7.452862 -0.965672 6.162530 -2.536387 1.765857 -2.545389 4.908353 -2.618509 2.609743 0.168952 -0.032466 0.269405 -2.066508 -5.320917 2.120893 1.135253 -0.353546 0.103555 3.887589 2.472280 0.400816 -1.717001 4.263157 -3.719036 5.443563 -1.882203 4.579590 -1.667033 -1.221770 -0.658461 -0.238094 -3.619289 -2.842437 2.703446 3.382528 -0.955210 3.419538 1.536460 1.334184 5.057627 -2.530652 4.344570 -1.393838 -0.439330 -2.321976 -2.156206 3.353670 1.770736 -0.732895 1.387255 -5.428368 -4.070937 -8.832818 -1.115696 0.435143 -2.065689 1.480599 -2.325673 -1.692182 -2.402390 -4.115328 6.075150 -0.948138 -1.697393 3.115430 0.627354 2.377864 3.997228 -0.702453 1.080437 -1.382750 1.058934 2.367525 -1.089717 -4.062322 5.483237 -2.054478 -0.806174 6.111270 -2.392098 2.276052 0.481980 1.990001 -2.904204 3.020569 0.053564 -2.157083 2.603538 5.699151 2.217408 1.383646 -2.333267 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__printMaxSubSquare(int (*) [5]) = -4.282608 -12.061637 19.114470 13.967535 -0.774623 5.093942 4.888907 -2.666493 1.822932 7.673816 -5.487020 11.156269 -9.427693 -2.493263 3.475157 2.198866 -11.880924 -9.241717 0.422184 -3.166344 -5.325245 -5.357340 -7.047558 14.004107 8.123689 3.118559 -6.179526 0.571087 -13.518209 -12.999828 -7.100005 -1.066616 7.281102 3.264451 10.454752 -17.549800 8.285041 12.298759 0.712416 -12.040417 2.658636 -4.755268 0.101834 -0.762214 -3.243056 6.622356 10.528963 4.824263 3.320684 3.812116 -0.205039 -6.080343 6.347447 13.976709 5.526966 9.900620 12.674598 -6.472174 3.365967 -3.055197 1.923179 -11.094408 4.984697 1.226856 -4.750745 -4.614014 2.022658 -2.588144 -2.848666 5.004316 8.531608 -7.201367 -6.842294 -8.578992 -10.002643 -4.709055 0.901852 6.959543 15.678684 -8.108142 15.149359 7.867701 8.979860 1.978548 9.894017 -0.476830 12.821336 2.631676 -6.912734 2.300701 -10.473116 -8.592415 -1.319506 9.230401 -5.720020 -2.792578 4.112796 -16.159110 -15.836496 7.962925 -0.615248 -6.272579 -6.692332 1.233424 6.157529 3.820244 -1.556493 -9.591571 -5.637037 3.985787 -8.940215 -3.031494 -1.107724 0.738792 -1.896033 2.882337 -13.495702 4.432107 8.246658 -4.596810 -3.550962 11.939087 -0.679480 11.190367 0.265685 3.037289 0.216485 7.705353 7.814688 1.881123 -1.508300 -6.171150 -10.817630 -0.368651 1.959178 -1.794231 -7.023876 -4.914369 3.909588 5.676782 0.228706 8.163324 -3.349910 19.042604 5.692187 -5.399836 -10.492313 -12.479556 -9.881693 -6.398636 2.768073 -4.337449 -8.519536 1.144363 7.557745 2.144275 -0.862424 7.353038 -2.493429 6.734348 0.421572 -1.052786 1.726073 -4.404958 6.621882 -8.820365 -4.141339 7.535299 8.129125 7.365046 1.221790 -3.249918 4.542236 -6.069375 -9.151264 5.183601 1.204948 3.633359 12.981376 9.995482 24.322263 -6.425846 -1.474132 0.553561 -1.454633 -3.280738 2.965186 -9.200577 4.853882 1.465037 0.289043 16.244895 0.573800 -6.144201 6.668416 1.295004 1.064288 -9.914593 7.361465 -5.615290 4.096172 -2.817844 -1.137505 -9.704091 -3.990620 -9.283341 -4.551269 16.227791 -9.888893 -14.886793 6.185966 -2.129940 10.408052 -17.865377 13.097144 -5.871130 9.995880 -3.923181 -6.847946 1.320069 -0.925352 -2.449389 6.488642 4.113225 -5.131877 3.308277 5.231643 3.278366 4.074175 2.239489 5.790066 -1.206069 3.948690 -4.304665 4.856817 -1.320860 -0.578838 -5.982190 -2.106792 2.195904 7.260513 -1.547019 -2.048985 5.864282 -0.693414 1.736084 9.594553 1.451717 -5.791583 0.712152 -1.646157 11.497989 -9.771584 -7.373479 -3.532773 4.414189 2.323274 3.657771 -16.797689 -7.784312 -8.961701 -12.379079 -8.262837 5.693705 5.103535 4.917259 -2.446478 -11.359750 -7.594841 15.029458 1.907203 9.282170 7.352032 2.490223 12.569999 5.853779 3.929234 -6.506991 -1.134899 1.967998 -3.036754 -0.675795 -8.206345 6.132875 -11.318954 10.005286 11.552212 -6.466965 6.745090 -2.681125 9.075164 -14.273691 13.870376 5.553492 -15.902524 0.527321 12.061019 8.669946 -11.309632 -8.975080 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 0.150933 -0.198671 0.732929 0.478694 -0.306875 -0.046414 -0.038371 -0.214169 0.314696 -0.343269 -0.301621 0.127655 -0.311883 0.214412 -0.292592 0.274436 -0.819903 -0.304900 -0.045576 -0.131636 -0.093738 -0.162282 0.315143 0.056141 0.319917 0.677273 -0.223751 0.040743 -0.136452 -0.134430 0.356458 -0.261345 0.205970 0.505059 0.081568 -0.588191 0.376772 0.121074 -0.208426 -0.363543 0.237544 -0.250547 0.026606 -0.553837 -0.154815 0.126094 0.122761 0.487207 0.272831 0.116108 -0.252297 -0.048436 0.116151 0.442045 -0.218464 0.103152 0.251084 -0.062403 -0.046436 -0.169753 0.146073 0.007620 0.062267 0.246066 -0.085803 -0.421737 -0.198580 -0.473818 -0.222907 0.343955 -0.113576 0.293285 -0.436235 -0.109428 -0.370985 0.017683 -0.563035 0.553709 0.587539 -0.455343 0.208131 0.033674 0.179312 0.004323 -0.043435 0.196240 0.148346 0.196080 -0.055417 0.006451 -0.177279 -0.149344 0.149432 -0.347399 -0.046300 -0.674919 0.204794 -0.760270 -0.307912 0.037024 0.239976 -0.100732 0.237582 0.075689 0.105290 0.239794 -0.198688 -0.196581 0.293245 -0.137250 0.127678 0.029704 0.061189 0.238775 -0.120650 -0.156433 -0.579666 0.100846 -0.102007 -0.150768 0.399909 0.237727 0.002347 -0.034123 -0.023479 0.067243 -0.170829 0.688889 0.058798 0.153888 -0.093767 0.225343 0.230472 0.265678 0.351926 0.289532 -0.296181 -0.043072 -0.141382 0.040715 -0.320827 -0.441407 -0.113186 0.008424 0.117517 -0.377723 -0.405192 -0.218505 -0.499771 -0.651554 0.033336 -0.282341 -0.149985 0.435921 0.300644 0.364738 0.420329 0.511143 -0.359400 -0.032631 -0.085232 -0.041316 0.299627 0.279545 0.280791 -0.153915 -0.131851 0.266891 -0.137801 0.155351 0.103027 -0.107144 0.135109 -0.475031 0.071439 0.456410 0.365377 -0.019781 0.239691 0.212025 -0.404391 -0.010242 0.001046 0.376962 0.003765 -0.137667 0.221224 -0.360051 0.388415 0.003871 0.180600 0.040473 0.039407 -0.051669 0.135499 -0.108747 0.121267 -0.225148 -0.178193 -0.108680 -0.022219 -0.362604 0.430745 -0.116991 -0.149578 -0.097907 -0.228851 0.433404 -0.533771 -0.023583 0.313856 0.044448 0.487649 -0.240506 0.115364 -0.295938 0.645241 0.164093 -0.018616 0.121594 -0.542133 -0.265935 -0.119635 0.157657 0.157136 -0.104281 0.129431 0.327837 -0.072366 0.073762 0.414049 -0.102921 0.470820 0.019218 0.110594 -0.098243 -0.157555 0.229572 -0.055798 -0.227967 -0.139286 0.217922 0.655628 0.122760 0.525695 0.620953 -0.004695 0.484967 -0.296143 0.020283 -0.133494 0.300877 -0.225759 -0.179553 0.077368 0.384295 -0.197692 0.135056 -0.453677 -0.853033 -0.774956 -0.260039 -0.158354 -0.441817 0.128722 -0.182462 0.022510 -0.171929 -0.232469 0.284541 -0.147200 0.388783 0.213411 -0.063136 0.286826 0.366137 -0.360488 -0.196572 0.248702 0.363871 0.134022 0.268966 -0.674112 0.387525 -0.362197 -0.139755 0.714076 -0.438133 0.006888 -0.073453 0.528377 -0.254229 0.540276 0.181688 -0.439719 0.341288 0.287306 0.181201 0.539257 -0.277210 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__isValid(int, int, int) = -0.196668 -1.490212 2.317506 1.686928 0.545956 0.251235 0.698779 0.279757 0.127199 1.100501 -0.963595 1.806981 -0.868334 -0.399286 1.016266 0.367866 -1.110059 -1.600536 0.302385 0.421426 -0.103361 -0.722648 -0.432905 1.662574 1.290268 -0.291802 -1.137303 -0.145914 -1.984368 -1.746417 -1.245509 -0.111641 0.950886 0.025568 1.407250 -0.954210 0.708348 1.052230 0.461189 -1.956045 0.449162 -0.177764 0.087755 -0.238599 0.112303 1.373408 1.931780 0.067656 0.352392 0.968392 -0.609598 -1.057394 0.280924 0.470861 1.020108 0.801980 1.694149 -0.964287 0.673446 -0.629942 0.371342 -1.782964 0.435907 0.322695 -0.528146 -0.250087 0.131674 -0.243080 -0.383396 0.821004 0.641702 -0.571443 -1.050318 -0.991249 -1.408421 0.049723 1.561511 1.398071 1.777580 -0.921289 1.641040 0.708529 1.598006 -0.061371 0.477357 -0.184351 0.647330 0.407873 -0.819429 -0.426140 -1.977398 -2.089927 -0.964318 0.935412 -0.158303 1.525079 0.385745 -2.074935 -1.552652 0.725755 -0.234729 -0.525749 -1.280724 0.827948 0.961052 1.283209 0.839613 -0.762354 -0.716515 0.222460 -0.910577 -0.210585 -0.112801 0.101505 -0.819882 0.472456 -1.596850 0.313308 1.023676 -0.762277 -0.380301 0.976113 -1.168547 1.672523 -0.005823 0.287581 0.301996 0.837466 1.605176 0.366382 1.132080 -1.604819 -2.108451 0.144276 0.126208 0.402773 -0.968328 0.471782 0.337554 0.470749 -0.013343 0.532090 -0.425158 2.184341 0.687266 -1.080278 -1.976275 -1.621277 -1.079394 -0.180215 0.395047 -0.522122 -0.029636 0.891231 0.626279 0.391638 -0.321868 2.006243 -0.834941 0.559819 0.360005 -0.254223 -0.274646 -0.794554 0.477054 -1.033007 -0.300359 1.012414 1.161169 0.256122 0.341691 -0.439972 0.931858 -0.995359 -1.528858 0.996310 0.223043 0.956177 1.042777 0.822327 0.724804 -0.692642 -0.891030 0.121901 0.228016 -0.917245 0.288620 -1.205698 1.170342 -0.391460 1.070534 1.533245 0.161178 -0.863096 1.126829 0.138961 0.034098 -0.608248 0.676008 -0.745559 0.842349 -0.049813 -0.972948 -0.897636 -0.286179 -0.608248 -0.072362 1.886787 0.755748 -2.522088 0.348230 -0.932249 1.373009 -2.660372 1.060561 -0.477973 1.180059 0.109280 -0.235725 -0.140084 -0.515621 0.010641 0.095915 0.441732 -0.247342 0.420563 0.575958 0.164147 -0.035509 0.455566 0.272165 0.262176 0.615306 0.207146 -0.214589 -0.489235 0.249083 -0.803671 0.093238 0.666966 0.975840 -0.847350 -0.336235 0.433868 -0.050471 0.900581 1.197022 0.282109 -0.851265 -0.034295 -0.281473 2.059835 -1.130271 -1.059473 -0.552087 0.466564 0.067183 0.278220 -1.616927 -1.216083 -0.823133 -2.608563 -1.247337 -0.280505 0.631842 0.067701 -0.602395 -1.063227 -0.692485 0.103055 0.956060 1.462233 0.715262 -0.328244 1.432949 0.373045 -0.130779 -0.758154 -0.250809 0.137602 -0.582250 -0.450336 -0.817287 0.134046 -1.502877 0.740774 1.600044 -0.804481 0.699767 -0.305875 0.235207 -1.701010 1.649319 0.827800 -2.024796 -0.209802 0.498809 0.604607 -1.581006 -1.243910 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -12.104999 -15.977121 26.847269 16.052820 -1.537422 7.023989 5.647325 -2.565948 -0.496170 4.719358 -5.469188 18.036960 -11.333123 -3.913581 -4.494578 -1.432288 -14.301449 -12.564625 -2.413014 -7.331284 -7.522620 -3.467655 -11.313670 21.234694 10.873013 -4.547718 -10.665404 -0.124202 -24.147396 -12.173657 -11.130981 0.654701 9.234177 -15.280603 10.896896 -34.068632 9.913994 19.854516 -0.395842 -16.618861 7.829862 -8.451534 0.268818 0.027035 -15.712008 1.262816 12.297436 -0.893599 2.306243 2.490357 0.294239 -0.204434 6.444380 34.720288 7.188531 14.526202 18.820791 -7.136470 0.151564 -3.577895 1.181728 -14.534907 5.058260 -4.415550 -5.377537 -7.431360 3.056228 -1.953781 -1.915550 2.836957 8.763964 -13.812568 -2.248292 -10.464305 -21.843299 -8.903197 20.895289 6.920578 17.651581 -13.589170 18.732674 5.600154 8.174330 8.459220 13.026299 1.348798 13.798900 3.000238 -3.837022 0.427242 -10.318615 2.479941 -1.270491 14.485931 -10.691297 -13.116784 11.006112 -24.525751 -21.999304 10.957616 0.271763 -12.741109 -7.281619 -4.577003 4.337690 6.301782 -6.686191 -11.666284 -10.686962 10.537926 -7.042046 -4.045410 1.294988 -2.049869 1.985484 -1.565323 -17.407976 11.761644 12.469595 -2.275397 -8.511510 18.216544 -4.542604 14.390851 0.482956 8.587781 -2.821344 10.837868 8.035329 -0.588153 -13.094113 -6.847322 -12.328456 -8.065620 -0.440854 -0.368156 -13.134555 -6.297308 3.801526 7.161790 3.038638 11.185549 -5.585305 24.024155 2.729644 -5.556723 -11.729792 -17.213043 -15.230042 -11.984847 -2.795220 -3.764671 -19.247746 8.927331 9.190995 5.726142 -2.500214 13.901398 4.107370 9.977468 3.480483 -10.001467 3.387065 -17.185831 8.698187 -12.380512 -8.561546 8.975036 7.639344 15.982612 -0.359220 1.453897 4.296005 -8.130459 -10.034195 1.587082 6.335514 7.014727 18.483843 16.611727 32.903312 -12.750410 -3.257382 -1.573596 -8.195528 -2.849301 -0.092736 -10.622408 -2.693485 6.882881 -7.180696 26.658372 2.200092 -10.433537 10.409119 0.740032 3.474358 -13.809976 12.406046 -7.083879 4.092782 -2.552121 -8.972299 -13.205229 -1.974670 -19.491455 -18.092486 22.696922 -28.512414 -23.020096 7.045544 6.972905 14.628066 -28.388738 19.646976 -7.697391 25.246627 -1.266128 -5.761833 2.161700 1.828438 -6.761114 15.163957 4.219853 -10.897370 4.169255 10.325841 4.999527 7.846828 -1.212429 9.843708 -5.012257 8.108653 -8.486493 7.572275 -2.792606 -10.799228 -5.889539 -1.779602 -0.440087 9.475615 4.461869 -6.667096 6.092509 1.051579 -0.159527 18.834319 4.523599 -6.573665 0.434412 -4.914107 15.337963 -11.702157 -10.754064 -3.725860 12.979503 8.498079 2.113016 -24.380525 -12.556490 -23.648694 -21.201198 -0.423701 4.548227 1.071684 4.427518 -4.889724 -18.976024 -12.448134 22.799948 -0.047239 22.753863 13.297922 5.961842 18.197090 7.859915 3.516644 -4.681577 2.497121 4.350930 -1.522629 -1.220770 -12.596725 8.638000 -15.919883 12.120711 16.445966 -6.089229 13.504943 5.395650 -1.567033 -19.083639 19.945028 6.148151 -23.539906 1.813725 17.054050 9.608787 -15.465642 -11.821870 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__int const& std::max(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__geMaxCollection(int (*) [4]) = 0.310616 -0.336133 1.397394 0.948821 -0.448051 -0.102564 0.058413 -0.380164 0.358613 -0.339181 -0.372446 0.406130 -0.384300 0.328373 -0.343453 0.587669 -1.257419 -0.422655 -0.163557 -0.359128 -0.205096 -0.041108 0.478029 0.069578 0.709787 0.877339 -0.447018 -0.216402 -0.226221 -0.437724 0.428270 -0.311337 0.422741 0.516812 0.122042 -1.314962 0.664473 0.350911 -0.361664 -0.639613 0.519706 -0.233957 -0.057609 -0.699303 -0.310117 0.189952 0.196193 0.624813 0.391072 0.395917 -0.336572 0.153709 0.421167 0.982575 -0.209099 0.204163 0.511918 -0.197839 -0.119818 -0.260616 0.253960 -0.030673 0.079590 0.116263 0.121164 -0.847355 -0.377187 -0.683151 -0.310703 0.424773 -0.010753 0.171520 -0.591477 -0.249267 -0.522862 -0.013913 -0.801152 0.887403 0.826338 -0.788033 0.329943 0.014442 0.094046 0.029570 -0.129805 0.318715 0.076562 0.362031 0.141046 -0.044122 -0.195009 -0.328161 0.305602 -0.408706 -0.262756 -1.272889 0.506775 -0.910079 -0.512675 0.177906 0.550759 -0.343563 0.220099 -0.109186 0.027312 0.456141 -0.316398 -0.201603 0.258545 -0.180775 0.285215 -0.050936 -0.045821 0.285432 -0.195157 -0.105914 -0.963643 0.424724 -0.081689 -0.070128 0.406383 0.327675 0.062176 -0.088640 -0.117153 0.278315 -0.389959 0.993959 0.091131 0.359284 -0.044763 0.426551 0.251192 0.340735 0.630207 0.427506 -0.474398 -0.173306 -0.385851 0.152963 -0.402331 -0.351698 -0.054864 0.283733 0.402644 -0.502567 -0.721155 -0.407172 -0.699503 -0.905831 0.042980 -0.414347 -0.229078 0.727092 0.441581 0.423253 0.602699 0.707350 -0.517512 0.022112 -0.078482 -0.117369 0.475265 0.303083 0.408798 -0.288824 -0.204632 0.383961 -0.116926 0.355026 0.103331 0.044574 0.326132 -0.701268 0.026514 0.588217 0.508205 -0.173044 0.348680 0.482823 -0.048626 0.010897 -0.192569 0.538570 -0.245114 -0.254643 0.371322 -0.566989 0.397281 0.036773 0.184697 0.387037 0.096133 -0.138411 0.349975 -0.184524 0.041117 -0.213788 -0.077834 -0.200229 -0.073318 -0.413619 0.427032 -0.265379 -0.131890 -0.283162 -0.449067 0.809776 -0.912794 -0.172472 0.465667 -0.083158 0.478555 -0.615164 0.644688 -0.443654 0.741006 0.167335 -0.128117 0.158342 -0.679434 -0.676142 -0.055103 0.237946 0.123615 -0.177949 0.504055 0.475427 -0.213949 -0.093407 0.662037 -0.298310 0.941004 -0.045664 0.372259 -0.269383 -0.266440 0.110129 0.018404 -0.461213 -0.353073 0.307526 0.834109 -0.067107 0.792608 0.719445 0.083171 0.900907 -0.518962 0.290035 -0.165349 0.513070 -0.351234 -0.333112 0.267391 0.645102 -0.192293 0.305389 -0.786533 -1.143863 -1.200204 -0.515397 -0.137840 -0.433276 0.267625 -0.428508 -0.183054 -0.371190 -0.538170 0.443569 -0.153405 0.381620 0.544234 -0.079825 0.505532 0.481028 -0.455475 -0.149713 0.180825 0.524561 0.392785 0.166095 -0.897547 0.639172 -0.511942 -0.293402 1.200678 -0.565436 0.226535 -0.132610 0.805742 -0.447409 0.900663 0.141851 -0.734432 0.495800 0.630235 0.301010 0.470696 -0.431905 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 0.344078 -0.321787 1.248789 0.835616 -0.545086 -0.061527 0.115763 -0.370778 0.362690 -0.800891 -0.384330 0.221430 -0.565909 0.303336 -0.489126 0.226730 -1.348244 -0.490432 -0.226917 -0.316314 -0.108968 -0.161731 0.470014 0.253380 0.602373 1.029714 -0.370855 -0.168190 -0.486247 0.260793 0.723297 -0.229276 0.409755 0.901902 0.132907 -1.191266 0.494632 0.332401 -0.318598 -0.603866 0.518601 -0.511060 -0.054982 -0.965873 -0.276161 0.082861 0.071904 0.868921 0.386095 0.060980 -0.603472 0.103793 0.030593 0.884618 -0.354831 0.178960 0.476551 -0.073486 -0.072088 -0.239069 0.157013 0.056970 0.086036 0.187622 -0.172821 -0.753197 -0.273099 -0.869641 -0.315429 0.519210 0.072949 0.383876 -0.629821 -0.180729 -0.730394 0.026309 -0.607856 1.020358 0.789617 -0.857607 0.308752 -0.071833 0.154261 -0.019722 -0.033159 0.324452 0.176520 0.260427 0.149841 -0.109620 -0.851463 -0.233225 0.203087 -0.697254 -0.217959 -1.291071 0.413692 -1.164732 -0.550226 -0.041430 0.437278 -0.407812 0.380971 0.145786 0.016032 0.406937 -0.264679 -0.245984 0.356562 -0.005010 0.193996 0.034011 0.073646 0.472570 -0.169610 -0.603097 -0.953537 0.445608 -0.111823 -0.045627 0.558108 0.454363 -0.204096 -0.103127 -0.018716 0.130255 -0.390407 1.070839 -0.001863 0.041447 0.092421 0.203362 0.469938 0.290439 0.546183 0.971887 -0.540884 -0.130636 -0.271442 0.127267 -0.467785 -0.693205 -0.001096 0.074362 -0.045439 -0.721915 -0.595009 -0.396414 -0.674537 -0.948265 -0.073278 -0.354278 -0.216695 0.771279 0.455829 0.767260 0.586174 0.838208 -0.481078 0.024651 0.017288 -0.154919 0.451237 0.506124 0.408081 -0.288953 -0.297724 0.354708 -0.450872 0.395920 0.013851 0.130618 0.168726 -0.795084 -0.075270 0.481278 0.562021 -0.033271 0.497028 0.583866 -0.822610 -0.274636 0.008012 0.545356 -0.266985 -0.233061 0.375177 -0.540493 0.510053 0.081786 0.067882 0.323401 0.036310 -0.131286 0.268045 -0.117236 0.162351 -0.329891 -0.289688 -0.199803 -0.180590 -0.678089 0.565149 -0.177457 -0.295658 -0.345518 -0.583575 0.777289 -0.843534 -0.241804 0.495216 0.082616 0.715465 -0.636690 0.254310 -0.424463 0.890569 0.310477 -0.048727 0.192084 -0.791190 -0.692065 -0.095077 0.196273 0.024289 -0.127778 0.403641 0.517504 -0.132819 -0.006082 0.673532 -0.230205 0.847349 -0.193433 0.273144 -0.230034 -0.421310 0.349546 -0.051526 -0.374781 -0.251971 0.419468 1.209286 0.161861 1.115237 0.933534 0.142329 0.846689 -0.422206 0.008717 -0.229470 0.383160 -0.293737 -0.326761 0.195894 0.583756 -0.182130 0.230797 -0.795693 -1.511408 -1.117722 -0.666443 0.069809 -0.903976 0.182071 -0.254523 -0.106981 -0.557988 -0.487887 -0.042156 -0.244126 0.728596 0.459266 -0.106362 0.494194 0.594975 -0.727985 -0.066990 0.679747 0.801895 0.270801 0.265745 -1.170445 0.705386 -0.516330 -0.187828 1.346726 -0.621305 0.280439 -0.293269 1.051109 -0.473010 0.985311 0.190261 -0.933447 0.468125 0.550232 0.192025 0.938386 -0.433646 -PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -1.680519 -6.470124 9.806965 7.394918 0.191721 2.444286 2.533277 -0.636324 0.553714 4.844707 -3.514920 6.242714 -4.781388 -1.154713 2.566776 1.649189 -5.803793 -5.219987 0.833139 -0.509265 -2.596989 -2.864270 -3.412425 7.286330 4.516221 1.996120 -3.457605 0.149877 -6.965786 -7.288852 -4.332920 -0.650598 3.839496 2.946506 5.714989 -6.570463 3.944635 5.797310 0.868258 -6.299949 1.187543 -1.880747 -0.256153 -0.299058 -0.522427 4.307563 6.343811 2.755374 1.684103 2.528306 -0.043625 -4.288013 3.290322 5.228501 3.415831 4.922274 6.630438 -3.577291 2.518507 -1.900666 1.231249 -6.351852 2.458243 1.462638 -2.533208 -1.822501 1.029922 -1.304957 -1.250062 2.901912 4.640841 -3.212525 -4.047621 -4.459324 -3.563778 -1.633851 0.128776 3.794753 8.294914 -3.633450 8.050461 4.428670 5.473230 -0.065959 4.524583 -0.629900 6.151432 1.451257 -4.021673 0.530404 -5.622452 -5.513012 -1.291882 5.358183 -2.515518 1.589990 1.851944 -7.218976 -8.035969 3.905918 -0.658318 -2.834230 -3.197400 2.376719 3.500848 2.255345 0.437466 -4.701901 -2.717198 1.394142 -5.124028 -1.608172 -1.287284 0.525285 -1.703954 2.412117 -6.882825 1.664233 4.202823 -3.074388 -1.502760 5.410474 -0.480295 6.356733 0.127190 1.165014 1.008693 3.626849 5.279153 1.082942 0.775296 -3.952609 -6.180685 1.240274 1.463051 -1.205372 -3.814539 -1.675634 2.389469 2.785267 0.366857 3.921711 -1.879191 10.387214 3.234897 -3.354628 -6.452118 -6.678101 -4.748267 -2.262494 1.765976 -2.682242 -3.477686 0.089540 3.636905 0.717911 -0.751533 4.574230 -2.197933 3.923542 0.576845 0.140878 0.252667 -1.740932 3.134494 -4.678352 -1.865981 4.122188 4.892890 2.557180 0.729253 -2.190338 2.656359 -3.411515 -5.127851 3.839985 0.149817 2.209624 6.367939 4.408988 12.278390 -2.637968 -1.181807 0.275535 0.090013 -2.486050 1.939713 -5.116080 3.491071 -0.114356 1.362314 7.896134 0.472464 -3.251213 3.655836 0.654830 0.303230 -4.826954 4.231025 -2.749074 2.648568 -1.035298 -0.536012 -4.512839 -1.942174 -3.726004 -0.865003 8.375796 -3.306366 -8.104347 2.490468 -2.010505 5.134930 -9.053531 6.375492 -2.895992 4.000439 -1.925312 -3.717326 0.373396 -0.962502 -0.418389 2.809268 2.141836 -1.750934 1.695512 2.474683 1.314429 1.686779 1.946638 2.425986 0.003989 1.694114 -1.123416 1.600026 -0.322475 0.575736 -3.415118 -0.897379 1.338704 4.066293 -2.062213 -0.891686 3.292162 -0.834579 1.271707 4.038758 0.472560 -3.171539 0.125453 -0.785223 6.697178 -5.257529 -4.012547 -2.162528 1.415786 0.736051 1.981297 -8.382329 -3.924950 -3.025576 -6.889610 -5.369909 2.581453 3.484243 2.472929 -1.408045 -5.228662 -3.771444 6.931240 1.695176 5.264129 3.461348 0.816812 6.314226 2.493968 2.081661 -3.737161 -1.325012 1.089189 -1.806797 -0.174134 -3.813559 2.414665 -5.807381 5.164499 5.878958 -3.424303 3.126047 -2.189435 4.823573 -7.495682 7.093743 3.207388 -8.390810 -0.031911 5.023819 4.099357 -6.362301 -4.913589 -PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -0.729296 -2.118441 2.974704 2.221432 0.117041 0.810760 1.029095 -0.279229 0.700088 1.051748 -1.175420 1.697670 -1.948302 -0.233776 0.484973 0.288274 -1.899929 -1.933327 0.323742 -0.118125 -0.638950 -1.307501 -0.730383 2.136683 1.260508 0.821700 -0.991682 -0.017644 -2.755330 -1.581392 -0.646005 -0.339004 1.292540 1.050044 1.453259 -2.480566 1.184124 1.934990 0.175587 -2.386499 0.537927 -1.165303 0.092155 -0.294582 0.101362 1.199391 1.808849 1.412689 0.625880 0.579034 -0.174790 -1.291985 0.395495 1.778642 0.510446 1.556892 2.067374 -0.851269 0.348993 -0.562855 0.372787 -1.763870 1.021505 0.843523 -1.371181 -0.588942 0.410807 -0.698177 -1.044293 0.990399 1.367723 -0.616711 -1.352990 -1.173596 -1.119062 -0.442760 0.548947 1.246873 2.899291 -1.151712 2.702036 1.145600 1.815742 -0.095521 1.437210 -0.090371 1.879622 0.383155 -1.395575 -0.272187 -2.708325 -1.415234 -0.507989 1.301666 -0.598342 0.252769 0.585565 -2.115295 -2.562155 0.858304 -0.324148 -0.816113 -1.102755 1.114019 1.240881 1.091704 -0.033093 -1.749446 -0.810993 0.620300 -1.633701 -0.515468 -0.203519 0.130984 -0.836219 -0.270949 -2.241900 0.312035 1.270517 -1.193321 -0.378585 1.887228 -0.826149 1.943098 0.158424 0.280434 0.287485 1.436734 1.539866 -0.013456 0.666414 -1.585281 -1.705272 0.310126 0.349131 0.849593 -1.368732 -0.396934 0.737431 0.713476 -0.059574 0.483473 -0.661368 2.665037 1.009534 -1.413471 -1.810162 -2.014770 -1.135637 -1.105278 0.516140 -0.988493 -0.721643 -0.004742 1.375911 0.564149 0.000970 2.308846 -1.098521 1.334220 0.297817 -0.118422 0.258815 0.128217 1.164890 -1.491248 -0.882896 1.239977 1.316306 0.638964 0.090224 -0.575532 0.597765 -1.482978 -1.611087 1.155013 0.259047 0.832777 2.116943 1.392085 3.083735 -1.292310 -0.149414 0.231730 0.016319 -0.653030 0.541499 -1.859573 1.254049 0.078388 0.440112 2.461148 0.110268 -1.280254 1.055566 0.260127 0.231841 -1.758297 1.161395 -1.037509 0.575926 -0.724222 0.007074 -1.292571 -0.934467 -1.314716 -0.312803 2.666627 -0.468574 -2.857854 0.745424 -0.617436 1.959304 -3.230086 1.674379 -1.118240 1.521431 -0.557039 -0.831920 0.136852 -0.440529 -0.202021 0.701227 0.765180 -0.423699 0.888224 1.014875 0.633192 0.510210 0.720026 0.904824 0.116714 0.440993 -0.527332 0.514869 -0.169488 -0.053341 -0.439455 -0.517959 0.623385 1.272781 -0.593685 0.542571 1.560635 -0.004701 1.122711 1.307833 0.313259 -0.978582 0.060288 -0.243292 2.243748 -1.391306 -1.111457 -0.817479 0.588712 0.153727 0.781653 -2.692011 -2.064956 -0.538914 -2.933324 -1.207341 0.250688 0.951735 0.802360 -0.079603 -2.128914 -1.067539 1.598004 0.329380 3.044334 0.993679 0.313937 1.958103 1.060862 -0.097818 -1.164338 0.245736 0.578439 -0.900895 -0.088986 -1.396380 0.796034 -1.855380 1.651903 2.017559 -1.203867 0.793274 -1.151318 1.871087 -2.278719 2.618780 1.236486 -2.573531 0.327799 1.100613 1.895134 -1.337991 -1.578110 -PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 0.257267 -0.303793 0.963445 0.689449 -0.279384 -0.064943 0.173832 -0.270030 0.414871 -0.250016 -0.325759 0.186877 -0.483137 0.299463 -0.325886 0.465623 -0.957476 -0.430546 -0.038788 -0.165945 -0.081692 -0.220059 0.530866 0.006470 0.516698 0.683318 -0.290745 -0.223247 -0.276933 -0.158972 0.502333 -0.331838 0.331134 0.589508 -0.018181 -0.806925 0.470386 0.188453 -0.286252 -0.499311 0.387567 -0.297479 0.023855 -0.642385 -0.087057 0.145574 0.170593 0.673247 0.386516 0.260199 -0.218569 -0.029908 0.226834 0.658304 -0.361176 0.165744 0.312949 -0.051709 -0.069119 -0.167274 0.202599 0.023005 0.128572 0.319450 -0.045731 -0.559181 -0.320560 -0.609644 -0.388346 0.418267 -0.089703 0.414512 -0.623298 -0.043984 -0.328675 0.042589 -0.833012 0.716143 0.785481 -0.598324 0.337012 0.051938 0.182617 -0.107549 -0.127857 0.252207 0.042851 0.245902 -0.042008 -0.110865 -0.367862 -0.206686 0.160429 -0.443606 -0.065248 -0.927916 0.311915 -0.610943 -0.435426 0.045386 0.319556 -0.152710 0.268124 0.136283 0.086298 0.390719 -0.288469 -0.311465 0.249104 -0.204855 0.201575 -0.030317 0.045121 0.202601 -0.228972 -0.279709 -0.739567 0.088355 -0.155882 -0.275720 0.381336 0.263202 -0.064825 0.004351 -0.020157 0.121395 -0.218105 0.805222 0.126534 0.267033 0.169910 0.233732 0.136831 0.341267 0.536621 0.577771 -0.327560 0.039653 -0.278710 0.074337 -0.362264 -0.467192 0.031867 0.082244 0.217974 -0.531091 -0.532376 -0.249334 -0.394649 -0.732383 0.133589 -0.395665 -0.011476 0.450134 0.395733 0.342619 0.545936 0.735961 -0.530392 0.055614 -0.063813 -0.025632 0.393126 0.415720 0.362808 -0.201944 -0.228861 0.282790 -0.057883 0.135608 0.064407 -0.037462 0.183457 -0.641933 0.052263 0.412266 0.385918 -0.199117 0.294501 0.249751 -0.367872 -0.066026 -0.007110 0.505145 -0.028953 -0.152189 0.278116 -0.575004 0.534689 -0.034981 0.164030 0.083658 0.058233 -0.171209 0.283640 -0.199142 0.091768 -0.247982 -0.158853 -0.195667 -0.148663 -0.476039 0.516754 -0.089572 -0.244788 -0.069847 -0.118715 0.591283 -0.457560 -0.028829 0.323123 -0.034232 0.400984 -0.420240 0.513236 -0.381027 0.527760 0.129478 -0.084995 0.129451 -0.444751 -0.380238 -0.239101 0.220418 0.168773 -0.012677 0.362588 0.395557 -0.143830 0.097248 0.545293 -0.091483 0.592298 0.013840 0.222386 -0.147524 -0.227125 0.248111 -0.073138 -0.212501 -0.233576 0.202608 0.934741 0.163960 0.590350 0.789702 -0.011791 0.703120 -0.392182 0.156216 -0.137647 0.480236 -0.252024 -0.169858 0.105082 0.372939 -0.284565 0.336238 -0.593085 -1.082194 -0.692880 -0.392828 -0.136122 -0.502342 0.236059 -0.290882 0.015680 -0.373663 -0.346042 0.097765 -0.205849 0.308701 0.348936 -0.061563 0.366204 0.449977 -0.465777 -0.179317 0.251105 0.485344 0.185191 0.180676 -0.694024 0.421676 -0.492560 -0.161172 0.874611 -0.473068 0.004549 -0.236758 0.773712 -0.331939 0.770856 0.222774 -0.483002 0.512262 0.396165 0.352064 0.573543 -0.341074 -PE-benchmarks/largest-independent-set-problem.cpp__max(int, int) = -0.412424 -0.733312 1.172376 0.776973 0.208506 0.143927 0.512441 0.134319 0.210559 0.616499 -0.383314 0.770448 -0.727375 -0.019082 0.096625 0.294164 -0.564760 -0.811733 0.131326 0.066101 -0.291561 -0.454387 -0.070927 0.582450 0.701587 0.251006 -0.596022 -0.222541 -1.041621 -1.090796 -0.481009 -0.107869 0.507910 -0.028404 0.454097 -0.942191 0.350480 0.686188 0.078828 -0.913779 0.396112 -0.245405 0.160508 -0.026042 0.149159 0.608505 0.923192 0.232428 0.350975 0.393871 0.031744 -0.501966 0.154906 0.621812 0.176981 0.481055 0.699019 -0.355246 0.059723 -0.271251 0.108353 -0.840287 0.259306 0.241627 -0.438744 -0.155154 0.113823 -0.192873 -0.381914 0.445254 0.309702 -0.243114 -0.597814 -0.490496 -0.513537 -0.084902 0.346651 0.463825 1.055413 -0.396703 0.918618 0.300885 0.653582 -0.080269 0.226073 -0.109560 0.344258 0.111173 -0.432075 -0.260215 -0.658018 -0.529738 -0.445475 0.900005 -0.099517 0.291011 0.355809 -0.693582 -0.896855 0.241376 -0.123783 -0.244840 -0.658220 0.503140 0.424595 0.638013 0.104179 -0.621657 -0.485236 0.034055 -0.400094 -0.082157 0.068595 -0.161509 -0.473427 0.061912 -0.820941 0.077321 0.332662 -0.524483 -0.357562 0.539581 -0.365623 0.867402 0.138562 0.333010 0.138240 0.566741 0.780959 0.159053 0.270960 -0.452273 -1.018496 -0.160400 0.190616 0.452856 -0.584179 -0.012087 -0.019841 0.131349 -0.123823 0.058761 -0.323580 1.074432 0.849589 -0.633412 -0.877728 -0.641988 -0.300736 -0.353829 0.165012 -0.321515 0.009299 0.029589 0.351295 0.031243 -0.033618 1.298341 -0.514203 0.389586 0.196746 -0.299990 0.079644 -0.083604 0.405540 -0.545163 -0.302323 0.397046 0.602608 0.257245 -0.003908 -0.117690 0.295153 -0.561927 -0.580963 0.536304 0.159620 0.286941 0.567742 0.434162 0.979080 -0.524582 -0.273994 0.148590 0.008260 -0.340258 0.249994 -0.732476 0.580051 -0.054981 0.231766 0.768457 0.114483 -0.504811 0.724408 -0.038971 0.105370 -0.558785 0.438007 -0.448079 0.306429 -0.210119 -0.293461 -0.404864 -0.149592 -0.314530 -0.069773 0.956058 0.109883 -1.159037 0.155683 -0.208359 0.651461 -1.359350 0.696723 -0.294945 0.427503 -0.249285 -0.060098 0.016432 0.024053 0.108936 0.104815 0.182852 -0.077203 0.302424 0.573274 0.148429 0.042696 0.226319 0.391032 0.173494 0.286379 0.086711 0.047288 -0.112431 -0.019251 -0.173544 -0.001625 0.175222 0.500148 -0.312348 0.164947 0.491117 -0.143640 0.496915 0.544567 0.319341 -0.344695 0.068631 -0.105457 1.126214 -0.527652 -0.481206 -0.256343 0.406538 -0.043145 0.300928 -0.922291 -0.835728 -0.047222 -1.484550 -0.434920 0.090775 0.341967 0.105042 -0.198989 -0.621061 -0.393405 0.531514 0.300283 1.245576 0.266423 -0.059689 0.705124 0.333858 -0.203559 -0.371463 -0.052440 0.159645 -0.197619 -0.177496 -0.367104 0.104827 -0.824929 0.411261 0.719449 -0.537992 0.300136 -0.257901 0.561428 -0.933663 1.052552 0.393980 -0.845604 0.275189 0.309466 0.897806 -0.615964 -0.549620 -PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -1.592670 -3.558954 12.019646 8.122741 -2.484453 1.623315 -0.669236 -4.874574 3.283270 1.055762 -1.925511 4.880424 -3.104415 0.807434 0.499356 3.362020 -9.217094 -3.783551 -2.187053 -4.961074 -3.565159 -1.792250 -0.565511 4.071730 4.605187 2.612529 -4.975301 1.542111 -3.972280 -8.153101 -0.440638 -1.139080 4.020635 -1.422739 3.912268 -15.756734 7.255339 5.509787 -1.605839 -6.510558 3.125846 -2.861963 -0.201470 -1.575173 -4.923022 2.224724 1.921712 1.057792 3.610704 2.248391 -0.343078 1.555674 2.617520 10.775088 -0.126098 4.010307 4.617731 -3.732158 -2.001070 -0.843131 0.998639 -2.059136 2.557571 0.356303 -1.113474 -6.359470 0.856849 -2.003382 -3.523952 4.056159 1.675349 -5.415137 -2.756722 -4.488265 -6.320788 -2.331820 3.851045 5.698074 7.226564 -5.059947 4.538294 0.470889 1.335023 2.196510 3.648997 0.300212 7.120340 1.846759 -0.937008 -0.377647 -1.544513 -3.641224 1.939292 2.508918 -3.157164 -5.684456 3.156761 -9.896118 -6.887711 3.226029 3.359386 -3.734807 -5.949660 -3.182155 3.481168 2.624889 -1.019013 -3.930757 -1.485066 2.952752 -1.913776 -1.544518 -1.471113 -0.959942 -1.064561 0.851834 -8.207678 4.034312 2.450845 0.390689 -2.001666 5.884798 -1.417337 0.703073 -0.524569 3.836697 -2.589689 6.136442 -0.363385 2.952444 -2.345025 0.540733 -1.679568 -0.076570 1.420403 -0.869406 -3.341408 -3.427315 -1.851954 2.221005 -3.795344 2.440169 -3.005574 7.373986 5.411000 -1.638830 -5.776816 -4.105795 -6.172481 -7.890128 0.135737 -3.158060 -5.478994 4.982113 4.300288 3.287228 2.652667 4.617917 -2.793523 2.555350 -0.284346 -1.942087 4.488283 -2.512517 3.943641 -4.389753 -2.436229 3.816379 1.133238 4.346591 0.350544 -0.328988 1.999635 -4.500419 -3.562089 4.196238 3.210281 3.316321 4.638164 6.008833 12.465107 -3.555603 -0.612324 2.685442 -2.740291 -1.413910 0.921029 -4.280630 0.046450 2.420521 0.937903 9.468408 0.030154 -3.164043 1.412244 0.874710 1.514697 -4.161805 2.366490 -2.685089 2.709191 -1.443687 -3.132276 -4.842436 -0.992596 -5.777627 -5.828074 8.498417 -8.991793 -8.847276 7.523932 -3.087194 6.512217 -10.259101 6.016041 -3.829210 7.481102 -1.922379 -1.226127 0.000318 -3.468850 -5.491098 5.560451 1.934226 -1.466196 0.295178 5.933275 3.123246 1.670475 -2.039237 4.646357 -2.080041 6.459077 -2.607802 5.573588 -2.235990 -0.707678 -1.942598 -0.740959 -2.362876 -0.078411 1.654124 0.123501 1.699333 2.713897 2.159512 5.280655 4.464933 -3.611547 3.853734 -1.553346 3.090984 -3.572662 -4.023504 2.087939 5.324606 0.641861 1.535822 -8.742943 -6.336702 -10.645501 -7.892909 -1.399997 1.379819 1.833168 -0.714052 -2.150246 -4.948403 -4.413135 9.339912 0.405163 8.799140 4.242666 1.227400 5.552896 5.297075 -1.114132 -1.681745 -0.954256 0.392623 0.525967 -0.825094 -6.825086 6.513027 -4.299186 2.132838 8.442936 -3.742967 4.119276 -0.160416 2.054835 -6.044040 6.979817 1.663974 -6.015155 2.573412 4.924680 3.441600 -2.087241 -4.551193 -PE-benchmarks/largest-independent-set-problem.cpp__newNode(int) = 0.061814 -0.594442 2.952234 1.939085 -0.671025 0.102854 0.291206 -1.299945 1.397336 0.006629 -0.370248 0.522458 -0.885377 0.556361 -0.387836 1.305855 -2.465162 -0.942226 -0.397705 -1.481962 -0.800330 -0.424647 0.707973 -0.124419 1.303768 0.723071 -0.954683 -0.426747 -0.637287 -1.255257 1.061675 -0.696095 0.839817 0.084107 0.245423 -4.122233 1.773628 0.719444 -0.890575 -1.284469 0.922503 -0.836603 0.193583 -0.940689 -0.545161 0.249124 0.277288 1.043326 1.276418 0.698140 0.033426 0.479141 0.523311 3.262637 -1.106587 0.707966 0.644518 -0.617273 -0.656829 0.243658 0.331430 -0.054848 0.562380 0.336784 0.000000 -1.869647 -0.301005 -1.172109 -1.053031 1.103976 0.168823 -0.415286 -1.095491 -0.495602 -1.247643 -0.609538 -1.861590 1.687691 1.910153 -1.640700 0.939081 0.076828 0.388375 0.389532 0.401541 0.428051 1.287531 0.462805 -0.186564 -0.168713 -0.517963 -0.526572 0.633708 -0.433411 -0.409281 -2.756390 0.876213 -1.565611 -1.429206 0.629321 1.136533 -0.471730 -0.841896 -0.677824 0.592455 0.684131 -0.887249 -1.061996 -0.182449 0.095787 -0.008572 -0.178187 0.048406 -0.548227 -0.347851 -0.439196 -2.027280 0.670336 -0.082464 -0.083488 -0.407641 1.277836 -0.265605 -0.394222 -0.071388 0.937450 -0.983445 1.830189 -0.312314 1.034205 -0.154470 0.679665 -1.004150 0.374233 1.068271 0.867497 -0.419726 -0.406467 -1.068424 0.400257 -1.432344 -0.056162 -0.118647 1.233006 1.264727 -0.811948 -1.303767 -0.584330 -0.657390 -2.027093 0.376874 -0.944837 -0.749814 0.910194 1.139869 1.213917 1.372396 1.202274 -1.108916 0.657058 -0.522161 -0.183071 1.472104 0.179632 1.169907 -0.828819 -0.450076 0.418141 0.116387 0.761111 0.136838 -0.160147 0.494044 -1.555342 -0.232725 0.579954 0.972681 -0.272877 0.850502 1.239561 1.796873 -1.358442 0.035785 1.235817 -0.638804 -0.238579 0.506007 -1.212221 0.522275 0.541670 -0.056252 1.291088 0.073942 -0.744281 0.273326 -0.228114 0.336633 -0.595527 -0.252133 -0.612957 -0.332285 -0.637705 0.372378 -1.102103 -0.459359 -0.830894 -1.082252 1.803847 -1.958677 -1.015732 1.832965 -0.789146 0.941727 -1.913958 2.260725 -1.113967 1.134854 -0.628513 -0.205709 -0.166565 -0.059715 -1.522789 0.749216 0.491245 -0.277972 0.219494 1.882651 1.063107 0.398247 -0.401814 1.681188 -0.626200 1.650574 -0.381555 1.511309 -0.735762 -0.501584 -0.013066 -0.191257 -0.621785 -0.507316 0.863028 1.299512 0.352941 1.022722 1.079594 0.934027 1.675307 -0.959193 1.036020 -0.411477 0.838024 -0.667597 -0.615651 0.756186 0.952965 -0.366439 0.603035 -2.001491 -2.030946 -2.233494 -1.122679 0.007749 -0.034638 0.207798 -0.558843 -0.185296 -1.458523 -0.933231 1.190412 -0.413764 0.571481 0.991346 0.174187 1.142881 1.543109 -0.792431 -0.453137 0.039979 0.379455 0.466406 -0.216872 -1.782802 1.749368 -1.319421 0.039524 2.121618 -0.923989 0.404978 0.110299 1.460069 -1.120040 1.855476 0.336979 -0.972175 1.210129 1.762360 1.468697 0.545089 -0.873532 -PE-benchmarks/largest-independent-set-problem.cpp__main = 0.754952 -1.030606 7.348457 5.122280 -3.064880 0.257035 -0.892438 -3.761628 2.447970 -1.980387 -0.653196 1.442821 -1.415829 1.591495 -0.454577 2.591778 -7.165524 -1.505231 -2.072843 -3.872620 -2.127657 -0.308598 1.358997 0.692248 2.780215 3.822768 -2.809107 0.142157 -0.350490 -2.433029 3.032229 -1.033423 2.462912 1.968522 1.268922 -11.406447 4.478992 1.929169 -2.047410 -2.938382 2.142699 -1.776688 -0.318052 -3.169384 -3.297086 0.492751 -0.590802 1.879556 2.548852 0.848221 -1.456949 2.229317 1.318300 7.248956 -1.722671 1.400626 1.856923 -1.728709 -1.614115 -0.317084 0.820741 0.903008 1.223786 0.288654 0.249718 -5.179565 -0.517237 -3.102948 -2.349797 2.930773 0.731609 -1.436850 -2.105188 -1.943949 -3.704597 -1.222147 -1.486757 4.848875 3.850296 -4.120242 1.205339 -0.567151 -0.223262 1.184214 1.147506 1.054410 3.609429 1.422604 0.731807 0.312405 -0.785761 -2.106592 2.378591 -1.445949 -1.824750 -7.126600 2.016665 -5.550853 -2.994663 1.381128 3.444885 -1.859979 -2.296793 -2.992063 1.273436 1.304065 -1.532933 -1.562179 0.180703 0.933053 0.350576 -0.567289 -0.733144 0.521654 -0.405966 -0.910488 -5.143976 2.812890 0.013695 1.084297 0.359924 2.932190 -0.451932 -1.918634 -0.658690 2.053539 -3.018457 4.848699 -1.788139 1.988128 -0.953357 2.156847 1.203866 0.331698 2.169756 1.997038 -1.320614 -2.894663 -2.601216 1.201807 -3.511587 -0.411507 -0.289061 2.338467 2.908697 -1.064533 -3.160256 -1.623794 -3.256766 -6.013586 -0.189822 -2.200353 -2.387261 4.513976 2.599999 3.258519 3.251088 1.945555 -2.253476 1.197233 -1.044298 -0.643612 3.635397 0.717295 2.273445 -1.826589 -1.292891 1.692317 -1.509441 2.894385 0.385628 -0.003726 0.972823 -3.057693 -1.394272 2.395732 2.766292 0.514069 1.837438 3.618610 4.027266 -2.236658 0.173945 2.737872 -2.182511 -0.625370 1.208290 -2.211767 0.326741 1.488455 -0.353455 4.030136 -0.266527 -1.337519 0.164332 0.101573 0.816539 -1.395903 -0.459591 -1.139559 0.366945 -2.115035 0.090977 -2.505092 -0.692834 -2.844652 -3.898122 4.588020 -6.731444 -3.028962 5.340004 -1.705913 3.365156 -4.693355 3.268166 -2.285860 3.994534 -0.981024 -0.802436 0.082678 -2.947780 -4.795031 2.492805 1.109629 -0.722513 -1.132729 4.141607 2.517922 0.393175 -1.738586 3.678333 -1.603336 5.045539 -1.703330 4.096427 -1.754892 -0.860224 -0.178995 -0.300546 -2.389479 -2.010148 2.525545 2.772754 0.251389 4.280085 2.201474 2.240178 4.031691 -2.357917 2.268997 -0.909588 0.575840 -1.497322 -1.692094 2.355608 3.550237 -0.571204 1.005585 -4.554798 -5.199403 -7.662241 -2.842384 -0.125847 -0.303140 0.779685 -1.466839 -1.273215 -2.573137 -2.583272 3.522480 -1.007170 3.079149 2.689026 0.392173 2.761909 3.882469 -2.283212 -0.555066 0.776056 1.376913 1.659530 0.290143 -5.689283 5.154317 -1.929481 -0.344269 6.249491 -2.356786 2.179652 -0.159505 3.983534 -2.377688 4.459011 0.381126 -3.284692 2.285441 3.718050 1.328350 2.402524 -2.199866 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__solve(int*, int) = -2.909889 -4.701719 7.192797 4.918905 0.486044 2.070501 2.596712 -1.139469 1.311755 3.148294 -1.431514 4.444876 -4.096137 -1.061284 -0.041237 0.681552 -3.637289 -4.027189 -0.109627 -1.559665 -1.745543 -2.418234 -2.085489 5.069867 3.203419 -0.635368 -2.788852 -0.366984 -6.813718 -5.515875 -2.671801 -0.287465 2.888933 -2.213485 2.916554 -8.049036 3.198198 5.571175 -0.002170 -5.287495 1.880914 -2.328572 0.449697 0.244075 -1.814976 1.927345 3.699287 0.438526 1.458964 1.457386 0.569353 -1.074245 1.948933 6.879979 1.191379 4.097408 4.677173 -1.883983 0.305814 -0.742769 0.525585 -3.912782 2.160268 0.135071 -2.101046 -1.766859 0.747944 -0.401123 -2.041874 1.754378 2.115263 -3.222328 -2.170727 -2.689971 -5.296021 -1.995753 3.322865 2.089313 5.931205 -3.122075 5.890976 2.165319 2.878450 1.156483 3.588329 -0.130854 4.128535 0.827664 -2.286118 -0.206927 -4.121357 -1.581893 -1.044898 4.134592 -2.218137 -1.911096 2.411018 -6.316161 -6.360727 2.778847 -0.310705 -2.676004 -3.774145 -0.088757 2.185902 2.350954 -1.213300 -4.260204 -3.060030 2.363498 -2.575157 -1.307009 0.469498 -0.962085 -0.742857 -0.004453 -4.974833 1.642017 3.168956 -1.944179 -2.752381 4.937475 -1.407705 4.420125 0.348443 1.998263 -0.262366 2.751347 2.505536 0.897130 -0.961433 -2.332165 -5.058357 -1.866321 0.218354 0.414470 -3.013407 -1.164851 0.680592 1.899045 0.097362 2.987115 -1.698106 6.578602 2.516924 -2.121405 -3.447720 -4.312853 -2.988948 -3.079045 0.630207 -1.446492 -3.198430 0.892367 2.981460 0.619927 -0.243216 4.515132 -0.748522 2.412992 0.718538 -1.798902 1.108756 -2.948310 2.663839 -3.360832 -2.532047 2.637349 3.263191 3.319954 -0.030405 -0.248039 1.307150 -2.443734 -3.407811 0.886421 0.882685 1.452253 4.970495 4.013164 8.620839 -3.737474 -0.588914 0.200568 -1.202115 -0.586307 0.134325 -3.963164 1.170280 1.166515 -0.381914 6.714452 0.244441 -3.023417 3.193738 0.196009 0.858268 -4.153750 3.072771 -2.825473 1.120424 -1.235847 -2.141575 -3.427389 -1.528985 -4.240522 -2.704763 6.259382 -3.643017 -6.540399 2.417978 -0.050052 3.795073 -8.235340 5.316864 -2.254806 4.618036 -1.263106 -1.356514 0.387293 1.026438 -1.162503 2.273811 1.555442 -2.727110 2.347072 3.236790 1.283175 1.639563 0.317044 2.564981 -0.488423 1.622966 -2.161135 2.269952 -0.890250 -1.570255 -1.616876 -0.918250 1.138592 2.579027 -0.188295 -0.829598 2.560402 -0.692465 0.945654 4.751280 1.333595 -2.010973 0.922230 -0.708149 4.724553 -3.208202 -2.557603 -1.332976 2.379448 1.164070 1.739497 -6.571582 -3.702650 -3.607016 -6.630585 -1.358003 1.543109 1.236450 1.370194 -0.879800 -5.445992 -3.142825 5.344745 0.478099 5.123231 3.036318 1.315657 4.849641 2.591282 0.578828 -1.660874 -0.139918 0.553918 -1.326070 -1.409515 -2.475894 2.041671 -4.578256 3.736877 4.078108 -2.143974 2.824031 -0.409421 1.543196 -5.470441 5.867409 2.175126 -5.299019 1.093006 4.086925 4.438354 -4.572648 -3.315036 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 0.201667 -0.475918 1.282157 0.905552 -0.240369 -0.048569 0.389245 -0.304591 0.485571 -0.135499 -0.367057 0.358127 -0.660228 0.339222 -0.446300 0.603968 -1.104747 -0.603787 -0.028292 -0.234019 -0.117806 -0.271992 0.641292 0.051070 0.729436 0.630325 -0.410552 -0.458481 -0.542378 -0.334816 0.535690 -0.389106 0.474757 0.448377 -0.087873 -1.260602 0.582056 0.365817 -0.362037 -0.711625 0.575196 -0.377372 0.026836 -0.673042 -0.135053 0.149966 0.293003 0.746156 0.474092 0.403058 -0.169418 0.015879 0.352197 1.082453 -0.437683 0.293552 0.473255 -0.077632 -0.126191 -0.174721 0.254987 -0.065245 0.212984 0.337526 -0.032564 -0.696184 -0.397855 -0.708760 -0.537576 0.468020 -0.069691 0.414461 -0.733969 -0.028999 -0.456183 0.000480 -0.847939 0.839211 1.028835 -0.770876 0.555916 0.065544 0.222216 -0.131053 -0.142666 0.312875 -0.006468 0.305104 -0.044897 -0.241771 -0.505324 -0.173125 0.135726 -0.355617 -0.127903 -1.209451 0.498782 -0.635249 -0.641860 0.115203 0.373976 -0.258397 0.202152 0.124061 0.086104 0.573496 -0.426102 -0.466381 0.101690 -0.203463 0.236146 -0.097806 0.071909 0.124726 -0.309034 -0.367096 -0.938973 0.140020 -0.125146 -0.393215 0.259494 0.378320 -0.121731 0.125929 -0.013107 0.252583 -0.279275 0.941114 0.213456 0.357225 0.270533 0.239433 -0.071272 0.279756 0.673549 0.803870 -0.457947 0.055323 -0.385210 0.129094 -0.366559 -0.443295 0.069835 0.269774 0.385832 -0.669504 -0.687085 -0.364607 -0.344132 -0.876208 0.166921 -0.502451 -0.009468 0.520582 0.516320 0.320120 0.625095 1.031305 -0.633950 0.189310 -0.018788 -0.117109 0.481500 0.371258 0.474909 -0.308165 -0.362586 0.326761 0.071162 0.232626 0.017682 0.040905 0.244155 -0.809606 -0.027366 0.391425 0.460297 -0.306444 0.410806 0.365643 -0.119720 -0.239885 -0.059823 0.581316 -0.128530 -0.172747 0.305120 -0.801931 0.607927 -0.009304 0.101397 0.271947 0.102846 -0.344766 0.475061 -0.273663 0.079966 -0.335222 -0.057098 -0.320672 -0.237033 -0.546045 0.459518 -0.144119 -0.308778 -0.173536 -0.173960 0.828544 -0.582057 -0.180008 0.353908 -0.040959 0.393039 -0.782100 0.929534 -0.493202 0.586573 0.082577 -0.129448 0.132749 -0.296864 -0.497123 -0.242178 0.290303 0.086512 0.122374 0.650129 0.474827 -0.140196 0.083317 0.715496 -0.114365 0.718864 -0.026648 0.343393 -0.214394 -0.390985 0.225458 -0.090793 -0.202095 -0.250496 0.239474 1.086725 0.218612 0.601460 0.921078 0.139881 0.920262 -0.499441 0.278383 -0.175250 0.748835 -0.319122 -0.229375 0.096902 0.475612 -0.293494 0.505575 -0.831083 -1.337297 -0.792120 -0.675267 -0.080854 -0.513216 0.307720 -0.379887 -0.006693 -0.665148 -0.490123 0.101396 -0.248071 0.409845 0.540686 -0.019209 0.525546 0.540319 -0.539599 -0.187266 0.243553 0.592846 0.215695 0.071718 -0.741511 0.458365 -0.690274 -0.117377 1.055918 -0.522149 0.069385 -0.258652 0.898138 -0.487918 1.070066 0.288964 -0.623106 0.671978 0.555000 0.573871 0.479937 -0.443778 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -1.105754 -2.289780 3.208789 2.326593 0.798821 0.724500 1.919669 -0.225437 1.330756 2.027895 -0.873866 1.839097 -2.347928 -0.035706 0.360655 0.952102 -1.545151 -2.356587 0.569580 -0.229359 -0.717658 -1.666032 -0.025625 1.447293 1.679407 -0.379858 -1.202574 -1.005089 -3.293601 -2.104856 -0.455592 -0.617167 1.489177 -0.501192 0.794885 -3.752218 1.335638 1.936582 -0.033379 -2.844107 0.969878 -1.254251 0.562363 0.095259 0.455039 1.044147 2.149626 1.415829 1.100936 1.178790 0.538103 -1.111520 0.438293 3.097170 -0.234373 1.673957 1.862295 -0.809997 -0.217568 -0.233972 0.429835 -1.937775 1.327964 1.024600 -1.295060 -0.670809 0.246141 -0.676761 -1.835598 1.030703 1.155068 -0.568429 -1.628742 -0.731463 -0.906575 -0.572549 0.343429 1.239303 3.342669 -1.317094 3.069657 0.992692 1.892282 -0.125804 1.120394 -0.059937 1.412042 0.304993 -1.607193 -1.052976 -2.809131 -0.986857 -0.825680 1.500572 -0.240476 -0.302431 0.851196 -0.755820 -2.762164 0.922312 -0.341768 -0.585344 -1.863973 0.998541 1.427267 1.765340 -0.477342 -2.320100 -1.644592 0.445996 -1.416379 -0.642085 0.143095 -0.982416 -1.292257 -0.779857 -2.323226 -0.151266 1.094294 -1.707206 -1.401028 1.955409 -1.454722 2.178288 0.321647 0.776046 0.245093 1.449194 1.789505 0.455758 1.340326 -1.727211 -3.181412 0.038259 0.568944 1.790036 -1.159063 0.217845 0.024218 0.612309 -0.302577 0.577368 -0.317755 2.900891 1.851284 -1.647882 -2.008681 -1.751943 0.036205 -1.118297 0.940199 -1.241330 0.006248 -0.259738 1.539360 0.248834 0.246427 3.253468 -1.644156 1.844269 0.282724 -0.374692 0.573016 0.100827 1.430393 -1.612100 -1.099288 0.881480 2.055412 0.407065 -0.144453 -0.422790 0.682764 -1.855475 -1.555474 0.469630 0.363161 0.307760 1.890874 1.170565 3.979941 -2.148728 -0.326590 0.562274 -0.023042 -0.524431 0.354607 -2.397394 1.402364 0.075272 0.163983 2.470850 0.225334 -2.027107 1.531770 -0.042957 0.218184 -1.655985 1.231406 -1.387553 0.002688 -0.608288 -0.452039 -1.297374 -1.003845 -1.194653 0.100292 2.855756 0.278571 -3.144518 0.654367 -1.116743 1.406237 -4.116300 3.461038 -1.314847 0.821520 -1.078369 -0.601871 -0.193864 0.991200 -0.155164 0.563401 0.854490 -0.450103 1.564340 2.217807 0.701887 0.591668 0.645444 1.267234 0.362688 0.444132 -0.262576 0.879760 -0.474729 -0.311582 -0.411503 -0.561977 1.015445 1.222956 -0.691226 0.878070 1.798845 -0.675405 1.538180 1.688366 0.870621 -1.088510 0.709862 -0.289771 3.029509 -1.245244 -0.918769 -0.763484 0.551706 -0.092995 1.341935 -2.855780 -2.343574 0.225404 -3.623385 -0.756026 0.611331 0.813890 0.325602 0.068753 -2.853506 -1.019997 1.024704 0.278199 2.924243 1.161733 0.340032 2.055481 1.265850 -0.448813 -1.151133 -0.069199 0.198085 -0.974032 -0.835338 -0.775210 0.485866 -2.449465 1.671712 1.764672 -1.022335 0.457314 -1.125106 1.611680 -2.356284 3.067571 1.350823 -1.888460 0.946319 1.154644 3.151438 -1.793715 -1.568720 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = -0.145337 -0.623839 0.786901 0.567470 -0.154657 0.130551 0.414390 0.054622 0.179863 -0.307751 -0.308085 0.344542 -0.617005 0.042095 -0.279978 -0.041525 -0.635840 -0.553546 0.052835 0.021841 -0.003095 -0.262529 0.061799 0.453058 0.340563 0.503264 -0.213503 -0.341652 -0.845651 0.277997 0.377308 -0.108320 0.408494 0.510991 0.067031 -1.123368 0.094882 0.466299 -0.115850 -0.750275 0.324953 -0.458230 0.064617 -0.501023 -0.144812 0.069768 0.334902 0.518492 0.036100 0.036525 -0.421167 -0.134990 0.004733 0.869209 -0.051283 0.324981 0.662257 0.016605 0.018060 -0.211883 0.170583 -0.224433 0.226613 0.192403 -0.316641 -0.224393 -0.205195 -0.584075 -0.379337 0.195556 0.156055 0.301138 -0.399512 -0.129056 -0.552341 -0.076506 -0.249292 0.590333 0.757240 -0.674096 0.664826 0.116222 0.402586 -0.010740 0.160696 0.230742 0.024899 0.183975 -0.106848 -0.086278 -0.913169 -0.104438 -0.097277 -0.215841 -0.196638 -0.698264 0.396048 -0.550008 -0.562299 0.140276 -0.017992 -0.215157 0.106999 0.210246 0.027762 0.556368 -0.350919 -0.384959 -0.185247 0.123073 0.008951 -0.093406 0.141848 0.379002 -0.198692 -0.686605 -0.625105 0.170911 0.232166 -0.345607 0.222969 0.481994 -0.352520 0.407715 0.010200 -0.015624 -0.142301 0.759155 0.360402 -0.180515 0.251667 -0.279578 -0.208236 -0.020752 0.274919 1.125276 -0.483901 -0.052003 0.089367 0.137280 0.063103 -0.409773 0.112600 0.192940 0.082512 -0.504122 -0.392314 -0.598383 -0.202803 -0.557219 -0.064875 -0.302265 0.118172 0.577306 0.390643 0.444994 0.163128 0.968973 -0.380626 0.264614 0.070124 -0.209426 0.045747 0.409292 0.264536 -0.270759 -0.403285 0.239643 0.017193 0.324865 0.045808 0.024918 0.077392 -0.486710 -0.300575 0.239373 0.389268 -0.058923 0.538962 0.413970 -0.342758 -0.497193 -0.074152 0.082474 -0.185496 -0.107993 0.129610 -0.586429 0.432626 0.032214 -0.177527 0.327193 0.014514 -0.297747 0.407051 -0.143220 0.045239 -0.336194 0.080388 -0.323559 -0.237637 -0.528636 0.263840 -0.186672 -0.320303 -0.372994 -0.272877 0.709864 -0.372921 -0.362606 0.002990 0.213610 0.435832 -0.810792 0.420551 -0.292088 0.679097 0.099762 -0.152388 0.092920 -0.163271 -0.144301 -0.208299 0.240258 -0.206197 0.082685 0.426584 0.268758 -0.071962 0.236194 0.430960 -0.009209 0.197417 -0.210376 0.073099 -0.139668 -0.381761 0.262694 -0.139256 0.185069 0.119638 0.135235 0.866183 0.360008 0.488943 0.629848 0.352540 0.322511 -0.287886 -0.170036 -0.107336 0.742869 -0.263207 -0.148550 -0.306328 0.419316 0.003470 0.191303 -0.645936 -1.090390 -0.478657 -0.745459 -0.002390 -0.444955 0.098776 0.003643 0.036669 -0.754577 -0.358197 -0.234564 -0.251445 0.731129 0.355371 0.076093 0.570897 0.345378 -0.450848 -0.185383 0.601068 0.546771 -0.111223 0.140216 -0.581223 0.188692 -0.536179 0.156542 0.763872 -0.266641 0.222739 -0.137953 0.832079 -0.423379 0.979600 0.347756 -0.848888 0.250360 0.422075 0.423357 0.252423 -0.378690 -PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -0.686553 -2.047017 2.904863 2.210224 0.219081 0.778414 1.025584 -0.313915 0.727002 1.274273 -1.098330 1.668060 -1.898719 -0.182972 0.552723 0.447789 -1.766335 -1.884472 0.309622 -0.131651 -0.668832 -1.301077 -0.630385 1.980345 1.281979 0.662712 -1.009181 -0.045390 -2.636697 -1.775051 -0.720034 -0.353291 1.263314 0.904343 1.394149 -2.300638 1.222717 1.879150 0.172393 -2.290107 0.516250 -1.049994 0.105576 -0.172934 0.188437 1.224573 1.772622 1.285820 0.689199 0.682019 0.034115 -1.265405 0.474988 1.670584 0.459602 1.527683 1.934375 -0.852395 0.336024 -0.525887 0.372917 -1.711530 1.010371 0.850578 -1.264367 -0.590413 0.382881 -0.593129 -1.055562 0.995461 1.301069 -0.654384 -1.369611 -1.148245 -0.942058 -0.425135 0.439254 1.146982 2.849161 -1.054217 2.618105 1.151573 1.737033 -0.137117 1.363496 -0.137208 1.823317 0.372223 -1.393850 -0.282216 -2.467709 -1.403879 -0.500760 1.408442 -0.567834 0.378501 0.558765 -1.868562 -2.502628 0.866047 -0.294907 -0.749248 -1.183105 1.093172 1.226894 1.045495 -0.000844 -1.742546 -0.825018 0.539877 -1.553168 -0.534678 -0.249340 -0.025700 -0.866164 -0.112135 -2.180338 0.221365 1.185935 -1.218454 -0.488421 1.785898 -0.767655 1.891395 0.152037 0.321044 0.308451 1.327379 1.521872 0.143979 0.689673 -1.506723 -1.823398 0.325473 0.377590 0.668620 -1.270052 -0.320606 0.631566 0.677253 -0.099345 0.613922 -0.636202 2.674499 1.143224 -1.352067 -1.815544 -1.882723 -1.037893 -1.029747 0.601522 -0.995128 -0.647119 -0.157349 1.334444 0.421206 0.021042 2.258454 -1.108793 1.314063 0.281683 -0.090109 0.292543 0.070910 1.141338 -1.456419 -0.850341 1.215238 1.419754 0.530182 0.104057 -0.577696 0.612410 -1.437829 -1.530188 1.113554 0.162961 0.743630 2.011806 1.284357 3.285466 -1.183726 -0.141547 0.281165 0.080293 -0.624186 0.520162 -1.843849 1.229756 0.031070 0.476481 2.394879 0.117405 -1.275513 1.059874 0.218782 0.224531 -1.707488 1.195937 -1.016136 0.606277 -0.657096 -0.039207 -1.232728 -0.880031 -1.164717 -0.144940 2.586919 -0.307317 -2.771388 0.742278 -0.684961 1.789199 -3.126382 1.802241 -1.087063 1.320538 -0.631451 -0.824816 0.112367 -0.303627 -0.168591 0.683669 0.754187 -0.357407 0.895551 1.049438 0.582592 0.475141 0.679134 0.867305 0.149232 0.451534 -0.446032 0.571168 -0.138901 0.030843 -0.509596 -0.502449 0.599319 1.196015 -0.681540 0.430824 1.514523 -0.164012 1.033521 1.213712 0.353486 -0.969467 0.191047 -0.196808 2.197703 -1.369110 -1.065152 -0.731932 0.504945 0.085543 0.826453 -2.592337 -1.878443 -0.352548 -2.824191 -1.239110 0.412097 0.973832 0.737419 -0.106999 -1.995792 -1.044289 1.657849 0.363787 2.850687 0.948727 0.299772 1.873553 1.026074 -0.021314 -1.130674 0.033571 0.441263 -0.850877 -0.169644 -1.215768 0.750761 -1.807805 1.588629 1.875133 -1.161788 0.735249 -1.137552 1.747143 -2.220325 2.511638 1.182050 -2.341412 0.388216 1.054844 1.951419 -1.444893 -1.523890 -PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -0.532171 -1.982064 3.044485 2.356768 0.438693 0.645237 1.119268 -0.367330 0.460273 1.644896 -1.016415 1.881042 -1.670681 -0.337479 0.754749 0.626395 -1.625897 -1.872440 0.151480 -0.155083 -0.463188 -1.192531 -0.441710 2.021203 1.611740 -0.102293 -1.199461 -0.242726 -2.633886 -2.523172 -1.176710 -0.215090 1.293604 0.471204 1.416131 -2.009631 1.256799 1.852615 0.238223 -2.228559 0.677974 -0.754848 0.036121 -0.101058 0.067904 1.453829 1.871769 0.277128 0.793552 1.022967 0.061528 -1.150210 0.784478 1.379462 0.659795 1.459453 1.896782 -1.058341 0.609039 -0.435284 0.346352 -1.819116 0.908277 0.545146 -0.788914 -0.644273 0.158883 -0.404413 -0.811728 1.165970 0.696468 -0.939028 -1.440964 -1.228171 -1.653790 -0.365471 0.562079 1.488419 2.592016 -1.264217 2.447131 1.012381 1.536901 -0.189639 1.140603 -0.199583 1.514711 0.423382 -1.140510 -0.327888 -2.067484 -1.982758 -0.760893 1.579201 -0.558183 0.979784 0.696657 -2.578161 -2.483406 1.000833 -0.205018 -0.897129 -1.629906 0.871887 1.001758 1.139109 0.334321 -1.620949 -0.958146 0.556126 -1.135595 -0.485846 -0.300159 -0.105010 -0.904776 0.461914 -2.217592 0.347622 1.092323 -1.136905 -0.869117 1.711688 -0.715706 1.912007 0.133296 0.529041 0.189085 1.265717 1.339507 0.694044 0.965038 -1.365497 -2.736142 0.027287 0.454458 0.186624 -1.269758 0.152314 0.364450 0.678261 -0.269934 1.004827 -0.591943 3.010339 1.253904 -1.336624 -2.093556 -1.774330 -1.166831 -0.919303 0.612465 -0.874470 -0.479067 0.398646 1.194571 0.413703 -0.074483 2.295701 -0.975978 0.881926 0.362488 -0.365995 0.211503 -0.782347 0.989788 -1.489006 -0.794195 1.296243 1.530141 0.589452 0.227197 -0.321577 0.836281 -1.342026 -1.759350 1.135887 0.128371 0.718582 1.851103 1.391566 2.642210 -1.254255 -0.355606 0.364995 0.013269 -0.704550 0.354019 -1.826819 1.372572 -0.112116 0.756073 2.306685 0.135648 -1.107766 1.222508 0.006548 0.231115 -1.474748 1.062973 -1.158655 0.778961 -0.499549 -0.903148 -1.101375 -0.839452 -0.860076 -0.108821 2.571657 0.044210 -2.739525 0.993614 -0.892936 1.494206 -3.427029 2.096864 -0.954025 1.319806 -0.494175 -0.712042 -0.051924 0.050152 -0.236322 0.450103 0.701808 -0.688395 0.959611 1.212553 0.437320 0.360652 0.425913 0.845321 0.158965 0.737233 -0.324807 0.575016 -0.301803 0.040399 -0.966061 -0.323987 0.638891 1.064521 -0.741524 0.118355 1.084454 -0.281014 0.877837 1.652371 0.668570 -1.011770 0.398325 -0.326005 2.312900 -1.474856 -1.307617 -0.473956 0.477294 0.056194 0.686229 -2.514334 -1.710284 -0.957793 -2.824476 -1.322623 0.147199 1.038634 0.402262 -0.461125 -1.924984 -1.143520 1.126002 0.616081 1.622374 0.998604 0.093341 1.890440 0.938523 0.204170 -0.842557 -0.470344 0.346143 -0.699564 -0.603371 -0.993164 0.616635 -1.968347 1.374917 1.866091 -1.043529 0.954455 -0.355126 1.002002 -2.333436 2.288275 1.003554 -2.228408 0.418296 1.340704 1.239293 -1.827963 -1.512245 -PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = 0.188481 -0.976991 2.198630 1.541618 -0.436448 0.141955 0.436177 -0.425932 0.765291 -0.209421 -0.712770 0.823655 -1.066707 0.178313 -0.165071 0.632475 -1.980143 -1.122210 0.148154 -0.200980 -0.288465 -0.637041 0.422249 0.740158 1.022993 1.545613 -0.666139 -0.217154 -1.093761 -0.822211 0.549014 -0.504080 0.846220 1.467163 0.600978 -1.854690 0.983817 0.728126 -0.268554 -1.477065 0.607845 -0.681828 0.048931 -1.133346 -0.011111 0.682863 0.797547 1.360925 0.654613 0.476053 -0.740646 -0.415599 0.403653 1.048414 -0.185831 0.548622 0.971330 -0.437351 0.152390 -0.447538 0.386900 -0.560993 0.485935 0.635306 -0.548801 -0.913084 -0.253115 -1.101509 -0.798032 0.909296 0.453501 0.296617 -1.240782 -0.358605 -0.810465 0.011092 -1.003066 1.505396 1.692002 -1.106021 1.215658 0.353521 0.878213 -0.205489 0.290384 0.296058 0.702887 0.463677 -0.458759 -0.405919 -1.605722 -0.988540 0.001667 -0.479496 -0.197332 -0.904850 0.528373 -1.552879 -1.252594 0.283881 0.364565 -0.465210 -0.193517 0.504059 0.643004 0.917691 -0.163868 -0.789312 0.113294 0.013613 -0.499134 -0.135500 -0.012836 0.478336 -0.591325 -0.384534 -1.571043 0.310869 0.260061 -0.527797 0.453467 0.893135 -0.303603 0.461031 -0.020471 0.177259 -0.206007 1.429547 0.641100 0.230967 0.653004 -0.286696 -0.193040 0.771648 0.842576 1.009654 -0.838851 -0.193766 -0.164108 0.385867 -0.519161 -0.663653 -0.276025 0.904601 0.482298 -1.161788 -1.312396 -1.017768 -0.849692 -1.162300 0.271941 -0.772954 -0.102041 0.931982 0.901684 0.675416 0.689453 1.349411 -1.261841 0.531588 -0.015781 0.113013 0.513884 0.917119 0.752097 -0.709276 -0.418915 0.734132 0.187386 0.440931 -0.009892 -0.290958 0.500447 -1.176578 -0.657065 1.028568 0.598816 0.193464 0.927933 0.781359 0.128151 -0.641393 -0.296498 0.717611 -0.068100 -0.556849 0.590974 -1.187787 1.173753 -0.075413 0.497589 0.881411 0.026280 -0.591131 0.609250 0.016679 0.124993 -0.725764 0.004626 -0.567174 -0.091552 -0.679754 0.504622 -0.614436 -0.626875 -0.677476 -0.425487 1.603127 -0.668927 -1.074126 0.757070 -0.723230 1.230126 -1.594825 0.731458 -0.802085 0.798569 0.096572 -0.297723 0.023984 -0.966302 -0.648187 -0.275497 0.485901 0.003039 0.224643 0.853568 0.718597 -0.074764 0.304472 0.872164 -0.073385 0.954779 -0.115635 0.362375 -0.425093 -0.148140 0.150373 -0.204246 -0.073211 0.105648 0.004997 1.480195 0.608303 0.983338 1.471432 0.321392 0.970524 -0.830876 0.067580 -0.246700 1.181246 -0.702035 -0.635792 -0.090989 0.584144 -0.330093 0.643703 -1.560114 -2.139717 -1.024242 -1.501489 -0.604265 -0.809196 0.654436 -0.173937 -0.063414 -1.142897 -0.721886 0.426130 0.022465 1.228183 0.740676 -0.164551 1.076871 0.877413 -0.782293 -0.622567 0.506028 0.775429 -0.014349 0.165044 -1.471487 0.845170 -1.142531 0.303640 1.926373 -1.038971 0.269345 -1.008424 1.705770 -1.122956 1.744196 0.635867 -1.562126 0.481424 0.643071 0.811409 0.382106 -0.958080 -PE-benchmarks/rat-in-a-maze.cpp__solveMazeUtil(int (*) [4], int, int, int (*) [4]) = -2.133713 -4.213467 7.035811 4.831694 0.007429 1.748190 1.898222 -1.098504 0.955484 2.372287 -1.577675 4.054093 -3.385581 -0.921158 0.163626 0.896350 -4.113019 -3.716349 0.150682 -1.436333 -1.771761 -1.872552 -1.719256 4.629470 3.109001 0.467050 -2.517584 -0.332137 -5.755173 -4.716212 -1.870014 -0.440329 2.708874 0.235468 2.968463 -6.830617 2.970763 4.296305 -0.072595 -4.452154 1.526599 -2.061954 0.166976 -0.719752 -1.415874 1.934221 3.446203 0.471001 1.510847 1.343916 0.128860 -1.435302 1.939551 5.713545 1.098583 3.396544 3.947271 -2.207102 1.051492 -0.687406 0.628253 -3.612241 1.958738 0.449028 -1.772695 -1.946173 0.383975 -1.301266 -1.369910 2.009718 2.136899 -2.581275 -2.268967 -2.337649 -4.051249 -1.692422 0.528844 2.759969 5.114052 -3.229069 5.364960 2.063226 3.060125 0.542485 3.224290 0.085785 4.077089 0.909993 -2.060805 -0.459036 -3.753562 -1.873504 -0.803980 3.171845 -1.869740 -0.368871 2.223289 -5.405769 -5.666847 2.626843 0.043765 -2.293907 -3.039119 0.600367 1.856174 1.875589 -0.666809 -3.519538 -2.314118 1.941273 -2.684408 -1.030124 -0.346587 -0.410053 -0.855742 0.345430 -4.666113 1.696915 2.550247 -1.564525 -2.134674 4.399890 -0.753674 3.334925 0.174396 1.528564 -0.342608 2.926401 2.310943 0.858979 -0.308873 -2.215698 -5.127643 -0.131960 1.214409 0.201127 -2.897665 -0.965030 0.622734 1.773166 -0.279844 2.098477 -1.348755 6.510842 1.840316 -2.463233 -3.913080 -4.118578 -2.715178 -2.726409 0.506756 -1.822702 -2.624870 1.688930 2.758496 1.467789 0.125398 3.705010 -1.348083 2.872086 0.387775 -1.013731 0.980526 -1.758490 2.395015 -3.272479 -1.799298 2.441561 2.625297 2.653304 0.081698 -0.641628 1.473678 -2.582257 -3.383224 1.815520 0.823200 1.362885 4.439192 3.655482 7.417798 -3.791060 -0.749199 0.576170 -0.933210 -1.277754 0.704557 -3.444594 1.684093 0.722801 -0.338958 5.641411 0.238563 -2.621684 2.246791 0.154586 0.735490 -3.437341 2.469431 -2.209157 0.809886 -0.868146 -1.692831 -3.180003 -1.630294 -3.416275 -2.363812 5.915142 -3.943054 -5.564333 2.502865 -0.937712 3.274266 -7.141721 4.604579 -2.324160 3.506837 -1.153697 -1.798043 -0.366257 0.637666 -1.236541 1.966964 1.425935 -2.463599 1.744821 3.314002 1.395229 1.629451 0.433086 2.480663 -0.450341 1.822360 -1.369231 1.968831 -0.792273 -1.098942 -1.690709 -0.835357 0.582310 2.228625 -0.291572 0.276529 2.407213 0.090621 1.132995 3.746299 1.518320 -2.095650 0.268380 -0.859700 4.302247 -3.099591 -2.770048 -0.830037 1.607006 0.757762 1.159900 -6.100101 -3.911523 -3.388774 -5.177337 -1.745458 0.746020 1.509120 1.124287 -0.866672 -4.847909 -2.818908 4.206515 0.462014 3.830583 2.638417 0.779921 4.473605 2.398422 0.489059 -1.954181 -0.200103 0.953807 -0.789745 -0.653564 -3.095677 2.278732 -4.315279 3.249192 4.372783 -2.099422 2.466251 -0.323059 2.088634 -5.014974 5.271642 1.930402 -5.401928 0.815587 3.775937 2.793575 -3.518797 -3.225958 -PE-benchmarks/rat-in-a-maze.cpp__main = 0.236987 -0.343053 0.977535 0.695905 -0.282672 -0.036224 0.187093 -0.234453 0.332189 -0.264094 -0.338967 0.236270 -0.448752 0.232475 -0.332829 0.384483 -0.886114 -0.405913 -0.054842 -0.174519 -0.053940 -0.145520 0.406924 0.079105 0.513210 0.670656 -0.260556 -0.248242 -0.358438 -0.123049 0.422608 -0.254198 0.320334 0.548644 0.022198 -0.764026 0.417435 0.293578 -0.266540 -0.545881 0.397236 -0.288235 -0.022601 -0.572788 -0.080481 0.145269 0.169652 0.629199 0.281135 0.257979 -0.263475 0.009988 0.248406 0.660756 -0.242553 0.200520 0.413051 -0.036484 -0.037017 -0.161625 0.197071 -0.007531 0.094300 0.204650 -0.025443 -0.546353 -0.332901 -0.570715 -0.306343 0.327493 -0.046485 0.297602 -0.543351 -0.110633 -0.360693 0.029873 -0.836761 0.681519 0.712059 -0.621555 0.359537 0.063856 0.163997 -0.081193 -0.089219 0.251254 -0.005487 0.255493 0.029050 -0.079519 -0.407533 -0.214332 0.165267 -0.435634 -0.171850 -0.926946 0.385594 -0.622464 -0.447282 0.078725 0.317139 -0.229486 0.311481 0.137998 -0.001021 0.404837 -0.282712 -0.250873 0.219726 -0.122874 0.211436 -0.050928 0.018163 0.260670 -0.186093 -0.274923 -0.719315 0.209841 -0.061264 -0.207568 0.369525 0.279247 -0.037126 0.032476 -0.044834 0.108177 -0.225220 0.786634 0.145381 0.203820 0.134953 0.213710 0.112756 0.347240 0.504848 0.547682 -0.378187 0.040733 -0.198957 0.099322 -0.243245 -0.383557 0.000520 0.113149 0.174694 -0.502902 -0.493543 -0.331235 -0.427268 -0.651725 0.074376 -0.340045 -0.049741 0.454223 0.373844 0.372579 0.458510 0.707320 -0.472797 0.009915 -0.022170 -0.056841 0.313501 0.384681 0.325747 -0.211206 -0.241775 0.278676 -0.053695 0.176673 0.066854 0.039989 0.187466 -0.596182 0.045427 0.407049 0.370233 -0.200423 0.360492 0.334983 -0.374372 -0.049173 -0.070719 0.394483 -0.132441 -0.156354 0.259048 -0.551237 0.454437 -0.002742 0.160553 0.179513 0.061876 -0.104098 0.305563 -0.200015 0.050458 -0.225736 -0.086191 -0.211918 -0.178583 -0.431649 0.485459 -0.114825 -0.228204 -0.150118 -0.205257 0.609211 -0.475393 -0.049126 0.247490 0.009044 0.333291 -0.425776 0.482849 -0.355151 0.531225 0.175350 -0.089217 0.133684 -0.436002 -0.404722 -0.231408 0.213949 0.090586 -0.018287 0.357908 0.363454 -0.183720 0.080799 0.513373 -0.181328 0.574324 -0.062272 0.209680 -0.162931 -0.254158 0.221020 -0.052656 -0.215074 -0.221639 0.187317 0.889316 0.094186 0.599022 0.669841 0.016886 0.650002 -0.376256 0.155205 -0.118818 0.475343 -0.257517 -0.187799 0.074954 0.372794 -0.178605 0.281326 -0.609969 -1.005146 -0.698317 -0.416751 -0.072352 -0.514709 0.224020 -0.261932 -0.038044 -0.411039 -0.418986 0.089390 -0.198567 0.288156 0.374827 -0.029992 0.393173 0.388830 -0.411955 -0.109641 0.265643 0.505531 0.191041 0.135044 -0.634349 0.405875 -0.437035 -0.163475 0.880518 -0.412114 0.108514 -0.199569 0.734708 -0.346093 0.759497 0.195719 -0.569990 0.433005 0.455285 0.317950 0.449259 -0.341067 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -4.421969 -15.961027 23.236863 17.594376 0.963569 6.782592 8.234558 -2.697481 0.858473 10.939911 -6.999822 14.562337 -11.852950 -3.014456 2.964724 2.708896 -12.821022 -12.440431 1.127948 -3.028309 -5.009581 -7.024806 -7.785137 18.229273 10.840825 -0.289275 -7.635925 -2.544292 -19.844281 -13.443080 -9.086670 -0.945672 9.206757 3.178962 12.019840 -17.935520 8.863031 15.173245 1.400496 -14.770984 3.886146 -5.596986 -0.156345 0.382217 -3.720245 8.084368 13.396580 4.813395 4.199134 5.857589 2.016879 -7.635655 8.528392 16.929839 6.797987 12.773440 14.443036 -7.545404 6.378725 -3.338917 2.357671 -13.753846 6.189311 1.642783 -4.499252 -4.959987 0.558526 -2.454756 -3.202243 6.052730 9.831257 -7.357083 -9.327501 -8.537991 -11.968023 -5.484509 -0.169895 8.790569 19.281322 -9.742944 19.557715 10.044292 11.707769 0.103372 11.650618 -0.428999 13.527027 3.135916 -8.084229 2.311295 -14.789233 -9.075991 -2.947984 10.432548 -7.563791 -2.523799 5.434686 -18.112429 -20.019551 10.171282 -1.370984 -8.326929 -5.710109 3.678586 6.355876 5.131351 -2.388440 -12.544605 -7.475050 5.384815 -9.610890 -4.214886 -1.272824 -0.444982 -2.007588 2.413923 -15.538012 4.940065 9.971821 -6.742473 -4.990806 14.827210 -1.218984 14.733418 0.657517 3.412453 0.649397 8.782167 10.620403 2.734176 -0.509251 -9.375387 -17.040935 1.154772 3.065039 -1.924844 -9.023254 -3.635735 4.715910 7.302633 1.641608 11.394927 -1.718360 23.474089 6.229857 -7.723140 -13.529351 -15.336195 -9.974218 -6.136857 3.380438 -5.042544 -9.691603 0.453482 9.197033 2.906823 -1.019437 9.419806 -1.425949 8.479377 1.409946 -1.686768 1.448511 -6.997702 7.655810 -10.731205 -5.909975 9.304499 11.181042 8.642215 1.634529 -2.704119 5.350884 -7.386041 -10.732224 4.796716 1.860700 4.057263 16.990912 12.154234 26.408756 -7.446485 -2.306478 0.724264 -1.699864 -4.095444 2.806892 -12.489633 7.135310 1.084905 -1.127088 19.236725 0.535635 -7.092013 9.976808 0.409990 1.784856 -12.404748 9.220701 -7.305531 4.084049 -4.199035 -2.184158 -10.801114 -5.343141 -10.181990 -4.720661 20.146644 -10.246962 -17.019679 6.039962 -3.113685 9.697653 -21.909497 18.248885 -7.090325 10.742687 -3.829450 -8.878321 0.696861 2.189567 -2.607046 7.034365 5.190317 -7.663067 5.869553 7.382170 3.532796 4.246405 3.430072 7.326990 -0.978964 4.253294 -5.023467 5.679814 -1.259549 -1.286402 -7.182391 -2.610101 3.411516 8.930229 -2.439965 -1.096051 7.146722 -1.618939 1.761264 12.280756 2.345516 -7.076109 0.244903 -2.900524 15.106445 -12.350241 -9.242314 -4.897527 3.427773 2.697575 3.876828 -20.798101 -9.618908 -10.627350 -14.805301 -8.723133 4.502517 6.315227 6.118165 -3.236992 -15.749521 -10.131071 14.254509 1.793860 7.780611 9.906644 2.535307 15.852143 6.818996 5.182870 -6.261700 -2.350776 3.399133 -3.811226 -1.644966 -8.821534 6.218405 -15.090144 13.123925 13.703860 -7.033012 8.624513 -1.373402 10.143545 -18.016063 17.538438 7.247158 -19.361428 1.196069 14.241582 9.208175 -14.697892 -11.068134 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 0.818894 -1.168914 3.124247 1.969952 -1.740597 -0.144409 0.300779 -0.143929 0.129626 -2.360066 -1.244290 1.138454 -0.968343 0.314907 -0.658125 -0.001070 -3.523343 -0.990292 -0.094597 -0.246004 -0.179455 0.041874 0.204330 1.371723 1.334199 3.164396 -0.637436 -0.549522 -0.833147 1.043917 1.360554 -0.398102 1.099005 2.680568 0.873794 -3.974008 0.719840 0.753191 -0.495679 -1.919585 1.066144 -0.972875 -0.202989 -2.419982 -1.161975 0.209110 0.873524 2.717862 0.127859 0.146005 -2.698526 -0.111156 0.443886 2.536124 0.400039 0.370027 2.073221 -0.487447 0.079218 -1.080156 0.555438 -0.657413 0.090704 0.021007 -0.282836 -1.479101 -0.639557 -2.297766 -0.310099 0.682499 0.962776 0.897134 -1.217543 -0.690834 -1.901114 0.038859 -1.258475 2.812769 1.795537 -2.381793 1.111287 0.041412 0.753119 0.271851 0.047208 0.967150 0.194095 0.811745 0.390723 0.053369 -2.437110 -1.282192 0.517265 -2.147836 -0.641290 -3.692526 0.930632 -2.996282 -1.176208 0.298626 0.797751 -1.175475 1.386406 -0.144261 0.133294 1.302245 -0.695616 -0.136121 0.528691 -0.070612 -0.080435 0.095052 0.199744 2.169377 -0.235349 -1.384479 -2.239950 1.542765 0.500220 0.136782 1.979088 1.088811 -0.248223 0.380811 -0.237831 0.013379 -0.783549 2.727075 0.711672 -0.662945 0.297510 0.093463 1.819118 0.866662 1.110975 2.470743 -1.455658 -1.004998 0.073362 0.685123 -0.284988 -1.652528 0.236568 0.575072 -0.350679 -1.388593 -1.555199 -1.900138 -1.995540 -1.810488 -0.413740 -0.665245 -0.520073 2.757918 0.979771 1.675647 0.789987 1.228075 -1.050995 0.251188 -0.050157 -0.122227 0.322771 1.575835 0.749789 -0.729043 -0.364802 0.848057 -1.037778 1.460964 0.023892 0.087871 0.732725 -1.455846 -0.673163 1.307434 1.653828 0.140847 1.218850 1.571570 -1.687523 -0.417317 -0.759065 0.597284 -0.889619 -0.920701 1.100970 -1.060307 1.149403 0.079326 0.024307 1.040546 0.104092 -0.268286 0.872859 0.023577 -0.180415 -0.390348 -0.543593 -0.388410 -0.526707 -1.228929 1.438473 -0.887497 -0.518124 -1.541329 -1.747425 2.107125 -2.693724 -0.707209 0.561657 -0.080782 2.020195 -1.766608 0.732179 -0.877518 2.236283 0.937631 -0.663358 0.545698 -2.561157 -1.486595 -0.176108 0.480483 -0.029019 -0.821187 0.577775 1.142321 -0.443581 0.203784 1.322143 -0.626625 1.743362 -0.468041 0.083911 -0.829091 -0.775132 0.460231 0.107842 -0.587825 -0.075732 1.062133 2.573632 -0.154384 2.894989 2.102779 0.630311 1.295600 -1.099806 -0.606107 -0.659340 1.417203 -0.910697 -0.962565 -0.188621 1.778931 0.063335 0.358027 -1.999804 -3.398449 -3.449716 -1.429277 -0.383030 -1.905702 0.522319 -0.489483 -0.343344 -1.457480 -1.117810 -0.167888 -0.372504 1.341272 1.483833 -0.345594 1.601766 0.899129 -1.336218 -0.542765 2.040926 2.065984 0.522957 1.023939 -2.983703 1.311066 -1.346169 -0.196171 3.472218 -1.339389 0.867827 -0.808974 3.042385 -1.205623 2.406241 0.557504 -3.356694 0.050817 1.671557 -0.194690 1.650201 -1.192669 -PE-benchmarks/little-and-big-endian-mystery.cpp__show_mem_rep(char*, int) = -0.623129 -1.495172 2.076901 1.541302 0.097131 0.561022 0.935147 -0.216818 0.378735 0.720991 -0.699162 1.117543 -1.496942 -0.138091 -0.024468 0.195359 -1.217638 -1.338892 0.105446 -0.230347 -0.412978 -0.837753 -0.357987 1.432541 0.997572 0.310520 -0.683748 -0.316289 -2.127932 -0.987268 -0.378323 -0.190762 0.920926 0.518040 0.726594 -1.843664 0.742266 1.471308 -0.005041 -1.497779 0.571018 -0.890998 0.063426 -0.224144 -0.078668 0.633025 1.136291 0.685567 0.484427 0.367526 0.109621 -0.733480 0.392026 1.615949 0.153565 1.154200 1.376016 -0.474674 0.236044 -0.282686 0.201403 -1.114329 0.689941 0.435074 -0.829389 -0.473083 0.111777 -0.549766 -0.677484 0.638518 0.710256 -0.370793 -0.917920 -0.705605 -1.002004 -0.420947 0.102341 0.806762 1.957724 -0.968958 1.896798 0.723116 1.035409 -0.087077 0.936043 0.033165 1.080585 0.233395 -0.775433 -0.171282 -1.671834 -0.558094 -0.355350 1.049503 -0.528937 -0.157229 0.655908 -1.432568 -1.874456 0.598913 -0.187800 -0.685228 -0.619294 0.714145 0.513343 0.723893 -0.295813 -1.308162 -0.661190 0.464779 -0.791659 -0.362202 -0.076321 -0.002868 -0.489023 -0.346223 -1.551283 0.297698 0.727344 -0.875001 -0.451156 1.366550 -0.456138 1.333174 0.171037 0.329055 0.049224 1.063876 0.912845 0.085081 0.294441 -0.879078 -1.461452 -0.093850 0.395578 0.768353 -1.033269 -0.179630 0.356365 0.456142 -0.014641 0.378510 -0.278650 1.853540 0.652987 -1.054157 -1.145774 -1.288201 -0.670212 -0.902301 0.268232 -0.662279 -0.518287 0.036617 0.950106 0.412735 0.060558 1.786249 -0.547379 0.880632 0.264710 -0.353475 0.269909 -0.143574 0.842305 -1.030304 -0.774931 0.785423 0.866739 0.610183 0.018619 -0.121844 0.328283 -1.058919 -0.993352 0.573366 0.198701 0.269501 1.558593 1.073810 2.016646 -1.072890 0.024661 0.200853 -0.163906 -0.322443 0.318421 -1.363098 0.813841 0.144209 -0.078571 1.633324 0.118318 -0.879154 0.865935 -0.066309 0.227803 -1.297084 0.829554 -0.780089 0.213597 -0.665563 -0.065160 -0.766046 -0.719651 -0.846192 -0.311592 1.850547 -0.627305 -1.680911 0.468983 0.013928 1.073146 -2.265806 1.531960 -0.785022 1.145208 -0.401325 -0.605192 0.127158 0.168560 -0.191057 0.414842 0.509513 -0.542815 0.712656 0.914405 0.462476 0.385231 0.413607 0.828458 0.023348 0.371764 -0.464011 0.488088 -0.054886 -0.400363 -0.241785 -0.373382 0.356135 0.781888 -0.214141 0.582392 1.090345 0.007145 0.681497 1.046249 0.471335 -0.625063 0.070383 -0.212490 1.629756 -0.947070 -0.753802 -0.491163 0.464931 0.139113 0.568616 -1.928176 -1.556719 -0.463768 -1.913603 -0.538294 0.092765 0.598137 0.508025 -0.069976 -1.681402 -0.876353 0.954510 -0.003808 1.777091 0.756536 0.314315 1.382198 0.778681 -0.038893 -0.624223 0.214057 0.615546 -0.458533 -0.122400 -0.898459 0.541371 -1.401180 1.085196 1.346777 -0.747411 0.646412 -0.426112 1.241325 -1.609399 1.922787 0.768345 -1.726593 0.524044 1.077496 1.276502 -0.839380 -1.015937 -PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.134523 -0.422937 0.798580 0.606300 -0.080653 0.037481 0.368405 -0.164814 0.444877 -0.117724 -0.277807 0.155998 -0.566054 0.211227 -0.320423 0.315704 -0.667078 -0.524513 0.028019 -0.100024 -0.032000 -0.304106 0.397227 0.047481 0.418112 0.389543 -0.224899 -0.352166 -0.592253 0.086425 0.524700 -0.261485 0.307434 0.456716 -0.062288 -0.716548 0.308276 0.255028 -0.228087 -0.570183 0.312543 -0.374665 0.058801 -0.516957 0.119426 0.102051 0.204531 0.653659 0.285981 0.198955 -0.142988 -0.074974 0.049145 0.730367 -0.388825 0.250022 0.366175 0.061291 -0.013227 -0.041842 0.192559 -0.012828 0.187419 0.349662 -0.161159 -0.375266 -0.286605 -0.558760 -0.424236 0.345436 0.011148 0.406819 -0.568058 0.014174 -0.294998 -0.000263 -0.876319 0.589375 0.793711 -0.588204 0.479039 0.130081 0.354463 -0.120520 -0.008008 0.206652 0.043636 0.193329 -0.148865 -0.156646 -0.717575 -0.106430 0.004870 -0.404956 -0.076440 -0.765827 0.320505 -0.345600 -0.486982 0.072226 0.154062 -0.074060 0.183944 0.281682 0.084497 0.425498 -0.326796 -0.408246 0.026987 -0.083630 0.111293 -0.075395 0.137146 0.094183 -0.231276 -0.502184 -0.637978 -0.012845 -0.035036 -0.383092 0.189003 0.340840 -0.261702 0.140977 0.004738 0.028622 -0.156825 0.670912 0.223985 0.149396 0.342319 -0.028639 -0.298709 0.284187 0.454999 0.870124 -0.282045 0.198474 -0.155740 0.083868 -0.214442 -0.387330 0.099996 0.078762 0.115106 -0.561429 -0.437008 -0.320862 -0.072582 -0.531061 0.154894 -0.374872 0.118566 0.239972 0.404897 0.418616 0.420348 0.855545 -0.524145 0.194628 -0.033020 -0.005477 0.257791 0.421849 0.321997 -0.202886 -0.322307 0.188104 0.072651 0.051358 0.071351 -0.054335 0.109192 -0.618173 -0.037839 0.199353 0.303854 -0.268031 0.391510 0.241836 -0.423158 -0.372695 0.037618 0.362244 -0.036734 -0.080471 0.173483 -0.630150 0.544991 -0.024187 0.059180 0.095986 0.034957 -0.253102 0.306456 -0.212982 0.089061 -0.243306 -0.103777 -0.269162 -0.318410 -0.489574 0.520126 -0.100481 -0.308744 -0.071910 -0.030368 0.576940 -0.158491 -0.115527 0.181588 0.013427 0.246706 -0.507479 0.564324 -0.342222 0.377054 0.069021 -0.063130 0.047564 -0.067506 -0.244630 -0.287264 0.245603 -0.011724 0.161797 0.453259 0.314431 -0.073500 0.209040 0.492859 -0.050343 0.308769 -0.068269 0.194695 -0.134980 -0.307711 0.275050 -0.141401 0.055530 -0.119260 0.124237 0.953876 0.309718 0.438325 0.708575 0.088385 0.526694 -0.335227 0.079405 -0.087430 0.560033 -0.223424 -0.062611 -0.070605 0.170060 -0.238243 0.318709 -0.565396 -1.004734 -0.313652 -0.478438 -0.018897 -0.479055 0.136248 -0.161693 0.074028 -0.590541 -0.324461 -0.227490 -0.258793 0.275552 0.309532 0.022723 0.391581 0.429228 -0.483134 -0.151301 0.336907 0.433263 0.004750 0.045406 -0.505126 0.295051 -0.499332 -0.008554 0.708589 -0.311250 0.009702 -0.216780 0.783403 -0.313993 0.832794 0.301001 -0.464999 0.441101 0.394971 0.587396 0.426733 -0.325460 -PE-benchmarks/partition-problem.cpp__findPartiion(int*, int) = -4.050787 -12.469152 16.103034 12.288007 0.573000 6.487490 5.823418 -0.051135 -0.362870 8.343854 -4.059019 11.716417 -8.111881 -3.080932 2.085107 0.614106 -7.957991 -8.294819 1.498586 -1.260135 -3.404403 -5.322057 -7.591614 15.600072 6.958336 2.367190 -5.173444 -2.005190 -15.501011 -9.245413 -7.992187 0.310820 6.653397 2.011688 10.151834 -11.722025 5.179462 12.160233 2.358481 -12.056199 2.250176 -2.962936 1.311348 2.828190 -2.993584 6.568827 9.741629 2.829622 2.162753 3.515356 0.381329 -5.306750 7.982703 11.483044 7.234099 9.384833 10.206791 -5.172439 5.986461 -3.780674 1.406130 -10.487083 3.543018 -0.027413 -3.017770 -2.459859 -0.375908 -0.261470 -1.561733 3.464670 7.657803 -5.811157 -6.527265 -6.062548 -8.965188 -4.173073 -0.092871 6.191886 13.066271 -6.134294 14.361876 7.121595 8.749145 0.258198 9.477641 -0.607132 9.082859 2.135471 -5.535723 2.943141 -10.481042 -4.626788 -2.654131 7.044180 -6.853153 -2.528466 3.263560 -13.149417 -14.715348 8.169910 -2.029404 -6.129345 -2.519588 2.223876 4.878555 3.963703 -2.170780 -8.953461 -5.600794 5.291202 -7.007372 -3.158201 -0.457353 0.075792 -0.364880 2.161420 -9.091680 4.156320 7.831507 -4.223294 -3.171463 11.239783 0.939339 12.105778 0.672450 2.364825 1.036886 5.406221 9.703232 0.749936 -2.541821 -7.864502 -9.898884 1.681357 0.122741 -3.236709 -7.763501 -4.466383 3.919656 5.495672 3.763552 8.770128 -1.303510 15.849872 4.933540 -4.937296 -8.315969 -11.436186 -7.805838 -3.898239 1.077848 -2.254998 -7.339602 0.253069 5.863838 1.192404 -1.966886 3.848270 -0.018723 5.025989 1.925135 -1.192977 -0.150722 -2.832228 4.078200 -7.475400 -4.352450 6.049018 7.940812 7.577715 0.246137 -1.533731 2.994758 -2.257537 -6.119393 3.985025 1.882293 4.230033 13.396622 9.096256 19.159276 -3.780288 -3.886190 -1.085278 -2.523066 -2.879458 1.048821 -8.582209 4.885263 1.027253 -1.477268 14.388166 -0.979106 -3.005584 9.177525 1.157146 1.812873 -9.670550 8.042722 -5.969670 2.347135 -3.155531 -2.658385 -8.582175 -3.001200 -9.457515 -4.425603 14.638698 -8.453348 -11.271572 2.911229 -2.451400 5.971665 -14.185710 11.046416 -4.320170 6.547316 -1.666148 -6.440806 0.371596 1.067219 -0.650828 4.341722 3.558466 -7.111217 4.218402 4.018012 1.811414 1.580935 2.832346 4.279967 -0.381450 2.002700 -4.577696 3.831656 -1.009128 0.048201 -5.022338 -1.618173 2.935829 7.471426 -2.710907 -2.228261 4.143101 -1.730536 -1.085132 8.649306 -0.212818 -4.591215 -1.006959 -2.806962 10.743242 -9.388637 -6.838615 -5.229748 3.006888 3.518184 1.740722 -15.212728 -5.326937 -7.559782 -10.395060 -6.635775 3.079959 3.898112 6.004768 -2.640365 -11.444125 -8.272333 11.072634 1.982606 4.911521 6.596191 1.074460 12.422628 4.210554 4.897439 -3.729622 -1.781482 1.238860 -2.924636 -0.853439 -5.415213 3.686598 -10.268057 9.879467 9.511360 -4.810209 7.293590 -1.381263 5.788837 -13.697557 12.784544 5.573761 -14.392937 -0.905413 8.883880 6.881600 -11.893770 -8.232153 -PE-benchmarks/partition-problem.cpp__main = 0.095647 -1.058425 1.770782 1.259401 -0.376580 0.254324 0.462407 -0.188674 0.473516 -0.409410 -0.740383 0.806307 -1.066893 -0.003237 -0.325808 0.149183 -1.585093 -1.060566 0.164371 0.058176 -0.104845 -0.613719 0.107154 1.050515 0.779025 1.533432 -0.488259 -0.130387 -1.383854 -0.376241 0.375688 -0.257649 0.724124 1.507327 0.634131 -1.197913 0.590252 0.885653 -0.086531 -1.464382 0.500465 -0.740816 -0.065094 -1.014416 0.040586 0.604113 0.733510 1.279850 0.294647 0.211527 -0.920441 -0.457855 0.218745 0.658928 0.104036 0.588349 1.115119 -0.205739 0.338274 -0.474292 0.314568 -0.572214 0.389789 0.523192 -0.703075 -0.537841 -0.196950 -0.946206 -0.567778 0.706059 0.461152 0.284267 -1.028859 -0.374165 -0.893989 0.103202 -0.634802 1.289605 1.428623 -0.992288 1.214811 0.355338 0.889554 -0.247473 0.394736 0.220668 0.543934 0.397930 -0.390086 -0.378249 -1.899385 -0.825756 -0.158164 -0.503083 -0.328696 -0.584411 0.529755 -1.660841 -1.195642 0.177998 0.085731 -0.563618 0.097295 0.746910 0.463219 0.857342 -0.067911 -0.670975 0.104904 0.260709 -0.517309 -0.141350 0.054635 0.769675 -0.447484 -0.543271 -1.308928 0.355244 0.464040 -0.513661 0.580287 0.872401 -0.321404 0.670849 0.003331 -0.065963 -0.027461 1.239741 0.720906 -0.155176 0.617581 -0.487149 -0.013796 0.715704 0.599610 1.047265 -0.974625 -0.065396 0.238827 0.379379 -0.122029 -0.704052 -0.396746 0.673806 0.041341 -1.125943 -1.050491 -1.134619 -0.844042 -0.860173 0.055001 -0.575207 -0.128036 0.852611 0.778592 0.713850 0.341558 1.316803 -1.037676 0.373179 0.207361 0.049627 0.155034 0.880588 0.547051 -0.640813 -0.541690 0.731580 0.087520 0.446504 -0.064150 -0.136149 0.333866 -0.942345 -0.705192 0.965456 0.521525 0.317921 1.080418 0.798635 -0.494989 -0.606726 -0.272089 0.352162 -0.139749 -0.485620 0.428758 -1.089984 1.090018 -0.072927 0.502168 0.862564 -0.011990 -0.400719 0.640519 0.053623 0.114170 -0.770295 0.107489 -0.582613 -0.154701 -0.715939 0.483177 -0.426237 -0.635276 -0.751283 -0.494892 1.438730 -0.515479 -1.029517 0.425000 -0.390649 1.177889 -1.427370 0.163223 -0.620160 0.865405 0.372758 -0.227752 0.103859 -1.006598 -0.416493 -0.421732 0.442034 -0.162048 0.260185 0.547767 0.534338 -0.131290 0.447694 0.624272 -0.078307 0.592144 -0.293169 0.082031 -0.289005 -0.268233 0.251193 -0.238155 0.111525 0.274371 -0.076209 1.462098 0.650063 0.971676 1.297044 0.327095 0.627271 -0.655040 -0.223807 -0.214037 1.071758 -0.655138 -0.579003 -0.372732 0.455898 -0.123778 0.474131 -1.386865 -2.014216 -0.832702 -1.542178 -0.438232 -1.126095 0.601670 0.037398 -0.061061 -1.159246 -0.740368 0.154906 -0.000785 1.384313 0.647998 -0.092588 1.023608 0.673356 -0.715166 -0.410586 0.767916 0.908045 -0.201627 0.190545 -1.255539 0.577193 -0.931078 0.420662 1.720785 -0.856908 0.422294 -0.997414 1.517915 -1.048556 1.605057 0.663532 -1.709968 0.201532 0.461537 0.569717 0.317371 -0.899975 -PE-benchmarks/longest-palindromic-subsequence.cpp__max(int, int) = -0.412424 -0.733312 1.172376 0.776973 0.208506 0.143927 0.512441 0.134319 0.210559 0.616499 -0.383314 0.770448 -0.727375 -0.019082 0.096625 0.294164 -0.564760 -0.811733 0.131326 0.066101 -0.291561 -0.454387 -0.070927 0.582450 0.701587 0.251006 -0.596022 -0.222541 -1.041621 -1.090796 -0.481009 -0.107869 0.507910 -0.028404 0.454097 -0.942191 0.350480 0.686188 0.078828 -0.913779 0.396112 -0.245405 0.160508 -0.026042 0.149159 0.608505 0.923192 0.232428 0.350975 0.393871 0.031744 -0.501966 0.154906 0.621812 0.176981 0.481055 0.699019 -0.355246 0.059723 -0.271251 0.108353 -0.840287 0.259306 0.241627 -0.438744 -0.155154 0.113823 -0.192873 -0.381914 0.445254 0.309702 -0.243114 -0.597814 -0.490496 -0.513537 -0.084902 0.346651 0.463825 1.055413 -0.396703 0.918618 0.300885 0.653582 -0.080269 0.226073 -0.109560 0.344258 0.111173 -0.432075 -0.260215 -0.658018 -0.529738 -0.445475 0.900005 -0.099517 0.291011 0.355809 -0.693582 -0.896855 0.241376 -0.123783 -0.244840 -0.658220 0.503140 0.424595 0.638013 0.104179 -0.621657 -0.485236 0.034055 -0.400094 -0.082157 0.068595 -0.161509 -0.473427 0.061912 -0.820941 0.077321 0.332662 -0.524483 -0.357562 0.539581 -0.365623 0.867402 0.138562 0.333010 0.138240 0.566741 0.780959 0.159053 0.270960 -0.452273 -1.018496 -0.160400 0.190616 0.452856 -0.584179 -0.012087 -0.019841 0.131349 -0.123823 0.058761 -0.323580 1.074432 0.849589 -0.633412 -0.877728 -0.641988 -0.300736 -0.353829 0.165012 -0.321515 0.009299 0.029589 0.351295 0.031243 -0.033618 1.298341 -0.514203 0.389586 0.196746 -0.299990 0.079644 -0.083604 0.405540 -0.545163 -0.302323 0.397046 0.602608 0.257245 -0.003908 -0.117690 0.295153 -0.561927 -0.580963 0.536304 0.159620 0.286941 0.567742 0.434162 0.979080 -0.524582 -0.273994 0.148590 0.008260 -0.340258 0.249994 -0.732476 0.580051 -0.054981 0.231766 0.768457 0.114483 -0.504811 0.724408 -0.038971 0.105370 -0.558785 0.438007 -0.448079 0.306429 -0.210119 -0.293461 -0.404864 -0.149592 -0.314530 -0.069773 0.956058 0.109883 -1.159037 0.155683 -0.208359 0.651461 -1.359350 0.696723 -0.294945 0.427503 -0.249285 -0.060098 0.016432 0.024053 0.108936 0.104815 0.182852 -0.077203 0.302424 0.573274 0.148429 0.042696 0.226319 0.391032 0.173494 0.286379 0.086711 0.047288 -0.112431 -0.019251 -0.173544 -0.001625 0.175222 0.500148 -0.312348 0.164947 0.491117 -0.143640 0.496915 0.544567 0.319341 -0.344695 0.068631 -0.105457 1.126214 -0.527652 -0.481206 -0.256343 0.406538 -0.043145 0.300928 -0.922291 -0.835728 -0.047222 -1.484550 -0.434920 0.090775 0.341967 0.105042 -0.198989 -0.621061 -0.393405 0.531514 0.300283 1.245576 0.266423 -0.059689 0.705124 0.333858 -0.203559 -0.371463 -0.052440 0.159645 -0.197619 -0.177496 -0.367104 0.104827 -0.824929 0.411261 0.719449 -0.537992 0.300136 -0.257901 0.561428 -0.933663 1.052552 0.393980 -0.845604 0.275189 0.309466 0.897806 -0.615964 -0.549620 -PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -4.119585 -11.192027 14.548189 11.034665 -0.087945 5.678098 4.929225 -1.414658 -1.918647 6.672907 -3.865518 10.535748 -7.488483 -2.953842 0.035515 -0.260067 -7.221518 -7.041352 -0.029864 -2.153170 -3.208841 -3.940030 -7.465195 14.945839 6.447130 0.021985 -4.699963 -1.337369 -14.289415 -8.116565 -8.197560 0.982075 5.889887 0.889260 8.859564 -10.624574 4.609941 12.162370 1.517181 -9.290164 2.464560 -3.264934 -0.289382 1.871637 -5.334138 4.689615 8.043290 0.724083 1.309882 2.750846 1.994311 -3.997387 7.621780 11.317227 6.933946 9.363966 9.514627 -4.503540 5.725588 -3.072925 0.929179 -9.018008 3.438718 -1.266760 -2.258154 -2.475606 -0.298798 0.238394 -0.393610 2.686531 6.196583 -6.205154 -5.137237 -6.220982 -9.937320 -4.419919 1.192767 4.365697 11.189278 -6.009073 12.840020 6.936665 6.287537 0.530674 9.067209 -0.341858 8.563497 1.916354 -3.953119 3.906790 -7.850734 -3.256205 -1.636419 7.538480 -7.439337 -3.758680 4.344956 -14.368226 -13.824802 7.652897 -1.434872 -7.284775 -1.535746 1.073970 2.498316 2.334560 -2.884738 -8.109551 -5.011499 5.557521 -5.109562 -3.020091 -0.427571 0.690080 1.060729 2.070709 -8.861424 4.960227 7.717902 -3.334244 -2.783476 10.694072 1.694010 10.676405 0.478973 2.220047 0.381907 5.395528 6.902803 0.733234 -5.002705 -5.427485 -9.158603 -0.416740 0.669370 -4.712329 -7.008142 -4.099839 4.250291 5.381388 3.631632 9.619255 -1.177641 15.057224 3.186348 -3.586697 -7.381970 -10.770355 -8.742408 -4.032651 0.314895 -1.448749 -8.849223 0.740966 5.472386 1.258241 -2.077807 3.265022 2.771740 3.764428 1.741260 -2.692288 0.071968 -6.451237 4.254283 -6.752401 -4.730948 6.721657 6.915348 8.557744 0.938003 -0.153829 2.574690 -2.030427 -5.950474 2.423725 1.828414 3.529120 13.006949 9.366086 17.547460 -2.757659 -1.971443 -1.390717 -2.500142 -1.794398 0.617756 -7.408386 2.979416 1.546502 -3.277541 13.854489 -0.291595 -2.528106 8.073242 0.103300 1.792817 -9.580021 7.412087 -4.964847 2.996132 -3.379460 -2.475397 -7.102540 -2.843107 -8.651091 -5.773888 13.355950 -10.879861 -9.496020 3.074944 0.660147 5.604947 -12.824276 10.459564 -3.717333 8.767834 -1.219976 -6.434805 1.219979 1.580220 -1.294427 4.960483 3.084305 -7.168361 3.178124 3.458240 1.582672 2.214756 1.796922 4.473727 -1.413913 2.496212 -5.115431 3.848809 -0.022201 -1.457671 -4.586089 -1.598823 1.606284 6.400023 -0.969021 -2.316489 3.821086 -1.179917 -1.917290 8.815192 0.436436 -3.804726 -1.204615 -2.145407 8.568759 -8.814531 -6.452098 -3.966277 3.342753 3.570022 1.029296 -13.969519 -4.672173 -9.715950 -8.031912 -4.620835 2.858887 3.511762 5.470931 -3.071507 -10.098409 -8.174762 12.324302 0.470262 3.767553 6.936323 2.187751 11.248081 3.948073 5.418734 -2.309296 -1.349679 2.474006 -1.901919 -0.371504 -5.296236 3.876495 -9.400409 9.561082 8.377126 -4.192136 7.858229 1.205035 4.936432 -12.500464 11.102237 4.222891 -13.758923 -0.100173 10.142850 4.006113 -11.194039 -7.005954 -PE-benchmarks/longest-palindromic-subsequence.cpp__main = 0.369183 -0.771326 1.625278 1.144173 -0.679652 0.120544 0.268308 -0.201140 0.340317 -0.767051 -0.645070 0.580571 -0.792229 0.208022 -0.457840 0.062960 -1.609162 -0.576686 -0.091169 -0.161272 -0.091174 -0.280729 0.239097 0.756292 0.743831 1.578372 -0.350258 -0.444958 -0.820750 0.533980 0.729840 -0.211886 0.608529 1.368117 0.344165 -1.634218 0.323067 0.580264 -0.263799 -1.135469 0.603561 -0.606482 -0.000295 -0.950137 -0.279061 0.084012 0.368698 1.314665 0.224243 0.076349 -1.015585 -0.115060 0.448379 1.381752 -0.008724 0.410274 1.008678 -0.145845 0.126301 -0.412903 0.271380 -0.225029 0.194962 0.200753 -0.217602 -0.760740 -0.378710 -1.002161 -0.400400 0.507986 0.218287 0.478435 -0.818270 -0.424405 -0.867633 0.025549 -1.074678 1.478835 1.167738 -1.177142 0.735277 0.160621 0.383048 -0.039508 0.136072 0.398784 0.157833 0.383782 0.044144 -0.055480 -1.368845 -0.429063 0.186585 -1.034181 -0.415072 -1.701760 0.564932 -1.579806 -0.889704 0.175972 0.353401 -0.545212 0.759063 0.162261 0.055891 0.669280 -0.408349 -0.397628 0.215112 0.097839 0.065628 -0.083753 0.026938 0.783664 -0.173210 -0.677959 -1.109816 0.583904 0.166991 -0.220909 0.768440 0.725094 -0.086385 0.354807 -0.044004 0.109473 -0.257644 1.299744 0.411865 -0.130239 0.339925 0.069187 0.705880 0.643057 0.552781 1.160783 -0.839204 -0.168998 -0.009747 0.267833 -0.120685 -0.700361 0.052339 0.294672 -0.105908 -0.852899 -0.731101 -0.895139 -0.867785 -1.089614 -0.147190 -0.365792 -0.233173 0.937256 0.591900 0.931313 0.451518 0.765439 -0.655269 -0.016111 0.148025 -0.069058 0.263864 0.895138 0.449568 -0.476106 -0.456846 0.356113 -0.240427 0.457749 0.002719 0.136391 0.162079 -0.788402 -0.095942 0.642309 0.809467 0.000212 0.901036 0.834682 -0.593069 -0.372953 -0.194433 0.351786 -0.407972 -0.340258 0.347594 -0.878242 0.803195 0.053809 0.168957 0.589280 -0.002313 -0.057355 0.571229 -0.125796 0.060062 -0.399176 -0.091523 -0.438023 -0.512214 -0.798187 0.746272 -0.340588 -0.419754 -0.686669 -0.587515 1.189745 -1.192101 -0.179551 0.427626 0.048060 0.758280 -0.863922 0.668021 -0.525075 1.068796 0.388957 -0.388742 0.178299 -0.968033 -0.663753 -0.257773 0.340613 -0.141696 -0.074081 0.440273 0.551993 -0.164846 0.226914 0.729458 -0.275660 0.778176 -0.366912 0.241684 -0.249103 -0.431786 0.285698 -0.098977 -0.084909 -0.074636 0.341098 1.470523 0.253917 1.225747 1.002532 0.334905 0.723075 -0.566570 -0.032643 -0.346360 0.784646 -0.540885 -0.435425 -0.133463 0.680277 -0.039499 0.364276 -1.190316 -1.791089 -1.384845 -0.666504 -0.163843 -1.141982 0.264144 -0.126693 -0.129122 -0.980266 -0.777147 -0.312179 -0.292130 0.495613 0.647354 -0.026003 0.883394 0.661445 -0.609329 -0.125112 0.848324 0.934893 0.101987 0.308003 -1.314751 0.651453 -0.634031 0.050521 1.665226 -0.621150 0.463376 -0.300447 1.271351 -0.762363 1.399017 0.440273 -1.505746 0.309863 0.781476 0.337695 0.662672 -0.698512 -PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -3.830227 -4.798933 7.206882 4.612355 0.428039 2.350124 2.153675 -0.798526 0.478789 2.973787 -1.593563 4.935927 -3.669566 -1.216050 -0.601905 0.054636 -3.437556 -3.980956 -0.194471 -1.698366 -2.029752 -2.109344 -2.909803 5.712184 3.026516 -1.139610 -2.993267 0.092690 -7.220536 -5.944302 -3.563810 0.041452 2.708564 -3.485218 3.029038 -8.743555 2.970064 5.802945 0.240859 -5.148391 1.951509 -2.454273 0.277105 0.897948 -2.721540 1.695072 3.774828 -0.833611 1.215929 1.142370 0.700480 -0.895000 1.807652 7.924036 1.774571 4.243679 4.993792 -2.084713 0.204990 -0.685726 0.320373 -4.367061 1.852643 -0.252133 -1.997243 -1.544573 1.058641 -0.167341 -1.179258 1.599269 1.752792 -4.108571 -1.245384 -2.951206 -6.045628 -2.335566 4.981208 1.924456 5.600099 -3.246967 5.958766 1.615704 2.925698 1.568151 3.968500 -0.225434 4.477940 0.736175 -2.108456 -0.316199 -2.903389 -0.586832 -1.247860 5.544947 -2.527426 -1.003905 2.651429 -7.242882 -6.492505 2.994614 -0.582541 -2.966818 -3.854026 -0.293293 1.965621 1.991767 -1.157680 -4.104130 -3.433182 2.969767 -2.607322 -1.222638 0.254671 -1.065665 -0.386866 0.516236 -4.817075 2.155279 3.347712 -1.614971 -3.410905 5.264600 -0.981741 4.609736 0.435323 2.372769 -0.272739 2.763223 2.318144 0.641583 -2.210638 -2.270103 -5.758031 -2.374583 -0.212059 -0.534554 -3.889639 -1.441952 1.115554 1.825033 0.265546 3.181920 -2.436792 7.222578 2.644116 -1.972355 -3.529100 -4.425174 -3.257154 -3.341614 -0.201189 -1.473339 -4.265504 1.409654 2.826237 1.065755 -0.762280 4.760698 -0.044687 2.786738 1.091836 -2.525238 0.871072 -4.299435 2.410737 -3.781424 -2.618649 2.640513 3.017615 3.727237 -0.147558 -0.036709 1.199559 -2.282802 -3.596074 1.624894 1.183893 2.146570 5.222031 4.414967 9.786052 -4.428937 -0.739511 -0.239484 -1.851106 -0.786046 -0.133709 -3.618417 0.466822 1.623410 -0.619108 7.348941 0.387177 -2.929247 2.953013 0.310906 1.155568 -4.418918 3.625372 -2.769701 1.596497 -0.799335 -3.473260 -3.557335 -1.112360 -4.569058 -3.699036 6.310924 -5.374299 -7.134936 2.536219 0.559052 3.987951 -8.956591 5.012444 -2.306966 5.710615 -1.203617 -1.273432 0.183587 1.330169 -1.025974 3.644295 1.409333 -3.374315 2.381115 3.335393 1.169343 2.226557 0.003594 2.636582 -0.622782 1.470241 -2.189335 2.184762 -0.657193 -2.158624 -2.124715 -0.902349 0.728448 3.066286 0.237558 -1.732744 2.443846 -1.023559 0.233799 5.722788 1.148416 -1.850332 0.643591 -1.334100 4.959912 -3.463067 -3.274691 -1.383344 2.909019 1.870471 0.817996 -6.865888 -3.517252 -5.223003 -7.096332 -1.100847 1.518067 1.053019 1.552974 -1.017182 -5.655618 -3.177271 6.228156 0.604752 6.279688 3.041835 1.473142 5.055358 2.386048 1.150057 -1.574007 -0.512249 0.583787 -1.388234 -1.163719 -2.594362 1.924036 -4.689817 3.904357 3.943093 -1.896332 3.381279 1.362783 -0.051451 -5.737070 5.640218 2.219935 -5.729844 0.834729 4.183217 3.479200 -4.895857 -3.446806 -PE-benchmarks/find-k-closest-elements-given-value.cpp__printKclosest(int*, int, int, int) = -4.402171 -7.576754 11.282209 7.323197 0.656304 3.073449 3.106797 -0.138261 0.552089 4.200453 -3.256296 8.120368 -5.498419 -2.018995 0.975630 -0.078506 -5.790774 -6.517745 0.299374 -1.136199 -2.929708 -3.114314 -4.995701 9.477562 4.834402 -0.882439 -4.728618 0.342337 -10.609505 -7.029608 -5.779718 0.006758 4.245648 -3.545401 6.275624 -11.255575 4.072970 7.960720 1.063306 -8.380139 2.336661 -3.084684 0.500571 0.293640 -3.341590 3.220312 7.347820 1.320654 1.328206 1.929293 -0.537677 -2.918455 2.112758 10.369537 3.985808 6.091368 8.387331 -3.648841 1.286706 -2.047336 0.823206 -7.847360 2.595957 -0.047269 -3.626140 -1.780389 2.019222 -0.541125 -1.556169 2.367944 4.907060 -5.273378 -2.805222 -5.074625 -7.795694 -2.691590 8.056811 3.631349 8.909534 -4.757140 9.089142 3.692050 5.938339 2.213965 5.648017 -0.551574 6.607069 1.223559 -3.799985 -0.296337 -7.268840 -3.108538 -2.233846 6.635418 -3.272593 -0.744204 3.121478 -10.116913 -9.654137 4.445522 -1.138812 -4.251589 -4.769761 0.830697 3.988524 3.601329 -0.453558 -5.552804 -4.733314 3.613621 -5.277609 -1.644824 0.433925 -0.659514 -0.925041 0.425260 -7.667392 3.187634 5.929697 -2.549553 -3.333327 7.420360 -3.084557 7.965585 0.451048 2.581411 0.546129 4.104723 5.792124 -0.121055 -1.878984 -5.364963 -7.180669 -1.806771 -0.431585 0.206333 -5.162785 -1.704697 2.521001 3.091731 1.055792 4.526632 -2.925321 11.310802 2.449961 -3.408523 -6.487271 -8.035465 -5.856931 -3.286059 0.407828 -1.977476 -5.839740 2.001156 3.959467 1.710127 -1.757147 6.893204 -0.608441 4.483272 1.520504 -2.530213 0.326122 -5.294739 3.613010 -5.564668 -3.061559 4.338815 4.962597 4.920915 0.187565 -1.157657 2.520634 -3.727741 -5.891348 2.175840 1.642755 4.030190 7.754353 6.095870 13.319050 -5.183533 -1.971299 -0.645355 -1.461399 -2.208102 0.635473 -5.379386 1.589460 1.382485 -0.119026 10.858948 0.690771 -4.746676 4.996739 1.047000 1.127492 -5.892314 5.179850 -3.529581 2.766162 -0.896013 -3.361234 -5.819607 -1.322547 -7.020815 -4.691735 9.939329 -6.289448 -11.698730 2.636826 -0.074366 7.227967 -12.727260 7.160856 -3.040098 8.287447 -1.096616 -2.386902 0.545082 -0.150938 -0.993517 4.902099 2.052647 -3.424666 2.402569 3.566952 1.528174 2.763215 1.180814 3.041563 -0.556803 2.158422 -2.372614 1.786712 -1.217778 -1.885843 -3.096524 -0.756927 1.750311 5.471171 -0.793958 -2.831133 3.658230 -0.782918 1.243320 7.302633 0.526053 -3.118049 -0.224398 -1.581389 7.915291 -5.604706 -4.730893 -2.844123 3.866682 2.521365 1.482962 -10.172923 -5.192891 -6.241288 -10.881230 -3.074053 2.099004 1.727356 2.652728 -1.972214 -7.498601 -4.543206 8.318529 1.826349 10.149998 4.626779 1.483894 7.889716 3.110082 1.261169 -3.293324 0.328463 0.916977 -2.370623 -1.027800 -4.690280 2.619917 -7.244576 6.149987 6.889823 -3.423522 4.826408 -0.557455 1.384625 -8.929889 8.748892 3.676634 -10.301753 -0.296018 5.596028 5.510911 -7.910224 -5.688079 -PE-benchmarks/find-k-closest-elements-given-value.cpp__main = 0.274359 -0.755409 1.860318 1.346806 -0.173227 -0.070904 0.806157 -0.378029 0.647823 0.057411 -0.442635 0.617005 -0.980026 0.474625 -0.598442 0.954412 -1.407547 -0.911502 -0.002634 -0.324985 -0.145743 -0.354636 0.977999 0.031224 1.153709 0.600125 -0.615558 -0.969607 -0.932083 -0.541844 0.720713 -0.530607 0.749553 0.391994 -0.254883 -1.952239 0.792369 0.592864 -0.520042 -1.067258 0.914441 -0.474447 0.019342 -0.815914 -0.118978 0.177839 0.483387 1.008526 0.664056 0.716013 -0.111418 0.087769 0.595864 1.728265 -0.639303 0.467089 0.716899 -0.104189 -0.200582 -0.203962 0.384627 -0.148292 0.353967 0.424932 0.048560 -0.988217 -0.612795 -0.962114 -0.841943 0.584203 -0.005960 0.560156 -1.025637 0.056958 -0.533807 -0.007432 -1.111996 1.132483 1.475732 -1.091577 0.896503 0.100240 0.283772 -0.258097 -0.271264 0.447570 -0.193157 0.436062 -0.024408 -0.490322 -0.829777 -0.206460 0.122744 -0.367925 -0.205021 -1.757114 0.802553 -0.499962 -0.954396 0.204656 0.527050 -0.405119 0.179194 0.158044 0.067223 0.923450 -0.651573 -0.705178 -0.086474 -0.306645 0.353489 -0.223213 0.083662 0.022429 -0.503372 -0.557093 -1.307744 0.189075 -0.148387 -0.628715 0.142263 0.495935 -0.245959 0.277990 -0.022762 0.440469 -0.400735 1.192580 0.392834 0.566440 0.638203 0.254802 -0.361583 0.296359 1.013297 1.334877 -0.628874 0.135582 -0.644264 0.221134 -0.402086 -0.458271 0.263837 0.526612 0.663738 -0.963898 -0.999613 -0.531520 -0.195372 -1.093739 0.298125 -0.730875 0.136885 0.632077 0.729052 0.266539 0.841100 1.555138 -0.911943 0.426488 0.038241 -0.183197 0.654970 0.460296 0.662277 -0.455247 -0.575401 0.392044 0.280561 0.310284 -0.050828 0.169890 0.380719 -1.152875 -0.128152 0.339502 0.563534 -0.606364 0.556359 0.506061 0.146029 -0.449173 -0.156946 0.792633 -0.255096 -0.229605 0.408992 -1.236427 0.827576 -0.039245 0.030544 0.496712 0.177772 -0.650246 0.825603 -0.435569 0.019530 -0.412927 0.064015 -0.517618 -0.447655 -0.714449 0.503665 -0.186432 -0.442487 -0.248118 -0.126040 1.230651 -0.640949 -0.339310 0.372870 -0.127697 0.295974 -1.327709 1.736564 -0.691489 0.537766 0.018436 -0.242514 0.144799 -0.083261 -0.746178 -0.370277 0.427889 0.029874 0.324437 1.165898 0.627128 -0.225324 0.086284 1.013933 -0.131448 0.991393 -0.046194 0.561100 -0.345394 -0.630661 0.209660 -0.108855 -0.189476 -0.378210 0.262402 1.496985 0.279360 0.698190 1.235141 0.268334 1.370704 -0.724488 0.527492 -0.211382 1.219691 -0.415055 -0.280727 0.118942 0.586317 -0.397939 0.879624 -1.199265 -1.822580 -0.832494 -1.095900 -0.021418 -0.576063 0.482383 -0.606314 -0.047536 -1.138210 -0.743589 -0.089035 -0.336274 0.428836 0.891503 0.007401 0.767272 0.695038 -0.735027 -0.197710 0.233657 0.824894 0.319756 -0.115137 -0.826210 0.527630 -1.017259 -0.127065 1.422764 -0.615674 0.124573 -0.442744 1.280050 -0.708170 1.615676 0.396010 -0.829448 0.987975 0.813069 0.970512 0.421398 -0.614962 -PE-benchmarks/dfa-based-division.cpp__preprocess(int, int (*) [2]) = -1.822311 -3.429366 5.330425 3.647260 0.069745 1.267773 1.722391 -0.164746 0.461933 2.538527 -1.625752 3.538517 -2.567345 -0.660541 0.513000 0.862002 -2.626279 -2.954445 0.268523 -0.443004 -1.268814 -1.423051 -1.621272 3.626241 2.531830 0.222696 -2.209710 -0.326915 -4.489472 -4.078703 -2.448376 -0.336976 2.098353 -1.353083 2.507955 -5.051191 1.817218 3.775182 0.289292 -4.013954 1.285517 -1.077853 0.521322 0.094613 -0.709319 1.993886 3.429230 1.117474 0.859330 1.344560 -0.219711 -1.311059 1.466384 3.926559 1.493748 2.765103 3.595131 -1.593944 0.356579 -0.881267 0.514851 -3.358405 1.233235 0.187370 -1.508437 -1.053799 0.456020 -0.239113 -1.212517 1.189936 1.871269 -1.942053 -1.871840 -2.122140 -2.672264 -0.920580 1.780345 1.743068 4.326754 -1.820955 4.112126 1.705918 2.332872 0.487081 2.108661 -0.199991 2.422428 0.695562 -1.716916 0.061725 -3.184039 -2.146996 -0.988906 2.695907 -1.386965 -0.763639 1.797495 -3.894407 -4.366573 1.999735 -0.281657 -1.744486 -2.172741 0.208285 1.866697 2.145453 -0.367738 -2.650425 -2.079884 1.147835 -2.086257 -0.916666 0.171479 -0.459190 -0.816980 0.414696 -3.606081 1.158286 2.223583 -1.407711 -1.810456 2.990879 -0.791743 3.598970 0.225513 1.365256 0.240906 2.206885 2.778432 0.593632 -0.024109 -1.326508 -3.247079 -0.487915 0.130726 -0.073055 -2.273690 -0.915006 0.482135 1.317619 0.255464 1.880261 -1.577199 5.212893 2.118212 -1.745762 -3.012559 -3.402444 -2.505480 -1.539825 0.506090 -0.955770 -1.736585 0.625143 1.794265 0.015830 -0.406291 3.515074 -1.240572 1.912634 0.553981 -0.663757 0.402567 -1.471379 1.790255 -2.258401 -1.354980 1.905128 2.665831 2.221939 -0.041965 -0.414164 1.344754 -1.619949 -2.409995 1.345324 0.443888 1.247049 3.165309 2.479255 6.048473 -1.799137 -0.960788 -0.006557 -0.588125 -0.971561 0.423576 -2.806745 1.295847 0.398083 0.343182 4.487892 0.226216 -2.068298 2.649380 0.211350 0.398244 -2.624201 2.423646 -1.935658 0.997256 -0.465153 -1.236661 -2.657464 -0.773578 -2.860727 -1.343428 4.482867 -1.680416 -4.922790 1.003675 -0.374926 2.560923 -5.515086 3.550534 -1.435867 2.737260 -0.937035 -0.946530 0.093821 0.252887 -0.421729 1.008808 1.002183 -1.456724 1.285670 1.926210 0.725206 0.626579 0.616121 1.482917 -0.195776 1.236479 -0.824915 0.649323 -0.556487 -0.501724 -1.240177 -0.156251 0.718178 2.089576 -0.693185 -0.810620 1.484521 -0.556686 0.766349 3.153411 0.592966 -1.548187 0.334281 -0.519748 3.817782 -2.480645 -1.794706 -1.298105 1.807957 0.742315 1.141091 -4.542298 -2.271549 -2.442621 -4.882614 -1.698742 1.318884 1.277106 1.046619 -0.859768 -3.329585 -2.294663 3.370766 0.832134 3.475472 1.974281 0.501439 3.549210 1.439002 0.347464 -1.535698 -0.146091 0.290626 -0.813949 -0.748106 -1.722780 1.098284 -3.316645 2.488812 3.067317 -1.593819 1.854725 -0.801000 1.677504 -4.019048 4.234066 1.588543 -4.093109 0.099114 2.469529 2.946765 -3.716748 -2.480827 -PE-benchmarks/dfa-based-division.cpp__isDivisibleUtil(int, int*, int (*) [2]) = -0.868914 -1.442565 2.767822 1.904961 -0.167953 0.595427 0.836089 -0.727061 0.512746 0.802295 -0.544910 1.408014 -1.258973 -0.084798 -0.350424 0.408546 -1.576235 -1.228666 -0.265436 -0.891888 -0.662784 -0.658937 -0.208659 1.399225 1.263802 -0.025535 -1.083750 -0.518371 -2.173087 -2.210713 -0.375593 -0.262328 1.067939 -0.568105 0.665095 -3.275506 1.340756 1.765928 -0.274758 -1.541079 0.852013 -0.825153 0.024944 -0.179036 -0.997564 0.273599 0.834737 -0.295531 0.824404 0.475075 0.363286 -0.060678 0.890059 2.664398 -0.121181 1.269898 1.336089 -0.548276 -0.050300 -0.191913 -0.002969 -0.897243 0.648933 0.131040 -0.368482 -1.105529 -0.166389 -0.424871 -0.742955 0.807137 0.274623 -0.926111 -0.763369 -0.767833 -1.751005 -0.726782 0.257099 1.057477 2.058793 -1.297555 1.766883 0.500855 0.531560 0.371706 0.957153 0.243093 1.176382 0.376322 -0.452007 -0.110664 -0.677712 -0.136752 -0.136650 1.571409 -0.898565 -0.673579 1.222745 -2.141764 -2.115203 0.954559 0.322388 -0.955347 -1.138982 -0.062255 0.452930 0.537198 -0.675194 -1.440358 -1.048099 0.735258 -0.217290 -0.405855 0.011629 -0.500572 -0.304720 0.151955 -1.943369 0.704886 0.456246 -0.583503 -0.984397 1.384333 -0.202438 0.737983 0.105957 1.121529 -0.405093 1.362635 0.380527 0.512616 -0.238929 -0.197230 -1.838734 -0.752493 0.482767 0.112812 -1.160335 -0.514327 -0.253245 0.515788 -0.384456 0.684244 -0.350574 2.036719 1.324743 -0.916642 -1.164017 -1.053542 -0.970497 -1.656553 -0.136239 -0.572432 -1.120365 0.455265 1.070929 0.398047 0.429410 1.854319 -0.416768 0.980240 0.208117 -0.826981 0.820757 -0.928140 1.007896 -1.114255 -1.032186 0.870243 0.821201 1.182734 0.141679 0.072982 0.474122 -1.217288 -1.082516 0.694192 0.366002 0.172038 1.627412 1.486305 2.523062 -1.354299 0.007844 0.451211 -0.701628 -0.217699 0.259578 -1.322451 0.039723 0.523639 -0.316676 2.069600 0.193161 -0.841591 0.873135 -0.120648 0.433493 -1.250242 1.054672 -0.987407 0.279122 -0.701288 -0.723478 -0.985521 -0.593649 -0.939903 -1.005026 2.114637 -1.803329 -1.873939 1.110874 0.024812 1.041082 -2.736704 2.061198 -0.992198 1.721186 -0.518669 -0.539323 -0.016789 0.622572 -0.796888 0.815181 0.547261 -1.224474 0.844429 1.535565 0.612551 0.586877 -0.078648 1.289490 -0.247624 1.028384 -0.650238 1.100695 -0.195165 -0.821356 -0.483024 -0.325859 -0.236373 0.354868 0.185862 0.075004 0.829137 0.059734 0.359113 1.720645 1.095651 -0.782801 0.511326 -0.492714 1.724925 -1.070839 -1.015945 0.105147 0.979864 0.257471 0.473366 -2.365593 -1.577115 -1.956324 -1.900297 -0.266452 0.292618 0.525689 0.231248 -0.300079 -1.925255 -1.183644 1.461705 -0.050054 1.804226 1.146941 0.488237 1.617351 0.973436 -0.011058 -0.625490 -0.091521 0.438938 -0.073946 -0.419503 -1.233385 1.044624 -1.606477 0.829737 1.643527 -0.640305 0.983166 0.740538 0.815790 -1.783584 2.200669 0.661500 -1.612146 1.056950 1.676039 0.951719 -0.947041 -1.093717 -PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -0.463211 -1.062487 2.057052 1.336081 -0.084365 0.337825 0.876933 -0.490690 0.473196 0.032494 -0.406558 0.867015 -1.182087 0.221337 -1.060521 0.349976 -1.372402 -1.182101 -0.148234 -0.629877 -0.320328 -0.585326 0.334726 0.800108 1.057245 0.083196 -0.802647 -0.764586 -1.927590 -0.539460 0.359641 -0.296329 0.811222 -0.218618 0.053399 -2.541731 0.763360 1.165593 -0.396488 -1.174919 0.935697 -0.875028 0.074026 -0.484560 -0.622343 0.123525 0.564730 0.395989 0.696715 0.356765 0.251527 0.139824 0.347453 2.401073 -0.516650 0.890142 0.773179 -0.220654 -0.049369 -0.091290 0.169286 -0.446381 0.518132 0.238321 -0.303050 -0.878374 -0.317979 -0.700311 -0.732831 0.684224 0.103460 0.045249 -0.799333 -0.101810 -1.518214 -0.451629 0.009118 0.917600 1.651554 -1.093939 1.327451 0.163125 0.538962 -0.043691 0.445802 0.344108 0.522618 0.280912 -0.184287 -0.278604 -1.170180 0.397332 -0.165049 0.415897 -0.522237 -1.689066 0.929335 -1.595752 -1.505745 0.423379 0.266791 -0.723009 -0.205539 0.137323 0.167722 0.720728 -0.852149 -1.152540 -0.502907 0.385392 0.050484 -0.224231 0.351389 -0.318784 -0.186851 -0.777341 -1.358653 0.441817 0.200741 -0.548114 -0.419644 1.234523 -0.326645 0.601547 0.151276 0.646965 -0.487207 1.206298 0.248671 0.314492 -0.256284 -0.101427 -1.165677 -0.370587 0.614008 1.112671 -1.005014 -0.233144 -0.412291 0.355066 -0.361450 -0.057532 -0.012521 1.003968 0.688186 -1.011140 -0.947849 -0.783005 -0.346919 -1.375865 -0.071354 -0.541623 -0.671648 0.484667 0.883100 0.657824 0.649610 1.633943 -0.186667 0.616721 0.166174 -0.704868 0.715182 -0.446580 0.814713 -0.726121 -0.870941 0.548391 0.291117 0.971621 -0.055331 0.271913 0.165810 -1.072442 -0.456744 0.186456 0.777828 -0.016729 1.205288 1.068072 0.694797 -1.205875 0.021958 0.591408 -0.516714 -0.112522 0.170520 -1.238199 0.583244 0.361444 -0.587382 1.194228 0.097404 -0.718543 0.936444 -0.300393 0.428857 -1.056643 0.261417 -0.708243 -0.202846 -0.907408 -0.120860 -0.567983 -0.501514 -0.823606 -1.002212 1.571651 -1.427853 -1.015469 0.709638 0.262227 0.684814 -2.025005 1.450497 -0.769214 1.335407 -0.102050 -0.168862 0.054080 0.446859 -0.733719 0.357078 0.408469 -0.758395 0.706455 1.316632 0.656548 0.288113 -0.031944 1.241589 -0.181628 0.836993 -0.486509 0.745113 -0.256013 -1.009843 0.179097 -0.249529 -0.126605 0.125984 0.563063 1.059068 0.675775 0.542166 0.870042 1.161506 1.188238 -0.601013 0.164201 -0.442812 1.232189 -0.654487 -0.623243 -0.045627 0.789160 -0.047493 0.443962 -1.728018 -1.968272 -1.527025 -1.651707 0.347152 -0.590232 0.176071 -0.033700 -0.094367 -1.745046 -0.893103 0.516191 -0.402596 1.194459 0.985206 0.188130 1.164054 0.977617 -0.607296 -0.104130 0.382031 0.852595 0.063435 -0.166790 -1.174236 0.763553 -1.363310 0.559427 1.489004 -0.725305 0.597453 0.331104 0.976547 -1.229205 1.937113 0.536039 -1.279999 0.980355 1.031270 1.071867 0.122498 -0.758207 -PE-benchmarks/dfa-based-division.cpp__main = -0.333968 -1.213657 1.735776 1.257215 0.059601 0.281334 0.908059 -0.064922 0.492620 0.232982 -0.626743 0.920159 -1.228050 0.034351 -0.202718 0.255925 -1.143855 -1.215291 0.194176 0.005115 -0.156655 -0.713496 0.137309 0.878162 0.887298 0.631081 -0.601800 -0.560943 -1.732873 -0.650803 0.172399 -0.271017 0.843549 0.609019 0.317308 -1.896041 0.517245 1.053872 -0.096302 -1.534316 0.650816 -0.747791 0.072532 -0.497342 0.094341 0.527193 0.933579 0.884280 0.364655 0.421099 -0.358431 -0.453461 0.169075 1.286788 -0.047677 0.748438 1.193789 -0.250715 0.018825 -0.338761 0.294942 -0.772261 0.577638 0.511746 -0.667633 -0.452023 -0.099188 -0.740190 -0.858210 0.576860 0.433767 0.135275 -0.876653 -0.349425 -0.856526 -0.105159 0.102256 0.962383 1.667848 -0.907861 1.486260 0.347903 0.877843 -0.195042 0.384783 0.172611 0.392616 0.309272 -0.508911 -0.481595 -1.743580 -0.612565 -0.381497 0.354937 -0.253770 -0.494612 0.634076 -1.074405 -1.307222 0.291358 -0.071080 -0.463912 -0.481663 0.616893 0.450983 1.040966 -0.265022 -0.951874 -0.519404 0.198749 -0.447606 -0.262577 0.110838 0.207469 -0.640159 -0.648794 -1.300820 0.161786 0.499550 -0.796081 -0.106595 0.932322 -0.627864 0.995255 0.088013 0.226790 -0.041537 1.071445 0.802187 0.007916 0.787463 -0.675773 -0.927891 -0.019784 0.469514 1.457244 -0.933959 -0.060397 0.073371 0.311967 -0.075984 -0.316583 -0.171617 1.027266 0.705668 -1.043323 -1.029263 -1.062410 -0.273786 -0.853370 0.173343 -0.636349 0.100997 0.442962 0.803321 0.378814 0.242530 1.879784 -0.893576 0.663930 0.250066 -0.279511 0.200671 0.402854 0.639793 -0.728644 -0.696064 0.583027 0.542887 0.418276 -0.045412 -0.041059 0.314231 -1.022990 -0.866234 0.591602 0.417410 0.125579 1.016496 0.755166 0.599022 -0.983316 -0.198129 0.286967 -0.178962 -0.332968 0.308401 -1.262565 0.921914 -0.005569 0.162386 1.078275 0.095876 -0.804874 0.851046 -0.080941 0.070154 -0.823165 0.430973 -0.733838 -0.078859 -0.677029 0.020588 -0.479991 -0.605162 -0.658586 -0.230974 1.490341 -0.099285 -1.366922 0.261828 -0.231260 0.897347 -2.053676 1.039635 -0.650353 0.811920 -0.122762 -0.248278 0.079649 -0.140526 -0.269988 -0.130877 0.467438 -0.301301 0.596055 0.970878 0.457707 0.021752 0.363657 0.722191 0.097728 0.414560 -0.267959 0.254387 -0.264957 -0.416478 0.066268 -0.256240 0.376523 0.411737 -0.137636 1.067215 0.799607 0.350207 1.129146 0.784992 0.657151 -0.617009 0.082082 -0.172069 1.544662 -0.601076 -0.511954 -0.456214 0.549598 -0.072686 0.636354 -1.430273 -1.807393 -0.406433 -1.982353 -0.301001 -0.437031 0.502471 0.052612 -0.005041 -1.482215 -0.653595 0.059413 -0.012273 1.652280 0.704634 0.085062 1.077436 0.639676 -0.612472 -0.449916 0.471916 0.692991 -0.364003 -0.173226 -0.815623 0.316879 -1.121580 0.586105 1.340542 -0.667635 0.382872 -0.610294 1.349477 -1.120667 1.812051 0.702770 -1.419521 0.495708 0.555258 1.170717 -0.237496 -0.831672 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -0.583604 -0.750984 2.910275 1.956355 -0.116978 0.246834 0.735873 -1.424632 1.569437 0.576197 -0.313101 0.566767 -1.473148 0.422785 -0.324946 1.259418 -2.080593 -1.382377 -0.376080 -1.467469 -0.599274 -0.878227 1.006963 0.064633 1.446777 0.157760 -1.149531 -0.531204 -1.622481 -1.916780 0.845866 -0.733293 1.139311 -0.121844 -0.074931 -3.684088 1.884135 1.202629 -0.814799 -1.358598 1.254081 -1.173706 0.219690 -0.563918 -0.269815 0.516506 0.340264 0.332389 1.632826 0.675102 0.714187 0.284870 0.234530 2.532847 -1.538736 0.927097 0.426020 -0.713486 -0.860181 0.296814 0.153744 -0.177987 1.007236 0.683910 -0.631269 -1.814036 0.062374 -0.878602 -1.717267 1.286270 -0.039162 -0.524534 -1.087914 -0.300836 -1.235097 -0.616624 0.202718 1.203377 2.166665 -1.043621 1.406001 -0.034980 0.296665 -0.075161 0.503628 0.263452 1.382724 0.241806 -0.437914 -0.777769 -1.018814 -0.343314 0.180694 0.989319 -0.210575 -1.154863 0.923288 -1.425374 -1.818420 0.295545 0.895058 -0.587435 -1.878971 0.004818 0.730692 0.902187 -0.542390 -1.590774 -0.415283 0.353648 -0.326008 -0.328363 -0.203940 -1.163653 -0.844911 -0.578456 -2.030237 0.359113 -0.192346 -0.535144 -1.157084 1.420237 -0.813557 -0.084563 0.203087 1.276821 -0.847024 1.439336 -0.422429 1.146538 0.445951 0.052516 -1.580643 -0.480031 0.889943 1.267662 -0.720663 -0.384834 -1.239290 0.204863 -1.553381 -0.028361 -0.299580 1.587650 1.797643 -1.190177 -1.199997 -0.285896 -0.255041 -2.253892 0.440909 -1.073653 -0.469094 0.343791 1.263307 0.683456 1.386953 2.351312 -1.133250 0.938445 -0.102296 -0.644519 1.763952 -0.176209 1.413739 -1.052463 -0.809504 0.545352 0.425519 0.611471 -0.133239 0.136074 0.289282 -1.880466 -0.745524 0.540842 0.526171 0.115481 0.985537 1.252004 2.460981 -1.734214 0.396751 1.371993 -0.454768 -0.143793 0.413276 -1.558605 0.594098 0.617389 -0.074705 1.740200 0.123686 -1.288173 0.352654 -0.173505 0.549356 -1.253511 0.282145 -0.896888 0.236087 -0.795977 -0.640872 -0.913202 -0.890890 -0.773459 -0.729017 1.938091 -0.816201 -1.996683 1.878204 -0.702167 1.101875 -2.886167 2.105870 -1.297218 1.094113 -1.029303 0.014130 -0.208845 0.385592 -1.407565 0.776482 0.492084 -0.390783 1.103415 2.237627 1.107397 0.562542 -0.443758 1.674534 -0.204434 1.584128 -0.470070 1.618988 -0.540316 -0.604825 0.096864 -0.374557 -0.450926 -0.234882 0.415812 1.104954 1.132528 0.438979 1.257885 1.201394 1.889899 -0.840195 1.314315 -0.292569 1.192040 -0.443762 -0.738922 0.739679 0.867054 -0.362368 0.987166 -2.238081 -2.399702 -0.979885 -2.472395 0.227023 0.075409 0.478240 -0.233584 0.027213 -1.979207 -0.860542 1.028055 -0.191442 2.312024 0.823160 0.300895 1.087291 1.654679 -0.995281 -0.493834 -0.180828 0.485201 0.100253 -0.669764 -1.534911 1.599397 -1.426247 0.463476 1.874851 -1.088842 0.357500 -0.374616 1.229178 -1.494335 2.205584 0.480184 -0.691111 1.862767 0.964695 1.890254 0.173479 -0.913842 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__sortedInsert(Node**, Node*) = -1.369907 -1.668623 7.969060 5.264330 -1.183392 0.795938 -0.372608 -3.802604 2.826939 1.575294 -0.905165 2.682086 -1.824548 0.778231 0.098077 3.185551 -5.733091 -2.479758 -1.552610 -3.969488 -2.441390 -1.129574 0.577064 1.167689 3.319287 1.378015 -3.568097 0.687385 -2.177481 -7.438045 0.004311 -1.138548 2.608428 -1.354334 1.695236 -10.249535 5.336340 3.394494 -1.573489 -3.610734 2.398250 -1.619855 -0.151103 -0.645044 -2.432130 1.878651 0.909327 -0.535997 3.190419 1.911549 1.020984 1.407105 1.731230 6.400607 -1.322881 2.411152 2.014961 -2.608584 -1.806462 0.134473 0.573106 -0.851664 1.868871 0.534308 -0.475115 -4.733206 0.603392 -1.056102 -2.825018 3.090184 0.247344 -3.735335 -1.757108 -2.546909 -3.955260 -1.650975 2.155144 3.139441 4.699997 -2.595717 2.709119 0.013050 0.466992 1.011742 1.897144 0.110357 4.677032 1.133420 -0.608861 -0.609327 0.286671 -2.306637 1.187921 3.230254 -1.646258 -2.781618 2.314740 -6.123392 -4.284039 1.865657 2.752100 -1.956339 -5.414339 -2.075401 2.303940 1.584778 -0.533752 -2.786384 -1.051829 1.418090 -1.059665 -0.941496 -1.081639 -1.988916 -1.139323 1.463140 -5.261767 2.213778 0.719298 0.160292 -2.502634 3.487401 -0.541597 -0.384236 -0.243725 3.343528 -2.130087 3.487686 -1.145125 3.163272 -1.260659 1.280158 -2.563107 -0.915530 1.407944 -0.881968 -1.920718 -2.404178 -2.459527 1.081084 -3.511656 1.633945 -2.322252 4.933011 5.285811 -1.128815 -3.707633 -1.651840 -3.019190 -5.593382 0.357518 -2.273462 -3.202131 2.257961 2.774379 1.532697 2.548548 3.500916 -2.121917 1.633622 -0.460036 -1.429887 3.834484 -2.141535 2.873587 -2.748154 -1.478873 2.159184 1.013597 2.522490 0.235590 -0.214837 1.271890 -3.280452 -2.292716 2.958842 1.694884 1.715149 2.283448 3.707258 8.881121 -2.882413 -0.062762 2.472408 -1.706108 -0.752867 0.779148 -2.887835 0.088667 1.759693 0.904294 5.867473 0.147360 -2.227972 0.638001 0.337072 1.116777 -2.648478 1.426552 -1.917194 2.113518 -0.722422 -2.788698 -3.167435 -0.687572 -3.000198 -3.434919 5.164241 -4.868200 -5.859682 5.689817 -2.413269 3.568855 -6.977915 3.811227 -2.673404 3.909525 -2.220328 -0.162892 -0.388485 -1.190364 -3.870081 3.542679 1.152838 -1.066403 0.979065 4.758907 2.202189 1.283680 -1.871814 3.473424 -1.328672 4.574920 -1.372143 4.208616 -1.533670 -0.443000 -1.355686 -0.384531 -1.994322 -0.667190 1.107382 -0.230201 1.181240 1.105946 1.272018 3.457176 3.768130 -2.337806 3.487412 -0.764140 1.898450 -1.885566 -2.566205 2.155964 3.227381 -0.151490 1.346501 -5.575208 -3.978093 -6.029939 -5.592536 -0.707807 1.538472 1.313052 -0.783361 -1.283670 -3.124042 -2.639198 6.285870 0.421797 5.466935 2.423385 0.783506 3.069217 3.707780 -1.032039 -1.112365 -1.827930 -0.100070 0.687791 -1.336091 -4.086157 4.542198 -2.618496 0.995457 5.021142 -2.626131 2.199754 0.319026 1.373420 -3.816115 4.501199 0.798631 -2.558042 2.833109 2.845087 3.104372 -1.321505 -2.614520 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__printList(Node*) = -0.389356 -0.655147 2.084339 1.437798 -0.225865 0.239365 0.275815 -0.877303 0.916369 0.383515 -0.392621 0.580419 -0.921211 0.178445 0.030020 0.753694 -1.536462 -0.892800 -0.218840 -0.852929 -0.463450 -0.583508 0.321772 0.361793 0.927220 0.560921 -0.772917 -0.038917 -0.986750 -1.563453 0.251700 -0.406770 0.787334 0.279293 0.352702 -2.404024 1.273930 0.962724 -0.405160 -1.137755 0.698596 -0.713924 0.100590 -0.335136 -0.220659 0.598037 0.400177 0.294019 0.915065 0.476492 0.212895 -0.007128 0.307589 1.412460 -0.546084 0.684329 0.585596 -0.600779 -0.422027 -0.012926 0.155224 -0.331312 0.633459 0.404500 -0.472918 -1.144731 0.084881 -0.539253 -1.002294 0.854678 0.092011 -0.575083 -0.759788 -0.570531 -0.884938 -0.384149 0.044488 0.918353 1.512925 -0.747561 1.039555 0.124379 0.335961 0.026325 0.514128 0.103042 1.110170 0.247134 -0.365410 -0.281186 -0.594407 -0.675474 0.152845 0.687508 -0.294482 -0.546058 0.583202 -1.396505 -1.280363 0.346215 0.530360 -0.466621 -1.248455 0.009071 0.581900 0.636729 -0.202151 -0.974466 -0.205845 0.306251 -0.369111 -0.231913 -0.250638 -0.409057 -0.559093 -0.091134 -1.469402 0.382809 0.142482 -0.301716 -0.516626 1.022121 -0.359620 0.132307 0.062343 0.716695 -0.448503 1.138382 -0.080465 0.665149 0.143702 -0.012961 -0.865418 -0.109145 0.493621 0.438869 -0.617929 -0.425821 -0.513537 0.217227 -0.898569 0.076157 -0.452331 1.229404 1.317826 -0.695133 -0.952247 -0.496375 -0.632905 -1.492690 0.247091 -0.696535 -0.416154 0.407081 0.860459 0.495803 0.735183 1.434895 -0.833159 0.471111 -0.073294 -0.362350 0.975864 0.011493 0.895426 -0.782041 -0.478628 0.572503 0.340795 0.490611 0.032700 -0.047823 0.296494 -1.124523 -0.609778 0.796612 0.394080 0.334556 0.808591 0.958167 1.817820 -0.870369 0.085070 0.730375 -0.294077 -0.221834 0.328546 -1.011208 0.449229 0.357137 0.227664 1.346873 0.044620 -0.660657 0.262404 -0.009679 0.305936 -0.898035 0.314965 -0.621921 0.382717 -0.472299 -0.392570 -0.746074 -0.535430 -0.660635 -0.561582 1.441485 -0.647979 -1.468255 1.250459 -0.601552 1.006462 -1.911668 1.100949 -0.839850 0.941971 -0.606752 -0.099861 -0.069104 -0.240203 -0.822005 0.541414 0.371889 -0.192532 0.496254 1.245589 0.685265 0.257029 -0.209094 0.997953 -0.194497 1.052873 -0.340745 0.960764 -0.352824 -0.112164 -0.066245 -0.231269 -0.295700 -0.003945 0.118456 0.587647 0.675825 0.325626 0.756212 0.795524 1.029114 -0.622612 0.774679 -0.174877 0.849992 -0.494298 -0.646576 0.353567 0.728640 -0.129247 0.499524 -1.577517 -1.500251 -0.955735 -1.676391 -0.217086 0.127117 0.445118 -0.044302 -0.097417 -1.120244 -0.668244 1.156837 0.020082 1.700258 0.525020 0.167547 0.883350 1.042122 -0.475830 -0.439168 -0.159712 0.252525 -0.016198 -0.286686 -1.108517 1.086243 -0.915863 0.371387 1.396587 -0.829315 0.400743 -0.287238 0.921751 -1.130482 1.451502 0.376976 -0.793263 0.957668 0.713761 1.100894 -0.130986 -0.741750 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.294789 -0.616110 2.526752 1.705771 -0.287478 0.201541 0.562093 -1.228495 1.265449 0.342170 -0.138517 0.462222 -1.059476 0.470058 -0.527420 1.146471 -1.795650 -0.970892 -0.463986 -1.419381 -0.656749 -0.507921 0.770450 -0.100540 1.222959 0.084196 -0.936069 -0.617344 -1.117582 -1.284123 0.862407 -0.521499 0.848098 -0.439178 -0.089982 -3.638828 1.541650 0.966747 -0.813251 -1.136908 1.023893 -0.887007 0.181424 -0.541346 -0.464106 0.141708 0.115044 0.404107 1.232072 0.603870 0.524471 0.588444 0.406012 2.999175 -1.241063 0.804859 0.458895 -0.432224 -0.712851 0.362996 0.194289 0.046707 0.657147 0.288108 -0.124556 -1.625400 -0.229246 -0.844587 -1.186835 0.965827 -0.050592 -0.531204 -0.885359 -0.329550 -1.159326 -0.620822 -0.981113 1.195025 1.697315 -1.323296 0.983751 -0.037876 0.134120 0.209527 0.403145 0.309490 1.034139 0.299142 -0.114350 -0.392824 -0.481112 -0.054266 0.394234 0.224720 -0.445000 -2.102681 0.978107 -1.085206 -1.462204 0.478450 0.923195 -0.522129 -1.144669 -0.469749 0.364823 0.683347 -0.848079 -1.200682 -0.448693 0.321501 0.138550 -0.285513 -0.000885 -0.871792 -0.402043 -0.580667 -1.731632 0.520125 -0.124685 -0.246744 -0.886937 1.223200 -0.445693 -0.246599 0.047220 1.029459 -0.894942 1.438218 -0.412662 1.017049 -0.030997 0.487043 -1.360988 -0.160721 0.890643 1.013391 -0.470485 -0.216097 -1.102465 0.268357 -1.222908 0.139539 -0.081206 1.178892 1.332423 -0.788101 -1.002918 -0.334988 -0.230192 -1.880796 0.291853 -0.854507 -0.550596 0.563808 1.038982 0.889953 1.180130 1.591381 -0.871893 0.689861 -0.237361 -0.505189 1.425026 -0.149159 1.084049 -0.800172 -0.712284 0.337774 0.261746 0.683399 -0.014443 0.180679 0.259948 -1.426277 -0.305155 0.254926 0.691796 -0.299633 0.862456 1.160393 1.963575 -1.503064 0.230670 1.078445 -0.674968 -0.020683 0.248815 -1.254743 0.318489 0.593519 -0.313437 1.366191 0.074730 -0.871380 0.374431 -0.330079 0.417210 -0.777527 0.082323 -0.721712 -0.268480 -0.681277 -0.174233 -0.802646 -0.539429 -0.717549 -0.890808 1.638444 -1.456917 -1.142158 1.594863 -0.436225 0.585211 -2.086153 2.250673 -1.001902 0.941089 -0.736829 -0.076250 -0.180621 0.546011 -1.330861 0.683988 0.435662 -0.491402 0.581824 2.048691 0.887718 0.409638 -0.452311 1.551166 -0.456018 1.402427 -0.504261 1.550782 -0.548054 -0.701186 0.042066 -0.268094 -0.461920 -0.456658 0.668220 1.123254 0.596505 0.595967 0.822882 1.036527 1.653327 -0.747363 1.141024 -0.303050 0.845176 -0.472328 -0.496485 0.697934 0.801739 -0.262810 0.685640 -1.840049 -1.855771 -1.477977 -1.451034 0.383326 0.059081 0.187989 -0.430920 -0.151319 -1.620579 -0.930037 0.919610 -0.449031 0.965251 0.862164 0.331465 0.996179 1.433129 -0.745758 -0.181667 -0.074122 0.353367 0.340112 -0.518758 -1.259153 1.449405 -1.181466 0.167766 1.650478 -0.683452 0.475827 0.159145 1.002670 -1.085264 1.808859 0.287805 -0.602146 1.438920 1.425764 1.562912 0.246769 -0.724059 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = -0.277267 -0.720014 1.540214 0.761864 -0.917734 0.028433 0.207418 -0.166944 0.780246 -1.900419 -0.770746 0.225405 -1.117031 0.295315 -0.801624 -0.316896 -2.417995 -1.162084 0.200219 -0.070690 -0.060088 -0.741985 0.517144 0.784551 0.370287 1.747273 -0.503446 0.035543 -0.991019 1.132533 1.701347 -0.770814 0.773543 1.711202 0.075326 -3.122852 0.521436 0.013355 -0.430061 -1.052658 0.561656 -1.321823 0.285111 -2.056032 -0.953480 -0.113509 0.544464 1.615399 0.566967 -0.550698 -1.505452 -0.412836 -0.721615 1.835088 -0.830490 0.204804 0.792137 -0.232462 -0.308407 -0.506645 0.273007 -0.269136 0.599577 1.025412 -1.121568 -0.692386 0.062507 -1.747227 -1.037091 0.927015 0.258784 1.466294 -0.832553 0.273504 -1.665137 -0.160015 0.888316 1.607362 1.764318 -1.198518 1.024560 -0.118890 1.055239 0.151002 0.258035 0.711136 0.820096 0.281405 -0.566601 -0.335001 -2.168116 -0.047805 -0.054837 -0.900119 0.436151 -1.756969 0.151433 -2.341285 -0.871055 -0.156098 0.097325 -0.099326 0.160268 0.167663 0.826174 0.819995 -0.664992 -0.839688 0.244486 -0.060010 -0.579801 0.211375 0.609055 0.850364 -0.360813 -1.755446 -1.389799 0.013966 -0.038763 -0.565898 1.031722 1.059141 -1.022192 0.259950 0.169597 0.036376 -0.488065 1.727550 0.157705 -0.600643 0.244836 -0.525814 0.846638 -0.311406 0.466318 2.685829 -0.849659 -0.793659 -0.091715 0.183431 -0.798859 -2.052690 0.152731 -0.081000 -0.335005 -1.207717 -0.776217 -0.846087 -0.724009 -2.002293 -0.238165 -0.790971 -0.274202 1.773606 0.925107 1.258494 0.995801 1.684112 -0.754551 0.860110 -0.232052 -0.237824 0.709643 0.868604 0.846309 -0.464806 -0.470125 0.467211 -0.840735 0.850073 -0.017626 -0.582279 0.049568 -1.395585 -0.799644 0.647270 1.266742 0.568476 0.647000 0.579980 -1.580272 -1.435913 0.313457 0.820452 0.103787 -0.348198 0.546692 -0.874170 1.106336 0.206804 -0.411248 0.168235 0.012493 -0.989420 0.113241 0.170081 0.426043 -0.814799 -0.751712 -0.293437 -0.104546 -1.288707 0.743607 -0.578426 -0.781454 -0.886084 -1.025606 1.235873 -1.630243 -0.982934 0.818827 0.346255 2.239115 -1.687118 -0.239704 -0.863697 2.299879 0.232015 -0.079861 0.195293 -1.328742 -0.548925 0.021608 0.383541 -0.037883 0.086908 0.393390 1.062290 0.522453 0.438893 1.120783 0.322707 0.630911 -0.141815 -0.065999 -0.366269 -0.907817 0.975305 -0.342914 0.093844 0.357970 1.043873 1.891964 1.116960 1.723101 2.287439 0.806975 0.772315 -0.610579 -0.915328 -0.585539 1.118560 -0.315031 -0.405775 -0.428350 1.209839 -0.384071 0.356838 -1.348013 -3.174850 -2.047215 -1.511991 -0.182732 -1.436256 -0.011243 0.061572 0.625898 -1.431481 0.024720 -0.437441 -0.533447 2.538930 0.615998 -0.090873 0.956282 1.154885 -1.598908 -1.064940 1.889919 1.406415 -0.303994 1.040647 -2.607399 0.900167 -1.317397 0.425432 1.973598 -1.179298 -0.207629 -0.451346 1.987378 -0.724577 1.976011 0.893235 -1.825957 0.650427 0.259217 0.383538 2.112116 -0.793105 -PE-benchmarks/ugly-numbers.cpp__maxDivide(int, int) = -0.592136 -1.111082 1.321218 1.028145 0.328444 0.463408 0.842957 0.322722 0.261880 0.885225 -0.259882 0.854842 -0.876613 -0.130758 0.254015 0.274557 -0.534245 -1.037680 0.231624 0.014793 -0.217893 -0.636480 -0.313036 0.974257 0.623870 0.135344 -0.522226 -0.256805 -1.612134 -1.162596 -0.407870 -0.121206 0.605497 -0.075723 0.582705 -1.310164 0.567916 1.076815 0.261322 -1.309045 0.299719 -0.376588 0.384682 0.388101 0.164797 0.696841 0.943777 0.127369 0.377821 0.313799 -0.077443 -0.515468 0.199101 1.109452 0.216484 0.731533 0.896393 -0.326548 0.201430 -0.269756 0.135022 -0.927228 0.305066 0.309281 -0.429540 -0.130273 -0.105271 -0.308237 -0.485525 0.411724 0.338608 -0.333187 -0.594905 -0.319089 -0.759159 -0.343799 0.193996 0.604424 1.370348 -0.609288 1.386413 0.362557 0.846615 0.041099 0.646068 -0.071935 0.540867 0.135154 -0.519066 -0.135946 -0.868860 -0.390482 -0.534900 1.055438 -0.289452 0.266142 0.211276 -0.667270 -1.228787 0.544374 -0.471368 -0.201032 -0.769597 0.545922 0.605670 0.697081 -0.133996 -0.920660 -0.708451 0.172282 -0.461623 -0.264165 0.046461 -0.143739 -0.557906 -0.096149 -0.899957 0.015828 0.338467 -0.654433 -0.618566 0.859134 -0.327521 1.185372 0.185267 0.256049 0.037195 0.627224 1.022407 0.048727 0.220797 -0.945150 -1.452324 -0.160135 -0.038244 0.519730 -0.798121 -0.168897 0.098591 0.222238 0.063977 0.166080 -0.238572 1.360663 0.952532 -0.714114 -0.697541 -0.742553 -0.208474 -0.531280 0.172856 -0.543953 -0.155707 0.021704 0.533743 0.067289 -0.029902 1.390163 -0.544051 0.561557 0.231479 -0.239142 0.051458 0.055450 0.354015 -0.608576 -0.402388 0.318706 0.687920 0.421041 -0.160342 -0.196840 0.135999 -0.498824 -0.695159 0.617764 0.027687 0.312962 0.848696 0.475149 1.433788 -0.848049 -0.330757 0.089503 -0.290732 -0.265935 0.195718 -0.911295 0.630141 -0.021543 0.001432 0.906122 -0.108253 -0.508770 0.822866 0.021578 0.226336 -0.896638 0.728806 -0.698649 0.171434 -0.397623 -0.551598 -0.591883 -0.370919 -0.607218 -0.010019 1.188854 0.112526 -1.365280 0.113761 -0.303104 0.527769 -1.574221 0.878961 -0.479420 0.443011 -0.327959 -0.210847 0.098709 0.358978 0.253434 0.166513 0.350349 -0.462107 0.655829 0.561458 0.209233 0.027744 0.319516 0.453807 0.231988 0.046796 -0.227430 0.357905 -0.248739 -0.144163 -0.348698 -0.168405 0.394115 0.704788 -0.361765 -0.029443 0.481236 -0.341190 0.251516 0.847279 0.160483 -0.417659 0.018789 -0.390018 1.482858 -0.513324 -0.496994 -0.557855 0.374095 0.196082 0.318707 -1.220458 -0.841189 -0.133337 -1.778822 -0.643287 0.292762 0.316525 0.432610 0.031970 -1.223539 -0.529913 0.564537 0.277319 1.240763 0.337357 -0.084254 1.021113 0.358506 0.095223 -0.495272 0.014694 0.106118 -0.352335 -0.242546 -0.312773 0.139381 -1.087571 0.622699 0.747016 -0.437392 0.371397 -0.197161 0.479302 -1.148101 1.380333 0.487964 -0.937391 0.254172 0.535118 1.216580 -0.749047 -0.718690 -PE-benchmarks/ugly-numbers.cpp__isUgly(int) = -0.690189 -1.137461 1.307967 0.773422 0.002705 0.389009 0.540359 0.297976 0.173464 -0.031985 -0.274775 0.904779 -0.675618 -0.372914 -0.071802 -0.287086 -0.784049 -0.973147 0.292790 0.042255 -0.231464 -0.430021 -0.634471 1.091858 0.399915 0.342280 -0.369692 -0.340633 -1.565668 0.043448 -0.116759 -0.080335 0.556919 0.285310 0.693025 -1.838038 0.171576 0.684440 0.045279 -1.343609 0.199622 -0.580097 0.371430 -0.491848 -0.290076 0.242630 1.029646 0.238675 -0.050133 -0.010599 -0.613399 -0.509713 -0.081232 1.771192 0.370728 0.576002 1.152035 -0.325661 0.400632 -0.291221 0.211382 -1.007164 0.339167 0.036931 -0.614370 0.098981 -0.012683 -0.682957 -0.269771 0.230727 0.467513 -0.213202 -0.414177 -0.374945 -1.350996 -0.250508 -0.134633 0.824288 1.064311 -1.012351 1.286746 0.398013 1.072004 0.413857 0.731726 0.217876 0.585025 0.221216 -0.519554 -0.102340 -1.457715 -0.172760 -0.458069 -0.139836 -0.271960 -0.209569 0.509262 -1.178912 -1.060647 0.679508 -0.302376 -0.260878 -0.399949 0.054726 0.411668 0.852272 -0.462495 -0.678069 -0.761662 0.520346 -0.540741 -0.050706 0.512856 0.209784 -0.287601 -0.652790 -0.861040 0.345697 0.823750 -0.391044 -0.341820 1.120003 -0.782243 0.963206 0.030084 0.020058 -0.113663 1.071271 0.854188 -0.379408 -0.043651 -0.884743 -1.242013 -0.209883 0.052313 1.315590 -0.611322 -0.169476 0.428894 0.396006 0.223374 -0.128291 -0.114342 1.029630 -0.026515 -0.590513 -0.795579 -1.292169 -0.251383 -0.546297 -0.151127 -0.334708 -0.027009 1.258059 0.568521 0.904820 -0.147531 1.074141 -0.372169 0.627141 -0.027928 -0.208635 -0.207031 -0.099648 0.369202 -0.618861 -0.362288 0.341674 0.431245 0.713025 0.100708 -0.324736 0.311663 -0.460187 -0.803813 0.233993 0.593892 0.308804 0.999843 0.761227 0.062588 -1.366190 -0.489680 -0.157105 -0.275748 -0.322331 -0.023050 -0.666218 0.419288 0.156843 -0.487912 0.803061 -0.026390 -0.553261 0.597507 -0.015241 0.127455 -0.414094 0.274442 -0.387845 -0.458040 -0.240273 -0.143409 -0.813566 -0.300812 -0.878062 -0.880071 1.313744 -1.055839 -1.156086 0.137725 -0.149588 0.891642 -1.519374 0.804303 -0.418429 1.112328 0.164853 -0.253043 -0.324349 0.256701 0.060974 0.237640 0.336515 -0.828715 0.159458 0.676651 0.315493 0.322412 0.388566 0.499765 -0.003900 0.070293 -0.235217 0.047290 -0.351992 -0.549024 0.017514 -0.175555 0.576728 0.772849 0.227748 0.468620 0.482020 0.323454 0.591319 1.111245 0.007912 -0.437715 -0.578117 -0.311909 1.316035 -0.607429 -0.445266 -0.665402 0.582915 0.370241 -0.070450 -1.083078 -1.169925 -1.132867 -1.122008 -0.255229 -0.294085 -0.074530 0.217176 -0.034539 -1.221175 -0.445885 0.059146 -0.089273 0.584055 0.525198 0.074585 1.199540 0.473301 -0.363066 -0.615880 0.607189 0.271561 -0.382708 0.145595 -0.871216 0.224723 -1.284739 0.688371 1.005168 -0.306172 0.382002 0.274820 0.733884 -0.942510 1.297509 0.594078 -1.565543 -0.203857 1.001679 0.705912 -0.500738 -0.743613 -PE-benchmarks/ugly-numbers.cpp__getNthUglyNo(int) = -0.580838 -1.550621 1.982411 1.492469 0.464341 0.502161 0.966867 0.014902 0.665538 1.083790 -0.690096 1.307310 -1.426526 -0.107735 0.487397 0.353907 -1.009874 -1.531136 0.340174 0.108985 -0.417588 -1.075625 -0.302956 1.326146 0.944437 -0.131749 -0.794014 -0.271196 -2.149178 -0.970061 -0.518482 -0.269182 0.918318 -0.089995 0.908334 -1.867024 0.737327 1.220261 0.206228 -1.912635 0.408500 -0.747222 0.342774 -0.054286 0.186047 0.763711 1.471243 0.935279 0.504573 0.629727 0.022895 -0.898269 0.128697 1.573612 0.264889 1.043379 1.384690 -0.550672 0.104965 -0.392787 0.293521 -1.362702 0.745202 0.630238 -0.937771 -0.252275 0.224663 -0.396708 -0.956724 0.653022 0.901403 -0.369466 -1.043699 -0.696264 -0.637752 -0.254952 0.671637 0.901159 2.074025 -0.865928 1.884887 0.733139 1.406618 0.012438 0.831629 -0.105910 0.990762 0.220734 -1.069098 -0.495718 -2.051353 -0.873017 -0.594151 0.741965 -0.212852 0.238047 0.371413 -0.801800 -1.734267 0.620136 -0.355701 -0.396207 -0.989994 0.782268 0.983206 1.099571 -0.031252 -1.312274 -0.882983 0.390053 -0.981116 -0.376624 0.036178 -0.276480 -0.759720 -0.487303 -1.496690 -0.022854 0.904963 -1.020034 -0.536655 1.262273 -1.122438 1.542625 0.146779 0.235287 0.304514 0.980335 1.389947 0.047633 0.760222 -1.454887 -1.710090 0.234959 0.149211 1.002487 -0.803227 0.215690 0.350603 0.415571 -0.018531 0.363684 -0.256515 1.796362 0.760550 -1.033178 -1.399504 -1.351625 -0.434415 -0.557446 0.520654 -0.719017 -0.084718 0.086672 0.921198 0.371923 -0.073492 2.024585 -0.959480 1.071504 0.249580 -0.188151 0.098296 0.062901 0.770923 -1.036003 -0.640323 0.754579 1.201375 0.218922 0.056389 -0.404101 0.484391 -1.086281 -1.054882 0.471019 0.244276 0.536937 1.319308 0.738134 2.077016 -1.064400 -0.308675 0.196559 0.134775 -0.458352 0.196327 -1.396246 0.911817 -0.077057 0.274123 1.601649 0.095589 -1.164552 0.953525 0.097162 0.173296 -1.053537 0.806817 -0.776921 0.224932 -0.404543 -0.208842 -0.835949 -0.548144 -0.817883 0.024336 1.858591 0.219024 -2.147619 0.283483 -0.629329 1.216869 -2.449798 1.731996 -0.729600 0.911478 -0.375175 -0.426400 -0.045476 0.092806 0.045585 0.380039 0.547398 -0.162926 0.683734 0.971389 0.351193 0.270138 0.552647 0.562770 0.277672 0.242626 -0.137524 0.303474 -0.245866 -0.018763 -0.273783 -0.334952 0.721410 0.947014 -0.609933 0.377981 1.119222 -0.257436 0.979605 0.972226 0.261088 -0.705249 0.137369 -0.188512 1.868711 -0.933025 -0.649977 -0.637731 0.398332 0.032909 0.614908 -1.738794 -1.418598 -0.034614 -2.289815 -0.714243 0.210520 0.473542 0.332970 -0.074426 -1.535478 -0.648356 0.670718 0.308791 2.181563 0.666861 0.119703 1.386382 0.716172 -0.244740 -0.791898 0.152242 0.103734 -0.732771 -0.281521 -0.658405 0.278434 -1.498406 1.077463 1.259898 -0.698365 0.424282 -0.794547 0.845397 -1.528371 1.867162 0.930208 -1.535839 0.245729 0.593233 1.677568 -1.162412 -1.109291 -PE-benchmarks/ugly-numbers.cpp__main = -0.145337 -0.623839 0.786901 0.567470 -0.154657 0.130551 0.414390 0.054622 0.179863 -0.307751 -0.308085 0.344542 -0.617005 0.042095 -0.279978 -0.041525 -0.635840 -0.553546 0.052835 0.021841 -0.003095 -0.262529 0.061799 0.453058 0.340563 0.503264 -0.213503 -0.341652 -0.845651 0.277997 0.377308 -0.108320 0.408494 0.510991 0.067031 -1.123368 0.094882 0.466299 -0.115850 -0.750275 0.324953 -0.458230 0.064617 -0.501023 -0.144812 0.069768 0.334902 0.518492 0.036100 0.036525 -0.421167 -0.134990 0.004733 0.869209 -0.051283 0.324981 0.662257 0.016605 0.018060 -0.211883 0.170583 -0.224433 0.226613 0.192403 -0.316641 -0.224393 -0.205195 -0.584075 -0.379337 0.195556 0.156055 0.301138 -0.399512 -0.129056 -0.552341 -0.076506 -0.249292 0.590333 0.757240 -0.674096 0.664826 0.116222 0.402586 -0.010740 0.160696 0.230742 0.024899 0.183975 -0.106848 -0.086278 -0.913169 -0.104438 -0.097277 -0.215841 -0.196638 -0.698264 0.396048 -0.550008 -0.562299 0.140276 -0.017992 -0.215157 0.106999 0.210246 0.027762 0.556368 -0.350919 -0.384959 -0.185247 0.123073 0.008951 -0.093406 0.141848 0.379002 -0.198692 -0.686605 -0.625105 0.170911 0.232166 -0.345607 0.222969 0.481994 -0.352520 0.407715 0.010200 -0.015624 -0.142301 0.759155 0.360402 -0.180515 0.251667 -0.279578 -0.208236 -0.020752 0.274919 1.125276 -0.483901 -0.052003 0.089367 0.137280 0.063103 -0.409773 0.112600 0.192940 0.082512 -0.504122 -0.392314 -0.598383 -0.202803 -0.557219 -0.064875 -0.302265 0.118172 0.577306 0.390643 0.444994 0.163128 0.968973 -0.380626 0.264614 0.070124 -0.209426 0.045747 0.409292 0.264536 -0.270759 -0.403285 0.239643 0.017193 0.324865 0.045808 0.024918 0.077392 -0.486710 -0.300575 0.239373 0.389268 -0.058923 0.538962 0.413970 -0.342758 -0.497193 -0.074152 0.082474 -0.185496 -0.107993 0.129610 -0.586429 0.432626 0.032214 -0.177527 0.327193 0.014514 -0.297747 0.407051 -0.143220 0.045239 -0.336194 0.080388 -0.323559 -0.237637 -0.528636 0.263840 -0.186672 -0.320303 -0.372994 -0.272877 0.709864 -0.372921 -0.362606 0.002990 0.213610 0.435832 -0.810792 0.420551 -0.292088 0.679097 0.099762 -0.152388 0.092920 -0.163271 -0.144301 -0.208299 0.240258 -0.206197 0.082685 0.426584 0.268758 -0.071962 0.236194 0.430960 -0.009209 0.197417 -0.210376 0.073099 -0.139668 -0.381761 0.262694 -0.139256 0.185069 0.119638 0.135235 0.866183 0.360008 0.488943 0.629848 0.352540 0.322511 -0.287886 -0.170036 -0.107336 0.742869 -0.263207 -0.148550 -0.306328 0.419316 0.003470 0.191303 -0.645936 -1.090390 -0.478657 -0.745459 -0.002390 -0.444955 0.098776 0.003643 0.036669 -0.754577 -0.358197 -0.234564 -0.251445 0.731129 0.355371 0.076093 0.570897 0.345378 -0.450848 -0.185383 0.601068 0.546771 -0.111223 0.140216 -0.581223 0.188692 -0.536179 0.156542 0.763872 -0.266641 0.222739 -0.137953 0.832079 -0.423379 0.979600 0.347756 -0.848888 0.250360 0.422075 0.423357 0.252423 -0.378690 -PE-benchmarks/longest-bitonic-subsequence.cpp__lbs(int*, int) = -7.647152 -13.051444 19.905601 13.200255 0.459127 6.649012 5.127488 -3.784622 1.855375 8.927159 -4.762126 12.693344 -9.913603 -3.562021 0.810664 0.318571 -10.482653 -10.372290 -0.898855 -4.658127 -6.569347 -6.117325 -8.529740 15.937150 7.883336 -1.419007 -7.365975 1.879148 -18.072845 -14.867495 -9.562174 0.079331 6.858958 -4.648051 11.198214 -18.884612 9.057576 15.047357 1.019272 -13.233219 3.205450 -5.149783 -0.416307 2.518184 -5.463253 5.280022 10.130106 1.172570 3.074436 3.141931 2.681746 -4.703102 4.725333 18.496322 6.151321 11.896172 13.702336 -6.378294 2.936098 -1.529558 1.303932 -11.700176 4.994776 0.453890 -5.313241 -3.366596 4.180236 -0.604056 -2.869702 5.210712 7.456746 -11.875836 -4.197094 -9.853437 -13.664809 -5.495081 9.673804 5.198767 16.198503 -7.736066 16.193567 6.898186 8.947530 3.182266 12.076722 -1.444792 14.964131 2.279290 -6.985006 1.327611 -9.668659 -4.684269 -2.375493 13.223418 -7.165300 -1.049420 6.209399 -19.121461 -17.858028 9.057505 -1.159379 -7.746531 -9.399072 0.610930 6.373164 3.448162 -2.481845 -11.136064 -8.394153 7.553371 -9.389481 -3.100689 0.039634 -1.496838 -1.344760 3.039002 -13.102762 5.283269 10.022579 -4.408922 -7.638223 14.337989 -2.613095 12.534420 0.581458 4.548546 0.274186 6.542494 7.044667 1.721125 -5.336254 -6.579709 -13.488539 -3.434721 -0.384273 -3.609179 -7.918241 -3.960992 4.811824 6.045494 0.634570 10.873408 -6.743107 20.517077 5.191107 -4.969126 -10.756139 -12.467597 -10.229393 -7.925404 0.905656 -4.136040 -12.706922 1.307029 8.106660 3.569655 -2.730384 9.533633 -0.223278 7.369106 1.964373 -3.992009 1.471797 -10.894183 6.778212 -10.135484 -6.226736 7.553270 8.748614 8.863492 1.023521 -2.461614 3.105047 -6.291297 -10.330013 3.964740 2.016793 5.742898 14.212677 11.844760 28.109053 -9.487691 -1.531346 -0.404103 -2.822292 -2.789143 0.429793 -9.611354 1.576775 3.294223 -0.408035 19.989693 0.835634 -6.891769 7.086617 1.259513 2.767307 -11.849048 9.458900 -6.265260 5.214706 -2.035472 -5.394138 -10.197220 -2.979668 -11.623823 -8.534445 17.485584 -13.721310 -19.236809 8.082495 -0.087389 11.823522 -21.003594 13.025142 -5.817935 14.181121 -3.207960 -4.907095 0.556671 1.515874 -2.465713 10.646268 3.686915 -7.456822 5.113490 7.160222 2.704293 6.363164 0.923673 6.210848 -2.576880 3.376583 -6.103256 6.391249 -0.992307 -3.917887 -6.358040 -2.730932 2.169948 7.977079 -0.686093 -5.653459 6.845251 -2.758597 -0.040107 12.579146 1.116270 -5.469245 1.522155 -1.692452 11.473401 -10.153074 -8.275208 -3.112698 5.846738 4.181570 2.386605 -18.229428 -7.475678 -11.922176 -16.620059 -6.051234 5.174627 4.001262 5.307508 -3.086307 -12.684393 -8.710697 18.781927 2.036977 14.518571 8.353502 4.293365 13.701983 6.936109 4.302849 -4.589102 -1.977703 1.154936 -4.334444 -2.367787 -7.538588 5.772897 -12.449383 11.716306 10.725019 -5.093698 9.162329 0.304213 2.874381 -16.117056 13.905977 6.218959 -15.883989 0.797098 11.958420 10.000809 -13.630605 -9.748817 -PE-benchmarks/longest-bitonic-subsequence.cpp__main = 0.161997 -0.576514 1.368491 0.921493 -0.348870 -0.007296 0.410149 -0.215148 0.348950 -0.386550 -0.444061 0.453193 -0.680774 0.238339 -0.520523 0.357674 -1.184146 -0.626392 -0.045182 -0.213792 -0.088340 -0.206324 0.428750 0.294048 0.726960 0.786717 -0.380596 -0.455324 -0.733187 -0.087988 0.507470 -0.281405 0.491809 0.554615 0.039547 -1.403087 0.473118 0.510549 -0.319615 -0.839658 0.608292 -0.470856 -0.018951 -0.744640 -0.218572 0.122679 0.347566 0.845096 0.320993 0.296195 -0.439915 0.015951 0.285567 1.197301 -0.248364 0.338480 0.696637 -0.072784 -0.068910 -0.236319 0.238139 -0.175940 0.168161 0.195469 -0.112533 -0.670702 -0.375018 -0.789271 -0.412382 0.391474 0.062784 0.343275 -0.660130 -0.141286 -0.678760 -0.020462 -0.738046 0.931057 0.993442 -0.908194 0.634819 0.060806 0.277190 -0.053080 -0.044524 0.347868 -0.007288 0.316367 0.036465 -0.203823 -0.792654 -0.194656 0.108605 -0.458136 -0.254375 -1.346255 0.583391 -0.907005 -0.707396 0.128124 0.332688 -0.414679 0.338443 0.152177 0.009916 0.624577 -0.432103 -0.400254 0.079497 -0.057538 0.178306 -0.076656 0.110163 0.351107 -0.241961 -0.521239 -0.987170 0.361990 0.037957 -0.287844 0.362356 0.490598 -0.153453 0.221841 -0.020746 0.201519 -0.299286 1.046814 0.273594 0.124374 0.200666 0.140612 0.031509 0.260483 0.613912 0.966024 -0.616914 -0.018913 -0.214302 0.185987 -0.227955 -0.502474 0.022165 0.310229 0.198653 -0.725805 -0.676898 -0.571875 -0.493477 -0.852648 0.019986 -0.424846 -0.116256 0.685882 0.519207 0.503725 0.498884 1.047847 -0.556528 0.158638 0.052402 -0.192701 0.354298 0.400482 0.452679 -0.358949 -0.392443 0.352686 -0.048838 0.397119 -0.003820 0.131740 0.247367 -0.802470 -0.117800 0.422875 0.546827 -0.210869 0.574518 0.558140 -0.344768 -0.332938 -0.146077 0.436723 -0.290333 -0.226497 0.325758 -0.770854 0.568281 0.048704 0.047611 0.427146 0.102795 -0.281868 0.521704 -0.228450 0.053534 -0.359767 -0.041704 -0.343782 -0.293491 -0.577494 0.474418 -0.220061 -0.321319 -0.391155 -0.435070 0.925372 -0.770334 -0.286665 0.276195 0.068843 0.516635 -0.895090 0.783348 -0.480830 0.782205 0.216982 -0.143166 0.170823 -0.435790 -0.547367 -0.202668 0.279652 -0.046653 0.073238 0.600583 0.483402 -0.149708 0.095503 0.716082 -0.215362 0.714678 -0.158014 0.259426 -0.256243 -0.496748 0.248246 -0.069459 -0.193738 -0.145866 0.309390 1.156829 0.181225 0.789398 0.907204 0.266285 0.844051 -0.489582 0.117887 -0.216851 0.792500 -0.367101 -0.317482 -0.001025 0.578016 -0.131273 0.396081 -0.934391 -1.458652 -0.991030 -0.812867 0.005398 -0.698021 0.268488 -0.297521 -0.064864 -0.802613 -0.578550 0.029154 -0.250534 0.576063 0.607166 -0.012366 0.639703 0.508241 -0.569582 -0.139816 0.490183 0.752747 0.192768 0.117026 -0.878729 0.480472 -0.705113 -0.068043 1.226397 -0.528056 0.248177 -0.234066 0.993159 -0.575824 1.159226 0.299007 -0.962072 0.513439 0.673383 0.468626 0.480365 -0.496805 -PE-benchmarks/longest-increasing-subsequence.cpp___lis(int*, int, int*) = -2.160309 -3.859698 6.012576 4.185467 0.860202 1.540427 2.270905 -0.907711 1.516270 2.922614 -1.429142 3.696808 -3.484638 -0.650609 0.392980 0.927815 -2.990486 -3.741902 0.172398 -0.982198 -1.333999 -2.331995 -1.174584 3.808572 2.800596 -0.715245 -2.472995 -0.414874 -5.828771 -4.609869 -1.975990 -0.499353 2.482605 -1.584507 2.319562 -6.093314 2.750762 4.239179 0.103475 -4.632179 1.586490 -1.961523 0.424167 0.191035 -0.706207 1.920617 3.316626 0.742049 1.529045 1.550184 0.589606 -1.241162 1.117009 5.001265 0.633643 3.202638 3.681191 -1.693823 0.119696 -0.616100 0.538525 -3.342807 1.971457 0.747823 -2.006097 -1.469804 0.755656 -0.456282 -2.166857 1.761329 1.825247 -2.326137 -2.083575 -2.034460 -3.601202 -1.295315 3.203994 1.915195 5.207488 -2.276077 4.944530 1.713165 2.793396 0.515150 2.645379 -0.221120 3.313056 0.669569 -2.227274 -0.904247 -4.125613 -1.776150 -1.181584 3.437182 -1.323320 -0.304134 1.735182 -4.462157 -5.134940 1.987756 -0.295914 -1.886623 -3.534419 0.738807 2.241199 2.306830 -0.433691 -3.587365 -2.458141 1.669876 -2.424118 -1.093620 0.152270 -1.188182 -1.272711 -0.134526 -4.207007 0.890871 2.430139 -1.952871 -2.381095 3.842924 -1.890380 3.619556 0.329833 1.612196 0.033550 2.189254 2.362893 0.863801 0.373468 -2.553457 -4.636211 -0.993670 0.305966 0.939522 -2.475421 -0.440300 0.389177 1.380437 -0.288577 2.045193 -1.449237 5.452446 2.418151 -2.228673 -3.303302 -3.407761 -1.924867 -2.343090 0.858633 -1.537924 -1.967199 0.381897 2.539378 0.568107 0.003211 4.575842 -1.362003 2.365476 0.700707 -1.229253 0.985435 -1.979133 2.283862 -2.884166 -1.983259 2.190218 2.949019 1.923299 -0.029424 -0.437953 1.219240 -2.579537 -3.028539 1.047021 0.591312 1.456901 3.815610 2.930575 6.916475 -3.220943 -0.559762 0.528881 -0.546565 -0.800207 0.279395 -3.521934 1.434514 0.642992 0.359590 5.415547 0.289886 -2.898075 2.503651 0.285155 0.687819 -3.304240 2.483073 -2.326721 1.087150 -0.899137 -1.859635 -2.686523 -1.370235 -3.035714 -1.527498 5.182033 -1.508696 -6.047321 1.951142 -0.893301 3.235425 -7.202004 4.355078 -2.037196 3.303318 -1.159757 -0.899999 0.049024 0.691553 -0.900686 1.781001 1.348470 -1.681192 2.275266 2.926253 1.117366 1.264674 0.438394 1.990017 -0.050626 1.370772 -1.282297 1.699168 -0.791815 -0.927400 -1.273663 -0.788281 1.103947 2.141727 -0.701710 -0.378945 2.459371 -0.724641 1.477116 3.632082 1.285565 -1.818779 0.990454 -0.563150 4.259489 -2.511728 -2.150913 -1.022759 1.613035 0.587369 1.652830 -5.320269 -3.418551 -1.962296 -6.278217 -1.294862 1.003455 1.224226 0.936337 -0.587914 -4.509281 -2.305238 3.605477 0.762706 5.221358 2.335178 0.805247 3.824585 2.163177 -0.042486 -1.599065 -0.308053 0.343890 -1.371441 -1.373700 -1.998434 1.540077 -3.834836 3.011414 3.469839 -1.935954 1.924075 -0.978690 1.343427 -4.494700 4.963211 2.013963 -4.121352 1.067125 2.487210 4.071474 -3.675122 -2.867093 -PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -0.317045 -0.573096 1.119200 0.750362 -0.002540 0.088613 0.628528 -0.187066 0.381487 0.161352 -0.194061 0.389702 -0.769219 0.116578 -0.366783 0.349951 -0.662993 -0.634295 -0.023110 -0.314715 -0.112861 -0.302699 0.366078 0.193917 0.661457 0.065247 -0.361687 -0.593111 -0.970027 -0.380050 0.268482 -0.222794 0.503076 -0.081513 -0.148997 -1.488878 0.409191 0.623294 -0.288242 -0.723621 0.621249 -0.490159 0.151692 -0.272117 -0.141114 0.084463 0.356063 0.243247 0.408512 0.308745 0.126879 0.009147 0.232183 1.282371 -0.404196 0.427989 0.467145 -0.121542 -0.230140 -0.041264 0.110725 -0.257519 0.327898 0.136152 -0.211386 -0.522494 -0.226652 -0.488297 -0.592262 0.277700 -0.042837 0.042925 -0.478917 -0.086185 -0.556502 -0.222201 -0.278967 0.509193 0.892471 -0.666384 0.758807 0.041510 0.169115 -0.042268 0.084272 0.232883 0.029652 0.136027 -0.071513 -0.299193 -0.534507 0.091679 -0.058796 0.250227 -0.181779 -0.799967 0.591399 -0.340075 -0.769703 0.170817 0.172985 -0.323107 -0.272843 0.121869 -0.016195 0.615311 -0.472028 -0.624008 -0.321833 0.086822 0.130637 -0.139373 0.065263 -0.189206 -0.327905 -0.535397 -0.776665 0.195673 0.031813 -0.400807 -0.302989 0.556737 -0.308834 0.332490 0.099085 0.403050 -0.270408 0.764379 0.195620 0.233636 0.201885 -0.061205 -0.722293 -0.232836 0.442529 0.946316 -0.487544 0.029159 -0.322564 0.085845 -0.210950 -0.144632 0.098790 0.557790 0.557202 -0.595970 -0.471782 -0.352542 -0.058149 -0.765150 0.085163 -0.383134 0.059170 0.345875 0.468897 0.241403 0.371306 1.240852 -0.406160 0.330704 0.080672 -0.437315 0.417012 0.087415 0.493193 -0.404660 -0.448125 0.192506 0.260223 0.352807 -0.066795 0.232146 0.132735 -0.701801 -0.197535 0.104934 0.321041 -0.221898 0.530889 0.507534 0.517366 -0.642458 -0.030365 0.347771 -0.283820 -0.064179 0.147365 -0.751000 0.349502 0.153867 -0.280280 0.540927 0.107145 -0.485232 0.506139 -0.286897 0.115458 -0.475621 0.216480 -0.429494 -0.202337 -0.441382 -0.082134 -0.235216 -0.374296 -0.333703 -0.254841 0.838314 -0.386372 -0.487888 0.222035 0.113356 0.241492 -1.145458 1.167961 -0.461609 0.534297 -0.203623 -0.103429 0.019870 0.339636 -0.337267 -0.031374 0.225057 -0.233926 0.383805 0.891312 0.383810 0.028618 0.001351 0.693731 -0.066247 0.498686 -0.170838 0.416716 -0.191017 -0.483417 0.159309 -0.124834 -0.019245 0.017447 0.158199 0.788852 0.401549 0.204309 0.587381 0.500232 0.753478 -0.329697 0.295485 -0.141541 0.892533 -0.247104 -0.255626 0.003643 0.479320 -0.034584 0.405914 -0.891054 -1.126012 -0.355928 -0.968530 0.183850 -0.164027 0.163516 -0.138934 0.010498 -0.958609 -0.470351 0.072308 -0.227346 0.729322 0.430387 0.125942 0.586961 0.488168 -0.386887 -0.135552 0.206489 0.452696 0.060290 -0.174818 -0.442620 0.316245 -0.751297 0.133375 0.744827 -0.334200 0.208351 -0.019493 0.604997 -0.619955 1.076212 0.245074 -0.542028 0.718209 0.600104 0.757073 -0.008136 -0.371917 -PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.161997 -0.576514 1.368491 0.921493 -0.348870 -0.007296 0.410149 -0.215148 0.348950 -0.386550 -0.444061 0.453193 -0.680774 0.238339 -0.520523 0.357674 -1.184146 -0.626392 -0.045182 -0.213792 -0.088340 -0.206324 0.428750 0.294048 0.726960 0.786717 -0.380596 -0.455324 -0.733187 -0.087988 0.507470 -0.281405 0.491809 0.554615 0.039547 -1.403087 0.473118 0.510549 -0.319615 -0.839658 0.608292 -0.470856 -0.018951 -0.744640 -0.218572 0.122679 0.347566 0.845096 0.320993 0.296195 -0.439915 0.015951 0.285567 1.197301 -0.248364 0.338480 0.696637 -0.072784 -0.068910 -0.236319 0.238139 -0.175940 0.168161 0.195469 -0.112533 -0.670702 -0.375018 -0.789271 -0.412382 0.391474 0.062784 0.343275 -0.660130 -0.141286 -0.678760 -0.020462 -0.738046 0.931057 0.993442 -0.908194 0.634819 0.060806 0.277190 -0.053080 -0.044524 0.347868 -0.007288 0.316367 0.036465 -0.203823 -0.792654 -0.194656 0.108605 -0.458136 -0.254375 -1.346255 0.583391 -0.907005 -0.707396 0.128124 0.332688 -0.414679 0.338443 0.152177 0.009916 0.624577 -0.432103 -0.400254 0.079497 -0.057538 0.178306 -0.076656 0.110163 0.351107 -0.241961 -0.521239 -0.987170 0.361990 0.037957 -0.287844 0.362356 0.490598 -0.153453 0.221841 -0.020746 0.201519 -0.299286 1.046814 0.273594 0.124374 0.200666 0.140612 0.031509 0.260483 0.613912 0.966024 -0.616914 -0.018913 -0.214302 0.185987 -0.227955 -0.502474 0.022165 0.310229 0.198653 -0.725805 -0.676898 -0.571875 -0.493477 -0.852648 0.019986 -0.424846 -0.116256 0.685882 0.519207 0.503725 0.498884 1.047847 -0.556528 0.158638 0.052402 -0.192701 0.354298 0.400482 0.452679 -0.358949 -0.392443 0.352686 -0.048838 0.397119 -0.003820 0.131740 0.247367 -0.802470 -0.117800 0.422875 0.546827 -0.210869 0.574518 0.558140 -0.344768 -0.332938 -0.146077 0.436723 -0.290333 -0.226497 0.325758 -0.770854 0.568281 0.048704 0.047611 0.427146 0.102795 -0.281868 0.521704 -0.228450 0.053534 -0.359767 -0.041704 -0.343782 -0.293491 -0.577494 0.474418 -0.220061 -0.321319 -0.391155 -0.435070 0.925372 -0.770334 -0.286665 0.276195 0.068843 0.516635 -0.895090 0.783348 -0.480830 0.782205 0.216982 -0.143166 0.170823 -0.435790 -0.547367 -0.202668 0.279652 -0.046653 0.073238 0.600583 0.483402 -0.149708 0.095503 0.716082 -0.215362 0.714678 -0.158014 0.259426 -0.256243 -0.496748 0.248246 -0.069459 -0.193738 -0.145866 0.309390 1.156829 0.181225 0.789398 0.907204 0.266285 0.844051 -0.489582 0.117887 -0.216851 0.792500 -0.367101 -0.317482 -0.001025 0.578016 -0.131273 0.396081 -0.934391 -1.458652 -0.991030 -0.812867 0.005398 -0.698021 0.268488 -0.297521 -0.064864 -0.802613 -0.578550 0.029154 -0.250534 0.576063 0.607166 -0.012366 0.639703 0.508241 -0.569582 -0.139816 0.490183 0.752747 0.192768 0.117026 -0.878729 0.480472 -0.705113 -0.068043 1.226397 -0.528056 0.248177 -0.234066 0.993159 -0.575824 1.159226 0.299007 -0.962072 0.513439 0.673383 0.468626 0.480365 -0.496805 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -1.512318 -4.317980 6.231691 4.679276 -0.395039 1.860947 2.581930 -0.839893 0.250676 2.527694 -0.906028 3.717506 -3.845328 -1.098375 -0.135760 0.802314 -3.392845 -2.804079 -0.234988 -1.244120 -1.288238 -1.546521 -1.783629 5.016169 3.106297 0.362504 -1.815388 -1.025572 -5.261750 -3.717755 -2.339181 0.033407 2.574393 -0.172715 2.684275 -5.667219 2.481913 4.957607 -0.125419 -4.016847 1.617689 -1.584689 0.294495 -0.506089 -2.176227 1.368736 2.896383 0.874894 0.919198 1.215005 0.157369 -0.985877 3.460074 5.836204 1.620398 3.655899 4.067408 -1.279709 1.431810 -1.000152 0.505371 -3.024065 1.419228 -0.652016 -0.962678 -1.577754 -0.549843 -0.741732 -0.918895 1.078210 1.936503 -2.222101 -2.609961 -2.229521 -4.270467 -1.707415 -1.281503 2.269009 4.573183 -3.578612 4.965892 2.470301 1.713942 0.720426 2.998354 0.246882 2.737279 0.877346 -1.248293 0.904320 -2.954921 -1.257276 -0.142214 1.820680 -2.739858 -3.579856 2.389738 -4.841263 -5.720229 2.827868 -0.047484 -2.907952 -0.966002 -0.400781 0.662159 1.624958 -1.816875 -3.449147 -1.998590 1.898942 -1.286276 -1.229878 0.167527 0.498814 0.145252 0.058401 -4.193833 1.935965 2.584791 -1.576867 -1.169922 4.080009 0.253456 3.922420 0.189135 1.146549 -0.307132 2.785433 2.522746 0.838594 -1.279488 -1.241733 -3.010410 -0.547657 1.048369 -0.367343 -2.293869 -0.830362 0.797626 2.037618 1.063798 3.129891 -0.152582 5.567770 0.640338 -1.668192 -2.664621 -3.950118 -3.516700 -2.251782 0.678373 -0.962192 -2.650888 1.570704 2.394881 0.201279 -0.338242 2.238645 -0.209173 1.411391 0.507147 -1.131548 0.621484 -1.598745 2.024368 -2.585008 -2.205520 2.364749 2.591004 3.465704 -0.114823 0.327109 1.185046 -1.306769 -2.047038 0.168653 0.539016 -0.131777 4.841941 3.623375 6.489968 -1.640957 -0.615875 -0.023992 -1.263563 -0.314926 0.250587 -3.469539 1.287157 0.683701 -1.347087 5.052232 -0.016697 -1.670587 3.429180 -0.545448 0.482246 -3.501651 2.646771 -2.283568 0.034251 -1.575118 -0.430615 -2.482025 -1.613601 -3.551799 -1.976497 5.504668 -4.657822 -3.107618 1.377294 0.823353 2.157444 -5.161034 5.936550 -1.638153 3.249503 -0.420688 -2.396438 0.795844 0.907909 -0.936764 0.602026 1.348093 -2.581923 1.070273 2.251815 0.971261 0.629294 0.625818 2.269506 -0.744207 1.629413 -2.198751 2.062749 -0.518494 -1.358562 -1.355733 -0.715041 0.727170 1.807288 -0.084283 0.422443 1.523739 0.104089 0.128246 3.027685 1.234454 -1.704102 0.327634 -0.506233 3.700130 -3.175780 -1.898510 -1.232035 1.702435 1.121120 1.742795 -5.689959 -2.819325 -3.295441 -3.054166 -1.486693 1.114831 1.531800 1.182256 -1.086598 -4.381015 -3.595915 4.543500 -0.353689 0.628334 2.944982 1.176630 4.460951 1.983250 1.545573 -0.989121 0.197170 1.235358 -0.190964 -0.517823 -1.916708 1.745093 -4.074888 2.951375 3.696317 -1.546738 2.820855 -0.841537 2.238949 -4.733448 4.855472 1.451838 -5.042573 0.794591 5.183691 2.431956 -3.814621 -2.745121 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.088892 -0.277751 0.609903 0.475732 -0.241089 0.003452 0.109622 -0.101494 0.181856 -0.520249 -0.175263 0.096462 -0.430382 0.185502 -0.179341 -0.005018 -0.701463 -0.370949 -0.152836 -0.061880 -0.045165 -0.180568 0.231997 0.222984 0.229375 0.616589 -0.252487 -0.080168 -0.453950 0.428675 0.533121 -0.069436 0.300888 0.724085 0.081851 -0.753957 0.144747 0.201876 -0.137740 -0.408759 0.238070 -0.364503 0.019235 -0.639174 -0.122705 0.057742 0.021317 0.414246 0.131263 -0.092088 -0.403259 0.001158 -0.167688 0.459060 -0.204658 0.102469 0.352324 0.021952 0.019448 -0.203070 0.099582 0.073138 0.109471 0.210069 -0.252153 -0.312020 -0.138227 -0.601210 -0.273266 0.341143 0.112462 0.359310 -0.370817 -0.131381 -0.428058 0.018814 -0.186878 0.589724 0.497037 -0.530694 0.216738 -0.018247 0.214322 0.010688 0.061201 0.200772 0.118557 0.130543 0.048286 -0.016379 -0.737563 -0.142645 0.011546 -0.356263 -0.104323 -0.541306 0.194327 -0.553869 -0.297111 -0.023551 0.120051 -0.139848 0.096048 0.173102 0.010612 0.311767 -0.123958 -0.178660 0.073866 0.077955 0.097945 0.023201 0.079691 0.370240 -0.165306 -0.604478 -0.541703 0.203274 -0.022439 -0.097201 0.340013 0.323987 -0.347866 0.007119 -0.001253 -0.062432 -0.245532 0.671514 0.074413 -0.113902 0.174072 -0.137923 0.132447 0.022431 0.276685 0.984184 -0.323634 -0.109483 -0.101922 0.034828 -0.225774 -0.510661 0.132856 -0.055972 -0.025200 -0.466169 -0.338845 -0.333242 -0.294107 -0.584268 -0.094409 -0.230663 0.104843 0.548484 0.283862 0.567959 0.298734 0.714509 -0.325045 0.123599 0.008670 -0.149459 0.149082 0.453264 0.173602 -0.138465 -0.278708 0.206239 -0.300184 0.227334 0.085588 0.014128 0.024173 -0.436695 -0.185022 0.282498 0.329243 0.022046 0.324061 0.338464 -0.655749 -0.314241 0.071860 0.266692 -0.092221 -0.127356 0.165074 -0.311488 0.345478 0.016657 -0.126243 0.144202 -0.028871 -0.168981 0.151118 -0.067179 0.135657 -0.211813 -0.156223 -0.114840 -0.083936 -0.569181 0.326473 -0.083099 -0.227944 -0.157840 -0.264321 0.479700 -0.300847 -0.237816 0.191955 0.159127 0.443897 -0.454638 0.005217 -0.188504 0.605488 0.150817 -0.046537 0.087644 -0.425454 -0.295075 -0.110894 0.135251 -0.065727 -0.150940 0.252947 0.283043 -0.095808 0.071007 0.343564 0.024467 0.345621 -0.160615 0.113143 -0.114748 -0.232949 0.300799 -0.084511 -0.016656 -0.061938 0.177006 0.792620 0.256584 0.695839 0.603205 0.120904 0.402962 -0.222427 -0.186545 -0.062159 0.313417 -0.162135 -0.109743 -0.043812 0.348231 -0.137380 0.066951 -0.378101 -0.935109 -0.449438 -0.500304 0.022662 -0.486245 0.020125 -0.030904 -0.030072 -0.373004 -0.222778 -0.260470 -0.212831 0.686844 0.182187 -0.082019 0.336775 0.393748 -0.560012 -0.085745 0.594481 0.474123 0.024519 0.229425 -0.725630 0.386655 -0.288621 -0.070986 0.749367 -0.342895 0.206437 -0.181061 0.786328 -0.233771 0.736715 0.195306 -0.601278 0.231163 0.236383 0.209377 0.631316 -0.257090 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__kthSmallest(int*, int, int, int) = -3.146864 -4.533410 5.996298 3.722174 0.811709 1.855697 2.649878 0.017326 0.757109 2.346608 -0.972548 4.603943 -3.532798 -1.808094 -0.184976 -0.488698 -2.480363 -3.779358 0.126570 -0.684363 -1.048381 -2.034577 -2.711231 5.486384 2.592984 -1.417609 -2.433298 -0.215835 -7.055604 -4.297458 -3.315710 0.102965 2.425871 -3.898089 3.101979 -6.779643 2.207754 5.426283 0.456809 -5.313802 1.571637 -1.805807 0.915244 0.184709 -2.167298 1.584141 3.988571 -0.120737 0.464785 1.065588 -0.570094 -0.843277 1.450821 6.025717 2.101157 3.582937 4.866125 -1.447996 0.568403 -1.256461 0.411389 -4.281187 1.572974 -0.853180 -2.112744 -0.801005 0.701355 0.186913 -1.407552 0.762344 2.173207 -2.893349 -1.496887 -2.331098 -6.391874 -1.814731 5.677983 1.391831 4.811789 -2.810672 5.283315 2.045344 2.973850 1.976067 3.253551 0.032746 2.822648 0.724299 -1.941389 0.079342 -4.826478 -1.023514 -1.650885 3.257753 -1.994417 -2.303520 2.170506 -6.603873 -5.562623 2.650402 -0.870606 -2.586308 -3.251609 -0.646786 1.950376 2.699019 -1.174628 -3.454268 -3.117388 2.441863 -2.272199 -0.926499 1.627661 -0.500112 -0.165847 -0.528545 -3.978818 1.789654 3.661118 -1.494520 -2.250747 4.535431 -2.073020 4.935114 0.284250 1.625020 -0.134636 1.975797 3.126419 -0.031686 -1.666499 -3.061870 -4.190122 -2.946978 -0.861775 0.807639 -2.818607 -0.929476 1.035348 1.838050 1.253807 2.768857 -1.490463 5.297070 0.938439 -1.699794 -2.584254 -4.515835 -3.354689 -1.964488 0.214157 -0.330368 -3.006148 1.611802 2.298486 0.177780 -1.089183 3.882588 0.300050 1.543271 0.871911 -2.203121 0.124149 -3.512388 2.004290 -2.688292 -2.181652 2.367515 2.928846 3.848796 -0.032271 -0.087705 1.374277 -1.418428 -3.058796 -0.403333 0.945829 1.633693 4.551645 3.610890 5.499056 -3.152447 -1.466231 -0.638251 -1.117908 -0.404822 -0.363714 -3.059332 0.638443 1.023612 -0.655319 6.042720 0.178695 -2.727033 3.754956 0.416046 0.673366 -3.523649 2.709057 -2.589365 0.869677 -0.884981 -2.338668 -3.459684 -0.967950 -4.848372 -3.367737 5.480406 -2.980659 -6.186752 1.034979 0.984605 3.907718 -7.435506 3.832498 -1.472760 5.211344 0.020099 -0.598312 0.704810 0.739395 -0.598007 1.320841 1.240704 -2.968786 1.967057 1.856544 0.863585 1.144657 0.349617 1.690567 -0.466718 1.103249 -2.160618 1.052698 -1.283907 -1.951170 -1.201468 -0.477249 1.746806 3.014965 -0.154064 -1.980694 1.676743 -0.579673 0.746477 4.720042 0.466290 -1.608475 -0.175366 -0.516512 4.555879 -2.877734 -2.101903 -2.060441 2.759587 1.719042 1.321450 -5.587568 -2.928072 -3.518853 -6.521828 -0.864483 1.048971 0.203044 1.373699 -0.979604 -4.862310 -2.728239 4.433909 0.827644 4.616820 2.906730 0.933555 4.662053 1.701230 0.392471 -1.441406 0.886002 0.253527 -1.409869 -1.434363 -1.943688 1.104387 -4.347147 3.327341 3.503239 -1.854067 2.778743 -0.407238 0.155004 -4.929739 5.254502 1.994672 -5.445226 -0.046215 3.537017 4.123891 -4.868324 -2.914107 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -1.119843 -1.971092 3.066002 2.073534 -0.199764 0.702815 1.302332 -0.235107 0.085807 0.518257 -0.437683 1.757538 -1.789082 -0.186362 -0.880830 0.173472 -1.691987 -1.558658 -0.369519 -0.800216 -0.573138 -0.537657 -0.530375 2.190858 1.499726 -0.252502 -1.112628 -0.736772 -3.032481 -1.044234 -0.526330 -0.013660 1.250743 -1.123927 0.705207 -3.953809 1.114651 2.464853 -0.208067 -2.021839 1.240948 -1.122702 0.183878 -0.174913 -1.648295 -0.016473 1.179028 0.118313 0.463608 0.286568 0.033637 0.095135 0.953903 4.190962 0.267415 1.734562 1.972850 -0.468358 0.086048 -0.403200 0.164739 -1.236692 0.665826 -0.326703 -0.446384 -0.970073 -0.310214 -0.680087 -0.706723 0.433707 0.471954 -0.890329 -0.768012 -0.807537 -2.457953 -0.944839 1.027520 1.149935 2.253664 -1.906975 2.293980 0.618828 0.472088 0.582726 1.178586 0.336551 0.870710 0.361368 -0.073838 -0.032956 -1.276769 0.432402 -0.130687 1.169402 -1.264719 -2.339829 1.457466 -2.316365 -2.641974 1.113050 -0.068387 -1.493313 -0.427820 -0.242499 0.137450 1.047962 -1.217461 -1.625955 -1.209338 0.885030 -0.042858 -0.594006 0.228195 -0.011821 -0.062939 -0.825976 -2.121618 1.116561 0.908825 -0.638236 -0.811523 1.986876 -0.461560 1.730236 0.185651 0.904796 -0.497915 1.670425 0.956163 -0.001414 -0.989359 -0.558109 -1.299322 -0.878776 0.358680 0.863410 -1.498673 -0.404635 0.027834 0.712400 0.307193 0.763535 -0.094006 2.445006 0.464773 -0.945237 -1.158073 -1.714757 -1.400004 -1.737496 -0.220347 -0.645268 -1.597784 1.150520 1.148997 0.543719 0.108578 2.142324 0.149556 0.786566 0.487707 -1.255564 0.578856 -1.270405 1.076348 -1.182208 -1.283340 0.882879 0.787246 1.874777 -0.276052 0.573280 0.168570 -1.075733 -0.949399 -0.003512 0.743457 0.226129 2.077046 1.724831 2.771744 -1.428380 -0.151383 0.121094 -1.097834 -0.100005 0.068685 -1.679473 0.171890 0.568766 -1.254581 2.415195 0.103567 -1.082200 1.615413 -0.404097 0.438833 -1.753937 1.293456 -1.091691 -0.100347 -0.992545 -0.747499 -0.973081 -0.640483 -1.969486 -1.585464 2.629173 -2.852497 -1.921307 0.603560 0.977473 1.139677 -2.974922 2.770505 -0.938522 2.512050 -0.118574 -0.746189 0.514028 0.589471 -0.660812 0.810227 0.585899 -1.205680 0.673829 1.474554 0.674026 0.443341 0.011157 1.438379 -0.425705 1.036255 -1.112055 1.148329 -0.359844 -1.512248 -0.291313 -0.277958 0.015148 0.730547 0.560004 0.357566 0.772263 0.362232 0.344631 1.966248 1.061509 -0.772686 0.167905 -0.665894 2.059064 -1.048096 -0.915543 -0.445840 1.463450 0.693708 0.730593 -2.764569 -2.125366 -2.329903 -2.411726 0.123777 0.044645 0.274230 0.354369 -0.381786 -2.580607 -1.683776 1.750104 -0.439721 1.944690 1.557545 0.580198 2.109607 1.057186 0.143672 -0.221260 0.735274 1.019932 0.088382 -0.220535 -1.319763 0.901398 -2.035222 1.176248 1.979842 -0.678046 1.440348 0.399390 0.489944 -2.152548 2.751490 0.544037 -2.430158 0.894134 2.181920 1.379238 -1.181259 -1.274012 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.789443 -0.702282 1.656300 1.056237 0.145103 0.254162 0.739228 -0.595295 0.833717 0.605793 -0.070607 0.498032 -0.956896 0.161563 -0.489612 0.657158 -0.834992 -0.902829 -0.138707 -0.854567 -0.392576 -0.487954 0.412780 0.068559 0.835129 -0.453412 -0.666452 -0.653350 -1.357154 -1.105381 0.344643 -0.368280 0.677723 -0.886617 -0.261108 -2.728297 0.898207 0.924508 -0.515890 -0.954813 0.808996 -0.726023 0.264208 -0.073383 -0.328688 0.060340 0.349723 -0.140596 0.776125 0.447163 0.668552 0.280393 0.245834 2.337181 -0.854594 0.735234 0.454371 -0.279277 -0.570415 0.272255 0.115709 -0.252673 0.629891 0.223786 -0.287093 -0.888638 -0.101136 -0.434523 -1.010631 0.496703 -0.130369 -0.416413 -0.462573 -0.125376 -0.918483 -0.578942 0.001990 0.481373 1.321583 -0.816461 1.085096 0.026164 0.241599 0.154284 0.375762 0.223287 0.567524 0.141443 -0.260257 -0.440481 -0.366016 0.340308 -0.019276 0.847961 -0.257308 -1.056403 0.846294 -0.498789 -1.193291 0.414135 0.354577 -0.320849 -1.129260 -0.212842 0.227056 0.699116 -0.753745 -1.095974 -0.744459 0.318897 0.023521 -0.275082 0.102785 -0.888200 -0.385433 -0.549895 -1.105452 0.197393 0.064937 -0.482665 -1.055129 0.983002 -0.501927 0.245474 0.130723 0.843676 -0.528635 0.870621 -0.070003 0.629790 -0.026624 0.016031 -1.637803 -0.628387 0.494151 0.966161 -0.493667 -0.091727 -0.675407 0.135071 -0.581371 0.194022 -0.060865 1.023963 1.167689 -0.588863 -0.612747 -0.334374 0.159231 -1.286837 0.164935 -0.617146 -0.242837 0.270834 0.757524 0.359299 0.646916 1.645988 -0.492651 0.719980 -0.048345 -0.664362 0.890378 -0.411895 0.814425 -0.644712 -0.674018 0.190500 0.551297 0.539785 -0.054591 0.173420 0.120108 -0.994985 -0.377535 0.001375 0.419351 -0.209555 0.700094 0.775158 1.817300 -1.400025 0.133721 0.563533 -0.458136 0.068690 0.022745 -1.034393 0.169628 0.468276 -0.502064 1.073253 0.124769 -0.903149 0.464800 -0.321892 0.305580 -0.739630 0.396365 -0.665316 -0.167800 -0.430227 -0.545558 -0.587925 -0.462107 -0.590501 -0.557594 1.221334 -0.810341 -1.068616 0.808105 -0.007706 0.317763 -1.918996 1.831473 -0.741795 0.791495 -0.695083 -0.020402 -0.183155 0.976755 -0.618023 0.461619 0.338374 -0.563858 0.769017 1.631509 0.569609 0.419995 -0.226341 1.100399 -0.159026 0.684561 -0.348114 0.993906 -0.327159 -0.722068 0.054431 -0.261553 -0.033217 -0.019255 0.357172 0.583910 0.695269 -0.061943 0.525901 1.038181 1.061300 -0.460233 0.734806 -0.188438 1.072666 -0.301556 -0.333920 0.195240 0.635358 -0.042851 0.540352 -1.380254 -1.311099 -0.653255 -1.454703 0.388663 0.288079 0.055711 -0.156151 0.045352 -1.490652 -0.602522 0.623809 -0.333852 1.153462 0.598342 0.381406 0.819872 0.914452 -0.454673 -0.248391 -0.094596 0.203368 0.012596 -0.511319 -0.571258 0.691614 -1.043832 0.368979 0.841238 -0.368074 0.288385 0.336841 0.421650 -0.884005 1.480928 0.342271 -0.397704 1.154885 0.894274 1.436844 -0.291045 -0.511648 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__partition(int*, int, int) = -2.118405 -3.366611 5.650115 3.904633 -0.159511 1.514562 1.750368 -1.274401 0.575325 2.063921 -1.174801 3.110203 -3.163344 -0.434926 -0.717363 0.727106 -3.219656 -2.750037 -0.453107 -1.669792 -1.525886 -1.514499 -1.231406 3.710633 2.648887 -0.145439 -2.112197 -0.414099 -4.745493 -4.127110 -1.754027 -0.253040 2.213254 -1.028929 1.751693 -6.344936 2.532834 4.169532 -0.353972 -3.248493 1.741178 -1.935223 -0.031356 -0.034828 -2.011099 1.061319 2.296128 0.005135 1.363250 0.931500 0.962096 -0.609894 1.957545 5.831823 0.523641 3.182333 3.271319 -1.436917 0.219446 -0.397299 0.300582 -2.517587 1.563737 0.084783 -1.189224 -1.779174 0.316466 -0.655917 -1.220566 1.493702 1.072739 -2.331803 -1.597408 -2.012558 -3.920375 -1.676903 1.439068 1.714011 4.426598 -2.643727 4.300774 1.437255 1.491597 0.607607 2.611182 0.078331 3.198576 0.629982 -1.289239 0.034569 -1.829210 -0.529986 -0.287991 3.535972 -1.962480 -1.897492 2.177142 -5.021997 -4.939362 2.057975 0.112823 -2.338589 -2.143519 -0.147689 0.983493 1.203613 -1.305229 -3.259813 -1.974964 1.689511 -1.383874 -1.003951 -0.133077 -0.584500 -0.328969 0.253366 -3.952608 1.511178 1.825927 -1.405865 -2.006856 3.732449 -0.148600 2.880489 0.326291 1.760580 -0.482042 2.483238 1.204643 0.985407 -1.333500 -0.751454 -3.522458 -1.382553 0.777286 -0.197194 -2.552060 -1.112240 0.316785 1.362361 -0.243551 2.211993 -1.138284 5.222388 1.974791 -1.643883 -2.627473 -2.916647 -2.490360 -3.033810 0.202270 -1.355471 -2.961565 0.814382 2.305703 0.659581 0.184819 3.344113 -0.205181 1.842639 0.567819 -1.625547 1.280400 -2.554520 2.163498 -2.650614 -2.083511 2.042563 2.059695 2.708753 -0.073513 0.196394 0.780412 -2.057501 -2.277256 1.053002 0.780211 0.721628 3.881607 3.259491 7.168460 -2.711849 0.135731 0.461319 -1.198013 -0.377960 0.284360 -3.051014 0.758833 1.080983 -0.847377 4.954653 0.314423 -2.046018 2.154375 -0.264936 0.818234 -3.409368 2.389619 -1.978169 0.893578 -1.244144 -1.504947 -2.207735 -1.274683 -2.831764 -2.190235 4.741993 -4.353848 -4.122088 2.222449 0.654918 2.548034 -5.932434 4.572931 -1.906829 3.834969 -1.153315 -1.481219 0.405767 0.958593 -1.186844 2.161081 1.129176 -2.144094 1.595126 2.698579 1.159616 1.480505 0.015389 2.456219 -0.557247 1.639254 -1.686103 2.140106 -0.236326 -1.624390 -1.274682 -0.775023 0.083965 1.556443 0.425632 -0.064443 1.990237 -0.247745 0.481773 3.567828 1.623985 -1.491193 0.852667 -0.799270 3.349076 -2.501534 -2.172030 -0.501615 1.944294 0.818666 1.229356 -5.198622 -3.123251 -3.638984 -4.207417 -0.846658 1.050766 1.237081 0.947548 -0.672732 -4.112435 -2.639782 4.526367 -0.184701 3.457193 2.407456 1.234499 3.585063 2.158769 0.788714 -1.038894 -0.344526 1.084715 -0.458999 -0.612032 -2.244227 1.907202 -3.472708 2.687644 3.203864 -1.629964 2.306973 0.556320 1.337017 -4.174498 4.399532 1.404805 -3.978624 1.525291 3.704009 2.482637 -2.803190 -2.423474 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 0.285809 -0.780772 2.005291 1.366088 -0.437934 -0.012412 0.640627 -0.377617 0.501371 -0.532038 -0.430106 0.690174 -0.965999 0.275247 -0.648398 0.497661 -1.659007 -0.900235 -0.195057 -0.401240 -0.127127 -0.260940 0.610582 0.500811 1.092073 0.909295 -0.643509 -0.669691 -1.140496 -0.135760 0.681766 -0.334841 0.751040 0.561701 0.130814 -2.035266 0.758261 0.819530 -0.440724 -1.156191 0.880274 -0.582971 -0.000922 -1.100285 -0.401028 0.175822 0.434557 1.032155 0.496880 0.406502 -0.646475 0.190758 0.398722 1.675761 -0.360955 0.479051 0.953831 -0.123088 -0.059769 -0.369420 0.309063 -0.212444 0.234891 0.107391 -0.122438 -1.030024 -0.497697 -1.031063 -0.599609 0.561504 0.244733 0.411171 -0.930763 -0.173612 -1.210967 -0.069518 -0.540013 1.268413 1.341936 -1.263169 0.819582 0.094427 0.318968 0.026560 -0.035805 0.486329 0.009090 0.440035 0.131817 -0.223965 -1.357060 -0.292054 0.114851 -0.621163 -0.413232 -2.068021 0.807336 -1.386714 -1.041660 0.203164 0.543687 -0.662412 0.267130 0.017172 0.036432 0.861458 -0.577398 -0.554696 0.048481 -0.020992 0.259662 -0.113861 0.259732 0.407164 -0.271648 -0.758691 -1.408582 0.604839 0.071017 -0.287115 0.402884 0.723658 -0.366395 0.289942 -0.049261 0.361199 -0.541718 1.301435 0.344429 0.232299 0.253402 0.103763 0.108434 0.040462 0.773033 1.453636 -0.781283 -0.145361 -0.474439 0.323754 -0.315470 -0.512337 0.163770 0.453993 0.156959 -0.994012 -0.909973 -0.782998 -0.756538 -1.155438 0.052384 -0.476599 -0.226913 0.984155 0.709116 0.599545 0.697696 1.349207 -0.602507 0.204038 0.084496 -0.319107 0.558597 0.360331 0.621502 -0.463449 -0.566431 0.513055 -0.123048 0.741586 -0.028368 0.254268 0.387196 -1.050522 -0.253168 0.272447 0.669505 -0.323197 0.808338 0.857896 -0.529757 -0.483102 -0.229160 0.647134 -0.439991 -0.256399 0.426914 -1.019333 0.689134 0.089510 -0.070308 0.754314 0.101431 -0.487245 0.851669 -0.253458 0.093324 -0.502922 -0.064936 -0.490976 -0.364688 -0.856517 0.539395 -0.406468 -0.415071 -0.694154 -0.740551 1.348518 -1.030348 -0.555696 0.453752 0.173864 0.747230 -1.358797 1.099479 -0.604372 1.094280 0.348365 -0.155721 0.297229 -0.566658 -0.943697 -0.293949 0.369967 -0.221824 0.103602 0.836813 0.666364 -0.236238 -0.003471 0.970524 -0.305168 1.138762 -0.346721 0.470326 -0.454100 -0.768220 0.284479 -0.042590 -0.251315 -0.255023 0.449878 1.350842 0.155280 1.185238 1.173577 0.441480 1.235459 -0.692113 0.178553 -0.226920 0.991481 -0.499993 -0.400944 0.073024 0.841931 -0.163958 0.656051 -1.322432 -1.961663 -1.323537 -1.250115 0.086417 -0.863346 0.289351 -0.410761 -0.216821 -1.151615 -0.858928 -0.005608 -0.280681 0.702028 0.952119 -0.050236 0.926229 0.734776 -0.851469 -0.124735 0.738578 0.997473 0.352688 0.005929 -1.268294 0.771999 -0.982964 -0.102865 1.797238 -0.770204 0.463005 -0.503025 1.370080 -0.852876 1.697507 0.342624 -1.373194 0.680541 0.996459 0.754045 0.590928 -0.680544 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::Graph(int) = 0.692269 -1.244844 3.506913 1.851015 -1.308601 0.339172 1.204345 -1.000455 0.625089 -0.291419 -0.729784 0.919786 -1.462076 -0.256313 0.201414 0.078171 -3.328404 -1.166654 -0.409280 -0.927012 -1.015144 -0.829841 0.313475 1.377666 1.733907 1.777576 -0.539013 -0.520772 -1.380910 -0.523509 0.556903 -0.162742 0.750329 2.097356 2.118593 -2.749548 1.353011 0.789002 -0.207828 -1.777241 0.813692 -0.039710 -0.170455 -0.626550 -0.090767 0.635207 1.035652 2.570358 0.928941 0.575710 -0.710720 -1.245153 0.257827 2.651771 0.619888 0.882439 1.619015 -1.141407 0.721717 0.167642 0.286350 -1.252460 -0.083773 0.343150 0.003560 -0.568120 0.492492 -1.876895 -0.383207 1.675851 0.998848 -1.242425 -1.276438 -1.775827 -1.817374 -0.083316 -2.556553 2.866678 2.433365 -2.020001 1.533652 0.323412 1.150349 -0.363046 0.926332 0.044550 1.782717 0.425304 -0.366870 0.304874 -2.082897 -2.181838 -0.036989 -0.618934 -0.503165 -1.462410 1.142455 -2.878669 -1.924225 1.024968 0.706550 -1.055731 -0.230868 0.475206 0.665278 0.471511 -0.660959 -1.183525 -0.665994 0.512592 -1.161013 0.658925 0.342505 1.231534 -0.870247 -0.224100 -1.673493 1.046842 0.656021 -0.200751 -0.029279 1.855185 -0.501380 1.078375 0.149899 0.277860 -0.312222 1.906961 0.804129 0.154971 0.387447 -0.087152 -0.454914 0.857210 0.734928 1.376718 -0.101848 -0.175162 0.277153 0.974010 -1.101004 0.278208 -0.679677 2.125538 0.072799 -1.553088 -2.375685 -0.849851 -1.659726 -1.771094 0.190379 -0.680335 -1.101418 1.155460 1.127030 2.254503 -0.143511 0.791525 -1.108597 0.197453 -0.112662 -0.393390 0.022062 0.311064 0.934918 -1.319310 -0.289164 0.211673 -0.283915 1.153400 0.328663 -0.545137 0.250203 -1.722290 -1.367305 0.729866 1.194909 0.136012 1.001646 2.047473 0.576955 -1.256664 -0.921278 0.998024 -0.375877 -1.227732 0.824636 -1.284944 1.124807 -0.000843 0.462754 1.461247 0.068774 0.090388 0.967294 -0.276093 0.320793 -0.863317 -0.545120 -0.569158 0.244058 -0.811912 0.667614 -1.228900 -0.541454 -1.087454 -1.364153 2.362905 -1.654503 -1.768477 2.148945 -1.058409 2.239339 -1.778525 2.001621 -0.619333 1.306742 0.138954 -0.284774 -0.098495 -0.737060 -0.733417 1.071771 -0.209418 -0.074937 -0.111710 1.446705 0.636286 0.449977 -0.001416 1.515626 -1.128552 1.149202 -0.483981 1.046440 -0.667333 -0.519872 -0.363624 -0.018678 -0.306711 0.177432 0.321065 1.442703 0.152585 1.283789 1.283389 0.667835 0.749309 -1.060993 0.140150 -0.062005 1.322201 -1.371668 -1.344858 0.670460 1.104817 -0.142978 -0.055397 -2.349364 -2.328127 -2.443136 -1.827235 -1.355630 -1.268259 0.962776 -0.090536 -0.608656 -0.936145 -1.080413 0.719789 0.342558 0.112475 1.239070 -0.142830 1.910125 1.640015 -0.398561 0.062099 0.744766 1.300507 -0.151953 0.001329 -2.239289 0.882888 -2.521375 0.643797 2.652918 -0.676938 1.369578 -0.762324 2.598861 -2.596534 1.509466 0.739954 -2.348113 0.239592 2.309937 0.634620 0.719970 -1.392323 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::addEdge(int, int) = -0.142363 -0.811098 2.215602 1.619710 -0.636782 0.228613 0.459885 -0.810670 0.410840 0.109393 -0.373545 0.623246 -1.127401 0.290007 -0.362976 0.743894 -1.859922 -0.705471 -0.384409 -0.879338 -0.505775 -0.381822 0.388413 0.687176 1.153720 0.775113 -0.693760 -0.403430 -0.827671 -1.048432 0.293489 -0.323767 0.873141 0.686163 0.246690 -2.705831 1.113969 1.017997 -0.516628 -0.855101 0.865750 -0.709616 0.002999 -0.692775 -0.869187 0.246668 0.333599 0.445175 0.846397 0.372809 0.119897 0.024934 0.921110 2.154699 -0.404119 0.801101 0.747055 -0.480291 -0.136825 -0.164039 0.157690 -0.258094 0.471997 0.142335 -0.081827 -1.204235 -0.324332 -0.851116 -0.633141 0.789679 -0.005135 -0.238845 -0.969121 -0.549605 -1.161596 -0.477081 -1.054677 1.233688 1.530773 -1.308845 1.053169 0.207913 -0.007529 0.014155 0.443610 0.307560 0.829903 0.311989 -0.038779 0.124269 -0.157994 -0.344501 0.408076 0.322179 -0.598715 -1.737554 0.804313 -1.618709 -1.468856 0.507362 0.577249 -0.790915 -0.264730 -0.286595 0.051687 0.432220 -0.712610 -1.000635 -0.131038 0.196424 0.144182 -0.238204 -0.225197 0.121154 -0.209555 -0.183194 -1.612949 0.614247 -0.001828 -0.351960 -0.118621 1.076528 0.219659 0.296016 0.083721 0.658435 -0.563526 1.518597 -0.061221 0.662951 -0.270901 0.493337 -0.395845 -0.115593 0.851966 0.394777 -0.716788 -0.496702 -0.468115 0.360122 -0.661907 0.162493 0.077261 1.333545 0.846437 -0.688902 -0.967203 -0.607047 -1.009743 -1.691984 0.131871 -0.683235 -0.650511 0.873349 0.853366 0.497938 0.724476 1.103375 -0.446221 0.350883 -0.056758 -0.487685 0.932676 -0.069266 0.869972 -0.764551 -0.639056 0.636973 0.134059 0.935973 -0.006855 0.233734 0.267095 -0.980965 -0.372222 0.599337 0.567001 -0.193819 1.060462 1.118937 1.678721 -0.572765 0.226054 0.728735 -0.493062 -0.130454 0.389388 -1.111071 0.528167 0.326023 -0.418132 1.137461 0.060872 -0.464493 0.592246 -0.371175 0.295117 -0.987249 0.285008 -0.570900 0.083407 -0.854741 0.042235 -0.508414 -0.586601 -0.614883 -0.641723 1.575706 -1.899247 -0.559972 1.114075 0.117535 0.773879 -1.557942 1.928100 -0.790216 1.218575 -0.410591 -0.636320 0.222031 -0.113480 -0.848235 0.406124 0.379440 -0.373419 0.116558 1.159690 0.700488 0.196309 -0.147515 1.258339 -0.258081 1.208771 -0.468041 1.043533 -0.159539 -0.487643 -0.114357 -0.218327 -0.477574 -0.113817 0.518653 1.068007 0.488099 0.669579 0.633252 0.810598 1.252347 -0.632595 0.536112 -0.355917 0.916611 -0.741864 -0.671008 0.334642 0.914095 -0.094061 0.561641 -1.731443 -1.688449 -1.757496 -0.811455 -0.248276 -0.013599 0.580469 -0.112759 -0.211652 -1.186296 -0.985465 1.203102 -0.429225 0.529994 0.824110 0.261457 1.086866 1.052814 -0.108267 -0.262207 0.069648 0.789926 0.368340 0.118303 -1.284740 1.084975 -1.182063 0.334686 1.573178 -0.764205 0.629014 0.106867 1.262524 -1.219833 1.575339 0.267333 -1.159573 1.084719 1.587109 0.457487 0.165061 -0.736008 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclicUtil(int, bool*, int) = -0.114232 -2.944253 7.343591 5.232115 -1.415374 1.013821 1.459875 -2.491167 2.089783 0.196747 -1.844534 2.563985 -3.907189 0.852894 -0.963195 1.560272 -6.223313 -3.188889 -0.832195 -2.133742 -2.005281 -2.205942 0.609788 2.907870 3.516329 4.064058 -2.596916 -0.439949 -4.105389 -3.524402 0.947570 -0.890703 2.765733 3.462098 2.015230 -7.592368 3.460779 3.619848 -0.883828 -3.898001 2.284935 -2.713751 -0.291991 -2.101219 -0.512735 1.763634 1.778801 3.453864 2.712481 0.887339 -0.642622 -0.718002 1.300891 5.133051 -0.931381 2.651197 3.008781 -1.629177 -0.122503 -0.741170 0.533397 -1.684039 1.774894 1.441986 -1.827606 -3.332395 0.369833 -2.637439 -2.291829 3.358179 1.771390 -0.884075 -3.342843 -2.232049 -3.445588 -0.824195 -1.229376 4.084495 5.703320 -3.222074 3.952856 0.994059 1.716591 -0.362040 2.067377 0.232519 4.048620 0.950011 -1.274571 -0.790463 -4.393216 -2.279310 0.124292 1.371763 -1.535799 -3.425869 1.858644 -6.432805 -5.064222 0.921597 1.221761 -2.406505 -1.783107 1.033257 1.865190 1.513138 -0.644415 -3.343944 -0.541007 0.971766 -1.846152 -0.664572 -0.326353 0.320487 -1.443447 -0.585607 -5.374970 1.644522 0.739618 -1.259165 -0.443200 3.808047 -0.272513 1.618381 0.354912 1.690799 -0.888726 3.988740 0.705550 1.063380 0.761180 -0.010247 -1.158374 0.468865 2.014834 2.104446 -3.061460 -1.818882 -0.749614 1.305867 -2.368009 -0.303201 -1.522386 4.554793 2.707007 -3.395884 -3.795061 -2.698271 -2.668646 -4.493709 0.505090 -2.123599 -2.306534 0.661797 3.000062 2.138904 1.838907 3.933168 -2.528168 1.789298 0.510569 -0.555949 2.428244 0.869191 2.807529 -2.940595 -2.045027 2.289794 0.573274 2.180218 -0.411637 -0.011835 0.904200 -3.684184 -2.509089 2.789007 1.470127 0.925155 3.896718 3.738966 5.153037 -3.229146 0.499900 2.238552 -1.152169 -1.152452 1.693416 -3.748315 2.648948 0.753972 0.741874 4.901492 0.133537 -1.959856 1.861875 0.270504 0.961572 -3.525043 0.867591 -2.113540 0.438414 -2.577271 0.504667 -2.200653 -1.858112 -2.571233 -2.129810 5.436574 -3.716591 -4.524606 3.930032 -1.328184 3.969406 -6.398070 3.327915 -2.596959 2.986666 -1.100054 -1.271061 0.466532 -1.707363 -2.762745 1.707872 1.324765 -1.102477 1.415332 3.340104 2.132916 1.053914 -0.023084 3.291017 -0.497272 3.193480 -1.592744 2.663969 -0.595096 -1.049267 -0.567765 -0.864717 -0.772269 0.567791 0.619455 3.162295 2.535350 2.308048 3.016640 2.657139 3.244391 -2.202148 1.261107 -0.985294 2.916951 -2.558553 -2.634580 0.509658 2.037894 -0.563473 2.097015 -5.861830 -6.116935 -3.624471 -5.448951 -1.247345 -1.070411 2.096015 0.412736 -0.724693 -4.322851 -2.788471 3.295338 0.002855 4.968749 2.484169 0.308257 3.526861 3.446013 -1.505331 -1.096463 0.812309 2.296563 -0.097411 -0.314045 -4.639994 3.520465 -3.346045 2.059136 5.831955 -3.317606 2.113501 -1.946247 5.242212 -4.511998 5.685337 1.610921 -4.786739 2.191487 3.155655 3.400857 0.385548 -2.954825 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -1.004234 -3.050786 5.342906 3.954562 0.116397 1.162705 1.422804 -1.085039 1.535349 2.221016 -1.542187 2.809906 -2.977374 0.134074 0.562100 1.291807 -3.444558 -2.867605 0.141247 -0.853174 -1.650661 -2.064145 -0.538208 2.733270 2.455758 1.762514 -2.047179 -0.218257 -3.825552 -3.872942 -0.842718 -0.696806 2.204383 1.391603 2.109712 -5.110993 2.434891 3.084130 -0.041559 -3.652757 1.144167 -1.571931 0.160958 -0.207468 0.235616 1.927883 2.568600 1.976182 1.648854 1.290561 0.345141 -1.520113 1.245451 3.500195 0.316374 2.446630 2.855942 -1.628620 0.179393 -0.786045 0.612631 -2.495024 1.729974 1.334392 -1.683403 -1.652354 0.665677 -1.033260 -1.963264 2.061566 1.963197 -1.328898 -2.326253 -2.056930 -1.637233 -0.802269 0.336207 2.149908 4.816362 -1.744640 3.994400 1.618743 2.358220 -0.163404 2.087621 -0.237044 3.268831 0.704619 -2.049140 -0.586626 -3.278918 -2.119855 -0.563645 2.673925 -1.014898 -0.254850 1.137478 -3.473197 -4.143749 1.431922 0.086054 -1.274717 -2.443617 1.149433 2.104312 1.548203 -0.140132 -2.920133 -1.455836 0.712089 -2.324540 -0.878637 -0.481055 -0.522391 -1.485709 0.374374 -3.779475 0.545607 1.495641 -1.728948 -1.224366 2.959682 -0.653884 2.577698 0.206707 1.179373 0.152280 2.224708 1.965966 0.823638 0.883234 -1.470964 -2.708754 0.328231 0.896849 0.760082 -2.196959 -1.132702 0.186016 1.067503 -0.824425 1.032730 -1.311320 4.563892 2.889767 -2.174728 -3.193755 -2.725115 -1.594194 -2.392288 0.901248 -1.715262 -1.343833 -0.455470 2.268603 0.623791 0.511220 3.328194 -2.004380 2.107421 0.413961 -0.219972 1.093396 0.159359 2.045263 -2.499283 -1.419328 1.858914 2.212058 1.056680 0.020892 -0.807906 0.984608 -2.413829 -2.358561 2.081919 0.487258 1.084181 3.076982 2.317723 6.724668 -2.291920 -0.194075 0.949875 -0.180908 -1.020627 0.984904 -3.061472 1.938682 0.223945 0.835123 4.277223 0.192947 -2.099426 1.770908 0.410106 0.449293 -2.771250 1.899956 -1.768621 0.898573 -1.093708 -0.322897 -2.184713 -1.198261 -1.986409 -0.557523 4.403644 -1.341393 -4.501849 2.080920 -1.485002 2.793686 -5.441246 3.288489 -1.921049 1.862714 -1.470016 -1.317634 0.057094 -0.454781 -0.910864 1.529342 1.222678 -0.705568 1.483847 2.390247 1.128862 0.933079 0.528414 1.800638 0.114808 1.403610 -0.762160 1.634954 -0.303321 0.000529 -1.134278 -0.747160 0.472341 1.447109 -0.822699 0.636191 2.324625 -0.137887 1.620903 2.166221 1.294269 -1.747480 0.980887 -0.395862 3.325399 -2.262862 -1.933183 -0.526283 1.161372 -0.137257 1.647775 -4.457716 -3.253642 -1.081791 -4.664408 -1.952788 0.965343 1.629348 0.850470 -0.435431 -3.231925 -1.868772 3.297769 0.654062 4.445928 1.703910 0.431331 3.033561 2.049479 -0.194784 -1.654253 -0.436001 0.495788 -0.946902 -0.581391 -2.264611 1.741669 -2.788695 2.369690 3.396600 -2.167233 1.345715 -1.594223 3.024310 -3.724775 4.320824 1.720972 -3.506839 1.059196 1.843375 3.696460 -2.183612 -2.488229 -PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 0.833291 -0.701604 3.162992 1.668096 -1.665842 -0.550343 0.045786 -0.057786 0.914561 -3.293156 -1.527047 0.752099 -1.419372 0.793460 -0.685539 0.006934 -4.464488 -1.857386 0.198636 0.142951 -0.372441 -0.669893 1.166609 1.051270 1.409992 4.376722 -1.272796 0.034261 -0.933905 1.327022 2.352409 -1.153743 1.314735 4.217857 0.886642 -3.399562 0.981040 -0.256486 -0.412894 -1.439508 1.038681 -1.314064 0.083441 -3.667025 -0.490898 0.708270 1.339066 3.564383 1.198534 -0.415294 -3.035121 -1.023329 -1.248670 0.926051 -0.816236 -0.242619 1.184799 -0.849053 -0.166873 -1.482034 0.471256 -0.859928 0.386211 1.438792 -1.604614 -1.523887 0.300276 -2.971344 -1.077283 1.785418 1.522349 2.446580 -1.790248 -0.048601 -1.708916 0.437508 1.575763 2.892640 2.605557 -1.396610 1.035414 -0.172097 1.715155 -0.346623 -0.400295 0.852068 0.907317 0.564646 -0.525463 -0.728629 -4.032424 -1.321422 -0.257041 -1.176646 0.760487 -1.875221 0.033020 -3.540481 -1.048054 -0.805602 0.701620 -0.383190 0.558009 1.253698 1.446528 1.257845 0.207283 -0.459594 1.153874 -1.004321 -1.240552 0.624343 0.532444 1.706811 -1.064649 -1.851953 -2.481656 0.498578 -0.398891 -0.421197 2.350545 0.831365 -1.451704 0.222532 0.152387 0.184669 -0.577031 2.490566 0.931577 -0.945265 1.142284 -0.780400 2.595443 0.160194 1.095294 4.245986 -1.590386 -1.704371 -0.579046 0.254446 -1.567836 -3.607654 0.017223 0.269284 -0.149033 -2.542778 -2.125902 -1.273007 -1.662154 -2.350217 -0.215405 -1.103744 -0.205848 2.048815 1.018345 1.621327 1.566358 2.568982 -1.570970 1.163561 -0.063334 0.140192 1.055549 2.180051 1.229132 -0.755235 -0.001740 0.968626 -1.723864 1.010885 -0.161195 -0.893030 0.675142 -2.512032 -1.383635 1.809572 1.550811 1.134349 0.549962 0.821138 -3.008045 -1.099537 -0.191316 1.674282 0.358397 -1.403501 1.990901 -1.070794 2.198847 -0.270698 0.404735 0.396544 0.208029 -1.274557 0.603067 0.685498 0.319818 -0.868632 -1.262054 -0.061097 0.512055 -1.765427 1.749407 -0.966274 -0.643761 -1.056467 -1.361642 1.959952 -1.400363 -2.125832 1.044405 -0.207258 3.875378 -2.355485 -1.443980 -1.130063 2.478602 0.659417 0.015347 0.584279 -3.712590 -1.279334 -0.063649 0.313200 0.914075 -0.464788 0.111293 1.565858 0.064697 0.563138 1.430530 0.481335 1.973534 0.512782 -0.598384 -0.610475 -0.669048 1.158802 0.150083 -0.775276 0.343845 0.958767 2.811721 1.104305 3.448404 3.854530 0.174345 1.561525 -1.176397 -1.446601 -0.713230 1.599595 -0.619590 -1.107588 -0.057168 1.865272 -0.935311 0.791954 -1.962639 -5.078581 -2.045746 -3.208663 -0.919849 -2.483941 0.603671 -0.170530 0.188327 -1.105385 -0.048068 -0.794860 0.255149 4.799194 0.937540 -1.003365 1.199016 1.337582 -3.008876 -1.669476 2.809300 2.566084 0.259194 1.655947 -4.569766 1.598089 -1.691018 -0.013025 4.112580 -2.677464 -0.172047 -2.368177 4.417540 -1.430915 3.065569 0.981124 -3.516228 0.648530 -0.286250 0.594183 3.527985 -1.329251 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.559354 -1.112255 6.819190 3.704652 -1.380954 0.047994 2.326211 -3.691297 3.060954 -1.405149 -0.385703 0.456192 -3.699805 1.303337 -3.437818 1.789518 -5.247821 -2.978969 -1.943166 -4.166050 -1.450427 -1.519054 3.323599 0.218578 3.552059 0.603390 -2.300098 -2.054698 -3.856418 -2.065849 3.411039 -0.992663 2.110100 -0.642455 -0.758004 -8.582543 3.720794 2.423558 -2.389961 -2.275541 3.843565 -2.558679 -0.423550 -1.851452 -1.482355 -0.222742 -0.201668 2.329804 3.503682 1.098589 1.019756 1.711526 -0.097605 7.543765 -4.095587 1.910225 1.252360 -0.360410 -1.828120 1.268614 -0.260789 0.374290 0.991261 0.872637 -0.849289 -4.007665 0.155763 -3.014645 -3.193540 3.169458 -0.378084 -0.960239 -2.152450 -0.567133 -4.073924 -1.011025 -0.191880 3.374391 4.446855 -3.714946 2.112907 -0.841578 -0.232069 -0.304329 0.020527 0.791533 1.946217 0.411471 0.509629 -2.281502 -3.551152 0.937183 0.187993 -0.022996 -0.978813 -6.391859 3.278660 -4.558407 -4.087887 -0.002262 2.475109 -2.467011 -1.920696 0.053344 0.367677 1.331665 -2.053331 -3.187028 -0.795560 1.400502 0.518611 0.255011 0.546509 -1.410333 -0.966235 -2.705113 -4.889213 2.022339 -1.039281 -0.677593 -1.965741 3.125058 -1.807051 -0.416159 1.163518 3.220792 -2.541241 3.840183 -1.186485 1.666300 0.491352 1.357616 -1.590947 -0.913088 2.309584 4.268942 -1.933494 -0.257214 -2.986829 0.454602 -3.624373 -1.032610 -0.742329 1.942062 1.800914 -3.573781 -2.714045 -0.064914 -0.841786 -5.676562 0.281313 -2.335169 -2.360506 1.375087 2.196890 3.191665 3.025373 5.390624 -1.879563 1.669039 0.380629 -2.160820 3.289637 -0.792748 3.171486 -2.099596 -2.661947 0.531120 -0.954818 2.027242 -0.880286 1.193122 0.084250 -5.040238 -1.313558 0.004435 1.913389 -0.749311 2.149990 3.740640 1.973391 -4.418483 0.885425 3.400062 -2.391082 -0.327407 1.052112 -3.570283 0.952364 1.703567 -0.771380 3.758695 0.506256 -2.064566 1.677678 -0.996866 1.474986 -2.599514 -0.518459 -1.975769 -1.064646 -2.884815 -0.365093 -1.355398 -1.570138 -1.802033 -3.470798 4.016772 -4.096401 -3.464294 4.549205 0.059411 2.384510 -6.027617 4.739966 -2.299012 3.199410 -0.596205 0.752950 -0.319499 0.499384 -3.766198 1.647261 0.271396 -1.197521 2.457607 5.681952 2.346359 1.365054 -1.093640 4.696193 -1.594882 4.217757 -1.902216 3.735101 -1.561536 -3.972896 1.158951 -0.469027 -2.056081 -1.678221 2.581330 4.282399 1.991493 2.585902 3.480773 2.779690 5.327117 -1.477702 2.601096 -0.948847 1.861461 -1.116602 -1.604630 2.418357 2.176552 -1.084064 2.140924 -5.082892 -7.072766 -4.281309 -5.968200 2.150421 -2.992940 0.837788 -1.410230 -0.514485 -4.789053 -2.601293 0.991202 -1.116577 4.310278 2.958147 0.879085 2.652765 4.698513 -3.277458 0.635955 1.684040 2.951800 0.833996 -1.489656 -4.204246 3.498180 -2.830518 0.211195 5.180516 -1.940481 1.788466 -0.864630 2.777071 -3.468423 5.204653 0.643398 -2.067414 4.652301 2.862938 3.309809 3.053184 -1.603618 -PE-benchmarks/detect-cycle-undirected-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/detect-cycle-undirected-graph.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -2.796157 -4.698706 6.154428 4.128948 0.593399 2.402472 1.612906 -0.046842 0.486439 2.798568 -1.366410 4.898261 -3.172048 -1.612712 0.095402 -0.384057 -2.593357 -3.415336 0.290217 -0.593284 -1.417139 -2.026516 -2.909714 6.036073 2.482766 0.050553 -2.394663 -0.007522 -6.873930 -3.925889 -3.298114 0.214407 2.420859 -1.875790 3.485336 -5.174426 1.927569 4.967647 0.747691 -5.197754 1.243448 -1.647281 0.672043 0.745133 -1.661228 1.617256 3.623739 -0.422938 0.586219 0.867717 -0.330002 -1.298741 2.351756 5.561118 2.474878 3.626770 4.544037 -1.839024 1.421828 -1.196271 0.467570 -4.091990 1.564131 -0.272250 -1.896852 -0.941146 0.596285 0.110950 -0.899157 1.209077 1.954201 -3.128842 -1.494089 -2.666355 -4.577054 -1.552191 3.458117 2.192173 4.547865 -2.656918 5.287461 2.055484 3.156015 1.142769 3.608053 -0.218388 3.434681 0.783748 -2.065866 -0.378934 -4.069623 -0.617418 -1.380245 3.199800 -2.339087 0.284864 2.080064 -6.005825 -5.754816 2.840808 -0.747478 -2.395101 -2.322746 0.340070 1.858861 2.045017 -0.437837 -3.290786 -2.622438 2.880779 -2.606838 -1.190040 -0.037617 -0.525562 -0.216468 0.611400 -3.519460 1.834968 3.298548 -1.476146 -2.268227 4.549627 -0.899303 4.539507 0.198355 1.555094 0.410766 1.771674 3.330334 0.118523 -1.155670 -3.089363 -3.895619 -0.323890 -0.466031 -0.837641 -3.535441 -0.574244 1.423364 1.658958 1.415279 2.737065 -1.887068 5.845967 0.747262 -1.981491 -3.032156 -4.482905 -3.281599 -2.085796 -0.223848 -0.859129 -3.208234 1.462756 2.228072 1.098964 -1.161478 2.961045 -0.419723 2.043005 1.360124 -1.424649 -0.021363 -2.308773 1.612351 -3.247950 -2.124773 2.131847 3.000410 2.587513 -0.168882 -0.248739 0.998699 -1.294424 -2.566620 1.328854 0.890411 2.225771 4.987743 3.603969 7.282115 -3.218023 -1.533025 -0.675536 -1.208595 -1.056520 -0.463764 -3.209535 1.020761 0.857750 0.064190 6.204286 -0.014771 -2.020109 3.000222 0.534680 0.904491 -3.506126 3.495054 -2.501701 0.548423 -0.439360 -2.658704 -3.192529 -1.013333 -4.420145 -2.699711 5.727651 -4.079007 -5.558638 1.508404 0.072880 3.020568 -6.661453 3.715226 -1.767607 4.282979 -0.090116 -1.503916 -0.306812 0.415781 -0.481743 1.825550 1.343184 -3.029657 1.960008 2.138041 0.733547 1.398224 0.640606 1.419396 -0.400028 0.971075 -1.846440 1.330379 -0.575941 -1.281014 -1.758109 -0.758638 1.414220 2.924251 -0.942229 -1.526521 2.151468 -0.695225 0.004407 3.991314 0.253809 -1.725371 -0.010720 -1.022823 4.276162 -3.246317 -2.673124 -1.812862 1.806236 1.809639 0.814817 -5.884976 -2.719835 -3.216439 -5.299626 -1.526461 0.333927 0.734470 1.697465 -1.079139 -4.765397 -3.138109 3.986915 0.941476 4.285648 2.375923 0.928309 4.705694 1.759574 1.186621 -1.389577 -0.179172 0.053113 -1.442108 -0.935439 -2.045981 1.289135 -3.615083 3.487484 3.632235 -1.474666 3.016216 0.076321 -0.940115 -5.107594 4.914724 2.280634 -5.533484 -0.274727 2.694708 2.961422 -5.004344 -3.367519 -PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 0.341409 -0.608647 1.686579 1.149985 -0.476949 -0.028786 0.425213 -0.343056 0.430671 -0.646555 -0.388807 0.518923 -0.788908 0.235487 -0.527983 0.359315 -1.511736 -0.726995 -0.205553 -0.333166 -0.091013 -0.209007 0.500156 0.456211 0.879336 0.962289 -0.523702 -0.434458 -0.875051 0.040084 0.648409 -0.277573 0.607418 0.702832 0.200506 -1.581589 0.646590 0.642166 -0.364939 -0.943877 0.692645 -0.503079 -0.003903 -1.069628 -0.353032 0.171429 0.312148 0.959245 0.409304 0.263642 -0.695626 0.144970 0.273359 1.251612 -0.284448 0.351244 0.793525 -0.097164 -0.002697 -0.361972 0.256674 -0.124194 0.150480 0.089315 -0.135605 -0.893020 -0.420402 -0.931947 -0.450380 0.511751 0.224721 0.411222 -0.820093 -0.188598 -1.083459 -0.027408 -0.525085 1.145345 1.098582 -1.090618 0.600679 0.080821 0.279368 0.050063 -0.020995 0.425661 0.058409 0.380833 0.134706 -0.093058 -1.219599 -0.325616 0.139554 -0.709152 -0.350577 -1.786485 0.620469 -1.362408 -0.835226 0.133347 0.489266 -0.556726 0.333102 0.029394 0.036626 0.678680 -0.439766 -0.399780 0.195895 -0.022384 0.225092 -0.046372 0.232945 0.485039 -0.191586 -0.671304 -1.209176 0.553174 0.040282 -0.169620 0.524726 0.608540 -0.309489 0.168364 -0.056311 0.230011 -0.480548 1.165544 0.257508 0.142106 0.152779 0.098063 0.316536 0.101973 0.636106 1.227536 -0.650896 -0.161030 -0.367939 0.268997 -0.311175 -0.536235 0.125801 0.266463 -0.010899 -0.855599 -0.755263 -0.667725 -0.807055 -1.011613 0.019051 -0.369813 -0.228920 0.913707 0.588529 0.622044 0.618537 1.053863 -0.498949 0.070342 0.039471 -0.227630 0.470224 0.404793 0.509401 -0.357228 -0.432706 0.469084 -0.252094 0.644568 0.018358 0.175901 0.326498 -0.882848 -0.173539 0.293288 0.595125 -0.215871 0.692034 0.742005 -0.777909 -0.309242 -0.176447 0.570963 -0.340414 -0.235841 0.399911 -0.792406 0.615896 0.063833 -0.007675 0.566025 0.056817 -0.313688 0.660248 -0.178937 0.105126 -0.415682 -0.166690 -0.365971 -0.276318 -0.786511 0.596631 -0.351921 -0.351081 -0.590466 -0.685306 1.111257 -0.905851 -0.404517 0.422966 0.180590 0.755175 -0.996936 0.683181 -0.492197 1.035466 0.395266 -0.111268 0.293931 -0.714544 -0.826813 -0.290872 0.300082 -0.139562 -0.031450 0.549272 0.587094 -0.239871 0.010460 0.800321 -0.282286 1.012196 -0.306233 0.349318 -0.387231 -0.604360 0.307133 -0.024935 -0.261721 -0.238103 0.413013 1.198859 0.100628 1.174128 1.042201 0.289808 1.018317 -0.584853 0.056386 -0.189317 0.722881 -0.432894 -0.341428 0.081204 0.739257 -0.155029 0.486714 -1.084434 -1.706560 -1.224297 -0.967676 0.031150 -0.852473 0.217690 -0.321757 -0.194447 -0.860130 -0.714847 -0.009239 -0.238459 0.600884 0.760369 -0.092590 0.766888 0.644434 -0.777647 -0.116785 0.746131 0.889970 0.322183 0.114887 -1.220807 0.735310 -0.785250 -0.146661 1.615931 -0.721122 0.398170 -0.481132 1.245655 -0.696897 1.398298 0.276434 -1.233090 0.520825 0.837624 0.532238 0.684534 -0.577839 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -3.198266 -5.799417 9.777787 6.591394 -0.446197 2.493096 2.882946 -1.641943 0.533168 2.377761 -1.982180 5.791656 -5.139434 -0.984749 -1.209032 0.425426 -5.574499 -4.791895 -1.005857 -2.495822 -2.373082 -2.183002 -2.617631 7.108433 4.526883 -0.203731 -3.829604 -0.677280 -8.651891 -5.439606 -3.099430 0.086245 3.760666 -2.363212 3.607877 -10.774645 3.888139 7.273332 -0.265226 -6.057081 3.048081 -3.195880 -0.127684 -0.519115 -3.871924 1.598032 4.053876 0.504646 1.710397 1.255621 0.250314 -0.614722 2.684274 10.139459 1.649540 5.259682 6.231385 -2.278719 0.558155 -1.116993 0.483996 -4.503429 2.192553 -0.558304 -2.142966 -2.885079 0.653250 -1.167051 -1.603860 2.235792 2.654130 -4.066391 -2.465194 -3.638806 -7.424830 -2.548853 4.468226 3.347895 7.059912 -4.854335 6.931408 2.213636 2.729932 1.505306 4.334784 0.159161 4.950764 1.117760 -1.619105 -0.054435 -4.756683 -0.999912 -0.716050 4.856914 -3.656365 -3.983158 3.756072 -9.040403 -8.271893 3.337754 0.204193 -4.472260 -3.075838 -0.349206 1.642747 2.450939 -1.825048 -4.872305 -3.348840 3.345446 -2.357027 -1.572049 0.199564 -0.326703 -0.216584 -0.409236 -6.726021 3.399944 3.694748 -1.706516 -2.789925 6.339913 -1.285228 5.109881 0.407177 2.753497 -0.863516 4.179770 2.603797 0.741347 -2.290415 -2.042644 -4.765166 -2.351564 0.764298 0.696034 -4.538116 -1.783180 0.789304 2.512771 0.184709 3.521329 -1.805313 8.442931 1.994200 -2.905352 -4.541751 -5.588936 -4.836420 -4.551737 -0.164693 -1.770122 -5.286801 2.295454 3.622621 1.710398 -0.234900 5.659477 0.000194 2.947744 1.377182 -2.921962 1.604601 -4.412150 3.283006 -4.401941 -3.544765 3.503274 2.819497 5.053754 -0.264041 0.700082 1.439812 -3.328413 -4.057478 1.258944 1.665393 1.781528 6.752243 5.898251 10.224027 -4.485132 -0.448913 0.301042 -2.473756 -0.900273 0.378317 -4.844439 0.885477 1.847198 -1.446973 8.903416 0.462320 -3.424934 4.115213 -0.076928 1.293640 -5.371368 3.927797 -3.218271 1.342500 -2.103363 -2.555185 -3.912820 -1.712915 -5.703337 -4.740846 8.241126 -7.568817 -7.750595 3.249882 1.398608 4.863895 -10.219549 6.937227 -2.811818 7.130637 -0.862624 -2.135002 0.900337 0.614236 -2.404757 3.678289 1.746496 -3.757772 2.130339 4.167713 1.801633 2.097864 -0.015323 3.763876 -1.196390 3.034935 -3.156090 3.113041 -0.819425 -3.094684 -1.963895 -0.928365 0.219370 2.784467 0.817483 -0.335987 2.820826 0.625976 0.890944 6.148638 2.435531 -2.510923 0.821062 -1.415951 5.487436 -4.248105 -3.702284 -1.105620 3.676667 1.892565 1.796773 -8.764335 -5.514081 -6.680260 -7.962377 -0.877436 0.815638 1.629636 1.525627 -1.728340 -6.990308 -4.749819 6.744839 -0.007953 6.746929 4.432368 1.815235 6.309152 3.409488 0.706114 -1.300658 0.583362 2.128216 -0.692165 -1.048298 -4.282873 3.228470 -5.695152 4.325440 6.235484 -2.700592 4.620338 0.329395 1.925206 -7.123215 7.673510 2.323635 -7.868154 1.598138 6.062706 3.876250 -4.646243 -4.283991 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = 0.365074 -0.865229 2.545385 1.712757 -0.436826 -0.100249 0.814830 -0.615515 0.769717 -0.170046 -0.649411 0.848191 -1.132954 0.578666 -0.995719 1.131605 -2.047039 -1.075317 -0.102895 -0.573397 -0.256197 -0.346726 1.124415 0.148870 1.502352 0.956265 -0.814295 -1.004341 -1.089922 -0.877146 0.799262 -0.645988 0.876987 0.344677 -0.194134 -2.607911 1.139554 0.837686 -0.700764 -1.337762 1.231809 -0.652100 -0.079119 -1.080461 -0.388587 0.189235 0.566406 1.328259 0.854242 0.846701 -0.277937 0.246873 0.813512 2.362307 -0.722258 0.612095 0.971752 -0.187753 -0.295509 -0.250329 0.439501 -0.216236 0.341756 0.390869 0.100856 -1.389403 -0.702605 -1.193145 -0.868449 0.772326 -0.061609 0.488846 -1.208469 -0.043319 -1.000161 -0.032265 -1.260653 1.517793 1.814240 -1.446139 1.047841 0.043159 0.260468 -0.189571 -0.290209 0.575735 -0.071558 0.576629 0.080371 -0.602698 -0.889871 -0.211738 0.278297 -0.524861 -0.364934 -2.533612 1.086478 -1.273120 -1.266163 0.248964 0.788057 -0.722979 0.369078 0.056544 0.091142 1.048677 -0.813421 -0.811099 0.060580 -0.283746 0.411413 -0.220907 0.140852 0.106862 -0.476106 -0.521657 -1.755999 0.494402 -0.155840 -0.570519 0.261840 0.715678 -0.093965 0.251155 -0.035024 0.665958 -0.562346 1.593950 0.328248 0.697888 0.409867 0.595796 -0.138660 0.433590 1.250030 1.262132 -0.941585 0.061607 -0.781682 0.331570 -0.605015 -0.589285 0.022509 0.732771 0.714887 -1.204970 -1.283337 -0.709147 -0.611524 -1.526129 0.235735 -0.844680 -0.303523 0.912781 0.932752 0.465386 1.082794 1.752703 -1.020854 0.377151 0.080400 -0.294468 0.912504 0.327738 0.887194 -0.636874 -0.689776 0.569282 0.181689 0.592267 -0.128534 0.294913 0.506291 -1.477598 -0.099256 0.579746 0.854113 -0.591908 0.791693 0.832765 0.190764 -0.529859 -0.229943 1.020887 -0.487680 -0.340005 0.544022 -1.478358 0.918176 0.091992 0.179954 0.821409 0.258009 -0.681630 0.983475 -0.470520 0.076469 -0.588370 0.013772 -0.627656 -0.503931 -0.821384 0.602048 -0.320141 -0.481821 -0.533228 -0.584010 1.602113 -1.380134 -0.492974 0.697199 -0.130172 0.605620 -1.689823 1.985624 -0.918701 0.991174 0.184755 -0.221847 0.244824 -0.399153 -1.146755 -0.240239 0.497130 0.003346 0.367901 1.374361 0.870023 -0.187798 -0.028481 1.358675 -0.382284 1.446882 -0.152232 0.731138 -0.477170 -0.911296 0.224080 -0.089140 -0.502574 -0.489418 0.551912 1.788446 0.208949 1.063317 1.531444 0.447112 1.816727 -0.928094 0.689017 -0.391788 1.367851 -0.590101 -0.538453 0.279993 0.901867 -0.393749 1.014544 -1.676025 -2.378883 -1.681794 -1.411954 0.053797 -0.938487 0.609291 -0.798072 -0.138641 -1.418228 -1.036561 0.320761 -0.378709 0.633567 1.225574 0.009176 0.999620 0.924291 -0.875315 -0.167998 0.310294 1.125641 0.510461 -0.099535 -1.275619 0.852047 -1.278201 -0.178574 2.000258 -0.897614 0.298234 -0.415049 1.422121 -0.994493 1.962447 0.442642 -1.228760 1.180300 1.155343 1.022265 0.608672 -0.827202 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -1.386177 -2.932964 4.031338 2.896047 0.959366 0.980051 2.435220 -0.223379 1.320939 2.415273 -1.040048 2.505991 -2.752902 -0.067866 0.101641 1.069241 -1.791790 -2.843863 0.658521 -0.329163 -0.766187 -1.863996 -0.150925 2.034453 2.113142 -0.795124 -1.504141 -1.530797 -4.295044 -2.277929 -0.709273 -0.635560 1.864518 -1.148336 0.931204 -4.766269 1.534478 2.586799 -0.042984 -3.563086 1.342016 -1.449769 0.631279 0.352693 0.055713 1.098900 2.588045 1.547974 1.180943 1.531993 0.798940 -1.055948 0.827767 4.246363 -0.056156 2.170815 2.304055 -0.942078 -0.164006 -0.370941 0.527278 -2.350743 1.547976 0.944816 -1.288598 -0.872627 0.044235 -0.638465 -2.131260 1.016952 1.403813 -0.756222 -1.864555 -0.761017 -1.300159 -0.781416 0.743174 1.447954 3.983634 -1.644721 3.790674 1.174418 2.157965 -0.148990 1.363706 0.041039 1.409140 0.425681 -1.676641 -1.147814 -3.317213 -0.753576 -0.922780 1.672522 -0.615895 -1.051138 1.243519 -0.922175 -3.432735 1.300412 -0.352066 -1.001392 -1.821442 0.978748 1.507752 2.231988 -0.895285 -2.794634 -2.081353 0.744231 -1.436089 -0.881630 0.238990 -1.233685 -1.291394 -1.089447 -2.717604 0.092813 1.489481 -1.945802 -1.650609 2.465673 -1.652130 2.735806 0.348259 1.031378 0.199709 1.775850 2.241087 0.481303 1.182529 -2.082993 -3.715276 0.050098 0.625867 1.990829 -1.549021 0.163108 0.025281 0.874385 0.000882 1.004310 -0.160167 3.463181 2.199226 -1.856926 -2.387021 -2.270443 -0.047727 -1.344747 0.922080 -1.349431 -0.279149 -0.127988 1.851177 0.238436 0.261824 3.743602 -1.527209 2.163745 0.445879 -0.681822 0.655242 -0.228126 1.676735 -1.919854 -1.472632 1.119977 2.522496 0.851971 -0.196464 -0.219595 0.796135 -2.061934 -1.689833 0.319995 0.695691 0.407658 2.484462 1.592113 4.800412 -2.297644 -0.622428 0.525723 -0.298877 -0.572882 0.263373 -2.949625 1.437829 0.202148 -0.212596 3.221163 0.244736 -2.333757 2.181784 -0.138780 0.284476 -2.067319 1.673062 -1.709894 -0.072992 -0.776192 -0.712846 -1.600548 -1.087309 -1.753140 -0.284095 3.594284 -0.214026 -3.677251 0.577499 -1.181512 1.443971 -4.996121 4.471161 -1.563667 1.210989 -1.076377 -0.799745 -0.197393 1.337790 -0.340463 0.797983 1.039099 -0.770257 1.901261 2.775453 0.833919 0.558698 0.685161 1.611812 0.275549 0.648473 -0.490772 1.141351 -0.617788 -0.577469 -0.446656 -0.612823 1.103434 1.425248 -0.666903 0.975716 1.929922 -0.776022 1.605565 2.208300 1.108312 -1.323534 0.824860 -0.473693 3.689168 -1.562789 -1.154621 -0.991291 0.849761 0.117802 1.496058 -3.599148 -2.758932 -0.302269 -4.340812 -0.573913 0.618109 0.880289 0.365746 -0.045354 -3.655733 -1.499029 1.342220 0.194021 3.365017 1.721026 0.459526 2.660900 1.464798 -0.422946 -1.102499 -0.106390 0.346181 -1.029835 -1.015556 -0.891644 0.549635 -3.037554 2.075265 2.202981 -1.119040 0.809698 -1.038637 1.671031 -2.921846 3.828145 1.610236 -2.447946 1.119657 1.476162 3.605204 -2.395411 -1.915715 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = -0.064321 -0.504675 1.298743 0.823502 -0.479304 0.068667 0.264168 -0.297742 0.318697 -0.923878 -0.301691 0.326243 -0.742105 0.191835 -0.544838 -0.090827 -1.302424 -0.672352 -0.274238 -0.371996 -0.153937 -0.250715 0.264565 0.543921 0.550304 0.834743 -0.471915 -0.219628 -0.997140 0.490884 0.770490 -0.121827 0.547644 0.708489 0.142932 -1.861715 0.384793 0.557664 -0.276758 -0.764131 0.582097 -0.744375 0.019179 -0.966070 -0.475030 -0.018927 0.123281 0.616020 0.331922 -0.150657 -0.655387 0.144471 -0.249056 1.304628 -0.365703 0.306547 0.630634 -0.103251 -0.155656 -0.242897 0.096662 -0.068102 0.242028 0.136371 -0.447578 -0.688573 -0.103000 -0.930429 -0.457042 0.512030 0.217873 0.266281 -0.474677 -0.221718 -1.094901 -0.147252 0.240081 0.983872 0.869347 -0.949028 0.540328 -0.138295 0.266484 0.108103 0.209838 0.332385 0.340624 0.190081 0.108371 -0.181676 -1.263068 -0.019385 0.013257 -0.337753 -0.269351 -1.192139 0.510312 -1.302179 -0.732931 -0.011764 0.291070 -0.479680 -0.023476 0.106052 0.049119 0.523289 -0.340567 -0.413592 -0.004169 0.282786 0.052841 0.009563 0.164010 0.415382 -0.192228 -1.002870 -1.001571 0.536329 0.061223 -0.063495 0.270713 0.732212 -0.558356 0.067796 0.043545 0.206792 -0.478001 1.114507 -0.007249 -0.201759 0.061017 -0.148699 0.147011 -0.231928 0.373455 1.542721 -0.700454 -0.329347 -0.221415 0.142452 -0.409428 -0.723122 0.042596 0.229862 -0.013444 -0.782659 -0.557851 -0.553994 -0.538484 -1.107789 -0.254328 -0.355452 -0.226075 0.955113 0.525334 0.938100 0.465883 1.209463 -0.355250 0.303215 0.102828 -0.441160 0.431813 0.354111 0.453234 -0.408153 -0.479988 0.342905 -0.501571 0.648695 -0.031102 0.199804 0.068443 -0.836321 -0.420717 0.332759 0.630845 0.161639 0.670503 0.791931 -0.608425 -0.848460 0.068945 0.417654 -0.413629 -0.189477 0.285158 -0.569110 0.385788 0.228122 -0.323368 0.634725 0.011765 -0.396827 0.310627 -0.050028 0.252468 -0.511041 -0.153654 -0.308251 -0.146547 -0.807061 0.187441 -0.318830 -0.376134 -0.636689 -0.876254 0.963768 -0.978607 -0.721091 0.518752 0.298176 0.918756 -1.203840 0.224939 -0.449560 1.206774 0.176315 -0.024879 0.134389 -0.539151 -0.690682 0.132217 0.203727 -0.310840 0.002006 0.652451 0.535641 0.056374 -0.048121 0.745093 -0.135500 0.752816 -0.381628 0.336063 -0.256701 -0.659478 0.390560 -0.121691 -0.194715 -0.032700 0.504606 1.152573 0.430333 1.129426 0.926818 0.570721 0.780188 -0.375551 -0.166944 -0.255895 0.564489 -0.280819 -0.380540 0.055565 0.771733 -0.022319 0.157250 -0.962311 -1.755443 -1.119381 -1.171872 0.285443 -0.839911 0.022956 -0.065001 -0.094793 -0.949097 -0.480872 -0.187750 -0.293946 1.436850 0.494656 -0.004379 0.676489 0.700396 -0.890998 -0.104097 0.974571 0.871462 0.105407 0.209875 -1.326186 0.731184 -0.645404 0.057251 1.411136 -0.591640 0.468394 -0.156004 1.085809 -0.624203 1.291623 0.272136 -1.188522 0.481678 0.557823 0.348918 0.872259 -0.490942 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::Graph(int) = 0.692269 -1.244844 3.506913 1.851015 -1.308601 0.339172 1.204345 -1.000455 0.625089 -0.291419 -0.729784 0.919786 -1.462076 -0.256313 0.201414 0.078171 -3.328404 -1.166654 -0.409280 -0.927012 -1.015144 -0.829841 0.313475 1.377666 1.733907 1.777576 -0.539013 -0.520772 -1.380910 -0.523509 0.556903 -0.162742 0.750329 2.097356 2.118593 -2.749548 1.353011 0.789002 -0.207828 -1.777241 0.813692 -0.039710 -0.170455 -0.626550 -0.090767 0.635207 1.035652 2.570358 0.928941 0.575710 -0.710720 -1.245153 0.257827 2.651771 0.619888 0.882439 1.619015 -1.141407 0.721717 0.167642 0.286350 -1.252460 -0.083773 0.343150 0.003560 -0.568120 0.492492 -1.876895 -0.383207 1.675851 0.998848 -1.242425 -1.276438 -1.775827 -1.817374 -0.083316 -2.556553 2.866678 2.433365 -2.020001 1.533652 0.323412 1.150349 -0.363046 0.926332 0.044550 1.782717 0.425304 -0.366870 0.304874 -2.082897 -2.181838 -0.036989 -0.618934 -0.503165 -1.462410 1.142455 -2.878669 -1.924225 1.024968 0.706550 -1.055731 -0.230868 0.475206 0.665278 0.471511 -0.660959 -1.183525 -0.665994 0.512592 -1.161013 0.658925 0.342505 1.231534 -0.870247 -0.224100 -1.673493 1.046842 0.656021 -0.200751 -0.029279 1.855185 -0.501380 1.078375 0.149899 0.277860 -0.312222 1.906961 0.804129 0.154971 0.387447 -0.087152 -0.454914 0.857210 0.734928 1.376718 -0.101848 -0.175162 0.277153 0.974010 -1.101004 0.278208 -0.679677 2.125538 0.072799 -1.553088 -2.375685 -0.849851 -1.659726 -1.771094 0.190379 -0.680335 -1.101418 1.155460 1.127030 2.254503 -0.143511 0.791525 -1.108597 0.197453 -0.112662 -0.393390 0.022062 0.311064 0.934918 -1.319310 -0.289164 0.211673 -0.283915 1.153400 0.328663 -0.545137 0.250203 -1.722290 -1.367305 0.729866 1.194909 0.136012 1.001646 2.047473 0.576955 -1.256664 -0.921278 0.998024 -0.375877 -1.227732 0.824636 -1.284944 1.124807 -0.000843 0.462754 1.461247 0.068774 0.090388 0.967294 -0.276093 0.320793 -0.863317 -0.545120 -0.569158 0.244058 -0.811912 0.667614 -1.228900 -0.541454 -1.087454 -1.364153 2.362905 -1.654503 -1.768477 2.148945 -1.058409 2.239339 -1.778525 2.001621 -0.619333 1.306742 0.138954 -0.284774 -0.098495 -0.737060 -0.733417 1.071771 -0.209418 -0.074937 -0.111710 1.446705 0.636286 0.449977 -0.001416 1.515626 -1.128552 1.149202 -0.483981 1.046440 -0.667333 -0.519872 -0.363624 -0.018678 -0.306711 0.177432 0.321065 1.442703 0.152585 1.283789 1.283389 0.667835 0.749309 -1.060993 0.140150 -0.062005 1.322201 -1.371668 -1.344858 0.670460 1.104817 -0.142978 -0.055397 -2.349364 -2.328127 -2.443136 -1.827235 -1.355630 -1.268259 0.962776 -0.090536 -0.608656 -0.936145 -1.080413 0.719789 0.342558 0.112475 1.239070 -0.142830 1.910125 1.640015 -0.398561 0.062099 0.744766 1.300507 -0.151953 0.001329 -2.239289 0.882888 -2.521375 0.643797 2.652918 -0.676938 1.369578 -0.762324 2.598861 -2.596534 1.509466 0.739954 -2.348113 0.239592 2.309937 0.634620 0.719970 -1.392323 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::~Graph() = 0.256314 -0.477906 2.471757 1.613705 -0.717891 0.117453 -0.091676 -0.897171 0.829631 -0.028229 -0.849852 0.575613 -0.787934 0.035529 0.416175 0.673704 -2.298714 -0.809070 -0.223270 -0.766046 -0.352769 -0.551330 0.110380 0.744866 1.140785 1.157884 -0.733268 0.425186 -0.494938 -1.442673 -0.041217 -0.393613 0.634038 1.034616 1.111404 -1.570503 1.442866 0.661237 -0.257906 -1.157743 0.634601 -0.685902 0.060727 -0.774784 -0.224611 0.993333 0.720726 1.035970 1.060416 0.438991 -0.554534 -0.463434 0.351869 0.859659 -0.166107 0.553668 0.693852 -0.885080 -0.034498 -0.089776 0.070725 -0.659458 0.273748 0.333653 -0.493589 -1.218374 0.154919 -0.671715 -0.458801 1.169990 0.157470 -0.652741 -1.204234 -0.961678 -1.287532 -0.156194 -0.784648 1.741205 1.502008 -1.049639 0.814334 0.249241 0.567684 0.037402 0.499983 -0.005854 1.462049 0.237048 -0.386814 -0.050911 -0.912110 -1.712888 0.260088 -0.280485 -0.211118 -0.548517 0.254747 -2.688425 -1.380702 0.269842 0.652103 -0.706475 -0.604752 0.298335 0.826078 0.498439 0.340876 -0.750267 0.501562 0.256157 -0.666799 0.063607 -0.272513 0.100509 -0.413038 0.266756 -1.779956 0.705434 0.173937 0.003788 0.189444 1.078638 -0.258887 0.155179 0.131310 0.545971 -0.261788 1.528362 0.090303 0.629901 0.134211 0.031996 -0.286289 0.840878 0.502189 -0.289753 -0.556174 -0.080416 -0.233835 0.334483 -1.229297 -0.072302 -0.694732 1.494868 0.603393 -0.932380 -1.308659 -0.675727 -1.654649 -1.323038 0.353511 -0.511287 -0.849401 0.755100 0.760597 1.051247 0.688367 0.888257 -0.957450 -0.114896 -0.142519 -0.025426 0.906818 0.071921 0.939725 -0.882249 -0.058958 0.741728 0.020780 0.468055 0.077302 -0.198180 0.535679 -1.264380 -0.489769 1.254796 0.603388 0.806960 0.982466 1.188593 0.650942 -0.355754 -0.088254 0.864543 -0.170117 -0.616401 0.600590 -0.900138 0.897048 0.256234 1.010732 1.186294 0.014931 -0.112512 0.172882 0.124409 0.371388 -0.798236 -0.246877 -0.489726 0.579557 -0.373954 0.055676 -0.880505 -0.543807 -0.664764 -0.732619 1.516612 -0.792122 -1.399577 1.603283 -1.080687 1.671710 -1.420613 0.776634 -0.807307 1.218497 -0.132235 -0.089298 0.010145 -1.264686 -0.865620 0.507685 0.231701 0.178732 0.116994 0.560545 0.764471 0.200801 -0.000408 0.974935 -0.393958 1.368411 -0.176838 0.570823 -0.490560 0.351900 -0.134303 0.002785 -0.539995 0.212178 0.168181 0.764197 0.369715 0.891701 1.003048 0.647092 0.885073 -0.678572 0.535224 -0.485966 0.616305 -0.826480 -1.031731 0.465253 0.627831 -0.122110 0.196233 -1.829716 -1.654652 -1.839898 -1.341760 -0.713270 -0.680213 0.631694 0.016221 -0.307016 -0.743742 -0.771912 1.182709 0.351125 1.034712 0.412089 -0.187381 0.977955 1.133117 -0.331406 -0.496487 -0.004168 0.455085 0.057251 0.026480 -1.749080 1.382502 -1.126299 0.319199 2.010927 -1.198226 0.492822 -0.465035 0.958895 -1.483077 1.110742 0.361151 -1.384632 0.541052 1.072194 0.271439 0.172272 -0.967219 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::~list() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::addEdge(int, int, int) = -0.184468 -0.908495 2.087220 1.522339 -0.315128 0.158897 0.872176 -0.615747 0.488270 0.218535 -0.320026 0.708233 -1.347818 0.376561 -0.645725 0.777656 -1.579247 -0.924154 -0.276496 -0.644823 -0.370374 -0.528663 0.738932 0.551166 1.270526 0.481987 -0.748320 -0.818081 -1.270975 -0.917622 0.392918 -0.340165 0.927257 0.268189 -0.090769 -2.624263 0.927009 1.069676 -0.496132 -1.042946 1.074786 -0.766832 0.061985 -0.647787 -0.626882 0.156289 0.430777 0.550460 0.865440 0.490613 0.191077 0.083235 0.769115 2.223299 -0.604131 0.786674 0.741424 -0.269334 -0.247558 -0.180983 0.175237 -0.280930 0.512648 0.252774 -0.159536 -1.053216 -0.405252 -0.860328 -0.875596 0.758257 -0.092129 0.045159 -1.048108 -0.266293 -1.070345 -0.309331 -0.643446 1.164287 1.599362 -1.256779 1.140437 0.069829 0.010912 -0.164596 0.173872 0.318034 0.337166 0.284816 -0.018846 -0.345414 -0.573524 -0.055566 0.124538 0.325210 -0.459814 -1.747385 0.921344 -1.143190 -1.455392 0.306228 0.438957 -0.780445 -0.250102 -0.010503 0.007923 0.754227 -0.748153 -1.097195 -0.335195 0.136054 0.297601 -0.272479 -0.028260 -0.054564 -0.414244 -0.548409 -1.528536 0.410634 -0.072648 -0.614845 -0.272782 0.958466 -0.113905 0.500808 0.160541 0.697522 -0.458939 1.411072 0.145687 0.598888 0.175768 0.316885 -0.573738 -0.243605 0.887979 1.043804 -0.831670 -0.148290 -0.612023 0.275107 -0.548357 -0.091687 0.151015 1.120455 0.876005 -0.940948 -0.984063 -0.529266 -0.533068 -1.541686 0.158329 -0.709598 -0.263727 0.745449 0.840899 0.316233 0.704537 1.679279 -0.621154 0.454051 0.178760 -0.626518 0.860112 0.025795 0.840370 -0.736718 -0.835835 0.553917 0.263938 0.783150 -0.190423 0.443526 0.225772 -1.104869 -0.385746 0.357342 0.569515 -0.343636 0.979319 0.948690 1.229118 -0.774521 0.146383 0.766420 -0.481999 -0.103233 0.305339 -1.326264 0.671717 0.218704 -0.409921 1.044480 0.120324 -0.712047 0.902195 -0.463638 0.272160 -0.969948 0.331599 -0.695421 -0.163740 -0.937148 -0.070150 -0.251485 -0.613951 -0.525446 -0.450764 1.542868 -1.341625 -0.667975 0.791335 0.152191 0.584381 -1.846142 2.110112 -0.763908 0.966505 -0.287951 -0.430448 0.216822 0.193673 -0.759794 0.099309 0.394194 -0.340197 0.414884 1.415503 0.651813 0.067119 -0.079650 1.238286 -0.083044 1.113910 -0.378300 0.921123 -0.185548 -0.740129 0.052366 -0.228123 -0.280985 -0.126964 0.392523 1.377502 0.611682 0.565266 0.963805 0.811669 1.452473 -0.621053 0.588290 -0.347133 1.218477 -0.610962 -0.563328 0.215160 0.862196 -0.189948 0.822138 -1.634393 -1.980647 -1.229465 -1.333268 0.050645 -0.322612 0.579930 -0.300165 -0.158976 -1.440255 -0.964964 0.596276 -0.417593 0.854887 0.893639 0.204392 1.031302 0.980693 -0.438918 -0.096725 0.206379 0.899240 0.288522 -0.133457 -0.991758 0.754360 -1.271604 0.284558 1.492568 -0.707060 0.534018 -0.131858 1.182343 -1.172372 1.780282 0.348275 -1.018906 1.237968 1.251608 0.812443 0.187362 -0.711194 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::AdjListNode(int, int) = -0.059708 -0.622567 1.527390 1.171116 -0.124412 0.079876 0.730030 -0.427714 0.684684 0.527347 -0.159717 0.362231 -0.904887 0.285616 0.060961 0.857078 -1.071912 -0.637964 -0.029121 -0.520739 -0.320130 -0.442729 0.569968 -0.000353 0.903155 0.214747 -0.426687 -0.767698 -0.616744 -0.671471 0.453742 -0.371288 0.661243 0.252485 -0.022488 -2.206216 0.744671 0.518971 -0.401620 -0.885691 0.628189 -0.457330 0.302750 -0.341641 -0.045868 0.242207 0.434698 0.663058 0.727570 0.592167 0.220072 -0.085232 0.559162 1.722729 -0.564163 0.485817 0.414163 -0.310126 -0.297624 0.012951 0.193129 -0.253348 0.448094 0.261453 -0.055548 -0.801788 -0.354775 -0.679823 -0.844670 0.517194 0.086431 -0.008575 -0.917223 -0.229031 -0.309420 -0.303782 -1.536553 0.945881 1.227441 -0.972401 0.854635 0.179109 0.191700 -0.063643 0.123031 0.216046 0.287386 0.188289 -0.204011 -0.182929 -0.414900 -0.425165 0.153185 -0.092769 -0.164020 -1.326883 0.515680 -0.045307 -0.936043 0.372294 0.369592 -0.247269 -0.466891 -0.089255 0.180242 0.699654 -0.593739 -0.841059 -0.396541 -0.070578 0.117364 -0.197902 -0.049994 -0.290051 -0.480737 -0.477540 -1.090413 0.124884 -0.045855 -0.481463 -0.342132 0.663143 -0.245815 0.262866 0.084622 0.461269 -0.345420 1.111235 0.245199 0.588561 0.487619 0.085679 -0.961280 0.167605 0.713859 0.953011 -0.210092 0.018531 -0.565887 0.183816 -0.543695 0.055811 0.367631 0.883228 0.991580 -0.587886 -0.758724 -0.347762 -0.033008 -0.939274 0.439193 -0.594204 0.289367 0.401811 0.631585 0.301339 0.600996 1.094607 -0.836266 0.439326 -0.176968 -0.189569 0.651143 0.522975 0.661743 -0.506071 -0.375943 0.192739 0.459433 0.292315 -0.007525 0.069282 0.283463 -0.831103 -0.174972 0.159948 0.381620 -0.451976 0.542266 0.559324 1.269447 -0.640989 -0.037071 0.619054 -0.241906 -0.101975 0.284557 -0.967522 0.599662 0.083924 -0.257995 0.567529 0.039061 -0.550360 0.547607 -0.364838 0.073077 -0.424443 0.096114 -0.509999 -0.322596 -0.509444 0.167164 -0.397325 -0.467270 -0.228983 0.046396 1.092511 -0.388520 -0.378082 0.559611 -0.471572 0.188543 -1.206313 2.089943 -0.592865 0.145984 -0.564569 -0.378316 -0.061935 0.441871 -0.454853 -0.015525 0.317533 -0.077164 0.249075 1.257655 0.482174 -0.015042 0.013772 0.915679 -0.036398 0.720739 -0.100611 0.779630 -0.320161 -0.114749 -0.001911 -0.151599 -0.004316 -0.109375 0.106394 1.104484 0.397675 0.208258 0.696827 0.464689 0.934683 -0.500828 0.624574 -0.156351 0.993686 -0.411660 -0.253651 0.178313 0.439759 -0.250939 0.599533 -1.103829 -1.173202 -0.409143 -0.685621 -0.142189 0.207701 0.335800 -0.272026 -0.040868 -0.998034 -0.567664 0.222475 -0.272286 0.068265 0.488897 0.085352 0.743789 0.756189 -0.308870 -0.275841 -0.020207 0.264286 0.150216 -0.218534 -0.528450 0.563249 -0.992454 0.142353 0.958021 -0.411986 0.144795 -0.209362 1.139957 -0.752507 1.213312 0.248438 -0.444814 0.868541 1.068308 1.011358 -0.048126 -0.475408 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::push_back(AdjListNode const&) = 0.031377 -0.388968 1.763795 1.238057 -0.487225 0.004397 0.357141 -0.773516 0.728644 -0.179681 -0.238653 0.245656 -0.843032 0.381991 -0.294326 0.773814 -1.555841 -0.599330 -0.301620 -0.798712 -0.250774 -0.304646 0.784024 0.020036 0.927046 0.675166 -0.553967 -0.469106 -0.546586 -0.568793 0.788460 -0.423445 0.700012 0.522458 -0.105102 -2.272002 0.997183 0.569044 -0.581354 -0.747045 0.839731 -0.635610 0.097250 -0.729894 -0.445940 0.158020 0.054020 0.559720 0.848641 0.365969 -0.002874 0.250036 0.405614 1.579803 -0.809276 0.400180 0.321040 -0.322848 -0.455568 -0.036775 0.147669 0.099849 0.413348 0.256665 -0.125610 -1.205652 -0.305283 -0.844596 -0.877866 0.672937 -0.122820 0.045254 -0.797331 -0.184213 -0.691693 -0.250690 -0.715803 1.075943 1.150575 -0.951801 0.603981 -0.110410 -0.107853 -0.064443 0.043052 0.354986 0.406163 0.241067 0.087743 -0.238176 -0.396545 -0.260872 0.393614 -0.171568 -0.240547 -1.516331 0.621354 -0.838959 -0.906376 0.133835 0.699470 -0.473289 -0.371132 -0.169257 0.102549 0.594645 -0.522555 -0.695750 0.079650 0.043932 0.240321 -0.138772 -0.167377 -0.112400 -0.390476 -0.547795 -1.254955 0.425113 -0.250048 -0.192456 -0.047883 0.679954 -0.238450 -0.196335 0.053311 0.603872 -0.619369 1.260099 -0.253747 0.579407 0.200000 0.377484 -0.097027 0.010518 0.752465 0.957481 -0.437479 -0.273528 -0.753555 0.132625 -0.825782 -0.324698 0.150710 0.587197 0.793845 -0.681268 -0.685437 -0.201313 -0.493581 -1.480778 0.160357 -0.613355 -0.127343 0.774241 0.686786 0.523956 0.921291 1.193097 -0.701343 0.255903 -0.106311 -0.362747 1.000055 0.381831 0.753427 -0.488921 -0.440701 0.335040 -0.107815 0.499086 -0.060695 0.253714 0.193219 -1.049167 -0.141363 0.411935 0.542150 -0.183054 0.536529 0.761991 0.672482 -0.513944 0.143467 0.845770 -0.392096 -0.111995 0.360953 -0.883278 0.429636 0.280042 -0.183215 0.696308 0.045779 -0.466028 0.303613 -0.275084 0.225578 -0.571001 -0.038592 -0.426113 -0.071369 -0.694796 0.082001 -0.347720 -0.515661 -0.411157 -0.471239 1.112866 -0.945597 -0.504698 0.935901 -0.212033 0.582705 -1.228703 1.370104 -0.711095 0.767224 -0.311858 -0.178270 0.064499 -0.244223 -0.941955 0.134360 0.276514 -0.038623 0.182013 1.158235 0.716246 -0.007690 -0.231311 1.067666 -0.221018 1.184703 -0.271795 0.887864 -0.336206 -0.367099 0.246492 -0.135270 -0.483167 -0.392310 0.439662 1.231372 0.372372 0.783406 0.894033 0.419301 1.282634 -0.531840 0.661373 -0.228493 0.631960 -0.276284 -0.380795 0.486406 0.749610 -0.232708 0.558805 -1.225068 -1.646731 -1.064179 -0.926883 0.124656 -0.292367 0.347339 -0.348840 -0.053004 -0.957429 -0.649996 0.388844 -0.343243 0.837583 0.568321 0.088684 0.650007 0.938286 -0.645152 -0.166555 0.212984 0.635129 0.362968 -0.042950 -1.117602 0.985342 -0.799284 -0.071973 1.379881 -0.656918 0.261915 -0.260674 1.094985 -0.736893 1.286035 0.165494 -0.597655 1.109511 0.846508 0.616668 0.602574 -0.500438 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 0.381531 -2.150075 6.879347 4.658156 -2.053305 0.677777 0.937427 -2.725993 1.854898 -1.157722 -1.689018 1.880356 -3.310632 1.011808 -2.062190 1.362477 -6.332943 -2.521688 -1.213068 -2.529629 -1.595475 -1.472934 1.083638 2.311616 3.298565 3.925085 -2.243110 -0.477146 -3.282942 -2.184811 1.655384 -0.910510 2.273939 2.951621 1.296228 -7.020540 3.316630 3.039125 -1.344879 -2.993995 2.521660 -2.692288 -0.507289 -2.678124 -1.374267 0.847931 0.830244 3.257857 2.573579 0.478447 -0.914272 0.194724 1.307896 5.562201 -1.465242 2.214478 2.455915 -1.158889 -0.296935 -0.424144 0.403128 -0.717786 1.212868 0.935245 -1.154854 -3.688871 -0.125577 -2.817343 -1.685044 3.010652 0.887766 -0.420266 -2.877626 -1.633194 -3.890391 -0.757673 -1.800743 4.120911 4.766670 -3.467224 2.894902 0.405465 0.809040 -0.127425 1.456012 0.688038 3.285946 0.952907 -0.333535 -0.611118 -3.440560 -1.128463 0.791650 -0.027119 -1.615770 -5.084555 2.084417 -6.787490 -4.407979 0.589214 1.784709 -2.586380 -0.260742 0.390751 1.011042 1.044104 -1.161625 -2.683233 0.364116 0.906293 -0.773667 -0.409949 -0.125572 0.567205 -0.669880 -0.930004 -4.970666 2.087556 0.102083 -0.575899 0.231282 3.398257 0.158534 0.548105 0.272936 1.733114 -1.400187 4.051232 -0.266500 1.061278 -0.210447 1.127626 0.258285 0.610921 2.204072 1.826019 -2.862440 -1.485260 -1.093468 1.140185 -2.453646 -0.830151 -1.240429 3.302910 1.352458 -3.133416 -3.070620 -2.067668 -3.026641 -4.772918 0.017360 -1.790154 -2.940773 1.410609 2.689310 2.609179 2.288815 3.146569 -1.779777 1.017223 0.402011 -0.756588 2.735011 0.394483 2.621411 -2.434873 -1.915281 1.931459 -0.498355 2.382549 -0.474128 0.546014 0.636650 -3.585402 -1.414077 2.270161 1.900832 0.452911 3.518892 3.673243 2.837806 -2.680794 0.727401 2.411320 -1.558671 -0.867192 1.504029 -3.232000 2.060532 1.074455 0.358377 4.005761 0.192193 -1.289190 1.423983 -0.086266 1.079590 -3.027287 0.127703 -1.684207 -0.115935 -2.629444 0.998025 -1.713027 -1.673971 -2.461292 -2.891788 4.709313 -5.187252 -2.979480 3.945776 -0.321023 3.510750 -4.997395 2.931213 -2.469188 3.642812 -0.258669 -0.944094 0.636965 -1.961579 -3.338616 1.520423 1.075978 -1.077360 1.001351 2.894611 2.319844 0.972535 -0.382102 3.501355 -1.108298 3.620072 -1.715896 2.618322 -0.628569 -1.860737 0.023996 -0.676066 -1.561880 -0.233771 1.672354 3.612634 1.778854 3.210695 2.897637 2.262023 3.695413 -1.980721 1.187938 -1.248513 1.937037 -2.122499 -2.361431 1.039138 2.188688 -0.453637 1.747720 -5.406033 -6.162438 -5.066979 -4.031127 -0.249935 -2.196133 1.605396 -0.098032 -0.651654 -3.943156 -2.835671 2.775349 -0.639525 3.656860 2.559695 0.369007 2.999792 3.378139 -1.655785 -0.465991 1.265418 2.860113 0.645239 0.083185 -4.958195 3.771971 -2.913934 1.196828 5.819357 -3.017943 2.016704 -1.065727 4.321996 -3.791687 4.985524 1.149893 -4.384566 2.439925 3.417108 2.144057 1.733008 -2.529841 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator() = -0.062907 -0.225884 0.703559 0.542225 -0.095655 0.024204 0.226699 -0.255548 0.432460 0.207089 -0.097554 0.032524 -0.404639 0.130262 0.123586 0.440777 -0.524374 -0.279214 -0.013321 -0.303567 -0.117361 -0.211043 0.298252 -0.119392 0.364715 0.181768 -0.156764 -0.247539 -0.187598 -0.297576 0.303521 -0.242144 0.290155 0.298625 -0.014912 -0.880733 0.409263 0.177765 -0.237529 -0.357686 0.250219 -0.237049 0.202713 -0.200503 0.043392 0.174466 0.143899 0.233449 0.392490 0.257105 0.156920 -0.092629 0.204565 0.604119 -0.367306 0.179864 0.095079 -0.179280 -0.175905 0.027886 0.088933 -0.040984 0.227898 0.179808 -0.079297 -0.444837 -0.180330 -0.351379 -0.452750 0.252741 -0.053028 0.025804 -0.437266 -0.132827 -0.064979 -0.176649 -0.905504 0.407327 0.568553 -0.409121 0.357385 0.100451 0.094636 -0.023899 0.066883 0.134358 0.189656 0.080179 -0.128941 0.016183 -0.068760 -0.236642 0.141735 -0.046347 -0.029829 -0.445437 0.204977 0.007703 -0.383487 0.164705 0.228223 -0.011593 -0.271804 0.003339 0.075515 0.309465 -0.270005 -0.385054 -0.043498 -0.074170 0.080539 -0.061896 -0.097005 -0.166585 -0.262661 -0.227945 -0.510520 0.027065 -0.095521 -0.213815 -0.104678 0.303624 -0.133603 -0.015564 0.034271 0.202529 -0.215324 0.595790 0.034823 0.330140 0.171495 0.040729 -0.476061 0.111233 0.348818 0.422906 -0.042368 -0.007143 -0.292097 0.015154 -0.353739 -0.042748 0.176898 0.324840 0.529777 -0.265914 -0.299618 -0.090591 -0.089582 -0.548107 0.236808 -0.307552 0.201828 0.188927 0.306341 0.221105 0.390948 0.564444 -0.431651 0.134961 -0.185870 -0.086261 0.392647 0.358565 0.356253 -0.208093 -0.105831 0.084083 0.174267 0.060455 0.098287 -0.046674 0.121827 -0.445506 0.021785 0.177653 0.162105 -0.194337 0.220389 0.236956 0.485852 -0.208234 0.035878 0.351769 -0.036022 -0.039698 0.169991 -0.409810 0.289783 0.057991 -0.099780 0.141508 0.007115 -0.187235 0.111499 -0.198128 0.071910 -0.205479 -0.007823 -0.200563 -0.068008 -0.256542 0.156967 -0.226915 -0.270510 -0.024295 0.074553 0.460784 -0.064746 -0.091828 0.301197 -0.200656 0.121617 -0.402709 0.837203 -0.324727 0.158461 -0.324792 -0.145371 -0.054107 0.126411 -0.194199 -0.048249 0.147866 0.052079 0.071311 0.519886 0.286296 -0.030828 0.015549 0.458478 -0.038065 0.378000 -0.005852 0.376259 -0.144112 0.049890 0.107683 -0.085632 -0.061528 -0.090982 0.032326 0.552218 0.228330 0.115988 0.339935 0.104450 0.436496 -0.231720 0.306109 -0.028476 0.420394 -0.152160 -0.091552 0.137402 0.223996 -0.146155 0.201259 -0.487237 -0.541535 -0.118800 -0.211290 -0.111035 0.148185 0.113209 -0.084180 0.052699 -0.353630 -0.217253 0.161042 -0.159811 0.115475 0.093202 0.037236 0.303951 0.400665 -0.179089 -0.231379 -0.025131 0.088381 0.081082 -0.013520 -0.321274 0.360793 -0.428843 -0.018268 0.433494 -0.244078 -0.026133 -0.062476 0.569705 -0.309997 0.522839 0.105014 -0.111726 0.517295 0.466173 0.489070 0.089535 -0.197007 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::begin() = 0.287316 -0.265078 1.976745 1.369902 -0.653695 0.039025 -0.127996 -1.072759 0.714376 -0.024308 -0.327917 0.392747 -0.489611 0.455660 -0.517969 1.021059 -1.669444 -0.362891 -0.503756 -1.010932 -0.479411 -0.127599 0.578124 -0.031100 0.950721 0.879893 -0.647316 -0.008300 -0.132926 -1.372091 0.361432 -0.335434 0.475672 0.104811 0.183249 -1.940270 1.305555 0.730636 -0.606264 -0.748365 0.731164 -0.391967 -0.147232 -0.503019 -0.561153 0.261309 -0.108204 0.489786 0.789255 0.550519 0.114635 0.541617 0.799428 1.620405 -0.498846 0.500511 0.416353 -0.289680 -0.364763 0.036099 0.199080 0.226824 0.159799 0.054002 0.262978 -1.364635 -0.373550 -0.527575 -0.464556 0.729899 -0.318991 -0.509607 -0.739523 -0.534058 -0.818973 -0.199873 -1.350478 1.069249 1.050681 -0.995002 0.332178 -0.049412 -0.259769 0.122826 0.107204 0.211525 0.654309 0.400278 0.222989 0.001334 0.434617 -0.372712 0.685694 -0.291688 -0.592236 -1.866127 0.750777 -1.523029 -0.919763 0.332392 0.939538 -0.629837 -0.127082 -0.467752 0.093121 0.303989 -0.461330 -0.497082 0.342034 0.121551 0.416955 -0.177414 -0.210288 -0.067817 -0.084979 0.257416 -1.355714 0.666650 -0.142288 0.091864 0.059976 0.646391 0.395084 -0.398167 -0.112124 0.642051 -0.593530 1.267877 -0.414752 0.899362 -0.500638 1.073534 0.137719 0.515495 0.765072 -0.397430 -0.476860 -0.183052 -0.668596 0.237374 -0.870939 0.095219 -0.470466 0.627158 0.851948 -0.392255 -0.819999 -0.249218 -1.047352 -1.468070 0.110037 -0.538080 -0.816567 0.663682 0.671142 0.582175 0.895622 0.608784 -0.634987 -0.168535 -0.130805 -0.213091 1.005082 -0.041903 0.669842 -0.495609 -0.403399 0.530392 -0.054091 0.531680 0.052607 0.224471 0.292036 -0.858832 0.182308 0.804602 0.615973 -0.142350 0.616273 0.882771 1.005213 -0.062813 0.025881 0.801058 -0.548763 -0.110448 0.269138 -0.802561 0.215571 0.355955 0.386291 0.912809 0.050866 -0.015927 0.255031 -0.258764 0.247004 -0.511825 0.003035 -0.402016 0.002951 -0.437328 0.223265 -0.386180 -0.190146 -0.465307 -0.795018 1.107930 -1.637482 -0.307043 1.279687 -0.332907 0.530739 -0.818631 1.131708 -0.658550 0.913211 -0.056519 -0.080826 0.139596 -0.618689 -1.123905 0.345036 0.301295 0.011786 -0.053006 0.966987 0.628735 -0.065462 -0.394128 1.031697 -0.645259 1.391178 -0.354513 1.042876 -0.319282 -0.267330 -0.022053 -0.075089 -0.851704 -0.648520 0.517384 0.851194 -0.055304 0.773504 0.515372 0.301227 1.313619 -0.620526 0.968985 -0.257756 0.205424 -0.497759 -0.510006 0.718292 0.760406 -0.190237 0.395531 -1.264200 -1.202757 -1.941106 -0.541233 -0.002128 -0.317339 0.423738 -0.544466 -0.339395 -0.520274 -0.937199 1.445676 -0.260784 0.275903 0.678378 0.143707 0.623586 0.931428 -0.281101 0.089592 -0.274902 0.365732 0.568261 -0.089412 -1.014922 1.197414 -0.555149 -0.254389 1.446613 -0.663339 0.498894 0.081123 0.565600 -0.717715 0.947070 0.053850 -0.531294 0.893425 1.112213 0.465610 0.353696 -0.562143 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::end() = 0.270940 -0.245435 1.642784 1.134290 -0.511982 0.024138 -0.012081 -0.867183 0.643106 -0.031131 -0.314735 0.286458 -0.497124 0.383372 -0.503447 0.842796 -1.385369 -0.358839 -0.381550 -0.807093 -0.353364 -0.159678 0.544216 -0.048387 0.823621 0.727286 -0.500461 -0.074071 -0.212885 -1.035139 0.352159 -0.306451 0.381468 0.149407 0.114700 -1.452934 1.056664 0.604627 -0.513826 -0.639072 0.637291 -0.387159 -0.098655 -0.462546 -0.345203 0.220071 -0.054874 0.534321 0.688900 0.461691 0.100456 0.384741 0.623954 1.318327 -0.491925 0.423868 0.340209 -0.192469 -0.277850 0.055575 0.160140 0.172428 0.126087 0.092897 0.168906 -1.113247 -0.345078 -0.490445 -0.397031 0.622198 -0.287105 -0.321113 -0.692833 -0.397946 -0.669672 -0.141158 -1.336644 0.913655 0.923137 -0.856885 0.319631 -0.016820 -0.163368 0.049512 0.061262 0.191734 0.490291 0.318550 0.153500 -0.046550 0.211756 -0.276361 0.528754 -0.334359 -0.458247 -1.571118 0.633475 -1.242857 -0.798889 0.229063 0.750633 -0.519693 0.014752 -0.237941 0.053257 0.280735 -0.404648 -0.459218 0.328209 0.071915 0.356458 -0.126569 -0.126076 -0.066545 -0.099950 0.115964 -1.142616 0.512042 -0.155623 0.005615 0.077514 0.549722 0.293549 -0.293190 -0.057749 0.505303 -0.463968 1.089933 -0.297526 0.730626 -0.338180 0.859680 0.039934 0.506183 0.684469 -0.216990 -0.417459 -0.022454 -0.541197 0.178708 -0.733049 -0.004548 -0.376616 0.486451 0.622083 -0.445348 -0.680052 -0.199768 -0.827850 -1.189972 0.131661 -0.452343 -0.630438 0.462965 0.575599 0.535687 0.771500 0.609444 -0.573445 -0.161657 -0.090636 -0.166408 0.833230 0.040395 0.588183 -0.417099 -0.351063 0.424438 -0.032645 0.384170 0.028988 0.204689 0.236846 -0.792862 0.209069 0.639726 0.509350 -0.180500 0.561962 0.724627 0.606884 -0.085567 0.045348 0.703988 -0.427787 -0.097662 0.247774 -0.726582 0.285489 0.275224 0.349853 0.678281 0.058232 -0.004962 0.246378 -0.259562 0.221141 -0.450732 -0.052008 -0.353720 -0.086163 -0.414657 0.312211 -0.283146 -0.220555 -0.333364 -0.602351 0.916659 -1.240068 -0.189261 1.008734 -0.245849 0.424187 -0.645023 0.979093 -0.573192 0.731453 -0.003982 -0.043173 0.122995 -0.460721 -0.901184 0.186973 0.255333 0.029941 0.029073 0.790965 0.546051 -0.062327 -0.261220 0.891869 -0.534703 1.129630 -0.276766 0.819446 -0.256510 -0.268665 0.056971 -0.078596 -0.678657 -0.517826 0.420584 0.873148 0.008352 0.661933 0.529373 0.210279 1.129273 -0.514945 0.778311 -0.228591 0.229863 -0.418778 -0.416808 0.568921 0.567212 -0.189921 0.358431 -1.075119 -1.101361 -1.500292 -0.462674 0.033387 -0.403648 0.355734 -0.443466 -0.236442 -0.497825 -0.787200 1.064673 -0.243251 0.188560 0.547050 0.102042 0.517844 0.788949 -0.284680 0.078339 -0.160214 0.380746 0.452748 -0.078589 -0.841588 0.970352 -0.524857 -0.212756 1.221830 -0.580008 0.367343 0.020270 0.538843 -0.621107 0.823728 0.074306 -0.452479 0.796151 0.945910 0.459848 0.370528 -0.473671 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator*() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getV() = -0.204375 -0.266803 0.697432 0.502331 -0.081142 0.063862 0.106555 -0.232143 0.274255 0.204329 -0.098803 0.201998 -0.325665 0.100203 -0.060674 0.354124 -0.430927 -0.259300 -0.085222 -0.283013 -0.162522 -0.143133 0.161507 0.032731 0.335755 0.160838 -0.248116 -0.103331 -0.279629 -0.564411 0.051559 -0.147327 0.271873 -0.024860 0.020723 -0.867349 0.389731 0.357877 -0.191011 -0.387248 0.269819 -0.181234 0.105199 -0.078596 -0.166782 0.152600 0.126416 -0.064082 0.269449 0.236148 0.189947 0.036024 0.273727 0.629495 -0.167100 0.243520 0.212794 -0.150488 -0.164492 -0.046188 0.086200 -0.068288 0.179973 0.066055 -0.033901 -0.395637 -0.146603 -0.191293 -0.335841 0.198771 -0.145982 -0.162721 -0.270914 -0.225193 -0.257911 -0.174397 -0.356476 0.266207 0.500259 -0.354119 0.338063 0.052934 0.017347 0.055276 0.102120 0.096137 0.169749 0.119086 -0.045931 0.027713 0.190552 -0.075250 0.113662 0.243709 -0.169336 -0.362677 0.322676 -0.289752 -0.405311 0.206537 0.199139 -0.121503 -0.305178 -0.101928 0.019050 0.281192 -0.249585 -0.323608 -0.094150 0.038096 0.154657 -0.096373 -0.088918 -0.118565 -0.166696 -0.027642 -0.484041 0.128509 0.009539 -0.160154 -0.147130 0.308683 -0.010115 0.060330 -0.002879 0.257545 -0.195401 0.527167 0.019426 0.309361 -0.136832 0.149249 -0.375622 -0.069043 0.243080 0.116048 -0.214395 -0.085631 -0.216136 0.026547 -0.217156 0.057575 -0.058620 0.337884 0.571349 -0.158477 -0.303039 -0.160556 -0.261427 -0.586642 0.068487 -0.255175 -0.033218 0.273362 0.273597 0.126230 0.267007 0.585850 -0.262189 0.064872 -0.066622 -0.241744 0.317637 0.030575 0.286570 -0.224656 -0.198322 0.188963 0.180298 0.196649 0.093902 0.030570 0.103049 -0.324267 -0.015275 0.287564 0.190095 -0.066067 0.258843 0.287742 0.625139 -0.138520 -0.019866 0.222988 -0.125401 -0.019043 0.069522 -0.370809 0.115503 0.106511 -0.063333 0.320091 0.028939 -0.148050 0.183816 -0.175031 0.095876 -0.277922 0.170416 -0.219222 0.068642 -0.199817 -0.081050 -0.195294 -0.138837 -0.145276 -0.142934 0.479505 -0.361130 -0.209841 0.286535 0.001875 0.169767 -0.493778 0.595420 -0.270763 0.415742 -0.203312 -0.078657 0.007793 0.032114 -0.186263 0.058701 0.145772 -0.040713 0.039775 0.464161 0.216985 -0.032975 -0.065038 0.397623 -0.093294 0.391319 -0.070521 0.351676 -0.090214 -0.071013 0.033631 -0.070130 -0.136348 -0.080953 0.053592 0.281680 0.159636 0.056430 0.191652 0.208803 0.419346 -0.219669 0.296282 -0.034193 0.394209 -0.191836 -0.161177 0.110130 0.379684 -0.037804 0.133400 -0.485835 -0.459338 -0.411553 -0.362675 -0.063708 0.147176 0.107604 -0.102371 -0.047332 -0.282416 -0.297001 0.506644 -0.119008 0.380073 0.159676 0.093306 0.328853 0.327387 -0.094032 -0.132125 -0.104647 0.066157 0.097812 -0.022943 -0.258881 0.306544 -0.344810 -0.015295 0.398358 -0.223577 0.133219 0.132319 0.236953 -0.327277 0.504335 0.093873 -0.181864 0.447479 0.391182 0.386629 -0.082083 -0.215554 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator++() = -0.040169 -0.244208 1.397109 1.003682 -0.400848 0.032903 -0.000617 -0.659981 0.574427 0.182992 -0.137228 0.235800 -0.384423 0.260357 0.094837 0.786041 -1.126674 -0.283969 -0.246036 -0.730125 -0.358654 -0.126236 0.370751 -0.096090 0.636399 0.497495 -0.435939 -0.126531 -0.017195 -0.953166 0.329400 -0.316563 0.476118 0.220198 0.120691 -1.875096 0.912529 0.412730 -0.435819 -0.560538 0.461626 -0.259657 0.120487 -0.300607 -0.391802 0.254185 0.057546 0.161568 0.609776 0.433519 0.164446 0.206065 0.546264 1.212871 -0.395824 0.312928 0.236863 -0.403690 -0.368557 -0.011759 0.154505 0.038452 0.288056 0.080836 0.099055 -0.973238 -0.229012 -0.449730 -0.577161 0.454196 -0.111474 -0.345861 -0.521484 -0.398341 -0.378041 -0.307132 -0.929373 0.726685 0.811276 -0.686789 0.382285 0.023473 -0.103905 0.133496 0.145186 0.196378 0.508264 0.233839 0.020580 0.103549 0.366484 -0.425180 0.462291 0.035145 -0.274332 -1.048088 0.439762 -0.567115 -0.618423 0.357342 0.622233 -0.245057 -0.542547 -0.450433 0.145958 0.360766 -0.384748 -0.448091 0.009201 0.007979 0.184231 -0.139506 -0.266662 -0.178223 -0.239095 0.041296 -0.942132 0.366978 -0.086314 -0.016107 -0.136562 0.499774 0.068462 -0.241760 -0.063020 0.501558 -0.491670 0.967639 -0.209392 0.654789 -0.165771 0.465107 -0.271436 0.118889 0.517933 0.077685 -0.170001 -0.346520 -0.561229 0.124453 -0.650942 0.127421 -0.003139 0.626141 0.978618 -0.184175 -0.571881 -0.181035 -0.548577 -1.112991 0.190891 -0.466315 -0.181313 0.600243 0.492202 0.325493 0.655496 0.561680 -0.540578 0.114938 -0.276932 -0.196812 0.756917 0.197065 0.543181 -0.371867 -0.172477 0.279193 0.109460 0.370905 0.134829 0.004600 0.246796 -0.605709 -0.017229 0.502365 0.383938 -0.110028 0.321428 0.569802 1.264587 -0.164800 -0.018152 0.563493 -0.286791 -0.086476 0.245310 -0.539343 0.146125 0.233314 -0.041958 0.603904 0.007589 -0.208278 0.113576 -0.192601 0.119135 -0.323379 0.078266 -0.281776 0.114175 -0.282540 -0.021070 -0.459286 -0.220082 -0.304026 -0.341276 0.839493 -0.869159 -0.327307 0.837732 -0.376254 0.357157 -0.753926 1.153874 -0.514214 0.539004 -0.434215 -0.215065 -0.023996 -0.200884 -0.660275 0.282974 0.223122 0.027664 -0.085045 0.862217 0.480251 -0.024905 -0.266132 0.758002 -0.275695 0.932930 -0.145677 0.807417 -0.287780 0.045979 -0.038599 -0.061293 -0.441071 -0.336028 0.249230 0.512947 0.087312 0.359261 0.330867 0.290325 0.824318 -0.439560 0.678322 -0.101472 0.385376 -0.299430 -0.303139 0.456449 0.631941 -0.130951 0.265144 -0.884581 -0.767720 -1.007973 -0.373141 -0.166625 0.309852 0.238585 -0.282227 -0.140144 -0.409576 -0.502579 0.914816 -0.182180 0.307306 0.351217 0.102596 0.513400 0.679985 -0.179098 -0.232137 -0.235070 0.083715 0.332325 -0.024360 -0.706927 0.831666 -0.513437 -0.114057 0.906283 -0.436933 0.221252 0.061960 0.633109 -0.519436 0.762330 0.048490 -0.289213 0.725615 0.813184 0.484797 0.074766 -0.368271 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::longestPath(int) = -1.331041 -8.644682 19.397973 13.180466 -2.383234 3.030985 4.820445 -3.900358 2.724533 3.652508 -5.274317 6.520484 -10.047857 -1.267915 1.542239 2.280145 -14.783277 -8.993170 -1.714269 -3.402265 -5.453872 -6.075658 -1.241400 11.132970 9.121918 8.707422 -7.314851 -0.349998 -9.647757 -10.881690 -1.451768 -0.983695 7.254982 9.334310 7.571687 -17.468303 9.884443 9.769045 -0.291786 -8.042508 5.076741 -4.397784 -0.990172 -3.373345 -3.607588 6.326791 7.699515 9.006693 5.708575 3.306967 -0.963340 -6.346981 5.247195 12.615260 2.635505 7.589494 10.017878 -4.635029 2.497531 -2.293329 0.675347 -8.204015 3.415361 2.887063 -4.589305 -4.096241 3.451968 -6.209418 -4.361875 8.514261 5.162619 -5.442463 -7.806160 -7.720175 -8.375760 -1.649090 0.318161 10.395911 13.798570 -9.347637 11.763945 4.755191 6.685220 0.362173 3.739458 -0.390072 9.273758 1.916325 -4.022063 -1.940034 -12.902546 -9.367921 -1.541452 2.659027 -5.324511 -5.210114 4.338979 -16.966741 -14.353536 3.668144 0.855199 -7.451664 -4.371148 3.423143 5.682800 2.151020 1.448981 -7.997572 -2.845579 4.227455 -8.354154 0.063409 -1.814997 2.301801 -3.260902 1.310097 -14.460734 6.435654 3.794219 -3.470831 -0.888504 10.935659 -1.877291 7.968008 1.917904 3.539135 -0.771970 10.076143 6.056850 1.503705 1.795343 -2.457606 -3.620014 1.569019 4.150318 1.730975 -7.241531 -4.913725 1.317754 4.241475 -4.140333 3.093327 -4.132907 13.788778 4.884485 -8.862470 -11.906927 -9.193748 -11.197421 -10.469025 2.245522 -4.641848 -6.945628 4.233591 6.978706 6.096027 1.410372 9.537701 -6.828898 4.570072 1.302578 -2.017179 1.225762 0.120492 6.509385 -8.507375 -4.712184 6.976749 3.805528 5.884415 -1.103091 -1.890811 3.341192 -8.723667 -7.868917 6.530986 1.050753 4.241270 9.127449 10.640988 16.512781 -6.847904 -0.475549 4.300750 -2.341481 -4.531877 5.135046 -9.356831 6.633449 0.988435 1.293415 14.178583 0.779756 -4.277475 6.492794 0.124822 1.102532 -9.968962 3.901913 -4.405486 2.757470 -5.068894 -1.097018 -7.222477 -3.676445 -6.867918 -6.366048 14.583753 -8.550567 -13.149661 8.527987 -2.678993 10.120598 -15.068298 11.365969 -5.510513 8.205139 -1.032670 -6.266040 0.901848 -5.783978 -2.895302 4.468977 1.418663 -2.244707 3.215521 7.675710 4.342536 3.380163 1.306717 6.708626 -0.699111 7.625782 -3.858384 3.511403 -2.109048 -2.349660 -3.203862 -1.730899 -0.913073 4.259015 -1.427955 4.988982 7.231858 3.501149 6.249997 7.343568 5.655844 -5.277925 0.208514 -1.747595 9.218487 -8.607896 -8.272135 0.087624 4.379615 -0.497336 3.780095 -15.894388 -12.796797 -10.311484 -15.085181 -6.695345 -2.104240 6.320261 1.673360 -3.039743 -10.079447 -7.619178 10.822130 1.720796 10.907735 6.970025 0.309338 11.488371 8.673210 -1.530397 -4.056589 3.187021 5.058427 -1.516031 0.500107 -12.460692 8.593659 -8.691994 7.240183 14.008637 -8.859258 7.090680 -5.785549 9.791798 -14.180080 13.952188 3.929642 -14.224942 2.542717 6.985087 5.656636 -3.727877 -8.365771 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::stack >, void>() = 0.044817 -0.256273 0.939189 0.605167 -0.290102 0.000000 0.036052 -0.336670 0.497510 -0.265564 -0.280262 0.135067 -0.411291 0.236487 -0.294118 0.361396 -0.953241 -0.420854 -0.061527 -0.298740 -0.176242 -0.247489 0.348718 0.019262 0.386888 0.569793 -0.305879 -0.018477 -0.269339 -0.225279 0.482487 -0.330520 0.282383 0.390065 0.062641 -1.067431 0.527474 0.174429 -0.289238 -0.465669 0.294046 -0.367769 0.089288 -0.576796 -0.177444 0.118600 0.144923 0.501509 0.411184 0.143432 -0.159295 -0.006637 0.073870 0.822925 -0.401009 0.188853 0.259341 -0.121817 -0.147209 -0.070831 0.155883 -0.001992 0.174566 0.309818 -0.147031 -0.553287 -0.164233 -0.547175 -0.387048 0.441709 -0.077177 0.224654 -0.489306 -0.107310 -0.483510 -0.097275 -0.608829 0.633499 0.772006 -0.562976 0.339794 0.043720 0.261898 0.059842 0.056555 0.216305 0.342629 0.196050 -0.142759 -0.039596 -0.285416 -0.129466 0.159327 -0.281750 -0.037928 -0.834074 0.257370 -0.792523 -0.454861 0.105812 0.298202 -0.081805 -0.005939 0.001262 0.212103 0.293294 -0.302213 -0.366436 0.164430 -0.082614 0.053426 0.002554 0.093495 0.052823 -0.163610 -0.269567 -0.722255 0.094161 -0.097369 -0.189623 0.208234 0.401611 -0.122703 -0.063081 -0.005365 0.175502 -0.266441 0.783034 0.000649 0.242553 -0.073557 0.190186 -0.065099 0.190002 0.398497 0.462850 -0.277102 -0.082294 -0.254230 0.067860 -0.472757 -0.404143 -0.092234 0.154519 0.266015 -0.432051 -0.473343 -0.240672 -0.404568 -0.826366 0.086890 -0.377483 -0.189573 0.442151 0.416787 0.480086 0.538896 0.655819 -0.443976 0.132668 -0.157701 -0.071002 0.456903 0.240603 0.405920 -0.237611 -0.188667 0.248679 -0.076732 0.208406 0.109750 -0.158264 0.141204 -0.619520 -0.009570 0.403510 0.422798 -0.033219 0.309855 0.310140 -0.090692 -0.315160 0.059722 0.476960 -0.039137 -0.116982 0.222203 -0.470093 0.401405 0.090881 0.085555 0.178153 0.035535 -0.209863 0.114589 -0.113055 0.176733 -0.295240 -0.188729 -0.183464 -0.065023 -0.404510 0.376180 -0.258291 -0.220487 -0.183332 -0.307621 0.584737 -0.633455 -0.207596 0.508167 -0.041191 0.552489 -0.503818 0.372336 -0.405907 0.706881 -0.003468 -0.018959 0.045895 -0.354322 -0.369831 0.012767 0.201936 0.060461 0.009328 0.381378 0.418674 0.059104 0.037365 0.573100 -0.115528 0.530484 -0.033186 0.287634 -0.169313 -0.222935 0.228107 -0.106385 -0.197309 -0.134915 0.298251 0.707512 0.247227 0.516831 0.683552 0.165711 0.584265 -0.354050 0.116885 -0.160602 0.388848 -0.249266 -0.197944 0.121792 0.417870 -0.225971 0.188909 -0.636550 -1.000804 -0.846194 -0.409751 -0.109533 -0.341756 0.087690 -0.175317 0.057755 -0.395976 -0.258599 0.332200 -0.199562 0.497812 0.270161 -0.004696 0.386906 0.537739 -0.442420 -0.273507 0.244150 0.327312 0.103678 0.190116 -0.796192 0.537259 -0.502807 -0.051514 0.813376 -0.472984 0.008194 -0.024349 0.623608 -0.351183 0.722527 0.235293 -0.453257 0.474203 0.422104 0.424817 0.537692 -0.338715 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::empty() const = -0.061833 -0.261137 0.681481 0.506468 -0.197877 0.041514 0.110987 -0.199577 0.249791 -0.053909 -0.145438 0.135643 -0.374759 0.111598 -0.040834 0.241812 -0.571990 -0.258945 -0.089766 -0.220447 -0.112649 -0.157849 0.178205 0.108802 0.320812 0.388933 -0.195535 -0.103937 -0.263970 -0.202203 0.215582 -0.130490 0.281267 0.347821 0.077706 -0.817790 0.315687 0.287500 -0.170343 -0.392165 0.255639 -0.251002 0.100135 -0.277683 -0.141123 0.140705 0.107343 0.192035 0.247841 0.132737 -0.051067 -0.031060 0.170845 0.534000 -0.162609 0.188458 0.237632 -0.124248 -0.104923 -0.103507 0.079017 -0.044813 0.151315 0.094106 -0.107253 -0.383423 -0.156110 -0.347442 -0.308860 0.237558 -0.052863 0.004282 -0.353416 -0.220373 -0.278654 -0.115607 -0.497883 0.432045 0.492875 -0.438637 0.304420 0.040936 0.054645 0.018525 0.092012 0.127382 0.161090 0.111380 -0.019330 0.047906 -0.110229 -0.180041 0.117402 -0.050978 -0.145497 -0.471912 0.253860 -0.376354 -0.380072 0.124664 0.185425 -0.147303 -0.115731 -0.002709 0.011383 0.286302 -0.213492 -0.278041 0.016308 0.033044 0.126283 -0.047143 -0.066560 0.091447 -0.170763 -0.222459 -0.512984 0.164838 -0.006585 -0.130392 0.070812 0.315273 -0.079802 0.045014 0.010431 0.142663 -0.194402 0.631897 0.041533 0.162674 -0.008686 0.073140 -0.134305 0.042811 0.262985 0.370429 -0.223727 -0.093892 -0.155810 0.037322 -0.234712 -0.134923 0.032139 0.233725 0.360050 -0.257923 -0.304158 -0.201479 -0.323548 -0.580744 0.047684 -0.239729 0.034761 0.378337 0.272875 0.280253 0.274668 0.560508 -0.309796 0.034448 -0.060683 -0.178965 0.275187 0.271474 0.271319 -0.207986 -0.178549 0.190929 0.006981 0.203317 0.078059 0.035269 0.089904 -0.362111 -0.038421 0.300927 0.238471 -0.041196 0.295070 0.316842 0.194958 -0.130349 0.002045 0.241068 -0.116856 -0.062593 0.139117 -0.351525 0.229143 0.067752 -0.067581 0.234330 -0.000542 -0.098246 0.165257 -0.144821 0.093055 -0.260308 0.030735 -0.188062 0.004029 -0.319087 0.108389 -0.164017 -0.199181 -0.150877 -0.152120 0.479024 -0.330868 -0.150268 0.262937 -0.003554 0.282337 -0.419105 0.461195 -0.257181 0.431613 -0.102492 -0.110079 0.046191 -0.166065 -0.209442 -0.025871 0.134464 -0.001793 -0.047199 0.364911 0.246113 -0.077694 0.001015 0.391170 -0.070124 0.400019 -0.090666 0.271200 -0.099068 -0.055451 0.124703 -0.068964 -0.120357 -0.065629 0.086619 0.524340 0.178571 0.289242 0.335013 0.147761 0.397266 -0.214515 0.150563 -0.061173 0.353526 -0.193487 -0.162134 0.078223 0.368203 -0.059488 0.110661 -0.473668 -0.631800 -0.423711 -0.326702 -0.074260 -0.074914 0.116087 -0.068371 -0.036233 -0.292753 -0.281974 0.252373 -0.145181 0.385613 0.144039 0.027795 0.336078 0.349953 -0.209305 -0.129146 0.137401 0.219841 0.089697 0.088664 -0.428200 0.341913 -0.347822 -0.028871 0.542160 -0.276291 0.140871 -0.021696 0.491888 -0.322759 0.536226 0.105868 -0.337022 0.379455 0.400470 0.264553 0.170521 -0.229746 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::top() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::pop() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator->() const = -0.034932 -0.179703 1.025687 0.689770 -0.237016 0.070156 0.007774 -0.573909 0.493835 -0.068204 -0.134101 0.124870 -0.391714 0.214901 -0.353810 0.415608 -0.793357 -0.333885 -0.299574 -0.596827 -0.245625 -0.165805 0.304148 -0.019624 0.460211 0.297143 -0.371035 -0.008001 -0.396544 -0.516440 0.316797 -0.170288 0.265700 -0.004785 0.043686 -1.035440 0.652309 0.451519 -0.335261 -0.411370 0.399045 -0.373548 0.004985 -0.297754 -0.197403 0.107639 -0.087794 0.116901 0.471920 0.175020 0.161044 0.277728 0.146914 0.910521 -0.454868 0.303129 0.177508 -0.111376 -0.231885 0.097373 0.061230 0.141006 0.155037 0.081614 -0.057063 -0.708058 -0.135718 -0.332371 -0.344475 0.427572 -0.179873 -0.246849 -0.362088 -0.261116 -0.551662 -0.187086 -0.531894 0.487578 0.605143 -0.533885 0.248982 -0.041986 -0.030633 0.092571 0.154885 0.119385 0.428425 0.149467 0.055064 -0.042844 -0.030405 -0.004954 0.240096 -0.003205 -0.284156 -0.784128 0.434563 -0.795058 -0.557783 0.128547 0.438116 -0.274339 -0.249880 -0.090822 0.036152 0.186594 -0.270577 -0.377576 0.100667 0.170802 0.205688 -0.070238 -0.041433 -0.189398 -0.093578 -0.137611 -0.728625 0.315770 -0.095333 -0.004332 -0.138805 0.473595 -0.046220 -0.222636 -0.005256 0.356843 -0.373958 0.693962 -0.264458 0.409885 -0.266095 0.369420 -0.276665 0.066311 0.358324 0.149278 -0.297221 -0.037193 -0.378877 0.055885 -0.531679 -0.041492 -0.238755 0.295143 0.419436 -0.341507 -0.380861 -0.108881 -0.419846 -0.856230 0.021861 -0.299604 -0.375501 0.268089 0.398308 0.510966 0.509191 0.648175 -0.309230 0.005536 -0.058330 -0.250696 0.584352 -0.050473 0.411246 -0.295707 -0.294482 0.243499 -0.065885 0.269756 0.064760 0.124214 0.076510 -0.579230 0.049647 0.336629 0.311591 -0.039805 0.415975 0.524992 0.355295 -0.357668 0.128598 0.450904 -0.284103 -0.014704 0.109632 -0.444836 0.117570 0.255854 0.051808 0.494025 0.023109 -0.106532 0.086126 -0.158695 0.244047 -0.372021 -0.015467 -0.251917 -0.017944 -0.345041 0.065241 -0.246619 -0.187342 -0.249462 -0.486493 0.609641 -0.704001 -0.318983 0.690432 -0.005693 0.332675 -0.577277 0.482329 -0.389298 0.634642 -0.092489 0.067810 0.013352 -0.114258 -0.570170 0.216350 0.161002 -0.121820 0.100225 0.611219 0.372178 0.061393 -0.198230 0.614874 -0.306683 0.682162 -0.238831 0.579002 -0.156795 -0.278067 0.126412 -0.101598 -0.373388 -0.276643 0.289602 0.529203 0.183232 0.416104 0.327171 0.266075 0.714673 -0.292878 0.431312 -0.116570 0.164268 -0.222432 -0.250767 0.360212 0.395547 -0.094409 0.140089 -0.709786 -0.792533 -0.814844 -0.504238 0.170658 -0.225476 0.075476 -0.175358 -0.117761 -0.434599 -0.462246 0.583740 -0.198235 0.517424 0.265855 0.110100 0.353880 0.593555 -0.326276 0.020655 0.015262 0.224256 0.214888 -0.084832 -0.614214 0.691343 -0.353377 -0.085609 0.765586 -0.370088 0.269469 0.133393 0.312639 -0.419089 0.638609 0.072887 -0.282568 0.602610 0.549847 0.468244 0.291690 -0.295988 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getWeight() = -0.204375 -0.266803 0.697432 0.502331 -0.081142 0.063862 0.106555 -0.232143 0.274255 0.204329 -0.098803 0.201998 -0.325665 0.100203 -0.060674 0.354124 -0.430927 -0.259300 -0.085222 -0.283013 -0.162522 -0.143133 0.161507 0.032731 0.335755 0.160838 -0.248116 -0.103331 -0.279629 -0.564411 0.051559 -0.147327 0.271873 -0.024860 0.020723 -0.867349 0.389731 0.357877 -0.191011 -0.387248 0.269819 -0.181234 0.105199 -0.078596 -0.166782 0.152600 0.126416 -0.064082 0.269449 0.236148 0.189947 0.036024 0.273727 0.629495 -0.167100 0.243520 0.212794 -0.150488 -0.164492 -0.046188 0.086200 -0.068288 0.179973 0.066055 -0.033901 -0.395637 -0.146603 -0.191293 -0.335841 0.198771 -0.145982 -0.162721 -0.270914 -0.225193 -0.257911 -0.174397 -0.356476 0.266207 0.500259 -0.354119 0.338063 0.052934 0.017347 0.055276 0.102120 0.096137 0.169749 0.119086 -0.045931 0.027713 0.190552 -0.075250 0.113662 0.243709 -0.169336 -0.362677 0.322676 -0.289752 -0.405311 0.206537 0.199139 -0.121503 -0.305178 -0.101928 0.019050 0.281192 -0.249585 -0.323608 -0.094150 0.038096 0.154657 -0.096373 -0.088918 -0.118565 -0.166696 -0.027642 -0.484041 0.128509 0.009539 -0.160154 -0.147130 0.308683 -0.010115 0.060330 -0.002879 0.257545 -0.195401 0.527167 0.019426 0.309361 -0.136832 0.149249 -0.375622 -0.069043 0.243080 0.116048 -0.214395 -0.085631 -0.216136 0.026547 -0.217156 0.057575 -0.058620 0.337884 0.571349 -0.158477 -0.303039 -0.160556 -0.261427 -0.586642 0.068487 -0.255175 -0.033218 0.273362 0.273597 0.126230 0.267007 0.585850 -0.262189 0.064872 -0.066622 -0.241744 0.317637 0.030575 0.286570 -0.224656 -0.198322 0.188963 0.180298 0.196649 0.093902 0.030570 0.103049 -0.324267 -0.015275 0.287564 0.190095 -0.066067 0.258843 0.287742 0.625139 -0.138520 -0.019866 0.222988 -0.125401 -0.019043 0.069522 -0.370809 0.115503 0.106511 -0.063333 0.320091 0.028939 -0.148050 0.183816 -0.175031 0.095876 -0.277922 0.170416 -0.219222 0.068642 -0.199817 -0.081050 -0.195294 -0.138837 -0.145276 -0.142934 0.479505 -0.361130 -0.209841 0.286535 0.001875 0.169767 -0.493778 0.595420 -0.270763 0.415742 -0.203312 -0.078657 0.007793 0.032114 -0.186263 0.058701 0.145772 -0.040713 0.039775 0.464161 0.216985 -0.032975 -0.065038 0.397623 -0.093294 0.391319 -0.070521 0.351676 -0.090214 -0.071013 0.033631 -0.070130 -0.136348 -0.080953 0.053592 0.281680 0.159636 0.056430 0.191652 0.208803 0.419346 -0.219669 0.296282 -0.034193 0.394209 -0.191836 -0.161177 0.110130 0.379684 -0.037804 0.133400 -0.485835 -0.459338 -0.411553 -0.362675 -0.063708 0.147176 0.107604 -0.102371 -0.047332 -0.282416 -0.297001 0.506644 -0.119008 0.380073 0.159676 0.093306 0.328853 0.327387 -0.094032 -0.132125 -0.104647 0.066157 0.097812 -0.022943 -0.258881 0.306544 -0.344810 -0.015295 0.398358 -0.223577 0.133219 0.132319 0.236953 -0.327277 0.504335 0.093873 -0.181864 0.447479 0.391182 0.386629 -0.082083 -0.215554 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::~stack() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 0.468858 -0.019429 4.013016 1.265426 -0.250821 -1.421809 1.718341 0.878313 0.687127 -0.633976 -1.009562 -1.429064 -1.089055 -0.500421 0.542018 0.543938 -3.772992 -2.227568 -0.202101 0.254132 -1.384865 -0.881693 2.421037 -0.467832 2.140062 3.134797 -2.325075 -1.564347 1.896747 -0.945368 2.757867 -1.268706 1.305818 3.594298 -0.662822 -5.990628 3.020266 -1.056797 -0.617184 1.993465 1.609280 1.288120 0.198897 -2.094233 -1.770583 0.977264 2.319858 4.141995 1.703273 1.579782 -0.449929 -3.153564 0.631227 3.792323 0.038491 -0.534561 1.494765 -0.290727 -0.011891 -0.551609 0.093159 -2.023506 -0.551746 1.245606 0.301820 0.956474 1.848031 -3.935994 -1.492653 2.373007 -0.202553 1.129902 -0.882455 -0.347361 -0.578331 0.735157 1.424509 2.731433 2.078895 -2.833371 1.114826 0.377356 2.260540 1.127029 -4.662271 1.017036 -2.264230 0.366116 -0.115761 -1.763010 -3.481570 -2.316744 -1.289118 -2.926877 0.083713 -3.723997 0.692211 -2.025802 -0.885463 -0.458814 0.362171 -0.386813 0.394988 0.199800 1.459459 -0.591545 1.189093 0.139755 -0.380066 -1.275311 -2.225974 2.841034 0.512116 0.841788 -1.386848 0.110856 -3.266007 2.133152 -1.567195 -0.654527 1.504155 1.185542 -1.899020 0.955496 1.033982 1.093167 -1.190193 2.931796 2.507839 -0.068735 1.283317 0.874908 1.550431 -1.156314 1.933988 3.557751 -0.544744 -2.689323 -1.108275 0.119137 -2.334348 -1.649221 0.398744 -0.514712 1.107488 -3.153121 -3.801763 -0.962691 -3.001185 -4.050850 0.999984 -0.951877 0.095390 3.445584 0.778118 2.586313 1.371225 3.127505 -3.165470 0.807965 -1.078487 -1.096546 -1.780268 1.269955 1.190043 -0.947313 0.280229 0.568762 -0.165507 0.673382 -0.274611 -2.184816 1.344659 -3.211272 -0.623626 0.330644 -0.445637 -0.124430 -2.723630 1.260237 -0.138983 -1.590007 -1.047257 2.780019 0.177450 -2.032269 3.363916 -1.112827 2.032492 -0.760589 -1.049269 0.182234 1.134605 -0.866519 1.960319 -1.141152 -1.205519 -0.700642 -1.393777 0.972985 -0.114681 -1.103550 0.489514 -2.107251 0.903411 0.322902 -2.418105 1.403143 -0.497108 -0.938294 0.796665 0.945692 1.329124 -0.648416 3.366560 -0.761050 1.724517 1.304083 -2.019767 0.008107 -3.044724 1.052822 -0.452879 -1.734989 1.744566 0.016643 2.090470 1.599820 0.815182 0.088880 1.646077 0.611463 3.121014 1.161706 -2.146562 -1.796675 -2.289744 0.396566 0.538095 -1.068071 -0.002718 -0.178684 2.126195 1.368827 1.658581 3.888903 0.532401 2.494697 -1.209888 -2.200585 0.304528 2.988138 -1.254781 -1.684127 1.058623 1.813046 -1.925579 0.420968 -1.909487 -3.659911 -3.411177 -3.799255 -2.256756 -1.849396 0.484337 -2.165380 -0.314470 -0.421162 0.051830 0.056389 0.500983 1.003238 1.874223 -1.622067 2.364411 2.290654 -3.292707 -2.183519 3.668038 1.745945 0.625566 1.927370 -5.387256 2.324197 -1.035078 -0.576125 3.019324 -3.447551 0.005657 -1.238246 2.104572 -2.245496 3.189110 -0.104354 -2.046933 0.696823 -1.538013 0.765193 2.171532 -0.934935 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.064906 -0.231965 0.664988 0.501734 -0.191416 0.032588 0.093594 -0.254334 0.359499 -0.025383 -0.145523 0.070187 -0.403796 0.161677 -0.034361 0.328591 -0.626186 -0.285195 -0.058756 -0.227148 -0.112232 -0.229941 0.290748 0.022161 0.301816 0.391528 -0.207991 -0.079348 -0.191795 -0.255371 0.317832 -0.223905 0.293440 0.387284 0.009396 -0.855234 0.386032 0.198608 -0.209570 -0.360524 0.244221 -0.272826 0.132502 -0.327733 -0.144679 0.142809 0.089005 0.219964 0.337622 0.136615 0.010525 -0.057712 0.157981 0.527209 -0.301084 0.172738 0.147249 -0.127971 -0.149235 -0.078878 0.095736 0.013543 0.207273 0.229108 -0.134098 -0.407434 -0.151021 -0.371979 -0.422785 0.309042 -0.118683 0.113141 -0.410634 -0.133437 -0.233081 -0.112290 -0.498082 0.440090 0.578399 -0.398814 0.309448 0.039700 0.078380 -0.017853 0.067584 0.139226 0.218216 0.111049 -0.102416 0.019987 -0.063516 -0.169864 0.137294 -0.055235 -0.049534 -0.460841 0.196050 -0.351331 -0.374061 0.104000 0.197473 -0.057885 -0.171673 -0.009978 0.101558 0.281430 -0.239739 -0.351069 0.052525 -0.032459 0.103589 -0.049082 -0.058994 0.021750 -0.207891 -0.227131 -0.526350 0.033538 -0.085107 -0.210630 0.077786 0.304326 -0.106574 0.000805 0.024456 0.153117 -0.195357 0.635550 -0.000611 0.238089 0.037921 0.093402 -0.118960 0.046737 0.294163 0.389249 -0.163440 -0.095984 -0.220852 0.016651 -0.333544 -0.206193 0.054645 0.183808 0.413539 -0.263026 -0.308962 -0.126258 -0.271946 -0.679835 0.109237 -0.310698 0.067025 0.365645 0.311455 0.239592 0.380807 0.594358 -0.376946 0.085277 -0.115739 -0.131686 0.368661 0.299557 0.317101 -0.192032 -0.181247 0.189743 0.023533 0.147606 0.085728 -0.053403 0.072046 -0.414397 -0.028886 0.310936 0.248028 -0.047624 0.236495 0.232073 0.218276 -0.145881 0.080432 0.336225 -0.019027 -0.037687 0.139817 -0.398326 0.293083 0.057061 -0.050164 0.145400 -0.007628 -0.165886 0.114306 -0.148689 0.126797 -0.286572 -0.019201 -0.186325 0.030136 -0.354763 0.139771 -0.147918 -0.241077 -0.083257 -0.058873 0.461904 -0.303847 -0.130077 0.343795 -0.045831 0.328845 -0.409819 0.479519 -0.300729 0.436874 -0.162484 -0.103465 0.032602 -0.164041 -0.192628 -0.047822 0.156108 0.065079 -0.005390 0.379894 0.288138 -0.033114 0.029721 0.428103 -0.001646 0.393664 -0.040600 0.298868 -0.087806 -0.033873 0.172057 -0.105808 -0.104649 -0.093493 0.104558 0.565983 0.262070 0.260616 0.438077 0.115478 0.433250 -0.233489 0.180300 -0.066056 0.355907 -0.167704 -0.120331 0.090603 0.349567 -0.153525 0.175355 -0.470034 -0.696959 -0.411166 -0.298235 -0.128743 -0.051518 0.133222 -0.085796 0.049333 -0.288410 -0.216798 0.264770 -0.177125 0.413041 0.122511 0.035118 0.306471 0.416818 -0.255827 -0.210260 0.102937 0.197117 0.062607 0.124014 -0.471594 0.365078 -0.380558 -0.014930 0.514106 -0.312464 0.020104 -0.060048 0.520810 -0.293247 0.554208 0.150261 -0.230174 0.477577 0.327856 0.313513 0.276994 -0.230939 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.025115 -0.387746 1.657829 1.128823 -0.188932 0.102722 0.428241 -0.878732 0.899208 0.172909 -0.233087 0.223220 -0.830173 0.380973 -0.707532 0.827277 -1.198860 -0.673704 -0.314404 -0.875568 -0.305264 -0.398867 0.728753 -0.135340 0.897500 0.186177 -0.549932 -0.425532 -0.841335 -0.846117 0.587560 -0.382487 0.463077 -0.196517 -0.173196 -1.658222 1.035365 0.703902 -0.582691 -0.729644 0.778790 -0.654323 0.014883 -0.425645 -0.105173 0.111521 0.002451 0.514492 0.867527 0.442171 0.403257 0.380019 0.339695 1.711824 -0.947377 0.563577 0.270616 -0.083432 -0.380437 0.288367 0.125680 0.154317 0.325006 0.280131 -0.065716 -1.078708 -0.296801 -0.555101 -0.707471 0.695544 -0.277637 -0.177154 -0.753551 -0.129846 -0.749059 -0.240561 -1.141625 0.809336 1.161649 -0.875089 0.606525 -0.015370 0.023195 -0.047613 0.118382 0.209283 0.500459 0.222357 -0.024361 -0.364010 -0.361126 0.077488 0.283434 -0.110851 -0.333230 -1.501103 0.730203 -0.916792 -1.019094 0.158567 0.632551 -0.444308 -0.261943 0.020183 0.105573 0.418733 -0.559796 -0.810606 0.021921 0.158211 0.270011 -0.174303 0.050158 -0.508535 -0.238476 -0.348779 -1.173479 0.296367 -0.216181 -0.272516 -0.376170 0.732939 -0.127255 -0.170542 0.069850 0.615216 -0.492752 0.989129 -0.283201 0.745114 -0.007570 0.549365 -0.699519 0.225306 0.729423 0.477294 -0.427341 0.222702 -0.685442 0.137225 -0.808661 -0.062436 -0.233530 0.560094 0.625282 -0.729206 -0.637691 -0.131519 -0.265694 -1.214624 0.230056 -0.554210 -0.463126 0.143759 0.704036 0.609424 0.870942 1.164811 -0.639265 0.177388 -0.027044 -0.287128 0.964625 -0.061507 0.736707 -0.496613 -0.567271 0.288400 0.142909 0.297916 -0.067486 0.261051 0.132503 -1.065107 0.078171 0.257200 0.446072 -0.334649 0.682958 0.731969 0.626232 -0.750542 0.235838 0.812688 -0.415660 0.008192 0.168923 -0.980286 0.400297 0.348418 0.101829 0.725793 0.091180 -0.376596 0.331126 -0.345186 0.328984 -0.601527 -0.030720 -0.514043 -0.318383 -0.558222 0.207214 -0.283811 -0.434673 -0.308893 -0.501423 1.010044 -0.867999 -0.452093 0.997016 -0.147810 0.305127 -1.089346 1.352255 -0.691888 0.621535 -0.194744 0.067759 -0.003608 0.235378 -0.884095 0.165460 0.302292 -0.200122 0.515892 1.193202 0.611057 0.154086 -0.192592 1.063726 -0.409189 0.962654 -0.337960 0.931593 -0.271882 -0.597187 0.198657 -0.205361 -0.418288 -0.423101 0.436062 1.095120 0.393670 0.484122 0.716026 0.447758 1.267470 -0.498611 0.821301 -0.235223 0.495985 -0.331337 -0.325573 0.486510 0.377243 -0.259868 0.550781 -1.232589 -1.400538 -0.965052 -0.895014 0.350645 -0.468390 0.247180 -0.366757 -0.062836 -1.047124 -0.752486 0.560086 -0.362436 0.463993 0.577843 0.207555 0.568778 0.951264 -0.533762 0.064423 -0.037597 0.453711 0.274691 -0.348079 -0.761805 0.921075 -0.762809 -0.003641 1.140330 -0.526412 0.266052 -0.006307 0.600300 -0.720365 1.149903 0.213642 -0.342140 1.096445 0.915060 1.007701 0.383346 -0.488539 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.351163 -0.275673 1.683255 1.151641 -0.364186 0.058173 0.268163 -0.830474 1.041718 0.298331 -0.321802 0.055146 -0.544576 0.304355 -0.124113 0.958660 -1.358620 -0.451373 -0.124320 -0.910093 -0.416309 -0.312959 0.428272 -0.350262 0.803307 0.403820 -0.285625 -0.308150 -0.176106 -0.712398 0.592170 -0.458648 0.278707 0.245010 0.226317 -1.645449 1.080567 0.310597 -0.552743 -0.712720 0.426707 -0.477507 0.181442 -0.418223 0.256459 0.277312 0.195345 1.106330 0.839366 0.577437 0.172922 0.069182 0.439775 1.689889 -0.745261 0.428591 0.251073 -0.275166 -0.254352 0.395924 0.176954 -0.029966 0.200184 0.223169 0.090901 -1.065481 -0.322044 -0.646518 -0.457237 0.636034 0.046239 -0.286267 -0.906392 -0.351518 -0.379611 -0.316631 -2.868248 1.055955 1.111986 -1.032429 0.521505 0.265115 0.317570 0.136884 0.233664 0.181564 0.776068 0.230483 -0.226564 0.016600 -0.291685 -0.554776 0.481795 -0.806780 -0.231123 -1.758991 0.428402 -0.649500 -0.850842 0.392839 0.686768 -0.194424 -0.073312 -0.103749 0.295809 0.284409 -0.534211 -0.656710 0.134522 -0.055924 -0.002144 -0.054875 0.043590 -0.425447 -0.179218 -0.137290 -1.165792 0.303665 -0.113409 -0.087553 -0.168316 0.718922 0.081089 -0.288505 -0.004006 0.399948 -0.434428 1.132914 -0.107137 0.769105 0.027794 0.559635 -0.932599 0.960368 0.783086 0.101565 -0.004306 0.268764 -0.515400 0.231879 -0.920711 0.120907 -0.108985 0.726384 0.580417 -0.565046 -0.710245 -0.254752 -0.337520 -0.854462 0.530589 -0.497126 -0.372141 0.004758 0.663274 0.881379 0.845424 0.392491 -0.867744 0.094279 -0.445690 0.220304 0.833887 0.431490 0.736157 -0.461365 -0.094546 0.122516 0.266004 0.101526 0.135506 -0.150442 0.344039 -0.964829 0.289171 0.315097 0.460600 -0.462323 0.610731 0.689163 0.808416 -0.592199 0.030313 0.783059 -0.300358 -0.139404 0.361449 -0.768753 0.550660 0.258219 0.317354 0.461965 0.040292 -0.085558 0.091861 -0.272429 0.158170 -0.233973 -0.375099 -0.367575 -0.528048 -0.264269 0.821224 -0.631684 -0.367619 -0.212276 -0.299846 0.922219 -0.722434 -0.082332 1.040816 -0.769530 0.237179 -0.530915 1.662997 -0.679583 0.162530 -0.364341 -0.135946 -0.154105 0.167572 -0.773849 0.192157 0.283695 0.007582 0.202516 0.971150 0.608679 0.162521 -0.053586 1.010433 -0.569302 0.845626 -0.158066 0.869161 -0.439263 -0.036263 0.018638 -0.121904 -0.341419 -0.327501 0.379639 1.084016 0.110426 0.469524 0.571343 0.234616 0.906941 -0.542696 0.776830 -0.232214 0.378530 -0.473836 -0.299435 0.491672 0.110002 -0.294239 0.324850 -1.167051 -0.923852 -0.966184 -0.083522 -0.085057 -0.135825 0.171154 -0.306421 -0.049921 -0.757861 -0.620041 0.646616 -0.269339 -0.684527 0.412723 0.067758 0.586136 0.909114 -0.239195 -0.204773 -0.156735 0.103439 0.274292 -0.218567 -0.781239 1.038275 -0.807898 -0.041441 1.126639 -0.497448 0.073348 -0.009598 0.972789 -0.653171 0.798025 0.161167 -0.339652 0.689828 1.385635 1.042954 0.259498 -0.472882 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::~_List_base() = -0.087369 -0.264129 0.720739 0.506486 -0.290167 0.036215 0.083844 -0.255226 0.415269 -0.233830 -0.209404 0.050405 -0.487764 0.177861 -0.095168 0.250215 -0.831142 -0.358684 -0.028582 -0.205048 -0.110101 -0.310905 0.314693 0.105864 0.283834 0.563179 -0.220680 -0.026608 -0.228924 -0.097634 0.471586 -0.287258 0.333465 0.573848 0.028127 -1.078061 0.400389 0.149323 -0.226089 -0.410346 0.256229 -0.397379 0.165537 -0.518978 -0.238330 0.117931 0.126173 0.390881 0.379684 0.035850 -0.153474 -0.124188 0.056916 0.632815 -0.368864 0.167170 0.180146 -0.142071 -0.168368 -0.121495 0.101134 -0.008261 0.252680 0.336852 -0.261200 -0.418790 -0.110754 -0.515956 -0.493519 0.394754 -0.095246 0.267724 -0.473960 -0.092140 -0.378067 -0.117199 -0.384639 0.574605 0.701951 -0.473078 0.370855 0.021808 0.175709 -0.002613 0.102660 0.187016 0.322859 0.112391 -0.175199 -0.001329 -0.264462 -0.173574 0.125227 -0.169984 0.026560 -0.587543 0.149171 -0.586544 -0.421731 0.062918 0.170647 -0.047975 -0.134680 0.009155 0.202864 0.313520 -0.277746 -0.418561 0.095927 -0.034018 0.013195 -0.009261 0.013785 0.120365 -0.220824 -0.390731 -0.608164 0.002722 -0.095144 -0.253650 0.199433 0.389611 -0.192768 0.024384 0.055520 0.125725 -0.209208 0.763493 -0.001464 0.143866 0.049620 0.034866 0.023241 0.025417 0.297478 0.600311 -0.211494 -0.173392 -0.194740 0.027889 -0.412791 -0.420277 0.060825 0.143442 0.323129 -0.352620 -0.342412 -0.176404 -0.337070 -0.836024 0.083067 -0.359683 0.030767 0.514163 0.374811 0.352575 0.448160 0.673392 -0.424270 0.151133 -0.141249 -0.128790 0.414559 0.387903 0.377714 -0.217599 -0.200888 0.218595 -0.084103 0.215323 0.069448 -0.128691 0.053393 -0.505298 -0.102949 0.357612 0.359800 0.042829 0.275641 0.254570 0.023045 -0.271317 0.136173 0.397451 0.020487 -0.062367 0.180222 -0.437818 0.397627 0.072140 -0.083058 0.115814 -0.018409 -0.237739 0.088075 -0.106472 0.175417 -0.359628 -0.126404 -0.191448 0.029704 -0.466279 0.217347 -0.182508 -0.312097 -0.152986 -0.140193 0.523684 -0.447271 -0.196245 0.422573 -0.021583 0.566644 -0.507986 0.382044 -0.357781 0.634301 -0.133943 -0.106347 0.052853 -0.309691 -0.201574 -0.037956 0.173569 0.076973 -0.007109 0.350011 0.370840 0.041845 0.087062 0.497542 0.055681 0.401098 -0.045788 0.255275 -0.102987 -0.091023 0.269290 -0.141800 -0.078010 -0.028663 0.207704 0.723156 0.377955 0.411256 0.647129 0.180922 0.446142 -0.258530 0.050552 -0.131369 0.406846 -0.184407 -0.148695 0.035183 0.433478 -0.191301 0.185466 -0.552823 -0.960520 -0.592095 -0.383444 -0.160744 -0.200560 0.123164 -0.049805 0.130453 -0.384156 -0.167104 0.213301 -0.218814 0.627233 0.141572 0.017712 0.364052 0.512752 -0.386154 -0.313600 0.300565 0.314106 0.006739 0.250304 -0.711882 0.426152 -0.483658 0.050647 0.650625 -0.415496 -0.025836 -0.111003 0.683758 -0.337488 0.672710 0.231753 -0.375306 0.496418 0.314506 0.291343 0.508180 -0.285164 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_clear() = 0.314976 -1.009866 6.433739 4.116286 -1.253148 0.271435 1.041284 -3.510137 3.024757 0.433138 -0.920414 0.587916 -2.426897 0.962857 -1.679285 2.579918 -4.976360 -2.014612 -1.485951 -3.542625 -1.241114 -1.304323 2.228830 -0.108017 3.193892 1.227423 -1.990359 -0.843196 -1.923645 -3.765936 2.034238 -1.104926 1.775061 -0.157011 0.079573 -6.791729 4.145084 2.433561 -1.858920 -2.421935 2.583533 -1.649935 -0.533060 -1.134346 -1.041396 0.721601 -0.102083 2.074088 3.038259 1.493527 0.953822 1.087061 1.261492 5.780107 -2.701263 1.729684 0.880862 -0.991259 -1.289119 1.050630 0.319305 0.348818 0.946050 0.907841 0.193191 -3.963085 -0.006159 -1.836945 -2.512739 2.921795 -0.451378 -1.581270 -2.116792 -0.995612 -2.719645 -0.638209 -2.166035 3.229126 3.906469 -2.666926 1.932277 -0.157750 -0.278434 -0.166782 0.125700 0.470517 2.443087 0.732048 0.212946 -1.383551 -1.294568 -0.885249 1.203575 -0.190032 -1.249385 -4.885794 2.494618 -4.100733 -3.336105 0.466022 2.657732 -2.096548 -1.625435 -0.412254 0.730415 1.061355 -1.049300 -2.344143 -0.013980 0.890691 -0.000794 -0.247109 -0.283401 -1.156134 -0.831451 -0.347030 -4.204649 1.609215 -0.752539 -0.198545 -1.227669 2.496780 -0.372527 -0.885345 0.370512 2.551016 -1.746206 3.113164 -1.204738 2.635302 0.087616 2.052988 -1.213363 0.438192 2.283996 0.937787 -1.047997 -0.409674 -2.297992 0.806878 -3.211403 0.232583 -1.258053 2.276180 2.507711 -2.379823 -2.421540 -0.469985 -1.632208 -4.415803 0.483030 -1.941482 -2.360296 1.052395 2.333944 2.298256 2.750461 3.297481 -2.514851 0.772758 -0.184500 -1.047663 2.999113 -0.491757 2.455632 -1.798825 -1.581927 0.858558 0.063531 1.611133 -0.502944 0.563943 0.488226 -3.653748 -0.473770 1.394362 1.395350 -0.398708 1.813360 3.193563 3.566004 -2.645048 0.612056 3.009676 -1.663199 -0.529747 1.107361 -3.164335 0.978942 1.267084 0.730094 3.336296 0.234584 -1.008703 0.848828 -0.876103 0.774369 -2.093351 -0.153912 -1.573448 -0.167840 -1.649550 -0.032642 -1.638907 -1.214702 -1.536503 -2.257686 3.576314 -3.520138 -2.727509 4.505534 -1.302983 1.625421 -4.199273 4.213232 -2.195356 2.095280 -0.829292 0.073499 -0.195986 -0.344909 -3.558750 1.305240 0.624582 -0.549263 1.717203 4.347034 2.158835 0.614173 -1.217734 3.704517 -1.721599 3.901543 -1.536507 3.231686 -1.169975 -1.776064 -0.103557 -0.514857 -1.965143 -1.554979 1.587506 2.860488 1.142195 1.878076 2.366469 1.704726 4.210730 -1.534021 3.099168 -0.631990 1.234322 -1.149829 -1.544315 2.335937 1.661172 -1.080880 1.898718 -4.532640 -4.707131 -4.162576 -3.746429 0.565267 -1.625898 1.316948 -1.232980 -0.603907 -3.283312 -2.658835 2.742919 -0.500830 2.225471 2.171799 0.474530 1.952805 3.469713 -1.733781 0.358506 -0.201362 1.599780 0.951215 -1.471935 -3.205776 3.766495 -2.305541 0.104507 4.595943 -2.127376 1.443145 -0.652523 2.099068 -3.094579 3.725389 0.571198 -1.525327 3.255283 2.679807 2.800808 1.311466 -1.761242 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node::_M_valptr() = -0.005580 -0.183730 0.756475 0.562816 -0.233169 0.015668 0.067870 -0.327836 0.332208 -0.096982 -0.117626 0.069868 -0.373138 0.165229 -0.051790 0.325277 -0.660786 -0.253100 -0.161641 -0.337222 -0.122391 -0.145535 0.294991 0.012958 0.361881 0.399629 -0.234319 -0.097532 -0.217993 -0.220653 0.329350 -0.164204 0.297589 0.382030 0.031307 -0.853145 0.421712 0.266895 -0.235546 -0.339292 0.303851 -0.272472 0.083696 -0.332836 -0.149005 0.136005 0.003479 0.169444 0.348527 0.139090 0.002453 0.054761 0.149871 0.533664 -0.306708 0.166941 0.145710 -0.141615 -0.163156 -0.060190 0.069750 0.066829 0.164945 0.112359 -0.088859 -0.517903 -0.160882 -0.382315 -0.367235 0.302571 -0.091041 0.000331 -0.374596 -0.196284 -0.273397 -0.120390 -0.497147 0.465788 0.493494 -0.434995 0.236328 -0.010808 -0.024128 -0.001984 0.060852 0.144699 0.204256 0.111906 0.030019 0.023766 -0.086253 -0.172254 0.183974 -0.071365 -0.142264 -0.516497 0.265004 -0.387737 -0.377379 0.084331 0.297282 -0.157226 -0.173749 -0.025069 0.005563 0.257409 -0.203651 -0.281004 0.093485 0.027709 0.170195 -0.045669 -0.114344 0.018724 -0.187027 -0.234392 -0.560911 0.192678 -0.101034 -0.080078 0.049609 0.310552 -0.103905 -0.106738 0.006855 0.202933 -0.276746 0.650224 -0.089912 0.250816 0.004607 0.145218 -0.082408 0.039122 0.315172 0.392484 -0.196321 -0.113858 -0.283017 0.017526 -0.367185 -0.155432 0.047067 0.205218 0.393542 -0.283620 -0.305416 -0.107813 -0.330960 -0.685478 0.061414 -0.270149 0.011364 0.376293 0.294825 0.324304 0.394794 0.582651 -0.331462 0.026221 -0.082570 -0.184178 0.408839 0.272003 0.313819 -0.205368 -0.178375 0.187858 -0.068006 0.189904 0.075216 0.067444 0.081700 -0.440347 -0.006567 0.301250 0.233381 -0.054362 0.265533 0.342529 0.188836 -0.133553 0.063896 0.351475 -0.133051 -0.051593 0.164587 -0.353768 0.206278 0.101952 -0.064164 0.247062 -0.003749 -0.107449 0.099650 -0.149922 0.128090 -0.265460 -0.014382 -0.174714 0.029633 -0.352437 0.102011 -0.162373 -0.221635 -0.125475 -0.178607 0.482650 -0.344692 -0.160258 0.388808 -0.033535 0.282760 -0.417233 0.462414 -0.296554 0.431995 -0.132696 -0.076336 0.035328 -0.196277 -0.341505 0.010897 0.129063 0.020326 -0.036417 0.432938 0.301715 -0.074180 -0.072865 0.451184 -0.102354 0.526497 -0.106179 0.373823 -0.117312 -0.066316 0.155100 -0.068769 -0.221298 -0.173280 0.130464 0.569223 0.180031 0.368171 0.361940 0.112943 0.519700 -0.231287 0.246600 -0.056428 0.264551 -0.153621 -0.162112 0.207772 0.372524 -0.103630 0.139712 -0.496323 -0.692280 -0.440158 -0.337966 -0.013299 -0.097070 0.119537 -0.110343 -0.043803 -0.288180 -0.297490 0.248360 -0.164197 0.431083 0.145531 0.024800 0.297063 0.423997 -0.283448 -0.102945 0.112115 0.239721 0.157844 0.063336 -0.510705 0.465817 -0.317716 -0.093127 0.611229 -0.314731 0.135748 -0.055158 0.515967 -0.312899 0.548328 0.066904 -0.266770 0.492615 0.389135 0.272247 0.290916 -0.220755 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____clang_call_terminate = -0.080257 -0.162100 0.197653 0.097409 -0.326661 0.017722 -0.001992 0.014260 0.206717 -0.242866 -0.228606 -0.211401 -0.275486 0.071597 -0.177423 -0.104239 -0.464595 -0.199295 -0.050907 -0.008219 0.091537 -0.247453 0.046269 0.175426 -0.038428 0.301299 0.042050 0.108864 -0.049721 0.231819 0.332158 -0.199284 0.127233 0.397847 0.047079 -0.386152 0.107816 0.074003 -0.021418 -0.204752 0.003893 -0.300172 -0.047454 -0.317153 -0.300949 -0.007392 -0.017310 0.414421 0.010874 -0.290454 -0.251498 -0.112466 -0.141784 0.279265 -0.178160 -0.027672 -0.079219 -0.045480 -0.018213 -0.122169 0.037435 0.102140 0.125252 0.276596 -0.106404 -0.081841 0.092179 -0.194420 -0.225865 0.225554 -0.005544 0.336155 -0.115395 0.113013 -0.316541 0.087410 0.211524 0.366565 0.342594 -0.048366 0.113464 0.088042 0.051878 -0.054403 -0.048411 0.086332 0.372007 0.009934 0.025435 -0.138547 -0.351846 -0.034568 -0.014758 -0.192818 0.029992 -0.181301 0.064053 -0.431266 0.001999 -0.170453 -0.036641 -0.123345 0.168812 0.030982 0.097441 0.085399 0.050223 -0.105838 -0.068735 0.064088 -0.002357 0.029734 0.175454 0.296051 0.034978 -0.334964 -0.095493 -0.115619 -0.121477 -0.151089 0.333762 0.092296 -0.150589 -0.049889 0.122055 0.033692 0.041123 0.168678 0.000150 0.002931 0.140397 -0.097454 0.358042 -0.077158 0.012293 0.409109 0.046094 -0.095829 0.091068 0.026397 -0.095381 -0.425435 -0.015882 -0.187756 -0.131516 -0.257512 0.069851 -0.114031 -0.052071 -0.219686 -0.189172 -0.200943 -0.049389 0.305666 0.160495 0.367561 0.150403 0.345583 -0.295007 0.244686 0.003876 -0.066377 0.048587 0.135594 -0.038916 0.018546 -0.121854 -0.010541 -0.139996 0.246189 -0.101830 -0.153418 -0.189795 -0.157894 -0.157059 0.251059 0.146443 0.160427 0.223226 0.121828 -0.363661 -0.328749 0.284418 0.196874 -0.033977 -0.026243 0.119384 -0.237166 0.196661 0.026141 -0.049685 -0.122804 -0.091470 -0.000415 0.021115 -0.065734 -0.012349 -0.263307 -0.093582 -0.078290 0.074307 -0.368720 0.134217 -0.065822 -0.152285 -0.084855 -0.053284 0.098213 -0.325068 -0.227426 0.174744 0.074300 0.334786 -0.228769 -0.179226 -0.130494 0.315891 0.044013 0.073737 -0.015201 -0.247246 -0.063353 -0.140658 0.093185 -0.017432 0.104031 -0.004460 0.143711 -0.031554 0.113654 0.219175 0.096004 0.108329 -0.155062 -0.064619 0.128286 -0.105067 0.100247 -0.130862 0.034376 0.130118 0.248789 0.307311 0.286890 0.302549 0.476845 0.111242 0.044806 0.104489 -0.083770 -0.120062 0.058001 0.010374 0.089948 -0.091525 0.174208 -0.236235 0.166733 -0.217737 -0.593107 -0.344794 -0.127432 -0.067648 -0.456872 0.109552 0.088040 0.206970 -0.216062 -0.077034 -0.122702 -0.042719 0.436052 0.002034 -0.052906 0.028528 0.125850 -0.251605 -0.179652 0.372488 0.269109 -0.071879 0.104076 -0.346074 0.090721 -0.221151 0.114121 0.369037 -0.291246 0.019411 -0.169215 0.346618 -0.144185 0.395540 0.287194 -0.256649 0.116173 -0.085499 0.000812 0.453306 -0.130770 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.040231 -0.673241 2.411878 1.656984 -0.130947 0.130664 0.847906 -1.118135 1.218191 0.431324 -0.341670 0.477467 -1.292556 0.517644 -0.884499 1.209028 -1.651670 -1.075115 -0.324330 -1.115676 -0.416815 -0.611430 1.081269 -0.123855 1.385662 0.252143 -0.826041 -0.824674 -1.373211 -1.354513 0.762171 -0.566979 0.794704 -0.220951 -0.293152 -2.511586 1.423483 1.075661 -0.774116 -1.146039 1.193895 -0.903496 0.019615 -0.526401 -0.033054 0.241917 0.200628 0.796348 1.234719 0.734814 0.584654 0.417532 0.521841 2.360729 -1.289431 0.820792 0.475098 -0.197233 -0.561247 0.306350 0.202544 0.025059 0.567042 0.454038 -0.171050 -1.483541 -0.362975 -0.797955 -1.152704 0.951678 -0.201667 -0.183472 -1.095299 -0.117303 -0.908448 -0.307962 -1.200583 1.090675 1.762417 -1.130942 1.065204 0.006657 0.094688 -0.200433 0.114908 0.292958 0.591023 0.311870 -0.103948 -0.702987 -0.769451 0.019243 0.259612 0.150659 -0.399706 -1.911259 1.043508 -1.014219 -1.503466 0.197548 0.814216 -0.658187 -0.558193 0.154997 0.219415 0.755931 -0.732669 -1.216125 -0.156657 0.143622 0.210981 -0.300790 0.022876 -0.765356 -0.522036 -0.511781 -1.675964 0.360194 -0.256758 -0.525890 -0.652677 0.998962 -0.274289 -0.028449 0.128320 0.933054 -0.626466 1.287799 -0.206812 1.006424 0.329576 0.558273 -1.075247 0.158624 1.056732 0.951537 -0.689054 0.193271 -0.998322 0.218037 -1.040240 -0.085196 -0.242765 0.995592 1.111355 -1.134159 -0.987455 -0.257133 -0.166961 -1.622261 0.386686 -0.833978 -0.449746 0.084541 1.014696 0.576020 1.170242 1.851683 -0.991026 0.467130 0.056166 -0.415625 1.317927 0.002471 1.074599 -0.762640 -0.824975 0.412030 0.372489 0.414807 -0.201887 0.397666 0.245603 -1.555046 -0.117267 0.327016 0.526075 -0.477988 0.937528 0.998143 1.266052 -1.124860 0.243649 1.132171 -0.555729 -0.058891 0.325070 -1.492634 0.645752 0.416382 0.103868 1.171970 0.172111 -0.763604 0.631119 -0.435816 0.360253 -0.895938 0.136128 -0.783975 -0.392828 -0.759966 0.129662 -0.416994 -0.665139 -0.473124 -0.540791 1.528026 -0.914172 -0.906760 1.246382 -0.335863 0.415045 -1.890205 2.103200 -1.007255 0.637587 -0.407510 0.016955 -0.003268 0.426291 -1.214640 0.202319 0.444411 -0.270371 0.893714 1.824248 0.855106 0.192670 -0.245565 1.466851 -0.430111 1.323200 -0.421655 1.273118 -0.396751 -0.821072 0.193945 -0.276495 -0.483044 -0.483341 0.452848 1.504067 0.644754 0.537465 1.102754 0.680434 1.812839 -0.735075 1.184431 -0.288126 0.973560 -0.445630 -0.494545 0.591419 0.530522 -0.371400 0.982844 -1.801526 -2.051780 -0.950890 -1.633008 0.424977 -0.494261 0.490670 -0.495802 -0.067393 -1.653130 -1.028233 0.651749 -0.389401 0.951589 0.901773 0.262429 0.851002 1.255381 -0.785541 0.000811 -0.094160 0.689669 0.322646 -0.606009 -0.974487 1.151003 -1.159005 0.114675 1.605384 -0.780056 0.345050 -0.305676 1.066724 -1.117683 1.803431 0.351752 -0.561999 1.566130 1.135331 1.601629 0.316544 -0.721784 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.051308 -0.160060 0.691726 0.454158 -0.095302 0.055270 0.123688 -0.368334 0.422565 -0.075027 -0.120919 0.018581 -0.399227 0.142613 -0.339288 0.237345 -0.509282 -0.329833 -0.177368 -0.392988 -0.119578 -0.197884 0.270240 -0.036911 0.333111 0.144536 -0.224180 -0.073772 -0.476503 -0.179487 0.307524 -0.141305 0.171496 0.039811 -0.024863 -0.548105 0.403418 0.325510 -0.242823 -0.302076 0.305172 -0.368739 0.053562 -0.257281 0.018548 0.066402 -0.034464 0.161436 0.371565 0.086193 0.146865 0.120853 -0.028560 0.608443 -0.447948 0.226486 0.101363 -0.014166 -0.144972 0.116850 0.022289 0.086610 0.121325 0.120509 -0.151135 -0.456670 -0.107246 -0.295241 -0.276950 0.319872 -0.147987 -0.058355 -0.315398 -0.125003 -0.402361 -0.128371 -0.518060 0.331984 0.477599 -0.395769 0.236435 -0.009394 0.065767 0.019257 0.108943 0.099594 0.264406 0.067739 -0.014425 -0.090728 -0.253266 0.091397 0.083157 -0.045876 -0.150167 -0.489119 0.317260 -0.514885 -0.436908 0.025218 0.249210 -0.164195 -0.108045 0.138989 -0.003712 0.163340 -0.213895 -0.339712 0.086842 0.121166 0.145191 -0.019392 0.042779 -0.188127 -0.108549 -0.279062 -0.515527 0.161162 -0.108668 -0.090581 -0.121267 0.376926 -0.147755 -0.117659 0.049119 0.220095 -0.244396 0.516018 -0.147232 0.241148 -0.103637 0.155566 -0.374451 0.056999 0.277720 0.329717 -0.237820 0.123405 -0.251478 -0.002782 -0.393789 -0.141259 -0.144904 0.154436 0.189572 -0.394600 -0.240915 -0.059431 -0.200344 -0.578133 0.043485 -0.213868 -0.189372 0.067372 0.302764 0.464478 0.385069 0.648835 -0.247688 0.012413 -0.018162 -0.204012 0.412500 0.031824 0.329587 -0.217197 -0.242146 0.137545 -0.044439 0.122246 0.041141 0.104433 0.021321 -0.513261 0.076408 0.171753 0.204968 -0.077955 0.361664 0.366849 -0.043033 -0.380422 0.148065 0.353834 -0.163127 -0.001917 0.088268 -0.368857 0.187487 0.175124 0.015369 0.259498 0.030475 -0.095567 0.077473 -0.159493 0.218184 -0.310928 -0.070510 -0.203622 -0.107059 -0.322370 0.154188 -0.143586 -0.217752 -0.117519 -0.293826 0.418371 -0.306587 -0.201201 0.419479 0.081365 0.226124 -0.403669 0.329714 -0.303940 0.452883 -0.039951 0.105463 -0.003249 0.043710 -0.347449 0.058287 0.115040 -0.103665 0.182304 0.435197 0.289495 0.064528 -0.065322 0.475046 -0.196127 0.420614 -0.161084 0.355572 -0.094023 -0.279402 0.205435 -0.105105 -0.200341 -0.145948 0.192802 0.551158 0.246889 0.304533 0.341171 0.175127 0.530327 -0.187297 0.240637 -0.087405 0.188707 -0.143452 -0.157569 0.210841 0.202354 -0.094092 0.102988 -0.520705 -0.691138 -0.374029 -0.425679 0.206173 -0.311786 0.007472 -0.074358 -0.014808 -0.412150 -0.312247 0.202737 -0.180701 0.430081 0.134527 0.068435 0.248138 0.451076 -0.329855 0.009403 0.129950 0.239270 0.099375 -0.074009 -0.440880 0.464280 -0.323085 -0.043976 0.540803 -0.286756 0.137918 0.072540 0.285882 -0.322482 0.515266 0.093344 -0.203753 0.505336 0.383544 0.462482 0.308523 -0.207516 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::~deque() = 0.211362 -0.538844 2.551283 1.152947 -0.911126 -0.010824 1.112920 -1.130486 1.417721 -0.873387 -0.885340 -0.448692 -1.731207 0.151912 -1.422947 0.175872 -2.689512 -1.173207 -0.353598 -1.040878 -0.146104 -1.126996 1.445597 0.193172 1.324159 1.216133 -0.364672 -0.478396 -1.190083 -0.136648 1.793513 -0.669929 0.593220 1.099389 -0.053146 -2.356950 1.337741 0.653533 -0.726245 -0.959270 1.171926 -0.903393 -0.270829 -1.015665 -0.301140 0.052614 0.198268 2.335725 1.322973 0.105686 -0.260921 -0.579350 -0.247945 2.223444 -1.367224 0.507219 0.340375 -0.225702 -0.250676 0.522375 0.034246 -0.104059 0.201978 1.088020 -0.358121 -0.998902 0.428608 -1.579205 -1.256018 1.610791 -0.265935 0.393312 -1.047349 -0.061715 -1.466922 0.141167 -0.832214 1.841346 2.100244 -1.169647 1.162982 -0.141844 0.327790 -0.569219 -0.408182 0.363572 0.774247 0.127312 -0.109774 -0.937061 -1.962101 -0.131603 0.127031 -0.879095 0.031040 -2.260678 1.088102 -2.290788 -1.347148 -0.395429 0.782212 -0.951711 0.362672 0.899623 0.274281 0.432868 -0.534285 -1.183394 0.157939 0.227921 -0.506783 0.589267 0.460569 0.463730 -0.588620 -1.174502 -1.548172 0.306577 -0.695589 -0.559569 0.316473 1.135170 -0.603987 0.054919 0.636919 0.764920 -0.406443 1.512916 -0.131370 0.372619 0.510306 0.527929 0.297020 0.098721 1.062421 1.815505 -0.386294 0.047508 -0.462448 0.294718 -1.483047 -1.195376 -0.515002 0.188677 -0.041988 -2.015998 -0.959148 -0.068780 -0.758682 -2.179433 -0.026345 -0.854033 -0.969659 0.670679 1.047004 1.668261 1.081583 2.075324 -1.406334 0.365258 0.028228 -0.690681 0.728210 0.463061 1.132800 -0.680722 -0.695033 -0.075018 -0.631246 0.831326 -0.452047 -0.074002 -0.235259 -2.121667 -0.305834 0.496416 0.911788 -0.167259 0.573310 1.441640 -0.854244 -1.606365 0.372035 1.656997 -0.300586 -0.607524 0.926384 -1.644232 1.189959 0.296048 0.265705 0.566095 0.181785 -0.234267 0.509560 -0.652921 0.372699 -1.215485 -0.868738 -0.614683 -0.205262 -1.385495 0.823365 -0.485260 -0.904033 -0.550615 -0.982684 1.290051 -1.280485 -0.950896 1.764906 0.081289 1.426712 -1.519032 1.117168 -0.888341 1.401577 0.225786 0.236273 -0.002481 -0.619264 -0.983507 -0.051513 -0.091766 0.085659 1.103912 1.494320 1.112465 0.386364 -0.052777 1.892206 -0.615744 1.272020 -0.611899 0.514554 -0.369883 -1.485565 0.673446 -0.352326 -0.659593 -0.313022 0.961285 2.465173 1.122250 1.336068 2.324690 0.393871 1.733912 -0.396565 0.415864 -0.259345 0.972883 -0.409488 -0.678878 0.728468 0.854086 -0.904458 0.830788 -2.033750 -3.374878 -1.595994 -2.083407 0.086657 -2.450654 0.635310 -0.308890 0.280415 -1.608141 -0.851833 0.079917 -0.291038 1.650050 0.807937 -0.072193 0.831069 1.696640 -1.450387 0.128073 1.303881 1.865265 -0.025320 -0.170869 -2.027398 1.210742 -1.594121 0.202352 2.307863 -1.240098 0.304094 -0.918372 1.620853 -1.774637 1.810271 0.652641 -1.139642 1.494871 0.638457 1.023734 2.186297 -0.759655 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.080122 -0.272632 0.640047 0.519425 0.052134 0.024782 0.402261 -0.227671 0.394202 0.262543 -0.071807 0.060751 -0.531359 0.156003 -0.091969 0.429601 -0.355264 -0.366223 -0.036478 -0.241675 -0.030300 -0.247739 0.449549 -0.115299 0.431751 0.008225 -0.188833 -0.414787 -0.470314 -0.263809 0.296138 -0.208813 0.313144 0.138095 -0.196404 -0.614876 0.335451 0.296338 -0.237208 -0.353299 0.372587 -0.274577 0.142310 -0.158157 0.112730 0.122141 0.103571 0.140481 0.394764 0.271762 0.287895 -0.024076 0.180341 0.537935 -0.464590 0.224814 0.085117 -0.048624 -0.163858 0.043357 0.073795 0.014524 0.235931 0.200641 -0.097391 -0.398587 -0.229219 -0.306450 -0.502433 0.238279 -0.148245 0.118531 -0.438532 -0.005075 -0.068618 -0.104851 -0.632731 0.299021 0.565676 -0.350175 0.393502 0.049218 0.019627 -0.158750 -0.030035 0.131569 -0.024723 0.065774 -0.062630 -0.161298 -0.202507 -0.018900 0.033566 0.088533 -0.055546 -0.352120 0.313856 0.118100 -0.430669 0.059963 0.182596 -0.084205 -0.203292 0.180507 -0.045930 0.363717 -0.274785 -0.434595 -0.078330 -0.047511 0.203093 -0.106176 -0.069592 -0.237942 -0.300298 -0.324970 -0.469305 -0.020632 -0.152019 -0.327988 -0.192551 0.255745 -0.202773 0.060021 0.071269 0.232672 -0.182446 0.484640 0.048222 0.336034 0.299226 0.014583 -0.526585 -0.008979 0.381233 0.590114 -0.149807 0.155861 -0.338047 -0.021953 -0.263381 -0.075397 0.184230 0.247001 0.465843 -0.388023 -0.260901 -0.027458 0.062665 -0.501232 0.206473 -0.304871 0.262186 0.057979 0.298037 0.110636 0.377379 0.829799 -0.389862 0.136531 -0.017507 -0.194293 0.381341 0.252251 0.336177 -0.198726 -0.260742 0.090423 0.206239 0.015601 0.011985 0.131710 0.060485 -0.494741 0.026144 0.065804 0.090607 -0.283461 0.255369 0.206211 0.276129 -0.240617 0.089549 0.357543 -0.059067 0.011999 0.110545 -0.519410 0.308693 0.037894 -0.121275 0.148188 0.040439 -0.253446 0.246719 -0.274337 0.094684 -0.277184 0.089579 -0.259611 -0.125505 -0.338966 0.072153 -0.048013 -0.312401 0.039082 0.140354 0.442772 0.109277 -0.104417 0.171810 -0.018397 -0.020572 -0.494017 0.849036 -0.308843 0.107022 -0.232968 -0.071406 -0.012711 0.288919 -0.192040 -0.176503 0.152229 -0.002789 0.248833 0.594253 0.252311 -0.080491 0.024065 0.452062 0.002108 0.353243 -0.039985 0.357755 -0.080117 -0.146537 0.173276 -0.107716 -0.035522 -0.135694 -0.016054 0.648468 0.301056 0.067478 0.387392 0.092066 0.560441 -0.205151 0.346569 -0.010058 0.486135 -0.096685 -0.056732 0.115515 0.160069 -0.159861 0.323003 -0.468041 -0.646565 0.118101 -0.422764 0.073064 -0.030367 0.154723 -0.122761 0.052861 -0.477284 -0.280278 -0.057862 -0.191807 0.260190 0.141823 0.067535 0.260467 0.362254 -0.260728 -0.080172 -0.008097 0.219451 0.079227 -0.136133 -0.170666 0.239111 -0.415867 -0.027268 0.378176 -0.204112 0.001514 -0.126408 0.467457 -0.311955 0.607855 0.116683 -0.053125 0.649032 0.332029 0.555452 0.088649 -0.177338 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::begin() = 0.310427 -0.258252 1.509167 1.009178 -0.353336 0.049927 0.206996 -0.802826 0.809251 0.036658 -0.344590 0.131472 -0.603809 0.337184 -0.595730 0.758050 -1.238518 -0.461330 -0.253502 -0.766637 -0.295647 -0.292252 0.539422 -0.154533 0.782743 0.482426 -0.360186 -0.200923 -0.425341 -0.708689 0.468527 -0.344653 0.257336 0.096464 0.069291 -1.125922 0.951876 0.503734 -0.502418 -0.625167 0.570800 -0.517770 -0.014836 -0.453743 0.040406 0.177035 0.028532 0.846433 0.734292 0.423397 0.158321 0.236360 0.397335 1.368066 -0.689271 0.441274 0.270069 -0.076445 -0.212847 0.263372 0.124679 0.107870 0.116763 0.196548 0.042839 -0.966732 -0.320396 -0.528584 -0.365280 0.628456 -0.212918 -0.187321 -0.778807 -0.258389 -0.610960 -0.146608 -1.907321 0.887227 0.974918 -0.876302 0.407151 0.083856 0.082589 0.012088 0.105277 0.167533 0.527183 0.234949 -0.023304 -0.148433 -0.238545 -0.181888 0.389438 -0.578539 -0.329876 -1.581916 0.556886 -1.061167 -0.839287 0.168452 0.619789 -0.406829 0.171849 0.053742 0.106267 0.243833 -0.445153 -0.576409 0.295040 0.058441 0.213423 -0.067289 0.070745 -0.248692 -0.101173 -0.117077 -1.075785 0.351240 -0.173868 -0.108863 -0.029707 0.615758 0.150313 -0.228252 0.025242 0.407180 -0.369197 1.006023 -0.208004 0.653596 -0.151390 0.689429 -0.404447 0.708023 0.700568 0.005046 -0.314337 0.313263 -0.458411 0.166802 -0.763763 -0.070189 -0.347996 0.451133 0.343048 -0.638068 -0.610872 -0.175087 -0.517976 -0.939357 0.268322 -0.418018 -0.572732 0.071655 0.594333 0.726684 0.765588 0.632080 -0.637466 -0.097148 -0.123590 -0.025546 0.778248 0.127677 0.631133 -0.414983 -0.322518 0.272316 0.059879 0.193731 0.002140 0.132258 0.203448 -0.908779 0.297251 0.399995 0.458037 -0.319197 0.649174 0.672474 0.241850 -0.398947 0.123411 0.724722 -0.352290 -0.079640 0.246454 -0.778429 0.463843 0.265676 0.389523 0.499403 0.073838 -0.023062 0.217491 -0.287128 0.252234 -0.418605 -0.241259 -0.377318 -0.385109 -0.407964 0.608783 -0.297623 -0.325892 -0.229829 -0.473598 0.830033 -0.891754 -0.102202 0.928196 -0.303500 0.318977 -0.542261 1.086958 -0.595168 0.494680 -0.002513 0.038168 0.033382 -0.096224 -0.783000 0.090644 0.248806 -0.023377 0.268549 0.780920 0.547540 0.075013 -0.099211 0.916573 -0.541017 0.883952 -0.251487 0.723155 -0.268875 -0.349983 0.150960 -0.130629 -0.481939 -0.392872 0.417811 1.080738 0.142442 0.578924 0.629960 0.202928 1.034616 -0.466234 0.686139 -0.258596 0.269180 -0.408798 -0.342661 0.469713 0.237032 -0.244591 0.360515 -1.078249 -1.121936 -1.124963 -0.387738 0.144572 -0.595198 0.245823 -0.347317 -0.099845 -0.697583 -0.706694 0.677459 -0.281542 -0.122510 0.468079 0.092602 0.483033 0.815263 -0.341999 0.065232 -0.037576 0.382640 0.309402 -0.181183 -0.751650 0.899160 -0.644365 -0.102322 1.117470 -0.534094 0.215285 -0.013363 0.617431 -0.623270 0.797068 0.150850 -0.389575 0.765528 1.026644 0.744832 0.439358 -0.450875 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::end() = 0.310427 -0.258252 1.509167 1.009178 -0.353336 0.049927 0.206996 -0.802826 0.809251 0.036658 -0.344590 0.131472 -0.603809 0.337184 -0.595730 0.758050 -1.238518 -0.461330 -0.253502 -0.766637 -0.295647 -0.292252 0.539422 -0.154533 0.782743 0.482426 -0.360186 -0.200923 -0.425341 -0.708689 0.468527 -0.344653 0.257336 0.096464 0.069291 -1.125922 0.951876 0.503734 -0.502418 -0.625167 0.570800 -0.517770 -0.014836 -0.453743 0.040406 0.177035 0.028532 0.846433 0.734292 0.423397 0.158321 0.236360 0.397335 1.368066 -0.689271 0.441274 0.270069 -0.076445 -0.212847 0.263372 0.124679 0.107870 0.116763 0.196548 0.042839 -0.966732 -0.320396 -0.528584 -0.365280 0.628456 -0.212918 -0.187321 -0.778807 -0.258389 -0.610960 -0.146608 -1.907321 0.887227 0.974918 -0.876302 0.407151 0.083856 0.082589 0.012088 0.105277 0.167533 0.527183 0.234949 -0.023304 -0.148433 -0.238545 -0.181888 0.389438 -0.578539 -0.329876 -1.581916 0.556886 -1.061167 -0.839287 0.168452 0.619789 -0.406829 0.171849 0.053742 0.106267 0.243833 -0.445153 -0.576409 0.295040 0.058441 0.213423 -0.067289 0.070745 -0.248692 -0.101173 -0.117077 -1.075785 0.351240 -0.173868 -0.108863 -0.029707 0.615758 0.150313 -0.228252 0.025242 0.407180 -0.369197 1.006023 -0.208004 0.653596 -0.151390 0.689429 -0.404447 0.708023 0.700568 0.005046 -0.314337 0.313263 -0.458411 0.166802 -0.763763 -0.070189 -0.347996 0.451133 0.343048 -0.638068 -0.610872 -0.175087 -0.517976 -0.939357 0.268322 -0.418018 -0.572732 0.071655 0.594333 0.726684 0.765588 0.632080 -0.637466 -0.097148 -0.123590 -0.025546 0.778248 0.127677 0.631133 -0.414983 -0.322518 0.272316 0.059879 0.193731 0.002140 0.132258 0.203448 -0.908779 0.297251 0.399995 0.458037 -0.319197 0.649174 0.672474 0.241850 -0.398947 0.123411 0.724722 -0.352290 -0.079640 0.246454 -0.778429 0.463843 0.265676 0.389523 0.499403 0.073838 -0.023062 0.217491 -0.287128 0.252234 -0.418605 -0.241259 -0.377318 -0.385109 -0.407964 0.608783 -0.297623 -0.325892 -0.229829 -0.473598 0.830033 -0.891754 -0.102202 0.928196 -0.303500 0.318977 -0.542261 1.086958 -0.595168 0.494680 -0.002513 0.038168 0.033382 -0.096224 -0.783000 0.090644 0.248806 -0.023377 0.268549 0.780920 0.547540 0.075013 -0.099211 0.916573 -0.541017 0.883952 -0.251487 0.723155 -0.268875 -0.349983 0.150960 -0.130629 -0.481939 -0.392872 0.417811 1.080738 0.142442 0.578924 0.629960 0.202928 1.034616 -0.466234 0.686139 -0.258596 0.269180 -0.408798 -0.342661 0.469713 0.237032 -0.244591 0.360515 -1.078249 -1.121936 -1.124963 -0.387738 0.144572 -0.595198 0.245823 -0.347317 -0.099845 -0.697583 -0.706694 0.677459 -0.281542 -0.122510 0.468079 0.092602 0.483033 0.815263 -0.341999 0.065232 -0.037576 0.382640 0.309402 -0.181183 -0.751650 0.899160 -0.644365 -0.102322 1.117470 -0.534094 0.215285 -0.013363 0.617431 -0.623270 0.797068 0.150850 -0.389575 0.765528 1.026644 0.744832 0.439358 -0.450875 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::~_Deque_base() = 1.134606 -0.501335 4.878249 3.348777 -2.211512 0.115987 -1.036558 -2.576256 1.547066 -0.352534 -1.091010 1.061882 -0.613441 0.878256 -0.236052 2.255535 -4.769959 -0.477487 -1.037538 -2.298238 -1.390906 -0.218294 0.571989 0.406568 2.013795 3.121895 -1.382105 0.846460 0.843859 -3.500277 0.527616 -0.768008 1.013038 1.286383 1.519222 -5.053914 3.300579 1.316574 -1.158905 -1.910656 1.168450 -0.695988 -0.390753 -1.366689 -1.546469 1.026275 0.065868 2.001303 1.698855 1.220514 -0.716581 0.809043 2.080610 3.488797 -0.289362 1.021361 1.263222 -1.230967 -0.609376 -0.163107 0.520720 0.091537 0.246537 0.073355 0.643677 -3.181385 -0.517867 -1.287655 -0.648453 1.880216 -0.116855 -1.622180 -1.849323 -1.867672 -1.980875 -0.446341 -3.764015 3.183655 2.461707 -2.465486 0.656995 0.142131 -0.239375 0.624369 0.663913 0.322970 2.494727 1.031637 0.225122 0.555570 1.027280 -2.318907 1.933341 -1.458627 -1.332364 -4.508337 1.122278 -4.644217 -2.046848 1.073308 2.236736 -1.481714 -0.288542 -1.566143 0.920180 0.429479 -0.616571 -0.844449 1.111051 0.267441 0.122400 -0.257215 -0.651634 0.580015 -0.023222 1.321024 -3.379880 1.827678 0.116334 0.712824 0.833654 1.636867 1.351929 -0.934053 -0.409438 1.188219 -1.195144 3.229723 -0.828347 1.885753 -1.336936 2.507126 1.198378 2.082648 1.536019 -2.045249 -0.844238 -1.045075 -1.026999 0.888972 -2.239846 0.387556 -1.428390 1.946250 1.882437 -0.510276 -2.251602 -1.046326 -3.375095 -3.285610 0.372021 -1.162776 -2.393322 2.029221 1.563936 1.637808 1.857085 -0.014591 -1.708204 -0.545190 -0.701942 0.215175 2.115571 0.309763 1.512816 -1.269356 -0.318111 1.439742 -0.294034 1.408561 0.264651 -0.144795 1.005910 -1.686321 0.097817 2.554651 1.655818 0.371580 1.426105 2.233035 2.954399 0.281233 -0.264033 1.715777 -1.153756 -0.644566 0.912842 -1.476062 0.640371 0.749406 1.573196 2.364701 -0.043606 0.349806 0.186399 -0.032111 0.383225 -0.966909 -0.362986 -0.729961 0.383940 -0.619170 0.843946 -1.481157 -0.264285 -1.468158 -2.090165 2.724196 -4.405098 -0.956556 3.543891 -1.889803 2.114404 -1.647848 2.194127 -1.494638 2.155273 -0.149802 -0.557607 0.309962 -2.733789 -2.647699 1.285082 0.677191 0.342329 -0.808101 1.592644 1.473671 -0.021751 -0.833773 2.149209 -1.621087 3.284036 -0.760537 2.250664 -0.963293 0.348343 -0.567511 -0.045005 -2.031183 -1.167507 1.214820 1.513049 -0.526666 2.124013 1.117912 0.731866 2.375374 -1.575008 2.000772 -0.771645 0.087737 -1.533813 -1.533249 1.628156 1.839265 -0.350886 0.557849 -3.084512 -2.402284 -5.663659 -0.657772 -1.033074 -0.468101 1.198322 -1.066955 -0.946245 -0.678625 -2.011602 4.238738 -0.159329 0.043790 1.553039 0.083734 1.647709 2.177088 -0.174152 -0.243829 -0.702722 0.481724 1.179754 0.242669 -2.992255 3.139991 -1.254890 -0.327614 3.795264 -1.806820 1.230290 -0.096162 1.772205 -1.836061 1.738542 0.153075 -1.863944 1.083047 2.920199 0.356191 0.684125 -1.541383 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.030971 -0.534112 3.689031 2.585290 -1.093533 0.124847 -0.031637 -1.880698 1.479275 0.413230 -0.240911 0.681280 -0.810499 0.673387 0.180417 1.990954 -3.040441 -0.668667 -0.711690 -2.089670 -1.050674 -0.239376 0.846609 -0.208405 1.628213 1.076641 -1.209520 -0.350421 0.037631 -2.497298 0.928100 -0.767047 1.213740 0.172951 0.329682 -5.506866 2.476931 1.023896 -1.154621 -1.415579 1.195596 -0.668144 0.166676 -0.737999 -1.237193 0.479158 0.045174 0.521805 1.585326 1.061276 0.330911 0.825352 1.366200 3.684623 -1.055960 0.844195 0.617182 -1.087942 -1.042372 0.144134 0.379700 0.144368 0.769753 0.123258 0.365978 -2.604733 -0.413163 -1.096995 -1.445428 1.217522 -0.046967 -1.120439 -1.171893 -0.926344 -1.170565 -0.851635 -1.919319 1.950786 2.040849 -1.793400 0.931256 -0.040081 -0.297241 0.464538 0.475002 0.461586 1.591759 0.601486 0.096050 0.121291 0.755619 -1.071656 1.258580 0.006462 -0.744264 -3.157385 1.100461 -1.627999 -1.626050 0.965090 1.709545 -0.740541 -1.590522 -1.528181 0.574037 0.790255 -1.001329 -1.143419 -0.178216 0.176496 0.233296 -0.404909 -0.604215 -0.606993 -0.451353 0.148988 -2.438033 1.067081 -0.127140 0.177185 -0.576127 1.367438 0.156617 -0.750961 -0.200215 1.414737 -1.354213 2.260919 -0.751254 1.677234 -0.419354 1.280584 -0.603902 0.238219 1.257940 0.125472 -0.332942 -1.083183 -1.537775 0.486339 -1.764273 0.520180 -0.052837 1.775318 2.408074 -0.333204 -1.476896 -0.480973 -1.224394 -2.823852 0.439093 -1.174120 -0.832669 1.550921 1.295354 0.860528 1.680332 1.020997 -1.290311 0.543668 -0.721416 -0.374479 2.035689 0.183288 1.388512 -0.993324 -0.456324 0.630821 0.207060 1.117947 0.186055 0.015728 0.626512 -1.510536 -0.281514 1.038385 1.046981 -0.203309 0.782017 1.580878 3.752139 -0.809741 -0.021434 1.441182 -0.936799 -0.197053 0.563779 -1.331140 0.154333 0.747768 -0.159804 1.890501 -0.002645 -0.713973 0.199787 -0.296838 0.276517 -0.733776 0.146620 -0.723411 0.193111 -0.573520 -0.260334 -1.326626 -0.470943 -1.059533 -1.192556 2.215580 -2.687325 -1.158352 2.484154 -1.237169 0.954120 -2.247117 3.110791 -1.315909 1.237149 -1.188333 -0.551782 -0.145737 -0.395621 -2.015881 1.125757 0.556801 -0.152452 -0.107865 2.442864 1.237226 0.203405 -0.866522 1.969941 -0.798707 2.412700 -0.543727 2.280386 -0.868235 -0.029411 -0.327474 -0.142926 -1.140859 -0.911890 0.881999 1.046461 0.120388 0.984097 0.719026 1.037309 2.099758 -1.142887 1.856207 -0.354314 0.752326 -0.733162 -0.800658 1.275998 1.538982 -0.284021 0.763865 -2.380657 -1.890280 -2.962667 -1.044296 -0.268227 0.862751 0.578471 -0.780335 -0.432818 -1.300736 -1.283313 2.369377 -0.429579 0.625437 1.151454 0.339706 1.326649 1.821207 -0.446457 -0.487985 -0.647352 0.132356 0.853757 -0.267690 -1.917211 2.282762 -1.263739 -0.111377 2.400065 -1.009353 0.685208 0.146880 1.528884 -1.328777 1.943127 0.098009 -0.790377 1.661455 2.162319 1.215091 0.128892 -0.966292 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.372193 -0.743402 2.556830 1.817560 -0.072969 0.233445 0.728796 -1.243910 1.429419 0.630500 -0.385598 0.499926 -1.484536 0.410374 -0.150822 1.174691 -1.884086 -1.288796 -0.262703 -1.118130 -0.499251 -0.952840 0.972095 0.132487 1.326914 0.464327 -0.988051 -0.431689 -1.468055 -1.812751 0.705385 -0.663416 1.058624 0.397373 0.027656 -2.825515 1.662618 1.114583 -0.632063 -1.293174 1.079735 -1.056978 0.167997 -0.508828 0.055737 0.672855 0.384304 0.595245 1.494674 0.644467 0.602648 0.005164 0.244746 1.740759 -1.308561 0.841037 0.397544 -0.614687 -0.656394 0.154755 0.151001 -0.211428 0.930050 0.797898 -0.701802 -1.519168 0.073042 -0.792737 -1.609998 1.253622 0.035277 -0.338261 -1.198448 -0.324813 -0.853183 -0.395215 -0.040910 1.122498 2.061971 -0.823016 1.341566 0.069732 0.333363 -0.294610 0.436073 0.143953 1.244565 0.212311 -0.517325 -0.738614 -1.134675 -0.599202 0.092264 0.869630 -0.146346 -0.712452 0.708066 -1.231064 -1.676255 0.159336 0.694903 -0.522136 -1.600134 0.350190 0.740235 0.841471 -0.306924 -1.483338 -0.246348 0.240435 -0.411123 -0.312282 -0.263154 -0.882529 -0.914747 -0.451910 -1.850549 0.175762 -0.177282 -0.647968 -0.855750 1.209132 -0.682787 0.079972 0.221308 1.000915 -0.566981 1.299903 -0.208265 0.998288 0.710459 -0.052955 -1.242983 -0.192571 0.832313 1.118757 -0.687651 -0.281213 -0.988402 0.175508 -1.375213 -0.115481 -0.336140 1.425412 1.676005 -1.203089 -1.149777 -0.270140 -0.263125 -1.917913 0.519450 -1.003113 -0.225963 0.075419 1.152479 0.480568 1.199258 2.189453 -1.231577 0.772769 -0.005777 -0.425604 1.500484 0.192120 1.263609 -0.962643 -0.744600 0.594120 0.458702 0.375906 -0.156426 0.082328 0.264361 -1.705063 -0.718459 0.686330 0.347745 0.146545 0.942494 1.042181 2.109331 -1.329338 0.387263 1.252752 -0.244714 -0.185205 0.460795 -1.513023 0.802673 0.400200 0.201929 1.508210 0.084680 -1.098338 0.393877 -0.120389 0.465493 -1.232926 0.287835 -0.846081 0.287950 -0.811879 -0.393241 -0.691008 -0.898388 -0.548098 -0.330275 1.747418 -0.275755 -1.799152 1.603798 -0.801640 1.060840 -2.517610 1.734943 -1.153663 0.736814 -0.903663 -0.042450 -0.110026 0.114198 -1.113103 0.482071 0.470500 -0.162069 1.024713 1.860920 0.950727 0.368070 -0.231428 1.399346 -0.051684 1.341997 -0.369918 1.342701 -0.388176 -0.313008 0.107558 -0.377193 -0.326760 -0.144062 0.115365 1.190774 1.147172 0.354523 1.283849 0.867207 1.638699 -0.762791 1.167336 -0.204536 1.119294 -0.449938 -0.676112 0.573013 0.637181 -0.433261 1.010756 -1.985066 -2.222674 -0.474250 -2.318887 -0.028400 -0.023163 0.658846 -0.131189 0.049778 -1.686542 -0.775127 0.890650 -0.072697 2.198993 0.652272 0.195799 0.950855 1.457558 -0.893499 -0.468544 -0.176640 0.491564 -0.018305 -0.570409 -1.298969 1.339118 -1.255254 0.481783 1.695860 -1.092253 0.264311 -0.756519 1.414385 -1.407967 1.992804 0.500743 -0.641050 1.651271 0.690788 1.746417 0.163658 -0.864995 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.074628 -1.180886 3.512171 2.501607 -0.140533 0.121084 1.744633 -1.506536 1.452058 0.387254 -0.502250 0.901278 -2.354976 0.905171 -1.872503 1.697223 -2.425117 -1.756175 -0.562907 -1.331219 -0.324069 -0.970974 2.137690 0.123099 2.342769 0.410711 -1.328845 -1.766445 -2.583811 -1.665281 1.234134 -0.742914 1.419356 -0.254108 -0.898109 -3.514174 1.850202 1.864043 -1.131424 -1.756229 2.246634 -1.463736 -0.183035 -1.010787 -0.328953 0.145184 0.222547 1.237705 1.796913 1.050473 0.742710 0.771382 0.929308 3.445243 -1.989961 1.273031 0.822447 0.000814 -0.785757 0.192591 0.282728 0.163093 0.856823 0.708979 -0.261421 -2.120343 -0.755225 -1.311719 -1.882250 1.418671 -0.518982 0.258545 -1.779524 0.191107 -1.511075 -0.151032 -0.763972 1.725958 2.651513 -1.728536 1.667317 -0.253500 -0.256066 -0.732414 -0.221352 0.534026 0.130477 0.477085 0.192908 -1.520703 -1.579718 0.415360 0.197966 0.246011 -0.661915 -3.087893 1.804881 -1.490705 -2.362788 -0.060242 1.103322 -1.387829 -0.335162 0.523350 -0.030215 1.395838 -1.140092 -1.876486 -0.223891 0.228455 0.718189 -0.553756 0.057383 -0.802580 -0.879300 -1.178064 -2.498617 0.529733 -0.551925 -1.075775 -0.756905 1.313851 -0.519647 0.278561 0.301947 1.417073 -0.849094 1.890421 -0.217344 1.339588 0.969183 0.836090 -0.865557 -0.102621 1.725471 2.119577 -1.429187 0.463801 -1.589528 0.306355 -1.242532 -0.495458 -0.108746 1.228661 1.348385 -2.025837 -1.455252 -0.314857 -0.145357 -2.508319 0.382223 -1.259647 -0.433943 0.403844 1.486838 0.450846 1.693229 3.382014 -1.392717 0.656069 0.619854 -0.946972 1.898500 -0.017701 1.515420 -1.110151 -1.684609 0.744693 0.371738 0.759146 -0.675650 1.201558 0.218899 -2.388697 -0.308566 0.291224 0.796449 -0.863939 1.464812 1.445872 1.073594 -1.494782 0.449556 1.721440 -0.944794 -0.025060 0.413728 -2.560816 1.132655 0.481911 -0.031706 1.745463 0.309837 -1.330484 1.464889 -0.828858 0.526385 -1.559052 0.404194 -1.307066 -0.691449 -1.560750 -0.040043 0.003339 -1.152964 -0.671705 -0.687380 2.345433 -1.332101 -1.278300 1.481087 0.008211 0.506937 -3.161391 3.267553 -1.432583 0.989732 -0.192675 -0.001327 0.288928 0.554593 -1.875220 -0.154314 0.667206 -0.430650 1.541112 2.831526 1.233806 0.005452 -0.319350 2.186538 -0.392568 2.086815 -0.736662 1.758837 -0.427735 -1.742333 0.493040 -0.426182 -0.714181 -0.844444 0.671967 2.817986 1.079261 1.041997 2.040412 0.999199 3.128106 -1.061359 1.714059 -0.506400 1.701772 -0.555328 -0.723069 0.764821 0.923686 -0.588779 1.915815 -2.683634 -3.717041 -1.276875 -2.985662 0.987007 -1.454513 1.049452 -0.942166 -0.141008 -2.801074 -1.742654 0.245184 -0.711602 1.856446 1.646652 0.383335 1.251755 1.764250 -1.442791 0.417661 0.202416 1.714806 0.571680 -0.959280 -1.340188 1.349910 -1.779867 0.139865 2.533692 -1.156116 0.672665 -0.873089 1.640506 -1.721242 3.035994 0.555955 -1.014974 2.629774 1.361369 2.025556 0.771602 -1.086090 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.065623 -0.286185 1.096659 0.706621 -0.052307 0.107257 0.316735 -0.607030 0.719711 0.095718 -0.192598 0.095416 -0.643074 0.248709 -0.658444 0.490001 -0.761020 -0.556182 -0.202308 -0.607124 -0.205935 -0.366753 0.484999 -0.106458 0.570889 0.033759 -0.368823 -0.228680 -0.775076 -0.509579 0.430870 -0.280296 0.252166 -0.246836 -0.138070 -0.951687 0.692404 0.509870 -0.403408 -0.507869 0.512827 -0.559842 0.043558 -0.301133 0.042627 0.057562 0.007786 0.359220 0.625612 0.236496 0.351303 0.227246 0.070407 1.194296 -0.765470 0.427702 0.164586 0.021748 -0.246652 0.281784 0.063248 0.103711 0.222520 0.262770 -0.162183 -0.681837 -0.170275 -0.376466 -0.474843 0.519594 -0.255105 -0.090692 -0.522894 -0.060361 -0.620034 -0.184407 -0.840766 0.490908 0.854129 -0.597724 0.458094 0.013579 0.140683 -0.011491 0.141074 0.129149 0.419488 0.122536 -0.107833 -0.286505 -0.379334 0.217463 0.109546 -0.057555 -0.199284 -0.953594 0.515383 -0.761209 -0.756106 0.072171 0.366940 -0.258066 -0.151103 0.169160 0.094290 0.256013 -0.410012 -0.639545 0.030580 0.156333 0.161795 -0.085416 0.152705 -0.450243 -0.144705 -0.332626 -0.804530 0.133436 -0.158278 -0.252076 -0.320068 0.585006 -0.160765 -0.095789 0.089418 0.401329 -0.311704 0.678134 -0.199226 0.481934 -0.093068 0.331731 -0.701283 0.153898 0.474341 0.370504 -0.336890 0.300622 -0.421607 0.056630 -0.597707 -0.120141 -0.281414 0.321169 0.315440 -0.607097 -0.408825 -0.080506 -0.138203 -0.839884 0.151717 -0.376172 -0.398787 -0.054219 0.515686 0.564681 0.616149 0.945769 -0.424331 0.117526 -0.006984 -0.229241 0.670304 -0.121154 0.542672 -0.356151 -0.438031 0.188758 0.106788 0.155103 -0.024954 0.140812 0.041895 -0.812666 0.107618 0.154571 0.318637 -0.214729 0.555857 0.506341 0.190384 -0.695081 0.242304 0.576816 -0.247420 0.034929 0.078051 -0.704396 0.327899 0.275911 0.105366 0.448032 0.076000 -0.259360 0.200539 -0.256508 0.317985 -0.489518 -0.081089 -0.379092 -0.280816 -0.426425 0.225669 -0.197077 -0.333992 -0.188119 -0.395368 0.671694 -0.547818 -0.332028 0.701077 0.018079 0.260349 -0.736018 0.783187 -0.503694 0.550093 -0.085869 0.163946 -0.024080 0.275656 -0.544305 0.106208 0.215177 -0.191513 0.473972 0.788806 0.437377 0.199193 -0.073893 0.769777 -0.299191 0.572277 -0.244184 0.596979 -0.156555 -0.528616 0.235691 -0.191921 -0.240511 -0.230965 0.332648 0.812487 0.394727 0.308731 0.556283 0.343802 0.860987 -0.322060 0.494839 -0.181616 0.350102 -0.239351 -0.218409 0.291626 0.193234 -0.197158 0.326344 -0.875694 -1.047606 -0.621981 -0.684337 0.330423 -0.474669 0.078136 -0.190291 0.022244 -0.791737 -0.499399 0.366804 -0.286284 0.437515 0.339173 0.164971 0.388700 0.711120 -0.441201 0.039430 0.050505 0.324963 0.110180 -0.249378 -0.546874 0.641540 -0.577052 0.039866 0.756792 -0.391463 0.145248 0.094521 0.330470 -0.516389 0.818994 0.208391 -0.223140 0.799732 0.615867 0.850843 0.347777 -0.346499 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.071811 -0.688315 2.733736 1.599799 -0.420647 0.080161 1.063639 -1.155692 1.414464 0.233799 -0.568754 -0.041433 -1.496911 0.241866 -0.921467 0.822599 -2.044144 -1.128486 -0.421229 -1.273612 -0.305769 -0.911917 1.180430 -0.024939 1.424070 0.500777 -0.617915 -0.755456 -1.138461 -1.210188 1.208511 -0.555343 0.849201 0.201618 -0.218977 -2.909837 1.509312 1.034349 -0.758776 -1.144571 1.184406 -0.696347 -0.179730 -0.434012 -0.280567 0.269992 0.256347 1.410536 1.263025 0.610649 0.428105 -0.142529 0.395109 2.644655 -1.287097 0.720035 0.403619 -0.302524 -0.440608 0.514058 0.131606 -0.100472 0.387808 0.733914 0.003554 -1.311512 0.160738 -1.057066 -1.397262 1.348301 -0.250391 -0.218544 -0.973421 -0.226266 -1.048168 -0.129733 -1.071719 1.411379 1.998804 -1.138393 1.243635 0.071727 0.089837 -0.341742 -0.352549 0.278529 0.628066 0.209457 -0.044402 -0.881403 -1.111645 -0.203784 0.192436 -0.151466 -0.310317 -2.078919 1.263733 -1.381391 -1.446536 0.015574 0.879646 -0.886967 -0.370665 0.342867 0.181269 0.669776 -0.546496 -1.187041 -0.266431 0.279087 -0.154162 0.135625 0.114972 -0.236438 -0.571226 -0.610670 -1.722114 0.393548 -0.498933 -0.535989 -0.435124 1.065152 -0.440847 0.066488 0.463554 1.080893 -0.533391 1.395758 -0.031827 0.924831 0.461996 0.609767 -0.707720 -0.068128 1.102524 1.280547 -0.349594 -0.047152 -0.783474 0.312834 -1.213044 -0.269479 -0.346162 0.698001 0.985261 -1.497832 -0.980168 -0.245769 -0.393596 -1.874185 0.190716 -0.970474 -0.654249 0.431953 1.019356 1.089783 1.055061 2.117603 -1.437215 0.543942 -0.044291 -0.693146 0.844871 0.132930 1.088942 -0.721966 -0.784569 0.075803 0.148537 0.723350 -0.359099 0.081263 0.053133 -1.817824 -0.229676 0.471287 0.571213 -0.437228 0.664482 1.375793 1.022872 -1.504805 0.270154 1.384489 -0.555980 -0.372851 0.699542 -1.714707 0.804545 0.370702 0.086883 1.049715 0.168884 -0.463138 0.683545 -0.738752 0.183305 -1.067485 -0.155580 -0.750527 -0.258656 -1.007663 0.248820 -0.688098 -0.709977 -0.484270 -0.632219 1.478340 -1.088921 -1.103459 1.608589 -0.203163 0.604465 -1.865045 2.116335 -0.897244 0.859009 -0.315597 -0.018827 -0.134667 0.136225 -1.065953 0.056289 0.140678 -0.146044 1.122004 2.050601 0.965776 0.200549 -0.211174 1.804534 -0.595279 1.394474 -0.638232 0.947390 -0.437842 -1.131557 0.162720 -0.306798 -0.560705 -0.460847 0.636036 1.772558 0.911138 0.644298 1.553942 0.661461 1.775771 -0.477386 1.051973 -0.158940 1.135274 -0.458382 -0.553444 0.757055 0.729761 -0.759618 1.024984 -2.011928 -2.535150 -1.258104 -1.958295 0.126135 -1.177820 0.655533 -0.450226 0.014618 -1.706995 -1.094154 0.611796 -0.262084 1.153441 0.878469 0.129568 0.908144 1.533662 -0.984956 0.091582 0.416073 1.119022 0.153738 -0.643241 -1.288375 1.291257 -1.331334 0.141240 1.971878 -0.994149 0.441457 -0.523694 1.246396 -1.610767 1.907614 0.484267 -0.737751 1.578615 0.932005 1.538938 0.863976 -0.729133 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__deque_buf_size(unsigned long) = -0.116121 -0.623844 0.979156 0.524649 0.030321 0.105621 0.281413 0.193531 0.015119 0.492195 -0.528737 0.707594 -0.485573 -0.027828 0.401757 0.260386 -0.495962 -0.620167 0.306523 0.227686 -0.079697 -0.409765 -0.163546 0.569301 0.506457 0.399986 -0.473787 -0.109338 -0.615937 -0.806649 -0.439282 -0.107910 0.402599 0.330315 0.647154 -0.349462 0.107323 0.369117 0.193385 -0.793463 0.213179 0.076683 0.181805 0.028307 0.330817 0.699365 0.724824 0.268254 0.083560 0.219676 -0.301719 -0.568431 -0.012190 0.000508 0.282780 0.227862 0.587925 -0.265651 0.230415 -0.434771 0.267538 -0.688217 0.206806 0.247552 -0.349619 -0.136379 0.045271 -0.108106 -0.106933 0.273015 0.453772 -0.066260 -0.551848 -0.543991 -0.217233 0.030894 0.158652 0.482695 0.725903 -0.085403 0.667450 0.386950 0.821935 -0.100270 0.171772 -0.167583 0.238507 0.129630 -0.434137 -0.137739 -0.648005 -0.708830 -0.402105 0.661217 -0.062548 0.583856 0.075780 -0.487141 -0.594738 0.237135 -0.008452 -0.200319 -0.401491 0.649158 0.428512 0.526169 0.238068 -0.369246 -0.314528 -0.021199 -0.410078 -0.048503 0.028335 -0.092699 -0.469933 0.141138 -0.510601 0.050926 0.369764 -0.408596 -0.029319 0.343869 -0.302477 0.749008 0.114202 0.062891 0.108242 0.264396 0.962674 0.208077 0.179913 -0.495013 -0.696716 0.049743 0.089514 0.338915 -0.412382 -0.184655 0.065231 0.118674 0.109088 -0.069746 -0.311237 0.851842 0.749980 -0.487501 -0.698926 -0.679867 -0.319111 -0.117205 0.276569 -0.153171 0.238388 -0.051665 0.148780 -0.009904 -0.112036 0.801181 -0.631938 0.350295 0.086671 0.074556 -0.137238 0.114893 0.157106 -0.427044 -0.094373 0.273651 0.543862 0.072404 0.091312 -0.301535 0.402913 -0.266654 -0.423974 0.576671 0.183152 0.308982 0.436901 0.255966 0.482396 -0.122943 -0.458469 0.062276 0.070066 -0.441943 0.254171 -0.591318 0.616995 -0.103476 0.432791 0.564450 0.020542 -0.265709 0.632820 -0.045037 0.057991 -0.353938 0.442251 -0.415613 0.322673 -0.131809 -0.096751 -0.467629 -0.008358 -0.176808 0.114480 0.757224 0.402811 -0.903577 0.058964 -0.224272 0.590442 -0.922340 0.225784 -0.066792 0.253055 -0.027053 0.020035 -0.027827 -0.234378 0.160528 -0.123160 0.165050 0.149979 0.083226 0.186370 0.066126 -0.264405 0.309358 0.131781 0.283192 0.083294 0.088509 -0.097168 -0.124138 0.321470 -0.178421 0.140489 0.155400 0.451380 -0.409898 -0.067337 0.164414 -0.023758 0.377895 0.250061 0.041764 -0.335812 -0.063845 -0.140034 0.848046 -0.274280 -0.461668 -0.382035 0.439259 -0.219702 0.078883 -0.662524 -0.578198 0.075472 -1.165239 -0.679275 0.072791 0.290138 0.169417 -0.204161 -0.311566 -0.117581 0.288000 0.415583 0.989791 0.096590 -0.258428 0.612515 0.191438 -0.287290 -0.359340 -0.039330 0.009719 -0.201023 -0.051455 -0.293259 0.006961 -0.618624 0.262711 0.665426 -0.586347 0.071031 -0.382058 0.576456 -0.717278 0.834256 0.443793 -0.818326 -0.125062 0.137225 0.622229 -0.568378 -0.494916 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.131137 -0.515222 1.981708 1.408704 -0.059030 0.083277 0.924341 -0.999307 1.071187 0.288900 -0.209352 0.224498 -1.210847 0.469492 -0.878236 1.016873 -1.287111 -0.912945 -0.366425 -1.023795 -0.215445 -0.498064 1.120905 -0.233199 1.251544 -0.028076 -0.618578 -0.978504 -1.339885 -0.680000 0.871223 -0.427802 0.646108 -0.180245 -0.440533 -1.838109 1.123407 0.905709 -0.726254 -0.879226 1.127225 -0.856953 0.013893 -0.517298 0.125704 0.074648 -0.003654 0.738024 1.102621 0.597115 0.567162 0.470605 0.355940 2.045464 -1.344597 0.683744 0.280231 -0.009809 -0.456160 0.413424 0.118953 0.212346 0.432782 0.320099 -0.098685 -1.311545 -0.450909 -0.761299 -0.978046 0.786216 -0.252091 -0.033281 -1.001867 0.036884 -0.735164 -0.230516 -1.452719 0.983145 1.379915 -1.074711 0.814945 -0.058816 -0.056087 -0.277604 -0.005947 0.292795 0.274585 0.207170 0.078519 -0.679820 -0.917975 0.174565 0.224590 -0.190079 -0.379310 -1.814608 0.967420 -0.579918 -1.275615 0.050868 0.751165 -0.622981 -0.240576 0.289693 -0.055900 0.643764 -0.688482 -1.037448 -0.072105 0.171133 0.410748 -0.250286 0.039886 -0.720564 -0.425321 -0.761422 -1.383245 0.348148 -0.362830 -0.434241 -0.594794 0.824322 -0.373999 -0.148824 0.153474 0.768801 -0.609345 1.097925 -0.281505 0.868830 0.492425 0.470936 -1.033466 0.213719 1.007386 1.164027 -0.516862 0.480126 -0.960793 0.140694 -0.903029 -0.107661 0.028730 0.682661 0.658046 -1.115146 -0.716083 -0.074438 0.056780 -1.285804 0.355934 -0.661830 -0.227212 -0.017361 0.835377 0.665007 1.063222 1.688725 -0.821570 0.308449 0.109682 -0.393352 1.165283 0.090828 0.901881 -0.597409 -0.778465 0.226531 0.205921 0.255800 -0.223475 0.580471 0.132771 -1.420510 0.064261 -0.008148 0.398001 -0.652851 0.850389 0.889985 0.514855 -1.034526 0.312260 1.031700 -0.568658 0.026549 0.241744 -1.318639 0.579786 0.367134 -0.041096 0.850551 0.139686 -0.584729 0.559814 -0.523256 0.336420 -0.699286 -0.005001 -0.682872 -0.605593 -0.780086 0.250046 -0.190347 -0.678276 -0.271489 -0.386144 1.224351 -0.552326 -0.525152 0.979179 -0.161180 0.063211 -1.454846 2.012204 -0.836945 0.356888 -0.258888 0.059919 -0.018983 0.639500 -1.137767 -0.008545 0.346650 -0.303199 0.853567 1.668809 0.733919 0.086435 -0.213419 1.314459 -0.431740 1.159494 -0.439812 1.148727 -0.343310 -0.862770 0.310377 -0.240496 -0.410452 -0.558045 0.427811 1.637969 0.542808 0.592870 0.953066 0.496282 1.697009 -0.567402 1.069045 -0.244686 0.742258 -0.286633 -0.320895 0.598379 0.263871 -0.332317 0.870549 -1.488308 -1.837169 -0.540419 -1.271867 0.676194 -0.710912 0.356611 -0.471697 -0.066513 -1.553403 -0.964725 -0.009915 -0.477196 0.465366 0.751219 0.231137 0.647319 1.103115 -0.785584 0.235490 0.065326 0.754039 0.359460 -0.641297 -0.742889 0.992644 -0.969831 -0.017948 1.373573 -0.548788 0.322133 -0.283146 0.938233 -0.894109 1.530931 0.219517 -0.367145 1.487446 1.085646 1.353095 0.473612 -0.538228 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.013858 -0.164254 0.766512 0.542706 -0.116275 0.032246 0.092179 -0.379120 0.411272 0.158163 -0.135388 0.080114 -0.323808 0.157860 -0.176908 0.444147 -0.523608 -0.244044 -0.135303 -0.396069 -0.158091 -0.146107 0.273834 -0.115093 0.396074 0.186761 -0.211352 -0.098787 -0.233262 -0.502514 0.164940 -0.179052 0.181854 0.026805 0.016394 -0.583788 0.489158 0.309033 -0.256432 -0.327638 0.288911 -0.220902 0.061320 -0.142461 0.017624 0.153595 0.030465 0.166603 0.377529 0.265710 0.222508 0.088538 0.243888 0.600097 -0.332922 0.230351 0.118621 -0.089627 -0.143861 0.086527 0.070603 0.042804 0.105691 0.085311 0.013727 -0.503442 -0.189513 -0.228077 -0.265849 0.279988 -0.178259 -0.152745 -0.371687 -0.199776 -0.230719 -0.128387 -0.894457 0.349326 0.495735 -0.400378 0.238377 0.059229 0.005545 0.015137 0.060927 0.088979 0.219542 0.117770 -0.016555 -0.004379 0.095224 -0.089219 0.187963 -0.043836 -0.180093 -0.553912 0.321959 -0.367365 -0.416942 0.140134 0.310831 -0.147632 -0.104413 0.012013 -0.000708 0.185151 -0.233406 -0.311771 0.092499 0.014287 0.190284 -0.059315 -0.056399 -0.188754 -0.126253 -0.018030 -0.535646 0.156841 -0.094458 -0.099215 -0.101417 0.302784 0.049132 -0.102505 0.004047 0.248181 -0.216924 0.545383 -0.081573 0.400544 -0.119417 0.300088 -0.374748 0.214098 0.345398 0.006381 -0.162346 0.108745 -0.275110 0.026367 -0.366303 0.033928 -0.129875 0.268671 0.407172 -0.269473 -0.306912 -0.069491 -0.273671 -0.544047 0.143702 -0.241865 -0.145449 0.074494 0.293682 0.292420 0.386778 0.485293 -0.324843 -0.051023 -0.089162 -0.123092 0.410883 0.075032 0.328551 -0.214736 -0.165122 0.157936 0.115320 0.087252 0.081107 0.061216 0.110543 -0.439900 0.159009 0.265932 0.182894 -0.166342 0.300667 0.321305 0.338612 -0.127431 0.041904 0.351201 -0.144172 -0.023493 0.114057 -0.390836 0.188084 0.124882 0.111237 0.250792 0.037844 -0.028124 0.118885 -0.202592 0.132401 -0.241948 0.001627 -0.202981 -0.072781 -0.207240 0.174762 -0.169861 -0.165309 -0.062857 -0.154564 0.436442 -0.324370 -0.066541 0.408511 -0.087175 0.106692 -0.299441 0.600146 -0.307502 0.299469 -0.117023 -0.000882 -0.000383 0.020619 -0.318968 0.024802 0.135526 0.006608 0.094345 0.446220 0.265922 -0.026726 -0.073418 0.463118 -0.229787 0.474001 -0.086100 0.404398 -0.112526 -0.096480 0.080459 -0.067874 -0.244276 -0.198716 0.111135 0.460314 0.107063 0.172786 0.242567 0.087176 0.532170 -0.235403 0.394218 -0.061511 0.232140 -0.197463 -0.161815 0.245419 0.213444 -0.108654 0.147782 -0.517827 -0.494017 -0.422248 -0.227849 0.024100 -0.080281 0.110180 -0.156340 -0.056504 -0.276002 -0.355879 0.448762 -0.141487 0.092786 0.156775 0.064096 0.260688 0.398621 -0.139984 -0.030843 -0.117431 0.109476 0.168470 -0.082838 -0.302703 0.436584 -0.323894 -0.098991 0.488550 -0.264584 0.106282 0.076972 0.271146 -0.319234 0.430869 0.057392 -0.113986 0.494374 0.492087 0.441451 0.091874 -0.210735 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.024208 -0.393562 1.168995 0.845765 -0.026781 0.064758 0.559452 -0.528299 0.693371 0.176538 -0.152866 0.142849 -0.839054 0.313226 -0.489187 0.606193 -0.829574 -0.635698 -0.160782 -0.509631 -0.163656 -0.436263 0.699213 -0.085070 0.716610 0.076755 -0.404759 -0.524199 -0.833369 -0.402513 0.554901 -0.319229 0.439060 0.023395 -0.239544 -1.224960 0.651596 0.500520 -0.407358 -0.588486 0.629969 -0.564305 0.115697 -0.398746 0.039106 0.082575 0.096432 0.457590 0.700803 0.323356 0.324408 0.130125 0.170671 1.235590 -0.820987 0.415833 0.180483 -0.021968 -0.267556 0.154776 0.095283 0.064643 0.325784 0.334878 -0.173954 -0.708772 -0.262852 -0.532288 -0.694228 0.550477 -0.187009 0.130694 -0.705210 0.011021 -0.470690 -0.151442 -0.840910 0.636569 0.981116 -0.677736 0.576089 0.004903 0.089986 -0.159135 0.029812 0.181058 0.221683 0.123307 -0.094900 -0.369637 -0.548823 0.094371 0.063162 -0.053888 -0.134136 -0.998362 0.518001 -0.398874 -0.801823 0.047511 0.347481 -0.266971 -0.211776 0.214424 0.063813 0.450422 -0.450950 -0.732111 -0.082120 0.046910 0.226045 -0.130496 0.078389 -0.383746 -0.327903 -0.535846 -0.876156 0.059084 -0.226225 -0.415075 -0.296238 0.547429 -0.299230 0.030252 0.124222 0.413561 -0.319703 0.788345 -0.060863 0.495943 0.288878 0.187120 -0.674988 0.060054 0.594865 0.840809 -0.330640 0.256990 -0.544608 0.053290 -0.578952 -0.200605 0.047501 0.393903 0.481984 -0.709345 -0.500373 -0.082010 0.001675 -0.897692 0.241044 -0.472973 -0.022264 0.094277 0.546218 0.407826 0.654783 1.190295 -0.572948 0.249580 0.025469 -0.268004 0.690804 0.159926 0.574264 -0.376523 -0.495808 0.190701 0.159465 0.157689 -0.080321 0.213159 0.071319 -0.876198 -0.011599 0.085861 0.298940 -0.336799 0.517913 0.461634 0.285980 -0.667631 0.223313 0.654921 -0.203394 0.010724 0.151281 -0.849271 0.486979 0.163240 -0.077057 0.408535 0.067298 -0.431011 0.373154 -0.329558 0.256465 -0.507985 -0.022113 -0.429455 -0.300335 -0.580272 0.183507 -0.115091 -0.444518 -0.114970 -0.138451 0.781647 -0.315825 -0.331573 0.577344 -0.044655 0.204114 -0.931698 1.188551 -0.525033 0.371028 -0.202089 0.003319 0.001881 0.343563 -0.518417 -0.060835 0.244275 -0.124076 0.463755 0.970434 0.457964 0.071183 -0.026143 0.814432 -0.106451 0.637666 -0.183478 0.631265 -0.165066 -0.473309 0.251782 -0.194448 -0.145388 -0.236085 0.226892 1.069353 0.482723 0.329696 0.733282 0.323275 0.988446 -0.363026 0.517731 -0.159236 0.595765 -0.226185 -0.186389 0.255490 0.255042 -0.278570 0.521360 -0.899676 -1.250413 -0.339334 -0.806173 0.256032 -0.387923 0.207180 -0.242729 0.032993 -0.908305 -0.505333 0.042538 -0.314189 0.475829 0.388828 0.115424 0.453876 0.725330 -0.530156 -0.011469 0.119757 0.441914 0.130423 -0.246412 -0.533356 0.554069 -0.708871 0.044839 0.826732 -0.412709 0.111065 -0.152061 0.670342 -0.568888 1.024776 0.228138 -0.254242 0.944670 0.611371 0.881326 0.371924 -0.364858 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::~__new_allocator() = -0.154484 -0.190715 0.412838 0.332834 0.047046 0.044203 0.174841 -0.161545 0.285974 0.192176 -0.044500 0.039237 -0.336747 0.096028 -0.057403 0.270589 -0.201498 -0.252753 -0.046587 -0.177070 -0.057019 -0.183547 0.239704 -0.069129 0.232239 0.008414 -0.154580 -0.152164 -0.324096 -0.264222 0.148721 -0.135605 0.196436 0.043180 -0.092729 -0.395677 0.241381 0.228315 -0.150363 -0.240817 0.200497 -0.184904 0.122408 -0.074118 0.044580 0.109420 0.055576 -0.059327 0.253204 0.154914 0.250120 -0.019974 0.086527 0.322485 -0.289603 0.165582 0.055233 -0.040655 -0.116986 0.017298 0.050302 0.018314 0.167156 0.144385 -0.099786 -0.253104 -0.131165 -0.164945 -0.337329 0.170029 -0.157600 0.016498 -0.254566 -0.071702 -0.088894 -0.107412 -0.345706 0.136187 0.385699 -0.210927 0.257618 0.045576 0.040714 -0.049314 0.038599 0.071225 0.058325 0.047681 -0.076613 -0.035909 0.002145 0.024724 0.016618 0.184501 -0.055590 -0.099620 0.216338 -0.006491 -0.288556 0.076895 0.105891 -0.008106 -0.234287 0.099673 -0.017349 0.224251 -0.181683 -0.301398 -0.055847 0.000247 0.155375 -0.068135 -0.051257 -0.180921 -0.191557 -0.167364 -0.313455 -0.028955 -0.080781 -0.221300 -0.153987 0.204481 -0.134748 0.029796 0.036461 0.155534 -0.130961 0.351589 0.014971 0.241590 0.051270 0.010804 -0.430564 -0.071075 0.206755 0.302884 -0.118757 0.073183 -0.201612 -0.043882 -0.190317 -0.033336 0.042495 0.148783 0.385865 -0.212820 -0.171981 -0.025895 -0.029346 -0.404590 0.106511 -0.212570 0.140397 0.060719 0.205230 0.112382 0.246708 0.610097 -0.236471 0.069790 -0.037615 -0.183090 0.258871 0.110307 0.223801 -0.136775 -0.183838 0.096735 0.148672 0.020297 0.078137 0.031253 0.025067 -0.308270 0.028830 0.128050 0.069795 -0.125392 0.182579 0.138727 0.238610 -0.162402 0.076548 0.218741 -0.011802 0.025949 0.041037 -0.319498 0.166378 0.046118 -0.081300 0.104955 0.017892 -0.147175 0.124785 -0.184861 0.109548 -0.226267 0.094253 -0.172955 0.001177 -0.229841 0.001661 -0.064312 -0.181311 0.027913 0.053743 0.295693 0.032045 -0.102134 0.146824 0.060435 0.041203 -0.314297 0.432583 -0.206008 0.217339 -0.176631 -0.012873 -0.016582 0.171229 -0.074971 -0.077691 0.111076 -0.012334 0.124834 0.365880 0.161315 -0.038518 0.009856 0.297941 0.001550 0.224413 -0.023957 0.246571 -0.027562 -0.076631 0.131287 -0.090768 -0.030792 -0.074253 -0.022668 0.343879 0.238457 0.003657 0.213648 0.079058 0.338304 -0.134182 0.210780 0.014383 0.315812 -0.083680 -0.042766 0.070002 0.169254 -0.097467 0.135666 -0.300227 -0.395028 0.020358 -0.290647 0.017327 0.049662 0.053683 -0.047296 0.034988 -0.244346 -0.177190 0.129860 -0.133189 0.321055 0.034481 0.066616 0.186131 0.264589 -0.164588 -0.093913 -0.034682 0.075689 0.030229 -0.048254 -0.129068 0.186638 -0.260402 -0.025395 0.219421 -0.152494 0.012261 0.035273 0.224384 -0.204587 0.400288 0.090976 -0.012940 0.449593 0.199140 0.404356 0.036248 -0.123771 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, AdjListNode const&) = 0.189072 -0.491573 2.598162 1.701841 -0.704679 0.055051 0.448344 -1.283130 1.182806 -0.533300 -0.419565 0.319441 -1.179311 0.579482 -0.972332 0.943713 -2.338727 -0.956330 -0.533374 -1.286444 -0.422390 -0.477994 1.063384 0.053704 1.305048 0.886498 -0.839966 -0.512434 -1.055156 -0.646649 1.234339 -0.569074 0.808373 0.403287 -0.105876 -3.048286 1.497787 0.868957 -0.867874 -1.065972 1.201632 -1.092005 -0.020024 -1.157767 -0.546263 0.081238 -0.042293 1.084895 1.246142 0.376505 -0.077809 0.565882 0.297188 2.564481 -1.326272 0.654296 0.493730 -0.269526 -0.594098 0.180202 0.173060 0.235903 0.469320 0.383173 -0.232192 -1.748173 -0.337913 -1.204751 -1.030900 1.107805 -0.154728 -0.000967 -1.096045 -0.195604 -1.386102 -0.318348 -1.079437 1.590480 1.675617 -1.452779 0.785741 -0.196185 0.011327 0.002052 0.158084 0.461796 0.835562 0.349850 0.115601 -0.498236 -0.987638 -0.087951 0.515204 -0.544741 -0.419870 -2.553161 0.952076 -1.840560 -1.410316 0.093654 1.036379 -0.788559 -0.253486 -0.115967 0.229090 0.645935 -0.749480 -1.013011 0.228781 0.238781 0.249132 -0.134797 0.056281 -0.265286 -0.335275 -0.849588 -1.866456 0.695015 -0.336146 -0.153963 -0.100503 1.126203 -0.347138 -0.397635 0.088244 0.849104 -0.891142 1.712542 -0.523613 0.756955 0.049767 0.696302 -0.186613 0.220050 1.054593 1.240408 -0.736875 -0.141324 -1.010497 0.256945 -1.314432 -0.558551 -0.171278 0.716229 0.633493 -1.163897 -0.990448 -0.316892 -0.713465 -2.062091 0.131860 -0.806417 -0.741726 0.835422 1.046248 1.153576 1.367007 1.601211 -0.908644 0.331942 -0.066709 -0.431606 1.468593 0.205391 1.099270 -0.733280 -0.731768 0.476242 -0.326524 0.728861 -0.163046 0.378057 0.213977 -1.650844 -0.130810 0.493548 0.887845 -0.209945 0.960013 1.232799 0.398586 -1.137300 0.327272 1.269701 -0.687676 -0.142173 0.450527 -1.278150 0.612856 0.539177 -0.020038 1.111412 0.093265 -0.604897 0.364688 -0.306667 0.469292 -0.858112 -0.292304 -0.626091 -0.354057 -1.004880 0.361342 -0.518410 -0.684039 -0.722246 -1.097878 1.582194 -1.710751 -0.833904 1.598226 -0.217693 0.968674 -1.756020 1.587548 -1.043912 1.285361 -0.141044 0.014950 0.083963 -0.337990 -1.566347 0.366190 0.392639 -0.248568 0.466011 1.609106 1.065311 0.234422 -0.351028 1.609145 -0.554260 1.665481 -0.552140 1.270243 -0.506612 -0.908342 0.407723 -0.235769 -0.762700 -0.596828 0.902102 1.834917 0.541090 1.347510 1.364588 0.726850 1.900676 -0.767626 0.882128 -0.459889 0.634869 -0.447834 -0.602922 0.751979 0.878289 -0.344761 0.737796 -1.881207 -2.535816 -1.932106 -1.446186 0.487692 -0.991789 0.354346 -0.513347 -0.102467 -1.569132 -1.013688 0.558856 -0.525131 1.167060 0.943276 0.159969 0.905791 1.474105 -1.088862 -0.025723 0.480795 1.021708 0.484458 -0.178874 -1.793122 1.583733 -1.131090 -0.038875 2.152674 -0.984504 0.473014 -0.249116 1.361438 -1.082928 1.840376 0.296424 -0.992680 1.465063 1.287134 1.019483 1.141095 -0.777504 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(AdjListNode const&) = 0.114084 -1.053399 6.235793 3.867417 -1.169148 0.282080 1.390592 -3.482106 2.880909 -1.399790 -0.693932 0.850521 -2.944306 1.382831 -3.630071 1.877610 -5.076876 -2.609815 -1.752983 -3.605334 -1.017619 -1.105937 2.683398 0.155330 3.244828 0.862260 -2.369405 -1.454207 -3.904686 -1.508252 2.986720 -1.057007 1.805000 -0.831344 -0.790157 -7.149463 3.632082 2.708878 -2.200092 -2.383734 3.340861 -3.005511 -0.464501 -2.465806 -1.348350 -0.325414 -0.629067 1.849618 3.101441 0.621575 0.431079 2.314831 0.045441 6.876223 -3.826354 1.867463 1.048440 -0.216656 -1.635449 1.021103 0.167086 0.919303 1.116259 0.663251 -0.684062 -4.321362 -0.495986 -2.502152 -2.387088 2.723463 -0.513432 -0.502273 -2.040114 -0.064120 -4.167453 -0.826273 -0.443475 3.235004 3.769144 -3.262530 1.804015 -0.918810 -0.238695 0.015629 0.466340 0.984792 2.053217 0.684591 0.645915 -2.010877 -3.118131 1.148678 0.869818 -0.515270 -1.312161 -6.139659 2.824169 -4.909101 -3.703976 -0.133808 2.573179 -2.378737 -0.968235 -0.079906 0.298969 1.298576 -1.786584 -2.593284 0.185585 1.275096 0.704950 -0.425279 0.490784 -1.535454 -0.522802 -2.390775 -4.372533 1.962113 -0.869880 -0.145003 -1.316075 2.948312 -1.274200 -1.185516 0.327612 2.527813 -2.369180 3.336598 -1.914008 1.794952 -0.147892 1.727914 -1.088491 -0.348596 2.332185 3.272051 -2.195666 0.036390 -2.764095 0.593934 -3.216642 -1.121404 -0.967040 1.659152 0.982754 -3.133880 -2.094435 -0.459730 -1.050065 -4.895068 -0.131570 -1.734083 -2.674304 1.271786 2.533711 2.996035 3.267870 4.434436 -1.535352 1.046664 0.458929 -1.598404 3.796800 -0.972642 2.648645 -1.870798 -2.369211 1.014805 -1.002137 1.942553 -0.825217 1.651403 0.161223 -4.240253 -0.513380 0.411627 1.976938 -0.442662 2.586107 3.343378 0.720416 -3.939886 1.177282 3.069206 -2.232637 -0.053787 0.665964 -3.146987 0.849305 1.784242 -0.248381 3.455207 0.356693 -1.831826 0.936934 -0.672270 1.472297 -2.352506 -0.485680 -1.694261 -1.101536 -2.426518 0.036781 -1.042159 -1.573421 -2.095606 -3.552087 3.773435 -4.399039 -2.864322 4.158246 0.159345 2.038224 -5.071834 3.373968 -2.501716 3.294734 -0.056475 0.757186 0.112300 0.162576 -4.417272 1.454215 0.843877 -1.460842 2.089097 4.483979 2.520098 1.079598 -1.342146 4.006312 -1.649881 4.042776 -1.897112 3.410892 -1.176566 -3.462191 1.017559 -0.647513 -2.005461 -1.631847 2.572648 4.028386 1.515003 3.215923 3.002855 2.389817 5.053224 -1.663168 2.396217 -1.192544 1.108310 -0.790359 -1.507545 2.118884 1.833435 -0.605339 1.899716 -4.726640 -6.340051 -4.546648 -4.679832 2.585161 -3.111329 0.516451 -1.266535 -0.421733 -4.629490 -2.698904 0.960204 -1.317398 3.800903 2.622353 0.692458 1.993276 3.677849 -3.057339 0.779949 1.244595 2.719099 1.175780 -1.308278 -4.135988 3.945157 -2.497945 0.088924 5.125516 -2.137372 1.632815 -0.244113 2.183070 -2.688188 4.647935 0.620383 -2.236847 3.810915 2.760150 2.913480 2.735894 -1.795293 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.044699 -0.595322 1.510617 1.154046 -0.275947 0.127581 0.313715 -0.417674 0.461854 0.427508 -0.218723 0.523326 -0.658149 0.225472 0.167863 0.753400 -1.066829 -0.459371 -0.126302 -0.487335 -0.368144 -0.260469 0.241764 0.263754 0.767790 0.292899 -0.450242 -0.353191 -0.397632 -0.705923 0.089238 -0.253559 0.582842 0.022362 0.257158 -1.957971 0.787353 0.604102 -0.296383 -0.882093 0.497404 -0.302405 0.201153 -0.218080 -0.432859 0.217821 0.374214 0.501497 0.506347 0.541956 0.127925 0.006825 0.699862 1.620131 -0.136794 0.507112 0.557605 -0.357023 -0.246834 -0.158627 0.202717 -0.260787 0.310405 0.066735 0.045477 -0.784367 -0.302039 -0.450815 -0.591661 0.360018 0.129005 -0.310843 -0.704841 -0.468353 -0.289957 -0.284583 -0.995664 0.841520 1.044511 -0.903143 0.686576 0.201555 0.080517 0.132106 0.219311 0.169173 0.372792 0.244509 -0.089215 0.041192 -0.000753 -0.409815 0.348061 -0.113951 -0.375190 -1.262385 0.486231 -0.280104 -0.874319 0.489330 0.408749 -0.373582 -0.261159 -0.309049 0.161748 0.569064 -0.489648 -0.610012 -0.217435 0.071230 0.150115 -0.239711 -0.209714 -0.083073 -0.261521 -0.180178 -1.048704 0.344398 0.155037 -0.250830 -0.095200 0.617779 -0.106894 0.249027 -0.028929 0.397293 -0.281314 1.079534 0.282988 0.491858 -0.024985 0.139754 -0.368537 0.326624 0.498251 0.270612 -0.252742 -0.098768 -0.329906 0.231304 -0.320512 0.295063 0.173206 0.860193 0.785669 -0.287567 -0.736536 -0.479585 -0.578101 -0.906348 0.285021 -0.496522 -0.111175 0.626131 0.547739 0.269489 0.416893 0.762272 -0.594296 0.274696 -0.133330 -0.201755 0.532034 0.272756 0.541583 -0.489581 -0.315081 0.354568 0.394161 0.379089 0.074668 0.051225 0.305085 -0.608004 -0.046980 0.329759 0.413491 -0.169822 0.583031 0.586938 1.535388 -0.109957 -0.157401 0.410213 -0.276594 -0.128440 0.187117 -0.773315 0.259497 0.125566 -0.149627 0.769865 0.024934 -0.355361 0.470441 -0.258926 0.065194 -0.416373 0.300822 -0.372411 -0.053362 -0.335342 0.099594 -0.431994 -0.243874 -0.428331 -0.186992 1.088277 -0.881184 -0.408289 0.512358 -0.328477 0.345721 -0.928699 1.787074 -0.507082 0.549752 -0.332294 -0.432139 0.053105 -0.070564 -0.466766 0.224740 0.297232 0.056765 -0.088267 0.903718 0.399399 -0.096837 -0.040901 0.719666 -0.188382 0.799350 -0.153730 0.720417 -0.257845 0.011798 -0.089754 -0.095183 -0.191110 -0.105312 0.076783 0.638020 0.182789 0.240353 0.395977 0.342684 0.709489 -0.493119 0.590836 -0.151159 0.754987 -0.490186 -0.308155 0.178480 0.619943 -0.037659 0.393442 -1.055783 -0.826710 -0.881894 -0.486089 -0.247422 0.319418 0.313363 -0.243937 -0.188116 -0.631394 -0.664569 0.846374 -0.201033 0.323555 0.515946 0.141677 0.758106 0.626515 -0.046035 -0.236684 -0.110063 0.125930 0.210851 -0.012078 -0.547745 0.606635 -0.777067 0.086666 0.963710 -0.364356 0.327298 -0.133864 0.638724 -0.710123 0.975410 0.194387 -0.576396 0.592042 0.993934 0.636234 -0.271549 -0.519100 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.040131 -0.398199 1.728883 1.138187 -0.216522 0.070395 0.439442 -0.800274 0.780304 0.091780 -0.256452 0.307778 -0.767397 0.327003 -0.712144 0.750147 -1.196772 -0.652933 -0.325342 -0.876328 -0.298750 -0.279059 0.631450 -0.074745 0.948735 0.210843 -0.541145 -0.472556 -0.886804 -0.781276 0.498433 -0.319264 0.454470 -0.224915 -0.103952 -1.659697 0.975533 0.758046 -0.561271 -0.753101 0.815463 -0.615742 -0.010279 -0.418422 -0.108596 0.110661 0.061238 0.507173 0.783025 0.463057 0.295954 0.399187 0.350933 1.728613 -0.805979 0.542214 0.371967 -0.121025 -0.349587 0.238773 0.117376 0.056424 0.252047 0.119894 -0.020778 -1.097908 -0.309292 -0.573067 -0.572606 0.602233 -0.186645 -0.256170 -0.681104 -0.204544 -0.801518 -0.247640 -1.116778 0.817232 1.069362 -0.921514 0.594106 -0.023101 0.012372 0.007861 0.099860 0.237939 0.402028 0.234824 0.079236 -0.344822 -0.414725 0.061919 0.270943 -0.114533 -0.401233 -1.537937 0.797977 -0.946021 -0.996880 0.176484 0.655776 -0.535961 -0.180604 0.018913 0.006417 0.444650 -0.532985 -0.693883 0.014145 0.169623 0.284277 -0.146180 0.042393 -0.436184 -0.213677 -0.337103 -1.174992 0.468245 -0.155222 -0.160120 -0.356768 0.723720 -0.101638 -0.150564 0.047256 0.632842 -0.522032 1.000680 -0.226099 0.662752 -0.063156 0.527050 -0.694376 0.212937 0.724279 0.490800 -0.505618 0.188476 -0.649958 0.153523 -0.721045 -0.033620 -0.237391 0.625387 0.570495 -0.751163 -0.655890 -0.219096 -0.344166 -1.117098 0.163451 -0.478843 -0.500437 0.193166 0.657285 0.652533 0.792345 1.133189 -0.561400 0.135528 0.007871 -0.341886 0.883314 -0.089171 0.707786 -0.512151 -0.508627 0.278203 0.104877 0.369440 -0.069016 0.342370 0.192469 -1.049779 0.081164 0.255214 0.453420 -0.333468 0.708388 0.820097 0.566071 -0.716729 0.106100 0.742079 -0.516576 -0.059697 0.220789 -0.903676 0.332671 0.356206 0.077707 0.801354 0.124960 -0.320451 0.377829 -0.334377 0.271606 -0.538609 -0.004762 -0.485356 -0.336344 -0.488165 0.191064 -0.341400 -0.377675 -0.391312 -0.632138 1.030298 -0.915213 -0.475077 0.889698 -0.108346 0.278600 -1.106647 1.338232 -0.668134 0.643161 -0.121725 0.064524 0.007787 0.190329 -0.939410 0.196951 0.268919 -0.241113 0.457292 1.163576 0.602932 0.104400 -0.243751 1.043653 -0.499822 1.025329 -0.346036 0.873129 -0.316119 -0.631592 0.151382 -0.134259 -0.480700 -0.395399 0.442804 1.037280 0.261363 0.553844 0.645832 0.467897 1.265764 -0.498061 0.773437 -0.239382 0.530361 -0.348998 -0.394097 0.496942 0.436825 -0.158636 0.479302 -1.246181 -1.359792 -1.008352 -0.933619 0.402506 -0.494185 0.215078 -0.374381 -0.146978 -1.042359 -0.798803 0.532171 -0.305125 0.451639 0.618272 0.164945 0.599357 0.859299 -0.510722 0.102524 0.011556 0.504869 0.344386 -0.362231 -0.774695 0.913084 -0.752992 -0.062171 1.216610 -0.525940 0.363795 0.035882 0.593420 -0.752664 1.140547 0.153407 -0.491799 0.997403 0.992452 0.946915 0.296551 -0.486282 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.032940 -0.450895 1.845436 1.343324 -0.350922 0.033402 0.604574 -0.790270 0.931477 0.152305 -0.179976 0.169152 -0.939067 0.364311 -0.039829 0.942336 -1.488875 -0.667555 -0.203970 -0.891693 -0.280504 -0.389114 0.813613 -0.156825 0.999891 0.406269 -0.493271 -0.731679 -0.596290 -0.532094 0.898929 -0.490370 0.738361 0.510175 -0.131998 -2.506445 1.047033 0.512176 -0.626964 -0.822659 0.816413 -0.662623 0.240849 -0.628361 -0.156863 0.201970 0.160362 0.723228 0.967287 0.508662 0.167580 0.143838 0.416210 1.830037 -0.980148 0.449309 0.270607 -0.379587 -0.490390 0.135520 0.164080 0.027703 0.514536 0.308174 -0.123526 -1.240566 -0.340157 -0.899190 -1.029807 0.673936 0.021274 0.014517 -0.932249 -0.155117 -0.471556 -0.358208 -1.424803 1.128594 1.279164 -1.043814 0.761650 0.016789 0.033466 -0.082828 0.103890 0.348165 0.472545 0.200262 -0.059175 -0.250296 -0.587023 -0.406463 0.377077 -0.260840 -0.171995 -1.586960 0.591965 -0.327161 -0.986524 0.242206 0.701749 -0.344439 -0.560252 -0.135191 0.170341 0.673221 -0.618334 -0.856595 -0.119093 -0.006805 0.138433 -0.172740 -0.168153 -0.372262 -0.500204 -0.685699 -1.294283 0.319958 -0.245987 -0.292266 -0.297549 0.758216 -0.376693 -0.173013 0.081088 0.624237 -0.638709 1.276597 -0.164202 0.694932 0.503544 0.220264 -0.687137 0.140125 0.849273 1.204541 -0.225727 -0.136888 -0.841268 0.156935 -0.902577 -0.153163 0.386072 0.789121 0.957689 -0.727742 -0.715459 -0.197035 -0.153997 -1.356131 0.394671 -0.681469 0.127770 0.549562 0.750367 0.577144 0.976320 1.215191 -0.886391 0.433662 -0.250632 -0.234635 1.052790 0.582005 0.845125 -0.533105 -0.385560 0.186166 0.129847 0.361643 -0.030465 0.168462 0.244948 -1.145758 -0.143103 0.202126 0.464899 -0.402049 0.558628 0.761136 1.048247 -0.759936 0.140296 0.902917 -0.368939 -0.098284 0.396526 -0.990586 0.535227 0.269254 -0.285230 0.672259 0.034069 -0.582352 0.302224 -0.339605 0.173423 -0.490441 -0.075047 -0.490465 -0.275995 -0.648561 0.194254 -0.487694 -0.624769 -0.331274 -0.224716 1.180073 -0.591647 -0.494539 0.940224 -0.494471 0.361172 -1.304651 1.965116 -0.778603 0.373774 -0.599236 -0.276187 -0.082487 0.213748 -0.912778 0.113177 0.310828 -0.076519 0.318094 1.427762 0.738089 0.047453 -0.170583 1.158119 -0.203493 1.097137 -0.238827 1.030458 -0.427749 -0.243562 0.191448 -0.165562 -0.303387 -0.355146 0.351734 1.351737 0.448186 0.604531 0.868935 0.454728 1.263757 -0.559986 0.801514 -0.189317 0.784153 -0.283278 -0.301218 0.483971 0.539265 -0.287420 0.641354 -1.303899 -1.552657 -0.645288 -0.828736 0.097190 -0.020099 0.318519 -0.317523 0.008722 -1.161518 -0.630556 0.146382 -0.375703 0.422352 0.538045 0.111456 0.706619 1.013188 -0.607671 -0.265605 0.115606 0.483925 0.303615 -0.213338 -0.979283 1.004348 -0.950933 0.011974 1.308729 -0.570797 0.154932 -0.321948 1.335942 -0.782187 1.356187 0.187712 -0.466176 1.180242 1.080982 0.977202 0.421047 -0.498160 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.001441 -0.286839 0.956394 0.719049 -0.112333 -0.016290 0.458632 -0.314956 0.540116 0.239712 -0.138172 0.044736 -0.594060 0.175755 0.089315 0.588526 -0.712290 -0.389336 0.008486 -0.387050 -0.079841 -0.254586 0.512778 -0.176833 0.581711 0.192092 -0.176483 -0.520696 -0.323332 -0.278847 0.458270 -0.331804 0.404417 0.404305 -0.120082 -1.119623 0.508818 0.228736 -0.337788 -0.454434 0.445970 -0.339714 0.237543 -0.303700 0.108250 0.184431 0.212201 0.450445 0.550627 0.372713 0.173863 -0.111788 0.289132 0.824165 -0.556969 0.218874 0.114458 -0.217238 -0.241603 0.053253 0.100116 -0.074130 0.289407 0.214882 -0.086694 -0.615943 -0.270122 -0.516976 -0.607215 0.307046 -0.038346 0.133160 -0.612069 -0.059489 -0.059163 -0.187142 -1.188729 0.578331 0.736166 -0.549803 0.493075 0.092300 0.067809 -0.122568 -0.015333 0.217140 0.097179 0.088475 -0.104415 -0.117608 -0.283890 -0.276103 0.165359 -0.146165 -0.006310 -0.710570 0.302676 0.117821 -0.518787 0.133751 0.321126 -0.100870 -0.227883 0.090022 0.037649 0.453723 -0.364486 -0.505560 -0.040932 -0.139050 0.110955 -0.075857 -0.116573 -0.232702 -0.377777 -0.399213 -0.671784 0.066084 -0.184221 -0.295294 -0.140049 0.357698 -0.202633 -0.001579 0.080538 0.305201 -0.284032 0.744802 0.058311 0.411760 0.407103 0.041176 -0.563029 0.162361 0.531204 0.725793 -0.082250 0.057352 -0.442866 0.029049 -0.448225 -0.114174 0.326296 0.442945 0.598866 -0.465564 -0.380908 -0.083698 -0.017561 -0.653438 0.334099 -0.387142 0.312734 0.196069 0.393922 0.230770 0.537923 0.782702 -0.570885 0.195434 -0.176487 -0.114648 0.535684 0.503603 0.492239 -0.276797 -0.144710 0.060973 0.209918 0.071189 0.021439 0.065495 0.171835 -0.660242 0.033607 0.110366 0.191507 -0.344395 0.285596 0.321000 0.505449 -0.288524 0.033782 0.508155 -0.092103 -0.074853 0.272090 -0.587296 0.428276 0.063630 -0.154810 0.178081 0.044869 -0.292619 0.218206 -0.283673 0.052546 -0.252111 -0.036493 -0.271841 -0.190736 -0.346322 0.227315 -0.236920 -0.411990 -0.028972 0.130667 0.604030 0.002901 -0.094027 0.320813 -0.280970 0.082279 -0.586428 1.265097 -0.446333 0.065171 -0.385477 -0.198293 -0.053326 0.232743 -0.331902 -0.131964 0.172350 0.073520 0.203112 0.738546 0.405880 -0.060608 0.013893 0.632468 -0.054025 0.538665 -0.006210 0.471740 -0.214791 -0.026597 0.161436 -0.085255 -0.099708 -0.136080 0.062244 0.861445 0.277224 0.199939 0.532612 0.121438 0.677764 -0.299367 0.432762 -0.067582 0.604577 -0.154474 -0.130708 0.203221 0.236369 -0.192711 0.378280 -0.674234 -0.816465 -0.028601 -0.348140 -0.039857 0.057204 0.203617 -0.155692 0.083636 -0.597617 -0.305669 -0.034912 -0.205730 0.071756 0.195903 0.020184 0.376252 0.492693 -0.282395 -0.240902 0.020890 0.257504 0.150297 -0.090594 -0.401856 0.430015 -0.608319 -0.032664 0.615472 -0.321888 -0.052596 -0.221426 0.822667 -0.433589 0.723211 0.115110 -0.171768 0.730507 0.613467 0.624369 0.160833 -0.244894 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.095240 -0.760941 2.924887 2.064779 -0.352330 0.195626 0.451742 -1.364014 1.257536 0.519110 -0.481873 0.765641 -1.233118 0.490345 -0.345913 1.366667 -2.182470 -1.125432 -0.430078 -1.239610 -0.619214 -0.683001 0.880774 0.214902 1.485460 0.737041 -1.105796 -0.326014 -1.157651 -2.165394 0.495409 -0.594002 1.025908 0.183104 0.208754 -3.075246 1.843350 1.250279 -0.700884 -1.418680 1.143606 -0.848434 -0.025773 -0.559751 -0.333045 0.650908 0.330181 0.612533 1.361085 0.837084 0.409071 0.305444 0.705311 2.139772 -0.954941 0.898507 0.676929 -0.620838 -0.578552 0.049128 0.261380 -0.150997 0.714316 0.515549 -0.263644 -1.750478 -0.160467 -0.769341 -1.295463 1.222961 -0.075096 -0.601956 -1.191877 -0.574873 -1.105377 -0.354419 -0.511550 1.375838 2.018991 -1.135933 1.175335 0.060552 0.151305 -0.108989 0.362421 0.194716 1.163870 0.424778 -0.227201 -0.527914 -0.563127 -0.717724 0.379119 0.532543 -0.491035 -1.456010 0.948446 -1.766308 -1.692463 0.383063 0.960575 -0.764106 -1.204720 -0.072351 0.585286 0.811942 -0.410875 -1.247720 -0.093271 0.247001 -0.087116 -0.357628 -0.301689 -0.583762 -0.667657 -0.025435 -2.043629 0.541540 -0.062850 -0.400659 -0.576230 1.178645 -0.238247 -0.019037 0.040550 1.043603 -0.671311 1.533891 -0.231946 1.175089 0.236922 0.492445 -0.831907 0.134743 0.961752 0.447462 -0.809110 -0.306209 -0.977465 0.317673 -1.282543 0.101117 -0.534823 1.455075 1.648801 -1.002360 -1.354422 -0.475218 -0.806743 -2.024856 0.391789 -0.977830 -0.650996 0.500749 1.153128 0.559780 1.198837 1.828244 -1.169873 0.478934 -0.016870 -0.410174 1.461546 -0.045181 1.180837 -0.967913 -0.751256 0.766009 0.393698 0.599413 -0.068078 0.172537 0.420157 -1.584011 -0.514342 0.948593 0.578529 0.064600 1.004790 1.220638 2.149445 -0.917663 0.140083 1.204522 -0.499697 -0.242724 0.439444 -1.506845 0.646453 0.425445 0.422050 1.681247 0.105712 -0.805434 0.526595 -0.192344 0.389236 -1.091594 0.321463 -0.830026 0.243853 -0.712620 -0.275926 -0.723082 -0.642703 -0.711642 -0.700076 1.895444 -1.133742 -1.547981 1.738612 -0.775917 1.017342 -2.335926 1.861219 -1.121783 1.033473 -0.588344 -0.113717 0.008714 -0.297639 -1.376384 0.546558 0.515894 -0.156789 0.658421 1.814156 0.938394 0.184450 -0.376826 1.459705 -0.394933 1.678704 -0.444035 1.448014 -0.470439 -0.369643 -0.084872 -0.264773 -0.638185 -0.410040 0.300656 1.102916 0.664475 0.613799 1.107198 0.846433 1.802543 -0.914811 1.326195 -0.284501 0.991872 -0.652360 -0.796369 0.714309 0.890886 -0.347291 0.926577 -2.087526 -2.111876 -1.514742 -2.012493 -0.103265 -0.143229 0.730509 -0.430298 -0.244805 -1.462360 -1.100585 1.459439 -0.103677 1.644510 0.936898 0.206992 1.072574 1.425208 -0.688398 -0.266059 -0.352248 0.503654 0.281018 -0.497364 -1.384464 1.491520 -1.182558 0.228044 1.989811 -1.080658 0.547657 -0.449114 1.177362 -1.407249 1.932381 0.402747 -0.870818 1.481693 1.088608 1.415111 0.065491 -0.961387 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.084210 -0.318359 1.068331 0.800279 -0.092569 0.034912 0.409701 -0.435352 0.594201 0.293392 -0.100901 0.109594 -0.608657 0.213061 -0.009351 0.641675 -0.742483 -0.437783 -0.083075 -0.499834 -0.159347 -0.277727 0.514905 -0.155862 0.603767 0.122722 -0.297150 -0.464466 -0.423287 -0.485229 0.444855 -0.319388 0.444089 0.191405 -0.133432 -1.350537 0.621931 0.352219 -0.374123 -0.509576 0.484466 -0.368160 0.196979 -0.262645 -0.008800 0.170158 0.142302 0.280347 0.592050 0.380313 0.284470 0.031405 0.301332 1.022529 -0.605512 0.303016 0.141988 -0.211243 -0.296574 0.088028 0.111331 -0.007411 0.335674 0.220191 -0.075621 -0.698735 -0.246733 -0.466957 -0.670657 0.375389 -0.091039 -0.002717 -0.575182 -0.099280 -0.194803 -0.232833 -0.940544 0.556368 0.806926 -0.572864 0.515393 0.059486 0.036810 -0.076242 0.050282 0.194282 0.215379 0.117974 -0.092449 -0.138534 -0.185837 -0.185738 0.182879 0.025344 -0.093736 -0.758427 0.393205 -0.038252 -0.608640 0.182915 0.375427 -0.138146 -0.408265 -0.016855 0.069198 0.447098 -0.399739 -0.573937 -0.117126 -0.041145 0.150147 -0.130014 -0.119036 -0.328934 -0.353032 -0.347932 -0.748388 0.096688 -0.159134 -0.287944 -0.270906 0.436998 -0.214460 -0.037747 0.057773 0.391440 -0.345826 0.750766 -0.034421 0.502598 0.282040 0.117228 -0.643700 0.043509 0.519806 0.654393 -0.136190 0.006697 -0.510580 0.046453 -0.500714 -0.026270 0.218814 0.488373 0.721536 -0.427411 -0.424953 -0.091387 -0.039598 -0.803789 0.286252 -0.436446 0.174602 0.230497 0.451823 0.251621 0.578995 0.878259 -0.553432 0.245193 -0.153316 -0.192656 0.623076 0.317308 0.517602 -0.318865 -0.257302 0.119569 0.227890 0.143677 0.031884 0.082933 0.146802 -0.682721 -0.024010 0.144073 0.223079 -0.301572 0.332720 0.391735 0.746803 -0.405652 0.081270 0.531383 -0.157524 -0.027477 0.202489 -0.646363 0.340021 0.134632 -0.167346 0.349239 0.037035 -0.357612 0.226334 -0.280760 0.114279 -0.330239 0.048797 -0.327266 -0.134965 -0.374933 0.077978 -0.264633 -0.382446 -0.103629 -0.000208 0.694703 -0.192459 -0.250119 0.478944 -0.236032 0.116549 -0.758683 1.261860 -0.475252 0.207795 -0.419272 -0.153847 -0.062568 0.275753 -0.425280 -0.009001 0.207410 -0.022050 0.241737 0.880384 0.415856 -0.006382 -0.065674 0.691704 -0.087540 0.606560 -0.088173 0.614983 -0.214375 -0.118590 0.127112 -0.120026 -0.138809 -0.199049 0.111659 0.769921 0.319546 0.185062 0.484301 0.237429 0.760925 -0.334003 0.533304 -0.066957 0.577122 -0.176824 -0.149515 0.256265 0.311604 -0.190584 0.396118 -0.757115 -0.856098 -0.211276 -0.499588 0.023257 0.106603 0.192656 -0.186155 0.034395 -0.660698 -0.381038 0.167944 -0.233716 0.264159 0.262902 0.093912 0.421271 0.584514 -0.310738 -0.193378 -0.053223 0.212691 0.157346 -0.158200 -0.433968 0.522961 -0.597544 -0.006662 0.658866 -0.322091 0.040887 -0.118939 0.706056 -0.469553 0.818330 0.132471 -0.158623 0.804864 0.623299 0.714600 0.115542 -0.286104 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::push_back(int const&) = 1.593463 -1.166333 8.946647 6.090056 -2.288172 0.480470 0.218929 -5.200769 3.808786 0.552082 -1.360632 1.621589 -2.347515 1.785137 -2.374203 4.329366 -7.198459 -1.993012 -2.138291 -4.974245 -2.313273 -0.977687 2.197086 -0.175750 4.352460 2.593934 -2.786249 -0.438557 -1.577702 -5.852482 1.733001 -1.333336 1.825488 -0.457182 1.056162 -8.636688 5.994516 3.347376 -2.592343 -3.502420 3.138258 -2.202842 -0.816478 -1.757429 -1.248207 1.100804 -0.341950 3.310872 3.861444 2.431192 0.775373 2.470590 2.774771 8.088335 -2.794443 2.601915 1.768350 -1.195049 -1.520422 1.262156 0.664894 0.704287 0.842898 0.343028 0.831651 -5.943292 -1.010756 -2.098337 -1.954910 3.561836 -0.429446 -2.952038 -3.358273 -2.114876 -3.793377 -1.008813 -6.668971 4.838956 4.875857 -4.417865 1.871888 0.018820 -0.401268 0.493742 1.081727 0.495148 3.973455 1.474964 0.447646 -0.785831 -0.343859 -1.853416 2.598834 -1.725572 -2.538402 -8.504877 3.098456 -6.679274 -4.661239 1.391340 4.019662 -2.944132 -1.060593 -1.509153 1.108394 0.977286 -1.756993 -2.722388 0.883214 1.108914 0.603428 -0.822961 -0.420650 -1.436518 -0.277914 0.799034 -6.082285 2.894370 -0.304665 0.531208 -0.981497 3.438950 1.156881 -1.691278 -0.279184 2.927979 -2.421699 4.763696 -1.951497 3.919907 -1.237998 4.143481 -1.158231 2.913908 3.251807 -1.515583 -1.722372 -0.034859 -2.881736 1.430170 -4.268799 1.116858 -2.435219 3.617732 3.047264 -2.270710 -3.668084 -1.145722 -3.331212 -5.458789 0.972683 -2.223423 -4.251154 1.160877 3.195630 3.236203 3.802675 2.138866 -3.008873 -0.048528 -0.477222 -0.221128 4.512918 -0.662851 3.185596 -2.539516 -1.822817 1.873150 0.183421 1.971576 -0.250374 0.957592 1.266634 -4.232468 0.288521 2.480283 2.362800 -0.684439 3.244188 4.325834 5.123552 -2.174193 0.391694 3.615740 -2.717778 -0.487702 1.107905 -3.792534 1.119362 1.870916 2.162810 4.863802 0.214207 -0.504185 0.940656 -0.696033 1.153630 -2.212539 -0.377839 -2.066297 -0.891948 -1.520342 1.149230 -2.183803 -1.091180 -2.382988 -3.686429 5.059603 -6.393221 -2.460428 6.357650 -2.706076 2.097673 -4.451757 5.736010 -3.041827 2.607503 -0.585878 -0.060605 0.095510 -1.275160 -5.450257 2.241607 1.306902 -0.694965 1.072348 4.987766 2.733828 0.657312 -1.719648 4.643005 -3.161462 5.576174 -2.032311 4.997238 -1.736454 -1.479398 -0.582018 -0.487461 -3.179676 -2.493532 2.344905 3.668636 0.093039 3.076405 2.129731 2.029825 5.558533 -2.675757 4.637244 -1.323560 0.547901 -2.243762 -2.326344 3.250180 1.906186 -0.828987 2.035911 -6.150291 -5.113319 -7.603831 -3.034502 0.621765 -1.746883 1.738177 -2.057982 -1.489706 -3.639362 -4.159517 5.447941 -0.848046 0.315766 3.270357 0.758701 2.777601 4.447259 -1.292762 0.760196 -1.284584 1.315412 1.950744 -1.643839 -4.240785 5.560253 -2.686957 -0.191529 6.411920 -2.672693 2.318336 -0.182711 2.625331 -3.586745 4.195495 0.398582 -2.351956 3.448009 5.341713 3.253245 1.041452 -2.622585 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.454650 -1.415683 10.976578 7.255382 -3.804405 0.502429 -0.134304 -6.096897 4.514725 -0.756527 -2.126724 1.616095 -2.715706 2.150751 -3.379919 4.586684 -9.730788 -2.266901 -2.670288 -5.951044 -2.654838 -1.081067 2.249859 0.236066 5.019292 4.105398 -2.994607 -0.145625 -1.410499 -5.544933 2.683105 -1.665808 1.969327 0.319550 1.764972 -10.836451 7.062670 3.725023 -3.131663 -4.372030 3.567404 -3.013502 -1.119229 -3.084151 -2.172824 0.984731 -0.479461 5.362917 4.278175 2.278790 -0.438924 2.918503 3.109540 10.547407 -3.114105 2.910838 2.360055 -1.338953 -1.541212 1.363771 0.843809 0.950307 0.642134 0.313755 1.130949 -7.186633 -1.302000 -3.136528 -1.757502 4.399982 -0.343523 -3.023099 -4.151539 -2.594822 -5.473251 -1.058392 -9.272228 6.882896 5.891541 -6.045330 1.969058 0.106010 -0.267667 0.971719 1.292389 0.866243 5.196173 1.878881 0.842668 -0.639781 -1.080469 -2.405251 3.415476 -3.988703 -3.184524 -11.911763 3.691466 -9.510895 -5.388325 1.558363 4.887567 -3.856877 0.255160 -2.085120 1.276940 1.001942 -2.240618 -2.888739 1.490080 1.450741 0.812503 -0.662011 0.059471 -0.542774 0.293062 0.356621 -7.459761 3.878942 -0.319011 1.035126 0.110516 4.322404 1.560148 -2.280046 -0.321569 3.133897 -2.942893 6.390570 -2.349293 4.195099 -1.934927 5.250187 -0.123590 4.267122 3.930486 -1.573625 -1.994102 -0.005271 -2.916643 1.949661 -5.144676 0.515531 -2.961662 3.751728 2.258839 -2.956727 -4.310566 -1.869561 -4.771743 -6.606567 0.709044 -2.577229 -5.764386 2.412922 3.897589 5.200979 4.610201 1.907626 -3.710278 -0.278202 -0.764968 -0.022601 5.140072 -0.420958 3.615145 -2.912101 -2.018237 2.166956 -0.615294 2.919707 -0.318926 0.918422 1.416262 -5.102035 0.574570 3.252268 3.549825 -0.663687 4.304610 5.583613 4.061064 -2.818215 0.540315 4.372359 -3.580682 -0.774712 1.548701 -4.427533 1.596667 2.331238 2.659634 5.359664 0.116670 0.037194 0.992298 -0.838801 1.322299 -2.515193 -1.312741 -2.311772 -1.577516 -2.207469 2.501725 -2.823775 -1.277395 -3.255649 -5.235043 6.070013 -9.243079 -2.429947 7.846749 -3.052032 3.185360 -4.757670 6.318627 -3.651929 3.976637 0.106372 -0.053933 0.223424 -2.543436 -6.797930 2.544456 1.575578 -0.883807 0.722679 5.344161 3.495144 0.765880 -1.826024 5.834008 -4.185477 6.854226 -2.718956 5.573084 -2.148272 -2.052982 -0.470756 -0.566989 -3.962162 -2.864223 3.707194 5.214511 -0.186018 4.966719 3.142705 2.507839 6.464460 -3.113860 4.872305 -2.046053 0.273299 -2.907062 -2.798664 3.737025 2.544369 -1.054147 2.086506 -7.591416 -6.886629 -11.035045 -2.774761 0.726734 -3.519629 1.897612 -2.469416 -1.708517 -4.401678 -5.165743 6.194460 -1.260434 -0.425833 4.075363 0.688412 3.473183 5.442921 -1.783181 0.887254 -0.393070 2.205146 2.470287 -1.328393 -6.104753 6.999043 -3.467096 -0.335680 8.607335 -3.500144 2.988309 0.005216 3.664833 -4.310487 5.109443 0.695070 -3.822570 3.524320 7.084516 3.080384 2.473430 -3.327407 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::size() const = 0.529537 -0.209094 1.822897 1.211108 -0.646151 0.072147 -0.161702 -0.998133 0.734940 -0.067615 -0.431919 0.276326 -0.355492 0.352911 -0.603589 0.833457 -1.538249 -0.275203 -0.437378 -0.967629 -0.492000 -0.104607 0.273583 -0.048828 0.836137 0.859317 -0.425506 0.121098 -0.101518 -1.061425 0.243104 -0.229972 0.173298 0.092486 0.435287 -1.274429 1.160046 0.641950 -0.511691 -0.716766 0.506598 -0.392648 -0.166062 -0.431208 -0.143459 0.267408 -0.050281 0.935811 0.653055 0.497173 -0.023421 0.419421 0.655512 1.531542 -0.348153 0.495476 0.463582 -0.156952 -0.142828 0.229046 0.157114 0.124184 -0.067458 -0.055624 0.283384 -1.164925 -0.354162 -0.464640 -0.040132 0.665927 -0.166959 -0.630720 -0.756648 -0.649770 -0.803376 -0.160377 -2.438466 1.090704 0.900966 -1.078516 0.237614 0.118913 -0.009151 0.227806 0.228157 0.110872 0.779000 0.359099 0.142295 0.122020 0.158236 -0.457427 0.650011 -0.827789 -0.643900 -2.016666 0.649211 -1.666810 -0.876218 0.351494 0.838186 -0.606186 0.339365 -0.242117 0.088199 0.090434 -0.396198 -0.375425 0.469572 0.171716 0.279217 -0.063339 -0.002909 -0.016655 0.112973 0.312029 -1.254428 0.722625 -0.014612 0.228627 0.161386 0.685494 0.544360 -0.382898 -0.110532 0.411677 -0.436043 1.203171 -0.300620 0.746236 -0.629340 1.099138 -0.107606 1.077274 0.709741 -0.737863 -0.374961 0.194662 -0.361451 0.293120 -0.810412 0.180999 -0.686302 0.578224 0.359860 -0.450580 -0.763239 -0.351013 -1.063399 -0.993448 0.175563 -0.345897 -1.038863 0.247389 0.599493 0.951946 0.719291 0.160395 -0.612606 -0.379631 -0.182077 0.064067 0.757640 0.020186 0.586801 -0.469885 -0.239995 0.421968 -0.043178 0.365255 0.098160 0.129357 0.322407 -0.788614 0.422419 0.731365 0.598639 -0.216344 0.775400 0.926626 0.473832 -0.126196 -0.039382 0.661898 -0.573146 -0.157789 0.275049 -0.664815 0.305278 0.345357 0.683703 0.767627 0.048382 0.322153 0.171587 -0.221491 0.229339 -0.348640 -0.261531 -0.346049 -0.333056 -0.273313 0.740687 -0.458281 -0.115260 -0.424984 -0.862562 0.949086 -1.535304 -0.046376 1.207601 -0.459033 0.427140 -0.350326 0.952714 -0.569178 0.686947 0.163378 0.008757 0.091322 -0.544810 -1.014818 0.318805 0.254698 -0.027227 -0.064056 0.671516 0.534657 0.002450 -0.247011 0.931551 -0.885395 1.141046 -0.374792 0.853723 -0.339486 -0.215016 -0.057439 -0.050315 -0.773448 -0.528443 0.527837 0.911233 -0.213618 0.799046 0.378516 0.197320 1.033284 -0.555100 0.812456 -0.305627 -0.011900 -0.613372 -0.513557 0.642952 0.383887 -0.133466 0.160493 -1.199504 -0.919205 -1.920908 -0.138935 0.020580 -0.609694 0.284374 -0.441915 -0.374615 -0.437914 -0.951445 1.366297 -0.214224 -0.456695 0.578171 0.085719 0.577656 0.846698 -0.128479 0.205932 -0.191891 0.274467 0.493765 -0.128065 -0.903547 1.174088 -0.512702 -0.230575 1.390841 -0.589137 0.510320 0.181272 0.515788 -0.688259 0.644713 0.040569 -0.609528 0.508119 1.386978 0.528995 0.326774 -0.541702 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::max_size() const = -0.060684 -0.242359 0.738344 0.473410 -0.178748 0.088897 0.126817 -0.321186 0.369198 -0.274256 -0.171404 0.073556 -0.459349 0.123200 -0.406863 0.083453 -0.625894 -0.380420 -0.189902 -0.345308 -0.128666 -0.227405 0.176959 0.144704 0.316640 0.303078 -0.238947 -0.035086 -0.596292 0.013104 0.351697 -0.094790 0.201794 0.176148 0.063672 -0.713797 0.341946 0.382169 -0.206700 -0.399274 0.304938 -0.458476 0.039302 -0.379317 -0.068254 0.042176 0.000734 0.287233 0.307270 -0.017211 -0.057894 0.096085 -0.107515 0.716243 -0.362575 0.256861 0.235149 0.005446 -0.100967 0.050295 0.023278 0.035807 0.118039 0.114434 -0.241600 -0.418390 -0.080330 -0.390590 -0.244398 0.348045 -0.064056 -0.017954 -0.330669 -0.177352 -0.578461 -0.123543 -0.408217 0.450285 0.527992 -0.508423 0.293008 -0.014256 0.145100 0.060108 0.182029 0.113102 0.321353 0.079209 -0.014665 -0.075723 -0.490448 0.073347 0.044521 -0.152517 -0.193512 -0.614260 0.328009 -0.760649 -0.497402 0.018822 0.194140 -0.230525 -0.028037 0.159540 0.016704 0.195511 -0.224275 -0.346867 0.068977 0.202233 0.094793 -0.001713 0.109226 -0.010719 -0.077981 -0.424329 -0.578562 0.230950 -0.022720 -0.078573 -0.009787 0.470348 -0.206172 -0.033630 0.054699 0.156716 -0.240070 0.624346 -0.096176 0.084333 -0.126197 0.080099 -0.256649 0.042721 0.241949 0.506301 -0.337329 0.066271 -0.145990 0.037160 -0.352782 -0.254709 -0.168892 0.144100 0.056562 -0.454643 -0.277190 -0.193253 -0.297079 -0.626540 -0.041567 -0.204594 -0.247011 0.218702 0.332766 0.606711 0.329979 0.695463 -0.242018 0.033708 0.022110 -0.231211 0.344356 0.088992 0.320809 -0.251966 -0.297114 0.184381 -0.146712 0.230244 0.027888 0.106105 0.005935 -0.523612 -0.021698 0.213460 0.298594 0.010915 0.466968 0.457555 -0.243660 -0.488252 0.140517 0.302320 -0.212625 -0.030297 0.095383 -0.383972 0.231915 0.187030 -0.019886 0.325502 0.011574 -0.100667 0.117421 -0.117338 0.237562 -0.362005 -0.103781 -0.225858 -0.137550 -0.417555 0.200526 -0.167970 -0.236487 -0.239024 -0.437898 0.501104 -0.467446 -0.287645 0.422769 0.149372 0.394976 -0.507123 0.202474 -0.298674 0.628024 0.052930 0.090355 0.033682 -0.092606 -0.352575 0.075007 0.127525 -0.170538 0.130975 0.400044 0.301585 0.082713 -0.020822 0.487685 -0.190761 0.402567 -0.232008 0.300013 -0.102341 -0.351550 0.243550 -0.121579 -0.155961 -0.069598 0.254705 0.662049 0.292981 0.463669 0.428226 0.268874 0.488104 -0.196685 0.090288 -0.133170 0.223405 -0.196628 -0.202545 0.122736 0.283344 -0.053669 0.058721 -0.587946 -0.866147 -0.559959 -0.534622 0.213216 -0.473272 -0.009089 -0.024896 -0.032317 -0.501191 -0.342402 0.147103 -0.203145 0.599699 0.179757 0.061677 0.337362 0.485783 -0.406493 0.010441 0.342607 0.353623 0.050380 0.006126 -0.598789 0.485440 -0.369439 0.020184 0.682153 -0.327425 0.228461 0.057206 0.410018 -0.380010 0.622980 0.146052 -0.435875 0.412282 0.428403 0.407147 0.414338 -0.266229 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.687100 -1.333181 4.115750 2.850164 -0.762845 0.797575 -0.084913 -1.509203 0.857765 0.687100 -0.817709 1.641246 -1.186674 0.436554 -0.699167 1.232205 -2.774156 -0.871077 -0.815565 -1.378721 -0.743432 -0.556011 -0.309291 1.402620 1.785095 1.171675 -1.203870 0.446523 -1.519690 -2.916148 -0.467844 -0.265004 0.843305 -0.731019 1.623815 -2.779829 2.459511 2.171303 -0.432769 -2.295226 1.025120 -0.611915 -0.298070 -0.425159 -0.596368 1.038497 0.751075 1.355669 1.073475 1.153828 -0.565106 0.413740 1.744727 2.948743 0.067788 1.475827 1.749105 -0.660641 0.397878 -0.136631 0.034904 -0.580030 -0.040139 -0.318879 0.258251 -1.964581 -0.261394 -0.250838 -0.164266 1.114030 0.178326 -1.497351 -1.560662 -1.511049 -2.412743 -0.180612 -2.408444 2.039329 2.328397 -1.780996 1.345707 0.426945 0.355442 0.876876 1.133632 0.222043 1.366177 0.816405 -0.271016 0.368401 -0.532612 -1.018671 0.739885 -0.581817 -1.579425 -3.375763 1.180968 -3.718048 -2.098631 1.282041 0.885328 -1.667356 0.126625 -0.922914 0.424753 0.660353 -0.711849 -1.187857 0.373568 0.952030 0.217355 -0.399598 0.411568 -0.173114 0.122275 0.577504 -2.393495 1.491416 0.849258 0.051435 -0.072880 1.891397 0.705318 0.504542 -0.196998 1.035224 -0.719930 1.924316 0.403619 1.396100 -1.312652 1.024098 -0.479271 1.275925 0.925541 -1.470894 -1.100222 0.115073 -0.402494 0.911177 -0.630510 1.123441 -1.269881 1.872918 0.723562 -0.809262 -1.572977 -1.388747 -2.291232 -1.549182 0.235827 -0.445087 -2.532989 0.705784 1.296627 0.885676 0.755322 0.574968 -0.995944 -0.577809 -0.179764 -0.158338 1.062441 -0.726065 0.946966 -1.225177 -0.806734 1.256529 0.557164 1.086629 0.200511 0.067597 0.949773 -1.055814 0.499406 1.262697 1.023800 -0.166914 2.188665 2.093128 2.008510 0.076360 -0.643169 0.827260 -1.354201 -0.330717 0.251311 -1.541786 0.577253 0.784319 0.975961 2.565513 -0.032453 -0.107909 1.411004 -0.201443 0.424500 -1.075714 0.455176 -1.067239 -0.265313 -0.533638 0.417351 -1.115937 -0.318010 -1.718530 -1.635981 2.498507 -2.991981 -1.095677 1.820634 -0.567283 1.131127 -1.819960 2.157216 -1.071289 1.758345 0.848883 -0.116730 0.413734 -0.718564 -1.757260 0.637299 0.703116 -0.591412 0.331819 1.130957 0.849057 -0.223651 -0.279462 1.540083 -1.400314 1.666176 -1.103637 1.267875 -0.803563 -0.137528 -0.603465 -0.128461 -0.885601 -0.504726 0.508646 0.240983 -0.358538 1.029104 0.355786 1.189602 1.373166 -0.844128 1.237613 -0.873323 0.594496 -1.651150 -1.220284 0.489885 1.267004 0.430916 0.770658 -2.982127 -1.639880 -3.653346 -1.223366 -0.383264 -0.356677 0.572772 -0.253444 -0.908294 -1.548041 -2.124440 3.189071 0.002945 -0.084189 1.658733 0.224740 1.577514 1.405287 0.221884 0.036758 -0.434533 0.490284 0.524618 -0.202437 -1.509196 1.983123 -1.553910 0.151251 2.856849 -1.289956 1.467838 -0.131472 0.522219 -2.200588 1.957835 0.582652 -1.920497 0.488620 2.736595 1.337992 -0.674137 -1.316162 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_node() = 0.030755 -0.480498 1.775501 1.157439 -0.299968 0.104022 0.442571 -0.753126 0.726936 -0.107449 -0.306937 0.362753 -0.827519 0.307591 -0.779719 0.596256 -1.313383 -0.703520 -0.337876 -0.828649 -0.307838 -0.308581 0.538169 0.106870 0.932264 0.369386 -0.555913 -0.433870 -1.006593 -0.588685 0.542606 -0.272749 0.484767 -0.088578 -0.015416 -1.825389 0.914060 0.814705 -0.525148 -0.850298 0.815229 -0.705478 -0.024539 -0.540458 -0.195397 0.086435 0.096436 0.632970 0.718730 0.359653 0.091195 0.374420 0.271978 1.836414 -0.720606 0.572589 0.505752 -0.101413 -0.305582 0.172219 0.118365 0.005621 0.248762 0.113819 -0.111243 -1.059628 -0.282376 -0.668416 -0.540054 0.630405 -0.102715 -0.215769 -0.696376 -0.256893 -0.977618 -0.242811 -1.006935 0.935533 1.119755 -1.034167 0.650679 -0.027963 0.091705 0.048712 0.172946 0.251447 0.458975 0.246294 0.078997 -0.329817 -0.651907 0.043869 0.232307 -0.221174 -0.444578 -1.663078 0.808726 -1.191785 -1.057374 0.170087 0.600705 -0.602290 -0.100596 0.039464 0.026833 0.476820 -0.543365 -0.701039 -0.003720 0.250690 0.233879 -0.128500 0.108840 -0.258776 -0.183110 -0.482369 -1.238027 0.538033 -0.069273 -0.148111 -0.245288 0.817142 -0.160056 -0.066536 0.052836 0.569462 -0.517706 1.109007 -0.175043 0.505937 -0.085716 0.451583 -0.576574 0.198659 0.688508 0.667384 -0.605128 0.131342 -0.544471 0.193465 -0.680038 -0.147070 -0.261379 0.615050 0.437485 -0.811206 -0.692165 -0.352919 -0.440902 -1.165506 0.078400 -0.469569 -0.558076 0.344496 0.687287 0.794766 0.737256 1.179817 -0.555731 0.156823 0.048143 -0.369086 0.815171 -0.032003 0.699008 -0.546920 -0.563595 0.325039 0.002604 0.477439 -0.082269 0.344043 0.177083 -1.060130 -0.016943 0.296921 0.547046 -0.244598 0.813692 0.910803 0.365444 -0.824560 0.098552 0.690564 -0.566074 -0.088077 0.227904 -0.918790 0.377098 0.368113 0.042452 0.867359 0.106059 -0.325551 0.417776 -0.292222 0.290984 -0.589687 -0.038034 -0.507592 -0.366835 -0.583350 0.237401 -0.365784 -0.396410 -0.512816 -0.776210 1.113032 -1.076072 -0.561522 0.892988 -0.040339 0.447453 -1.210101 1.210992 -0.662868 0.818301 -0.028844 0.049416 0.044717 0.054012 -0.944537 0.213671 0.281405 -0.307985 0.405964 1.128423 0.615022 0.122585 -0.199251 1.056291 -0.494455 1.007282 -0.416960 0.817570 -0.324437 -0.703740 0.189497 -0.150733 -0.436320 -0.319049 0.504707 1.148171 0.307455 0.712981 0.732886 0.561644 1.223540 -0.507450 0.623088 -0.285147 0.565059 -0.402175 -0.439074 0.408836 0.517815 -0.118213 0.435034 -1.313423 -1.534802 -1.194281 -1.042562 0.409548 -0.655671 0.198517 -0.324919 -0.164487 -1.131400 -0.828958 0.476538 -0.327570 0.621257 0.663502 0.158187 0.688581 0.894005 -0.587361 0.103562 0.224214 0.619222 0.295391 -0.282096 -0.932604 0.934243 -0.799345 0.001989 1.357960 -0.566609 0.454338 0.020548 0.717556 -0.810192 1.248261 0.206115 -0.723921 0.904349 1.037311 0.891580 0.402366 -0.544996 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.017259 -0.516354 2.444010 1.752207 -0.748119 0.128804 0.261709 -1.135006 1.047104 0.183289 -0.239618 0.362467 -0.856039 0.408333 0.154505 1.184749 -2.101426 -0.576838 -0.370101 -1.267324 -0.602177 -0.354705 0.592229 -0.000952 1.116477 0.840833 -0.679718 -0.415490 -0.232077 -1.208033 0.799511 -0.520477 0.875437 0.546708 0.228131 -3.673165 1.502544 0.701616 -0.738170 -1.083403 0.830393 -0.672739 0.235986 -0.649163 -0.642847 0.333467 0.157608 0.742874 1.087631 0.613297 0.061202 0.288068 0.797111 2.489906 -0.787803 0.612885 0.481834 -0.664643 -0.628757 0.086323 0.224918 -0.010293 0.579768 0.199406 0.008546 -1.619941 -0.312111 -0.946682 -1.077404 0.854550 0.051207 -0.500285 -1.015315 -0.590238 -0.786925 -0.561235 -1.767675 1.498803 1.525308 -1.372300 0.833113 0.048929 -0.042857 0.202498 0.382589 0.337096 1.035548 0.333731 -0.055793 0.047751 -0.038714 -0.805585 0.731105 -0.281813 -0.426458 -2.199450 0.686979 -1.007051 -1.226607 0.571392 0.975185 -0.504076 -0.879359 -0.720843 0.376725 0.661867 -0.740643 -0.941825 -0.140573 0.145079 0.075209 -0.235830 -0.318273 -0.254225 -0.404454 -0.335172 -1.694840 0.629267 -0.068169 -0.069803 -0.269917 1.050112 -0.080050 -0.290819 -0.021029 0.802228 -0.822342 1.726823 -0.330050 0.926614 0.030859 0.599483 -0.515807 0.277599 0.889627 0.621062 -0.246176 -0.564849 -0.892459 0.323847 -1.156655 0.125707 0.154149 1.185902 1.428677 -0.468525 -0.971543 -0.411111 -0.724076 -1.868713 0.372790 -0.808578 -0.293124 1.030322 0.933697 0.754465 1.095529 0.919030 -1.022712 0.396091 -0.458614 -0.234167 1.290953 0.528547 0.999516 -0.716450 -0.371336 0.383978 0.129101 0.714163 0.072247 0.035594 0.369835 -1.132838 -0.228875 0.617280 0.738097 -0.196946 0.712932 1.108879 2.098591 -0.719553 0.058348 0.966948 -0.583112 -0.142997 0.433281 -1.045468 0.399074 0.450141 -0.210974 1.135321 -0.033755 -0.504105 0.227956 -0.262721 0.205612 -0.600507 -0.017284 -0.571448 -0.074257 -0.608201 0.076804 -0.843937 -0.550589 -0.686031 -0.635421 1.563065 -1.525459 -0.701768 1.527826 -0.818204 0.720949 -1.554404 2.271573 -0.923783 0.768626 -0.800681 -0.454733 -0.081609 -0.171152 -1.192580 0.531901 0.393911 -0.108053 0.014818 1.647272 0.871216 0.121928 -0.357859 1.390196 -0.421272 1.469543 -0.397316 1.423386 -0.569344 -0.021111 -0.039219 -0.170525 -0.548039 -0.431162 0.547116 1.208367 0.316894 0.755324 0.738675 0.716075 1.355774 -0.737450 1.064349 -0.282057 0.712716 -0.531442 -0.519396 0.670038 0.946484 -0.212921 0.557700 -1.697050 -1.587901 -1.700949 -0.752306 -0.182774 0.336123 0.418233 -0.380966 -0.166498 -1.127647 -0.860389 1.145876 -0.385094 0.410993 0.703506 0.202116 0.994589 1.301438 -0.412100 -0.381008 -0.096022 0.296803 0.423576 -0.107829 -1.359455 1.459400 -1.056782 0.066097 1.694536 -0.719968 0.410126 -0.105061 1.443322 -1.010177 1.474115 0.174555 -0.706747 1.159278 1.578318 0.906709 0.266310 -0.694533 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.270414 -2.492304 5.492200 3.919477 -0.739328 1.947948 -0.280389 -1.371749 -0.351708 1.005609 -0.326199 3.064427 -1.735976 0.274850 -0.364393 0.640762 -2.845681 -0.892202 -1.393972 -1.555931 -0.210261 -0.451997 -1.300817 3.543338 2.041207 0.801199 -1.866872 0.472538 -3.408384 -3.724195 -0.930377 0.085516 2.030322 -1.817752 2.267362 -4.924084 3.036481 3.799113 -0.123159 -3.391007 1.686860 -0.546455 -0.257637 -0.040312 -2.386447 1.453072 1.054403 -0.839224 0.927469 1.189885 -1.282809 0.796531 2.863811 3.592288 0.605083 2.123586 2.465114 -1.463164 1.119433 -1.042478 -0.665172 -0.882054 0.163109 -1.244172 0.197390 -2.542012 -0.075574 0.417342 -0.620458 0.597071 0.210263 -2.064551 -1.249330 -1.755146 -4.055402 -0.370797 1.177272 2.091026 2.601555 -1.478752 2.353829 -0.097677 -0.286667 1.699053 2.215955 0.867082 0.628887 1.045250 -0.094854 0.983918 -0.476897 -0.197746 0.709198 1.096563 -2.662111 -3.360836 1.701377 -4.090260 -2.362268 2.368645 0.472565 -2.837004 -0.865463 -2.696310 -0.220939 1.547977 -1.370649 -1.703568 -0.183510 2.491931 0.893920 -0.896467 0.519391 -0.461321 0.158420 -0.255113 -2.142452 2.543340 1.776576 0.171068 -0.741694 2.968920 0.442754 1.220095 -0.272284 2.013411 -1.695356 2.010133 0.802848 1.540229 -2.392128 -0.079906 -0.338291 -0.663464 0.616492 -0.961008 -1.856464 -1.250222 -0.833497 1.247885 0.663889 2.081632 -0.404553 2.533658 1.444206 -0.306949 -1.163670 -2.029497 -2.757639 -2.249928 -0.763292 -0.118414 -3.321985 2.662568 1.507021 -0.234322 0.477371 1.090580 -0.295606 -0.546810 -0.211995 -1.534328 1.226448 -1.671017 0.672344 -1.601799 -1.504936 1.780503 0.586853 2.429697 0.328300 0.529323 1.169685 -0.192367 0.568189 1.239828 1.382219 0.107379 3.204284 3.192393 3.669743 0.844878 -1.528389 0.329306 -2.729305 -0.136733 -0.275087 -1.621475 -0.300826 1.651268 -1.183562 4.354541 -0.436757 -1.014207 2.816210 -0.258532 0.627407 -1.709536 2.113359 -1.621499 0.397086 -0.951289 -2.126184 -1.435130 -0.655559 -3.537486 -2.563011 3.624441 -4.633870 -1.990763 1.300292 0.538948 1.024685 -3.525090 2.695036 -1.241336 3.052654 1.566470 -0.374147 0.548235 -0.000484 -2.319554 0.891930 0.928660 -1.942865 0.651274 1.796833 0.985751 -1.003151 -0.745510 1.800451 -1.287774 1.667217 -2.144040 1.414352 -1.214284 0.133882 -0.802654 -0.123683 -0.935020 -0.605358 0.425790 -1.650356 -0.554416 1.051408 -0.777334 2.643606 1.134406 -0.232511 0.915563 -1.526557 1.062591 -1.942945 -1.623991 0.025514 3.153215 1.979484 1.014465 -4.205849 -1.931514 -4.651596 -2.245134 -0.002785 1.078437 0.245703 0.589006 -1.279917 -2.882923 -2.940087 4.047807 -0.094994 1.643384 2.533714 0.487861 2.242648 1.378890 0.626897 -0.201875 -0.345836 0.972182 0.709133 0.369758 -1.803479 2.371254 -2.185718 0.401491 3.535167 -1.403199 2.684379 0.092447 -0.218578 -3.426389 3.342661 0.910205 -2.861190 0.668372 3.044488 0.807429 -1.851566 -1.416275 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.120600 -0.182782 0.123618 0.108429 -0.038850 0.046941 -0.015737 0.082391 0.062242 -0.108214 -0.101779 0.045547 -0.164303 0.004410 0.009524 -0.063289 -0.117957 -0.153599 0.019008 0.078293 -0.027991 -0.119320 -0.059672 0.134182 -0.008529 0.242750 -0.047166 0.091548 -0.191973 0.109380 0.057351 -0.025585 0.078812 0.287037 0.116756 -0.110792 -0.027730 0.092824 0.017959 -0.193675 -0.032392 -0.113780 0.106158 -0.157680 0.006283 0.093504 0.112514 0.022994 -0.021948 -0.045695 -0.107068 -0.161203 -0.081574 0.017280 0.051573 0.055943 0.163582 -0.000406 0.053051 -0.133670 0.049618 -0.076244 0.046360 0.093873 -0.166044 0.021487 -0.053510 -0.163128 -0.076568 0.067670 -0.015813 0.109939 -0.125857 -0.152072 -0.127595 -0.037108 -0.179976 0.113218 0.203320 -0.165006 0.148985 0.084507 0.196525 0.052211 0.098918 0.042871 0.057673 0.043289 -0.103376 0.133484 -0.114368 -0.053784 -0.062436 0.002080 -0.030543 0.075100 0.048642 -0.196034 -0.102486 0.063562 -0.077311 0.063060 -0.005346 0.126029 0.009690 0.135041 -0.060387 -0.088667 0.003309 0.011319 0.044246 0.019765 0.038255 0.170587 -0.076573 -0.171976 -0.148087 -0.018907 0.068679 -0.128215 0.146905 0.141552 -0.112458 0.128016 -0.001487 -0.094211 -0.009145 0.304183 0.159992 -0.081805 -0.078464 -0.139883 -0.133690 -0.015104 0.018121 0.264649 -0.133604 -0.015925 0.107133 -0.031579 0.007870 -0.176352 -0.012427 -0.029598 0.070687 -0.113979 -0.113556 -0.179732 -0.182946 -0.190192 -0.030366 -0.082714 0.115821 0.197312 0.086806 0.215137 0.014810 0.346582 -0.112462 -0.003910 -0.039313 -0.094190 -0.048104 0.206059 0.046925 -0.053603 -0.069414 0.113499 -0.006789 0.045457 0.148122 -0.115746 0.012225 -0.090100 -0.025464 0.216400 0.110764 0.057456 0.149989 0.061455 -0.241889 -0.052457 -0.012646 -0.005424 0.065931 -0.036430 0.035629 -0.090675 0.160704 -0.035383 -0.040639 -0.043480 -0.019443 0.005721 0.060877 -0.057063 0.067420 -0.120215 0.004380 -0.053442 0.041834 -0.191599 0.142362 -0.066164 -0.062620 -0.013211 -0.022540 0.151475 -0.011708 -0.033165 -0.048723 0.162486 0.212669 -0.065791 -0.126454 -0.051241 0.353006 0.028105 -0.021737 0.029705 -0.146095 0.133114 -0.105776 0.068957 0.008908 -0.121514 -0.034701 0.049156 -0.062077 0.128991 0.074343 0.050754 0.002290 0.013760 -0.062804 0.019533 0.013456 0.138289 -0.055916 0.077616 0.093659 -0.038723 0.216231 0.158229 0.114685 0.170275 0.023702 -0.013201 -0.063034 -0.175755 0.012721 0.216680 -0.114761 -0.031309 -0.134461 0.182024 -0.021258 -0.099931 -0.088366 -0.256494 -0.096306 -0.116697 -0.127987 -0.061689 -0.046661 0.075139 0.024144 -0.006162 -0.039371 0.060038 -0.069061 0.339919 -0.066448 -0.014135 0.161042 0.095985 -0.125894 -0.150625 0.201321 0.068805 -0.072643 0.186954 -0.191583 0.044055 -0.136963 -0.004908 0.160403 -0.124659 0.028476 0.077509 0.224321 -0.089124 0.228332 0.115996 -0.221120 0.054276 0.077247 0.127462 0.116837 -0.098003 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.086689 -0.647507 2.610509 1.578740 -0.225793 0.001111 1.312915 -1.082872 1.328305 0.393354 -0.372993 -0.093612 -1.503861 0.259452 -0.861198 0.937035 -1.724315 -1.107209 -0.453712 -1.289787 -0.149468 -0.778609 1.438791 -0.234092 1.514665 0.010542 -0.609245 -1.193247 -1.234959 -0.991098 1.312925 -0.535678 0.926281 -0.052301 -0.564223 -2.862488 1.394007 0.995645 -0.826998 -1.007163 1.336312 -0.592013 -0.148495 -0.348486 -0.278978 0.129648 0.151506 1.049469 1.264107 0.722008 0.660603 0.021980 0.450012 2.680206 -1.464821 0.655209 0.258997 -0.250190 -0.510098 0.566569 0.126469 0.039738 0.419421 0.619069 0.178204 -1.359061 -0.008934 -1.040678 -1.522449 1.180333 -0.350791 -0.098214 -0.889728 -0.000545 -0.840653 -0.140725 -0.889062 1.267012 1.820006 -1.097327 1.180104 -0.030490 -0.148989 -0.455307 -0.580634 0.368062 0.166858 0.176264 0.165357 -0.996523 -1.037554 0.015351 0.164341 -0.034504 -0.290756 -2.005141 1.385408 -0.649137 -1.328890 -0.017550 0.945323 -0.863969 -0.445339 0.294100 -0.100414 0.791616 -0.633957 -1.139923 -0.417509 0.208429 0.147735 0.067479 0.013053 -0.437711 -0.647801 -0.803310 -1.571552 0.372769 -0.650770 -0.577521 -0.654295 0.890407 -0.622544 -0.013246 0.459649 1.183387 -0.655600 1.232802 -0.076379 1.037082 0.747277 0.526115 -0.929387 -0.344570 1.193870 1.690944 -0.242083 0.080028 -1.041391 0.234352 -1.094254 -0.164546 0.084454 0.619131 1.040081 -1.474504 -0.855250 -0.062734 -0.024650 -1.773352 0.214483 -0.966431 -0.277397 0.472826 0.929542 0.882936 1.093885 2.329733 -1.339441 0.620566 0.005216 -0.849311 0.880748 0.073054 1.030873 -0.628320 -0.831921 -0.079191 0.203713 0.649731 -0.387372 0.323227 0.028206 -1.811907 -0.174082 0.108591 0.434320 -0.734435 0.491422 1.271746 0.981938 -1.474437 0.257426 1.400861 -0.610681 -0.285917 0.637016 -1.727356 0.672079 0.334287 -0.248262 0.925902 0.199351 -0.594231 0.774018 -0.917396 0.107667 -0.915752 -0.037993 -0.740039 -0.358081 -1.013495 0.018815 -0.530588 -0.738860 -0.320790 -0.410572 1.382849 -0.751903 -0.942752 1.351687 -0.045474 0.136879 -1.884571 2.558229 -0.848033 0.588499 -0.405875 -0.051473 -0.185807 0.583253 -1.118063 -0.109261 0.110100 -0.205476 1.199856 2.298894 0.923745 0.059730 -0.309546 1.801217 -0.526532 1.443661 -0.599567 1.034372 -0.453735 -1.256609 0.190268 -0.257110 -0.528353 -0.635214 0.573640 1.792964 0.836681 0.535215 1.438525 0.605920 1.944063 -0.430369 1.198213 -0.069651 1.233864 -0.270384 -0.395205 0.840708 0.674742 -0.751822 1.144493 -1.850905 -2.427452 -0.789906 -1.922144 0.380666 -1.030005 0.606236 -0.581594 0.000596 -1.791398 -1.097024 0.055981 -0.353525 0.929429 0.902369 0.156287 0.806734 1.420378 -1.026691 0.222442 0.338099 1.156175 0.289927 -0.822662 -1.002338 1.140718 -1.283239 -0.024373 1.783904 -0.778236 0.407338 -0.484731 1.120232 -1.470391 1.927999 0.362799 -0.471461 1.804272 0.874430 1.524386 0.768842 -0.590012 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.338556 -4.536883 26.586276 17.159617 -8.708451 2.716481 -3.130747 -13.087518 7.451423 1.442992 -5.596294 8.204085 -4.155023 3.620909 -5.691419 10.084986 -21.324185 -3.690660 -5.697174 -12.591882 -7.644485 -1.627259 -0.048165 4.567974 11.403725 11.271962 -7.853982 2.987992 -2.536955 -18.917483 -0.814387 -2.051325 4.024866 -2.334977 9.148279 -22.563598 16.305350 10.839745 -5.037503 -11.792979 6.809340 -3.752655 -2.786025 -3.034249 -5.549208 4.571935 1.134306 10.599316 7.784025 6.416506 -1.846675 5.860105 10.668266 22.334939 -0.818689 7.981788 8.364028 -4.412505 -1.257057 1.071400 1.968979 -1.093132 0.130830 -1.879701 3.423886 -15.409959 -1.983598 -3.220137 -0.517943 8.642903 1.108106 -11.983405 -8.716854 -10.299210 -12.768467 -2.504670 -19.638145 14.474243 12.724299 -12.335527 5.031222 1.888280 0.483494 4.343463 5.538077 0.297868 12.980576 5.024325 0.886034 1.245980 1.327225 -7.265708 7.967244 -6.148201 -9.866757 -25.513586 7.926075 -25.300350 -13.352062 6.595397 10.523411 -10.314328 0.614734 -6.382496 4.074621 1.507042 -3.948307 -5.676998 3.296124 4.782708 0.111047 -2.040295 -0.395992 -1.061068 1.972213 6.954831 -16.541780 11.073491 3.135520 3.856871 0.203468 10.682112 7.332650 -2.074203 -1.608153 7.187677 -5.237028 13.170815 -2.035682 9.594563 -9.908440 12.522647 1.083003 11.647858 6.747689 -13.257270 -6.084744 -2.036161 -4.198072 5.704915 -8.466486 5.959194 -10.630873 12.107356 6.860416 -3.907856 -11.060390 -7.149859 -15.624023 -13.040358 1.374624 -3.749479 -17.287041 4.263286 7.931854 9.111141 7.112621 -0.881298 -6.904892 -2.775274 -1.330092 0.854205 9.387742 -3.471361 7.239948 -7.774388 -3.673300 6.688530 1.183567 7.562555 0.029140 1.132386 5.002520 -7.888533 2.211541 9.843432 8.217024 1.023622 11.372452 13.747039 16.988751 -1.614533 -2.588237 6.907898 -8.910855 -2.838812 2.714453 -8.935917 2.037935 5.589963 8.735540 16.513821 0.071677 1.999379 4.303598 -0.362677 2.787410 -5.949406 0.479159 -5.601506 -1.545048 -1.889166 4.076054 -8.440880 -0.145278 -10.309747 -13.694710 15.256686 -24.263056 -6.762413 17.411971 -7.811660 8.191970 -9.940824 12.802306 -7.019212 9.917750 1.828377 -0.885203 1.182351 -8.481576 -14.269020 7.931082 3.545491 -1.957987 -0.262540 9.302623 6.320953 0.862588 -4.238934 10.969648 -10.713558 14.710464 -6.564916 11.915952 -5.023815 -1.438573 -4.185858 -0.101166 -9.613189 -4.914314 6.147875 4.724700 -3.292646 8.889076 2.408122 6.064299 11.401232 -7.432165 10.926034 -5.016424 0.063014 -8.974905 -8.638329 7.176456 7.371374 0.124432 3.042391 -18.369738 -10.508002 -28.109574 -5.949597 -1.668561 -4.243458 4.626258 -4.244512 -6.536213 -7.356530 -13.023370 22.872831 -0.219939 -1.436206 9.865763 1.450551 9.594424 10.884810 0.244626 2.138487 -4.304434 1.758751 5.433775 -2.505717 -12.297465 15.515759 -7.019535 0.329170 19.291196 -8.273183 9.014805 0.720715 4.336142 -11.785070 9.972223 1.568223 -10.936488 3.512009 17.016970 6.569489 -1.424153 -8.623706 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy(int**, int**, int**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy_backward(int**, int**, int**) = -0.086506 -0.327454 1.584098 1.046442 -0.368294 0.025745 0.434422 -0.744334 0.694890 -0.475358 -0.159143 0.133070 -0.904712 0.320829 -0.557983 0.427321 -1.356385 -0.694070 -0.404228 -0.833528 -0.165076 -0.306586 0.757572 0.081427 0.836588 0.429579 -0.552399 -0.482351 -0.985455 -0.062162 0.927206 -0.301051 0.636825 0.372671 -0.207842 -1.997501 0.816830 0.634230 -0.551031 -0.630366 0.883907 -0.819724 0.063627 -0.787447 -0.353734 0.005755 -0.092699 0.395658 0.811227 0.106461 -0.010994 0.366084 -0.047464 1.495484 -0.986225 0.377796 0.243122 -0.187815 -0.457483 0.065794 0.033333 0.179909 0.391943 0.198137 -0.338022 -1.126377 -0.172754 -0.859039 -0.818696 0.653049 -0.080386 0.084775 -0.612263 -0.069253 -0.904450 -0.258804 -0.072652 0.914913 0.978386 -0.869752 0.538497 -0.241557 -0.090477 -0.060675 0.090428 0.350863 0.381819 0.129866 0.175328 -0.397959 -0.903057 0.108234 0.202745 -0.064749 -0.233313 -1.272675 0.659017 -0.913257 -0.891825 -0.068936 0.619251 -0.529503 -0.402462 0.071412 -0.014049 0.523725 -0.446905 -0.671448 0.049984 0.242128 0.223226 -0.074666 -0.043034 -0.218855 -0.348507 -0.919921 -1.138315 0.495266 -0.285896 -0.106959 -0.206036 0.745763 -0.547033 -0.266462 0.123850 0.600626 -0.677684 1.089388 -0.393977 0.342016 0.207514 0.143643 -0.229581 -0.293327 0.621703 1.408751 -0.549203 -0.184983 -0.746736 0.055057 -0.822928 -0.490352 0.122135 0.418982 0.438165 -0.866376 -0.512362 -0.122591 -0.301792 -1.401449 -0.016578 -0.495666 -0.189812 0.621359 0.636368 0.766499 0.866823 1.439705 -0.485552 0.310651 0.050472 -0.544666 0.977958 0.210164 0.718496 -0.475028 -0.537084 0.248610 -0.341611 0.516788 -0.135044 0.427146 0.048017 -1.133251 -0.217992 0.171861 0.483116 -0.088721 0.611795 0.847142 0.086501 -0.896566 0.284950 0.807396 -0.478336 -0.065368 0.301560 -0.777404 0.320074 0.379309 -0.357112 0.736645 0.057030 -0.528174 0.231793 -0.227172 0.344025 -0.631619 -0.099659 -0.406895 -0.135538 -0.794194 -0.036866 -0.286885 -0.559915 -0.466597 -0.698940 1.011111 -0.776191 -0.707765 0.873690 0.099318 0.606206 -1.342992 0.938156 -0.665689 0.893651 -0.190603 0.042915 0.035427 -0.063748 -1.010603 0.206561 0.201411 -0.259168 0.367452 1.156358 0.709276 0.112051 -0.288325 1.041952 -0.227544 1.102332 -0.400905 0.818104 -0.302146 -0.682372 0.410974 -0.156416 -0.455386 -0.335260 0.523155 1.260525 0.522433 0.916391 0.901121 0.533739 1.285187 -0.407264 0.474823 -0.229634 0.508015 -0.140867 -0.369128 0.492976 0.665077 -0.149970 0.448791 -1.167217 -1.800804 -0.794357 -1.242065 0.536244 -0.617286 0.141349 -0.216914 -0.037668 -1.145028 -0.597755 -0.059969 -0.367282 1.315126 0.500123 0.096797 0.565290 0.941625 -0.901731 -0.005988 0.529553 0.803089 0.300863 -0.140777 -1.192653 0.996409 -0.718578 -0.040041 1.371090 -0.624422 0.355412 -0.215851 0.971399 -0.715372 1.329134 0.140295 -0.651916 1.126367 0.657178 0.665104 0.823584 -0.434093 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.419898 -0.789415 3.800926 1.847715 -0.576490 -0.132586 1.963594 -1.787232 1.767039 -0.235445 -0.327607 0.154859 -2.499750 0.670283 -1.847678 1.134604 -2.661703 -1.873183 -0.772931 -2.063454 -0.910640 -1.209273 2.165608 0.046919 2.169219 0.297657 -1.024608 -1.500605 -2.079253 -1.761460 1.638382 -0.628288 1.119386 -0.171953 -0.353444 -4.175207 1.908217 1.134044 -1.243167 -1.286354 2.218483 -1.030959 -0.155886 -0.510537 -0.206724 0.179448 0.524602 2.016217 2.054591 1.134363 0.982836 0.141823 0.154248 3.858917 -2.152618 1.084121 0.850428 -0.128943 -0.819134 0.736588 -0.262725 -0.390302 0.354029 0.777321 -0.509340 -1.667725 0.230463 -1.734852 -1.939704 1.868040 -0.214616 -0.469647 -1.555816 -0.503391 -1.716069 -0.403185 -1.155797 1.769519 2.917802 -2.085875 1.484309 -0.101896 0.173865 -0.560011 -0.377078 0.240535 0.697154 0.123507 -0.095858 -1.443934 -2.079848 0.253390 -0.410207 0.113329 -0.224027 -3.318967 1.901486 -2.036909 -2.417112 0.042659 1.015478 -1.249015 -0.914223 0.664792 0.274612 0.804511 -1.178166 -2.077377 -0.749700 0.445930 0.131694 0.482387 0.463680 -0.689272 -0.861300 -1.243680 -2.805565 0.751492 -0.636373 -1.032634 -1.179043 1.576934 -0.878559 0.587843 1.081871 1.861725 -1.000232 2.235145 0.253261 0.921530 0.768168 0.601846 -1.375843 -0.137018 1.388472 2.291427 -0.966299 0.266840 -1.442177 0.158615 -1.927193 -0.529949 -0.509317 1.226630 1.348447 -2.357636 -1.896455 0.079013 -0.292468 -2.930227 0.664298 -1.531379 -0.940257 0.136218 0.999911 1.476360 1.379592 3.379013 -1.435005 0.985828 0.236545 -1.144112 1.251456 -0.103233 1.945647 -1.230015 -1.476390 0.108500 0.005859 0.736518 -0.510325 0.280207 0.151579 -3.090489 -0.769945 -0.018996 0.852428 -0.809285 1.017176 1.887675 1.416844 -2.190100 0.173672 1.963250 -1.039171 -0.408790 0.846376 -2.336392 1.054531 0.578027 -0.115784 1.792198 0.448917 -1.047757 1.554984 -0.824693 0.679875 -1.524856 -0.282725 -1.246735 -0.749330 -1.633744 0.166794 -0.688995 -0.852566 -0.464091 -1.237105 2.164801 -1.429127 -1.733127 2.187646 -0.168887 1.237334 -3.295009 3.390684 -1.133491 1.213072 -0.404724 0.380283 -0.284725 0.515256 -1.239100 0.488252 -0.069365 -0.186661 1.678036 3.282058 1.067468 0.702912 -0.088441 2.721493 -0.764212 2.045907 -0.702995 1.771840 -0.886121 -2.182101 0.657996 -0.170368 -0.950783 -0.726610 1.028787 2.623091 1.287559 0.685438 2.294408 1.305235 2.890388 -0.746542 1.470481 -0.384992 1.701873 -0.937205 -0.907811 1.172185 0.976855 -0.974371 1.443486 -2.831154 -3.990305 -1.632930 -3.611752 0.583548 -1.702736 0.842674 -0.855865 -0.207065 -2.481099 -1.348464 0.654998 -0.360482 1.944519 1.667773 0.429501 1.692695 2.764167 -1.608355 0.186701 0.848934 1.650815 0.166425 -0.900258 -1.812526 1.234035 -1.866134 0.195734 2.571412 -1.045094 0.733524 -0.988668 1.825901 -2.295004 2.917102 0.500927 -0.929243 2.811276 1.575232 2.276495 1.486992 -0.807383 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__miter_base(int**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.090136 -0.251670 0.665673 0.509658 0.030368 0.003709 0.406774 -0.220953 0.393630 0.224799 -0.085117 0.051449 -0.526169 0.141520 -0.091674 0.418338 -0.389413 -0.362875 -0.024780 -0.260554 -0.019499 -0.227089 0.454230 -0.126570 0.449235 0.018739 -0.174298 -0.425321 -0.459830 -0.245494 0.303470 -0.225265 0.310698 0.148860 -0.197899 -0.634567 0.340936 0.279286 -0.250621 -0.337564 0.396248 -0.287569 0.157239 -0.177316 0.109437 0.119384 0.123878 0.157670 0.411341 0.270522 0.267063 -0.039133 0.171094 0.542531 -0.479266 0.204592 0.074611 -0.078613 -0.182684 0.042665 0.061485 -0.014832 0.228665 0.179459 -0.107183 -0.424211 -0.220957 -0.330541 -0.491794 0.224334 -0.142919 0.123854 -0.429369 0.001636 -0.083077 -0.117905 -0.628931 0.307190 0.553311 -0.351609 0.393308 0.037424 0.013887 -0.147983 -0.043617 0.154007 -0.034152 0.055977 -0.052087 -0.169700 -0.212985 -0.014736 0.040242 0.084683 -0.032071 -0.364753 0.314037 0.103628 -0.423856 0.045942 0.198794 -0.097383 -0.190366 0.186357 -0.055215 0.368510 -0.276164 -0.421905 -0.053280 -0.064633 0.185791 -0.082095 -0.070826 -0.247038 -0.306672 -0.338632 -0.474719 0.010064 -0.169481 -0.302778 -0.189358 0.258555 -0.203777 0.043781 0.082727 0.258205 -0.199669 0.500601 0.038458 0.323210 0.286877 0.011251 -0.517531 -0.019947 0.389141 0.605772 -0.158639 0.137678 -0.352380 -0.029987 -0.284802 -0.104762 0.191893 0.266888 0.454954 -0.412470 -0.253271 -0.019003 0.042675 -0.509921 0.203803 -0.292160 0.251304 0.067860 0.292811 0.122047 0.393683 0.828355 -0.375705 0.130263 -0.028233 -0.211477 0.401908 0.255345 0.359787 -0.205479 -0.222717 0.073626 0.184323 0.031030 0.001289 0.143422 0.075074 -0.523005 0.040653 0.060764 0.099196 -0.275451 0.247786 0.222770 0.258208 -0.242693 0.074452 0.375127 -0.067884 -0.009206 0.143136 -0.496985 0.304870 0.051757 -0.136330 0.141528 0.055647 -0.252559 0.231491 -0.270406 0.090184 -0.272898 0.065583 -0.244234 -0.121551 -0.319621 0.072010 -0.074318 -0.322790 0.023237 0.109857 0.438939 0.099692 -0.104332 0.166440 -0.019879 0.001865 -0.498017 0.860477 -0.327613 0.124048 -0.237316 -0.065795 -0.015801 0.277561 -0.212674 -0.161406 0.135561 0.009106 0.256635 0.584540 0.280899 -0.068298 0.008200 0.471930 -0.014410 0.385079 -0.024315 0.342052 -0.098241 -0.153118 0.185040 -0.090391 -0.068971 -0.119351 0.007251 0.653107 0.287352 0.087608 0.406324 0.096045 0.579572 -0.201829 0.337433 -0.024723 0.499995 -0.085994 -0.081923 0.135821 0.181627 -0.144023 0.312688 -0.487224 -0.669958 0.110557 -0.427497 0.088505 -0.041319 0.144091 -0.118808 0.065925 -0.488332 -0.265606 -0.066094 -0.179108 0.277336 0.137182 0.049564 0.258432 0.356617 -0.267894 -0.103436 0.011339 0.244812 0.099444 -0.125328 -0.209650 0.255859 -0.439878 -0.039791 0.401399 -0.230304 -0.014202 -0.123677 0.477346 -0.328178 0.600661 0.101073 -0.072982 0.662805 0.346434 0.539656 0.107546 -0.171658 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_base(int**) = -0.164499 -0.169753 0.438465 0.323067 0.025280 0.023130 0.179353 -0.154827 0.285403 0.154432 -0.057809 0.029935 -0.331557 0.081545 -0.057108 0.259326 -0.235648 -0.249404 -0.034890 -0.195949 -0.046217 -0.162897 0.244385 -0.080401 0.249724 0.018927 -0.140045 -0.162698 -0.313611 -0.245908 0.156053 -0.152058 0.193991 0.053945 -0.094224 -0.415368 0.246866 0.211263 -0.163776 -0.225082 0.224157 -0.197896 0.137337 -0.093277 0.041287 0.106663 0.075882 -0.042138 0.269781 0.153674 0.229288 -0.035031 0.077280 0.327081 -0.304279 0.145360 0.044727 -0.070644 -0.135812 0.016606 0.037993 -0.011042 0.159891 0.123203 -0.109578 -0.278729 -0.122903 -0.189036 -0.326691 0.156084 -0.152274 0.021822 -0.245403 -0.064991 -0.103353 -0.120465 -0.341907 0.144357 0.373335 -0.212361 0.257424 0.033782 0.034975 -0.038547 0.025018 0.093663 0.048896 0.037884 -0.066071 -0.044311 -0.008333 0.028888 0.023294 0.180651 -0.032114 -0.112253 0.216519 -0.020962 -0.281744 0.062874 0.122089 -0.021283 -0.221362 0.105523 -0.026634 0.229044 -0.183062 -0.288708 -0.030797 -0.016875 0.138072 -0.044053 -0.052490 -0.190017 -0.197930 -0.181026 -0.318869 0.001742 -0.098244 -0.196089 -0.150794 0.207292 -0.135752 0.013555 0.047920 0.181067 -0.148183 0.367550 0.005207 0.228767 0.038921 0.007472 -0.421510 -0.082043 0.214663 0.318543 -0.127588 0.055000 -0.215944 -0.051915 -0.211738 -0.062701 0.050159 0.168670 0.374977 -0.237267 -0.164351 -0.017440 -0.049337 -0.413279 0.103840 -0.199859 0.129514 0.070600 0.200004 0.123793 0.263011 0.608653 -0.222313 0.063522 -0.048341 -0.200273 0.279438 0.113401 0.247411 -0.143527 -0.145812 0.079938 0.126756 0.035727 0.067440 0.042964 0.039656 -0.336534 0.043339 0.123010 0.078383 -0.117382 0.174996 0.155286 0.220689 -0.164477 0.061451 0.236324 -0.020619 0.004743 0.073628 -0.297073 0.162555 0.059980 -0.096355 0.098295 0.033100 -0.146287 0.109557 -0.180930 0.105048 -0.221981 0.070257 -0.157578 0.005131 -0.210496 0.001518 -0.090617 -0.191700 0.012069 0.023246 0.291860 0.022459 -0.102049 0.141454 0.058952 0.063639 -0.318297 0.444024 -0.224778 0.234365 -0.180979 -0.007261 -0.019672 0.159871 -0.095605 -0.062594 0.094408 -0.000439 0.132636 0.356166 0.189903 -0.026325 -0.006009 0.317809 -0.014968 0.256249 -0.008287 0.230869 -0.045686 -0.083212 0.143051 -0.073443 -0.064241 -0.057910 0.000636 0.348518 0.224753 0.023788 0.232580 0.083037 0.357435 -0.130859 0.201644 -0.000282 0.329673 -0.072989 -0.067957 0.090308 0.190812 -0.081629 0.125351 -0.319409 -0.418422 0.012814 -0.295380 0.032768 0.038711 0.043051 -0.043343 0.048051 -0.255394 -0.162518 0.121628 -0.120490 0.338201 0.029840 0.048645 0.184096 0.258952 -0.171754 -0.117177 -0.015246 0.101050 0.050446 -0.037449 -0.168052 0.203386 -0.284413 -0.037918 0.242644 -0.178686 -0.003455 0.038004 0.234274 -0.220810 0.393094 0.075366 -0.032797 0.463365 0.213544 0.388560 0.055145 -0.118091 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -0.622467 -1.705876 3.777121 2.486801 0.064591 0.961322 0.695170 -1.112612 0.916424 0.860358 -0.815065 1.736122 -1.786196 0.237628 -0.771812 0.653714 -2.235442 -1.724952 -0.346149 -1.027496 -0.392434 -1.193756 -0.062740 1.678770 1.651829 0.437597 -1.424815 -0.073625 -3.103438 -2.810522 -0.166165 -0.470268 1.334984 -0.619793 1.005101 -3.291133 2.034901 2.305907 -0.269789 -2.428241 1.317262 -1.189370 -0.031603 -0.179539 -0.336916 1.219371 1.187866 0.401359 1.332629 0.874659 -0.020105 -0.112376 0.730395 2.364497 -0.545095 1.524915 1.413691 -0.910918 0.162830 -0.202551 -0.119884 -1.034690 0.748894 0.409782 -0.803500 -1.567183 0.263949 -0.297684 -1.203332 1.262377 0.195103 -0.874899 -1.305197 -0.786945 -2.549557 -0.357780 0.961068 1.422482 2.780427 -0.926030 2.252926 0.192578 0.916339 0.260262 1.274979 0.271211 1.349203 0.497021 -0.857141 -0.469486 -1.855459 -0.431700 -0.300132 1.408348 -0.882349 -1.139742 1.071246 -3.289929 -2.291620 0.870394 0.229192 -1.367075 -1.385804 0.028844 0.816538 1.206176 -0.526771 -1.896005 -0.417505 1.105791 -0.520379 -0.424686 0.454993 -0.949533 -0.652463 -0.350429 -2.104668 0.813573 0.770546 -0.701903 -1.034399 2.179354 -0.433738 1.052045 0.203532 1.350312 -0.659110 1.481365 0.494894 0.967568 -0.332784 -0.476272 -1.865184 -0.359253 0.605855 0.412307 -1.612385 -0.420166 -0.566911 0.617676 -0.688463 0.443203 -1.018806 2.115518 1.671316 -1.430428 -1.485426 -1.247709 -0.974398 -1.886242 0.032224 -0.683662 -1.687114 0.325095 1.461593 0.473889 0.829413 2.337032 -0.875532 0.468428 0.141192 -0.865887 1.210760 -0.929686 1.221171 -1.430355 -1.138847 1.177621 0.813616 1.096884 -0.011167 0.036690 0.626844 -1.504854 -0.632169 1.139065 0.871423 0.572992 2.121456 1.930648 2.206367 -1.268761 -0.349062 0.902082 -0.976052 -0.364740 0.247749 -1.835362 0.889975 0.826966 0.200011 2.755694 0.023618 -1.202534 1.470226 0.011652 0.679964 -1.772114 0.855721 -1.346953 0.374203 -0.870820 -1.025434 -1.160376 -0.877807 -1.716531 -1.382390 2.610670 -1.418115 -2.594963 1.524900 -0.479012 1.516407 -3.591229 1.497441 -1.342114 1.870972 0.103357 0.166684 0.042436 0.222355 -1.307355 0.782195 0.703370 -1.039389 1.580683 1.754152 1.005028 0.244822 -0.159543 1.621771 -0.426970 1.124090 -0.937192 0.991017 -0.662565 -0.448485 -0.219830 -0.373188 -0.255790 0.248702 0.205101 0.183801 0.916189 0.374336 0.993536 2.009358 1.373508 -0.668086 0.749651 -0.876626 1.598736 -1.214043 -1.362007 -0.002130 1.352456 0.368602 0.906421 -3.129151 -2.583584 -2.095688 -3.293060 -0.037688 -0.261516 0.506499 0.372339 -0.274838 -2.637660 -1.456180 1.988258 0.190116 2.728320 1.417725 0.190241 1.632070 1.478266 -0.562193 -0.494470 -0.163812 0.807443 -0.246836 -0.442314 -1.644135 1.517120 -1.996526 0.960860 2.482010 -1.528769 1.079848 -0.219177 0.884960 -2.526382 2.816417 1.040891 -1.892965 1.165069 1.262730 1.951685 -0.702807 -1.306113 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.291919 -0.319830 1.009497 0.707594 0.045139 0.080284 0.436779 -0.457132 0.629958 0.318439 -0.039797 0.114417 -0.634983 0.186418 -0.191570 0.547185 -0.587095 -0.523927 -0.120595 -0.559319 -0.170707 -0.314788 0.494613 -0.153751 0.555747 -0.147598 -0.362559 -0.438846 -0.682188 -0.524410 0.423416 -0.298477 0.424336 -0.168270 -0.231671 -1.364413 0.610235 0.439073 -0.381182 -0.479098 0.514907 -0.446230 0.194284 -0.178378 -0.033535 0.094860 0.096446 0.019063 0.607694 0.304208 0.449840 0.130804 0.131766 1.126370 -0.725029 0.354213 0.099893 -0.162022 -0.357253 0.175670 0.070200 0.012920 0.379966 0.227338 -0.167129 -0.664177 -0.154960 -0.377971 -0.708739 0.376487 -0.153886 -0.075331 -0.436390 -0.029326 -0.345703 -0.291607 -0.422740 0.373188 0.796174 -0.483737 0.547095 0.002861 0.059735 -0.035370 0.108407 0.173652 0.268902 0.075649 -0.116920 -0.245076 -0.233546 0.099669 0.074332 0.317992 -0.087649 -0.584398 0.457323 -0.099170 -0.653845 0.149873 0.327519 -0.128909 -0.601343 0.010903 0.073861 0.420177 -0.416321 -0.647446 -0.233241 0.070786 0.133428 -0.139321 -0.042217 -0.538318 -0.331261 -0.414147 -0.699325 0.064680 -0.157220 -0.309072 -0.508698 0.504549 -0.341659 -0.037585 0.089535 0.478237 -0.374297 0.616671 -0.122187 0.489890 0.169675 0.048814 -0.884720 -0.225443 0.432223 0.723348 -0.202332 0.029618 -0.547274 0.006530 -0.510643 -0.008959 0.113026 0.478298 0.715234 -0.453093 -0.357837 -0.040403 0.095851 -0.843774 0.206837 -0.423896 0.062700 0.118400 0.461628 0.269656 0.569625 1.067144 -0.428670 0.339053 -0.088256 -0.336354 0.667144 0.033201 0.533890 -0.337995 -0.354099 0.097212 0.241447 0.172004 0.007761 0.121451 0.070725 -0.718238 -0.083464 0.036530 0.196778 -0.238055 0.357491 0.408179 0.795339 -0.666815 0.165520 0.515936 -0.185023 0.037649 0.107105 -0.643668 0.225783 0.223632 -0.258966 0.443705 0.059148 -0.474859 0.203482 -0.267871 0.202883 -0.416833 0.116341 -0.359066 -0.104630 -0.370793 -0.132036 -0.269635 -0.374544 -0.152690 -0.130284 0.677113 -0.204938 -0.444352 0.513511 -0.062062 0.123411 -0.937584 1.125653 -0.485272 0.345339 -0.443020 -0.016080 -0.103832 0.497023 -0.430581 0.109056 0.198231 -0.171243 0.416671 0.968610 0.410301 0.129591 -0.123630 0.710085 -0.077050 0.544473 -0.143013 0.646633 -0.187018 -0.317072 0.161015 -0.158424 -0.110865 -0.161605 0.160299 0.618105 0.440436 0.083997 0.439544 0.386421 0.781162 -0.291051 0.525442 -0.065870 0.574371 -0.121160 -0.144312 0.253594 0.311995 -0.154337 0.374063 -0.772160 -0.880756 -0.150900 -0.733390 0.215882 0.097188 0.081466 -0.138173 0.064993 -0.786509 -0.352433 0.176191 -0.246757 0.595915 0.256291 0.163761 0.401495 0.614402 -0.385336 -0.156111 -0.047891 0.188800 0.096366 -0.260978 -0.402826 0.515288 -0.593723 0.061929 0.567316 -0.291550 0.064871 0.030645 0.465856 -0.477319 0.870836 0.156428 -0.093233 0.883849 0.505468 0.857706 0.079588 -0.268693 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.002767 -0.316275 1.852948 1.187875 -0.627535 0.020234 0.358960 -0.899840 0.752417 -0.997707 -0.217800 0.102167 -1.016522 0.374782 -0.714750 0.275207 -1.801348 -0.780206 -0.561347 -0.990599 -0.191935 -0.320351 0.809264 0.241697 0.903268 0.778569 -0.644966 -0.402705 -1.122594 0.304434 1.250419 -0.291903 0.727619 0.724528 -0.125063 -2.419286 0.911421 0.689286 -0.622605 -0.703280 1.003522 -1.055129 0.017156 -1.160986 -0.546395 -0.054852 -0.209725 0.619262 0.900586 -0.088879 -0.334305 0.473134 -0.256568 1.715008 -1.118356 0.375290 0.316342 -0.213314 -0.504765 0.018628 0.004467 0.272230 0.405364 0.201310 -0.491956 -1.344403 -0.120205 -1.143573 -0.859703 0.825476 0.016445 0.162997 -0.676003 -0.119062 -1.260595 -0.271767 0.152304 1.227173 1.068045 -1.089211 0.515265 -0.366563 -0.095097 -0.009225 0.160697 0.434953 0.572613 0.144061 0.284090 -0.424633 -1.339945 0.091872 0.265294 -0.322654 -0.290062 -1.624759 0.702985 -1.442024 -1.000614 -0.176416 0.749021 -0.695187 -0.345555 0.073646 0.005860 0.535071 -0.449363 -0.678995 0.193659 0.376469 0.192953 -0.012278 -0.006944 -0.018583 -0.326273 -1.247981 -1.365652 0.721219 -0.320359 0.042896 -0.022290 0.925975 -0.713076 -0.418150 0.139316 0.619939 -0.850941 1.358659 -0.564519 0.191846 0.176632 0.133535 0.118872 -0.340228 0.662442 1.821687 -0.702241 -0.357364 -0.804510 0.087316 -1.027281 -0.787634 0.111678 0.361182 0.228241 -1.062304 -0.579800 -0.194449 -0.530078 -1.716422 -0.161892 -0.525248 -0.362767 0.929811 0.735044 1.150479 1.013200 1.575802 -0.503388 0.330517 0.076517 -0.626674 1.129543 0.328651 0.809550 -0.546081 -0.608645 0.319341 -0.718048 0.721389 -0.177931 0.506554 0.015428 -1.338689 -0.335990 0.250881 0.668777 0.070697 0.755747 1.096488 -0.344919 -1.120707 0.378459 0.942764 -0.618538 -0.121335 0.399320 -0.789694 0.359378 0.485386 -0.435844 0.887458 0.028021 -0.555891 0.165247 -0.149134 0.448350 -0.739792 -0.280431 -0.409294 -0.141359 -1.031919 0.042910 -0.358671 -0.652681 -0.674647 -1.070552 1.179997 -1.135144 -0.900549 1.126642 0.173889 0.967196 -1.550156 0.697554 -0.752673 1.261722 -0.069597 0.085797 0.084471 -0.408163 -1.305616 0.328635 0.198911 -0.336780 0.294160 1.212393 0.873248 0.167643 -0.362950 1.207124 -0.297789 1.351028 -0.558111 0.896530 -0.373393 -0.854979 0.559763 -0.171648 -0.601957 -0.381519 0.757953 1.576713 0.603833 1.412651 1.148017 0.655576 1.464739 -0.456263 0.357061 -0.326339 0.413321 -0.156797 -0.484228 0.596169 0.857258 -0.141572 0.408044 -1.366191 -2.295176 -1.206655 -1.487214 0.687691 -0.995523 0.104496 -0.197980 -0.074764 -1.325011 -0.674424 -0.187494 -0.437503 1.762449 0.588924 0.059321 0.663673 1.153488 -1.210462 0.025225 0.923730 1.096916 0.359383 -0.020358 -1.712467 1.303285 -0.775084 -0.052757 1.815150 -0.808832 0.510535 -0.310714 1.277718 -0.826932 1.561570 0.152175 -0.995513 1.180352 0.738631 0.554025 1.294901 -0.527858 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.180258 -0.317670 1.340874 0.895241 -0.130818 0.010182 0.514396 -0.582111 0.636791 0.009246 -0.113796 0.154670 -0.787712 0.252393 -0.400922 0.568173 -0.945571 -0.604585 -0.235412 -0.695337 -0.127416 -0.272171 0.710560 -0.090114 0.787394 0.091102 -0.445297 -0.572530 -0.837832 -0.410444 0.611325 -0.326651 0.543585 0.031579 -0.292117 -1.595407 0.727724 0.562122 -0.492871 -0.541718 0.787952 -0.597311 0.125027 -0.433068 -0.164367 0.063606 0.044634 0.189244 0.738445 0.300562 0.291485 0.243978 0.152393 1.280555 -0.868770 0.360079 0.159397 -0.192305 -0.429028 0.112268 0.049890 0.058232 0.371255 0.173782 -0.193879 -0.933974 -0.217043 -0.598596 -0.767050 0.466677 -0.171891 0.011876 -0.539359 -0.012733 -0.562764 -0.258895 -0.293809 0.610823 0.876363 -0.651727 0.561535 -0.128344 -0.091596 -0.101359 0.006577 0.289212 0.181595 0.105875 0.077108 -0.379687 -0.476647 0.128759 0.146871 0.189306 -0.153090 -0.933224 0.615230 -0.398963 -0.776224 0.024523 0.505680 -0.376997 -0.446443 0.075029 -0.043242 0.517171 -0.445827 -0.651211 -0.068642 0.090664 0.236196 -0.112973 -0.080358 -0.428224 -0.377115 -0.605524 -0.916393 0.300008 -0.268895 -0.231604 -0.386589 0.568361 -0.381994 -0.131015 0.119843 0.606845 -0.521649 0.836079 -0.233199 0.479362 0.226046 0.150420 -0.568980 -0.257393 0.588872 1.011472 -0.404997 -0.030785 -0.703295 0.014764 -0.639996 -0.222434 0.140256 0.496668 0.637200 -0.694896 -0.437294 -0.042278 -0.093497 -1.095165 0.126064 -0.453372 -0.027740 0.322788 0.532465 0.393930 0.736749 1.302164 -0.453558 0.284516 0.013702 -0.479841 0.846940 0.094770 0.651052 -0.410727 -0.427496 0.161081 0.012910 0.327616 -0.102854 0.359449 0.095195 -0.956078 -0.085485 0.087800 0.306044 -0.240128 0.460260 0.614355 0.499999 -0.674499 0.176345 0.689611 -0.346949 -0.030607 0.236390 -0.742688 0.276948 0.287096 -0.293436 0.579171 0.101247 -0.499570 0.283112 -0.301280 0.235199 -0.519160 0.057116 -0.389118 -0.125763 -0.537123 -0.116785 -0.241404 -0.477538 -0.274391 -0.357825 0.838392 -0.426824 -0.514896 0.615367 0.023264 0.267654 -1.139828 1.190198 -0.597474 0.542607 -0.315957 0.005645 -0.016707 0.269308 -0.736223 0.099585 0.187244 -0.169660 0.448545 1.090609 0.573892 0.068652 -0.229565 0.896649 -0.173818 0.885471 -0.228028 0.723975 -0.249022 -0.516346 0.273949 -0.123858 -0.342264 -0.272658 0.311660 0.948977 0.427329 0.440261 0.673158 0.415882 1.124764 -0.354943 0.583449 -0.147593 0.616570 -0.114246 -0.279220 0.410090 0.494454 -0.142531 0.479223 -0.987425 -1.329825 -0.389603 -1.001650 0.400237 -0.250000 0.167570 -0.231895 0.012490 -0.976094 -0.506415 0.059323 -0.284362 0.884949 0.406679 0.116303 0.464873 0.724124 -0.600167 -0.060465 0.154811 0.534624 0.262560 -0.250391 -0.711823 0.706281 -0.686082 -0.039849 0.950253 -0.466204 0.184572 -0.118257 0.674970 -0.620035 1.089503 0.112805 -0.328176 1.086155 0.590129 0.760386 0.371164 -0.334648 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -0.564241 -2.009305 4.351602 2.944994 -0.148244 1.099376 0.796985 -1.235459 0.960141 1.017331 -0.782166 2.060076 -1.992748 0.023091 -0.535952 0.757546 -2.627262 -1.772958 -0.447262 -1.160257 -0.427793 -1.244784 -0.327199 2.178549 1.897583 0.688883 -1.534129 -0.007277 -3.217369 -3.316117 -0.493413 -0.420302 1.545425 -0.647668 1.464377 -3.776693 2.368978 2.808328 -0.272268 -2.862196 1.383163 -1.122066 0.063065 -0.274244 -0.683202 1.469164 1.389922 0.522704 1.318985 1.027944 -0.314087 -0.074728 1.286812 2.629294 -0.160507 1.788839 1.836338 -1.032845 0.328315 -0.429145 -0.053028 -1.239181 0.765159 0.095936 -0.736152 -1.770399 0.126693 -0.221410 -1.239519 1.269410 0.386497 -1.179858 -1.603817 -1.116814 -3.206761 -0.494412 0.775640 1.686876 3.067352 -1.277924 2.505826 0.475915 0.911063 0.525997 1.533197 0.307108 1.537672 0.643195 -0.853812 -0.032072 -2.011072 -0.926683 -0.151629 1.163238 -1.228480 -1.999426 1.195079 -4.080886 -2.710400 1.221773 0.340615 -1.681333 -1.457228 -0.437935 0.910590 1.384876 -0.699342 -2.053169 -0.434303 1.259804 -0.533817 -0.509993 0.596670 -0.661188 -0.485059 -0.171847 -2.471476 1.126736 1.109820 -0.634800 -0.856414 2.491124 -0.290959 1.369792 0.131969 1.401706 -0.766973 1.734376 0.705914 1.117606 -0.643316 -0.425087 -1.588606 -0.484626 0.541635 0.076531 -1.618102 -0.672190 -0.530655 0.893041 -0.508501 0.906930 -0.991000 2.411709 1.660290 -1.314176 -1.577934 -1.640608 -1.715625 -2.062014 0.152994 -0.551343 -1.955493 0.703938 1.611778 0.301343 0.766672 2.040276 -0.805815 0.160947 0.060962 -0.887024 1.236660 -1.008878 1.328811 -1.507880 -1.223214 1.447743 0.965029 1.634171 0.046757 0.055793 0.827014 -1.332790 -0.687303 1.035180 0.934050 0.535373 2.497703 2.301005 2.455496 -0.926195 -0.579555 0.826639 -1.112743 -0.304243 0.230191 -2.012901 0.925788 0.879792 0.214408 3.183076 -0.085720 -1.106049 1.891678 0.026022 0.639752 -1.969964 0.968031 -1.559024 0.435383 -1.006214 -0.947046 -1.504282 -0.934399 -2.218911 -1.668479 3.057490 -1.826364 -2.673124 1.682184 -0.452028 1.802399 -3.744764 1.865533 -1.350538 2.214344 0.238789 -0.011820 0.288362 -0.090530 -1.473743 0.580936 0.808784 -1.235361 1.412636 1.637161 1.058898 0.045929 -0.178024 1.710395 -0.612543 1.406954 -1.271436 1.177811 -0.876685 -0.350113 -0.355046 -0.327770 -0.190265 0.302033 0.211917 -0.034105 0.688843 0.524163 0.871813 2.182314 1.369842 -0.829876 0.830379 -0.812932 1.694046 -1.520795 -1.432268 -0.111535 1.668006 0.525257 1.089242 -3.549384 -2.561265 -2.676812 -3.298028 -0.330328 -0.034148 0.599610 0.431325 -0.495922 -2.746144 -1.851989 2.646421 0.234491 2.217776 1.712889 0.232259 2.049222 1.612904 -0.322648 -0.530634 -0.122181 0.748131 -0.161189 -0.506792 -1.795440 1.748736 -2.245861 1.070925 2.869894 -1.710717 1.396919 -0.503967 1.110486 -2.896488 3.104336 1.062704 -2.338294 1.031535 1.902082 2.082244 -1.135976 -1.510736 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.437536 -1.332650 2.247394 1.552760 -0.237712 0.340813 0.923185 -0.371499 0.969415 0.563652 -0.892799 0.524981 -1.491686 0.155732 -0.505452 0.508935 -1.690655 -1.502546 -0.022565 -0.397198 0.080523 -1.137831 0.379140 0.935797 1.022909 0.055169 -0.602727 -0.538397 -1.801376 -0.867285 0.359631 -0.665127 0.968586 0.294618 0.360884 -2.078063 1.036207 1.224989 -0.198403 -1.716949 0.746709 -1.046572 0.045509 -0.457728 -0.524665 0.626246 0.792375 0.942235 0.707698 0.312826 0.077266 -0.394855 0.302520 1.849983 -0.542193 0.769696 0.489748 -0.503268 0.055019 -0.246610 0.273254 -0.480433 0.756785 0.789310 -0.343518 -0.839889 -0.137803 -0.537836 -1.210232 1.012563 0.002829 0.292144 -1.121167 -0.028616 -1.472391 -0.083192 0.168399 1.469741 2.141048 -0.780924 1.523655 0.542912 0.710280 -0.368754 0.230250 0.240532 1.070076 0.268980 -0.322328 -0.656184 -1.660529 -0.529070 -0.338669 0.154518 -0.317695 -0.732933 0.815154 -1.731668 -1.338436 0.185175 0.107124 -0.786076 -0.324795 0.475831 0.517230 1.046855 -0.184392 -1.247570 -0.653662 0.408605 -0.096447 -0.263218 0.363405 -0.069851 -0.406980 -0.773091 -1.322327 -0.029702 0.096810 -0.938323 -0.039865 1.107893 -0.716300 0.648006 0.348205 0.650011 -0.064094 1.121205 0.548886 0.705333 0.691410 -0.644772 -1.130635 -0.009280 0.491967 1.121851 -0.565333 0.157875 -0.146924 0.357480 -0.439102 -0.285783 -0.125867 0.905878 0.793348 -1.339440 -0.894389 -0.896526 -0.293242 -1.103237 -0.013098 -0.862676 -0.251235 0.631664 1.039666 0.952265 0.696305 2.165057 -1.081354 0.832432 0.176124 -0.548655 0.576030 -0.186286 0.597823 -0.667971 -0.817837 0.510047 0.660418 0.831636 -0.140544 -0.129146 0.014595 -1.215957 -0.728687 0.772081 0.625689 0.378573 1.422343 1.022731 0.358942 -1.281344 0.260724 0.860180 -0.287090 -0.276769 0.311935 -1.700596 1.070908 0.137158 0.063686 0.890507 -0.095137 -0.548120 0.957740 -0.412240 0.193530 -1.298267 0.286397 -0.911292 0.189660 -1.096903 -0.209837 -0.664134 -0.764551 -0.604723 -0.317978 1.579992 -0.537409 -1.592247 0.840302 -0.441958 0.904169 -2.264033 1.356349 -0.915742 1.116077 -0.156306 0.030411 -0.184495 0.107954 -0.551984 -0.206167 0.581913 -0.462530 1.080940 1.186938 0.679979 -0.078676 0.279179 1.247103 0.073945 0.888399 -0.504847 0.482582 -0.080166 -0.439271 0.019497 -0.405421 0.196133 0.447600 0.294767 1.121213 1.013520 0.421344 1.517721 1.090474 0.984966 -0.380331 0.458575 -0.488321 1.414704 -0.610856 -0.410904 -0.211011 0.627692 -0.525240 0.798960 -1.890425 -2.292499 -1.262109 -1.842825 -0.196819 -1.100537 0.611081 0.085382 0.216648 -1.789594 -0.971207 0.127041 0.002053 1.416856 0.716649 -0.060681 1.037962 0.909634 -0.678260 -0.463953 0.312338 0.753583 -0.271571 -0.430263 -1.036934 0.590352 -1.635249 0.727465 1.755504 -1.099007 0.460030 -0.285832 1.078374 -1.484085 2.199762 1.051314 -1.254458 0.996477 0.534926 1.104650 0.048217 -0.979297 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::deque() = -0.110634 -0.208294 0.600238 0.393076 -0.053549 0.072189 0.149412 -0.294831 0.449857 -0.003428 -0.148816 0.018900 -0.429886 0.139061 -0.321859 0.240658 -0.474682 -0.361928 -0.074483 -0.282914 -0.109419 -0.282290 0.265997 -0.027707 0.273047 0.136435 -0.197853 -0.055588 -0.450306 -0.214206 0.296006 -0.201005 0.167347 0.045065 -0.046774 -0.550193 0.367738 0.257223 -0.216848 -0.323308 0.245542 -0.369093 0.102368 -0.252177 0.022874 0.073206 0.051063 0.211956 0.360659 0.083718 0.154937 0.008380 -0.020449 0.601988 -0.442324 0.232282 0.102903 -0.000522 -0.131051 0.098162 0.048275 0.033324 0.163653 0.237258 -0.196374 -0.346200 -0.097385 -0.284905 -0.332500 0.326343 -0.175629 0.054455 -0.351435 -0.062156 -0.362045 -0.120271 -0.518995 0.306285 0.562504 -0.359587 0.309555 0.041115 0.168276 0.003389 0.115675 0.094120 0.278367 0.066882 -0.146861 -0.094506 -0.230529 0.093787 0.036476 -0.029746 -0.057437 -0.433463 0.248306 -0.478479 -0.433590 0.044887 0.149401 -0.064854 -0.105969 0.154080 0.092283 0.187361 -0.249983 -0.409776 0.045882 0.060998 0.078585 -0.022806 0.098129 -0.185100 -0.129412 -0.271801 -0.480966 0.002021 -0.092741 -0.221133 -0.093090 0.370699 -0.150424 -0.010116 0.066721 0.170280 -0.163007 0.501345 -0.057932 0.228422 -0.070322 0.103750 -0.411003 0.064614 0.256711 0.326482 -0.204939 0.141279 -0.189312 -0.003657 -0.360148 -0.192020 -0.137327 0.133026 0.209568 -0.374006 -0.244461 -0.077876 -0.141329 -0.572490 0.091307 -0.254416 -0.133711 0.056724 0.319395 0.379765 0.371081 0.660543 -0.293172 0.071470 -0.051332 -0.151520 0.372322 0.059378 0.332869 -0.203861 -0.245019 0.139430 0.047100 0.079947 0.051653 -0.016415 0.011667 -0.487311 0.054090 0.181439 0.219615 -0.071217 0.332626 0.256393 -0.013594 -0.392750 0.164601 0.338584 -0.049103 0.011989 0.063498 -0.413416 0.274292 0.130233 0.029369 0.157836 0.026596 -0.154005 0.092129 -0.158260 0.216891 -0.332040 -0.075329 -0.215233 -0.106556 -0.324695 0.191948 -0.129130 -0.237194 -0.075301 -0.174093 0.397624 -0.265742 -0.171020 0.374466 0.069069 0.272209 -0.396254 0.346819 -0.308115 0.457763 -0.069739 0.078334 -0.005975 0.075947 -0.198571 -0.000432 0.142085 -0.058912 0.213331 0.382153 0.275917 0.105594 0.037263 0.451966 -0.095419 0.287782 -0.095504 0.280617 -0.064517 -0.246958 0.222391 -0.142144 -0.083691 -0.066161 0.166896 0.547918 0.328927 0.196978 0.417309 0.177663 0.443877 -0.189499 0.174338 -0.097033 0.280063 -0.157535 -0.115788 0.093672 0.179396 -0.143986 0.138631 -0.494416 -0.695816 -0.345038 -0.385948 0.090729 -0.266233 0.021157 -0.049811 0.078328 -0.412380 -0.231555 0.219146 -0.193629 0.412039 0.111507 0.078752 0.257546 0.443897 -0.302233 -0.097912 0.120772 0.196666 0.004138 -0.013332 -0.401768 0.363541 -0.385927 0.034221 0.443680 -0.284489 0.022275 0.067651 0.290725 -0.302830 0.521147 0.176701 -0.167157 0.490298 0.322265 0.503749 0.294601 -0.217699 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_base() = -0.422402 -0.197699 1.578721 0.432520 -0.654569 -0.278359 0.828702 -0.684907 0.741040 -0.587305 -0.069896 -0.352785 -1.158898 0.231582 -0.375751 0.239878 -1.352828 -0.777384 -0.335529 -0.914970 -0.588688 -0.661828 1.098424 0.064967 0.709024 0.557120 -0.236500 -0.456767 -0.168416 -0.660461 1.041829 -0.296115 0.498303 0.730042 0.113278 -2.211142 0.697866 -0.155943 -0.529982 -0.284969 0.833505 -0.009375 0.031077 -0.172694 -0.318407 0.187853 0.441783 1.216086 0.883214 0.528279 0.294716 -0.537566 -0.154844 1.388754 -0.784517 0.191098 0.410752 -0.183390 -0.311405 0.201939 -0.293096 -0.410741 -0.052605 0.566578 -0.329223 -0.335616 0.482177 -1.141145 -1.082904 1.011277 -0.034434 -0.130676 -0.666620 -0.578806 -0.545350 -0.184712 -0.483994 0.896938 1.442675 -1.052777 0.500869 0.054700 0.234726 -0.283442 -0.443333 0.043194 0.304552 -0.057313 -0.212601 -0.346911 -0.818999 -0.283989 -0.445962 -0.089760 0.288433 -1.305546 0.702399 -0.892948 -0.834164 0.096229 0.297273 -0.255677 -0.644578 0.240985 0.277811 0.207099 -0.523896 -0.901667 -0.508994 0.043572 -0.091539 0.756797 0.218517 0.286993 -0.518202 -0.587141 -1.311783 0.219889 -0.377817 -0.632879 -0.210063 0.575970 -0.570283 0.543570 0.839111 0.835237 -0.457280 1.360557 0.581974 0.100210 0.437179 0.020069 -0.200526 -0.166813 0.431468 1.332076 -0.092785 -0.288545 -0.479025 -0.078188 -1.030862 -0.531806 -0.053369 0.247071 0.792872 -1.004508 -1.098541 0.217996 -0.410887 -1.705683 0.444745 -0.955695 -0.133691 0.533183 0.099938 0.871802 0.422332 1.539919 -0.781979 0.583196 -0.199135 -0.577375 0.039567 0.409038 0.955200 -0.447180 -0.485594 -0.177170 -0.267040 0.286278 0.018631 -0.580918 0.036532 -1.532293 -0.671626 0.102929 0.446559 -0.285421 -0.075916 0.752641 0.590257 -0.722391 -0.140908 0.938068 -0.208174 -0.414248 0.655302 -0.879508 0.576523 0.041511 -0.228313 0.409574 0.194467 -0.300442 0.777981 -0.411843 0.266335 -0.583081 -0.425670 -0.419118 -0.067458 -0.949106 0.212779 -0.493404 -0.224631 0.117853 -0.401884 0.782297 -0.542744 -0.702432 1.058329 -0.076832 1.065365 -1.276375 1.396817 -0.234714 0.790724 -0.298949 0.102096 -0.310461 -0.330820 0.129475 0.187438 -0.389217 0.395999 0.363507 1.411705 0.324302 0.360716 0.275796 1.317968 -0.177122 0.835647 -0.072947 0.571471 -0.538412 -0.849452 0.492465 0.071506 -0.432427 -0.285219 0.460013 1.158563 0.691180 0.167923 1.329459 0.448964 0.986867 -0.182765 0.284756 0.003533 0.929303 -0.585991 -0.349637 0.530061 0.741875 -0.767078 0.408280 -1.026774 -1.947016 -0.891461 -1.654972 -0.458732 -0.661480 0.420984 -0.370644 -0.034472 -0.494953 -0.204740 0.400812 -0.025835 1.034612 0.627723 0.132632 0.978715 1.640153 -0.792396 -0.318365 0.818313 0.737428 -0.165706 0.097182 -1.097576 0.241356 -0.790190 -0.022124 1.062404 -0.411677 0.167429 -0.695054 1.212798 -1.122848 1.229954 0.251464 -0.354252 1.336539 0.501885 0.684617 1.235296 -0.170472 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.020613 -0.364075 1.593080 1.020165 -0.051065 0.142324 0.484059 -0.919230 0.989565 0.194864 -0.236380 0.171933 -0.856262 0.358357 -0.995030 0.739344 -1.047357 -0.750437 -0.330132 -0.931333 -0.302451 -0.451216 0.704002 -0.185208 0.868731 -0.068916 -0.539793 -0.401772 -1.099846 -0.804952 0.565734 -0.359587 0.336985 -0.538736 -0.229366 -1.353181 1.017071 0.762517 -0.589968 -0.692429 0.780112 -0.750590 -0.015251 -0.350089 0.062380 0.041918 -0.035491 0.506484 0.890565 0.389274 0.547669 0.446111 0.161264 1.786603 -1.088617 0.623121 0.226269 0.044018 -0.362253 0.465406 0.078220 0.174098 0.281386 0.288281 -0.127991 -1.017475 -0.243165 -0.468027 -0.617186 0.712845 -0.334582 -0.235839 -0.694353 -0.058565 -0.878023 -0.248542 -1.162538 0.675532 1.145755 -0.835862 0.606633 -0.013956 0.113090 -0.026372 0.166473 0.164178 0.560610 0.178190 -0.068806 -0.478503 -0.528139 0.341139 0.182616 -0.085363 -0.341132 -1.473725 0.782459 -1.043940 -1.078623 0.099455 0.584480 -0.451277 -0.196238 0.184241 0.096297 0.324665 -0.570040 -0.869314 0.015278 0.251668 0.245006 -0.148027 0.207281 -0.715385 -0.159998 -0.393450 -1.128095 0.264850 -0.223815 -0.283019 -0.547046 0.799313 -0.171105 -0.181463 0.112115 0.632379 -0.460402 0.854924 -0.340521 0.735447 -0.115814 0.559712 -0.991562 0.243183 0.691971 0.414527 -0.468840 0.459965 -0.653902 0.116917 -0.835265 -0.048263 -0.425501 0.509312 0.421311 -0.840187 -0.573189 -0.083137 -0.135078 -1.107279 0.212127 -0.497928 -0.663862 -0.165162 0.711976 0.749597 0.861216 1.230996 -0.555491 0.163581 0.037364 -0.306962 0.968285 -0.301686 0.752475 -0.508442 -0.631043 0.238087 0.166476 0.230258 -0.101561 0.298039 0.072124 -1.138021 0.161147 0.127703 0.417660 -0.358242 0.779089 0.756289 0.394362 -0.997411 0.320007 0.815047 -0.445736 0.057868 0.092604 -0.995376 0.381506 0.421589 0.181362 0.738229 0.125404 -0.364715 0.308949 -0.354757 0.419079 -0.646995 -0.086848 -0.542950 -0.455075 -0.528155 0.259390 -0.265023 -0.430790 -0.300937 -0.616643 0.945764 -0.829894 -0.493037 1.027688 -0.032910 0.248490 -1.075782 1.219556 -0.699274 0.642423 -0.101999 0.249558 -0.042185 0.475365 -0.890039 0.212849 0.288269 -0.324114 0.734613 1.195460 0.598837 0.292793 -0.185049 1.087589 -0.502962 0.856772 -0.392864 0.913342 -0.248594 -0.810273 0.248991 -0.241697 -0.397330 -0.395769 0.498400 1.077055 0.460527 0.420484 0.695258 0.509942 1.278097 -0.454620 0.815339 -0.266199 0.420141 -0.321167 -0.321030 0.489579 0.207072 -0.250329 0.514057 -1.256972 -1.399395 -0.898924 -0.982727 0.570118 -0.683105 0.135115 -0.330772 -0.033840 -1.171094 -0.767243 0.514462 -0.378940 0.462991 0.566839 0.251189 0.519853 0.978343 -0.580168 0.176771 -0.019762 0.453260 0.216222 -0.485425 -0.691979 0.919538 -0.768178 0.045510 1.069903 -0.498437 0.268222 0.121392 0.370215 -0.729948 1.116842 0.240082 -0.279122 1.109166 0.909468 1.197937 0.400953 -0.475299 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 2.600057 -2.661362 16.754493 9.820825 -7.214981 0.473741 0.523615 -7.703761 5.166541 -0.579161 -3.341148 2.315033 -4.030648 1.770260 -1.255421 5.725668 -14.852132 -2.499169 -2.853623 -7.952815 -4.223466 -2.061768 2.497999 1.850270 7.204182 7.506006 -3.512069 -0.407506 1.073345 -8.888694 3.484843 -2.078115 3.577476 2.612357 4.614758 -19.293632 9.425115 4.137254 -3.752859 -6.589864 4.713877 -1.147829 -1.121467 -2.691130 -4.618231 2.223239 0.956015 9.284653 5.161896 3.968835 -1.903345 0.984852 5.634067 15.355938 -1.643443 3.575692 4.434774 -3.373704 -1.734068 0.783494 1.388178 -1.074305 0.503560 0.428786 2.256938 -8.851371 -0.229728 -5.073083 -3.195534 6.153317 1.175794 -5.351382 -5.686346 -5.991297 -6.265266 -1.631363 -12.718636 10.697472 8.983966 -8.604174 3.810435 1.035288 0.192259 1.487689 1.004136 0.850704 6.821498 2.488576 0.568733 0.454167 -0.586104 -6.185501 4.572852 -5.393400 -4.008398 -17.254824 4.987395 -12.062286 -7.342809 3.597878 6.801980 -5.771595 -0.581067 -3.840569 2.389824 1.696832 -3.343663 -4.075564 0.198503 1.870560 -0.716442 0.562487 -0.519580 1.929445 -0.582908 1.385056 -10.420466 5.937000 0.462747 1.131069 1.104033 5.970182 2.299401 -0.865943 0.591027 4.593539 -3.907537 9.894419 -0.103480 5.103152 -2.680976 6.467342 1.880697 5.224288 5.080184 -1.999141 -1.262313 -3.279013 -3.009130 3.132408 -6.237790 1.736392 -3.198418 6.393808 5.327877 -3.339504 -7.098795 -3.480439 -8.448991 -10.277863 1.721216 -3.932212 -7.054156 5.771105 4.461295 6.523261 4.578808 1.443891 -6.411084 0.580852 -2.341129 -0.330768 4.445162 1.226303 5.108882 -4.418209 -1.782272 2.036253 -0.330202 5.375851 -0.059196 -0.949123 2.673821 -6.445050 -0.642706 4.889029 5.512405 -0.622690 4.207552 8.641580 10.320043 -2.285070 -1.778160 5.744802 -4.595705 -2.807945 3.589072 -6.266516 2.392132 2.476575 2.844311 8.097185 0.055281 0.605923 2.820512 -1.717370 0.555624 -3.405288 -1.271212 -3.264092 -0.698958 -2.973495 3.103600 -5.972943 -1.110175 -4.993712 -6.682483 9.168082 -13.481723 -4.012677 10.927084 -5.016933 5.860077 -6.952479 11.473315 -3.840325 5.813872 -0.792683 -1.831782 -0.277842 -5.397813 -7.451160 3.585737 0.721557 0.579704 -0.598695 8.090985 4.315347 0.285995 -2.025766 8.396850 -5.523821 9.327897 -3.560940 7.096572 -3.859600 -1.408106 -1.556172 0.120093 -5.328321 -3.139530 4.396994 5.906634 -0.747814 5.868086 4.558547 3.282016 7.363763 -4.080109 6.070010 -2.188674 2.222618 -4.757644 -4.605199 4.765187 5.994708 -2.223948 2.466104 -11.072031 -9.359889 -16.192874 -4.345623 -2.910599 -2.778902 3.634302 -3.134628 -2.964187 -4.619518 -6.486193 10.761279 -0.700928 -0.652233 5.836053 0.449627 6.679699 8.394831 -1.598439 0.112907 0.250352 2.768528 2.664134 -0.706248 -8.835908 8.686481 -5.771589 -0.042387 12.402166 -4.813110 4.258055 -1.586552 6.796460 -8.021188 7.243462 1.225741 -6.420572 3.748395 10.206864 3.332260 2.544038 -4.591536 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.239800 -0.366758 1.501886 1.113580 -0.692877 -0.018134 0.100848 -0.524864 0.717943 -0.190231 -0.349488 0.125421 -0.583271 0.320870 0.351930 0.759143 -1.680434 -0.382737 -0.007714 -0.499923 -0.302800 -0.324913 0.464766 0.009424 0.633615 1.127585 -0.298512 -0.198651 0.219239 -0.338182 0.795000 -0.522568 0.586338 1.231812 0.271080 -2.284438 0.865990 0.067155 -0.434092 -0.737255 0.365322 -0.422296 0.280551 -0.838626 -0.336706 0.313051 0.298919 1.071038 0.672737 0.349942 -0.419516 -0.218130 0.482380 1.296011 -0.435697 0.211818 0.350939 -0.473873 -0.275134 -0.177458 0.251466 -0.090651 0.366405 0.401804 -0.089756 -0.937189 -0.293132 -0.946203 -0.739418 0.619542 0.143898 0.247590 -0.935199 -0.318607 -0.307405 -0.233297 -1.753006 1.285873 1.154773 -0.986823 0.553808 0.158197 0.248281 0.062003 0.137349 0.329117 0.618322 0.271144 -0.233449 0.188142 -0.256917 -0.900903 0.502253 -0.756907 -0.010949 -1.514194 0.162643 -0.643047 -0.634829 0.332017 0.536594 -0.090518 -0.184545 -0.332538 0.415782 0.520494 -0.471119 -0.549738 0.163937 -0.233847 -0.071689 -0.039532 -0.155958 0.273940 -0.366015 -0.373730 -1.137426 0.187256 -0.101550 -0.203256 0.428169 0.576668 -0.075259 -0.110656 -0.023413 0.221705 -0.424270 1.391196 0.057996 0.430389 0.280745 0.240461 0.104027 0.542658 0.675915 0.716666 -0.055676 -0.425754 -0.421957 0.206949 -0.771990 -0.381597 0.338918 0.546549 0.749515 -0.397586 -0.739482 -0.385279 -0.621906 -1.226301 0.372846 -0.619815 0.133233 0.943941 0.622185 0.563874 0.798322 0.492430 -0.925382 0.252611 -0.489063 0.140262 0.717033 0.979555 0.644943 -0.376004 -0.042749 0.279656 -0.028064 0.340185 0.161151 -0.324687 0.325477 -0.775426 -0.117184 0.611129 0.610610 -0.129012 0.348052 0.492119 0.691425 -0.198590 -0.018182 0.709146 -0.060144 -0.233189 0.483889 -0.672819 0.670556 0.061123 -0.032582 0.258903 -0.058424 -0.277988 0.103464 -0.139970 0.054134 -0.277219 -0.312793 -0.255241 -0.079039 -0.537396 0.604008 -0.545609 -0.443362 -0.281953 -0.106343 0.969096 -0.834341 -0.140371 0.833792 -0.674128 0.752426 -0.682177 1.317115 -0.615142 0.531489 -0.422938 -0.466899 0.010720 -0.609254 -0.545974 0.020276 0.296327 0.273411 -0.275055 0.706705 0.641645 -0.041821 0.070250 0.856462 -0.073191 0.862736 -0.010381 0.611150 -0.377876 0.262263 0.142169 -0.110969 -0.219782 -0.179039 0.319844 1.179288 0.244027 0.743070 0.910088 0.182581 0.720597 -0.552943 0.340624 -0.211925 0.614202 -0.401949 -0.271806 0.228204 0.637193 -0.331438 0.360074 -0.985455 -1.269527 -1.136674 -0.147781 -0.565043 0.063852 0.338110 -0.231020 0.074397 -0.519839 -0.347016 0.462989 -0.274336 0.074650 0.356166 -0.054486 0.667493 0.827374 -0.385218 -0.598024 0.235475 0.321640 0.198862 0.365337 -1.176847 0.873509 -0.812494 -0.009755 1.238717 -0.638918 -0.040433 -0.352490 1.510141 -0.563071 0.976244 0.253001 -0.648078 0.612501 0.966608 0.411864 0.606199 -0.494874 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator() = 0.211826 -0.331391 1.575723 1.170397 -0.523758 -0.035794 0.382275 -0.537557 0.871916 0.251829 -0.256719 0.012387 -0.608315 0.232965 0.666552 0.951341 -1.493004 -0.358599 0.086479 -0.683057 -0.298387 -0.293532 0.473896 -0.270181 0.762142 0.701829 -0.163317 -0.533664 0.221896 -0.397635 0.767920 -0.561760 0.571313 1.064961 0.218537 -2.335901 0.912908 0.026112 -0.499029 -0.708294 0.399385 -0.393482 0.443626 -0.579656 0.039830 0.369607 0.408871 1.111775 0.810348 0.563677 -0.122680 -0.310595 0.558678 1.449022 -0.600415 0.222711 0.214618 -0.595153 -0.352664 0.059650 0.204827 -0.218879 0.410124 0.286077 -0.017831 -1.020033 -0.327823 -0.910682 -0.799012 0.500876 0.260690 0.053721 -0.985366 -0.316204 0.006765 -0.384359 -2.584899 1.220747 1.117117 -1.003705 0.656685 0.265078 0.256401 0.052347 0.151734 0.323759 0.583649 0.177674 -0.285924 0.172461 -0.281475 -1.020740 0.517086 -0.738891 0.047451 -1.482888 0.170893 0.050283 -0.668280 0.428133 0.595220 -0.022055 -0.384353 -0.285666 0.354108 0.565106 -0.534972 -0.636022 -0.006451 -0.297423 -0.143968 -0.043181 -0.234247 -0.123577 -0.475976 -0.409688 -1.101717 0.195123 -0.139740 -0.191363 0.043250 0.601054 -0.130170 -0.151643 0.027702 0.343515 -0.468414 1.328393 0.094381 0.595790 0.532172 0.130504 -0.612555 0.658156 0.775007 0.782970 0.186797 -0.248119 -0.563555 0.192259 -0.844008 -0.070984 0.580108 0.853011 0.961511 -0.425196 -0.682530 -0.284678 -0.270290 -0.978657 0.627698 -0.592499 0.386118 0.573554 0.609675 0.547275 0.823669 0.427486 -1.017191 0.330474 -0.630635 0.204224 0.793975 1.103340 0.753607 -0.422049 0.128189 0.046125 0.251053 0.180931 0.158736 -0.280453 0.412109 -0.857215 0.000647 0.326461 0.439037 -0.401170 0.333819 0.531643 1.227577 -0.345727 -0.086132 0.750854 -0.108681 -0.236637 0.556853 -0.680744 0.659998 0.093610 -0.155219 0.251169 -0.025217 -0.307416 0.071643 -0.237928 -0.041005 -0.143116 -0.314052 -0.283385 -0.275564 -0.336645 0.622882 -0.714722 -0.538110 -0.180921 0.136983 0.956057 -0.355117 -0.060912 0.764316 -0.983929 0.362859 -0.667944 2.051064 -0.680884 -0.018171 -0.769275 -0.542865 -0.166683 -0.008041 -0.551883 0.040075 0.258234 0.245320 -0.089257 0.981904 0.661238 -0.007759 0.032630 0.940091 -0.156909 0.838759 0.048465 0.765323 -0.493762 0.429453 0.036870 -0.070225 -0.153736 -0.141170 0.197306 1.177233 0.197946 0.452980 0.718798 0.180628 0.731072 -0.524334 0.592096 -0.157053 0.734140 -0.357600 -0.237907 0.339601 0.388223 -0.292218 0.398037 -1.048268 -0.981054 -0.536275 0.026781 -0.496121 0.443754 0.291788 -0.194833 0.105832 -0.681483 -0.337442 0.254586 -0.239677 -0.501266 0.269364 -0.050903 0.657413 0.808893 -0.222592 -0.643777 0.003522 0.126458 0.233642 0.090680 -0.897894 0.883261 -0.934167 0.003113 1.075712 -0.518830 -0.141316 -0.355723 1.605666 -0.626230 0.890491 0.147127 -0.408083 0.720401 1.267271 0.743210 0.249396 -0.416715 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.839070 -0.824392 4.838994 2.031926 -1.090945 -0.051139 2.343173 -2.355453 2.925860 0.165827 -0.752489 -1.150385 -3.106682 -0.051968 -0.331548 0.688543 -3.941018 -2.213945 -0.805272 -2.693114 -1.108443 -2.398843 2.357673 0.067446 2.202341 1.036967 -0.765304 -0.850071 -1.329529 -2.466170 2.775441 -0.946007 1.497564 1.743769 0.453099 -5.832529 2.791144 0.825161 -1.134723 -1.463970 1.797844 -0.503707 -0.259737 0.037612 -0.094836 0.979333 0.867471 3.259587 2.742204 1.031811 1.076364 -1.790851 -0.553724 3.654037 -2.325370 0.894818 0.391537 -1.209736 -0.782230 1.321923 -0.378774 -0.939633 0.618182 2.094379 -0.742519 -1.429502 2.076826 -2.344378 -3.352779 3.249856 0.305575 -1.063890 -1.497181 -1.176142 -1.347571 -0.294652 -0.330442 2.513020 4.083738 -1.565458 2.324286 0.261934 0.745269 -1.065615 -0.705875 -0.108124 2.186396 -0.201086 -0.849603 -1.617064 -3.080560 -1.526662 -0.574000 0.591086 0.454273 -1.869874 1.800310 -2.299861 -2.479173 -0.084976 1.229140 -1.127104 -2.646402 1.224553 1.229293 0.583028 -0.332127 -2.574048 -1.422661 0.659977 -1.875254 1.429015 0.123045 -0.090265 -1.782949 -1.160457 -3.023193 0.317706 -1.050470 -1.256589 -1.335886 2.039234 -1.809717 0.667159 1.805702 2.268245 -0.806601 2.306887 0.532534 1.092086 1.850320 -0.138511 -1.499655 -0.835396 1.297805 3.130609 0.345039 -0.987809 -1.169319 0.357568 -3.142732 -0.560527 -0.747527 1.496348 2.449105 -3.063968 -2.296468 0.329345 -0.512960 -3.952196 0.815553 -2.205328 -0.868043 0.411748 1.333561 2.484768 1.334318 4.044920 -3.049299 1.860814 -0.484063 -1.393834 0.689711 0.789598 2.362727 -1.458578 -1.021772 -0.659139 -0.101945 1.076433 -0.502957 -1.315550 -0.234688 -3.960960 -1.948929 0.682163 0.605907 -0.109195 0.118809 2.695557 3.191634 -3.419765 0.311773 2.915469 -0.381318 -1.322291 1.959366 -2.848122 1.601735 0.408689 0.072927 1.981780 0.275923 -0.934601 1.055131 -1.001458 0.395068 -2.133632 -0.810801 -1.262740 0.590777 -2.026852 -0.102625 -1.957426 -1.257305 -0.452788 -0.836365 2.393470 -0.443869 -3.451182 3.838462 -1.236066 2.391281 -3.985167 3.381375 -1.183716 1.158006 -1.522251 0.170576 -1.007691 -0.150796 -0.803876 0.853938 -0.707910 0.378844 2.319097 4.181486 1.421074 1.103946 -0.118316 3.436099 -0.697951 2.118277 -0.943371 1.647423 -1.094963 -1.701555 0.305914 -0.415475 -0.838474 -0.375790 0.740584 2.573814 2.534052 0.339438 3.320965 1.245877 2.467064 -0.384680 1.554290 0.320712 2.191508 -0.955467 -1.155934 1.759140 1.353663 -2.078169 1.545560 -3.544223 -4.817753 -0.997692 -5.011160 -1.072251 -1.737777 1.419333 -0.247803 0.183538 -2.412305 -0.982056 1.134898 0.420338 3.637315 1.174039 0.109054 1.936923 3.822821 -2.084235 -0.479739 1.337567 1.827103 -0.735465 -1.117882 -2.797572 1.888879 -2.466053 0.803876 3.267767 -1.753382 0.626864 -2.297131 3.123195 -3.772714 3.263429 0.989621 -0.949576 3.026365 0.690761 2.940407 2.321585 -0.993627 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::empty() const = 0.529537 -0.209094 1.822897 1.211108 -0.646151 0.072147 -0.161702 -0.998133 0.734940 -0.067615 -0.431919 0.276326 -0.355492 0.352911 -0.603589 0.833457 -1.538249 -0.275203 -0.437378 -0.967629 -0.492000 -0.104607 0.273583 -0.048828 0.836137 0.859317 -0.425506 0.121098 -0.101518 -1.061425 0.243104 -0.229972 0.173298 0.092486 0.435287 -1.274429 1.160046 0.641950 -0.511691 -0.716766 0.506598 -0.392648 -0.166062 -0.431208 -0.143459 0.267408 -0.050281 0.935811 0.653055 0.497173 -0.023421 0.419421 0.655512 1.531542 -0.348153 0.495476 0.463582 -0.156952 -0.142828 0.229046 0.157114 0.124184 -0.067458 -0.055624 0.283384 -1.164925 -0.354162 -0.464640 -0.040132 0.665927 -0.166959 -0.630720 -0.756648 -0.649770 -0.803376 -0.160377 -2.438466 1.090704 0.900966 -1.078516 0.237614 0.118913 -0.009151 0.227806 0.228157 0.110872 0.779000 0.359099 0.142295 0.122020 0.158236 -0.457427 0.650011 -0.827789 -0.643900 -2.016666 0.649211 -1.666810 -0.876218 0.351494 0.838186 -0.606186 0.339365 -0.242117 0.088199 0.090434 -0.396198 -0.375425 0.469572 0.171716 0.279217 -0.063339 -0.002909 -0.016655 0.112973 0.312029 -1.254428 0.722625 -0.014612 0.228627 0.161386 0.685494 0.544360 -0.382898 -0.110532 0.411677 -0.436043 1.203171 -0.300620 0.746236 -0.629340 1.099138 -0.107606 1.077274 0.709741 -0.737863 -0.374961 0.194662 -0.361451 0.293120 -0.810412 0.180999 -0.686302 0.578224 0.359860 -0.450580 -0.763239 -0.351013 -1.063399 -0.993448 0.175563 -0.345897 -1.038863 0.247389 0.599493 0.951946 0.719291 0.160395 -0.612606 -0.379631 -0.182077 0.064067 0.757640 0.020186 0.586801 -0.469885 -0.239995 0.421968 -0.043178 0.365255 0.098160 0.129357 0.322407 -0.788614 0.422419 0.731365 0.598639 -0.216344 0.775400 0.926626 0.473832 -0.126196 -0.039382 0.661898 -0.573146 -0.157789 0.275049 -0.664815 0.305278 0.345357 0.683703 0.767627 0.048382 0.322153 0.171587 -0.221491 0.229339 -0.348640 -0.261531 -0.346049 -0.333056 -0.273313 0.740687 -0.458281 -0.115260 -0.424984 -0.862562 0.949086 -1.535304 -0.046376 1.207601 -0.459033 0.427140 -0.350326 0.952714 -0.569178 0.686947 0.163378 0.008757 0.091322 -0.544810 -1.014818 0.318805 0.254698 -0.027227 -0.064056 0.671516 0.534657 0.002450 -0.247011 0.931551 -0.885395 1.141046 -0.374792 0.853723 -0.339486 -0.215016 -0.057439 -0.050315 -0.773448 -0.528443 0.527837 0.911233 -0.213618 0.799046 0.378516 0.197320 1.033284 -0.555100 0.812456 -0.305627 -0.011900 -0.613372 -0.513557 0.642952 0.383887 -0.133466 0.160493 -1.199504 -0.919205 -1.920908 -0.138935 0.020580 -0.609694 0.284374 -0.441915 -0.374615 -0.437914 -0.951445 1.366297 -0.214224 -0.456695 0.578171 0.085719 0.577656 0.846698 -0.128479 0.205932 -0.191891 0.274467 0.493765 -0.128065 -0.903547 1.174088 -0.512702 -0.230575 1.390841 -0.589137 0.510320 0.181272 0.515788 -0.688259 0.644713 0.040569 -0.609528 0.508119 1.386978 0.528995 0.326774 -0.541702 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.156616 -0.364593 1.557197 1.114946 -0.240136 0.100738 0.135819 -0.741419 0.556199 0.273243 -0.167830 0.378920 -0.506834 0.164253 -0.042612 0.734682 -1.048673 -0.466512 -0.330362 -0.791317 -0.212540 -0.172133 0.415147 0.101449 0.769132 0.045395 -0.560926 -0.216731 -0.506403 -1.060882 0.201588 -0.263849 0.557507 -0.177457 0.046777 -1.754192 0.980788 0.665851 -0.438785 -0.689576 0.648699 -0.372490 0.038909 -0.243320 -0.515688 0.251147 0.056452 -0.201906 0.643524 0.472837 0.274308 0.330452 0.524850 1.301448 -0.447767 0.464049 0.342805 -0.386607 -0.340486 0.068073 0.130019 0.027128 0.349529 0.034605 0.062423 -1.035729 -0.245378 -0.346868 -0.641986 0.488168 -0.301039 -0.487011 -0.479189 -0.355160 -0.734786 -0.312733 -0.243836 0.740108 0.863166 -0.740461 0.515803 -0.036104 -0.137149 0.083272 0.174050 0.197956 0.450856 0.238967 0.088584 -0.084894 0.148671 -0.335912 0.344749 0.234964 -0.372582 -0.798965 0.625683 -0.877830 -0.828830 0.355486 0.628442 -0.433770 -0.694051 -0.360076 0.065525 0.473637 -0.325252 -0.559574 -0.058238 0.231449 0.267185 -0.218254 -0.297365 -0.318115 -0.241952 -0.015404 -1.034054 0.458626 -0.027077 -0.071865 -0.364659 0.625390 -0.159612 -0.150201 -0.037376 0.627097 -0.534420 0.908906 -0.278456 0.747450 -0.081179 0.316896 -0.564174 -0.080717 0.480314 0.116796 -0.334811 -0.103773 -0.587644 0.136705 -0.605281 0.262701 -0.067190 0.746519 0.844680 -0.305039 -0.603506 -0.218852 -0.591452 -1.190776 0.121279 -0.472233 -0.309105 0.716877 0.549815 0.374274 0.638176 0.938480 -0.428267 0.095355 -0.092318 -0.423613 0.808926 -0.272095 0.579273 -0.465036 -0.374581 0.366489 0.170223 0.418272 0.100457 0.218729 0.225741 -0.742023 -0.145655 0.406752 0.363833 -0.018545 0.486245 0.721227 1.083040 -0.332500 0.018010 0.560390 -0.386667 -0.053072 0.092996 -0.705051 0.095088 0.310618 -0.007742 0.840952 0.037623 -0.313239 0.203647 -0.259038 0.206793 -0.460942 0.226940 -0.416832 0.179245 -0.319250 -0.417260 -0.401974 -0.323773 -0.394177 -0.475768 0.983797 -0.814426 -0.616188 0.903467 -0.219500 0.347694 -1.117703 1.234261 -0.568829 0.822208 -0.309979 -0.107101 -0.045375 -0.034617 -0.783294 0.288936 0.253264 -0.181614 0.181293 1.015677 0.493718 0.012957 -0.322190 0.808088 -0.323760 1.021747 -0.283979 0.868980 -0.310764 -0.212293 -0.045475 -0.089311 -0.405485 -0.339934 0.245591 0.438861 0.162461 0.329552 0.329905 0.532509 0.980784 -0.460009 0.791752 -0.152757 0.495199 -0.298502 -0.384712 0.470774 0.632609 -0.028976 0.307869 -1.064811 -0.930194 -1.142431 -0.771046 0.055141 0.048186 0.250610 -0.302175 -0.194908 -0.706097 -0.663139 0.722781 -0.176324 0.544225 0.474736 0.189582 0.595356 0.733893 -0.216968 -0.080342 -0.275672 0.201624 0.280463 -0.243621 -0.682432 0.836345 -0.596215 -0.047492 0.983262 -0.386193 0.384572 0.203349 0.216240 -0.668601 0.909231 0.096562 -0.372063 0.875639 0.785601 0.406101 -0.090838 -0.452682 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::back() = -0.008397 -0.246573 0.895952 0.610601 -0.324634 0.006583 0.198208 -0.375245 0.378198 -0.530022 -0.191743 0.058209 -0.637135 0.226888 -0.406387 0.154038 -0.936188 -0.454991 -0.227335 -0.341205 -0.041229 -0.259752 0.498420 0.175253 0.453016 0.577489 -0.318093 -0.177484 -0.601166 0.163307 0.640993 -0.197879 0.404776 0.589375 -0.090811 -1.030853 0.412296 0.355186 -0.294236 -0.413316 0.509866 -0.558752 0.040557 -0.678084 -0.271294 0.027119 -0.048043 0.367789 0.445832 -0.045308 -0.202642 0.102834 -0.084593 0.685145 -0.545175 0.194961 0.200002 -0.052804 -0.203295 -0.111265 0.039421 0.132016 0.221462 0.231932 -0.315918 -0.604835 -0.139099 -0.635676 -0.502836 0.453062 -0.111743 0.289414 -0.466477 -0.048783 -0.607324 -0.066509 0.003447 0.652213 0.652816 -0.560760 0.322140 -0.148334 -0.006989 -0.090487 0.027353 0.242963 0.185202 0.101042 0.083200 -0.192570 -0.644629 0.035679 0.098350 -0.182110 -0.108524 -0.732241 0.349078 -0.784172 -0.523219 -0.122244 0.297813 -0.309359 -0.033329 0.175274 -0.009264 0.351821 -0.248356 -0.395466 0.186418 0.111420 0.178567 -0.006893 0.003276 0.141569 -0.229667 -0.665877 -0.717884 0.242491 -0.193531 -0.149738 0.176852 0.439469 -0.342792 -0.091538 0.088378 0.228107 -0.352959 0.809632 -0.167519 0.080990 0.122422 0.053816 0.188023 -0.131344 0.375226 0.985051 -0.432748 -0.123544 -0.338909 0.003770 -0.468961 -0.565490 0.059182 0.068057 0.128792 -0.605510 -0.330053 -0.126528 -0.367975 -0.956623 -0.069082 -0.324889 -0.056454 0.553030 0.396601 0.524514 0.529919 0.994366 -0.338836 0.100445 0.067944 -0.338910 0.529507 0.314825 0.411689 -0.260471 -0.369694 0.250018 -0.342847 0.322782 -0.054156 0.216100 -0.007295 -0.697334 -0.128016 0.273067 0.370780 0.030680 0.407844 0.467234 -0.440789 -0.404481 0.212515 0.494951 -0.191091 -0.063162 0.210722 -0.497792 0.347474 0.156904 -0.165446 0.296233 0.011895 -0.258927 0.167752 -0.142929 0.249396 -0.462164 -0.126566 -0.232396 -0.029228 -0.655567 0.134590 -0.067107 -0.386123 -0.243775 -0.395180 0.608945 -0.498363 -0.335365 0.461990 0.209518 0.570083 -0.712291 0.262191 -0.390600 0.770531 0.045998 0.018993 0.119952 -0.357306 -0.506116 -0.038905 0.141303 -0.055506 0.106641 0.500583 0.446713 -0.014992 -0.052253 0.606727 -0.048236 0.649439 -0.216269 0.343087 -0.113183 -0.409487 0.398203 -0.125799 -0.258664 -0.168120 0.314282 0.983059 0.402492 0.728496 0.751362 0.228910 0.755879 -0.252597 0.093862 -0.159008 0.340813 -0.117469 -0.225802 0.192215 0.499378 -0.142994 0.246036 -0.668995 -1.319755 -0.594107 -0.759590 0.222244 -0.619260 0.127251 -0.101490 0.025463 -0.603095 -0.341820 -0.089890 -0.266642 1.022225 0.255293 0.009969 0.359334 0.584633 -0.653362 -0.051104 0.533583 0.647374 0.139489 0.132625 -0.879784 0.567020 -0.448098 -0.049169 0.926072 -0.483099 0.187158 -0.216112 0.734770 -0.422988 0.864466 0.158201 -0.535028 0.677072 0.289570 0.253021 0.766322 -0.299355 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator--() = 0.189103 -0.469855 3.113567 2.228900 -1.164902 0.105364 -0.304418 -1.523999 1.138068 0.150140 -0.505464 0.609349 -0.708100 0.456388 0.581880 1.504503 -2.909343 -0.525395 -0.505905 -1.468733 -0.811926 -0.355071 0.509514 0.230809 1.311628 1.624666 -0.932039 0.209823 0.289864 -2.201210 0.532520 -0.631639 1.025374 1.099608 0.788283 -4.002830 2.095316 0.797654 -0.742835 -1.293363 0.824259 -0.571269 0.114123 -0.797106 -0.954014 0.793475 0.241857 0.815805 1.306327 0.801677 -0.194235 0.200985 1.158112 2.163486 -0.467238 0.633726 0.637907 -1.111518 -0.635300 -0.176654 0.298655 -0.123246 0.601969 0.251909 0.054058 -2.055300 -0.188947 -0.956471 -1.087827 1.195577 0.060226 -0.905198 -1.223998 -1.084353 -0.982040 -0.523446 -1.577999 1.933530 1.780611 -1.420719 0.797175 0.093400 -0.085999 0.277263 0.514430 0.270826 1.623026 0.506629 -0.104190 0.264081 0.405062 -1.662033 1.038630 -0.202023 -0.531224 -2.040900 0.587334 -2.077211 -1.384217 0.716672 1.296505 -0.692208 -1.195508 -0.962844 0.733314 0.625198 -0.394674 -0.874275 0.261241 0.125236 -0.153723 -0.234557 -0.673952 0.026693 -0.485312 0.395307 -2.160886 0.902489 0.011441 0.161339 0.060942 1.156077 0.237145 -0.445199 -0.133843 0.933153 -0.875715 2.092179 -0.445486 1.228159 -0.218432 0.875028 0.103319 0.607527 0.925804 -0.318357 -0.377445 -1.009820 -0.911628 0.437883 -1.543268 0.241385 -0.301062 1.589149 1.881531 -0.368601 -1.402464 -0.566949 -1.671774 -2.343735 0.420414 -0.944842 -0.719252 1.451266 1.077793 0.773665 1.268070 0.658515 -1.258349 0.166344 -0.576508 -0.108937 1.543349 0.515738 1.154767 -0.906788 -0.186756 0.799387 0.050526 0.872388 0.199276 -0.185412 0.620503 -1.229495 -0.390719 1.434608 0.864375 0.319712 0.761960 1.347627 2.773683 -0.190073 -0.075248 1.184502 -0.527535 -0.393257 0.652986 -1.045353 0.468609 0.454131 0.397152 1.557164 -0.068209 -0.335443 0.072264 -0.032609 0.231225 -0.763731 0.012028 -0.555625 0.561329 -0.512678 -0.069880 -1.124479 -0.493527 -0.878120 -0.861491 1.898944 -1.984326 -1.103108 2.162919 -1.363987 1.392842 -1.716670 1.969949 -1.092154 1.207290 -0.818685 -0.560847 0.005591 -1.242837 -1.498244 0.839377 0.450540 0.199915 -0.314963 1.470844 1.038887 0.050803 -0.523156 1.445978 -0.552864 2.040452 -0.363698 1.591033 -0.663788 0.490846 -0.308280 -0.104840 -0.965063 -0.498217 0.489642 0.918050 0.150548 1.001155 0.831438 0.691484 1.495160 -0.976151 1.313551 -0.346765 0.575626 -0.791976 -0.905264 0.956609 1.320383 -0.249918 0.514075 -2.033325 -1.687766 -2.631169 -0.895547 -0.792106 0.469597 0.762104 -0.445122 -0.372018 -0.751192 -1.005452 2.228972 -0.074551 0.811189 0.778005 0.075072 1.158996 1.494922 -0.262109 -0.612251 -0.447336 0.183771 0.543660 0.091236 -1.903365 1.940043 -1.059963 0.019046 2.243962 -1.160173 0.568964 -0.291524 1.544302 -1.304148 1.462182 0.167144 -1.016083 1.098601 1.631534 0.546835 0.197818 -0.955109 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator*() const = -0.148122 -0.189396 0.772426 0.558679 -0.116434 0.038016 0.063439 -0.360402 0.356672 0.161255 -0.070991 0.136224 -0.324044 0.153834 -0.071630 0.437590 -0.519722 -0.253456 -0.157096 -0.399789 -0.172265 -0.130819 0.278294 -0.063114 0.376824 0.171534 -0.286900 -0.096927 -0.233652 -0.582860 0.165327 -0.181041 0.288195 0.009349 -0.025675 -0.902704 0.495757 0.337272 -0.256214 -0.334375 0.318031 -0.202704 0.088760 -0.133750 -0.174664 0.147900 0.022552 -0.086673 0.370135 0.242501 0.243467 0.121845 0.252753 0.629159 -0.311200 0.222003 0.120872 -0.167855 -0.222724 -0.002870 0.076933 0.043354 0.193603 0.084308 -0.015506 -0.530118 -0.151375 -0.226166 -0.394216 0.263784 -0.184160 -0.166673 -0.292094 -0.201104 -0.252654 -0.179180 -0.355741 0.299951 0.500878 -0.350478 0.269971 0.001190 -0.061426 0.034767 0.070960 0.113454 0.212914 0.119612 0.003418 0.003573 0.214528 -0.067463 0.180234 0.223322 -0.166103 -0.407262 0.333821 -0.301135 -0.402618 0.166204 0.310995 -0.131427 -0.363196 -0.124287 0.013230 0.252298 -0.239744 -0.326572 -0.016972 0.032761 0.198570 -0.094899 -0.136702 -0.191288 -0.182960 -0.039575 -0.531968 0.156350 -0.084909 -0.109840 -0.168333 0.303961 -0.034217 -0.091422 -0.006455 0.317815 -0.277745 0.545494 -0.112019 0.397503 -0.123538 0.221327 -0.323724 -0.072731 0.295267 0.138103 -0.186989 -0.105597 -0.343344 0.006751 -0.349629 0.037066 -0.043692 0.309377 0.604841 -0.184174 -0.304298 -0.066890 -0.268839 -0.691377 0.082217 -0.285596 -0.056615 0.271317 0.295547 0.170281 0.387133 0.607993 -0.283855 0.056644 -0.088509 -0.246957 0.451290 0.031104 0.329070 -0.222038 -0.198147 0.185892 0.105310 0.183237 0.091060 0.062745 0.094846 -0.402503 0.016578 0.287886 0.185006 -0.079232 0.229307 0.313429 0.619017 -0.141723 0.041984 0.333394 -0.141595 -0.008043 0.094992 -0.373052 0.092638 0.140711 -0.059917 0.332822 0.025733 -0.157253 0.118210 -0.180132 0.130911 -0.283074 0.125300 -0.205873 0.094246 -0.233167 -0.087428 -0.193651 -0.161291 -0.119874 -0.169420 0.483131 -0.374955 -0.219831 0.412406 -0.028105 0.170191 -0.491906 0.596639 -0.310136 0.416123 -0.233516 -0.044914 -0.003071 0.001902 -0.318326 0.095470 0.140370 -0.018594 0.050557 0.532188 0.272587 -0.029460 -0.138917 0.457636 -0.125524 0.517796 -0.086035 0.454299 -0.108458 -0.081877 0.064028 -0.069936 -0.237288 -0.188604 0.097436 0.326563 0.161096 0.135359 0.218580 0.173985 0.541780 -0.236441 0.392319 -0.029447 0.305233 -0.151970 -0.161155 0.239679 0.384005 -0.081946 0.162451 -0.508490 -0.519818 -0.428000 -0.373939 -0.002747 0.125020 0.111055 -0.144343 -0.054902 -0.277843 -0.312517 0.502632 -0.138024 0.425544 0.161168 0.090311 0.289838 0.401430 -0.168176 -0.105924 -0.129934 0.086036 0.165959 -0.048271 -0.341386 0.430448 -0.314704 -0.079551 0.467427 -0.262017 0.128096 0.098857 0.261031 -0.317417 0.516437 0.054909 -0.111612 0.560639 0.379847 0.394322 0.038312 -0.206563 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::pop_back() = 1.531601 -0.726389 7.058717 4.616921 -2.107732 0.257746 0.004012 -4.104898 3.131025 0.453635 -1.350390 0.645213 -1.708091 1.141820 -1.536738 3.192971 -5.879440 -1.334698 -1.719239 -3.890558 -1.708611 -0.979198 1.734762 -0.226318 3.287229 2.529010 -1.843830 0.098942 -0.339394 -4.781523 1.520401 -1.036631 1.279126 0.364554 1.126782 -6.207301 4.805463 2.330465 -1.901161 -2.543264 2.132601 -1.162479 -0.892695 -1.120461 -0.972344 1.130432 -0.254040 3.222939 2.963361 1.914936 0.493258 1.208572 2.247870 5.767773 -1.898238 1.774932 1.157987 -1.073647 -0.892106 1.126813 0.496195 0.492730 0.308800 0.580121 1.036962 -4.363075 -0.306632 -1.664735 -1.526566 3.154214 -0.459868 -2.420158 -2.544776 -1.927146 -2.637573 -0.446745 -5.742516 3.991430 3.839007 -3.202917 1.340646 0.226595 -0.348165 0.194578 0.291856 0.236841 3.162071 1.098311 0.352880 -0.518115 -0.022465 -2.089128 2.109440 -1.810212 -1.861532 -6.368183 2.387753 -5.482241 -3.299693 0.948393 3.234088 -2.339073 -0.459997 -0.965421 0.886316 0.456679 -0.915311 -1.835055 0.916716 0.782702 0.121680 -0.175863 -0.412644 -0.456671 -0.229099 1.148153 -4.629237 2.162954 -0.512908 0.488549 -0.250834 2.452596 1.119701 -1.359873 0.012380 2.233063 -1.612227 3.685656 -1.292435 3.155864 -0.930147 3.501558 -0.256402 2.556561 2.553933 -1.742102 -0.780716 -0.183734 -1.895750 1.177831 -3.494674 0.866622 -2.181796 2.394518 2.318611 -1.878491 -2.868449 -0.776544 -3.085737 -4.226959 0.718689 -1.809773 -3.492568 1.029662 2.355177 2.857304 2.788689 1.384580 -2.874789 -0.296928 -0.602185 -0.110480 2.907200 -0.232935 2.343096 -1.801380 -1.106189 1.196220 0.013163 1.539957 -0.177449 0.192003 0.890926 -3.313101 0.371487 2.403411 1.722303 -0.468463 2.052098 3.493972 3.742716 -1.371685 0.239085 3.033481 -1.866917 -0.751311 1.280619 -2.977973 1.074397 1.225329 2.164945 3.385787 0.127106 0.289430 0.619473 -0.799443 0.633277 -1.699984 -0.638351 -1.418336 -0.360734 -1.201489 1.285897 -1.901753 -0.717502 -1.554611 -2.615649 3.629991 -4.856256 -1.743409 5.288503 -2.267192 1.709611 -2.745926 4.122212 -2.131151 1.954953 -0.292423 -0.116670 -0.027837 -1.690526 -3.910043 1.463389 0.692935 -0.058055 0.768365 3.653249 2.098333 0.316710 -1.238797 3.684215 -2.669262 4.363777 -1.590772 3.431130 -1.306267 -0.942737 -0.633763 -0.342461 -2.658646 -2.024862 1.747008 2.843530 0.068190 2.344066 1.896592 1.101686 4.058450 -1.822522 3.560025 -0.788843 0.285903 -1.816006 -1.822443 2.769337 1.481261 -1.140719 1.499930 -4.687216 -3.895224 -6.138298 -2.102114 -0.253024 -1.852790 1.643117 -1.596957 -1.145488 -2.212297 -3.225382 4.611174 -0.357213 -0.131782 2.307336 0.342854 2.015164 3.559269 -0.892033 0.641674 -0.895408 1.134642 1.400014 -1.192091 -3.377629 4.410788 -1.978557 -0.314694 5.140428 -2.295494 1.758173 -0.437284 2.077797 -3.094235 2.882261 0.354889 -1.723387 2.458593 3.822736 2.236363 1.216717 -1.978867 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_pop_back_aux() = 2.418695 -0.605600 8.449298 5.684099 -2.994820 0.291814 -0.770123 -5.172990 3.391475 -0.060291 -1.446978 1.342140 -1.364492 1.862308 -2.549783 4.301842 -7.280482 -1.057710 -2.262427 -4.919105 -2.395485 -0.324142 1.774780 -0.463921 3.931103 3.362122 -2.348063 0.239729 0.065746 -5.556669 1.492423 -1.166351 1.153441 -0.308678 1.432830 -7.646484 5.833763 2.765361 -2.580962 -2.968261 2.618415 -1.608242 -1.051168 -1.837015 -1.569710 0.875695 -0.747331 3.738212 3.342280 2.350245 0.226594 2.738649 3.284342 7.799255 -2.092582 2.232185 1.680281 -0.970779 -1.214721 1.231618 0.719854 1.080436 0.092244 -0.166195 1.666849 -5.828691 -1.348318 -1.914300 -0.833741 3.231877 -0.674292 -3.095589 -3.134122 -2.405127 -3.597650 -0.809559 -8.820068 4.952892 4.061265 -4.573266 0.888780 0.054273 -0.757618 0.904718 0.872620 0.497901 3.807367 1.645746 0.895431 0.042703 1.129212 -1.989402 3.287068 -3.187267 -2.821001 -9.689949 2.891043 -7.160275 -3.940077 1.562085 4.282776 -2.898591 0.440498 -2.193614 0.779012 0.314068 -1.833978 -1.837542 1.691191 0.867355 1.105890 -0.603151 -0.340399 -0.645960 0.501897 1.645963 -5.701457 3.234805 -0.308843 1.246902 0.084371 2.952474 2.351378 -2.249605 -0.577140 2.474984 -2.350288 4.854921 -2.149090 3.886326 -2.403490 5.320570 0.225896 4.092968 3.234728 -3.311892 -1.347556 0.071743 -2.485461 1.519183 -4.060906 1.235752 -2.740655 2.895641 2.259826 -1.530598 -3.423528 -1.104048 -4.215804 -5.022835 0.792876 -1.824085 -4.925926 1.472503 2.806849 3.497298 3.639246 0.278033 -2.685188 -1.017661 -0.811277 0.330231 4.124793 -0.566176 2.728358 -2.114796 -1.286804 1.812700 -0.288306 1.956777 0.004570 0.778856 1.353400 -3.503041 1.268859 2.809632 2.646305 -0.893267 2.947268 4.128979 4.121707 -0.899920 0.106332 3.327971 -2.828249 -0.492154 1.072128 -3.093309 0.794579 1.802659 2.681125 4.147627 0.147003 0.675234 0.599072 -0.721014 0.967436 -1.519651 -0.925194 -1.591825 -1.183680 -1.101499 2.187420 -2.043720 -0.466993 -2.221192 -4.011259 4.414152 -7.634722 -0.924569 6.301812 -2.665569 1.818156 -2.538729 5.059904 -2.655154 2.621989 0.137183 -0.117942 0.297442 -2.224461 -5.411759 2.146452 1.157884 -0.302013 -0.000358 3.936417 2.511088 0.348560 -1.747889 4.326890 -3.773921 5.580896 -1.919977 4.690573 -1.697247 -1.115617 -0.703240 -0.234074 -3.706531 -2.910002 2.726150 3.468295 -1.012380 3.504890 1.537900 1.321286 5.124534 -2.583171 4.452829 -1.414588 -0.473072 -2.386729 -2.203876 3.427185 1.847750 -0.742534 1.413303 -5.524610 -4.108287 -9.060203 -1.032670 0.339137 -2.026379 1.574532 -2.371162 -1.747318 -2.370865 -4.208818 6.268814 -0.963052 -1.817529 3.160859 0.630579 2.437616 4.072985 -0.647048 1.087179 -1.438013 1.060300 2.433384 -1.054132 -4.147260 5.602179 -2.072626 -0.829220 6.244432 -2.439525 2.337143 0.436508 2.111327 -2.962061 3.040167 0.031589 -2.206230 2.627376 5.850844 2.144766 1.392426 -2.381593 diff --git a/src/test-suite/oracle/SYM_llvm14_onDemand/ir2vec.txt b/src/test-suite/oracle/SYM_llvm14_onDemand/ir2vec.txt deleted file mode 100644 index 324ca9de1..000000000 --- a/src/test-suite/oracle/SYM_llvm14_onDemand/ir2vec.txt +++ /dev/null @@ -1,269 +0,0 @@ -PE-benchmarks/strongly-connected-components.cpp__main = 0.213622 -0.496410 1.338185 0.698023 -0.773468 -0.230497 0.076604 0.011047 0.548748 -1.703938 -0.700975 0.288442 -0.700732 0.402115 -0.574183 0.008423 -2.078304 -0.930803 0.233350 0.138544 -0.014337 -0.398520 0.725976 0.419502 0.478136 1.691654 -0.472722 -0.110013 -0.470166 1.016805 1.471379 -0.763688 0.644006 1.722261 0.049229 -2.143311 0.410447 -0.283259 -0.342911 -0.759299 0.445942 -0.742570 0.194803 -1.943887 -0.659110 -0.020025 0.556614 1.474896 0.462329 -0.197524 -1.425206 -0.385853 -0.481121 1.068822 -0.572783 -0.093279 0.606482 -0.251408 -0.153686 -0.691526 0.373641 -0.222513 0.339417 0.828060 -0.625522 -0.685274 -0.171827 -1.587107 -0.735407 0.710549 0.290100 1.593708 -0.795285 0.319244 -1.034716 0.074954 0.567685 1.411691 1.381744 -0.939074 0.617500 -0.095294 0.866658 -0.000283 -0.216580 0.689436 0.201182 0.380817 -0.336138 -0.263929 -1.657716 -0.197782 -0.029828 -0.956547 0.466015 -1.409468 0.097209 -1.616700 -0.423943 -0.183280 0.256193 0.041613 0.468900 0.195515 0.584541 0.746401 -0.437941 -0.358386 0.465028 -0.537662 -0.230408 0.223162 0.420512 0.881047 -0.407913 -1.230066 -1.131087 -0.033088 -0.216577 -0.462009 1.234371 0.476313 -0.762511 0.098353 -0.000679 -0.018642 -0.410906 1.404454 0.358646 -0.390688 0.391448 -0.345838 1.073783 -0.063035 0.587006 2.292201 -0.691160 -0.655681 -0.249009 0.108479 -0.605486 -1.887849 0.332868 -0.261145 -0.283453 -1.055826 -0.870269 -0.645459 -0.680884 -1.466194 -0.113271 -0.697817 0.036059 1.577946 0.638051 0.844597 0.924416 1.352965 -0.691147 0.645478 -0.226829 -0.034751 0.520550 0.934217 0.597361 -0.253252 -0.142621 0.440847 -0.760662 0.524069 0.102626 -0.569733 0.274717 -1.194342 -0.497403 0.644152 0.999690 0.260732 0.209395 0.190677 -1.838952 -0.655869 -0.016248 0.816363 0.269011 -0.462074 0.697263 -0.628648 1.055611 -0.130849 -0.166065 -0.198807 0.091590 -0.759315 0.218649 0.098526 0.177156 -0.365248 -0.705272 -0.062289 -0.042372 -0.988633 0.906768 -0.385300 -0.435211 -0.464570 -0.607468 0.910177 -1.102211 -0.513770 0.389758 0.257098 1.734752 -1.069708 -0.302081 -0.662716 1.722033 0.408333 -0.108181 0.245400 -1.484616 -0.498602 -0.271520 0.317052 0.324968 -0.221714 0.108239 0.851665 0.097940 0.362948 0.816931 0.294212 0.791825 0.254263 -0.258705 -0.317898 -0.640842 0.753351 -0.109596 -0.125203 0.050078 0.731106 1.575130 0.581835 1.622031 2.061048 0.226513 0.806072 -0.642126 -0.800359 -0.413748 0.995081 -0.244883 -0.305052 -0.220366 1.063667 -0.498919 0.377997 -0.854913 -2.615006 -1.574037 -1.054997 -0.377058 -1.240888 0.065875 -0.263903 0.394655 -0.729561 0.085163 -0.613003 -0.293182 1.839774 0.575129 -0.314985 0.659821 0.702043 -1.443026 -0.969016 1.484754 1.236807 0.043376 1.005909 -2.179902 0.621589 -1.009117 -0.061031 1.787386 -1.077639 -0.347724 -0.567830 1.810964 -0.412647 1.558241 0.633299 -1.525617 0.496701 0.019314 0.158251 1.917888 -0.613980 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/z-algorithm-linear-time.cpp__main = 0.481100 -1.658956 8.679443 3.572307 -1.860673 -0.079924 5.520775 -4.169525 5.036607 -1.363471 -1.777382 -1.495800 -6.020859 0.026236 -2.646865 0.889150 -8.009808 -4.051246 -0.722379 -3.952180 -1.665192 -4.235573 5.358574 0.024056 4.796911 2.826192 -1.267347 -2.954508 -3.657446 -1.591639 6.316500 -1.704813 2.166747 3.641952 0.101763 -9.924644 4.416561 1.063189 -2.361790 -2.834789 3.845716 -1.315558 -0.557559 -1.501463 0.752750 0.598779 1.679351 8.502127 5.160589 1.976970 0.449625 -3.217405 -1.091556 7.797892 -4.452681 1.938743 1.687217 -1.120750 -0.856048 2.914709 -0.257792 -1.710170 0.664613 4.020986 -1.357440 -2.253237 2.668382 -5.673845 -5.288727 5.812456 0.625702 -0.162271 -3.620949 -1.044043 -2.882238 -0.031849 -3.724199 5.597252 7.596114 -4.170038 4.696974 -0.249074 2.124531 -2.400756 -1.344509 0.388497 2.245975 0.005929 -1.745312 -3.192017 -7.736122 -1.854078 -0.571704 -2.046247 0.988620 -7.047852 3.273899 -4.630901 -5.154442 -0.342099 2.383795 -2.162537 -1.687965 3.273785 1.952607 1.247034 -2.106602 -4.914923 -1.365331 0.556635 -3.656460 2.695082 1.136075 0.570311 -3.239348 -3.588644 -5.496564 0.605960 -1.829250 -2.459795 -1.242045 4.038083 -3.004669 1.622756 2.729904 2.856756 -1.392210 4.673484 0.928474 0.934462 3.695510 0.632216 -1.734226 0.167264 3.522292 7.276842 -0.147667 -0.360103 -1.960263 1.189310 -5.543382 -2.253974 -0.879725 2.129091 1.746189 -6.552372 -4.650478 0.357120 -0.838080 -7.207088 1.717970 -3.311472 -2.033145 0.758588 3.002485 4.716005 2.747641 6.538729 -5.252106 2.455640 -0.561339 -1.754355 1.380864 2.455081 4.682163 -2.767970 -2.079442 -1.246481 -1.092592 1.713449 -1.246121 -1.489453 -0.247759 -7.715983 -2.580930 -0.086449 2.299370 -1.493043 0.216422 4.749172 1.453695 -6.262863 -0.021753 5.506449 -0.426201 -2.560342 3.485021 -5.632004 4.159821 0.467510 0.470411 2.858845 0.860121 -1.882986 2.259607 -1.938403 1.005795 -3.286819 -3.008656 -2.248197 -1.043107 -3.954656 2.265407 -2.456067 -2.804467 -1.270768 -2.127859 4.610900 -1.574234 -4.169873 6.416483 -1.688925 4.324014 -6.193310 6.720028 -2.318795 2.075404 -1.061500 -0.001060 -0.968412 -0.294892 -2.056255 0.807223 -1.229165 0.658603 4.210362 7.203611 3.024729 2.296528 0.098857 6.378944 -1.765388 3.219828 -1.504269 2.481512 -2.412815 -4.610100 1.616533 -0.847493 -1.250349 -1.171319 1.933584 7.682189 4.142809 2.338893 7.230569 1.516357 5.242835 -1.652183 1.774942 0.197187 4.347699 -1.830919 -2.436297 2.767509 1.939520 -3.425495 2.962007 -6.682047 -10.189865 -2.465804 -8.541089 -1.002363 -5.732367 2.330768 -1.121080 0.452694 -5.461189 -1.925402 -0.137554 -0.351819 4.462628 3.129814 0.085793 3.691635 6.897016 -4.583575 0.280359 3.775088 5.176063 -1.159972 -1.487511 -5.876693 3.303631 -5.395596 1.406099 6.550719 -2.827599 0.694011 -4.522400 6.655689 -6.693529 5.782239 1.773858 -2.772407 4.992396 2.280655 5.144938 6.143545 -2.112574 -PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.469629 -2.608704 6.412828 2.978221 -1.268066 0.510474 3.886778 -1.284850 1.859965 -0.921002 -1.661360 0.171431 -4.924555 -1.174197 -0.370652 -1.074080 -5.729659 -3.532580 -0.367754 -1.223912 -1.296379 -3.327839 1.585113 3.401935 3.183685 3.465932 -1.410427 -1.313955 -3.771044 -0.738911 2.557245 -0.433878 2.284916 4.932246 1.959583 -6.432836 2.504567 1.910183 -0.412325 -2.319483 2.248722 -0.965677 -0.149151 -1.468318 -0.476910 1.412320 2.786110 5.757707 2.527666 0.679820 -1.102695 -4.031419 -0.106143 4.357657 -0.369963 1.902628 3.094539 -1.153660 1.065861 0.241073 -0.335487 -3.130076 0.582654 2.261371 -2.174238 -0.086633 2.523867 -4.039260 -2.929897 3.947495 1.695866 -0.296179 -2.753838 -2.055768 -3.250850 -0.042881 0.276969 4.287356 5.522736 -3.485568 4.438315 1.115236 2.830980 -0.957212 -0.169313 0.112156 1.912143 0.003058 -1.717117 -1.433393 -7.814850 -2.742763 -1.635083 -0.926192 -0.170156 -3.062013 1.814810 -5.674939 -4.686761 0.280901 0.092098 -2.255009 -0.995874 2.762454 1.812364 0.794608 -0.203786 -3.393976 -1.449466 1.270150 -3.936178 2.057670 0.675444 2.140033 -2.018102 -2.136881 -4.469713 1.491771 0.176997 -1.993376 0.120771 3.884122 -2.427945 3.519250 2.097242 1.253725 -0.323123 3.656263 2.799762 -0.881239 2.389567 -1.672625 -0.363363 -0.611037 1.520017 4.956544 -1.417876 -1.550871 0.421586 1.219638 -2.269969 -1.053214 -0.576755 2.692862 0.167192 -4.972341 -3.965089 -1.957275 -3.020902 -4.802835 0.858467 -1.731716 -1.568495 1.816930 2.036004 3.446901 0.349777 4.580524 -3.113333 1.724437 0.216952 -1.542905 -0.884579 1.776971 2.868809 -2.546434 -1.700303 0.428161 -0.282375 2.169849 -0.762569 -1.489966 0.203342 -4.548040 -3.206255 0.499961 0.915535 0.576665 1.497659 4.076165 1.408848 -3.992080 -0.490956 2.602254 -0.113363 -2.307607 2.669223 -3.753563 3.497101 -0.104135 -0.305713 3.253381 0.426772 -1.323081 2.787907 -0.746920 0.483497 -3.413891 -0.886959 -1.570790 0.125049 -3.232301 0.856126 -2.494837 -1.973579 -1.943954 -2.123915 4.341486 -1.313686 -4.123400 3.314600 -0.033692 4.402417 -4.990083 3.782647 -1.287943 2.988055 0.140074 -1.479578 -0.165259 -1.932774 0.029233 0.268993 -0.917428 -0.239936 2.235522 3.448733 1.750071 1.618351 1.006519 3.410998 -0.250398 1.918891 -1.457345 0.238622 -1.438320 -2.785586 0.586646 -0.557994 0.226400 1.269098 0.127887 4.178653 3.649250 1.775443 4.698137 1.974329 2.187380 -1.182909 -1.139882 0.120247 4.109086 -2.526214 -2.542675 0.259613 1.796092 -1.504303 1.555764 -5.363738 -7.042037 -2.113509 -6.901780 -2.379651 -3.746239 1.865489 0.610743 -0.220459 -3.990641 -1.697590 0.440778 0.466836 4.267994 2.335924 -0.295031 4.154077 4.482075 -2.516873 -0.926098 4.119153 3.779270 -1.564874 0.185637 -5.282855 2.125882 -3.913375 2.366566 5.168074 -2.914053 1.728783 -3.774721 5.011253 -5.921567 5.190759 1.697131 -4.738429 1.774194 1.400969 2.574340 2.441658 -2.278795 -PE-benchmarks/mergeSort_LinkedList.cpp__main = 0.037066 -0.634699 1.666349 0.934805 -0.846431 -0.119282 0.426055 -0.246173 0.908641 -1.695842 -0.713960 0.140446 -1.227832 0.464402 -0.678990 0.058484 -2.497742 -1.182967 0.197616 -0.107241 -0.036329 -0.760329 0.958923 0.475731 0.630037 1.684465 -0.523788 -0.305612 -0.857605 1.119510 1.877852 -0.885951 0.844758 1.898461 -0.088653 -2.971553 0.629162 -0.135427 -0.520433 -0.969090 0.701467 -1.233888 0.333995 -2.138688 -0.692500 -0.061075 0.541382 1.838194 0.818834 -0.306526 -1.336592 -0.438346 -0.573322 1.748926 -1.099749 0.113474 0.591829 -0.257758 -0.335111 -0.488934 0.297990 -0.184309 0.600424 1.098595 -0.960805 -0.871807 -0.108307 -1.877288 -1.176812 1.022349 0.253120 1.689826 -1.117035 0.407892 -1.318482 -0.067178 0.265145 1.752190 1.829887 -1.233895 0.951547 -0.124265 0.926944 -0.059279 -0.011084 0.749550 0.574474 0.282063 -0.502056 -0.468985 -2.199202 -0.178902 -0.012290 -1.085161 0.549011 -1.893003 0.136499 -1.814035 -0.840652 -0.242165 0.254071 -0.069730 0.245408 0.297481 0.752972 0.893197 -0.656940 -0.869823 0.332852 -0.327755 -0.407818 0.210327 0.521237 0.692642 -0.545840 -1.783236 -1.466345 -0.082145 -0.312852 -0.660933 1.017805 0.894168 -1.044071 0.147222 0.196373 0.107933 -0.526855 1.761826 0.192032 -0.344962 0.658478 -0.443080 0.776168 -0.115207 0.743653 2.897820 -0.710671 -0.602906 -0.409112 0.139316 -0.980239 -2.068805 0.454200 -0.052641 -0.200245 -1.386616 -0.900025 -0.636836 -0.525502 -1.943540 0.006708 -0.876699 0.059567 1.607342 0.926087 1.127333 1.201820 1.779915 -0.965379 0.865081 -0.258413 -0.137101 0.869281 1.137252 0.913191 -0.440013 -0.406201 0.402004 -0.771068 0.650294 -0.065817 -0.488802 0.143239 -1.566559 -0.651150 0.523491 1.160663 0.251737 0.512597 0.464467 -1.606317 -1.270509 0.312753 1.100754 0.189929 -0.390993 0.695685 -0.993540 1.310018 0.062285 -0.389436 -0.020200 0.046527 -1.047898 0.220983 0.035066 0.370103 -0.709829 -0.850962 -0.275763 -0.226991 -1.348470 0.926207 -0.452654 -0.848914 -0.595315 -0.649924 1.226190 -1.220426 -0.755505 0.787464 0.124133 1.969682 -1.592772 0.302550 -0.910392 1.830536 0.140699 -0.152231 0.186398 -1.178452 -0.660813 -0.187353 0.379672 0.169050 0.121797 0.576997 1.115115 0.360518 0.414918 1.210273 0.389317 0.845842 0.026602 0.046511 -0.399478 -0.806620 0.968162 -0.293417 0.010270 0.158160 0.932486 2.199521 1.057462 1.742206 2.459033 0.558556 1.087103 -0.676590 -0.681867 -0.553036 1.192866 -0.277174 -0.354809 -0.220837 1.062586 -0.597322 0.604252 -1.314273 -3.250236 -1.619652 -1.400007 -0.203707 -1.417958 0.127507 -0.134825 0.601502 -1.399404 0.002018 -0.775263 -0.524056 2.111385 0.636700 -0.219082 0.869715 1.180442 -1.680793 -1.023906 1.748910 1.457942 -0.120471 0.924258 -2.513375 0.912638 -1.403643 0.238845 2.039531 -1.235172 -0.349798 -0.735673 2.259542 -0.713425 2.009810 0.806223 -1.599874 0.901756 0.314634 0.513304 2.222996 -0.751361 -PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.185067 -0.640419 2.800953 1.809203 -0.386163 0.168985 0.504550 -1.310831 1.403459 0.101989 -0.273256 0.527102 -1.066971 0.544867 -0.787177 1.179277 -2.122705 -1.106551 -0.466758 -1.490972 -0.720760 -0.525469 0.828419 -0.103440 1.308030 0.262460 -1.033957 -0.556473 -1.195126 -1.254030 1.027063 -0.628115 0.837042 -0.436397 -0.036738 -3.851025 1.683092 0.942568 -0.892919 -1.242053 1.073719 -0.981950 0.138210 -0.790408 -0.496871 0.117499 0.170961 0.685653 1.305634 0.610687 0.354651 0.639519 0.321900 3.294890 -1.340987 0.820974 0.570987 -0.426070 -0.710825 0.371043 0.254436 0.031173 0.624439 0.368819 -0.137489 -1.771253 -0.242458 -1.019783 -1.151098 1.098494 -0.009086 -0.419691 -0.964031 -0.303423 -1.409755 -0.605807 -1.091860 1.388435 1.890922 -1.487458 1.014097 -0.033857 0.317638 0.287222 0.392116 0.386569 1.158552 0.384142 -0.154692 -0.452407 -0.703012 -0.013868 0.416267 -0.001794 -0.433394 -2.475914 1.039427 -1.526397 -1.543004 0.480262 1.023925 -0.546049 -0.978935 -0.458509 0.475368 0.695211 -0.910553 -1.216049 -0.336788 0.271346 0.088387 -0.233877 0.151604 -0.840719 -0.357762 -0.623103 -1.927537 0.580749 -0.136947 -0.225737 -0.756489 1.320485 -0.461822 -0.310484 0.017398 1.051844 -0.966026 1.585702 -0.411402 1.021513 -0.142475 0.583826 -1.307127 -0.017456 0.994977 1.086992 -0.584147 -0.202407 -1.135842 0.319565 -1.362121 -0.058412 -0.228084 1.149602 1.184900 -0.957126 -1.167299 -0.449402 -0.362815 -2.027326 0.269506 -0.921292 -0.807193 0.640314 1.144314 1.130446 1.338218 1.652842 -0.938922 0.737251 -0.279323 -0.444506 1.513268 -0.208114 1.172868 -0.845751 -0.719705 0.396711 0.161481 0.744199 0.009579 0.075818 0.329106 -1.631400 -0.285840 0.347500 0.866566 -0.285228 0.935816 1.238461 1.654607 -1.672344 0.209959 1.219180 -0.695078 -0.099977 0.331202 -1.326510 0.426811 0.627339 -0.177718 1.398944 0.117893 -0.915357 0.374714 -0.294445 0.467147 -0.786194 -0.087205 -0.718851 -0.363638 -0.731024 0.062176 -0.913019 -0.518840 -0.817624 -1.139556 1.761278 -1.786525 -1.219677 1.759236 -0.431585 0.808854 -2.180153 2.143490 -1.107080 1.211097 -0.577812 0.008256 -0.167328 0.355730 -1.508064 0.744576 0.481490 -0.496020 0.596542 2.050174 1.018255 0.501855 -0.444667 1.696162 -0.569900 1.539247 -0.496848 1.539548 -0.629561 -0.890249 0.098116 -0.268672 -0.554580 -0.498080 0.861912 1.264783 0.581663 0.852182 1.068356 1.086760 1.804342 -0.867924 1.077609 -0.397595 0.878117 -0.553890 -0.574098 0.729122 0.870042 -0.335256 0.699194 -2.006565 -2.159615 -1.913006 -1.562551 0.402537 -0.231158 0.142457 -0.520440 -0.142896 -1.728144 -0.971839 0.987040 -0.471468 1.050022 1.009815 0.291651 1.076614 1.554050 -0.932351 -0.244914 0.067092 0.483562 0.381183 -0.452656 -1.583751 1.621586 -1.303716 0.131182 1.949747 -0.843973 0.463917 0.194843 1.105468 -1.143200 1.977178 0.372836 -0.825229 1.435545 1.520012 1.674216 0.507467 -0.831835 -PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -1.024922 -1.422594 6.369258 4.243229 -0.755316 0.628617 0.536529 -3.164385 2.998655 1.041908 -0.827022 1.536463 -2.348828 0.663355 0.138034 2.410044 -4.872022 -2.492884 -0.939024 -3.189799 -1.697173 -1.582419 1.071275 0.695565 2.764766 1.188389 -2.516889 0.037354 -2.514485 -4.818730 1.059220 -1.260995 2.250141 0.174894 1.027999 -8.065782 4.237095 2.530865 -1.380125 -2.976813 2.076577 -2.102001 0.226572 -1.006217 -0.885269 1.540486 0.817315 0.745493 3.125002 1.325473 0.822487 0.514596 0.615729 4.842213 -2.128010 1.890755 1.249405 -2.029486 -1.590298 0.363144 0.331037 -0.719765 1.921079 1.100345 -1.236265 -3.839221 0.632189 -1.534461 -2.989362 2.796373 0.522407 -2.122793 -1.999853 -1.531160 -2.813500 -1.332218 0.843690 2.770933 4.294331 -2.094427 2.677033 0.085094 0.806474 0.328943 1.607996 0.232222 3.951665 0.627983 -0.998149 -1.036915 -1.736364 -1.887894 0.643340 2.092467 -0.726138 -2.021629 1.540443 -4.272729 -3.701755 0.973734 1.986223 -1.378691 -4.391122 -0.567409 2.076658 1.473762 -0.488923 -2.850280 -0.714556 1.016446 -1.398319 -0.616602 -0.707802 -1.889208 -1.501289 -0.131330 -4.392481 1.290758 0.192962 -0.371361 -2.105172 3.108285 -1.214019 -0.292982 0.172788 2.528046 -1.676588 3.007786 -0.923778 2.240907 0.279274 0.197742 -2.629378 -0.568618 1.397695 1.098441 -1.469061 -1.610063 -2.089219 0.717980 -3.343761 0.480300 -1.383655 3.876097 3.941885 -1.895346 -2.823231 -1.068212 -1.578889 -4.562858 0.757615 -2.040976 -1.791582 1.031152 2.557792 1.662970 2.484536 3.616804 -2.290655 1.751771 -0.415307 -0.941768 3.417192 -0.532882 2.773154 -2.349936 -1.210897 1.471050 0.719392 1.574026 -0.063879 -0.201671 0.879510 -3.445992 -1.987559 1.948587 1.164564 1.159805 2.094487 2.963652 6.272575 -3.226004 0.459300 2.523696 -1.043677 -0.630018 0.993892 -2.683905 0.897736 1.351121 0.536551 4.359662 0.113446 -2.247231 0.318130 0.291366 1.030773 -2.478015 0.615819 -1.678429 1.195855 -1.123209 -1.559939 -2.530736 -1.409930 -2.148850 -2.145415 4.199631 -2.420204 -4.851749 4.552069 -2.299935 3.084178 -5.974782 3.383886 -2.555499 2.535630 -2.148954 -0.115648 -0.455033 -0.454620 -3.109824 2.451249 0.970524 -0.759452 1.601425 4.101297 2.169192 1.287238 -1.154529 3.106597 -0.712399 3.458984 -1.095305 3.366352 -1.268243 -0.422027 -0.495975 -0.615335 -1.192701 -0.248361 0.776097 1.179054 1.869695 1.085738 2.043876 2.672261 3.271849 -1.836290 2.635972 -0.630599 1.874582 -1.285811 -1.979911 1.657313 2.033252 -0.468303 1.498396 -4.743753 -4.259137 -3.196592 -4.991677 -0.312908 0.682584 1.094923 -0.253342 -0.393394 -3.416452 -1.782529 3.579926 0.193635 4.941445 1.684864 0.481580 2.422658 3.368448 -1.547314 -1.224344 -0.706841 0.429969 0.144336 -1.182175 -3.643201 3.772808 -2.593547 1.151314 4.247737 -2.462900 1.203883 -0.761298 2.473804 -3.284285 4.097332 0.889927 -2.017939 2.836635 2.133255 3.333130 -0.187742 -2.108506 -PE-benchmarks/longest-palindrome-substring.cpp__main = 0.148138 -0.810116 5.238960 2.028590 -1.073212 -0.255108 3.364431 -2.222411 2.653137 -0.785709 -0.841352 -1.192685 -3.493942 -0.120775 -1.318297 0.411926 -4.541470 -2.404193 -0.748387 -2.399746 -1.215694 -2.322552 3.172497 -0.000326 2.894434 1.646673 -0.949599 -1.934161 -1.742471 -1.006798 3.661856 -0.774396 1.314236 2.262324 0.022486 -6.160788 2.714798 0.567084 -1.377089 -1.065433 2.436243 -0.411390 -0.323351 -0.718949 0.130354 0.436493 1.067521 4.917619 2.966635 1.333352 0.496886 -2.040426 -0.501474 4.852371 -2.338258 1.028609 1.156891 -0.523893 -0.455034 1.655306 -0.378636 -1.171134 0.083139 1.992889 -0.626675 -0.979872 1.787580 -3.534567 -2.966494 3.426002 0.252775 -0.469497 -1.954505 -0.978275 -1.669646 -0.018442 -2.072025 3.296765 4.149844 -2.861608 2.495140 -0.092727 1.173526 -1.075280 -1.402376 0.207951 0.795016 -0.091188 -0.666497 -1.882819 -4.576966 -1.269573 -0.629991 -1.450660 0.288934 -4.389971 2.096902 -2.640094 -2.976007 -0.196226 1.320898 -1.434650 -1.019387 1.754638 0.926748 0.425173 -0.955692 -2.615520 -1.055140 0.470028 -2.001277 2.002353 0.621993 0.414880 -1.838583 -1.978243 -3.478176 0.987163 -1.183329 -1.274999 -0.783576 2.411814 -1.926223 1.069784 1.828752 1.860080 -1.049419 3.041734 0.873188 0.445878 2.077701 0.490266 -1.002266 -0.173792 2.054234 4.378030 -0.107826 -0.452255 -1.228410 0.569136 -3.303224 -1.080432 -0.405758 1.109503 1.159119 -3.944134 -3.014354 0.198506 -0.917284 -4.454202 1.056710 -1.863711 -1.076064 0.820975 1.488046 3.175877 1.432689 4.048294 -3.121934 1.295641 -0.359483 -1.392160 0.257698 1.374543 2.669920 -1.654763 -1.242148 -0.727416 -0.678094 1.054229 -0.704531 -0.885529 -0.038422 -4.608670 -1.497997 -0.222362 1.025876 -0.949759 -0.191387 3.040112 1.007366 -3.618918 -0.186681 3.236040 -0.561950 -1.599874 2.277287 -3.109718 2.245527 0.253981 -0.132461 1.788093 0.614228 -0.880506 1.678880 -1.362650 0.414196 -1.881268 -1.718136 -1.140284 -0.692658 -2.379330 1.055516 -1.604692 -1.282793 -0.541649 -1.657828 2.639260 -0.861171 -2.356890 3.595421 -0.618398 2.243857 -3.416420 4.432459 -1.148761 1.247133 -0.421618 -0.226160 -0.638856 -0.307614 -0.847935 0.487793 -1.128690 0.450501 2.230335 4.485205 1.655499 1.316579 -0.001433 3.748224 -1.051695 2.264833 -0.877668 1.252286 -1.619414 -2.941783 0.924497 -0.282700 -0.940011 -0.732495 0.992132 4.402129 2.354234 1.334966 4.073811 1.039822 3.208644 -0.866109 0.796876 0.236558 2.615632 -1.259983 -1.556737 1.834092 1.266359 -2.019703 1.467739 -3.842401 -5.799024 -1.729526 -5.241436 -0.632266 -3.313858 1.276670 -0.904069 -0.066888 -2.940390 -1.219489 -0.039341 -0.128158 2.309186 1.941832 -0.065183 2.452135 4.254773 -2.809477 0.174303 2.627475 2.972459 -0.494750 -0.724054 -3.689840 2.057960 -2.843268 0.578168 3.835135 -1.760307 0.768415 -2.479233 3.691299 -4.040376 3.505164 0.722220 -1.634164 2.924707 1.287693 2.809260 3.461892 -1.108799 -PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -0.575114 -1.307634 1.885057 1.384761 0.210108 0.460126 0.872676 -0.225506 0.506173 0.641872 -0.538421 1.034261 -1.437220 0.007716 -0.079932 0.227288 -1.112125 -1.336693 0.032672 -0.188659 -0.474109 -0.911688 -0.127482 1.200975 0.942697 0.205392 -0.781346 -0.265013 -2.058394 -0.904719 -0.249563 -0.172972 0.861679 0.225840 0.636430 -1.851455 0.701798 1.297462 0.028411 -1.450107 0.560264 -0.855548 0.151008 -0.244036 0.011323 0.568006 1.016180 0.650456 0.586929 0.338451 0.131429 -0.586994 0.112701 1.533287 -0.025594 0.991530 1.136210 -0.402826 0.081553 -0.290117 0.161264 -0.981701 0.654672 0.489762 -0.859590 -0.426216 0.190163 -0.518429 -0.779001 0.743741 0.652801 -0.303191 -0.914722 -0.621306 -0.937102 -0.314561 0.512544 0.787539 1.833013 -0.855891 1.628166 0.516737 0.969257 -0.061614 0.784069 -0.041562 0.995335 0.172931 -0.733551 -0.384498 -1.708210 -0.427374 -0.471384 0.973358 -0.364578 -0.095368 0.547126 -1.237600 -1.682845 0.416187 -0.187989 -0.568944 -0.820439 0.707164 0.611237 0.754859 -0.173376 -1.246733 -0.695798 0.435974 -0.686596 -0.292290 0.054955 -0.175054 -0.579037 -0.487907 -1.446983 0.168190 0.580733 -0.824381 -0.537988 1.245635 -0.701412 1.185054 0.198771 0.358848 0.054105 0.985769 0.841852 0.079504 0.377687 -0.887433 -1.392032 -0.182479 0.304229 0.997264 -0.956177 -0.078489 0.140563 0.342458 -0.212489 0.175746 -0.325069 1.585706 0.714376 -1.079398 -1.160002 -1.058944 -0.463715 -0.873271 0.252894 -0.633563 -0.343395 0.018809 0.871823 0.450302 0.098800 1.908736 -0.645646 0.879806 0.314948 -0.408159 0.313624 -0.077593 0.771102 -0.958452 -0.764266 0.718180 0.737105 0.493566 -0.044554 -0.096748 0.282067 -1.053560 -0.962768 0.488508 0.237071 0.361258 1.328919 0.913912 1.730211 -1.191377 0.023814 0.321237 -0.100519 -0.309469 0.259420 -1.257003 0.786745 0.093416 -0.023231 1.515414 0.095678 -0.960077 0.849821 -0.000750 0.305777 -1.196084 0.671710 -0.733605 0.201319 -0.674931 -0.191383 -0.641233 -0.583405 -0.740399 -0.301961 1.691144 -0.346770 -1.791016 0.518394 -0.113991 1.110843 -2.278721 1.307949 -0.695370 1.011318 -0.359367 -0.355427 0.075861 0.156570 -0.197990 0.427605 0.449325 -0.423285 0.675417 0.997568 0.414251 0.350429 0.308926 0.753842 0.158084 0.418124 -0.345035 0.479117 -0.087558 -0.384509 -0.162453 -0.345292 0.349998 0.691609 -0.240793 0.604578 1.102883 0.044195 0.845428 0.996417 0.570237 -0.578141 0.099060 -0.207045 1.485876 -0.827606 -0.687934 -0.362491 0.491405 0.000000 0.565356 -1.691359 -1.612678 -0.286737 -2.113302 -0.373236 -0.021637 0.466720 0.352721 -0.115583 -1.512664 -0.724095 0.753759 0.084363 2.080232 0.645458 0.177543 1.222056 0.809058 -0.331170 -0.505398 0.281762 0.466431 -0.449324 -0.214959 -0.855779 0.497871 -1.310680 0.938743 1.296936 -0.769357 0.580898 -0.507662 1.066599 -1.460820 1.837480 0.715149 -1.460746 0.535627 0.742790 1.411502 -0.611863 -0.937934 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = -0.084087 -0.562150 1.736887 0.935768 -0.876499 -0.070335 0.247334 -0.376051 0.955936 -1.760104 -0.637396 0.126025 -1.101970 0.430053 -0.663379 -0.016881 -2.511914 -1.153356 0.068670 -0.319814 -0.155711 -0.696938 0.786895 0.475817 0.557561 1.585275 -0.597990 -0.120394 -0.870471 1.062965 1.867982 -0.822218 0.808612 1.683298 0.018006 -3.229506 0.721474 -0.081808 -0.540376 -0.937501 0.645508 -1.261084 0.327969 -2.082711 -0.787606 -0.088094 0.430022 1.602169 0.826533 -0.393574 -1.289437 -0.279971 -0.717528 1.920810 -1.112931 0.134146 0.568661 -0.322848 -0.402933 -0.397383 0.258321 -0.136845 0.601620 0.989343 -0.979189 -0.968345 0.014233 -1.819477 -1.120300 1.045382 0.307805 1.406353 -0.950103 0.280535 -1.491600 -0.192795 0.507310 1.694846 1.749472 -1.238463 0.874205 -0.168371 0.928109 0.121546 0.150808 0.714744 0.837844 0.264798 -0.470946 -0.385865 -2.125423 -0.117790 0.027337 -0.939673 0.464609 -1.855315 0.160511 -2.007284 -0.848806 -0.176113 0.335402 -0.074045 -0.031185 0.127130 0.792372 0.783210 -0.631275 -0.836416 0.267481 -0.165193 -0.463183 0.224632 0.516528 0.560685 -0.459195 -1.746025 -1.487645 0.061988 -0.252904 -0.462547 0.836517 1.013015 -1.098426 -0.019503 0.162077 0.188868 -0.652370 1.737593 0.011330 -0.338014 0.397416 -0.430200 0.613171 -0.260593 0.636755 2.787145 -0.693423 -0.742679 -0.447690 0.145408 -1.092746 -1.938718 0.325839 0.016645 -0.151720 -1.286336 -0.875710 -0.638995 -0.581325 -2.027352 -0.087523 -0.838992 -0.157471 1.626959 0.932791 1.329138 1.203703 1.693181 -0.851078 0.904583 -0.317822 -0.208076 0.944266 0.928811 0.922662 -0.475094 -0.383240 0.388219 -0.859106 0.750344 -0.003454 -0.519533 0.123570 -1.550526 -0.707155 0.523152 1.182624 0.389630 0.539009 0.605553 -1.359576 -1.484884 0.341892 1.077200 0.080268 -0.370264 0.651927 -0.859111 1.093889 0.202409 -0.458505 0.175909 0.023988 -1.041383 0.063483 0.119001 0.441726 -0.707891 -0.852005 -0.252281 -0.143616 -1.278925 0.763391 -0.624708 -0.769290 -0.734127 -0.935038 1.251191 -1.438188 -0.967415 1.001800 0.129621 2.050211 -1.683779 0.125963 -0.913350 1.997613 0.059263 -0.066910 0.109554 -1.140567 -0.796517 0.102580 0.355752 0.018076 0.080380 0.653613 1.128533 0.492894 0.261725 1.238283 0.275443 0.909509 -0.075353 0.187323 -0.447498 -0.834538 0.907752 -0.290019 -0.070992 0.144186 1.032106 1.950056 1.037292 1.777076 2.271751 0.713419 1.050714 -0.661326 -0.654754 -0.546075 1.019158 -0.273593 -0.401016 -0.104758 1.128304 -0.513314 0.435126 -1.355620 -3.141792 -1.817625 -1.457334 -0.095179 -1.283420 -0.028250 -0.076762 0.525738 -1.390283 -0.001716 -0.556291 -0.504872 2.299322 0.609129 -0.171878 0.886052 1.261558 -1.694208 -1.007267 1.726951 1.320226 -0.104576 0.872609 -2.632969 1.110638 -1.325947 0.250763 2.077199 -1.220673 -0.222101 -0.519999 2.106857 -0.722662 1.978615 0.750764 -1.609823 0.850269 0.377822 0.564557 2.182951 -0.749115 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.789443 -0.702282 1.656300 1.056237 0.145103 0.254162 0.739228 -0.595295 0.833717 0.605793 -0.070607 0.498032 -0.956896 0.161563 -0.489612 0.657158 -0.834992 -0.902829 -0.138707 -0.854567 -0.392576 -0.487954 0.412780 0.068559 0.835129 -0.453412 -0.666452 -0.653350 -1.357154 -1.105381 0.344643 -0.368280 0.677723 -0.886617 -0.261108 -2.728297 0.898207 0.924508 -0.515890 -0.954813 0.808996 -0.726023 0.264208 -0.073383 -0.328688 0.060340 0.349723 -0.140596 0.776125 0.447163 0.668552 0.280393 0.245834 2.337181 -0.854594 0.735234 0.454371 -0.279277 -0.570415 0.272255 0.115709 -0.252673 0.629891 0.223786 -0.287093 -0.888638 -0.101136 -0.434523 -1.010631 0.496703 -0.130369 -0.416413 -0.462573 -0.125376 -0.918483 -0.578942 0.001990 0.481373 1.321583 -0.816461 1.085096 0.026164 0.241599 0.154284 0.375762 0.223287 0.567524 0.141443 -0.260257 -0.440481 -0.366016 0.340308 -0.019276 0.847961 -0.257308 -1.056403 0.846294 -0.498789 -1.193291 0.414135 0.354577 -0.320849 -1.129260 -0.212842 0.227056 0.699116 -0.753745 -1.095974 -0.744459 0.318897 0.023521 -0.275082 0.102785 -0.888200 -0.385433 -0.549895 -1.105452 0.197393 0.064937 -0.482665 -1.055129 0.983002 -0.501927 0.245474 0.130723 0.843676 -0.528635 0.870621 -0.070003 0.629790 -0.026624 0.016031 -1.637803 -0.628387 0.494151 0.966161 -0.493667 -0.091727 -0.675407 0.135071 -0.581371 0.194022 -0.060865 1.023963 1.167689 -0.588863 -0.612747 -0.334374 0.159231 -1.286837 0.164935 -0.617146 -0.242837 0.270834 0.757524 0.359299 0.646916 1.645988 -0.492651 0.719980 -0.048345 -0.664362 0.890378 -0.411895 0.814425 -0.644712 -0.674018 0.190500 0.551297 0.539785 -0.054591 0.173420 0.120108 -0.994985 -0.377535 0.001375 0.419351 -0.209555 0.700094 0.775158 1.817300 -1.400025 0.133721 0.563533 -0.458136 0.068690 0.022745 -1.034393 0.169628 0.468276 -0.502064 1.073253 0.124769 -0.903149 0.464800 -0.321892 0.305580 -0.739630 0.396365 -0.665316 -0.167800 -0.430227 -0.545558 -0.587925 -0.462107 -0.590501 -0.557594 1.221334 -0.810341 -1.068616 0.808105 -0.007706 0.317763 -1.918996 1.831473 -0.741795 0.791495 -0.695083 -0.020402 -0.183155 0.976755 -0.618023 0.461619 0.338374 -0.563858 0.769017 1.631509 0.569609 0.419995 -0.226341 1.100399 -0.159026 0.684561 -0.348114 0.993906 -0.327159 -0.722068 0.054431 -0.261553 -0.033217 -0.019255 0.357172 0.583910 0.695269 -0.061943 0.525901 1.038181 1.061300 -0.460233 0.734806 -0.188438 1.072666 -0.301556 -0.333920 0.195240 0.635358 -0.042851 0.540352 -1.380254 -1.311099 -0.653255 -1.454703 0.388663 0.288079 0.055711 -0.156151 0.045352 -1.490652 -0.602522 0.623809 -0.333852 1.153462 0.598342 0.381406 0.819872 0.914452 -0.454673 -0.248391 -0.094596 0.203368 0.012596 -0.511319 -0.571258 0.691614 -1.043832 0.368979 0.841238 -0.368074 0.288385 0.336841 0.421650 -0.884005 1.480928 0.342271 -0.397704 1.154885 0.894274 1.436844 -0.291045 -0.511648 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -0.542798 -0.746036 3.530282 2.289233 -0.497388 0.316247 0.472375 -1.792621 1.729342 -0.190706 -0.448822 0.591970 -1.590502 0.362960 -0.291305 0.916312 -2.876499 -1.602065 -0.693484 -1.858123 -0.698207 -0.948911 0.833259 0.511866 1.550591 0.545171 -1.390283 -0.136472 -1.984730 -1.513656 1.180200 -0.658398 1.294451 0.375725 0.375251 -4.394558 2.185449 1.379181 -0.848466 -1.575528 1.363241 -1.606967 0.162529 -1.093128 -0.555859 0.594785 0.228681 0.483744 1.835407 0.338880 0.163914 0.393490 -0.267545 2.794204 -1.641707 0.983574 0.604362 -0.958825 -0.890552 0.283251 0.059565 -0.183961 1.074797 0.634065 -1.011099 -2.227875 0.345258 -1.246093 -1.736099 1.671973 0.227698 -0.766353 -1.139554 -0.614030 -2.053820 -0.733522 0.936153 1.781669 2.330233 -1.400936 1.423399 -0.185729 0.456875 0.138038 0.865192 0.300541 2.090574 0.233820 -0.370910 -0.768872 -1.927598 -0.677070 0.212247 0.745270 -0.329695 -1.250360 0.921832 -2.695771 -2.120290 0.213409 1.114690 -0.893615 -2.210460 0.021891 0.940844 0.874817 -0.303831 -1.630572 -0.223503 0.776827 -0.629995 -0.205237 -0.220961 -0.958830 -0.824198 -0.979539 -2.513050 0.857227 -0.091047 -0.148391 -1.060508 1.911816 -1.272746 -0.343535 0.224784 1.358086 -1.154397 1.864257 -0.752018 0.929852 0.353343 -0.216417 -1.387342 -0.587206 0.793647 1.724133 -0.970317 -0.683433 -1.258389 0.293789 -2.032991 -0.295626 -0.499299 1.796643 1.471189 -1.512152 -1.418329 -0.504652 -0.817144 -2.761133 0.212797 -1.087419 -0.934658 0.861786 1.461783 1.551795 1.552503 2.559284 -1.130736 0.986921 -0.094427 -0.800186 2.032036 -0.235457 1.610905 -1.300190 -0.842419 0.734695 -0.157310 0.966310 -0.109067 0.165056 0.305442 -2.273310 -1.148172 0.768568 0.784339 0.697226 1.340482 1.848747 1.988196 -2.304237 0.524154 1.572215 -0.686248 -0.320360 0.559018 -1.499123 0.599255 0.866329 -0.052744 2.274961 0.049207 -1.340866 0.087665 0.099713 0.795634 -1.486384 -0.002331 -0.924362 0.456293 -1.059775 -0.787262 -1.279120 -1.055406 -1.248009 -1.511291 2.339808 -1.285093 -2.763187 2.552625 -0.799994 1.932804 -3.468908 1.545065 -1.479074 1.878954 -0.913765 0.144643 -0.246164 -0.232447 -1.961549 1.253078 0.477648 -0.637403 1.026695 2.322826 1.386664 0.799129 -0.640171 1.912447 -0.380817 2.048513 -0.788385 1.804651 -0.739008 -0.737722 0.182095 -0.393883 -0.664204 -0.158310 0.725938 1.287043 1.306606 1.214837 1.540224 1.623251 2.064436 -0.939666 1.135960 -0.469765 0.981798 -0.555127 -1.092931 0.975227 1.159847 -0.246063 0.733618 -2.713473 -3.109004 -1.774902 -3.097128 0.389600 -0.457938 0.351910 -0.053544 -0.125195 -2.307692 -0.983565 0.969209 -0.116977 3.275912 0.901767 0.218749 1.342878 2.086753 -1.442538 -0.524639 0.374812 0.788520 0.078972 -0.580046 -2.538536 2.289710 -1.556394 0.575945 2.713201 -1.452022 0.747592 -0.422349 1.538857 -1.854962 2.552806 0.512126 -1.393985 1.819064 1.142989 1.695019 0.711243 -1.163889 -PE-benchmarks/kmp-algorithm.cpp__main = 0.531872 -0.348855 1.589249 1.064448 -0.553870 -0.149371 0.168589 -0.511833 0.557617 -0.513596 -0.525515 0.334440 -0.601679 0.459386 -0.634476 0.716569 -1.605227 -0.555596 -0.134382 -0.369173 -0.147856 -0.190928 0.793137 0.015070 0.864140 1.115246 -0.454873 -0.298640 -0.293587 -0.349613 0.699192 -0.474183 0.446120 0.768068 0.014940 -1.246881 0.804543 0.305595 -0.473409 -0.700820 0.668922 -0.412422 -0.088063 -0.988491 -0.244599 0.176059 0.199177 1.109530 0.591514 0.418123 -0.425391 0.109510 0.437423 1.089859 -0.492737 0.228674 0.490834 -0.109983 -0.124294 -0.227986 0.282334 0.048514 0.088521 0.336641 0.061354 -0.978394 -0.470719 -0.895797 -0.420761 0.623067 -0.121645 0.489000 -0.876459 -0.088276 -0.617638 0.094062 -1.215871 1.148589 1.084177 -0.928484 0.391131 0.002342 0.141669 -0.119060 -0.245782 0.393732 0.076398 0.399023 0.089037 -0.209979 -0.477486 -0.312423 0.352406 -0.788828 -0.176968 -1.689006 0.525876 -1.200202 -0.646863 0.039512 0.624796 -0.405920 0.566993 0.093212 0.091724 0.500344 -0.400524 -0.346351 0.502823 -0.287921 0.307701 -0.018439 0.060490 0.340486 -0.235922 -0.259495 -1.157780 0.339408 -0.248045 -0.218035 0.627366 0.370325 0.076752 -0.113579 -0.056174 0.272395 -0.378834 1.186275 0.067485 0.427310 0.108000 0.578696 0.485647 0.618122 0.839248 0.583834 -0.550423 0.014597 -0.462182 0.167301 -0.592128 -0.660977 -0.091397 0.170184 0.211314 -0.789732 -0.819207 -0.363328 -0.763076 -1.094653 0.135738 -0.524322 -0.309545 0.701436 0.570991 0.532882 0.845316 0.866672 -0.710179 -0.023937 -0.054676 -0.020037 0.647383 0.461123 0.550893 -0.318211 -0.288600 0.437369 -0.205447 0.301213 0.011642 0.059812 0.324199 -0.974578 0.139631 0.642268 0.630974 -0.269927 0.442778 0.485090 -0.553692 -0.008280 -0.071805 0.792374 -0.188948 -0.278333 0.463011 -0.797578 0.698460 0.014964 0.367852 0.256541 0.124169 -0.160959 0.409213 -0.246958 0.111872 -0.326651 -0.291490 -0.252641 -0.238822 -0.611368 0.773756 -0.156499 -0.289850 -0.222163 -0.418275 0.890332 -1.006644 -0.039438 0.604843 -0.109993 0.629456 -0.604242 0.736730 -0.582175 0.814734 0.325459 -0.088488 0.234929 -0.842813 -0.796101 -0.231009 0.287473 0.250130 -0.037253 0.511738 0.632213 -0.198699 0.013314 0.848066 -0.313636 1.067183 -0.030768 0.368116 -0.276562 -0.419714 0.292040 -0.036176 -0.533792 -0.438657 0.441315 1.332495 0.044993 1.029987 1.137316 -0.007905 1.165303 -0.606316 0.322516 -0.278980 0.562052 -0.388805 -0.359905 0.304531 0.593846 -0.366963 0.506531 -0.962030 -1.613575 -1.384075 -0.564636 -0.112006 -0.905866 0.394307 -0.531058 -0.071520 -0.543773 -0.604317 0.309871 -0.252045 0.330137 0.650323 -0.117887 0.521596 0.653264 -0.653849 -0.144150 0.332951 0.803134 0.418947 0.227338 -1.133159 0.741980 -0.685058 -0.309959 1.456338 -0.750370 0.103728 -0.349368 1.048846 -0.526555 1.064818 0.244072 -0.808448 0.701151 0.678838 0.356843 0.889490 -0.519089 -PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -3.416782 -6.411842 9.196423 6.400355 0.290988 2.956438 3.087805 -1.221886 0.727375 3.342118 -2.382308 5.892746 -5.406294 -1.611655 -0.580176 -0.127675 -4.893027 -5.107663 -0.199381 -1.674429 -2.048807 -2.956115 -3.142184 7.800772 4.112663 0.223345 -3.389614 -0.518106 -9.452641 -5.633292 -3.407039 -0.085658 3.736317 -0.474916 4.034966 -8.400361 3.294160 7.165962 0.247772 -6.221546 2.315470 -3.193703 0.040296 -0.133658 -2.302196 2.244190 4.714291 0.327952 1.542441 1.095105 0.282651 -2.041243 2.842115 8.061472 2.045702 5.427175 6.322948 -2.497073 1.699919 -1.124038 0.588465 -5.170246 2.703284 0.273274 -2.811920 -2.057878 0.922106 -0.889196 -1.687985 2.449054 2.727000 -3.493561 -2.727950 -3.593252 -7.012136 -2.429413 3.669071 3.129593 7.477429 -4.099005 7.850907 3.171255 3.940984 0.859619 4.949129 -0.062143 5.486482 1.078503 -2.856372 -0.042858 -6.119019 -1.655855 -1.568695 5.455270 -3.189757 -1.016817 3.203892 -9.582093 -8.556536 3.502827 -0.665738 -3.781715 -3.320070 0.932694 2.170388 2.251539 -1.183059 -5.332339 -3.424189 3.251336 -3.553972 -1.638629 0.013929 -0.374886 -0.585530 0.352111 -6.189235 2.424857 3.937562 -2.600422 -2.987012 6.576563 -0.956774 5.991764 0.513998 2.253643 -0.062750 3.266941 3.322103 0.638541 -1.077215 -3.210637 -6.007703 -1.842556 0.548749 0.182784 -4.758819 -1.496682 1.647369 2.480124 0.690537 3.559821 -2.101808 8.835856 1.728473 -3.371871 -4.473170 -5.992003 -4.331940 -3.935171 0.174962 -1.744574 -4.767815 0.998929 3.738648 1.529237 -0.620303 5.206541 -0.278444 3.048320 1.471631 -2.148601 0.952987 -3.876996 3.213809 -4.575612 -3.405073 3.453745 3.764601 4.142413 -0.013485 -0.164741 1.330304 -3.104351 -4.515376 1.681181 0.996572 2.081208 7.186671 5.527462 10.109045 -5.045602 -0.338495 -0.001453 -1.515177 -1.100533 0.323210 -5.107195 2.096437 1.337736 -0.616752 8.524566 0.338486 -3.315822 3.930854 0.200256 1.256392 -5.657218 4.163081 -3.524422 1.247329 -1.973958 -2.451354 -4.109272 -2.349859 -5.275217 -3.467327 8.197984 -5.766319 -7.665583 3.046070 0.961817 4.708148 -10.101547 5.923422 -2.924279 6.415479 -1.116376 -2.559232 0.397259 1.033521 -1.379674 2.825360 1.991869 -4.211997 3.147781 3.387815 1.598992 2.535093 0.820619 3.166586 -0.606400 1.797107 -2.975628 2.461957 -0.402025 -2.508218 -2.294313 -1.317066 1.468114 3.649160 -0.246333 -0.711284 3.724325 -0.332419 0.868022 6.073496 1.458885 -2.509541 0.209060 -1.242578 5.999786 -4.494774 -3.768810 -1.977101 2.449253 1.688570 1.899485 -8.763352 -5.177366 -4.835496 -7.623455 -2.070689 0.674956 1.827922 2.522273 -1.169230 -7.338725 -4.341398 5.682032 0.441092 5.841534 3.846917 1.737807 6.417690 3.181946 1.272239 -2.049588 0.165687 1.773786 -1.754649 -1.171757 -3.889752 2.615178 -5.642577 5.282306 5.575931 -2.768769 4.057561 0.163278 2.056617 -7.418910 7.685419 2.994142 -8.007808 1.144538 5.275685 4.288498 -5.499969 -4.493305 -PE-benchmarks/program-wish-womens-day.cpp__main = -3.249185 -8.879910 10.389111 7.768600 2.590764 3.576578 4.207412 0.192530 2.329649 3.987492 -2.860303 8.954086 -6.314602 -1.134206 1.291545 -0.370881 -6.169206 -9.042936 1.907059 0.732444 -3.434976 -5.197178 -5.073690 10.449116 4.015514 1.835311 -5.093541 1.374328 -13.897632 -6.849336 -4.986794 -0.481413 4.154860 -0.839077 6.974487 -9.219800 3.989870 8.968011 2.123495 -9.909256 1.217850 -4.485699 1.511983 0.066417 -0.319002 5.734890 8.243312 3.472597 2.093380 2.523715 -0.771977 -3.166182 1.315641 4.863719 4.354363 5.939126 7.780622 -2.821784 1.580373 -3.022041 1.139619 -8.090469 3.819899 1.349458 -5.863702 -0.141742 2.218612 -1.075134 -3.250524 3.893352 7.050402 -4.603846 -3.886976 -3.890962 -7.702188 -1.779375 10.135715 3.791357 9.628043 -4.116318 10.028985 3.042285 8.627612 0.059782 5.990537 -1.426465 8.376067 1.130889 -5.581583 -1.053213 -12.244761 -5.031162 -4.228571 5.538592 -2.496459 1.462487 0.651982 -11.485563 -9.939736 3.042473 -2.438837 -2.343050 -5.907643 3.171262 6.735129 3.808230 0.984638 -5.833892 -3.874646 3.783577 -7.663258 -1.392077 0.684829 -0.737737 -2.693101 -0.962903 -7.439381 0.909745 6.789585 -3.425020 -1.547782 8.948561 -4.390759 9.319078 0.374423 0.296474 2.648275 4.268732 6.890233 -0.126350 -0.277187 -8.261205 -6.156383 -1.512190 -2.304244 1.912118 -6.366914 -3.011017 3.439412 3.724643 0.515360 3.128120 -3.775606 9.306613 3.913752 -5.383966 -7.594317 -7.999968 -5.145300 -3.259759 1.333025 -2.384748 -3.779404 -0.292027 5.591035 2.043429 -0.951225 7.304007 -1.835985 3.143500 3.414917 -1.778538 0.811234 -1.882256 3.070404 -6.056151 -3.758531 5.699461 4.390271 3.238025 -0.437322 -3.121509 2.650951 -3.841914 -6.738189 2.922543 1.044298 6.098996 8.803641 5.585921 9.764471 -4.990078 -2.011638 -0.950815 -0.701016 -1.702244 0.591256 -5.668091 3.623033 0.977152 2.815686 10.903526 -0.676455 -4.727925 6.017471 3.810304 1.086982 -7.501077 4.527617 -3.622881 3.667775 -1.372594 -2.540653 -6.270048 -0.741477 -7.348427 -4.684325 11.453617 -0.963518 -14.084409 3.518004 -3.844557 9.140752 -14.183211 2.536633 -3.407044 6.408372 -0.494569 -1.623552 1.074543 -3.027539 -0.474277 4.595755 2.718898 -2.797349 3.123855 2.734253 2.135384 2.245482 3.248678 2.121593 1.610348 2.053265 -1.513852 0.932017 -1.078371 0.144402 -2.040252 -2.375271 2.719475 6.809030 -2.947384 -0.404259 4.927586 0.727776 3.688863 6.874743 0.070105 -4.591425 -1.244101 -0.843743 7.901353 -5.651239 -4.655054 -3.482871 2.679619 1.253925 1.939716 -10.147869 -6.687990 -3.749685 -15.690393 -4.225319 0.326755 2.548060 3.464770 -0.748400 -8.001684 -3.723973 7.366849 3.205433 14.691875 4.129669 0.094684 8.060003 2.886646 -0.548917 -3.340715 -0.181715 -0.538455 -3.599336 -0.289563 -5.018817 2.471442 -7.085568 7.783468 7.576731 -5.709314 3.643937 -4.510631 4.621630 -9.915423 9.056763 4.501891 -9.933977 -2.147879 1.622699 7.584955 -6.771304 -7.318944 -PE-benchmarks/vertex-cover-problem.cpp__main = 0.198210 -0.549131 1.304566 0.665736 -0.730442 -0.253939 0.080919 0.118516 0.558791 -1.662057 -0.749154 0.345573 -0.674295 0.419747 -0.553622 0.053560 -2.079618 -0.980554 0.352985 0.271453 -0.011918 -0.428796 0.742851 0.399157 0.447580 1.717049 -0.482805 -0.115633 -0.411525 0.968803 1.471442 -0.850865 0.651879 1.728112 0.032178 -2.183853 0.384824 -0.386937 -0.325724 -0.795633 0.389498 -0.683426 0.228160 -1.986119 -0.662157 -0.005217 0.682427 1.532258 0.428828 -0.147991 -1.466891 -0.483179 -0.457768 1.073176 -0.531961 -0.121206 0.650970 -0.260416 -0.129038 -0.758758 0.441076 -0.296163 0.362276 0.936700 -0.614991 -0.609977 -0.193294 -1.613594 -0.770351 0.701254 0.302148 1.755555 -0.819191 0.393145 -0.979252 0.101638 0.608445 1.401533 1.477850 -0.913228 0.676226 -0.039132 1.006470 0.000510 -0.268584 0.720086 0.151390 0.423826 -0.448637 -0.268365 -1.627797 -0.214502 -0.075059 -0.948596 0.567714 -1.380072 0.047822 -1.559762 -0.377802 -0.141064 0.194531 0.162840 0.495920 0.181828 0.681145 0.802925 -0.470144 -0.366444 0.430852 -0.671768 -0.279262 0.223954 0.477931 0.907575 -0.440686 -1.181471 -1.115456 -0.172463 -0.200852 -0.578667 1.308915 0.424131 -0.765482 0.189913 -0.023132 -0.063365 -0.355542 1.388266 0.497388 -0.391659 0.431504 -0.395095 1.060098 -0.050370 0.602249 2.322301 -0.676599 -0.674078 -0.217295 0.114927 -0.551433 -1.964787 0.362408 -0.291577 -0.244274 -1.040458 -0.935082 -0.705526 -0.635630 -1.446305 -0.070210 -0.754992 0.103394 1.620965 0.648792 0.741958 0.932906 1.372016 -0.743517 0.735008 -0.278829 0.037150 0.463566 0.956421 0.587145 -0.225578 -0.109652 0.453559 -0.668252 0.482537 0.146808 -0.728709 0.320102 -1.185780 -0.523684 0.679962 1.030970 0.240956 0.129232 0.053822 -1.847354 -0.627485 -0.072221 0.815041 0.394495 -0.491724 0.712444 -0.658440 1.142687 -0.209271 -0.135365 -0.313887 0.110684 -0.842518 0.255264 0.105781 0.137591 -0.321623 -0.710055 -0.043808 -0.033487 -0.960887 0.975276 -0.401214 -0.403671 -0.420258 -0.501676 0.903365 -1.082580 -0.489344 0.302565 0.242138 1.775929 -1.070322 -0.299256 -0.668937 1.746635 0.413295 -0.139778 0.244465 -1.515712 -0.385460 -0.341352 0.353976 0.397694 -0.239873 0.045336 0.848711 0.104409 0.452358 0.787832 0.383645 0.707960 0.372483 -0.363847 -0.318093 -0.620889 0.746937 -0.112768 -0.035061 0.096856 0.707953 1.530216 0.593665 1.556406 2.165061 0.196799 0.749917 -0.687824 -0.884640 -0.412129 1.132231 -0.264104 -0.266332 -0.332523 1.079484 -0.566098 0.420699 -0.810175 -2.621723 -1.591467 -1.026076 -0.528630 -1.178231 0.070889 -0.297359 0.464513 -0.689479 0.174231 -0.611164 -0.280775 1.817591 0.599192 -0.339301 0.675242 0.655939 -1.448037 -1.115829 1.466082 1.200348 -0.007087 1.087373 -2.175389 0.517702 -1.069775 -0.046967 1.740271 -1.094389 -0.477984 -0.570505 1.840112 -0.366124 1.595761 0.716194 -1.534932 0.452276 -0.061217 0.207458 1.905530 -0.633395 -PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -0.875133 -6.318160 11.952780 8.845602 -1.604077 2.649832 2.247417 -2.970883 2.461471 2.591715 -3.376300 5.864034 -6.241170 -0.050888 0.189923 2.067484 -8.954800 -5.273579 -0.383592 -2.239237 -3.129736 -3.801624 -1.262142 7.225547 5.448454 5.913332 -3.968472 -0.164831 -7.589465 -6.841910 -1.249426 -0.943829 4.645483 5.260615 5.105859 -10.161016 5.172973 6.741987 -0.297522 -7.532357 2.762049 -3.638254 -0.262760 -1.987460 -1.039715 3.609328 4.455484 4.695525 3.260009 1.879491 -1.096870 -2.575439 3.916134 7.484521 1.251630 5.221541 6.177637 -3.272391 1.531942 -1.815613 1.114692 -4.509130 3.090390 1.956352 -3.057727 -4.134245 0.613073 -2.897908 -3.013474 4.682375 3.566144 -2.817367 -5.410716 -4.561395 -5.029409 -1.431160 -2.043700 6.401707 9.274854 -5.063287 7.846123 3.169336 3.960591 -0.466128 4.637786 -0.143791 7.033904 1.714372 -3.089364 -0.759687 -7.142969 -4.698861 -0.221315 2.644189 -3.191080 -2.671248 2.872593 -10.305104 -9.195867 2.993739 0.881795 -4.100974 -2.783827 1.919266 3.499281 2.700807 -0.404513 -5.646413 -1.607124 2.487599 -4.249429 -1.703180 -1.323948 0.944720 -1.955891 0.762397 -8.256898 2.651993 3.076972 -2.571911 -0.888377 6.688936 0.076344 4.739865 0.342599 2.110650 -0.055763 5.678919 3.322053 1.430991 1.104647 -1.823292 -2.835644 2.391552 2.495932 0.351860 -5.122086 -2.241146 0.728971 2.757432 -1.578298 1.707682 -2.785455 9.203622 3.482722 -4.765784 -6.564878 -6.110735 -5.503962 -5.731075 1.048756 -3.177438 -4.100620 1.446473 4.774600 2.659650 1.193106 4.964542 -3.928669 3.086944 1.178672 -0.258730 2.341418 0.893702 4.075321 -5.302357 -3.205576 4.260015 3.022672 3.319256 -0.414030 -0.715485 1.847523 -4.625049 -4.496939 4.845781 1.785148 2.444060 7.467197 6.052039 11.117687 -4.179336 -0.412731 2.003688 -1.362946 -2.283116 1.975958 -6.365207 4.354535 0.726611 1.775288 8.997708 -0.011606 -2.907661 3.662297 0.696907 1.194573 -5.973399 3.244053 -3.756764 0.997084 -2.915192 -0.140038 -4.174364 -2.999907 -5.053368 -2.721258 9.700058 -6.118769 -7.777715 5.342543 -2.812677 6.142647 -10.171737 6.228916 -3.968931 4.664492 -1.462615 -3.344172 0.294127 -2.677971 -2.951021 2.423008 2.472674 -2.233513 2.265521 4.527108 2.640258 1.650669 1.003158 4.092640 -0.665251 3.958023 -2.593953 3.632735 -0.713978 -0.467847 -2.135142 -1.530583 0.112202 2.441711 -0.782171 3.124803 4.203571 2.005607 3.316777 4.319137 3.230356 -3.695970 1.489602 -1.492932 5.633241 -5.188662 -4.588223 -0.660814 2.523150 0.126397 3.100647 -10.073050 -7.959235 -5.356034 -7.963240 -3.785636 -0.724026 3.858109 1.663965 -1.507671 -7.007659 -5.156944 6.575685 0.765263 6.657523 4.061752 0.821931 6.797856 4.758741 -0.082760 -2.407405 0.158959 2.468981 -1.100482 -0.459589 -6.204854 4.641026 -5.683389 4.777668 8.715861 -4.644346 3.979192 -3.333878 6.348812 -8.211488 8.835383 3.262507 -8.861340 1.760332 5.185218 4.750760 -3.160294 -5.562019 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 0.288479 -0.493912 1.567500 1.051719 -0.506072 -0.045153 0.331176 -0.405339 0.433390 -0.686374 -0.425629 0.392680 -0.743001 0.343096 -0.609541 0.365075 -1.495514 -0.663673 -0.216422 -0.384389 -0.145082 -0.213664 0.580440 0.297980 0.815110 0.976720 -0.490663 -0.403424 -0.751692 0.084949 0.756654 -0.286544 0.553377 0.760772 0.063216 -1.644943 0.606302 0.509765 -0.394383 -0.816180 0.706230 -0.590952 -0.052001 -0.996530 -0.324157 0.087253 0.194314 0.941830 0.473671 0.203839 -0.554321 0.149580 0.155956 1.308768 -0.431338 0.306767 0.636857 -0.099409 -0.129160 -0.246517 0.209402 -0.031280 0.170448 0.205698 -0.159653 -0.890200 -0.350394 -0.968757 -0.464659 0.568963 0.092961 0.383825 -0.740491 -0.165743 -0.857902 -0.015800 -0.622784 1.143425 1.032971 -1.030158 0.527656 -0.058227 0.193861 -0.043226 -0.047969 0.385120 0.127201 0.319629 0.146952 -0.240526 -0.988925 -0.199664 0.178384 -0.609265 -0.280615 -1.572607 0.600559 -1.189038 -0.756659 0.028387 0.491699 -0.513498 0.315000 0.133563 0.015838 0.589715 -0.402312 -0.400900 0.209147 -0.003618 0.228566 -0.033478 0.100433 0.394696 -0.249672 -0.690485 -1.152943 0.497273 -0.081088 -0.163122 0.436266 0.569480 -0.261002 0.018451 -0.011666 0.261442 -0.451578 1.206731 0.085058 0.131640 0.193043 0.209062 0.261836 0.228928 0.683110 1.197987 -0.671271 -0.114966 -0.377941 0.182023 -0.472081 -0.669307 0.036873 0.261891 0.122419 -0.860328 -0.749719 -0.511686 -0.624020 -1.092090 -0.039945 -0.461064 -0.214688 0.841727 0.576416 0.744762 0.665333 1.133552 -0.584636 0.158347 0.062313 -0.246396 0.539610 0.461663 0.520181 -0.395174 -0.431450 0.398679 -0.321826 0.492938 -0.032875 0.208985 0.229423 -0.962758 -0.154899 0.460437 0.636401 -0.140598 0.613333 0.699758 -0.574458 -0.448496 -0.044701 0.621527 -0.366562 -0.253619 0.402181 -0.767420 0.583291 0.107463 0.005249 0.511690 0.080923 -0.304843 0.459466 -0.191757 0.150550 -0.417131 -0.187934 -0.324808 -0.268960 -0.748094 0.507912 -0.232004 -0.359649 -0.449206 -0.638820 1.014550 -0.968030 -0.392983 0.526002 0.075890 0.707519 -0.998551 0.670608 -0.536638 0.949382 0.263576 -0.093180 0.195382 -0.643303 -0.808950 -0.098153 0.266159 -0.057973 0.007274 0.691182 0.596774 -0.129185 -0.020014 0.843735 -0.253088 0.973916 -0.233921 0.394152 -0.296903 -0.585171 0.326893 -0.069181 -0.364375 -0.268891 0.456334 1.361269 0.216514 1.126347 1.064910 0.294002 1.063830 -0.529466 0.130884 -0.267073 0.651760 -0.360836 -0.386277 0.187715 0.686430 -0.191059 0.400134 -1.033692 -1.766511 -1.216962 -0.948882 0.125077 -0.914849 0.253732 -0.343528 -0.129354 -0.849474 -0.631969 -0.038526 -0.286348 0.829739 0.651016 -0.064008 0.653535 0.685317 -0.801807 -0.074939 0.672195 0.909397 0.301306 0.156787 -1.217932 0.742075 -0.714045 -0.144033 1.528032 -0.670386 0.345275 -0.315163 1.175534 -0.628989 1.284520 0.256450 -1.073550 0.627841 0.709067 0.413832 0.844780 -0.536351 -PE-benchmarks/sort-array-wave-form-2.cpp__main = -0.191763 -1.420849 2.845006 1.975296 -0.294587 0.343124 0.745812 -0.547509 0.750624 0.145051 -0.896211 1.265866 -1.526471 0.231248 -0.361718 0.610251 -2.204101 -1.523903 -0.020052 -0.438263 -0.550759 -0.842862 0.194713 1.228533 1.359012 1.050543 -1.018037 -0.304107 -1.912740 -1.140926 0.178824 -0.476382 1.094446 0.746597 0.723107 -2.797739 1.230479 1.364275 -0.270168 -1.823836 0.886624 -0.994328 -0.002169 -0.875668 -0.340497 0.647486 1.100068 1.344058 0.811251 0.559405 -0.356252 -0.436104 0.435026 2.177103 -0.155546 1.049142 1.489972 -0.559389 -0.014201 -0.459266 0.370989 -0.935868 0.668905 0.619916 -0.716274 -1.074883 -0.041349 -1.038069 -0.929805 1.025327 0.674105 -0.074608 -1.260294 -0.670178 -1.320419 -0.258889 0.031953 1.494041 2.365414 -1.356256 1.767628 0.491109 1.032164 -0.036713 0.635441 0.243931 1.110720 0.473739 -0.622459 -0.421849 -1.858635 -0.751300 -0.107096 0.383563 -0.478069 -1.232985 0.801892 -2.113900 -1.927244 0.496587 0.285314 -0.813819 -0.446707 0.500166 0.742193 0.988909 -0.378640 -1.263151 -0.309851 0.242250 -0.631293 -0.300154 0.026903 0.177499 -0.608681 -0.465228 -2.092713 0.491755 0.516133 -0.759358 -0.000308 1.393863 -0.530259 0.981989 0.069366 0.509542 -0.226197 1.618642 0.794787 0.278319 0.335844 -0.455554 -0.714770 0.239564 0.747449 1.117158 -1.231884 -0.329140 -0.078405 0.515567 -0.514590 -0.205430 -0.420921 1.657113 0.784582 -1.349911 -1.607660 -1.349093 -1.057415 -1.526285 0.255306 -0.915985 -0.709329 0.638330 1.177856 0.719482 0.603422 2.045140 -0.995347 0.871713 0.190891 -0.289908 0.680161 0.143123 1.049679 -1.095084 -0.798878 0.971408 0.507189 0.758337 -0.018989 -0.163765 0.524647 -1.531483 -0.933662 0.950164 0.673055 0.312980 1.469258 1.203924 1.500928 -1.053397 -0.116203 0.715832 -0.261866 -0.523100 0.566284 -1.582324 1.045005 0.147105 0.264658 1.722464 0.163668 -1.006744 0.939797 -0.012842 0.270588 -1.245989 0.471125 -0.787838 0.145064 -0.872646 0.250024 -0.855628 -0.662385 -1.026047 -0.721638 2.178922 -1.245192 -1.838413 0.944266 -0.298012 1.577228 -2.562786 1.532833 -1.029655 1.564863 -0.125356 -0.451428 0.214498 -0.650215 -0.800454 0.420379 0.606582 -0.245185 0.519236 1.166548 0.813508 0.258451 0.249607 1.187774 -0.126913 1.087053 -0.379417 0.661786 -0.329681 -0.563985 -0.072284 -0.305294 -0.058640 0.385919 0.134564 1.154361 0.929664 0.763774 1.425691 0.981139 1.138540 -0.962924 0.265360 -0.384053 1.671453 -1.015539 -0.912412 -0.170417 0.913223 -0.140537 0.805492 -2.228937 -2.425265 -1.464873 -2.299827 -0.530810 -0.478625 0.701693 0.010089 -0.159674 -1.732437 -1.024949 1.086961 -0.017089 2.201208 1.114226 0.115558 1.501531 1.117623 -0.644828 -0.668702 0.447131 0.909791 -0.158508 0.014586 -1.656775 1.006624 -1.574481 0.727496 2.204064 -1.185592 0.632392 -0.714597 1.654451 -1.673075 2.346068 0.829715 -2.032573 0.746151 1.098313 1.367040 -0.088447 -1.239337 -PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.789443 -0.702282 1.656300 1.056237 0.145103 0.254162 0.739228 -0.595295 0.833717 0.605793 -0.070607 0.498032 -0.956896 0.161563 -0.489612 0.657158 -0.834992 -0.902829 -0.138707 -0.854567 -0.392576 -0.487954 0.412780 0.068559 0.835129 -0.453412 -0.666452 -0.653350 -1.357154 -1.105381 0.344643 -0.368280 0.677723 -0.886617 -0.261108 -2.728297 0.898207 0.924508 -0.515890 -0.954813 0.808996 -0.726023 0.264208 -0.073383 -0.328688 0.060340 0.349723 -0.140596 0.776125 0.447163 0.668552 0.280393 0.245834 2.337181 -0.854594 0.735234 0.454371 -0.279277 -0.570415 0.272255 0.115709 -0.252673 0.629891 0.223786 -0.287093 -0.888638 -0.101136 -0.434523 -1.010631 0.496703 -0.130369 -0.416413 -0.462573 -0.125376 -0.918483 -0.578942 0.001990 0.481373 1.321583 -0.816461 1.085096 0.026164 0.241599 0.154284 0.375762 0.223287 0.567524 0.141443 -0.260257 -0.440481 -0.366016 0.340308 -0.019276 0.847961 -0.257308 -1.056403 0.846294 -0.498789 -1.193291 0.414135 0.354577 -0.320849 -1.129260 -0.212842 0.227056 0.699116 -0.753745 -1.095974 -0.744459 0.318897 0.023521 -0.275082 0.102785 -0.888200 -0.385433 -0.549895 -1.105452 0.197393 0.064937 -0.482665 -1.055129 0.983002 -0.501927 0.245474 0.130723 0.843676 -0.528635 0.870621 -0.070003 0.629790 -0.026624 0.016031 -1.637803 -0.628387 0.494151 0.966161 -0.493667 -0.091727 -0.675407 0.135071 -0.581371 0.194022 -0.060865 1.023963 1.167689 -0.588863 -0.612747 -0.334374 0.159231 -1.286837 0.164935 -0.617146 -0.242837 0.270834 0.757524 0.359299 0.646916 1.645988 -0.492651 0.719980 -0.048345 -0.664362 0.890378 -0.411895 0.814425 -0.644712 -0.674018 0.190500 0.551297 0.539785 -0.054591 0.173420 0.120108 -0.994985 -0.377535 0.001375 0.419351 -0.209555 0.700094 0.775158 1.817300 -1.400025 0.133721 0.563533 -0.458136 0.068690 0.022745 -1.034393 0.169628 0.468276 -0.502064 1.073253 0.124769 -0.903149 0.464800 -0.321892 0.305580 -0.739630 0.396365 -0.665316 -0.167800 -0.430227 -0.545558 -0.587925 -0.462107 -0.590501 -0.557594 1.221334 -0.810341 -1.068616 0.808105 -0.007706 0.317763 -1.918996 1.831473 -0.741795 0.791495 -0.695083 -0.020402 -0.183155 0.976755 -0.618023 0.461619 0.338374 -0.563858 0.769017 1.631509 0.569609 0.419995 -0.226341 1.100399 -0.159026 0.684561 -0.348114 0.993906 -0.327159 -0.722068 0.054431 -0.261553 -0.033217 -0.019255 0.357172 0.583910 0.695269 -0.061943 0.525901 1.038181 1.061300 -0.460233 0.734806 -0.188438 1.072666 -0.301556 -0.333920 0.195240 0.635358 -0.042851 0.540352 -1.380254 -1.311099 -0.653255 -1.454703 0.388663 0.288079 0.055711 -0.156151 0.045352 -1.490652 -0.602522 0.623809 -0.333852 1.153462 0.598342 0.381406 0.819872 0.914452 -0.454673 -0.248391 -0.094596 0.203368 0.012596 -0.511319 -0.571258 0.691614 -1.043832 0.368979 0.841238 -0.368074 0.288385 0.336841 0.421650 -0.884005 1.480928 0.342271 -0.397704 1.154885 0.894274 1.436844 -0.291045 -0.511648 -PE-benchmarks/tower-of-hanoi.cpp__main = -0.007067 -0.437586 0.743153 0.573744 0.036027 -0.024683 0.362374 -0.011838 0.316954 0.083504 -0.197723 0.295780 -0.456042 0.211075 -0.133011 0.415758 -0.510867 -0.505221 0.092427 0.003461 -0.063252 -0.219927 0.410697 -0.001852 0.426258 0.248641 -0.301038 -0.418793 -0.477059 -0.164099 0.356203 -0.287977 0.377804 0.270713 -0.113704 -0.878327 0.262985 0.195589 -0.188062 -0.532769 0.298621 -0.173182 0.115581 -0.397939 0.011430 0.131485 0.324848 0.320135 0.235201 0.323148 -0.037234 -0.100818 0.164473 0.667110 -0.253325 0.180037 0.359791 -0.053337 -0.054925 -0.186826 0.237425 -0.121299 0.223831 0.308172 -0.055994 -0.329730 -0.294688 -0.477842 -0.474255 0.239572 0.021787 0.413530 -0.462611 0.031874 -0.144498 -0.023119 -0.402538 0.430076 0.746942 -0.456219 0.480206 0.123621 0.319121 -0.094549 -0.112846 0.225533 -0.135644 0.217782 -0.146037 -0.143643 -0.384925 -0.096052 -0.054077 -0.022663 -0.002730 -0.487752 0.314171 -0.015193 -0.366189 0.154898 0.125956 0.027642 -0.059302 0.123966 0.081592 0.512625 -0.308221 -0.338485 -0.141854 -0.231303 0.156648 -0.103376 0.059642 0.022094 -0.319947 -0.325309 -0.549153 -0.081386 -0.033285 -0.430059 0.083015 0.202264 -0.263760 0.219885 -0.037171 0.109222 -0.157584 0.557789 0.346668 0.214580 0.342556 -0.101694 -0.385788 0.010476 0.425299 0.847812 -0.262564 0.025972 -0.247415 0.047114 -0.106076 -0.288776 0.226043 0.168302 0.421266 -0.418702 -0.492155 -0.313047 0.003656 -0.492568 0.157629 -0.398733 0.306112 0.349781 0.332229 0.102968 0.359431 0.911610 -0.464491 0.314571 -0.056171 -0.093590 0.202034 0.317829 0.266576 -0.170392 -0.249086 0.188423 0.220032 0.068170 0.120952 -0.113562 0.185971 -0.503043 -0.120677 0.200610 0.240191 -0.275405 0.185842 0.090705 0.009336 -0.236563 -0.103891 0.314978 0.048655 -0.111938 0.180152 -0.557206 0.444565 -0.109544 -0.077376 0.078936 0.071370 -0.392163 0.382427 -0.216815 0.002454 -0.159447 0.075594 -0.218559 -0.134298 -0.365609 0.248639 -0.122747 -0.187242 -0.018081 0.104686 0.550397 -0.064794 -0.178031 0.008917 0.030807 0.157204 -0.610141 0.684621 -0.295123 0.329183 -0.061279 -0.132656 0.029957 0.006200 -0.134862 -0.266939 0.238066 0.047115 0.073172 0.486191 0.254106 -0.137221 0.147488 0.403695 0.090875 0.317431 0.096920 0.152384 -0.129906 -0.217130 0.146475 -0.076956 0.079436 -0.094929 0.004896 0.626461 0.232267 0.224719 0.615278 0.087623 0.503521 -0.350551 0.085110 -0.017047 0.735710 -0.190048 -0.043920 -0.095029 0.312867 -0.237024 0.345871 -0.434464 -0.808973 -0.170557 -0.519674 -0.159161 -0.084036 0.136467 -0.226716 0.045589 -0.434569 -0.219285 -0.132565 -0.163873 0.382197 0.309923 -0.014836 0.379174 0.278644 -0.400476 -0.281681 0.147467 0.284274 0.049101 0.056235 -0.354275 0.133337 -0.494500 -0.064789 0.549201 -0.273374 -0.051718 -0.142722 0.659461 -0.252993 0.823565 0.266973 -0.366526 0.439009 0.243450 0.581003 0.166334 -0.279611 -PE-benchmarks/magic-square.cpp__main = -0.072938 -0.430857 0.656352 0.530553 0.034117 0.035859 0.394488 -0.062788 0.342826 0.128081 -0.167301 0.210564 -0.541686 0.179299 -0.137711 0.353022 -0.456996 -0.478737 0.067302 -0.030790 -0.051641 -0.301122 0.379020 0.042470 0.381994 0.198397 -0.246423 -0.383088 -0.525725 -0.144175 0.338832 -0.246761 0.359771 0.269817 -0.120994 -0.820646 0.247899 0.248676 -0.174879 -0.510116 0.293841 -0.262429 0.138754 -0.326935 0.022489 0.119480 0.264419 0.309873 0.269094 0.245135 0.037403 -0.123539 0.141608 0.650898 -0.306121 0.230622 0.295370 -0.019358 -0.071016 -0.114009 0.175252 -0.090754 0.253036 0.320334 -0.139649 -0.276972 -0.247696 -0.422607 -0.505162 0.263220 -0.037748 0.339974 -0.480808 0.015293 -0.167220 -0.050994 -0.465080 0.406764 0.730140 -0.440716 0.501797 0.115140 0.263164 -0.119542 -0.024741 0.171349 -0.040015 0.151983 -0.175942 -0.142656 -0.395700 -0.067388 -0.056251 -0.010396 -0.016182 -0.448362 0.284820 -0.045990 -0.430423 0.121077 0.068736 -0.005187 -0.096717 0.167133 0.080679 0.463871 -0.314047 -0.431495 -0.152029 -0.120397 0.130020 -0.109684 0.056540 -0.013159 -0.302084 -0.387311 -0.520759 -0.111034 -0.032983 -0.450900 0.013464 0.271197 -0.263308 0.243859 0.022910 0.101583 -0.118546 0.560061 0.272505 0.196948 0.332443 -0.105531 -0.420089 0.002900 0.370922 0.797808 -0.235084 0.080378 -0.201738 0.036130 -0.136694 -0.249510 0.193099 0.181834 0.392492 -0.410864 -0.400254 -0.250613 0.024295 -0.513938 0.164772 -0.373795 0.288601 0.269280 0.341063 0.129857 0.325715 0.900594 -0.454162 0.268861 -0.027925 -0.122703 0.227243 0.325855 0.286824 -0.191899 -0.302847 0.172182 0.218727 0.067020 0.070447 -0.056369 0.103414 -0.476961 -0.114734 0.161424 0.215241 -0.235635 0.262529 0.130304 0.066100 -0.297632 0.004871 0.294086 0.031465 -0.046604 0.120226 -0.579357 0.444156 -0.059249 -0.102426 0.099064 0.036910 -0.355017 0.349489 -0.225847 0.059862 -0.256553 0.075539 -0.263698 -0.146873 -0.410716 0.202516 -0.077192 -0.263716 -0.021220 0.125599 0.529495 -0.032972 -0.169398 0.072188 0.034802 0.164567 -0.598099 0.706040 -0.292053 0.299599 -0.113403 -0.125955 0.027270 0.101198 -0.081259 -0.250269 0.223248 0.005155 0.146950 0.500980 0.238171 -0.085327 0.167251 0.412723 0.107788 0.243979 0.017960 0.197664 -0.085356 -0.198396 0.181529 -0.127755 0.119196 -0.045415 0.000768 0.688970 0.337579 0.161824 0.573464 0.135996 0.458079 -0.285308 0.112083 -0.033917 0.667019 -0.182341 -0.039329 -0.102547 0.254705 -0.211097 0.335282 -0.462138 -0.805916 -0.100925 -0.503458 -0.104970 -0.109693 0.149473 -0.139710 0.080507 -0.495038 -0.231848 -0.110710 -0.201876 0.388409 0.239299 0.037114 0.370154 0.337032 -0.351527 -0.222433 0.161707 0.275056 -0.018061 0.025055 -0.302377 0.138060 -0.497776 0.031411 0.474191 -0.244847 -0.029794 -0.146042 0.623004 -0.293301 0.776104 0.267666 -0.297660 0.483088 0.272328 0.569092 0.163990 -0.265763 -PE-benchmarks/optimized-naive-algorithm.cpp__main = 0.481100 -1.658956 8.679443 3.572307 -1.860673 -0.079924 5.520775 -4.169525 5.036607 -1.363471 -1.777382 -1.495800 -6.020859 0.026236 -2.646865 0.889150 -8.009808 -4.051246 -0.722379 -3.952180 -1.665192 -4.235573 5.358574 0.024056 4.796911 2.826192 -1.267347 -2.954508 -3.657446 -1.591639 6.316500 -1.704813 2.166747 3.641952 0.101763 -9.924644 4.416561 1.063189 -2.361790 -2.834789 3.845716 -1.315558 -0.557559 -1.501463 0.752750 0.598779 1.679351 8.502127 5.160589 1.976970 0.449625 -3.217405 -1.091556 7.797892 -4.452681 1.938743 1.687217 -1.120750 -0.856048 2.914709 -0.257792 -1.710170 0.664613 4.020986 -1.357440 -2.253237 2.668382 -5.673845 -5.288727 5.812456 0.625702 -0.162271 -3.620949 -1.044043 -2.882238 -0.031849 -3.724199 5.597252 7.596114 -4.170038 4.696974 -0.249074 2.124531 -2.400756 -1.344509 0.388497 2.245975 0.005929 -1.745312 -3.192017 -7.736122 -1.854078 -0.571704 -2.046247 0.988620 -7.047852 3.273899 -4.630901 -5.154442 -0.342099 2.383795 -2.162537 -1.687965 3.273785 1.952607 1.247034 -2.106602 -4.914923 -1.365331 0.556635 -3.656460 2.695082 1.136075 0.570311 -3.239348 -3.588644 -5.496564 0.605960 -1.829250 -2.459795 -1.242045 4.038083 -3.004669 1.622756 2.729904 2.856756 -1.392210 4.673484 0.928474 0.934462 3.695510 0.632216 -1.734226 0.167264 3.522292 7.276842 -0.147667 -0.360103 -1.960263 1.189310 -5.543382 -2.253974 -0.879725 2.129091 1.746189 -6.552372 -4.650478 0.357120 -0.838080 -7.207088 1.717970 -3.311472 -2.033145 0.758588 3.002485 4.716005 2.747641 6.538729 -5.252106 2.455640 -0.561339 -1.754355 1.380864 2.455081 4.682163 -2.767970 -2.079442 -1.246481 -1.092592 1.713449 -1.246121 -1.489453 -0.247759 -7.715983 -2.580930 -0.086449 2.299370 -1.493043 0.216422 4.749172 1.453695 -6.262863 -0.021753 5.506449 -0.426201 -2.560342 3.485021 -5.632004 4.159821 0.467510 0.470411 2.858845 0.860121 -1.882986 2.259607 -1.938403 1.005795 -3.286819 -3.008656 -2.248197 -1.043107 -3.954656 2.265407 -2.456067 -2.804467 -1.270768 -2.127859 4.610900 -1.574234 -4.169873 6.416483 -1.688925 4.324014 -6.193310 6.720028 -2.318795 2.075404 -1.061500 -0.001060 -0.968412 -0.294892 -2.056255 0.807223 -1.229165 0.658603 4.210362 7.203611 3.024729 2.296528 0.098857 6.378944 -1.765388 3.219828 -1.504269 2.481512 -2.412815 -4.610100 1.616533 -0.847493 -1.250349 -1.171319 1.933584 7.682189 4.142809 2.338893 7.230569 1.516357 5.242835 -1.652183 1.774942 0.197187 4.347699 -1.830919 -2.436297 2.767509 1.939520 -3.425495 2.962007 -6.682047 -10.189865 -2.465804 -8.541089 -1.002363 -5.732367 2.330768 -1.121080 0.452694 -5.461189 -1.925402 -0.137554 -0.351819 4.462628 3.129814 0.085793 3.691635 6.897016 -4.583575 0.280359 3.775088 5.176063 -1.159972 -1.487511 -5.876693 3.303631 -5.395596 1.406099 6.550719 -2.827599 0.694011 -4.522400 6.655689 -6.693529 5.782239 1.773858 -2.772407 4.992396 2.280655 5.144938 6.143545 -2.112574 -PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.262969 -4.440914 5.489905 3.764384 0.672265 2.003693 1.754648 0.020349 0.750999 1.804635 -2.131164 4.068123 -3.663750 -1.094106 0.501804 -1.035368 -3.003094 -3.881381 0.386900 -0.005237 -1.340019 -2.602989 -2.682041 5.694589 2.080894 0.553254 -2.211845 0.447459 -6.878557 -2.024004 -2.282929 -0.007073 2.318916 0.241178 3.513437 -4.481028 1.502730 4.262067 0.937523 -4.800935 0.880456 -2.399556 0.367675 -0.023007 -0.452057 1.748145 3.821368 1.616164 0.672068 0.276701 -0.671740 -2.408249 0.277854 4.224167 1.858083 3.316084 4.558291 -1.729108 1.157747 -1.251202 0.388128 -4.165600 1.852889 0.950806 -3.103965 -0.477178 1.543499 -0.614021 -1.304418 1.704752 2.953904 -1.838401 -1.768558 -2.698487 -3.720922 -1.115583 4.621115 2.108735 5.256067 -2.085508 5.312241 2.277859 3.957142 0.637213 3.547470 -0.391045 4.064824 0.483593 -2.771271 -0.568261 -6.400390 -1.569787 -1.800122 3.223976 -1.407252 1.262025 1.118341 -5.895318 -5.373802 1.837374 -1.290569 -1.949026 -2.204865 1.983995 2.508139 1.811528 0.280249 -3.370120 -2.250405 2.227052 -3.642118 -0.870277 0.155504 -0.100611 -0.955762 -0.620394 -3.872869 1.102027 3.137942 -1.937302 -1.439611 4.375205 -2.199009 4.632270 0.455838 0.782570 0.827146 1.911605 3.355485 -0.893490 0.233814 -4.090516 -3.471677 -0.426308 -0.565011 1.304473 -3.317873 -0.713765 2.024944 1.418047 0.631798 1.454321 -1.785262 5.523374 0.527409 -2.763135 -3.240424 -4.492825 -2.696220 -1.814471 0.150132 -1.089341 -2.701640 -0.076744 2.391725 1.685541 -1.011895 4.080070 -0.738772 2.544501 1.280114 -0.956586 -0.136369 -1.481840 1.951306 -3.169919 -1.953087 2.267380 2.511845 1.753621 0.060718 -0.892143 0.820060 -2.330747 -3.374812 1.468446 0.680991 2.744160 4.794408 3.205899 6.015983 -3.567794 -0.457485 -0.321129 -0.213613 -1.299305 0.322261 -3.128976 1.795428 0.497044 0.445875 5.730103 0.204837 -2.576359 2.311713 0.988881 0.869913 -3.675240 2.674043 -2.053357 1.129656 -1.159632 -1.151998 -2.926777 -1.396513 -3.608598 -1.834839 5.337683 -1.927451 -6.514059 1.346440 -0.048501 4.307918 -6.895541 2.362599 -1.831710 4.439861 -0.441543 -1.378070 0.115997 -0.528187 -0.203964 2.264491 1.284299 -1.940582 2.027173 1.326297 0.911893 1.804953 1.235140 1.255699 0.239817 0.372909 -1.518561 0.563420 -0.185838 -0.928578 -1.187214 -0.940315 1.791234 3.453079 -1.035012 -0.699695 3.233051 -0.217609 1.419753 3.713531 -0.183090 -1.591264 -0.744252 -0.807013 4.271957 -2.970584 -2.533861 -2.086372 1.333198 1.120223 0.898327 -5.445932 -3.599169 -1.674374 -6.289549 -1.814119 -0.009664 0.846020 2.311851 -0.495313 -4.609531 -2.111862 2.820932 1.032377 6.820968 1.947332 0.687506 4.202304 1.904473 0.103810 -1.959596 1.033467 0.788142 -2.276707 -0.399889 -2.911653 1.302058 -3.535532 3.940618 3.780335 -2.144419 2.346675 -1.085460 1.421962 -4.905305 5.136207 2.605560 -5.883487 -0.305554 1.801879 3.633422 -3.533785 -3.266401 -PE-benchmarks/Iterative_QuickSort.cpp__main = 0.182243 -0.698906 1.741581 1.178067 -0.438185 -0.008915 0.405246 -0.313797 0.526901 -0.291975 -0.448420 0.627349 -0.779021 0.251972 -0.428821 0.603368 -1.555354 -0.747145 -0.025884 -0.266640 -0.167110 -0.307884 0.506755 0.394863 0.879194 0.939968 -0.549817 -0.387942 -0.658400 -0.522132 0.484037 -0.455210 0.644259 0.508962 0.181601 -1.891747 0.785052 0.578496 -0.389760 -1.035575 0.642941 -0.410381 0.090760 -0.941863 -0.468940 0.252444 0.518844 0.929732 0.468034 0.443331 -0.534894 0.000791 0.555734 1.437912 -0.236069 0.410400 0.820380 -0.199320 -0.066366 -0.396279 0.343556 -0.266565 0.251239 0.250557 -0.069732 -0.852893 -0.443034 -0.842275 -0.592543 0.525262 0.097125 0.417222 -0.893244 -0.164046 -0.995745 -0.083023 -0.647568 1.105667 1.332559 -1.048792 0.770791 0.194058 0.381685 0.082065 -0.017096 0.426117 0.140807 0.439055 -0.099243 -0.051998 -0.748537 -0.402761 0.181872 -0.511045 -0.235518 -1.813090 0.578151 -1.327093 -0.884851 0.308723 0.437967 -0.405111 0.186355 -0.162577 0.244597 0.751492 -0.569464 -0.554963 0.093536 -0.185939 0.141559 -0.099116 0.239539 0.376040 -0.239021 -0.371793 -1.247605 0.322570 0.076508 -0.381587 0.476458 0.606867 -0.131778 0.329955 -0.066028 0.295770 -0.386536 1.203448 0.389508 0.341239 0.053866 0.208342 0.180572 0.133513 0.666184 0.857645 -0.581264 -0.226964 -0.363620 0.297735 -0.311739 -0.433396 0.063830 0.423080 0.347588 -0.700026 -0.857137 -0.705453 -0.824371 -1.133973 0.161724 -0.502790 -0.233574 0.953724 0.660156 0.324233 0.665951 1.006403 -0.621305 0.162243 -0.096147 -0.154100 0.516778 0.323001 0.587511 -0.383669 -0.397967 0.518246 0.064884 0.628325 0.068400 -0.068150 0.400559 -0.836595 -0.164175 0.430466 0.651094 -0.231939 0.604918 0.579402 -0.131873 -0.202186 -0.232242 0.596224 -0.176466 -0.224640 0.371741 -0.917720 0.694201 0.022538 0.073546 0.511832 0.079007 -0.426340 0.708645 -0.208797 0.069490 -0.458484 -0.066894 -0.413223 -0.177358 -0.665954 0.543101 -0.429608 -0.328757 -0.557713 -0.498443 1.170843 -1.056477 -0.365418 0.469363 0.029430 0.807057 -1.058134 1.007468 -0.570568 1.068487 0.216128 -0.216203 0.275923 -0.652870 -0.635223 -0.288638 0.376383 -0.011563 -0.003126 0.576618 0.603519 -0.170381 0.096239 0.841203 -0.181080 0.931483 -0.150713 0.360072 -0.382554 -0.461707 0.205274 -0.061901 -0.178358 -0.161578 0.375558 1.019288 0.139791 0.852655 1.085426 0.330876 0.968683 -0.665357 0.159639 -0.211382 0.949292 -0.516040 -0.331301 -0.024901 0.822782 -0.235577 0.600000 -1.150223 -1.605217 -1.412296 -0.851299 -0.287817 -0.502367 0.315542 -0.377200 -0.072985 -0.809620 -0.643118 0.455998 -0.227690 0.454200 0.794294 -0.038507 0.839202 0.658167 -0.575210 -0.370664 0.445152 0.680876 0.248288 0.181418 -1.114487 0.632579 -0.948988 -0.044328 1.459273 -0.747001 0.197297 -0.378529 1.143774 -0.722756 1.406392 0.393337 -1.096701 0.581689 0.862249 0.652378 0.432545 -0.631276 -PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.789443 -0.702282 1.656300 1.056237 0.145103 0.254162 0.739228 -0.595295 0.833717 0.605793 -0.070607 0.498032 -0.956896 0.161563 -0.489612 0.657158 -0.834992 -0.902829 -0.138707 -0.854567 -0.392576 -0.487954 0.412780 0.068559 0.835129 -0.453412 -0.666452 -0.653350 -1.357154 -1.105381 0.344643 -0.368280 0.677723 -0.886617 -0.261108 -2.728297 0.898207 0.924508 -0.515890 -0.954813 0.808996 -0.726023 0.264208 -0.073383 -0.328688 0.060340 0.349723 -0.140596 0.776125 0.447163 0.668552 0.280393 0.245834 2.337181 -0.854594 0.735234 0.454371 -0.279277 -0.570415 0.272255 0.115709 -0.252673 0.629891 0.223786 -0.287093 -0.888638 -0.101136 -0.434523 -1.010631 0.496703 -0.130369 -0.416413 -0.462573 -0.125376 -0.918483 -0.578942 0.001990 0.481373 1.321583 -0.816461 1.085096 0.026164 0.241599 0.154284 0.375762 0.223287 0.567524 0.141443 -0.260257 -0.440481 -0.366016 0.340308 -0.019276 0.847961 -0.257308 -1.056403 0.846294 -0.498789 -1.193291 0.414135 0.354577 -0.320849 -1.129260 -0.212842 0.227056 0.699116 -0.753745 -1.095974 -0.744459 0.318897 0.023521 -0.275082 0.102785 -0.888200 -0.385433 -0.549895 -1.105452 0.197393 0.064937 -0.482665 -1.055129 0.983002 -0.501927 0.245474 0.130723 0.843676 -0.528635 0.870621 -0.070003 0.629790 -0.026624 0.016031 -1.637803 -0.628387 0.494151 0.966161 -0.493667 -0.091727 -0.675407 0.135071 -0.581371 0.194022 -0.060865 1.023963 1.167689 -0.588863 -0.612747 -0.334374 0.159231 -1.286837 0.164935 -0.617146 -0.242837 0.270834 0.757524 0.359299 0.646916 1.645988 -0.492651 0.719980 -0.048345 -0.664362 0.890378 -0.411895 0.814425 -0.644712 -0.674018 0.190500 0.551297 0.539785 -0.054591 0.173420 0.120108 -0.994985 -0.377535 0.001375 0.419351 -0.209555 0.700094 0.775158 1.817300 -1.400025 0.133721 0.563533 -0.458136 0.068690 0.022745 -1.034393 0.169628 0.468276 -0.502064 1.073253 0.124769 -0.903149 0.464800 -0.321892 0.305580 -0.739630 0.396365 -0.665316 -0.167800 -0.430227 -0.545558 -0.587925 -0.462107 -0.590501 -0.557594 1.221334 -0.810341 -1.068616 0.808105 -0.007706 0.317763 -1.918996 1.831473 -0.741795 0.791495 -0.695083 -0.020402 -0.183155 0.976755 -0.618023 0.461619 0.338374 -0.563858 0.769017 1.631509 0.569609 0.419995 -0.226341 1.100399 -0.159026 0.684561 -0.348114 0.993906 -0.327159 -0.722068 0.054431 -0.261553 -0.033217 -0.019255 0.357172 0.583910 0.695269 -0.061943 0.525901 1.038181 1.061300 -0.460233 0.734806 -0.188438 1.072666 -0.301556 -0.333920 0.195240 0.635358 -0.042851 0.540352 -1.380254 -1.311099 -0.653255 -1.454703 0.388663 0.288079 0.055711 -0.156151 0.045352 -1.490652 -0.602522 0.623809 -0.333852 1.153462 0.598342 0.381406 0.819872 0.914452 -0.454673 -0.248391 -0.094596 0.203368 0.012596 -0.511319 -0.571258 0.691614 -1.043832 0.368979 0.841238 -0.368074 0.288385 0.336841 0.421650 -0.884005 1.480928 0.342271 -0.397704 1.154885 0.894274 1.436844 -0.291045 -0.511648 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = 0.676542 -0.894220 3.318428 2.153589 -0.851816 -0.197969 0.774114 -0.931712 0.940940 -0.713672 -0.885150 0.975652 -1.304806 0.758324 -1.382544 1.300863 -2.934346 -1.241761 -0.271200 -0.864600 -0.330390 -0.314153 1.414873 0.231969 1.891875 1.567944 -1.017439 -1.045177 -1.169903 -0.875332 1.161393 -0.791986 1.036146 0.704548 -0.120371 -3.268605 1.523749 0.973829 -0.930415 -1.567861 1.584801 -0.891242 -0.206808 -1.622916 -0.644106 0.188039 0.546630 1.884938 1.112208 0.906334 -0.656829 0.432287 0.914925 2.905922 -0.927223 0.663661 1.180993 -0.273771 -0.383738 -0.334970 0.498648 -0.159244 0.304783 0.399056 0.126078 -1.930442 -0.822359 -1.633611 -0.916048 1.056368 -0.042473 0.605106 -1.488918 -0.109159 -1.474427 0.006200 -1.529135 2.110454 2.151583 -1.886745 1.090246 -0.074838 0.214340 -0.169974 -0.379790 0.770525 0.052672 0.731948 0.271069 -0.719351 -1.223177 -0.323574 0.504886 -1.000960 -0.493292 -3.477060 1.322514 -2.133998 -1.528588 0.182339 1.166282 -1.065619 0.702863 0.017514 0.101880 1.166372 -0.927394 -0.843413 0.398662 -0.308203 0.493750 -0.165794 0.173649 0.340335 -0.475126 -0.672303 -2.290587 0.873780 -0.273966 -0.425301 0.601339 0.914312 -0.035911 0.049261 -0.057579 0.839381 -0.818314 2.117618 0.179046 0.776669 0.326342 0.934040 0.388910 0.681511 1.576981 1.482492 -1.245383 -0.058730 -1.001207 0.436646 -0.947767 -0.946393 -0.102152 0.801755 0.597821 -1.573798 -1.600073 -0.854842 -1.104089 -2.050231 0.163892 -0.981773 -0.693511 1.323250 1.154734 0.853344 1.463515 1.950740 -1.202480 0.304399 0.097197 -0.338469 1.252837 0.433932 1.132611 -0.792044 -0.766283 0.750829 -0.165051 0.867887 -0.208090 0.437747 0.638032 -1.927093 -0.063632 0.846738 1.196294 -0.579003 1.008154 1.201057 -0.219727 -0.585221 -0.255432 1.384592 -0.722185 -0.504734 0.794092 -1.695865 1.099687 0.201906 0.336884 1.066368 0.317044 -0.684794 1.068161 -0.477352 0.146486 -0.718983 -0.221249 -0.678142 -0.595024 -1.065903 0.898866 -0.436113 -0.578462 -0.797491 -1.084624 1.983688 -2.113488 -0.599934 1.102711 -0.169388 1.025805 -1.979407 2.094537 -1.172727 1.470697 0.439065 -0.201093 0.373280 -0.975102 -1.720441 -0.163562 0.554601 0.051843 0.310580 1.546671 1.202959 -0.208775 -0.157660 1.753968 -0.647819 2.062033 -0.267609 0.908229 -0.650894 -1.193480 0.348286 -0.051132 -0.913876 -0.709457 0.919670 2.346613 0.123830 1.761149 2.011972 0.513906 2.378252 -1.165066 0.791869 -0.588806 1.409250 -0.729502 -0.798644 0.541191 1.229644 -0.464029 1.159307 -2.154049 -3.169147 -2.582910 -1.708703 0.161357 -1.536605 0.743796 -1.026805 -0.237857 -1.683854 -1.325834 0.464989 -0.453665 0.887236 1.569041 -0.074871 1.203186 1.230691 -1.221335 -0.128857 0.598946 1.603026 0.783586 0.012739 -1.994153 1.334164 -1.510958 -0.339981 2.815627 -1.280216 0.467117 -0.573725 1.855359 -1.253001 2.369030 0.462075 -1.735933 1.403068 1.485945 0.963607 1.169726 -1.049260 -PE-benchmarks/topological-sorting.cpp__main = 0.235072 -0.533061 1.451804 0.731569 -0.870946 -0.267231 0.045445 0.044122 0.587269 -1.942103 -0.785137 0.325471 -0.727604 0.439482 -0.631858 -0.028128 -2.319174 -1.021948 0.280274 0.183478 -0.019947 -0.425353 0.771038 0.473656 0.489662 1.896801 -0.521820 -0.081077 -0.474852 1.161259 1.636714 -0.854517 0.696053 1.909422 0.072820 -2.404592 0.434862 -0.367935 -0.368217 -0.824223 0.461136 -0.807625 0.212389 -2.182468 -0.760133 -0.036899 0.634067 1.652654 0.481796 -0.246280 -1.638963 -0.437182 -0.566943 1.185236 -0.605364 -0.132570 0.682327 -0.288160 -0.162091 -0.782687 0.420488 -0.264680 0.365354 0.927695 -0.696854 -0.731802 -0.162888 -1.767907 -0.785536 0.780495 0.353227 1.797329 -0.846480 0.371596 -1.164555 0.088629 0.722823 1.561748 1.516498 -1.023674 0.664513 -0.107532 1.001290 0.031618 -0.240241 0.773349 0.242073 0.426025 -0.388985 -0.285903 -1.851480 -0.220601 -0.040446 -1.079474 0.551077 -1.562430 0.069897 -1.831381 -0.428790 -0.201815 0.267515 0.073410 0.530836 0.185870 0.686457 0.810995 -0.472063 -0.363872 0.515214 -0.613158 -0.303050 0.267189 0.495359 1.003163 -0.432755 -1.352332 -1.231831 -0.044138 -0.226815 -0.491134 1.402385 0.515643 -0.849006 0.105949 -0.009670 -0.040942 -0.450781 1.530882 0.407235 -0.473156 0.409889 -0.401815 1.238851 -0.079304 0.626573 2.536599 -0.757533 -0.769360 -0.253349 0.127040 -0.664321 -2.128111 0.361011 -0.310533 -0.354680 -1.150645 -0.964986 -0.737228 -0.759768 -1.608136 -0.144203 -0.763428 0.011475 1.780132 0.695518 0.939654 1.014246 1.439342 -0.745356 0.741807 -0.271169 -0.012446 0.549642 1.017212 0.644477 -0.264482 -0.126420 0.480527 -0.867428 0.592553 0.120017 -0.683150 0.311102 -1.302631 -0.575429 0.716952 1.128095 0.324670 0.197417 0.186774 -2.072025 -0.740593 -0.033015 0.891517 0.319986 -0.530310 0.777619 -0.653372 1.160427 -0.149301 -0.182259 -0.241810 0.103783 -0.855932 0.214377 0.146765 0.187504 -0.373567 -0.812439 -0.037319 -0.034420 -1.070078 1.015092 -0.450260 -0.455249 -0.532206 -0.702730 0.985892 -1.266849 -0.585694 0.426356 0.278683 1.967642 -1.175904 -0.413836 -0.721815 1.939183 0.471624 -0.115531 0.267442 -1.693599 -0.543283 -0.272767 0.344392 0.364835 -0.272618 0.068496 0.944991 0.138302 0.407113 0.880352 0.340263 0.848226 0.301715 -0.332485 -0.362779 -0.710483 0.827214 -0.111722 -0.125071 0.081898 0.837004 1.690629 0.627513 1.814601 2.297976 0.259708 0.849259 -0.710662 -0.948088 -0.467815 1.091813 -0.266723 -0.336477 -0.270774 1.186353 -0.553980 0.395168 -0.919253 -2.880606 -1.801387 -1.151017 -0.445186 -1.372825 0.047146 -0.285916 0.452497 -0.784994 0.143233 -0.679042 -0.309536 2.049825 0.641272 -0.367024 0.723416 0.759052 -1.605985 -1.111854 1.672888 1.359942 0.032282 1.152985 -2.454788 0.679514 -1.110033 -0.059587 1.973912 -1.199689 -0.408280 -0.616571 1.998216 -0.430015 1.708383 0.714329 -1.716659 0.486155 -0.013288 0.144021 2.150637 -0.677438 -PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -0.095569 -2.123945 6.497433 4.449375 -1.823720 0.754008 0.842514 -2.583219 1.699201 -0.679669 -1.428683 1.896689 -3.121122 0.871446 -1.584017 1.342400 -5.794125 -2.362010 -1.165368 -2.483743 -1.639900 -1.416841 0.840910 2.275240 3.051861 3.471812 -2.233299 -0.389747 -3.102423 -2.567296 1.317577 -0.828391 2.310432 2.551229 1.245955 -7.205481 3.198894 3.023125 -1.234275 -2.848458 2.338982 -2.465742 -0.370880 -2.205749 -1.533573 0.879157 0.829390 2.437744 2.441728 0.481953 -0.541906 0.169378 1.372327 5.358917 -1.274828 2.190764 2.304057 -1.308287 -0.412134 -0.449761 0.364632 -0.778544 1.356933 0.844796 -1.134822 -3.477146 0.020365 -2.460278 -1.812061 2.790218 0.841496 -0.728302 -2.545948 -1.691371 -3.616281 -0.931754 -0.999780 3.650809 4.537284 -3.117702 2.896250 0.409243 0.680317 -0.032545 1.574406 0.582391 3.300248 0.861564 -0.413686 -0.455435 -2.786044 -1.082895 0.727623 0.751109 -1.560461 -4.314731 1.977908 -6.169498 -4.238479 0.757195 1.627952 -2.364033 -0.969294 0.075370 1.035537 1.026395 -1.113430 -2.678202 -0.019513 0.964615 -0.821827 -0.503329 -0.325352 0.311734 -0.725345 -0.686775 -4.656325 1.923687 0.208168 -0.595073 -0.186286 3.303090 0.116659 0.623623 0.253530 1.817140 -1.369046 3.737541 -0.284497 1.122545 -0.318199 0.917812 -0.102368 0.063547 1.923410 1.588258 -2.660349 -1.776227 -1.098242 1.058093 -2.274953 -0.428866 -1.108108 3.455114 1.875280 -2.675091 -2.875956 -1.951911 -2.788727 -4.691622 0.000753 -1.757108 -2.669845 1.417443 2.554283 2.168392 2.065179 3.067684 -1.590390 1.178228 0.324248 -0.917502 2.648071 0.168252 2.505393 -2.379022 -1.848084 1.850228 -0.226901 2.381282 -0.382392 0.447914 0.573580 -3.221006 -1.589874 2.179920 1.684563 0.581287 3.270217 3.488338 3.891187 -2.621120 0.703309 2.162046 -1.460199 -0.742210 1.321440 -3.027838 1.706011 1.088826 0.036623 4.064040 0.144094 -1.424345 1.316820 -0.048316 1.024944 -2.990322 0.493448 -1.654155 0.239207 -2.394833 0.349784 -1.776487 -1.563682 -2.417678 -2.659690 4.558032 -4.921068 -3.143423 3.804373 -0.312759 3.305489 -5.081885 2.994289 -2.340694 3.495755 -0.690705 -1.035309 0.516242 -1.585032 -3.028275 1.702671 1.035976 -1.145425 0.948409 2.964865 2.133433 1.012029 -0.483060 3.280145 -0.882092 3.373935 -1.646862 2.683157 -0.549798 -1.575778 -0.172135 -0.677979 -1.383537 -0.101628 1.434306 2.908038 1.826942 2.627268 2.416985 2.380944 3.366106 -1.843724 1.255590 -1.077926 1.972013 -1.995204 -2.244160 0.962182 2.267783 -0.325292 1.634097 -5.146117 -5.546158 -4.627519 -3.968492 -0.388976 -1.328308 1.518505 0.049604 -0.627663 -3.723917 -2.623690 3.049531 -0.553242 3.857582 2.342666 0.484993 2.927047 3.205752 -1.348710 -0.615489 0.888446 2.394998 0.525550 0.016265 -4.529647 3.544277 -2.750300 1.310996 5.254094 -2.768489 1.969753 -0.818852 3.925180 -3.660416 4.773463 1.076301 -3.993548 2.408240 3.169379 2.129755 1.139353 -2.380723 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -1.252277 -2.930734 6.896236 4.133461 -0.206923 0.869818 2.225463 -1.184707 1.548955 1.927070 -1.600660 1.752679 -3.835429 -0.780021 0.769513 0.765916 -4.729098 -3.687507 -0.455183 -1.123824 -2.223951 -2.773938 0.228623 3.504015 3.168236 2.844347 -2.801204 -0.328168 -3.323492 -4.815911 -0.178695 -0.505465 2.610963 3.058009 2.375211 -6.406293 3.772268 3.031186 -0.087901 -2.478109 1.938370 -0.933089 -0.055052 -0.465372 -0.889821 2.532740 3.175327 3.193031 2.361817 1.657093 0.491388 -3.043202 1.613276 4.311440 0.699213 2.503543 3.370348 -1.557338 0.776254 -0.551351 -0.004151 -3.373615 1.187205 1.576852 -1.908983 -0.606135 2.044484 -2.335398 -2.424560 3.460886 1.387735 -2.189167 -2.589083 -2.796327 -2.439105 -0.417659 1.151647 3.345302 5.121245 -3.110890 4.342313 1.768976 2.898094 0.092531 0.391834 -0.338483 2.752048 0.456110 -1.868191 -1.538742 -5.072622 -3.297724 -1.489115 1.192169 -1.392867 -0.825699 1.682558 -5.408878 -5.055192 1.176630 -0.039248 -2.180099 -2.654881 1.633278 2.519609 0.704721 0.938878 -3.106867 -1.721098 1.553389 -3.562480 0.757580 -0.487797 0.232793 -1.744296 0.667213 -5.117411 2.025957 1.029604 -1.777224 -1.017737 3.922645 -1.420145 3.300943 1.269634 1.717100 -0.175256 3.430608 2.945124 0.548320 1.263347 -1.276152 -1.969197 0.163530 1.312028 1.053896 -2.364620 -1.771707 0.218381 1.138161 -1.840787 0.947509 -1.857093 4.414643 2.495808 -3.642844 -4.716516 -2.851379 -3.658993 -4.280273 1.182406 -1.933317 -1.893343 1.405310 2.247930 2.338239 0.400376 4.350929 -3.262630 1.953081 0.374828 -1.108216 -0.311238 0.272569 2.507542 -3.100699 -1.748238 2.087251 1.857074 1.530470 -0.454654 -1.449509 1.115428 -3.613429 -3.046781 2.119103 -0.073889 1.641300 2.259068 3.604083 6.439368 -3.078688 -0.567144 1.907809 -0.492802 -1.904571 2.028629 -3.520456 2.577058 0.118882 0.520201 4.924716 0.455247 -1.747924 2.713141 -0.161890 0.312104 -3.659917 1.382856 -1.605221 0.952599 -1.694982 -1.128887 -2.884431 -1.044651 -1.996697 -2.169472 4.982356 -1.684441 -5.213424 3.108060 -1.140240 3.500215 -5.572014 4.295311 -1.817330 2.568985 -0.460460 -1.993990 -0.334698 -1.849777 0.024950 1.270098 -0.079854 -0.391389 1.847903 3.559053 1.425550 1.521599 0.653550 2.433910 0.103245 2.642039 -0.980652 0.845059 -1.122980 -1.179728 -0.877721 -0.577944 -0.068307 1.591296 -1.164938 1.580088 3.301260 0.278932 2.802529 2.606286 2.117728 -1.751367 -0.044501 -0.189409 3.905867 -3.074750 -2.953403 0.176614 1.488554 -0.764167 1.412522 -5.519237 -4.749849 -2.747840 -6.703449 -2.792795 -0.877431 2.156134 0.281321 -0.935456 -3.425884 -2.278517 3.732424 1.069438 4.625208 2.350707 -0.053737 4.367014 3.713298 -1.177700 -1.816067 1.411814 1.309443 -1.056805 -0.045746 -4.388138 2.710014 -2.908246 2.569068 4.497908 -3.292708 2.203092 -2.501855 2.747320 -5.380601 5.214660 1.496402 -4.279416 1.304679 1.067906 2.889135 -1.436780 -2.824563 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 0.930589 -2.061621 10.576263 3.174635 -3.033090 -0.080167 7.811307 -3.981496 6.008452 -2.946165 -3.002045 -3.629878 -7.817330 -2.003023 -1.052847 -1.926627 -11.275485 -4.732078 -0.184270 -3.639175 -2.127587 -6.528227 6.216549 1.210093 5.500838 6.448773 -0.673995 -3.288768 -3.115767 0.989164 9.624278 -1.693452 2.525701 9.345872 1.590223 -13.309452 4.640577 -0.287771 -1.922549 -2.705480 3.702267 0.018320 -0.499499 -1.585937 1.263871 1.005183 3.347136 13.909100 6.157177 1.570687 -1.563673 -8.411764 -2.473367 8.738938 -3.545851 1.630967 2.690879 -2.300236 0.317657 3.898810 -0.591536 -4.101188 0.199988 6.331895 -2.199815 -0.009230 6.194841 -8.901827 -6.984105 8.434662 1.949619 0.190836 -3.961791 -2.455206 -2.829116 0.720353 -3.773219 8.478741 9.780530 -5.105249 6.890519 -0.023946 4.462082 -3.325056 -2.758131 0.206070 2.551184 -0.592455 -3.301334 -3.579583 -12.946112 -4.800475 -1.513878 -4.528449 2.365661 -7.590279 3.080627 -6.471322 -5.985213 -0.738825 2.109804 -2.252481 -1.674637 5.543370 3.428160 0.597501 -1.377997 -5.763042 -2.202941 0.692232 -8.469020 5.788392 1.397838 3.595019 -5.114206 -4.979485 -5.982721 0.807350 -2.348618 -3.042863 0.030117 5.687503 -4.913652 3.600929 4.300759 2.526228 -0.785364 5.866948 2.938016 -1.173407 6.121537 -0.633633 0.075877 -0.259522 3.810459 11.337443 1.110473 -2.441476 -0.534536 1.867245 -7.273298 -3.778190 -0.702537 1.955373 0.981131 -9.345478 -6.445261 0.075519 -2.405446 -9.857422 1.881224 -3.505523 -2.113637 2.312432 3.534429 7.787343 1.839655 7.108874 -7.956343 2.951453 -1.406216 -2.322061 -1.416981 5.859553 5.738175 -3.621087 -1.315642 -3.088405 -2.503887 2.432420 -1.563903 -4.120471 -0.917210 -9.818639 -4.353885 -0.102630 2.911199 -0.723640 -1.983837 6.788160 0.734954 -8.851923 -1.113332 7.067136 0.911555 -5.155633 6.090367 -6.628818 6.611758 -0.405969 0.330842 2.712137 1.028452 -1.307820 2.523156 -2.449162 0.447764 -4.010717 -5.476143 -1.990714 -0.562873 -5.280516 3.626570 -4.384435 -3.551859 -1.893723 -2.725568 5.367607 -0.564545 -5.441558 8.468479 -2.211022 7.053908 -6.356808 7.384918 -1.992225 2.768431 -1.072683 -1.512084 -1.693816 -2.646198 -0.299343 0.839596 -3.379787 1.828471 4.924814 8.317755 3.806683 3.633077 0.732068 7.646559 -1.743805 2.704910 -1.688416 0.565469 -3.439068 -5.542435 2.032183 -1.012685 -0.486172 -0.090601 1.483115 10.294432 6.490965 3.307504 10.451170 1.208089 4.493693 -1.555589 -0.615616 1.284049 6.470242 -2.580231 -3.867759 3.106782 2.920070 -4.974462 2.528287 -8.318104 -13.437187 -2.289050 -11.459709 -4.165627 -8.774316 2.901414 -0.273369 0.913371 -5.988656 -1.137439 -1.913609 0.537864 6.088966 3.081031 -1.008528 5.332240 9.257679 -6.404843 -0.229905 7.715108 7.584681 -3.168597 -0.482975 -9.536718 4.000494 -7.124499 2.752603 8.602399 -4.106973 0.733158 -7.210708 9.988775 -10.220700 6.662779 2.553790 -4.924339 4.264069 0.962683 5.573555 9.560838 -2.731677 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -2.436637 -13.489570 26.273356 18.881853 -5.078997 4.993274 5.775445 -5.030765 1.780665 7.209259 -6.580066 12.823887 -11.402102 -1.044253 3.122523 5.655756 -18.924214 -9.429037 -0.720455 -5.762202 -7.087655 -5.359594 -5.009566 15.554232 12.058051 8.762816 -7.497900 -1.553461 -11.348923 -17.153023 -6.097507 -1.549035 9.665802 7.450524 11.913823 -26.653147 11.562541 13.605886 -0.962122 -14.446289 5.680405 -4.501330 -0.569397 -2.106630 -6.951941 7.864057 11.330671 9.024839 5.478962 6.410117 -1.346590 -5.822710 11.935498 20.392217 6.132185 11.266992 14.768946 -8.017409 3.415564 -3.967142 2.291202 -11.601714 4.576144 0.898408 -2.446937 -8.200193 0.044302 -5.621029 -3.869809 7.438883 8.325223 -8.505091 -10.533130 -10.922263 -11.464017 -5.008963 -8.294940 12.972069 19.190139 -13.088094 16.591604 7.848736 7.394434 1.093954 9.262222 0.248423 13.531440 3.908522 -5.314982 3.111413 -7.983682 -11.918244 1.170792 6.022067 -7.981374 -11.981816 6.559938 -19.869372 -19.001817 9.853701 2.189997 -9.417312 -4.719179 -1.026130 5.882513 5.089474 -3.715473 -11.079436 -5.293839 4.102055 -7.488493 -2.936521 -2.574523 3.709427 -2.026540 4.034762 -18.123608 7.552328 7.868320 -4.521367 -1.523421 13.623665 2.710416 11.702109 0.746482 4.961007 -1.314792 13.677404 8.610992 4.051721 -1.860643 -2.168676 -7.675597 3.449302 5.352067 -3.210911 -8.263558 -6.864884 2.295335 7.207306 -1.612454 8.658961 -2.652376 22.127864 9.236871 -6.425343 -14.382647 -13.809186 -14.074235 -11.261604 3.285053 -6.534225 -9.948811 6.114801 8.838209 3.324272 0.998456 7.120320 -5.249689 6.425827 -0.092634 -1.287767 3.232225 -1.725769 8.425206 -10.542705 -5.247930 8.763155 7.603442 10.319422 0.592852 -2.463188 5.749610 -7.904513 -9.247631 8.477034 4.125955 2.463859 14.626111 13.455851 29.215404 -4.427117 -3.083032 2.740351 -4.147938 -4.702349 4.773528 -12.328116 6.646812 1.780648 0.220824 18.772395 0.368163 -4.963199 9.564122 -0.162003 0.937507 -11.168409 7.301851 -7.012092 3.521953 -4.880141 -0.097936 -10.666232 -4.492313 -10.617438 -6.354396 20.474042 -17.530631 -13.829468 9.704627 -4.927317 11.568464 -20.039608 20.676787 -7.164841 10.699869 -4.207671 -9.504535 1.631752 -4.018395 -4.822509 6.912278 4.316578 -4.461751 1.483160 9.232885 4.733379 2.720719 1.975988 9.675193 -2.774235 8.615867 -5.179240 7.982306 -2.743641 -0.300874 -6.712816 -1.577923 -0.836196 5.396952 0.179078 2.915215 4.561614 2.124683 3.399514 10.368461 5.370046 -7.626513 3.128188 -3.175841 13.381784 -12.622112 -9.622092 -1.721894 7.461037 1.570852 5.012627 -21.396167 -12.102623 -17.302382 -12.518129 -10.472391 4.481810 8.518232 2.799960 -4.245149 -12.789745 -11.292650 19.332557 1.014630 5.822157 10.555909 2.401531 16.030906 9.164448 4.614415 -5.970203 -1.628320 4.467813 -0.692459 0.464234 -11.590991 8.730582 -13.961805 9.471073 16.926481 -8.001040 9.191649 -3.682542 13.760998 -17.729056 17.082740 5.548900 -18.984975 2.770907 17.339216 6.685091 -9.883616 -10.806948 -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.300531 -0.334370 2.758088 1.506241 -0.670804 0.096581 0.079100 -1.551052 1.383917 -1.120883 -0.614370 0.353833 -0.964945 0.632085 -2.148411 0.616410 -2.449564 -1.159211 -0.767350 -1.543727 -0.574794 -0.434189 0.882210 0.057758 1.218534 0.762492 -1.027872 0.028619 -1.590535 -0.578720 1.238866 -0.508267 0.378764 -0.473962 0.017006 -2.373760 1.643076 1.025917 -0.932022 -1.013583 1.171865 -1.325373 -0.330950 -1.338162 -0.439898 -0.136691 -0.252069 1.193819 1.223055 0.124244 -0.131989 1.010611 -0.282962 2.908554 -1.522834 0.755890 0.595596 0.068741 -0.480287 0.503130 0.129634 0.387985 0.149265 0.333500 -0.295348 -1.816055 -0.164166 -1.108037 -0.467806 1.311491 -0.276258 -0.201920 -0.831096 -0.177697 -2.236170 -0.254964 -0.781666 1.463032 1.646853 -1.509845 0.535496 -0.285155 0.344498 0.307705 0.289104 0.409890 1.229569 0.421877 0.153818 -0.691773 -1.380950 0.641424 0.394268 -0.757004 -0.605520 -2.923599 1.178833 -3.272322 -1.516493 -0.054579 1.141801 -0.940723 0.226985 0.120643 0.288648 0.241662 -0.699397 -0.887426 0.551977 0.513550 0.222252 0.033374 0.602687 -0.484877 0.113507 -0.729710 -1.970759 0.931453 -0.300077 0.143544 -0.133338 1.346877 -0.283028 -0.684235 0.039868 0.876309 -0.951682 1.533295 -0.817587 0.661126 -0.819592 1.068531 -0.326937 0.426922 0.958793 0.716696 -1.112885 0.266731 -0.879544 0.284291 -1.517406 -0.769555 -1.137704 0.383124 -0.204888 -1.474204 -1.043002 -0.393658 -0.978862 -2.032125 -0.195498 -0.640423 -1.938224 0.385345 1.108056 1.915836 1.458316 1.572301 -0.570808 0.142534 0.096299 -0.449221 1.508626 -0.707053 1.099772 -0.765021 -0.868070 0.569311 -0.672560 0.781191 -0.140626 0.350324 0.147122 -1.915693 0.124152 0.545808 1.110935 -0.007473 1.257764 1.466365 -0.803471 -1.711622 0.449718 1.348604 -0.883056 -0.152898 0.327369 -1.163800 0.461418 0.807031 0.510602 1.300405 0.213924 -0.398795 0.202368 -0.162088 0.790913 -0.934760 -0.638316 -0.575604 -0.597195 -0.934529 0.720116 -0.603563 -0.409598 -0.950150 -2.077293 1.505340 -2.496904 -1.067929 1.993249 0.244423 1.290262 -1.649514 0.421154 -1.079955 2.043715 0.564995 0.680244 0.097813 -0.501640 -1.936062 0.735796 0.373890 -0.572966 0.727473 1.336082 1.138353 0.637233 -0.474031 1.719018 -1.086108 1.715106 -0.752553 1.156340 -0.513661 -1.695543 0.540371 -0.256725 -1.074532 -0.694190 1.401165 1.657924 0.453441 1.749421 1.439270 0.897849 2.056987 -0.802577 0.686814 -0.654755 0.149062 -0.559803 -0.775762 0.898266 0.728970 -0.319239 0.428933 -2.030709 -2.775849 -2.884866 -1.748590 1.057120 -2.026433 -0.041167 -0.578105 -0.211487 -1.658225 -1.157837 0.936265 -0.519759 1.498951 1.118953 0.188978 0.827000 1.619300 -1.416438 0.310261 0.716670 1.168713 0.510908 -0.293308 -2.192914 1.918073 -1.017727 -0.120237 2.467818 -1.156089 0.679410 0.296526 0.634953 -1.082695 1.794492 0.374288 -1.259584 1.255489 1.277496 1.272844 1.614718 -0.877917 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 0.363074 -0.661650 1.752754 0.991725 -0.908131 -0.225590 0.081701 -0.051600 0.740354 -1.979102 -0.959625 0.432574 -1.016616 0.511833 -0.487834 -0.040924 -2.681544 -1.254325 0.274500 0.246815 -0.189323 -0.696056 0.760345 0.692682 0.629887 2.586502 -0.657464 0.119957 -0.724702 0.934489 1.654978 -0.849560 0.836231 2.692128 0.418950 -2.323915 0.572047 -0.165296 -0.248867 -1.073302 0.454644 -0.972949 0.156011 -2.314708 -0.330773 0.326723 0.794497 2.195816 0.651022 -0.266662 -1.812729 -0.729538 -0.764176 0.713674 -0.558437 -0.067836 0.817666 -0.401460 -0.091355 -0.963580 0.415151 -0.455051 0.462130 1.173379 -1.082475 -0.783356 0.077469 -1.924281 -0.921080 1.100574 0.758657 1.789084 -1.146257 0.114721 -1.071778 0.213539 0.802976 1.743677 1.851735 -0.944911 0.866101 -0.001833 1.253635 -0.154094 -0.077124 0.625814 0.637609 0.426236 -0.605418 -0.413803 -2.558844 -0.680030 -0.191271 -0.892768 0.558948 -1.176894 -0.052003 -2.179607 -0.658740 -0.359651 0.210346 -0.023467 0.314047 0.686875 0.987656 0.850674 -0.139628 -0.499067 0.608766 -0.601175 -0.729026 0.290031 0.432202 1.157571 -0.713711 -1.344530 -1.521118 -0.039169 -0.161064 -0.572160 1.518828 0.657168 -0.931484 0.259094 0.049799 -0.109592 -0.311455 1.660302 0.587952 -0.607823 0.744999 -0.638917 1.383867 0.098497 0.654773 2.746339 -0.994429 -0.983810 -0.159765 0.163876 -0.875226 -2.333843 0.055600 -0.066917 -0.116750 -1.520600 -1.256162 -0.891471 -0.899825 -1.650761 -0.052516 -0.855939 0.041738 1.417242 0.836425 1.030218 1.018103 1.705083 -1.092225 0.848894 -0.145975 0.134287 0.570191 1.492685 0.769806 -0.452874 -0.156477 0.696892 -0.897416 0.536590 0.043710 -0.786909 0.372324 -1.531021 -0.892979 1.126971 1.029975 0.612185 0.417310 0.340867 -1.890915 -0.842386 0.003709 1.026687 0.422789 -0.727164 1.052626 -0.792345 1.507944 -0.244840 0.181370 0.082723 0.080980 -0.933059 0.280364 0.384134 0.226844 -0.655318 -0.790203 -0.118857 0.173139 -1.250384 1.199890 -0.550090 -0.572072 -0.595215 -0.640335 1.236637 -0.840459 -1.137975 0.602676 -0.076905 2.435512 -1.531595 -0.839029 -0.815163 1.790379 0.402955 -0.110749 0.339143 -2.169151 -0.596091 -0.211199 0.386060 0.499158 -0.189741 0.044533 1.009218 0.117857 0.495046 0.870407 0.453633 0.939926 0.277259 -0.351260 -0.323418 -0.471090 0.800119 -0.166702 -0.137219 0.255944 0.577314 1.917045 0.920899 1.980465 2.620785 0.190640 0.883756 -0.802207 -1.001289 -0.419032 1.166690 -0.415076 -0.551191 -0.281900 1.154961 -0.681785 0.529704 -1.144352 -3.260769 -1.390693 -1.796541 -0.708552 -1.489236 0.310213 -0.094629 0.392246 -0.841031 0.107170 -0.495250 -0.052305 2.909617 0.601878 -0.519521 0.826632 0.896274 -1.842137 -1.226524 1.813027 1.481154 -0.117113 1.148237 -2.747627 0.853765 -1.157657 0.128528 2.363214 -1.594671 -0.312429 -1.294353 2.724756 -0.735458 1.994465 0.830950 -2.064098 0.428928 -0.209533 0.503938 2.252780 -0.860470 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -0.942614 -3.144358 5.996376 4.411243 -0.172798 1.119245 1.743555 -1.431285 1.558866 1.947114 -1.495822 2.761722 -3.211637 0.218615 0.313119 1.593123 -4.026073 -3.056197 -0.075158 -1.360084 -1.648877 -1.894318 -0.284307 2.682038 2.831795 1.400412 -2.177445 -0.597726 -3.978356 -3.799246 -0.447507 -0.793275 2.430127 1.275103 1.888728 -6.305462 2.870581 3.274832 -0.401059 -3.663364 1.517030 -1.845281 0.047017 -0.708546 -0.355314 1.762891 2.442142 2.018762 1.872034 1.413799 0.384614 -1.162754 1.354538 4.604935 -0.083767 2.626250 2.985279 -1.636951 0.027374 -0.595258 0.653778 -2.308436 1.784874 1.172716 -1.480759 -2.170329 0.354139 -1.504292 -2.054246 2.136120 1.945671 -1.352752 -2.492899 -1.892406 -2.176582 -1.060537 -0.234319 2.511410 5.044825 -2.429280 4.172776 1.516342 2.174213 -0.072236 2.087925 0.043225 3.309902 0.799749 -1.761850 -0.510775 -3.270514 -2.073221 -0.250597 2.414691 -1.246098 -1.436848 1.524084 -3.572721 -4.458894 1.596927 0.449014 -1.605000 -2.416348 0.790648 1.834237 1.659433 -0.636483 -3.108211 -1.505860 0.789194 -2.006948 -0.935566 -0.452502 -0.457473 -1.374503 -0.092202 -4.317978 0.904467 1.418508 -1.648363 -1.283525 3.219641 -0.771500 2.321478 0.184216 1.338185 -0.354770 2.790471 1.626262 1.064105 0.749853 -1.217971 -3.085317 0.100751 1.369017 1.301878 -2.148555 -1.175629 -0.119402 1.254950 -1.082880 1.123302 -0.866701 4.835283 2.806042 -2.296466 -3.356702 -2.800522 -1.702505 -2.840554 0.952681 -1.962942 -1.522011 0.225486 2.523317 0.906599 0.891164 3.709285 -1.955695 2.363619 0.207987 -0.438181 1.489472 -0.137517 2.304356 -2.585571 -1.606267 1.968809 1.992014 1.557799 0.026363 -0.571349 1.121928 -2.817823 -2.496672 1.812568 0.673219 0.638716 3.266339 2.707942 6.663586 -2.583730 -0.039575 1.233458 -0.542768 -0.933621 1.110773 -3.304130 1.837452 0.444900 0.241106 4.448417 0.241581 -2.346465 1.825949 0.118076 0.486194 -2.867104 1.750029 -1.826206 0.757141 -1.386444 -0.240144 -2.286229 -1.435145 -2.135125 -0.976446 4.779342 -2.155447 -4.489723 2.365398 -1.269755 2.793699 -5.866078 4.251477 -2.148556 2.225823 -1.539180 -1.469203 0.146902 -0.124046 -1.441946 1.660562 1.297214 -0.963220 1.428549 2.981792 1.418601 0.975943 0.352692 2.370221 -0.144263 1.883116 -0.997329 2.080882 -0.528837 -0.477588 -1.056192 -0.769174 0.180575 1.164174 -0.276030 1.201185 2.224072 0.332566 1.779512 2.466197 1.867710 -1.910834 1.123792 -0.507799 3.473362 -2.315879 -1.974410 -0.276283 1.405355 -0.123570 1.754922 -4.908567 -3.795100 -1.924874 -4.689751 -1.611490 0.938025 1.707116 0.605721 -0.482365 -3.759649 -2.173739 3.346324 0.231508 4.102491 2.156348 0.591410 3.286342 2.365957 -0.333264 -1.607765 -0.221270 0.990792 -0.589373 -0.560472 -2.698611 2.189753 -3.262143 2.277599 3.893869 -2.178212 1.541378 -1.411656 3.542778 -3.878166 4.738818 1.623231 -3.787877 1.501215 2.760952 3.493046 -1.811797 -2.562104 -PE-benchmarks/boruvkas-algorithm.cpp__main = 1.912201 -2.131620 15.456709 11.436037 -6.107944 0.533412 -2.014332 -8.036351 4.948254 1.081157 -1.226255 3.675604 -1.852137 3.235496 1.805167 8.691503 -13.880928 -1.423993 -3.419008 -8.093681 -4.997147 -0.196785 2.554868 0.070114 6.396242 7.276409 -5.216614 -0.089653 3.188301 -11.217115 3.161683 -2.589267 4.972541 2.524340 2.979097 -23.545712 10.519466 3.914328 -4.295777 -6.186492 3.970807 -1.316174 -0.371378 -3.419503 -6.619316 2.344812 -0.263080 3.330637 5.443905 4.630417 -0.597286 3.949619 7.437285 14.818849 -1.832583 3.307293 3.584079 -4.620843 -3.471775 -0.499644 2.174076 1.098150 2.487045 0.073195 3.081485 -10.797355 -2.084805 -4.316559 -4.814754 5.209665 0.522101 -5.247248 -5.044515 -5.065353 -4.498818 -2.753432 -9.273447 9.443291 8.017458 -7.980940 2.743016 0.053455 -1.751600 2.244103 1.992017 1.526921 7.068468 3.347242 1.048390 1.906516 4.915975 -6.866659 6.472942 -2.102584 -4.168250 -15.060649 4.027745 -8.348607 -6.072201 4.789708 7.586332 -3.472621 -5.288825 -8.294178 2.816919 2.691501 -3.586558 -3.366528 -0.089534 0.619391 1.179635 -2.019144 -3.114114 0.164658 -0.980069 2.787894 -10.336731 5.125984 0.366528 1.741377 -0.018736 4.953475 2.594684 -3.310591 -1.780499 4.842955 -5.282212 9.739501 -2.862733 6.973611 -2.350801 6.887771 1.489164 3.034186 5.125683 -2.393708 -1.035130 -5.717270 -5.512718 2.908351 -6.646163 2.949215 -0.650499 7.057804 9.870535 0.366571 -6.945232 -2.987601 -7.168093 -11.431920 1.522048 -4.818122 -4.316824 8.327008 5.120457 3.178493 6.300672 0.895591 -5.681829 1.391107 -3.199948 -0.043328 7.465233 1.506385 4.676386 -3.764848 -1.613194 3.536181 0.293423 5.138068 1.112495 -0.565670 3.053759 -4.584100 -1.432559 5.914956 4.893622 -0.384342 2.877159 6.486722 16.295754 -0.753657 -0.915749 5.252531 -4.115634 -1.122534 2.298695 -5.030612 0.400087 2.481238 0.777319 8.257856 -0.521441 -1.656424 0.918788 -0.579964 0.423661 -2.110027 0.635613 -2.617920 1.269259 -2.098490 -0.230429 -5.327661 -0.750711 -4.804095 -5.185358 9.359017 -13.690350 -3.955444 10.934615 -6.475143 4.387045 -7.891948 11.897102 -4.648845 4.897466 -3.925430 -3.361487 0.029665 -5.009042 -8.726962 4.796450 2.540491 0.047134 -2.970362 8.918351 4.441097 -0.197142 -3.621149 7.193672 -3.654562 10.380222 -2.487183 9.488210 -3.608591 1.422817 -2.654406 -0.273712 -5.154943 -4.618622 3.602049 3.611284 -1.325047 5.210205 2.153498 3.529207 7.796152 -5.201360 7.694333 -1.448897 1.665717 -3.844395 -3.351638 5.237114 6.823867 -1.245566 2.935883 -9.249750 -6.499629 -15.693668 -2.289827 -3.069915 3.885604 3.379959 -3.965765 -3.004130 -3.325063 -5.906375 11.861480 -1.475292 0.132717 5.537758 1.205214 5.667114 7.120032 -0.710453 -1.540586 -3.275454 0.000652 4.032795 -0.139518 -8.201321 9.654968 -3.955643 -0.867532 10.697514 -3.931873 3.793825 0.045191 6.866185 -4.892553 7.137075 0.206087 -4.194909 4.677642 9.400337 2.649295 0.333473 -4.345197 -PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -0.928147 -1.642355 3.727314 2.626818 -0.841110 0.787975 0.262474 -1.238554 0.141347 0.873078 -0.681719 1.743762 -1.325526 -0.068807 -0.313417 0.781489 -2.526466 -1.038563 -0.694864 -1.515884 -1.173951 -0.404182 -0.775569 1.955563 1.624859 0.814172 -1.308199 0.139191 -1.635748 -3.112881 -0.984251 -0.063348 1.282341 -0.002947 1.234452 -4.485307 1.859144 2.395888 -0.453485 -1.674213 1.025756 -0.860850 -0.264802 -0.155961 -1.777255 0.709042 0.868314 -0.370223 0.810937 0.634338 0.386880 0.080724 1.778089 3.577456 0.566507 1.747746 1.880790 -1.090329 0.055692 -0.271017 0.223566 -1.057886 0.710629 -0.323488 -0.071151 -1.630269 -0.059421 -0.507916 -0.378942 0.999777 0.257540 -1.892300 -0.858135 -1.714595 -2.469602 -1.090753 -0.400585 1.435357 2.295571 -1.895789 2.016135 0.653835 0.247406 0.558968 1.512498 0.109923 2.121598 0.578680 -0.229924 0.633522 0.445504 -0.812947 0.516564 1.854806 -1.572318 -1.802120 1.472801 -3.700332 -2.690104 1.463085 0.669896 -1.560956 -1.222377 -0.915995 0.274422 0.406483 -0.827836 -1.504401 -0.779015 0.975349 -0.314094 -0.566200 -0.514959 0.137447 0.053464 0.908398 -2.550792 1.465578 0.929677 -0.217505 -0.828442 2.115619 0.833599 0.987467 -0.047673 1.177712 -0.699247 2.001808 0.058539 1.008851 -1.494316 0.673680 -1.421053 -0.541418 0.731028 -1.170732 -1.466939 -1.217501 -0.033554 0.857867 -0.512533 1.500796 -0.859924 3.114483 1.726234 -0.452286 -1.668184 -1.636986 -2.242301 -2.373537 -0.114996 -0.833192 -2.097263 1.252263 1.316609 0.649116 0.352710 1.188216 -0.122796 0.549285 0.036014 -0.961733 1.006500 -1.444613 1.206961 -1.524755 -1.032020 1.347151 0.770328 1.937073 0.194983 0.198437 0.562154 -0.972540 -1.114617 1.384761 0.743434 0.395512 2.125040 2.258030 4.676949 -1.025908 0.009308 0.370993 -1.101624 -0.261150 0.296065 -1.511901 0.147117 0.787781 -0.369602 2.978232 0.101957 -0.555351 0.935135 -0.248726 0.426617 -1.785933 1.267518 -1.045004 0.771804 -0.672629 -0.914645 -1.391386 -0.507955 -1.658897 -1.747481 2.814309 -3.802102 -1.855613 1.972761 0.186444 1.444754 -3.031538 2.581271 -1.110247 2.500536 -0.762799 -1.074298 0.274478 -0.131698 -1.169610 1.547251 0.634495 -1.222953 0.168873 1.652847 0.759829 0.655765 -0.435679 1.654247 -0.771699 1.619660 -1.099509 1.705266 -0.203824 -0.613977 -1.028113 -0.313308 -0.676384 0.344489 0.614354 -0.035593 0.534950 0.331881 -0.162502 2.032092 1.245314 -0.984409 0.866813 -0.521690 1.411482 -1.602021 -1.492191 0.278715 1.616296 0.511291 0.359548 -3.058909 -1.600140 -3.629611 -1.637626 -0.742738 0.844653 0.884620 0.245194 -0.766669 -1.790976 -1.833024 3.631652 -0.232419 1.179278 1.440143 0.726534 2.094856 1.404780 0.783350 -0.423420 -0.616286 0.579708 0.295639 -0.082661 -1.684166 1.696248 -1.692536 1.086607 2.230178 -1.002432 1.710286 1.009083 0.915667 -2.330594 2.256683 0.450660 -2.332522 0.924233 2.805877 0.614384 -1.398037 -1.381540 -PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -8.353536 -14.702777 28.442927 18.943716 -3.568677 7.294682 4.593043 -8.242871 1.592408 7.902978 -6.037858 15.319798 -11.408852 -2.160192 -2.805793 3.047374 -17.902604 -11.050235 -3.765701 -9.716434 -9.117771 -5.221287 -7.652188 17.706433 11.984544 3.184180 -10.369083 1.115976 -18.713872 -22.439968 -8.830154 -0.210615 9.614623 -2.823237 11.271727 -31.834764 13.520576 19.343295 -1.699915 -15.164890 7.071912 -6.989103 -2.705834 0.735506 -10.918992 5.615069 9.235182 -0.405823 5.317515 4.362135 2.937473 -1.669510 9.513221 27.499124 5.563495 14.645866 16.591353 -8.333835 1.801732 -1.366864 1.807711 -11.123358 6.035331 -0.610139 -3.332855 -9.115608 2.906353 -3.202793 -3.463639 8.041325 5.482250 -15.343110 -5.319638 -12.637663 -19.674609 -7.416107 6.504232 9.656027 19.790659 -12.553270 18.486493 5.875140 6.326342 3.498600 13.391762 -0.309947 18.211617 4.072579 -4.671700 1.966679 -5.035985 -5.620586 0.485956 16.409070 -11.021089 -8.519163 10.901919 -28.699561 -22.245761 11.143040 2.602994 -11.947152 -11.064375 -3.190755 5.076013 3.709112 -5.064905 -13.047915 -8.849481 9.084450 -7.551621 -4.144906 -1.886515 -0.131561 -0.900853 5.627247 -18.752551 9.784893 9.843009 -3.378453 -8.724174 17.723267 1.917195 11.283526 0.107975 8.230987 -3.144473 11.923496 3.462461 5.087588 -8.736687 -0.288797 -13.653917 -4.911668 3.244762 -5.976446 -11.782830 -7.992559 2.514706 7.585941 -2.311830 12.006170 -8.897281 25.558009 10.475412 -5.632898 -14.083845 -14.270372 -14.502915 -15.621697 -0.894469 -6.471711 -17.595799 6.247981 10.804594 5.487410 0.057736 11.408088 -0.797101 7.547975 2.037333 -6.636817 5.285507 -13.763108 9.221429 -12.883012 -8.802782 9.977681 7.651435 13.869062 0.773592 -0.205944 3.796031 -8.798483 -12.288335 8.629754 4.961446 5.373010 17.214515 17.322542 36.164356 -11.987840 -0.807868 1.694464 -7.241263 -3.166521 1.569620 -12.619313 1.334702 5.720065 -1.289608 25.570884 1.227862 -6.975208 8.045953 -0.019791 3.495116 -14.734692 10.895954 -8.350485 6.171471 -4.085875 -7.958439 -11.721689 -3.879871 -14.458998 -13.980534 22.732785 -25.713138 -20.926597 14.408671 0.357983 13.623126 -27.311471 17.734916 -8.448292 19.174232 -4.747510 -6.797389 1.114887 0.292383 -7.650146 14.044861 4.768987 -10.452672 4.939984 12.673446 5.081172 7.425406 -1.917558 11.272019 -5.332912 9.052802 -8.823742 11.455213 -1.579839 -6.751562 -8.325123 -3.065324 -2.081162 5.619473 3.214736 -2.992707 6.438495 0.491249 0.031366 17.022281 6.853809 -7.675295 4.896502 -3.469919 12.784909 -12.502260 -11.816973 -0.150254 10.446563 4.585896 3.284003 -24.357941 -12.862141 -23.925440 -19.163062 -5.852299 4.785154 6.703645 3.616603 -5.105870 -16.425975 -13.124441 25.767424 0.282195 15.246889 12.230947 5.895815 17.008068 10.463038 4.788718 -3.647069 -3.655485 4.490709 -1.471170 -2.469946 -12.422572 10.681570 -14.626478 11.902573 16.637750 -7.131505 13.263567 4.527062 5.958317 -19.795619 18.456979 5.915023 -19.977622 4.580682 18.357282 8.388710 -12.901669 -11.938044 -PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -1.908143 -3.727874 8.074623 5.716059 -1.510388 1.752429 1.019435 -2.557052 0.603574 2.192732 -1.499063 3.861207 -3.124706 -0.105188 -0.478825 1.757395 -5.417878 -2.543248 -1.214766 -3.078895 -2.560773 -1.175179 -1.590674 4.219072 3.569395 1.493508 -2.827603 -0.027219 -3.894375 -6.415648 -1.943172 -0.256701 2.859698 -0.148154 2.654230 -9.939944 4.010300 5.091469 -0.883979 -3.927906 2.196684 -1.991277 -0.473489 -0.264213 -3.390357 1.522189 2.175735 0.028523 1.858145 1.482110 0.822704 -0.038929 3.581063 8.029017 1.036090 3.853575 4.126746 -2.325790 0.033716 -0.510938 0.535441 -2.521145 1.727739 -0.369349 -0.428109 -3.366569 0.065457 -1.150514 -1.169693 2.207741 1.127801 -3.876212 -2.055811 -3.442594 -4.885625 -2.262914 -0.653265 3.149465 5.314132 -4.002275 4.684358 1.543379 0.954810 1.058153 3.298194 0.154150 4.678347 1.184108 -0.870205 0.898578 -0.098185 -1.841200 0.901466 3.786139 -3.146526 -3.969935 2.971004 -7.233716 -5.963416 3.076926 1.256658 -3.257545 -2.753253 -1.650660 1.042442 1.095923 -1.743855 -3.515480 -1.989967 2.054618 -1.209645 -1.313178 -0.960335 -0.007263 -0.120318 1.539622 -5.545333 2.848236 2.145206 -0.754121 -1.972833 4.620273 1.278872 2.433386 -0.024287 2.470780 -1.266846 4.091139 0.537553 1.991190 -2.468821 0.875656 -3.273748 -0.874606 1.548160 -1.850244 -3.019203 -2.443882 -0.040329 1.957578 -1.063959 3.195948 -1.685942 6.895418 3.646012 -1.230461 -3.734352 -3.646792 -4.215833 -4.760028 0.064514 -1.927747 -4.283271 2.189599 2.969449 1.277138 0.723124 2.735846 -0.633770 1.747633 0.140020 -1.729378 2.128104 -2.752315 2.707377 -3.386067 -2.268643 2.777259 1.989358 3.894975 0.193814 0.254896 1.248630 -2.322365 -2.649450 2.600851 1.505342 0.835956 4.623067 4.707188 10.551691 -2.624152 -0.010554 0.850848 -2.217646 -0.633945 0.689663 -3.530723 0.549051 1.594571 -0.721409 6.607752 0.231175 -1.697323 2.160018 -0.342780 0.822244 -3.844294 2.762575 -2.335254 1.380517 -1.392712 -1.765456 -3.091354 -1.210657 -3.678374 -3.415215 6.223508 -7.555115 -4.509855 4.110865 -0.137176 3.161269 -6.968462 6.091097 -2.483078 4.784465 -1.811817 -2.363163 0.488413 -0.001505 -2.479678 3.384474 1.442287 -2.508892 0.755829 3.826806 1.645808 1.561710 -0.704103 3.505070 -1.439941 3.208370 -2.307411 3.648925 -0.538896 -1.272950 -2.228332 -0.760232 -1.050410 0.975343 1.100812 0.080739 1.469827 0.519739 -0.003797 4.383614 2.547002 -2.188257 1.912167 -1.119551 3.320452 -3.420824 -3.096840 0.370072 3.111143 0.983448 1.173651 -6.731382 -3.603236 -6.985256 -4.015921 -1.606339 1.891451 1.983874 0.590728 -1.484732 -4.331321 -3.820905 7.334454 -0.375502 2.883698 3.251239 1.550324 4.579296 3.070299 1.474370 -1.068593 -1.196025 1.160601 0.318455 -0.426445 -3.503972 3.493648 -3.849890 2.705345 4.818718 -2.139142 3.469883 1.384000 2.342855 -5.119304 5.133444 1.212550 -5.062217 1.853897 5.791183 2.016404 -3.190092 -3.096612 -PE-benchmarks/birthday-paradox.cpp__main = -0.051766 -0.189917 0.274164 0.198426 -0.156951 0.034541 -0.066428 0.018262 0.082668 -0.365375 -0.134593 0.063153 -0.194255 0.049220 -0.067440 -0.112803 -0.341321 -0.207170 -0.057025 0.020615 -0.050692 -0.109463 -0.025608 0.205179 0.030822 0.428736 -0.118922 0.124736 -0.249563 0.276879 0.221082 -0.026523 0.131443 0.457881 0.161324 -0.331065 0.021851 0.111183 -0.015515 -0.245550 0.017179 -0.195237 0.067734 -0.358538 -0.092087 0.068580 0.063991 0.129622 0.003146 -0.116741 -0.283187 -0.092576 -0.173881 0.130148 0.010444 0.047940 0.226919 -0.009487 0.044187 -0.181179 0.062064 -0.025587 0.046969 0.101996 -0.210230 -0.092301 -0.047030 -0.311761 -0.092089 0.152974 0.049784 0.170907 -0.156243 -0.174805 -0.290864 -0.027770 -0.048551 0.273033 0.259933 -0.279186 0.130269 0.030728 0.215737 0.080883 0.111475 0.091758 0.125908 0.077218 -0.044298 0.124020 -0.323982 -0.073602 -0.033775 -0.129037 -0.066171 -0.107756 0.080319 -0.442916 -0.138875 0.028106 -0.001452 -0.002250 0.029116 0.109832 0.024591 0.154569 -0.058983 -0.067782 0.066014 0.050083 0.046637 0.041021 0.057951 0.287022 -0.068223 -0.308508 -0.268513 0.088604 0.060078 -0.058946 0.260365 0.207275 -0.195129 0.052301 -0.019511 -0.094774 -0.100175 0.430080 0.104324 -0.144601 -0.084359 -0.141992 0.047444 -0.030546 0.052663 0.479956 -0.214867 -0.111160 0.070186 -0.007771 -0.073390 -0.323400 -0.010506 -0.072952 -0.019239 -0.202332 -0.181724 -0.240700 -0.293974 -0.336210 -0.104068 -0.112174 0.040621 0.373431 0.135813 0.392458 0.091086 0.419025 -0.131902 0.024394 -0.030343 -0.116898 0.009002 0.261080 0.073898 -0.078584 -0.106287 0.162677 -0.183614 0.140426 0.148862 -0.100962 0.016156 -0.187381 -0.093698 0.271492 0.207616 0.119903 0.200194 0.164649 -0.467560 -0.143134 0.005402 0.060432 0.005968 -0.075588 0.088190 -0.100649 0.182403 -0.006041 -0.064127 0.028548 -0.030065 -0.020963 0.046198 -0.016998 0.102697 -0.144076 -0.073989 -0.047284 0.041139 -0.305099 0.197696 -0.104089 -0.078317 -0.108268 -0.200068 0.244802 -0.196998 -0.132477 0.059348 0.199181 0.379491 -0.171387 -0.259615 -0.086372 0.538389 0.108157 -0.005335 0.056668 -0.344290 -0.021943 -0.057844 0.080981 -0.021859 -0.186653 -0.006756 0.122160 -0.057676 0.093023 0.143986 0.018253 0.135204 -0.046358 -0.030833 -0.021879 -0.075801 0.195116 -0.055262 0.007801 0.045853 0.068401 0.351169 0.170677 0.373715 0.298194 0.066506 0.082158 -0.110942 -0.239059 -0.022676 0.185299 -0.130640 -0.077794 -0.090512 0.286723 -0.033620 -0.111617 -0.169037 -0.493002 -0.321893 -0.242310 -0.078047 -0.236780 -0.064106 0.053628 -0.012574 -0.070473 -0.080854 -0.006893 -0.097853 0.552936 0.003815 -0.041205 0.214257 0.185272 -0.292992 -0.143136 0.383945 0.206110 -0.031104 0.252154 -0.449298 0.187544 -0.152119 -0.037071 0.395825 -0.213276 0.106588 0.029818 0.384688 -0.123357 0.363967 0.129510 -0.405946 0.059689 0.101146 0.083791 0.343828 -0.152341 -PE-benchmarks/birthday-paradox.cpp__find(double) = 0.334074 -0.556240 0.143885 0.462126 0.558078 -0.507061 0.372486 0.217982 0.280285 -0.634870 0.129657 0.403637 -0.360675 0.475866 -0.594461 -0.248202 -0.494580 -0.943225 -0.007191 0.363928 -1.008018 0.108332 -0.146740 -0.105568 -0.159462 0.743041 -0.598282 -0.105168 -0.987876 0.449251 0.352075 -0.387021 0.176758 0.172068 -0.222412 -0.689039 -0.005853 0.570503 -0.069941 -0.186632 -0.072131 -0.756123 0.175872 -1.052722 -0.459364 -0.136827 0.564785 0.368496 0.082610 0.180395 0.002397 0.391628 0.123247 0.727295 0.004381 0.206950 0.478201 0.353748 -0.095011 -0.097952 0.168914 0.129505 0.470904 -0.445236 -0.403630 0.436694 0.030512 -1.003306 -0.913545 0.383044 0.189699 -0.193660 -0.006875 0.202321 -0.679566 -0.287905 0.072240 0.058460 0.078954 -1.300109 0.489363 0.014326 0.263642 0.075126 -0.039128 -0.140192 0.574775 0.255650 0.106951 0.064097 -0.400191 0.009130 0.032179 -0.543515 -0.327543 -0.744867 -0.152468 -1.002709 -0.282957 0.053571 -0.154327 0.458188 0.225058 0.056545 0.294544 0.012271 -0.344154 0.320479 0.076107 -0.087917 0.204268 0.253023 0.228403 0.218031 -0.004144 -0.800322 -0.829888 -0.491207 0.352341 -0.258615 0.315283 0.852403 -0.405804 0.614809 -0.199035 -0.621295 0.392028 0.849222 0.302629 0.387257 -0.445141 -0.145055 -0.043241 -0.208823 -0.434669 1.023669 -0.266228 0.178514 0.264186 0.277668 -0.502423 -0.463630 -0.165976 -0.149007 0.185171 -0.330968 -0.912601 -0.142101 -0.375334 -0.692938 -0.154981 -0.408346 0.038496 0.728142 0.777282 0.739077 0.415201 1.083466 -0.003931 -0.497053 0.543766 -0.290174 0.537692 0.104558 0.167035 -0.215259 -0.502216 0.727693 -0.413331 -0.369072 -0.163009 -0.708538 0.141707 -0.446268 -0.174005 -0.237867 0.065057 -0.023293 -0.015314 0.002863 -0.448305 -0.661981 0.463001 -0.350213 -0.411214 0.436371 0.036206 0.135395 0.126987 -0.151019 -0.330310 -0.084937 -0.116350 -0.297095 0.380595 0.162235 -0.139718 -0.118896 -0.568692 0.447448 -0.346366 0.009593 0.579824 -0.020154 0.540773 -0.248951 -0.955874 1.006577 -0.573309 -0.212393 0.601389 0.234656 0.568283 -0.364470 0.343099 0.146965 0.706280 -0.093028 -0.173268 0.524375 -0.530717 0.305798 -0.001013 0.285318 0.238565 -0.819454 -0.037750 0.549186 0.281532 0.665843 0.471356 0.571434 0.572395 0.535990 0.149644 0.103695 -0.064199 0.272041 -0.378927 -0.033327 0.323528 0.274631 1.241833 0.358777 0.959232 0.716767 0.349169 0.304124 -0.618235 -0.625313 -0.160615 -0.071207 -0.447907 0.195076 0.349638 0.312995 -0.420394 0.210304 0.195490 -1.147166 -0.954320 -0.627841 -0.051979 -0.357749 0.270961 -0.562165 0.209395 -0.083457 -0.101963 -0.111127 -0.159049 0.863696 0.287852 0.178402 0.697246 -0.001887 -0.460989 0.098723 0.096785 -0.145015 0.511989 0.747518 -0.355353 0.179878 -0.316780 0.500382 0.512848 -0.725279 -0.152744 -0.342895 0.891069 -0.356320 0.025293 -0.279678 -0.387911 -0.412210 0.320562 0.109692 0.581428 -0.736247 -PE-benchmarks/find-parity.cpp__main = -0.128138 -0.756902 1.681723 1.069136 -0.558605 0.239211 0.225326 -0.336309 0.274307 -1.057127 -0.318590 0.565875 -0.791635 -0.108649 -0.483352 -0.266292 -1.537447 -0.876932 -0.244972 -0.399354 -0.046517 -0.272034 -0.020111 1.030228 0.619127 1.113056 -0.493071 -0.206553 -1.480839 0.574069 0.616178 -0.067033 0.675040 1.178909 0.509892 -1.585008 0.520117 0.775376 -0.240586 -1.109625 0.618119 -0.876694 0.021993 -1.170026 -0.579841 0.148069 0.281574 0.440038 0.254255 -0.285033 -0.942199 0.011649 -0.248373 1.353125 -0.162005 0.434172 0.898057 -0.226445 0.252695 -0.315878 0.111070 -0.269025 0.251171 0.022927 -0.648320 -0.599611 -0.109699 -1.067103 -0.380031 0.562964 0.225278 -0.002103 -0.544463 -0.299941 -1.637242 -0.031251 0.256592 1.264536 0.905432 -1.123580 0.812149 -0.045969 0.420196 0.148008 0.489861 0.387449 0.572794 0.262045 0.090239 -0.243776 -1.797667 -0.152791 -0.041824 -0.715964 -0.475161 -0.694898 0.662375 -1.953084 -1.055287 0.178615 0.285247 -0.722443 -0.009133 0.186471 0.101242 0.714442 -0.290151 -0.473786 0.069750 0.685091 -0.152903 0.000755 0.216669 0.572595 -0.254195 -1.007469 -1.168443 0.830926 0.357861 0.026755 0.200145 1.067903 -0.830766 0.185289 0.021162 0.130854 -0.528094 1.384690 0.086645 -0.326568 0.035851 -0.430033 0.162479 -0.115451 0.312045 1.671046 -0.840256 -0.333065 0.020500 0.320400 -0.273558 -0.685973 -0.134733 0.515209 -0.454487 -0.922084 -0.697143 -0.935552 -0.797367 -1.215710 -0.414615 -0.364659 -0.306724 1.659624 0.643273 1.332287 0.391685 1.250437 -0.372947 0.221286 0.170923 -0.348512 0.347778 0.153659 0.480878 -0.572228 -0.536032 0.512580 -0.511374 0.852558 -0.069655 0.215879 0.146626 -0.866583 -0.654057 0.464913 0.707552 0.435388 1.069214 1.117475 -1.208738 -1.034911 -0.123036 0.313466 -0.561996 -0.316476 0.162046 -0.672106 0.367067 0.338065 -0.356067 0.905497 -0.078656 -0.304179 0.340424 -0.005761 0.325441 -0.586364 -0.031540 -0.307210 -0.320888 -0.745249 0.004946 -0.503272 -0.525396 -0.931063 -1.339283 1.351093 -1.433846 -1.085975 0.670768 0.069293 1.186556 -1.371141 0.086450 -0.550927 1.519592 0.572934 -0.054752 -0.094559 -0.704303 -0.798482 0.184915 0.266672 -0.697311 0.039930 0.672793 0.635833 0.087774 0.054703 0.749759 -0.273042 0.885271 -0.570756 0.350983 -0.358420 -0.818859 0.444123 -0.155508 -0.146644 0.144660 0.584562 1.216274 0.432282 1.387320 0.955007 0.799535 0.719384 -0.471125 -0.353225 -0.371164 0.653157 -0.385631 -0.557235 -0.057483 0.788233 0.279891 0.035597 -1.228774 -1.987137 -1.631456 -1.351684 0.250592 -1.281400 0.110714 0.033358 -0.164074 -1.208637 -0.739593 -0.257539 -0.268496 1.267851 0.627780 0.009152 0.997858 0.809493 -0.957770 -0.167198 1.042793 1.001906 0.047592 0.270028 -1.640761 0.903124 -0.940545 0.252827 1.769092 -0.628332 0.646165 -0.211004 1.090920 -0.927150 1.428509 0.365631 -1.710658 0.278814 0.816311 0.094398 0.671887 -0.748860 -PE-benchmarks/reservoir-sampling.cpp__main = 0.146068 -0.648043 1.600868 1.121655 -0.201354 -0.032195 0.604659 -0.339151 0.556271 -0.020982 -0.408356 0.529377 -0.837320 0.378982 -0.566715 0.742313 -1.252017 -0.777027 -0.017797 -0.302094 -0.153919 -0.323924 0.751718 0.095670 0.942173 0.577331 -0.530359 -0.693715 -0.807823 -0.510660 0.569047 -0.446375 0.618379 0.307247 -0.157564 -1.714278 0.693727 0.543181 -0.437822 -0.923939 0.762825 -0.457264 0.029817 -0.703698 -0.183049 0.154358 0.415412 0.819066 0.561668 0.545918 -0.120267 0.061667 0.477560 1.506602 -0.514190 0.421359 0.633561 -0.103556 -0.183263 -0.182169 0.307376 -0.153495 0.297396 0.355602 -0.019397 -0.833187 -0.475151 -0.807876 -0.686806 0.517773 -0.049679 0.414410 -0.844639 -0.014013 -0.583690 -0.041630 -0.862867 0.962278 1.272190 -0.943428 0.774819 0.079149 0.261816 -0.154556 -0.157475 0.373542 -0.055787 0.364306 -0.047786 -0.372677 -0.642785 -0.139563 0.111023 -0.267629 -0.190558 -1.490987 0.685649 -0.659555 -0.848293 0.185020 0.428397 -0.364083 0.136180 0.111838 0.085911 0.756274 -0.563734 -0.621297 -0.045725 -0.202071 0.270716 -0.165295 0.098696 0.046852 -0.389095 -0.454484 -1.138379 0.191684 -0.094411 -0.510710 0.137652 0.493437 -0.178636 0.247507 -0.006057 0.383771 -0.340446 1.077005 0.300377 0.447418 0.371155 0.245133 -0.279375 0.218245 0.810476 1.029970 -0.588335 0.070992 -0.491710 0.183850 -0.370855 -0.419397 0.107804 0.457303 0.553690 -0.807917 -0.841795 -0.479880 -0.293615 -1.020033 0.200254 -0.609237 -0.007461 0.591031 0.636907 0.297622 0.704255 1.326649 -0.737508 0.323006 0.026238 -0.208586 0.569873 0.326797 0.587009 -0.414387 -0.496312 0.370732 0.200208 0.329643 -0.029044 0.119272 0.304852 -0.977279 -0.106995 0.370585 0.534677 -0.413771 0.527111 0.481535 0.128432 -0.413745 -0.112536 0.657487 -0.228108 -0.193304 0.332124 -1.028858 0.681166 0.016372 0.038764 0.460236 0.147459 -0.518323 0.666482 -0.348184 0.068165 -0.422462 0.044656 -0.445677 -0.325402 -0.616050 0.402282 -0.198667 -0.372768 -0.277224 -0.229206 1.065804 -0.706553 -0.331186 0.384693 -0.047685 0.385094 -1.143961 1.345832 -0.605377 0.645387 0.035676 -0.173901 0.136047 -0.148977 -0.614007 -0.245254 0.360189 0.004250 0.257426 0.937670 0.554097 -0.136562 0.069385 0.885699 -0.137248 0.845431 -0.067136 0.464401 -0.281263 -0.554846 0.202805 -0.108447 -0.191689 -0.267416 0.276340 1.238708 0.273264 0.612570 1.052454 0.291554 1.137403 -0.606701 0.400550 -0.212852 1.017435 -0.386221 -0.288891 0.088723 0.578286 -0.302423 0.674913 -1.069082 -1.592400 -0.891359 -0.957706 -0.025587 -0.524090 0.379382 -0.468891 -0.029067 -0.956633 -0.634205 0.105026 -0.290292 0.510988 0.732436 0.023145 0.684887 0.630661 -0.613421 -0.195216 0.236000 0.700349 0.246200 -0.037240 -0.788998 0.495054 -0.887989 -0.073581 1.237224 -0.571231 0.134220 -0.280546 1.022563 -0.643897 1.369275 0.355154 -0.763210 0.831694 0.713835 0.795678 0.386331 -0.546483 -PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -1.880339 -4.203741 6.206549 4.424811 -0.110132 1.733192 2.290618 -0.759196 1.076221 1.680397 -1.674269 3.550963 -4.043052 -0.391509 -0.416266 0.335739 -4.029730 -3.675059 0.018398 -0.902897 -1.472684 -2.407668 -1.183375 4.724857 2.811312 1.209885 -2.266545 -0.601497 -6.070322 -2.909930 -0.970188 -0.369409 2.688708 0.750108 2.425135 -6.715696 2.333150 4.326701 0.110558 -4.615759 1.738805 -2.604366 0.326908 -0.572577 -1.256197 1.333854 3.072715 1.805521 1.491974 0.612742 -0.290927 -1.519427 1.306598 5.928651 0.600283 3.402469 3.856273 -1.540357 0.653615 -0.877165 0.445088 -3.156108 2.000649 1.014405 -2.257445 -1.497524 0.465539 -1.502291 -2.011213 2.111850 1.871571 -1.511213 -2.496787 -2.057974 -3.724240 -1.299776 1.445629 2.982387 5.480036 -3.033612 5.263197 1.759777 2.592674 0.175248 2.967861 -0.013025 3.547040 0.638032 -1.906045 -0.797822 -4.709159 -1.255976 -0.948714 2.509566 -1.644186 -1.388272 1.814478 -5.241196 -5.603966 1.832985 -0.567490 -2.301906 -2.005007 1.252977 1.945977 2.030627 -0.866034 -3.819626 -2.167580 1.790190 -2.328369 -1.087171 -0.037831 -0.009877 -1.119777 -0.980676 -4.463408 1.168096 2.106836 -2.028983 -1.481871 4.261936 -1.232806 3.821246 0.543666 1.262877 0.058766 3.088164 2.449815 -0.026720 0.264199 -2.315433 -3.163807 -0.156452 0.725052 1.658528 -3.095968 -0.807873 0.758408 1.465651 -0.214326 0.930699 -1.169299 5.526543 1.557174 -2.767066 -3.292010 -3.729181 -2.319784 -3.124064 0.284521 -1.789431 -2.380049 1.004821 2.710809 1.464997 0.140504 4.307674 -1.460775 2.397590 0.984313 -1.130615 0.966818 -0.760057 2.365440 -3.015632 -2.307600 2.133180 2.125609 2.356883 -0.483927 -0.176815 0.584205 -2.676429 -3.052227 1.571204 1.110428 1.618433 4.445716 3.261222 6.305933 -3.670316 -0.079935 0.589313 -0.954840 -0.941085 0.590887 -3.806303 2.040484 0.605152 -0.439228 5.145573 0.061941 -2.515473 2.560973 0.151204 0.929725 -3.851683 2.318076 -2.388879 0.359277 -1.846038 -1.106249 -2.290409 -1.855724 -3.370332 -1.833278 5.587266 -3.383282 -5.274873 2.128024 -0.412744 3.523535 -6.800188 4.192714 -2.209369 3.669909 -0.914064 -1.658286 0.278228 0.133177 -0.822356 1.652314 1.397568 -1.878813 2.003254 2.840006 1.355073 1.431423 0.844662 2.398763 0.044064 1.358158 -1.666313 1.801261 -0.429627 -1.385088 -0.916798 -1.014367 0.907950 2.297525 -0.188089 1.295115 2.997604 0.378471 1.840304 3.621559 1.406056 -1.788348 0.162977 -1.176275 4.268976 -2.622209 -2.354611 -1.246801 1.727384 0.596116 1.660896 -5.823711 -4.810336 -2.794800 -5.735391 -1.356288 -0.250125 1.465370 1.395040 -0.414047 -5.161417 -2.698594 3.045660 0.109265 5.225654 2.408917 0.773849 4.223832 2.550605 -0.105944 -1.442286 0.976559 1.553029 -1.183881 -0.441298 -3.114864 1.859367 -4.035716 3.422683 4.267731 -2.132956 2.276134 -0.983374 2.530290 -4.845907 5.598199 2.056484 -5.188957 1.175499 2.935231 3.328852 -2.352869 -3.127466 -PE-benchmarks/eulerian-path-and-circuit.cpp__main = 1.846144 -0.151361 7.317732 1.770588 -0.789860 -2.079577 4.973077 0.928075 2.963625 -1.144412 -2.819073 -5.093402 -3.864081 -2.097912 2.366696 -0.589544 -9.087358 -4.406429 0.439615 1.224635 -2.486236 -4.602884 5.584200 -0.726151 3.714622 8.273451 -3.301596 -2.112376 4.020129 -0.421490 7.887483 -2.533412 2.205126 11.428321 -0.362222 -11.268989 5.913302 -3.132386 -0.669655 3.574618 1.965837 2.851203 0.136577 -3.719050 -1.403949 2.449759 4.643380 12.487157 4.304478 2.166598 -1.586168 -10.067287 -0.428197 5.806870 -0.279218 -0.962412 2.415360 -0.866131 1.062331 0.629974 0.120799 -4.401450 -0.843935 5.844713 -0.615496 3.966183 6.195074 -9.033608 -4.653832 7.167069 0.362848 2.959148 -2.666836 -0.837384 0.111626 2.486942 0.838932 6.743449 5.956242 -4.637361 3.876156 0.933866 6.068773 0.276807 -8.723281 1.120763 -2.488781 0.010604 -2.516665 -3.651931 -10.156210 -6.998216 -2.530400 -7.273022 1.936902 -5.998904 0.005251 -4.198243 -2.171682 -1.607462 0.053952 -0.089536 0.453091 3.194140 4.676451 -1.855515 2.925175 -1.311795 -0.794486 -2.200395 -8.642160 7.030661 1.287239 3.586375 -4.331651 -0.838234 -5.666359 2.030328 -3.528168 -2.386637 3.753292 3.239819 -4.684428 2.863105 3.019992 0.553233 -0.796347 5.355215 5.152649 -1.144732 5.079701 0.771558 3.830003 -1.364488 3.984265 8.699008 1.107004 -5.438506 -0.561702 0.914591 -6.254417 -4.223617 0.372890 -1.532893 1.380478 -7.733599 -7.628220 -1.245005 -5.419338 -8.826707 2.605551 -2.109913 0.435620 5.684594 2.484747 6.204459 2.181513 5.635592 -8.801277 1.881495 -2.804777 -1.210108 -4.802962 5.605070 2.874274 -1.992167 0.752706 -0.342901 -1.027534 0.914402 -0.966234 -6.435463 1.240712 -7.089667 -2.520493 0.883833 -0.645117 0.281654 -6.624333 2.983870 -1.017285 -4.830035 -1.360259 6.703235 2.674185 -5.205189 7.538711 -3.350546 6.434702 -2.253114 -0.751426 -0.640105 1.745133 -1.319816 2.708520 -2.305313 -2.157449 -2.289047 -4.997474 1.821735 0.527152 -3.366019 2.943744 -4.247083 0.105315 1.000505 -2.904296 2.545779 1.607683 -2.513764 3.822176 0.006158 4.474947 -0.527779 5.661303 -1.109151 2.103879 1.798670 -4.478806 -0.362258 -6.786576 3.485947 -1.258384 -4.359351 4.477464 1.273957 4.235568 3.499413 2.666968 1.081912 3.606328 1.773618 3.671665 1.764781 -5.093194 -3.413784 -3.797420 1.271462 -0.020548 -0.446468 0.823976 -1.110278 6.737086 5.270295 3.089776 10.032545 -0.288187 3.448411 -1.954173 -5.349585 1.743667 6.171960 -2.418289 -3.432740 1.784020 2.472093 -5.586061 1.074063 -4.196404 -8.655948 -4.170492 -8.444534 -6.965818 -5.676183 2.041815 -2.666142 0.711362 -1.126613 1.184459 -0.853138 1.225844 2.763839 2.555756 -3.684752 4.506155 6.125137 -7.151716 -3.956455 8.738863 4.701260 -1.417103 3.892440 -11.487410 4.703760 -3.366374 0.787576 5.939435 -7.096765 -0.904100 -5.669819 7.140336 -6.345950 5.652141 1.045384 -3.790058 0.670408 -4.401564 2.418280 7.262469 -2.146069 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -1.277022 -5.271676 9.020281 6.712845 -0.288377 2.022749 2.245168 -1.608015 2.457757 3.303841 -2.728412 4.747457 -4.733993 -0.439318 1.997661 1.945058 -6.351647 -4.739332 0.688033 -1.050327 -2.265533 -3.484385 -1.361538 5.318677 3.953312 3.005810 -3.034997 -0.112418 -5.903321 -5.946419 -1.432165 -1.151912 3.718044 3.242039 4.337245 -8.558478 4.109336 4.615063 0.167233 -6.587978 1.538805 -2.626201 0.506901 -1.120631 -0.110780 3.519282 4.720445 3.710759 2.511708 2.141986 -0.788063 -3.035487 2.328676 5.526547 1.218461 3.933285 4.956002 -3.065723 0.962336 -1.373183 1.110818 -4.549898 2.866297 2.123258 -2.845103 -2.514173 0.824213 -2.073707 -3.057464 3.468851 3.347889 -2.247253 -4.346808 -3.386241 -3.255677 -1.251754 -0.837673 4.797153 7.737873 -3.687468 6.816301 2.892952 4.452668 -0.133931 3.763062 -0.293253 5.703123 1.244129 -3.608989 -0.821843 -6.210643 -5.046645 -0.835401 2.385331 -1.490709 -0.325522 1.479279 -6.354205 -6.935052 2.772317 0.012800 -2.184376 -3.909570 1.635717 3.895115 2.954933 0.058835 -4.723006 -2.184271 1.557348 -4.356881 -1.338748 -0.832715 0.080231 -2.300937 0.384546 -6.392089 1.064981 3.036521 -2.655452 -1.312522 5.181241 -1.421905 4.411255 0.269805 1.321763 0.373674 4.287158 3.623131 1.135893 2.096137 -3.197040 -4.540704 1.820373 1.518804 1.017004 -3.131833 -1.315703 0.875507 2.175084 -1.248689 1.630971 -1.743846 7.799844 3.570993 -3.479809 -5.577190 -5.125183 -3.351824 -3.596587 1.726575 -2.832582 -1.846148 1.223174 3.813440 1.679999 0.616359 4.628100 -3.880215 3.373782 0.268777 0.221867 1.384516 0.843672 3.259728 -4.179032 -1.912806 3.227474 3.560098 1.931785 0.106836 -1.761788 2.007804 -3.756480 -4.366228 3.537685 1.146820 2.258041 5.231073 3.966236 9.535214 -3.731319 -0.896111 1.379181 -0.145794 -2.035407 1.524930 -5.015197 3.746758 0.140719 1.659684 6.720210 0.005281 -3.243057 2.702584 0.808505 0.608115 -4.209741 2.499229 -2.957517 1.239137 -1.529720 -0.612283 -3.914971 -2.406831 -3.668624 -1.006667 7.583519 -2.288758 -7.345750 3.630277 -3.698588 5.152581 -8.802380 5.688948 -3.154041 3.035148 -1.949309 -2.523006 -0.295999 -1.371789 -1.300871 1.859057 2.077989 -1.223910 1.994478 3.729724 1.912286 1.404041 1.332778 2.791307 0.216811 2.236109 -1.192130 2.307248 -1.081274 0.715082 -1.941559 -1.207008 1.314218 2.791718 -1.445471 1.639502 3.574032 0.335709 3.053048 3.683255 1.585897 -3.024633 1.006504 -0.950840 5.557171 -4.002301 -3.326362 -1.237130 1.654394 -0.062918 2.339145 -7.574837 -5.574865 -2.879511 -6.940176 -3.892018 0.846363 2.848238 1.383374 -0.708475 -5.509476 -3.078934 4.672666 1.202828 5.614911 2.835424 0.409179 5.466362 3.466254 -0.068498 -3.110619 -0.269685 0.777478 -1.806827 -0.613462 -4.227352 2.926256 -5.186040 4.185166 6.104059 -3.430175 2.199105 -2.996725 4.961539 -6.330065 6.814654 3.020888 -6.534383 0.859220 3.610472 4.573674 -3.669520 -4.441050 -PE-benchmarks/tug-of-war.cpp__main = 0.201667 -0.475918 1.282157 0.905552 -0.240369 -0.048569 0.389245 -0.304591 0.485571 -0.135499 -0.367057 0.358127 -0.660228 0.339222 -0.446300 0.603968 -1.104747 -0.603787 -0.028292 -0.234019 -0.117806 -0.271992 0.641292 0.051070 0.729436 0.630325 -0.410552 -0.458481 -0.542378 -0.334816 0.535690 -0.389106 0.474757 0.448377 -0.087873 -1.260602 0.582056 0.365817 -0.362037 -0.711625 0.575196 -0.377372 0.026836 -0.673042 -0.135053 0.149966 0.293003 0.746156 0.474092 0.403058 -0.169418 0.015879 0.352197 1.082453 -0.437683 0.293552 0.473255 -0.077632 -0.126191 -0.174721 0.254987 -0.065245 0.212984 0.337526 -0.032564 -0.696184 -0.397855 -0.708760 -0.537576 0.468020 -0.069691 0.414461 -0.733969 -0.028999 -0.456183 0.000480 -0.847939 0.839211 1.028835 -0.770876 0.555916 0.065544 0.222216 -0.131053 -0.142666 0.312875 -0.006468 0.305104 -0.044897 -0.241771 -0.505324 -0.173125 0.135726 -0.355617 -0.127903 -1.209451 0.498782 -0.635249 -0.641860 0.115203 0.373976 -0.258397 0.202152 0.124061 0.086104 0.573496 -0.426102 -0.466381 0.101690 -0.203463 0.236146 -0.097806 0.071909 0.124726 -0.309034 -0.367096 -0.938973 0.140020 -0.125146 -0.393215 0.259494 0.378320 -0.121731 0.125929 -0.013107 0.252583 -0.279275 0.941114 0.213456 0.357225 0.270533 0.239433 -0.071272 0.279756 0.673549 0.803870 -0.457947 0.055323 -0.385210 0.129094 -0.366559 -0.443295 0.069835 0.269774 0.385832 -0.669504 -0.687085 -0.364607 -0.344132 -0.876208 0.166921 -0.502451 -0.009468 0.520582 0.516320 0.320120 0.625095 1.031305 -0.633950 0.189310 -0.018788 -0.117109 0.481500 0.371258 0.474909 -0.308165 -0.362586 0.326761 0.071162 0.232626 0.017682 0.040905 0.244155 -0.809606 -0.027366 0.391425 0.460297 -0.306444 0.410806 0.365643 -0.119720 -0.239885 -0.059823 0.581316 -0.128530 -0.172747 0.305120 -0.801931 0.607927 -0.009304 0.101397 0.271947 0.102846 -0.344766 0.475061 -0.273663 0.079966 -0.335222 -0.057098 -0.320672 -0.237033 -0.546045 0.459518 -0.144119 -0.308778 -0.173536 -0.173960 0.828544 -0.582057 -0.180008 0.353908 -0.040959 0.393039 -0.782100 0.929534 -0.493202 0.586573 0.082577 -0.129448 0.132749 -0.296864 -0.497123 -0.242178 0.290303 0.086512 0.122374 0.650129 0.474827 -0.140196 0.083317 0.715496 -0.114365 0.718864 -0.026648 0.343393 -0.214394 -0.390985 0.225458 -0.090793 -0.202095 -0.250496 0.239474 1.086725 0.218612 0.601460 0.921078 0.139881 0.920262 -0.499441 0.278383 -0.175250 0.748835 -0.319122 -0.229375 0.096902 0.475612 -0.293494 0.505575 -0.831083 -1.337297 -0.792120 -0.675267 -0.080854 -0.513216 0.307720 -0.379887 -0.006693 -0.665148 -0.490123 0.101396 -0.248071 0.409845 0.540686 -0.019209 0.525546 0.540319 -0.539599 -0.187266 0.243553 0.592846 0.215695 0.071718 -0.741511 0.458365 -0.690274 -0.117377 1.055918 -0.522149 0.069385 -0.258652 0.898138 -0.487918 1.070066 0.288964 -0.623106 0.671978 0.555000 0.573871 0.479937 -0.443778 -PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -3.132226 -6.036662 10.597559 7.218038 -0.369870 2.736368 2.439643 -2.266575 1.635974 2.432645 -2.538605 5.815833 -5.470663 -0.733306 -0.988359 0.675215 -6.597107 -5.441564 -0.608631 -2.651743 -2.803445 -2.972390 -2.179976 7.071678 4.585507 1.615054 -4.086247 -0.324948 -9.187051 -5.795418 -1.939834 -0.533128 4.125895 0.431733 3.900693 -10.675219 4.333742 6.913198 -0.337863 -6.460124 2.828974 -3.758074 -0.146805 -0.992459 -2.432515 2.162537 4.165184 1.140104 2.492217 1.151073 0.263525 -1.418302 2.317273 9.234263 0.869442 5.263165 5.931858 -2.914756 0.863974 -1.031810 0.698870 -4.563296 3.012322 0.900786 -3.051875 -3.446510 1.137613 -1.928773 -2.441511 3.364805 3.014433 -3.550019 -2.991221 -3.662939 -6.483334 -2.418341 3.509713 4.060434 8.027713 -4.446315 7.639788 2.510878 3.828150 0.715257 4.826301 0.122768 6.391077 1.244717 -2.649487 -0.924540 -6.279233 -1.501580 -0.977966 5.247323 -3.116655 -1.581444 3.482406 -9.519414 -8.695173 3.149760 0.359327 -3.872548 -3.966810 1.014914 2.634155 2.361592 -1.095051 -5.412515 -3.036942 3.252916 -3.730994 -1.623798 -0.566754 -0.774777 -1.124365 -0.112414 -7.108158 2.841986 3.329072 -2.165222 -3.019545 6.812572 -1.281033 4.649567 0.420765 2.809023 -0.705479 4.210387 2.556040 0.898601 -0.855880 -2.693650 -5.399817 -1.044519 1.342440 1.096312 -5.136810 -2.147194 0.649528 2.365586 -0.776399 2.491076 -2.511030 8.975152 2.672507 -4.003613 -5.325898 -5.723285 -4.244453 -5.323577 0.010801 -2.594387 -5.029398 1.499979 4.249377 2.619448 0.558643 6.038965 -1.400763 3.967195 1.326934 -2.069602 2.143895 -2.876780 3.777909 -5.004057 -3.447351 3.566174 2.980368 4.022090 -0.215733 -0.231212 1.374822 -4.316205 -4.700757 2.746267 1.582525 2.525098 7.027667 5.933364 11.233801 -5.936084 -0.123979 1.107380 -1.866751 -1.564979 0.930465 -5.337264 2.095441 1.648078 -0.486997 9.205829 0.404200 -3.878784 3.235571 0.484178 1.549242 -5.790094 3.876041 -3.391184 1.324095 -2.191173 -2.390670 -4.388932 -2.388664 -5.496189 -4.225090 8.855260 -6.902874 -8.683583 4.404435 -0.110286 5.441130 -11.043175 5.855635 -3.636345 6.537088 -1.572551 -2.377709 -0.015611 0.103029 -2.715804 3.874663 2.084025 -3.730018 3.002117 4.789174 2.345105 2.807893 0.236540 3.982969 -0.822086 3.116531 -2.823988 3.408411 -0.655188 -2.582353 -2.011985 -1.424435 0.335230 2.908140 0.212760 0.521590 4.179977 0.845247 1.866322 5.901255 2.755150 -2.981807 0.840767 -1.481990 5.732846 -4.358981 -4.210431 -0.873582 2.954736 1.199857 2.053780 -9.428876 -6.786633 -5.523161 -8.689682 -1.648430 0.238093 2.034142 1.962803 -1.249410 -7.643959 -4.463385 6.150597 0.356711 8.295941 4.069230 1.573364 6.443613 4.111447 -0.014359 -2.212796 0.339642 2.127127 -1.239049 -0.966615 -5.433192 3.977059 -5.630651 4.889490 7.025535 -3.464440 4.124037 -0.408292 3.064855 -7.558651 8.460165 2.967388 -8.193254 1.940053 4.852573 4.758754 -4.031314 -4.842848 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.478864 -0.480500 1.647554 1.091879 -0.637432 -0.067234 0.180850 -0.448288 0.448593 -0.712455 -0.602503 0.422746 -0.622068 0.356077 -0.709463 0.487177 -1.633310 -0.583167 -0.148013 -0.345343 -0.101024 -0.143463 0.564515 0.255315 0.821696 1.251058 -0.421720 -0.285355 -0.504209 -0.138346 0.686163 -0.365803 0.466991 0.862140 0.115925 -1.364219 0.707514 0.483611 -0.437090 -0.859517 0.676607 -0.505495 -0.162869 -1.021385 -0.321805 0.153329 0.214156 1.175163 0.406238 0.314157 -0.658369 0.137883 0.388749 1.195774 -0.308595 0.312880 0.734441 -0.063643 -0.060398 -0.258613 0.288986 -0.005006 0.072649 0.235967 -0.015379 -0.938470 -0.463396 -0.937824 -0.338126 0.541176 -0.017099 0.404439 -0.789053 -0.186987 -0.812200 0.076775 -1.113726 1.205687 1.073249 -1.047776 0.497780 0.020080 0.207498 -0.061875 -0.119850 0.417179 0.093795 0.429343 0.147828 -0.160203 -0.747295 -0.335586 0.343339 -0.883782 -0.337555 -1.801134 0.626174 -1.443985 -0.725058 0.079129 0.576939 -0.536383 0.677775 0.109924 0.027676 0.555879 -0.425636 -0.305350 0.462420 -0.108396 0.254332 -0.043921 0.080585 0.564335 -0.156723 -0.399860 -1.193678 0.520868 -0.051383 -0.149960 0.722198 0.484889 0.046962 -0.017511 -0.085922 0.193033 -0.389692 1.261080 0.114090 0.219486 0.062133 0.483447 0.570645 0.619717 0.771107 0.719060 -0.690899 -0.042467 -0.262231 0.236542 -0.411917 -0.678426 -0.155572 0.171739 0.045233 -0.798500 -0.782622 -0.585730 -0.873448 -1.080837 -0.006187 -0.474777 -0.411451 0.848251 0.595795 0.694374 0.721515 0.889867 -0.656470 -0.043211 0.013827 -0.062376 0.513463 0.484297 0.513774 -0.355549 -0.372095 0.474791 -0.282792 0.435630 0.010953 0.127716 0.298973 -0.945712 0.037387 0.683549 0.702787 -0.190096 0.621489 0.661491 -0.744001 -0.097935 -0.128184 0.614693 -0.347593 -0.290136 0.432689 -0.811961 0.646325 0.080657 0.343061 0.425326 0.105468 -0.099477 0.442055 -0.210416 0.082373 -0.359500 -0.229374 -0.305642 -0.303048 -0.653448 0.788885 -0.215290 -0.317313 -0.436588 -0.642183 0.991801 -1.176148 -0.146287 0.537725 0.002290 0.709432 -0.709481 0.567039 -0.568706 1.002066 0.450091 -0.105425 0.266738 -0.959608 -0.833382 -0.220855 0.308666 0.093755 -0.057992 0.482208 0.622122 -0.215713 0.053622 0.833796 -0.419482 1.006832 -0.203850 0.314812 -0.304432 -0.524350 0.323326 -0.048529 -0.478850 -0.366298 0.490574 1.394178 0.035034 1.177839 1.087713 0.110913 1.052828 -0.602828 0.199882 -0.291969 0.589344 -0.427184 -0.398960 0.168551 0.655909 -0.208656 0.417134 -1.059405 -1.699646 -1.568334 -0.692960 -0.031908 -1.068690 0.370803 -0.441121 -0.110912 -0.703223 -0.715183 0.249883 -0.291869 0.486094 0.725807 -0.054180 0.635150 0.632542 -0.669365 -0.084874 0.540218 0.935136 0.354562 0.251559 -1.215111 0.754704 -0.653098 -0.236465 1.581447 -0.705303 0.281434 -0.328676 1.123896 -0.582881 1.167795 0.287064 -1.107698 0.547705 0.769322 0.282240 0.853210 -0.578982 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -0.398571 -1.108508 2.802028 1.897611 -0.660897 0.439600 0.279110 -0.920818 0.715939 -0.556112 -0.687867 0.947942 -1.454017 0.174670 -0.302519 0.117019 -2.474058 -1.333755 -0.501357 -0.889803 -0.653556 -0.773055 -0.061764 1.442641 1.084693 1.275040 -1.088869 0.253172 -1.895091 -0.665255 0.449988 -0.205049 1.083568 1.011427 0.928069 -3.247604 1.307577 1.467850 -0.305004 -1.583714 0.866327 -1.318355 -0.055439 -1.055523 -0.762142 0.521569 0.533276 0.933203 0.858774 -0.038986 -0.546838 -0.094404 -0.085561 2.158046 -0.309911 0.992745 1.294738 -0.640794 -0.179663 -0.357915 0.116058 -0.580586 0.679221 0.420792 -1.035101 -1.287734 0.326272 -1.105442 -0.879315 1.208444 0.721179 -0.498413 -0.952187 -0.947898 -1.830956 -0.439080 0.970488 1.565572 2.011689 -1.367688 1.411718 0.175077 0.721089 0.234244 1.024777 0.194410 1.751029 0.296007 -0.347066 -0.235070 -2.015466 -0.674410 0.061498 0.450640 -0.636819 -1.120027 0.699896 -2.836246 -1.906725 0.322085 0.431739 -1.025348 -0.909240 0.269307 0.708533 0.672356 -0.172415 -1.168003 -0.176923 0.820993 -0.737092 -0.175607 -0.090181 0.274082 -0.428875 -0.816326 -2.127830 0.948947 0.484865 -0.184057 -0.079075 1.702631 -0.776723 0.469560 0.128449 0.566622 -0.561009 1.744806 0.096013 0.011431 -0.106992 -0.492756 -0.281858 -0.202928 0.447524 1.262287 -1.254294 -0.802452 -0.135588 0.450946 -0.914632 -0.304698 -0.566637 1.547746 0.578140 -1.254105 -1.329149 -1.204292 -1.412932 -1.983920 -0.134245 -0.746710 -1.090590 0.980809 1.163615 1.346491 0.647678 1.893690 -0.697794 0.767704 0.192610 -0.592126 0.922029 0.037837 1.053053 -1.131181 -0.854125 0.967285 -0.209284 1.114404 -0.046083 0.035804 0.251311 -1.492123 -1.144136 1.009763 0.764729 0.870050 1.602098 1.666740 1.395710 -1.426089 0.244284 0.733285 -0.552028 -0.447210 0.486517 -1.186363 0.607247 0.527617 -0.061121 2.092068 0.006318 -0.877344 0.436540 0.232985 0.561865 -1.435514 0.292772 -0.679942 0.462812 -1.091712 -0.149792 -0.990930 -0.728760 -1.355218 -1.426686 2.158805 -1.741179 -2.264671 1.529308 -0.132603 2.038171 -2.680841 0.707415 -0.983701 2.112725 -0.197866 -0.277966 0.176013 -1.009273 -1.194822 1.005561 0.447802 -0.542148 0.302283 1.168992 0.930784 0.497108 -0.115546 1.239082 -0.234766 1.307567 -0.817646 0.945459 -0.350293 -0.591828 0.082416 -0.344791 -0.323635 0.373253 0.455615 1.049336 1.080912 1.268502 1.206395 1.273627 1.107325 -0.768780 0.132792 -0.416930 1.004741 -0.880288 -1.044359 0.133475 1.152585 0.067446 0.380261 -2.274094 -2.549574 -1.901839 -2.483654 -0.136713 -0.599762 0.436294 0.324948 -0.269085 -1.730535 -1.002221 1.241510 -0.087719 3.095378 0.889538 0.152779 1.454546 1.443446 -0.878332 -0.469023 0.868072 0.974507 -0.148504 0.124991 -2.256000 1.597182 -1.278896 0.772078 2.438055 -1.274154 1.041142 -0.549429 1.616029 -1.707944 2.271038 0.646225 -2.155641 0.724096 1.074141 0.979524 0.419876 -1.181879 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -1.025992 -3.089318 4.745807 3.635760 0.389791 1.249633 1.855936 -0.814065 1.001791 2.577178 -1.144279 2.693941 -2.905242 -0.386779 0.423869 1.069933 -2.525474 -2.593493 0.152123 -0.720979 -1.088678 -1.782214 -0.633180 2.957929 2.429511 0.616567 -1.662681 -0.759278 -4.090608 -3.552631 -1.286953 -0.393593 2.028769 0.827933 1.822391 -3.696956 1.975078 3.174374 0.007825 -3.238814 1.160886 -1.296076 0.195272 -0.031527 0.040395 1.682908 2.423044 0.906249 1.318612 1.276670 0.563790 -1.366883 1.822376 3.147209 0.526514 2.495924 2.655154 -1.334684 0.797649 -0.529102 0.485730 -2.379182 1.520250 0.716850 -1.216219 -1.271602 0.118453 -0.655596 -1.467629 1.584844 1.370232 -1.356229 -2.208222 -1.674314 -2.042665 -0.870513 -0.533924 1.876955 4.045737 -1.889691 3.896194 1.742861 1.959925 -0.246450 1.988815 -0.147799 2.460802 0.608461 -1.664883 -0.348829 -2.934573 -1.737365 -0.687584 2.315450 -1.240462 -0.109677 1.389101 -3.169153 -4.109454 1.628878 -0.085869 -1.450730 -1.929804 0.989484 1.305995 1.437477 -0.355364 -2.813523 -1.541750 0.955543 -1.700123 -0.916595 -0.380128 -0.488780 -1.019696 0.445013 -3.208111 0.617080 1.490779 -1.726879 -1.466283 2.826467 -0.358590 2.742120 0.243156 1.049612 0.138469 1.768554 1.928646 1.003847 0.804024 -1.454577 -3.374759 0.137198 0.934221 0.277933 -1.923639 -0.341247 0.269989 1.112333 -0.134246 1.657561 -0.728809 4.420014 1.888757 -1.951738 -2.646189 -2.582516 -1.484851 -1.753193 0.865317 -1.283552 -1.123717 -0.107670 1.957323 0.345029 0.155232 2.778611 -1.353449 1.580598 0.516062 -0.420059 0.722581 -0.498152 1.716622 -2.232822 -1.491379 1.641392 2.384742 1.207015 -0.008336 -0.296618 0.895756 -1.817750 -2.033004 1.198212 0.168782 0.462632 3.171648 2.270469 5.480973 -2.053299 -0.281804 0.572929 -0.314990 -0.709862 0.521038 -2.953496 1.814504 0.167127 0.321910 3.734006 0.116193 -1.687057 2.048074 -0.082432 0.403558 -2.555501 1.940497 -1.846473 0.408676 -0.983644 -0.678348 -1.808612 -1.370935 -1.789436 -0.381891 4.062622 -1.225322 -3.416094 1.539488 -0.832493 1.737028 -4.714691 3.803681 -1.586241 1.501202 -1.065762 -1.433503 -0.023833 0.625036 -0.599378 0.665365 1.115498 -1.356429 1.635985 2.215034 0.821652 0.730678 0.592321 1.606556 -0.001839 1.088060 -0.947236 1.482540 -0.270237 -0.337033 -1.182249 -0.677708 0.779153 1.388820 -0.860204 0.530558 1.932165 -0.441000 0.907606 2.156035 1.158262 -1.474316 0.799110 -0.349893 3.200148 -2.183647 -1.671510 -0.679246 0.663165 0.144166 1.534595 -4.160005 -2.583520 -0.860139 -3.590440 -1.592233 0.674712 1.480196 0.857032 -0.529364 -3.336180 -2.111711 2.409731 0.393919 2.092835 1.670889 0.545703 2.967313 1.681867 0.448943 -1.162567 -0.575497 0.563691 -0.750929 -0.867388 -1.443936 1.250153 -2.815217 2.296043 2.746327 -1.530244 1.481666 -0.992895 2.046398 -3.580078 3.837372 1.467505 -3.202030 0.999041 2.377098 2.825622 -2.721473 -2.213502 -PE-benchmarks/quicksort-for-linked-list.cpp__main = -0.213723 -0.555584 1.832572 0.942578 -0.996665 -0.032713 0.085028 -0.498781 0.944542 -1.999526 -0.664573 0.181536 -1.133891 0.459216 -0.920968 -0.119356 -2.694262 -1.192258 -0.053307 -0.405353 -0.204614 -0.724742 0.780322 0.630572 0.536933 1.729944 -0.722609 0.094860 -0.969876 0.942059 1.877751 -0.810730 0.840666 1.580287 0.023544 -3.455077 0.817297 0.046110 -0.571184 -0.956461 0.723735 -1.381041 0.254775 -2.183535 -1.095626 -0.143539 0.325698 1.449543 0.857539 -0.534947 -1.342010 -0.139547 -0.778026 2.046051 -1.142203 0.187580 0.605877 -0.314196 -0.474248 -0.446485 0.230995 -0.064128 0.622465 1.005641 -1.070385 -1.047395 0.099118 -1.819829 -1.142802 1.150020 0.180265 1.343940 -0.874322 0.248030 -1.831835 -0.209527 1.149669 1.714216 1.799748 -1.248916 0.855396 -0.288351 0.850723 0.187120 0.219329 0.723569 0.997622 0.283640 -0.421338 -0.419463 -2.046673 0.057234 0.053044 -0.780663 0.399944 -1.930712 0.232693 -2.561601 -0.937018 -0.226970 0.372276 -0.194911 -0.098057 0.033026 0.831088 0.741882 -0.640962 -0.876429 0.334017 -0.022852 -0.444422 0.229348 0.548575 0.622845 -0.386473 -1.741922 -1.581442 0.150575 -0.252228 -0.408538 0.871325 1.121614 -1.085083 -0.063792 0.172441 0.274215 -0.715629 1.815998 -0.161085 -0.370752 0.110711 -0.309417 0.896276 -0.468402 0.568394 2.696736 -0.876938 -0.900406 -0.457599 0.144582 -1.178088 -2.059900 0.100449 -0.034673 -0.176656 -1.291577 -0.883206 -0.644630 -0.818826 -2.333934 -0.265903 -0.857708 -0.458008 1.831034 0.988298 1.400260 1.256002 1.812092 -0.747164 0.876885 -0.236555 -0.375580 1.057210 0.692370 0.962843 -0.521775 -0.513118 0.513467 -1.036135 0.940459 -0.043796 -0.466337 0.050415 -1.589730 -0.784443 0.666999 1.308979 0.608443 0.612636 0.717723 -1.402720 -1.564167 0.439994 1.113087 0.008478 -0.341511 0.597358 -0.869228 1.001152 0.316973 -0.459886 0.344346 0.020339 -1.070872 0.032983 0.176203 0.568482 -0.890910 -0.826103 -0.277760 0.014015 -1.382102 0.581198 -0.610849 -0.756582 -0.900482 -1.253360 1.328350 -1.881214 -1.158709 1.212878 0.327752 2.339037 -1.867129 -0.204936 -0.954788 2.442842 0.161706 0.032898 0.179945 -1.379061 -0.911722 0.261722 0.360778 -0.054690 0.082500 0.640963 1.192215 0.586519 0.171188 1.309890 0.250949 1.032255 -0.187045 0.236863 -0.412174 -1.017211 0.973015 -0.327247 -0.206860 0.127898 1.198986 1.902411 1.121049 1.926122 2.345509 0.864521 1.153743 -0.669340 -0.689301 -0.617982 0.932040 -0.287537 -0.497453 -0.060407 1.352838 -0.478239 0.402900 -1.468886 -3.382617 -2.284544 -1.699788 -0.000828 -1.464180 -0.036127 -0.071932 0.510897 -1.430397 -0.051473 -0.258884 -0.537442 2.825654 0.672614 -0.118893 0.926513 1.377720 -1.797305 -0.965403 1.824523 1.431798 -0.097955 0.953755 -2.876069 1.242940 -1.315999 0.287124 2.222647 -1.332136 -0.106505 -0.410728 1.948979 -0.787758 2.074894 0.782382 -1.731885 0.927147 0.287772 0.443668 2.362132 -0.808281 -PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -0.632715 -0.865539 4.137518 2.731985 -0.519607 0.382445 0.446707 -2.131817 1.992647 0.624958 -0.282443 0.878688 -1.411068 0.590413 -0.426251 1.746735 -3.012106 -1.485773 -0.785930 -2.371151 -1.167773 -0.795561 0.872277 0.072862 1.829051 0.213628 -1.628113 -0.385590 -1.561069 -2.723512 0.991149 -0.803107 1.349281 -0.737618 0.264939 -5.852451 2.717154 1.573050 -1.164779 -1.806299 1.463372 -1.324560 0.206811 -0.685990 -0.916532 0.497523 0.236663 0.277630 1.991251 0.917449 0.779370 0.876845 0.580234 4.344435 -1.687379 1.272872 0.734935 -1.036361 -1.158751 0.519938 0.262004 -0.099533 1.112354 0.444399 -0.323716 -2.650739 0.017241 -1.076504 -1.831746 1.652378 0.032587 -1.352003 -1.195162 -0.800747 -2.018314 -1.046181 -0.445855 1.826940 2.648115 -1.809054 1.527482 -0.059623 0.280099 0.475757 0.900907 0.330863 2.226586 0.467752 -0.329664 -0.547977 -0.573247 -0.524948 0.644148 0.870054 -0.678432 -2.571629 1.346345 -2.384019 -2.337029 0.835925 1.506442 -0.860215 -2.464978 -0.920198 0.950020 0.922761 -0.932753 -1.832060 -0.659286 0.676026 -0.237556 -0.441175 -0.212426 -1.450765 -0.643253 -0.371118 -2.800884 0.942208 -0.014341 -0.147184 -1.542096 2.032688 -0.684933 -0.465664 0.029984 1.750415 -1.393170 2.103237 -0.817413 1.668924 -0.268087 0.644939 -2.052580 -0.398425 1.118762 0.875549 -0.764769 -0.739881 -1.650310 0.475874 -2.123384 0.472068 -0.559939 2.223796 2.362743 -1.033238 -1.691708 -0.582360 -0.758450 -3.076829 0.408613 -1.321572 -1.266879 0.945605 1.648211 1.344405 1.780909 2.233746 -1.291125 1.109273 -0.419992 -0.766391 2.330273 -0.632242 1.746541 -1.387454 -0.943725 0.712862 0.417005 1.168049 0.034562 0.063108 0.495655 -2.176847 -0.824810 0.762421 1.015452 0.139421 1.317652 1.949478 3.865934 -2.331388 0.324356 1.665002 -0.994928 -0.156446 0.407874 -1.771809 0.299055 1.034872 -0.167049 2.592200 0.087780 -1.397286 0.298943 -0.178768 0.706453 -1.336115 0.254128 -1.090484 0.175965 -0.790048 -0.804996 -1.565906 -0.757234 -1.361927 -1.651271 2.661773 -2.382048 -2.468250 2.944345 -1.058055 1.406909 -3.582517 2.990090 -1.617177 1.746288 -1.315754 -0.060714 -0.356655 0.406346 -2.201408 1.567925 0.653849 -0.763654 0.896420 3.061843 1.409881 0.848762 -0.894686 2.298775 -0.732895 2.325157 -0.815083 2.492257 -0.909875 -0.773911 -0.225413 -0.390119 -0.852015 -0.553358 0.961766 1.012832 0.932169 0.811839 1.099984 1.837408 2.399290 -1.200145 1.869629 -0.481591 1.123596 -0.798167 -1.032092 1.221586 1.383000 -0.298791 0.911684 -3.013500 -2.673012 -2.666556 -2.593980 0.301859 0.418342 0.359886 -0.510209 -0.324375 -2.353487 -1.353846 2.148437 -0.350575 2.145548 1.291532 0.498943 1.587978 2.288291 -1.001289 -0.487334 -0.427388 0.253801 0.411538 -0.839051 -2.207460 2.510580 -1.738621 0.451695 2.659680 -1.239509 0.850354 0.251465 1.256573 -1.866930 2.673695 0.448230 -1.040450 2.045421 1.995284 2.253562 0.057163 -1.239642 -PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.789443 -0.702282 1.656300 1.056237 0.145103 0.254162 0.739228 -0.595295 0.833717 0.605793 -0.070607 0.498032 -0.956896 0.161563 -0.489612 0.657158 -0.834992 -0.902829 -0.138707 -0.854567 -0.392576 -0.487954 0.412780 0.068559 0.835129 -0.453412 -0.666452 -0.653350 -1.357154 -1.105381 0.344643 -0.368280 0.677723 -0.886617 -0.261108 -2.728297 0.898207 0.924508 -0.515890 -0.954813 0.808996 -0.726023 0.264208 -0.073383 -0.328688 0.060340 0.349723 -0.140596 0.776125 0.447163 0.668552 0.280393 0.245834 2.337181 -0.854594 0.735234 0.454371 -0.279277 -0.570415 0.272255 0.115709 -0.252673 0.629891 0.223786 -0.287093 -0.888638 -0.101136 -0.434523 -1.010631 0.496703 -0.130369 -0.416413 -0.462573 -0.125376 -0.918483 -0.578942 0.001990 0.481373 1.321583 -0.816461 1.085096 0.026164 0.241599 0.154284 0.375762 0.223287 0.567524 0.141443 -0.260257 -0.440481 -0.366016 0.340308 -0.019276 0.847961 -0.257308 -1.056403 0.846294 -0.498789 -1.193291 0.414135 0.354577 -0.320849 -1.129260 -0.212842 0.227056 0.699116 -0.753745 -1.095974 -0.744459 0.318897 0.023521 -0.275082 0.102785 -0.888200 -0.385433 -0.549895 -1.105452 0.197393 0.064937 -0.482665 -1.055129 0.983002 -0.501927 0.245474 0.130723 0.843676 -0.528635 0.870621 -0.070003 0.629790 -0.026624 0.016031 -1.637803 -0.628387 0.494151 0.966161 -0.493667 -0.091727 -0.675407 0.135071 -0.581371 0.194022 -0.060865 1.023963 1.167689 -0.588863 -0.612747 -0.334374 0.159231 -1.286837 0.164935 -0.617146 -0.242837 0.270834 0.757524 0.359299 0.646916 1.645988 -0.492651 0.719980 -0.048345 -0.664362 0.890378 -0.411895 0.814425 -0.644712 -0.674018 0.190500 0.551297 0.539785 -0.054591 0.173420 0.120108 -0.994985 -0.377535 0.001375 0.419351 -0.209555 0.700094 0.775158 1.817300 -1.400025 0.133721 0.563533 -0.458136 0.068690 0.022745 -1.034393 0.169628 0.468276 -0.502064 1.073253 0.124769 -0.903149 0.464800 -0.321892 0.305580 -0.739630 0.396365 -0.665316 -0.167800 -0.430227 -0.545558 -0.587925 -0.462107 -0.590501 -0.557594 1.221334 -0.810341 -1.068616 0.808105 -0.007706 0.317763 -1.918996 1.831473 -0.741795 0.791495 -0.695083 -0.020402 -0.183155 0.976755 -0.618023 0.461619 0.338374 -0.563858 0.769017 1.631509 0.569609 0.419995 -0.226341 1.100399 -0.159026 0.684561 -0.348114 0.993906 -0.327159 -0.722068 0.054431 -0.261553 -0.033217 -0.019255 0.357172 0.583910 0.695269 -0.061943 0.525901 1.038181 1.061300 -0.460233 0.734806 -0.188438 1.072666 -0.301556 -0.333920 0.195240 0.635358 -0.042851 0.540352 -1.380254 -1.311099 -0.653255 -1.454703 0.388663 0.288079 0.055711 -0.156151 0.045352 -1.490652 -0.602522 0.623809 -0.333852 1.153462 0.598342 0.381406 0.819872 0.914452 -0.454673 -0.248391 -0.094596 0.203368 0.012596 -0.511319 -0.571258 0.691614 -1.043832 0.368979 0.841238 -0.368074 0.288385 0.336841 0.421650 -0.884005 1.480928 0.342271 -0.397704 1.154885 0.894274 1.436844 -0.291045 -0.511648 -PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.257055 -0.309841 1.118164 0.732937 -0.191126 0.075377 0.268199 -0.530312 0.585476 -0.194080 -0.123749 0.131977 -0.687449 0.237568 -0.427753 0.353311 -0.928462 -0.571301 -0.238742 -0.570875 -0.173606 -0.330243 0.515297 0.062301 0.534931 0.241915 -0.452802 -0.236100 -0.749712 -0.289750 0.602999 -0.283891 0.471795 0.101699 -0.166720 -1.559652 0.637042 0.478918 -0.395717 -0.510526 0.580548 -0.606206 0.108302 -0.501956 -0.319582 0.031521 -0.006807 0.125974 0.605794 0.085428 0.131374 0.211718 -0.023992 1.161520 -0.732211 0.335723 0.183420 -0.138457 -0.363637 0.044976 0.056415 0.098930 0.362419 0.267633 -0.303793 -0.748599 -0.095245 -0.552885 -0.693958 0.512029 -0.168462 0.053779 -0.437046 -0.051485 -0.699107 -0.240257 0.099060 0.566166 0.844666 -0.583876 0.487445 -0.126290 0.038299 0.001784 0.137451 0.231783 0.388144 0.108718 -0.030743 -0.258810 -0.451985 0.160347 0.104504 0.178226 -0.123990 -0.782161 0.470471 -0.729822 -0.695407 0.028417 0.369753 -0.264632 -0.466297 0.001628 0.105215 0.400211 -0.387973 -0.610888 -0.052856 0.171107 0.132690 -0.083273 0.013222 -0.254395 -0.268560 -0.584193 -0.831530 0.199478 -0.172769 -0.218355 -0.232764 0.596762 -0.398154 -0.105180 0.093182 0.451248 -0.449570 0.799047 -0.247775 0.316342 0.014486 0.094768 -0.348865 -0.318873 0.401892 0.903988 -0.404338 -0.154505 -0.512082 0.020141 -0.603335 -0.335727 -0.010625 0.318310 0.488590 -0.560392 -0.397085 -0.107771 -0.210651 -1.137334 0.005274 -0.435478 -0.164021 0.454284 0.513466 0.485837 0.640824 1.164384 -0.375805 0.296168 -0.010465 -0.431375 0.729234 0.034983 0.552070 -0.360837 -0.446284 0.229839 -0.108463 0.369170 -0.031589 0.160281 0.011945 -0.803979 -0.185879 0.206803 0.379825 -0.007628 0.441782 0.536249 0.303093 -0.717570 0.249279 0.576868 -0.242538 0.001073 0.142107 -0.627118 0.246823 0.282672 -0.256244 0.519673 0.037504 -0.466926 0.165402 -0.177448 0.307683 -0.549870 0.002579 -0.338339 -0.007420 -0.578204 -0.109415 -0.239684 -0.396689 -0.323599 -0.464763 0.760759 -0.628309 -0.578950 0.679900 0.129308 0.522353 -1.050276 0.653388 -0.514151 0.816299 -0.222383 0.050073 0.005853 0.028684 -0.586833 0.178069 0.196889 -0.191102 0.307224 0.851780 0.508422 0.161198 -0.154704 0.772230 -0.084013 0.700403 -0.248529 0.600604 -0.175399 -0.490429 0.305666 -0.177553 -0.243996 -0.179073 0.361583 0.792283 0.508024 0.486820 0.670600 0.460358 0.877258 -0.315659 0.336184 -0.159135 0.469467 -0.139325 -0.243237 0.268545 0.544435 -0.149589 0.322628 -0.864035 -1.295063 -0.653187 -0.945276 0.281618 -0.297109 0.077736 -0.128345 0.049610 -0.816805 -0.382976 0.212041 -0.292831 1.125715 0.327680 0.133919 0.452188 0.733668 -0.620022 -0.131018 0.286983 0.457130 0.117260 -0.057832 -0.832545 0.681385 -0.585696 0.052647 0.881570 -0.465236 0.180812 -0.012993 0.575066 -0.524460 1.014827 0.199811 -0.393408 0.878010 0.415081 0.618712 0.512154 -0.346667 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 0.636803 -0.994204 2.693054 1.588726 -1.769368 -0.106848 -0.153680 -0.024139 -0.060375 -2.524096 -1.216279 1.070061 -0.568581 0.163565 -0.589167 -0.324718 -3.232794 -0.761620 -0.088162 -0.150949 -0.193921 0.193355 -0.222078 1.438785 0.930176 3.165219 -0.536662 -0.035216 -0.539555 1.044157 1.095576 -0.283914 0.864518 2.500102 1.051718 -3.549847 0.554579 0.616326 -0.354917 -1.693815 0.743874 -0.819103 -0.241954 -2.251516 -1.298550 0.182712 0.778563 2.319318 -0.154284 -0.087272 -2.778222 -0.104764 0.255720 2.105481 0.715483 0.250396 2.012665 -0.489995 0.141927 -1.102688 0.507335 -0.651369 -0.032425 -0.092486 -0.303975 -1.224944 -0.442439 -2.024455 -0.001174 0.512764 0.926790 0.690341 -0.817718 -0.797090 -1.942569 0.011285 -0.684576 2.468693 1.435321 -2.088139 0.866877 0.033015 0.794671 0.491468 0.185104 0.879792 0.359549 0.775022 0.361271 0.299171 -2.031241 -1.188248 0.514776 -1.956035 -0.628541 -3.188117 0.751648 -3.246433 -0.891015 0.331145 0.670171 -1.023812 1.324757 -0.305632 0.184028 1.037352 -0.531281 0.130528 0.605548 0.024260 -0.206006 0.172665 0.215788 2.262695 -0.018488 -1.082816 -1.926778 1.547002 0.641327 0.363284 2.054572 0.994192 -0.112249 0.288035 -0.306640 -0.118130 -0.705869 2.461999 0.612108 -0.852453 -0.199102 0.082813 2.011486 0.741402 0.769332 1.900674 -1.392728 -1.189547 0.346610 0.637548 -0.140094 -1.585404 -0.048078 0.379511 -0.511313 -1.039549 -1.335702 -1.895236 -2.180571 -1.644328 -0.613996 -0.483282 -0.780536 2.764675 0.805622 1.679848 0.563661 0.792436 -0.739609 0.116569 -0.114512 -0.100934 0.112248 1.292085 0.557367 -0.605201 -0.188579 0.838585 -1.154087 1.471140 0.155614 -0.112554 0.662629 -1.117702 -0.650582 1.431679 1.614664 0.457262 1.073104 1.453623 -1.763664 -0.261640 -0.785386 0.321758 -0.809565 -0.893265 0.976176 -0.661094 0.844638 0.131184 0.103142 0.954344 0.070763 -0.055386 0.584735 0.201719 -0.162756 -0.288246 -0.535516 -0.214235 -0.273203 -0.982619 1.297433 -0.955554 -0.291646 -1.592161 -1.944438 1.809942 -2.848587 -0.702663 0.511539 0.076397 2.144997 -1.407418 -0.101349 -0.708289 2.482669 1.031838 -0.538287 0.525510 -2.797123 -1.280761 0.022354 0.396684 -0.047529 -1.025184 0.121617 0.998838 -0.342752 0.171759 1.038780 -0.665626 1.493209 -0.446360 -0.139197 -0.746251 -0.647355 0.408280 0.142701 -0.598679 0.047567 1.074856 1.965311 -0.279563 2.767523 1.757427 0.604668 0.853323 -0.957594 -0.858094 -0.611175 1.087906 -0.853706 -0.935962 -0.277089 1.800077 0.215884 -0.017179 -1.696607 -2.906879 -3.645638 -1.165233 -0.469778 -1.745565 0.314703 -0.323074 -0.334186 -1.035685 -0.904729 0.203345 -0.267231 1.487031 1.268870 -0.326509 1.448420 0.703880 -1.143805 -0.604948 1.987264 1.801284 0.423939 1.200218 -2.923211 1.230233 -1.036460 -0.193310 3.155783 -1.237564 0.856803 -0.484043 2.556047 -0.991752 1.990537 0.507817 -3.276322 -0.315425 1.406688 -0.497832 1.546484 -1.081040 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -3.179347 -18.085823 37.492590 26.794304 -8.090845 6.698230 0.121438 -5.674020 3.849260 10.906716 -9.049333 22.525098 -9.751288 -0.329144 11.229986 10.301993 -26.076925 -9.840329 -0.943170 -7.611484 -11.847589 -3.875713 -11.715970 21.449517 14.328824 5.043727 -11.503485 2.920806 -9.482437 -17.587712 -12.984039 -2.319854 12.322161 -9.344710 20.249206 -47.479923 18.653673 17.528511 -0.283162 -25.931097 5.743924 -4.342787 2.648105 0.402949 -19.373394 5.705334 16.089639 14.922149 4.149094 11.201020 -3.928405 -3.025467 17.840938 42.196781 14.243354 15.268946 23.173320 -13.041046 -2.222390 -8.531958 5.152546 -16.611194 5.476556 -3.059431 -0.435200 -13.492829 0.091107 -3.511085 -5.809741 3.899790 14.716261 -18.541753 -10.374936 -18.481860 -9.127059 -7.628812 0.596937 18.348043 24.048415 -19.789595 19.055421 9.341194 8.375171 10.735569 13.411474 0.817055 18.105219 6.557819 -5.771998 4.514207 -2.890472 -13.959631 8.735237 -1.381769 -12.794862 -25.975637 7.454704 -16.113122 -23.340283 17.506475 5.510089 -12.996186 -4.267749 -12.043853 11.130411 10.825409 -6.657309 -10.972880 -7.276005 7.662966 -8.243183 -6.949604 -6.058886 2.682289 -0.298392 3.481932 -24.860203 13.642853 16.491805 -0.968725 0.768589 17.911423 -2.841545 14.213922 -2.888905 6.770030 -0.819067 21.195539 14.956433 3.634083 -10.688737 -5.186010 0.539274 12.683449 2.020045 -10.834463 -7.615242 -7.166382 4.659237 10.648376 1.518812 17.051309 -2.723648 29.531354 9.758325 -0.058061 -20.111445 -22.185050 -26.031874 -14.074088 4.226124 -8.446305 -17.450200 17.435041 12.012655 5.444060 -0.772539 5.699498 -7.388831 9.817580 -1.527052 -1.487253 4.919379 -3.476956 10.424017 -14.641636 -4.335352 12.630081 12.749851 12.900470 1.997779 -3.942911 10.072783 -8.340677 -5.947353 9.204084 10.352478 8.586799 18.377730 16.242779 55.151915 3.007765 -9.937853 0.346066 -6.694873 -6.667083 2.400411 -13.760792 -1.466248 3.954197 0.233286 30.894830 0.619883 -8.836012 10.727736 2.040859 -0.317272 -10.452084 14.063780 -6.136623 5.441350 0.966106 -1.196903 -17.453262 0.174586 -21.991230 -12.398846 29.794825 -33.673477 -22.040763 10.258453 -10.448847 18.232131 -24.302163 37.909155 -10.215149 22.144084 -3.370524 -14.068364 2.686107 -12.885565 -9.114040 17.782437 6.963442 1.817451 -7.035929 11.470139 6.382174 1.578183 0.510485 9.712471 -6.834206 15.186285 -5.437241 12.339505 -6.336155 4.363959 -9.839246 -0.962277 -2.789648 6.931687 -0.369724 -4.259486 0.968194 2.708250 1.650481 11.841202 3.468515 -12.122792 8.671227 -5.336121 16.496228 -16.833280 -11.465082 -1.724787 16.597988 7.498354 4.476129 -28.407251 -9.002917 -32.570282 -12.797771 -12.618514 13.698437 6.843199 -0.470799 -7.787316 -12.196119 -16.288610 36.770160 1.761099 17.214264 16.051906 4.725185 22.710545 10.212204 8.769695 -9.181199 -3.383346 -2.984118 0.395959 3.264750 -14.535416 13.163143 -17.588595 10.048546 23.793146 -7.469837 13.230154 -4.925015 3.164239 -20.632634 19.035782 6.950964 -25.356064 -2.160631 22.741589 9.019786 -21.366635 -16.690807 -PE-benchmarks/rabin-karp-algorithm.cpp__main = 0.476273 -0.520980 1.907961 1.280551 -0.514855 -0.132997 0.384003 -0.546394 0.628317 -0.399079 -0.566813 0.505690 -0.778771 0.499146 -0.754890 0.854914 -1.752497 -0.728837 -0.123886 -0.437248 -0.183970 -0.242861 0.903563 0.059670 1.076877 1.062252 -0.574680 -0.533874 -0.559032 -0.525457 0.732548 -0.531451 0.589742 0.626937 -0.054751 -1.700557 0.916214 0.482958 -0.549194 -0.913134 0.856551 -0.492315 -0.085082 -1.019148 -0.292595 0.180451 0.321587 1.182440 0.679090 0.560982 -0.376239 0.155297 0.562786 1.514008 -0.569244 0.356481 0.651140 -0.135906 -0.181366 -0.235434 0.334723 -0.039736 0.172933 0.354717 0.074522 -1.115397 -0.548015 -0.994913 -0.569990 0.672820 -0.101633 0.488948 -0.987129 -0.073290 -0.745146 0.051953 -1.230798 1.271657 1.327531 -1.101036 0.610034 0.015947 0.181268 -0.142564 -0.260591 0.454400 0.027080 0.458225 0.086148 -0.340885 -0.614947 -0.278862 0.327703 -0.700839 -0.239624 -1.970541 0.712743 -1.224508 -0.853296 0.109329 0.679216 -0.511606 0.501021 0.080989 0.091530 0.683122 -0.538156 -0.501267 0.355409 -0.286530 0.342271 -0.085928 0.087277 0.262611 -0.315983 -0.346882 -1.357186 0.391073 -0.217310 -0.335530 0.505524 0.485443 0.019846 0.007999 -0.049124 0.403582 -0.440004 1.322166 0.154406 0.517503 0.208623 0.584396 0.277545 0.556612 0.976175 0.809933 -0.680810 0.030267 -0.568682 0.222057 -0.596424 -0.637080 -0.053429 0.357713 0.379172 -0.928145 -0.973917 -0.478601 -0.712558 -1.238479 0.169070 -0.631108 -0.307538 0.771884 0.691578 0.510383 0.924475 1.162015 -0.813737 0.109759 -0.009651 -0.111514 0.735757 0.416661 0.662993 -0.424432 -0.422325 0.481340 -0.076402 0.398231 -0.035083 0.138179 0.384896 -1.142251 0.060002 0.621427 0.705354 -0.377254 0.559083 0.600982 -0.305540 -0.182139 -0.124518 0.868545 -0.288525 -0.298890 0.490014 -1.024505 0.771699 0.040640 0.305220 0.444830 0.168783 -0.334516 0.600634 -0.321479 0.100071 -0.413891 -0.189736 -0.377646 -0.327192 -0.681373 0.716520 -0.211046 -0.353840 -0.325851 -0.473520 1.127592 -1.131141 -0.190617 0.635629 -0.116719 0.621511 -0.966102 1.153028 -0.694350 0.873547 0.278557 -0.132941 0.238228 -0.694926 -0.912986 -0.234086 0.357359 0.167868 0.097798 0.799279 0.711483 -0.195066 -0.000618 1.018269 -0.336519 1.193749 -0.071256 0.489123 -0.343431 -0.583575 0.269387 -0.053831 -0.523386 -0.455577 0.478180 1.484479 0.099645 1.041097 1.268692 0.143767 1.382444 -0.713575 0.444683 -0.316583 0.830652 -0.455904 -0.419421 0.296352 0.696520 -0.375892 0.675869 -1.200029 -1.868678 -1.483315 -0.847075 -0.056738 -0.916739 0.465968 -0.620063 -0.093894 -0.835258 -0.748398 0.313501 -0.294266 0.431280 0.842073 -0.075532 0.680937 0.743606 -0.727671 -0.152099 0.325398 0.910637 0.449451 0.118381 -1.180646 0.778669 -0.882773 -0.266164 1.637645 -0.799451 0.168563 -0.371262 1.173271 -0.682535 1.364028 0.310262 -0.948552 0.860867 0.837673 0.578651 0.795884 -0.621793 -PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -5.805689 -10.925053 13.908881 9.811500 1.863657 5.003285 5.337707 -0.003703 0.402444 6.674947 -3.862497 10.347696 -7.221776 -2.865015 0.590755 -0.629091 -6.089791 -8.713659 0.718859 -1.456858 -2.836739 -4.552125 -6.885991 13.345357 5.597780 -1.774624 -5.296615 -0.888184 -16.130481 -7.713789 -6.535878 0.125981 5.667564 -2.844270 7.895680 -12.626500 4.778527 11.615563 1.856580 -11.103883 2.542424 -4.068394 0.848464 2.659686 -3.520674 4.001282 8.968501 0.803045 1.370762 2.171493 0.840489 -3.867583 3.506684 12.758692 5.120392 8.868893 9.997733 -4.439479 3.514029 -2.448839 1.063747 -9.626376 4.206379 0.350784 -4.136671 -1.944334 1.226929 -0.161717 -2.795140 2.623814 6.024195 -5.868397 -3.672608 -5.333835 -9.587548 -4.191647 8.487820 3.880477 12.064326 -5.035061 13.324326 6.141870 7.662043 1.661001 8.562147 -0.481657 8.251155 1.555107 -4.789711 0.737634 -10.677826 -2.747802 -3.295208 8.900481 -5.144298 -0.745637 3.719667 -12.466991 -13.096169 6.634896 -2.740770 -5.410759 -5.148054 2.281981 4.872591 4.264152 -1.775733 -8.264678 -6.632209 4.798175 -6.459843 -3.053961 0.392482 -1.435475 -1.163430 -0.010452 -8.842532 3.449838 7.454680 -3.923329 -4.815853 10.318726 -2.765678 11.084738 0.718524 2.755964 0.582842 4.379033 7.835510 -0.739935 -2.579048 -8.313885 -10.657086 -1.779079 -0.977180 -0.421416 -6.974983 -2.903061 3.571501 4.249676 2.759140 6.769731 -2.614744 14.718410 3.858798 -4.370185 -7.049164 -10.537853 -6.123238 -4.187986 0.305940 -2.379623 -7.928344 0.045421 5.536391 1.766607 -1.787510 7.394356 0.776146 5.147421 2.117857 -2.937457 0.236509 -6.524327 4.635442 -6.523739 -4.404640 5.237394 7.418431 6.685654 0.191716 -1.244495 1.776415 -3.863867 -7.346418 2.025764 1.677044 5.371765 11.019727 7.640119 17.348280 -6.503012 -2.138107 -1.174478 -2.159047 -2.148209 0.484102 -7.516088 2.595879 1.452913 -2.103754 13.601191 -0.004350 -5.058628 7.057914 1.101133 1.795768 -8.906217 7.524200 -5.272311 2.683071 -2.360930 -4.466198 -7.467272 -2.771703 -9.428962 -5.330011 12.937452 -6.700410 -13.916953 2.656647 -0.449240 6.949326 -15.279590 8.558075 -4.230459 9.492408 -1.837989 -4.027697 0.735346 1.928318 -0.584956 5.435120 3.159826 -5.961563 5.161492 4.120988 1.945426 3.216022 1.937755 3.890863 -0.596554 1.465126 -4.346451 3.278741 -1.300092 -2.434755 -3.889379 -1.561085 3.128511 7.283109 -1.514549 -3.923646 5.051619 -2.137722 0.050346 9.758162 0.011247 -3.871516 -0.853465 -2.448265 10.369360 -6.552591 -5.579045 -4.654032 3.552952 3.471673 1.945038 -13.333686 -6.004663 -6.684991 -13.326750 -3.865736 2.704565 1.843322 5.317497 -1.626475 -11.582854 -6.354247 9.495043 1.657966 10.832199 6.132924 1.796075 10.664473 3.858688 2.809859 -3.595525 0.382462 1.326497 -3.470203 -1.834375 -5.287416 3.172617 -9.251567 9.472621 7.887019 -4.009390 6.242797 0.263750 2.488702 -11.817063 12.199544 4.652256 -12.768093 0.076801 6.598394 8.303114 -11.166348 -7.185126 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = -0.118057 -0.545026 1.695009 0.871114 -0.994663 -0.062843 0.129446 -0.385103 0.891028 -2.015461 -0.688534 0.125980 -1.124485 0.436393 -0.822598 -0.161242 -2.629918 -1.147160 0.026557 -0.273691 -0.135910 -0.722251 0.773514 0.620873 0.497393 1.788801 -0.616477 0.049164 -0.880406 1.130126 1.883834 -0.806693 0.803440 1.782423 0.038389 -3.204471 0.698699 -0.060321 -0.521436 -0.917054 0.661578 -1.339602 0.280411 -2.205432 -0.975283 -0.126509 0.375291 1.602453 0.799539 -0.541307 -1.431785 -0.267684 -0.780979 1.843091 -1.078984 0.123660 0.588852 -0.290202 -0.400452 -0.480567 0.232090 -0.101492 0.583464 1.021515 -1.071667 -0.938980 0.067467 -1.845757 -1.089999 1.095621 0.227632 1.474494 -0.920372 0.281109 -1.681735 -0.150783 0.897684 1.728008 1.741353 -1.224421 0.833272 -0.243743 0.887461 0.130027 0.167296 0.723989 0.888851 0.263938 -0.443847 -0.390134 -2.134248 -0.037294 0.028847 -0.948322 0.463895 -1.870222 0.141982 -2.391055 -0.853979 -0.262113 0.301776 -0.144457 0.069400 0.134052 0.808825 0.743716 -0.604330 -0.820743 0.385162 -0.103635 -0.466311 0.259424 0.552271 0.728173 -0.404844 -1.779540 -1.499424 0.089275 -0.259852 -0.441099 0.998990 1.039504 -1.072251 -0.011384 0.183748 0.162443 -0.636613 1.794073 -0.058589 -0.448765 0.248123 -0.382137 0.967893 -0.338582 0.571883 2.752478 -0.814167 -0.831568 -0.375552 0.135211 -1.104178 -2.118439 0.200268 -0.099989 -0.288438 -1.305282 -0.846790 -0.645397 -0.776799 -2.174893 -0.215384 -0.821115 -0.308993 1.786724 0.935623 1.367998 1.198626 1.717979 -0.778774 0.833394 -0.249001 -0.280389 0.949250 0.875572 0.913870 -0.472954 -0.438551 0.471668 -1.032191 0.852541 -0.043544 -0.495486 0.060859 -1.538987 -0.741335 0.638333 1.268819 0.557610 0.573095 0.630429 -1.626153 -1.444963 0.407603 1.072276 0.082716 -0.367681 0.634368 -0.832586 1.093230 0.232108 -0.432295 0.179849 0.012966 -1.006766 0.040083 0.169359 0.511249 -0.817067 -0.887397 -0.237712 -0.045709 -1.372836 0.730678 -0.556831 -0.775737 -0.809980 -1.091989 1.241510 -1.676268 -1.002701 1.060118 0.284296 2.282330 -1.690875 -0.213140 -0.907099 2.283191 0.199848 -0.017160 0.192277 -1.410712 -0.797711 0.123662 0.342386 0.028985 0.036073 0.508838 1.153651 0.520100 0.266620 1.230785 0.300982 0.932525 -0.120751 0.109323 -0.394466 -0.918637 0.995575 -0.309802 -0.134309 0.174523 1.126267 1.989296 1.092432 1.920869 2.374887 0.744551 1.051451 -0.638025 -0.780708 -0.603943 0.945634 -0.275878 -0.453455 -0.133757 1.256045 -0.496203 0.395377 -1.366823 -3.319590 -2.094325 -1.543607 -0.079382 -1.502628 -0.014534 -0.045423 0.547075 -1.356267 0.009224 -0.453509 -0.522155 2.616104 0.610255 -0.174650 0.883529 1.291536 -1.761795 -0.989663 1.879201 1.451250 -0.125221 1.010555 -2.804973 1.133245 -1.302764 0.273645 2.156031 -1.305741 -0.184272 -0.515946 2.055700 -0.735571 1.986970 0.780632 -1.725173 0.839018 0.263536 0.369234 2.388526 -0.772750 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.294789 -0.616110 2.526752 1.705771 -0.287478 0.201541 0.562093 -1.228495 1.265449 0.342170 -0.138517 0.462222 -1.059476 0.470058 -0.527420 1.146471 -1.795650 -0.970892 -0.463986 -1.419381 -0.656749 -0.507921 0.770450 -0.100540 1.222959 0.084196 -0.936069 -0.617344 -1.117582 -1.284123 0.862407 -0.521499 0.848098 -0.439178 -0.089982 -3.638828 1.541650 0.966747 -0.813251 -1.136908 1.023893 -0.887007 0.181424 -0.541346 -0.464106 0.141708 0.115044 0.404107 1.232072 0.603870 0.524471 0.588444 0.406012 2.999175 -1.241063 0.804859 0.458895 -0.432224 -0.712851 0.362996 0.194289 0.046707 0.657147 0.288108 -0.124556 -1.625400 -0.229246 -0.844587 -1.186835 0.965827 -0.050592 -0.531204 -0.885359 -0.329550 -1.159326 -0.620822 -0.981113 1.195025 1.697315 -1.323296 0.983751 -0.037876 0.134120 0.209527 0.403145 0.309490 1.034139 0.299142 -0.114350 -0.392824 -0.481112 -0.054266 0.394234 0.224720 -0.445000 -2.102681 0.978107 -1.085206 -1.462204 0.478450 0.923195 -0.522129 -1.144669 -0.469749 0.364823 0.683347 -0.848079 -1.200682 -0.448693 0.321501 0.138550 -0.285513 -0.000885 -0.871792 -0.402043 -0.580667 -1.731632 0.520125 -0.124685 -0.246744 -0.886937 1.223200 -0.445693 -0.246599 0.047220 1.029459 -0.894942 1.438218 -0.412662 1.017049 -0.030997 0.487043 -1.360988 -0.160721 0.890643 1.013391 -0.470485 -0.216097 -1.102465 0.268357 -1.222908 0.139539 -0.081206 1.178892 1.332423 -0.788101 -1.002918 -0.334988 -0.230192 -1.880796 0.291853 -0.854507 -0.550596 0.563808 1.038982 0.889953 1.180130 1.591381 -0.871893 0.689861 -0.237361 -0.505189 1.425026 -0.149159 1.084049 -0.800172 -0.712284 0.337774 0.261746 0.683399 -0.014443 0.180679 0.259948 -1.426277 -0.305155 0.254926 0.691796 -0.299633 0.862456 1.160393 1.963575 -1.503064 0.230670 1.078445 -0.674968 -0.020683 0.248815 -1.254743 0.318489 0.593519 -0.313437 1.366191 0.074730 -0.871380 0.374431 -0.330079 0.417210 -0.777527 0.082323 -0.721712 -0.268480 -0.681277 -0.174233 -0.802646 -0.539429 -0.717549 -0.890808 1.638444 -1.456917 -1.142158 1.594863 -0.436225 0.585211 -2.086153 2.250673 -1.001902 0.941089 -0.736829 -0.076250 -0.180621 0.546011 -1.330861 0.683988 0.435662 -0.491402 0.581824 2.048691 0.887718 0.409638 -0.452311 1.551166 -0.456018 1.402427 -0.504261 1.550782 -0.548054 -0.701186 0.042066 -0.268094 -0.461920 -0.456658 0.668220 1.123254 0.596505 0.595967 0.822882 1.036527 1.653327 -0.747363 1.141024 -0.303050 0.845176 -0.472328 -0.496485 0.697934 0.801739 -0.262810 0.685640 -1.840049 -1.855771 -1.477977 -1.451034 0.383326 0.059081 0.187989 -0.430920 -0.151319 -1.620579 -0.930037 0.919610 -0.449031 0.965251 0.862164 0.331465 0.996179 1.433129 -0.745758 -0.181667 -0.074122 0.353367 0.340112 -0.518758 -1.259153 1.449405 -1.181466 0.167766 1.650478 -0.683452 0.475827 0.159145 1.002670 -1.085264 1.808859 0.287805 -0.602146 1.438920 1.425764 1.562912 0.246769 -0.724059 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -0.473874 -0.247849 1.326266 0.805364 -0.223197 0.154453 0.045060 -0.773867 0.686285 -0.242406 -0.023224 0.173111 -0.570994 0.226042 -0.510513 0.319832 -1.006978 -0.586788 -0.447551 -0.915110 -0.361692 -0.269343 0.350077 0.072087 0.501995 0.083868 -0.633137 -0.005186 -0.852049 -0.534361 0.587047 -0.224195 0.472875 -0.315599 -0.074906 -2.068211 0.847951 0.638969 -0.465408 -0.518345 0.586746 -0.674840 0.076640 -0.424083 -0.535031 -0.012529 -0.167761 -0.262960 0.671492 0.004741 0.268304 0.498229 -0.165244 1.536363 -0.808612 0.420316 0.177278 -0.227541 -0.505255 0.170610 0.015651 0.183758 0.402616 0.142507 -0.320895 -0.953552 0.058945 -0.469145 -0.690249 0.589461 -0.161143 -0.360248 -0.224063 -0.211921 -1.022324 -0.424619 0.593210 0.495029 0.822647 -0.612939 0.432228 -0.215004 0.002727 0.239701 0.351377 0.196558 0.760285 0.111155 0.022876 -0.205019 -0.290631 0.315988 0.168328 0.491373 -0.272343 -0.804962 0.585193 -1.093617 -0.786601 0.129612 0.521583 -0.319400 -0.910346 -0.269750 0.166879 0.288390 -0.398940 -0.633168 -0.169372 0.414453 0.099215 -0.099044 0.004816 -0.491680 -0.163544 -0.509364 -0.934847 0.404911 -0.105197 0.012592 -0.541718 0.797718 -0.465341 -0.324314 0.047580 0.643956 -0.654101 0.796739 -0.530972 0.401304 -0.383987 0.180368 -0.583479 -0.594080 0.291505 0.737571 -0.449861 -0.363117 -0.632707 0.035604 -0.789752 -0.147102 -0.238804 0.452911 0.648897 -0.446406 -0.409186 -0.109164 -0.308501 -1.380187 -0.139476 -0.434364 -0.530074 0.518210 0.572846 0.719904 0.700083 1.171763 -0.229895 0.379161 -0.057428 -0.597541 0.912179 -0.356659 0.610514 -0.444739 -0.497889 0.257853 -0.200445 0.557138 0.030522 0.158700 -0.018169 -0.838689 -0.284991 0.235130 0.441947 0.181098 0.507735 0.764629 0.773266 -1.051149 0.310809 0.594125 -0.426436 0.047972 0.061339 -0.529331 -0.061384 0.507662 -0.352905 0.880279 0.022338 -0.524517 0.000802 -0.086670 0.436539 -0.621775 0.062830 -0.354904 0.135680 -0.517925 -0.421711 -0.465756 -0.297910 -0.552913 -0.911249 0.872600 -1.051017 -0.946868 1.046997 0.178252 0.659589 -1.317537 0.485005 -0.564799 1.143027 -0.341962 0.185450 -0.083323 0.098220 -0.836548 0.606062 0.191361 -0.425750 0.312235 1.060521 0.560405 0.359994 -0.403328 0.879345 -0.247919 0.863801 -0.416778 0.868956 -0.241127 -0.616920 0.222695 -0.191599 -0.397809 -0.239673 0.533923 0.455933 0.516471 0.526943 0.453939 0.735191 0.943161 -0.331709 0.454704 -0.166213 0.282164 -0.147402 -0.333441 0.457974 0.706946 -0.047616 0.161024 -1.007445 -1.249646 -1.041379 -1.158783 0.468701 -0.124124 -0.099614 -0.096791 -0.062331 -0.881813 -0.447407 0.625638 -0.288935 1.523201 0.362467 0.236880 0.511508 0.900968 -0.668946 -0.090119 0.210346 0.299961 0.160421 -0.166282 -1.023235 0.989079 -0.521234 0.078044 0.985855 -0.477131 0.386276 0.307900 0.315660 -0.585885 1.071556 0.146101 -0.410070 0.914653 0.502505 0.744400 0.445716 -0.379951 -PE-benchmarks/m-coloring-problem.cpp__main = 0.181388 -0.515178 1.296247 0.912008 -0.243658 -0.019851 0.402507 -0.269014 0.402889 -0.149577 -0.380266 0.407520 -0.625843 0.272235 -0.453243 0.522828 -1.033385 -0.579154 -0.044346 -0.242593 -0.090054 -0.197452 0.517349 0.123705 0.725947 0.617662 -0.380364 -0.483476 -0.623882 -0.298894 0.455965 -0.311466 0.463957 0.407513 -0.047493 -1.217703 0.529105 0.470942 -0.342325 -0.758195 0.584865 -0.368128 -0.019620 -0.603445 -0.128478 0.149661 0.292062 0.702109 0.368711 0.400838 -0.214324 0.055775 0.373769 1.084906 -0.319060 0.328327 0.573357 -0.062407 -0.094089 -0.169073 0.249460 -0.095781 0.178712 0.222726 -0.012276 -0.683357 -0.410196 -0.669831 -0.455573 0.377246 -0.026473 0.297551 -0.654021 -0.095648 -0.488200 -0.012237 -0.851688 0.804586 0.955413 -0.794107 0.578440 0.077462 0.203597 -0.104697 -0.104028 0.311922 -0.054806 0.314694 0.026162 -0.210425 -0.544994 -0.180770 0.140564 -0.347645 -0.234506 -1.208481 0.572461 -0.646770 -0.653716 0.148542 0.371560 -0.335172 0.245510 0.125775 -0.001215 0.587614 -0.420344 -0.405789 0.072312 -0.121482 0.246007 -0.118417 0.044950 0.182796 -0.266154 -0.362310 -0.918721 0.261506 -0.030528 -0.325063 0.247683 0.394365 -0.094031 0.154053 -0.037784 0.239365 -0.286390 0.922525 0.232302 0.294013 0.235575 0.219410 -0.095347 0.285729 0.641775 0.773782 -0.508574 0.056403 -0.305457 0.154079 -0.247540 -0.359659 0.038489 0.300678 0.342552 -0.641315 -0.648253 -0.446507 -0.376751 -0.795550 0.107708 -0.446831 -0.047734 0.524671 0.494431 0.350080 0.537670 1.002664 -0.576355 0.143611 0.022856 -0.148318 0.401874 0.340220 0.437847 -0.317427 -0.375501 0.322647 0.075351 0.273690 0.020129 0.118356 0.248163 -0.763855 -0.034202 0.386208 0.444612 -0.307749 0.476797 0.450874 -0.126220 -0.223033 -0.123432 0.470654 -0.232018 -0.176912 0.286052 -0.778164 0.527676 0.022935 0.097921 0.367802 0.106490 -0.277655 0.496984 -0.274535 0.038657 -0.312976 0.015563 -0.336923 -0.266953 -0.501654 0.428223 -0.169372 -0.292194 -0.253806 -0.260502 0.846472 -0.599889 -0.200305 0.278275 0.002317 0.325346 -0.787636 0.899147 -0.467326 0.590038 0.128449 -0.133670 0.136983 -0.288115 -0.521607 -0.234485 0.283835 0.008325 0.116765 0.645449 0.442724 -0.180086 0.066868 0.683576 -0.204211 0.700890 -0.102760 0.330687 -0.229801 -0.418018 0.198367 -0.070310 -0.204668 -0.238559 0.224183 1.041299 0.148838 0.610131 0.801217 0.168558 0.867144 -0.483516 0.277372 -0.156420 0.743942 -0.324616 -0.247315 0.066775 0.475467 -0.187534 0.450664 -0.847967 -1.260248 -0.797556 -0.699190 -0.017085 -0.525583 0.295681 -0.350937 -0.060418 -0.702524 -0.563067 0.093020 -0.240789 0.389300 0.566577 0.012362 0.552515 0.479172 -0.485777 -0.117590 0.258090 0.613033 0.221546 0.026086 -0.681836 0.442564 -0.634749 -0.119679 1.061824 -0.461195 0.173350 -0.221463 0.859133 -0.502072 1.058706 0.261909 -0.710094 0.592721 0.614120 0.539757 0.355653 -0.443772 -PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -0.597950 -1.294093 1.828164 1.289421 -0.065572 0.503542 0.614193 -0.166201 0.442236 0.306236 -0.729104 0.954680 -1.234092 -0.173022 0.067818 0.003282 -1.246976 -1.185706 0.157425 -0.149901 -0.325306 -0.765771 -0.453264 1.322807 0.714768 0.615645 -0.564185 -0.022956 -1.788256 -0.704649 -0.196753 -0.202392 0.794550 0.652224 0.782745 -1.815872 0.661376 1.229253 0.020621 -1.492743 0.419734 -0.879422 0.093878 -0.326043 -0.113676 0.607088 1.013769 0.808710 0.337159 0.198878 -0.255541 -0.686006 0.125301 1.313894 0.210989 0.946088 1.299286 -0.456919 0.115581 -0.321058 0.198920 -0.998014 0.624954 0.457743 -0.923099 -0.409802 0.211884 -0.561573 -0.670953 0.564282 0.693191 -0.316496 -0.743682 -0.688668 -0.958179 -0.339676 0.383262 0.817799 1.737596 -0.839764 1.654334 0.582885 1.055113 0.029995 0.897964 0.054003 1.097457 0.225540 -0.751815 -0.145636 -1.689250 -0.662057 -0.274741 0.677062 -0.396825 -0.119728 0.476133 -1.522943 -1.564810 0.481076 -0.175107 -0.544732 -0.602488 0.608903 0.641993 0.735091 -0.180658 -1.071290 -0.465715 0.483889 -0.884063 -0.267772 -0.037747 0.183331 -0.451862 -0.449766 -1.385042 0.304683 0.764096 -0.669356 -0.164759 1.254159 -0.562981 1.109548 0.118900 0.194313 0.046372 1.068351 0.801642 -0.136501 0.240742 -0.907060 -0.953676 0.026693 0.202308 0.808294 -0.936690 -0.300827 0.449734 0.397868 -0.051820 0.060780 -0.406217 1.451827 0.526070 -0.896468 -0.981444 -1.250218 -0.752970 -0.903290 0.150982 -0.583152 -0.473578 0.271601 0.866992 0.556972 0.064888 1.568487 -0.616650 0.747348 0.170813 -0.251659 0.209891 0.116241 0.748090 -0.898935 -0.609517 0.716794 0.601662 0.550992 0.050961 -0.255020 0.281864 -0.959387 -0.941712 0.708841 0.331312 0.530046 1.350996 0.972681 1.473854 -0.959448 -0.052385 0.121594 -0.129998 -0.348936 0.298342 -1.122801 0.710068 0.173876 0.097645 1.458363 0.060525 -0.741645 0.599864 0.106083 0.200076 -1.116884 0.617210 -0.663825 0.259966 -0.563523 -0.005520 -0.801596 -0.636680 -0.934798 -0.460529 1.636929 -0.555200 -1.681220 0.472146 -0.140572 1.295998 -2.016803 0.874471 -0.721920 1.253941 -0.270046 -0.420972 0.094136 -0.298917 -0.180999 0.399079 0.455710 -0.371398 0.529558 0.668189 0.476273 0.334647 0.410864 0.678645 -0.003988 0.307194 -0.428310 0.308425 -0.145775 -0.235284 -0.063625 -0.336253 0.336492 0.761349 -0.150992 0.557699 0.992992 0.201190 0.776309 0.922072 0.257362 -0.564791 -0.062992 -0.203716 1.382021 -0.789919 -0.680409 -0.521259 0.551953 0.173700 0.373772 -1.699536 -1.522222 -0.617880 -1.847808 -0.521804 -0.071388 0.453893 0.499152 0.016833 -1.441267 -0.674588 0.873011 0.048365 2.064813 0.597849 0.240573 1.237421 0.727889 -0.222068 -0.682349 0.421171 0.524306 -0.531885 0.036836 -1.038780 0.561301 -1.163475 0.956805 1.330011 -0.743618 0.527046 -0.508519 1.167119 -1.375098 1.696651 0.758053 -1.678347 0.299788 0.748331 1.088804 -0.554856 -0.949382 -PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -0.645975 -2.421196 3.883194 3.021957 0.353900 0.867052 1.624780 -0.695165 0.957736 2.111005 -1.054501 2.070671 -2.503144 0.051555 0.298022 1.081720 -2.170745 -2.149654 0.101207 -0.564390 -0.968150 -1.554575 -0.096045 2.028945 2.115254 0.670852 -1.405350 -0.859154 -3.205655 -2.693631 -0.735732 -0.446049 1.697320 0.899169 1.210787 -3.216270 1.574081 2.405991 -0.065429 -2.594239 1.097455 -1.133554 0.152765 0.005489 0.334545 1.319268 1.940309 1.188769 1.288110 1.144991 0.626088 -1.185207 1.329319 2.690095 0.099472 1.939832 2.060406 -1.061347 0.362226 -0.436145 0.409660 -1.841338 1.274314 0.859070 -0.988819 -1.146461 0.126640 -0.719686 -1.425463 1.435985 1.102559 -0.794411 -1.939885 -1.337338 -1.191477 -0.583038 -0.558301 1.634919 3.530434 -1.478763 3.103233 1.279556 1.509630 -0.416531 1.349114 -0.127342 1.847503 0.465057 -1.358110 -0.509768 -2.412687 -1.385407 -0.553836 1.963694 -0.832641 -0.207232 1.071977 -2.141869 -3.249242 1.088292 -0.013627 -1.080528 -1.453422 1.064778 1.075495 1.230596 -0.281505 -2.342406 -1.221934 0.478935 -1.265070 -0.736798 -0.403985 -0.538287 -1.119966 0.185813 -2.709584 0.324810 0.920523 -1.579042 -1.163793 2.145392 -0.391777 2.166471 0.265260 0.944006 0.155284 1.574085 1.555139 0.867882 1.051059 -1.053044 -2.609507 0.204097 0.909979 0.715357 -1.620217 -0.244907 0.018691 0.754609 -0.387674 1.047930 -0.498912 3.522038 1.960006 -1.798955 -2.286332 -1.883707 -0.878162 -1.572829 0.802054 -1.218178 -0.648121 -0.491524 1.623292 0.288852 0.319439 2.679378 -1.357331 1.384208 0.489923 -0.335758 0.746140 -0.056068 1.490352 -1.852840 -1.243672 1.244837 1.915874 0.663129 -0.055692 -0.179647 0.681694 -1.790751 -1.541227 1.116028 0.190983 0.254208 2.427191 1.712127 4.689055 -1.670795 -0.069634 0.715918 -0.192486 -0.631206 0.601225 -2.549964 1.653027 0.052959 0.370741 2.925667 0.187349 -1.487194 1.670310 -0.125759 0.307537 -2.055393 1.520390 -1.476029 0.303879 -0.960543 -0.313643 -1.278013 -1.105583 -1.128516 0.045582 3.251837 -0.650590 -2.755323 1.241510 -0.789948 1.359472 -3.941231 3.406590 -1.384495 1.021159 -1.072020 -1.173567 0.035109 0.479626 -0.540664 0.669729 0.910142 -0.744415 1.384683 1.981529 0.736148 0.556703 0.483438 1.428748 0.138862 0.980586 -0.582148 1.264135 -0.111843 -0.233951 -0.889951 -0.559519 0.531086 0.997877 -0.724842 0.815514 1.712516 -0.350153 1.065330 1.637313 1.203790 -1.234417 0.893496 -0.328559 2.751907 -1.703478 -1.357920 -0.407974 0.566155 -0.111198 1.430559 -3.327600 -2.374774 -0.369420 -3.131529 -1.265385 0.529266 1.313295 0.555876 -0.355894 -2.697031 -1.616184 1.673760 0.295796 2.154945 1.314245 0.381868 2.271921 1.436939 0.114740 -0.923745 -0.496000 0.581679 -0.600264 -0.703905 -1.191117 0.985502 -2.265279 1.733147 2.288379 -1.351538 1.036442 -0.915992 2.052739 -2.853773 3.244865 1.212573 -2.408110 1.124523 1.741781 2.621965 -1.871320 -1.769254 -PE-benchmarks/finite-automata-algorithm.cpp__main = -0.079975 -0.401757 1.118438 0.811024 -0.042258 -0.001243 0.554103 -0.374399 0.594464 0.110681 -0.159315 0.174849 -0.762249 0.276169 -0.282579 0.593949 -0.814243 -0.615936 -0.059308 -0.393008 -0.077896 -0.341257 0.711264 -0.097614 0.682329 0.154326 -0.378318 -0.602778 -0.710689 -0.307007 0.602807 -0.376886 0.519124 0.218036 -0.291332 -1.345961 0.572533 0.386117 -0.399109 -0.570113 0.622029 -0.470744 0.154162 -0.458880 -0.040485 0.100957 0.179427 0.365137 0.613791 0.346214 0.201688 0.048629 0.191287 1.072758 -0.735377 0.308676 0.207871 -0.117341 -0.292932 0.012337 0.143039 0.005931 0.369644 0.340660 -0.165047 -0.699013 -0.286684 -0.602828 -0.770469 0.430874 -0.123129 0.293630 -0.627643 0.080825 -0.328281 -0.147360 -0.512633 0.598118 0.938802 -0.598518 0.598524 -0.003985 0.096434 -0.179191 -0.070297 0.275405 0.041890 0.148777 -0.078984 -0.337990 -0.513347 0.009185 0.064092 0.037298 -0.034390 -0.818072 0.474771 -0.142537 -0.660669 0.059638 0.341121 -0.178962 -0.277817 0.150668 0.049667 0.565944 -0.438641 -0.628964 -0.101773 -0.089981 0.200058 -0.130268 -0.016777 -0.278175 -0.415511 -0.567222 -0.807916 0.037940 -0.225869 -0.431242 -0.190765 0.428448 -0.370125 0.045434 0.085780 0.399284 -0.352824 0.766044 0.027567 0.426023 0.428213 0.035105 -0.529156 -0.092973 0.591787 1.065999 -0.310003 0.056022 -0.560868 0.027907 -0.469190 -0.299182 0.254288 0.361146 0.586375 -0.644339 -0.480953 -0.120022 0.033766 -0.898857 0.224985 -0.499375 0.210376 0.301735 0.500985 0.236209 0.655257 1.229991 -0.565853 0.343092 -0.029293 -0.278382 0.640862 0.293988 0.544642 -0.320727 -0.396013 0.165589 0.153095 0.167306 -0.037027 0.147901 0.121844 -0.840245 -0.097676 0.105024 0.279986 -0.326758 0.355721 0.357088 0.304007 -0.522761 0.118175 0.612310 -0.129595 -0.044017 0.223399 -0.780687 0.463748 0.096084 -0.205035 0.312915 0.082552 -0.520440 0.357282 -0.308730 0.147402 -0.410263 0.039032 -0.361344 -0.184510 -0.538802 0.101489 -0.150691 -0.444374 -0.107888 -0.029669 0.752406 -0.183075 -0.334632 0.386155 -0.032187 0.207250 -0.956187 1.161938 -0.518467 0.373506 -0.264158 -0.087232 0.000870 0.229278 -0.467802 -0.138502 0.239114 -0.037050 0.368355 0.915008 0.475198 -0.015683 -0.012993 0.748708 -0.001316 0.638205 -0.074855 0.522699 -0.195261 -0.384657 0.266568 -0.144236 -0.112671 -0.211941 0.169179 0.981671 0.437951 0.329122 0.768684 0.258239 0.928056 -0.375971 0.426033 -0.102605 0.739595 -0.143189 -0.146121 0.183971 0.370362 -0.259350 0.535033 -0.802259 -1.226728 -0.201725 -0.807082 0.139229 -0.203887 0.215442 -0.246749 0.092398 -0.839785 -0.385993 -0.116998 -0.282066 0.618925 0.377667 0.072171 0.441381 0.603112 -0.555336 -0.185010 0.151946 0.466895 0.144397 -0.133736 -0.558245 0.459203 -0.685483 -0.014218 0.790074 -0.404176 0.007978 -0.231613 0.791060 -0.488878 1.053488 0.225171 -0.291064 0.926056 0.456553 0.766753 0.347405 -0.329893 -PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -1.609075 -3.693883 5.837137 4.042336 -0.161102 1.515649 2.025462 -0.891451 1.047482 1.292940 -1.370817 3.342258 -3.573454 -0.353701 -0.901767 0.351939 -3.523444 -3.079407 -0.180153 -1.105553 -1.134668 -1.847697 -0.710388 4.029919 2.766155 0.870404 -2.087696 -1.103312 -5.570487 -2.181406 -0.721988 -0.336978 2.477452 -0.142466 1.683212 -6.167449 2.000809 3.989702 -0.269882 -4.158711 2.015384 -2.226084 0.268379 -0.615473 -1.469825 0.774838 2.405889 1.288153 1.273018 0.740839 -0.181989 -0.677292 1.730298 5.909226 0.342871 3.010852 3.524057 -1.213507 0.346014 -0.759065 0.459167 -2.457802 1.694459 0.428174 -1.629489 -1.816426 0.113949 -1.196459 -1.832723 1.585463 1.360910 -1.299813 -2.035169 -1.707536 -3.596121 -1.149422 1.548148 2.644705 4.650575 -2.877954 4.418833 1.312271 1.865625 0.287768 2.274435 0.321914 2.469593 0.714675 -1.250169 -0.817404 -4.081078 -0.352650 -0.554961 1.758212 -1.756508 -2.314230 2.196764 -4.684271 -4.966081 1.648605 0.096161 -2.309060 -1.275715 0.507603 1.152844 2.014290 -1.173258 -3.213722 -1.779499 1.796862 -1.440725 -1.029255 -0.015638 -0.265460 -0.658554 -1.003822 -3.846075 1.481012 1.816102 -1.600066 -1.322304 3.758052 -1.053465 3.066130 0.335828 1.557739 -0.268703 2.618139 1.905079 0.310105 0.040509 -1.560572 -2.231258 -0.354653 0.775520 1.658975 -2.927272 -0.573437 0.240312 1.274626 0.111670 1.025223 -0.767571 4.366640 1.038224 -2.422937 -2.692786 -3.252122 -2.179686 -3.044758 0.029261 -1.330109 -2.185904 1.245955 2.373120 1.288668 0.305920 3.743677 -1.000048 1.860490 1.038402 -1.352263 1.087732 -0.911497 2.084504 -2.672005 -2.305612 1.736216 1.793642 2.203008 -0.404472 0.404261 0.592046 -2.377586 -2.031126 0.877433 1.253319 0.932478 4.071509 3.202146 5.231866 -3.025315 -0.298879 0.536389 -1.202161 -0.668464 0.213971 -3.487060 1.429343 0.820680 -0.513063 4.810622 0.180375 -2.170206 2.530501 -0.105589 0.764326 -3.147810 2.183289 -2.182904 -0.138916 -1.599004 -1.007677 -2.044173 -1.521495 -3.252128 -2.062102 5.046318 -3.712841 -4.101859 1.800815 0.294884 2.619031 -6.005327 4.356286 -1.996911 3.622573 -0.429610 -1.395049 0.163620 0.229512 -1.398422 1.252894 1.245232 -1.959953 1.804334 2.838511 1.324715 1.087887 0.416238 2.302008 -0.365289 1.707107 -1.700559 1.789325 -0.471499 -1.789535 -0.585920 -0.805637 0.598223 1.496534 0.104542 1.236343 2.330992 0.632825 1.506566 3.160101 1.761553 -1.663801 0.607996 -0.927300 3.677553 -2.326980 -1.997903 -0.851263 1.836321 0.725889 1.653999 -5.306158 -4.320266 -2.862165 -4.755656 -0.485431 -0.576622 1.040366 0.799460 -0.565996 -4.760990 -2.801564 2.274744 -0.169387 4.114137 2.476878 0.934000 3.764156 2.296845 -0.276723 -0.877657 0.753362 1.479398 -0.699688 -0.641435 -2.675722 1.746918 -3.333353 2.560876 3.977892 -1.698372 2.222235 -0.593782 1.548434 -4.171455 5.106623 1.811606 -4.549609 1.346893 2.732907 2.944754 -2.130324 -2.730408 -PE-benchmarks/naive-algorithm.cpp__main = 0.531872 -0.348855 1.589249 1.064448 -0.553870 -0.149371 0.168589 -0.511833 0.557617 -0.513596 -0.525515 0.334440 -0.601679 0.459386 -0.634476 0.716569 -1.605227 -0.555596 -0.134382 -0.369173 -0.147856 -0.190928 0.793137 0.015070 0.864140 1.115246 -0.454873 -0.298640 -0.293587 -0.349613 0.699192 -0.474183 0.446120 0.768068 0.014940 -1.246881 0.804543 0.305595 -0.473409 -0.700820 0.668922 -0.412422 -0.088063 -0.988491 -0.244599 0.176059 0.199177 1.109530 0.591514 0.418123 -0.425391 0.109510 0.437423 1.089859 -0.492737 0.228674 0.490834 -0.109983 -0.124294 -0.227986 0.282334 0.048514 0.088521 0.336641 0.061354 -0.978394 -0.470719 -0.895797 -0.420761 0.623067 -0.121645 0.489000 -0.876459 -0.088276 -0.617638 0.094062 -1.215871 1.148589 1.084177 -0.928484 0.391131 0.002342 0.141669 -0.119060 -0.245782 0.393732 0.076398 0.399023 0.089037 -0.209979 -0.477486 -0.312423 0.352406 -0.788828 -0.176968 -1.689006 0.525876 -1.200202 -0.646863 0.039512 0.624796 -0.405920 0.566993 0.093212 0.091724 0.500344 -0.400524 -0.346351 0.502823 -0.287921 0.307701 -0.018439 0.060490 0.340486 -0.235922 -0.259495 -1.157780 0.339408 -0.248045 -0.218035 0.627366 0.370325 0.076752 -0.113579 -0.056174 0.272395 -0.378834 1.186275 0.067485 0.427310 0.108000 0.578696 0.485647 0.618122 0.839248 0.583834 -0.550423 0.014597 -0.462182 0.167301 -0.592128 -0.660977 -0.091397 0.170184 0.211314 -0.789732 -0.819207 -0.363328 -0.763076 -1.094653 0.135738 -0.524322 -0.309545 0.701436 0.570991 0.532882 0.845316 0.866672 -0.710179 -0.023937 -0.054676 -0.020037 0.647383 0.461123 0.550893 -0.318211 -0.288600 0.437369 -0.205447 0.301213 0.011642 0.059812 0.324199 -0.974578 0.139631 0.642268 0.630974 -0.269927 0.442778 0.485090 -0.553692 -0.008280 -0.071805 0.792374 -0.188948 -0.278333 0.463011 -0.797578 0.698460 0.014964 0.367852 0.256541 0.124169 -0.160959 0.409213 -0.246958 0.111872 -0.326651 -0.291490 -0.252641 -0.238822 -0.611368 0.773756 -0.156499 -0.289850 -0.222163 -0.418275 0.890332 -1.006644 -0.039438 0.604843 -0.109993 0.629456 -0.604242 0.736730 -0.582175 0.814734 0.325459 -0.088488 0.234929 -0.842813 -0.796101 -0.231009 0.287473 0.250130 -0.037253 0.511738 0.632213 -0.198699 0.013314 0.848066 -0.313636 1.067183 -0.030768 0.368116 -0.276562 -0.419714 0.292040 -0.036176 -0.533792 -0.438657 0.441315 1.332495 0.044993 1.029987 1.137316 -0.007905 1.165303 -0.606316 0.322516 -0.278980 0.562052 -0.388805 -0.359905 0.304531 0.593846 -0.366963 0.506531 -0.962030 -1.613575 -1.384075 -0.564636 -0.112006 -0.905866 0.394307 -0.531058 -0.071520 -0.543773 -0.604317 0.309871 -0.252045 0.330137 0.650323 -0.117887 0.521596 0.653264 -0.653849 -0.144150 0.332951 0.803134 0.418947 0.227338 -1.133159 0.741980 -0.685058 -0.309959 1.456338 -0.750370 0.103728 -0.349368 1.048846 -0.526555 1.064818 0.244072 -0.808448 0.701151 0.678838 0.356843 0.889490 -0.519089 -PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -1.740804 -3.808508 5.604456 3.992963 0.326395 1.706622 1.711344 -0.762418 0.948436 1.862335 -1.721237 3.501975 -3.486428 -0.611907 0.022104 -0.090864 -3.188832 -3.325274 -0.106446 -0.736079 -1.273256 -2.218674 -1.539090 4.549351 2.449734 0.793411 -2.211037 -0.128095 -5.887784 -2.804083 -1.601366 -0.140463 2.346259 0.383409 2.578010 -4.757169 1.950258 4.133041 0.303130 -4.185083 1.402672 -2.154357 0.115037 -0.094821 -0.600901 1.568605 2.848810 1.120663 1.147789 0.618329 -0.072017 -1.497160 1.058375 4.288315 0.977255 3.108277 3.803197 -1.535356 0.759812 -0.867304 0.376450 -3.062568 1.764858 0.776972 -2.232515 -1.292083 0.918328 -0.703357 -1.551404 1.865548 1.963949 -1.780280 -1.917847 -2.363320 -3.491368 -1.056002 2.951623 2.225459 4.879349 -2.164248 4.630228 1.783206 2.674004 0.259005 2.865361 -0.202272 3.465423 0.588054 -1.962519 -0.568664 -4.820286 -1.389803 -1.117305 2.983861 -1.596558 0.086371 1.555285 -5.482713 -5.060085 1.645149 -0.442684 -2.078738 -2.129369 1.340121 1.814726 1.642996 -0.110592 -3.231364 -1.836972 1.912660 -2.507047 -0.959356 -0.177724 -0.333236 -0.927140 -0.232139 -3.864698 1.236995 2.254397 -1.690178 -1.545198 3.902970 -1.336737 3.563947 0.378337 1.247946 0.232834 2.047651 2.250221 0.109914 0.284301 -2.502519 -2.995775 -0.489061 0.157778 0.943879 -3.029426 -0.743763 0.952260 1.262864 0.035894 1.485856 -1.497885 5.016928 1.293612 -2.519338 -2.960823 -3.567611 -2.421836 -2.461412 0.203038 -1.207804 -2.427347 0.059803 2.342745 1.310627 -0.227188 3.787803 -0.895471 1.934429 1.138813 -1.068299 0.634712 -1.346217 1.996821 -2.877648 -2.080126 2.064258 2.160521 1.769056 -0.070740 -0.227535 0.692235 -2.339038 -2.746686 1.472561 0.674813 1.825782 4.285093 3.201699 5.912317 -3.068575 -0.146123 0.273120 -0.626765 -0.946064 0.341402 -3.238529 1.637250 0.635425 0.368424 5.285828 0.178840 -2.165670 2.214308 0.463187 0.835106 -3.425205 2.425531 -2.110774 0.862997 -1.375939 -1.207593 -2.384170 -1.456282 -3.038635 -1.662109 5.012342 -2.280604 -5.319763 1.916679 -0.094786 3.293613 -6.330570 3.021471 -1.871650 3.699205 -0.674212 -1.304641 0.159298 -0.209962 -0.922763 1.827298 1.230772 -1.890252 1.987620 2.022591 1.066141 1.398014 0.639678 1.719962 -0.073937 1.145347 -1.625630 1.365587 -0.221496 -1.058352 -1.098892 -0.856471 1.014706 2.245075 -0.624311 0.000777 2.707442 0.035617 1.236042 3.322900 0.907311 -1.598220 0.296041 -0.720638 3.654405 -2.602939 -2.309145 -1.166410 1.376970 0.745904 1.295991 -5.222779 -3.618524 -2.001103 -5.495779 -1.330567 -0.048864 1.149188 1.577354 -0.627954 -4.360323 -2.428160 2.775736 0.587065 5.263452 2.033966 0.773364 3.733708 2.126777 0.042502 -1.287064 0.375240 0.985075 -1.441109 -0.739426 -2.629801 1.681133 -3.118013 3.129822 3.719733 -2.003016 2.299506 -0.807753 1.591053 -4.488822 4.892456 2.062879 -4.811906 0.688814 2.155481 3.280200 -2.874568 -2.888879 -PE-benchmarks/union-find.cpp__main = 0.896371 -1.471660 7.597085 5.635355 -2.609050 0.322167 -0.363126 -3.584986 2.481919 0.209123 -0.918886 1.923138 -1.634881 1.468336 0.683846 3.705325 -6.781541 -1.419154 -1.476534 -3.441773 -2.152319 -0.608436 1.369373 0.583636 3.279258 3.719908 -2.616930 -0.244383 0.190458 -4.699651 1.735200 -1.229352 2.625368 2.043504 1.544518 -10.619334 4.788100 2.196773 -1.835778 -3.420756 2.092167 -1.157900 -0.175711 -2.066009 -2.493048 1.397325 0.285441 2.184181 2.700929 2.027530 -0.661968 1.348219 2.843517 6.481201 -1.026412 1.716163 2.057855 -2.105297 -1.394808 -0.448713 1.013543 0.144594 1.379982 0.466476 0.666041 -4.943052 -0.807763 -2.460138 -2.578177 2.800567 0.626889 -1.940788 -2.809965 -2.335901 -2.430262 -1.075325 -3.579702 4.753134 4.352933 -3.847532 1.875668 0.128270 -0.203283 0.663108 1.037694 0.710567 3.361260 1.529454 0.185248 0.381159 0.359705 -3.444823 2.426321 -0.874812 -1.813355 -6.332851 1.916291 -4.409156 -3.327291 1.887759 3.230847 -1.805089 -2.516712 -2.738903 1.514875 1.668795 -1.349049 -1.938425 -0.049275 0.408381 0.123406 -0.903634 -1.295552 0.284281 -0.923153 0.538003 -5.236921 2.305649 0.267256 0.362529 0.099252 2.645057 0.436498 -1.013106 -0.637522 2.102734 -2.294141 4.768158 -0.874136 2.835290 -0.196226 2.305080 0.375539 1.339880 2.463622 0.267630 -1.045649 -2.428338 -2.375933 1.349371 -3.149076 0.730441 -0.376898 3.452718 4.305987 -0.802047 -3.602062 -1.756072 -3.259028 -5.366984 0.743781 -2.399598 -1.701392 3.665655 2.646790 1.860767 2.934050 1.660866 -3.017427 0.942704 -1.101186 -0.128676 3.386037 1.132105 2.386448 -2.037655 -1.070537 1.896416 0.077772 2.303645 0.386346 -0.197377 1.436684 -2.777909 -1.232333 2.908083 2.230891 0.101303 1.851417 3.257272 6.499557 -0.978011 -0.330315 2.617608 -1.759191 -0.772881 1.318574 -2.816775 0.904898 0.992339 0.575693 4.109867 -0.199063 -1.168976 0.758824 -0.159191 0.338636 -1.456507 0.281405 -1.473084 0.593157 -1.514810 0.049814 -2.451712 -0.802259 -2.322936 -2.333177 4.815375 -5.425304 -2.699237 4.946527 -2.959475 2.658028 -4.564789 5.113422 -2.364143 2.520519 -1.603499 -1.435619 0.088990 -2.566117 -4.049665 1.927868 1.293133 -0.065920 -0.880890 4.227426 2.231373 -0.095123 -1.340005 3.447846 -1.414022 4.815068 -1.232096 4.123682 -1.664188 0.387742 -0.933849 -0.269950 -2.064352 -1.754799 1.393903 2.451076 0.068220 2.810567 1.871001 1.807763 3.826461 -2.548308 3.187072 -0.712449 1.390302 -1.917326 -1.795306 2.120278 3.088834 -0.701582 1.621219 -4.738979 -4.177584 -6.570511 -2.433959 -1.390725 0.933704 1.762191 -1.565307 -1.308520 -2.255946 -2.828165 4.597802 -0.524216 1.520546 2.646994 0.379284 2.923948 3.512642 -1.032822 -0.846173 -0.802318 0.649731 1.492705 -0.139468 -4.307883 4.485582 -2.255819 -0.076945 5.624182 -2.289810 1.861888 -0.771211 4.044678 -2.785620 4.144881 0.472257 -2.732886 2.319688 4.043201 1.737723 0.517760 -2.348372 -PE-benchmarks/union-find.cpp__find(int*, int) = -0.885945 -1.358771 2.377935 1.665409 -0.006388 0.566286 0.792961 -0.588923 0.442199 0.857622 -0.508942 1.168325 -1.394286 -0.061937 -0.322555 0.430383 -1.371210 -1.237217 -0.177281 -0.714919 -0.641354 -0.742627 -0.251626 1.252114 1.151954 0.161143 -0.914366 -0.269084 -2.000777 -1.867862 -0.463974 -0.170884 0.964079 -0.097647 0.584217 -2.725580 1.059945 1.676435 -0.212996 -1.418602 0.788357 -0.884797 0.024348 -0.079572 -0.485954 0.579894 0.911535 0.013107 0.708644 0.452266 0.441729 -0.288032 0.646492 2.215800 -0.032778 1.245070 1.246488 -0.586636 -0.012752 -0.107774 0.142420 -0.952212 0.724778 0.222217 -0.583307 -0.810254 0.100203 -0.435272 -0.715695 0.792018 0.297420 -0.853584 -0.787531 -0.832608 -1.520318 -0.638189 0.217990 0.810434 1.924404 -1.091944 1.790057 0.497049 0.655987 0.095096 0.981230 0.024264 1.283233 0.262807 -0.565587 -0.143612 -0.824101 -0.365911 -0.216023 1.547715 -0.697899 -0.533632 0.946327 -1.980473 -1.989123 0.728206 0.085643 -0.836870 -1.158236 0.160857 0.420572 0.635880 -0.471954 -1.406611 -0.832332 0.610391 -0.511812 -0.380912 -0.079187 -0.309974 -0.391668 0.008679 -1.697934 0.509754 0.600451 -0.681378 -0.918424 1.517552 -0.135272 1.063577 0.164031 0.756237 -0.252219 1.182791 0.411795 0.506707 -0.224036 -0.262685 -1.787441 -0.564301 0.470589 0.295126 -1.113227 -0.409568 -0.037307 0.449389 -0.358302 0.625932 -0.544846 2.071035 1.226016 -0.864707 -1.183227 -1.094290 -0.767799 -1.397093 0.121534 -0.686234 -0.861072 0.268679 1.006584 0.404032 0.241467 1.775513 -0.420631 0.764191 0.214181 -0.700662 0.621380 -0.717581 0.946809 -1.116331 -0.890672 0.811151 0.827068 0.959026 -0.002058 0.074084 0.311273 -1.034756 -1.008856 0.685463 0.347332 0.253416 1.514983 1.331828 2.723144 -1.366156 0.093520 0.353846 -0.473962 -0.197638 0.208476 -1.360634 0.539427 0.399691 -0.203723 1.919113 0.128891 -0.863005 0.842739 -0.163161 0.362137 -1.399893 0.871869 -0.905680 0.334680 -0.625757 -0.635498 -0.854722 -0.618130 -0.962344 -0.760986 1.950052 -1.344802 -1.761446 1.021674 0.056056 1.020632 -2.615218 1.755436 -0.854117 1.385251 -0.629053 -0.472913 0.061405 0.457211 -0.491867 0.740181 0.489985 -0.841515 0.762472 1.373493 0.534323 0.543483 -0.003238 1.120569 -0.153126 0.727915 -0.604793 0.931072 -0.127792 -0.600519 -0.426336 -0.354561 0.039972 0.544937 0.101065 0.355240 0.959497 -0.060160 0.447126 1.459660 0.874311 -0.649667 0.456411 -0.294849 1.497665 -0.968673 -0.914538 -0.120652 0.795755 0.159376 0.529112 -2.109652 -1.571303 -1.235655 -2.011115 -0.328529 0.309000 0.560762 0.307201 -0.235946 -1.741827 -1.033523 1.601816 -0.065367 1.648181 0.859297 0.424502 1.424692 0.999131 0.036888 -0.438578 -0.150265 0.483431 -0.218089 -0.347175 -0.953781 0.824010 -1.435604 0.994904 1.390620 -0.771006 0.866717 0.216223 0.883868 -1.703708 1.946290 0.599598 -1.508321 0.849250 1.398608 1.260007 -0.926993 -0.987619 -PE-benchmarks/union-find.cpp__Union(int*, int, int) = -0.833125 -1.452127 2.588014 1.774861 0.015539 0.482601 1.211092 -0.554343 0.616675 0.658893 -0.470383 1.192165 -1.683179 0.053882 -0.580501 0.489225 -1.547580 -1.445325 -0.166519 -0.730526 -0.537001 -0.846641 0.149633 1.151759 1.392191 0.026369 -0.976005 -0.785672 -2.356390 -1.426409 -0.050184 -0.233756 1.116006 -0.303080 0.294532 -3.400697 1.022096 1.694319 -0.338719 -1.692163 1.123932 -1.109936 0.148106 -0.325692 -0.511435 0.388564 0.951169 0.366094 0.851181 0.521391 0.267821 -0.131654 0.535722 2.866344 -0.374154 1.244167 1.293320 -0.474807 -0.217752 -0.079076 0.155207 -0.918100 0.789136 0.247681 -0.628096 -0.941275 -0.061335 -0.738660 -1.020960 0.846698 0.252263 -0.565273 -0.989409 -0.601507 -1.695972 -0.592867 0.171944 1.155388 2.089854 -1.423791 1.890809 0.293226 0.614799 0.041510 0.769551 0.169990 0.930227 0.255881 -0.435106 -0.525058 -1.384024 -0.192177 -0.300293 1.091279 -0.614444 -1.242878 1.126078 -1.745479 -2.090203 0.591903 0.143555 -0.948622 -1.064863 0.191815 0.354325 1.018132 -0.694172 -1.553538 -0.985635 0.620188 -0.302685 -0.376937 0.120435 -0.370922 -0.540450 -0.653018 -1.852286 0.538063 0.496729 -0.794442 -0.964552 1.595591 -0.541794 1.104339 0.244232 0.864459 -0.372181 1.455038 0.464970 0.445161 0.191894 -0.343920 -1.843525 -0.604018 0.635469 1.245147 -1.185991 -0.159687 -0.304632 0.437105 -0.450959 0.275242 -0.259947 1.935121 1.153042 -1.172380 -1.257276 -1.082551 -0.466849 -1.551137 0.132825 -0.763616 -0.549212 0.572558 1.100306 0.579130 0.403776 2.291705 -0.662720 0.878278 0.312889 -0.871343 0.742572 -0.460493 1.049296 -1.156855 -1.071625 0.692822 0.736020 1.019342 -0.187830 0.341933 0.302764 -1.319002 -1.009174 0.392763 0.586314 0.060403 1.539463 1.410458 2.184317 -1.744168 0.033508 0.530372 -0.648370 -0.194126 0.201936 -1.619587 0.702007 0.415334 -0.401473 1.891314 0.152782 -1.108579 1.093799 -0.297440 0.369891 -1.363707 0.705508 -1.048141 -0.067660 -0.845743 -0.626809 -0.753337 -0.757208 -1.056901 -0.833938 2.111061 -1.263669 -1.807418 0.957353 0.013449 0.982785 -3.010373 2.324639 -0.945715 1.349086 -0.542236 -0.375184 0.035249 0.679640 -0.680029 0.536261 0.514315 -0.876866 0.926778 1.828395 0.666379 0.462669 -0.010519 1.356888 -0.106883 0.897004 -0.633150 1.003010 -0.312451 -0.918288 -0.189768 -0.356022 0.126949 0.451861 0.257018 1.015063 1.036688 0.211929 0.911957 1.617132 1.253023 -0.709833 0.535692 -0.413412 1.788551 -0.883772 -0.872766 -0.107716 0.923082 0.093735 0.758275 -2.256854 -2.186295 -1.239371 -2.405849 0.058767 -0.131221 0.507960 0.061422 -0.202057 -2.213290 -1.120392 0.884447 -0.210947 1.764030 1.043606 0.371806 1.526551 1.155735 -0.403587 -0.293174 0.228489 0.757812 -0.171257 -0.504690 -1.062603 0.799867 -1.705154 0.908436 1.674346 -0.774688 0.863195 0.053589 1.089311 -1.757202 2.311757 0.648482 -1.592353 1.096372 1.483384 1.485678 -0.607876 -1.034025 -PE-benchmarks/word-wrap.cpp__main = 0.146068 -0.648043 1.600868 1.121655 -0.201354 -0.032195 0.604659 -0.339151 0.556271 -0.020982 -0.408356 0.529377 -0.837320 0.378982 -0.566715 0.742313 -1.252017 -0.777027 -0.017797 -0.302094 -0.153919 -0.323924 0.751718 0.095670 0.942173 0.577331 -0.530359 -0.693715 -0.807823 -0.510660 0.569047 -0.446375 0.618379 0.307247 -0.157564 -1.714278 0.693727 0.543181 -0.437822 -0.923939 0.762825 -0.457264 0.029817 -0.703698 -0.183049 0.154358 0.415412 0.819066 0.561668 0.545918 -0.120267 0.061667 0.477560 1.506602 -0.514190 0.421359 0.633561 -0.103556 -0.183263 -0.182169 0.307376 -0.153495 0.297396 0.355602 -0.019397 -0.833187 -0.475151 -0.807876 -0.686806 0.517773 -0.049679 0.414410 -0.844639 -0.014013 -0.583690 -0.041630 -0.862867 0.962278 1.272190 -0.943428 0.774819 0.079149 0.261816 -0.154556 -0.157475 0.373542 -0.055787 0.364306 -0.047786 -0.372677 -0.642785 -0.139563 0.111023 -0.267629 -0.190558 -1.490987 0.685649 -0.659555 -0.848293 0.185020 0.428397 -0.364083 0.136180 0.111838 0.085911 0.756274 -0.563734 -0.621297 -0.045725 -0.202071 0.270716 -0.165295 0.098696 0.046852 -0.389095 -0.454484 -1.138379 0.191684 -0.094411 -0.510710 0.137652 0.493437 -0.178636 0.247507 -0.006057 0.383771 -0.340446 1.077005 0.300377 0.447418 0.371155 0.245133 -0.279375 0.218245 0.810476 1.029970 -0.588335 0.070992 -0.491710 0.183850 -0.370855 -0.419397 0.107804 0.457303 0.553690 -0.807917 -0.841795 -0.479880 -0.293615 -1.020033 0.200254 -0.609237 -0.007461 0.591031 0.636907 0.297622 0.704255 1.326649 -0.737508 0.323006 0.026238 -0.208586 0.569873 0.326797 0.587009 -0.414387 -0.496312 0.370732 0.200208 0.329643 -0.029044 0.119272 0.304852 -0.977279 -0.106995 0.370585 0.534677 -0.413771 0.527111 0.481535 0.128432 -0.413745 -0.112536 0.657487 -0.228108 -0.193304 0.332124 -1.028858 0.681166 0.016372 0.038764 0.460236 0.147459 -0.518323 0.666482 -0.348184 0.068165 -0.422462 0.044656 -0.445677 -0.325402 -0.616050 0.402282 -0.198667 -0.372768 -0.277224 -0.229206 1.065804 -0.706553 -0.331186 0.384693 -0.047685 0.385094 -1.143961 1.345832 -0.605377 0.645387 0.035676 -0.173901 0.136047 -0.148977 -0.614007 -0.245254 0.360189 0.004250 0.257426 0.937670 0.554097 -0.136562 0.069385 0.885699 -0.137248 0.845431 -0.067136 0.464401 -0.281263 -0.554846 0.202805 -0.108447 -0.191689 -0.267416 0.276340 1.238708 0.273264 0.612570 1.052454 0.291554 1.137403 -0.606701 0.400550 -0.212852 1.017435 -0.386221 -0.288891 0.088723 0.578286 -0.302423 0.674913 -1.069082 -1.592400 -0.891359 -0.957706 -0.025587 -0.524090 0.379382 -0.468891 -0.029067 -0.956633 -0.634205 0.105026 -0.290292 0.510988 0.732436 0.023145 0.684887 0.630661 -0.613421 -0.195216 0.236000 0.700349 0.246200 -0.037240 -0.788998 0.495054 -0.887989 -0.073581 1.237224 -0.571231 0.134220 -0.280546 1.022563 -0.643897 1.369275 0.355154 -0.763210 0.831694 0.713835 0.795678 0.386331 -0.546483 -PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -1.030371 -1.859547 4.093246 2.637715 -0.917671 0.807343 0.613456 -1.142847 0.421694 -0.705108 -0.783739 1.760985 -2.017272 -0.100978 -1.018805 -0.204960 -3.196797 -1.831669 -0.883943 -1.451247 -0.959009 -0.762257 -0.644896 2.640475 1.642839 1.081947 -1.605051 0.145119 -3.221469 -1.153466 -0.007469 -0.005969 1.525312 0.296980 1.313917 -5.040339 1.685082 2.653670 -0.436634 -2.145530 1.378377 -1.780576 -0.184039 -1.268737 -1.884382 0.390630 0.857367 0.430125 0.875648 -0.153080 -0.635348 0.218035 0.347105 4.034046 0.015981 1.748715 2.244667 -0.836318 -0.015519 -0.480202 0.097562 -1.077797 0.828217 -0.121265 -1.130171 -1.724487 0.322900 -1.269862 -0.714148 1.326577 0.913449 -1.154425 -0.931382 -1.407315 -3.647340 -0.995692 1.956172 1.888941 2.660776 -2.243511 2.221016 0.351272 0.825913 0.736940 1.700444 0.378712 2.316441 0.463832 -0.202855 0.036024 -2.399383 -0.243005 0.012655 1.221617 -1.410146 -2.299282 1.494223 -4.771099 -3.037014 0.869534 0.519575 -1.884931 -1.100296 -0.247702 0.517349 0.786783 -0.734516 -1.686767 -0.700270 1.485876 -0.736977 -0.323558 0.164945 0.408688 -0.030079 -0.928278 -2.957159 1.795504 1.012370 -0.125435 -0.508347 2.700010 -0.684702 1.073509 0.151262 1.053423 -0.976452 2.280958 0.122178 -0.005577 -1.150253 -0.445367 -0.830136 -1.181319 0.485369 1.287146 -2.046200 -1.299584 -0.038121 0.853515 -0.698918 0.268843 -0.774218 2.588099 0.427124 -1.501421 -1.680987 -2.020521 -2.315035 -2.771184 -0.548595 -0.745770 -2.300824 1.687499 1.575560 1.712319 0.533011 2.396328 -0.038800 0.991757 0.415483 -1.362491 1.107535 -1.215922 1.409782 -1.653185 -1.449377 1.414545 -0.173318 2.372435 -0.077612 0.408164 0.354440 -1.721186 -1.660099 0.880028 1.124569 0.979213 2.641249 2.749121 2.344693 -2.246714 0.235325 0.604419 -1.243085 -0.405207 0.404656 -1.614181 0.361563 1.011198 -0.789776 3.369813 0.084357 -1.196957 1.050908 0.126294 0.810165 -2.189710 0.786027 -1.085481 0.537087 -1.478109 -0.686666 -1.560618 -0.864760 -2.415050 -2.758543 3.229622 -3.766667 -3.043669 1.990913 0.846486 2.629038 -4.041270 1.433746 -1.260310 3.670284 -0.073794 -0.538814 0.417936 -0.718861 -1.718060 1.618865 0.610939 -1.599699 0.486915 1.644664 1.177688 0.918426 -0.364410 1.869292 -0.636698 1.803704 -1.550347 1.413320 -0.459079 -1.601782 -0.192298 -0.415362 -0.459559 0.683922 1.065843 0.771329 1.212471 1.615277 0.982747 2.466707 1.515933 -1.009523 -0.016844 -0.686611 1.554996 -1.456799 -1.587644 0.018753 1.936551 0.578202 0.404954 -3.487295 -3.281585 -3.628381 -3.314969 0.135300 -0.638450 0.378382 0.557542 -0.625498 -2.803395 -1.783828 2.255753 -0.319304 3.607978 1.677792 0.525339 2.379981 1.858985 -0.676365 -0.410375 1.205068 1.517582 -0.004897 0.045434 -3.009335 2.126373 -2.027674 1.296274 3.309429 -1.531039 1.982717 0.194157 1.579576 -2.642806 3.314429 0.794420 -3.469829 0.902427 2.333212 1.101693 -0.078481 -1.654942 -PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -7.557730 -19.657462 25.060081 18.885923 0.250634 9.876680 9.166545 -1.896190 -2.875477 12.779357 -6.524566 18.635344 -13.080732 -5.710141 1.241849 0.054592 -12.200191 -12.417869 1.020133 -3.058943 -5.463823 -7.377749 -13.212400 25.935548 11.162215 -0.481658 -7.774026 -2.334663 -24.530639 -15.496945 -15.145792 1.588354 10.204211 0.519480 16.002459 -18.832124 8.214699 20.936068 3.057251 -17.237756 4.036201 -5.503258 0.296827 3.756962 -8.812859 8.870195 15.071603 2.144200 2.314564 5.571736 3.200756 -7.635061 13.498361 19.253263 12.651288 16.163068 16.298002 -8.131904 9.783044 -5.432512 1.612481 -16.735475 6.116656 -2.176481 -4.338576 -3.554175 -0.500676 0.804034 -1.187153 4.370208 11.139863 -11.479852 -9.529342 -10.623786 -16.449753 -7.528656 0.891814 7.734951 19.269978 -10.379471 22.829206 12.174068 11.482466 0.975095 15.837417 -0.929813 14.771727 3.134047 -7.566992 6.013708 -13.839634 -6.838029 -3.150114 12.041502 -12.320772 -6.119320 7.061719 -23.168593 -23.993216 13.522136 -3.054378 -12.521071 -3.606151 1.953857 5.317816 5.106677 -4.756853 -14.373720 -9.242934 9.842926 -9.785923 -5.205583 -0.435717 0.963405 1.326305 3.453660 -15.167965 8.141357 14.160497 -6.003298 -5.109668 18.554196 2.445427 19.248262 1.021640 3.542253 1.401227 9.628547 13.102608 1.098910 -7.939684 -10.398228 -16.872857 0.626909 0.966480 -8.737464 -11.455780 -6.325860 7.693157 9.575844 6.494842 16.878698 -2.250642 26.643213 6.022970 -6.018498 -13.122323 -18.930447 -14.805920 -5.854531 1.358921 -2.502995 -14.184057 1.946506 9.488721 1.466026 -4.139328 5.437497 3.475353 6.804096 2.736318 -4.199867 -0.342010 -10.020287 7.430178 -11.827838 -7.662370 11.667409 13.070076 14.703177 1.126588 -0.633246 5.016186 -3.116338 -10.605207 4.113762 3.197837 6.611451 22.302386 15.805978 31.145454 -4.553088 -4.614308 -2.676699 -4.015227 -3.429838 0.944532 -12.960754 5.537599 2.348442 -5.152103 23.982926 -0.695145 -4.697480 14.391055 0.452968 2.791920 -16.441752 12.769763 -8.857285 4.961187 -4.851333 -4.864761 -12.609041 -5.059824 -15.438380 -9.522217 23.295163 -17.265428 -17.164304 4.788306 -1.305895 9.964173 -22.560076 19.202798 -6.404220 13.493250 -2.280630 -10.941474 1.606483 3.004842 -1.325195 7.918367 5.312511 -11.773229 5.664090 6.510714 2.556489 3.424847 3.558608 7.354525 -2.087611 3.856994 -8.279192 6.239019 -0.778840 -1.167378 -7.988669 -2.714903 3.480813 11.948580 -2.625506 -3.688829 6.571685 -3.005470 -2.791976 15.091837 0.154818 -6.576611 -2.032650 -3.733128 15.507444 -15.343473 -11.211250 -7.397736 5.508851 6.290394 1.900910 -24.220920 -7.726232 -15.831484 -14.435066 -8.480059 5.398260 6.454230 9.250248 -5.157963 -17.563760 -13.881503 21.977398 1.529689 6.203428 11.803814 3.323266 19.762011 6.601155 9.629958 -4.434693 -2.612367 3.236647 -3.794755 -1.046615 -8.164169 5.984994 -17.174872 17.046752 14.125660 -7.193340 13.124330 0.529884 8.300945 -21.937996 18.715906 7.463536 -23.480659 -0.959519 17.329269 7.225648 -20.801899 -12.297470 -PE-benchmarks/bellman-ford-algorithm.cpp__main = 3.143257 -2.992626 23.882799 17.663869 -9.746561 0.790845 -3.685386 -12.626219 7.545993 1.663033 -1.831376 5.640521 -2.346094 4.985740 3.171589 13.554214 -21.610772 -1.774044 -5.416218 -12.719936 -7.910162 -0.025624 3.660584 0.015586 9.733714 11.505645 -8.028686 0.318750 5.777906 -17.753907 4.661605 -3.935482 7.539710 3.924035 4.929226 -36.525262 16.466100 5.863300 -6.627835 -9.354751 5.896668 -1.725345 -0.665110 -5.136719 -10.491162 3.701318 -0.590724 5.012708 8.343378 7.186180 -1.018256 6.262562 11.748990 22.755009 -2.506798 4.980544 5.429332 -7.359676 -5.391685 -0.772972 3.354191 1.797613 3.696196 -0.121525 5.075188 -16.834909 -3.129802 -6.464392 -7.154431 8.010297 0.861204 -8.579788 -7.605650 -8.120377 -6.833297 -4.306654 -14.573987 14.618486 12.075806 -12.243058 3.861314 0.069651 -2.931206 3.703924 3.166395 2.267475 11.255773 5.220935 1.743329 3.312547 8.387218 -11.000298 10.364555 -3.381578 -6.555002 -23.382600 6.045091 -13.123467 -9.142224 7.577382 11.960916 -5.357043 -8.283353 -13.364818 4.454116 3.850118 -5.387378 -4.884193 0.048393 0.960205 1.759664 -3.092845 -5.029523 0.364422 -1.299138 4.932428 -15.906837 8.146727 0.630960 3.141271 0.103804 7.537548 4.441498 -5.470256 -2.902105 7.500131 -8.231610 14.995894 -4.681528 10.929100 -4.078517 11.037745 2.769775 4.943803 7.802068 -4.685685 -1.346530 -9.185440 -8.506510 4.571622 -10.395997 4.911511 -1.188172 10.991543 15.410893 1.061810 -10.712305 -4.556869 -11.488218 -17.643997 2.327160 -7.338935 -7.010489 13.031696 7.794338 4.882130 9.697539 0.489503 -8.677069 1.925495 -5.170155 0.152173 11.569036 2.228842 7.119072 -5.751962 -2.177488 5.486062 0.335432 8.016185 1.832093 -1.035408 4.814235 -6.760993 -2.110230 9.387572 7.574633 -0.403507 4.237733 10.055135 25.833213 -0.717529 -1.532564 8.045756 -6.426099 -1.774440 3.570499 -7.405478 0.286758 3.899710 1.410738 12.861568 -0.876420 -2.234708 1.102989 -0.717364 0.571816 -3.028806 0.923683 -3.859049 2.219258 -2.905959 -0.417062 -8.424124 -0.887149 -7.505299 -8.198565 14.329174 -21.639248 -5.986406 17.228366 -10.379996 6.824320 -11.780622 18.175639 -7.085859 7.495846 -6.148049 -5.284463 0.019454 -8.185273 -13.641159 7.765130 3.853868 0.206995 -5.024301 13.555297 6.802251 -0.311397 -5.826056 10.973584 -5.858077 16.208317 -3.838400 14.803368 -5.639166 2.638512 -4.406824 -0.303358 -8.258619 -7.285278 5.631025 5.028560 -2.473778 8.069250 2.881623 5.342862 11.841074 -8.031317 12.057662 -2.222000 2.065203 -5.981152 -5.243094 8.352140 10.619396 -1.840643 4.290385 -14.154429 -9.433783 -24.836069 -2.952486 -5.021483 6.432993 5.231118 -6.180307 -4.827096 -4.593110 -9.094781 19.066977 -2.132122 -0.301719 8.495472 1.835190 8.652175 10.940605 -0.728373 -2.385601 -5.433534 -0.380544 6.410143 -0.108570 -12.717630 15.157186 -5.799674 -1.472146 16.486254 -6.029875 5.950324 0.237330 10.378851 -7.420747 10.540769 0.104472 -6.346892 6.899246 14.657825 3.661569 0.340777 -6.652558 -PE-benchmarks/permutations-of-a-given-string.cpp__main = -0.069090 -1.391722 5.493328 2.252387 -1.100741 -0.007279 3.528556 -2.172687 2.838493 -0.757199 -0.951220 -0.462568 -3.807708 -0.097558 -1.555032 0.341613 -4.600889 -2.592605 -0.471536 -2.343652 -1.082413 -2.495362 2.951326 0.556732 2.970728 1.609237 -0.826189 -2.142036 -2.623374 -0.858883 3.482751 -0.893576 1.505605 1.931697 0.293613 -6.327444 2.345123 0.855061 -1.366029 -2.040946 2.466180 -0.644346 -0.113273 -0.703855 0.249704 0.331995 1.408237 4.878299 2.840707 1.320040 0.145303 -1.921306 -0.278738 5.183570 -2.289702 1.321356 1.565039 -0.679350 -0.326656 1.424123 -0.204901 -1.422213 0.359525 2.029048 -0.818571 -1.271282 1.456363 -3.353794 -3.182671 3.265177 0.514972 -0.171199 -2.210180 -0.981243 -2.148243 -0.210083 -2.057856 3.429366 4.764306 -2.888372 2.994495 0.174591 1.418121 -1.188655 -0.733876 0.299237 1.073356 0.060976 -1.006150 -1.700861 -4.971765 -0.974021 -0.723171 -1.160365 0.391196 -4.590367 2.247734 -3.080565 -3.365971 0.160819 1.240183 -1.373007 -0.988764 1.670977 1.034757 1.006071 -1.500124 -3.048389 -1.292279 0.453452 -1.883182 1.624412 0.855594 0.421722 -1.790972 -2.205192 -3.465829 0.623197 -0.788827 -1.659889 -0.865693 2.602692 -1.882899 1.620312 1.758518 1.957327 -0.896337 2.951517 1.238140 0.408045 2.150548 0.016097 -1.198461 -0.126863 1.863119 4.606905 -0.377295 -0.253474 -1.124499 0.694071 -2.799592 -1.106157 -0.295892 1.445134 1.046176 -3.926746 -2.921195 -0.189421 -0.707059 -4.365973 1.012183 -1.950928 -1.143461 0.651084 1.604740 2.845787 1.352544 4.031574 -2.861055 1.468812 -0.200290 -1.281098 0.482582 1.346511 2.818622 -1.743666 -1.457742 -0.780421 -0.361315 1.196587 -0.603232 -0.907754 -0.058926 -4.537557 -1.619052 -0.331033 1.466593 -1.009096 0.483580 3.032029 1.120081 -3.745874 -0.387362 2.978345 -0.503239 -1.508876 1.938054 -3.497837 2.473037 0.256626 -0.018439 1.987474 0.522240 -1.132946 2.030004 -1.223641 0.561373 -1.953688 -1.452030 -1.585248 -0.943419 -2.504925 1.213382 -1.741638 -1.532791 -1.001656 -1.413060 3.082870 -1.208262 -2.480151 3.500401 -0.608464 2.535692 -4.057105 4.575762 -1.275488 1.628175 -0.526683 -0.132761 -0.654452 -0.031815 -0.978850 0.296151 -0.712006 0.088886 2.468729 4.368179 1.636735 1.304893 0.282051 3.858020 -1.062205 1.979648 -1.017772 1.509488 -1.579136 -2.992585 0.927680 -0.352496 -0.463582 -0.526252 1.102691 4.251731 2.381648 1.223185 4.128259 1.306030 3.030836 -1.021774 0.958892 0.079690 3.073346 -1.427535 -1.433735 1.337908 1.416193 -1.862898 1.833891 -4.197794 -6.109590 -1.671525 -5.239580 -0.715401 -3.279154 1.198800 -0.615749 0.062169 -3.470759 -1.387881 -0.278552 -0.163440 2.321384 2.131158 0.172797 2.739996 4.237941 -2.576037 0.027211 2.456718 2.958504 -0.751446 -0.931839 -3.432458 1.652033 -3.269137 0.880244 4.007517 -1.548860 0.709453 -2.487825 3.801041 -4.223546 3.961148 1.170037 -2.071507 2.991232 1.709595 3.350106 3.108661 -1.331795 -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.648814 -0.716958 2.021136 1.283037 -0.211110 0.277506 0.619267 -0.838631 0.920866 -0.121114 -0.138628 0.465632 -1.132396 0.264217 -0.725204 0.445881 -1.451212 -1.037056 -0.391931 -1.061855 -0.449066 -0.539576 0.483297 0.325870 0.908921 0.054304 -0.827105 -0.518081 -1.578589 -0.582958 0.818465 -0.329879 0.817582 -0.374979 -0.134696 -3.331437 1.031867 1.032670 -0.603131 -1.087786 0.952928 -1.059643 0.172109 -0.604952 -0.612739 -0.026437 0.143725 0.169026 0.885299 0.156011 0.214834 0.463553 -0.053951 2.659575 -1.030776 0.761809 0.579960 -0.272542 -0.613098 0.202544 0.090873 -0.070158 0.660922 0.260319 -0.503307 -1.177242 -0.034704 -0.825188 -1.088099 0.776260 0.006888 -0.307065 -0.571928 -0.210156 -1.431012 -0.578806 0.333725 0.937508 1.474618 -1.143499 1.050539 -0.143655 0.243278 0.215310 0.501538 0.315763 0.867860 0.177430 -0.112928 -0.467888 -1.005631 0.309520 0.064535 0.466878 -0.377644 -1.565579 0.911974 -1.270230 -1.366693 0.273947 0.524934 -0.549608 -1.063288 -0.218266 0.270847 0.708947 -0.755363 -1.126331 -0.566520 0.546093 0.004066 -0.217621 0.158770 -0.574147 -0.342521 -1.021491 -1.438336 0.490279 0.039436 -0.295698 -0.784299 1.249105 -0.749486 0.042303 0.136734 0.834347 -0.762687 1.250585 -0.311170 0.423771 -0.054423 0.005866 -1.128704 -0.682287 0.543398 1.562078 -0.709976 -0.323024 -0.740569 0.195510 -0.855769 -0.207854 -0.088046 0.907434 0.869137 -0.846084 -0.725349 -0.454844 -0.153212 -1.746263 -0.049029 -0.680586 -0.485945 0.718690 0.913379 0.918153 0.842026 1.852299 -0.540641 0.759182 0.006811 -0.761599 1.086905 -0.238804 0.915591 -0.741164 -0.838399 0.321793 0.019515 0.823542 -0.102877 0.274965 0.049340 -1.260745 -0.576295 0.127466 0.684959 0.017557 0.927396 1.124339 1.197052 -1.733125 0.296629 0.740210 -0.655215 0.016549 0.120500 -1.086466 0.234317 0.606596 -0.597579 1.309463 0.058445 -0.946055 0.387822 -0.210731 0.468818 -0.908318 0.161202 -0.691981 -0.182463 -0.815833 -0.425680 -0.656147 -0.585673 -0.878810 -1.069267 1.480413 -1.334392 -1.357920 1.195589 0.106374 0.825592 -2.223741 1.453410 -0.844116 1.318061 -0.507052 0.035504 -0.104954 0.477170 -1.029593 0.622083 0.359625 -0.698120 0.647377 1.730131 0.772685 0.485093 -0.314481 1.318354 -0.239616 1.009852 -0.607429 1.135099 -0.406845 -0.971107 0.259968 -0.310390 -0.202900 -0.113158 0.674414 1.051233 0.837925 0.652252 0.867846 1.214967 1.301933 -0.538715 0.571868 -0.311499 0.909834 -0.341487 -0.468783 0.319570 0.891292 -0.054010 0.494703 -1.649942 -2.017567 -1.260386 -1.815326 0.592672 -0.262850 0.016379 -0.133680 -0.029886 -1.744054 -0.739533 0.444870 -0.458231 1.798728 0.738507 0.352147 0.970498 1.240703 -0.907020 -0.166675 0.467517 0.606066 0.070051 -0.346899 -1.292503 1.126805 -1.092575 0.368689 1.472494 -0.605401 0.544644 0.190450 0.866294 -1.027011 1.840374 0.383507 -0.883314 1.215204 0.994847 1.293920 0.387585 -0.660816 -PE-benchmarks/find-two-non-repeating-element.cpp__main = 0.052857 -0.503726 3.045016 1.736665 -1.039399 0.097782 -0.049151 -1.445608 1.049762 -1.644456 -0.568667 0.617666 -1.023722 0.596891 -1.802640 0.368869 -2.895269 -1.167031 -0.911463 -1.528994 -0.623488 -0.305250 0.738243 0.554341 1.253409 1.322831 -1.230434 0.057232 -1.588096 -0.342364 1.368663 -0.398869 0.779836 0.111531 0.186527 -3.665620 1.592788 1.188332 -0.891453 -1.221701 1.311606 -1.384821 -0.308334 -1.664631 -1.173248 -0.136490 -0.224779 0.913541 1.084123 -0.074849 -0.672906 1.059012 -0.262068 3.118549 -1.187706 0.714382 0.899970 -0.219574 -0.600935 0.032182 0.153435 0.291627 0.312542 0.173264 -0.437023 -1.990175 -0.089294 -1.416413 -0.683533 1.297713 -0.030284 -0.197775 -0.716450 -0.412466 -2.558052 -0.360066 0.541100 1.768557 1.676550 -1.712195 0.638409 -0.474673 0.171078 0.434059 0.386937 0.558873 1.246666 0.483728 0.380709 -0.535991 -1.482907 0.386958 0.455714 -0.481437 -0.725582 -2.976246 1.240933 -3.555119 -1.545809 0.010190 1.196066 -1.146521 -0.185419 -0.284153 0.261353 0.515137 -0.687879 -0.789874 0.369957 0.662220 0.212336 -0.001216 0.361266 0.059598 -0.002760 -1.039583 -2.174830 1.291399 -0.134839 0.312576 0.101681 1.478739 -0.521044 -0.606875 -0.018384 0.947005 -1.195633 1.915013 -0.818111 0.350984 -0.810373 0.798212 0.348364 -0.211752 0.853357 1.414968 -1.361401 -0.549538 -0.913075 0.338093 -1.430502 -0.982955 -0.821257 0.535942 0.097516 -1.357754 -1.163649 -0.677582 -1.372291 -2.545277 -0.521135 -0.712360 -1.741641 1.411101 1.141993 1.911975 1.388866 1.831622 -0.501626 0.348941 0.136184 -0.801191 1.510237 -0.464853 1.087816 -0.857422 -0.939387 0.750525 -1.034147 1.314544 -0.134361 0.452299 0.169580 -1.842901 -0.403070 0.787903 1.324765 0.369352 1.250978 1.734722 -0.459406 -1.698744 0.318981 1.240437 -1.069663 -0.263546 0.437149 -1.076388 0.287544 0.848083 -0.010804 1.679042 0.136762 -0.619808 0.273206 -0.020591 0.733386 -1.048301 -0.420561 -0.569965 -0.183981 -1.185151 0.198332 -0.759460 -0.433862 -1.373212 -2.430159 1.845379 -3.008327 -1.536551 2.016592 0.394492 1.787953 -2.266331 0.286694 -1.081901 2.618562 0.450467 0.412908 0.204512 -1.095289 -2.108598 0.936998 0.378858 -0.665983 0.295294 1.478785 1.230249 0.500554 -0.642023 1.752419 -0.890301 2.037153 -0.889277 1.222529 -0.593081 -1.636571 0.528213 -0.203096 -1.142854 -0.612042 1.484446 1.638149 0.491092 2.184164 1.528967 1.198220 2.086715 -0.861895 0.445441 -0.656221 0.362993 -0.560564 -0.935910 0.844980 1.446761 -0.128786 0.360503 -2.167606 -3.197327 -3.370894 -2.215407 0.928923 -1.780593 0.015209 -0.511765 -0.352369 -1.726836 -1.182685 0.953719 -0.515590 2.539892 1.247581 0.155970 1.101228 1.668795 -1.614480 0.133878 1.127758 1.418955 0.581818 0.023568 -2.734021 2.067143 -1.047854 -0.092908 2.899043 -1.288727 1.001881 0.189549 1.098127 -1.220410 2.201042 0.349333 -1.838551 1.218001 1.224011 0.820617 1.734436 -0.984376 -PE-benchmarks/boyer-moore-algorithm.cpp__main = 0.481100 -1.658956 8.679443 3.572307 -1.860673 -0.079924 5.520775 -4.169525 5.036607 -1.363471 -1.777382 -1.495800 -6.020859 0.026236 -2.646865 0.889150 -8.009808 -4.051246 -0.722379 -3.952180 -1.665192 -4.235573 5.358574 0.024056 4.796911 2.826192 -1.267347 -2.954508 -3.657446 -1.591639 6.316500 -1.704813 2.166747 3.641952 0.101763 -9.924644 4.416561 1.063189 -2.361790 -2.834789 3.845716 -1.315558 -0.557559 -1.501463 0.752750 0.598779 1.679351 8.502127 5.160589 1.976970 0.449625 -3.217405 -1.091556 7.797892 -4.452681 1.938743 1.687217 -1.120750 -0.856048 2.914709 -0.257792 -1.710170 0.664613 4.020986 -1.357440 -2.253237 2.668382 -5.673845 -5.288727 5.812456 0.625702 -0.162271 -3.620949 -1.044043 -2.882238 -0.031849 -3.724199 5.597252 7.596114 -4.170038 4.696974 -0.249074 2.124531 -2.400756 -1.344509 0.388497 2.245975 0.005929 -1.745312 -3.192017 -7.736122 -1.854078 -0.571704 -2.046247 0.988620 -7.047852 3.273899 -4.630901 -5.154442 -0.342099 2.383795 -2.162537 -1.687965 3.273785 1.952607 1.247034 -2.106602 -4.914923 -1.365331 0.556635 -3.656460 2.695082 1.136075 0.570311 -3.239348 -3.588644 -5.496564 0.605960 -1.829250 -2.459795 -1.242045 4.038083 -3.004669 1.622756 2.729904 2.856756 -1.392210 4.673484 0.928474 0.934462 3.695510 0.632216 -1.734226 0.167264 3.522292 7.276842 -0.147667 -0.360103 -1.960263 1.189310 -5.543382 -2.253974 -0.879725 2.129091 1.746189 -6.552372 -4.650478 0.357120 -0.838080 -7.207088 1.717970 -3.311472 -2.033145 0.758588 3.002485 4.716005 2.747641 6.538729 -5.252106 2.455640 -0.561339 -1.754355 1.380864 2.455081 4.682163 -2.767970 -2.079442 -1.246481 -1.092592 1.713449 -1.246121 -1.489453 -0.247759 -7.715983 -2.580930 -0.086449 2.299370 -1.493043 0.216422 4.749172 1.453695 -6.262863 -0.021753 5.506449 -0.426201 -2.560342 3.485021 -5.632004 4.159821 0.467510 0.470411 2.858845 0.860121 -1.882986 2.259607 -1.938403 1.005795 -3.286819 -3.008656 -2.248197 -1.043107 -3.954656 2.265407 -2.456067 -2.804467 -1.270768 -2.127859 4.610900 -1.574234 -4.169873 6.416483 -1.688925 4.324014 -6.193310 6.720028 -2.318795 2.075404 -1.061500 -0.001060 -0.968412 -0.294892 -2.056255 0.807223 -1.229165 0.658603 4.210362 7.203611 3.024729 2.296528 0.098857 6.378944 -1.765388 3.219828 -1.504269 2.481512 -2.412815 -4.610100 1.616533 -0.847493 -1.250349 -1.171319 1.933584 7.682189 4.142809 2.338893 7.230569 1.516357 5.242835 -1.652183 1.774942 0.197187 4.347699 -1.830919 -2.436297 2.767509 1.939520 -3.425495 2.962007 -6.682047 -10.189865 -2.465804 -8.541089 -1.002363 -5.732367 2.330768 -1.121080 0.452694 -5.461189 -1.925402 -0.137554 -0.351819 4.462628 3.129814 0.085793 3.691635 6.897016 -4.583575 0.280359 3.775088 5.176063 -1.159972 -1.487511 -5.876693 3.303631 -5.395596 1.406099 6.550719 -2.827599 0.694011 -4.522400 6.655689 -6.693529 5.782239 1.773858 -2.772407 4.992396 2.280655 5.144938 6.143545 -2.112574 -PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -3.313202 -6.310036 9.839142 5.719158 -0.601931 2.208905 3.379459 -0.200268 0.105978 0.730703 -2.741610 6.016644 -5.737898 -1.608236 -0.996287 -1.546388 -5.837251 -5.657104 -0.429559 -1.245666 -2.224440 -2.699034 -3.066230 8.786213 4.267684 1.070475 -3.568378 -0.558294 -9.578246 -3.070473 -2.924349 0.233549 3.733565 -0.503718 4.883660 -9.058221 2.582299 6.388162 0.474226 -6.349091 2.861291 -2.685563 -0.041557 -0.821453 -3.234312 1.829426 5.691985 2.658605 1.059500 0.793200 -1.438811 -2.660195 1.381855 8.863901 2.756725 4.869258 7.510706 -2.335918 1.687667 -1.953213 0.184691 -6.228010 1.544985 0.020931 -3.364388 -1.394044 1.876037 -1.959731 -1.401925 2.459007 4.107142 -2.898231 -2.490757 -4.203349 -7.592113 -1.927354 7.015624 3.775981 7.827443 -4.820382 7.356723 2.970845 4.618911 1.263564 3.878084 0.074747 4.536261 0.900260 -2.399290 -0.316003 -8.552073 -1.374117 -2.420311 4.151091 -2.759703 -2.706777 3.359137 -10.333695 -8.354685 2.997851 -0.865408 -4.266004 -1.888744 1.482393 2.333654 2.557017 -0.984704 -4.674801 -3.502110 3.162961 -3.885903 -0.349964 0.930347 1.137813 -0.463027 -1.179130 -6.764876 3.406844 4.160655 -2.347053 -1.538331 6.373369 -2.687547 7.094853 1.233261 2.386615 -0.045610 4.013750 5.210881 -1.316109 -1.244389 -4.389229 -3.290425 -2.040018 -0.127476 2.636141 -5.078018 -1.892195 2.088623 2.369927 1.008318 2.127077 -1.871414 7.953644 0.074510 -4.330966 -5.322414 -6.493449 -5.605096 -4.092088 -0.263286 -1.686933 -5.376428 2.087090 2.883251 2.627716 -1.341129 6.272659 0.104422 3.428723 1.852785 -2.779065 -0.372731 -3.603543 3.316304 -4.488146 -3.318783 3.074132 2.382981 4.655394 -0.143268 -0.650107 1.426686 -4.080301 -4.927038 1.083854 1.783555 2.719860 6.708896 5.910845 7.649176 -4.541188 -1.415686 -0.066133 -1.698031 -2.075091 1.108919 -4.797165 1.906354 1.120570 -0.979616 8.659284 0.712895 -3.407541 5.121636 0.465812 1.193677 -5.340993 3.519763 -2.981174 1.336370 -2.559089 -1.482452 -4.512413 -1.437414 -5.882830 -4.802990 8.331553 -6.513072 -8.752382 2.197411 2.124958 6.629395 -10.346963 5.248163 -2.236635 8.239854 0.367266 -2.005664 0.732642 -1.289496 -0.950665 3.260902 1.057836 -3.092132 2.205486 2.785623 1.493936 2.398309 1.416894 3.348322 -0.773928 2.294803 -2.717828 1.167454 -1.017814 -3.692045 -1.323398 -0.462317 1.013796 4.058865 0.328353 -0.582622 3.484565 0.958250 2.248774 5.899004 1.212142 -2.320818 -1.262236 -1.327312 6.645270 -4.877281 -3.962749 -2.251692 3.690992 1.651833 1.570865 -8.835455 -6.673697 -5.823931 -9.651884 -2.118058 -1.026199 1.393403 2.324605 -1.621416 -6.782887 -4.112879 4.941556 0.978852 8.717467 4.538682 1.261477 7.136552 3.659009 -0.091002 -2.184746 2.807935 3.009294 -1.861454 -0.141583 -5.465591 2.077253 -5.817085 4.769004 6.919938 -3.109341 4.533169 -1.314501 2.528726 -8.030379 8.452157 3.147071 -9.770792 0.603052 4.605253 4.046475 -3.797670 -4.524082 -PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -0.987201 -2.412331 3.490967 2.649482 0.430175 0.976540 1.478960 -0.492918 0.871270 1.846089 -1.040405 1.844821 -2.328831 -0.213548 0.552602 0.624626 -1.945953 -2.270061 0.259636 -0.512031 -0.980646 -1.513692 -0.740386 2.196563 1.622235 0.045060 -1.238874 -0.364149 -3.289283 -2.050647 -0.786837 -0.432688 1.486550 0.696408 1.475753 -3.108535 1.489212 2.174906 0.072002 -2.338112 0.614973 -1.282611 0.221526 -0.133357 0.193011 1.233948 2.060159 1.113535 1.042324 0.783005 0.587251 -1.431264 0.585967 2.698236 0.183197 1.925315 2.070831 -1.059776 0.457241 -0.291275 0.361536 -2.020378 1.269454 0.901694 -1.338309 -0.780049 0.434266 -0.740858 -1.151398 1.230020 1.574068 -0.848267 -1.590799 -1.231885 -1.286268 -0.846352 -0.054816 1.215773 3.410058 -1.408477 3.190450 1.477417 2.073882 -0.059831 1.772430 -0.133883 2.379140 0.335850 -1.707961 -0.185058 -2.746660 -1.247085 -0.647840 2.071788 -0.678443 0.255931 0.747496 -1.954983 -3.141070 1.220841 -0.322135 -0.799378 -1.626626 1.110709 1.301855 0.946693 -0.304106 -2.314257 -1.335513 0.620511 -1.775378 -0.621885 -0.187673 -0.544641 -0.887272 -0.168216 -2.589219 0.207185 1.226138 -1.490446 -1.188772 2.312024 -0.851156 2.171858 0.257892 0.585222 0.154777 1.433798 1.609824 0.431984 0.617669 -1.717761 -3.199876 -0.034673 0.611629 0.881072 -1.307598 -0.356170 0.492349 0.824692 -0.290748 1.134807 -0.393636 3.566548 1.357542 -1.621597 -2.116868 -2.074333 -0.818766 -1.222669 0.821090 -1.200408 -0.903816 -0.504490 1.613383 0.607184 0.119584 2.575139 -0.981095 1.876964 0.161067 -0.211016 0.535638 -0.424778 1.465370 -1.780497 -1.025110 1.237173 1.825952 0.752469 0.181812 -0.696933 0.692843 -1.756273 -1.821425 0.800868 0.055956 0.467431 2.455285 1.608176 4.545551 -2.024033 0.100420 0.465967 0.043519 -0.594413 0.597635 -2.169617 1.373538 0.158099 -0.065611 2.808013 0.177887 -1.709799 1.225456 0.069523 0.380352 -2.047950 1.372144 -1.197214 0.522440 -0.816209 -0.109071 -1.609778 -1.096619 -1.224510 -0.165670 3.086785 -0.690424 -3.105474 1.065947 -0.527398 1.738660 -3.812222 2.916478 -1.332468 1.417485 -1.150498 -1.147312 -0.020338 0.685940 -0.242229 1.097771 0.869403 -0.860301 1.248385 1.595532 0.708492 0.955305 0.682432 1.292021 0.178127 0.474801 -0.564828 0.999696 -0.111610 -0.266370 -0.808549 -0.640741 0.761563 1.435292 -0.569139 0.340887 1.898963 -0.437508 0.891949 1.754486 0.546956 -1.103480 0.240367 -0.269498 2.637459 -1.678812 -1.224190 -0.709384 0.385444 0.051626 0.965446 -3.190767 -2.033028 -0.306656 -2.958860 -1.304101 0.937784 0.946715 0.978469 -0.117023 -2.653508 -1.218544 1.870646 0.222109 2.559156 1.162295 0.485106 2.275216 1.358499 0.188407 -1.371706 -0.136562 0.450936 -0.887001 -0.358781 -1.395381 1.020120 -2.408032 2.041352 2.015542 -1.234120 0.873735 -0.755893 2.078610 -2.712000 3.047551 1.308166 -2.589405 0.712157 1.842530 2.546185 -1.823676 -1.707482 -PE-benchmarks/euler-circuit-directed-graph.cpp__main = 0.185985 -0.129597 2.804242 0.917709 -0.293242 -0.840885 1.498609 0.225257 0.851475 -0.397707 -0.706761 -1.224583 -1.519699 -0.209660 0.462442 0.266129 -2.784297 -1.756111 -0.221892 0.022172 -1.126993 -1.267277 1.858099 -0.081321 1.462595 2.612853 -1.420035 -0.852447 0.908374 -0.894771 2.036989 -0.778861 0.989536 3.354587 -0.109383 -3.757909 2.045729 -0.584956 -0.358368 1.069387 1.139147 0.558477 0.138430 -1.235385 -0.534731 1.026946 1.600432 3.532018 1.519112 0.972310 -0.093987 -2.606487 0.050778 1.952588 -0.314553 -0.180908 0.961688 -0.173677 0.024251 -0.269977 -0.194036 -1.463057 -0.247049 1.364152 -0.481062 0.770879 1.645329 -2.798603 -1.484263 2.158256 0.109995 0.658015 -1.129190 -0.617983 -0.202639 0.559557 0.440638 1.988868 1.995631 -1.849611 1.011334 0.406050 1.651889 0.259670 -2.769220 0.331638 -0.821710 0.016608 -0.494366 -1.320813 -3.132318 -1.962382 -1.183524 -1.690938 0.270843 -2.008824 0.335155 -1.598672 -1.032240 -0.526046 0.003912 -0.321806 -0.185032 0.941294 1.293960 -0.414015 0.949040 -0.523054 -0.347437 -0.615990 -1.895707 2.066485 0.348595 0.715445 -1.310564 -0.229602 -2.512913 1.121733 -1.094312 -0.858975 0.872552 1.056003 -1.452943 1.032949 1.156864 0.722732 -0.546390 2.247373 1.878325 -0.202276 1.444099 0.212775 0.916933 -0.495917 1.235645 2.738057 -0.379925 -1.700166 -0.591240 -0.002538 -2.000833 -1.336520 -0.049927 -0.138800 1.070921 -2.611811 -2.741295 -0.446962 -1.895419 -2.961540 0.976299 -0.940210 0.239019 1.574702 0.574967 1.920826 0.855476 2.612783 -2.591905 0.691350 -0.573769 -0.664284 -1.182969 1.549254 1.127652 -0.848043 -0.110883 0.377708 -0.148043 0.238479 -0.315500 -1.640226 0.672857 -2.576013 -0.868952 0.494433 -0.393505 0.097503 -1.465289 1.062812 0.237767 -1.313365 -0.388386 2.096353 0.285545 -1.437892 2.403168 -1.127006 1.881566 -0.565159 -0.362091 0.343008 0.654856 -0.590939 1.453758 -0.659136 -0.523346 -1.016574 -1.037630 0.343233 0.051808 -1.281633 0.596692 -1.327929 0.204132 0.434434 -1.182372 1.134474 0.405455 -1.149270 0.989042 0.171767 1.486319 -0.891370 2.122535 -0.512791 0.844490 0.524126 -1.193164 -0.067862 -2.174755 0.993552 -0.297084 -1.234704 1.373095 0.365571 1.642007 1.025560 0.670174 0.413735 1.333050 0.603124 1.898951 0.593343 -1.187274 -1.101671 -1.300308 0.501371 0.187522 -0.570958 0.202152 -0.363292 2.061907 1.622625 0.931507 3.083657 0.323137 1.662952 -0.681392 -1.331567 0.289736 2.064505 -1.060686 -1.212991 0.698963 0.988817 -1.640929 0.519448 -1.560698 -3.069539 -1.451902 -3.314983 -1.816856 -1.489610 0.744499 -1.050065 -0.108930 -0.445230 0.044676 0.196943 0.479310 1.560665 1.051356 -1.042456 1.757543 2.168107 -2.373036 -1.449772 2.669178 1.336921 -0.074042 1.173647 -3.639085 1.493267 -0.862825 0.008732 2.167726 -2.496760 0.055520 -1.792635 2.354256 -2.012984 2.422205 0.166937 -1.340810 0.858204 -1.081104 1.045521 1.872777 -0.685527 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -2.059574 -7.904444 14.135811 9.861403 -0.929662 2.764873 4.074579 -2.719055 3.495894 4.239388 -4.096471 6.852344 -7.932460 -0.592826 2.134058 2.528082 -9.969967 -7.400183 0.602152 -1.979447 -3.672990 -5.504215 -1.219377 8.474066 6.366737 4.919123 -4.506429 -0.579872 -9.055895 -9.056574 -1.793289 -1.552051 5.719430 5.352029 6.479422 -12.859399 6.132808 6.864574 0.072474 -9.533591 3.048989 -3.567634 0.292233 -1.381740 -0.519960 5.130073 7.217854 6.436895 4.044436 3.415253 -0.865513 -4.949856 3.544029 8.547635 1.678645 5.996109 7.787136 -4.378011 1.600950 -2.008088 1.194681 -7.114725 3.834423 3.351014 -4.340320 -3.505850 1.785167 -3.600945 -4.872178 5.726104 4.928764 -3.453770 -6.637166 -5.468931 -5.116645 -1.666018 -0.538124 7.387458 12.181895 -5.906417 10.273517 4.324984 6.380250 -0.787985 4.960434 -0.578492 8.162580 1.697742 -5.173173 -1.656720 -9.972189 -7.179444 -1.836296 3.720477 -2.203164 -1.151987 2.868105 -10.365396 -10.895059 3.908445 0.011175 -3.891341 -5.416098 3.022897 5.555744 4.102106 -0.066567 -7.439915 -3.503346 2.504033 -6.446212 -1.294951 -1.149153 0.756885 -3.520503 0.489387 -10.111392 1.934335 4.193869 -4.430247 -1.909481 7.799689 -2.118665 7.392250 1.246217 2.600369 0.554296 6.769210 6.059202 1.373575 3.369040 -4.628040 -5.792232 2.538911 2.350723 1.932491 -5.031295 -2.067622 1.311287 3.149148 -2.024097 2.176880 -2.857518 11.539302 5.127843 -6.010961 -8.915880 -7.289813 -5.502787 -6.236855 2.621825 -4.660894 -3.342653 1.721258 5.317567 2.741876 0.688180 7.682537 -5.731939 5.173691 0.865694 -0.237821 1.515773 1.090847 5.303417 -6.453637 -3.429497 4.611723 4.900602 3.045037 -0.147046 -2.664903 2.759271 -6.487555 -6.950379 5.094883 1.728662 3.146385 7.731911 6.444369 14.275955 -5.471955 -1.450059 2.441561 -0.492098 -3.363793 2.685722 -8.017575 5.796551 0.120749 2.401836 10.407645 0.261636 -4.682789 4.992575 0.884746 1.045725 -6.820459 3.720079 -4.624246 1.806015 -3.019188 -0.842655 -5.675433 -3.539635 -5.272406 -1.811067 11.539419 -3.999603 -11.178141 5.771830 -4.850327 8.214443 -13.650393 9.010236 -4.482735 5.008564 -2.520561 -3.697330 -0.449041 -2.569864 -1.594347 2.812764 2.504786 -1.516042 3.409082 6.110476 2.715660 2.303855 2.286377 4.808478 0.113299 3.755900 -2.001529 3.504347 -1.668445 -0.056892 -2.581567 -1.609611 1.444934 3.921323 -1.918584 2.962943 5.707493 0.455984 5.207304 5.556571 2.938401 -4.339238 1.525044 -1.371014 8.671029 -6.419867 -5.259539 -1.495886 2.778109 -0.537180 3.892284 -11.803086 -9.511815 -4.701980 -11.622085 -6.004492 0.123180 4.814199 1.874636 -1.278602 -8.316240 -4.883644 7.118498 1.930251 9.091573 4.872430 0.797641 8.717949 6.106980 -0.347674 -4.295811 0.316400 2.143797 -2.810635 -0.858673 -6.696189 3.959545 -7.811440 6.261408 9.577162 -5.165284 3.708752 -5.284718 7.673851 -10.325050 10.739012 4.556242 -10.060752 2.105305 5.253477 6.646232 -4.594197 -6.551462 -PE-benchmarks/cutting-a-rod.cpp__main = 0.129268 -0.668901 1.412706 0.942469 -0.429143 0.046123 0.409148 -0.187180 0.322608 -0.571331 -0.507841 0.492105 -0.735548 0.202018 -0.588567 0.209422 -1.283591 -0.678596 -0.042759 -0.181388 -0.069260 -0.233398 0.324070 0.461658 0.688005 0.935192 -0.377631 -0.417044 -0.862305 0.087356 0.574167 -0.250665 0.523480 0.689551 0.100153 -1.563324 0.429039 0.583440 -0.303008 -0.951784 0.606308 -0.573173 -0.047301 -0.847130 -0.302354 0.100253 0.363486 0.954776 0.241098 0.194449 -0.627988 0.004428 0.215321 1.300764 -0.182844 0.387911 0.840142 -0.041669 -0.037115 -0.272595 0.250319 -0.198924 0.186561 0.209595 -0.209555 -0.643606 -0.355354 -0.870228 -0.411751 0.400357 0.124113 0.375625 -0.652672 -0.173348 -0.841304 -0.025033 -0.632151 1.022779 1.055936 -1.004256 0.718944 0.066626 0.361639 -0.022251 0.042770 0.372268 0.058446 0.337096 0.024197 -0.185392 -1.022793 -0.210175 0.094700 -0.561062 -0.308359 -1.459354 0.610010 -1.139268 -0.773736 0.134403 0.287248 -0.468367 0.405868 0.167174 0.033187 0.665994 -0.462973 -0.419845 0.068472 0.040006 0.115076 -0.081528 0.157217 0.516887 -0.205641 -0.666390 -1.043319 0.421964 0.140002 -0.287921 0.468998 0.589117 -0.210943 0.289785 -0.025817 0.135375 -0.303030 1.140207 0.301352 -0.020238 0.189757 0.065385 0.140581 0.256104 0.577545 1.131339 -0.706764 -0.077058 -0.094105 0.230244 -0.166762 -0.603558 -0.010664 0.280880 0.075852 -0.762762 -0.679146 -0.712377 -0.571230 -0.919489 -0.062726 -0.430921 -0.179897 0.828608 0.565900 0.635257 0.462508 1.099684 -0.560413 0.185063 0.079261 -0.203831 0.300004 0.454695 0.452621 -0.387025 -0.463023 0.394222 -0.130371 0.490470 -0.006956 0.122192 0.218133 -0.819356 -0.213207 0.469374 0.634325 -0.129733 0.687239 0.649309 -0.528577 -0.439446 -0.138847 0.369704 -0.345491 -0.234136 0.314505 -0.809003 0.596397 0.082159 0.026296 0.500076 0.080451 -0.287497 0.532624 -0.191036 0.065344 -0.414863 -0.052250 -0.380533 -0.327796 -0.663965 0.520842 -0.253599 -0.365366 -0.525310 -0.572437 1.008913 -0.922005 -0.373216 0.284710 0.137849 0.664304 -0.994794 0.644045 -0.493237 0.966071 0.295742 -0.155881 0.198398 -0.561334 -0.560164 -0.200207 0.307313 -0.124840 0.058109 0.575733 0.505414 -0.126832 0.152260 0.733733 -0.231363 0.672302 -0.254985 0.218829 -0.268706 -0.574351 0.306623 -0.102294 -0.136222 -0.085444 0.373941 1.263937 0.241041 0.928579 0.977461 0.356426 0.784694 -0.502019 -0.003736 -0.248669 0.824686 -0.399988 -0.338597 -0.106878 0.640224 -0.078927 0.361596 -1.014882 -1.621771 -1.169852 -0.917267 0.021726 -0.848478 0.257023 -0.236533 -0.050531 -0.924687 -0.616472 -0.022458 -0.297640 0.752565 0.656759 0.019769 0.726289 0.548666 -0.638920 -0.150216 0.682913 0.864562 0.122533 0.186878 -1.020357 0.508996 -0.728677 0.007754 1.345599 -0.543943 0.321918 -0.250563 1.107213 -0.617995 1.273562 0.369054 -1.174334 0.439250 0.704748 0.428136 0.568370 -0.556705 -PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -1.699349 -4.082206 6.017097 4.381354 0.155276 1.627699 2.564530 -0.795295 1.068373 2.444579 -1.292867 3.515961 -3.888177 -0.516244 -0.046249 0.933411 -3.381587 -3.369679 0.112592 -0.973783 -1.391669 -2.096852 -1.112086 4.132053 2.921662 0.154697 -2.067344 -0.990893 -5.504384 -3.347965 -1.532248 -0.383065 2.567460 -0.449232 2.197102 -6.302610 2.461871 4.276269 -0.081591 -4.380675 1.677973 -2.049413 0.405475 -0.361497 -1.243046 1.381018 3.057051 1.670694 1.340037 1.297925 0.333319 -1.231804 1.968322 5.865971 0.725861 3.337036 3.754923 -1.339899 0.507741 -0.791137 0.558354 -3.048189 1.784693 0.474224 -1.682751 -1.500953 0.108308 -1.017012 -1.838571 1.509953 2.050023 -1.768051 -2.510685 -1.898850 -3.216178 -1.359459 0.475996 2.314019 5.099268 -3.011963 4.991297 1.931391 2.342267 0.379209 2.642755 0.071334 2.918894 0.713476 -1.820709 -0.414028 -3.903812 -1.218368 -0.602260 2.185960 -1.806038 -2.260410 1.972992 -3.759317 -5.336096 2.138281 -0.222032 -2.249604 -1.848304 0.549622 1.536265 2.094403 -1.270129 -3.618597 -2.217422 1.628875 -1.898780 -1.165741 0.102424 -0.329403 -0.802477 -0.706183 -4.231401 1.169359 2.303069 -1.983536 -1.564081 3.876587 -1.082366 3.684598 0.344196 1.249802 -0.018986 2.765445 2.555149 0.566270 0.027183 -1.988731 -3.501926 -0.247755 0.900524 1.163759 -2.396369 -0.501258 0.571126 1.605608 0.231583 1.966041 -0.586358 5.267433 1.537031 -2.220065 -3.080106 -3.578217 -2.202629 -2.392070 0.811933 -1.543017 -1.952596 0.864889 2.556247 0.636087 0.017593 3.811788 -1.250606 2.327644 0.644517 -1.014574 0.882020 -0.979916 2.234294 -2.771507 -2.172682 2.115075 2.636681 2.343477 -0.249313 -0.083919 1.058712 -2.282198 -2.441327 0.682247 0.760238 0.578962 4.243467 3.068895 6.724374 -2.665684 -0.425400 0.433905 -0.849206 -0.639021 0.407568 -3.680537 1.570670 0.592100 -0.620262 5.010848 0.173929 -2.526200 2.862085 -0.153763 0.578762 -3.369722 2.437341 -2.228039 0.215953 -1.424599 -0.676112 -2.344439 -1.587655 -3.115031 -1.463048 5.331172 -3.038057 -4.502899 1.521991 -0.250119 2.706107 -6.197807 5.477709 -1.974363 2.974452 -0.906498 -1.738168 0.355052 0.767029 -0.880524 1.269154 1.378590 -1.739988 1.672967 2.899719 1.154510 0.983531 0.737069 2.260431 -0.202799 1.395317 -1.550595 1.864456 -0.559066 -1.176458 -1.001254 -0.871477 0.921979 1.934704 -0.353906 0.903246 2.351848 -0.115805 1.333340 3.082162 1.383860 -1.776250 0.627346 -0.648825 4.128822 -2.718751 -1.917487 -1.160875 1.571011 0.645362 1.844672 -5.468183 -3.661323 -2.227294 -4.759464 -1.224219 0.781349 1.453388 0.954026 -0.598345 -4.635680 -2.805338 3.562313 -0.014107 3.592426 2.603587 0.974696 4.055220 2.200036 0.340508 -1.350675 0.301273 1.037522 -0.860609 -0.709461 -2.104880 1.582857 -4.006959 2.984388 3.690436 -1.737737 2.118158 -1.290056 2.331966 -4.466504 5.097121 1.870897 -4.527439 1.109393 3.551239 3.480553 -3.126017 -2.824699 -PE-benchmarks/min-cost-path.cpp__main = 0.261511 -0.408875 1.107647 0.734184 -0.386611 -0.064032 0.173326 -0.146620 0.261002 -0.530785 -0.423044 0.338753 -0.446587 0.219764 -0.396976 0.261153 -1.072789 -0.470807 -0.038928 -0.122884 -0.059967 -0.100261 0.339441 0.219900 0.543732 0.873207 -0.297199 -0.243894 -0.435298 0.074573 0.485694 -0.251613 0.360208 0.696343 0.114098 -0.987864 0.371504 0.297794 -0.252619 -0.642446 0.423849 -0.331466 -0.037381 -0.761319 -0.177949 0.126290 0.265443 0.779028 0.210822 0.205344 -0.538824 -0.014689 0.175447 0.783960 -0.136659 0.176950 0.579279 -0.069514 -0.001110 -0.277416 0.227199 -0.108053 0.064279 0.169284 -0.069930 -0.568870 -0.329051 -0.726978 -0.242548 0.325956 0.082462 0.392364 -0.537328 -0.145217 -0.536104 0.040231 -0.681424 0.823531 0.761289 -0.745978 0.401521 0.052854 0.274895 -0.012915 -0.088452 0.323323 -0.021722 0.301032 0.059290 -0.073574 -0.648009 -0.247328 0.134757 -0.554303 -0.182751 -1.090979 0.416091 -0.862169 -0.458140 0.080855 0.316413 -0.287107 0.429359 0.135621 0.010719 0.474303 -0.290586 -0.183331 0.233695 -0.132867 0.161487 -0.004962 0.085444 0.452483 -0.173808 -0.392517 -0.806693 0.330090 0.007021 -0.156455 0.530565 0.329525 -0.096849 0.084281 -0.067850 0.075423 -0.264141 0.909408 0.236115 0.045936 0.106786 0.137470 0.262479 0.327044 0.513237 0.773260 -0.504847 -0.070854 -0.138254 0.138553 -0.203248 -0.552549 0.006158 0.113678 0.049978 -0.592618 -0.583456 -0.498224 -0.557754 -0.694576 -0.018109 -0.334686 -0.106590 0.669101 0.392731 0.508297 0.442202 0.759847 -0.459855 0.055415 -0.011454 -0.081815 0.249119 0.439593 0.327081 -0.238390 -0.222877 0.319543 -0.177013 0.300868 0.076575 0.015245 0.241708 -0.652185 -0.042133 0.469840 0.489080 -0.130056 0.407089 0.415849 -0.630763 -0.118366 -0.165872 0.374480 -0.179295 -0.249496 0.338705 -0.529159 0.495315 -0.010503 0.126943 0.225439 0.081155 -0.133075 0.352242 -0.147908 0.027064 -0.207791 -0.143422 -0.188684 -0.196738 -0.477418 0.562402 -0.195884 -0.206346 -0.285374 -0.393767 0.702046 -0.667052 -0.141241 0.203229 0.072906 0.519672 -0.541258 0.352770 -0.370702 0.743114 0.298633 -0.103180 0.169316 -0.647010 -0.466218 -0.210705 0.219646 0.063582 -0.110999 0.303183 0.414755 -0.187938 0.096258 0.539860 -0.203755 0.637080 -0.064886 0.108232 -0.219074 -0.345377 0.247529 -0.017938 -0.230651 -0.161955 0.275277 0.963172 0.056365 0.820218 0.803703 0.082364 0.657204 -0.425818 -0.022262 -0.168002 0.569694 -0.305140 -0.261027 0.012167 0.514116 -0.139629 0.233803 -0.677943 -1.205587 -0.938212 -0.541238 -0.085997 -0.670043 0.188157 -0.266520 -0.065769 -0.470815 -0.426093 0.010954 -0.182977 0.470779 0.462498 -0.089354 0.486375 0.378974 -0.528392 -0.171365 0.488242 0.651390 0.207037 0.246770 -0.865841 0.440634 -0.505215 -0.175971 1.095098 -0.497992 0.168725 -0.209959 0.893038 -0.392973 0.891657 0.232355 -0.867879 0.324337 0.495297 0.254759 0.575534 -0.403333 -PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -1.116755 -1.826051 2.825197 1.813900 0.576041 0.499380 1.212504 0.207834 0.566190 1.595315 -0.998442 1.980999 -1.680402 -0.232412 0.357646 0.495689 -1.396678 -2.015554 0.434423 0.133059 -0.742175 -1.228243 -0.510154 1.672693 1.550620 0.481073 -1.404958 -0.295944 -2.664326 -2.923082 -1.318762 -0.243548 1.201049 -0.203103 1.301663 -2.497202 0.951395 1.751538 0.309459 -2.344519 0.820727 -0.708086 0.265590 0.134519 0.409211 1.535842 2.324393 0.698694 0.797666 0.876290 -0.023056 -1.273487 0.235749 1.493598 0.569886 1.279011 1.808976 -0.984435 0.141532 -0.535686 0.234513 -2.233711 0.779894 0.672835 -1.264434 -0.272537 0.629557 -0.281644 -0.946297 1.113817 1.024795 -0.891017 -1.267547 -1.178225 -1.391217 -0.249600 1.589943 1.046521 2.628760 -0.759135 2.438584 0.787512 1.807451 -0.146486 0.865624 -0.391549 1.338351 0.237436 -1.312347 -0.804813 -2.062695 -1.503020 -1.168885 2.355948 -0.188381 1.004308 0.684850 -2.083413 -2.296769 0.618765 -0.437341 -0.657724 -1.969932 1.187067 1.418115 1.431941 0.439760 -1.607240 -1.330009 0.319225 -1.581977 -0.257134 0.185384 -0.486787 -1.119697 0.318588 -1.970479 0.160582 1.088198 -1.211076 -1.091823 1.491492 -0.928642 2.217023 0.342642 0.801697 0.464812 1.057820 1.814828 0.246793 0.791259 -1.356129 -2.548176 -0.392649 0.212227 0.791939 -1.430384 -0.210574 0.200350 0.475443 -0.296929 0.332553 -1.117794 2.892179 1.985128 -1.468467 -2.096729 -1.699314 -0.627166 -0.718760 0.419753 -0.753399 -0.328910 -0.179305 0.950728 0.019653 -0.234108 2.818790 -1.224581 1.175644 0.513165 -0.525982 0.141370 -0.459351 1.021116 -1.447579 -0.706927 0.995916 1.583694 0.645373 -0.138548 -0.445569 0.718459 -1.327292 -1.813567 1.279760 0.300023 1.055199 1.478772 1.144845 2.974249 -1.641055 -0.630649 0.232279 0.013283 -0.853714 0.543486 -1.747097 1.333280 -0.029688 0.811860 2.291172 0.254809 -1.396375 1.558968 0.247535 0.222641 -1.461918 1.125177 -1.150840 0.846092 -0.273583 -0.987697 -1.201422 -0.429234 -1.069747 -0.326616 2.384193 0.305258 -3.396251 0.634740 -0.926649 1.856010 -3.723102 1.434125 -0.783676 0.948478 -0.708907 -0.132550 -0.057632 0.032490 0.187760 0.607909 0.473562 -0.370790 1.076181 1.358983 0.352220 0.442546 0.529206 0.811184 0.412600 0.454860 0.040404 0.124596 -0.333672 0.008391 -0.662859 -0.096007 0.614271 1.465887 -0.777985 -0.023128 1.315471 -0.544112 1.142596 1.632549 0.483881 -0.827501 0.176986 -0.304660 2.621610 -1.283877 -1.285742 -0.736119 0.780866 0.014181 0.770166 -2.394632 -1.899130 -0.165573 -3.922323 -1.131840 0.302874 0.895010 0.462441 -0.389119 -1.800917 -0.829530 1.472885 0.941884 3.289312 0.749676 -0.063947 1.745713 0.810367 -0.357181 -0.999425 -0.221485 0.226177 -0.803385 -0.631416 -0.908127 0.275726 -1.963407 1.430842 1.687760 -1.290109 0.742295 -0.813276 1.243531 -2.377352 2.479740 1.082086 -2.176341 0.341633 0.575045 2.222244 -1.812537 -1.422663 -PE-benchmarks/edit-distance.cpp__main = 0.553686 -1.941992 9.085380 3.760897 -2.052100 0.098588 5.413135 -3.874446 4.832297 -1.739027 -2.031389 -1.243521 -6.105052 -0.237791 -2.648782 0.155465 -8.342429 -4.048350 -0.860623 -3.806712 -1.768033 -4.283095 4.903307 0.819646 4.888067 3.769831 -1.404719 -3.062615 -4.052377 -0.661289 6.394897 -1.449538 2.293375 4.421833 0.516452 -10.219133 4.103998 1.309741 -2.163111 -3.031690 3.922691 -1.375435 -0.486956 -1.530481 0.658560 0.479653 1.877232 8.897193 4.946082 1.631150 -0.232242 -3.522792 -0.867196 8.302096 -3.869928 2.049897 2.254665 -1.229599 -0.487886 2.666648 -0.313364 -2.077006 0.594317 3.785912 -1.488151 -2.122099 2.925965 -5.888310 -5.070160 5.919026 0.827509 -0.207123 -3.543248 -1.578465 -3.312243 0.019407 -3.454151 6.219136 7.638154 -4.524777 4.866279 -0.100934 2.386512 -2.142485 -1.289896 0.439955 2.210936 0.024076 -1.635173 -3.159442 -8.804267 -1.917093 -0.760108 -2.611303 0.619472 -7.311904 3.370446 -5.755610 -5.458182 -0.306246 2.280639 -2.461208 -1.103112 3.356986 1.928817 1.150127 -1.837176 -4.772305 -1.404950 0.918554 -3.980667 2.864682 1.080556 0.938572 -3.104070 -3.657556 -5.577402 1.243761 -1.637933 -2.235985 -0.961278 4.505495 -3.014297 1.999217 2.764952 2.910504 -1.325667 4.812314 1.312149 0.424979 3.709281 0.460689 -0.998574 0.334942 3.287955 7.536331 -0.699033 -0.668914 -1.649884 1.242953 -5.268356 -2.359356 -0.989455 2.193597 1.236707 -6.904778 -4.779743 -0.210506 -1.473229 -7.499901 1.301496 -2.961100 -2.386235 0.991009 3.009492 5.508766 2.454691 6.223689 -5.207546 2.136707 -0.253323 -1.894118 0.941195 2.794746 4.596139 -3.041875 -2.152882 -1.328450 -1.256607 1.848621 -1.315086 -1.374718 -0.375294 -7.659015 -2.484357 0.047604 2.509422 -1.045384 0.609699 5.321713 1.309762 -6.651025 -0.238507 5.290189 -0.731821 -2.835640 3.552375 -5.641633 4.348205 0.522876 0.472565 3.325539 0.829690 -1.531892 2.500527 -1.814869 0.960168 -3.371451 -2.919731 -2.305417 -1.411570 -4.101301 2.271476 -2.799943 -2.716112 -1.816198 -2.719338 4.969947 -2.157617 -4.181727 6.463548 -1.343992 4.465697 -6.198516 6.578626 -2.313324 2.608193 -0.661346 -0.397671 -1.033534 -0.869573 -2.085648 0.894509 -1.346078 0.305392 4.164749 7.010011 3.079248 2.452456 0.132571 6.287925 -1.868669 3.353935 -1.809804 2.195279 -2.420126 -4.825297 1.526670 -0.800551 -1.082797 -0.864141 1.845349 7.723674 4.289884 2.813670 7.155351 1.854571 5.058577 -1.695102 1.334634 0.026683 4.476489 -2.126120 -2.808594 2.600680 2.123870 -3.129396 2.739908 -7.090014 -10.482147 -2.961298 -8.656581 -1.092892 -6.442368 2.080212 -0.840756 0.203440 -5.795937 -2.240941 -0.732378 -0.235927 4.482442 3.190496 -0.032867 4.141662 7.018089 -4.675987 0.373965 4.430342 5.361711 -1.281362 -1.325139 -6.573300 3.567518 -5.175687 1.618531 7.107132 -3.057110 1.223106 -4.252279 6.477363 -7.139202 6.183652 1.874504 -3.683288 4.525677 2.184844 5.108918 6.024235 -2.403914 -PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = -0.967179 -4.750559 11.219072 4.021666 -1.927480 1.007881 8.457711 -1.945279 4.196062 -1.351055 -3.261532 -0.478449 -8.611679 -3.923125 0.589438 -3.356576 -10.317067 -6.278358 0.575971 -1.886270 -2.086122 -6.826043 2.178253 5.697003 5.422368 5.373112 -1.378427 -1.894255 -6.454044 -1.357969 4.973076 -0.907406 3.338994 8.115688 4.668582 -12.353871 4.315432 2.667327 -0.232279 -4.726122 2.728168 -0.096039 -0.020489 -1.484907 0.394176 2.897292 6.364719 12.150301 4.382488 1.504946 -2.806859 -9.724459 -1.811450 7.272480 0.301833 3.124317 5.799136 -2.912431 2.254276 1.614418 -0.340339 -7.368265 0.637667 4.836284 -3.769486 1.474087 6.425960 -7.356931 -5.665918 7.223057 4.477417 -1.017876 -4.155676 -3.829181 -6.140624 -0.139029 1.287259 7.115406 10.733820 -5.211665 9.311505 2.332209 6.842096 -1.738496 -0.167755 -0.152998 3.850856 -0.228599 -4.762067 -1.662551 -15.351105 -6.492095 -3.300968 -1.354477 1.199417 -5.326392 2.747809 -9.854851 -7.904678 1.017272 -0.092816 -3.096881 -3.169592 5.325654 4.418815 1.471943 -0.785960 -6.335218 -3.660641 1.568593 -10.122535 5.026725 2.569299 4.711370 -4.396193 -3.862239 -6.856256 1.375420 1.005312 -3.719527 -0.041634 7.114141 -5.359656 7.499213 3.946977 1.665922 0.085381 5.294120 5.929590 -2.340413 4.428562 -4.081981 -2.034159 -2.824005 1.967317 9.911595 -0.301714 -3.622533 1.913944 2.998440 -4.233714 -1.327712 -1.219836 4.864530 0.214144 -8.871018 -6.964254 -3.423538 -4.956252 -7.789036 2.043851 -2.536261 -3.075089 2.580215 3.769154 5.783518 -0.576753 7.326186 -5.866495 3.347482 -0.932820 -2.648315 -3.147972 3.221509 5.437722 -4.225662 -1.596150 -0.774966 -0.388521 4.695739 -0.889787 -4.862147 0.444637 -8.155202 -6.780265 -0.414635 1.804125 0.729109 0.710207 7.421331 2.169950 -8.163688 -2.268911 4.657753 1.370824 -5.072567 5.679946 -6.506977 6.621810 -0.711654 -0.106954 5.141886 0.875394 -2.341800 4.712529 -1.277135 0.229383 -5.557339 -3.184026 -2.652007 1.267396 -5.019758 2.503385 -6.118740 -3.487999 -4.155204 -3.543581 7.184559 -0.163146 -8.480615 6.320365 -0.706504 9.263737 -8.780052 6.081454 -1.610451 5.108614 -0.376216 -2.184774 -0.408099 -2.991457 1.222770 0.567295 -2.539613 -0.016650 4.632769 5.716437 3.024131 3.462344 1.821773 6.186104 -0.998448 1.541758 -2.408933 -0.834532 -3.437165 -4.972997 0.628895 -0.909371 1.595419 3.128629 0.115008 6.159157 6.432086 2.069677 9.057245 3.157448 2.019411 -1.882926 -2.965474 1.592829 8.420053 -4.317765 -4.475083 0.091528 3.621698 -3.186477 2.394862 -9.430597 -11.899903 -2.355820 -13.399714 -6.095309 -6.077143 2.906394 1.831052 0.221037 -6.603379 -1.677749 1.168922 1.869450 7.452077 3.882504 -0.910725 7.386035 7.822628 -4.472399 -2.052140 7.973171 6.747125 -4.300581 -0.311144 -9.119394 2.980165 -8.599846 4.976131 8.676124 -4.917464 2.089525 -7.872986 10.170501 -11.788121 8.131273 3.444713 -8.517717 1.726673 2.451745 6.239914 4.714388 -3.810364 -PE-benchmarks/edit-distance.cpp__min(int, int, int) = 0.101798 -0.411479 1.042695 0.795699 -0.154477 -0.012605 0.605215 -0.270219 0.397033 -0.151965 -0.132390 0.174627 -0.860637 0.281510 -0.271233 0.347379 -0.882547 -0.570171 -0.168180 -0.281871 -0.116007 -0.366001 0.623815 0.147933 0.706840 0.366020 -0.344602 -0.592416 -0.782146 0.155076 0.578097 -0.175382 0.502649 0.544097 -0.085616 -1.217178 0.360419 0.408375 -0.258464 -0.562515 0.597669 -0.527450 0.159521 -0.600063 -0.009662 0.076310 0.175930 0.617646 0.555221 0.183179 -0.080387 -0.031626 0.069146 0.981663 -0.553373 0.266113 0.261492 -0.069246 -0.144322 -0.111209 0.056422 -0.062691 0.246706 0.202397 -0.237864 -0.568440 -0.256456 -0.716701 -0.565044 0.485757 0.058600 0.321568 -0.742410 -0.079917 -0.435952 -0.069219 -0.687488 0.811938 0.810753 -0.760866 0.491783 -0.040653 0.063084 -0.176930 -0.026286 0.203573 0.022925 0.079553 0.036308 -0.291098 -0.878674 -0.098433 -0.034375 -0.252247 -0.107040 -0.935611 0.396405 -0.300726 -0.673540 -0.048120 0.232123 -0.340814 -0.032547 0.296746 -0.048065 0.510893 -0.317336 -0.547758 -0.079886 0.012097 0.232426 -0.039732 0.055359 0.022013 -0.381423 -0.785384 -0.819809 0.184549 -0.194096 -0.324087 -0.014848 0.473840 -0.414517 0.154806 0.145614 0.251614 -0.283414 0.897477 0.122033 0.168380 0.480405 -0.061213 -0.308917 -0.008827 0.538143 1.286372 -0.381449 0.107341 -0.434847 0.047118 -0.447464 -0.401965 0.319438 0.353076 0.282665 -0.778267 -0.525713 -0.182962 -0.103154 -0.744121 0.143043 -0.362997 0.263303 0.381667 0.422722 0.469513 0.461857 1.149274 -0.524916 0.222242 0.101496 -0.313317 0.459628 0.517927 0.447338 -0.347674 -0.400572 0.190611 -0.077949 0.257427 -0.113864 0.301351 0.098475 -0.760547 -0.149000 0.072921 0.311965 -0.253757 0.486981 0.479407 -0.144183 -0.541661 0.104971 0.550237 -0.204547 -0.109935 0.274858 -0.682688 0.565935 0.023039 -0.270164 0.315388 0.032304 -0.377530 0.470025 -0.270384 0.176314 -0.423354 -0.094931 -0.333849 -0.276123 -0.697956 0.228682 -0.051379 -0.427478 -0.129405 -0.107782 0.756520 -0.176597 -0.289261 0.313572 0.005808 0.319334 -0.890023 1.048417 -0.387504 0.321189 -0.091386 -0.133590 0.082225 0.071446 -0.428415 -0.162331 0.167424 -0.070925 0.172359 0.789439 0.393325 -0.096652 0.016622 0.676436 0.045272 0.645444 -0.135240 0.415559 -0.155117 -0.355241 0.261105 -0.108331 -0.091839 -0.104305 0.150267 1.231070 0.416128 0.588366 0.812562 0.268567 0.871967 -0.302522 0.191516 -0.163126 0.644415 -0.237047 -0.232215 0.167609 0.373531 -0.221322 0.421510 -0.753244 -1.344271 -0.193785 -0.797662 0.175990 -0.488614 0.210803 -0.175849 -0.067378 -0.784630 -0.435889 -0.372928 -0.240343 0.563382 0.328027 -0.064738 0.482152 0.586222 -0.606189 -0.003842 0.478300 0.619411 0.162101 -0.058222 -0.659431 0.435711 -0.702301 0.000000 0.955143 -0.449851 0.217135 -0.348733 1.013127 -0.570591 1.023083 0.156830 -0.546880 0.718931 0.583786 0.559035 0.526507 -0.335783 -PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/dfs.cpp__main = 0.257030 -0.535304 1.480738 0.745966 -0.870310 -0.287412 0.034740 0.061106 0.578645 -1.956962 -0.795278 0.353876 -0.699056 0.450074 -0.630291 -0.007216 -2.337131 -1.030775 0.288649 0.194895 -0.023817 -0.398288 0.781597 0.458882 0.504417 1.913549 -0.540025 -0.092978 -0.458630 1.154617 1.642504 -0.868256 0.702064 1.909721 0.075250 -2.423819 0.439890 -0.385631 -0.372612 -0.831774 0.462730 -0.777876 0.204664 -2.206136 -0.763820 -0.032898 0.654210 1.656075 0.470499 -0.220276 -1.663842 -0.429609 -0.559321 1.190640 -0.587766 -0.149431 0.703801 -0.299487 -0.156728 -0.806960 0.441213 -0.274861 0.355619 0.923641 -0.668969 -0.749388 -0.178552 -1.786319 -0.775233 0.772613 0.373072 1.821847 -0.840414 0.377124 -1.156981 0.097921 0.743670 1.569518 1.522098 -1.028842 0.657316 -0.104705 1.019943 0.039949 -0.269609 0.791411 0.210196 0.447958 -0.379017 -0.286232 -1.847888 -0.230156 -0.039721 -1.083563 0.555562 -1.575560 0.079680 -1.821116 -0.407378 -0.190541 0.286588 0.084352 0.543307 0.171481 0.686761 0.827246 -0.470121 -0.332868 0.518606 -0.650127 -0.294174 0.269291 0.496393 1.014913 -0.438710 -1.331664 -1.241295 -0.034256 -0.226916 -0.484187 1.425568 0.492665 -0.849156 0.097958 -0.029697 -0.038395 -0.463794 1.530125 0.431956 -0.467279 0.413260 -0.400536 1.250285 -0.076779 0.644699 2.553267 -0.766693 -0.787495 -0.268574 0.130701 -0.654115 -2.141200 0.371992 -0.315044 -0.345089 -1.153258 -0.995620 -0.758039 -0.766648 -1.601013 -0.146584 -0.771740 0.017311 1.806965 0.692573 0.930691 1.025485 1.443014 -0.748799 0.757044 -0.280585 -0.002741 0.541239 1.014537 0.637728 -0.257313 -0.108500 0.485941 -0.866993 0.592936 0.136852 -0.702214 0.338621 -1.311325 -0.577410 0.730014 1.136412 0.311413 0.171854 0.173575 -2.090946 -0.720237 -0.069269 0.898481 0.325716 -0.552088 0.797595 -0.645989 1.160564 -0.166066 -0.173909 -0.248520 0.115270 -0.868315 0.225357 0.149776 0.168368 -0.341198 -0.812421 -0.022272 -0.030229 -1.055042 1.030467 -0.465445 -0.429758 -0.531160 -0.709701 0.992859 -1.277456 -0.588571 0.405266 0.277352 1.965187 -1.179918 -0.420976 -0.722838 1.949044 0.488999 -0.117764 0.268337 -1.725265 -0.561151 -0.278324 0.349331 0.378822 -0.297211 0.063567 0.950302 0.121004 0.400526 0.877342 0.334626 0.872710 0.328035 -0.347578 -0.377629 -0.716728 0.815529 -0.094789 -0.138325 0.065393 0.838380 1.669793 0.592409 1.835566 2.311913 0.243583 0.864406 -0.732410 -0.957079 -0.462191 1.114710 -0.269292 -0.338008 -0.268268 1.205740 -0.562622 0.398698 -0.910029 -2.881625 -1.824598 -1.156422 -0.463250 -1.364273 0.042811 -0.314918 0.440858 -0.764838 0.147421 -0.686327 -0.296868 2.047754 0.664813 -0.384341 0.726422 0.739589 -1.622301 -1.131604 1.668142 1.363014 0.054669 1.163378 -2.472087 0.677939 -1.108941 -0.091653 1.998916 -1.209198 -0.415588 -0.615464 2.010368 -0.416579 1.724203 0.714098 -1.739614 0.471462 -0.022914 0.147991 2.151418 -0.682053 -PE-benchmarks/dfs.cpp__Graph::DFS(int) = -0.556542 -1.626876 3.195539 2.331807 -0.163680 0.549129 0.985326 -0.816010 0.859348 0.867480 -0.715112 1.354122 -1.787121 0.183025 -0.080625 0.894271 -2.179377 -1.608264 -0.135336 -0.834468 -0.780649 -0.972917 0.099149 1.310662 1.558982 0.547544 -1.159966 -0.493092 -2.140065 -1.776925 -0.023339 -0.466716 1.317891 0.451333 0.731072 -3.584355 1.525404 1.705651 -0.362166 -1.877025 0.981031 -1.074423 0.101676 -0.524899 -0.478329 0.723233 1.140149 0.874193 1.074734 0.715919 0.272097 -0.427598 0.771846 2.823725 -0.298979 1.381726 1.478099 -0.774533 -0.099955 -0.256857 0.327646 -1.026404 0.941290 0.567838 -0.685925 -1.272123 -0.004945 -0.910621 -1.181558 1.122104 0.691467 -0.564901 -1.344950 -0.857196 -1.366820 -0.619367 -0.229600 1.429548 2.644176 -1.490603 2.132165 0.651846 0.936262 -0.002369 0.977069 0.161278 1.527531 0.417997 -0.758875 -0.282052 -1.502682 -0.778984 -0.043472 1.088750 -0.666773 -1.185045 0.960841 -1.892291 -2.366153 0.822687 0.336802 -0.887611 -1.133791 0.250380 0.756071 0.956255 -0.589130 -1.704094 -0.758910 0.435502 -0.685351 -0.483820 -0.183390 -0.283073 -0.665369 -0.318292 -2.312522 0.506763 0.576599 -0.897165 -0.676640 1.730917 -0.474921 1.104456 0.130510 0.806478 -0.354826 1.679726 0.682667 0.662549 0.264368 -0.461685 -1.613236 -0.102155 0.828330 0.926047 -1.132236 -0.475573 -0.257406 0.596909 -0.644416 0.464157 -0.252496 2.362863 1.383855 -1.231390 -1.686232 -1.343062 -0.915245 -1.785050 0.432993 -1.069780 -0.758240 0.472890 1.352396 0.591091 0.637990 2.176411 -0.959914 1.154722 0.094366 -0.462888 0.950731 -0.173848 1.264721 -1.323235 -0.966876 0.987633 0.917990 0.927527 0.010701 -0.118239 0.517535 -1.569729 -1.128414 0.801459 0.520308 0.170074 1.711199 1.456802 3.135282 -1.408333 0.069981 0.766923 -0.381148 -0.379635 0.489049 -1.818357 0.926010 0.313903 -0.142828 2.173804 0.133546 -1.244514 1.002349 -0.149874 0.349872 -1.526138 0.829061 -0.992308 0.260266 -0.900007 -0.180544 -1.077892 -0.826612 -1.090367 -0.616218 2.519732 -1.446546 -2.085245 1.279503 -0.370265 1.375737 -3.058284 2.545924 -1.177770 1.457717 -0.744675 -0.739778 0.094549 0.106937 -0.843177 0.765567 0.683101 -0.562767 0.730923 1.736216 0.837170 0.486359 0.123206 1.445183 -0.104238 1.150140 -0.559461 1.205823 -0.299352 -0.506738 -0.364163 -0.421090 0.012153 0.450915 0.080421 0.923327 1.171045 0.317492 1.040434 1.370364 1.246862 -0.999727 0.647417 -0.349523 1.869473 -1.158909 -0.980008 -0.052104 0.914023 -0.078720 0.932665 -2.617667 -2.248776 -1.343774 -2.338577 -0.595884 0.295304 0.796761 0.168227 -0.212520 -2.092719 -1.220669 1.573524 -0.119808 2.011532 1.176573 0.369223 1.746775 1.368872 -0.287247 -0.742900 0.007359 0.678145 -0.171077 -0.244466 -1.502060 1.204564 -1.835061 1.046896 2.095643 -1.095786 0.805600 -0.451904 1.694383 -1.994703 2.579847 0.816231 -1.893773 1.096646 1.622540 1.705977 -0.679333 -1.311389 -PE-benchmarks/trie-suffixes.cpp__main = 2.519957 -2.529873 19.782618 8.394817 -3.513566 -0.314632 12.175242 -9.314322 10.746025 -2.022152 -3.856573 -4.819086 -12.332515 -0.949105 -4.927190 1.756669 -18.130443 -8.307573 -2.628516 -8.915336 -3.820761 -8.850613 11.854260 -0.862256 11.183364 6.635740 -3.751237 -6.607596 -6.628871 -3.339599 14.400140 -3.110631 4.434548 8.604105 -0.241115 -22.032781 11.332179 2.791122 -5.186285 -4.013092 8.643200 -2.054816 -1.803405 -3.217245 1.374923 1.469972 2.781217 19.180525 11.686419 4.340227 1.390171 -7.436589 -1.750437 18.042500 -9.203649 4.045602 3.409928 -2.268652 -1.455824 7.461491 -0.690095 -3.316071 0.737117 8.167795 -1.715569 -4.457491 6.926325 -12.915400 -10.724113 13.471295 0.885435 -1.727329 -7.160365 -2.546182 -6.110077 0.565113 -8.457277 12.929447 15.031854 -9.564713 9.660407 -0.975543 4.297301 -4.218377 -4.807958 0.948414 3.920710 -0.135519 -2.519838 -7.494746 -17.669160 -5.323880 -0.429552 -6.651757 0.809971 -16.653508 7.177750 -10.374429 -11.067644 -1.327045 6.040557 -5.764936 -2.982048 6.987066 3.918333 1.054279 -2.790576 -9.450033 -2.378657 1.938515 -9.402678 6.882305 1.920694 0.873454 -6.968159 -6.848696 -12.135322 3.655741 -4.871226 -3.468071 -2.697306 9.454121 -6.667056 2.047999 5.639420 6.102829 -3.718205 9.859729 0.894847 2.506977 7.831248 3.150474 -3.048591 0.167462 8.567994 15.082396 0.263103 -1.559585 -4.745050 2.992513 -13.281208 -3.599201 -2.138452 4.288697 3.143151 -14.995262 -10.404690 0.754062 -3.429722 -16.288070 3.482499 -5.806929 -5.375726 2.242738 7.082456 12.045305 6.292916 13.140695 -12.374468 3.930707 -1.510886 -4.287113 2.228796 5.115258 9.709715 -6.186372 -4.006463 -2.856301 -2.868660 4.114571 -3.316180 -2.518956 -0.490365 -16.784123 -4.547449 -0.669698 3.843544 -3.180950 -0.931113 11.862702 3.269277 -14.297464 0.116392 12.961728 -1.569570 -6.217440 8.548181 -11.659229 8.617651 1.368455 0.786339 6.942226 2.099276 -3.079313 4.244974 -4.816480 1.452969 -6.991865 -7.302445 -3.779826 -2.341708 -8.080933 4.516122 -5.958327 -5.601073 -2.968992 -6.495936 9.798420 -3.212779 -8.718998 14.897550 -3.429081 7.678143 -11.529393 15.595407 -4.956996 3.656860 -1.345903 -1.165885 -1.974348 -1.196363 -5.408649 2.230253 -3.909387 1.198056 9.125310 16.299764 7.314635 5.268285 -1.451980 13.640902 -4.583491 8.315181 -3.994044 4.680108 -5.871382 -10.527812 2.810286 -1.737717 -3.599891 -3.043891 3.718766 16.903343 8.737809 6.218576 15.102050 2.972430 12.295164 -3.648409 3.472241 1.054598 8.392605 -3.740406 -6.225238 7.552781 3.678953 -7.383319 5.674536 -14.857119 -20.981577 -6.168010 -18.555816 -1.724352 -13.372777 4.795960 -3.031357 0.123624 -11.852373 -4.890692 -0.329612 -0.661829 7.659261 6.859728 -0.818985 7.834665 15.113218 -10.615335 1.860593 8.982366 11.489207 -1.629187 -3.566055 -14.418958 9.874065 -10.801836 2.614870 14.858013 -7.301062 2.694529 -9.484746 13.448799 -15.203659 12.032666 2.634612 -5.936340 9.715034 4.371577 10.739140 13.256165 -4.730568 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -0.253486 -1.162982 4.723760 2.635482 -1.452690 -0.010192 1.099021 -1.779176 1.338478 -0.849139 -0.885520 0.675075 -2.333700 0.366112 -0.218511 0.807481 -4.130281 -1.930840 -0.760974 -1.912986 -1.193458 -1.187779 1.179980 1.361237 2.153003 2.031553 -1.276361 -0.396692 -1.451730 -1.995220 1.322681 -0.631354 1.627522 2.382140 1.197107 -5.127792 2.279243 1.106677 -0.873567 -1.665614 1.717895 -0.947081 -0.223715 -1.259233 -0.865044 1.047543 1.132579 2.271141 1.912958 0.912338 -0.330778 -0.792090 0.309321 2.991544 -0.914046 1.058933 1.634372 -1.178573 -0.269755 -0.156055 -0.093404 -1.126468 0.560176 0.877911 -0.906904 -1.930151 0.663205 -2.260066 -1.752454 2.278823 0.776331 -0.692887 -1.820565 -1.557167 -2.150186 -0.540401 -0.370398 2.729658 3.408488 -2.379035 1.865611 0.380005 0.836198 -0.315776 0.353381 0.242938 2.003121 0.365287 -0.494719 -0.463885 -2.565269 -1.797111 -0.215204 0.302174 -0.315972 -2.268379 1.326260 -3.830114 -2.678840 0.524101 1.043605 -1.358755 -1.513381 0.434371 0.978613 0.746902 -0.445032 -1.864060 -0.421122 0.451759 -0.929922 0.574432 -0.212763 0.653121 -1.029991 -0.616868 -3.553256 1.270095 -0.028964 -0.700181 -0.183221 2.015525 -0.826749 0.864430 0.861978 1.511461 -1.048003 2.971492 0.638682 0.559928 0.762717 -0.176749 -0.463023 -0.013599 1.199244 1.930503 -1.185894 -1.206455 -0.780000 0.515958 -2.085075 -0.502760 -0.483836 2.258022 1.589238 -2.225095 -2.680560 -0.914580 -1.973352 -3.451529 0.603926 -1.728617 -1.191689 1.409865 1.207814 1.873183 1.187003 2.812121 -1.567304 1.193069 -0.152587 -0.779126 1.047985 0.434035 2.042742 -1.597144 -0.952530 0.838744 -0.340671 1.293414 0.010141 -0.604608 0.629082 -3.044621 -1.886855 1.299121 0.972650 0.354749 1.322873 2.401227 2.286633 -1.672219 -0.098130 1.852483 -0.697929 -1.068280 1.483042 -2.044937 1.414221 0.366070 0.125129 2.447916 0.256861 -0.983308 1.191329 -0.170204 0.553965 -1.763525 -0.215751 -1.043314 0.542647 -1.749500 0.122191 -1.587092 -0.963605 -0.997042 -1.497075 2.945504 -2.038872 -2.727523 2.768220 -0.803996 2.872641 -3.803085 2.474969 -1.274629 2.268776 -0.626349 -0.459963 -0.153252 -1.518022 -1.302940 1.061577 0.048490 0.002795 0.644680 2.492217 1.268377 0.717742 0.061375 2.543451 -0.542328 2.473459 -0.677849 1.569303 -0.983134 -1.053035 0.094617 -0.088221 -1.004347 -0.114677 0.782465 2.015936 1.313948 1.420967 2.393661 1.523100 2.245464 -1.104688 0.722328 -0.407806 1.888441 -1.552878 -1.574812 0.971421 1.653104 -0.816464 0.972917 -3.358962 -4.208421 -2.834126 -3.710038 -1.088206 -1.059449 1.269473 -0.229573 -0.463761 -1.999829 -1.254344 1.611133 0.175123 2.890359 1.662457 0.117644 2.357974 2.900383 -1.292728 -0.884054 1.103940 1.730478 -0.024769 0.081264 -3.321344 1.912571 -2.061986 0.618740 3.654907 -1.772025 1.109620 -1.427171 3.167686 -2.917635 3.242319 0.704364 -2.520108 2.006447 1.849467 1.219628 1.390247 -1.351181 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 0.342815 -1.407154 6.148214 3.470955 -2.288614 0.015559 1.426957 -2.526813 2.260886 -2.898535 -1.293924 0.668414 -3.698385 0.933153 -1.707617 0.337862 -6.277265 -2.759183 -1.349123 -2.295470 -1.238475 -1.981448 2.179233 1.996840 2.781556 4.297309 -1.838848 -0.503088 -2.939603 -0.549065 3.129066 -0.743416 2.178750 4.001956 1.226882 -6.636449 2.703054 1.775273 -1.265378 -2.696181 2.718766 -2.370186 -0.349950 -2.929604 -0.865027 0.866692 0.704662 4.473853 2.631193 0.169407 -1.756357 -0.342742 -0.505879 4.028649 -2.057963 1.276788 2.110747 -0.802022 -0.558135 -0.419571 -0.180059 -0.630921 0.767299 1.488448 -2.024481 -2.855399 0.838698 -3.591879 -2.612017 3.487938 1.078753 0.274613 -2.816836 -1.537787 -3.673433 -0.129877 0.309199 4.374978 4.548984 -3.285628 2.089716 -0.152399 0.952756 -0.528700 0.427049 0.556107 2.558736 0.449232 -0.235372 -1.406574 -5.770280 -1.596650 -0.249376 -1.307010 -0.445641 -4.584776 1.661875 -6.384332 -3.603304 -0.405322 1.460237 -2.240420 -0.826087 1.217873 1.362068 1.287660 -0.500640 -2.454157 0.262647 1.040227 -1.124285 0.776527 0.428397 1.333570 -1.303454 -2.516010 -4.766987 1.894464 -0.374804 -0.644263 0.715401 2.941085 -1.703129 0.659491 1.166250 1.659032 -1.466252 4.167576 0.275072 -0.094877 1.420292 -0.124437 1.603080 0.254420 1.565475 4.458310 -2.299074 -1.414596 -1.268382 0.593440 -3.063270 -2.463462 -0.959850 1.561575 0.750038 -3.914000 -3.068103 -1.240108 -2.608093 -5.040886 0.149146 -1.904591 -1.720876 1.892943 1.927660 3.376511 2.097252 4.135025 -2.410396 1.076744 0.479413 -1.036186 1.846628 1.762007 2.641310 -1.997675 -1.880721 1.141274 -1.726952 1.876948 -0.672380 0.041656 0.258024 -4.326586 -2.143761 1.643236 1.941828 0.898817 2.331770 3.489481 -0.239487 -2.907710 0.417702 2.814196 -1.247947 -1.278462 1.829777 -2.905489 2.369112 0.733268 0.491035 3.228023 0.127071 -1.296826 1.590431 0.156200 1.154377 -2.652639 -1.054064 -1.514968 -0.145061 -3.331174 1.023458 -1.516801 -1.674666 -1.962615 -2.790399 3.957067 -2.892529 -3.678091 3.873091 -0.683919 4.497458 -5.084532 1.517357 -1.801047 3.451745 0.251515 0.078536 0.222098 -3.145215 -2.673234 0.870218 0.190657 -0.184344 1.093653 3.008675 2.144655 0.792607 0.018705 3.414102 -0.652018 3.499960 -1.563403 1.903735 -1.289483 -2.122654 1.232134 -0.345951 -1.302745 -0.351150 1.566162 4.455111 2.213140 3.676019 4.437803 1.863016 3.573177 -1.442099 0.532059 -0.853898 1.822492 -1.658468 -1.989569 1.162364 2.267676 -1.185216 1.669806 -4.561223 -7.330222 -3.824592 -5.780802 -0.165753 -3.759775 1.372112 -0.255043 -0.444215 -3.464127 -1.885635 0.570192 -0.135287 5.434020 2.216857 -0.161342 2.863348 4.189614 -3.322468 -0.384802 3.153410 3.302205 -0.074088 0.155425 -5.457305 3.117210 -2.431817 0.700095 5.908814 -2.983729 1.690080 -2.959464 4.939334 -3.692140 5.010196 1.177525 -3.959733 2.618848 1.670825 2.068545 3.784491 -1.993038 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -0.208879 -1.747821 6.023531 3.122328 -1.894539 0.197902 1.790304 -2.059438 1.574756 -0.977300 -1.337404 0.784723 -3.036343 0.000887 -0.391821 0.488318 -5.373973 -2.350505 -0.757719 -2.207811 -1.569130 -1.738574 1.203383 2.085812 2.732665 2.419262 -1.369255 -0.515280 -1.861274 -1.981423 1.692550 -0.648728 1.837166 2.721810 1.795874 -6.814132 2.736220 1.356516 -0.927912 -2.210085 1.913419 -0.804401 -0.368487 -1.275747 -1.363711 1.001534 1.733556 3.630797 2.220998 1.113491 -0.594588 -1.694313 0.485352 4.710023 -0.580677 1.542930 2.422349 -1.481490 0.054219 0.143824 -0.028819 -1.868516 0.452361 1.265562 -0.838205 -1.787536 1.197303 -2.992190 -2.012347 2.961328 1.139583 -1.048324 -2.131449 -2.107255 -2.807209 -0.621087 -0.928066 3.675192 4.542878 -3.246936 2.826262 0.622009 1.446081 -0.339999 0.438855 0.240072 2.479325 0.448048 -0.885312 -0.394980 -3.398427 -2.202696 -0.181615 -0.181931 -0.439430 -3.577683 1.792578 -4.934035 -3.566406 0.956983 1.163255 -1.814404 -1.246006 0.602130 1.274504 0.733992 -0.886579 -2.472499 -0.839044 0.701925 -1.798237 1.036401 -0.002058 1.355906 -1.164614 -0.816143 -4.253853 1.529139 0.206537 -0.975503 -0.050707 2.826880 -1.000466 1.656477 1.148109 1.627943 -0.982155 3.690718 1.238672 0.376275 0.613461 -0.157922 -0.515219 0.132491 1.503032 2.292269 -1.117906 -1.412078 -0.349734 1.011707 -2.366321 -0.297121 -0.630309 2.896263 1.316434 -2.849631 -3.511956 -1.414316 -2.781603 -4.329850 0.663441 -2.033408 -2.080346 2.046869 1.644003 2.681510 0.991001 3.107574 -2.017056 1.524552 -0.320971 -1.042933 0.616831 0.420237 2.537850 -2.080645 -1.143929 0.715347 -0.371200 1.944544 -0.002724 -1.132464 0.641203 -3.744314 -2.310943 1.290324 1.505825 0.291589 1.456544 3.274456 3.021249 -2.361605 -0.428078 2.221713 -0.687068 -1.623703 1.918085 -2.767745 1.867172 0.351198 0.024905 3.031792 0.369429 -1.019450 1.637428 -0.492222 0.577953 -2.225189 -0.516809 -1.246130 0.533758 -2.132372 0.584455 -2.193615 -1.130043 -1.565813 -2.077701 3.790904 -3.288481 -3.202064 3.570645 -0.724260 3.707208 -4.405723 3.702467 -1.408835 3.159484 -0.522834 -0.944022 -0.175747 -1.780003 -1.226077 1.471753 -0.192470 -0.003538 0.802306 3.130153 1.530488 1.171348 0.212183 3.309524 -0.952330 2.595802 -0.982720 1.613361 -1.260659 -1.731894 -0.049180 -0.210183 -0.987908 0.086595 1.082906 2.634822 1.728007 1.661892 3.061352 1.859142 2.377115 -1.360741 0.483183 -0.389408 2.699433 -2.201138 -2.090501 1.031404 2.170357 -1.034897 1.026583 -4.460770 -5.235713 -4.099476 -4.426547 -1.784010 -1.728580 1.551897 -0.191583 -0.563865 -2.582873 -1.659369 2.269250 0.126029 3.013718 2.279648 0.203748 3.236961 3.715384 -1.320213 -0.874380 1.754226 2.446792 -0.351217 0.237908 -4.229171 2.242180 -3.096494 1.136327 4.587154 -1.988558 1.506189 -1.638872 3.737448 -4.170246 3.854077 1.072238 -3.526818 1.992816 2.631974 1.466268 1.827302 -1.836234 -PE-benchmarks/snake-ladder.cpp__main = 0.242964 -2.407348 5.493783 4.163023 -1.120746 0.613927 1.868514 -1.424260 2.205249 0.807712 -1.068276 1.489935 -2.893470 0.515825 0.976609 2.075959 -4.737901 -2.282795 0.213901 -1.446787 -1.184896 -1.653357 0.764822 1.328712 2.621249 2.205013 -1.307265 -1.581298 -1.972749 -1.438721 1.672076 -1.187618 2.299362 2.843544 1.293597 -7.610503 2.620936 1.581933 -0.932791 -3.444104 1.429925 -1.815184 0.744861 -1.928730 -0.298057 1.177370 1.856386 3.716449 2.072498 1.371413 -0.862109 -0.970061 1.477704 5.294489 -1.012577 1.713360 2.063739 -1.443468 -0.311174 -0.275338 0.755656 -1.376212 1.622590 1.208942 -0.910097 -2.505298 -0.563523 -2.691299 -2.501734 2.032547 1.702049 -0.049735 -3.217813 -1.104570 -1.317952 -0.915151 -4.801809 3.977318 4.420449 -3.414499 3.292757 1.098132 1.732935 -0.079037 1.305685 0.616815 2.435600 0.745332 -1.309765 -0.354456 -3.393380 -2.739698 0.590096 -1.400314 -0.566775 -4.157799 1.026072 -1.637068 -3.446478 1.409548 1.010759 -0.967988 -1.335238 -0.070931 1.636609 2.078051 -1.368829 -2.702539 -0.978430 0.197952 -1.295389 -0.600648 -0.242955 0.168765 -1.371658 -1.649531 -3.985958 0.702412 0.685324 -1.265724 -0.143751 2.739203 -0.995238 1.128239 0.143528 0.814405 -0.846624 3.797028 1.248880 1.020127 1.962631 -0.711699 -2.008248 1.649086 2.067301 3.065068 -0.742203 -0.695753 -0.835085 1.190538 -1.673177 -0.090612 0.901316 3.408674 2.102694 -2.073515 -2.888697 -2.198442 -0.958080 -2.887377 1.414104 -2.018149 0.223249 1.846319 2.369732 1.731051 1.692020 2.455045 -3.075730 2.013990 -0.770436 0.412784 1.756910 2.493924 2.204293 -1.942743 -0.931027 1.011231 1.119456 1.227386 -0.046121 -0.663441 1.113094 -2.727985 -1.571221 1.077806 1.408697 -0.417304 2.363544 2.244067 4.061067 -2.418097 -0.249866 1.753239 -0.600478 -0.847444 1.288273 -3.062545 2.401470 0.229365 -0.324327 2.525829 -0.132784 -1.872191 1.333620 -0.273670 0.144280 -1.547112 0.032177 -1.552672 -0.868609 -1.627082 1.207321 -2.071588 -1.793736 -1.684866 -0.375706 4.181100 -1.941510 -2.273662 2.362083 -2.534255 2.079828 -4.231268 5.631590 -2.071701 0.759397 -1.566736 -1.737089 -0.268260 -0.163554 -1.663502 0.368705 1.180008 -0.330848 0.512963 3.407654 1.742072 0.376859 0.552660 2.698181 -0.125090 2.074622 -0.650267 2.195158 -1.251155 0.189821 -0.221764 -0.630766 0.344938 0.352300 0.324749 3.599063 1.599158 1.557213 2.629805 1.611497 2.079808 -1.867233 1.098713 -0.676941 2.966402 -1.767236 -1.170296 0.035355 1.145152 -0.646588 1.769271 -4.212421 -4.252536 -2.063415 -2.367307 -1.403942 0.240828 1.375721 -0.171408 -0.069629 -3.588137 -1.770811 0.901229 -0.537752 0.788050 1.831996 0.151814 2.948971 2.678598 -1.010702 -1.602465 0.757836 1.077503 -0.085582 -0.081495 -3.040587 2.387932 -3.331563 1.370748 4.108852 -1.743021 0.674471 -1.928655 4.921735 -2.901823 4.211860 1.293521 -3.047320 1.531775 3.476723 2.733490 0.063663 -2.132035 -PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -1.601631 -5.593962 12.078013 7.775790 -0.892032 1.735461 3.504341 -2.245599 2.376274 3.079475 -3.113763 4.841180 -6.055855 -0.268654 0.376346 2.080048 -8.302384 -5.881664 -0.563473 -2.278953 -3.622633 -3.866231 -0.468047 6.030656 5.645901 3.491689 -4.589828 -0.703519 -6.490302 -7.458962 -1.223771 -1.151745 4.295777 2.154842 4.392780 -11.863699 5.930398 5.672221 -0.383731 -6.064859 3.265075 -2.235733 -0.090565 -0.792168 -1.748830 3.457348 5.409767 5.285801 3.538223 2.908233 0.138921 -3.267608 2.762671 9.366420 1.106868 4.886209 6.464474 -2.859561 0.597821 -1.226717 0.741985 -5.511716 2.078682 1.950892 -2.457700 -2.758612 1.938174 -3.109690 -3.320924 4.778284 3.205231 -3.387410 -4.573727 -4.466604 -5.141058 -1.369137 1.309679 5.530115 9.581617 -5.383456 7.451456 3.081778 4.564272 0.434509 2.325687 -0.254138 5.471440 1.331153 -3.117495 -1.316726 -7.164286 -4.553847 -1.366463 2.837653 -2.568197 -3.874367 2.979107 -9.330032 -8.700084 2.885962 0.453047 -3.780161 -3.458839 1.608898 3.970754 2.277489 -0.377614 -5.433970 -2.935511 1.915292 -4.589592 -0.141316 -0.314405 -0.046654 -2.103439 0.758602 -8.803891 2.942541 2.637796 -2.892158 -1.495320 6.371251 -1.630729 5.636835 1.244655 2.936457 -0.410432 5.714824 4.621605 1.252867 0.593424 -1.879790 -3.818785 0.526651 2.034141 1.439636 -4.245762 -2.434520 0.363455 2.425641 -2.287984 2.153135 -2.671298 8.651737 4.214912 -4.851154 -7.394567 -5.479280 -5.584568 -6.174010 1.805187 -3.213868 -4.346419 1.453968 4.058441 2.824432 0.918150 6.628054 -3.738868 3.577595 0.577576 -1.229886 1.033865 -1.022456 4.358432 -5.036497 -2.970451 3.657868 3.247061 3.186595 -0.254824 -1.789411 2.239042 -5.589039 -4.576917 3.342879 1.309285 2.173551 5.257415 5.801225 11.667271 -4.403967 -0.972150 2.541602 -1.107136 -2.673268 2.747046 -6.190640 3.632560 0.626153 1.193262 8.691272 0.770177 -3.485820 4.673262 0.052745 0.798435 -5.649839 2.779794 -3.133879 1.566927 -2.584701 -0.560937 -4.854996 -1.735438 -4.301893 -3.395152 8.796130 -5.000617 -8.624152 4.857304 -1.701419 6.263821 -10.236697 8.098333 -3.412257 5.445445 -1.231169 -2.845247 0.312766 -2.153468 -1.568002 3.357548 1.140064 -1.068595 2.535258 5.154077 2.364392 2.361064 1.015968 4.462980 -0.610412 4.185714 -1.750321 2.575242 -1.638833 -1.998189 -1.909315 -0.808477 -0.187835 2.516394 -0.646879 1.632454 4.079837 0.754710 3.963664 4.738550 3.399150 -3.420514 1.131109 -1.099079 6.614086 -5.325063 -4.536102 -0.353731 3.193037 -0.513153 2.735692 -9.705894 -7.494635 -6.161672 -9.919472 -4.040812 -0.130505 3.247476 0.636521 -1.577724 -6.242747 -4.320409 7.242140 1.300479 7.361832 4.690123 0.607487 7.152833 5.363580 -0.915877 -2.840142 1.025045 2.124818 -1.298914 -0.351818 -6.450498 4.118408 -5.819041 4.253828 7.923424 -4.697508 3.588421 -2.900052 5.053535 -8.500255 8.877413 2.980382 -7.897686 2.148315 4.432820 5.666096 -3.103855 -5.001703 -PE-benchmarks/binary-insertion-sort.cpp__main = -0.360988 -1.574875 2.715838 1.856279 -0.239424 0.413327 0.828297 -0.322633 0.639270 0.222350 -0.991733 1.355989 -1.513827 0.075687 -0.340450 0.443335 -2.026327 -1.535478 0.165307 -0.254141 -0.464135 -0.841946 -0.056975 1.380939 1.249391 1.019528 -0.890471 -0.328262 -2.012869 -1.120204 0.003669 -0.456955 1.062103 0.686141 0.758549 -2.735811 1.058701 1.420899 -0.192206 -1.943706 0.810362 -0.989541 0.017460 -0.745426 -0.321987 0.657729 1.289547 1.374193 0.595255 0.548776 -0.450751 -0.596313 0.485144 2.173695 0.078271 1.110064 1.682751 -0.531639 0.059018 -0.486036 0.399597 -1.132868 0.677753 0.602631 -0.775967 -0.853913 -0.038048 -0.963630 -0.866259 0.842776 0.710584 -0.077485 -1.163312 -0.671071 -1.318281 -0.281175 0.026384 1.381565 2.376015 -1.331787 1.958723 0.604168 1.194202 -0.004972 0.712598 0.253516 1.032535 0.481409 -0.734671 -0.375117 -1.902981 -0.757648 -0.184104 0.427915 -0.482338 -1.132365 0.811524 -2.078601 -1.937507 0.588582 0.097061 -0.781866 -0.342913 0.539626 0.750258 1.069980 -0.440680 -1.269405 -0.425477 0.268753 -0.762086 -0.324122 0.082453 0.290594 -0.571024 -0.454796 -1.988502 0.447143 0.719760 -0.858947 0.035617 1.416310 -0.481204 1.237082 0.066673 0.409008 -0.094871 1.568080 1.001318 0.113618 0.320209 -0.602563 -0.826971 0.255771 0.649793 1.066168 -1.276208 -0.309415 0.191099 0.555754 -0.230693 -0.169046 -0.460795 1.695989 0.727126 -1.276792 -1.529457 -1.541328 -1.024616 -1.362374 0.229855 -0.873131 -0.685421 0.635093 1.162113 0.621388 0.416900 2.009828 -0.956967 0.892161 0.197114 -0.264526 0.461121 0.139249 1.005728 -1.093688 -0.792426 0.950153 0.676729 0.771300 -0.003767 -0.238846 0.527946 -1.416345 -0.977462 0.954061 0.679567 0.331857 1.535580 1.170034 1.528887 -1.046423 -0.225446 0.481593 -0.249611 -0.524822 0.511198 -1.601483 1.054289 0.135664 0.270649 1.704190 0.178403 -0.988511 0.997727 -0.008190 0.180883 -1.239435 0.582813 -0.828186 0.090182 -0.769171 0.262810 -0.903527 -0.678491 -1.117995 -0.685751 2.169452 -1.208753 -1.818561 0.697604 -0.237535 1.556449 -2.563030 1.517710 -1.005023 1.598578 -0.097537 -0.508518 0.214424 -0.579604 -0.572301 0.333422 0.631069 -0.300157 0.577873 1.041386 0.750735 0.272997 0.406016 1.097641 -0.121706 0.817274 -0.384811 0.470761 -0.319608 -0.559746 -0.080789 -0.321082 0.136063 0.585709 0.075475 1.061668 0.940487 0.586137 1.357176 1.047543 0.878534 -0.932155 0.121604 -0.380315 1.858239 -1.044000 -0.889923 -0.444704 0.888575 -0.012567 0.756638 -2.229310 -2.303919 -1.425308 -2.272945 -0.618719 -0.423206 0.694352 0.121037 -0.067788 -1.818698 -0.994780 1.094796 -0.015682 2.141180 1.115328 0.181365 1.572249 0.975334 -0.489107 -0.767242 0.477285 0.890317 -0.317064 0.055483 -1.498185 0.790294 -1.613124 0.866761 2.044854 -1.085341 0.593319 -0.647266 1.596019 -1.678304 2.327915 0.926708 -2.153214 0.571332 1.108398 1.365548 -0.345960 -1.254011 -PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -1.969442 -3.573740 5.581887 3.938267 0.358360 1.477097 2.059710 -0.919378 0.848862 2.486943 -1.167024 3.360359 -3.212558 -0.359111 -0.337885 0.924590 -2.767240 -3.027731 -0.172869 -1.271455 -1.442525 -1.637415 -1.125606 3.534448 2.666928 -0.698406 -2.160518 -0.760489 -5.114512 -3.627460 -1.762481 -0.297294 2.251508 -1.737625 1.743993 -6.131071 2.409799 4.099778 -0.185203 -3.783557 1.681522 -1.789941 0.165102 0.226355 -1.511104 1.050783 2.601374 0.562952 1.216741 1.292619 0.981725 -0.658787 1.701699 5.949963 0.590539 3.158384 3.443728 -1.300579 0.076146 -0.505803 0.467115 -2.688630 1.601394 0.229529 -1.265690 -1.581875 0.276177 -0.537641 -1.560415 1.244266 1.546861 -2.199912 -1.674624 -1.869213 -3.100607 -1.451093 1.840533 1.607683 4.560336 -2.532074 4.407171 1.530817 1.862871 0.590999 2.399516 0.024377 2.724615 0.660768 -1.457387 -0.418912 -2.602696 -0.523189 -0.478635 3.093049 -1.826652 -1.772877 2.093235 -3.559369 -4.822946 2.057637 -0.021956 -2.114867 -2.126109 0.153936 1.227914 1.721930 -1.204398 -3.213731 -2.252282 1.598856 -1.466865 -1.161487 -0.077346 -0.900147 -0.617112 -0.217225 -3.851380 1.262092 2.077328 -1.625898 -2.053087 3.522405 -0.960296 3.146087 0.238429 1.595895 -0.214732 2.273884 1.918946 0.799783 -0.643715 -1.490937 -3.679730 -0.867592 0.642780 0.504848 -2.368296 -0.572329 0.344502 1.344499 0.123463 2.259228 -0.885880 5.031373 1.914645 -1.726221 -2.787913 -3.092727 -1.962657 -2.425415 0.481847 -1.435682 -2.379807 0.543067 2.286857 0.522367 0.024555 3.802155 -0.637171 2.209811 0.681798 -1.395640 1.014743 -2.087796 2.060953 -2.610883 -2.084925 1.924882 2.514683 2.172965 -0.094481 0.094960 0.913306 -2.173743 -2.168056 0.669697 0.697411 0.656269 3.748252 2.897247 7.258883 -2.566028 -0.273580 0.340638 -1.020910 -0.477025 0.181662 -3.228840 0.740344 0.840132 -0.651926 5.019093 0.348869 -2.425010 2.421105 -0.193752 0.618648 -3.091620 2.622623 -1.972243 0.603523 -1.008254 -1.312465 -2.198329 -1.110077 -2.851941 -1.721774 4.802136 -3.289182 -4.511228 1.577013 0.211072 2.292722 -6.027625 5.078476 -1.858563 3.319075 -1.032368 -1.372529 0.294570 1.063201 -1.044579 1.980070 1.219026 -1.728215 1.658617 2.884914 1.024208 1.168451 0.244180 2.157180 -0.424246 1.445092 -1.449986 1.974595 -0.407859 -1.436791 -1.166161 -0.742239 0.481793 1.599172 -0.098404 -0.068435 2.005134 -0.499196 0.710514 3.214327 1.439441 -1.596509 1.005221 -0.629544 3.708844 -2.394602 -1.876449 -0.755715 1.719191 0.797692 1.470653 -5.007806 -2.943034 -2.570321 -4.671992 -0.742913 1.180880 1.115712 0.746193 -0.673006 -4.166806 -2.590113 3.922305 -0.005027 4.017677 2.478614 1.155261 3.583749 1.952779 0.491240 -1.074306 -0.284495 0.725456 -0.673367 -0.875116 -1.747861 1.532989 -3.447743 2.601522 3.111536 -1.409775 2.121663 -0.195073 1.128283 -4.004878 4.540599 1.578688 -3.834007 1.279451 3.166741 3.260191 -3.255850 -2.501056 -PE-benchmarks/egg-dropping-puzzle.cpp__main = -0.492073 -0.837583 1.237791 0.773295 -0.012322 0.163311 0.637227 0.034693 0.217953 0.034076 -0.319925 0.700936 -0.750998 0.027595 -0.506588 0.139390 -0.703061 -0.769770 0.068324 -0.146170 -0.154610 -0.275697 0.066311 0.518592 0.624168 0.183717 -0.441902 -0.557650 -1.231905 -0.375797 0.118932 -0.169878 0.557362 -0.216233 -0.003150 -1.886693 0.286744 0.790740 -0.204160 -1.003555 0.589778 -0.501727 0.107412 -0.313407 -0.340534 0.066411 0.590547 0.255462 0.151351 0.278666 -0.153096 -0.023160 0.229703 1.605677 -0.060899 0.533788 0.875941 -0.113667 -0.139584 -0.202908 0.202517 -0.496968 0.328837 0.085737 -0.260261 -0.387610 -0.212785 -0.528815 -0.496778 0.187308 0.107016 0.026179 -0.364852 -0.182923 -0.856938 -0.248075 0.139984 0.542946 1.028925 -0.809726 0.979649 0.114692 0.430328 0.111663 0.197816 0.276412 0.022197 0.241206 -0.130065 -0.262797 -0.714249 0.126450 -0.179474 0.343466 -0.292726 -0.923777 0.715790 -0.689319 -0.860233 0.326726 0.031551 -0.374571 -0.219424 0.037392 0.041893 0.761435 -0.553385 -0.600347 -0.528182 0.164913 0.028099 -0.170961 0.207292 0.051946 -0.258551 -0.557063 -0.847373 0.290913 0.330078 -0.448110 -0.212054 0.677877 -0.331403 0.627556 0.029777 0.335778 -0.227518 0.840771 0.457935 0.008386 0.037090 -0.204030 -0.754332 -0.352082 0.352677 1.061781 -0.722456 -0.112299 -0.075674 0.190047 0.071897 -0.185426 -0.030770 0.637237 0.507971 -0.575666 -0.599829 -0.742041 -0.183743 -0.760195 -0.082671 -0.389899 -0.089182 0.617500 0.515532 0.290205 0.185769 1.353532 -0.345431 0.462786 0.135505 -0.504096 0.178163 -0.050656 0.436861 -0.465287 -0.539860 0.298224 0.326026 0.562052 -0.013992 0.130203 0.192022 -0.639041 -0.405701 0.218641 0.483828 -0.103367 0.665536 0.595024 0.512470 -0.800696 -0.223208 0.121641 -0.363635 -0.132982 0.108089 -0.799154 0.331678 0.153491 -0.310970 0.732762 0.133046 -0.573708 0.674111 -0.223405 0.057024 -0.497150 0.357515 -0.487850 -0.215551 -0.425312 -0.126310 -0.371614 -0.277808 -0.606024 -0.521519 1.022345 -0.747162 -0.719100 0.068298 0.281785 0.437658 -1.437203 1.013005 -0.446029 0.906634 -0.050472 -0.140274 0.059527 0.211168 -0.253551 0.018941 0.296732 -0.398067 0.319761 0.847743 0.349117 0.058990 0.090671 0.661432 -0.084733 0.376537 -0.224114 0.253133 -0.229251 -0.656600 0.099277 -0.124705 0.127839 0.197032 0.211909 0.656798 0.381750 0.253781 0.616219 0.731607 0.596985 -0.405148 0.046222 -0.180020 1.157765 -0.379087 -0.325373 -0.280440 0.687841 0.098085 0.331438 -1.000625 -1.234255 -0.761707 -1.222798 0.102619 -0.206067 0.110551 -0.107517 -0.031125 -1.103491 -0.525375 0.201490 -0.213705 1.018219 0.609979 0.167875 0.803580 0.408301 -0.392396 -0.233341 0.380874 0.514517 -0.051810 -0.079930 -0.542231 0.201933 -0.845032 0.254964 0.867518 -0.328128 0.348182 0.139474 0.600630 -0.693726 1.301730 0.394105 -0.970372 0.461749 0.649497 0.787542 -0.184971 -0.499177 -PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -3.257824 -10.238076 13.454469 10.313037 0.285236 4.906974 5.216914 -1.151530 -0.297383 6.699626 -3.793615 9.391579 -7.215209 -2.069901 1.289251 0.837086 -7.218847 -7.064188 1.034756 -1.351089 -2.961082 -4.749886 -5.730203 12.500569 6.028724 0.658852 -4.219863 -1.867798 -12.536019 -7.420557 -6.372383 0.152465 5.693229 1.786260 8.175454 -11.165386 4.524557 10.069701 1.510304 -9.753522 2.155878 -3.195877 0.619268 1.728788 -3.307257 5.175016 8.173627 3.310872 2.052413 3.458703 1.616417 -4.553758 6.239657 9.970742 5.591018 8.074780 7.939145 -4.457546 4.489117 -2.941992 1.091606 -8.638683 3.688330 0.224848 -2.696484 -2.168241 -0.254923 -0.357075 -2.059458 3.077477 6.386346 -4.788554 -6.070673 -5.178736 -7.150599 -3.551271 -0.701369 4.975515 11.230351 -5.235635 12.133413 6.211447 6.781713 -0.253872 7.831943 -0.500563 7.841697 1.635899 -4.635613 2.494267 -8.750061 -4.589521 -1.807642 5.230196 -5.550034 -3.615583 2.959933 -10.655286 -12.264286 6.605846 -1.488646 -5.784545 -2.267069 1.887152 3.884421 3.472395 -2.374981 -7.989441 -4.802745 4.394686 -5.570200 -2.657918 -0.151302 0.048930 -0.459391 0.654186 -8.301668 3.338032 6.945008 -3.725203 -2.261174 9.598011 0.255997 9.803595 0.675173 1.690636 0.852263 5.794531 7.242477 0.602081 -2.251223 -6.072156 -8.953305 1.500934 0.864335 -2.458202 -5.656549 -3.420179 3.389224 4.833879 2.281427 7.597333 -0.632658 13.454132 4.804440 -3.860701 -7.605950 -9.620069 -6.436150 -3.390506 1.415713 -1.969839 -5.876908 0.315395 5.372226 1.175825 -1.233333 3.775443 0.213041 4.201554 1.057194 -1.498607 0.321543 -2.952391 4.284560 -6.221814 -3.817578 5.936830 6.936603 6.765218 0.628940 -0.967808 2.715586 -2.557060 -5.651792 2.691122 2.229869 3.684918 11.194493 7.779619 16.031174 -2.654195 -2.463184 -0.458402 -1.506641 -2.163449 1.088056 -7.380969 4.109339 0.794025 -2.158784 12.062532 -0.503054 -2.956769 7.513123 0.496956 1.441216 -8.441311 5.876368 -4.732057 2.419402 -3.082169 -1.604071 -6.691139 -2.884640 -7.461572 -3.919020 12.356000 -6.853182 -9.527685 2.765298 -2.811527 5.599663 -12.367220 10.456333 -3.768936 5.815819 -1.924159 -5.563964 0.491881 1.116444 -0.770333 4.051982 2.974508 -5.025277 3.208586 4.211935 1.734782 1.444535 2.227348 4.200997 -0.380235 2.137260 -3.643777 3.383550 -0.726357 0.463719 -3.599596 -1.541253 2.104908 6.093219 -1.746365 -0.213275 4.065535 -1.281582 0.232350 7.511910 0.478933 -3.793742 -0.716737 -2.050497 8.653916 -7.850681 -5.736865 -3.803672 2.720923 2.279463 1.387494 -12.643331 -5.247439 -7.152516 -8.559589 -4.774796 2.600002 3.601094 4.560657 -2.235292 -9.421945 -6.671197 10.194501 0.952325 4.539200 5.971804 1.107923 10.249506 4.054891 3.618284 -2.783492 -1.149925 1.569499 -2.426565 -0.525332 -4.820878 3.307276 -9.333357 8.891092 7.989211 -4.397263 5.972685 -1.010607 6.594546 -11.384035 10.505516 4.374478 -11.836635 -0.023665 8.007425 5.234419 -9.667753 -6.591519 -PE-benchmarks/n-queen-problem.cpp__main = -0.037619 -0.297992 0.351730 0.320907 -0.008186 0.048204 0.192336 0.007350 0.189443 -0.000514 -0.139211 0.088707 -0.330209 0.072551 -0.024239 0.133536 -0.238364 -0.280864 0.040752 0.028710 0.012224 -0.174650 0.144652 0.070505 0.165768 0.238728 -0.096428 -0.172849 -0.341784 0.067592 0.225750 -0.111853 0.205349 0.370084 -0.010923 -0.324071 0.083278 0.176436 -0.079382 -0.344372 0.115882 -0.173292 0.089317 -0.226682 0.077061 0.114784 0.141068 0.192916 0.076138 0.100055 -0.056654 -0.129430 0.037817 0.229201 -0.110992 0.137591 0.235166 0.021791 0.018158 -0.100913 0.117335 -0.033040 0.134352 0.187458 -0.132528 -0.127141 -0.182742 -0.284562 -0.273929 0.122693 -0.014542 0.223115 -0.290191 -0.066342 -0.071730 -0.021601 -0.453901 0.249072 0.413363 -0.291395 0.305418 0.113452 0.204945 -0.069682 0.028706 0.109729 -0.039034 0.102372 -0.101995 0.019595 -0.297909 -0.108595 -0.026710 -0.090413 -0.060130 -0.165856 0.171632 -0.033205 -0.235846 0.084599 0.011899 0.023724 0.012612 0.181070 -0.006447 0.295211 -0.170657 -0.215987 -0.033993 -0.039808 0.105311 -0.062806 0.002794 0.122785 -0.179143 -0.295137 -0.301101 -0.041212 0.030900 -0.265253 0.123495 0.172124 -0.178703 0.150405 -0.008817 -0.042823 -0.064491 0.405581 0.204431 0.043543 0.196863 -0.131254 -0.236061 0.070384 0.202221 0.541619 -0.155324 0.065788 -0.015485 0.006359 -0.013380 -0.189772 0.123784 0.025209 0.181354 -0.244261 -0.206711 -0.217241 -0.058842 -0.289455 0.072227 -0.211388 0.248328 0.202921 0.198587 0.182316 0.159130 0.576609 -0.293009 0.089466 -0.031307 -0.062436 0.059244 0.339278 0.137662 -0.094940 -0.182036 0.124097 0.093870 0.011067 0.119619 -0.057285 0.046725 -0.263536 -0.041941 0.177047 0.125176 -0.129613 0.212216 0.099644 -0.188552 -0.106919 -0.006024 0.107254 0.027554 -0.030211 0.074154 -0.328663 0.290666 -0.052686 -0.043269 0.006630 -0.004060 -0.114349 0.179991 -0.152199 0.030353 -0.147067 0.046447 -0.154943 -0.088424 -0.296320 0.228457 -0.047898 -0.183142 0.002198 0.094302 0.310162 0.073692 -0.038517 -0.034231 0.084804 0.104819 -0.241774 0.259355 -0.154002 0.244251 -0.020630 -0.085724 0.028206 -0.037940 0.011141 -0.239500 0.146894 0.009230 0.006289 0.208759 0.126798 -0.128850 0.164734 0.210600 0.040825 0.099439 -0.017664 0.063950 -0.033893 -0.061568 0.177091 -0.089618 0.106217 -0.016558 -0.051389 0.491561 0.213152 0.159385 0.322227 0.013000 0.187820 -0.162123 -0.011095 0.022515 0.393526 -0.120736 0.002247 -0.124495 0.151886 -0.096208 0.111032 -0.241023 -0.473765 -0.007122 -0.244943 -0.096468 -0.111186 0.065772 -0.021756 0.049156 -0.240929 -0.160711 -0.122716 -0.152372 0.266721 0.073440 0.026331 0.237781 0.185542 -0.223883 -0.144808 0.183797 0.187740 -0.042715 0.088381 -0.195215 0.085571 -0.244536 -0.014687 0.298791 -0.134812 0.009335 -0.086959 0.459574 -0.151476 0.465535 0.174421 -0.244544 0.244115 0.172612 0.313170 0.133312 -0.163052 -PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -0.686553 -2.047017 2.904863 2.210224 0.219081 0.778414 1.025584 -0.313915 0.727002 1.274273 -1.098330 1.668060 -1.898719 -0.182972 0.552723 0.447789 -1.766335 -1.884472 0.309622 -0.131651 -0.668832 -1.301077 -0.630385 1.980345 1.281979 0.662712 -1.009181 -0.045390 -2.636697 -1.775051 -0.720034 -0.353291 1.263314 0.904343 1.394149 -2.300638 1.222717 1.879150 0.172393 -2.290107 0.516250 -1.049994 0.105576 -0.172934 0.188437 1.224573 1.772622 1.285820 0.689199 0.682019 0.034115 -1.265405 0.474988 1.670584 0.459602 1.527683 1.934375 -0.852395 0.336024 -0.525887 0.372917 -1.711530 1.010371 0.850578 -1.264367 -0.590413 0.382881 -0.593129 -1.055562 0.995461 1.301069 -0.654384 -1.369611 -1.148245 -0.942058 -0.425135 0.439254 1.146982 2.849161 -1.054217 2.618105 1.151573 1.737033 -0.137117 1.363496 -0.137208 1.823317 0.372223 -1.393850 -0.282216 -2.467709 -1.403879 -0.500760 1.408442 -0.567834 0.378501 0.558765 -1.868562 -2.502628 0.866047 -0.294907 -0.749248 -1.183105 1.093172 1.226894 1.045495 -0.000844 -1.742546 -0.825018 0.539877 -1.553168 -0.534678 -0.249340 -0.025700 -0.866164 -0.112135 -2.180338 0.221365 1.185935 -1.218454 -0.488421 1.785898 -0.767655 1.891395 0.152037 0.321044 0.308451 1.327379 1.521872 0.143979 0.689673 -1.506723 -1.823398 0.325473 0.377590 0.668620 -1.270052 -0.320606 0.631566 0.677253 -0.099345 0.613922 -0.636202 2.674499 1.143224 -1.352067 -1.815544 -1.882723 -1.037893 -1.029747 0.601522 -0.995128 -0.647119 -0.157349 1.334444 0.421206 0.021042 2.258454 -1.108793 1.314063 0.281683 -0.090109 0.292543 0.070910 1.141338 -1.456419 -0.850341 1.215238 1.419754 0.530182 0.104057 -0.577696 0.612410 -1.437829 -1.530188 1.113554 0.162961 0.743630 2.011806 1.284357 3.285466 -1.183726 -0.141547 0.281165 0.080293 -0.624186 0.520162 -1.843849 1.229756 0.031070 0.476481 2.394879 0.117405 -1.275513 1.059874 0.218782 0.224531 -1.707488 1.195937 -1.016136 0.606277 -0.657096 -0.039207 -1.232728 -0.880031 -1.164717 -0.144940 2.586919 -0.307317 -2.771388 0.742278 -0.684961 1.789199 -3.126382 1.802241 -1.087063 1.320538 -0.631451 -0.824816 0.112367 -0.303627 -0.168591 0.683669 0.754187 -0.357407 0.895551 1.049438 0.582592 0.475141 0.679134 0.867305 0.149232 0.451534 -0.446032 0.571168 -0.138901 0.030843 -0.509596 -0.502449 0.599319 1.196015 -0.681540 0.430824 1.514523 -0.164012 1.033521 1.213712 0.353486 -0.969467 0.191047 -0.196808 2.197703 -1.369110 -1.065152 -0.731932 0.504945 0.085543 0.826453 -2.592337 -1.878443 -0.352548 -2.824191 -1.239110 0.412097 0.973832 0.737419 -0.106999 -1.995792 -1.044289 1.657849 0.363787 2.850687 0.948727 0.299772 1.873553 1.026074 -0.021314 -1.130674 0.033571 0.441263 -0.850877 -0.169644 -1.215768 0.750761 -1.807805 1.588629 1.875133 -1.161788 0.735249 -1.137552 1.747143 -2.220325 2.511638 1.182050 -2.341412 0.388216 1.054844 1.951419 -1.444893 -1.523890 -PE-benchmarks/n-queen-problem.cpp__solveNQ() = 0.197842 -0.903236 1.779297 1.278934 -0.418405 0.172501 0.259367 -0.269830 0.612745 -0.243120 -0.685974 0.727482 -0.896427 0.099406 -0.033996 0.421926 -1.709928 -0.958162 0.197836 0.002749 -0.253410 -0.618073 0.190355 0.802674 0.751702 1.577397 -0.522083 0.022209 -0.884778 -0.646231 0.394558 -0.396645 0.688721 1.563320 0.718563 -1.345967 0.760636 0.588419 -0.114153 -1.333358 0.348343 -0.567473 0.047461 -1.028377 0.048060 0.685927 0.758695 1.293417 0.449775 0.328079 -0.822485 -0.532151 0.308511 0.620005 0.049452 0.462554 0.913453 -0.364071 0.286520 -0.482716 0.356088 -0.555029 0.395159 0.620160 -0.570571 -0.615976 -0.179310 -0.943428 -0.601066 0.808474 0.466341 0.295296 -1.118096 -0.404391 -0.673755 0.071037 -0.992673 1.340415 1.460393 -0.935677 1.065040 0.403454 0.923126 -0.172243 0.349936 0.195635 0.718470 0.413746 -0.515762 -0.242471 -1.481759 -1.034053 -0.046878 -0.543248 -0.161384 -0.566097 0.330180 -1.502718 -1.055666 0.268418 0.182090 -0.336423 -0.082453 0.532791 0.658302 0.759014 -0.034697 -0.644123 0.158481 0.034678 -0.560315 -0.093566 0.009395 0.638030 -0.488626 -0.271552 -1.318297 0.200667 0.341237 -0.485826 0.593319 0.779929 -0.221591 0.507446 -0.035403 -0.039732 -0.045271 1.259367 0.695388 0.065456 0.551436 -0.361143 -0.045889 0.847815 0.645553 0.745841 -0.727038 -0.171287 0.083933 0.358939 -0.360972 -0.637677 -0.336585 0.725691 0.291836 -0.973231 -1.164058 -1.004616 -0.872806 -0.905051 0.227549 -0.648457 -0.069769 0.853697 0.764373 0.642453 0.473863 1.033369 -1.150774 0.412388 -0.028195 0.226887 0.271290 0.957959 0.573887 -0.598920 -0.323390 0.710029 0.155244 0.341895 0.050372 -0.413212 0.433364 -0.902405 -0.623798 1.054126 0.520938 0.305946 0.848748 0.623221 -0.095957 -0.462255 -0.290539 0.513449 0.056488 -0.526086 0.505910 -0.981042 1.127202 -0.149153 0.571860 0.687050 -0.030334 -0.409259 0.498663 0.092370 0.106260 -0.637658 -0.028015 -0.470894 -0.032741 -0.595744 0.568379 -0.535228 -0.530041 -0.583344 -0.313259 1.366073 -0.521020 -0.913043 0.605784 -0.685041 1.215211 -1.230836 0.302500 -0.631766 0.722347 0.178025 -0.292625 0.034640 -1.072619 -0.378605 -0.324286 0.438086 0.051286 0.071007 0.507714 0.555137 -0.094105 0.408148 0.622079 -0.001754 0.669899 -0.075303 0.154448 -0.321856 0.033166 0.130865 -0.204111 0.050773 0.213876 -0.099017 1.278690 0.565895 0.873169 1.294197 0.200558 0.611817 -0.710166 -0.141488 -0.199178 0.987762 -0.685492 -0.551107 -0.232664 0.455592 -0.292860 0.455629 -1.280279 -1.800741 -0.901011 -1.203052 -0.735934 -0.765215 0.589957 -0.046913 -0.046534 -0.844937 -0.576961 0.434744 0.071003 1.064424 0.552075 -0.185940 0.958580 0.718664 -0.627161 -0.617554 0.519432 0.622686 -0.133217 0.288525 -1.302510 0.667829 -0.950912 0.336624 1.652774 -0.925257 0.225349 -0.955798 1.547377 -0.960614 1.440079 0.624251 -1.472417 0.194775 0.481166 0.597705 0.336420 -0.870047 -PE-benchmarks/sieve-of-eratosthenes.cpp__main = -0.079946 -0.453322 1.265862 0.809719 -0.465734 0.039399 0.250610 -0.335284 0.398368 -0.901176 -0.295635 0.245675 -0.777515 0.258929 -0.538441 -0.017024 -1.373782 -0.691992 -0.261419 -0.357788 -0.141208 -0.318928 0.395484 0.438987 0.508482 0.849907 -0.497391 -0.181042 -0.915059 0.439912 0.880964 -0.200460 0.557478 0.759160 0.052763 -1.902269 0.439866 0.456033 -0.331304 -0.715607 0.593570 -0.777327 0.036497 -1.031017 -0.482278 -0.018214 0.083104 0.639326 0.399743 -0.169167 -0.596356 0.131973 -0.266480 1.303026 -0.517841 0.273905 0.561928 -0.088473 -0.187795 -0.219401 0.102652 0.012756 0.283838 0.293883 -0.484346 -0.698659 -0.089273 -0.978368 -0.560881 0.604185 0.145105 0.405866 -0.522953 -0.128542 -1.057988 -0.122302 0.260952 0.994129 0.943022 -0.908718 0.514464 -0.150163 0.284940 0.093061 0.177631 0.366450 0.395782 0.181258 0.055349 -0.223542 -1.226147 -0.010646 0.039536 -0.346001 -0.152481 -1.191895 0.437496 -1.280289 -0.699841 -0.045718 0.288255 -0.399628 -0.065019 0.103266 0.129710 0.521413 -0.341469 -0.472495 0.024729 0.237028 0.014044 0.030671 0.190722 0.360393 -0.232420 -1.023037 -1.017265 0.434562 -0.037440 -0.119360 0.285631 0.723799 -0.588174 0.007654 0.070502 0.198546 -0.499019 1.116607 -0.066652 -0.140116 0.111646 -0.129369 0.171302 -0.232647 0.427544 1.578891 -0.645452 -0.335388 -0.299517 0.110613 -0.527741 -0.821909 0.072472 0.161949 0.033144 -0.812492 -0.555060 -0.500329 -0.487989 -1.220967 -0.212047 -0.410439 -0.187062 0.953975 0.564922 0.908774 0.589028 1.245209 -0.428555 0.351936 0.046982 -0.409714 0.506360 0.380505 0.482981 -0.371899 -0.503303 0.325617 -0.504247 0.605050 -0.031992 0.122691 0.033844 -0.882433 -0.417077 0.355888 0.652952 0.160986 0.605218 0.726858 -0.603066 -0.868281 0.167643 0.531996 -0.315579 -0.184436 0.273264 -0.594440 0.444965 0.232874 -0.319658 0.539528 0.009155 -0.478642 0.242114 -0.050735 0.294256 -0.525978 -0.226777 -0.278195 -0.114184 -0.864849 0.221632 -0.286419 -0.431258 -0.550598 -0.786838 0.937306 -0.956962 -0.704558 0.593790 0.256499 0.947061 -1.196489 0.236245 -0.476045 1.221093 0.130921 -0.011723 0.117853 -0.549145 -0.695506 0.123194 0.209796 -0.254718 0.028471 0.661106 0.603137 0.112586 -0.035538 0.777709 -0.045384 0.726969 -0.354002 0.348850 -0.262466 -0.642464 0.456545 -0.154165 -0.162369 -0.042765 0.540717 1.200779 0.510987 1.120204 1.052163 0.541002 0.838612 -0.383810 -0.166314 -0.255087 0.569907 -0.246955 -0.335426 0.045488 0.740649 -0.129522 0.214547 -0.938437 -1.798058 -1.114081 -1.148402 0.241433 -0.821812 0.030096 -0.066028 0.005184 -0.961084 -0.398377 -0.182508 -0.340758 1.463179 0.469253 -0.029690 0.639812 0.783146 -0.948469 -0.172314 0.960868 0.861045 0.063621 0.255980 -1.385585 0.774246 -0.668032 0.058789 1.365671 -0.643388 0.364395 -0.193133 1.122820 -0.579727 1.331957 0.327493 -1.071854 0.560193 0.478063 0.400243 1.005724 -0.483297 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -0.022989 -0.464921 0.794457 0.610887 -0.091081 0.052567 0.371893 -0.089142 0.262167 -0.142747 -0.189889 0.265219 -0.571149 0.163438 -0.222715 0.195817 -0.608207 -0.497229 -0.048117 -0.093185 -0.070889 -0.246237 0.289982 0.214881 0.425587 0.365040 -0.287518 -0.362587 -0.671711 0.083135 0.394523 -0.140547 0.394218 0.400900 -0.010547 -0.984249 0.222107 0.373621 -0.164732 -0.586081 0.353237 -0.351811 0.075688 -0.454075 -0.068639 0.088450 0.214089 0.385150 0.215705 0.144206 -0.175429 -0.035834 0.054543 0.765153 -0.226373 0.255201 0.427616 -0.013391 -0.040932 -0.161876 0.150254 -0.088272 0.207421 0.197511 -0.184876 -0.349162 -0.230641 -0.528291 -0.417060 0.284921 0.073824 0.267565 -0.460042 -0.099903 -0.383636 -0.054265 -0.354302 0.550764 0.695628 -0.589552 0.485250 0.059770 0.239988 -0.062823 0.041613 0.190331 0.002971 0.164309 -0.043746 -0.123874 -0.655618 -0.087828 -0.048206 -0.133166 -0.152257 -0.629159 0.364523 -0.328160 -0.494235 0.095012 0.113475 -0.170858 -0.018785 0.172593 0.005100 0.472020 -0.288339 -0.368586 -0.128934 0.020838 0.146228 -0.088591 0.067636 0.161223 -0.250653 -0.539838 -0.618355 0.117895 0.037039 -0.308340 0.096767 0.370846 -0.319055 0.220345 0.010889 0.088019 -0.195609 0.683062 0.234260 0.052859 0.276569 -0.129182 -0.265735 -0.018993 0.356160 0.977627 -0.367474 0.005371 -0.158416 0.076947 -0.129328 -0.312199 0.161534 0.192908 0.239485 -0.491500 -0.432983 -0.365991 -0.131455 -0.567988 0.031898 -0.323972 0.175301 0.431258 0.354434 0.356804 0.284613 0.935515 -0.403009 0.231099 0.045516 -0.202395 0.199278 0.355469 0.274764 -0.240004 -0.354943 0.217133 0.024914 0.217317 0.046682 0.066151 0.097682 -0.513262 -0.190522 0.193445 0.294220 -0.153503 0.396872 0.331466 -0.163967 -0.393134 -0.019212 0.257822 -0.132057 -0.088890 0.152111 -0.549913 0.401780 -0.002451 -0.151680 0.266731 0.021888 -0.301678 0.374780 -0.184926 0.080532 -0.286518 0.047087 -0.274323 -0.177867 -0.503575 0.211094 -0.116032 -0.263008 -0.184943 -0.138206 0.632974 -0.234677 -0.286024 0.120490 0.115105 0.287334 -0.708967 0.561695 -0.282612 0.469860 0.009266 -0.113934 0.066927 -0.067354 -0.235263 -0.174830 0.208688 -0.106470 0.064595 0.518871 0.263838 -0.108208 0.109166 0.448442 0.012447 0.358765 -0.118544 0.217060 -0.123179 -0.302987 0.202688 -0.107190 0.046927 -0.048852 0.088576 0.803102 0.301633 0.428515 0.584381 0.227207 0.502306 -0.292494 0.028033 -0.070055 0.610361 -0.221435 -0.126086 -0.073484 0.358653 -0.120780 0.255372 -0.555668 -0.976247 -0.315846 -0.652133 0.017517 -0.316732 0.119227 -0.114795 -0.030138 -0.583848 -0.342695 -0.182753 -0.211392 0.576069 0.307548 0.020039 0.449970 0.378917 -0.455787 -0.114081 0.383543 0.432013 0.028181 0.044512 -0.499398 0.259958 -0.481288 0.017374 0.712663 -0.287784 0.176392 -0.156487 0.742297 -0.370481 0.877937 0.237018 -0.566377 0.405073 0.378466 0.472490 0.283727 -0.314293 -PE-benchmarks/sudoku.cpp__main = 0.395902 -0.676246 1.667561 1.234640 -0.510207 0.094933 0.124251 -0.418635 0.584987 -0.391701 -0.618134 0.547772 -0.856220 0.180317 -0.057045 0.454434 -1.735433 -0.811246 0.038332 -0.071258 -0.210819 -0.564814 0.380635 0.691419 0.759843 1.682841 -0.498843 0.118448 -0.683051 -0.561753 0.461960 -0.351646 0.631558 1.747536 0.667764 -0.904438 0.794535 0.513012 -0.135442 -1.095455 0.386828 -0.540109 -0.018561 -1.087936 0.059279 0.674218 0.507797 1.243209 0.550989 0.259795 -0.775376 -0.430701 0.284893 0.231983 -0.071548 0.348487 0.668683 -0.328241 0.272310 -0.476737 0.275104 -0.329590 0.307902 0.580820 -0.521768 -0.707031 -0.184621 -0.917385 -0.542358 0.875802 0.336498 0.315038 -1.142245 -0.389671 -0.579420 0.167245 -0.983155 1.339150 1.253862 -0.827018 0.784036 0.273584 0.640573 -0.275420 0.232152 0.163190 0.665482 0.361701 -0.337630 -0.247473 -1.339895 -1.021778 0.050192 -0.645207 -0.161620 -0.481892 0.264456 -1.527265 -0.940309 0.083742 0.299800 -0.409725 0.032672 0.596831 0.536387 0.605978 0.105115 -0.529766 0.428028 0.026832 -0.403157 -0.045123 -0.101155 0.666661 -0.472036 -0.223733 -1.259518 0.253082 0.131808 -0.348152 0.701058 0.647460 -0.145371 0.264967 -0.009963 -0.029780 -0.080251 1.218326 0.464503 0.129117 0.539421 -0.184627 0.339340 0.901165 0.667700 0.594566 -0.682644 -0.134714 -0.041895 0.280566 -0.514585 -0.702147 -0.340803 0.550618 0.180931 -0.988157 -1.071184 -0.746816 -0.988057 -0.935521 0.203879 -0.582182 -0.082646 0.798315 0.681327 0.643836 0.554358 0.920425 -1.093091 0.195030 0.032745 0.210669 0.384276 1.006264 0.538536 -0.531018 -0.286453 0.716571 -0.077410 0.275895 -0.005823 -0.248391 0.369673 -0.890464 -0.477819 1.076756 0.442832 0.327299 0.763220 0.602417 -0.400877 -0.205777 -0.167783 0.635843 0.061200 -0.501957 0.534288 -0.867219 1.084521 -0.155780 0.643099 0.581327 -0.052406 -0.244176 0.395429 0.085196 0.166703 -0.638590 -0.130475 -0.384991 0.056703 -0.659323 0.579353 -0.351117 -0.529709 -0.436559 -0.280225 1.207249 -0.436959 -0.743148 0.700171 -0.657699 1.177311 -0.959502 0.074308 -0.580824 0.633023 0.264549 -0.222722 0.096177 -1.268294 -0.495431 -0.357779 0.357949 0.175541 -0.008051 0.391378 0.554959 -0.188641 0.297705 0.584062 -0.020964 0.838552 -0.080521 0.197878 -0.253429 0.094762 0.196232 -0.170638 -0.168395 0.043139 -0.097057 1.362028 0.500832 1.017916 1.274374 -0.003630 0.744227 -0.639258 -0.056762 -0.187773 0.678559 -0.597406 -0.553473 -0.005254 0.410666 -0.347504 0.443037 -1.147914 -1.783782 -0.823354 -1.069601 -0.635992 -0.937722 0.641464 -0.091523 -0.105482 -0.619023 -0.582471 0.389608 0.084660 1.043593 0.446862 -0.254630 0.777095 0.728357 -0.668183 -0.437281 0.502832 0.695397 0.009885 0.306215 -1.327124 0.761687 -0.775064 0.172366 1.663753 -0.973051 0.245214 -1.072878 1.486080 -0.886169 1.243769 0.475843 -1.292325 0.298702 0.356445 0.346690 0.595022 -0.780142 -PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -1.545345 -2.404174 3.966963 2.446745 -0.106235 0.671453 1.308653 0.269572 -0.243205 0.676574 -0.671544 2.703533 -1.609371 -0.494479 -0.801005 0.024544 -2.106879 -2.090231 -0.306659 -0.628827 -0.896041 -0.417514 -1.245356 2.949067 1.875950 0.518793 -1.748585 -0.379763 -3.663900 -2.740220 -1.352302 0.101796 1.484523 -1.116797 1.622644 -4.606273 1.335280 3.137632 0.143466 -2.659979 1.278902 -0.815165 0.148658 -0.047305 -1.610631 0.738308 2.161761 -0.354948 0.326627 0.390227 -0.636456 -0.207022 0.895625 4.008860 1.171013 1.916966 2.768233 -1.013130 0.519082 -0.910969 0.250275 -2.282611 0.600923 -0.554990 -0.602470 -0.932874 -0.029063 -0.669096 -0.421095 0.670977 0.946855 -1.409176 -0.711077 -1.417138 -3.623373 -1.050895 2.512338 1.282767 2.714768 -1.870549 2.859576 0.952625 1.118826 0.891094 1.451411 0.174280 1.229464 0.569153 -0.175634 0.109839 -1.595915 -0.387975 -0.794100 2.637378 -1.400286 -1.585377 1.628394 -4.088689 -3.038776 1.452185 -0.357325 -1.673985 -1.416467 -0.095960 0.693394 1.355249 -0.706177 -1.560355 -1.712477 0.667986 -0.664823 -0.492888 0.532790 0.237252 -0.326603 0.088185 -2.606579 1.518958 1.350016 -0.516937 -1.075906 2.240111 -0.295188 2.527251 0.137729 1.188020 -0.509836 1.668068 1.709996 -0.215525 -1.409418 -0.899964 -1.943089 -1.662504 0.114987 0.541235 -2.199938 -1.253593 0.100758 0.904912 0.389581 0.745291 -0.959710 3.560282 1.351502 -1.184510 -1.849858 -2.523856 -2.049968 -1.739786 -0.509526 -0.568224 -2.178238 1.237892 1.142229 0.311667 -0.201210 2.487492 0.240749 0.751155 0.619855 -1.481701 0.262530 -1.956199 1.133159 -1.384854 -1.073317 1.229749 1.043551 2.638781 -0.253159 0.206895 0.473131 -1.030164 -1.943800 0.798505 0.754289 1.009902 2.156482 2.052453 3.232600 -1.888072 -0.836349 -0.075484 -1.255930 -0.609434 0.521855 -1.646367 0.413062 0.418132 -0.900879 3.098478 0.144822 -1.189775 2.231829 -0.011619 0.378373 -2.020817 1.636181 -1.333138 0.591600 -0.805751 -1.493779 -1.687884 -0.306524 -2.652985 -2.315183 3.216146 -2.901460 -3.368187 0.709820 0.784414 1.969035 -4.029692 1.602459 -0.890964 3.030855 -0.107756 -0.512073 0.694833 0.053147 -0.486038 0.995994 0.592435 -1.577669 0.737996 1.244615 0.638008 0.468910 -0.077316 1.397458 -0.419782 1.240139 -1.046378 0.843808 -0.689891 -1.517353 -0.910121 0.075646 -0.001825 1.363909 0.386857 -0.824557 0.508750 0.334958 0.256194 2.681471 0.932874 -1.026424 -0.330457 -0.779899 2.819408 -1.340119 -1.508433 -0.759179 2.060134 0.861879 0.655027 -3.240959 -2.324836 -2.903688 -4.036004 -0.633733 0.322431 0.330775 0.651743 -0.796796 -2.670849 -1.806434 2.696205 0.388112 2.983010 1.785877 0.142490 2.658875 0.861981 0.140968 -0.635068 0.777527 1.002998 0.104838 -0.403002 -1.852201 0.965760 -2.411631 1.458792 2.605216 -1.325475 1.904769 0.531374 0.820871 -2.904150 3.455593 0.548630 -3.558060 0.381690 2.180687 1.964753 -2.017165 -1.644574 -PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -1.249987 -2.770739 4.873356 3.453285 -0.014662 1.011515 1.552408 -0.977211 1.080720 1.631899 -1.331532 2.479752 -2.886879 0.090094 -0.169703 0.956111 -3.199729 -2.706757 0.007119 -0.955687 -1.550052 -1.736324 -0.506028 2.544054 2.317193 1.516713 -1.872215 -0.282194 -3.790424 -3.655275 -0.770909 -0.554489 1.998037 1.141513 1.670834 -5.033453 2.171911 3.064244 -0.168704 -3.017812 1.265830 -1.674583 -0.012697 -0.432509 -0.103163 1.607340 2.280535 1.522286 1.494759 0.970972 0.426027 -1.240936 0.947706 3.491498 0.127775 2.293468 2.618825 -1.349679 0.115193 -0.654387 0.431658 -2.301211 1.503482 1.015310 -1.614514 -1.490926 0.601832 -1.153565 -1.543150 1.827850 1.711906 -1.196810 -1.951168 -1.718151 -2.082833 -0.914157 0.497153 1.693862 4.298793 -1.738259 3.741538 1.315066 1.987357 -0.106661 1.930292 -0.098370 2.936581 0.579465 -1.660819 -0.508696 -2.816102 -1.420488 -0.601876 3.011143 -1.032198 -0.588193 1.329497 -3.548542 -3.883282 1.192179 0.018741 -1.434455 -2.189181 1.073499 1.565402 1.260693 -0.419099 -2.725521 -1.426504 0.703435 -1.985471 -0.682671 -0.185734 -0.342974 -1.214990 0.129027 -3.547391 0.704907 1.272506 -1.533792 -1.266779 2.814000 -0.372641 2.351874 0.303805 1.172276 -0.087452 2.178763 1.504351 0.605409 0.289063 -1.064282 -2.791325 -0.452387 0.996494 0.966004 -2.270602 -1.298879 0.151260 0.988310 -0.801025 0.765155 -1.269863 4.267525 2.587946 -2.147162 -2.808289 -2.443017 -1.432437 -2.340560 0.587823 -1.536430 -1.505710 -0.322034 2.088336 0.547688 0.478728 3.394916 -1.431071 2.038310 0.422473 -0.622475 1.062310 -0.322153 1.954631 -2.292443 -1.443440 1.774169 1.721844 1.507176 -0.110702 -0.467912 0.857939 -2.293174 -2.357022 1.799834 0.444583 0.782568 2.919413 2.340025 5.839935 -2.473999 0.031789 0.878790 -0.420249 -0.836040 1.034690 -2.713078 1.632737 0.391551 0.206624 3.920421 0.291956 -2.011150 1.701832 0.232635 0.499965 -2.806298 1.674212 -1.598995 0.874537 -1.211059 -0.387775 -1.913016 -1.171197 -1.870295 -1.007083 3.989330 -1.813976 -4.113905 1.840630 -0.683837 2.649786 -5.259088 2.828136 -1.766295 2.018110 -1.327852 -1.097999 0.243885 -0.049834 -0.889222 1.520969 1.028107 -1.004844 1.450243 2.304435 1.113810 1.025711 0.334075 1.929415 0.026158 1.319067 -0.838966 1.473118 -0.203619 -0.598691 -0.934965 -0.688978 0.165019 1.395805 -0.306051 0.783752 2.165096 0.028762 1.496972 2.284441 1.451680 -1.480235 0.592518 -0.420350 3.109205 -2.043327 -1.899392 -0.448770 1.295945 -0.037308 1.415891 -4.173857 -3.318511 -1.326695 -4.527099 -1.397136 0.789473 1.492709 0.828249 -0.368689 -3.198710 -1.725882 3.318458 0.384919 4.329815 1.696889 0.465668 2.785717 1.857226 -0.252981 -1.418408 -0.100046 0.974015 -0.667853 -0.436983 -2.236350 1.625384 -2.801090 2.202656 3.130969 -2.088877 1.384480 -1.115338 3.112174 -3.494943 4.092963 1.433322 -3.422707 1.203056 2.087064 3.189393 -1.659657 -2.148756 -PE-benchmarks/rotate-bits-of-an-integer.cpp__main = -0.668271 -1.050569 3.178294 1.583368 -1.646303 0.286275 0.096806 -0.767436 0.270600 -3.298841 -0.791562 1.029045 -1.438682 0.126412 -1.961360 -1.215800 -3.475438 -1.444513 -0.932681 -1.170833 -0.489021 -0.288127 -0.170647 2.088994 1.046894 2.242431 -1.214589 0.180225 -2.636700 1.338900 1.521740 0.046847 1.158613 1.052252 0.702452 -5.294695 0.833397 1.671393 -0.567272 -1.758416 1.485385 -2.102696 -0.228407 -2.395740 -2.143632 -0.398103 0.150308 1.116917 0.466292 -1.049917 -2.235205 0.767113 -1.016788 3.683458 -0.416443 0.784850 1.819600 -0.376761 -0.514035 -0.633424 -0.030181 -0.380582 0.407680 -0.219288 -1.357118 -1.640632 0.329398 -2.090928 -0.533755 1.102387 0.658203 -0.030319 -0.354770 -0.769969 -3.908786 -0.555216 2.900489 2.284155 1.654887 -2.270542 1.154385 -0.728115 0.483406 0.818694 0.938794 0.797152 1.385550 0.363359 0.567501 -0.453554 -3.178630 0.462213 0.034644 -0.471572 -0.904726 -3.176411 1.337864 -4.965244 -1.839828 -0.137671 0.663862 -1.743334 -0.107513 -0.226284 0.162816 0.922302 -0.706346 -0.717053 0.002241 1.374009 -0.291279 0.210226 0.623433 1.323962 0.079375 -2.410711 -2.367823 2.061846 0.533314 0.582534 0.632844 2.155157 -1.233651 0.102172 0.145130 0.722923 -1.305928 2.587455 -0.516351 -1.170606 -0.996319 -0.247637 1.217919 -1.263802 0.309992 3.237355 -2.217744 -1.501601 -0.161825 0.478611 -0.918259 -1.878840 -0.669924 0.678562 -0.672176 -1.705252 -1.080837 -1.592587 -2.018956 -2.950468 -1.411646 -0.452395 -1.856706 2.865613 1.173835 2.672091 0.767030 2.443162 -0.043257 0.641769 0.510080 -1.544382 0.978680 -0.143600 1.048946 -1.138190 -1.168703 0.919543 -1.925721 2.414611 -0.351496 0.754109 0.001033 -1.810926 -1.399213 0.891150 1.889788 1.315587 1.867889 2.513408 -1.519411 -2.562398 0.146941 0.625722 -1.567670 -0.515243 0.556836 -0.847466 0.210759 1.088448 -0.958815 2.310930 0.058205 -0.853818 0.475504 0.362550 0.789549 -1.486723 -0.382915 -0.641487 -0.026379 -1.736182 -0.284729 -1.078417 -0.674081 -2.524792 -3.662915 2.360624 -3.968813 -2.515014 1.649545 1.213982 3.104083 -3.425076 -0.714328 -1.026481 4.100553 0.826997 0.247860 0.431870 -1.925472 -2.051967 1.259969 0.275217 -1.295297 -0.032315 1.241731 1.362244 0.675555 -0.530558 1.763869 -0.686424 1.918440 -1.403255 0.654881 -0.685322 -2.175079 0.867707 -0.200299 -0.850855 0.287156 1.905643 2.043001 0.895601 3.189582 1.948174 2.161117 1.635006 -0.701746 -0.871103 -0.947036 0.870654 -0.666072 -1.387053 0.153765 2.443421 0.571402 -0.144862 -2.603671 -4.416893 -4.250002 -3.407028 1.213721 -2.519486 -0.256689 0.132515 -0.380102 -2.512720 -1.161662 0.288349 -0.554658 4.716408 1.390346 0.096049 1.740813 1.668605 -2.139973 -0.048162 2.892830 2.375341 0.223105 0.662509 -3.900025 2.052782 -1.397557 0.448457 3.721850 -1.540066 1.706216 0.178349 1.874822 -1.718587 2.961236 0.551272 -3.641435 0.631252 1.296446 0.080562 2.230466 -1.239575 -PE-benchmarks/channel-assignment.cpp__main = 1.396874 -0.763595 3.375811 2.630413 -1.259055 -0.170378 0.351953 -1.104627 1.259457 0.026954 -0.737794 0.627480 -0.811628 0.820710 0.593250 2.050681 -3.267547 -0.639031 -0.110084 -1.000151 -0.682495 -0.245870 1.035141 -0.233633 1.685188 2.164958 -0.687192 -0.880946 0.630311 -0.994581 1.344517 -0.888475 1.059270 2.136563 0.637990 -4.033361 1.828175 0.242728 -0.880209 -1.625555 0.791806 -0.306357 0.140166 -1.490118 -0.235233 0.688196 0.604366 2.634694 1.143362 1.325791 -0.869809 -0.038751 1.545807 2.760224 -0.493923 0.462928 1.026967 -0.772527 -0.236597 -0.290890 0.725721 -0.103319 0.372772 0.457834 0.630691 -2.076118 -1.008196 -1.765770 -0.997885 1.109417 0.595093 0.273614 -2.003062 -0.724586 -0.213506 -0.165088 -4.904527 2.759808 2.175057 -2.204598 0.886675 0.480194 0.410738 0.007213 -0.088057 0.603412 0.715224 0.830931 -0.077088 0.303327 -0.504731 -2.153656 1.170843 -2.161606 -0.457843 -3.821621 0.626495 -0.843173 -1.188293 0.867586 1.422480 -0.423491 0.320022 -0.735650 0.559810 1.031368 -0.866072 -0.680147 0.350386 -0.692289 0.201610 -0.247981 -0.359619 0.630513 -0.582344 -0.145246 -2.365209 0.694211 -0.085453 -0.195287 0.968727 0.788202 0.319385 -0.303476 -0.340704 0.376669 -0.817804 2.529224 0.401626 1.207061 0.870625 0.972754 0.188766 1.977305 1.742555 0.875131 -0.058113 -0.388512 -0.943426 0.667183 -1.224950 -0.178937 0.667257 1.195172 1.366150 -0.764638 -1.841513 -0.986135 -1.136048 -1.712832 0.925544 -1.171053 0.147211 1.509672 1.153852 0.988577 1.502235 0.412784 -2.001126 0.317394 -0.857386 0.752734 1.155842 1.896604 1.032405 -0.676749 -0.046541 0.570771 0.220690 0.452413 0.328631 -0.434813 0.985679 -1.450435 0.039727 1.117018 1.085937 -0.905424 0.669832 1.005756 1.362175 0.099761 -0.510956 1.360022 -0.416078 -0.607658 1.040590 -1.464781 1.327515 -0.114147 0.505375 0.697513 -0.028289 -0.266200 0.603400 -0.394285 -0.263730 0.001051 -0.537020 -0.501358 -0.669039 -0.751752 1.719947 -0.986635 -0.505410 -0.427959 -0.090053 2.003016 -1.619607 0.094324 1.453609 -1.781011 0.665733 -1.023240 3.256484 -1.066723 0.167098 -0.437823 -1.034358 0.063440 -1.182152 -1.513814 -0.180374 0.666449 0.572253 -0.695576 1.562274 1.065444 -0.520581 0.040385 1.574790 -0.611541 1.960855 -0.014218 1.339006 -0.913290 0.509141 -0.203253 0.000231 -0.613020 -0.873174 0.470037 2.323546 -0.324508 1.590962 1.483662 -0.018044 1.676046 -1.338687 1.140027 -0.326589 1.092225 -0.982577 -0.494662 0.655261 0.836952 -0.722669 0.961814 -1.882416 -1.995796 -2.326182 0.066848 -1.120988 -0.008445 0.912331 -0.997006 -0.362842 -0.876337 -1.164163 0.767357 -0.404011 -1.429764 1.210024 -0.205706 1.293646 1.336102 -0.525687 -0.667121 -0.026822 0.573501 0.802867 0.264407 -1.823292 1.663014 -1.356463 -0.417387 2.681481 -1.019914 0.206066 -0.911071 3.021983 -0.988962 1.827087 0.319775 -1.348088 0.816822 2.340923 0.927711 0.714167 -1.025613 -PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -1.891718 -3.674114 6.721706 4.801075 -0.035112 1.625007 1.748683 -1.704027 1.068630 2.739268 -1.559823 3.492390 -3.446244 -0.227286 -0.201351 1.241612 -3.932234 -3.184797 -0.446398 -1.926214 -1.990507 -1.899531 -1.112022 3.774643 3.182869 0.773553 -2.559782 -0.425515 -5.070661 -5.238666 -1.676836 -0.460822 2.598692 0.315569 2.242462 -6.691532 3.041098 4.405411 -0.347325 -3.706032 1.796605 -2.001009 -0.147628 0.045328 -1.050428 1.797568 2.673258 0.387070 1.921727 1.322742 1.153411 -1.093322 2.135101 5.536164 0.425556 3.409044 3.504912 -2.012714 0.398989 -0.428668 0.453699 -2.874868 1.944792 0.629589 -1.413050 -2.310260 0.593273 -0.905121 -1.592448 2.238908 1.542695 -2.556932 -2.127026 -2.576841 -3.577907 -1.657268 0.746198 2.255118 5.305022 -2.590145 4.847187 1.799421 2.046151 0.199568 2.894140 -0.124534 4.071334 0.788659 -1.786740 -0.177442 -2.512448 -1.545165 -0.465456 4.344223 -1.968049 -0.823092 2.183030 -5.574149 -5.486486 2.190221 0.345074 -2.268785 -2.990612 0.488625 1.535458 1.248303 -0.759749 -3.627738 -2.072427 1.509796 -2.089832 -1.120989 -0.640115 -0.912594 -0.959703 0.959675 -4.597322 1.479853 1.785748 -1.649326 -2.394800 4.057975 0.004074 2.958132 0.298198 2.046086 -0.426005 2.604531 1.403148 1.458431 -0.460103 -0.922030 -4.338723 -0.898863 1.155429 -0.258220 -2.941094 -1.462927 0.104134 1.426826 -0.848706 2.336058 -1.573486 6.248813 3.118100 -2.240731 -3.470122 -3.197405 -2.416265 -3.367071 0.512396 -1.777572 -2.906271 -0.010189 2.677652 0.906272 0.487430 3.698339 -0.977711 2.237669 0.590904 -1.239963 1.584019 -2.052627 2.517047 -3.166156 -2.056673 2.258906 2.508104 2.311051 0.061513 -0.190280 1.021243 -2.654537 -2.823429 2.001066 0.597266 0.975877 4.197953 3.602964 8.764596 -3.277967 0.145984 0.911814 -1.039653 -0.830389 0.775961 -3.526961 1.472324 0.925558 -0.065742 5.669026 0.350164 -2.258125 2.126014 -0.015732 0.821712 -3.680578 2.629821 -2.248742 1.185630 -1.289370 -1.505156 -2.685265 -1.475738 -2.701919 -1.802880 5.428917 -3.745615 -5.017266 2.993161 -0.359081 2.807926 -6.844221 4.708540 -2.316117 3.351886 -1.809970 -1.755046 0.104884 0.742976 -1.515905 2.504266 1.341615 -2.150412 1.996488 3.221339 1.358891 1.685167 0.008251 2.682666 -0.473285 1.998730 -1.571588 2.546147 -0.217407 -1.110449 -1.810673 -0.866443 0.063026 1.619055 -0.092072 -0.009013 2.442815 -0.325799 0.725313 3.694224 1.955852 -1.899951 1.311729 -0.757973 3.762938 -2.882556 -2.672336 -0.241035 1.702932 0.460176 1.538672 -5.864399 -3.539742 -3.083074 -5.012781 -1.598856 1.320906 1.724512 1.135404 -0.842109 -4.423413 -2.817296 4.712459 0.288977 4.018414 2.429243 1.074501 3.887234 2.545594 0.677124 -1.427111 -0.954926 0.963572 -0.623563 -0.936443 -2.709860 2.421173 -3.581848 2.993031 3.879616 -2.190331 2.413842 0.163014 2.352335 -4.814305 5.064193 1.656551 -4.373853 1.733338 3.635833 3.372139 -3.152798 -2.856006 -PE-benchmarks/bfs.cpp__main = 0.293892 -0.519233 1.627977 0.811799 -1.010813 -0.300703 -0.000734 -0.013288 0.607123 -2.237008 -0.831261 0.333774 -0.752366 0.469809 -0.708527 -0.088904 -2.576688 -1.072169 0.215938 0.106921 -0.031846 -0.394846 0.809784 0.533381 0.546499 2.093301 -0.579041 -0.058422 -0.521957 1.347073 1.807777 -0.871908 0.746238 2.091032 0.115892 -2.644557 0.489928 -0.366629 -0.415105 -0.860364 0.534368 -0.902075 0.188893 -2.402484 -0.861796 -0.064580 0.605851 1.776472 0.523466 -0.318566 -1.835913 -0.383613 -0.668497 1.302699 -0.661169 -0.160795 0.735158 -0.327231 -0.189781 -0.830889 0.420625 -0.243379 0.358697 0.914637 -0.750832 -0.871214 -0.148146 -1.940632 -0.790418 0.851854 0.424151 1.863620 -0.867703 0.355575 -1.342283 0.084913 0.858048 1.729733 1.560746 -1.139288 0.645603 -0.173106 1.014763 0.071057 -0.241265 0.844674 0.300879 0.450157 -0.319364 -0.303770 -2.071571 -0.236255 -0.005108 -1.214440 0.538925 -1.757919 0.101755 -2.092735 -0.458366 -0.251292 0.359572 -0.005078 0.578223 0.175523 0.692073 0.835316 -0.472039 -0.330296 0.602969 -0.591517 -0.317962 0.312526 0.513822 1.110501 -0.430780 -1.502525 -1.357670 0.094069 -0.252879 -0.396655 1.519038 0.584176 -0.932680 0.013994 -0.016235 -0.015972 -0.559034 1.672741 0.341804 -0.548775 0.391645 -0.407256 1.429038 -0.105714 0.669023 2.767564 -0.847627 -0.882777 -0.304628 0.142814 -0.767002 -2.304523 0.370595 -0.334000 -0.455495 -1.263445 -1.025524 -0.789740 -0.890786 -1.762844 -0.220576 -0.780176 -0.074608 1.966132 0.739298 1.128386 1.106825 1.510340 -0.750638 0.763843 -0.272925 -0.052337 0.627316 1.075327 0.695060 -0.296216 -0.125268 0.512908 -1.066169 0.702952 0.110060 -0.656655 0.329621 -1.428176 -0.629154 0.767005 1.233537 0.395128 0.240039 0.306527 -2.315616 -0.833346 -0.030064 0.974957 0.251206 -0.590674 0.862770 -0.640921 1.178304 -0.106097 -0.220802 -0.176443 0.108369 -0.881729 0.184470 0.190760 0.218280 -0.393142 -0.914805 -0.015783 -0.031162 -1.164232 1.070283 -0.514490 -0.481336 -0.643107 -0.910755 1.075386 -1.461726 -0.684921 0.529057 0.313896 2.156900 -1.285500 -0.535556 -0.775715 2.141592 0.547328 -0.093517 0.291314 -1.903152 -0.718975 -0.209738 0.339747 0.345963 -0.329956 0.086727 1.046582 0.154896 0.355281 0.969862 0.291244 1.012976 0.257267 -0.316216 -0.422315 -0.806321 0.895805 -0.093743 -0.228336 0.050436 0.967432 1.830206 0.626257 2.093762 2.444828 0.306492 0.963748 -0.755248 -1.020528 -0.517877 1.074293 -0.271912 -0.408153 -0.206519 1.312610 -0.550504 0.373167 -1.019107 -3.140508 -2.034519 -1.281363 -0.379806 -1.558867 0.019068 -0.303474 0.428842 -0.860354 0.116422 -0.754206 -0.325629 2.279989 0.706894 -0.412064 0.774596 0.842702 -1.780249 -1.127629 1.874948 1.522608 0.094038 1.228990 -2.751487 0.839751 -1.149199 -0.104273 2.232558 -1.314499 -0.345885 -0.661530 2.168472 -0.480471 1.836824 0.712233 -1.921341 0.505340 0.025015 0.084553 2.396525 -0.726096 -PE-benchmarks/bfs.cpp__Graph::BFS(int) = -0.420584 -3.707240 10.496792 6.682466 -2.821371 1.118956 2.463139 -3.345803 2.333231 -0.874373 -2.387055 2.410577 -5.582112 0.664235 -1.188786 1.225125 -9.279510 -4.431899 -1.622286 -3.284071 -3.192140 -3.119536 1.011361 4.528439 4.718218 5.866619 -3.594815 -0.545273 -4.582000 -3.828752 2.174130 -1.064775 3.786199 5.656956 2.984199 -11.829502 5.162165 4.148092 -1.286121 -4.008613 3.343521 -3.045579 -0.515600 -2.914850 -2.078717 2.084680 2.565097 5.634003 3.783688 1.011707 -1.060280 -1.839162 1.404773 8.222215 -0.985677 3.536284 4.503334 -2.080219 0.064561 -0.786190 0.263753 -2.757357 1.705495 1.927116 -2.361351 -3.701758 1.475329 -4.655481 -3.075830 5.116024 2.311826 -1.521993 -4.250791 -3.437793 -5.338551 -1.220363 -0.955784 6.086096 7.907588 -5.457617 5.239242 1.531694 2.595392 -0.081300 1.828288 0.413732 5.289174 1.013960 -1.550679 -0.820282 -6.824286 -3.321925 -0.255671 0.654326 -2.174223 -5.901323 2.636310 -9.787646 -7.066941 1.341732 1.429494 -3.623100 -2.008712 1.205893 2.577921 1.098414 -0.986810 -4.486237 -1.149388 1.716006 -3.090843 0.467658 -0.296332 1.319809 -1.570641 -1.152914 -8.023382 3.190875 0.736600 -1.609602 0.025086 5.660224 -0.844650 2.728931 1.324614 2.496550 -1.702536 6.289344 1.648753 0.620131 0.455895 -0.041636 -0.623963 0.144254 2.645868 3.578162 -3.844700 -3.399298 -0.647517 1.817862 -3.719998 -0.524565 -1.728817 5.843331 2.867309 -4.885052 -5.721264 -3.607592 -4.964352 -7.429496 0.774950 -3.006107 -3.873108 2.299769 3.666144 4.263549 2.275829 5.356719 -3.218332 2.682019 0.210266 -1.195775 2.155386 0.962220 4.102233 -4.032243 -2.804009 2.826120 -0.187783 3.489700 -0.511530 -0.868010 1.131239 -5.564686 -3.836119 3.257747 1.931690 1.476799 4.470077 5.798062 6.754187 -4.692814 0.614835 3.402393 -1.687798 -2.067032 3.100416 -4.949226 3.473041 1.065412 0.013818 6.605664 0.355023 -2.342194 2.924554 -0.023140 1.270103 -5.101290 0.561808 -2.445579 0.735730 -4.085128 0.848825 -3.628238 -2.289567 -3.489814 -4.066868 7.199944 -6.270707 -6.028093 5.835811 -0.739861 6.151137 -8.225431 5.252325 -3.194032 5.261238 -0.996122 -2.316510 0.501705 -3.090421 -2.917854 2.880592 0.730923 -1.222591 1.601531 4.773421 2.888690 2.237235 0.267187 5.025277 -0.836851 4.740850 -2.294215 3.109786 -1.326383 -2.645830 -0.375941 -0.907113 -1.507996 0.843194 1.301192 4.421672 3.824609 3.503281 4.561520 3.835118 4.345288 -2.732515 0.588533 -1.278463 4.019539 -4.037455 -3.916233 0.944980 3.296560 -1.108931 2.182044 -8.347938 -8.969968 -6.826098 -7.724033 -2.382106 -2.180014 2.751814 0.470755 -1.089769 -5.611718 -3.649190 4.801141 -0.067706 6.493711 3.892768 0.395602 5.692385 5.879088 -2.415685 -1.808121 2.865912 3.818548 -0.245389 0.684326 -7.947709 5.128720 -4.492617 2.898339 8.309452 -4.656705 3.254668 -2.612463 7.251930 -6.889216 8.012195 2.040252 -7.051105 3.077245 4.403423 3.545205 1.727866 -3.869782 -PE-benchmarks/boolean-parenthesization-problem.cpp__main = 0.604204 -0.724472 2.346834 1.567937 -0.879039 -0.006965 0.223779 -0.565408 0.535892 -0.844363 -0.743792 0.760840 -0.870753 0.443999 -0.796287 0.498407 -2.238977 -0.693012 -0.284006 -0.513293 -0.273292 -0.229462 0.624254 0.620987 1.192252 1.813036 -0.641216 -0.512529 -0.788427 -0.002826 0.831395 -0.373233 0.727696 1.211008 0.329766 -2.169998 0.802506 0.714712 -0.497797 -1.249330 0.950805 -0.647966 -0.095410 -1.191403 -0.476183 0.118093 0.351046 1.504476 0.582735 0.340721 -0.961244 0.150774 0.723459 1.917142 -0.249171 0.468638 1.050363 -0.270731 -0.022254 -0.433534 0.326650 -0.166993 0.153825 0.167743 -0.005657 -1.304281 -0.509630 -1.195821 -0.454327 0.777592 0.100252 0.398070 -1.055567 -0.490000 -1.157708 0.032249 -1.307499 1.832347 1.450234 -1.452327 0.699842 0.049914 0.215798 -0.014734 -0.031323 0.504599 0.225629 0.526616 0.221994 -0.205781 -1.167797 -0.427286 0.391933 -1.112531 -0.526120 -2.422282 0.827115 -2.120850 -1.111995 0.186289 0.764950 -0.807830 0.835634 0.008720 0.057454 0.726410 -0.505676 -0.456173 0.421871 -0.018465 0.269705 -0.074529 0.010950 0.662069 -0.203860 -0.475090 -1.560785 0.846097 -0.035688 -0.118499 0.784999 0.810711 0.098923 0.132611 -0.075605 0.441152 -0.485576 1.624263 0.245859 0.240461 0.139862 0.561858 0.882737 0.784572 0.888881 0.957057 -1.044649 -0.203735 -0.410174 0.321597 -0.505840 -0.746889 -0.129075 0.496288 0.111806 -1.083962 -1.086129 -0.861185 -1.219468 -1.525650 -0.115188 -0.509618 -0.610615 1.098746 0.756446 1.033006 0.825936 0.933216 -0.790006 -0.083727 0.156161 -0.163594 0.666525 0.706082 0.677964 -0.619810 -0.504959 0.516255 -0.331142 0.632567 -0.057278 0.283584 0.335459 -1.148370 0.041026 0.849688 1.013314 -0.093168 0.968717 1.065683 -0.388465 -0.329224 -0.248745 0.762351 -0.581388 -0.453334 0.525100 -1.076273 0.863084 0.133615 0.352564 0.846806 0.096784 -0.105052 0.707810 -0.199443 0.133158 -0.492575 -0.175048 -0.483780 -0.504529 -0.865026 0.807284 -0.418841 -0.376302 -0.782681 -0.917785 1.491285 -1.803648 -0.259511 0.848366 -0.054251 0.916974 -1.128226 1.051084 -0.743834 1.322829 0.482155 -0.331855 0.253227 -1.219674 -1.173160 -0.099824 0.383223 -0.054511 -0.073299 0.736094 0.795280 -0.180863 -0.021467 1.088672 -0.510479 1.419497 -0.354798 0.540590 -0.379241 -0.639892 0.228428 -0.030264 -0.549402 -0.370838 0.585326 1.678066 0.090027 1.551411 1.267306 0.372226 1.364040 -0.796531 0.317960 -0.483861 0.823194 -0.676728 -0.672217 0.262938 0.954550 -0.168202 0.566796 -1.567583 -2.234268 -2.094545 -0.894637 -0.086786 -1.367630 0.407168 -0.465891 -0.298674 -1.069398 -1.050430 0.142142 -0.281845 0.543213 0.957144 -0.097598 0.997823 0.904773 -0.770872 -0.043847 0.702690 1.123955 0.454484 0.238295 -1.699635 1.045562 -0.838990 -0.172223 2.216515 -0.933741 0.583383 -0.290179 1.335792 -0.982352 1.659945 0.375936 -1.645502 0.642207 1.070515 0.442552 0.882031 -0.850972 -PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -11.698052 -30.066689 37.174305 28.105619 -1.889986 16.675416 11.845566 -2.547871 -12.863659 17.277777 -9.974531 29.917050 -15.074303 -8.624068 -3.106233 -2.939913 -16.473760 -15.188367 -0.203759 -6.612827 -7.601637 -6.419402 -24.602088 43.160348 15.903877 -4.325377 -10.765796 -6.194114 -36.947777 -17.102442 -26.323897 5.212550 14.460342 -1.455322 24.439108 -27.359224 9.317858 32.953947 4.770905 -21.972635 6.291016 -6.160315 -1.875445 10.597039 -22.007633 10.435370 20.341594 -3.047932 0.196797 7.807089 9.485227 -8.392089 25.267570 33.999383 24.124703 25.709923 23.138001 -12.560498 18.654144 -8.726220 1.597222 -24.144431 6.775702 -8.813841 -0.051450 -5.328736 -4.531307 4.205226 4.493955 2.744375 15.530104 -19.152666 -10.524376 -15.720569 -26.730023 -13.749276 -0.430067 9.416947 25.186775 -15.222479 33.232658 18.381839 13.731584 1.124336 25.288987 0.015479 19.934765 4.995842 -6.235186 16.140722 -11.969563 -2.738284 -1.968386 18.564677 -24.718833 -15.887637 12.681395 -37.133551 -35.540433 24.042092 -3.701460 -22.763227 4.469743 -0.853336 1.864873 3.780059 -12.059283 -19.542901 -13.449609 17.478827 -9.447000 -8.473226 -1.784527 2.186933 8.275705 6.880572 -19.485360 17.437610 22.471482 -5.203749 -6.219700 28.977504 10.801044 28.170398 0.816678 5.718118 0.124574 15.058473 17.710464 0.576354 -23.784318 -12.266160 -23.931596 1.074555 0.611855 -21.908217 -19.000995 -13.974334 13.544755 16.027726 14.771283 31.926678 0.390432 40.358404 8.827860 -4.568761 -17.973474 -29.536099 -24.815595 -8.775194 -3.075916 -0.694688 -28.277427 4.254402 12.695856 3.393497 -7.300839 -0.245108 16.889698 7.553652 4.257553 -9.462086 -1.771757 -22.947414 9.249140 -16.787431 -11.823907 18.121044 18.156958 27.874587 3.492524 2.804879 6.044383 0.306161 -11.685488 5.154175 8.369628 10.654853 36.517488 26.885377 48.054570 -0.101085 -8.073584 -7.331741 -10.264865 -4.151224 -0.400470 -16.899932 2.890101 5.758573 -16.517048 37.219698 -1.598092 -0.827964 23.251715 -1.343703 5.086623 -25.362851 21.397670 -11.297235 8.273796 -7.785305 -8.614120 -19.046497 -4.627123 -24.600020 -20.891619 34.635211 -39.516876 -18.895151 4.940826 2.888282 9.205343 -28.592312 30.309220 -8.410468 24.506440 -1.299338 -19.947891 2.634286 7.233739 -3.078283 17.589145 7.092851 -22.251384 5.791447 7.959080 2.869664 4.233297 3.406866 12.207098 -6.397708 6.425909 -14.729507 10.555889 1.054928 -3.491389 -12.826475 -2.891505 0.668480 17.169826 0.614710 -8.840455 4.796867 -4.229780 -13.048055 25.195825 -1.063689 -8.578243 -5.648444 -8.287377 20.327721 -24.603724 -18.627050 -10.867759 10.175472 13.673478 -3.886818 -36.660884 -6.106313 -36.705340 -13.009113 -9.165769 8.291466 7.937485 15.783891 -9.967785 -25.555025 -24.010255 37.434458 -1.219405 0.535708 20.465193 6.054694 31.077064 8.024007 20.487826 -2.066042 -6.796410 6.933717 -2.207111 1.910171 -12.481528 9.339608 -25.258600 26.494721 19.866943 -8.229409 24.151999 13.501965 9.171728 -33.022813 25.834567 9.159798 -37.241084 -2.469314 29.993693 1.446477 -33.285810 -17.227709 -PE-benchmarks/coin-change.cpp__main = 0.196017 -0.682108 1.738974 1.201989 -0.326553 -0.015487 0.582064 -0.365506 0.475612 -0.291810 -0.430944 0.584033 -0.866783 0.363121 -0.651719 0.585109 -1.403229 -0.795519 -0.133215 -0.364488 -0.173167 -0.269039 0.662679 0.268081 0.985766 0.743974 -0.571454 -0.673213 -0.953810 -0.283351 0.624738 -0.340160 0.652826 0.438330 -0.047117 -1.877882 0.667935 0.668126 -0.427674 -0.999904 0.822221 -0.546646 -0.033249 -0.830838 -0.274177 0.123328 0.365083 0.894343 0.508279 0.444988 -0.333098 0.149372 0.390495 1.620857 -0.434441 0.445937 0.765807 -0.097588 -0.153178 -0.230035 0.282379 -0.151012 0.251782 0.232778 -0.064623 -0.905377 -0.458095 -0.913561 -0.598704 0.539475 0.061894 0.342001 -0.823872 -0.129209 -0.800107 -0.044901 -0.752089 1.106278 1.237678 -1.092263 0.758272 0.023779 0.238640 -0.097838 -0.091121 0.392524 -0.012800 0.376632 0.084411 -0.353894 -0.902704 -0.160003 0.119068 -0.390399 -0.326633 -1.671784 0.765351 -0.941725 -0.912105 0.158955 0.473135 -0.529754 0.214112 0.117299 0.010332 0.764423 -0.538026 -0.558388 -0.022629 -0.060836 0.286925 -0.144202 0.109792 0.221233 -0.337664 -0.607011 -1.235974 0.420613 -0.024389 -0.368149 0.220954 0.593086 -0.234384 0.223993 -0.018079 0.370207 -0.417509 1.200006 0.262132 0.303330 0.315281 0.221482 -0.125020 0.196352 0.795714 1.209789 -0.720724 -0.004015 -0.448388 0.224667 -0.363489 -0.482086 0.076238 0.468376 0.400683 -0.888554 -0.874525 -0.595258 -0.449364 -1.074084 0.067379 -0.559415 -0.120761 0.753009 0.650278 0.524568 0.663153 1.361569 -0.686354 0.285244 0.099679 -0.288277 0.541908 0.356410 0.574950 -0.462492 -0.548407 0.415683 0.006395 0.479940 -0.052808 0.241792 0.299120 -1.013580 -0.182783 0.402606 0.613656 -0.331639 0.661453 0.682697 -0.101635 -0.509247 -0.136620 0.621222 -0.391630 -0.235591 0.364009 -0.999414 0.638790 0.073169 -0.010490 0.627903 0.132437 -0.464985 0.691773 -0.307262 0.088836 -0.452427 0.016204 -0.456302 -0.356396 -0.708909 0.410860 -0.237506 -0.372061 -0.440947 -0.493011 1.169284 -0.908257 -0.447812 0.432996 0.032619 0.507861 -1.254829 1.201487 -0.595936 0.815648 0.158345 -0.161880 0.175704 -0.317530 -0.768011 -0.169815 0.345629 -0.107375 0.175070 0.955562 0.579764 -0.159443 0.011300 0.921418 -0.232589 0.960216 -0.203640 0.483797 -0.319087 -0.659437 0.223963 -0.087882 -0.263958 -0.270854 0.364148 1.352840 0.237318 0.879262 1.063371 0.382766 1.181630 -0.613887 0.316500 -0.248990 0.960777 -0.425315 -0.375648 0.117786 0.682234 -0.212106 0.595003 -1.162612 -1.762731 -1.106281 -1.106381 0.096900 -0.731129 0.349136 -0.443976 -0.139712 -1.045443 -0.745052 0.032983 -0.299808 0.698648 0.800686 0.006070 0.764703 0.672547 -0.717681 -0.086863 0.457836 0.857306 0.292442 -0.017783 -0.986019 0.616952 -0.871501 -0.087618 1.475697 -0.614167 0.340407 -0.290991 1.141855 -0.721077 1.471108 0.324505 -1.031927 0.753678 0.819974 0.699077 0.506067 -0.595013 -PE-benchmarks/coin-change.cpp__count(int*, int, int) = -2.538449 -8.018322 11.263523 8.412429 0.372142 3.507749 4.373507 -0.787812 -0.125743 5.304446 -2.859865 7.783106 -5.999589 -1.575099 0.535670 1.162546 -5.795823 -5.928136 0.508995 -1.085050 -2.297988 -3.414280 -3.841536 9.603060 5.494382 0.640911 -3.980106 -1.802480 -10.288546 -6.880566 -5.207672 0.087427 4.719764 0.465703 6.050205 -8.600541 3.894166 8.352502 0.927816 -7.835753 2.439158 -2.298112 0.282653 0.808191 -2.631864 4.137491 6.600841 2.202928 1.781995 2.939988 0.999297 -3.093221 5.019035 7.962449 4.079348 6.358268 6.705939 -3.299811 3.291832 -2.430518 0.941863 -6.772398 2.673287 -0.037286 -2.101876 -2.093562 -0.250294 -0.380730 -1.716027 2.538944 4.804619 -3.780585 -4.857796 -4.046753 -6.184601 -2.455953 0.881616 3.918873 8.916539 -4.323525 9.407237 4.635264 5.004051 -0.172362 5.418947 -0.335410 5.397838 1.456410 -3.182424 1.252289 -6.898661 -3.459998 -1.603815 4.798371 -4.410655 -2.907334 3.071894 -8.602059 -9.892243 4.871290 -0.754253 -4.839569 -2.126698 1.550903 2.816264 3.233372 -1.586319 -6.119669 -3.782485 3.183113 -3.969582 -2.102051 0.014724 -0.064135 -0.565746 0.780481 -6.985043 2.912276 5.203361 -3.030524 -2.003250 7.158396 -0.201932 7.811354 0.493855 1.886094 0.492006 4.346474 5.922469 0.885593 -1.443147 -4.340253 -6.640082 0.371694 1.048768 -1.258429 -4.787200 -2.299275 1.957015 3.684280 1.803507 5.654092 -0.821605 10.653236 3.630109 -3.487832 -6.273245 -7.534822 -5.328701 -2.808731 1.049855 -1.636782 -4.597414 0.634720 4.095452 0.361384 -0.860817 4.256705 -0.164590 3.241588 1.291467 -1.576808 0.488096 -2.896933 3.424540 -4.901984 -3.335453 4.732048 5.407326 5.436907 0.173584 -0.303305 2.331624 -2.454314 -4.578104 2.000822 1.487488 2.448258 8.553039 6.140196 12.018962 -2.173082 -2.123907 -0.133525 -1.389764 -1.784423 0.974408 -6.184437 3.169160 0.605437 -1.269326 9.720214 -0.109987 -2.830124 6.555298 0.149120 1.046049 -6.523443 4.976355 -3.890993 1.946460 -2.405471 -1.616794 -4.996920 -2.094167 -5.963627 -3.238628 9.974336 -5.405523 -8.054840 2.061470 -1.357399 4.478896 -10.293543 8.294955 -2.868427 4.811480 -1.081037 -3.847058 0.705986 0.660302 -1.000363 2.581247 2.280103 -3.859439 2.595311 3.674147 1.393033 0.850111 1.573928 3.427409 -0.413990 2.376169 -2.780760 2.595375 -0.749115 -0.468683 -2.763220 -0.889157 1.350800 4.389262 -1.416575 -0.300421 3.028940 -0.678587 0.517720 5.697959 1.213859 -3.161529 -0.144516 -1.377661 7.219041 -6.041261 -4.439693 -2.759013 2.518213 1.699236 1.911967 -10.134985 -4.722447 -5.213447 -7.983386 -3.465655 1.689726 3.054708 2.962501 -2.164307 -7.437316 -5.694820 7.869333 0.968899 4.408859 5.024704 0.905474 8.021876 3.132912 2.244991 -2.003922 -0.805897 1.677272 -1.383726 -0.890900 -3.761315 2.583831 -7.330954 6.356457 6.773791 -3.634134 4.923602 -1.542317 4.767718 -9.128400 8.866148 3.319546 -9.523693 0.463764 6.210501 4.627115 -7.661527 -5.306414 -PE-benchmarks/palindrome-partitioning.cpp__main = 0.217596 -0.404390 1.049779 0.705390 -0.387884 -0.023670 0.194736 -0.180587 0.278250 -0.501067 -0.402763 0.281942 -0.503683 0.198579 -0.400109 0.219329 -1.036875 -0.453152 -0.055678 -0.145718 -0.052227 -0.154391 0.318324 0.249448 0.514223 0.839711 -0.260789 -0.220090 -0.467742 0.087856 0.474113 -0.224136 0.348187 0.695746 0.109238 -0.949410 0.361447 0.333185 -0.243830 -0.627344 0.420663 -0.390964 -0.021933 -0.713984 -0.170576 0.118287 0.225157 0.772186 0.233417 0.153335 -0.489066 -0.029836 0.160204 0.773152 -0.171857 0.210673 0.536331 -0.046861 -0.011838 -0.228871 0.185750 -0.087690 0.083749 0.177393 -0.125700 -0.533698 -0.297723 -0.690155 -0.263153 0.341721 0.042772 0.343327 -0.549460 -0.156272 -0.551252 0.021647 -0.723118 0.807990 0.750088 -0.735643 0.415916 0.047200 0.237590 -0.029576 -0.029715 0.287201 0.042030 0.257165 0.039353 -0.072917 -0.655192 -0.228218 0.133308 -0.546125 -0.191720 -1.064719 0.396524 -0.882699 -0.500963 0.058307 0.278267 -0.308993 0.404415 0.164399 0.010110 0.441800 -0.294471 -0.245338 0.226911 -0.058929 0.143736 -0.009167 0.083376 0.428982 -0.161899 -0.433851 -0.787764 0.310325 0.007222 -0.170349 0.484198 0.375480 -0.096547 0.100263 -0.027796 0.070331 -0.238116 0.910923 0.186673 0.034181 0.100044 0.134912 0.239611 0.321994 0.476985 0.739924 -0.486527 -0.034583 -0.107803 0.131231 -0.223660 -0.526372 -0.015804 0.122699 0.030795 -0.587392 -0.522188 -0.456602 -0.543994 -0.708822 -0.013347 -0.318060 -0.118264 0.615434 0.398620 0.526223 0.419724 0.752504 -0.452970 0.024942 0.007377 -0.101224 0.265924 0.444943 0.340579 -0.252728 -0.258718 0.308715 -0.177883 0.300101 0.042905 0.053373 0.186670 -0.634797 -0.038171 0.443716 0.472447 -0.103542 0.458213 0.442248 -0.592921 -0.159078 -0.093364 0.360552 -0.190756 -0.205939 0.298754 -0.543927 0.495043 0.023028 0.110243 0.238857 0.058182 -0.108311 0.330283 -0.153929 0.065335 -0.272528 -0.143459 -0.218777 -0.205121 -0.507489 0.531654 -0.165514 -0.257328 -0.287467 -0.379825 0.688111 -0.645838 -0.135486 0.245409 0.075569 0.524581 -0.533230 0.367050 -0.368655 0.723391 0.263883 -0.098713 0.167525 -0.583677 -0.430482 -0.199592 0.209767 0.035609 -0.061813 0.313042 0.404132 -0.153342 0.109434 0.545879 -0.192479 0.588112 -0.117526 0.138419 -0.189373 -0.332887 0.270899 -0.051804 -0.204144 -0.128946 0.272525 1.004845 0.126573 0.778288 0.775828 0.114613 0.626909 -0.382322 -0.004280 -0.179248 0.523901 -0.300003 -0.257966 0.007155 0.475342 -0.122345 0.226744 -0.696392 -1.203549 -0.891790 -0.530428 -0.049869 -0.687147 0.196827 -0.208516 -0.042490 -0.511128 -0.434468 0.025524 -0.208312 0.474920 0.415416 -0.054721 0.480362 0.417899 -0.495760 -0.131867 0.497736 0.645244 0.162263 0.225984 -0.831243 0.443783 -0.507399 -0.111838 1.045090 -0.478974 0.183341 -0.212172 0.868734 -0.419844 0.860016 0.232817 -0.821968 0.353723 0.514548 0.246818 0.573971 -0.394101 -PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.412424 -0.733312 1.172376 0.776973 0.208506 0.143927 0.512441 0.134319 0.210559 0.616499 -0.383314 0.770448 -0.727375 -0.019082 0.096625 0.294164 -0.564760 -0.811733 0.131326 0.066101 -0.291561 -0.454387 -0.070927 0.582450 0.701587 0.251006 -0.596022 -0.222541 -1.041621 -1.090796 -0.481009 -0.107869 0.507910 -0.028404 0.454097 -0.942191 0.350480 0.686188 0.078828 -0.913779 0.396112 -0.245405 0.160508 -0.026042 0.149159 0.608505 0.923192 0.232428 0.350975 0.393871 0.031744 -0.501966 0.154906 0.621812 0.176981 0.481055 0.699019 -0.355246 0.059723 -0.271251 0.108353 -0.840287 0.259306 0.241627 -0.438744 -0.155154 0.113823 -0.192873 -0.381914 0.445254 0.309702 -0.243114 -0.597814 -0.490496 -0.513537 -0.084902 0.346651 0.463825 1.055413 -0.396703 0.918618 0.300885 0.653582 -0.080269 0.226073 -0.109560 0.344258 0.111173 -0.432075 -0.260215 -0.658018 -0.529738 -0.445475 0.900005 -0.099517 0.291011 0.355809 -0.693582 -0.896855 0.241376 -0.123783 -0.244840 -0.658220 0.503140 0.424595 0.638013 0.104179 -0.621657 -0.485236 0.034055 -0.400094 -0.082157 0.068595 -0.161509 -0.473427 0.061912 -0.820941 0.077321 0.332662 -0.524483 -0.357562 0.539581 -0.365623 0.867402 0.138562 0.333010 0.138240 0.566741 0.780959 0.159053 0.270960 -0.452273 -1.018496 -0.160400 0.190616 0.452856 -0.584179 -0.012087 -0.019841 0.131349 -0.123823 0.058761 -0.323580 1.074432 0.849589 -0.633412 -0.877728 -0.641988 -0.300736 -0.353829 0.165012 -0.321515 0.009299 0.029589 0.351295 0.031243 -0.033618 1.298341 -0.514203 0.389586 0.196746 -0.299990 0.079644 -0.083604 0.405540 -0.545163 -0.302323 0.397046 0.602608 0.257245 -0.003908 -0.117690 0.295153 -0.561927 -0.580963 0.536304 0.159620 0.286941 0.567742 0.434162 0.979080 -0.524582 -0.273994 0.148590 0.008260 -0.340258 0.249994 -0.732476 0.580051 -0.054981 0.231766 0.768457 0.114483 -0.504811 0.724408 -0.038971 0.105370 -0.558785 0.438007 -0.448079 0.306429 -0.210119 -0.293461 -0.404864 -0.149592 -0.314530 -0.069773 0.956058 0.109883 -1.159037 0.155683 -0.208359 0.651461 -1.359350 0.696723 -0.294945 0.427503 -0.249285 -0.060098 0.016432 0.024053 0.108936 0.104815 0.182852 -0.077203 0.302424 0.573274 0.148429 0.042696 0.226319 0.391032 0.173494 0.286379 0.086711 0.047288 -0.112431 -0.019251 -0.173544 -0.001625 0.175222 0.500148 -0.312348 0.164947 0.491117 -0.143640 0.496915 0.544567 0.319341 -0.344695 0.068631 -0.105457 1.126214 -0.527652 -0.481206 -0.256343 0.406538 -0.043145 0.300928 -0.922291 -0.835728 -0.047222 -1.484550 -0.434920 0.090775 0.341967 0.105042 -0.198989 -0.621061 -0.393405 0.531514 0.300283 1.245576 0.266423 -0.059689 0.705124 0.333858 -0.203559 -0.371463 -0.052440 0.159645 -0.197619 -0.177496 -0.367104 0.104827 -0.824929 0.411261 0.719449 -0.537992 0.300136 -0.257901 0.561428 -0.933663 1.052552 0.393980 -0.845604 0.275189 0.309466 0.897806 -0.615964 -0.549620 -PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -5.753549 -14.550448 18.802374 14.055256 0.550386 7.306983 5.874426 -1.367199 -1.103988 9.694442 -5.218746 13.934665 -9.968018 -4.236483 1.138435 0.035187 -9.077117 -9.542634 0.818668 -1.983269 -4.483571 -5.704386 -9.378804 19.000207 8.296062 1.303049 -6.198724 -1.052499 -18.603034 -11.866668 -10.636195 0.871165 7.599958 1.731419 11.712052 -12.380169 5.987600 15.073177 2.237595 -12.959684 2.914447 -4.306779 0.045729 2.142347 -4.844153 6.411144 11.200489 1.282557 1.940805 3.515124 1.718450 -6.205705 9.532190 13.521324 8.695450 11.846712 12.610234 -6.165650 7.288090 -3.733839 1.394581 -12.374064 4.911383 -0.460671 -4.243838 -2.789858 0.577632 0.101497 -1.208384 4.028072 7.961881 -8.385802 -6.809556 -8.386054 -11.123534 -4.956564 1.275645 6.193680 14.518880 -7.467256 16.974676 9.077601 9.136441 0.489646 11.611689 -0.961590 11.596279 2.409660 -6.303069 2.676170 -11.154424 -4.993621 -2.787084 9.891647 -8.447570 -0.598478 5.519910 -17.331537 -18.032463 9.436307 -2.176741 -8.450373 -3.614725 2.796545 4.434609 3.698958 -2.019904 -10.534980 -6.691119 7.168307 -8.265948 -3.943268 -1.390110 0.332053 0.109940 3.512562 -11.355009 5.507079 9.991620 -4.989297 -4.465442 13.500370 1.315346 14.049411 0.666480 2.941232 1.640840 6.225952 9.964303 0.948981 -3.916368 -7.966993 -12.310106 1.331439 1.063511 -5.938951 -9.214615 -3.628936 5.663815 6.449767 4.431195 11.181429 -3.124811 20.133440 3.566821 -5.491921 -10.166802 -14.071581 -10.574608 -4.706844 0.861676 -2.613801 -10.247655 0.997289 7.053091 1.845637 -3.086597 5.236788 0.741882 5.844205 2.749584 -2.422967 -0.208762 -6.569529 5.529149 -9.373797 -5.820906 8.139540 9.892034 8.875031 0.577703 -1.101090 3.412980 -3.286565 -8.273551 4.330477 1.614627 5.207904 16.320408 11.289518 24.026601 -5.365456 -2.961003 -1.747707 -2.441670 -3.177333 0.747601 -10.021341 4.757315 1.494773 -1.869304 17.912203 -0.195271 -4.229411 9.603166 0.657112 2.090274 -11.837216 10.139254 -6.695219 3.163444 -2.942804 -3.924201 -9.110607 -4.025611 -11.052490 -6.032217 17.475378 -12.387550 -13.640647 4.281870 -0.796806 7.651735 -17.168414 13.080940 -5.115182 9.848869 -1.849645 -7.997391 0.345380 1.650466 -0.933211 5.553606 4.105681 -8.484677 4.815436 5.143981 1.940252 3.516068 3.016251 4.978903 -1.280172 2.677144 -5.632088 4.412923 -0.103000 -1.291120 -6.225372 -2.311230 3.036112 8.823480 -2.946965 -2.778290 6.274035 -2.236583 -1.507814 10.495436 0.236990 -5.142790 -1.077867 -2.536534 11.795802 -11.163567 -8.374484 -5.293598 3.210301 4.276257 2.249654 -18.096469 -6.561931 -9.418695 -11.448687 -6.939089 3.112781 4.982309 6.828022 -3.643173 -13.157478 -10.157747 14.753881 1.698902 6.569658 7.958800 2.753625 14.318312 5.101646 6.532891 -4.022444 -2.049581 2.208275 -3.312547 -1.077468 -6.373399 4.524603 -11.721393 12.475254 10.725453 -5.281287 9.361550 -0.394766 4.763999 -16.265400 14.256356 6.071770 -17.563518 -0.572979 11.312436 6.300677 -15.384247 -9.659763 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 0.289117 -0.607970 1.500232 1.106643 -0.219975 -0.037990 0.629545 -0.322677 0.484662 -0.055914 -0.380969 0.454399 -0.830993 0.363602 -0.487634 0.687464 -1.170168 -0.694356 -0.060890 -0.273044 -0.102306 -0.284741 0.733912 0.102812 0.930458 0.617027 -0.446884 -0.735159 -0.771257 -0.299548 0.573526 -0.352447 0.581737 0.493065 -0.121743 -1.422665 0.600296 0.539784 -0.396241 -0.871483 0.735044 -0.432228 -0.000557 -0.687872 -0.060053 0.163339 0.339028 0.900845 0.509295 0.517267 -0.172404 0.053486 0.468122 1.300098 -0.459517 0.388726 0.604028 -0.051890 -0.109925 -0.172600 0.274070 -0.098035 0.233066 0.279963 0.006468 -0.792031 -0.509260 -0.801637 -0.599394 0.478731 0.000158 0.402311 -0.869880 -0.056018 -0.467021 0.012777 -1.138563 0.985830 1.135653 -0.948513 0.686966 0.082216 0.183133 -0.214878 -0.173290 0.338936 -0.137212 0.333324 0.041631 -0.330839 -0.746211 -0.231089 0.126105 -0.443478 -0.247298 -1.460390 0.653928 -0.521210 -0.796796 0.132956 0.422435 -0.410736 0.276163 0.206313 -0.023367 0.713042 -0.491577 -0.539241 0.017939 -0.168596 0.323860 -0.157989 0.047241 0.146499 -0.374274 -0.506368 -1.076043 0.248946 -0.100399 -0.444876 0.210763 0.437721 -0.161980 0.216604 -0.003783 0.293735 -0.312584 1.054550 0.298615 0.389077 0.484230 0.226281 -0.191693 0.348893 0.808941 1.056622 -0.540453 0.158275 -0.442270 0.179725 -0.319370 -0.384722 0.181401 0.398021 0.423209 -0.815157 -0.778830 -0.449846 -0.283732 -0.865069 0.208002 -0.536493 0.090940 0.520654 0.575773 0.347625 0.633324 1.218601 -0.734349 0.211489 0.067102 -0.158408 0.489928 0.482025 0.517893 -0.379318 -0.474819 0.338432 0.134093 0.268210 -0.045443 0.218324 0.282841 -0.915528 -0.054096 0.324210 0.462964 -0.466096 0.549754 0.501337 -0.087598 -0.300494 -0.110112 0.607378 -0.264808 -0.190397 0.341338 -0.977466 0.690126 -0.020700 0.059060 0.410771 0.117272 -0.384284 0.663174 -0.363201 0.035861 -0.364160 0.012160 -0.424442 -0.393775 -0.638839 0.498771 -0.117614 -0.387583 -0.214142 -0.150101 0.996576 -0.522259 -0.202567 0.303406 -0.076031 0.262319 -0.967106 1.316222 -0.533719 0.453969 0.090580 -0.200208 0.153300 -0.169840 -0.610372 -0.334136 0.326480 0.017290 0.196763 0.873233 0.495210 -0.238942 0.084685 0.812817 -0.165767 0.822213 -0.108413 0.442611 -0.260086 -0.475889 0.208329 -0.088222 -0.189084 -0.300417 0.204845 1.345032 0.211417 0.673777 0.972825 0.181193 1.087284 -0.554758 0.393570 -0.180144 0.902917 -0.368601 -0.259953 0.109730 0.463506 -0.277689 0.638533 -0.983350 -1.500281 -0.699377 -0.831118 0.013926 -0.605690 0.402257 -0.441880 -0.087449 -0.891381 -0.673060 -0.090491 -0.287444 0.304406 0.674198 -0.007642 0.631525 0.576756 -0.582051 -0.069148 0.285167 0.733971 0.271566 -0.062315 -0.700730 0.470924 -0.788993 -0.120667 1.219504 -0.511403 0.195120 -0.384712 1.102399 -0.608574 1.266844 0.285888 -0.750281 0.759523 0.746099 0.691803 0.406968 -0.501833 -PE-benchmarks/biconnectivity.cpp__main = 2.079837 -1.427277 7.389396 3.703571 -4.223997 -1.349669 -0.159961 -0.130077 1.943464 -8.390207 -3.662389 1.787042 -3.121841 1.801658 -1.750719 -0.387074 -10.832406 -4.254903 0.415635 0.340453 -0.918011 -1.439951 2.519994 2.746754 3.212132 10.703852 -3.008352 0.387876 -2.013420 3.406958 5.559777 -2.625052 3.000297 10.098339 2.312102 -8.122514 2.249359 -0.754195 -0.875598 -3.217939 2.412308 -3.146169 0.023311 -8.861984 -1.417997 1.573299 3.121215 8.697226 2.752554 -1.316558 -7.678051 -2.355796 -3.240860 2.068312 -1.759534 -0.719142 2.786584 -2.090269 -0.392524 -3.562548 0.996983 -2.113653 0.778633 3.287165 -3.922609 -3.555099 1.049829 -7.032551 -2.256302 4.257858 3.888115 5.728492 -4.003549 -0.096259 -4.343593 1.112479 4.701533 6.920545 5.920212 -3.156226 2.233088 -0.585572 4.039827 -0.731741 -0.901024 1.960221 2.405001 1.266548 -1.152644 -1.812331 -9.882524 -3.152531 -0.618086 -2.898923 1.867905 -4.532435 -0.121315 -9.042447 -2.363452 -2.122218 1.662380 -1.089991 1.446274 2.889958 3.609939 2.731622 0.744949 -0.851648 2.894044 -2.267026 -3.317871 1.625746 1.360076 4.270462 -2.326007 -4.343771 -5.786340 1.403750 -0.885391 -0.640666 5.767076 1.948341 -3.404192 0.428839 0.391081 0.437840 -1.331519 5.694919 2.039639 -2.604161 2.534832 -1.838972 6.923774 0.296474 2.360571 9.928310 -3.844567 -4.389989 -1.241922 0.683681 -3.778311 -8.765972 -0.205934 0.616067 -0.793202 -5.998580 -4.960701 -3.021524 -4.144309 -5.470652 -0.755455 -2.418586 -0.970280 4.930652 2.289288 3.929613 3.577722 5.592107 -3.466636 2.766175 -0.048914 0.416287 2.454018 4.981033 2.842693 -1.782178 0.154735 2.277884 -4.519381 2.616398 -0.595815 -2.104262 1.555724 -5.855959 -3.500275 4.291707 3.756309 3.120028 1.231650 2.042084 -7.396462 -2.705863 -0.450024 3.886717 0.746438 -3.440777 4.808963 -2.228852 5.050882 -0.538308 1.052865 1.112311 0.486550 -2.975003 1.256196 1.974047 0.766557 -2.029462 -3.187039 0.012061 1.357340 -4.058070 4.046306 -2.361666 -1.390741 -2.811879 -3.703977 4.522091 -3.756633 -5.350669 2.656834 -0.552634 9.636274 -5.622509 -4.152059 -2.583215 5.997355 1.765983 0.151555 1.448731 -9.308388 -3.211901 0.204443 0.590480 2.134128 -1.168646 -0.052310 3.710803 0.369150 1.223798 3.255191 1.095074 4.692912 1.139270 -1.615892 -1.471601 -1.661853 2.682003 0.461445 -2.011310 0.959173 2.517877 6.394874 2.507918 8.494419 9.139908 0.534975 3.511455 -2.682196 -3.708429 -1.837543 3.408609 -1.406281 -2.788300 -0.089754 4.467320 -2.087916 1.753023 -4.633629 -12.097685 -5.258240 -7.762833 -2.096365 -6.202790 1.402686 -0.291203 0.389662 -2.557465 0.034979 -1.847476 0.803948 11.757631 2.275008 -2.473686 2.738948 3.097774 -7.208895 -3.900660 6.942582 6.239754 0.612252 4.038538 -11.206592 3.880691 -3.845629 0.102443 9.918804 -6.454246 -0.303230 -5.790378 10.431943 -3.404647 7.062053 2.255733 -8.646626 1.149142 -0.911194 0.962083 8.635628 -3.136670 -PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -3.957854 -7.785273 16.918688 11.603848 -2.275276 3.670669 3.179613 -5.421271 2.265002 3.516946 -3.446961 7.506599 -7.710189 -0.221630 -2.130509 2.559876 -11.550841 -6.759924 -2.340017 -6.403848 -5.000399 -3.460749 -2.563670 8.956191 7.632042 2.700932 -6.083765 -0.511246 -10.853880 -11.014064 -2.486286 -0.913039 5.988706 0.729801 5.131212 -19.089261 8.063061 10.397106 -1.816136 -7.958592 4.913000 -5.553976 -0.931473 -1.592129 -5.164893 2.993062 4.737143 1.294580 4.793127 2.121256 1.614610 -0.739118 4.979579 16.048345 0.220728 7.988323 8.122198 -4.612814 0.301394 -0.496771 0.765943 -5.470690 4.061816 0.414045 -2.699224 -6.978521 1.116689 -3.250304 -2.973906 5.533631 3.244074 -6.521699 -4.607603 -6.065415 -10.794259 -4.519830 0.856423 6.563440 11.889655 -7.776325 10.389774 3.200825 3.427820 1.465891 7.047430 0.389346 10.470658 1.963388 -2.679849 0.296334 -5.014202 -2.762805 0.485218 8.220288 -5.515480 -6.604936 5.807229 -15.885791 -13.053633 5.101493 2.181089 -6.590249 -5.866029 -0.855608 2.833988 2.090370 -2.960578 -8.127152 -3.939111 4.365316 -3.996442 -2.293824 -1.198417 -1.158384 -0.864742 1.284274 -11.715819 5.325805 3.790136 -2.162400 -4.792098 10.268159 0.722764 5.122875 0.592839 5.235599 -2.564391 7.657291 1.077690 3.298673 -3.395568 -0.062359 -7.997757 -2.416407 3.234460 -0.649608 -6.954919 -4.481029 -0.347485 3.773162 -3.116521 4.968438 -3.613655 14.230467 5.889597 -4.932951 -7.774259 -7.307640 -7.284547 -9.760635 0.207744 -4.062156 -9.073675 2.387692 6.560225 3.933014 2.105687 7.476277 -1.332193 4.789766 0.901204 -3.501837 4.929846 -5.673056 6.269492 -7.408602 -5.002269 5.378058 3.532378 7.396141 -0.123744 0.433811 2.173325 -6.572391 -6.266355 4.457156 2.710536 2.176943 10.246964 9.949892 19.221661 -8.238974 1.027198 2.700279 -4.048854 -1.624415 1.958201 -7.743041 2.326267 3.405353 -1.458213 13.777135 0.710449 -4.713092 4.198593 -0.165317 2.399837 -8.736093 4.902199 -4.947230 2.344057 -3.723225 -3.082904 -6.570848 -3.483096 -7.551629 -7.200183 13.042830 -13.675091 -11.038163 8.847747 0.154036 7.515351 -15.852042 11.085192 -5.715415 9.970773 -3.611794 -4.060681 0.669984 0.763052 -5.618797 7.158182 2.913033 -5.815977 3.638909 8.017585 4.028566 4.495740 -1.077845 7.634299 -2.477480 6.301116 -4.874778 7.106221 -0.994410 -4.050727 -3.768014 -1.930544 -1.628660 2.752212 2.416620 1.170292 4.871620 1.791379 1.665633 9.486539 5.765438 -4.465600 3.021450 -2.551644 7.186222 -6.737864 -6.653968 0.677419 5.247924 1.516438 2.957329 -14.621132 -9.661656 -11.990030 -10.680688 -2.261021 1.797170 3.634745 2.151769 -2.327034 -10.866668 -7.320964 12.173156 -0.528718 8.674889 6.587315 2.882101 9.337298 7.009872 1.160270 -2.531339 -0.884296 3.642317 -0.147759 -1.404300 -8.664881 7.657413 -8.543358 6.470226 10.789242 -5.337320 6.676260 1.643297 5.973143 -11.271297 11.905435 3.170923 -11.224896 4.452493 10.729576 5.907035 -4.897094 -6.656750 -PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/weighted-job-scheduling.cpp__main = 0.288479 -0.493912 1.567500 1.051719 -0.506072 -0.045153 0.331176 -0.405339 0.433390 -0.686374 -0.425629 0.392680 -0.743001 0.343096 -0.609541 0.365075 -1.495514 -0.663673 -0.216422 -0.384389 -0.145082 -0.213664 0.580440 0.297980 0.815110 0.976720 -0.490663 -0.403424 -0.751692 0.084949 0.756654 -0.286544 0.553377 0.760772 0.063216 -1.644943 0.606302 0.509765 -0.394383 -0.816180 0.706230 -0.590952 -0.052001 -0.996530 -0.324157 0.087253 0.194314 0.941830 0.473671 0.203839 -0.554321 0.149580 0.155956 1.308768 -0.431338 0.306767 0.636857 -0.099409 -0.129160 -0.246517 0.209402 -0.031280 0.170448 0.205698 -0.159653 -0.890200 -0.350394 -0.968757 -0.464659 0.568963 0.092961 0.383825 -0.740491 -0.165743 -0.857902 -0.015800 -0.622784 1.143425 1.032971 -1.030158 0.527656 -0.058227 0.193861 -0.043226 -0.047969 0.385120 0.127201 0.319629 0.146952 -0.240526 -0.988925 -0.199664 0.178384 -0.609265 -0.280615 -1.572607 0.600559 -1.189038 -0.756659 0.028387 0.491699 -0.513498 0.315000 0.133563 0.015838 0.589715 -0.402312 -0.400900 0.209147 -0.003618 0.228566 -0.033478 0.100433 0.394696 -0.249672 -0.690485 -1.152943 0.497273 -0.081088 -0.163122 0.436266 0.569480 -0.261002 0.018451 -0.011666 0.261442 -0.451578 1.206731 0.085058 0.131640 0.193043 0.209062 0.261836 0.228928 0.683110 1.197987 -0.671271 -0.114966 -0.377941 0.182023 -0.472081 -0.669307 0.036873 0.261891 0.122419 -0.860328 -0.749719 -0.511686 -0.624020 -1.092090 -0.039945 -0.461064 -0.214688 0.841727 0.576416 0.744762 0.665333 1.133552 -0.584636 0.158347 0.062313 -0.246396 0.539610 0.461663 0.520181 -0.395174 -0.431450 0.398679 -0.321826 0.492938 -0.032875 0.208985 0.229423 -0.962758 -0.154899 0.460437 0.636401 -0.140598 0.613333 0.699758 -0.574458 -0.448496 -0.044701 0.621527 -0.366562 -0.253619 0.402181 -0.767420 0.583291 0.107463 0.005249 0.511690 0.080923 -0.304843 0.459466 -0.191757 0.150550 -0.417131 -0.187934 -0.324808 -0.268960 -0.748094 0.507912 -0.232004 -0.359649 -0.449206 -0.638820 1.014550 -0.968030 -0.392983 0.526002 0.075890 0.707519 -0.998551 0.670608 -0.536638 0.949382 0.263576 -0.093180 0.195382 -0.643303 -0.808950 -0.098153 0.266159 -0.057973 0.007274 0.691182 0.596774 -0.129185 -0.020014 0.843735 -0.253088 0.973916 -0.233921 0.394152 -0.296903 -0.585171 0.326893 -0.069181 -0.364375 -0.268891 0.456334 1.361269 0.216514 1.126347 1.064910 0.294002 1.063830 -0.529466 0.130884 -0.267073 0.651760 -0.360836 -0.386277 0.187715 0.686430 -0.191059 0.400134 -1.033692 -1.766511 -1.216962 -0.948882 0.125077 -0.914849 0.253732 -0.343528 -0.129354 -0.849474 -0.631969 -0.038526 -0.286348 0.829739 0.651016 -0.064008 0.653535 0.685317 -0.801807 -0.074939 0.672195 0.909397 0.301306 0.156787 -1.217932 0.742075 -0.714045 -0.144033 1.528032 -0.670386 0.345275 -0.315163 1.175534 -0.628989 1.284520 0.256450 -1.073550 0.627841 0.709067 0.413832 0.844780 -0.536351 -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.300531 -0.334370 2.758088 1.506241 -0.670804 0.096581 0.079100 -1.551052 1.383917 -1.120883 -0.614370 0.353833 -0.964945 0.632085 -2.148411 0.616410 -2.449564 -1.159211 -0.767350 -1.543727 -0.574794 -0.434189 0.882210 0.057758 1.218534 0.762492 -1.027872 0.028619 -1.590535 -0.578720 1.238866 -0.508267 0.378764 -0.473962 0.017006 -2.373760 1.643076 1.025917 -0.932022 -1.013583 1.171865 -1.325373 -0.330950 -1.338162 -0.439898 -0.136691 -0.252069 1.193819 1.223055 0.124244 -0.131989 1.010611 -0.282962 2.908554 -1.522834 0.755890 0.595596 0.068741 -0.480287 0.503130 0.129634 0.387985 0.149265 0.333500 -0.295348 -1.816055 -0.164166 -1.108037 -0.467806 1.311491 -0.276258 -0.201920 -0.831096 -0.177697 -2.236170 -0.254964 -0.781666 1.463032 1.646853 -1.509845 0.535496 -0.285155 0.344498 0.307705 0.289104 0.409890 1.229569 0.421877 0.153818 -0.691773 -1.380950 0.641424 0.394268 -0.757004 -0.605520 -2.923599 1.178833 -3.272322 -1.516493 -0.054579 1.141801 -0.940723 0.226985 0.120643 0.288648 0.241662 -0.699397 -0.887426 0.551977 0.513550 0.222252 0.033374 0.602687 -0.484877 0.113507 -0.729710 -1.970759 0.931453 -0.300077 0.143544 -0.133338 1.346877 -0.283028 -0.684235 0.039868 0.876309 -0.951682 1.533295 -0.817587 0.661126 -0.819592 1.068531 -0.326937 0.426922 0.958793 0.716696 -1.112885 0.266731 -0.879544 0.284291 -1.517406 -0.769555 -1.137704 0.383124 -0.204888 -1.474204 -1.043002 -0.393658 -0.978862 -2.032125 -0.195498 -0.640423 -1.938224 0.385345 1.108056 1.915836 1.458316 1.572301 -0.570808 0.142534 0.096299 -0.449221 1.508626 -0.707053 1.099772 -0.765021 -0.868070 0.569311 -0.672560 0.781191 -0.140626 0.350324 0.147122 -1.915693 0.124152 0.545808 1.110935 -0.007473 1.257764 1.466365 -0.803471 -1.711622 0.449718 1.348604 -0.883056 -0.152898 0.327369 -1.163800 0.461418 0.807031 0.510602 1.300405 0.213924 -0.398795 0.202368 -0.162088 0.790913 -0.934760 -0.638316 -0.575604 -0.597195 -0.934529 0.720116 -0.603563 -0.409598 -0.950150 -2.077293 1.505340 -2.496904 -1.067929 1.993249 0.244423 1.290262 -1.649514 0.421154 -1.079955 2.043715 0.564995 0.680244 0.097813 -0.501640 -1.936062 0.735796 0.373890 -0.572966 0.727473 1.336082 1.138353 0.637233 -0.474031 1.719018 -1.086108 1.715106 -0.752553 1.156340 -0.513661 -1.695543 0.540371 -0.256725 -1.074532 -0.694190 1.401165 1.657924 0.453441 1.749421 1.439270 0.897849 2.056987 -0.802577 0.686814 -0.654755 0.149062 -0.559803 -0.775762 0.898266 0.728970 -0.319239 0.428933 -2.030709 -2.775849 -2.884866 -1.748590 1.057120 -2.026433 -0.041167 -0.578105 -0.211487 -1.658225 -1.157837 0.936265 -0.519759 1.498951 1.118953 0.188978 0.827000 1.619300 -1.416438 0.310261 0.716670 1.168713 0.510908 -0.293308 -2.192914 1.918073 -1.017727 -0.120237 2.467818 -1.156089 0.679410 0.296526 0.634953 -1.082695 1.794492 0.374288 -1.259584 1.255489 1.277496 1.272844 1.614718 -0.877917 -PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -2.238773 -4.428728 8.887945 5.698269 -1.107154 2.059871 2.209758 -2.629342 1.235354 1.736964 -1.624724 4.191988 -4.144016 -0.623457 -1.374183 0.800341 -5.892351 -3.783697 -1.186638 -3.081637 -2.493514 -1.991548 -1.441187 5.014968 3.890310 0.897000 -3.034334 -0.279971 -6.406253 -5.509263 -1.583164 -0.306810 2.947988 -0.851225 3.144042 -9.765089 4.196127 5.725554 -0.823904 -4.882769 2.535184 -2.482867 -0.437855 -0.447969 -2.908655 1.425457 2.701425 0.931180 2.013583 1.182566 0.567608 -0.465908 2.212503 8.903476 0.750163 4.319931 4.871638 -2.201329 0.447676 -0.180809 0.498634 -3.124901 1.777700 0.014673 -1.330703 -2.832169 0.770820 -1.660980 -1.612107 2.716178 1.656703 -3.909388 -2.099320 -3.349335 -6.607371 -2.096860 1.475471 3.417024 6.389353 -4.215898 5.621956 1.585968 2.086207 1.017938 3.811138 0.228546 5.186430 1.144154 -1.373056 0.276268 -3.171009 -1.338087 -0.027972 3.612097 -2.981424 -3.956954 3.427567 -8.683973 -6.881062 3.050872 0.927889 -3.627634 -2.984148 -0.641839 1.551294 1.565632 -2.047599 -4.317568 -2.586657 2.735207 -2.146054 -0.901738 0.294866 -0.127396 -0.517217 0.278379 -5.809290 2.864423 2.638829 -1.184480 -2.508760 5.657814 -0.435221 3.339336 0.257727 2.465586 -1.261436 3.941846 1.063367 1.390596 -2.140909 -0.344217 -3.984465 -1.652899 1.139887 0.104431 -3.283070 -1.869390 0.291263 2.272622 -1.108662 2.857682 -2.245702 7.004038 2.340415 -2.517144 -4.166262 -4.058506 -4.079671 -5.084633 -0.096924 -1.892841 -4.947807 2.067916 3.494810 2.299888 0.456176 4.119096 -0.521836 2.133293 0.553518 -2.149503 1.857411 -3.632845 3.070225 -3.778068 -2.856745 2.637219 1.856434 4.320083 0.076292 0.089693 0.976927 -3.290715 -3.465591 1.660032 1.853941 1.156070 5.239835 5.406911 8.648311 -4.213852 -0.226637 1.102661 -2.157275 -0.909831 0.503168 -4.127041 0.813697 1.786042 -0.668510 7.261700 0.337042 -2.305308 2.769159 -0.232219 1.301378 -4.479537 2.454746 -2.611489 1.113818 -1.870329 -1.627602 -3.541424 -1.553190 -4.483325 -4.483212 6.988008 -7.272880 -6.206135 4.442151 0.284272 4.416943 -8.263545 5.724246 -2.657304 5.944475 -0.967709 -1.536107 0.342871 0.320558 -2.615462 3.661864 1.343004 -3.191208 1.839639 4.117039 1.916094 2.194190 -0.507238 3.867946 -1.699301 2.933687 -2.858516 3.530040 -0.882576 -2.746672 -1.646585 -0.966935 -0.408308 1.513458 1.374058 0.271325 2.133954 0.859770 1.054187 5.016098 2.612601 -2.379085 1.330741 -0.985111 4.037566 -3.579584 -3.291983 0.045280 3.218910 1.113090 1.333479 -7.526056 -4.990451 -6.877520 -6.294911 -1.168407 0.322821 1.676692 0.908249 -1.263645 -5.541822 -3.983340 6.485838 -0.202975 4.471893 3.848317 1.578683 5.255161 3.695819 0.388882 -0.892413 -0.054743 1.908016 -0.467232 -0.929970 -4.255945 3.371211 -5.084621 3.376772 5.537937 -2.366363 3.800302 0.605311 2.482967 -6.155062 6.092703 1.952771 -6.041422 1.851980 5.780353 3.406561 -2.699262 -3.631313 -PE-benchmarks/karatsuba.cpp__main = 4.992352 -8.264870 45.331318 20.999168 -7.784277 0.977903 26.166577 -22.038217 24.711173 -4.495266 -9.646179 -5.643483 -28.100235 -0.277563 -15.832990 5.743615 -40.238292 -19.561420 -5.051284 -20.649534 -7.598229 -19.042354 24.745079 -0.107811 25.714299 13.076990 -8.547393 -14.977480 -20.820658 -9.016907 29.495932 -7.721097 10.396409 13.513020 -0.766044 -48.606663 24.791707 10.204427 -12.169667 -14.340891 20.251669 -8.848236 -4.241873 -8.233753 3.129675 2.329876 5.959535 40.475353 25.544422 9.475205 2.413157 -11.507268 -2.800853 42.631617 -21.857350 11.507058 8.812294 -4.655310 -4.407132 15.749640 -0.255187 -6.400218 3.616019 17.038359 -4.718319 -14.137460 11.372154 -26.240744 -23.331409 27.984380 1.949522 -3.469129 -17.103075 -4.138890 -17.000036 -0.019497 -19.378171 28.232537 35.252844 -21.338821 23.288997 -2.200533 8.896603 -9.819506 -6.012646 2.625544 11.054114 1.083649 -5.876041 -17.087702 -38.307573 -7.918357 0.303505 -12.107977 0.252495 -39.067682 17.696982 -26.161419 -27.106914 -2.044771 14.056638 -14.091560 -5.522653 14.883451 8.247554 5.453078 -9.390135 -22.865911 -4.421516 4.923077 -17.565151 10.699150 4.960801 -0.148605 -13.957446 -16.074306 -27.772234 7.031231 -8.484808 -8.618499 -7.047002 21.719193 -12.820486 4.561240 10.674624 14.208113 -7.970084 21.838422 0.286825 6.831789 15.432938 7.325355 -8.827122 2.036544 19.019760 31.591093 -3.030308 -0.589409 -10.623534 7.390241 -27.134979 -8.129209 -6.587681 11.952876 6.520500 -32.411402 -21.754242 -0.129974 -5.859670 -34.635338 6.725071 -13.570811 -14.346782 3.005390 17.413771 24.438264 15.141386 30.234316 -25.276879 9.288626 -1.336064 -8.671098 9.614381 8.452787 22.264616 -14.587708 -10.987144 -4.141708 -4.847713 9.935477 -7.781479 -2.387360 -0.726732 -36.995581 -9.507550 -0.458335 10.846929 -7.185723 3.980312 26.087834 7.271429 -32.261695 1.095346 27.095647 -5.339181 -11.561577 16.132287 -28.043782 18.719020 4.600501 3.589836 17.917932 4.379946 -8.530823 9.921154 -9.577323 4.670326 -16.755841 -13.537294 -11.107940 -6.878771 -17.630571 10.170815 -12.069355 -13.893437 -9.530484 -14.998121 24.206376 -11.477450 -20.465908 32.688005 -7.674995 17.721619 -29.907636 33.823308 -13.264702 10.130956 -2.905274 -0.511323 -3.266540 -0.312069 -15.823193 5.167911 -4.667593 -0.136040 22.095091 35.916445 16.614590 11.211187 -2.964584 31.007468 -11.502546 18.470914 -10.111228 13.409796 -11.815608 -24.182328 6.218810 -4.815235 -7.903906 -6.869744 10.213659 37.841374 18.581241 14.447011 32.713204 8.629145 28.460496 -9.396775 10.833918 -0.150171 18.719542 -8.365096 -13.522116 15.076552 8.315272 -14.065184 14.699108 -35.380416 -48.555151 -15.828584 -41.177023 -0.043513 -30.134493 10.879055 -6.415490 0.672741 -30.371718 -13.340219 0.704656 -2.801406 19.135951 16.839781 0.480884 17.316874 31.981143 -22.314689 4.826412 16.808445 25.798784 -2.918084 -9.894462 -29.736165 21.294419 -25.617707 6.877713 34.449880 -15.349378 6.222285 -19.293880 28.965792 -32.895855 28.548956 7.404492 -15.146991 22.900688 13.202979 25.702780 26.853180 -12.029319 -PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 0.127492 -7.136256 18.423773 6.254599 -4.358867 1.750242 15.194897 -4.490103 7.394722 -3.061530 -6.617278 -3.135678 -14.363585 -5.745277 0.216733 -5.419880 -18.436100 -9.714088 1.679760 -3.707344 -3.018407 -11.975191 6.268564 7.419337 9.274817 9.960199 -0.783260 -4.816799 -9.583002 1.199787 12.153013 -2.169461 5.106743 17.100356 6.301301 -20.256133 6.424909 2.170017 -0.927053 -6.905388 4.580351 0.522327 -0.872763 -1.567631 2.316962 4.015818 9.286248 23.635834 8.612117 2.642726 -3.654957 -17.872461 -3.952413 11.925539 -1.425870 4.632272 7.384592 -5.194077 3.784453 4.917493 -0.463973 -10.997149 0.783205 10.825515 -5.122272 2.357000 10.943701 -14.049998 -10.515217 13.370729 7.065222 0.138316 -7.069057 -4.845082 -5.753247 0.656175 -3.344680 13.129989 18.615373 -7.503151 15.882499 2.536762 10.969465 -6.475353 -1.410993 -0.123299 5.930253 -0.755722 -8.099890 -3.306246 -25.423896 -10.254519 -4.266669 -3.905442 3.281194 -8.688606 4.729038 -12.274450 -12.324072 0.891359 0.977985 -4.535261 -2.761576 11.370061 6.802372 1.752864 -2.319539 -11.015313 -5.295819 1.804303 -17.871205 9.088359 2.685203 8.408512 -8.658963 -7.838154 -10.003455 0.733167 -0.688545 -6.644653 0.167920 11.085176 -7.998961 10.986944 7.189382 2.412024 0.529579 9.089735 8.807535 -3.858105 9.885680 -5.413413 -2.857361 -1.709878 5.029692 18.013148 0.827331 -5.998643 2.941389 4.992985 -8.736830 -3.736410 -1.018603 7.301442 0.955935 -16.162369 -11.748167 -3.387047 -5.625079 -13.924001 3.191284 -5.443568 -4.398784 3.090557 6.569513 10.876652 0.136770 12.090789 -11.599348 6.994336 -2.073920 -3.428624 -5.025623 8.608105 9.490209 -6.812047 -2.094960 -3.588013 -2.102528 6.572607 -1.933577 -8.504805 -0.601489 -15.100559 -10.516313 0.253211 3.906621 0.110143 -0.808636 12.161868 3.350715 -13.872823 -3.285460 9.581737 3.030732 -9.736000 10.653836 -11.807458 12.342643 -1.681122 -0.344525 6.475312 1.410771 -2.933069 6.146350 -3.264071 0.551714 -8.930846 -6.924179 -3.970772 1.790485 -9.002086 6.076206 -9.286433 -6.874192 -5.073222 -3.771567 11.037290 0.440832 -12.268522 11.717850 -2.944977 13.750614 -12.884705 11.234738 -3.043740 5.795214 -2.018986 -4.303294 -2.088314 -3.939914 1.780420 1.374679 -5.077190 1.229493 8.841171 11.468712 5.616281 5.897983 3.117758 11.787436 -2.080844 1.714309 -3.308059 -1.238693 -4.986441 -8.375901 1.830712 -1.971393 1.501816 3.689069 0.655272 14.382931 11.609859 3.725588 16.421718 3.286720 3.924185 -2.862941 -4.439289 2.640233 14.008275 -6.326369 -7.478567 1.536143 5.017746 -6.935658 3.509988 -15.650460 -21.310154 -2.752215 -21.160871 -10.416819 -12.426276 6.168117 3.175779 1.626105 -11.316492 -2.247147 -1.210289 2.158665 11.722277 5.886759 -1.790457 11.226871 13.914151 -8.092450 -2.117461 13.021334 13.571158 -7.476621 -0.024850 -15.497843 4.905201 -14.964756 8.209252 14.479399 -7.082764 2.130874 -13.543727 19.692512 -20.060599 12.467937 6.013477 -12.535104 4.095530 2.682194 9.032530 12.202519 -5.868852 -PE-benchmarks/tarjan-algorithm.cpp__main = 1.387980 -2.172732 7.051530 2.760028 -5.520383 -1.645898 -0.826561 0.600759 2.419897 -12.591071 -4.381418 1.761428 -2.778128 2.098232 -3.853578 -1.596752 -13.208029 -5.015398 1.670368 1.336574 -0.122796 -1.777967 3.263417 3.244092 1.733158 10.969311 -2.653421 0.699563 -1.565767 7.537391 9.035373 -4.519684 3.253975 10.290978 0.862535 -13.719152 1.884614 -3.015938 -1.684889 -3.776449 1.970973 -4.339721 0.749550 -12.562795 -5.353248 -0.885208 3.366823 9.530154 1.960056 -2.477414 -10.644300 -2.176245 -4.039367 6.470946 -2.614016 -1.369104 3.727588 -1.734279 -0.831556 -4.475342 2.103443 -1.662673 1.596396 4.841870 -3.984235 -3.460819 0.075631 -9.652324 -3.280602 4.076759 2.637761 10.056163 -3.502559 2.466268 -7.354574 0.634345 7.249534 8.529848 7.391794 -5.098437 2.860509 -1.078331 5.736162 0.847248 -1.179795 4.280644 1.997451 2.210430 -2.061633 -1.631939 -10.730188 -0.936071 -0.246570 -6.553759 3.545531 -8.977785 -0.476381 -11.885272 -1.509548 -1.489168 1.210108 0.343571 3.430851 0.178253 4.468398 3.621135 -2.108264 -1.083143 3.119618 -3.195847 -2.843192 1.963920 3.327457 6.286837 -1.525510 -7.262105 -6.086033 0.084598 -0.941635 -1.657094 8.456640 2.637760 -4.538631 0.268264 -0.114284 -0.498690 -2.369799 7.543508 1.766791 -3.860614 1.384326 -2.288765 9.060402 -0.841998 2.534614 13.377355 -4.123133 -5.365637 -0.763064 0.953834 -3.552824 -12.448164 1.431888 -2.215392 -3.631066 -5.777382 -4.859535 -4.205097 -4.584439 -8.427707 -1.619153 -3.586380 -1.411766 10.479552 3.387216 5.350642 5.097679 5.875016 -3.058163 4.323839 -1.522244 0.343746 2.555888 4.692751 3.095543 -1.156017 -0.040475 2.429509 -5.999650 3.908255 0.265580 -4.245553 1.579136 -6.501152 -3.793240 3.717770 6.645406 3.041797 0.481295 0.864851 -12.438809 -4.463843 -0.262959 4.436872 1.727850 -3.175386 4.269674 -2.327321 5.695288 -0.568010 -0.969216 -1.330887 0.555511 -4.714336 0.357155 1.926429 0.956478 -1.574816 -5.254666 0.510910 0.115940 -5.243995 5.322252 -2.778498 -1.900210 -3.815170 -5.297684 4.704408 -8.717446 -3.767919 2.632148 1.524492 12.105613 -6.267000 -4.669606 -3.574584 11.408725 3.325302 -0.351762 1.533062 -10.699255 -3.214306 -0.407215 1.491091 1.833313 -1.906900 -0.949639 5.145743 1.661672 2.001145 4.200745 1.888478 4.181480 1.618417 -2.744630 -2.132099 -4.243316 4.325985 -0.350620 -0.818979 1.003790 5.601866 7.954831 2.935319 10.725323 12.614346 1.905856 3.646266 -3.571400 -6.512123 -3.043005 4.884297 -1.178785 -2.058656 -1.732970 6.677228 -2.671232 1.548306 -4.533202 -15.550843 -11.739895 -6.057093 -2.387896 -8.208647 -0.241775 -1.296721 2.643764 -3.948449 1.729947 -3.705152 -1.273800 11.778705 3.706261 -2.280258 3.584645 3.727870 -8.878377 -6.307186 10.093386 7.604221 -0.048512 7.014497 -14.533572 3.690704 -5.574521 0.076998 10.829944 -6.621199 -2.328782 -3.239680 10.294265 -1.869172 8.488396 3.883418 -10.173545 1.062644 -0.924846 -0.822604 12.666689 -3.545696 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -1.374990 -4.164873 9.815178 5.544323 -1.728772 1.483887 3.170789 -3.231704 1.877066 0.773111 -1.767508 3.319873 -4.726850 -0.239813 -1.517475 0.838758 -7.043974 -4.336738 -1.354286 -3.570926 -3.140001 -2.470111 0.195142 4.271627 4.412925 2.004391 -2.757223 -1.020758 -5.984255 -4.835558 0.174105 -0.570431 2.917939 1.435022 3.472898 -9.770944 4.443604 4.440741 -1.142471 -4.625479 2.831026 -1.648087 -0.953485 -0.425943 -1.690157 1.575635 2.903918 3.437726 2.660871 1.782053 0.713653 -1.615389 1.097669 8.861040 0.133454 3.869754 4.933749 -2.317485 0.759842 0.371896 0.341921 -3.295711 1.196508 1.071586 -1.238383 -2.429133 1.598987 -3.299612 -2.269479 3.883491 2.212376 -3.676626 -2.509238 -3.814949 -5.686010 -1.438313 -0.232076 4.412133 7.461478 -4.640762 5.553685 1.497895 2.664197 -0.171378 2.856206 0.074704 5.171183 1.114445 -1.550461 -0.299495 -4.785562 -2.106483 -0.683150 2.628391 -2.254463 -3.946769 3.836398 -8.158152 -6.798746 2.825248 1.303133 -3.406417 -2.845050 0.725117 1.788538 1.311607 -2.134890 -4.533791 -2.905748 2.209747 -2.671523 0.311323 0.482881 0.676230 -1.600444 -0.152385 -6.294680 2.678638 1.983698 -1.732189 -2.332878 5.477090 -1.234249 3.495697 0.939939 2.611725 -1.362299 4.568715 1.850456 1.156057 -0.402246 -0.434898 -3.707016 -0.718518 1.728849 2.123930 -2.685918 -1.706260 0.143091 2.213574 -2.233600 1.934607 -2.324335 6.662488 2.482942 -3.861602 -5.637590 -3.294920 -3.447449 -5.841573 0.424422 -2.946452 -4.505190 1.784865 3.296986 3.702851 0.537329 5.042821 -1.695964 2.842043 0.364848 -1.778565 1.119452 -2.438243 3.534771 -3.963724 -2.797449 1.821452 1.130792 3.523130 0.261253 -0.997082 0.837654 -5.020357 -4.286411 1.761925 2.050091 0.506865 4.213934 5.626361 7.644361 -4.707382 -0.736625 2.192874 -1.917948 -1.902320 1.537637 -4.618080 1.597006 1.198445 -0.133596 6.771065 0.608032 -2.085128 3.133905 -0.561645 1.252850 -4.166126 1.416177 -2.401468 0.784499 -2.475557 -0.332811 -3.619414 -1.402348 -3.387984 -4.208595 7.085008 -6.463181 -6.608414 5.310469 -0.698832 5.095537 -8.368225 6.246358 -2.511602 5.172730 -0.850779 -1.238972 -0.390189 -0.323163 -2.277849 3.927836 0.596653 -2.157724 2.017875 5.270744 1.878838 2.411708 -0.057629 4.691597 -2.050919 3.248702 -2.393619 3.716802 -1.257200 -3.435337 -1.218049 -0.760089 -0.879010 0.756672 1.460691 1.796895 2.394344 1.202180 2.587797 4.230909 3.158818 -2.542322 1.390690 -0.521754 4.486261 -3.866424 -3.429557 0.966111 3.041812 -0.077716 1.472199 -7.535562 -6.537080 -6.358097 -7.619284 -2.068412 -1.149316 2.391440 0.260608 -1.295245 -5.030750 -3.689825 5.308851 0.150881 4.655063 4.320816 1.328199 5.606581 4.941891 -0.789311 -0.812221 0.671863 2.902743 -0.756734 -0.820455 -5.069127 2.948511 -5.530001 2.953517 6.325528 -2.288349 3.627302 -0.955451 4.533132 -6.851843 6.376466 2.169442 -6.002309 2.562408 5.520866 3.891469 -0.530593 -3.580431 -PE-benchmarks/the-knights-tour.cpp__main = -0.037619 -0.297992 0.351730 0.320907 -0.008186 0.048204 0.192336 0.007350 0.189443 -0.000514 -0.139211 0.088707 -0.330209 0.072551 -0.024239 0.133536 -0.238364 -0.280864 0.040752 0.028710 0.012224 -0.174650 0.144652 0.070505 0.165768 0.238728 -0.096428 -0.172849 -0.341784 0.067592 0.225750 -0.111853 0.205349 0.370084 -0.010923 -0.324071 0.083278 0.176436 -0.079382 -0.344372 0.115882 -0.173292 0.089317 -0.226682 0.077061 0.114784 0.141068 0.192916 0.076138 0.100055 -0.056654 -0.129430 0.037817 0.229201 -0.110992 0.137591 0.235166 0.021791 0.018158 -0.100913 0.117335 -0.033040 0.134352 0.187458 -0.132528 -0.127141 -0.182742 -0.284562 -0.273929 0.122693 -0.014542 0.223115 -0.290191 -0.066342 -0.071730 -0.021601 -0.453901 0.249072 0.413363 -0.291395 0.305418 0.113452 0.204945 -0.069682 0.028706 0.109729 -0.039034 0.102372 -0.101995 0.019595 -0.297909 -0.108595 -0.026710 -0.090413 -0.060130 -0.165856 0.171632 -0.033205 -0.235846 0.084599 0.011899 0.023724 0.012612 0.181070 -0.006447 0.295211 -0.170657 -0.215987 -0.033993 -0.039808 0.105311 -0.062806 0.002794 0.122785 -0.179143 -0.295137 -0.301101 -0.041212 0.030900 -0.265253 0.123495 0.172124 -0.178703 0.150405 -0.008817 -0.042823 -0.064491 0.405581 0.204431 0.043543 0.196863 -0.131254 -0.236061 0.070384 0.202221 0.541619 -0.155324 0.065788 -0.015485 0.006359 -0.013380 -0.189772 0.123784 0.025209 0.181354 -0.244261 -0.206711 -0.217241 -0.058842 -0.289455 0.072227 -0.211388 0.248328 0.202921 0.198587 0.182316 0.159130 0.576609 -0.293009 0.089466 -0.031307 -0.062436 0.059244 0.339278 0.137662 -0.094940 -0.182036 0.124097 0.093870 0.011067 0.119619 -0.057285 0.046725 -0.263536 -0.041941 0.177047 0.125176 -0.129613 0.212216 0.099644 -0.188552 -0.106919 -0.006024 0.107254 0.027554 -0.030211 0.074154 -0.328663 0.290666 -0.052686 -0.043269 0.006630 -0.004060 -0.114349 0.179991 -0.152199 0.030353 -0.147067 0.046447 -0.154943 -0.088424 -0.296320 0.228457 -0.047898 -0.183142 0.002198 0.094302 0.310162 0.073692 -0.038517 -0.034231 0.084804 0.104819 -0.241774 0.259355 -0.154002 0.244251 -0.020630 -0.085724 0.028206 -0.037940 0.011141 -0.239500 0.146894 0.009230 0.006289 0.208759 0.126798 -0.128850 0.164734 0.210600 0.040825 0.099439 -0.017664 0.063950 -0.033893 -0.061568 0.177091 -0.089618 0.106217 -0.016558 -0.051389 0.491561 0.213152 0.159385 0.322227 0.013000 0.187820 -0.162123 -0.011095 0.022515 0.393526 -0.120736 0.002247 -0.124495 0.151886 -0.096208 0.111032 -0.241023 -0.473765 -0.007122 -0.244943 -0.096468 -0.111186 0.065772 -0.021756 0.049156 -0.240929 -0.160711 -0.122716 -0.152372 0.266721 0.073440 0.026331 0.237781 0.185542 -0.223883 -0.144808 0.183797 0.187740 -0.042715 0.088381 -0.195215 0.085571 -0.244536 -0.014687 0.298791 -0.134812 0.009335 -0.086959 0.459574 -0.151476 0.465535 0.174421 -0.244544 0.244115 0.172612 0.313170 0.133312 -0.163052 -PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -0.686553 -2.047017 2.904863 2.210224 0.219081 0.778414 1.025584 -0.313915 0.727002 1.274273 -1.098330 1.668060 -1.898719 -0.182972 0.552723 0.447789 -1.766335 -1.884472 0.309622 -0.131651 -0.668832 -1.301077 -0.630385 1.980345 1.281979 0.662712 -1.009181 -0.045390 -2.636697 -1.775051 -0.720034 -0.353291 1.263314 0.904343 1.394149 -2.300638 1.222717 1.879150 0.172393 -2.290107 0.516250 -1.049994 0.105576 -0.172934 0.188437 1.224573 1.772622 1.285820 0.689199 0.682019 0.034115 -1.265405 0.474988 1.670584 0.459602 1.527683 1.934375 -0.852395 0.336024 -0.525887 0.372917 -1.711530 1.010371 0.850578 -1.264367 -0.590413 0.382881 -0.593129 -1.055562 0.995461 1.301069 -0.654384 -1.369611 -1.148245 -0.942058 -0.425135 0.439254 1.146982 2.849161 -1.054217 2.618105 1.151573 1.737033 -0.137117 1.363496 -0.137208 1.823317 0.372223 -1.393850 -0.282216 -2.467709 -1.403879 -0.500760 1.408442 -0.567834 0.378501 0.558765 -1.868562 -2.502628 0.866047 -0.294907 -0.749248 -1.183105 1.093172 1.226894 1.045495 -0.000844 -1.742546 -0.825018 0.539877 -1.553168 -0.534678 -0.249340 -0.025700 -0.866164 -0.112135 -2.180338 0.221365 1.185935 -1.218454 -0.488421 1.785898 -0.767655 1.891395 0.152037 0.321044 0.308451 1.327379 1.521872 0.143979 0.689673 -1.506723 -1.823398 0.325473 0.377590 0.668620 -1.270052 -0.320606 0.631566 0.677253 -0.099345 0.613922 -0.636202 2.674499 1.143224 -1.352067 -1.815544 -1.882723 -1.037893 -1.029747 0.601522 -0.995128 -0.647119 -0.157349 1.334444 0.421206 0.021042 2.258454 -1.108793 1.314063 0.281683 -0.090109 0.292543 0.070910 1.141338 -1.456419 -0.850341 1.215238 1.419754 0.530182 0.104057 -0.577696 0.612410 -1.437829 -1.530188 1.113554 0.162961 0.743630 2.011806 1.284357 3.285466 -1.183726 -0.141547 0.281165 0.080293 -0.624186 0.520162 -1.843849 1.229756 0.031070 0.476481 2.394879 0.117405 -1.275513 1.059874 0.218782 0.224531 -1.707488 1.195937 -1.016136 0.606277 -0.657096 -0.039207 -1.232728 -0.880031 -1.164717 -0.144940 2.586919 -0.307317 -2.771388 0.742278 -0.684961 1.789199 -3.126382 1.802241 -1.087063 1.320538 -0.631451 -0.824816 0.112367 -0.303627 -0.168591 0.683669 0.754187 -0.357407 0.895551 1.049438 0.582592 0.475141 0.679134 0.867305 0.149232 0.451534 -0.446032 0.571168 -0.138901 0.030843 -0.509596 -0.502449 0.599319 1.196015 -0.681540 0.430824 1.514523 -0.164012 1.033521 1.213712 0.353486 -0.969467 0.191047 -0.196808 2.197703 -1.369110 -1.065152 -0.731932 0.504945 0.085543 0.826453 -2.592337 -1.878443 -0.352548 -2.824191 -1.239110 0.412097 0.973832 0.737419 -0.106999 -1.995792 -1.044289 1.657849 0.363787 2.850687 0.948727 0.299772 1.873553 1.026074 -0.021314 -1.130674 0.033571 0.441263 -0.850877 -0.169644 -1.215768 0.750761 -1.807805 1.588629 1.875133 -1.161788 0.735249 -1.137552 1.747143 -2.220325 2.511638 1.182050 -2.341412 0.388216 1.054844 1.951419 -1.444893 -1.523890 -PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -0.408231 -1.677944 2.817525 2.032600 0.235298 0.430827 0.713862 -0.012037 -0.073525 1.157863 -0.981496 1.932650 -1.044449 -0.425209 0.663815 0.425516 -1.439164 -1.536295 0.063354 -0.048013 -0.323620 -0.557773 -0.661323 1.962504 1.503310 -0.156841 -1.206768 -0.197713 -2.119996 -2.118873 -1.394468 -0.058134 1.081384 0.055690 1.425243 -1.615101 0.960590 1.532279 0.253415 -1.848749 0.649639 -0.319900 -0.087535 -0.202445 -0.416691 1.248851 1.819442 -0.180775 0.406836 0.916095 -0.306059 -0.879356 0.806936 1.284761 1.053286 1.159500 1.916442 -1.039879 0.722603 -0.547460 0.339397 -1.763807 0.476252 0.066924 -0.362218 -0.583383 0.031036 -0.294949 -0.207132 0.807408 0.607588 -0.931988 -0.999256 -1.212163 -1.805051 -0.287838 1.047276 1.380928 1.963791 -1.235955 1.908799 0.843465 1.333420 0.045910 0.783796 -0.084039 0.976654 0.473543 -0.656613 -0.060242 -1.419035 -1.770273 -0.644550 1.400932 -0.634086 0.826349 0.778501 -2.624415 -2.007140 1.017945 -0.038616 -0.905259 -1.112070 0.501436 0.652535 1.025740 0.412048 -0.974838 -0.770951 0.414278 -0.783614 -0.329921 -0.269604 0.153562 -0.527801 0.709590 -1.900233 0.711790 1.073207 -0.684682 -0.532376 1.317073 -0.575679 1.689429 -0.012664 0.533865 0.061825 1.079573 1.351008 0.547848 0.427090 -1.107310 -2.167426 -0.101948 0.349270 -0.093710 -1.199705 0.080668 0.351007 0.634079 0.041791 0.977736 -0.453929 2.694378 0.807262 -0.995085 -1.962472 -1.784179 -1.484281 -0.634976 0.251103 -0.580732 -0.693816 0.935301 0.794376 0.409205 -0.243010 1.844740 -0.460797 0.592824 0.334995 -0.479641 -0.032548 -1.242596 0.673638 -1.217261 -0.516825 1.149054 1.173648 0.768261 0.342809 -0.232850 0.889880 -1.012192 -1.489547 1.053525 0.265214 0.730867 1.482462 1.289765 1.792449 -0.744481 -0.678283 0.100279 -0.136401 -0.794277 0.330832 -1.355091 0.938244 -0.100022 0.611738 1.987192 0.201576 -0.781682 1.206737 -0.043095 0.106979 -0.969694 0.979756 -0.838174 0.870915 -0.204557 -0.969086 -1.062994 -0.382542 -0.883739 -0.498477 2.236486 -0.525663 -2.349344 0.639973 -0.404569 1.304600 -2.808900 1.625539 -0.642790 1.620137 -0.075939 -0.590334 0.006661 -0.272437 -0.257547 0.460138 0.497891 -0.643738 0.412924 0.785510 0.293600 0.171968 0.297878 0.651504 -0.050442 0.853127 -0.154924 0.212167 -0.359413 -0.095270 -0.971656 0.024584 0.336164 0.916541 -0.492089 -0.387663 0.438884 -0.004917 0.474315 1.481983 0.500388 -0.904447 0.103935 -0.355869 2.062863 -1.360686 -1.246152 -0.426796 0.697687 0.275891 0.297794 -2.133592 -1.259209 -1.557619 -2.337244 -1.186217 0.028240 0.763076 0.217148 -0.700926 -1.366535 -1.110685 0.982192 0.648472 1.178775 1.000532 -0.006578 1.713697 0.558156 0.295390 -0.698751 -0.403034 0.407304 -0.324103 -0.350058 -1.033050 0.491864 -1.662375 0.921028 1.791552 -0.833037 1.065288 0.156438 0.401420 -2.017613 1.901143 0.750957 -2.342637 0.072517 1.301580 0.492799 -1.762007 -1.333401 -PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -2.270172 -4.646689 8.030146 5.656118 0.282097 1.760012 2.870259 -1.543362 1.424517 3.177511 -1.815356 4.373184 -4.503299 -0.125724 -0.383049 1.629747 -4.539525 -4.268697 -0.196992 -1.896062 -2.176057 -2.371988 -0.940934 4.360673 3.980713 -0.033688 -3.060010 -1.200827 -6.632021 -5.250904 -1.771583 -0.677670 3.220329 -0.926239 2.306384 -8.758610 3.525160 5.201095 -0.407861 -4.999259 2.459524 -2.604357 0.101794 -0.144956 -1.422571 1.750760 3.594952 1.452386 2.208784 1.881426 1.220484 -1.199780 2.105531 7.739366 0.286472 4.060907 4.413008 -2.075735 0.006687 -0.646889 0.647347 -3.667623 2.314494 0.799357 -1.852008 -2.550755 0.508308 -1.352727 -2.334622 2.283393 2.281138 -2.608386 -2.704039 -2.510285 -3.859331 -1.825349 1.582412 2.727779 6.542167 -3.445116 6.019140 1.948824 2.656923 0.338316 3.044967 0.043072 4.027256 0.902311 -2.106850 -0.942272 -3.927887 -1.337077 -0.693166 4.325286 -2.111337 -2.094346 2.697477 -4.954592 -6.534767 2.463111 0.216934 -2.786245 -3.162371 0.736414 1.913223 2.291238 -1.317899 -4.442908 -2.843616 1.726749 -2.343257 -1.411587 -0.329847 -1.227647 -1.363391 -0.204022 -5.605451 1.612924 2.335711 -2.272371 -2.754589 4.722092 -1.148245 3.918393 0.424545 2.301172 -0.389569 3.391242 2.382633 1.278799 -0.047946 -1.822146 -5.158838 -0.863754 1.426847 1.223884 -3.355213 -1.074301 0.076962 1.752418 -0.665883 2.422360 -1.272304 7.165662 3.260942 -2.938659 -4.279300 -3.982069 -2.324422 -3.589196 0.851298 -2.295760 -2.898502 0.415683 3.266959 0.947287 0.518736 5.436183 -1.520083 3.299876 0.827729 -1.610888 1.748086 -2.102192 3.066639 -3.732841 -2.619037 2.602856 3.176765 2.695227 -0.241589 -0.020110 1.381508 -3.547018 -3.292699 1.544726 0.946824 0.881206 4.897999 3.984812 9.971170 -3.944678 -0.195989 1.086905 -1.266760 -1.010431 0.864106 -4.515933 1.655740 0.988534 -0.532679 6.709169 0.554882 -3.446921 3.048922 -0.145885 0.819088 -4.217182 3.146567 -2.650973 0.897245 -1.538209 -1.526651 -3.010833 -1.735803 -3.458382 -2.055870 6.629399 -4.028774 -6.360800 2.670464 -0.509760 3.366063 -8.610572 6.838039 -2.804647 3.874186 -1.830434 -1.925532 0.243296 1.189385 -1.737073 2.803122 1.643189 -2.084412 2.418228 4.312105 1.676682 1.720471 0.257716 3.249652 -0.397869 2.326865 -1.652812 2.801128 -0.580618 -1.704425 -1.682959 -1.003709 0.350948 2.054430 -0.121328 0.681772 2.960876 -0.316599 1.635916 4.275497 2.496301 -2.337953 1.492275 -0.963642 5.160149 -3.252742 -2.872089 -0.618848 2.190637 0.595729 2.209429 -6.979455 -4.743127 -3.179128 -6.736963 -1.298321 1.370040 1.928120 0.902526 -0.842854 -5.770061 -3.312194 4.946377 0.187422 5.725866 3.298558 1.231553 4.755857 2.910472 0.215269 -1.696120 -0.443096 1.344935 -0.803189 -1.172387 -2.958573 2.428973 -4.835710 3.478025 4.745642 -2.421631 2.647760 -0.673884 2.812035 -5.613763 6.417521 2.133682 -5.292955 2.073677 4.197648 4.561775 -3.691425 -3.463333 -PE-benchmarks/graph-coloring.cpp__main = 0.743356 0.119377 4.147161 1.083469 -0.394036 -1.430595 2.423175 0.737298 1.232425 -0.711130 -1.274698 -2.685155 -1.890373 -0.869813 1.069544 0.026203 -4.720430 -2.484055 -0.152753 0.511418 -1.513872 -1.986785 3.097990 -0.513283 2.120445 4.244263 -2.252173 -1.383293 2.455256 -0.533031 3.973091 -1.361525 1.335017 5.652781 -0.583594 -6.475526 3.436519 -1.610889 -0.555188 2.509885 1.501969 1.466588 0.175295 -2.262969 -1.455339 1.278440 2.465035 6.050497 2.270868 1.345646 -0.550853 -4.800256 0.168682 3.700244 -0.214101 -0.623023 1.406166 -0.223044 0.320827 -0.042364 -0.096156 -2.248282 -0.611738 2.504983 -0.163524 1.927252 2.989990 -4.907322 -2.243828 3.593569 -0.215767 1.518534 -1.337840 -0.476541 -0.250071 1.198274 0.906547 3.515220 2.787586 -3.007437 1.561361 0.473148 2.936657 0.755137 -5.272486 0.838794 -1.958662 0.053328 -0.746518 -2.079984 -4.998193 -3.393406 -1.524971 -4.016227 0.627563 -3.856927 0.235394 -2.417061 -1.111226 -0.890668 0.061888 -0.259999 0.396258 1.121898 2.185015 -1.106911 1.684654 -0.361335 -0.401602 -1.172904 -3.783483 3.820188 0.690209 1.545015 -2.002115 -0.304301 -3.522728 1.847660 -2.082995 -1.066768 1.982853 1.683119 -2.504610 1.333599 1.663214 0.700661 -0.917569 3.322045 2.815396 -0.435041 2.248771 0.772580 2.159150 -1.029279 2.214499 4.538114 0.111980 -3.055721 -0.779711 0.218249 -3.334243 -2.226880 0.353145 -0.970917 0.924457 -4.102009 -4.268942 -0.752288 -3.364385 -5.031696 1.377741 -1.108711 0.263926 3.579495 1.100287 3.471038 1.432998 3.413556 -4.430653 0.858208 -1.428931 -1.029078 -2.506422 2.479287 1.482564 -1.064112 0.248176 0.200619 -0.511954 0.561276 -0.512168 -3.090403 0.950623 -3.864568 -1.032544 0.393674 -0.569226 0.079012 -3.496982 1.623491 -0.536923 -2.309915 -0.696028 3.606730 0.881614 -2.579053 4.046869 -1.545122 3.064583 -1.031054 -0.921527 -0.211622 1.096606 -0.755271 1.838630 -1.370641 -1.210504 -1.193222 -2.383879 1.147762 0.052255 -1.825940 1.137965 -2.278948 0.466883 0.698516 -2.175330 1.377756 0.336062 -1.104693 1.656358 0.624067 2.008326 -0.265141 3.553390 -0.657077 1.535463 1.295881 -2.478678 -0.109474 -3.745291 1.812321 -0.666635 -2.403744 2.339020 0.364157 2.385451 1.917805 1.327947 0.435146 1.958964 1.018825 2.767384 1.054621 -2.737713 -1.978286 -2.373257 0.775341 0.248252 -0.686853 0.286417 -0.440988 3.371526 2.527231 1.824939 5.163803 0.222799 2.409843 -1.092964 -2.922968 0.686370 3.277094 -1.415109 -1.898169 1.125942 1.576773 -2.820342 0.475100 -2.195050 -4.552562 -3.098294 -4.518624 -3.276193 -2.827712 0.869495 -1.911191 0.090093 -0.512173 0.437172 -0.263025 0.530623 1.248363 1.644481 -2.019869 2.629441 3.318421 -3.996646 -2.318632 4.847281 2.340738 -0.162953 2.346080 -6.477349 2.784291 -1.392412 -0.056458 3.256979 -4.075482 -0.212695 -2.414462 3.246015 -3.083833 3.405239 0.203355 -2.027026 0.665909 -2.257704 1.000393 3.574996 -1.059213 -PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -0.723211 -9.672089 20.288844 14.938968 -3.924007 3.896385 3.407545 -5.789933 3.649450 2.611600 -5.579842 8.885126 -9.999184 0.352357 0.204035 3.680365 -16.314514 -8.406335 -1.472327 -4.723453 -5.304991 -5.538749 -1.955162 11.429948 9.137487 9.624123 -6.592822 0.300161 -11.154472 -11.002367 -1.388188 -1.498814 7.571563 8.929070 8.435083 -18.866101 9.503284 10.935293 -1.047848 -11.637576 4.796353 -6.401637 -1.105355 -4.542061 -3.191329 5.798831 6.570799 8.444795 5.573298 2.927465 -2.323056 -3.426454 5.776702 13.429113 1.632875 8.410360 10.220846 -5.356400 1.876775 -2.721684 1.711532 -6.710258 4.628338 2.745642 -4.588791 -7.672070 0.920867 -5.697614 -4.389627 7.909840 6.150112 -4.966222 -8.867768 -7.588614 -9.375231 -2.648763 -3.827164 11.090586 15.093661 -9.399154 12.188010 4.620365 5.789413 -0.216169 7.576780 0.072100 12.236741 2.887242 -4.207110 -0.432191 -11.027828 -8.553875 0.695723 3.533061 -5.583700 -7.068772 4.717495 -17.932615 -14.902610 4.805976 2.234200 -7.465312 -4.359498 2.132231 5.411585 3.923018 -1.087216 -8.874749 -2.002887 4.074045 -6.533112 -2.507587 -2.022198 2.556629 -2.736953 0.620576 -14.681290 5.362676 4.868018 -3.222792 -0.653883 11.077578 0.114298 6.609738 0.453025 3.289944 -1.159589 10.660257 4.063936 2.415659 0.793044 -1.933977 -3.961033 3.381108 4.636930 0.934562 -7.908356 -4.471116 0.977339 4.899760 -3.744657 2.734560 -4.192012 15.177137 5.482117 -7.526517 -10.957668 -9.877226 -10.051696 -10.106758 1.712921 -5.456164 -7.650136 3.720994 8.066713 5.116594 2.582789 8.113721 -6.026074 5.060386 1.209508 -0.626451 4.512926 0.760784 6.961644 -8.547892 -5.098440 7.491595 3.475590 6.663374 -0.518714 -0.934784 3.389202 -8.160767 -7.810422 7.976426 3.311510 3.684856 12.109382 10.663581 17.420879 -6.508234 -0.049095 3.835086 -2.899912 -3.631659 3.867250 -9.974060 6.471693 1.700562 2.230361 14.903960 0.050052 -4.716221 5.360573 1.055148 1.989644 -9.776245 4.270804 -5.647052 2.315917 -5.332268 0.492694 -6.943461 -4.933939 -8.336828 -5.719611 15.946527 -11.752352 -12.911489 9.664004 -4.410769 11.047972 -16.812553 10.494434 -6.596186 8.719564 -2.345809 -5.452604 1.237322 -5.286887 -6.047502 5.069496 3.894061 -3.442136 2.585185 7.511327 4.826981 2.711150 1.012332 7.529536 -1.753333 7.530500 -4.710762 6.525753 -1.591505 -1.096692 -3.409492 -2.338521 -1.067790 3.383692 0.254062 5.822102 6.073575 4.822776 5.730192 7.432884 6.001655 -6.132142 2.427131 -2.649835 8.398246 -8.519256 -7.714806 -0.254022 4.910714 0.193958 4.627402 -16.728465 -13.584767 -11.513542 -12.865772 -5.797782 -1.032336 6.564519 2.276870 -2.716987 -11.252705 -8.527606 12.065761 0.658464 10.897235 7.287540 1.375627 11.084739 8.264281 -0.414640 -3.760612 0.967284 5.062566 -0.996940 -0.108993 -11.513695 8.853476 -9.728927 7.300066 15.304012 -7.948682 6.979988 -5.288468 12.104731 -13.299070 14.326669 4.744548 -15.041515 3.083438 10.342633 6.387397 -3.458068 -8.948406 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 0.130683 -0.660282 2.257326 1.385716 -0.975254 -0.028578 0.162226 -0.596358 0.630626 -1.088182 -0.675393 0.603880 -0.912620 0.419410 -0.730929 0.450912 -2.452630 -0.846646 -0.190635 -0.577656 -0.340609 -0.346205 0.589161 0.571192 0.984666 1.637978 -0.701035 -0.186223 -0.654358 -0.234808 0.979419 -0.546561 0.794028 1.048048 0.257778 -3.091077 1.007546 0.564376 -0.561357 -1.161311 0.881133 -0.867535 0.026945 -1.457185 -0.941031 0.123206 0.412298 1.319271 0.696644 0.167417 -0.961903 0.086916 0.306116 2.131803 -0.475042 0.415566 0.916886 -0.380986 -0.325574 -0.434785 0.296404 -0.219091 0.335587 0.378346 -0.318723 -1.247612 -0.287386 -1.358036 -0.706436 0.855410 0.102579 0.448734 -0.947893 -0.296482 -1.454796 -0.169324 -0.413838 1.688713 1.582355 -1.426682 0.816194 -0.092324 0.359779 0.170822 0.111215 0.564805 0.607031 0.454996 -0.009794 -0.192236 -0.977768 -0.392692 0.374905 -0.728453 -0.236481 -2.353687 0.661849 -2.215434 -1.072685 0.170821 0.652791 -0.644232 0.204186 -0.232793 0.372138 0.767697 -0.641755 -0.640641 0.280613 -0.013664 0.006346 0.011831 0.177002 0.637843 -0.269320 -0.756574 -1.676523 0.649967 -0.016503 -0.181897 0.703441 0.940316 -0.211899 0.066226 -0.002736 0.446668 -0.626337 1.833387 0.040355 0.141327 -0.125503 0.385811 0.680520 0.183313 0.801477 1.280915 -0.907200 -0.607685 -0.434142 0.316653 -0.804506 -1.016290 -0.122827 0.529330 0.355167 -0.960380 -1.075908 -0.797624 -1.186817 -1.876354 -0.109452 -0.702504 -0.613054 1.561239 0.873217 0.969172 0.963080 1.275531 -0.783712 0.324784 -0.112502 -0.327816 0.862981 0.510066 0.836338 -0.612870 -0.464372 0.622857 -0.479212 0.940796 -0.036930 -0.019917 0.344814 -1.257104 -0.367192 0.877784 1.118692 0.160540 0.777998 0.974572 -0.186465 -0.669212 -0.062757 0.865212 -0.425718 -0.389261 0.573252 -0.973400 0.750747 0.261577 -0.022242 0.787200 0.089578 -0.517053 0.458889 -0.087601 0.249686 -0.688532 -0.323946 -0.410470 -0.104833 -0.927409 0.528880 -0.573354 -0.469028 -0.883268 -1.132063 1.484779 -2.023795 -0.720459 1.038470 -0.036492 1.509190 -1.548561 0.831098 -0.842571 1.763330 0.202956 -0.218288 0.267954 -1.222167 -1.053245 0.187509 0.375447 -0.012174 -0.116669 0.833248 0.944133 0.088592 -0.042278 1.238779 -0.276162 1.348074 -0.271689 0.529140 -0.459431 -0.673238 0.385164 -0.119409 -0.539950 -0.164153 0.856389 1.597498 0.360437 1.524677 1.561020 0.656076 1.306813 -0.766174 0.062994 -0.514397 0.926671 -0.574080 -0.663215 0.189817 1.278035 -0.225484 0.470204 -1.586036 -2.510806 -2.437643 -1.239625 -0.140037 -1.005462 0.347962 -0.395168 -0.033124 -1.123811 -0.692354 0.616269 -0.360609 1.420733 0.913358 -0.056088 1.022500 1.064008 -0.975038 -0.462420 0.912491 1.126948 0.317863 0.506142 -2.040510 1.143947 -1.145806 0.008738 2.154114 -1.080982 0.358827 -0.258601 1.565377 -0.949563 1.740405 0.454011 -1.614670 0.773188 1.008242 0.367199 1.195860 -0.823881 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -4.775422 -9.475256 12.773111 9.316270 0.427141 4.525389 5.249601 -0.347649 0.752544 6.646278 -2.764699 8.126384 -7.345665 -2.135191 0.789182 1.120962 -6.426582 -7.142531 0.473273 -2.091525 -3.150726 -3.986296 -5.255362 10.868566 5.535867 -0.203785 -4.201039 -0.944331 -12.356184 -8.891912 -5.450479 -0.292198 5.122882 -1.721562 6.278861 -12.726040 5.460081 10.227466 1.046053 -9.279379 2.505329 -3.741259 0.764695 1.625051 -3.274186 3.644068 7.182257 1.767760 2.060626 1.981872 0.607107 -3.235342 4.596552 12.898417 3.502699 7.772277 8.664089 -3.502731 2.394458 -1.710058 0.953750 -7.768416 3.194195 0.391758 -3.025670 -2.332853 0.600951 -1.184269 -2.117447 2.678087 5.032428 -5.504572 -3.984441 -4.380910 -7.813118 -3.820526 2.328912 4.291051 10.801254 -5.894371 11.639037 4.873637 5.719460 1.506636 7.246904 -0.379235 7.867335 1.387024 -4.009019 0.399794 -6.857059 -2.434365 -1.767179 7.690593 -4.798008 -2.393383 3.569977 -9.238202 -11.953040 5.810413 -1.875289 -4.911096 -4.203216 1.121696 3.778394 3.219554 -2.220847 -7.637221 -5.691856 3.943801 -5.215239 -2.748318 -0.173628 -0.502439 -0.954672 0.662012 -8.432563 2.884795 5.416624 -3.805885 -4.410736 8.774826 -0.704596 9.163827 0.879551 2.690787 0.279719 4.579531 6.432718 0.745776 -1.891776 -5.415307 -8.941833 -1.097683 0.466619 -0.687725 -5.692713 -2.484698 2.636828 3.874664 1.784241 5.894684 -2.109897 13.516986 3.484473 -4.051579 -5.904380 -8.309368 -5.262594 -4.220061 0.964035 -3.293858 -6.541606 0.927604 5.115819 0.970072 -1.237389 6.565519 -1.223722 5.537624 1.570314 -1.918079 0.871070 -4.105208 3.906534 -6.069828 -4.076754 4.195635 6.138822 6.040152 -0.874696 -0.978562 1.771754 -3.500339 -6.020242 2.529004 0.572480 2.348889 9.802655 6.806005 17.892151 -6.137157 -1.210976 -0.310809 -2.793728 -1.594330 0.940643 -7.244407 2.496241 1.536838 -1.764141 11.505337 -0.119686 -4.531301 6.066059 0.278126 1.321598 -8.061344 6.867175 -4.875899 1.611775 -2.283762 -3.144925 -6.140862 -2.945801 -7.583456 -3.530359 11.447643 -7.975093 -10.831691 3.000882 -0.218029 5.439387 -13.148434 10.564098 -4.082249 6.496231 -2.369149 -4.293899 0.931211 2.480409 -0.718152 4.344960 2.917574 -5.254492 4.150817 4.686897 1.899428 2.693880 1.740527 4.283045 -0.544855 1.653485 -4.014208 4.008293 -0.893494 -2.411016 -4.138062 -1.772500 2.065081 5.785296 -0.877136 -1.902782 4.264210 -1.848172 -0.025864 7.803266 0.895584 -3.361678 0.484269 -2.340564 9.210871 -6.126340 -4.677601 -3.550189 2.994842 2.733542 2.920089 -12.333001 -5.512027 -5.743282 -10.204660 -4.208201 3.443384 3.152083 3.972330 -1.133864 -10.350244 -6.242984 9.828374 0.896829 7.182405 5.366665 2.021623 9.276715 3.650510 3.464888 -3.529172 -0.391541 1.541131 -2.155375 -1.422609 -3.967621 3.109016 -8.750126 7.562660 7.100860 -3.281700 5.354796 -1.144373 3.308017 -10.487022 10.618963 4.007444 -10.515323 0.875221 8.238656 6.883984 -8.807726 -6.365521 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 0.531872 -0.348855 1.589249 1.064448 -0.553870 -0.149371 0.168589 -0.511833 0.557617 -0.513596 -0.525515 0.334440 -0.601679 0.459386 -0.634476 0.716569 -1.605227 -0.555596 -0.134382 -0.369173 -0.147856 -0.190928 0.793137 0.015070 0.864140 1.115246 -0.454873 -0.298640 -0.293587 -0.349613 0.699192 -0.474183 0.446120 0.768068 0.014940 -1.246881 0.804543 0.305595 -0.473409 -0.700820 0.668922 -0.412422 -0.088063 -0.988491 -0.244599 0.176059 0.199177 1.109530 0.591514 0.418123 -0.425391 0.109510 0.437423 1.089859 -0.492737 0.228674 0.490834 -0.109983 -0.124294 -0.227986 0.282334 0.048514 0.088521 0.336641 0.061354 -0.978394 -0.470719 -0.895797 -0.420761 0.623067 -0.121645 0.489000 -0.876459 -0.088276 -0.617638 0.094062 -1.215871 1.148589 1.084177 -0.928484 0.391131 0.002342 0.141669 -0.119060 -0.245782 0.393732 0.076398 0.399023 0.089037 -0.209979 -0.477486 -0.312423 0.352406 -0.788828 -0.176968 -1.689006 0.525876 -1.200202 -0.646863 0.039512 0.624796 -0.405920 0.566993 0.093212 0.091724 0.500344 -0.400524 -0.346351 0.502823 -0.287921 0.307701 -0.018439 0.060490 0.340486 -0.235922 -0.259495 -1.157780 0.339408 -0.248045 -0.218035 0.627366 0.370325 0.076752 -0.113579 -0.056174 0.272395 -0.378834 1.186275 0.067485 0.427310 0.108000 0.578696 0.485647 0.618122 0.839248 0.583834 -0.550423 0.014597 -0.462182 0.167301 -0.592128 -0.660977 -0.091397 0.170184 0.211314 -0.789732 -0.819207 -0.363328 -0.763076 -1.094653 0.135738 -0.524322 -0.309545 0.701436 0.570991 0.532882 0.845316 0.866672 -0.710179 -0.023937 -0.054676 -0.020037 0.647383 0.461123 0.550893 -0.318211 -0.288600 0.437369 -0.205447 0.301213 0.011642 0.059812 0.324199 -0.974578 0.139631 0.642268 0.630974 -0.269927 0.442778 0.485090 -0.553692 -0.008280 -0.071805 0.792374 -0.188948 -0.278333 0.463011 -0.797578 0.698460 0.014964 0.367852 0.256541 0.124169 -0.160959 0.409213 -0.246958 0.111872 -0.326651 -0.291490 -0.252641 -0.238822 -0.611368 0.773756 -0.156499 -0.289850 -0.222163 -0.418275 0.890332 -1.006644 -0.039438 0.604843 -0.109993 0.629456 -0.604242 0.736730 -0.582175 0.814734 0.325459 -0.088488 0.234929 -0.842813 -0.796101 -0.231009 0.287473 0.250130 -0.037253 0.511738 0.632213 -0.198699 0.013314 0.848066 -0.313636 1.067183 -0.030768 0.368116 -0.276562 -0.419714 0.292040 -0.036176 -0.533792 -0.438657 0.441315 1.332495 0.044993 1.029987 1.137316 -0.007905 1.165303 -0.606316 0.322516 -0.278980 0.562052 -0.388805 -0.359905 0.304531 0.593846 -0.366963 0.506531 -0.962030 -1.613575 -1.384075 -0.564636 -0.112006 -0.905866 0.394307 -0.531058 -0.071520 -0.543773 -0.604317 0.309871 -0.252045 0.330137 0.650323 -0.117887 0.521596 0.653264 -0.653849 -0.144150 0.332951 0.803134 0.418947 0.227338 -1.133159 0.741980 -0.685058 -0.309959 1.456338 -0.750370 0.103728 -0.349368 1.048846 -0.526555 1.064818 0.244072 -0.808448 0.701151 0.678838 0.356843 0.889490 -0.519089 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -1.913521 -5.735778 10.552891 7.180045 -1.526528 2.357156 2.037639 -1.914859 1.111604 1.078001 -2.665557 5.674439 -5.112727 -0.486332 -0.979774 0.406632 -7.402222 -4.569520 -0.931749 -2.417300 -2.695777 -2.325190 -2.473063 7.208426 4.470372 2.841059 -3.661110 -0.138920 -7.691141 -4.038682 -1.834866 -0.340806 3.810072 0.657215 4.377859 -11.001906 4.078729 6.653842 -0.403019 -6.427716 2.746324 -3.366881 -0.107678 -1.612811 -3.339303 1.673175 3.970912 3.033527 1.815603 0.976330 -1.192200 -1.088901 2.903724 9.978141 1.721906 4.921679 6.592499 -2.522601 0.835651 -1.714387 0.781485 -4.324890 2.125901 0.050177 -2.324365 -3.535467 0.650466 -2.216876 -1.619994 2.770721 3.497856 -3.008384 -3.161009 -4.088294 -6.782259 -2.183482 2.171397 4.657985 7.727390 -5.201393 6.708781 2.585306 3.255896 1.560506 4.410125 0.510604 5.647735 1.455772 -1.847626 0.328469 -6.025521 -1.800914 -0.031860 2.713680 -3.533471 -5.399407 3.196390 -10.091885 -8.136478 3.226757 0.657174 -4.298518 -1.529656 -0.141339 2.202304 2.253277 -1.705554 -4.541959 -2.164861 2.831119 -2.958572 -1.338395 0.031946 0.746596 -0.289330 -0.505727 -7.230210 3.659122 3.480568 -1.388756 -1.006983 6.478490 -0.738330 4.624606 0.187735 2.273248 -0.861785 4.931294 2.868735 0.285218 -2.001336 -1.785310 -2.221268 -0.417836 1.142405 0.915060 -4.772727 -2.531548 0.980013 2.626939 -0.246177 2.355174 -1.877567 7.898286 1.426833 -3.448465 -4.929405 -6.130668 -5.837013 -5.180140 -0.099359 -1.907755 -5.592829 2.243782 3.957928 2.724606 0.416376 4.421907 -0.828098 2.710818 1.047013 -1.792665 1.736711 -2.164559 3.471121 -4.448923 -3.098758 3.545978 2.114063 4.703128 -0.089515 -0.023354 1.551413 -3.706287 -3.479611 2.270745 2.259945 2.016109 7.018634 6.069902 9.622653 -3.899236 -0.538500 0.843725 -2.188688 -1.487246 1.107996 -4.796219 1.748909 1.618316 -0.590236 8.716538 0.336066 -2.909630 3.683504 0.455714 1.176145 -5.167727 3.155191 -2.881808 0.838886 -2.532621 -0.398353 -4.383602 -1.813089 -5.957948 -4.764763 8.590393 -8.401809 -7.060019 3.752699 0.637438 5.732570 -9.274292 6.153875 -3.175897 7.343987 -0.445150 -2.701752 1.017865 -1.688526 -3.054241 3.606730 1.930884 -2.992545 1.382677 3.302195 2.392665 1.998261 0.268562 3.839724 -1.408517 3.519899 -3.129165 3.006687 -0.908621 -2.450519 -1.671291 -0.980407 -0.063253 2.590251 0.956753 0.739712 2.787027 2.101973 1.855709 5.216505 2.458874 -2.976588 0.463088 -1.550393 5.103220 -4.589282 -3.877709 -1.046603 3.743523 1.462620 1.921759 -9.068152 -6.318956 -7.327699 -6.994393 -1.801123 -0.003758 1.713101 1.664566 -1.553140 -6.658091 -4.744603 6.680074 -0.004967 6.609375 4.472092 1.328674 6.493666 3.832331 0.235260 -1.850965 1.388715 2.451134 -0.624641 -0.061466 -5.870208 4.129622 -5.367880 4.078458 7.571680 -3.575501 4.377123 -0.768907 3.700278 -7.124230 8.055835 2.641368 -8.824982 1.070494 5.995781 4.147804 -3.217631 -4.685566 -PE-benchmarks/matrix-chain-multiplication.cpp__main = 0.255750 -0.586298 1.611715 1.072694 -0.586345 0.008266 0.330175 -0.377371 0.407049 -0.871155 -0.489408 0.431593 -0.797774 0.306775 -0.677585 0.216823 -1.594959 -0.715877 -0.213999 -0.351984 -0.126001 -0.240738 0.475761 0.465590 0.776155 1.125195 -0.487698 -0.365144 -0.880810 0.260294 0.823351 -0.255804 0.585048 0.895707 0.123822 -1.805180 0.562224 0.582656 -0.377776 -0.928306 0.704246 -0.693269 -0.080351 -1.099020 -0.407939 0.064828 0.210234 1.051510 0.393776 0.102094 -0.742394 0.138057 0.085710 1.412230 -0.365819 0.356197 0.780363 -0.068294 -0.097366 -0.282793 0.221582 -0.054264 0.188849 0.219824 -0.256676 -0.863104 -0.330730 -1.049714 -0.464028 0.577845 0.154289 0.416174 -0.733033 -0.197806 -1.020446 -0.020371 -0.516889 1.235147 1.095466 -1.126220 0.611781 -0.052407 0.278309 -0.012396 0.039326 0.409519 0.192936 0.340358 0.134684 -0.222095 -1.219064 -0.215182 0.164479 -0.712191 -0.334599 -1.685706 0.627178 -1.421300 -0.822998 0.034665 0.446259 -0.567185 0.382424 0.148561 0.039109 0.631131 -0.433182 -0.420491 0.198122 0.093926 0.165336 -0.038349 0.147487 0.560476 -0.213353 -0.835636 -1.209092 0.557247 0.020957 -0.163199 0.542909 0.668000 -0.318492 0.086394 -0.016738 0.195299 -0.455321 1.300124 0.112816 -0.012972 0.182134 0.133835 0.370908 0.224550 0.646744 1.363302 -0.761121 -0.173111 -0.257744 0.226280 -0.410887 -0.770392 0.004044 0.232542 -0.000382 -0.897285 -0.751966 -0.652188 -0.701773 -1.158932 -0.122657 -0.467140 -0.278328 0.984453 0.623110 0.876294 0.628958 1.185388 -0.588521 0.184772 0.089172 -0.257526 0.485316 0.515876 0.520123 -0.423250 -0.502030 0.440215 -0.403359 0.586290 -0.036011 0.199437 0.200189 -0.979643 -0.250306 0.506936 0.723899 -0.059462 0.726053 0.790927 -0.758267 -0.555005 -0.037471 0.554508 -0.421720 -0.261258 0.390928 -0.805569 0.611407 0.140917 -0.016066 0.584620 0.058579 -0.310472 0.470386 -0.154342 0.162360 -0.472226 -0.198480 -0.361558 -0.303265 -0.834565 0.554336 -0.265542 -0.403696 -0.583361 -0.776186 1.098091 -1.119702 -0.479534 0.534517 0.144896 0.855188 -1.098254 0.531305 -0.549045 1.133249 0.342336 -0.105896 0.222957 -0.768847 -0.821747 -0.095692 0.293820 -0.136160 -0.007856 0.666332 0.618786 -0.106309 0.036743 0.861386 -0.269089 0.931539 -0.330891 0.353555 -0.309366 -0.662773 0.385270 -0.102017 -0.306860 -0.208468 0.520885 1.468378 0.276329 1.265528 1.135167 0.384143 1.004473 -0.541903 0.009261 -0.298891 0.683945 -0.393722 -0.407391 0.081862 0.748638 -0.138713 0.365649 -1.114183 -1.929630 -1.395784 -1.053282 0.141405 -1.065307 0.242267 -0.282540 -0.115022 -0.971547 -0.669891 -0.090138 -0.333454 1.006241 0.700609 -0.031872 0.740121 0.725742 -0.871146 -0.085339 0.864925 1.021212 0.231071 0.226639 -1.359559 0.770599 -0.737609 -0.068236 1.647234 -0.686273 0.419016 -0.331660 1.289588 -0.671161 1.398856 0.326497 -1.285812 0.553651 0.740432 0.373343 0.932785 -0.596250 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 0.344078 -0.321787 1.248789 0.835616 -0.545086 -0.061527 0.115763 -0.370778 0.362690 -0.800891 -0.384330 0.221430 -0.565909 0.303336 -0.489126 0.226730 -1.348244 -0.490432 -0.226917 -0.316314 -0.108968 -0.161731 0.470014 0.253380 0.602373 1.029714 -0.370855 -0.168190 -0.486247 0.260793 0.723297 -0.229276 0.409755 0.901902 0.132907 -1.191266 0.494632 0.332401 -0.318598 -0.603866 0.518601 -0.511060 -0.054982 -0.965873 -0.276161 0.082861 0.071904 0.868921 0.386095 0.060980 -0.603472 0.103793 0.030593 0.884618 -0.354831 0.178960 0.476551 -0.073486 -0.072088 -0.239069 0.157013 0.056970 0.086036 0.187622 -0.172821 -0.753197 -0.273099 -0.869641 -0.315429 0.519210 0.072949 0.383876 -0.629821 -0.180729 -0.730394 0.026309 -0.607856 1.020358 0.789617 -0.857607 0.308752 -0.071833 0.154261 -0.019722 -0.033159 0.324452 0.176520 0.260427 0.149841 -0.109620 -0.851463 -0.233225 0.203087 -0.697254 -0.217959 -1.291071 0.413692 -1.164732 -0.550226 -0.041430 0.437278 -0.407812 0.380971 0.145786 0.016032 0.406937 -0.264679 -0.245984 0.356562 -0.005010 0.193996 0.034011 0.073646 0.472570 -0.169610 -0.603097 -0.953537 0.445608 -0.111823 -0.045627 0.558108 0.454363 -0.204096 -0.103127 -0.018716 0.130255 -0.390407 1.070839 -0.001863 0.041447 0.092421 0.203362 0.469938 0.290439 0.546183 0.971887 -0.540884 -0.130636 -0.271442 0.127267 -0.467785 -0.693205 -0.001096 0.074362 -0.045439 -0.721915 -0.595009 -0.396414 -0.674537 -0.948265 -0.073278 -0.354278 -0.216695 0.771279 0.455829 0.767260 0.586174 0.838208 -0.481078 0.024651 0.017288 -0.154919 0.451237 0.506124 0.408081 -0.288953 -0.297724 0.354708 -0.450872 0.395920 0.013851 0.130618 0.168726 -0.795084 -0.075270 0.481278 0.562021 -0.033271 0.497028 0.583866 -0.822610 -0.274636 0.008012 0.545356 -0.266985 -0.233061 0.375177 -0.540493 0.510053 0.081786 0.067882 0.323401 0.036310 -0.131286 0.268045 -0.117236 0.162351 -0.329891 -0.289688 -0.199803 -0.180590 -0.678089 0.565149 -0.177457 -0.295658 -0.345518 -0.583575 0.777289 -0.843534 -0.241804 0.495216 0.082616 0.715465 -0.636690 0.254310 -0.424463 0.890569 0.310477 -0.048727 0.192084 -0.791190 -0.692065 -0.095077 0.196273 0.024289 -0.127778 0.403641 0.517504 -0.132819 -0.006082 0.673532 -0.230205 0.847349 -0.193433 0.273144 -0.230034 -0.421310 0.349546 -0.051526 -0.374781 -0.251971 0.419468 1.209286 0.161861 1.115237 0.933534 0.142329 0.846689 -0.422206 0.008717 -0.229470 0.383160 -0.293737 -0.326761 0.195894 0.583756 -0.182130 0.230797 -0.795693 -1.511408 -1.117722 -0.666443 0.069809 -0.903976 0.182071 -0.254523 -0.106981 -0.557988 -0.487887 -0.042156 -0.244126 0.728596 0.459266 -0.106362 0.494194 0.594975 -0.727985 -0.066990 0.679747 0.801895 0.270801 0.265745 -1.170445 0.705386 -0.516330 -0.187828 1.346726 -0.621305 0.280439 -0.293269 1.051109 -0.473010 0.985311 0.190261 -0.933447 0.468125 0.550232 0.192025 0.938386 -0.433646 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = 0.146068 -0.648043 1.600868 1.121655 -0.201354 -0.032195 0.604659 -0.339151 0.556271 -0.020982 -0.408356 0.529377 -0.837320 0.378982 -0.566715 0.742313 -1.252017 -0.777027 -0.017797 -0.302094 -0.153919 -0.323924 0.751718 0.095670 0.942173 0.577331 -0.530359 -0.693715 -0.807823 -0.510660 0.569047 -0.446375 0.618379 0.307247 -0.157564 -1.714278 0.693727 0.543181 -0.437822 -0.923939 0.762825 -0.457264 0.029817 -0.703698 -0.183049 0.154358 0.415412 0.819066 0.561668 0.545918 -0.120267 0.061667 0.477560 1.506602 -0.514190 0.421359 0.633561 -0.103556 -0.183263 -0.182169 0.307376 -0.153495 0.297396 0.355602 -0.019397 -0.833187 -0.475151 -0.807876 -0.686806 0.517773 -0.049679 0.414410 -0.844639 -0.014013 -0.583690 -0.041630 -0.862867 0.962278 1.272190 -0.943428 0.774819 0.079149 0.261816 -0.154556 -0.157475 0.373542 -0.055787 0.364306 -0.047786 -0.372677 -0.642785 -0.139563 0.111023 -0.267629 -0.190558 -1.490987 0.685649 -0.659555 -0.848293 0.185020 0.428397 -0.364083 0.136180 0.111838 0.085911 0.756274 -0.563734 -0.621297 -0.045725 -0.202071 0.270716 -0.165295 0.098696 0.046852 -0.389095 -0.454484 -1.138379 0.191684 -0.094411 -0.510710 0.137652 0.493437 -0.178636 0.247507 -0.006057 0.383771 -0.340446 1.077005 0.300377 0.447418 0.371155 0.245133 -0.279375 0.218245 0.810476 1.029970 -0.588335 0.070992 -0.491710 0.183850 -0.370855 -0.419397 0.107804 0.457303 0.553690 -0.807917 -0.841795 -0.479880 -0.293615 -1.020033 0.200254 -0.609237 -0.007461 0.591031 0.636907 0.297622 0.704255 1.326649 -0.737508 0.323006 0.026238 -0.208586 0.569873 0.326797 0.587009 -0.414387 -0.496312 0.370732 0.200208 0.329643 -0.029044 0.119272 0.304852 -0.977279 -0.106995 0.370585 0.534677 -0.413771 0.527111 0.481535 0.128432 -0.413745 -0.112536 0.657487 -0.228108 -0.193304 0.332124 -1.028858 0.681166 0.016372 0.038764 0.460236 0.147459 -0.518323 0.666482 -0.348184 0.068165 -0.422462 0.044656 -0.445677 -0.325402 -0.616050 0.402282 -0.198667 -0.372768 -0.277224 -0.229206 1.065804 -0.706553 -0.331186 0.384693 -0.047685 0.385094 -1.143961 1.345832 -0.605377 0.645387 0.035676 -0.173901 0.136047 -0.148977 -0.614007 -0.245254 0.360189 0.004250 0.257426 0.937670 0.554097 -0.136562 0.069385 0.885699 -0.137248 0.845431 -0.067136 0.464401 -0.281263 -0.554846 0.202805 -0.108447 -0.191689 -0.267416 0.276340 1.238708 0.273264 0.612570 1.052454 0.291554 1.137403 -0.606701 0.400550 -0.212852 1.017435 -0.386221 -0.288891 0.088723 0.578286 -0.302423 0.674913 -1.069082 -1.592400 -0.891359 -0.957706 -0.025587 -0.524090 0.379382 -0.468891 -0.029067 -0.956633 -0.634205 0.105026 -0.290292 0.510988 0.732436 0.023145 0.684887 0.630661 -0.613421 -0.195216 0.236000 0.700349 0.246200 -0.037240 -0.788998 0.495054 -0.887989 -0.073581 1.237224 -0.571231 0.134220 -0.280546 1.022563 -0.643897 1.369275 0.355154 -0.763210 0.831694 0.713835 0.795678 0.386331 -0.546483 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -3.430659 -5.429670 8.734675 5.882435 -0.380697 2.564239 2.445213 -1.672970 0.407845 2.359329 -1.659260 5.323345 -4.663089 -1.069239 -1.340119 0.141686 -4.783048 -4.232759 -1.035950 -2.501619 -2.308489 -2.023211 -2.861376 6.771093 3.818648 -0.610597 -3.393509 -0.239963 -8.085064 -5.222742 -3.162709 0.205259 3.332028 -2.839264 3.323417 -10.099917 3.595864 7.025160 -0.233121 -5.486906 2.603867 -3.038053 -0.119915 -0.076876 -3.990350 1.215699 3.475693 -0.156847 1.366867 0.963436 0.638913 -0.351570 2.626902 9.724020 1.679845 5.089432 5.770269 -1.999057 0.468066 -0.909497 0.385780 -4.044114 2.106033 -0.707130 -1.958345 -2.522311 0.677894 -0.716649 -1.365612 1.831678 2.228405 -4.213247 -1.873911 -3.464137 -7.096352 -2.655402 4.407342 2.596830 6.369881 -4.406028 6.463175 2.110360 2.347734 1.717453 4.444031 0.112056 4.904937 1.001397 -1.550865 0.262035 -3.743453 -0.352001 -0.516606 4.867177 -3.648213 -3.740201 3.547948 -8.588893 -7.727601 3.343954 0.038069 -4.170478 -2.971928 -0.765110 1.393664 1.952487 -2.008956 -4.622504 -3.261261 3.469690 -2.098877 -1.576246 0.200634 -0.414735 0.138286 -0.209749 -6.025149 3.159385 3.636043 -1.508345 -2.859750 6.101623 -0.867062 4.734978 0.335004 2.540138 -0.822161 3.718030 2.106857 0.664416 -2.955915 -1.726842 -4.563963 -2.507340 0.409742 -0.122868 -4.206143 -1.802926 1.011062 2.356714 0.411437 3.734533 -1.918575 7.786528 1.770165 -2.242216 -3.821085 -5.171831 -4.621702 -4.360534 -0.317788 -1.541766 -5.391369 2.058491 3.405086 1.526575 -0.405006 4.869720 0.465552 2.670016 1.232751 -2.902292 1.448267 -4.627866 2.994838 -4.075011 -3.436973 3.296968 2.727628 4.893522 -0.156786 0.654482 1.147858 -2.727605 -3.629273 1.020593 1.495954 1.698194 6.455856 5.537904 10.269760 -4.207576 -0.213584 -0.010823 -2.405543 -0.519325 -0.008099 -4.321346 0.330383 1.955171 -1.652059 8.465393 0.376522 -3.065109 3.602742 -0.076166 1.314171 -5.207063 3.910753 -3.001546 1.287768 -1.856038 -2.622501 -3.680189 -1.546894 -5.503818 -4.678794 7.542184 -7.699560 -7.016355 3.092572 1.740770 4.407301 -9.330065 6.331739 -2.596145 7.052879 -0.873996 -2.044793 0.858381 0.910433 -2.105412 3.732982 1.667106 -3.821917 2.015139 3.741803 1.580828 2.199628 -0.142740 3.422881 -1.261327 2.536518 -3.237818 3.098308 -0.590015 -3.037299 -1.904256 -1.056346 0.247858 2.646194 0.903894 -0.841123 2.672569 0.196293 0.280319 5.939465 1.980064 -2.195969 0.779463 -1.274979 4.809692 -3.958414 -3.365279 -1.101218 3.486884 2.019901 1.438306 -8.086981 -4.622398 -6.593950 -6.955708 -0.663090 1.180012 1.295840 1.622575 -1.509244 -6.472898 -4.428180 7.083522 -0.226386 6.185899 4.077636 2.022457 5.870815 3.147173 1.122442 -1.136895 0.362172 1.668262 -0.764723 -0.938397 -3.691684 2.987275 -5.130454 4.225889 5.322825 -2.254150 4.407257 0.921808 1.102623 -6.497068 6.853974 2.129156 -7.064422 1.422695 5.805500 3.528938 -4.669571 -3.883911 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = 1.614300 -0.874697 4.058320 3.098556 -1.530461 -0.279051 0.260610 -1.368857 1.470575 -0.254793 -0.818319 0.812857 -0.875106 1.026049 0.654391 2.290539 -4.035294 -0.770465 -0.187458 -1.249837 -0.982658 -0.206575 1.093272 -0.201715 1.882628 2.686231 -0.934889 -0.850184 0.799977 -1.191055 1.644281 -1.084830 1.297642 2.484083 0.820045 -5.226793 2.193640 0.303417 -1.061517 -1.886432 0.916589 -0.465336 0.134006 -1.900703 -0.553282 0.743302 0.704674 3.000920 1.309525 1.500316 -1.136173 0.090725 1.785140 3.463027 -0.563193 0.503935 1.231394 -1.008432 -0.411135 -0.400749 0.849787 -0.074022 0.498587 0.424944 0.717616 -2.507444 -1.051169 -2.178099 -1.223312 1.342073 0.761183 0.187392 -2.196687 -0.896898 -0.493220 -0.297926 -5.319250 3.276083 2.494373 -2.686582 1.020344 0.441672 0.397351 0.137493 -0.053012 0.716280 1.040273 1.008465 -0.023662 0.416402 -0.526256 -2.536062 1.428255 -2.489171 -0.557350 -4.643663 0.690853 -1.339186 -1.335087 1.044041 1.736304 -0.509787 0.200819 -1.092057 0.732791 1.139183 -1.076109 -0.712649 0.412084 -0.739747 0.201181 -0.233594 -0.418795 0.798397 -0.663609 -0.200181 -2.878743 0.875920 -0.040476 -0.084748 1.146340 1.047942 0.336173 -0.415265 -0.450528 0.431133 -0.997703 3.071899 0.343857 1.415674 0.777561 1.208695 0.421435 2.131997 1.936771 1.052350 -0.106785 -0.712521 -1.137998 0.838109 -1.563155 -0.279062 0.705109 1.410318 1.656212 -0.851113 -2.255182 -1.187833 -1.500811 -2.247434 0.958157 -1.387688 -0.033033 2.039080 1.424668 1.264149 1.826162 0.435674 -2.260486 0.365112 -0.979611 0.756467 1.483844 2.115986 1.223189 -0.844766 -0.051218 0.755161 0.062329 0.661046 0.389032 -0.620707 1.182037 -1.708629 -0.085193 1.370404 1.380833 -0.895801 0.752366 1.281985 1.752394 -0.023445 -0.571422 1.537912 -0.602753 -0.710646 1.259814 -1.543041 1.415755 -0.032613 0.511176 0.934435 -0.060397 -0.363418 0.636935 -0.338527 -0.334417 -0.017919 -0.703380 -0.516814 -0.680513 -0.842431 1.891829 -1.266523 -0.488053 -0.662807 -0.429820 2.460671 -2.303908 -0.084821 1.945378 -2.102542 1.002834 -1.380587 3.676645 -1.274255 0.462669 -0.538024 -1.188554 0.097514 -1.607035 -1.901806 0.051823 0.777874 0.666419 -0.985484 1.889215 1.354501 -0.462973 -0.030083 1.915322 -0.685460 2.462326 -0.024108 1.653981 -1.105263 0.574877 -0.290723 -0.002781 -0.852745 -0.995683 0.715779 2.610564 -0.448133 2.092126 1.761783 0.136168 2.005405 -1.627542 1.258720 -0.438494 1.142047 -1.172488 -0.651408 0.892128 1.177863 -0.824140 1.053989 -2.207870 -2.470860 -3.136845 -0.065518 -1.296918 0.051609 1.029741 -1.221575 -0.430442 -1.001776 -1.305033 1.105626 -0.445331 -1.351398 1.493619 -0.245426 1.581566 1.575831 -0.684024 -0.788427 0.029547 0.612404 1.049114 0.440433 -2.368474 2.087100 -1.583087 -0.462511 3.292456 -1.320724 0.283103 -0.980332 3.567639 -1.200259 2.108427 0.311462 -1.677305 0.852886 2.778940 0.974733 0.978292 -1.271459 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.095959 -0.566028 0.890574 0.680826 0.544303 -0.341075 0.548296 -0.030647 0.549405 0.259407 0.024709 0.638961 -0.778391 0.548068 -0.223793 0.425594 -0.609028 -0.996571 0.147197 0.115900 -0.938470 -0.234151 0.147088 -0.016030 0.401673 0.484307 -0.810695 0.004187 -0.846270 -1.021658 -0.084687 -0.522139 0.383565 -0.176001 0.129882 -1.235311 0.363464 0.641321 -0.109879 -0.504415 0.288966 -0.622448 0.234132 -0.436930 0.230041 0.425712 0.855827 0.297347 0.415732 0.512201 0.384887 -0.115535 0.156772 0.585037 -0.346467 0.304723 0.298068 -0.214823 -0.460589 -0.189015 0.132234 -0.328289 0.464178 0.111326 -0.404315 -0.070328 0.325783 -0.558535 -0.715880 0.593300 0.305652 -0.250461 -0.396353 -0.162382 -0.438429 -0.208096 0.095103 0.119513 0.846816 -0.558613 0.699964 0.031150 0.201378 -0.214769 -0.052907 -0.229919 0.565966 0.085535 -0.346657 -0.312226 -0.327661 -0.344516 -0.429700 0.845552 0.150449 0.070046 0.172119 -0.559897 -0.496271 -0.079401 -0.044059 0.230319 -0.758677 0.390556 0.327999 0.371954 -0.186174 -0.398163 -0.452188 -0.262700 -0.179495 0.132051 0.053220 -0.380750 -0.748085 -0.032894 -0.936701 -0.529983 0.106931 -0.579150 -0.294414 0.596749 -0.238954 0.766065 0.047742 -0.020202 0.483273 0.649882 0.462395 0.621234 -0.077569 -0.051198 -0.746486 -0.450721 0.093831 0.677964 -0.351331 -0.003313 -0.256491 0.173540 -0.623799 -0.270613 -0.350808 0.702584 1.047346 -0.755316 -1.123213 -0.136685 -0.065914 -0.603238 0.268325 -0.517883 -0.026153 -0.238119 0.619646 0.013975 0.413258 1.364408 -0.485677 0.022282 0.525642 -0.495368 0.661740 0.046705 0.426961 -0.540064 -0.364874 0.361205 0.261638 -0.180257 -0.139577 -0.576481 0.281743 -0.705061 -0.433471 0.215437 -0.022709 0.106792 0.203032 0.151111 1.097886 -0.746560 0.235994 0.046605 -0.001789 -0.026647 0.479943 -0.291368 0.530380 -0.076137 0.282227 0.301909 0.035615 -0.691584 0.649956 0.112592 -0.087312 -0.562122 0.129286 -0.200859 0.150963 -0.053004 0.176916 -0.205026 0.244614 -0.119058 -0.142509 1.015841 0.001147 -0.902267 0.658365 -0.259587 0.670484 -1.215883 0.665373 -0.351594 0.174148 -0.388162 0.092512 0.171744 0.035013 0.121886 0.491694 0.212591 0.373199 -0.083131 0.775795 0.367373 0.456120 0.367632 0.531488 0.572429 0.593196 0.554710 0.242365 0.083882 -0.105888 -0.096771 -0.222912 -0.121561 0.391698 -0.171607 0.545419 0.445066 0.261925 0.758743 0.327377 0.622846 -0.574229 0.109509 -0.039274 0.546440 -0.444650 -0.219505 0.265986 0.305715 -0.514173 0.583981 -0.427985 -1.058871 0.064255 -1.569495 -0.343967 0.165966 0.426297 -0.322229 0.087789 -0.271455 -0.118319 0.727915 0.232758 1.326411 0.201499 -0.068359 0.537629 0.158470 -0.364157 -0.166133 -0.331005 -0.285165 0.337341 0.179373 -0.286403 0.126259 -0.632576 0.385387 0.559309 -0.859923 -0.251587 -0.443354 0.806537 -0.807191 0.534372 0.037982 -0.270207 0.244250 0.281518 1.077206 -0.029927 -0.658623 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -3.057886 -8.988692 11.960509 8.752376 1.347857 3.475409 5.082488 -1.503690 0.418193 5.357265 -2.866200 8.619547 -6.750236 -0.610870 -0.531654 1.041220 -6.500695 -7.171767 0.846438 -1.416306 -4.000785 -3.868263 -4.407448 10.002212 5.044391 0.465702 -4.603366 -1.544523 -11.880532 -7.821650 -4.997206 -0.690341 4.855135 0.175353 5.858495 -11.374132 4.137857 9.346804 0.761082 -8.162107 2.452371 -4.075614 0.358565 0.883745 -3.006704 4.412222 7.252899 2.006145 2.108127 3.102993 2.793906 -2.807214 5.666447 9.568295 3.738618 7.145497 6.704844 -3.857071 2.417029 -2.327248 0.968711 -6.862697 4.034232 0.117064 -2.533849 -1.709909 0.429411 -1.131111 -2.596403 3.236037 4.723513 -4.900715 -4.421630 -4.161448 -6.717944 -3.526413 0.620455 3.822046 9.485761 -5.313539 11.066285 4.366634 5.115033 -0.647145 6.364452 -0.722665 7.424490 1.237246 -3.821903 1.063958 -6.931086 -3.084499 -1.977074 5.767693 -4.727436 -3.254723 2.982066 -10.141499 -10.572606 5.184033 -1.131801 -4.557713 -3.161349 1.585100 3.292934 2.500382 -2.659635 -7.005185 -4.490913 3.717584 -4.464874 -2.108100 -0.322097 -0.953814 -0.870842 0.101852 -7.922135 2.015167 5.799166 -3.636876 -2.803051 9.043340 0.060641 8.681535 0.498553 1.436157 1.327942 5.679216 5.411875 1.596042 -2.500779 -4.368779 -8.071682 0.076353 0.929188 -1.543098 -5.630096 -2.858778 2.430649 4.331485 0.738357 5.858046 -1.377749 11.623507 5.161755 -4.053128 -7.553804 -7.721682 -5.121447 -4.203041 1.015610 -2.448005 -5.334000 0.317123 5.583961 1.249925 -0.163544 4.857232 0.212444 3.309942 2.157156 -2.426107 1.728655 -3.582439 4.123368 -6.000073 -4.080082 5.573627 5.593211 5.178526 -0.123817 -1.374127 2.295021 -3.250866 -5.389602 2.041887 1.852850 3.096004 9.640847 6.758898 14.935205 -3.570332 -1.106200 -0.629293 -1.841428 -1.284713 1.276870 -6.183593 3.518541 1.062769 -1.650261 10.588665 -0.288032 -3.470800 6.603384 0.500409 1.107517 -7.700175 4.950331 -3.881644 1.931533 -2.228604 -1.903922 -5.366558 -1.829687 -6.309388 -4.497136 11.593757 -6.907071 -9.259153 3.927712 -2.243941 5.148533 -12.213792 9.440475 -3.803694 5.327087 -2.017754 -4.510413 0.484220 1.231887 -0.895372 4.804660 2.781957 -4.063923 2.823847 5.324886 2.249653 2.672354 2.043106 4.523114 0.371643 2.793111 -2.394999 3.620339 -0.184325 -0.625925 -3.034019 -2.005511 1.017544 5.252541 -0.788180 0.688581 3.999479 -0.565540 0.982280 7.102720 1.852663 -3.998718 -0.126152 -2.037975 7.248473 -6.801833 -5.258899 -2.025189 2.683955 1.170915 1.799350 -10.932810 -5.980795 -6.701860 -9.558127 -3.270574 1.902867 3.688323 2.821868 -1.430848 -8.518592 -5.630027 9.358296 0.646011 6.155204 5.380108 1.364910 9.045563 3.480168 2.342870 -1.964190 -1.902051 0.826138 -1.255790 -0.064033 -4.173159 2.961664 -8.105594 8.134255 6.935133 -4.542847 4.571765 -0.344271 5.417220 -10.233198 8.794332 3.267135 -9.626750 0.491639 6.885199 4.919140 -7.673498 -6.361614 -PE-benchmarks/Nearly_sorted_Algo.cpp__main = 0.090296 -0.779485 2.102543 1.368193 -0.572085 0.006519 0.504411 -0.449458 0.546117 -0.511401 -0.575733 0.701647 -0.929130 0.352089 -0.715971 0.584645 -1.854597 -0.873824 -0.115022 -0.482486 -0.237569 -0.286491 0.601710 0.428366 1.066300 1.068494 -0.645412 -0.582580 -0.945317 -0.424734 0.711186 -0.447462 0.767215 0.566218 0.055641 -2.586618 0.853521 0.747585 -0.517770 -1.195352 0.925463 -0.693102 -0.016584 -1.026173 -0.579463 0.140674 0.474119 1.061576 0.567563 0.425877 -0.561415 0.137081 0.476092 2.033730 -0.414247 0.517142 0.955479 -0.240007 -0.250852 -0.306552 0.322557 -0.260954 0.324425 0.261212 -0.142188 -1.096074 -0.432257 -1.093585 -0.689232 0.620694 0.079674 0.314636 -0.871653 -0.214404 -1.115014 -0.139248 -0.649565 1.352405 1.475527 -1.294561 0.927483 0.012133 0.311978 0.022737 0.008103 0.498555 0.202625 0.448842 0.040824 -0.316564 -0.918678 -0.256992 0.235450 -0.446074 -0.351450 -2.062134 0.840862 -1.461169 -1.075562 0.246168 0.565388 -0.633776 0.180555 -0.064874 0.141608 0.867493 -0.665803 -0.647835 0.014359 -0.025191 0.165678 -0.131088 0.124284 0.361479 -0.326359 -0.644437 -1.486902 0.568144 0.054529 -0.336899 0.347815 0.790480 -0.196021 0.245780 -0.025548 0.467595 -0.521092 1.504554 0.232673 0.276256 0.138180 0.298299 0.072447 0.175997 0.842667 1.238403 -0.863588 -0.259431 -0.436423 0.302615 -0.470809 -0.622259 -0.019873 0.617986 0.495077 -0.925166 -0.997374 -0.778289 -0.747577 -1.439448 0.002854 -0.653643 -0.347519 1.115448 0.793467 0.652108 0.785822 1.420120 -0.754794 0.345044 0.021024 -0.345149 0.680988 0.365162 0.730662 -0.576001 -0.560119 0.514666 -0.070791 0.724793 -0.053902 0.166312 0.359190 -1.155277 -0.283744 0.608547 0.848189 -0.181584 0.776698 0.871231 0.088560 -0.611555 -0.177612 0.688773 -0.480190 -0.305726 0.447122 -1.090826 0.672325 0.184052 -0.026532 0.813718 0.144469 -0.537356 0.680319 -0.256025 0.111715 -0.576870 -0.016107 -0.506827 -0.289223 -0.762342 0.405668 -0.438537 -0.436310 -0.712360 -0.794799 1.411850 -1.445255 -0.621709 0.651341 -0.002176 0.875477 -1.532727 1.266227 -0.754186 1.237230 0.141737 -0.222542 0.207883 -0.602880 -0.916552 -0.022719 0.396292 -0.123279 0.132295 1.024550 0.756647 -0.062058 -0.009861 1.115421 -0.307992 1.142061 -0.265768 0.544568 -0.419189 -0.723005 0.255566 -0.102273 -0.363189 -0.212309 0.569506 1.448669 0.274403 1.082850 1.252563 0.578328 1.277561 -0.724141 0.291845 -0.363597 1.101460 -0.519193 -0.523752 0.105053 0.979352 -0.162457 0.602316 -1.463442 -2.102105 -1.719558 -1.263808 0.008591 -0.782579 0.387464 -0.447582 -0.096007 -1.223341 -0.808264 0.354087 -0.339279 0.995887 0.944663 0.036277 0.960333 0.831359 -0.777318 -0.263116 0.585007 0.987586 0.303135 0.134340 -1.378822 0.822044 -1.060229 -0.012827 1.792228 -0.789693 0.382907 -0.243331 1.317178 -0.888874 1.693085 0.410622 -1.345979 0.803042 0.999576 0.658228 0.620009 -0.736528 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 0.801566 -0.628849 3.617204 2.702703 -1.531813 -0.079608 0.165496 -1.650731 1.061238 -0.552458 -0.562807 0.675504 -1.197802 0.887192 -0.195211 1.769374 -3.553324 -0.675816 -0.745164 -1.485323 -0.623803 -0.264208 1.389128 0.210247 1.852667 2.263712 -1.077724 -0.614924 0.010076 -1.432999 1.341599 -0.692540 1.362426 1.714593 0.239516 -4.556932 2.107001 0.985883 -1.062051 -1.477891 1.478346 -0.783594 -0.127141 -1.554715 -1.286383 0.455454 -0.045566 1.546396 1.425415 0.883283 -0.588758 0.638370 1.484803 2.838929 -0.877183 0.660635 0.846588 -0.748522 -0.689366 -0.401930 0.432295 0.347194 0.547880 0.276653 0.310331 -2.521670 -0.779024 -1.630846 -1.345062 1.333132 -0.078499 -0.105091 -1.685480 -0.731106 -1.135392 -0.239732 -2.114779 2.588945 2.044667 -2.035228 0.780955 -0.192994 -0.560438 -0.102506 -0.036105 0.632210 0.808998 0.711977 0.495735 -0.060338 -0.114523 -1.342352 1.271662 -1.081690 -0.784456 -3.674065 1.079620 -2.034271 -1.549024 0.436793 1.659855 -1.156625 -0.200743 -0.896446 0.213891 0.997510 -0.835964 -0.887029 0.528691 -0.040244 0.605860 -0.337579 -0.634165 0.585589 -0.540916 -0.358771 -2.561948 1.167010 -0.348723 0.014366 0.680824 1.041351 0.243377 -0.555066 -0.154601 0.967255 -1.162680 2.650658 -0.493944 1.229917 0.265380 1.353853 1.182529 0.757219 1.564253 0.892995 -0.735305 -0.893505 -1.331063 0.503266 -1.500975 -0.400318 0.238858 1.121421 1.558324 -0.864497 -1.567756 -0.580798 -1.702947 -2.832312 0.284244 -1.153705 -0.471302 2.077519 1.239355 0.842858 1.695382 1.256663 -1.496722 0.094045 -0.280816 -0.267140 1.777829 1.086634 1.217836 -0.855874 -0.665902 0.898570 -0.429629 1.116897 -0.078677 0.454690 0.574041 -1.621689 -0.208687 1.308679 1.197164 -0.302046 0.902145 1.520861 1.546003 0.013490 -0.010430 1.545085 -0.889992 -0.362833 0.815614 -1.561640 0.780012 0.368829 0.111197 1.450084 -0.027045 -0.416785 0.612042 -0.396972 0.174161 -0.807497 -0.113916 -0.683609 0.004587 -1.229503 0.459467 -0.606977 -0.702917 -0.883033 -0.951143 2.207927 -2.564668 -0.570601 2.019550 -0.916470 1.191436 -1.857213 2.593975 -1.200579 1.292821 -0.324059 -0.711000 0.346279 -1.571888 -2.077982 0.248729 0.557961 0.258156 -0.411849 1.903376 1.271054 -0.423127 -0.538390 1.861629 -0.623516 2.637090 -0.560055 1.782784 -0.699665 -0.172810 0.102016 -0.097350 -1.267833 -1.100043 0.848071 2.312787 0.053838 1.936900 1.516535 0.461109 2.398490 -1.178625 1.439843 -0.460771 0.775179 -0.746741 -0.821663 1.101552 1.617320 -0.460310 1.077346 -2.257560 -2.833956 -3.057227 -1.088721 -0.319440 -0.510155 1.072311 -0.967352 -0.482534 -1.206596 -1.497897 1.370378 -0.548019 0.704818 1.335215 0.049856 1.270943 1.682473 -0.865932 -0.144499 0.166857 1.172798 1.018387 0.192703 -2.276055 2.053539 -1.193749 -0.389672 3.004036 -1.275661 0.772544 -0.791379 2.374601 -1.301260 2.152785 0.144412 -1.397672 1.631775 1.884132 0.358064 1.152019 -1.044409 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -1.128908 -2.816037 6.630794 3.954339 -0.562863 0.661519 2.936587 -1.182048 1.380078 1.702175 -1.290319 1.260819 -4.165642 -0.333834 0.059070 0.991484 -4.663264 -3.463987 -0.694120 -1.568971 -1.954307 -2.466438 0.736384 3.062488 3.321363 1.151761 -2.343733 -1.334791 -3.197221 -3.208323 0.325938 -0.655123 2.549186 1.561935 1.510119 -7.378952 3.551997 2.818461 -0.484592 -2.121026 2.332503 -1.274405 -0.028386 -0.616429 -1.879358 1.389345 2.731418 3.638865 2.395753 1.483118 0.954151 -2.335772 1.646341 6.431906 -0.174166 2.472750 2.859609 -1.221796 0.247422 -0.233865 -0.111593 -2.808526 1.062048 1.214546 -1.237160 -0.937096 1.504757 -2.475404 -2.407105 2.946663 1.356086 -1.594984 -2.533749 -1.958655 -2.429569 -0.673853 0.488826 3.348594 5.053439 -3.562323 4.053421 1.542910 1.975839 0.128398 0.068690 0.029868 2.286116 0.254168 -1.181623 -1.558399 -4.501006 -1.929460 -0.987318 0.552082 -1.384434 -3.199833 1.992723 -3.804944 -4.847896 1.064385 0.152988 -2.531399 -1.464796 0.935614 1.687694 0.724299 -0.196494 -3.256894 -2.087999 1.385064 -2.398001 0.592005 -0.073672 0.021943 -1.208345 -0.641711 -4.918730 1.889097 0.549717 -1.853909 -1.059723 3.651660 -1.620685 3.012848 1.478180 1.970641 -0.441401 3.512602 2.574773 0.692348 1.017531 -0.947716 -1.799683 -0.208534 1.574896 2.019256 -1.654647 -1.178995 -0.165484 1.182292 -1.654067 1.069237 -0.506438 4.163735 1.665627 -3.481240 -4.027925 -2.335976 -2.832813 -4.011747 1.150335 -2.065550 -1.958913 1.562527 2.162116 2.272466 0.621848 4.454539 -2.627695 2.468027 0.311198 -1.462268 0.133668 -0.306816 2.485730 -2.773572 -1.963304 1.501328 1.615989 1.986908 -0.794150 -0.777590 0.798729 -3.713075 -2.452986 0.694276 0.199386 0.509598 2.389787 3.479336 6.402334 -3.107360 0.010446 2.102185 -0.955790 -1.390275 1.847454 -3.681518 1.986730 0.371748 -0.928162 4.343892 0.513909 -2.015904 2.937220 -0.823742 0.257970 -3.497710 1.197184 -1.479246 0.271122 -2.096454 -0.594866 -2.405016 -1.142232 -1.833128 -1.961646 4.700451 -2.897065 -4.286487 2.658169 -0.288328 2.746348 -5.374508 6.504318 -1.817184 2.510536 -0.601375 -2.079119 -0.100859 -0.456427 -0.382973 1.438794 -0.059280 -0.428939 1.802146 3.973345 1.485687 1.462075 0.548664 3.041123 -0.046045 2.738263 -1.190303 1.333667 -0.928142 -1.994198 -0.662654 -0.580156 -0.275551 1.280516 -0.102593 2.161005 2.998713 0.413380 2.793337 2.693524 2.527668 -1.379658 0.358418 -0.519168 3.816823 -2.740329 -2.297272 0.361698 1.578195 -0.795387 1.850983 -5.466467 -4.880914 -3.063516 -5.570187 -1.733806 -0.804776 1.969430 -0.028379 -0.659762 -3.927110 -2.443789 3.031429 0.242345 3.466264 2.748863 0.290088 4.082775 3.613013 -0.956335 -1.383956 1.719295 1.859287 -0.513085 -0.120941 -3.878256 2.397571 -3.514245 2.359904 4.289816 -2.697382 2.093229 -2.134917 2.750314 -5.034737 5.216782 1.355381 -3.820421 1.981387 2.237775 2.631441 -0.805828 -2.457447 -PE-benchmarks/subset-sum.cpp__main = -0.058608 -0.786469 1.758906 1.138212 -0.291871 0.035054 0.611381 -0.283166 0.499883 -0.222243 -0.502606 0.671016 -0.892740 0.282888 -0.721584 0.529957 -1.395309 -0.873476 0.000000 -0.322334 -0.172197 -0.324504 0.546422 0.346280 0.936658 0.677279 -0.565673 -0.637212 -1.051420 -0.468304 0.530558 -0.418863 0.666062 0.227368 -0.068396 -2.129149 0.673190 0.709005 -0.432587 -1.096877 0.822108 -0.605534 0.022128 -0.767455 -0.385878 0.114089 0.526216 0.832805 0.472240 0.441700 -0.313748 0.062347 0.412748 1.822551 -0.397141 0.515782 0.865002 -0.139047 -0.204682 -0.229064 0.303109 -0.309469 0.326637 0.293238 -0.153115 -0.831275 -0.402540 -0.876215 -0.659326 0.488152 0.013115 0.330804 -0.751624 -0.089822 -0.930511 -0.126269 -0.498124 1.022804 1.367732 -1.070493 0.948773 0.068518 0.376820 -0.024593 -0.014149 0.425081 0.056694 0.384617 -0.065808 -0.376239 -0.830281 -0.060014 0.068094 -0.190209 -0.264775 -1.645257 0.792195 -1.079922 -0.986739 0.238732 0.373997 -0.484656 0.120017 0.059869 0.118695 0.834335 -0.643835 -0.668229 -0.134973 -0.052653 0.150857 -0.153554 0.187371 0.161835 -0.330889 -0.577409 -1.239447 0.346511 0.074781 -0.478120 0.144219 0.684410 -0.226864 0.382313 0.004058 0.420196 -0.375307 1.205918 0.337556 0.267031 0.184842 0.163885 -0.275709 0.065799 0.734249 1.148804 -0.786024 -0.072391 -0.355017 0.241207 -0.293941 -0.500163 -0.024445 0.561551 0.487400 -0.854366 -0.863939 -0.696370 -0.445963 -1.158561 0.047951 -0.596064 -0.218486 0.799874 0.703872 0.440186 0.637736 1.447567 -0.659802 0.388614 0.065979 -0.344061 0.531020 0.203467 0.640644 -0.507407 -0.565582 0.423544 0.145887 0.555186 -0.050982 0.130120 0.302557 -1.023200 -0.248346 0.435347 0.684603 -0.252614 0.693743 0.667429 0.138335 -0.640405 -0.164959 0.556039 -0.358941 -0.228184 0.323572 -1.056556 0.632424 0.128217 -0.043668 0.671611 0.166109 -0.577082 0.705453 -0.290964 0.093173 -0.537677 0.092528 -0.505069 -0.317679 -0.639746 0.305318 -0.340476 -0.395986 -0.558971 -0.562450 1.224893 -1.068518 -0.563585 0.409358 0.091793 0.633919 -1.429791 1.236396 -0.663639 1.022574 0.097802 -0.159079 0.155974 -0.235374 -0.650019 -0.111307 0.378306 -0.155940 0.293546 0.957491 0.616247 -0.026396 0.072860 0.962178 -0.204088 0.839978 -0.183546 0.417316 -0.329439 -0.733320 0.231753 -0.124272 -0.172683 -0.113282 0.416374 1.223325 0.332828 0.718337 1.104271 0.544442 1.096165 -0.627036 0.256025 -0.292785 1.152721 -0.449251 -0.404406 -0.032717 0.776082 -0.156294 0.598269 -1.267345 -1.804853 -1.259041 -1.216489 0.039217 -0.635847 0.321609 -0.384534 -0.017216 -1.179506 -0.687964 0.235587 -0.308272 0.885859 0.833613 0.078092 0.849401 0.671951 -0.658458 -0.254084 0.438210 0.823554 0.175519 0.022750 -0.997185 0.542865 -1.002915 0.054905 1.400421 -0.627456 0.259420 -0.152900 1.025596 -0.780562 1.545046 0.434694 -1.092150 0.760019 0.809580 0.790337 0.365341 -0.639543 -PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -6.338469 -7.632188 11.463726 7.166457 0.691315 3.718754 2.526878 -1.476158 0.447103 4.620145 -2.538081 8.491578 -5.610930 -2.028131 -1.200392 -0.216900 -5.257347 -6.188743 -0.743985 -2.680819 -3.462954 -3.017960 -5.231701 9.931922 4.592392 -3.041192 -5.098248 1.145131 -11.629193 -8.836770 -6.704945 0.259286 4.172090 -7.813669 5.333436 -13.322191 4.938502 9.655452 0.513070 -8.118497 2.996273 -3.746922 0.262802 1.578092 -6.008855 1.826469 5.997760 -1.691929 1.456309 1.634557 1.634824 -0.955492 3.008679 13.337048 3.532946 7.115132 8.209309 -3.351226 0.214534 -1.539649 0.480316 -7.035395 2.962019 -0.932135 -3.214746 -2.428703 2.095763 0.661674 -1.716914 1.958048 3.108523 -7.216035 -1.388766 -5.114434 -9.552791 -3.752279 11.391069 2.197610 8.654195 -4.797764 9.149743 2.956710 4.179473 3.264902 6.534544 -0.424988 7.275846 1.187524 -3.139714 -0.341777 -4.136503 0.149685 -1.491067 8.767690 -4.442039 -2.101115 4.380723 -11.684600 -10.494134 4.993823 -0.839889 -5.309461 -5.552947 -1.150341 3.159517 2.917713 -1.904634 -6.299417 -5.264905 5.172016 -4.006893 -2.215125 0.342398 -1.931693 0.123504 0.892655 -7.696884 3.845150 6.034072 -2.189787 -5.052067 8.407431 -2.158387 7.547996 0.464896 3.850336 -0.137584 4.019532 3.923296 0.588716 -5.311258 -3.802496 -7.300401 -3.802869 -1.001970 -2.385679 -5.984868 -2.077621 2.216362 3.048994 1.164354 6.016190 -4.140408 11.508914 2.784866 -2.335898 -5.570954 -7.462445 -6.693413 -5.204782 -0.571314 -1.950587 -8.399790 2.536804 4.398953 1.350405 -1.653380 7.113413 1.164561 4.304549 2.003103 -4.451985 1.379301 -8.593466 3.968173 -5.948167 -4.299951 4.780795 5.075132 6.254283 -0.100866 0.071739 1.834145 -3.372276 -5.268658 1.641481 1.997666 4.280550 8.508622 6.893421 16.873933 -5.667092 -1.127551 -0.802222 -2.600920 -1.059209 -0.754285 -5.410683 -0.633703 2.744556 -1.462794 12.577170 0.829387 -4.993607 4.752903 0.659292 1.962580 -7.274111 6.508845 -3.882385 3.155067 -0.814292 -5.647370 -5.627991 -1.150363 -8.195487 -6.743992 10.239613 -10.264655 -11.869657 3.730343 1.997250 7.044722 -13.720306 8.005040 -3.496134 10.950794 -1.158876 -2.123884 0.776579 1.175681 -1.792020 6.679037 2.189753 -4.685716 3.102969 4.499505 1.721487 3.750006 -0.188312 3.713549 -1.380407 2.748267 -3.632697 3.403141 -0.765758 -3.730786 -3.241242 -1.347537 0.762664 4.983088 0.417231 -4.357750 3.878461 -1.733362 -0.112475 8.784892 1.458580 -2.907312 0.961210 -1.914041 7.210336 -5.548686 -5.031706 -2.095821 5.181710 3.464393 1.311497 -10.920458 -4.891856 -9.164849 -11.001706 -1.306925 2.807080 1.195803 2.458410 -1.987223 -8.238676 -5.328207 11.870046 0.904628 11.697872 5.303425 2.822758 8.101215 3.639707 2.264669 -2.340317 -0.595641 0.526588 -2.023551 -1.447882 -4.216963 3.163914 -7.175598 6.480983 6.169908 -2.925618 5.768953 2.023944 -2.238723 -9.081633 8.608023 3.371465 -9.388024 0.964655 6.200046 5.253639 -8.821441 -5.604739 -PE-benchmarks/binomial-coefficient.cpp__main = -0.304448 -0.627501 1.743986 0.975632 -0.715499 0.132961 0.195128 -0.410648 0.317273 -1.403697 -0.394669 0.519397 -0.865590 0.155208 -0.875845 -0.348624 -1.766782 -0.853675 -0.423941 -0.596599 -0.277116 -0.252790 0.105663 0.892735 0.648895 1.065654 -0.670109 -0.082467 -1.384206 0.554875 0.868667 -0.086229 0.675354 0.609187 0.285828 -2.753385 0.515497 0.832689 -0.344250 -0.990137 0.776925 -1.045702 -0.015828 -1.223825 -0.899197 -0.109708 0.155410 0.613364 0.369061 -0.348462 -0.947851 0.306039 -0.428799 1.939933 -0.365424 0.434471 0.900737 -0.201984 -0.271715 -0.309917 0.059521 -0.183050 0.291662 0.028927 -0.655321 -0.905718 0.038919 -1.141545 -0.465629 0.635338 0.306981 0.101946 -0.385630 -0.372442 -1.790680 -0.294245 0.975134 1.217399 1.049831 -1.227627 0.697141 -0.272617 0.334455 0.336289 0.419331 0.425876 0.643771 0.223034 0.184537 -0.235532 -1.593713 0.146061 0.004408 -0.227266 -0.413515 -1.601299 0.713773 -2.178212 -0.999559 0.003666 0.370522 -0.752779 -0.159597 -0.037349 0.106624 0.598341 -0.438728 -0.501202 -0.067040 0.555120 -0.056084 0.057014 0.285811 0.532253 -0.113472 -1.259153 -1.307918 0.890595 0.195981 0.101274 0.247921 1.091709 -0.703867 0.082315 0.066466 0.380177 -0.679048 1.422895 -0.139421 -0.397832 -0.295973 -0.164186 0.266542 -0.553028 0.318659 1.831378 -1.051508 -0.635838 -0.217533 0.216979 -0.539499 -0.921039 -0.182028 0.399481 -0.088567 -0.948676 -0.680342 -0.794740 -0.875980 -1.548754 -0.533482 -0.371958 -0.672033 1.376036 0.675006 1.321322 0.519367 1.486611 -0.238219 0.413983 0.176087 -0.737491 0.573146 0.111325 0.604455 -0.595589 -0.624980 0.469783 -0.779753 1.086818 -0.090201 0.296582 0.060553 -1.043302 -0.659620 0.458387 0.924184 0.465076 0.937445 1.197608 -0.616578 -1.308754 0.073341 0.448999 -0.687551 -0.257514 0.323140 -0.605348 0.279021 0.463254 -0.494224 1.075747 0.034330 -0.532577 0.330640 0.059760 0.392190 -0.748025 -0.169598 -0.386687 -0.076218 -0.957928 -0.019272 -0.554548 -0.406461 -1.108236 -1.578629 1.291415 -1.738976 -1.205741 0.814742 0.516655 1.437185 -1.775257 0.021190 -0.590717 1.927434 0.272749 0.061855 0.174317 -0.782557 -0.990858 0.487069 0.215476 -0.576248 0.015609 0.817254 0.722713 0.262160 -0.197581 0.988184 -0.274387 1.011689 -0.609054 0.432919 -0.363126 -1.020666 0.456962 -0.137553 -0.351407 0.075779 0.843765 1.214500 0.538638 1.518596 1.098968 1.010094 0.957716 -0.446990 -0.312237 -0.419499 0.648276 -0.378417 -0.634061 0.086972 1.191972 0.141970 0.052816 -1.358466 -2.301697 -1.894311 -1.716321 0.502959 -1.118845 -0.085249 -0.007235 -0.162977 -1.308583 -0.618559 0.065536 -0.331311 2.246622 0.695908 0.039708 0.934799 0.925264 -1.136793 -0.123293 1.348837 1.137347 0.122601 0.288959 -1.901149 1.043137 -0.836613 0.174958 1.896739 -0.804342 0.757866 0.031957 1.150307 -0.892303 1.661317 0.334222 -1.725761 0.513146 0.739228 0.339728 1.087792 -0.662389 -PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -2.146911 -6.657602 8.475994 6.496831 0.212761 3.159322 3.386513 -0.605567 -0.695581 3.937705 -2.212369 6.249449 -4.727640 -1.531698 0.101855 0.205223 -4.271902 -4.503783 0.344701 -0.731374 -1.629387 -2.786256 -3.631473 8.503031 3.955486 0.188684 -2.803328 -1.215154 -8.622525 -4.633502 -4.445038 0.426896 3.632746 0.579405 5.073830 -6.200204 2.668380 6.951950 1.005466 -6.129558 1.636762 -1.967482 0.177518 0.879141 -2.669565 3.043398 4.971586 1.259490 0.990238 2.005795 0.891970 -2.457146 4.243638 6.144444 3.843881 5.264909 5.288636 -2.473290 3.212022 -2.086509 0.635980 -5.324892 2.109979 -0.360213 -1.577556 -1.278666 -0.454016 -0.051642 -0.927299 1.751311 3.647690 -3.079983 -3.686310 -3.218349 -5.354746 -2.137354 0.511895 2.963495 6.722839 -3.501965 7.575194 3.827109 3.873080 -0.103158 4.857048 -0.223206 4.364131 1.116015 -2.411591 1.561249 -5.485645 -2.246227 -1.274387 3.415319 -3.970501 -2.367776 2.379795 -7.452335 -7.954445 4.141882 -0.975945 -4.176516 -0.962761 1.140639 1.822164 2.216818 -1.563357 -4.896320 -2.931499 3.138418 -2.899046 -1.742353 0.041870 0.419910 0.072681 0.421730 -5.181887 2.495028 4.470172 -2.285741 -1.320084 6.061013 0.287360 6.417232 0.390148 1.082325 0.462513 3.515032 4.583906 0.304121 -1.944884 -3.688287 -5.216751 0.418049 0.517685 -1.746119 -4.018541 -1.864768 2.206370 3.088686 2.021203 4.912049 -0.492687 8.250036 2.162350 -2.517232 -4.631941 -6.208072 -4.649512 -2.134715 0.478905 -0.976373 -4.061729 0.803074 3.265656 0.576102 -1.053391 2.624844 0.704520 2.231586 1.143522 -1.473569 -0.016507 -2.601221 2.479052 -3.858158 -2.834185 4.007925 4.153929 4.744181 0.268902 -0.001202 1.629957 -1.350954 -3.489020 1.422094 1.325318 2.197647 7.378671 5.118724 8.966215 -1.405319 -1.629206 -0.531972 -1.224447 -1.207327 0.376635 -4.688267 2.350419 0.527128 -1.604319 7.757053 -0.299770 -1.708741 5.225373 0.075875 1.026737 -5.543708 4.028636 -3.086040 1.470565 -2.165442 -1.397485 -3.839481 -1.787058 -4.968676 -2.971609 7.879270 -4.972629 -5.785284 1.415380 -0.652467 3.386638 -7.739493 6.201742 -2.162529 4.337088 -0.421045 -3.386343 0.604352 0.652114 -0.567220 2.066954 1.853558 -3.644109 1.974681 2.435912 0.948522 0.649760 1.298873 2.544466 -0.403105 1.549150 -2.639587 2.005803 -0.338390 -0.448099 -2.168484 -0.926338 1.211010 3.713821 -1.026077 -0.237358 2.371331 -0.526497 -0.084093 4.770406 0.557613 -2.326635 -0.697173 -1.258261 5.393318 -5.012965 -3.639862 -2.477784 1.949271 1.720076 0.920611 -7.990911 -3.466757 -4.933083 -5.538235 -2.571461 0.967821 2.243456 2.772551 -1.726543 -5.997804 -4.689814 6.407341 0.467820 2.783982 4.030409 0.800491 6.577445 2.373075 2.349666 -1.236047 -0.436591 1.434997 -1.249066 -0.385858 -2.901714 1.915120 -5.826057 5.429839 5.149930 -2.665929 4.291474 -0.473997 3.345318 -7.272665 6.750833 2.639622 -7.824313 0.004476 5.158515 2.728960 -6.210509 -4.177105 -PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.412424 -0.733312 1.172376 0.776973 0.208506 0.143927 0.512441 0.134319 0.210559 0.616499 -0.383314 0.770448 -0.727375 -0.019082 0.096625 0.294164 -0.564760 -0.811733 0.131326 0.066101 -0.291561 -0.454387 -0.070927 0.582450 0.701587 0.251006 -0.596022 -0.222541 -1.041621 -1.090796 -0.481009 -0.107869 0.507910 -0.028404 0.454097 -0.942191 0.350480 0.686188 0.078828 -0.913779 0.396112 -0.245405 0.160508 -0.026042 0.149159 0.608505 0.923192 0.232428 0.350975 0.393871 0.031744 -0.501966 0.154906 0.621812 0.176981 0.481055 0.699019 -0.355246 0.059723 -0.271251 0.108353 -0.840287 0.259306 0.241627 -0.438744 -0.155154 0.113823 -0.192873 -0.381914 0.445254 0.309702 -0.243114 -0.597814 -0.490496 -0.513537 -0.084902 0.346651 0.463825 1.055413 -0.396703 0.918618 0.300885 0.653582 -0.080269 0.226073 -0.109560 0.344258 0.111173 -0.432075 -0.260215 -0.658018 -0.529738 -0.445475 0.900005 -0.099517 0.291011 0.355809 -0.693582 -0.896855 0.241376 -0.123783 -0.244840 -0.658220 0.503140 0.424595 0.638013 0.104179 -0.621657 -0.485236 0.034055 -0.400094 -0.082157 0.068595 -0.161509 -0.473427 0.061912 -0.820941 0.077321 0.332662 -0.524483 -0.357562 0.539581 -0.365623 0.867402 0.138562 0.333010 0.138240 0.566741 0.780959 0.159053 0.270960 -0.452273 -1.018496 -0.160400 0.190616 0.452856 -0.584179 -0.012087 -0.019841 0.131349 -0.123823 0.058761 -0.323580 1.074432 0.849589 -0.633412 -0.877728 -0.641988 -0.300736 -0.353829 0.165012 -0.321515 0.009299 0.029589 0.351295 0.031243 -0.033618 1.298341 -0.514203 0.389586 0.196746 -0.299990 0.079644 -0.083604 0.405540 -0.545163 -0.302323 0.397046 0.602608 0.257245 -0.003908 -0.117690 0.295153 -0.561927 -0.580963 0.536304 0.159620 0.286941 0.567742 0.434162 0.979080 -0.524582 -0.273994 0.148590 0.008260 -0.340258 0.249994 -0.732476 0.580051 -0.054981 0.231766 0.768457 0.114483 -0.504811 0.724408 -0.038971 0.105370 -0.558785 0.438007 -0.448079 0.306429 -0.210119 -0.293461 -0.404864 -0.149592 -0.314530 -0.069773 0.956058 0.109883 -1.159037 0.155683 -0.208359 0.651461 -1.359350 0.696723 -0.294945 0.427503 -0.249285 -0.060098 0.016432 0.024053 0.108936 0.104815 0.182852 -0.077203 0.302424 0.573274 0.148429 0.042696 0.226319 0.391032 0.173494 0.286379 0.086711 0.047288 -0.112431 -0.019251 -0.173544 -0.001625 0.175222 0.500148 -0.312348 0.164947 0.491117 -0.143640 0.496915 0.544567 0.319341 -0.344695 0.068631 -0.105457 1.126214 -0.527652 -0.481206 -0.256343 0.406538 -0.043145 0.300928 -0.922291 -0.835728 -0.047222 -1.484550 -0.434920 0.090775 0.341967 0.105042 -0.198989 -0.621061 -0.393405 0.531514 0.300283 1.245576 0.266423 -0.059689 0.705124 0.333858 -0.203559 -0.371463 -0.052440 0.159645 -0.197619 -0.177496 -0.367104 0.104827 -0.824929 0.411261 0.719449 -0.537992 0.300136 -0.257901 0.561428 -0.933663 1.052552 0.393980 -0.845604 0.275189 0.309466 0.897806 -0.615964 -0.549620 -PE-benchmarks/floyd-warshall.cpp__main = 0.257267 -0.303793 0.963445 0.689449 -0.279384 -0.064943 0.173832 -0.270030 0.414871 -0.250016 -0.325759 0.186877 -0.483137 0.299463 -0.325886 0.465623 -0.957476 -0.430546 -0.038788 -0.165945 -0.081692 -0.220059 0.530866 0.006470 0.516698 0.683318 -0.290745 -0.223247 -0.276933 -0.158972 0.502333 -0.331838 0.331134 0.589508 -0.018181 -0.806925 0.470386 0.188453 -0.286252 -0.499311 0.387567 -0.297479 0.023855 -0.642385 -0.087057 0.145574 0.170593 0.673247 0.386516 0.260199 -0.218569 -0.029908 0.226834 0.658304 -0.361176 0.165744 0.312949 -0.051709 -0.069119 -0.167274 0.202599 0.023005 0.128572 0.319450 -0.045731 -0.559181 -0.320560 -0.609644 -0.388346 0.418267 -0.089703 0.414512 -0.623298 -0.043984 -0.328675 0.042589 -0.833012 0.716143 0.785481 -0.598324 0.337012 0.051938 0.182617 -0.107549 -0.127857 0.252207 0.042851 0.245902 -0.042008 -0.110865 -0.367862 -0.206686 0.160429 -0.443606 -0.065248 -0.927916 0.311915 -0.610943 -0.435426 0.045386 0.319556 -0.152710 0.268124 0.136283 0.086298 0.390719 -0.288469 -0.311465 0.249104 -0.204855 0.201575 -0.030317 0.045121 0.202601 -0.228972 -0.279709 -0.739567 0.088355 -0.155882 -0.275720 0.381336 0.263202 -0.064825 0.004351 -0.020157 0.121395 -0.218105 0.805222 0.126534 0.267033 0.169910 0.233732 0.136831 0.341267 0.536621 0.577771 -0.327560 0.039653 -0.278710 0.074337 -0.362264 -0.467192 0.031867 0.082244 0.217974 -0.531091 -0.532376 -0.249334 -0.394649 -0.732383 0.133589 -0.395665 -0.011476 0.450134 0.395733 0.342619 0.545936 0.735961 -0.530392 0.055614 -0.063813 -0.025632 0.393126 0.415720 0.362808 -0.201944 -0.228861 0.282790 -0.057883 0.135608 0.064407 -0.037462 0.183457 -0.641933 0.052263 0.412266 0.385918 -0.199117 0.294501 0.249751 -0.367872 -0.066026 -0.007110 0.505145 -0.028953 -0.152189 0.278116 -0.575004 0.534689 -0.034981 0.164030 0.083658 0.058233 -0.171209 0.283640 -0.199142 0.091768 -0.247982 -0.158853 -0.195667 -0.148663 -0.476039 0.516754 -0.089572 -0.244788 -0.069847 -0.118715 0.591283 -0.457560 -0.028829 0.323123 -0.034232 0.400984 -0.420240 0.513236 -0.381027 0.527760 0.129478 -0.084995 0.129451 -0.444751 -0.380238 -0.239101 0.220418 0.168773 -0.012677 0.362588 0.395557 -0.143830 0.097248 0.545293 -0.091483 0.592298 0.013840 0.222386 -0.147524 -0.227125 0.248111 -0.073138 -0.212501 -0.233576 0.202608 0.934741 0.163960 0.590350 0.789702 -0.011791 0.703120 -0.392182 0.156216 -0.137647 0.480236 -0.252024 -0.169858 0.105082 0.372939 -0.284565 0.336238 -0.593085 -1.082194 -0.692880 -0.392828 -0.136122 -0.502342 0.236059 -0.290882 0.015680 -0.373663 -0.346042 0.097765 -0.205849 0.308701 0.348936 -0.061563 0.366204 0.449977 -0.465777 -0.179317 0.251105 0.485344 0.185191 0.180676 -0.694024 0.421676 -0.492560 -0.161172 0.874611 -0.473068 0.004549 -0.236758 0.773712 -0.331939 0.770856 0.222774 -0.483002 0.512262 0.396165 0.352064 0.573543 -0.341074 -PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -2.457190 -7.233173 10.595047 8.041826 -0.140303 3.070042 2.657441 -1.225901 0.116161 5.268063 -3.588495 6.746611 -5.403041 -1.230722 1.892617 1.398269 -6.156088 -5.194610 0.332174 -1.329662 -3.187718 -2.919548 -4.287498 8.423563 4.686934 1.390924 -3.492919 0.381941 -7.806127 -7.698720 -5.079688 -0.429379 4.067787 2.070454 5.923650 -8.287633 4.374746 7.161096 0.712506 -6.414966 1.377136 -2.469934 -0.472494 0.284637 -1.887628 3.736265 6.193660 2.286774 1.609061 2.380446 0.910431 -4.030476 4.243557 7.588066 3.810413 5.984771 7.437794 -3.660467 2.445465 -1.871051 1.143781 -6.577416 2.738270 0.935219 -2.392462 -2.172593 1.047498 -1.110689 -0.981961 2.670267 4.679061 -4.245676 -3.747348 -5.141943 -4.461748 -2.518391 0.164852 3.472767 8.958368 -4.336230 8.910042 4.827147 5.036553 0.538972 5.652654 -0.524222 7.138628 1.521585 -4.014045 1.327932 -4.681352 -4.445312 -0.736152 6.485446 -3.613383 0.090907 2.489794 -8.393975 -9.216914 4.716832 -0.731619 -3.730923 -2.864163 1.551277 2.994465 1.672628 -0.671803 -5.451257 -3.179885 2.155086 -4.915447 -2.035383 -1.515044 0.537847 -1.053392 2.601898 -7.549070 2.321036 4.730745 -3.141878 -2.031503 6.504864 0.433252 6.929382 0.143329 1.522436 0.779961 4.158960 4.917021 1.161177 -1.069654 -3.433043 -6.487768 0.541925 1.390453 -2.476066 -4.445764 -2.310953 2.972563 3.173297 0.778000 5.318824 -2.063680 11.594435 3.262491 -3.007725 -6.340118 -7.234876 -5.737020 -3.203098 1.517849 -2.797922 -5.201706 -0.057184 4.189152 0.803569 -0.998481 4.407824 -1.096000 4.148172 0.701455 -0.574403 0.517941 -3.121979 3.565772 -5.272704 -2.560776 4.627385 5.269402 3.586317 0.799955 -1.766321 2.507023 -3.371196 -5.060511 3.653615 0.251351 2.001877 7.688932 5.386345 15.565444 -2.814165 -0.587897 -0.030766 -0.579295 -2.034387 1.655846 -5.455647 2.713498 0.529993 0.248397 9.333701 0.579977 -3.333696 3.830569 0.394239 0.555059 -5.953711 5.213537 -2.998985 2.769193 -1.384522 -0.684583 -4.863267 -2.136275 -4.545242 -1.732749 9.238092 -6.090745 -8.078200 2.915544 -0.663674 5.270761 -9.764057 8.059834 -3.332297 5.635400 -2.278406 -4.646057 0.849532 -0.262467 -0.736807 4.142876 2.416955 -2.597244 1.802659 2.702723 1.483307 2.375168 1.646277 3.025375 -0.544465 1.840862 -2.097627 2.564609 0.139293 -0.244304 -3.937461 -1.343300 1.036106 4.339536 -1.438524 -1.454075 3.585347 -1.239754 0.330303 5.060831 0.589161 -3.258220 0.420867 -1.025148 6.877386 -5.932813 -4.450921 -2.182103 2.060518 1.434855 1.938182 -9.517354 -3.783256 -4.784541 -6.452908 -5.204187 3.584143 3.553442 2.985259 -1.485455 -6.068182 -4.569805 9.314307 1.007618 5.415292 4.168777 1.718941 7.103075 2.851555 3.345569 -3.630086 -1.576848 1.305348 -1.757976 0.036332 -3.951286 2.907835 -6.316164 5.970736 5.981116 -3.337955 3.994881 -0.915795 4.452520 -8.228528 7.560022 3.252544 -9.073032 0.348118 6.760614 4.140910 -7.268266 -5.210749 -PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -0.662721 -2.482171 4.626340 3.397267 -0.418689 1.010458 0.866297 -1.105020 0.839381 0.652995 -1.493255 2.182347 -2.588351 -0.082480 0.353972 0.368753 -3.503425 -2.490508 -0.294993 -0.838539 -1.152661 -1.588332 -0.783835 3.064893 1.951695 1.711145 -1.742247 0.461267 -3.529754 -2.299944 -0.587427 -0.307937 1.849541 2.024886 2.198429 -3.804147 2.088822 2.756438 0.034852 -2.814054 0.976393 -1.760242 -0.217481 -0.973643 -0.436484 1.614025 1.847606 1.592059 1.244799 0.448196 -0.388880 -1.244903 0.449469 2.478548 0.421609 2.055883 2.614014 -1.352835 0.493830 -0.769737 0.329891 -1.940086 1.268378 0.944071 -1.776623 -1.487766 0.719084 -1.240980 -1.156577 1.921714 1.786765 -1.119302 -1.863881 -1.894048 -2.346837 -0.658080 1.248851 2.152308 3.806657 -1.802084 3.171990 1.220768 1.959407 -0.022974 2.074764 -0.097890 3.210422 0.535410 -1.395489 -0.195059 -3.548240 -2.008317 -0.384155 1.879767 -1.091660 -0.022568 0.880468 -4.393950 -3.625812 0.980128 0.097789 -1.592745 -1.665836 1.226262 1.545114 0.976663 0.213714 -2.235024 -0.644048 1.110036 -2.057582 -0.539990 -0.452964 0.377022 -0.930385 -0.158737 -3.503596 1.075371 1.353600 -0.991726 -0.421485 2.798462 -0.864879 1.929385 0.213909 0.662792 -0.130296 2.235110 1.218755 0.200238 0.358185 -1.548362 -1.628216 0.085142 0.660366 0.853848 -2.109163 -1.095139 0.556325 1.001250 -0.846238 0.566531 -1.138929 3.767209 1.234460 -2.102168 -2.648774 -2.522289 -2.313379 -2.253392 0.359048 -1.302215 -1.770434 0.399512 1.944943 1.340450 0.389162 2.896978 -1.174455 1.577045 0.455438 -0.420727 0.886220 -0.277465 1.692205 -2.141881 -1.273268 1.942573 0.912542 1.391871 0.083015 -0.473792 0.757654 -2.225813 -2.370383 1.911778 0.483033 1.447882 3.020238 2.491830 4.000287 -1.906093 0.196864 0.797005 -0.304358 -0.967596 0.934958 -2.278835 1.520602 0.380136 0.517514 3.784099 0.098905 -1.552436 1.127996 0.494680 0.649608 -2.639546 1.257800 -1.269317 1.209998 -1.366555 -0.214637 -1.800462 -1.261938 -1.924113 -1.258105 3.812919 -1.756274 -4.129771 2.025138 -0.643938 3.168113 -4.579001 1.637759 -1.581313 2.707542 -0.636309 -1.057337 0.315629 -1.271104 -1.141205 1.555286 0.914367 -0.844976 0.899214 1.437210 1.124627 0.886187 0.393931 1.551022 -0.080456 1.451999 -1.065998 1.185636 -0.226707 -0.311710 -0.707447 -0.639428 0.081460 1.351005 -0.272314 0.767912 1.999791 0.885726 1.501572 1.995906 1.069004 -1.378260 0.140735 -0.485155 2.323486 -1.985123 -1.915420 -0.378665 1.133445 0.131811 0.883816 -3.939973 -3.274505 -1.905528 -4.105323 -1.428027 -0.075549 1.346587 1.061739 -0.490120 -2.770063 -1.687057 2.652239 0.431053 4.469900 1.479452 0.294035 2.649521 1.896352 -0.370869 -1.255161 0.479738 1.196292 -0.753380 0.000326 -2.887783 1.993945 -2.371459 2.042066 3.505081 -2.080862 1.628372 -1.341672 2.764853 -3.321997 3.660088 1.381251 -3.819843 0.677805 1.810312 1.932685 -0.985607 -2.202323 -PE-benchmarks/subset-sum-problem.cpp__main = 0.072777 -1.138164 2.045279 1.454529 -0.257292 0.217279 0.678822 -0.251202 0.570557 -0.110112 -0.717903 0.938644 -1.189211 0.072844 -0.378178 0.435781 -1.632919 -1.181602 0.172443 -0.042303 -0.160040 -0.638577 0.322259 0.927506 1.030717 1.331963 -0.611031 -0.403900 -1.520181 -0.727430 0.342348 -0.345657 0.836075 1.231261 0.503834 -1.491353 0.746000 0.990125 -0.178923 -1.564569 0.690077 -0.718391 -0.033764 -0.942583 0.076372 0.630931 0.839999 1.243079 0.462118 0.456132 -0.683217 -0.400544 0.414354 0.979614 -0.037991 0.666726 1.131920 -0.262777 0.249408 -0.445464 0.354776 -0.637480 0.455801 0.527141 -0.592886 -0.701940 -0.293910 -0.964366 -0.717639 0.746929 0.419835 0.251867 -1.146987 -0.327117 -0.858953 0.065664 -0.755624 1.320951 1.609483 -1.068778 1.349589 0.363123 0.844705 -0.301806 0.292632 0.256936 0.428881 0.436403 -0.380707 -0.527586 -1.806708 -0.776676 -0.168962 -0.312168 -0.337367 -0.752848 0.690003 -1.452885 -1.335736 0.241537 0.185592 -0.615617 -0.036101 0.719690 0.439753 0.998703 -0.174673 -0.806300 -0.031486 0.164556 -0.419508 -0.203968 0.034368 0.526021 -0.563865 -0.485507 -1.452185 0.346935 0.392731 -0.631078 0.351803 0.888999 -0.320820 0.724483 0.015453 0.131368 -0.084888 1.282240 0.780069 0.079629 0.729113 -0.406222 -0.330970 0.658573 0.772904 1.108050 -1.015163 0.008419 0.012129 0.389879 -0.187518 -0.579070 -0.325949 0.890684 0.332000 -1.227398 -1.202953 -1.109390 -0.715772 -0.937157 0.171045 -0.675918 -0.062388 0.780334 0.852485 0.559820 0.457094 1.560310 -1.137348 0.480450 0.225527 -0.030720 0.297702 0.781913 0.659209 -0.718958 -0.604835 0.734015 0.298098 0.450170 -0.107739 -0.048234 0.423797 -1.093133 -0.689413 0.898117 0.508407 0.129457 1.084003 0.823358 -0.063028 -0.674077 -0.332032 0.495352 -0.184169 -0.498538 0.467015 -1.278761 1.135141 -0.080706 0.460851 0.977923 0.054967 -0.568647 0.821020 -0.058312 0.090559 -0.802440 0.219789 -0.670868 -0.208765 -0.699474 0.379517 -0.447246 -0.655219 -0.720816 -0.412771 1.592449 -0.488305 -1.094145 0.447270 -0.466382 1.022275 -1.689527 0.718824 -0.719929 0.740352 0.247096 -0.259490 0.079583 -0.733168 -0.520581 -0.427270 0.484258 -0.166121 0.410366 0.860158 0.591596 -0.150532 0.377006 0.776824 -0.085190 0.761086 -0.236687 0.243635 -0.343412 -0.354491 0.170162 -0.222975 0.064416 0.197028 -0.103894 1.506973 0.644900 0.843605 1.358162 0.388627 0.903769 -0.749862 0.019983 -0.219821 1.308172 -0.689350 -0.617405 -0.275058 0.496364 -0.185054 0.677954 -1.544372 -2.106200 -0.753120 -1.720217 -0.399293 -0.986512 0.684796 -0.112594 -0.097767 -1.328657 -0.846528 0.210149 0.004099 1.308954 0.790155 -0.082369 1.096365 0.723274 -0.719649 -0.408136 0.567634 0.903732 -0.100888 0.011734 -1.161398 0.585357 -1.105228 0.388660 1.782889 -0.890102 0.413388 -1.002811 1.528287 -1.162364 1.789930 0.659675 -1.637809 0.435437 0.589008 0.832013 0.135760 -0.942780 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 0.322803 -0.476623 1.672725 1.118270 -0.617701 -0.057713 0.295024 -0.469235 0.432403 -0.934500 -0.442161 0.366768 -0.807874 0.394329 -0.688148 0.281674 -1.718083 -0.701804 -0.319020 -0.432575 -0.151601 -0.226992 0.622322 0.365457 0.816881 1.158527 -0.557234 -0.344337 -0.815597 0.261286 0.922819 -0.258963 0.597658 0.942526 0.083493 -1.849101 0.635584 0.533079 -0.438782 -0.843621 0.777098 -0.713286 -0.097749 -1.188617 -0.422534 0.056936 0.103808 1.040414 0.488103 0.084400 -0.708121 0.224787 0.051467 1.421420 -0.503728 0.298704 0.700398 -0.078663 -0.131216 -0.270886 0.190394 0.052061 0.166644 0.240386 -0.241648 -0.972475 -0.319611 -1.122380 -0.480396 0.682820 0.131765 0.451001 -0.768001 -0.187763 -1.037405 0.005878 -0.491134 1.297682 1.072134 -1.138684 0.485244 -0.125465 0.189141 -0.001549 -0.013821 0.438167 0.225345 0.323132 0.226127 -0.263609 -1.211923 -0.211365 0.212708 -0.740284 -0.299819 -1.753159 0.607446 -1.449319 -0.787381 -0.031632 0.533622 -0.599117 0.351389 0.136239 0.020851 0.595988 -0.377506 -0.396893 0.261141 0.091858 0.205977 0.008722 0.138242 0.514088 -0.238433 -0.863179 -1.266233 0.624434 -0.109729 -0.076425 0.534487 0.660716 -0.346567 -0.065206 0.003269 0.239633 -0.549659 1.331831 -0.012590 0.049195 0.187798 0.204741 0.440481 0.206317 0.722437 1.413976 -0.748659 -0.196015 -0.412721 0.191000 -0.583028 -0.830784 0.035183 0.205052 0.016000 -0.970797 -0.779657 -0.573399 -0.729275 -1.259319 -0.130539 -0.466229 -0.288975 1.002567 0.629376 0.942382 0.747376 1.204218 -0.606787 0.169306 0.079908 -0.294641 0.586191 0.517671 0.537869 -0.407025 -0.506860 0.426342 -0.518315 0.599590 -0.057529 0.254393 0.189093 -1.045170 -0.227047 0.515587 0.737487 -0.059119 0.682390 0.835847 -0.799166 -0.563819 0.029912 0.699604 -0.432034 -0.290864 0.422172 -0.763305 0.600092 0.169012 -0.040296 0.584160 0.063291 -0.333320 0.416245 -0.151542 0.213008 -0.462034 -0.289509 -0.305377 -0.267591 -0.898741 0.550681 -0.238434 -0.414065 -0.526838 -0.813209 1.091568 -1.148090 -0.493076 0.649342 0.114516 0.858591 -1.102068 0.537569 -0.553682 1.133963 0.340851 -0.068002 0.218502 -0.821850 -0.967778 -0.031737 0.257668 -0.113477 -0.048617 0.717728 0.689938 -0.095853 -0.065516 0.912070 -0.258313 1.062855 -0.342799 0.426335 -0.340491 -0.672748 0.414036 -0.081090 -0.404298 -0.282393 0.580253 1.523607 0.261221 1.383816 1.201171 0.355495 1.166480 -0.544911 0.047464 -0.302403 0.600519 -0.366066 -0.427920 0.206701 0.759294 -0.207945 0.377521 -1.103347 -1.979456 -1.426583 -1.074087 0.203553 -1.103789 0.230627 -0.319639 -0.140022 -0.950271 -0.660320 -0.105327 -0.342676 1.043728 0.693863 -0.106395 0.696675 0.809953 -0.963538 -0.034804 0.880327 1.055937 0.305761 0.222348 -1.474351 0.907035 -0.720184 -0.156531 1.721039 -0.765070 0.447462 -0.362737 1.331838 -0.661694 1.426688 0.281159 -1.225600 0.628341 0.735445 0.368555 1.097982 -0.577236 -PE-benchmarks/aho-corasick-algorithm.cpp__main = 2.675370 -3.675708 21.078697 11.182352 -4.298619 -0.060975 9.429816 -9.514855 10.460943 -0.542372 -4.312795 -0.342852 -11.260827 1.121318 -3.514178 5.497952 -18.455481 -8.130667 -1.906668 -9.178871 -3.708589 -7.062134 9.905923 0.086796 11.861397 6.540622 -4.329664 -6.069852 -6.871640 -6.959446 10.385153 -4.022520 5.473134 6.811855 1.490354 -21.510697 11.463710 3.942141 -5.303024 -7.561579 8.714487 -3.750192 -0.943134 -4.199233 1.248699 2.955072 3.827016 16.407591 11.441111 5.493427 0.402942 -4.222857 0.862452 16.940497 -8.727316 4.707499 3.963242 -3.873822 -2.290276 4.899298 0.274525 -3.351109 2.070490 6.412066 -1.795335 -8.548213 3.132502 -10.560346 -9.807693 11.566839 1.894418 -1.930757 -9.222738 -3.043287 -6.385832 -0.605656 -11.072822 13.313619 15.648955 -9.549223 9.352862 0.000231 3.490206 -3.972762 -1.495726 1.061439 6.168519 1.016883 -2.622535 -5.906978 -13.680023 -6.646312 0.979635 -4.262833 0.234215 -15.737648 6.655157 -10.736624 -11.735512 0.338352 6.859819 -5.643824 -3.852022 4.830069 4.407625 3.787112 -3.418679 -9.571131 -1.230375 0.775224 -6.256178 3.232301 0.654795 -0.657242 -6.192575 -4.885464 -13.431716 3.225828 -3.024442 -3.454138 -2.589508 8.526824 -4.540947 1.664978 3.911703 6.741343 -3.656342 10.734775 0.899965 4.676992 7.156406 2.684098 -4.183615 3.051594 8.395234 11.182431 -1.337755 -0.528930 -5.685620 3.083240 -11.862403 -2.572209 -1.841166 7.972234 5.609700 -12.475066 -10.545242 -0.833086 -3.526292 -14.004801 4.179520 -6.619639 -4.759499 1.894102 7.091246 8.788100 7.271181 11.963955 -11.142473 4.114295 -1.246342 -2.178774 6.062628 4.384876 9.874252 -6.536047 -3.575546 -0.469188 -0.779941 3.768966 -2.454287 -1.287911 1.439168 -15.427567 -4.298134 1.867801 4.843825 -2.491590 2.867544 10.469990 6.715744 -10.781517 -0.309027 11.439172 -2.262503 -5.100542 7.114474 -11.802235 8.322804 1.670011 2.704757 8.165789 1.555328 -3.990765 4.485455 -3.191511 1.835918 -6.331995 -4.727146 -4.990822 -1.751038 -6.638120 4.097897 -5.880889 -5.754495 -3.735617 -4.658036 11.573643 -4.788820 -9.233108 13.964530 -6.476513 8.257415 -13.691258 16.327734 -6.245100 3.365717 -2.920630 -0.746199 -1.450383 -1.475556 -7.587654 2.494679 -0.771579 1.085991 7.374531 14.794487 7.066763 3.484457 -0.875013 13.075093 -4.372416 9.682069 -2.970642 7.092127 -5.379842 -6.503063 1.489390 -1.134267 -3.979156 -2.784038 3.696512 14.731544 6.299272 6.059940 13.096621 3.645324 12.262426 -4.895540 6.395160 -0.914152 8.287536 -4.428652 -5.942821 6.500065 3.935865 -5.697155 6.784670 -15.542706 -19.555389 -7.281250 -15.962326 -1.880304 -9.299778 5.642694 -2.938598 -0.509855 -11.702375 -6.032212 2.097679 -0.252198 6.812071 7.030481 -0.131731 7.841345 13.241898 -7.955509 0.076953 4.306220 9.116251 -0.054433 -3.838911 -12.487778 9.397742 -11.243699 2.316649 15.665114 -7.058688 2.396160 -8.768576 13.880025 -13.698502 12.500780 3.009612 -6.923500 10.057092 7.692090 10.384921 8.949349 -5.673079 -PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -4.683080 -13.736383 22.279119 15.612719 -1.508875 5.014073 7.092598 -2.461039 -0.442328 7.839100 -6.690827 11.813121 -11.347549 -2.662602 1.516123 2.015028 -13.873416 -10.804011 -0.217093 -3.523264 -6.143955 -5.413250 -6.373706 16.245700 10.401414 4.032054 -7.225699 -1.826305 -15.095771 -14.263009 -7.075849 -0.996942 8.455982 6.468976 10.066219 -19.777772 8.604227 13.337221 0.338128 -10.739694 4.755315 -4.465195 -1.287622 -1.500332 -5.134872 6.547695 12.036868 5.416736 3.824100 4.574408 1.116122 -8.022174 8.701081 17.604117 6.278623 11.246025 14.958351 -6.514255 4.956240 -3.100212 1.803174 -12.921219 4.561975 1.474773 -3.828924 -4.217597 2.046176 -4.948341 -2.024375 6.402487 7.824758 -7.056807 -7.464722 -9.326974 -11.297223 -4.897441 -1.288520 8.623339 17.786972 -10.791158 17.356402 8.751180 9.508773 0.970197 8.609267 0.067190 11.914475 2.974971 -6.489088 1.854926 -11.205024 -8.690005 -2.483548 11.368249 -7.045791 -3.490980 6.724917 -19.346337 -18.340636 8.708057 -0.895433 -8.071806 -4.621361 2.224292 4.758344 2.605354 -2.206766 -10.671246 -6.761835 4.023959 -9.062130 -2.141832 -1.758763 2.180881 -1.912809 4.097588 -15.769832 6.149309 7.607529 -6.085094 -4.205662 13.292262 1.136603 13.608379 1.350137 4.088047 -0.175936 9.683765 9.280086 1.982789 -1.476680 -4.812958 -12.173146 -1.264039 4.134190 -1.014327 -9.103653 -5.966586 4.472278 6.187630 0.308481 8.652212 -3.494061 21.778671 5.596584 -7.830933 -13.214831 -13.518281 -11.682986 -8.766422 2.535470 -5.477517 -10.194625 1.962592 7.997616 3.432771 -1.138218 9.749187 -2.352908 7.841572 1.190461 -2.848216 0.369095 -6.368293 7.522691 -10.255329 -5.524572 8.357363 8.545071 8.784157 1.017558 -3.098275 4.943811 -8.188648 -10.654272 6.060308 0.690982 2.178272 13.898958 11.941669 26.305015 -8.012606 -1.117373 1.386597 -2.343860 -4.354962 4.564100 -11.081356 6.427472 1.184335 -1.613128 17.348592 1.656641 -6.367816 8.846540 -0.531204 0.814858 -11.736785 8.433278 -6.035317 3.938213 -4.400653 -1.623308 -9.833730 -4.611571 -8.633496 -5.561412 18.180362 -13.384574 -14.799954 6.661081 1.054209 10.081203 -19.790299 16.913973 -6.452240 12.012953 -3.562964 -9.128833 1.690671 0.309043 -1.785859 6.833467 3.303594 -6.140235 4.304083 7.089184 3.654046 5.305861 2.821257 7.807594 -1.674440 5.154369 -4.438273 4.491139 -0.713645 -3.934977 -7.015585 -2.046462 1.135548 7.647857 -0.973779 -0.470444 6.928464 -0.484491 2.400223 11.479422 3.380021 -6.486977 -0.533838 -2.355382 14.394473 -11.730617 -9.317081 -3.388909 5.024644 1.814901 3.912419 -19.426958 -10.395642 -12.886158 -13.656270 -9.513493 4.262216 7.014364 4.676885 -3.093912 -13.408721 -8.967648 15.119380 1.282644 7.611726 9.627757 2.909677 14.991666 7.149284 4.697972 -6.748302 -0.004976 5.289920 -2.468124 0.359264 -10.462296 6.359025 -13.171104 10.974561 13.225447 -7.117094 8.391095 -0.584066 11.177673 -17.094386 16.636683 5.816933 -18.767991 1.969259 14.118937 6.814725 -11.123370 -9.836927 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/cut-vertices.cpp__main = 0.672095 -1.114670 3.513144 1.527752 -2.562057 -0.717795 -0.188021 0.107451 1.253194 -5.718513 -2.036224 0.802767 -1.578197 1.025967 -1.867835 -0.574860 -6.197945 -2.426235 0.670314 0.467955 -0.034907 -0.927241 1.724327 1.506869 1.036487 5.099602 -1.268479 0.121154 -0.989853 3.410374 4.261367 -2.096707 1.636710 4.883648 0.314335 -6.363546 1.001044 -1.141543 -0.862060 -1.878328 1.117289 -2.150814 0.366661 -5.821857 -2.400038 -0.351367 1.496998 4.435976 1.094389 -1.044931 -4.752211 -0.973075 -1.745312 3.071403 -1.397908 -0.495449 1.711969 -0.772328 -0.442189 -2.036466 0.957459 -0.689594 0.812285 2.237150 -1.876885 -1.793878 -0.101730 -4.534911 -1.707229 1.973973 1.085168 4.603214 -1.841752 1.078644 -3.415616 0.272598 2.977785 4.070427 3.578248 -2.511155 1.456928 -0.513385 2.493613 0.232074 -0.556222 1.981563 0.853975 1.024374 -0.881806 -0.816090 -5.031373 -0.430011 -0.074493 -3.017595 1.495399 -4.275853 -0.025712 -5.462895 -0.937662 -0.725017 0.665223 0.001814 1.578260 0.244755 1.914977 1.796207 -1.068370 -0.687852 1.491206 -1.413779 -1.100946 0.829383 1.424903 2.851246 -0.817656 -3.512491 -3.004100 0.092059 -0.517681 -0.884800 3.837421 1.321058 -2.131601 0.137731 -0.003538 -0.124866 -1.151099 3.715415 0.771182 -1.630840 0.777239 -0.981436 4.076683 -0.354901 1.323410 6.368392 -2.008904 -2.328588 -0.480002 0.419794 -1.726146 -5.726434 0.713519 -0.941941 -1.529897 -2.847690 -2.296596 -1.874668 -2.159360 -4.095297 -0.680621 -1.748436 -0.540345 4.815635 1.667832 2.527281 2.472067 3.095728 -1.549403 1.906681 -0.608495 0.020663 1.363665 2.315516 1.563760 -0.637260 -0.188750 1.197098 -2.739558 1.805259 0.079758 -1.727142 0.708618 -3.198013 -1.677169 1.744161 3.052119 1.267633 0.417217 0.551178 -5.740441 -2.051510 -0.039003 2.175697 0.692584 -1.409315 2.001331 -1.329642 2.746548 -0.238719 -0.470480 -0.506823 0.250394 -2.157123 0.313533 0.723044 0.504730 -0.920119 -2.336968 0.074489 -0.010928 -2.627645 2.464561 -1.192139 -1.047481 -1.734051 -2.381002 2.353003 -3.921996 -1.709301 1.291365 0.761283 5.522844 -3.031178 -1.815316 -1.764055 5.262480 1.487072 -0.185877 0.756980 -4.838038 -1.588363 -0.331883 0.740030 0.839936 -0.758883 -0.182243 2.438748 0.637633 0.917057 2.128317 0.815035 2.148245 0.651629 -1.058990 -0.955714 -2.024237 2.096488 -0.217349 -0.472881 0.336015 2.531095 4.071982 1.484510 5.018255 5.916134 0.867015 1.967051 -1.695545 -2.769861 -1.403979 2.359293 -0.580791 -0.993303 -0.674223 3.134331 -1.254709 0.860126 -2.308014 -7.489327 -5.292861 -2.979925 -0.973710 -3.933143 0.024421 -0.648234 1.172160 -2.006407 0.559137 -1.762842 -0.685367 5.548936 1.743836 -0.985384 1.740665 1.872902 -4.182947 -2.781070 4.660262 3.681705 0.063993 3.127747 -6.707418 1.808600 -2.686323 -0.000679 5.189508 -3.117117 -0.974917 -1.611305 4.929101 -1.036700 4.122466 1.772180 -4.703329 0.842948 -0.257154 -0.246797 5.895799 -1.699092 -PE-benchmarks/cut-vertices.cpp__Graph::AP() = -1.650535 -6.507191 12.731234 7.971790 -1.893808 2.940106 3.087966 -3.480765 1.631760 1.857801 -2.767103 6.127085 -5.569757 -1.048506 -1.387504 0.489132 -8.933401 -5.412935 -1.293454 -3.504003 -3.833111 -2.968537 -1.727166 7.410433 5.536976 3.799058 -3.860242 -0.556315 -9.125865 -6.144677 -1.478334 -0.348666 3.987592 2.534928 5.761278 -11.003602 5.325077 7.140312 -0.620684 -7.220061 2.887274 -2.432795 -1.175204 -0.621853 -2.162159 2.376809 4.075332 3.204462 2.459839 1.630689 -0.189313 -2.168123 2.522395 10.530609 2.165789 5.593886 7.174558 -3.566352 2.244276 -0.468364 1.062445 -4.758656 2.086301 0.847844 -1.794949 -3.059045 1.625845 -3.362748 -1.927528 4.459595 3.415319 -5.175534 -3.063807 -5.346950 -7.781584 -1.745121 0.388912 5.894149 9.175912 -5.447730 7.985510 2.466896 3.983501 0.069372 5.297504 0.093937 7.425058 1.908875 -2.223213 0.121449 -6.464688 -3.013634 -0.522610 3.803533 -3.962389 -2.958581 4.735821 -11.784506 -9.288770 4.308279 1.331134 -4.782347 -3.151690 0.985188 2.454576 2.022983 -2.086538 -5.477890 -3.422304 3.556700 -4.206274 -0.712859 0.016355 1.253638 -1.752667 0.883862 -7.429945 3.854192 3.860957 -1.765783 -2.633617 7.675686 -0.761616 4.931186 0.103141 2.544323 -1.046852 5.079735 2.612728 1.213229 -1.142515 -1.216780 -4.337147 -0.188264 1.811354 0.949841 -4.519776 -2.428877 1.301199 3.445494 -1.294974 3.288980 -3.628579 9.734162 2.330567 -4.509433 -7.056144 -5.920052 -5.425516 -6.585775 -0.379494 -2.935019 -6.347442 2.751092 4.844982 4.461064 -0.076181 5.010451 -1.756138 3.180465 1.119702 -1.753620 1.293710 -3.232301 3.788720 -5.532172 -3.501157 3.218644 2.171915 4.921535 0.375296 -0.807482 1.149564 -4.912564 -5.502256 3.327318 2.661162 1.945868 6.902531 7.509457 10.491651 -5.776330 -1.409026 1.629048 -2.401790 -2.615928 1.270895 -5.760244 2.053201 1.509333 0.398141 9.766437 0.397762 -2.400905 3.784002 -0.007689 1.545930 -5.646034 3.169058 -3.183184 1.274043 -2.384775 -1.083668 -4.912366 -1.941992 -5.824175 -5.783550 10.015079 -9.300389 -8.871575 6.329367 -1.086871 6.519979 -10.623765 6.511705 -3.481337 6.991204 -0.496339 -2.418199 -0.357283 -1.031492 -3.298865 5.023485 1.608180 -3.945595 2.238825 5.479817 2.358477 2.854865 -0.176976 4.791386 -2.578267 3.706455 -3.481730 4.423698 -0.994126 -3.430520 -2.493850 -1.314085 -0.388466 1.959884 0.910955 1.144895 2.923606 1.857597 2.036782 5.489457 2.965754 -3.703283 1.146912 -0.839005 5.682359 -5.258442 -4.939703 0.241475 3.766133 1.211173 1.517842 -10.118546 -7.379909 -8.221326 -8.950089 -3.107885 -1.280559 3.064583 1.315066 -1.996484 -6.793303 -5.513328 7.280182 0.525261 5.942666 5.325895 1.593675 7.467144 5.012828 0.049521 -1.077337 0.077480 3.221234 -1.082585 -0.926467 -6.463712 4.050055 -7.054606 4.711008 8.430496 -3.126274 5.446115 -0.758533 4.837225 -9.053415 8.145217 3.209832 -9.342931 1.472429 6.977157 4.499773 -2.969283 -5.558839 -PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/box-stacking.cpp__main = 0.161997 -0.576514 1.368491 0.921493 -0.348870 -0.007296 0.410149 -0.215148 0.348950 -0.386550 -0.444061 0.453193 -0.680774 0.238339 -0.520523 0.357674 -1.184146 -0.626392 -0.045182 -0.213792 -0.088340 -0.206324 0.428750 0.294048 0.726960 0.786717 -0.380596 -0.455324 -0.733187 -0.087988 0.507470 -0.281405 0.491809 0.554615 0.039547 -1.403087 0.473118 0.510549 -0.319615 -0.839658 0.608292 -0.470856 -0.018951 -0.744640 -0.218572 0.122679 0.347566 0.845096 0.320993 0.296195 -0.439915 0.015951 0.285567 1.197301 -0.248364 0.338480 0.696637 -0.072784 -0.068910 -0.236319 0.238139 -0.175940 0.168161 0.195469 -0.112533 -0.670702 -0.375018 -0.789271 -0.412382 0.391474 0.062784 0.343275 -0.660130 -0.141286 -0.678760 -0.020462 -0.738046 0.931057 0.993442 -0.908194 0.634819 0.060806 0.277190 -0.053080 -0.044524 0.347868 -0.007288 0.316367 0.036465 -0.203823 -0.792654 -0.194656 0.108605 -0.458136 -0.254375 -1.346255 0.583391 -0.907005 -0.707396 0.128124 0.332688 -0.414679 0.338443 0.152177 0.009916 0.624577 -0.432103 -0.400254 0.079497 -0.057538 0.178306 -0.076656 0.110163 0.351107 -0.241961 -0.521239 -0.987170 0.361990 0.037957 -0.287844 0.362356 0.490598 -0.153453 0.221841 -0.020746 0.201519 -0.299286 1.046814 0.273594 0.124374 0.200666 0.140612 0.031509 0.260483 0.613912 0.966024 -0.616914 -0.018913 -0.214302 0.185987 -0.227955 -0.502474 0.022165 0.310229 0.198653 -0.725805 -0.676898 -0.571875 -0.493477 -0.852648 0.019986 -0.424846 -0.116256 0.685882 0.519207 0.503725 0.498884 1.047847 -0.556528 0.158638 0.052402 -0.192701 0.354298 0.400482 0.452679 -0.358949 -0.392443 0.352686 -0.048838 0.397119 -0.003820 0.131740 0.247367 -0.802470 -0.117800 0.422875 0.546827 -0.210869 0.574518 0.558140 -0.344768 -0.332938 -0.146077 0.436723 -0.290333 -0.226497 0.325758 -0.770854 0.568281 0.048704 0.047611 0.427146 0.102795 -0.281868 0.521704 -0.228450 0.053534 -0.359767 -0.041704 -0.343782 -0.293491 -0.577494 0.474418 -0.220061 -0.321319 -0.391155 -0.435070 0.925372 -0.770334 -0.286665 0.276195 0.068843 0.516635 -0.895090 0.783348 -0.480830 0.782205 0.216982 -0.143166 0.170823 -0.435790 -0.547367 -0.202668 0.279652 -0.046653 0.073238 0.600583 0.483402 -0.149708 0.095503 0.716082 -0.215362 0.714678 -0.158014 0.259426 -0.256243 -0.496748 0.248246 -0.069459 -0.193738 -0.145866 0.309390 1.156829 0.181225 0.789398 0.907204 0.266285 0.844051 -0.489582 0.117887 -0.216851 0.792500 -0.367101 -0.317482 -0.001025 0.578016 -0.131273 0.396081 -0.934391 -1.458652 -0.991030 -0.812867 0.005398 -0.698021 0.268488 -0.297521 -0.064864 -0.802613 -0.578550 0.029154 -0.250534 0.576063 0.607166 -0.012366 0.639703 0.508241 -0.569582 -0.139816 0.490183 0.752747 0.192768 0.117026 -0.878729 0.480472 -0.705113 -0.068043 1.226397 -0.528056 0.248177 -0.234066 0.993159 -0.575824 1.159226 0.299007 -0.962072 0.513439 0.673383 0.468626 0.480365 -0.496805 -PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -7.653223 -17.297962 31.445038 22.398158 -6.049356 8.240907 4.516061 -7.174379 -0.806860 9.472602 -7.417123 17.618321 -12.195175 -2.634009 -0.216206 4.297413 -20.687624 -10.127381 -2.862887 -9.479273 -9.782639 -4.444152 -11.107759 21.741540 13.329322 5.864534 -9.863193 0.454756 -16.748506 -22.934431 -11.573469 0.025779 11.025345 0.949230 14.038233 -36.076130 13.801523 20.827983 -1.365238 -16.527309 6.786016 -7.213328 -1.972172 -0.126881 -14.238579 6.509301 11.810847 2.116098 4.576861 5.466321 1.384272 -3.397953 15.839283 31.281398 9.376948 16.395974 19.152727 -9.783368 3.707511 -3.540852 2.316280 -13.695741 6.235186 -2.473617 -2.024564 -10.376609 0.357111 -3.690377 -1.570770 6.879799 7.706997 -15.670146 -8.074113 -14.673587 -19.139098 -9.183155 -4.006782 12.364434 21.099152 -16.245432 20.917299 9.003880 6.684282 4.627744 15.248807 0.339157 19.155010 4.769476 -4.927244 5.702447 -2.802540 -8.463002 2.832886 13.818838 -13.536936 -14.569663 10.737072 -29.397760 -24.778912 14.213409 2.415777 -13.773086 -6.937285 -5.440885 4.477733 3.815948 -6.734374 -13.652073 -8.476157 8.924181 -7.546908 -5.365564 -3.647270 2.735203 1.184561 7.023009 -21.226731 11.916285 11.828813 -3.376332 -5.785764 19.266260 6.348155 13.742529 -0.207441 7.477886 -2.710748 15.599169 6.327191 5.047127 -11.087368 0.134930 -12.870103 -0.712207 4.907952 -10.490646 -12.437606 -9.697233 4.509924 9.360652 0.096861 15.050171 -6.029203 29.851808 10.560448 -4.329949 -15.220108 -18.213033 -18.969858 -15.176523 0.192576 -6.489696 -18.712121 8.671470 11.403457 4.708615 -0.495164 7.168934 -0.476740 7.540272 0.800358 -5.349019 4.774395 -11.316399 9.833641 -13.897284 -8.173952 11.804333 9.712857 16.353956 1.121402 -0.345126 5.669642 -7.035688 -11.184717 9.963598 5.697735 4.484689 20.767430 18.960987 43.010380 -8.368328 -1.826228 0.290205 -8.115704 -3.556471 2.686581 -13.559438 2.675627 5.450543 -3.502662 26.975959 0.779788 -5.792115 9.881972 -0.615209 2.375661 -15.582790 12.383965 -8.789771 5.364291 -4.366203 -5.342918 -13.467507 -4.619309 -16.278678 -13.451068 25.613461 -31.722909 -17.474814 13.135350 -0.212776 13.065395 -26.198260 24.687554 -9.119151 19.406407 -5.645718 -12.107155 2.313790 -0.686262 -7.152271 13.572958 5.856078 -10.655207 2.031485 11.659918 5.404815 6.429499 -0.352469 12.088208 -5.650453 9.879058 -9.269751 11.767440 -1.526195 -3.882721 -10.271073 -2.906975 -2.155777 7.449959 3.100745 -1.780744 5.388647 0.965537 -1.940965 17.498340 5.802385 -8.524290 3.936294 -4.912001 14.567747 -15.648186 -12.998938 -1.985343 11.089059 5.871684 3.252129 -27.484198 -11.694306 -28.337954 -13.356263 -9.062566 8.067272 8.224126 4.892168 -6.034665 -17.388569 -15.556984 30.296432 -0.836585 8.321143 13.581436 6.129620 20.054011 10.197454 9.584752 -5.485969 -4.034409 4.666138 -0.180593 0.218686 -13.357168 11.916958 -16.485197 13.579100 18.589520 -7.835269 14.621114 5.215571 9.184098 -21.692528 19.745777 5.880530 -24.139402 2.980761 24.534850 5.631222 -16.582724 -13.237788 -PE-benchmarks/box-stacking.cpp__min(int, int) = -0.412424 -0.733312 1.172376 0.776973 0.208506 0.143927 0.512441 0.134319 0.210559 0.616499 -0.383314 0.770448 -0.727375 -0.019082 0.096625 0.294164 -0.564760 -0.811733 0.131326 0.066101 -0.291561 -0.454387 -0.070927 0.582450 0.701587 0.251006 -0.596022 -0.222541 -1.041621 -1.090796 -0.481009 -0.107869 0.507910 -0.028404 0.454097 -0.942191 0.350480 0.686188 0.078828 -0.913779 0.396112 -0.245405 0.160508 -0.026042 0.149159 0.608505 0.923192 0.232428 0.350975 0.393871 0.031744 -0.501966 0.154906 0.621812 0.176981 0.481055 0.699019 -0.355246 0.059723 -0.271251 0.108353 -0.840287 0.259306 0.241627 -0.438744 -0.155154 0.113823 -0.192873 -0.381914 0.445254 0.309702 -0.243114 -0.597814 -0.490496 -0.513537 -0.084902 0.346651 0.463825 1.055413 -0.396703 0.918618 0.300885 0.653582 -0.080269 0.226073 -0.109560 0.344258 0.111173 -0.432075 -0.260215 -0.658018 -0.529738 -0.445475 0.900005 -0.099517 0.291011 0.355809 -0.693582 -0.896855 0.241376 -0.123783 -0.244840 -0.658220 0.503140 0.424595 0.638013 0.104179 -0.621657 -0.485236 0.034055 -0.400094 -0.082157 0.068595 -0.161509 -0.473427 0.061912 -0.820941 0.077321 0.332662 -0.524483 -0.357562 0.539581 -0.365623 0.867402 0.138562 0.333010 0.138240 0.566741 0.780959 0.159053 0.270960 -0.452273 -1.018496 -0.160400 0.190616 0.452856 -0.584179 -0.012087 -0.019841 0.131349 -0.123823 0.058761 -0.323580 1.074432 0.849589 -0.633412 -0.877728 -0.641988 -0.300736 -0.353829 0.165012 -0.321515 0.009299 0.029589 0.351295 0.031243 -0.033618 1.298341 -0.514203 0.389586 0.196746 -0.299990 0.079644 -0.083604 0.405540 -0.545163 -0.302323 0.397046 0.602608 0.257245 -0.003908 -0.117690 0.295153 -0.561927 -0.580963 0.536304 0.159620 0.286941 0.567742 0.434162 0.979080 -0.524582 -0.273994 0.148590 0.008260 -0.340258 0.249994 -0.732476 0.580051 -0.054981 0.231766 0.768457 0.114483 -0.504811 0.724408 -0.038971 0.105370 -0.558785 0.438007 -0.448079 0.306429 -0.210119 -0.293461 -0.404864 -0.149592 -0.314530 -0.069773 0.956058 0.109883 -1.159037 0.155683 -0.208359 0.651461 -1.359350 0.696723 -0.294945 0.427503 -0.249285 -0.060098 0.016432 0.024053 0.108936 0.104815 0.182852 -0.077203 0.302424 0.573274 0.148429 0.042696 0.226319 0.391032 0.173494 0.286379 0.086711 0.047288 -0.112431 -0.019251 -0.173544 -0.001625 0.175222 0.500148 -0.312348 0.164947 0.491117 -0.143640 0.496915 0.544567 0.319341 -0.344695 0.068631 -0.105457 1.126214 -0.527652 -0.481206 -0.256343 0.406538 -0.043145 0.300928 -0.922291 -0.835728 -0.047222 -1.484550 -0.434920 0.090775 0.341967 0.105042 -0.198989 -0.621061 -0.393405 0.531514 0.300283 1.245576 0.266423 -0.059689 0.705124 0.333858 -0.203559 -0.371463 -0.052440 0.159645 -0.197619 -0.177496 -0.367104 0.104827 -0.824929 0.411261 0.719449 -0.537992 0.300136 -0.257901 0.561428 -0.933663 1.052552 0.393980 -0.845604 0.275189 0.309466 0.897806 -0.615964 -0.549620 -PE-benchmarks/shortest-common-supersequence.cpp__main = 0.818561 -0.710190 2.533997 1.653513 -1.296270 0.032332 -0.186148 -0.563935 0.464656 -1.443101 -0.913148 0.826792 -0.752394 0.405871 -0.707369 0.120894 -2.702446 -0.524504 -0.395164 -0.524010 -0.323022 -0.161444 0.372862 1.010244 1.122888 2.663418 -0.622275 -0.265699 -0.637273 0.647512 1.018046 -0.295091 0.743777 1.987034 0.719030 -2.281351 0.663015 0.627767 -0.432045 -1.340938 0.872860 -0.699045 -0.076873 -1.449546 -0.625997 0.058693 0.300352 1.805564 0.482567 0.032248 -1.604398 0.073902 0.751902 1.904739 0.029455 0.383323 1.231339 -0.435998 0.141518 -0.648794 0.312046 -0.197363 0.079528 0.068404 -0.079868 -1.440969 -0.411929 -1.383066 -0.272116 0.874385 0.261321 0.470462 -1.049259 -0.816995 -1.396501 0.063500 -1.323977 2.301724 1.413943 -1.603014 0.561186 0.062899 0.266027 0.127651 0.116006 0.564534 0.457441 0.569544 0.308120 0.023251 -1.539767 -0.614041 0.508885 -1.628498 -0.621555 -2.620309 0.716559 -2.961804 -1.108615 0.181293 0.862654 -0.900241 1.218147 -0.081524 0.105070 0.619343 -0.359306 -0.254494 0.703800 0.091645 0.140323 0.030705 -0.083764 1.084109 -0.067085 -0.492909 -1.602686 1.168617 0.019012 0.174892 1.242851 0.966768 0.206827 0.059212 -0.123705 0.388613 -0.514179 1.808568 0.247925 -0.052426 0.011481 0.553108 1.743299 1.072053 0.739997 0.945895 -1.244964 -0.509952 -0.254993 0.344999 -0.510801 -1.007407 -0.190559 0.408283 -0.261635 -1.136143 -1.102073 -1.086442 -1.759043 -1.762530 -0.378659 -0.356226 -0.882645 1.406014 0.728192 1.530951 0.793156 0.448822 -0.722595 -0.335874 0.192335 -0.074691 0.606157 1.065790 0.636728 -0.685426 -0.382699 0.500043 -0.719422 0.730371 -0.002104 0.235531 0.277095 -1.084754 0.121761 1.129881 1.281673 0.273313 1.144763 1.319884 -0.751989 -0.279343 -0.329478 0.706655 -0.674199 -0.627076 0.606422 -0.910724 0.941619 0.170556 0.481602 0.951483 0.011267 0.206452 0.579346 0.003198 0.169017 -0.441261 -0.336010 -0.417702 -0.555053 -0.964932 1.017271 -0.612665 -0.336077 -1.081955 -1.257996 1.610699 -2.355438 -0.162706 1.063625 -0.031477 1.284419 -0.931231 0.548328 -0.745507 1.755306 0.703063 -0.478557 0.250039 -1.964975 -1.356005 0.019548 0.354056 -0.087889 -0.379023 0.380778 0.881043 -0.148117 -0.028720 1.039655 -0.620872 1.593127 -0.479476 0.452828 -0.384744 -0.529840 0.245870 0.025305 -0.630072 -0.313708 0.699601 1.724279 0.025342 2.084050 1.284417 0.388461 1.213903 -0.831376 0.071689 -0.621837 0.609172 -0.799118 -0.851945 0.275401 1.151603 -0.047067 0.349823 -1.694238 -2.435346 -2.647956 -0.646835 -0.247271 -1.778098 0.274539 -0.294191 -0.405730 -0.978446 -1.120156 -0.043252 -0.221112 0.594436 0.901377 -0.207300 1.129737 0.997901 -0.826572 -0.071523 1.063010 1.238552 0.466912 0.534109 -2.288114 1.312531 -0.652055 -0.184792 2.659256 -1.100332 0.782268 -0.220610 1.437004 -1.086030 1.699082 0.403741 -2.161269 0.346338 1.067060 0.125751 1.188716 -0.982190 -PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 0.257267 -0.303793 0.963445 0.689449 -0.279384 -0.064943 0.173832 -0.270030 0.414871 -0.250016 -0.325759 0.186877 -0.483137 0.299463 -0.325886 0.465623 -0.957476 -0.430546 -0.038788 -0.165945 -0.081692 -0.220059 0.530866 0.006470 0.516698 0.683318 -0.290745 -0.223247 -0.276933 -0.158972 0.502333 -0.331838 0.331134 0.589508 -0.018181 -0.806925 0.470386 0.188453 -0.286252 -0.499311 0.387567 -0.297479 0.023855 -0.642385 -0.087057 0.145574 0.170593 0.673247 0.386516 0.260199 -0.218569 -0.029908 0.226834 0.658304 -0.361176 0.165744 0.312949 -0.051709 -0.069119 -0.167274 0.202599 0.023005 0.128572 0.319450 -0.045731 -0.559181 -0.320560 -0.609644 -0.388346 0.418267 -0.089703 0.414512 -0.623298 -0.043984 -0.328675 0.042589 -0.833012 0.716143 0.785481 -0.598324 0.337012 0.051938 0.182617 -0.107549 -0.127857 0.252207 0.042851 0.245902 -0.042008 -0.110865 -0.367862 -0.206686 0.160429 -0.443606 -0.065248 -0.927916 0.311915 -0.610943 -0.435426 0.045386 0.319556 -0.152710 0.268124 0.136283 0.086298 0.390719 -0.288469 -0.311465 0.249104 -0.204855 0.201575 -0.030317 0.045121 0.202601 -0.228972 -0.279709 -0.739567 0.088355 -0.155882 -0.275720 0.381336 0.263202 -0.064825 0.004351 -0.020157 0.121395 -0.218105 0.805222 0.126534 0.267033 0.169910 0.233732 0.136831 0.341267 0.536621 0.577771 -0.327560 0.039653 -0.278710 0.074337 -0.362264 -0.467192 0.031867 0.082244 0.217974 -0.531091 -0.532376 -0.249334 -0.394649 -0.732383 0.133589 -0.395665 -0.011476 0.450134 0.395733 0.342619 0.545936 0.735961 -0.530392 0.055614 -0.063813 -0.025632 0.393126 0.415720 0.362808 -0.201944 -0.228861 0.282790 -0.057883 0.135608 0.064407 -0.037462 0.183457 -0.641933 0.052263 0.412266 0.385918 -0.199117 0.294501 0.249751 -0.367872 -0.066026 -0.007110 0.505145 -0.028953 -0.152189 0.278116 -0.575004 0.534689 -0.034981 0.164030 0.083658 0.058233 -0.171209 0.283640 -0.199142 0.091768 -0.247982 -0.158853 -0.195667 -0.148663 -0.476039 0.516754 -0.089572 -0.244788 -0.069847 -0.118715 0.591283 -0.457560 -0.028829 0.323123 -0.034232 0.400984 -0.420240 0.513236 -0.381027 0.527760 0.129478 -0.084995 0.129451 -0.444751 -0.380238 -0.239101 0.220418 0.168773 -0.012677 0.362588 0.395557 -0.143830 0.097248 0.545293 -0.091483 0.592298 0.013840 0.222386 -0.147524 -0.227125 0.248111 -0.073138 -0.212501 -0.233576 0.202608 0.934741 0.163960 0.590350 0.789702 -0.011791 0.703120 -0.392182 0.156216 -0.137647 0.480236 -0.252024 -0.169858 0.105082 0.372939 -0.284565 0.336238 -0.593085 -1.082194 -0.692880 -0.392828 -0.136122 -0.502342 0.236059 -0.290882 0.015680 -0.373663 -0.346042 0.097765 -0.205849 0.308701 0.348936 -0.061563 0.366204 0.449977 -0.465777 -0.179317 0.251105 0.485344 0.185191 0.180676 -0.694024 0.421676 -0.492560 -0.161172 0.874611 -0.473068 0.004549 -0.236758 0.773712 -0.331939 0.770856 0.222774 -0.483002 0.512262 0.396165 0.352064 0.573543 -0.341074 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -3.860311 -5.684710 9.721819 6.581705 1.345561 2.353007 3.818350 -1.979158 3.739127 5.026952 -2.072552 4.923141 -5.476390 -0.410933 0.884274 2.303994 -5.277022 -6.025027 0.681418 -2.504029 -2.846024 -4.014448 -1.250159 4.251645 4.283844 -1.386472 -3.793588 -1.311277 -8.367901 -7.131223 -1.357786 -1.585215 3.939300 -2.293494 2.859169 -12.930164 4.810339 5.503693 -0.525574 -7.063196 2.404155 -3.668007 1.222034 0.289175 -0.393827 2.632285 5.143992 2.075899 3.388403 2.555026 1.781768 -2.052266 1.054149 10.215389 -0.818258 4.874359 4.889923 -3.067459 -0.908209 0.131128 0.900814 -5.024036 3.783176 2.158002 -3.334476 -2.879589 1.511153 -1.602607 -4.446152 3.280993 3.139740 -3.437319 -3.394963 -2.684057 -4.481748 -2.712985 2.289661 3.362469 8.915645 -3.829594 8.101244 2.520469 4.960342 0.857582 4.336349 -0.205557 6.349808 0.823209 -4.299229 -1.938483 -6.225111 -2.529010 -1.554249 5.417441 -1.178501 -1.257742 2.461990 -4.995118 -7.953520 3.247906 -0.128353 -1.866557 -6.864249 0.846132 4.323081 3.564029 -1.448700 -6.398099 -4.686930 2.143871 -4.536593 -1.636766 0.230388 -3.381127 -2.574199 -1.008720 -6.824302 0.630975 3.182470 -3.322732 -4.960822 6.398522 -3.319615 4.730065 0.696651 3.000691 -0.403439 3.919522 3.053820 1.803049 1.353932 -3.794714 -9.441734 -1.160534 1.166814 2.935587 -3.049859 -1.039928 -0.270574 2.002803 -1.970208 2.684542 -1.765929 9.087949 5.407042 -3.606224 -5.395637 -4.769380 -0.887907 -4.392364 1.943546 -3.309790 -2.430882 -0.099581 4.467518 1.725276 1.064023 7.389683 -3.313677 5.336749 0.051472 -1.374033 2.570584 -2.021015 4.293082 -4.777088 -2.755061 2.493261 4.929401 2.409149 -0.038736 -1.585027 1.800094 -4.974391 -4.894185 1.532160 1.314547 1.753478 5.414126 4.385397 13.492149 -7.348741 -0.295886 1.678165 -0.808599 -1.255948 0.833648 -5.752195 2.506538 1.384354 -0.166061 8.131027 0.505713 -5.497532 2.871495 0.428352 1.141323 -4.832990 3.180104 -3.637263 0.912078 -1.206269 -2.521080 -4.919455 -2.473814 -4.328407 -1.953420 8.173719 -2.473483 -9.674272 4.149743 -2.933948 4.778994 -12.039096 8.739088 -3.907942 3.929550 -3.783389 -1.586401 -0.939491 2.869537 -1.633813 3.881259 2.213835 -2.551757 4.125988 6.450324 2.323597 3.135061 0.601954 4.114794 0.139566 1.895669 -1.523234 3.632724 -1.552110 -1.234373 -1.950168 -1.565960 1.875597 3.257541 -0.485273 0.423784 4.710201 -1.558189 2.855634 6.172135 2.358450 -2.994264 2.161960 -1.113677 7.008816 -3.612506 -3.163241 -1.119592 2.106818 0.246519 2.708257 -8.666329 -5.858302 -2.476355 -9.520458 -1.885906 2.767855 1.593648 1.357811 -0.112765 -7.996931 -2.827538 5.225220 0.690757 8.017322 3.377143 1.456977 5.903173 4.283646 -0.633346 -3.404706 -0.792330 -0.027393 -2.356041 -2.287776 -3.602159 3.074921 -6.571807 5.061143 5.240479 -2.932630 2.001017 -0.979805 3.526729 -6.815273 8.136016 3.344806 -5.475522 2.510273 4.360461 7.969551 -4.990331 -4.380283 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 0.232879 -0.666037 1.886212 1.267822 -0.467057 -0.028779 0.546590 -0.439900 0.504090 -0.571857 -0.466928 0.563930 -0.920092 0.382856 -0.729955 0.503420 -1.642785 -0.836913 -0.205926 -0.452463 -0.181195 -0.265596 0.690866 0.342580 1.027848 0.923726 -0.610470 -0.638657 -1.017137 -0.090895 0.790011 -0.343813 0.697000 0.619641 -0.006475 -2.098620 0.717973 0.687128 -0.470168 -1.028494 0.893859 -0.670845 -0.049020 -1.027187 -0.372154 0.091646 0.316723 1.014740 0.561247 0.346699 -0.505170 0.195368 0.281320 1.732917 -0.507845 0.434574 0.797163 -0.125332 -0.186232 -0.253965 0.261791 -0.119530 0.254860 0.223774 -0.146486 -1.027203 -0.427689 -1.067874 -0.613888 0.618716 0.112972 0.383774 -0.851161 -0.150758 -0.985409 -0.057909 -0.637711 1.266493 1.276325 -1.202710 0.746559 -0.044621 0.233460 -0.066729 -0.062778 0.445788 0.077883 0.378831 0.144063 -0.371432 -1.126386 -0.166102 0.153681 -0.521276 -0.343270 -1.854142 0.787426 -1.213344 -0.963093 0.098204 0.546120 -0.619185 0.249028 0.121341 0.015644 0.772493 -0.539944 -0.555816 0.061733 -0.002227 0.263137 -0.100967 0.127220 0.316821 -0.329734 -0.777872 -1.352349 0.548938 -0.050352 -0.280617 0.314424 0.684598 -0.317908 0.140029 -0.004616 0.392630 -0.512749 1.342622 0.171979 0.221833 0.293666 0.214762 0.053733 0.167418 0.820038 1.424086 -0.801659 -0.099297 -0.484441 0.236779 -0.476376 -0.645410 0.074841 0.449420 0.290277 -0.998741 -0.904429 -0.626959 -0.573503 -1.235915 -0.006613 -0.567851 -0.212680 0.912175 0.697003 0.722263 0.744493 1.428895 -0.688194 0.292043 0.107339 -0.337873 0.627984 0.417201 0.632282 -0.501395 -0.565175 0.442650 -0.192781 0.589956 -0.079600 0.287352 0.290121 -1.130431 -0.234527 0.439596 0.710781 -0.247925 0.729638 0.815649 -0.326306 -0.622356 -0.097414 0.697698 -0.466140 -0.274177 0.429184 -0.994346 0.656530 0.133139 -0.057384 0.699979 0.125537 -0.478400 0.650887 -0.266278 0.138748 -0.504371 -0.086180 -0.449813 -0.357329 -0.818100 0.450676 -0.286552 -0.423639 -0.552894 -0.694065 1.251810 -1.092527 -0.544162 0.556787 0.069163 0.699574 -1.360411 1.086907 -0.648813 1.008196 0.216674 -0.137633 0.198681 -0.495416 -0.925834 -0.101230 0.336044 -0.140234 0.142325 0.978723 0.676044 -0.125551 -0.033945 1.013938 -0.275971 1.100482 -0.274409 0.515159 -0.363773 -0.749031 0.304240 -0.086836 -0.353969 -0.285811 0.493200 1.513253 0.271166 1.137457 1.196285 0.445674 1.280972 -0.636725 0.253051 -0.304676 0.920359 -0.427934 -0.445793 0.179535 0.789103 -0.199988 0.569472 -1.271690 -2.021614 -1.316202 -1.231321 0.180344 -0.925723 0.325393 -0.432532 -0.151728 -1.140959 -0.776050 -0.034896 -0.328569 0.930882 0.842766 -0.021654 0.812877 0.775660 -0.875629 -0.082888 0.664642 1.016899 0.331811 0.047829 -1.265418 0.778764 -0.911759 -0.100238 1.709339 -0.719467 0.410110 -0.337057 1.299960 -0.784969 1.583730 0.322640 -1.213654 0.787557 0.867902 0.635639 0.751174 -0.639055 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 0.344078 -0.321787 1.248789 0.835616 -0.545086 -0.061527 0.115763 -0.370778 0.362690 -0.800891 -0.384330 0.221430 -0.565909 0.303336 -0.489126 0.226730 -1.348244 -0.490432 -0.226917 -0.316314 -0.108968 -0.161731 0.470014 0.253380 0.602373 1.029714 -0.370855 -0.168190 -0.486247 0.260793 0.723297 -0.229276 0.409755 0.901902 0.132907 -1.191266 0.494632 0.332401 -0.318598 -0.603866 0.518601 -0.511060 -0.054982 -0.965873 -0.276161 0.082861 0.071904 0.868921 0.386095 0.060980 -0.603472 0.103793 0.030593 0.884618 -0.354831 0.178960 0.476551 -0.073486 -0.072088 -0.239069 0.157013 0.056970 0.086036 0.187622 -0.172821 -0.753197 -0.273099 -0.869641 -0.315429 0.519210 0.072949 0.383876 -0.629821 -0.180729 -0.730394 0.026309 -0.607856 1.020358 0.789617 -0.857607 0.308752 -0.071833 0.154261 -0.019722 -0.033159 0.324452 0.176520 0.260427 0.149841 -0.109620 -0.851463 -0.233225 0.203087 -0.697254 -0.217959 -1.291071 0.413692 -1.164732 -0.550226 -0.041430 0.437278 -0.407812 0.380971 0.145786 0.016032 0.406937 -0.264679 -0.245984 0.356562 -0.005010 0.193996 0.034011 0.073646 0.472570 -0.169610 -0.603097 -0.953537 0.445608 -0.111823 -0.045627 0.558108 0.454363 -0.204096 -0.103127 -0.018716 0.130255 -0.390407 1.070839 -0.001863 0.041447 0.092421 0.203362 0.469938 0.290439 0.546183 0.971887 -0.540884 -0.130636 -0.271442 0.127267 -0.467785 -0.693205 -0.001096 0.074362 -0.045439 -0.721915 -0.595009 -0.396414 -0.674537 -0.948265 -0.073278 -0.354278 -0.216695 0.771279 0.455829 0.767260 0.586174 0.838208 -0.481078 0.024651 0.017288 -0.154919 0.451237 0.506124 0.408081 -0.288953 -0.297724 0.354708 -0.450872 0.395920 0.013851 0.130618 0.168726 -0.795084 -0.075270 0.481278 0.562021 -0.033271 0.497028 0.583866 -0.822610 -0.274636 0.008012 0.545356 -0.266985 -0.233061 0.375177 -0.540493 0.510053 0.081786 0.067882 0.323401 0.036310 -0.131286 0.268045 -0.117236 0.162351 -0.329891 -0.289688 -0.199803 -0.180590 -0.678089 0.565149 -0.177457 -0.295658 -0.345518 -0.583575 0.777289 -0.843534 -0.241804 0.495216 0.082616 0.715465 -0.636690 0.254310 -0.424463 0.890569 0.310477 -0.048727 0.192084 -0.791190 -0.692065 -0.095077 0.196273 0.024289 -0.127778 0.403641 0.517504 -0.132819 -0.006082 0.673532 -0.230205 0.847349 -0.193433 0.273144 -0.230034 -0.421310 0.349546 -0.051526 -0.374781 -0.251971 0.419468 1.209286 0.161861 1.115237 0.933534 0.142329 0.846689 -0.422206 0.008717 -0.229470 0.383160 -0.293737 -0.326761 0.195894 0.583756 -0.182130 0.230797 -0.795693 -1.511408 -1.117722 -0.666443 0.069809 -0.903976 0.182071 -0.254523 -0.106981 -0.557988 -0.487887 -0.042156 -0.244126 0.728596 0.459266 -0.106362 0.494194 0.594975 -0.727985 -0.066990 0.679747 0.801895 0.270801 0.265745 -1.170445 0.705386 -0.516330 -0.187828 1.346726 -0.621305 0.280439 -0.293269 1.051109 -0.473010 0.985311 0.190261 -0.933447 0.468125 0.550232 0.192025 0.938386 -0.433646 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.307216 -0.337858 1.101550 0.769782 -0.404582 -0.048235 0.151237 -0.296384 0.334212 -0.520844 -0.348347 0.241532 -0.512600 0.283601 -0.410890 0.308418 -1.108687 -0.449038 -0.154207 -0.228339 -0.100939 -0.165174 0.441828 0.178881 0.560291 0.849962 -0.331839 -0.202746 -0.422920 0.068338 0.558025 -0.225623 0.365581 0.720591 0.092265 -0.970528 0.444594 0.313399 -0.276104 -0.575276 0.446963 -0.386861 -0.039211 -0.769525 -0.178185 0.114543 0.120264 0.748524 0.333127 0.159270 -0.431401 0.057796 0.139769 0.772558 -0.281428 0.190323 0.445195 -0.045742 -0.039035 -0.215140 0.177601 0.025488 0.082958 0.196626 -0.090958 -0.631371 -0.303505 -0.715328 -0.300245 0.439969 0.021870 0.342103 -0.602532 -0.159180 -0.545092 0.039317 -0.722234 0.860143 0.750970 -0.747160 0.320465 -0.003432 0.159441 -0.050830 -0.061503 0.271189 0.085837 0.258229 0.090188 -0.092082 -0.627780 -0.227126 0.168474 -0.566376 -0.201323 -1.108713 0.391617 -0.893113 -0.499238 0.019321 0.364294 -0.318381 0.346055 0.141744 0.010720 0.398868 -0.262761 -0.248556 0.272199 -0.063620 0.217783 -0.009224 0.056218 0.376982 -0.177541 -0.432236 -0.837162 0.317283 -0.085860 -0.133159 0.464639 0.362851 -0.120573 -0.019163 -0.032179 0.107831 -0.295167 0.928223 0.088290 0.122944 0.114036 0.210082 0.291185 0.319374 0.521859 0.757590 -0.459949 -0.035354 -0.235388 0.115154 -0.354898 -0.529881 0.000301 0.093318 0.064968 -0.611728 -0.565105 -0.364712 -0.550399 -0.786433 0.000714 -0.345842 -0.124776 0.612112 0.409104 0.569565 0.504834 0.770882 -0.479238 0.017852 0.009628 -0.105323 0.365161 0.445334 0.350749 -0.250049 -0.280957 0.327741 -0.251695 0.285905 0.040642 0.085059 0.177726 -0.678234 -0.023525 0.444288 0.464897 -0.116986 0.428844 0.450913 -0.597939 -0.161528 -0.031194 0.468880 -0.192475 -0.194476 0.310001 -0.545560 0.492312 0.021817 0.114775 0.251324 0.043211 -0.117871 0.308932 -0.158221 0.112438 -0.277947 -0.187305 -0.206292 -0.179657 -0.568899 0.525332 -0.128412 -0.244080 -0.233570 -0.382520 0.694763 -0.659264 -0.145455 0.371425 0.046071 0.523752 -0.531108 0.368891 -0.371586 0.698021 0.252147 -0.072974 0.169107 -0.613304 -0.534242 -0.163662 0.205858 0.057147 -0.095033 0.380480 0.421224 -0.166711 0.039162 0.581012 -0.186824 0.707083 -0.122665 0.241782 -0.185348 -0.331716 0.269270 -0.052573 -0.284770 -0.237013 0.290417 1.048873 0.128014 0.857042 0.800619 0.079421 0.747347 -0.399368 0.072166 -0.173785 0.423578 -0.291117 -0.256616 0.134145 0.476887 -0.194249 0.256328 -0.686615 -1.252525 -0.907801 -0.541502 -0.013635 -0.709381 0.205813 -0.265967 -0.094965 -0.462473 -0.456889 0.025722 -0.215365 0.496362 0.417186 -0.078639 0.446020 0.491862 -0.570037 -0.070964 0.472941 0.642301 0.231432 0.200133 -0.891045 0.543574 -0.476072 -0.175209 1.113084 -0.516004 0.210736 -0.247203 0.893005 -0.409119 0.872690 0.192126 -0.751719 0.434246 0.502304 0.255463 0.693279 -0.389604 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -1.753803 -2.967570 3.893952 2.546811 0.443269 1.306325 2.015183 0.134207 0.779993 1.341954 -0.793581 2.659532 -2.408138 -0.559450 -0.431598 -0.017363 -1.781087 -2.479496 0.394616 -0.456461 -0.613221 -1.481925 -1.049227 2.925730 1.709474 -0.203354 -1.399610 -1.131151 -4.574438 -1.552286 -0.921592 -0.227268 1.698688 -1.535832 1.275540 -5.008719 1.143313 2.972924 0.095051 -3.551825 1.259327 -1.410274 0.752670 0.314098 -0.827321 0.814906 2.265080 0.835378 0.627784 0.757304 -0.211806 -0.539644 0.917417 4.625655 0.583398 2.141543 2.717086 -0.761956 0.089260 -0.627854 0.365831 -2.308566 1.074286 0.089400 -1.211566 -0.776695 0.024826 -0.490298 -1.359232 0.636652 1.335014 -0.979924 -1.197947 -0.897665 -2.917406 -1.072293 1.902584 1.446947 3.433259 -1.891364 3.513357 0.895664 2.047851 0.602508 1.763988 0.254389 1.401621 0.455914 -1.222193 -0.399596 -3.316956 0.042159 -0.911523 1.475188 -1.147791 -1.987467 1.339092 -2.726548 -3.418122 1.488023 -0.413869 -1.285534 -1.250128 0.130443 1.170110 1.950242 -1.190060 -2.401630 -1.936151 1.357248 -1.237881 -0.677189 0.704376 -0.603838 -0.444419 -1.131562 -2.332162 0.855113 1.734505 -1.262525 -1.339795 2.826326 -1.225134 2.803331 0.289591 1.089503 -0.161338 1.611676 2.062157 -0.060839 -0.204632 -1.962461 -2.639624 -0.858592 -0.123852 1.765630 -2.073268 -0.626377 0.304601 0.971802 0.627781 0.964401 -0.338014 2.896279 1.270753 -1.564649 -1.650025 -2.532906 -0.936184 -1.646427 0.057875 -0.699105 -1.201213 0.670467 1.603627 0.595976 -0.119360 2.846238 -0.483021 1.564241 0.610186 -1.116842 0.356384 -0.697983 1.260186 -1.793336 -1.540258 0.959104 1.675162 1.844085 -0.239999 0.037867 0.567867 -1.306002 -1.399226 0.171777 1.035642 0.679979 2.886140 2.162152 3.587257 -2.385651 -0.919779 -0.055570 -1.003829 -0.385975 -0.079710 -2.400146 0.868124 0.677306 -0.635111 3.446750 0.016019 -1.690351 2.332490 0.106537 0.488328 -2.131858 1.661598 -1.745409 -0.187638 -0.936340 -1.010408 -2.007500 -0.803324 -2.695923 -1.619745 3.508067 -1.809446 -3.336267 0.521101 0.074321 1.727424 -4.686128 3.186032 -1.288958 2.431645 -0.334626 -0.606715 0.040232 0.871375 -0.514784 0.907349 0.897155 -1.776543 1.599180 1.962550 0.795093 0.580096 0.441187 1.498360 -0.085785 0.581441 -1.187775 0.954112 -0.729944 -1.237825 -0.365630 -0.473487 1.035434 1.598755 -0.019149 0.178934 1.350870 -0.175146 0.863981 2.743520 0.649447 -1.114423 0.133080 -0.719728 3.279799 -1.674788 -1.279842 -1.328857 1.518742 0.871077 0.872217 -3.695425 -2.548770 -1.789741 -4.052527 -0.257697 0.170735 0.225619 0.778531 -0.205600 -3.743456 -1.737966 1.481857 0.115117 3.084011 1.772714 0.509029 2.932433 1.317410 -0.227508 -0.851882 0.542384 0.497597 -0.915926 -0.717389 -1.352477 0.702128 -2.745797 1.934994 2.407301 -1.026119 1.422458 -0.212112 0.893753 -2.966939 3.805406 1.567486 -3.160170 0.503696 1.823335 2.983228 -2.119292 -1.895110 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 0.950926 -0.503618 2.808947 1.841275 -1.939535 -0.163921 -0.347715 -0.841467 0.274366 -3.037945 -0.825872 0.508321 -0.947434 0.680264 -0.904939 -0.239148 -3.798489 -0.789681 -0.913862 -0.712835 -0.365878 -0.084754 0.537608 1.180799 0.965902 3.293454 -0.954463 0.265945 -0.654711 1.455603 1.920250 -0.116509 0.961099 2.874368 0.820809 -3.733546 0.938409 0.621589 -0.618456 -1.302262 1.046169 -1.289113 -0.412018 -2.774810 -1.427594 0.016358 -0.211886 2.220249 0.438749 -0.572152 -2.503396 0.538818 -0.294534 2.201721 -0.295792 0.185829 1.458038 -0.252110 -0.032298 -0.841834 0.245776 0.311262 0.012312 0.204862 -0.546011 -1.710375 -0.251431 -2.341624 -0.314046 1.346013 0.707935 0.781581 -1.094215 -0.755943 -2.314620 0.138746 -0.237041 2.851961 1.404588 -2.212100 0.227879 -0.444816 0.258643 0.413740 0.243627 0.816570 0.959539 0.587056 0.765941 0.038307 -2.482143 -0.957236 0.694834 -2.194328 -0.650263 -3.509497 0.636547 -3.774206 -0.984427 -0.172544 1.017240 -1.263437 0.963140 -0.217683 0.161974 0.684949 -0.252814 -0.068798 0.888144 0.495998 0.056199 0.288424 0.221666 2.032711 -0.051109 -1.677227 -2.259651 1.739721 -0.003742 0.701105 1.895482 1.234364 -0.546159 -0.543272 -0.124625 -0.017163 -1.163918 2.646486 -0.364898 -0.626098 -0.101128 0.374758 2.449376 0.526784 0.969609 2.486768 -1.337359 -1.164612 -0.363165 0.469754 -1.165445 -1.934779 -0.020783 -0.013787 -0.698342 -1.456585 -1.316525 -1.342030 -2.193985 -2.414742 -0.761630 -0.544668 -0.958594 2.763519 0.967953 2.386660 1.156948 1.125780 -0.849581 0.055811 0.028300 -0.344350 0.763347 1.315257 0.638222 -0.578866 -0.659433 0.873924 -1.992761 1.546860 -0.039155 0.304025 0.250224 -1.469945 -0.720555 1.361857 1.674142 0.635603 1.167597 1.825998 -2.323662 -0.778336 0.061642 1.052703 -0.943681 -0.748337 0.861862 -0.647721 0.813044 0.404178 -0.088362 1.138702 -0.103001 -0.177428 0.224404 0.245964 0.399490 -0.598896 -1.019247 -0.140367 -0.163520 -1.764689 1.197966 -0.582206 -0.536960 -1.364590 -2.237225 1.839776 -3.034719 -0.991044 1.516248 0.117367 2.349454 -1.580405 -0.484056 -0.699697 2.645177 1.041194 -0.216910 0.531688 -2.965623 -2.056006 0.395701 0.283067 -0.211560 -1.054706 0.562663 1.272594 -0.155007 -0.283862 1.339957 -0.525885 2.012883 -0.912338 0.525224 -0.713306 -0.892507 0.756888 -0.015901 -0.935856 -0.425072 1.436703 2.623582 0.129427 3.541727 2.107458 0.643796 1.636054 -0.867620 -0.641068 -0.642344 0.260510 -0.691667 -0.922276 0.369108 1.698674 -0.193585 0.059332 -1.718352 -3.525166 -3.778468 -1.532729 0.157265 -2.355588 0.243932 -0.327174 -0.473095 -1.183662 -1.004909 -0.082024 -0.550364 2.182972 1.151581 -0.463172 1.231073 1.494899 -1.868722 -0.013405 2.364847 2.075904 0.574664 1.079127 -3.604562 2.098136 -0.807267 -0.364184 3.584598 -1.541491 1.232345 -0.750370 2.813986 -0.983716 2.271899 0.375947 -2.909591 0.227380 1.273877 -0.472098 2.790662 -1.038704 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -0.273087 -1.329183 1.861783 1.493743 0.558372 0.353840 0.859546 -0.085564 0.609693 1.220923 -0.724399 1.199357 -1.196811 -0.174758 0.805658 0.492409 -0.960614 -1.449572 0.315164 0.206400 -0.211814 -1.074194 -0.078463 1.150646 1.017924 -0.063477 -0.804229 -0.172744 -1.830819 -1.592137 -0.634420 -0.257092 0.872849 0.468194 0.961788 -1.035606 0.764388 1.004987 0.281502 -1.721323 0.346920 -0.504998 0.211700 -0.105280 0.565058 1.182189 1.437841 0.490437 0.612682 0.791894 -0.077713 -1.027710 0.172574 0.411789 0.321025 0.821901 1.167636 -0.692019 0.355182 -0.354917 0.285281 -1.302433 0.692306 0.693617 -0.771715 -0.246776 0.177958 -0.314194 -0.847916 0.900953 0.534265 -0.346911 -1.173737 -0.720170 -0.782030 -0.042257 0.494275 1.069757 1.861857 -0.677686 1.652637 0.676409 1.344235 -0.266565 0.623027 -0.214702 0.906208 0.249159 -1.029977 -0.501987 -1.918618 -1.652094 -0.773152 0.847200 -0.026026 1.199110 0.216972 -1.313188 -1.510730 0.499369 -0.297606 -0.300321 -1.354314 0.956064 0.984283 1.041875 0.485700 -1.126118 -0.661094 0.214760 -0.933868 -0.276541 -0.105264 -0.172653 -0.947949 0.086483 -1.424704 -0.134270 0.705263 -0.981983 -0.538045 1.020625 -0.952181 1.371025 0.127551 0.200558 0.314553 0.812128 1.171688 0.404073 1.270769 -1.345029 -2.026277 0.226940 0.230131 0.626033 -0.732806 0.376035 0.216553 0.343043 -0.301259 0.338907 -0.390524 1.795922 0.977198 -1.086660 -1.523959 -1.133784 -0.457383 -0.414529 0.620906 -0.662005 0.247470 0.123867 0.799778 0.279342 -0.029110 1.903747 -1.104130 0.667278 0.235688 -0.073469 0.047070 -0.040455 0.641844 -0.956111 -0.447596 0.826981 1.153883 -0.001361 0.172986 -0.434911 0.610668 -1.029246 -1.269098 0.820685 0.045556 0.612571 1.044202 0.643335 1.260469 -0.917225 -0.345089 0.344328 0.323585 -0.573551 0.268426 -1.296030 1.251751 -0.296493 0.857383 1.294839 0.060911 -0.899447 0.826571 0.103827 0.133205 -0.872454 0.550310 -0.806775 0.509230 -0.328042 -0.531145 -0.684833 -0.607800 -0.364103 0.346562 1.633916 1.077873 -2.078417 0.519552 -1.056284 1.125043 -2.372759 1.180334 -0.625041 0.553386 -0.342610 -0.272952 -0.149746 -0.072791 0.069015 0.007608 0.497460 -0.160987 0.748273 0.803039 0.262328 0.108664 0.475355 0.403163 0.383426 0.334620 0.042287 0.161655 -0.288385 0.322335 -0.500224 -0.235865 0.727961 0.809615 -0.832637 0.282191 0.909855 -0.278822 1.023670 0.929074 0.360932 -0.707222 0.228646 -0.143653 1.734291 -0.896905 -0.770554 -0.446376 0.158980 -0.184207 0.547539 -1.479159 -1.289991 0.045339 -2.263185 -1.034064 -0.038196 0.683873 0.216641 -0.188364 -1.211665 -0.514283 0.219788 0.616338 1.475992 0.462764 -0.145576 1.172275 0.617972 -0.219716 -0.722008 -0.225405 0.049718 -0.723004 -0.494156 -0.559794 0.216351 -1.349040 0.884607 1.200836 -0.784390 0.348170 -0.689914 0.821785 -1.474667 1.562486 0.820912 -1.312385 0.223476 0.392239 1.197607 -1.129815 -1.032830 -PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.001424 -0.501978 0.971821 0.691239 -0.308570 0.063976 0.322155 -0.171145 0.346986 -0.593497 -0.276444 0.234636 -0.713617 0.213839 -0.362053 0.047016 -1.018570 -0.615460 -0.102351 -0.140181 -0.087588 -0.344408 0.337432 0.384354 0.432202 0.705930 -0.353758 -0.264757 -0.782652 0.415012 0.706218 -0.191099 0.480863 0.758011 0.050321 -1.408123 0.281018 0.360390 -0.210330 -0.680227 0.413223 -0.587570 0.078023 -0.822510 -0.256973 0.034647 0.182590 0.659274 0.294159 -0.053610 -0.490667 -0.041257 -0.146450 0.978223 -0.352880 0.258492 0.502375 -0.025246 -0.074292 -0.227730 0.147374 -0.049237 0.263172 0.317432 -0.384050 -0.456719 -0.168230 -0.802490 -0.513617 0.463819 0.143014 0.458597 -0.559820 -0.086865 -0.699465 -0.059128 -0.130281 0.837325 0.870192 -0.772830 0.535138 -0.014728 0.337877 -0.027241 0.118614 0.268947 0.207726 0.177647 -0.067419 -0.154326 -1.069769 -0.101800 -0.032337 -0.374942 -0.116276 -0.925587 0.339536 -0.820520 -0.599706 0.007200 0.143436 -0.237200 0.040198 0.189918 0.121004 0.507388 -0.326885 -0.446197 -0.026219 0.095012 0.049349 -0.029616 0.159077 0.364522 -0.249282 -0.860637 -0.811130 0.184708 0.018502 -0.289037 0.308690 0.544832 -0.487768 0.176200 0.043956 0.057517 -0.287477 0.937659 0.153019 -0.110037 0.279001 -0.191106 0.046166 -0.058279 0.375891 1.387328 -0.487631 -0.149136 -0.154025 0.108331 -0.300041 -0.660242 0.158654 0.113698 0.049558 -0.666834 -0.503967 -0.456294 -0.300726 -0.877319 -0.065593 -0.394103 0.058006 0.729062 0.469741 0.656071 0.417003 1.083319 -0.466329 0.310022 0.038392 -0.231911 0.310685 0.501511 0.369100 -0.297722 -0.429377 0.289750 -0.259983 0.379620 0.014307 0.024712 0.055439 -0.692749 -0.330839 0.282151 0.494528 0.012653 0.511786 0.470356 -0.565947 -0.629604 0.090832 0.377940 -0.158237 -0.130950 0.225101 -0.606762 0.527888 0.058734 -0.216412 0.315882 -0.011001 -0.387833 0.322890 -0.105654 0.183565 -0.415803 -0.138503 -0.288333 -0.183185 -0.743626 0.328629 -0.173363 -0.375217 -0.350775 -0.390084 0.781114 -0.552785 -0.448627 0.328430 0.177380 0.694409 -0.908716 0.338199 -0.373772 0.842810 0.100484 -0.098181 0.113245 -0.379533 -0.381400 -0.111477 0.233233 -0.139330 0.022330 0.521862 0.414233 -0.011550 0.137127 0.590533 0.042910 0.474629 -0.210171 0.220531 -0.164921 -0.443151 0.368433 -0.159461 0.017005 -0.015323 0.297470 1.116049 0.465071 0.817220 0.907415 0.351580 0.595409 -0.343695 -0.156028 -0.176388 0.607022 -0.251448 -0.199404 -0.087460 0.527876 -0.162276 0.250267 -0.728353 -1.475298 -0.699152 -0.857550 0.053519 -0.649417 0.096058 -0.071314 0.025903 -0.764061 -0.338672 -0.293868 -0.294541 1.005350 0.373330 -0.007120 0.557760 0.583601 -0.736896 -0.190182 0.768542 0.683235 -0.008535 0.225609 -0.980100 0.466095 -0.600635 0.082854 1.059601 -0.469925 0.215872 -0.256239 1.053459 -0.462390 1.116254 0.332255 -0.873379 0.444019 0.398640 0.402678 0.741122 -0.418241 -PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -1.017577 -2.297095 2.903808 2.105543 -0.059303 0.975885 0.868442 -0.008730 -0.155961 1.115382 -0.897421 2.087322 -1.617719 -0.756349 0.392139 -0.209056 -1.597772 -1.565253 0.063524 -0.180802 -0.725825 -0.865349 -1.684684 2.957053 1.187101 0.382009 -0.965970 0.255961 -2.708303 -1.957951 -1.708717 0.108720 1.145947 0.309661 1.988155 -2.420188 0.944029 2.373256 0.362162 -2.100616 0.312240 -0.739623 0.081148 -0.121836 -0.822112 1.097696 1.956221 0.271015 0.103593 0.401820 -0.330926 -1.138825 1.084617 2.103135 1.526080 1.755939 2.490147 -0.916843 0.954683 -0.760199 0.279875 -2.123329 0.669233 -0.148309 -0.864632 -0.305006 0.253062 -0.250497 -0.072862 0.591393 1.294358 -1.229940 -0.990383 -1.620128 -2.414565 -0.834516 0.631549 0.982033 2.425387 -1.486990 2.624924 1.457603 1.626285 0.574547 1.834393 -0.081071 1.891824 0.444809 -1.099314 0.768097 -1.808216 -1.272683 -0.530531 1.680308 -1.169545 -0.301285 0.797901 -3.428627 -2.709375 1.481675 -0.488980 -1.171005 -0.872926 0.167400 0.756321 0.672666 -0.313703 -1.516025 -1.079766 0.889122 -1.298238 -0.438981 0.135353 0.576062 -0.041626 0.462107 -2.085142 0.866627 1.713022 -0.805718 -0.434595 2.126291 -0.064766 2.389603 0.049389 0.290150 0.142761 1.274869 1.605705 -0.011243 -0.772094 -1.250152 -1.928552 -0.568867 0.005092 -0.408534 -1.415740 -0.745614 1.098534 0.982198 0.598427 1.469811 -0.627148 3.062565 0.460450 -0.811700 -1.591609 -2.433182 -2.091382 -0.867622 0.180815 -0.402155 -1.530105 0.559414 1.120422 0.366847 -0.626339 1.252020 0.086469 0.759941 0.226675 -0.519151 -0.216262 -1.166576 0.875073 -1.405733 -0.820287 1.407695 1.342980 1.613855 0.345679 -0.457759 0.727618 -0.602773 -1.585015 0.754260 0.234638 0.698541 2.437700 1.776409 3.142621 -0.979549 -0.409770 -0.366719 -0.272105 -0.461609 0.265750 -1.398647 0.774411 0.199904 -0.155698 2.634798 0.056750 -0.782182 1.451660 0.130873 0.225156 -1.769340 1.341396 -1.009696 0.727509 -0.594029 -0.334060 -1.588532 -0.585545 -1.737993 -1.045467 2.682754 -1.834611 -2.321984 0.596376 0.422705 1.849786 -2.869316 1.664864 -0.719198 2.317930 -0.214758 -1.105159 0.411588 -0.146656 0.015062 0.763870 0.665612 -1.247208 0.376252 0.362184 0.328430 0.567641 0.524600 0.757927 -0.182327 0.364770 -0.879062 0.402939 -0.133366 -0.339311 -0.974663 -0.318565 0.657944 1.546132 -0.270256 -0.652220 0.875088 -0.138492 0.047165 1.856624 -0.121168 -0.841878 -0.452514 -0.257496 2.081404 -1.813776 -1.252761 -1.029521 0.961345 0.671790 0.299321 -2.695041 -1.149790 -1.848858 -2.012523 -1.414648 0.746675 0.628797 1.045597 -0.534095 -1.809896 -1.363954 2.528200 0.302964 1.342212 1.188985 0.426769 2.299175 0.739947 0.873550 -0.997178 0.146707 0.413695 -0.628068 0.033389 -1.237946 0.685472 -1.972918 1.752365 1.781788 -0.998416 1.410801 0.031071 1.125589 -2.464595 2.306893 0.971584 -3.074238 -0.260447 2.220350 1.133405 -2.168670 -1.497243 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 0.288479 -0.493912 1.567500 1.051719 -0.506072 -0.045153 0.331176 -0.405339 0.433390 -0.686374 -0.425629 0.392680 -0.743001 0.343096 -0.609541 0.365075 -1.495514 -0.663673 -0.216422 -0.384389 -0.145082 -0.213664 0.580440 0.297980 0.815110 0.976720 -0.490663 -0.403424 -0.751692 0.084949 0.756654 -0.286544 0.553377 0.760772 0.063216 -1.644943 0.606302 0.509765 -0.394383 -0.816180 0.706230 -0.590952 -0.052001 -0.996530 -0.324157 0.087253 0.194314 0.941830 0.473671 0.203839 -0.554321 0.149580 0.155956 1.308768 -0.431338 0.306767 0.636857 -0.099409 -0.129160 -0.246517 0.209402 -0.031280 0.170448 0.205698 -0.159653 -0.890200 -0.350394 -0.968757 -0.464659 0.568963 0.092961 0.383825 -0.740491 -0.165743 -0.857902 -0.015800 -0.622784 1.143425 1.032971 -1.030158 0.527656 -0.058227 0.193861 -0.043226 -0.047969 0.385120 0.127201 0.319629 0.146952 -0.240526 -0.988925 -0.199664 0.178384 -0.609265 -0.280615 -1.572607 0.600559 -1.189038 -0.756659 0.028387 0.491699 -0.513498 0.315000 0.133563 0.015838 0.589715 -0.402312 -0.400900 0.209147 -0.003618 0.228566 -0.033478 0.100433 0.394696 -0.249672 -0.690485 -1.152943 0.497273 -0.081088 -0.163122 0.436266 0.569480 -0.261002 0.018451 -0.011666 0.261442 -0.451578 1.206731 0.085058 0.131640 0.193043 0.209062 0.261836 0.228928 0.683110 1.197987 -0.671271 -0.114966 -0.377941 0.182023 -0.472081 -0.669307 0.036873 0.261891 0.122419 -0.860328 -0.749719 -0.511686 -0.624020 -1.092090 -0.039945 -0.461064 -0.214688 0.841727 0.576416 0.744762 0.665333 1.133552 -0.584636 0.158347 0.062313 -0.246396 0.539610 0.461663 0.520181 -0.395174 -0.431450 0.398679 -0.321826 0.492938 -0.032875 0.208985 0.229423 -0.962758 -0.154899 0.460437 0.636401 -0.140598 0.613333 0.699758 -0.574458 -0.448496 -0.044701 0.621527 -0.366562 -0.253619 0.402181 -0.767420 0.583291 0.107463 0.005249 0.511690 0.080923 -0.304843 0.459466 -0.191757 0.150550 -0.417131 -0.187934 -0.324808 -0.268960 -0.748094 0.507912 -0.232004 -0.359649 -0.449206 -0.638820 1.014550 -0.968030 -0.392983 0.526002 0.075890 0.707519 -0.998551 0.670608 -0.536638 0.949382 0.263576 -0.093180 0.195382 -0.643303 -0.808950 -0.098153 0.266159 -0.057973 0.007274 0.691182 0.596774 -0.129185 -0.020014 0.843735 -0.253088 0.973916 -0.233921 0.394152 -0.296903 -0.585171 0.326893 -0.069181 -0.364375 -0.268891 0.456334 1.361269 0.216514 1.126347 1.064910 0.294002 1.063830 -0.529466 0.130884 -0.267073 0.651760 -0.360836 -0.386277 0.187715 0.686430 -0.191059 0.400134 -1.033692 -1.766511 -1.216962 -0.948882 0.125077 -0.914849 0.253732 -0.343528 -0.129354 -0.849474 -0.631969 -0.038526 -0.286348 0.829739 0.651016 -0.064008 0.653535 0.685317 -0.801807 -0.074939 0.672195 0.909397 0.301306 0.156787 -1.217932 0.742075 -0.714045 -0.144033 1.528032 -0.670386 0.345275 -0.315163 1.175534 -0.628989 1.284520 0.256450 -1.073550 0.627841 0.709067 0.413832 0.844780 -0.536351 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = -0.078588 -0.637046 1.113169 0.826990 -0.052067 0.068941 0.587307 -0.123703 0.332867 -0.028230 -0.231188 0.436469 -0.748240 0.203198 -0.343129 0.334162 -0.755478 -0.670470 -0.037621 -0.161260 -0.107002 -0.298170 0.400408 0.259481 0.638324 0.312047 -0.407325 -0.597820 -0.937156 -0.092710 0.427880 -0.197815 0.537840 0.259770 -0.080239 -1.437926 0.333778 0.550985 -0.240517 -0.798395 0.540866 -0.431703 0.078669 -0.484732 -0.116635 0.092842 0.336499 0.458060 0.303281 0.287065 -0.126277 0.009954 0.179906 1.189302 -0.302880 0.383008 0.587922 -0.039314 -0.098003 -0.169323 0.202643 -0.176521 0.291833 0.215587 -0.171709 -0.486165 -0.307936 -0.627408 -0.566290 0.334674 0.093836 0.267513 -0.570712 -0.084917 -0.511144 -0.096375 -0.369229 0.673832 0.938982 -0.762104 0.704154 0.073375 0.279588 -0.086327 0.026804 0.250999 -0.046347 0.223511 -0.046634 -0.254780 -0.793080 -0.054266 -0.072909 -0.045177 -0.214913 -0.910694 0.551390 -0.352466 -0.700668 0.164829 0.167895 -0.276544 -0.084757 0.160371 0.004907 0.654798 -0.425972 -0.523502 -0.276348 0.022230 0.180799 -0.156080 0.094423 0.083348 -0.330714 -0.627225 -0.817761 0.169560 0.067774 -0.425834 -0.025075 0.485963 -0.375961 0.341923 0.017939 0.219207 -0.256780 0.818953 0.321182 0.143052 0.377191 -0.123482 -0.473837 -0.080504 0.493087 1.203726 -0.497861 0.021040 -0.264916 0.131703 -0.133624 -0.288301 0.199502 0.380437 0.407343 -0.629913 -0.587693 -0.481264 -0.080938 -0.711813 0.065230 -0.430758 0.177308 0.501707 0.475021 0.334305 0.363772 1.230859 -0.506567 0.364795 0.090542 -0.293872 0.287651 0.311007 0.386865 -0.346225 -0.488668 0.261104 0.153959 0.314335 0.000000 0.144518 0.158379 -0.680935 -0.270151 0.172605 0.368600 -0.260830 0.513177 0.447358 0.084185 -0.566993 -0.071925 0.333993 -0.231635 -0.109447 0.179115 -0.776840 0.475019 0.023225 -0.214313 0.455020 0.066501 -0.475236 0.566201 -0.259446 0.068731 -0.373758 0.148842 -0.399328 -0.266236 -0.573581 0.153858 -0.170579 -0.326999 -0.288631 -0.193451 0.870235 -0.359173 -0.437203 0.151276 0.108379 0.279389 -1.070827 0.977993 -0.394787 0.528673 -0.037635 -0.158387 0.070225 0.080533 -0.352148 -0.177907 0.278573 -0.188732 0.199646 0.806412 0.343108 -0.104574 0.095234 0.618645 -0.010436 0.485331 -0.159032 0.338068 -0.190049 -0.466848 0.180034 -0.124844 0.057333 -0.065772 0.125442 0.955085 0.356285 0.439625 0.715757 0.378880 0.719447 -0.399753 0.150200 -0.107657 0.878960 -0.288533 -0.185602 -0.081663 0.461327 -0.129709 0.424710 -0.793666 -1.231350 -0.415086 -0.934572 0.072784 -0.327605 0.190888 -0.203799 -0.052512 -0.875333 -0.486777 -0.179123 -0.253613 0.677212 0.499299 0.062393 0.609312 0.469259 -0.529609 -0.122030 0.375990 0.539515 0.058686 -0.064446 -0.546885 0.296647 -0.679002 0.061169 0.893970 -0.336865 0.241228 -0.178381 0.866722 -0.526460 1.177146 0.303207 -0.706481 0.564789 0.537301 0.694297 0.190121 -0.416998 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -1.870850 -4.485284 5.984695 4.376832 0.467069 1.798290 2.378611 -0.254570 0.418623 3.096530 -1.625275 4.107962 -3.448531 -1.302945 0.912992 0.454801 -3.016186 -3.451021 0.458981 -0.435270 -1.304730 -2.032957 -2.349572 5.065572 2.787087 0.042394 -2.019499 -0.345873 -5.613936 -4.501060 -2.948375 -0.147261 2.458828 0.085640 3.316138 -4.971579 2.227920 4.452123 0.511247 -4.472883 1.014901 -1.506039 0.310360 -0.036194 -0.867537 2.276175 3.979695 0.830852 0.809748 1.448147 -0.080789 -2.153683 2.221081 4.331548 2.148919 3.429680 4.416257 -1.863941 1.536644 -1.085176 0.633138 -4.115746 1.671981 0.194564 -1.686262 -0.866699 0.360368 -0.531129 -0.981277 1.406585 2.400531 -2.299208 -2.371448 -2.550184 -3.916977 -1.439770 0.741659 2.125299 5.033192 -2.776908 5.422350 2.690788 3.232377 0.568252 3.175932 -0.192902 3.390087 0.831587 -2.362174 0.352386 -4.034209 -2.608978 -1.205721 3.129841 -1.847146 -0.229885 1.661960 -5.223672 -5.436330 2.722916 -0.763079 -2.131643 -2.388553 0.737180 1.813091 1.880608 -0.512736 -3.379493 -2.418709 1.582080 -2.694848 -1.048543 0.104881 0.153262 -0.708964 0.699359 -4.140505 1.219351 3.041816 -1.995025 -1.610039 4.005271 -0.641716 4.529371 0.207524 0.911100 0.359878 2.279172 3.231081 0.546588 -0.096848 -2.688007 -4.754138 -0.512656 0.483294 -0.228965 -2.521353 -0.704262 1.454112 1.861071 0.771154 2.800893 -1.039329 6.233178 1.485623 -2.021151 -3.418135 -4.367639 -2.920475 -1.531077 0.903213 -1.190223 -2.177105 0.741441 2.381022 0.383315 -0.791234 3.103484 -0.801065 2.040057 0.514430 -0.758527 -0.002547 -1.842967 1.962327 -2.888020 -1.678884 2.488845 3.243500 2.492776 0.284672 -0.770259 1.542229 -1.718444 -3.195490 1.196150 0.294917 1.062450 4.466057 3.173254 6.738297 -2.471004 -0.941181 -0.193763 -0.424106 -1.000842 0.508597 -3.324168 1.906648 0.249382 0.040436 5.165674 0.173708 -2.167380 2.950558 0.146072 0.352881 -3.308401 2.654158 -2.248818 0.966420 -0.882447 -1.080257 -2.944611 -1.458466 -3.112995 -1.327134 5.402286 -2.322038 -4.949921 1.308967 -0.425819 3.029362 -6.287704 4.513342 -1.710692 3.164635 -0.829448 -1.978764 0.295691 0.582161 -0.184970 1.145302 1.397362 -2.210971 1.590071 1.864969 0.779926 1.086469 1.017158 1.666983 -0.135880 0.853781 -1.388353 1.137788 -0.557217 -0.549495 -1.899939 -0.698283 1.483634 2.774039 -0.945065 -0.636298 2.009847 -0.723115 0.666121 3.488108 0.392412 -1.822303 -0.075103 -0.507618 4.500064 -3.267839 -2.341819 -1.742804 1.295449 0.921032 1.304187 -5.441363 -2.628006 -2.360907 -4.622836 -2.489219 1.342268 1.555019 1.555079 -0.858100 -4.202703 -2.639411 4.027255 0.754502 2.515439 2.440093 0.736945 4.372086 1.635517 1.297232 -1.915733 -0.252119 0.593582 -1.291013 -0.725198 -1.911750 1.204478 -4.145224 3.448560 3.431506 -1.846624 2.307839 -0.742584 2.123120 -4.871353 4.750771 2.009904 -5.286839 0.046229 3.843433 2.966977 -4.516605 -2.996308 -PE-benchmarks/optimal-binary-search-tree.cpp__main = 0.563084 -0.538973 2.193305 1.426717 -0.780558 -0.129581 0.325934 -0.647142 0.576136 -0.949954 -0.625385 0.540243 -0.861543 0.503020 -0.918130 0.616022 -2.143265 -0.788722 -0.312016 -0.587617 -0.211246 -0.184533 0.842712 0.306580 1.162552 1.408648 -0.654791 -0.478816 -0.768346 -0.105692 0.953512 -0.428889 0.668363 0.939332 0.096337 -2.084899 0.940459 0.626906 -0.581541 -1.017689 0.987585 -0.705895 -0.163919 -1.342637 -0.481699 0.117739 0.222898 1.378114 0.678669 0.361763 -0.761142 0.288999 0.366545 1.740323 -0.562900 0.369696 0.814742 -0.157683 -0.184335 -0.307229 0.289137 -0.005771 0.130396 0.222889 -0.052568 -1.309413 -0.500553 -1.254910 -0.497073 0.773763 0.061018 0.458312 -0.993651 -0.210035 -1.146865 0.035674 -1.005643 1.575872 1.331667 -1.360318 0.581774 -0.107823 0.152913 -0.054737 -0.165894 0.526646 0.160749 0.472750 0.277997 -0.339641 -1.098549 -0.305401 0.370361 -0.954487 -0.392335 -2.333696 0.814520 -1.778297 -0.968096 0.022514 0.796939 -0.766708 0.613869 0.090492 0.021264 0.699340 -0.514366 -0.435786 0.462867 -0.086685 0.334692 -0.021600 0.115802 0.532581 -0.256622 -0.670270 -1.571157 0.748326 -0.173251 -0.105436 0.682296 0.676603 -0.119425 -0.099479 -0.047683 0.412442 -0.612307 1.587783 0.026009 0.291918 0.131133 0.554025 0.610653 0.505784 0.985737 1.204050 -0.894134 -0.140022 -0.561413 0.274987 -0.701945 -0.863093 -0.086391 0.349830 0.115759 -1.118969 -1.036550 -0.625680 -0.992446 -1.454360 -0.037796 -0.589721 -0.512757 1.093029 0.751674 0.935025 0.964714 1.264262 -0.764423 0.078796 0.071450 -0.240801 0.793867 0.507066 0.708266 -0.511440 -0.491189 0.553258 -0.469390 0.658543 -0.085640 0.306259 0.370164 -1.295403 -0.067531 0.690439 0.881458 -0.211408 0.761610 0.935097 -0.760278 -0.390750 -0.109396 0.908756 -0.526557 -0.379762 0.587075 -0.989994 0.747062 0.157407 0.209072 0.684573 0.146860 -0.294592 0.585038 -0.239573 0.170654 -0.495800 -0.320572 -0.381782 -0.359119 -0.883423 0.764914 -0.298931 -0.404711 -0.601522 -0.938379 1.313599 -1.517115 -0.403592 0.807722 0.000129 0.935991 -1.182552 0.894102 -0.737787 1.236357 0.459556 -0.096673 0.300861 -1.041366 -1.224813 -0.090062 0.333214 0.023384 -0.017302 0.840331 0.833431 -0.184054 -0.103948 1.146508 -0.475242 1.448801 -0.278529 0.539881 -0.425941 -0.777760 0.370822 -0.032219 -0.685666 -0.473972 0.695040 1.759024 0.097547 1.565984 1.412523 0.297887 1.526013 -0.743599 0.297184 -0.408406 0.733576 -0.497617 -0.576323 0.387164 0.907337 -0.273457 0.570428 -1.402637 -2.297892 -1.908157 -1.120691 0.149193 -1.318373 0.411980 -0.583704 -0.216555 -1.019584 -0.890244 0.173580 -0.332543 0.851175 0.952403 -0.120331 0.808927 0.888605 -0.989879 -0.039772 0.754041 1.227188 0.535062 0.203450 -1.657066 1.062379 -0.906543 -0.292821 2.109759 -0.947688 0.444454 -0.427773 1.450668 -0.823606 1.578482 0.277748 -1.398996 0.816730 0.991740 0.418611 1.160727 -0.714366 -PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -0.849780 -1.784605 2.680250 1.971855 0.409634 0.609110 1.424092 -0.351585 0.785832 1.495641 -0.599511 1.471086 -1.902678 0.025090 -0.000274 0.763823 -1.310165 -1.687276 0.143286 -0.439337 -0.642832 -1.114636 -0.031938 1.311440 1.455747 -0.357388 -0.992910 -0.801802 -2.584408 -1.595189 -0.497572 -0.345913 1.190183 -0.560069 0.586374 -2.983318 1.123110 1.770369 -0.125785 -2.022233 0.928689 -0.997339 0.324936 0.072194 -0.131018 0.611213 1.438607 0.815476 0.877836 0.853524 0.632019 -0.610073 0.678709 2.826434 -0.143584 1.448966 1.471772 -0.586386 -0.131849 -0.197758 0.263030 -1.344970 0.927010 0.498438 -0.786529 -0.726624 0.037255 -0.500515 -1.212374 0.751997 0.736483 -0.648642 -1.227863 -0.707063 -0.921921 -0.566757 0.113232 0.964700 2.496380 -1.244820 2.292074 0.728785 1.055903 -0.024015 0.920088 0.007067 1.065469 0.246836 -0.923837 -0.594513 -1.668894 -0.396639 -0.396152 1.258432 -0.542909 -0.737463 0.914363 -0.820382 -2.329746 0.805320 -0.097754 -0.787387 -1.104052 0.548268 0.722172 1.173570 -0.592329 -1.803076 -1.176131 0.504260 -0.708203 -0.553406 -0.022253 -0.680415 -0.749473 -0.534530 -1.919665 0.209595 0.774715 -1.179096 -1.074257 1.613860 -0.817031 1.614595 0.248387 0.740477 0.035319 1.289164 1.182844 0.464457 0.488883 -0.958514 -2.196012 -0.087461 0.546973 1.020659 -1.027699 0.118240 -0.042132 0.510715 -0.168785 0.731539 -0.166081 2.373053 1.269426 -1.197237 -1.503099 -1.318551 -0.373377 -1.111872 0.570420 -0.912865 -0.397732 -0.021032 1.189807 0.235163 0.200941 2.428266 -0.913068 1.259440 0.316249 -0.559044 0.580666 -0.273886 1.132887 -1.298825 -1.015388 0.784945 1.446046 0.612196 -0.136696 0.011714 0.461603 -1.380723 -0.979879 0.291886 0.317301 0.089076 1.693606 1.156079 3.387385 -1.417235 -0.118600 0.439553 -0.273339 -0.296444 0.217737 -1.864403 0.826208 0.203875 -0.217916 2.104154 0.191406 -1.404466 1.290118 -0.227216 0.269277 -1.460380 1.126884 -1.055053 0.022813 -0.621262 -0.388713 -0.897090 -0.748837 -1.014586 -0.200075 2.329908 -0.633616 -2.136274 0.593283 -0.350973 0.953323 -3.043461 3.045394 -1.020065 0.996671 -0.737570 -0.640395 0.016837 0.818853 -0.318868 0.613600 0.635952 -0.495146 1.031641 1.757593 0.562882 0.434254 0.329503 1.150066 0.077720 0.632312 -0.413711 0.935832 -0.234147 -0.497562 -0.356216 -0.426741 0.452901 0.783800 -0.320391 0.692066 1.276701 -0.379722 0.882668 1.345728 0.909038 -0.819808 0.654117 -0.290451 2.186613 -1.074652 -0.797584 -0.390331 0.628108 0.079946 0.995520 -2.385440 -1.798298 -0.345203 -2.501922 -0.384210 0.480575 0.662305 0.228633 -0.129802 -2.194398 -1.117270 1.235018 -0.007302 2.054606 1.046062 0.413180 1.679771 1.049922 -0.097262 -0.630320 -0.091614 0.358029 -0.450861 -0.545708 -0.668263 0.564112 -1.907741 1.216532 1.482276 -0.752851 0.675055 -0.549207 1.031669 -1.939812 2.388428 0.880510 -1.560339 0.940702 1.339660 2.112412 -1.383787 -1.213603 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 0.288479 -0.493912 1.567500 1.051719 -0.506072 -0.045153 0.331176 -0.405339 0.433390 -0.686374 -0.425629 0.392680 -0.743001 0.343096 -0.609541 0.365075 -1.495514 -0.663673 -0.216422 -0.384389 -0.145082 -0.213664 0.580440 0.297980 0.815110 0.976720 -0.490663 -0.403424 -0.751692 0.084949 0.756654 -0.286544 0.553377 0.760772 0.063216 -1.644943 0.606302 0.509765 -0.394383 -0.816180 0.706230 -0.590952 -0.052001 -0.996530 -0.324157 0.087253 0.194314 0.941830 0.473671 0.203839 -0.554321 0.149580 0.155956 1.308768 -0.431338 0.306767 0.636857 -0.099409 -0.129160 -0.246517 0.209402 -0.031280 0.170448 0.205698 -0.159653 -0.890200 -0.350394 -0.968757 -0.464659 0.568963 0.092961 0.383825 -0.740491 -0.165743 -0.857902 -0.015800 -0.622784 1.143425 1.032971 -1.030158 0.527656 -0.058227 0.193861 -0.043226 -0.047969 0.385120 0.127201 0.319629 0.146952 -0.240526 -0.988925 -0.199664 0.178384 -0.609265 -0.280615 -1.572607 0.600559 -1.189038 -0.756659 0.028387 0.491699 -0.513498 0.315000 0.133563 0.015838 0.589715 -0.402312 -0.400900 0.209147 -0.003618 0.228566 -0.033478 0.100433 0.394696 -0.249672 -0.690485 -1.152943 0.497273 -0.081088 -0.163122 0.436266 0.569480 -0.261002 0.018451 -0.011666 0.261442 -0.451578 1.206731 0.085058 0.131640 0.193043 0.209062 0.261836 0.228928 0.683110 1.197987 -0.671271 -0.114966 -0.377941 0.182023 -0.472081 -0.669307 0.036873 0.261891 0.122419 -0.860328 -0.749719 -0.511686 -0.624020 -1.092090 -0.039945 -0.461064 -0.214688 0.841727 0.576416 0.744762 0.665333 1.133552 -0.584636 0.158347 0.062313 -0.246396 0.539610 0.461663 0.520181 -0.395174 -0.431450 0.398679 -0.321826 0.492938 -0.032875 0.208985 0.229423 -0.962758 -0.154899 0.460437 0.636401 -0.140598 0.613333 0.699758 -0.574458 -0.448496 -0.044701 0.621527 -0.366562 -0.253619 0.402181 -0.767420 0.583291 0.107463 0.005249 0.511690 0.080923 -0.304843 0.459466 -0.191757 0.150550 -0.417131 -0.187934 -0.324808 -0.268960 -0.748094 0.507912 -0.232004 -0.359649 -0.449206 -0.638820 1.014550 -0.968030 -0.392983 0.526002 0.075890 0.707519 -0.998551 0.670608 -0.536638 0.949382 0.263576 -0.093180 0.195382 -0.643303 -0.808950 -0.098153 0.266159 -0.057973 0.007274 0.691182 0.596774 -0.129185 -0.020014 0.843735 -0.253088 0.973916 -0.233921 0.394152 -0.296903 -0.585171 0.326893 -0.069181 -0.364375 -0.268891 0.456334 1.361269 0.216514 1.126347 1.064910 0.294002 1.063830 -0.529466 0.130884 -0.267073 0.651760 -0.360836 -0.386277 0.187715 0.686430 -0.191059 0.400134 -1.033692 -1.766511 -1.216962 -0.948882 0.125077 -0.914849 0.253732 -0.343528 -0.129354 -0.849474 -0.631969 -0.038526 -0.286348 0.829739 0.651016 -0.064008 0.653535 0.685317 -0.801807 -0.074939 0.672195 0.909397 0.301306 0.156787 -1.217932 0.742075 -0.714045 -0.144033 1.528032 -0.670386 0.345275 -0.315163 1.175534 -0.628989 1.284520 0.256450 -1.073550 0.627841 0.709067 0.413832 0.844780 -0.536351 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.412424 -0.733312 1.172376 0.776973 0.208506 0.143927 0.512441 0.134319 0.210559 0.616499 -0.383314 0.770448 -0.727375 -0.019082 0.096625 0.294164 -0.564760 -0.811733 0.131326 0.066101 -0.291561 -0.454387 -0.070927 0.582450 0.701587 0.251006 -0.596022 -0.222541 -1.041621 -1.090796 -0.481009 -0.107869 0.507910 -0.028404 0.454097 -0.942191 0.350480 0.686188 0.078828 -0.913779 0.396112 -0.245405 0.160508 -0.026042 0.149159 0.608505 0.923192 0.232428 0.350975 0.393871 0.031744 -0.501966 0.154906 0.621812 0.176981 0.481055 0.699019 -0.355246 0.059723 -0.271251 0.108353 -0.840287 0.259306 0.241627 -0.438744 -0.155154 0.113823 -0.192873 -0.381914 0.445254 0.309702 -0.243114 -0.597814 -0.490496 -0.513537 -0.084902 0.346651 0.463825 1.055413 -0.396703 0.918618 0.300885 0.653582 -0.080269 0.226073 -0.109560 0.344258 0.111173 -0.432075 -0.260215 -0.658018 -0.529738 -0.445475 0.900005 -0.099517 0.291011 0.355809 -0.693582 -0.896855 0.241376 -0.123783 -0.244840 -0.658220 0.503140 0.424595 0.638013 0.104179 -0.621657 -0.485236 0.034055 -0.400094 -0.082157 0.068595 -0.161509 -0.473427 0.061912 -0.820941 0.077321 0.332662 -0.524483 -0.357562 0.539581 -0.365623 0.867402 0.138562 0.333010 0.138240 0.566741 0.780959 0.159053 0.270960 -0.452273 -1.018496 -0.160400 0.190616 0.452856 -0.584179 -0.012087 -0.019841 0.131349 -0.123823 0.058761 -0.323580 1.074432 0.849589 -0.633412 -0.877728 -0.641988 -0.300736 -0.353829 0.165012 -0.321515 0.009299 0.029589 0.351295 0.031243 -0.033618 1.298341 -0.514203 0.389586 0.196746 -0.299990 0.079644 -0.083604 0.405540 -0.545163 -0.302323 0.397046 0.602608 0.257245 -0.003908 -0.117690 0.295153 -0.561927 -0.580963 0.536304 0.159620 0.286941 0.567742 0.434162 0.979080 -0.524582 -0.273994 0.148590 0.008260 -0.340258 0.249994 -0.732476 0.580051 -0.054981 0.231766 0.768457 0.114483 -0.504811 0.724408 -0.038971 0.105370 -0.558785 0.438007 -0.448079 0.306429 -0.210119 -0.293461 -0.404864 -0.149592 -0.314530 -0.069773 0.956058 0.109883 -1.159037 0.155683 -0.208359 0.651461 -1.359350 0.696723 -0.294945 0.427503 -0.249285 -0.060098 0.016432 0.024053 0.108936 0.104815 0.182852 -0.077203 0.302424 0.573274 0.148429 0.042696 0.226319 0.391032 0.173494 0.286379 0.086711 0.047288 -0.112431 -0.019251 -0.173544 -0.001625 0.175222 0.500148 -0.312348 0.164947 0.491117 -0.143640 0.496915 0.544567 0.319341 -0.344695 0.068631 -0.105457 1.126214 -0.527652 -0.481206 -0.256343 0.406538 -0.043145 0.300928 -0.922291 -0.835728 -0.047222 -1.484550 -0.434920 0.090775 0.341967 0.105042 -0.198989 -0.621061 -0.393405 0.531514 0.300283 1.245576 0.266423 -0.059689 0.705124 0.333858 -0.203559 -0.371463 -0.052440 0.159645 -0.197619 -0.177496 -0.367104 0.104827 -0.824929 0.411261 0.719449 -0.537992 0.300136 -0.257901 0.561428 -0.933663 1.052552 0.393980 -0.845604 0.275189 0.309466 0.897806 -0.615964 -0.549620 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -2.730164 -5.534904 9.077520 6.124081 -0.048510 2.592913 2.498233 -1.986799 1.059169 3.518731 -2.174315 5.289197 -4.489023 -1.106256 0.060081 0.664058 -5.188791 -4.604084 -0.539049 -2.167026 -2.739564 -2.704042 -2.626420 6.288659 3.902660 0.096285 -3.315098 0.179444 -7.635030 -6.533304 -3.231550 -0.157590 3.204025 -0.925344 4.366088 -8.673566 4.091334 6.287626 0.103699 -5.842239 1.865651 -2.304272 -0.367560 0.552634 -2.041421 2.399034 4.116644 0.866160 1.733601 1.659130 0.962608 -1.876736 2.115100 7.999231 2.064005 4.947023 5.782769 -2.728205 1.155061 -0.565869 0.693143 -4.607385 2.200412 0.533730 -2.017234 -1.924702 1.400939 -0.973038 -1.647894 2.770316 2.703622 -4.625851 -2.309100 -4.106024 -5.897391 -2.057156 2.884066 3.089768 7.254589 -3.760629 6.884314 2.580116 3.570497 0.804408 4.655444 -0.442223 6.021104 1.155733 -2.668317 0.161526 -4.263692 -2.510874 -0.951778 5.178516 -2.977836 -0.844733 3.007142 -8.337133 -7.634101 3.638454 -0.062478 -3.403049 -4.019381 0.508764 2.507977 1.846178 -1.111076 -4.830795 -3.433260 2.947711 -3.521948 -1.274273 -0.128628 -0.366781 -1.081063 1.081733 -6.009747 2.275857 3.779009 -2.052010 -3.104658 6.027278 -1.091315 4.973851 0.247746 2.076738 -0.188296 3.437269 2.678902 1.170741 -1.321769 -2.254994 -5.823490 -1.190865 0.556652 -0.603195 -3.551355 -1.494628 1.486155 2.519467 -0.362286 3.970032 -2.739531 8.611163 2.805981 -2.656179 -5.078497 -5.091259 -4.075246 -4.014997 0.424879 -2.173045 -4.781435 1.083641 3.670960 1.894210 -0.607643 4.808770 -0.866527 3.022309 0.873048 -1.744753 0.954542 -4.001200 3.029697 -4.402793 -2.858927 3.223969 3.416278 3.648609 0.397352 -0.780015 1.367686 -3.271474 -4.562212 2.211855 1.172907 2.058090 5.874225 5.218626 11.012326 -4.325509 -0.633552 0.435325 -1.380807 -1.372272 0.453772 -4.576201 1.289289 1.248097 0.137796 8.258813 0.381244 -2.900877 3.137110 0.208580 1.163559 -4.947490 3.636020 -2.878685 1.968468 -1.327192 -2.201592 -4.010647 -1.542139 -4.513832 -3.460820 7.688004 -5.605558 -8.005542 3.916935 -0.528624 4.912609 -9.368084 5.941478 -2.690383 5.732069 -1.379108 -2.026278 0.122221 0.495274 -1.503570 4.101092 1.645677 -3.076584 2.258756 3.837679 1.399546 2.407762 0.271186 3.138019 -1.106759 2.017206 -2.501896 3.034376 -0.577107 -1.815607 -2.563021 -1.171540 0.668932 2.789648 -0.141270 -1.057442 2.897031 -0.561751 0.766127 5.318682 1.413627 -2.594867 1.066370 -0.803859 5.165917 -4.282016 -3.668789 -0.889998 2.627987 1.315644 1.307737 -7.918312 -4.261811 -5.412336 -7.491465 -2.533767 1.375066 2.137030 1.679432 -1.389890 -5.661294 -3.921913 7.094121 0.711292 5.879492 3.744081 1.629241 5.853085 3.323369 1.182140 -1.685623 -0.819587 1.098135 -1.581084 -1.163104 -3.579194 2.660193 -5.512712 4.556694 5.218852 -2.359993 3.917719 0.046676 2.165156 -6.942551 6.366253 2.646586 -6.758324 0.987886 5.247359 4.151948 -4.909733 -4.251450 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.531872 -0.348855 1.589249 1.064448 -0.553870 -0.149371 0.168589 -0.511833 0.557617 -0.513596 -0.525515 0.334440 -0.601679 0.459386 -0.634476 0.716569 -1.605227 -0.555596 -0.134382 -0.369173 -0.147856 -0.190928 0.793137 0.015070 0.864140 1.115246 -0.454873 -0.298640 -0.293587 -0.349613 0.699192 -0.474183 0.446120 0.768068 0.014940 -1.246881 0.804543 0.305595 -0.473409 -0.700820 0.668922 -0.412422 -0.088063 -0.988491 -0.244599 0.176059 0.199177 1.109530 0.591514 0.418123 -0.425391 0.109510 0.437423 1.089859 -0.492737 0.228674 0.490834 -0.109983 -0.124294 -0.227986 0.282334 0.048514 0.088521 0.336641 0.061354 -0.978394 -0.470719 -0.895797 -0.420761 0.623067 -0.121645 0.489000 -0.876459 -0.088276 -0.617638 0.094062 -1.215871 1.148589 1.084177 -0.928484 0.391131 0.002342 0.141669 -0.119060 -0.245782 0.393732 0.076398 0.399023 0.089037 -0.209979 -0.477486 -0.312423 0.352406 -0.788828 -0.176968 -1.689006 0.525876 -1.200202 -0.646863 0.039512 0.624796 -0.405920 0.566993 0.093212 0.091724 0.500344 -0.400524 -0.346351 0.502823 -0.287921 0.307701 -0.018439 0.060490 0.340486 -0.235922 -0.259495 -1.157780 0.339408 -0.248045 -0.218035 0.627366 0.370325 0.076752 -0.113579 -0.056174 0.272395 -0.378834 1.186275 0.067485 0.427310 0.108000 0.578696 0.485647 0.618122 0.839248 0.583834 -0.550423 0.014597 -0.462182 0.167301 -0.592128 -0.660977 -0.091397 0.170184 0.211314 -0.789732 -0.819207 -0.363328 -0.763076 -1.094653 0.135738 -0.524322 -0.309545 0.701436 0.570991 0.532882 0.845316 0.866672 -0.710179 -0.023937 -0.054676 -0.020037 0.647383 0.461123 0.550893 -0.318211 -0.288600 0.437369 -0.205447 0.301213 0.011642 0.059812 0.324199 -0.974578 0.139631 0.642268 0.630974 -0.269927 0.442778 0.485090 -0.553692 -0.008280 -0.071805 0.792374 -0.188948 -0.278333 0.463011 -0.797578 0.698460 0.014964 0.367852 0.256541 0.124169 -0.160959 0.409213 -0.246958 0.111872 -0.326651 -0.291490 -0.252641 -0.238822 -0.611368 0.773756 -0.156499 -0.289850 -0.222163 -0.418275 0.890332 -1.006644 -0.039438 0.604843 -0.109993 0.629456 -0.604242 0.736730 -0.582175 0.814734 0.325459 -0.088488 0.234929 -0.842813 -0.796101 -0.231009 0.287473 0.250130 -0.037253 0.511738 0.632213 -0.198699 0.013314 0.848066 -0.313636 1.067183 -0.030768 0.368116 -0.276562 -0.419714 0.292040 -0.036176 -0.533792 -0.438657 0.441315 1.332495 0.044993 1.029987 1.137316 -0.007905 1.165303 -0.606316 0.322516 -0.278980 0.562052 -0.388805 -0.359905 0.304531 0.593846 -0.366963 0.506531 -0.962030 -1.613575 -1.384075 -0.564636 -0.112006 -0.905866 0.394307 -0.531058 -0.071520 -0.543773 -0.604317 0.309871 -0.252045 0.330137 0.650323 -0.117887 0.521596 0.653264 -0.653849 -0.144150 0.332951 0.803134 0.418947 0.227338 -1.133159 0.741980 -0.685058 -0.309959 1.456338 -0.750370 0.103728 -0.349368 1.048846 -0.526555 1.064818 0.244072 -0.808448 0.701151 0.678838 0.356843 0.889490 -0.519089 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -1.448269 -3.593992 6.141371 4.239112 -0.429933 1.465232 1.910337 -1.145538 1.130935 0.744991 -1.368917 3.255833 -3.700554 -0.197712 -1.069391 0.275938 -4.057382 -3.154820 -0.453991 -1.324336 -1.197929 -1.868365 -0.516816 4.101327 2.856076 1.242214 -2.264333 -0.992325 -5.652897 -1.832131 -0.306639 -0.314536 2.583302 0.245445 1.727158 -6.613463 2.163275 4.012233 -0.389048 -4.162675 2.184191 -2.468513 0.189581 -1.059450 -1.673786 0.709095 2.162130 1.483472 1.440127 0.529045 -0.450195 -0.468456 1.496198 6.133345 0.087507 2.971076 3.527818 -1.219386 0.283708 -0.793632 0.411422 -2.229801 1.692942 0.473092 -1.758604 -2.118200 0.169356 -1.529568 -1.900737 1.876809 1.429891 -1.192088 -2.143041 -1.754013 -3.954766 -1.123083 1.795060 3.011330 4.729267 -3.108444 4.269259 1.126000 1.777576 0.339299 2.305138 0.412213 2.702227 0.721439 -1.060507 -0.877190 -4.500347 -0.369359 -0.450858 1.476064 -1.801953 -2.721134 2.220819 -5.226584 -5.046065 1.488849 0.297095 -2.493498 -1.262769 0.491665 1.163779 1.985700 -1.118660 -3.210362 -1.597855 1.946258 -1.413054 -0.943876 0.012440 -0.102480 -0.655026 -1.345762 -4.125138 1.743456 1.668415 -1.388648 -1.150173 3.928170 -1.246580 2.779082 0.359843 1.595853 -0.519075 2.903156 1.618895 0.234925 0.027641 -1.496443 -1.822286 -0.408820 0.884045 2.106927 -3.059017 -0.750538 0.041893 1.279638 -0.243403 0.696914 -0.754552 4.261463 0.855571 -2.667929 -2.795544 -3.253646 -2.415483 -3.451429 -0.121263 -1.371491 -2.358623 1.562640 2.483289 1.727325 0.554412 3.900047 -1.050307 1.871158 1.065908 -1.454203 1.319625 -0.794308 2.169693 -2.720081 -2.420030 1.809872 1.324165 2.405479 -0.458181 0.526913 0.533771 -2.620287 -2.140373 0.970144 1.443979 1.084228 4.179381 3.479854 4.777469 -3.256196 -0.122890 0.799270 -1.343861 -0.732832 0.310385 -3.479512 1.461154 0.940988 -0.600970 4.967635 0.140870 -2.221658 2.425042 -0.028680 0.923801 -3.250076 1.935485 -2.144498 -0.113017 -1.920251 -0.931413 -2.062545 -1.614241 -3.387811 -2.440241 5.212514 -4.090597 -4.308271 2.173962 0.340558 2.960987 -6.212304 4.110506 -2.069763 3.974331 -0.305741 -1.319885 0.211299 -0.156547 -1.818833 1.423825 1.223247 -2.026777 1.682479 2.955656 1.531250 1.141741 0.255219 2.497996 -0.408240 2.055284 -1.885344 1.956234 -0.555747 -1.965536 -0.420129 -0.817269 0.387663 1.360007 0.375405 1.603121 2.410987 1.227243 1.800533 3.249311 2.083982 -1.719130 0.537573 -1.012853 3.485571 -2.325944 -2.108341 -0.643536 2.017599 0.649217 1.635439 -5.475115 -4.841070 -3.297718 -5.016875 -0.287276 -0.982391 1.002504 0.777342 -0.641155 -4.908648 -2.883334 2.140263 -0.261529 4.581802 2.563576 0.839972 3.821128 2.598557 -0.670680 -0.772645 1.143506 1.782588 -0.586694 -0.536112 -3.271344 2.173481 -3.348424 2.472388 4.472534 -1.935387 2.421520 -0.722453 1.887113 -4.257326 5.374085 1.793758 -4.813136 1.461795 2.794969 2.844684 -1.512707 -2.810839 -PE-benchmarks/count-ways-reach-nth-stair.cpp__main = -0.168208 -0.703578 1.061399 0.762598 -0.035369 0.093506 0.630805 -0.007906 0.276904 -0.008453 -0.285604 0.476880 -0.739323 0.118176 -0.332348 0.245073 -0.683666 -0.674583 0.060907 -0.078638 -0.058290 -0.287387 0.276904 0.330048 0.592256 0.301796 -0.336275 -0.615165 -0.981978 -0.073192 0.343968 -0.196328 0.520446 0.234925 -0.063266 -1.416808 0.250631 0.570771 -0.208243 -0.850463 0.514566 -0.435806 0.095948 -0.429190 -0.109026 0.096586 0.441392 0.481722 0.203571 0.281130 -0.183943 -0.077679 0.200342 1.189896 -0.193309 0.403358 0.679058 -0.040433 -0.070807 -0.183055 0.210792 -0.289699 0.292624 0.196353 -0.206451 -0.388492 -0.302154 -0.602234 -0.529198 0.236426 0.114739 0.268737 -0.517640 -0.082008 -0.517304 -0.114045 -0.370114 0.621679 0.938100 -0.750586 0.799604 0.124008 0.357737 -0.065073 0.058592 0.267011 -0.090155 0.222448 -0.097469 -0.235615 -0.820492 -0.055358 -0.108075 -0.024926 -0.205310 -0.866701 0.556296 -0.342052 -0.702394 0.203815 0.081868 -0.267156 -0.026397 0.183026 0.004296 0.697730 -0.457681 -0.520284 -0.321636 0.026920 0.106751 -0.156024 0.121581 0.135347 -0.315073 -0.628841 -0.768362 0.162601 0.160856 -0.463024 -0.005516 0.498592 -0.351935 0.461349 0.022322 0.181707 -0.199728 0.801653 0.419565 0.054290 0.363199 -0.198652 -0.525411 -0.077883 0.448213 1.186060 -0.524439 0.021812 -0.137330 0.147780 -0.002386 -0.284792 0.183397 0.409819 0.373171 -0.605577 -0.544776 -0.573154 -0.074533 -0.634202 0.051169 -0.402976 0.183821 0.505029 0.464536 0.290963 0.278663 1.212480 -0.480298 0.371885 0.088290 -0.289773 0.188415 0.310617 0.376695 -0.348904 -0.466429 0.242078 0.227771 0.328531 0.002219 0.112833 0.167323 -0.637498 -0.284796 0.172033 0.376150 -0.247386 0.542547 0.438692 0.089204 -0.564544 -0.134095 0.225665 -0.229916 -0.120911 0.167867 -0.775206 0.477749 0.024436 -0.218845 0.442553 0.081472 -0.465675 0.587552 -0.255155 0.021628 -0.368338 0.192688 -0.411813 -0.291701 -0.512171 0.160179 -0.207681 -0.340247 -0.342528 -0.190756 0.863583 -0.345747 -0.427234 0.025260 0.137877 0.280218 -1.072949 0.976152 -0.391856 0.554044 -0.025899 -0.184126 0.068643 0.110159 -0.248388 -0.213837 0.282482 -0.210270 0.232866 0.738975 0.326016 -0.091205 0.165506 0.583513 -0.016091 0.366360 -0.153894 0.234704 -0.194074 -0.468019 0.181663 -0.124076 0.137959 0.042295 0.107550 0.911058 0.354845 0.360872 0.690966 0.414071 0.599010 -0.382708 0.073754 -0.113120 0.979283 -0.297419 -0.186952 -0.208654 0.459782 -0.057805 0.395126 -0.803444 -1.182374 -0.399075 -0.923498 0.036550 -0.305371 0.181902 -0.146349 0.000000 -0.923988 -0.464357 -0.179321 -0.246560 0.655771 0.497529 0.086311 0.643653 0.395296 -0.455332 -0.182932 0.400785 0.542459 -0.010483 -0.038595 -0.487082 0.196856 -0.710329 0.124540 0.825976 -0.299835 0.213833 -0.143350 0.842450 -0.537186 1.164473 0.343899 -0.776730 0.484265 0.549546 0.685653 0.070812 -0.421495 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = -0.228762 -0.605878 0.767491 0.576820 0.062197 0.141592 0.445822 0.057114 0.137326 0.186347 -0.162675 0.472459 -0.651611 0.077572 -0.147993 0.129953 -0.391881 -0.527701 -0.014135 -0.010450 -0.165538 -0.304524 0.050883 0.469988 0.441422 -0.059167 -0.311184 -0.316473 -0.877757 0.016464 -0.062752 -0.044539 0.372876 -0.207989 0.146293 -0.939223 0.166449 0.531797 -0.022845 -0.675864 0.325201 -0.329489 0.184473 -0.154104 -0.213621 0.031245 0.417576 0.290218 0.164359 0.189413 0.036217 -0.136572 0.153790 1.054842 0.014355 0.397921 0.528034 -0.051190 -0.026307 -0.217284 0.095632 -0.361723 0.186535 0.062898 -0.217898 -0.166395 -0.145775 -0.292346 -0.319218 0.155884 0.167217 -0.000743 -0.414645 -0.235191 -0.347451 -0.133141 -0.021574 0.398050 0.708858 -0.587623 0.605662 0.154538 0.275527 0.076358 0.180684 0.086716 0.038476 0.092399 -0.131600 -0.124748 -0.528626 0.108645 -0.129380 0.084769 -0.225144 -0.537352 0.358360 -0.153497 -0.653916 0.222208 -0.066524 -0.268290 -0.002367 0.157598 0.029285 0.474685 -0.312542 -0.470030 -0.329891 0.154780 0.097156 -0.132002 0.087634 0.000592 -0.183125 -0.489596 -0.586845 0.129946 0.220484 -0.367210 -0.097597 0.472754 -0.383435 0.544056 0.066907 0.130505 -0.017460 0.623874 0.494166 -0.019292 0.011455 -0.319587 -0.452263 -0.025781 0.174442 0.660248 -0.391428 0.159657 0.008883 0.103596 0.075808 0.024575 0.122518 0.472203 0.160182 -0.412695 -0.466358 -0.463176 -0.243486 -0.388528 0.057678 -0.250349 0.004836 0.327565 0.318580 0.244022 0.019220 0.948448 -0.232640 0.298173 0.151977 -0.333971 0.072119 0.063339 0.270540 -0.344354 -0.384418 0.254661 0.284935 0.254857 0.000493 0.112567 0.113483 -0.402082 -0.132307 0.029049 0.256167 -0.042997 0.548464 0.336760 0.478555 -0.317633 -0.103986 0.094811 -0.122770 -0.081950 0.023883 -0.552383 0.244725 0.010690 -0.272461 0.481124 0.053845 -0.374428 0.539276 -0.190507 0.116150 -0.403510 0.298127 -0.280937 -0.125166 -0.361428 0.034328 -0.147759 -0.164269 -0.310546 -0.141589 0.716378 -0.375167 -0.428255 -0.054186 0.215862 0.296493 -0.780543 0.963111 -0.243421 0.581039 0.007176 -0.194011 0.092280 0.143086 -0.031432 0.042654 0.189159 -0.096584 0.063721 0.479406 0.155095 -0.035642 0.149445 0.363194 0.043408 0.253165 -0.101193 0.185796 -0.052482 -0.288905 0.075504 -0.107957 0.131160 0.201953 -0.038459 0.480543 0.346111 0.110190 0.386101 0.336595 0.334955 -0.243820 0.017498 -0.118097 0.745796 -0.351438 -0.187340 -0.182163 0.394766 0.049484 0.210651 -0.637442 -0.728359 -0.267574 -0.683401 0.010218 -0.077240 0.070244 -0.022626 -0.097088 -0.587193 -0.403404 0.180871 -0.139745 0.724664 0.321335 0.080515 0.566654 0.301191 -0.174456 -0.104738 0.282922 0.243777 -0.049130 0.018843 -0.271457 0.100268 -0.629329 0.196739 0.555190 -0.207462 0.280395 -0.065668 0.279538 -0.523133 0.811010 0.258152 -0.601629 0.291310 0.467259 0.548221 -0.193158 -0.366594 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 0.285809 -0.780772 2.005291 1.366088 -0.437934 -0.012412 0.640627 -0.377617 0.501371 -0.532038 -0.430106 0.690174 -0.965999 0.275247 -0.648398 0.497661 -1.659007 -0.900235 -0.195057 -0.401240 -0.127127 -0.260940 0.610582 0.500811 1.092073 0.909295 -0.643509 -0.669691 -1.140496 -0.135760 0.681766 -0.334841 0.751040 0.561701 0.130814 -2.035266 0.758261 0.819530 -0.440724 -1.156191 0.880274 -0.582971 -0.000922 -1.100285 -0.401028 0.175822 0.434557 1.032155 0.496880 0.406502 -0.646475 0.190758 0.398722 1.675761 -0.360955 0.479051 0.953831 -0.123088 -0.059769 -0.369420 0.309063 -0.212444 0.234891 0.107391 -0.122438 -1.030024 -0.497697 -1.031063 -0.599609 0.561504 0.244733 0.411171 -0.930763 -0.173612 -1.210967 -0.069518 -0.540013 1.268413 1.341936 -1.263169 0.819582 0.094427 0.318968 0.026560 -0.035805 0.486329 0.009090 0.440035 0.131817 -0.223965 -1.357060 -0.292054 0.114851 -0.621163 -0.413232 -2.068021 0.807336 -1.386714 -1.041660 0.203164 0.543687 -0.662412 0.267130 0.017172 0.036432 0.861458 -0.577398 -0.554696 0.048481 -0.020992 0.259662 -0.113861 0.259732 0.407164 -0.271648 -0.758691 -1.408582 0.604839 0.071017 -0.287115 0.402884 0.723658 -0.366395 0.289942 -0.049261 0.361199 -0.541718 1.301435 0.344429 0.232299 0.253402 0.103763 0.108434 0.040462 0.773033 1.453636 -0.781283 -0.145361 -0.474439 0.323754 -0.315470 -0.512337 0.163770 0.453993 0.156959 -0.994012 -0.909973 -0.782998 -0.756538 -1.155438 0.052384 -0.476599 -0.226913 0.984155 0.709116 0.599545 0.697696 1.349207 -0.602507 0.204038 0.084496 -0.319107 0.558597 0.360331 0.621502 -0.463449 -0.566431 0.513055 -0.123048 0.741586 -0.028368 0.254268 0.387196 -1.050522 -0.253168 0.272447 0.669505 -0.323197 0.808338 0.857896 -0.529757 -0.483102 -0.229160 0.647134 -0.439991 -0.256399 0.426914 -1.019333 0.689134 0.089510 -0.070308 0.754314 0.101431 -0.487245 0.851669 -0.253458 0.093324 -0.502922 -0.064936 -0.490976 -0.364688 -0.856517 0.539395 -0.406468 -0.415071 -0.694154 -0.740551 1.348518 -1.030348 -0.555696 0.453752 0.173864 0.747230 -1.358797 1.099479 -0.604372 1.094280 0.348365 -0.155721 0.297229 -0.566658 -0.943697 -0.293949 0.369967 -0.221824 0.103602 0.836813 0.666364 -0.236238 -0.003471 0.970524 -0.305168 1.138762 -0.346721 0.470326 -0.454100 -0.768220 0.284479 -0.042590 -0.251315 -0.255023 0.449878 1.350842 0.155280 1.185238 1.173577 0.441480 1.235459 -0.692113 0.178553 -0.226920 0.991481 -0.499993 -0.400944 0.073024 0.841931 -0.163958 0.656051 -1.322432 -1.961663 -1.323537 -1.250115 0.086417 -0.863346 0.289351 -0.410761 -0.216821 -1.151615 -0.858928 -0.005608 -0.280681 0.702028 0.952119 -0.050236 0.926229 0.734776 -0.851469 -0.124735 0.738578 0.997473 0.352688 0.005929 -1.268294 0.771999 -0.982964 -0.102865 1.797238 -0.770204 0.463005 -0.503025 1.370080 -0.852876 1.697507 0.342624 -1.373194 0.680541 0.996459 0.754045 0.590928 -0.680544 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.789443 -0.702282 1.656300 1.056237 0.145103 0.254162 0.739228 -0.595295 0.833717 0.605793 -0.070607 0.498032 -0.956896 0.161563 -0.489612 0.657158 -0.834992 -0.902829 -0.138707 -0.854567 -0.392576 -0.487954 0.412780 0.068559 0.835129 -0.453412 -0.666452 -0.653350 -1.357154 -1.105381 0.344643 -0.368280 0.677723 -0.886617 -0.261108 -2.728297 0.898207 0.924508 -0.515890 -0.954813 0.808996 -0.726023 0.264208 -0.073383 -0.328688 0.060340 0.349723 -0.140596 0.776125 0.447163 0.668552 0.280393 0.245834 2.337181 -0.854594 0.735234 0.454371 -0.279277 -0.570415 0.272255 0.115709 -0.252673 0.629891 0.223786 -0.287093 -0.888638 -0.101136 -0.434523 -1.010631 0.496703 -0.130369 -0.416413 -0.462573 -0.125376 -0.918483 -0.578942 0.001990 0.481373 1.321583 -0.816461 1.085096 0.026164 0.241599 0.154284 0.375762 0.223287 0.567524 0.141443 -0.260257 -0.440481 -0.366016 0.340308 -0.019276 0.847961 -0.257308 -1.056403 0.846294 -0.498789 -1.193291 0.414135 0.354577 -0.320849 -1.129260 -0.212842 0.227056 0.699116 -0.753745 -1.095974 -0.744459 0.318897 0.023521 -0.275082 0.102785 -0.888200 -0.385433 -0.549895 -1.105452 0.197393 0.064937 -0.482665 -1.055129 0.983002 -0.501927 0.245474 0.130723 0.843676 -0.528635 0.870621 -0.070003 0.629790 -0.026624 0.016031 -1.637803 -0.628387 0.494151 0.966161 -0.493667 -0.091727 -0.675407 0.135071 -0.581371 0.194022 -0.060865 1.023963 1.167689 -0.588863 -0.612747 -0.334374 0.159231 -1.286837 0.164935 -0.617146 -0.242837 0.270834 0.757524 0.359299 0.646916 1.645988 -0.492651 0.719980 -0.048345 -0.664362 0.890378 -0.411895 0.814425 -0.644712 -0.674018 0.190500 0.551297 0.539785 -0.054591 0.173420 0.120108 -0.994985 -0.377535 0.001375 0.419351 -0.209555 0.700094 0.775158 1.817300 -1.400025 0.133721 0.563533 -0.458136 0.068690 0.022745 -1.034393 0.169628 0.468276 -0.502064 1.073253 0.124769 -0.903149 0.464800 -0.321892 0.305580 -0.739630 0.396365 -0.665316 -0.167800 -0.430227 -0.545558 -0.587925 -0.462107 -0.590501 -0.557594 1.221334 -0.810341 -1.068616 0.808105 -0.007706 0.317763 -1.918996 1.831473 -0.741795 0.791495 -0.695083 -0.020402 -0.183155 0.976755 -0.618023 0.461619 0.338374 -0.563858 0.769017 1.631509 0.569609 0.419995 -0.226341 1.100399 -0.159026 0.684561 -0.348114 0.993906 -0.327159 -0.722068 0.054431 -0.261553 -0.033217 -0.019255 0.357172 0.583910 0.695269 -0.061943 0.525901 1.038181 1.061300 -0.460233 0.734806 -0.188438 1.072666 -0.301556 -0.333920 0.195240 0.635358 -0.042851 0.540352 -1.380254 -1.311099 -0.653255 -1.454703 0.388663 0.288079 0.055711 -0.156151 0.045352 -1.490652 -0.602522 0.623809 -0.333852 1.153462 0.598342 0.381406 0.819872 0.914452 -0.454673 -0.248391 -0.094596 0.203368 0.012596 -0.511319 -0.571258 0.691614 -1.043832 0.368979 0.841238 -0.368074 0.288385 0.336841 0.421650 -0.884005 1.480928 0.342271 -0.397704 1.154885 0.894274 1.436844 -0.291045 -0.511648 -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.648814 -0.716958 2.021136 1.283037 -0.211110 0.277506 0.619267 -0.838631 0.920866 -0.121114 -0.138628 0.465632 -1.132396 0.264217 -0.725204 0.445881 -1.451212 -1.037056 -0.391931 -1.061855 -0.449066 -0.539576 0.483297 0.325870 0.908921 0.054304 -0.827105 -0.518081 -1.578589 -0.582958 0.818465 -0.329879 0.817582 -0.374979 -0.134696 -3.331437 1.031867 1.032670 -0.603131 -1.087786 0.952928 -1.059643 0.172109 -0.604952 -0.612739 -0.026437 0.143725 0.169026 0.885299 0.156011 0.214834 0.463553 -0.053951 2.659575 -1.030776 0.761809 0.579960 -0.272542 -0.613098 0.202544 0.090873 -0.070158 0.660922 0.260319 -0.503307 -1.177242 -0.034704 -0.825188 -1.088099 0.776260 0.006888 -0.307065 -0.571928 -0.210156 -1.431012 -0.578806 0.333725 0.937508 1.474618 -1.143499 1.050539 -0.143655 0.243278 0.215310 0.501538 0.315763 0.867860 0.177430 -0.112928 -0.467888 -1.005631 0.309520 0.064535 0.466878 -0.377644 -1.565579 0.911974 -1.270230 -1.366693 0.273947 0.524934 -0.549608 -1.063288 -0.218266 0.270847 0.708947 -0.755363 -1.126331 -0.566520 0.546093 0.004066 -0.217621 0.158770 -0.574147 -0.342521 -1.021491 -1.438336 0.490279 0.039436 -0.295698 -0.784299 1.249105 -0.749486 0.042303 0.136734 0.834347 -0.762687 1.250585 -0.311170 0.423771 -0.054423 0.005866 -1.128704 -0.682287 0.543398 1.562078 -0.709976 -0.323024 -0.740569 0.195510 -0.855769 -0.207854 -0.088046 0.907434 0.869137 -0.846084 -0.725349 -0.454844 -0.153212 -1.746263 -0.049029 -0.680586 -0.485945 0.718690 0.913379 0.918153 0.842026 1.852299 -0.540641 0.759182 0.006811 -0.761599 1.086905 -0.238804 0.915591 -0.741164 -0.838399 0.321793 0.019515 0.823542 -0.102877 0.274965 0.049340 -1.260745 -0.576295 0.127466 0.684959 0.017557 0.927396 1.124339 1.197052 -1.733125 0.296629 0.740210 -0.655215 0.016549 0.120500 -1.086466 0.234317 0.606596 -0.597579 1.309463 0.058445 -0.946055 0.387822 -0.210731 0.468818 -0.908318 0.161202 -0.691981 -0.182463 -0.815833 -0.425680 -0.656147 -0.585673 -0.878810 -1.069267 1.480413 -1.334392 -1.357920 1.195589 0.106374 0.825592 -2.223741 1.453410 -0.844116 1.318061 -0.507052 0.035504 -0.104954 0.477170 -1.029593 0.622083 0.359625 -0.698120 0.647377 1.730131 0.772685 0.485093 -0.314481 1.318354 -0.239616 1.009852 -0.607429 1.135099 -0.406845 -0.971107 0.259968 -0.310390 -0.202900 -0.113158 0.674414 1.051233 0.837925 0.652252 0.867846 1.214967 1.301933 -0.538715 0.571868 -0.311499 0.909834 -0.341487 -0.468783 0.319570 0.891292 -0.054010 0.494703 -1.649942 -2.017567 -1.260386 -1.815326 0.592672 -0.262850 0.016379 -0.133680 -0.029886 -1.744054 -0.739533 0.444870 -0.458231 1.798728 0.738507 0.352147 0.970498 1.240703 -0.907020 -0.166675 0.467517 0.606066 0.070051 -0.346899 -1.292503 1.126805 -1.092575 0.368689 1.472494 -0.605401 0.544644 0.190450 0.866294 -1.027011 1.840374 0.383507 -0.883314 1.215204 0.994847 1.293920 0.387585 -0.660816 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 0.301181 -0.308279 1.021312 0.718243 -0.278111 -0.105304 0.152422 -0.236063 0.397623 -0.279734 -0.346040 0.243688 -0.426041 0.320647 -0.322753 0.507447 -0.993390 -0.448202 -0.022038 -0.143110 -0.089433 -0.165929 0.551983 -0.023078 0.546207 0.716814 -0.327155 -0.247051 -0.244490 -0.172254 0.513914 -0.359315 0.343156 0.590105 -0.013321 -0.845379 0.480443 0.153062 -0.295040 -0.514413 0.390754 -0.237981 0.008406 -0.689721 -0.094430 0.153576 0.210879 0.680089 0.363921 0.312208 -0.268328 -0.014761 0.242077 0.669111 -0.325978 0.132021 0.355896 -0.074362 -0.058391 -0.215818 0.244048 0.002642 0.109102 0.311342 0.010039 -0.594353 -0.351888 -0.646467 -0.367742 0.402502 -0.050013 0.463550 -0.611167 -0.032930 -0.313527 0.061172 -0.791317 0.731684 0.796683 -0.608660 0.322618 0.057592 0.219921 -0.090888 -0.186593 0.288330 -0.020902 0.289769 -0.022071 -0.111522 -0.360679 -0.225796 0.161878 -0.451784 -0.056279 -0.954176 0.331482 -0.590412 -0.392603 0.067934 0.357702 -0.130824 0.293067 0.107506 0.086907 0.423222 -0.284585 -0.249458 0.255888 -0.278792 0.219327 -0.026112 0.047190 0.226102 -0.240881 -0.238375 -0.758496 0.108120 -0.156083 -0.261826 0.427703 0.217247 -0.065127 -0.011631 -0.060211 0.126487 -0.244130 0.803707 0.175976 0.278787 0.176653 0.236291 0.159698 0.346317 0.572873 0.611107 -0.345879 0.003382 -0.309161 0.081660 -0.341852 -0.493370 0.053829 0.073223 0.237157 -0.536317 -0.593643 -0.290956 -0.408408 -0.718136 0.128827 -0.412291 0.000198 0.503801 0.389844 0.324692 0.568413 0.743305 -0.537277 0.086087 -0.082644 -0.006222 0.376320 0.410369 0.349310 -0.187606 -0.193020 0.293617 -0.057012 0.136375 0.098078 -0.075591 0.238496 -0.659321 0.048300 0.438390 0.402551 -0.225631 0.243376 0.223352 -0.405715 -0.025313 -0.079619 0.519073 -0.017492 -0.195746 0.318067 -0.560237 0.534961 -0.068511 0.180730 0.070239 0.081206 -0.195973 0.305599 -0.193121 0.053496 -0.183245 -0.158816 -0.165574 -0.140280 -0.445968 0.547503 -0.119942 -0.193806 -0.067755 -0.132657 0.605218 -0.478774 -0.034584 0.280942 -0.036895 0.396076 -0.428268 0.498956 -0.383074 0.547482 0.164228 -0.089462 0.131241 -0.508083 -0.415973 -0.250214 0.230297 0.196746 -0.061863 0.352729 0.406180 -0.178426 0.084072 0.539274 -0.102758 0.641266 0.066480 0.192200 -0.177225 -0.239614 0.224742 -0.039272 -0.239008 -0.266585 0.205361 0.893068 0.093752 0.632281 0.817578 -0.044039 0.733415 -0.435677 0.138234 -0.126401 0.526030 -0.257161 -0.172920 0.110094 0.411713 -0.301850 0.343297 -0.574636 -1.084232 -0.739301 -0.403638 -0.172249 -0.485238 0.227389 -0.348886 -0.007598 -0.333350 -0.337666 0.083195 -0.180514 0.304560 0.396019 -0.096197 0.372218 0.411052 -0.498409 -0.218816 0.241612 0.491489 0.229965 0.201462 -0.728623 0.418527 -0.490376 -0.225305 0.924619 -0.492085 -0.010067 -0.234545 0.798017 -0.305067 0.802497 0.222312 -0.528913 0.482875 0.376914 0.360005 0.575105 -0.350305 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -1.320475 -4.366154 8.470483 5.465846 -0.823858 1.404498 3.212721 -1.187967 0.863119 2.251648 -1.935437 3.129708 -4.677128 -0.948059 0.254209 0.940012 -5.661685 -4.025994 -0.230905 -1.423756 -2.300720 -2.678808 -0.245268 5.072999 4.150674 3.017688 -2.788017 -1.465614 -4.792178 -4.682862 -0.551099 -0.597883 3.297834 3.813732 2.932754 -7.559666 3.617943 3.869037 -0.259335 -3.508553 2.407106 -1.241741 -0.030236 -0.796528 -1.379880 2.330249 3.936244 2.972872 2.318598 1.880838 0.088497 -3.138206 3.102681 6.189117 1.174071 3.521667 4.535492 -2.044917 1.761763 -0.826529 0.375054 -4.167161 1.463316 1.148563 -1.447885 -1.399542 0.928530 -2.858597 -2.014424 3.396427 1.733150 -1.975453 -3.421555 -2.965346 -3.717201 -1.097028 -1.621208 4.330464 6.306531 -4.436042 5.792301 2.685809 3.186131 -0.250772 1.424119 0.135770 3.120687 0.867470 -2.001571 -0.733584 -5.372202 -3.111185 -1.367665 1.540641 -2.084534 -1.925218 2.560456 -6.583073 -6.485855 2.384724 -0.014583 -2.873954 -1.732245 1.531992 1.854877 1.198826 -0.458462 -3.945094 -2.337527 1.587897 -3.190134 0.245159 -0.682580 0.721795 -1.314530 0.717091 -5.919160 2.402780 1.563060 -2.385632 -1.017089 4.766120 -0.228804 4.458417 1.207734 1.930613 -0.399741 4.131177 3.697949 0.752801 0.941119 -1.445013 -3.359927 0.522168 2.141155 1.108293 -3.196664 -1.739012 0.523127 1.768541 -1.003381 1.617858 -0.979883 6.388952 2.109656 -3.874180 -5.191242 -4.044638 -4.049100 -4.539716 1.172507 -2.205465 -2.434500 1.995038 2.659805 2.318330 0.376586 4.052654 -2.524004 2.489126 0.402134 -0.970084 -0.097686 -0.110876 2.942486 -3.625208 -2.188134 2.287938 2.313511 2.457415 -0.253941 -1.174987 1.428707 -3.598436 -3.392587 2.137517 0.468999 0.858054 3.859395 4.449228 7.541595 -3.541760 -0.813717 1.678870 -0.847746 -2.107184 2.145949 -4.514474 3.281493 0.111515 -0.253560 5.480243 0.456971 -1.920778 3.679438 -0.657406 0.402790 -4.145043 2.053669 -2.319273 0.323530 -2.163185 -0.651953 -3.328813 -1.868188 -2.692342 -2.145114 6.265113 -3.982597 -4.516373 3.109928 -0.516670 3.314593 -6.556127 6.529268 -2.290631 3.202713 -0.722362 -3.152721 -0.317418 -0.599531 -0.358172 1.151136 0.519503 -1.704496 2.031907 3.948215 1.552523 1.813084 1.111779 3.288214 -0.259902 2.747294 -1.336020 1.534046 -1.027391 -1.920695 -1.441478 -0.654687 0.183986 1.923325 -0.760314 2.064053 3.226564 0.502528 2.442778 3.259493 2.451823 -2.248302 -0.141396 -0.720063 5.120376 -4.081085 -3.397805 -0.445477 1.689179 -0.394296 1.765643 -7.046564 -5.525814 -4.017603 -5.685758 -3.351699 -0.783261 2.578289 0.754304 -1.088818 -4.901485 -3.359391 3.714884 0.563852 2.308547 3.297924 0.380791 5.605860 3.895130 -0.032213 -2.063417 1.157736 2.217025 -0.753458 0.150078 -4.687699 2.617507 -4.243249 3.295760 5.405837 -3.018190 2.768778 -1.557860 3.821179 -6.467035 6.456609 1.986308 -6.011129 1.662327 3.647478 2.615024 -2.284166 -3.438911 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 0.150933 -0.198671 0.732929 0.478694 -0.306875 -0.046414 -0.038371 -0.214169 0.314696 -0.343269 -0.301621 0.127655 -0.311883 0.214412 -0.292592 0.274436 -0.819903 -0.304900 -0.045576 -0.131636 -0.093738 -0.162282 0.315143 0.056141 0.319917 0.677273 -0.223751 0.040743 -0.136452 -0.134430 0.356458 -0.261345 0.205970 0.505059 0.081568 -0.588191 0.376772 0.121074 -0.208426 -0.363543 0.237544 -0.250547 0.026606 -0.553837 -0.154815 0.126094 0.122761 0.487207 0.272831 0.116108 -0.252297 -0.048436 0.116151 0.442045 -0.218464 0.103152 0.251084 -0.062403 -0.046436 -0.169753 0.146073 0.007620 0.062267 0.246066 -0.085803 -0.421737 -0.198580 -0.473818 -0.222907 0.343955 -0.113576 0.293285 -0.436235 -0.109428 -0.370985 0.017683 -0.563035 0.553709 0.587539 -0.455343 0.208131 0.033674 0.179312 0.004323 -0.043435 0.196240 0.148346 0.196080 -0.055417 0.006451 -0.177279 -0.149344 0.149432 -0.347399 -0.046300 -0.674919 0.204794 -0.760270 -0.307912 0.037024 0.239976 -0.100732 0.237582 0.075689 0.105290 0.239794 -0.198688 -0.196581 0.293245 -0.137250 0.127678 0.029704 0.061189 0.238775 -0.120650 -0.156433 -0.579666 0.100846 -0.102007 -0.150768 0.399909 0.237727 0.002347 -0.034123 -0.023479 0.067243 -0.170829 0.688889 0.058798 0.153888 -0.093767 0.225343 0.230472 0.265678 0.351926 0.289532 -0.296181 -0.043072 -0.141382 0.040715 -0.320827 -0.441407 -0.113186 0.008424 0.117517 -0.377723 -0.405192 -0.218505 -0.499771 -0.651554 0.033336 -0.282341 -0.149985 0.435921 0.300644 0.364738 0.420329 0.511143 -0.359400 -0.032631 -0.085232 -0.041316 0.299627 0.279545 0.280791 -0.153915 -0.131851 0.266891 -0.137801 0.155351 0.103027 -0.107144 0.135109 -0.475031 0.071439 0.456410 0.365377 -0.019781 0.239691 0.212025 -0.404391 -0.010242 0.001046 0.376962 0.003765 -0.137667 0.221224 -0.360051 0.388415 0.003871 0.180600 0.040473 0.039407 -0.051669 0.135499 -0.108747 0.121267 -0.225148 -0.178193 -0.108680 -0.022219 -0.362604 0.430745 -0.116991 -0.149578 -0.097907 -0.228851 0.433404 -0.533771 -0.023583 0.313856 0.044448 0.487649 -0.240506 0.115364 -0.295938 0.645241 0.164093 -0.018616 0.121594 -0.542133 -0.265935 -0.119635 0.157657 0.157136 -0.104281 0.129431 0.327837 -0.072366 0.073762 0.414049 -0.102921 0.470820 0.019218 0.110594 -0.098243 -0.157555 0.229572 -0.055798 -0.227967 -0.139286 0.217922 0.655628 0.122760 0.525695 0.620953 -0.004695 0.484967 -0.296143 0.020283 -0.133494 0.300877 -0.225759 -0.179553 0.077368 0.384295 -0.197692 0.135056 -0.453677 -0.853033 -0.774956 -0.260039 -0.158354 -0.441817 0.128722 -0.182462 0.022510 -0.171929 -0.232469 0.284541 -0.147200 0.388783 0.213411 -0.063136 0.286826 0.366137 -0.360488 -0.196572 0.248702 0.363871 0.134022 0.268966 -0.674112 0.387525 -0.362197 -0.139755 0.714076 -0.438133 0.006888 -0.073453 0.528377 -0.254229 0.540276 0.181688 -0.439719 0.341288 0.287306 0.181201 0.539257 -0.277210 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 0.344078 -0.321787 1.248789 0.835616 -0.545086 -0.061527 0.115763 -0.370778 0.362690 -0.800891 -0.384330 0.221430 -0.565909 0.303336 -0.489126 0.226730 -1.348244 -0.490432 -0.226917 -0.316314 -0.108968 -0.161731 0.470014 0.253380 0.602373 1.029714 -0.370855 -0.168190 -0.486247 0.260793 0.723297 -0.229276 0.409755 0.901902 0.132907 -1.191266 0.494632 0.332401 -0.318598 -0.603866 0.518601 -0.511060 -0.054982 -0.965873 -0.276161 0.082861 0.071904 0.868921 0.386095 0.060980 -0.603472 0.103793 0.030593 0.884618 -0.354831 0.178960 0.476551 -0.073486 -0.072088 -0.239069 0.157013 0.056970 0.086036 0.187622 -0.172821 -0.753197 -0.273099 -0.869641 -0.315429 0.519210 0.072949 0.383876 -0.629821 -0.180729 -0.730394 0.026309 -0.607856 1.020358 0.789617 -0.857607 0.308752 -0.071833 0.154261 -0.019722 -0.033159 0.324452 0.176520 0.260427 0.149841 -0.109620 -0.851463 -0.233225 0.203087 -0.697254 -0.217959 -1.291071 0.413692 -1.164732 -0.550226 -0.041430 0.437278 -0.407812 0.380971 0.145786 0.016032 0.406937 -0.264679 -0.245984 0.356562 -0.005010 0.193996 0.034011 0.073646 0.472570 -0.169610 -0.603097 -0.953537 0.445608 -0.111823 -0.045627 0.558108 0.454363 -0.204096 -0.103127 -0.018716 0.130255 -0.390407 1.070839 -0.001863 0.041447 0.092421 0.203362 0.469938 0.290439 0.546183 0.971887 -0.540884 -0.130636 -0.271442 0.127267 -0.467785 -0.693205 -0.001096 0.074362 -0.045439 -0.721915 -0.595009 -0.396414 -0.674537 -0.948265 -0.073278 -0.354278 -0.216695 0.771279 0.455829 0.767260 0.586174 0.838208 -0.481078 0.024651 0.017288 -0.154919 0.451237 0.506124 0.408081 -0.288953 -0.297724 0.354708 -0.450872 0.395920 0.013851 0.130618 0.168726 -0.795084 -0.075270 0.481278 0.562021 -0.033271 0.497028 0.583866 -0.822610 -0.274636 0.008012 0.545356 -0.266985 -0.233061 0.375177 -0.540493 0.510053 0.081786 0.067882 0.323401 0.036310 -0.131286 0.268045 -0.117236 0.162351 -0.329891 -0.289688 -0.199803 -0.180590 -0.678089 0.565149 -0.177457 -0.295658 -0.345518 -0.583575 0.777289 -0.843534 -0.241804 0.495216 0.082616 0.715465 -0.636690 0.254310 -0.424463 0.890569 0.310477 -0.048727 0.192084 -0.791190 -0.692065 -0.095077 0.196273 0.024289 -0.127778 0.403641 0.517504 -0.132819 -0.006082 0.673532 -0.230205 0.847349 -0.193433 0.273144 -0.230034 -0.421310 0.349546 -0.051526 -0.374781 -0.251971 0.419468 1.209286 0.161861 1.115237 0.933534 0.142329 0.846689 -0.422206 0.008717 -0.229470 0.383160 -0.293737 -0.326761 0.195894 0.583756 -0.182130 0.230797 -0.795693 -1.511408 -1.117722 -0.666443 0.069809 -0.903976 0.182071 -0.254523 -0.106981 -0.557988 -0.487887 -0.042156 -0.244126 0.728596 0.459266 -0.106362 0.494194 0.594975 -0.727985 -0.066990 0.679747 0.801895 0.270801 0.265745 -1.170445 0.705386 -0.516330 -0.187828 1.346726 -0.621305 0.280439 -0.293269 1.051109 -0.473010 0.985311 0.190261 -0.933447 0.468125 0.550232 0.192025 0.938386 -0.433646 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -12.104999 -15.977121 26.847269 16.052820 -1.537422 7.023989 5.647325 -2.565948 -0.496170 4.719358 -5.469188 18.036960 -11.333123 -3.913581 -4.494578 -1.432288 -14.301449 -12.564625 -2.413014 -7.331284 -7.522620 -3.467655 -11.313670 21.234694 10.873013 -4.547718 -10.665404 -0.124202 -24.147396 -12.173657 -11.130981 0.654701 9.234177 -15.280603 10.896896 -34.068632 9.913994 19.854516 -0.395842 -16.618861 7.829862 -8.451534 0.268818 0.027035 -15.712008 1.262816 12.297436 -0.893599 2.306243 2.490357 0.294239 -0.204434 6.444380 34.720288 7.188531 14.526202 18.820791 -7.136470 0.151564 -3.577895 1.181728 -14.534907 5.058260 -4.415550 -5.377537 -7.431360 3.056228 -1.953781 -1.915550 2.836957 8.763964 -13.812568 -2.248292 -10.464305 -21.843299 -8.903197 20.895289 6.920578 17.651581 -13.589170 18.732674 5.600154 8.174330 8.459220 13.026299 1.348798 13.798900 3.000238 -3.837022 0.427242 -10.318615 2.479941 -1.270491 14.485931 -10.691297 -13.116784 11.006112 -24.525751 -21.999304 10.957616 0.271763 -12.741109 -7.281619 -4.577003 4.337690 6.301782 -6.686191 -11.666284 -10.686962 10.537926 -7.042046 -4.045410 1.294988 -2.049869 1.985484 -1.565323 -17.407976 11.761644 12.469595 -2.275397 -8.511510 18.216544 -4.542604 14.390851 0.482956 8.587781 -2.821344 10.837868 8.035329 -0.588153 -13.094113 -6.847322 -12.328456 -8.065620 -0.440854 -0.368156 -13.134555 -6.297308 3.801526 7.161790 3.038638 11.185549 -5.585305 24.024155 2.729644 -5.556723 -11.729792 -17.213043 -15.230042 -11.984847 -2.795220 -3.764671 -19.247746 8.927331 9.190995 5.726142 -2.500214 13.901398 4.107370 9.977468 3.480483 -10.001467 3.387065 -17.185831 8.698187 -12.380512 -8.561546 8.975036 7.639344 15.982612 -0.359220 1.453897 4.296005 -8.130459 -10.034195 1.587082 6.335514 7.014727 18.483843 16.611727 32.903312 -12.750410 -3.257382 -1.573596 -8.195528 -2.849301 -0.092736 -10.622408 -2.693485 6.882881 -7.180696 26.658372 2.200092 -10.433537 10.409119 0.740032 3.474358 -13.809976 12.406046 -7.083879 4.092782 -2.552121 -8.972299 -13.205229 -1.974670 -19.491455 -18.092486 22.696922 -28.512414 -23.020096 7.045544 6.972905 14.628066 -28.388738 19.646976 -7.697391 25.246627 -1.266128 -5.761833 2.161700 1.828438 -6.761114 15.163957 4.219853 -10.897370 4.169255 10.325841 4.999527 7.846828 -1.212429 9.843708 -5.012257 8.108653 -8.486493 7.572275 -2.792606 -10.799228 -5.889539 -1.779602 -0.440087 9.475615 4.461869 -6.667096 6.092509 1.051579 -0.159527 18.834319 4.523599 -6.573665 0.434412 -4.914107 15.337963 -11.702157 -10.754064 -3.725860 12.979503 8.498079 2.113016 -24.380525 -12.556490 -23.648694 -21.201198 -0.423701 4.548227 1.071684 4.427518 -4.889724 -18.976024 -12.448134 22.799948 -0.047239 22.753863 13.297922 5.961842 18.197090 7.859915 3.516644 -4.681577 2.497121 4.350930 -1.522629 -1.220770 -12.596725 8.638000 -15.919883 12.120711 16.445966 -6.089229 13.504943 5.395650 -1.567033 -19.083639 19.945028 6.148151 -23.539906 1.813725 17.054050 9.608787 -15.465642 -11.821870 -PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 0.257267 -0.303793 0.963445 0.689449 -0.279384 -0.064943 0.173832 -0.270030 0.414871 -0.250016 -0.325759 0.186877 -0.483137 0.299463 -0.325886 0.465623 -0.957476 -0.430546 -0.038788 -0.165945 -0.081692 -0.220059 0.530866 0.006470 0.516698 0.683318 -0.290745 -0.223247 -0.276933 -0.158972 0.502333 -0.331838 0.331134 0.589508 -0.018181 -0.806925 0.470386 0.188453 -0.286252 -0.499311 0.387567 -0.297479 0.023855 -0.642385 -0.087057 0.145574 0.170593 0.673247 0.386516 0.260199 -0.218569 -0.029908 0.226834 0.658304 -0.361176 0.165744 0.312949 -0.051709 -0.069119 -0.167274 0.202599 0.023005 0.128572 0.319450 -0.045731 -0.559181 -0.320560 -0.609644 -0.388346 0.418267 -0.089703 0.414512 -0.623298 -0.043984 -0.328675 0.042589 -0.833012 0.716143 0.785481 -0.598324 0.337012 0.051938 0.182617 -0.107549 -0.127857 0.252207 0.042851 0.245902 -0.042008 -0.110865 -0.367862 -0.206686 0.160429 -0.443606 -0.065248 -0.927916 0.311915 -0.610943 -0.435426 0.045386 0.319556 -0.152710 0.268124 0.136283 0.086298 0.390719 -0.288469 -0.311465 0.249104 -0.204855 0.201575 -0.030317 0.045121 0.202601 -0.228972 -0.279709 -0.739567 0.088355 -0.155882 -0.275720 0.381336 0.263202 -0.064825 0.004351 -0.020157 0.121395 -0.218105 0.805222 0.126534 0.267033 0.169910 0.233732 0.136831 0.341267 0.536621 0.577771 -0.327560 0.039653 -0.278710 0.074337 -0.362264 -0.467192 0.031867 0.082244 0.217974 -0.531091 -0.532376 -0.249334 -0.394649 -0.732383 0.133589 -0.395665 -0.011476 0.450134 0.395733 0.342619 0.545936 0.735961 -0.530392 0.055614 -0.063813 -0.025632 0.393126 0.415720 0.362808 -0.201944 -0.228861 0.282790 -0.057883 0.135608 0.064407 -0.037462 0.183457 -0.641933 0.052263 0.412266 0.385918 -0.199117 0.294501 0.249751 -0.367872 -0.066026 -0.007110 0.505145 -0.028953 -0.152189 0.278116 -0.575004 0.534689 -0.034981 0.164030 0.083658 0.058233 -0.171209 0.283640 -0.199142 0.091768 -0.247982 -0.158853 -0.195667 -0.148663 -0.476039 0.516754 -0.089572 -0.244788 -0.069847 -0.118715 0.591283 -0.457560 -0.028829 0.323123 -0.034232 0.400984 -0.420240 0.513236 -0.381027 0.527760 0.129478 -0.084995 0.129451 -0.444751 -0.380238 -0.239101 0.220418 0.168773 -0.012677 0.362588 0.395557 -0.143830 0.097248 0.545293 -0.091483 0.592298 0.013840 0.222386 -0.147524 -0.227125 0.248111 -0.073138 -0.212501 -0.233576 0.202608 0.934741 0.163960 0.590350 0.789702 -0.011791 0.703120 -0.392182 0.156216 -0.137647 0.480236 -0.252024 -0.169858 0.105082 0.372939 -0.284565 0.336238 -0.593085 -1.082194 -0.692880 -0.392828 -0.136122 -0.502342 0.236059 -0.290882 0.015680 -0.373663 -0.346042 0.097765 -0.205849 0.308701 0.348936 -0.061563 0.366204 0.449977 -0.465777 -0.179317 0.251105 0.485344 0.185191 0.180676 -0.694024 0.421676 -0.492560 -0.161172 0.874611 -0.473068 0.004549 -0.236758 0.773712 -0.331939 0.770856 0.222774 -0.483002 0.512262 0.396165 0.352064 0.573543 -0.341074 -PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -0.729296 -2.118441 2.974704 2.221432 0.117041 0.810760 1.029095 -0.279229 0.700088 1.051748 -1.175420 1.697670 -1.948302 -0.233776 0.484973 0.288274 -1.899929 -1.933327 0.323742 -0.118125 -0.638950 -1.307501 -0.730383 2.136683 1.260508 0.821700 -0.991682 -0.017644 -2.755330 -1.581392 -0.646005 -0.339004 1.292540 1.050044 1.453259 -2.480566 1.184124 1.934990 0.175587 -2.386499 0.537927 -1.165303 0.092155 -0.294582 0.101362 1.199391 1.808849 1.412689 0.625880 0.579034 -0.174790 -1.291985 0.395495 1.778642 0.510446 1.556892 2.067374 -0.851269 0.348993 -0.562855 0.372787 -1.763870 1.021505 0.843523 -1.371181 -0.588942 0.410807 -0.698177 -1.044293 0.990399 1.367723 -0.616711 -1.352990 -1.173596 -1.119062 -0.442760 0.548947 1.246873 2.899291 -1.151712 2.702036 1.145600 1.815742 -0.095521 1.437210 -0.090371 1.879622 0.383155 -1.395575 -0.272187 -2.708325 -1.415234 -0.507989 1.301666 -0.598342 0.252769 0.585565 -2.115295 -2.562155 0.858304 -0.324148 -0.816113 -1.102755 1.114019 1.240881 1.091704 -0.033093 -1.749446 -0.810993 0.620300 -1.633701 -0.515468 -0.203519 0.130984 -0.836219 -0.270949 -2.241900 0.312035 1.270517 -1.193321 -0.378585 1.887228 -0.826149 1.943098 0.158424 0.280434 0.287485 1.436734 1.539866 -0.013456 0.666414 -1.585281 -1.705272 0.310126 0.349131 0.849593 -1.368732 -0.396934 0.737431 0.713476 -0.059574 0.483473 -0.661368 2.665037 1.009534 -1.413471 -1.810162 -2.014770 -1.135637 -1.105278 0.516140 -0.988493 -0.721643 -0.004742 1.375911 0.564149 0.000970 2.308846 -1.098521 1.334220 0.297817 -0.118422 0.258815 0.128217 1.164890 -1.491248 -0.882896 1.239977 1.316306 0.638964 0.090224 -0.575532 0.597765 -1.482978 -1.611087 1.155013 0.259047 0.832777 2.116943 1.392085 3.083735 -1.292310 -0.149414 0.231730 0.016319 -0.653030 0.541499 -1.859573 1.254049 0.078388 0.440112 2.461148 0.110268 -1.280254 1.055566 0.260127 0.231841 -1.758297 1.161395 -1.037509 0.575926 -0.724222 0.007074 -1.292571 -0.934467 -1.314716 -0.312803 2.666627 -0.468574 -2.857854 0.745424 -0.617436 1.959304 -3.230086 1.674379 -1.118240 1.521431 -0.557039 -0.831920 0.136852 -0.440529 -0.202021 0.701227 0.765180 -0.423699 0.888224 1.014875 0.633192 0.510210 0.720026 0.904824 0.116714 0.440993 -0.527332 0.514869 -0.169488 -0.053341 -0.439455 -0.517959 0.623385 1.272781 -0.593685 0.542571 1.560635 -0.004701 1.122711 1.307833 0.313259 -0.978582 0.060288 -0.243292 2.243748 -1.391306 -1.111457 -0.817479 0.588712 0.153727 0.781653 -2.692011 -2.064956 -0.538914 -2.933324 -1.207341 0.250688 0.951735 0.802360 -0.079603 -2.128914 -1.067539 1.598004 0.329380 3.044334 0.993679 0.313937 1.958103 1.060862 -0.097818 -1.164338 0.245736 0.578439 -0.900895 -0.088986 -1.396380 0.796034 -1.855380 1.651903 2.017559 -1.203867 0.793274 -1.151318 1.871087 -2.278719 2.618780 1.236486 -2.573531 0.327799 1.100613 1.895134 -1.337991 -1.578110 -PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -1.680519 -6.470124 9.806965 7.394918 0.191721 2.444286 2.533277 -0.636324 0.553714 4.844707 -3.514920 6.242714 -4.781388 -1.154713 2.566776 1.649189 -5.803793 -5.219987 0.833139 -0.509265 -2.596989 -2.864270 -3.412425 7.286330 4.516221 1.996120 -3.457605 0.149877 -6.965786 -7.288852 -4.332920 -0.650598 3.839496 2.946506 5.714989 -6.570463 3.944635 5.797310 0.868258 -6.299949 1.187543 -1.880747 -0.256153 -0.299058 -0.522427 4.307563 6.343811 2.755374 1.684103 2.528306 -0.043625 -4.288013 3.290322 5.228501 3.415831 4.922274 6.630438 -3.577291 2.518507 -1.900666 1.231249 -6.351852 2.458243 1.462638 -2.533208 -1.822501 1.029922 -1.304957 -1.250062 2.901912 4.640841 -3.212525 -4.047621 -4.459324 -3.563778 -1.633851 0.128776 3.794753 8.294914 -3.633450 8.050461 4.428670 5.473230 -0.065959 4.524583 -0.629900 6.151432 1.451257 -4.021673 0.530404 -5.622452 -5.513012 -1.291882 5.358183 -2.515518 1.589990 1.851944 -7.218976 -8.035969 3.905918 -0.658318 -2.834230 -3.197400 2.376719 3.500848 2.255345 0.437466 -4.701901 -2.717198 1.394142 -5.124028 -1.608172 -1.287284 0.525285 -1.703954 2.412117 -6.882825 1.664233 4.202823 -3.074388 -1.502760 5.410474 -0.480295 6.356733 0.127190 1.165014 1.008693 3.626849 5.279153 1.082942 0.775296 -3.952609 -6.180685 1.240274 1.463051 -1.205372 -3.814539 -1.675634 2.389469 2.785267 0.366857 3.921711 -1.879191 10.387214 3.234897 -3.354628 -6.452118 -6.678101 -4.748267 -2.262494 1.765976 -2.682242 -3.477686 0.089540 3.636905 0.717911 -0.751533 4.574230 -2.197933 3.923542 0.576845 0.140878 0.252667 -1.740932 3.134494 -4.678352 -1.865981 4.122188 4.892890 2.557180 0.729253 -2.190338 2.656359 -3.411515 -5.127851 3.839985 0.149817 2.209624 6.367939 4.408988 12.278390 -2.637968 -1.181807 0.275535 0.090013 -2.486050 1.939713 -5.116080 3.491071 -0.114356 1.362314 7.896134 0.472464 -3.251213 3.655836 0.654830 0.303230 -4.826954 4.231025 -2.749074 2.648568 -1.035298 -0.536012 -4.512839 -1.942174 -3.726004 -0.865003 8.375796 -3.306366 -8.104347 2.490468 -2.010505 5.134930 -9.053531 6.375492 -2.895992 4.000439 -1.925312 -3.717326 0.373396 -0.962502 -0.418389 2.809268 2.141836 -1.750934 1.695512 2.474683 1.314429 1.686779 1.946638 2.425986 0.003989 1.694114 -1.123416 1.600026 -0.322475 0.575736 -3.415118 -0.897379 1.338704 4.066293 -2.062213 -0.891686 3.292162 -0.834579 1.271707 4.038758 0.472560 -3.171539 0.125453 -0.785223 6.697178 -5.257529 -4.012547 -2.162528 1.415786 0.736051 1.981297 -8.382329 -3.924950 -3.025576 -6.889610 -5.369909 2.581453 3.484243 2.472929 -1.408045 -5.228662 -3.771444 6.931240 1.695176 5.264129 3.461348 0.816812 6.314226 2.493968 2.081661 -3.737161 -1.325012 1.089189 -1.806797 -0.174134 -3.813559 2.414665 -5.807381 5.164499 5.878958 -3.424303 3.126047 -2.189435 4.823573 -7.495682 7.093743 3.207388 -8.390810 -0.031911 5.023819 4.099357 -6.362301 -4.913589 -PE-benchmarks/largest-independent-set-problem.cpp__main = 0.754952 -1.030606 7.348457 5.122280 -3.064880 0.257035 -0.892438 -3.761628 2.447970 -1.980387 -0.653196 1.442821 -1.415829 1.591495 -0.454577 2.591778 -7.165524 -1.505231 -2.072843 -3.872620 -2.127657 -0.308598 1.358997 0.692248 2.780215 3.822768 -2.809107 0.142157 -0.350490 -2.433029 3.032229 -1.033423 2.462912 1.968522 1.268922 -11.406447 4.478992 1.929169 -2.047410 -2.938382 2.142699 -1.776688 -0.318052 -3.169384 -3.297086 0.492751 -0.590802 1.879556 2.548852 0.848221 -1.456949 2.229317 1.318300 7.248956 -1.722671 1.400626 1.856923 -1.728709 -1.614115 -0.317084 0.820741 0.903008 1.223786 0.288654 0.249718 -5.179565 -0.517237 -3.102948 -2.349797 2.930773 0.731609 -1.436850 -2.105188 -1.943949 -3.704597 -1.222147 -1.486757 4.848875 3.850296 -4.120242 1.205339 -0.567151 -0.223262 1.184214 1.147506 1.054410 3.609429 1.422604 0.731807 0.312405 -0.785761 -2.106592 2.378591 -1.445949 -1.824750 -7.126600 2.016665 -5.550853 -2.994663 1.381128 3.444885 -1.859979 -2.296793 -2.992063 1.273436 1.304065 -1.532933 -1.562179 0.180703 0.933053 0.350576 -0.567289 -0.733144 0.521654 -0.405966 -0.910488 -5.143976 2.812890 0.013695 1.084297 0.359924 2.932190 -0.451932 -1.918634 -0.658690 2.053539 -3.018457 4.848699 -1.788139 1.988128 -0.953357 2.156847 1.203866 0.331698 2.169756 1.997038 -1.320614 -2.894663 -2.601216 1.201807 -3.511587 -0.411507 -0.289061 2.338467 2.908697 -1.064533 -3.160256 -1.623794 -3.256766 -6.013586 -0.189822 -2.200353 -2.387261 4.513976 2.599999 3.258519 3.251088 1.945555 -2.253476 1.197233 -1.044298 -0.643612 3.635397 0.717295 2.273445 -1.826589 -1.292891 1.692317 -1.509441 2.894385 0.385628 -0.003726 0.972823 -3.057693 -1.394272 2.395732 2.766292 0.514069 1.837438 3.618610 4.027266 -2.236658 0.173945 2.737872 -2.182511 -0.625370 1.208290 -2.211767 0.326741 1.488455 -0.353455 4.030136 -0.266527 -1.337519 0.164332 0.101573 0.816539 -1.395903 -0.459591 -1.139559 0.366945 -2.115035 0.090977 -2.505092 -0.692834 -2.844652 -3.898122 4.588020 -6.731444 -3.028962 5.340004 -1.705913 3.365156 -4.693355 3.268166 -2.285860 3.994534 -0.981024 -0.802436 0.082678 -2.947780 -4.795031 2.492805 1.109629 -0.722513 -1.132729 4.141607 2.517922 0.393175 -1.738586 3.678333 -1.603336 5.045539 -1.703330 4.096427 -1.754892 -0.860224 -0.178995 -0.300546 -2.389479 -2.010148 2.525545 2.772754 0.251389 4.280085 2.201474 2.240178 4.031691 -2.357917 2.268997 -0.909588 0.575840 -1.497322 -1.692094 2.355608 3.550237 -0.571204 1.005585 -4.554798 -5.199403 -7.662241 -2.842384 -0.125847 -0.303140 0.779685 -1.466839 -1.273215 -2.573137 -2.583272 3.522480 -1.007170 3.079149 2.689026 0.392173 2.761909 3.882469 -2.283212 -0.555066 0.776056 1.376913 1.659530 0.290143 -5.689283 5.154317 -1.929481 -0.344269 6.249491 -2.356786 2.179652 -0.159505 3.983534 -2.377688 4.459011 0.381126 -3.284692 2.285441 3.718050 1.328350 2.402524 -2.199866 -PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -1.592670 -3.558954 12.019646 8.122741 -2.484453 1.623315 -0.669236 -4.874574 3.283270 1.055762 -1.925511 4.880424 -3.104415 0.807434 0.499356 3.362020 -9.217094 -3.783551 -2.187053 -4.961074 -3.565159 -1.792250 -0.565511 4.071730 4.605187 2.612529 -4.975301 1.542111 -3.972280 -8.153101 -0.440638 -1.139080 4.020635 -1.422739 3.912268 -15.756734 7.255339 5.509787 -1.605839 -6.510558 3.125846 -2.861963 -0.201470 -1.575173 -4.923022 2.224724 1.921712 1.057792 3.610704 2.248391 -0.343078 1.555674 2.617520 10.775088 -0.126098 4.010307 4.617731 -3.732158 -2.001070 -0.843131 0.998639 -2.059136 2.557571 0.356303 -1.113474 -6.359470 0.856849 -2.003382 -3.523952 4.056159 1.675349 -5.415137 -2.756722 -4.488265 -6.320788 -2.331820 3.851045 5.698074 7.226564 -5.059947 4.538294 0.470889 1.335023 2.196510 3.648997 0.300212 7.120340 1.846759 -0.937008 -0.377647 -1.544513 -3.641224 1.939292 2.508918 -3.157164 -5.684456 3.156761 -9.896118 -6.887711 3.226029 3.359386 -3.734807 -5.949660 -3.182155 3.481168 2.624889 -1.019013 -3.930757 -1.485066 2.952752 -1.913776 -1.544518 -1.471113 -0.959942 -1.064561 0.851834 -8.207678 4.034312 2.450845 0.390689 -2.001666 5.884798 -1.417337 0.703073 -0.524569 3.836697 -2.589689 6.136442 -0.363385 2.952444 -2.345025 0.540733 -1.679568 -0.076570 1.420403 -0.869406 -3.341408 -3.427315 -1.851954 2.221005 -3.795344 2.440169 -3.005574 7.373986 5.411000 -1.638830 -5.776816 -4.105795 -6.172481 -7.890128 0.135737 -3.158060 -5.478994 4.982113 4.300288 3.287228 2.652667 4.617917 -2.793523 2.555350 -0.284346 -1.942087 4.488283 -2.512517 3.943641 -4.389753 -2.436229 3.816379 1.133238 4.346591 0.350544 -0.328988 1.999635 -4.500419 -3.562089 4.196238 3.210281 3.316321 4.638164 6.008833 12.465107 -3.555603 -0.612324 2.685442 -2.740291 -1.413910 0.921029 -4.280630 0.046450 2.420521 0.937903 9.468408 0.030154 -3.164043 1.412244 0.874710 1.514697 -4.161805 2.366490 -2.685089 2.709191 -1.443687 -3.132276 -4.842436 -0.992596 -5.777627 -5.828074 8.498417 -8.991793 -8.847276 7.523932 -3.087194 6.512217 -10.259101 6.016041 -3.829210 7.481102 -1.922379 -1.226127 0.000318 -3.468850 -5.491098 5.560451 1.934226 -1.466196 0.295178 5.933275 3.123246 1.670475 -2.039237 4.646357 -2.080041 6.459077 -2.607802 5.573588 -2.235990 -0.707678 -1.942598 -0.740959 -2.362876 -0.078411 1.654124 0.123501 1.699333 2.713897 2.159512 5.280655 4.464933 -3.611547 3.853734 -1.553346 3.090984 -3.572662 -4.023504 2.087939 5.324606 0.641861 1.535822 -8.742943 -6.336702 -10.645501 -7.892909 -1.399997 1.379819 1.833168 -0.714052 -2.150246 -4.948403 -4.413135 9.339912 0.405163 8.799140 4.242666 1.227400 5.552896 5.297075 -1.114132 -1.681745 -0.954256 0.392623 0.525967 -0.825094 -6.825086 6.513027 -4.299186 2.132838 8.442936 -3.742967 4.119276 -0.160416 2.054835 -6.044040 6.979817 1.663974 -6.015155 2.573412 4.924680 3.441600 -2.087241 -4.551193 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 0.201667 -0.475918 1.282157 0.905552 -0.240369 -0.048569 0.389245 -0.304591 0.485571 -0.135499 -0.367057 0.358127 -0.660228 0.339222 -0.446300 0.603968 -1.104747 -0.603787 -0.028292 -0.234019 -0.117806 -0.271992 0.641292 0.051070 0.729436 0.630325 -0.410552 -0.458481 -0.542378 -0.334816 0.535690 -0.389106 0.474757 0.448377 -0.087873 -1.260602 0.582056 0.365817 -0.362037 -0.711625 0.575196 -0.377372 0.026836 -0.673042 -0.135053 0.149966 0.293003 0.746156 0.474092 0.403058 -0.169418 0.015879 0.352197 1.082453 -0.437683 0.293552 0.473255 -0.077632 -0.126191 -0.174721 0.254987 -0.065245 0.212984 0.337526 -0.032564 -0.696184 -0.397855 -0.708760 -0.537576 0.468020 -0.069691 0.414461 -0.733969 -0.028999 -0.456183 0.000480 -0.847939 0.839211 1.028835 -0.770876 0.555916 0.065544 0.222216 -0.131053 -0.142666 0.312875 -0.006468 0.305104 -0.044897 -0.241771 -0.505324 -0.173125 0.135726 -0.355617 -0.127903 -1.209451 0.498782 -0.635249 -0.641860 0.115203 0.373976 -0.258397 0.202152 0.124061 0.086104 0.573496 -0.426102 -0.466381 0.101690 -0.203463 0.236146 -0.097806 0.071909 0.124726 -0.309034 -0.367096 -0.938973 0.140020 -0.125146 -0.393215 0.259494 0.378320 -0.121731 0.125929 -0.013107 0.252583 -0.279275 0.941114 0.213456 0.357225 0.270533 0.239433 -0.071272 0.279756 0.673549 0.803870 -0.457947 0.055323 -0.385210 0.129094 -0.366559 -0.443295 0.069835 0.269774 0.385832 -0.669504 -0.687085 -0.364607 -0.344132 -0.876208 0.166921 -0.502451 -0.009468 0.520582 0.516320 0.320120 0.625095 1.031305 -0.633950 0.189310 -0.018788 -0.117109 0.481500 0.371258 0.474909 -0.308165 -0.362586 0.326761 0.071162 0.232626 0.017682 0.040905 0.244155 -0.809606 -0.027366 0.391425 0.460297 -0.306444 0.410806 0.365643 -0.119720 -0.239885 -0.059823 0.581316 -0.128530 -0.172747 0.305120 -0.801931 0.607927 -0.009304 0.101397 0.271947 0.102846 -0.344766 0.475061 -0.273663 0.079966 -0.335222 -0.057098 -0.320672 -0.237033 -0.546045 0.459518 -0.144119 -0.308778 -0.173536 -0.173960 0.828544 -0.582057 -0.180008 0.353908 -0.040959 0.393039 -0.782100 0.929534 -0.493202 0.586573 0.082577 -0.129448 0.132749 -0.296864 -0.497123 -0.242178 0.290303 0.086512 0.122374 0.650129 0.474827 -0.140196 0.083317 0.715496 -0.114365 0.718864 -0.026648 0.343393 -0.214394 -0.390985 0.225458 -0.090793 -0.202095 -0.250496 0.239474 1.086725 0.218612 0.601460 0.921078 0.139881 0.920262 -0.499441 0.278383 -0.175250 0.748835 -0.319122 -0.229375 0.096902 0.475612 -0.293494 0.505575 -0.831083 -1.337297 -0.792120 -0.675267 -0.080854 -0.513216 0.307720 -0.379887 -0.006693 -0.665148 -0.490123 0.101396 -0.248071 0.409845 0.540686 -0.019209 0.525546 0.540319 -0.539599 -0.187266 0.243553 0.592846 0.215695 0.071718 -0.741511 0.458365 -0.690274 -0.117377 1.055918 -0.522149 0.069385 -0.258652 0.898138 -0.487918 1.070066 0.288964 -0.623106 0.671978 0.555000 0.573871 0.479937 -0.443778 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = -0.145337 -0.623839 0.786901 0.567470 -0.154657 0.130551 0.414390 0.054622 0.179863 -0.307751 -0.308085 0.344542 -0.617005 0.042095 -0.279978 -0.041525 -0.635840 -0.553546 0.052835 0.021841 -0.003095 -0.262529 0.061799 0.453058 0.340563 0.503264 -0.213503 -0.341652 -0.845651 0.277997 0.377308 -0.108320 0.408494 0.510991 0.067031 -1.123368 0.094882 0.466299 -0.115850 -0.750275 0.324953 -0.458230 0.064617 -0.501023 -0.144812 0.069768 0.334902 0.518492 0.036100 0.036525 -0.421167 -0.134990 0.004733 0.869209 -0.051283 0.324981 0.662257 0.016605 0.018060 -0.211883 0.170583 -0.224433 0.226613 0.192403 -0.316641 -0.224393 -0.205195 -0.584075 -0.379337 0.195556 0.156055 0.301138 -0.399512 -0.129056 -0.552341 -0.076506 -0.249292 0.590333 0.757240 -0.674096 0.664826 0.116222 0.402586 -0.010740 0.160696 0.230742 0.024899 0.183975 -0.106848 -0.086278 -0.913169 -0.104438 -0.097277 -0.215841 -0.196638 -0.698264 0.396048 -0.550008 -0.562299 0.140276 -0.017992 -0.215157 0.106999 0.210246 0.027762 0.556368 -0.350919 -0.384959 -0.185247 0.123073 0.008951 -0.093406 0.141848 0.379002 -0.198692 -0.686605 -0.625105 0.170911 0.232166 -0.345607 0.222969 0.481994 -0.352520 0.407715 0.010200 -0.015624 -0.142301 0.759155 0.360402 -0.180515 0.251667 -0.279578 -0.208236 -0.020752 0.274919 1.125276 -0.483901 -0.052003 0.089367 0.137280 0.063103 -0.409773 0.112600 0.192940 0.082512 -0.504122 -0.392314 -0.598383 -0.202803 -0.557219 -0.064875 -0.302265 0.118172 0.577306 0.390643 0.444994 0.163128 0.968973 -0.380626 0.264614 0.070124 -0.209426 0.045747 0.409292 0.264536 -0.270759 -0.403285 0.239643 0.017193 0.324865 0.045808 0.024918 0.077392 -0.486710 -0.300575 0.239373 0.389268 -0.058923 0.538962 0.413970 -0.342758 -0.497193 -0.074152 0.082474 -0.185496 -0.107993 0.129610 -0.586429 0.432626 0.032214 -0.177527 0.327193 0.014514 -0.297747 0.407051 -0.143220 0.045239 -0.336194 0.080388 -0.323559 -0.237637 -0.528636 0.263840 -0.186672 -0.320303 -0.372994 -0.272877 0.709864 -0.372921 -0.362606 0.002990 0.213610 0.435832 -0.810792 0.420551 -0.292088 0.679097 0.099762 -0.152388 0.092920 -0.163271 -0.144301 -0.208299 0.240258 -0.206197 0.082685 0.426584 0.268758 -0.071962 0.236194 0.430960 -0.009209 0.197417 -0.210376 0.073099 -0.139668 -0.381761 0.262694 -0.139256 0.185069 0.119638 0.135235 0.866183 0.360008 0.488943 0.629848 0.352540 0.322511 -0.287886 -0.170036 -0.107336 0.742869 -0.263207 -0.148550 -0.306328 0.419316 0.003470 0.191303 -0.645936 -1.090390 -0.478657 -0.745459 -0.002390 -0.444955 0.098776 0.003643 0.036669 -0.754577 -0.358197 -0.234564 -0.251445 0.731129 0.355371 0.076093 0.570897 0.345378 -0.450848 -0.185383 0.601068 0.546771 -0.111223 0.140216 -0.581223 0.188692 -0.536179 0.156542 0.763872 -0.266641 0.222739 -0.137953 0.832079 -0.423379 0.979600 0.347756 -0.848888 0.250360 0.422075 0.423357 0.252423 -0.378690 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -1.105754 -2.289780 3.208789 2.326593 0.798821 0.724500 1.919669 -0.225437 1.330756 2.027895 -0.873866 1.839097 -2.347928 -0.035706 0.360655 0.952102 -1.545151 -2.356587 0.569580 -0.229359 -0.717658 -1.666032 -0.025625 1.447293 1.679407 -0.379858 -1.202574 -1.005089 -3.293601 -2.104856 -0.455592 -0.617167 1.489177 -0.501192 0.794885 -3.752218 1.335638 1.936582 -0.033379 -2.844107 0.969878 -1.254251 0.562363 0.095259 0.455039 1.044147 2.149626 1.415829 1.100936 1.178790 0.538103 -1.111520 0.438293 3.097170 -0.234373 1.673957 1.862295 -0.809997 -0.217568 -0.233972 0.429835 -1.937775 1.327964 1.024600 -1.295060 -0.670809 0.246141 -0.676761 -1.835598 1.030703 1.155068 -0.568429 -1.628742 -0.731463 -0.906575 -0.572549 0.343429 1.239303 3.342669 -1.317094 3.069657 0.992692 1.892282 -0.125804 1.120394 -0.059937 1.412042 0.304993 -1.607193 -1.052976 -2.809131 -0.986857 -0.825680 1.500572 -0.240476 -0.302431 0.851196 -0.755820 -2.762164 0.922312 -0.341768 -0.585344 -1.863973 0.998541 1.427267 1.765340 -0.477342 -2.320100 -1.644592 0.445996 -1.416379 -0.642085 0.143095 -0.982416 -1.292257 -0.779857 -2.323226 -0.151266 1.094294 -1.707206 -1.401028 1.955409 -1.454722 2.178288 0.321647 0.776046 0.245093 1.449194 1.789505 0.455758 1.340326 -1.727211 -3.181412 0.038259 0.568944 1.790036 -1.159063 0.217845 0.024218 0.612309 -0.302577 0.577368 -0.317755 2.900891 1.851284 -1.647882 -2.008681 -1.751943 0.036205 -1.118297 0.940199 -1.241330 0.006248 -0.259738 1.539360 0.248834 0.246427 3.253468 -1.644156 1.844269 0.282724 -0.374692 0.573016 0.100827 1.430393 -1.612100 -1.099288 0.881480 2.055412 0.407065 -0.144453 -0.422790 0.682764 -1.855475 -1.555474 0.469630 0.363161 0.307760 1.890874 1.170565 3.979941 -2.148728 -0.326590 0.562274 -0.023042 -0.524431 0.354607 -2.397394 1.402364 0.075272 0.163983 2.470850 0.225334 -2.027107 1.531770 -0.042957 0.218184 -1.655985 1.231406 -1.387553 0.002688 -0.608288 -0.452039 -1.297374 -1.003845 -1.194653 0.100292 2.855756 0.278571 -3.144518 0.654367 -1.116743 1.406237 -4.116300 3.461038 -1.314847 0.821520 -1.078369 -0.601871 -0.193864 0.991200 -0.155164 0.563401 0.854490 -0.450103 1.564340 2.217807 0.701887 0.591668 0.645444 1.267234 0.362688 0.444132 -0.262576 0.879760 -0.474729 -0.311582 -0.411503 -0.561977 1.015445 1.222956 -0.691226 0.878070 1.798845 -0.675405 1.538180 1.688366 0.870621 -1.088510 0.709862 -0.289771 3.029509 -1.245244 -0.918769 -0.763484 0.551706 -0.092995 1.341935 -2.855780 -2.343574 0.225404 -3.623385 -0.756026 0.611331 0.813890 0.325602 0.068753 -2.853506 -1.019997 1.024704 0.278199 2.924243 1.161733 0.340032 2.055481 1.265850 -0.448813 -1.151133 -0.069199 0.198085 -0.974032 -0.835338 -0.775210 0.485866 -2.449465 1.671712 1.764672 -1.022335 0.457314 -1.125106 1.611680 -2.356284 3.067571 1.350823 -1.888460 0.946319 1.154644 3.151438 -1.793715 -1.568720 -PE-benchmarks/rat-in-a-maze.cpp__main = 0.236987 -0.343053 0.977535 0.695905 -0.282672 -0.036224 0.187093 -0.234453 0.332189 -0.264094 -0.338967 0.236270 -0.448752 0.232475 -0.332829 0.384483 -0.886114 -0.405913 -0.054842 -0.174519 -0.053940 -0.145520 0.406924 0.079105 0.513210 0.670656 -0.260556 -0.248242 -0.358438 -0.123049 0.422608 -0.254198 0.320334 0.548644 0.022198 -0.764026 0.417435 0.293578 -0.266540 -0.545881 0.397236 -0.288235 -0.022601 -0.572788 -0.080481 0.145269 0.169652 0.629199 0.281135 0.257979 -0.263475 0.009988 0.248406 0.660756 -0.242553 0.200520 0.413051 -0.036484 -0.037017 -0.161625 0.197071 -0.007531 0.094300 0.204650 -0.025443 -0.546353 -0.332901 -0.570715 -0.306343 0.327493 -0.046485 0.297602 -0.543351 -0.110633 -0.360693 0.029873 -0.836761 0.681519 0.712059 -0.621555 0.359537 0.063856 0.163997 -0.081193 -0.089219 0.251254 -0.005487 0.255493 0.029050 -0.079519 -0.407533 -0.214332 0.165267 -0.435634 -0.171850 -0.926946 0.385594 -0.622464 -0.447282 0.078725 0.317139 -0.229486 0.311481 0.137998 -0.001021 0.404837 -0.282712 -0.250873 0.219726 -0.122874 0.211436 -0.050928 0.018163 0.260670 -0.186093 -0.274923 -0.719315 0.209841 -0.061264 -0.207568 0.369525 0.279247 -0.037126 0.032476 -0.044834 0.108177 -0.225220 0.786634 0.145381 0.203820 0.134953 0.213710 0.112756 0.347240 0.504848 0.547682 -0.378187 0.040733 -0.198957 0.099322 -0.243245 -0.383557 0.000520 0.113149 0.174694 -0.502902 -0.493543 -0.331235 -0.427268 -0.651725 0.074376 -0.340045 -0.049741 0.454223 0.373844 0.372579 0.458510 0.707320 -0.472797 0.009915 -0.022170 -0.056841 0.313501 0.384681 0.325747 -0.211206 -0.241775 0.278676 -0.053695 0.176673 0.066854 0.039989 0.187466 -0.596182 0.045427 0.407049 0.370233 -0.200423 0.360492 0.334983 -0.374372 -0.049173 -0.070719 0.394483 -0.132441 -0.156354 0.259048 -0.551237 0.454437 -0.002742 0.160553 0.179513 0.061876 -0.104098 0.305563 -0.200015 0.050458 -0.225736 -0.086191 -0.211918 -0.178583 -0.431649 0.485459 -0.114825 -0.228204 -0.150118 -0.205257 0.609211 -0.475393 -0.049126 0.247490 0.009044 0.333291 -0.425776 0.482849 -0.355151 0.531225 0.175350 -0.089217 0.133684 -0.436002 -0.404722 -0.231408 0.213949 0.090586 -0.018287 0.357908 0.363454 -0.183720 0.080799 0.513373 -0.181328 0.574324 -0.062272 0.209680 -0.162931 -0.254158 0.221020 -0.052656 -0.215074 -0.221639 0.187317 0.889316 0.094186 0.599022 0.669841 0.016886 0.650002 -0.376256 0.155205 -0.118818 0.475343 -0.257517 -0.187799 0.074954 0.372794 -0.178605 0.281326 -0.609969 -1.005146 -0.698317 -0.416751 -0.072352 -0.514709 0.224020 -0.261932 -0.038044 -0.411039 -0.418986 0.089390 -0.198567 0.288156 0.374827 -0.029992 0.393173 0.388830 -0.411955 -0.109641 0.265643 0.505531 0.191041 0.135044 -0.634349 0.405875 -0.437035 -0.163475 0.880518 -0.412114 0.108514 -0.199569 0.734708 -0.346093 0.759497 0.195719 -0.569990 0.433005 0.455285 0.317950 0.449259 -0.341067 -PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -0.686553 -2.047017 2.904863 2.210224 0.219081 0.778414 1.025584 -0.313915 0.727002 1.274273 -1.098330 1.668060 -1.898719 -0.182972 0.552723 0.447789 -1.766335 -1.884472 0.309622 -0.131651 -0.668832 -1.301077 -0.630385 1.980345 1.281979 0.662712 -1.009181 -0.045390 -2.636697 -1.775051 -0.720034 -0.353291 1.263314 0.904343 1.394149 -2.300638 1.222717 1.879150 0.172393 -2.290107 0.516250 -1.049994 0.105576 -0.172934 0.188437 1.224573 1.772622 1.285820 0.689199 0.682019 0.034115 -1.265405 0.474988 1.670584 0.459602 1.527683 1.934375 -0.852395 0.336024 -0.525887 0.372917 -1.711530 1.010371 0.850578 -1.264367 -0.590413 0.382881 -0.593129 -1.055562 0.995461 1.301069 -0.654384 -1.369611 -1.148245 -0.942058 -0.425135 0.439254 1.146982 2.849161 -1.054217 2.618105 1.151573 1.737033 -0.137117 1.363496 -0.137208 1.823317 0.372223 -1.393850 -0.282216 -2.467709 -1.403879 -0.500760 1.408442 -0.567834 0.378501 0.558765 -1.868562 -2.502628 0.866047 -0.294907 -0.749248 -1.183105 1.093172 1.226894 1.045495 -0.000844 -1.742546 -0.825018 0.539877 -1.553168 -0.534678 -0.249340 -0.025700 -0.866164 -0.112135 -2.180338 0.221365 1.185935 -1.218454 -0.488421 1.785898 -0.767655 1.891395 0.152037 0.321044 0.308451 1.327379 1.521872 0.143979 0.689673 -1.506723 -1.823398 0.325473 0.377590 0.668620 -1.270052 -0.320606 0.631566 0.677253 -0.099345 0.613922 -0.636202 2.674499 1.143224 -1.352067 -1.815544 -1.882723 -1.037893 -1.029747 0.601522 -0.995128 -0.647119 -0.157349 1.334444 0.421206 0.021042 2.258454 -1.108793 1.314063 0.281683 -0.090109 0.292543 0.070910 1.141338 -1.456419 -0.850341 1.215238 1.419754 0.530182 0.104057 -0.577696 0.612410 -1.437829 -1.530188 1.113554 0.162961 0.743630 2.011806 1.284357 3.285466 -1.183726 -0.141547 0.281165 0.080293 -0.624186 0.520162 -1.843849 1.229756 0.031070 0.476481 2.394879 0.117405 -1.275513 1.059874 0.218782 0.224531 -1.707488 1.195937 -1.016136 0.606277 -0.657096 -0.039207 -1.232728 -0.880031 -1.164717 -0.144940 2.586919 -0.307317 -2.771388 0.742278 -0.684961 1.789199 -3.126382 1.802241 -1.087063 1.320538 -0.631451 -0.824816 0.112367 -0.303627 -0.168591 0.683669 0.754187 -0.357407 0.895551 1.049438 0.582592 0.475141 0.679134 0.867305 0.149232 0.451534 -0.446032 0.571168 -0.138901 0.030843 -0.509596 -0.502449 0.599319 1.196015 -0.681540 0.430824 1.514523 -0.164012 1.033521 1.213712 0.353486 -0.969467 0.191047 -0.196808 2.197703 -1.369110 -1.065152 -0.731932 0.504945 0.085543 0.826453 -2.592337 -1.878443 -0.352548 -2.824191 -1.239110 0.412097 0.973832 0.737419 -0.106999 -1.995792 -1.044289 1.657849 0.363787 2.850687 0.948727 0.299772 1.873553 1.026074 -0.021314 -1.130674 0.033571 0.441263 -0.850877 -0.169644 -1.215768 0.750761 -1.807805 1.588629 1.875133 -1.161788 0.735249 -1.137552 1.747143 -2.220325 2.511638 1.182050 -2.341412 0.388216 1.054844 1.951419 -1.444893 -1.523890 -PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -0.532171 -1.982064 3.044485 2.356768 0.438693 0.645237 1.119268 -0.367330 0.460273 1.644896 -1.016415 1.881042 -1.670681 -0.337479 0.754749 0.626395 -1.625897 -1.872440 0.151480 -0.155083 -0.463188 -1.192531 -0.441710 2.021203 1.611740 -0.102293 -1.199461 -0.242726 -2.633886 -2.523172 -1.176710 -0.215090 1.293604 0.471204 1.416131 -2.009631 1.256799 1.852615 0.238223 -2.228559 0.677974 -0.754848 0.036121 -0.101058 0.067904 1.453829 1.871769 0.277128 0.793552 1.022967 0.061528 -1.150210 0.784478 1.379462 0.659795 1.459453 1.896782 -1.058341 0.609039 -0.435284 0.346352 -1.819116 0.908277 0.545146 -0.788914 -0.644273 0.158883 -0.404413 -0.811728 1.165970 0.696468 -0.939028 -1.440964 -1.228171 -1.653790 -0.365471 0.562079 1.488419 2.592016 -1.264217 2.447131 1.012381 1.536901 -0.189639 1.140603 -0.199583 1.514711 0.423382 -1.140510 -0.327888 -2.067484 -1.982758 -0.760893 1.579201 -0.558183 0.979784 0.696657 -2.578161 -2.483406 1.000833 -0.205018 -0.897129 -1.629906 0.871887 1.001758 1.139109 0.334321 -1.620949 -0.958146 0.556126 -1.135595 -0.485846 -0.300159 -0.105010 -0.904776 0.461914 -2.217592 0.347622 1.092323 -1.136905 -0.869117 1.711688 -0.715706 1.912007 0.133296 0.529041 0.189085 1.265717 1.339507 0.694044 0.965038 -1.365497 -2.736142 0.027287 0.454458 0.186624 -1.269758 0.152314 0.364450 0.678261 -0.269934 1.004827 -0.591943 3.010339 1.253904 -1.336624 -2.093556 -1.774330 -1.166831 -0.919303 0.612465 -0.874470 -0.479067 0.398646 1.194571 0.413703 -0.074483 2.295701 -0.975978 0.881926 0.362488 -0.365995 0.211503 -0.782347 0.989788 -1.489006 -0.794195 1.296243 1.530141 0.589452 0.227197 -0.321577 0.836281 -1.342026 -1.759350 1.135887 0.128371 0.718582 1.851103 1.391566 2.642210 -1.254255 -0.355606 0.364995 0.013269 -0.704550 0.354019 -1.826819 1.372572 -0.112116 0.756073 2.306685 0.135648 -1.107766 1.222508 0.006548 0.231115 -1.474748 1.062973 -1.158655 0.778961 -0.499549 -0.903148 -1.101375 -0.839452 -0.860076 -0.108821 2.571657 0.044210 -2.739525 0.993614 -0.892936 1.494206 -3.427029 2.096864 -0.954025 1.319806 -0.494175 -0.712042 -0.051924 0.050152 -0.236322 0.450103 0.701808 -0.688395 0.959611 1.212553 0.437320 0.360652 0.425913 0.845321 0.158965 0.737233 -0.324807 0.575016 -0.301803 0.040399 -0.966061 -0.323987 0.638891 1.064521 -0.741524 0.118355 1.084454 -0.281014 0.877837 1.652371 0.668570 -1.011770 0.398325 -0.326005 2.312900 -1.474856 -1.307617 -0.473956 0.477294 0.056194 0.686229 -2.514334 -1.710284 -0.957793 -2.824476 -1.322623 0.147199 1.038634 0.402262 -0.461125 -1.924984 -1.143520 1.126002 0.616081 1.622374 0.998604 0.093341 1.890440 0.938523 0.204170 -0.842557 -0.470344 0.346143 -0.699564 -0.603371 -0.993164 0.616635 -1.968347 1.374917 1.866091 -1.043529 0.954455 -0.355126 1.002002 -2.333436 2.288275 1.003554 -2.228408 0.418296 1.340704 1.239293 -1.827963 -1.512245 -PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = 0.188481 -0.976991 2.198630 1.541618 -0.436448 0.141955 0.436177 -0.425932 0.765291 -0.209421 -0.712770 0.823655 -1.066707 0.178313 -0.165071 0.632475 -1.980143 -1.122210 0.148154 -0.200980 -0.288465 -0.637041 0.422249 0.740158 1.022993 1.545613 -0.666139 -0.217154 -1.093761 -0.822211 0.549014 -0.504080 0.846220 1.467163 0.600978 -1.854690 0.983817 0.728126 -0.268554 -1.477065 0.607845 -0.681828 0.048931 -1.133346 -0.011111 0.682863 0.797547 1.360925 0.654613 0.476053 -0.740646 -0.415599 0.403653 1.048414 -0.185831 0.548622 0.971330 -0.437351 0.152390 -0.447538 0.386900 -0.560993 0.485935 0.635306 -0.548801 -0.913084 -0.253115 -1.101509 -0.798032 0.909296 0.453501 0.296617 -1.240782 -0.358605 -0.810465 0.011092 -1.003066 1.505396 1.692002 -1.106021 1.215658 0.353521 0.878213 -0.205489 0.290384 0.296058 0.702887 0.463677 -0.458759 -0.405919 -1.605722 -0.988540 0.001667 -0.479496 -0.197332 -0.904850 0.528373 -1.552879 -1.252594 0.283881 0.364565 -0.465210 -0.193517 0.504059 0.643004 0.917691 -0.163868 -0.789312 0.113294 0.013613 -0.499134 -0.135500 -0.012836 0.478336 -0.591325 -0.384534 -1.571043 0.310869 0.260061 -0.527797 0.453467 0.893135 -0.303603 0.461031 -0.020471 0.177259 -0.206007 1.429547 0.641100 0.230967 0.653004 -0.286696 -0.193040 0.771648 0.842576 1.009654 -0.838851 -0.193766 -0.164108 0.385867 -0.519161 -0.663653 -0.276025 0.904601 0.482298 -1.161788 -1.312396 -1.017768 -0.849692 -1.162300 0.271941 -0.772954 -0.102041 0.931982 0.901684 0.675416 0.689453 1.349411 -1.261841 0.531588 -0.015781 0.113013 0.513884 0.917119 0.752097 -0.709276 -0.418915 0.734132 0.187386 0.440931 -0.009892 -0.290958 0.500447 -1.176578 -0.657065 1.028568 0.598816 0.193464 0.927933 0.781359 0.128151 -0.641393 -0.296498 0.717611 -0.068100 -0.556849 0.590974 -1.187787 1.173753 -0.075413 0.497589 0.881411 0.026280 -0.591131 0.609250 0.016679 0.124993 -0.725764 0.004626 -0.567174 -0.091552 -0.679754 0.504622 -0.614436 -0.626875 -0.677476 -0.425487 1.603127 -0.668927 -1.074126 0.757070 -0.723230 1.230126 -1.594825 0.731458 -0.802085 0.798569 0.096572 -0.297723 0.023984 -0.966302 -0.648187 -0.275497 0.485901 0.003039 0.224643 0.853568 0.718597 -0.074764 0.304472 0.872164 -0.073385 0.954779 -0.115635 0.362375 -0.425093 -0.148140 0.150373 -0.204246 -0.073211 0.105648 0.004997 1.480195 0.608303 0.983338 1.471432 0.321392 0.970524 -0.830876 0.067580 -0.246700 1.181246 -0.702035 -0.635792 -0.090989 0.584144 -0.330093 0.643703 -1.560114 -2.139717 -1.024242 -1.501489 -0.604265 -0.809196 0.654436 -0.173937 -0.063414 -1.142897 -0.721886 0.426130 0.022465 1.228183 0.740676 -0.164551 1.076871 0.877413 -0.782293 -0.622567 0.506028 0.775429 -0.014349 0.165044 -1.471487 0.845170 -1.142531 0.303640 1.926373 -1.038971 0.269345 -1.008424 1.705770 -1.122956 1.744196 0.635867 -1.562126 0.481424 0.643071 0.811409 0.382106 -0.958080 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 0.818894 -1.168914 3.124247 1.969952 -1.740597 -0.144409 0.300779 -0.143929 0.129626 -2.360066 -1.244290 1.138454 -0.968343 0.314907 -0.658125 -0.001070 -3.523343 -0.990292 -0.094597 -0.246004 -0.179455 0.041874 0.204330 1.371723 1.334199 3.164396 -0.637436 -0.549522 -0.833147 1.043917 1.360554 -0.398102 1.099005 2.680568 0.873794 -3.974008 0.719840 0.753191 -0.495679 -1.919585 1.066144 -0.972875 -0.202989 -2.419982 -1.161975 0.209110 0.873524 2.717862 0.127859 0.146005 -2.698526 -0.111156 0.443886 2.536124 0.400039 0.370027 2.073221 -0.487447 0.079218 -1.080156 0.555438 -0.657413 0.090704 0.021007 -0.282836 -1.479101 -0.639557 -2.297766 -0.310099 0.682499 0.962776 0.897134 -1.217543 -0.690834 -1.901114 0.038859 -1.258475 2.812769 1.795537 -2.381793 1.111287 0.041412 0.753119 0.271851 0.047208 0.967150 0.194095 0.811745 0.390723 0.053369 -2.437110 -1.282192 0.517265 -2.147836 -0.641290 -3.692526 0.930632 -2.996282 -1.176208 0.298626 0.797751 -1.175475 1.386406 -0.144261 0.133294 1.302245 -0.695616 -0.136121 0.528691 -0.070612 -0.080435 0.095052 0.199744 2.169377 -0.235349 -1.384479 -2.239950 1.542765 0.500220 0.136782 1.979088 1.088811 -0.248223 0.380811 -0.237831 0.013379 -0.783549 2.727075 0.711672 -0.662945 0.297510 0.093463 1.819118 0.866662 1.110975 2.470743 -1.455658 -1.004998 0.073362 0.685123 -0.284988 -1.652528 0.236568 0.575072 -0.350679 -1.388593 -1.555199 -1.900138 -1.995540 -1.810488 -0.413740 -0.665245 -0.520073 2.757918 0.979771 1.675647 0.789987 1.228075 -1.050995 0.251188 -0.050157 -0.122227 0.322771 1.575835 0.749789 -0.729043 -0.364802 0.848057 -1.037778 1.460964 0.023892 0.087871 0.732725 -1.455846 -0.673163 1.307434 1.653828 0.140847 1.218850 1.571570 -1.687523 -0.417317 -0.759065 0.597284 -0.889619 -0.920701 1.100970 -1.060307 1.149403 0.079326 0.024307 1.040546 0.104092 -0.268286 0.872859 0.023577 -0.180415 -0.390348 -0.543593 -0.388410 -0.526707 -1.228929 1.438473 -0.887497 -0.518124 -1.541329 -1.747425 2.107125 -2.693724 -0.707209 0.561657 -0.080782 2.020195 -1.766608 0.732179 -0.877518 2.236283 0.937631 -0.663358 0.545698 -2.561157 -1.486595 -0.176108 0.480483 -0.029019 -0.821187 0.577775 1.142321 -0.443581 0.203784 1.322143 -0.626625 1.743362 -0.468041 0.083911 -0.829091 -0.775132 0.460231 0.107842 -0.587825 -0.075732 1.062133 2.573632 -0.154384 2.894989 2.102779 0.630311 1.295600 -1.099806 -0.606107 -0.659340 1.417203 -0.910697 -0.962565 -0.188621 1.778931 0.063335 0.358027 -1.999804 -3.398449 -3.449716 -1.429277 -0.383030 -1.905702 0.522319 -0.489483 -0.343344 -1.457480 -1.117810 -0.167888 -0.372504 1.341272 1.483833 -0.345594 1.601766 0.899129 -1.336218 -0.542765 2.040926 2.065984 0.522957 1.023939 -2.983703 1.311066 -1.346169 -0.196171 3.472218 -1.339389 0.867827 -0.808974 3.042385 -1.205623 2.406241 0.557504 -3.356694 0.050817 1.671557 -0.194690 1.650201 -1.192669 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -4.421969 -15.961027 23.236863 17.594376 0.963569 6.782592 8.234558 -2.697481 0.858473 10.939911 -6.999822 14.562337 -11.852950 -3.014456 2.964724 2.708896 -12.821022 -12.440431 1.127948 -3.028309 -5.009581 -7.024806 -7.785137 18.229273 10.840825 -0.289275 -7.635925 -2.544292 -19.844281 -13.443080 -9.086670 -0.945672 9.206757 3.178962 12.019840 -17.935520 8.863031 15.173245 1.400496 -14.770984 3.886146 -5.596986 -0.156345 0.382217 -3.720245 8.084368 13.396580 4.813395 4.199134 5.857589 2.016879 -7.635655 8.528392 16.929839 6.797987 12.773440 14.443036 -7.545404 6.378725 -3.338917 2.357671 -13.753846 6.189311 1.642783 -4.499252 -4.959987 0.558526 -2.454756 -3.202243 6.052730 9.831257 -7.357083 -9.327501 -8.537991 -11.968023 -5.484509 -0.169895 8.790569 19.281322 -9.742944 19.557715 10.044292 11.707769 0.103372 11.650618 -0.428999 13.527027 3.135916 -8.084229 2.311295 -14.789233 -9.075991 -2.947984 10.432548 -7.563791 -2.523799 5.434686 -18.112429 -20.019551 10.171282 -1.370984 -8.326929 -5.710109 3.678586 6.355876 5.131351 -2.388440 -12.544605 -7.475050 5.384815 -9.610890 -4.214886 -1.272824 -0.444982 -2.007588 2.413923 -15.538012 4.940065 9.971821 -6.742473 -4.990806 14.827210 -1.218984 14.733418 0.657517 3.412453 0.649397 8.782167 10.620403 2.734176 -0.509251 -9.375387 -17.040935 1.154772 3.065039 -1.924844 -9.023254 -3.635735 4.715910 7.302633 1.641608 11.394927 -1.718360 23.474089 6.229857 -7.723140 -13.529351 -15.336195 -9.974218 -6.136857 3.380438 -5.042544 -9.691603 0.453482 9.197033 2.906823 -1.019437 9.419806 -1.425949 8.479377 1.409946 -1.686768 1.448511 -6.997702 7.655810 -10.731205 -5.909975 9.304499 11.181042 8.642215 1.634529 -2.704119 5.350884 -7.386041 -10.732224 4.796716 1.860700 4.057263 16.990912 12.154234 26.408756 -7.446485 -2.306478 0.724264 -1.699864 -4.095444 2.806892 -12.489633 7.135310 1.084905 -1.127088 19.236725 0.535635 -7.092013 9.976808 0.409990 1.784856 -12.404748 9.220701 -7.305531 4.084049 -4.199035 -2.184158 -10.801114 -5.343141 -10.181990 -4.720661 20.146644 -10.246962 -17.019679 6.039962 -3.113685 9.697653 -21.909497 18.248885 -7.090325 10.742687 -3.829450 -8.878321 0.696861 2.189567 -2.607046 7.034365 5.190317 -7.663067 5.869553 7.382170 3.532796 4.246405 3.430072 7.326990 -0.978964 4.253294 -5.023467 5.679814 -1.259549 -1.286402 -7.182391 -2.610101 3.411516 8.930229 -2.439965 -1.096051 7.146722 -1.618939 1.761264 12.280756 2.345516 -7.076109 0.244903 -2.900524 15.106445 -12.350241 -9.242314 -4.897527 3.427773 2.697575 3.876828 -20.798101 -9.618908 -10.627350 -14.805301 -8.723133 4.502517 6.315227 6.118165 -3.236992 -15.749521 -10.131071 14.254509 1.793860 7.780611 9.906644 2.535307 15.852143 6.818996 5.182870 -6.261700 -2.350776 3.399133 -3.811226 -1.644966 -8.821534 6.218405 -15.090144 13.123925 13.703860 -7.033012 8.624513 -1.373402 10.143545 -18.016063 17.538438 7.247158 -19.361428 1.196069 14.241582 9.208175 -14.697892 -11.068134 -PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.134523 -0.422937 0.798580 0.606300 -0.080653 0.037481 0.368405 -0.164814 0.444877 -0.117724 -0.277807 0.155998 -0.566054 0.211227 -0.320423 0.315704 -0.667078 -0.524513 0.028019 -0.100024 -0.032000 -0.304106 0.397227 0.047481 0.418112 0.389543 -0.224899 -0.352166 -0.592253 0.086425 0.524700 -0.261485 0.307434 0.456716 -0.062288 -0.716548 0.308276 0.255028 -0.228087 -0.570183 0.312543 -0.374665 0.058801 -0.516957 0.119426 0.102051 0.204531 0.653659 0.285981 0.198955 -0.142988 -0.074974 0.049145 0.730367 -0.388825 0.250022 0.366175 0.061291 -0.013227 -0.041842 0.192559 -0.012828 0.187419 0.349662 -0.161159 -0.375266 -0.286605 -0.558760 -0.424236 0.345436 0.011148 0.406819 -0.568058 0.014174 -0.294998 -0.000263 -0.876319 0.589375 0.793711 -0.588204 0.479039 0.130081 0.354463 -0.120520 -0.008008 0.206652 0.043636 0.193329 -0.148865 -0.156646 -0.717575 -0.106430 0.004870 -0.404956 -0.076440 -0.765827 0.320505 -0.345600 -0.486982 0.072226 0.154062 -0.074060 0.183944 0.281682 0.084497 0.425498 -0.326796 -0.408246 0.026987 -0.083630 0.111293 -0.075395 0.137146 0.094183 -0.231276 -0.502184 -0.637978 -0.012845 -0.035036 -0.383092 0.189003 0.340840 -0.261702 0.140977 0.004738 0.028622 -0.156825 0.670912 0.223985 0.149396 0.342319 -0.028639 -0.298709 0.284187 0.454999 0.870124 -0.282045 0.198474 -0.155740 0.083868 -0.214442 -0.387330 0.099996 0.078762 0.115106 -0.561429 -0.437008 -0.320862 -0.072582 -0.531061 0.154894 -0.374872 0.118566 0.239972 0.404897 0.418616 0.420348 0.855545 -0.524145 0.194628 -0.033020 -0.005477 0.257791 0.421849 0.321997 -0.202886 -0.322307 0.188104 0.072651 0.051358 0.071351 -0.054335 0.109192 -0.618173 -0.037839 0.199353 0.303854 -0.268031 0.391510 0.241836 -0.423158 -0.372695 0.037618 0.362244 -0.036734 -0.080471 0.173483 -0.630150 0.544991 -0.024187 0.059180 0.095986 0.034957 -0.253102 0.306456 -0.212982 0.089061 -0.243306 -0.103777 -0.269162 -0.318410 -0.489574 0.520126 -0.100481 -0.308744 -0.071910 -0.030368 0.576940 -0.158491 -0.115527 0.181588 0.013427 0.246706 -0.507479 0.564324 -0.342222 0.377054 0.069021 -0.063130 0.047564 -0.067506 -0.244630 -0.287264 0.245603 -0.011724 0.161797 0.453259 0.314431 -0.073500 0.209040 0.492859 -0.050343 0.308769 -0.068269 0.194695 -0.134980 -0.307711 0.275050 -0.141401 0.055530 -0.119260 0.124237 0.953876 0.309718 0.438325 0.708575 0.088385 0.526694 -0.335227 0.079405 -0.087430 0.560033 -0.223424 -0.062611 -0.070605 0.170060 -0.238243 0.318709 -0.565396 -1.004734 -0.313652 -0.478438 -0.018897 -0.479055 0.136248 -0.161693 0.074028 -0.590541 -0.324461 -0.227490 -0.258793 0.275552 0.309532 0.022723 0.391581 0.429228 -0.483134 -0.151301 0.336907 0.433263 0.004750 0.045406 -0.505126 0.295051 -0.499332 -0.008554 0.708589 -0.311250 0.009702 -0.216780 0.783403 -0.313993 0.832794 0.301001 -0.464999 0.441101 0.394971 0.587396 0.426733 -0.325460 -PE-benchmarks/partition-problem.cpp__main = 0.095647 -1.058425 1.770782 1.259401 -0.376580 0.254324 0.462407 -0.188674 0.473516 -0.409410 -0.740383 0.806307 -1.066893 -0.003237 -0.325808 0.149183 -1.585093 -1.060566 0.164371 0.058176 -0.104845 -0.613719 0.107154 1.050515 0.779025 1.533432 -0.488259 -0.130387 -1.383854 -0.376241 0.375688 -0.257649 0.724124 1.507327 0.634131 -1.197913 0.590252 0.885653 -0.086531 -1.464382 0.500465 -0.740816 -0.065094 -1.014416 0.040586 0.604113 0.733510 1.279850 0.294647 0.211527 -0.920441 -0.457855 0.218745 0.658928 0.104036 0.588349 1.115119 -0.205739 0.338274 -0.474292 0.314568 -0.572214 0.389789 0.523192 -0.703075 -0.537841 -0.196950 -0.946206 -0.567778 0.706059 0.461152 0.284267 -1.028859 -0.374165 -0.893989 0.103202 -0.634802 1.289605 1.428623 -0.992288 1.214811 0.355338 0.889554 -0.247473 0.394736 0.220668 0.543934 0.397930 -0.390086 -0.378249 -1.899385 -0.825756 -0.158164 -0.503083 -0.328696 -0.584411 0.529755 -1.660841 -1.195642 0.177998 0.085731 -0.563618 0.097295 0.746910 0.463219 0.857342 -0.067911 -0.670975 0.104904 0.260709 -0.517309 -0.141350 0.054635 0.769675 -0.447484 -0.543271 -1.308928 0.355244 0.464040 -0.513661 0.580287 0.872401 -0.321404 0.670849 0.003331 -0.065963 -0.027461 1.239741 0.720906 -0.155176 0.617581 -0.487149 -0.013796 0.715704 0.599610 1.047265 -0.974625 -0.065396 0.238827 0.379379 -0.122029 -0.704052 -0.396746 0.673806 0.041341 -1.125943 -1.050491 -1.134619 -0.844042 -0.860173 0.055001 -0.575207 -0.128036 0.852611 0.778592 0.713850 0.341558 1.316803 -1.037676 0.373179 0.207361 0.049627 0.155034 0.880588 0.547051 -0.640813 -0.541690 0.731580 0.087520 0.446504 -0.064150 -0.136149 0.333866 -0.942345 -0.705192 0.965456 0.521525 0.317921 1.080418 0.798635 -0.494989 -0.606726 -0.272089 0.352162 -0.139749 -0.485620 0.428758 -1.089984 1.090018 -0.072927 0.502168 0.862564 -0.011990 -0.400719 0.640519 0.053623 0.114170 -0.770295 0.107489 -0.582613 -0.154701 -0.715939 0.483177 -0.426237 -0.635276 -0.751283 -0.494892 1.438730 -0.515479 -1.029517 0.425000 -0.390649 1.177889 -1.427370 0.163223 -0.620160 0.865405 0.372758 -0.227752 0.103859 -1.006598 -0.416493 -0.421732 0.442034 -0.162048 0.260185 0.547767 0.534338 -0.131290 0.447694 0.624272 -0.078307 0.592144 -0.293169 0.082031 -0.289005 -0.268233 0.251193 -0.238155 0.111525 0.274371 -0.076209 1.462098 0.650063 0.971676 1.297044 0.327095 0.627271 -0.655040 -0.223807 -0.214037 1.071758 -0.655138 -0.579003 -0.372732 0.455898 -0.123778 0.474131 -1.386865 -2.014216 -0.832702 -1.542178 -0.438232 -1.126095 0.601670 0.037398 -0.061061 -1.159246 -0.740368 0.154906 -0.000785 1.384313 0.647998 -0.092588 1.023608 0.673356 -0.715166 -0.410586 0.767916 0.908045 -0.201627 0.190545 -1.255539 0.577193 -0.931078 0.420662 1.720785 -0.856908 0.422294 -0.997414 1.517915 -1.048556 1.605057 0.663532 -1.709968 0.201532 0.461537 0.569717 0.317371 -0.899975 -PE-benchmarks/longest-palindromic-subsequence.cpp__main = 0.369183 -0.771326 1.625278 1.144173 -0.679652 0.120544 0.268308 -0.201140 0.340317 -0.767051 -0.645070 0.580571 -0.792229 0.208022 -0.457840 0.062960 -1.609162 -0.576686 -0.091169 -0.161272 -0.091174 -0.280729 0.239097 0.756292 0.743831 1.578372 -0.350258 -0.444958 -0.820750 0.533980 0.729840 -0.211886 0.608529 1.368117 0.344165 -1.634218 0.323067 0.580264 -0.263799 -1.135469 0.603561 -0.606482 -0.000295 -0.950137 -0.279061 0.084012 0.368698 1.314665 0.224243 0.076349 -1.015585 -0.115060 0.448379 1.381752 -0.008724 0.410274 1.008678 -0.145845 0.126301 -0.412903 0.271380 -0.225029 0.194962 0.200753 -0.217602 -0.760740 -0.378710 -1.002161 -0.400400 0.507986 0.218287 0.478435 -0.818270 -0.424405 -0.867633 0.025549 -1.074678 1.478835 1.167738 -1.177142 0.735277 0.160621 0.383048 -0.039508 0.136072 0.398784 0.157833 0.383782 0.044144 -0.055480 -1.368845 -0.429063 0.186585 -1.034181 -0.415072 -1.701760 0.564932 -1.579806 -0.889704 0.175972 0.353401 -0.545212 0.759063 0.162261 0.055891 0.669280 -0.408349 -0.397628 0.215112 0.097839 0.065628 -0.083753 0.026938 0.783664 -0.173210 -0.677959 -1.109816 0.583904 0.166991 -0.220909 0.768440 0.725094 -0.086385 0.354807 -0.044004 0.109473 -0.257644 1.299744 0.411865 -0.130239 0.339925 0.069187 0.705880 0.643057 0.552781 1.160783 -0.839204 -0.168998 -0.009747 0.267833 -0.120685 -0.700361 0.052339 0.294672 -0.105908 -0.852899 -0.731101 -0.895139 -0.867785 -1.089614 -0.147190 -0.365792 -0.233173 0.937256 0.591900 0.931313 0.451518 0.765439 -0.655269 -0.016111 0.148025 -0.069058 0.263864 0.895138 0.449568 -0.476106 -0.456846 0.356113 -0.240427 0.457749 0.002719 0.136391 0.162079 -0.788402 -0.095942 0.642309 0.809467 0.000212 0.901036 0.834682 -0.593069 -0.372953 -0.194433 0.351786 -0.407972 -0.340258 0.347594 -0.878242 0.803195 0.053809 0.168957 0.589280 -0.002313 -0.057355 0.571229 -0.125796 0.060062 -0.399176 -0.091523 -0.438023 -0.512214 -0.798187 0.746272 -0.340588 -0.419754 -0.686669 -0.587515 1.189745 -1.192101 -0.179551 0.427626 0.048060 0.758280 -0.863922 0.668021 -0.525075 1.068796 0.388957 -0.388742 0.178299 -0.968033 -0.663753 -0.257773 0.340613 -0.141696 -0.074081 0.440273 0.551993 -0.164846 0.226914 0.729458 -0.275660 0.778176 -0.366912 0.241684 -0.249103 -0.431786 0.285698 -0.098977 -0.084909 -0.074636 0.341098 1.470523 0.253917 1.225747 1.002532 0.334905 0.723075 -0.566570 -0.032643 -0.346360 0.784646 -0.540885 -0.435425 -0.133463 0.680277 -0.039499 0.364276 -1.190316 -1.791089 -1.384845 -0.666504 -0.163843 -1.141982 0.264144 -0.126693 -0.129122 -0.980266 -0.777147 -0.312179 -0.292130 0.495613 0.647354 -0.026003 0.883394 0.661445 -0.609329 -0.125112 0.848324 0.934893 0.101987 0.308003 -1.314751 0.651453 -0.634031 0.050521 1.665226 -0.621150 0.463376 -0.300447 1.271351 -0.762363 1.399017 0.440273 -1.505746 0.309863 0.781476 0.337695 0.662672 -0.698512 -PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -4.119585 -11.192027 14.548189 11.034665 -0.087945 5.678098 4.929225 -1.414658 -1.918647 6.672907 -3.865518 10.535748 -7.488483 -2.953842 0.035515 -0.260067 -7.221518 -7.041352 -0.029864 -2.153170 -3.208841 -3.940030 -7.465195 14.945839 6.447130 0.021985 -4.699963 -1.337369 -14.289415 -8.116565 -8.197560 0.982075 5.889887 0.889260 8.859564 -10.624574 4.609941 12.162370 1.517181 -9.290164 2.464560 -3.264934 -0.289382 1.871637 -5.334138 4.689615 8.043290 0.724083 1.309882 2.750846 1.994311 -3.997387 7.621780 11.317227 6.933946 9.363966 9.514627 -4.503540 5.725588 -3.072925 0.929179 -9.018008 3.438718 -1.266760 -2.258154 -2.475606 -0.298798 0.238394 -0.393610 2.686531 6.196583 -6.205154 -5.137237 -6.220982 -9.937320 -4.419919 1.192767 4.365697 11.189278 -6.009073 12.840020 6.936665 6.287537 0.530674 9.067209 -0.341858 8.563497 1.916354 -3.953119 3.906790 -7.850734 -3.256205 -1.636419 7.538480 -7.439337 -3.758680 4.344956 -14.368226 -13.824802 7.652897 -1.434872 -7.284775 -1.535746 1.073970 2.498316 2.334560 -2.884738 -8.109551 -5.011499 5.557521 -5.109562 -3.020091 -0.427571 0.690080 1.060729 2.070709 -8.861424 4.960227 7.717902 -3.334244 -2.783476 10.694072 1.694010 10.676405 0.478973 2.220047 0.381907 5.395528 6.902803 0.733234 -5.002705 -5.427485 -9.158603 -0.416740 0.669370 -4.712329 -7.008142 -4.099839 4.250291 5.381388 3.631632 9.619255 -1.177641 15.057224 3.186348 -3.586697 -7.381970 -10.770355 -8.742408 -4.032651 0.314895 -1.448749 -8.849223 0.740966 5.472386 1.258241 -2.077807 3.265022 2.771740 3.764428 1.741260 -2.692288 0.071968 -6.451237 4.254283 -6.752401 -4.730948 6.721657 6.915348 8.557744 0.938003 -0.153829 2.574690 -2.030427 -5.950474 2.423725 1.828414 3.529120 13.006949 9.366086 17.547460 -2.757659 -1.971443 -1.390717 -2.500142 -1.794398 0.617756 -7.408386 2.979416 1.546502 -3.277541 13.854489 -0.291595 -2.528106 8.073242 0.103300 1.792817 -9.580021 7.412087 -4.964847 2.996132 -3.379460 -2.475397 -7.102540 -2.843107 -8.651091 -5.773888 13.355950 -10.879861 -9.496020 3.074944 0.660147 5.604947 -12.824276 10.459564 -3.717333 8.767834 -1.219976 -6.434805 1.219979 1.580220 -1.294427 4.960483 3.084305 -7.168361 3.178124 3.458240 1.582672 2.214756 1.796922 4.473727 -1.413913 2.496212 -5.115431 3.848809 -0.022201 -1.457671 -4.586089 -1.598823 1.606284 6.400023 -0.969021 -2.316489 3.821086 -1.179917 -1.917290 8.815192 0.436436 -3.804726 -1.204615 -2.145407 8.568759 -8.814531 -6.452098 -3.966277 3.342753 3.570022 1.029296 -13.969519 -4.672173 -9.715950 -8.031912 -4.620835 2.858887 3.511762 5.470931 -3.071507 -10.098409 -8.174762 12.324302 0.470262 3.767553 6.936323 2.187751 11.248081 3.948073 5.418734 -2.309296 -1.349679 2.474006 -1.901919 -0.371504 -5.296236 3.876495 -9.400409 9.561082 8.377126 -4.192136 7.858229 1.205035 4.936432 -12.500464 11.102237 4.222891 -13.758923 -0.100173 10.142850 4.006113 -11.194039 -7.005954 -PE-benchmarks/find-k-closest-elements-given-value.cpp__main = 0.274359 -0.755409 1.860318 1.346806 -0.173227 -0.070904 0.806157 -0.378029 0.647823 0.057411 -0.442635 0.617005 -0.980026 0.474625 -0.598442 0.954412 -1.407547 -0.911502 -0.002634 -0.324985 -0.145743 -0.354636 0.977999 0.031224 1.153709 0.600125 -0.615558 -0.969607 -0.932083 -0.541844 0.720713 -0.530607 0.749553 0.391994 -0.254883 -1.952239 0.792369 0.592864 -0.520042 -1.067258 0.914441 -0.474447 0.019342 -0.815914 -0.118978 0.177839 0.483387 1.008526 0.664056 0.716013 -0.111418 0.087769 0.595864 1.728265 -0.639303 0.467089 0.716899 -0.104189 -0.200582 -0.203962 0.384627 -0.148292 0.353967 0.424932 0.048560 -0.988217 -0.612795 -0.962114 -0.841943 0.584203 -0.005960 0.560156 -1.025637 0.056958 -0.533807 -0.007432 -1.111996 1.132483 1.475732 -1.091577 0.896503 0.100240 0.283772 -0.258097 -0.271264 0.447570 -0.193157 0.436062 -0.024408 -0.490322 -0.829777 -0.206460 0.122744 -0.367925 -0.205021 -1.757114 0.802553 -0.499962 -0.954396 0.204656 0.527050 -0.405119 0.179194 0.158044 0.067223 0.923450 -0.651573 -0.705178 -0.086474 -0.306645 0.353489 -0.223213 0.083662 0.022429 -0.503372 -0.557093 -1.307744 0.189075 -0.148387 -0.628715 0.142263 0.495935 -0.245959 0.277990 -0.022762 0.440469 -0.400735 1.192580 0.392834 0.566440 0.638203 0.254802 -0.361583 0.296359 1.013297 1.334877 -0.628874 0.135582 -0.644264 0.221134 -0.402086 -0.458271 0.263837 0.526612 0.663738 -0.963898 -0.999613 -0.531520 -0.195372 -1.093739 0.298125 -0.730875 0.136885 0.632077 0.729052 0.266539 0.841100 1.555138 -0.911943 0.426488 0.038241 -0.183197 0.654970 0.460296 0.662277 -0.455247 -0.575401 0.392044 0.280561 0.310284 -0.050828 0.169890 0.380719 -1.152875 -0.128152 0.339502 0.563534 -0.606364 0.556359 0.506061 0.146029 -0.449173 -0.156946 0.792633 -0.255096 -0.229605 0.408992 -1.236427 0.827576 -0.039245 0.030544 0.496712 0.177772 -0.650246 0.825603 -0.435569 0.019530 -0.412927 0.064015 -0.517618 -0.447655 -0.714449 0.503665 -0.186432 -0.442487 -0.248118 -0.126040 1.230651 -0.640949 -0.339310 0.372870 -0.127697 0.295974 -1.327709 1.736564 -0.691489 0.537766 0.018436 -0.242514 0.144799 -0.083261 -0.746178 -0.370277 0.427889 0.029874 0.324437 1.165898 0.627128 -0.225324 0.086284 1.013933 -0.131448 0.991393 -0.046194 0.561100 -0.345394 -0.630661 0.209660 -0.108855 -0.189476 -0.378210 0.262402 1.496985 0.279360 0.698190 1.235141 0.268334 1.370704 -0.724488 0.527492 -0.211382 1.219691 -0.415055 -0.280727 0.118942 0.586317 -0.397939 0.879624 -1.199265 -1.822580 -0.832494 -1.095900 -0.021418 -0.576063 0.482383 -0.606314 -0.047536 -1.138210 -0.743589 -0.089035 -0.336274 0.428836 0.891503 0.007401 0.767272 0.695038 -0.735027 -0.197710 0.233657 0.824894 0.319756 -0.115137 -0.826210 0.527630 -1.017259 -0.127065 1.422764 -0.615674 0.124573 -0.442744 1.280050 -0.708170 1.615676 0.396010 -0.829448 0.987975 0.813069 0.970512 0.421398 -0.614962 -PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -3.830227 -4.798933 7.206882 4.612355 0.428039 2.350124 2.153675 -0.798526 0.478789 2.973787 -1.593563 4.935927 -3.669566 -1.216050 -0.601905 0.054636 -3.437556 -3.980956 -0.194471 -1.698366 -2.029752 -2.109344 -2.909803 5.712184 3.026516 -1.139610 -2.993267 0.092690 -7.220536 -5.944302 -3.563810 0.041452 2.708564 -3.485218 3.029038 -8.743555 2.970064 5.802945 0.240859 -5.148391 1.951509 -2.454273 0.277105 0.897948 -2.721540 1.695072 3.774828 -0.833611 1.215929 1.142370 0.700480 -0.895000 1.807652 7.924036 1.774571 4.243679 4.993792 -2.084713 0.204990 -0.685726 0.320373 -4.367061 1.852643 -0.252133 -1.997243 -1.544573 1.058641 -0.167341 -1.179258 1.599269 1.752792 -4.108571 -1.245384 -2.951206 -6.045628 -2.335566 4.981208 1.924456 5.600099 -3.246967 5.958766 1.615704 2.925698 1.568151 3.968500 -0.225434 4.477940 0.736175 -2.108456 -0.316199 -2.903389 -0.586832 -1.247860 5.544947 -2.527426 -1.003905 2.651429 -7.242882 -6.492505 2.994614 -0.582541 -2.966818 -3.854026 -0.293293 1.965621 1.991767 -1.157680 -4.104130 -3.433182 2.969767 -2.607322 -1.222638 0.254671 -1.065665 -0.386866 0.516236 -4.817075 2.155279 3.347712 -1.614971 -3.410905 5.264600 -0.981741 4.609736 0.435323 2.372769 -0.272739 2.763223 2.318144 0.641583 -2.210638 -2.270103 -5.758031 -2.374583 -0.212059 -0.534554 -3.889639 -1.441952 1.115554 1.825033 0.265546 3.181920 -2.436792 7.222578 2.644116 -1.972355 -3.529100 -4.425174 -3.257154 -3.341614 -0.201189 -1.473339 -4.265504 1.409654 2.826237 1.065755 -0.762280 4.760698 -0.044687 2.786738 1.091836 -2.525238 0.871072 -4.299435 2.410737 -3.781424 -2.618649 2.640513 3.017615 3.727237 -0.147558 -0.036709 1.199559 -2.282802 -3.596074 1.624894 1.183893 2.146570 5.222031 4.414967 9.786052 -4.428937 -0.739511 -0.239484 -1.851106 -0.786046 -0.133709 -3.618417 0.466822 1.623410 -0.619108 7.348941 0.387177 -2.929247 2.953013 0.310906 1.155568 -4.418918 3.625372 -2.769701 1.596497 -0.799335 -3.473260 -3.557335 -1.112360 -4.569058 -3.699036 6.310924 -5.374299 -7.134936 2.536219 0.559052 3.987951 -8.956591 5.012444 -2.306966 5.710615 -1.203617 -1.273432 0.183587 1.330169 -1.025974 3.644295 1.409333 -3.374315 2.381115 3.335393 1.169343 2.226557 0.003594 2.636582 -0.622782 1.470241 -2.189335 2.184762 -0.657193 -2.158624 -2.124715 -0.902349 0.728448 3.066286 0.237558 -1.732744 2.443846 -1.023559 0.233799 5.722788 1.148416 -1.850332 0.643591 -1.334100 4.959912 -3.463067 -3.274691 -1.383344 2.909019 1.870471 0.817996 -6.865888 -3.517252 -5.223003 -7.096332 -1.100847 1.518067 1.053019 1.552974 -1.017182 -5.655618 -3.177271 6.228156 0.604752 6.279688 3.041835 1.473142 5.055358 2.386048 1.150057 -1.574007 -0.512249 0.583787 -1.388234 -1.163719 -2.594362 1.924036 -4.689817 3.904357 3.943093 -1.896332 3.381279 1.362783 -0.051451 -5.737070 5.640218 2.219935 -5.729844 0.834729 4.183217 3.479200 -4.895857 -3.446806 -PE-benchmarks/dfa-based-division.cpp__main = -0.333968 -1.213657 1.735776 1.257215 0.059601 0.281334 0.908059 -0.064922 0.492620 0.232982 -0.626743 0.920159 -1.228050 0.034351 -0.202718 0.255925 -1.143855 -1.215291 0.194176 0.005115 -0.156655 -0.713496 0.137309 0.878162 0.887298 0.631081 -0.601800 -0.560943 -1.732873 -0.650803 0.172399 -0.271017 0.843549 0.609019 0.317308 -1.896041 0.517245 1.053872 -0.096302 -1.534316 0.650816 -0.747791 0.072532 -0.497342 0.094341 0.527193 0.933579 0.884280 0.364655 0.421099 -0.358431 -0.453461 0.169075 1.286788 -0.047677 0.748438 1.193789 -0.250715 0.018825 -0.338761 0.294942 -0.772261 0.577638 0.511746 -0.667633 -0.452023 -0.099188 -0.740190 -0.858210 0.576860 0.433767 0.135275 -0.876653 -0.349425 -0.856526 -0.105159 0.102256 0.962383 1.667848 -0.907861 1.486260 0.347903 0.877843 -0.195042 0.384783 0.172611 0.392616 0.309272 -0.508911 -0.481595 -1.743580 -0.612565 -0.381497 0.354937 -0.253770 -0.494612 0.634076 -1.074405 -1.307222 0.291358 -0.071080 -0.463912 -0.481663 0.616893 0.450983 1.040966 -0.265022 -0.951874 -0.519404 0.198749 -0.447606 -0.262577 0.110838 0.207469 -0.640159 -0.648794 -1.300820 0.161786 0.499550 -0.796081 -0.106595 0.932322 -0.627864 0.995255 0.088013 0.226790 -0.041537 1.071445 0.802187 0.007916 0.787463 -0.675773 -0.927891 -0.019784 0.469514 1.457244 -0.933959 -0.060397 0.073371 0.311967 -0.075984 -0.316583 -0.171617 1.027266 0.705668 -1.043323 -1.029263 -1.062410 -0.273786 -0.853370 0.173343 -0.636349 0.100997 0.442962 0.803321 0.378814 0.242530 1.879784 -0.893576 0.663930 0.250066 -0.279511 0.200671 0.402854 0.639793 -0.728644 -0.696064 0.583027 0.542887 0.418276 -0.045412 -0.041059 0.314231 -1.022990 -0.866234 0.591602 0.417410 0.125579 1.016496 0.755166 0.599022 -0.983316 -0.198129 0.286967 -0.178962 -0.332968 0.308401 -1.262565 0.921914 -0.005569 0.162386 1.078275 0.095876 -0.804874 0.851046 -0.080941 0.070154 -0.823165 0.430973 -0.733838 -0.078859 -0.677029 0.020588 -0.479991 -0.605162 -0.658586 -0.230974 1.490341 -0.099285 -1.366922 0.261828 -0.231260 0.897347 -2.053676 1.039635 -0.650353 0.811920 -0.122762 -0.248278 0.079649 -0.140526 -0.269988 -0.130877 0.467438 -0.301301 0.596055 0.970878 0.457707 0.021752 0.363657 0.722191 0.097728 0.414560 -0.267959 0.254387 -0.264957 -0.416478 0.066268 -0.256240 0.376523 0.411737 -0.137636 1.067215 0.799607 0.350207 1.129146 0.784992 0.657151 -0.617009 0.082082 -0.172069 1.544662 -0.601076 -0.511954 -0.456214 0.549598 -0.072686 0.636354 -1.430273 -1.807393 -0.406433 -1.982353 -0.301001 -0.437031 0.502471 0.052612 -0.005041 -1.482215 -0.653595 0.059413 -0.012273 1.652280 0.704634 0.085062 1.077436 0.639676 -0.612472 -0.449916 0.471916 0.692991 -0.364003 -0.173226 -0.815623 0.316879 -1.121580 0.586105 1.340542 -0.667635 0.382872 -0.610294 1.349477 -1.120667 1.812051 0.702770 -1.419521 0.495708 0.555258 1.170717 -0.237496 -0.831672 -PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -0.463211 -1.062487 2.057052 1.336081 -0.084365 0.337825 0.876933 -0.490690 0.473196 0.032494 -0.406558 0.867015 -1.182087 0.221337 -1.060521 0.349976 -1.372402 -1.182101 -0.148234 -0.629877 -0.320328 -0.585326 0.334726 0.800108 1.057245 0.083196 -0.802647 -0.764586 -1.927590 -0.539460 0.359641 -0.296329 0.811222 -0.218618 0.053399 -2.541731 0.763360 1.165593 -0.396488 -1.174919 0.935697 -0.875028 0.074026 -0.484560 -0.622343 0.123525 0.564730 0.395989 0.696715 0.356765 0.251527 0.139824 0.347453 2.401073 -0.516650 0.890142 0.773179 -0.220654 -0.049369 -0.091290 0.169286 -0.446381 0.518132 0.238321 -0.303050 -0.878374 -0.317979 -0.700311 -0.732831 0.684224 0.103460 0.045249 -0.799333 -0.101810 -1.518214 -0.451629 0.009118 0.917600 1.651554 -1.093939 1.327451 0.163125 0.538962 -0.043691 0.445802 0.344108 0.522618 0.280912 -0.184287 -0.278604 -1.170180 0.397332 -0.165049 0.415897 -0.522237 -1.689066 0.929335 -1.595752 -1.505745 0.423379 0.266791 -0.723009 -0.205539 0.137323 0.167722 0.720728 -0.852149 -1.152540 -0.502907 0.385392 0.050484 -0.224231 0.351389 -0.318784 -0.186851 -0.777341 -1.358653 0.441817 0.200741 -0.548114 -0.419644 1.234523 -0.326645 0.601547 0.151276 0.646965 -0.487207 1.206298 0.248671 0.314492 -0.256284 -0.101427 -1.165677 -0.370587 0.614008 1.112671 -1.005014 -0.233144 -0.412291 0.355066 -0.361450 -0.057532 -0.012521 1.003968 0.688186 -1.011140 -0.947849 -0.783005 -0.346919 -1.375865 -0.071354 -0.541623 -0.671648 0.484667 0.883100 0.657824 0.649610 1.633943 -0.186667 0.616721 0.166174 -0.704868 0.715182 -0.446580 0.814713 -0.726121 -0.870941 0.548391 0.291117 0.971621 -0.055331 0.271913 0.165810 -1.072442 -0.456744 0.186456 0.777828 -0.016729 1.205288 1.068072 0.694797 -1.205875 0.021958 0.591408 -0.516714 -0.112522 0.170520 -1.238199 0.583244 0.361444 -0.587382 1.194228 0.097404 -0.718543 0.936444 -0.300393 0.428857 -1.056643 0.261417 -0.708243 -0.202846 -0.907408 -0.120860 -0.567983 -0.501514 -0.823606 -1.002212 1.571651 -1.427853 -1.015469 0.709638 0.262227 0.684814 -2.025005 1.450497 -0.769214 1.335407 -0.102050 -0.168862 0.054080 0.446859 -0.733719 0.357078 0.408469 -0.758395 0.706455 1.316632 0.656548 0.288113 -0.031944 1.241589 -0.181628 0.836993 -0.486509 0.745113 -0.256013 -1.009843 0.179097 -0.249529 -0.126605 0.125984 0.563063 1.059068 0.675775 0.542166 0.870042 1.161506 1.188238 -0.601013 0.164201 -0.442812 1.232189 -0.654487 -0.623243 -0.045627 0.789160 -0.047493 0.443962 -1.728018 -1.968272 -1.527025 -1.651707 0.347152 -0.590232 0.176071 -0.033700 -0.094367 -1.745046 -0.893103 0.516191 -0.402596 1.194459 0.985206 0.188130 1.164054 0.977617 -0.607296 -0.104130 0.382031 0.852595 0.063435 -0.166790 -1.174236 0.763553 -1.363310 0.559427 1.489004 -0.725305 0.597453 0.331104 0.976547 -1.229205 1.937113 0.536039 -1.279999 0.980355 1.031270 1.071867 0.122498 -0.758207 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = -0.277267 -0.720014 1.540214 0.761864 -0.917734 0.028433 0.207418 -0.166944 0.780246 -1.900419 -0.770746 0.225405 -1.117031 0.295315 -0.801624 -0.316896 -2.417995 -1.162084 0.200219 -0.070690 -0.060088 -0.741985 0.517144 0.784551 0.370287 1.747273 -0.503446 0.035543 -0.991019 1.132533 1.701347 -0.770814 0.773543 1.711202 0.075326 -3.122852 0.521436 0.013355 -0.430061 -1.052658 0.561656 -1.321823 0.285111 -2.056032 -0.953480 -0.113509 0.544464 1.615399 0.566967 -0.550698 -1.505452 -0.412836 -0.721615 1.835088 -0.830490 0.204804 0.792137 -0.232462 -0.308407 -0.506645 0.273007 -0.269136 0.599577 1.025412 -1.121568 -0.692386 0.062507 -1.747227 -1.037091 0.927015 0.258784 1.466294 -0.832553 0.273504 -1.665137 -0.160015 0.888316 1.607362 1.764318 -1.198518 1.024560 -0.118890 1.055239 0.151002 0.258035 0.711136 0.820096 0.281405 -0.566601 -0.335001 -2.168116 -0.047805 -0.054837 -0.900119 0.436151 -1.756969 0.151433 -2.341285 -0.871055 -0.156098 0.097325 -0.099326 0.160268 0.167663 0.826174 0.819995 -0.664992 -0.839688 0.244486 -0.060010 -0.579801 0.211375 0.609055 0.850364 -0.360813 -1.755446 -1.389799 0.013966 -0.038763 -0.565898 1.031722 1.059141 -1.022192 0.259950 0.169597 0.036376 -0.488065 1.727550 0.157705 -0.600643 0.244836 -0.525814 0.846638 -0.311406 0.466318 2.685829 -0.849659 -0.793659 -0.091715 0.183431 -0.798859 -2.052690 0.152731 -0.081000 -0.335005 -1.207717 -0.776217 -0.846087 -0.724009 -2.002293 -0.238165 -0.790971 -0.274202 1.773606 0.925107 1.258494 0.995801 1.684112 -0.754551 0.860110 -0.232052 -0.237824 0.709643 0.868604 0.846309 -0.464806 -0.470125 0.467211 -0.840735 0.850073 -0.017626 -0.582279 0.049568 -1.395585 -0.799644 0.647270 1.266742 0.568476 0.647000 0.579980 -1.580272 -1.435913 0.313457 0.820452 0.103787 -0.348198 0.546692 -0.874170 1.106336 0.206804 -0.411248 0.168235 0.012493 -0.989420 0.113241 0.170081 0.426043 -0.814799 -0.751712 -0.293437 -0.104546 -1.288707 0.743607 -0.578426 -0.781454 -0.886084 -1.025606 1.235873 -1.630243 -0.982934 0.818827 0.346255 2.239115 -1.687118 -0.239704 -0.863697 2.299879 0.232015 -0.079861 0.195293 -1.328742 -0.548925 0.021608 0.383541 -0.037883 0.086908 0.393390 1.062290 0.522453 0.438893 1.120783 0.322707 0.630911 -0.141815 -0.065999 -0.366269 -0.907817 0.975305 -0.342914 0.093844 0.357970 1.043873 1.891964 1.116960 1.723101 2.287439 0.806975 0.772315 -0.610579 -0.915328 -0.585539 1.118560 -0.315031 -0.405775 -0.428350 1.209839 -0.384071 0.356838 -1.348013 -3.174850 -2.047215 -1.511991 -0.182732 -1.436256 -0.011243 0.061572 0.625898 -1.431481 0.024720 -0.437441 -0.533447 2.538930 0.615998 -0.090873 0.956282 1.154885 -1.598908 -1.064940 1.889919 1.406415 -0.303994 1.040647 -2.607399 0.900167 -1.317397 0.425432 1.973598 -1.179298 -0.207629 -0.451346 1.987378 -0.724577 1.976011 0.893235 -1.825957 0.650427 0.259217 0.383538 2.112116 -0.793105 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -0.583604 -0.750984 2.910275 1.956355 -0.116978 0.246834 0.735873 -1.424632 1.569437 0.576197 -0.313101 0.566767 -1.473148 0.422785 -0.324946 1.259418 -2.080593 -1.382377 -0.376080 -1.467469 -0.599274 -0.878227 1.006963 0.064633 1.446777 0.157760 -1.149531 -0.531204 -1.622481 -1.916780 0.845866 -0.733293 1.139311 -0.121844 -0.074931 -3.684088 1.884135 1.202629 -0.814799 -1.358598 1.254081 -1.173706 0.219690 -0.563918 -0.269815 0.516506 0.340264 0.332389 1.632826 0.675102 0.714187 0.284870 0.234530 2.532847 -1.538736 0.927097 0.426020 -0.713486 -0.860181 0.296814 0.153744 -0.177987 1.007236 0.683910 -0.631269 -1.814036 0.062374 -0.878602 -1.717267 1.286270 -0.039162 -0.524534 -1.087914 -0.300836 -1.235097 -0.616624 0.202718 1.203377 2.166665 -1.043621 1.406001 -0.034980 0.296665 -0.075161 0.503628 0.263452 1.382724 0.241806 -0.437914 -0.777769 -1.018814 -0.343314 0.180694 0.989319 -0.210575 -1.154863 0.923288 -1.425374 -1.818420 0.295545 0.895058 -0.587435 -1.878971 0.004818 0.730692 0.902187 -0.542390 -1.590774 -0.415283 0.353648 -0.326008 -0.328363 -0.203940 -1.163653 -0.844911 -0.578456 -2.030237 0.359113 -0.192346 -0.535144 -1.157084 1.420237 -0.813557 -0.084563 0.203087 1.276821 -0.847024 1.439336 -0.422429 1.146538 0.445951 0.052516 -1.580643 -0.480031 0.889943 1.267662 -0.720663 -0.384834 -1.239290 0.204863 -1.553381 -0.028361 -0.299580 1.587650 1.797643 -1.190177 -1.199997 -0.285896 -0.255041 -2.253892 0.440909 -1.073653 -0.469094 0.343791 1.263307 0.683456 1.386953 2.351312 -1.133250 0.938445 -0.102296 -0.644519 1.763952 -0.176209 1.413739 -1.052463 -0.809504 0.545352 0.425519 0.611471 -0.133239 0.136074 0.289282 -1.880466 -0.745524 0.540842 0.526171 0.115481 0.985537 1.252004 2.460981 -1.734214 0.396751 1.371993 -0.454768 -0.143793 0.413276 -1.558605 0.594098 0.617389 -0.074705 1.740200 0.123686 -1.288173 0.352654 -0.173505 0.549356 -1.253511 0.282145 -0.896888 0.236087 -0.795977 -0.640872 -0.913202 -0.890890 -0.773459 -0.729017 1.938091 -0.816201 -1.996683 1.878204 -0.702167 1.101875 -2.886167 2.105870 -1.297218 1.094113 -1.029303 0.014130 -0.208845 0.385592 -1.407565 0.776482 0.492084 -0.390783 1.103415 2.237627 1.107397 0.562542 -0.443758 1.674534 -0.204434 1.584128 -0.470070 1.618988 -0.540316 -0.604825 0.096864 -0.374557 -0.450926 -0.234882 0.415812 1.104954 1.132528 0.438979 1.257885 1.201394 1.889899 -0.840195 1.314315 -0.292569 1.192040 -0.443762 -0.738922 0.739679 0.867054 -0.362368 0.987166 -2.238081 -2.399702 -0.979885 -2.472395 0.227023 0.075409 0.478240 -0.233584 0.027213 -1.979207 -0.860542 1.028055 -0.191442 2.312024 0.823160 0.300895 1.087291 1.654679 -0.995281 -0.493834 -0.180828 0.485201 0.100253 -0.669764 -1.534911 1.599397 -1.426247 0.463476 1.874851 -1.088842 0.357500 -0.374616 1.229178 -1.494335 2.205584 0.480184 -0.691111 1.862767 0.964695 1.890254 0.173479 -0.913842 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.294789 -0.616110 2.526752 1.705771 -0.287478 0.201541 0.562093 -1.228495 1.265449 0.342170 -0.138517 0.462222 -1.059476 0.470058 -0.527420 1.146471 -1.795650 -0.970892 -0.463986 -1.419381 -0.656749 -0.507921 0.770450 -0.100540 1.222959 0.084196 -0.936069 -0.617344 -1.117582 -1.284123 0.862407 -0.521499 0.848098 -0.439178 -0.089982 -3.638828 1.541650 0.966747 -0.813251 -1.136908 1.023893 -0.887007 0.181424 -0.541346 -0.464106 0.141708 0.115044 0.404107 1.232072 0.603870 0.524471 0.588444 0.406012 2.999175 -1.241063 0.804859 0.458895 -0.432224 -0.712851 0.362996 0.194289 0.046707 0.657147 0.288108 -0.124556 -1.625400 -0.229246 -0.844587 -1.186835 0.965827 -0.050592 -0.531204 -0.885359 -0.329550 -1.159326 -0.620822 -0.981113 1.195025 1.697315 -1.323296 0.983751 -0.037876 0.134120 0.209527 0.403145 0.309490 1.034139 0.299142 -0.114350 -0.392824 -0.481112 -0.054266 0.394234 0.224720 -0.445000 -2.102681 0.978107 -1.085206 -1.462204 0.478450 0.923195 -0.522129 -1.144669 -0.469749 0.364823 0.683347 -0.848079 -1.200682 -0.448693 0.321501 0.138550 -0.285513 -0.000885 -0.871792 -0.402043 -0.580667 -1.731632 0.520125 -0.124685 -0.246744 -0.886937 1.223200 -0.445693 -0.246599 0.047220 1.029459 -0.894942 1.438218 -0.412662 1.017049 -0.030997 0.487043 -1.360988 -0.160721 0.890643 1.013391 -0.470485 -0.216097 -1.102465 0.268357 -1.222908 0.139539 -0.081206 1.178892 1.332423 -0.788101 -1.002918 -0.334988 -0.230192 -1.880796 0.291853 -0.854507 -0.550596 0.563808 1.038982 0.889953 1.180130 1.591381 -0.871893 0.689861 -0.237361 -0.505189 1.425026 -0.149159 1.084049 -0.800172 -0.712284 0.337774 0.261746 0.683399 -0.014443 0.180679 0.259948 -1.426277 -0.305155 0.254926 0.691796 -0.299633 0.862456 1.160393 1.963575 -1.503064 0.230670 1.078445 -0.674968 -0.020683 0.248815 -1.254743 0.318489 0.593519 -0.313437 1.366191 0.074730 -0.871380 0.374431 -0.330079 0.417210 -0.777527 0.082323 -0.721712 -0.268480 -0.681277 -0.174233 -0.802646 -0.539429 -0.717549 -0.890808 1.638444 -1.456917 -1.142158 1.594863 -0.436225 0.585211 -2.086153 2.250673 -1.001902 0.941089 -0.736829 -0.076250 -0.180621 0.546011 -1.330861 0.683988 0.435662 -0.491402 0.581824 2.048691 0.887718 0.409638 -0.452311 1.551166 -0.456018 1.402427 -0.504261 1.550782 -0.548054 -0.701186 0.042066 -0.268094 -0.461920 -0.456658 0.668220 1.123254 0.596505 0.595967 0.822882 1.036527 1.653327 -0.747363 1.141024 -0.303050 0.845176 -0.472328 -0.496485 0.697934 0.801739 -0.262810 0.685640 -1.840049 -1.855771 -1.477977 -1.451034 0.383326 0.059081 0.187989 -0.430920 -0.151319 -1.620579 -0.930037 0.919610 -0.449031 0.965251 0.862164 0.331465 0.996179 1.433129 -0.745758 -0.181667 -0.074122 0.353367 0.340112 -0.518758 -1.259153 1.449405 -1.181466 0.167766 1.650478 -0.683452 0.475827 0.159145 1.002670 -1.085264 1.808859 0.287805 -0.602146 1.438920 1.425764 1.562912 0.246769 -0.724059 -PE-benchmarks/ugly-numbers.cpp__main = -0.145337 -0.623839 0.786901 0.567470 -0.154657 0.130551 0.414390 0.054622 0.179863 -0.307751 -0.308085 0.344542 -0.617005 0.042095 -0.279978 -0.041525 -0.635840 -0.553546 0.052835 0.021841 -0.003095 -0.262529 0.061799 0.453058 0.340563 0.503264 -0.213503 -0.341652 -0.845651 0.277997 0.377308 -0.108320 0.408494 0.510991 0.067031 -1.123368 0.094882 0.466299 -0.115850 -0.750275 0.324953 -0.458230 0.064617 -0.501023 -0.144812 0.069768 0.334902 0.518492 0.036100 0.036525 -0.421167 -0.134990 0.004733 0.869209 -0.051283 0.324981 0.662257 0.016605 0.018060 -0.211883 0.170583 -0.224433 0.226613 0.192403 -0.316641 -0.224393 -0.205195 -0.584075 -0.379337 0.195556 0.156055 0.301138 -0.399512 -0.129056 -0.552341 -0.076506 -0.249292 0.590333 0.757240 -0.674096 0.664826 0.116222 0.402586 -0.010740 0.160696 0.230742 0.024899 0.183975 -0.106848 -0.086278 -0.913169 -0.104438 -0.097277 -0.215841 -0.196638 -0.698264 0.396048 -0.550008 -0.562299 0.140276 -0.017992 -0.215157 0.106999 0.210246 0.027762 0.556368 -0.350919 -0.384959 -0.185247 0.123073 0.008951 -0.093406 0.141848 0.379002 -0.198692 -0.686605 -0.625105 0.170911 0.232166 -0.345607 0.222969 0.481994 -0.352520 0.407715 0.010200 -0.015624 -0.142301 0.759155 0.360402 -0.180515 0.251667 -0.279578 -0.208236 -0.020752 0.274919 1.125276 -0.483901 -0.052003 0.089367 0.137280 0.063103 -0.409773 0.112600 0.192940 0.082512 -0.504122 -0.392314 -0.598383 -0.202803 -0.557219 -0.064875 -0.302265 0.118172 0.577306 0.390643 0.444994 0.163128 0.968973 -0.380626 0.264614 0.070124 -0.209426 0.045747 0.409292 0.264536 -0.270759 -0.403285 0.239643 0.017193 0.324865 0.045808 0.024918 0.077392 -0.486710 -0.300575 0.239373 0.389268 -0.058923 0.538962 0.413970 -0.342758 -0.497193 -0.074152 0.082474 -0.185496 -0.107993 0.129610 -0.586429 0.432626 0.032214 -0.177527 0.327193 0.014514 -0.297747 0.407051 -0.143220 0.045239 -0.336194 0.080388 -0.323559 -0.237637 -0.528636 0.263840 -0.186672 -0.320303 -0.372994 -0.272877 0.709864 -0.372921 -0.362606 0.002990 0.213610 0.435832 -0.810792 0.420551 -0.292088 0.679097 0.099762 -0.152388 0.092920 -0.163271 -0.144301 -0.208299 0.240258 -0.206197 0.082685 0.426584 0.268758 -0.071962 0.236194 0.430960 -0.009209 0.197417 -0.210376 0.073099 -0.139668 -0.381761 0.262694 -0.139256 0.185069 0.119638 0.135235 0.866183 0.360008 0.488943 0.629848 0.352540 0.322511 -0.287886 -0.170036 -0.107336 0.742869 -0.263207 -0.148550 -0.306328 0.419316 0.003470 0.191303 -0.645936 -1.090390 -0.478657 -0.745459 -0.002390 -0.444955 0.098776 0.003643 0.036669 -0.754577 -0.358197 -0.234564 -0.251445 0.731129 0.355371 0.076093 0.570897 0.345378 -0.450848 -0.185383 0.601068 0.546771 -0.111223 0.140216 -0.581223 0.188692 -0.536179 0.156542 0.763872 -0.266641 0.222739 -0.137953 0.832079 -0.423379 0.979600 0.347756 -0.848888 0.250360 0.422075 0.423357 0.252423 -0.378690 -PE-benchmarks/ugly-numbers.cpp__isUgly(int) = -0.690189 -1.137461 1.307967 0.773422 0.002705 0.389009 0.540359 0.297976 0.173464 -0.031985 -0.274775 0.904779 -0.675618 -0.372914 -0.071802 -0.287086 -0.784049 -0.973147 0.292790 0.042255 -0.231464 -0.430021 -0.634471 1.091858 0.399915 0.342280 -0.369692 -0.340633 -1.565668 0.043448 -0.116759 -0.080335 0.556919 0.285310 0.693025 -1.838038 0.171576 0.684440 0.045279 -1.343609 0.199622 -0.580097 0.371430 -0.491848 -0.290076 0.242630 1.029646 0.238675 -0.050133 -0.010599 -0.613399 -0.509713 -0.081232 1.771192 0.370728 0.576002 1.152035 -0.325661 0.400632 -0.291221 0.211382 -1.007164 0.339167 0.036931 -0.614370 0.098981 -0.012683 -0.682957 -0.269771 0.230727 0.467513 -0.213202 -0.414177 -0.374945 -1.350996 -0.250508 -0.134633 0.824288 1.064311 -1.012351 1.286746 0.398013 1.072004 0.413857 0.731726 0.217876 0.585025 0.221216 -0.519554 -0.102340 -1.457715 -0.172760 -0.458069 -0.139836 -0.271960 -0.209569 0.509262 -1.178912 -1.060647 0.679508 -0.302376 -0.260878 -0.399949 0.054726 0.411668 0.852272 -0.462495 -0.678069 -0.761662 0.520346 -0.540741 -0.050706 0.512856 0.209784 -0.287601 -0.652790 -0.861040 0.345697 0.823750 -0.391044 -0.341820 1.120003 -0.782243 0.963206 0.030084 0.020058 -0.113663 1.071271 0.854188 -0.379408 -0.043651 -0.884743 -1.242013 -0.209883 0.052313 1.315590 -0.611322 -0.169476 0.428894 0.396006 0.223374 -0.128291 -0.114342 1.029630 -0.026515 -0.590513 -0.795579 -1.292169 -0.251383 -0.546297 -0.151127 -0.334708 -0.027009 1.258059 0.568521 0.904820 -0.147531 1.074141 -0.372169 0.627141 -0.027928 -0.208635 -0.207031 -0.099648 0.369202 -0.618861 -0.362288 0.341674 0.431245 0.713025 0.100708 -0.324736 0.311663 -0.460187 -0.803813 0.233993 0.593892 0.308804 0.999843 0.761227 0.062588 -1.366190 -0.489680 -0.157105 -0.275748 -0.322331 -0.023050 -0.666218 0.419288 0.156843 -0.487912 0.803061 -0.026390 -0.553261 0.597507 -0.015241 0.127455 -0.414094 0.274442 -0.387845 -0.458040 -0.240273 -0.143409 -0.813566 -0.300812 -0.878062 -0.880071 1.313744 -1.055839 -1.156086 0.137725 -0.149588 0.891642 -1.519374 0.804303 -0.418429 1.112328 0.164853 -0.253043 -0.324349 0.256701 0.060974 0.237640 0.336515 -0.828715 0.159458 0.676651 0.315493 0.322412 0.388566 0.499765 -0.003900 0.070293 -0.235217 0.047290 -0.351992 -0.549024 0.017514 -0.175555 0.576728 0.772849 0.227748 0.468620 0.482020 0.323454 0.591319 1.111245 0.007912 -0.437715 -0.578117 -0.311909 1.316035 -0.607429 -0.445266 -0.665402 0.582915 0.370241 -0.070450 -1.083078 -1.169925 -1.132867 -1.122008 -0.255229 -0.294085 -0.074530 0.217176 -0.034539 -1.221175 -0.445885 0.059146 -0.089273 0.584055 0.525198 0.074585 1.199540 0.473301 -0.363066 -0.615880 0.607189 0.271561 -0.382708 0.145595 -0.871216 0.224723 -1.284739 0.688371 1.005168 -0.306172 0.382002 0.274820 0.733884 -0.942510 1.297509 0.594078 -1.565543 -0.203857 1.001679 0.705912 -0.500738 -0.743613 -PE-benchmarks/longest-bitonic-subsequence.cpp__main = 0.161997 -0.576514 1.368491 0.921493 -0.348870 -0.007296 0.410149 -0.215148 0.348950 -0.386550 -0.444061 0.453193 -0.680774 0.238339 -0.520523 0.357674 -1.184146 -0.626392 -0.045182 -0.213792 -0.088340 -0.206324 0.428750 0.294048 0.726960 0.786717 -0.380596 -0.455324 -0.733187 -0.087988 0.507470 -0.281405 0.491809 0.554615 0.039547 -1.403087 0.473118 0.510549 -0.319615 -0.839658 0.608292 -0.470856 -0.018951 -0.744640 -0.218572 0.122679 0.347566 0.845096 0.320993 0.296195 -0.439915 0.015951 0.285567 1.197301 -0.248364 0.338480 0.696637 -0.072784 -0.068910 -0.236319 0.238139 -0.175940 0.168161 0.195469 -0.112533 -0.670702 -0.375018 -0.789271 -0.412382 0.391474 0.062784 0.343275 -0.660130 -0.141286 -0.678760 -0.020462 -0.738046 0.931057 0.993442 -0.908194 0.634819 0.060806 0.277190 -0.053080 -0.044524 0.347868 -0.007288 0.316367 0.036465 -0.203823 -0.792654 -0.194656 0.108605 -0.458136 -0.254375 -1.346255 0.583391 -0.907005 -0.707396 0.128124 0.332688 -0.414679 0.338443 0.152177 0.009916 0.624577 -0.432103 -0.400254 0.079497 -0.057538 0.178306 -0.076656 0.110163 0.351107 -0.241961 -0.521239 -0.987170 0.361990 0.037957 -0.287844 0.362356 0.490598 -0.153453 0.221841 -0.020746 0.201519 -0.299286 1.046814 0.273594 0.124374 0.200666 0.140612 0.031509 0.260483 0.613912 0.966024 -0.616914 -0.018913 -0.214302 0.185987 -0.227955 -0.502474 0.022165 0.310229 0.198653 -0.725805 -0.676898 -0.571875 -0.493477 -0.852648 0.019986 -0.424846 -0.116256 0.685882 0.519207 0.503725 0.498884 1.047847 -0.556528 0.158638 0.052402 -0.192701 0.354298 0.400482 0.452679 -0.358949 -0.392443 0.352686 -0.048838 0.397119 -0.003820 0.131740 0.247367 -0.802470 -0.117800 0.422875 0.546827 -0.210869 0.574518 0.558140 -0.344768 -0.332938 -0.146077 0.436723 -0.290333 -0.226497 0.325758 -0.770854 0.568281 0.048704 0.047611 0.427146 0.102795 -0.281868 0.521704 -0.228450 0.053534 -0.359767 -0.041704 -0.343782 -0.293491 -0.577494 0.474418 -0.220061 -0.321319 -0.391155 -0.435070 0.925372 -0.770334 -0.286665 0.276195 0.068843 0.516635 -0.895090 0.783348 -0.480830 0.782205 0.216982 -0.143166 0.170823 -0.435790 -0.547367 -0.202668 0.279652 -0.046653 0.073238 0.600583 0.483402 -0.149708 0.095503 0.716082 -0.215362 0.714678 -0.158014 0.259426 -0.256243 -0.496748 0.248246 -0.069459 -0.193738 -0.145866 0.309390 1.156829 0.181225 0.789398 0.907204 0.266285 0.844051 -0.489582 0.117887 -0.216851 0.792500 -0.367101 -0.317482 -0.001025 0.578016 -0.131273 0.396081 -0.934391 -1.458652 -0.991030 -0.812867 0.005398 -0.698021 0.268488 -0.297521 -0.064864 -0.802613 -0.578550 0.029154 -0.250534 0.576063 0.607166 -0.012366 0.639703 0.508241 -0.569582 -0.139816 0.490183 0.752747 0.192768 0.117026 -0.878729 0.480472 -0.705113 -0.068043 1.226397 -0.528056 0.248177 -0.234066 0.993159 -0.575824 1.159226 0.299007 -0.962072 0.513439 0.673383 0.468626 0.480365 -0.496805 -PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.161997 -0.576514 1.368491 0.921493 -0.348870 -0.007296 0.410149 -0.215148 0.348950 -0.386550 -0.444061 0.453193 -0.680774 0.238339 -0.520523 0.357674 -1.184146 -0.626392 -0.045182 -0.213792 -0.088340 -0.206324 0.428750 0.294048 0.726960 0.786717 -0.380596 -0.455324 -0.733187 -0.087988 0.507470 -0.281405 0.491809 0.554615 0.039547 -1.403087 0.473118 0.510549 -0.319615 -0.839658 0.608292 -0.470856 -0.018951 -0.744640 -0.218572 0.122679 0.347566 0.845096 0.320993 0.296195 -0.439915 0.015951 0.285567 1.197301 -0.248364 0.338480 0.696637 -0.072784 -0.068910 -0.236319 0.238139 -0.175940 0.168161 0.195469 -0.112533 -0.670702 -0.375018 -0.789271 -0.412382 0.391474 0.062784 0.343275 -0.660130 -0.141286 -0.678760 -0.020462 -0.738046 0.931057 0.993442 -0.908194 0.634819 0.060806 0.277190 -0.053080 -0.044524 0.347868 -0.007288 0.316367 0.036465 -0.203823 -0.792654 -0.194656 0.108605 -0.458136 -0.254375 -1.346255 0.583391 -0.907005 -0.707396 0.128124 0.332688 -0.414679 0.338443 0.152177 0.009916 0.624577 -0.432103 -0.400254 0.079497 -0.057538 0.178306 -0.076656 0.110163 0.351107 -0.241961 -0.521239 -0.987170 0.361990 0.037957 -0.287844 0.362356 0.490598 -0.153453 0.221841 -0.020746 0.201519 -0.299286 1.046814 0.273594 0.124374 0.200666 0.140612 0.031509 0.260483 0.613912 0.966024 -0.616914 -0.018913 -0.214302 0.185987 -0.227955 -0.502474 0.022165 0.310229 0.198653 -0.725805 -0.676898 -0.571875 -0.493477 -0.852648 0.019986 -0.424846 -0.116256 0.685882 0.519207 0.503725 0.498884 1.047847 -0.556528 0.158638 0.052402 -0.192701 0.354298 0.400482 0.452679 -0.358949 -0.392443 0.352686 -0.048838 0.397119 -0.003820 0.131740 0.247367 -0.802470 -0.117800 0.422875 0.546827 -0.210869 0.574518 0.558140 -0.344768 -0.332938 -0.146077 0.436723 -0.290333 -0.226497 0.325758 -0.770854 0.568281 0.048704 0.047611 0.427146 0.102795 -0.281868 0.521704 -0.228450 0.053534 -0.359767 -0.041704 -0.343782 -0.293491 -0.577494 0.474418 -0.220061 -0.321319 -0.391155 -0.435070 0.925372 -0.770334 -0.286665 0.276195 0.068843 0.516635 -0.895090 0.783348 -0.480830 0.782205 0.216982 -0.143166 0.170823 -0.435790 -0.547367 -0.202668 0.279652 -0.046653 0.073238 0.600583 0.483402 -0.149708 0.095503 0.716082 -0.215362 0.714678 -0.158014 0.259426 -0.256243 -0.496748 0.248246 -0.069459 -0.193738 -0.145866 0.309390 1.156829 0.181225 0.789398 0.907204 0.266285 0.844051 -0.489582 0.117887 -0.216851 0.792500 -0.367101 -0.317482 -0.001025 0.578016 -0.131273 0.396081 -0.934391 -1.458652 -0.991030 -0.812867 0.005398 -0.698021 0.268488 -0.297521 -0.064864 -0.802613 -0.578550 0.029154 -0.250534 0.576063 0.607166 -0.012366 0.639703 0.508241 -0.569582 -0.139816 0.490183 0.752747 0.192768 0.117026 -0.878729 0.480472 -0.705113 -0.068043 1.226397 -0.528056 0.248177 -0.234066 0.993159 -0.575824 1.159226 0.299007 -0.962072 0.513439 0.673383 0.468626 0.480365 -0.496805 -PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -0.317045 -0.573096 1.119200 0.750362 -0.002540 0.088613 0.628528 -0.187066 0.381487 0.161352 -0.194061 0.389702 -0.769219 0.116578 -0.366783 0.349951 -0.662993 -0.634295 -0.023110 -0.314715 -0.112861 -0.302699 0.366078 0.193917 0.661457 0.065247 -0.361687 -0.593111 -0.970027 -0.380050 0.268482 -0.222794 0.503076 -0.081513 -0.148997 -1.488878 0.409191 0.623294 -0.288242 -0.723621 0.621249 -0.490159 0.151692 -0.272117 -0.141114 0.084463 0.356063 0.243247 0.408512 0.308745 0.126879 0.009147 0.232183 1.282371 -0.404196 0.427989 0.467145 -0.121542 -0.230140 -0.041264 0.110725 -0.257519 0.327898 0.136152 -0.211386 -0.522494 -0.226652 -0.488297 -0.592262 0.277700 -0.042837 0.042925 -0.478917 -0.086185 -0.556502 -0.222201 -0.278967 0.509193 0.892471 -0.666384 0.758807 0.041510 0.169115 -0.042268 0.084272 0.232883 0.029652 0.136027 -0.071513 -0.299193 -0.534507 0.091679 -0.058796 0.250227 -0.181779 -0.799967 0.591399 -0.340075 -0.769703 0.170817 0.172985 -0.323107 -0.272843 0.121869 -0.016195 0.615311 -0.472028 -0.624008 -0.321833 0.086822 0.130637 -0.139373 0.065263 -0.189206 -0.327905 -0.535397 -0.776665 0.195673 0.031813 -0.400807 -0.302989 0.556737 -0.308834 0.332490 0.099085 0.403050 -0.270408 0.764379 0.195620 0.233636 0.201885 -0.061205 -0.722293 -0.232836 0.442529 0.946316 -0.487544 0.029159 -0.322564 0.085845 -0.210950 -0.144632 0.098790 0.557790 0.557202 -0.595970 -0.471782 -0.352542 -0.058149 -0.765150 0.085163 -0.383134 0.059170 0.345875 0.468897 0.241403 0.371306 1.240852 -0.406160 0.330704 0.080672 -0.437315 0.417012 0.087415 0.493193 -0.404660 -0.448125 0.192506 0.260223 0.352807 -0.066795 0.232146 0.132735 -0.701801 -0.197535 0.104934 0.321041 -0.221898 0.530889 0.507534 0.517366 -0.642458 -0.030365 0.347771 -0.283820 -0.064179 0.147365 -0.751000 0.349502 0.153867 -0.280280 0.540927 0.107145 -0.485232 0.506139 -0.286897 0.115458 -0.475621 0.216480 -0.429494 -0.202337 -0.441382 -0.082134 -0.235216 -0.374296 -0.333703 -0.254841 0.838314 -0.386372 -0.487888 0.222035 0.113356 0.241492 -1.145458 1.167961 -0.461609 0.534297 -0.203623 -0.103429 0.019870 0.339636 -0.337267 -0.031374 0.225057 -0.233926 0.383805 0.891312 0.383810 0.028618 0.001351 0.693731 -0.066247 0.498686 -0.170838 0.416716 -0.191017 -0.483417 0.159309 -0.124834 -0.019245 0.017447 0.158199 0.788852 0.401549 0.204309 0.587381 0.500232 0.753478 -0.329697 0.295485 -0.141541 0.892533 -0.247104 -0.255626 0.003643 0.479320 -0.034584 0.405914 -0.891054 -1.126012 -0.355928 -0.968530 0.183850 -0.164027 0.163516 -0.138934 0.010498 -0.958609 -0.470351 0.072308 -0.227346 0.729322 0.430387 0.125942 0.586961 0.488168 -0.386887 -0.135552 0.206489 0.452696 0.060290 -0.174818 -0.442620 0.316245 -0.751297 0.133375 0.744827 -0.334200 0.208351 -0.019493 0.604997 -0.619955 1.076212 0.245074 -0.542028 0.718209 0.600104 0.757073 -0.008136 -0.371917 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.088892 -0.277751 0.609903 0.475732 -0.241089 0.003452 0.109622 -0.101494 0.181856 -0.520249 -0.175263 0.096462 -0.430382 0.185502 -0.179341 -0.005018 -0.701463 -0.370949 -0.152836 -0.061880 -0.045165 -0.180568 0.231997 0.222984 0.229375 0.616589 -0.252487 -0.080168 -0.453950 0.428675 0.533121 -0.069436 0.300888 0.724085 0.081851 -0.753957 0.144747 0.201876 -0.137740 -0.408759 0.238070 -0.364503 0.019235 -0.639174 -0.122705 0.057742 0.021317 0.414246 0.131263 -0.092088 -0.403259 0.001158 -0.167688 0.459060 -0.204658 0.102469 0.352324 0.021952 0.019448 -0.203070 0.099582 0.073138 0.109471 0.210069 -0.252153 -0.312020 -0.138227 -0.601210 -0.273266 0.341143 0.112462 0.359310 -0.370817 -0.131381 -0.428058 0.018814 -0.186878 0.589724 0.497037 -0.530694 0.216738 -0.018247 0.214322 0.010688 0.061201 0.200772 0.118557 0.130543 0.048286 -0.016379 -0.737563 -0.142645 0.011546 -0.356263 -0.104323 -0.541306 0.194327 -0.553869 -0.297111 -0.023551 0.120051 -0.139848 0.096048 0.173102 0.010612 0.311767 -0.123958 -0.178660 0.073866 0.077955 0.097945 0.023201 0.079691 0.370240 -0.165306 -0.604478 -0.541703 0.203274 -0.022439 -0.097201 0.340013 0.323987 -0.347866 0.007119 -0.001253 -0.062432 -0.245532 0.671514 0.074413 -0.113902 0.174072 -0.137923 0.132447 0.022431 0.276685 0.984184 -0.323634 -0.109483 -0.101922 0.034828 -0.225774 -0.510661 0.132856 -0.055972 -0.025200 -0.466169 -0.338845 -0.333242 -0.294107 -0.584268 -0.094409 -0.230663 0.104843 0.548484 0.283862 0.567959 0.298734 0.714509 -0.325045 0.123599 0.008670 -0.149459 0.149082 0.453264 0.173602 -0.138465 -0.278708 0.206239 -0.300184 0.227334 0.085588 0.014128 0.024173 -0.436695 -0.185022 0.282498 0.329243 0.022046 0.324061 0.338464 -0.655749 -0.314241 0.071860 0.266692 -0.092221 -0.127356 0.165074 -0.311488 0.345478 0.016657 -0.126243 0.144202 -0.028871 -0.168981 0.151118 -0.067179 0.135657 -0.211813 -0.156223 -0.114840 -0.083936 -0.569181 0.326473 -0.083099 -0.227944 -0.157840 -0.264321 0.479700 -0.300847 -0.237816 0.191955 0.159127 0.443897 -0.454638 0.005217 -0.188504 0.605488 0.150817 -0.046537 0.087644 -0.425454 -0.295075 -0.110894 0.135251 -0.065727 -0.150940 0.252947 0.283043 -0.095808 0.071007 0.343564 0.024467 0.345621 -0.160615 0.113143 -0.114748 -0.232949 0.300799 -0.084511 -0.016656 -0.061938 0.177006 0.792620 0.256584 0.695839 0.603205 0.120904 0.402962 -0.222427 -0.186545 -0.062159 0.313417 -0.162135 -0.109743 -0.043812 0.348231 -0.137380 0.066951 -0.378101 -0.935109 -0.449438 -0.500304 0.022662 -0.486245 0.020125 -0.030904 -0.030072 -0.373004 -0.222778 -0.260470 -0.212831 0.686844 0.182187 -0.082019 0.336775 0.393748 -0.560012 -0.085745 0.594481 0.474123 0.024519 0.229425 -0.725630 0.386655 -0.288621 -0.070986 0.749367 -0.342895 0.206437 -0.181061 0.786328 -0.233771 0.736715 0.195306 -0.601278 0.231163 0.236383 0.209377 0.631316 -0.257090 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -1.512318 -4.317980 6.231691 4.679276 -0.395039 1.860947 2.581930 -0.839893 0.250676 2.527694 -0.906028 3.717506 -3.845328 -1.098375 -0.135760 0.802314 -3.392845 -2.804079 -0.234988 -1.244120 -1.288238 -1.546521 -1.783629 5.016169 3.106297 0.362504 -1.815388 -1.025572 -5.261750 -3.717755 -2.339181 0.033407 2.574393 -0.172715 2.684275 -5.667219 2.481913 4.957607 -0.125419 -4.016847 1.617689 -1.584689 0.294495 -0.506089 -2.176227 1.368736 2.896383 0.874894 0.919198 1.215005 0.157369 -0.985877 3.460074 5.836204 1.620398 3.655899 4.067408 -1.279709 1.431810 -1.000152 0.505371 -3.024065 1.419228 -0.652016 -0.962678 -1.577754 -0.549843 -0.741732 -0.918895 1.078210 1.936503 -2.222101 -2.609961 -2.229521 -4.270467 -1.707415 -1.281503 2.269009 4.573183 -3.578612 4.965892 2.470301 1.713942 0.720426 2.998354 0.246882 2.737279 0.877346 -1.248293 0.904320 -2.954921 -1.257276 -0.142214 1.820680 -2.739858 -3.579856 2.389738 -4.841263 -5.720229 2.827868 -0.047484 -2.907952 -0.966002 -0.400781 0.662159 1.624958 -1.816875 -3.449147 -1.998590 1.898942 -1.286276 -1.229878 0.167527 0.498814 0.145252 0.058401 -4.193833 1.935965 2.584791 -1.576867 -1.169922 4.080009 0.253456 3.922420 0.189135 1.146549 -0.307132 2.785433 2.522746 0.838594 -1.279488 -1.241733 -3.010410 -0.547657 1.048369 -0.367343 -2.293869 -0.830362 0.797626 2.037618 1.063798 3.129891 -0.152582 5.567770 0.640338 -1.668192 -2.664621 -3.950118 -3.516700 -2.251782 0.678373 -0.962192 -2.650888 1.570704 2.394881 0.201279 -0.338242 2.238645 -0.209173 1.411391 0.507147 -1.131548 0.621484 -1.598745 2.024368 -2.585008 -2.205520 2.364749 2.591004 3.465704 -0.114823 0.327109 1.185046 -1.306769 -2.047038 0.168653 0.539016 -0.131777 4.841941 3.623375 6.489968 -1.640957 -0.615875 -0.023992 -1.263563 -0.314926 0.250587 -3.469539 1.287157 0.683701 -1.347087 5.052232 -0.016697 -1.670587 3.429180 -0.545448 0.482246 -3.501651 2.646771 -2.283568 0.034251 -1.575118 -0.430615 -2.482025 -1.613601 -3.551799 -1.976497 5.504668 -4.657822 -3.107618 1.377294 0.823353 2.157444 -5.161034 5.936550 -1.638153 3.249503 -0.420688 -2.396438 0.795844 0.907909 -0.936764 0.602026 1.348093 -2.581923 1.070273 2.251815 0.971261 0.629294 0.625818 2.269506 -0.744207 1.629413 -2.198751 2.062749 -0.518494 -1.358562 -1.355733 -0.715041 0.727170 1.807288 -0.084283 0.422443 1.523739 0.104089 0.128246 3.027685 1.234454 -1.704102 0.327634 -0.506233 3.700130 -3.175780 -1.898510 -1.232035 1.702435 1.121120 1.742795 -5.689959 -2.819325 -3.295441 -3.054166 -1.486693 1.114831 1.531800 1.182256 -1.086598 -4.381015 -3.595915 4.543500 -0.353689 0.628334 2.944982 1.176630 4.460951 1.983250 1.545573 -0.989121 0.197170 1.235358 -0.190964 -0.517823 -1.916708 1.745093 -4.074888 2.951375 3.696317 -1.546738 2.820855 -0.841537 2.238949 -4.733448 4.855472 1.451838 -5.042573 0.794591 5.183691 2.431956 -3.814621 -2.745121 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 0.285809 -0.780772 2.005291 1.366088 -0.437934 -0.012412 0.640627 -0.377617 0.501371 -0.532038 -0.430106 0.690174 -0.965999 0.275247 -0.648398 0.497661 -1.659007 -0.900235 -0.195057 -0.401240 -0.127127 -0.260940 0.610582 0.500811 1.092073 0.909295 -0.643509 -0.669691 -1.140496 -0.135760 0.681766 -0.334841 0.751040 0.561701 0.130814 -2.035266 0.758261 0.819530 -0.440724 -1.156191 0.880274 -0.582971 -0.000922 -1.100285 -0.401028 0.175822 0.434557 1.032155 0.496880 0.406502 -0.646475 0.190758 0.398722 1.675761 -0.360955 0.479051 0.953831 -0.123088 -0.059769 -0.369420 0.309063 -0.212444 0.234891 0.107391 -0.122438 -1.030024 -0.497697 -1.031063 -0.599609 0.561504 0.244733 0.411171 -0.930763 -0.173612 -1.210967 -0.069518 -0.540013 1.268413 1.341936 -1.263169 0.819582 0.094427 0.318968 0.026560 -0.035805 0.486329 0.009090 0.440035 0.131817 -0.223965 -1.357060 -0.292054 0.114851 -0.621163 -0.413232 -2.068021 0.807336 -1.386714 -1.041660 0.203164 0.543687 -0.662412 0.267130 0.017172 0.036432 0.861458 -0.577398 -0.554696 0.048481 -0.020992 0.259662 -0.113861 0.259732 0.407164 -0.271648 -0.758691 -1.408582 0.604839 0.071017 -0.287115 0.402884 0.723658 -0.366395 0.289942 -0.049261 0.361199 -0.541718 1.301435 0.344429 0.232299 0.253402 0.103763 0.108434 0.040462 0.773033 1.453636 -0.781283 -0.145361 -0.474439 0.323754 -0.315470 -0.512337 0.163770 0.453993 0.156959 -0.994012 -0.909973 -0.782998 -0.756538 -1.155438 0.052384 -0.476599 -0.226913 0.984155 0.709116 0.599545 0.697696 1.349207 -0.602507 0.204038 0.084496 -0.319107 0.558597 0.360331 0.621502 -0.463449 -0.566431 0.513055 -0.123048 0.741586 -0.028368 0.254268 0.387196 -1.050522 -0.253168 0.272447 0.669505 -0.323197 0.808338 0.857896 -0.529757 -0.483102 -0.229160 0.647134 -0.439991 -0.256399 0.426914 -1.019333 0.689134 0.089510 -0.070308 0.754314 0.101431 -0.487245 0.851669 -0.253458 0.093324 -0.502922 -0.064936 -0.490976 -0.364688 -0.856517 0.539395 -0.406468 -0.415071 -0.694154 -0.740551 1.348518 -1.030348 -0.555696 0.453752 0.173864 0.747230 -1.358797 1.099479 -0.604372 1.094280 0.348365 -0.155721 0.297229 -0.566658 -0.943697 -0.293949 0.369967 -0.221824 0.103602 0.836813 0.666364 -0.236238 -0.003471 0.970524 -0.305168 1.138762 -0.346721 0.470326 -0.454100 -0.768220 0.284479 -0.042590 -0.251315 -0.255023 0.449878 1.350842 0.155280 1.185238 1.173577 0.441480 1.235459 -0.692113 0.178553 -0.226920 0.991481 -0.499993 -0.400944 0.073024 0.841931 -0.163958 0.656051 -1.322432 -1.961663 -1.323537 -1.250115 0.086417 -0.863346 0.289351 -0.410761 -0.216821 -1.151615 -0.858928 -0.005608 -0.280681 0.702028 0.952119 -0.050236 0.926229 0.734776 -0.851469 -0.124735 0.738578 0.997473 0.352688 0.005929 -1.268294 0.771999 -0.982964 -0.102865 1.797238 -0.770204 0.463005 -0.503025 1.370080 -0.852876 1.697507 0.342624 -1.373194 0.680541 0.996459 0.754045 0.590928 -0.680544 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.789443 -0.702282 1.656300 1.056237 0.145103 0.254162 0.739228 -0.595295 0.833717 0.605793 -0.070607 0.498032 -0.956896 0.161563 -0.489612 0.657158 -0.834992 -0.902829 -0.138707 -0.854567 -0.392576 -0.487954 0.412780 0.068559 0.835129 -0.453412 -0.666452 -0.653350 -1.357154 -1.105381 0.344643 -0.368280 0.677723 -0.886617 -0.261108 -2.728297 0.898207 0.924508 -0.515890 -0.954813 0.808996 -0.726023 0.264208 -0.073383 -0.328688 0.060340 0.349723 -0.140596 0.776125 0.447163 0.668552 0.280393 0.245834 2.337181 -0.854594 0.735234 0.454371 -0.279277 -0.570415 0.272255 0.115709 -0.252673 0.629891 0.223786 -0.287093 -0.888638 -0.101136 -0.434523 -1.010631 0.496703 -0.130369 -0.416413 -0.462573 -0.125376 -0.918483 -0.578942 0.001990 0.481373 1.321583 -0.816461 1.085096 0.026164 0.241599 0.154284 0.375762 0.223287 0.567524 0.141443 -0.260257 -0.440481 -0.366016 0.340308 -0.019276 0.847961 -0.257308 -1.056403 0.846294 -0.498789 -1.193291 0.414135 0.354577 -0.320849 -1.129260 -0.212842 0.227056 0.699116 -0.753745 -1.095974 -0.744459 0.318897 0.023521 -0.275082 0.102785 -0.888200 -0.385433 -0.549895 -1.105452 0.197393 0.064937 -0.482665 -1.055129 0.983002 -0.501927 0.245474 0.130723 0.843676 -0.528635 0.870621 -0.070003 0.629790 -0.026624 0.016031 -1.637803 -0.628387 0.494151 0.966161 -0.493667 -0.091727 -0.675407 0.135071 -0.581371 0.194022 -0.060865 1.023963 1.167689 -0.588863 -0.612747 -0.334374 0.159231 -1.286837 0.164935 -0.617146 -0.242837 0.270834 0.757524 0.359299 0.646916 1.645988 -0.492651 0.719980 -0.048345 -0.664362 0.890378 -0.411895 0.814425 -0.644712 -0.674018 0.190500 0.551297 0.539785 -0.054591 0.173420 0.120108 -0.994985 -0.377535 0.001375 0.419351 -0.209555 0.700094 0.775158 1.817300 -1.400025 0.133721 0.563533 -0.458136 0.068690 0.022745 -1.034393 0.169628 0.468276 -0.502064 1.073253 0.124769 -0.903149 0.464800 -0.321892 0.305580 -0.739630 0.396365 -0.665316 -0.167800 -0.430227 -0.545558 -0.587925 -0.462107 -0.590501 -0.557594 1.221334 -0.810341 -1.068616 0.808105 -0.007706 0.317763 -1.918996 1.831473 -0.741795 0.791495 -0.695083 -0.020402 -0.183155 0.976755 -0.618023 0.461619 0.338374 -0.563858 0.769017 1.631509 0.569609 0.419995 -0.226341 1.100399 -0.159026 0.684561 -0.348114 0.993906 -0.327159 -0.722068 0.054431 -0.261553 -0.033217 -0.019255 0.357172 0.583910 0.695269 -0.061943 0.525901 1.038181 1.061300 -0.460233 0.734806 -0.188438 1.072666 -0.301556 -0.333920 0.195240 0.635358 -0.042851 0.540352 -1.380254 -1.311099 -0.653255 -1.454703 0.388663 0.288079 0.055711 -0.156151 0.045352 -1.490652 -0.602522 0.623809 -0.333852 1.153462 0.598342 0.381406 0.819872 0.914452 -0.454673 -0.248391 -0.094596 0.203368 0.012596 -0.511319 -0.571258 0.691614 -1.043832 0.368979 0.841238 -0.368074 0.288385 0.336841 0.421650 -0.884005 1.480928 0.342271 -0.397704 1.154885 0.894274 1.436844 -0.291045 -0.511648 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -1.119843 -1.971092 3.066002 2.073534 -0.199764 0.702815 1.302332 -0.235107 0.085807 0.518257 -0.437683 1.757538 -1.789082 -0.186362 -0.880830 0.173472 -1.691987 -1.558658 -0.369519 -0.800216 -0.573138 -0.537657 -0.530375 2.190858 1.499726 -0.252502 -1.112628 -0.736772 -3.032481 -1.044234 -0.526330 -0.013660 1.250743 -1.123927 0.705207 -3.953809 1.114651 2.464853 -0.208067 -2.021839 1.240948 -1.122702 0.183878 -0.174913 -1.648295 -0.016473 1.179028 0.118313 0.463608 0.286568 0.033637 0.095135 0.953903 4.190962 0.267415 1.734562 1.972850 -0.468358 0.086048 -0.403200 0.164739 -1.236692 0.665826 -0.326703 -0.446384 -0.970073 -0.310214 -0.680087 -0.706723 0.433707 0.471954 -0.890329 -0.768012 -0.807537 -2.457953 -0.944839 1.027520 1.149935 2.253664 -1.906975 2.293980 0.618828 0.472088 0.582726 1.178586 0.336551 0.870710 0.361368 -0.073838 -0.032956 -1.276769 0.432402 -0.130687 1.169402 -1.264719 -2.339829 1.457466 -2.316365 -2.641974 1.113050 -0.068387 -1.493313 -0.427820 -0.242499 0.137450 1.047962 -1.217461 -1.625955 -1.209338 0.885030 -0.042858 -0.594006 0.228195 -0.011821 -0.062939 -0.825976 -2.121618 1.116561 0.908825 -0.638236 -0.811523 1.986876 -0.461560 1.730236 0.185651 0.904796 -0.497915 1.670425 0.956163 -0.001414 -0.989359 -0.558109 -1.299322 -0.878776 0.358680 0.863410 -1.498673 -0.404635 0.027834 0.712400 0.307193 0.763535 -0.094006 2.445006 0.464773 -0.945237 -1.158073 -1.714757 -1.400004 -1.737496 -0.220347 -0.645268 -1.597784 1.150520 1.148997 0.543719 0.108578 2.142324 0.149556 0.786566 0.487707 -1.255564 0.578856 -1.270405 1.076348 -1.182208 -1.283340 0.882879 0.787246 1.874777 -0.276052 0.573280 0.168570 -1.075733 -0.949399 -0.003512 0.743457 0.226129 2.077046 1.724831 2.771744 -1.428380 -0.151383 0.121094 -1.097834 -0.100005 0.068685 -1.679473 0.171890 0.568766 -1.254581 2.415195 0.103567 -1.082200 1.615413 -0.404097 0.438833 -1.753937 1.293456 -1.091691 -0.100347 -0.992545 -0.747499 -0.973081 -0.640483 -1.969486 -1.585464 2.629173 -2.852497 -1.921307 0.603560 0.977473 1.139677 -2.974922 2.770505 -0.938522 2.512050 -0.118574 -0.746189 0.514028 0.589471 -0.660812 0.810227 0.585899 -1.205680 0.673829 1.474554 0.674026 0.443341 0.011157 1.438379 -0.425705 1.036255 -1.112055 1.148329 -0.359844 -1.512248 -0.291313 -0.277958 0.015148 0.730547 0.560004 0.357566 0.772263 0.362232 0.344631 1.966248 1.061509 -0.772686 0.167905 -0.665894 2.059064 -1.048096 -0.915543 -0.445840 1.463450 0.693708 0.730593 -2.764569 -2.125366 -2.329903 -2.411726 0.123777 0.044645 0.274230 0.354369 -0.381786 -2.580607 -1.683776 1.750104 -0.439721 1.944690 1.557545 0.580198 2.109607 1.057186 0.143672 -0.221260 0.735274 1.019932 0.088382 -0.220535 -1.319763 0.901398 -2.035222 1.176248 1.979842 -0.678046 1.440348 0.399390 0.489944 -2.152548 2.751490 0.544037 -2.430158 0.894134 2.181920 1.379238 -1.181259 -1.274012 -PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 0.833291 -0.701604 3.162992 1.668096 -1.665842 -0.550343 0.045786 -0.057786 0.914561 -3.293156 -1.527047 0.752099 -1.419372 0.793460 -0.685539 0.006934 -4.464488 -1.857386 0.198636 0.142951 -0.372441 -0.669893 1.166609 1.051270 1.409992 4.376722 -1.272796 0.034261 -0.933905 1.327022 2.352409 -1.153743 1.314735 4.217857 0.886642 -3.399562 0.981040 -0.256486 -0.412894 -1.439508 1.038681 -1.314064 0.083441 -3.667025 -0.490898 0.708270 1.339066 3.564383 1.198534 -0.415294 -3.035121 -1.023329 -1.248670 0.926051 -0.816236 -0.242619 1.184799 -0.849053 -0.166873 -1.482034 0.471256 -0.859928 0.386211 1.438792 -1.604614 -1.523887 0.300276 -2.971344 -1.077283 1.785418 1.522349 2.446580 -1.790248 -0.048601 -1.708916 0.437508 1.575763 2.892640 2.605557 -1.396610 1.035414 -0.172097 1.715155 -0.346623 -0.400295 0.852068 0.907317 0.564646 -0.525463 -0.728629 -4.032424 -1.321422 -0.257041 -1.176646 0.760487 -1.875221 0.033020 -3.540481 -1.048054 -0.805602 0.701620 -0.383190 0.558009 1.253698 1.446528 1.257845 0.207283 -0.459594 1.153874 -1.004321 -1.240552 0.624343 0.532444 1.706811 -1.064649 -1.851953 -2.481656 0.498578 -0.398891 -0.421197 2.350545 0.831365 -1.451704 0.222532 0.152387 0.184669 -0.577031 2.490566 0.931577 -0.945265 1.142284 -0.780400 2.595443 0.160194 1.095294 4.245986 -1.590386 -1.704371 -0.579046 0.254446 -1.567836 -3.607654 0.017223 0.269284 -0.149033 -2.542778 -2.125902 -1.273007 -1.662154 -2.350217 -0.215405 -1.103744 -0.205848 2.048815 1.018345 1.621327 1.566358 2.568982 -1.570970 1.163561 -0.063334 0.140192 1.055549 2.180051 1.229132 -0.755235 -0.001740 0.968626 -1.723864 1.010885 -0.161195 -0.893030 0.675142 -2.512032 -1.383635 1.809572 1.550811 1.134349 0.549962 0.821138 -3.008045 -1.099537 -0.191316 1.674282 0.358397 -1.403501 1.990901 -1.070794 2.198847 -0.270698 0.404735 0.396544 0.208029 -1.274557 0.603067 0.685498 0.319818 -0.868632 -1.262054 -0.061097 0.512055 -1.765427 1.749407 -0.966274 -0.643761 -1.056467 -1.361642 1.959952 -1.400363 -2.125832 1.044405 -0.207258 3.875378 -2.355485 -1.443980 -1.130063 2.478602 0.659417 0.015347 0.584279 -3.712590 -1.279334 -0.063649 0.313200 0.914075 -0.464788 0.111293 1.565858 0.064697 0.563138 1.430530 0.481335 1.973534 0.512782 -0.598384 -0.610475 -0.669048 1.158802 0.150083 -0.775276 0.343845 0.958767 2.811721 1.104305 3.448404 3.854530 0.174345 1.561525 -1.176397 -1.446601 -0.713230 1.599595 -0.619590 -1.107588 -0.057168 1.865272 -0.935311 0.791954 -1.962639 -5.078581 -2.045746 -3.208663 -0.919849 -2.483941 0.603671 -0.170530 0.188327 -1.105385 -0.048068 -0.794860 0.255149 4.799194 0.937540 -1.003365 1.199016 1.337582 -3.008876 -1.669476 2.809300 2.566084 0.259194 1.655947 -4.569766 1.598089 -1.691018 -0.013025 4.112580 -2.677464 -0.172047 -2.368177 4.417540 -1.430915 3.065569 0.981124 -3.516228 0.648530 -0.286250 0.594183 3.527985 -1.329251 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -1.004234 -3.050786 5.342906 3.954562 0.116397 1.162705 1.422804 -1.085039 1.535349 2.221016 -1.542187 2.809906 -2.977374 0.134074 0.562100 1.291807 -3.444558 -2.867605 0.141247 -0.853174 -1.650661 -2.064145 -0.538208 2.733270 2.455758 1.762514 -2.047179 -0.218257 -3.825552 -3.872942 -0.842718 -0.696806 2.204383 1.391603 2.109712 -5.110993 2.434891 3.084130 -0.041559 -3.652757 1.144167 -1.571931 0.160958 -0.207468 0.235616 1.927883 2.568600 1.976182 1.648854 1.290561 0.345141 -1.520113 1.245451 3.500195 0.316374 2.446630 2.855942 -1.628620 0.179393 -0.786045 0.612631 -2.495024 1.729974 1.334392 -1.683403 -1.652354 0.665677 -1.033260 -1.963264 2.061566 1.963197 -1.328898 -2.326253 -2.056930 -1.637233 -0.802269 0.336207 2.149908 4.816362 -1.744640 3.994400 1.618743 2.358220 -0.163404 2.087621 -0.237044 3.268831 0.704619 -2.049140 -0.586626 -3.278918 -2.119855 -0.563645 2.673925 -1.014898 -0.254850 1.137478 -3.473197 -4.143749 1.431922 0.086054 -1.274717 -2.443617 1.149433 2.104312 1.548203 -0.140132 -2.920133 -1.455836 0.712089 -2.324540 -0.878637 -0.481055 -0.522391 -1.485709 0.374374 -3.779475 0.545607 1.495641 -1.728948 -1.224366 2.959682 -0.653884 2.577698 0.206707 1.179373 0.152280 2.224708 1.965966 0.823638 0.883234 -1.470964 -2.708754 0.328231 0.896849 0.760082 -2.196959 -1.132702 0.186016 1.067503 -0.824425 1.032730 -1.311320 4.563892 2.889767 -2.174728 -3.193755 -2.725115 -1.594194 -2.392288 0.901248 -1.715262 -1.343833 -0.455470 2.268603 0.623791 0.511220 3.328194 -2.004380 2.107421 0.413961 -0.219972 1.093396 0.159359 2.045263 -2.499283 -1.419328 1.858914 2.212058 1.056680 0.020892 -0.807906 0.984608 -2.413829 -2.358561 2.081919 0.487258 1.084181 3.076982 2.317723 6.724668 -2.291920 -0.194075 0.949875 -0.180908 -1.020627 0.984904 -3.061472 1.938682 0.223945 0.835123 4.277223 0.192947 -2.099426 1.770908 0.410106 0.449293 -2.771250 1.899956 -1.768621 0.898573 -1.093708 -0.322897 -2.184713 -1.198261 -1.986409 -0.557523 4.403644 -1.341393 -4.501849 2.080920 -1.485002 2.793686 -5.441246 3.288489 -1.921049 1.862714 -1.470016 -1.317634 0.057094 -0.454781 -0.910864 1.529342 1.222678 -0.705568 1.483847 2.390247 1.128862 0.933079 0.528414 1.800638 0.114808 1.403610 -0.762160 1.634954 -0.303321 0.000529 -1.134278 -0.747160 0.472341 1.447109 -0.822699 0.636191 2.324625 -0.137887 1.620903 2.166221 1.294269 -1.747480 0.980887 -0.395862 3.325399 -2.262862 -1.933183 -0.526283 1.161372 -0.137257 1.647775 -4.457716 -3.253642 -1.081791 -4.664408 -1.952788 0.965343 1.629348 0.850470 -0.435431 -3.231925 -1.868772 3.297769 0.654062 4.445928 1.703910 0.431331 3.033561 2.049479 -0.194784 -1.654253 -0.436001 0.495788 -0.946902 -0.581391 -2.264611 1.741669 -2.788695 2.369690 3.396600 -2.167233 1.345715 -1.594223 3.024310 -3.724775 4.320824 1.720972 -3.506839 1.059196 1.843375 3.696460 -2.183612 -2.488229 -PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 0.341409 -0.608647 1.686579 1.149985 -0.476949 -0.028786 0.425213 -0.343056 0.430671 -0.646555 -0.388807 0.518923 -0.788908 0.235487 -0.527983 0.359315 -1.511736 -0.726995 -0.205553 -0.333166 -0.091013 -0.209007 0.500156 0.456211 0.879336 0.962289 -0.523702 -0.434458 -0.875051 0.040084 0.648409 -0.277573 0.607418 0.702832 0.200506 -1.581589 0.646590 0.642166 -0.364939 -0.943877 0.692645 -0.503079 -0.003903 -1.069628 -0.353032 0.171429 0.312148 0.959245 0.409304 0.263642 -0.695626 0.144970 0.273359 1.251612 -0.284448 0.351244 0.793525 -0.097164 -0.002697 -0.361972 0.256674 -0.124194 0.150480 0.089315 -0.135605 -0.893020 -0.420402 -0.931947 -0.450380 0.511751 0.224721 0.411222 -0.820093 -0.188598 -1.083459 -0.027408 -0.525085 1.145345 1.098582 -1.090618 0.600679 0.080821 0.279368 0.050063 -0.020995 0.425661 0.058409 0.380833 0.134706 -0.093058 -1.219599 -0.325616 0.139554 -0.709152 -0.350577 -1.786485 0.620469 -1.362408 -0.835226 0.133347 0.489266 -0.556726 0.333102 0.029394 0.036626 0.678680 -0.439766 -0.399780 0.195895 -0.022384 0.225092 -0.046372 0.232945 0.485039 -0.191586 -0.671304 -1.209176 0.553174 0.040282 -0.169620 0.524726 0.608540 -0.309489 0.168364 -0.056311 0.230011 -0.480548 1.165544 0.257508 0.142106 0.152779 0.098063 0.316536 0.101973 0.636106 1.227536 -0.650896 -0.161030 -0.367939 0.268997 -0.311175 -0.536235 0.125801 0.266463 -0.010899 -0.855599 -0.755263 -0.667725 -0.807055 -1.011613 0.019051 -0.369813 -0.228920 0.913707 0.588529 0.622044 0.618537 1.053863 -0.498949 0.070342 0.039471 -0.227630 0.470224 0.404793 0.509401 -0.357228 -0.432706 0.469084 -0.252094 0.644568 0.018358 0.175901 0.326498 -0.882848 -0.173539 0.293288 0.595125 -0.215871 0.692034 0.742005 -0.777909 -0.309242 -0.176447 0.570963 -0.340414 -0.235841 0.399911 -0.792406 0.615896 0.063833 -0.007675 0.566025 0.056817 -0.313688 0.660248 -0.178937 0.105126 -0.415682 -0.166690 -0.365971 -0.276318 -0.786511 0.596631 -0.351921 -0.351081 -0.590466 -0.685306 1.111257 -0.905851 -0.404517 0.422966 0.180590 0.755175 -0.996936 0.683181 -0.492197 1.035466 0.395266 -0.111268 0.293931 -0.714544 -0.826813 -0.290872 0.300082 -0.139562 -0.031450 0.549272 0.587094 -0.239871 0.010460 0.800321 -0.282286 1.012196 -0.306233 0.349318 -0.387231 -0.604360 0.307133 -0.024935 -0.261721 -0.238103 0.413013 1.198859 0.100628 1.174128 1.042201 0.289808 1.018317 -0.584853 0.056386 -0.189317 0.722881 -0.432894 -0.341428 0.081204 0.739257 -0.155029 0.486714 -1.084434 -1.706560 -1.224297 -0.967676 0.031150 -0.852473 0.217690 -0.321757 -0.194447 -0.860130 -0.714847 -0.009239 -0.238459 0.600884 0.760369 -0.092590 0.766888 0.644434 -0.777647 -0.116785 0.746131 0.889970 0.322183 0.114887 -1.220807 0.735310 -0.785250 -0.146661 1.615931 -0.721122 0.398170 -0.481132 1.245655 -0.696897 1.398298 0.276434 -1.233090 0.520825 0.837624 0.532238 0.684534 -0.577839 -PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -2.796157 -4.698706 6.154428 4.128948 0.593399 2.402472 1.612906 -0.046842 0.486439 2.798568 -1.366410 4.898261 -3.172048 -1.612712 0.095402 -0.384057 -2.593357 -3.415336 0.290217 -0.593284 -1.417139 -2.026516 -2.909714 6.036073 2.482766 0.050553 -2.394663 -0.007522 -6.873930 -3.925889 -3.298114 0.214407 2.420859 -1.875790 3.485336 -5.174426 1.927569 4.967647 0.747691 -5.197754 1.243448 -1.647281 0.672043 0.745133 -1.661228 1.617256 3.623739 -0.422938 0.586219 0.867717 -0.330002 -1.298741 2.351756 5.561118 2.474878 3.626770 4.544037 -1.839024 1.421828 -1.196271 0.467570 -4.091990 1.564131 -0.272250 -1.896852 -0.941146 0.596285 0.110950 -0.899157 1.209077 1.954201 -3.128842 -1.494089 -2.666355 -4.577054 -1.552191 3.458117 2.192173 4.547865 -2.656918 5.287461 2.055484 3.156015 1.142769 3.608053 -0.218388 3.434681 0.783748 -2.065866 -0.378934 -4.069623 -0.617418 -1.380245 3.199800 -2.339087 0.284864 2.080064 -6.005825 -5.754816 2.840808 -0.747478 -2.395101 -2.322746 0.340070 1.858861 2.045017 -0.437837 -3.290786 -2.622438 2.880779 -2.606838 -1.190040 -0.037617 -0.525562 -0.216468 0.611400 -3.519460 1.834968 3.298548 -1.476146 -2.268227 4.549627 -0.899303 4.539507 0.198355 1.555094 0.410766 1.771674 3.330334 0.118523 -1.155670 -3.089363 -3.895619 -0.323890 -0.466031 -0.837641 -3.535441 -0.574244 1.423364 1.658958 1.415279 2.737065 -1.887068 5.845967 0.747262 -1.981491 -3.032156 -4.482905 -3.281599 -2.085796 -0.223848 -0.859129 -3.208234 1.462756 2.228072 1.098964 -1.161478 2.961045 -0.419723 2.043005 1.360124 -1.424649 -0.021363 -2.308773 1.612351 -3.247950 -2.124773 2.131847 3.000410 2.587513 -0.168882 -0.248739 0.998699 -1.294424 -2.566620 1.328854 0.890411 2.225771 4.987743 3.603969 7.282115 -3.218023 -1.533025 -0.675536 -1.208595 -1.056520 -0.463764 -3.209535 1.020761 0.857750 0.064190 6.204286 -0.014771 -2.020109 3.000222 0.534680 0.904491 -3.506126 3.495054 -2.501701 0.548423 -0.439360 -2.658704 -3.192529 -1.013333 -4.420145 -2.699711 5.727651 -4.079007 -5.558638 1.508404 0.072880 3.020568 -6.661453 3.715226 -1.767607 4.282979 -0.090116 -1.503916 -0.306812 0.415781 -0.481743 1.825550 1.343184 -3.029657 1.960008 2.138041 0.733547 1.398224 0.640606 1.419396 -0.400028 0.971075 -1.846440 1.330379 -0.575941 -1.281014 -1.758109 -0.758638 1.414220 2.924251 -0.942229 -1.526521 2.151468 -0.695225 0.004407 3.991314 0.253809 -1.725371 -0.010720 -1.022823 4.276162 -3.246317 -2.673124 -1.812862 1.806236 1.809639 0.814817 -5.884976 -2.719835 -3.216439 -5.299626 -1.526461 0.333927 0.734470 1.697465 -1.079139 -4.765397 -3.138109 3.986915 0.941476 4.285648 2.375923 0.928309 4.705694 1.759574 1.186621 -1.389577 -0.179172 0.053113 -1.442108 -0.935439 -2.045981 1.289135 -3.615083 3.487484 3.632235 -1.474666 3.016216 0.076321 -0.940115 -5.107594 4.914724 2.280634 -5.533484 -0.274727 2.694708 2.961422 -5.004344 -3.367519 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = 0.365074 -0.865229 2.545385 1.712757 -0.436826 -0.100249 0.814830 -0.615515 0.769717 -0.170046 -0.649411 0.848191 -1.132954 0.578666 -0.995719 1.131605 -2.047039 -1.075317 -0.102895 -0.573397 -0.256197 -0.346726 1.124415 0.148870 1.502352 0.956265 -0.814295 -1.004341 -1.089922 -0.877146 0.799262 -0.645988 0.876987 0.344677 -0.194134 -2.607911 1.139554 0.837686 -0.700764 -1.337762 1.231809 -0.652100 -0.079119 -1.080461 -0.388587 0.189235 0.566406 1.328259 0.854242 0.846701 -0.277937 0.246873 0.813512 2.362307 -0.722258 0.612095 0.971752 -0.187753 -0.295509 -0.250329 0.439501 -0.216236 0.341756 0.390869 0.100856 -1.389403 -0.702605 -1.193145 -0.868449 0.772326 -0.061609 0.488846 -1.208469 -0.043319 -1.000161 -0.032265 -1.260653 1.517793 1.814240 -1.446139 1.047841 0.043159 0.260468 -0.189571 -0.290209 0.575735 -0.071558 0.576629 0.080371 -0.602698 -0.889871 -0.211738 0.278297 -0.524861 -0.364934 -2.533612 1.086478 -1.273120 -1.266163 0.248964 0.788057 -0.722979 0.369078 0.056544 0.091142 1.048677 -0.813421 -0.811099 0.060580 -0.283746 0.411413 -0.220907 0.140852 0.106862 -0.476106 -0.521657 -1.755999 0.494402 -0.155840 -0.570519 0.261840 0.715678 -0.093965 0.251155 -0.035024 0.665958 -0.562346 1.593950 0.328248 0.697888 0.409867 0.595796 -0.138660 0.433590 1.250030 1.262132 -0.941585 0.061607 -0.781682 0.331570 -0.605015 -0.589285 0.022509 0.732771 0.714887 -1.204970 -1.283337 -0.709147 -0.611524 -1.526129 0.235735 -0.844680 -0.303523 0.912781 0.932752 0.465386 1.082794 1.752703 -1.020854 0.377151 0.080400 -0.294468 0.912504 0.327738 0.887194 -0.636874 -0.689776 0.569282 0.181689 0.592267 -0.128534 0.294913 0.506291 -1.477598 -0.099256 0.579746 0.854113 -0.591908 0.791693 0.832765 0.190764 -0.529859 -0.229943 1.020887 -0.487680 -0.340005 0.544022 -1.478358 0.918176 0.091992 0.179954 0.821409 0.258009 -0.681630 0.983475 -0.470520 0.076469 -0.588370 0.013772 -0.627656 -0.503931 -0.821384 0.602048 -0.320141 -0.481821 -0.533228 -0.584010 1.602113 -1.380134 -0.492974 0.697199 -0.130172 0.605620 -1.689823 1.985624 -0.918701 0.991174 0.184755 -0.221847 0.244824 -0.399153 -1.146755 -0.240239 0.497130 0.003346 0.367901 1.374361 0.870023 -0.187798 -0.028481 1.358675 -0.382284 1.446882 -0.152232 0.731138 -0.477170 -0.911296 0.224080 -0.089140 -0.502574 -0.489418 0.551912 1.788446 0.208949 1.063317 1.531444 0.447112 1.816727 -0.928094 0.689017 -0.391788 1.367851 -0.590101 -0.538453 0.279993 0.901867 -0.393749 1.014544 -1.676025 -2.378883 -1.681794 -1.411954 0.053797 -0.938487 0.609291 -0.798072 -0.138641 -1.418228 -1.036561 0.320761 -0.378709 0.633567 1.225574 0.009176 0.999620 0.924291 -0.875315 -0.167998 0.310294 1.125641 0.510461 -0.099535 -1.275619 0.852047 -1.278201 -0.178574 2.000258 -0.897614 0.298234 -0.415049 1.422121 -0.994493 1.962447 0.442642 -1.228760 1.180300 1.155343 1.022265 0.608672 -0.827202 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -3.198266 -5.799417 9.777787 6.591394 -0.446197 2.493096 2.882946 -1.641943 0.533168 2.377761 -1.982180 5.791656 -5.139434 -0.984749 -1.209032 0.425426 -5.574499 -4.791895 -1.005857 -2.495822 -2.373082 -2.183002 -2.617631 7.108433 4.526883 -0.203731 -3.829604 -0.677280 -8.651891 -5.439606 -3.099430 0.086245 3.760666 -2.363212 3.607877 -10.774645 3.888139 7.273332 -0.265226 -6.057081 3.048081 -3.195880 -0.127684 -0.519115 -3.871924 1.598032 4.053876 0.504646 1.710397 1.255621 0.250314 -0.614722 2.684274 10.139459 1.649540 5.259682 6.231385 -2.278719 0.558155 -1.116993 0.483996 -4.503429 2.192553 -0.558304 -2.142966 -2.885079 0.653250 -1.167051 -1.603860 2.235792 2.654130 -4.066391 -2.465194 -3.638806 -7.424830 -2.548853 4.468226 3.347895 7.059912 -4.854335 6.931408 2.213636 2.729932 1.505306 4.334784 0.159161 4.950764 1.117760 -1.619105 -0.054435 -4.756683 -0.999912 -0.716050 4.856914 -3.656365 -3.983158 3.756072 -9.040403 -8.271893 3.337754 0.204193 -4.472260 -3.075838 -0.349206 1.642747 2.450939 -1.825048 -4.872305 -3.348840 3.345446 -2.357027 -1.572049 0.199564 -0.326703 -0.216584 -0.409236 -6.726021 3.399944 3.694748 -1.706516 -2.789925 6.339913 -1.285228 5.109881 0.407177 2.753497 -0.863516 4.179770 2.603797 0.741347 -2.290415 -2.042644 -4.765166 -2.351564 0.764298 0.696034 -4.538116 -1.783180 0.789304 2.512771 0.184709 3.521329 -1.805313 8.442931 1.994200 -2.905352 -4.541751 -5.588936 -4.836420 -4.551737 -0.164693 -1.770122 -5.286801 2.295454 3.622621 1.710398 -0.234900 5.659477 0.000194 2.947744 1.377182 -2.921962 1.604601 -4.412150 3.283006 -4.401941 -3.544765 3.503274 2.819497 5.053754 -0.264041 0.700082 1.439812 -3.328413 -4.057478 1.258944 1.665393 1.781528 6.752243 5.898251 10.224027 -4.485132 -0.448913 0.301042 -2.473756 -0.900273 0.378317 -4.844439 0.885477 1.847198 -1.446973 8.903416 0.462320 -3.424934 4.115213 -0.076928 1.293640 -5.371368 3.927797 -3.218271 1.342500 -2.103363 -2.555185 -3.912820 -1.712915 -5.703337 -4.740846 8.241126 -7.568817 -7.750595 3.249882 1.398608 4.863895 -10.219549 6.937227 -2.811818 7.130637 -0.862624 -2.135002 0.900337 0.614236 -2.404757 3.678289 1.746496 -3.757772 2.130339 4.167713 1.801633 2.097864 -0.015323 3.763876 -1.196390 3.034935 -3.156090 3.113041 -0.819425 -3.094684 -1.963895 -0.928365 0.219370 2.784467 0.817483 -0.335987 2.820826 0.625976 0.890944 6.148638 2.435531 -2.510923 0.821062 -1.415951 5.487436 -4.248105 -3.702284 -1.105620 3.676667 1.892565 1.796773 -8.764335 -5.514081 -6.680260 -7.962377 -0.877436 0.815638 1.629636 1.525627 -1.728340 -6.990308 -4.749819 6.744839 -0.007953 6.746929 4.432368 1.815235 6.309152 3.409488 0.706114 -1.300658 0.583362 2.128216 -0.692165 -1.048298 -4.282873 3.228470 -5.695152 4.325440 6.235484 -2.700592 4.620338 0.329395 1.925206 -7.123215 7.673510 2.323635 -7.868154 1.598138 6.062706 3.876250 -4.646243 -4.283991 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = -0.064321 -0.504675 1.298743 0.823502 -0.479304 0.068667 0.264168 -0.297742 0.318697 -0.923878 -0.301691 0.326243 -0.742105 0.191835 -0.544838 -0.090827 -1.302424 -0.672352 -0.274238 -0.371996 -0.153937 -0.250715 0.264565 0.543921 0.550304 0.834743 -0.471915 -0.219628 -0.997140 0.490884 0.770490 -0.121827 0.547644 0.708489 0.142932 -1.861715 0.384793 0.557664 -0.276758 -0.764131 0.582097 -0.744375 0.019179 -0.966070 -0.475030 -0.018927 0.123281 0.616020 0.331922 -0.150657 -0.655387 0.144471 -0.249056 1.304628 -0.365703 0.306547 0.630634 -0.103251 -0.155656 -0.242897 0.096662 -0.068102 0.242028 0.136371 -0.447578 -0.688573 -0.103000 -0.930429 -0.457042 0.512030 0.217873 0.266281 -0.474677 -0.221718 -1.094901 -0.147252 0.240081 0.983872 0.869347 -0.949028 0.540328 -0.138295 0.266484 0.108103 0.209838 0.332385 0.340624 0.190081 0.108371 -0.181676 -1.263068 -0.019385 0.013257 -0.337753 -0.269351 -1.192139 0.510312 -1.302179 -0.732931 -0.011764 0.291070 -0.479680 -0.023476 0.106052 0.049119 0.523289 -0.340567 -0.413592 -0.004169 0.282786 0.052841 0.009563 0.164010 0.415382 -0.192228 -1.002870 -1.001571 0.536329 0.061223 -0.063495 0.270713 0.732212 -0.558356 0.067796 0.043545 0.206792 -0.478001 1.114507 -0.007249 -0.201759 0.061017 -0.148699 0.147011 -0.231928 0.373455 1.542721 -0.700454 -0.329347 -0.221415 0.142452 -0.409428 -0.723122 0.042596 0.229862 -0.013444 -0.782659 -0.557851 -0.553994 -0.538484 -1.107789 -0.254328 -0.355452 -0.226075 0.955113 0.525334 0.938100 0.465883 1.209463 -0.355250 0.303215 0.102828 -0.441160 0.431813 0.354111 0.453234 -0.408153 -0.479988 0.342905 -0.501571 0.648695 -0.031102 0.199804 0.068443 -0.836321 -0.420717 0.332759 0.630845 0.161639 0.670503 0.791931 -0.608425 -0.848460 0.068945 0.417654 -0.413629 -0.189477 0.285158 -0.569110 0.385788 0.228122 -0.323368 0.634725 0.011765 -0.396827 0.310627 -0.050028 0.252468 -0.511041 -0.153654 -0.308251 -0.146547 -0.807061 0.187441 -0.318830 -0.376134 -0.636689 -0.876254 0.963768 -0.978607 -0.721091 0.518752 0.298176 0.918756 -1.203840 0.224939 -0.449560 1.206774 0.176315 -0.024879 0.134389 -0.539151 -0.690682 0.132217 0.203727 -0.310840 0.002006 0.652451 0.535641 0.056374 -0.048121 0.745093 -0.135500 0.752816 -0.381628 0.336063 -0.256701 -0.659478 0.390560 -0.121691 -0.194715 -0.032700 0.504606 1.152573 0.430333 1.129426 0.926818 0.570721 0.780188 -0.375551 -0.166944 -0.255895 0.564489 -0.280819 -0.380540 0.055565 0.771733 -0.022319 0.157250 -0.962311 -1.755443 -1.119381 -1.171872 0.285443 -0.839911 0.022956 -0.065001 -0.094793 -0.949097 -0.480872 -0.187750 -0.293946 1.436850 0.494656 -0.004379 0.676489 0.700396 -0.890998 -0.104097 0.974571 0.871462 0.105407 0.209875 -1.326186 0.731184 -0.645404 0.057251 1.411136 -0.591640 0.468394 -0.156004 1.085809 -0.624203 1.291623 0.272136 -1.188522 0.481678 0.557823 0.348918 0.872259 -0.490942 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -1.386177 -2.932964 4.031338 2.896047 0.959366 0.980051 2.435220 -0.223379 1.320939 2.415273 -1.040048 2.505991 -2.752902 -0.067866 0.101641 1.069241 -1.791790 -2.843863 0.658521 -0.329163 -0.766187 -1.863996 -0.150925 2.034453 2.113142 -0.795124 -1.504141 -1.530797 -4.295044 -2.277929 -0.709273 -0.635560 1.864518 -1.148336 0.931204 -4.766269 1.534478 2.586799 -0.042984 -3.563086 1.342016 -1.449769 0.631279 0.352693 0.055713 1.098900 2.588045 1.547974 1.180943 1.531993 0.798940 -1.055948 0.827767 4.246363 -0.056156 2.170815 2.304055 -0.942078 -0.164006 -0.370941 0.527278 -2.350743 1.547976 0.944816 -1.288598 -0.872627 0.044235 -0.638465 -2.131260 1.016952 1.403813 -0.756222 -1.864555 -0.761017 -1.300159 -0.781416 0.743174 1.447954 3.983634 -1.644721 3.790674 1.174418 2.157965 -0.148990 1.363706 0.041039 1.409140 0.425681 -1.676641 -1.147814 -3.317213 -0.753576 -0.922780 1.672522 -0.615895 -1.051138 1.243519 -0.922175 -3.432735 1.300412 -0.352066 -1.001392 -1.821442 0.978748 1.507752 2.231988 -0.895285 -2.794634 -2.081353 0.744231 -1.436089 -0.881630 0.238990 -1.233685 -1.291394 -1.089447 -2.717604 0.092813 1.489481 -1.945802 -1.650609 2.465673 -1.652130 2.735806 0.348259 1.031378 0.199709 1.775850 2.241087 0.481303 1.182529 -2.082993 -3.715276 0.050098 0.625867 1.990829 -1.549021 0.163108 0.025281 0.874385 0.000882 1.004310 -0.160167 3.463181 2.199226 -1.856926 -2.387021 -2.270443 -0.047727 -1.344747 0.922080 -1.349431 -0.279149 -0.127988 1.851177 0.238436 0.261824 3.743602 -1.527209 2.163745 0.445879 -0.681822 0.655242 -0.228126 1.676735 -1.919854 -1.472632 1.119977 2.522496 0.851971 -0.196464 -0.219595 0.796135 -2.061934 -1.689833 0.319995 0.695691 0.407658 2.484462 1.592113 4.800412 -2.297644 -0.622428 0.525723 -0.298877 -0.572882 0.263373 -2.949625 1.437829 0.202148 -0.212596 3.221163 0.244736 -2.333757 2.181784 -0.138780 0.284476 -2.067319 1.673062 -1.709894 -0.072992 -0.776192 -0.712846 -1.600548 -1.087309 -1.753140 -0.284095 3.594284 -0.214026 -3.677251 0.577499 -1.181512 1.443971 -4.996121 4.471161 -1.563667 1.210989 -1.076377 -0.799745 -0.197393 1.337790 -0.340463 0.797983 1.039099 -0.770257 1.901261 2.775453 0.833919 0.558698 0.685161 1.611812 0.275549 0.648473 -0.490772 1.141351 -0.617788 -0.577469 -0.446656 -0.612823 1.103434 1.425248 -0.666903 0.975716 1.929922 -0.776022 1.605565 2.208300 1.108312 -1.323534 0.824860 -0.473693 3.689168 -1.562789 -1.154621 -0.991291 0.849761 0.117802 1.496058 -3.599148 -2.758932 -0.302269 -4.340812 -0.573913 0.618109 0.880289 0.365746 -0.045354 -3.655733 -1.499029 1.342220 0.194021 3.365017 1.721026 0.459526 2.660900 1.464798 -0.422946 -1.102499 -0.106390 0.346181 -1.029835 -1.015556 -0.891644 0.549635 -3.037554 2.075265 2.202981 -1.119040 0.809698 -1.038637 1.671031 -2.921846 3.828145 1.610236 -2.447946 1.119657 1.476162 3.605204 -2.395411 -1.915715 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 0.468858 -0.019429 4.013016 1.265426 -0.250821 -1.421809 1.718341 0.878313 0.687127 -0.633976 -1.009562 -1.429064 -1.089055 -0.500421 0.542018 0.543938 -3.772992 -2.227568 -0.202101 0.254132 -1.384865 -0.881693 2.421037 -0.467832 2.140062 3.134797 -2.325075 -1.564347 1.896747 -0.945368 2.757867 -1.268706 1.305818 3.594298 -0.662822 -5.990628 3.020266 -1.056797 -0.617184 1.993465 1.609280 1.288120 0.198897 -2.094233 -1.770583 0.977264 2.319858 4.141995 1.703273 1.579782 -0.449929 -3.153564 0.631227 3.792323 0.038491 -0.534561 1.494765 -0.290727 -0.011891 -0.551609 0.093159 -2.023506 -0.551746 1.245606 0.301820 0.956474 1.848031 -3.935994 -1.492653 2.373007 -0.202553 1.129902 -0.882455 -0.347361 -0.578331 0.735157 1.424509 2.731433 2.078895 -2.833371 1.114826 0.377356 2.260540 1.127029 -4.662271 1.017036 -2.264230 0.366116 -0.115761 -1.763010 -3.481570 -2.316744 -1.289118 -2.926877 0.083713 -3.723997 0.692211 -2.025802 -0.885463 -0.458814 0.362171 -0.386813 0.394988 0.199800 1.459459 -0.591545 1.189093 0.139755 -0.380066 -1.275311 -2.225974 2.841034 0.512116 0.841788 -1.386848 0.110856 -3.266007 2.133152 -1.567195 -0.654527 1.504155 1.185542 -1.899020 0.955496 1.033982 1.093167 -1.190193 2.931796 2.507839 -0.068735 1.283317 0.874908 1.550431 -1.156314 1.933988 3.557751 -0.544744 -2.689323 -1.108275 0.119137 -2.334348 -1.649221 0.398744 -0.514712 1.107488 -3.153121 -3.801763 -0.962691 -3.001185 -4.050850 0.999984 -0.951877 0.095390 3.445584 0.778118 2.586313 1.371225 3.127505 -3.165470 0.807965 -1.078487 -1.096546 -1.780268 1.269955 1.190043 -0.947313 0.280229 0.568762 -0.165507 0.673382 -0.274611 -2.184816 1.344659 -3.211272 -0.623626 0.330644 -0.445637 -0.124430 -2.723630 1.260237 -0.138983 -1.590007 -1.047257 2.780019 0.177450 -2.032269 3.363916 -1.112827 2.032492 -0.760589 -1.049269 0.182234 1.134605 -0.866519 1.960319 -1.141152 -1.205519 -0.700642 -1.393777 0.972985 -0.114681 -1.103550 0.489514 -2.107251 0.903411 0.322902 -2.418105 1.403143 -0.497108 -0.938294 0.796665 0.945692 1.329124 -0.648416 3.366560 -0.761050 1.724517 1.304083 -2.019767 0.008107 -3.044724 1.052822 -0.452879 -1.734989 1.744566 0.016643 2.090470 1.599820 0.815182 0.088880 1.646077 0.611463 3.121014 1.161706 -2.146562 -1.796675 -2.289744 0.396566 0.538095 -1.068071 -0.002718 -0.178684 2.126195 1.368827 1.658581 3.888903 0.532401 2.494697 -1.209888 -2.200585 0.304528 2.988138 -1.254781 -1.684127 1.058623 1.813046 -1.925579 0.420968 -1.909487 -3.659911 -3.411177 -3.799255 -2.256756 -1.849396 0.484337 -2.165380 -0.314470 -0.421162 0.051830 0.056389 0.500983 1.003238 1.874223 -1.622067 2.364411 2.290654 -3.292707 -2.183519 3.668038 1.745945 0.625566 1.927370 -5.387256 2.324197 -1.035078 -0.576125 3.019324 -3.447551 0.005657 -1.238246 2.104572 -2.245496 3.189110 -0.104354 -2.046933 0.696823 -1.538013 0.765193 2.171532 -0.934935 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = -0.096224 -0.303478 1.055386 0.750022 -0.210096 0.022223 0.281109 -0.427420 0.520669 0.023175 -0.162180 0.137955 -0.602624 0.229993 -0.167002 0.518227 -0.878444 -0.440415 -0.116813 -0.442294 -0.143416 -0.275975 0.512083 -0.025581 0.558353 0.342996 -0.333842 -0.306810 -0.417000 -0.424710 0.466497 -0.317602 0.444927 0.290828 -0.110619 -1.344730 0.604184 0.356011 -0.359578 -0.496679 0.502129 -0.416930 0.141696 -0.409034 -0.200164 0.135744 0.107715 0.284051 0.553758 0.258584 0.117243 0.051266 0.245502 0.950214 -0.553966 0.275668 0.183653 -0.189924 -0.288729 -0.019428 0.105824 0.017761 0.307784 0.248308 -0.140213 -0.686956 -0.209163 -0.511648 -0.630053 0.417746 -0.151368 0.089943 -0.539386 -0.093179 -0.377365 -0.181528 -0.529322 0.597300 0.804407 -0.563990 0.467263 -0.013060 0.014815 -0.059429 0.037401 0.221588 0.234509 0.139047 -0.055382 -0.143133 -0.191070 -0.114797 0.185114 0.012606 -0.089966 -0.786464 0.384459 -0.411758 -0.592401 0.108189 0.360875 -0.197616 -0.295208 -0.024321 0.085955 0.423855 -0.370852 -0.527261 0.003946 -0.016556 0.155894 -0.093119 -0.082259 -0.149695 -0.304635 -0.360780 -0.769631 0.133857 -0.166183 -0.259549 -0.085250 0.440510 -0.188436 -0.037619 0.059416 0.367561 -0.343081 0.806488 -0.079620 0.397723 0.136118 0.166570 -0.277545 -0.031955 0.473060 0.636394 -0.266093 -0.100327 -0.453667 0.039918 -0.501940 -0.219080 0.104223 0.367229 0.594409 -0.448971 -0.426667 -0.118599 -0.241952 -0.944207 0.156010 -0.426882 0.028916 0.417096 0.451710 0.281518 0.585158 0.906729 -0.484570 0.189241 -0.093910 -0.255264 0.619658 0.261393 0.502060 -0.309556 -0.294693 0.208432 0.055240 0.246257 0.008629 0.087915 0.111610 -0.679876 -0.060171 0.272316 0.317590 -0.146849 0.341243 0.403411 0.461305 -0.345375 0.110727 0.533422 -0.149346 -0.046672 0.204905 -0.612455 0.339498 0.147566 -0.132785 0.346470 0.037499 -0.335377 0.213913 -0.227391 0.164666 -0.407047 0.013423 -0.297651 -0.032868 -0.453809 0.060639 -0.211941 -0.363401 -0.178435 -0.164130 0.691990 -0.441147 -0.288283 0.516171 -0.082688 0.346215 -0.769793 0.915617 -0.470024 0.503234 -0.261312 -0.106330 0.021051 -0.026058 -0.444342 0.006524 0.198984 0.002846 0.172838 0.730679 0.446286 0.003525 -0.067367 0.681197 -0.067639 0.654060 -0.107251 0.521889 -0.176193 -0.208934 0.203250 -0.122876 -0.215379 -0.185216 0.207196 0.788325 0.339581 0.349820 0.601375 0.252436 0.776809 -0.332451 0.398359 -0.119201 0.526495 -0.181678 -0.203485 0.229772 0.458732 -0.182116 0.359899 -0.759094 -1.034916 -0.511186 -0.591266 0.020990 -0.104052 0.202037 -0.183818 0.044092 -0.606527 -0.365911 0.263441 -0.238331 0.578871 0.287570 0.073823 0.421755 0.595029 -0.394642 -0.195523 0.094280 0.346787 0.159088 -0.009860 -0.623272 0.543994 -0.573269 -0.015847 0.762701 -0.416668 0.071408 -0.113780 0.667051 -0.469026 0.842505 0.162108 -0.296928 0.778919 0.499387 0.523247 0.321899 -0.314356 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 0.381531 -2.150075 6.879347 4.658156 -2.053305 0.677777 0.937427 -2.725993 1.854898 -1.157722 -1.689018 1.880356 -3.310632 1.011808 -2.062190 1.362477 -6.332943 -2.521688 -1.213068 -2.529629 -1.595475 -1.472934 1.083638 2.311616 3.298565 3.925085 -2.243110 -0.477146 -3.282942 -2.184811 1.655384 -0.910510 2.273939 2.951621 1.296228 -7.020540 3.316630 3.039125 -1.344879 -2.993995 2.521660 -2.692288 -0.507289 -2.678124 -1.374267 0.847931 0.830244 3.257857 2.573579 0.478447 -0.914272 0.194724 1.307896 5.562201 -1.465242 2.214478 2.455915 -1.158889 -0.296935 -0.424144 0.403128 -0.717786 1.212868 0.935245 -1.154854 -3.688871 -0.125577 -2.817343 -1.685044 3.010652 0.887766 -0.420266 -2.877626 -1.633194 -3.890391 -0.757673 -1.800743 4.120911 4.766670 -3.467224 2.894902 0.405465 0.809040 -0.127425 1.456012 0.688038 3.285946 0.952907 -0.333535 -0.611118 -3.440560 -1.128463 0.791650 -0.027119 -1.615770 -5.084555 2.084417 -6.787490 -4.407979 0.589214 1.784709 -2.586380 -0.260742 0.390751 1.011042 1.044104 -1.161625 -2.683233 0.364116 0.906293 -0.773667 -0.409949 -0.125572 0.567205 -0.669880 -0.930004 -4.970666 2.087556 0.102083 -0.575899 0.231282 3.398257 0.158534 0.548105 0.272936 1.733114 -1.400187 4.051232 -0.266500 1.061278 -0.210447 1.127626 0.258285 0.610921 2.204072 1.826019 -2.862440 -1.485260 -1.093468 1.140185 -2.453646 -0.830151 -1.240429 3.302910 1.352458 -3.133416 -3.070620 -2.067668 -3.026641 -4.772918 0.017360 -1.790154 -2.940773 1.410609 2.689310 2.609179 2.288815 3.146569 -1.779777 1.017223 0.402011 -0.756588 2.735011 0.394483 2.621411 -2.434873 -1.915281 1.931459 -0.498355 2.382549 -0.474128 0.546014 0.636650 -3.585402 -1.414077 2.270161 1.900832 0.452911 3.518892 3.673243 2.837806 -2.680794 0.727401 2.411320 -1.558671 -0.867192 1.504029 -3.232000 2.060532 1.074455 0.358377 4.005761 0.192193 -1.289190 1.423983 -0.086266 1.079590 -3.027287 0.127703 -1.684207 -0.115935 -2.629444 0.998025 -1.713027 -1.673971 -2.461292 -2.891788 4.709313 -5.187252 -2.979480 3.945776 -0.321023 3.510750 -4.997395 2.931213 -2.469188 3.642812 -0.258669 -0.944094 0.636965 -1.961579 -3.338616 1.520423 1.075978 -1.077360 1.001351 2.894611 2.319844 0.972535 -0.382102 3.501355 -1.108298 3.620072 -1.715896 2.618322 -0.628569 -1.860737 0.023996 -0.676066 -1.561880 -0.233771 1.672354 3.612634 1.778854 3.210695 2.897637 2.262023 3.695413 -1.980721 1.187938 -1.248513 1.937037 -2.122499 -2.361431 1.039138 2.188688 -0.453637 1.747720 -5.406033 -6.162438 -5.066979 -4.031127 -0.249935 -2.196133 1.605396 -0.098032 -0.651654 -3.943156 -2.835671 2.775349 -0.639525 3.656860 2.559695 0.369007 2.999792 3.378139 -1.655785 -0.465991 1.265418 2.860113 0.645239 0.083185 -4.958195 3.771971 -2.913934 1.196828 5.819357 -3.017943 2.016704 -1.065727 4.321996 -3.791687 4.985524 1.149893 -4.384566 2.439925 3.417108 2.144057 1.733008 -2.529841 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.648254 -0.735433 1.911480 1.299999 0.193974 0.274060 0.641414 -0.779737 0.987094 0.753640 -0.272403 0.592187 -1.111107 0.159486 -0.191909 0.757888 -1.092718 -1.090450 -0.146154 -0.801592 -0.410888 -0.725220 0.467436 0.249653 0.971554 -0.090735 -0.810573 -0.330145 -1.488644 -1.628544 0.174526 -0.414693 0.781764 -0.322916 0.054682 -2.185085 1.158579 1.062789 -0.394366 -1.106355 0.799523 -0.781517 0.170600 -0.095737 0.013322 0.507075 0.473691 0.019890 0.992547 0.531400 0.647021 0.000189 0.159784 1.524910 -0.803630 0.774343 0.473188 -0.470070 -0.471198 0.147985 0.106946 -0.391106 0.727051 0.479729 -0.566402 -0.979673 0.115569 -0.388794 -1.143652 0.810773 -0.005437 -0.521445 -0.707663 -0.329655 -0.844614 -0.417985 0.430657 0.594985 1.562253 -0.590206 1.200878 0.117099 0.397524 -0.079548 0.467157 0.058390 0.925926 0.149418 -0.470503 -0.576218 -0.765414 -0.239245 -0.130840 1.136339 -0.191036 -0.219694 0.680301 -0.965088 -1.373013 0.276129 0.358135 -0.397005 -1.458493 0.247959 0.532214 0.706871 -0.269377 -1.189130 -0.500616 0.326485 -0.340100 -0.279177 -0.109674 -0.863479 -0.656345 -0.248041 -1.335619 0.147304 0.077316 -0.558668 -0.991740 1.029768 -0.586614 0.315312 0.169170 0.835995 -0.374604 0.853638 -0.006799 0.725455 0.314306 -0.212250 -1.541886 -0.436098 0.472694 0.716723 -0.647216 -0.132170 -0.619971 0.133510 -0.824882 0.161136 -0.412116 1.280123 1.373616 -0.848304 -0.874643 -0.358357 -0.122814 -1.329994 0.310396 -0.703357 -0.271232 -0.014727 0.856785 0.310871 0.689684 1.865719 -0.757242 0.670151 0.070241 -0.532232 0.978584 -0.289410 0.925352 -0.801222 -0.642181 0.458011 0.607857 0.359281 -0.064770 0.066181 0.213051 -1.207900 -0.639220 0.448831 0.231134 0.176707 0.815781 0.837831 1.936831 -1.239917 0.180195 0.736500 -0.241934 -0.113856 0.197489 -1.151120 0.453718 0.360530 0.064992 1.335541 0.114364 -0.923372 0.415649 -0.116465 0.368701 -0.992335 0.463744 -0.724104 0.261728 -0.463403 -0.632528 -0.627562 -0.592983 -0.532488 -0.379404 1.383209 -0.215677 -1.606541 1.062804 -0.413444 0.731176 -2.171103 1.363427 -0.844487 0.745815 -0.716652 0.040444 -0.149050 0.455491 -0.670172 0.486329 0.370701 -0.353526 0.920239 1.484828 0.620385 0.382000 -0.182378 1.012200 -0.058177 0.841863 -0.303345 0.961384 -0.284128 -0.385412 -0.034428 -0.292251 -0.095114 0.087012 0.017930 0.518858 0.904017 -0.056176 0.753704 0.927245 1.107226 -0.550474 0.838060 -0.141367 1.071337 -0.401988 -0.559855 0.276387 0.535358 -0.161155 0.650977 -1.551031 -1.491084 -0.344208 -1.999535 0.052617 0.173376 0.364017 -0.020263 -0.001996 -1.402126 -0.614659 0.854840 0.004093 1.854238 0.510337 0.241237 0.829617 1.004550 -0.535008 -0.367690 -0.254663 0.210903 -0.134556 -0.578651 -0.753616 0.844497 -1.032982 0.494199 1.094133 -0.712936 0.307294 -0.207742 0.643123 -1.152661 1.556913 0.433374 -0.534088 1.174206 0.552319 1.512361 -0.351397 -0.679735 diff --git a/src/test-suite/oracle/SYM_llvm14_p/ir2vec.txt b/src/test-suite/oracle/SYM_llvm14_p/ir2vec.txt deleted file mode 100644 index ef14529b9..000000000 --- a/src/test-suite/oracle/SYM_llvm14_p/ir2vec.txt +++ /dev/null @@ -1,118 +0,0 @@ -10.204284 -66.521750 267.713023 175.523718 -62.889176 19.173604 38.236148 -117.560479 103.268582 8.559289 -49.319250 50.750043 -108.633472 38.068065 -53.554719 95.989454 -214.298975 -86.840867 -46.151011 -118.352938 -54.812998 -54.647042 63.343579 31.699248 127.911670 85.983710 -79.467228 -27.906377 -88.587657 -137.057060 61.835400 -44.939834 77.209112 30.682558 36.006604 -276.078743 154.394192 102.863206 -64.241042 -120.329299 97.141867 -72.376102 -4.706226 -61.559794 -44.334092 41.333839 24.813612 100.328699 108.896835 59.486681 7.073538 21.252334 64.751331 229.716248 -74.919527 77.177471 67.508309 -45.340207 -32.478663 11.734073 16.589645 -12.518965 38.156379 29.583404 -8.461036 -148.847798 -16.327137 -85.151361 -85.948137 106.645104 -2.596966 -50.963208 -106.694414 -62.032209 -121.165952 -30.937594 -134.094338 148.192650 172.589879 -129.950142 94.594898 10.635935 15.755437 6.039418 30.793268 24.480218 100.752470 36.829516 -7.151394 -24.865845 -61.995707 -53.046786 43.343856 -21.616765 -57.554543 -206.499250 91.680253 -186.619569 -146.488438 40.050639 87.546202 -82.560938 -42.238632 -15.641474 33.961166 55.592793 -55.746514 -100.875582 1.562378 32.754058 1.749619 -12.182137 -3.786942 -19.893272 -32.831884 -22.121891 -178.781989 70.776012 -4.224136 -19.566595 -20.568602 115.958518 -5.617368 -2.883338 10.115177 83.498557 -64.717650 156.670922 -12.312039 87.408247 -12.063820 62.408562 -46.203874 40.447951 88.778839 38.692114 -61.814149 -19.897628 -69.020082 36.261698 -106.746172 2.401047 -43.220670 108.708271 95.197083 -94.830594 -112.961988 -51.260760 -96.414128 -177.384270 23.516737 -74.578763 -87.627604 63.028141 96.607816 95.662963 98.430939 126.303695 -97.517818 23.784979 -11.953221 -34.540488 108.539440 6.518474 98.747886 -81.338132 -61.527159 53.023094 10.303231 70.799779 -4.014146 11.018192 32.483377 -136.327369 -17.822467 73.322698 72.142043 -9.694017 101.098388 129.692635 131.311970 -80.775829 4.979249 103.973547 -63.490435 -26.484956 44.905195 -126.951155 58.738799 44.331556 23.937478 133.280158 6.156745 -37.214143 54.261546 -30.220111 33.911015 -89.111922 0.508665 -67.830925 -10.625916 -74.351654 21.477971 -72.672900 -51.190197 -73.794322 -91.948942 164.166339 -158.091704 -95.343050 155.814519 -46.635599 89.905070 -165.209018 172.534968 -90.736808 109.200820 -20.953631 -13.434611 1.924534 -34.768899 -121.257194 43.318392 34.946695 -19.716087 40.934259 147.481268 84.469441 14.891503 -25.815585 143.269260 -60.944091 146.684307 -54.168870 117.145789 -47.212747 -49.766901 1.693972 -18.963252 -65.477039 -39.024616 54.709359 122.586733 41.727640 85.048115 97.022094 72.383999 149.689048 -71.214125 94.198947 -36.312636 72.506562 -70.013942 -71.142197 63.355399 84.234111 -27.501252 62.753743 -192.939908 -195.613474 -188.286394 -134.044108 -4.675470 -53.834918 50.992181 -35.625978 -26.190853 -128.109786 -109.864057 124.824980 -23.307273 81.669268 89.296004 15.300611 104.387801 135.477275 -57.130370 -10.103648 6.922305 64.982228 33.213589 -24.348912 -143.509685 140.766575 -113.086019 12.644219 196.049864 -93.821088 62.042283 -23.001236 112.467187 -133.399753 164.854384 34.804505 -100.787784 112.962099 137.379882 105.408753 39.962385 -83.164463 --6.277746 -16.175594 40.887851 22.165742 -3.984714 4.111161 20.280070 -11.800763 14.177127 1.507945 -8.156453 7.641856 -26.656800 -1.287807 -9.051278 3.498934 -29.866640 -21.742216 -3.368614 -13.677259 -8.612568 -15.458708 8.847639 14.103643 20.993326 6.831269 -11.587009 -10.087565 -28.268762 -13.773691 9.846325 -4.944823 13.621137 6.317977 6.481387 -43.812865 18.226588 16.830137 -6.497517 -18.461755 16.360489 -11.186175 0.044425 -6.562966 -3.931165 5.675326 13.670275 21.885367 16.676057 7.418760 2.074491 -9.800772 2.048045 38.090511 -9.431551 14.915102 16.664458 -6.388912 -0.729583 3.565588 -0.079761 -13.838777 6.616688 9.069192 -9.833174 -11.024617 6.942382 -17.352817 -16.913109 18.781072 6.601674 -5.734446 -15.509703 -9.028624 -22.170307 -5.307609 -1.112440 20.248880 33.446491 -20.784725 25.525194 5.110073 12.510278 -2.434851 4.350130 1.980608 14.114221 1.986645 -8.177850 -9.048247 -32.442278 -5.953567 -5.419472 4.310700 -4.212967 -23.769068 15.128963 -29.250825 -29.721991 4.992473 4.804749 -13.206495 -10.225258 9.237351 8.361054 8.720923 -8.055190 -22.435276 -9.963283 7.230906 -12.722027 3.797691 4.225011 -1.042128 -8.960998 -11.274335 -28.291443 8.133990 2.066539 -11.137732 -8.735822 22.924004 -11.715849 15.101127 8.394544 12.801964 -5.584891 20.874505 9.514029 3.540202 6.445529 -4.761433 -16.191881 -4.502538 10.480943 22.756596 -11.163664 -3.477492 -4.283526 6.558090 -13.300871 -0.657215 -4.726484 21.427398 8.234815 -24.252138 -21.025127 -10.879992 -10.919587 -26.747937 5.084292 -12.017966 -12.818291 5.205355 14.369076 15.809301 7.483208 30.698984 -13.485213 12.401176 1.658338 -10.129530 6.725129 -1.363231 18.554307 -15.722419 -12.716016 4.714193 4.042418 12.720871 -3.369396 -2.519557 2.944577 -27.012762 -14.097199 1.857314 7.702503 -0.457418 15.330511 22.557058 20.496637 -25.455411 -0.272984 14.677645 -5.658333 -7.697977 9.792166 -23.855404 14.037611 4.430643 -2.530492 23.584398 3.325224 -12.632259 15.304634 -4.954779 5.397929 -19.402791 0.576161 -12.195585 -1.610035 -15.218043 1.191593 -14.024712 -10.884733 -12.987997 -13.856186 28.027232 -15.348758 -25.469365 20.035245 -0.143277 19.972125 -36.234934 30.517637 -12.037435 19.202231 -3.918813 -4.011129 -0.914374 1.302792 -8.475748 6.959063 0.872481 -6.094059 15.604302 25.630408 11.447495 9.817838 1.897588 23.159679 -4.871879 14.557297 -8.943377 11.179151 -7.732259 -17.907292 1.707458 -3.802788 -1.530121 3.850664 5.402566 19.535524 17.440449 7.060919 21.262476 16.589453 18.753378 -9.275511 4.448957 -2.867269 23.333442 -13.385664 -13.002783 3.343989 10.996584 -5.235256 11.534630 -33.929618 -37.760043 -16.487983 -38.102392 -3.720036 -12.947989 8.125401 0.514335 -1.648534 -28.606634 -13.736492 9.791907 -0.918070 24.821609 16.067185 3.080824 22.503638 24.267797 -11.821583 -4.254754 12.228569 16.722001 -4.273144 -5.116121 -24.064299 14.401629 -24.576631 11.814766 28.703814 -14.111977 9.941721 -10.945919 21.537691 -30.222433 32.315313 9.485334 -22.896964 16.957969 16.826882 22.757110 5.718952 -13.812527 --2.634263 -5.123367 21.545656 14.198317 -3.466826 1.552089 2.623523 -10.005516 10.265969 0.505018 -3.260928 4.580562 -9.008979 3.030476 -1.765531 7.739941 -17.914212 -9.079872 -2.944317 -10.009910 -4.861521 -5.520500 5.479752 2.185872 9.584265 5.264608 -8.287701 -1.248955 -9.048057 -12.097848 6.368111 -5.010239 7.870139 2.311060 2.002934 -28.101760 13.506378 7.548339 -5.359953 -10.100592 7.816409 -8.087801 1.076678 -6.318070 -3.989748 3.837613 2.600141 4.538090 10.594341 3.755752 1.043950 1.777821 1.501485 18.118860 -8.622027 5.913076 4.430457 -5.748901 -5.305341 0.680701 1.473013 -1.593894 6.299553 4.506013 -4.308748 -13.124753 0.758810 -7.488097 -10.541987 9.655377 0.947572 -3.505342 -7.757910 -3.566655 -10.554724 -4.028964 1.249483 10.939625 15.269367 -8.748080 8.994035 -0.222131 2.968940 0.812468 4.155011 2.132234 11.434575 2.418746 -2.873316 -3.836726 -7.616495 -4.704131 2.235281 3.814188 -1.834090 -10.514815 5.623858 -14.862576 -12.291934 2.531141 6.746653 -4.498038 -11.564136 -1.488448 6.182067 5.829282 -3.250775 -9.745391 -1.457532 2.520234 -3.139614 -1.650332 -1.171618 -4.786444 -4.934327 -3.519376 -15.281946 3.954184 -0.414226 -2.145218 -4.773410 10.395726 -4.935933 -1.066067 0.748577 7.882874 -6.199048 11.922892 -2.831989 6.706665 1.427028 0.930667 -6.837714 -1.742521 5.879056 7.857944 -5.468203 -4.668286 -7.421714 2.208664 -11.265881 -1.572441 -2.930460 10.742179 10.967586 -7.810256 -9.528337 -3.731636 -5.323794 -16.734756 2.136927 -7.382442 -5.189878 5.801169 8.955969 6.866347 9.581957 13.912021 -8.014890 5.946766 -1.448408 -3.504620 11.731798 -0.272268 9.540241 -7.416347 -4.734466 4.809576 0.836455 5.682002 -0.281142 -0.444324 2.664359 -12.737280 -5.841003 5.957514 5.436046 2.653095 7.093531 9.577286 14.907834 -11.216094 1.966676 9.389387 -3.336519 -2.044517 3.643627 -9.829405 4.423430 4.220904 0.520498 12.435892 0.501724 -7.910308 1.730607 0.016624 3.742766 -8.234083 0.486988 -5.522271 2.321736 -5.770304 -2.891706 -7.514540 -5.430438 -6.889091 -7.463449 14.222522 -9.753578 -14.162266 14.456622 -5.600686 10.910826 -19.495530 11.720869 -8.925720 10.450942 -5.631155 -0.428948 -0.925666 -2.244065 -10.630435 6.369485 3.497098 -2.224347 4.901477 13.619722 8.141385 3.907655 -3.016930 11.530813 -2.014916 12.031872 -3.412050 10.515893 -4.327362 -3.423423 0.389995 -2.244486 -3.931350 -1.429909 4.177271 7.776606 6.705334 6.170223 9.634611 8.537553 12.333659 -6.494770 7.343184 -2.769122 7.278721 -4.135765 -6.075911 5.002111 7.686323 -2.355145 5.522156 -15.991187 -17.774069 -12.485927 -16.191629 -0.202229 -0.864433 3.246485 -1.689976 -0.481682 -12.424965 -5.975001 8.864760 -1.003188 16.347401 6.287251 1.340842 8.405162 11.891337 -7.241869 -4.256353 0.512758 3.926654 0.967373 -2.366897 -14.137505 12.583114 -9.826817 2.979844 15.695714 -8.732482 3.282280 -2.518638 10.065954 -10.519646 15.301457 3.564489 -7.878963 10.621458 7.576434 10.579564 3.248639 -7.197401 --4.967350 -13.322829 22.413375 13.802059 -0.384434 4.802690 10.942150 -3.331658 3.841344 4.674465 -5.481802 9.543578 -14.404198 -2.454013 -1.786630 0.103862 -13.933186 -12.990931 -0.075027 -4.250302 -4.949890 -8.814438 -1.654211 14.883551 10.721848 2.240248 -6.763077 -4.640023 -19.644051 -7.729126 -1.438687 -1.150452 8.563169 3.699138 8.470909 -20.849392 7.916920 12.339881 -0.279765 -13.027711 6.484086 -5.447529 0.472710 -0.824347 -3.256011 5.225869 11.330285 9.828266 6.042357 4.493379 1.259999 -7.795753 3.893926 18.949187 1.852392 10.538924 12.291303 -5.003197 3.816922 -1.559814 0.646785 -11.859744 4.554295 3.486931 -6.016902 -3.572780 3.067609 -6.313670 -6.914666 8.137555 7.787924 -4.601835 -8.816170 -6.965786 -12.082723 -3.929966 2.564830 9.678194 19.259036 -10.462025 17.482275 6.698706 10.317100 -0.935633 6.753834 0.161498 9.527781 1.660011 -6.600193 -1.639879 -19.556597 -4.627030 -4.684249 5.649823 -4.873044 -8.124532 7.023579 -16.768777 -18.501377 6.276933 -0.686917 -8.054054 -4.725656 5.661333 5.620504 5.314460 -3.736144 -12.888029 -7.587507 5.582980 -8.947491 -0.077979 1.585210 0.485991 -3.542176 -3.966805 -14.928590 4.740642 6.155378 -7.137281 -4.325708 14.290669 -5.276299 13.660023 3.654152 4.970192 -0.553038 10.244003 10.354843 0.002862 1.425316 -8.225298 -11.611959 -1.119436 3.217023 7.677052 -8.134272 -3.322257 2.163913 5.368550 -1.490179 4.724363 -1.767110 16.269776 4.404733 -11.526199 -12.778571 -11.136146 -8.100087 -10.521713 2.521838 -5.468259 -8.058522 1.810938 7.980882 6.459546 0.245895 14.014350 -3.942567 8.121739 1.927631 -4.650887 0.522995 -2.619172 8.818994 -9.682854 -7.124125 5.512222 6.373863 8.377328 -0.411568 -2.454070 2.790560 -11.040899 -9.630949 1.792372 3.541405 2.779778 12.852253 12.580934 17.212924 -10.864261 -2.341458 3.819585 -2.232803 -4.640744 4.092537 -12.988304 7.723032 1.304147 -2.704482 16.342422 1.021249 -6.897800 11.072622 -1.069035 2.635147 -12.332283 4.904515 -7.142773 1.156824 -7.414852 -0.663272 -9.489132 -5.283790 -9.476503 -6.965662 17.984647 -8.803785 -16.140273 7.139332 -0.520294 11.181797 -21.145975 16.598793 -6.060836 11.387786 -1.847225 -5.441276 -0.131335 0.861202 -1.879834 4.952900 2.039021 -5.479742 7.520911 10.704633 4.376962 4.617888 3.186791 9.844867 -1.241625 5.292326 -5.231633 4.719911 -2.844671 -6.557557 -1.874241 -2.286726 2.104005 6.532992 -0.307212 5.383188 9.475375 0.985456 7.629196 10.710922 5.402275 -5.552810 -0.677558 -1.951556 14.948001 -10.305758 -8.205206 -2.634979 5.403937 -0.119724 4.673662 -19.710958 -16.437240 -8.806275 -19.985430 -5.300692 -2.972637 4.789396 3.939099 -2.121897 -15.995717 -8.702065 8.770975 0.933123 13.439791 9.614694 1.779275 15.232467 10.653257 -1.719158 -4.007904 4.751465 6.915047 -4.174707 -1.607294 -11.393772 5.730859 -14.538844 10.584399 14.877898 -7.423695 7.593373 -5.106908 11.185713 -18.321653 18.701636 6.821135 -17.028062 4.765887 9.841108 11.568785 -5.137717 -9.306015 --4.156480 -6.358027 30.792732 19.933152 -5.785025 2.289399 1.904846 -14.671616 13.687738 0.425348 -3.779182 6.753852 -10.628722 3.966915 -2.032812 10.751496 -25.181114 -11.407379 -5.214873 -15.701671 -7.843326 -6.073567 5.955962 2.933711 13.070042 6.854806 -12.031866 -0.772659 -10.979384 -17.987633 8.032155 -6.231751 10.633787 0.804956 3.696559 -42.311472 19.483926 10.778924 -7.760531 -13.633774 10.619015 -10.448868 1.221282 -7.976022 -7.538861 4.865988 2.786831 4.290931 14.254721 5.110385 1.460835 4.309543 2.627049 27.665811 -10.990569 8.250124 6.336011 -8.729093 -7.943014 1.398585 1.895702 -1.893308 8.212297 4.329155 -4.679320 -19.278390 1.388783 -9.683960 -13.463000 12.905605 1.656917 -7.726543 -9.188037 -6.304273 -15.779199 -6.625254 2.311135 15.067120 19.916159 -12.681216 11.374054 -0.748870 3.157949 2.916683 6.518242 2.853405 17.072919 3.523109 -2.815766 -4.014161 -7.680994 -6.415467 4.285831 5.858011 -3.811504 -16.349607 8.399695 -21.653724 -16.742620 4.673824 10.579716 -6.724332 -17.360223 -5.033137 8.288851 7.266398 -4.778594 -12.501329 -2.645853 4.453662 -4.005173 -2.312816 -2.012438 -7.064440 -5.574875 -3.504084 -21.268518 7.445950 0.093852 -0.749440 -7.594027 14.809364 -5.971054 -2.877872 0.418585 11.858369 -9.785363 16.578023 -5.225427 9.736063 -0.880159 2.750467 -9.532168 -3.139174 7.593389 8.548780 -7.143592 -8.057988 -10.782643 3.443450 -15.884769 -0.258613 -4.610481 15.796516 16.032590 -8.935795 -13.106922 -5.416433 -8.521755 -23.675319 2.040345 -9.704288 -9.196459 9.389310 12.071166 10.335432 13.028285 17.050685 -9.888738 8.041933 -2.690327 -5.361638 16.638547 -2.273863 12.960546 -10.353737 -6.032697 6.434286 0.575798 9.318723 0.053836 -0.465208 3.900677 -16.675161 -8.006813 8.296178 8.092043 4.188261 9.592139 14.495439 24.047295 -15.790853 2.107351 12.393689 -6.193375 -2.733085 4.703557 -12.300624 3.703989 6.975032 -0.098500 18.872334 0.560947 -10.308312 1.623120 0.379916 5.138338 -10.601104 0.989202 -7.279977 3.717231 -6.798918 -5.422108 -11.805923 -6.182560 -10.957351 -12.902652 19.933766 -17.161829 -20.169894 21.457731 -7.886209 14.930384 -27.019156 16.444881 -12.059852 15.428299 -8.351430 -0.573624 -1.675994 -3.133602 -16.079181 11.208148 4.532821 -4.082422 5.353690 19.584710 11.158220 5.869113 -5.770834 16.198438 -4.232486 17.734403 -5.454394 15.892605 -6.628214 -4.647924 -0.620097 -2.540443 -6.713829 -2.607848 6.933284 8.262119 7.631949 8.871274 10.873021 12.913875 16.845778 -8.974264 10.910493 -3.900414 8.604567 -5.887034 -8.799830 8.087684 11.800760 -2.193876 6.295431 -22.391870 -22.701398 -20.590451 -21.435313 0.272540 0.713104 3.555263 -2.607869 -1.898257 -16.458366 -8.835613 15.037834 -1.328334 21.757749 9.067926 2.300893 11.905419 16.611847 -9.090082 -5.397645 -0.207340 4.156890 2.391657 -3.518229 -20.066332 18.845513 -12.789949 3.642836 22.036325 -11.470109 5.989695 -1.179617 12.322234 -14.435254 20.416970 3.954573 -11.074199 13.854700 12.088660 13.876435 3.313941 -9.825221 --4.689723 -10.593060 16.864963 11.953426 0.063204 4.477215 5.450467 -2.911496 2.303747 5.892315 -4.277865 9.486929 -9.442203 -1.678592 -0.740534 1.740169 -9.724365 -8.890556 -0.387068 -3.551310 -3.835235 -5.028755 -3.798677 11.580518 7.816599 0.803179 -5.970610 -1.494540 -14.811851 -10.029016 -4.484086 -1.032274 6.598616 -0.009869 6.335021 -15.711039 6.853051 11.511239 -0.396913 -10.583836 4.331116 -5.458351 0.136221 -1.052722 -3.536686 4.024392 7.871482 2.191459 3.683192 2.901661 1.025299 -3.336266 5.177905 14.812317 2.129305 9.043246 10.338478 -4.365373 2.183283 -1.663137 1.395719 -8.151601 4.658416 1.157356 -4.138203 -4.768667 0.827946 -2.585162 -3.607481 4.732047 4.615378 -5.256128 -5.761314 -5.851880 -10.708280 -4.087401 2.576503 6.208364 13.692663 -7.749349 13.192983 5.379136 6.571351 1.165196 7.652629 0.275195 9.278917 2.154601 -4.831836 -0.102800 -9.606383 -3.522318 -1.712474 8.102354 -5.150187 -3.781647 5.543890 -14.755016 -14.495039 6.004191 -0.086430 -6.090545 -5.307219 1.476822 3.809899 4.121131 -2.643174 -9.299968 -5.214572 4.384937 -5.400151 -2.822921 -0.264867 -0.968653 -1.570032 0.348569 -11.620389 3.864360 5.816678 -4.683225 -4.593681 10.871572 -1.580221 9.167355 0.721944 3.989368 -0.677633 6.842875 5.405100 2.234836 -1.210772 -4.440725 -10.429312 -1.841228 2.350200 0.990369 -7.431374 -2.291640 1.706968 4.208124 -0.136260 5.672090 -2.826511 15.032592 4.088024 -6.098072 -8.451299 -9.721134 -7.130632 -7.444071 1.296854 -3.945748 -7.474405 1.729739 6.867871 2.834759 0.389090 9.518105 -1.787602 5.567463 1.653534 -3.041326 2.725307 -5.380157 6.108376 -7.760694 -5.539293 5.939292 6.446849 6.529702 0.259394 -0.637598 2.793906 -6.483430 -7.003193 3.233859 1.965528 2.309216 11.753377 9.143334 17.744409 -8.001808 -0.385679 1.341636 -2.376454 -2.014317 1.357096 -9.312519 4.148988 2.078892 -0.864327 13.863432 0.747909 -5.936182 6.516303 -0.213487 1.991313 -9.278020 6.384778 -5.814291 1.824636 -3.703830 -2.555981 -6.996916 -4.168442 -8.061099 -5.095243 14.259485 -9.760508 -12.302480 5.749245 0.602689 7.753192 -16.859397 12.237121 -5.600597 10.223298 -2.494324 -4.618324 0.751694 1.611890 -3.127809 4.714743 3.642087 -5.946806 4.899694 6.748911 3.377550 3.887939 1.344073 6.383159 -1.258868 4.178723 -4.443857 5.032989 -1.028092 -3.864535 -3.638758 -2.234314 1.672783 5.119670 -0.088411 0.478834 6.097670 0.018374 2.549716 9.433677 3.837100 -4.894269 1.423757 -2.094690 10.477709 -7.692463 -6.201346 -2.457579 4.227584 1.900727 3.870410 -15.201562 -9.581989 -8.491345 -12.364210 -3.834287 1.605361 3.620311 3.264848 -1.829609 -12.264453 -7.511658 10.055785 0.249125 9.090015 6.881727 2.782978 10.829733 6.066327 1.591332 -3.889427 -0.153289 3.236683 -2.196062 -1.743014 -7.148051 5.306558 -10.188145 8.084340 10.313556 -5.168948 6.187620 -0.362191 5.357190 -12.410061 13.499644 4.976766 -12.989121 3.128005 9.934887 8.074595 -8.139563 -7.716061 --3.313368 -9.238714 10.687518 8.063630 2.816122 3.516295 4.447294 0.207314 2.488039 3.928584 -2.796816 9.151419 -6.722246 -0.931444 1.055082 -0.300514 -6.413386 -9.465707 1.932423 0.821119 -3.757415 -5.434434 -5.041784 10.660931 4.063703 2.043237 -5.328714 1.380334 -14.439845 -6.986358 -4.811346 -0.552068 4.407893 -0.684891 6.952107 -9.863347 3.926334 9.254299 2.058649 -10.076550 1.306490 -4.893931 1.730259 -0.322126 -0.346106 5.695366 8.497274 3.409325 2.276553 2.665684 -0.707683 -3.178689 1.494808 5.345717 4.284019 6.096433 7.985984 -2.703226 1.588698 -3.116578 1.206385 -8.122604 4.097914 1.310862 -6.095921 -0.137207 2.055174 -1.457226 -3.485739 4.115921 7.023645 -4.624557 -4.152314 -4.025676 -7.948957 -1.920516 9.787763 3.977769 9.910177 -4.628497 10.345450 2.937547 8.783208 -0.035351 6.091115 -1.428754 8.559177 1.223208 -5.681570 -0.983358 -12.351057 -5.055323 -4.361607 5.591390 -2.433147 1.171596 0.619285 -11.792385 -10.234178 3.153112 -2.507735 -2.199690 -6.119921 3.285821 6.807426 3.870653 0.660285 -6.079506 -3.956194 3.765491 -7.561552 -1.380941 0.724253 -0.748407 -3.006222 -1.331346 -7.787051 0.729957 6.858999 -3.700041 -1.476496 9.380423 -4.634721 9.625596 0.370739 0.147632 2.790748 4.869685 7.060703 0.049526 -0.492754 -8.192557 -6.392125 -1.738451 -2.382861 2.363198 -6.628905 -3.115476 3.401451 3.808125 0.331558 3.070621 -3.619737 9.403527 4.100258 -5.726073 -7.975671 -8.182154 -5.269485 -3.787557 1.489072 -2.604871 -3.582840 -0.146065 5.926680 2.228403 -0.784424 7.872856 -2.033049 2.979670 3.635967 -2.119330 1.064520 -1.721011 3.256014 -6.299242 -4.033507 5.993747 4.442610 3.142921 -0.323416 -3.287178 2.709744 -4.025846 -6.854040 2.901336 1.190447 6.050316 9.101214 5.721615 9.691175 -5.420024 -1.840283 -0.990349 -0.823418 -1.565032 0.567167 -5.854239 3.950511 1.095447 2.785760 10.936798 -0.801201 -4.826244 6.288865 3.788800 1.106920 -7.818230 4.435968 -3.690455 3.657597 -1.550872 -2.596686 -6.275157 -0.719992 -7.325507 -4.853020 11.956651 -1.247938 -14.259713 3.772876 -3.775474 9.265548 -14.654673 2.849286 -3.573895 6.760322 -0.541980 -1.742093 1.079822 -2.989818 -0.407449 4.594048 2.858973 -2.873696 2.991141 3.043816 2.359708 2.335406 3.546985 2.363884 1.804733 2.330723 -1.351707 1.068715 -1.008664 0.121879 -1.905738 -2.609303 2.753019 6.947105 -3.061634 0.216119 5.241472 1.030474 4.048007 7.126517 0.364222 -4.864210 -1.400851 -0.747539 8.208313 -5.787846 -4.673465 -3.462884 2.798058 1.105066 2.119526 -10.414261 -7.233866 -3.973853 -16.258600 -4.288782 0.309805 2.502554 3.504444 -0.668062 -8.355263 -3.849504 7.404097 3.068903 15.203505 4.172506 0.127643 8.182973 3.040989 -0.743937 -3.341579 -0.058936 -0.554369 -3.503176 0.019294 -5.177526 2.554215 -7.460899 7.931568 7.814185 -6.045727 3.645713 -4.374224 5.074461 -10.225761 9.354580 4.521449 -9.985088 -2.039684 1.848869 7.950434 -6.659661 -7.617210 --1.161994 -19.463569 61.177381 41.513894 -12.345964 4.750755 13.335758 -23.907578 24.226248 2.282498 -11.725421 13.296805 -30.029520 8.524451 -10.820105 21.310171 -49.109178 -24.520106 -8.097433 -24.054984 -12.053742 -15.139548 16.165586 9.775470 30.196362 19.582130 -18.680589 -10.362890 -27.488831 -26.087656 15.871398 -11.827916 20.761594 13.557878 6.993149 -64.659292 32.671904 23.932357 -14.376453 -30.002536 23.003818 -20.048948 1.595185 -17.341899 -8.782942 9.409675 9.046883 22.285829 25.618847 12.708997 2.314825 0.985175 12.842862 52.679354 -18.441344 18.784132 17.043702 -11.111996 -6.997326 0.371254 5.020781 -5.342292 12.522636 10.117802 -6.583093 -32.719246 -5.203439 -23.397956 -23.759930 24.892203 0.922860 -6.169927 -27.090390 -12.576254 -26.969198 -8.263151 -28.004272 34.762868 43.918000 -31.362875 26.728362 4.073889 7.293898 -1.507754 8.695024 6.785284 23.152231 8.200810 -4.500634 -6.853171 -20.824302 -11.567390 6.673139 -0.791716 -10.782803 -40.377192 21.236705 -38.954044 -36.617211 9.108494 17.247561 -16.547000 -12.062282 1.314473 8.410032 16.485700 -14.175535 -26.852238 -2.555824 5.893566 -0.651626 -3.952721 -1.645981 -3.973561 -11.092703 -10.682976 -42.271858 12.689509 -0.795871 -9.901777 -5.416705 28.100379 -6.231007 3.587210 2.873316 17.774972 -13.797478 38.046561 0.444860 17.735101 3.333079 7.053179 -15.770304 6.353457 21.173446 20.223223 -16.344382 -3.914515 -15.129238 7.513133 -23.392176 -3.064578 -5.349494 27.466661 22.245136 -25.366512 -27.816452 -13.552595 -19.001494 -42.380473 6.233399 -19.820245 -13.305758 15.671024 23.930278 21.953068 22.803162 37.540312 -23.064061 10.301430 -1.481026 -9.309973 25.416824 5.237492 24.308889 -20.008190 -15.953222 12.969082 4.155371 15.606611 -0.261269 2.017557 6.728881 -34.184488 -8.635792 16.228722 16.219034 -2.171966 25.337934 28.204362 29.094143 -22.765658 2.618595 23.993367 -11.173281 -6.276358 10.627321 -32.047309 17.479037 8.126498 1.436795 29.002266 1.656475 -13.277212 13.668532 -7.406485 8.600797 -22.977916 1.866152 -16.669693 -2.100807 -20.471343 4.725720 -16.017899 -15.429851 -15.781338 -16.961649 40.671887 -31.408241 -24.375471 32.524524 -8.732759 22.891600 -43.230636 42.288617 -22.652186 26.752548 -7.982469 -5.343476 0.171872 -5.081954 -24.777748 7.814714 9.701346 -5.237358 10.558621 35.257595 20.105661 4.396332 -2.751869 33.470751 -9.486226 32.192803 -10.509326 26.614802 -9.212549 -12.537247 2.601888 -5.981601 -10.658114 -5.343398 10.360497 33.110188 15.408546 19.013725 26.486669 17.402350 34.714631 -17.957307 18.537268 -7.607328 23.712072 -16.354789 -15.759301 11.012893 19.308534 -6.947157 15.952776 -45.321516 -50.469840 -35.853095 -34.576758 -2.427118 -11.701269 12.397964 -6.160935 -3.488191 -33.208377 -24.016944 21.384958 -6.652566 25.627830 19.769162 3.941914 26.452461 31.464327 -15.292321 -6.326133 4.425505 17.313674 5.269410 -4.125344 -34.350244 29.547012 -30.204588 5.786078 45.139693 -21.824441 12.594443 -7.006475 31.977480 -31.678603 43.272917 10.599128 -26.112348 29.176475 30.601115 26.837594 9.580377 -20.739602 --3.213462 -7.355035 12.352992 8.426440 -0.228176 3.244979 3.301765 -2.546315 1.757307 4.218856 -3.336692 6.920187 -6.117616 -0.965101 0.001786 1.261170 -7.506018 -6.362868 -0.362724 -2.685890 -3.554668 -3.756248 -3.000024 7.997946 5.325675 1.038740 -4.411604 -0.060413 -9.968995 -7.954735 -3.500148 -0.626002 4.429131 -0.060950 5.606360 -11.794307 5.451821 7.943220 0.009166 -7.973373 2.611473 -3.402541 -0.317532 0.193441 -2.314309 3.353516 5.653886 2.387133 2.614399 2.388921 1.041250 -2.738827 2.688927 10.486706 2.267603 6.351262 7.432565 -3.653686 1.334893 -1.052111 1.065828 -6.074057 3.069593 1.262150 -2.905384 -2.973151 1.535942 -1.842114 -2.577770 3.845036 3.889625 -5.134099 -3.663909 -5.096280 -6.961137 -2.582677 2.699485 4.545221 10.065712 -5.027074 9.241344 3.456196 5.102591 0.702919 5.838412 -0.344871 7.787434 1.602739 -3.703379 -0.052903 -6.297727 -3.424512 -1.120935 6.096627 -3.658270 -1.670968 3.728492 -10.433544 -10.005193 4.512173 0.055528 -4.306246 -4.634010 1.293433 3.573034 2.787072 -1.500968 -6.441346 -4.018442 3.406528 -4.724263 -1.695998 -0.311924 -0.476842 -1.728490 0.804911 -8.276185 2.833382 4.690597 -2.918215 -3.370446 7.863140 -1.515079 6.343006 0.364476 2.619202 -0.228995 5.178382 3.850292 1.373713 -1.233676 -3.188067 -7.305715 -0.551740 1.213283 -0.007019 -4.943330 -2.112732 1.758242 3.217984 -0.784870 4.325394 -3.264921 11.084788 4.122723 -4.035483 -7.023243 -6.844046 -5.189798 -5.465361 0.774171 -3.187396 -5.838768 1.208147 5.047523 2.740564 -0.142635 6.755651 -1.770498 4.302428 1.001055 -1.951658 1.594156 -3.932372 4.277412 -5.831095 -3.615990 4.373878 4.422900 4.480554 0.499345 -1.204786 1.976170 -4.859822 -5.691678 3.452438 1.890463 2.790166 7.830361 6.695581 14.080046 -5.455108 -0.862841 1.021856 -1.613428 -2.081695 1.120896 -6.318335 2.385958 1.466701 0.273505 10.588585 0.525839 -3.961756 4.140733 0.351732 1.501766 -6.567465 4.484207 -3.740110 2.393644 -2.075964 -2.020137 -5.333982 -2.235456 -5.783839 -4.243245 10.309544 -6.992414 -10.392174 4.937665 -1.310969 6.637125 -12.329479 7.880488 -3.926556 7.285425 -1.912814 -2.820681 0.160107 0.054116 -2.155774 5.175792 2.341313 -3.424152 2.958386 5.153775 2.236571 2.895147 0.663947 4.421896 -1.241435 2.955119 -2.899161 3.832714 -0.824418 -1.992186 -2.903211 -1.568041 0.664685 3.651094 -0.235287 -0.196731 4.106405 -0.215104 1.908317 6.583466 2.233626 -3.649834 1.276485 -1.299823 7.144829 -5.655711 -4.911635 -1.242223 3.449806 1.347251 1.871852 -10.658517 -6.491106 -6.893613 -10.005488 -3.378660 1.415874 2.949242 2.148817 -1.560173 -7.680793 -5.064033 8.946545 0.834223 8.533685 4.924158 1.800894 7.740493 4.542595 0.937068 -2.624549 -0.725805 1.791833 -1.996925 -1.083427 -5.337874 3.803851 -7.410303 5.887837 7.507242 -3.680370 4.712769 -0.523575 4.081836 -9.106559 8.933139 3.686865 -9.162880 1.587842 6.496939 5.831988 -5.702566 -5.742812 --3.424359 -6.262880 11.009613 7.619518 -0.275223 2.673066 2.688252 -2.474229 1.671473 3.320925 -2.534587 5.965701 -5.673516 -0.821801 -0.760402 1.459597 -6.554762 -5.553490 -0.810547 -2.854538 -2.633539 -3.011576 -2.173379 6.959355 4.906609 0.317915 -4.273568 -0.038291 -8.896622 -7.673091 -3.006780 -0.701172 4.190667 -1.358798 3.912512 -11.102335 5.147244 7.581119 -0.528302 -6.696109 3.002162 -3.498691 0.004065 -0.719531 -3.356927 2.610620 4.457854 0.349180 2.578499 1.903844 0.921816 -1.251249 3.042587 9.658596 1.113884 5.665483 6.351557 -2.843178 0.552693 -1.125558 0.828566 -4.670272 2.887322 0.517377 -2.524025 -3.583469 0.648579 -1.397875 -2.539572 3.157622 2.195049 -4.084118 -3.283506 -3.957802 -7.608088 -2.737371 3.671163 3.694866 8.553108 -4.876835 7.808531 2.760031 3.482246 1.268804 4.757607 0.180182 6.161101 1.458187 -2.641051 0.043967 -4.527685 -2.064952 -0.666715 5.783153 -3.421985 -2.796754 3.752425 -10.318736 -9.016816 3.747206 0.442594 -4.064500 -4.355346 0.023469 2.485307 2.681185 -1.720766 -5.756242 -3.046864 3.022925 -2.832023 -1.754469 -0.167510 -0.773928 -0.917782 0.478732 -7.744238 2.793770 3.582122 -2.485640 -3.001861 6.896967 -1.154401 5.115044 0.343510 2.980629 -0.954823 4.826341 2.540599 1.856298 -2.039467 -2.057640 -6.083535 -2.084971 1.254783 -0.043023 -4.775817 -1.929262 0.576912 2.518864 -0.759886 3.571541 -2.488739 9.187536 3.436040 -3.348137 -5.382302 -5.767707 -5.377748 -5.744701 0.515266 -2.613362 -5.333701 2.060055 4.427643 1.744937 0.633600 6.652784 -0.955538 3.157993 0.909163 -2.679243 2.372486 -4.369335 4.009099 -4.860836 -3.637572 4.211291 3.590396 4.714560 0.309777 -0.230898 1.812027 -4.210430 -4.415282 2.551473 1.596759 2.006299 7.092801 5.973598 11.492503 -4.659320 -0.153707 1.134557 -1.759683 -1.062518 0.680190 -5.654007 1.805334 1.738355 -0.456956 9.187937 0.491584 -3.799066 3.845246 -0.099852 1.574252 -6.124204 4.048017 -3.620498 2.127304 -2.353750 -2.503750 -4.459757 -2.289572 -5.374860 -4.196620 9.025239 -7.044406 -8.458278 4.367623 0.631552 5.676486 -11.078244 7.019666 -3.617969 7.821188 -1.521247 -2.235822 0.741457 0.240321 -2.484775 3.621662 2.253821 -3.503819 2.670020 4.473538 2.338007 2.339628 0.150256 4.308026 -1.059067 3.487598 -2.929764 3.631882 -0.846550 -2.562960 -2.105018 -1.342745 0.226698 2.756486 0.438060 -0.254382 3.574778 0.245699 1.670389 6.255921 3.003664 -3.149174 1.421696 -1.316860 6.185035 -4.707154 -4.073807 -0.940078 3.789048 1.264693 2.167100 -9.612525 -6.243768 -7.012220 -8.600850 -2.052366 1.301984 2.163481 1.583880 -1.365095 -7.181536 -4.800757 8.138649 0.149836 7.504434 4.410929 1.858685 6.732888 4.157333 0.649453 -2.315735 -0.325757 1.826828 -1.037940 -1.028617 -4.913020 3.931095 -6.328804 4.581762 6.763432 -3.563857 4.156682 0.280321 2.563325 -7.722044 8.420071 2.882158 -7.818068 2.485700 6.132308 4.843241 -4.786125 -4.835069 --1.335532 -2.287566 4.863711 2.815340 -1.133313 0.578735 1.083072 -0.801434 0.958557 -2.164993 -1.031235 2.141032 -2.734784 0.135971 -1.911516 -0.604957 -4.372830 -2.775974 -0.734199 -1.108543 -0.898177 -1.294179 -0.009263 2.912115 1.928391 2.154569 -2.129408 -0.132423 -4.317975 -0.424231 1.111101 -0.331261 2.011183 0.558529 1.164051 -7.301506 1.629547 2.744457 -0.596025 -3.243500 1.969154 -2.527464 0.197803 -2.629445 -2.179293 0.311624 1.356051 1.394994 1.057774 -0.416385 -2.029430 0.271425 -0.565603 5.104452 -0.470056 1.606393 2.863810 -0.719874 -0.421479 -1.059172 0.268764 -1.367048 1.060124 0.340871 -1.949849 -1.900106 0.341505 -2.388659 -1.530284 1.851986 1.032544 -0.015861 -1.398513 -1.103004 -5.120655 -0.814546 3.614451 2.866749 3.565927 -2.968426 2.643492 -0.111543 1.535402 0.996274 1.437822 0.844364 2.046102 0.641536 -0.314918 -0.718371 -4.401316 -0.084477 -0.576493 0.530969 -0.930407 -3.637949 1.738496 -6.154916 -3.259635 0.462710 0.405663 -1.929450 -1.329654 -0.106261 1.031247 1.914843 -1.017416 -1.993844 -0.919319 1.427657 -0.824357 -0.017116 1.181428 0.934041 -0.518538 -2.523986 -3.658147 1.823661 1.021471 -0.433970 0.021822 3.179007 -1.885062 1.424741 0.289656 1.130982 -1.303754 3.300213 0.513244 -0.677020 -0.695609 -0.972001 -0.370772 -1.944425 0.582605 4.036763 -2.831073 -1.616910 -0.408003 0.810545 -1.110679 -1.617772 -0.853388 1.950999 0.414808 -2.527694 -2.213796 -2.582391 -2.366888 -3.788801 -0.914244 -0.980101 -1.854801 3.057144 1.989187 2.419306 0.994915 4.129766 -0.736137 1.348945 0.557730 -1.912234 1.245042 -0.468375 1.717587 -1.787018 -1.863771 1.585677 -0.829346 3.028922 -0.278522 0.333187 0.442711 -2.512262 -2.279151 1.077623 2.139095 1.387966 2.734149 3.013993 0.006996 -3.522636 -0.070936 1.071601 -1.316201 -0.697200 0.633368 -2.072137 1.119603 1.006672 -0.919754 3.384095 0.122645 -2.004917 1.645557 0.309877 1.022614 -2.434569 0.111113 -1.396276 0.199037 -2.332457 -0.577421 -1.778801 -1.081092 -3.114124 -3.686761 3.870468 -3.959097 -4.046897 2.055661 1.030996 4.065272 -5.593101 0.720797 -1.539113 4.975541 0.492363 0.083075 0.545413 -1.562490 -2.025866 1.151911 0.758561 -1.694621 0.597719 2.102663 1.737526 0.880987 -0.255583 2.400651 -0.248019 2.221535 -1.532481 1.008840 -1.013756 -2.454416 0.661121 -0.443124 -0.147391 0.923602 1.627470 2.114002 1.707636 2.868569 2.930639 3.136188 2.250437 -1.352845 -0.765430 -0.974378 2.559102 -1.456657 -1.772088 -0.405557 3.050034 0.270161 0.702398 -3.949284 -5.627372 -4.562827 -5.331752 0.502296 -2.056166 0.047153 0.218688 -0.410588 -3.740032 -1.631134 1.234727 -0.374729 5.875675 2.078788 0.076607 2.914562 2.402930 -2.465043 -0.760612 2.882438 2.347182 -0.230771 0.294040 -4.408107 2.283299 -2.841202 1.190945 4.618527 -2.366289 1.932694 -0.306794 2.685785 -2.939146 4.803957 1.334218 -4.591314 1.115753 1.935427 1.923978 1.363929 -2.053489 --3.656276 -9.522894 12.975754 9.146925 0.728922 4.426952 5.137994 -0.364538 1.440022 3.952213 -3.578677 8.684223 -6.917073 -1.946136 0.721062 -0.104518 -7.519247 -8.208470 1.546989 -0.905655 -2.128949 -5.236375 -4.609601 11.270178 5.224059 0.708682 -4.563468 -1.593946 -13.611023 -4.965560 -3.812924 -0.544307 5.478987 0.446342 7.302994 -12.497198 4.357367 8.670736 1.396551 -10.710984 2.331224 -4.041388 1.603605 0.137423 -2.500184 4.915037 7.934157 3.952348 2.323847 2.609025 -0.798831 -3.780802 2.716705 10.059321 3.716713 6.719370 7.644132 -3.871635 3.088607 -2.866843 1.178311 -8.115739 3.491792 1.155905 -4.111562 -2.198869 0.277824 -1.600492 -3.166861 3.441092 6.312066 -3.032090 -5.463634 -3.512562 -8.583435 -3.052291 3.899330 5.623922 11.170826 -5.204180 11.346366 4.419077 8.294716 0.554744 6.966434 0.135288 7.216956 1.538195 -4.891382 0.592495 -12.206632 -3.634132 -2.911317 3.521723 -3.782684 -3.372636 2.271676 -10.850162 -11.031016 5.252555 -1.531352 -4.425527 -3.456404 2.258220 5.177925 4.877963 -1.883480 -7.479834 -4.537333 4.408644 -6.040210 -1.822641 1.455534 -0.457302 -1.221969 -2.232246 -7.964822 2.782396 6.301714 -3.417938 -2.102101 9.454814 -3.146687 8.716449 0.778504 1.659000 0.103743 5.724753 7.081699 -0.487242 -0.826934 -7.956026 -8.654978 0.407029 -0.067711 2.450279 -5.954754 -3.104833 2.388177 4.091646 1.202338 4.025899 -0.874762 10.624908 3.750261 -5.164763 -7.167896 -9.059063 -4.980974 -3.982310 0.857340 -2.162072 -4.610677 1.865467 5.367345 2.853023 -0.301563 6.258180 -1.045972 5.040328 1.001015 -1.714153 0.624225 -1.723558 4.021747 -5.792538 -3.604895 4.985237 5.064851 6.205655 0.328315 -1.624961 2.619302 -3.779221 -5.926917 2.414145 3.159303 4.589158 9.967853 7.157084 10.081174 -5.246450 -3.035989 0.290953 -1.473648 -2.489151 0.960331 -6.911910 4.356664 1.088724 -1.403399 11.001171 -0.612043 -4.178395 6.752061 1.445663 1.931982 -7.531410 4.126416 -4.637902 1.824996 -3.311821 -1.998774 -7.148338 -2.815563 -7.966292 -5.045794 11.686737 -4.687118 -11.458955 2.690431 -3.082031 7.248603 -13.688068 7.196472 -3.976740 6.950411 -0.806543 -3.041391 -0.124754 0.103004 -1.371337 3.596412 2.844731 -4.971894 3.871699 4.356885 2.480516 1.542265 2.138435 4.171381 0.204249 2.060310 -3.199816 2.366192 -2.074402 -0.731327 -1.825297 -1.456720 2.754647 6.049103 -1.017588 0.570890 4.336794 0.398975 2.853057 7.841589 0.815403 -3.872369 -1.666662 -2.416101 9.037126 -6.617944 -5.269717 -4.156070 3.398963 1.980921 1.060095 -11.948033 -7.556693 -6.850819 -11.715413 -3.338572 0.176700 1.918542 3.924229 -1.249659 -10.273929 -5.189197 6.437137 1.392438 8.752681 5.469688 0.157238 9.749413 4.424840 0.044084 -3.451880 1.227078 1.690429 -3.186060 -0.659365 -6.363107 3.433797 -9.337941 7.651887 8.908980 -4.834300 4.824138 -1.924485 6.006737 -10.389570 11.329933 5.118543 -11.713946 -0.192110 5.415481 6.623705 -6.461378 -6.595122 --1.936354 -6.290585 14.582186 7.669525 -1.141362 1.967972 7.450264 -4.310721 6.073580 0.633341 -3.953046 2.611560 -10.021356 -0.971842 -2.202464 0.124371 -11.214399 -8.185380 -0.382066 -4.134487 -3.062230 -7.022109 2.916237 5.649515 7.110044 3.387860 -3.633772 -2.659214 -10.860098 -3.879865 4.182293 -1.847491 4.682100 3.926310 3.522471 -14.801349 6.160673 5.553572 -1.574630 -7.876540 4.926669 -3.900018 -0.067475 -1.598588 0.345273 2.456344 5.556295 10.058965 6.085861 2.408585 0.028004 -5.645628 -0.727175 12.344545 -2.884201 5.420409 6.300741 -2.890513 0.184713 1.680805 0.180638 -5.857456 2.684659 5.116177 -4.561191 -2.983520 4.080716 -6.452811 -6.930475 7.687236 3.422006 -1.984173 -5.644073 -3.814232 -6.692054 -1.254844 0.551209 7.842174 13.237880 -6.466473 10.266833 2.074361 6.122387 -1.812857 2.241560 0.068677 6.369123 0.537203 -4.593197 -3.796188 -14.134367 -3.399140 -2.355208 1.362230 -0.474221 -5.885447 4.608578 -10.532710 -10.816801 1.572171 1.199116 -4.119670 -4.127117 5.357454 4.443398 3.282813 -2.008035 -8.586442 -3.671582 2.783935 -7.143203 1.756670 1.240322 0.288779 -4.386667 -4.376402 -9.682888 1.679032 1.227911 -4.618396 -2.835642 8.617770 -5.338426 6.284821 3.222203 3.794860 -0.696025 6.936677 4.298929 0.282563 3.980594 -3.447497 -5.636467 -0.330120 3.164036 8.884200 -3.584297 -1.000685 -0.136931 2.563475 -5.101901 -0.832989 -2.622491 7.801248 2.659464 -9.528326 -8.062883 -4.161600 -3.563647 -9.426150 1.974613 -4.613382 -4.594388 0.742563 5.599440 6.513928 1.982454 11.228896 -6.227349 5.069931 0.681160 -2.894031 1.503367 1.083548 6.857270 -6.074664 -4.216367 1.117634 1.567926 3.487367 -1.107267 -2.350343 0.597368 -10.354999 -5.926911 1.510048 3.050156 1.125725 5.193409 8.093798 7.708289 -9.993060 -0.402690 5.404061 -0.651616 -3.833698 3.848319 -9.080477 6.121626 1.010671 0.834986 8.693902 1.082850 -4.606519 4.696105 -1.134383 1.985256 -7.188325 -0.240360 -4.474509 0.087726 -5.344129 1.115071 -5.447157 -4.382291 -4.851453 -3.908955 10.244277 -3.469640 -10.786066 7.909747 -1.676992 8.673135 -13.403149 9.515210 -4.356513 6.732604 -1.679674 -1.392003 -0.868996 -0.651850 -2.335190 2.994023 0.166211 -1.294313 6.362370 8.895788 4.097937 4.062963 1.343853 7.932583 -1.524021 3.817150 -3.046787 3.291503 -2.626215 -5.615308 0.560606 -1.878576 0.510093 2.207506 0.875905 7.326374 7.614317 2.124941 8.863970 5.308945 5.398050 -3.377629 1.241470 -0.595443 8.935469 -4.885182 -5.012924 0.751139 3.441971 -2.402739 3.995999 -12.428205 -14.184063 -4.119820 -15.121284 -2.799155 -5.692369 3.230471 1.143475 -0.007631 -10.315065 -4.214453 2.813238 0.547368 11.604651 5.111626 0.839914 8.080070 9.066079 -4.644352 -1.773150 4.773873 6.039894 -3.406450 -1.935654 -8.917415 4.792327 -9.191530 5.321322 10.550475 -5.124512 3.052947 -5.572587 8.302035 -11.803420 11.318735 4.470394 -8.668835 5.136434 4.281673 9.182717 2.646008 -5.502746 --5.633935 -12.695917 20.297527 14.333015 -0.018604 4.870271 7.919214 -2.832023 3.626893 6.931470 -4.025416 10.894416 -12.163338 -1.297303 -0.182599 3.092791 -11.798236 -10.793995 -0.251678 -4.463168 -4.837865 -6.050126 -3.512581 12.726403 9.677961 -1.719817 -6.900233 -3.503729 -17.286903 -8.331044 -4.108139 -1.660173 8.149025 -3.480285 6.820325 -23.069391 8.362659 12.865552 -0.965571 -13.314174 5.672383 -6.935638 2.007469 -1.860322 -5.772182 3.100036 9.713150 4.938680 4.889282 4.005565 1.483767 -3.385615 5.790597 22.783424 1.317868 10.590096 11.900752 -4.815723 0.842647 -2.078960 1.690657 -9.692019 5.495227 0.810902 -4.695578 -5.940042 0.123662 -4.078285 -5.537576 4.632108 6.514153 -5.564893 -7.653930 -6.124993 -11.404475 -5.503556 1.375201 8.027235 16.592954 -11.093622 15.519238 5.981934 7.450233 2.710355 8.486907 1.025242 9.672119 2.175106 -5.424456 -0.384467 -11.637911 -2.514164 -1.173515 6.272563 -5.672756 -9.969944 6.489819 -12.047598 -17.150482 7.495662 0.088428 -7.054595 -5.348087 0.196413 4.435446 6.355572 -5.383043 -11.617567 -7.194100 4.947732 -5.108506 -3.361208 0.632601 -2.066114 -1.875005 -3.520441 -14.258562 4.491271 6.835431 -5.692347 -5.372085 13.090205 -4.505806 10.949421 1.092642 4.758590 -1.306026 9.968857 7.561284 2.126835 -1.746095 -6.236181 -12.253003 -1.641127 3.016334 4.738722 -7.091576 -1.562733 1.004027 5.022186 -0.157460 6.680539 -0.287968 17.295403 4.042135 -6.958288 -9.982434 -11.297400 -7.658369 -8.780005 2.542371 -5.039138 -7.379988 3.940519 8.307143 3.782690 0.862084 12.405522 -2.675206 7.950676 1.107116 -4.128693 3.818436 -4.810887 7.759642 -9.002186 -6.486223 6.242376 7.807385 8.132128 -0.044364 -0.393896 3.607034 -8.240716 -6.806658 0.780958 3.376618 1.302394 13.585373 10.320064 22.072640 -9.276718 -0.999645 2.078478 -3.059791 -1.948272 1.398200 -11.288477 4.023446 2.600294 -4.052440 15.808769 0.885042 -8.549164 8.598308 -1.080273 2.297342 -10.329357 7.015421 -6.469021 0.446043 -4.699109 -1.680896 -8.455209 -4.759012 -10.149723 -5.872790 17.352155 -12.452934 -13.825579 5.388116 0.697015 8.886038 -19.736493 20.296496 -6.792731 12.052227 -3.261761 -5.910942 1.056272 3.503882 -3.712414 5.874813 4.267047 -5.690990 4.480355 9.624730 4.425651 4.065749 1.741782 8.434147 -1.256853 5.551976 -4.779017 6.692669 -2.163377 -4.826980 -3.051838 -2.541420 2.235156 5.987802 0.593970 2.454033 7.082141 0.388045 4.081320 10.794217 5.083425 -5.866711 1.933907 -2.729597 13.404766 -8.864198 -6.193285 -2.871872 6.089162 2.357919 5.061966 -18.082986 -11.895409 -9.747726 -13.780103 -3.107739 3.254025 3.123801 2.768428 -1.888528 -15.106866 -8.863818 11.335271 -0.965425 10.760750 8.681924 3.339718 13.400898 7.723374 1.068065 -4.851821 1.547960 3.388724 -1.927180 -1.527872 -8.288588 6.229907 -13.904623 8.963361 12.461984 -5.469630 6.739802 -1.506253 6.572447 -14.299722 16.550541 5.670824 -14.746211 4.347981 13.500438 11.025601 -9.066659 -8.994093 --2.812621 -7.092436 13.574523 9.265288 -0.541421 2.507873 3.622346 -2.666106 1.886880 3.541082 -3.447410 7.219224 -6.509432 -0.201807 -1.281612 2.483329 -8.416815 -6.568041 -0.719725 -3.188644 -3.129589 -3.093341 -1.481471 7.321035 6.616496 0.697768 -5.115737 -1.374586 -9.927669 -8.064777 -2.810049 -1.056461 4.947099 -1.513283 4.053229 -13.713674 5.933100 8.097091 -0.866504 -8.026645 4.251056 -4.005669 -0.293490 -1.226712 -3.521609 2.674702 5.531914 2.365228 3.306285 2.922665 0.634109 -1.316901 3.660852 12.607217 0.920200 6.255591 7.491796 -3.333794 0.270079 -1.235984 1.141965 -5.562283 3.007862 0.764807 -2.315789 -4.673105 0.360567 -2.451967 -2.872331 3.771832 2.933378 -4.138232 -4.273227 -4.222843 -7.612836 -2.591795 2.660844 5.440777 10.105029 -6.277267 8.867486 2.728265 3.951167 0.910524 4.396464 0.414371 6.111640 1.826629 -2.526546 -1.197330 -5.752559 -2.496655 -0.549867 5.323768 -3.729183 -4.674543 4.656269 -10.430641 -10.261669 3.932014 1.055554 -5.038613 -3.670132 0.583691 2.728433 3.650022 -1.958930 -6.293297 -3.402624 2.826270 -3.027309 -1.985419 -0.441075 -0.928007 -1.490987 0.076218 -9.384751 3.553442 3.696624 -2.833188 -3.099663 7.431993 -1.496369 5.684108 0.402583 3.689743 -1.011323 6.127444 3.424986 2.126846 -1.025241 -1.959596 -6.531946 -0.677707 2.438777 1.036328 -5.711293 -1.435125 0.147958 2.950634 -1.199175 3.354957 -2.449694 10.884080 3.957009 -4.643457 -7.145319 -6.669026 -5.494142 -6.265267 0.755290 -3.451224 -5.785930 2.505936 5.082875 2.402584 1.108045 8.181424 -2.085015 4.191719 1.334381 -2.697235 2.860953 -4.160308 4.742105 -5.826235 -4.020481 4.507573 4.044211 4.833008 -0.182982 0.214081 2.448868 -5.793960 -4.772872 3.118040 2.387760 1.806530 7.833045 6.808137 13.140855 -5.400925 -0.721764 1.855470 -2.453187 -1.919350 1.380622 -7.005028 2.517375 1.734532 -0.100846 10.518570 0.941207 -4.665751 4.792935 -0.331892 1.402418 -6.324829 4.356826 -4.008857 1.539478 -2.440448 -2.193767 -4.753250 -2.420100 -5.905944 -4.602794 10.678378 -8.354498 -9.640157 4.750793 -0.376235 6.040540 -13.092293 9.968553 -4.427331 7.898122 -1.507562 -2.736953 0.669847 0.095668 -3.545328 4.352677 2.532755 -3.178648 3.015505 6.158026 2.927340 2.414083 0.205167 5.389326 -1.423112 4.722158 -2.710489 4.122367 -1.268915 -3.169848 -2.485798 -1.194482 -0.323207 2.724314 0.684170 1.282478 3.667865 0.987070 2.890167 6.796436 4.438892 -3.977306 2.174006 -2.035982 7.718814 -5.403942 -4.966461 -0.625086 4.192185 1.158973 2.990968 -11.361380 -8.164530 -8.231004 -10.273397 -1.948860 0.432120 2.989642 0.792868 -1.808598 -8.708924 -5.790316 8.022589 0.228202 8.427983 5.715272 1.746523 7.697895 4.716153 0.149570 -2.310661 -0.294690 2.853337 -0.620994 -1.302618 -5.885677 4.443495 -7.624246 4.733845 8.727467 -4.102909 4.683822 -0.278271 3.572111 -8.921806 10.010115 3.255477 -9.367047 3.004039 7.153868 5.499899 -4.914260 -5.774767 -10.065635 -60.431861 251.947120 164.384229 -59.093276 16.598490 36.426071 -111.999975 99.411695 7.857328 -45.155529 45.227306 -101.734164 37.200368 -51.678769 92.963644 -200.765319 -81.238364 -44.079694 -113.537918 -50.899959 -50.830707 63.112149 25.063353 120.830173 77.757557 -74.364807 -28.148454 -81.261898 -129.299259 60.750605 -43.288272 71.742198 24.773619 31.198022 -260.451088 146.378771 94.775886 -62.397338 -112.311522 92.884956 -67.458904 -3.569937 -57.587170 -41.108413 38.088817 21.801216 93.964082 104.018132 57.771615 8.628734 22.369997 60.443482 217.891983 -74.471708 71.424399 61.186062 -41.480699 -32.759887 12.933780 15.096172 -9.486385 34.934706 27.465461 -6.322089 -141.642871 -16.943076 -80.290092 -82.191939 100.026289 -5.336441 -47.618542 -100.812261 -56.939602 -113.231591 -29.103035 -131.093499 139.312389 161.658138 -123.066178 86.633400 8.603527 12.986708 6.035918 26.321711 23.631435 92.079516 34.455538 -5.345424 -24.248942 -55.547414 -48.164000 41.533400 -23.243144 -53.266848 -198.345860 87.304940 -171.917783 -136.178573 37.263457 84.239189 -76.706200 -39.930168 -16.185299 30.687361 52.956585 -54.179066 -94.815151 1.909855 29.960298 5.436091 -10.670310 -2.586078 -21.485657 -30.997714 -22.396864 -168.159970 66.321331 -6.192378 -18.204088 -20.467422 107.714834 -6.300289 -5.508990 10.156597 80.171241 -62.779250 148.557980 -12.953878 84.500744 -11.338897 60.910777 -45.309376 38.746116 84.621865 37.792175 -56.095230 -16.113726 -68.211648 32.809068 -102.514099 1.509686 -39.505760 99.349273 90.851457 -89.004341 -105.521104 -45.230362 -88.595647 -167.820618 23.374288 -70.668858 -80.801905 59.544063 89.993695 90.746790 95.041068 120.291893 -92.795292 21.226495 -12.613218 -33.110513 103.785938 6.255368 93.522015 -75.337704 -57.694847 48.091641 9.253908 65.213699 -3.391560 10.864529 30.747560 -129.756825 -13.727612 67.075227 68.577859 -12.041448 93.112044 121.272342 120.032949 -75.355528 4.325343 99.779348 -60.669770 -23.991110 41.945003 -119.655145 54.491186 42.329151 22.189265 122.940432 6.023069 -34.481713 51.155869 -30.284232 32.150838 -81.823806 -1.487190 -63.998486 -12.156785 -70.011897 20.812867 -67.658226 -47.726734 -67.402134 -86.259881 152.796951 -147.166334 -86.968353 146.922806 -44.404090 81.997483 -153.742690 165.364497 -85.360051 101.521669 -19.631753 -10.155840 0.778062 -30.295417 -114.960458 39.382417 32.256344 -17.250439 38.873245 141.203144 79.799718 12.841914 -25.001585 136.591800 -58.568094 139.630768 -50.178096 111.676650 -46.016045 -47.677781 3.616731 -17.089664 -63.191894 -39.757880 52.945609 117.182260 37.666736 79.926674 92.140913 67.254623 143.511216 -66.595682 91.449557 -34.336929 67.442027 -64.601509 -65.406170 61.747906 79.412609 -27.125131 59.279851 -180.473468 -184.310351 -177.494533 -124.975677 -1.754687 -51.341700 46.633578 -36.233813 -24.472876 -119.866289 -103.186508 115.761112 -23.030971 73.430981 83.895313 14.441933 97.090484 128.870462 -55.524856 -8.535363 5.961031 60.372531 32.789783 -24.107913 -133.655083 132.624228 -106.113998 8.631550 183.810016 -87.252516 56.802494 -20.511949 104.231894 -123.921602 154.476674 31.608450 -90.616945 109.425331 130.005165 100.469131 39.990279 -76.648336 --1.100258 -104.382441 360.600147 232.027715 -62.804812 30.215326 79.309869 -141.128854 129.455819 7.496072 -66.989767 85.139253 -164.152088 44.263456 -90.262931 109.760237 -277.018310 -138.298707 -53.445135 -145.403067 -65.822973 -79.954199 84.519816 62.329406 179.706000 95.303284 -113.498494 -54.457391 -173.502027 -171.362114 78.394186 -58.508170 110.218768 21.844753 39.982936 -368.272825 196.436010 151.393337 -80.138711 -170.184777 142.502888 -109.078233 -6.127583 -85.513850 -51.835766 52.627240 53.210713 131.394297 147.001821 77.322372 4.630628 20.632181 69.348860 312.039518 -103.907372 111.297592 106.270928 -57.579740 -38.790272 12.532758 17.114589 -37.713130 54.572153 42.651373 -31.671282 -187.728578 -13.798276 -117.788100 -118.699481 139.422459 8.749792 -53.863637 -139.909210 -66.738038 -182.408952 -40.535154 -108.287763 187.369020 243.355644 -170.423977 150.502468 9.522220 37.595971 3.554566 44.775166 36.859393 120.242858 46.309560 -19.407930 -53.048014 -133.972196 -47.168242 33.404709 0.634966 -70.285890 -259.955455 127.314192 -253.791617 -210.351447 47.389356 99.763930 -116.288965 -61.356762 0.936454 46.731913 86.543012 -76.851021 -147.485028 -10.722020 47.396767 -12.443148 -16.222428 9.068900 -35.384341 -52.170469 -52.725884 -240.377595 91.725778 0.765289 -40.857921 -43.975436 164.142883 -30.327944 23.135439 19.698706 116.466044 -83.379054 197.876688 -1.246779 98.644986 -1.336153 51.738999 -83.845066 22.655886 114.853970 94.933284 -105.487220 -23.691238 -89.634904 49.723664 -130.516051 -6.723078 -53.972052 156.324626 113.142482 -150.085810 -153.837678 -76.621780 -111.353046 -230.436384 26.386807 -97.496127 -119.911660 73.526698 132.545935 115.503782 124.314543 205.178151 -117.535904 49.325178 0.018066 -59.949732 140.592074 -8.155557 137.386838 -116.223983 -93.669721 72.352771 16.447592 100.179174 -15.583722 22.981801 44.477492 -194.952722 -41.507202 79.906778 92.223142 -12.095799 144.988428 176.089646 159.502784 -133.767048 3.103027 135.348980 -85.144539 -38.205055 60.521646 -178.316305 84.955829 60.158547 18.431143 192.067207 15.144474 -77.622525 90.677865 -35.089549 49.230526 -130.319704 9.773620 -96.780412 -16.645905 -104.836029 13.878173 -94.771079 -77.146307 -110.823434 -128.923661 228.728273 -195.704954 -155.979668 188.354546 -41.492041 128.994301 -259.757936 228.331654 -125.361722 155.533005 -19.719721 -12.449382 7.100852 -26.078764 -159.309525 59.418091 47.156980 -43.623943 82.239526 201.026318 114.854323 30.365200 -29.244862 192.396074 -71.268821 183.683116 -73.386436 142.597414 -64.519272 -94.664185 7.235700 -27.071672 -74.078506 -35.125657 71.138969 160.957593 71.494047 109.296297 142.752052 115.257828 203.047516 -94.567946 108.115036 -52.749768 124.957857 -94.379165 -101.779406 68.208559 112.921937 -26.099295 95.115134 -269.842252 -284.362713 -226.457292 -228.319607 8.575400 -83.229018 65.013093 -37.761367 -29.616041 -204.746285 -144.475184 139.384552 -27.031021 155.039371 131.576645 21.178404 146.482936 176.006612 -88.836589 -17.224772 26.062834 108.135221 32.973144 -38.776038 -194.172272 174.830919 -168.381447 31.723019 264.871745 -128.128540 84.029945 -41.820784 152.114022 -192.787131 243.367128 55.522653 -155.190772 154.147836 172.681554 157.824697 49.926464 -114.909344 --1.782100 -20.280718 64.547385 43.736080 -12.522928 4.946722 14.366014 -25.467680 25.663470 2.411797 -12.072730 13.814127 -31.792618 9.423078 -11.797794 22.303821 -51.561506 -26.164341 -8.931091 -26.024765 -13.350962 -15.911486 17.029432 9.667238 31.881194 20.302774 -20.181043 -11.137943 -29.635509 -27.628730 17.210713 -12.458538 22.009594 14.094092 6.851833 -69.580358 34.466293 25.495833 -15.354829 -30.965215 24.365758 -21.511427 1.505573 -18.078895 -8.578196 9.799144 9.314053 23.061768 27.404595 13.070981 3.298251 1.354301 12.376369 56.070290 -20.362460 19.856395 17.808350 -11.788714 -8.030241 0.690640 5.124381 -5.569322 13.531221 10.793846 -7.372398 -34.847006 -4.737098 -24.822935 -25.236033 26.453663 1.810130 -6.512528 -27.999604 -13.227341 -28.507404 -9.218039 -27.664188 35.666152 46.646711 -32.494241 28.300156 4.132149 7.828052 -1.464816 9.432485 7.074155 25.081820 8.433528 -4.906051 -7.267237 -22.513942 -11.430556 6.644655 1.579219 -11.250188 -42.285830 22.380095 -40.828752 -38.653280 9.275661 18.222902 -17.189162 -14.093185 1.568997 8.960551 16.865483 -14.993955 -28.557028 -3.397199 5.925255 -1.157278 -4.157267 -1.548641 -5.254625 -12.004225 -11.520089 -44.774757 13.337988 -1.192760 -10.373034 -6.936116 29.807962 -6.870413 3.472524 3.114303 19.296832 -15.062367 39.523941 -0.202506 18.629796 3.429793 7.383850 -17.911659 4.648820 22.275545 22.754682 -17.561223 -5.422227 -16.577000 7.725566 -25.343456 -3.208134 -5.672130 29.504520 24.747644 -27.053509 -29.228804 -13.981615 -18.785978 -44.933098 6.460104 -20.964000 -14.271388 14.645051 25.360271 23.014824 24.350060 40.415220 -23.705865 11.839021 -1.572259 -10.186217 27.368898 4.881456 25.954390 -21.245321 -16.949377 13.471891 4.205056 16.635578 -0.257886 2.131614 6.959606 -36.546599 -9.807364 16.752440 16.621817 -2.500269 26.612518 29.953377 32.541430 -25.559006 3.563509 25.569019 -11.946149 -6.428615 11.685993 -33.531565 18.041411 8.946010 0.694081 31.288235 1.999989 -14.888389 14.130962 -7.465232 9.198659 -24.526390 2.144425 -17.488164 -1.793787 -21.881473 4.808229 -17.310996 -16.136270 -16.499864 -18.137848 42.821964 -32.687917 -26.873957 34.604715 -8.526651 24.179576 -46.873346 44.156046 -24.042046 28.065873 -9.608613 -5.437743 0.300272 -4.269070 -26.645971 9.561849 10.183557 -6.120560 11.727482 37.734540 21.358415 5.436152 -3.490128 35.626174 -9.778794 33.875272 -11.249663 28.564466 -9.480399 -13.844454 2.467176 -6.362304 -11.411119 -5.553248 11.292661 34.146903 16.801476 19.807498 27.648587 19.095051 36.922768 -18.850596 19.613106 -7.782613 25.032560 -16.973424 -16.702209 11.934355 20.421035 -7.471371 16.975110 -47.829105 -53.261487 -36.556655 -37.769845 -1.991147 -11.010544 12.694892 -6.013578 -3.622774 -35.534177 -24.851522 22.663591 -6.982841 28.976092 20.832194 4.318213 27.629906 33.303057 -16.703805 -6.878101 4.649744 18.347241 5.541309 -4.793056 -36.540567 31.629535 -31.637204 6.375134 47.449402 -23.361937 13.310252 -7.012524 35.041333 -33.408415 46.302565 11.001471 -27.411963 31.295389 32.183949 29.965739 10.336436 -21.586656 --9.337234 -23.284013 58.866125 40.554058 -12.743284 10.762338 4.824290 -21.345351 8.211503 12.019993 -9.754820 25.422265 -18.980370 1.079449 -2.669723 14.837924 -42.178842 -17.207288 -9.712355 -23.851529 -18.863514 -7.563285 -6.969927 24.549606 25.056923 13.443435 -20.580649 0.457855 -22.752089 -44.119791 -7.864628 -3.401574 19.531254 -0.309845 18.879414 -73.520786 31.433081 31.999005 -8.028529 -28.457210 15.256609 -11.758567 -3.965305 -3.559785 -23.222908 10.288377 12.403625 3.694515 14.395363 11.628076 3.705394 2.433898 22.582216 57.606883 4.880959 24.616943 27.416413 -16.963995 -1.589514 -2.248779 5.004365 -14.018018 11.269178 -1.075997 -0.700287 -26.050677 0.890018 -10.531051 -10.566284 17.676264 7.738142 -27.392327 -14.078705 -23.835936 -33.519782 -13.985022 -5.260092 25.429841 37.552738 -28.222533 29.305536 8.195912 6.277620 7.484631 20.989529 1.766682 33.489406 9.649423 -4.798698 5.390801 -0.859116 -15.425249 8.606283 19.893482 -20.720343 -31.792645 20.810629 -50.191650 -38.836996 21.388359 12.994571 -21.212977 -20.962182 -14.315243 9.467498 8.469980 -12.433106 -22.720497 -12.531958 13.348627 -8.105864 -7.977897 -6.050152 0.189967 -2.429729 10.358944 -39.010464 20.173641 13.626438 -2.817964 -12.299866 31.153334 6.207296 11.746143 -1.726571 17.530123 -11.242911 29.471495 1.153652 15.726463 -15.389583 8.711134 -18.066440 -3.429089 11.501695 -10.161706 -17.864840 -17.671206 -3.545800 14.012922 -11.568558 20.032984 -12.581943 44.255714 26.466078 -8.072166 -28.046674 -23.310625 -28.858132 -36.287047 0.537818 -14.892508 -29.505185 19.037420 21.430966 12.255540 8.024477 17.650081 -7.904915 11.831930 -1.097982 -9.958876 16.671830 -16.993534 18.838796 -22.649225 -14.564520 17.930583 10.704876 26.061529 2.422195 -0.312958 8.814495 -18.236520 -18.288685 18.838970 13.201845 5.893955 27.986756 32.597879 69.196616 -18.167884 -1.968920 9.128527 -15.566922 -5.616080 5.171419 -24.067136 2.760075 11.128356 -1.895676 45.136543 1.153900 -11.364122 12.839661 -1.631202 5.631780 -23.387616 15.535087 -15.021709 9.259652 -9.079799 -10.633352 -22.567569 -6.728812 -25.671300 -25.996364 43.288727 -53.297124 -32.686376 33.349448 -6.359379 23.801789 -47.415245 40.625308 -17.566593 32.867827 -11.415900 -13.764072 1.695593 -4.561589 -21.296880 24.957825 9.651387 -14.988097 3.254840 29.140564 12.728018 10.045986 -7.092164 25.369196 -12.161180 25.572238 -15.531608 27.883489 -6.488120 -8.513041 -14.383368 -4.670693 -9.424509 1.994454 9.467994 1.885872 7.463235 7.493612 2.880643 28.179142 19.889754 -16.970924 16.087140 -6.750555 20.285612 -22.319319 -20.626456 6.434880 23.138350 4.795474 8.099153 -45.592539 -26.752593 -52.710805 -28.898555 -11.333198 10.772753 13.353747 0.115210 -10.785865 -27.466093 -25.981580 49.791356 -2.182763 19.985081 23.821811 9.738454 30.915510 23.674326 5.681316 -6.524267 -8.498456 7.158895 3.373463 -3.486683 -27.509634 26.783533 -26.004933 15.247772 36.539508 -14.773181 23.361621 7.190651 17.619338 -33.931685 34.874218 8.292539 -33.110923 13.020695 38.609567 15.096068 -16.712453 -21.822896 -0.282307 -0.746157 0.418048 0.660552 0.401127 -0.472520 0.306058 0.236244 0.362953 -1.000246 -0.004936 0.466789 -0.554930 0.525085 -0.661901 -0.361005 -0.835900 -1.150395 -0.064215 0.384543 -1.058710 -0.001130 -0.172347 0.099611 -0.128640 1.171778 -0.717204 0.019568 -1.237439 0.726130 0.573157 -0.413544 0.308200 0.629949 -0.061088 -1.020104 0.015998 0.681685 -0.085456 -0.432182 -0.054953 -0.951361 0.243606 -1.411260 -0.551451 -0.068247 0.628776 0.498118 0.085755 0.063654 -0.280790 0.299051 -0.050634 0.857444 0.014825 0.254889 0.705120 0.344260 -0.050824 -0.279131 0.230978 0.103917 0.517873 -0.343240 -0.613860 0.344394 -0.016517 -1.315067 -1.005634 0.536017 0.239483 -0.022753 -0.163117 0.027516 -0.970429 -0.315675 0.023690 0.331493 0.338886 -1.579296 0.619631 0.045053 0.479379 0.156009 0.072347 -0.048434 0.700683 0.332868 0.062653 0.188117 -0.724173 -0.064471 -0.001596 -0.672552 -0.393713 -0.852623 -0.072149 -1.445625 -0.421833 0.081677 -0.155779 0.455938 0.254174 0.166378 0.319135 0.166840 -0.403138 0.252697 0.142121 -0.037834 0.250904 0.294045 0.286354 0.505053 -0.072367 -1.108829 -1.098400 -0.402603 0.412420 -0.317561 0.575648 1.059679 -0.600933 0.667110 -0.218546 -0.716069 0.291853 1.279302 0.406953 0.242657 -0.529501 -0.287047 0.004203 -0.239368 -0.382006 1.503625 -0.481095 0.067355 0.334373 0.269897 -0.575813 -0.787030 -0.176482 -0.221959 0.165933 -0.533300 -1.094325 -0.382801 -0.669308 -1.029148 -0.259049 -0.520520 0.079117 1.101573 0.913095 1.131535 0.506287 1.502491 -0.135833 -0.472658 0.513423 -0.407071 0.546693 0.365638 0.240933 -0.293843 -0.608503 0.890370 -0.596945 -0.228647 -0.014147 -0.809500 0.157863 -0.633649 -0.267703 0.033625 0.272673 0.096610 0.184880 0.167512 -0.915865 -0.805115 0.468403 -0.289781 -0.405246 0.360783 0.124396 0.034746 0.309390 -0.157060 -0.394438 -0.056389 -0.146415 -0.318058 0.426792 0.145237 -0.037021 -0.262971 -0.642681 0.400163 -0.305227 -0.295506 0.777519 -0.124244 0.462456 -0.357219 -1.155943 1.251379 -0.770308 -0.344870 0.660737 0.433837 0.947774 -0.535857 0.083484 0.060594 1.244669 0.015129 -0.178603 0.581043 -0.875007 0.283855 -0.058857 0.366299 0.216706 -1.006107 -0.044506 0.671347 0.223856 0.758866 0.615342 0.589688 0.707599 0.489632 0.118811 0.081815 -0.140000 0.467157 -0.434188 -0.025526 0.369381 0.343032 1.593002 0.529454 1.332947 1.014961 0.415675 0.386282 -0.729177 -0.864371 -0.183291 0.114092 -0.578547 0.117282 0.259126 0.599718 -0.454014 0.098687 0.026453 -1.640168 -1.276213 -0.870151 -0.130026 -0.594529 0.206854 -0.508537 0.196821 -0.153930 -0.182817 -0.118020 -0.256902 1.416632 0.291667 0.137197 0.911504 0.183385 -0.753981 -0.044412 0.480730 0.061095 0.480885 0.999672 -0.804651 0.367423 -0.468899 0.463310 0.908672 -0.938555 -0.046156 -0.313076 1.275757 -0.479677 0.389261 -0.150167 -0.793857 -0.352520 0.421707 0.193483 0.925256 -0.888588 --0.769975 -2.216791 3.363510 2.355156 -0.337534 0.888949 1.306329 -0.239434 0.583951 0.052222 -0.704980 1.852999 -1.849950 -0.539662 0.134369 -0.108736 -2.135470 -2.087524 0.102688 -0.264851 -0.269272 -1.115447 -0.550343 2.466331 1.357285 0.974522 -1.095033 -0.586611 -3.488159 -0.832080 -0.053266 -0.230011 1.436470 0.975268 1.558237 -2.957722 1.191212 1.938479 0.003817 -2.843668 0.870330 -1.253234 0.505864 -1.109191 -0.433191 0.755346 1.477251 0.404816 0.506998 0.259668 -1.222286 -0.625444 0.029955 2.282059 0.369420 1.436617 2.122757 -0.647957 0.626388 -0.652284 0.453756 -1.532568 0.801367 0.203940 -1.268655 -0.753312 -0.235150 -1.200855 -0.958682 0.999787 0.728590 -0.673154 -1.430214 -0.773459 -2.722626 -0.377872 -0.019625 1.994178 2.428673 -1.932221 2.485910 0.842142 1.701619 0.265560 1.370518 0.332862 1.340601 0.524817 -0.799831 -0.294327 -3.500175 -0.934806 -0.709705 -0.223439 -0.912126 0.074560 1.132841 -3.066090 -2.582808 1.051734 -0.106398 -1.098463 -1.053615 0.807362 0.814134 1.658711 -0.521433 -1.540007 -0.995355 1.291303 -0.956321 -0.280913 0.353559 0.336630 -0.595326 -1.075494 -2.318594 0.981559 1.368997 -0.722386 -0.307636 2.259240 -1.283497 1.618628 0.097392 0.242721 -0.411542 2.050054 1.363542 -0.279184 0.467622 -1.785415 -2.004913 -0.083204 0.327757 2.031720 -1.522996 -0.273863 0.450205 0.817412 -0.048901 -0.115614 -0.344648 2.147084 0.153716 -1.477410 -1.663018 -2.136363 -1.330337 -1.500239 -0.083168 -0.664630 -0.230480 1.954609 1.331671 1.592255 0.242456 2.453501 -1.010257 0.905649 0.202227 -0.344218 0.259061 0.203506 1.002410 -1.322897 -1.081641 1.146223 0.508414 1.329334 0.085116 -0.162027 0.658567 -1.315008 -1.589497 0.718907 0.752341 0.898628 2.222472 1.889945 -0.244348 -1.978504 -0.687623 0.231509 -0.434115 -0.731789 0.262752 -1.712530 1.034768 0.267206 -0.092646 2.127238 -0.135327 -1.108050 1.258354 0.000000 0.500560 -1.430040 0.771378 -1.190879 -0.232889 -0.899719 -0.341795 -1.492287 -1.149004 -1.881085 -1.521639 2.797842 -1.046350 -2.618090 0.866766 -0.514978 2.040933 -3.167726 1.295679 -1.083925 2.190205 0.348721 -0.385449 -0.439127 -0.165467 -0.653495 0.101202 0.718842 -1.528506 0.763224 1.358235 0.728444 0.369156 0.541290 1.097584 -0.185594 0.985011 -0.758915 0.549445 -0.794657 -0.968617 0.218115 -0.368564 0.595450 0.947153 -0.200020 1.145897 1.199667 1.069048 1.410424 1.720107 0.709948 -1.050121 -0.432253 -0.454363 2.184952 -1.279701 -1.140383 -0.715248 1.011637 0.458653 0.270047 -2.766005 -2.822485 -1.951864 -2.879005 -0.456085 -1.202912 0.479403 0.431467 -0.285758 -2.550306 -1.427299 0.127193 0.138474 2.106742 1.169793 0.092149 2.384543 1.338080 -1.054937 -0.864975 1.192295 0.837483 -0.538545 -0.028898 -2.069663 1.068908 -2.202244 1.268136 2.698568 -0.968426 1.102292 -0.425648 1.777183 -2.308390 2.965067 1.167939 -3.095835 0.275645 1.741495 1.083221 -0.814545 -1.686839 --2.162090 -6.060690 10.063381 7.195833 -0.407241 2.126374 3.628275 -1.637353 2.272929 1.992538 -2.663373 5.019877 -6.381933 0.107534 -1.070367 1.415246 -6.923994 -5.769461 -0.165264 -1.676360 -2.131477 -3.613692 -0.390646 5.990219 4.806828 2.380272 -3.673856 -1.473696 -8.800104 -4.308599 -0.331350 -1.038325 4.279263 1.665762 2.929419 -10.752681 4.012125 6.206507 -0.479679 -7.025903 3.233009 -4.079673 0.431168 -1.805866 -1.626376 2.074510 4.287085 3.457061 2.810318 1.440906 -0.434908 -1.864375 1.935756 9.174830 -0.151821 4.814197 5.634521 -2.123736 0.442100 -1.330205 0.903646 -4.070643 2.981409 1.892762 -3.151474 -3.135879 0.163113 -3.071437 -3.597438 3.580184 2.453678 -1.421957 -4.371752 -2.772785 -5.426958 -1.670786 0.940875 5.063413 8.688305 -5.031111 7.580657 2.244758 3.661316 -0.011118 3.621347 0.424798 4.714380 1.218853 -2.523331 -1.529654 -7.130917 -2.001456 -1.044754 2.942856 -2.276981 -3.421744 3.098144 -7.530878 -8.221413 2.389406 -0.048139 -3.401643 -2.697401 1.938195 2.653184 3.542014 -1.612359 -5.699540 -2.686464 2.119410 -2.723327 -1.522422 0.003667 -0.019829 -2.091002 -2.038075 -7.330130 1.787280 2.474511 -3.167199 -1.719891 6.132967 -2.108081 4.941494 0.725505 2.089154 -0.470824 5.452169 3.290439 0.590123 0.991973 -2.753213 -4.446377 -0.011447 2.004550 3.786831 -4.677103 -1.009202 0.215524 2.023055 -1.116510 0.542380 -1.379516 7.564984 2.860126 -4.749908 -5.356243 -5.263682 -3.361384 -5.442635 0.691751 -3.111286 -2.888424 1.904308 4.351727 2.478492 1.236252 7.541187 -2.972854 3.536390 1.253871 -1.763129 2.137261 -0.350599 3.855503 -4.434623 -3.616690 3.283328 2.772333 3.333323 -0.578566 -0.066521 1.161445 -4.909247 -4.126748 2.608668 2.038778 1.635084 6.381433 4.919517 8.126459 -5.273116 -0.048115 1.807893 -1.432077 -1.487746 1.280514 -6.137623 3.504221 0.858730 -0.411259 7.283429 0.269777 -3.965672 3.928964 -0.172481 1.376859 -5.539634 2.880212 -3.557812 0.287504 -3.321398 -0.813857 -3.204383 -2.938706 -4.511168 -2.613435 8.519296 -4.812747 -7.466076 3.419461 -0.695439 5.224520 -10.318105 6.865603 -3.639620 5.549574 -1.240921 -2.206167 0.517984 -0.226527 -2.044391 1.964248 2.214328 -2.279119 2.831075 4.919235 2.549504 1.646763 1.069095 4.255265 -0.065326 2.981969 -2.251026 2.989827 -0.912763 -2.328767 -0.771658 -1.474837 0.817840 2.533416 0.063877 3.432245 4.362769 1.457162 3.904951 4.923680 3.407684 -3.057653 0.803054 -1.648225 6.609677 -3.835173 -3.422056 -1.295961 2.954050 0.250785 2.933118 -8.805136 -8.337692 -4.426785 -8.860031 -1.686953 -0.967561 2.380213 1.230775 -0.587166 -7.739495 -4.187347 4.023084 -0.198886 7.980227 3.876300 0.953303 6.189978 4.264842 -1.230871 -2.104523 1.621413 2.910417 -1.249567 -0.617156 -5.206209 3.284212 -6.229788 4.187160 7.198206 -3.655506 3.116889 -1.896522 4.920967 -7.032191 8.978250 3.092284 -7.543856 2.712954 4.559502 5.424855 -2.194939 -4.687610 --0.354719 -27.766180 92.103914 60.229817 -15.391774 5.610680 23.001687 -32.180239 37.665746 6.261024 -20.032625 14.057254 -45.080260 8.255996 -8.961041 29.148438 -75.568045 -39.333239 -9.936252 -31.210622 -18.665056 -27.104557 25.448128 13.503021 45.179354 33.335194 -29.707951 -14.123633 -35.474035 -41.008099 26.606056 -18.547925 30.920655 28.700937 11.288246 -97.872392 52.451026 31.675983 -19.042146 -39.837851 32.237393 -25.257633 2.442570 -25.791909 -11.003415 18.286650 18.568103 42.047814 39.929374 20.322279 2.252341 -10.524816 16.248181 75.214319 -24.576749 25.846470 26.184604 -17.253075 -8.234976 1.764588 7.280348 -13.445502 17.390248 20.786658 -11.206585 -40.463568 0.759726 -38.882309 -37.845151 42.312025 2.396258 -8.519025 -40.296575 -19.210793 -36.688267 -8.488846 -35.318327 53.919552 67.083266 -45.921664 42.464607 7.677497 18.106475 -1.572875 4.856156 8.841512 32.162996 11.061788 -10.939684 -13.958319 -40.451036 -26.662821 5.934734 -6.091956 -12.945166 -54.689308 27.978395 -58.643414 -53.678883 11.107749 22.949149 -22.808609 -20.097100 7.062302 18.719979 21.536961 -13.264398 -38.921290 -4.633130 7.267082 -12.981058 0.705334 -1.711231 -3.737698 -20.852838 -13.306224 -64.497257 18.704523 -2.908806 -16.091943 -5.740779 42.869552 -14.877375 8.597661 6.701808 24.490731 -18.167657 56.552706 6.208004 24.250936 11.220295 8.021111 -22.420113 7.809192 31.951487 33.603214 -20.966859 -9.966983 -19.900743 11.832951 -39.013324 -6.076810 -9.522760 38.926463 33.877180 -42.715132 -46.412812 -21.213247 -31.661576 -64.981603 12.065368 -29.207437 -17.737895 25.169994 36.438626 36.085241 32.707980 58.560776 -42.665345 16.172114 -4.816510 -13.047534 29.923380 11.716792 36.367254 -30.471158 -20.726612 18.775001 7.427555 21.365054 -1.327767 -4.610094 11.388859 -54.059361 -15.869555 25.022372 19.910614 -0.066980 29.206711 42.227881 41.926593 -37.229102 2.354351 39.188458 -11.521463 -14.424598 21.921729 -48.004897 30.912634 8.924351 4.587979 41.523260 3.716180 -20.214178 20.316110 -11.429438 9.564693 -34.779074 -1.171644 -21.698700 -0.199769 -29.675095 7.488556 -27.696117 -21.700898 -21.081302 -24.988770 59.344140 -36.543271 -40.766430 49.563640 -15.692238 36.870312 -61.944757 62.546335 -32.735579 37.796833 -10.244850 -11.386201 -0.888024 -13.604673 -30.213583 10.236073 9.670029 -3.052515 17.618918 52.503415 31.048526 8.961648 -2.549898 48.318458 -10.794026 46.982679 -12.877618 30.821660 -16.216738 -18.257159 3.090789 -8.872998 -13.561637 -4.537670 10.447978 49.693258 27.819945 26.993534 45.968575 24.678577 49.475807 -26.747264 21.148838 -8.293159 39.346725 -25.166222 -26.021019 16.344052 27.319429 -14.774979 22.876852 -67.450710 -76.101839 -51.005343 -59.011727 -11.715772 -20.375439 19.959176 -9.719589 -4.203595 -47.418764 -31.933045 30.516645 -5.741609 40.973450 28.389165 1.339015 40.781088 48.857340 -27.584561 -13.435022 12.460275 26.090302 3.796578 -3.886918 -57.493824 46.398583 -45.342193 10.674112 67.820088 -38.090602 16.430822 -16.329242 49.910593 -51.344288 64.663063 16.395995 -39.775738 39.014429 36.556786 41.231905 16.106498 -31.853757 --8.371415 -13.695461 23.202674 15.326342 0.016905 6.404759 6.501420 -3.543705 3.684820 6.393134 -4.697356 13.517173 -11.874393 -2.064746 -2.472033 1.797594 -13.264928 -12.312376 -0.678958 -5.630836 -5.768578 -6.580303 -5.156655 15.371187 10.045382 1.325960 -9.144430 -1.288433 -20.980074 -14.483653 -5.699768 -1.313410 8.906979 -4.635371 7.998206 -25.591654 9.857094 15.844942 -0.527055 -15.365036 6.629868 -7.706697 1.001883 -0.605616 -6.310339 4.966168 9.808625 1.351148 5.362134 3.290068 0.459111 -2.125476 5.461800 22.731794 2.198695 11.587637 13.594933 -5.815176 0.738420 -2.453925 1.568876 -10.725252 5.719711 0.967850 -6.050995 -7.071955 1.878192 -3.331058 -5.241193 6.282454 6.026612 -8.423146 -5.903073 -7.029141 -16.134340 -5.909292 10.289192 8.157177 17.753224 -10.173546 17.023256 4.446426 8.753626 3.068136 10.303682 0.548013 12.643882 2.774353 -5.820685 -1.963699 -12.210433 -1.531709 -2.657971 12.279603 -6.900108 -5.815886 7.705079 -20.173046 -19.100696 7.610317 0.285934 -8.194665 -9.205678 0.390677 6.073025 6.356180 -3.730830 -12.131713 -7.717264 7.364677 -7.373964 -3.487004 0.346610 -2.703945 -2.029141 -0.453918 -15.096688 6.148291 7.564976 -4.910926 -7.768139 15.069237 -3.230422 11.306702 1.078335 6.952635 -1.931706 8.973114 6.608245 2.416875 -3.585732 -6.276820 -13.029096 -4.370904 1.597990 2.583945 -11.615761 -4.812873 0.895012 5.205834 -0.717280 6.094624 -5.443326 19.023185 6.805786 -8.228291 -10.851712 -12.243182 -8.997903 -11.615389 -0.027695 -5.420969 -11.084385 4.248580 9.092224 4.283592 0.782612 14.189205 -2.564594 8.807008 2.947690 -5.600695 4.499735 -7.562813 7.707818 -10.820269 -7.763891 7.280222 6.983468 9.963788 -0.953657 -0.295376 3.458364 -8.625909 -9.335361 5.111173 3.849957 4.822179 15.198465 12.794097 24.857531 -12.959070 -1.866442 1.901765 -5.164647 -2.865668 1.107150 -11.770767 3.563964 4.271402 -1.425391 20.349813 0.763432 -8.896377 8.632067 0.990563 3.560777 -12.672227 9.124056 -8.030890 2.779217 -4.297586 -6.761695 -10.343656 -4.370898 -13.043103 -10.060672 19.272339 -15.460165 -19.398392 8.398429 0.665488 11.590258 -25.208346 14.359450 -7.823404 15.047849 -2.899197 -4.014054 0.369020 1.678215 -5.420328 8.556054 4.568092 -9.018055 7.096552 10.605266 5.006585 5.528989 0.241883 8.881751 -1.721497 6.400113 -6.302451 7.377333 -2.429964 -6.654528 -4.451183 -2.821587 1.173435 6.831782 0.952279 -0.753502 7.716697 0.521414 3.511125 14.099502 5.863521 -6.498279 2.217667 -3.825611 14.087404 -9.664515 -9.021068 -2.940707 7.958029 3.696958 4.380280 -20.855901 -13.909050 -13.491325 -20.516468 -3.105539 1.755771 3.608413 3.748403 -2.446426 -17.430235 -9.834866 14.678397 1.073818 18.260919 9.372382 3.386516 14.675536 8.433507 0.323479 -4.972669 0.149409 3.562867 -2.801534 -2.756684 -10.403485 7.662144 -13.455890 9.943453 14.619794 -7.061727 8.893311 -0.055316 4.133189 -16.590157 18.770281 6.885174 -17.182161 4.090687 11.199954 11.716396 -9.806125 -10.584045 --3.284696 -10.606200 20.091663 14.389100 -0.876008 4.081265 5.123853 -4.761254 5.335087 4.879403 -4.921074 9.422407 -10.715093 -0.277356 -0.166049 3.934825 -13.614186 -10.380164 -0.456985 -4.370043 -4.679288 -6.454569 -1.247968 10.377925 9.171924 5.390845 -7.232688 -1.224657 -14.795554 -11.562906 -1.378021 -2.237585 7.874128 4.449691 6.948792 -18.655505 9.190943 11.321750 -1.186689 -12.789779 5.163840 -6.594279 0.395622 -3.468182 -1.653769 5.735135 7.764288 5.549679 5.902250 3.734496 -0.282103 -3.435900 4.417648 14.240577 0.014403 8.709582 9.980064 -5.136545 1.307493 -2.088349 1.967893 -7.453669 5.647015 3.360585 -5.521836 -7.149472 0.828188 -4.999264 -6.295475 7.383663 5.354751 -4.464308 -8.346499 -6.215680 -9.721019 -3.248781 -0.330918 9.243022 15.903643 -8.605898 13.593254 4.863384 7.490641 0.090418 7.343662 0.405930 10.907376 2.726224 -5.433302 -2.004233 -12.550456 -6.238004 -1.295988 6.015755 -4.473507 -4.087157 5.538763 -15.262424 -15.212059 5.148758 1.489999 -5.887768 -7.278076 2.976006 5.782297 5.753637 -1.642242 -10.086152 -4.055947 4.027776 -6.412036 -2.744989 -0.916831 -0.836806 -3.813070 -0.764004 -14.020003 3.796102 4.950831 -4.862137 -3.671114 11.447722 -2.855174 7.516598 0.644079 4.222178 -1.319488 9.355413 5.239934 3.032138 1.778094 -4.501518 -9.531569 0.968741 4.167083 3.869602 -7.970336 -2.764166 -0.120696 4.134302 -3.203618 2.765176 -3.770555 14.932073 6.513862 -8.357336 -10.762308 -9.782646 -7.225090 -9.795312 2.156925 -5.724945 -5.794311 2.752719 8.303371 4.637967 2.860562 11.921379 -6.219072 6.469833 1.251269 -1.915760 4.651389 -0.705390 7.356282 -8.565636 -5.652138 6.698156 5.642820 5.710794 -0.036863 -1.406529 3.398254 -9.039847 -7.900665 6.097823 2.871444 3.192020 11.768153 9.747808 17.069268 -9.221663 -0.626492 3.908634 -2.092717 -3.247054 2.876104 -10.807669 6.489862 1.718051 1.365642 14.583268 0.413797 -6.838695 6.110166 0.479235 2.356856 -9.742553 5.156548 -6.410252 1.740536 -4.843391 -1.445945 -7.604252 -5.188339 -8.184852 -5.012113 16.103750 -8.108084 -14.583693 8.299700 -3.505733 9.909683 -18.899485 11.416803 -7.007697 9.046999 -3.032265 -3.971596 0.006742 -1.410238 -5.059872 4.038337 4.229313 -4.433538 4.981491 9.180555 4.892157 3.160806 1.244595 7.665795 -0.988708 6.588776 -3.988302 6.293159 -2.146679 -2.454351 -2.604741 -2.587854 0.801466 3.987957 -0.715210 4.596632 7.431124 2.563993 6.262115 8.347595 6.315018 -6.268510 2.607708 -2.050162 10.862040 -7.800352 -6.889310 -1.122155 4.662928 0.069132 5.099983 -16.663127 -13.772450 -7.888077 -15.574270 -4.524525 -0.220778 4.873857 2.217513 -1.846194 -12.962841 -7.873774 9.751490 0.807687 13.074405 6.919205 1.609733 11.325513 8.228954 -1.789221 -4.693014 0.600050 3.750938 -2.001795 -1.831258 -10.006797 7.694487 -10.749158 7.402046 13.900537 -7.460060 5.819667 -4.271077 9.600602 -13.255107 15.821126 5.601693 -13.651408 4.449137 8.688633 10.304422 -5.306910 -8.910897 --3.987566 -5.781381 25.468333 16.455616 -4.279454 1.865288 1.427908 -11.374138 10.684004 0.458625 -3.862145 6.461793 -9.420827 3.214664 -2.147382 8.576316 -20.641720 -10.291011 -4.190218 -11.685880 -6.081014 -5.527872 5.104609 3.575738 11.080351 6.393198 -10.746246 0.107948 -10.317536 -16.260457 5.294017 -5.083890 9.103492 0.918719 3.324030 -32.358362 15.841497 9.572796 -5.846123 -11.646148 9.146302 -8.557470 0.699985 -6.728305 -6.347836 4.962533 3.132381 2.601271 11.680106 4.135313 1.106331 2.722944 1.978573 20.465987 -8.369523 6.981067 5.792019 -7.139248 -5.987749 0.146978 1.575116 -2.220084 6.702537 4.263334 -4.719486 -15.231740 1.435805 -7.553721 -11.158575 11.157798 0.696781 -5.842263 -7.897534 -5.434487 -13.681623 -4.682038 5.923937 12.114727 17.019883 -9.670357 9.784900 -0.595520 3.033432 1.682054 4.977513 2.039842 13.595524 2.992784 -2.599027 -3.835458 -6.484393 -5.442977 2.519922 6.875576 -2.967719 -10.532277 7.059113 -19.736948 -14.242618 3.286486 8.060252 -5.811342 -14.391761 -2.545001 7.085336 6.531826 -2.789869 -10.460138 -1.738809 3.580818 -3.401740 -1.853128 -1.717717 -5.278453 -5.111496 -2.120509 -17.777382 5.756925 0.139935 -1.531032 -5.689825 11.953877 -5.287021 -1.094741 0.589684 9.771131 -7.284154 13.536959 -3.325552 7.876742 -0.694206 1.645867 -7.132703 -3.349969 5.966799 6.701836 -7.186218 -6.388646 -8.446140 2.517993 -12.688158 -1.018778 -4.933480 13.050884 13.448782 -8.143375 -11.498567 -4.813451 -8.206444 -19.802245 1.245213 -8.093435 -7.662024 7.902178 9.821967 7.651183 10.350357 16.232759 -8.121597 6.228999 -1.179806 -5.178566 13.310048 -2.772500 10.578595 -8.707812 -5.565815 6.309427 0.662997 7.632644 0.004755 -0.342873 3.163820 -13.976595 -7.216593 8.271862 6.531204 4.709822 8.128580 11.658328 18.291335 -12.047921 1.674079 10.136289 -4.329174 -2.668962 3.874370 -10.698503 3.786798 5.286949 1.041379 15.676522 0.664139 -8.681809 2.238699 0.349346 4.631772 -9.735515 1.649238 -6.211456 4.685765 -6.072176 -5.403001 -9.002514 -5.049941 -8.749585 -10.359217 16.713537 -13.259551 -17.899101 17.127623 -5.402483 13.571155 -23.002992 11.324440 -9.768027 14.244208 -5.970843 0.108863 -0.802295 -4.128577 -12.352220 8.576554 3.738657 -2.839307 4.635312 15.157744 8.995653 4.394729 -4.186111 12.925898 -2.685387 14.643420 -4.033580 11.906402 -4.858285 -3.973902 -0.168722 -1.994537 -5.531916 -1.492447 4.867965 6.358813 7.027466 7.115922 9.799331 10.483693 13.992184 -7.448363 8.332606 -3.204188 8.047332 -5.156123 -7.767083 5.977376 10.318876 -1.963903 5.376954 -18.582392 -19.689681 -16.764361 -19.968909 -0.484607 -0.528550 3.634723 -1.897404 -1.709046 -13.041084 -7.417047 12.995127 -0.401399 21.342828 7.278833 1.595520 9.937782 13.442823 -7.915886 -4.623269 -0.171259 4.132929 1.550947 -2.483419 -16.748004 14.830475 -10.706626 3.140236 18.405592 -10.323519 5.122585 -1.523366 9.394659 -12.578420 17.500359 3.838571 -9.895382 11.710613 8.203543 11.061462 2.570043 -8.560594 --2.542545 -19.080028 40.185643 28.383030 -9.860213 6.591382 -0.032242 -5.698159 3.788885 8.382620 -10.265612 23.595159 -10.319869 -0.165580 10.640818 9.977275 -29.309719 -10.601949 -1.031332 -7.762433 -12.041510 -3.682358 -11.938049 22.888302 15.259001 8.208946 -12.040147 2.885590 -10.021992 -16.543555 -11.888462 -2.603768 13.186679 -6.844608 21.300924 -51.029770 19.208253 18.144837 -0.638079 -27.624912 6.487798 -5.161890 2.406151 -1.848567 -20.671945 5.888046 16.868201 17.241467 3.994810 11.113749 -6.706627 -3.130231 18.096658 44.302262 14.958838 15.519342 25.185985 -13.531041 -2.080464 -9.634645 5.659881 -17.262563 5.444131 -3.151917 -0.739175 -14.717774 -0.351333 -5.535541 -5.810915 4.412554 15.643051 -17.851413 -11.192654 -19.278950 -11.069628 -7.617526 -0.087639 20.816736 25.483736 -21.877734 19.922298 9.374209 9.169842 11.227036 13.596579 1.696847 18.464767 7.332841 -5.410727 4.813378 -4.921712 -15.147880 9.250013 -3.337804 -13.423404 -29.163754 8.206352 -19.359554 -24.231298 17.837620 6.180260 -14.019998 -2.942992 -12.349485 11.314439 11.862761 -7.188590 -10.842353 -6.670457 7.687225 -8.449189 -6.776939 -5.843098 4.944984 -0.316880 2.399117 -26.786981 15.189856 17.133133 -0.605441 2.823161 18.905615 -2.953794 14.501957 -3.195545 6.651900 -1.524937 23.657539 15.568541 2.781630 -10.887839 -5.103196 2.550760 13.424851 2.789376 -8.933789 -9.007970 -8.355929 5.005847 11.285924 1.378719 15.465905 -2.771727 29.910865 9.247012 -1.097610 -21.447146 -24.080287 -28.212445 -15.718416 3.612128 -8.929587 -18.230736 20.199715 12.818277 7.123908 -0.208877 6.491934 -8.128440 9.934149 -1.641564 -1.588186 5.031627 -2.184871 10.981384 -15.246837 -4.523931 13.468666 11.595763 14.371610 2.153394 -4.055465 10.735412 -9.458379 -6.597935 10.635762 11.967141 9.044061 19.450834 17.696402 53.388251 2.746124 -10.723239 0.667824 -7.504438 -7.560348 3.376587 -14.421886 -0.621609 4.085381 0.336428 31.849173 0.690646 -8.891398 11.312471 2.242578 -0.480028 -10.740330 13.528264 -6.350858 5.168147 -0.016513 0.100530 -18.408816 -0.117060 -23.583392 -14.343284 31.604766 -36.522064 -22.743426 10.769993 -10.372450 20.377127 -25.709581 37.807806 -10.923438 24.626753 -2.338686 -14.606651 3.211617 -15.682688 -10.394801 17.804791 7.360127 1.769921 -8.061113 11.591757 7.381012 1.235431 0.682243 10.751252 -7.499833 16.679494 -5.883601 12.200309 -7.082405 3.716604 -9.430966 -0.819575 -3.388326 6.979254 0.705132 -2.294175 0.688631 5.475773 3.407908 12.445870 4.321837 -13.080385 7.813133 -5.947296 17.584134 -17.686986 -12.401044 -2.001876 18.398065 7.714238 4.458950 -30.103858 -11.909796 -36.215921 -13.963003 -13.088292 11.952873 7.157902 -0.793873 -8.121501 -13.231804 -17.193339 36.973506 1.493867 18.701295 17.320776 4.398676 24.158965 10.916084 7.625890 -9.786146 -1.396082 -1.182834 0.819898 4.464968 -17.458627 14.393376 -18.625055 9.855236 26.948929 -8.707401 14.086958 -5.409059 5.720287 -21.624386 21.026319 7.458782 -28.632386 -2.476056 24.148277 8.521954 -19.820151 -17.771847 --5.329416 -11.446033 15.816842 11.092051 1.348801 4.870288 5.721710 -0.550096 1.030761 6.275868 -4.429310 10.853386 -8.000547 -2.365869 -0.164136 0.225824 -7.842289 -9.442495 0.594972 -1.894106 -3.020709 -4.794986 -5.982428 13.405027 6.674657 -0.712372 -5.871296 -1.422058 -16.689513 -8.239246 -5.803330 -0.405470 6.257306 -2.217333 7.840929 -14.327057 5.694741 12.098521 1.307385 -12.017017 3.398975 -4.560709 0.763382 1.640538 -3.813269 4.181733 9.290087 1.985485 2.049852 2.732475 0.464250 -3.712286 4.069470 14.272700 4.551148 9.225374 10.648872 -4.575385 3.332663 -2.684273 1.398470 -9.666112 4.379311 0.705501 -4.062150 -3.059731 0.678915 -1.156629 -3.365130 3.296634 5.922561 -5.379448 -4.659737 -5.407126 -10.332694 -4.139693 7.257021 5.152134 13.391857 -6.136096 13.934360 6.157817 7.843311 1.518438 8.301556 -0.027257 8.278235 2.013332 -4.703562 0.396749 -11.292774 -3.026663 -2.967505 8.199642 -5.383921 -2.716178 4.432411 -13.691499 -13.949465 6.744225 -2.061553 -5.922365 -4.647033 2.362970 4.964121 4.947274 -2.313889 -8.765945 -6.276800 4.511646 -6.117572 -3.139889 0.479760 -1.172863 -1.479413 -0.357334 -10.199719 3.840911 7.237370 -4.258858 -4.310329 10.804169 -2.745832 11.092738 0.669400 3.159547 0.142837 5.701200 7.989916 -0.222432 -2.370425 -7.729489 -10.379542 -1.222467 -0.001005 0.388517 -7.655793 -2.872794 3.002819 4.471734 2.162716 6.132651 -2.668172 15.076123 4.237970 -5.298330 -8.023082 -11.016454 -6.835796 -5.426465 0.475010 -3.010731 -8.235882 0.817306 6.227969 2.276990 -0.863034 8.556371 -0.037591 5.257179 2.108207 -3.048971 0.972266 -6.107666 5.298436 -6.948171 -4.826965 5.718734 7.342029 7.083885 0.156633 -1.106316 2.161310 -5.006118 -7.286416 2.647191 2.382398 4.994511 11.578809 8.241101 17.042740 -6.685151 -2.262624 -0.305933 -2.447572 -2.447099 0.974116 -8.540592 3.367577 1.493553 -1.798534 14.046021 0.164433 -5.393144 7.658548 0.779654 1.895839 -9.320108 7.334463 -5.649957 2.355879 -3.042304 -3.749678 -7.678318 -3.125544 -9.754813 -5.803531 14.065044 -7.831551 -14.107570 3.292275 -0.565959 7.570836 -16.245692 9.711102 -4.924810 10.365955 -1.559432 -4.160639 0.973573 1.233391 -1.497942 5.201034 3.517184 -5.793695 5.259290 4.920267 2.656909 3.020957 1.937137 4.909131 -0.933073 2.658875 -4.417707 3.767864 -1.643523 -3.018330 -3.619992 -1.614915 2.605125 6.827532 -1.036369 -2.439167 5.151264 -1.096625 1.319038 9.901929 1.393691 -4.585091 -0.408782 -2.764847 11.200012 -7.008494 -5.998466 -4.357680 4.249472 3.095781 2.620907 -14.533715 -7.873341 -8.168305 -14.173825 -3.922474 1.787826 2.309290 4.697434 -1.720369 -12.418112 -7.102645 9.808544 1.363700 11.263479 6.974997 1.720543 11.345410 4.602294 2.082188 -3.747624 0.707860 2.237133 -3.020751 -1.715995 -6.468062 3.951286 -10.134340 9.206456 9.524664 -4.808841 6.411360 -0.107512 3.661974 -12.499598 13.563572 4.962519 -13.716645 0.937669 7.436067 8.881764 -10.370465 -7.806919 --4.578833 -6.473568 28.423016 18.502701 -3.823778 2.309595 3.358087 -13.403978 13.286667 1.833641 -3.732974 6.292294 -11.275908 3.356968 -1.855627 9.978980 -22.346434 -11.829666 -4.288265 -14.050334 -6.567751 -6.760126 6.297673 2.872701 12.616468 4.807431 -11.235410 -1.553594 -12.602640 -17.238369 7.144194 -6.045222 10.233314 0.515011 2.771097 -37.072769 17.974651 10.633937 -6.966281 -13.019511 10.408852 -10.387682 1.340081 -6.824532 -5.328039 5.143730 3.298696 3.672709 13.908959 5.034153 2.567576 3.015552 1.716962 24.107396 -11.183714 8.078885 5.620959 -8.007260 -7.301233 1.622859 1.545039 -2.377477 8.324392 4.971017 -5.578083 -17.407541 1.659352 -8.655928 -13.586621 12.281700 1.310216 -6.680573 -9.051012 -5.134369 -14.279187 -5.914906 4.075489 13.277221 19.286884 -10.871301 11.781985 -0.465646 3.542986 1.528533 5.990852 2.383611 15.524436 2.851355 -3.490726 -5.157016 -9.289197 -5.800313 2.695044 7.203945 -2.843568 -12.123381 7.802114 -19.219256 -16.362064 3.655805 9.046921 -6.197199 -17.178011 -2.402782 7.959514 7.398262 -3.800452 -12.747181 -2.839557 4.211659 -4.436456 -2.325916 -1.922698 -7.849953 -6.283491 -3.879197 -19.727220 5.885499 -0.133759 -2.085000 -8.324691 13.932168 -6.872815 -1.618642 1.006506 11.261527 -8.448218 14.586985 -4.289046 9.198785 1.211104 0.868391 -11.025985 -3.589476 7.034113 9.276394 -7.065119 -6.247575 -10.065873 2.845880 -14.761172 -0.391260 -4.345397 15.281020 15.149338 -9.683632 -12.169861 -4.668987 -6.572150 -21.522563 2.528698 -9.253108 -7.506947 6.889388 11.466261 8.853692 12.077106 18.291126 -9.616907 8.012173 -1.718371 -5.357911 15.599758 -2.379240 12.516702 -10.002527 -6.152597 5.997637 1.611611 7.702745 -0.398088 -0.079015 3.441801 -16.468839 -8.085128 7.225487 6.537467 4.006551 9.343808 13.182152 22.067208 -15.569423 2.455057 11.835015 -5.044504 -2.531507 4.330912 -12.435810 4.405914 6.234911 0.319640 17.683781 0.747499 -10.577428 1.982032 0.197530 5.030598 -10.803352 1.529145 -7.368061 3.717411 -6.580693 -5.907692 -10.499840 -6.779906 -9.562446 -10.578066 18.676062 -12.508953 -20.083104 19.355070 -7.372167 13.710133 -26.538539 15.597112 -11.581494 13.553438 -8.172335 -0.078439 -1.751606 -1.436609 -14.298976 9.669760 4.293430 -3.858555 7.085958 18.661862 10.401235 5.670754 -4.805569 15.003676 -3.113711 15.856942 -4.879457 14.419410 -5.862253 -4.604484 -0.216923 -2.708937 -5.350730 -1.666327 5.296632 8.037204 8.611989 6.985708 10.941064 12.167503 15.948916 -8.196592 10.402950 -3.444820 9.229889 -5.187935 -8.240700 7.072410 9.953997 -2.281623 6.752003 -21.213686 -21.897481 -15.776914 -22.202551 0.573511 0.165895 3.785293 -1.845632 -1.137118 -16.609010 -8.018566 12.342209 -0.795914 22.166793 8.090650 2.159091 10.969431 15.454911 -8.912112 -5.187243 -0.423237 4.233904 1.286157 -4.317061 -17.787821 16.748204 -12.535038 4.202330 19.927419 -10.901122 5.022379 -2.287937 11.334332 -14.144934 19.687498 4.216043 -9.839102 13.946522 9.966285 14.260080 2.354570 -9.264460 --2.814748 -9.305950 15.690011 11.479164 0.421161 3.016528 5.817219 -2.552138 4.463436 5.374661 -4.461864 7.864802 -9.546223 0.061902 0.546299 3.746624 -10.049140 -9.117101 0.860117 -2.099253 -3.420401 -5.927282 -0.269127 7.768917 7.767482 3.802398 -5.510629 -2.492844 -12.534661 -9.237628 -1.258049 -2.265402 6.666500 3.759542 4.879904 -14.798614 6.653409 8.843560 -0.617397 -11.107992 4.357590 -5.304756 0.819625 -2.175926 0.296246 5.038320 7.683272 5.974659 4.756541 3.989132 0.217976 -4.203550 3.406036 11.089489 -0.044132 6.980440 8.370632 -3.999701 0.692678 -2.045076 1.869131 -7.064721 4.934987 3.679379 -4.877679 -4.810871 0.465224 -4.272005 -6.063287 5.579346 4.689872 -2.369001 -7.454637 -4.498777 -5.773815 -2.152916 -0.934706 7.191864 13.789250 -6.603924 12.059188 4.231102 6.830627 -0.874539 5.119546 0.257238 7.318889 2.088108 -5.249466 -2.632923 -11.026552 -5.502398 -1.924987 5.366964 -2.679778 -2.266474 4.232714 -9.058291 -12.165047 3.855133 0.234798 -4.103860 -5.763537 3.950235 4.930994 5.923506 -1.393861 -8.673518 -4.100513 2.125238 -5.423785 -2.393859 -0.697683 -0.943650 -4.448860 -1.416111 -11.187900 1.703427 4.027899 -5.566173 -3.077866 8.614868 -3.147300 7.565337 0.825218 3.088169 -0.071707 7.653918 5.977871 2.159640 3.761029 -4.848851 -9.022923 1.176112 3.675132 5.160591 -6.424940 -1.316741 0.195202 3.065261 -2.009653 1.629448 -2.283269 12.313025 6.573630 -7.431714 -9.157323 -8.011262 -4.042165 -6.880742 2.673096 -5.181786 -2.370168 1.062189 6.739247 2.523089 1.967906 11.652662 -6.299272 6.063334 1.256855 -1.329756 3.097894 0.984888 6.065397 -7.007383 -4.566191 5.176662 5.999547 3.388097 -0.238322 -1.345965 3.027426 -7.845145 -6.577459 4.858676 1.985387 1.882424 9.093199 6.770482 14.400669 -7.246363 -0.943256 3.074587 -0.893730 -2.893646 2.713641 -9.637955 6.392028 0.500975 1.355086 11.011552 0.673056 -6.432411 5.860953 0.017450 1.275740 -7.747994 4.644317 -5.444504 1.059533 -3.867782 -0.663533 -5.569320 -4.488986 -5.600351 -1.742999 12.944987 -3.353053 -11.930426 4.849320 -3.602466 7.426784 -15.978693 11.134296 -5.787423 5.643361 -3.092913 -3.487059 0.046105 -0.165290 -2.691336 2.280620 3.610565 -2.406055 4.712505 7.872647 3.713435 1.972817 2.027878 5.977236 0.261597 4.345204 -2.121962 4.220535 -1.572923 -1.415644 -1.924531 -2.165954 1.734438 3.910254 -1.806829 4.828735 6.676423 0.726546 6.266664 6.282891 4.920771 -5.141121 2.230049 -1.480445 10.865766 -6.179648 -5.242328 -1.886672 3.372080 -0.403225 5.013185 -13.114275 -11.485095 -3.354545 -13.703317 -4.238344 0.401112 4.581360 1.583892 -0.845394 -10.872205 -5.796314 6.372169 0.911637 11.449817 5.420626 1.061854 9.106601 6.003575 -1.697554 -4.429976 0.348154 3.084427 -2.352541 -1.700936 -6.653813 4.542015 -9.451599 6.204710 10.460889 -5.916879 3.614189 -4.694801 9.003622 -10.693655 13.276466 5.064863 -10.600488 3.949103 6.222980 9.795887 -5.036695 -7.186425 --5.504410 -12.354955 18.265112 13.201766 1.578009 4.915321 7.265451 -2.385144 3.362528 7.876634 -4.711139 11.048001 -11.552383 -1.719276 0.142516 2.250397 -9.679059 -10.906864 0.304258 -2.598865 -3.917958 -6.772058 -3.439374 12.773997 8.864361 0.054622 -6.878305 -2.261069 -17.955885 -11.104559 -5.323617 -1.259637 7.758644 -1.058211 6.887147 -16.539394 7.287371 13.067523 0.216336 -13.202898 5.007955 -6.177522 0.867202 -0.429211 -2.384170 5.064232 9.689747 3.476820 4.283048 3.906124 1.438638 -4.455600 4.859865 15.221281 2.234776 10.034191 11.531434 -4.611374 1.847108 -2.446333 1.637378 -9.760895 5.675565 2.172984 -5.761348 -4.446588 1.285929 -2.437521 -5.611507 5.209024 5.757903 -5.357054 -7.085851 -6.180908 -10.223468 -3.780036 5.616427 6.485777 15.889843 -7.738413 15.294610 5.926575 7.949184 0.638761 8.014729 -0.162667 9.302138 2.132982 -6.157784 -1.777787 -12.885450 -4.257875 -3.034811 9.282716 -4.916039 -2.316377 5.696055 -13.547331 -16.174795 5.993158 -0.977987 -6.394574 -6.978976 3.237429 5.162927 6.161449 -2.155156 -10.898914 -6.499841 4.766352 -6.515512 -3.413659 -0.144527 -1.858539 -3.200276 -0.867999 -12.743170 3.128176 6.793954 -6.380917 -5.514042 11.700415 -3.971482 11.459755 1.111962 4.226665 0.295895 7.204553 7.676579 1.996743 0.966851 -7.071991 -11.898426 -1.815789 2.029562 3.192981 -8.269855 -1.418040 1.863903 4.322549 0.262499 5.783892 -3.046336 16.400607 5.351672 -7.524197 -9.754673 -10.754680 -6.644793 -7.310803 2.200950 -4.620183 -6.210706 0.958366 7.668439 2.084201 -0.035026 12.961362 -3.424249 6.827765 2.620345 -3.428789 2.600893 -4.515119 6.797680 -8.750232 -6.507375 6.669024 8.309324 6.025953 -0.228637 -0.633105 3.176553 -7.629583 -8.169493 3.193910 1.716373 3.110930 12.806911 9.225399 19.883386 -8.677020 -1.003287 1.478140 -1.809184 -2.425717 1.324284 -11.124212 5.238452 1.592662 -0.184272 15.642063 0.845770 -7.800293 8.215925 0.052337 2.065591 -10.539513 7.809782 -6.862765 2.149292 -4.100998 -3.360015 -7.256606 -4.780948 -8.777203 -4.006045 16.006405 -6.801162 -15.442284 5.007201 -0.537782 8.847378 -19.934679 14.052656 -6.161930 10.049017 -2.823334 -4.515783 0.802155 1.828989 -2.553510 4.379631 4.176159 -5.393057 6.262234 7.978601 3.437022 3.508798 2.136217 6.340319 -0.226360 4.107218 -4.306898 4.992680 -1.259965 -3.528523 -3.498290 -2.604025 3.025494 6.329553 -1.906060 0.947297 7.782180 -1.033790 4.181847 9.897784 4.085749 -5.453742 1.958992 -1.900866 12.922168 -8.196845 -6.500486 -3.465243 4.448384 1.801985 5.306202 -16.526657 -11.126364 -5.749494 -16.468051 -4.218800 1.842137 4.313296 3.495368 -1.788267 -13.897813 -7.966479 9.888457 1.117772 13.492141 7.311440 2.678604 11.954500 6.463749 0.673226 -4.460572 0.069017 2.979105 -3.448439 -2.750710 -6.643407 4.648190 -11.584989 9.235945 11.079382 -5.871422 6.298945 -3.072383 5.865370 -13.933931 15.608144 6.100545 -13.822716 3.565013 8.811924 11.035957 -9.981094 -8.782416 --1.208931 -4.157363 7.193705 5.057411 -0.227475 1.557251 1.879934 -1.274251 1.506052 1.348739 -2.246752 3.836415 -4.088108 -0.152521 -0.612372 0.625705 -4.794058 -3.880870 -0.240829 -1.105253 -1.421112 -2.409603 -0.745953 4.564421 3.313873 1.908657 -2.665910 -0.426735 -6.181371 -3.153695 -0.902174 -0.614646 2.792379 1.151477 2.592950 -6.004049 2.754801 4.438636 -0.170279 -4.885903 2.071594 -2.566779 0.026975 -1.083312 -0.845500 1.744664 3.047987 2.230194 1.739303 1.036452 -0.497407 -1.387650 1.495798 5.378173 0.484518 3.336951 4.294031 -1.645339 0.635518 -1.095290 0.658784 -3.014054 1.853379 1.113613 -2.171161 -2.270477 0.447609 -1.599154 -1.972165 2.488616 1.842304 -1.291281 -2.794306 -2.451596 -4.109006 -0.961940 1.735752 3.374048 5.963526 -3.092732 5.021359 1.785548 2.815672 0.139945 2.619579 0.191460 3.541821 0.987078 -1.873482 -0.778643 -5.297771 -1.702226 -0.764899 2.195033 -1.773526 -1.602635 2.081161 -6.682915 -5.706948 1.684662 0.182112 -2.484658 -1.562376 1.433333 1.906451 2.143340 -0.511115 -3.577715 -1.334149 1.624739 -2.199347 -0.977794 -0.117233 0.007250 -1.163062 -0.491633 -5.022478 1.576403 2.006352 -1.908213 -0.917832 4.273296 -1.259985 3.450369 0.322163 1.520340 -0.146000 3.233926 2.317706 0.537224 0.392301 -1.923823 -2.510128 0.129062 0.997026 1.527712 -3.579849 -0.729166 0.490078 1.430164 -0.556235 0.824878 -1.589283 5.187112 1.504926 -3.309069 -3.780030 -3.930939 -3.184912 -3.556066 0.338776 -1.732126 -2.736892 0.761239 2.913736 1.843509 0.618128 4.654474 -1.605650 1.910492 1.084137 -1.088336 1.282095 -0.885094 2.547714 -3.195859 -2.368726 2.501627 1.955074 2.070269 -0.059098 -0.167723 1.016433 -3.313615 -2.607055 2.114829 1.305787 1.555855 4.727870 3.686790 5.358624 -3.076855 -0.217928 1.065495 -0.815713 -1.224397 0.804413 -4.036107 2.335710 0.650388 0.736276 5.542369 0.303010 -2.326629 2.623521 0.216229 0.946979 -3.751856 2.134041 -2.363415 0.624175 -1.987307 -0.433837 -2.540669 -1.746132 -3.260798 -2.080383 5.902674 -3.287249 -5.359201 2.521522 -0.204778 3.923069 -6.934811 3.758200 -2.453826 4.513939 -0.348754 -1.393130 0.394227 -1.052775 -1.718864 1.596289 1.518245 -1.640122 1.950366 2.534329 1.698354 1.199315 0.652991 2.568028 -0.387573 2.212529 -1.656398 1.733703 -0.498058 -1.478067 -0.806851 -0.892647 0.480914 1.806418 -0.182997 1.333273 2.752435 1.065604 2.373358 3.314995 2.072614 -2.204536 0.618557 -0.999618 4.216457 -2.991743 -2.669050 -0.861879 1.970816 0.378941 1.802522 -6.184810 -5.232099 -3.385178 -6.060416 -1.442573 -0.954730 1.543495 1.046295 -0.699475 -4.904096 -3.032477 3.085607 0.335020 5.593589 2.684289 0.655477 4.255303 2.780041 -0.611347 -1.431214 0.708191 1.788210 -1.022162 -0.512088 -3.762960 2.423113 -3.803071 2.819863 5.176071 -2.753386 2.403234 -1.157121 2.639900 -5.015377 5.957275 2.306951 -5.620354 1.389966 2.834319 3.637043 -1.985078 -3.407967 --2.141548 -9.104855 24.257903 16.291700 -4.652168 3.386418 3.812605 -8.629824 5.653921 2.482924 -4.008539 9.274895 -8.619119 1.775184 -2.949230 6.482419 -18.161115 -8.619975 -3.385456 -9.119170 -6.672837 -4.227214 1.001954 7.469095 10.815687 6.559194 -8.503967 -2.357397 -10.880993 -14.026640 1.271743 -2.505513 8.192397 1.462493 6.021847 -29.953899 12.418501 11.426022 -3.981563 -12.784379 7.273934 -5.360291 -0.866062 -3.337879 -6.891958 4.022077 4.724398 4.903246 7.015988 5.222231 0.523020 1.279495 6.406763 23.029430 -1.009508 8.704498 9.795407 -5.923145 -1.236062 -0.818033 2.459352 -4.439213 4.631984 1.378285 -0.827932 -10.969182 -0.575231 -6.612884 -6.682341 8.318331 2.969837 -7.404622 -7.276193 -7.430819 -13.168255 -4.275358 -3.350745 11.970690 16.349672 -11.552132 11.480571 2.010927 3.624590 1.436189 6.394794 1.649549 11.201316 4.078828 -1.722244 0.038636 -5.219645 -5.562530 2.432375 4.080928 -6.748493 -15.094748 8.564092 -18.384695 -14.683572 6.977668 5.904162 -7.613531 -7.516268 -3.564004 4.257928 5.611976 -5.710964 -9.449474 -4.525468 4.260602 -2.368454 -2.393327 -0.547172 -0.350322 -2.829904 -0.008780 -15.697273 7.014995 3.955371 -1.937740 -3.859752 12.153005 -0.579300 3.624154 -0.444549 6.767769 -5.258236 13.021269 0.820020 5.907026 -2.875467 2.577501 -7.044838 -0.420877 5.704015 2.814056 -7.092248 -5.841835 -3.470721 5.090598 -6.224921 3.985365 -3.856414 14.359601 10.861075 -5.977711 -12.084891 -8.373297 -8.808256 -15.407251 0.445578 -6.572554 -8.829755 7.898580 9.164315 6.801268 5.352985 10.294372 -5.400175 4.955228 -0.467578 -3.903065 7.389504 -3.324267 7.961357 -8.475495 -6.185012 6.303627 2.898989 9.483420 0.805084 -0.034566 3.286147 -9.601330 -6.824736 6.850884 6.975389 1.633590 10.126695 12.480267 19.575464 -8.683275 -1.535355 5.831255 -5.805071 -2.807935 2.728608 -10.782886 3.255594 3.764410 -0.463145 15.980447 0.376931 -5.170695 6.069203 -1.027269 2.633583 -8.652062 3.616045 -6.226711 1.764383 -5.468221 -2.192104 -8.463614 -3.200432 -9.470678 -10.351956 17.315984 -17.559868 -13.153123 13.080531 -4.178642 9.753499 -19.542574 15.311909 -7.501181 12.035948 -3.348952 -3.449227 0.012169 -2.182057 -9.505768 7.851634 3.878967 -5.047399 2.350819 13.430154 6.129786 2.743063 -2.559048 11.291058 -4.422451 11.099816 -5.408292 10.858699 -3.793290 -4.450633 -2.930877 -1.832284 -3.539323 -0.617231 4.209177 5.596449 3.464684 5.438520 5.469325 10.188079 10.216405 -7.421855 6.159412 -2.657087 9.089928 -7.871402 -7.565124 2.999405 9.398292 0.083747 3.961114 -17.769229 -14.942613 -19.420512 -14.489519 -2.767048 0.086207 4.706750 -1.509941 -3.551845 -12.119110 -9.845158 14.361149 -1.236353 9.841332 9.832777 2.390939 12.070399 10.605154 -2.543552 -1.987793 -0.958939 4.476419 1.343550 -1.852252 -12.511560 10.685337 -11.458539 4.607246 16.545611 -6.886725 8.027349 0.632784 10.344036 -13.101092 15.900228 4.035498 -12.768688 6.761568 13.227782 8.719261 -2.140996 -8.754209 --8.442034 -22.165052 30.754196 22.645292 -0.868392 10.651828 10.384660 -3.378188 -1.897512 12.053267 -7.716661 20.925706 -15.935323 -5.432136 -0.343671 0.591945 -16.649006 -15.026566 0.118394 -4.812284 -6.576751 -8.463931 -13.105578 28.671693 13.747228 1.177619 -9.909437 -2.883259 -28.559931 -17.161071 -14.584215 1.136010 12.347901 1.123706 17.158812 -25.586742 10.593508 24.132919 2.182795 -20.307225 6.177403 -7.741098 0.142605 1.784528 -10.880290 9.415183 16.344382 3.393391 3.751880 5.964573 2.445141 -7.355360 14.323027 24.793912 12.153080 18.333142 19.176230 -9.071777 9.584262 -6.094883 2.017420 -17.966767 7.242269 -1.942144 -5.488144 -6.111849 -0.652927 -1.273703 -2.588107 6.214558 12.003634 -12.219867 -11.305362 -12.045114 -20.680784 -8.565977 1.985119 10.586170 23.202943 -13.566410 25.825041 12.604489 12.570195 1.557479 17.380387 -0.177559 17.032382 3.962185 -7.817633 5.677055 -16.881802 -7.220597 -3.026437 12.995491 -13.921476 -9.909589 9.241591 -28.599246 -27.878523 14.576690 -2.106406 -14.770085 -4.570267 1.817993 5.921076 6.649734 -6.055103 -16.681785 -9.988929 11.126730 -10.252184 -5.694436 -0.172076 1.418945 0.907131 2.070899 -19.263503 10.128546 15.078456 -6.639443 -5.480364 21.747643 1.582089 20.569278 1.166846 4.979446 0.084329 12.986509 13.525162 1.540751 -8.718781 -10.598462 -17.982368 -0.336165 2.262325 -6.420349 -14.090315 -7.554452 7.163326 10.613209 5.425069 16.728144 -2.917056 29.688616 7.003784 -8.327836 -15.645105 -21.430848 -17.414569 -9.645748 1.010579 -3.858003 -16.492341 4.225036 11.701188 3.475967 -2.902062 9.160473 2.699046 8.118858 3.178038 -5.770943 1.335398 -10.909412 9.426968 -13.895409 -9.608059 13.452686 13.096966 17.405255 1.019933 -0.105810 5.675478 -5.814803 -12.372300 5.364374 4.857084 7.176893 25.470746 19.036633 33.618579 -7.213547 -4.491519 -1.414793 -5.486419 -4.028349 1.681312 -15.603792 6.580328 3.376012 -5.903114 27.812975 -0.463328 -6.412760 16.108445 0.231078 3.670250 -19.053924 13.600446 -10.388442 5.172871 -6.945492 -5.149146 -14.368326 -6.297352 -18.130654 -12.509965 27.590589 -21.738648 -20.539160 7.163912 -0.507095 12.978304 -27.745307 21.982376 -8.269907 17.808921 -2.318749 -11.654189 2.160467 2.137004 -3.657262 9.291977 6.283639 -13.368678 6.408431 9.093049 4.288274 4.206710 3.263583 10.109516 -2.861557 6.506129 -9.896675 8.116741 -1.519182 -3.324006 -7.978163 -3.238713 2.829566 12.365086 -1.283324 -1.678792 8.057420 -0.777622 -0.756775 17.850097 2.808154 -8.192836 -1.648944 -4.632591 18.079875 -17.186493 -13.087785 -7.290260 8.023688 6.566173 2.980777 -28.777296 -12.600217 -20.351224 -18.707741 -8.370346 4.235721 7.211994 9.338899 -5.812528 -21.323789 -16.299536 24.338177 0.920093 10.322394 14.214042 3.871750 22.826880 9.090801 8.340171 -5.040283 -1.171298 5.454578 -3.553452 -1.038421 -11.962503 8.606420 -20.090534 18.269445 18.672314 -9.295610 15.241267 0.443495 10.903083 -25.224700 23.399610 8.613110 -27.713698 0.774602 20.376316 9.123019 -20.494049 -14.498894 --1.873301 -15.849520 48.276757 34.885575 -12.045059 6.159391 2.350239 -18.960293 10.990812 9.225397 -7.023500 18.011676 -13.857451 4.407409 2.082242 18.588432 -37.192378 -12.064197 -7.378525 -19.635962 -14.632530 -5.678802 0.336031 13.127202 21.066363 14.854315 -16.492535 -1.528545 -9.932039 -34.544907 -0.347163 -5.339155 16.564164 3.534337 13.087004 -63.229963 27.943358 21.101771 -8.447550 -23.737741 12.661839 -8.086243 -1.504848 -6.061609 -17.264550 8.871697 7.968364 8.902129 14.065754 12.475013 0.910884 4.083040 20.309489 45.644459 0.107957 16.788112 18.751839 -13.675423 -4.553633 -2.536208 5.506236 -7.174473 9.405600 0.933876 1.904464 -25.189307 -2.514009 -10.663838 -12.657945 15.062298 5.958393 -18.158691 -15.279237 -17.183641 -19.979476 -9.492378 -14.582842 24.558349 30.155513 -23.755569 19.882548 5.344761 2.822718 5.245004 12.512728 2.551547 24.015217 8.749793 -2.690886 3.231449 1.093064 -17.004261 10.834569 6.157032 -14.546502 -32.981246 14.638917 -31.790032 -27.804535 16.045225 14.338381 -14.529669 -16.165796 -14.376752 9.176417 9.467846 -9.996882 -16.650832 -6.763974 6.845294 -3.673839 -7.011971 -6.618168 -0.088365 -3.816446 6.705190 -32.492354 14.732760 7.807895 -1.520470 -5.758210 21.479516 4.162152 4.252881 -2.565667 13.777855 -10.393454 26.502379 0.256119 15.670858 -6.814896 9.547337 -8.247581 4.001984 12.279029 -5.275158 -10.352604 -13.575927 -7.869912 10.583331 -12.668111 12.998889 -5.882308 31.102866 24.593660 -5.374200 -23.183631 -16.257996 -21.790101 -30.094837 3.817069 -13.780113 -17.400629 18.088497 17.342642 8.824077 11.305138 12.289667 -12.895455 8.760527 -3.671738 -4.041146 16.660800 -3.974518 15.434644 -16.240237 -9.645591 13.556431 7.787633 17.594712 1.890230 -1.033903 8.662109 -15.565897 -11.074508 15.760708 11.743371 2.125134 18.365804 23.095141 53.743800 -9.676908 -2.648875 10.965348 -11.441872 -4.573818 5.644685 -19.939657 4.129578 7.292150 0.815557 32.391106 0.001686 -9.216275 9.248542 -1.522593 2.873648 -14.702674 9.218198 -11.403731 5.119429 -7.470175 -4.326687 -17.271342 -5.372997 -18.330234 -16.336674 33.844208 -38.544243 -22.019607 27.582795 -12.407598 17.033048 -34.253665 37.055105 -14.763295 20.208905 -10.262091 -11.458328 1.014346 -7.848890 -19.911014 16.000282 8.507458 -6.193073 -0.629560 25.504345 11.644901 3.838648 -5.991003 20.809233 -9.044527 24.383990 -9.988229 24.280567 -7.701740 -1.645745 -9.806701 -2.999806 -8.908618 -3.288166 6.790239 7.265708 3.672514 9.157018 6.138655 17.349958 19.098466 -15.157135 17.140924 -4.992845 14.579557 -16.098965 -13.895072 7.813730 18.370708 0.332730 9.482336 -34.522311 -22.410938 -40.576561 -19.056843 -10.024529 9.549776 11.613810 -4.469575 -8.398116 -19.291529 -20.197657 36.606463 -2.337958 11.412969 18.694963 5.828288 22.881548 20.113217 1.323838 -5.970035 -7.454526 3.695105 5.343372 -2.457530 -22.457958 23.646319 -18.997385 7.527569 31.408430 -12.540163 15.235397 -0.237037 18.518173 -23.576004 27.609157 5.558205 -22.173033 12.108161 29.449983 13.131385 -9.267668 -16.879904 --2.681750 -4.890447 13.045322 6.516494 -2.109874 0.946470 6.362782 -4.142661 5.045932 -1.657412 -2.511657 1.685401 -9.041280 0.185451 -3.647197 0.490464 -10.309822 -7.208896 -1.373103 -4.872583 -2.920244 -5.303824 3.899435 4.144388 6.299118 3.054346 -3.505839 -3.121762 -9.021884 -2.945809 5.080612 -1.810382 4.534837 3.184350 1.637920 -15.755624 5.351397 4.459763 -2.536311 -5.949281 5.562178 -3.989319 0.154057 -2.770883 -1.626895 1.248022 3.882158 7.266240 5.622474 1.821328 0.276783 -3.108430 -0.795209 12.569163 -4.173351 4.266454 5.098650 -1.985591 -0.920867 1.099993 -0.275804 -3.910013 2.181853 3.685343 -3.825804 -3.760974 2.565119 -6.794189 -6.441377 6.593255 1.753346 -0.917901 -4.829421 -2.933409 -7.353759 -1.803248 0.573436 6.920257 11.266648 -6.991431 7.829553 0.920787 3.907425 -1.074757 1.189958 0.925202 4.641597 0.476643 -2.573185 -3.099106 -10.766058 -1.082423 -2.049701 1.379129 -0.498128 -7.798806 5.082856 -9.672013 -9.116662 1.151927 1.657162 -3.745478 -3.796761 3.150822 2.582327 3.072360 -3.206782 -7.461614 -3.328768 2.280458 -3.561574 1.866881 1.549369 0.342551 -3.356881 -5.244415 -9.289297 2.255191 0.012402 -3.878984 -2.499056 7.361182 -4.651891 4.465249 3.244159 4.383193 -2.350478 7.754046 2.731044 0.441896 2.325283 -1.833705 -4.525191 -2.136674 3.301579 9.810407 -3.736586 -1.617957 -1.755397 1.510448 -5.149384 -2.164913 -1.291842 5.678943 3.006844 -8.282922 -6.846908 -2.819526 -3.068259 -10.240382 1.189809 -4.677621 -3.541169 2.653782 4.426261 6.218229 2.900999 11.374059 -4.587228 4.585664 0.368198 -3.962618 2.345111 0.564839 6.366872 -4.933712 -4.415247 0.977810 -0.078127 4.071940 -0.810323 -1.278293 0.385232 -9.690268 -5.048948 0.978866 3.418246 0.018239 4.405139 7.269277 5.103384 -9.041869 0.189033 5.290269 -1.776792 -2.620987 3.344976 -7.660039 4.634932 1.502492 -1.455367 6.914671 1.064519 -4.307216 4.572664 -1.677183 2.247109 -6.290547 -0.616160 -3.940991 -0.462073 -6.005158 0.537243 -4.344510 -3.699635 -3.805140 -4.714992 8.841727 -5.359716 -8.386646 7.018652 0.445086 7.609310 -12.367041 8.778727 -3.885449 7.515347 -1.522101 -0.621852 -0.683147 -0.234173 -2.626251 2.457754 0.025229 -1.562292 4.787954 8.909062 3.934264 3.397256 0.743421 8.260229 -1.338366 4.850607 -2.757693 3.856090 -2.592611 -6.491628 1.723155 -1.300224 -0.779554 0.786388 2.597693 7.615495 6.335387 3.021825 8.232469 5.468927 6.525094 -2.797351 1.094590 -0.966142 7.722966 -4.029496 -4.011295 1.376603 4.558731 -2.335100 3.418781 -10.649111 -14.135165 -5.800422 -13.205775 -0.939369 -5.136266 2.260773 0.035283 -0.069111 -9.116776 -3.737843 2.166984 -0.718841 10.510782 4.944559 1.066991 7.307702 8.899421 -5.196680 -1.617982 5.280615 6.172800 -1.696093 -0.941498 -8.808841 4.473912 -7.933918 3.292365 9.703196 -4.494439 2.883870 -3.410897 7.936557 -9.538698 11.005916 3.309168 -7.256600 6.608735 4.800184 7.263406 4.456217 -4.137157 --3.049932 -5.304630 10.939088 7.309797 -1.045861 2.596971 3.192509 -3.134728 2.332395 2.132385 -1.920071 5.311177 -4.964461 0.104359 -1.547953 1.601259 -6.734274 -5.258822 -1.139079 -3.644442 -3.009622 -2.908517 -1.055279 5.248743 4.634870 0.550955 -4.522488 -0.852041 -8.649838 -6.467497 -0.582433 -1.059003 3.864564 -2.636575 3.119976 -13.594940 5.595792 6.503272 -1.028603 -6.754228 3.376863 -3.665884 0.447243 -0.583435 -2.526783 1.212367 2.926885 0.516317 3.088352 1.599604 0.225898 0.629302 0.906371 11.139416 -0.643607 5.333240 5.402694 -2.229473 -1.033993 -0.278374 1.100916 -3.490124 2.623122 0.583931 -2.134871 -4.500180 0.420484 -1.961725 -3.046674 3.514866 1.744180 -4.229320 -2.931321 -2.761455 -7.557898 -2.723793 2.558899 4.059417 8.217696 -4.959317 6.736646 1.833561 3.250504 1.375708 4.175120 0.390367 6.021935 1.393569 -2.145879 -0.781190 -5.461207 -0.720845 -0.614866 4.178621 -3.254089 -3.590875 3.809654 -9.264433 -8.108435 3.258626 0.989542 -3.636549 -4.924358 0.174512 2.719629 2.845700 -2.660191 -5.387260 -3.848058 3.296165 -2.477189 -1.368510 0.194163 -2.282894 -0.762189 -0.916749 -7.683015 3.023840 2.946549 -1.651139 -3.215134 6.747344 -1.389080 3.508158 0.350505 3.266835 -1.998944 4.831716 1.573389 1.318150 -1.893967 -1.681494 -6.840221 -1.805562 1.269469 2.117907 -4.661654 -2.297434 -0.509834 2.249845 -2.193133 2.074152 -2.552693 8.103197 4.239551 -2.899402 -4.806060 -4.613991 -3.528307 -6.213164 0.116240 -2.393105 -4.745942 1.646509 4.302839 3.148782 1.847980 6.564426 -1.404167 3.779327 0.360122 -1.915798 3.239043 -3.049186 4.040669 -4.373945 -3.656280 3.157410 1.933447 4.222728 0.026181 -0.043739 1.511134 -4.397682 -3.945669 2.148459 2.215309 2.300367 5.928824 5.969627 9.644471 -6.554377 -0.129212 1.780230 -2.143974 -1.284690 1.061556 -5.262599 1.094484 2.210245 -0.169749 8.710566 0.367219 -4.186880 3.039942 0.117192 1.931965 -5.345834 3.203035 -3.749454 1.103813 -2.136729 -2.058969 -4.801860 -2.349594 -5.739128 -5.150903 7.833858 -6.422031 -8.473507 5.171322 -0.468869 5.405966 -10.935950 6.332194 -3.867719 6.901151 -1.888156 -1.007284 -0.310133 1.391058 -3.707951 4.566450 1.999176 -4.035716 3.268292 5.736573 2.368522 3.153405 -0.502393 4.715405 -1.542986 3.810839 -2.668095 4.304733 -1.750257 -3.742280 -1.069862 -1.174422 -0.443019 1.577744 0.812651 0.481210 3.532105 1.196423 2.286507 6.030612 3.693744 -3.111522 1.993310 -1.598429 5.067222 -3.930695 -3.834717 -0.118045 3.737798 0.818078 1.511229 -9.349397 -6.901672 -7.541171 -8.862342 -0.432487 0.192557 1.314002 0.891618 -1.082647 -7.650666 -4.385591 6.263484 0.148995 8.259762 4.340203 1.621596 6.254054 4.834780 -1.554285 -1.760928 0.645364 1.426126 -0.729502 -1.261195 -5.628502 4.576181 -5.447253 3.958406 7.032629 -2.946017 3.701181 1.086404 3.290017 -6.900257 8.557073 2.827198 -6.798313 2.912861 5.776814 5.532028 -3.122877 -4.472117 --4.622042 -11.307471 24.333869 13.573780 -1.791408 3.423784 11.195450 -5.803992 7.286922 2.159138 -5.876300 6.997088 -15.535442 -1.540034 -3.339863 0.995865 -17.087227 -13.321614 -1.085044 -6.688539 -5.338185 -9.357066 2.259099 11.187356 11.890624 3.859406 -7.039752 -4.359261 -18.337714 -8.605525 2.928561 -2.454250 8.365062 3.554906 6.423128 -24.672163 9.888033 10.917361 -2.360290 -12.869163 8.321999 -6.250153 -0.084581 -2.626127 -2.230649 4.278648 9.960762 12.234831 8.508163 4.239490 0.495206 -7.328650 1.122576 21.207424 -2.605993 9.673241 11.797175 -5.027169 0.700676 0.835503 0.445684 -10.331349 4.373260 5.567725 -6.726326 -5.660108 4.963089 -8.928173 -9.323032 10.482285 6.143875 -4.413715 -8.664734 -6.880634 -12.694127 -3.330951 3.321561 11.320179 20.781567 -11.200030 16.702644 4.361863 9.255563 -1.325884 4.811761 0.458974 10.145628 1.439138 -6.399679 -4.305205 -19.798124 -4.689800 -3.754076 5.497472 -2.696152 -9.818011 8.277171 -17.891158 -18.311767 4.229618 1.660278 -7.633030 -6.896115 6.214519 6.102982 5.681866 -3.846472 -13.394509 -6.759416 4.666839 -9.502466 1.375922 1.717818 0.119084 -5.437548 -5.351396 -16.499734 4.338339 3.554078 -7.077261 -5.114875 13.957725 -7.264735 11.234575 4.426688 6.820122 -1.788608 11.326258 7.757351 1.017382 3.434366 -5.676220 -10.196977 -2.414600 4.685894 11.813663 -7.299256 -2.667456 -0.200874 4.473557 -5.841011 1.135710 -3.514396 15.078189 4.937722 -13.566059 -13.136384 -8.594914 -7.414102 -14.256429 2.692681 -7.114740 -8.444225 2.387180 8.561135 8.374157 2.462488 17.862344 -7.122492 8.501268 1.485139 -5.459758 2.781226 -1.752343 10.612990 -9.974609 -7.249355 3.619570 3.872871 7.500890 -1.194211 -2.739060 2.109888 -15.068727 -9.939783 2.375155 4.439810 1.745564 10.378963 13.244751 15.823863 -14.230403 -1.080276 6.861524 -2.334448 -5.317753 5.430100 -14.069404 8.059808 2.152827 -0.591124 15.766638 1.883158 -8.070872 9.147133 -1.704393 3.058073 -11.894363 2.441247 -7.323644 1.078608 -8.023198 0.043018 -9.270133 -6.112794 -8.882683 -7.422180 17.708141 -8.961362 -17.736404 10.889468 -0.444374 13.464448 -22.837895 16.680679 -6.938392 12.695897 -2.738015 -3.126464 -0.421739 -0.271728 -3.994293 5.574534 1.179851 -3.659690 8.709307 13.435474 6.008857 5.993624 2.025662 12.329428 -2.417816 7.055709 -5.114227 5.856618 -3.853929 -9.030557 -0.418555 -2.333571 0.399103 4.335596 1.688061 8.303192 10.668810 2.807116 11.338642 10.176149 8.447464 -5.761136 1.801914 -1.526607 15.017578 -8.872680 -8.225857 0.152822 6.720568 -1.980658 6.284961 -20.559527 -20.782703 -8.920240 -23.442014 -4.354578 -5.597742 5.088587 2.114435 -1.252753 -16.544055 -8.048673 7.659348 0.720046 17.914543 9.375609 2.140228 14.119150 13.183664 -5.185764 -3.737695 6.157115 8.922884 -4.012754 -2.614779 -13.620349 7.432139 -14.914098 8.685260 16.799753 -8.036491 6.420470 -6.765264 12.130533 -18.793156 19.239149 6.753445 -15.679632 7.931403 9.479897 13.654315 0.207049 -9.147644 --3.028829 -33.525874 102.587609 68.439256 -18.553941 8.581801 23.244803 -37.951195 38.786368 8.088319 -21.237877 22.538296 -50.226656 10.735458 -12.399308 32.724320 -81.227761 -42.408334 -12.276439 -37.626268 -22.284341 -27.722491 22.454863 20.542709 49.817735 33.276680 -31.861563 -13.643279 -44.659921 -49.468320 21.308725 -18.172822 34.450560 25.067677 16.691607 -105.924335 55.671767 40.250730 -20.523104 -48.968952 35.738245 -30.322977 1.242418 -24.739650 -12.981958 19.919885 20.176058 41.024550 41.927375 22.302378 4.135762 -5.815936 20.517112 83.838462 -24.647992 32.242603 31.658467 -20.176984 -8.827451 0.444865 7.381261 -15.401089 19.999138 18.483532 -13.041476 -48.587770 -1.849794 -37.610377 -38.531820 43.444169 5.940395 -14.990349 -44.278631 -24.882316 -43.294077 -12.627439 -38.912011 56.645721 74.785911 -50.450921 47.547904 10.023963 17.102225 -2.126624 14.347692 8.024189 41.713594 12.692608 -11.606771 -12.058428 -39.735157 -26.284844 7.341301 2.053274 -17.625844 -59.444689 32.824466 -67.924009 -62.825963 15.794506 25.095950 -28.149968 -23.647905 5.547140 18.754164 24.671916 -17.814489 -44.965623 -6.807967 10.959042 -10.282011 -4.089663 -3.226957 -4.960982 -19.796698 -12.287957 -71.915181 21.525105 1.722212 -17.438106 -9.934335 48.129456 -11.606374 11.911365 6.626708 28.731092 -19.358193 61.309672 6.369028 27.173959 7.344404 7.765883 -27.662308 10.388838 32.650424 28.883301 -26.714683 -9.393051 -20.120815 13.985336 -38.586939 -1.038208 -12.935863 50.258561 38.090490 -43.221634 -50.062504 -25.418821 -34.782695 -68.081333 12.385603 -32.876587 -24.675401 23.006550 39.247513 35.960587 33.117110 61.611617 -40.235379 19.107585 -2.334339 -13.979343 35.992264 6.988119 40.535812 -35.214894 -25.243906 22.868892 10.164121 25.303078 -0.897857 -1.604639 12.661894 -56.998329 -19.514851 28.644233 23.112593 0.590783 40.850179 48.057473 57.628553 -38.503774 2.780966 38.465456 -16.346268 -13.510988 20.239178 -53.165527 30.295191 11.917008 5.782071 52.456329 3.421090 -22.371216 23.934707 -10.165095 12.634059 -40.140031 4.652462 -26.960753 0.558958 -31.761982 6.215779 -29.970638 -24.027399 -26.474235 -27.824637 68.443665 -47.750962 -47.667309 54.713032 -17.567511 41.755796 -73.949728 69.347873 -36.216691 43.032393 -13.600099 -11.295639 -0.133664 -11.914178 -36.045950 15.998123 13.941167 -7.158316 18.961108 57.038906 31.709707 9.916504 -2.552278 53.212577 -14.347178 50.917079 -17.065925 40.153124 -15.643947 -18.781320 0.362056 -9.689304 -15.698991 -4.063689 12.924674 49.115992 28.099260 26.987499 43.682899 30.291887 52.844575 -29.359299 27.843764 -11.147836 41.492632 -30.178386 -28.982484 16.592723 30.190016 -11.963905 25.828124 -76.644842 -80.812465 -57.569066 -63.619949 -10.989533 -17.080509 23.199542 -7.734519 -6.879367 -53.752462 -38.634663 41.359042 -6.200433 46.361272 33.122184 5.617720 46.278577 52.658076 -23.130638 -13.078313 7.416989 26.931249 4.535268 -6.797104 -57.714554 48.338154 -50.053709 14.188030 74.264524 -38.201733 22.050075 -16.134848 53.184500 -57.103013 71.196940 18.538783 -46.251844 43.404122 47.693413 45.362062 10.420913 -35.703770 --1.982505 -5.484418 8.602180 6.100795 -0.065361 1.817749 3.486119 -0.848156 1.601541 2.489748 -2.184022 4.778514 -5.351100 -0.333308 -0.538191 1.436996 -5.229938 -4.860008 0.201159 -1.089070 -1.752490 -2.784638 -0.858943 5.176161 4.311254 1.340895 -3.040997 -1.630478 -7.408310 -4.351404 -1.439091 -0.741599 3.598850 0.211915 2.751352 -8.808125 3.241391 5.545898 -0.305771 -6.246238 2.680393 -2.867991 0.518682 -1.234669 -1.396241 2.089776 4.343729 2.857898 1.932110 1.886246 -0.262924 -1.729343 2.338550 7.788547 0.719998 4.206002 5.294084 -1.736814 0.530349 -1.334983 0.917026 -4.087400 2.230560 0.925446 -2.331050 -2.299713 -0.133223 -2.080112 -2.632237 2.355563 2.483837 -1.635540 -3.761171 -2.562695 -4.571018 -1.469394 0.190495 3.800623 7.210617 -4.412921 6.628859 2.298902 3.357487 0.276690 2.911599 0.334041 3.321598 1.161746 -2.228587 -0.859634 -5.584622 -1.958281 -0.953035 2.524903 -2.213914 -3.428752 2.938811 -5.592167 -7.006687 2.514059 -0.058568 -2.962811 -2.100656 1.219936 1.994047 3.398409 -1.628923 -4.660099 -2.634186 1.702936 -2.183798 -1.329426 0.328236 0.025975 -1.481546 -1.310662 -6.095661 1.668644 2.775733 -2.795941 -1.452645 5.005285 -1.658932 4.841784 0.456941 1.718186 -0.183776 4.472394 3.637460 0.705085 0.487900 -2.375619 -4.379841 -0.152052 1.668686 2.747954 -3.687312 -0.590403 0.457181 1.967201 -0.059002 1.421243 -0.920603 6.622744 2.462473 -3.616240 -4.636979 -4.932582 -3.074595 -3.665389 0.914219 -2.295453 -2.123195 1.723087 3.473443 1.302587 0.446483 6.209812 -2.325222 2.902293 0.920525 -1.518395 1.261668 -0.608826 3.092455 -3.703695 -2.938029 2.906343 3.108918 3.091193 -0.260177 -0.079417 1.571998 -3.663480 -3.235497 1.687925 1.554183 0.736171 5.498448 4.152365 7.174876 -3.629713 -0.838241 0.952200 -1.186437 -1.213416 0.972067 -5.222016 2.747119 0.619278 -0.362201 6.279382 0.368863 -3.318508 4.119117 -0.383769 0.749477 -4.343369 2.823099 -3.056651 0.194585 -2.298683 -0.448732 -3.002903 -2.102612 -3.954870 -2.105258 7.296142 -3.850179 -6.035152 1.962384 -0.320629 4.021872 -8.551951 6.818477 -2.762545 4.368026 -0.860041 -1.954147 0.569883 0.229748 -1.331752 1.173762 1.868756 -1.942032 2.033499 4.048726 1.808353 0.899395 1.115647 3.385197 -0.260667 2.353997 -1.718869 2.130573 -0.940202 -1.770060 -0.868175 -0.975396 0.960979 2.349409 -0.292314 2.332130 3.084007 0.669135 2.807717 3.983156 2.487895 -2.622965 0.692240 -1.002951 6.079722 -3.646391 -2.737290 -1.524096 2.617773 0.523290 2.507196 -7.405356 -6.118822 -3.444368 -7.161281 -1.637413 0.023646 2.052379 0.822535 -0.847865 -6.181428 -3.815214 4.071368 -0.011464 5.590567 3.526769 0.934776 5.486633 3.082560 -0.501971 -1.872355 0.931746 2.061728 -0.935695 -0.700079 -3.492341 2.196680 -5.560566 3.403403 5.755484 -2.819672 2.740212 -1.798520 4.000607 -6.018163 7.423235 2.633930 -6.547378 1.823832 4.565453 4.806495 -3.173612 -3.931024 --3.080363 -5.891976 9.369462 6.086136 0.224162 1.947921 2.993889 -0.367267 0.980357 2.538384 -2.627020 6.074247 -4.823773 -1.223560 -0.319945 0.461896 -5.343290 -5.414929 0.160375 -0.904645 -1.962920 -2.705371 -2.442981 6.564035 4.410189 1.214909 -3.850855 -0.413199 -8.370188 -6.702409 -3.369928 -0.365398 3.649040 -0.995824 4.147923 -9.251678 3.326995 6.423092 0.293154 -6.894960 2.543699 -2.586938 0.377785 -0.883618 -1.826381 3.119263 5.579342 1.160397 1.502097 1.832465 -1.089838 -2.077924 1.885418 7.108482 2.294633 4.432779 6.496353 -2.551477 0.946966 -1.831566 0.844431 -5.645288 2.090022 0.286648 -2.769405 -1.951440 0.813698 -1.358906 -1.841228 2.541039 2.723157 -2.967095 -3.064941 -3.674181 -7.238582 -1.730049 4.422520 3.573461 7.423254 -4.141211 7.111859 2.493437 4.365089 1.149713 3.584089 -0.011667 4.231224 1.311441 -2.610457 -0.458011 -5.903001 -3.074893 -2.040264 4.911374 -2.332857 -1.509480 3.055636 -9.469687 -7.426635 2.963684 -0.492224 -3.295379 -3.943421 0.926893 2.721914 3.549492 -0.603161 -4.444628 -3.261454 2.116644 -3.217019 -1.005529 0.918527 0.178465 -1.379989 0.216637 -6.482638 2.357879 3.844583 -2.385403 -2.093118 5.621197 -1.810743 5.896277 0.393386 2.199046 -0.141074 4.096334 4.057182 0.512333 -0.645039 -3.013788 -5.670192 -2.112810 0.602249 1.575699 -4.666834 -1.543981 1.029325 2.187585 0.064629 1.959946 -2.561193 7.910650 3.115332 -3.564113 -5.298586 -6.009443 -4.452003 -3.616171 0.282766 -1.719248 -3.400824 2.136216 3.352606 1.265217 -0.442608 6.563010 -1.430725 2.543931 1.151747 -2.318277 0.655355 -2.998003 3.029767 -4.135133 -2.698520 3.571739 3.343837 4.201356 0.149934 -0.554928 2.118223 -3.391348 -4.690004 2.583994 1.664620 2.349323 5.796627 4.931988 7.282255 -4.389718 -1.628145 0.307087 -1.271286 -1.722515 0.990812 -4.764089 2.560865 0.814509 0.532503 7.597979 0.536401 -3.381107 4.510754 0.355683 0.860270 -4.693137 3.169135 -3.328356 1.769104 -1.697882 -2.249533 -4.164816 -1.509798 -4.963911 -3.669885 7.805645 -3.996567 -8.391875 2.412162 -0.028206 5.704332 -10.386388 4.591471 -2.551322 6.312015 -0.585248 -1.228757 0.658839 -0.546424 -1.133422 2.014392 1.756618 -2.883280 2.191653 3.259768 1.614258 1.398973 0.767050 3.060575 -0.364127 2.409457 -1.808056 1.356697 -1.285082 -1.888873 -1.815656 -0.552212 1.165963 3.508086 -0.321121 -0.295898 2.725474 0.346285 2.398430 5.681144 1.862145 -2.737092 -0.038567 -1.112283 6.714934 -4.257616 -3.788401 -1.986677 3.612461 1.151947 1.725348 -7.936252 -5.852414 -5.192256 -9.345405 -2.383374 0.282263 1.742097 1.357677 -1.478595 -6.079036 -3.706292 5.548808 1.283285 7.288382 3.665050 0.637897 6.121143 2.777710 -0.280819 -2.374309 0.681800 1.666678 -1.433463 -1.067340 -4.136408 2.178991 -5.902721 3.933283 6.197770 -3.520201 3.550474 -0.571472 2.983834 -6.981168 7.715466 2.846281 -8.045890 0.787440 4.487370 4.771654 -4.663640 -4.362735 --1.114433 -8.030178 23.671465 10.211095 -3.893037 1.412126 15.292316 -7.031225 10.698461 -2.296230 -5.742214 -0.915918 -17.025222 -3.623892 -2.579889 -1.825254 -20.836258 -12.240081 -0.645573 -6.953515 -4.438069 -12.383907 8.412515 6.845106 12.221068 9.426642 -4.092900 -6.031595 -13.101306 -3.756948 12.269316 -3.082624 7.113219 12.801883 5.061371 -26.370945 10.179809 5.676548 -3.198582 -9.667498 8.248547 -2.965346 -0.054915 -3.785306 1.100975 4.069749 8.947148 21.625703 11.129541 4.005590 -2.222347 -13.298663 -2.363190 18.403634 -5.214701 6.380252 8.843714 -4.722002 1.033884 4.335139 -0.440031 -9.880753 2.372897 9.448707 -6.161689 -2.449230 9.079873 -14.515681 -12.782104 14.608642 5.200489 -1.408378 -9.403563 -5.888920 -10.822327 -0.714237 -2.769429 14.877652 21.130678 -11.298442 16.128062 2.353296 9.729930 -4.186773 -0.978180 0.620144 7.068968 0.072129 -6.908047 -5.725218 -25.797315 -8.722141 -4.209674 -2.897188 1.465222 -13.893221 7.411298 -16.882765 -15.697968 1.015931 2.883972 -6.304014 -5.998031 9.327018 6.814432 4.064086 -3.391533 -13.145810 -5.701940 2.825976 -14.055501 7.504364 3.544283 4.627555 -8.729587 -8.720585 -14.902541 2.922079 -0.830182 -7.059567 -2.163486 13.327725 -9.509833 9.998345 7.063173 5.819568 -2.029265 12.209138 7.371943 -0.780009 8.983823 -3.883951 -5.314099 -3.005063 6.472864 19.753905 -2.148169 -4.243094 -0.992371 4.378139 -10.964733 -3.961233 -2.259473 8.840108 3.492997 -17.615187 -13.316335 -4.201257 -6.684795 -17.767642 3.905297 -6.776285 -5.328855 3.998883 8.263383 12.185050 3.276188 17.174965 -12.592670 6.446371 -1.052021 -5.571073 -0.509694 6.355080 11.630353 -8.553208 -4.975622 -1.358060 -0.966548 7.181365 -2.305370 -5.838080 0.405936 -18.090934 -10.024011 0.282772 4.926440 -0.518718 2.805247 14.199010 5.510971 -16.758693 -2.145704 11.453421 0.180720 -8.106049 9.745704 -14.301917 12.156047 0.240910 0.079139 10.223309 1.869644 -5.321769 8.223515 -3.663714 1.844114 -10.570745 -5.640691 -6.188332 -0.157392 -10.512258 4.372676 -9.661936 -7.405883 -6.605382 -6.696362 14.589929 -2.680992 -14.660278 14.307113 -2.397698 14.821147 -18.353990 15.504507 -5.361773 9.001150 -2.022230 -2.688464 -1.525040 -3.162864 -2.036437 1.708111 -3.236489 -0.148043 10.014950 15.366595 7.278404 6.161630 1.798444 14.460605 -2.878471 6.607414 -4.681279 2.984262 -6.324098 -10.615577 2.513529 -2.201272 0.294876 2.172942 2.105887 15.976639 12.280571 5.419193 17.992510 6.286888 9.395486 -4.565205 -0.390484 1.329401 14.928106 -7.166599 -8.118513 3.206205 6.823711 -6.795817 6.342922 -19.125112 -25.612434 -5.834752 -25.144139 -6.942268 -12.785087 5.615110 0.746888 0.390091 -14.830418 -5.146428 1.048316 1.264084 14.673195 7.945846 -0.700478 13.025597 16.696078 -10.454170 -2.143620 12.592467 13.014839 -5.524171 -2.321410 -17.234809 8.014530 -15.771218 7.063474 18.051953 -9.289855 3.849321 -12.646466 18.528499 -20.855162 17.295209 6.000397 -13.294914 8.595079 5.971835 13.824585 10.949980 -7.353568 --0.697216 -16.627556 58.144057 38.912948 -12.610077 3.287315 12.744409 -23.975703 24.120692 -0.600643 -10.381152 10.433647 -28.361813 9.570338 -12.585308 20.999725 -47.591915 -23.019137 -8.983877 -24.737080 -11.132391 -13.584408 18.238368 6.016658 28.946415 17.715846 -17.874777 -10.936330 -25.005327 -22.616053 18.538328 -11.943573 19.457007 11.473033 3.893891 -64.252070 31.669248 21.561997 -15.432889 -26.977758 23.254052 -19.792331 1.571752 -18.126041 -9.367127 7.296144 6.371638 20.983734 25.491430 11.739674 2.732419 3.309947 10.471822 52.485274 -21.073154 16.771144 14.481654 -9.663240 -8.905386 1.411874 4.534335 -2.482593 11.479622 9.477263 -5.429438 -32.899460 -5.713634 -23.798408 -23.445502 23.898165 -0.944742 -4.396251 -25.300859 -10.456321 -26.615221 -8.111014 -26.845100 33.228786 41.216037 -30.612614 23.428132 1.821044 5.007405 -1.080721 6.432457 7.589536 20.563411 7.660937 -2.432496 -6.867437 -18.443661 -8.687277 7.363980 -2.086295 -9.667982 -42.689325 21.013491 -36.262157 -33.453955 7.384086 18.119110 -15.486258 -11.086809 0.004086 6.591329 15.679032 -15.122505 -25.099278 -1.584471 4.807854 2.123065 -3.080760 -0.688691 -4.623790 -10.476495 -12.755655 -40.471536 12.400622 -3.072390 -8.590628 -5.082865 26.084781 -6.968327 0.427818 2.871582 17.887820 -15.313088 37.427352 -2.399282 17.594246 2.412027 8.995943 -14.260842 4.039111 21.122606 22.786200 -14.867574 -3.722436 -16.992561 6.267673 -24.496202 -5.086160 -3.870676 23.390164 21.437228 -24.450502 -25.522290 -10.625146 -16.935047 -42.496277 5.449982 -19.174766 -12.260370 16.001079 22.736527 22.231420 24.017122 37.582712 -21.585318 9.355079 -2.137410 -10.285430 26.224069 4.695681 23.614208 -18.118408 -15.371812 11.351238 1.465576 15.294890 -0.198628 3.069141 5.859359 -34.061867 -6.774737 14.187373 16.523363 -3.736984 22.558384 26.807397 23.604803 -22.476815 3.691756 24.650352 -11.545824 -5.144036 10.394909 -30.075788 15.667163 8.628527 -0.320320 25.801081 1.879449 -12.789348 12.153641 -8.133472 8.699038 -21.120736 -0.317614 -15.325703 -2.731087 -20.763695 5.228159 -14.463152 -14.616037 -14.054400 -17.424737 37.522578 -30.873090 -21.657414 31.785990 -6.557630 21.295471 -40.617206 40.567067 -21.851173 26.711152 -7.578921 -3.492305 0.460626 -4.137536 -25.478293 7.602509 8.794131 -4.590794 9.738646 34.947784 20.188017 4.024855 -4.031209 33.624615 -9.717413 32.407139 -10.019609 26.397135 -9.320991 -14.029649 4.392072 -5.448607 -11.967527 -7.421074 12.482995 33.789785 14.026006 20.140211 26.583589 16.482422 35.675518 -16.879634 18.529656 -7.413472 21.534126 -14.065442 -14.169041 12.448568 19.703848 -7.447041 15.107317 -42.336348 -49.991137 -35.829279 -32.778100 0.575604 -12.399271 10.571164 -7.559902 -2.853473 -31.581288 -22.398759 18.566319 -7.953919 24.902051 18.908266 3.755952 23.972782 30.931006 -17.109662 -5.066685 5.569816 17.851608 6.616847 -3.836299 -33.960198 29.337239 -28.629941 3.127468 43.502893 -20.842262 11.321279 -5.144072 31.115735 -28.672971 41.353434 9.120362 -23.011846 30.410096 29.618721 25.682246 13.508319 -18.635410 -0.534007 -20.053535 84.978294 49.920065 -18.193601 2.147644 28.053944 -36.493813 38.251889 -4.908690 -15.437674 4.298568 -45.851422 8.893932 -17.620056 23.050237 -71.633303 -35.068247 -12.910163 -37.215744 -16.741705 -25.828468 33.532535 6.844260 43.082088 26.861734 -22.889905 -18.042218 -33.403377 -28.964867 36.559816 -15.852361 26.246138 24.245574 5.088131 -93.790572 46.446475 24.731718 -22.116016 -32.775957 35.080617 -22.874067 -0.646063 -22.142376 -8.192737 10.887210 11.396445 46.193508 41.014107 17.989947 4.247029 -6.994254 7.288523 73.568226 -33.216232 21.952172 20.102771 -13.037424 -11.312286 9.568583 2.282052 -8.184339 12.479873 20.411575 -10.135541 -39.126824 4.419956 -40.733145 -38.799642 42.023389 1.335756 -7.103212 -35.584459 -15.666469 -34.888232 -7.921069 -33.922048 49.848326 62.304612 -43.687759 35.821664 1.638102 11.034342 -6.579724 0.390514 8.127787 27.030885 6.988045 -6.503670 -16.690389 -43.329620 -17.119312 4.844713 -9.284225 -7.745670 -62.647847 29.910563 -51.911845 -48.775812 5.568633 25.092817 -23.210439 -17.552894 9.712375 12.805717 17.534073 -17.574018 -38.239344 -5.055315 7.879386 -10.027099 6.626538 1.241467 -2.593432 -19.778423 -21.964218 -59.064260 17.546829 -8.873456 -14.163357 -8.310934 38.358187 -16.991189 4.901859 12.223971 27.149706 -20.334239 52.220991 1.045379 19.857433 13.676110 10.252288 -17.765577 4.297737 30.950321 42.587827 -15.765773 -6.694533 -22.933765 9.198679 -42.275314 -10.580884 -6.936783 29.600803 27.080148 -44.540860 -40.346506 -10.091404 -22.970676 -64.818386 11.176405 -28.551453 -18.881461 19.139734 30.503172 37.835576 31.997981 57.204961 -37.769376 15.905533 -3.898175 -16.052870 28.537816 11.918967 37.613749 -26.615159 -21.267094 8.599599 -2.367878 20.145539 -4.122415 -1.729547 5.989816 -57.631702 -15.085565 14.526202 21.060515 -6.229302 22.388876 42.600296 29.831414 -39.871501 3.744705 41.413778 -13.740503 -13.604220 22.218741 -45.529129 27.223356 10.273019 1.269907 36.454540 4.646550 -17.525577 18.935200 -13.305128 11.126008 -31.267076 -9.120994 -21.021128 -4.479476 -32.606834 10.332772 -23.100291 -21.929131 -17.359409 -25.426137 51.015501 -33.874786 -35.793940 51.361567 -11.784819 34.353099 -58.744454 60.133900 -28.057394 33.234210 -10.023583 -4.483112 -2.683511 -8.628841 -31.193569 10.795201 3.483546 -1.863334 21.521928 56.181488 29.170848 10.944128 -4.183791 51.935884 -14.672102 44.263515 -15.148788 32.724924 -17.690952 -27.015527 8.795608 -7.069944 -16.979132 -10.600168 17.017189 54.932955 26.626263 27.397336 47.559336 21.577190 51.592782 -21.133291 23.098680 -6.388582 33.314070 -20.339177 -22.558400 21.799042 25.187798 -17.768860 22.959216 -62.379329 -79.155400 -43.923495 -60.362542 -3.189642 -29.170439 17.592682 -10.836383 -3.028044 -46.636699 -28.343972 19.804068 -7.560935 39.679761 28.128020 3.049909 35.800849 52.853159 -31.219804 -4.784745 18.312289 32.448444 3.317011 -7.747691 -53.565269 41.487146 -41.747085 6.772657 63.820715 -31.052141 15.027777 -20.064887 49.675366 -49.348458 58.864329 12.933930 -31.697236 44.541364 34.677951 39.461765 30.928253 -24.553492 -10.355306 -50.068598 205.343044 133.719662 -47.882823 15.153856 27.755221 -90.172123 78.566170 10.288538 -38.162379 39.886961 -79.804266 28.674445 -40.228125 74.757049 -161.831938 -64.136541 -34.920291 -91.060639 -42.331471 -40.804696 44.764846 24.017793 97.424944 62.671981 -59.925583 -19.370083 -64.028103 -110.136090 42.806774 -33.310568 56.432913 15.035783 30.802829 -208.503808 119.397363 78.539411 -48.032015 -93.231682 72.673418 -51.767099 -4.739563 -42.236001 -32.511747 32.859140 20.233178 79.814837 81.732624 48.310933 4.701457 17.379456 51.928278 176.777937 -54.236738 59.506951 52.753850 -34.060417 -23.685077 10.477476 12.187806 -11.097490 26.086306 20.177439 -3.107945 -113.118507 -11.794917 -60.337654 -62.045799 79.954982 -0.469145 -43.763042 -81.176352 -49.082978 -91.871437 -22.696520 -108.365467 112.445539 130.711308 -98.595284 70.799645 9.836177 12.613492 7.154878 23.451658 16.800112 77.132350 28.531394 -5.943466 -18.201482 -45.022499 -42.448704 33.961437 -20.516667 -45.681607 -162.904627 69.325237 -142.770214 -110.943795 32.805418 67.003747 -64.327511 -29.921258 -14.701804 27.214951 41.141047 -41.872563 -75.530387 0.943218 26.060712 0.719333 -9.137268 -1.040747 -16.863876 -22.163091 -12.075431 -136.034637 55.365080 -0.547880 -12.970867 -15.947286 87.609258 -1.116737 -1.369073 7.704302 64.210888 -48.124463 117.348772 -6.687462 68.226322 -12.447642 49.789094 -35.997207 36.667095 66.503137 19.615954 -44.922685 -12.874969 -51.189772 29.213174 -79.710197 7.142099 -36.226006 83.871951 72.041028 -69.423543 -86.063722 -40.402043 -74.528044 -129.999723 19.680086 -55.112915 -71.686728 44.601696 72.020517 71.696287 73.128684 89.384269 -74.829606 16.255852 -10.333617 -22.860315 80.327562 2.013236 74.166738 -61.546430 -45.409778 39.732818 10.642791 53.068582 -3.201088 6.727293 26.942801 -101.360776 -10.418913 55.250924 54.940306 -8.220400 77.411523 99.420690 104.316793 -58.083858 0.426936 77.651853 -50.360640 -20.621756 33.677958 -96.402571 43.138793 34.420199 22.984640 103.898978 4.546249 -25.768636 43.195414 -22.455717 24.417740 -65.326319 0.537564 -52.224444 -10.137003 -52.660923 18.212038 -57.279285 -35.965197 -57.641786 -70.888273 124.090729 -121.991094 -71.978477 118.938372 -39.645084 66.170214 -123.180623 133.923082 -67.561800 79.669067 -13.562339 -8.940491 0.911939 -26.186941 -92.629790 33.996860 26.232223 -14.355468 31.426239 111.241719 62.473431 10.413970 -19.345863 108.204698 -49.732216 110.556804 -41.991380 88.734274 -38.023963 -35.798355 -1.744579 -12.916289 -50.550925 -30.322341 41.510925 87.824650 27.098168 62.153963 70.395210 55.056910 111.489843 -53.382094 74.465809 -28.798356 52.606789 -55.143085 -54.207710 48.031172 62.337700 -20.283164 47.686093 -147.616881 -142.992499 -147.205808 -99.343098 -4.624590 -39.685161 38.588087 -28.041912 -22.129812 -96.111836 -85.245966 101.258460 -15.527431 53.633020 69.722542 11.616784 79.474558 102.514947 -39.783163 -6.158110 1.778696 45.529558 25.355976 -20.783612 -105.333156 106.965799 -84.730640 9.292602 148.772867 -70.199876 47.945607 -17.822413 80.757844 -102.203077 122.583105 26.214618 -75.751721 81.580927 107.427022 81.577075 25.177340 -62.991984 --5.412958 -9.386023 14.611833 9.803604 0.638257 3.773793 4.915995 -1.448420 1.942237 5.256037 -3.664550 9.218227 -7.982380 -1.218576 -0.975516 1.521333 -7.764076 -8.244918 0.060763 -2.538359 -3.615652 -4.323640 -3.568304 9.839708 6.685508 -0.439530 -5.785878 -1.224477 -13.483645 -9.454091 -4.873665 -0.785757 5.723610 -4.147841 5.252867 -16.113860 5.892208 10.360695 -0.007441 -10.488823 4.236436 -4.728660 0.574861 0.149488 -3.887287 3.314165 7.577342 1.944405 2.820984 2.986901 0.794849 -2.260771 3.522970 14.815052 2.336765 7.783654 9.605336 -3.593289 0.284672 -1.903959 1.237211 -7.879536 3.724781 0.750648 -3.919955 -3.621638 1.167846 -1.737812 -3.536976 3.397580 4.265771 -5.451800 -4.131030 -5.012186 -9.130261 -3.451572 6.644164 4.757448 11.933937 -6.579403 11.512385 3.555017 5.934176 1.848978 6.192552 0.061074 7.186460 1.793276 -4.086939 -1.358562 -7.649598 -1.881908 -1.934941 8.015095 -4.296246 -3.760855 5.057782 -11.130571 -12.270985 5.061925 -0.506590 -5.343332 -5.473571 0.862272 3.919622 4.917118 -2.425782 -7.883910 -5.614676 4.145581 -4.631866 -2.491021 0.340587 -1.497032 -1.749481 -0.529331 -10.011825 3.472325 5.741404 -4.019951 -4.624210 9.216536 -2.823393 8.668086 0.691126 3.954817 -0.298405 6.199895 5.677475 1.188927 -1.795264 -4.543684 -9.019550 -2.300624 1.066241 1.795210 -7.018523 -1.952690 1.476413 3.437731 0.338588 4.490713 -3.275647 12.818637 4.826398 -4.971957 -7.628147 -8.616891 -5.714954 -6.271926 0.656854 -3.601412 -6.370512 2.307918 5.766298 1.901285 -0.310425 10.341378 -1.959027 5.722997 1.963596 -3.668523 2.028777 -5.127310 5.075877 -6.926637 -5.030303 5.108542 5.879429 5.912289 -0.331046 -0.291195 2.622575 -5.703827 -6.162713 2.989105 2.431426 2.922323 9.641089 7.604553 16.841958 -7.087695 -1.531205 0.608198 -2.680988 -1.941105 0.761776 -8.054446 2.385881 2.133071 -0.706400 12.974791 0.916800 -6.160281 6.352696 0.174540 1.673551 -7.950717 6.398711 -5.094074 2.044667 -2.412666 -3.697147 -6.162395 -2.538274 -7.933561 -5.335109 12.484751 -8.529677 -12.799399 3.899249 0.288396 7.448313 -16.290426 10.953170 -4.759810 9.586220 -1.924141 -2.864552 0.751594 1.207633 -2.336125 5.254973 3.030243 -4.427338 4.124531 6.672172 2.733562 3.031674 0.929863 5.348608 -0.882012 3.539595 -3.379317 3.933195 -1.393937 -3.697269 -2.888674 -1.654278 1.342002 4.977586 -0.144692 -0.392353 5.023333 -0.680762 2.655988 8.782744 3.209610 -4.206362 1.515035 -2.122912 10.211984 -6.424149 -5.497908 -2.631468 5.153236 2.328863 3.122449 -13.085763 -8.436864 -7.817122 -13.597135 -2.429277 1.939324 2.741782 2.099801 -1.676544 -10.709890 -6.278974 9.997222 0.758529 12.345139 6.239461 2.353310 9.540278 4.806572 0.609928 -3.344814 0.022680 2.148913 -2.204799 -1.725177 -5.481109 3.729215 -9.187275 6.679548 8.777855 -4.261926 5.489365 -0.502555 2.895044 -10.655055 11.966624 4.562004 -11.157385 2.360158 7.397593 8.051375 -7.813812 -6.840482 --4.162322 -11.808970 15.864636 11.863305 0.481420 5.214212 6.366582 -0.982517 0.131129 7.350202 -4.496854 10.862963 -8.693582 -2.061388 0.879289 1.270640 -8.486668 -8.645690 1.234406 -1.431158 -3.407254 -5.479971 -5.734820 13.601610 7.354479 1.093575 -5.257787 -2.647988 -14.809545 -8.887149 -6.734460 -0.125282 6.758502 1.541622 8.626402 -13.994269 5.161782 11.546630 1.384972 -11.670855 3.141768 -3.943010 0.887189 1.389339 -3.498631 5.849933 9.687366 3.798762 2.554739 4.131240 1.495066 -5.078885 6.624265 12.198232 5.707099 9.089622 9.514106 -4.926460 4.409255 -3.416151 1.402476 -9.975938 4.276473 0.552211 -3.395488 -2.711005 -0.353885 -1.078762 -2.938151 3.710038 6.803063 -5.005489 -7.033339 -5.852155 -8.521074 -3.884248 -0.214735 5.982287 13.314689 -6.442064 14.031680 6.627025 7.865623 -0.222477 8.255832 -0.333711 8.208152 1.988278 -5.197753 1.971256 -10.122328 -4.992809 -2.432591 6.473667 -5.942277 -4.248349 4.031532 -12.038187 -14.021374 7.173947 -1.580879 -6.403957 -3.144713 2.427684 4.350909 4.871843 -2.824188 -9.211445 -5.816163 4.593653 -5.942195 -2.911037 0.124585 -0.060633 -1.191369 0.159034 -9.969982 3.706266 7.607747 -4.697796 -2.830791 10.815469 -0.441028 11.298553 0.843512 2.359424 0.762985 7.202043 8.481371 0.769520 -1.943174 -6.728460 -10.726133 0.988451 1.407628 -0.943564 -6.963184 -3.544565 3.293709 5.155275 2.229501 7.470668 -0.987008 15.165801 6.162001 -5.069779 -9.083507 -11.004099 -6.920630 -4.504530 1.498053 -2.681253 -5.956792 0.962484 6.239053 1.497274 -1.081182 6.427316 -0.646592 5.053925 1.389445 -2.302693 0.579350 -3.086651 5.126961 -7.232264 -4.659761 6.632100 7.865237 7.584515 0.611041 -0.955296 3.202761 -3.758028 -6.638455 3.446066 2.873317 3.868491 12.427771 8.808805 17.522724 -3.979473 -2.960386 -0.188171 -1.862016 -2.636689 1.446139 -8.912600 5.021068 0.892536 -2.237987 13.563752 -0.255525 -4.035288 8.911643 0.234580 1.603610 -9.497246 6.671891 -5.667986 2.510280 -3.717601 -2.023843 -7.467617 -3.312040 -8.382125 -4.510313 14.334403 -7.490461 -11.405822 2.989279 -2.738101 6.688782 -15.163774 12.166060 -4.509910 7.149957 -2.223917 -5.764335 0.567840 1.351666 -0.914949 4.175738 3.454091 -5.500547 3.830771 5.632951 2.232328 1.546221 2.544338 5.253461 -0.291474 2.800175 -3.781180 3.683971 -1.068039 -0.212132 -3.673862 -1.667583 2.407969 6.790400 -1.846805 0.608471 4.938402 -1.171441 1.345484 8.788085 1.395259 -4.543585 -0.601885 -2.335974 10.937894 -8.757419 -6.543444 -4.340455 3.815302 2.334403 2.019861 -14.566247 -7.317422 -7.961445 -11.266937 -5.107097 2.484710 4.053612 4.558182 -2.465405 -11.146496 -7.589976 10.927505 1.038903 6.802995 6.848207 1.216108 11.758211 4.797050 3.022329 -3.388296 -0.821491 2.243661 -2.675994 -0.782758 -5.730213 3.614035 -11.003319 9.557316 9.576178 -5.263383 6.621003 -1.129035 7.756604 -13.011424 12.859798 5.162563 -13.652611 0.713274 8.966388 6.919766 -10.468688 -7.640317 --2.810138 -10.174820 14.846032 11.062367 -0.079213 3.797397 4.634304 -1.047189 1.628163 5.496543 -4.373456 8.960107 -7.984645 -1.915121 2.434707 1.773456 -8.801278 -7.976284 0.780818 -1.368840 -3.258114 -4.305445 -4.722991 11.068595 6.526039 1.736471 -4.735800 -0.632179 -11.811094 -7.483128 -4.829829 -1.062603 5.881718 2.250125 7.739301 -12.233290 5.827637 9.411593 0.586796 -10.266181 2.250012 -3.688211 0.647344 -1.623037 -2.415353 4.739492 8.649000 4.459397 2.111610 3.283132 -0.838007 -4.875097 4.804470 11.120082 4.214056 7.618335 10.400736 -4.249878 3.128983 -2.981667 1.964825 -8.535384 3.710922 1.110864 -3.698881 -3.273002 0.346137 -2.669539 -2.610831 3.361879 6.570461 -3.846571 -6.032524 -5.902488 -7.489894 -3.183572 -0.026788 5.857017 12.488565 -7.156152 12.013661 6.415184 7.661362 1.465667 6.919997 0.278028 7.970514 2.350045 -5.236389 1.532812 -9.843673 -5.935492 -1.338432 4.895901 -4.370760 -3.031031 3.569796 -10.852716 -12.252325 6.241630 -0.707597 -4.579585 -3.405825 1.671503 4.222520 4.249339 -1.818738 -7.368751 -4.141168 2.765756 -5.789881 -2.464468 -0.319685 1.110944 -1.588915 0.354199 -10.493082 3.091187 6.503548 -4.375993 -1.588394 9.008573 -2.057657 9.296853 0.029832 1.599111 0.259698 6.554807 7.598716 1.021552 -0.355820 -6.061592 -8.220569 0.561138 1.880298 0.985602 -5.453721 -2.127463 3.125926 4.307659 1.339497 5.483414 -1.171731 13.396409 2.612703 -4.904275 -8.313114 -10.304925 -7.664215 -4.489908 2.367127 -3.511457 -5.239089 2.161221 5.909584 2.053249 -0.572443 7.245953 -2.338683 5.232729 0.482353 -0.877277 0.738713 -2.395784 4.905574 -6.461561 -3.597509 5.885742 6.490716 5.254547 1.283555 -2.449443 3.716011 -5.081593 -6.245094 3.049852 1.269198 1.926482 10.280967 7.141394 15.053898 -4.247182 -1.822490 0.387873 -0.671576 -2.570751 2.020535 -7.786763 4.401233 0.478334 -0.241893 11.448499 0.461170 -5.069237 6.193348 0.272707 0.730978 -7.243546 5.616379 -4.365853 2.033024 -2.831324 0.408760 -7.032744 -3.285309 -7.034833 -2.893593 12.857907 -6.706516 -10.555609 2.985472 -0.587518 7.576737 -13.107069 11.002781 -4.479948 8.394083 -1.605925 -5.295653 1.193456 -0.775836 -1.466445 3.084249 3.506048 -3.540659 2.179820 3.814946 2.578766 2.042745 2.653896 4.377148 -0.730282 3.029150 -2.973499 2.988830 -1.275898 -1.102191 -3.459492 -1.632714 2.479586 5.423029 -1.612642 -0.076205 4.537731 0.207209 2.480041 6.454050 1.347283 -4.823853 -0.202911 -1.109591 10.039450 -7.571479 -4.931328 -3.584432 3.453465 1.656351 3.152076 -12.753422 -6.969279 -6.163923 -9.417720 -6.032389 3.043667 3.455845 3.252030 -1.742220 -9.064188 -6.244200 9.313670 0.882567 6.886335 6.004030 1.714957 10.130086 4.310670 2.103790 -5.106679 0.465030 2.106687 -2.283469 -0.080608 -6.216505 4.049478 -9.359811 7.008470 9.406463 -4.748252 4.881183 -2.833429 6.840996 -10.703912 11.631388 4.779323 -12.832067 0.511918 9.169177 7.119156 -8.240081 -7.189041 --2.110271 -5.233812 7.743684 5.462585 0.092408 2.194070 2.348194 -0.897134 1.644113 1.802669 -2.402693 4.751946 -4.809798 -0.396972 -0.327110 0.249035 -5.111406 -4.803707 0.409139 -0.589854 -1.778002 -3.396103 -1.391691 5.921109 3.295850 2.505733 -3.020522 -0.443199 -7.718250 -3.370562 -1.174829 -0.576496 3.413382 1.851909 3.505441 -7.278243 2.653793 5.021429 0.369764 -6.174734 1.900507 -3.034705 0.515750 -0.837867 -0.809596 2.377851 4.030292 2.723501 1.848794 1.020622 -0.544965 -2.221048 1.333894 5.573770 1.070462 3.837366 4.512098 -2.104227 1.079701 -1.672503 0.708270 -4.055767 2.548059 1.702945 -3.238273 -1.784439 0.770840 -1.663145 -2.736284 2.891130 2.867575 -1.379553 -3.382725 -2.574098 -4.066943 -1.139639 2.574500 3.686607 6.880096 -2.968082 6.364042 2.190739 4.068268 -0.181699 3.577288 -0.051688 4.449703 0.918646 -2.825331 -1.145498 -6.989013 -1.880293 -1.525139 2.676295 -1.781951 -0.661519 1.864469 -6.663238 -6.564799 2.035799 -0.560302 -2.549397 -2.470129 2.195300 2.963308 2.853876 -0.439954 -4.494398 -2.208605 2.314601 -3.458495 -1.146079 0.033494 -0.084287 -1.622353 -1.181348 -5.208160 1.293506 2.861280 -2.472117 -1.185263 5.217360 -1.837678 4.559679 0.548615 1.327724 0.348011 3.655755 3.477224 -0.192577 0.683490 -3.571939 -3.439070 0.546505 0.709591 2.178071 -4.151665 -1.369464 0.985012 1.747070 -0.256761 0.685162 -1.738762 6.020085 2.367973 -3.792427 -4.523958 -4.854521 -2.906613 -3.625813 0.290275 -1.987507 -2.380372 0.933018 3.374110 1.986301 0.301721 5.214015 -2.153150 3.013583 1.256741 -1.097948 0.991451 0.090539 2.780419 -3.755486 -2.676180 2.956627 2.612704 2.522221 -0.262243 -0.670529 1.017282 -3.254732 -3.647912 2.638377 1.712667 2.812583 5.543836 3.978572 6.673568 -3.946012 -0.740689 0.854130 -0.577023 -1.625854 0.807714 -4.577751 3.022698 0.513182 0.273948 6.493294 -0.014152 -2.968855 3.257700 0.751877 1.227907 -4.679730 2.645472 -2.815846 0.860556 -2.252694 -1.075087 -3.173691 -2.048042 -4.150767 -2.338443 6.951020 -3.004808 -6.971716 2.469410 -1.447995 4.836234 -8.442255 3.539022 -2.707224 4.303808 -0.730344 -1.668344 -0.087787 -1.019004 -1.112780 1.841926 1.755409 -2.006508 2.401439 3.214780 1.733351 1.343178 1.172139 2.583052 0.345933 1.760408 -1.659088 1.641145 -0.575051 -0.863225 -0.710539 -1.216460 1.212976 2.949088 -0.870231 1.755561 3.886448 0.751956 2.924875 3.918645 1.570941 -2.383463 -0.192552 -1.181167 5.160911 -3.491853 -3.143717 -1.712337 2.117308 0.435713 1.676968 -7.000725 -6.118243 -2.880788 -7.666666 -1.886011 -0.889231 1.739031 1.803178 -0.598467 -5.858829 -3.061166 3.543167 0.691667 7.750696 2.758485 0.399164 5.190367 3.159207 -0.956408 -1.991463 1.082367 1.570418 -1.840656 -0.345423 -4.227253 2.316576 -4.676489 4.153046 5.663581 -3.261465 2.641018 -2.012861 3.608680 -5.963561 7.052479 3.038932 -6.618766 0.972900 2.079545 4.423836 -2.695310 -4.032752 --1.627062 -7.657960 10.471636 8.130091 0.855438 3.161901 4.339450 -0.912563 1.286690 4.730243 -3.250885 6.844240 -6.014603 -0.552247 0.913205 1.602814 -5.855585 -6.349238 1.115100 -0.491751 -1.990800 -4.261557 -2.405943 8.031379 4.889255 0.818200 -3.640403 -2.004314 -9.947123 -4.597187 -3.025872 -0.701470 4.587027 1.726403 5.285059 -8.277700 3.745367 6.857310 0.872104 -8.195102 2.021853 -2.776854 0.635801 0.428159 -1.021893 3.988658 6.205132 4.300420 2.210902 3.163511 1.009150 -3.453039 3.381551 7.211701 2.665188 5.635074 5.807876 -2.945412 2.545729 -2.328921 1.280886 -5.943957 3.120181 1.698336 -2.616885 -2.069441 -0.305971 -1.179272 -3.112348 2.943165 4.950034 -1.970227 -5.362967 -3.087215 -3.884558 -1.787903 0.156506 4.317280 9.494605 -3.802094 9.071856 4.259146 5.795266 -0.894349 4.768839 -0.180923 5.101103 1.436741 -3.876121 0.214238 -8.608785 -3.573013 -1.658210 2.846109 -3.196446 -2.420351 2.075566 -6.093255 -8.866420 4.053006 -0.829040 -3.564308 -1.815886 2.783611 3.659752 3.775465 -1.414711 -6.158175 -3.232498 2.453347 -4.094679 -2.078977 -0.047577 -0.498442 -1.654771 -0.964297 -6.751547 1.500785 4.547296 -3.657336 -1.232778 6.620592 -1.758772 6.933754 0.452570 1.121633 0.747746 4.676132 5.976964 0.542612 0.669121 -5.357157 -6.364496 2.124132 1.219733 1.103031 -4.258162 -1.522981 1.719554 3.179278 0.928891 3.867773 -0.263470 8.894652 3.965748 -4.110633 -6.454345 -6.887570 -3.568582 -2.807565 1.676910 -2.416874 -2.844192 -0.132370 4.430108 1.224591 0.113867 5.310701 -1.752291 3.967909 0.960211 -0.624723 0.740096 -0.457908 3.503076 -4.600681 -3.115965 4.386392 5.197984 3.519929 0.408272 -1.089069 2.157804 -3.489634 -4.152651 2.264014 1.845834 2.566770 7.731071 4.935735 10.245245 -2.323611 -1.829666 0.727551 -0.408898 -1.963234 1.183502 -6.419541 4.044132 0.036943 -0.514813 8.466880 -0.185563 -3.331239 5.648875 0.407216 1.047079 -5.965773 3.982746 -3.581152 1.388080 -2.780092 -0.226874 -4.513219 -2.369117 -4.850871 -1.770485 9.391814 -2.642602 -8.015528 1.805197 -3.045787 4.512829 -9.920004 7.809058 -3.293386 3.848543 -1.227122 -3.428473 0.221593 0.077538 -0.955516 2.289267 2.552102 -2.341399 2.860243 3.929991 1.735409 0.554282 2.088087 3.283640 0.271411 1.990470 -1.941547 2.381116 -0.830992 0.289844 -1.700024 -1.313173 1.811212 3.897602 -1.870637 1.594681 3.800578 -0.340565 2.436457 4.608838 1.347584 -3.380970 0.018342 -1.344996 7.237670 -5.352541 -3.797846 -2.729329 1.820906 0.637483 2.051094 -9.235985 -5.696632 -3.500613 -8.278937 -3.306362 0.824877 2.829923 2.500435 -1.205459 -7.330747 -4.613365 5.569304 0.800038 6.118517 4.508698 0.419349 7.306483 3.430459 0.564513 -2.415073 -0.256211 1.457348 -2.102410 -0.606246 -3.956006 2.439134 -7.019926 5.913456 6.757549 -3.749398 3.473831 -2.709300 5.883738 -8.052374 8.897421 3.864018 -8.388252 0.807494 4.211251 5.727112 -5.744486 -5.206305 --5.788908 -17.086643 28.798623 21.275366 1.626034 5.747436 10.191331 -4.650636 7.172691 11.441268 -7.721563 15.217175 -17.070497 0.106562 1.695272 6.880246 -17.596085 -17.004455 0.585414 -4.068634 -7.222286 -10.684670 -1.957729 15.306910 14.164591 5.287382 -11.265468 -2.803434 -23.526464 -19.683833 -4.778058 -3.400962 12.086825 4.527648 10.322027 -26.299909 13.028530 17.590371 -0.226709 -19.811063 7.388945 -8.940013 0.991658 -2.296303 -0.121877 9.930119 14.395583 8.916196 8.642432 7.148475 1.787915 -7.553089 5.649390 19.775215 1.115400 13.502657 15.697028 -7.707936 1.653685 -4.071072 3.113924 -13.619298 8.775484 6.264539 -8.839526 -8.340285 1.934271 -6.293291 -10.283679 10.443148 9.466334 -6.319862 -12.894933 -9.361181 -11.404176 -4.376937 3.333341 11.515232 25.496582 -10.990217 22.069507 8.373623 12.410981 -0.869639 10.356886 -0.606624 14.920571 3.647781 -9.646409 -3.804692 -18.877506 -10.367046 -4.105397 13.921090 -5.617394 -2.145519 7.258235 -17.899444 -22.856561 7.580199 -0.326964 -7.894091 -12.543980 7.126390 9.782606 9.717342 -1.529400 -15.983442 -8.389274 3.979485 -10.452195 -4.666301 -1.264727 -2.436192 -7.952624 -0.599396 -20.921852 3.289494 7.873317 -9.847425 -6.948190 15.884322 -5.755538 14.850249 1.515826 5.957680 0.067767 12.779251 11.278371 4.069241 4.769673 -9.378264 -17.417450 -0.038907 5.436993 6.878550 -11.835151 -3.551311 0.623222 5.823730 -3.646402 5.174140 -5.373876 24.531632 13.175672 -12.779945 -17.158505 -14.816144 -8.493123 -12.075177 4.809321 -9.260934 -6.555887 0.080404 12.072835 3.343599 2.673274 21.411476 -9.761543 11.182135 2.686733 -2.989102 5.476291 -1.612514 10.930950 -12.858115 -8.412935 10.362896 11.593216 7.089219 -0.270839 -2.815744 5.428149 -13.715044 -13.311913 8.955486 2.398733 4.744484 16.700648 12.377392 30.161734 -12.699140 -1.259574 5.192445 -1.506095 -5.141675 5.004449 -17.039105 10.420665 0.903040 2.280899 21.795042 1.213999 -12.112660 11.154538 0.661700 2.754200 -15.240263 9.917031 -9.765314 4.415925 -6.876641 -2.778381 -10.559883 -7.181863 -10.558952 -3.602646 23.871078 -6.136825 -24.450830 9.235183 -5.777868 14.412329 -29.958536 19.021074 -10.013546 11.313504 -6.174146 -6.160887 1.132153 -0.272816 -4.440325 6.275375 6.445644 -4.576928 8.448570 13.324121 6.078847 4.040818 3.141172 10.281431 0.683605 7.848874 -4.253337 8.165730 -2.427567 -2.418647 -5.062603 -3.674986 2.778408 7.935584 -3.787432 4.703407 11.973078 -0.085067 9.548836 12.339028 8.207811 -9.238339 4.023700 -2.527692 19.501367 -11.592671 -9.944685 -3.388075 6.462348 -0.375024 8.958204 -23.982019 -19.019347 -6.221751 -26.918662 -8.655046 3.295585 8.408680 3.905312 -2.432598 -18.880898 -10.689857 15.367281 2.735922 23.392677 10.045726 1.956697 16.772963 10.604617 -1.818035 -8.025068 -0.395753 4.678819 -4.313312 -3.553040 -11.761254 8.517290 -17.138886 12.172776 18.522040 -11.177849 7.681196 -8.185726 15.320600 -20.305616 24.210258 8.731922 -19.471750 6.663037 11.317787 18.782203 -11.286930 -13.229714 --1.806626 -3.291565 6.086938 3.714658 -1.512904 1.009725 1.780043 -0.886967 0.589219 -1.919164 -1.185644 3.037359 -3.135727 -0.421493 -2.681184 -0.877111 -4.400599 -2.945801 -0.953304 -1.536882 -0.750293 -1.109603 -0.555290 4.140618 2.607089 1.774404 -2.317763 -1.267341 -6.172888 -0.195078 0.836252 -0.106032 2.473093 -0.400050 1.448078 -8.300291 1.473577 4.295222 -0.489103 -4.251354 2.766158 -2.727320 0.444935 -2.482058 -2.967272 -0.070481 1.520028 1.191641 0.970044 -0.419364 -1.924279 0.774107 0.743793 6.890082 -0.123171 2.466131 3.737417 -0.435129 -0.393012 -1.193814 -0.071816 -1.764718 0.865054 -0.554635 -1.626723 -2.397118 -0.583378 -2.323542 -1.504685 1.435592 0.889443 -0.672642 -1.555199 -1.424827 -5.554951 -1.157914 2.463845 3.473327 3.981595 -3.902646 3.383518 -0.009208 0.870738 1.273937 1.819049 1.307042 1.314541 0.805147 0.177230 -0.662561 -5.046223 0.139500 -0.613712 0.885110 -2.107944 -4.543221 3.410837 -6.403007 -4.416514 1.198699 0.558949 -2.834682 -0.669227 -0.796753 0.448836 2.245884 -1.973838 -2.476849 -1.549640 2.381492 0.138559 -0.394723 1.153004 0.622078 -0.320253 -2.907158 -4.139806 2.824715 1.145722 -0.365521 -0.997540 3.479539 -1.815105 1.766353 0.351435 2.005102 -1.436382 4.369195 1.017173 -1.118594 -1.085791 -0.488753 -0.525282 -2.016668 0.539032 4.467702 -3.502137 -1.555191 -0.487988 1.020165 -0.265049 -1.026051 -1.155255 2.766481 0.097616 -2.957148 -2.007939 -3.022408 -3.224215 -4.198796 -1.465180 -0.360070 -2.410339 3.357543 2.164730 2.564532 0.658747 4.967864 -0.624611 1.444729 1.187417 -2.896994 1.338754 -0.852319 1.999267 -2.083521 -2.472941 1.836193 -0.440895 4.010766 -0.315065 1.346126 0.757596 -2.680778 -2.283762 1.117974 1.977944 0.961563 4.026598 3.936485 0.400263 -3.802951 -0.372428 0.707043 -2.504191 -0.515767 0.494660 -2.619902 0.482406 1.432606 -1.757940 4.389641 0.220905 -1.567141 2.598578 0.031788 1.116181 -2.842389 1.300132 -2.193529 -0.459028 -2.715171 -1.339971 -2.061330 -1.641322 -3.853307 -4.385720 4.736012 -4.863379 -4.449860 1.624853 2.142123 3.469637 -6.230290 1.987283 -1.890169 5.752623 0.780022 -0.039276 0.944770 -0.035836 -2.469064 0.698959 0.738547 -2.765778 1.135790 2.868399 1.831181 0.514636 -0.194464 2.913125 -1.143694 2.797577 -2.127439 1.302347 -0.877431 -3.352157 0.522301 -0.347520 -0.615474 1.032508 1.600327 2.104749 1.436778 3.019781 2.208866 4.104575 2.655953 -1.652035 -0.613465 -1.580202 3.441181 -1.913054 -2.075281 -0.597843 3.807081 1.168367 0.521451 -5.142086 -5.782614 -6.177441 -5.346971 1.124694 -1.920789 0.080016 0.581269 -0.828258 -5.093662 -2.732585 0.794821 -0.603549 5.517700 2.853681 0.530204 3.979255 2.275498 -1.907907 -0.551106 3.532972 2.765765 0.135556 -0.194229 -4.529416 2.471326 -3.611415 1.184865 5.296891 -1.708059 2.941585 0.751897 2.820269 -3.877970 5.836442 1.366177 -5.401188 1.445042 2.993740 1.718219 0.315651 -2.450623 --0.622987 -7.719794 17.040344 12.237818 -2.393983 2.352840 3.027582 -4.036050 3.625624 2.470324 -4.514670 7.565785 -7.436116 0.939734 0.516501 4.121086 -12.834464 -7.227126 -0.876227 -3.880332 -4.215568 -3.841834 -0.582688 7.494943 7.857681 5.634949 -5.820803 -1.047882 -8.755577 -7.942346 -0.500412 -2.063242 6.245818 4.235999 5.808254 -17.271847 7.856376 7.906335 -1.365069 -9.807743 4.304135 -4.520348 -0.130830 -3.551648 -2.791515 4.013384 5.947664 6.625783 4.621834 3.615005 -1.372590 -2.197050 4.324070 13.237424 0.614219 6.274678 8.447633 -4.555154 0.253083 -2.357656 1.952985 -5.559326 3.672457 2.087446 -2.719436 -6.946041 0.108791 -4.917063 -4.280631 5.599364 4.926005 -3.193814 -6.746575 -5.586772 -6.763105 -2.366511 -1.808172 8.768598 12.688826 -7.913546 9.553808 3.468014 5.000722 0.645440 4.781792 0.840184 8.109112 2.685193 -3.188882 -0.613596 -8.164922 -5.987184 0.692490 2.639948 -3.852362 -7.173608 4.184993 -11.745440 -11.192257 4.303446 2.479691 -5.056128 -3.602427 0.719638 4.258838 4.361576 -1.773726 -6.717730 -2.175694 1.920147 -4.061863 -2.057170 -1.352739 0.654172 -2.695174 -0.298854 -12.017316 4.095136 3.565905 -2.798550 -0.860464 8.265485 -1.529862 4.990504 -0.050882 3.381988 -1.612901 8.857872 4.012005 2.537156 0.741449 -1.923497 -4.237998 2.119483 3.922418 2.735228 -5.905246 -3.150698 -0.446750 3.547814 -3.017056 2.100863 -1.990856 11.726707 5.380773 -5.878205 -9.320204 -7.877254 -7.237518 -8.286472 1.779319 -4.814721 -5.243122 3.507593 6.437893 4.013757 2.826813 8.128929 -4.895144 4.779955 0.360569 -0.993969 4.031930 0.087852 5.819791 -6.605560 -3.612632 5.440688 3.446821 4.760381 0.343125 -1.121536 3.413520 -7.477558 -5.282007 5.411108 3.265845 1.992977 8.550929 7.760226 14.433050 -4.948890 -0.987876 3.572641 -2.131912 -3.068968 3.226375 -8.076558 4.547911 1.202833 1.148959 11.414599 0.602096 -4.867093 4.651521 0.313468 1.168940 -6.558359 3.469513 -4.140470 1.564771 -3.731234 0.638051 -6.137393 -3.108679 -6.387314 -4.276840 12.842886 -8.912926 -10.348984 6.687072 -3.160143 8.180719 -13.871179 10.899003 -5.626048 7.875844 -2.112574 -4.095779 0.829553 -3.516892 -5.264132 4.406762 3.283147 -1.786464 1.666707 6.776991 4.233584 1.766519 0.477430 6.462938 -1.528889 6.851422 -2.647729 5.282084 -1.981506 -1.366722 -2.506972 -1.381832 -0.960892 2.052640 0.468222 3.966806 4.031179 3.619582 5.171383 5.860628 5.591519 -5.503061 2.685779 -2.044146 8.178005 -6.456658 -5.640429 0.079805 4.984088 -0.023876 3.911916 -13.085149 -10.760632 -9.349932 -10.586035 -4.205894 0.394807 4.153225 0.521243 -2.072179 -8.834244 -6.434028 8.716303 0.394979 9.325370 6.354181 0.972363 8.901686 6.339445 -1.173037 -3.741353 0.503000 3.424530 -0.235488 -0.206106 -9.100342 6.849556 -8.297009 4.483150 12.357798 -6.114052 4.720676 -3.205522 8.783297 -9.948867 12.094318 3.817231 -11.438894 3.203906 8.224943 6.767562 -3.005747 -7.072358 -0.617852 -21.468340 81.220425 54.206006 -17.735799 4.418547 16.974189 -35.032460 34.737694 -0.621650 -14.416487 12.552250 -38.475366 13.164079 -18.315453 29.766240 -66.712039 -31.130553 -13.496799 -35.656814 -15.500567 -19.010837 26.089113 6.731758 40.260938 25.038380 -25.101690 -14.116155 -32.539987 -32.878067 26.906945 -16.493127 26.270916 15.016483 4.640875 -88.864018 46.004241 29.933088 -21.933385 -36.105922 32.287104 -26.970635 1.177445 -24.799319 -12.934256 10.155394 7.131503 30.352591 36.216703 16.417620 4.170643 5.543025 14.768153 73.258292 -30.367171 23.200047 18.980647 -12.584378 -12.779295 3.663394 6.146814 -1.902459 15.108902 13.347044 -6.271644 -46.290906 -7.068509 -32.563417 -32.431458 34.411545 -2.601174 -7.325401 -34.850208 -14.115081 -37.084310 -10.536054 -38.538638 46.317643 56.418310 -42.309950 31.297818 2.157552 5.948008 -1.118193 7.256366 10.167953 28.703637 10.576554 -2.665466 -10.395823 -25.304235 -12.515145 11.344183 -5.555523 -14.107766 -61.695581 29.148005 -51.999344 -46.123534 9.323315 26.381609 -22.215940 -14.731901 -0.409542 9.440509 20.230522 -19.927696 -34.100458 -0.782803 7.269356 2.376175 -3.633149 -1.015552 -7.089482 -13.679089 -16.265568 -56.703983 18.052424 -5.440894 -10.538085 -6.721106 36.087583 -8.806555 -1.423451 4.109414 25.225371 -21.647174 51.451821 -5.035987 25.558650 2.577173 15.296537 -18.219005 6.637378 29.885198 29.108629 -19.735958 -5.141501 -24.241681 8.974868 -35.725460 -6.527313 -7.005937 30.922876 29.260542 -33.882976 -34.857134 -13.857761 -24.448602 -59.526500 7.725655 -26.114164 -19.022012 21.618054 31.749135 31.856620 34.401247 50.596370 -31.101512 11.592598 -3.436782 -13.554717 36.611530 6.012600 32.773316 -24.703514 -21.205612 15.529452 1.222764 21.019758 -1.100741 4.352896 8.001317 -47.399579 -7.891045 19.826832 22.319266 -5.213229 30.152600 37.947853 32.172090 -31.497736 5.991737 35.399116 -16.504906 -7.103582 14.947892 -41.814602 21.418160 12.545459 1.394524 36.040770 2.557730 -16.446786 15.899153 -11.574116 11.860748 -29.257867 -1.703179 -20.939027 -4.255754 -28.426155 7.925505 -20.309833 -19.944841 -19.441665 -25.330358 51.011906 -43.388889 -29.413301 46.350378 -9.696222 28.583540 -54.434999 55.636818 -30.252402 36.201939 -9.632887 -4.456316 0.659169 -6.730859 -36.672730 10.558322 11.550417 -6.125703 14.366252 48.909141 28.475020 5.951246 -6.593349 46.994365 -14.764145 46.036525 -14.825467 36.675428 -13.515819 -20.187025 5.877925 -7.639341 -17.938110 -11.852444 17.844775 47.149472 19.182433 28.637758 36.918494 22.135270 50.487231 -23.138445 26.909246 -10.110187 27.493577 -19.183664 -19.753398 18.921101 26.355947 -11.288384 21.188457 -58.955624 -68.898720 -51.539961 -45.043700 1.425164 -19.035114 14.786879 -11.416543 -4.288438 -43.555062 -31.764731 27.243887 -10.955464 32.562520 26.335940 4.962297 32.351853 43.819333 -24.357916 -5.562211 7.643867 24.577232 9.751354 -6.216378 -47.764602 43.030732 -38.056105 3.665112 60.905427 -29.639972 15.850637 -7.440826 41.651349 -39.755914 56.322637 11.917752 -30.534694 42.011335 40.418506 35.726201 19.843808 -25.627252 --11.093848 -30.791160 39.521140 29.673555 -2.769025 16.668450 12.069345 -3.113279 -12.327767 16.433414 -10.718323 30.677889 -15.945056 -8.180070 -3.902520 -2.441507 -18.712737 -15.881379 -0.487766 -7.126120 -7.874929 -6.648864 -23.977834 43.781335 17.096129 -2.512341 -11.407011 -6.706643 -37.736204 -17.105268 -25.492502 4.839317 15.188038 -0.244314 24.768874 -29.529221 10.120364 33.668659 4.273108 -23.221965 7.241821 -6.808282 -1.970855 9.405635 -22.483817 10.553463 20.692640 -1.543455 0.779532 8.147810 8.523983 -8.241315 25.991029 35.916525 23.875532 26.178561 24.188364 -12.831229 18.631889 -9.159755 1.923871 -24.311424 6.929528 -8.646098 -0.057107 -6.633016 -5.040937 3.009405 4.039627 3.521967 15.630356 -18.754596 -11.579943 -16.210570 -27.887731 -13.717027 -1.737565 11.249294 26.637009 -16.674806 33.932500 18.431753 13.947381 1.109602 25.257664 0.520078 20.160394 5.522458 -6.013193 15.934941 -13.137360 -3.165570 -1.576453 17.452146 -25.244953 -18.309920 13.508510 -39.254401 -36.652428 24.228380 -2.936511 -23.571057 5.305377 -0.844616 1.922326 4.506469 -12.564959 -19.999074 -13.027737 17.460361 -9.177295 -8.547756 -1.773577 2.849002 8.071845 6.405482 -21.046145 18.283707 22.435793 -5.322248 -5.434701 29.788215 10.899967 28.303009 0.741073 6.159270 -0.361002 16.682736 17.956323 0.816815 -23.644456 -11.704303 -23.048859 1.859127 1.500736 -20.951160 -20.045644 -14.178069 13.134581 16.349323 14.265443 31.179790 0.261356 40.854693 8.939666 -5.652723 -19.059603 -30.397284 -26.035064 -10.300844 -3.191104 -1.204306 -28.888042 5.353148 13.452302 4.426504 -6.474903 0.688108 16.099692 7.469925 4.413714 -9.625679 -1.105231 -22.241332 9.927104 -17.407241 -12.328866 18.637299 17.825815 28.507154 3.435246 3.088463 6.379842 -0.842210 -11.644462 6.003863 9.382941 10.561685 37.486205 27.951060 47.666104 -0.430309 -8.322329 -6.569390 -10.846253 -4.604558 0.124629 -17.976205 3.753185 5.892188 -16.164484 38.066504 -1.501308 -0.933016 23.959525 -1.543146 5.219781 -25.855426 21.222622 -11.781015 7.769267 -8.650331 -7.806836 -19.465338 -5.003426 -25.382701 -21.809405 36.126496 -41.320524 -19.154662 5.789192 2.834032 10.122317 -29.720538 31.360304 -9.154301 25.829269 -0.817183 -20.279746 2.887513 6.014064 -4.251443 17.489321 7.476074 -22.305895 5.718148 8.695174 3.664944 4.052434 3.385399 13.295771 -6.908187 7.845406 -15.084306 11.096478 0.675687 -4.131281 -12.598047 -2.921768 0.119078 16.798988 1.200035 -7.162389 4.886894 -2.678369 -11.780749 25.568051 0.300350 -9.374774 -5.330484 -8.771238 21.150915 -25.280453 -19.299266 -10.604822 11.130022 13.505276 -3.320022 -38.228467 -8.340581 -38.799885 -13.903749 -9.252555 6.923836 8.344653 15.318000 -10.266459 -26.624423 -25.060685 37.576600 -1.501250 1.078921 21.422337 5.957096 32.074887 8.928780 19.716954 -2.109890 -6.093721 8.057671 -1.752628 2.148467 -14.181163 10.385170 -26.097590 26.322499 22.083458 -9.163150 24.735382 13.211786 10.507520 -34.005165 27.494513 9.535734 -38.886586 -1.827107 31.064207 1.889029 -32.403779 -18.078681 --2.342432 -8.700430 13.002496 9.614418 0.045589 3.492261 4.955572 -1.153318 0.349869 5.012636 -3.290809 8.367139 -6.866372 -1.211977 -0.116048 1.747654 -7.199052 -6.723655 0.375780 -1.449538 -2.471155 -3.683319 -3.178856 9.871141 6.480148 1.384885 -4.551560 -2.475693 -11.242356 -7.163917 -4.582933 -0.252733 5.372590 0.904033 6.003088 -10.478422 4.562100 9.020629 0.500141 -8.835657 3.261379 -2.844759 0.249404 -0.022648 -2.906040 4.260819 6.965924 3.097271 2.290274 3.384976 0.666199 -2.943849 5.409530 9.583306 3.644906 6.804205 7.471746 -3.397399 3.138654 -2.660554 1.224241 -6.923411 2.925069 0.195492 -2.166499 -2.998939 -0.708389 -1.294290 -2.314731 3.078418 4.866513 -3.438584 -5.681669 -4.175962 -6.984708 -2.500854 0.129527 5.025152 10.154217 -5.415788 10.165509 4.659043 5.242692 -0.270200 5.327826 0.057114 5.385038 1.833042 -3.098013 0.898395 -7.801365 -3.620001 -1.484747 4.407972 -4.737289 -4.579118 3.837246 -9.543784 -10.804348 5.030245 -0.281118 -5.369323 -1.912586 1.668202 2.826596 3.997795 -2.124345 -6.678057 -3.805115 3.122277 -3.682657 -2.246253 0.124516 0.157098 -0.903410 0.173470 -8.221017 3.332889 5.178971 -3.398673 -1.782295 7.751482 -0.436316 8.035347 0.475776 2.256300 0.074497 5.546480 6.184601 1.188923 -1.127866 -4.118771 -6.765103 0.568046 1.844482 -0.048639 -5.507924 -2.303290 1.508627 3.908947 1.440019 5.172005 -0.745366 11.121613 4.030792 -4.376386 -7.147769 -8.130080 -5.778065 -3.882815 1.117234 -2.196197 -4.718175 1.387728 4.745730 0.885952 -0.197664 5.618274 -0.850945 3.526831 1.391146 -1.865085 1.030004 -2.540522 3.999489 -5.364475 -3.883860 5.147731 5.413722 5.916847 0.120775 -0.061512 2.630745 -3.467894 -4.760887 2.403429 2.101144 2.116619 9.214493 6.822893 11.917326 -2.682329 -2.260527 0.487697 -1.781394 -2.020014 1.338417 -7.183850 3.807949 0.678606 -1.279816 10.348117 0.022450 -3.295109 7.247071 -0.158142 1.134884 -6.975870 4.992559 -4.347295 1.590064 -3.114381 -1.205934 -5.234426 -2.466228 -6.404574 -3.731639 11.143620 -6.313780 -8.502652 2.494466 -1.324780 4.986757 -11.548372 9.496442 -3.464363 5.627128 -0.922692 -4.008938 0.881690 0.342772 -1.768374 2.411432 2.625732 -3.966815 2.770382 4.629708 1.972797 0.690668 1.585228 4.348827 -0.646579 3.336385 -2.984400 3.079172 -1.068201 -1.128120 -2.539257 -0.977039 1.086842 4.118409 -1.052426 1.052419 3.266258 0.200675 1.581091 6.080725 2.395489 -3.775416 0.171984 -1.626652 8.179818 -6.466576 -4.815341 -2.641227 3.200447 1.487130 2.506970 -11.297596 -6.485178 -6.319727 -9.089767 -3.368755 0.958597 3.403844 2.518525 -2.304019 -8.482759 -6.439872 7.902316 0.669090 5.107507 5.825390 0.911544 8.786579 3.805459 1.527310 -2.090785 -0.348061 2.534578 -1.091284 -0.908682 -4.747334 3.200783 -8.202454 6.268839 8.249488 -4.248301 5.264008 -1.833308 5.909573 -9.849477 10.337256 3.644052 -10.555620 1.217442 7.030474 5.326192 -7.155459 -5.901427 --5.948377 -15.688149 21.024530 15.537619 0.371007 7.427239 6.581602 -1.413467 -0.615179 9.809875 -6.004822 14.987056 -11.199076 -4.056986 0.834952 0.548679 -10.678752 -10.807518 0.894316 -2.062886 -4.827359 -6.313165 -9.131408 19.832105 9.511871 2.393765 -7.055534 -1.495130 -20.112396 -12.869608 -10.643092 0.539160 8.456055 2.398761 12.275388 -14.271770 6.699527 16.092549 2.072593 -14.500807 3.731222 -4.943147 0.184305 1.402321 -4.865570 7.137935 12.348837 2.287171 2.525197 4.062330 1.261128 -6.737508 9.847300 14.916289 8.700574 12.538440 13.845584 -6.567757 7.335975 -4.233961 1.688684 -13.302041 5.254437 -0.041652 -4.808282 -3.478710 0.393733 -0.781530 -1.853451 4.815046 8.314355 -8.285589 -7.956830 -9.032822 -12.188323 -5.019819 0.899178 7.465495 16.324381 -8.599601 18.309210 9.425686 10.027613 0.379801 11.808047 -0.783949 11.982567 2.777998 -6.695791 2.343038 -12.467633 -5.751577 -3.099251 10.245527 -8.738807 -1.372186 6.272243 -18.907818 -19.430281 9.735990 -2.022258 -9.004206 -3.868530 3.464084 4.869313 4.778771 -2.210196 -11.401974 -6.949444 7.143433 -8.522306 -4.034592 -1.238138 0.599526 -0.525386 3.140622 -12.963714 5.894725 10.331504 -5.684129 -4.338806 14.415432 0.853176 15.017076 0.777246 3.344573 1.540964 7.703616 10.931935 1.142215 -3.545364 -8.284355 -13.088990 1.493032 1.731112 -4.746171 -10.285322 -3.675606 5.536171 6.712347 4.083713 10.713818 -3.464195 21.330571 4.447206 -6.712726 -11.566718 -15.170171 -11.419338 -5.769496 1.013341 -3.253376 -10.356620 1.642312 7.803006 2.403104 -2.700491 7.287632 -0.225291 6.258733 2.953707 -2.824181 0.136807 -6.208189 6.275267 -10.171688 -6.381947 8.845301 10.316759 9.432377 0.616701 -1.165407 3.894804 -4.483289 -8.892685 5.310496 2.246694 5.391303 17.346363 12.165928 24.412761 -6.049116 -3.328361 -1.238564 -2.624166 -3.723531 1.296350 -11.297744 5.832409 1.462820 -1.527294 18.919518 -0.022606 -4.842532 10.657858 0.464212 2.260980 -12.668528 10.433802 -7.362075 3.264752 -3.660412 -3.686008 -9.680985 -4.432531 -11.654487 -6.481815 19.119548 -12.923505 -14.935171 4.682962 -0.929596 8.827777 -19.060995 14.144714 -5.778782 10.999764 -1.835047 -8.156201 0.529338 1.090842 -1.254758 5.458830 4.498299 -8.526272 5.056047 6.030297 2.492813 3.405422 3.352004 5.915815 -1.299156 3.551634 -5.662904 4.598630 -0.404804 -1.643259 -6.128017 -2.364659 3.007190 9.194683 -2.986789 -1.608497 6.891725 -1.601935 -0.235070 11.154616 1.183240 -5.869807 -1.013517 -2.821239 13.445916 -11.991221 -9.113656 -5.542787 4.092181 4.110767 2.777326 -19.715153 -8.601208 -10.357707 -13.463666 -7.423878 2.516409 5.521104 6.724548 -3.884651 -14.289667 -10.985620 15.310919 1.790872 8.290154 8.640639 2.639215 15.503798 5.853404 5.833572 -4.525774 -1.604285 3.013164 -3.347903 -1.028980 -7.571745 5.073212 -13.053721 12.774676 12.489993 -6.298253 9.845027 -0.864839 6.194161 -17.618908 16.168924 6.698566 -19.231090 0.055933 12.136450 7.445302 -15.426240 -10.603484 --0.996575 -3.892902 7.578437 5.138082 -0.651667 0.943130 3.041625 -1.284837 2.387752 0.251122 -1.992626 2.890830 -4.615192 0.522373 -0.930555 1.159473 -5.880276 -4.417180 -0.132855 -1.497318 -1.145358 -2.536735 0.719489 3.169795 3.588659 1.340118 -2.569432 -1.891535 -5.955117 -1.330923 1.512192 -1.243995 3.177922 1.044174 1.358590 -9.662250 3.007978 3.560899 -0.903273 -5.216104 2.775275 -3.424071 0.335501 -2.479359 -1.184883 1.024200 2.795356 4.028560 2.237477 1.011997 -1.144320 -0.781544 0.339706 7.916457 -1.364883 2.763672 3.739698 -1.419119 -0.535064 -0.671313 0.765454 -2.360267 2.151471 1.639419 -2.185438 -2.881268 0.125505 -3.191241 -3.190838 2.738717 2.180671 0.051044 -3.214303 -1.104715 -4.051997 -0.923302 0.790700 4.543197 6.363464 -4.093632 4.936819 0.997302 2.746494 0.128204 1.718675 0.896659 3.069561 0.869158 -1.390718 -1.988669 -6.780679 -1.538962 -0.577687 0.251259 -0.967387 -4.384715 2.248322 -4.518395 -5.162232 1.072348 0.594480 -2.365787 -1.712456 1.026462 1.983192 3.175629 -1.296496 -3.774369 -2.015124 1.301807 -1.837119 -0.753624 0.661406 -0.092077 -1.670811 -3.243210 -5.455043 1.386022 1.285438 -1.966847 -0.829661 4.182095 -2.908987 2.494383 0.576072 1.640478 -0.950830 4.262907 1.895211 0.391792 2.038853 -2.184284 -2.898052 -0.045467 1.884261 5.492807 -2.730986 -0.515249 -0.625057 1.417190 -1.578038 -0.841083 -0.064728 4.388398 1.580376 -4.048162 -3.796771 -3.598191 -1.345721 -3.957371 0.522513 -2.454360 -1.252564 2.177752 3.298769 2.793306 1.709201 6.135440 -2.945652 3.310905 0.514868 -1.187574 1.929613 0.488150 2.800801 -2.918642 -2.462979 1.716839 1.203446 2.395269 -0.603631 -0.022859 0.968203 -4.420981 -3.005723 1.165050 2.066490 0.675312 4.093267 3.651816 3.799183 -4.834959 0.051506 2.081558 -1.292844 -1.241125 1.247127 -4.459064 2.600776 0.810392 -0.539561 4.722633 0.292013 -3.474986 2.516027 -0.155866 0.691716 -3.179969 0.868283 -2.314096 -0.499882 -2.685379 0.103843 -2.504657 -2.244168 -3.177296 -2.162008 5.946550 -3.060322 -5.662697 2.580616 -1.107160 3.851987 -8.058882 5.651370 -2.826465 3.716424 -0.775855 -1.006548 0.016299 -0.175869 -2.578395 1.318055 1.534469 -1.415615 2.095854 4.368572 2.412314 1.097280 0.512147 3.617105 -0.089708 2.679435 -1.564027 2.089682 -1.309067 -2.142014 0.055972 -0.946680 0.597276 1.369240 0.960566 3.785192 2.966281 2.279196 4.291808 3.614672 3.188689 -2.196771 0.742477 -1.276928 4.755616 -2.228950 -2.028091 -0.597572 2.238654 -0.363232 2.432230 -6.228805 -7.148098 -3.396642 -6.748447 -0.241713 -1.661397 1.338383 0.142488 -0.067024 -6.246229 -2.622855 0.708626 -0.381771 5.886852 3.110356 0.317917 4.113410 3.362970 -2.446332 -1.586552 2.207730 2.619653 -0.748345 -0.687119 -4.498085 2.730999 -4.771251 2.354895 5.999318 -2.800576 1.831904 -2.005614 4.639597 -4.548270 6.990438 2.435766 -5.387740 2.145401 3.214339 4.232723 0.095495 -3.231582 --3.746464 -27.663038 84.026284 54.730378 -17.630239 7.090754 17.779671 -30.010026 27.956234 -1.135974 -17.064205 21.504060 -39.546810 9.042145 -15.397301 22.711881 -68.505520 -34.793794 -10.863623 -31.426848 -18.171774 -19.032844 16.341425 19.341163 40.596842 28.320007 -26.845400 -11.533721 -40.993621 -33.908504 18.209089 -14.397170 28.244900 19.750591 13.910269 -89.529884 42.702142 33.431839 -17.328871 -39.732043 30.116913 -26.717332 -0.022010 -24.419933 -14.332219 12.922307 15.599053 29.491664 32.434025 13.942578 -0.691362 -1.240502 12.901214 71.508464 -19.913635 25.876684 27.107788 -17.461055 -6.868411 -1.104303 6.316283 -12.273205 16.104895 12.409029 -11.356515 -41.440657 -2.141626 -32.661003 -28.035166 33.730322 7.099294 -10.171671 -32.877975 -18.885942 -42.439799 -11.720203 -21.843131 45.864143 59.868737 -41.154377 38.357186 5.660771 13.667940 -0.852543 14.777190 8.692930 35.197351 10.981476 -7.148433 -8.005165 -33.475510 -15.662822 6.068684 6.179524 -14.761366 -49.752883 28.401178 -61.063068 -50.854224 12.873913 21.398993 -24.140187 -17.961712 2.899304 13.157712 20.337416 -17.525253 -35.298109 -5.761917 8.922664 -7.235638 -3.716295 -0.431323 -2.375914 -14.467867 -13.161864 -57.306269 19.713000 2.243287 -11.785769 -7.850560 40.005512 -9.800986 8.459541 3.784697 23.837130 -18.349386 49.105063 2.190215 19.086335 1.363528 5.985891 -20.443933 1.839726 25.880296 29.215300 -24.961441 -11.360295 -16.821475 12.017899 -30.072317 -4.080609 -9.756772 42.060557 27.174676 -35.263961 -39.776531 -21.848513 -27.932373 -56.468690 5.096750 -25.536777 -23.740384 21.906444 32.033318 30.363777 26.918542 50.215187 -25.944572 17.290042 -0.747834 -13.639697 31.598504 0.613252 32.561522 -28.671811 -20.685278 18.538005 3.204138 25.598449 -0.403577 0.919606 9.447647 -46.107400 -18.461175 22.231892 22.096630 1.546915 34.991036 40.546657 40.638045 -34.680803 2.355306 30.014086 -15.318339 -10.995075 16.097812 -40.804797 21.858962 11.600180 0.027081 43.535931 3.189199 -19.940609 18.758809 -6.736645 11.821546 -32.461670 3.548295 -20.912294 1.496043 -26.683402 4.078278 -24.705343 -19.078857 -25.244183 -28.990889 56.735399 -47.922410 -40.851514 44.173245 -8.533586 37.704163 -63.563267 50.070914 -29.758458 41.450146 -9.725581 -7.461542 1.062242 -9.496487 -33.250203 16.996043 11.892466 -10.218613 13.742273 44.688182 26.731209 9.846384 -4.134791 44.216289 -12.687365 41.983536 -14.747296 33.135798 -11.892348 -20.160538 1.088459 -7.104089 -14.496808 -2.750552 15.804320 38.153861 21.029063 27.106407 34.653614 27.487373 43.420100 -24.272158 18.929524 -10.521210 33.322169 -23.465700 -24.530880 13.112749 28.467026 -6.650032 19.106978 -62.802069 -69.002621 -51.869628 -53.097663 -5.153183 -15.405409 16.509682 -4.947799 -5.829809 -45.435370 -31.086027 31.349678 -6.343261 43.160400 28.665308 5.097360 37.646590 41.046137 -20.674316 -10.347917 8.715876 26.407482 5.744951 -3.603855 -51.323938 39.469933 -42.795084 11.603986 62.989547 -30.825880 19.719116 -8.887870 45.519965 -45.988550 59.565513 15.091580 -43.151189 34.811167 41.317766 34.198146 12.282999 -29.317975 --3.889710 -46.498511 157.085471 102.047660 -25.993482 15.796352 25.436492 -60.628935 53.961576 -0.840407 -29.090484 46.371352 -67.497969 21.151477 -44.132343 46.175462 -120.805764 -61.418640 -24.013718 -61.427511 -28.789674 -32.532677 30.134352 32.666213 75.547233 44.401765 -54.975197 -14.539450 -82.507426 -81.835653 27.182536 -25.769798 48.573618 -0.431703 20.026902 -160.745797 87.509487 71.995609 -33.083230 -78.277488 61.415116 -52.024870 -2.382271 -40.940550 -26.899926 24.406561 22.464774 46.385143 61.978365 30.041026 -3.771746 17.363444 28.205579 132.044358 -42.960543 49.307743 49.027472 -25.544899 -18.521940 -1.068095 8.008915 -15.792609 25.188006 15.206567 -18.096148 -85.660001 -6.709297 -45.844847 -47.947544 58.135260 4.283283 -23.951931 -57.628619 -27.833264 -90.770941 -18.570793 -20.798687 77.198548 104.567812 -69.697884 64.160931 0.833394 17.485012 8.256874 26.603794 17.363672 56.535702 22.610818 -9.108948 -22.046633 -56.565177 -14.623743 14.205045 10.105238 -32.995371 -109.263131 53.106526 -125.554350 -91.335870 20.906846 42.088510 -51.571998 -30.955122 -5.326558 23.820047 39.358926 -32.150392 -62.425211 -0.791742 23.117660 -4.317384 -11.478458 7.186102 -18.724503 -19.805239 -20.046790 -104.594767 41.993851 4.755497 -14.215525 -19.102916 73.411668 -11.777981 8.475969 4.113004 51.499135 -38.292899 83.129220 -4.400083 42.156605 -11.568554 21.407721 -31.780777 2.499994 44.643118 35.135322 -55.326977 -16.173943 -39.808649 21.715031 -54.157136 -5.218796 -31.147678 68.136997 49.731602 -61.971655 -64.731863 -36.998342 -53.060452 -100.812702 6.075235 -39.417816 -60.148454 33.397078 59.450500 44.992053 55.240413 88.906075 -44.336804 20.074128 2.597251 -27.205704 66.828370 -12.471298 57.850516 -51.290857 -41.945464 38.919040 5.152118 47.700717 -6.438282 12.054156 21.519746 -80.298614 -18.412401 39.966765 42.098316 2.885724 68.556237 75.807130 67.230496 -56.796958 0.976083 55.628008 -39.319893 -14.077067 22.239680 -73.259185 32.432161 30.003097 10.601839 90.397760 5.889662 -38.090920 38.605594 -7.863567 24.769789 -59.371391 8.916487 -42.482640 -2.019813 -43.495285 -1.072347 -42.229622 -31.272198 -56.310768 -64.944489 101.394126 -92.774643 -75.933658 81.142793 -14.107954 63.788234 -119.797272 81.187647 -56.745472 78.624864 -3.684478 0.025822 7.097598 -17.550806 -75.060384 30.580001 24.910152 -24.072842 35.062515 79.721349 51.266883 13.455928 -16.138138 79.708641 -29.831634 80.952049 -33.341570 61.365645 -27.581695 -40.901965 2.559107 -12.019078 -33.705275 -13.241866 32.834332 57.726957 28.370131 50.900522 59.324494 55.717878 87.520543 -42.649294 44.510261 -26.834017 50.994839 -40.811326 -46.709423 26.403587 55.055103 -4.901888 40.224213 -118.130458 -123.171186 -107.644784 -105.513276 7.703818 -32.805959 24.600435 -14.328844 -13.413635 -89.985370 -62.444050 70.550641 -9.671745 84.655085 58.557148 8.969604 62.723285 72.185598 -40.019330 -10.249819 9.244333 44.208044 15.341844 -14.789468 -88.060654 78.964138 -71.395094 13.994974 117.483271 -60.258150 38.317013 -14.252750 59.163161 -81.166873 108.114271 25.665564 -72.321322 63.116065 71.386096 69.120312 18.142274 -52.162624 -0.418813 -27.399541 90.583919 43.161214 -13.791307 5.795986 54.261848 -32.744575 40.147476 -5.336482 -21.237048 -0.401804 -59.655048 -5.364144 -21.831585 3.760151 -76.478093 -44.543331 -5.681435 -31.671307 -15.982621 -40.638306 36.054918 18.118635 48.754606 27.135627 -18.689659 -27.813510 -51.328951 -18.574634 45.820137 -13.349891 25.468675 31.924460 9.500025 -97.620271 42.958505 25.186252 -16.791675 -35.160074 36.627591 -16.593528 -4.024010 -14.417411 1.847449 9.630804 24.399575 75.575360 44.023411 17.583843 -0.043287 -32.943225 -3.793037 80.015410 -28.563100 26.572041 28.407401 -12.833451 -2.025850 20.035916 0.027055 -26.440132 9.450307 32.250724 -16.416695 -19.875840 24.267926 -49.907531 -44.742518 52.125764 12.696477 -6.701851 -34.905108 -14.078461 -38.048379 -2.832389 -20.585726 54.083248 75.705584 -42.677092 55.474956 4.290285 28.001563 -16.546148 -4.428441 4.272143 24.595935 2.502037 -18.635835 -27.064200 -85.401347 -20.490517 -8.651688 -12.298139 -0.954929 -62.358335 32.702477 -58.278013 -59.250890 2.543436 17.198177 -27.603644 -14.520154 31.202440 20.701066 14.460744 -17.136400 -48.230124 -16.988858 11.967423 -41.014695 20.204612 10.736000 5.597865 -27.542004 -30.793141 -56.922755 13.836147 -6.479101 -22.983002 -12.665474 47.705605 -27.927150 26.467278 22.437500 25.270668 -11.194162 44.560480 16.608432 5.202714 29.099044 -2.363563 -21.980528 -2.842007 29.695854 64.133978 -12.354228 -9.036079 -10.947856 16.327505 -42.289402 -12.200473 -10.958173 33.126193 14.103327 -63.348441 -47.178269 -11.839658 -18.831862 -65.173680 12.766179 -26.244160 -25.958524 8.828350 33.395569 44.026138 20.514401 63.390376 -44.769983 24.009897 -0.780190 -18.871352 9.767927 15.559356 43.023392 -31.721032 -22.943906 -2.260588 -2.637522 24.588557 -12.000812 -10.831409 1.593513 -68.478940 -28.484386 1.169893 19.325702 -6.382312 15.350042 51.956196 23.232725 -61.294065 -2.839401 44.872381 -6.853286 -25.158855 31.724738 -55.514006 39.414641 5.864539 1.772839 41.161741 7.873624 -21.120879 28.123590 -15.228184 8.793143 -38.723246 -16.945577 -24.046887 -6.981113 -36.377421 15.340752 -30.099059 -27.370451 -24.183649 -28.247431 54.316244 -20.149209 -50.102876 54.913888 -10.169820 43.840056 -67.907543 64.780263 -24.842804 29.509939 -6.226043 -7.008928 -5.351745 -3.052635 -20.206233 10.334294 -7.672086 -4.031768 41.323708 63.151111 29.127275 22.452194 1.653693 56.370208 -15.868291 30.791349 -18.940673 19.585632 -21.720064 -44.325204 9.345350 -9.044063 -6.930854 -0.372300 12.857096 62.895397 40.931485 22.632605 62.348530 24.276569 45.078824 -19.255424 9.750816 -0.625053 48.579973 -23.737458 -29.366761 17.283497 20.932093 -23.142663 26.349325 -73.209839 -93.786334 -30.976396 -87.834556 -11.255412 -50.182225 22.089011 -3.649664 0.680462 -61.341513 -25.350336 5.056141 -0.825381 48.700412 34.322845 0.780043 44.074473 60.361834 -38.644410 -0.724472 37.504216 48.337676 -12.526686 -13.356853 -60.128666 34.914049 -55.538518 22.730014 67.689586 -31.836613 15.449679 -38.402051 61.565200 -71.328895 64.408807 20.172225 -43.337509 37.863618 26.064053 49.967126 38.967129 -27.720713 -4.327492 -66.535203 259.258479 166.886333 -62.176244 18.600703 37.663860 -111.229629 97.554639 -1.145673 -47.733605 52.278239 -105.312515 36.404857 -56.655599 86.886892 -209.813944 -87.737137 -43.198684 -114.192214 -53.029788 -51.959648 58.932938 35.244832 121.874304 79.909060 -77.929519 -27.229676 -92.273739 -124.590690 62.739424 -44.785852 75.779090 26.382446 34.736394 -278.155300 146.338532 97.467620 -62.527738 -117.520815 94.361748 -73.085656 -4.058061 -64.930796 -49.384570 35.810589 26.766329 94.172835 103.536096 53.240402 1.806972 21.482866 55.203443 230.142426 -73.556773 74.456872 68.638267 -44.948553 -31.959257 9.640408 16.202695 -14.956647 38.298306 29.027489 -12.006649 -143.281723 -14.158931 -86.175295 -83.035092 101.961074 0.947995 -44.613997 -99.614886 -56.647271 -126.893186 -32.652166 -110.637885 142.852647 169.752514 -127.186589 94.188669 8.788871 19.925036 8.410908 33.156363 26.453353 99.890209 35.917075 -8.817640 -23.892881 -66.487196 -44.475710 38.553861 -16.038462 -52.533847 -201.009251 89.125949 -187.180424 -142.221392 39.851475 82.599504 -78.648269 -43.215361 -17.700879 34.554434 55.402528 -58.512842 -99.015404 -2.419631 31.785377 -0.224963 -10.932019 1.330666 -17.985940 -30.662960 -28.475287 -173.378936 67.743136 -1.726524 -20.020177 -20.758994 114.641068 -11.214276 -0.283799 10.056045 81.421639 -65.193009 151.908102 -11.472464 78.994999 -14.767973 54.127892 -46.469535 29.150634 83.341348 49.154599 -62.587468 -23.939196 -65.811855 35.695676 -101.912289 -3.190949 -39.525177 106.059423 87.397564 -92.474093 -109.743577 -52.412861 -90.835626 -174.544324 19.144642 -73.537548 -87.919920 67.271122 93.773128 94.354118 94.987871 126.388589 -87.858044 30.351617 -12.020131 -36.047524 105.468753 -0.679518 96.712702 -79.072624 -60.419587 50.971724 6.087970 73.687134 -2.820893 7.843214 31.241645 -134.074005 -24.108357 67.403175 74.181920 -7.084854 98.643314 125.505375 121.241868 -86.480308 4.742135 99.322963 -61.439237 -25.807386 42.840922 -121.519085 55.051052 44.545457 15.783000 129.578654 6.787541 -42.680115 52.409071 -26.827947 34.674613 -86.545767 -0.613637 -65.126283 -9.435026 -73.705610 18.457453 -72.885938 -49.619430 -75.717872 -95.496989 160.684733 -162.015887 -98.603370 150.015402 -38.837689 95.084691 -168.913875 162.150169 -88.564376 116.748088 -19.630665 -11.150343 1.525006 -32.128297 -117.924088 46.883552 34.457723 -23.622599 39.949360 142.142337 82.920442 19.534927 -24.194962 140.563049 -57.228334 139.760561 -52.220917 112.020257 -46.513345 -55.704257 3.644948 -18.289405 -61.425871 -34.328338 59.677868 115.447733 41.994474 85.362843 97.285534 77.024884 143.406171 -69.356456 84.039545 -37.525520 74.079773 -67.327487 -69.068480 57.566283 86.489320 -24.766718 59.220637 -187.922668 -196.047042 -189.664798 -135.334228 -2.450645 -52.834237 45.338147 -32.643310 -22.949083 -128.816534 -102.490704 116.747721 -24.023982 89.553510 89.733323 16.185347 103.550556 131.689444 -59.112392 -14.387716 13.067580 66.983132 30.190631 -19.986653 -145.397373 134.217179 -114.260896 15.108359 191.677614 -90.215027 59.031990 -17.860940 110.883493 -129.061946 164.335179 36.467550 -104.390585 108.934539 133.767467 100.774453 43.705668 -80.998949 --2.608001 -11.334150 19.783237 14.539671 0.015659 3.519618 6.001545 -2.949662 3.905060 6.640149 -6.108731 10.514546 -10.395455 -0.132469 1.771855 4.604404 -12.689905 -10.652789 0.593375 -2.484589 -4.289699 -6.106477 -1.731823 10.507711 9.682735 3.806000 -7.117021 -1.987201 -14.052215 -11.974950 -3.512676 -2.354944 7.915383 3.744211 7.314195 -17.434569 8.508655 10.822374 -0.326207 -13.154515 4.885423 -5.407949 0.142893 -2.405314 -1.192393 6.520808 9.897174 6.673586 5.043088 5.322977 -0.203135 -5.171446 4.866666 13.530345 1.991863 8.642384 11.389150 -5.505192 1.492531 -2.986385 2.471684 -9.269595 5.200057 3.518308 -4.717075 -5.959706 0.624174 -4.559498 -5.648861 6.407711 6.237466 -4.012603 -8.531730 -6.607858 -7.763379 -2.639309 0.497917 8.930837 16.574190 -8.387020 14.217558 5.617878 8.335628 -0.332965 6.322400 0.148586 9.249828 2.954646 -5.937762 -1.733585 -11.838157 -8.203900 -1.783228 6.967217 -4.031010 -2.753199 4.977307 -12.822398 -14.726409 5.578695 0.579849 -5.615189 -6.225392 3.781969 5.876101 6.528660 -1.063777 -9.528715 -4.584657 2.382038 -6.505713 -2.967737 -1.382364 -0.161942 -4.549451 0.243205 -14.178020 3.123707 5.721781 -5.965110 -2.895348 10.198397 -3.242476 9.561097 0.471326 3.591441 -0.063679 9.273873 7.620697 2.906746 3.135326 -5.616522 -10.277548 1.525089 4.076549 3.591736 -7.719775 -1.973958 1.121254 4.289376 -1.876851 3.778147 -2.873403 16.194643 7.412402 -7.987626 -11.926762 -10.649158 -7.166832 -7.735552 3.129249 -6.035263 -4.673447 2.100617 7.849538 2.885965 1.622557 12.923448 -6.266102 6.871796 1.358413 -1.480660 3.129048 -1.287931 6.965367 -8.569067 -4.971941 7.125736 7.338783 4.685516 0.523926 -1.983038 4.480920 -9.082589 -8.248413 6.427649 2.362854 2.785122 11.107779 8.562593 18.522468 -6.769264 -1.650833 3.109556 -1.146751 -3.935664 3.454705 -11.098827 6.880068 0.491692 2.237238 14.153042 1.060763 -7.226635 7.145100 0.178250 1.178063 -8.950185 6.104094 -5.996559 2.841682 -3.970150 -0.890185 -7.221403 -4.454399 -6.939885 -2.681407 15.967320 -5.751071 -14.855561 5.874107 -3.885628 9.576753 -18.991116 13.740449 -6.641254 8.532192 -3.103951 -4.893044 0.759271 -1.710323 -3.521521 4.120703 4.321667 -2.590760 4.259004 8.067166 4.129345 2.235293 2.272709 6.799142 -0.337490 5.817620 -2.481778 4.757514 -1.865516 -1.275893 -3.714637 -2.018674 1.427484 4.867341 -1.983567 3.389889 6.523714 0.989229 6.303782 7.909872 5.252919 -6.522949 2.584124 -1.973211 12.950929 -8.328520 -6.933840 -2.216463 4.609956 0.150479 5.281976 -16.032680 -12.260702 -7.016671 -15.772751 -6.372590 1.467747 5.840058 1.829922 -2.006252 -11.860730 -7.427324 9.704310 1.634772 12.850828 7.299558 1.331417 11.370683 6.595032 -0.476682 -5.489315 -0.517942 3.599907 -2.410705 -1.463549 -8.398744 5.696757 -11.380853 7.332881 13.082343 -7.061402 5.243321 -4.503052 9.843146 -13.197760 15.352637 5.871104 -14.068010 3.554199 8.770659 9.881772 -7.404893 -9.012829 -0.005014 -25.327999 85.674842 57.439351 -16.415413 5.894463 18.604925 -32.505255 32.696854 4.478795 -17.311408 15.563718 -40.708790 9.772697 -12.181162 28.641058 -69.801060 -34.174834 -11.762096 -32.274397 -17.749405 -21.667253 21.780404 13.509117 42.228174 29.222180 -27.568295 -12.453024 -33.801538 -38.842526 21.772207 -15.868124 28.365201 22.067019 10.272259 -90.391632 48.474808 32.504474 -18.944395 -37.143221 31.202033 -25.771123 0.807613 -24.125237 -13.078657 15.131884 13.709207 34.540688 36.211902 17.962495 3.118438 -2.629342 17.877865 72.252557 -23.332048 25.527225 24.185654 -15.363712 -8.602149 1.376825 6.350878 -9.241735 15.974970 14.918391 -8.757773 -42.185535 -3.044751 -33.533501 -31.772309 36.841760 1.768791 -10.302385 -36.886546 -18.341917 -36.775646 -9.938968 -35.610806 48.819864 59.986595 -43.707244 37.026109 6.227358 11.921860 -0.603849 8.285341 8.520898 31.806643 10.825277 -6.653213 -10.547739 -31.369738 -20.916943 8.723321 -3.447430 -15.518923 -55.966489 27.647805 -56.758283 -50.743792 11.339373 23.276702 -23.955742 -16.629663 2.694434 13.899559 19.217618 -15.015864 -35.641171 -2.728259 8.338347 -6.373581 -2.594759 -2.655326 -4.395971 -15.596795 -11.485127 -60.277051 19.997099 -1.866701 -12.323389 -6.134208 39.662849 -9.099224 5.263252 4.744732 23.894234 -18.677612 52.587741 1.381135 24.093361 4.943457 11.250654 -19.655948 8.169409 29.889033 25.506392 -21.635247 -8.384238 -19.711647 11.264902 -34.754969 -2.892043 -9.151110 38.165757 30.409570 -36.532426 -40.702939 -19.544585 -30.310812 -59.478856 9.637284 -26.354579 -20.545224 22.381311 33.470173 31.945827 31.021172 50.795398 -34.335907 13.516158 -3.059855 -12.466986 31.924846 6.622699 33.453408 -28.213609 -20.719266 19.004735 5.623215 21.923562 -1.410521 0.660114 10.346991 -47.967410 -12.884655 23.138669 19.559418 -1.216367 31.759956 40.410633 42.043076 -31.952769 3.986328 34.620783 -14.665619 -10.576666 17.793763 -43.526005 25.027269 10.756631 3.074382 41.231512 3.026372 -17.631303 18.429606 -10.109895 10.263570 -32.591517 1.065132 -20.931572 -0.932479 -27.486319 6.330404 -23.878452 -20.043546 -21.278700 -25.565944 55.650748 -41.993535 -35.456558 46.543071 -12.488539 32.380727 -57.766546 58.422568 -30.777189 36.260747 -9.635915 -9.877271 0.942444 -10.901149 -32.683798 11.910342 10.875341 -5.636383 14.620045 48.133981 28.437190 7.659939 -4.358649 45.418872 -12.595009 45.493362 -14.434953 33.257736 -13.738601 -17.354740 1.935825 -7.980092 -15.569919 -6.197989 12.889972 44.748744 22.360517 26.591588 37.537072 24.071625 47.618233 -24.748070 22.942607 -9.596726 32.299390 -23.524284 -23.914558 16.268870 25.699266 -10.771007 21.178549 -63.265675 -68.553268 -51.733395 -50.171290 -6.352193 -16.881760 18.316275 -8.919788 -5.630944 -44.657967 -32.617068 32.534866 -7.499301 34.898478 27.690022 3.560433 37.060079 44.276055 -21.927789 -9.500291 8.230003 24.283357 6.894315 -4.464650 -51.311586 44.127143 -40.563023 8.977410 63.140549 -33.472798 18.094921 -11.556655 44.276438 -45.741731 59.084957 13.540310 -37.079128 37.456903 39.704149 35.602030 13.212823 -29.094494 --5.798631 -12.001896 18.368767 12.936593 -0.632386 5.140159 6.544389 -1.597750 2.294980 6.045005 -4.241351 10.261095 -10.334407 -1.663622 -0.535983 2.012938 -11.015753 -9.930791 0.124117 -3.494376 -4.216250 -5.442851 -4.709325 13.042369 8.068076 1.951970 -6.181333 -1.596415 -16.025472 -10.717240 -4.490941 -1.214992 7.316083 -0.705303 7.207212 -19.870823 7.836775 12.932679 0.130769 -12.722938 4.617571 -6.094698 1.010297 -0.399575 -4.836407 4.398334 8.853298 3.725191 3.735037 2.645015 -0.239313 -3.488182 5.235264 18.242972 2.686754 9.713375 11.347848 -4.557344 1.764204 -2.471478 1.502215 -9.204228 4.544315 1.259828 -4.483249 -4.786872 0.431169 -3.539155 -4.160047 4.604429 5.691223 -5.721435 -6.091036 -5.617871 -11.281136 -4.709054 2.766323 7.337346 15.146958 -8.945294 14.859286 5.237010 7.159254 1.858196 8.483197 0.420463 9.933301 2.212981 -4.748499 -0.335208 -9.820577 -3.111891 -1.728137 8.385351 -5.777511 -5.871230 5.514095 -13.879061 -15.613232 6.689259 -1.061088 -6.623396 -5.351452 1.347647 4.834250 5.288164 -3.565658 -10.133914 -6.376138 4.730734 -5.867030 -3.168311 0.076946 -0.163321 -1.959948 -0.987882 -12.528039 4.238578 6.170716 -4.930953 -4.566711 11.780056 -1.829437 10.571113 1.112862 4.075880 -0.770480 8.356983 7.208020 1.175792 -2.025211 -5.781599 -10.137376 -1.542197 1.886126 2.197711 -8.232280 -3.549395 2.054810 4.686539 0.424470 4.946151 -2.824067 16.313428 5.218038 -6.529925 -8.614210 -10.666602 -7.436677 -8.193799 0.934534 -5.018067 -8.003947 3.238226 7.435818 2.875471 0.266633 10.913428 -2.903306 7.040305 1.796288 -3.278355 2.651687 -3.929550 6.111665 -8.160001 -5.793551 5.863673 6.447006 8.192058 -0.975400 -0.881179 2.513863 -6.542563 -7.662122 4.279127 2.474074 3.006532 12.584474 9.534486 20.335671 -8.790208 -1.267389 1.185754 -3.844729 -2.358642 1.883703 -10.139813 4.079124 2.332873 -2.101962 14.771252 0.158523 -6.453578 7.685756 0.041450 2.100357 -10.584224 7.492603 -6.471334 1.750995 -4.285053 -3.167773 -7.870436 -4.317894 -9.969826 -5.875051 15.658795 -11.572257 -14.186085 5.197227 -0.153036 8.722194 -18.395257 13.505568 -6.197375 10.490711 -2.729303 -4.891360 1.303347 1.393261 -2.590818 5.362687 3.978496 -6.103056 5.002788 7.450041 3.784260 3.348219 1.793984 7.119486 -0.971611 4.155136 -5.032108 5.615404 -1.715555 -4.076069 -3.773996 -2.373179 1.598571 6.324350 0.195300 0.812796 6.098972 0.136666 2.847162 10.268500 3.556365 -5.085387 0.976787 -3.289799 12.355952 -7.830719 -6.478899 -3.607202 5.631487 2.673940 4.159671 -16.785290 -10.894799 -9.723502 -14.737390 -4.460322 2.276209 4.041722 3.852280 -1.332075 -14.017377 -8.243253 11.969059 0.372695 12.007341 7.458703 2.399958 12.257455 6.191434 1.768781 -4.682649 1.049106 3.591266 -2.185975 -1.204396 -7.734364 5.439071 -11.919870 8.699168 11.571101 -5.584520 6.740036 -1.612950 6.343442 -13.647705 15.360317 5.418050 -14.407128 2.888894 10.718152 9.271854 -8.201389 -8.609119 --2.053274 -8.161328 15.220437 10.684371 -1.671520 2.995284 3.578427 -2.964613 2.268764 2.364588 -4.121341 7.637594 -7.769073 -0.159016 -1.297606 1.909030 -10.606012 -7.027476 -0.934712 -3.229652 -3.547995 -3.728043 -2.034413 9.036406 6.952312 4.084147 -5.210207 -0.942076 -10.809458 -6.660106 -1.950001 -1.169784 5.595611 2.235912 5.456841 -14.336189 6.227961 9.021187 -0.885516 -9.030489 4.141152 -4.742674 -0.227675 -2.647358 -3.333338 3.050564 5.824037 4.817407 3.340625 2.274053 -0.894415 -2.123086 4.241727 12.921791 1.385601 6.848957 8.845853 -3.475744 1.231240 -2.213740 1.403698 -5.856258 3.265254 1.126788 -3.172039 -5.308543 0.319012 -3.664479 -2.995900 4.474478 4.401725 -3.217134 -5.502357 -5.199320 -8.451978 -2.681193 0.652286 6.794631 11.702415 -7.265483 9.822315 3.847504 4.862903 1.081433 5.464112 0.800884 7.435035 2.229099 -3.011227 -0.066553 -8.495393 -3.273940 -0.186406 3.961498 -4.448413 -6.682457 4.581063 -13.055697 -11.519384 4.262581 1.134253 -5.561419 -2.212077 1.042386 3.108071 3.562714 -2.310683 -6.837708 -2.635850 2.966306 -3.856629 -1.981762 -0.274658 0.704131 -1.342803 -0.530672 -10.640124 4.214852 4.119774 -2.984707 -1.370928 8.646946 -1.017161 6.352512 0.326519 3.128161 -1.123834 7.279443 4.208604 1.398133 -1.213966 -2.331210 -4.414596 0.154104 2.748964 1.922520 -6.593685 -2.716149 0.815991 3.481376 -1.019318 2.792898 -2.346280 11.143578 3.000125 -5.687828 -7.587999 -8.152035 -7.380166 -7.360467 0.757277 -3.489920 -6.604635 2.410337 5.893480 3.444682 1.441922 7.615347 -2.369555 4.023579 1.286723 -2.059615 2.892946 -2.197298 5.248684 -6.264031 -4.394461 5.169197 3.551597 5.605506 0.053301 -0.290521 2.491739 -6.186203 -4.827875 3.780113 2.768166 1.898725 9.568751 7.942136 12.831878 -5.249404 -0.491256 2.109046 -2.387789 -2.241498 2.111516 -7.621791 3.725085 1.683801 -0.081371 11.344190 0.658669 -4.367388 5.312204 0.070974 1.556442 -7.317036 4.214730 -4.248721 1.136719 -3.921036 0.187146 -5.643238 -3.115047 -6.984251 -5.106949 12.113259 -9.839857 -9.488146 5.230500 0.207203 7.516134 -13.065119 9.444365 -4.895787 9.192216 -1.020215 -3.816211 1.351580 -1.944895 -4.143636 3.996144 2.990135 -3.485540 2.527820 5.209472 3.596869 2.375571 0.806771 5.819268 -1.628333 5.171858 -3.668182 4.297924 -1.170942 -3.150704 -2.149701 -1.539231 -0.124834 3.123920 0.792019 2.471188 4.325664 2.700397 3.673406 6.546707 4.397213 -4.564170 1.254439 -1.989236 7.947669 -6.416264 -5.325184 -1.221166 4.601694 1.070867 3.450526 -12.758722 -9.664484 -8.890729 -10.073882 -3.058462 -0.232789 3.229257 1.826482 -1.825407 -9.407560 -6.613939 8.607500 -0.077253 8.758071 6.203313 1.646254 8.882479 5.556332 -0.117498 -2.947026 1.271669 3.848564 -0.778086 -0.283716 -7.957795 5.674134 -8.006719 5.348431 10.732115 -5.390095 5.307073 -1.780557 6.530056 -9.999697 11.731353 3.913304 -11.724720 2.650282 8.265002 6.473847 -3.987981 -6.635039 --3.986874 -11.080507 15.353555 11.320443 -0.183493 5.228508 5.507220 -1.660917 -0.524945 5.902325 -3.895524 10.465213 -7.921274 -2.209156 -0.664735 0.648988 -8.166407 -7.700961 0.242914 -2.287779 -2.999332 -4.395759 -5.843055 13.706316 6.905715 0.376249 -5.030053 -2.204513 -14.498363 -7.830823 -6.597979 0.311744 6.266787 -0.142260 7.996075 -13.266575 5.231124 11.948857 0.935586 -10.626680 3.388957 -3.828682 0.269523 1.229348 -5.350126 4.576942 8.028456 2.380369 1.976613 3.424708 1.543701 -3.211995 6.992712 12.772508 5.609963 9.047814 9.207693 -4.227726 4.302327 -3.166410 1.176645 -8.568062 3.686633 -0.712662 -2.506258 -3.245437 -0.778292 -0.540170 -2.058951 2.941829 5.912051 -5.417343 -5.827572 -5.407568 -9.783695 -4.082036 1.394265 5.219360 11.903899 -6.466197 12.815927 6.004193 6.244643 0.454707 8.134848 0.112532 7.627945 2.079855 -3.732853 2.584493 -8.780441 -3.021003 -1.457021 5.716305 -6.894966 -6.318646 4.650182 -13.219368 -13.599504 7.099453 -0.853488 -7.217939 -1.779332 0.933239 3.061495 3.971039 -3.553313 -8.405894 -4.951141 5.328569 -4.547632 -2.981715 0.244229 0.234601 0.281513 0.143833 -9.414099 4.785095 7.390240 -3.493342 -2.414954 10.632301 0.290899 10.104504 0.537981 2.570479 -0.060318 6.649287 6.931461 0.749525 -4.155937 -5.358850 -8.482148 0.135691 1.069516 -2.256879 -6.990936 -3.762961 3.085204 5.212663 2.797418 7.971682 -0.999825 13.783647 4.266361 -4.167694 -7.749567 -10.470955 -7.989930 -4.957809 0.521993 -1.953237 -7.726851 1.814170 5.922667 1.554595 -0.936850 5.034985 1.242897 3.980409 1.601604 -2.972137 0.919070 -4.863122 4.743592 -6.645057 -4.993193 6.599646 6.605684 8.544857 0.511762 0.152793 2.718606 -3.055425 -5.552757 2.371568 3.015907 3.527421 12.470231 9.199296 15.947702 -3.011563 -2.571296 -0.486380 -2.785912 -1.855680 0.718195 -8.127506 3.294695 1.653311 -3.092099 13.668861 -0.299380 -3.234176 8.531816 0.022921 1.832372 -9.387714 6.655123 -5.278474 2.294866 -3.778999 -2.235225 -7.026683 -2.937001 -9.071115 -6.217363 13.697460 -10.140907 -10.096476 3.123344 -0.659015 6.101869 -13.803344 11.161049 -4.205676 8.667326 -0.981693 -5.415381 1.107735 1.013431 -2.040429 4.405720 3.235536 -6.226367 3.418278 4.916795 2.261869 1.474355 1.630073 5.223575 -1.381440 3.410248 -4.824711 4.131284 -0.973968 -1.629413 -3.280418 -1.562507 1.348958 5.710527 -0.576296 -0.207636 3.867262 -0.291206 0.151688 8.662927 1.745821 -4.199459 -0.482362 -2.350507 9.180700 -8.269645 -6.189539 -3.697752 4.273799 3.055670 1.644044 -14.189392 -6.660775 -10.085745 -9.865303 -3.518900 1.742718 3.363185 4.252957 -2.735336 -10.800588 -8.144383 11.571097 0.244917 5.847487 7.352871 1.785084 11.293675 4.606057 3.360183 -2.169485 -0.489726 2.702814 -1.740637 -0.652620 -5.801448 4.125389 -9.984358 8.806937 9.399858 -4.668190 7.297141 -0.034550 5.726941 -12.259267 12.060696 4.449112 -13.326574 0.797741 9.326635 5.352013 -9.784802 -7.144862 --4.249925 -14.658031 24.586269 17.957197 -1.286305 5.535998 8.033351 -3.821182 1.547001 7.803271 -4.715867 13.773486 -12.516425 -2.948231 0.059078 3.595116 -13.946067 -11.001063 -1.633160 -5.274902 -4.679544 -4.684128 -5.684937 16.578857 12.016629 1.856240 -8.171050 -2.843883 -18.499029 -14.611767 -7.685398 -0.796270 9.516521 -0.265134 9.808857 -20.924847 10.393230 17.451085 -0.946250 -14.277018 6.295696 -5.146572 -0.125665 -2.531371 -6.936753 6.151493 10.667829 3.116092 3.875560 5.213344 -0.016664 -3.063531 10.431969 19.551487 5.203297 12.419391 15.622486 -5.638156 4.073491 -4.000246 2.400066 -10.791267 4.899200 -1.727690 -3.122927 -7.742587 -1.001350 -3.153033 -3.474968 4.708580 7.760128 -7.474095 -8.583584 -8.659550 -16.361552 -5.761531 1.625962 8.123578 17.876085 -11.842854 17.104168 8.539355 7.039856 2.848456 9.611840 1.278485 10.268538 3.945830 -4.296571 3.504092 -11.729329 -6.528940 -0.587872 9.107912 -9.294810 -11.670452 8.470139 -20.550077 -19.743807 9.588432 1.427201 -9.978128 -5.026379 -1.214217 3.282214 5.875754 -4.976238 -11.160977 -6.053983 4.987860 -5.058795 -4.081567 0.318823 1.229990 -0.450930 1.653440 -16.663272 7.635782 8.689125 -4.935453 -3.717476 13.917725 -0.450936 12.778984 -0.040968 5.178430 -2.360026 9.579372 8.262243 3.937201 -4.031837 -4.372716 -10.327681 -4.155191 3.665190 -0.001707 -9.048386 -4.926463 1.639406 7.010416 2.037952 10.564202 -1.481859 20.078121 4.445366 -6.712435 -10.936328 -14.312852 -13.496510 -9.205043 2.368292 -3.881927 -10.710220 4.188233 8.825674 1.037615 0.284187 10.118796 -0.277374 5.074405 1.495099 -4.146700 3.334187 -7.900936 7.810961 -9.267062 -7.140234 9.124708 8.415960 11.983613 0.993568 0.195002 5.303401 -6.918737 -8.300369 2.171673 1.886456 0.328287 16.216237 13.283516 22.468992 -5.428483 -2.189895 1.204300 -4.130233 -2.049461 2.489563 -12.103619 4.391265 2.505558 -2.573265 19.157654 0.792689 -6.701052 11.554081 -1.036334 1.423821 -11.891854 9.085908 -7.568384 2.826130 -5.641395 -1.239288 -10.225830 -4.805708 -12.249519 -7.834182 19.938957 -14.909046 -14.161170 6.047116 3.245171 9.608382 -20.403777 18.360588 -6.467819 14.247193 -1.627577 -7.339461 3.591212 0.310365 -5.643271 4.053977 4.931863 -8.225880 3.838041 7.116437 4.359805 2.272790 1.119511 8.486326 -3.285978 7.851903 -7.297167 7.220613 -2.410210 -5.169575 -5.403390 -1.711525 1.146065 5.463349 0.264011 -1.126676 4.428219 1.662168 1.474515 11.228148 5.606041 -7.137422 2.069676 -1.432092 13.571000 -11.130400 -7.513377 -3.229529 7.384032 3.369785 6.317829 -20.589209 -10.713769 -13.167304 -14.305130 -6.006095 4.514835 5.272424 3.679137 -4.320985 -14.787268 -12.236805 16.380599 0.084120 6.646793 11.279629 3.626321 15.477053 7.089344 3.663140 -4.570430 0.054577 4.957008 -0.305739 -2.170379 -9.232598 7.785067 -13.779306 9.092964 15.194093 -7.259638 9.885984 -2.655781 9.424854 -16.888340 18.562093 5.259110 -19.004741 3.427252 17.276948 10.234781 -12.512817 -10.107766 --3.284591 -6.077713 10.335543 7.004090 -0.582052 2.532044 3.049872 -2.012122 0.964117 2.338347 -2.067616 5.852723 -5.500409 -0.690257 -1.906834 0.883999 -6.035065 -5.009787 -1.053746 -2.803712 -2.462408 -2.347136 -2.109659 6.866763 4.760821 -0.033267 -3.923868 -0.933678 -8.892888 -5.733402 -2.593662 -0.241116 3.950407 -2.532017 3.165853 -11.814195 4.289591 7.568341 -0.670943 -6.410845 3.366692 -3.495317 -0.090098 -0.780574 -4.173399 1.370057 3.891105 0.662218 1.928536 1.509353 0.518646 -0.289903 3.104462 11.230622 1.165655 5.510790 6.403830 -2.102612 0.284803 -1.091666 0.693156 -4.197609 2.403429 -0.351528 -1.977741 -3.355499 0.202743 -1.524525 -2.052417 2.349451 2.178726 -3.798837 -2.718549 -3.478150 -7.680042 -2.697031 3.544475 3.559108 7.642071 -5.349455 7.237994 2.189509 2.609550 1.562897 4.286557 0.485598 4.849150 1.365703 -1.598651 -0.110642 -4.386238 -0.491564 -0.405583 4.599548 -3.838771 -5.231188 4.233597 -9.248448 -8.575895 3.528974 0.466466 -4.534561 -2.835748 -0.653272 1.479575 2.708761 -2.572691 -5.243801 -3.306986 3.267618 -1.828161 -1.741541 0.299329 -0.367883 -0.250809 -0.664233 -7.163528 3.351069 3.541632 -2.019054 -2.722098 6.595060 -1.045698 4.982485 0.328947 2.923908 -1.162607 4.795036 2.407234 1.111834 -2.584760 -1.481709 -4.843337 -2.289094 1.220218 0.907102 -4.794478 -1.731934 0.519352 2.540564 0.040582 3.315135 -1.810771 8.243831 2.323855 -3.050133 -4.662881 -5.651711 -4.915316 -5.380568 -0.117535 -2.151004 -5.398830 2.649522 4.041993 1.824197 0.299248 6.196368 -0.271956 2.993022 1.258989 -3.110878 2.018140 -4.301069 3.581847 -4.489398 -3.933285 3.667700 2.927836 5.223165 -0.185830 0.773754 1.452710 -3.704884 -3.736267 1.391178 2.030631 1.284423 6.982967 6.019439 10.398192 -4.621321 -0.326119 0.646663 -2.633651 -0.712630 0.324024 -5.350204 1.011549 1.971543 -1.613295 8.925629 0.523981 -3.583433 4.269224 -0.424350 1.382336 -5.629525 3.955408 -3.447223 0.962366 -2.472088 -2.220219 -3.878855 -1.919662 -5.781042 -4.907999 8.607988 -8.406113 -7.347542 3.477266 1.693085 4.792395 -10.474026 7.677571 -3.201522 7.698266 -0.838320 -2.218695 0.994428 0.761456 -2.719420 3.487728 2.027295 -3.817666 2.272564 4.679473 2.134925 2.063065 -0.073355 4.308580 -1.398575 3.381949 -3.304954 3.562709 -0.871278 -3.592145 -1.701452 -1.164794 0.056169 2.378777 1.180234 0.397586 2.945833 0.808863 1.332773 6.231019 3.117467 -2.802670 1.180013 -1.487831 5.827127 -4.344635 -3.654170 -1.012495 4.065170 1.717478 2.113219 -9.156063 -6.214798 -7.485309 -7.913414 -0.688677 0.655923 1.675222 1.153684 -1.538311 -7.429531 -5.062384 7.188547 -0.516678 6.696887 4.810072 2.045603 6.555702 3.777835 0.509020 -1.332111 0.598172 2.368610 -0.518522 -0.975637 -4.480682 3.482328 -6.018443 4.152307 6.560050 -2.825380 4.541477 0.641262 2.125185 -7.140965 8.223249 2.484310 -7.827632 2.254389 6.519336 4.324617 -4.283240 -4.430394 -0.003481 -14.439667 28.873992 19.538230 -0.985794 3.693429 8.026962 -7.597671 5.722426 4.232494 -6.249384 14.949317 -12.650181 2.896245 -8.539946 6.513623 -19.821968 -13.822167 -1.358651 -7.118889 -9.356220 -5.695330 -2.538147 13.110955 12.822846 6.051434 -10.627693 -3.037474 -19.561941 -16.251908 -3.334164 -3.565086 8.217773 -1.726310 8.736566 -26.825512 12.456818 17.251780 -2.997147 -16.150479 8.078866 -9.422885 -0.654940 -4.662644 -6.023278 6.356930 10.722638 9.810361 7.001964 7.610919 2.549796 0.624690 11.661880 26.213687 1.426160 12.741097 13.266490 -5.049335 1.388537 -2.390582 2.910728 -8.223196 5.481595 -0.474448 -1.673149 -9.529322 -2.006785 -6.661056 -4.702213 9.095288 5.376961 -8.406662 -10.731991 -7.759352 -17.308766 -5.599761 -10.857678 12.615707 19.419015 -16.144397 17.292930 5.416211 7.131838 0.504282 8.245147 0.524208 13.350188 4.518343 -3.643132 0.428249 -11.312775 -4.932550 0.136096 1.574400 -9.853754 -22.098361 9.008828 -26.634060 -20.003229 8.415736 3.854597 -9.853718 -1.119154 0.227443 5.047434 4.780821 -7.991136 -11.849847 -3.656547 5.013752 -3.204435 -2.763412 1.900108 -1.385222 -0.747361 -0.504479 -19.998897 6.403864 7.517836 -4.542657 -2.123965 17.201441 1.821321 10.697211 -0.226535 4.368989 -0.753227 16.108976 6.112237 7.122202 -7.456463 1.683795 -10.207067 4.251143 6.129182 -2.004135 -11.435196 -2.402579 -0.227158 8.350882 -4.405298 6.543564 -5.668405 17.858981 7.783699 -10.493927 -16.586305 -13.169783 -13.041315 -13.325615 2.088229 -5.999008 -14.113365 3.432854 12.451653 7.625664 5.608090 10.443394 -3.211456 2.077975 3.495390 -4.331300 8.181866 -6.163299 9.628581 -11.220811 -8.546015 10.759011 6.199479 9.829361 -0.502720 -1.364983 5.575012 -10.963602 -5.304227 5.084539 7.384472 1.482869 17.850855 14.791271 18.663937 -7.914501 -1.517904 3.457150 -6.843285 -2.205708 3.862509 -13.146566 7.645059 3.666503 1.635818 18.638614 0.298536 -4.769752 12.407654 -0.761123 2.499690 -12.602516 3.776816 -7.383576 -1.200418 -5.514955 2.977923 -9.577474 -2.240516 -11.935447 -13.742988 23.191232 -21.218620 -13.709283 13.159599 -3.797010 10.579378 -21.408508 19.458245 -9.064727 13.409984 0.190795 -5.143773 2.247406 -1.937869 -8.580592 7.998217 5.804952 -5.925052 3.571276 12.741122 7.601993 4.541390 1.881250 13.306513 -4.145378 12.392300 -4.814125 9.820707 -2.768337 -5.819463 -3.495524 -3.265344 -3.575888 3.586508 4.135236 8.757978 3.916990 6.987111 6.884852 11.979892 11.549266 -10.267407 3.830140 -5.144447 10.968042 -13.088805 -10.024783 1.449120 7.199161 -0.473041 5.541567 -22.631758 -17.901539 -23.300419 -17.568579 -2.637694 -3.981389 6.513024 -1.052615 -3.816687 -16.229442 -13.661200 18.880133 -1.035445 7.329538 13.104368 2.210255 16.502295 9.846244 -0.498299 -0.735997 -1.929198 4.214532 2.717696 -0.347081 -12.582658 10.857467 -15.598921 9.407277 19.878125 -11.257346 8.692616 0.227344 11.592517 -18.550210 17.858591 4.803588 -18.063235 4.031464 18.216484 11.537775 -5.818839 -13.038310 -5.848759 -59.119914 213.876045 143.434784 -41.979904 13.458640 50.625130 -85.867521 79.603717 -0.776639 -35.652927 43.716929 -100.757188 33.319383 -52.838810 74.730867 -166.842661 -79.611592 -36.108295 -89.138010 -33.334929 -43.875598 64.717250 26.481253 110.464309 58.396845 -66.389733 -45.444011 -97.063708 -88.072423 60.315259 -36.561676 70.177966 21.002510 11.061097 -227.317071 116.670148 88.616612 -53.951180 -100.644871 92.036958 -68.913849 -0.952822 -59.983582 -34.857818 26.904520 21.142702 78.205636 89.583696 47.255059 2.007229 23.022466 45.832284 189.924715 -72.694655 62.272079 56.779359 -29.578872 -30.648695 5.511683 11.985158 -8.239750 34.345837 22.874619 -13.420141 -121.490790 -21.837863 -77.194535 -78.475631 80.689721 -2.648921 -21.823240 -89.212597 -33.374424 -102.321820 -23.053960 -83.154136 119.068149 140.404630 -109.199165 82.224750 -0.092971 8.611242 -1.529472 17.218079 27.637103 58.063594 28.363378 0.938067 -33.119953 -74.998183 -27.391518 27.343085 -15.799183 -43.957752 -172.289423 79.456157 -132.252143 -120.567905 23.377565 66.762354 -70.249902 -30.275381 -4.225230 17.353600 59.113924 -50.930445 -85.119995 -2.325583 25.066359 11.898271 -13.432359 0.585356 -18.441575 -32.824832 -45.577313 -144.903678 56.558199 -8.435815 -23.502982 -19.533055 91.932197 -21.431644 2.572290 10.257174 69.338101 -56.800451 127.516161 -8.200938 63.778565 10.017345 36.999129 -40.412462 15.461747 76.055437 75.399268 -59.806713 -9.749324 -64.637542 26.142887 -79.951643 -11.518226 -15.928451 81.600563 70.303728 -89.250288 -86.703697 -39.552519 -61.598834 -142.759979 16.368415 -60.796633 -53.068934 56.405182 79.179653 70.154372 83.543586 130.409123 -75.994927 25.443178 -0.097858 -38.440973 91.787290 10.657874 80.557964 -64.714232 -59.137313 41.603405 3.846201 58.792724 -10.792792 25.600351 24.760481 -117.776153 -17.241046 44.199477 56.777166 -17.516252 84.372774 103.033919 78.019161 -72.917712 5.909645 85.483562 -55.811094 -17.606054 35.434055 -109.172703 50.847401 35.216856 2.949024 105.037195 6.964525 -44.720810 54.653157 -28.351346 27.520040 -73.501483 3.301261 -58.355476 -17.403861 -71.014138 11.483034 -47.848359 -50.181698 -59.966848 -70.409267 134.808742 -111.625845 -78.551304 107.934034 -23.645283 65.286078 -149.483957 150.145241 -75.979089 86.350912 -12.874743 -9.049701 6.046356 -14.736946 -102.399211 22.974930 30.303345 -22.623395 42.793599 127.766766 71.276860 6.244996 -19.968424 118.452081 -40.930420 119.901405 -44.615017 91.992040 -39.453170 -55.615367 12.359315 -15.892454 -47.464994 -32.277509 44.822310 117.151234 39.242637 75.741642 89.851893 62.477501 133.208642 -56.982327 72.517261 -31.052543 72.735908 -49.678084 -53.478798 45.740637 69.805748 -18.575146 61.480737 -156.283209 -176.810839 -131.634140 -127.370598 15.228324 -53.601865 39.871974 -31.425068 -17.409178 -123.107773 -90.300758 63.792118 -25.206226 82.955832 77.527551 11.952078 83.903066 105.662254 -60.771563 -4.723370 19.878511 69.308930 28.956238 -23.443959 -114.205138 106.705910 -97.229830 7.279968 161.236457 -74.141832 49.352006 -27.724643 99.660363 -105.988485 148.842905 28.510351 -85.114748 103.539980 106.375297 88.970807 40.885521 -65.564512 --9.199450 -13.585592 22.912465 14.710021 0.788047 5.846622 6.192241 -4.189208 3.537046 7.096287 -5.303866 13.953495 -11.637435 -1.851672 -4.182526 2.094118 -12.202878 -12.517335 -1.158020 -5.721669 -5.701756 -6.335086 -5.144723 14.855389 10.065712 -2.704225 -9.444473 -0.665357 -21.394163 -15.351033 -7.338394 -1.170724 8.260541 -9.840345 7.430788 -25.237962 10.099000 16.543729 -0.888051 -15.464419 7.114429 -8.021396 0.375657 0.129000 -8.096279 3.800866 10.080544 0.365307 4.785574 4.123202 2.691139 -1.298642 5.161030 24.546467 2.382948 12.375040 13.814261 -5.343084 -0.109015 -1.866304 1.530356 -10.803763 5.874466 0.509721 -5.664296 -6.693971 1.875591 -1.884532 -5.324281 5.555789 4.418967 -9.760360 -5.270537 -7.502866 -16.560515 -5.895670 12.608073 6.709620 17.623684 -10.157075 16.816996 4.724804 7.868359 3.745846 9.923857 0.349935 11.953094 2.767946 -5.394093 -2.426756 -10.031116 -0.463178 -2.320423 12.420931 -7.188847 -6.927541 8.915109 -20.418207 -19.135318 7.804465 0.216417 -9.087013 -8.903036 -0.027985 5.474555 6.737371 -4.370498 -12.277114 -8.097789 7.764567 -5.953592 -3.802818 0.952869 -3.742620 -1.476380 -0.596384 -15.545147 6.223240 8.554075 -5.076467 -8.157237 15.021187 -4.139296 11.586347 0.971331 7.139081 -1.493993 9.569128 6.159418 2.632472 -5.858965 -5.250774 -14.203520 -4.360501 1.523826 0.311778 -11.090869 -2.391506 1.473215 5.149651 -0.548607 7.348688 -6.604204 19.082290 6.455840 -7.169441 -11.265875 -12.566084 -9.884531 -11.353616 -0.031977 -5.161822 -12.642546 4.435448 9.200170 4.238476 0.466767 15.658006 -1.404320 7.842856 3.053325 -7.106737 4.503509 -11.485179 8.342673 -10.653264 -8.371905 8.239022 8.318225 10.046144 -0.356448 0.436251 3.470498 -9.116226 -8.738728 4.051725 4.677360 5.372582 15.137996 12.552509 25.079926 -11.826461 -1.483798 1.528695 -4.795204 -2.291689 0.036601 -11.994948 2.056925 4.536557 -1.513232 20.727759 1.576418 -9.211285 8.767254 -0.009398 3.685783 -12.822466 9.360126 -7.790197 3.262495 -3.530647 -7.235546 -9.406434 -3.737537 -13.042200 -11.104481 19.125506 -16.434009 -19.805495 8.037046 1.620860 11.771656 -25.192586 15.649333 -7.717835 17.667415 -2.154986 -3.121115 0.807934 2.310297 -5.136203 9.336178 4.555862 -7.826852 6.949743 10.895051 4.757222 5.815884 -0.030874 9.047386 -2.696391 6.689137 -6.069563 7.156820 -2.246552 -7.490485 -3.902629 -2.779558 0.692080 6.663558 1.513696 -1.339038 7.695172 -0.537990 3.706012 14.640068 6.336294 -6.365264 3.006575 -3.682315 13.936534 -9.532107 -8.807227 -2.570272 8.565709 3.834840 4.028500 -20.573016 -13.454106 -15.804410 -20.755044 -1.422257 1.434565 3.073194 2.645093 -2.783931 -16.781956 -10.146280 17.314028 0.412505 19.560042 10.051325 4.269170 14.422348 8.390317 0.622465 -3.944418 -0.207067 3.228643 -2.762538 -3.135616 -9.332059 7.143609 -13.885821 10.101310 13.664981 -6.589483 9.101762 2.078566 0.874109 -16.238844 17.903810 6.526985 -16.407170 4.708498 11.475675 11.548245 -11.455399 -10.382318 --2.863784 -8.018414 11.392356 8.249436 -0.294232 3.436210 4.094082 -0.881896 -0.167749 3.150507 -2.990351 7.539294 -6.320605 -1.395572 -0.677364 0.150763 -6.603444 -6.169191 0.052086 -1.261872 -2.198064 -3.493434 -3.596737 9.978216 5.305968 1.505344 -4.069458 -1.520162 -11.048352 -5.169423 -4.057381 0.232799 4.816011 1.160188 5.813755 -9.895780 3.534357 8.470827 0.740044 -8.033474 2.809799 -3.258588 0.322198 -0.370726 -3.419603 3.542195 6.050188 2.105281 1.710274 2.051204 -0.024137 -2.653073 3.969745 8.706190 3.655438 6.180436 6.888392 -3.030520 3.000030 -2.667677 0.803854 -6.348229 2.660947 -0.089659 -2.671621 -2.339538 -0.301273 -1.386060 -1.774843 2.831902 4.264373 -3.221151 -4.669753 -4.081288 -7.658962 -2.516501 1.833680 4.644719 8.828083 -5.126294 9.190953 3.855377 4.861116 0.152863 5.502452 0.093109 5.352160 1.450222 -2.659129 1.065503 -7.737376 -2.629904 -1.715455 4.088059 -4.483534 -3.678064 3.449376 -10.324128 -9.850860 4.386924 -0.729206 -5.174134 -1.780577 1.606430 2.353383 3.453171 -1.897907 -6.019180 -3.483775 3.727593 -3.355224 -1.767496 0.396276 0.790654 -0.514219 -0.775511 -7.310746 3.462944 4.998815 -2.708950 -1.429725 7.692303 -0.782130 7.366949 0.595176 1.795511 -0.078294 5.504669 5.225444 0.065342 -1.969897 -4.304746 -5.968705 -0.295379 1.026960 0.538115 -5.654229 -2.512693 1.968996 3.437014 1.357881 4.049771 -0.998295 9.723949 2.923372 -4.099320 -6.190010 -7.644800 -5.826228 -4.037299 0.110435 -1.669846 -4.724464 2.208700 4.291957 1.928667 -0.567642 5.409796 -0.047902 3.035155 1.516355 -2.511051 0.636283 -2.573501 3.489047 -4.998911 -3.761488 4.874754 3.976784 6.088243 0.174794 0.177690 1.985663 -2.956183 -4.729603 2.416784 2.409122 2.949665 8.883858 6.750494 9.328717 -3.238656 -1.829859 0.065617 -1.903738 -1.805099 0.949769 -6.026091 3.209491 0.935401 -1.866778 9.601257 -0.150957 -2.746129 6.280421 0.096664 1.524297 -6.850518 4.297045 -3.920806 1.700775 -3.333489 -1.710218 -4.798893 -2.343111 -6.391442 -4.620011 10.126743 -6.601722 -8.150061 2.385805 -0.344170 5.475284 -10.874101 6.919656 -3.048190 6.692025 -0.397581 -3.384585 0.795101 -0.106390 -1.449142 2.658838 2.251886 -4.297561 2.292714 3.826441 1.819665 0.954616 1.327611 3.923682 -0.503997 2.847218 -3.161931 2.486010 -0.813946 -1.488016 -1.885065 -1.065515 1.034825 4.289748 -0.494661 1.142089 3.401086 0.848459 1.511790 6.325067 1.834670 -3.118320 -0.940780 -1.783218 7.167808 -5.919034 -4.755129 -2.647156 3.547781 1.818900 1.274355 -10.271668 -6.604182 -6.874615 -8.739106 -2.503422 -0.060249 2.500174 2.870358 -2.088508 -7.927448 -5.701777 7.004390 0.436792 6.276179 4.992741 0.780510 8.217368 3.632197 1.009313 -1.730803 0.859806 2.731989 -1.324084 -0.274395 -5.169967 3.063083 -7.487599 6.016058 7.766118 -4.008263 5.349476 -0.699942 5.057054 -9.098631 9.464702 3.367823 -10.395678 0.792812 6.207208 3.966494 -5.738681 -5.389114 --2.862644 -10.019137 16.184832 12.128542 -0.838375 4.015557 3.697569 -2.600952 1.370414 5.671042 -5.407509 9.115835 -8.474529 -1.013739 1.920703 2.232644 -10.616989 -8.115664 -0.001608 -2.334145 -4.422070 -4.727939 -4.540468 11.494925 7.155327 3.785388 -5.525910 0.619960 -11.612815 -10.157636 -5.164782 -1.069155 6.248463 4.684848 8.103898 -12.898705 6.933954 10.105987 0.461106 -9.728331 2.741096 -4.527655 -0.666120 -1.331391 -2.411169 5.495863 8.211858 4.552080 3.240377 3.088841 0.302982 -5.305287 4.919861 10.724918 3.870846 8.206399 10.364756 -5.065010 2.870176 -2.808061 1.676271 -8.494498 4.135219 2.198740 -4.214816 -4.219540 1.446022 -2.961313 -2.526885 5.010248 6.376123 -4.950466 -6.234527 -7.079976 -7.137260 -3.133882 0.580691 6.341217 13.550506 -6.736638 12.419045 6.099853 7.178577 0.408450 7.599561 -0.369904 10.391901 2.302898 -5.451542 1.022008 -8.597454 -6.660316 -0.959879 7.921607 -4.770291 -0.859577 3.682176 -13.398868 -13.278152 5.742346 -0.314275 -5.476379 -4.261875 2.913822 4.625877 3.040009 -0.746558 -7.997746 -3.574828 3.060267 -6.771454 -2.605690 -1.922886 1.117469 -2.212749 2.163453 -11.792233 3.484762 5.928463 -4.409324 -2.071652 9.566528 -0.496452 8.863118 0.337081 2.306624 0.431561 7.199292 6.262311 1.628448 -0.541559 -4.747672 -7.979153 0.968333 2.587440 -1.044447 -6.882487 -3.366439 3.250178 4.248884 -0.430502 5.418162 -3.170743 15.443889 4.714925 -5.640984 -9.521268 -10.006498 -8.445048 -6.188873 2.010486 -4.495802 -6.983616 0.792461 6.529828 2.486638 -0.063383 8.040763 -2.800847 5.780830 1.093080 -1.020761 1.797287 -2.983724 5.620785 -7.616529 -4.062905 6.852748 6.124062 5.113796 0.947377 -2.277575 3.448134 -6.238942 -7.378632 5.977659 1.120302 3.250641 11.003672 8.127926 19.197859 -4.786284 -0.398143 1.271383 -0.912606 -3.154173 2.868920 -8.309486 4.768789 0.875149 0.929941 13.201458 0.737115 -5.057341 5.242204 0.689776 1.296434 -8.841239 6.312484 -4.463969 3.830528 -3.227116 -0.382466 -6.753300 -3.643001 -6.539203 -3.109568 13.642294 -8.304579 -12.236800 5.263805 -1.341845 8.839859 -14.763298 10.210829 -5.294636 8.870702 -2.785237 -5.788390 1.294612 -1.978322 -2.258251 5.459061 3.551740 -3.273447 2.689197 4.502521 3.003491 3.117525 2.137456 5.121690 -0.716404 3.885160 -3.149785 3.972632 -0.234938 -0.783139 -4.396797 -2.055866 0.905065 5.456965 -1.508229 0.248578 5.749098 0.236322 2.621578 7.044946 2.361286 -5.028662 0.717818 -1.647951 9.681108 -8.169960 -6.536199 -2.455687 3.566902 1.282100 3.158235 -14.050412 -8.139955 -7.382949 -10.951059 -6.768336 3.006252 5.136089 3.756116 -1.959895 -9.211907 -6.602903 12.064311 1.232822 10.193894 5.997165 1.951413 10.118801 5.197884 2.508923 -5.064564 -0.846006 2.986984 -2.326166 0.217334 -7.533094 5.323456 -9.180182 7.851630 10.360808 -5.891885 5.627802 -2.494225 7.991086 -11.882464 11.990967 4.856569 -13.375877 1.538184 8.967091 6.425659 -7.680330 -7.754145 --3.367788 -12.176768 16.660413 12.562363 -0.078391 5.679162 5.689570 -1.357226 -0.099041 7.175946 -4.371954 11.619315 -8.720174 -2.819584 0.422004 0.845106 -8.912135 -8.155676 0.761808 -1.523669 -3.216276 -5.189731 -6.159207 15.182318 7.735829 3.413364 -5.341725 -2.345692 -15.313200 -9.446654 -7.232720 0.289873 6.927378 3.306813 9.542721 -11.390288 5.174139 12.565362 1.461491 -11.895634 3.197539 -3.376251 0.508463 0.963261 -3.460789 6.059284 9.287173 3.119220 2.202687 3.719228 0.390673 -4.747714 8.633081 10.672611 6.714606 9.429985 10.109984 -4.935725 6.047079 -3.923583 1.489213 -9.730832 4.060261 -0.228667 -3.056828 -3.217242 -0.759167 -0.644687 -2.208123 3.888649 6.595752 -5.236743 -7.318885 -6.457630 -9.721061 -3.558604 -1.125846 6.556475 12.897513 -6.498543 13.948913 7.344348 7.406901 -0.335550 8.625438 -0.261345 8.239054 2.439668 -4.694820 2.495945 -10.824154 -5.146764 -2.217136 5.695121 -7.025040 -4.158969 4.630871 -15.042248 -14.775250 7.501044 -1.059590 -7.188452 -2.028044 2.191724 3.837017 4.388452 -2.338218 -8.854437 -4.852626 5.161349 -5.877915 -3.109696 -0.233721 0.889455 -0.375444 1.850169 -9.811711 4.649749 7.765379 -4.214094 -2.127757 11.065075 1.230022 11.445323 0.515584 2.492602 0.803586 6.318105 8.615030 1.102505 -2.291344 -5.995919 -8.404086 1.653032 1.464217 -3.015886 -7.771891 -3.747984 3.381480 5.507103 3.263086 8.022193 -1.665665 15.098301 4.383676 -5.265151 -8.758419 -11.631796 -8.813437 -4.673521 0.966626 -1.897063 -7.106136 1.203233 6.126873 1.310725 -1.313789 4.267086 -0.209911 3.548445 2.079409 -1.837364 0.357971 -2.967690 4.794271 -7.270807 -4.939115 6.881861 7.690825 8.022879 0.428228 -0.482622 3.074046 -2.833665 -6.129968 3.685512 2.482981 3.835547 13.437988 9.578855 16.414375 -3.182235 -3.362322 -0.506407 -2.186362 -2.693149 1.164381 -9.047845 5.402365 0.816789 -1.265242 14.190876 -0.583875 -2.823164 9.513045 0.403787 1.612037 -9.702565 7.207419 -6.085086 1.894215 -3.822755 -1.888421 -7.616540 -3.487201 -9.352884 -5.104299 14.888029 -8.966223 -10.289037 3.519893 -1.903500 6.323147 -14.051037 10.663974 -4.299296 7.316563 -0.906798 -6.230233 0.688786 0.034127 -1.599730 2.676964 3.581692 -6.643553 3.886672 4.558420 2.130492 1.193391 2.460831 4.773433 -0.988244 3.407753 -4.755381 3.798739 -0.913790 -0.513288 -4.084689 -1.571103 2.335242 6.358958 -2.275871 -0.029468 4.453978 -0.315046 0.374118 8.177260 1.456553 -4.759910 -0.658214 -2.099674 10.044995 -9.254868 -6.771787 -4.303972 3.453429 2.688717 2.591889 -15.166615 -7.107505 -8.303141 -10.087100 -5.646813 1.122213 4.307773 4.934325 -3.201457 -11.091261 -8.897460 10.888882 1.338951 4.266778 7.135687 1.254906 12.175619 4.750362 3.762619 -2.778214 -0.933743 2.476979 -2.162812 -1.062887 -6.059309 4.112461 -10.050605 9.511506 10.414952 -5.492569 7.598209 -1.786908 6.860574 -13.612111 13.072363 5.098172 -14.736977 0.116682 9.118306 6.281728 -11.182839 -8.065664 --4.075601 -7.899234 12.539389 8.840891 -0.196924 3.505039 3.549167 -2.295841 1.474947 4.529751 -3.466982 7.252016 -7.047536 -1.107939 -0.259420 1.206545 -7.545836 -6.625151 -0.284089 -2.596428 -3.473024 -3.998832 -3.455958 8.974920 5.543263 1.039410 -4.580813 -0.037229 -10.727539 -8.576124 -4.065859 -0.520958 4.872415 -0.064909 5.300868 -12.620005 5.360857 8.814202 0.017020 -8.140176 3.032444 -4.430428 -0.124535 -0.328655 -2.957140 3.326701 6.006083 1.923690 2.729718 2.040195 0.960283 -2.794159 3.443394 11.117762 2.110520 6.922752 7.837710 -3.516402 1.206726 -1.327108 0.865054 -6.481810 3.550697 1.151502 -3.660251 -3.226110 1.333640 -1.789067 -2.610996 3.780597 3.737793 -5.005993 -4.117009 -5.043687 -7.454331 -3.042633 2.662256 4.552979 10.265498 -5.627100 9.995385 3.753377 4.959026 0.936131 6.269213 -0.304677 8.018711 1.424847 -3.890679 -0.403445 -6.388524 -3.058357 -1.189686 6.923124 -3.905823 -1.803371 3.884931 -11.007661 -10.952487 4.399877 -0.423068 -4.819989 -4.710598 1.393625 3.394258 2.934461 -1.472024 -7.058866 -4.111229 3.815259 -4.781557 -2.121386 -0.624607 -0.496408 -1.421345 0.544632 -8.959576 2.989795 4.799256 -3.343977 -3.590541 8.346961 -1.067966 6.986358 0.678714 2.827727 -0.062902 5.633404 3.976764 1.239264 -1.374969 -3.377699 -7.794000 -0.857080 1.514459 -0.213378 -5.805168 -2.050700 1.936029 3.171464 -0.493003 4.237629 -3.194029 11.977241 3.930152 -4.324314 -6.762386 -7.418347 -5.634451 -5.658772 0.814518 -3.281124 -5.985206 1.393297 5.246547 2.279011 -0.148606 7.455518 -1.842506 4.670116 1.363554 -2.362016 1.907223 -3.895094 4.619949 -6.228467 -4.157348 4.882511 4.830961 4.916316 -0.052067 -0.637142 2.054041 -4.857413 -5.890759 3.629425 1.586686 2.838883 8.901657 7.001139 15.410169 -6.077820 -0.180732 0.788966 -1.868974 -1.787783 1.087353 -6.805882 2.773564 1.721079 -0.277743 11.165619 0.564757 -4.570147 4.391927 0.269451 1.622867 -7.443590 5.141103 -4.246768 2.211976 -2.432586 -2.534541 -5.181482 -2.964340 -6.209880 -4.097703 10.829981 -7.772106 -10.458917 4.693577 -0.488243 6.725727 -13.288012 8.715073 -4.254765 7.706847 -2.294687 -3.432668 0.512126 0.547949 -2.000359 4.766492 2.646230 -3.942263 3.352445 5.321707 2.420242 3.208777 0.975148 4.651449 -0.781146 2.929137 -3.231972 3.794134 -0.559469 -2.207746 -2.984295 -1.847518 0.917550 4.396987 -0.279111 0.331360 5.015954 -0.342575 1.942260 7.297417 2.503222 -3.533570 1.083975 -1.755901 7.727978 -5.955833 -5.173963 -1.827379 3.433048 1.604431 2.407332 -11.519742 -7.153185 -6.804257 -10.141732 -3.142908 1.661600 3.218424 2.650240 -1.430116 -8.876714 -5.451988 9.448171 0.496161 9.155700 4.895910 2.120455 8.141456 4.645115 1.433951 -3.017628 -0.345599 2.152444 -2.036539 -0.965287 -5.398201 4.050049 -7.658767 6.565979 7.665807 -4.034622 4.934019 -0.484813 4.005884 -9.541269 9.747728 3.779594 -9.853790 1.962712 7.109025 5.647479 -6.366494 -5.962810 -6.044367 -66.061382 237.992548 153.835012 -51.451833 20.477831 42.681422 -97.730627 82.618938 16.187403 -47.236973 50.455605 -98.878605 25.187405 -42.521194 76.537702 -184.662312 -79.803358 -36.396452 -99.817242 -48.966911 -50.350378 44.154468 41.462916 114.487774 67.992504 -68.239727 -25.921702 -86.656133 -125.365946 42.223623 -35.564707 67.637922 25.391962 40.704093 -237.723262 132.042700 94.906389 -50.508468 -107.154786 82.871462 -58.744283 -7.424381 -45.907473 -36.476152 39.792244 33.939075 93.062802 91.623466 54.241742 6.253950 5.865271 58.742338 202.112439 -53.573757 73.508394 69.569039 -42.397779 -19.127083 11.513462 13.233230 -26.163261 31.633415 25.281119 -8.909126 -120.859813 -6.847608 -71.508949 -69.238224 92.622652 8.550768 -51.126173 -92.333709 -59.069860 -108.242076 -28.036326 -112.240190 127.054561 156.723134 -113.407483 94.506343 17.750232 23.527024 4.165155 31.689026 17.542017 91.633226 31.101185 -13.520872 -19.702998 -66.566509 -52.549273 30.790348 -8.598347 -51.955975 -172.637490 80.962140 -168.485943 -136.207338 40.588327 69.377315 -76.475769 -36.403963 -7.303938 32.400295 45.304976 -46.528084 -92.205282 -7.265916 31.369703 -12.684002 -8.742317 -1.720363 -14.049045 -27.788540 -12.970122 -157.613039 62.906500 4.789899 -21.325105 -23.227149 105.909182 -3.362976 14.105808 12.252626 72.077323 -50.223550 131.191820 2.012065 71.328346 -8.949697 45.258370 -52.003543 32.920403 74.919170 27.951143 -54.828700 -19.065242 -49.132986 37.149309 -85.354106 13.903904 -40.059609 110.043788 78.258248 -86.014287 -103.491778 -53.199899 -86.621754 -146.051123 23.033341 -63.491387 -84.900745 46.203424 83.653099 79.914074 74.790597 107.685276 -81.325472 26.807364 -8.701972 -29.055426 83.296601 -3.646699 87.342780 -75.263398 -53.638249 46.298931 17.275353 65.483844 -4.228247 4.325919 31.200180 -118.865545 -24.988585 59.951184 57.684478 -8.367126 92.950528 118.274996 130.319300 -74.266133 0.100144 85.118410 -53.923296 -27.833910 42.195609 -114.001841 53.959766 36.822881 20.696481 125.352667 7.376777 -34.615640 54.418083 -25.586655 26.804687 -81.515775 5.918984 -61.312622 -6.690809 -61.982101 18.077241 -69.584999 -45.209257 -68.366969 -79.184734 148.110952 -136.566450 -92.576170 132.796853 -38.793236 80.760245 -151.673971 158.209291 -76.801099 94.355410 -18.823538 -17.720833 1.792950 -23.937797 -98.473477 41.762157 28.098853 -22.041950 42.089679 126.585754 69.926674 18.434180 -17.344367 123.870162 -54.080779 119.404121 -49.338712 96.265807 -40.863887 -46.294141 -7.199583 -15.816107 -51.157168 -23.628205 43.439008 96.098245 38.750775 64.945909 80.071170 69.540170 121.397011 -61.292815 75.982607 -30.949906 72.328727 -68.282619 -66.903830 48.234443 69.302798 -21.225367 55.204498 -175.718686 -165.574829 -161.355191 -123.920695 -13.394079 -42.877246 48.713830 -23.191667 -24.883546 -117.845925 -97.191153 113.626783 -14.800329 66.883580 82.941710 14.944410 98.259334 116.692710 -39.941166 -11.229838 6.068422 59.151780 21.976954 -23.640903 -122.213289 117.269565 -105.424080 22.582761 170.014763 -80.179506 58.151879 -23.030865 100.638369 -128.213030 146.085355 33.645957 -99.015049 89.897504 125.807172 93.064778 20.927527 -75.172587 --6.510449 -28.838507 83.654169 54.753742 -16.939775 8.730160 17.505063 -31.124545 27.003633 1.647295 -16.045741 22.351839 -39.064521 7.945917 -16.650527 22.388131 -66.212070 -33.830956 -11.687705 -33.106501 -18.342876 -18.627389 14.302401 20.736449 39.719192 22.967707 -26.495971 -11.273329 -42.186523 -36.093539 15.801832 -13.669184 27.977696 13.512596 13.049119 -91.987023 43.074006 35.648661 -17.760251 -39.650728 29.951952 -26.818107 -0.180983 -21.450378 -18.089203 10.959470 14.364367 23.924803 31.323195 14.094258 2.586396 0.799047 15.910233 76.679268 -18.952297 27.979861 27.923876 -17.130542 -6.818563 0.294756 6.260543 -11.679213 16.746689 10.630777 -9.460055 -41.332085 -3.016527 -30.304313 -27.423598 32.235728 4.293749 -13.451947 -30.722874 -19.298617 -44.934383 -13.845924 -21.458465 44.104574 59.349679 -42.215768 39.337601 6.105341 12.059461 1.037019 16.925687 8.917600 35.985145 11.197152 -6.754695 -6.398432 -28.248932 -12.428417 7.163997 8.240140 -16.988637 -51.271531 30.153051 -62.440245 -52.223821 15.638716 21.093198 -24.989342 -18.657424 -1.015363 11.463308 19.288023 -20.218213 -36.480122 -7.819739 11.426773 -5.288232 -5.068349 -0.833880 -3.838833 -12.204391 -11.531996 -56.734147 20.341395 3.600572 -11.784043 -10.801345 41.774265 -7.776605 8.983549 3.368322 24.741964 -19.031572 48.565348 0.416227 20.672252 -2.937843 7.513447 -23.912992 -0.048514 25.007337 24.036451 -24.992750 -10.681211 -15.922830 12.582796 -28.221869 0.575032 -9.974090 43.394730 26.954627 -32.394856 -38.232851 -22.298489 -28.630350 -57.786388 4.283613 -25.315747 -26.718534 23.248634 32.585126 29.994348 25.984307 48.512074 -22.967387 16.886374 -0.874553 -15.511913 31.601864 -4.889724 32.381462 -29.073591 -22.312265 18.703482 5.203579 27.130285 0.320184 1.887159 8.719935 -44.248920 -17.620984 20.597734 22.309576 0.668708 36.594976 41.643019 46.690641 -35.421493 3.103661 28.378757 -16.833542 -9.027677 13.112163 -41.065019 18.890872 13.198173 -2.331368 45.363582 3.088582 -19.615689 18.453385 -8.057210 12.334640 -33.363596 5.880711 -21.754675 0.989756 -25.874007 0.902322 -24.929255 -19.094542 -26.464702 -30.501989 57.270779 -53.433761 -39.251805 45.013087 -5.825495 35.244424 -64.009261 54.137361 -29.997395 44.548994 -10.261564 -8.690564 0.666601 -5.203994 -33.168710 18.738010 12.523895 -13.382473 14.533602 45.810254 26.239593 11.368427 -5.197312 44.666756 -14.032248 41.062015 -16.839599 35.395897 -11.360877 -22.074168 -0.428541 -8.115965 -13.872670 -2.955197 17.035780 34.910798 20.602304 24.210799 30.702859 30.365090 42.964545 -24.027024 20.430471 -10.883472 33.082985 -24.091378 -24.352176 12.870850 28.943252 -4.756407 18.214471 -63.682941 -65.949376 -56.567261 -49.921064 -3.980145 -12.910960 15.466671 -4.737195 -5.840196 -46.970103 -32.501185 35.050303 -8.242608 38.873628 29.720062 7.660457 38.700991 41.237474 -16.748060 -9.284017 6.155499 24.673870 5.498914 -4.500487 -48.936960 39.291412 -42.954882 12.808162 60.443462 -28.265803 21.181035 -2.798218 39.349402 -45.954456 58.742605 15.023331 -41.844551 35.326588 44.472712 32.905483 8.275927 -29.242874 --8.579644 -20.263004 38.069907 26.732576 -6.345374 9.082622 6.139184 -8.418425 0.716346 10.913951 -9.052382 20.821438 -14.887779 -2.287668 -1.709824 6.168107 -24.679309 -13.200392 -3.154010 -11.021005 -11.099422 -5.874525 -10.992321 23.940115 16.689848 7.270321 -12.440163 -0.627370 -21.014441 -27.470674 -12.428277 -0.645665 13.133226 0.061241 15.700479 -42.126652 16.632043 24.498330 -2.092712 -20.740715 9.095944 -8.672248 -1.780751 -0.645923 -15.118340 8.372589 14.308164 3.514546 6.377965 7.472123 1.695365 -3.502804 17.679960 36.538824 9.432916 18.928994 22.062565 -10.997474 3.691515 -4.160426 2.986268 -15.835971 7.186212 -2.182649 -2.613354 -12.895036 -0.299219 -4.788886 -3.137307 8.857299 8.261394 -17.219748 -10.671432 -16.559215 -22.870480 -10.057067 -5.115616 15.146721 25.790368 -19.098077 24.473367 9.982722 8.496716 4.823512 16.476054 0.627872 20.988916 5.850959 -5.671023 5.323322 -4.791396 -9.699225 2.543009 15.302799 -15.324053 -18.173237 13.281828 -34.504567 -29.037556 15.869702 3.440225 -15.832785 -8.248525 -5.051796 5.628925 6.203885 -7.934721 -16.329102 -9.573560 9.764979 -7.902724 -5.985579 -3.111540 2.058320 0.367518 7.089354 -25.474420 13.590976 13.131467 -4.526181 -6.718192 22.368057 6.077797 15.833109 -0.087245 9.366612 -3.474582 19.115841 7.996260 6.565092 -12.013036 0.299593 -16.045591 -0.392223 6.385345 -9.950609 -15.143939 -10.140224 3.707435 10.479766 -0.897450 15.839311 -7.578077 33.600912 13.827428 -6.666216 -18.718100 -20.987324 -21.412999 -18.294756 0.469943 -7.822202 -20.729896 9.737543 13.624234 6.033372 0.743530 11.234533 -2.020033 8.243121 1.162214 -6.746195 6.341562 -12.302044 11.992011 -16.144473 -9.933320 13.799685 11.451901 18.664234 1.294115 -0.101406 6.911336 -9.672121 -12.302391 12.066048 7.624832 5.074308 24.018606 22.061631 46.470171 -10.151564 -2.955709 1.569597 -9.447633 -4.481930 3.446108 -16.967008 4.392711 6.169280 -2.848923 30.986787 1.080603 -6.974947 12.817988 -1.135325 3.147645 -18.135551 13.608129 -10.900097 5.675602 -5.760385 -5.703897 -15.653989 -5.282520 -18.711664 -15.987548 30.304183 -34.758192 -21.076710 15.281880 -1.019545 15.414180 -31.451128 28.329838 -11.020903 22.577206 -5.878937 -12.292307 2.535994 -1.018918 -8.871673 14.458805 6.969836 -11.791286 3.249639 14.790334 6.861828 6.453473 -0.364709 14.994913 -6.675498 12.644709 -10.174579 13.556039 -2.599508 -5.001331 -10.595882 -3.073737 -2.810486 7.968842 3.522597 -0.110549 6.351186 1.891292 -0.083628 20.128636 8.590856 -10.507648 5.245046 -5.810488 18.097042 -18.086496 -15.185533 -2.020588 13.470214 5.898962 4.342088 -32.451480 -15.884839 -32.634598 -18.375511 -9.557880 7.287822 9.323562 4.556783 -7.134135 -20.796451 -18.517732 34.039681 -0.706476 11.521937 16.011293 6.310846 23.471173 12.567476 8.639893 -5.992782 -4.314832 5.829712 0.066388 -0.615264 -16.019732 14.098330 -19.946549 14.715775 23.021527 -10.234118 16.627939 5.387191 11.423184 -25.600617 24.549890 7.253811 -27.889448 4.808426 27.530076 9.096823 -18.109219 -15.741112 --2.597742 -11.230686 17.314121 13.001177 -1.201952 5.090524 5.477494 -2.700659 -0.145036 5.312572 -4.421774 10.406053 -8.811140 -1.885724 -0.633218 1.233550 -10.366614 -7.857729 -0.478243 -3.055092 -3.178215 -4.532994 -4.929620 14.111000 8.195730 2.955577 -5.401911 -2.449132 -14.489947 -8.128753 -5.672632 0.044424 6.896973 3.630939 8.481324 -12.938467 6.026025 12.321824 0.447648 -10.568865 4.020122 -4.148048 -0.079916 -0.271964 -4.759946 5.214877 7.827284 3.223553 2.981910 3.439066 0.798014 -3.604409 8.017032 12.189612 5.067116 9.207814 9.579705 -4.735542 5.056037 -3.406435 1.268137 -8.286987 3.768735 -0.501593 -2.402004 -4.740159 -1.174877 -1.791238 -2.034196 4.221447 5.816946 -4.791786 -7.218981 -6.187952 -10.652077 -3.942435 -1.614529 7.035708 12.879400 -7.472474 12.989464 6.417017 5.971370 -0.160301 8.104288 0.407204 8.277775 2.432187 -3.460588 3.052695 -9.775427 -4.480858 -1.037239 5.208130 -7.288414 -6.869228 5.027342 -15.941060 -14.572734 6.973901 0.123505 -7.832793 -1.140245 1.511299 2.676063 3.639484 -3.211974 -8.664067 -3.759975 4.862297 -4.344837 -2.854376 -0.423234 1.118505 -0.039030 0.803658 -10.804926 5.494141 6.521257 -3.500282 -1.624402 11.097688 1.268888 9.703184 0.550077 2.910605 -0.620838 7.628461 6.478166 1.641105 -3.272347 -4.384506 -7.602637 0.674623 2.311073 -2.032522 -7.691360 -4.129825 2.423990 5.322419 1.725029 7.516588 -0.870040 14.575396 4.108650 -5.486630 -8.537881 -10.619946 -9.440062 -6.314503 0.753138 -2.250719 -8.012417 1.859891 6.408762 2.423766 0.037666 5.021684 0.650303 3.193737 1.662112 -2.657890 1.773037 -3.896993 5.337938 -7.130997 -5.094945 7.018253 5.922493 8.679403 0.659636 0.414582 2.966899 -4.052123 -5.560427 3.427573 2.919137 2.946665 13.317396 10.250053 15.114664 -2.995075 -2.017488 0.671348 -2.887897 -2.289728 1.705491 -8.823329 4.756281 1.475604 -2.349335 13.862581 -0.305518 -2.663068 8.672643 -0.253210 1.990990 -9.868393 6.163727 -5.584231 2.191874 -4.924312 -1.089557 -7.177701 -3.762936 -8.747297 -6.042457 14.670975 -10.790223 -9.395547 4.545711 -0.474716 6.546190 -13.861452 11.450174 -4.763601 9.005150 -0.934864 -6.172974 1.421378 -0.205664 -3.239780 3.734873 3.433146 -6.449169 3.327505 4.868395 2.947508 1.351938 1.513411 6.078387 -1.726917 4.947436 -5.188077 4.805078 -0.862386 -1.693848 -3.532177 -1.562396 0.634145 5.057690 -0.419288 1.251240 4.006548 1.316481 0.820212 8.397023 3.154984 -4.788627 -0.098119 -2.460479 9.178471 -8.928924 -6.897405 -2.821598 4.297475 2.462066 2.346862 -15.372627 -8.275763 -10.703054 -9.465976 -4.411408 0.613241 4.200016 4.307031 -3.162461 -11.120434 -9.062153 11.002915 0.191670 4.372570 7.586843 1.490298 11.755888 5.475915 3.156093 -2.225381 -0.325125 3.987930 -1.004581 -0.489575 -7.520121 5.528789 -10.218045 8.452320 11.351662 -5.825624 7.789381 -0.547752 7.888994 -13.266233 13.111228 4.370584 -14.535835 1.725572 10.687438 5.128913 -8.551554 -7.674934 --4.847755 -10.719336 20.563304 13.919236 -0.242668 3.734959 6.646080 -4.401164 6.166140 4.246311 -5.056960 9.529360 -11.348258 0.292544 -0.885486 3.534434 -14.002391 -11.614158 -0.171454 -4.796418 -4.832751 -6.935657 -0.774733 9.517367 9.317146 2.363554 -7.773086 -2.443342 -16.284336 -10.055660 -0.196183 -2.722799 8.188795 0.139818 5.564503 -24.940330 9.277115 11.094138 -1.630643 -13.856195 6.292171 -8.139841 0.963303 -3.321896 -2.603915 4.444096 8.506589 6.878447 6.343689 3.745199 -0.226295 -2.765094 1.904194 19.450234 -1.642637 8.848577 10.584746 -5.111434 -1.307252 -1.365768 1.813024 -8.170293 6.254204 3.822057 -6.445966 -7.240820 1.855961 -5.760367 -7.836847 7.220431 5.970778 -4.333871 -7.550522 -5.303052 -10.712206 -3.860940 4.698840 9.386538 17.160057 -9.321753 14.376264 3.574373 8.148605 1.116310 7.122404 0.793533 10.914661 2.276160 -5.760498 -3.914775 -14.496724 -4.880594 -1.877311 6.543753 -3.348537 -6.768772 5.672979 -13.934685 -15.372140 4.680560 1.123616 -5.870947 -8.872612 2.325290 6.786722 7.179118 -2.710810 -11.003829 -6.082948 4.279068 -7.026387 -2.620866 0.426467 -2.524164 -4.517505 -4.015831 -14.797765 3.644922 5.227123 -5.170489 -5.321996 12.228522 -6.066595 7.938413 1.166227 5.188194 -1.848983 10.108746 5.061395 2.071354 2.447234 -5.756341 -11.341515 -1.143242 3.580646 8.291582 -8.000217 -2.728026 -0.752620 4.017958 -4.196524 1.700348 -3.274155 15.302654 7.473601 -8.873866 -10.974774 -9.850656 -5.010956 -10.586059 2.076912 -6.304821 -5.740262 3.129257 8.867152 5.403364 3.203856 15.096626 -6.456813 8.650833 1.223053 -3.231797 5.342848 -1.923502 8.203208 -9.044949 -6.171218 5.928718 5.625622 6.164174 -0.690283 -1.154947 3.322229 -10.798112 -8.979434 4.489780 4.188618 3.625895 11.340025 9.986929 18.604648 -12.430142 -0.384750 4.273851 -2.824516 -3.157715 2.706840 -11.302103 5.621253 2.675012 -0.027391 15.642592 0.983936 -9.425089 6.109969 0.726454 2.462844 -9.716779 4.721275 -6.591685 1.355579 -4.859839 -2.569404 -8.175568 -5.165139 -9.175738 -6.196761 16.563388 -8.181280 -17.571123 8.300417 -3.748328 11.155142 -22.647070 14.091431 -7.667290 10.471681 -4.016392 -2.979967 -0.163232 0.315028 -5.686304 6.388068 4.169674 -4.352351 6.140425 11.370282 5.603928 4.501731 0.826605 8.768495 -0.599598 6.383417 -3.963890 6.535577 -3.091869 -4.115065 -1.991531 -2.665853 1.396162 4.768679 0.804202 4.991868 8.270068 2.375510 8.078380 10.818783 6.924591 -6.270179 2.978994 -2.843508 12.570541 -7.111531 -6.885032 -1.416993 5.912772 0.327492 5.402426 -17.389956 -15.614812 -8.816947 -19.147468 -2.486238 0.105613 3.829179 1.675035 -1.011282 -15.462249 -6.910484 8.523761 0.455309 17.598851 7.785645 1.943242 11.643994 8.903942 -3.642670 -5.071685 2.027917 4.028709 -2.896549 -2.528865 -10.661554 7.553812 -12.264702 7.999653 14.161845 -7.298085 5.396118 -3.629901 9.554359 -13.338666 17.216428 6.163760 -13.749259 5.156587 8.654093 12.416099 -4.655334 -8.998155 --2.206753 -6.659167 10.673111 7.815580 0.106916 2.479202 3.775653 -1.716978 1.821171 3.819090 -2.844433 6.024217 -6.323208 -0.465484 0.058031 1.894401 -6.435539 -5.852333 0.022583 -1.624399 -2.382475 -3.543530 -1.440133 6.792913 5.241058 0.971093 -3.828699 -1.228031 -8.966923 -6.200164 -2.485356 -0.791326 4.367462 0.355675 3.909872 -9.977812 4.497532 6.945635 -0.107393 -7.379583 2.947370 -3.466317 0.167868 -0.897813 -1.696690 2.839740 5.138258 3.030542 2.576504 2.447076 0.361845 -2.287246 3.033009 8.905562 1.203924 5.425421 6.391626 -2.583592 0.892008 -1.436020 1.043878 -5.075832 2.938973 1.304088 -2.784485 -2.953802 0.329872 -2.005233 -2.991011 3.188011 3.222383 -2.916631 -4.434141 -3.534950 -5.218293 -1.844130 1.122275 4.521520 8.861068 -4.977637 8.176421 3.027726 4.061118 0.164503 4.138331 0.000504 5.193764 1.383233 -3.026021 -1.059525 -6.595197 -3.023921 -1.014939 3.904053 -2.891633 -2.537161 3.222030 -7.342070 -8.876005 3.267311 -0.050434 -3.864886 -3.161204 1.646259 2.785108 3.447015 -1.272684 -5.806774 -3.083558 2.455257 -3.291452 -1.881806 -0.412506 -0.298386 -1.816434 -0.519141 -7.623694 2.060798 3.574408 -3.275968 -2.255131 6.304896 -1.769856 5.808751 0.491360 2.132618 0.022107 4.963366 4.043554 1.262198 0.677122 -3.142463 -5.700827 0.268711 1.839627 1.597498 -4.487334 -0.720686 0.920763 2.573601 -0.347818 2.825052 -1.617715 9.092438 3.037234 -4.209752 -5.962430 -5.962384 -4.119940 -4.336738 1.338201 -2.974258 -3.422530 1.424955 4.400799 1.554312 0.357191 6.986576 -2.618928 3.782151 1.260080 -1.527643 1.663074 -1.673186 3.825215 -4.902820 -3.509321 3.959085 4.135014 3.380854 -0.234214 -0.255835 2.003504 -4.523388 -4.415317 2.461599 1.351085 1.525998 6.991164 5.226235 10.855953 -4.251506 -0.631536 1.218109 -1.248427 -1.599967 1.110284 -6.299692 3.108925 0.769690 0.170646 8.547109 0.452603 -4.084695 4.405708 -0.099830 1.017556 -5.645122 3.916652 -3.639408 1.039861 -2.398319 -1.200634 -3.748506 -2.641630 -4.691485 -2.301382 9.077625 -4.663370 -8.144956 3.161631 -1.099507 5.060496 -10.769645 8.386327 -3.556550 5.268041 -1.382063 -2.779989 0.554997 0.129783 -1.884534 2.484844 2.360764 -2.375018 2.754981 4.787677 2.101342 1.582085 1.140001 3.842270 -0.368193 2.924794 -2.237488 3.031045 -0.840538 -1.645341 -1.929842 -1.397961 1.003597 2.984702 -0.764435 1.787785 3.934457 0.260008 2.824815 5.037988 2.816107 -3.269259 1.341267 -1.282037 6.918970 -4.701923 -3.777239 -1.466304 2.625100 0.734445 2.962642 -9.291386 -6.735700 -4.330620 -8.672382 -2.500501 0.563314 2.964934 1.318402 -1.199365 -7.421823 -4.689696 5.897801 0.399705 7.019920 4.346602 1.310451 6.641256 3.806223 0.242532 -2.296328 0.110583 2.088433 -1.411043 -1.088533 -4.166140 3.002561 -6.548057 4.705440 6.892272 -3.404584 3.597700 -2.128559 4.137443 -7.637389 8.556032 3.205632 -7.879087 2.008932 5.444045 5.282120 -4.694523 -5.002076 --3.915012 -10.638093 14.229573 10.428814 0.130280 4.939046 5.487929 -0.728785 -0.629599 5.440117 -3.375654 10.049690 -7.554282 -2.628420 -0.489094 0.070505 -7.138659 -7.399509 0.191949 -1.745566 -2.389812 -3.963208 -5.771622 13.449792 6.470962 0.063557 -4.707591 -2.024736 -14.415731 -7.077594 -6.514639 0.495990 5.802916 -0.989824 7.581953 -11.621878 4.653081 11.586440 1.193763 -10.306928 3.224481 -3.458860 0.555818 1.099983 -4.909036 4.114711 7.759831 1.580333 1.467916 2.791582 0.362098 -2.945184 6.387763 12.027141 5.566594 8.480149 9.395066 -3.680030 4.292236 -3.125675 1.075236 -8.335324 3.103532 -1.108703 -2.466136 -2.697977 -0.780179 -0.522682 -1.585357 2.430915 5.322571 -5.047804 -5.121634 -5.015273 -10.240909 -3.767144 2.752576 4.985421 10.935247 -6.423517 12.071747 5.586297 5.935680 1.018120 7.579302 0.179985 6.530271 1.956374 -3.289379 2.225626 -8.946173 -2.600743 -1.881088 5.452054 -6.449926 -5.406599 4.430370 -13.000690 -12.910125 6.656773 -1.274544 -6.734661 -1.675057 0.860290 2.732410 3.986476 -3.070657 -7.653851 -4.814325 5.034482 -4.103614 -2.764229 0.551876 0.556324 0.292380 0.087062 -8.709391 4.618434 6.933257 -3.307661 -2.482226 9.914441 -0.243764 10.149440 0.530314 2.416620 -0.039974 5.697295 7.092835 0.366206 -3.667251 -5.660334 -7.763193 -0.688636 0.436931 -1.528109 -6.890457 -2.974722 3.024654 4.767307 3.290939 7.231690 -1.040428 12.878994 2.687987 -4.165763 -6.786281 -10.011945 -7.854000 -4.380051 0.277181 -1.604360 -7.326353 2.209969 5.285491 1.344372 -1.407529 5.167784 1.293936 3.368127 1.972673 -2.995387 0.374187 -4.996124 4.077925 -6.132209 -4.746670 5.844453 6.054555 8.056533 0.180326 0.323758 2.442639 -2.681194 -5.279575 1.747505 2.368045 3.142013 11.715084 8.511914 13.668350 -3.312649 -2.704591 -0.849505 -2.891236 -1.698900 0.417112 -7.554319 3.016949 1.459254 -2.661413 12.666536 -0.318795 -3.112102 8.358529 0.036401 1.685176 -8.649231 6.547540 -5.177154 1.762578 -3.465810 -2.605305 -6.553568 -2.779899 -8.932915 -5.821131 12.794123 -9.194993 -9.665068 2.366987 0.487694 5.727959 -12.973856 10.075355 -3.721470 8.709700 -0.199073 -4.788020 1.355431 1.005309 -1.613967 3.407473 3.012767 -6.327897 3.424460 3.913318 1.949422 1.300933 1.663827 4.480038 -1.274765 2.936689 -4.792543 3.485324 -1.154151 -2.340308 -3.250245 -1.318228 1.830382 5.657250 -0.705492 -1.065409 3.311837 -0.233737 -0.086374 8.333895 1.355599 -3.875526 -0.763549 -2.315902 9.093148 -7.562388 -5.616344 -3.962293 4.089246 3.355164 1.838414 -13.246051 -6.177360 -9.056354 -9.787552 -3.385971 1.222070 2.764390 4.110513 -2.570380 -10.474302 -7.774147 9.780212 0.533495 5.320251 6.826575 1.608375 10.739344 3.904112 3.270949 -2.066798 0.193436 2.597515 -1.711619 -0.942533 -5.170412 3.436326 -9.335086 7.958405 8.788010 -4.084246 7.011488 -0.159212 4.020713 -11.578001 11.499224 4.155743 -12.892454 0.364878 8.849130 5.229183 -9.488738 -6.812934 --2.784242 -6.753173 9.705475 6.820654 0.708001 2.517507 4.209398 -0.263217 1.535825 3.235793 -2.527997 6.065505 -5.826296 -0.716595 -0.509384 0.941424 -5.076383 -5.931046 0.509763 -0.918249 -1.704873 -3.330279 -1.773283 6.616972 4.671005 0.467490 -3.629638 -2.106470 -9.787191 -4.305014 -2.302729 -0.662129 4.094646 -0.982267 3.497556 -9.496241 3.194986 6.656246 0.155373 -7.581577 2.841111 -3.017556 0.972160 -0.324632 -1.444805 2.642564 5.407724 2.460592 1.877084 2.215182 -0.074056 -2.064301 2.360742 8.828038 1.441161 4.941415 6.254576 -2.066598 0.975353 -1.776169 1.040975 -5.224189 2.427407 0.799383 -2.642402 -2.213700 -0.140756 -1.679275 -2.797807 2.297747 3.198620 -1.887184 -3.829493 -2.795510 -5.764665 -1.932326 2.371794 3.828540 8.374854 -4.512907 7.920737 2.749612 4.684988 0.520825 3.680481 0.375459 3.561125 1.297205 -2.800550 -0.561705 -7.210764 -1.550365 -1.806706 3.615433 -2.720290 -3.213505 3.117305 -6.624750 -8.053329 3.258069 -0.534120 -3.166544 -2.382063 1.554121 2.463738 4.065598 -1.877657 -5.361246 -3.463142 2.272794 -2.647228 -1.542900 0.757780 -0.614807 -1.480451 -1.617452 -6.392980 1.919450 3.608030 -3.222221 -2.080924 6.048642 -2.394568 6.214589 0.523750 2.057520 -0.154100 4.432987 4.876703 0.495925 0.059274 -3.999321 -5.982337 -0.822007 0.925313 3.257769 -4.672622 -0.981582 0.779595 2.252258 0.726794 2.229802 -0.826870 7.444076 3.026894 -4.133599 -5.102048 -5.972370 -3.248200 -3.741711 0.709464 -2.162032 -2.658826 1.280176 3.820709 1.515427 0.107257 7.128828 -1.631412 3.378919 1.279037 -2.089859 0.970481 -1.464958 3.199255 -4.236849 -3.366371 3.185597 3.903403 3.680876 0.026940 -0.223484 1.764033 -3.778028 -3.524726 1.583448 1.898181 1.398109 6.667202 4.844136 7.916514 -4.153526 -1.575211 0.581446 -1.424112 -1.410855 0.729670 -5.816500 2.910850 0.803319 -0.692917 7.561487 0.293784 -3.664967 5.242230 -0.151002 1.062764 -5.075452 3.676408 -3.616435 0.514691 -2.573119 -1.127343 -4.050551 -2.011501 -4.912046 -2.739189 8.379541 -3.676359 -7.460008 1.538589 -0.005077 4.353835 -10.119538 7.200188 -3.030957 5.540838 -0.741946 -1.975797 0.489157 0.777827 -1.219955 1.773018 2.153750 -2.934182 2.814386 4.123260 1.862224 0.935910 1.335328 3.558972 -0.156117 2.177654 -2.077722 2.089174 -1.138271 -2.100343 -1.083821 -1.001621 1.611234 3.266803 -0.593054 1.261557 3.310850 0.180294 2.540607 5.180071 2.142212 -2.943891 0.311666 -1.316984 7.435354 -4.348518 -3.257627 -2.407905 3.090823 1.124716 2.202037 -8.514411 -6.286378 -3.868686 -8.869609 -1.735863 0.224331 1.603337 1.562212 -0.983488 -7.404563 -4.290883 4.145569 0.359868 6.950345 4.040613 0.887436 6.607818 3.174382 -0.443770 -2.162938 0.850896 1.870385 -1.552859 -1.014080 -3.742888 2.114791 -6.419241 4.160264 6.296308 -3.110270 3.329255 -1.165352 3.640059 -7.100545 8.773138 3.388243 -7.732993 1.604334 4.578387 6.087174 -4.437669 -4.582119 --4.521034 -13.654600 22.949737 16.470856 -0.940274 4.685630 6.962187 -3.247856 2.383272 5.296026 -6.412038 12.550518 -12.557183 -0.715310 -0.425729 2.675941 -14.899177 -12.103749 -0.801373 -3.763254 -5.323132 -6.271950 -3.699247 14.692512 10.859856 3.467313 -8.416411 -2.010479 -18.410032 -11.049147 -4.462522 -1.365622 9.168075 2.925766 8.592880 -22.371869 8.823144 14.117199 -0.451542 -14.357610 6.165389 -7.404083 -0.216903 -3.525768 -4.689806 5.574745 10.539564 5.617737 4.815535 4.059209 -0.623977 -4.701672 5.384044 19.251509 3.004338 10.806107 14.263629 -5.825360 2.339701 -3.620285 2.156399 -10.640101 5.567854 2.129314 -5.582704 -6.724995 0.821620 -5.717052 -4.745479 6.865220 7.247373 -5.321534 -8.445665 -8.144021 -12.788015 -4.274664 3.251986 10.053815 18.302679 -11.314107 16.468062 6.106829 8.748568 1.212731 8.742950 0.770859 11.209522 3.127089 -5.418181 -0.766679 -13.815652 -6.236554 -2.034592 8.897581 -6.308894 -5.862324 6.940461 -18.156124 -18.015628 6.902978 0.232176 -8.279920 -5.814840 2.996454 4.877524 6.404581 -2.669864 -11.053706 -6.090419 4.750671 -6.539148 -3.181721 -0.719626 0.940867 -3.300605 -1.313730 -16.564710 5.760382 7.149843 -5.765760 -3.682933 13.466855 -3.333054 11.466735 0.790228 4.340865 -1.172230 11.321236 7.757742 1.812483 -0.092737 -6.209585 -11.553777 -1.179409 4.170485 4.716974 -10.341227 -3.390853 2.046675 5.296984 -1.182253 4.886894 -2.929008 19.097374 5.826168 -9.197427 -12.866612 -13.258377 -9.927124 -10.090374 1.518612 -6.010448 -8.154098 4.301849 9.056739 5.006905 0.975512 14.676753 -3.981248 7.940402 2.243047 -4.009691 3.224417 -4.356404 7.831818 -10.190005 -6.963695 8.438051 6.732395 8.368929 0.427194 -0.733526 4.351161 -9.807405 -9.830493 6.021666 3.502796 3.346468 14.675525 11.925835 20.816640 -9.543202 -1.016301 2.652825 -3.070333 -3.944798 3.242747 -11.998595 6.220770 1.871198 -0.932553 17.701283 1.244442 -8.197144 8.594718 -0.139115 2.238287 -11.500972 7.384369 -6.751376 2.936192 -5.854226 -1.874651 -8.476304 -5.121350 -9.795151 -6.558321 19.062822 -12.238076 -16.869255 6.820917 -0.171334 11.567202 -22.691076 15.691512 -7.332474 13.706687 -2.553445 -6.178729 1.574022 -0.951451 -4.760593 6.446402 4.675650 -5.768909 4.243591 9.066807 4.892899 3.780004 1.785808 8.555781 -1.084760 6.835681 -4.815154 5.870947 -1.672883 -4.450516 -4.173678 -2.505422 1.203942 6.319133 -0.066761 3.445304 7.598413 2.584247 5.860823 11.364530 6.194623 -6.935395 1.041035 -2.940743 14.468823 -10.168853 -8.620875 -2.842334 6.807550 1.724246 4.770932 -19.382545 -14.797083 -11.824617 -17.753582 -5.363550 0.917247 5.413088 3.164994 -2.904683 -15.109900 -9.507170 12.039480 0.473188 15.288271 9.274407 2.289175 14.165156 7.954012 0.033478 -5.245505 1.636024 5.813591 -2.248734 -0.796514 -11.192316 7.313090 -13.653493 9.148392 15.683241 -7.846331 8.338186 -2.119910 10.288563 -15.916704 18.541444 6.401001 -18.496910 3.823867 12.599011 9.636844 -7.893194 -10.375133 --1.269173 -3.770948 5.167864 3.872978 -0.121887 1.376709 1.705476 -0.266484 0.693788 1.420181 -1.674077 3.007378 -3.239729 -0.580191 0.621186 0.258628 -3.339637 -3.102203 0.222944 -0.294035 -1.159761 -1.924002 -1.563995 4.061271 2.200416 1.329578 -1.755619 -0.055538 -4.573630 -2.405674 -1.306462 -0.356229 2.212500 1.703331 2.733128 -4.666739 1.813640 3.422473 0.257571 -3.833795 0.805844 -1.712900 0.366183 -0.993385 -0.673249 1.851913 3.082962 1.598677 0.809174 0.807040 -0.639924 -2.008833 1.160506 3.633505 1.319532 2.672584 3.781639 -1.391876 1.095872 -1.232002 0.660650 -3.010838 1.451900 0.734478 -1.834851 -0.980792 0.206026 -1.356656 -1.180277 1.564182 2.095927 -0.940097 -2.369217 -2.256447 -3.188833 -1.094877 0.079356 2.336932 4.736272 -2.707259 4.409715 2.149612 2.961307 0.431578 2.566041 0.093350 2.967953 0.792160 -2.023481 0.588981 -3.969960 -2.238044 -0.834219 1.936681 -1.402213 -0.752800 1.246629 -4.653476 -4.412327 1.969706 -0.529099 -1.480816 -1.494413 0.994511 1.550035 1.694870 -0.609922 -2.836059 -1.507759 1.024649 -2.000023 -0.711281 0.136467 0.800790 -0.843737 -0.397174 -3.898753 0.902007 2.217689 -1.830358 -0.368316 3.434094 -0.981962 3.466791 0.155221 0.399443 0.066330 2.848987 2.650231 0.087426 0.034298 -2.291773 -3.109428 -0.290395 0.631759 1.337218 -2.287659 -0.920033 1.203050 1.352391 0.179475 1.148084 -0.591313 4.450989 1.233887 -2.117508 -3.033311 -3.722871 -2.723757 -2.104483 0.639137 -1.352137 -1.437276 1.020036 2.219354 1.186084 -0.142164 3.426216 -1.096048 1.753439 0.227571 -0.619311 0.212703 -0.359940 1.792831 -2.349477 -1.519739 2.227280 1.958138 1.984043 0.567599 -0.951248 1.143108 -1.992608 -2.550486 1.575710 0.691299 0.918241 3.790741 2.647739 4.235560 -2.072356 -0.394781 0.226634 -0.137260 -0.910188 0.800512 -2.891141 2.067624 0.118006 -0.102482 3.817163 0.083706 -1.791893 2.237372 0.068893 0.486760 -2.891943 1.712900 -1.737656 0.830081 -1.627409 0.198103 -2.381931 -1.392499 -2.355316 -1.083691 4.626801 -2.046355 -3.921970 1.187621 0.088604 3.259450 -5.040710 3.052525 -1.608076 3.508085 -0.595461 -1.671317 0.496957 -0.521420 -0.239004 0.826388 1.290673 -1.376059 0.754244 1.351006 0.988922 0.716442 1.114414 1.716290 0.064098 0.953469 -1.089682 0.872169 -0.347511 -0.481720 -0.860791 -0.732317 1.098287 2.110545 -0.508496 0.692809 2.115788 0.414269 1.476179 2.574355 0.556167 -1.679603 -0.505471 -0.428041 3.833702 -2.740043 -1.843941 -1.488484 1.563796 0.381616 0.948135 -4.517804 -3.334050 -2.260440 -3.956875 -2.211427 0.580745 1.173158 1.336822 -0.491552 -3.328642 -2.070226 2.928032 0.205747 3.396864 1.840858 0.488318 3.706533 1.803218 0.165226 -1.922207 0.778603 1.088408 -1.086872 0.217945 -2.660305 1.449235 -3.483442 2.536013 3.580672 -2.021037 1.754372 -0.831239 3.185154 -3.906969 4.560221 1.897415 -4.838625 0.403699 3.114221 2.694392 -2.174833 -2.609475 --5.450041 -10.057235 18.340538 12.259250 -0.729634 4.544222 5.399482 -4.755677 2.892592 5.365183 -3.482497 9.361983 -9.436110 -1.547683 -2.314461 2.092706 -10.789770 -8.814643 -1.818567 -5.724932 -4.723886 -4.718863 -3.325647 10.880272 8.340925 0.409179 -6.644552 -1.024157 -15.034853 -12.430646 -4.325039 -0.801764 6.594324 -2.756492 6.212875 -19.026229 8.564027 12.858693 -1.309011 -10.743874 5.296358 -5.553668 -0.384783 -0.526617 -5.037913 3.694654 6.629493 1.142499 4.305605 3.002630 2.004728 -1.411523 4.833718 17.331223 1.395181 9.518859 10.313835 -4.400729 0.919257 -0.798001 1.129878 -7.274282 4.413339 0.251124 -3.621674 -5.819754 1.344834 -2.530050 -3.997419 5.202757 3.856698 -7.670502 -4.913347 -6.519250 -13.120139 -4.630564 4.463108 5.946145 13.837444 -8.179639 12.792317 4.188663 5.117089 1.934376 8.030361 0.266876 10.280366 2.277385 -3.751691 0.074086 -7.800897 -2.665061 -0.958416 9.249040 -6.113917 -6.447450 6.976287 -16.809616 -15.010878 6.276237 1.178511 -7.225424 -7.128585 -0.307518 3.526048 3.952630 -3.772833 -9.652806 -5.755975 5.457019 -4.700746 -2.589459 0.430914 -1.500331 -1.371162 0.498553 -12.322945 5.158637 5.833344 -3.581562 -5.964920 11.717194 -1.532104 8.079669 0.666274 5.260794 -2.058311 7.479505 3.398643 3.095999 -3.556370 -2.336656 -10.315612 -4.010014 2.208535 0.520234 -7.370003 -3.338404 0.615816 4.509728 -1.439455 6.490742 -4.321619 15.182212 5.482235 -5.617291 -8.486000 -8.938206 -7.840049 -9.504882 0.588673 -3.970142 -9.374796 2.629627 7.347244 3.315002 0.853156 10.120624 -1.194081 5.044448 1.538904 -4.531493 3.914913 -7.586852 6.634855 -8.002917 -6.249238 6.032354 5.491288 8.390289 0.099153 0.227243 2.475200 -6.923717 -7.327151 3.007501 2.707614 2.290082 11.623822 10.662353 19.093819 -8.800751 -0.316991 1.937020 -3.878530 -1.534325 1.018754 -9.282437 2.319264 3.383074 -1.333427 15.528066 0.804521 -5.836118 6.546806 -0.425143 2.574048 -9.941568 6.298911 -6.068161 2.495089 -3.873600 -3.851453 -7.468758 -3.690594 -9.226942 -7.918225 14.806616 -12.432562 -13.703356 7.881553 1.020458 8.623609 -18.196279 12.320632 -5.761288 11.782572 -2.579483 -3.312828 0.963349 1.819761 -4.750368 6.514482 3.309215 -6.750397 4.982237 8.438522 3.790299 4.260326 -0.396833 7.628588 -2.709409 5.630738 -5.689792 6.900745 -1.626520 -5.349129 -3.526585 -2.185945 0.115225 3.952880 1.508558 -0.101435 5.397662 0.477899 2.122298 10.556799 5.245940 -4.983995 2.870248 -1.842066 9.563820 -7.518851 -6.593519 -0.872748 5.999682 2.302093 3.671701 -15.972321 -10.115992 -11.414845 -14.233226 -2.426745 1.811726 3.501516 2.471745 -2.433560 -12.400249 -8.328089 13.170748 -0.051585 10.616895 7.777074 3.411431 11.065165 7.172891 0.983108 -2.622395 -0.495388 3.406954 -1.442775 -2.645577 -7.719032 6.523420 -10.605212 7.618616 10.997066 -5.235877 7.441819 0.439924 4.914679 -13.003952 13.627359 4.387888 -12.511485 4.227188 11.240339 8.751677 -7.552367 -7.671172 --2.794362 -7.380493 9.948907 7.241498 0.962591 2.570981 4.479959 -0.232900 1.562346 4.345613 -2.582507 6.552070 -6.211208 -1.551218 1.018327 1.065273 -5.218403 -6.229357 0.839781 -0.423248 -1.858231 -3.712227 -2.568720 7.515692 4.786300 0.307292 -3.551648 -1.333307 -9.703410 -6.145179 -3.448944 -0.658053 4.314782 -0.110472 4.655648 -9.090822 3.607846 7.042469 0.544133 -8.012576 2.164896 -2.793552 0.953397 -0.837966 -1.074262 3.453862 6.465578 2.444716 1.614893 2.532123 -0.608608 -3.175216 2.873239 7.658407 2.494112 5.300176 7.182588 -2.563898 1.789887 -2.055051 1.261654 -6.293536 2.879775 0.835034 -3.080825 -1.685444 0.242921 -1.577713 -2.736719 2.449608 3.878487 -2.455570 -4.389126 -3.524130 -6.278548 -1.981500 1.874392 3.889228 8.803264 -4.811488 8.766815 3.942865 5.419010 0.839992 4.390189 0.067240 4.506230 1.466000 -3.764521 -0.182505 -7.963954 -3.823197 -2.171283 3.982833 -2.524978 -1.785133 2.836782 -7.561826 -8.636897 3.892886 -1.083914 -3.151202 -3.762578 1.438688 3.128146 4.134440 -1.243128 -5.669366 -3.927955 2.138437 -3.799764 -1.661250 0.803779 0.137371 -1.756256 -0.540917 -7.022173 1.574932 4.562551 -3.701704 -2.169468 6.328933 -2.416885 7.274019 0.371070 1.496497 0.340179 4.266900 5.601607 0.700384 0.822549 -4.731625 -7.103398 -1.040051 0.986988 2.341041 -4.148626 -0.786912 1.608477 2.765020 0.982766 3.177802 -1.120459 8.895369 2.564173 -3.963994 -5.684653 -6.951837 -4.088872 -2.987288 1.620737 -2.225449 -2.396494 1.624183 4.090478 0.795874 -0.624365 6.698224 -2.146761 3.504036 0.910768 -1.445779 0.324552 -1.799474 3.373016 -4.475062 -3.087121 3.894740 4.974476 3.813897 0.344299 -1.123302 2.487096 -3.530219 -4.932321 1.496068 0.995033 1.350601 6.915872 4.798289 8.953917 -4.283441 -1.678891 0.259197 -0.558008 -1.565564 0.907356 -5.932987 3.564715 0.215002 -0.017876 7.904280 0.309059 -4.193430 5.329435 0.079993 0.601026 -5.200241 3.842617 -3.818945 0.958557 -2.156999 -1.122629 -4.523863 -2.475788 -5.036054 -1.967695 8.907963 -2.706730 -8.215102 1.691470 -0.612713 5.184921 -10.698500 7.548756 -2.938310 5.324439 -0.995161 -2.620477 0.645780 0.634292 -0.576788 1.025364 2.426061 -3.021960 2.679632 3.580674 1.611034 1.194276 1.790589 3.019559 0.115800 1.765217 -2.047213 1.768489 -1.302257 -1.363040 -2.059235 -1.150466 2.659457 4.064138 -1.444643 0.365347 3.545649 -0.432833 2.626075 5.357308 1.420778 -3.210160 -0.024991 -0.733306 7.931328 -4.916848 -3.314723 -2.932969 2.630294 0.981500 2.777113 -8.700320 -5.735663 -3.199467 -8.721406 -3.408886 1.352551 2.212498 1.868843 -1.126524 -7.236055 -4.165932 5.046882 0.965413 5.585386 4.149705 0.926678 7.085904 2.985811 0.456656 -3.116610 0.661901 1.347206 -2.094110 -1.256863 -3.446490 1.873785 -7.003602 4.979105 6.190728 -3.311082 3.286863 -2.229345 4.260536 -7.607892 8.703319 3.544586 -8.450651 0.725582 5.537351 6.131213 -6.090473 -4.913765 --4.492249 -12.892590 19.232035 13.855106 0.227047 5.306201 7.102614 -1.824141 0.852501 7.351315 -5.177753 12.447853 -10.340026 -1.819150 -0.474197 2.082658 -10.614909 -10.179937 0.569252 -2.398437 -3.945173 -5.758330 -5.100700 14.715436 9.308317 1.225093 -6.760783 -2.991685 -17.218946 -10.660236 -7.054682 -0.439047 7.785725 -0.274848 8.779372 -16.704045 6.878433 13.578748 0.772272 -13.389493 4.950288 -4.999188 0.490518 0.481510 -4.610313 5.837112 10.426879 4.524248 3.479696 4.705215 1.300769 -4.379976 7.150877 15.504667 5.141490 10.320167 11.341046 -5.163229 3.697483 -3.629915 1.599548 -10.650261 4.579046 0.478889 -3.926335 -4.344924 -0.217569 -1.759846 -3.661802 4.490295 7.001617 -5.863116 -7.727904 -6.476232 -10.553977 -3.998026 2.381615 7.132835 15.293961 -7.973249 15.347286 6.503138 7.882967 0.161630 8.345749 -0.049589 8.724303 2.455972 -4.971471 0.606958 -11.481586 -4.587738 -2.290905 7.396215 -6.768645 -6.207628 5.708796 -14.492297 -16.259072 7.275123 -0.732205 -8.047380 -3.506530 2.534921 4.565029 5.929971 -3.135829 -10.225878 -5.986243 5.166020 -5.966283 -3.316986 0.142740 -0.407155 -1.504353 -0.145664 -12.369030 4.947189 7.928330 -5.054418 -3.408706 11.986558 -1.325858 12.055528 0.922782 3.716907 0.302630 8.384663 8.844631 1.335707 -2.183903 -6.420768 -10.456555 0.479016 2.147363 -0.113903 -8.577703 -3.189055 2.647987 5.559103 1.776894 7.472405 -2.058220 16.906303 6.037410 -6.537134 -10.495281 -12.020933 -8.532142 -6.244856 1.414613 -3.456622 -7.767710 1.861329 7.251924 1.855140 -0.513019 9.313926 -1.272110 5.715759 2.305350 -3.344783 1.734349 -4.553825 6.280187 -8.447580 -5.903064 7.565098 8.113735 8.558580 -0.032764 -0.058834 3.689213 -5.717012 -7.217847 3.748673 3.358349 3.965849 13.858557 10.298782 19.321347 -5.036222 -3.002182 0.614753 -2.819688 -2.993530 1.717390 -10.608831 5.021246 1.532019 -1.738782 16.113246 0.305451 -5.453289 10.102010 0.035314 1.948589 -10.768576 7.701404 -6.472247 2.604127 -4.205694 -2.559233 -7.921806 -3.669886 -9.952081 -6.095706 16.603598 -9.911379 -13.832814 4.032551 -1.809741 8.246324 -18.189986 14.231671 -5.540983 9.555098 -1.675477 -5.577042 1.177164 0.665392 -2.583507 4.945068 3.867363 -5.727251 4.610736 7.144848 3.115119 1.924745 2.166065 6.574673 -1.053191 4.740677 -4.488969 4.629443 -1.485305 -2.120757 -3.731468 -1.720391 1.578782 6.671575 -1.297627 1.120449 5.519075 -0.204215 2.586972 9.826323 3.429016 -5.466561 0.537726 -2.761563 12.371395 -9.478628 -7.500825 -3.883741 5.166751 2.638060 3.456494 -17.126885 -9.948985 -9.841354 -14.558749 -4.457174 1.495775 4.723354 3.891449 -3.042340 -13.099239 -9.235636 12.528073 1.064904 10.204102 8.490597 1.748569 13.045092 5.851086 2.212342 -3.325163 -0.382417 3.523603 -2.206085 -1.415451 -7.172379 4.782818 -12.335937 9.718995 12.049890 -6.263594 7.770048 -2.063152 7.427759 -14.787263 15.225772 5.622572 -15.620021 1.965415 10.127131 8.318218 -10.814499 -8.903721 --2.854110 -6.762128 11.817396 7.952773 -0.346076 2.691686 3.341851 -2.257819 1.703118 3.448857 -2.983257 6.452326 -5.959399 -0.782242 -0.452835 1.323297 -7.249065 -6.079490 -0.624145 -2.485314 -3.176207 -3.372094 -2.116907 7.169089 5.419356 1.324011 -4.401783 -0.446520 -9.428343 -7.539151 -2.955905 -0.552003 4.265312 -0.192977 4.883401 -11.260700 5.048116 7.483579 -0.211856 -7.572198 2.967993 -3.140629 -0.259053 -0.469938 -2.216419 3.094792 5.234149 2.040418 2.558247 2.256840 0.440032 -2.229122 2.425962 9.929811 1.809648 5.734845 7.118646 -3.182860 1.085624 -1.083637 1.010898 -5.478952 2.630166 0.981054 -2.615631 -2.970056 1.164368 -2.134668 -2.494467 3.784532 3.106284 -4.485140 -3.647405 -4.762263 -7.268830 -2.157859 2.607933 4.697019 9.342974 -5.187490 8.330588 2.822774 4.417939 0.680914 4.833549 -0.166663 6.492563 1.586535 -2.953440 -0.339215 -5.910635 -3.240276 -1.218869 5.469256 -3.357968 -2.126328 3.963510 -10.219753 -9.287615 3.908217 0.305437 -4.161387 -4.362601 1.145468 2.948410 3.073906 -1.409209 -5.853351 -3.709349 2.978147 -3.693476 -1.389908 0.040401 -0.133594 -1.804162 0.453161 -7.983631 2.850451 4.030583 -2.739615 -3.025954 7.136340 -1.717939 5.859704 0.374642 2.671190 -0.501634 5.210741 3.544919 1.461434 -0.857766 -2.498205 -6.580151 -1.122337 1.430379 1.047649 -4.806806 -1.621681 1.088372 2.832839 -0.958189 3.359486 -3.026238 9.947485 3.777990 -4.149920 -6.705943 -6.244933 -5.000001 -5.460917 0.549946 -2.955624 -4.986823 1.954958 4.598672 2.670215 0.024073 7.240662 -1.965366 3.570241 1.132107 -2.291139 1.573796 -3.623141 3.955418 -5.343130 -3.592700 4.019694 3.697060 4.398792 0.360570 -0.688720 1.892262 -4.796158 -5.298073 3.208596 1.968928 2.204433 7.055301 6.352546 11.416949 -5.298588 -0.952247 1.205442 -1.739109 -1.966149 1.105947 -6.076096 2.452631 1.300578 0.374811 9.538961 0.576650 -3.710530 4.320984 -0.022148 1.419479 -5.923406 3.886093 -3.651572 2.005937 -2.285406 -1.987140 -4.647516 -2.051379 -5.277568 -4.169414 9.658612 -6.463705 -9.557562 4.598619 -0.661093 6.271589 -11.725985 7.308810 -3.521966 7.108955 -1.364818 -2.179555 0.334036 -0.123976 -2.203584 4.107753 2.094687 -3.211760 2.568453 5.102134 2.144750 2.321273 0.477491 4.372786 -1.186353 3.277501 -2.649106 3.475816 -0.986441 -2.420029 -2.409672 -1.242345 0.479779 3.020906 0.002716 0.468774 3.604662 0.420956 2.327952 6.157251 2.796798 -3.469027 1.265884 -1.176389 6.943890 -5.170504 -4.536272 -0.958626 3.720955 1.081440 2.008799 -9.874295 -6.864050 -6.676519 -9.924898 -2.843611 0.550991 2.732730 1.440946 -1.718233 -7.131829 -4.947286 7.587109 0.725227 7.954807 4.661520 1.505544 7.211745 4.342544 0.176773 -2.132025 -0.199832 2.167177 -1.477397 -1.183813 -5.164229 3.507095 -7.051686 4.823921 7.466333 -3.568371 4.563130 -0.526388 3.902119 -8.505203 8.703325 3.297016 -8.677479 1.890916 6.265892 5.463585 -4.680916 -5.337421 --3.377370 -9.524203 17.482844 12.513612 -1.402429 3.845762 4.452463 -3.984680 2.765055 4.614270 -4.215779 8.727599 -9.000546 -0.277071 -1.027053 3.053337 -11.434031 -7.988806 -1.065979 -4.433060 -4.341844 -4.449596 -2.212798 9.975294 8.121881 2.926209 -6.083595 -1.638484 -12.395775 -9.516916 -2.638209 -1.381832 6.702927 1.372263 5.610389 -17.859907 7.598613 10.579946 -1.252611 -10.181972 4.897290 -5.445455 -0.160989 -1.895382 -4.219358 3.461212 6.482558 3.637323 4.345778 3.100004 0.770652 -2.209374 5.675841 15.966844 1.067533 8.383980 9.526502 -4.351174 1.048683 -1.681790 1.528086 -6.570274 4.422183 1.397498 -3.250598 -6.244680 0.273946 -3.646069 -4.088355 5.219056 4.176290 -4.860255 -6.143777 -5.850885 -9.210557 -3.718353 -0.000540 7.454016 13.460529 -8.326770 11.840382 4.335901 5.044842 0.928370 6.669300 0.637349 9.018351 2.385435 -3.683450 -0.350118 -7.762589 -3.545832 -0.082852 6.181034 -5.237345 -6.521859 5.665678 -13.587288 -13.705090 5.503830 1.361340 -6.225875 -4.347365 0.579443 3.469809 4.038751 -3.041288 -8.684680 -4.139224 3.852775 -4.242119 -2.795226 -1.112228 -0.502120 -1.744148 0.026063 -12.104531 4.392282 4.648238 -3.868827 -3.451404 10.206165 -0.842580 7.184206 0.485003 4.258427 -1.403140 8.199459 4.170906 2.738545 -1.165718 -2.363358 -7.579257 -0.223836 3.443817 1.249998 -7.116224 -2.854984 0.470430 3.985992 -1.470558 4.537200 -2.460206 14.031823 5.042284 -5.851532 -8.720057 -8.804873 -7.324832 -8.855033 1.166594 -4.580832 -7.206233 2.828652 6.956369 3.434371 1.722927 9.024438 -2.938833 5.354036 1.284122 -2.701506 3.876426 -3.410633 6.248534 -7.551680 -5.386804 5.738035 5.141813 6.282139 0.000209 -0.168156 2.669841 -6.974932 -5.965439 4.238877 2.850666 1.871790 10.893047 9.120833 18.224324 -6.968621 -0.153451 2.428346 -2.971709 -2.146855 1.872524 -9.238910 3.872985 2.230222 -0.795930 13.442077 0.684898 -5.490399 5.801201 -0.424395 1.904213 -8.661428 5.664238 -5.343005 1.440282 -4.058954 -1.590847 -6.399896 -3.908009 -7.646539 -5.231842 14.128845 -11.507593 -11.064583 6.750737 -0.438048 7.505108 -15.903886 13.047236 -5.890081 9.648158 -2.681100 -4.825823 0.802553 0.035860 -4.504125 5.143549 3.568028 -4.614377 3.618503 7.724474 3.948396 3.267153 0.636540 7.086344 -1.665948 5.727209 -4.228039 6.084746 -1.180086 -3.404357 -3.151437 -2.105079 0.035868 3.439029 0.706056 2.511781 5.486055 1.566075 3.244777 8.310220 5.275550 -5.156953 2.591624 -2.330553 9.415531 -7.286985 -6.105139 -1.013445 4.924386 1.269583 4.085783 -14.976655 -10.460066 -9.925020 -11.283069 -3.422446 1.210153 4.068286 2.002401 -2.006835 -11.444203 -7.741828 10.450353 -0.409665 9.141694 7.011110 2.583281 10.288392 6.710061 0.792775 -3.342582 -0.152954 3.650623 -0.982098 -1.064240 -8.068899 6.426479 -9.486117 6.719123 11.315399 -5.370991 6.093631 -0.836816 6.508168 -11.648067 13.294483 4.388254 -12.232368 3.980953 9.988256 7.331641 -5.945031 -7.538745 --1.809481 -5.299046 7.961201 5.820234 0.141159 1.723787 3.542389 -0.564478 1.477340 2.851805 -1.910081 4.493991 -5.102601 -0.361746 0.131846 1.520386 -4.663079 -4.566310 0.344516 -0.846559 -1.662143 -2.692564 -0.857100 4.838091 4.077883 0.906787 -2.775833 -1.829075 -6.849576 -3.899544 -1.447440 -0.690992 3.469251 0.348896 2.686259 -8.301774 2.905937 5.034385 -0.171493 -5.897234 2.339028 -2.505236 0.735385 -1.032013 -1.099415 2.057526 4.324457 2.714471 1.810776 1.952144 -0.116737 -1.936020 2.354376 7.328518 0.802419 3.939977 4.943542 -1.735921 0.647828 -1.294983 0.909463 -4.027197 2.172106 0.878158 -2.100705 -1.975786 -0.238089 -1.961038 -2.559297 2.128490 2.573249 -1.451726 -3.747212 -2.443883 -3.857571 -1.449629 -0.548536 3.625475 6.820897 -4.236765 6.354716 2.404198 3.316560 0.230215 2.761567 0.266679 3.011431 1.043199 -2.271290 -0.626267 -5.292057 -2.166919 -0.984181 2.280475 -1.978743 -3.021391 2.581719 -4.363607 -6.567241 2.577806 -0.209099 -2.551179 -2.122077 1.129215 1.903836 3.304239 -1.558577 -4.470088 -2.777685 1.439974 -2.072998 -1.299095 0.235639 -0.055502 -1.526811 -1.309304 -5.652031 1.344522 2.667743 -2.823561 -1.488626 4.655640 -1.730263 4.789361 0.434639 1.476103 -0.069447 4.190322 3.795706 0.736623 0.862873 -2.606521 -4.674620 -0.031736 1.605292 2.826770 -3.118077 -0.409772 0.438257 1.874796 0.084972 1.652436 -0.310945 6.466854 2.450069 -3.301219 -4.444802 -4.692959 -2.603002 -3.108257 1.164232 -2.195548 -1.424579 1.580348 3.212485 1.080418 0.272157 5.742840 -2.320840 2.917445 0.699898 -1.262531 1.006926 -0.251531 2.847552 -3.460227 -2.632486 2.616456 3.273562 2.731046 -0.120246 -0.250164 1.582216 -3.297210 -3.082098 1.311193 1.289461 0.436042 5.097333 3.719701 7.189225 -3.344996 -0.896601 0.824368 -0.909483 -1.149761 0.923362 -4.938743 2.742178 0.363772 -0.603958 5.696680 0.286145 -3.227116 4.005636 -0.469044 0.578088 -3.903688 2.713331 -2.865014 0.079427 -2.122389 -0.331995 -2.883050 -2.011853 -3.486562 -1.401558 6.882580 -3.067414 -5.486282 1.569373 -0.546604 3.461627 -7.923030 7.188629 -2.505871 3.588428 -1.107910 -2.157016 0.424928 0.669948 -0.930578 0.925561 1.783994 -1.761963 1.764275 3.898468 1.561446 0.735577 1.229618 3.076652 -0.002599 2.006299 -1.433880 2.007133 -0.899650 -1.289393 -0.984241 -0.904639 1.263317 2.348423 -0.589262 2.167832 2.915517 0.319536 2.497638 3.655136 2.106481 -2.468244 0.613912 -0.836385 5.976854 -3.506299 -2.411947 -1.579521 2.251578 0.421871 2.401029 -6.830335 -5.390819 -2.593838 -6.343248 -1.863434 0.578493 1.926875 0.836516 -0.809868 -5.742800 -3.498523 3.465536 0.002211 4.530337 3.200808 0.821645 5.244654 2.813306 -0.241478 -1.944777 0.743271 1.657413 -0.950354 -0.679836 -2.964508 1.851441 -5.399171 3.278667 5.171795 -2.468583 2.454714 -1.792134 4.003222 -5.646807 6.954319 2.483117 -6.017977 1.615539 4.519764 4.663841 -3.370311 -3.664257 --25.211546 -54.534638 121.143408 83.170891 -6.188797 22.228706 35.672210 -34.238342 34.393195 19.191058 -18.680591 48.604286 -67.201529 7.383898 -19.966647 27.865012 -79.080603 -58.868361 -13.182953 -38.059550 -19.245680 -34.991771 11.907186 47.010299 58.850994 18.463820 -46.688680 -18.603662 -92.772163 -70.145080 6.174594 -15.784424 49.650602 -7.119731 18.741173 -135.434790 61.454367 72.266557 -16.764541 -73.022299 48.503003 -43.140390 5.653496 -19.434779 -24.100892 26.015960 31.218075 16.383639 44.422358 22.921705 3.292544 2.122114 23.709503 101.620744 -23.625852 48.146344 47.918253 -23.975277 -10.279537 -9.025184 4.750817 -27.438481 29.925463 12.439195 -26.548386 -55.375909 -1.012361 -28.530934 -48.444467 40.487957 10.894809 -21.778865 -44.489476 -23.203525 -74.849500 -20.523437 27.032946 50.849500 90.580640 -49.804489 71.329163 6.559186 21.531886 5.076281 32.171888 11.130634 42.885755 14.570134 -16.956444 -16.670192 -57.809875 -10.518402 -3.371070 41.038509 -27.642735 -56.494307 41.434105 -85.740516 -83.167447 23.295340 16.654964 -40.949164 -46.833895 0.181054 21.316793 42.133174 -25.204685 -62.059506 -21.589137 26.930828 -11.359674 -15.386041 3.943747 -18.659924 -22.771428 -23.755821 -79.826865 27.179731 15.427419 -25.125608 -30.235796 66.261637 -22.993000 31.858423 7.157569 41.571711 -25.020184 59.651077 13.123948 27.148248 -0.387280 -12.415691 -47.879642 -23.914582 24.754411 44.380571 -49.593640 -19.959203 -24.489963 18.037164 -26.148517 7.571042 -14.326063 69.043922 51.518772 -48.643435 -49.371870 -38.459711 -34.081842 -76.357692 4.830946 -31.652492 -34.056291 26.837123 48.293095 19.404334 30.464823 90.420518 -30.255204 28.793201 8.283836 -32.669717 44.550042 -14.094478 44.650372 -45.650002 -41.827912 34.048552 19.593549 43.755450 -5.919861 9.923219 15.490825 -56.720184 -31.291173 25.152478 24.948516 8.268901 63.118327 60.867412 81.927058 -51.975133 -1.481586 32.474735 -28.663684 -8.498569 11.807921 -64.729721 25.995858 22.358824 -8.815861 83.963777 2.237774 -44.718734 43.977913 -5.583856 19.827871 -59.350477 28.355411 -41.875818 8.629873 -38.728612 -25.008570 -36.549436 -31.154158 -51.399749 -41.054168 89.622646 -54.549755 -80.126716 49.386931 -2.653927 50.846521 -119.361522 74.937937 -43.584594 64.119226 -13.155881 -7.396121 5.776295 4.327772 -43.748754 22.497298 22.408746 -30.444181 37.249887 67.790079 35.208962 10.045064 -6.442684 57.909466 -8.426232 50.487294 -30.194165 45.933996 -18.680648 -29.720732 -1.929642 -13.104946 -8.026996 6.845523 11.364667 30.823269 36.668294 21.094641 39.855108 58.025534 57.331404 -30.691652 28.041831 -18.256908 61.564510 -34.819618 -36.863627 3.652460 47.723933 4.438595 35.594909 -98.894730 -94.457225 -59.340115 -105.796326 0.184675 -4.546555 20.839590 3.287759 -8.476405 -85.521468 -49.184234 52.180333 -4.336436 92.974152 45.232409 11.142446 59.865778 53.204701 -25.067614 -16.207181 7.307500 31.389443 -0.737453 -15.150194 -58.248726 49.776296 -65.434924 27.400611 83.318034 -44.283673 34.888971 -15.719998 46.241632 -75.021602 99.783643 27.647892 -63.638658 50.153489 50.857157 64.086833 -11.891937 -44.263909 -4.516928 -60.172851 219.254780 143.878904 -47.455455 19.576112 31.846070 -91.509715 77.962857 17.187439 -42.352522 49.461180 -87.617746 26.265350 -39.691821 75.174173 -169.004274 -71.278661 -34.775744 -93.040244 -46.138066 -44.832077 39.468859 36.133144 103.874155 65.070965 -64.988354 -19.878632 -76.970828 -121.905093 35.965716 -33.507565 62.563615 18.168097 37.272273 -220.060003 123.978129 89.398236 -47.281909 -101.514582 75.719245 -55.533694 -5.214812 -41.396039 -35.379680 37.548558 28.167337 78.246575 83.890232 50.584880 6.466793 12.420001 58.218093 186.137697 -49.544506 67.643137 62.443723 -39.222634 -20.106772 7.786384 13.254116 -19.996423 30.556005 20.955442 -6.839586 -116.012978 -10.351572 -61.634880 -63.895052 83.681132 3.521201 -49.260378 -85.104237 -55.675650 -100.367588 -26.570128 -104.473110 116.358920 142.102671 -103.678900 83.450561 15.485069 18.354066 7.338384 31.098687 16.529314 85.694729 30.371768 -10.679927 -17.236883 -50.776452 -46.203853 31.509567 -7.887127 -50.571826 -159.744956 74.130739 -156.733741 -123.708974 38.762129 65.616188 -69.697481 -35.726702 -12.520272 29.836485 43.715444 -42.858302 -83.340865 -4.406874 29.738508 -5.131590 -11.779370 -3.192186 -16.709571 -23.971008 -8.164910 -145.203824 58.773642 5.058225 -17.563487 -20.709859 96.933882 0.415541 8.330278 8.364349 67.767956 -47.715235 122.099561 -1.240077 69.918647 -14.025593 45.505808 -46.238508 33.503337 68.227292 17.199194 -53.081202 -17.121642 -48.130448 32.691708 -78.310289 13.352774 -39.629902 99.534180 77.813098 -74.205328 -93.671579 -49.682705 -81.437514 -136.109872 19.931869 -58.347262 -78.139414 45.163076 77.465779 72.241320 71.723365 96.824961 -75.152362 21.258903 -8.187317 -26.075548 81.215175 -3.465621 78.918839 -68.943541 -49.869407 45.535642 17.488911 58.962974 -2.586098 5.848172 29.359060 -105.431761 -18.082789 60.629960 55.286820 -5.103771 87.978289 107.471617 124.661104 -64.350193 -0.124790 77.401874 -51.892305 -23.083585 35.269779 -103.811980 46.915800 35.633125 22.038127 116.751839 5.403135 -30.327312 48.835875 -22.342037 25.718308 -74.361392 8.524600 -57.239680 -6.300942 -55.137455 13.589406 -63.447311 -39.545585 -64.096624 -74.218849 136.547218 -130.584023 -82.887477 123.107371 -38.312123 72.491527 -138.439604 142.815241 -72.150555 88.340515 -17.055327 -14.728690 1.381377 -24.704889 -93.499188 38.670419 29.305016 -20.475250 35.698845 115.929530 64.581042 14.219307 -18.101165 112.637097 -49.849948 113.074227 -45.408890 92.243488 -37.341536 -37.954739 -6.960327 -14.898274 -48.893705 -24.224377 39.744871 85.491083 32.941575 59.934634 70.408096 63.775710 113.438861 -57.291005 74.647659 -30.279345 62.834106 -62.588254 -60.957886 45.071757 66.132019 -17.911559 50.268634 -160.656613 -149.461071 -153.213371 -109.749940 -10.466708 -35.893998 42.936026 -23.452654 -23.986735 -105.815526 -91.475323 112.051008 -14.192057 62.121685 74.850840 14.054980 89.183925 106.334662 -35.669630 -10.529907 -0.418281 48.121788 22.942268 -21.620317 -110.599459 110.307082 -92.948856 17.597306 156.238761 -74.837539 53.982659 -16.397067 85.253571 -113.882209 133.859776 30.515924 -87.969286 83.582858 115.288788 86.816784 15.051976 -69.699103 --4.779928 -12.995741 21.758879 15.746228 -0.887524 5.321588 5.491950 -3.660399 3.124722 8.084188 -6.061044 11.876111 -10.850682 -2.119365 2.990656 3.231190 -13.793545 -10.637067 0.230454 -4.099572 -5.829872 -6.244842 -6.264979 14.309902 9.415159 3.705096 -7.213849 0.281685 -15.143305 -14.762802 -6.569021 -1.742654 8.268836 3.446595 10.591002 -20.323076 9.820392 13.482622 0.109625 -13.510315 3.695703 -5.787333 0.299040 -1.411788 -3.384549 7.255525 11.125416 5.331360 4.586061 4.459623 0.189685 -6.128591 6.623382 15.943664 4.504872 10.778115 13.398871 -7.004647 2.848333 -3.076965 2.176198 -11.477894 5.774014 1.952651 -5.402950 -6.015424 1.939647 -3.450756 -4.215225 6.159043 8.412595 -7.429528 -7.986192 -9.018075 -11.218242 -5.109356 0.769474 8.108237 17.828476 -9.153691 16.558368 8.018475 9.556697 1.903323 10.317739 -0.222200 13.895608 2.977173 -7.438654 1.730934 -11.415810 -8.981003 -1.300914 10.019340 -5.957357 -3.687190 4.997891 -17.884468 -17.517420 8.276079 -0.017137 -6.770316 -7.913244 1.557071 6.795034 4.766909 -2.024559 -10.977282 -5.844408 4.175022 -9.152637 -3.280967 -1.156209 0.114087 -2.673028 2.477863 -15.410986 4.680258 8.221967 -5.306246 -4.142793 13.206582 -1.263748 11.471556 0.411376 3.940526 -0.328949 9.247880 7.866687 2.760466 -1.287761 -6.158056 -12.129044 -0.539071 2.783798 -0.787977 -7.967273 -5.089612 3.148235 5.851006 -0.917002 7.883053 -3.875211 20.331152 7.183319 -6.625862 -11.772148 -13.056417 -10.504278 -8.380184 3.111805 -5.323147 -8.940752 1.565558 8.715174 2.819884 0.247589 9.729900 -3.610071 7.371867 0.406582 -1.626334 3.004284 -4.414823 7.828026 -9.775501 -4.915371 8.260202 8.599181 7.879677 1.260046 -3.290881 4.890396 -7.752306 -9.719045 6.088843 1.801459 3.790285 14.036848 11.045338 25.854703 -7.676005 -1.292891 1.667024 -1.692802 -3.532261 3.383898 -10.711749 5.696015 1.829438 0.534636 17.620909 0.727570 -7.119242 7.219565 1.069792 1.554256 -11.132076 7.647016 -6.448074 4.335681 -3.643851 -1.339287 -10.448644 -4.733180 -9.913737 -5.159524 18.044404 -10.638341 -16.516917 7.562627 -2.498936 11.626878 -20.276986 14.575935 -7.011555 11.386937 -4.475740 -6.826119 1.292613 -1.011994 -3.385496 6.855337 4.641583 -5.328267 4.124234 6.845902 4.226588 4.383809 2.130873 7.216315 -1.367167 5.261372 -4.588792 5.928795 -1.703231 -1.121805 -5.787046 -2.454841 1.872823 7.208238 -1.311166 -0.874499 6.891059 -0.223895 3.110741 10.517102 3.043910 -6.638199 1.570495 -1.921018 12.870203 -10.399331 -8.112886 -3.179018 5.333842 1.964428 4.443805 -18.802396 -10.128429 -10.080865 -14.638652 -8.368574 5.425265 5.596274 4.714535 -2.425964 -12.933804 -8.441969 16.168839 1.764096 11.525190 8.075780 2.668324 13.686442 7.224466 3.033739 -7.071252 -1.140860 2.542771 -3.037288 -0.985480 -9.634073 7.364897 -12.714134 10.359730 13.360421 -7.618034 7.059273 -2.962320 10.246664 -15.680582 15.967565 6.168554 -16.876330 2.042814 12.900645 10.363508 -11.121773 -9.932025 --12.295227 -18.860686 33.722437 20.824183 -1.790629 7.385193 7.161693 -3.816870 1.339426 5.433428 -7.461963 21.063687 -14.262773 -3.521672 -4.502801 0.507865 -19.109888 -16.168697 -2.647258 -8.386892 -8.350933 -5.118362 -10.331095 23.469880 14.446995 -3.023202 -13.431153 -0.984853 -28.332876 -15.725548 -11.050397 -0.412244 11.799324 -14.159237 12.613778 -39.714156 12.940025 22.652846 -1.009280 -20.924740 10.116854 -10.155832 0.414582 -1.972478 -16.172661 3.416113 14.971004 0.687680 4.428348 4.447045 -0.608382 -1.004137 7.336848 38.583253 6.841079 16.485648 21.976598 -8.842152 0.161906 -4.559537 2.070989 -16.682680 6.386844 -3.309240 -6.523742 -10.261672 2.653185 -4.138448 -4.068730 5.412716 9.462425 -14.350060 -5.227571 -12.215206 -25.349590 -9.259062 21.478449 10.821395 22.607368 -16.746306 22.213288 6.368391 10.418167 8.328149 13.807849 1.866005 15.625239 4.179986 -4.836067 -0.728857 -14.107899 -0.410617 -1.856960 15.451722 -11.521351 -14.375359 12.992624 -29.640584 -25.987869 12.095977 1.383206 -14.415238 -9.419766 -3.464497 5.874299 9.154940 -6.697033 -14.065355 -11.288986 10.901085 -7.813513 -4.552096 1.100338 -2.053842 0.144490 -2.049919 -22.257625 13.092590 13.377074 -3.712097 -8.919060 21.004463 -6.439686 16.186920 0.510434 10.119926 -3.674319 14.593769 9.722974 0.904416 -11.600070 -8.034478 -15.257662 -7.726267 1.334438 2.150733 -15.765381 -6.261639 2.861816 8.046278 1.330296 10.833872 -6.478539 27.846714 5.147730 -8.709788 -15.896874 -19.996263 -17.806290 -15.349151 -2.120075 -5.758775 -19.994386 11.302206 11.571470 7.619164 -0.943525 19.318918 1.516597 11.254201 3.849536 -11.060210 5.017505 -17.460587 10.917471 -14.792517 -10.006442 11.184130 8.840573 17.348960 0.034882 1.255298 5.935771 -11.830071 -12.251029 4.101718 7.859916 7.941296 21.188109 19.338574 34.693712 -14.946708 -4.152775 0.368731 -8.721544 -4.368107 1.139872 -14.086707 -0.162092 6.970510 -5.792592 30.237595 2.608078 -12.489701 12.569618 0.460767 4.080625 -15.954238 13.178275 -8.953573 4.942951 -4.157044 -9.585596 -15.173264 -3.281379 -21.260871 -19.576894 27.553983 -29.728671 -27.563003 9.417461 5.626670 17.926271 -34.472066 22.969961 -9.887967 28.804075 -1.395688 -6.133959 2.222991 0.297684 -8.788852 15.596023 5.466505 -11.350334 5.204330 13.294322 6.776991 7.846552 -1.038730 12.463641 -5.336774 11.354175 -8.821787 8.964474 -4.065386 -11.623307 -6.267964 -2.011738 -0.704229 9.933424 4.359444 -4.441078 7.525148 2.852778 3.147736 21.184086 7.660529 -8.916573 1.536929 -5.731766 19.365365 -13.879387 -13.033264 -3.538275 15.210283 8.029684 3.578398 -29.130709 -17.918929 -27.133961 -26.991136 -1.686452 3.103847 2.517239 3.791925 -5.784150 -22.370554 -14.781335 24.159256 0.515383 27.180550 15.527021 5.688648 21.459382 10.313512 1.667398 -6.024123 2.852220 6.025890 -1.575849 -1.817918 -16.235619 10.961101 -19.484015 12.874454 21.687547 -8.793387 15.018979 4.456154 1.168149 -22.857730 25.037234 7.741436 -27.766668 3.742053 19.285646 12.218790 -15.988963 -14.611067 --2.152549 -8.892358 13.745114 10.305798 0.029379 3.190103 3.736204 -1.185583 1.668674 5.646438 -5.016098 8.127262 -7.212827 -1.089027 2.725863 2.403085 -8.661199 -7.583861 1.118093 -0.793335 -3.317631 -4.391830 -3.611942 9.429482 6.293427 3.501138 -4.740031 -0.091015 -9.998050 -9.029216 -4.476592 -1.321439 5.463170 4.586057 7.150067 -9.857955 5.599145 7.920754 0.757593 -9.185760 2.113037 -3.343529 -0.140143 -1.236025 -0.508122 5.652527 8.323252 4.841310 2.696500 3.367539 -0.436985 -5.609906 3.912650 7.665447 3.565101 6.644910 9.010761 -4.480269 2.798381 -2.630795 1.806635 -8.092717 3.608320 2.625611 -3.950120 -2.970624 1.120168 -2.612778 -2.682701 4.310578 5.918862 -3.414724 -6.023909 -5.676905 -5.011515 -2.034022 -0.155288 5.757769 11.979686 -5.383486 11.089509 5.626207 7.471589 -0.269029 5.833936 -0.468064 8.073906 2.080314 -5.459257 0.147352 -8.698639 -7.134932 -1.639442 6.216243 -3.179108 0.914843 2.749424 -9.945214 -11.033550 4.809607 -0.662910 -3.803053 -4.032031 3.627021 4.828027 3.737767 0.115904 -6.762813 -3.279087 1.809587 -6.556154 -2.153957 -1.445682 0.858870 -2.769145 1.861459 -9.864292 2.064623 5.317458 -4.543429 -1.500009 7.560904 -1.371269 8.304182 0.265457 1.566843 1.078073 5.868805 6.945554 1.336519 1.611621 -5.304158 -7.749126 1.891666 2.348804 0.221992 -5.510831 -2.032915 2.848190 3.573081 -0.054980 3.937991 -2.508692 13.134495 4.462406 -5.299190 -8.794655 -8.942205 -6.278552 -4.100155 2.415705 -4.066399 -4.210805 0.534933 5.408549 1.624679 -0.204628 7.619037 -3.826846 5.313376 0.810849 -0.003176 0.904609 -1.196996 4.662192 -6.371544 -2.977738 5.644954 6.151312 3.331752 0.883884 -2.803332 3.437582 -5.536426 -6.686675 5.407264 0.794782 2.843284 8.779384 6.050824 14.994253 -3.996303 -1.338332 1.012410 0.077379 -3.291270 2.759328 -7.550658 5.279808 -0.070949 1.966456 10.440940 0.640965 -4.702676 4.995043 0.715814 0.626838 -6.833234 5.233568 -3.982249 3.075831 -2.235559 -0.012183 -5.894983 -3.121429 -5.110567 -1.296521 11.633706 -4.232499 -10.991030 3.559014 -2.662174 7.495218 -12.703857 8.563107 -4.395259 6.049629 -2.352873 -4.634241 0.639698 -1.847781 -1.000648 3.271394 3.127433 -2.005861 2.571058 3.852146 2.343178 2.053159 2.763912 3.876103 0.029220 2.727405 -1.636908 2.337281 -0.639487 0.295271 -3.606461 -1.488476 1.749588 5.105498 -2.453289 0.585626 5.016756 -0.248930 3.184121 5.334800 1.488940 -4.542303 0.341957 -1.166161 9.421162 -6.900859 -5.293863 -2.874925 2.377437 0.605212 3.099188 -11.667424 -7.072100 -4.257370 -10.215762 -6.713371 2.329799 4.672037 2.984407 -1.471968 -7.731239 -5.185024 8.627009 1.818706 8.617165 4.803962 1.069186 8.638533 4.004807 1.518065 -5.080815 -0.828170 2.152972 -2.522502 -0.082445 -5.903964 3.632374 -8.155321 6.655230 8.771128 -5.101238 3.923870 -3.577511 7.468372 -10.106340 10.483379 4.666649 -11.447342 0.808150 6.520597 6.346555 -7.126750 -6.832773 --1.188328 -5.917313 23.492714 15.961079 -6.011852 2.127130 -0.758027 -9.801827 7.339135 -0.301497 -3.332269 7.616152 -6.132997 2.936207 -0.246431 7.553817 -19.412539 -7.042740 -4.526275 -10.249555 -6.784708 -2.979882 1.430532 5.222008 9.390757 7.409373 -9.335112 1.034980 -6.001678 -12.932184 3.172257 -2.976467 7.831273 0.601486 5.880711 -32.227605 13.858439 8.844588 -4.464996 -11.647187 6.587160 -5.720659 -0.165431 -5.711288 -8.616109 3.575104 2.531390 4.213101 7.786949 4.188623 -1.734857 3.762166 4.614037 21.908494 -2.778376 6.599953 7.818191 -6.433386 -4.212291 -1.187808 2.259162 -2.051263 4.603043 1.223368 -1.302501 -13.563836 0.152431 -6.471311 -7.308694 8.536162 2.885483 -7.510386 -6.555215 -7.418313 -11.786566 -4.248408 0.849349 12.698466 14.042427 -11.217591 7.601333 0.281451 2.153718 3.689987 5.424118 1.673112 12.361559 3.843342 -0.823841 -0.494169 -3.506254 -6.804127 4.506115 1.529563 -5.490712 -15.276434 6.405448 -17.706165 -12.208435 5.477854 7.817021 -6.311356 -9.746570 -6.348903 5.771654 5.251097 -3.335017 -7.176589 -1.972049 4.015646 -1.971866 -2.372151 -2.087255 -1.148024 -2.291805 -0.435938 -16.199875 7.594859 2.714738 0.867015 -2.406946 10.634405 -2.500497 -0.742381 -1.116085 7.160696 -6.453351 13.382073 -1.682878 6.133829 -3.181892 2.924972 -2.498348 0.468960 4.849047 2.447986 -5.665927 -6.740531 -5.541435 3.954417 -8.863099 2.031262 -3.736861 12.019890 10.434014 -4.148724 -11.118566 -6.955907 -10.387373 -16.284637 0.487801 -6.624764 -8.606771 10.435871 8.391451 7.790908 7.242533 9.064087 -6.670118 4.799227 -1.654060 -3.068761 9.675427 -1.699195 7.792532 -7.590323 -4.481519 6.323884 0.342792 8.259332 0.869103 -0.610552 3.761656 -9.675381 -5.770049 7.708228 7.108874 3.844454 7.893847 11.301166 19.268325 -7.675285 -0.676588 6.807721 -5.553346 -2.618117 2.885320 -8.437094 1.475517 4.395666 0.759963 15.558090 -0.047948 -5.750654 2.574310 0.709199 2.773239 -6.712020 2.092772 -4.885683 3.050280 -4.406546 -2.962382 -8.854496 -2.294381 -9.767704 -10.878222 15.846343 -17.572030 -14.051007 14.852584 -5.790612 11.470560 -18.225765 12.241656 -7.523982 13.037993 -3.781202 -2.294369 -0.067137 -6.452292 -11.699983 8.907287 3.717952 -2.543883 -0.315634 12.530807 6.852704 2.504592 -3.953318 10.396910 -4.136082 13.441568 -4.605976 11.228613 -4.839074 -2.088737 -2.308203 -1.234387 -5.198917 -2.095727 4.730349 4.360714 2.794780 7.873064 5.937495 8.999428 10.491273 -7.273351 7.227382 -2.979868 5.631061 -6.265233 -6.812455 4.943389 10.234347 -0.338927 3.445370 -16.221524 -14.402779 -20.588457 -13.342523 -1.953015 1.132816 3.162620 -2.634692 -3.807745 -9.601124 -8.323042 14.584319 -0.715488 13.695346 8.189462 1.734070 10.162810 11.056511 -4.393334 -3.061411 -0.190661 2.308636 2.454284 -0.929319 -14.664274 13.521538 -8.373017 2.239354 17.533494 -7.561734 7.004042 -0.467523 8.059865 -10.475432 14.346856 2.776058 -11.117627 6.344172 10.714556 7.136453 0.244408 -8.174211 --2.708222 -5.177638 8.474954 5.824457 0.245675 2.021933 2.985957 -1.444060 1.797326 3.012795 -1.798572 4.803003 -4.756365 -0.722061 -0.487538 1.285520 -4.742035 -4.630976 -0.137920 -1.793684 -1.863349 -2.690225 -1.444197 5.120936 3.932855 -0.005043 -3.199404 -0.825465 -7.356096 -5.850691 -2.136111 -0.676571 3.363690 -1.765108 2.828682 -9.309637 3.780254 5.936992 -0.364207 -5.999120 2.456110 -2.705943 0.476533 -0.428967 -1.950029 2.077311 3.992289 1.184682 1.933057 1.860445 0.399935 -1.058366 2.301130 7.962432 0.753696 4.390960 5.150428 -1.961615 0.179623 -0.917491 0.780572 -3.978028 2.373252 0.472597 -2.133610 -2.463043 0.350089 -1.109882 -2.579450 2.222398 2.045572 -2.807867 -2.904695 -2.718970 -5.752203 -1.995273 2.474926 2.928524 6.960041 -3.892951 6.446892 2.230863 3.100666 1.025430 3.445664 0.182021 4.122067 1.132768 -2.331014 -0.448698 -4.626680 -1.755018 -0.909173 3.778974 -2.346040 -3.120547 2.909799 -6.951410 -7.002586 2.894051 0.063271 -2.934401 -3.571993 0.035304 2.272006 2.924450 -1.639401 -4.726586 -2.958341 2.160035 -2.339011 -1.404815 0.541407 -0.837358 -1.051890 -0.371550 -5.913806 1.782037 3.043810 -2.337394 -2.492887 5.315795 -1.529436 4.546054 0.335336 2.250846 -0.541641 3.692461 2.718992 1.254355 -0.690900 -2.092732 -5.129629 -1.586565 0.891903 1.218341 -3.471355 -1.109528 0.295382 2.028139 -0.269197 2.543820 -1.628271 6.848376 2.902755 -2.790909 -4.134806 -4.677460 -3.333080 -3.955253 0.797129 -1.948944 -3.207899 1.412950 3.497780 0.940047 0.381879 5.546437 -1.382472 2.602302 0.699751 -1.916011 1.590256 -2.577052 3.138747 -3.668997 -2.894633 2.964110 3.334353 3.552580 -0.012724 -0.207134 1.551305 -3.253340 -3.435177 1.277846 1.342982 1.145809 5.381301 4.378807 8.501118 -3.977360 -0.648737 0.781884 -1.330645 -0.759053 0.439445 -4.765095 1.778207 1.157211 -0.280516 6.986399 0.347287 -3.368183 3.668799 -0.077654 0.938234 -4.488972 3.015673 -3.146145 0.883392 -1.781892 -1.682058 -3.571508 -1.837763 -4.414058 -2.878724 7.087925 -4.225074 -6.720406 2.771887 -0.091011 4.188112 -9.017441 6.246398 -2.748008 5.204609 -1.180529 -1.485962 0.520042 0.729575 -1.659625 2.031634 1.845745 -2.640598 2.469446 3.886920 1.758002 1.499367 0.400360 3.280477 -0.602788 2.341830 -2.187784 2.613345 -1.104643 -1.961240 -1.391418 -1.009042 0.936497 2.328531 0.051179 0.257126 2.779014 -0.091005 1.866732 4.891161 2.253857 -2.510415 1.200613 -0.883399 5.473388 -3.527324 -2.786978 -1.236073 2.855060 0.870576 2.245073 -7.402665 -5.039947 -4.399135 -7.305852 -1.438858 1.029893 1.544170 0.990308 -0.886493 -6.111140 -3.632948 5.446140 0.230029 5.533075 3.577004 1.296448 5.375187 3.131601 0.039229 -1.848141 0.103635 1.146765 -1.110374 -1.337797 -3.217405 2.500035 -5.268530 3.619501 5.134026 -2.666124 2.893415 -0.668073 2.441334 -5.958359 6.937474 2.464090 -5.922125 1.764983 4.641925 5.012225 -4.092712 -3.758814 --1.251092 -2.913619 3.995690 2.894063 0.644164 0.855051 2.334059 -0.170814 1.510618 1.720144 -1.181950 2.183639 -2.964933 0.006389 0.080678 0.910577 -2.180991 -2.910133 0.622415 -0.207518 -0.720754 -1.928561 0.036174 1.900351 2.019971 0.123406 -1.416077 -1.346741 -4.139252 -1.826859 -0.078283 -0.725487 1.897671 0.009799 0.861916 -4.875586 1.430520 2.402881 -0.149229 -3.594382 1.294831 -1.712482 0.626980 -0.405764 0.310227 1.113915 2.484528 1.934321 1.137036 1.215316 0.116936 -1.246510 0.443025 3.966379 -0.285656 1.998938 2.524552 -0.793392 -0.199508 -0.445855 0.600418 -2.162209 1.554577 1.217003 -1.611701 -0.895202 0.040946 -1.260836 -2.214935 1.226259 1.311123 -0.267291 -2.028254 -0.860520 -1.458916 -0.649055 0.094137 1.829636 4.099910 -1.991190 3.734483 1.108914 2.294869 -0.136544 1.281090 0.170805 1.436941 0.488968 -1.714041 -1.139254 -3.722300 -1.091295 -0.922957 1.284731 -0.437114 -1.000695 1.247244 -1.305829 -3.324463 1.062588 -0.359761 -0.800501 -1.756974 1.208787 1.455029 2.321709 -0.828260 -2.705059 -1.829840 0.569069 -1.407428 -0.735491 0.284943 -0.603414 -1.490949 -1.466462 -2.948331 0.019645 1.326460 -2.052813 -1.178060 2.437404 -1.807242 2.586003 0.331847 0.760422 0.102792 2.208349 2.149907 0.275243 1.591993 -2.006789 -3.389648 0.017508 0.843862 2.915312 -1.642964 0.165843 0.113585 0.749589 -0.239474 0.167595 -0.205155 3.093831 1.933796 -2.152003 -2.400995 -2.350326 -0.166599 -1.675516 0.875323 -1.543594 0.124420 0.317569 1.930002 0.693828 0.409555 4.222441 -2.024781 2.108883 0.352849 -0.584118 0.618763 0.510118 1.694930 -1.882859 -1.502573 1.121123 2.072605 0.731930 -0.098645 -0.397872 0.760155 -2.342186 -1.856049 0.709003 0.752429 0.248837 2.429836 1.584534 3.637184 -2.645920 -0.400743 0.644748 -0.208538 -0.632423 0.484217 -2.983824 1.834991 0.107487 -0.013544 2.798043 0.239849 -2.324855 1.938821 -0.186177 0.263424 -1.992179 1.311794 -1.711112 -0.234949 -1.136924 -0.188200 -1.484046 -1.324149 -1.567647 -0.172585 3.565621 -0.094350 -3.507124 0.657357 -0.903134 1.842069 -4.927092 3.881589 -1.606935 1.500616 -0.978607 -0.754260 -0.100945 0.827928 -0.299465 0.355102 1.094747 -0.656300 1.647025 2.644391 0.970645 0.519705 0.881639 1.698195 0.353478 0.641549 -0.472952 0.952860 -0.614397 -0.693343 -0.148809 -0.701233 1.200514 1.342594 -0.555992 1.744253 2.158853 -0.186463 2.168028 2.040906 1.193132 -1.376396 0.539825 -0.397107 3.772379 -1.508451 -1.067319 -1.069811 0.971023 -0.089524 1.533237 -3.501716 -3.433965 -0.253253 -4.368844 -0.758416 0.166376 0.912666 0.329245 0.105422 -3.608083 -1.378194 0.790141 0.026754 3.655372 1.517105 0.416125 2.626378 1.611228 -0.899661 -1.336515 0.531868 0.744856 -1.085255 -0.695123 -1.356433 0.674558 -2.985644 1.828254 2.528544 -1.288976 0.680053 -1.263060 2.443759 -2.779662 4.047171 1.698579 -2.737348 1.196679 1.576719 3.574796 -1.541292 -1.947410 --2.926969 -9.562593 16.161323 11.636209 -0.053918 3.277572 4.666345 -2.440134 3.240238 4.817941 -4.744158 8.663120 -8.470440 -1.030821 0.973199 2.987491 -10.371509 -9.001384 0.705096 -2.098565 -3.246186 -5.148720 -1.962178 9.450281 7.538923 3.243737 -5.652921 -1.085650 -12.477954 -9.959695 -2.795136 -1.766988 6.432346 3.626822 6.401919 -13.759602 6.851531 9.049773 -0.197073 -10.993765 3.725905 -4.836860 0.335003 -2.699878 -1.251125 5.440755 8.057794 4.024073 3.929347 3.782933 -0.779618 -4.256528 3.851076 10.472761 1.789597 7.132823 9.162809 -4.591672 2.111928 -2.257741 1.931492 -7.711411 4.457620 2.684708 -4.400219 -4.640297 0.339723 -3.971031 -4.341574 5.407937 4.541451 -3.580468 -6.863675 -5.183302 -7.818255 -2.442064 -0.309650 7.582285 12.959290 -7.275079 12.005390 4.644557 7.376270 -0.070952 5.929555 0.296306 8.112517 2.424767 -5.024874 -1.554577 -10.302009 -6.463013 -1.898700 5.244358 -3.364939 -0.842382 4.392678 -12.027834 -12.352758 4.856329 0.225545 -4.634980 -5.734166 3.207483 4.726809 5.382721 -0.779912 -7.923217 -3.764261 2.928015 -5.660868 -2.237076 -0.890759 0.198243 -3.404100 0.035752 -11.354401 2.786612 5.027302 -4.655249 -2.669220 9.069858 -2.577763 7.631834 0.394424 2.664084 -0.276300 7.735679 5.958804 2.131790 2.133794 -5.160905 -9.767467 1.339688 3.393880 2.613707 -6.654511 -1.286356 1.255685 3.613870 -1.411529 2.670016 -2.852404 13.213430 4.894436 -6.816615 -9.628120 -9.124633 -6.196863 -6.489484 2.067061 -4.805299 -3.902838 3.316432 6.563039 3.350692 1.219919 10.315896 -5.167492 5.609578 0.993996 -1.413663 2.311956 -1.168127 5.603984 -7.138385 -4.104525 5.965850 5.708884 4.390542 0.469914 -1.791870 3.610282 -7.134871 -7.284399 5.500577 2.083581 2.818139 9.590527 7.447745 13.099253 -6.919607 -1.613569 2.334425 -1.040190 -3.319693 2.428760 -8.854286 5.914611 0.563601 1.551739 11.403898 0.579772 -5.700192 5.443986 0.196581 1.366586 -7.571078 4.646777 -5.163039 1.924989 -3.136194 -1.645105 -6.243368 -4.204854 -6.268661 -3.248317 13.286055 -5.350480 -12.198497 5.243318 -3.229794 8.121088 -15.715733 9.717991 -5.522484 7.476974 -2.007401 -3.721841 -0.148144 -1.018113 -2.694363 2.593830 3.581781 -3.415776 3.806339 6.787470 3.497192 2.206761 1.923403 5.578826 -0.396857 4.540230 -2.317977 3.687071 -1.821001 -1.429998 -2.794973 -1.918695 1.532235 4.373170 -1.522321 3.195219 5.708679 1.227954 5.185627 6.950660 4.160901 -5.284019 1.080537 -1.748032 10.469439 -6.903109 -5.966409 -2.051959 3.546183 0.390800 3.597612 -13.376855 -10.645112 -6.421674 -12.744244 -4.983808 -0.018590 4.400042 1.828099 -1.536254 -10.322622 -6.147588 7.505886 1.265779 9.819984 5.701252 0.978491 9.707643 5.629262 -0.522332 -4.659619 0.134795 3.022173 -2.163494 -1.126491 -7.410445 4.897174 -9.670996 6.352904 10.920898 -5.755824 4.533814 -3.023729 7.278258 -11.037784 12.575248 4.947591 -12.103863 2.536527 7.269841 7.113646 -5.960289 -7.561241 --3.603075 -17.129941 26.361110 19.564328 -0.777028 6.638184 8.535337 -2.841409 0.988099 8.579845 -8.244111 15.700791 -12.821293 -2.699550 2.306599 2.707826 -16.344364 -13.430723 1.033351 -3.274313 -5.189036 -6.982933 -7.580807 19.600996 12.175024 2.875120 -8.273361 -3.093815 -20.677428 -12.399162 -7.726116 -1.343774 10.305762 5.859529 12.893634 -21.909528 9.582871 15.926436 0.904817 -16.690569 4.952290 -6.569861 -0.359334 -2.037765 -4.882220 8.293479 14.270104 7.531257 4.326993 6.003594 -0.681647 -7.746811 8.972279 19.465963 7.198026 13.143467 16.516257 -8.032851 6.457943 -4.419073 2.913109 -14.411259 6.280015 1.663790 -4.782089 -6.439088 -0.081031 -4.752523 -3.512342 6.735228 10.794033 -6.459949 -10.545044 -9.228824 -13.869137 -5.445649 -1.428370 11.603339 21.076859 -12.124737 20.669002 10.085704 12.460888 0.375223 11.697825 0.538150 13.721122 3.947661 -7.693506 2.364664 -17.226343 -10.358183 -2.430719 8.284712 -8.205081 -6.216325 6.365319 -21.108711 -21.195758 10.469908 -0.573233 -9.502404 -4.323703 3.534325 6.489170 6.433597 -3.084057 -12.680725 -6.946358 5.314204 -9.691325 -4.119834 -1.073081 1.724396 -2.242936 1.029444 -17.777962 6.482829 10.472041 -6.605691 -3.011718 15.916021 -1.467207 15.114229 0.419686 3.425831 -0.134152 11.509243 11.332075 2.071231 -0.211741 -9.281924 -15.221817 2.021434 4.176014 0.545899 -10.478912 -4.640733 4.789272 7.987755 1.356620 9.742399 -1.481792 24.049161 5.879178 -9.111734 -15.084550 -17.236333 -11.969758 -7.947346 2.966698 -5.707789 -10.211676 3.211400 10.176804 4.582470 -0.229450 10.647881 -2.476944 8.730565 1.359788 -1.808995 1.771281 -5.421867 8.405599 -11.460249 -6.274777 10.152556 10.143264 10.103179 1.658420 -2.616248 6.083609 -8.841888 -11.405387 6.104151 3.514528 4.198110 18.209762 13.725803 24.721233 -7.863802 -3.065543 1.321548 -2.589483 -5.016145 3.907862 -13.549940 8.284714 1.164231 -1.102781 20.277270 0.639728 -7.360299 10.849667 0.433566 1.604441 -12.795096 8.677108 -7.693941 3.557342 -5.427964 -0.745685 -11.688610 -5.861266 -11.723318 -6.468086 22.253769 -12.940687 -17.726888 6.601619 -3.194467 11.717848 -23.676105 18.981064 -7.967843 12.978970 -2.891819 -9.541680 1.242559 -0.371590 -4.093641 6.858257 5.670799 -7.692085 5.048366 7.959945 4.675116 3.802823 3.633857 8.649132 -1.605589 5.996656 -5.491508 5.763725 -2.088640 -2.061534 -6.722161 -2.502259 2.823692 8.854497 -1.377832 1.477581 6.992338 1.276050 3.864043 12.911067 3.641117 -8.175914 -0.361205 -3.559864 16.523648 -13.260938 -10.204880 -5.086148 5.206704 2.760910 4.234855 -22.797905 -13.017357 -14.077066 -16.234578 -9.106163 2.596815 6.837546 5.628682 -3.580336 -17.207000 -11.248881 14.086621 1.421357 9.121883 11.390477 2.189713 17.453909 7.718125 3.846652 -6.804465 -0.309850 5.465116 -3.288269 -0.621027 -11.805237 7.529471 -16.436312 12.927755 17.176078 -8.372401 9.492340 -2.182376 13.185930 -19.221686 19.944679 7.804662 -22.718122 1.246886 15.913139 9.013486 -13.047692 -12.260802 --0.488607 -1.918109 2.875481 2.147603 0.016478 0.598503 1.303552 -0.381632 0.823612 0.603266 -0.976968 1.273540 -2.062996 0.073136 -0.344891 0.511063 -1.884716 -1.863406 0.133464 -0.330372 -0.444978 -1.141859 0.039239 1.480023 1.415684 0.700063 -0.908648 -0.668455 -2.720186 -0.900843 0.146376 -0.452247 1.228360 0.974756 0.664306 -2.560212 1.050543 1.726336 -0.233129 -2.067962 0.883561 -1.265663 0.122226 -0.741101 0.040758 0.735077 1.340823 1.339226 0.770408 0.566481 -0.033367 -0.808454 0.441171 2.346316 -0.235260 1.404222 1.742191 -0.413382 0.222817 -0.324528 0.393962 -1.127156 0.877360 0.784736 -0.990548 -0.848349 -0.174829 -1.108526 -1.101721 0.983954 0.721404 0.036025 -1.485978 -0.691430 -1.297002 -0.421210 -0.773979 1.396137 2.751435 -1.557163 2.375837 0.853197 1.389872 -0.207598 0.928036 0.239817 1.124221 0.426723 -0.924298 -0.327928 -2.389409 -0.664523 -0.350481 0.644547 -0.605377 -0.923056 0.976413 -1.778168 -2.361438 0.671139 -0.033737 -0.759289 -0.435349 0.995826 0.597840 1.149391 -0.622610 -1.716408 -0.634203 0.381149 -0.680367 -0.437597 0.060825 0.091315 -0.720299 -0.848407 -2.189261 0.284853 0.692308 -1.258093 -0.262152 1.707390 -0.717840 1.474151 0.175775 0.357677 -0.107602 1.734788 1.136830 0.234477 0.636761 -0.907717 -1.760162 0.190337 0.850577 1.638477 -1.315314 0.018843 0.200625 0.540010 -0.229084 -0.008820 -0.178653 1.932302 0.768093 -1.615586 -1.582782 -1.609063 -0.742795 -1.433362 0.423126 -1.037151 -0.399721 0.276589 1.355003 0.831351 0.480906 2.641794 -1.071524 1.075260 0.231690 -0.358952 0.527700 0.278275 1.164302 -1.233191 -1.097238 0.973527 0.939390 0.661541 0.089970 -0.176179 0.437475 -1.677092 -1.031191 0.772719 0.502555 0.001470 1.950103 1.315645 1.593488 -1.445585 0.062279 0.563096 -0.200640 -0.402914 0.491904 -1.993248 1.358831 0.120021 -0.019392 1.729310 0.153274 -1.132256 1.172391 -0.279291 0.316864 -1.540390 0.725777 -1.049251 -0.104813 -1.155137 0.454966 -0.866527 -1.028394 -0.918102 -0.341959 2.427487 -0.785796 -1.796438 0.650571 0.027355 1.319852 -2.773285 2.096283 -1.127243 1.522262 -0.332304 -0.668322 0.174723 0.101054 -0.435687 0.127577 0.755116 -0.554540 0.874453 1.367664 0.776907 0.311731 0.622647 1.321317 -0.026996 0.680533 -0.532280 0.682783 -0.189866 -0.708074 0.033265 -0.514782 0.411665 0.662628 -0.089903 1.536269 1.400063 0.445470 1.390072 1.134635 0.998029 -0.960290 0.149788 -0.299920 2.189788 -1.170494 -0.816413 -0.561769 0.634990 -0.099130 0.887324 -2.493573 -2.561453 -0.777421 -2.392042 -0.557191 -0.386290 0.734385 0.346332 0.004052 -2.271943 -1.200813 0.727020 -0.262601 2.052643 1.066068 0.337038 1.773780 1.207909 -0.522026 -0.775524 0.550964 1.048809 -0.453784 -0.076994 -1.403585 0.836422 -1.900513 1.076641 2.055366 -1.058661 0.656114 -0.642892 2.024728 -1.923392 2.755581 1.069347 -2.191592 0.965145 1.472467 1.863898 -0.412647 -1.341397 --3.955140 -13.527577 17.873816 13.547408 0.196420 6.741814 6.285825 -0.239809 0.110646 7.934445 -4.799402 12.522724 -9.178774 -3.084169 1.759299 0.763289 -9.543084 -9.355385 1.662956 -1.201959 -3.509249 -5.935775 -7.484460 16.650587 7.737360 3.900622 -5.661703 -2.135576 -16.884865 -9.621654 -7.616498 0.053171 7.377521 3.519015 10.785965 -12.919939 5.769713 13.045885 2.271950 -13.520581 2.750641 -3.703751 1.246254 1.813775 -2.952998 7.172940 10.475139 4.109472 2.457401 3.726883 -0.539113 -5.764605 8.201448 12.141971 7.338135 9.973183 11.321910 -5.378178 6.324735 -4.254966 1.720697 -11.059297 3.932807 0.495779 -3.720845 -2.997700 -0.572859 -1.207676 -2.129511 4.170729 8.118954 -5.526889 -7.556124 -6.436714 -9.859177 -4.069871 -0.727673 7.481491 14.494894 -7.126582 15.576687 7.476933 9.638699 0.010725 9.872377 -0.386464 9.626793 2.533401 -5.925808 2.564892 -12.380427 -5.452544 -2.812295 6.541097 -7.181849 -3.112878 3.793315 -14.810258 -15.910989 8.347908 -1.943673 -6.692963 -2.422292 2.970786 5.341774 4.821045 -2.238691 -9.624436 -5.495890 5.551911 -7.524681 -3.299551 -0.402718 0.845467 -0.812363 1.618149 -10.400607 4.511565 8.295547 -4.736955 -2.591175 12.112184 0.617935 12.776627 0.675781 2.298862 1.009424 6.645962 10.424138 0.594760 -1.924240 -8.351651 -9.912679 2.397061 0.722351 -2.189443 -8.738125 -4.531779 4.158483 5.875052 3.641523 8.066077 -1.700256 16.523677 4.974881 -6.063239 -9.366460 -12.570805 -8.649880 -4.758412 1.132848 -2.830205 -7.467638 1.105680 6.642430 1.906255 -1.625328 5.165073 -1.056399 5.399168 2.132496 -1.143349 0.004312 -1.951640 4.625251 -8.116213 -4.894141 6.780598 8.028332 8.024219 0.181987 -1.669880 3.328624 -3.199882 -6.824585 4.950481 2.403818 4.547953 14.477041 9.894891 18.664287 -4.387014 -4.158280 -0.733116 -2.662816 -3.365077 1.477579 -9.672193 5.975281 0.954326 -0.975099 15.250729 -0.991096 -3.406303 9.818044 1.210769 1.927043 -10.440845 8.150211 -6.552283 2.192434 -3.871469 -2.175208 -9.008412 -3.636475 -10.208798 -4.920496 16.077428 -8.968828 -12.301090 3.336228 -2.842049 7.149554 -15.613079 11.209639 -4.940330 7.412720 -1.293390 -6.668558 0.475455 0.060621 -1.067321 3.919990 4.000500 -7.273264 4.478587 4.565780 2.345752 1.449645 3.280040 4.904239 -0.459758 2.594843 -4.870865 3.913687 -1.298133 -0.220032 -4.771145 -1.856328 3.047355 7.745797 -2.787115 -0.766163 4.793165 -0.758860 0.211913 8.976402 0.414453 -5.246254 -1.230766 -3.020999 11.815000 -10.043775 -7.417618 -5.602480 3.462786 3.394405 2.214853 -16.599593 -7.341153 -8.392484 -11.937238 -7.074008 1.953864 4.499781 6.042166 -2.701426 -12.603371 -9.012701 11.227540 1.981820 6.295834 7.244190 0.981872 13.446237 4.883911 4.182274 -4.140208 -1.013566 2.146905 -3.126264 -0.662894 -6.670752 4.263791 -11.199135 10.300128 11.232144 -5.667116 7.715884 -2.378677 7.306752 -14.746113 14.389601 6.237293 -16.102904 -0.703881 9.345418 7.451317 -11.576399 -9.132129 --4.162826 -12.696665 17.345843 12.955811 -0.559090 5.942569 5.709974 -1.481479 -1.367771 6.522355 -4.893902 11.886767 -9.008087 -2.764902 -0.325700 0.097056 -9.395440 -8.429771 0.010293 -2.248342 -3.591576 -4.675147 -7.297025 16.284581 7.892547 1.851363 -5.646243 -2.004868 -16.151786 -8.673381 -7.948730 0.662320 7.006326 2.228973 9.657827 -13.200983 5.283489 13.428822 1.332209 -11.339411 3.464232 -4.116821 -0.129170 0.895459 -5.464040 5.382132 9.335179 2.271176 1.885099 3.221066 1.010471 -4.614413 8.225065 13.320792 7.102202 10.255295 11.222324 -5.004631 5.911612 -3.757079 1.308912 -10.083325 3.892985 -0.824380 -2.914500 -3.391500 -0.563684 -0.956640 -1.175925 3.639770 6.724571 -5.969834 -6.553321 -7.135883 -11.318489 -4.479272 0.464740 6.308358 13.412430 -7.582918 14.493915 7.398171 7.324167 0.410898 9.429355 -0.052635 9.065588 2.411309 -4.341050 3.591095 -9.877597 -4.215007 -1.895309 7.404305 -7.953927 -5.169429 5.265697 -16.641614 -15.611361 8.070244 -1.205254 -8.074827 -1.434903 1.739371 2.978801 3.641852 -3.188909 -9.128836 -5.281623 5.689415 -5.444028 -3.186002 -0.332037 1.312236 0.414091 1.454661 -10.792181 5.621451 8.217555 -4.079636 -2.372598 11.958747 1.242003 11.898614 0.573531 2.662529 0.262502 7.262013 8.095627 0.762048 -4.391820 -5.810571 -9.471220 0.065917 1.412767 -3.098690 -8.431526 -4.280924 4.220703 5.780570 3.387124 8.977655 -1.448883 16.426328 3.930030 -5.073008 -8.990799 -12.307482 -9.910929 -5.476095 0.332717 -2.136056 -9.073097 1.707811 6.415581 2.220798 -1.659907 5.328801 1.602268 4.137902 2.086032 -3.061336 0.415476 -5.639703 5.109390 -7.773671 -5.490117 7.474816 7.277530 9.272739 0.936815 -0.135128 3.031922 -3.380756 -6.627379 3.602338 2.797501 3.816273 14.475726 10.634930 17.933472 -3.655195 -2.439870 -0.890340 -2.899853 -2.474914 1.215344 -9.019104 4.362661 1.545330 -2.876818 15.212226 -0.179424 -3.090271 9.368880 -0.061467 1.958250 -10.537981 7.758571 -5.850949 2.790347 -4.387766 -2.022586 -7.847992 -3.412453 -9.652290 -6.431176 15.501753 -11.962079 -10.834608 3.658252 0.499849 7.014688 -15.047548 11.824308 -4.537352 10.264133 -1.080304 -6.883645 1.414711 0.636240 -1.849244 4.807525 3.607770 -7.387260 3.406468 4.471787 2.283094 2.092606 2.250154 5.594217 -1.516079 3.560767 -5.395632 4.137781 -0.383735 -1.908708 -4.473935 -1.699425 1.696597 6.825536 -0.940272 -0.681018 4.566120 -0.097810 -0.417843 9.694665 1.478852 -4.715991 -1.168627 -2.597224 10.479618 -9.883069 -7.368729 -4.356083 4.429567 3.487378 1.694500 -16.082126 -7.298991 -11.148016 -10.182967 -5.219598 1.807680 4.117874 5.449280 -3.399618 -11.699735 -9.345314 12.543637 0.478414 5.508742 7.850101 2.102059 12.836599 4.943376 4.605847 -2.805872 -0.553795 3.568544 -1.997551 -0.240997 -6.978091 4.632774 -10.859369 10.022864 10.761801 -5.351278 8.621741 0.646687 6.769211 -14.196490 13.553806 5.057143 -16.110273 0.484879 11.233791 5.241614 -11.147331 -8.254087 --7.958040 -13.131096 20.349409 13.282358 0.911116 5.352669 6.066629 -1.314815 1.678701 7.231651 -5.292494 13.673299 -10.148011 -2.760420 -0.224717 0.930543 -10.635877 -11.410203 0.102268 -3.159550 -5.105203 -5.578294 -6.927506 15.220970 9.014627 -1.421924 -8.337443 -0.534581 -18.762124 -13.515754 -8.622816 -0.482397 7.703766 -6.638625 9.049779 -21.951369 7.835403 14.356530 0.784123 -14.595788 5.202612 -6.013404 0.797018 0.375673 -6.182108 5.093222 11.606035 1.495570 3.208191 3.787676 0.051384 -3.725686 4.516274 20.021838 5.121076 10.802136 14.098022 -5.837743 1.291114 -2.937024 1.528205 -12.362712 4.802567 0.125530 -5.574823 -4.313179 2.465069 -1.670579 -3.577370 4.551416 6.653891 -8.821792 -5.076243 -7.968873 -14.375130 -5.034588 11.926023 6.688288 15.985366 -9.095683 15.944410 5.407993 9.147810 3.524018 9.345252 -0.329437 10.891852 2.395796 -5.932849 -1.102858 -11.002006 -3.901830 -3.358962 11.812440 -6.005040 -3.505223 6.575459 -17.859757 -17.101037 7.644791 -1.194303 -7.623526 -8.444593 0.695449 6.021368 6.516546 -2.262810 -10.362112 -8.252971 6.276743 -7.531442 -3.090676 0.772257 -1.702750 -1.815279 0.384403 -13.792211 5.531988 9.129023 -4.793238 -6.601969 13.180895 -4.312257 12.853312 0.863609 5.394649 -0.127345 8.060526 8.503101 1.086969 -3.451419 -7.380265 -13.300283 -3.884996 0.369653 1.006656 -9.681298 -3.011067 2.992291 5.137898 0.919252 7.250282 -5.098276 19.059992 5.757815 -6.344777 -11.015984 -12.992160 -9.309458 -7.721412 0.504763 -4.181690 -9.968359 4.042887 7.514755 3.042421 -1.678327 13.209041 -1.565071 7.696498 2.650581 -5.238648 1.852164 -9.133878 6.686023 -9.801339 -6.255609 7.371372 8.260773 8.958435 -0.010821 -1.024477 4.100912 -7.163418 -9.615574 4.140236 3.390182 5.570396 13.532743 11.016898 23.251132 -10.061643 -2.867756 -0.092206 -3.567600 -3.223753 0.910757 -10.234229 2.883859 2.966651 -0.707590 18.704601 1.255719 -8.326169 8.775355 0.922338 2.302590 -10.724159 8.869237 -6.816899 3.915005 -2.409797 -6.330829 -9.563374 -2.877393 -11.837991 -8.516811 17.480904 -12.304696 -19.172975 5.545914 0.356989 11.511892 -23.011560 13.909864 -6.038554 14.535828 -2.281797 -3.902847 0.873468 1.095970 -2.765668 8.176117 3.889869 -6.769107 5.108121 8.068243 3.324646 4.764448 1.270691 6.692079 -1.311033 4.620056 -4.608142 4.532574 -2.220365 -4.675128 -5.011580 -1.768130 2.289282 8.159247 -0.293999 -3.066891 6.381436 -1.108286 2.712260 13.293755 3.045173 -5.692869 0.946686 -3.126871 14.094894 -9.482828 -8.286310 -4.108524 7.362018 3.993896 3.180583 -18.238076 -10.532723 -12.296785 -19.073463 -4.196317 3.041008 3.262758 3.599389 -3.036932 -14.292429 -8.464065 14.457650 2.094828 16.858522 8.560116 2.964437 13.712346 6.191168 1.676199 -5.065041 0.049871 2.325658 -3.439102 -2.306657 -8.110853 5.071583 -12.951652 9.927279 12.255679 -5.935528 8.332260 0.362584 2.613225 -15.375129 16.004786 6.292579 -16.861045 1.526686 10.592314 9.960622 -12.384683 -9.749847 --3.488403 -7.148075 11.891076 8.145518 -0.122972 2.482358 4.343472 -1.447420 1.940495 3.606298 -3.203963 6.733705 -6.236456 -0.489651 -1.100663 1.876449 -6.718770 -6.580503 0.049030 -1.959655 -2.408581 -3.380810 -1.357897 6.703735 5.740176 0.911438 -4.697907 -2.170816 -10.323022 -7.479680 -2.291930 -1.166650 4.821062 -1.530787 3.543756 -12.764469 4.438580 7.760575 -0.478256 -8.264268 3.724043 -3.525825 0.692824 -1.066325 -2.234885 2.918203 5.762276 2.102212 2.745105 2.597498 0.036671 -1.685374 2.872970 10.278818 0.808239 5.673581 6.898188 -2.613589 0.275734 -1.503231 0.976109 -5.474291 2.977937 1.068477 -2.847602 -3.489725 -0.127537 -2.104486 -3.546512 3.258157 2.683119 -2.687640 -4.311195 -3.341208 -6.798009 -2.204150 2.148818 4.680528 9.704948 -5.120310 8.692720 2.717801 4.281238 0.620055 3.896400 0.559821 4.514045 1.662067 -2.862120 -0.809137 -6.775511 -2.498981 -1.672102 5.038150 -3.061537 -3.620895 4.583651 -8.706328 -9.294743 3.669032 0.236443 -3.886754 -3.998925 0.900246 2.938332 4.444345 -2.160103 -6.195197 -4.150294 2.467235 -2.700669 -1.809329 0.645334 -1.071077 -1.948710 -0.859484 -8.208923 2.466776 3.380119 -3.335409 -3.321092 6.542057 -1.948690 5.933755 0.570759 3.360541 -0.692930 5.847263 4.209818 1.428656 0.268141 -2.300938 -7.179381 -1.630779 1.697016 2.609672 -5.372999 -1.722874 -0.110029 2.500441 -0.566426 2.190391 -2.111911 9.280846 4.836810 -4.716866 -6.153688 -6.301401 -4.096683 -5.425614 0.471840 -2.706174 -3.427600 2.008037 4.551615 1.450515 0.915258 8.883119 -2.737583 4.173525 1.178338 -2.475116 2.139176 -2.443245 4.252656 -4.827420 -3.954172 3.906789 4.321037 4.794570 -0.001030 -0.110327 2.298916 -4.932669 -4.815488 2.817574 2.005129 1.527937 7.014504 5.788799 9.865353 -5.342627 -1.129115 1.323029 -1.985430 -1.634750 1.162075 -6.629959 2.840728 1.277597 -0.398490 8.829995 0.612657 -4.433306 5.310005 -0.290632 1.330748 -5.754251 4.170707 -4.365146 0.994673 -2.750878 -2.060411 -4.690959 -2.473904 -5.282821 -3.581640 9.659496 -5.010883 -9.179119 3.086016 -0.319147 5.184167 -12.330472 8.101864 -3.847632 6.605773 -1.680517 -1.902993 0.210760 1.181791 -2.222324 2.050189 2.425352 -3.740894 3.432609 5.749285 2.452012 1.523321 0.869185 4.736187 -0.527300 3.516416 -2.229622 2.749518 -1.272623 -2.749400 -1.477836 -0.987879 0.731723 2.982166 -0.081896 1.390668 3.789040 0.395421 3.124650 6.820554 3.534006 -3.549010 1.091890 -1.627343 8.319558 -4.807048 -3.945847 -1.694800 4.126579 0.879607 2.694772 -10.066182 -7.624329 -6.332403 -10.416971 -1.919044 0.584238 2.481337 1.296779 -1.259256 -8.482101 -5.025005 5.408074 0.367211 8.126438 4.811063 1.262867 7.408051 4.029731 -0.883363 -2.715234 0.616335 2.275150 -1.188463 -1.507625 -4.946024 3.223339 -7.408012 4.464082 7.540390 -3.627064 3.818216 -0.339651 4.819318 -8.152504 10.183899 3.488852 -8.404775 2.632127 5.732096 6.141069 -4.778787 -5.164424 --2.914923 -4.410878 17.030640 11.126118 -2.731448 1.512111 1.408591 -7.499977 7.358440 0.976757 -2.520150 4.516900 -6.395415 2.144834 -1.525893 6.028239 -13.563790 -6.887911 -2.411298 -7.779957 -4.220951 -3.841214 3.193393 2.278126 7.286529 3.928164 -6.930060 -0.464537 -6.895312 -11.069868 3.665632 -3.570924 6.156714 0.075138 1.958351 -23.099327 10.557491 6.539948 -4.036759 -8.296652 5.936476 -5.716315 0.635713 -4.141475 -4.340190 3.021392 2.309276 2.109918 7.537348 3.116316 0.967085 1.860454 1.957746 15.180177 -5.479253 5.032240 4.277609 -4.587536 -4.109928 0.274711 1.349370 -1.583392 4.766290 2.936239 -2.825426 -10.009759 0.583909 -5.065770 -7.768505 7.123974 0.508386 -3.899862 -5.322723 -3.474321 -8.899759 -3.432585 2.309554 8.063558 11.841219 -6.908713 7.162987 -0.054318 2.288976 1.323437 3.576081 1.497477 9.024160 2.202907 -2.093136 -2.396107 -3.975778 -3.427496 1.860858 4.231683 -2.160163 -8.342188 4.950770 -12.371762 -9.716082 2.829768 5.198038 -3.631850 -9.526165 -2.363597 4.807528 4.627035 -2.791364 -7.391994 -1.877164 2.339480 -2.196035 -1.575910 -0.928047 -3.583053 -3.306183 -1.542562 -11.882837 3.489792 0.505985 -1.489211 -4.031558 8.212101 -3.182659 -0.323142 0.238521 6.402878 -4.808622 9.231173 -1.902977 5.391364 -0.457166 1.280942 -5.523519 -1.976832 4.148469 4.523783 -4.579454 -4.224589 -5.406534 1.954963 -7.985373 -0.231410 -3.002638 8.847956 9.398698 -5.009944 -7.639013 -3.615186 -4.861338 -13.223052 1.099207 -5.689128 -4.912177 5.346246 6.862234 4.860401 6.846614 10.562616 -5.714771 4.593148 -1.105038 -3.179769 8.708968 -1.586807 7.113111 -5.847635 -3.949414 4.082024 1.200922 5.158044 0.102981 -0.528186 2.167183 -9.107303 -4.752817 5.198491 4.573673 2.434029 5.587032 7.657802 13.543225 -8.425974 0.963187 6.473673 -3.026134 -1.487374 2.316477 -7.586562 2.556818 3.534543 0.332569 10.488972 0.402889 -6.037602 1.740732 -0.006110 2.815322 -6.392350 1.354272 -4.451153 2.359297 -3.960682 -3.252765 -6.207783 -3.434776 -6.037926 -6.641932 11.418135 -9.419541 -11.449712 11.232171 -3.806958 8.501518 -15.549021 9.029016 -6.676072 9.186578 -4.361196 -0.404734 -0.651763 -1.827706 -7.979437 5.566170 2.836015 -2.179003 3.247466 10.684204 5.944859 3.035342 -2.538084 8.817860 -1.860913 9.245260 -2.829035 8.273150 -3.341134 -2.768992 -0.307696 -1.601366 -3.109024 -1.004704 3.353744 4.477619 4.703058 4.189618 6.396437 7.297596 9.112785 -5.158555 5.802102 -2.120174 5.904218 -3.610985 -4.853962 3.518793 6.834654 -1.289986 3.875668 -12.578868 -12.908667 -11.490752 -12.704348 -0.497276 0.363822 2.413157 -1.430594 -0.879296 -9.275552 -5.073300 8.952930 -0.732041 12.983398 5.249728 1.492540 6.992319 8.992594 -4.847815 -3.291974 -0.352672 2.397438 0.807963 -1.770654 -10.596137 9.577410 -7.459469 2.423518 11.916656 -6.407038 3.226195 -0.635030 6.514398 -8.250773 11.943155 2.836832 -6.470519 7.742891 6.208524 8.041971 1.079872 -5.787276 --2.008500 -4.423004 5.398498 3.861507 0.640833 1.485128 2.764574 0.690222 1.280744 1.629279 -1.532838 3.411473 -3.595762 -0.569313 0.389632 0.299853 -2.964008 -4.095508 0.917423 0.187874 -0.870041 -2.404654 -1.188663 3.845318 2.308785 0.849139 -1.899435 -1.210285 -6.172632 -1.811212 -0.665803 -0.579043 2.489228 0.630583 2.251095 -6.138594 1.571701 3.447815 0.396979 -5.315564 1.232794 -2.162137 1.163503 -0.659057 -0.084045 1.772950 3.779569 1.819815 0.868361 0.969453 -1.089113 -2.058440 0.251299 5.323465 0.800818 2.675895 4.095376 -1.186276 0.725086 -1.165647 0.810508 -3.521527 1.616048 1.168854 -2.298321 -0.507960 -0.098486 -1.971977 -2.091357 1.491030 1.863579 -0.614717 -2.452294 -1.519354 -3.300247 -0.925765 0.481707 2.920205 5.265925 -3.161663 5.222872 1.609931 3.727823 0.456656 2.370118 0.270774 2.141552 0.761079 -2.214566 -0.820281 -5.291098 -1.540697 -1.684397 1.441726 -0.970902 -0.403644 1.487999 -3.197990 -4.586000 1.984295 -1.147437 -1.073275 -2.052541 1.593162 2.028306 3.205293 -0.978661 -3.295962 -2.538343 1.205754 -1.974530 -0.784900 0.737343 0.168567 -1.803918 -1.922847 -3.882791 0.509582 2.299346 -2.411118 -1.274072 3.723405 -2.584723 4.098918 0.372330 0.495770 0.085745 3.437984 3.626944 -0.463564 1.189035 -3.564358 -4.612663 -0.155811 0.438198 3.963083 -2.696571 -0.174687 0.967455 1.171095 0.331923 -0.008300 -0.496829 4.379595 1.769079 -2.841926 -3.284938 -3.984730 -1.097076 -2.192241 0.477508 -1.899943 -0.149262 1.943742 2.414104 1.789025 -0.087797 5.457862 -2.256325 2.524816 0.523255 -0.845353 -0.011530 0.427995 1.758677 -2.534198 -1.808283 1.654602 2.337733 1.677852 0.042564 -0.900758 1.009445 -2.532002 -2.854429 1.562148 1.255124 1.099780 3.706809 2.388480 3.230635 -3.775833 -1.203264 0.211431 -0.617201 -1.154612 0.498605 -3.560189 2.393873 0.090457 -0.389884 3.638025 -0.024539 -2.524331 2.780949 -0.039720 0.572326 -2.700463 1.890454 -2.186974 -0.299311 -1.571075 -0.640009 -2.428069 -1.540178 -2.676158 -1.138631 5.071054 -1.097210 -5.031592 0.537960 -0.868411 3.072113 -6.354186 3.835812 -1.919537 3.145913 -0.438519 -1.042678 -0.178197 0.545215 0.215692 0.575893 1.474520 -1.659945 1.581706 2.636082 1.144677 0.548331 1.496923 1.947303 0.496551 0.557132 -0.810547 0.781769 -0.986264 -1.093712 -0.342272 -0.818168 1.877322 2.544289 -0.608716 1.683340 2.442486 0.213770 2.452287 3.283289 0.751995 -1.848509 -0.591995 -0.997775 5.410473 -2.316985 -1.740788 -2.167314 1.774658 0.602703 1.054468 -4.688265 -4.520102 -1.779475 -5.936104 -1.615148 -0.235758 0.814312 0.986399 -0.040326 -4.734768 -1.982351 1.059837 0.245392 4.737511 1.884788 0.186127 4.177932 1.893357 -0.963431 -2.088433 1.375193 1.028184 -1.579037 -0.238256 -2.423617 0.831229 -4.406895 2.545075 3.775955 -1.708570 1.400419 -0.854842 2.890662 -4.042360 5.524604 2.360005 -4.887661 0.546404 2.552106 4.023416 -2.159774 -2.950284 --7.485154 -13.627959 21.274092 14.121749 0.110257 6.641716 5.537638 -3.999770 2.204325 8.540609 -5.206187 13.146537 -10.594377 -3.323682 0.290141 0.676245 -11.666799 -10.998682 -0.944037 -4.871919 -6.657688 -6.323649 -8.100990 16.231199 8.610296 -0.632289 -7.746571 1.423824 -18.806031 -14.955484 -9.054704 -0.202073 7.350767 -4.093436 11.237761 -20.287699 9.530693 15.557906 0.699656 -14.072876 3.813742 -5.620639 -0.435258 1.773544 -5.681826 5.402701 10.477672 2.017666 3.395430 3.438126 2.241831 -4.687150 5.010900 19.693623 5.902957 12.234652 14.398973 -6.451078 2.867188 -1.765877 1.542071 -11.876116 5.162937 0.649359 -5.425774 -4.037298 3.805218 -1.393327 -3.282084 5.602186 7.519531 -11.532560 -4.857224 -9.994723 -14.343568 -5.515543 8.935758 6.129824 17.191945 -8.644260 16.828386 6.958991 9.224720 3.129186 12.032197 -1.096924 14.956843 2.595657 -6.948541 1.123788 -10.461313 -4.878926 -2.266889 12.765282 -7.419675 -2.395674 6.792790 -20.028467 -18.565424 9.185630 -0.826691 -8.161210 -9.060628 0.763107 6.383080 4.072739 -2.913948 -11.536317 -8.314656 7.495833 -9.211174 -3.177345 0.149797 -1.145731 -1.586720 2.517763 -14.089932 5.645259 10.060536 -4.696766 -7.275868 14.828587 -2.766548 12.756261 0.560712 4.750065 -0.025100 7.589308 7.318261 1.845499 -5.135588 -6.439097 -13.457030 -3.174238 0.229639 -2.643155 -8.535155 -3.979905 4.597522 6.231481 0.406615 10.370934 -6.720942 20.827306 5.389760 -5.694931 -11.433037 -13.039472 -10.722870 -8.778052 0.925642 -4.560886 -12.823179 1.992911 8.625867 4.073380 -2.231500 10.581480 -0.779806 7.527744 2.016775 -4.184710 1.826095 -10.493701 7.230891 -10.494433 -6.619179 7.905956 8.699776 9.260610 1.019701 -2.329874 3.352414 -7.093767 -10.447812 4.387616 2.563620 5.532029 14.787195 12.402899 27.764284 -9.820629 -1.677423 0.032621 -3.112625 -3.015640 0.755551 -10.382208 2.145056 3.342927 -0.360425 20.416840 0.938429 -7.173636 7.608321 1.031063 2.820841 -12.208816 9.417195 -6.609042 4.921215 -2.612966 -4.919720 -10.417281 -3.300986 -12.014978 -8.969515 18.410956 -14.491644 -19.523474 8.358690 -0.018546 12.340157 -21.898685 13.808490 -6.298765 14.963326 -2.990978 -5.050261 0.727494 1.080084 -3.013080 10.443600 3.966567 -7.503474 5.186729 7.760805 3.187695 6.213456 1.019176 6.926930 -2.792242 4.091262 -6.261270 6.650675 -1.248550 -4.414635 -6.109795 -2.800390 1.976210 7.831213 -0.376703 -4.496630 7.026476 -1.969198 0.867097 12.845431 1.960321 -5.958827 1.640042 -1.909303 12.265901 -10.520176 -8.592690 -3.113723 6.424753 4.050296 2.782686 -19.163819 -8.934330 -12.913207 -17.432926 -6.045836 4.476606 4.269750 5.009987 -3.151170 -13.487006 -9.289247 18.811082 1.786443 15.094635 8.960668 4.280999 14.341686 7.444350 3.733268 -4.728918 -1.487520 1.907683 -4.141676 -2.250761 -8.417317 6.253369 -13.154496 11.648263 11.951416 -5.621754 9.410506 0.070147 3.867540 -16.692880 15.065202 6.517966 -16.846062 1.310537 12.631804 10.469435 -13.150240 -10.245622 --2.315356 -5.009309 8.500267 5.857322 0.508793 1.621743 3.309582 -1.309925 2.246707 2.697416 -2.067264 4.539703 -4.934631 -0.295692 -0.494326 1.635440 -4.837625 -5.002589 0.104106 -1.510705 -1.535201 -2.841017 -0.379756 4.296537 4.189013 0.136720 -3.215278 -1.463309 -7.531985 -5.077907 -1.200039 -1.003552 3.477491 -1.111405 2.210112 -8.985280 3.633071 5.373021 -0.504383 -6.195458 2.816030 -2.922537 0.556908 -0.825722 -1.065893 2.127759 4.020254 1.830391 2.258550 2.155124 0.276570 -1.216064 1.634759 7.480937 -0.018916 3.969107 4.844972 -1.888149 -0.179353 -0.893682 0.887389 -3.776266 2.467516 1.079444 -2.330016 -2.663000 0.153986 -1.733850 -3.171502 2.430503 1.845193 -1.939937 -3.222622 -2.261931 -4.836464 -1.537978 2.186982 3.355445 7.093401 -3.850656 6.338156 1.815481 3.239701 0.419802 2.685127 0.359632 3.335420 1.121964 -2.262323 -1.407263 -5.452773 -1.879128 -1.131775 3.229273 -1.759474 -2.450356 2.909972 -5.709237 -6.612039 2.286698 0.209758 -2.624409 -3.468818 1.012853 2.234920 3.546718 -1.337822 -4.611626 -2.700476 1.699160 -2.115174 -1.309650 0.327696 -1.026281 -1.842577 -1.191162 -5.970842 1.448534 2.499909 -2.641522 -2.321729 4.890258 -2.352666 4.173887 0.408173 2.216764 -0.536145 4.000447 2.832107 1.221811 0.776019 -2.474050 -5.326995 -0.966022 1.362408 2.851861 -3.579879 -0.430055 -0.147689 1.652269 -0.727482 1.398087 -1.328282 6.320465 3.174006 -3.550448 -4.451982 -4.332178 -2.476493 -3.960887 0.963782 -2.345904 -2.024285 1.413654 3.527482 1.313235 0.873401 6.864541 -2.324690 2.854818 0.833781 -1.859269 1.756745 -1.491236 3.229734 -3.647775 -2.823827 2.735409 3.160404 2.673225 -0.100039 -0.074066 1.599343 -4.083808 -3.343874 1.574830 1.459179 1.024134 4.921017 3.996249 7.089073 -4.196340 -0.736204 1.313376 -1.120718 -1.090883 0.752518 -5.043787 2.352297 0.845563 0.126921 6.383621 0.499826 -3.665175 3.531495 -0.230192 0.856811 -4.139628 2.657849 -3.099997 0.591322 -1.918014 -1.467351 -3.141800 -2.065850 -3.760572 -2.217410 6.945719 -2.665402 -6.821874 2.449371 -0.711103 3.993552 -9.242552 6.306387 -2.979635 4.619819 -1.146398 -1.146595 0.239717 0.595399 -1.785319 1.546959 1.853179 -1.961771 2.732309 4.418148 1.984578 1.143585 0.535248 3.399831 -0.332235 2.584136 -1.611149 2.375310 -1.239075 -1.907565 -0.866109 -0.982573 0.890964 2.013308 -0.234121 1.566735 3.042145 0.269067 2.971701 4.398599 2.883094 -2.638057 1.403825 -0.921542 5.944522 -3.125933 -2.724021 -1.020141 2.670371 0.421512 2.454826 -7.145713 -6.003215 -3.309254 -8.059614 -1.105614 0.141406 1.656230 0.499882 -0.642280 -6.270503 -3.354139 3.706940 0.284826 6.526743 3.372731 0.918823 5.051250 3.159587 -0.998955 -1.874433 0.388618 1.549333 -1.118383 -1.431492 -3.319784 2.336795 -5.291247 3.076746 5.441063 -2.798210 2.380603 -1.232250 2.941583 -5.690479 7.198649 2.558044 -5.625452 2.298773 3.760697 5.297172 -3.202893 -3.735816 --1.423427 -4.595731 6.841594 5.155007 -0.636128 1.864399 2.691552 -0.941387 0.432532 2.007445 -1.081291 3.813968 -4.275710 -0.912872 -0.315101 0.797297 -4.094308 -3.175028 -0.387824 -1.306000 -1.333403 -1.727089 -1.551632 5.239153 3.335671 0.979093 -2.067875 -1.105740 -5.715699 -3.289080 -1.806060 -0.036029 2.875281 0.551370 2.766126 -6.421176 2.626660 5.159484 -0.263159 -4.425606 1.855759 -1.949192 0.313730 -1.145262 -2.298932 1.426478 2.917700 1.289140 1.050461 1.122917 -0.245890 -0.984719 3.292386 6.295264 1.415741 3.758368 4.419731 -1.257757 1.451258 -1.203222 0.604953 -2.950927 1.528699 -0.441947 -1.214831 -1.889774 -0.688069 -1.342942 -1.192160 1.419353 2.048964 -1.862791 -2.980778 -2.360902 -4.698525 -1.688601 -1.468380 2.858733 5.070220 -4.109306 5.182630 2.452054 1.928264 0.731114 3.059555 0.447654 2.855836 1.007889 -1.200007 0.887941 -3.692484 -1.399921 -0.130668 1.464417 -2.844181 -4.121162 2.584065 -5.395133 -6.017340 2.804317 0.072567 -3.047800 -0.869955 -0.227679 0.672771 1.936725 -1.940834 -3.627807 -1.924724 1.976896 -1.188331 -1.206676 0.247218 0.869054 -0.020054 -0.546077 -4.735536 2.139239 2.562352 -1.674068 -0.829909 4.403996 -0.094410 3.929539 0.187882 1.084118 -0.552663 3.456947 2.597159 0.724692 -1.105416 -1.379656 -2.877962 -0.525226 1.325054 0.616842 -2.617503 -0.939845 0.695705 2.072446 0.838024 2.619229 -0.019725 5.511798 0.615138 -2.134361 -3.003467 -4.283360 -3.810806 -2.836050 0.583964 -1.192855 -2.546044 2.119188 2.678742 0.769239 -0.039507 2.953155 -0.534218 1.534990 0.515817 -1.281006 0.770566 -1.145481 2.197971 -2.723474 -2.484228 2.570988 2.290819 3.693038 -0.029235 0.341237 1.209219 -1.743465 -2.232061 0.451151 0.868259 -0.109731 5.166002 3.961840 5.834219 -1.955198 -0.544015 0.242700 -1.355784 -0.442282 0.415661 -3.781027 1.632635 0.700358 -1.473330 5.196434 -0.045568 -1.839568 3.580298 -0.612627 0.617903 -3.713463 2.490548 -2.398408 -0.049686 -2.144299 -0.104142 -2.565125 -1.841544 -3.709639 -2.240818 5.984367 -4.958669 -3.345434 1.569250 0.982480 2.601341 -5.615672 5.941767 -1.826657 3.854992 -0.269870 -2.442974 0.883487 0.482454 -1.231839 0.491132 1.483344 -2.647650 0.919333 2.504762 1.254304 0.533486 0.696824 2.613070 -0.719740 1.975034 -2.359365 2.175892 -0.633243 -1.591511 -1.054934 -0.799552 0.710514 1.745349 0.092723 1.215063 1.780323 0.799928 0.731451 3.148589 1.637415 -1.926529 0.141088 -0.568392 4.013547 -3.337915 -2.008254 -1.275847 2.050665 0.983740 1.809746 -6.068060 -3.754434 -3.744879 -3.554470 -1.464031 0.628585 1.551925 1.151352 -1.116670 -4.754019 -3.818693 4.283030 -0.566520 1.315178 3.127169 1.094611 4.797725 2.376998 0.985561 -1.074867 0.791651 1.709481 -0.166445 -0.288398 -2.642338 2.131748 -4.363509 2.880389 4.445684 -1.889633 3.027292 -1.022598 3.025277 -4.967218 5.592187 1.647143 -5.643851 1.025754 5.420074 2.641332 -3.183305 -3.002211 --6.888746 -11.354168 18.374007 12.122667 0.159603 4.314825 7.082433 -2.465094 2.753329 5.002540 -3.085745 10.659890 -10.408119 -1.992571 -2.921178 1.566698 -9.886005 -9.891117 -1.029819 -4.410179 -3.667108 -4.835626 -3.449650 11.957244 8.668799 -1.359666 -6.968084 -2.689748 -17.331227 -10.709943 -4.569657 -0.866856 7.318631 -6.375860 5.428585 -21.841952 7.511707 13.804707 -1.061844 -12.695139 6.243033 -6.172727 1.331052 -1.198700 -6.556407 2.865148 8.248008 0.894271 3.564648 3.137320 0.447716 -0.886885 5.006826 20.061445 1.676664 9.714117 11.518496 -3.755636 0.243713 -2.154124 1.301482 -8.500583 4.667320 -0.763923 -4.157882 -5.468913 0.108773 -2.614678 -4.945081 3.747959 3.832264 -6.120723 -5.255643 -5.450182 -14.899653 -5.084932 7.606549 6.005563 14.155569 -9.441004 13.782748 4.222018 5.498101 3.347243 7.383276 1.157243 7.468547 2.297128 -3.432907 -0.583490 -9.655533 -1.072843 -1.973988 8.189924 -5.892156 -9.665265 7.458743 -15.827738 -15.378909 6.438728 0.072094 -7.401472 -6.685078 -1.232644 3.334807 6.511167 -5.028462 -9.990706 -6.997668 5.314309 -3.415748 -2.913400 2.085297 -1.577469 -1.214836 -2.409741 -12.567077 5.219625 6.531824 -4.308400 -5.721370 11.961416 -3.551502 10.081255 0.877653 5.495271 -2.184946 8.301516 5.561651 1.814397 -3.762580 -4.251639 -10.541271 -5.796232 1.541375 3.893652 -8.144290 -2.683438 0.230121 4.371637 0.420607 5.426069 -2.619849 14.442420 4.702651 -5.871790 -7.892520 -10.264611 -7.842359 -9.178069 0.413399 -3.424852 -8.035247 4.831693 7.219826 2.339925 0.548826 12.364219 -0.850733 5.096495 1.963588 -6.067701 3.432380 -7.388877 6.680063 -7.629275 -6.788951 5.996511 6.204036 9.713697 -0.464794 1.109658 2.830563 -6.597168 -6.916154 0.919979 3.558353 2.048698 12.018729 10.228266 16.726803 -9.175803 -1.577322 1.154829 -4.311882 -1.070495 0.438990 -9.843546 2.427928 3.231147 -3.329650 15.240135 0.822885 -7.245645 8.841212 -0.828337 2.329337 -9.929507 6.723561 -6.815517 1.130419 -4.408413 -4.597277 -7.634893 -3.760293 -10.934277 -8.441583 15.421423 -12.027694 -13.854459 5.122845 2.783154 8.660423 -19.620655 14.106887 -5.664277 13.444139 -1.598508 -3.001843 1.738678 2.697556 -4.007384 4.459819 3.664120 -7.104241 5.108632 8.497998 3.933200 3.252260 0.146351 7.656087 -1.913865 5.602082 -5.653611 5.805364 -2.661337 -6.578096 -2.428552 -1.834374 1.561386 5.027677 1.638622 0.247181 5.289791 0.658109 3.272359 11.733779 5.448543 -5.024699 1.758566 -2.397033 12.028165 -7.228913 -5.924339 -2.739632 7.644620 3.024609 4.477802 -16.253445 -11.449450 -11.464532 -15.845790 -1.112285 1.569115 2.059417 2.108703 -2.205590 -14.197619 -8.513248 11.328581 -0.411311 11.874193 8.422192 3.079423 12.102824 6.566412 0.018713 -3.074686 1.920732 3.559015 -1.415202 -2.772320 -7.347229 5.376600 -11.881873 7.457346 11.325420 -5.300355 7.277455 0.382287 3.773695 -12.993666 15.583959 4.628408 -13.624906 4.208637 11.313678 10.176654 -8.552890 -7.803787 --0.770245 -19.292921 63.769524 42.857331 -12.976264 3.981045 13.935887 -24.689203 25.745678 0.477447 -12.513734 13.213189 -31.417990 9.936021 -11.543040 22.048140 -52.207118 -26.179852 -8.559137 -24.931164 -12.940471 -15.849107 17.923066 8.843175 31.682408 22.155044 -20.146203 -10.706370 -28.352687 -26.284871 18.106644 -12.774475 21.749083 15.640709 6.866696 -68.417346 33.990816 24.024799 -15.091489 -30.664812 24.320054 -21.327015 1.582194 -19.344031 -7.849087 10.205351 9.595438 25.052475 27.489879 12.740103 1.545985 0.782350 10.682167 53.680954 -20.592255 18.539006 17.264617 -11.686038 -8.510213 -0.063623 5.082297 -5.575990 12.961049 11.439920 -8.025999 -34.483661 -4.287432 -25.528497 -25.308480 26.713738 2.311503 -4.874509 -28.319827 -12.745584 -27.752275 -8.122585 -25.886424 36.086672 46.290534 -31.749684 27.188682 3.384389 8.116803 -1.914203 8.080525 7.056533 24.191705 8.281889 -4.811807 -7.930836 -23.758093 -12.374615 6.273120 0.381732 -9.949647 -41.881812 21.345431 -40.535660 -37.299568 7.803737 18.180670 -16.673277 -13.443089 2.649767 9.645634 17.301153 -13.878142 -27.563053 -2.222520 4.757270 -1.534180 -3.392361 -1.074928 -4.320949 -12.689931 -12.327089 -44.535605 12.898686 -1.835623 -10.160509 -5.154264 28.586405 -7.919970 3.076043 3.267856 18.782528 -14.699650 39.683390 0.228512 17.637523 4.583626 7.009954 -15.266442 4.969564 22.082244 24.659576 -17.394502 -5.655247 -16.783559 7.268591 -26.022714 -5.685597 -5.742930 27.942586 24.454427 -27.673660 -29.431210 -13.432727 -18.786895 -44.439308 6.445786 -20.830420 -13.164747 14.858728 24.793895 22.935481 24.593635 41.034097 -24.495393 11.539758 -1.519673 -9.724121 27.189028 6.595970 25.728347 -20.675368 -16.104087 13.372842 2.862419 16.052602 -0.545988 1.748980 7.125205 -36.983704 -9.866453 17.383477 16.911112 -1.713297 25.265166 28.976327 28.693469 -24.579439 3.218056 26.037347 -11.179510 -7.078096 12.608140 -32.904243 18.768293 8.316377 1.778603 29.893703 2.091910 -14.860873 13.986821 -6.843064 8.999316 -23.847818 0.837648 -16.812380 -1.215362 -22.031669 5.821659 -16.793961 -15.726407 -15.921821 -17.787690 41.868633 -30.665239 -27.260699 33.934773 -9.182664 25.611494 -46.183379 41.531381 -23.662389 27.669404 -8.843802 -4.432874 0.741186 -6.763004 -26.394210 8.906622 9.735338 -4.295509 10.967364 36.526796 21.444328 4.692943 -3.138916 35.112464 -9.105749 34.097444 -10.129978 27.046453 -9.689369 -13.166298 3.446851 -5.800045 -11.810460 -5.523219 11.190238 35.065377 16.575589 21.070277 29.496904 17.884117 36.834543 -18.699537 18.727699 -7.796652 24.788545 -16.343028 -16.580097 11.932437 20.770438 -8.143498 16.968175 -46.720476 -54.338040 -35.657602 -38.909464 -2.232834 -12.388021 12.798000 -6.434864 -3.416829 -34.171401 -23.739542 21.218684 -6.224989 31.366586 20.233837 3.195507 26.738802 32.882722 -18.470515 -7.223091 5.986072 19.002779 5.591859 -3.992617 -37.444373 31.248508 -31.277182 5.471179 48.024696 -24.248008 12.380404 -9.010738 36.472619 -32.768680 45.913502 10.933443 -27.525881 30.863080 30.189894 29.570875 12.565063 -21.316492 --2.454748 -5.307354 7.841007 5.278933 0.116450 2.373686 2.038119 -0.389898 0.917110 2.152013 -1.755217 5.417185 -3.960955 -1.377225 -0.432581 -0.024741 -4.105094 -4.142331 0.084664 -0.926450 -1.508152 -2.235523 -2.409558 6.492284 3.362102 1.012841 -2.918365 -0.441980 -7.748981 -3.885805 -2.649705 -0.063166 3.028277 -1.172959 3.685842 -6.756015 2.574159 5.609813 0.382751 -6.141631 1.936093 -2.150360 0.668140 -0.324495 -2.014260 1.788686 3.935887 0.536307 0.995524 1.131360 -1.025628 -1.153771 2.625114 6.812730 2.190430 3.978014 5.337561 -1.936188 1.419130 -1.558243 0.724245 -4.216184 1.714611 -0.182935 -2.032457 -1.834166 0.175883 -0.820998 -1.349537 1.720828 2.178922 -2.717620 -2.314182 -2.854953 -5.660513 -1.579599 2.933031 3.337518 5.646447 -3.747535 5.888140 2.136306 3.435383 1.192833 3.587058 0.207273 3.493090 1.164581 -1.931160 -0.471992 -5.289222 -0.943034 -1.240691 2.490647 -2.689664 -1.501621 2.700533 -7.368233 -6.590042 2.974155 -0.258211 -2.951827 -1.989644 0.369464 1.895487 2.723697 -0.877603 -3.690566 -2.426543 2.858395 -2.381746 -1.236412 0.195328 -0.040523 -0.408054 -0.059903 -4.728636 2.388143 3.338830 -1.645766 -1.743501 5.158167 -1.208793 4.707871 0.142044 1.785105 -0.069782 2.937218 3.587842 0.260629 -1.002890 -2.991301 -3.579083 -0.221917 0.170075 0.389896 -4.186337 -0.735275 1.055426 1.927955 1.104104 2.200830 -1.761266 6.112431 0.736364 -2.837090 -3.787419 -5.150630 -4.088653 -3.097408 -0.204797 -1.228942 -3.437154 2.376463 2.816602 1.721008 -0.542941 4.014908 -0.918672 2.113347 1.399594 -1.652279 0.448861 -1.903981 2.121753 -3.605178 -2.557479 2.600931 2.748317 3.232081 -0.150525 -0.072838 1.325197 -2.177273 -2.740159 1.622142 1.485536 2.009900 5.679777 4.345974 6.504206 -3.527265 -1.709472 -0.104573 -1.549009 -1.292361 -0.063853 -4.001941 1.636657 0.921584 0.056514 6.770311 0.042047 -2.333797 3.660470 0.355743 1.009616 -3.921809 3.328364 -2.867671 0.272105 -1.225871 -2.062073 -3.544449 -1.364413 -5.010610 -3.385017 6.838908 -4.984858 -5.963155 1.931370 0.253470 3.775743 -7.658390 4.398407 -2.259804 5.318445 0.305150 -1.615185 -0.012881 -0.298763 -1.308556 1.534678 1.643266 -3.169219 1.928558 2.687313 1.320641 1.158352 0.651066 2.219717 -0.682314 1.983271 -2.152673 1.679698 -0.963172 -1.885374 -1.450976 -0.783573 1.152499 2.686148 -0.529217 -0.327662 2.252096 0.478903 1.046608 4.281122 1.272126 -2.310225 0.045666 -1.212140 4.999043 -3.679212 -3.014552 -1.731658 2.545494 1.654611 1.301531 -6.969409 -4.426395 -4.440737 -6.267302 -1.495311 -0.518545 0.952160 1.375708 -1.273586 -5.625527 -3.852956 3.977677 0.703017 4.886532 3.136292 0.835719 5.472582 2.404008 0.408974 -1.506363 0.566959 0.943083 -1.119925 -0.820552 -3.266788 2.024445 -4.400333 3.340823 5.248166 -2.195789 3.414385 -0.404810 0.305540 -5.804491 6.313022 2.557068 -6.766574 0.246099 3.532332 3.493660 -4.319810 -3.945359 --2.833191 -6.664647 12.323172 8.304151 -0.883023 2.392847 3.697777 -2.257459 1.302885 2.207715 -2.631591 6.639847 -6.272388 -0.406083 -2.204751 1.557031 -7.621538 -5.867212 -1.108752 -3.069219 -2.629280 -2.529728 -1.493216 7.257303 6.029235 0.752534 -4.643899 -1.681621 -9.741813 -6.316752 -2.300168 -0.559743 4.637653 -2.018535 3.413743 -13.382556 5.027693 8.111018 -0.965990 -7.394843 4.279890 -3.847980 -0.206804 -1.599576 -4.260512 1.787267 4.620281 1.832905 2.564639 2.102321 -0.027623 -0.367849 3.497786 12.501766 0.927282 5.871777 7.203137 -2.466472 0.262646 -1.367322 0.923497 -4.719665 2.534309 -0.167435 -2.042110 -4.274482 -0.049356 -2.360196 -2.472309 3.008119 2.592521 -3.577545 -3.673663 -3.682125 -8.424991 -2.581118 3.207573 4.865688 8.874152 -6.300474 7.979249 2.256795 2.990400 1.315735 4.044575 0.734897 4.879207 1.694389 -1.538734 -0.657133 -5.646554 -1.211650 -0.437753 4.332052 -4.021300 -6.516770 4.842549 -10.313523 -9.538056 3.586718 0.992251 -5.195240 -2.706760 -0.292662 1.733890 3.499616 -2.638470 -5.683405 -3.288260 3.061700 -1.945614 -1.792956 0.340416 -0.219841 -0.692691 -0.930893 -8.482020 3.894346 3.538908 -2.277036 -2.528085 7.055590 -1.379193 5.361036 0.372153 3.419455 -1.425861 5.773719 2.932045 1.439236 -1.880548 -1.446848 -4.903827 -1.917974 2.014328 1.958167 -5.479701 -1.721573 0.007622 2.844341 -0.420305 2.932045 -1.782805 9.175702 2.709087 -4.110322 -5.825088 -6.298083 -5.447944 -6.077866 0.071042 -2.614803 -5.590323 3.208235 4.555373 2.175785 0.847895 7.412180 -1.020660 3.324894 1.457582 -3.216430 2.517104 -4.084412 4.170200 -5.038815 -4.234540 4.072556 3.001186 5.646020 -0.392575 0.994996 1.946103 -4.806011 -4.156733 1.838690 2.519506 1.189620 7.543936 6.731016 10.414791 -5.014990 -0.678856 1.321929 -2.961437 -1.240278 0.922339 -6.322798 1.803653 1.939190 -1.267018 9.724825 0.720328 -4.106564 5.098688 -0.547448 1.370109 -5.959738 3.941570 -3.845928 0.838569 -2.924747 -1.953138 -4.232961 -2.194736 -6.236565 -5.324857 9.843239 -8.948951 -8.243570 3.947082 1.268436 5.469516 -11.909372 8.922851 -3.730518 8.121811 -0.677869 -2.356849 1.145161 0.215083 -3.551512 3.438049 2.243626 -3.754426 2.498240 5.542074 2.671657 1.910066 -0.043804 5.122551 -1.578675 4.481817 -3.308322 3.844178 -1.296595 -4.005980 -1.739814 -1.017506 -0.283204 2.295048 1.369395 1.452459 3.029775 1.689293 2.422387 6.595750 4.252258 -3.439017 1.510079 -1.807740 6.855287 -4.838207 -4.240738 -0.825627 4.578534 1.498816 2.811318 -10.440360 -7.892964 -8.362053 -9.374330 -0.823640 -0.122849 2.238927 0.727555 -1.866981 -8.408536 -5.786380 7.065601 -0.386662 7.380496 5.657942 1.824411 7.308772 4.333779 -0.169201 -1.468656 0.893656 3.253857 -0.181704 -1.147833 -5.558493 4.080517 -6.973353 4.146866 8.235742 -3.598205 4.918573 -0.085655 3.347328 -8.117708 9.635957 2.766277 -9.096914 2.778437 7.218049 4.898515 -4.037571 -5.111193 --1.450498 -3.437639 5.330080 3.719549 0.480063 1.048718 2.699387 -0.521121 1.639636 1.491395 -1.341738 2.832234 -3.495008 0.123970 -0.443196 0.978415 -3.094215 -3.516215 0.384282 -0.701159 -0.920124 -2.114711 0.113640 2.578374 2.663446 0.039619 -1.976055 -1.750425 -5.292185 -1.787045 0.061218 -0.757387 2.412162 -0.439847 1.074137 -6.627984 1.919270 3.144463 -0.319742 -4.327217 1.924113 -2.194145 0.650458 -0.613377 -0.419317 1.079973 2.711327 2.163994 1.512865 1.381336 0.143553 -0.911477 0.578711 5.550990 -0.421859 2.477362 2.934689 -1.045329 -0.319661 -0.613839 0.623940 -2.418845 1.790004 1.081187 -1.736176 -1.561200 -0.058766 -1.568895 -2.588302 1.528982 1.621686 -0.489941 -2.339232 -0.982736 -2.395060 -0.928668 0.983255 2.431826 4.852981 -2.593749 4.331001 1.036123 2.424449 -0.040887 1.573543 0.373424 1.749765 0.615763 -1.568270 -1.329491 -4.580281 -0.772961 -0.909524 1.334770 -0.885245 -2.243277 1.753831 -2.224353 -4.165666 1.288648 -0.060996 -1.481072 -1.844919 1.084800 1.556871 2.755277 -1.235852 -3.208226 -2.085522 1.027017 -1.383248 -0.872067 0.403000 -0.818303 -1.483622 -2.092317 -3.719175 0.629142 1.550704 -2.009297 -1.379896 3.197885 -2.210486 2.803602 0.391804 1.238170 -0.278292 2.890357 2.233837 0.279544 1.243546 -2.231692 -3.568265 -0.181829 0.999322 3.533550 -2.249475 -0.166239 -0.196134 1.016837 -0.408546 0.281188 -0.117571 3.693042 2.185782 -2.639586 -2.944872 -2.824438 -0.586211 -2.452536 0.667752 -1.704883 -0.505224 0.827125 2.376510 1.176535 0.727708 4.953065 -1.882460 2.466961 0.548707 -1.122982 1.087055 0.125984 2.129969 -2.328007 -1.952619 1.462882 2.020924 1.500665 -0.227567 -0.019791 0.864577 -2.898256 -2.110549 0.652754 1.326535 0.569297 3.154965 2.384043 4.191987 -3.146104 -0.553483 0.943377 -0.712506 -0.762359 0.548531 -3.518735 1.823617 0.430270 -0.535964 3.855888 0.256501 -2.730584 2.492411 -0.188808 0.536944 -2.578360 1.519408 -2.018145 -0.219538 -1.583253 -0.525405 -1.919377 -1.463442 -2.389829 -1.160348 4.558052 -1.192633 -4.398342 1.096252 -0.883337 2.362728 -6.199960 4.696101 -2.013227 2.417763 -0.900062 -0.824624 -0.063004 0.798639 -1.031145 0.930200 1.242826 -1.081096 1.903267 3.427904 1.369560 0.615072 0.637040 2.356906 0.140049 1.401289 -0.872401 1.477414 -0.874490 -1.236947 -0.056097 -0.734514 0.908719 1.392548 -0.162297 2.128289 2.360255 0.353403 2.532384 2.779020 1.888500 -1.699085 0.657916 -0.729587 4.253657 -1.843608 -1.535162 -0.935726 1.621493 0.095483 1.653308 -4.561460 -4.514375 -1.421650 -5.512685 -0.288470 -0.221802 0.903245 0.300745 -0.140147 -4.604830 -1.979901 1.154469 -0.099925 4.801868 2.215682 0.455147 3.337390 2.165194 -1.313944 -1.206596 0.868181 1.217643 -0.924428 -0.805681 -2.217830 1.280819 -3.682958 2.132515 3.614117 -1.710680 1.278092 -1.194641 2.756841 -3.546049 5.119769 1.882371 -3.636468 1.601335 2.033986 3.954122 -1.523152 -2.406657 -10.672482 -70.530211 285.911855 187.202676 -63.660581 18.883867 43.833632 -122.355805 109.676693 12.301387 -52.988961 51.714671 -116.836996 39.044763 -54.555524 103.218262 -227.210799 -95.038208 -48.642664 -123.893088 -58.524479 -59.058709 69.270350 32.367631 138.111712 89.893358 -86.944059 -32.279848 -93.447421 -147.003627 65.698510 -48.354621 82.746972 34.088103 36.200274 -293.590819 166.420171 108.716579 -68.049976 -124.198358 104.661082 -75.898497 -4.079067 -66.145353 -46.789180 45.804381 29.509362 108.184603 117.451754 65.448823 9.943271 18.423668 69.184542 245.079546 -79.610127 81.850468 72.518243 -47.315374 -34.227580 12.674410 17.281628 -16.027078 40.081229 32.301999 -9.426996 -155.130776 -16.031201 -92.629966 -92.099397 114.576108 -3.960643 -53.450235 -114.590781 -65.382961 -127.260864 -31.962986 -141.298915 157.840726 183.792033 -140.267922 101.816725 12.428950 19.310021 7.300305 27.222526 26.084563 102.842482 38.550930 -8.077457 -29.051936 -69.444148 -58.977996 43.559933 -24.547035 -61.139305 -218.354764 97.299431 -196.171832 -156.859233 41.395202 91.774636 -87.503540 -45.115425 -14.002215 36.919111 58.260074 -56.126091 -107.160616 0.999985 33.506883 -0.251262 -10.632134 -4.286218 -22.859534 -36.633745 -23.054793 -192.716816 76.625991 -6.148959 -22.388724 -22.253348 123.676347 -9.313560 -1.197797 12.098257 88.983726 -68.767662 168.209456 -9.888673 93.192860 -9.952351 65.529578 -52.354897 41.597364 96.113493 43.996088 -65.834628 -20.719592 -74.010442 37.854504 -115.068376 2.889191 -44.601822 115.901931 101.925668 -104.037630 -123.202585 -55.076943 -104.053037 -189.571925 27.481856 -79.263437 -90.546177 67.966739 102.810630 102.933408 105.195847 139.346488 -106.482424 25.475139 -13.079940 -37.966667 112.853538 6.931963 105.716592 -87.231148 -65.098191 57.355506 13.205498 73.831308 -4.772548 10.776996 36.199196 -147.630810 -18.921879 76.646441 73.285798 -10.917531 104.759994 137.791165 138.982033 -86.972097 5.200728 112.425408 -66.272102 -29.353792 50.471688 -136.026802 64.631828 45.806869 24.204738 140.958109 8.023949 -40.735917 59.694653 -34.043882 34.612597 -95.331156 0.301439 -70.936779 -11.439143 -79.148593 22.067771 -77.928027 -53.860276 -75.846870 -97.642120 174.643279 -162.564734 -101.882002 163.563946 -48.050704 93.855164 -174.955856 188.544009 -96.757054 115.227488 -21.436090 -16.626853 2.170012 -36.666026 -125.607030 44.321639 35.201342 -19.183106 44.523172 158.270519 90.402197 16.369323 -26.566799 152.301612 -62.801361 157.754960 -55.419621 121.051943 -51.303501 -54.407866 2.098179 -19.647139 -69.285594 -40.063635 55.457068 131.946886 46.621557 89.360195 105.497311 77.155113 161.030628 -76.326193 97.875617 -37.833005 80.759190 -75.255633 -76.777522 67.467865 88.421008 -30.590432 66.826929 -205.717428 -208.534410 -198.358239 -146.106365 -6.271386 -57.668713 54.541714 -39.599606 -28.236525 -136.517436 -116.522462 130.841996 -24.145980 86.164729 95.201878 14.616049 112.499547 144.792145 -62.997317 -12.760941 9.738718 69.463292 35.518103 -25.118281 -154.833765 150.906355 -120.667727 13.306543 208.360748 -102.469290 65.299141 -25.193474 119.195965 -143.344852 177.240990 35.995084 -107.220066 120.796322 143.722240 113.070838 41.153466 -88.755050 diff --git a/src/test-suite/oracle/SYM_llvm16_f/ir2vec.txt b/src/test-suite/oracle/SYM_llvm16_f/ir2vec.txt new file mode 100644 index 000000000..d1df36463 --- /dev/null +++ b/src/test-suite/oracle/SYM_llvm16_f/ir2vec.txt @@ -0,0 +1,1692 @@ +PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -1.781302 -0.768311 0.239495 -3.154739 2.095698 3.526893 0.975128 -2.665166 -3.384540 -1.960794 1.120268 -4.777596 -2.756499 4.348672 -1.613324 2.969894 5.454675 0.120350 -1.726465 -1.510575 3.588601 -0.349627 6.216216 6.528438 -4.347191 0.128732 0.952186 2.523810 1.403295 0.787639 1.265497 -3.092516 1.181932 -3.490621 0.367707 -2.001027 -0.977911 1.153573 2.881853 -7.016882 -0.546262 1.514307 -1.034566 -0.007985 0.173630 0.305439 4.234962 3.534151 -0.449924 3.059150 2.828771 0.496643 1.700856 0.172127 1.049785 0.333330 0.606710 -1.034510 -0.306326 -0.567348 -1.078716 -1.362326 0.492594 4.747702 5.148328 -0.120621 -2.058900 1.464651 0.732786 0.867355 0.999762 3.665437 -0.465115 1.921046 2.846411 -5.763778 0.495745 -7.328729 0.961605 -6.337256 -3.363179 -0.251938 2.465012 2.212127 2.672229 -0.087313 6.610991 -1.061055 -1.771194 4.597289 5.276560 -3.720367 -0.778532 -1.444361 -2.030163 0.346986 -2.039888 1.068982 -0.341017 1.939382 -3.729881 -2.819905 1.003291 0.715526 -2.685174 -2.650681 -0.408652 3.502450 -4.137466 -2.980892 -2.223129 2.677224 -0.732886 -6.896029 -2.726408 -2.730988 2.175994 0.731517 -2.867523 -3.980734 1.738096 1.642968 -0.698521 -2.171925 -0.565060 2.628900 3.240244 0.743229 -0.316178 2.298707 1.391091 6.663755 1.818707 -1.934613 0.008110 1.192623 -0.833376 1.573186 -1.693291 -0.647327 0.868167 -3.575449 -0.535177 2.850065 -2.307830 -1.468823 1.665786 -0.911399 -0.002389 15.016791 -0.965740 4.403864 4.019039 -4.067101 1.285339 -1.812095 0.302043 1.745392 2.458623 2.672601 -7.111674 -3.336703 3.708041 6.270791 2.218744 -4.261211 -0.776604 1.354190 0.641086 -1.045821 2.182774 0.436772 0.346446 -2.401190 -0.580146 2.882728 8.068083 -2.529419 -1.108087 0.931655 1.998026 -0.650680 -4.366724 -0.668388 -3.223722 -0.249050 2.401897 0.930588 1.998921 4.904442 -6.495782 3.726430 -0.554614 -0.154206 3.188316 1.626728 -3.141938 -4.301781 -0.782357 2.309716 3.420416 -0.741121 0.771659 0.378425 -5.252923 0.150871 1.339902 1.132327 -3.145946 4.515462 0.262127 -2.524970 -2.055314 0.787649 -1.468071 -1.714829 -1.459280 3.261011 0.237622 -5.344126 3.983365 0.768258 -1.921290 0.861379 -1.367219 4.913850 -3.977771 -4.531686 3.160318 -1.636818 -2.489917 -0.933576 -1.323105 1.946789 2.141307 0.480664 -4.120981 -3.827177 3.846082 -1.001762 4.927831 2.510302 -0.415790 3.582557 -2.075543 -2.208628 -2.684955 -3.203862 1.158357 0.780407 -2.893720 -3.540561 -1.333378 3.530932 4.254834 -0.327985 -2.652014 -0.278000 4.413567 -4.579717 -0.456390 1.343072 2.642224 -3.467786 1.382265 2.147446 -3.171043 0.725058 -3.162873 -0.172722 -2.679471 -2.695234 3.365230 -1.499760 1.403233 0.857482 -0.605871 -0.145775 1.974273 1.856876 0.546253 1.177219 5.183492 4.233888 -1.129666 -0.882104 -5.306184 2.759910 -5.040527 -4.343608 0.598295 1.011121 -1.947825 -1.257948 -0.291314 3.751038 2.987364 -2.161943 -1.820097 1.198103 +PE-benchmarks/channel-assignment.cpp__maxBPM(int (*) [4]) = -1.061140 -0.507862 -0.274263 -2.283626 1.582225 1.987448 0.797897 -0.731757 -3.451837 -2.195709 1.004273 -5.542411 -3.539058 3.927411 -1.175840 0.941313 4.984392 0.212595 -1.434183 -1.259022 2.115367 -0.015828 4.908427 5.816033 -3.909497 0.440930 -0.483331 1.230961 0.793185 1.042820 1.860643 -4.079174 0.471897 -0.719953 1.527970 -1.347268 -1.273931 0.706048 0.912788 -6.750002 -0.531692 4.258096 1.202792 -0.071772 0.937490 2.798536 4.268152 2.878925 -0.959790 2.604328 2.404601 0.432738 2.127138 -0.247544 0.694517 -1.147976 0.587614 -0.395618 -1.024225 0.116127 -0.964461 -1.237602 -0.454462 4.103491 4.691719 -0.271486 -2.188023 -0.294208 0.944721 1.315084 0.759600 3.310467 1.539265 1.418668 2.744353 -1.085198 -0.118632 -5.858878 1.933249 -8.629225 -2.806475 -0.260064 4.680252 3.239067 0.287488 -2.322925 6.140264 -0.903818 -1.328919 4.886039 4.953562 -1.516205 -0.904381 -1.522029 -2.448717 0.943286 -1.564814 0.637297 1.113108 1.993490 -3.568744 -1.673393 -0.454984 -0.590052 -2.356967 -0.438324 -0.539386 2.431354 -3.972261 -0.377267 -2.461456 2.547244 1.559207 -6.165499 -2.616574 -2.223277 -1.108558 1.149762 -3.047744 -1.177643 1.688401 -0.457411 -1.585519 0.133160 -3.193656 3.362415 1.535744 0.774680 -0.115762 2.280770 1.722535 3.418493 0.282878 -2.252340 0.203093 1.316884 -0.117876 1.213053 -1.756124 -0.730734 2.474318 -2.762911 0.428262 0.080515 -2.205538 -1.686850 -1.621561 -1.498759 -0.122149 10.685642 -1.320822 4.278294 2.822197 -3.052758 2.424807 -0.533338 -0.013000 1.091706 2.831972 2.673978 -2.424309 -2.627006 3.479925 5.932574 1.913234 -2.811766 0.969023 2.256665 0.403200 -1.102928 2.940295 0.194526 0.401041 -2.024489 -0.652017 2.216661 6.358035 -0.929787 -0.981135 -0.139434 3.652096 0.628654 -1.480786 0.475028 -2.484998 -0.066497 1.749510 0.639490 2.437215 4.331629 -7.026720 3.884958 0.476963 0.329379 2.339111 0.638114 -2.603997 -4.890909 -0.608984 1.983051 3.621138 0.183144 -0.404797 -0.002525 -4.515872 0.093435 1.089512 1.191699 -3.146775 4.134145 -0.644810 -1.437640 -1.577906 -1.176550 -1.684262 -0.752155 -2.400303 2.607495 1.530364 -4.618074 3.560751 0.518804 -1.616370 -1.727176 -0.619396 2.013231 -3.470313 -3.757257 1.240449 -2.356557 -4.379238 -1.425733 -1.984035 1.134429 1.280431 0.592077 -3.049486 -4.060578 5.375282 -1.075277 4.976454 2.440524 -0.838425 3.126867 1.391142 -1.847658 -1.596862 -3.161330 1.845114 -0.665730 -1.833646 -0.035464 -1.535967 2.093166 3.451073 -0.576812 -2.425293 -0.976833 3.870157 -1.012092 -0.973780 1.116348 -1.194882 -1.752299 2.473071 2.033181 -2.893610 0.847098 -4.452960 0.027241 -2.381084 -1.838064 2.603182 -1.829822 0.599944 0.921195 -1.154320 -1.027367 1.394563 1.311272 -1.367634 1.029197 5.284209 2.182059 -1.374218 1.685146 -4.929679 3.024387 -4.317656 -3.293172 -0.446478 0.063004 -1.913965 -1.324153 -0.698788 2.322654 2.372386 -2.047168 -2.863261 2.700407 +PE-benchmarks/channel-assignment.cpp__main = 0.252461 1.088312 1.745072 -0.874376 1.173786 0.960365 0.310118 0.364273 -1.005668 -0.340940 -0.417627 -1.761406 -1.292273 1.272804 0.014411 -0.255765 1.894072 0.291769 -0.389554 -0.066299 -0.083701 -0.302979 1.308366 1.619540 -1.207218 0.840217 -0.129121 0.415941 -0.556325 2.363388 -1.537704 -1.571576 -0.326737 0.735412 0.855221 -0.431550 -0.867422 -0.811958 -0.529771 -2.667036 0.022222 1.865613 0.258892 -0.337360 0.649209 0.496732 2.561625 0.591847 0.071729 0.078012 0.057838 -0.123195 0.840792 -0.024392 1.332344 0.561860 2.387082 0.247059 -0.952441 0.405047 -0.371377 -0.743216 -0.435461 1.065334 1.046088 0.141065 -0.800757 -0.982036 0.153848 -0.083573 -0.285983 0.787403 0.673630 0.987074 0.411339 0.508821 1.163847 -0.436599 0.575025 -1.607226 -1.484867 -0.693202 1.341079 1.278492 0.128531 -1.536434 1.799729 -0.855627 0.536534 -0.392664 2.009290 -0.881883 -0.319312 -0.564627 -0.714194 0.151723 -0.007755 -0.534166 0.177240 -0.696316 -1.174517 -0.425924 1.156020 -0.101999 -0.773721 1.656530 -0.016665 1.095903 -1.020573 -0.174875 -1.337765 0.121469 0.332917 -1.629846 -0.454046 0.041757 -0.926883 0.656683 -0.995162 -1.033097 0.845190 0.433631 -1.022529 0.060387 -2.106602 2.211039 0.271182 -0.239468 0.346631 0.108574 0.924281 0.314916 0.700067 -0.564728 0.272475 0.336549 -0.327926 -0.278005 -0.189899 -0.222553 -0.656467 -0.575121 -0.626677 0.191225 -0.889040 1.072482 -1.788560 -0.097566 0.243484 3.491187 -1.073884 1.060024 -0.293848 -1.406643 1.992460 0.573333 -1.034624 -0.442851 0.830657 1.483615 -1.638959 -0.621234 0.926938 1.819121 0.712756 -0.987797 0.774368 -0.146747 -0.495912 -0.015492 1.300980 -0.170636 0.568541 -0.886893 -0.493534 0.134366 2.950170 -0.398195 -3.243272 0.124080 -0.587978 0.500528 -0.493030 0.254354 -0.114329 -0.043500 -0.515913 -0.516945 1.049471 1.404983 -3.100686 1.713143 -0.335390 -1.909313 2.658726 -0.744928 -0.144049 -0.583154 -0.251231 1.299900 1.860785 0.680159 -1.194305 -0.757804 -1.176324 -0.292316 -0.016976 0.590825 -1.077396 1.195580 0.086822 -1.489821 -0.370736 -2.288613 -0.073914 -0.371094 -1.656648 0.360012 0.242603 -2.451831 1.664183 0.980334 0.024601 -0.175762 -0.196754 -0.582627 -0.805466 -1.430013 -0.128529 -0.404511 -1.172068 -0.182521 -0.958941 0.268570 0.261768 0.177261 -1.249025 -1.671636 1.520749 -0.086078 1.605192 1.023281 0.214764 0.859387 3.278753 -0.659529 0.032777 -0.930632 1.041095 -0.470557 -0.249344 0.076205 -1.351040 0.654250 1.384341 -0.126755 0.339211 -1.984213 1.081225 -0.064254 -0.178030 0.789791 -1.869908 -0.541392 -0.043893 1.121474 -0.264464 -0.443320 -1.287543 -0.975080 -0.834099 -0.479184 0.259203 -0.979242 -0.380549 0.968479 -1.008262 -1.193711 0.109580 -0.468656 -0.993696 0.059660 1.555549 0.718167 -0.883217 1.727498 -0.962108 1.268862 -1.335977 -0.510474 -0.166594 -0.492509 -1.055222 -0.656607 0.368730 0.189915 -0.049575 -0.328080 -0.310290 0.268414 +PE-benchmarks/vertex-cover-problem.cpp__Graph::Graph(int) = -0.886871 -0.353017 0.767178 -1.783412 1.162852 0.995514 0.410560 -0.848063 -1.389678 -1.018199 0.615275 -1.692805 -2.233590 1.857005 -0.732418 0.245240 1.180535 -0.765547 -0.888833 -1.231136 1.149372 -0.763242 2.130421 1.889254 -2.224627 0.037407 0.101549 1.481186 0.369871 1.118776 0.558282 -0.957366 -0.791572 0.322133 1.440981 0.537627 -0.555454 -0.048229 -0.216505 -2.469148 -0.400903 2.355885 0.393642 0.063368 0.382942 0.544310 1.484941 1.397248 0.112313 0.749775 1.513490 -0.208230 1.396938 -0.301156 1.203996 -0.464769 1.912759 -0.270240 0.003629 -0.066071 -0.674896 -0.346056 0.109076 2.011536 2.134391 -0.659266 -1.068819 -0.334929 0.157511 1.216118 0.360379 1.714488 -0.116849 0.616049 1.745560 -0.498202 0.635133 -2.231303 1.250257 -2.368168 -1.583015 -0.045413 1.320372 1.700051 0.331098 -0.682506 3.176779 0.016607 -1.104992 0.375170 1.701236 -0.088378 -0.043586 -0.372897 -1.274213 -0.092360 -0.607702 0.066458 0.039322 1.393582 -1.574929 0.246495 -0.008691 -0.231418 -1.336363 0.396940 -0.941650 1.421743 -1.071854 0.010450 -1.000993 1.457096 0.503980 -2.910461 -1.080448 -1.563999 -0.729368 -0.067344 -0.867762 -0.027394 0.966174 0.353118 -0.692274 -0.066005 -1.845405 1.805799 1.437511 -0.019921 -0.182868 1.116752 0.356121 1.015353 0.282424 -0.621162 -0.650769 0.724482 -0.269446 0.690223 0.001976 0.379471 0.718355 -0.619811 -0.196263 -0.224526 -0.324728 -0.343018 -1.107959 -0.749597 -0.108865 4.672193 -1.082331 1.772666 0.783706 -0.948689 1.428544 0.419648 0.109870 0.641787 1.173942 0.742509 -1.264409 -1.268969 2.038357 2.466819 0.569046 -1.306027 0.677188 1.105986 -0.004866 -0.873666 1.568050 -0.033170 0.077404 -0.618754 -0.375504 0.187470 2.679102 -0.765686 -2.313946 0.479028 1.248655 -0.118901 -0.632566 0.264718 -0.925206 -0.489129 0.194284 0.421053 1.140751 1.856154 -2.952604 1.621538 0.397448 -0.606102 2.486144 -0.870997 -0.535934 -2.568023 -0.257748 0.330477 1.511726 -0.086827 -0.898480 -0.343271 -2.090822 0.634756 0.060827 0.463797 -1.581240 2.139944 -0.901035 -0.653609 -0.675386 -1.503704 -1.005771 0.338657 -1.618982 0.726364 0.251304 -2.259252 1.628963 0.325285 -0.484548 -0.575251 -0.030336 1.081709 -0.758619 -1.530843 0.521359 -0.989697 -1.603908 -1.359758 -0.941176 0.305390 0.238231 0.027909 -2.069772 -0.816651 2.082945 -1.249009 2.441331 1.017563 -0.231894 0.920019 1.954041 -0.864280 -0.298732 -0.854501 0.772522 0.213425 -1.232039 -0.466484 -0.742961 0.888183 0.922984 -0.221979 -0.234707 -0.894606 1.952432 -0.411230 -0.582716 0.074324 -1.322431 -0.856218 1.212365 0.776571 -0.307633 0.103344 -2.181086 -0.450106 -1.924871 -1.227398 1.424337 -0.373501 0.551350 0.139536 -0.203861 -0.537453 0.304441 0.600804 -0.746823 -0.007201 2.552141 1.203992 -0.967823 0.373363 -2.267286 1.778210 -1.079125 -0.678853 -0.204823 -0.335185 -0.407153 -0.668487 -0.645870 1.278532 1.260447 -1.004509 -1.049320 0.731554 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/vertex-cover-problem.cpp__Graph::addEdge(int, int) = -0.207629 0.487799 0.710325 -0.603055 0.754452 1.121903 0.276523 -0.281601 -0.616820 -0.653736 0.004449 -1.382057 -1.318310 1.109193 -0.425102 0.196855 1.541574 0.062704 -0.304055 -0.381476 0.422605 0.137492 1.806434 1.739347 -1.420464 0.252384 0.326687 0.766053 0.238120 0.805545 -0.082842 -1.133776 0.389058 -0.163270 0.298001 -0.375291 -0.287049 -0.425646 -0.125558 -2.148592 -0.225758 0.688432 -0.513368 0.008501 0.265403 0.440363 1.795158 0.915251 -0.038145 0.601908 0.548565 0.208105 0.535907 0.083012 0.346667 -0.186662 0.740920 -0.544874 -0.492764 -0.041565 -0.176873 -1.004478 -0.409280 1.293690 1.399073 0.035829 -0.450303 -0.035715 -0.079355 0.187764 -0.010697 0.922614 0.369510 1.020899 0.781000 -0.549021 0.374274 -1.086776 0.077094 -1.834732 -1.161519 -0.700530 0.982812 0.926853 0.438551 -0.386730 1.803415 -0.096516 0.106437 0.802341 1.786177 -1.064380 -0.304424 -0.468897 -0.296752 0.358885 -0.642834 0.317974 -0.238620 0.166782 -1.059314 -0.641479 0.460506 -0.021103 -0.783408 0.076260 -0.272536 0.982118 -1.420744 -0.405713 -1.197009 0.144534 0.070884 -2.006226 -0.901309 -0.122971 0.719090 0.485326 -0.491112 -0.862902 0.463086 0.556744 -0.146803 -0.411900 -0.731987 1.111417 0.780983 -0.037090 0.246582 0.716530 0.691291 1.467165 0.800806 -0.243129 -0.174979 0.291639 -0.311569 0.129923 -0.267389 0.029452 -0.183725 -0.934183 0.065019 0.834763 -0.698001 -0.288385 -0.750103 -0.362115 0.362175 3.635235 -0.365216 1.015689 0.649424 -1.302250 0.385130 -0.520316 -0.435057 0.242592 0.623353 1.068468 -1.456415 -0.718430 0.835498 1.730116 0.586654 -1.131387 0.561812 0.154608 0.056481 -0.575498 0.818810 0.261799 0.282272 -0.665407 -0.194889 0.898380 2.137334 -0.665783 -1.420188 0.239282 -0.005284 0.248310 -0.655044 0.012613 0.068492 -0.109196 0.645692 0.094124 0.461225 1.342214 -1.896064 1.149993 0.129787 -0.527145 1.255378 0.055455 -0.620021 -0.353579 0.156390 1.053553 1.008436 0.190598 -0.275531 -0.289846 -1.387440 -0.098871 0.447877 0.509975 -0.775528 1.174062 0.272788 -0.917842 -0.842241 -0.799180 -0.012022 -0.212927 -0.880506 0.682669 -0.027183 -2.263055 1.406258 0.165344 -0.666402 -0.044295 -0.567136 0.875931 -1.261975 -1.438877 0.513147 -0.672698 -1.309578 -0.314565 -0.513330 0.391126 0.638030 0.283425 -1.139230 -1.015248 1.274140 -0.000222 1.106633 0.809169 0.307506 1.321654 0.255929 -0.788818 -0.472717 -0.974147 0.951325 -0.192234 -0.695056 -0.251756 -0.623938 0.830020 1.597008 -0.293416 -0.451401 -0.603867 1.072675 -1.118049 -0.486947 0.557549 0.477193 -0.695962 0.510108 0.750442 -0.681069 -0.188724 -0.958703 -0.412671 -0.563732 -0.964697 0.603355 -0.924936 0.178426 0.821408 -0.358289 -0.630573 0.530744 -0.053034 -0.123107 0.099323 1.344499 1.403520 -0.840485 0.568726 -1.358384 0.966789 -1.574328 -1.162813 0.244836 -0.160569 -0.224341 -0.359900 -0.116135 0.604120 0.547470 -0.787802 -0.548969 0.264206 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -2.778998 -1.521345 1.100155 -4.865662 3.166995 4.845647 1.644170 -3.074783 -6.152225 -3.660052 1.830813 -9.505500 -5.576731 7.493771 -2.726033 3.640801 9.434616 0.725024 -3.070596 -2.183119 5.028816 -0.194587 9.920513 10.954536 -7.057909 0.142335 -0.682700 3.997402 1.705694 1.808252 2.732555 -5.970992 1.126464 -3.389477 1.716924 -2.725317 -1.576875 2.198139 3.148363 -12.186565 -0.822143 5.689803 0.956330 -0.289217 1.129608 1.069017 7.251302 5.844124 -0.488354 4.244656 4.394359 0.704580 3.817663 0.122148 1.485619 -0.561576 1.502634 -2.789457 -1.671571 -0.342437 -1.942688 -2.392964 0.265258 7.875440 8.924426 0.281596 -3.556889 0.565492 1.741062 2.085168 1.889635 5.901853 0.422191 3.087470 4.558762 -5.854348 0.853275 -11.113321 2.718146 -10.323901 -5.750308 -0.540465 6.235370 6.914070 2.778370 -2.418741 11.064080 -2.000724 -2.768009 7.654607 9.162498 -4.850572 -1.715669 -3.124325 -3.975515 1.165239 -3.459425 1.333481 -0.657828 4.177847 -6.471004 -3.986598 0.813636 0.328840 -4.235465 -1.971425 -0.764374 5.881918 -6.363574 -3.596895 -4.009790 5.106478 0.663192 -11.274033 -3.878768 -4.753321 -0.473757 2.011681 -5.204071 -4.597852 3.169590 0.992792 -2.103999 -1.766542 -5.260897 5.768258 3.939594 0.726336 -0.654402 4.206765 2.366133 8.432337 1.236830 -3.872868 0.317278 2.330134 -1.185581 2.437149 -3.449262 -1.379946 2.094705 -5.451103 -1.506362 2.767238 -4.083394 -2.510673 -2.118367 -1.581018 0.220338 21.596257 -1.890909 7.319384 6.069265 -6.184196 4.927019 -1.571044 0.582780 2.135752 4.365017 4.526507 -9.351379 -5.730567 6.284897 10.624812 3.820309 -5.309267 -0.028485 2.829155 1.142126 -1.937634 4.694883 1.210676 0.374837 -4.161273 -1.057549 4.433582 12.849662 -2.938598 -2.222730 1.106065 3.858892 0.119148 -5.816209 -0.479184 -4.739632 -0.592936 3.212877 1.686454 3.700367 8.419656 -10.657951 7.026685 0.343391 0.193092 6.019966 0.852070 -5.095520 -7.342528 -1.381587 3.889231 6.369840 -0.410741 -0.408040 0.317131 -8.734372 0.278149 1.933928 2.346237 -5.253886 7.501059 -0.844265 -3.537413 -3.409594 -1.060057 -3.270371 -2.653701 -3.868740 5.224595 2.437083 -6.722072 6.803794 1.260256 -2.837029 -0.152648 -2.082066 6.186141 -6.343807 -7.101177 3.903114 -3.575715 -5.954348 -2.609545 -2.556150 2.687067 2.894115 0.585527 -6.363222 -6.542405 7.848694 -1.775710 8.770725 4.170731 -1.163757 4.690081 2.663900 -3.600385 -3.233874 -5.669332 1.990774 0.481427 -4.372584 -4.133880 -2.454373 5.261591 6.893018 -0.864914 -4.494347 -1.862976 7.624485 -4.905598 -1.920418 2.449967 -0.979280 -4.569800 2.793509 3.923799 -5.593420 1.090752 -6.638833 0.364306 -4.444315 -4.202996 5.043326 -2.872406 1.867100 1.273996 -1.645108 -1.104981 2.678966 3.276434 -1.079507 1.811300 10.095779 4.283630 -1.187793 1.175729 -9.169819 5.073078 -8.342358 -6.266363 0.117770 1.059255 -3.990665 -1.900196 -0.295111 5.502028 4.637910 -3.264641 -4.276901 2.971927 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/vertex-cover-problem.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/vertex-cover-problem.cpp__main = 0.299814 0.017917 0.917702 -0.440753 0.215465 -0.890941 0.149881 1.353610 -0.896638 -1.061690 -0.093127 -0.664508 -1.023228 0.611090 -0.008644 -1.136371 1.123893 0.635300 0.131609 -0.606282 -0.462647 -0.409245 0.490886 0.959895 -0.789961 0.400329 -0.580749 0.556017 0.121407 0.796983 0.570700 -0.955276 -0.204168 1.262654 0.882756 -0.540429 -0.297482 -0.068866 -1.627278 -1.760879 0.036330 1.445710 0.259556 0.062448 0.707761 1.592421 0.864016 0.257685 -0.382547 0.752185 0.303767 0.165853 0.402816 -0.080660 0.082186 -0.522631 0.258330 -0.542616 -0.735279 0.809138 -0.041161 -1.299401 -0.378013 0.361605 0.582760 -0.273370 -0.321812 -1.127618 0.185765 0.421997 0.393320 0.177544 0.888789 -0.239582 0.559479 1.013155 -0.296068 -0.929673 0.585516 -3.227782 -0.843653 -0.566881 2.672299 1.032260 -1.312072 -0.966543 0.775911 -0.207057 0.431518 0.932409 0.603889 0.710698 -0.365664 -0.379190 -0.247611 0.816313 -0.131619 -0.480089 0.278138 0.583273 -0.485913 0.486019 0.224968 -0.873626 -0.336838 1.003165 -0.216498 0.752407 -1.418589 0.837112 -1.171438 0.812002 1.400089 -0.537793 -0.079811 -0.002935 0.206137 0.593823 -0.426783 1.360406 0.301615 -0.626486 -0.559468 1.333638 -1.982879 1.118922 -0.597880 -0.093203 0.237800 0.649994 0.182715 -0.858556 0.244851 -0.368695 -0.074767 0.776284 0.084253 -0.209305 -0.400860 -0.108578 0.616065 -0.118218 0.365468 -1.178383 -0.558822 -0.917798 -1.758766 -0.213898 0.272456 0.423736 -0.179637 0.515018 0.046499 0.064379 0.552918 0.550497 -0.056405 0.210715 0.834947 0.252267 1.172162 -0.125698 -0.128287 0.824034 0.389620 -0.232999 0.539649 0.153555 -0.158744 0.188683 0.825360 -0.091281 0.284691 -0.210901 -0.113793 -0.109702 0.450405 0.724887 -1.250034 -0.737052 0.570516 0.303605 0.474248 0.655014 0.931163 0.075176 0.162192 -0.205458 0.449700 0.616845 -2.303951 0.879989 0.314272 0.221049 0.044771 -0.207251 0.116696 -1.533989 -0.238186 0.169092 1.410181 0.503211 -0.459987 0.114762 -0.532063 -0.119859 0.156464 0.439614 -0.435512 0.494161 -0.200478 0.015603 0.026047 -1.428011 -0.219567 0.883775 -0.744612 0.067905 0.614315 -1.770238 0.294627 -0.419690 -0.286000 -0.805298 0.231750 -0.168167 -0.563294 -0.504923 -0.495862 -0.333849 -2.256181 -0.840471 -0.667916 0.230314 -0.516724 -0.095618 0.209777 -0.448679 1.557416 -0.229997 0.663861 0.547191 -0.483524 1.356875 1.681259 -0.254945 0.404722 -0.489675 1.073019 -1.273674 0.473366 1.435786 -0.536037 -0.345221 0.794311 -0.010255 -0.104850 -0.297921 0.971853 0.349276 -0.742501 0.401066 -1.174890 0.948137 1.732997 0.663576 -0.963819 -0.144583 -1.247939 -0.063452 0.408481 0.204708 0.462825 -0.720304 -0.044217 0.317647 -0.024931 -0.953994 0.232285 -0.339134 -0.869394 -0.214187 1.146623 1.279988 -0.702309 1.587133 -0.380008 0.609164 -0.502675 0.097365 -0.993894 -0.180842 0.001434 0.221003 -0.568890 -0.103990 0.273169 -0.362737 -0.820180 1.025425 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/vertex-cover-problem.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.102838 2.291312 1.562487 -0.717917 2.766109 1.367771 1.013271 0.487268 -0.616644 -2.691570 -0.631638 -2.124391 -4.425986 2.294314 -0.585513 0.063224 3.754322 -0.176848 0.687496 -1.706446 1.853539 -2.030642 4.557629 3.680192 -4.653238 0.892316 2.125728 1.636419 0.893876 2.301289 -0.173409 -2.800218 1.563200 -0.912133 2.434333 -1.435159 -0.411212 -1.746284 -1.231941 -5.474236 -1.158902 1.074740 -1.666458 0.751731 0.332065 3.627279 5.243060 2.305665 -2.197185 2.042171 2.024831 -0.388197 1.362920 0.613941 -0.184239 -0.707094 0.810340 0.454739 -1.683475 0.649137 -0.741573 -4.573867 -0.332802 2.899213 4.047803 -1.009577 -0.593018 1.138952 -1.047903 0.592012 -0.366003 2.654282 2.658497 1.439750 3.834976 -2.583265 -0.915642 -6.064336 -0.790629 -9.619127 -3.353501 -3.757440 2.156846 -0.214132 1.442142 -0.768521 4.801038 0.882879 1.365380 2.454258 4.607286 -2.750372 -0.617689 -2.410959 -0.586002 0.946581 -1.988110 0.493299 1.582555 -0.871082 -2.603298 -2.541087 1.879002 -0.557000 -1.873320 -1.760126 -1.825465 2.696122 -3.943065 -1.143923 -5.230952 -1.214098 -0.209101 -5.266261 0.164105 0.378936 3.143710 1.639620 0.407178 -1.604759 0.753452 2.296745 -0.518526 -1.834076 -0.538712 3.938225 2.294532 0.051212 1.637644 1.825754 1.319343 3.039852 4.986868 0.217510 -1.976297 0.873415 -1.496661 0.057007 -1.230226 0.251822 2.685449 -2.415903 0.080594 1.378587 -1.326006 -1.234421 1.381152 -2.601321 1.997828 7.446721 -0.705544 1.826334 0.643406 -3.405656 1.992737 -0.923036 -1.365606 1.663266 2.934402 2.574579 -3.500661 -1.784515 1.567659 3.652194 1.049482 -4.325527 -0.755701 -0.209161 0.637889 -1.490111 0.998617 1.208337 0.840279 -1.502646 0.045779 1.590841 5.111028 -2.649330 -3.639972 0.843701 1.038919 -0.209938 -3.745856 -0.330947 -0.918710 -0.925056 0.907091 -0.060883 0.687486 3.291336 -6.560584 2.461418 -0.687083 -1.258650 2.150932 0.151528 -0.574745 -4.132004 1.655184 2.886846 2.100674 1.186277 -0.173361 -1.161072 -3.317569 0.547958 0.594217 1.895951 -1.644233 2.928538 -0.850023 -2.251208 -2.909906 -2.163292 -0.218727 -0.506149 -1.013645 1.105284 1.046774 -7.294980 3.452635 -1.336000 -2.279453 0.322650 -0.520194 2.619889 -3.003984 -4.252019 1.421064 -2.031352 -3.701978 -2.211573 -1.003741 1.065021 0.750870 -0.985431 -1.913322 -4.344012 3.357012 -0.466682 1.946062 2.303078 1.834084 5.843422 0.631077 -3.284702 -2.703609 -1.698674 1.915076 -1.512861 -1.416688 -1.759733 -1.375295 1.887757 5.068595 -0.379324 0.477254 -1.392684 3.095328 -4.594436 -2.024290 2.471422 2.911143 -0.795757 2.473208 2.492805 -1.699599 -1.892443 -2.776764 -0.286514 -0.230242 -2.581894 0.959781 -3.914342 -0.390382 2.681716 -0.679213 -1.605337 1.770754 -0.443432 0.247884 -1.973846 3.494801 6.416270 -4.615794 0.651170 -2.647321 2.195716 -4.426188 -2.842907 0.051400 0.525438 0.730074 -0.151317 0.731008 1.029767 0.923286 -2.556125 -1.478989 -0.690962 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/vertex-cover-problem.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/vertex-cover-problem.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/vertex-cover-problem.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__fact(int) = -0.451297 -0.649105 -0.274934 -0.633341 0.417896 0.033720 0.245851 -0.531694 -0.933886 -0.402178 0.428690 -1.162319 -0.329933 0.821797 -0.292907 0.689638 0.963368 0.106794 -0.282155 -0.439470 0.459899 -0.327082 0.942278 1.200130 -0.472696 -0.014726 -0.312816 0.152514 -0.085449 -0.142571 0.469696 -0.769418 0.184827 -0.496470 0.205851 -0.180029 -0.349747 0.668857 0.811606 -1.160950 -0.048802 0.548127 0.429342 0.064936 0.091752 0.386382 0.350812 0.478783 0.122672 0.945999 0.453193 -0.072295 0.486206 -0.021192 0.385472 0.023331 0.021063 -0.328268 -0.161946 0.083188 -0.440111 0.236451 0.121347 0.651100 0.800105 -0.139046 -0.543440 0.064703 0.287501 0.332097 0.414455 0.664656 -0.150693 -0.046023 0.306882 -0.987759 -0.047854 -1.717147 0.352874 -1.709043 -0.605006 0.445895 0.828663 0.534043 0.179558 -0.150670 1.228591 -0.131835 -0.733082 0.654139 0.805077 -0.338534 -0.184425 0.093793 -0.345626 -0.225075 -0.081652 0.121418 0.427546 0.701132 -0.709642 -0.121143 0.189707 -0.148018 -0.313913 -0.470562 0.053288 0.622746 -0.583410 -0.375190 -0.160398 0.979952 0.226312 -0.999655 0.126103 -0.598504 -0.281409 0.222631 -0.967426 -0.293645 0.496500 -0.241055 -0.419917 0.100598 -0.509635 0.506365 0.396646 0.280481 -0.188253 0.672175 0.070597 1.012524 -0.262541 -0.645622 0.204519 0.296953 0.142335 0.554060 -0.286821 -0.299222 0.327119 -0.575024 0.177442 -0.200949 -0.431893 -0.301290 0.140890 0.023727 -0.379197 1.828517 -0.380962 1.058196 0.798739 -0.416237 0.491613 -0.251925 0.503805 0.181147 0.644727 0.125505 -0.557724 -0.715346 0.903357 1.137242 0.385674 -0.672698 -0.412996 0.497629 0.201535 -0.002311 0.491212 0.037641 0.038916 -0.227823 -0.041526 0.136452 1.445162 -0.217891 0.376624 -0.027509 0.790372 0.154120 -0.679553 -0.119355 -1.032391 -0.018896 0.173723 0.432565 0.340443 0.875888 -1.536081 0.709471 -0.150189 0.330097 0.552012 0.438819 -0.620341 -1.842722 -0.625110 0.074347 0.746605 -0.198939 0.295021 0.276001 -0.813269 0.124472 0.046049 0.145262 -0.701904 0.752684 -0.273584 -0.268991 0.113685 0.234606 -0.522211 -0.252897 -0.223823 0.631334 0.804310 -0.853269 0.380440 0.299754 -0.264565 -0.043818 0.110255 0.873494 -0.331743 -0.472897 0.351340 -0.538675 -0.522190 -0.220450 -0.289028 0.076292 -0.249478 0.122187 -0.443508 -0.341232 0.971967 -0.381622 1.142608 0.363280 -0.526693 0.378246 -0.241800 -0.523661 -0.038003 -0.643221 0.038945 -0.097720 -0.230138 0.019369 -0.093476 0.433395 0.322085 0.343058 -0.670544 0.152015 0.781517 -0.461138 0.232286 0.299924 -0.235564 -0.369626 0.502558 0.439561 -0.627513 0.418627 -0.739694 0.098287 -0.723974 -0.044087 0.678342 0.025656 0.180092 -0.440733 -0.129771 0.109699 0.325089 0.573798 -0.042785 0.322763 1.101759 0.418669 0.127156 -0.103172 -0.899662 0.397450 -0.505752 -0.552680 -0.169682 0.518938 -0.719748 -0.312675 -0.220270 0.693758 0.535063 -0.413720 -0.635383 0.623974 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findSmallerInRight(char*, int, int) = -1.199031 -1.077255 -0.784823 -1.389489 1.013162 1.896948 0.722051 -1.676412 -2.295658 -0.760321 0.924855 -2.953577 -1.384714 2.712215 -0.849818 2.294145 3.269673 0.369887 -1.227338 -0.802901 2.259474 -0.442633 3.731559 3.902438 -2.198585 0.014819 0.124365 1.026426 0.734100 0.249897 0.735993 -1.492851 1.134009 -2.668327 -0.036165 -1.393082 -0.591401 1.151971 2.135596 -4.052696 -0.214798 1.080952 0.388172 -0.065457 -0.077189 0.864507 1.990215 2.138203 0.005098 2.174374 1.414854 -0.240324 1.245996 0.215318 0.743827 0.451926 0.172890 -0.206647 -0.456202 -0.525419 -0.789007 -0.902493 0.292508 2.575576 3.098651 -0.132947 -1.231043 1.065919 0.384664 0.680529 0.934291 2.063295 -0.292674 0.534523 1.667838 -3.145681 0.212264 -3.820479 0.291527 -4.428079 -1.631824 0.237499 1.710881 0.845930 1.778812 0.065228 3.876730 -0.703616 -1.436377 2.630155 2.968675 -2.420377 -0.644326 -0.544532 -0.949095 0.069776 -1.285934 0.519281 0.955422 1.072102 -2.313008 -1.590283 0.509868 0.603080 -1.453812 -1.671805 -0.177459 1.907441 -2.600200 -1.952270 -1.175636 1.314656 -0.550491 -4.019548 -1.267206 -1.571312 0.681542 0.627514 -1.944226 -2.330038 1.212803 0.722078 -0.328307 -1.453940 0.157070 1.426713 1.437039 0.647792 -0.137441 1.411273 0.520458 4.156281 1.036581 -1.302182 0.220461 0.775247 -0.568824 1.363588 -0.995800 -0.932209 0.789147 -2.562187 0.060764 1.318250 -1.444304 -0.604838 1.320638 0.015116 -0.225336 7.784039 -0.487475 2.867616 2.572234 -2.319331 0.771636 -1.270539 0.622921 1.090557 1.633273 1.163403 -3.546441 -2.063886 2.208066 3.723517 1.426158 -2.629313 -0.570104 0.761441 0.793972 -0.365668 1.137428 0.397760 0.409714 -1.569161 -0.234339 1.365118 4.837947 -1.829322 0.247620 0.614841 1.033080 -0.525374 -2.876552 -0.541013 -2.374916 -0.107626 0.911812 0.642965 0.917451 2.896992 -3.145165 2.399338 -0.800727 0.112417 1.977215 1.134858 -2.042512 -2.847560 -0.895836 1.040116 2.171112 -0.389586 0.166685 0.575661 -3.119846 0.083743 0.623981 0.524841 -1.705735 2.668506 0.034293 -1.206788 -1.004531 0.836123 -0.487304 -1.280761 -0.420489 2.080465 0.454027 -2.690940 1.995101 0.454265 -1.370688 0.462204 -0.048387 2.420315 -2.189697 -2.571092 1.820128 -1.023455 -1.464319 -0.793158 -0.655678 1.077186 1.314581 -0.033631 -2.119608 -2.303709 2.569900 -0.831762 3.036510 1.388728 -0.609153 1.977792 -1.219654 -1.524354 -1.641965 -1.504594 -0.289928 -0.122495 -1.517473 -1.814669 -0.616674 2.289078 2.292443 0.252136 -1.573098 0.083125 2.831297 -2.366373 -0.258358 1.063823 1.598115 -1.874249 1.045988 1.469709 -2.190189 0.620543 -1.620227 -0.281966 -1.563099 -1.352678 2.143097 -0.838764 0.955614 0.027974 -0.240147 0.266927 1.071401 1.233239 0.233209 0.660072 3.350200 2.025387 -0.688919 -0.610297 -3.052088 1.586629 -2.811900 -2.346486 0.345890 1.256462 -1.592211 -0.578896 0.240494 2.282275 1.830020 -1.863103 -1.362356 0.673840 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -1.134041 -1.304659 -0.394078 -1.618621 1.326079 0.940809 0.911633 -1.554814 -2.545961 -0.833995 1.326052 -3.360137 -1.705734 2.852087 -0.772329 2.175285 3.555556 0.199085 -0.936455 -1.688230 2.115840 -0.480118 4.162080 4.428568 -2.756862 0.155906 0.049804 0.905644 1.258682 -0.573011 0.710859 -1.544868 1.345434 -2.602380 0.120768 -1.060430 -0.627422 1.047193 2.611041 -4.347555 -0.208106 0.486503 0.328373 0.122083 -0.041760 2.536014 2.196501 2.343126 -0.443317 2.888619 2.135442 -0.833550 1.293774 0.207406 0.541080 -0.273642 0.342615 0.476090 -0.623156 -0.174045 -0.639654 -0.844179 0.142374 2.675486 3.522721 -0.329102 -1.524011 1.129104 0.978061 0.769920 1.044362 2.253098 0.668211 0.518757 2.206955 -3.494007 -0.353550 -6.064820 0.099864 -6.424494 -2.264163 0.340467 2.748503 -0.545954 1.418633 -0.114650 3.986773 0.145829 -1.652526 2.726259 3.252378 -2.371334 -0.860593 -0.281634 -0.931196 0.260752 -1.303121 1.293580 1.704938 1.075678 -2.644183 -1.735274 1.017480 0.014035 -1.568610 -1.787939 -0.012298 1.775291 -2.268296 -1.564781 -1.522843 1.555248 0.161319 -4.210249 -0.346728 -1.569061 1.717110 0.788871 -2.034652 -1.703246 0.912618 0.120052 -0.961596 -1.166097 -0.298774 1.938971 2.055212 1.088831 0.073361 1.727767 0.882088 4.162323 0.816582 -1.764010 0.068149 0.693426 -0.567819 1.718661 -1.509476 -0.916292 2.226611 -2.232712 0.847340 0.557278 -1.523414 -1.059109 2.749020 0.127475 -0.445346 7.185621 -0.289055 3.246585 2.812208 -1.947583 1.067362 -1.622953 0.874434 1.454383 2.013467 0.886752 -3.320231 -2.296414 2.331929 3.856609 1.487169 -3.803863 -1.081041 1.199077 0.825306 -0.759657 1.327064 0.475680 0.664355 -1.369603 -0.045583 1.731580 5.069601 -1.878038 -0.118322 0.251134 1.696285 0.092587 -3.163733 -0.609391 -2.122913 -0.086903 1.056964 1.334171 1.333968 3.108571 -5.315237 2.277291 -0.521126 0.368372 1.839147 1.613819 -2.676438 -3.863646 -0.595628 0.856871 2.259349 0.310692 0.413886 0.937175 -3.306423 0.184664 0.512940 0.259860 -1.883433 2.725528 -0.205233 -1.018288 -0.829580 0.475832 -0.852438 -0.783249 -0.371758 2.365600 0.992574 -4.501725 1.830957 0.142485 -1.790998 0.078398 -0.677246 2.933913 -2.288135 -2.349368 1.547783 -1.569821 -1.872676 -1.550155 -0.538954 0.561962 0.354063 0.788204 -2.117093 -2.705979 3.267299 -1.136232 3.225177 1.643536 -0.943553 2.349414 -1.655324 -1.856580 -1.827746 -1.460771 0.605722 -0.058864 -1.822715 -0.942778 -0.702156 1.995085 2.359462 0.112268 -1.566326 -0.144180 2.743944 -3.412236 -0.612456 1.239411 2.392925 -1.581323 1.921666 1.660868 -2.532528 1.025076 -2.100324 -0.907503 -1.548657 -1.386288 2.379832 -0.619019 0.988640 -0.298666 -0.257039 0.439161 1.504500 0.857757 0.032315 0.510162 3.618739 4.133567 -1.281921 -0.800418 -3.485573 1.840155 -2.897143 -2.873455 0.587841 0.756542 -2.065535 -0.640590 0.020140 2.438303 1.738907 -2.319415 -2.165916 1.442552 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.064700 0.260607 0.410852 -0.115024 0.280733 -0.102676 0.134958 0.345694 -0.311534 -0.557065 -0.024403 -0.722114 -0.757382 0.437260 -0.060773 -0.265464 0.627380 0.112710 0.034288 -0.184947 -0.164779 -0.188182 0.537160 0.597095 -0.492666 0.207635 -0.147725 0.194356 -0.093939 0.486985 0.080802 -0.717164 0.070755 0.432327 0.373820 -0.054680 -0.172952 -0.219767 -0.525662 -0.904645 -0.074142 0.790981 0.156893 -0.018221 0.227481 0.567027 0.784236 0.270721 -0.074264 0.307091 0.128307 -0.053269 0.318059 0.025527 0.179830 -0.325312 0.295116 -0.367572 -0.495789 0.253421 -0.089842 -0.693355 -0.350837 0.364862 0.478951 -0.082467 -0.195245 -0.333780 -0.130805 0.181922 0.017888 0.265655 0.488743 0.223767 0.335326 0.422771 0.015033 -0.359985 0.093584 -1.453909 -0.559272 -0.335169 0.987800 0.685511 -0.269563 -0.472844 0.625105 0.001961 0.159164 0.279180 0.748010 -0.068990 -0.235862 -0.188612 -0.066454 0.285548 -0.218215 -0.053003 0.130773 0.092045 -0.434308 0.035074 0.233629 -0.278677 -0.236017 0.395134 -0.136590 0.366644 -0.731171 0.190134 -0.711817 0.017313 0.496848 -0.640492 -0.029380 0.202515 -0.095221 0.408543 -0.264465 0.196517 0.257394 -0.139435 -0.228228 0.264085 -0.966174 0.668100 -0.093306 0.034404 0.232298 0.392901 0.339656 0.037825 0.226971 -0.121004 -0.050048 0.162144 -0.022029 0.033047 -0.044122 -0.111108 0.103423 -0.250672 0.111314 -0.238416 -0.326973 -0.245835 -0.958660 -0.183631 0.158219 0.478817 -0.201297 0.375037 0.048038 -0.341194 0.422690 -0.036102 -0.235578 -0.063938 0.395238 0.407174 0.315829 -0.188519 0.296597 0.643040 0.233573 -0.257473 0.350766 0.133283 0.073128 -0.139756 0.473408 0.123740 0.236220 -0.254159 -0.073337 0.184129 0.623949 0.006671 -0.673480 -0.061639 0.107273 0.358602 -0.014817 0.197720 0.256323 -0.024658 0.009038 -0.033440 0.164450 0.494389 -1.058524 0.551089 0.141488 -0.146627 0.421901 -0.160807 -0.139081 -0.644260 0.014439 0.398490 0.562014 0.299578 -0.183560 -0.185897 -0.435820 -0.070844 0.058733 0.245089 -0.269416 0.402101 -0.162541 -0.254848 -0.272344 -0.771099 -0.051373 0.154411 -0.471539 0.157315 0.522532 -0.971980 0.506126 -0.033379 -0.246626 -0.398956 0.003609 0.019387 -0.428021 -0.507208 -0.133070 -0.532353 -1.066271 -0.283904 -0.326223 -0.042174 -0.065245 -0.136805 -0.053741 -0.285806 0.833550 0.003396 0.453348 0.330259 0.035417 0.637898 0.941912 -0.369871 0.158804 -0.308136 0.483592 -0.632181 -0.007772 0.496166 -0.307526 0.093777 0.575133 -0.040462 -0.077876 -0.315623 0.388169 -0.027166 -0.373897 0.350219 -0.488231 0.118160 0.569475 0.420455 -0.316370 -0.098124 -0.663027 -0.119254 -0.132950 -0.230424 0.062004 -0.472869 -0.115987 0.361431 -0.229024 -0.487647 0.122427 -0.153272 -0.379521 -0.139013 0.631860 0.510872 -0.492075 0.703068 -0.444830 0.353420 -0.525774 -0.291364 -0.129730 0.024669 -0.109172 -0.122767 -0.071576 -0.056123 0.108847 -0.353851 -0.450619 0.344101 +PE-benchmarks/dfs.cpp__Graph::Graph(int) = -0.886871 -0.353017 0.767178 -1.783412 1.162852 0.995514 0.410560 -0.848063 -1.389678 -1.018199 0.615275 -1.692805 -2.233590 1.857005 -0.732418 0.245240 1.180535 -0.765547 -0.888833 -1.231136 1.149372 -0.763242 2.130421 1.889254 -2.224627 0.037407 0.101549 1.481186 0.369871 1.118776 0.558282 -0.957366 -0.791572 0.322133 1.440981 0.537627 -0.555454 -0.048229 -0.216505 -2.469148 -0.400903 2.355885 0.393642 0.063368 0.382942 0.544310 1.484941 1.397248 0.112313 0.749775 1.513490 -0.208230 1.396938 -0.301156 1.203996 -0.464769 1.912759 -0.270240 0.003629 -0.066071 -0.674896 -0.346056 0.109076 2.011536 2.134391 -0.659266 -1.068819 -0.334929 0.157511 1.216118 0.360379 1.714488 -0.116849 0.616049 1.745560 -0.498202 0.635133 -2.231303 1.250257 -2.368168 -1.583015 -0.045413 1.320372 1.700051 0.331098 -0.682506 3.176779 0.016607 -1.104992 0.375170 1.701236 -0.088378 -0.043586 -0.372897 -1.274213 -0.092360 -0.607702 0.066458 0.039322 1.393582 -1.574929 0.246495 -0.008691 -0.231418 -1.336363 0.396940 -0.941650 1.421743 -1.071854 0.010450 -1.000993 1.457096 0.503980 -2.910461 -1.080448 -1.563999 -0.729368 -0.067344 -0.867762 -0.027394 0.966174 0.353118 -0.692274 -0.066005 -1.845405 1.805799 1.437511 -0.019921 -0.182868 1.116752 0.356121 1.015353 0.282424 -0.621162 -0.650769 0.724482 -0.269446 0.690223 0.001976 0.379471 0.718355 -0.619811 -0.196263 -0.224526 -0.324728 -0.343018 -1.107959 -0.749597 -0.108865 4.672193 -1.082331 1.772666 0.783706 -0.948689 1.428544 0.419648 0.109870 0.641787 1.173942 0.742509 -1.264409 -1.268969 2.038357 2.466819 0.569046 -1.306027 0.677188 1.105986 -0.004866 -0.873666 1.568050 -0.033170 0.077404 -0.618754 -0.375504 0.187470 2.679102 -0.765686 -2.313946 0.479028 1.248655 -0.118901 -0.632566 0.264718 -0.925206 -0.489129 0.194284 0.421053 1.140751 1.856154 -2.952604 1.621538 0.397448 -0.606102 2.486144 -0.870997 -0.535934 -2.568023 -0.257748 0.330477 1.511726 -0.086827 -0.898480 -0.343271 -2.090822 0.634756 0.060827 0.463797 -1.581240 2.139944 -0.901035 -0.653609 -0.675386 -1.503704 -1.005771 0.338657 -1.618982 0.726364 0.251304 -2.259252 1.628963 0.325285 -0.484548 -0.575251 -0.030336 1.081709 -0.758619 -1.530843 0.521359 -0.989697 -1.603908 -1.359758 -0.941176 0.305390 0.238231 0.027909 -2.069772 -0.816651 2.082945 -1.249009 2.441331 1.017563 -0.231894 0.920019 1.954041 -0.864280 -0.298732 -0.854501 0.772522 0.213425 -1.232039 -0.466484 -0.742961 0.888183 0.922984 -0.221979 -0.234707 -0.894606 1.952432 -0.411230 -0.582716 0.074324 -1.322431 -0.856218 1.212365 0.776571 -0.307633 0.103344 -2.181086 -0.450106 -1.924871 -1.227398 1.424337 -0.373501 0.551350 0.139536 -0.203861 -0.537453 0.304441 0.600804 -0.746823 -0.007201 2.552141 1.203992 -0.967823 0.373363 -2.267286 1.778210 -1.079125 -0.678853 -0.204823 -0.335185 -0.407153 -0.668487 -0.645870 1.278532 1.260447 -1.004509 -1.049320 0.731554 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/dfs.cpp__Graph::addEdge(int, int) = -0.164326 0.331884 0.450107 -0.264187 0.527004 0.590706 0.242617 -0.119605 -0.410527 -0.492845 -0.064848 -0.887586 -0.943390 0.806856 -0.217229 0.252976 1.153778 0.178897 -0.118789 -0.280318 0.314766 -0.259326 1.260686 1.212431 -0.927336 0.186563 0.277930 0.475983 0.071305 0.652928 -0.196768 -0.771066 0.385684 -0.276657 0.288088 -0.401325 -0.185549 -0.210944 -0.077080 -1.556732 -0.155943 0.451956 -0.176537 -0.007302 0.115819 0.448248 1.239375 0.646140 -0.029216 0.504433 0.294081 -0.047873 0.430800 0.130127 0.300084 0.037132 0.475676 -0.289547 -0.484457 0.058847 -0.181542 -0.949825 -0.238634 0.816049 1.006179 -0.042053 -0.276699 0.057121 -0.183261 0.132910 -0.002605 0.600411 0.326987 0.537521 0.592142 -0.547811 0.192863 -0.903189 -0.100729 -1.660822 -0.837275 -0.579908 0.653839 0.471930 0.414948 -0.207579 1.255804 -0.059976 0.132561 0.404428 1.298107 -0.898381 -0.278445 -0.348565 -0.077224 0.227173 -0.497978 0.108263 0.129249 -0.054671 -0.760052 -0.563051 0.552367 0.033816 -0.511060 -0.057575 -0.224935 0.751796 -1.059194 -0.465316 -1.066060 -0.151156 -0.053566 -1.356959 -0.205103 0.024186 0.471496 0.479771 -0.349678 -0.710050 0.389677 0.470976 -0.088781 -0.444295 -0.432986 0.889278 0.413544 -0.063726 0.272787 0.483841 0.393248 1.064241 0.809088 -0.158857 -0.158589 0.267679 -0.392360 0.088566 -0.242868 -0.147495 0.002098 -0.763372 -0.031841 0.500667 -0.538004 -0.087995 -0.236702 -0.223312 0.318292 2.197603 -0.255340 0.639053 0.379791 -0.952312 0.475534 -0.385870 -0.290319 0.162458 0.584383 0.713420 -1.032760 -0.528170 0.527964 1.187139 0.449544 -0.861966 0.096608 -0.067078 0.185379 -0.299788 0.504540 0.264725 0.245007 -0.514608 -0.093038 0.470217 1.577414 -0.641029 -0.887849 0.206534 -0.128492 0.094844 -0.847071 -0.052924 -0.151683 -0.133772 0.158313 0.030641 0.207726 0.959184 -1.348457 0.862491 -0.169163 -0.444669 0.945579 0.010591 -0.372971 -0.602222 0.107303 0.759529 0.793835 0.213331 -0.127073 -0.204822 -0.975013 -0.073344 0.184665 0.436078 -0.496987 0.823542 0.056660 -0.707374 -0.599708 -0.521847 0.060607 -0.332889 -0.440527 0.458587 0.263608 -1.606895 0.968569 0.048525 -0.492582 0.119028 -0.154598 0.556854 -0.877131 -1.076542 0.375662 -0.475918 -0.849761 -0.302191 -0.327481 0.290055 0.309305 -0.124220 -0.599615 -0.796863 0.891601 -0.016220 0.739850 0.548455 0.231097 1.039302 0.381999 -0.706836 -0.345333 -0.497444 0.354741 -0.408263 -0.375856 -0.308837 -0.408021 0.663596 1.218997 -0.041182 -0.147699 -0.384453 0.831957 -0.902941 -0.365608 0.566210 0.398956 -0.363527 0.385661 0.648253 -0.574672 -0.263311 -0.623105 -0.274663 -0.295733 -0.660089 0.352378 -0.817783 0.048266 0.569489 -0.268365 -0.408865 0.374726 -0.009136 -0.075102 -0.103070 1.009564 1.081055 -0.734119 0.360547 -0.857581 0.591656 -1.117721 -0.723980 0.104760 0.202570 -0.224904 -0.181987 0.152537 0.356470 0.301226 -0.624119 -0.403787 -0.036241 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/dfs.cpp__Graph::DFSUtil(int, bool*) = -0.651191 0.936332 1.862081 -2.063836 1.609501 2.012877 0.582854 -0.287435 -1.819892 -2.645370 0.265000 -4.217650 -3.917284 2.966773 -1.288374 -0.194809 4.080059 -0.065484 -0.725090 -1.194983 1.246623 0.182706 4.471577 4.757219 -4.043862 0.344582 0.392184 2.308021 1.023591 1.350498 1.239114 -3.367343 0.414894 0.329802 1.543480 -0.755790 -0.557717 -0.704522 -0.895528 -5.710821 -0.724856 2.743600 -1.065476 0.091558 0.901021 1.632668 4.626423 2.510720 -0.843812 1.379418 2.051111 0.754458 1.443122 -0.033827 0.239372 -1.683329 0.907180 -1.687303 -1.104905 0.256017 -0.406499 -2.538451 -0.803052 3.740505 3.988092 0.005707 -1.253238 -0.370180 0.245316 0.783532 0.097033 2.607343 1.570287 2.490303 2.464089 -1.140767 0.376002 -4.386076 1.035563 -5.997149 -3.073566 -1.712243 3.535104 3.428163 0.133791 -1.944002 4.925092 -0.040618 0.058311 3.646079 4.745253 -1.699417 -0.798714 -1.906742 -1.476125 1.313658 -1.811505 0.931715 -0.946331 1.481142 -2.824966 -1.326539 0.288149 -0.622205 -2.091838 0.055531 -0.820192 2.549625 -3.589829 -0.246382 -3.088027 1.267472 1.311439 -5.438050 -2.153774 -1.037335 1.219647 1.090858 -1.429959 -1.011060 0.996363 0.608870 -0.718849 -0.030860 -3.683122 3.266013 1.885520 0.048550 0.336080 2.287729 1.924406 2.782056 1.200721 -0.979386 -0.611563 0.902676 -0.681694 0.288756 -1.204348 0.215049 1.284112 -1.970513 -0.424673 1.176245 -1.786302 -1.769750 -2.441855 -1.687401 0.959269 9.727359 -0.828861 2.740471 1.895529 -2.943469 1.744830 -0.766143 -0.906050 0.802970 1.859953 2.817991 -3.269181 -2.038387 2.452436 4.717953 1.467805 -2.427561 1.496828 1.239875 0.097635 -1.765525 2.372671 0.627688 0.250009 -1.559541 -0.540599 2.710051 4.992759 -0.872968 -2.745375 0.170253 1.588988 0.899785 -1.317372 0.426344 0.154064 -0.272748 1.937633 0.505173 1.733369 3.681433 -5.716444 2.962949 1.153671 -0.261842 2.288419 -0.165336 -1.812577 -2.716943 0.625032 2.640985 2.541284 0.444977 -0.361603 -0.681190 -3.770508 -0.040082 1.268180 1.484193 -2.227653 3.184848 -0.100079 -1.734310 -2.352530 -2.217032 -1.258736 0.014515 -2.553926 1.854167 0.631148 -5.057343 3.807363 -0.017179 -1.561846 -1.102279 -1.799104 2.447538 -3.630471 -3.680777 1.080412 -2.186604 -4.396452 -1.364253 -1.513683 0.936518 1.058266 0.293113 -2.847037 -2.939151 4.029651 -0.355116 3.254067 2.098657 0.519914 3.545327 1.711465 -1.718249 -1.179616 -3.033397 2.895115 -0.380185 -1.982458 -0.223324 -1.386477 1.693810 3.972375 -1.257236 -1.576384 -0.971725 2.858386 -2.171656 -1.842419 1.054350 -0.063937 -1.533267 1.971589 1.690137 -2.135352 -0.200178 -3.678151 -0.324995 -1.488852 -2.552959 1.607540 -2.278546 0.415129 2.070402 -0.903527 -1.693072 1.422995 0.382592 -0.749589 0.425201 4.078096 3.583983 -1.821099 1.656759 -4.177811 2.614727 -4.263073 -3.247050 0.162106 -0.552167 -0.237680 -0.950455 -0.644928 1.556706 1.829527 -1.726298 -1.970837 1.658420 +PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/dfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/dfs.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/dfs.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/dfs.cpp__Graph::DFS(int) = -0.613680 -0.101901 0.317570 -1.168621 1.011491 1.257845 0.492984 -0.656125 -1.523686 -0.953184 0.312539 -2.122887 -1.498538 1.977014 -0.587707 1.001244 2.630885 0.321177 -0.618816 -0.680607 1.340488 -0.519814 2.718972 2.925176 -2.029457 0.217784 0.376639 1.003723 0.483305 0.830830 0.210113 -1.549201 0.590047 -1.181634 0.510060 -1.092777 -0.448425 0.307486 0.734487 -3.448499 -0.216666 1.017945 -0.087277 -0.028653 0.182169 0.876994 2.161812 1.545545 -0.357662 1.362976 1.155727 0.046586 0.848691 0.123834 0.509974 0.161128 0.537870 -0.168505 -0.533014 -0.023618 -0.462180 -1.165898 0.055869 2.005898 2.372073 -0.152331 -0.824216 0.363253 0.208642 0.416807 0.400609 1.484843 0.258427 0.709289 1.345750 -1.965521 0.170761 -3.187113 0.326447 -3.858879 -1.598707 -0.494940 1.578450 0.903518 0.916210 -0.403152 2.952100 -0.416052 -0.409748 1.787192 2.517833 -1.631462 -0.503326 -0.794821 -0.826670 0.372530 -0.958438 0.232031 0.419901 0.505151 -1.721741 -1.247130 0.666524 0.176883 -1.184741 -0.735748 -0.291727 1.621281 -2.089212 -1.123336 -1.509320 0.779947 -0.080433 -3.097649 -0.734832 -0.941226 0.711022 0.607614 -1.193527 -1.513670 0.799353 0.702007 -0.459752 -0.782697 -0.724620 1.671278 1.083960 0.214261 0.126866 0.936498 0.661819 2.490599 1.127888 -0.888724 -0.096840 0.666055 -0.589444 0.522034 -0.913703 -0.435467 0.684122 -1.697656 -0.096843 0.871189 -1.158359 -0.473798 0.449305 -0.428356 0.241594 5.998157 -0.490824 1.910600 1.419302 -1.868567 1.066808 -0.581508 -0.068126 0.726645 1.367941 1.221181 -2.655175 -1.417605 1.426048 2.804351 1.061938 -1.952446 -0.304649 0.352475 0.280213 -0.379311 1.041253 0.275543 0.240545 -1.127457 -0.271301 1.074583 3.613610 -1.105496 -0.935254 0.292467 0.788973 -0.241296 -1.972261 -0.180703 -1.316520 -0.114488 0.657511 0.232764 0.907458 2.244417 -3.383892 1.880368 -0.384360 -0.328052 1.610353 0.442192 -1.200537 -2.264272 -0.186581 1.178492 1.849250 -0.003611 0.040254 0.100533 -2.305338 -0.017029 0.463006 0.679383 -1.368884 1.959243 0.014131 -1.198840 -0.978826 -0.248080 -0.473169 -0.770554 -0.752788 1.311603 0.413370 -2.882576 1.858632 0.168285 -0.946286 0.214991 -0.329469 1.597651 -1.861298 -2.151216 1.102146 -0.739428 -1.465916 -0.704675 -0.691354 0.881952 0.673679 -0.034975 -1.552786 -2.054146 1.966347 -0.487165 2.102662 1.195692 -0.106289 1.915154 0.062480 -1.138414 -1.156306 -1.241359 0.514388 -0.295230 -1.032202 -1.077288 -0.742592 1.495862 2.166693 -0.037344 -0.829745 -0.371454 2.097963 -1.741956 -0.457666 0.882266 0.727623 -1.123146 0.876364 1.213846 -1.575879 0.002957 -1.589812 -0.225011 -0.893400 -1.162442 1.346722 -1.083036 0.453641 0.586577 -0.349791 -0.369485 0.889008 0.571164 -0.063854 0.230536 2.500516 2.040680 -0.958401 0.186360 -2.214198 1.320424 -2.355650 -1.740796 0.046191 0.505715 -0.891707 -0.413650 0.079780 1.389178 1.045668 -1.060661 -0.933730 0.452200 +PE-benchmarks/dfs.cpp__main = 0.348858 0.129591 1.027459 -0.475925 0.215788 -0.969302 0.135596 1.460260 -0.888191 -1.219016 -0.103087 -0.797747 -1.205928 0.624859 -0.019649 -1.336245 1.164436 0.577659 0.151201 -0.671754 -0.534683 -0.387665 0.521516 1.022578 -0.912101 0.438144 -0.568648 0.610608 0.191951 0.791568 0.689165 -1.052647 -0.272354 1.474887 1.019345 -0.468752 -0.325760 -0.198003 -1.836631 -1.873438 -0.006473 1.601069 0.251588 0.080151 0.780071 1.776138 1.027675 0.274749 -0.464967 0.732386 0.370683 0.194020 0.442248 -0.122190 0.038943 -0.734666 0.312916 -0.586479 -0.767448 0.874205 -0.008891 -1.401567 -0.453023 0.443241 0.639919 -0.287986 -0.357211 -1.219840 0.222731 0.460388 0.342154 0.242768 1.032360 -0.131926 0.639335 1.161023 -0.293768 -1.023551 0.671292 -3.530954 -0.933304 -0.650015 2.882168 1.149003 -1.483104 -1.078078 0.862672 -0.148288 0.494276 1.058289 0.711115 0.840316 -0.370248 -0.429180 -0.301963 0.916218 -0.150201 -0.435690 0.260124 0.662984 -0.527073 0.570828 0.175763 -0.996546 -0.389626 1.143138 -0.257512 0.755403 -1.507239 1.026099 -1.274548 0.819374 1.597153 -0.643699 -0.141205 0.022864 0.223893 0.623461 -0.423398 1.528814 0.285158 -0.716830 -0.599376 1.499092 -2.262455 1.222370 -0.594738 -0.081491 0.264669 0.747714 0.300881 -1.001167 0.235218 -0.363113 -0.114573 0.786528 0.103964 -0.252902 -0.389708 -0.057576 0.742542 -0.066643 0.403535 -1.276186 -0.575753 -1.062581 -1.990370 -0.343050 0.303907 0.490985 -0.201600 0.549034 0.024002 0.069755 0.572031 0.583142 -0.147948 0.204701 0.872552 0.365335 1.331357 -0.111741 -0.086253 0.917781 0.380454 -0.233469 0.688151 0.262040 -0.215303 0.108872 0.935361 -0.105674 0.297463 -0.195004 -0.134688 -0.016848 0.412150 0.820427 -1.393090 -0.814294 0.671795 0.423811 0.602407 0.760956 1.095104 0.082957 0.210495 -0.201710 0.517885 0.654136 -2.535389 0.925911 0.469681 0.254069 0.031454 -0.262126 0.110560 -1.660989 -0.156697 0.242204 1.427762 0.544614 -0.537543 0.041747 -0.578918 -0.123807 0.202572 0.473919 -0.494708 0.550816 -0.243442 0.054108 -0.036564 -1.612225 -0.259911 1.031810 -0.869739 0.063273 0.625519 -1.922995 0.393954 -0.474321 -0.314276 -1.007120 0.132433 -0.215176 -0.644586 -0.544858 -0.592089 -0.451082 -2.529601 -0.919213 -0.760543 0.191516 -0.544042 -0.070059 0.181140 -0.464943 1.719270 -0.257628 0.711968 0.607581 -0.448741 1.489965 1.846950 -0.256073 0.440665 -0.541701 1.253893 -1.326754 0.454285 1.599944 -0.583559 -0.428287 0.868253 -0.129482 -0.108251 -0.321852 0.958849 0.407810 -0.881773 0.366751 -1.316489 0.989454 1.888519 0.654690 -0.963710 -0.135885 -1.440371 -0.102649 0.399060 0.158546 0.448546 -0.791427 -0.096439 0.432135 -0.089752 -1.060383 0.263190 -0.402661 -0.953707 -0.216192 1.187830 1.413542 -0.802678 1.737872 -0.480148 0.692035 -0.578925 0.036487 -1.020547 -0.268076 0.099249 0.166481 -0.655921 -0.166357 0.309613 -0.432292 -0.917034 1.192183 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/dfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/dfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.102838 2.291312 1.562487 -0.717917 2.766109 1.367771 1.013271 0.487268 -0.616644 -2.691570 -0.631638 -2.124391 -4.425986 2.294314 -0.585513 0.063224 3.754322 -0.176848 0.687496 -1.706446 1.853539 -2.030642 4.557629 3.680192 -4.653238 0.892316 2.125728 1.636419 0.893876 2.301289 -0.173409 -2.800218 1.563200 -0.912133 2.434333 -1.435159 -0.411212 -1.746284 -1.231941 -5.474236 -1.158902 1.074740 -1.666458 0.751731 0.332065 3.627279 5.243060 2.305665 -2.197185 2.042171 2.024831 -0.388197 1.362920 0.613941 -0.184239 -0.707094 0.810340 0.454739 -1.683475 0.649137 -0.741573 -4.573867 -0.332802 2.899213 4.047803 -1.009577 -0.593018 1.138952 -1.047903 0.592012 -0.366003 2.654282 2.658497 1.439750 3.834976 -2.583265 -0.915642 -6.064336 -0.790629 -9.619127 -3.353501 -3.757440 2.156846 -0.214132 1.442142 -0.768521 4.801038 0.882879 1.365380 2.454258 4.607286 -2.750372 -0.617689 -2.410959 -0.586002 0.946581 -1.988110 0.493299 1.582555 -0.871082 -2.603298 -2.541087 1.879002 -0.557000 -1.873320 -1.760126 -1.825465 2.696122 -3.943065 -1.143923 -5.230952 -1.214098 -0.209101 -5.266261 0.164105 0.378936 3.143710 1.639620 0.407178 -1.604759 0.753452 2.296745 -0.518526 -1.834076 -0.538712 3.938225 2.294532 0.051212 1.637644 1.825754 1.319343 3.039852 4.986868 0.217510 -1.976297 0.873415 -1.496661 0.057007 -1.230226 0.251822 2.685449 -2.415903 0.080594 1.378587 -1.326006 -1.234421 1.381152 -2.601321 1.997828 7.446721 -0.705544 1.826334 0.643406 -3.405656 1.992737 -0.923036 -1.365606 1.663266 2.934402 2.574579 -3.500661 -1.784515 1.567659 3.652194 1.049482 -4.325527 -0.755701 -0.209161 0.637889 -1.490111 0.998617 1.208337 0.840279 -1.502646 0.045779 1.590841 5.111028 -2.649330 -3.639972 0.843701 1.038919 -0.209938 -3.745856 -0.330947 -0.918710 -0.925056 0.907091 -0.060883 0.687486 3.291336 -6.560584 2.461418 -0.687083 -1.258650 2.150932 0.151528 -0.574745 -4.132004 1.655184 2.886846 2.100674 1.186277 -0.173361 -1.161072 -3.317569 0.547958 0.594217 1.895951 -1.644233 2.928538 -0.850023 -2.251208 -2.909906 -2.163292 -0.218727 -0.506149 -1.013645 1.105284 1.046774 -7.294980 3.452635 -1.336000 -2.279453 0.322650 -0.520194 2.619889 -3.003984 -4.252019 1.421064 -2.031352 -3.701978 -2.211573 -1.003741 1.065021 0.750870 -0.985431 -1.913322 -4.344012 3.357012 -0.466682 1.946062 2.303078 1.834084 5.843422 0.631077 -3.284702 -2.703609 -1.698674 1.915076 -1.512861 -1.416688 -1.759733 -1.375295 1.887757 5.068595 -0.379324 0.477254 -1.392684 3.095328 -4.594436 -2.024290 2.471422 2.911143 -0.795757 2.473208 2.492805 -1.699599 -1.892443 -2.776764 -0.286514 -0.230242 -2.581894 0.959781 -3.914342 -0.390382 2.681716 -0.679213 -1.605337 1.770754 -0.443432 0.247884 -1.973846 3.494801 6.416270 -4.615794 0.651170 -2.647321 2.195716 -4.426188 -2.842907 0.051400 0.525438 0.730074 -0.151317 0.731008 1.029767 0.923286 -2.556125 -1.478989 -0.690962 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/dfs.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/dfs.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/dfs.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/dfs.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/weighted-job-scheduling.cpp__jobComparataor(Job, Job) = -0.020317 0.632196 0.971293 -0.478001 0.915500 0.860353 0.313290 0.113597 -0.750106 -0.502546 -0.185170 -1.589614 -1.391633 1.148246 -0.114905 0.005560 1.594317 0.167609 -0.192083 -0.226731 0.016799 -0.074989 1.424392 1.549118 -1.081965 0.514073 0.072950 0.373717 -0.408835 1.463129 -0.658004 -1.620041 0.055120 0.367095 0.605886 -0.249579 -0.679384 -0.505702 -0.187488 -2.238411 -0.169491 1.547162 0.075954 -0.127022 0.511413 0.416667 1.946298 0.663727 0.075629 0.575666 0.169528 -0.097763 0.805441 0.000000 0.891207 0.128455 1.387197 -0.122822 -0.786139 0.303699 -0.402497 -0.690599 -0.583347 0.985694 1.156793 -0.022667 -0.734694 -0.624103 -0.090355 0.173981 -0.203646 0.917550 0.644270 0.871593 0.647468 0.309051 0.485008 -0.841162 0.367821 -1.812848 -1.306478 -0.533678 1.191333 1.059914 0.227087 -0.961829 1.768167 -0.437992 0.152853 0.072519 1.832064 -0.781532 -0.304364 -0.307067 -0.380879 0.173285 -0.284867 -0.094292 0.251751 -0.318986 -1.106381 -0.581228 0.748165 -0.200366 -0.686145 0.797354 -0.187351 0.978716 -1.069655 -0.257489 -1.381938 0.111555 0.291230 -1.656752 -0.732214 0.148350 -0.531757 0.762624 -0.922631 -0.769079 0.809495 0.198645 -0.632959 -0.183007 -1.039901 1.554001 0.445925 -0.097655 0.325097 0.522657 0.729222 0.846047 0.681607 -0.380743 0.105062 0.342818 -0.184395 0.060737 -0.172245 -0.123736 -0.461791 -0.635694 -0.044940 0.268984 -0.767362 0.298786 -1.380267 -0.311210 0.134208 2.923990 -0.814079 0.999137 0.183557 -1.195515 1.229783 0.000736 -0.615570 -0.209762 0.833991 1.270787 -0.972568 -0.558769 0.998262 1.748582 0.589072 -1.028954 0.549662 0.155848 0.026424 -0.367618 1.193521 0.110866 0.554697 -0.697637 -0.240386 0.359794 2.286414 -0.625246 -2.442570 0.098457 0.070220 0.599230 -0.462698 0.197242 -0.283534 -0.176130 0.050109 -0.162783 0.602838 1.240747 -2.536298 1.354555 0.010553 -1.112633 1.957813 -0.201852 -0.385418 -0.638878 -0.110469 1.024946 1.356091 0.591696 -0.607348 -0.590624 -1.218815 -0.126280 0.123200 0.546275 -0.926356 1.260793 -0.130904 -1.072858 -0.470990 -1.551861 -0.052927 -0.483759 -1.243451 0.505544 0.598374 -2.290093 1.330081 0.636168 -0.322889 -0.224710 -0.178882 0.140932 -0.840840 -1.370166 0.114520 -0.791707 -1.291404 -0.154838 -0.792890 0.106690 0.484445 0.310821 -0.931068 -1.141492 1.527535 0.078591 1.467252 0.844504 0.130578 1.006544 1.710787 -0.917055 0.008407 -0.882067 1.059951 -0.461759 -0.309947 -0.172638 -0.910776 0.642612 1.313627 -0.082085 -0.086542 -1.587615 0.997022 -0.564907 -0.091337 0.712978 -0.804384 -0.370025 0.297258 0.937172 -0.371589 -0.208017 -1.106397 -0.562401 -0.835495 -0.561617 0.308485 -1.012365 -0.255182 0.733987 -0.835761 -0.868815 0.177439 -0.147578 -0.665881 -0.002764 1.281692 0.870357 -0.937664 1.225348 -1.083435 1.008439 -1.260233 -0.698871 -0.043280 -0.386766 -0.759201 -0.595012 0.122685 0.189911 0.219190 -0.606181 -0.652677 0.311676 +PE-benchmarks/weighted-job-scheduling.cpp__latestNonConflict(Job*, int) = -0.988848 -0.661961 -0.115242 -1.588024 1.165145 1.735744 0.620641 -1.314831 -2.020500 -0.865120 0.574279 -2.591064 -1.301752 2.448883 -0.748893 1.923988 3.079315 0.372969 -0.896193 -0.658566 1.844658 -0.465684 3.199398 3.501482 -2.099893 0.102760 0.219768 0.942018 0.368645 0.766648 0.365934 -1.940110 0.750350 -1.872830 0.391984 -1.312149 -0.611650 0.986789 1.821139 -3.900319 -0.166071 1.243076 0.222499 -0.082273 0.145846 0.313074 2.073601 1.865192 -0.176163 1.788451 1.339545 0.128497 1.066915 0.146116 0.772751 0.588544 0.342996 -0.401886 -0.372568 -0.176379 -0.729135 -0.557134 0.313369 2.352280 2.796995 -0.205825 -1.123629 0.605644 0.423795 0.516421 0.640540 1.860784 -0.182153 0.594834 1.316723 -2.872845 0.168228 -3.951093 0.558756 -3.777739 -1.762893 0.001007 1.403257 1.321562 1.505333 -0.495905 3.542223 -0.715260 -1.023884 1.946578 2.773391 -2.074587 -0.506677 -0.761010 -0.987472 0.058909 -1.025828 0.222116 0.455090 0.692947 -2.053962 -1.580093 0.682564 0.432003 -1.348926 -1.334025 -0.149748 1.948535 -2.078603 -1.808076 -1.233003 1.472238 -0.473348 -3.604222 -0.689083 -1.533322 0.113380 0.537950 -1.757512 -2.200046 1.091375 0.748356 -0.644858 -1.223848 -0.590145 1.770783 1.480179 0.332976 -0.132373 1.060972 0.520671 3.449619 0.832088 -1.313769 0.131627 0.773651 -0.489941 0.909717 -1.174922 -0.637335 0.617542 -2.116725 -0.361681 1.162596 -1.335122 -0.216147 0.917837 -0.298871 -0.070278 7.479589 -0.720538 2.478108 2.044997 -2.190618 1.426038 -0.694777 0.313186 0.826063 1.574823 1.242516 -3.640168 -1.840055 1.945257 3.368589 1.292756 -2.180987 -0.774652 0.536062 0.440228 -0.376864 1.174800 0.255114 0.187199 -1.400689 -0.292918 1.090917 4.517433 -1.396515 -0.311454 0.428339 1.335106 -0.456183 -2.514027 -0.464773 -2.518106 -0.153231 0.781312 0.461301 1.101738 2.665963 -3.623617 2.194578 -0.617315 -0.257392 2.007629 0.737625 -1.627599 -2.912921 -0.613406 1.103743 2.149967 -0.398720 0.569179 0.343432 -2.786305 0.078565 0.394675 0.642926 -1.735689 2.328783 -0.046403 -1.394308 -0.831000 0.385647 -0.833544 -1.446149 -0.734563 1.744351 0.976111 -2.675415 1.961006 0.511658 -0.991137 0.639463 -0.259626 2.298629 -1.984428 -2.301123 1.579740 -0.744326 -1.032233 -0.509852 -0.699174 1.089529 0.714358 0.100561 -1.927937 -2.334162 2.085887 -0.587758 2.752728 1.312322 -0.443079 1.603856 -0.381646 -1.287301 -1.311245 -1.748798 0.172269 0.091476 -1.281931 -1.721667 -0.750114 1.984308 2.196137 0.226068 -1.321254 -0.333136 2.485310 -2.119954 0.128415 0.963676 0.739671 -1.610604 0.534164 1.357271 -1.849169 0.302386 -1.676239 0.077856 -1.386675 -1.192606 1.808079 -0.849115 0.699127 0.141566 -0.383722 -0.076143 0.965887 1.155180 -0.019665 0.542795 3.004652 1.618629 -0.482556 -0.276069 -2.667887 1.396486 -2.580847 -1.990791 0.041800 0.723803 -1.555079 -0.558699 0.131564 1.976917 1.345609 -0.897308 -1.057047 0.451264 +PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -2.036592 -0.577116 0.531858 -4.083866 2.997670 4.808489 1.245912 -3.278253 -3.890786 -2.303750 1.872207 -6.015688 -4.345511 5.343237 -2.277249 2.807547 6.015737 -0.831225 -2.319892 -2.442742 3.977929 0.835457 7.929302 7.686025 -6.187125 0.204280 1.316222 2.825817 2.318217 0.807194 1.709887 -3.985528 1.414118 -2.951245 0.743467 -1.084578 -1.160889 0.020773 2.845324 -8.160922 -0.798009 2.240165 -1.589057 0.094430 0.455292 1.758137 5.544752 4.518446 -0.705275 3.434092 4.200403 0.771635 1.959433 -0.039084 1.235044 -1.012642 1.801775 -1.018229 -0.313970 -1.055817 -1.031024 -1.266465 -0.316477 6.181152 6.473468 -0.481709 -2.461041 1.460125 1.012606 1.595384 1.083162 4.590579 0.370348 3.042149 3.951231 -5.133367 0.363755 -8.367644 1.163384 -8.399864 -4.279917 -0.422536 3.637054 2.320021 2.577346 -0.577424 8.264261 -0.256570 -2.287468 5.050083 6.529376 -3.789395 -0.955443 -1.518932 -2.551571 0.725257 -2.723393 2.136990 -0.117450 2.276138 -4.811779 -2.520099 0.368260 0.399411 -3.540173 -2.392286 -0.810768 3.944738 -4.804758 -2.128532 -2.568987 3.385951 -0.051626 -9.235110 -4.065612 -3.194094 2.789972 0.588264 -2.931038 -3.647449 1.785070 1.705888 -1.155218 -2.199964 -1.069696 3.555648 4.711245 1.362738 -0.171747 3.069095 2.396665 7.543161 1.963701 -2.206538 -0.456261 0.940188 -0.589685 2.252228 -1.610133 0.029434 1.530797 -3.926260 0.915126 3.211960 -2.446894 -2.192298 1.050350 -1.343452 0.031043 18.039577 -1.363652 5.855641 4.605030 -4.844106 0.889641 -2.450723 -0.000419 2.185664 2.857973 3.123508 -7.110516 -3.873021 4.949483 7.753078 2.502928 -5.783896 0.803771 2.371533 0.281842 -2.432561 3.020340 0.645702 0.584205 -2.666087 -0.840920 4.140976 9.283753 -2.999110 -2.847385 1.043572 3.272234 0.086898 -3.416791 -0.475451 -2.540141 -0.086619 3.786257 1.554204 2.905750 5.980623 -8.491473 4.379345 0.486591 -0.388978 4.260629 1.715085 -4.092521 -4.125592 -0.188894 2.776337 3.778176 -0.469287 0.129536 0.312929 -6.445490 0.366195 1.787384 0.988492 -3.793571 5.355542 0.535553 -2.668352 -2.842526 -0.327013 -1.498221 -0.861173 -2.643014 3.826558 -0.404846 -8.413773 5.167815 0.642415 -2.853580 -0.314529 -2.477509 5.742874 -4.839431 -5.353752 3.223718 -2.640891 -3.974043 -1.688791 -1.788823 1.912569 2.601224 2.292358 -5.635059 -4.506300 5.197167 -1.505627 6.096118 3.216860 -0.160383 4.615523 -2.937031 -2.584907 -3.336052 -4.331473 3.073919 1.244368 -4.292968 -2.332714 -1.821193 3.922412 4.811021 -1.176997 -3.305535 -1.101231 4.833131 -5.455970 -0.969278 1.286122 3.449637 -4.258937 2.382789 2.467539 -3.242620 1.070153 -4.285415 -1.050590 -3.802805 -3.948464 4.119031 -1.449446 2.078924 1.166306 -0.422287 -0.657522 2.359142 1.434198 0.271739 1.340033 5.986543 5.984381 -2.437291 -0.619980 -7.043635 4.334978 -6.062641 -5.874052 1.491538 -0.499544 -1.837856 -1.752568 -1.331648 4.444994 3.550484 -3.161005 -2.765829 2.387821 +PE-benchmarks/weighted-job-scheduling.cpp__void std::sort(Job*, Job*, bool (*)(Job, Job)) = 0.032547 0.915265 0.705633 -0.208784 0.770033 0.538395 0.266283 0.264200 -0.299257 -0.767553 -0.291663 -0.975481 -1.397609 0.867140 -0.086881 -0.076766 1.442063 0.157962 0.081053 -0.376662 0.271066 -0.470718 1.408539 1.369786 -1.345128 0.409370 0.618175 0.440372 0.090391 0.936392 -0.378291 -1.143459 0.405901 -0.035560 0.655387 -0.474994 -0.233249 -0.671181 -0.438123 -2.050040 -0.247836 0.583867 -0.305042 -0.010275 0.165183 0.866996 1.916405 0.718569 -0.428322 0.447649 0.457092 -0.004814 0.421924 0.129822 0.205919 -0.072733 0.580661 -0.036207 -0.657352 0.242542 -0.077208 -1.383660 -0.382547 0.969800 1.215560 -0.142243 -0.285966 0.072011 -0.251886 0.085325 -0.257635 0.701490 0.854354 0.717052 0.883420 -0.466648 -0.026201 -1.491388 -0.140300 -2.770896 -1.178880 -1.121581 0.907164 0.298795 0.317144 -0.419348 1.516877 0.031596 0.589226 0.513652 1.727378 -0.974499 -0.337929 -0.696704 -0.164734 0.504896 -0.591994 0.109623 0.336182 -0.442778 -0.916716 -0.870794 0.788029 -0.105718 -0.698869 -0.038035 -0.356531 0.853062 -1.257435 -0.332182 -1.668480 -0.471645 0.086513 -1.656298 -0.078294 0.253560 0.617829 0.681743 -0.176418 -0.775160 0.293242 0.610276 -0.250815 -0.508370 -0.647846 1.315654 0.520735 -0.125913 0.569159 0.469669 0.737233 0.974179 1.270286 -0.126529 -0.367994 0.297871 -0.501612 -0.142917 -0.410264 -0.102297 0.364948 -0.784584 0.039755 0.481497 -0.660142 -0.168827 -0.153387 -0.657949 0.585657 2.436889 -0.281312 0.601536 0.116878 -1.213384 0.811203 -0.347813 -0.767273 0.201143 0.882582 1.073394 -1.030606 -0.536982 0.467642 1.399013 0.493789 -1.091864 0.035364 -0.152400 0.057750 -0.437999 0.638849 0.283079 0.359570 -0.564386 -0.141294 0.681275 1.826359 -0.719347 -1.425902 0.165190 0.121526 0.193041 -0.998801 0.037178 -0.182451 -0.193425 0.162896 -0.101914 0.396857 1.155743 -2.182927 1.003360 -0.187965 -0.729072 0.946191 -0.064905 -0.288739 -0.933942 0.556014 1.138482 0.995075 0.424838 -0.125380 -0.485502 -1.115416 -0.144581 0.216965 0.600895 -0.621818 0.966401 -0.080773 -0.899464 -0.857763 -0.897925 0.013881 -0.339979 -0.582000 0.401005 0.451856 -2.354524 1.362938 -0.148618 -0.591717 -0.025453 -0.342751 0.494207 -1.153895 -1.418077 0.321690 -0.558162 -1.131977 -0.380816 -0.502607 0.402352 0.234813 -0.179268 -0.595368 -1.284592 1.143363 0.086148 0.732161 0.786083 0.523206 1.547205 0.702888 -0.901315 -0.536766 -0.571714 0.688343 -0.608327 -0.411910 -0.300490 -0.660623 0.651991 1.723377 -0.178469 0.017177 -0.695317 0.887959 -1.149826 -0.603562 0.737889 0.443111 -0.278468 0.559570 0.825001 -0.613861 -0.561806 -0.988231 -0.254778 -0.143788 -0.892687 0.202399 -1.284007 -0.174743 1.076839 -0.500466 -0.658568 0.565643 -0.245878 -0.173198 -0.395017 1.075448 1.586902 -1.332874 0.637376 -0.962513 0.752932 -1.490408 -0.929081 0.068446 0.071389 -0.111991 -0.265790 0.193287 0.175903 0.093467 -0.609612 -0.509217 -0.112857 +PE-benchmarks/weighted-job-scheduling.cpp__int const& std::max(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/weighted-job-scheduling.cpp__main = 0.063619 0.369438 0.549029 -0.165351 0.411209 -0.082035 0.204243 0.425304 -0.419839 -0.790770 0.004005 -1.019276 -1.118690 0.642523 -0.074063 -0.314444 0.926005 0.097044 0.034593 -0.316299 -0.106015 -0.304128 0.852682 0.932248 -0.800423 0.288585 -0.062356 0.297145 -0.003118 0.548992 0.125771 -0.933337 0.154979 0.426061 0.523366 -0.088651 -0.245574 -0.362222 -0.622439 -1.336843 -0.149566 0.975833 0.073627 -0.002377 0.281429 0.928064 1.167175 0.440496 -0.208704 0.488180 0.272973 -0.167869 0.439460 0.026850 0.197044 -0.495782 0.371934 -0.305990 -0.647018 0.331241 -0.109984 -1.027753 -0.449072 0.583725 0.764744 -0.153799 -0.302875 -0.322547 -0.128221 0.240292 -0.000664 0.460755 0.746010 0.343313 0.613614 0.337515 -0.043403 -0.807538 0.088850 -2.246495 -0.848358 -0.492709 1.362553 0.703597 -0.288490 -0.609589 0.974571 0.055269 0.189248 0.504260 1.127250 -0.200666 -0.324985 -0.297829 -0.107820 0.411853 -0.365348 0.029823 0.293757 0.069011 -0.665516 -0.057711 0.361423 -0.369966 -0.393074 0.384361 -0.217952 0.553347 -1.012101 0.196335 -1.059535 -0.029090 0.643744 -1.036961 -0.052954 0.264741 0.092225 0.586328 -0.359420 0.183734 0.326945 -0.137656 -0.294595 0.236883 -1.138161 0.976397 0.020702 0.104275 0.354737 0.594621 0.534201 0.195406 0.489008 -0.158670 -0.118078 0.214824 -0.101550 0.102690 -0.101112 -0.143638 0.314634 -0.384783 0.164257 -0.247148 -0.468943 -0.390203 -0.968841 -0.293644 0.209435 0.987065 -0.236573 0.584734 0.143341 -0.534418 0.590628 -0.136375 -0.344688 0.016117 0.607047 0.620259 0.170573 -0.297878 0.465467 0.997264 0.333511 -0.596279 0.389647 0.226965 0.118996 -0.285384 0.662163 0.191771 0.380042 -0.358974 -0.084674 0.390335 0.972255 -0.148760 -1.008396 -0.075160 0.189327 0.485051 -0.243720 0.248511 0.295278 -0.057901 0.080473 -0.000484 0.258656 0.745764 -1.615190 0.760167 0.166449 -0.207626 0.615339 -0.111980 -0.286179 -1.007481 0.101215 0.588594 0.753427 0.448645 -0.265651 -0.254016 -0.699383 -0.080784 0.129399 0.320941 -0.405692 0.654987 -0.255131 -0.338054 -0.443136 -1.007571 -0.082032 0.182972 -0.600795 0.286836 0.617898 -1.515512 0.762228 -0.087928 -0.430707 -0.537278 -0.087947 0.163002 -0.675755 -0.805902 -0.096166 -0.766265 -1.494321 -0.476714 -0.464160 -0.039612 -0.007720 -0.186944 -0.164032 -0.554574 1.211891 -0.052459 0.690878 0.511355 0.074582 1.063058 1.117144 -0.590199 0.052521 -0.439778 0.711851 -0.794464 -0.130527 0.458289 -0.428434 0.185901 0.881462 -0.112220 -0.091178 -0.454418 0.567551 -0.307387 -0.570198 0.491100 -0.360750 0.088279 0.841330 0.588432 -0.474534 -0.102626 -0.952987 -0.239111 -0.215916 -0.402748 0.139492 -0.692891 -0.145498 0.533065 -0.323384 -0.592329 0.235674 -0.206702 -0.432698 -0.219099 0.893822 1.033303 -0.840520 0.819531 -0.730479 0.572385 -0.833233 -0.549936 -0.091064 0.062320 -0.120029 -0.215772 -0.039303 -0.029556 0.215079 -0.651555 -0.669646 0.488761 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.177704 0.931784 0.455145 -1.074629 1.525505 0.807394 0.483635 0.180982 -0.932787 -1.432578 -0.097780 -2.597367 -2.405792 1.344374 -0.365619 0.143816 2.766027 -0.156160 -0.014320 -0.925249 0.385694 0.203331 2.906240 2.899549 -2.374051 0.565765 0.542068 0.866408 -0.091152 0.364158 0.090932 -2.428565 0.465580 -0.182993 0.843104 -0.227771 -0.640719 -0.995856 0.041848 -3.599001 -0.391243 1.087704 -0.560513 0.097202 0.324135 1.481622 3.259739 1.440340 -0.746802 1.136817 1.359148 0.269179 0.874352 0.091552 0.013925 -0.590632 0.343743 -0.453538 -0.816602 0.038831 -0.249375 -1.204800 -0.611573 1.947036 2.125594 -0.208377 -1.158033 0.230269 0.342894 0.276676 -0.161576 1.740055 1.281949 1.301220 1.643464 -0.938022 -0.318797 -3.341343 0.266471 -4.863193 -2.333039 -1.285971 2.054494 0.832320 0.400536 -0.612382 3.190754 -0.122520 0.588974 1.774753 2.751620 -1.351613 -0.604106 -1.004458 -0.596519 0.709123 -0.744827 0.510424 0.455022 0.411243 -1.900644 -0.972338 0.704979 -0.567297 -1.316826 -0.605741 -0.189061 0.999489 -1.868492 -0.295759 -2.655906 0.664901 0.811968 -3.291581 -0.989191 0.175740 0.998631 0.862437 -0.953360 -1.133829 0.520558 0.246929 -0.887000 -0.218981 -1.195070 1.849006 1.457201 0.118702 0.920385 1.369892 1.484193 2.410734 1.327960 -0.677106 -0.625221 0.599327 -0.372645 0.037903 -0.602753 -0.077029 0.677319 -1.507604 1.087357 0.741250 -1.237254 -1.001891 -0.526093 -1.204096 0.509569 5.098855 -0.743389 1.807280 1.002971 -1.830175 1.018034 -1.144787 -0.879958 0.278752 1.487451 1.860350 -1.311867 -1.111552 1.487586 2.861264 0.943400 -2.028146 0.629878 0.861212 0.303079 -0.957517 1.265311 0.463492 0.856565 -0.848809 -0.147818 1.740063 3.525081 -0.634659 -1.768183 0.161382 1.602126 0.932024 -0.977013 0.019680 -0.856815 -0.384896 1.464049 0.514629 0.927630 2.262640 -4.162134 1.495861 0.338789 -0.349438 1.363693 0.633684 -1.111158 -1.954738 0.443029 1.677167 1.766772 0.284646 0.172262 -0.767015 -1.956818 -0.096250 0.776668 0.876715 -1.434187 1.981879 -0.275952 -1.375743 -0.939051 -1.269318 -0.583874 -0.000426 -1.179017 1.083135 0.759386 -4.178402 2.294983 -0.018828 -1.259479 -0.488469 -1.301368 1.746036 -1.947162 -2.109512 0.828325 -1.453676 -2.082371 -0.329883 -0.899396 0.459310 0.563372 0.760463 -1.501462 -1.978788 2.726071 0.403854 2.134445 1.497357 0.269114 2.348795 -0.266022 -1.464007 -0.684483 -1.805879 1.567615 -0.418324 -1.128497 -0.016083 -1.133621 1.007373 2.607276 -0.701845 -0.695250 -0.908428 1.363312 -2.096551 -0.553560 0.917627 0.697454 -0.901825 1.423585 1.323424 -1.199676 -0.212343 -2.232047 0.013218 -0.949904 -1.538560 0.687221 -1.807532 -0.118420 1.570077 -1.023724 -0.770642 0.973910 -0.104851 -0.214053 -0.163037 2.090488 2.643838 -1.469324 0.847581 -2.370230 1.445698 -2.591359 -2.145684 0.289113 -0.389168 -0.582421 -0.803388 -0.255425 0.845885 0.306786 -1.181217 -1.579124 0.860247 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(bool (*)(Job, Job)) = 0.011310 0.421739 0.263065 -0.071968 0.399490 0.266207 0.130867 0.124506 -0.163716 -0.401918 -0.140720 -0.454553 -0.653646 0.418042 -0.071171 -0.004163 0.679527 0.105320 0.085189 -0.172587 0.070131 -0.159776 0.694582 0.641963 -0.607039 0.196992 0.239994 0.167541 -0.055387 0.487415 -0.119740 -0.691235 0.248375 0.023752 0.237003 -0.234320 -0.106156 -0.258613 -0.202346 -0.962237 -0.104625 0.289501 -0.149736 0.006679 0.081482 0.305427 0.878437 0.337031 -0.146558 0.310949 0.199819 0.120320 0.181830 0.086574 0.090973 -0.020264 0.166937 -0.254166 -0.330614 0.119082 -0.049538 -0.639993 -0.254388 0.436864 0.560253 -0.076303 -0.125162 0.006036 -0.227845 0.066174 -0.087762 0.311887 0.379935 0.321306 0.364465 -0.122165 -0.091317 -0.619828 -0.092680 -1.292566 -0.545451 -0.523663 0.455074 0.317128 0.144587 -0.138373 0.710960 0.011927 0.274296 0.268519 0.801540 -0.457341 -0.173975 -0.275521 -0.040069 0.236072 -0.282658 0.041947 0.018720 -0.149539 -0.425500 -0.436803 0.349717 -0.072197 -0.313419 -0.077885 -0.170417 0.388372 -0.714894 -0.156249 -0.794115 -0.161809 0.043812 -0.747455 -0.094393 0.163382 0.292216 0.343254 -0.092351 -0.345063 0.169354 0.264644 -0.108797 -0.229497 -0.291493 0.518305 0.202860 -0.064081 0.272002 0.223475 0.325041 0.547263 0.525047 -0.061908 -0.167574 0.150972 -0.127342 -0.055148 -0.168291 -0.040552 0.018515 -0.410645 0.146910 0.232797 -0.321762 -0.160823 -0.260214 -0.337316 0.277242 0.971556 -0.140000 0.279190 0.082405 -0.588924 0.248925 -0.244127 -0.335230 0.073651 0.414840 0.479810 -0.248552 -0.247400 0.212661 0.641042 0.242637 -0.408803 0.051528 -0.069617 0.074312 -0.177874 0.309362 0.149089 0.159026 -0.278190 -0.060113 0.285485 0.852976 -0.266885 -0.511448 0.092030 0.122968 0.109667 -0.320364 0.014421 -0.083204 -0.085370 0.190977 -0.049333 0.128694 0.544188 -0.983469 0.466928 -0.086100 -0.281393 0.298522 0.017397 -0.124583 -0.331486 0.227492 0.520875 0.493068 0.180108 0.106388 -0.215591 -0.513493 -0.077794 0.106646 0.293170 -0.293062 0.437109 0.013262 -0.482242 -0.392887 -0.359018 0.022064 -0.159844 -0.279551 0.187181 0.340887 -1.157602 0.611063 -0.079939 -0.291712 -0.001028 -0.107918 0.333198 -0.531361 -0.655037 0.177938 -0.310889 -0.554633 -0.073274 -0.227835 0.189883 0.095209 -0.038686 -0.200975 -0.490503 0.530153 0.151364 0.308656 0.361919 0.231239 0.695578 0.150188 -0.437530 -0.168878 -0.315746 0.385286 -0.378174 -0.124116 0.028954 -0.308077 0.310263 0.826863 -0.011063 -0.109213 -0.272897 0.433890 -0.484738 -0.204607 0.378049 0.236709 -0.095609 0.299209 0.412153 -0.303695 -0.269709 -0.443736 0.023734 -0.057793 -0.404888 0.096384 -0.611364 -0.065524 0.503369 -0.198530 -0.367894 0.275180 -0.110089 -0.092425 -0.196905 0.506927 0.615422 -0.569662 0.368436 -0.418020 0.287791 -0.686742 -0.432253 -0.010571 0.037045 -0.072089 -0.104373 -0.038754 0.090591 0.026703 -0.183814 -0.248997 -0.061567 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__introsort_loop >(Job*, Job*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -0.372860 1.224284 0.633703 -1.514220 2.072052 1.421437 0.712724 0.242095 -1.649227 -2.213826 -0.192021 -3.544106 -3.454008 2.394005 -0.481759 0.459241 4.346602 0.077914 -0.127251 -1.322182 1.165091 -0.325551 4.276602 4.491711 -3.649758 0.841716 1.127747 1.168567 0.199606 1.095496 0.115857 -3.645563 0.790209 -0.713538 1.494339 -1.078499 -1.012162 -0.988452 0.243378 -5.794885 -0.579831 1.897488 -0.652709 0.070337 0.525300 2.222205 4.770140 2.223213 -1.342956 1.922722 2.019304 0.399455 1.316593 0.090273 0.187894 -0.350439 0.505321 -0.189153 -1.091027 0.251469 -0.501080 -2.082750 -0.598768 3.015166 3.451081 -0.520300 -1.657262 0.401666 0.393076 0.460974 -0.180718 2.652475 1.938531 1.574022 2.643267 -1.978679 -0.614372 -5.592714 0.529074 -7.891498 -3.309682 -1.904213 2.950241 1.098632 0.847433 -1.082065 4.950532 -0.549295 0.680575 2.846719 4.250677 -2.199338 -0.801533 -1.693489 -1.074249 1.031283 -1.307190 0.430048 0.872399 0.172830 -2.856179 -2.098174 1.176844 -0.557874 -2.080313 -1.132401 -0.508203 1.915154 -3.184741 -0.877251 -4.028832 0.822722 0.782600 -4.995926 -1.281670 -0.228851 1.265525 1.382682 -1.562028 -2.042623 0.969950 0.734498 -1.243179 -0.857855 -1.326418 3.070585 2.028854 0.143049 1.152612 1.706679 1.934682 3.593698 2.499957 -1.116937 -0.812799 1.117942 -0.803546 0.069882 -1.294170 -0.303706 1.465620 -2.345412 0.906402 1.145788 -1.925423 -1.228910 0.118246 -1.936601 0.762840 8.457866 -1.102934 2.679009 1.541831 -2.945915 1.896691 -1.265581 -1.240040 0.719702 2.539496 2.908102 -2.796433 -1.757692 2.162813 4.471791 1.504356 -3.172781 0.228741 0.973015 0.480872 -1.150021 1.946972 0.518522 1.163426 -1.609170 -0.305989 2.219119 5.583646 -1.374951 -2.500470 0.148308 2.407327 0.720656 -2.231138 0.053781 -1.932563 -0.542470 1.843017 0.398113 1.517303 3.497366 -6.494072 2.571923 -0.099847 -0.804525 2.043856 0.897640 -1.538046 -3.500752 0.635835 2.457551 2.951003 0.470686 0.448184 -0.929923 -3.290002 -0.119800 0.939698 1.418998 -2.335854 3.203954 -0.406855 -2.120645 -1.524472 -1.494083 -0.861291 -0.711236 -1.560347 1.679450 1.282652 -6.027430 3.441290 -0.067442 -1.711821 -0.391840 -1.323086 2.526259 -3.055345 -3.488969 1.450490 -1.768383 -2.935009 -0.674295 -1.475584 1.113625 0.952394 0.549544 -2.231627 -3.700329 3.913119 0.288358 3.329747 2.278079 0.325983 3.781930 -0.024192 -2.101643 -1.522659 -2.439526 1.928409 -0.750169 -1.531804 -1.043710 -1.690588 1.774095 4.097745 -0.809867 -0.913820 -1.458312 2.561101 -3.263904 -0.682498 1.453026 1.303700 -1.292396 1.966201 2.053609 -2.043062 -0.452216 -3.316847 0.100502 -1.275771 -2.145942 1.320628 -2.856295 -0.115838 2.227283 -1.405604 -1.143134 1.460900 0.164183 -0.459482 -0.333019 3.352104 4.056427 -2.442323 1.118936 -3.481384 2.211259 -4.009267 -3.030754 0.059739 -0.193664 -1.030079 -1.100852 -0.111617 1.429325 0.768796 -1.557377 -2.093089 0.930030 +PE-benchmarks/weighted-job-scheduling.cpp__long std::__lg(long) = -0.204744 -0.269311 0.008870 -0.278055 0.104661 0.065262 0.164878 -0.331316 -0.411054 -0.308171 0.258053 -0.673322 -0.286631 0.484484 -0.219970 0.377447 0.532198 0.068558 -0.217882 -0.261637 0.162631 -0.025398 0.695660 0.680097 -0.328599 -0.002524 -0.183686 0.169270 0.198167 -0.047618 0.263904 -0.250540 0.311710 -0.233901 0.030959 -0.081769 -0.103749 0.204495 0.224009 -0.622403 0.002866 0.252722 0.251267 -0.008450 0.047662 0.345022 0.281495 0.372201 0.228851 0.451339 0.187424 -0.061705 0.285656 0.073929 0.221654 -0.135396 0.163360 -0.560703 -0.212232 -0.042815 -0.138410 -0.272609 -0.096985 0.430585 0.499891 -0.046078 -0.190477 0.074249 0.094813 0.199315 0.269544 0.305406 -0.044337 0.119299 0.142998 -0.484790 0.180793 -0.401275 -0.038705 -0.949035 -0.351163 0.126840 0.534544 0.378916 0.149554 -0.037752 0.582115 0.046129 -0.319418 0.198685 0.516348 -0.353419 -0.180173 0.104228 0.093833 0.009849 -0.256474 0.150879 0.137047 0.346946 -0.407835 0.108031 0.194760 -0.006529 -0.199068 -0.055598 0.037500 0.342852 -0.582662 -0.203356 -0.137281 0.254996 0.091169 -0.660892 0.170533 -0.183703 0.183461 0.141795 -0.366558 -0.152121 0.245840 -0.022988 -0.045895 -0.048058 -0.550758 0.277724 0.164841 0.195021 -0.033210 0.468808 0.095324 0.668422 0.017661 -0.230264 0.079991 0.088088 -0.046165 0.334130 -0.023158 -0.229123 0.076070 -0.428107 0.043624 0.079137 -0.252786 -0.156793 -0.165845 0.177333 -0.069590 0.821498 -0.117794 0.553647 0.514848 -0.301405 -0.051226 -0.353361 0.195678 0.070950 0.225387 0.104735 -0.259179 -0.365730 0.416611 0.625036 0.253662 -0.379273 0.103544 0.169178 0.148469 -0.117937 0.220445 0.115567 0.119961 -0.290233 -0.029535 0.185936 0.718160 -0.190628 0.250985 0.031954 -0.043793 0.121095 -0.324823 -0.068907 -0.035957 0.062313 0.034595 0.245070 0.059628 0.475136 -0.444497 0.460929 -0.040785 0.118191 0.426057 0.143823 -0.410895 -0.624891 -0.277248 0.138161 0.354903 -0.118295 0.089732 0.173223 -0.507611 -0.004320 0.011273 0.050704 -0.230586 0.307471 0.099987 -0.128724 -0.111392 0.028843 0.045798 -0.012143 -0.094044 0.372747 0.382178 -0.536872 0.292663 0.037990 -0.307336 -0.039352 -0.008896 0.472821 -0.361914 -0.240613 0.135020 -0.389141 -0.545872 -0.253217 -0.097214 0.036454 -0.104286 0.025615 -0.250499 -0.007567 0.546479 -0.206689 0.487626 0.206049 -0.158173 0.320515 -0.101289 -0.246126 0.006639 -0.294388 -0.104401 -0.246050 -0.216884 0.254992 -0.057201 0.328862 0.326172 0.040695 -0.313874 0.261423 0.354674 -0.453694 -0.117841 0.221041 0.214084 -0.245693 0.389026 0.267979 -0.416981 0.190537 -0.276226 -0.225383 -0.279583 -0.209248 0.382713 -0.030212 0.211838 -0.116751 0.028807 -0.045146 0.181089 0.110975 -0.067355 0.152699 0.605417 0.485438 -0.041521 -0.027595 -0.542227 0.248000 -0.402383 -0.392717 0.103191 0.308560 -0.279106 -0.073213 -0.068059 0.371029 0.377880 -0.458227 -0.375734 0.316746 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__final_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.059376 1.473744 0.941171 -1.216581 1.809838 1.341067 0.494095 0.555728 -1.032243 -1.814111 -0.398588 -2.870579 -2.955609 1.619640 -0.409650 -0.149140 3.283050 -0.045164 0.041166 -0.802159 0.325755 0.389353 3.223737 3.270221 -2.847760 0.768261 0.641154 0.928587 -0.278714 1.241762 -0.116788 -3.350711 0.442136 0.327522 1.186687 -0.469285 -0.804164 -1.287834 -0.442175 -4.414444 -0.431362 1.847734 -0.832300 0.019647 0.618615 1.293294 4.112010 1.585894 -0.916921 1.076827 1.389950 0.735082 0.958329 0.057163 0.104338 -0.491963 0.526660 -0.793733 -1.014175 0.177821 -0.305066 -1.538608 -0.886016 2.270050 2.414014 -0.251644 -1.258359 -0.154942 0.175580 0.253344 -0.365621 1.944534 1.749239 1.638051 1.814933 -0.423334 -0.364684 -3.292665 0.501112 -5.238138 -2.710071 -1.810366 2.377685 1.744935 0.338420 -1.348645 3.700909 -0.491183 0.999913 1.934708 3.333287 -1.510543 -0.623903 -1.465379 -0.743478 0.905178 -0.895842 0.254018 -0.043770 0.055580 -2.158746 -1.363435 0.748948 -0.647387 -1.572318 -0.295909 -0.357450 1.327968 -2.398374 -0.249811 -3.317403 0.718113 0.942243 -3.771763 -1.435089 0.261600 0.637083 1.096632 -1.038459 -1.355956 0.702861 0.489721 -1.072688 -0.308768 -1.718452 2.502711 1.537210 -0.119887 1.068221 1.326332 1.758495 2.451923 1.664041 -0.692856 -0.711745 0.767026 -0.368733 -0.273653 -0.764082 0.085010 0.429401 -1.620592 0.802200 1.003017 -1.476451 -0.857994 -1.464320 -1.660759 0.798133 6.218338 -1.041219 1.891666 0.842956 -2.311408 1.517327 -0.915455 -1.367364 0.155454 1.700569 2.514367 -1.655324 -1.154993 1.604442 3.313469 1.103961 -1.985761 1.073197 0.767562 0.219639 -1.123429 1.657441 0.441951 1.011473 -1.216077 -0.294678 1.864040 4.176282 -0.639585 -2.596249 0.143707 1.791014 1.039826 -0.725298 0.170528 -0.853761 -0.462680 1.813266 0.224039 1.194495 2.644186 -4.773160 1.898712 0.396656 -0.878359 1.644465 0.367983 -0.965728 -1.672228 0.654337 2.171410 2.262248 0.475431 0.269348 -1.125002 -2.304752 -0.187874 0.860520 1.213167 -1.738478 2.293338 -0.155677 -1.843571 -1.220453 -1.937504 -0.704885 -0.238848 -1.767901 1.071494 1.029865 -4.803015 2.868405 0.099864 -1.232636 -0.557586 -1.393682 1.777214 -2.346979 -2.643338 0.903833 -1.510834 -2.568803 -0.159195 -1.204612 0.713782 0.794580 0.799782 -1.784927 -2.662670 3.101257 0.763176 2.440181 1.786448 0.513655 2.720064 0.577146 -1.521622 -0.710712 -2.394409 2.234047 -0.554190 -1.136247 -0.119605 -1.529473 1.152394 3.241062 -0.887007 -0.753408 -1.593078 1.655132 -2.110530 -0.480506 1.104363 0.332424 -0.925811 1.338414 1.609476 -1.247029 -0.567295 -2.688539 0.239302 -1.015676 -1.782551 0.660147 -2.379437 -0.239499 2.164002 -1.270108 -1.384724 0.970613 -0.199208 -0.645950 -0.274071 2.419202 2.640207 -1.769058 1.550015 -2.581841 1.763399 -3.099487 -2.306132 0.086886 -0.848083 -0.629114 -0.928435 -0.342322 0.830563 0.255664 -0.838559 -1.582270 0.779938 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__partial_sort >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.132434 1.143752 0.822121 -0.232814 0.948838 0.626248 0.307783 0.532246 -0.393502 -1.044591 -0.375582 -1.086431 -1.779061 1.011087 -0.040725 -0.269165 1.774629 0.186628 0.189961 -0.553317 0.252021 -0.475556 1.706209 1.712856 -1.718267 0.585488 0.767862 0.495195 0.136801 1.055766 -0.271460 -1.519832 0.486482 0.059959 0.801599 -0.598960 -0.362510 -0.881001 -0.664488 -2.630440 -0.342355 0.729550 -0.621336 0.053014 0.298300 1.205240 2.386681 0.834454 -0.640344 0.752989 0.597882 0.094400 0.487592 0.101234 0.131983 -0.160531 0.473513 -0.074902 -0.744704 0.409446 -0.041816 -1.731442 -0.537836 1.148797 1.436164 -0.271727 -0.435490 0.023487 -0.278749 0.110013 -0.321427 0.918460 1.195897 0.818626 1.185770 -0.484368 -0.295284 -1.972877 -0.079803 -3.685283 -1.521734 -1.421088 1.386861 0.347450 0.217957 -0.542960 1.895243 -0.003005 0.774559 0.891368 2.032096 -1.035643 -0.376868 -0.842411 -0.183337 0.702523 -0.675903 0.144897 0.320852 -0.515211 -1.108842 -1.077112 0.905110 -0.293896 -0.913073 -0.143603 -0.475484 1.051291 -1.660665 -0.262793 -2.148157 -0.390102 0.245422 -1.972078 -0.301707 0.385643 0.979225 0.893398 -0.206489 -0.736919 0.327261 0.626768 -0.329015 -0.507677 -0.635941 1.548218 0.662039 -0.148317 0.736411 0.669945 0.945165 1.151244 1.610127 -0.114977 -0.484357 0.474362 -0.431363 -0.196558 -0.484646 -0.023967 0.462444 -0.890196 0.246809 0.482921 -0.808305 -0.442478 -0.244257 -0.924788 0.664791 2.988532 -0.304596 0.735744 0.172882 -1.391774 0.811989 -0.459426 -0.955171 0.348858 1.152574 1.345369 -1.061429 -0.554567 0.480553 1.743569 0.566390 -1.375883 0.106818 -0.087095 0.030643 -0.558395 0.889996 0.269731 0.554506 -0.619693 -0.139873 0.865592 2.168149 -0.774246 -1.773982 0.041163 0.377926 0.296674 -1.019595 0.158834 -0.103170 -0.260611 0.510369 -0.131623 0.498068 1.356126 -2.820765 1.163066 -0.195028 -0.784146 0.837292 0.112447 -0.306657 -1.087564 0.691744 1.306969 1.281633 0.571376 -0.056634 -0.596171 -1.362756 -0.173802 0.375395 0.705454 -0.809381 1.252873 -0.093593 -1.025621 -0.954751 -1.077161 -0.024928 -0.250851 -0.734603 0.467946 0.502701 -3.100356 1.561777 -0.268503 -0.780766 -0.119329 -0.457946 0.771683 -1.390676 -1.722298 0.409624 -0.670690 -1.604401 -0.418221 -0.732620 0.516458 0.341018 -0.094293 -0.678068 -1.592417 1.531617 0.204989 0.911832 1.040880 0.540902 2.109335 0.524032 -1.130650 -0.617891 -0.871163 1.163234 -0.759002 -0.406165 -0.268824 -0.874700 0.660869 2.142170 -0.232123 -0.085737 -0.889601 1.106302 -1.484747 -0.688623 0.840081 0.746256 -0.181293 0.930121 0.986776 -0.772950 -0.612827 -1.291158 -0.171965 -0.091394 -0.990712 0.318258 -1.634440 -0.225428 1.354508 -0.580920 -0.848053 0.738923 -0.381973 -0.226843 -0.535234 1.255984 2.150035 -1.743165 0.862246 -1.147453 0.979819 -1.768780 -1.119958 -0.067782 -0.013831 -0.029038 -0.343866 0.016188 0.161420 0.174789 -0.775930 -0.711760 0.015974 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition_pivot >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.034444 2.063742 1.031516 -1.032855 1.961396 1.715320 0.478794 0.135976 -0.593219 -1.481238 -0.428771 -2.940117 -3.039800 1.427296 -0.352953 -0.066980 3.032605 -0.511613 0.045715 -0.870922 0.265255 0.835457 3.429019 3.145306 -2.964331 0.901167 1.021741 0.752749 -0.140800 1.008589 -0.679550 -3.044819 0.612680 0.068075 0.800915 0.033226 -0.835618 -1.899243 -0.089145 -4.047487 -0.463137 0.987183 -1.227996 0.034332 0.342289 1.371815 4.561892 1.568146 -0.764644 0.763747 1.406482 0.487288 0.864790 0.087471 0.114583 -0.636062 0.956337 -0.385342 -0.928650 -0.162891 -0.161522 -1.334234 -1.114767 2.316491 2.250000 -0.017361 -1.323404 0.271724 0.130454 0.060761 -0.857332 2.045443 1.913563 2.306323 1.808186 -0.534955 -0.054648 -2.868530 0.051030 -4.506178 -2.768762 -1.917515 1.701904 1.011849 0.765120 -0.984568 3.552291 -0.157487 1.113744 1.545790 3.599209 -1.959165 -0.525734 -1.221862 -0.516247 0.719936 -0.791641 0.811829 -0.142660 -0.367550 -2.210053 -1.541125 0.922862 -0.546196 -1.608353 -0.188570 -0.260866 0.819128 -2.123353 -0.160681 -3.321091 0.012520 0.757131 -3.937903 -1.637446 0.742926 1.329887 0.976967 -0.797198 -1.922476 0.517139 0.792119 -0.975061 -0.777992 -1.128301 2.395709 2.034535 -0.036750 1.277006 1.246077 2.194933 2.905556 1.825618 -0.441082 -0.768320 0.287670 -0.428753 -0.342011 -0.392093 0.267119 0.108579 -1.587740 1.229753 1.625274 -1.319699 -0.577817 -0.941878 -1.615316 0.774007 6.197096 -1.058146 1.855308 0.711199 -2.425454 1.123528 -1.494617 -1.774918 -0.009540 1.262459 2.834879 -2.005911 -1.084674 1.778457 3.147879 0.977798 -2.419125 1.387772 0.773837 0.159981 -1.419117 1.576249 0.454744 1.330019 -1.217223 -0.278669 2.321358 4.388430 -1.056198 -2.956320 0.472402 1.044269 1.446412 -0.753127 -0.040614 -0.462070 -0.506938 2.030977 0.409702 1.163771 2.559597 -4.502337 1.663051 0.515015 -1.408385 1.845790 0.452459 -1.143254 -0.531949 0.970201 2.503074 1.761262 0.678153 0.014455 -1.469988 -2.257142 -0.249469 1.001651 1.023191 -1.737349 2.264766 0.188968 -2.059766 -1.418798 -1.996333 -0.410681 -0.090063 -1.751519 1.082569 0.351808 -5.351636 3.123919 0.287800 -1.338463 -0.568142 -1.907517 1.721878 -2.267910 -2.604771 0.899610 -1.701334 -2.224432 0.042957 -0.979765 0.326995 1.100234 1.263564 -2.164887 -2.729086 2.874912 1.012136 2.229980 1.843545 1.013579 2.579591 -0.092683 -1.568666 -0.924577 -2.182070 2.524462 -0.094319 -1.539581 -0.244023 -1.621694 1.197564 3.307492 -1.225334 -0.602478 -1.890927 1.164582 -2.634460 -0.641133 1.050895 1.151288 -1.438031 0.921134 1.529410 -0.710882 -0.531320 -2.505763 -0.407814 -1.284262 -2.165920 0.360096 -2.299135 -0.361761 2.527983 -1.550812 -1.276528 1.063446 -0.649330 -0.461646 -0.229688 1.961815 3.145561 -2.052146 1.162849 -2.641161 1.844389 -3.184145 -2.725158 0.835582 -1.151013 -0.546239 -1.267267 -0.266480 0.851677 -0.016541 -1.241031 -1.439552 0.623517 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__heap_select >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.284990 1.041197 0.784214 -0.945874 1.179095 0.980465 0.364301 0.233617 -0.893468 -1.680834 -0.469802 -1.596317 -2.243330 1.729481 -0.352240 0.208829 2.889114 0.403993 0.111009 -0.862764 1.167430 -1.149644 2.614361 2.967962 -2.688836 0.452148 1.292660 1.155712 0.485267 1.272375 0.216779 -2.206228 0.425802 -0.564710 1.503106 -1.470503 -0.353733 -0.266311 -0.268261 -4.216200 -0.518026 1.023458 -0.525070 0.147240 0.339890 1.188363 3.083843 1.513330 -1.257733 1.159458 1.384883 0.503021 0.770232 0.077138 -0.075994 0.071296 0.071494 -0.148017 -0.528758 0.574227 -0.186163 -2.047852 0.069011 2.131275 2.614826 -0.447304 -0.663000 0.335692 -0.049316 0.278690 -0.261028 1.639337 1.051054 0.945623 1.764357 -2.174788 -0.455894 -4.491956 0.451811 -5.448181 -2.072380 -1.845361 1.523055 1.002555 0.674551 -0.684293 3.269971 -0.195997 0.724385 2.066079 2.904912 -1.547277 -0.391303 -1.661486 -0.854738 0.927792 -1.099060 0.046082 0.245458 -0.025640 -1.639221 -1.994376 0.983392 -0.167064 -1.476203 -1.049033 -0.760432 1.804277 -2.341669 -0.995975 -2.850439 0.162707 -0.011105 -3.305381 -0.079457 -0.653398 0.995574 0.874260 -0.531075 -1.533976 0.461236 1.120565 -0.501916 -0.886226 -1.187802 2.296048 1.253129 -0.421842 0.582774 0.873289 0.935902 2.054884 2.001665 -0.630907 -0.803340 1.065935 -0.954691 -0.370878 -1.464017 -0.086264 1.506019 -1.638062 -0.364690 0.836013 -1.219159 -0.767967 0.727096 -1.737660 0.984594 6.258446 -0.463168 1.275911 0.809714 -2.137925 1.772027 -0.273970 -0.898644 0.947415 1.893154 1.874068 -2.843592 -1.235641 0.857514 2.869579 0.942418 -1.778223 -0.891461 -0.015919 0.062760 -0.593318 1.159738 0.290272 0.034775 -0.953524 -0.240778 1.203322 3.482623 -1.002396 -1.235221 0.008862 1.563181 -0.427652 -2.338886 0.046403 -1.654243 -0.456401 0.713601 -0.041365 1.023786 2.293176 -4.461054 1.822992 -0.362017 -0.567500 0.954571 0.100987 -0.583751 -3.101609 0.946229 1.765980 1.978925 0.069620 0.639713 -0.491637 -2.417803 -0.038415 0.516946 1.270842 -1.608557 2.117759 -0.345448 -1.489114 -1.421445 -0.534318 -0.811623 -1.016745 -0.829739 0.969255 1.009930 -3.646194 2.353141 -0.538990 -0.987502 0.369763 -0.625267 1.690019 -2.362603 -2.590914 1.102474 -0.506702 -1.589690 -0.683902 -0.984802 1.323455 0.231701 -0.566287 -1.303430 -2.806165 1.876893 -0.124894 1.618187 1.481032 0.535458 2.762658 0.440581 -1.401403 -1.415720 -1.390181 0.930953 -0.535137 -0.781388 -1.446430 -0.992886 1.287993 3.276722 -0.257751 -0.424043 -0.486594 2.173956 -2.108121 -0.790078 0.943495 0.746578 -0.601041 0.990616 1.239878 -1.622779 -0.855642 -2.201644 0.532194 -0.129586 -1.493378 0.990886 -2.284581 -0.066714 1.636425 -0.707385 -0.866976 1.317986 0.400025 -0.113118 -0.434554 2.419635 2.556911 -1.722963 0.580476 -2.099441 1.248229 -2.878234 -1.648595 -0.545958 0.405998 -0.150847 -0.342455 0.063706 0.899379 0.620067 -0.473436 -0.860832 -0.156747 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.351759 0.299758 0.054979 -0.876332 0.912340 0.399917 0.347831 -0.155442 -0.734706 -0.932097 -0.096444 -1.630356 -1.261438 0.886332 -0.279886 0.756812 2.079344 0.104791 -0.065682 -0.672738 0.680568 -0.344410 2.119003 2.180476 -1.624988 0.258965 0.518030 0.799146 0.122604 0.177407 -0.122976 -1.292577 0.407126 -0.873064 0.644794 -0.641653 -0.307128 -0.154471 0.595678 -2.616147 -0.176259 0.435773 0.087103 0.052070 0.031299 0.802614 1.969575 1.141602 -0.586617 0.838204 1.122335 0.093047 0.700338 0.169664 -0.083828 0.156111 0.183889 -0.269075 -0.400955 -0.125849 -0.212227 -0.914199 0.141557 1.388996 1.637419 -0.240134 -0.751197 0.563190 0.437524 0.106187 0.112175 1.244873 0.406413 0.545269 1.130303 -1.745246 0.023114 -2.859121 0.104580 -3.431120 -1.554874 -0.865123 0.929170 0.385668 0.839186 -0.061639 2.338374 -0.326309 0.369398 1.023179 1.681266 -1.380925 -0.401760 -0.790918 -0.379966 0.393012 -0.642422 0.070995 0.500656 0.359179 -1.277827 -0.925575 0.830337 -0.032288 -0.960225 -0.886565 -0.084323 0.671436 -1.296207 -0.935026 -1.895992 0.404750 0.068272 -2.324277 0.058419 -0.303221 0.663701 0.428678 -0.644200 -1.392395 0.305617 0.478013 -0.510685 -0.578534 -0.776016 1.311096 1.094623 -0.039628 0.616182 0.720007 0.686117 2.137334 1.160306 -0.670237 -0.582245 0.640355 -0.758565 -0.002590 -0.769754 -0.353972 0.820371 -1.402749 0.280135 0.742489 -0.915565 -0.342958 0.787786 -0.719183 0.413092 3.959235 -0.420446 1.244031 0.986630 -1.321061 1.030025 -0.769510 -0.357076 0.428690 1.110091 1.159905 -1.800347 -0.995046 0.899956 1.959209 0.762884 -1.433216 -0.341811 0.392010 0.482342 -0.309708 0.528440 0.362733 0.483219 -0.836167 -0.038712 0.972241 2.764061 -0.615875 -0.358637 0.240008 1.017424 -0.071102 -1.694678 -0.304774 -1.542625 -0.363081 0.570494 0.447876 0.528947 1.695849 -2.663278 1.060721 -0.239647 -0.202557 1.125066 0.383069 -0.802659 -2.100888 0.226036 1.023386 1.323648 -0.243649 0.581041 -0.252014 -1.472188 -0.019082 0.321921 0.686821 -1.077386 1.404183 -0.159477 -1.051325 -0.560854 -0.286130 -0.426938 -0.522573 -0.355543 0.891196 0.778970 -2.372830 1.505248 -0.140101 -0.930167 0.350537 -0.695306 1.393244 -1.485509 -1.382336 0.925785 -0.628232 -0.689361 -0.347776 -0.374342 0.627532 0.164668 -0.018565 -1.103020 -1.618577 1.521746 0.073425 1.420122 1.003056 0.042283 1.363107 -0.264811 -0.885131 -0.818287 -0.800789 -0.078175 -0.280301 -0.810922 -0.846999 -0.653967 1.021250 2.028224 -0.347225 -0.199797 -0.105286 1.177574 -1.822444 -0.292863 0.690523 0.781065 -0.809891 0.749927 0.936384 -1.152372 -0.260798 -1.404794 0.171932 -0.437411 -1.072356 0.780397 -1.313749 0.064270 0.986203 -0.650595 -0.237786 0.792815 0.295412 -0.002612 -0.182006 1.734654 1.780755 -0.610955 0.041103 -1.642027 0.711268 -1.924417 -1.335854 0.108350 0.283827 -0.724612 -0.344183 0.319094 1.027032 0.266619 -0.598386 -0.913320 0.114505 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__make_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.855495 -0.103869 -0.373934 -1.941985 2.205331 1.240546 1.038460 -0.398948 -2.425320 -1.973037 0.560833 -4.749999 -3.120267 2.541264 -0.597870 1.905777 4.787019 -0.012884 -0.501897 -1.411122 1.196878 0.367198 5.076861 5.181918 -3.294152 0.676819 -0.153693 0.967115 -0.315189 0.029209 0.233077 -3.791231 1.242606 -1.776646 0.672245 -0.607758 -1.253134 -0.118255 1.914110 -5.739446 -0.257692 2.004810 0.117953 0.006920 0.277583 2.131707 4.326032 2.593577 -0.645782 2.681678 2.191139 -0.287338 1.819176 0.261003 0.333569 -0.206584 -0.095231 -0.747749 -1.313605 -0.370110 -0.887315 -1.175168 -0.528128 3.002955 3.486733 -0.486673 -2.382471 0.799120 1.018815 0.600742 0.481003 3.024508 1.587596 1.099989 2.594060 -2.345182 -0.558629 -5.485186 0.394006 -7.444543 -3.648224 -0.751911 3.476874 1.544776 1.477370 -1.221132 5.331713 -0.958157 -0.291521 2.830864 4.100807 -2.790321 -1.112475 -1.125307 -0.615039 0.434234 -1.203860 0.527757 1.338908 0.872903 -3.432762 -1.507959 1.184471 -0.505351 -2.002994 -1.656604 0.154226 1.462805 -2.963696 -1.455300 -3.788854 1.967583 1.071949 -5.385219 -0.999486 -0.172281 0.627920 1.383611 -2.568590 -2.392806 1.327644 -0.024394 -1.635012 -0.924206 -1.397740 3.047463 2.325205 0.677508 1.281446 2.358340 1.838004 5.061516 1.685808 -1.710825 -0.498755 1.085729 -0.565183 0.975328 -1.035263 -0.900900 1.117356 -3.052346 1.535233 1.149530 -2.168649 -0.884874 0.193811 -0.806997 -0.020834 8.465621 -1.358580 3.788539 2.694980 -2.665472 2.172589 -2.200041 -0.312134 0.475035 2.347545 2.544817 -2.909611 -2.198947 3.025326 4.828511 1.848409 -3.707634 0.510166 1.739209 1.411173 -1.106455 1.914182 0.800307 2.092802 -2.079252 -0.038294 2.443435 6.726859 -1.523513 -1.240126 0.482897 2.523040 1.284764 -2.564745 -0.563277 -2.887842 -0.694167 2.305359 1.372646 1.350347 3.944173 -5.765611 2.614885 -0.131746 -0.339711 2.669374 1.566102 -2.547700 -3.885476 -0.592659 1.962430 3.216210 0.234428 0.879941 -0.490328 -3.460816 -0.006433 0.953383 1.005075 -2.483375 3.451934 -0.538984 -2.019389 -0.763264 -1.157870 -1.210350 -0.676926 -1.354371 2.375522 2.133100 -5.662056 3.082503 0.526752 -2.231887 -0.243886 -1.320205 3.409363 -2.813128 -3.038889 1.877913 -2.444720 -2.884641 -0.587420 -1.031968 0.494537 0.942219 0.908665 -2.477922 -3.578275 4.761298 0.537466 4.375970 2.327606 -0.618134 2.958061 -0.549371 -2.327180 -1.107133 -3.025615 1.285282 -0.660049 -1.959538 -0.914242 -1.611830 2.170417 3.590727 -0.610071 -1.474043 -1.300390 2.555678 -3.814457 -0.114703 1.739979 1.378934 -1.843310 2.089539 2.474332 -2.431670 0.503377 -3.432910 0.066535 -2.170300 -2.062652 1.759053 -2.189409 0.292096 1.394562 -1.500626 -0.492421 1.247803 0.565874 -0.652596 0.042896 4.122971 3.854518 -1.410918 0.464044 -4.115036 2.232149 -3.907864 -3.457219 0.591086 0.129830 -2.383700 -1.309706 0.238387 2.330603 0.909564 -2.289410 -2.925758 1.563272 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(Job*, Job*) = 0.116921 1.245137 1.008672 -0.451485 1.498612 1.216627 0.496153 0.526061 -0.883764 -1.308289 -0.147634 -2.065247 -2.448602 1.565968 -0.086190 -0.245575 2.275572 -0.026141 0.040993 -0.474886 0.113769 0.069477 2.304936 2.288491 -1.966529 0.834160 0.380215 0.264730 -0.385148 1.421999 -0.297228 -2.635067 0.620944 0.358839 0.578062 -0.248416 -0.842610 -1.146534 -0.492003 -3.212101 -0.378399 1.593088 -1.092432 -0.035030 0.543204 1.281504 3.163832 1.057631 -0.496585 1.229542 0.586368 0.069469 0.702316 0.063607 0.567268 -0.475158 0.595964 -0.275476 -1.063605 0.418688 -0.337596 -1.572385 -1.152119 1.465282 1.692861 -0.287743 -0.954929 -0.321955 -0.426293 0.240492 -0.366519 1.351993 1.766132 1.140267 1.440976 0.299669 -0.514177 -1.954943 0.083579 -4.035199 -2.077626 -1.117114 2.221321 1.122016 0.110740 -1.260029 2.559156 -0.226449 0.419808 1.274716 2.807804 -1.178017 -0.518568 -0.692571 -0.349798 0.563583 -0.663118 0.332355 0.092382 -0.607963 -1.695535 -1.107945 0.797028 -0.589898 -1.110857 0.036455 -0.398950 1.355214 -2.077183 -0.011776 -2.371818 0.143469 0.720889 -2.625538 -1.247329 0.714344 0.688880 1.259833 -0.933258 -0.719553 0.837557 0.243819 -0.743357 -0.432543 -0.755575 1.973117 0.860556 0.215515 0.829409 1.025378 1.450614 1.597642 1.507223 -0.267865 -0.172761 0.286672 0.149084 0.253313 -0.148580 0.055820 -0.170341 -0.992565 0.670939 0.511756 -1.094628 -0.553118 -1.455981 -0.912627 0.303823 3.919183 -0.762168 1.463830 0.405981 -1.820147 0.986272 -0.767816 -1.132999 0.072100 1.356857 1.866935 -0.868776 -0.682041 1.341081 2.532608 0.799596 -1.896064 0.931150 0.454023 0.129912 -0.966867 1.603543 0.286693 1.142754 -0.914087 -0.250022 1.259141 3.133114 -0.925924 -2.836532 0.151791 0.657241 1.187434 -0.471239 0.293399 0.137799 -0.262626 1.279661 -0.126220 0.767028 1.838221 -3.683599 1.576171 0.014165 -1.097726 1.335248 0.467988 -0.767503 -0.728582 0.321007 1.608042 1.726389 1.087596 -0.195818 -0.904662 -1.770329 -0.226277 0.600619 0.619501 -1.142953 1.800979 -0.155079 -1.382668 -0.985373 -1.825413 -0.192678 -0.139002 -1.457407 0.783793 0.731465 -4.150085 2.002678 0.307474 -0.907910 -0.706513 -0.606160 1.213189 -1.444049 -2.260050 0.497865 -1.496582 -2.558731 -0.200597 -1.097124 0.192390 0.865994 0.470586 -0.994877 -1.910680 2.534152 0.551341 1.867722 1.365396 0.431506 2.506466 0.831433 -1.552207 -0.347615 -1.818607 2.472511 -0.859191 -0.642642 0.109381 -1.280467 0.803783 2.170170 -0.264039 -0.627278 -1.838597 1.261739 -1.581893 -0.351968 1.124881 0.553024 -0.450444 1.199158 1.403023 -0.654522 -0.250867 -1.786004 -0.262159 -0.981923 -1.145954 0.342017 -1.590211 -0.301501 1.426653 -0.839982 -1.198593 0.583588 -0.490590 -0.564657 -0.392366 1.626523 2.425688 -2.103586 1.437407 -1.685553 1.559827 -2.082594 -1.737608 0.184314 -0.466283 -0.460353 -0.895921 -0.334992 0.193707 0.310499 -1.153102 -1.186665 0.703818 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__pop_heap >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 0.091731 1.236336 0.756595 -0.671513 1.681169 0.756987 0.612641 0.820385 -0.976521 -1.740612 -0.194193 -2.573677 -2.820662 1.425575 -0.090592 -0.084405 2.952441 -0.020247 0.169915 -0.878521 0.072872 0.043952 2.990856 2.922206 -2.416021 0.899569 0.419549 0.532779 -0.332345 0.855169 -0.274185 -2.804592 0.819679 -0.010981 0.791566 -0.282824 -0.870583 -1.387569 -0.441654 -3.879895 -0.385609 1.457839 -0.971891 0.030409 0.461599 2.038747 3.727649 1.367924 -0.758134 1.492237 1.039572 -0.056387 0.919836 0.156339 0.190653 -0.533631 0.320117 -0.426631 -1.290931 0.273814 -0.307470 -2.021608 -1.057540 1.712954 1.970445 -0.444492 -1.246023 0.048399 -0.008100 0.200556 -0.199871 1.685396 2.057713 1.096193 1.916205 -0.323446 -0.660768 -2.822328 -0.071289 -5.691416 -2.647472 -1.541166 2.751912 0.808933 0.256741 -1.082449 3.179604 -0.356169 0.848952 1.624708 2.989530 -1.571636 -0.766406 -0.973413 -0.155138 0.770742 -0.840060 0.286600 0.598441 -0.317388 -2.065448 -1.011964 1.127249 -0.730177 -1.342208 -0.412415 -0.270624 1.167286 -2.438290 -0.203535 -3.343532 0.276076 1.042138 -3.211663 -0.881061 0.961264 1.293743 1.417352 -1.025997 -0.956044 0.746216 0.223226 -0.922836 -0.381489 -1.020299 2.288761 1.154755 0.256655 1.339870 1.472569 1.698790 2.329248 2.101361 -0.434016 -0.604443 0.618459 -0.281448 0.139867 -0.277578 -0.212399 0.396180 -1.518804 1.159210 0.595660 -1.402547 -0.848796 -0.944534 -1.052787 0.516306 4.400708 -0.801960 1.805889 0.749808 -1.943900 1.118755 -1.339901 -1.184354 0.137637 1.691270 2.119358 -0.994678 -0.891820 1.443322 2.945247 1.017903 -2.412391 1.010651 0.705349 0.532378 -0.986573 1.490084 0.541273 1.627251 -1.146493 -0.107478 1.652473 3.867952 -0.939875 -2.492428 0.132798 1.008194 1.321732 -1.010840 0.151173 -0.243452 -0.438143 1.570202 0.273968 0.736124 2.291223 -4.204729 1.647760 -0.087675 -0.856924 1.451012 0.771850 -1.005118 -1.599235 0.358010 1.802928 2.117940 0.949542 0.074656 -0.974462 -1.951390 -0.228785 0.738452 0.861686 -1.306375 2.072842 -0.262491 -1.547566 -0.936709 -1.936991 -0.237610 0.124799 -1.271708 0.992484 1.004478 -4.918328 2.323809 0.015042 -1.435068 -0.663815 -0.948155 1.713394 -1.905548 -2.404633 0.761629 -1.765729 -2.884799 -0.402062 -1.102398 0.279762 0.743051 0.427815 -1.174066 -2.327682 3.250182 0.743647 2.255491 1.664469 0.289268 3.081925 0.381802 -1.773519 -0.493273 -1.974486 2.050620 -1.177354 -0.882000 0.151501 -1.417880 0.978729 2.813228 -0.591883 -0.459324 -1.501432 1.371949 -2.465113 -0.575644 1.337646 1.186256 -0.543208 1.858967 1.720198 -1.185760 -0.310551 -2.263594 -0.190643 -0.905367 -1.465182 0.492449 -2.187154 -0.297722 1.852834 -1.038093 -1.122944 0.800957 -0.575449 -0.520786 -0.632948 2.108246 3.447259 -2.248428 1.334033 -2.175804 1.687512 -2.610401 -2.174900 0.277388 -0.251164 -0.641865 -0.883855 -0.067147 0.510453 0.233373 -1.650243 -1.759796 0.875766 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__adjust_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_iter) = -1.531948 -0.536590 0.426530 -3.591838 3.327742 3.569978 1.566510 -2.186360 -4.583020 -1.948436 1.509464 -7.124717 -4.659758 5.607017 -1.467641 2.706813 7.393637 0.014793 -1.737147 -2.669824 2.834264 0.806495 8.068497 8.751406 -5.872497 1.006981 0.271192 1.377093 1.041032 0.958686 0.720017 -5.388484 1.716123 -2.430527 1.159554 -1.417170 -2.182183 0.327214 3.483574 -9.703302 -0.627788 2.963961 -0.254017 0.135614 1.007480 4.159502 6.459809 4.253734 -0.675443 4.667745 3.526588 -0.039846 2.769811 -0.084027 1.597160 -0.625898 1.823084 0.323096 -1.318827 0.063766 -1.335437 -0.638376 -0.905104 5.670771 6.606140 -0.402100 -3.582506 0.466812 1.866285 1.325933 0.627736 4.985407 2.118338 2.728956 3.765184 -4.008303 -0.248919 -9.894699 1.481672 -11.026621 -5.202081 -0.315769 5.526061 1.673315 1.942559 -2.423540 8.622619 -0.340898 -2.045402 4.845772 7.372105 -3.951142 -1.269721 -1.120492 -2.173059 0.575151 -1.857736 2.045497 2.071665 1.264356 -5.458695 -3.254608 1.277257 -0.692418 -3.482912 -1.550265 -0.167852 3.765024 -4.276903 -1.755769 -3.775803 3.574037 1.045154 -9.024681 -2.740459 -2.342887 1.157687 1.755296 -4.314439 -3.438047 2.246194 0.292915 -2.642132 -1.490456 -1.890994 4.947422 4.357716 1.196123 0.297960 3.507588 2.741723 7.286300 1.274189 -3.188517 0.265618 1.462624 -0.260332 2.076461 -2.463470 -0.672403 2.226793 -4.004003 1.967921 1.589001 -3.141931 -1.231022 1.159667 -1.132272 -0.614556 16.364272 -2.142271 6.483018 4.385848 -4.566262 2.827677 -2.333137 0.013063 1.678184 3.855129 3.638594 -6.109295 -3.869525 5.011012 8.390174 2.796755 -6.554212 0.223372 2.550404 0.359598 -2.281869 4.032727 0.398471 1.643987 -2.648180 -0.571793 3.671765 10.586389 -2.972797 -3.249400 0.058317 4.132196 1.602735 -3.484967 -0.384550 -3.838692 -0.313469 3.244990 1.890085 3.350719 6.206512 -11.366162 5.027071 0.155241 -0.907940 4.690250 2.383742 -4.374446 -5.374049 -0.754374 2.916101 5.022967 0.762115 -0.054070 0.138092 -6.589672 0.136849 1.475433 1.175208 -4.581398 5.787494 0.077806 -2.837332 -1.658808 -1.276786 -1.854062 -1.575677 -2.996078 4.087177 1.952390 -9.905983 4.834548 1.323705 -2.939681 -0.687491 -2.108544 4.924978 -4.531786 -5.059173 2.374218 -3.193129 -4.513245 -1.727474 -2.261665 1.210090 1.468816 3.300643 -5.162873 -5.812598 6.804554 -0.879462 7.065153 3.787889 -1.005657 4.635240 -1.272653 -3.587757 -2.549217 -5.145293 4.102540 0.543162 -3.375150 -0.771538 -2.535655 3.412984 5.210995 -0.503053 -3.390593 -2.793634 4.976505 -5.213640 -0.296737 2.089316 2.021238 -3.160007 2.715582 3.297773 -3.737023 1.400756 -5.085240 -1.454973 -3.797738 -2.898411 3.912965 -2.147188 1.093856 0.746081 -1.754344 -0.673302 2.583103 1.002431 -1.009101 1.442400 6.456802 6.479391 -2.828137 0.710696 -6.925216 4.616248 -6.036317 -5.488318 0.690400 -0.881791 -3.585046 -2.203292 -1.009154 3.899955 2.654840 -3.571085 -4.129052 3.181578 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.007533 0.612027 0.484476 -0.255340 0.589970 0.512892 0.164417 -0.041031 -0.253855 -0.326369 -0.220214 -0.573810 -0.693807 0.596131 -0.076679 0.141168 0.962255 0.109836 -0.008862 -0.217546 0.278220 -0.316833 0.932002 0.900266 -0.836295 0.291618 0.490524 0.258143 0.015136 0.762733 -0.512544 -0.699334 0.231195 -0.196005 0.324918 -0.405398 -0.191100 -0.371432 -0.009142 -1.327110 -0.100037 0.180548 -0.196613 -0.042767 0.055153 0.338059 1.250852 0.462681 -0.209058 0.257785 0.306402 0.085952 0.225293 0.101027 0.275118 0.238959 0.611781 0.060042 -0.319845 0.086477 -0.081153 -0.675112 -0.133798 0.656708 0.763091 -0.042282 -0.201706 0.111645 -0.140287 -0.024345 -0.169343 0.451031 0.335990 0.499361 0.440980 -0.584677 0.156693 -1.003336 -0.099403 -1.481642 -0.720552 -0.640394 0.277849 0.076413 0.416898 -0.102165 0.997064 -0.084404 0.350763 0.151324 1.093752 -0.795538 -0.169239 -0.377077 -0.206637 0.192835 -0.296042 0.029089 0.110762 -0.354618 -0.577523 -0.703521 0.634240 0.075962 -0.462537 -0.061640 -0.156265 0.541859 -0.761810 -0.396982 -0.921090 -0.275602 -0.183196 -1.046711 -0.049495 0.022419 0.438754 0.319810 -0.166247 -0.836505 0.219318 0.572792 -0.211106 -0.481481 -0.270172 0.784548 0.429866 -0.097145 0.287894 0.087033 0.437228 0.809958 0.808454 -0.162351 -0.171235 0.158617 -0.344233 -0.127247 -0.288190 -0.083042 0.044540 -0.551125 -0.021497 0.492912 -0.427580 0.100052 0.184968 -0.375350 0.339968 1.867765 -0.256692 0.411127 0.068754 -0.896925 0.491794 -0.212526 -0.504081 0.113661 0.533528 0.700256 -0.989071 -0.406075 0.335715 0.895623 0.349421 -0.728086 -0.129396 -0.191078 -0.048520 -0.140929 0.355552 0.096721 0.144541 -0.415742 -0.145916 0.341073 1.415670 -0.498078 -0.892492 0.190336 -0.040720 -0.031361 -0.748812 -0.066374 -0.336593 -0.082723 0.044957 -0.123534 0.318181 0.772313 -1.510571 0.671607 -0.308658 -0.648813 0.732937 -0.019367 -0.174613 -0.464826 0.285738 0.747902 0.691086 0.176708 -0.002461 -0.285431 -0.724058 -0.111071 0.079634 0.368657 -0.477226 0.615223 0.119689 -0.789918 -0.496015 -0.421255 0.055204 -0.375280 -0.350100 0.274773 0.142841 -1.563451 0.910480 0.047324 -0.270598 0.205009 -0.210494 0.340367 -0.687562 -0.898089 0.305229 -0.197455 -0.328303 -0.096062 -0.288561 0.352789 0.155883 -0.007925 -0.520874 -0.885122 0.516802 0.042601 0.485722 0.507826 0.349667 0.821778 0.261337 -0.493047 -0.438213 -0.285487 0.314293 -0.237346 -0.283812 -0.330631 -0.471093 0.531478 1.089299 -0.052361 0.036718 -0.449071 0.599198 -0.771620 -0.190555 0.458533 0.361148 -0.370808 0.118285 0.524345 -0.336357 -0.385278 -0.502463 -0.200204 -0.164795 -0.555902 0.191529 -0.721981 -0.082159 0.651281 -0.320161 -0.385092 0.379886 -0.129688 -0.034842 -0.170501 0.664142 0.915989 -0.713932 0.299927 -0.569574 0.441459 -0.954045 -0.594072 0.079808 0.049778 -0.234696 -0.200591 0.121619 0.254418 0.004062 -0.189847 -0.136126 -0.212207 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__push_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_val&) = -0.747353 0.120086 0.950165 -1.752952 1.713772 1.420454 0.766696 -0.609018 -2.216355 -1.620668 0.369216 -3.505124 -2.692539 2.812758 -0.653528 1.098958 3.992815 0.256367 -0.526711 -1.495469 1.329957 -0.436414 4.027031 4.530850 -3.162064 0.619677 0.351029 1.061523 0.429055 1.144679 0.073739 -3.049477 0.761044 -1.036908 1.143385 -1.034129 -1.159278 0.266591 1.129934 -5.384802 -0.350113 1.664917 -0.182734 0.142937 0.580070 2.006949 3.705614 2.054793 -0.459412 2.366052 1.725630 -0.227448 1.559502 -0.035771 0.870837 -0.048938 0.980476 -0.091154 -0.930487 0.402478 -0.829881 -1.169603 -0.310101 2.805075 3.274105 -0.349828 -1.811709 0.018288 0.654691 0.669042 0.049120 2.561745 1.289790 1.373710 2.068047 -2.400507 -0.002623 -5.307637 0.745042 -6.159382 -2.985829 -0.733534 2.894635 1.417977 0.948926 -1.515464 4.507708 -0.475803 -0.595533 2.184017 4.035307 -2.125913 -0.610962 -0.892481 -0.841117 0.268863 -0.918685 0.570144 0.745659 0.395536 -2.773194 -1.771471 1.271681 -0.480555 -1.777094 -0.473696 -0.365950 2.106961 -2.760466 -1.059804 -2.912768 1.396063 0.715858 -4.585736 -0.575767 -0.852970 0.709913 1.208624 -2.187413 -1.881911 1.302910 0.525064 -1.301854 -0.793597 -1.587645 3.349326 2.038140 0.183444 0.420930 1.825762 1.324648 3.403594 1.394325 -1.422953 -0.130966 1.051517 -0.611441 0.562336 -1.293215 -0.341956 1.125003 -2.109557 0.355366 0.792544 -1.699907 -0.428119 0.389628 -0.799567 0.013688 8.504928 -1.283063 3.040028 1.900838 -2.289955 2.362959 -0.862388 -0.236959 0.735102 2.023178 2.273597 -3.755014 -1.939721 2.421936 4.195578 1.436433 -3.356771 -0.279355 0.850561 0.426604 -0.882258 2.155523 0.241304 1.060703 -1.571001 -0.249700 1.566998 5.741494 -1.648735 -2.269569 0.023689 1.376583 0.713487 -2.586913 -0.184316 -1.941441 -0.454030 1.361908 0.793500 1.593225 3.297697 -6.151390 2.728203 -0.132405 -0.996762 2.635792 0.700744 -1.771724 -3.613440 -0.332922 1.799443 2.852442 0.593443 0.145326 -0.227984 -3.449959 0.069060 0.657061 1.046633 -2.562513 3.114849 -0.180558 -1.820370 -0.949111 -1.229715 -1.171047 -0.936603 -1.623302 1.894679 1.366567 -5.469086 2.681886 0.594947 -1.403025 -0.011869 -0.759580 2.392333 -2.383312 -2.872532 1.196490 -1.540750 -2.633842 -1.008899 -1.174657 0.554190 0.386696 0.626715 -2.411802 -3.490045 3.505614 -0.337084 3.522769 2.003064 -0.279233 2.793854 0.671885 -1.933009 -1.182241 -2.358664 1.981366 -0.221620 -1.399969 -1.217308 -1.381598 1.704721 3.206259 -0.211278 -1.158805 -1.618712 2.777951 -2.993510 -0.406655 1.329082 0.596548 -1.319076 1.348473 1.963972 -1.926996 0.222512 -3.024006 -0.679625 -1.713758 -1.476402 1.770859 -1.764397 0.232351 0.883204 -1.158628 -0.841956 1.314191 0.508424 -0.812329 0.328755 3.625241 3.810003 -1.643331 0.621101 -3.337106 2.243948 -3.221277 -2.522103 -0.066754 0.045479 -1.652095 -1.114805 -0.122416 1.929245 1.206430 -1.801726 -1.872053 1.173124 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(Job*, Job&) = 0.116921 1.245137 1.008672 -0.451485 1.498612 1.216627 0.496153 0.526061 -0.883764 -1.308289 -0.147634 -2.065247 -2.448602 1.565968 -0.086190 -0.245575 2.275572 -0.026141 0.040993 -0.474886 0.113769 0.069477 2.304936 2.288491 -1.966529 0.834160 0.380215 0.264730 -0.385148 1.421999 -0.297228 -2.635067 0.620944 0.358839 0.578062 -0.248416 -0.842610 -1.146534 -0.492003 -3.212101 -0.378399 1.593088 -1.092432 -0.035030 0.543204 1.281504 3.163832 1.057631 -0.496585 1.229542 0.586368 0.069469 0.702316 0.063607 0.567268 -0.475158 0.595964 -0.275476 -1.063605 0.418688 -0.337596 -1.572385 -1.152119 1.465282 1.692861 -0.287743 -0.954929 -0.321955 -0.426293 0.240492 -0.366519 1.351993 1.766132 1.140267 1.440976 0.299669 -0.514177 -1.954943 0.083579 -4.035199 -2.077626 -1.117114 2.221321 1.122016 0.110740 -1.260029 2.559156 -0.226449 0.419808 1.274716 2.807804 -1.178017 -0.518568 -0.692571 -0.349798 0.563583 -0.663118 0.332355 0.092382 -0.607963 -1.695535 -1.107945 0.797028 -0.589898 -1.110857 0.036455 -0.398950 1.355214 -2.077183 -0.011776 -2.371818 0.143469 0.720889 -2.625538 -1.247329 0.714344 0.688880 1.259833 -0.933258 -0.719553 0.837557 0.243819 -0.743357 -0.432543 -0.755575 1.973117 0.860556 0.215515 0.829409 1.025378 1.450614 1.597642 1.507223 -0.267865 -0.172761 0.286672 0.149084 0.253313 -0.148580 0.055820 -0.170341 -0.992565 0.670939 0.511756 -1.094628 -0.553118 -1.455981 -0.912627 0.303823 3.919183 -0.762168 1.463830 0.405981 -1.820147 0.986272 -0.767816 -1.132999 0.072100 1.356857 1.866935 -0.868776 -0.682041 1.341081 2.532608 0.799596 -1.896064 0.931150 0.454023 0.129912 -0.966867 1.603543 0.286693 1.142754 -0.914087 -0.250022 1.259141 3.133114 -0.925924 -2.836532 0.151791 0.657241 1.187434 -0.471239 0.293399 0.137799 -0.262626 1.279661 -0.126220 0.767028 1.838221 -3.683599 1.576171 0.014165 -1.097726 1.335248 0.467988 -0.767503 -0.728582 0.321007 1.608042 1.726389 1.087596 -0.195818 -0.904662 -1.770329 -0.226277 0.600619 0.619501 -1.142953 1.800979 -0.155079 -1.382668 -0.985373 -1.825413 -0.192678 -0.139002 -1.457407 0.783793 0.731465 -4.150085 2.002678 0.307474 -0.907910 -0.706513 -0.606160 1.213189 -1.444049 -2.260050 0.497865 -1.496582 -2.558731 -0.200597 -1.097124 0.192390 0.865994 0.470586 -0.994877 -1.910680 2.534152 0.551341 1.867722 1.365396 0.431506 2.506466 0.831433 -1.552207 -0.347615 -1.818607 2.472511 -0.859191 -0.642642 0.109381 -1.280467 0.803783 2.170170 -0.264039 -0.627278 -1.838597 1.261739 -1.581893 -0.351968 1.124881 0.553024 -0.450444 1.199158 1.403023 -0.654522 -0.250867 -1.786004 -0.262159 -0.981923 -1.145954 0.342017 -1.590211 -0.301501 1.426653 -0.839982 -1.198593 0.583588 -0.490590 -0.564657 -0.392366 1.626523 2.425688 -2.103586 1.437407 -1.685553 1.559827 -2.082594 -1.737608 0.184314 -0.466283 -0.460353 -0.895921 -0.334992 0.193707 0.310499 -1.153102 -1.186665 0.703818 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__move_median_to_first >(Job*, Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.696453 1.041550 1.257274 -2.176755 1.568729 1.215968 0.369185 0.732086 -1.750294 -3.671108 -0.522171 -2.572070 -3.899012 2.844218 -1.137048 -0.436551 4.715302 0.624498 0.319820 -1.701136 1.967119 -1.552967 4.180074 5.219402 -4.784573 0.226167 1.748692 2.323669 1.236616 1.370456 1.993165 -4.170140 0.302681 -0.115827 2.823050 -2.591874 -0.274892 0.228645 -1.166574 -6.972328 -0.941957 1.907947 -1.603436 0.558231 0.902058 2.590868 4.640397 2.591343 -2.758796 2.188794 2.981580 1.799959 0.923781 -0.144780 -1.135678 -1.024778 -1.477428 -0.931811 -0.327010 1.258396 -0.234011 -3.196379 0.336364 3.871017 4.558838 -0.895314 -0.990139 0.034618 0.197104 0.769848 -0.104825 2.785346 2.162442 1.353932 3.102139 -3.317509 -1.674995 -8.710493 1.553191 -9.754078 -3.129482 -2.910133 3.432606 2.925760 -0.079968 -1.834167 5.525606 -0.032040 0.936538 5.421253 4.435996 -1.469329 -0.537154 -3.197727 -2.049385 1.818975 -1.935049 0.259756 -0.835863 1.390952 -2.544748 -3.001451 0.202278 -0.947013 -2.399741 -2.196123 -1.479249 3.014760 -4.336380 -0.677781 -4.519607 1.656777 1.053081 -5.637589 -0.422613 -2.001782 2.132016 1.050981 -0.942047 -1.030901 0.534910 1.243316 -0.912805 -0.246340 -3.141873 3.743519 1.985605 -0.726219 0.403009 1.690847 1.285584 2.547556 2.418575 -1.339220 -1.616052 2.135085 -1.270214 -0.818769 -3.010130 0.449897 3.779796 -2.477808 -0.473929 0.666036 -1.917418 -2.688989 0.616349 -3.638378 1.724553 10.992555 -0.650985 2.224408 1.730496 -3.075251 2.708236 -0.100834 -0.868015 2.042270 3.174039 2.837269 -4.078978 -2.000941 1.403419 4.791901 1.471735 -2.338242 -1.111104 0.713748 -0.035251 -1.234601 2.052776 0.381370 -0.816733 -1.247334 -0.410524 2.246133 4.994295 -0.427991 -0.545320 -0.670430 4.238209 -0.651424 -2.683063 0.539564 -2.225325 -0.615780 2.561734 0.167818 2.048643 3.802216 -7.940078 2.719644 0.225483 0.556324 -0.319415 0.256746 -1.014444 -5.838594 1.680387 2.556736 3.175576 -0.014243 1.857944 -0.353655 -4.062191 0.192556 1.257789 2.353248 -2.873494 3.456669 -0.519302 -2.010462 -2.393099 -0.620510 -2.377379 -0.902633 -1.646869 1.626252 1.514478 -5.876968 3.681685 -1.520817 -1.574476 -0.150023 -1.299505 3.533092 -4.248454 -4.095542 1.820701 -0.920393 -3.530057 -1.479913 -1.740253 2.386642 -0.125776 -0.812581 -2.073080 -4.938131 3.396218 -0.313039 2.777953 2.289484 0.478051 4.967850 0.197546 -1.700356 -2.389241 -3.213577 2.766565 -0.696237 -1.265642 -1.255067 -1.200255 1.591289 5.197864 -0.838577 -1.515841 0.353992 3.824747 -2.598652 -1.425137 0.920664 0.953513 -0.535059 2.466182 1.608704 -3.218711 -1.138590 -4.446773 2.044496 0.011768 -2.370395 1.995066 -3.568311 0.261968 2.403920 -0.405422 -1.678681 2.280963 1.174890 -0.347625 -0.315699 4.461021 4.359417 -2.179480 1.234951 -3.917986 2.181422 -4.783280 -2.933988 -1.658097 0.265869 0.581813 -0.262248 -1.058459 1.726564 1.509953 -0.138787 -1.647260 0.795947 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.458288 1.163756 1.244257 -1.602279 1.446434 1.534627 0.356469 -0.024977 -1.257799 -1.818621 -0.587463 -2.088890 -2.495094 2.184937 -0.608494 0.332134 3.562515 0.469706 -0.098559 -0.934388 1.569488 -1.264118 3.141595 3.765303 -3.332922 0.462280 1.467524 1.626595 0.633039 1.829115 0.036247 -2.642090 0.133409 -0.564805 1.940341 -1.905052 -0.451299 -0.101862 -0.118807 -5.235435 -0.569205 1.402820 -0.510334 0.142930 0.535889 1.079256 3.752386 1.882261 -1.509124 1.113677 1.805844 0.847487 0.993741 -0.003874 0.021421 0.252988 0.549263 -0.085332 -0.379981 0.625334 -0.263273 -1.988500 0.380487 2.818736 3.295272 -0.386010 -0.865447 0.166028 0.248365 0.252914 -0.308977 2.086086 0.936578 1.352657 1.922041 -2.757723 -0.030609 -5.506240 0.970660 -5.716032 -2.424273 -2.060838 1.535183 1.689453 0.884528 -1.139621 4.129933 -0.430173 0.756059 2.435024 3.492187 -1.869943 -0.335456 -2.116508 -1.488418 0.981711 -1.206475 -0.038267 -0.135488 0.203669 -1.965351 -2.450469 1.030186 -0.082821 -1.855397 -0.944519 -0.859983 2.217528 -2.578585 -1.278028 -3.076477 0.563362 -0.120585 -4.134521 -0.201904 -1.401655 0.720478 0.724509 -0.792038 -2.088942 0.569048 1.445780 -0.772005 -0.930755 -2.081304 2.991600 1.692914 -0.688719 0.381664 0.771987 1.049469 2.331904 1.953093 -1.032211 -0.892546 1.346531 -1.265450 -0.600092 -2.021947 0.035095 1.822962 -1.946946 -0.933773 1.116673 -1.463178 -0.540516 0.761300 -2.112139 1.153971 8.667166 -0.747211 1.659484 1.017299 -2.684649 2.602669 0.105259 -1.019805 1.157260 2.162473 2.346419 -4.248992 -1.641806 1.168966 3.599416 1.174246 -1.955117 -1.050471 0.050353 -0.191076 -0.648232 1.493221 0.174809 -0.364780 -1.193678 -0.426884 1.366360 4.506777 -0.977782 -1.551718 -0.001866 1.956029 -0.759215 -2.755492 0.047641 -2.298271 -0.509992 0.753032 -0.078019 1.575181 2.884130 -5.653167 2.328571 -0.333724 -0.840060 1.534765 -0.223663 -0.714538 -3.701768 1.066877 2.149347 2.469888 -0.138164 0.668909 -0.531465 -3.038319 -0.001896 0.596903 1.599145 -2.212929 2.632807 -0.233947 -1.989402 -1.665641 -0.742215 -1.263506 -1.424249 -1.341054 1.231946 0.923534 -4.077139 2.974297 -0.374838 -0.935145 0.585213 -0.938060 1.853223 -2.910677 -3.072218 1.352111 -0.325746 -1.482383 -0.796016 -1.217115 1.750852 0.205740 -0.536423 -2.075656 -3.678209 2.042304 -0.371703 2.133122 1.796377 0.583748 2.836112 1.105720 -1.374592 -1.819375 -1.815840 1.109193 -0.143831 -1.076522 -1.880667 -1.260614 1.626207 3.894104 -0.432704 -0.492961 -0.628070 2.754087 -2.080735 -0.801425 0.899601 0.158754 -1.023823 0.712219 1.349816 -1.906703 -1.009744 -2.779088 0.631854 -0.327767 -1.790135 1.408517 -2.551398 0.015830 1.880821 -0.890701 -1.110084 1.570143 0.706838 -0.266954 -0.163493 3.188482 2.550650 -1.516846 0.784531 -2.700313 1.607373 -3.542812 -1.902648 -0.772188 0.202016 -0.369632 -0.456895 0.065518 1.362938 0.818837 -0.113957 -0.776401 -0.154049 +PE-benchmarks/weighted-job-scheduling.cpp__void std::iter_swap(Job*, Job*) = -0.019407 0.273966 0.259081 -0.080884 0.309645 0.050318 0.142235 0.149091 -0.215330 -0.410622 -0.115160 -0.338108 -0.570570 0.421248 -0.058553 0.048956 0.723007 0.215387 0.084231 -0.283319 0.175187 -0.420670 0.696175 0.698475 -0.641457 0.165610 0.288206 0.285831 0.133719 0.399262 -0.087983 -0.435110 0.270733 -0.149966 0.310749 -0.408235 -0.038281 -0.122254 -0.198392 -1.032986 -0.091631 0.145920 -0.024162 0.034956 0.046384 0.528158 0.740696 0.371437 -0.224709 0.395735 0.277863 -0.010095 0.201914 0.106846 0.033519 0.038202 0.169561 -0.114359 -0.324604 0.165287 -0.019570 -0.830518 -0.087155 0.426287 0.634452 -0.131590 -0.074745 0.086868 -0.139659 0.082190 0.024442 0.279507 0.302313 0.155657 0.435010 -0.442502 -0.069929 -0.924281 -0.132104 -1.643774 -0.534799 -0.548676 0.532176 0.059785 0.159225 0.000770 0.699167 0.052970 0.266909 0.288059 0.715246 -0.481574 -0.199380 -0.291488 -0.022785 0.300930 -0.338804 -0.003727 0.237918 -0.084069 -0.397568 -0.431695 0.478068 -0.038720 -0.321384 -0.152185 -0.195176 0.443302 -0.760574 -0.267361 -0.834410 -0.205071 0.000868 -0.727546 0.193557 0.039768 0.494139 0.334587 -0.038995 -0.306443 0.112061 0.300162 -0.061317 -0.232256 -0.303906 0.551160 0.163285 -0.072655 0.270851 0.225453 0.207105 0.519094 0.654042 -0.106349 -0.226360 0.258504 -0.305818 -0.044710 -0.306800 -0.137058 0.305200 -0.468044 0.075012 0.135736 -0.336131 -0.197912 0.167250 -0.256946 0.313236 0.956117 -0.023740 0.265358 0.150604 -0.513703 0.295514 -0.194714 -0.212270 0.236731 0.494869 0.342343 -0.388505 -0.294539 0.078352 0.616740 0.264734 -0.515453 -0.230427 -0.153255 0.108237 -0.064700 0.213921 0.160458 0.106265 -0.270812 -0.025613 0.209391 0.809273 -0.304845 -0.367898 0.035107 0.065942 -0.110960 -0.659071 -0.015571 -0.159836 -0.083577 -0.007412 -0.019435 0.100944 0.550745 -1.084996 0.482626 -0.202153 -0.180960 0.289660 0.016558 -0.124802 -0.724071 0.229030 0.426963 0.544939 0.131364 0.095101 -0.052397 -0.546002 -0.061082 0.057321 0.301638 -0.272764 0.429013 -0.017298 -0.391406 -0.375047 -0.237409 0.049400 -0.166388 -0.102770 0.213087 0.329878 -1.151846 0.516973 -0.235574 -0.357308 0.121564 -0.023401 0.324760 -0.585188 -0.628131 0.192746 -0.187097 -0.517663 -0.294242 -0.179253 0.273998 -0.046044 -0.228424 -0.141136 -0.532863 0.486375 -0.042853 0.239033 0.356741 0.146419 0.794759 0.152103 -0.435552 -0.290217 -0.092053 0.102464 -0.473381 -0.092607 -0.095254 -0.246149 0.327311 0.890129 0.046204 0.016698 -0.062036 0.556048 -0.610350 -0.350084 0.399893 0.375271 -0.008415 0.442069 0.419793 -0.488547 -0.288980 -0.422798 -0.048961 0.125003 -0.359580 0.224729 -0.632730 -0.004904 0.423628 -0.110211 -0.271348 0.358439 -0.067909 -0.031077 -0.253068 0.607855 0.878567 -0.600770 0.234916 -0.401148 0.243418 -0.697028 -0.357012 -0.093099 0.246883 -0.067480 0.027981 0.080777 0.162093 0.092842 -0.277211 -0.256381 -0.111101 +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.117094 0.581231 0.485858 -0.192690 0.545529 0.038211 0.192401 0.520560 -0.382016 -0.842113 -0.194185 -0.604105 -1.072640 0.646571 -0.024285 -0.313701 1.145473 0.213408 0.184431 -0.476857 0.095682 -0.427543 0.990495 1.051554 -1.027746 0.370182 0.394275 0.295731 0.110837 0.599827 0.052567 -1.001885 0.290925 0.138648 0.536807 -0.453630 -0.231613 -0.436697 -0.592856 -1.652964 -0.160749 0.455216 -0.355878 0.051244 0.210084 0.997988 1.369510 0.479368 -0.452291 0.644623 0.422194 0.126662 0.229219 0.058299 0.050200 -0.159209 0.120656 -0.154393 -0.498477 0.385097 -0.040369 -1.168563 -0.329335 0.649147 0.824603 -0.243366 -0.262135 -0.069344 -0.181005 0.155110 -0.066705 0.482644 0.797688 0.292421 0.747868 -0.295669 -0.388281 -1.451335 -0.025294 -2.860323 -0.926229 -0.832897 1.201937 0.181325 -0.122234 -0.251245 1.101375 -0.004464 0.475681 0.764326 1.155339 -0.408708 -0.281551 -0.480020 -0.120555 0.501196 -0.380852 0.002548 0.246960 -0.142026 -0.659356 -0.520463 0.539187 -0.313379 -0.511819 -0.124488 -0.276952 0.678585 -1.256196 0.003065 -1.361153 -0.049049 0.373031 -1.100986 -0.091256 0.226764 0.831505 0.577677 -0.193455 -0.151426 0.228922 0.260190 -0.267373 -0.060292 -0.467699 0.890797 0.213166 -0.008606 0.436667 0.457928 0.513825 0.547193 1.010049 -0.123849 -0.277408 0.377129 -0.182060 -0.132209 -0.307195 -0.077989 0.421159 -0.518357 0.354121 0.034983 -0.526807 -0.574068 -0.165125 -0.584666 0.400468 1.515901 -0.173277 0.475423 0.115769 -0.718306 0.313305 -0.262914 -0.479980 0.241610 0.810004 0.704182 -0.197723 -0.311097 0.228931 1.026332 0.374095 -0.812409 0.005890 -0.033509 0.013748 -0.176502 0.535575 0.118882 0.333827 -0.357871 -0.090568 0.420953 1.211282 -0.270519 -0.915129 -0.120269 0.382195 0.188476 -0.504729 0.191056 0.073705 -0.077433 0.389993 -0.116585 0.306934 0.816556 -2.000871 0.725471 -0.163413 -0.269142 0.188183 0.186053 -0.136889 -1.009482 0.301553 0.696368 0.931664 0.378597 0.078420 -0.247048 -0.782270 -0.111947 0.212008 0.451444 -0.483185 0.709644 -0.064120 -0.566947 -0.493302 -0.607465 -0.031240 0.075528 -0.361504 0.249363 0.396106 -2.094346 0.850848 -0.302677 -0.462866 -0.194192 -0.122341 0.540500 -0.816293 -0.997145 0.182800 -0.428421 -1.227948 -0.332783 -0.489565 0.346045 0.031180 -0.085433 -0.188925 -0.888876 1.049895 0.093698 0.576261 0.622945 0.189431 1.501636 0.164284 -0.627303 -0.297666 -0.484350 0.777502 -0.722077 -0.093296 0.155407 -0.503205 0.291774 1.247690 -0.077879 -0.121278 -0.333363 0.753700 -0.849234 -0.442291 0.530902 0.487562 0.086267 0.920215 0.649151 -0.637182 -0.344528 -0.874824 -0.008179 0.051409 -0.469205 0.235181 -0.970657 -0.115973 0.737026 -0.219353 -0.569802 0.461509 -0.254608 -0.172373 -0.361657 0.795549 1.556206 -1.107856 0.614104 -0.638993 0.557411 -1.006683 -0.650658 -0.226627 0.105343 0.028182 -0.118442 -0.193479 0.088951 0.129313 -0.454459 -0.516294 0.200597 +PE-benchmarks/weighted-job-scheduling.cpp__int std::__bit_width(unsigned long) = -0.161019 -0.137479 0.103577 -0.160366 0.227092 -0.015169 0.214806 -0.139515 -0.397532 -0.327043 0.147826 -0.645673 -0.427941 0.540755 -0.118028 0.358916 0.679819 0.170104 -0.092702 -0.262697 0.143547 -0.279107 0.716499 0.726941 -0.391142 0.072395 -0.083898 0.072939 0.064578 0.176997 -0.003015 -0.422384 0.372519 -0.228362 0.186322 -0.200234 -0.134268 0.132519 0.182129 -0.807211 -0.012474 0.337862 0.303169 -0.025785 0.055498 0.564426 0.461144 0.385501 0.092128 0.507293 0.162480 -0.202040 0.319769 0.110314 0.269951 -0.015479 0.225375 -0.282559 -0.371474 0.088101 -0.177142 -0.472655 -0.128350 0.387458 0.586006 -0.124804 -0.191101 0.045712 0.006095 0.171121 0.194442 0.300088 0.225368 0.037965 0.264552 -0.433487 0.038467 -0.697051 -0.121454 -1.423382 -0.473213 -0.056692 0.597183 0.178446 0.185209 -0.190562 0.654421 0.050767 -0.170061 0.057708 0.672685 -0.482834 -0.244030 -0.007126 0.110152 0.042985 -0.293177 0.061504 0.424978 0.024585 -0.480657 -0.124389 0.408912 -0.026321 -0.215267 -0.071991 -0.017447 0.432726 -0.590099 -0.285937 -0.472808 0.033326 0.071638 -0.699027 0.444327 -0.050832 0.084125 0.318633 -0.372462 -0.235501 0.290185 0.041081 -0.159398 -0.178075 -0.508077 0.556211 0.129386 0.146255 0.114522 0.384619 0.125123 0.614641 0.291393 -0.255622 0.019053 0.139206 -0.186864 0.281356 -0.163853 -0.300484 0.258135 -0.465449 0.018857 -0.017271 -0.331675 -0.007184 0.048058 0.098694 0.023104 0.690975 -0.168171 0.514121 0.349580 -0.410221 0.327054 -0.284281 0.080766 0.062564 0.433043 0.181994 -0.318600 -0.375069 0.384413 0.675900 0.302289 -0.551330 -0.106852 0.031610 0.212656 -0.117675 0.255400 0.177626 0.195159 -0.338974 -0.014072 0.106958 0.891623 -0.354692 -0.046363 0.033573 0.006165 0.134208 -0.583347 -0.083186 -0.227112 -0.003378 -0.143640 0.167448 0.085605 0.550332 -0.832637 0.541919 -0.215113 -0.092623 0.566344 0.100078 -0.355661 -0.873490 -0.153826 0.244145 0.510752 0.102742 0.099363 0.094174 -0.542247 -0.018637 -0.086301 0.148171 -0.249861 0.363134 -0.047208 -0.263158 -0.157456 -0.173570 0.044256 -0.211011 -0.093494 0.341575 0.636928 -0.848765 0.373582 0.009338 -0.328877 0.017706 0.102254 0.370642 -0.403568 -0.404158 0.118589 -0.410276 -0.535513 -0.327608 -0.136055 0.053775 -0.199928 -0.110298 -0.142724 -0.323772 0.641145 -0.168243 0.519405 0.261114 -0.097527 0.500935 0.266206 -0.422187 -0.064202 -0.240918 -0.080526 -0.444432 -0.151637 0.151868 -0.140015 0.376451 0.497648 0.128793 -0.128826 -0.003155 0.436946 -0.569497 -0.113018 0.410514 0.198284 -0.106891 0.397294 0.428331 -0.470728 0.018573 -0.340578 -0.226661 -0.215076 -0.232165 0.283981 -0.270117 0.087064 -0.017373 -0.063659 -0.118516 0.190931 0.062359 -0.148813 -0.045858 0.680328 0.681890 -0.329597 0.104876 -0.498946 0.280920 -0.500098 -0.374945 0.041036 0.343321 -0.383927 -0.061082 0.126113 0.258504 0.215985 -0.448144 -0.425795 0.152577 +PE-benchmarks/weighted-job-scheduling.cpp__int std::__countl_zero(unsigned long) = -0.480541 -0.338787 0.299305 -0.473628 0.770944 -0.049166 0.662453 -0.083859 -1.334561 -0.899152 0.173142 -1.741219 -1.235791 1.744945 -0.020219 1.189786 2.378905 0.738681 -0.248466 -0.576547 0.926282 -1.557237 2.010842 2.204782 -1.119878 0.286736 -0.139136 0.441847 -0.110575 0.864800 -0.261910 -1.175646 0.806639 -1.287368 0.673307 -1.012448 -0.448652 0.609732 0.643492 -2.796010 -0.053815 1.226278 0.854293 -0.228222 0.004980 0.996505 1.554884 1.157665 0.023532 1.331393 0.353243 -0.971456 1.031406 0.358957 0.952588 0.692291 0.398429 -0.129564 -1.177342 0.405341 -0.672301 -1.600244 0.091216 1.089908 1.754011 -0.304843 -0.707945 0.379201 -0.077798 0.346948 0.506830 0.933540 0.582451 -0.253045 1.149910 -1.819379 -0.068317 -2.667627 -0.208414 -4.088922 -1.540217 -0.370486 1.595092 0.285244 0.921097 -0.561902 2.118720 -0.499540 -0.327168 0.564287 2.126247 -1.644977 -0.739734 -0.611315 0.004306 0.105648 -0.801430 -0.320638 1.492195 -0.256061 -1.519386 -0.965227 1.547382 0.208333 -0.704531 -0.644263 -0.093654 1.606724 -1.519276 -1.462358 -1.815663 0.090797 -0.152076 -1.928236 1.124160 -0.207636 -0.106721 1.118849 -1.247488 -1.289967 1.012059 0.435768 -0.565144 -0.955258 -0.823051 1.871012 0.229429 0.220686 0.437856 0.975088 0.244901 1.889177 1.402918 -0.733317 0.100828 0.667453 -0.841267 0.660142 -0.696910 -1.151283 0.874789 -1.381394 -0.781003 0.024441 -1.123724 0.219406 0.831305 0.202823 0.160792 2.894188 -0.444099 1.303464 0.867418 -1.341299 1.866652 -0.421955 0.111520 0.229241 1.582707 0.730859 -2.013358 -1.258416 1.082406 2.083818 1.011718 -1.741652 -1.077720 -0.231034 0.786785 0.061078 0.709881 0.482158 0.738973 -1.136137 -0.040236 0.176163 3.195045 -1.464330 -0.641417 0.331108 0.004982 -0.054211 -2.816471 -0.355883 -1.467246 -0.276761 -0.828576 0.178075 0.377707 1.827395 -2.536590 1.770220 -1.209338 -0.587495 1.888412 0.203000 -0.834868 -3.182690 -0.581840 0.850908 1.920945 0.449647 0.114907 0.058989 -1.732405 -0.040699 -0.271657 0.638685 -0.772289 1.451339 -0.779079 -0.959096 -0.501549 -0.410554 -0.300987 -1.050525 -0.073095 0.978358 1.896960 -1.904776 1.269475 0.193516 -0.672913 0.533153 0.630374 1.038519 -1.190818 -1.722232 0.724323 -0.831849 -1.259881 -0.882288 -0.465089 0.468941 -0.163641 -1.167238 -0.423078 -1.597705 1.970871 -0.435755 1.850217 0.871135 -0.327177 1.638215 1.590660 -1.494521 -0.461256 -0.602477 -0.738696 -1.202701 -0.401376 -1.142760 -0.574539 1.366372 1.677435 0.593440 -0.104088 -0.513476 1.785324 -1.905979 -0.398210 1.440360 0.225592 -0.358614 0.868999 1.533741 -1.542209 -0.203694 -1.118122 -0.353587 -0.594063 -0.642683 0.727569 -1.157434 0.037786 0.150170 -0.468679 -0.120055 0.463329 0.497302 -0.326294 -0.399414 2.283611 1.918964 -1.127879 0.089653 -1.394075 0.798865 -1.617107 -0.926798 -0.149818 1.461400 -1.362289 -0.172585 1.063268 0.759074 0.617537 -1.238080 -1.093234 -0.126796 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.292400 2.089897 1.519595 -1.686194 2.106382 2.040060 0.505369 0.478359 -1.347454 -2.684724 -0.753240 -3.111841 -3.867692 2.753094 -0.680860 -0.286385 4.405258 0.248050 0.055274 -0.980069 1.338832 -0.723693 3.927952 4.342772 -4.060181 0.752593 1.670171 1.495663 0.165120 2.360005 0.360327 -4.407802 0.333734 0.235596 2.289216 -1.525632 -0.780392 -1.018843 -0.837171 -6.262799 -0.763758 2.466470 -1.079090 0.045114 0.769257 1.250323 5.291143 2.201276 -1.699856 1.212336 1.944323 1.321139 1.054189 -0.024242 0.183843 -0.376213 0.404786 -0.628444 -0.961956 0.762130 -0.432434 -2.366400 -0.557116 3.408880 3.765686 -0.387938 -1.176761 -0.109627 -0.198422 0.516911 -0.739258 2.524253 2.006655 2.113012 2.452816 -1.754782 -0.690415 -5.858998 1.050789 -7.437741 -3.218804 -2.711652 2.489038 2.549811 0.527334 -1.836371 5.016655 -0.441860 1.167545 3.216744 4.869789 -1.854887 -0.589702 -2.636864 -1.611336 1.337964 -1.454154 0.173353 -0.245770 -0.076265 -2.672546 -2.721161 0.826417 -0.514740 -2.173347 -0.839197 -1.016235 2.656671 -3.398913 -0.702897 -4.169458 0.660572 0.592149 -5.225675 -1.384375 -0.697851 0.604205 1.319341 -1.139424 -2.081568 0.948369 1.425925 -1.156314 -0.852773 -2.287174 3.623305 1.905261 -0.530945 0.805560 1.381340 1.926315 2.742697 2.452091 -0.930889 -0.924516 1.208836 -0.855908 -0.704318 -1.804583 0.220308 1.481327 -2.114448 -0.253151 1.374812 -1.867520 -1.246377 -0.928106 -2.949051 1.459305 9.814299 -1.254311 2.124007 0.884575 -3.435888 2.665694 -0.260374 -1.833985 0.699863 2.624014 3.370112 -3.493729 -1.754036 1.903637 4.531949 1.429312 -2.308531 -0.031512 0.355222 -0.218180 -1.315128 2.194748 0.366037 0.140873 -1.486951 -0.612703 2.173697 5.324615 -1.133986 -3.042444 0.075589 2.794233 0.329680 -1.979788 0.348884 -1.910727 -0.538740 1.760939 -0.246656 1.942886 3.593603 -7.000231 2.893572 0.221927 -1.168215 1.707198 -0.029877 -0.891970 -3.624495 1.379474 3.129186 3.009986 0.375907 0.608310 -1.330233 -3.562121 -0.132484 0.966958 2.005419 -2.532158 3.187509 -0.490084 -2.476994 -2.285155 -1.726443 -1.448030 -1.210665 -2.161346 1.335451 1.481707 -5.785587 4.108196 -0.245332 -1.135853 -0.290265 -1.345582 2.290448 -3.490408 -4.086778 1.345749 -1.281519 -2.995551 -0.474713 -1.759405 1.712196 0.778884 0.065005 -2.248907 -4.167933 3.296578 0.331860 2.944355 2.260032 1.095173 3.966760 1.273986 -1.945001 -1.656955 -2.969206 2.717883 -0.501212 -1.384707 -1.414626 -1.760172 1.772066 4.645994 -0.827911 -1.101104 -1.686734 2.924245 -2.476355 -0.880912 1.331508 0.003142 -1.170365 1.200433 1.923186 -1.918322 -1.259441 -3.714205 0.842924 -0.942457 -2.445292 0.988378 -3.329689 -0.311670 2.767870 -1.422449 -1.850620 1.598947 0.427388 -0.616052 -0.306549 3.410286 3.115930 -2.578358 1.692695 -3.403474 2.238869 -4.421587 -2.861347 -0.566342 -0.487910 -0.222091 -0.966780 -0.457530 1.080981 0.685693 -0.366780 -1.412163 0.331004 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.126551 1.303036 1.062594 -0.759903 1.344718 1.199883 0.437021 0.360868 -0.844358 -1.368589 -0.531861 -1.916661 -2.307720 1.737583 -0.235741 0.096442 2.778556 0.391926 -0.011158 -0.451514 0.721898 -0.799890 2.424131 2.598084 -2.291150 0.590856 0.826061 0.847875 -0.133106 1.847209 -0.404870 -2.429300 0.394546 -0.080476 1.331634 -1.034748 -0.505103 -0.642669 -0.489291 -3.889036 -0.387073 1.622344 -0.240220 -0.088011 0.397692 0.777944 3.261763 1.330329 -0.738367 0.710845 0.825951 0.286067 0.858832 0.139362 0.466011 0.191375 0.712111 -0.251109 -0.982377 0.458827 -0.330045 -1.850491 -0.375239 1.869681 2.250073 -0.203208 -0.679415 -0.055202 -0.270658 0.223055 -0.390599 1.388707 1.166015 1.124850 1.415621 -0.960766 -0.063247 -2.903717 0.317722 -4.356728 -2.045097 -1.728216 1.502723 1.405068 0.623757 -1.175672 2.956563 -0.400637 0.806209 1.228632 3.045897 -1.558719 -0.509767 -1.522654 -0.656626 0.738639 -0.919469 -0.140058 0.342940 -0.499299 -1.690586 -1.629415 1.058567 -0.101035 -1.266451 -0.197509 -0.574249 1.721047 -2.037110 -0.805174 -2.728049 -0.094528 0.095863 -3.047526 -0.333004 -0.094115 0.041478 1.056552 -0.695055 -1.566116 0.716390 1.013963 -0.661619 -0.808056 -1.456315 2.474165 0.911296 -0.396208 0.711520 0.799488 1.094116 1.742543 1.777424 -0.504438 -0.476938 0.741822 -0.772645 -0.325964 -0.985198 -0.197060 0.584103 -1.472886 -0.433929 0.831275 -1.233761 -0.121637 -0.621699 -1.297153 0.927392 5.382596 -0.759166 1.241093 0.372817 -2.190017 2.060468 -0.156654 -1.164574 0.283406 1.637353 1.966925 -2.341456 -1.111805 1.044302 2.702381 0.964340 -1.542128 -0.129661 -0.169996 0.046123 -0.627141 1.270808 0.361668 0.379808 -1.077351 -0.329929 1.053484 3.537599 -1.072708 -2.217631 0.257756 0.870487 0.127425 -1.756107 0.047435 -1.190551 -0.405404 0.351122 -0.229217 0.972861 2.217368 -3.880041 1.964812 -0.284673 -1.184968 1.764779 -0.257764 -0.482838 -2.156000 0.668798 1.955765 2.029387 0.406621 -0.001978 -0.835843 -2.138960 -0.169570 0.374716 1.203847 -1.371111 1.899995 -0.377167 -1.638002 -1.349417 -1.364725 -0.552570 -0.993360 -1.227151 0.795475 1.156549 -3.409293 2.467094 0.008994 -0.759579 0.125825 -0.476630 0.981777 -2.033428 -2.555166 0.748876 -0.744142 -1.730124 -0.416464 -0.988005 0.956915 0.440642 -0.401703 -1.237134 -2.530535 2.024373 0.158976 1.732878 1.386256 0.683241 2.312798 1.689342 -1.457920 -0.877911 -1.508852 1.078245 -0.709080 -0.713105 -1.017318 -1.182255 1.276866 2.927157 -0.205818 -0.278362 -1.317776 1.864336 -1.585612 -0.655597 1.182743 -0.215869 -0.637952 0.565440 1.452751 -1.194184 -0.930898 -2.003018 0.122207 -0.492374 -1.444916 0.506032 -2.175513 -0.264073 1.679104 -0.985934 -1.121149 0.880483 0.104424 -0.469300 -0.410925 2.235429 1.804261 -1.739565 1.135407 -1.860573 1.332681 -2.655121 -1.487641 -0.253683 0.090148 -0.468632 -0.504042 0.325484 0.545375 0.268937 -0.539471 -0.833077 -0.202000 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::move_backward(Job*, Job*, Job*) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_linear_insert >(Job*, __gnu_cxx::__ops::_Val_comp_iter) = 0.002802 1.154829 1.219023 -0.908718 1.143685 0.785019 0.299559 0.486672 -0.851355 -1.407831 -0.454168 -1.427591 -2.022047 1.459921 -0.248815 -0.300623 2.499214 0.319244 0.070653 -0.826590 0.676512 -0.816366 2.177481 2.525829 -2.388838 0.612028 0.999356 0.964424 0.439246 1.413648 -0.186200 -1.896279 0.210963 0.026089 1.313404 -1.149079 -0.463775 -0.653096 -0.670874 -3.705167 -0.380117 0.965616 -0.684281 0.095525 0.486689 1.506711 2.964544 1.177058 -1.062608 0.924714 1.129740 0.425026 0.617487 0.001752 0.117520 -0.057972 0.689614 0.069802 -0.578360 0.610543 -0.097641 -1.854584 -0.157788 1.784329 2.074522 -0.338030 -0.639261 -0.102463 0.065078 0.152574 -0.265919 1.322213 1.197383 0.977675 1.473006 -1.301963 -0.166780 -3.477705 0.430573 -4.786299 -1.888754 -1.638418 1.735935 0.722199 0.198716 -0.834549 2.709151 -0.199935 0.821195 1.576055 2.511968 -1.152797 -0.351101 -1.293200 -0.808054 0.852992 -0.770108 0.023485 0.115223 -0.163259 -1.409517 -1.446779 0.971324 -0.344872 -1.277206 -0.227566 -0.585750 1.503970 -2.111404 -0.409288 -2.474396 0.137704 0.326367 -2.715540 -0.264814 -0.372578 1.156936 0.777436 -0.481983 -1.007394 0.404177 0.863954 -0.626520 -0.374298 -1.410642 2.181519 0.980995 -0.306251 0.551073 0.646813 1.009013 1.301117 1.752603 -0.533918 -0.608119 0.859705 -0.723610 -0.433853 -1.080095 0.035638 1.111205 -1.164450 -0.120938 0.514814 -1.068755 -0.582797 0.147283 -1.362559 0.825433 5.184400 -0.508676 1.126533 0.414083 -1.780824 1.424268 -0.102205 -0.981685 0.686470 1.572250 1.705227 -2.168623 -0.918108 0.687012 2.440266 0.802271 -1.667794 -0.246572 0.003904 -0.231135 -0.472980 1.177843 0.097914 0.186755 -0.803199 -0.303878 0.978772 3.052671 -0.637036 -1.889500 -0.149057 0.950805 -0.078037 -1.506777 0.250349 -0.646699 -0.253475 0.643420 -0.183013 1.049661 1.913319 -4.335709 1.629557 -0.268178 -0.811916 1.011092 -0.000209 -0.398939 -2.177158 0.762799 1.569229 1.874920 0.395123 0.089436 -0.506060 -1.949515 -0.127470 0.464621 1.032962 -1.396878 1.743800 -0.030982 -1.395271 -1.118251 -1.124069 -0.492372 -0.416151 -1.042886 0.703544 0.405701 -3.779273 2.059695 -0.330206 -0.761835 0.001492 -0.650929 1.077133 -1.926640 -2.167250 0.638661 -0.466080 -1.728097 -0.679535 -1.011668 1.004645 0.157181 -0.147644 -1.226882 -2.469454 1.805582 -0.129931 1.426744 1.363754 0.454746 2.547284 0.837933 -1.069591 -1.065418 -1.199606 1.366239 -0.577566 -0.584566 -0.573009 -1.089683 0.877840 2.732460 -0.379694 -0.167561 -0.760274 1.756711 -1.601168 -0.775630 0.786032 0.462883 -0.401707 1.074597 1.110854 -1.245609 -0.721839 -1.953362 -0.007488 -0.126992 -1.163653 0.802485 -1.905469 -0.127238 1.523796 -0.614481 -1.046016 1.053669 -0.103462 -0.320669 -0.348315 2.003257 2.652851 -1.702657 0.994408 -1.699770 1.319111 -2.374444 -1.381374 -0.462620 -0.029186 -0.119387 -0.371118 -0.134757 0.615103 0.433775 -0.513953 -0.721087 0.197602 +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.045188 0.450404 0.354599 -0.081000 0.415329 0.334159 0.129921 0.153386 -0.191916 -0.333870 -0.163066 -0.554522 -0.661460 0.420462 -0.049138 -0.034942 0.664699 0.109283 0.044005 -0.087544 -0.034656 -0.083661 0.644971 0.619131 -0.547697 0.240706 0.091023 0.148696 -0.177740 0.644014 -0.227473 -0.747336 0.164235 0.175096 0.249400 -0.170938 -0.168385 -0.280408 -0.249631 -0.973840 -0.089547 0.516667 -0.041191 -0.025975 0.153326 0.188909 0.917897 0.299554 -0.045279 0.239314 0.094831 0.093182 0.267054 0.068665 0.200640 0.012530 0.338589 -0.311144 -0.384419 0.130465 -0.072486 -0.567080 -0.305993 0.408020 0.511382 -0.034333 -0.176285 -0.148888 -0.212724 0.046958 -0.110054 0.315067 0.361412 0.369073 0.281473 0.147155 0.062841 -0.300119 -0.004970 -0.978621 -0.562201 -0.478799 0.491921 0.562012 0.113788 -0.324337 0.707044 -0.080080 0.271620 0.111470 0.804179 -0.424620 -0.165473 -0.247596 -0.049828 0.198653 -0.219228 -0.030919 -0.037389 -0.177369 -0.430873 -0.347625 0.353669 -0.084694 -0.307050 0.167610 -0.145536 0.377835 -0.641819 -0.120206 -0.747405 -0.128418 0.081908 -0.701251 -0.153381 0.196789 -0.031109 0.360421 -0.154771 -0.327118 0.226112 0.191679 -0.161820 -0.152186 -0.520261 0.601095 0.145317 -0.110335 0.261574 0.215021 0.343443 0.433212 0.380668 -0.073063 -0.098624 0.149001 -0.073480 -0.061181 -0.104926 -0.037444 -0.165518 -0.369270 0.042193 0.183002 -0.325532 0.016536 -0.639629 -0.261381 0.232160 0.925793 -0.217242 0.291006 0.022586 -0.578722 0.409795 -0.138181 -0.370610 -0.029930 0.365020 0.523548 -0.226803 -0.225225 0.245621 0.653417 0.239392 -0.302523 0.213021 -0.052164 0.044136 -0.171744 0.401778 0.121706 0.202043 -0.297414 -0.079445 0.218480 0.895246 -0.215421 -0.689739 0.097493 0.021257 0.184511 -0.184142 0.045705 -0.043924 -0.099921 0.095228 -0.078666 0.151652 0.528379 -0.896869 0.521758 -0.040962 -0.405367 0.503564 -0.114683 -0.093109 -0.184061 0.147492 0.523808 0.534756 0.206613 -0.030624 -0.278491 -0.491432 -0.092253 0.084046 0.281042 -0.315451 0.447935 -0.001131 -0.505217 -0.334006 -0.560839 0.013915 -0.173143 -0.434253 0.166315 0.389071 -1.021363 0.610229 0.059301 -0.233074 -0.040065 -0.090764 0.160439 -0.468096 -0.618592 0.095462 -0.327105 -0.584983 -0.024323 -0.272796 0.123284 0.115402 -0.027830 -0.249109 -0.453430 0.571740 0.174225 0.363365 0.372300 0.204078 0.528784 0.551078 -0.430750 -0.025317 -0.380463 0.417057 -0.372263 -0.081562 0.107677 -0.378494 0.283175 0.769477 0.000978 -0.078016 -0.450639 0.409192 -0.274233 -0.168152 0.376244 -0.140041 -0.089840 0.191302 0.423875 -0.214991 -0.249362 -0.464074 -0.027673 -0.129291 -0.351361 0.066598 -0.588831 -0.108036 0.501886 -0.286752 -0.443228 0.196737 -0.138481 -0.223633 -0.156024 0.544146 0.345232 -0.475297 0.540456 -0.393373 0.322073 -0.630689 -0.328067 -0.037119 -0.047154 -0.163899 -0.152373 0.003871 0.037892 0.006323 -0.157507 -0.243226 -0.036999 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a(Job*, Job*, Job*) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__miter_base(Job*) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_wrap(Job* const&, Job*) = -0.021026 0.229423 0.143580 0.026343 0.253999 0.036877 0.139132 0.064413 -0.154146 -0.272016 -0.112143 -0.274298 -0.407604 0.336218 0.019496 0.196591 0.560619 0.190063 0.070254 -0.169906 0.142008 -0.467798 0.541630 0.524271 -0.415006 0.168068 0.206609 0.153091 0.000000 0.375869 -0.202960 -0.296722 0.266132 -0.263466 0.205522 -0.332598 -0.065749 -0.055440 -0.037340 -0.794364 -0.067845 0.116022 0.104225 0.001183 -0.015652 0.331609 0.580898 0.279575 -0.089073 0.333787 0.110393 -0.147710 0.229184 0.122296 0.125171 0.177097 0.174500 -0.088139 -0.308130 0.126289 -0.050886 -0.700611 -0.047218 0.275307 0.464100 -0.113898 -0.081196 0.146598 -0.179552 0.029080 0.001329 0.224828 0.179276 0.067055 0.305662 -0.443972 0.017777 -0.598917 -0.184541 -1.204490 -0.433937 -0.401424 0.301305 0.036218 0.280059 0.048464 0.545242 -0.012266 0.189446 0.047505 0.576857 -0.522332 -0.165666 -0.173945 0.074505 0.154400 -0.250828 -0.063970 0.283188 -0.181758 -0.323222 -0.372473 0.528961 0.044623 -0.242398 -0.154769 -0.136957 0.344144 -0.579007 -0.369070 -0.675838 -0.301042 -0.132315 -0.526052 0.336874 0.118510 0.261122 0.317762 -0.060845 -0.407062 0.145190 0.276923 -0.023420 -0.327765 -0.186244 0.443632 0.082450 -0.064079 0.258289 0.164323 0.142063 0.511622 0.577101 -0.060364 -0.144369 0.191016 -0.271159 0.012000 -0.171323 -0.210630 0.132581 -0.436577 -0.040820 0.131950 -0.272899 0.025669 0.207815 -0.117615 0.206952 0.590272 -0.037864 0.192442 0.099418 -0.445512 0.331389 -0.204195 -0.180870 0.138591 0.401055 0.277048 -0.394949 -0.242700 0.080251 0.479155 0.215089 -0.408361 -0.292924 -0.187983 0.158474 0.013375 0.150675 0.143282 0.165406 -0.257663 -0.001529 0.077637 0.747994 -0.362693 -0.191731 0.108883 -0.133918 -0.114938 -0.728828 -0.074654 -0.273697 -0.107701 -0.195164 -0.026569 -0.005693 0.422056 -0.680916 0.407936 -0.329729 -0.256088 0.357264 -0.006861 -0.087510 -0.621210 0.114086 0.338393 0.435591 0.094532 0.089955 -0.078246 -0.424235 -0.060009 -0.024029 0.216105 -0.200758 0.355629 -0.064471 -0.363999 -0.262036 -0.133086 0.098844 -0.261911 -0.005939 0.175616 0.391982 -0.770444 0.388855 -0.119204 -0.278643 0.214109 0.102103 0.217649 -0.397861 -0.495405 0.182544 -0.159628 -0.289342 -0.184493 -0.124864 0.180174 -0.041944 -0.360903 -0.059231 -0.391131 0.341919 -0.019727 0.185225 0.279645 0.120691 0.554125 0.240180 -0.430143 -0.184782 0.006947 -0.151980 -0.455270 -0.027591 -0.206511 -0.208472 0.328361 0.701850 0.148089 0.089489 -0.058120 0.427903 -0.514781 -0.231077 0.390332 0.275691 -0.035687 0.246791 0.374775 -0.342687 -0.236085 -0.257465 -0.058228 0.069695 -0.262429 0.140051 -0.517620 -0.054271 0.319252 -0.145268 -0.161875 0.260374 -0.043619 -0.009149 -0.256590 0.489410 0.571330 -0.466596 0.121280 -0.256957 0.137005 -0.515404 -0.217183 -0.051278 0.398899 -0.151924 -0.008349 0.223495 0.104053 0.045889 -0.277740 -0.173822 -0.228759 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a1(Job*, Job*, Job*) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_base(Job*) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a2(Job*, Job*, Job*) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward::__copy_move_b(Job*, Job*, Job*) = -0.764512 -0.138784 -0.165633 -1.663793 1.492798 1.180988 0.638658 -0.919964 -1.542606 -1.098009 0.397744 -2.982215 -1.783715 1.842072 -0.661659 1.516075 3.158839 -0.029311 -0.480221 -1.020704 1.156347 0.215935 3.435881 3.538160 -2.365733 0.246619 0.332591 0.859258 0.166342 -0.081707 0.301680 -2.312100 0.766264 -1.306879 0.634883 -0.578590 -0.648991 0.093345 1.652559 -3.856937 -0.239558 0.916874 0.090908 0.051988 0.172860 0.996357 2.663819 1.854410 -0.452675 1.613554 1.694418 0.266227 1.074847 0.159576 0.256836 -0.041582 0.221975 -0.640299 -0.480820 -0.286010 -0.507809 -0.343467 -0.048404 2.326744 2.664851 -0.257705 -1.354439 0.707735 0.873311 0.407764 0.362908 2.048204 0.459731 0.994416 1.471853 -2.536157 -0.125328 -4.402136 0.415431 -4.653056 -2.308066 -0.479639 1.628578 0.844846 1.217446 -0.468448 3.674496 -0.281405 -0.352657 1.722294 2.758724 -1.945997 -0.607121 -0.811285 -0.699051 0.287102 -0.890954 0.611344 0.737967 0.794484 -2.172674 -1.225884 0.760302 -0.107018 -1.428148 -1.400543 0.079093 1.318345 -1.627332 -1.269362 -1.936925 1.497314 0.164542 -3.774991 -0.442092 -0.882290 0.507626 0.552084 -1.511777 -1.941786 0.701592 0.341571 -1.002978 -0.790177 -1.061754 1.816359 2.004338 0.330363 0.447245 1.448041 1.070272 3.599374 0.813801 -1.309072 -0.355429 0.700886 -0.475648 0.624800 -1.094615 -0.422705 0.968062 -2.020864 0.674518 1.077602 -1.361747 -0.597314 0.774514 -0.733513 0.102087 6.667395 -0.832930 2.480611 1.942509 -2.030635 1.279553 -1.290010 -0.087275 0.574443 1.626216 1.491715 -2.745015 -1.718518 1.957522 3.333829 1.208564 -2.371214 -0.222593 0.997682 0.490509 -0.892336 1.126287 0.462403 0.571296 -1.132063 -0.130323 1.666382 4.366830 -1.007693 -0.484164 0.288550 2.104753 0.381705 -1.891587 -0.483764 -2.351155 -0.324412 1.319980 0.982573 1.118141 2.678698 -4.205178 1.762437 0.000953 -0.037860 1.875136 0.998284 -1.744486 -2.931578 -0.108563 1.336275 1.950399 -0.413831 0.848004 -0.093229 -2.472032 0.063192 0.555195 0.710334 -1.742899 2.176011 -0.183988 -1.380670 -0.664510 -0.137923 -0.901823 -0.842095 -0.842191 1.667371 1.331984 -3.642902 2.169979 0.251169 -1.363746 0.229116 -1.233446 2.585200 -2.077567 -1.971406 1.388970 -1.238106 -1.177257 -0.370542 -0.660111 0.765372 0.298984 0.973695 -1.977577 -2.147875 2.575673 -0.066597 2.707263 1.488487 -0.269166 1.714923 -1.124681 -1.443633 -1.043784 -2.090259 0.606977 0.202006 -1.524450 -0.753909 -0.909226 1.635244 2.462619 -0.370324 -1.196171 -0.386714 1.776959 -2.717761 0.084349 0.924259 1.039247 -1.536304 0.987465 1.353463 -1.690559 0.236625 -2.054661 0.127793 -1.372321 -1.515699 1.456864 -1.221373 0.416945 0.677721 -0.814672 -0.137191 1.142146 0.696560 -0.022021 0.335059 2.682592 2.292056 -0.638993 -0.127170 -2.877075 1.406830 -2.731367 -2.367901 0.394018 -0.000190 -1.455610 -0.759373 -0.075274 1.781994 0.757090 -1.005019 -1.664231 0.827865 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__copy_move::__assign_one(Job*, Job*) = 0.015326 0.305589 0.272096 -0.092326 0.331589 0.019234 0.142761 0.188865 -0.244985 -0.430890 -0.126855 -0.350562 -0.563458 0.426435 -0.018425 0.018889 0.731085 0.202839 0.089060 -0.281305 0.142341 -0.439801 0.658302 0.678857 -0.604381 0.211934 0.268261 0.223925 0.075098 0.436476 -0.116746 -0.479339 0.239550 -0.121858 0.309757 -0.387748 -0.101577 -0.149497 -0.207559 -1.037367 -0.079155 0.182633 -0.037371 0.018170 0.058461 0.541879 0.782364 0.335961 -0.213088 0.409310 0.240512 -0.021109 0.198812 0.093261 0.093706 0.073144 0.191343 -0.087957 -0.331041 0.199563 -0.040564 -0.793656 -0.100875 0.398610 0.569804 -0.141817 -0.121563 0.060145 -0.140146 0.071021 0.004186 0.282828 0.331049 0.131980 0.418898 -0.422031 -0.085424 -0.904041 -0.108471 -1.689015 -0.553428 -0.510393 0.570308 0.051468 0.125568 -0.020529 0.692101 -0.005777 0.268045 0.281363 0.714284 -0.445037 -0.191713 -0.263788 -0.031155 0.264737 -0.276282 -0.043770 0.245538 -0.121126 -0.404524 -0.398683 0.503766 -0.063812 -0.315675 -0.123262 -0.167341 0.438884 -0.772032 -0.228976 -0.828908 -0.170922 0.034686 -0.684383 0.187852 0.082373 0.474705 0.348580 -0.098923 -0.302042 0.152144 0.273962 -0.111719 -0.198710 -0.293969 0.559031 0.126124 -0.044367 0.273719 0.216880 0.233185 0.480991 0.669861 -0.107787 -0.180215 0.250388 -0.250450 -0.051138 -0.243877 -0.154339 0.250033 -0.437509 0.090300 0.092064 -0.341066 -0.180997 0.132947 -0.256328 0.268325 0.916863 -0.075736 0.280062 0.108616 -0.504354 0.292208 -0.182646 -0.244560 0.185354 0.509935 0.374932 -0.337508 -0.268256 0.110025 0.622933 0.263416 -0.518705 -0.210223 -0.138783 0.076952 -0.018174 0.247992 0.113014 0.161512 -0.275518 -0.041947 0.169629 0.856255 -0.282065 -0.409182 0.016709 0.049499 -0.057187 -0.620617 0.013041 -0.150413 -0.069883 -0.005543 -0.057867 0.121975 0.535698 -1.141286 0.494336 -0.257376 -0.231672 0.281283 0.047856 -0.098314 -0.743689 0.164834 0.424578 0.588049 0.158672 0.082967 -0.090150 -0.519503 -0.072198 0.045734 0.286279 -0.291859 0.436306 -0.025973 -0.418220 -0.319013 -0.261431 0.048989 -0.129063 -0.115680 0.192305 0.327795 -1.182680 0.514678 -0.183265 -0.308665 0.087168 0.016676 0.304516 -0.522908 -0.617571 0.171293 -0.197696 -0.540597 -0.244854 -0.224543 0.253633 -0.046840 -0.224393 -0.117850 -0.538565 0.520308 -0.020484 0.294226 0.369573 0.123866 0.817885 0.178203 -0.427901 -0.240787 -0.116856 0.140614 -0.498093 -0.052327 -0.062531 -0.284441 0.300337 0.837486 0.060530 0.022046 -0.105316 0.532859 -0.583280 -0.291320 0.398846 0.328162 -0.004101 0.455158 0.433902 -0.446722 -0.264062 -0.439627 -0.054276 0.078268 -0.308269 0.195666 -0.610439 -0.046158 0.417243 -0.134677 -0.284770 0.324948 -0.099119 -0.054215 -0.252291 0.575566 0.885884 -0.617744 0.265698 -0.368881 0.259695 -0.651413 -0.343027 -0.118131 0.266763 -0.093244 -0.018971 0.054975 0.130681 0.074351 -0.278999 -0.251801 -0.068157 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(Job&, Job*) = 0.116921 1.245137 1.008672 -0.451485 1.498612 1.216627 0.496153 0.526061 -0.883764 -1.308289 -0.147634 -2.065247 -2.448602 1.565968 -0.086190 -0.245575 2.275572 -0.026141 0.040993 -0.474886 0.113769 0.069477 2.304936 2.288491 -1.966529 0.834160 0.380215 0.264730 -0.385148 1.421999 -0.297228 -2.635067 0.620944 0.358839 0.578062 -0.248416 -0.842610 -1.146534 -0.492003 -3.212101 -0.378399 1.593088 -1.092432 -0.035030 0.543204 1.281504 3.163832 1.057631 -0.496585 1.229542 0.586368 0.069469 0.702316 0.063607 0.567268 -0.475158 0.595964 -0.275476 -1.063605 0.418688 -0.337596 -1.572385 -1.152119 1.465282 1.692861 -0.287743 -0.954929 -0.321955 -0.426293 0.240492 -0.366519 1.351993 1.766132 1.140267 1.440976 0.299669 -0.514177 -1.954943 0.083579 -4.035199 -2.077626 -1.117114 2.221321 1.122016 0.110740 -1.260029 2.559156 -0.226449 0.419808 1.274716 2.807804 -1.178017 -0.518568 -0.692571 -0.349798 0.563583 -0.663118 0.332355 0.092382 -0.607963 -1.695535 -1.107945 0.797028 -0.589898 -1.110857 0.036455 -0.398950 1.355214 -2.077183 -0.011776 -2.371818 0.143469 0.720889 -2.625538 -1.247329 0.714344 0.688880 1.259833 -0.933258 -0.719553 0.837557 0.243819 -0.743357 -0.432543 -0.755575 1.973117 0.860556 0.215515 0.829409 1.025378 1.450614 1.597642 1.507223 -0.267865 -0.172761 0.286672 0.149084 0.253313 -0.148580 0.055820 -0.170341 -0.992565 0.670939 0.511756 -1.094628 -0.553118 -1.455981 -0.912627 0.303823 3.919183 -0.762168 1.463830 0.405981 -1.820147 0.986272 -0.767816 -1.132999 0.072100 1.356857 1.866935 -0.868776 -0.682041 1.341081 2.532608 0.799596 -1.896064 0.931150 0.454023 0.129912 -0.966867 1.603543 0.286693 1.142754 -0.914087 -0.250022 1.259141 3.133114 -0.925924 -2.836532 0.151791 0.657241 1.187434 -0.471239 0.293399 0.137799 -0.262626 1.279661 -0.126220 0.767028 1.838221 -3.683599 1.576171 0.014165 -1.097726 1.335248 0.467988 -0.767503 -0.728582 0.321007 1.608042 1.726389 1.087596 -0.195818 -0.904662 -1.770329 -0.226277 0.600619 0.619501 -1.142953 1.800979 -0.155079 -1.382668 -0.985373 -1.825413 -0.192678 -0.139002 -1.457407 0.783793 0.731465 -4.150085 2.002678 0.307474 -0.907910 -0.706513 -0.606160 1.213189 -1.444049 -2.260050 0.497865 -1.496582 -2.558731 -0.200597 -1.097124 0.192390 0.865994 0.470586 -0.994877 -1.910680 2.534152 0.551341 1.867722 1.365396 0.431506 2.506466 0.831433 -1.552207 -0.347615 -1.818607 2.472511 -0.859191 -0.642642 0.109381 -1.280467 0.803783 2.170170 -0.264039 -0.627278 -1.838597 1.261739 -1.581893 -0.351968 1.124881 0.553024 -0.450444 1.199158 1.403023 -0.654522 -0.250867 -1.786004 -0.262159 -0.981923 -1.145954 0.342017 -1.590211 -0.301501 1.426653 -0.839982 -1.198593 0.583588 -0.490590 -0.564657 -0.392366 1.626523 2.425688 -2.103586 1.437407 -1.685553 1.559827 -2.082594 -1.737608 0.184314 -0.466283 -0.460353 -0.895921 -0.334992 0.193707 0.310499 -1.153102 -1.186665 0.703818 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.007533 0.612027 0.484476 -0.255340 0.589970 0.512892 0.164417 -0.041031 -0.253855 -0.326369 -0.220214 -0.573810 -0.693807 0.596131 -0.076679 0.141168 0.962255 0.109836 -0.008862 -0.217546 0.278220 -0.316833 0.932002 0.900266 -0.836295 0.291618 0.490524 0.258143 0.015136 0.762733 -0.512544 -0.699334 0.231195 -0.196005 0.324918 -0.405398 -0.191100 -0.371432 -0.009142 -1.327110 -0.100037 0.180548 -0.196613 -0.042767 0.055153 0.338059 1.250852 0.462681 -0.209058 0.257785 0.306402 0.085952 0.225293 0.101027 0.275118 0.238959 0.611781 0.060042 -0.319845 0.086477 -0.081153 -0.675112 -0.133798 0.656708 0.763091 -0.042282 -0.201706 0.111645 -0.140287 -0.024345 -0.169343 0.451031 0.335990 0.499361 0.440980 -0.584677 0.156693 -1.003336 -0.099403 -1.481642 -0.720552 -0.640394 0.277849 0.076413 0.416898 -0.102165 0.997064 -0.084404 0.350763 0.151324 1.093752 -0.795538 -0.169239 -0.377077 -0.206637 0.192835 -0.296042 0.029089 0.110762 -0.354618 -0.577523 -0.703521 0.634240 0.075962 -0.462537 -0.061640 -0.156265 0.541859 -0.761810 -0.396982 -0.921090 -0.275602 -0.183196 -1.046711 -0.049495 0.022419 0.438754 0.319810 -0.166247 -0.836505 0.219318 0.572792 -0.211106 -0.481481 -0.270172 0.784548 0.429866 -0.097145 0.287894 0.087033 0.437228 0.809958 0.808454 -0.162351 -0.171235 0.158617 -0.344233 -0.127247 -0.288190 -0.083042 0.044540 -0.551125 -0.021497 0.492912 -0.427580 0.100052 0.184968 -0.375350 0.339968 1.867765 -0.256692 0.411127 0.068754 -0.896925 0.491794 -0.212526 -0.504081 0.113661 0.533528 0.700256 -0.989071 -0.406075 0.335715 0.895623 0.349421 -0.728086 -0.129396 -0.191078 -0.048520 -0.140929 0.355552 0.096721 0.144541 -0.415742 -0.145916 0.341073 1.415670 -0.498078 -0.892492 0.190336 -0.040720 -0.031361 -0.748812 -0.066374 -0.336593 -0.082723 0.044957 -0.123534 0.318181 0.772313 -1.510571 0.671607 -0.308658 -0.648813 0.732937 -0.019367 -0.174613 -0.464826 0.285738 0.747902 0.691086 0.176708 -0.002461 -0.285431 -0.724058 -0.111071 0.079634 0.368657 -0.477226 0.615223 0.119689 -0.789918 -0.496015 -0.421255 0.055204 -0.375280 -0.350100 0.274773 0.142841 -1.563451 0.910480 0.047324 -0.270598 0.205009 -0.210494 0.340367 -0.687562 -0.898089 0.305229 -0.197455 -0.328303 -0.096062 -0.288561 0.352789 0.155883 -0.007925 -0.520874 -0.885122 0.516802 0.042601 0.485722 0.507826 0.349667 0.821778 0.261337 -0.493047 -0.438213 -0.285487 0.314293 -0.237346 -0.283812 -0.330631 -0.471093 0.531478 1.089299 -0.052361 0.036718 -0.449071 0.599198 -0.771620 -0.190555 0.458533 0.361148 -0.370808 0.118285 0.524345 -0.336357 -0.385278 -0.502463 -0.200204 -0.164795 -0.555902 0.191529 -0.721981 -0.082159 0.651281 -0.320161 -0.385092 0.379886 -0.129688 -0.034842 -0.170501 0.664142 0.915989 -0.713932 0.299927 -0.569574 0.441459 -0.954045 -0.594072 0.079808 0.049778 -0.234696 -0.200591 0.121619 0.254418 0.004062 -0.189847 -0.136126 -0.212207 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(bool (*)(Job, Job)) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/finite-automata-algorithm.cpp__getNextState(char*, int, int, int) = -3.052347 -3.405231 -2.307814 -4.110613 1.958818 4.139254 1.524537 -4.528649 -5.454039 -1.848518 2.596285 -6.891760 -2.425278 6.103548 -2.222155 5.656667 7.125888 0.495575 -2.999898 -1.992412 5.261696 -0.066310 8.107778 8.754996 -4.709054 -0.368497 -0.038522 2.050658 1.972640 -0.553059 2.987941 -3.782614 2.250702 -5.766133 0.138010 -2.703276 -1.433695 3.466907 5.943780 -8.680949 -0.349931 2.688408 1.343598 -0.111470 0.057365 0.941121 3.496777 4.798821 0.124938 4.976721 3.663825 0.309506 2.677776 0.202755 1.572154 0.743173 -0.285255 -1.439984 -0.185923 -1.240926 -1.861648 0.008919 1.006219 5.988894 6.909164 -0.443728 -3.028717 2.330204 1.879288 1.837485 2.376953 4.874631 -1.378358 1.056409 3.180701 -7.988151 0.152780 -9.764998 1.570438 -9.281577 -3.562947 1.623989 3.601153 2.611592 3.777508 -0.205139 8.675194 -1.552428 -4.173074 6.020675 6.101269 -4.552534 -1.137280 -1.010935 -2.309953 -0.142152 -2.616792 1.397215 1.748329 3.270835 -5.082147 -3.014367 0.362238 1.181176 -3.218233 -4.277102 0.027487 4.303056 -4.892803 -4.286354 -1.300300 4.846558 -1.051572 -8.986096 -2.630818 -4.731678 0.416227 0.717008 -4.859930 -4.905049 2.621451 0.950790 -1.165881 -2.817653 -0.247708 2.790349 3.915717 1.736356 -1.096454 3.509554 0.910078 9.506454 0.790130 -3.530595 0.841512 1.698792 -0.555418 3.363619 -2.567449 -1.862296 2.132567 -5.323456 -0.058515 2.801952 -3.016805 -1.667102 3.155341 -0.117514 -1.139846 18.491806 -1.378761 6.894085 6.582544 -4.644076 1.506170 -2.549927 2.113118 2.406955 3.495191 2.242355 -8.123419 -4.805501 5.393529 8.428670 3.093173 -5.387112 -1.636554 2.455380 1.401223 -1.101780 2.601175 0.520575 0.415096 -3.298530 -0.558070 3.120243 10.329731 -3.402642 1.922744 0.863653 4.258439 -1.104752 -5.670288 -1.288813 -6.493883 -0.020925 2.653815 2.044028 2.563797 6.382940 -7.248287 5.111025 -0.979539 1.193870 4.053074 2.994592 -4.994510 -7.497827 -2.427348 1.690832 4.564998 -2.002232 1.586802 1.799692 -7.024527 0.453340 1.245193 0.853217 -4.168837 5.712144 -0.015855 -2.022499 -1.553810 3.005378 -2.015108 -3.062725 -0.956030 4.927697 2.048714 -4.969086 4.042973 1.190046 -2.768018 1.020490 -0.679930 6.501102 -4.663470 -4.805585 4.140712 -2.127640 -2.650482 -1.377273 -1.433313 2.514020 2.184794 1.140272 -4.995051 -4.505672 5.482602 -2.103448 7.290475 2.930530 -2.031692 3.333729 -4.130252 -2.747148 -3.356694 -4.373100 -0.615520 1.054533 -3.691949 -4.054163 -1.044063 4.915982 4.238068 0.379491 -4.539531 0.725247 5.936248 -5.482649 0.529054 1.660958 3.031554 -4.537395 1.965955 2.719726 -4.902395 2.184773 -3.805945 0.063698 -4.019487 -2.661183 5.317477 -0.747905 2.534060 -1.026499 -0.426411 1.081142 2.390829 3.603664 0.424738 2.323176 7.229246 3.603428 -0.179592 -2.205648 -7.215485 3.364876 -5.842855 -5.321807 0.594036 2.119574 -3.971338 -1.446970 -0.314625 5.709470 4.476372 -3.151860 -3.286460 2.336514 +PE-benchmarks/finite-automata-algorithm.cpp__computeTF(char*, int, int (*) [256]) = -1.091754 -1.006757 -0.332130 -1.541440 1.096949 1.428245 0.692272 -1.172084 -2.363787 -1.021133 0.719464 -2.714097 -1.449291 2.681158 -0.728254 2.032833 3.409631 0.578335 -0.932640 -0.882743 2.180602 -1.049479 3.471495 3.948671 -2.360872 0.095034 0.214042 1.174794 0.653394 0.634762 0.594532 -1.744855 0.829390 -2.332010 0.495972 -1.728195 -0.579036 1.306637 1.850700 -4.408537 -0.224566 1.317932 0.439130 -0.004156 0.102481 1.055500 2.057174 2.083743 -0.488632 2.266996 1.604606 -0.248122 1.254889 0.161456 0.613482 0.546010 0.138932 0.070438 -0.472528 -0.060061 -0.749024 -1.143483 0.547344 2.501277 3.206719 -0.364629 -1.203879 0.756435 0.479744 0.633795 0.904297 2.024648 -0.072543 0.244506 1.787412 -3.247673 -0.002785 -4.853238 0.574322 -5.102817 -1.857027 -0.028053 2.002374 1.005933 1.500135 -0.355068 3.911557 -0.731969 -1.165964 2.590501 2.897217 -2.179869 -0.634607 -0.861138 -1.177733 0.253913 -1.238562 0.173987 0.989216 0.947265 -2.233823 -1.775576 0.780401 0.405739 -1.493731 -1.619473 -0.309835 2.111804 -2.530935 -1.974847 -1.562898 1.458873 -0.367880 -3.900404 -0.553757 -1.750808 0.448631 0.708302 -1.881138 -2.061812 1.127151 0.650892 -0.611697 -1.209622 -0.509747 1.954564 1.349473 0.431591 -0.067907 1.185151 0.424145 3.549798 1.153047 -1.480662 0.023222 1.067775 -0.750159 1.099071 -1.477326 -0.882672 1.350575 -2.416343 -0.296553 0.841475 -1.500065 -0.532354 1.587774 -0.270443 -0.078019 7.826037 -0.502820 2.718035 2.331925 -2.207731 1.658808 -0.700635 0.567665 1.267925 1.948129 1.144378 -3.747348 -2.021880 1.930265 3.687303 1.432394 -2.594236 -1.209301 0.636243 0.691767 -0.193010 1.229718 0.323430 0.223068 -1.494368 -0.223069 1.095316 4.792692 -1.554273 -0.058839 0.347488 1.500251 -0.789735 -3.228143 -0.429303 -2.785296 -0.207941 0.634474 0.506205 1.112916 2.912370 -4.181990 2.415675 -0.865319 0.044556 1.899404 0.869750 -1.808793 -3.870735 -0.666376 0.984836 2.454981 -0.266546 0.452006 0.625762 -3.103761 0.126960 0.452628 0.693653 -1.864735 2.692134 -0.276635 -1.277129 -0.922876 0.514868 -0.900043 -1.443180 -0.523265 1.959270 0.953059 -2.926152 1.918736 0.228956 -1.273654 0.607693 0.023949 2.341282 -2.249062 -2.596709 1.717829 -0.793514 -1.412179 -1.029346 -0.763940 1.211817 0.755167 -0.409819 -1.871041 -2.764718 2.482586 -0.952395 2.953662 1.458520 -0.713008 2.113138 -0.271695 -1.508748 -1.667722 -1.433399 -0.120619 -0.321154 -1.257404 -1.978088 -0.722022 2.099871 2.485971 0.376919 -1.245057 -0.062714 3.019952 -2.216407 -0.279534 1.111695 0.983449 -1.443998 1.119143 1.526881 -2.368428 0.391603 -1.963703 0.056187 -1.202597 -1.172652 2.165403 -1.064755 0.793086 0.084265 -0.274326 0.062308 1.162285 1.306544 0.014606 0.392640 3.565547 2.228784 -0.764241 -0.328560 -2.922673 1.508327 -2.838970 -2.061250 -0.177814 1.242865 -1.628102 -0.423011 0.338528 2.155595 1.647299 -1.368383 -1.316454 0.577517 +PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -1.448702 -0.996826 -0.080133 -1.916173 1.750250 2.107119 1.121914 -1.756916 -3.134572 -1.743977 1.426496 -4.891274 -3.098678 3.967070 -1.272390 2.277604 4.966756 0.272969 -1.437194 -1.762533 2.834767 -0.178149 5.807538 5.936115 -4.000385 0.174686 0.106457 1.622167 1.625038 -0.057654 1.371876 -2.638373 1.713428 -2.719761 0.388770 -1.357812 -0.699201 0.773263 2.264502 -6.214903 -0.498836 1.864876 0.185404 -0.028988 0.213042 2.348317 3.715768 3.283099 -0.481994 3.136681 2.611439 -0.357847 1.828620 0.289846 0.584685 -0.697000 0.603616 -0.637748 -1.139195 -0.391267 -0.848852 -1.965135 -0.278765 4.010020 4.973111 -0.176313 -1.776156 1.189112 0.792592 1.123146 1.270839 3.082227 1.040543 1.353039 3.102562 -3.580163 -0.276426 -6.728133 0.294593 -7.843258 -3.107729 -0.304698 3.728586 1.063742 1.746620 -0.418651 5.735116 -0.233643 -1.654028 4.088944 4.966373 -3.174787 -1.204829 -1.070246 -1.447774 0.800155 -2.276564 1.544192 1.077546 1.599968 -3.632233 -2.471345 0.940818 0.145516 -2.284352 -1.921697 -0.382836 2.834658 -3.694703 -1.953936 -2.476685 1.781244 0.246742 -6.043236 -1.763578 -1.905154 1.698134 1.393805 -2.451218 -2.327367 1.399760 0.471988 -0.870245 -1.616551 -1.054112 2.635841 2.437580 1.142070 0.138608 2.483159 1.486758 5.395871 1.496859 -1.919770 -0.027416 0.922794 -0.745201 2.018191 -1.769974 -1.032202 2.122171 -2.989795 0.419577 1.404672 -2.198096 -1.855089 1.150450 -0.474466 -0.005581 10.086191 -0.384334 4.017411 3.557287 -3.259704 1.337926 -2.034566 0.494854 1.631785 2.647377 1.977924 -4.227333 -3.092639 3.233273 5.564099 2.054998 -4.221730 -0.292352 1.560923 1.123182 -1.388293 2.098634 0.948518 0.829510 -2.210202 -0.280231 2.738062 6.719205 -2.451594 -0.897691 0.631405 1.946821 0.273643 -3.623726 -0.492449 -1.991529 -0.183216 1.789141 1.304482 1.620883 4.461499 -6.074862 3.450056 -0.264412 0.370574 2.724200 1.524930 -3.301098 -3.877410 -0.388589 1.862833 3.091615 0.394704 0.049601 0.598172 -4.681688 0.108375 0.969634 0.818287 -2.377076 3.881543 -0.280704 -1.568709 -1.951995 -0.076108 -0.908440 -1.125721 -1.167617 3.031388 1.235858 -5.209167 3.315845 0.141546 -2.297182 -0.282797 -1.112091 3.785507 -3.563519 -3.858316 2.174465 -2.439355 -3.469983 -1.911283 -1.066869 1.128445 1.503094 0.709768 -3.059542 -3.436358 4.671090 -1.092332 4.360762 2.292906 -0.645537 3.458235 -0.868130 -2.460182 -2.312784 -2.340395 1.001101 -0.294644 -2.578506 -1.655064 -1.118990 2.903871 3.820157 -0.373505 -2.296911 -0.669242 3.851662 -4.208715 -1.344195 1.732103 2.468775 -2.272354 2.553560 2.293339 -3.290084 0.831490 -3.042145 -0.714224 -2.126321 -2.432441 2.857771 -1.553861 1.199177 0.554399 -0.537318 -0.097078 1.793864 1.182911 -0.141715 0.500182 5.024737 4.605523 -1.914487 -0.114703 -4.932269 2.720039 -4.518882 -4.010411 0.839781 0.772782 -2.216733 -0.922308 -0.026913 2.944341 2.579305 -2.922772 -2.859693 1.725776 +PE-benchmarks/finite-automata-algorithm.cpp__main = -0.006954 0.345113 0.317772 -0.046064 0.407896 0.039854 0.213690 0.239862 -0.297123 -0.492798 -0.153268 -0.460396 -0.720562 0.561536 0.010510 0.110614 0.938546 0.291992 0.090061 -0.287776 0.204949 -0.628225 0.831876 0.838157 -0.701468 0.246975 0.289532 0.257731 0.031297 0.568626 -0.227201 -0.552506 0.357712 -0.250381 0.379334 -0.487559 -0.116185 -0.167829 -0.225860 -1.281713 -0.095150 0.279691 0.019263 -0.008309 0.036784 0.661842 0.961079 0.434548 -0.217314 0.479543 0.216698 -0.177731 0.290581 0.149135 0.170075 0.154299 0.225841 -0.034120 -0.501510 0.229718 -0.090252 -1.062886 -0.120392 0.461316 0.719046 -0.168871 -0.140446 0.115682 -0.209179 0.083399 0.010423 0.331227 0.434081 0.110985 0.541579 -0.525582 -0.094207 -1.025683 -0.206802 -2.056177 -0.696738 -0.637487 0.684325 0.030022 0.239671 -0.096402 0.852140 -0.031492 0.316417 0.258662 0.935613 -0.657845 -0.280527 -0.365486 0.036286 0.296480 -0.380756 -0.093817 0.461328 -0.263050 -0.539460 -0.505678 0.684692 -0.019075 -0.367789 -0.163513 -0.205610 0.595501 -0.905056 -0.387531 -1.085758 -0.314866 -0.013288 -0.865046 0.341977 0.171095 0.463653 0.503587 -0.145917 -0.448101 0.232824 0.373300 -0.119768 -0.350098 -0.311157 0.782128 0.114741 -0.058465 0.384898 0.300447 0.264626 0.633834 0.917625 -0.111066 -0.206604 0.299853 -0.392166 -0.014923 -0.291954 -0.270575 0.307539 -0.596824 0.003713 0.130137 -0.446529 -0.093317 0.197947 -0.219220 0.344428 1.087410 -0.096718 0.350771 0.118300 -0.657055 0.527268 -0.230659 -0.292915 0.192291 0.652794 0.452520 -0.544085 -0.356407 0.158295 0.782244 0.352623 -0.703533 -0.297070 -0.242957 0.174533 -0.038864 0.282130 0.206465 0.270429 -0.382622 -0.032730 0.198001 1.128907 -0.495624 -0.572967 0.086011 -0.063478 -0.060247 -0.948762 -0.036750 -0.246912 -0.122456 -0.139018 -0.070224 0.106721 0.692051 -1.267422 0.652998 -0.396538 -0.359135 0.512409 0.020662 -0.138800 -0.971920 0.171352 0.552866 0.747965 0.250578 0.016964 -0.128841 -0.656760 -0.090874 0.023067 0.366183 -0.305673 0.549106 -0.119839 -0.511988 -0.416789 -0.372232 0.077770 -0.257552 -0.105736 0.251625 0.489986 -1.367816 0.654021 -0.190761 -0.404365 0.161354 0.097440 0.325881 -0.646193 -0.824378 0.229045 -0.264413 -0.669155 -0.349217 -0.248556 0.292494 -0.024702 -0.417698 -0.116320 -0.727445 0.684715 -0.030693 0.402316 0.443245 0.166401 1.024920 0.445154 -0.621918 -0.300263 -0.144573 0.046719 -0.671899 -0.084689 -0.221419 -0.341094 0.443992 1.044091 0.125986 0.089807 -0.211698 0.683957 -0.781960 -0.386180 0.587404 0.374133 -0.005387 0.503864 0.608483 -0.575173 -0.359424 -0.505169 -0.119772 0.074025 -0.406831 0.193320 -0.800508 -0.070472 0.496942 -0.191593 -0.309852 0.357575 -0.098609 -0.069871 -0.359971 0.763405 1.078453 -0.822812 0.294593 -0.455089 0.337684 -0.823841 -0.414393 -0.098744 0.434712 -0.169744 -0.011227 0.254909 0.135774 0.073077 -0.457687 -0.334653 -0.179301 +PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -1.280754 -0.897955 0.208262 -2.256869 1.382737 2.028750 0.733495 -1.338000 -2.757950 -1.793308 0.779822 -3.430687 -2.114723 3.241570 -1.099887 2.014369 4.132748 0.457677 -1.099513 -1.032045 2.454141 -0.987131 4.287063 4.933662 -3.126772 0.087741 0.216166 1.796144 0.781384 0.872627 1.066418 -2.464012 0.743492 -2.268369 0.715415 -1.896096 -0.722592 1.342030 1.633245 -5.477276 -0.379269 1.719280 -0.376008 0.073520 0.328673 0.997794 2.936253 2.549086 -0.647715 2.556424 2.016125 0.131511 1.427581 0.087551 0.575667 0.196350 -0.101051 -0.647598 -0.416153 0.044283 -0.856233 -1.530734 0.577938 3.314025 3.847196 -0.388221 -1.496319 0.649009 0.535046 0.707563 0.913728 2.612181 0.018830 0.755249 2.135678 -3.888396 0.075081 -5.705568 0.985991 -5.632923 -2.469134 -0.219671 2.573367 2.357181 1.481918 -0.893486 4.902184 -0.885383 -1.265889 3.658544 3.700425 -2.466605 -0.662368 -1.305687 -1.532392 0.334038 -1.490244 0.276372 0.006608 1.525827 -2.710548 -1.865463 0.648269 0.254413 -1.908476 -1.834296 -0.466886 2.735346 -3.349810 -2.050917 -1.964387 2.157427 -0.103215 -4.991406 -0.960648 -2.117171 0.961964 0.743387 -2.250094 -2.253937 1.365596 0.856470 -0.683190 -1.094154 -1.498372 2.576041 1.795851 0.382004 -0.189683 1.684227 0.739449 4.106235 1.279347 -1.620081 -0.095348 1.291002 -0.742668 1.088457 -1.576990 -0.637993 1.337245 -2.826584 -0.707034 1.227730 -1.791744 -0.936167 0.910310 -0.665088 0.031498 10.478317 -0.761145 3.304331 2.815746 -2.786070 1.964465 -0.833201 0.466555 1.450918 2.141148 1.746920 -4.973327 -2.363325 2.497837 4.643600 1.676964 -2.900418 -0.843254 0.974971 0.579524 -0.523051 1.736605 0.324208 0.146171 -1.755951 -0.368320 1.671813 5.889097 -1.481068 -0.179294 0.346452 1.728595 -0.640686 -3.421876 -0.307777 -2.646751 -0.268878 1.444196 0.596151 1.467114 3.592408 -5.035599 2.885574 -0.664979 0.109891 2.021547 0.872604 -2.110236 -4.374368 -0.725005 1.457519 2.893316 -0.385377 0.678703 0.490970 -3.839035 0.166062 0.852530 0.987456 -2.396360 3.338285 -0.138139 -1.721474 -1.310067 0.275762 -1.446039 -1.296069 -1.118319 2.326324 0.795541 -3.662757 2.645885 0.303328 -1.461685 0.518567 -0.417334 3.286028 -2.915936 -3.277363 2.128652 -1.121741 -2.271538 -1.120398 -1.116995 1.459624 0.954307 -0.555381 -2.535790 -3.359751 3.065444 -0.943665 3.664410 1.836397 -0.657280 2.863554 -0.090014 -1.669259 -1.803843 -2.507740 0.758213 -0.156719 -1.657232 -2.139679 -0.945255 2.397743 3.133843 0.100091 -1.749992 0.114636 3.556524 -2.556013 -0.437464 1.097577 0.966049 -1.897853 1.361722 1.705266 -2.713599 0.473748 -2.748056 0.349815 -1.609336 -1.635202 2.552137 -1.316046 0.964068 0.418204 -0.234523 -0.299995 1.403838 1.529258 0.011447 0.648215 4.407323 2.849233 -0.739107 -0.164170 -3.784047 2.053699 -3.604902 -2.747706 -0.290857 1.304351 -1.397014 -0.668484 -0.027941 2.585864 2.171590 -1.528385 -1.460405 1.006129 +PE-benchmarks/sudoku.cpp__FindUnassignedLocation(int (*) [9], int&, int&) = -1.210885 -0.543964 -0.274327 -2.157695 1.497226 1.810334 0.680567 -1.343233 -2.565052 -1.380784 0.408401 -2.751797 -1.587801 3.120064 -0.883293 2.154629 4.229152 0.666543 -0.933948 -1.056352 2.860353 -1.371561 3.958823 4.498480 -2.988305 0.118008 1.029598 1.375174 0.764411 1.044225 0.548961 -2.379991 0.759336 -2.715213 0.909318 -2.332197 -0.607366 1.293127 2.062933 -5.337932 -0.212034 1.020257 0.164264 -0.081286 -0.037675 0.773611 2.857598 2.409997 -0.965658 2.125677 2.126083 0.483674 0.993555 0.175838 0.632517 1.063858 0.058207 0.256920 -0.237176 -0.056301 -0.836464 -1.018251 0.917180 3.147964 3.705346 -0.344058 -1.237626 1.140324 0.523857 0.629480 0.704457 2.283930 -0.152832 0.489854 1.986843 -4.597923 -0.255622 -6.581807 0.759658 -6.359279 -2.132779 -0.528170 1.587462 0.814253 1.863322 -0.075930 4.626970 -0.977174 -0.812194 3.263470 3.568628 -2.527900 -0.600776 -1.564478 -1.764813 0.348676 -1.315112 0.041980 0.866200 0.856838 -2.529742 -2.605168 0.894717 0.635977 -1.804320 -2.338847 -0.341575 2.558564 -2.947511 -2.348003 -1.996116 1.724546 -0.729738 -4.672984 -0.697021 -2.328621 0.900389 0.522181 -1.989368 -3.044635 1.169802 1.459099 -0.885092 -1.631150 -0.206704 2.249858 1.801592 0.281923 -0.142566 0.924536 0.575278 4.230646 1.779709 -1.758237 -0.118982 1.228754 -1.043016 0.603500 -2.034274 -0.870104 1.738013 -2.799314 -0.410506 1.482592 -1.760536 -0.766853 2.630470 -1.077387 0.342304 10.195182 -0.791475 2.904142 2.352085 -2.928647 1.846156 -0.596236 0.187394 1.392551 2.409243 1.667554 -4.891415 -2.422506 2.137650 4.231604 1.703348 -2.857555 -1.886778 0.347437 0.343222 -0.025742 1.164627 0.166360 -0.199642 -1.732080 -0.477258 1.350962 5.789832 -1.685840 -0.065969 0.441369 2.301049 -1.262349 -3.836112 -0.553149 -3.800493 -0.144028 0.977821 0.244919 1.672324 3.534789 -5.613593 2.797763 -1.202615 -0.181449 1.745702 1.029003 -1.739835 -4.759364 -0.374205 1.614718 2.994554 -0.645334 0.995456 0.454959 -3.592450 0.094538 0.528420 1.163860 -2.342298 3.010061 -0.151821 -1.953176 -1.295747 1.049888 -1.268740 -1.893035 -0.474175 2.064171 0.861341 -3.800019 2.763514 0.130033 -1.070097 1.016836 -0.186058 2.925449 -2.799128 -3.269162 2.224820 -0.380152 -0.935301 -0.750450 -0.910137 2.023398 0.774183 -0.259882 -2.299931 -3.702830 2.386290 -0.896492 3.334131 1.722757 -0.347701 2.695887 -1.089127 -1.435766 -2.397386 -1.754812 -0.112178 0.045964 -1.552487 -2.770242 -0.917688 2.565778 3.221995 0.230491 -1.473356 0.063026 3.546819 -2.848196 -0.053191 1.188978 1.380933 -1.983384 0.880845 1.743279 -2.724514 -0.102502 -2.378560 0.535028 -1.260249 -1.610864 2.288791 -1.493143 0.793918 0.538665 -0.382332 -0.021866 1.523027 1.619680 0.303367 0.475773 3.822509 2.656107 -0.971623 -0.617142 -3.306071 1.637905 -3.616046 -2.614324 -0.335346 1.248887 -1.615101 -0.476738 0.124386 2.622738 1.514877 -0.688353 -1.050846 0.229983 +PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -1.054112 -0.856419 -0.133766 -1.756413 1.221724 1.509913 0.735883 -1.684944 -1.810895 -1.415397 1.214729 -3.260938 -1.794818 2.394642 -0.910733 1.515483 2.853464 -0.289874 -0.720902 -1.402501 1.486240 0.160489 3.650330 3.857958 -2.407051 0.153206 0.128764 0.753059 0.821321 -0.582642 1.256710 -2.222491 0.946506 -1.714246 0.007233 -0.526179 -0.812423 0.518993 2.159865 -3.601984 -0.343239 0.953573 -1.023112 0.270022 0.482629 1.282528 2.357638 1.696326 -0.430010 2.633776 1.601607 -0.165276 1.046949 -0.031292 0.659389 -0.725026 0.395639 -0.461949 -0.233888 -0.337675 -0.792398 -0.249268 -0.374524 2.135108 2.327765 -0.238522 -1.629885 0.684304 0.798957 0.501954 0.586392 2.401328 0.483423 1.174384 1.712417 -2.830189 -0.579460 -4.731614 0.515237 -4.596904 -2.186872 0.621597 2.312175 0.845730 0.950534 -0.400032 3.685045 -0.035534 -1.735998 2.384670 3.032919 -1.879541 -0.399974 0.105374 -0.757829 -0.228137 -0.721879 1.494534 0.104147 1.368653 -2.352396 -1.346481 0.561284 -0.326441 -1.392031 -1.514893 -0.526775 1.792371 -2.615392 -0.752272 -0.875942 1.767906 0.385947 -3.566754 -1.406312 -1.142203 1.618474 0.591296 -2.259121 -1.377901 1.191632 0.001598 -0.825957 -0.602087 -0.132957 1.585126 2.335325 0.893845 -0.200031 2.028732 0.895685 3.839948 0.469506 -1.240184 0.194005 0.396093 0.368687 1.320341 -0.512884 -0.198061 0.748138 -1.690213 0.879388 0.905237 -1.183232 -1.408407 0.984320 -0.312417 -0.773724 7.299964 -0.575205 3.163046 2.649751 -1.836419 0.101361 -1.704169 0.579658 0.840656 1.621764 1.466720 -2.716308 -1.764306 2.767872 3.541258 0.811114 -2.969491 -0.037738 1.652286 0.592571 -1.168992 1.670594 0.034601 0.672423 -1.200641 -0.165945 1.909647 4.522280 -1.440954 -0.644631 0.055815 1.437893 0.936235 -1.769591 -0.171517 -1.218822 -0.041176 2.186460 1.294098 1.141261 2.645894 -4.491821 1.836894 0.227553 0.553379 1.540299 1.936343 -2.300228 -2.783926 -0.870942 0.943185 1.654183 -0.006691 0.717265 0.341436 -2.864438 0.237299 0.825567 -0.006210 -1.953731 2.708595 0.125846 -1.251921 -0.597856 -0.100946 -0.965266 -0.428183 -0.919812 2.046129 0.468212 -4.172977 1.816603 0.337162 -1.400024 -0.371857 -1.053947 3.491820 -1.708869 -2.139240 1.629298 -1.889552 -2.576039 -0.659283 -1.033068 0.047349 0.902199 1.070698 -2.084298 -1.782957 3.093756 -0.900322 3.268266 1.461963 -0.609908 2.282595 -2.193876 -1.397738 -1.033913 -2.139555 1.614439 0.218216 -1.771723 -0.838565 -0.534959 1.383021 1.662887 -0.323091 -1.973835 -0.229157 1.969436 -2.844712 0.501866 0.627899 2.315518 -1.768598 1.580194 1.109252 -1.537000 1.323036 -1.992864 -0.705793 -2.263726 -1.173369 1.766742 -0.294849 0.631446 -0.080937 -0.243460 -0.005488 1.094239 0.817310 0.013913 0.912080 2.691276 3.163345 -1.007203 -0.370674 -3.263535 2.036206 -2.337275 -2.884391 0.608680 0.285124 -1.309737 -1.258740 -0.921424 2.165732 2.133050 -2.008819 -1.502480 1.817427 +PE-benchmarks/sudoku.cpp__UsedInRow(int (*) [9], int, int) = -0.922571 -0.771448 -0.171987 -1.177018 0.884712 1.086509 0.608349 -0.870594 -1.879748 -0.910787 0.408486 -2.177567 -1.201433 2.239736 -0.521285 1.781674 2.882394 0.661566 -0.708746 -0.569961 1.711635 -1.180499 2.756096 3.127749 -1.709896 0.068343 0.104547 1.004462 0.190820 0.852735 0.325581 -1.513849 0.672906 -1.931255 0.530431 -1.498435 -0.494504 1.183960 1.370779 -3.647164 -0.154061 1.303365 0.599158 -0.087020 0.053106 0.436130 1.686353 1.662587 -0.161024 1.720818 0.997248 -0.326986 1.143676 0.216717 0.749184 0.784733 0.123291 -0.220238 -0.599846 0.045082 -0.757109 -1.113025 0.489049 1.926271 2.520159 -0.268180 -0.953686 0.563063 0.180091 0.521813 0.684814 1.569667 -0.222085 0.096015 1.318199 -2.731718 0.128573 -3.599535 0.411120 -3.903542 -1.570772 -0.127480 1.458408 1.180353 1.376197 -0.358366 3.152306 -0.791122 -0.843080 1.752607 2.445569 -1.908432 -0.571675 -0.809852 -0.745820 0.103031 -0.991413 -0.181435 0.887116 0.617213 -1.826897 -1.397444 0.888941 0.450219 -1.130059 -1.242112 -0.253030 1.921013 -2.068342 -1.893179 -1.490705 1.031233 -0.463716 -3.083775 -0.088378 -1.250351 -0.069908 0.731418 -1.621345 -1.918957 1.125635 0.702702 -0.461933 -1.122926 -0.549004 1.763513 0.860940 0.161049 0.009477 1.030517 0.194840 2.906772 1.127494 -1.115392 0.072719 0.958259 -0.774261 0.785365 -1.113706 -0.901538 0.756484 -2.090012 -0.633122 0.736442 -1.287423 -0.133186 0.975869 -0.128911 0.047021 6.218032 -0.566238 2.081561 1.753781 -1.872147 1.728983 -0.454816 0.417818 0.787416 1.630071 0.991823 -3.233151 -1.663459 1.562129 2.973490 1.224181 -1.915784 -1.155524 0.207039 0.685211 -0.001065 0.972275 0.347456 0.243528 -1.311043 -0.176856 0.646724 4.034416 -1.419984 -0.153732 0.404290 0.885158 -0.682568 -2.977144 -0.422063 -2.483047 -0.272606 0.111558 0.291100 0.746472 2.397702 -3.055141 2.117645 -0.916498 -0.190885 1.904993 0.475005 -1.273671 -3.423631 -0.714685 0.925533 2.156679 -0.269118 0.349893 0.352955 -2.506196 0.081059 0.223098 0.745970 -1.452755 2.175966 -0.421778 -1.183659 -0.741285 0.331838 -0.723566 -1.441675 -0.381508 1.512500 1.195281 -2.039049 1.636790 0.303886 -0.912535 0.774885 0.326583 1.800111 -1.768329 -2.209930 1.411096 -0.596581 -1.078943 -0.733645 -0.617733 1.027582 0.546996 -0.794850 -1.336955 -2.148351 1.951997 -0.667706 2.448536 1.127378 -0.506502 1.669353 0.432900 -1.380723 -1.115663 -1.170060 -0.506224 -0.493628 -0.863099 -1.941822 -0.591051 1.847457 2.096672 0.507654 -0.861606 -0.147990 2.545077 -1.800521 -0.159525 1.108690 0.347607 -1.109211 0.669138 1.412380 -1.938740 0.091656 -1.526669 0.143704 -0.979534 -0.935215 1.567174 -1.071592 0.515782 0.098985 -0.352201 -0.009325 0.808759 1.176836 -0.029766 0.213448 2.969528 1.458131 -0.566913 -0.214407 -2.224487 1.104651 -2.288740 -1.447447 -0.272014 1.364631 -1.388340 -0.293441 0.593533 1.637012 1.227344 -1.075512 -0.986536 0.103350 +PE-benchmarks/sudoku.cpp__UsedInCol(int (*) [9], int, int) = -0.922571 -0.771448 -0.171987 -1.177018 0.884712 1.086509 0.608349 -0.870594 -1.879748 -0.910787 0.408486 -2.177567 -1.201433 2.239736 -0.521285 1.781674 2.882394 0.661566 -0.708746 -0.569961 1.711635 -1.180499 2.756096 3.127749 -1.709896 0.068343 0.104547 1.004462 0.190820 0.852735 0.325581 -1.513849 0.672906 -1.931255 0.530431 -1.498435 -0.494504 1.183960 1.370779 -3.647164 -0.154061 1.303365 0.599158 -0.087020 0.053106 0.436130 1.686353 1.662587 -0.161024 1.720818 0.997248 -0.326986 1.143676 0.216717 0.749184 0.784733 0.123291 -0.220238 -0.599846 0.045082 -0.757109 -1.113025 0.489049 1.926271 2.520159 -0.268180 -0.953686 0.563063 0.180091 0.521813 0.684814 1.569667 -0.222085 0.096015 1.318199 -2.731718 0.128573 -3.599535 0.411120 -3.903542 -1.570772 -0.127480 1.458408 1.180353 1.376197 -0.358366 3.152306 -0.791122 -0.843080 1.752607 2.445569 -1.908432 -0.571675 -0.809852 -0.745820 0.103031 -0.991413 -0.181435 0.887116 0.617213 -1.826897 -1.397444 0.888941 0.450219 -1.130059 -1.242112 -0.253030 1.921013 -2.068342 -1.893179 -1.490705 1.031233 -0.463716 -3.083775 -0.088378 -1.250351 -0.069908 0.731418 -1.621345 -1.918957 1.125635 0.702702 -0.461933 -1.122926 -0.549004 1.763513 0.860940 0.161049 0.009477 1.030517 0.194840 2.906772 1.127494 -1.115392 0.072719 0.958259 -0.774261 0.785365 -1.113706 -0.901538 0.756484 -2.090012 -0.633122 0.736442 -1.287423 -0.133186 0.975869 -0.128911 0.047021 6.218032 -0.566238 2.081561 1.753781 -1.872147 1.728983 -0.454816 0.417818 0.787416 1.630071 0.991823 -3.233151 -1.663459 1.562129 2.973490 1.224181 -1.915784 -1.155524 0.207039 0.685211 -0.001065 0.972275 0.347456 0.243528 -1.311043 -0.176856 0.646724 4.034416 -1.419984 -0.153732 0.404290 0.885158 -0.682568 -2.977144 -0.422063 -2.483047 -0.272606 0.111558 0.291100 0.746472 2.397702 -3.055141 2.117645 -0.916498 -0.190885 1.904993 0.475005 -1.273671 -3.423631 -0.714685 0.925533 2.156679 -0.269118 0.349893 0.352955 -2.506196 0.081059 0.223098 0.745970 -1.452755 2.175966 -0.421778 -1.183659 -0.741285 0.331838 -0.723566 -1.441675 -0.381508 1.512500 1.195281 -2.039049 1.636790 0.303886 -0.912535 0.774885 0.326583 1.800111 -1.768329 -2.209930 1.411096 -0.596581 -1.078943 -0.733645 -0.617733 1.027582 0.546996 -0.794850 -1.336955 -2.148351 1.951997 -0.667706 2.448536 1.127378 -0.506502 1.669353 0.432900 -1.380723 -1.115663 -1.170060 -0.506224 -0.493628 -0.863099 -1.941822 -0.591051 1.847457 2.096672 0.507654 -0.861606 -0.147990 2.545077 -1.800521 -0.159525 1.108690 0.347607 -1.109211 0.669138 1.412380 -1.938740 0.091656 -1.526669 0.143704 -0.979534 -0.935215 1.567174 -1.071592 0.515782 0.098985 -0.352201 -0.009325 0.808759 1.176836 -0.029766 0.213448 2.969528 1.458131 -0.566913 -0.214407 -2.224487 1.104651 -2.288740 -1.447447 -0.272014 1.364631 -1.388340 -0.293441 0.593533 1.637012 1.227344 -1.075512 -0.986536 0.103350 +PE-benchmarks/sudoku.cpp__UsedInBox(int (*) [9], int, int, int) = -1.463790 -1.487644 -1.014879 -1.552339 1.191409 1.710399 0.904915 -1.438763 -2.972808 -0.956931 0.802056 -3.387589 -1.621289 3.372711 -0.771461 2.805274 4.255093 0.977587 -1.219940 -0.816670 2.743514 -1.466549 4.099793 4.710291 -2.443382 0.017981 -0.068962 1.019781 0.358138 0.896450 0.597927 -2.200169 1.131161 -3.097047 0.622651 -2.261850 -0.754257 1.986777 2.487461 -5.289199 -0.194074 2.040427 1.380333 -0.149635 0.017235 1.207662 2.258950 2.492774 -0.301748 2.656333 1.537274 -0.497302 1.727273 0.272424 0.982915 1.128560 -0.041670 0.230399 -0.785062 -0.142719 -1.163855 -1.188115 0.718063 2.856317 3.837924 -0.362058 -1.502805 0.942265 0.440015 0.844168 1.136798 2.379270 -0.065676 -0.065732 2.023671 -3.638352 -0.070169 -5.364368 0.675220 -6.156049 -1.953936 0.127386 2.212492 1.269779 2.038068 -0.621198 4.750263 -1.189374 -1.546215 2.979120 3.519082 -2.791811 -0.844724 -1.093570 -1.328254 0.062414 -1.447552 -0.090280 1.842711 0.944658 -2.778392 -2.301608 0.822939 0.685993 -1.656876 -2.012014 -0.307542 2.512852 -2.928755 -2.621271 -1.928129 1.587654 -0.649726 -4.576079 -0.423294 -2.129479 -0.574427 1.004069 -2.574167 -2.765973 1.651386 0.754402 -0.799487 -1.684089 -0.377270 2.417585 1.211765 0.412219 -0.123035 1.385408 0.222481 4.360840 1.290340 -1.901595 0.245005 1.395884 -1.030453 1.363777 -1.848617 -1.461148 1.708223 -3.159384 -0.554285 0.837412 -1.891576 -0.194463 1.857794 -0.181615 -0.134327 8.852306 -0.802253 3.263911 2.720621 -2.725729 2.469005 -0.731569 0.862429 1.276519 2.531475 1.321175 -4.331619 -2.545878 2.439644 4.457124 1.825061 -2.854236 -1.584180 0.583358 1.120735 -0.021495 1.412600 0.470895 0.283835 -1.956798 -0.247036 0.916457 6.002032 -2.144188 0.535272 0.537225 1.858666 -1.001381 -4.089094 -0.636760 -4.063237 -0.331808 0.245491 0.538703 1.245625 3.558849 -4.387637 3.143772 -1.463084 -0.013897 2.481178 0.923938 -2.088998 -4.888365 -1.136762 1.158123 3.167919 -0.310871 0.432744 0.711483 -3.743947 0.166511 0.324293 0.991446 -2.203442 3.275506 -0.626338 -1.552216 -0.971784 0.835630 -1.059107 -2.267414 -0.428042 2.354785 1.703243 -2.734836 2.270597 0.496017 -1.362864 0.836556 0.678688 2.351869 -2.549622 -3.165831 2.072683 -0.902201 -1.424804 -1.113395 -0.885455 1.521815 0.940421 -0.865858 -2.074271 -3.530201 3.170673 -1.096519 3.812813 1.638625 -0.984429 2.217994 0.206235 -1.980119 -1.919332 -1.695042 -0.981934 -0.632289 -1.317046 -2.502679 -0.782089 2.761645 2.868340 0.768093 -1.494878 -0.159215 3.827628 -2.247089 -0.088438 1.559187 0.604467 -1.658125 1.068511 2.031983 -2.961102 0.361210 -2.253051 0.246174 -1.571652 -1.272082 2.462231 -1.463309 0.855770 -0.128422 -0.472685 0.244781 1.167062 1.881797 -0.174620 0.486733 4.514248 1.717171 -0.741486 -0.345548 -3.402937 1.730785 -3.316040 -2.173352 -0.383084 1.905161 -2.347894 -0.456519 0.847189 2.548084 1.871880 -1.658463 -1.677132 0.372129 +PE-benchmarks/sudoku.cpp__printGrid(int (*) [9]) = -0.851165 -0.730600 -0.255636 -1.413182 0.737769 0.997385 0.468944 -0.780542 -1.921111 -1.129806 0.560092 -2.530368 -1.354902 2.177683 -0.756049 1.259476 2.785692 0.428151 -0.802471 -0.668746 1.618286 -0.674242 2.713804 3.162809 -1.991032 -0.026680 -0.055649 1.079701 0.545082 0.551857 0.970519 -1.715216 0.394760 -1.302077 0.729593 -1.241043 -0.375495 1.045582 0.981841 -3.616739 -0.192402 1.666343 0.769911 -0.037688 0.200775 0.732114 1.757114 1.691871 -0.404017 1.494672 1.377428 0.154245 1.056241 0.041831 0.378734 0.059609 0.036329 -0.457168 -0.447515 -0.009740 -0.565475 -0.841566 0.368110 2.201021 2.644484 -0.181376 -0.904541 0.326094 0.439123 0.667561 0.721841 1.608301 -0.059499 0.389882 1.338818 -2.068087 0.090269 -3.671116 0.807390 -4.237441 -1.414238 -0.134650 1.886921 1.658577 0.794742 -0.615262 3.202576 -0.591290 -0.824911 2.426132 2.440725 -1.290957 -0.541992 -0.977672 -1.161825 0.398588 -1.032471 0.049191 0.574598 1.216403 -1.795061 -1.096603 0.182136 0.202745 -1.186516 -0.927603 -0.284614 1.635276 -2.153936 -1.178905 -1.211613 1.410975 0.120650 -3.274397 -0.638908 -1.577433 -0.279314 0.481511 -1.511261 -1.284030 0.877323 0.344357 -0.564151 -0.455517 -1.365343 1.651835 0.867258 0.270911 -0.165464 1.117231 0.433436 2.432358 0.461023 -1.257164 0.011291 0.904150 -0.521471 0.667459 -1.224650 -0.674267 1.254359 -1.886374 -0.345229 0.461674 -1.209561 -0.701554 0.228578 -0.498493 0.113286 6.332115 -0.495822 2.192267 1.800059 -1.716813 1.441620 -0.291118 0.387807 0.821855 1.503864 1.021520 -2.423453 -1.656462 1.615569 3.020315 1.139191 -1.508364 -0.540797 0.684086 0.414860 -0.175260 1.074326 0.250550 -0.101943 -1.186142 -0.279309 0.966432 3.596997 -0.772242 0.214865 0.162897 1.623250 -0.512559 -1.999640 -0.142897 -2.113607 -0.074929 0.519210 0.397850 1.067970 2.416377 -3.336606 2.083494 -0.227932 0.320334 1.367781 0.317633 -1.366265 -3.386384 -0.483861 0.927513 1.994670 -0.416327 0.278509 0.408919 -2.500537 0.111163 0.410403 0.742966 -1.557860 2.098095 -0.339406 -0.897741 -0.894179 0.205333 -0.982192 -0.913655 -0.716368 1.493872 1.009075 -1.932147 1.765766 0.102117 -0.904054 0.057197 -0.058926 1.588820 -1.997259 -2.036427 1.123810 -0.747417 -1.561755 -0.822798 -0.731896 0.995618 0.470279 -0.351471 -1.504876 -2.072085 2.180801 -0.783351 2.427742 1.146662 -0.524514 1.536778 0.366889 -0.971438 -1.113040 -1.359070 -0.060085 -0.324381 -1.000255 -1.062390 -0.545701 1.547877 1.999130 0.077636 -1.208013 0.146235 2.418497 -1.090531 -0.467048 0.733693 -0.223866 -1.120094 0.949366 1.141141 -1.976605 0.267695 -1.993361 0.287963 -0.966516 -1.015120 1.630628 -0.919599 0.614380 0.208127 -0.304663 -0.191883 0.883389 1.150655 -0.268356 0.488948 3.037208 1.130095 -0.340872 0.125995 -2.548571 1.223379 -2.389563 -1.653278 -0.334603 0.832627 -1.127160 -0.305333 0.049986 1.663750 1.374452 -0.862416 -1.171766 0.749402 +PE-benchmarks/sudoku.cpp__main = -0.124599 -0.016523 0.407342 -0.405682 0.331465 -0.022898 0.186238 0.306685 -0.778935 -0.834295 0.022770 -1.231600 -0.952350 0.857014 -0.220280 -0.094096 1.191906 0.327662 -0.165642 -0.248285 0.105311 -0.278631 0.889081 1.160269 -0.734138 0.146447 -0.422188 0.399902 -0.122408 0.615096 0.487115 -1.109690 -0.096230 0.422578 0.672744 -0.294757 -0.252610 0.223349 -0.418889 -1.663727 -0.071809 1.435393 0.753182 -0.050458 0.387074 0.356356 0.963504 0.550046 -0.077453 0.459853 0.368963 0.137033 0.630180 -0.019181 0.151506 -0.247650 0.252237 -0.757890 -0.570198 0.363760 -0.247059 -0.623645 -0.166315 0.757628 0.965807 -0.040772 -0.400088 -0.515814 0.128750 0.449244 0.187645 0.551686 0.304513 0.192523 0.415074 0.181153 -0.025353 -1.126807 0.557738 -1.833629 -0.829417 -0.299485 1.424607 1.681891 -0.274249 -0.668420 1.224335 -0.287480 -0.016270 0.716353 1.101082 -0.037468 -0.306473 -0.490976 -0.436784 0.385642 -0.330711 -0.217147 0.012642 0.622345 -0.726311 -0.128153 0.122744 -0.312558 -0.409608 0.417529 -0.190030 0.782506 -0.955092 -0.007118 -0.836965 0.659770 0.640000 -1.164404 0.025698 -0.323404 -0.868777 0.553260 -0.651103 0.111360 0.483871 -0.264818 -0.477397 0.406422 -1.707190 1.043780 -0.115761 -0.104272 0.056667 0.590301 0.272512 0.141972 0.053651 -0.499706 0.031241 0.478552 -0.043325 0.049930 -0.444549 -0.257459 0.187659 -0.576083 -0.058700 -0.313885 -0.559508 -0.452326 -1.600315 -0.356029 0.175202 1.319781 -0.384095 0.766158 0.367873 -0.526438 1.139929 0.222565 -0.068286 0.010573 0.696491 0.577160 0.031956 -0.522642 0.561403 1.207897 0.454245 -0.101612 0.100910 0.288538 0.079904 -0.054355 0.825484 0.193235 0.067715 -0.465844 -0.149386 0.219289 1.167479 0.137216 -0.515966 -0.125590 0.592952 0.257657 -0.325858 0.220597 -0.409123 -0.098587 0.122597 0.040607 0.390388 0.934798 -1.560390 1.029033 0.267685 0.064604 0.711618 -0.325214 -0.289344 -1.390602 -0.167496 0.490338 1.058280 0.084027 -0.278241 -0.113030 -0.896128 -0.015045 0.100918 0.474653 -0.638847 0.799803 -0.425581 -0.319974 -0.322355 -0.759754 -0.448759 -0.168942 -0.736802 0.397345 1.020970 -0.686193 0.774841 -0.039590 -0.265424 -0.356034 0.027919 0.222995 -0.608421 -0.704495 0.009093 -0.565278 -1.302958 -0.481581 -0.506051 0.229612 -0.047177 -0.172915 -0.225144 -0.618863 1.143549 -0.144680 0.991905 0.508172 -0.197847 0.570049 1.743341 -0.441568 0.121829 -0.598920 0.311378 -0.601155 -0.073147 0.100179 -0.406595 0.319044 0.872584 -0.010469 -0.409421 -0.457232 0.946633 0.112948 -0.444405 0.414153 -1.489302 0.050637 0.660272 0.610292 -0.738702 -0.068627 -1.165848 0.350523 -0.284714 -0.280240 0.345408 -0.618660 -0.048589 0.243080 -0.361431 -0.545787 0.208244 0.288287 -0.599816 -0.031670 1.347342 -0.007827 -0.197612 0.966292 -0.891859 0.560154 -0.891895 -0.320382 -0.476111 0.193260 -0.443885 -0.117396 -0.144510 0.251342 0.285065 -0.215193 -0.732747 0.512637 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::Graph(int) = -1.651161 -0.989926 0.843812 -3.342831 2.020578 2.180925 0.775049 -1.838868 -2.865394 -1.556122 1.336661 -3.248514 -3.442378 3.558523 -1.380867 1.091521 2.606420 -1.139668 -1.825753 -2.099885 2.537878 -0.946741 4.171419 3.879576 -3.948766 0.005118 0.077618 2.491801 0.972723 1.622582 1.172779 -1.725176 -0.963401 -0.434649 1.912831 0.405781 -0.933457 0.321289 0.499841 -4.645709 -0.550153 3.585175 0.508137 0.022236 0.511242 0.941720 2.646211 2.732743 0.018112 1.549339 2.865337 -0.266036 2.201341 -0.420730 1.908825 -0.573377 2.775905 -0.399532 0.105085 -0.376095 -1.133960 -0.397648 0.406967 3.789763 3.900858 -0.968957 -1.917878 -0.079331 0.481113 1.978228 0.912802 3.048731 -0.333901 1.000688 3.007925 -1.706856 0.917051 -4.450303 2.025970 -4.339882 -2.670836 0.239361 2.434446 2.771025 0.988681 -0.928250 5.674878 -0.290600 -2.188427 1.640689 3.130256 -0.674069 -0.219617 -0.811003 -2.382390 -0.094818 -1.217589 0.267371 0.091015 2.479430 -2.960259 0.079235 -0.160784 -0.063423 -2.393650 -0.065990 -1.302361 2.604861 -2.184773 -0.456104 -1.395327 2.994564 0.569095 -5.467821 -2.066147 -3.050591 -0.769979 -0.250895 -1.822493 -0.699310 1.653491 0.710126 -1.233321 -0.436897 -2.605835 2.995070 2.588002 0.318153 -0.458832 1.903519 0.698037 2.615352 0.483840 -1.385889 -0.814425 1.176178 -0.433649 1.473669 -0.313892 0.391504 1.418682 -1.617701 -0.247635 0.128392 -0.828111 -0.761971 -0.968436 -0.971182 -0.302700 9.873262 -1.658388 3.564962 2.007213 -2.004671 2.209110 0.267422 0.415528 1.355838 2.057004 1.255229 -3.222459 -2.472304 3.652566 4.619178 1.269837 -2.715702 0.886458 1.945814 0.018444 -1.254544 2.521245 -0.019563 0.105380 -1.346659 -0.699693 0.835392 5.366190 -1.475298 -3.026899 0.866518 2.386489 -0.459281 -1.622874 0.201006 -1.927642 -0.600110 0.823968 0.867920 2.165817 3.555587 -5.079075 2.982272 0.370815 -0.749538 4.007132 -0.932015 -1.507158 -4.392424 -0.708343 0.663717 2.823976 -0.354173 -1.242126 -0.153499 -3.966311 0.966092 0.363816 0.643355 -2.773225 3.814633 -1.175583 -1.237136 -1.229695 -1.749890 -1.791146 0.416701 -2.479806 1.713580 0.026187 -4.028481 2.925306 0.590721 -1.029846 -0.731549 -0.232141 2.386808 -1.723903 -2.895414 1.370663 -1.533505 -2.599297 -2.143721 -1.503305 0.883690 0.794492 0.239815 -3.828014 -2.017855 3.559836 -2.186294 4.535045 1.873485 -0.612016 1.799172 2.074477 -1.431653 -1.123221 -1.899304 1.157826 0.614111 -2.455753 -1.118680 -1.269760 1.972522 1.744818 -0.383044 -0.961513 -1.170971 3.658937 -1.209141 -0.939948 0.233675 -1.483396 -2.027341 1.961641 1.461914 -1.103317 0.514650 -3.642140 -0.661876 -3.290038 -2.230179 2.838825 -0.390907 1.322845 0.062740 -0.098679 -0.655089 0.714828 1.267021 -0.887820 0.348393 4.661206 2.292452 -1.383275 0.117698 -4.298468 3.195161 -2.359353 -1.838977 -0.098403 -0.295908 -1.016348 -1.101793 -1.026210 2.738954 2.451974 -1.827658 -1.773319 1.444303 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isEulerianCycle() = -1.082933 -0.831529 0.069031 -1.938998 1.104396 1.664407 0.584831 -1.327931 -2.423657 -1.183048 0.689073 -3.154394 -1.483659 2.729463 -0.941877 1.756464 3.390300 0.405179 -1.192261 -0.722360 2.024435 -0.478375 3.375957 3.855029 -2.303297 0.048840 -0.061838 1.382003 0.524809 0.805529 0.897234 -1.998760 0.322403 -1.659559 0.615660 -1.312701 -0.647167 1.198425 1.596896 -4.375630 -0.166040 1.853231 0.740724 -0.119192 0.288843 0.083710 2.217915 2.051339 -0.175168 1.685099 1.622464 0.267931 1.311196 0.037358 0.717914 0.343357 0.592284 -0.734073 -0.396710 -0.142781 -0.782045 -0.538631 0.478596 2.736718 3.108181 -0.037570 -1.273169 0.347012 0.715427 0.795631 0.793425 2.059748 -0.541505 0.737203 1.372792 -2.840073 0.434896 -4.326028 1.080085 -3.814840 -1.923055 0.110154 1.926086 2.327748 1.245339 -0.460870 3.934569 -0.940347 -1.181158 2.489374 3.007445 -1.710554 -0.540060 -0.967136 -1.513836 0.261073 -1.066505 0.124637 0.154590 1.522288 -2.223094 -1.347070 0.422260 0.351308 -1.473829 -0.928158 -0.195562 2.181510 -2.304604 -1.665902 -1.103078 2.061180 -0.093813 -4.018698 -1.054780 -2.007204 -0.402542 0.532988 -2.036237 -1.987605 1.218661 0.509020 -0.789794 -0.728131 -1.501244 1.919882 1.328959 0.303465 -0.354061 1.248094 0.576091 3.179765 0.530185 -1.565288 0.241101 0.931916 -0.452203 0.893713 -1.303141 -0.698087 0.548974 -2.230679 -0.436185 1.036345 -1.459927 -0.674636 -0.105425 -0.411896 -0.079612 8.172437 -0.801754 2.818212 2.293834 -2.190967 1.785039 -0.366597 0.398337 0.848111 1.609591 1.399558 -3.543515 -2.062137 2.204406 3.780423 1.419379 -1.896999 -0.689267 0.844813 0.304855 -0.216234 1.508855 0.247165 -0.006510 -1.509427 -0.429671 1.251757 4.665629 -1.012282 -0.478471 0.379773 1.519033 -0.492923 -2.526578 -0.292745 -2.596787 -0.114415 0.883528 0.466914 1.325975 2.969003 -4.008901 2.573492 -0.181392 0.048405 2.281368 0.443793 -1.754506 -3.428416 -0.801351 1.178813 2.434431 -0.629497 0.050124 0.372588 -3.088731 0.105533 0.553815 0.758828 -2.014119 2.646282 -0.249191 -1.288529 -0.956374 0.189860 -1.133380 -1.278604 -1.096580 1.902497 0.901694 -2.244868 2.227789 0.493677 -0.942377 0.359454 -0.384807 2.209783 -2.097388 -2.398370 1.523211 -0.848953 -1.518635 -0.796934 -0.879107 1.199033 0.917947 0.080900 -2.128614 -2.298059 2.327984 -0.874576 3.161812 1.433033 -0.611193 1.494000 0.557235 -1.126369 -1.272766 -1.715773 0.114840 0.146076 -1.398685 -1.958804 -0.822127 2.004178 2.280942 0.039907 -1.562495 -0.373914 2.877294 -1.638650 -0.286699 0.831814 -0.503428 -1.749214 0.757486 1.378513 -2.095945 0.447875 -2.216371 0.268122 -1.560537 -1.237992 2.015768 -0.772342 0.750707 0.127774 -0.517511 -0.178139 0.989537 1.435605 -0.190058 0.750687 3.534246 1.158646 -0.154596 0.064426 -3.097844 1.592670 -2.849060 -2.036882 -0.164074 0.800899 -1.633623 -0.602792 -0.065890 2.195553 1.595949 -0.924003 -1.248118 0.887562 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -3.587273 -3.076922 0.340108 -6.508570 4.604466 5.471665 2.341659 -3.931651 -8.418921 -4.001041 2.279716 -10.555705 -5.935056 9.289168 -3.238586 5.709217 11.660858 1.209296 -3.459315 -3.131715 7.440834 -1.969284 12.097686 13.280539 -8.848387 0.278921 -0.715465 4.912740 1.973418 3.282615 3.203696 -7.056567 1.255213 -5.483843 2.997712 -4.704605 -2.260186 4.197281 5.063370 -15.379217 -1.006594 7.206865 2.341178 0.278866 1.480289 1.926622 7.806959 7.177608 -1.513224 6.721666 5.923331 0.351983 5.239765 0.313185 2.062498 0.909181 2.027637 -1.677180 -1.736583 -0.079911 -3.255144 -2.496199 1.922157 9.289059 11.419645 -0.645489 -4.541347 1.025666 2.261328 2.912785 3.158337 7.784382 -0.567968 1.879660 6.282864 -8.859531 0.718760 -16.086015 3.756666 -14.780326 -6.869620 -0.449736 7.235582 7.119520 4.357590 -2.524233 14.200243 -2.854960 -4.047491 9.124332 10.107954 -5.716837 -1.627612 -3.800340 -5.494362 0.601932 -3.799544 0.349201 1.367177 5.096738 -7.796436 -5.163914 1.392353 0.526207 -5.070318 -3.650913 -1.487148 7.696569 -7.924733 -5.582647 -4.919773 7.272658 -0.335742 -13.777258 -3.748336 -7.090552 -1.394842 2.004733 -6.313884 -5.693489 4.273486 1.633177 -3.136253 -2.487983 -4.761338 7.509883 5.112226 1.041422 -1.041536 4.644259 1.231206 10.435405 2.525461 -5.103478 0.037951 3.684911 -1.480275 3.413765 -4.997560 -1.842388 3.803973 -7.250440 -1.932213 2.601374 -4.681819 -2.395799 0.246475 -2.025877 0.008029 27.593164 -2.746188 9.521483 7.743372 -7.303957 6.964306 -0.493499 2.106886 3.869567 6.373343 4.495256 -12.202003 -7.345129 7.551061 12.750973 4.594959 -7.582587 -2.597992 3.177318 1.669317 -1.052293 5.015815 1.170671 0.120488 -5.171200 -0.944184 3.372225 16.333002 -3.957183 -2.580840 1.343690 6.196673 -2.075304 -8.759484 -1.144935 -8.990363 -1.026480 2.914263 1.743054 4.468086 10.269424 -14.921272 8.791259 -0.777729 0.407918 7.908679 1.340745 -5.567801 -12.404175 -2.709973 3.559306 8.362901 -1.167252 -0.130609 1.322655 -10.809354 1.279498 1.626878 2.947307 -6.957684 9.555640 -1.797469 -4.278766 -3.377783 -0.432407 -4.304385 -4.069816 -3.927710 6.377457 3.635416 -8.584019 7.030890 1.235812 -3.621227 1.314113 -0.687879 7.771694 -6.875162 -8.508467 5.231149 -3.459880 -6.149672 -3.964461 -2.925767 3.804359 3.057819 0.172415 -7.752844 -9.110052 9.151731 -3.474016 11.038336 5.275041 -2.211321 6.079258 2.660993 -4.922011 -5.040966 -6.212820 0.944308 0.474146 -4.570378 -6.691737 -2.897077 6.622254 8.227373 0.381193 -4.613641 -2.255640 10.796615 -6.222257 -1.283135 3.528229 -1.425317 -5.203190 3.658539 5.239392 -7.180058 1.117499 -7.871277 1.060592 -5.029004 -3.864798 7.374992 -3.482948 2.384826 0.204563 -1.552045 -0.903365 3.347154 4.822172 -1.069927 1.535711 13.173342 5.463927 -1.479022 0.536750 -10.378305 5.818035 -9.786642 -6.458450 -1.280763 1.961766 -5.466722 -1.448945 0.227322 7.673644 6.034261 -3.712688 -4.835867 2.791093 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::size() const = -0.040667 0.044331 0.279271 -0.267343 0.567511 0.003685 -0.019490 0.073874 -0.217824 -0.392828 -0.182628 -0.272303 -0.568831 0.283335 -0.154695 0.177913 0.223161 -0.150177 0.034340 -0.345186 0.329901 -0.273914 0.425271 -0.034150 -0.596305 0.061232 0.083120 0.605991 0.286539 0.466088 0.054247 -0.186288 -0.093353 0.098064 0.402398 -0.180504 0.179239 0.148489 -0.303006 -0.480567 -0.184185 0.308132 -0.149294 0.331915 0.076925 0.676706 0.265116 0.312465 -0.351978 0.392438 0.502835 -0.019070 0.260639 0.116746 -0.368674 -0.146137 0.326461 -0.339961 -0.246125 0.110117 -0.004299 -0.683862 0.062940 0.198813 0.540650 -0.405404 -0.130871 0.365312 -0.047437 0.143440 0.153102 0.334378 0.081120 -0.036023 0.488536 -0.109734 -0.068876 -0.535973 0.127974 -1.096967 -0.242290 -0.536311 0.226431 0.354644 -0.092842 -0.044318 0.775742 0.112409 -0.097557 0.348879 0.320411 -0.159475 -0.002836 -0.557307 -0.031652 0.068540 -0.333692 -0.383206 0.090276 0.566496 -0.014004 -0.090247 0.014405 -0.383012 -0.214978 -0.117278 -0.606944 0.431897 -0.773211 -0.120758 -0.653213 0.274664 0.069107 -0.478452 -0.016804 0.055771 0.266121 -0.078724 0.471274 0.173426 0.087645 0.210224 -0.133548 0.189266 -0.416998 0.436475 0.301094 -0.231215 0.116364 0.400009 0.065556 0.112975 0.374273 -0.086692 -0.684917 0.418724 0.022860 -0.019519 -0.274409 0.207890 0.333954 -0.401982 0.046067 0.028510 0.014961 -0.165024 -0.290430 -0.474819 0.258451 0.398103 -0.011995 -0.069786 -0.064266 -0.168910 0.229003 0.132756 -0.022643 0.357023 0.027495 0.151319 0.019793 -0.289746 0.281453 0.242921 0.061834 -0.430126 -0.043308 -0.001112 0.227093 -0.008855 -0.022697 0.522130 -0.242117 0.141763 0.000567 -0.318136 0.557268 -0.066754 -0.258991 0.328149 0.210126 -0.435806 -0.401873 -0.117990 0.000869 -0.431039 0.145574 0.103298 -0.000284 0.401149 -0.784231 0.287391 0.313586 -0.034495 0.100646 -0.389052 0.334533 -0.681729 -0.188029 0.180563 0.251388 -0.080156 0.097535 -0.133445 -0.378815 0.362755 0.138787 0.246538 -0.035840 0.172696 -0.098761 -0.020827 -0.202249 -0.169408 -0.232727 0.347610 -0.111208 0.089924 0.106052 -0.933089 0.228878 -0.539070 -0.129159 0.169636 0.220536 0.478585 -0.213319 -0.237523 0.255253 -0.131453 -0.612910 -0.476526 0.070940 0.166799 -0.125754 -0.186744 -0.147425 -0.511364 0.191479 -0.257515 -0.128314 0.167606 0.121583 0.425564 0.133936 -0.355144 -0.218790 -0.053974 0.068437 -0.235429 0.328508 0.196433 0.163410 0.162598 0.398591 0.131838 0.205199 -0.043420 0.409726 -0.264377 -0.399065 0.247498 0.002721 -0.083011 0.601473 0.261088 -0.176477 -0.295503 -0.483006 0.201644 -0.049539 -0.085701 0.150730 -0.452263 -0.180690 0.429668 0.016655 -0.409748 0.353219 0.042016 -0.291141 -0.582137 0.909398 0.764745 -0.306314 0.305987 -0.275168 0.282538 -0.417011 -0.083683 -0.240292 0.066641 0.195978 0.206886 0.127126 0.156305 0.149634 -0.182417 -0.202393 -0.300500 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::DFSUtil(int, bool*) = -0.665191 0.813752 1.679168 -1.931703 1.569008 2.051790 0.591923 -0.361963 -1.789692 -2.347606 0.197645 -3.908495 -3.540407 2.868086 -1.174658 0.090797 3.944018 0.069157 -0.727310 -1.017805 1.269376 0.067824 4.253515 4.506816 -3.691769 0.333465 0.304641 2.124761 0.777105 1.453008 0.950328 -3.162298 0.467645 0.043855 1.344349 -0.864874 -0.554438 -0.500296 -0.635200 -5.441309 -0.626644 2.552765 -0.934936 0.027921 0.785111 1.245835 4.322749 2.377593 -0.636034 1.320941 1.780815 0.664623 1.395337 0.034687 0.387431 -1.201398 0.841728 -1.625757 -1.083516 0.198754 -0.470319 -2.353127 -0.665945 3.473789 3.726614 0.038487 -1.198496 -0.268583 0.153152 0.679116 0.134667 2.426752 1.312165 2.230746 2.227575 -1.281785 0.417301 -3.952031 0.904793 -5.336750 -2.879775 -1.574046 3.128299 3.274030 0.391114 -1.797920 4.659278 -0.239331 0.028652 3.271485 4.469289 -1.856825 -0.769439 -1.810071 -1.317250 1.097321 -1.676630 0.718845 -0.878212 1.248699 -2.688469 -1.386954 0.431285 -0.413043 -1.951062 -0.068300 -0.720395 2.498563 -3.369213 -0.546565 -2.904477 1.191415 0.964837 -5.067675 -1.923234 -0.982434 0.988169 1.058834 -1.432683 -1.288932 1.050974 0.746180 -0.666910 -0.272120 -3.268467 3.087964 1.732767 -0.029612 0.311688 2.080838 1.688714 2.864892 1.211209 -0.941194 -0.495938 0.899746 -0.691814 0.286037 -1.133148 0.077841 0.957183 -2.002731 -0.590668 1.256802 -1.731740 -1.381640 -2.183223 -1.432958 0.893124 9.283231 -0.835834 2.575577 1.792205 -2.883769 1.788582 -0.732016 -0.806097 0.704408 1.773485 2.626044 -3.434004 -1.987400 2.305432 4.448153 1.448956 -2.273835 1.247450 0.973257 0.162588 -1.520455 2.172325 0.600947 0.278584 -1.568903 -0.508491 2.401591 4.993010 -0.990361 -2.474417 0.287423 1.281822 0.705530 -1.502750 0.269729 -0.127969 -0.301168 1.686682 0.422194 1.575072 3.517171 -5.123378 2.871770 0.787840 -0.415351 2.319945 -0.155207 -1.664086 -2.482785 0.415222 2.493210 2.529342 0.367610 -0.283536 -0.631720 -3.576906 -0.055646 1.127975 1.427254 -2.086750 3.019879 -0.074392 -1.794302 -2.146633 -1.940980 -1.159073 -0.236167 -2.315297 1.766102 0.682252 -4.577804 3.575932 0.127164 -1.409480 -0.732856 -1.505876 2.346839 -3.360300 -3.524829 1.165858 -1.914220 -3.869793 -1.148851 -1.379176 0.982153 1.049557 0.119616 -2.692833 -2.840909 3.700292 -0.263399 3.122826 1.966419 0.457827 3.224916 1.668192 -1.692237 -1.107185 -2.901045 2.442888 -0.360715 -1.816778 -0.477687 -1.333654 1.775061 3.764804 -0.995571 -1.473344 -0.962597 2.810886 -2.120544 -1.557601 1.113727 -0.058095 -1.524915 1.628528 1.701301 -2.046459 -0.257951 -3.300989 -0.238465 -1.431956 -2.367589 1.528767 -2.171910 0.413388 1.880655 -0.850005 -1.526356 1.294939 0.448938 -0.661349 0.389566 3.925682 3.137892 -1.604004 1.463432 -3.845575 2.413883 -3.998358 -2.964025 0.122147 -0.315119 -0.411415 -0.861002 -0.425563 1.549246 1.684940 -1.559951 -1.744101 1.294904 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::getTranspose() = -0.941774 0.708057 1.803536 -3.047069 3.126717 3.393726 1.120693 -0.705028 -3.072884 -2.779912 0.218628 -5.045181 -4.733765 4.089044 -1.711423 0.861068 5.491447 0.009332 -0.924867 -1.482059 2.591726 -0.486219 6.199498 6.235727 -5.582209 0.702467 0.008235 2.790272 0.717422 3.315758 0.945335 -4.493980 0.603112 -0.409339 2.471252 -1.881891 -1.153901 -0.031893 -0.318845 -7.979142 -0.977914 4.229094 -0.700251 0.595867 1.386552 2.381616 5.894187 3.380552 -1.456246 2.707996 2.720344 0.724432 2.614370 0.201684 0.655422 -0.804639 1.604860 -1.257392 -1.403943 0.292568 -1.416564 -2.955639 -0.057283 4.769758 5.655897 -0.499937 -1.903896 -0.375342 0.162074 1.153481 0.636183 4.075216 1.481557 2.166094 3.653923 -1.888708 0.612462 -6.095493 1.632142 -8.091701 -3.937019 -2.271804 4.039108 4.559171 1.296645 -2.953690 7.294065 -0.630263 -0.350132 4.425104 5.675044 -2.633075 -0.586771 -2.635609 -2.438282 0.684028 -1.956884 0.199390 -0.264226 1.661563 -3.812467 -2.078292 0.456918 -0.657149 -2.714076 -0.535482 -1.573983 3.734095 -4.897491 -1.232661 -4.045075 2.392695 0.566597 -7.398463 -2.445660 -2.150280 0.258037 1.102981 -1.765380 -1.740475 1.844239 1.360185 -1.427302 -0.549067 -4.001041 5.019920 2.792579 -0.036258 0.279747 2.556820 1.307625 3.931446 2.226360 -1.395846 -1.025384 1.653447 -0.639163 0.745874 -1.859960 0.400612 1.848271 -3.311635 -0.959887 1.380325 -2.068474 -1.038921 -2.462912 -2.202864 1.122082 13.841148 -1.754917 4.167710 2.534293 -4.167105 3.442510 0.050134 -0.335849 1.821514 3.039199 3.221225 -5.395838 -3.033354 3.404824 6.145079 1.874455 -3.852197 0.969580 1.375901 0.297994 -1.569236 2.727592 0.689976 0.242143 -2.381285 -0.495821 1.928747 7.861824 -1.582634 -3.573047 0.684592 2.479898 -0.246167 -2.484996 -0.046768 -1.946531 -0.779801 2.040388 0.321982 2.180171 4.970568 -7.921060 4.264241 0.403307 -0.800400 3.893944 -0.387926 -1.756911 -4.576493 -0.153011 2.863344 3.799911 0.256254 -0.708567 -0.596164 -5.148568 0.720666 1.227951 2.064574 -3.389575 4.608996 -0.438107 -2.718814 -2.609860 -2.845816 -1.798485 -0.711203 -3.294491 2.412958 1.044458 -6.590260 4.293898 0.203646 -2.140272 -0.230626 -0.903712 3.181352 -3.869576 -4.878095 1.891631 -2.348383 -4.987327 -2.169401 -1.825118 1.540353 1.506818 0.025224 -4.291112 -5.184433 5.149393 -1.126545 4.677407 3.047693 0.411067 4.640273 2.763486 -2.906462 -2.339165 -4.233792 2.959825 -0.369707 -2.107431 -1.198348 -2.041192 2.610619 5.208746 -0.522241 -1.470954 -1.817188 4.964234 -2.550055 -1.465047 2.024353 -0.852500 -2.093821 2.263762 2.784180 -2.607142 -0.626408 -4.548724 0.160294 -2.016045 -2.553613 2.926236 -3.112792 0.568534 1.890154 -0.895393 -2.206257 1.733760 0.941423 -1.011931 0.018823 6.426404 3.910837 -2.232970 1.971607 -4.813535 3.527024 -5.419553 -3.291911 -0.720672 -0.433989 -0.836744 -0.715772 -0.265528 2.846826 2.598917 -2.124939 -2.102701 1.243505 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::~Graph() = -0.351763 0.226675 0.412163 -1.113054 0.679789 0.704470 0.116981 -0.103067 -1.025317 -1.014596 -0.112931 -1.812911 -1.332708 1.198785 -0.479902 0.022040 1.813536 0.200151 -0.248400 -0.522193 0.580886 -0.073664 1.499210 1.989669 -1.610051 0.213543 0.276754 1.006479 0.132490 0.992973 0.774545 -2.014328 -0.413581 0.474966 1.277769 -0.589271 -0.493304 0.297219 -0.013952 -2.873509 -0.317399 2.039538 0.717695 0.095324 0.669592 -0.320921 1.619925 0.863988 -0.425819 0.689755 1.003504 0.858945 0.937370 -0.240824 0.276244 -0.108754 0.752810 -0.838785 -0.181578 0.319985 -0.335409 -0.106089 -0.018871 1.542279 1.738933 -0.127422 -0.768598 -0.593410 0.411875 0.529551 0.007861 1.334731 -0.106970 0.887109 0.773059 -0.462701 0.328219 -2.564555 1.334923 -2.474844 -1.311592 -0.594992 1.294938 2.128881 0.023546 -0.757705 2.452601 -0.530655 -0.042429 1.169209 1.747173 -0.075643 -0.054618 -0.786584 -1.089165 0.556703 -0.393605 -0.156231 -0.150282 0.945195 -1.058285 -0.755495 0.101805 -0.338276 -0.990490 0.252784 -0.429349 1.119921 -1.187328 -0.303330 -1.177210 1.246797 0.466233 -2.120803 -1.191877 -1.082615 -1.281335 0.348556 -0.910809 -0.571846 0.529353 -0.022279 -0.626695 0.290100 -1.695847 1.329742 0.847356 -0.382351 -0.101050 0.799097 0.515989 0.976142 -0.132161 -0.809630 -0.160002 0.859707 -0.034411 -0.154751 -0.969861 0.124648 0.330285 -0.689113 -0.240017 0.178974 -0.767560 -0.614286 -1.401947 -1.204623 0.192401 4.685776 -0.672625 1.183905 0.859356 -1.013851 1.340635 0.538457 -0.257650 0.343762 1.042919 1.287134 -1.021613 -0.944636 0.980313 2.116143 0.560302 -0.345063 -0.145354 0.639045 -0.098966 -0.275042 1.283135 -0.078849 -0.214477 -0.537775 -0.265087 0.549675 1.958512 0.045724 -1.326974 -0.230704 1.975305 -0.178921 -0.445076 0.270062 -1.655128 -0.265664 0.440379 0.118051 0.962207 1.562833 -3.239139 1.441489 0.805600 -0.056355 1.313114 -0.286524 -0.416756 -2.330277 0.113803 0.851197 1.404358 -0.522499 0.186757 -0.271211 -1.668631 0.090144 0.334538 0.817531 -1.545231 1.612702 -0.455320 -0.629039 -0.525558 -0.671452 -0.971780 -0.701217 -1.322085 0.732203 1.217140 -1.537969 1.403719 0.200297 -0.323670 -0.181420 -0.507731 0.706241 -1.327744 -1.316589 0.371751 -0.456027 -1.199777 -0.157305 -0.883914 0.681184 0.219588 0.405957 -1.242489 -0.995064 1.449093 -0.269706 1.547704 0.964816 -0.146233 0.631479 1.001587 -0.564991 -0.251450 -1.025855 0.721982 0.138542 -0.380387 -0.802318 -0.700783 0.544673 1.710113 -0.207476 -0.762392 -0.859979 1.526747 -0.264901 -0.162737 0.219017 -1.679885 -0.457319 0.427896 0.577444 -0.842861 -0.125798 -1.906699 0.487580 -0.619080 -0.546313 0.993845 -1.060163 -0.047131 0.719323 -0.976511 -0.777299 0.687256 0.764468 -0.657861 0.345111 1.733350 -0.012800 -0.104912 0.980075 -1.603525 0.744124 -1.596916 -0.643739 -0.725789 -0.543188 -0.633339 -0.494345 -0.482957 0.806575 0.727318 0.267741 -0.788044 0.580785 +PE-benchmarks/euler-circuit-directed-graph.cpp__main = 0.061228 -0.269784 1.536180 -1.004575 1.786542 -0.946093 0.271163 0.675159 -1.034825 -0.880725 -0.367079 -1.020431 -1.591747 1.036179 -1.023909 -0.077460 1.218388 0.101610 0.632488 -1.002730 0.461258 -1.014195 1.438733 0.258436 -1.994220 0.063675 -0.530609 1.379551 0.309831 2.004964 0.999325 -1.391461 -0.642969 0.763517 1.821475 -1.178472 -0.333716 0.458098 -1.070956 -2.922364 -0.751540 2.735241 -0.846482 0.948879 2.140945 3.933245 0.961169 0.736158 -1.425491 2.569399 0.290316 0.011415 1.788943 -0.158705 -1.338988 -0.191124 1.444727 -0.728071 -1.397704 1.340698 -1.071751 -1.278957 1.070035 1.222342 1.947266 -1.403356 -0.906361 0.154911 0.600079 0.560416 0.459459 1.898667 0.259747 0.795389 1.613144 0.276187 -0.229283 -2.053334 0.897166 -3.917027 -1.345115 -1.133037 1.477291 1.625637 -1.254604 -0.981360 2.792111 0.395336 -0.107818 2.620753 0.861708 0.602004 0.120034 -1.688257 -0.829813 -0.479478 -0.319932 -1.884630 0.461558 1.855567 -0.873631 -0.470795 -0.786823 -1.202050 -0.626937 0.663695 -1.602889 1.485356 -2.507804 -0.926909 -2.081060 1.428385 0.095870 -1.899165 0.105312 0.242814 0.894083 0.654672 1.073843 1.152018 1.134205 0.454776 -0.775236 1.773333 -2.019162 2.538441 0.211182 -0.215735 -0.114616 1.618709 -0.645090 -1.089533 1.199295 -0.196674 -1.452480 1.710489 -0.059157 -0.126599 -0.734187 0.751803 1.260820 -0.779256 -0.407517 -0.753218 -0.385432 -0.907111 -2.344964 -1.712524 0.470959 1.578606 -1.175322 0.900098 -0.464955 -1.194045 0.990200 1.296791 0.508267 0.399948 1.094510 1.466153 -0.419326 -0.546297 0.956516 1.134839 0.185063 -1.123233 0.200048 0.358010 0.365307 0.812479 0.921231 1.370983 -0.989309 -0.631773 0.227944 -2.443419 2.711589 0.429220 -1.597049 -0.288880 1.499923 -0.980472 -0.678204 0.495694 0.328148 -1.564956 0.344283 -0.108668 -0.133580 1.056398 -3.687768 1.455529 0.497457 0.260094 0.190456 -1.398738 0.547467 -3.881304 -1.619191 0.399700 0.981813 0.039399 -0.500353 -0.169049 -0.902287 1.732527 -0.116383 1.431269 -0.351758 1.833424 -0.977397 -1.029229 -0.142518 -0.684540 -0.639408 0.913183 -0.889003 0.264193 1.022949 -2.561344 0.425642 -1.393225 -0.573489 0.438791 1.896475 1.123400 -0.544129 -1.149368 0.166907 -0.824177 -2.703754 -2.097402 -1.209152 -0.027644 0.167402 -0.735874 -0.793959 -2.027121 0.681453 -1.220527 0.292503 1.032058 -0.493599 2.730151 1.157628 -1.316689 -0.157147 -1.746507 0.786675 -0.392253 2.092366 1.024480 -0.431764 0.343200 1.017517 -0.255724 0.450063 -1.419097 1.912304 0.096940 -0.080894 0.563234 -2.382270 0.493738 1.619722 0.849502 -0.405871 -0.196817 -1.475154 1.355818 -1.213334 2.087599 0.724512 -1.827137 -1.697433 0.033044 -0.096086 -1.665409 -0.185494 0.311941 -1.163686 -1.025609 2.854004 2.811260 -1.050278 2.028047 0.080990 1.364621 -1.087175 0.430430 -2.210577 -0.479771 1.021501 0.850651 0.097018 0.357375 1.579635 -1.386288 -0.643818 0.040284 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::addEdge(int, int) = -0.310356 0.370519 0.437942 -0.639530 0.837560 1.363459 0.329668 -0.594777 -0.799503 -0.434168 0.128839 -1.578031 -1.225465 1.289019 -0.451576 0.523856 1.702907 0.029357 -0.483686 -0.402659 0.691314 0.175552 2.046184 1.958249 -1.476584 0.263286 0.363219 0.608197 0.307598 0.735689 -0.247897 -1.077134 0.531001 -0.583683 0.126834 -0.457896 -0.364174 -0.345532 0.355993 -2.263091 -0.195310 0.563563 -0.383862 -0.038759 0.158155 0.621739 1.870615 1.037617 0.000668 0.716148 0.627394 0.120916 0.573940 0.102722 0.469064 -0.018607 0.887192 -0.200584 -0.443671 -0.221550 -0.249899 -0.813232 -0.350113 1.437454 1.558311 0.075086 -0.559310 0.189520 0.002884 0.174193 0.050704 1.049263 0.347260 1.028009 0.846642 -0.824634 0.434397 -1.282992 0.005629 -2.034430 -1.113853 -0.512184 0.858296 0.541339 0.721212 -0.249135 2.020190 -0.165070 -0.103079 0.895344 1.936934 -1.362523 -0.321384 -0.371963 -0.429551 0.218703 -0.660274 0.439492 0.024769 0.096520 -1.219053 -0.871043 0.467658 0.136839 -0.857009 -0.107634 -0.194802 0.946068 -1.457396 -0.575152 -1.065743 0.122097 -0.123655 -2.224106 -1.032616 -0.292309 0.754762 0.440078 -0.676007 -1.227821 0.539711 0.642037 -0.206954 -0.672042 -0.358018 1.078592 0.921857 0.118483 0.187222 0.626642 0.731242 1.872717 0.833027 -0.397937 -0.063926 0.224047 -0.345073 0.304150 -0.312430 -0.104709 -0.069869 -1.117062 0.188702 0.982841 -0.762244 -0.152951 -0.220245 -0.264104 0.233398 4.057892 -0.410943 1.257443 0.808552 -1.502563 0.320891 -0.693294 -0.366752 0.306279 0.706423 1.101770 -1.750861 -0.885432 1.060143 1.938363 0.679429 -1.420778 0.496555 0.226936 0.094553 -0.546533 0.808444 0.234001 0.313068 -0.796290 -0.232184 0.950050 2.583353 -0.912435 -1.214432 0.353930 -0.000830 0.187995 -0.865424 -0.101111 -0.241793 -0.054740 0.642605 0.138197 0.566665 1.506995 -2.031159 1.278317 -0.118459 -0.609921 1.400577 0.251082 -0.833235 -0.311152 0.042684 1.075200 1.089540 0.195174 -0.330503 -0.208289 -1.553816 -0.101789 0.439070 0.438735 -0.886286 1.322549 0.383517 -1.041164 -0.843093 -0.554353 0.076894 -0.391584 -0.790989 0.851683 -0.207887 -2.400611 1.505451 0.315493 -0.703418 -0.006702 -0.517086 0.905731 -1.298610 -1.549524 0.665413 -0.690392 -1.088916 -0.301836 -0.500312 0.446524 0.807351 0.435028 -1.376202 -1.287745 1.380957 -0.107973 1.342839 0.874180 0.249785 1.299158 -0.119255 -0.833886 -0.741973 -0.930984 0.752010 -0.075934 -0.857694 -0.363002 -0.653205 1.052399 1.598757 -0.258411 -0.534044 -0.603196 1.192064 -1.252393 -0.368133 0.604074 0.816576 -0.979581 0.446742 0.815660 -0.740089 -0.068982 -0.906958 -0.581544 -0.783434 -1.024799 0.758128 -0.834869 0.262200 0.717131 -0.364347 -0.453528 0.575906 0.012088 -0.050536 0.217600 1.481947 1.469093 -0.865819 0.370824 -1.531601 1.085940 -1.695809 -1.367491 0.420398 -0.072125 -0.500250 -0.463062 -0.039683 0.830641 0.622936 -0.939169 -0.578776 0.284859 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::~list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::~_List_base() = 0.006833 0.165219 0.393724 -0.217897 0.245057 0.030167 0.084887 0.213061 -0.284149 -0.347130 -0.079194 -0.370930 -0.480802 0.363593 -0.149243 -0.168131 0.607403 0.226503 0.023250 -0.236433 0.012430 -0.142318 0.535234 0.597452 -0.562913 0.114501 0.045837 0.352823 0.115715 0.466581 0.005610 -0.476136 0.070389 0.245102 0.320267 -0.318763 -0.017692 -0.071553 -0.384978 -0.900392 -0.033268 0.369395 0.058010 0.031056 0.183971 0.413099 0.578294 0.293805 -0.152753 0.266981 0.272675 0.185172 0.175268 0.043140 0.028540 -0.096718 0.298490 -0.285308 -0.282950 0.167162 -0.001216 -0.579997 -0.133582 0.392510 0.538650 -0.048680 -0.051851 -0.236707 -0.030570 0.123793 0.098355 0.183132 0.223918 0.197457 0.265815 0.048157 0.055408 -0.584506 0.084148 -1.182482 -0.413686 -0.426928 0.676762 0.416183 -0.123267 -0.200586 0.559186 0.023693 0.230627 0.271655 0.535620 -0.159468 -0.168475 -0.248144 -0.151618 0.332483 -0.245232 -0.046660 -0.013956 0.152249 -0.301172 -0.185189 0.226984 -0.136983 -0.250302 0.216562 -0.152116 0.367550 -0.655807 0.003581 -0.588544 0.085116 0.221540 -0.577334 -0.057703 -0.102948 0.217323 0.208934 -0.063525 0.023736 0.088895 0.104035 -0.137200 0.138861 -0.696790 0.500988 0.060153 -0.114703 0.127661 0.170235 0.148529 0.159807 0.233121 -0.177045 -0.154093 0.264069 -0.166499 -0.104430 -0.318176 -0.016655 0.183964 -0.290618 0.099010 -0.029072 -0.283988 -0.236423 -0.427616 -0.199369 0.281223 0.819456 -0.062733 0.253159 0.112594 -0.337952 0.261110 0.038954 -0.122577 0.159970 0.345582 0.239839 -0.059242 -0.234403 0.035046 0.501326 0.229468 -0.230113 0.078910 -0.053037 -0.015610 -0.046372 0.270432 0.090174 -0.041356 -0.201584 -0.068057 0.133681 0.541922 0.041397 -0.492794 -0.077912 0.174823 -0.048387 -0.114095 0.093111 0.094748 -0.004793 0.072130 -0.030532 0.192607 0.462851 -1.053532 0.449889 0.091533 -0.071470 0.264295 -0.141775 -0.072384 -0.456189 0.143166 0.312177 0.532294 0.104735 -0.029857 0.016019 -0.429634 -0.053740 0.072933 0.281700 -0.264105 0.304422 0.072418 -0.290232 -0.274180 -0.452270 -0.028247 0.023555 -0.327305 0.146631 0.235173 -0.968816 0.407371 -0.166797 -0.235312 -0.060262 -0.085828 0.118285 -0.505133 -0.436953 0.012010 -0.138583 -0.604160 -0.280835 -0.185604 0.222895 -0.108104 0.023793 -0.178210 -0.351653 0.464239 -0.062643 0.216034 0.284615 0.039638 0.512440 0.425449 -0.204963 -0.104333 -0.166069 0.326515 -0.376105 -0.031477 0.304667 -0.233610 0.154794 0.677674 -0.032123 -0.064659 -0.115720 0.501815 -0.146253 -0.323783 0.251873 -0.149026 0.080317 0.425222 0.317468 -0.437193 -0.221707 -0.456225 -0.039168 0.122638 -0.233039 0.247780 -0.451657 0.054272 0.317456 -0.058197 -0.400621 0.257199 -0.072663 -0.208961 -0.083260 0.592842 0.524612 -0.316291 0.504059 -0.354573 0.243476 -0.546508 -0.210264 -0.194906 -0.095281 -0.066929 0.082423 -0.130343 0.148835 0.094349 -0.051291 -0.234126 0.111588 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_clear() = -0.146747 2.197092 1.609386 -1.150671 2.439479 2.017526 0.481376 0.215253 -0.834180 -1.868663 -0.915427 -2.410067 -3.457661 2.307862 -0.424059 0.244727 3.517216 -0.079109 0.020129 -0.887595 1.446108 -0.897322 3.502688 2.973231 -3.566327 0.803051 1.852169 1.418140 0.302730 2.488554 -0.839761 -3.057058 0.555625 -0.307456 1.811271 -1.183812 -0.434713 -1.344249 -0.620575 -4.923859 -0.729660 1.451221 -1.313535 0.186179 0.318708 1.647040 4.679172 1.931177 -1.443178 0.882881 1.625122 0.433607 0.899218 0.280134 0.152936 0.059822 1.334942 0.076613 -1.214284 0.373160 -0.336975 -2.665591 -0.509751 2.610121 3.192474 -0.542392 -0.888692 0.798109 -0.420422 0.221940 -0.738624 2.070139 1.776831 1.819836 2.360569 -1.733279 -0.317788 -4.332334 0.150839 -6.250447 -2.715023 -2.842597 1.274541 0.909208 0.995742 -1.109804 4.331726 -0.159239 1.076294 1.834139 4.307677 -2.400951 -0.524097 -2.495156 -0.882586 0.847613 -1.455332 -0.098641 0.524364 -0.643292 -2.116351 -2.503743 1.273496 -0.329869 -1.801051 -0.754332 -1.258502 2.398780 -2.960497 -1.061895 -3.989938 -0.317621 -0.136906 -4.421339 -0.912395 0.174414 1.226281 1.075003 -0.157905 -2.339552 0.798929 1.967094 -0.886839 -1.365268 -0.965532 3.284151 1.968415 -0.539192 1.080884 1.149424 1.771731 2.655351 3.144121 -0.463663 -1.346704 0.884496 -1.015825 -0.532042 -1.310755 0.216260 1.014100 -2.066257 -0.167385 1.771700 -1.392627 -0.320896 -0.024727 -2.343702 1.499157 7.651912 -0.979924 1.356684 0.176134 -3.181205 2.221750 -0.451525 -1.896386 0.623257 1.898226 2.881034 -3.448574 -1.586106 1.743579 3.500133 1.163083 -2.873665 -0.095573 -0.285704 0.064681 -1.135952 1.329154 0.960116 0.300168 -1.122497 -0.481329 1.471171 5.028964 -1.857573 -3.580464 0.873362 1.162355 -0.048090 -2.583148 -0.184732 -1.273561 -0.854306 1.042400 -0.246636 1.323494 3.103441 -5.675341 2.433119 -0.089992 -1.877675 2.220890 -0.333440 -0.334800 -2.463053 1.075017 2.960258 2.349378 0.589154 0.010118 -1.476656 -2.932003 0.116244 0.751245 1.666359 -1.625960 2.432914 -0.292802 -2.261225 -2.149699 -1.671467 -0.684685 -0.890457 -1.489020 1.008257 0.663654 -5.796358 3.643517 -0.443178 -1.006482 0.316286 -0.868747 1.912105 -2.735000 -3.611260 1.376845 -1.029508 -2.280408 -0.720094 -1.063592 1.376526 0.884553 -0.082308 -2.005739 -3.959450 2.415527 0.145547 1.937832 1.867647 1.496973 3.609873 1.016548 -2.118815 -1.823064 -1.945529 1.844380 -0.497196 -1.013591 -1.536362 -1.304171 1.858508 4.011223 -0.519377 -0.073563 -1.966358 2.300654 -2.998144 -1.055201 1.616794 1.023750 -1.371434 0.952517 1.939205 -1.238824 -1.572578 -2.665347 0.019683 -0.915574 -2.257573 0.456542 -3.112178 -0.577380 2.817442 -1.246549 -1.617727 1.463621 -0.081255 -0.415984 -1.076200 3.005193 3.756698 -2.985247 1.200485 -2.611231 2.095420 -3.861484 -2.504323 0.104338 -0.242134 -0.094311 -0.678172 0.489869 0.798301 0.237989 -0.940762 -0.980840 -0.731564 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/euler-circuit-directed-graph.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.103476 0.641697 0.497859 -0.202878 0.824161 0.516597 0.369500 0.199136 -0.509319 -0.784774 -0.236954 -0.916835 -1.303886 1.063035 -0.046613 0.349197 1.700650 0.360424 0.073659 -0.393964 0.548691 -0.872602 1.593052 1.589766 -1.335531 0.378593 0.612344 0.426203 0.015948 0.951294 -0.429000 -1.131466 0.622660 -0.596594 0.583665 -0.797886 -0.232911 -0.325815 -0.097579 -2.287175 -0.213409 0.462332 -0.265000 -0.024871 0.040935 0.892494 1.828105 0.847668 -0.444437 0.766416 0.464175 -0.211691 0.465819 0.225554 0.270836 0.282215 0.277457 0.084568 -0.729449 0.271789 -0.198052 -1.576208 -0.182025 0.974142 1.368218 -0.250670 -0.319011 0.319413 -0.322016 0.093341 -0.086111 0.736093 0.774742 0.376674 1.007349 -1.076518 -0.223372 -1.972082 -0.281879 -3.209558 -1.252099 -1.063134 0.931508 0.125410 0.621496 -0.317222 1.677852 -0.107913 0.448728 0.634241 1.796746 -1.321889 -0.430544 -0.762861 -0.088307 0.411738 -0.690179 -0.033443 0.611984 -0.542362 -1.041807 -1.121291 1.025034 0.053994 -0.719234 -0.519137 -0.355197 1.089247 -1.427822 -0.792111 -1.825397 -0.422587 -0.163332 -1.762972 0.288106 0.176759 0.731003 0.808045 -0.331878 -1.077506 0.422808 0.769429 -0.241371 -0.839180 -0.289121 1.417857 0.496134 -0.087667 0.608159 0.493262 0.561385 1.383818 1.578165 -0.222703 -0.352038 0.437886 -0.648718 0.015306 -0.560612 -0.342949 0.495275 -1.084932 -0.094193 0.527074 -0.783678 -0.072079 0.497341 -0.503512 0.559925 2.718368 -0.248745 0.733298 0.299526 -1.345701 1.042707 -0.455047 -0.568554 0.349751 1.109417 0.957254 -1.509566 -0.695434 0.496442 1.539338 0.632007 -1.363167 -0.469452 -0.316951 0.274198 -0.273107 0.546770 0.361921 0.440750 -0.705069 -0.088574 0.574652 2.248802 -1.020561 -1.086397 0.258004 0.095687 -0.057476 -1.686181 -0.137442 -0.676947 -0.255673 0.057129 -0.085487 0.323742 1.327839 -2.231755 1.128992 -0.638718 -0.713144 0.971406 0.126124 -0.378079 -1.466239 0.369500 1.083932 1.236242 0.416507 0.104194 -0.313970 -1.279089 -0.123174 0.148120 0.636787 -0.637661 1.099386 -0.193474 -1.007322 -0.822727 -0.561396 -0.044277 -0.644216 -0.301495 0.539293 0.696047 -2.386497 1.320983 -0.176136 -0.689653 0.328782 -0.043990 0.806984 -1.209328 -1.605837 0.603913 -0.473636 -0.988665 -0.457622 -0.445601 0.559666 0.207534 -0.549578 -0.491850 -1.563544 1.186865 0.034156 0.892035 0.816438 0.375754 1.754578 0.563718 -1.112083 -0.711544 -0.583959 0.327162 -0.783837 -0.390482 -0.751213 -0.622451 0.915509 1.848173 0.112926 -0.002076 -0.557441 1.194270 -1.514949 -0.493447 0.966419 0.804998 -0.295204 0.597015 1.031906 -0.911318 -0.579525 -0.923953 -0.105150 -0.117822 -0.872058 0.352672 -1.361710 -0.086151 0.905872 -0.382456 -0.471999 0.621644 -0.043703 -0.036295 -0.510417 1.352060 1.799761 -1.395362 0.351887 -0.997538 0.726116 -1.591363 -0.969847 -0.015495 0.565129 -0.326315 -0.166925 0.444464 0.361782 0.163303 -0.724187 -0.534850 -0.336825 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/euler-circuit-directed-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.083720 2.091510 1.366277 -0.359619 1.764270 0.994141 0.719948 0.675167 -0.559317 -2.286870 -0.516342 -2.177360 -3.725642 2.182581 -0.238950 -0.160090 3.667570 0.279170 0.329360 -1.270693 1.166641 -1.538706 3.744430 3.539724 -3.647278 0.776785 2.126973 1.181516 0.844205 1.389804 -0.337967 -2.497264 1.425576 -0.773104 1.679738 -1.264721 -0.309632 -1.737586 -1.008497 -5.027494 -0.768477 0.692235 -1.313150 0.103118 0.102108 3.005358 4.657213 2.000392 -1.605766 1.355360 1.557942 -0.302976 0.766056 0.368787 -0.024966 -0.634567 0.544727 0.519102 -1.548016 0.558004 -0.116956 -3.966402 -0.797345 2.546330 3.306273 -0.569677 -0.532769 0.899980 -0.607787 0.344564 -0.592539 1.799689 2.536555 1.561691 2.828804 -2.175978 -0.872230 -5.152526 -0.763331 -8.528228 -2.957993 -2.988941 2.360755 -0.504262 0.824130 -0.581609 3.830087 0.570065 1.396620 2.114305 4.448601 -2.535818 -0.952148 -1.998853 -0.277919 1.471750 -1.871413 0.698029 1.493854 -1.118727 -2.382252 -2.419498 1.839216 -0.276175 -1.765330 -1.141537 -1.043031 2.253788 -3.274369 -0.881329 -4.517521 -1.453240 0.256850 -4.494726 0.072237 0.661008 2.839176 1.793391 -0.212651 -1.798575 0.495283 1.688997 -0.372280 -1.607716 -0.567686 3.184835 1.560644 0.007574 1.570323 1.482215 1.872850 2.774053 3.980758 -0.168993 -1.232827 0.683842 -1.602773 -0.168380 -1.239567 -0.305341 2.052539 -2.078855 0.419665 1.301486 -1.641542 -1.213251 1.289209 -1.887088 1.625575 6.335810 -0.320014 1.534248 0.564743 -3.007350 1.627760 -1.329863 -1.770118 0.940035 2.464994 2.542573 -2.810306 -1.415006 1.163741 3.547854 1.235267 -3.481002 -0.464180 -0.328609 0.392392 -1.401580 1.258420 0.959654 0.942841 -1.309365 -0.210127 2.227428 4.295147 -2.279002 -3.168347 0.379793 0.730584 0.419217 -3.290711 -0.005514 -0.458674 -0.488667 0.779399 -0.036220 0.895975 2.987535 -5.700701 2.271142 -0.520354 -1.251710 1.702409 0.413003 -1.002284 -3.201857 1.788924 2.872058 2.206859 1.182139 -0.082561 -1.017635 -2.932362 -0.257534 0.706838 1.517534 -1.341773 2.454841 -0.460662 -1.867452 -2.498233 -1.646497 -0.011700 -0.715075 -0.802046 1.142005 0.916030 -6.374895 3.463587 -0.993638 -1.862854 -0.155246 -0.998996 1.908249 -3.211251 -3.837815 1.095471 -1.548768 -3.109893 -1.449845 -1.093049 1.118529 0.662225 -0.665243 -1.274516 -3.562970 3.017396 0.017287 1.778801 1.923457 1.434754 4.861297 0.485099 -2.466108 -2.009369 -1.286411 1.696451 -1.544867 -1.396396 -1.351547 -1.295153 1.722446 4.488532 -0.641521 -0.000158 -1.205766 2.262963 -3.972367 -1.908973 1.910512 2.743855 -0.667918 2.001589 2.059049 -1.931118 -1.396869 -2.515920 -0.632578 -0.168553 -2.558438 0.519308 -3.364669 -0.301012 2.687335 -0.937404 -1.206959 1.652347 -0.495242 0.101871 -1.235184 2.569896 5.489034 -4.057488 0.778429 -2.689755 1.947818 -4.023807 -2.919626 0.459356 0.559369 0.223585 -0.529675 0.595067 0.518487 0.413461 -2.147296 -1.541073 -0.226072 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::_M_node_count() const = -0.047959 0.074187 0.150852 -0.097095 0.169069 -0.040761 0.085106 0.002587 -0.187054 -0.288537 0.020654 -0.325482 -0.337677 0.278622 -0.097826 0.057152 0.396993 0.088617 0.021521 -0.205347 0.083720 -0.228953 0.444247 0.449787 -0.380770 0.072168 0.097082 0.203905 0.117136 0.184709 0.039327 -0.273047 0.145170 -0.045471 0.159462 -0.183221 -0.017049 -0.004840 -0.071148 -0.570688 -0.049943 0.136265 0.077063 0.033706 0.037695 0.346494 0.380087 0.245882 -0.102309 0.299784 0.227428 -0.006760 0.151387 0.058174 0.027454 -0.104148 0.158474 -0.180372 -0.188637 0.087118 -0.019847 -0.457826 -0.071060 0.290635 0.418813 -0.078543 -0.056380 0.014940 -0.070522 0.097232 0.077826 0.187622 0.125286 0.112548 0.238713 -0.220717 0.025316 -0.583535 -0.051627 -0.997705 -0.308667 -0.213211 0.394175 0.157394 0.046081 0.035571 0.430770 0.095797 0.045847 0.192963 0.424459 -0.227646 -0.130408 -0.073812 -0.055988 0.175175 -0.217742 0.054169 0.086398 0.118905 -0.245923 -0.163811 0.243737 -0.056587 -0.183833 -0.035782 -0.105422 0.225626 -0.503444 -0.105493 -0.395801 -0.054455 0.083527 -0.463438 0.115922 -0.038266 0.278618 0.167500 -0.075430 -0.083781 0.080283 0.070455 -0.045615 -0.036890 -0.362809 0.281679 0.087056 0.029298 0.111920 0.161313 0.130608 0.299637 0.230672 -0.118414 -0.111806 0.119691 -0.132948 0.058125 -0.161478 -0.089342 0.195626 -0.273149 0.107635 0.008561 -0.193854 -0.201491 -0.011250 -0.121624 0.125977 0.490782 -0.010801 0.233741 0.174870 -0.272173 0.107471 -0.146694 -0.048953 0.146156 0.264172 0.160684 -0.062753 -0.204702 0.126690 0.392930 0.160782 -0.277092 -0.096596 0.025423 0.091004 -0.038347 0.158905 0.100618 0.020184 -0.164950 -0.019937 0.132903 0.438591 -0.092518 -0.110715 0.015050 0.074480 -0.030252 -0.313386 0.008641 -0.049450 -0.011005 -0.004040 0.044549 0.057003 0.340731 -0.721745 0.296792 -0.025945 -0.002619 0.172062 0.003863 -0.158386 -0.514861 0.089499 0.205575 0.287825 0.054183 0.090285 0.031890 -0.341656 -0.023180 0.021137 0.137715 -0.188958 0.258789 0.005404 -0.204364 -0.222308 -0.145654 0.019265 -0.032883 -0.098900 0.174861 0.247848 -0.684451 0.282926 -0.136853 -0.236388 -0.020933 -0.025848 0.214408 -0.351482 -0.318678 0.074136 -0.227878 -0.381874 -0.222255 -0.096389 0.084825 -0.084467 -0.102066 -0.080190 -0.190088 0.318211 -0.092154 0.164441 0.198305 0.031372 0.396850 0.091342 -0.221983 -0.120684 0.003919 0.076285 -0.324539 -0.070456 0.109996 -0.112287 0.172309 0.465811 0.024333 -0.047238 0.063015 0.319132 -0.261731 -0.238387 0.208970 0.140766 -0.027509 0.336657 0.220488 -0.302267 -0.074731 -0.298366 -0.056287 0.012676 -0.205817 0.186731 -0.268338 0.031388 0.182253 -0.041022 -0.173378 0.219917 -0.014112 -0.049391 -0.093159 0.413796 0.496524 -0.267519 0.162747 -0.306802 0.122478 -0.404969 -0.249946 -0.030619 0.153080 -0.080969 -0.000644 -0.032766 0.139574 0.119721 -0.176340 -0.202373 0.069934 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_size() const = -0.002432 0.446603 0.384758 -0.279463 0.521929 0.608010 0.102832 -0.149910 -0.253589 -0.148126 -0.106345 -0.590175 -0.468670 0.454322 -0.120214 0.111786 0.625705 -0.025145 -0.071046 -0.052559 0.081105 0.113363 0.668328 0.626933 -0.531776 0.233971 0.182790 0.098683 -0.177955 0.672442 -0.417365 -0.749543 0.083255 0.060534 0.084754 -0.117787 -0.232055 -0.286073 0.106311 -0.863395 -0.044500 0.317653 -0.201697 -0.056589 0.119200 -0.049060 0.929636 0.298156 -0.003255 0.173764 0.175665 0.225913 0.166740 0.034951 0.317986 0.131082 0.575168 -0.151769 -0.191251 -0.001602 -0.105581 -0.139532 -0.239823 0.490189 0.476720 0.041777 -0.234392 -0.099989 -0.120890 -0.022690 -0.138877 0.360845 0.183386 0.512395 0.167884 -0.048378 0.211227 -0.373668 0.051658 -0.492500 -0.499200 -0.268848 0.170701 0.431914 0.266484 -0.211966 0.726459 -0.140268 0.130689 0.042691 0.791022 -0.501737 -0.082708 -0.131488 -0.246331 0.027908 -0.109983 0.061461 -0.249062 -0.183480 -0.431229 -0.441939 0.304806 0.019887 -0.316773 0.136643 -0.043346 0.314765 -0.490858 -0.171925 -0.441809 0.024950 -0.068608 -0.735183 -0.403233 0.010899 0.041928 0.170130 -0.260610 -0.594262 0.242915 0.287808 -0.246739 -0.245117 -0.302394 0.481017 0.353342 -0.026385 0.115701 0.008373 0.386504 0.599035 0.242782 -0.166619 0.006011 0.010906 0.008082 -0.031322 -0.075320 0.046937 -0.360214 -0.316325 0.083673 0.400690 -0.287845 0.141708 -0.398546 -0.239535 0.107969 1.410869 -0.320486 0.393585 0.063177 -0.672856 0.273330 -0.153487 -0.371775 -0.066156 0.251184 0.562723 -0.542039 -0.267748 0.416044 0.674988 0.241164 -0.382410 0.222934 0.024330 -0.090956 -0.151783 0.391844 0.009406 0.107367 -0.313570 -0.154926 0.253579 1.085469 -0.210236 -0.772669 0.172573 0.029720 0.166384 -0.082037 -0.012311 -0.166185 -0.017125 0.242342 -0.092992 0.292725 0.544489 -1.061606 0.481449 -0.063260 -0.533219 0.600742 -0.014217 -0.180373 0.121747 0.080137 0.525305 0.473737 0.140963 0.011221 -0.263235 -0.488226 -0.087344 0.088889 0.192394 -0.411817 0.450907 0.199845 -0.667576 -0.283571 -0.432176 -0.001976 -0.238617 -0.502590 0.213469 0.071574 -1.105157 0.661474 0.275558 -0.102629 0.024403 -0.232377 0.247351 -0.387641 -0.581703 0.186278 -0.256415 -0.222195 0.156897 -0.249961 0.135185 0.225990 0.306274 -0.495514 -0.507945 0.385700 0.161685 0.463965 0.359990 0.211931 0.317701 0.199229 -0.273945 -0.139311 -0.406983 0.545475 -0.027139 -0.219961 0.007588 -0.406462 0.348119 0.609199 -0.057328 -0.152163 -0.526725 0.336001 -0.284374 0.086279 0.257196 -0.016860 -0.384299 -0.071637 0.338570 -0.057830 -0.145832 -0.362158 -0.107729 -0.362510 -0.358773 0.122957 -0.335678 -0.051237 0.416159 -0.276214 -0.380561 0.171163 -0.105737 -0.135461 0.036743 0.433023 0.279734 -0.301678 0.394543 -0.438942 0.354102 -0.607144 -0.460311 0.116181 -0.247797 -0.301170 -0.276942 -0.119710 0.200764 -0.006716 0.032703 -0.074573 0.008360 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::addEdge(int, int) = -0.207629 0.487799 0.710325 -0.603055 0.754452 1.121903 0.276523 -0.281601 -0.616820 -0.653736 0.004449 -1.382057 -1.318310 1.109193 -0.425102 0.196855 1.541574 0.062704 -0.304055 -0.381476 0.422605 0.137492 1.806434 1.739347 -1.420464 0.252384 0.326687 0.766053 0.238120 0.805545 -0.082842 -1.133776 0.389058 -0.163270 0.298001 -0.375291 -0.287049 -0.425646 -0.125558 -2.148592 -0.225758 0.688432 -0.513368 0.008501 0.265403 0.440363 1.795158 0.915251 -0.038145 0.601908 0.548565 0.208105 0.535907 0.083012 0.346667 -0.186662 0.740920 -0.544874 -0.492764 -0.041565 -0.176873 -1.004478 -0.409280 1.293690 1.399073 0.035829 -0.450303 -0.035715 -0.079355 0.187764 -0.010697 0.922614 0.369510 1.020899 0.781000 -0.549021 0.374274 -1.086776 0.077094 -1.834732 -1.161519 -0.700530 0.982812 0.926853 0.438551 -0.386730 1.803415 -0.096516 0.106437 0.802341 1.786177 -1.064380 -0.304424 -0.468897 -0.296752 0.358885 -0.642834 0.317974 -0.238620 0.166782 -1.059314 -0.641479 0.460506 -0.021103 -0.783408 0.076260 -0.272536 0.982118 -1.420744 -0.405713 -1.197009 0.144534 0.070884 -2.006226 -0.901309 -0.122971 0.719090 0.485326 -0.491112 -0.862902 0.463086 0.556744 -0.146803 -0.411900 -0.731987 1.111417 0.780983 -0.037090 0.246582 0.716530 0.691291 1.467165 0.800806 -0.243129 -0.174979 0.291639 -0.311569 0.129923 -0.267389 0.029452 -0.183725 -0.934183 0.065019 0.834763 -0.698001 -0.288385 -0.750103 -0.362115 0.362175 3.635235 -0.365216 1.015689 0.649424 -1.302250 0.385130 -0.520316 -0.435057 0.242592 0.623353 1.068468 -1.456415 -0.718430 0.835498 1.730116 0.586654 -1.131387 0.561812 0.154608 0.056481 -0.575498 0.818810 0.261799 0.282272 -0.665407 -0.194889 0.898380 2.137334 -0.665783 -1.420188 0.239282 -0.005284 0.248310 -0.655044 0.012613 0.068492 -0.109196 0.645692 0.094124 0.461225 1.342214 -1.896064 1.149993 0.129787 -0.527145 1.255378 0.055455 -0.620021 -0.353579 0.156390 1.053553 1.008436 0.190598 -0.275531 -0.289846 -1.387440 -0.098871 0.447877 0.509975 -0.775528 1.174062 0.272788 -0.917842 -0.842241 -0.799180 -0.012022 -0.212927 -0.880506 0.682669 -0.027183 -2.263055 1.406258 0.165344 -0.666402 -0.044295 -0.567136 0.875931 -1.261975 -1.438877 0.513147 -0.672698 -1.309578 -0.314565 -0.513330 0.391126 0.638030 0.283425 -1.139230 -1.015248 1.274140 -0.000222 1.106633 0.809169 0.307506 1.321654 0.255929 -0.788818 -0.472717 -0.974147 0.951325 -0.192234 -0.695056 -0.251756 -0.623938 0.830020 1.597008 -0.293416 -0.451401 -0.603867 1.072675 -1.118049 -0.486947 0.557549 0.477193 -0.695962 0.510108 0.750442 -0.681069 -0.188724 -0.958703 -0.412671 -0.563732 -0.964697 0.603355 -0.924936 0.178426 0.821408 -0.358289 -0.630573 0.530744 -0.053034 -0.123107 0.099323 1.344499 1.403520 -0.840485 0.568726 -1.358384 0.966789 -1.574328 -1.162813 0.244836 -0.160569 -0.224341 -0.359900 -0.116135 0.604120 0.547470 -0.787802 -0.548969 0.264206 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::DFSUtil(int, bool*) = -0.665191 0.813752 1.679168 -1.931703 1.569008 2.051790 0.591923 -0.361963 -1.789692 -2.347606 0.197645 -3.908495 -3.540407 2.868086 -1.174658 0.090797 3.944018 0.069157 -0.727310 -1.017805 1.269376 0.067824 4.253515 4.506816 -3.691769 0.333465 0.304641 2.124761 0.777105 1.453008 0.950328 -3.162298 0.467645 0.043855 1.344349 -0.864874 -0.554438 -0.500296 -0.635200 -5.441309 -0.626644 2.552765 -0.934936 0.027921 0.785111 1.245835 4.322749 2.377593 -0.636034 1.320941 1.780815 0.664623 1.395337 0.034687 0.387431 -1.201398 0.841728 -1.625757 -1.083516 0.198754 -0.470319 -2.353127 -0.665945 3.473789 3.726614 0.038487 -1.198496 -0.268583 0.153152 0.679116 0.134667 2.426752 1.312165 2.230746 2.227575 -1.281785 0.417301 -3.952031 0.904793 -5.336750 -2.879775 -1.574046 3.128299 3.274030 0.391114 -1.797920 4.659278 -0.239331 0.028652 3.271485 4.469289 -1.856825 -0.769439 -1.810071 -1.317250 1.097321 -1.676630 0.718845 -0.878212 1.248699 -2.688469 -1.386954 0.431285 -0.413043 -1.951062 -0.068300 -0.720395 2.498563 -3.369213 -0.546565 -2.904477 1.191415 0.964837 -5.067675 -1.923234 -0.982434 0.988169 1.058834 -1.432683 -1.288932 1.050974 0.746180 -0.666910 -0.272120 -3.268467 3.087964 1.732767 -0.029612 0.311688 2.080838 1.688714 2.864892 1.211209 -0.941194 -0.495938 0.899746 -0.691814 0.286037 -1.133148 0.077841 0.957183 -2.002731 -0.590668 1.256802 -1.731740 -1.381640 -2.183223 -1.432958 0.893124 9.283231 -0.835834 2.575577 1.792205 -2.883769 1.788582 -0.732016 -0.806097 0.704408 1.773485 2.626044 -3.434004 -1.987400 2.305432 4.448153 1.448956 -2.273835 1.247450 0.973257 0.162588 -1.520455 2.172325 0.600947 0.278584 -1.568903 -0.508491 2.401591 4.993010 -0.990361 -2.474417 0.287423 1.281822 0.705530 -1.502750 0.269729 -0.127969 -0.301168 1.686682 0.422194 1.575072 3.517171 -5.123378 2.871770 0.787840 -0.415351 2.319945 -0.155207 -1.664086 -2.482785 0.415222 2.493210 2.529342 0.367610 -0.283536 -0.631720 -3.576906 -0.055646 1.127975 1.427254 -2.086750 3.019879 -0.074392 -1.794302 -2.146633 -1.940980 -1.159073 -0.236167 -2.315297 1.766102 0.682252 -4.577804 3.575932 0.127164 -1.409480 -0.732856 -1.505876 2.346839 -3.360300 -3.524829 1.165858 -1.914220 -3.869793 -1.148851 -1.379176 0.982153 1.049557 0.119616 -2.692833 -2.840909 3.700292 -0.263399 3.122826 1.966419 0.457827 3.224916 1.668192 -1.692237 -1.107185 -2.901045 2.442888 -0.360715 -1.816778 -0.477687 -1.333654 1.775061 3.764804 -0.995571 -1.473344 -0.962597 2.810886 -2.120544 -1.557601 1.113727 -0.058095 -1.524915 1.628528 1.701301 -2.046459 -0.257951 -3.300989 -0.238465 -1.431956 -2.367589 1.528767 -2.171910 0.413388 1.880655 -0.850005 -1.526356 1.294939 0.448938 -0.661349 0.389566 3.925682 3.137892 -1.604004 1.463432 -3.845575 2.413883 -3.998358 -2.964025 0.122147 -0.315119 -0.411415 -0.861002 -0.425563 1.549246 1.684940 -1.559951 -1.744101 1.294904 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -2.362473 -2.081557 0.373479 -4.350148 2.507094 3.341575 1.326716 -2.612904 -5.638389 -2.312783 1.497060 -6.912546 -3.299250 6.144329 -1.915828 3.698691 7.807806 1.128640 -2.545141 -1.927795 4.642817 -1.313510 7.468927 8.831544 -5.347518 0.186871 -0.079950 3.072900 1.430358 1.834837 1.636418 -4.378942 0.540962 -3.663781 1.699697 -3.261832 -1.515026 2.792594 3.716366 -10.136015 -0.373549 4.265711 1.836498 -0.235181 0.841309 0.982085 4.905974 4.573651 -0.818892 4.003961 3.841117 0.317233 3.037527 -0.003390 1.608865 0.936350 1.722397 -0.559679 -0.883761 -0.021389 -1.743851 -1.127915 1.249783 6.042762 7.189075 -0.201272 -3.006333 0.522462 1.994218 1.699656 1.881113 4.664315 -0.669725 1.364011 3.480999 -6.233238 0.757957 -10.835062 2.631659 -9.401335 -4.377234 0.194877 4.695569 4.092832 2.599710 -1.341945 8.908858 -2.134732 -2.603668 5.578409 6.619031 -3.710483 -1.213670 -2.226001 -3.721761 0.712135 -2.334641 0.270511 1.004377 3.114682 -5.008493 -3.523329 1.197179 0.615412 -3.382196 -1.942183 -0.459411 4.896444 -4.766212 -3.689679 -2.775110 4.656634 -0.093466 -8.740475 -2.279771 -4.832041 -0.915278 1.277657 -4.648827 -4.217295 2.640488 0.912475 -2.151127 -1.552258 -3.175339 4.665559 3.093142 0.625665 -0.810916 2.526563 1.169276 6.704334 1.235290 -3.824932 0.487867 2.384326 -1.286957 1.954422 -3.552339 -1.584344 2.276250 -4.598932 -1.101754 1.730891 -3.342450 -1.385654 0.872356 -0.973167 -0.232911 18.291087 -1.690738 6.197054 5.017127 -4.688935 4.583712 -0.350568 1.054455 2.213003 4.038900 3.035548 -8.190298 -4.686086 4.728828 8.481559 3.209811 -4.729504 -2.029054 1.918251 0.703166 -0.422341 3.493227 0.436820 -0.050254 -3.308798 -0.886306 2.513106 10.543599 -2.380086 -1.769763 0.504700 3.944916 -1.282348 -5.920090 -0.555863 -6.071979 -0.325673 1.606280 1.051292 3.324918 6.676316 -10.250764 5.788056 -0.582202 0.005799 5.250313 1.034286 -3.921625 -8.122426 -1.630565 2.389004 5.769799 -0.882886 -0.021377 1.042777 -6.988288 0.316282 1.034361 1.745882 -4.652705 6.094102 -0.807152 -2.812378 -1.916636 0.095226 -2.706073 -3.031847 -2.460582 4.262033 2.086107 -5.550691 4.759765 1.070719 -2.018362 0.799705 -0.825327 4.600480 -4.724034 -5.393816 3.274040 -1.685797 -3.229226 -2.202507 -2.058455 2.741760 1.784030 0.429065 -4.897340 -5.828336 5.552443 -2.255712 7.251432 3.320527 -1.718771 3.418102 1.659218 -2.582768 -3.164575 -3.519175 0.377462 0.441234 -3.030425 -4.508999 -1.964829 4.332302 5.173227 0.078174 -3.095948 -1.410095 6.722240 -3.845316 -0.654239 1.898727 -1.044891 -3.494853 1.968193 3.155572 -4.930604 0.982680 -5.084710 0.286805 -3.266548 -2.498035 4.756953 -1.913282 1.608268 0.137762 -1.255892 -0.334207 2.266251 3.182006 -0.727879 1.551903 8.115562 3.359158 -0.648515 0.338452 -6.905256 3.705010 -6.315441 -4.314930 -0.670094 1.301104 -4.088762 -1.238493 0.086332 4.903056 3.576660 -1.958132 -3.021398 2.071618 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::size() const = -0.040667 0.044331 0.279271 -0.267343 0.567511 0.003685 -0.019490 0.073874 -0.217824 -0.392828 -0.182628 -0.272303 -0.568831 0.283335 -0.154695 0.177913 0.223161 -0.150177 0.034340 -0.345186 0.329901 -0.273914 0.425271 -0.034150 -0.596305 0.061232 0.083120 0.605991 0.286539 0.466088 0.054247 -0.186288 -0.093353 0.098064 0.402398 -0.180504 0.179239 0.148489 -0.303006 -0.480567 -0.184185 0.308132 -0.149294 0.331915 0.076925 0.676706 0.265116 0.312465 -0.351978 0.392438 0.502835 -0.019070 0.260639 0.116746 -0.368674 -0.146137 0.326461 -0.339961 -0.246125 0.110117 -0.004299 -0.683862 0.062940 0.198813 0.540650 -0.405404 -0.130871 0.365312 -0.047437 0.143440 0.153102 0.334378 0.081120 -0.036023 0.488536 -0.109734 -0.068876 -0.535973 0.127974 -1.096967 -0.242290 -0.536311 0.226431 0.354644 -0.092842 -0.044318 0.775742 0.112409 -0.097557 0.348879 0.320411 -0.159475 -0.002836 -0.557307 -0.031652 0.068540 -0.333692 -0.383206 0.090276 0.566496 -0.014004 -0.090247 0.014405 -0.383012 -0.214978 -0.117278 -0.606944 0.431897 -0.773211 -0.120758 -0.653213 0.274664 0.069107 -0.478452 -0.016804 0.055771 0.266121 -0.078724 0.471274 0.173426 0.087645 0.210224 -0.133548 0.189266 -0.416998 0.436475 0.301094 -0.231215 0.116364 0.400009 0.065556 0.112975 0.374273 -0.086692 -0.684917 0.418724 0.022860 -0.019519 -0.274409 0.207890 0.333954 -0.401982 0.046067 0.028510 0.014961 -0.165024 -0.290430 -0.474819 0.258451 0.398103 -0.011995 -0.069786 -0.064266 -0.168910 0.229003 0.132756 -0.022643 0.357023 0.027495 0.151319 0.019793 -0.289746 0.281453 0.242921 0.061834 -0.430126 -0.043308 -0.001112 0.227093 -0.008855 -0.022697 0.522130 -0.242117 0.141763 0.000567 -0.318136 0.557268 -0.066754 -0.258991 0.328149 0.210126 -0.435806 -0.401873 -0.117990 0.000869 -0.431039 0.145574 0.103298 -0.000284 0.401149 -0.784231 0.287391 0.313586 -0.034495 0.100646 -0.389052 0.334533 -0.681729 -0.188029 0.180563 0.251388 -0.080156 0.097535 -0.133445 -0.378815 0.362755 0.138787 0.246538 -0.035840 0.172696 -0.098761 -0.020827 -0.202249 -0.169408 -0.232727 0.347610 -0.111208 0.089924 0.106052 -0.933089 0.228878 -0.539070 -0.129159 0.169636 0.220536 0.478585 -0.213319 -0.237523 0.255253 -0.131453 -0.612910 -0.476526 0.070940 0.166799 -0.125754 -0.186744 -0.147425 -0.511364 0.191479 -0.257515 -0.128314 0.167606 0.121583 0.425564 0.133936 -0.355144 -0.218790 -0.053974 0.068437 -0.235429 0.328508 0.196433 0.163410 0.162598 0.398591 0.131838 0.205199 -0.043420 0.409726 -0.264377 -0.399065 0.247498 0.002721 -0.083011 0.601473 0.261088 -0.176477 -0.295503 -0.483006 0.201644 -0.049539 -0.085701 0.150730 -0.452263 -0.180690 0.429668 0.016655 -0.409748 0.353219 0.042016 -0.291141 -0.582137 0.909398 0.764745 -0.306314 0.305987 -0.275168 0.282538 -0.417011 -0.083683 -0.240292 0.066641 0.195978 0.206886 0.127126 0.156305 0.149634 -0.182417 -0.202393 -0.300500 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isEulerian() = -1.333917 -1.517486 -0.622716 -2.042478 1.178578 1.130808 0.769567 -1.503887 -3.173937 -1.113448 0.993968 -3.518105 -1.465260 3.277228 -0.890940 2.391471 4.000907 0.678882 -1.473672 -1.089623 2.512157 -0.997867 3.704723 4.455155 -2.381449 0.064156 -0.331250 1.109284 0.504407 0.701972 1.177570 -2.072178 0.325805 -2.385738 0.755278 -1.587134 -0.859917 1.845666 2.505302 -5.037943 -0.089724 2.347590 1.886605 -0.216975 0.265563 0.577703 2.088536 2.343815 -0.248240 2.245511 1.989333 -0.071174 1.725970 0.022601 0.887028 0.666224 0.882783 -0.121882 -0.566029 0.001243 -1.059151 -0.107602 0.770107 2.947013 3.520851 -0.154561 -1.619324 0.544970 1.128691 1.216907 1.155010 2.355302 -0.521735 0.153163 1.679246 -3.193937 0.147902 -6.033189 1.273577 -5.089467 -2.146890 0.563693 2.464752 2.035560 1.447326 -0.061043 4.514259 -1.067214 -1.725769 2.533838 3.212965 -1.652767 -0.716965 -0.886582 -1.973313 0.304685 -1.140533 -0.039107 1.226765 1.872498 -2.648723 -1.700076 0.556309 0.423774 -1.595433 -1.268224 -0.095192 2.506028 -2.109133 -2.002498 -1.147840 2.575236 -0.065034 -4.437483 -0.534653 -2.593040 -1.414971 0.806245 -2.711861 -2.199578 1.509825 0.106474 -1.292047 -0.746267 -1.159298 2.167958 1.212576 0.614174 -0.474248 1.314586 0.454767 3.412625 0.354472 -2.251750 0.524246 1.165667 -0.515699 1.328667 -1.873283 -1.267380 1.307074 -2.492961 0.014394 0.559766 -1.751564 -0.798092 1.038375 -0.408325 -0.460710 8.313713 -0.967987 3.453430 2.741000 -2.192610 2.343718 -0.321856 0.834477 1.061178 2.305060 1.295034 -3.276578 -2.508406 2.612778 4.310958 1.712654 -2.275755 -1.620148 1.156213 0.503771 0.299433 1.723666 0.352947 0.165430 -1.774254 -0.435620 1.091687 5.375740 -1.267599 -0.050290 0.246921 2.592838 -0.696188 -3.496524 -0.420731 -4.113967 -0.074800 0.504684 0.778687 1.448597 3.434002 -4.796869 3.104182 -0.588683 0.353489 2.698698 0.619309 -2.190041 -4.937688 -1.143091 0.959600 3.046625 -0.575040 -0.172840 0.755122 -3.542934 0.201158 0.248318 0.745876 -2.397533 3.128187 -0.738343 -1.108338 -0.763916 0.681889 -1.289908 -1.743213 -0.824042 2.298348 1.897852 -2.175634 2.222681 0.458450 -1.045458 0.368962 0.103269 2.271628 -2.053764 -2.487324 1.603182 -1.057346 -1.362718 -1.323873 -0.988926 1.378889 0.904239 0.103306 -2.129692 -2.406941 2.560452 -1.301845 3.932551 1.612763 -1.181213 1.352927 1.007968 -1.363820 -1.552380 -1.219988 -0.625184 -0.074006 -1.442552 -2.354245 -0.852899 2.258374 2.318145 0.413585 -1.766767 -0.750123 3.523060 -1.637857 -0.342629 1.112391 -1.131074 -1.747039 1.088896 1.713015 -2.678541 0.734022 -2.542443 0.380768 -1.805612 -1.028261 2.445945 -0.637941 0.773346 -0.481810 -0.643644 0.279004 1.120747 1.911364 -0.303218 0.731926 3.960107 1.112009 -0.257143 -0.119453 -3.508935 1.828610 -3.073263 -2.075736 -0.342466 1.194316 -2.567209 -0.642738 0.074595 2.573290 1.751509 -1.077331 -1.854376 1.165596 +PE-benchmarks/eulerian-path-and-circuit.cpp__test(Graph&) = -0.425321 -0.283776 0.099306 -0.762163 0.278206 -0.150253 0.206006 0.041350 -0.906555 -1.198535 0.131586 -1.373568 -1.097836 1.105989 -0.384135 0.261324 1.519225 0.334904 -0.110470 -0.487189 0.656786 -0.809563 1.248201 1.653777 -1.176387 -0.057144 0.034847 0.858266 0.269661 0.368653 1.014473 -1.266112 -0.034862 -0.108703 1.018155 -0.704235 -0.109374 0.668124 -0.078275 -2.138520 -0.208415 1.396864 0.753968 0.068216 0.269200 0.442731 0.945484 0.892997 -0.531268 0.795278 0.875630 0.165216 0.693188 -0.013700 -0.021339 -0.343146 -0.238299 -0.644079 -0.354434 0.393438 -0.274900 -0.838919 0.218838 1.175228 1.559539 -0.270595 -0.411591 -0.116805 0.166829 0.554224 0.301859 0.880635 0.124145 0.108210 0.839140 -0.932750 -0.164432 -2.654301 0.701027 -3.106352 -0.962208 -0.388088 1.399767 1.501076 -0.021672 -0.545161 1.765129 -0.121378 -0.215493 1.410748 1.363289 -0.179148 -0.309188 -0.787701 -0.650508 0.543365 -0.645413 -0.161455 0.337025 0.938006 -0.891453 -0.445001 0.111005 -0.219915 -0.641298 -0.376792 -0.360049 1.017672 -1.250771 -0.415146 -1.096536 0.789543 0.485191 -1.756412 0.165099 -0.858893 -0.541142 0.394419 -0.700516 -0.132394 0.421570 -0.089926 -0.367122 0.184648 -1.628273 1.163137 0.254375 -0.059709 -0.004222 0.799673 0.183345 0.720130 0.196808 -0.681220 -0.231340 0.709438 -0.379831 0.129830 -0.916025 -0.313845 1.157544 -0.873598 -0.371026 -0.240724 -0.668513 -0.790852 -0.361183 -0.737775 0.276465 2.979400 -0.260311 0.979315 0.869208 -0.711143 1.257955 0.212473 0.145183 0.469807 1.033903 0.618088 -0.704606 -0.837565 0.716581 1.616958 0.567694 -0.446017 -0.623189 0.417986 0.283548 -0.119946 0.715557 0.203900 -0.242422 -0.512762 -0.102557 0.434398 1.395389 -0.056981 0.051464 -0.156462 1.481541 -0.284508 -1.135354 0.121583 -1.281074 -0.169302 0.038625 0.197797 0.552214 1.289741 -2.360852 1.143556 0.292212 0.481645 0.549793 -0.165338 -0.538332 -2.998965 0.022810 0.543690 1.116041 -0.299601 0.427764 0.118589 -1.359635 0.117587 0.127832 0.648575 -0.916405 1.147517 -0.678019 -0.272341 -0.584728 -0.171521 -0.869605 -0.460573 -0.478050 0.691877 1.381361 -0.958557 0.974832 -0.331899 -0.487759 -0.146316 -0.004945 0.813446 -1.226238 -1.094209 0.368948 -0.557197 -1.275698 -0.681262 -0.489395 0.527477 -0.240283 -0.620743 -0.391825 -0.933398 1.269022 -0.477125 1.170499 0.614693 -0.243157 0.977466 0.997186 -0.583936 -0.348336 -0.611340 0.004074 -0.549263 -0.308381 -0.525755 -0.232954 0.569129 1.309337 0.022860 -0.535310 0.195093 1.366515 -0.363204 -0.546661 0.408384 -0.932870 -0.127573 0.824256 0.602328 -1.215602 -0.065923 -1.551690 0.563975 -0.218018 -0.532404 0.755635 -0.815948 0.106060 0.289797 -0.332221 -0.359089 0.561928 0.779241 -0.367083 0.035709 1.743990 0.561384 -0.242516 0.386665 -1.371539 0.449797 -1.364718 -0.659587 -0.611208 0.501436 -0.342475 -0.049814 -0.034190 0.631302 0.682401 -0.190220 -0.828539 0.452744 +PE-benchmarks/eulerian-path-and-circuit.cpp__main = -0.092514 -2.152347 5.574859 -3.421333 4.533473 -3.687828 0.445692 3.098010 -3.622962 -1.479343 -0.918144 -1.436666 -4.367292 3.048237 -2.820975 -0.721116 2.168773 0.270812 0.774625 -3.526643 1.635247 -2.966401 2.702611 -1.323734 -5.657284 -0.281674 -1.731648 5.387413 2.019098 5.771999 2.825690 -1.951422 -3.874190 3.596005 6.049087 -3.017422 0.161945 1.790780 -4.665055 -7.996190 -2.111821 9.034036 -2.045548 2.242344 6.403355 12.558339 0.252267 2.255349 -4.040429 6.662723 1.461161 -0.300480 4.586146 -1.209849 -4.495955 -0.250295 5.365275 -1.537487 -4.251715 3.908759 -1.802758 -3.489052 3.825796 3.139501 5.352496 -5.029141 -2.337173 0.629849 2.848519 1.992082 1.545073 4.460994 -0.608644 1.380295 4.783889 2.225718 -0.875440 -4.269304 4.090615 -10.098469 -3.643664 -3.177202 5.214369 4.350198 -5.299808 -3.155771 8.306917 0.823637 -1.154390 7.866758 0.877685 3.105777 0.314224 -6.246852 -2.596449 -0.778202 -1.448485 -7.183306 1.947606 6.491469 -1.917054 -0.008751 -3.261907 -3.464536 -1.908878 3.486089 -5.570414 4.686573 -6.564412 -2.367015 -5.568945 6.021402 1.188953 -4.427091 -0.122003 0.309961 2.413417 0.928839 4.685734 5.394752 2.789130 1.306748 -2.513032 6.493537 -6.861638 7.265020 0.184370 -1.977123 -0.233472 4.908702 -2.343490 -5.712596 3.038556 -1.068057 -5.615921 6.512417 -0.649164 -0.555987 -2.302260 2.717349 3.683494 -1.545490 -1.024219 -3.522164 -0.435197 -2.681630 -8.206399 -4.343535 1.568631 2.690244 -2.606707 1.523925 -2.814565 -1.901769 3.506812 4.919216 1.292997 1.406161 2.312162 2.574437 -0.071434 -1.334507 2.250758 2.667301 0.440244 -2.264597 1.109829 0.655258 0.452823 2.488920 2.904377 4.703186 -3.538693 -0.764107 0.035528 -8.778981 6.617345 2.070975 -5.615414 -0.762703 4.566399 -4.217831 -1.157750 1.896360 2.644313 -5.462293 0.478142 -0.479491 0.593301 2.731901 -10.196022 4.084906 2.476302 0.387897 0.422230 -6.033839 2.686710 -11.108840 -5.555959 0.132255 3.729304 -0.650405 -2.733649 -0.056465 -2.350952 5.627644 -0.599461 3.721806 -0.085242 4.860033 -3.265175 -1.624118 0.311063 -2.444435 -2.524408 4.057098 -2.452201 -0.179674 1.416427 -6.649709 0.888948 -5.288704 -0.692302 1.195941 6.555236 2.133279 -0.987628 -2.598120 0.259635 0.158806 -7.823935 -7.336426 -3.729781 0.830169 -0.124955 -1.815434 -1.875131 -5.864166 1.304752 -4.149332 0.241597 1.891521 -2.543871 7.074550 4.619820 -2.800520 0.336767 -4.764565 1.957714 -0.701824 7.118177 4.233540 -0.589206 0.587728 0.766317 -1.051884 2.068369 -4.687120 5.941036 1.849792 -1.078572 0.384598 -8.674147 2.300721 5.349715 2.110120 -1.402225 -0.694936 -5.090436 3.814247 -3.663476 7.161928 2.161680 -4.464915 -4.778431 -0.010913 0.379711 -4.765491 -0.962540 1.245569 -4.758731 -3.701783 9.324435 8.321083 -2.943779 6.682995 0.479579 4.421311 -1.399562 3.006932 -7.450407 -2.321395 3.554607 3.457686 0.347097 0.773836 4.532201 -4.067148 -1.798569 -0.470378 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::Graph(int) = -0.886871 -0.353017 0.767178 -1.783412 1.162852 0.995514 0.410560 -0.848063 -1.389678 -1.018199 0.615275 -1.692805 -2.233590 1.857005 -0.732418 0.245240 1.180535 -0.765547 -0.888833 -1.231136 1.149372 -0.763242 2.130421 1.889254 -2.224627 0.037407 0.101549 1.481186 0.369871 1.118776 0.558282 -0.957366 -0.791572 0.322133 1.440981 0.537627 -0.555454 -0.048229 -0.216505 -2.469148 -0.400903 2.355885 0.393642 0.063368 0.382942 0.544310 1.484941 1.397248 0.112313 0.749775 1.513490 -0.208230 1.396938 -0.301156 1.203996 -0.464769 1.912759 -0.270240 0.003629 -0.066071 -0.674896 -0.346056 0.109076 2.011536 2.134391 -0.659266 -1.068819 -0.334929 0.157511 1.216118 0.360379 1.714488 -0.116849 0.616049 1.745560 -0.498202 0.635133 -2.231303 1.250257 -2.368168 -1.583015 -0.045413 1.320372 1.700051 0.331098 -0.682506 3.176779 0.016607 -1.104992 0.375170 1.701236 -0.088378 -0.043586 -0.372897 -1.274213 -0.092360 -0.607702 0.066458 0.039322 1.393582 -1.574929 0.246495 -0.008691 -0.231418 -1.336363 0.396940 -0.941650 1.421743 -1.071854 0.010450 -1.000993 1.457096 0.503980 -2.910461 -1.080448 -1.563999 -0.729368 -0.067344 -0.867762 -0.027394 0.966174 0.353118 -0.692274 -0.066005 -1.845405 1.805799 1.437511 -0.019921 -0.182868 1.116752 0.356121 1.015353 0.282424 -0.621162 -0.650769 0.724482 -0.269446 0.690223 0.001976 0.379471 0.718355 -0.619811 -0.196263 -0.224526 -0.324728 -0.343018 -1.107959 -0.749597 -0.108865 4.672193 -1.082331 1.772666 0.783706 -0.948689 1.428544 0.419648 0.109870 0.641787 1.173942 0.742509 -1.264409 -1.268969 2.038357 2.466819 0.569046 -1.306027 0.677188 1.105986 -0.004866 -0.873666 1.568050 -0.033170 0.077404 -0.618754 -0.375504 0.187470 2.679102 -0.765686 -2.313946 0.479028 1.248655 -0.118901 -0.632566 0.264718 -0.925206 -0.489129 0.194284 0.421053 1.140751 1.856154 -2.952604 1.621538 0.397448 -0.606102 2.486144 -0.870997 -0.535934 -2.568023 -0.257748 0.330477 1.511726 -0.086827 -0.898480 -0.343271 -2.090822 0.634756 0.060827 0.463797 -1.581240 2.139944 -0.901035 -0.653609 -0.675386 -1.503704 -1.005771 0.338657 -1.618982 0.726364 0.251304 -2.259252 1.628963 0.325285 -0.484548 -0.575251 -0.030336 1.081709 -0.758619 -1.530843 0.521359 -0.989697 -1.603908 -1.359758 -0.941176 0.305390 0.238231 0.027909 -2.069772 -0.816651 2.082945 -1.249009 2.441331 1.017563 -0.231894 0.920019 1.954041 -0.864280 -0.298732 -0.854501 0.772522 0.213425 -1.232039 -0.466484 -0.742961 0.888183 0.922984 -0.221979 -0.234707 -0.894606 1.952432 -0.411230 -0.582716 0.074324 -1.322431 -0.856218 1.212365 0.776571 -0.307633 0.103344 -2.181086 -0.450106 -1.924871 -1.227398 1.424337 -0.373501 0.551350 0.139536 -0.203861 -0.537453 0.304441 0.600804 -0.746823 -0.007201 2.552141 1.203992 -0.967823 0.373363 -2.267286 1.778210 -1.079125 -0.678853 -0.204823 -0.335185 -0.407153 -0.668487 -0.645870 1.278532 1.260447 -1.004509 -1.049320 0.731554 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::~Graph() = -0.253408 0.253885 0.337285 -0.787774 0.574818 0.573302 0.099583 -0.122705 -0.754460 -0.753057 -0.086148 -1.431109 -1.048752 0.896240 -0.351288 0.035400 1.360975 0.111695 -0.185028 -0.417745 0.409024 -0.056907 1.179550 1.519530 -1.243763 0.216427 0.247790 0.724909 0.084937 0.786905 0.480896 -1.536765 -0.265596 0.350891 0.942562 -0.388421 -0.419108 0.136879 0.025103 -2.188821 -0.261563 1.520572 0.524185 0.081831 0.504177 -0.206405 1.311751 0.634177 -0.277328 0.559237 0.740001 0.608224 0.745445 -0.180521 0.264735 -0.076415 0.725576 -0.627568 -0.171242 0.219434 -0.266260 -0.107319 -0.078177 1.163174 1.306202 -0.100586 -0.605849 -0.428912 0.276905 0.377440 -0.025328 1.046832 -0.059453 0.744897 0.595746 -0.331516 0.324256 -1.871709 0.948704 -1.891782 -1.040352 -0.466665 0.954278 1.552144 0.066213 -0.521743 1.903307 -0.389251 -0.025779 0.763247 1.387069 -0.136872 -0.034198 -0.509928 -0.785498 0.383403 -0.284573 -0.074543 -0.096339 0.648500 -0.825048 -0.593106 0.180267 -0.262478 -0.770857 0.240112 -0.336386 0.822754 -0.934312 -0.236730 -0.929556 0.836190 0.333724 -1.618884 -0.924466 -0.726676 -0.925511 0.310876 -0.693961 -0.500777 0.415934 -0.000166 -0.459573 0.170742 -1.230179 1.015466 0.692377 -0.268517 -0.030281 0.620503 0.456828 0.816609 -0.050647 -0.582674 -0.122354 0.611094 -0.005327 -0.081814 -0.655225 0.100339 0.146590 -0.515397 -0.123742 0.177210 -0.586079 -0.414947 -1.076617 -0.900092 0.111197 3.488866 -0.526381 0.914458 0.631477 -0.810796 0.969057 0.327803 -0.248806 0.238284 0.784785 1.032079 -0.757953 -0.723608 0.789510 1.628505 0.411482 -0.334566 -0.069243 0.498194 -0.055564 -0.226205 1.004427 -0.054007 -0.076451 -0.419286 -0.197387 0.424225 1.569252 -0.040941 -1.112645 -0.134122 1.365140 -0.074833 -0.361963 0.191280 -1.217226 -0.214261 0.309902 0.105281 0.690016 1.199399 -2.484275 1.102988 0.577477 -0.141388 1.100886 -0.196981 -0.325548 -1.680096 0.094131 0.681558 1.044125 -0.355130 0.103611 -0.254438 -1.271060 0.054922 0.250436 0.600123 -1.199240 1.255103 -0.308466 -0.530616 -0.402453 -0.573156 -0.651377 -0.533612 -1.031251 0.562677 0.911065 -1.300710 1.095309 0.207755 -0.275030 -0.149578 -0.395717 0.519915 -0.982208 -1.020622 0.274091 -0.422955 -0.925195 -0.098918 -0.685456 0.450570 0.195636 0.335625 -0.983635 -0.715303 1.127759 -0.190162 1.165745 0.762492 -0.072025 0.492856 0.736497 -0.486592 -0.173435 -0.719084 0.568608 0.073349 -0.288703 -0.593653 -0.565892 0.417799 1.334750 -0.143958 -0.540340 -0.728891 1.120211 -0.273949 -0.124363 0.202657 -1.184585 -0.386273 0.329314 0.458141 -0.560502 -0.090482 -1.431982 0.262635 -0.527064 -0.423772 0.745103 -0.826126 -0.076261 0.598440 -0.802414 -0.613355 0.543080 0.514021 -0.493305 0.231256 1.285468 0.068829 -0.153543 0.764518 -1.210349 0.581618 -1.213440 -0.515762 -0.478050 -0.397791 -0.517336 -0.450978 -0.354594 0.603234 0.548014 0.118139 -0.602726 0.434338 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::~list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::~_List_base() = 0.006833 0.165219 0.393724 -0.217897 0.245057 0.030167 0.084887 0.213061 -0.284149 -0.347130 -0.079194 -0.370930 -0.480802 0.363593 -0.149243 -0.168131 0.607403 0.226503 0.023250 -0.236433 0.012430 -0.142318 0.535234 0.597452 -0.562913 0.114501 0.045837 0.352823 0.115715 0.466581 0.005610 -0.476136 0.070389 0.245102 0.320267 -0.318763 -0.017692 -0.071553 -0.384978 -0.900392 -0.033268 0.369395 0.058010 0.031056 0.183971 0.413099 0.578294 0.293805 -0.152753 0.266981 0.272675 0.185172 0.175268 0.043140 0.028540 -0.096718 0.298490 -0.285308 -0.282950 0.167162 -0.001216 -0.579997 -0.133582 0.392510 0.538650 -0.048680 -0.051851 -0.236707 -0.030570 0.123793 0.098355 0.183132 0.223918 0.197457 0.265815 0.048157 0.055408 -0.584506 0.084148 -1.182482 -0.413686 -0.426928 0.676762 0.416183 -0.123267 -0.200586 0.559186 0.023693 0.230627 0.271655 0.535620 -0.159468 -0.168475 -0.248144 -0.151618 0.332483 -0.245232 -0.046660 -0.013956 0.152249 -0.301172 -0.185189 0.226984 -0.136983 -0.250302 0.216562 -0.152116 0.367550 -0.655807 0.003581 -0.588544 0.085116 0.221540 -0.577334 -0.057703 -0.102948 0.217323 0.208934 -0.063525 0.023736 0.088895 0.104035 -0.137200 0.138861 -0.696790 0.500988 0.060153 -0.114703 0.127661 0.170235 0.148529 0.159807 0.233121 -0.177045 -0.154093 0.264069 -0.166499 -0.104430 -0.318176 -0.016655 0.183964 -0.290618 0.099010 -0.029072 -0.283988 -0.236423 -0.427616 -0.199369 0.281223 0.819456 -0.062733 0.253159 0.112594 -0.337952 0.261110 0.038954 -0.122577 0.159970 0.345582 0.239839 -0.059242 -0.234403 0.035046 0.501326 0.229468 -0.230113 0.078910 -0.053037 -0.015610 -0.046372 0.270432 0.090174 -0.041356 -0.201584 -0.068057 0.133681 0.541922 0.041397 -0.492794 -0.077912 0.174823 -0.048387 -0.114095 0.093111 0.094748 -0.004793 0.072130 -0.030532 0.192607 0.462851 -1.053532 0.449889 0.091533 -0.071470 0.264295 -0.141775 -0.072384 -0.456189 0.143166 0.312177 0.532294 0.104735 -0.029857 0.016019 -0.429634 -0.053740 0.072933 0.281700 -0.264105 0.304422 0.072418 -0.290232 -0.274180 -0.452270 -0.028247 0.023555 -0.327305 0.146631 0.235173 -0.968816 0.407371 -0.166797 -0.235312 -0.060262 -0.085828 0.118285 -0.505133 -0.436953 0.012010 -0.138583 -0.604160 -0.280835 -0.185604 0.222895 -0.108104 0.023793 -0.178210 -0.351653 0.464239 -0.062643 0.216034 0.284615 0.039638 0.512440 0.425449 -0.204963 -0.104333 -0.166069 0.326515 -0.376105 -0.031477 0.304667 -0.233610 0.154794 0.677674 -0.032123 -0.064659 -0.115720 0.501815 -0.146253 -0.323783 0.251873 -0.149026 0.080317 0.425222 0.317468 -0.437193 -0.221707 -0.456225 -0.039168 0.122638 -0.233039 0.247780 -0.451657 0.054272 0.317456 -0.058197 -0.400621 0.257199 -0.072663 -0.208961 -0.083260 0.592842 0.524612 -0.316291 0.504059 -0.354573 0.243476 -0.546508 -0.210264 -0.194906 -0.095281 -0.066929 0.082423 -0.130343 0.148835 0.094349 -0.051291 -0.234126 0.111588 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_clear() = -0.146747 2.197092 1.609386 -1.150671 2.439479 2.017526 0.481376 0.215253 -0.834180 -1.868663 -0.915427 -2.410067 -3.457661 2.307862 -0.424059 0.244727 3.517216 -0.079109 0.020129 -0.887595 1.446108 -0.897322 3.502688 2.973231 -3.566327 0.803051 1.852169 1.418140 0.302730 2.488554 -0.839761 -3.057058 0.555625 -0.307456 1.811271 -1.183812 -0.434713 -1.344249 -0.620575 -4.923859 -0.729660 1.451221 -1.313535 0.186179 0.318708 1.647040 4.679172 1.931177 -1.443178 0.882881 1.625122 0.433607 0.899218 0.280134 0.152936 0.059822 1.334942 0.076613 -1.214284 0.373160 -0.336975 -2.665591 -0.509751 2.610121 3.192474 -0.542392 -0.888692 0.798109 -0.420422 0.221940 -0.738624 2.070139 1.776831 1.819836 2.360569 -1.733279 -0.317788 -4.332334 0.150839 -6.250447 -2.715023 -2.842597 1.274541 0.909208 0.995742 -1.109804 4.331726 -0.159239 1.076294 1.834139 4.307677 -2.400951 -0.524097 -2.495156 -0.882586 0.847613 -1.455332 -0.098641 0.524364 -0.643292 -2.116351 -2.503743 1.273496 -0.329869 -1.801051 -0.754332 -1.258502 2.398780 -2.960497 -1.061895 -3.989938 -0.317621 -0.136906 -4.421339 -0.912395 0.174414 1.226281 1.075003 -0.157905 -2.339552 0.798929 1.967094 -0.886839 -1.365268 -0.965532 3.284151 1.968415 -0.539192 1.080884 1.149424 1.771731 2.655351 3.144121 -0.463663 -1.346704 0.884496 -1.015825 -0.532042 -1.310755 0.216260 1.014100 -2.066257 -0.167385 1.771700 -1.392627 -0.320896 -0.024727 -2.343702 1.499157 7.651912 -0.979924 1.356684 0.176134 -3.181205 2.221750 -0.451525 -1.896386 0.623257 1.898226 2.881034 -3.448574 -1.586106 1.743579 3.500133 1.163083 -2.873665 -0.095573 -0.285704 0.064681 -1.135952 1.329154 0.960116 0.300168 -1.122497 -0.481329 1.471171 5.028964 -1.857573 -3.580464 0.873362 1.162355 -0.048090 -2.583148 -0.184732 -1.273561 -0.854306 1.042400 -0.246636 1.323494 3.103441 -5.675341 2.433119 -0.089992 -1.877675 2.220890 -0.333440 -0.334800 -2.463053 1.075017 2.960258 2.349378 0.589154 0.010118 -1.476656 -2.932003 0.116244 0.751245 1.666359 -1.625960 2.432914 -0.292802 -2.261225 -2.149699 -1.671467 -0.684685 -0.890457 -1.489020 1.008257 0.663654 -5.796358 3.643517 -0.443178 -1.006482 0.316286 -0.868747 1.912105 -2.735000 -3.611260 1.376845 -1.029508 -2.280408 -0.720094 -1.063592 1.376526 0.884553 -0.082308 -2.005739 -3.959450 2.415527 0.145547 1.937832 1.867647 1.496973 3.609873 1.016548 -2.118815 -1.823064 -1.945529 1.844380 -0.497196 -1.013591 -1.536362 -1.304171 1.858508 4.011223 -0.519377 -0.073563 -1.966358 2.300654 -2.998144 -1.055201 1.616794 1.023750 -1.371434 0.952517 1.939205 -1.238824 -1.572578 -2.665347 0.019683 -0.915574 -2.257573 0.456542 -3.112178 -0.577380 2.817442 -1.246549 -1.617727 1.463621 -0.081255 -0.415984 -1.076200 3.005193 3.756698 -2.985247 1.200485 -2.611231 2.095420 -3.861484 -2.504323 0.104338 -0.242134 -0.094311 -0.678172 0.489869 0.798301 0.237989 -0.940762 -0.980840 -0.731564 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/eulerian-path-and-circuit.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.103476 0.641697 0.497859 -0.202878 0.824161 0.516597 0.369500 0.199136 -0.509319 -0.784774 -0.236954 -0.916835 -1.303886 1.063035 -0.046613 0.349197 1.700650 0.360424 0.073659 -0.393964 0.548691 -0.872602 1.593052 1.589766 -1.335531 0.378593 0.612344 0.426203 0.015948 0.951294 -0.429000 -1.131466 0.622660 -0.596594 0.583665 -0.797886 -0.232911 -0.325815 -0.097579 -2.287175 -0.213409 0.462332 -0.265000 -0.024871 0.040935 0.892494 1.828105 0.847668 -0.444437 0.766416 0.464175 -0.211691 0.465819 0.225554 0.270836 0.282215 0.277457 0.084568 -0.729449 0.271789 -0.198052 -1.576208 -0.182025 0.974142 1.368218 -0.250670 -0.319011 0.319413 -0.322016 0.093341 -0.086111 0.736093 0.774742 0.376674 1.007349 -1.076518 -0.223372 -1.972082 -0.281879 -3.209558 -1.252099 -1.063134 0.931508 0.125410 0.621496 -0.317222 1.677852 -0.107913 0.448728 0.634241 1.796746 -1.321889 -0.430544 -0.762861 -0.088307 0.411738 -0.690179 -0.033443 0.611984 -0.542362 -1.041807 -1.121291 1.025034 0.053994 -0.719234 -0.519137 -0.355197 1.089247 -1.427822 -0.792111 -1.825397 -0.422587 -0.163332 -1.762972 0.288106 0.176759 0.731003 0.808045 -0.331878 -1.077506 0.422808 0.769429 -0.241371 -0.839180 -0.289121 1.417857 0.496134 -0.087667 0.608159 0.493262 0.561385 1.383818 1.578165 -0.222703 -0.352038 0.437886 -0.648718 0.015306 -0.560612 -0.342949 0.495275 -1.084932 -0.094193 0.527074 -0.783678 -0.072079 0.497341 -0.503512 0.559925 2.718368 -0.248745 0.733298 0.299526 -1.345701 1.042707 -0.455047 -0.568554 0.349751 1.109417 0.957254 -1.509566 -0.695434 0.496442 1.539338 0.632007 -1.363167 -0.469452 -0.316951 0.274198 -0.273107 0.546770 0.361921 0.440750 -0.705069 -0.088574 0.574652 2.248802 -1.020561 -1.086397 0.258004 0.095687 -0.057476 -1.686181 -0.137442 -0.676947 -0.255673 0.057129 -0.085487 0.323742 1.327839 -2.231755 1.128992 -0.638718 -0.713144 0.971406 0.126124 -0.378079 -1.466239 0.369500 1.083932 1.236242 0.416507 0.104194 -0.313970 -1.279089 -0.123174 0.148120 0.636787 -0.637661 1.099386 -0.193474 -1.007322 -0.822727 -0.561396 -0.044277 -0.644216 -0.301495 0.539293 0.696047 -2.386497 1.320983 -0.176136 -0.689653 0.328782 -0.043990 0.806984 -1.209328 -1.605837 0.603913 -0.473636 -0.988665 -0.457622 -0.445601 0.559666 0.207534 -0.549578 -0.491850 -1.563544 1.186865 0.034156 0.892035 0.816438 0.375754 1.754578 0.563718 -1.112083 -0.711544 -0.583959 0.327162 -0.783837 -0.390482 -0.751213 -0.622451 0.915509 1.848173 0.112926 -0.002076 -0.557441 1.194270 -1.514949 -0.493447 0.966419 0.804998 -0.295204 0.597015 1.031906 -0.911318 -0.579525 -0.923953 -0.105150 -0.117822 -0.872058 0.352672 -1.361710 -0.086151 0.905872 -0.382456 -0.471999 0.621644 -0.043703 -0.036295 -0.510417 1.352060 1.799761 -1.395362 0.351887 -0.997538 0.726116 -1.591363 -0.969847 -0.015495 0.565129 -0.326315 -0.166925 0.444464 0.361782 0.163303 -0.724187 -0.534850 -0.336825 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/eulerian-path-and-circuit.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.083720 2.091510 1.366277 -0.359619 1.764270 0.994141 0.719948 0.675167 -0.559317 -2.286870 -0.516342 -2.177360 -3.725642 2.182581 -0.238950 -0.160090 3.667570 0.279170 0.329360 -1.270693 1.166641 -1.538706 3.744430 3.539724 -3.647278 0.776785 2.126973 1.181516 0.844205 1.389804 -0.337967 -2.497264 1.425576 -0.773104 1.679738 -1.264721 -0.309632 -1.737586 -1.008497 -5.027494 -0.768477 0.692235 -1.313150 0.103118 0.102108 3.005358 4.657213 2.000392 -1.605766 1.355360 1.557942 -0.302976 0.766056 0.368787 -0.024966 -0.634567 0.544727 0.519102 -1.548016 0.558004 -0.116956 -3.966402 -0.797345 2.546330 3.306273 -0.569677 -0.532769 0.899980 -0.607787 0.344564 -0.592539 1.799689 2.536555 1.561691 2.828804 -2.175978 -0.872230 -5.152526 -0.763331 -8.528228 -2.957993 -2.988941 2.360755 -0.504262 0.824130 -0.581609 3.830087 0.570065 1.396620 2.114305 4.448601 -2.535818 -0.952148 -1.998853 -0.277919 1.471750 -1.871413 0.698029 1.493854 -1.118727 -2.382252 -2.419498 1.839216 -0.276175 -1.765330 -1.141537 -1.043031 2.253788 -3.274369 -0.881329 -4.517521 -1.453240 0.256850 -4.494726 0.072237 0.661008 2.839176 1.793391 -0.212651 -1.798575 0.495283 1.688997 -0.372280 -1.607716 -0.567686 3.184835 1.560644 0.007574 1.570323 1.482215 1.872850 2.774053 3.980758 -0.168993 -1.232827 0.683842 -1.602773 -0.168380 -1.239567 -0.305341 2.052539 -2.078855 0.419665 1.301486 -1.641542 -1.213251 1.289209 -1.887088 1.625575 6.335810 -0.320014 1.534248 0.564743 -3.007350 1.627760 -1.329863 -1.770118 0.940035 2.464994 2.542573 -2.810306 -1.415006 1.163741 3.547854 1.235267 -3.481002 -0.464180 -0.328609 0.392392 -1.401580 1.258420 0.959654 0.942841 -1.309365 -0.210127 2.227428 4.295147 -2.279002 -3.168347 0.379793 0.730584 0.419217 -3.290711 -0.005514 -0.458674 -0.488667 0.779399 -0.036220 0.895975 2.987535 -5.700701 2.271142 -0.520354 -1.251710 1.702409 0.413003 -1.002284 -3.201857 1.788924 2.872058 2.206859 1.182139 -0.082561 -1.017635 -2.932362 -0.257534 0.706838 1.517534 -1.341773 2.454841 -0.460662 -1.867452 -2.498233 -1.646497 -0.011700 -0.715075 -0.802046 1.142005 0.916030 -6.374895 3.463587 -0.993638 -1.862854 -0.155246 -0.998996 1.908249 -3.211251 -3.837815 1.095471 -1.548768 -3.109893 -1.449845 -1.093049 1.118529 0.662225 -0.665243 -1.274516 -3.562970 3.017396 0.017287 1.778801 1.923457 1.434754 4.861297 0.485099 -2.466108 -2.009369 -1.286411 1.696451 -1.544867 -1.396396 -1.351547 -1.295153 1.722446 4.488532 -0.641521 -0.000158 -1.205766 2.262963 -3.972367 -1.908973 1.910512 2.743855 -0.667918 2.001589 2.059049 -1.931118 -1.396869 -2.515920 -0.632578 -0.168553 -2.558438 0.519308 -3.364669 -0.301012 2.687335 -0.937404 -1.206959 1.652347 -0.495242 0.101871 -1.235184 2.569896 5.489034 -4.057488 0.778429 -2.689755 1.947818 -4.023807 -2.919626 0.459356 0.559369 0.223585 -0.529675 0.595067 0.518487 0.413461 -2.147296 -1.541073 -0.226072 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::_M_node_count() const = -0.047959 0.074187 0.150852 -0.097095 0.169069 -0.040761 0.085106 0.002587 -0.187054 -0.288537 0.020654 -0.325482 -0.337677 0.278622 -0.097826 0.057152 0.396993 0.088617 0.021521 -0.205347 0.083720 -0.228953 0.444247 0.449787 -0.380770 0.072168 0.097082 0.203905 0.117136 0.184709 0.039327 -0.273047 0.145170 -0.045471 0.159462 -0.183221 -0.017049 -0.004840 -0.071148 -0.570688 -0.049943 0.136265 0.077063 0.033706 0.037695 0.346494 0.380087 0.245882 -0.102309 0.299784 0.227428 -0.006760 0.151387 0.058174 0.027454 -0.104148 0.158474 -0.180372 -0.188637 0.087118 -0.019847 -0.457826 -0.071060 0.290635 0.418813 -0.078543 -0.056380 0.014940 -0.070522 0.097232 0.077826 0.187622 0.125286 0.112548 0.238713 -0.220717 0.025316 -0.583535 -0.051627 -0.997705 -0.308667 -0.213211 0.394175 0.157394 0.046081 0.035571 0.430770 0.095797 0.045847 0.192963 0.424459 -0.227646 -0.130408 -0.073812 -0.055988 0.175175 -0.217742 0.054169 0.086398 0.118905 -0.245923 -0.163811 0.243737 -0.056587 -0.183833 -0.035782 -0.105422 0.225626 -0.503444 -0.105493 -0.395801 -0.054455 0.083527 -0.463438 0.115922 -0.038266 0.278618 0.167500 -0.075430 -0.083781 0.080283 0.070455 -0.045615 -0.036890 -0.362809 0.281679 0.087056 0.029298 0.111920 0.161313 0.130608 0.299637 0.230672 -0.118414 -0.111806 0.119691 -0.132948 0.058125 -0.161478 -0.089342 0.195626 -0.273149 0.107635 0.008561 -0.193854 -0.201491 -0.011250 -0.121624 0.125977 0.490782 -0.010801 0.233741 0.174870 -0.272173 0.107471 -0.146694 -0.048953 0.146156 0.264172 0.160684 -0.062753 -0.204702 0.126690 0.392930 0.160782 -0.277092 -0.096596 0.025423 0.091004 -0.038347 0.158905 0.100618 0.020184 -0.164950 -0.019937 0.132903 0.438591 -0.092518 -0.110715 0.015050 0.074480 -0.030252 -0.313386 0.008641 -0.049450 -0.011005 -0.004040 0.044549 0.057003 0.340731 -0.721745 0.296792 -0.025945 -0.002619 0.172062 0.003863 -0.158386 -0.514861 0.089499 0.205575 0.287825 0.054183 0.090285 0.031890 -0.341656 -0.023180 0.021137 0.137715 -0.188958 0.258789 0.005404 -0.204364 -0.222308 -0.145654 0.019265 -0.032883 -0.098900 0.174861 0.247848 -0.684451 0.282926 -0.136853 -0.236388 -0.020933 -0.025848 0.214408 -0.351482 -0.318678 0.074136 -0.227878 -0.381874 -0.222255 -0.096389 0.084825 -0.084467 -0.102066 -0.080190 -0.190088 0.318211 -0.092154 0.164441 0.198305 0.031372 0.396850 0.091342 -0.221983 -0.120684 0.003919 0.076285 -0.324539 -0.070456 0.109996 -0.112287 0.172309 0.465811 0.024333 -0.047238 0.063015 0.319132 -0.261731 -0.238387 0.208970 0.140766 -0.027509 0.336657 0.220488 -0.302267 -0.074731 -0.298366 -0.056287 0.012676 -0.205817 0.186731 -0.268338 0.031388 0.182253 -0.041022 -0.173378 0.219917 -0.014112 -0.049391 -0.093159 0.413796 0.496524 -0.267519 0.162747 -0.306802 0.122478 -0.404969 -0.249946 -0.030619 0.153080 -0.080969 -0.000644 -0.032766 0.139574 0.119721 -0.176340 -0.202373 0.069934 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_size() const = -0.002432 0.446603 0.384758 -0.279463 0.521929 0.608010 0.102832 -0.149910 -0.253589 -0.148126 -0.106345 -0.590175 -0.468670 0.454322 -0.120214 0.111786 0.625705 -0.025145 -0.071046 -0.052559 0.081105 0.113363 0.668328 0.626933 -0.531776 0.233971 0.182790 0.098683 -0.177955 0.672442 -0.417365 -0.749543 0.083255 0.060534 0.084754 -0.117787 -0.232055 -0.286073 0.106311 -0.863395 -0.044500 0.317653 -0.201697 -0.056589 0.119200 -0.049060 0.929636 0.298156 -0.003255 0.173764 0.175665 0.225913 0.166740 0.034951 0.317986 0.131082 0.575168 -0.151769 -0.191251 -0.001602 -0.105581 -0.139532 -0.239823 0.490189 0.476720 0.041777 -0.234392 -0.099989 -0.120890 -0.022690 -0.138877 0.360845 0.183386 0.512395 0.167884 -0.048378 0.211227 -0.373668 0.051658 -0.492500 -0.499200 -0.268848 0.170701 0.431914 0.266484 -0.211966 0.726459 -0.140268 0.130689 0.042691 0.791022 -0.501737 -0.082708 -0.131488 -0.246331 0.027908 -0.109983 0.061461 -0.249062 -0.183480 -0.431229 -0.441939 0.304806 0.019887 -0.316773 0.136643 -0.043346 0.314765 -0.490858 -0.171925 -0.441809 0.024950 -0.068608 -0.735183 -0.403233 0.010899 0.041928 0.170130 -0.260610 -0.594262 0.242915 0.287808 -0.246739 -0.245117 -0.302394 0.481017 0.353342 -0.026385 0.115701 0.008373 0.386504 0.599035 0.242782 -0.166619 0.006011 0.010906 0.008082 -0.031322 -0.075320 0.046937 -0.360214 -0.316325 0.083673 0.400690 -0.287845 0.141708 -0.398546 -0.239535 0.107969 1.410869 -0.320486 0.393585 0.063177 -0.672856 0.273330 -0.153487 -0.371775 -0.066156 0.251184 0.562723 -0.542039 -0.267748 0.416044 0.674988 0.241164 -0.382410 0.222934 0.024330 -0.090956 -0.151783 0.391844 0.009406 0.107367 -0.313570 -0.154926 0.253579 1.085469 -0.210236 -0.772669 0.172573 0.029720 0.166384 -0.082037 -0.012311 -0.166185 -0.017125 0.242342 -0.092992 0.292725 0.544489 -1.061606 0.481449 -0.063260 -0.533219 0.600742 -0.014217 -0.180373 0.121747 0.080137 0.525305 0.473737 0.140963 0.011221 -0.263235 -0.488226 -0.087344 0.088889 0.192394 -0.411817 0.450907 0.199845 -0.667576 -0.283571 -0.432176 -0.001976 -0.238617 -0.502590 0.213469 0.071574 -1.105157 0.661474 0.275558 -0.102629 0.024403 -0.232377 0.247351 -0.387641 -0.581703 0.186278 -0.256415 -0.222195 0.156897 -0.249961 0.135185 0.225990 0.306274 -0.495514 -0.507945 0.385700 0.161685 0.463965 0.359990 0.211931 0.317701 0.199229 -0.273945 -0.139311 -0.406983 0.545475 -0.027139 -0.219961 0.007588 -0.406462 0.348119 0.609199 -0.057328 -0.152163 -0.526725 0.336001 -0.284374 0.086279 0.257196 -0.016860 -0.384299 -0.071637 0.338570 -0.057830 -0.145832 -0.362158 -0.107729 -0.362510 -0.358773 0.122957 -0.335678 -0.051237 0.416159 -0.276214 -0.380561 0.171163 -0.105737 -0.135461 0.036743 0.433023 0.279734 -0.301678 0.394543 -0.438942 0.354102 -0.607144 -0.460311 0.116181 -0.247797 -0.301170 -0.276942 -0.119710 0.200764 -0.006716 0.032703 -0.074573 0.008360 +PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/Iterative_QuickSort.cpp__partition(int*, int, int) = -1.623879 -0.983896 -0.665385 -2.452057 1.855826 3.748202 1.020849 -2.785570 -3.152980 -1.154285 1.504635 -4.794134 -2.535744 4.010274 -1.596836 2.913157 4.846785 -0.056556 -1.929543 -1.408408 3.092020 0.895186 6.072653 6.069028 -3.991507 0.124675 0.476893 1.442284 1.592984 0.076682 1.184768 -2.747399 1.854471 -3.177490 -0.181868 -1.417308 -0.935810 0.717019 3.074683 -6.120110 -0.428563 1.340484 -0.521224 -0.004466 0.170779 1.567145 3.732810 3.330055 -0.088789 3.036011 2.550780 0.449895 1.564259 0.169771 0.853401 -0.214141 0.676697 -0.712350 -0.413944 -1.077678 -0.876493 -0.817657 -0.242979 4.354618 4.818763 -0.069925 -1.891909 1.434453 0.921511 0.947158 1.098461 3.343292 0.143173 1.913184 2.509866 -4.132669 0.297214 -5.575298 0.478807 -6.326441 -2.736154 0.126681 2.653657 1.276039 2.373371 -0.314350 6.012571 -0.523452 -1.984976 4.052319 4.843456 -3.583378 -0.844378 -0.758573 -1.481842 0.305307 -2.018229 1.676042 0.556210 1.527115 -3.619218 -2.350055 0.302652 0.578060 -2.448697 -2.181673 -0.200556 2.695297 -3.798725 -2.153786 -1.558840 2.252981 -0.471084 -6.609252 -2.964455 -2.297163 1.854728 0.694556 -2.620055 -3.310976 1.462703 1.075563 -0.617180 -2.029110 -0.039298 2.141865 3.126734 1.149734 -0.228792 2.295691 1.512276 6.495064 1.206404 -1.888212 0.196908 0.727531 -0.381150 1.998176 -1.384067 -0.630546 0.987529 -3.494425 0.779987 2.584560 -2.079895 -1.263762 1.294914 -0.366429 -0.274434 12.719850 -0.810381 4.540908 3.944786 -3.748274 0.262836 -2.356275 0.454543 1.610036 2.125709 2.179359 -5.331132 -3.031712 3.558441 5.847115 2.035008 -4.275863 0.438028 1.616955 0.625844 -1.547637 2.000464 0.534332 0.626182 -2.244508 -0.483061 2.977987 7.258376 -2.529286 -0.473431 0.778929 1.973908 0.001636 -2.849069 -0.669567 -2.430096 0.044112 2.661616 1.246718 1.814321 4.447019 -5.301560 3.407280 -0.263083 0.041954 2.867686 1.971502 -3.412453 -2.574435 -0.712840 1.942909 2.875956 -0.493404 0.280533 0.636236 -4.809003 0.066186 1.343081 0.619030 -2.700860 3.905407 0.814966 -1.896554 -1.790544 0.749242 -0.632089 -1.366602 -1.354402 3.201383 -0.022911 -5.395607 3.465602 0.736873 -2.281975 0.078416 -1.398379 4.153169 -3.627487 -3.818427 2.620565 -1.877430 -2.614625 -0.969361 -1.108935 1.501931 2.182229 1.680268 -3.997855 -3.474881 4.075526 -0.931886 4.540985 2.315820 -0.493611 3.128258 -3.064343 -2.066536 -2.591969 -3.225057 1.292879 0.703415 -2.921565 -1.669727 -1.168795 3.246536 3.621931 -0.455534 -2.888344 -0.313736 3.679743 -4.090692 -0.309448 1.247404 3.299190 -3.262372 1.609008 1.949657 -2.876840 1.093076 -2.583622 -0.823530 -2.673244 -2.542152 3.267455 -1.077109 1.623248 0.451028 -0.362437 0.023586 1.831985 1.288903 0.295844 1.347668 4.602062 3.791198 -1.299782 -0.673403 -5.069532 2.929624 -4.552115 -4.348401 1.180154 0.318362 -2.048039 -1.221798 -0.563840 3.514166 2.753206 -2.698694 -2.202390 1.695225 +PE-benchmarks/Iterative_QuickSort.cpp__quickSortIterative(int*, int, int) = -2.731884 -2.940355 -1.216831 -3.599592 2.065551 4.825765 1.643786 -4.661211 -5.838032 -0.538419 2.767388 -7.972116 -3.254007 6.492939 -2.317924 4.809668 7.761975 0.516855 -3.872690 -2.758675 5.166232 0.496817 9.327145 10.063141 -5.899005 0.197870 -0.061751 2.188641 3.548593 -0.193440 1.071503 -2.167675 2.466424 -5.527494 0.158021 -2.830794 -1.753579 2.000449 5.386734 -9.948571 -0.473120 2.562931 1.996643 -0.058753 0.523200 5.108776 4.937595 5.217807 0.186086 4.963516 3.914332 -0.875818 3.523248 0.065391 1.832108 0.098254 3.343997 1.124606 -0.746830 -1.608863 -1.521285 -1.227592 0.446480 6.718446 7.956160 0.013221 -3.378093 1.743526 2.873119 1.652204 2.403777 5.386201 0.017090 2.255161 4.001045 -6.461370 1.993280 -8.908495 1.229508 -10.959533 -3.714802 1.154248 4.899589 0.217191 3.552332 -0.439273 9.624175 -1.042622 -3.908341 5.513234 6.999193 -5.522581 -1.335926 -0.326967 -2.839108 0.260738 -2.913717 2.459030 3.280735 2.894105 -5.712835 -3.255481 0.849840 0.991118 -3.845312 -1.695262 -0.156251 3.862934 -5.428579 -3.325641 -1.823888 3.119627 -0.601564 -10.041931 -3.389132 -4.855927 1.745153 1.034136 -4.811292 -4.747379 2.482620 0.889592 -1.313176 -2.541143 -1.083941 3.970879 4.208838 1.833328 -0.897550 3.258582 1.666357 8.980447 1.444868 -3.866487 0.783598 1.752055 -1.683287 3.515216 -2.830078 -1.916609 3.371628 -5.517687 0.912521 2.502805 -3.339680 -0.936788 3.441164 0.661616 -1.070092 18.752604 -1.233874 7.579885 6.368545 -5.174968 1.550186 -2.754925 1.745541 3.008217 3.737796 2.806685 -8.587769 -5.081094 5.476100 9.421172 3.307799 -7.253669 0.165882 2.764179 1.008340 -1.593104 3.377239 0.567185 0.779611 -3.617983 -0.711855 3.444431 11.620441 -4.175060 -0.472268 0.597511 2.032913 -0.649745 -5.621851 -0.859952 -4.201956 0.217361 1.831205 2.195453 3.104790 6.862623 -8.889561 6.044896 -1.143277 0.021728 6.178435 2.477302 -5.581084 -5.296414 -1.916085 2.088736 5.047755 -0.450231 -1.782851 1.921108 -7.772401 0.230080 1.459805 0.757334 -4.581233 6.456408 1.192320 -2.267444 -1.985618 0.804587 -0.255518 -2.375648 -1.866568 5.301212 -0.755096 -7.481958 4.641560 1.355574 -3.525774 -0.097489 -1.241029 4.138590 -5.235078 -5.199541 3.265841 -2.480045 -3.743456 -3.268690 -1.869029 2.186690 2.891788 2.363310 -6.774715 -6.079548 6.929578 -3.401963 7.687646 3.639620 -1.967504 4.088115 -2.310695 -2.983545 -4.480117 -3.066631 -0.320193 0.772592 -4.253933 -2.326180 -1.757185 5.013674 5.151652 -0.583797 -3.269705 -0.423584 6.450578 -5.271537 -1.230684 1.746487 3.702955 -4.664418 3.111650 2.947010 -5.095658 2.311362 -3.976217 -3.172862 -4.032117 -3.044107 6.101677 -1.370093 2.651551 -0.484793 -0.695016 0.687628 2.755492 2.124434 -0.272253 2.512106 8.292465 5.988313 -1.650749 -0.716898 -8.021766 5.050042 -6.620940 -5.615239 1.379320 1.201016 -4.426146 -1.680261 0.242487 5.833290 4.857299 -5.541282 -3.929956 3.250880 +PE-benchmarks/Iterative_QuickSort.cpp__printArr(int*, int) = -0.548709 -0.307559 -0.020259 -0.772087 0.586856 0.642553 0.355689 -0.484821 -1.132286 -0.806604 0.306508 -1.596969 -1.100365 1.437567 -0.464725 0.810042 1.870306 0.282515 -0.400632 -0.539973 1.025221 -0.556993 1.938999 2.152007 -1.434499 0.040242 0.186315 0.741486 0.404065 0.395686 0.465868 -1.126088 0.446422 -0.902966 0.479617 -0.842152 -0.237033 0.506091 0.587139 -2.462864 -0.190517 0.872116 0.278070 0.027380 0.109524 0.761669 1.330191 1.164483 -0.335028 1.113522 0.920446 -0.023220 0.704000 0.093477 0.219831 -0.031417 0.106994 -0.218235 -0.383214 0.033631 -0.353366 -0.899207 0.122432 1.450559 1.842503 -0.184402 -0.565764 0.296273 0.146116 0.418221 0.388299 1.102407 0.179153 0.337936 1.033238 -1.451487 -0.006144 -2.607861 0.292607 -3.146122 -1.078641 -0.287354 1.239555 0.790724 0.605107 -0.277492 2.170907 -0.191705 -0.432141 1.466589 1.763131 -1.065745 -0.390078 -0.581764 -0.612060 0.319595 -0.788274 0.172459 0.464957 0.603742 -1.230904 -0.895732 0.358525 0.079205 -0.830376 -0.690777 -0.274987 1.132022 -1.545228 -0.827127 -1.104016 0.589733 0.026256 -2.254392 -0.272756 -0.822916 0.274233 0.456516 -0.884195 -0.902958 0.564716 0.324706 -0.296803 -0.486738 -0.712616 1.174227 0.678638 0.165979 0.049788 0.763146 0.354717 1.743185 0.648322 -0.727485 -0.126349 0.567153 -0.472457 0.461951 -0.813273 -0.403124 0.875650 -1.288491 -0.085158 0.392454 -0.830218 -0.511729 0.411484 -0.386990 0.159061 4.024849 -0.275612 1.391052 1.160846 -1.241777 0.887934 -0.395667 0.146436 0.627722 1.082614 0.758379 -1.641773 -1.079735 1.033926 2.033892 0.761450 -1.279027 -0.438852 0.369416 0.373949 -0.260731 0.728500 0.271839 0.045246 -0.789286 -0.133705 0.717307 2.416424 -0.729980 -0.141102 0.152637 0.889501 -0.265127 -1.546430 -0.126791 -1.216107 -0.120075 0.352006 0.277231 0.587029 1.625218 -2.418909 1.352786 -0.208063 0.088368 0.968921 0.286141 -0.930846 -2.169965 -0.117888 0.727192 1.281112 -0.084320 0.217763 0.199114 -1.711659 0.052964 0.275353 0.522078 -1.003605 1.441177 -0.191950 -0.691200 -0.718533 0.005822 -0.469419 -0.642028 -0.421403 1.005754 0.673237 -1.791372 1.233153 -0.045669 -0.754460 0.093375 -0.099406 1.172111 -1.398190 -1.490909 0.779134 -0.634352 -1.117760 -0.658458 -0.456202 0.611118 0.306749 -0.256995 -0.950784 -1.421316 1.478020 -0.469152 1.498026 0.809942 -0.191473 1.312677 0.105658 -0.853514 -0.829475 -0.769544 0.105811 -0.369974 -0.688188 -0.736853 -0.387151 1.059772 1.556888 0.049782 -0.656099 0.011287 1.592768 -1.103570 -0.419900 0.629401 0.363365 -0.673851 0.776659 0.837905 -1.298453 0.057904 -1.266077 0.040053 -0.567290 -0.807147 1.038382 -0.802448 0.344361 0.296953 -0.219518 -0.185947 0.684801 0.616885 -0.091003 0.139702 1.960522 1.294778 -0.576918 0.081519 -1.672008 0.829319 -1.701258 -1.192997 -0.098089 0.570816 -0.654445 -0.216216 0.090646 1.023305 0.847095 -0.758126 -0.821203 0.371781 +PE-benchmarks/Iterative_QuickSort.cpp__main = 0.034670 0.206475 0.518851 -0.363329 0.565354 0.199425 0.281143 0.304251 -0.691274 -0.604702 0.028846 -1.037689 -0.924025 0.825579 -0.077846 -0.023450 1.195523 0.251080 -0.078095 -0.332699 -0.041474 -0.108239 1.035647 1.144904 -0.802000 0.365304 -0.206922 0.123791 -0.113950 0.723421 -0.082782 -1.123143 0.298212 0.263234 0.404274 -0.268703 -0.394466 -0.201955 -0.272122 -1.613377 -0.031275 0.974830 0.068406 -0.059830 0.350830 0.811773 1.203028 0.493842 -0.022619 0.693188 0.220880 -0.010349 0.448451 0.052493 0.431578 -0.075500 0.459530 -0.418947 -0.638488 0.303201 -0.201972 -0.729949 -0.438041 0.621776 0.791636 -0.166223 -0.437378 -0.361766 0.017207 0.202028 0.134030 0.496549 0.662086 0.247167 0.473448 0.105127 -0.062806 -0.816652 0.125277 -2.190524 -0.941463 -0.349920 1.406870 0.695461 -0.106241 -0.750154 1.114507 -0.191486 0.087630 0.343697 1.143294 -0.434764 -0.339335 -0.231065 -0.050254 0.260380 -0.278850 -0.068394 0.295473 -0.094833 -0.785061 -0.176253 0.509077 -0.286084 -0.447064 0.307502 -0.065613 0.732742 -1.039680 -0.032056 -0.960380 0.345659 0.454976 -1.075157 -0.040439 0.116379 0.003186 0.582522 -0.583092 -0.110345 0.458691 -0.035712 -0.469844 0.077334 -1.002215 1.065303 0.154354 0.103600 0.280413 0.561965 0.454671 0.566294 0.448964 -0.341528 0.049439 0.309513 0.020385 0.169181 -0.184673 -0.213841 0.053253 -0.517720 0.166945 -0.114299 -0.576370 -0.106942 -0.854050 -0.085334 0.099328 1.458253 -0.392795 0.787086 0.268262 -0.665907 0.611854 -0.164143 -0.239382 -0.003962 0.703998 0.581670 -0.233281 -0.409544 0.511022 1.151233 0.459903 -0.742669 0.360857 0.110810 0.035025 -0.207100 0.712403 0.097392 0.470132 -0.494005 -0.121444 0.255389 1.479282 -0.235120 -0.983289 -0.105213 0.219980 0.437418 -0.223900 0.136158 0.035739 -0.010957 0.201930 0.011976 0.388375 0.877052 -1.751057 0.918995 -0.114318 -0.397325 0.796969 0.083816 -0.336994 -0.839202 -0.176653 0.535462 1.080755 0.373601 -0.107356 -0.125981 -0.808759 -0.110978 0.074352 0.291863 -0.515934 0.679849 -0.032114 -0.530991 -0.209665 -0.867064 -0.064587 -0.016979 -0.631060 0.378440 0.726105 -1.749854 0.733239 0.129773 -0.395339 -0.263874 -0.026103 0.395602 -0.628607 -0.787077 0.051179 -0.567873 -1.275378 -0.298772 -0.501675 0.140271 -0.059295 0.150153 -0.338900 -0.731871 1.269073 0.019677 0.931876 0.597573 -0.113623 0.983873 0.825929 -0.604312 0.060940 -0.809636 0.729608 -0.648730 -0.114802 0.507336 -0.564572 0.356178 0.888507 0.047383 -0.273175 -0.609681 0.720232 -0.554287 -0.152883 0.583800 -0.201277 -0.017656 0.716524 0.736682 -0.589353 -0.054647 -0.823932 -0.233765 -0.320345 -0.288479 0.351971 -0.605495 -0.005785 0.323636 -0.261240 -0.570625 0.241422 -0.180822 -0.488995 -0.096560 1.021009 0.995485 -0.703714 0.789904 -0.724742 0.686255 -0.816380 -0.540872 -0.159044 -0.030830 -0.486736 -0.210916 -0.117469 0.200535 0.217024 -0.500692 -0.658905 0.462704 +PE-benchmarks/find-parity.cpp__getParity(unsigned int) = -0.623970 -0.849852 -0.206447 -0.891013 0.639380 0.306970 0.306254 -0.950943 -1.397065 -0.463682 0.563691 -1.435365 -0.469639 1.402921 -0.376489 1.378792 1.712437 0.282773 -0.622392 -0.648355 1.076980 -0.532810 1.707310 1.964648 -0.934145 0.038584 -0.136330 0.419797 0.391478 -0.057157 0.377960 -0.465003 0.365294 -1.365874 0.151241 -0.568918 -0.375297 0.829881 1.490071 -1.952493 0.072887 0.347706 0.778663 0.040303 -0.011237 0.549933 0.693875 0.856177 0.063514 1.249741 0.920000 -0.166175 0.725691 0.085965 0.320854 0.380373 0.466854 0.024550 -0.246340 -0.097621 -0.441528 0.116497 0.421814 1.203984 1.608557 -0.119763 -0.727402 0.493596 0.707829 0.512605 0.715780 0.992219 -0.484276 -0.047405 0.673245 -1.882344 0.224367 -2.968276 0.255668 -2.194541 -1.056089 0.413412 0.978918 0.265227 0.806598 0.265761 1.772843 -0.227578 -0.878055 0.936331 1.344018 -0.918294 -0.342832 -0.034169 -0.610733 -0.024949 -0.529478 0.118899 0.828510 0.801329 -1.158580 -0.825350 0.653015 0.152666 -0.661998 -0.702214 0.143796 1.138048 -0.704541 -1.105084 -0.344899 1.099139 -0.197127 -1.840341 0.327860 -1.085605 -0.082826 0.360402 -1.168858 -1.046448 0.601652 0.055646 -0.592997 -0.482153 -0.187915 0.721185 0.761057 0.334211 -0.190030 0.663141 0.123934 1.823011 0.174011 -1.047735 0.248186 0.407055 -0.232622 0.802760 -0.804995 -0.717389 0.629763 -1.053758 0.156622 0.227093 -0.737627 -0.279210 1.169929 0.028032 -0.500830 2.912416 -0.400818 1.594102 1.302657 -0.849993 0.613372 -0.375367 0.597702 0.540473 1.029127 0.427181 -1.349186 -1.139580 1.104287 1.828236 0.744704 -1.369302 -1.117785 0.507312 0.176028 0.083057 0.613520 0.117909 0.265506 -0.790396 -0.117508 0.396580 2.369733 -0.741820 0.432748 0.138761 0.831375 -0.296666 -1.784776 -0.399764 -1.853981 0.039824 -0.011698 0.583180 0.461047 1.444621 -2.235886 1.067267 -0.391378 0.156754 1.287398 0.647755 -1.120953 -2.159140 -0.662206 0.261677 1.233604 -0.314379 0.206321 0.530521 -1.533980 0.042363 0.025143 0.189724 -0.958729 1.235618 -0.070895 -0.323979 -0.133100 0.616120 -0.263282 -0.786627 -0.040406 1.078568 0.898922 -1.034872 0.780972 0.163251 -0.600338 0.254582 0.114329 1.402574 -0.652495 -0.747029 0.672335 -0.546355 -0.353308 -0.742760 -0.260620 0.496956 0.180065 0.419312 -0.882589 -0.727914 0.782483 -0.602451 1.602675 0.674315 -0.656346 0.622582 -0.102745 -0.618394 -0.577978 -0.320334 -0.308922 0.067682 -0.671638 -0.716502 -0.282127 0.995646 0.936755 0.300997 -0.774411 0.044352 1.409038 -1.119012 -0.060983 0.557019 0.369623 -0.774365 0.602243 0.746584 -1.051547 0.459406 -0.793358 -0.106260 -0.769594 -0.398235 1.277573 0.073090 0.407236 -0.481709 -0.076780 0.445674 0.642862 0.737920 0.013650 0.290527 1.591970 1.193335 -0.176431 -0.451048 -1.476703 0.748066 -1.219101 -0.831690 -0.059058 0.506100 -1.311163 -0.241214 -0.033615 1.236744 0.638037 -0.689689 -0.947195 0.522750 +PE-benchmarks/find-parity.cpp__main = -0.081946 0.195454 0.437273 -0.428249 0.386327 -0.209012 0.193607 0.085095 -0.605442 -0.976156 0.362748 -1.469202 -1.326672 0.840009 -0.357954 -0.361459 1.048570 -0.148539 -0.239567 -0.774930 0.148465 -0.012063 1.217866 1.307469 -1.250940 0.165226 -0.000387 0.566402 0.686915 -0.046535 0.892465 -0.819215 0.055736 0.367590 0.599978 0.193027 -0.147735 -0.413227 -0.390911 -1.528989 -0.220148 1.030970 0.409818 0.051970 0.323387 1.086925 1.241876 0.736623 -0.377810 0.505046 0.969911 -0.049410 0.530952 -0.070603 -0.094776 -1.170770 0.714865 -0.502008 -0.532178 0.176101 -0.000511 -0.830311 -0.447341 1.068516 1.095960 -0.092921 -0.350096 -0.142299 0.299003 0.692989 0.140604 0.722115 0.698422 0.652112 0.864811 0.139033 -0.036771 -1.852756 0.242402 -2.829112 -1.010670 -0.354672 1.716358 0.734376 -0.430884 0.019584 1.317569 0.416757 -0.100780 0.724705 1.313048 0.161915 -0.363604 -0.278737 -0.518317 0.776300 -0.612290 0.528978 0.214660 0.889281 -0.859365 0.109527 0.052588 -0.460957 -0.571416 0.438665 -0.254197 0.590358 -1.022233 0.487923 -0.836506 0.326124 0.968208 -1.654370 -0.191685 -0.211158 0.188718 0.500531 -0.391201 0.402276 0.157807 -0.416505 -0.371008 0.561903 -1.451768 0.927971 0.342432 0.421948 0.200345 0.839709 0.807345 0.204296 0.162593 -0.420971 -0.146044 0.091356 -0.067832 0.340044 -0.334960 -0.062673 0.892990 -0.383019 0.708698 -0.185294 -0.500359 -1.232461 -0.810234 -0.524610 0.159345 1.538747 -0.100409 1.008589 0.602536 -0.473218 0.284977 -0.324998 -0.233619 0.262855 0.654496 0.659928 0.456821 -0.563533 0.775327 1.316516 0.387926 -0.783148 0.442114 0.737298 -0.004421 -0.392339 0.811282 0.363128 0.194968 -0.358324 -0.146342 0.971914 0.880951 0.016904 -1.072313 -0.192468 0.909991 0.564447 -0.271000 0.303148 0.343046 0.090650 0.464244 0.452626 0.442358 1.024764 -1.986249 0.893675 0.779728 0.353840 0.676853 -0.143303 -0.774787 -1.493343 0.351907 0.624246 0.624550 0.263860 -0.582439 -0.047458 -1.023391 -0.013331 0.278082 0.221293 -0.603951 0.857683 -0.351098 -0.016827 -0.725301 -0.826677 -0.171398 0.527189 -0.683770 0.586144 0.504926 -1.820558 1.007428 -0.436944 -0.692471 -0.963110 -0.671523 0.406548 -0.926382 -0.783209 -0.143319 -1.089234 -1.809252 -0.930018 -0.472385 -0.026411 0.136473 0.257327 -0.476609 -0.175093 1.279389 -0.499954 0.905912 0.633770 0.032672 1.029106 0.769701 -0.463333 -0.267941 -0.090612 0.670873 -0.491138 -0.602994 0.425217 -0.343773 0.193477 0.989311 -0.537999 -0.429388 -0.371063 0.662447 -0.524624 -1.145256 0.300781 -0.588174 -0.200354 1.260730 0.466076 -0.697372 0.199100 -1.335204 -0.355936 -0.386298 -0.686580 0.439083 -0.445657 0.049844 0.453556 -0.283531 -0.509701 0.496615 -0.073965 -0.317007 -0.049613 1.012258 1.242059 -0.844740 0.646935 -1.357694 0.860093 -1.218317 -1.033659 0.197437 -0.181115 -0.108648 -0.306136 -0.447656 0.292273 0.523628 -0.886509 -1.044201 1.094478 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWaysUtil(int, int) = -1.832473 -1.690614 -0.327042 -2.575560 1.804011 2.849811 1.134767 -2.435204 -3.821776 -1.366690 1.470691 -5.016738 -2.360357 4.314452 -1.428679 3.237479 5.326387 0.586341 -1.965685 -1.454713 3.251602 -0.513612 5.778114 6.379733 -3.729449 0.121623 -0.103154 1.558982 1.206339 0.623608 0.935278 -2.751070 1.450346 -3.280355 0.570982 -1.970016 -1.138808 1.716158 3.214931 -6.776397 -0.321104 2.283413 0.816565 -0.060758 0.380070 1.682990 3.384051 3.271812 -0.093840 3.345286 2.455591 -0.217843 2.146193 0.128679 1.210276 0.477481 1.070367 -0.396618 -0.768878 -0.489139 -1.307341 -0.991392 0.426669 4.163741 5.004490 -0.284295 -2.098688 0.952748 1.271272 1.119458 1.456155 3.375587 -0.103142 1.029083 2.489643 -4.635802 0.489185 -6.736057 0.987383 -6.995628 -3.014144 0.391532 3.202454 1.969691 2.275917 -0.859982 6.325417 -1.095507 -2.252305 3.534338 4.814819 -3.471594 -0.947324 -0.921577 -1.734372 0.083132 -1.849555 0.807156 1.275283 1.690482 -3.733300 -2.327185 0.967758 0.528306 -2.356840 -1.815942 -0.259280 3.291396 -3.637247 -2.714887 -1.863789 2.689819 -0.313437 -6.413814 -1.319801 -2.817253 0.258651 1.112349 -3.285338 -3.210040 1.895245 0.765414 -1.096817 -1.716356 -1.242442 3.154466 2.557632 0.880399 -0.354976 2.254710 0.963149 5.770541 1.236322 -2.435547 0.369550 1.324999 -0.825969 2.055956 -1.953824 -1.202178 1.454263 -3.612026 -0.178099 1.630119 -2.331979 -0.661250 1.312126 -0.059447 -0.469175 12.371014 -1.105436 4.740571 3.876442 -3.507249 2.323159 -1.383404 0.958534 1.615444 2.712179 1.970422 -5.922289 -3.342838 3.618438 6.076852 2.231182 -4.188097 -0.848980 1.420185 0.864597 -0.833759 2.269539 0.566076 0.593329 -2.422290 -0.446324 2.054587 7.825055 -2.522034 -0.548789 0.567314 1.911104 -0.405322 -4.282052 -0.710153 -3.752680 -0.182052 1.439699 1.209793 1.869439 4.714124 -6.141517 3.947278 -0.845573 -0.085792 3.823096 1.411270 -3.210268 -4.894270 -1.322535 1.626111 3.675353 -0.433432 0.018789 0.909715 -4.973332 0.198659 0.814986 0.897954 -3.046790 4.188730 -0.022641 -1.889900 -1.307701 0.376471 -1.172453 -2.081188 -1.374357 3.256685 1.240243 -4.596159 3.216074 0.886731 -2.022103 0.511559 -0.518248 3.696310 -3.287944 -3.767282 2.489468 -1.676914 -2.511471 -1.631797 -1.258936 1.558616 1.396251 0.549511 -3.618827 -3.998043 4.244677 -1.541195 5.075734 2.324712 -1.152394 2.845689 -0.307259 -2.253403 -2.341955 -2.785183 0.239189 0.136190 -2.402024 -2.572001 -1.183890 3.302383 3.578234 0.186892 -2.355392 -0.654680 4.374057 -3.681586 -0.278170 1.599671 1.287395 -2.741003 1.623638 2.326249 -3.351070 1.011855 -3.035310 -0.548290 -2.634020 -1.920920 3.483822 -1.209628 1.393854 -0.157445 -0.582038 0.072691 1.688970 1.919305 -0.196929 1.092731 5.549578 3.307045 -0.924720 -0.336670 -4.966191 2.886785 -4.375674 -3.544570 0.306867 1.308917 -2.883679 -1.075550 0.194885 3.617129 2.748245 -2.558475 -2.372026 1.562484 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = -0.224105 -0.215117 -0.100364 -0.076710 0.246306 0.162015 0.195712 -0.228472 -0.475576 -0.202543 0.210750 -0.703977 -0.475063 0.592936 -0.171779 0.370670 0.694048 0.130451 -0.141444 -0.282884 0.290861 -0.208238 0.841009 0.858591 -0.474849 0.041056 -0.010436 0.102799 0.123685 0.116119 0.019203 -0.408929 0.368657 -0.398419 0.036756 -0.270163 -0.136182 0.168497 0.314303 -0.857463 -0.068508 0.289243 0.215307 0.022661 0.026663 0.744361 0.465835 0.448682 -0.010340 0.653180 0.274129 -0.216993 0.335721 0.080702 0.176840 -0.081687 0.207049 0.051838 -0.296149 -0.002598 -0.192803 -0.453679 -0.135437 0.474070 0.725688 -0.095841 -0.245530 0.088214 -0.051186 0.194760 0.214499 0.411594 0.275075 0.085641 0.446334 -0.294374 -0.019682 -0.843618 -0.097021 -1.506389 -0.365778 -0.001676 0.613335 -0.015785 0.231515 -0.019835 0.815020 0.052651 -0.280318 0.417445 0.714100 -0.526972 -0.227782 0.055829 -0.114681 0.052628 -0.338086 0.195512 0.444225 0.149624 -0.529554 -0.361825 0.215091 -0.017866 -0.267187 -0.177292 -0.099118 0.330561 -0.717622 -0.248099 -0.485431 -0.013098 0.063968 -0.827456 -0.054177 -0.140385 0.249030 0.311040 -0.432630 -0.257365 0.310973 0.005563 -0.114095 -0.221702 -0.086816 0.412909 0.168956 0.197766 0.075440 0.296190 0.137978 0.733796 0.297405 -0.292526 0.000417 0.158755 -0.185877 0.355961 -0.222353 -0.251720 0.364015 -0.531034 0.290437 0.008076 -0.344416 -0.183718 0.228689 0.012988 -0.030340 0.922580 -0.110571 0.600537 0.449088 -0.479314 0.168539 -0.369889 0.150412 0.217629 0.470427 0.223115 -0.228235 -0.401845 0.478954 0.787341 0.312442 -0.689219 -0.049296 0.195593 0.313937 -0.124025 0.315379 0.185710 0.145348 -0.338691 -0.006276 0.186486 0.970657 -0.421237 -0.054522 0.069014 0.145875 0.078695 -0.533177 -0.041814 -0.264769 -0.013869 0.062404 0.158315 0.103735 0.603701 -0.984875 0.544183 -0.197474 0.010042 0.434875 0.228547 -0.460994 -0.640008 -0.117837 0.215353 0.489166 0.238169 -0.019730 0.134821 -0.643116 0.010431 0.036661 0.143780 -0.334486 0.562104 -0.004562 -0.299215 -0.247124 -0.105044 0.083056 -0.220864 -0.115658 0.426806 0.279428 -1.007625 0.380637 0.019496 -0.396907 -0.103647 0.130521 0.327029 -0.464913 -0.559237 0.211926 -0.483752 -0.555219 -0.360989 -0.159765 0.045767 0.120098 -0.007351 -0.278015 -0.504502 0.747053 -0.198887 0.606061 0.291753 -0.138084 0.576826 -0.049586 -0.459057 -0.283710 -0.096091 0.054262 -0.416088 -0.207389 0.092671 -0.123789 0.417252 0.535807 0.100320 -0.194338 -0.051531 0.590861 -0.430984 -0.165560 0.363564 0.432632 -0.161601 0.506773 0.402439 -0.503986 0.102835 -0.374486 -0.238059 -0.292581 -0.268807 0.391435 -0.312764 0.124499 0.012670 -0.043066 -0.075105 0.220388 0.106830 -0.094451 0.002061 0.767594 0.734706 -0.404535 0.144432 -0.622402 0.354895 -0.592605 -0.488401 0.075836 0.271069 -0.388289 -0.104291 0.055942 0.334823 0.322484 -0.574100 -0.464760 0.235001 +PE-benchmarks/count-ways-reach-nth-stair.cpp__main = -0.099123 -0.053125 0.265972 -0.191184 0.412303 -0.052216 0.274910 0.076106 -0.585375 -0.500191 0.202296 -0.812594 -0.679658 0.702939 -0.067015 0.268850 0.906083 0.182951 -0.073664 -0.320003 0.233972 -0.526894 0.914699 0.953990 -0.648876 0.200368 -0.030299 0.250725 0.083737 0.348042 -0.044960 -0.540174 0.364984 -0.315616 0.185260 -0.296642 -0.175367 0.006727 0.055159 -1.164359 -0.052600 0.463853 0.084332 -0.016957 0.056992 0.810253 0.757497 0.502981 -0.151464 0.733640 0.335903 -0.410697 0.352275 0.120473 0.260263 -0.116894 0.270645 0.009996 -0.535467 0.173594 -0.163203 -0.892932 -0.164980 0.493114 0.779605 -0.198945 -0.260938 0.056782 -0.079021 0.188306 0.247582 0.384895 0.389185 0.006185 0.593805 -0.405787 -0.070073 -1.139341 -0.150218 -2.073252 -0.722534 -0.175580 1.068874 0.119021 0.134674 -0.194300 0.873648 0.012059 -0.121912 0.393028 0.920378 -0.544038 -0.354697 -0.119407 -0.060244 0.221958 -0.397520 0.036835 0.538541 0.002014 -0.649048 -0.233581 0.569547 -0.082045 -0.333483 -0.105383 -0.110143 0.590629 -0.899821 -0.300814 -0.764666 0.021456 0.230490 -0.945459 0.215594 0.072631 0.405308 0.497562 -0.421669 -0.173133 0.323870 0.019240 -0.218830 -0.155114 -0.449532 0.753393 0.115304 0.275482 0.285566 0.424320 0.303585 0.649448 0.604323 -0.269654 -0.037117 0.173009 -0.199224 0.387368 -0.187500 -0.344862 0.332498 -0.558775 0.153089 -0.085335 -0.460661 -0.216076 0.083247 0.088620 0.043355 1.079633 -0.080121 0.694066 0.393198 -0.531714 0.484619 -0.306624 -0.018865 0.217178 0.602537 0.275333 -0.341063 -0.426292 0.450323 0.903114 0.398760 -0.910296 -0.168386 0.101407 0.276399 -0.077581 0.389381 0.220172 0.388188 -0.422626 -0.026060 0.285603 1.162921 -0.435406 -0.595946 0.083461 0.004310 0.124096 -0.857821 -0.024106 -0.139115 -0.020872 -0.041718 0.085080 0.156093 0.753641 -1.444651 0.679698 -0.242320 -0.149193 0.648265 0.180612 -0.472726 -1.160835 -0.113350 0.342384 0.732255 0.346700 -0.069980 0.090611 -0.703448 -0.050136 0.030520 0.133750 -0.313805 0.607980 -0.178881 -0.342300 -0.314509 -0.450597 -0.006775 -0.069108 -0.189566 0.434928 0.508922 -1.386959 0.513367 -0.057656 -0.498560 -0.107180 0.093304 0.449237 -0.568158 -0.744941 0.187010 -0.566966 -0.951776 -0.524593 -0.234516 0.036788 0.007193 -0.284268 -0.130249 -0.590320 0.927105 -0.219021 0.668792 0.427310 -0.118420 0.937658 0.512350 -0.604468 -0.214389 -0.172487 0.236302 -0.699539 -0.206965 -0.021615 -0.289304 0.416671 0.711594 0.158743 -0.083462 -0.220596 0.678121 -0.692031 -0.378589 0.577688 0.287931 -0.086159 0.718222 0.621454 -0.627099 0.039248 -0.587429 -0.300602 -0.217483 -0.314486 0.356282 -0.394023 0.067404 0.160860 -0.089589 -0.208691 0.275662 -0.036728 -0.139009 -0.214517 0.916628 1.220904 -0.716023 0.251604 -0.662234 0.433993 -0.740022 -0.591209 0.055363 0.426948 -0.409960 -0.099340 0.178407 0.264944 0.281203 -0.711535 -0.542678 0.282987 +PE-benchmarks/min-cost-path.cpp__minCost(int (*) [3], int, int) = -1.635223 -1.563013 -0.402102 -2.960166 1.611139 2.571796 0.934067 -2.828142 -3.221679 -1.679073 1.892190 -4.832407 -2.233966 3.772800 -1.570739 2.731700 4.302135 -0.435477 -1.711514 -1.807960 2.705639 0.843617 5.383583 5.656797 -3.603573 0.025321 0.408595 1.360091 1.761877 -0.673929 2.027731 -2.926905 1.333195 -2.522285 0.203542 -0.783552 -1.151412 1.056753 3.394757 -5.432141 -0.403551 1.545061 -0.312866 0.114457 0.436855 1.396802 2.908529 3.027176 -0.218994 3.379260 2.869513 0.419900 1.495643 -0.096343 0.922796 -0.850856 0.658079 -1.042602 -0.023738 -0.594423 -0.935593 0.143890 -0.122122 4.079338 4.435078 -0.448031 -2.116425 1.048911 1.483132 1.212073 1.204833 3.382862 -0.130837 1.611499 2.276686 -4.541525 0.040710 -6.905291 1.046200 -6.557018 -2.898876 1.011537 2.979640 1.330827 1.657527 -0.327229 5.572665 -0.198753 -2.617916 3.665224 4.238219 -2.370152 -0.655811 -0.158769 -1.505215 0.168625 -1.655587 1.767758 0.549672 2.106255 -3.343968 -1.465492 0.271301 0.035626 -2.232130 -2.083907 0.018076 2.627543 -3.116971 -1.689132 -0.868748 3.256713 0.215721 -6.075210 -2.257438 -2.598092 1.574041 0.467202 -3.001742 -2.293869 1.444080 0.137098 -1.036779 -1.190967 -0.697164 1.927422 3.281929 1.609502 -0.578713 2.546104 1.437963 5.721868 0.444975 -2.140511 0.394649 0.599555 0.139458 2.294708 -1.267330 -0.480220 1.307878 -2.653703 0.899008 1.721440 -1.816296 -1.815528 1.464065 -0.436760 -0.916283 11.976933 -0.995203 4.668289 4.178498 -2.855638 0.131368 -1.992333 0.890078 1.471658 2.056883 1.839361 -4.459688 -2.786260 3.824525 5.590761 1.783414 -4.161605 -0.141041 2.314298 0.436807 -1.555693 2.197741 0.238005 0.557756 -1.845535 -0.420179 2.738733 6.193580 -1.820072 -0.549302 0.168062 3.032256 0.408702 -2.446866 -0.405653 -2.630447 0.218846 2.658127 1.554873 1.950809 3.991208 -6.409711 2.973647 0.463316 0.662672 2.695031 2.275905 -3.560428 -4.202470 -0.993838 1.262471 2.502630 -0.767881 0.975654 0.912647 -4.454792 0.273687 1.013637 0.236422 -2.826795 3.620804 0.351200 -1.241405 -1.133528 0.869344 -1.148232 -0.993992 -1.359787 3.162939 0.891511 -5.255761 2.813745 0.720791 -2.030150 -0.317828 -1.639029 4.657412 -3.068209 -2.929241 2.176597 -2.216431 -2.680014 -1.049254 -1.215284 0.969073 1.259739 2.208074 -3.500455 -2.477992 3.876390 -1.294665 4.706901 2.099142 -1.067450 2.714508 -3.317905 -1.663069 -1.924330 -3.112024 1.727905 0.988875 -2.764659 -1.488604 -0.916294 2.559154 2.620720 -0.530725 -2.990197 -0.161128 3.043526 -4.201974 0.222643 0.760510 2.709603 -2.934884 1.928499 1.495339 -2.602983 1.804459 -2.822972 -0.737486 -2.974245 -1.934494 3.322966 -0.151388 1.514067 -0.360870 -0.382790 0.189311 1.664287 1.528452 0.135300 1.561316 3.983415 4.156091 -0.839100 -0.999374 -5.003345 2.601527 -3.808618 -4.171479 0.962355 -0.009618 -2.164251 -1.436992 -1.169686 3.375595 2.895902 -2.291714 -2.483574 2.644516 +PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -1.147622 -1.384894 -0.478669 -1.275863 0.937407 0.582847 0.520989 -0.957526 -2.096745 -1.179035 0.713199 -1.999959 -0.915457 2.015657 -0.585481 1.831153 2.522418 0.494382 -0.462031 -0.887965 1.803941 -1.427617 2.361181 3.042068 -1.567861 -0.058525 0.193063 0.808387 0.147813 0.289489 0.830794 -1.853152 0.512252 -1.945253 0.599014 -1.369411 -0.666831 1.748616 1.969112 -3.300010 -0.260959 1.162056 0.232778 0.203096 0.166460 0.483365 0.993992 1.338910 -0.491792 2.477055 1.370444 -0.199385 1.016020 -0.032601 0.527833 0.622611 -0.328770 0.043542 -0.164025 0.278579 -1.002199 -0.353354 0.704687 1.659959 2.307048 -0.659305 -1.123092 0.466914 0.340097 0.629720 0.879612 1.736164 -0.263279 -0.358257 1.453449 -3.120409 -0.499604 -5.118147 0.760543 -4.326874 -1.515000 0.460703 1.554428 0.941294 1.027452 -0.190930 3.211799 -0.773012 -1.430877 2.030183 1.993082 -1.327010 -0.326250 -0.357774 -1.021352 -0.249851 -0.692070 -0.095952 0.747020 1.017611 -1.646058 -1.497726 0.734009 0.044681 -1.004589 -1.861715 -0.361559 1.842248 -1.886360 -1.739247 -1.245167 1.803997 -0.109936 -2.667235 -0.086390 -1.561384 -0.001048 0.721563 -1.996401 -1.373907 1.141718 0.167332 -0.633653 -0.762668 0.144774 1.499954 1.137503 0.418002 -0.241154 1.040333 -0.021531 2.743913 0.784753 -1.326900 0.053776 1.058489 -0.308653 1.097964 -1.236228 -0.617693 1.088182 -1.587102 -0.228818 0.182205 -1.135071 -0.673926 1.776293 -0.427200 -0.544641 5.977548 -0.605780 2.218227 1.990990 -1.355395 1.628607 -0.332023 0.983117 1.058522 1.786442 0.721288 -2.821539 -1.625132 1.813576 2.830834 1.000213 -2.089177 -1.889292 0.794797 0.893340 0.125658 1.076122 0.175013 0.220134 -0.977952 -0.032702 0.371659 3.715703 -1.179356 0.160220 0.069008 1.904443 -0.638832 -2.937271 -0.354041 -3.178077 -0.331385 0.656454 0.559932 0.702855 2.244067 -3.981845 1.681059 -0.808986 0.385953 1.244711 1.079029 -1.311651 -4.449554 -0.931651 0.308016 1.940225 -0.240186 1.133538 0.675985 -2.327647 0.335418 0.182227 0.602199 -1.781914 2.287796 -0.692470 -0.921311 -0.228328 0.743163 -1.250995 -1.451240 -0.287141 1.550278 1.564765 -2.262122 1.041625 0.363660 -0.799187 0.633394 0.489654 2.452627 -1.293223 -1.916869 1.524424 -0.797013 -0.935730 -0.694655 -0.668785 0.728553 0.200448 -0.553099 -1.114190 -1.996447 1.903608 -0.795042 2.587786 0.997133 -1.041362 1.621943 -0.492507 -1.285682 -1.044437 -1.032176 0.048979 -0.289552 -0.599906 -2.237852 -0.289656 1.405606 1.561702 0.777042 -1.090418 -0.116793 2.469243 -1.923236 0.476989 0.860385 0.659909 -0.830742 1.010239 1.158951 -1.775424 0.545303 -1.726564 0.622127 -1.257057 -0.338127 1.836341 -0.649213 0.455553 -0.473043 -0.240833 0.188250 0.848352 1.621647 0.059474 0.218759 2.731468 1.855842 -0.321920 -0.508432 -2.114863 0.893109 -1.762110 -1.373969 -0.609479 1.338708 -1.540725 -0.532602 0.060751 1.822610 1.447472 -0.737566 -1.089626 0.630083 +PE-benchmarks/min-cost-path.cpp__main = 0.100421 0.180700 0.385910 -0.151601 0.304186 -0.145650 0.152836 0.366310 -0.426264 -0.531737 0.050595 -0.761997 -0.683587 0.452292 -0.008353 -0.218606 0.619013 0.100756 0.000292 -0.187354 -0.179410 -0.191463 0.510825 0.604329 -0.452291 0.272195 -0.261444 0.136456 -0.118591 0.472542 0.077398 -0.698602 0.053979 0.391624 0.294559 -0.032694 -0.243115 -0.181575 -0.432357 -0.909281 -0.042567 0.838003 0.166562 -0.029805 0.243069 0.584934 0.744076 0.247106 -0.061333 0.420023 0.126976 -0.131133 0.334338 0.010930 0.236973 -0.295631 0.310303 -0.324491 -0.495679 0.271729 -0.091453 -0.637417 -0.344939 0.317052 0.422562 -0.117174 -0.267804 -0.348087 -0.075400 0.171278 0.086313 0.270140 0.458137 0.125686 0.329684 0.434201 0.005902 -0.354453 0.125621 -1.467260 -0.593725 -0.195440 1.138580 0.675826 -0.293646 -0.491567 0.606737 -0.074201 0.069800 0.286683 0.682617 -0.029695 -0.240909 -0.099418 -0.079716 0.257862 -0.156102 -0.086767 0.159508 0.098141 -0.447858 0.115212 0.280115 -0.298939 -0.241443 0.408870 -0.083795 0.357641 -0.733326 0.192745 -0.607914 0.154150 0.540268 -0.576403 -0.049121 0.213711 -0.114178 0.416713 -0.343863 0.252792 0.278434 -0.248781 -0.286291 0.316874 -0.959483 0.642853 -0.120603 0.128957 0.231517 0.396356 0.358745 0.031846 0.164034 -0.162950 0.026934 0.153537 0.100781 0.136923 0.021384 -0.154631 0.032670 -0.225944 0.151322 -0.330468 -0.331922 -0.225952 -0.962218 -0.063349 0.029511 0.424319 -0.190407 0.462262 0.095734 -0.279420 0.408115 -0.036659 -0.190840 -0.049047 0.395499 0.350404 0.371930 -0.174770 0.318743 0.654155 0.239659 -0.310702 0.345760 0.204542 0.059689 -0.066597 0.514554 0.064076 0.345315 -0.264924 -0.072710 0.151227 0.678836 0.048918 -0.679011 -0.083320 0.090327 0.374368 0.000202 0.207800 0.250972 0.001257 0.022185 -0.030090 0.184300 0.476879 -1.106810 0.552952 0.085325 -0.147015 0.422678 -0.075394 -0.187101 -0.684283 -0.117951 0.296935 0.617437 0.313661 -0.195481 -0.127075 -0.415467 -0.080170 0.055316 0.133520 -0.282259 0.419007 -0.170666 -0.216360 -0.156577 -0.765593 -0.064669 0.228284 -0.472092 0.186126 0.521280 -0.968599 0.409329 0.026067 -0.252490 -0.427636 0.041345 0.044347 -0.340345 -0.448384 -0.138969 -0.542480 -1.108960 -0.275074 -0.354200 -0.093578 -0.059386 -0.119564 -0.027533 -0.251116 0.886919 -0.024772 0.517688 0.359724 -0.091954 0.606716 0.942216 -0.360933 0.212748 -0.321663 0.517599 -0.656385 0.026702 0.535136 -0.355743 0.058665 0.464001 0.024996 -0.108340 -0.349463 0.384535 -0.001470 -0.318802 0.349033 -0.520052 0.120787 0.634341 0.435573 -0.308275 0.033506 -0.665749 -0.148544 -0.177325 -0.123730 0.126864 -0.341088 -0.098459 0.266877 -0.213999 -0.449577 0.104522 -0.185303 -0.405581 -0.131139 0.646163 0.528727 -0.464469 0.696164 -0.424759 0.371114 -0.440814 -0.273426 -0.143467 0.063693 -0.221683 -0.159223 -0.097514 -0.033981 0.147748 -0.403133 -0.479076 0.459905 +PE-benchmarks/box-stacking.cpp__min(int, int) = -0.444021 -0.475063 -0.154973 -0.409908 0.416443 0.173706 0.221706 -0.364058 -0.810828 -0.520716 0.245428 -0.825332 -0.422339 0.796596 -0.232319 0.710890 1.001177 0.221964 -0.130314 -0.377823 0.616259 -0.636158 0.960655 1.197293 -0.589644 0.017499 0.064593 0.265237 -0.037467 0.216664 0.236887 -0.814100 0.273647 -0.712711 0.232186 -0.522469 -0.298533 0.654921 0.708188 -1.308959 -0.109851 0.468470 0.121735 0.088541 0.067689 0.269312 0.458761 0.495058 -0.103197 1.046004 0.462211 -0.091999 0.438165 0.014614 0.283109 0.265638 -0.033724 -0.110837 -0.160635 0.139906 -0.441593 -0.251131 0.184635 0.614977 0.876181 -0.270718 -0.440832 0.146705 0.006496 0.250429 0.333354 0.675994 -0.045885 -0.120240 0.545742 -1.141874 -0.158885 -1.880101 0.206823 -1.826290 -0.620873 0.139613 0.629687 0.418478 0.400586 -0.026238 1.284259 -0.289169 -0.527458 0.672104 0.849720 -0.586988 -0.150350 -0.045941 -0.314566 -0.146666 -0.262188 -0.052188 0.283903 0.365651 -0.661683 -0.587765 0.402101 -0.017042 -0.374522 -0.668523 -0.163664 0.715096 -0.886234 -0.668636 -0.601809 0.575586 -0.023871 -1.015793 0.056192 -0.477430 0.039082 0.371887 -0.814628 -0.552231 0.518636 0.079957 -0.233291 -0.300810 0.017472 0.606571 0.378891 0.155060 -0.045485 0.431272 0.003041 1.111993 0.369873 -0.487082 0.019604 0.412133 -0.114463 0.431300 -0.397508 -0.273580 0.305535 -0.649933 -0.014442 0.043414 -0.469827 -0.246603 0.558160 -0.168697 -0.207404 2.063006 -0.290608 0.852617 0.722784 -0.574930 0.587916 -0.218823 0.358629 0.345206 0.729016 0.322802 -0.925559 -0.637422 0.743754 1.111866 0.396593 -0.810155 -0.696524 0.276635 0.416026 0.084423 0.450320 0.099404 0.143926 -0.410219 -0.007461 0.063089 1.532035 -0.493409 0.073686 0.054527 0.584000 -0.166782 -1.141087 -0.133330 -1.164199 -0.139469 0.200891 0.208184 0.184776 0.893401 -1.575240 0.698983 -0.403394 0.081795 0.519618 0.412328 -0.469770 -1.718893 -0.401149 0.165619 0.794213 -0.022075 0.469731 0.213278 -0.899795 0.113394 0.031249 0.281121 -0.710202 0.901342 -0.234655 -0.465200 -0.091046 0.211526 -0.385730 -0.565324 -0.125392 0.585409 0.720484 -1.041489 0.432646 0.173081 -0.320716 0.233241 0.299719 0.932985 -0.474506 -0.776922 0.564019 -0.425537 -0.444811 -0.247642 -0.280840 0.220668 0.023278 -0.279493 -0.372627 -0.706357 0.797329 -0.257545 0.996854 0.393511 -0.373624 0.690802 -0.143506 -0.576960 -0.313678 -0.338324 0.009708 -0.303060 -0.147084 -0.710156 -0.124709 0.553787 0.664384 0.373210 -0.392462 -0.043787 0.963976 -0.748563 0.195801 0.422031 0.288876 -0.280721 0.458426 0.516336 -0.663397 0.164350 -0.667344 0.205981 -0.518623 -0.120447 0.669842 -0.335729 0.119392 -0.140375 -0.120623 -0.012529 0.329783 0.578063 -0.007310 0.027671 1.081673 0.769657 -0.187962 -0.090971 -0.778773 0.326254 -0.678328 -0.517603 -0.245235 0.629438 -0.623577 -0.240845 0.008857 0.669957 0.536773 -0.340144 -0.441294 0.217681 +PE-benchmarks/box-stacking.cpp__max(int, int) = -0.444021 -0.475063 -0.154973 -0.409908 0.416443 0.173706 0.221706 -0.364058 -0.810828 -0.520716 0.245428 -0.825332 -0.422339 0.796596 -0.232319 0.710890 1.001177 0.221964 -0.130314 -0.377823 0.616259 -0.636158 0.960655 1.197293 -0.589644 0.017499 0.064593 0.265237 -0.037467 0.216664 0.236887 -0.814100 0.273647 -0.712711 0.232186 -0.522469 -0.298533 0.654921 0.708188 -1.308959 -0.109851 0.468470 0.121735 0.088541 0.067689 0.269312 0.458761 0.495058 -0.103197 1.046004 0.462211 -0.091999 0.438165 0.014614 0.283109 0.265638 -0.033724 -0.110837 -0.160635 0.139906 -0.441593 -0.251131 0.184635 0.614977 0.876181 -0.270718 -0.440832 0.146705 0.006496 0.250429 0.333354 0.675994 -0.045885 -0.120240 0.545742 -1.141874 -0.158885 -1.880101 0.206823 -1.826290 -0.620873 0.139613 0.629687 0.418478 0.400586 -0.026238 1.284259 -0.289169 -0.527458 0.672104 0.849720 -0.586988 -0.150350 -0.045941 -0.314566 -0.146666 -0.262188 -0.052188 0.283903 0.365651 -0.661683 -0.587765 0.402101 -0.017042 -0.374522 -0.668523 -0.163664 0.715096 -0.886234 -0.668636 -0.601809 0.575586 -0.023871 -1.015793 0.056192 -0.477430 0.039082 0.371887 -0.814628 -0.552231 0.518636 0.079957 -0.233291 -0.300810 0.017472 0.606571 0.378891 0.155060 -0.045485 0.431272 0.003041 1.111993 0.369873 -0.487082 0.019604 0.412133 -0.114463 0.431300 -0.397508 -0.273580 0.305535 -0.649933 -0.014442 0.043414 -0.469827 -0.246603 0.558160 -0.168697 -0.207404 2.063006 -0.290608 0.852617 0.722784 -0.574930 0.587916 -0.218823 0.358629 0.345206 0.729016 0.322802 -0.925559 -0.637422 0.743754 1.111866 0.396593 -0.810155 -0.696524 0.276635 0.416026 0.084423 0.450320 0.099404 0.143926 -0.410219 -0.007461 0.063089 1.532035 -0.493409 0.073686 0.054527 0.584000 -0.166782 -1.141087 -0.133330 -1.164199 -0.139469 0.200891 0.208184 0.184776 0.893401 -1.575240 0.698983 -0.403394 0.081795 0.519618 0.412328 -0.469770 -1.718893 -0.401149 0.165619 0.794213 -0.022075 0.469731 0.213278 -0.899795 0.113394 0.031249 0.281121 -0.710202 0.901342 -0.234655 -0.465200 -0.091046 0.211526 -0.385730 -0.565324 -0.125392 0.585409 0.720484 -1.041489 0.432646 0.173081 -0.320716 0.233241 0.299719 0.932985 -0.474506 -0.776922 0.564019 -0.425537 -0.444811 -0.247642 -0.280840 0.220668 0.023278 -0.279493 -0.372627 -0.706357 0.797329 -0.257545 0.996854 0.393511 -0.373624 0.690802 -0.143506 -0.576960 -0.313678 -0.338324 0.009708 -0.303060 -0.147084 -0.710156 -0.124709 0.553787 0.664384 0.373210 -0.392462 -0.043787 0.963976 -0.748563 0.195801 0.422031 0.288876 -0.280721 0.458426 0.516336 -0.663397 0.164350 -0.667344 0.205981 -0.518623 -0.120447 0.669842 -0.335729 0.119392 -0.140375 -0.120623 -0.012529 0.329783 0.578063 -0.007310 0.027671 1.081673 0.769657 -0.187962 -0.090971 -0.778773 0.326254 -0.678328 -0.517603 -0.245235 0.629438 -0.623577 -0.240845 0.008857 0.669957 0.536773 -0.340144 -0.441294 0.217681 +PE-benchmarks/box-stacking.cpp__compare(void const*, void const*) = -0.248307 0.538084 0.274006 -0.822599 1.265167 1.395227 0.353207 -0.875862 -0.659279 -0.088474 0.170978 -1.543955 -1.011854 1.157854 -0.365832 0.635665 1.520610 -0.307286 -0.313537 -0.455397 0.531191 0.457111 1.917444 1.754146 -1.318252 0.321527 0.484958 0.186008 -0.125579 0.293673 -0.450147 -1.297938 0.454331 -0.586652 -0.079156 0.027270 -0.467400 -0.586533 0.987411 -1.867043 -0.194978 -0.103080 -0.753706 0.005051 0.006626 0.464294 1.890809 0.903741 -0.034545 0.696732 0.709261 0.211494 0.305528 0.088247 0.527193 -0.045012 0.727354 0.115272 -0.233546 -0.206826 -0.227373 0.157984 -0.408148 1.321697 1.325969 0.143140 -0.684923 0.396776 0.117930 0.051763 -0.190045 1.039212 0.352894 1.179785 0.597980 -1.105661 0.057644 -1.955283 -0.038195 -1.702869 -1.208204 -0.264265 0.411380 -0.103915 0.770519 -0.040698 1.856290 0.218405 -0.184603 0.699265 1.884580 -1.300046 -0.265744 -0.186464 -0.559422 -0.056396 -0.259022 0.836277 0.107936 -0.043578 -1.202625 -0.949807 0.456697 -0.001105 -0.758524 -0.561039 0.075034 0.769774 -0.667495 -0.445858 -0.657289 0.449271 -0.196623 -2.062363 -0.885328 -0.190711 0.866492 0.256743 -0.718141 -1.384956 0.400760 0.523879 -0.585190 -0.649082 0.080477 0.770164 1.363143 0.273549 0.164346 0.543863 0.946053 2.057473 0.383086 -0.515904 0.030606 -0.100862 0.089651 0.359656 -0.249779 0.098142 -0.197787 -0.901381 0.800898 0.963529 -0.631408 -0.166148 0.322047 -0.371428 0.014519 3.794091 -0.559093 1.312563 0.631636 -1.493981 0.207130 -0.944926 -0.436314 0.140857 0.704727 0.911137 -1.618572 -0.867153 1.234600 1.791557 0.569014 -1.591906 0.211705 0.371700 -0.252927 -0.738208 0.742949 0.143352 0.137800 -0.329084 -0.229143 1.123254 2.600572 -0.794187 -1.170578 0.391611 0.627730 0.628217 -0.517527 -0.241179 -0.581844 -0.011797 0.953374 0.348651 0.780516 1.367184 -2.621838 0.917963 -0.043512 -0.571068 1.112204 0.687840 -0.953489 -0.235836 0.131240 1.061349 0.832643 0.174910 -0.029789 -0.336902 -1.263641 -0.065198 0.458879 0.222796 -0.892910 1.113362 0.268556 -1.187580 -0.582710 -0.240613 -0.224608 -0.318362 -0.753295 0.809318 -0.182302 -2.859810 1.440251 0.513394 -0.551022 -0.001919 -0.979530 1.292432 -0.921708 -1.292980 0.671496 -0.738992 -0.385282 0.171467 -0.449384 0.262932 0.490957 1.261620 -1.353264 -1.092535 1.134909 0.093443 1.333806 0.836624 0.311791 1.009288 -1.245065 -0.983292 -0.641585 -1.340966 1.317904 0.521727 -0.994045 0.085947 -0.674622 0.916809 1.177241 -0.148246 -0.828476 -0.708012 0.734710 -1.408508 0.173171 0.496431 0.939538 -1.178934 0.125332 0.691228 -0.369879 0.095216 -0.762222 -0.387814 -1.095197 -0.996105 0.490708 -0.419636 0.135142 0.452090 -0.432740 -0.162431 0.675267 -0.066219 0.318517 0.354301 1.006224 1.347456 -0.781120 0.015254 -1.459464 1.023327 -1.438283 -1.618126 0.663018 -0.399359 -0.601507 -0.705106 -0.426893 0.723439 0.173814 -0.614285 -0.573477 0.391832 +PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -7.268541 -2.672633 2.696883 -15.733053 11.022081 24.042026 4.060752 -15.702738 -15.721570 -3.858045 7.672227 -25.995346 -12.255441 19.335386 -9.119556 12.113247 22.004949 -3.368930 -11.627334 -4.825883 13.767693 9.679203 29.247692 29.191892 -19.902782 1.214803 1.313506 10.357280 6.471285 3.410052 3.415465 -13.751457 4.258419 -11.686242 -3.001931 -3.171446 -5.765181 0.401496 14.531141 -28.793461 -2.177234 8.168412 -7.522175 -0.332808 2.413467 0.002932 20.498627 15.696619 1.117133 11.405401 12.680434 3.729977 7.504287 -0.488627 6.011223 -2.504823 9.781937 -4.031391 -0.399142 -6.554246 -4.005672 0.579745 -1.899497 22.759239 22.234578 2.218861 -10.541739 3.552986 5.679990 3.523578 3.955567 17.255283 -2.994893 14.897354 10.439298 -16.037568 7.172885 -21.385565 5.687556 -14.310539 -14.347591 2.545633 11.402402 12.882415 10.971612 -2.938659 29.480943 -4.163668 -10.426489 18.669143 24.011511 -15.906894 -2.775864 -2.893860 -11.082539 0.565247 -7.798014 9.022137 -5.835757 9.775816 -17.415204 -9.059089 -0.179978 2.865959 -12.403063 -4.652637 -0.334552 13.055748 -15.753510 -8.739914 -3.281478 14.649006 -1.396042 -33.044467 -23.714353 -11.874261 7.787751 1.276345 -13.705427 -16.726198 7.453414 4.970974 -3.809770 -7.241070 -3.397491 10.134093 17.646946 5.369019 -2.823020 9.971404 9.836276 29.785245 1.811325 -8.793674 2.425132 1.451592 0.691822 9.387024 -3.836880 0.555856 -4.021393 -14.478574 2.664059 15.778418 -9.362711 -4.843214 -3.598909 -0.818178 -2.810199 71.499910 -5.531954 23.399136 18.772246 -18.804907 1.487047 -9.423576 0.351395 6.032607 6.132171 12.853347 -30.060616 -14.096914 19.883668 29.239043 9.313674 -19.782557 7.960974 10.330805 -0.223104 -8.605113 12.469068 1.222969 2.591291 -10.285739 -3.778212 16.945279 36.377228 -9.686041 -13.172468 5.099654 6.309100 2.180125 -8.549207 -2.167694 -7.196714 0.657562 16.414728 5.271483 10.918762 21.538892 -26.634326 16.304694 3.687038 -2.752965 19.253219 7.393611 -17.183877 -3.092025 -4.357356 10.528961 12.719781 -2.356277 -3.670471 1.058827 -23.050281 0.145425 8.822561 1.686498 -14.430956 20.073657 6.012079 -11.026969 -9.039200 -1.759062 -4.424329 -4.064702 -12.912430 15.585944 -7.854032 -25.890694 18.579096 8.123716 -9.197062 -1.038210 -11.847899 19.375766 -16.471427 -18.709438 12.276145 -9.518849 -12.694747 -2.436046 -6.437487 5.447402 15.342522 12.960927 -24.526393 -14.987435 18.091139 -3.980062 23.654822 11.699120 -1.588684 11.325795 -10.143626 -7.830062 -10.883056 -17.977028 13.827059 9.200850 -16.538667 -9.538416 -7.678953 14.871362 15.309288 -4.906731 -14.778114 -7.030811 16.427218 -15.969792 -1.123259 3.360683 9.135560 -19.822270 3.696418 7.825722 -9.642665 7.253826 -13.140096 -6.139439 -17.179051 -12.931141 15.669830 -1.621032 7.982952 3.314730 -3.246395 -1.842486 7.391804 5.176156 1.257816 9.771759 21.386554 14.853642 -3.087104 -0.606536 -26.078961 16.325257 -21.911008 -22.285843 8.002358 -4.541983 -9.790514 -8.676261 -5.105399 17.478645 13.843086 -11.731527 -8.242112 10.970459 +PE-benchmarks/box-stacking.cpp__main = 0.032929 0.162046 0.407824 -0.161036 0.423367 -0.031105 0.236142 0.319383 -0.528188 -0.597981 0.094811 -0.919693 -0.865750 0.641191 -0.030702 -0.052678 0.873055 0.149005 -0.021409 -0.254240 -0.032187 -0.319424 0.814654 0.886607 -0.656446 0.292167 -0.178204 0.215607 -0.069003 0.521356 0.018283 -0.795289 0.221981 0.159070 0.308012 -0.148586 -0.255811 -0.181272 -0.315197 -1.226728 -0.081426 0.849141 0.097869 -0.023271 0.218670 0.755394 0.942523 0.417554 -0.119163 0.614122 0.223402 -0.268393 0.417859 0.060577 0.267337 -0.271536 0.321643 -0.232247 -0.611519 0.267344 -0.133369 -0.888079 -0.361303 0.468117 0.683520 -0.168776 -0.316626 -0.231270 -0.109539 0.196842 0.129055 0.398355 0.557464 0.149415 0.536172 0.190841 -0.047087 -0.718249 0.023294 -1.934054 -0.783846 -0.288986 1.284398 0.581328 -0.124713 -0.506128 0.872975 -0.050288 0.036556 0.389231 0.955112 -0.309257 -0.329281 -0.172494 -0.062545 0.302359 -0.315914 -0.028319 0.336696 0.013925 -0.634427 -0.078886 0.444266 -0.254761 -0.348567 0.243663 -0.138061 0.543557 -0.919876 -0.009232 -0.855274 0.083300 0.473191 -0.888547 -0.008449 0.228836 0.065229 0.557864 -0.412239 0.069400 0.344401 -0.143558 -0.287549 0.107443 -0.856862 0.843766 0.008843 0.172973 0.325653 0.504643 0.422084 0.351089 0.427794 -0.205480 -0.024363 0.200030 -0.026135 0.253377 -0.078219 -0.229522 0.144988 -0.426898 0.158554 -0.219560 -0.454495 -0.233994 -0.723644 -0.044519 0.071731 0.884945 -0.177721 0.630591 0.234528 -0.482695 0.558594 -0.175610 -0.192262 0.062710 0.562170 0.434126 0.041981 -0.311229 0.429742 0.911536 0.349422 -0.647413 0.226037 0.182503 0.177758 -0.155677 0.576273 0.170221 0.448742 -0.383282 -0.054986 0.284460 1.041905 -0.213443 -0.850229 -0.010400 0.079325 0.353725 -0.376087 0.138343 0.121274 -0.046614 0.044382 0.018335 0.199806 0.698487 -1.403894 0.710252 -0.017511 -0.215677 0.633621 0.012660 -0.341307 -0.910694 -0.080566 0.415120 0.769713 0.407671 -0.193949 -0.103303 -0.645425 -0.080604 0.085666 0.182746 -0.349791 0.611591 -0.215955 -0.324663 -0.292775 -0.805839 -0.054779 0.090148 -0.469766 0.330671 0.606483 -1.343958 0.567252 0.000000 -0.432617 -0.346938 0.029068 0.245093 -0.537927 -0.712423 0.004888 -0.653859 -1.252124 -0.413835 -0.376865 -0.042035 0.025856 -0.197279 -0.120830 -0.500769 1.086438 -0.064180 0.679514 0.474013 -0.076295 0.887223 0.938707 -0.583959 0.045808 -0.388877 0.545909 -0.753233 -0.097111 0.316740 -0.409983 0.247342 0.722709 0.065303 -0.120916 -0.442686 0.588516 -0.353761 -0.405214 0.524753 -0.227418 0.047432 0.744128 0.605382 -0.487460 0.007848 -0.754862 -0.226547 -0.227502 -0.275548 0.233162 -0.501134 -0.055121 0.327216 -0.231306 -0.441160 0.203610 -0.159601 -0.362876 -0.209609 0.883063 0.913945 -0.704059 0.646497 -0.626401 0.499070 -0.694831 -0.478111 -0.065632 0.178639 -0.317473 -0.174229 0.034692 0.070659 0.226781 -0.630388 -0.603539 0.416334 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -7.262595 -7.288007 -2.601743 -12.236179 6.428665 12.313761 4.072294 -11.697276 -15.130662 -3.753373 6.396410 -20.395265 -7.663197 16.718924 -5.833569 12.928970 19.828504 0.931040 -9.285821 -5.121170 12.963171 0.125246 22.306201 24.202405 -13.206317 0.064164 -1.088766 8.276781 4.457009 0.404808 5.924256 -8.365073 3.537535 -13.837121 0.220972 -5.925581 -4.620755 6.645985 13.197389 -24.878907 -1.133348 8.019844 2.682836 -0.497759 0.727782 2.067499 12.048942 12.822542 1.640377 11.424777 8.980257 -0.737850 8.341850 0.268155 5.952005 1.668366 4.005655 -2.679691 -1.587422 -3.299756 -4.758569 -0.826390 2.421017 16.822593 18.283763 0.669510 -9.048881 4.517175 5.649168 4.452758 5.652114 13.436490 -5.188966 5.498674 8.348075 -19.386805 4.486113 -22.559968 5.242762 -20.634184 -10.964230 3.679127 11.180019 8.397905 9.305213 -0.534832 24.060785 -4.715953 -10.122262 15.674755 17.668860 -11.974933 -3.244489 -2.867197 -7.642527 -0.027744 -5.771352 3.674866 3.963458 10.125393 -14.204091 -5.805109 1.878944 2.880970 -9.110101 -6.849808 0.278803 12.266789 -12.544353 -10.377180 -3.366596 13.082257 -1.830690 -24.927564 -10.429173 -11.749981 1.574451 1.996988 -13.380597 -13.158805 7.451423 2.706953 -3.468671 -5.216511 -3.561113 8.535970 10.247634 3.767476 -2.707387 10.281865 3.846781 23.842965 1.745000 -8.888070 2.850160 4.530487 -1.717508 8.219598 -5.104342 -4.455133 2.054394 -14.106234 -0.358300 7.777140 -8.432285 -3.782821 2.929487 1.214135 -2.856550 53.196549 -4.261880 19.113943 16.485307 -12.888851 5.235563 -5.821994 4.253462 5.553937 8.411249 7.011144 -23.444893 -12.954217 14.883053 23.714659 8.454945 -14.960512 -1.415052 6.506433 1.822229 -2.640977 8.508594 1.063161 1.420866 -7.963353 -2.115285 9.302534 29.318072 -8.547733 -2.084790 2.944605 7.094691 -1.706501 -14.653695 -2.613391 -13.460051 -0.169736 6.029045 4.900923 7.693758 17.627503 -20.505617 14.972019 -1.271693 1.234836 15.272654 6.072362 -13.013024 -17.601420 -7.385696 5.943752 13.235815 -4.627452 -2.141304 3.258133 -18.960411 0.748919 4.784031 2.412000 -11.497750 16.467094 -0.078031 -6.290596 -4.518523 3.724264 -5.071833 -5.465387 -5.353437 13.002377 0.532323 -14.477800 12.375934 4.951810 -7.047837 1.851085 -3.511507 14.631157 -12.290203 -13.942328 9.932423 -5.703906 -9.089074 -4.240960 -4.936689 6.030979 7.928307 3.530974 -15.676840 -11.138934 15.749196 -6.432435 20.539279 8.742453 -4.876345 9.155026 -5.779976 -8.120322 -7.812195 -11.868422 0.236417 3.608469 -10.447096 -10.267406 -4.422709 12.841956 11.653306 0.263648 -11.092690 -0.485472 16.557736 -12.482371 -1.250865 4.269465 2.980087 -13.150459 5.094199 7.697649 -12.175805 5.864753 -11.031065 -2.947211 -11.775566 -7.537127 13.856413 -2.092710 6.171569 -1.392205 -2.578007 1.993908 6.244794 7.956822 1.395607 7.170891 20.410520 9.544937 -0.750154 -3.496132 -19.998411 10.888632 -16.104984 -14.030526 2.137389 5.015166 -9.956321 -4.747346 -0.453282 14.558366 11.961080 -11.133394 -8.468400 7.265428 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 0.308375 0.445060 1.462941 -0.792637 0.776460 -0.142462 0.340242 0.885967 -1.246305 -1.449934 0.501601 -2.784275 -2.208984 1.243533 -0.177147 -1.053061 1.509097 -0.252982 -0.315630 -0.549476 -0.581158 0.185982 1.441525 1.847622 -1.581441 0.726090 -0.936044 0.625201 0.131303 0.912092 0.540707 -1.852296 -0.288974 1.681035 0.927486 0.532124 -0.777422 -0.887204 -1.275995 -2.451023 -0.248943 2.862202 0.238487 -0.030417 0.974975 1.931556 2.230311 0.750647 -0.374602 0.923043 0.706864 -0.487540 1.068638 -0.253897 0.519752 -1.776469 1.369833 -0.516602 -1.165526 0.638878 -0.114583 -1.326695 -1.110055 1.205408 1.352127 -0.231061 -0.975601 -1.329998 0.384185 0.530287 0.167877 1.066427 1.479355 0.900079 1.123922 1.905282 0.385591 -1.020511 0.883242 -3.552521 -1.782202 -0.202093 3.647780 2.170458 -1.289508 -2.036845 1.867513 0.008170 -0.149901 1.120805 2.003771 0.430156 -0.554247 -0.220242 -0.680408 0.852285 -0.423517 0.235488 0.228818 0.674470 -1.352774 0.806388 0.208138 -1.128081 -0.831778 1.829030 -0.225580 0.834442 -1.581997 1.201988 -1.222712 0.861064 2.134907 -1.989538 -0.972198 0.308819 -0.601008 0.944098 -1.069681 1.328184 0.603859 -1.275329 -0.962366 1.471097 -3.446746 2.026165 0.089918 0.622056 0.449629 1.337582 1.436205 -0.441640 -0.214020 -0.561804 0.133600 0.186203 0.501540 0.624021 0.135411 -0.028278 0.418333 -0.177683 0.390020 -1.104909 -0.807919 -0.803270 -3.368995 -0.179142 -0.223843 2.140310 -0.530722 1.672245 0.476860 -0.568207 1.290054 0.147870 -0.567997 -0.067128 0.819563 1.175053 0.916289 -0.449761 1.301755 2.123453 0.540837 -1.087792 1.791812 1.368711 -0.126236 -0.767074 1.860788 0.063429 0.981995 -0.588221 -0.270955 1.006233 1.628853 0.419212 -2.821809 -0.431474 0.604834 1.534023 0.692190 0.860534 1.305117 0.086213 0.427633 0.167197 0.949165 1.346037 -3.549771 1.479055 1.208765 -0.268042 1.627998 -0.357025 -0.945693 -1.632057 -0.178697 0.770452 1.377291 1.006325 -1.229881 -0.389641 -1.283159 -0.135654 0.429154 0.082030 -0.973050 1.368749 -0.537138 -0.153219 -0.504272 -2.857358 -0.489313 1.150951 -2.004445 0.692024 0.833955 -2.694563 1.250660 0.276951 -0.788601 -2.009770 -0.675969 -0.091520 -1.053702 -1.137842 -0.699460 -1.894325 -3.704247 -1.112417 -1.174877 -0.667244 0.123814 0.328977 -0.711067 -0.749602 2.889365 -0.426567 1.792675 1.117130 -0.364689 1.493069 3.245251 -0.772333 0.582974 -1.221878 2.378545 -1.157912 -0.422825 1.709162 -1.077047 -0.162508 0.962214 -0.563797 -0.409124 -1.437455 0.787582 0.352275 -1.211444 0.517809 -2.071968 0.087807 1.869653 0.882671 -0.567045 0.644824 -2.334256 -0.951488 -0.954456 -0.446967 0.527720 -0.498525 -0.205900 0.714305 -0.774280 -1.304067 0.225545 -0.612594 -1.399160 0.042110 1.845865 1.666212 -1.213790 2.160422 -1.754834 1.525686 -1.282757 -1.099974 -0.063114 -0.729143 -0.526523 -0.803364 -0.490419 -0.082462 0.767109 -1.478933 -1.621692 2.222570 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::Graph(int) = -0.886871 -0.353017 0.767178 -1.783412 1.162852 0.995514 0.410560 -0.848063 -1.389678 -1.018199 0.615275 -1.692805 -2.233590 1.857005 -0.732418 0.245240 1.180535 -0.765547 -0.888833 -1.231136 1.149372 -0.763242 2.130421 1.889254 -2.224627 0.037407 0.101549 1.481186 0.369871 1.118776 0.558282 -0.957366 -0.791572 0.322133 1.440981 0.537627 -0.555454 -0.048229 -0.216505 -2.469148 -0.400903 2.355885 0.393642 0.063368 0.382942 0.544310 1.484941 1.397248 0.112313 0.749775 1.513490 -0.208230 1.396938 -0.301156 1.203996 -0.464769 1.912759 -0.270240 0.003629 -0.066071 -0.674896 -0.346056 0.109076 2.011536 2.134391 -0.659266 -1.068819 -0.334929 0.157511 1.216118 0.360379 1.714488 -0.116849 0.616049 1.745560 -0.498202 0.635133 -2.231303 1.250257 -2.368168 -1.583015 -0.045413 1.320372 1.700051 0.331098 -0.682506 3.176779 0.016607 -1.104992 0.375170 1.701236 -0.088378 -0.043586 -0.372897 -1.274213 -0.092360 -0.607702 0.066458 0.039322 1.393582 -1.574929 0.246495 -0.008691 -0.231418 -1.336363 0.396940 -0.941650 1.421743 -1.071854 0.010450 -1.000993 1.457096 0.503980 -2.910461 -1.080448 -1.563999 -0.729368 -0.067344 -0.867762 -0.027394 0.966174 0.353118 -0.692274 -0.066005 -1.845405 1.805799 1.437511 -0.019921 -0.182868 1.116752 0.356121 1.015353 0.282424 -0.621162 -0.650769 0.724482 -0.269446 0.690223 0.001976 0.379471 0.718355 -0.619811 -0.196263 -0.224526 -0.324728 -0.343018 -1.107959 -0.749597 -0.108865 4.672193 -1.082331 1.772666 0.783706 -0.948689 1.428544 0.419648 0.109870 0.641787 1.173942 0.742509 -1.264409 -1.268969 2.038357 2.466819 0.569046 -1.306027 0.677188 1.105986 -0.004866 -0.873666 1.568050 -0.033170 0.077404 -0.618754 -0.375504 0.187470 2.679102 -0.765686 -2.313946 0.479028 1.248655 -0.118901 -0.632566 0.264718 -0.925206 -0.489129 0.194284 0.421053 1.140751 1.856154 -2.952604 1.621538 0.397448 -0.606102 2.486144 -0.870997 -0.535934 -2.568023 -0.257748 0.330477 1.511726 -0.086827 -0.898480 -0.343271 -2.090822 0.634756 0.060827 0.463797 -1.581240 2.139944 -0.901035 -0.653609 -0.675386 -1.503704 -1.005771 0.338657 -1.618982 0.726364 0.251304 -2.259252 1.628963 0.325285 -0.484548 -0.575251 -0.030336 1.081709 -0.758619 -1.530843 0.521359 -0.989697 -1.603908 -1.359758 -0.941176 0.305390 0.238231 0.027909 -2.069772 -0.816651 2.082945 -1.249009 2.441331 1.017563 -0.231894 0.920019 1.954041 -0.864280 -0.298732 -0.854501 0.772522 0.213425 -1.232039 -0.466484 -0.742961 0.888183 0.922984 -0.221979 -0.234707 -0.894606 1.952432 -0.411230 -0.582716 0.074324 -1.322431 -0.856218 1.212365 0.776571 -0.307633 0.103344 -2.181086 -0.450106 -1.924871 -1.227398 1.424337 -0.373501 0.551350 0.139536 -0.203861 -0.537453 0.304441 0.600804 -0.746823 -0.007201 2.552141 1.203992 -0.967823 0.373363 -2.267286 1.778210 -1.079125 -0.678853 -0.204823 -0.335185 -0.407153 -0.668487 -0.645870 1.278532 1.260447 -1.004509 -1.049320 0.731554 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::addEdge(int, int) = -0.207629 0.487799 0.710325 -0.603055 0.754452 1.121903 0.276523 -0.281601 -0.616820 -0.653736 0.004449 -1.382057 -1.318310 1.109193 -0.425102 0.196855 1.541574 0.062704 -0.304055 -0.381476 0.422605 0.137492 1.806434 1.739347 -1.420464 0.252384 0.326687 0.766053 0.238120 0.805545 -0.082842 -1.133776 0.389058 -0.163270 0.298001 -0.375291 -0.287049 -0.425646 -0.125558 -2.148592 -0.225758 0.688432 -0.513368 0.008501 0.265403 0.440363 1.795158 0.915251 -0.038145 0.601908 0.548565 0.208105 0.535907 0.083012 0.346667 -0.186662 0.740920 -0.544874 -0.492764 -0.041565 -0.176873 -1.004478 -0.409280 1.293690 1.399073 0.035829 -0.450303 -0.035715 -0.079355 0.187764 -0.010697 0.922614 0.369510 1.020899 0.781000 -0.549021 0.374274 -1.086776 0.077094 -1.834732 -1.161519 -0.700530 0.982812 0.926853 0.438551 -0.386730 1.803415 -0.096516 0.106437 0.802341 1.786177 -1.064380 -0.304424 -0.468897 -0.296752 0.358885 -0.642834 0.317974 -0.238620 0.166782 -1.059314 -0.641479 0.460506 -0.021103 -0.783408 0.076260 -0.272536 0.982118 -1.420744 -0.405713 -1.197009 0.144534 0.070884 -2.006226 -0.901309 -0.122971 0.719090 0.485326 -0.491112 -0.862902 0.463086 0.556744 -0.146803 -0.411900 -0.731987 1.111417 0.780983 -0.037090 0.246582 0.716530 0.691291 1.467165 0.800806 -0.243129 -0.174979 0.291639 -0.311569 0.129923 -0.267389 0.029452 -0.183725 -0.934183 0.065019 0.834763 -0.698001 -0.288385 -0.750103 -0.362115 0.362175 3.635235 -0.365216 1.015689 0.649424 -1.302250 0.385130 -0.520316 -0.435057 0.242592 0.623353 1.068468 -1.456415 -0.718430 0.835498 1.730116 0.586654 -1.131387 0.561812 0.154608 0.056481 -0.575498 0.818810 0.261799 0.282272 -0.665407 -0.194889 0.898380 2.137334 -0.665783 -1.420188 0.239282 -0.005284 0.248310 -0.655044 0.012613 0.068492 -0.109196 0.645692 0.094124 0.461225 1.342214 -1.896064 1.149993 0.129787 -0.527145 1.255378 0.055455 -0.620021 -0.353579 0.156390 1.053553 1.008436 0.190598 -0.275531 -0.289846 -1.387440 -0.098871 0.447877 0.509975 -0.775528 1.174062 0.272788 -0.917842 -0.842241 -0.799180 -0.012022 -0.212927 -0.880506 0.682669 -0.027183 -2.263055 1.406258 0.165344 -0.666402 -0.044295 -0.567136 0.875931 -1.261975 -1.438877 0.513147 -0.672698 -1.309578 -0.314565 -0.513330 0.391126 0.638030 0.283425 -1.139230 -1.015248 1.274140 -0.000222 1.106633 0.809169 0.307506 1.321654 0.255929 -0.788818 -0.472717 -0.974147 0.951325 -0.192234 -0.695056 -0.251756 -0.623938 0.830020 1.597008 -0.293416 -0.451401 -0.603867 1.072675 -1.118049 -0.486947 0.557549 0.477193 -0.695962 0.510108 0.750442 -0.681069 -0.188724 -0.958703 -0.412671 -0.563732 -0.964697 0.603355 -0.924936 0.178426 0.821408 -0.358289 -0.630573 0.530744 -0.053034 -0.123107 0.099323 1.344499 1.403520 -0.840485 0.568726 -1.358384 0.966789 -1.574328 -1.162813 0.244836 -0.160569 -0.224341 -0.359900 -0.116135 0.604120 0.547470 -0.787802 -0.548969 0.264206 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclicUtil(int, bool*, int) = -1.191665 0.186756 1.704277 -2.674045 1.868508 2.159376 0.847397 -0.589319 -2.814234 -3.067303 0.393319 -4.912433 -4.140169 3.975851 -1.419665 0.865000 5.395022 0.473584 -0.960766 -1.371676 2.185667 -0.980775 5.390340 6.121084 -4.547279 0.259819 0.317233 2.755403 0.912790 1.804856 1.362213 -3.958787 0.528976 -0.803606 1.993624 -1.784665 -0.777064 0.435236 -0.045243 -7.343744 -0.740662 3.414239 -0.521762 0.052892 0.910782 1.664156 4.967405 3.183802 -1.041861 2.256958 2.431314 0.413968 2.014112 0.052028 0.595989 -0.910632 0.601337 -1.537021 -1.268092 0.520607 -0.891534 -2.935615 -0.109401 4.420126 5.061033 -0.261067 -1.700625 -0.146706 0.409329 0.987840 0.516529 3.257241 1.287887 1.983562 2.992524 -2.893132 0.293835 -6.596312 1.431761 -7.714325 -3.683609 -1.577690 4.038728 4.059277 0.822151 -2.296625 6.272740 -0.635539 -0.468039 4.404158 5.552301 -2.502566 -1.008719 -2.406057 -1.897972 1.171332 -2.142441 0.444852 -0.386201 1.760747 -3.533026 -2.060107 0.797346 -0.347009 -2.493055 -0.796557 -0.932756 3.568859 -4.284629 -1.458426 -3.737319 1.966768 0.950991 -6.548703 -1.421956 -1.924137 0.694724 1.396412 -2.344915 -1.916421 1.600712 0.901138 -1.039587 -0.559255 -4.042106 4.258999 2.063516 -0.026386 0.200387 2.577099 1.610909 3.840176 1.688019 -1.657089 -0.550439 1.594494 -1.226550 0.595961 -2.004075 -0.365770 1.992682 -2.933988 -1.280795 1.175803 -2.362217 -1.535020 -1.390279 -1.694941 0.895721 12.514138 -1.141419 3.583366 2.664407 -3.611032 3.257946 -0.555638 -0.413267 1.244978 2.774177 3.046441 -5.241977 -2.813799 3.049679 5.942545 2.032466 -3.148877 0.204734 1.185492 0.514151 -1.432250 2.712646 0.718068 0.174941 -2.126627 -0.564850 2.546968 6.848147 -1.478460 -2.302633 0.246459 2.190611 0.208513 -3.288667 0.165842 -1.734909 -0.504754 1.574438 0.581004 2.069393 4.689785 -7.130386 3.895658 0.348796 -0.265135 3.077526 -0.058659 -2.227906 -5.227642 0.076839 2.787863 3.670651 0.226332 0.104814 -0.341266 -4.841636 0.099521 1.139399 1.904180 -2.937590 4.163666 -0.623511 -2.236818 -2.414422 -1.776790 -1.958072 -1.031318 -2.485746 2.501303 1.602715 -5.332507 4.257677 0.121154 -1.759973 -0.361773 -1.224268 3.263333 -4.247671 -4.563308 1.820381 -2.133447 -4.431786 -1.774499 -1.755638 1.529316 0.926936 -0.687884 -3.194661 -4.192761 4.674374 -0.826925 4.435103 2.485793 0.004302 4.114009 2.480832 -2.303489 -1.680200 -3.481164 2.149165 -0.647040 -2.122932 -1.654277 -1.522223 2.542234 4.734265 -0.707536 -1.771299 -0.850410 4.202960 -2.804983 -1.652315 1.557936 -0.374701 -1.816015 2.063088 2.322843 -3.178759 -0.188448 -4.368040 0.138714 -1.803342 -2.664223 2.376352 -2.720129 0.605070 1.758065 -0.974979 -1.505319 1.691769 1.310325 -0.789371 0.457130 5.617681 3.922207 -1.739104 1.348462 -4.991970 2.915406 -5.079224 -3.505009 -0.406224 0.538439 -1.045510 -0.927709 -0.056427 2.339445 2.364883 -1.888891 -2.275938 1.458911 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -1.429705 -1.031183 0.032014 -2.495557 1.570732 2.105540 0.806216 -1.521433 -3.161656 -1.598473 0.744659 -3.809194 -2.027178 3.618876 -1.104903 2.359335 4.654086 0.665658 -1.243475 -1.060256 2.847250 -1.108898 4.546380 5.287277 -3.221414 0.095715 0.091634 1.721630 0.644398 1.146487 0.867092 -2.801736 0.681545 -2.557828 0.824456 -2.193828 -0.806234 1.715020 2.160604 -5.956702 -0.275813 2.080911 0.253043 -0.098702 0.284128 0.706655 3.126533 2.734871 -0.612321 2.544564 2.121584 0.249008 1.584794 0.139901 0.880651 0.709302 0.142084 -0.513782 -0.486605 0.007127 -1.053349 -1.139467 0.768951 3.548424 4.176937 -0.245558 -1.682089 0.705536 0.657548 0.729256 1.040730 2.742087 -0.014296 0.668427 2.199675 -4.131004 0.106187 -6.355015 1.177293 -5.927908 -2.522602 -0.132859 2.489800 2.291563 1.793614 -0.953761 5.296577 -1.245341 -1.376851 3.778766 4.017068 -2.713140 -0.734443 -1.517651 -1.934889 0.241869 -1.476951 0.126550 0.236598 1.507626 -2.966345 -2.420348 0.794672 0.455532 -2.012161 -1.972949 -0.327229 2.872794 -3.260201 -2.409103 -2.003855 2.418042 -0.328217 -5.121158 -1.067952 -2.591922 0.279321 0.729928 -2.612913 -2.811612 1.562256 0.946674 -1.038628 -1.334863 -1.533729 2.734596 1.844051 0.342346 -0.337113 1.492068 0.669499 4.476553 1.062921 -2.034575 0.096982 1.415320 -0.834184 1.080867 -1.988712 -0.923872 1.615650 -2.916520 -1.032532 1.224174 -1.995549 -0.712949 1.278841 -0.750734 0.025040 11.093903 -0.922835 3.441477 2.906161 -3.057618 2.467416 -0.627308 0.540119 1.386998 2.471038 1.863502 -5.379053 -2.772440 2.746170 4.939402 1.906491 -2.891064 -1.224542 0.919300 0.644049 -0.283123 1.791036 0.262824 -0.001275 -2.020672 -0.465489 1.496187 6.637982 -1.630709 -0.033797 0.475242 2.183325 -0.855335 -3.741754 -0.457709 -3.495023 -0.276583 1.118804 0.555343 1.815569 3.991225 -5.633358 3.264628 -0.991583 -0.035252 2.319210 0.821997 -2.215009 -4.787220 -0.909793 1.577478 3.366356 -0.411122 0.827003 0.515435 -4.132003 0.171375 0.651508 1.158301 -2.649134 3.580428 -0.317110 -2.037564 -1.280206 0.464566 -1.713194 -1.785549 -1.131506 2.487476 1.266421 -3.526206 2.917679 0.571998 -1.202979 0.720583 -0.248063 3.237571 -3.037043 -3.510242 2.305602 -1.018888 -1.857890 -0.995362 -1.137866 1.730210 0.909642 -0.471619 -2.801659 -3.791725 3.326769 -0.989914 4.127526 1.950888 -0.807582 2.536817 0.178201 -1.712314 -1.994874 -2.518479 0.285167 0.006602 -1.729952 -2.447256 -1.087123 2.730771 3.299635 0.228911 -1.885456 -0.150381 3.981611 -2.562296 -0.224072 1.283563 0.532544 -2.131305 1.130791 1.952146 -2.967787 0.379977 -2.911408 0.485297 -1.820258 -1.657267 2.704809 -1.404539 0.957125 0.344628 -0.464488 -0.218307 1.427464 1.852688 -0.182823 0.767705 4.863609 2.444141 -0.527270 -0.147130 -3.991481 2.062656 -3.839042 -2.777128 -0.417924 1.270173 -2.087193 -0.700622 0.149734 2.901426 2.170285 -1.112267 -1.548551 0.840398 +PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 0.235941 0.265420 1.390512 -0.863622 0.306064 -1.484813 0.127426 2.221331 -1.440023 -2.689181 -0.209151 -1.980107 -2.473406 1.068618 -0.180750 -2.146141 1.996361 0.698428 0.249656 -0.999259 -0.606466 -1.056222 0.870347 2.059450 -1.721553 0.562548 -1.047793 1.031586 0.096797 1.103171 1.778577 -2.337059 -0.676329 2.543333 2.317201 -0.626131 -0.688569 0.061001 -2.988178 -3.429933 -0.328973 3.451258 0.562055 0.278960 1.387209 2.725417 2.017909 0.440539 -0.968309 1.133799 0.706406 0.452289 1.128084 -0.417575 -0.174989 -1.535874 -0.113229 -1.349346 -1.068078 1.519995 -0.314755 -2.150688 -0.493507 1.066867 1.285341 -0.586745 -0.822702 -1.968100 0.387934 0.815779 0.312230 0.983171 1.891191 -0.063505 1.245659 1.633198 -0.505664 -2.335233 1.692180 -6.038244 -1.678479 -1.096617 4.581977 3.298697 -2.492678 -2.552991 2.229132 -0.445295 0.570432 2.413573 1.635140 1.441252 -0.371901 -1.114465 -0.799011 1.189717 -0.217236 -0.778259 0.019418 1.529199 -1.045608 0.801024 -0.121215 -1.870247 -0.815001 1.506787 -0.727261 1.347504 -2.542240 1.717458 -2.366141 1.585725 2.905186 -1.527497 0.070040 -0.297911 -0.832039 1.109822 -1.046390 2.447853 0.626450 -1.363704 -0.961401 2.606305 -4.648517 2.567347 -0.777454 -0.375613 0.277409 1.695570 0.594909 -1.664927 0.021694 -0.659650 -0.355101 1.471567 0.205840 -0.455283 -0.722173 0.075035 1.794000 -0.162830 -0.211474 -2.258950 -0.964453 -1.739898 -3.769480 -1.327284 0.349264 1.835226 -0.641177 1.075247 0.174795 -0.045792 1.986700 1.175554 -0.248165 0.319633 1.633175 1.168292 1.517493 -0.464236 0.482443 2.022359 0.508347 0.011987 1.035110 0.967347 -0.143815 -0.087553 1.892102 -0.175757 0.361532 -0.309831 -0.212590 0.095797 1.153629 1.350936 -1.260812 -1.323485 1.752553 0.871819 0.591893 1.297731 0.839198 -0.223748 0.422193 -0.082728 0.920418 1.418342 -4.007837 1.665861 0.890243 0.666255 -0.053130 -0.749913 0.216273 -4.070409 -0.231887 0.632267 2.208272 0.584602 -0.490099 -0.318869 -1.302074 0.005213 0.453676 1.128844 -1.390369 1.437385 -0.991126 0.120303 -0.164210 -2.580978 -1.306664 1.326193 -1.750506 0.242077 1.790314 -2.223624 1.059591 -0.597910 -0.384567 -1.920103 0.274901 -0.107415 -1.194311 -1.183254 -0.777982 -1.157924 -4.472280 -1.464843 -1.508400 0.225301 -1.065270 -1.019167 -0.019364 -1.221654 3.261756 -0.479603 1.627728 1.096063 -0.670272 2.414371 3.991436 -0.608465 0.800734 -1.512135 1.939985 -1.982818 0.697645 2.032000 -0.818536 -0.726795 1.668511 -0.259244 -0.417778 -0.268113 1.698550 1.065472 -1.422258 0.452396 -3.183120 1.420379 2.893272 0.951643 -1.405000 -0.188067 -3.260499 0.571659 0.156296 0.168836 0.741650 -1.632484 -0.474513 0.912891 -0.562299 -1.789416 0.531483 0.046933 -1.736304 -0.263950 2.522593 1.539755 -0.910196 2.827865 -1.274574 1.260116 -1.174981 -0.010322 -2.013423 0.119293 0.341876 -0.225176 -0.966252 -0.148124 0.873675 -0.651658 -1.644188 2.098774 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.102838 2.291312 1.562487 -0.717917 2.766109 1.367771 1.013271 0.487268 -0.616644 -2.691570 -0.631638 -2.124391 -4.425986 2.294314 -0.585513 0.063224 3.754322 -0.176848 0.687496 -1.706446 1.853539 -2.030642 4.557629 3.680192 -4.653238 0.892316 2.125728 1.636419 0.893876 2.301289 -0.173409 -2.800218 1.563200 -0.912133 2.434333 -1.435159 -0.411212 -1.746284 -1.231941 -5.474236 -1.158902 1.074740 -1.666458 0.751731 0.332065 3.627279 5.243060 2.305665 -2.197185 2.042171 2.024831 -0.388197 1.362920 0.613941 -0.184239 -0.707094 0.810340 0.454739 -1.683475 0.649137 -0.741573 -4.573867 -0.332802 2.899213 4.047803 -1.009577 -0.593018 1.138952 -1.047903 0.592012 -0.366003 2.654282 2.658497 1.439750 3.834976 -2.583265 -0.915642 -6.064336 -0.790629 -9.619127 -3.353501 -3.757440 2.156846 -0.214132 1.442142 -0.768521 4.801038 0.882879 1.365380 2.454258 4.607286 -2.750372 -0.617689 -2.410959 -0.586002 0.946581 -1.988110 0.493299 1.582555 -0.871082 -2.603298 -2.541087 1.879002 -0.557000 -1.873320 -1.760126 -1.825465 2.696122 -3.943065 -1.143923 -5.230952 -1.214098 -0.209101 -5.266261 0.164105 0.378936 3.143710 1.639620 0.407178 -1.604759 0.753452 2.296745 -0.518526 -1.834076 -0.538712 3.938225 2.294532 0.051212 1.637644 1.825754 1.319343 3.039852 4.986868 0.217510 -1.976297 0.873415 -1.496661 0.057007 -1.230226 0.251822 2.685449 -2.415903 0.080594 1.378587 -1.326006 -1.234421 1.381152 -2.601321 1.997828 7.446721 -0.705544 1.826334 0.643406 -3.405656 1.992737 -0.923036 -1.365606 1.663266 2.934402 2.574579 -3.500661 -1.784515 1.567659 3.652194 1.049482 -4.325527 -0.755701 -0.209161 0.637889 -1.490111 0.998617 1.208337 0.840279 -1.502646 0.045779 1.590841 5.111028 -2.649330 -3.639972 0.843701 1.038919 -0.209938 -3.745856 -0.330947 -0.918710 -0.925056 0.907091 -0.060883 0.687486 3.291336 -6.560584 2.461418 -0.687083 -1.258650 2.150932 0.151528 -0.574745 -4.132004 1.655184 2.886846 2.100674 1.186277 -0.173361 -1.161072 -3.317569 0.547958 0.594217 1.895951 -1.644233 2.928538 -0.850023 -2.251208 -2.909906 -2.163292 -0.218727 -0.506149 -1.013645 1.105284 1.046774 -7.294980 3.452635 -1.336000 -2.279453 0.322650 -0.520194 2.619889 -3.003984 -4.252019 1.421064 -2.031352 -3.701978 -2.211573 -1.003741 1.065021 0.750870 -0.985431 -1.913322 -4.344012 3.357012 -0.466682 1.946062 2.303078 1.834084 5.843422 0.631077 -3.284702 -2.703609 -1.698674 1.915076 -1.512861 -1.416688 -1.759733 -1.375295 1.887757 5.068595 -0.379324 0.477254 -1.392684 3.095328 -4.594436 -2.024290 2.471422 2.911143 -0.795757 2.473208 2.492805 -1.699599 -1.892443 -2.776764 -0.286514 -0.230242 -2.581894 0.959781 -3.914342 -0.390382 2.681716 -0.679213 -1.605337 1.770754 -0.443432 0.247884 -1.973846 3.494801 6.416270 -4.615794 0.651170 -2.647321 2.195716 -4.426188 -2.842907 0.051400 0.525438 0.730074 -0.151317 0.731008 1.029767 0.923286 -2.556125 -1.478989 -0.690962 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/detect-cycle-undirected-graph.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/birthday-paradox.cpp__find(double) = -0.006249 0.342897 0.365313 0.302003 -0.290722 -0.153686 0.135432 0.148121 -0.350570 -0.455056 0.635022 -0.171046 -0.939827 0.806129 -0.727518 -0.559575 0.349486 0.815714 -0.424582 0.014875 0.389794 -0.258054 0.717388 0.451571 -0.511098 0.251717 0.457507 -0.156443 0.044243 0.736318 0.447548 -0.505443 0.758555 0.699285 0.824720 -0.718662 -0.011856 0.417902 -0.357011 -0.925401 -0.107211 0.328170 0.232080 -0.105438 -0.038050 1.016236 0.139569 0.612603 0.415211 0.017306 0.303198 0.174251 0.613912 0.003596 0.266512 -0.702583 0.668525 -0.198211 0.249574 0.182720 -0.329564 -0.309353 -0.323415 0.741002 0.840096 -0.327399 -0.190483 -0.726035 -0.554731 0.150247 -0.169121 -0.085003 0.602653 0.495867 -0.518064 0.078805 -0.406765 -0.961932 0.269288 -1.402490 -0.177867 -0.137043 0.468667 0.392929 -0.544554 -0.000470 0.796762 0.869777 0.038159 0.472888 1.073495 0.358311 -0.260391 0.388705 -0.001120 0.643368 -0.058020 0.684909 0.220922 -0.124089 -0.468167 -0.042986 -0.818552 -0.266241 0.182379 0.522662 -0.214864 0.652842 -0.387166 0.616374 -0.326846 0.151114 0.358607 -1.028807 0.200329 -0.255880 0.173841 0.400254 -0.416433 0.296942 0.476552 0.342973 0.119390 0.172483 -0.483909 0.425672 -0.842836 0.388466 -0.285560 -0.094053 0.391149 -0.564402 0.230265 -0.242701 0.161221 -0.399104 -0.387914 0.582029 -0.407642 0.265992 0.522879 -0.049954 0.061811 -0.335553 -0.318358 -0.714339 -0.485443 -0.178886 -0.055247 0.641920 -0.200841 0.653832 0.059206 -0.571211 0.221403 -0.077256 -0.354534 0.012364 0.429997 0.048716 0.173223 -0.603461 0.219291 1.070004 0.391427 -0.726801 0.383487 0.147500 -0.188939 -0.486702 0.947569 0.035702 -0.363160 -0.311080 -0.255812 0.391487 -0.117428 -0.387306 -0.510777 -0.787874 0.199281 0.711348 -0.278187 0.358536 0.169619 0.276264 0.250762 -0.062318 -0.005852 -0.238620 -1.325252 0.873239 0.057924 -0.140195 0.373917 -0.285950 -0.266270 -0.938300 0.453941 0.208551 0.251419 0.026543 -0.320299 0.558645 -0.779623 0.108840 -0.060120 -0.286473 0.106283 0.436793 0.130669 0.090557 -0.690684 -0.043890 0.431621 -0.429507 -0.335788 0.965338 0.740452 -0.993047 0.051883 -0.363126 -0.059997 -0.857143 0.107754 -0.093559 -0.731685 -0.959850 0.140660 -0.147353 -0.367328 -0.457685 -0.353425 0.691872 -0.403720 0.273209 0.200948 0.189643 0.444112 -0.389399 0.047797 0.240782 0.377933 0.522719 0.289386 -0.289508 -0.175597 0.145881 0.654733 -0.587465 -0.292216 0.378043 -0.108109 0.425056 -0.047270 0.244262 -0.439515 0.037468 0.809786 -0.085693 -0.288746 -0.281209 0.177487 0.755522 0.263849 0.341693 -0.193706 -0.232951 -0.906959 0.087711 -0.450006 -0.364020 0.475728 -0.179696 0.367418 -0.358286 0.107594 -0.530021 0.232440 0.297296 0.397708 0.612861 -0.292020 0.636940 -0.315891 0.573057 -0.107883 0.397324 -0.182191 -0.025629 -0.298630 -0.200014 0.307273 0.585066 -0.159072 0.428926 0.378448 -0.067078 0.027284 0.838261 +PE-benchmarks/birthday-paradox.cpp__main = -0.012313 -0.007058 0.188394 -0.170557 0.052237 -0.227867 0.018965 0.058573 -0.185004 -0.310855 0.076974 -0.335032 -0.239134 0.169821 -0.143800 -0.171524 0.190826 0.021802 -0.002095 -0.179366 -0.075606 -0.060136 0.197674 0.242517 -0.220929 0.014499 -0.084386 0.178422 0.111635 0.095492 0.215893 -0.247966 -0.041223 0.290609 0.169031 -0.007519 -0.001908 0.013504 -0.244999 -0.276101 -0.002939 0.260785 0.168624 0.024823 0.099802 0.317743 0.180379 0.122590 -0.056130 0.148702 0.205548 0.109321 0.080288 -0.006512 0.005836 -0.310861 0.176496 -0.297811 -0.126990 0.099625 -0.007078 -0.215177 -0.104914 0.203766 0.229485 -0.023753 -0.025035 -0.191359 0.003371 0.146613 0.107690 0.072259 0.089368 0.101479 0.079902 0.152582 0.069313 -0.315880 0.097098 -0.713909 -0.145902 -0.039404 0.474310 0.347465 -0.259556 -0.049284 0.206567 0.124858 -0.015568 0.209825 0.220414 0.152063 -0.091758 0.011549 -0.140395 0.165100 -0.098056 0.043793 -0.067980 0.343331 -0.120469 0.148460 -0.011864 -0.169784 -0.067404 0.222622 -0.043972 0.075602 -0.380084 0.220700 -0.122501 0.136113 0.335381 -0.247761 0.005571 -0.100141 0.095938 0.038091 -0.098597 0.279033 0.050131 -0.154997 -0.099801 0.328800 -0.654213 0.145845 -0.067747 0.078706 -0.015972 0.129298 0.100296 -0.097800 -0.123843 -0.137932 -0.031262 0.047280 0.018146 0.020797 -0.068646 -0.018039 0.176276 -0.052815 0.169915 -0.209500 -0.100168 -0.324471 -0.421040 -0.107048 0.056429 0.081585 -0.043404 0.184771 0.100217 -0.043586 -0.033519 0.007781 0.019886 0.023213 0.111009 0.054480 0.418314 -0.105255 0.126236 0.211733 0.085260 0.004434 0.142709 0.163930 -0.012596 0.001584 0.156589 0.021538 -0.091924 -0.063335 -0.055020 0.063428 0.062261 0.237848 -0.042909 -0.091601 0.172681 0.098904 0.169429 0.125908 0.212707 0.087835 0.032347 0.035669 0.099455 0.186628 -0.619771 0.192864 0.213901 0.166695 0.002854 -0.085012 -0.102297 -0.420140 0.001948 0.081666 0.169254 0.025383 0.017014 0.060687 -0.153126 -0.010151 0.007491 0.082324 -0.132988 0.085812 0.022363 -0.043600 -0.116140 -0.240788 -0.041630 0.224456 -0.190698 0.078490 0.179660 -0.423653 0.157271 -0.109772 -0.085385 -0.279686 -0.040719 0.021664 -0.199665 -0.079439 -0.131103 -0.256764 -0.471266 -0.200924 -0.091906 -0.033389 -0.190491 0.043195 0.005320 0.068877 0.276358 -0.124197 0.117516 0.082764 -0.042349 0.177665 0.226013 0.019012 0.075593 0.027987 0.201420 -0.283123 -0.001730 0.502373 -0.037662 -0.042253 0.151348 -0.067111 -0.100955 0.149352 0.145885 0.158464 -0.224764 0.039922 -0.264379 0.054896 0.371986 0.078028 -0.190200 0.029379 -0.324110 -0.044495 -0.021776 -0.070294 0.110235 -0.037935 0.028767 0.061423 0.011381 -0.225092 0.096255 -0.025403 -0.159564 0.041451 0.272975 0.232727 -0.042407 0.298166 -0.225079 0.066121 -0.190138 -0.142396 -0.080925 -0.029797 -0.003606 0.006337 -0.234199 0.059842 0.104000 -0.027267 -0.187023 0.322525 +PE-benchmarks/union-find.cpp__createGraph(int, int) = -0.415305 0.523307 1.057044 -1.473288 1.500909 1.156987 0.448952 -0.552943 -1.145005 -0.863639 0.311538 -1.729518 -2.101560 1.808347 -0.564188 0.077275 1.837366 -0.515923 -0.558877 -1.212693 0.926667 -0.330984 2.454808 2.205990 -2.298687 0.356336 0.652721 1.063884 0.442491 1.054897 -0.144791 -1.306106 -0.079744 -0.123180 0.818911 0.091622 -0.544834 -0.844896 -0.096940 -2.739661 -0.309902 0.902087 -0.680512 -0.002082 0.214423 1.351875 2.467588 1.384449 -0.325384 0.720892 1.401659 -0.097529 0.708161 -0.055776 0.906999 -0.429144 1.693788 0.213982 -0.360356 0.004382 -0.386646 -0.795659 -0.281986 1.987832 1.928503 -0.286949 -0.876840 0.083300 -0.006244 0.648611 0.008337 1.426222 0.684909 1.130442 1.585411 -0.942802 0.232100 -2.724605 0.372964 -3.392738 -1.743614 -0.598084 1.413027 0.362235 0.409903 -0.224151 2.794715 0.186000 -0.287836 0.972029 2.302211 -0.858194 -0.341380 -0.566138 -1.054314 0.240036 -0.621787 0.519594 0.222133 0.460736 -1.666395 -0.415276 0.486382 -0.188677 -1.224305 -0.027803 -0.492546 1.384139 -1.479267 -0.013707 -1.442580 0.744952 0.371103 -3.005256 -0.952748 -0.681430 1.138023 0.215014 -0.764746 -0.770892 0.711472 0.735743 -0.794655 -0.335537 -0.907096 1.781443 1.407633 0.275369 0.226834 0.867890 1.012776 1.524108 1.131964 -0.524721 -0.440526 0.293125 -0.386295 0.379347 -0.163133 0.247312 0.626460 -0.932067 0.598280 0.483099 -0.697323 -0.617954 -0.032432 -0.700884 0.267852 5.271545 -0.841366 1.715086 0.579645 -1.579974 0.760542 -0.472133 -0.533653 0.477947 1.211109 1.128554 -1.761150 -1.130926 1.701024 2.447995 0.765602 -2.134498 0.560841 0.593280 -0.286111 -0.747821 1.239921 0.140319 0.234537 -0.626194 -0.427073 1.009376 3.177729 -0.946273 -2.502110 0.395132 0.761059 0.380948 -0.903705 0.135977 -0.056234 -0.113555 0.749737 0.256315 1.190070 1.948462 -3.790758 1.546731 0.006587 -0.874490 1.907423 -0.072305 -0.819544 -1.584340 0.174830 1.143307 1.554046 0.465010 -0.768847 -0.445300 -1.953486 0.170839 0.403699 0.505434 -1.279641 1.800826 -0.156930 -1.261856 -1.006757 -1.330106 -0.430016 0.461077 -1.277888 0.806808 -0.532068 -4.026620 2.052801 0.183726 -0.677971 -0.484171 -0.676005 1.221499 -1.248926 -1.956753 0.587484 -0.995051 -1.602397 -0.869188 -0.862526 0.453415 0.465064 0.650769 -1.847796 -1.559539 1.890306 -0.664912 2.092914 1.167169 0.303327 1.987159 0.268450 -1.062825 -0.863438 -1.121194 1.543982 0.012978 -1.321853 0.042475 -0.945799 1.025566 1.527331 -0.455620 -0.341627 -0.956765 1.589180 -1.443821 -0.730447 0.519318 0.358512 -1.086788 1.142451 1.039317 -0.611603 -0.120460 -1.756612 -0.807117 -1.395863 -1.481528 0.923330 -0.733760 0.344815 0.748582 -0.211663 -0.702986 0.627316 -0.117194 -0.087233 -0.010309 1.933791 2.662312 -1.653047 0.385484 -2.133030 1.822628 -1.785462 -1.674909 0.384924 -0.371033 -0.233669 -0.685094 -0.562294 0.984829 0.695494 -1.197343 -0.857179 0.710984 +PE-benchmarks/union-find.cpp__find(int*, int) = -0.627404 -0.254483 0.188912 -1.023389 0.821762 1.123430 0.395675 -0.864245 -1.171205 -0.818222 0.429233 -1.659674 -1.125465 1.569199 -0.597928 1.050575 1.967423 0.086848 -0.493022 -0.630356 1.201867 -0.295116 2.314796 2.377089 -1.662141 0.061129 0.480821 0.954399 0.543180 0.337901 0.394075 -1.165980 0.574304 -1.224386 0.173216 -0.760289 -0.290660 0.338000 0.939082 -2.569065 -0.226359 0.437281 -0.439718 0.064016 0.059534 0.416425 1.530399 1.314923 -0.276333 1.305483 1.109820 0.066772 0.590746 0.109900 0.305419 -0.021542 0.255817 -0.315603 -0.238373 -0.126402 -0.354694 -0.817597 0.075611 1.676072 1.962517 -0.169395 -0.645371 0.515876 0.138779 0.364662 0.385798 1.279584 -0.054567 0.657093 1.126048 -2.052120 0.074597 -2.887447 0.162838 -2.791337 -1.311925 -0.217858 1.057736 0.647797 0.917574 0.055048 2.369147 -0.151308 -0.578470 1.527152 1.961635 -1.390411 -0.362448 -0.451541 -0.615373 0.243995 -0.864988 0.439511 0.058595 0.616174 -1.356988 -1.030534 0.517611 0.189376 -0.960489 -0.972413 -0.245126 1.316626 -1.668343 -1.075710 -1.021987 0.757545 -0.197745 -2.583050 -0.744813 -0.817057 1.079418 0.396725 -0.930447 -1.293982 0.592191 0.591746 -0.210337 -0.796513 -0.179158 1.041744 1.165480 0.319704 0.033678 0.840978 0.523859 2.392411 0.890384 -0.665069 -0.127620 0.424835 -0.388778 0.632192 -0.664240 -0.230777 0.393241 -1.371997 0.076165 0.961461 -0.862230 -0.643616 0.716816 -0.320994 0.078579 5.131396 -0.277318 1.614945 1.442943 -1.486667 0.449049 -0.755317 0.106578 0.729942 0.968525 0.889928 -2.321978 -1.163767 1.262212 2.256451 0.815207 -1.747237 -0.410975 0.436588 0.327402 -0.438527 0.774174 0.283323 0.164237 -0.851014 -0.159622 1.069916 2.796293 -0.972047 -0.626354 0.315922 0.700017 -0.226603 -1.709747 -0.240896 -1.067190 -0.089188 0.857010 0.355572 0.607883 1.780790 -2.679893 1.325484 -0.150632 -0.039971 1.177776 0.627909 -1.177134 -1.755605 -0.123625 0.844586 1.223752 -0.132373 0.338314 0.210976 -1.901805 0.047306 0.458714 0.412782 -1.085305 1.603342 0.093633 -0.918038 -0.844151 0.135188 -0.396754 -0.612531 -0.493442 1.186873 0.214879 -2.428411 1.403400 0.089542 -0.901316 0.297231 -0.474626 1.831815 -1.519592 -1.700796 1.094585 -0.720761 -1.062263 -0.524226 -0.442309 0.631800 0.659270 0.137886 -1.297314 -1.368144 1.377585 -0.394226 1.634422 0.913731 -0.099026 1.543924 -0.772284 -0.928365 -1.009148 -0.974128 0.570285 -0.016704 -1.009831 -1.154186 -0.454861 1.256675 1.671345 -0.048976 -0.848924 -0.104971 1.607249 -1.814177 -0.284117 0.619234 1.214020 -1.087677 0.712842 0.852436 -1.235517 0.195817 -1.142900 -0.138689 -0.832820 -1.026413 1.208853 -0.643182 0.509499 0.347711 -0.147966 -0.139562 0.795350 0.565565 0.228802 0.246987 1.865978 1.941436 -0.691908 -0.244820 -1.900852 0.967354 -1.901308 -1.638134 0.254226 0.406070 -0.636772 -0.372841 -0.100708 1.282183 1.006867 -0.905921 -0.731921 0.419287 +PE-benchmarks/union-find.cpp__Union(int*, int, int) = -0.602699 -0.209404 0.329825 -0.781132 0.887311 0.819534 0.500953 -0.605841 -1.160430 -0.967997 0.422040 -1.759667 -1.492904 1.677246 -0.488784 0.974508 2.163682 0.184929 -0.343863 -0.801122 1.153756 -0.693861 2.478492 2.552932 -1.827780 0.133370 0.612021 0.948900 0.598270 0.380878 0.244202 -1.222307 0.757798 -1.254762 0.397386 -0.827736 -0.315318 0.194935 0.785659 -2.841767 -0.312177 0.552203 -0.351203 0.100127 0.084804 1.127185 1.727224 1.404514 -0.453820 1.563500 1.141345 -0.370503 0.743063 0.157509 0.319414 -0.163231 0.381984 0.072270 -0.544236 0.068652 -0.389992 -1.377990 -0.047602 1.659996 2.195789 -0.332265 -0.669547 0.507852 0.058219 0.426633 0.367418 1.347780 0.400690 0.563793 1.477685 -2.008141 -0.099896 -3.403243 -0.037656 -3.893324 -1.555122 -0.435489 1.452602 0.192859 0.867689 -0.050411 2.526425 0.046126 -0.493651 1.432336 2.235637 -1.532538 -0.512726 -0.470921 -0.472508 0.382990 -1.047504 0.487652 0.681797 0.341723 -1.519192 -1.169855 0.841830 0.064060 -1.008076 -0.942485 -0.377486 1.462311 -1.820827 -1.100516 -1.574642 0.347511 -0.052582 -2.759442 -0.348192 -0.554367 1.262725 0.741413 -0.949999 -1.159987 0.654023 0.530662 -0.259344 -0.887919 -0.151669 1.430471 1.124610 0.381009 0.283379 0.987791 0.604614 2.335657 1.371198 -0.650181 -0.256552 0.502721 -0.657302 0.734974 -0.784540 -0.371055 0.847424 -1.437415 0.188305 0.709202 -0.985012 -0.684299 1.053696 -0.329805 0.160561 4.814735 -0.239694 1.660130 1.381444 -1.543834 0.791104 -0.824955 0.058268 0.821316 1.284533 0.956371 -2.221480 -1.186368 1.276222 2.426951 0.880544 -2.219380 -0.619695 0.391080 0.544048 -0.560649 0.879806 0.463359 0.386945 -0.899252 -0.074170 1.082090 2.907069 -1.297300 -1.125323 0.256651 0.656949 -0.091404 -2.185330 -0.202778 -1.026039 -0.177870 0.587571 0.385750 0.541554 1.900350 -3.275149 1.457454 -0.253627 -0.148738 1.454133 0.649498 -1.254367 -2.313738 0.047525 0.934687 1.369002 0.266938 0.178031 0.184688 -2.037506 0.053032 0.370108 0.498832 -1.071844 1.761645 -0.170969 -0.906365 -0.972961 -0.234364 -0.273951 -0.691918 -0.446880 1.235336 0.526076 -3.050865 1.470755 -0.077214 -1.140331 0.193708 -0.354304 1.743224 -1.664255 -1.944352 1.002174 -0.991262 -1.450338 -0.921162 -0.511440 0.509541 0.552901 -0.093729 -1.123354 -1.648925 1.740541 -0.508691 1.719633 1.011387 -0.080553 2.042845 -0.324741 -1.291006 -1.101249 -0.757412 0.615390 -0.457007 -0.987443 -1.210351 -0.496441 1.283993 1.939709 0.000804 -0.561408 -0.362425 1.737964 -2.179384 -0.552142 0.900584 1.457682 -0.817201 1.090133 1.077515 -1.418457 0.098290 -1.293620 -0.408189 -0.746658 -1.101311 1.162776 -0.988218 0.380881 0.441697 -0.242312 -0.195973 0.853920 0.440926 0.138464 -0.056067 2.036608 2.708917 -1.289317 -0.100628 -1.991471 1.092030 -2.078516 -1.715847 0.269564 0.558450 -0.685226 -0.357394 0.191207 1.108999 0.979506 -1.354491 -1.027572 0.413403 +PE-benchmarks/union-find.cpp__isCycle(Graph*) = -1.453124 0.023492 0.733464 -3.470245 3.116406 3.738907 1.050957 -2.225242 -3.259560 -1.836351 1.276988 -4.841503 -3.802706 4.422751 -1.622633 1.779745 4.943537 -0.813381 -1.609915 -1.932746 2.956927 0.330490 6.194772 6.015582 -4.892528 0.403577 1.048787 2.127462 0.893313 1.152112 0.888543 -3.801418 0.665830 -1.970374 0.616704 -0.587630 -1.190775 -0.399785 1.996227 -6.606634 -0.638509 1.804108 -1.841442 0.030035 0.299709 1.456461 5.002083 3.481958 -0.758968 2.667488 3.302552 0.526461 1.395136 -0.042872 1.340344 -0.715766 1.481314 -0.165507 -0.418824 -0.543925 -1.018782 -0.725370 -0.381155 4.843163 4.929392 -0.314391 -2.206184 0.925198 0.423134 1.254667 0.542190 3.631380 0.666329 2.430206 3.250118 -3.583443 -0.154414 -7.214928 1.049829 -6.932023 -3.695081 -0.397637 3.082074 1.729647 1.748947 -0.515701 6.713699 -0.214942 -1.612232 4.258362 5.494390 -2.758256 -0.830434 -1.358064 -2.569538 0.401243 -1.685890 1.581665 -0.089072 1.673543 -4.011822 -2.082509 0.325044 0.018339 -2.760711 -1.938442 -0.607009 3.269641 -3.636599 -1.281992 -2.323004 2.977638 0.286187 -7.322398 -3.556323 -2.182701 2.258133 0.557967 -2.618962 -2.823525 1.672848 1.312298 -1.500741 -1.394703 -0.638746 3.019489 3.621688 1.087468 0.017732 2.244496 2.170956 5.618951 1.621828 -1.790181 -0.296859 0.628512 -0.137871 1.602963 -1.063422 0.194157 0.885973 -2.974690 1.318680 2.185429 -2.007176 -1.906686 0.486322 -1.370357 0.008601 14.329899 -1.502435 4.733785 3.041472 -4.033715 1.175012 -1.811161 -0.353601 1.432311 2.573055 2.595957 -5.180052 -3.030406 4.263937 6.244997 2.046888 -4.791802 0.621302 1.905945 -0.074553 -1.783828 2.662340 0.403787 0.442710 -1.798361 -0.811496 3.242697 7.851238 -2.191375 -3.344679 0.983871 2.990241 0.584522 -2.396070 -0.232735 -1.992982 -0.125320 3.258553 0.948148 2.640987 4.880403 -8.000258 3.506536 0.229926 -0.649341 3.272662 1.428254 -3.035505 -3.466004 -0.248117 2.482716 3.384358 0.170355 -0.208905 -0.243603 -4.938560 0.285137 1.533415 0.899331 -3.143945 4.433698 -0.010220 -2.674126 -2.190760 -0.839638 -1.624338 -0.287244 -2.451093 2.830449 -0.601761 -7.706655 4.412138 0.812500 -1.908373 -0.549413 -1.913872 4.498225 -3.460526 -4.656527 2.499679 -2.287988 -3.194678 -1.013689 -1.665323 1.388400 2.085115 1.994174 -4.330094 -3.866883 4.381195 -0.911097 5.241459 2.654585 0.019697 4.027923 -2.029069 -2.406354 -2.453631 -3.785467 3.480454 0.903448 -3.309166 -1.385168 -1.760056 2.974131 3.600811 -0.708182 -2.648514 -1.506862 3.933308 -3.838782 -0.564122 1.198940 1.972874 -3.329072 1.949767 2.258388 -2.262990 0.671816 -3.750622 -0.542932 -3.451992 -3.146879 2.783375 -1.181822 1.274922 1.070654 -0.483549 -0.726603 1.754847 0.951965 0.343564 0.924854 4.735278 4.805549 -2.353570 -0.063217 -5.498354 3.665257 -4.733759 -4.801104 1.054924 -0.532058 -1.409525 -1.670387 -1.399461 3.187445 2.254433 -2.319986 -2.152109 1.998749 +PE-benchmarks/union-find.cpp__main = -0.030912 3.106007 3.069178 -2.505173 3.076883 3.744169 0.495662 -0.480197 -1.514081 -1.369494 -0.795507 -3.931858 -3.542010 3.026812 -0.861651 -0.376521 4.427138 -0.384338 -0.717853 -0.493197 1.089590 0.655121 4.095010 4.201765 -4.060662 1.197398 1.775967 1.199264 -0.265236 3.868288 -2.123944 -4.558062 -0.200376 0.881654 1.673846 -0.745202 -1.344896 -2.384422 -0.193610 -5.940759 -0.412594 2.371446 -1.651269 -0.440136 0.910578 0.495652 6.486298 2.057216 -0.978342 -0.017852 1.707985 1.521012 0.800842 -0.122855 1.629255 0.152568 3.681068 0.505519 -0.953088 0.081555 -0.599094 -0.766660 -1.050385 3.744125 3.399240 0.407914 -1.451858 -0.739972 0.144419 -0.024367 -1.251111 2.457715 1.799374 3.624054 1.681356 -0.709448 1.166234 -4.037778 1.065759 -4.378161 -3.278193 -2.198108 1.371047 2.028145 0.956768 -2.275499 4.945019 -0.827217 1.187193 1.383064 5.508774 -2.436888 -0.443119 -2.082190 -2.407648 0.618343 -0.794721 0.467327 -0.919631 -1.110312 -2.921005 -2.660844 1.167343 -0.050398 -2.181881 1.144185 -0.382514 2.398723 -2.493242 -0.360954 -3.097332 0.477407 0.253693 -5.449131 -2.952967 -0.673655 0.276433 0.777121 -1.624620 -3.384344 1.248183 2.024436 -1.911568 -1.003311 -2.399790 4.035323 2.607669 -0.242521 0.527846 0.231448 2.762245 2.719759 2.028198 -1.170805 -0.174883 0.132087 -0.684952 -0.828554 -1.127820 0.607759 -0.468102 -1.567124 -0.189036 2.465451 -1.863615 0.456733 -1.817927 -2.272854 1.161851 11.590208 -2.196263 2.590351 0.118374 -4.245922 2.695662 0.022110 -2.739135 -0.332407 1.840932 4.085095 -4.762381 -1.824301 2.835211 4.684850 1.556574 -2.905925 1.542252 0.300918 -1.267288 -1.457236 2.525821 -0.082413 0.245841 -1.822481 -1.230994 2.352405 6.693699 -1.306975 -6.375102 0.674974 1.204862 1.134554 -0.750975 0.258044 -0.959807 -0.008480 1.651363 -0.724024 2.859977 3.810821 -8.091870 3.229121 0.339483 -3.298612 4.113711 -0.466997 -1.095991 -0.583188 1.122991 3.879859 3.085211 0.945045 -0.949809 -1.942698 -3.365051 -0.429706 0.849395 1.668567 -2.788492 3.018501 0.740707 -3.739011 -2.275449 -3.368893 -0.800492 -1.164706 -3.517322 1.259771 -0.503836 -7.145678 5.033500 1.477146 -0.339804 -0.539870 -2.259341 1.130282 -3.058043 -4.193393 0.958116 -1.255326 -1.966133 0.242950 -1.861089 1.322389 1.555709 2.129104 -3.821291 -4.561602 2.928418 0.402890 3.556381 2.372885 1.687738 2.910743 2.338363 -1.326167 -1.709070 -3.065630 4.013220 0.774917 -2.132228 -0.912948 -2.543003 2.032789 4.013489 -1.456535 -0.680580 -3.721968 2.258886 -2.022966 -0.144155 1.217561 -0.770214 -2.620481 -0.381195 1.987190 -0.612074 -1.218341 -3.222759 -1.045438 -2.365383 -2.715397 0.615135 -2.413188 -0.414691 3.013088 -1.957738 -2.370630 1.065093 -0.439507 -0.908572 0.536639 2.838723 2.913455 -2.480123 2.379293 -3.476583 2.998009 -4.459030 -3.429102 0.725959 -2.368763 -1.173435 -1.812998 -0.532665 1.253425 0.035354 0.062881 -0.585595 0.581716 +PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -1.846528 -1.781678 -0.728485 -2.676665 1.406555 1.959053 0.982327 -2.271056 -3.520578 -1.962799 1.633524 -5.010703 -2.542052 4.107357 -1.552513 2.788339 4.997468 0.279970 -1.607100 -1.751531 3.360796 -0.418598 5.640632 6.094878 -3.873261 -0.215796 0.031647 2.036231 1.723234 -0.349548 2.359661 -2.827819 1.244392 -3.095357 0.613991 -1.676208 -0.629521 1.874150 2.872642 -6.230833 -0.462099 2.223302 0.681390 0.006172 0.167081 1.286588 2.998416 3.385877 -0.549134 3.249581 2.949883 0.124380 1.860947 0.143805 0.589181 -0.479828 -0.105730 -1.129043 -0.555241 -0.414441 -1.005532 -1.108054 0.429701 4.284463 5.117842 -0.250969 -1.880851 1.301576 1.047174 1.288750 1.580888 3.286656 0.000735 1.045787 2.911984 -4.615359 -0.162147 -7.606348 1.057847 -7.597307 -2.795632 0.285075 3.386444 1.874687 1.855040 -0.321566 5.981978 -0.578962 -2.246269 4.851328 4.613984 -2.703959 -1.012823 -1.232150 -1.936316 0.632152 -2.181996 1.203899 0.797600 2.577391 -3.517482 -2.291602 0.396415 0.349622 -2.299570 -2.562464 -0.310257 2.897230 -3.648217 -2.326253 -1.811238 2.859692 0.093416 -6.121624 -1.948470 -2.981818 0.941252 0.803708 -2.847280 -2.465921 1.476144 0.381405 -0.867091 -1.362845 -1.324283 2.246702 2.511973 1.129295 -0.445707 2.566202 1.033955 5.679771 0.626130 -2.298029 0.095407 1.234176 -0.640293 2.021756 -2.079578 -1.108419 2.514266 -3.092071 -0.232021 1.311447 -2.139198 -2.088760 1.615907 -0.712520 -0.232514 11.811335 -0.482923 4.229430 4.163145 -3.056236 1.339740 -1.580617 1.102957 1.793052 2.627830 1.752731 -4.713834 -3.347698 3.467174 5.700718 2.073709 -3.612445 -0.947349 1.878080 1.128631 -0.976015 1.938750 0.632646 0.149928 -2.161995 -0.331370 2.512841 6.633689 -1.972897 0.557753 0.488553 3.177956 -0.472675 -3.751632 -0.522529 -3.331419 -0.111636 1.714904 1.411411 1.880538 4.551041 -6.114120 3.474859 -0.095708 1.140486 2.300133 1.543292 -3.360515 -5.492343 -0.861062 1.486624 3.108618 -0.607836 0.973157 0.998045 -4.864136 0.319730 0.915443 0.901589 -2.732713 4.018629 -0.517194 -1.356541 -1.721166 1.040605 -1.721778 -1.390315 -0.982393 3.220821 1.672958 -4.022015 3.140641 0.228073 -1.983624 -0.004965 -0.888030 4.253535 -3.744268 -3.680024 2.478101 -2.067991 -2.946418 -1.580596 -1.066145 1.473266 1.232460 0.356399 -3.206661 -3.159143 4.380911 -1.429271 4.686900 2.143021 -1.119532 2.866163 -1.609628 -2.009755 -2.292732 -2.556133 0.291778 0.185677 -2.563287 -2.220967 -0.787814 2.992841 3.489966 -0.203623 -2.809007 0.337789 4.175562 -3.678893 -0.868469 1.271501 1.766394 -2.577150 2.208851 1.954289 -3.603214 1.166698 -3.337007 0.032869 -2.289117 -2.189713 3.345882 -1.120230 1.469673 0.061239 -0.432940 0.225808 1.825728 2.126914 -0.037085 1.089114 5.305528 3.553350 -0.770562 -0.764735 -5.217907 2.308413 -4.430109 -3.880522 0.304713 1.086013 -2.312134 -0.840043 -0.251590 3.498288 3.113357 -2.175319 -2.671013 1.869526 +PE-benchmarks/naive-algorithm.cpp__main = 0.173122 0.437486 0.526550 -0.069031 0.440129 0.045907 0.184808 0.612930 -0.404775 -0.593301 -0.180539 -0.752975 -0.921753 0.536001 0.049345 -0.338065 0.870407 0.259158 0.093275 -0.135482 -0.280910 -0.197252 0.631945 0.723923 -0.559464 0.378438 -0.229680 0.128182 -0.351116 0.861969 -0.103774 -1.037642 0.103733 0.550553 0.433546 -0.178804 -0.318359 -0.319086 -0.707084 -1.284471 -0.071421 1.078787 0.086560 -0.051476 0.342908 0.530302 1.088041 0.269603 -0.032506 0.417723 -0.025495 -0.020090 0.413387 0.040772 0.319336 -0.094552 0.318518 -0.456816 -0.674305 0.379989 -0.136431 -0.865756 -0.482974 0.346269 0.484930 -0.114927 -0.307967 -0.498078 -0.231314 0.144682 -0.035471 0.312752 0.660949 0.208411 0.375963 0.661637 -0.067430 -0.179750 0.135040 -1.628589 -0.759410 -0.526560 1.237007 0.924899 -0.270266 -0.727170 0.789156 -0.230871 0.347003 0.242958 0.906838 -0.177081 -0.278873 -0.296487 0.005717 0.318771 -0.175888 -0.247933 0.126266 -0.148855 -0.545037 -0.085363 0.405541 -0.331180 -0.313390 0.503346 -0.161507 0.535604 -0.914667 0.134825 -1.035235 0.057075 0.504381 -0.678180 -0.134083 0.404206 -0.269577 0.615187 -0.351585 0.102217 0.392399 -0.087055 -0.330448 0.219842 -0.993612 0.899463 -0.166458 -0.093309 0.368428 0.444730 0.396425 0.093981 0.416759 -0.097765 -0.020780 0.310746 0.051150 -0.056808 -0.025282 -0.136796 -0.172825 -0.338871 0.085450 -0.241441 -0.450925 -0.095986 -1.357063 -0.204657 0.209373 0.627294 -0.322292 0.396021 -0.064178 -0.479388 0.650765 0.014080 -0.394190 -0.138528 0.548973 0.579655 0.266237 -0.167031 0.253745 0.795488 0.307508 -0.285389 0.463437 0.000172 0.063951 -0.099615 0.649190 0.103817 0.445886 -0.346861 -0.085855 0.101739 0.965181 -0.056997 -1.047418 -0.082082 0.053122 0.432771 0.017029 0.243088 0.236203 -0.103875 0.056396 -0.161525 0.191356 0.593320 -1.194766 0.727614 -0.021095 -0.414181 0.562644 -0.175884 -0.014925 -0.517065 -0.058320 0.517361 0.886291 0.435223 -0.238361 -0.333693 -0.515483 -0.129158 0.084612 0.345220 -0.344793 0.538482 -0.188043 -0.443838 -0.223652 -1.028689 -0.039387 0.074774 -0.633312 0.124511 0.689780 -1.237813 0.599274 0.068832 -0.251400 -0.326046 0.116411 -0.003056 -0.448099 -0.691383 -0.107316 -0.497757 -1.257699 -0.158041 -0.483163 0.040544 0.025210 -0.173321 -0.051572 -0.487311 1.053929 0.205859 0.594770 0.471686 0.026167 0.818995 1.264112 -0.553211 0.280625 -0.581985 0.674526 -0.803449 0.135136 0.503824 -0.526252 0.139981 0.791758 0.071406 -0.079082 -0.672941 0.550969 -0.057539 -0.277019 0.519327 -0.659767 0.235096 0.592995 0.626045 -0.353594 -0.224066 -0.747431 -0.034432 -0.112188 -0.189638 0.037868 -0.742938 -0.206708 0.519430 -0.348213 -0.673727 0.102940 -0.259510 -0.527966 -0.254732 0.764143 0.467603 -0.663433 1.013583 -0.389937 0.475025 -0.598074 -0.204814 -0.302001 -0.004148 -0.212042 -0.152700 -0.041765 -0.143542 0.035187 -0.355306 -0.498056 0.247066 +PE-benchmarks/matrix-chain-multiplication.cpp__MatrixChainOrder(int*, int) = -4.942370 -4.748821 -2.910208 -6.794467 4.748354 9.387884 2.818072 -9.173463 -8.693225 -0.521495 4.857913 -13.551734 -5.074999 10.247911 -4.246904 8.849453 11.690115 -0.487169 -6.025145 -3.373957 7.671780 2.703100 15.216259 15.484062 -8.299386 -0.419806 -1.243214 3.902977 2.559427 -2.371202 3.373483 -4.731441 3.628875 -9.214189 -1.689243 -1.847243 -2.511473 3.198998 10.063220 -14.130288 -1.042422 2.561572 0.532370 0.107006 -0.070778 3.045518 7.512484 8.375222 1.858564 7.377593 5.680376 -0.709380 5.019429 0.410416 2.912604 -0.572357 1.886877 -1.395858 -0.886757 -3.206130 -2.708565 1.050899 0.295733 10.753091 11.835438 1.168984 -5.656946 3.778476 3.643694 2.660767 3.283618 8.667285 -2.190790 4.856774 4.963751 -11.183048 2.119156 -13.294597 1.942695 -10.969450 -6.515676 2.836907 6.045474 3.558740 6.399201 0.139867 15.039962 -0.637354 -7.158754 9.839472 11.475562 -8.858477 -2.250770 -0.711418 -4.301389 -0.708493 -3.719469 5.226912 2.508021 6.554498 -9.289497 -4.091189 -0.006041 1.513189 -5.518459 -5.295931 0.539905 6.641499 -6.313515 -5.795140 -1.008191 7.689147 -1.366474 -16.293262 -6.890855 -6.745107 2.324608 1.164080 -7.966885 -8.289919 4.083608 1.207302 -2.049795 -3.821841 -0.953752 4.234988 7.949600 2.835251 -1.704091 7.061981 3.096430 16.599460 -0.521430 -5.559289 1.691371 1.621167 -0.342247 6.275199 -2.913356 -2.030856 1.307576 -9.211156 2.552945 5.543704 -4.917010 -2.625059 2.095743 1.314175 -2.161503 31.042700 -2.323467 12.514907 10.714872 -8.560874 1.811665 -6.226625 3.146535 3.563409 4.719291 3.620602 -13.985375 -8.398714 10.058112 14.887688 5.031138 -10.382431 0.720652 4.988959 1.176608 -3.848877 5.209471 1.627691 0.471688 -3.910370 -0.944736 7.437468 18.510457 -6.053534 0.457190 2.444590 4.479394 1.060906 -7.464373 -2.297716 -7.041046 -0.130430 5.622987 4.784774 4.515828 10.913143 -11.356557 8.435022 -0.051251 1.648026 8.836874 4.999516 -9.614786 -6.941209 -3.850217 3.811517 6.608380 -2.091158 -1.906284 2.078315 -11.704600 0.626528 3.739779 0.811040 -6.656957 9.916928 0.712095 -3.953464 -3.112293 2.888758 -2.695320 -3.007048 -3.426190 8.698762 -0.912474 -10.266249 7.676449 3.280992 -5.449948 0.402597 -3.991570 10.093946 -7.374437 -8.198473 6.350542 -4.940866 -4.971704 -2.512608 -2.414801 2.671370 5.211203 5.147203 -10.698212 -6.566665 10.182727 -3.502334 12.507667 5.290544 -2.575287 5.038784 -7.362034 -6.197265 -5.191136 -8.868389 1.824799 3.747995 -7.848436 -3.278993 -2.267582 8.256030 6.748906 -0.131035 -8.347414 -0.044811 9.165146 -8.340140 -0.681041 2.568116 4.348548 -9.030304 3.009657 4.434354 -6.982767 4.462490 -5.874298 -2.359056 -8.352247 -5.740087 8.331750 -0.571575 4.361473 -1.641139 -1.074930 2.222057 4.393105 4.362880 1.945330 5.095105 12.450579 5.871330 -0.507558 -2.844705 -13.353455 7.559419 -10.057291 -10.322850 3.389749 2.095498 -6.093880 -3.398143 -1.159745 9.134010 7.006100 -8.391813 -6.247322 5.158628 +PE-benchmarks/matrix-chain-multiplication.cpp__main = 0.053264 0.300216 0.601662 -0.243566 0.417961 -0.140059 0.221820 0.450986 -0.505911 -0.870183 0.108183 -1.175802 -1.203986 0.703428 -0.133557 -0.372547 0.970889 0.076815 -0.010749 -0.356820 -0.102851 -0.253745 0.929008 1.016092 -0.902218 0.268909 -0.151258 0.382257 0.096103 0.493837 0.256242 -0.963595 0.153172 0.514560 0.545345 -0.041610 -0.209636 -0.368719 -0.688066 -1.394432 -0.146515 1.091935 0.103382 0.002572 0.311318 1.060632 1.183091 0.505956 -0.262671 0.522941 0.389685 -0.183781 0.451062 0.019067 0.149716 -0.697208 0.389689 -0.344428 -0.699217 0.320817 -0.085814 -1.091532 -0.491803 0.661561 0.868726 -0.156006 -0.295433 -0.372577 -0.068931 0.302522 0.083110 0.469457 0.793974 0.363770 0.681876 0.456758 -0.045875 -0.914277 0.121272 -2.449243 -0.898506 -0.466206 1.614669 0.802211 -0.406956 -0.697845 1.018683 0.130344 0.133588 0.636163 1.190255 -0.120167 -0.379548 -0.323098 -0.171051 0.509713 -0.437825 0.091632 0.313687 0.203971 -0.721836 0.046534 0.289954 -0.426127 -0.414523 0.461292 -0.223633 0.581091 -1.076755 0.300004 -1.035136 0.074483 0.810476 -1.154521 -0.119833 0.214632 0.111754 0.590349 -0.370796 0.362994 0.297521 -0.249259 -0.325193 0.375138 -1.366637 1.037336 0.026406 0.189648 0.354785 0.673547 0.593337 0.137838 0.394091 -0.214528 -0.126184 0.191346 -0.074918 0.185533 -0.139870 -0.139798 0.436268 -0.382336 0.226772 -0.330738 -0.495539 -0.529205 -1.124848 -0.258546 0.208886 1.058546 -0.187183 0.697108 0.227949 -0.511700 0.602026 -0.127278 -0.302947 0.062221 0.612273 0.579616 0.299982 -0.344503 0.514221 1.067504 0.364341 -0.650159 0.493540 0.334500 0.119996 -0.349415 0.701802 0.227099 0.377029 -0.373842 -0.094427 0.505952 0.937079 -0.072132 -1.091169 -0.097492 0.287150 0.536990 -0.165359 0.279022 0.423857 -0.014742 0.138335 0.055236 0.318510 0.821920 -1.785257 0.803488 0.330682 -0.092298 0.637567 -0.128342 -0.398577 -1.128650 0.114342 0.584651 0.773713 0.475388 -0.330041 -0.181139 -0.753514 -0.078065 0.167823 0.289368 -0.405768 0.668651 -0.278558 -0.252617 -0.502501 -1.130625 -0.135637 0.314736 -0.681536 0.345617 0.635842 -1.617078 0.794301 -0.142277 -0.511943 -0.695163 -0.172671 0.181746 -0.767090 -0.829984 -0.145763 -0.874836 -1.729390 -0.618358 -0.463320 -0.081075 -0.028298 -0.132585 -0.182312 -0.543177 1.351222 -0.133953 0.738308 0.536474 0.032067 1.114922 1.234788 -0.575710 0.043989 -0.470536 0.844206 -0.839931 -0.207403 0.616166 -0.425413 0.160927 0.885762 -0.169272 -0.159521 -0.439396 0.603759 -0.265831 -0.713203 0.500305 -0.449235 0.092231 0.997043 0.610373 -0.563995 -0.033408 -1.077180 -0.296199 -0.230585 -0.447452 0.201978 -0.632207 -0.082499 0.516456 -0.287927 -0.628815 0.264992 -0.215620 -0.487452 -0.192751 1.007356 1.153719 -0.868467 0.888796 -0.859726 0.635082 -0.908584 -0.655765 -0.049306 -0.014981 -0.127053 -0.198586 -0.094520 0.011220 0.282453 -0.726840 -0.780083 0.674702 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -2.650849 -2.070267 0.054687 -4.727642 3.153202 3.655120 1.585826 -3.235921 -5.901845 -2.196078 1.562605 -5.831342 -3.153061 6.706444 -1.848446 4.854552 8.932829 1.328546 -2.284735 -3.017052 6.347527 -3.068667 8.841412 10.211943 -6.841992 0.364831 2.450949 3.453678 2.913015 1.580827 0.562636 -3.661264 1.698260 -6.492937 1.666111 -5.082043 -1.416812 2.720632 5.250499 -11.605731 -0.533865 1.379336 -0.007820 0.118334 0.144789 3.401319 5.582479 5.340980 -2.380365 5.570321 5.180148 -0.242639 2.420884 0.229711 1.379577 1.941877 1.629403 2.430151 -0.311084 -0.080205 -1.576631 -2.457545 2.210090 6.745865 8.433043 -1.050491 -2.922856 2.402929 2.071872 1.271228 2.030618 5.198537 -0.355018 0.940456 4.955077 -10.569784 0.032152 -15.511712 1.492129 -14.233771 -4.881230 -0.532827 4.180223 -0.545518 4.065196 0.265699 10.036570 -1.567371 -2.460077 6.474891 7.255528 -5.655648 -1.287450 -2.396479 -3.888762 0.868617 -2.981109 0.780207 2.919344 1.842383 -5.492044 -5.524645 2.664617 1.239824 -4.112795 -4.563792 -0.772783 5.524485 -5.938293 -5.228767 -4.001967 3.623238 -1.534655 -10.137355 -1.470653 -5.397058 3.589438 1.142210 -4.327890 -6.061103 2.239450 2.689890 -1.900590 -3.499052 0.268411 5.045042 4.626800 1.128678 -0.336258 1.963041 1.205009 9.073150 4.170795 -4.063966 -0.328924 2.740740 -2.696368 2.143619 -4.697643 -1.786607 4.595013 -5.698986 -0.391982 2.779484 -3.744393 -1.555129 7.847574 -1.295322 0.099931 22.497320 -1.146365 6.772619 5.707068 -5.801890 3.804120 -1.350779 1.085565 4.003323 5.251234 3.031119 -11.529651 -5.226268 4.481475 9.314761 3.628776 -8.015804 -4.561399 1.209053 0.820725 -0.263662 2.715785 0.321992 -0.050555 -3.542439 -0.773798 2.995686 12.425150 -4.193758 -1.878606 0.542619 4.316119 -2.989424 -9.230516 -1.167022 -7.555833 -0.242600 1.786626 1.020934 3.677995 7.480175 -13.687577 5.849723 -2.486952 -0.432915 4.910164 2.751895 -4.492590 -10.384130 -0.785929 2.652170 6.314222 -0.726174 1.184921 1.891976 -7.983207 0.346943 1.123425 1.811225 -5.134358 6.832411 -0.048020 -3.669241 -2.447907 1.757791 -2.166296 -3.783826 -0.961745 4.905125 0.580423 -9.693515 5.153009 0.205840 -3.018019 2.237310 -0.870625 6.266037 -6.003506 -6.776875 4.654060 -0.843929 -2.092839 -2.959206 -1.910722 3.885628 1.746767 0.197604 -5.543731 -8.186248 5.313940 -3.101691 7.262980 3.912235 -1.502515 6.134569 -2.690783 -3.254639 -5.817140 -2.672673 0.150075 0.407827 -3.695554 -6.401839 -2.002264 5.340517 6.734538 0.383405 -2.404487 -0.383142 7.803391 -7.252168 -0.584072 2.409752 4.558201 -4.099757 2.737134 3.581654 -6.106978 0.610192 -4.783953 -0.653901 -2.619594 -3.122891 5.962825 -2.631984 2.132173 0.452488 -0.551767 0.437397 3.554372 3.060784 0.798846 1.036711 8.368827 8.348360 -2.716188 -1.733937 -7.405136 4.012125 -7.599134 -5.705796 -0.281580 2.226187 -3.968853 -0.990739 0.610279 6.005036 3.903284 -2.828864 -2.639471 1.230589 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__findMaxSum(int (*) [5]) = -1.608829 -0.572288 0.718866 -3.160436 2.456527 2.333913 1.363235 -0.865369 -4.397755 -4.070499 1.645416 -7.600504 -5.884130 5.689014 -1.830718 1.465333 7.399073 0.199927 -1.545334 -2.454409 3.307413 -1.187419 7.802717 8.732822 -6.592897 0.442657 0.568656 2.935411 2.115765 1.006652 2.753555 -5.362983 1.310933 -1.827132 2.517786 -1.971499 -1.220433 0.399303 0.945664 -10.057784 -1.147835 4.916740 0.269026 0.211611 1.066636 4.624987 6.417405 4.630275 -2.093953 4.343031 4.210979 -0.377523 2.863903 -0.131089 0.452883 -2.377010 0.697711 -0.294034 -1.930763 0.491938 -1.075497 -3.849074 -0.586103 6.159450 7.514422 -0.897129 -2.613114 0.367304 1.063321 1.905967 1.179519 4.793142 2.408443 2.269737 5.051693 -3.534780 -0.565057 -10.718023 1.744380 -14.262737 -5.005465 -1.386389 7.061058 3.385752 0.797420 -2.622676 8.927835 -0.188643 -1.553755 6.916612 7.757487 -2.948122 -1.724361 -2.610872 -2.820164 2.021870 -3.308523 1.445218 2.071044 2.499288 -5.311333 -2.649076 0.585939 -0.736978 -3.552347 -1.551387 -1.300291 4.340929 -6.135591 -1.401366 -4.887499 2.639967 2.082838 -9.717902 -2.567400 -2.505527 1.118829 2.280315 -3.567806 -1.727606 2.005529 0.123587 -1.672999 -0.592530 -4.016347 5.474217 3.001024 1.380463 0.580097 3.976106 2.786422 5.596509 2.412112 -2.690442 -0.624571 1.882478 -1.248988 2.050906 -2.778172 -1.003665 4.323763 -4.221368 0.500958 0.698603 -3.305918 -3.183742 -0.381705 -2.096680 0.507624 16.321539 -1.128222 6.070248 4.362707 -4.625546 3.612984 -1.472817 -0.103278 2.275178 4.329285 3.716193 -4.969627 -3.880011 4.713598 8.691853 2.806594 -5.759557 0.178006 2.807051 1.088087 -2.235372 3.857252 1.126510 0.889584 -2.856227 -0.596443 4.143926 9.019693 -2.419733 -3.039774 -0.027367 4.580259 0.687388 -4.419730 0.430903 -2.946489 -0.289817 2.496847 1.320964 3.011578 6.555612 -11.347322 5.368539 0.902136 0.566729 3.945535 1.167529 -4.174471 -8.565996 0.186063 3.223490 4.854498 0.742992 -0.331810 0.254279 -6.878797 0.240676 1.672535 1.847842 -4.072600 6.060032 -1.333009 -2.001628 -3.299732 -2.043648 -2.271175 -0.997520 -2.978258 3.967350 2.292627 -8.628370 5.426942 -0.297240 -3.444951 -1.901782 -1.602007 4.292367 -5.970669 -6.205763 2.174156 -3.874500 -7.101412 -3.258754 -2.598797 1.483193 1.699936 0.033922 -4.050167 -5.962793 7.560312 -1.897600 6.613294 3.635335 -0.693186 6.355818 1.625101 -3.475783 -2.970407 -3.995882 3.119631 -1.476316 -3.284750 -1.645747 -1.930700 3.320027 6.018064 -1.011560 -2.797927 -1.292789 5.693968 -4.146694 -2.621156 2.167462 0.733332 -2.354122 4.317408 3.217602 -4.830098 0.887225 -6.421055 -0.598628 -2.807409 -3.499346 3.736286 -3.275314 1.063662 1.791196 -1.307366 -1.378505 2.548895 1.594711 -1.117558 0.530860 7.650138 6.687485 -3.613333 1.515536 -7.618239 4.407483 -7.081683 -5.740372 0.035018 0.683823 -1.971539 -1.514888 -0.263443 3.274960 3.667687 -4.185078 -4.406119 3.457354 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 0.073829 0.209346 0.349770 -0.078303 0.287939 -0.058664 0.139744 0.376807 -0.330383 -0.408999 -0.105574 -0.475727 -0.560609 0.403663 -0.004747 -0.152399 0.641313 0.257403 0.057893 -0.136372 -0.129129 -0.257630 0.466034 0.528645 -0.384815 0.220343 -0.145069 0.146054 -0.189342 0.602626 -0.079139 -0.641611 0.109916 0.280312 0.298334 -0.231455 -0.161922 -0.104147 -0.444721 -0.900273 -0.016213 0.645649 0.154926 -0.034911 0.193554 0.400980 0.662901 0.220059 -0.018597 0.329566 0.027931 -0.014121 0.267384 0.064608 0.221710 0.001055 0.234397 -0.333219 -0.475974 0.256348 -0.103356 -0.656807 -0.256567 0.247879 0.384705 -0.083267 -0.156639 -0.300120 -0.166170 0.121751 0.060569 0.167756 0.364606 0.065129 0.243220 0.287897 -0.021932 -0.257287 0.040223 -1.255752 -0.489349 -0.357889 0.837534 0.565407 -0.146156 -0.379483 0.530657 -0.133689 0.220642 0.150902 0.600571 -0.168836 -0.223583 -0.198023 -0.000783 0.230066 -0.160203 -0.201184 0.143303 -0.039493 -0.366134 -0.078971 0.340974 -0.177550 -0.196891 0.290584 -0.107159 0.401179 -0.696604 0.006836 -0.702769 0.031931 0.294940 -0.466112 0.054993 0.190272 -0.089470 0.399742 -0.232712 0.038674 0.265818 -0.003278 -0.210070 0.133169 -0.698839 0.600306 -0.152283 -0.063105 0.231338 0.264695 0.188506 0.111199 0.313710 -0.117971 -0.028382 0.245348 -0.050391 -0.032843 -0.097883 -0.159964 -0.042466 -0.300330 0.057465 -0.174451 -0.329583 -0.086941 -0.754443 -0.090967 0.183686 0.400609 -0.185381 0.276464 -0.002315 -0.334481 0.429617 0.009951 -0.187080 -0.044440 0.407603 0.304550 0.162145 -0.171919 0.131653 0.523492 0.248400 -0.208309 0.168533 -0.073356 0.075809 0.021034 0.366509 0.095065 0.226660 -0.263140 -0.058320 0.009411 0.676145 -0.039379 -0.580632 -0.042742 0.005554 0.170013 -0.126869 0.121484 0.096089 -0.043955 -0.053770 -0.104772 0.111107 0.441912 -0.882149 0.528049 -0.087844 -0.228322 0.374722 -0.127283 -0.018626 -0.521175 -0.064293 0.328824 0.653446 0.252933 -0.103790 -0.125799 -0.370046 -0.087141 0.010702 0.262358 -0.222179 0.334994 -0.097005 -0.326358 -0.165223 -0.609178 -0.000864 0.016330 -0.342527 0.105006 0.509098 -0.874622 0.389762 -0.015057 -0.185859 -0.132591 0.152848 0.020586 -0.343028 -0.470421 -0.047598 -0.288884 -0.791253 -0.179425 -0.272859 0.088190 -0.077898 -0.186627 0.009019 -0.321508 0.661143 0.068058 0.367028 0.297862 -0.009064 0.565798 0.815164 -0.358346 0.137938 -0.273578 0.298459 -0.628197 0.108816 0.351143 -0.313040 0.147607 0.574578 0.110214 -0.034400 -0.314347 0.459783 -0.070589 -0.222746 0.397589 -0.389945 0.170545 0.444212 0.458200 -0.355874 -0.191924 -0.474056 -0.025169 -0.005257 -0.128069 0.083753 -0.498073 -0.086268 0.299121 -0.164723 -0.436254 0.109395 -0.131130 -0.323666 -0.181948 0.593096 0.382026 -0.418833 0.637575 -0.256395 0.265716 -0.434865 -0.127212 -0.233810 0.109335 -0.182976 -0.015852 -0.004455 -0.022484 0.029066 -0.207411 -0.317313 0.114346 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -1.467597 -1.153386 -0.156890 -2.054097 1.392157 2.060084 0.899192 -1.960831 -2.835767 -1.305047 0.933851 -3.727390 -1.804927 3.433043 -1.029904 2.761833 4.288854 0.536845 -1.392154 -1.107983 2.734338 -0.774253 4.564376 4.888485 -2.797980 0.050024 0.118588 1.515067 0.806210 0.525932 0.868684 -2.094442 1.077268 -2.956136 0.391551 -1.656606 -0.761904 1.494187 2.555411 -5.304479 -0.244324 1.537909 0.584697 -0.156511 0.068524 0.320744 2.697289 2.656444 0.044144 2.444669 1.819851 -0.152527 1.644206 0.266006 1.023039 0.733430 0.493760 -0.896379 -0.623172 -0.296518 -1.031848 -1.023922 0.550530 3.276252 3.888289 -0.111042 -1.590216 1.105545 0.710193 0.839920 1.067581 2.591551 -0.462525 0.772394 1.942767 -4.455095 0.315534 -5.517789 0.622164 -5.028392 -2.499302 0.111558 2.039308 1.737408 2.185956 -0.099331 4.850416 -1.003096 -1.591060 2.823419 3.848774 -2.932030 -0.784238 -0.978123 -1.237910 0.098323 -1.538186 0.465894 0.585601 1.392955 -2.884013 -2.070911 1.136654 0.668797 -1.828406 -1.910787 -0.154694 2.789073 -2.838215 -2.678707 -1.642537 2.010688 -0.668498 -4.874017 -0.807661 -2.132281 0.457680 0.892524 -2.463612 -3.034388 1.555162 0.962346 -0.720438 -1.763669 -0.798414 2.200250 1.928319 0.536416 -0.245787 1.800206 0.647691 4.903650 1.270544 -1.743774 0.266184 1.071957 -0.801090 1.443493 -1.479774 -1.130980 0.816375 -2.893729 -0.675206 1.644814 -1.853302 -0.675722 1.250072 -0.176560 -0.143470 9.732481 -0.769648 3.358788 3.058455 -2.863091 1.794554 -1.207476 0.633473 1.145250 2.129344 1.634275 -5.083287 -2.709117 2.745621 4.655403 1.811655 -3.010534 -1.241896 0.777725 0.808297 -0.431286 1.594693 0.532703 0.403861 -1.994090 -0.335570 1.601417 6.199195 -2.116415 -0.160768 0.714044 1.267396 -0.560230 -4.016828 -0.712270 -3.160835 -0.266935 0.921184 0.832555 1.288380 3.717482 -4.413724 3.088059 -0.903750 -0.063511 2.873885 1.048150 -2.387446 -4.047281 -1.034362 1.453870 2.902202 -0.558628 0.415073 0.523892 -3.934379 0.133978 0.553138 0.852178 -2.236315 3.292934 -0.279205 -1.698166 -1.203083 0.762713 -1.044705 -1.832450 -0.736975 2.512815 1.312872 -3.053110 2.680979 0.595815 -1.402669 0.941507 -0.373916 3.365995 -2.627316 -3.097498 2.254176 -1.212413 -1.632260 -1.019010 -0.868689 1.429303 1.153860 -0.100568 -2.607774 -2.798985 2.994546 -0.968707 3.879979 1.775901 -0.713267 2.201390 -0.370362 -1.870196 -1.759865 -2.046414 -0.371687 0.131537 -1.891498 -2.865601 -0.900951 2.837879 3.005641 0.226212 -1.847045 -0.289368 3.519741 -3.391582 -0.294263 1.373499 1.123155 -2.289310 1.032716 1.901113 -2.711936 0.557628 -2.219708 -0.021843 -1.940754 -1.700468 2.515700 -1.097476 1.005569 0.056512 -0.530714 0.189440 1.322597 1.688048 0.135821 0.680564 4.285902 2.478524 -0.603059 -0.667647 -3.805109 1.911012 -3.541558 -2.757745 0.218569 1.502014 -2.193006 -0.734506 0.357056 2.818234 2.114147 -1.741837 -1.687391 0.661514 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycleUtil(bool (*) [5], int*, int) = -1.906029 -1.286298 -0.045839 -3.264634 2.010892 3.071486 1.026276 -2.756794 -3.953760 -1.939157 1.328111 -5.194214 -2.553076 4.657655 -1.639755 3.178118 5.855502 0.340795 -2.006229 -1.767482 3.872346 -0.473539 6.274784 6.874035 -4.330730 0.100557 0.558732 2.110441 1.610496 0.453122 1.535199 -3.054956 1.039741 -3.568309 0.674159 -2.143622 -1.107599 1.674358 3.402721 -7.416621 -0.394915 1.844466 0.317557 -0.095922 0.267034 0.879711 4.061614 3.661100 -0.501921 3.192861 3.166786 0.521147 1.938003 0.082817 0.948913 0.439338 0.865993 -0.818183 -0.300009 -0.443592 -1.202963 -0.812342 0.792839 4.922776 5.473144 -0.096450 -2.268780 1.363303 1.440943 1.202947 1.274657 3.778961 -0.452873 1.542729 2.761901 -6.064252 0.263241 -8.566695 1.361795 -7.271079 -3.389258 0.146796 2.907197 2.289187 2.502528 -0.024398 6.891730 -1.209102 -2.112947 4.687463 5.309407 -3.469962 -0.843026 -1.440655 -2.501525 0.337452 -1.961173 1.047202 0.193590 2.383298 -3.926355 -2.964138 0.906381 0.618170 -2.708690 -2.514344 -0.253666 3.599998 -3.930189 -2.926241 -1.924955 3.300541 -0.480500 -7.056320 -1.928620 -3.477945 1.181927 0.826865 -3.319028 -3.847964 1.839616 1.197492 -1.262200 -1.900767 -1.262798 2.883826 3.068380 0.858710 -0.614531 2.178854 1.257014 6.333555 1.480091 -2.618574 0.269078 1.370715 -0.820759 1.702300 -2.269562 -1.033097 1.542541 -3.699969 -0.254897 2.303143 -2.444077 -1.638088 1.756820 -0.937935 -0.216254 14.364337 -1.126959 4.829411 4.200568 -3.950702 2.014247 -1.497257 0.641430 1.812443 2.865594 2.527633 -6.765574 -3.659106 3.906580 6.583930 2.385361 -4.156409 -1.387933 1.609222 0.490488 -0.759461 2.420705 0.420874 0.123781 -2.544520 -0.667958 2.650156 8.362034 -2.277482 -0.390134 0.659748 2.603923 -0.661713 -4.656125 -0.664310 -4.109181 -0.133771 2.231894 1.111733 2.332001 5.139011 -7.257875 4.104134 -0.664289 0.180244 3.291419 1.623425 -3.365963 -5.216769 -1.002230 2.081681 3.852547 -0.855918 0.472463 0.701153 -5.468634 0.215133 1.093710 1.129401 -3.463869 4.620057 0.003294 -2.334523 -1.764492 1.064670 -1.668849 -2.050884 -1.403582 3.449092 0.817887 -4.859677 3.936875 0.647718 -1.813245 0.707591 -1.229817 4.711170 -3.706139 -4.171751 3.016619 -1.579675 -2.285588 -1.402797 -1.418640 2.132197 1.738301 0.879484 -4.056867 -4.249357 4.032690 -1.460323 5.417055 2.584596 -0.888281 3.163563 -1.305080 -2.019515 -2.869280 -2.945648 0.501423 0.840690 -2.873820 -3.542488 -1.345210 3.583657 4.094502 -0.304367 -2.840862 -0.374410 4.721267 -4.337735 -0.431415 1.311777 1.578385 -3.390735 1.634837 2.227209 -3.574285 0.941440 -3.500387 0.122579 -2.780814 -2.435133 3.631321 -1.266634 1.433723 0.266565 -0.663575 0.109729 2.029734 2.216273 0.221084 1.261600 5.697517 3.704370 -0.800107 -0.722446 -5.561196 2.947775 -5.061461 -4.210487 0.287414 1.232007 -2.671077 -1.224850 -0.408821 4.052708 2.915675 -1.973550 -2.252403 1.613530 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycle(bool (*) [5]) = -0.688001 -0.185561 0.498209 -1.453575 1.032287 0.744404 0.531748 -0.371770 -1.938447 -1.454258 0.237194 -2.468090 -1.770418 2.358658 -0.623722 0.885089 3.298031 0.619688 -0.661156 -0.945961 1.658604 -1.192884 2.916876 3.438264 -2.408971 0.221882 0.394375 1.227011 0.679047 0.979546 0.529489 -1.786732 0.337634 -1.123120 1.212432 -1.515998 -0.467444 0.617784 0.535816 -4.333368 -0.205941 1.511002 0.698426 -0.065292 0.286949 1.316792 2.481267 1.794276 -0.744785 1.415570 1.568102 0.090047 1.068784 0.079293 0.388893 0.194519 0.614061 -0.067010 -0.678332 0.309656 -0.544257 -1.464424 0.412641 2.376720 2.902077 -0.227437 -0.918440 0.249757 0.554645 0.684068 0.510192 1.663097 0.349844 0.497424 1.596810 -2.514465 0.000839 -4.753257 0.729763 -5.458859 -1.929129 -0.732183 2.178001 1.277656 0.695958 -0.521880 3.486245 -0.555370 -0.299497 2.241808 2.919517 -1.452157 -0.624477 -1.302448 -1.298981 0.662863 -1.084215 -0.039436 0.806531 0.876087 -1.978782 -1.448792 0.801228 0.059473 -1.359494 -0.700835 -0.395440 2.055674 -2.363131 -1.184811 -1.937155 1.125133 0.217668 -3.584153 -0.043501 -1.490913 0.234073 0.783899 -1.432304 -1.448130 0.888314 0.649884 -0.836465 -0.513181 -1.686757 2.309032 0.921828 0.095908 0.072587 0.999547 0.633404 2.173476 1.354250 -1.319345 -0.165660 1.039933 -0.921300 0.324118 -1.542454 -0.711157 1.510995 -1.940623 -0.300852 0.478878 -1.419001 -0.805204 0.512896 -0.813168 0.456444 6.538405 -0.612545 2.167648 1.480651 -1.991721 2.033062 -0.112100 -0.053903 0.892255 1.924117 1.384735 -2.829047 -1.747926 1.499370 3.287700 1.289652 -1.961383 -0.999609 0.348228 0.169272 -0.123854 1.265372 0.305564 -0.017990 -1.296361 -0.376380 1.021645 4.029233 -0.929152 -0.865302 0.077948 1.383820 -0.489300 -2.692782 -0.084638 -2.042581 -0.133588 0.372991 0.189578 1.259177 2.698184 -4.627245 2.385257 -0.432606 -0.141783 1.765845 0.180796 -1.204859 -3.910893 -0.116628 1.356596 2.457682 -0.115917 -0.091650 0.180633 -2.708707 0.019716 0.355461 1.022602 -1.730319 2.265759 -0.423673 -1.224645 -1.102626 -0.323785 -0.881055 -0.995295 -0.808242 1.430299 0.996923 -2.944415 2.216650 -0.156992 -0.921152 0.179833 -0.227300 1.546240 -2.128687 -2.386329 1.073962 -0.661276 -1.743096 -1.233936 -0.898022 1.263775 0.288162 -0.368808 -1.488231 -2.681400 2.278861 -0.878658 2.511110 1.399567 -0.244901 2.229302 1.183609 -1.158718 -1.412502 -1.113947 0.120019 -0.548665 -1.014086 -1.461419 -0.842740 1.609037 2.612789 -0.063413 -0.791150 -0.343641 2.683555 -1.711420 -0.824249 1.012348 -0.258353 -0.975677 1.244194 1.453430 -2.159283 -0.193407 -2.285084 0.131363 -0.743395 -1.207162 1.529633 -1.415983 0.370714 0.607188 -0.496107 -0.446191 1.093996 0.907969 -0.288734 0.109231 3.204243 2.152497 -1.042341 0.442666 -2.578248 1.488292 -2.809531 -1.742255 -0.443321 0.880402 -1.100650 -0.299186 0.153601 1.569773 1.052452 -0.907735 -1.220397 0.585439 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -0.393209 0.190754 0.454132 -1.070800 0.655909 0.648591 0.244022 -0.248447 -1.024937 -1.341799 0.318384 -2.140350 -1.765212 1.472237 -0.718917 -0.007722 1.980687 -0.067007 -0.374762 -0.759916 0.806272 -0.093292 2.143162 2.376552 -2.070429 0.062405 0.359842 1.046385 0.797574 0.347543 0.964717 -1.630891 0.148505 0.022101 0.934614 -0.466106 -0.189165 -0.110062 -0.172426 -2.785394 -0.356273 1.329692 0.033069 0.104842 0.368719 1.204188 1.990691 1.291164 -0.711082 0.848074 1.393391 0.433405 0.664185 -0.093275 -0.090040 -1.004441 0.364072 -0.479464 -0.393100 0.120089 -0.145133 -1.024478 -0.215965 1.934717 2.157666 -0.131492 -0.561637 -0.050844 0.311583 0.558814 0.183661 1.309239 0.641198 1.047363 1.287019 -0.787407 0.020896 -2.994120 0.647585 -3.919387 -1.326077 -0.678396 1.828265 1.329197 -0.043955 -0.673941 2.482343 0.164669 -0.149792 2.067622 2.222753 -0.546229 -0.400450 -0.894323 -1.006401 0.770263 -0.950814 0.523365 0.052506 1.019588 -1.361891 -0.664794 -0.096179 -0.309982 -1.032029 -0.169320 -0.436645 1.071582 -1.811724 -0.020247 -1.329015 0.726724 0.761347 -2.820393 -0.911673 -0.882730 0.445551 0.396774 -0.724416 -0.320180 0.356753 0.124395 -0.439384 0.153620 -1.761424 1.450940 0.917172 0.228702 0.065625 1.021549 0.906019 1.284840 0.418223 -0.735022 -0.346685 0.480714 -0.363640 0.216521 -0.873863 -0.013640 1.306601 -1.049387 0.200524 0.292416 -0.849257 -1.191979 -0.587382 -1.016342 0.416576 4.727829 -0.325090 1.529898 1.086034 -1.329150 0.751106 -0.290637 -0.245095 0.599711 1.060729 1.187763 -1.082158 -1.067085 1.224470 2.351719 0.709476 -1.201317 0.336041 0.834007 0.031151 -0.719679 1.057839 0.261815 -0.164664 -0.699485 -0.273355 1.316288 2.193609 -0.240370 -0.766363 -0.084669 1.514523 0.182816 -0.683334 0.256576 -0.501654 0.014376 0.869062 0.335836 0.984568 1.823270 -3.395554 1.446969 0.693920 0.292310 0.819740 0.039465 -1.028765 -2.204093 0.413100 1.111505 1.189260 -0.002206 -0.000145 -0.043088 -1.885444 0.051160 0.546905 0.682009 -1.215596 1.550711 -0.149150 -0.623932 -1.159982 -0.677358 -0.696118 -0.038148 -1.058467 0.986603 0.460609 -2.510577 1.766522 -0.271902 -0.860182 -0.741959 -0.802599 1.090102 -1.881003 -1.664513 0.447148 -1.049814 -2.027283 -0.852196 -0.738459 0.520625 0.307613 0.261609 -1.270702 -1.501959 1.917504 -0.506910 1.582346 0.998335 0.088366 1.681888 0.367425 -0.660281 -0.839407 -1.096301 1.115081 -0.263833 -0.979849 0.018191 -0.518905 0.775176 1.852923 -0.610892 -0.851828 -0.088788 1.463038 -0.822459 -0.944229 0.368750 -0.086724 -0.719758 1.175964 0.692080 -1.269287 0.054146 -1.991531 -0.049292 -0.643271 -1.175125 0.969016 -0.985023 0.285893 0.815878 -0.377460 -0.661087 0.838760 0.379166 -0.353491 0.278915 2.035189 1.688038 -0.847901 0.655776 -2.205888 1.167889 -2.136413 -1.679633 -0.027188 -0.190391 -0.190595 -0.386322 -0.460625 0.902580 0.955127 -0.744478 -1.096407 1.052835 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.160819 0.370153 0.536700 -0.155554 0.465699 0.005684 0.212824 0.557245 -0.496299 -0.674573 0.006717 -1.024385 -1.015686 0.602727 -0.006213 -0.334784 0.865903 0.137666 0.009538 -0.156707 -0.258939 -0.108605 0.729963 0.802752 -0.667375 0.372585 -0.343958 0.176544 -0.230524 0.719049 0.052430 -1.048962 0.116351 0.591916 0.392387 -0.018947 -0.294975 -0.364452 -0.662401 -1.272982 -0.076114 1.202019 0.119928 -0.057029 0.338671 0.649780 1.120478 0.351489 -0.090416 0.455126 0.129494 -0.109063 0.432312 0.029110 0.277483 -0.394176 0.352580 -0.472585 -0.718594 0.317303 -0.098697 -0.882820 -0.551199 0.445416 0.593704 -0.117340 -0.325633 -0.476819 -0.154577 0.204809 0.047699 0.353299 0.702769 0.263970 0.460949 0.777661 -0.044215 -0.285666 0.144704 -1.791313 -0.831254 -0.409679 1.493814 1.021596 -0.356526 -0.807392 0.835966 -0.115563 0.207242 0.383056 1.003649 -0.109463 -0.338304 -0.272209 -0.073198 0.399451 -0.257624 -0.108647 0.156419 -0.004375 -0.630533 0.067203 0.321612 -0.377780 -0.346223 0.557510 -0.140632 0.513252 -0.938161 0.250644 -0.912812 0.156663 0.691731 -0.842144 -0.226845 0.379789 -0.270188 0.604646 -0.377860 0.275150 0.345851 -0.262044 -0.364852 0.339101 -1.239601 0.928480 -0.111020 0.098096 0.379239 0.548226 0.540734 0.088172 0.256394 -0.157486 -0.001953 0.188143 0.144256 0.132811 0.009504 -0.144955 -0.058281 -0.324739 0.172038 -0.311303 -0.460625 -0.240165 -1.504775 -0.130761 0.133773 0.690530 -0.249543 0.580672 0.071758 -0.462004 0.634726 -0.049879 -0.367371 -0.099995 0.511013 0.542994 0.419422 -0.227540 0.395289 0.891778 0.327950 -0.389910 0.605576 0.211401 0.074076 -0.212981 0.700036 0.143031 0.500575 -0.371475 -0.098460 0.311316 0.941131 0.001542 -1.100628 -0.053069 0.145567 0.550292 0.089573 0.255207 0.366618 -0.043316 0.129913 -0.060479 0.259296 0.678267 -1.341015 0.749712 0.189061 -0.286214 0.617485 -0.155137 -0.229436 -0.643417 -0.048855 0.509368 0.827254 0.456048 -0.309749 -0.265344 -0.574736 -0.127186 0.135090 0.221308 -0.340520 0.563949 -0.237814 -0.319235 -0.300829 -1.141148 -0.106169 0.246473 -0.722117 0.230057 0.708799 -1.301820 0.645896 0.047743 -0.368595 -0.562699 -0.035733 0.051993 -0.526426 -0.701040 -0.155825 -0.711467 -1.519811 -0.300247 -0.469326 -0.087643 0.044012 -0.103854 -0.091183 -0.427564 1.219412 0.099659 0.668133 0.508015 -0.013658 0.823538 1.355392 -0.544946 0.268577 -0.607691 0.828198 -0.814567 -0.020755 0.659188 -0.525852 0.118178 0.730086 -0.008684 -0.184203 -0.656636 0.510855 -0.030373 -0.443354 0.516963 -0.728023 0.144562 0.742135 0.627826 -0.384179 -0.054061 -0.894328 -0.142600 -0.221905 -0.267632 0.096505 -0.573311 -0.140178 0.488140 -0.336340 -0.661828 0.134786 -0.281583 -0.564685 -0.212459 0.860399 0.589624 -0.694694 1.011897 -0.584539 0.549928 -0.678636 -0.408625 -0.140313 -0.068371 -0.257437 -0.209648 -0.088863 -0.089579 0.131470 -0.506366 -0.641691 0.515869 +PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -5.145783 -5.966212 -3.777035 -7.773867 4.021562 6.733035 2.923511 -8.354192 -9.368204 -2.210775 5.332182 -13.181184 -4.613920 10.646724 -3.969652 8.836673 12.615825 0.267757 -5.208682 -4.725418 9.074510 0.358453 15.187203 16.187678 -9.244124 -0.494747 -0.620033 4.411246 4.299363 -3.079645 5.357224 -5.292130 3.383366 -10.463133 -0.701897 -3.990218 -1.989309 4.974250 10.850016 -15.228327 -0.722798 3.203350 1.120482 0.246812 0.143516 3.672144 7.002547 8.460882 -0.752093 8.945000 7.216870 -0.777579 4.683180 0.389295 2.365773 -0.409594 0.791276 -0.337983 -0.479683 -2.755146 -2.683606 0.280695 1.397845 10.244257 11.860336 0.354528 -5.836933 4.543623 4.396801 2.659225 4.256952 8.882628 -1.809950 3.094847 6.453767 -13.540207 -0.159251 -18.913883 2.577154 -16.732306 -6.731066 3.071905 7.839143 1.909477 5.979148 0.601743 15.196856 -1.111400 -7.601274 11.782935 11.158463 -8.167513 -2.266713 -1.313561 -5.102547 0.052397 -3.860832 4.865703 3.481958 7.350148 -9.435722 -5.690796 0.782708 1.353610 -5.802102 -7.223085 -0.481762 6.961369 -8.259313 -5.919896 -1.355162 8.397849 -0.920217 -15.423600 -6.340285 -8.322367 3.532307 0.799272 -8.449833 -7.679319 3.894207 0.822780 -2.759516 -3.497247 -0.218750 4.458433 8.139156 3.302323 -1.882988 6.931112 2.191666 16.763568 -0.106621 -6.570363 1.371002 2.498804 -0.400410 5.921435 -4.554617 -2.841800 5.070003 -8.849405 2.008060 4.123209 -5.133189 -4.614093 6.711130 0.420275 -2.307447 32.186981 -1.099055 12.800196 11.911279 -7.711563 1.576439 -5.499734 4.039564 4.831573 6.356429 3.383366 -13.384935 -8.938506 9.762063 14.626669 4.776579 -10.778605 -2.270014 5.405613 2.039080 -2.636836 4.746162 0.637806 0.249404 -4.783308 -0.851839 7.187717 18.485590 -5.766523 1.985074 1.452297 7.197454 -0.634647 -9.408565 -2.081490 -9.015260 0.135444 5.505408 4.978669 5.382155 11.473434 -15.060863 8.532686 -0.358415 3.558282 6.709988 6.319902 -9.913373 -12.326839 -4.049773 2.989415 7.590940 -2.529873 0.899943 3.410469 -12.314646 0.907175 3.191191 0.406039 -7.241899 10.601639 -0.148317 -3.651812 -2.818113 3.942396 -4.152000 -3.143332 -1.891069 9.087853 0.779174 -10.981422 7.118125 1.410572 -5.430839 0.507063 -3.273652 11.627591 -8.140522 -8.501858 7.185187 -4.463493 -6.056274 -3.357344 -2.603284 3.132351 4.226026 3.594156 -9.613677 -7.612127 11.116232 -5.045740 12.946203 5.569861 -3.634413 6.115855 -9.013510 -5.238521 -6.380296 -7.168544 0.354085 2.608692 -7.742420 -5.022631 -1.790138 7.816475 6.994931 -0.160739 -8.453615 1.465823 10.433917 -9.342816 -0.201289 2.508878 6.278826 -8.388246 4.827898 4.542207 -8.793993 4.934463 -7.055342 -1.906471 -7.469633 -5.086111 9.186731 -0.536122 4.463056 -1.801851 -0.577645 2.577918 5.031553 5.336174 1.313867 4.784328 13.205237 8.036083 -1.074011 -3.718292 -13.728492 7.053321 -10.345438 -10.576681 2.090301 2.734518 -6.875371 -2.860863 -1.428315 10.428238 8.517171 -7.343495 -6.174868 5.580293 +PE-benchmarks/rabin-karp-algorithm.cpp__main = 0.140363 0.450456 0.561479 -0.089908 0.581254 0.129368 0.268641 0.605776 -0.536354 -0.679813 -0.148018 -0.923124 -1.096804 0.730088 0.067124 -0.202204 1.132528 0.294859 0.076403 -0.200355 -0.166531 -0.344345 0.897901 0.986583 -0.726543 0.444734 -0.166384 0.145427 -0.360149 0.947998 -0.191652 -1.178558 0.240552 0.346109 0.446007 -0.274209 -0.394352 -0.346025 -0.599091 -1.606299 -0.097803 1.126638 0.004657 -0.061728 0.330585 0.714483 1.328156 0.404575 -0.078716 0.625397 0.033579 -0.168363 0.493806 0.076833 0.409887 -0.035516 0.351642 -0.338170 -0.796583 0.409880 -0.199341 -1.079557 -0.513059 0.469656 0.681240 -0.176756 -0.403607 -0.407985 -0.265939 0.159077 -0.012984 0.444288 0.789013 0.208463 0.566338 0.438749 -0.135913 -0.523305 0.056346 -2.140625 -0.968159 -0.581825 1.420957 0.822083 -0.134989 -0.763029 1.048328 -0.265706 0.314896 0.338810 1.178371 -0.420106 -0.359579 -0.341863 0.014518 0.327075 -0.273179 -0.229527 0.311074 -0.270127 -0.738562 -0.246449 0.595390 -0.312093 -0.414804 0.367062 -0.187937 0.717101 -1.112675 -0.028767 -1.277092 0.020375 0.471122 -0.947161 -0.099116 0.461936 -0.109605 0.770331 -0.479889 -0.076774 0.498449 -0.008033 -0.382108 0.043958 -0.881054 1.108248 -0.074173 -0.021006 0.465431 0.544443 0.485845 0.375121 0.696338 -0.141732 -0.025932 0.349123 -0.020397 0.053218 -0.061962 -0.228969 -0.115674 -0.509289 0.107970 -0.174205 -0.578433 -0.087113 -1.152792 -0.185209 0.206683 1.048666 -0.361602 0.579054 0.032628 -0.673314 0.797938 -0.112803 -0.427902 -0.078149 0.730710 0.695967 -0.012714 -0.277205 0.396417 1.059062 0.415953 -0.625351 0.363919 -0.007396 0.150735 -0.142169 0.744980 0.162519 0.604559 -0.469925 -0.084465 0.195210 1.375233 -0.296578 -1.259921 -0.027561 0.025677 0.465900 -0.320806 0.202243 0.115928 -0.138052 0.080462 -0.151533 0.227893 0.799881 -1.548139 0.896624 -0.179154 -0.533556 0.765210 -0.056532 -0.142642 -0.763095 -0.085131 0.633162 1.081677 0.556541 -0.248963 -0.347673 -0.718942 -0.140708 0.103376 0.379087 -0.431420 0.738359 -0.242007 -0.578956 -0.303816 -1.092958 -0.029907 -0.026038 -0.643896 0.248274 0.772900 -1.644005 0.754902 0.095070 -0.382884 -0.279743 0.144210 0.177446 -0.583401 -0.944863 0.015088 -0.619736 -1.423797 -0.247415 -0.551119 0.071722 0.109656 -0.247004 -0.121582 -0.742665 1.287381 0.188819 0.811790 0.598807 0.019272 1.122628 1.286702 -0.768586 0.163115 -0.674002 0.740985 -0.925008 0.051603 0.318151 -0.618784 0.301684 0.997823 0.126039 -0.086310 -0.809444 0.731761 -0.382759 -0.304666 0.694000 -0.414241 0.166055 0.715872 0.809963 -0.490953 -0.224807 -0.853373 -0.117750 -0.209100 -0.290145 0.115103 -0.880693 -0.204624 0.573382 -0.389985 -0.678731 0.168537 -0.265018 -0.508399 -0.332424 0.968754 0.860139 -0.919996 0.994698 -0.559312 0.619258 -0.806474 -0.395514 -0.249198 0.130679 -0.333595 -0.214659 0.064640 -0.070314 0.095729 -0.584348 -0.617939 0.246440 +PE-benchmarks/mergeSort_LinkedList.cpp__MergeSort(Node**) = -0.257469 0.805083 0.479181 -0.765166 0.930803 0.647202 0.290142 0.206705 -0.683858 -1.504160 -0.268086 -1.432440 -1.948172 1.409452 -0.409878 -0.030248 2.282490 0.249389 0.110923 -0.776590 0.859779 -0.584503 2.137185 2.267285 -2.167676 0.255371 1.087251 0.951942 0.447172 0.809243 0.611810 -2.032219 0.385105 -0.176495 1.200775 -0.938503 -0.199291 -0.322287 -0.364268 -3.216818 -0.414727 0.951393 -0.327366 0.113903 0.265660 0.854650 2.374792 1.241467 -0.983132 0.899618 1.239424 0.646496 0.500721 0.058145 -0.127959 -0.308056 -0.038041 -0.406398 -0.497553 0.375943 -0.155405 -1.481784 -0.204948 1.758261 2.128026 -0.308710 -0.453876 0.212081 -0.111758 0.452756 -0.171094 1.247140 0.853048 0.885124 1.436716 -1.360294 -0.587305 -3.639646 0.348436 -4.668036 -1.615607 -1.462966 1.406211 0.817499 0.297450 -0.340183 2.547847 0.043202 0.538670 1.823146 2.404268 -0.889265 -0.386635 -1.291561 -0.696484 0.919143 -0.971761 0.211919 0.278199 0.227433 -1.336407 -1.436658 0.493933 -0.247871 -1.109390 -0.806560 -0.603382 1.399735 -1.938820 -0.493458 -2.241320 0.265562 0.266535 -2.729028 -0.565642 -0.453787 0.808421 0.705259 -0.419493 -0.923319 0.358112 0.726544 -0.405226 -0.499560 -0.774655 1.568252 0.988517 -0.182845 0.458077 0.869476 0.828308 1.643888 1.448681 -0.486564 -0.625316 0.722253 -0.585511 -0.248778 -1.120795 -0.012558 1.146310 -1.203863 0.216898 0.659786 -0.967855 -1.155733 0.148563 -1.537942 0.845948 4.743154 -0.360423 1.067581 0.727595 -1.624074 0.938046 -0.324589 -0.698398 0.638794 1.477721 1.460126 -1.401088 -0.984046 0.793541 2.268361 0.757919 -1.324949 -0.473071 0.137490 0.087804 -0.616192 0.917427 0.326717 -0.016357 -0.710290 -0.209684 1.168179 2.362588 -0.663549 -1.223060 -0.017302 1.714654 -0.109821 -1.353221 0.110714 -1.117921 -0.253190 0.860085 0.018834 0.820610 1.861067 -3.739940 1.428650 0.203439 -0.139296 0.605458 0.208253 -0.560570 -2.452756 0.831795 1.461019 1.481208 0.022543 0.534265 -0.394306 -1.899591 -0.028135 0.480738 1.039661 -1.198621 1.599349 -0.337930 -1.005683 -1.271645 -0.447979 -0.612361 -0.602064 -0.710273 0.770444 0.958814 -3.138262 1.953541 -0.545746 -0.837496 -0.052667 -0.630195 1.436447 -1.959065 -2.074911 0.761045 -0.660637 -1.599734 -0.504935 -0.752780 0.988201 0.287499 0.005680 -0.904963 -1.837478 1.644681 -0.007760 1.305667 1.113941 0.489199 2.258675 -0.135722 -1.070166 -1.033147 -1.085686 1.020073 -0.465455 -0.713926 -0.861288 -0.688005 0.943575 2.541117 -0.352168 -0.623174 -0.443672 1.653020 -1.695594 -0.695979 0.745628 0.605520 -0.442907 1.035029 0.987727 -1.333560 -0.656363 -1.836264 0.456449 -0.184066 -1.297313 0.688182 -1.770731 -0.014861 1.321035 -0.584380 -0.762914 1.030190 0.335018 -0.100142 -0.278594 1.728979 2.062844 -1.482100 0.554711 -1.783640 0.935989 -2.351983 -1.524080 -0.296962 -0.031174 -0.018974 -0.256762 -0.283614 0.674486 0.476819 -0.342711 -0.901105 0.132823 +PE-benchmarks/mergeSort_LinkedList.cpp__FrontBackSplit(Node*, Node**, Node**) = -0.309053 2.056369 1.473020 -1.658607 2.098322 2.186967 0.474524 -0.420943 -1.110788 -1.522820 -0.759275 -2.157318 -2.630501 2.422870 -0.466881 0.538975 3.969043 0.189210 -0.173650 -1.077731 1.896053 -1.135163 3.666769 3.868858 -3.696470 0.821205 2.523629 1.360297 0.700706 2.182290 -0.988513 -2.774459 0.459550 -1.149751 1.698986 -1.812003 -0.703515 -1.084882 0.433375 -5.516292 -0.544579 0.558816 -1.108068 -0.042225 0.227703 1.055802 4.738447 2.009276 -1.538865 0.931136 1.935426 0.839288 0.690254 0.103721 0.550384 0.765331 1.597389 0.821001 -0.446708 0.310229 -0.290256 -1.852096 0.133128 3.089337 3.370651 -0.261247 -0.960996 0.781828 0.126773 0.051935 -0.734717 2.212732 1.052376 1.975561 2.116182 -3.584370 0.093028 -6.016841 0.378867 -6.324225 -2.787703 -2.381480 0.827467 0.001491 1.596788 -0.321705 4.400838 -0.423088 1.090128 1.899279 4.236633 -2.638398 -0.370865 -2.041899 -1.542823 0.875344 -1.175872 0.294555 0.392025 -0.813304 -2.295412 -3.124484 1.747481 0.280938 -2.062586 -1.159332 -0.694087 2.316827 -2.606667 -1.591303 -3.364347 -0.132111 -0.720536 -4.629957 -0.805728 -0.973740 1.826309 0.786065 -0.784588 -3.379609 0.633657 2.290400 -0.935994 -1.855534 -0.480521 2.971318 2.356484 -0.382712 0.692950 0.444052 1.647925 3.330925 3.086192 -0.910831 -0.811246 0.866579 -1.419111 -0.669974 -1.767404 -0.013554 1.275417 -2.048584 -0.314586 2.131372 -1.612097 -0.316104 2.060548 -2.249168 1.272909 9.838795 -0.985768 1.831413 0.766878 -3.434949 2.006579 -0.446330 -1.771822 0.943179 2.296038 2.921286 -4.988960 -1.779198 1.521991 3.895925 1.330104 -3.022761 -1.186276 -0.299645 -0.483138 -0.732701 1.399215 0.113977 0.042073 -1.430020 -0.625016 1.804021 5.457314 -1.836723 -3.116233 0.422736 1.501515 -0.587329 -3.250559 -0.192362 -2.408080 -0.352010 0.886043 -0.340000 1.827103 3.213260 -6.751903 2.503950 -0.774971 -1.867283 2.292112 0.305372 -0.857906 -3.027385 1.369896 2.845405 2.605149 0.087746 0.395728 -0.963758 -3.209675 -0.196685 0.612060 1.564891 -2.306644 2.785059 0.160885 -2.707039 -1.996061 -0.736991 -0.639069 -1.658029 -1.241940 1.283753 0.166228 -5.794156 3.730616 -0.053787 -0.929049 0.824685 -1.351413 2.049822 -3.025156 -3.661138 1.623892 -0.333638 -0.937028 -0.404724 -1.265111 1.923996 0.821697 0.327162 -2.558277 -4.094271 1.945650 -0.167226 2.354490 2.065370 1.215766 3.430053 -0.194171 -1.604900 -2.445162 -1.550352 1.382532 0.205175 -1.570851 -2.609749 -1.650640 2.084359 4.293316 -0.651945 -0.289672 -1.451375 2.616549 -3.445143 -0.560597 1.207901 1.668777 -1.797976 0.396127 1.657965 -1.580221 -1.295825 -2.474195 -0.183621 -0.761726 -2.282408 1.171060 -2.715291 -0.149189 2.421439 -1.254020 -1.056678 1.727428 0.216018 0.199912 -0.267045 2.613358 3.825620 -2.536402 0.384215 -2.798544 1.879816 -4.031759 -2.689686 0.062160 -0.146710 -0.607288 -0.874777 0.146381 1.469291 0.424362 -0.351552 -0.550643 -0.521942 +PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -0.554364 1.823596 1.386785 -2.240924 2.145490 2.258900 0.444275 -0.561535 -1.499286 -2.072661 -0.626524 -2.672582 -2.956742 2.808473 -0.776759 0.553256 4.462999 0.150520 -0.251632 -1.313281 2.286536 -1.140924 4.096979 4.553298 -4.256672 0.667055 2.610634 1.777488 0.975338 2.044229 -0.162467 -3.397011 0.237088 -1.085730 2.105068 -2.046441 -0.709314 -0.679817 0.537273 -6.270128 -0.656528 1.031536 -1.052268 0.060201 0.388722 1.017866 4.973811 2.370122 -1.939852 1.218626 2.560066 1.322535 0.813569 -0.027728 0.290816 0.413492 1.192845 0.478079 -0.208848 0.418182 -0.348765 -1.708045 0.347682 3.712660 4.019131 -0.359726 -1.153754 0.717617 0.381608 0.310701 -0.616762 2.667665 0.977122 2.118048 2.424107 -4.087413 -0.130312 -7.508978 0.979033 -7.308058 -3.046849 -2.378987 1.270045 0.813269 1.439397 -0.529008 5.157632 -0.442804 0.858196 2.951170 4.625366 -2.405166 -0.344095 -2.414669 -2.116556 1.097033 -1.372306 0.375534 0.067883 -0.053877 -2.567315 -3.330944 1.337006 0.108317 -2.356714 -1.533095 -0.837421 2.628940 -3.000546 -1.567291 -3.485125 0.670905 -0.423994 -5.391324 -1.140090 -1.714194 1.672827 0.659130 -1.076173 -3.287018 0.678551 2.150085 -1.122301 -1.583474 -1.131165 3.204571 2.680052 -0.386208 0.445602 0.709473 1.713013 3.574880 2.785416 -1.290108 -0.930569 1.151795 -1.371306 -0.679251 -2.272236 0.119893 1.916112 -2.258078 -0.383618 2.080014 -1.781436 -0.970896 1.982192 -2.840815 1.305758 11.634109 -1.086040 2.275126 1.284636 -3.625990 2.273482 -0.270388 -1.607348 1.262670 2.611575 3.167970 -5.308874 -2.109693 1.882004 4.553602 1.482860 -3.017956 -1.403979 0.158649 -0.534793 -0.866237 1.707138 0.054575 -0.353712 -1.507107 -0.707094 2.135291 5.813021 -1.532088 -2.730578 0.227132 2.722774 -0.764405 -3.303372 -0.068141 -3.050081 -0.362081 1.399032 -0.188059 2.241260 3.691887 -7.862165 2.792924 -0.343165 -1.324759 2.035870 0.364450 -1.132610 -4.197220 1.452364 2.953817 2.884678 -0.265857 0.858900 -0.831178 -3.767189 -0.068893 0.808386 1.794850 -2.821283 3.257536 -0.019359 -2.711890 -2.202277 -0.494222 -1.300172 -1.738224 -1.518403 1.595143 0.487259 -6.022271 4.085716 -0.232558 -1.023231 0.643354 -1.625497 2.660635 -3.547685 -3.977154 1.861990 -0.465685 -1.313529 -0.540698 -1.480179 2.231645 0.753175 0.426977 -2.897073 -4.475165 2.316086 -0.368730 2.859848 2.279136 1.047304 3.670059 -0.417413 -1.553992 -2.699213 -2.029075 1.717814 0.439515 -1.810196 -2.807865 -1.651176 2.189601 4.667551 -0.834335 -0.814536 -1.146839 3.114475 -3.418465 -0.612106 1.034007 1.303072 -1.977184 0.679020 1.635745 -2.027517 -1.157333 -3.234227 0.372953 -0.925459 -2.483924 1.616300 -2.815025 0.004483 2.452907 -1.281374 -1.149192 2.008022 0.727298 0.122556 -0.004453 3.225864 3.863657 -2.299933 0.401151 -3.493820 2.050183 -4.558272 -3.074339 -0.265960 -0.271050 -0.585895 -0.939715 -0.285471 1.891808 0.826635 -0.060296 -0.818646 -0.080138 +PE-benchmarks/mergeSort_LinkedList.cpp__printList(Node*) = -0.175807 0.494755 0.449361 -0.715405 0.589441 0.508958 0.114287 -0.117985 -0.501632 -0.801927 -0.134655 -1.013591 -1.004081 0.860048 -0.333812 0.025038 1.306920 0.039404 -0.061106 -0.421414 0.528561 -0.262663 1.224859 1.386962 -1.290328 0.163323 0.585033 0.616998 0.274968 0.626906 0.217889 -1.199716 -0.007745 0.007629 0.720629 -0.513521 -0.183326 -0.128982 -0.049837 -1.882937 -0.204123 0.620726 -0.087598 0.040793 0.208592 0.314456 1.453918 0.725725 -0.536259 0.390926 0.814281 0.518314 0.324653 -0.026861 0.045086 -0.153493 0.356544 -0.258437 -0.129559 0.177198 -0.100544 -0.541085 -0.006589 1.162223 1.260937 -0.097167 -0.337085 0.006195 0.081928 0.210798 -0.120273 0.804869 0.289086 0.691200 0.671932 -0.852452 0.018776 -2.130193 0.421870 -2.276433 -0.912614 -0.677180 0.643735 0.757609 0.194513 -0.264891 1.567937 -0.048405 0.213409 0.973314 1.404563 -0.484098 -0.134184 -0.681434 -0.679786 0.423578 -0.445220 0.120045 -0.146989 0.304500 -0.766470 -0.786716 0.245624 -0.108378 -0.690030 -0.237286 -0.281395 0.742647 -1.042939 -0.253257 -1.010882 0.334093 0.138320 -1.643366 -0.381983 -0.554572 0.258043 0.196926 -0.355961 -0.665200 0.222879 0.413922 -0.357158 -0.162640 -0.901406 0.948390 0.671967 -0.113009 0.086745 0.325371 0.527538 0.881944 0.510294 -0.439782 -0.280916 0.363698 -0.298006 -0.189012 -0.668655 0.060475 0.579328 -0.645746 -0.042305 0.416495 -0.537280 -0.495348 -0.039987 -0.917309 0.396920 3.205362 -0.342631 0.723244 0.437758 -1.003130 0.652722 -0.028769 -0.424041 0.325153 0.751989 0.930559 -1.062666 -0.639565 0.613697 1.391627 0.439866 -0.639485 -0.211123 0.210489 -0.133513 -0.282667 0.616732 0.041416 -0.204618 -0.439072 -0.223426 0.633618 1.547640 -0.179649 -0.668177 0.000202 0.986319 -0.118193 -0.650328 0.085179 -0.753575 -0.076025 0.434403 -0.005450 0.663538 1.120444 -2.412007 0.887872 0.178627 -0.185191 0.528621 -0.037172 -0.363052 -1.391978 0.413530 0.861797 0.857491 -0.127540 0.301586 -0.228575 -1.137163 -0.011191 0.242885 0.568998 -0.881426 0.960286 -0.044619 -0.733458 -0.689586 -0.302940 -0.461572 -0.363754 -0.618839 0.484742 0.396938 -1.717549 1.222447 -0.124613 -0.323808 -0.046992 -0.490619 0.729404 -1.112503 -1.111316 0.405045 -0.335301 -0.698863 -0.212923 -0.476870 0.569358 0.087407 0.134481 -0.786185 -1.089884 0.819854 -0.127572 0.850474 0.666527 0.261962 0.984504 0.140419 -0.406344 -0.594481 -0.623347 0.611610 -0.037925 -0.477061 -0.399854 -0.464148 0.546569 1.376876 -0.280409 -0.369126 -0.216683 0.931778 -0.667921 -0.300785 0.269384 -0.064663 -0.489414 0.367441 0.459721 -0.646650 -0.290363 -1.155390 0.209547 -0.283994 -0.732790 0.496655 -0.813082 0.004283 0.730781 -0.394156 -0.502203 0.596837 0.249251 -0.133689 0.057789 1.084730 0.899272 -0.531147 0.380048 -1.127587 0.566559 -1.366917 -0.885709 -0.175467 -0.147767 -0.144858 -0.264960 -0.273015 0.532410 0.310037 0.058283 -0.371239 0.195562 +PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.033373 0.883635 0.989316 -0.661450 0.948260 0.595918 0.271166 0.080003 -0.597225 -0.809242 -0.257005 -1.017844 -1.335437 1.121616 -0.207330 -0.058441 1.813752 0.174924 -0.037693 -0.665690 0.599003 -0.637057 1.679181 1.758914 -1.678013 0.442108 0.972796 0.633849 0.414011 1.041167 -0.560847 -1.131771 0.304792 -0.260667 0.758795 -0.774041 -0.326983 -0.663244 -0.220986 -2.474035 -0.197868 0.240025 -0.561762 -0.005401 0.176823 1.237553 2.172971 0.873301 -0.655477 0.592247 0.831476 0.133974 0.304040 0.080532 0.324088 0.089876 1.001363 0.444154 -0.476616 0.275160 -0.123361 -1.284184 -0.141120 1.289199 1.470014 -0.161976 -0.390080 0.127980 0.013352 0.072847 -0.189181 0.849115 0.800111 0.803994 1.038023 -1.241992 0.063672 -2.562177 -0.028374 -3.507754 -1.316143 -1.092281 0.954464 -0.267901 0.364599 -0.198208 1.840186 -0.018363 0.541706 0.767092 1.924772 -1.091005 -0.316313 -0.731420 -0.557938 0.489584 -0.565198 0.167163 0.386517 -0.360362 -1.062600 -1.102966 0.953523 -0.066377 -0.850332 -0.137494 -0.310257 1.059752 -1.464588 -0.400220 -1.683577 -0.220659 0.041268 -1.991535 -0.164850 -0.186708 1.330725 0.520505 -0.374773 -1.048496 0.328911 0.871487 -0.462582 -0.518832 -0.500722 1.491426 0.809947 -0.017750 0.418433 0.282578 0.784035 1.166769 1.565039 -0.384087 -0.357375 0.372137 -0.699674 -0.220919 -0.670797 -0.081690 0.691740 -0.846301 0.140630 0.612946 -0.779489 -0.298945 0.731155 -0.765885 0.593419 3.704325 -0.403799 0.869052 0.234023 -1.421345 0.738525 -0.274571 -0.748069 0.400374 1.084439 1.185497 -1.707116 -0.727515 0.626166 1.698631 0.636375 -1.604812 -0.264247 -0.149089 -0.183521 -0.293311 0.673793 0.113569 0.181589 -0.650208 -0.271654 0.733651 2.358941 -0.755950 -1.782531 0.067911 0.260939 -0.018416 -1.318263 0.047530 -0.328462 -0.042382 0.299063 -0.168012 0.754774 1.423074 -3.372846 1.184977 -0.379030 -0.844144 1.077789 0.141538 -0.400766 -1.366011 0.531137 1.236150 1.298341 0.425029 -0.131563 -0.330518 -1.357882 -0.138337 0.231125 0.677146 -0.903950 1.148357 0.177107 -1.182863 -0.883778 -0.802272 -0.021557 -0.319663 -0.599138 0.529136 -0.058705 -3.214206 1.597325 -0.125163 -0.528326 0.075021 -0.485420 0.717261 -1.336435 -1.624106 0.468005 -0.376358 -0.979762 -0.539016 -0.599876 0.669273 0.188987 0.141986 -0.957542 -1.764264 1.162603 -0.196310 1.034693 0.924659 0.468721 1.920012 0.246980 -0.758316 -0.968406 -0.492948 0.877159 -0.394689 -0.593702 -0.488259 -0.758223 0.788455 1.880040 -0.302219 0.054419 -0.645599 1.171565 -1.534398 -0.533621 0.686890 0.902416 -0.529777 0.699701 0.880992 -0.828452 -0.559142 -1.127986 -0.505482 -0.248783 -0.947476 0.499058 -1.223291 -0.058400 1.047550 -0.402934 -0.652064 0.730711 -0.222171 -0.040254 -0.231371 1.240817 2.453555 -1.473001 0.491181 -1.197524 0.968621 -1.747023 -1.222690 0.053848 -0.029148 -0.222238 -0.305199 0.016249 0.518918 0.188751 -0.543993 -0.412818 0.060108 +PE-benchmarks/mergeSort_LinkedList.cpp__main = 0.210618 0.109855 1.149799 -0.479163 0.255269 -0.794663 0.203023 1.364406 -0.861646 -1.260273 -0.096236 -0.886810 -1.455765 0.804317 -0.187049 -1.147039 1.504187 0.719019 0.135091 -0.819659 -0.249494 -0.616500 0.997075 1.442707 -1.394440 0.319045 -0.277831 1.015242 0.565415 0.821902 0.639356 -0.953365 -0.050231 1.146747 1.218080 -0.759618 -0.080245 -0.191832 -1.832915 -2.365561 -0.112098 1.477941 0.286959 0.149487 0.728994 2.018234 1.222047 0.597544 -0.650584 0.821722 0.667391 0.082059 0.554423 -0.040026 -0.155173 -0.774001 0.419110 -0.481435 -0.909891 0.824533 0.075982 -1.959028 -0.347967 0.766253 1.215918 -0.318596 -0.197056 -1.011628 0.239762 0.493367 0.434071 0.361023 1.035959 0.039901 0.969536 0.684405 -0.202119 -1.645974 0.501857 -4.136038 -1.120763 -1.084332 2.917716 0.979865 -1.191618 -1.019009 1.220696 0.078697 0.627805 1.157237 1.066590 0.387033 -0.512780 -0.746990 -0.293467 1.179957 -0.583011 -0.303999 0.513060 0.652364 -0.698672 0.207420 0.384263 -0.819999 -0.566494 0.960651 -0.461722 1.016089 -1.718677 0.634096 -1.717039 0.505320 1.384646 -1.192307 0.061716 -0.143078 0.546635 0.744844 -0.197628 1.251265 0.159892 -0.362270 -0.433323 1.165573 -2.343528 1.559715 -0.317509 -0.208130 0.396742 0.873343 0.311151 -0.604651 0.630025 -0.403271 -0.413132 0.958006 -0.403177 -0.254564 -0.812823 -0.106182 1.212218 -0.413165 0.245912 -1.001821 -0.718077 -1.082274 -1.490214 -0.394236 0.650632 1.329010 0.006815 0.623249 0.218393 -0.229267 0.878015 0.497014 -0.120875 0.528527 1.056691 0.392961 0.614085 -0.364650 -0.183172 1.196071 0.508488 -0.613241 0.397157 0.074461 -0.059237 -0.085292 0.852919 0.174050 0.141774 -0.311609 -0.076621 0.246870 0.711083 0.451208 -1.555354 -0.724341 0.661555 0.093077 -0.095828 0.621934 0.896241 -0.003504 0.066613 -0.054950 0.523220 0.983643 -2.874849 1.123999 0.502181 0.270290 0.384972 -0.407328 -0.058923 -2.030490 0.224644 0.459071 1.519036 0.541939 -0.579310 0.190609 -0.950088 -0.091431 0.245571 0.683402 -0.527631 0.736859 -0.259592 -0.031726 -0.459088 -1.650047 -0.235548 0.742464 -0.837229 0.241691 0.675986 -2.334719 0.668339 -0.766672 -0.685122 -0.740429 -0.044005 -0.055842 -1.204157 -0.918285 -0.407713 -0.418233 -2.599028 -1.331629 -0.684550 0.407376 -0.528474 -0.262145 -0.047209 -0.857319 1.779857 -0.461092 0.644359 0.729103 -0.299430 1.822421 1.948444 -0.496348 0.009516 -0.437651 1.045372 -1.388800 0.190521 1.182997 -0.546150 -0.115217 1.491494 -0.191378 0.012647 -0.257558 1.321859 -0.105377 -1.319547 0.556135 -0.904476 0.924256 1.952768 0.797606 -1.389095 -0.370020 -1.546270 -0.241578 0.643904 -0.219927 0.663301 -1.203991 0.075200 0.637088 -0.050232 -1.060244 0.539718 -0.321365 -0.845604 -0.355922 1.618366 1.943613 -1.096242 1.629768 -0.838796 0.805846 -1.110820 -0.216570 -0.927639 -0.176398 0.138403 0.379007 -0.327276 0.038968 0.449037 -0.671369 -1.031522 0.914509 +PE-benchmarks/tarjan-algorithm.cpp__Graph::Graph(int) = -0.886871 -0.353017 0.767178 -1.783412 1.162852 0.995514 0.410560 -0.848063 -1.389678 -1.018199 0.615275 -1.692805 -2.233590 1.857005 -0.732418 0.245240 1.180535 -0.765547 -0.888833 -1.231136 1.149372 -0.763242 2.130421 1.889254 -2.224627 0.037407 0.101549 1.481186 0.369871 1.118776 0.558282 -0.957366 -0.791572 0.322133 1.440981 0.537627 -0.555454 -0.048229 -0.216505 -2.469148 -0.400903 2.355885 0.393642 0.063368 0.382942 0.544310 1.484941 1.397248 0.112313 0.749775 1.513490 -0.208230 1.396938 -0.301156 1.203996 -0.464769 1.912759 -0.270240 0.003629 -0.066071 -0.674896 -0.346056 0.109076 2.011536 2.134391 -0.659266 -1.068819 -0.334929 0.157511 1.216118 0.360379 1.714488 -0.116849 0.616049 1.745560 -0.498202 0.635133 -2.231303 1.250257 -2.368168 -1.583015 -0.045413 1.320372 1.700051 0.331098 -0.682506 3.176779 0.016607 -1.104992 0.375170 1.701236 -0.088378 -0.043586 -0.372897 -1.274213 -0.092360 -0.607702 0.066458 0.039322 1.393582 -1.574929 0.246495 -0.008691 -0.231418 -1.336363 0.396940 -0.941650 1.421743 -1.071854 0.010450 -1.000993 1.457096 0.503980 -2.910461 -1.080448 -1.563999 -0.729368 -0.067344 -0.867762 -0.027394 0.966174 0.353118 -0.692274 -0.066005 -1.845405 1.805799 1.437511 -0.019921 -0.182868 1.116752 0.356121 1.015353 0.282424 -0.621162 -0.650769 0.724482 -0.269446 0.690223 0.001976 0.379471 0.718355 -0.619811 -0.196263 -0.224526 -0.324728 -0.343018 -1.107959 -0.749597 -0.108865 4.672193 -1.082331 1.772666 0.783706 -0.948689 1.428544 0.419648 0.109870 0.641787 1.173942 0.742509 -1.264409 -1.268969 2.038357 2.466819 0.569046 -1.306027 0.677188 1.105986 -0.004866 -0.873666 1.568050 -0.033170 0.077404 -0.618754 -0.375504 0.187470 2.679102 -0.765686 -2.313946 0.479028 1.248655 -0.118901 -0.632566 0.264718 -0.925206 -0.489129 0.194284 0.421053 1.140751 1.856154 -2.952604 1.621538 0.397448 -0.606102 2.486144 -0.870997 -0.535934 -2.568023 -0.257748 0.330477 1.511726 -0.086827 -0.898480 -0.343271 -2.090822 0.634756 0.060827 0.463797 -1.581240 2.139944 -0.901035 -0.653609 -0.675386 -1.503704 -1.005771 0.338657 -1.618982 0.726364 0.251304 -2.259252 1.628963 0.325285 -0.484548 -0.575251 -0.030336 1.081709 -0.758619 -1.530843 0.521359 -0.989697 -1.603908 -1.359758 -0.941176 0.305390 0.238231 0.027909 -2.069772 -0.816651 2.082945 -1.249009 2.441331 1.017563 -0.231894 0.920019 1.954041 -0.864280 -0.298732 -0.854501 0.772522 0.213425 -1.232039 -0.466484 -0.742961 0.888183 0.922984 -0.221979 -0.234707 -0.894606 1.952432 -0.411230 -0.582716 0.074324 -1.322431 -0.856218 1.212365 0.776571 -0.307633 0.103344 -2.181086 -0.450106 -1.924871 -1.227398 1.424337 -0.373501 0.551350 0.139536 -0.203861 -0.537453 0.304441 0.600804 -0.746823 -0.007201 2.552141 1.203992 -0.967823 0.373363 -2.267286 1.778210 -1.079125 -0.678853 -0.204823 -0.335185 -0.407153 -0.668487 -0.645870 1.278532 1.260447 -1.004509 -1.049320 0.731554 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/tarjan-algorithm.cpp__Graph::addEdge(int, int) = -0.164326 0.331884 0.450107 -0.264187 0.527004 0.590706 0.242617 -0.119605 -0.410527 -0.492845 -0.064848 -0.887586 -0.943390 0.806856 -0.217229 0.252976 1.153778 0.178897 -0.118789 -0.280318 0.314766 -0.259326 1.260686 1.212431 -0.927336 0.186563 0.277930 0.475983 0.071305 0.652928 -0.196768 -0.771066 0.385684 -0.276657 0.288088 -0.401325 -0.185549 -0.210944 -0.077080 -1.556732 -0.155943 0.451956 -0.176537 -0.007302 0.115819 0.448248 1.239375 0.646140 -0.029216 0.504433 0.294081 -0.047873 0.430800 0.130127 0.300084 0.037132 0.475676 -0.289547 -0.484457 0.058847 -0.181542 -0.949825 -0.238634 0.816049 1.006179 -0.042053 -0.276699 0.057121 -0.183261 0.132910 -0.002605 0.600411 0.326987 0.537521 0.592142 -0.547811 0.192863 -0.903189 -0.100729 -1.660822 -0.837275 -0.579908 0.653839 0.471930 0.414948 -0.207579 1.255804 -0.059976 0.132561 0.404428 1.298107 -0.898381 -0.278445 -0.348565 -0.077224 0.227173 -0.497978 0.108263 0.129249 -0.054671 -0.760052 -0.563051 0.552367 0.033816 -0.511060 -0.057575 -0.224935 0.751796 -1.059194 -0.465316 -1.066060 -0.151156 -0.053566 -1.356959 -0.205103 0.024186 0.471496 0.479771 -0.349678 -0.710050 0.389677 0.470976 -0.088781 -0.444295 -0.432986 0.889278 0.413544 -0.063726 0.272787 0.483841 0.393248 1.064241 0.809088 -0.158857 -0.158589 0.267679 -0.392360 0.088566 -0.242868 -0.147495 0.002098 -0.763372 -0.031841 0.500667 -0.538004 -0.087995 -0.236702 -0.223312 0.318292 2.197603 -0.255340 0.639053 0.379791 -0.952312 0.475534 -0.385870 -0.290319 0.162458 0.584383 0.713420 -1.032760 -0.528170 0.527964 1.187139 0.449544 -0.861966 0.096608 -0.067078 0.185379 -0.299788 0.504540 0.264725 0.245007 -0.514608 -0.093038 0.470217 1.577414 -0.641029 -0.887849 0.206534 -0.128492 0.094844 -0.847071 -0.052924 -0.151683 -0.133772 0.158313 0.030641 0.207726 0.959184 -1.348457 0.862491 -0.169163 -0.444669 0.945579 0.010591 -0.372971 -0.602222 0.107303 0.759529 0.793835 0.213331 -0.127073 -0.204822 -0.975013 -0.073344 0.184665 0.436078 -0.496987 0.823542 0.056660 -0.707374 -0.599708 -0.521847 0.060607 -0.332889 -0.440527 0.458587 0.263608 -1.606895 0.968569 0.048525 -0.492582 0.119028 -0.154598 0.556854 -0.877131 -1.076542 0.375662 -0.475918 -0.849761 -0.302191 -0.327481 0.290055 0.309305 -0.124220 -0.599615 -0.796863 0.891601 -0.016220 0.739850 0.548455 0.231097 1.039302 0.381999 -0.706836 -0.345333 -0.497444 0.354741 -0.408263 -0.375856 -0.308837 -0.408021 0.663596 1.218997 -0.041182 -0.147699 -0.384453 0.831957 -0.902941 -0.365608 0.566210 0.398956 -0.363527 0.385661 0.648253 -0.574672 -0.263311 -0.623105 -0.274663 -0.295733 -0.660089 0.352378 -0.817783 0.048266 0.569489 -0.268365 -0.408865 0.374726 -0.009136 -0.075102 -0.103070 1.009564 1.081055 -0.734119 0.360547 -0.857581 0.591656 -1.117721 -0.723980 0.104760 0.202570 -0.224904 -0.181987 0.152537 0.356470 0.301226 -0.624119 -0.403787 -0.036241 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCCUtil(int, int*, int*, std::stack > >*, bool*) = -2.936717 1.378514 3.606682 -7.606927 5.242820 8.742507 1.775826 -4.631725 -6.238932 -6.135320 2.272148 -11.996729 -9.476265 9.405471 -4.592330 2.350857 12.283855 -1.281403 -3.699404 -4.366008 6.623084 2.121793 15.036715 15.213487 -12.769853 0.645982 3.616481 7.089518 5.385989 1.559050 3.877411 -7.954109 2.117377 -3.529663 2.155355 -2.641054 -1.772181 -1.707564 2.186162 -16.736522 -1.981644 3.685775 -5.169338 0.474330 1.509218 3.753220 12.809800 8.354356 -2.594375 5.298764 8.091400 2.873734 3.142354 -0.217267 0.605337 -3.838059 3.265829 -2.718485 -0.912293 -1.311871 -1.063178 -4.741887 -1.102127 12.418045 12.601198 0.138411 -4.095796 1.861750 2.209356 2.307179 0.932307 8.688903 1.652078 8.019321 7.571141 -9.365211 1.316351 -16.542324 2.501903 -16.770441 -8.759850 -3.181626 7.927996 5.639028 3.135691 -1.400626 15.529705 -0.044597 -1.896476 11.911993 13.776971 -6.713185 -1.786765 -4.294143 -5.381990 3.121520 -5.479270 4.664095 -2.589035 5.059061 -8.739429 -5.289204 0.652037 -0.217369 -6.892276 -3.053782 -1.800139 7.628582 -10.398987 -2.702793 -6.407429 5.258373 1.360491 -17.935054 -9.325883 -5.213355 8.160818 1.623201 -4.625096 -6.206726 2.493045 3.436295 -1.553516 -2.547378 -4.422059 7.080684 8.706214 1.728833 -0.020752 6.132098 5.802868 12.828030 4.570146 -3.511077 -1.367540 1.834422 -1.745244 2.298226 -3.666061 0.919770 2.881471 -6.919483 1.208457 6.952373 -5.108408 -6.228087 -0.570193 -4.284452 1.601358 35.745441 -1.933939 10.070145 8.222692 -9.626924 1.156522 -4.330064 -1.699472 4.086932 4.932520 7.870771 -13.710374 -6.900411 8.340776 14.956244 4.611115 -10.293523 2.641303 4.330126 -0.365878 -5.188515 6.129889 1.302489 0.498773 -4.764452 -1.811441 9.761879 16.430507 -4.234816 -7.628192 1.236145 5.192472 0.950438 -5.761126 0.049032 -1.665138 -0.025106 8.431455 2.223505 5.676853 11.478714 -18.014947 8.284625 2.939988 -0.259383 6.911496 2.824767 -7.337877 -6.678429 1.443995 7.244169 6.755859 -0.538688 -0.613859 -0.444942 -12.212726 0.044609 4.709523 3.003763 -7.278672 10.144812 1.834672 -5.287046 -6.931408 -2.244424 -2.814689 -0.601090 -6.042758 6.974419 -2.481748 -16.979523 11.261221 0.290997 -5.425863 -1.594811 -6.985538 10.508396 -10.905600 -11.052895 5.534374 -5.265038 -9.873376 -3.466723 -3.827489 3.931758 5.587577 4.372540 -10.804218 -8.910636 10.112061 -2.094713 10.379599 6.481149 1.197881 10.689625 -4.268227 -4.405456 -6.576674 -8.308142 8.250495 2.325660 -8.099134 -4.439676 -3.731688 6.530987 11.335466 -4.112945 -6.162303 -1.909330 8.828633 -10.392498 -4.005568 2.133828 6.308568 -7.780241 5.201642 4.262384 -6.525118 1.034614 -9.230542 -2.081479 -5.720616 -8.168237 6.954563 -4.471808 3.002095 4.841994 -1.700982 -2.633842 5.295522 1.845551 0.679080 2.750282 10.973411 13.320002 -5.164277 0.699271 -13.637988 8.179392 -13.308754 -12.067519 2.674545 -1.941109 -1.350296 -3.367071 -3.084639 7.467127 6.571240 -5.865694 -4.995984 5.243153 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/tarjan-algorithm.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::top() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::pop() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -2.007303 -0.406829 0.959753 -4.605641 3.992210 4.314715 1.511573 -2.701387 -4.118866 -3.005398 1.568817 -5.391777 -5.366506 5.478397 -2.347148 2.403224 5.619341 -1.299058 -1.945162 -2.990534 4.616989 -0.844221 8.009433 7.089344 -6.979360 0.361585 0.848744 3.618229 1.883178 2.579511 1.973601 -3.918080 0.603136 -2.420311 2.195973 -1.040145 -1.268603 0.139621 1.374841 -8.345773 -1.110418 3.671939 -1.207304 0.604892 0.663403 2.291718 5.842183 4.641923 -1.305303 3.539088 4.530551 0.212707 2.814381 0.132450 1.517266 -0.866037 2.326874 -1.005151 -0.565787 -0.629142 -1.844770 -2.276055 0.528879 6.218955 6.744602 -1.191370 -2.518750 1.276161 0.100383 2.250312 1.366927 5.163242 0.419274 2.086415 5.183206 -4.573642 0.342514 -8.580348 1.585784 -9.415412 -4.559228 -1.242084 3.764644 3.432958 2.670660 -0.927087 9.094136 -0.305299 -2.231317 5.080317 6.122846 -3.001871 -0.569706 -2.270183 -3.180542 0.163198 -2.540597 0.931940 0.119059 2.848255 -4.883000 -1.709079 0.270735 -0.004157 -3.565636 -2.431471 -1.944453 4.496609 -5.386164 -1.884554 -3.489922 3.842322 -0.112650 -9.510489 -3.392919 -3.586454 1.944556 0.248152 -2.172219 -2.573985 2.304370 2.206417 -1.521260 -1.807245 -1.970151 4.720319 4.524497 1.077847 -0.053933 3.273248 1.412101 6.290993 3.010622 -1.620984 -1.422356 1.448050 -0.590231 2.213040 -1.175842 0.535496 2.400208 -3.957709 0.035072 2.192917 -1.867223 -2.099847 0.188862 -2.133913 0.519309 17.967431 -2.002364 5.783110 3.902660 -4.688198 2.223161 -1.060175 0.361911 2.760185 3.516671 2.789486 -6.857901 -4.088897 5.254846 7.425026 2.228427 -5.875151 0.508879 2.316953 0.470566 -1.854510 2.832786 0.725810 0.442359 -2.732480 -0.705669 2.557531 9.686356 -2.982258 -3.624309 1.639341 3.503196 -0.923967 -3.881663 -0.497369 -2.886796 -0.757893 2.951232 1.129334 2.724893 6.095183 -8.777996 4.691902 -0.006573 -0.627829 4.815307 0.309686 -2.822310 -6.207605 -0.664253 2.431784 4.100500 -0.377765 -0.661464 -0.133491 -6.557168 1.372472 1.345702 1.502949 -3.993927 5.855142 -0.800235 -2.856066 -3.060048 -1.586274 -2.130229 0.089992 -2.952201 3.227168 -0.161003 -8.431933 5.023805 0.133713 -2.731970 -0.083296 -0.951701 5.515467 -3.960024 -5.713801 3.173225 -2.861631 -4.860300 -2.856482 -1.849385 1.879576 2.297354 0.560938 -5.808590 -5.030387 5.541926 -2.389962 6.379861 3.455599 0.132552 5.453641 -0.446059 -3.293648 -3.519795 -4.203746 2.621297 0.585623 -3.872839 -2.577189 -1.989289 3.774819 4.829434 -0.598049 -2.118690 -1.316919 6.042602 -4.675867 -1.603376 1.794610 1.457008 -3.795163 3.183978 3.051326 -2.725410 0.189589 -5.025937 -0.335193 -3.831427 -3.783497 4.289716 -1.981586 1.808677 1.129927 0.000857 -1.332096 1.994381 1.562754 0.019097 0.065183 7.256093 6.054533 -3.077802 -0.353283 -6.554562 4.624346 -5.776979 -4.741072 0.337030 0.060069 -0.944489 -1.156961 -1.039580 4.606803 3.902210 -3.408581 -2.502185 1.634619 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::stack >, void>() = 0.058933 0.212654 0.413247 -0.235060 0.277973 -0.016459 0.085676 0.272721 -0.328630 -0.377531 -0.096736 -0.389611 -0.470133 0.371374 -0.089051 -0.213233 0.619521 0.207681 0.030493 -0.233412 -0.036838 -0.171014 0.478424 0.568025 -0.507299 0.183988 0.015920 0.259964 0.027783 0.522403 -0.037535 -0.542479 0.023614 0.287266 0.318779 -0.288033 -0.112637 -0.112416 -0.398729 -0.906963 -0.014553 0.424464 0.038196 0.005877 0.202086 0.433680 0.640796 0.240591 -0.135322 0.287343 0.216648 0.168651 0.170616 0.022763 0.118821 -0.044305 0.331163 -0.245704 -0.292606 0.218577 -0.032706 -0.524705 -0.154162 0.350994 0.441678 -0.064020 -0.122077 -0.276792 -0.031301 0.107040 0.067971 0.188113 0.267023 0.161942 0.241647 0.078864 0.032166 -0.554146 0.119596 -1.250344 -0.441629 -0.369505 0.733960 0.403707 -0.173752 -0.232534 0.548587 -0.064428 0.232332 0.261612 0.534177 -0.104663 -0.156975 -0.206594 -0.164173 0.278192 -0.151449 -0.106724 -0.002526 0.096664 -0.311607 -0.135672 0.265531 -0.174620 -0.241739 0.259946 -0.110362 0.360923 -0.672995 0.061159 -0.580290 0.136341 0.272267 -0.512589 -0.066260 -0.039040 0.188171 0.229924 -0.153417 0.030338 0.149019 0.064735 -0.212803 0.189180 -0.681885 0.512794 0.004411 -0.072271 0.131962 0.157376 0.187649 0.102651 0.256850 -0.179202 -0.084874 0.251894 -0.083446 -0.114073 -0.223792 -0.042577 0.101213 -0.244815 0.121942 -0.094581 -0.291392 -0.211051 -0.479070 -0.198442 0.213858 0.760576 -0.140727 0.275215 0.049612 -0.323928 0.256151 0.057056 -0.171013 0.082904 0.368181 0.288722 0.017254 -0.194978 0.082555 0.510615 0.227492 -0.234991 0.109217 -0.031329 -0.062538 0.023418 0.321538 0.019009 0.041513 -0.208644 -0.092559 0.074038 0.612396 0.075567 -0.554721 -0.105510 0.150158 0.032272 -0.056414 0.136029 0.108882 0.015748 0.074935 -0.088180 0.224153 0.440281 -1.137966 0.467454 0.008698 -0.147539 0.251729 -0.094828 -0.032651 -0.485617 0.046871 0.308599 0.596959 0.145697 -0.048057 -0.040610 -0.389885 -0.070413 0.055553 0.258661 -0.292748 0.315361 0.059406 -0.330454 -0.190129 -0.488304 -0.028863 0.079542 -0.346671 0.115457 0.232050 -1.015067 0.403929 -0.088333 -0.162348 -0.111856 -0.025714 0.087919 -0.411713 -0.421114 -0.020169 -0.154481 -0.638561 -0.206754 -0.253539 0.192347 -0.109298 0.029840 -0.143280 -0.360204 0.515138 -0.029090 0.298825 0.303864 0.005808 0.547128 0.464598 -0.193486 -0.030188 -0.203274 0.383740 -0.413172 0.028944 0.353752 -0.291049 0.114332 0.598710 -0.010634 -0.056637 -0.180640 0.467032 -0.105648 -0.235636 0.250302 -0.219690 0.086788 0.444856 0.338632 -0.374456 -0.184331 -0.481468 -0.047141 0.052535 -0.156073 0.204186 -0.418221 -0.007608 0.307878 -0.094896 -0.420753 0.206962 -0.119478 -0.243667 -0.082094 0.544408 0.535588 -0.341751 0.550232 -0.306173 0.267890 -0.478084 -0.189287 -0.232453 -0.065460 -0.105575 0.011995 -0.169045 0.101717 0.066614 -0.053972 -0.227256 0.176004 +PE-benchmarks/tarjan-algorithm.cpp__main = 2.156213 0.245238 5.823408 -2.906147 0.450184 -5.456437 0.329012 8.577405 -4.548598 -6.436079 -0.291897 -3.807751 -6.336373 2.609326 -0.243409 -8.787234 5.339635 2.700124 0.713640 -3.710953 -3.363411 -0.648340 1.802655 4.876812 -4.882797 2.043894 -3.479478 3.599117 1.856748 3.158175 4.963284 -5.127895 -2.403604 9.464025 5.710074 -1.857751 -1.565324 -1.385558 -10.965496 -9.216694 -0.115389 8.951007 0.581684 0.684461 4.813768 9.994925 4.653164 1.013953 -3.029165 3.373123 2.326902 1.596376 1.980603 -1.229636 -0.727610 -5.324846 1.210936 -2.725455 -3.415852 4.797630 0.408973 -6.583043 -2.483848 2.161955 2.902858 -1.468996 -1.849273 -7.515286 2.210701 2.590609 1.886998 1.095650 5.877472 -0.580453 3.455580 7.915620 -1.944915 -5.099043 4.670535 -17.779822 -4.487395 -3.197744 16.353973 6.268321 -9.622579 -6.698677 3.874131 -0.543883 2.594448 6.672585 2.662921 6.446620 -1.623823 -2.437082 -2.116414 5.404817 -0.488358 -1.984667 0.742113 4.454240 -2.230345 4.136379 -0.690979 -6.126756 -1.924286 7.038755 -1.423763 3.571157 -7.112441 7.190944 -5.956240 5.642310 9.866688 -2.797299 -2.277984 -0.395135 1.184187 2.770253 -1.891728 10.359482 0.851953 -4.922799 -3.276997 9.705319 -12.640844 6.190173 -3.118733 -0.457500 0.923530 4.208843 1.588594 -7.340817 0.046982 -1.850699 -0.692182 4.311298 1.117271 -1.640049 -2.222888 0.671232 4.751751 0.918558 2.465715 -7.683487 -2.588732 -6.681812 -11.828098 -2.052263 1.432096 2.541181 -0.734794 2.675038 0.057613 1.669358 2.501089 4.060860 -0.473636 1.368006 4.070298 1.556849 8.171531 0.050829 -0.980487 4.311639 1.528658 -0.682893 4.972811 2.268991 -1.844457 0.033146 5.204377 -0.945258 1.216431 -0.232754 -0.683233 0.288408 0.131774 5.690003 -8.256263 -5.355721 4.812057 2.677376 5.471479 4.818637 7.431983 0.639792 2.272603 -0.890550 3.260546 2.734487 -13.398681 4.171844 4.226166 2.415694 -0.879283 -1.487808 0.763865 -7.913064 -0.556257 0.541606 6.977780 2.987603 -3.666792 0.504240 -2.515560 -0.462677 1.630583 2.239805 -2.451882 2.519973 -1.277717 1.676273 0.196493 -9.284336 -1.975814 6.917620 -5.285522 -0.019953 1.997763 -9.585319 1.344224 -2.861579 -1.478930 -6.625753 -0.225782 -1.659612 -3.203402 -2.036319 -3.898837 -2.061859 -14.412048 -5.316463 -4.245700 0.788391 -2.779399 0.906690 0.732421 -2.149230 9.327288 -1.637386 3.560921 3.010679 -2.873903 7.708258 9.853048 -0.389132 2.587632 -3.463724 8.385200 -5.996596 2.374378 9.486404 -2.879967 -3.540923 3.651687 -1.674496 -0.838912 -1.924390 4.550742 3.286165 -5.040706 0.799508 -7.885658 5.981851 10.658374 2.585122 -4.885285 -0.136920 -8.033614 -0.577689 2.469141 1.371095 2.540227 -3.577369 -0.275112 1.986396 -0.133789 -5.750008 1.135750 -2.329307 -5.481828 -0.601149 5.698458 7.564098 -3.834100 9.793765 -2.526705 4.057266 -2.352957 0.558360 -5.819914 -3.280652 1.491319 1.060551 -4.487839 -1.224056 1.996822 -2.112567 -5.111093 7.798502 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/tarjan-algorithm.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.102838 2.291312 1.562487 -0.717917 2.766109 1.367771 1.013271 0.487268 -0.616644 -2.691570 -0.631638 -2.124391 -4.425986 2.294314 -0.585513 0.063224 3.754322 -0.176848 0.687496 -1.706446 1.853539 -2.030642 4.557629 3.680192 -4.653238 0.892316 2.125728 1.636419 0.893876 2.301289 -0.173409 -2.800218 1.563200 -0.912133 2.434333 -1.435159 -0.411212 -1.746284 -1.231941 -5.474236 -1.158902 1.074740 -1.666458 0.751731 0.332065 3.627279 5.243060 2.305665 -2.197185 2.042171 2.024831 -0.388197 1.362920 0.613941 -0.184239 -0.707094 0.810340 0.454739 -1.683475 0.649137 -0.741573 -4.573867 -0.332802 2.899213 4.047803 -1.009577 -0.593018 1.138952 -1.047903 0.592012 -0.366003 2.654282 2.658497 1.439750 3.834976 -2.583265 -0.915642 -6.064336 -0.790629 -9.619127 -3.353501 -3.757440 2.156846 -0.214132 1.442142 -0.768521 4.801038 0.882879 1.365380 2.454258 4.607286 -2.750372 -0.617689 -2.410959 -0.586002 0.946581 -1.988110 0.493299 1.582555 -0.871082 -2.603298 -2.541087 1.879002 -0.557000 -1.873320 -1.760126 -1.825465 2.696122 -3.943065 -1.143923 -5.230952 -1.214098 -0.209101 -5.266261 0.164105 0.378936 3.143710 1.639620 0.407178 -1.604759 0.753452 2.296745 -0.518526 -1.834076 -0.538712 3.938225 2.294532 0.051212 1.637644 1.825754 1.319343 3.039852 4.986868 0.217510 -1.976297 0.873415 -1.496661 0.057007 -1.230226 0.251822 2.685449 -2.415903 0.080594 1.378587 -1.326006 -1.234421 1.381152 -2.601321 1.997828 7.446721 -0.705544 1.826334 0.643406 -3.405656 1.992737 -0.923036 -1.365606 1.663266 2.934402 2.574579 -3.500661 -1.784515 1.567659 3.652194 1.049482 -4.325527 -0.755701 -0.209161 0.637889 -1.490111 0.998617 1.208337 0.840279 -1.502646 0.045779 1.590841 5.111028 -2.649330 -3.639972 0.843701 1.038919 -0.209938 -3.745856 -0.330947 -0.918710 -0.925056 0.907091 -0.060883 0.687486 3.291336 -6.560584 2.461418 -0.687083 -1.258650 2.150932 0.151528 -0.574745 -4.132004 1.655184 2.886846 2.100674 1.186277 -0.173361 -1.161072 -3.317569 0.547958 0.594217 1.895951 -1.644233 2.928538 -0.850023 -2.251208 -2.909906 -2.163292 -0.218727 -0.506149 -1.013645 1.105284 1.046774 -7.294980 3.452635 -1.336000 -2.279453 0.322650 -0.520194 2.619889 -3.003984 -4.252019 1.421064 -2.031352 -3.701978 -2.211573 -1.003741 1.065021 0.750870 -0.985431 -1.913322 -4.344012 3.357012 -0.466682 1.946062 2.303078 1.834084 5.843422 0.631077 -3.284702 -2.703609 -1.698674 1.915076 -1.512861 -1.416688 -1.759733 -1.375295 1.887757 5.068595 -0.379324 0.477254 -1.392684 3.095328 -4.594436 -2.024290 2.471422 2.911143 -0.795757 2.473208 2.492805 -1.699599 -1.892443 -2.776764 -0.286514 -0.230242 -2.581894 0.959781 -3.914342 -0.390382 2.681716 -0.679213 -1.605337 1.770754 -0.443432 0.247884 -1.973846 3.494801 6.416270 -4.615794 0.651170 -2.647321 2.195716 -4.426188 -2.842907 0.051400 0.525438 0.730074 -0.151317 0.731008 1.029767 0.923286 -2.556125 -1.478989 -0.690962 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/tarjan-algorithm.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::push_back(int const&) = -0.043741 3.042429 2.308773 -1.538446 2.903491 3.631226 0.647825 -0.225403 -1.121251 -1.314180 -0.980128 -3.364120 -3.603625 2.818422 -0.452523 0.245991 4.336237 -0.057423 -0.350475 -0.350980 1.119849 0.019273 4.137212 4.064622 -3.801415 1.252350 1.834864 0.942138 -0.557201 3.621027 -2.108776 -4.262667 0.499599 -0.010549 1.490007 -1.037984 -1.211112 -2.133394 -0.012500 -5.958342 -0.576498 2.113580 -1.504487 -0.343259 0.642153 0.379326 6.187963 2.047691 -0.866120 0.475159 1.216366 0.875365 1.063097 0.129189 1.386605 0.649384 2.623406 0.302232 -1.255911 0.164713 -0.564100 -1.702788 -1.050051 3.268701 3.357767 0.118667 -1.337854 -0.106749 -0.398153 -0.110907 -1.264037 2.427942 1.883375 3.031944 1.925030 -1.144015 0.611809 -3.661690 0.417986 -4.660327 -3.355116 -2.601343 1.148124 1.739451 1.624411 -1.950492 4.850555 -0.830827 1.359799 1.119790 5.358870 -3.134531 -0.552529 -2.124885 -1.463105 0.640081 -1.084634 0.287627 -0.287405 -1.727203 -2.867043 -3.116825 1.725528 0.159120 -2.168652 0.212655 -0.615656 2.484835 -2.609270 -1.219020 -3.809291 -0.354196 -0.402219 -5.169822 -2.075527 0.064738 0.252469 1.349320 -1.251308 -3.755613 1.236273 2.216369 -1.364214 -1.929364 -1.357242 3.889803 2.400458 -0.493958 1.047478 0.580453 2.466261 3.409350 2.798504 -0.729019 -0.438901 0.415020 -0.887961 -0.616167 -1.060925 0.243404 -0.532010 -2.045091 -0.396183 2.577402 -1.885115 0.728962 -1.144436 -2.087166 1.267812 10.268070 -1.772486 2.182427 0.203148 -4.247950 2.891561 -0.518568 -2.659835 -0.083875 2.086715 3.893587 -4.899285 -1.720146 2.328304 4.495888 1.501913 -2.975818 0.795637 -0.189008 -0.546136 -1.460624 2.270632 0.304120 0.784166 -1.847984 -0.846323 2.160408 6.630173 -2.111797 -5.436274 0.901850 0.765658 0.816887 -1.929131 -0.061066 -1.556414 -0.478332 1.249204 -0.603450 2.049650 3.623089 -6.585679 3.073028 -0.375033 -3.266802 3.852743 -0.252415 -0.945502 -0.771548 1.242371 3.731488 2.978490 0.963343 -0.509031 -1.981309 -3.371601 -0.425102 0.776498 1.676040 -2.430065 3.108672 0.268187 -3.552509 -2.276743 -2.745593 -0.517730 -1.797238 -2.750015 1.262810 0.405610 -6.496215 4.624248 1.102233 -0.826897 0.200714 -1.667568 1.463615 -3.021953 -4.323862 1.343870 -1.208632 -1.811536 0.273244 -1.676295 1.351176 1.661172 0.990370 -3.159150 -4.451017 2.855513 0.750615 3.087387 2.373152 1.716928 3.184318 2.038323 -2.127403 -1.666594 -2.900500 2.999512 0.144404 -1.787589 -1.807232 -2.411719 2.293977 4.475899 -0.834623 -0.477071 -3.532142 2.380931 -2.796617 -0.235127 1.697739 0.179181 -2.169316 -0.342173 2.220174 -0.807393 -1.451032 -2.765834 -0.595331 -1.810610 -2.702841 0.502371 -3.075525 -0.536089 3.102484 -1.986756 -1.997808 1.194138 -0.368454 -0.617295 -0.183389 2.847914 2.783105 -2.894184 1.899886 -3.084625 2.631587 -4.382868 -3.045521 0.607157 -1.269896 -1.105480 -1.569453 0.251579 0.974693 0.010646 -0.511495 -0.742314 -0.392486 +PE-benchmarks/tarjan-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 0.159246 3.407252 3.364675 -2.089028 3.374496 3.954330 0.549356 0.153496 -1.527937 -1.639540 -1.054437 -4.515467 -4.491703 3.230579 -0.681044 -0.583160 4.886388 -0.177222 -0.553573 -0.520869 0.629564 0.711776 4.580660 4.545042 -4.490719 1.497281 1.452438 1.517299 -0.363822 4.329318 -2.291224 -4.940231 0.078596 1.280121 1.889580 -0.727283 -1.422621 -2.742119 -0.926087 -6.776802 -0.575477 3.213999 -1.614542 -0.234814 1.187646 1.053514 7.199328 2.237959 -0.951067 0.354097 1.536957 1.046288 1.456309 -0.033256 1.540395 -0.113884 3.943678 0.109570 -1.627628 0.325297 -0.524694 -1.998344 -1.726906 3.693705 3.833711 0.215670 -1.730502 -1.013947 -0.020812 0.015959 -1.201727 2.684284 2.526479 3.798293 2.145257 0.382086 1.174091 -3.371909 0.951345 -5.123390 -3.779186 -2.869755 2.410457 2.725659 0.694930 -3.014231 5.422849 -0.857244 1.539878 1.127059 6.116750 -2.745246 -0.725506 -2.364858 -1.805657 1.096917 -1.142675 0.329100 -0.497664 -1.308083 -3.117659 -2.666289 1.549038 -0.507316 -2.516269 1.701282 -0.771615 2.813415 -3.031290 -0.318694 -4.252343 0.070528 0.604679 -5.850615 -3.181191 0.127109 -0.189088 1.508426 -1.474746 -3.111782 1.373750 1.777716 -1.837020 -0.940229 -2.953651 4.782729 2.563365 -0.522678 1.018291 0.963665 3.206625 2.864527 2.338331 -0.975290 -0.471906 0.529766 -0.662673 -0.807178 -1.209277 0.550080 -0.646848 -1.919384 -0.185591 2.333885 -2.163132 0.689969 -3.199403 -2.206022 1.364620 11.376048 -2.096540 2.519845 0.106061 -4.396270 3.346873 0.001741 -2.996922 -0.246488 1.991971 4.562448 -4.487556 -1.810526 2.728608 5.116639 1.682860 -3.326231 2.166385 0.185496 -0.818915 -1.855285 2.969350 0.385849 0.805444 -1.805827 -1.009158 2.553821 7.082727 -1.754089 -7.604371 0.697082 0.804949 1.469643 -0.986046 0.378435 -0.501089 -0.463216 1.565951 -0.541094 2.563725 4.142164 -8.091131 3.635184 0.770237 -3.649830 4.875387 -0.775354 -0.994116 -0.371220 1.272152 4.129186 3.498629 1.521187 -1.450883 -2.298220 -3.741461 -0.505090 1.183501 1.843166 -2.735368 3.333517 0.465302 -3.549355 -2.437579 -4.409735 -0.654756 -1.027145 -4.088815 1.442787 0.075944 -7.878899 5.172398 1.305554 -0.934321 -0.681866 -2.372893 1.054210 -3.501394 -4.588921 0.831733 -1.808469 -3.263219 -0.125628 -2.018131 1.120572 1.782847 1.831947 -3.841763 -4.834244 3.779497 0.514230 3.505326 2.804059 1.706716 3.318180 3.726238 -2.088942 -1.399101 -3.343725 4.385736 0.065228 -1.919450 -0.746151 -2.772054 2.096936 4.934634 -1.327669 -0.478801 -4.581510 2.430095 -2.314008 -0.813579 1.704800 -1.074311 -2.202485 0.245880 2.406213 -0.854821 -1.375420 -3.580961 -1.301041 -2.143823 -3.013736 0.593840 -3.339421 -0.604377 3.675393 -2.380701 -2.888755 1.327840 -0.853637 -1.473277 -0.042908 3.500269 3.321729 -3.213573 3.284081 -3.786643 3.515478 -4.941865 -3.383587 0.677579 -2.425477 -1.263864 -1.844630 -0.042691 0.852013 0.071501 -0.678507 -1.296499 0.507453 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::size() const = 0.063123 0.571130 0.579541 -0.317946 0.527119 0.613142 0.087338 -0.034266 -0.258514 -0.227270 -0.132803 -0.817157 -0.662741 0.467919 -0.129250 -0.103834 0.647380 -0.072549 -0.095051 -0.033996 -0.079296 0.220625 0.668284 0.676592 -0.613111 0.292337 0.055893 0.165382 -0.200454 0.805019 -0.392251 -0.880902 -0.053479 0.410057 0.234236 0.007028 -0.290914 -0.423384 -0.145743 -0.985367 -0.078464 0.681821 -0.094516 -0.063147 0.257315 0.011279 1.111921 0.295481 0.009794 0.075543 0.156267 0.232449 0.292947 -0.017696 0.354317 -0.065630 0.790515 -0.265812 -0.274006 0.057709 -0.085761 -0.187216 -0.359578 0.556820 0.517331 0.074245 -0.297505 -0.333773 -0.068560 0.002068 -0.202207 0.427589 0.294067 0.679657 0.172805 0.358574 0.375433 -0.157958 0.213328 -0.459107 -0.596286 -0.326260 0.398352 0.797700 0.081481 -0.498816 0.812838 -0.144131 0.190204 0.014870 0.901368 -0.357667 -0.082624 -0.167404 -0.306256 0.108492 -0.096395 0.053015 -0.326995 -0.113071 -0.474285 -0.284458 0.246703 -0.102986 -0.366047 0.507650 -0.073398 0.309434 -0.500703 0.033913 -0.500959 0.048638 0.149643 -0.816466 -0.520764 0.048801 -0.253924 0.209937 -0.289680 -0.410109 0.263174 0.137599 -0.314469 -0.019124 -0.815707 0.663320 0.317521 -0.075071 0.130708 0.101925 0.510031 0.361425 0.080862 -0.171472 0.012082 0.023238 0.053970 -0.077738 -0.032264 0.109687 -0.390186 -0.238643 0.009379 0.274928 -0.306078 0.165827 -0.992413 -0.293061 0.116792 1.451983 -0.393693 0.432065 0.001855 -0.661952 0.454966 -0.020929 -0.482553 -0.150062 0.231435 0.703234 -0.386594 -0.244758 0.475202 0.778013 0.229411 -0.274973 0.522826 0.143032 -0.162048 -0.248727 0.577225 -0.008649 0.135533 -0.314544 -0.186986 0.299309 1.065992 -0.074622 -1.073373 0.109994 0.037509 0.334549 0.163117 0.110608 0.032325 -0.030742 0.193961 -0.099361 0.373353 0.573494 -1.178299 0.576346 0.164898 -0.598817 0.796656 -0.216822 -0.168279 0.151982 0.113725 0.602541 0.511451 0.195218 -0.197280 -0.380274 -0.526270 -0.100193 0.118190 0.222251 -0.483855 0.514741 0.146826 -0.638639 -0.315317 -0.806200 -0.050264 -0.122543 -0.775963 0.198363 0.132004 -1.106257 0.761114 0.334012 -0.096589 -0.199258 -0.334579 0.037705 -0.436807 -0.590472 0.018302 -0.384564 -0.514498 0.102411 -0.364905 0.039971 0.219262 0.340673 -0.583929 -0.484285 0.572175 0.145731 0.539185 0.424346 0.230829 0.272434 0.752761 -0.272118 0.015478 -0.511324 0.739046 -0.061952 -0.216629 0.234107 -0.505255 0.251452 0.652075 -0.171678 -0.127040 -0.706757 0.309892 -0.028869 -0.045920 0.221600 -0.511655 -0.339370 -0.030566 0.334352 0.010071 -0.129246 -0.566515 -0.195676 -0.420061 -0.377064 0.093425 -0.395413 -0.125344 0.532357 -0.417024 -0.555573 0.140371 -0.182052 -0.339414 0.075231 0.527593 0.139438 -0.299196 0.701910 -0.530570 0.463118 -0.650149 -0.423997 0.075495 -0.429172 -0.282284 -0.355987 -0.151216 0.101404 0.018594 -0.009652 -0.167946 0.178214 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::max_size() const = -0.037791 0.143272 0.247771 -0.138360 0.166366 -0.095238 0.077945 0.068389 -0.175916 -0.424638 0.027340 -0.453537 -0.506795 0.309740 -0.149254 -0.102783 0.445910 0.052522 0.026851 -0.256637 0.048388 -0.196113 0.501424 0.514530 -0.503657 0.060539 0.110555 0.287230 0.199689 0.170949 0.158307 -0.357200 0.110765 0.132274 0.278129 -0.129733 0.006038 -0.098564 -0.257582 -0.654539 -0.082488 0.257662 0.079820 0.046627 0.084019 0.499114 0.500371 0.290083 -0.174063 0.254193 0.310569 0.035546 0.167989 0.037419 -0.031357 -0.316984 0.192497 -0.236463 -0.232486 0.113854 0.003930 -0.559552 -0.136310 0.387357 0.511416 -0.072158 -0.045784 -0.055714 -0.050218 0.150071 0.054853 0.223172 0.243541 0.219726 0.311565 -0.087758 0.025922 -0.681549 -0.002638 -1.255300 -0.365998 -0.301821 0.559310 0.267835 -0.095040 -0.060288 0.503624 0.186113 0.094363 0.316429 0.542030 -0.133101 -0.155541 -0.149114 -0.110241 0.278852 -0.278697 0.114145 0.074894 0.213928 -0.289627 -0.101101 0.166581 -0.142270 -0.216811 0.073032 -0.148208 0.244394 -0.581884 0.049126 -0.485732 -0.058863 0.252169 -0.596425 0.060230 -0.045368 0.301881 0.183743 -0.054709 0.063016 0.056843 0.017605 -0.064437 0.096957 -0.617696 0.378464 0.095838 0.037636 0.126486 0.245765 0.216235 0.193011 0.213821 -0.122938 -0.162717 0.115349 -0.157339 0.024203 -0.192304 -0.044480 0.341266 -0.250868 0.141744 -0.047028 -0.214376 -0.349096 -0.211852 -0.228638 0.194554 0.577582 -0.015532 0.267000 0.171580 -0.286676 0.129187 -0.122527 -0.104295 0.145912 0.289223 0.233429 0.066247 -0.221339 0.168930 0.470914 0.168242 -0.278465 0.037155 0.101422 0.062123 -0.135216 0.221669 0.129056 -0.015673 -0.160230 -0.039658 0.243649 0.386178 -0.021863 -0.231185 -0.028496 0.178393 0.061380 -0.208022 0.078980 0.101841 0.004931 0.042937 0.062999 0.116355 0.402448 -0.912426 0.343410 0.148151 0.059071 0.174035 -0.066638 -0.187021 -0.623839 0.186953 0.290340 0.289825 0.088042 0.022239 -0.007028 -0.395700 -0.021910 0.062215 0.191026 -0.216946 0.287320 -0.025898 -0.168341 -0.327171 -0.308048 -0.021164 0.079412 -0.204784 0.182334 0.262527 -0.821011 0.396451 -0.207989 -0.276051 -0.195046 -0.126717 0.182734 -0.466064 -0.377458 -0.001189 -0.338366 -0.620507 -0.324516 -0.139616 0.065305 -0.111544 -0.069719 -0.110931 -0.211292 0.450603 -0.127040 0.193838 0.229535 0.085553 0.510700 0.239382 -0.217858 -0.121594 -0.036910 0.225434 -0.367888 -0.125602 0.259710 -0.120002 0.129102 0.547338 -0.092955 -0.066540 0.064660 0.326754 -0.217766 -0.392382 0.196746 0.029857 -0.005109 0.463114 0.222983 -0.340534 -0.095359 -0.459525 -0.091113 0.011135 -0.291769 0.171139 -0.333875 0.017699 0.276873 -0.069333 -0.267205 0.250609 -0.042122 -0.111679 -0.084730 0.475942 0.616411 -0.349723 0.283896 -0.423464 0.190484 -0.511846 -0.338773 -0.022456 0.056269 0.014241 -0.012822 -0.097372 0.109855 0.147557 -0.224566 -0.290645 0.199117 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -0.384971 0.281138 0.124687 -1.224427 1.272414 1.464321 0.392699 -0.736901 -1.104431 -0.387471 0.185037 -2.653024 -1.284203 1.194719 -0.490423 0.902813 2.109846 -0.278342 -0.563175 -0.332683 0.361317 1.070092 2.363821 2.342939 -1.453601 0.375204 -0.184003 0.258239 -0.415955 0.546587 -0.537850 -2.087650 0.285602 -0.268705 0.190284 0.064634 -0.784556 -0.400633 1.185757 -2.492845 -0.047949 1.311269 0.192403 -0.155876 0.337986 0.296488 2.322156 1.135934 0.102681 0.668480 0.872967 0.421947 0.881533 0.028395 0.601456 0.038617 1.089354 -0.551011 -0.423709 -0.505789 -0.476388 0.445624 -0.477557 1.609742 1.541670 0.104784 -1.214183 -0.040392 0.644651 0.109722 0.035448 1.495508 0.484838 1.220766 0.670114 -0.355237 0.561037 -1.454144 0.492096 -1.767233 -1.541131 -0.095887 0.932658 1.269658 0.826547 -0.896633 2.591196 -0.641223 -0.180347 0.599569 2.012648 -1.375978 -0.340758 -0.292690 -0.668801 -0.102217 -0.313815 0.353678 -0.013107 0.320804 -1.595985 -0.665664 0.304879 -0.085145 -0.971151 0.019571 0.285314 0.462149 -0.937957 -0.493160 -1.118666 1.059864 0.298384 -2.566079 -1.227238 -0.357681 -0.605810 0.291518 -1.375416 -1.573742 0.727726 0.048890 -0.997179 -0.363850 -1.167879 1.361563 1.373192 0.234964 0.291156 0.675053 1.075780 2.352388 0.043744 -0.967267 0.042626 0.191813 -0.018359 0.344874 -0.304788 -0.148006 -0.304289 -1.205683 0.583535 0.947222 -0.951507 0.264765 -0.941251 -0.390610 -0.138901 4.557250 -1.079570 1.863374 1.059724 -1.589094 0.955740 -0.824972 -0.427731 -0.231238 0.753812 1.514621 -1.553152 -1.063793 1.791730 2.367056 0.837271 -1.325045 1.095131 0.989716 0.236208 -0.701698 1.104941 0.173041 0.689854 -1.043364 -0.266557 1.102293 3.444162 -0.470869 -1.128407 0.373492 1.071333 0.860671 -0.163141 -0.228123 -1.273811 -0.155490 1.083853 0.524515 0.955748 1.853062 -2.634999 1.329537 0.215244 -0.718765 2.013263 0.395411 -1.198832 -0.427470 -0.325607 1.130625 1.391276 -0.048435 0.127035 -0.506943 -1.542715 -0.070443 0.375307 0.421641 -1.365143 1.526658 0.267822 -1.375719 -0.293358 -0.968371 -0.401831 -0.527108 -1.325313 1.074260 0.600970 -2.471887 1.761404 0.947881 -0.645950 -0.258783 -1.021235 1.112001 -1.180591 -1.252704 0.711410 -1.130898 -0.753660 0.274851 -0.597293 0.184743 0.658812 1.368995 -1.875610 -1.527351 2.003362 0.362658 2.228128 1.076860 -0.102590 0.463918 0.073272 -0.715774 -0.329462 -1.706433 0.888226 0.358435 -1.112273 0.107963 -0.985717 1.082482 1.415817 -0.568411 -0.778039 -1.150287 0.853538 -1.089284 0.490347 0.543379 -0.167443 -1.426018 0.155128 0.947318 -0.540231 0.267694 -1.432614 -0.256654 -1.589823 -1.033974 0.761065 -0.697550 0.111594 0.717759 -0.966750 -0.506375 0.363166 0.175943 -0.552575 0.535282 1.732867 0.650923 -0.084910 0.675157 -1.992955 1.207795 -1.783194 -1.625866 0.577965 -0.850051 -1.471969 -0.955452 -0.139283 1.156227 0.275567 -0.451475 -1.060976 0.829366 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.038901 0.455737 0.460681 -0.196647 0.535063 0.255328 0.223688 0.096370 -0.348959 -0.627110 -0.037133 -0.877824 -1.019375 0.701242 -0.109746 0.037732 1.036894 0.069922 0.011649 -0.350131 0.218231 -0.385497 1.091168 1.084350 -0.970024 0.267671 0.336399 0.341193 0.136366 0.527292 -0.127281 -0.805766 0.323276 -0.093623 0.412785 -0.281289 -0.188840 -0.364001 -0.185405 -1.456227 -0.178949 0.471590 -0.145962 0.013886 0.117907 0.788523 1.279469 0.571821 -0.294440 0.520123 0.418912 -0.135556 0.362303 0.088354 0.167537 -0.215332 0.418995 -0.051182 -0.491764 0.179601 -0.090192 -1.008497 -0.282915 0.733516 0.950417 -0.150450 -0.263626 0.058175 -0.142656 0.135181 -0.061245 0.561931 0.593972 0.453045 0.697250 -0.386862 -0.016279 -1.262643 -0.097440 -2.213577 -0.879625 -0.606066 0.861020 0.234535 0.183215 -0.260790 1.143945 0.094346 0.205994 0.466226 1.255912 -0.661460 -0.284596 -0.353716 -0.143244 0.344463 -0.466548 0.161460 0.309427 -0.132603 -0.717863 -0.510296 0.557538 -0.126187 -0.501812 -0.052236 -0.239995 0.614606 -0.991343 -0.216599 -1.107623 -0.229293 0.183167 -1.260538 -0.014307 0.128608 0.514172 0.507542 -0.255771 -0.414026 0.258674 0.265913 -0.199377 -0.276491 -0.564493 0.922467 0.368928 0.073757 0.370795 0.434137 0.537655 0.746540 0.809602 -0.169320 -0.219214 0.184903 -0.306379 0.098855 -0.260045 -0.134312 0.359681 -0.583684 0.127738 0.210693 -0.490600 -0.254695 -0.074524 -0.367408 0.286450 1.695978 -0.176881 0.598194 0.254062 -0.815588 0.522871 -0.336821 -0.397866 0.198579 0.654801 0.690909 -0.595907 -0.435690 0.477106 1.092966 0.379502 -0.904682 0.005981 0.068907 0.132086 -0.319088 0.513641 0.225295 0.298084 -0.425676 -0.082751 0.518684 1.326312 -0.497276 -0.913427 0.100591 0.129576 0.201537 -0.766620 0.039988 -0.101417 -0.099640 0.128865 0.024784 0.270331 0.872199 -1.725730 0.746203 -0.085401 -0.366862 0.698329 0.047221 -0.377762 -0.924422 0.282974 0.714286 0.706292 0.336113 -0.066302 -0.225712 -0.859874 -0.075674 0.145674 0.342203 -0.474937 0.753865 -0.099611 -0.567555 -0.589143 -0.626283 -0.009084 -0.155803 -0.408435 0.395462 0.398080 -1.760652 0.911774 -0.107530 -0.511375 -0.140452 -0.217402 0.461190 -0.827353 -0.989737 0.218263 -0.591356 -0.986105 -0.406634 -0.361012 0.165872 0.126947 -0.139400 -0.397456 -0.828013 0.952602 -0.064100 0.638281 0.567084 0.235901 1.137469 0.465646 -0.672716 -0.355855 -0.347741 0.516584 -0.533933 -0.333252 -0.104397 -0.426244 0.461563 1.138632 -0.096566 -0.057264 -0.391274 0.665174 -0.834190 -0.477101 0.535745 0.361189 -0.211996 0.592773 0.599039 -0.512685 -0.213766 -0.779033 -0.260783 -0.211658 -0.608786 0.252928 -0.772865 -0.067245 0.621652 -0.304216 -0.421831 0.412941 -0.132566 -0.137257 -0.243022 0.880878 1.308175 -0.936075 0.412766 -0.814996 0.558833 -1.059588 -0.760616 0.095888 0.151572 -0.169430 -0.225011 0.092828 0.196376 0.203421 -0.605913 -0.498245 0.141072 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.000611 1.014936 1.091491 -0.692563 0.964687 1.053178 0.200095 -0.138511 -0.465962 -0.444684 -0.288371 -1.148674 -1.196600 0.976364 -0.253566 -0.021538 1.537289 0.021169 -0.170163 -0.372143 0.424442 -0.136655 1.531028 1.569984 -1.552578 0.452393 0.755249 0.614297 0.235919 1.249720 -0.810896 -1.132771 0.102200 0.037949 0.626002 -0.508045 -0.337413 -0.755307 -0.103066 -2.220527 -0.185308 0.493872 -0.425283 -0.051100 0.270133 0.581354 2.141570 0.781868 -0.421416 0.224615 0.681570 0.282565 0.390291 0.032474 0.413190 0.101841 1.388576 0.238078 -0.375525 0.087853 -0.064588 -0.815312 -0.234293 1.263218 1.346341 0.029249 -0.396078 -0.086745 0.070893 -0.039800 -0.310000 0.842742 0.547149 1.128539 0.723384 -0.645157 0.529913 -1.640880 0.152165 -2.013232 -1.197250 -0.972228 0.566509 0.313619 0.467152 -0.460879 1.724361 -0.099798 0.514694 0.329494 1.808040 -1.070636 -0.193758 -0.643585 -0.640094 0.387310 -0.442856 0.195144 -0.063579 -0.374161 -0.953699 -1.007147 0.777110 0.024465 -0.837665 0.320462 -0.249256 0.845023 -1.046129 -0.361725 -1.281355 -0.186619 -0.081132 -1.871438 -0.534504 -0.235418 0.588446 0.341156 -0.295501 -1.169144 0.270644 0.795839 -0.455294 -0.486046 -0.870795 1.409230 0.915678 -0.166902 0.314858 0.115043 0.846823 1.047647 0.977687 -0.368135 -0.264834 0.218393 -0.520155 -0.251370 -0.553823 0.106837 0.147049 -0.697175 -0.085833 0.797408 -0.659076 0.150524 -0.055386 -0.662074 0.507747 3.720919 -0.470714 0.795958 0.151370 -1.418709 0.884607 -0.105029 -0.855418 0.219380 0.733120 1.245979 -1.798704 -0.669425 0.654058 1.578892 0.536461 -1.197382 0.162783 -0.061121 -0.316806 -0.421701 0.757944 0.057351 0.089552 -0.617100 -0.314700 0.739991 2.246276 -0.594902 -1.977375 0.194963 0.102798 0.046062 -0.811486 0.021029 -0.297063 -0.072897 0.242447 -0.154079 0.794684 1.293325 -2.812235 1.110181 -0.066065 -1.070768 1.438593 -0.190883 -0.381591 -0.490399 0.557505 1.233682 1.064371 0.289631 -0.312095 -0.464358 -1.245024 -0.153810 0.243642 0.560502 -0.917915 1.064561 0.310372 -1.209732 -0.837152 -1.041957 -0.045526 -0.434114 -0.958085 0.486650 -0.161178 -2.631863 1.580192 0.192070 -0.392674 0.076597 -0.726416 0.391631 -1.207564 -1.416489 0.360163 -0.317815 -0.653062 -0.260714 -0.555068 0.528231 0.345123 0.416175 -1.241111 -1.531233 0.912894 -0.085172 0.913863 0.880211 0.549016 1.172230 0.718637 -0.595246 -0.759366 -0.614776 0.956971 0.004863 -0.657308 -0.396802 -0.842097 0.739865 1.703196 -0.388934 0.028711 -0.965853 0.930966 -1.007754 -0.396862 0.509217 0.199271 -0.730188 0.130813 0.698584 -0.444906 -0.497757 -1.007359 -0.547089 -0.408662 -0.947613 0.437707 -1.016151 -0.069961 1.085360 -0.583634 -0.740651 0.610944 -0.246102 -0.203102 -0.028460 1.129226 1.480715 -1.021429 0.689710 -1.144551 0.935864 -1.613624 -1.048470 0.190750 -0.479295 -0.354581 -0.422919 0.025709 0.486871 0.113491 -0.238599 -0.231762 -0.006189 +PE-benchmarks/tarjan-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.730815 0.670793 -0.751524 -1.945322 2.298284 2.143117 0.663394 -1.723289 -1.219040 -0.511983 0.539846 -4.699750 -2.132222 1.201018 -0.914321 1.803675 3.345452 -1.244129 -0.909941 -0.969599 0.712710 2.656777 4.539117 3.888543 -2.603433 0.447867 0.181587 0.359960 -0.297729 -1.235022 -0.816386 -2.616813 0.894134 -1.401465 -0.361702 1.007956 -0.993213 -1.576954 2.781895 -3.351828 -0.114205 0.257293 -0.109189 -0.127032 -0.150228 1.265132 4.093321 2.092561 -0.098025 0.751423 2.201234 0.587162 1.108020 0.205819 -0.041127 -0.619902 1.272608 -0.548707 -0.418673 -1.809010 -0.466687 1.119632 -0.758160 2.807451 2.418147 0.401699 -2.072058 1.311964 1.673036 0.024927 -0.026706 2.651399 0.933716 2.439304 1.447590 -1.578422 0.589333 -3.119029 -0.024237 -3.334389 -2.657623 -0.305013 0.865405 0.281738 1.839520 0.101133 4.301866 -0.424597 0.027568 1.398027 3.139689 -2.789004 -0.689164 -0.367780 -0.925588 -0.142447 -0.597351 1.615973 0.352878 1.056863 -2.770867 -0.975263 0.296946 -0.136325 -1.620652 -1.125232 0.877397 -0.348094 -1.004942 -0.668152 -1.978858 1.442252 0.598375 -4.693046 -2.127014 -0.095070 0.839329 0.148499 -1.810579 -3.074146 0.518707 0.081790 -1.537501 -0.857783 -0.745485 1.326765 3.133325 0.864487 1.014933 1.346500 2.363920 5.074035 0.498357 -1.502477 -0.494993 -0.224426 -0.288962 0.655725 -0.203522 -0.231452 -0.019885 -2.332490 2.687266 2.371944 -1.461661 -0.448580 0.022864 -0.809545 -0.138143 6.765735 -1.427327 3.270281 2.157103 -2.605315 0.321174 -2.961493 -0.858316 -0.331413 0.923227 2.489136 -2.159440 -1.869720 3.200157 3.721077 1.309478 -2.887175 2.137755 2.279864 0.709853 -1.624455 1.095057 0.752875 1.530364 -1.526201 -0.230540 3.073099 5.643550 -0.869141 -0.775158 1.062313 1.948090 2.004279 -0.421967 -0.863646 -2.002382 -0.307765 2.885796 1.715521 1.297101 3.134963 -3.781899 1.373471 0.676095 -0.445006 2.707471 1.580375 -2.639101 0.034109 0.001621 2.060396 1.455752 -0.381044 0.261821 -1.015762 -2.197231 -0.105894 1.092423 0.448212 -1.961500 2.312392 0.652860 -2.139123 -0.613755 -0.886811 -0.335995 -0.095506 -1.433639 1.986698 -0.050370 -4.576079 3.186908 1.076077 -1.732600 -0.659321 -2.979723 2.660439 -1.998892 -1.713460 1.601620 -2.378729 -0.663480 0.466230 -0.406227 0.045708 1.472228 3.265166 -3.418434 -2.312454 3.358535 0.973272 3.491819 1.781042 0.179725 0.897540 -2.644395 -1.152625 -1.186065 -2.447990 1.007855 1.213453 -2.789877 0.299423 -1.367025 1.871595 2.408290 -1.837445 -1.328040 -1.076294 0.533324 -3.184205 0.425370 0.708490 1.862977 -3.159260 0.729732 1.360263 -0.797582 0.657023 -2.199663 -0.533860 -2.813718 -2.492250 0.982860 -1.055841 0.273512 1.608236 -1.646592 -0.009440 0.925412 -0.030528 0.058556 0.780467 2.311572 2.276339 -0.208572 -0.019558 -3.788382 1.939880 -3.299373 -3.825275 2.270349 -1.486630 -2.192150 -1.786613 -0.276001 2.304199 -0.025657 -1.534837 -2.226973 1.640831 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.032555 -0.121812 0.213387 -0.293820 0.442410 -0.113402 -0.078732 0.044172 -0.212085 -0.268911 -0.127146 -0.147571 -0.304727 0.140822 -0.169305 0.124206 -0.035963 -0.174623 0.002980 -0.268922 0.222330 -0.128371 0.140458 -0.296353 -0.332115 -0.007970 -0.101849 0.528136 0.227795 0.372024 0.126214 -0.054940 -0.229750 0.242345 0.293796 -0.068534 0.202940 0.274177 -0.285839 -0.099938 -0.110875 0.292899 -0.053884 0.318504 0.086670 0.488475 -0.075710 0.162710 -0.239855 0.280159 0.416489 0.060212 0.174489 0.079607 -0.361576 -0.157485 0.299570 -0.414511 -0.137411 0.078750 -0.004810 -0.357918 0.101196 0.029060 0.291043 -0.351886 -0.086712 0.243029 0.006395 0.145566 0.216067 0.181805 -0.087420 -0.142431 0.264928 0.120371 -0.017738 -0.180424 0.215894 -0.532956 -0.012879 -0.293035 0.122365 0.438432 -0.240529 -0.022664 0.482218 0.080529 -0.208056 0.245623 -0.000725 0.107420 0.057114 -0.410494 -0.057621 -0.027116 -0.184312 -0.433537 -0.056408 0.714428 0.158633 0.142807 -0.176888 -0.397981 -0.068426 0.017850 -0.516627 0.265315 -0.565683 0.031624 -0.292734 0.452565 0.135409 -0.151370 -0.068610 -0.020306 0.069896 -0.231372 0.457349 0.387243 0.060892 0.050723 -0.143711 0.404336 -0.458485 0.199921 0.156089 -0.204288 -0.027527 0.287828 -0.063424 -0.158785 0.028700 -0.100967 -0.576535 0.354714 0.170662 -0.019711 -0.182212 0.242972 0.196547 -0.219196 0.066594 -0.112125 0.131637 -0.148856 -0.482466 -0.353538 0.142781 -0.078267 -0.013869 -0.159366 -0.114635 0.069505 0.067950 0.257030 0.117684 0.260013 -0.158251 -0.043924 0.346361 -0.186804 0.222923 -0.019357 -0.020489 -0.145600 0.052144 0.054160 0.168017 0.104682 -0.104813 0.438333 -0.345991 0.241011 -0.006628 -0.478476 0.209860 0.181568 -0.050073 0.274244 0.212636 -0.425169 -0.043649 -0.085369 0.107024 -0.354982 0.134050 0.095184 -0.027700 0.192852 -0.463431 0.130990 0.406946 0.098485 -0.066347 -0.423075 0.406013 -0.468221 -0.340937 -0.026919 0.109261 -0.156468 0.098377 -0.046854 -0.149490 0.380073 0.089856 0.145514 0.057666 -0.032457 -0.046163 0.117321 -0.019235 -0.090138 -0.252987 0.473991 -0.090666 -0.003529 0.024226 -0.520314 -0.009155 -0.467008 0.037185 0.102193 0.286496 0.327637 0.021940 0.055216 0.136065 -0.044552 -0.452202 -0.377628 0.141295 0.078287 -0.204304 -0.075846 -0.042817 -0.228344 0.000266 -0.265856 -0.232232 0.014418 0.004959 0.080967 0.107517 -0.122100 -0.046318 0.023325 0.025349 -0.138308 0.432240 0.422735 0.264896 0.004731 0.028922 0.150519 0.168111 0.062912 0.240451 0.098319 -0.260830 0.091198 -0.267961 -0.025163 0.503800 0.109078 -0.047055 -0.183224 -0.339176 0.250919 -0.059082 0.110120 0.104357 -0.167468 -0.148996 0.217410 0.109602 -0.360924 0.215611 0.074341 -0.327457 -0.456345 0.722576 0.377402 0.009488 0.304866 -0.092917 0.150037 -0.118111 0.105701 -0.286245 -0.029366 0.191013 0.249521 0.003199 0.121999 0.115323 0.015776 -0.101061 -0.198565 +PE-benchmarks/tarjan-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.344857 -0.442576 -0.244121 -0.445243 0.257755 -0.042797 0.043426 -0.355504 -0.712604 -0.347823 0.124852 -0.797734 -0.200038 0.577765 -0.148597 0.530652 0.815753 0.196861 -0.148805 -0.185461 0.523212 -0.487390 0.480700 0.886886 -0.304389 0.032596 -0.265112 0.192211 -0.085632 0.075892 0.163691 -0.680776 0.047553 -0.528338 0.159584 -0.251300 -0.299393 0.701251 0.612639 -0.953837 0.036625 0.428973 0.389454 0.114446 0.175952 0.026091 0.315902 0.094735 0.005371 0.734904 0.322511 -0.130678 0.406966 -0.053565 0.311032 0.385835 -0.047976 -0.213913 -0.127150 0.009175 -0.412981 0.174850 0.212421 0.339911 0.545077 -0.090519 -0.443848 0.054934 0.163087 0.103727 0.259759 0.497095 -0.135760 -0.216743 0.268964 -0.715439 -0.104523 -1.269051 0.291116 -1.275808 -0.464006 0.266996 0.514978 0.587710 0.114601 -0.091732 0.874796 -0.458228 -0.485482 0.383024 0.616364 -0.237512 -0.102718 0.007811 -0.360554 -0.254196 0.048708 -0.181190 0.203503 0.521415 -0.532267 -0.366258 0.328420 -0.055240 -0.206563 -0.409205 0.013427 0.495284 -0.656895 -0.419613 -0.194133 0.696099 0.243440 -0.593852 0.071129 -0.470133 -0.362380 0.225359 -0.834060 -0.398398 0.346224 -0.102331 -0.354984 -0.015339 -0.189848 0.329487 0.274450 0.018909 -0.214230 0.390967 -0.021897 0.774908 -0.089820 -0.491283 0.163778 0.207784 0.028669 0.189462 -0.285152 -0.331473 0.122462 -0.475128 -0.063109 -0.198866 -0.338282 -0.115826 0.159529 -0.118975 -0.408000 1.250051 -0.415122 0.759461 0.512277 -0.179228 0.499205 -0.008754 0.383888 0.206276 0.613922 0.232574 -0.514660 -0.536514 0.755996 0.699834 0.088269 -0.404355 -0.449520 0.334139 0.320225 0.177576 0.359599 -0.109784 0.100150 -0.123355 -0.013543 -0.040765 1.263590 -0.149324 0.236942 0.042383 0.490221 0.002189 -0.728696 -0.154578 -0.963827 -0.076026 0.062067 0.257987 0.218993 0.711424 -1.094076 0.485021 -0.234872 0.212837 0.397629 0.293113 -0.315393 -1.559040 -0.557252 0.066052 0.711194 -0.122488 0.339909 0.115434 -0.615783 0.085893 0.000000 0.259845 -0.760890 0.674806 -0.172948 -0.414959 0.188955 0.231182 -0.512927 -0.324441 -0.267146 0.229267 0.791491 -0.517558 0.258665 0.238937 -0.010261 0.223465 0.275479 0.664835 -0.159975 -0.312988 0.359437 -0.291721 -0.310038 -0.052335 -0.105455 0.201591 -0.192302 -0.317919 -0.365779 -0.545614 0.757833 -0.110442 0.886504 0.084505 -0.550075 0.183502 0.112404 -0.290435 -0.172324 -0.125496 -0.328388 -0.355732 -0.019443 -0.418245 -0.199410 0.347804 0.347707 0.297886 -0.438645 0.094531 0.604004 -0.297647 0.398096 0.299486 -0.225854 -0.244466 0.193140 0.424993 -0.486420 0.184668 -0.562442 0.130017 -0.502421 0.052255 0.502260 -0.116033 0.035622 -0.310517 -0.296216 0.137939 0.239218 0.504252 -0.161139 0.176568 0.922878 0.179894 0.176165 0.052703 -0.574138 0.154136 -0.413927 -0.268318 -0.281339 0.629905 -0.589591 -0.234380 -0.135781 0.528305 0.274081 -0.167842 -0.377783 0.286068 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.077233 0.736189 0.602211 -0.196757 1.241842 0.432768 0.319537 0.279150 -0.430424 -0.966837 -0.422858 -0.922595 -1.692463 1.083814 -0.028369 0.493887 1.541006 0.060205 0.127880 -0.589913 0.805384 -1.095128 1.654920 1.084116 -1.567754 0.406923 0.750026 0.756629 0.232641 1.127185 -0.485836 -0.953118 0.549612 -0.604989 0.829733 -0.698517 -0.041194 -0.367156 -0.344136 -2.154501 -0.390006 0.513841 -0.497445 0.256024 -0.027294 1.493806 1.841977 0.941236 -0.703927 0.876491 0.702556 -0.491332 0.590183 0.336352 -0.082032 0.151914 0.495184 0.095175 -0.930359 0.283803 -0.190888 -2.070804 -0.139162 0.862485 1.506854 -0.613660 -0.376494 0.862640 -0.400886 0.149267 -0.081028 0.890982 0.900731 0.248315 1.397068 -1.090988 -0.366470 -1.995155 -0.351022 -3.764068 -1.267105 -1.466999 0.768440 -0.068748 0.563368 -0.250593 2.018920 0.046665 0.341524 0.696069 1.862853 -1.397470 -0.375315 -1.209002 0.098209 0.317027 -0.892573 -0.369837 0.956935 -0.291188 -0.884443 -1.052795 0.977195 -0.254905 -0.745520 -0.678065 -0.874393 1.295836 -1.752797 -0.834389 -2.271751 -0.457260 -0.188673 -1.859952 0.338835 0.530222 0.964820 0.703267 0.249685 -0.892342 0.447817 0.966540 -0.268610 -0.781100 -0.119800 1.618494 0.706479 -0.225076 0.768237 0.836364 0.613156 1.306281 2.054548 -0.080487 -0.958527 0.625301 -0.609628 0.024020 -0.544571 -0.159637 0.741899 -1.256937 -0.062023 0.579620 -0.596251 -0.068732 0.495213 -0.831187 0.721187 2.356063 -0.216530 0.429735 0.013788 -1.308042 1.102158 -0.385928 -0.648954 0.518194 0.938461 1.011531 -1.358845 -0.780621 0.723025 1.419254 0.540254 -1.772931 -0.469942 -0.383964 0.515264 -0.319294 0.321318 0.884879 0.364016 -0.430570 -0.038415 0.224356 2.397833 -1.259239 -1.374529 0.655863 0.015431 -0.326845 -2.061823 -0.297613 -0.523732 -0.686750 0.062241 -0.009953 0.163949 1.413159 -2.311990 1.132991 -0.400384 -0.832761 1.019017 -0.186164 0.050569 -1.789996 0.172993 1.173468 1.133031 0.423363 0.005539 -0.570876 -1.329637 0.240101 0.233788 0.729764 -0.394324 1.030077 -0.399748 -0.811187 -0.920921 -0.630122 -0.125299 -0.242742 -0.171016 0.467564 0.599037 -2.858708 1.365670 -0.639287 -0.692572 0.452453 0.231632 1.063863 -1.099398 -1.637873 0.766100 -0.571791 -1.359819 -0.823618 -0.263345 0.534991 0.207569 -0.776336 -0.456313 -1.880587 1.172550 -0.151535 0.596575 0.801547 0.595442 2.049655 0.566453 -1.422071 -0.868414 -0.470120 0.210743 -0.882352 -0.061639 -0.761823 -0.331427 0.962281 1.850995 0.201964 0.384445 -0.689226 1.204485 -1.836765 -0.811935 1.144385 1.018636 -0.369786 0.990057 1.159775 -0.766995 -0.832696 -1.082917 -0.070047 -0.217769 -0.870149 0.183307 -1.647715 -0.383919 1.246999 -0.388337 -0.646992 0.767968 -0.100749 -0.189121 -1.147364 1.766839 2.488604 -1.786799 0.374922 -0.995135 0.912451 -1.679469 -0.954453 -0.022986 0.679718 0.000100 -0.021295 0.783466 0.272155 0.158723 -1.077494 -0.633348 -0.754962 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -0.914214 6.192893 5.382756 -6.893402 8.371957 12.699046 1.160478 -3.751096 -4.992025 -1.804610 -0.585228 -13.914290 -9.178549 7.808822 -2.874432 0.773467 11.148721 -2.592202 -3.171902 -0.576145 2.460761 6.885944 11.770460 12.355800 -10.050081 2.986424 0.980333 1.747490 -1.908527 7.395227 -4.475167 -13.598625 -0.479963 2.295569 1.948267 0.951143 -4.734857 -5.205551 3.236833 -14.889545 -1.196305 8.223010 -3.883025 -0.781459 3.390362 -0.596748 16.604091 5.128761 -0.567992 1.150441 4.344761 4.347764 3.710246 -0.959203 4.217544 -0.594798 8.832208 -1.045282 -1.686305 -1.642518 -2.196055 2.916445 -4.041776 10.100565 8.897735 1.918840 -6.079277 -2.471809 1.932388 -0.254252 -2.810594 8.399908 4.707345 10.669055 3.880168 1.641894 3.282103 -7.244969 4.331026 -5.252419 -8.672916 -2.667045 3.949655 9.111535 2.864681 -7.811198 14.425110 -3.280232 0.221874 4.345428 14.222370 -6.515639 -0.685775 -3.467689 -6.772785 -0.198848 -1.110314 3.064202 -4.900786 -0.561630 -8.644203 -6.748930 0.668006 -0.878221 -6.033272 3.010318 0.002105 4.607336 -4.939135 -0.316659 -5.450700 4.746494 1.771772 -14.583292 -11.917020 -2.346781 -3.385983 1.758674 -6.543716 -8.807277 3.707642 2.222504 -5.800506 -2.076092 -6.614075 8.970984 8.823544 -0.164918 0.218365 2.213556 7.975442 9.669531 0.037797 -4.085874 0.797473 -0.373696 1.279042 -0.164134 -1.852858 2.326082 -3.639043 -3.899447 0.772357 6.483699 -4.673437 1.708292 -9.378231 -5.164888 -0.020752 30.477627 -6.668547 8.933184 2.598641 -10.480393 6.395344 -1.627804 -5.611557 -1.335544 3.850994 11.150687 -11.634903 -5.349670 10.341552 13.435481 3.401110 -6.809642 8.025757 4.666824 -2.228373 -5.756300 8.453539 -0.453262 1.860472 -4.441908 -2.793552 7.341992 19.399100 -2.773291 -14.116079 2.133158 4.990138 5.926935 2.086731 0.317015 -3.071101 -0.576953 7.606185 0.565884 7.684130 10.314995 -17.817906 7.895411 2.856180 -7.196373 11.199153 0.146170 -5.031507 3.316679 0.952931 8.913755 7.249388 2.252340 -2.252457 -5.323996 -9.318630 -0.663719 3.293255 3.122556 -8.766614 9.301689 2.356099 -9.488856 -4.111024 -8.561411 -3.463674 -2.912222 -11.542081 4.345751 -0.570326 -16.004070 12.342114 6.519005 -1.105499 -2.759233 -7.584933 4.566791 -6.750212 -9.364966 3.112192 -5.550631 -5.346387 2.570650 -4.895367 1.660002 5.767206 9.002617 -12.786849 -11.071235 10.224359 2.553745 11.783416 6.205125 2.216023 3.587024 4.360809 -3.696022 -3.005084 -11.194696 11.980797 4.601307 -6.599061 -0.422033 -7.126253 5.208473 8.733355 -4.353934 -4.989502 -11.108464 4.777662 -3.811241 2.165528 2.131516 -3.444411 -8.507599 -1.979495 4.580130 -0.210469 -0.074207 -8.798290 -2.146753 -9.588471 -6.660340 2.767359 -4.416859 -0.566050 6.194592 -6.316670 -5.187109 2.250028 -0.327865 -3.616743 3.542902 8.504052 2.967831 -2.978433 6.836188 -10.984678 8.788607 -10.811715 -9.642513 3.031612 -8.386357 -5.480974 -6.765661 -3.061192 4.482472 1.265925 -0.470039 -3.501788 4.247508 +PE-benchmarks/tarjan-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/tarjan-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.177492 0.833652 0.772135 -0.461977 1.866403 0.747490 0.770636 0.239822 -0.647212 -1.602141 -0.301881 -1.171501 -2.588822 1.413977 -0.435633 0.476430 2.166514 -0.003527 0.519645 -1.058870 1.280787 -1.607442 2.847475 2.191343 -2.751831 0.502393 0.677290 1.109714 0.253531 1.790560 0.037502 -1.669024 0.989927 -0.744439 1.598362 -1.079244 -0.311730 -0.400282 -0.620179 -3.310552 -0.754550 1.125626 -0.660074 0.712701 0.351986 2.159339 2.746039 1.413148 -1.235228 1.818414 1.110318 -0.519133 1.280070 0.505844 -0.038686 -0.152528 0.349977 -0.052341 -1.150234 0.522538 -0.834266 -2.908147 0.127499 1.566114 2.574214 -0.846938 -0.436822 0.569270 -0.835536 0.505876 0.196291 1.820654 1.314982 0.291562 2.484730 -1.523111 -0.508835 -3.509690 -0.384192 -5.613807 -2.005080 -2.150100 1.391078 0.495948 1.138136 -0.681797 3.090043 0.404672 0.466750 1.387505 2.405402 -1.674647 -0.270357 -1.361816 -0.287158 0.169130 -1.148764 -0.112927 1.032000 -0.211624 -1.543175 -1.347536 1.179023 -0.411027 -1.004523 -1.255144 -1.352151 1.823216 -2.569012 -1.058046 -3.186616 -0.328127 -0.366749 -3.050594 0.495704 0.029957 1.337037 1.002221 0.257214 -0.670901 0.744168 1.306285 -0.336718 -1.073396 -0.500437 2.573708 1.282933 -0.020230 0.890076 1.275805 0.139071 1.825252 2.988536 0.175687 -1.301874 0.820939 -0.746710 0.363424 -0.720327 0.148502 1.615405 -1.664277 -0.336273 0.470700 -0.662265 -0.467445 0.530686 -1.370190 1.091835 4.161733 -0.549950 1.222402 0.583534 -1.900427 1.628904 -0.229767 -0.167087 1.288170 1.921498 1.154878 -2.182600 -1.196757 0.991655 2.074152 0.569673 -2.616546 -0.769397 -0.103720 0.765895 -0.627261 0.498930 0.842810 0.510280 -0.995433 0.248711 0.201937 3.288115 -1.631710 -1.796797 0.643927 0.585407 -0.556837 -2.530768 -0.385048 -1.014509 -0.809283 0.263664 0.020172 0.076218 1.938555 -3.623270 1.565633 -0.693863 -0.558396 1.523890 -0.087499 -0.136300 -3.054497 0.421663 1.277830 1.345157 0.648626 -0.038224 -0.460875 -2.037565 0.706702 0.144207 1.189792 -1.026140 1.901430 -0.824052 -1.332622 -1.520748 -1.361074 -0.281949 -0.400791 -0.577452 0.680338 1.163821 -3.938702 1.535956 -0.804829 -1.501736 0.624627 0.409327 1.764211 -1.421258 -2.424135 0.971367 -1.326583 -2.360749 -1.652953 -0.489452 0.504659 0.306812 -1.129262 -1.102159 -2.615995 2.110376 -0.534653 1.262242 1.390877 0.786529 3.432751 0.953738 -2.340992 -1.517096 -1.128425 0.750773 -1.167532 -0.505072 -1.173316 -0.737463 1.179088 2.939532 0.328111 0.452546 -0.772537 2.349803 -2.561429 -1.039597 1.772935 1.246335 -0.229750 1.640823 1.705470 -1.065337 -1.129111 -1.574079 0.184798 -0.098417 -1.136584 0.919298 -2.367152 -0.175207 1.100755 -0.165449 -0.997616 0.924932 0.001665 0.037153 -1.463706 2.713946 3.501262 -2.479811 0.394149 -1.333556 1.203544 -2.415784 -1.158067 -0.468832 0.705981 0.301659 0.241987 0.680323 0.851847 0.887135 -1.670604 -0.905311 -0.654704 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.189203 0.648831 0.640183 -0.123378 0.999220 0.462398 0.558507 0.497595 -0.714346 -1.261853 -0.222702 -1.270060 -2.039430 1.491257 -0.086755 0.357142 2.400694 0.603064 0.171158 -0.691710 0.725008 -1.289642 2.305219 2.319638 -1.946523 0.431075 0.767931 0.738032 0.211288 1.048379 -0.241514 -1.493472 1.009471 -0.798179 0.899904 -1.137743 -0.220377 -0.383005 -0.389652 -3.262926 -0.371362 0.748681 -0.381275 0.058461 0.116065 1.701311 2.378422 1.254122 -0.711917 1.309374 0.703944 -0.495225 0.731104 0.321870 0.164114 0.075095 0.079900 0.095730 -1.157868 0.473822 -0.251798 -2.598091 -0.331247 1.330194 2.059675 -0.458169 -0.399601 0.396760 -0.444864 0.271076 0.022077 1.033589 1.300854 0.373932 1.657736 -1.350864 -0.562518 -2.946873 -0.451777 -5.071759 -1.796414 -1.567337 1.774741 0.097499 0.654514 -0.522593 2.360202 0.041063 0.575309 1.141939 2.488864 -1.726688 -0.702211 -1.093650 0.045329 0.768895 -1.163562 0.042024 1.125323 -0.598528 -1.487706 -1.454874 1.346425 -0.083125 -0.994654 -0.783037 -0.623421 1.617892 -2.136467 -1.006916 -2.798674 -0.610834 0.015769 -2.528228 0.470335 0.329110 1.231206 1.311581 -0.408480 -1.056955 0.556991 0.873965 -0.217596 -1.036763 -0.409373 2.054158 0.609716 -0.094879 0.931931 0.992511 0.703434 1.826394 2.323982 -0.255555 -0.615873 0.752661 -1.004807 0.151466 -0.882397 -0.496187 1.066982 -1.540292 -0.002065 0.491046 -1.125973 -0.434570 0.663779 -0.651168 0.833393 3.500414 -0.166548 1.040683 0.569029 -1.708511 1.441396 -0.699292 -0.596011 0.670261 1.663712 1.193011 -1.821378 -0.950602 0.591868 2.188725 0.886848 -2.062568 -0.635977 -0.368613 0.596624 -0.540627 0.793352 0.676316 0.698475 -0.927125 -0.002340 0.887905 2.858578 -1.487748 -1.544654 0.219091 0.260043 -0.018397 -2.439375 -0.120664 -0.688402 -0.417278 0.143272 0.021163 0.316737 1.858079 -3.102921 1.562091 -0.712816 -0.665480 1.236916 0.240702 -0.612982 -2.346463 0.579411 1.395135 1.718606 0.739367 0.059765 -0.291361 -1.857337 -0.119809 0.274433 0.923501 -0.781511 1.585386 -0.450083 -1.106064 -1.214999 -0.897009 -0.055157 -0.754978 -0.346855 0.806378 1.118484 -3.448595 1.700844 -0.515198 -1.219839 0.302484 -0.013345 1.212721 -1.824556 -2.290684 0.789052 -0.827697 -1.886911 -1.003075 -0.613934 0.710372 0.263280 -0.902247 -0.512987 -2.144362 1.947230 -0.049132 1.227482 1.130795 0.401281 2.784445 0.838593 -1.725949 -0.986858 -0.802049 0.543549 -1.348106 -0.527012 -0.962474 -0.743936 1.199590 2.672826 0.146773 -0.010594 -0.697561 1.789059 -2.277574 -0.984154 1.422368 1.335506 -0.098324 1.286730 1.488819 -1.532899 -0.761166 -1.382950 -0.182668 0.015880 -1.222888 0.576748 -2.057120 -0.047095 1.195829 -0.417189 -0.639965 0.906527 -0.045915 -0.084158 -0.837630 2.033179 2.953944 -2.178544 0.542789 -1.489727 1.072042 -2.260579 -1.357153 -0.091474 0.852654 -0.292095 -0.080117 0.666204 0.433419 0.395152 -1.391710 -1.044533 -0.312485 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__miter_base(int**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.021026 0.229423 0.143580 0.026343 0.253999 0.036877 0.139132 0.064413 -0.154146 -0.272016 -0.112143 -0.274298 -0.407604 0.336218 0.019496 0.196591 0.560619 0.190063 0.070254 -0.169906 0.142008 -0.467798 0.541630 0.524271 -0.415006 0.168068 0.206609 0.153091 0.000000 0.375869 -0.202960 -0.296722 0.266132 -0.263466 0.205522 -0.332598 -0.065749 -0.055440 -0.037340 -0.794364 -0.067845 0.116022 0.104225 0.001183 -0.015652 0.331609 0.580898 0.279575 -0.089073 0.333787 0.110393 -0.147710 0.229184 0.122296 0.125171 0.177097 0.174500 -0.088139 -0.308130 0.126289 -0.050886 -0.700611 -0.047218 0.275307 0.464100 -0.113898 -0.081196 0.146598 -0.179552 0.029080 0.001329 0.224828 0.179276 0.067055 0.305662 -0.443972 0.017777 -0.598917 -0.184541 -1.204490 -0.433937 -0.401424 0.301305 0.036218 0.280059 0.048464 0.545242 -0.012266 0.189446 0.047505 0.576857 -0.522332 -0.165666 -0.173945 0.074505 0.154400 -0.250828 -0.063970 0.283188 -0.181758 -0.323222 -0.372473 0.528961 0.044623 -0.242398 -0.154769 -0.136957 0.344144 -0.579007 -0.369070 -0.675838 -0.301042 -0.132315 -0.526052 0.336874 0.118510 0.261122 0.317762 -0.060845 -0.407062 0.145190 0.276923 -0.023420 -0.327765 -0.186244 0.443632 0.082450 -0.064079 0.258289 0.164323 0.142063 0.511622 0.577101 -0.060364 -0.144369 0.191016 -0.271159 0.012000 -0.171323 -0.210630 0.132581 -0.436577 -0.040820 0.131950 -0.272899 0.025669 0.207815 -0.117615 0.206952 0.590272 -0.037864 0.192442 0.099418 -0.445512 0.331389 -0.204195 -0.180870 0.138591 0.401055 0.277048 -0.394949 -0.242700 0.080251 0.479155 0.215089 -0.408361 -0.292924 -0.187983 0.158474 0.013375 0.150675 0.143282 0.165406 -0.257663 -0.001529 0.077637 0.747994 -0.362693 -0.191731 0.108883 -0.133918 -0.114938 -0.728828 -0.074654 -0.273697 -0.107701 -0.195164 -0.026569 -0.005693 0.422056 -0.680916 0.407936 -0.329729 -0.256088 0.357264 -0.006861 -0.087510 -0.621210 0.114086 0.338393 0.435591 0.094532 0.089955 -0.078246 -0.424235 -0.060009 -0.024029 0.216105 -0.200758 0.355629 -0.064471 -0.363999 -0.262036 -0.133086 0.098844 -0.261911 -0.005939 0.175616 0.391982 -0.770444 0.388855 -0.119204 -0.278643 0.214109 0.102103 0.217649 -0.397861 -0.495405 0.182544 -0.159628 -0.289342 -0.184493 -0.124864 0.180174 -0.041944 -0.360903 -0.059231 -0.391131 0.341919 -0.019727 0.185225 0.279645 0.120691 0.554125 0.240180 -0.430143 -0.184782 0.006947 -0.151980 -0.455270 -0.027591 -0.206511 -0.208472 0.328361 0.701850 0.148089 0.089489 -0.058120 0.427903 -0.514781 -0.231077 0.390332 0.275691 -0.035687 0.246791 0.374775 -0.342687 -0.236085 -0.257465 -0.058228 0.069695 -0.262429 0.140051 -0.517620 -0.054271 0.319252 -0.145268 -0.161875 0.260374 -0.043619 -0.009149 -0.256590 0.489410 0.571330 -0.466596 0.121280 -0.256957 0.137005 -0.515404 -0.217183 -0.051278 0.398899 -0.151924 -0.008349 0.223495 0.104053 0.045889 -0.277740 -0.173822 -0.228759 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_base(int**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -0.666518 -0.159080 -0.215766 -1.341699 1.288899 0.664068 0.536984 -0.511740 -1.359700 -1.122059 0.250091 -2.365016 -1.598305 1.526054 -0.496943 1.225113 2.809199 0.107712 -0.240407 -0.962181 1.124024 -0.353110 2.939246 3.088305 -2.088301 0.198759 0.475170 1.046061 0.105318 -0.078235 0.335471 -1.867676 0.550758 -1.389177 0.595896 -0.765185 -0.466314 0.193149 1.242762 -3.466996 -0.259038 0.627585 -0.020770 0.121228 0.035090 0.974582 2.252398 1.621490 -0.688798 1.568497 1.596623 0.045493 0.913317 0.173169 0.018097 0.037568 -0.097616 -0.238099 -0.455457 -0.125581 -0.432415 -0.754362 0.176091 1.941608 2.353522 -0.306459 -1.134708 0.733268 0.588235 0.366615 0.369323 1.753208 0.333516 0.599479 1.560815 -2.440515 -0.308674 -4.379039 0.315138 -4.574395 -2.026951 -0.612795 1.550186 0.503083 1.034521 -0.004045 3.227847 -0.296759 -0.144820 1.892507 2.303295 -1.636966 -0.579545 -0.850942 -0.744806 0.405982 -0.820224 0.348494 0.786277 0.866469 -1.836618 -1.218530 0.776298 -0.108439 -1.233974 -1.512344 -0.078112 1.162816 -1.645690 -1.233640 -2.058526 1.176529 0.175556 -3.228170 -0.399553 -0.693236 0.862174 0.574901 -1.236489 -1.615864 0.582763 0.346546 -0.776520 -0.643506 -0.561508 1.496543 1.542803 0.221677 0.534969 1.195750 0.813845 3.051036 1.105586 -1.075796 -0.501860 0.810571 -0.626233 0.440971 -1.060726 -0.448557 1.054526 -1.867377 0.709794 0.798196 -1.229969 -0.863462 1.096632 -0.774601 0.216471 5.726770 -0.549450 2.034170 1.668249 -1.691649 1.190696 -1.081128 -0.026821 0.712124 1.572775 1.232807 -2.261790 -1.463647 1.521721 2.835856 1.069554 -2.145477 -0.637951 0.797947 0.631956 -0.491789 0.873136 0.470181 0.482527 -0.925022 -0.041603 1.394234 3.700756 -0.859414 -0.463700 0.274609 1.891231 0.032975 -2.130488 -0.388233 -2.206574 -0.391465 1.103192 0.744360 0.830703 2.342581 -3.926915 1.468321 -0.137094 0.166808 1.347491 0.916941 -1.399502 -3.093021 -0.033345 1.116636 1.795516 -0.275398 0.743395 -0.047252 -2.124866 0.080274 0.558065 0.741183 -1.491820 2.040399 -0.407960 -1.212300 -0.660911 -0.039122 -0.855812 -0.656956 -0.503569 1.411510 1.009843 -3.267358 1.814925 -0.042181 -1.262676 0.308355 -0.864337 2.269269 -1.868858 -1.920491 1.336256 -1.010298 -1.087302 -0.481345 -0.550736 0.747482 0.371783 0.341352 -1.459704 -1.974057 2.214982 -0.087444 2.256144 1.295728 -0.275030 1.842614 -0.995973 -1.365234 -1.069740 -1.385295 0.361627 -0.151604 -1.178767 -1.082032 -0.733727 1.396575 2.319085 -0.203803 -0.834043 -0.166129 1.807957 -2.359245 -0.194598 0.883617 1.026603 -1.126714 1.158559 1.249217 -1.685325 0.075641 -1.889547 0.334454 -0.930375 -1.289775 1.260713 -1.315127 0.287161 0.740343 -0.669441 -0.066666 1.062770 0.685138 0.170229 0.039642 2.440214 2.322452 -0.736418 -0.146984 -2.424773 1.067447 -2.454523 -1.987130 0.132500 0.374941 -1.094110 -0.511870 0.072710 1.509019 0.639732 -0.970360 -1.424905 0.564664 +PE-benchmarks/tarjan-algorithm.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.052319 0.376944 0.273296 -0.139008 0.406972 0.181769 0.159607 -0.012123 -0.212057 -0.362548 -0.148884 -0.327452 -0.539844 0.491512 -0.050788 0.209208 0.830855 0.182783 0.055348 -0.310817 0.349587 -0.542469 0.816179 0.790739 -0.729020 0.194675 0.515420 0.278514 0.182582 0.447447 -0.289821 -0.390958 0.321425 -0.413552 0.296740 -0.496550 -0.064027 -0.173056 0.018988 -1.133028 -0.094025 -0.084428 -0.112884 0.012246 -0.044683 0.517786 0.896206 0.433182 -0.273347 0.379408 0.343207 -0.037969 0.166704 0.131970 0.104423 0.211366 0.300597 0.102275 -0.269711 0.111777 -0.038701 -0.819852 0.009011 0.522992 0.712271 -0.126620 -0.092437 0.281899 -0.132815 0.018805 -0.038359 0.345054 0.257074 0.221965 0.481464 -0.871986 -0.013644 -1.219117 -0.219396 -1.762420 -0.588245 -0.590702 0.288594 -0.238510 0.392657 0.162515 0.814750 0.034474 0.285423 0.243251 0.850365 -0.722125 -0.184773 -0.324551 -0.079460 0.233339 -0.351158 0.031889 0.312300 -0.237022 -0.460331 -0.640401 0.640308 0.086815 -0.382762 -0.325008 -0.178350 0.493174 -0.765421 -0.459097 -0.876476 -0.329795 -0.210498 -0.867448 0.267424 -0.015315 0.707131 0.301790 -0.052808 -0.663636 0.121343 0.527024 -0.074621 -0.482947 -0.058551 0.595091 0.321104 -0.050345 0.283934 0.125503 0.257266 0.770597 0.883014 -0.130409 -0.239163 0.216166 -0.429483 -0.062546 -0.347539 -0.175166 0.341656 -0.561365 0.025789 0.349539 -0.368439 -0.086425 0.668624 -0.300856 0.337225 1.387202 -0.060863 0.308667 0.156155 -0.694433 0.317571 -0.274186 -0.297308 0.271730 0.552406 0.440995 -0.824803 -0.377321 0.153438 0.709415 0.307123 -0.727880 -0.436783 -0.237258 0.071988 -0.038842 0.161492 0.141799 0.097369 -0.334180 -0.058895 0.258864 1.097302 -0.500279 -0.412135 0.130615 -0.019441 -0.212918 -0.985279 -0.106710 -0.373512 -0.080356 -0.053848 -0.049322 0.159165 0.647480 -1.288600 0.528554 -0.399618 -0.352371 0.415090 0.090964 -0.165038 -0.802353 0.281693 0.544187 0.576286 0.103136 0.139600 -0.086960 -0.634781 -0.072395 0.036519 0.320726 -0.340608 0.499486 0.045316 -0.564836 -0.442393 -0.095887 0.090113 -0.321911 -0.017962 0.262165 0.199546 -1.352938 0.664861 -0.192933 -0.346965 0.288915 -0.065371 0.426112 -0.643825 -0.755409 0.328059 -0.119835 -0.273651 -0.258982 -0.167680 0.370668 0.004097 -0.233696 -0.273774 -0.734129 0.396068 -0.078306 0.293907 0.406178 0.245877 0.887824 -0.067072 -0.472518 -0.500225 -0.027262 -0.010762 -0.367327 -0.202763 -0.393645 -0.284940 0.478721 1.005535 0.041093 0.083233 -0.066153 0.599301 -0.887534 -0.294119 0.441434 0.683791 -0.206498 0.313157 0.458196 -0.483794 -0.349587 -0.379818 -0.131365 0.059318 -0.463211 0.246104 -0.666810 -0.012746 0.487760 -0.144298 -0.196919 0.428139 -0.055675 0.104941 -0.260107 0.604845 1.099536 -0.702933 0.037444 -0.457496 0.274503 -0.827546 -0.496568 0.015601 0.340721 -0.126295 -0.032354 0.176081 0.265032 0.063552 -0.283409 -0.158775 -0.258296 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -0.764512 -0.138784 -0.165633 -1.663793 1.492798 1.180988 0.638658 -0.919964 -1.542606 -1.098009 0.397744 -2.982215 -1.783715 1.842072 -0.661659 1.516075 3.158839 -0.029311 -0.480221 -1.020704 1.156347 0.215935 3.435881 3.538160 -2.365733 0.246619 0.332591 0.859258 0.166342 -0.081707 0.301680 -2.312100 0.766264 -1.306879 0.634883 -0.578590 -0.648991 0.093345 1.652559 -3.856937 -0.239558 0.916874 0.090908 0.051988 0.172860 0.996357 2.663819 1.854410 -0.452675 1.613554 1.694418 0.266227 1.074847 0.159576 0.256836 -0.041582 0.221975 -0.640299 -0.480820 -0.286010 -0.507809 -0.343467 -0.048404 2.326744 2.664851 -0.257705 -1.354439 0.707735 0.873311 0.407764 0.362908 2.048204 0.459731 0.994416 1.471853 -2.536157 -0.125328 -4.402136 0.415431 -4.653056 -2.308066 -0.479639 1.628578 0.844846 1.217446 -0.468448 3.674496 -0.281405 -0.352657 1.722294 2.758724 -1.945997 -0.607121 -0.811285 -0.699051 0.287102 -0.890954 0.611344 0.737967 0.794484 -2.172674 -1.225884 0.760302 -0.107018 -1.428148 -1.400543 0.079093 1.318345 -1.627332 -1.269362 -1.936925 1.497314 0.164542 -3.774991 -0.442092 -0.882290 0.507626 0.552084 -1.511777 -1.941786 0.701592 0.341571 -1.002978 -0.790177 -1.061754 1.816359 2.004338 0.330363 0.447245 1.448041 1.070272 3.599374 0.813801 -1.309072 -0.355429 0.700886 -0.475648 0.624800 -1.094615 -0.422705 0.968062 -2.020864 0.674518 1.077602 -1.361747 -0.597314 0.774514 -0.733513 0.102087 6.667395 -0.832930 2.480611 1.942509 -2.030635 1.279553 -1.290010 -0.087275 0.574443 1.626216 1.491715 -2.745015 -1.718518 1.957522 3.333829 1.208564 -2.371214 -0.222593 0.997682 0.490509 -0.892336 1.126287 0.462403 0.571296 -1.132063 -0.130323 1.666382 4.366830 -1.007693 -0.484164 0.288550 2.104753 0.381705 -1.891587 -0.483764 -2.351155 -0.324412 1.319980 0.982573 1.118141 2.678698 -4.205178 1.762437 0.000953 -0.037860 1.875136 0.998284 -1.744486 -2.931578 -0.108563 1.336275 1.950399 -0.413831 0.848004 -0.093229 -2.472032 0.063192 0.555195 0.710334 -1.742899 2.176011 -0.183988 -1.380670 -0.664510 -0.137923 -0.901823 -0.842095 -0.842191 1.667371 1.331984 -3.642902 2.169979 0.251169 -1.363746 0.229116 -1.233446 2.585200 -2.077567 -1.971406 1.388970 -1.238106 -1.177257 -0.370542 -0.660111 0.765372 0.298984 0.973695 -1.977577 -2.147875 2.575673 -0.066597 2.707263 1.488487 -0.269166 1.714923 -1.124681 -1.443633 -1.043784 -2.090259 0.606977 0.202006 -1.524450 -0.753909 -0.909226 1.635244 2.462619 -0.370324 -1.196171 -0.386714 1.776959 -2.717761 0.084349 0.924259 1.039247 -1.536304 0.987465 1.353463 -1.690559 0.236625 -2.054661 0.127793 -1.372321 -1.515699 1.456864 -1.221373 0.416945 0.677721 -0.814672 -0.137191 1.142146 0.696560 -0.022021 0.335059 2.682592 2.292056 -0.638993 -0.127170 -2.877075 1.406830 -2.731367 -2.367901 0.394018 -0.000190 -1.455610 -0.759373 -0.075274 1.781994 0.757090 -1.005019 -1.664231 0.827865 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.057648 0.648388 0.418300 0.049222 0.615643 0.222793 0.336686 0.238464 -0.260549 -0.715942 -0.232931 -0.776189 -1.220647 0.832532 0.025635 0.255540 1.368150 0.310009 0.120440 -0.347801 0.392143 -0.930212 1.319355 1.237604 -1.090699 0.323643 0.574143 0.359591 0.062952 0.740125 -0.394868 -0.778759 0.627881 -0.515564 0.573141 -0.598266 -0.128533 -0.402531 -0.248906 -1.835166 -0.217536 0.370446 -0.032172 -0.028688 -0.038314 0.945899 1.558136 0.705193 -0.344724 0.558553 0.300163 -0.414340 0.457993 0.246074 0.217772 0.136393 0.299242 0.087055 -0.776112 0.237807 -0.134751 -1.648854 -0.216417 0.749057 1.146751 -0.220055 -0.179444 0.365739 -0.370245 0.096607 -0.125462 0.561220 0.744484 0.317742 0.902177 -0.863652 -0.127058 -1.497464 -0.436032 -2.956595 -1.066016 -1.038067 0.775387 -0.071602 0.540923 -0.177820 1.323237 0.061694 0.481120 0.336563 1.576794 -1.171456 -0.425279 -0.639793 0.123088 0.416289 -0.674721 -0.002312 0.809099 -0.568011 -0.866136 -0.861040 1.010814 0.057908 -0.569558 -0.360935 -0.346520 0.875398 -1.208022 -0.669738 -1.706215 -0.760459 -0.133458 -1.461703 0.538916 0.371693 0.637926 0.795507 -0.144451 -0.868379 0.322135 0.665000 -0.088597 -0.771568 -0.306094 1.239040 0.306813 -0.073865 0.652948 0.513023 0.504170 1.097123 1.516360 -0.062707 -0.368352 0.318753 -0.710337 0.021170 -0.392729 -0.399009 0.538530 -0.936699 -0.111693 0.392789 -0.649290 -0.038407 0.449685 -0.384568 0.567403 1.760953 -0.129355 0.503463 0.160992 -1.110605 0.908865 -0.469411 -0.557400 0.248089 0.945486 0.802398 -1.084055 -0.561993 0.351575 1.221864 0.507021 -1.171925 -0.426015 -0.362733 0.338112 -0.272322 0.385481 0.423542 0.459451 -0.590308 -0.027964 0.493696 1.728698 -1.006449 -0.931220 0.273045 -0.175619 0.002760 -1.636738 -0.133328 -0.437667 -0.252754 -0.257526 -0.051706 0.117633 1.075478 -1.670400 0.950830 -0.554586 -0.631906 0.938174 -0.005164 -0.291615 -1.388628 0.427409 0.984947 0.936815 0.412449 -0.051024 -0.336349 -1.035568 -0.123846 0.059009 0.558660 -0.405347 0.865604 -0.288861 -0.756633 -0.803140 -0.569226 0.126724 -0.527700 -0.130301 0.411960 0.735290 -1.946965 1.141594 -0.270352 -0.672183 0.235696 0.027125 0.499419 -1.048264 -1.363043 0.402245 -0.518344 -0.954242 -0.537176 -0.324595 0.374364 0.109108 -0.722020 -0.255295 -1.188536 1.030084 -0.017912 0.603514 0.658266 0.444346 1.571975 0.724905 -1.060316 -0.564957 -0.243412 0.002300 -0.896628 -0.314132 -0.631732 -0.472785 0.770310 1.639203 0.091430 0.191017 -0.410929 0.920048 -1.369886 -0.668318 0.921354 0.719280 -0.159475 0.585349 0.906851 -0.761352 -0.585450 -0.742937 -0.258990 0.005284 -0.815542 0.154107 -1.287063 -0.161104 0.865580 -0.392299 -0.380155 0.531499 -0.127151 -0.016686 -0.585004 1.090341 1.645772 -1.383090 0.275954 -0.792841 0.550824 -1.362531 -0.784070 0.087747 0.682662 -0.180022 -0.107270 0.599926 0.150511 0.086878 -0.861955 -0.521288 -0.403850 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::back() = 0.020737 0.353491 0.337258 -0.047197 0.226925 -0.105918 0.110789 0.313897 -0.127840 -0.642251 -0.078365 -0.564273 -0.845733 0.378079 -0.126102 -0.286772 0.631133 0.110040 0.118875 -0.283394 -0.033954 -0.243617 0.643502 0.639088 -0.686195 0.120504 0.142865 0.335717 0.154812 0.301208 0.233209 -0.607266 0.185655 0.313039 0.458556 -0.155114 0.004864 -0.269479 -0.594370 -0.947462 -0.148625 0.494485 0.048052 0.054881 0.146138 0.673874 0.803819 0.358458 -0.253076 0.269756 0.297919 0.053873 0.241668 0.058099 -0.087675 -0.440735 0.095450 -0.381093 -0.421983 0.209238 0.017520 -0.915273 -0.293684 0.467748 0.645768 -0.105901 -0.045823 -0.119942 -0.164644 0.195786 -0.025016 0.280192 0.519006 0.306032 0.467661 0.125763 -0.106285 -0.711928 -0.026984 -1.774588 -0.544555 -0.606327 0.832937 0.467972 -0.192696 -0.251375 0.670438 0.219430 0.303310 0.450329 0.795935 -0.162117 -0.231274 -0.345674 -0.031156 0.446512 -0.396255 0.091831 0.141139 0.130273 -0.401091 -0.159085 0.205425 -0.245206 -0.293232 0.121871 -0.253193 0.366685 -0.802309 0.126916 -0.882652 -0.191429 0.391891 -0.787961 0.052153 0.144850 0.283792 0.374887 0.000111 0.139345 0.081256 0.040210 -0.062980 0.114043 -0.818415 0.605209 0.054118 -0.046861 0.286747 0.422396 0.334734 0.180600 0.421526 -0.050169 -0.268373 0.197865 -0.207513 -0.064324 -0.225926 -0.039844 0.422879 -0.334948 0.157696 -0.071548 -0.307435 -0.465151 -0.557177 -0.400914 0.366571 0.618831 -0.030875 0.255064 0.103407 -0.405235 0.279005 -0.151508 -0.274522 0.127651 0.434002 0.409777 0.195466 -0.229745 0.147823 0.623176 0.212014 -0.305064 0.173136 0.053654 0.106883 -0.263395 0.333247 0.223662 0.083158 -0.206412 -0.031866 0.357764 0.472052 -0.076312 -0.450321 -0.049319 0.250362 0.186219 -0.209881 0.146048 0.221740 -0.065681 0.090376 0.032447 0.111340 0.526980 -1.056261 0.471941 0.216271 0.014454 0.189663 -0.145354 -0.140806 -0.739544 0.338354 0.489624 0.423956 0.200759 -0.024655 -0.157856 -0.510245 -0.051037 0.123087 0.339733 -0.234810 0.389259 -0.138107 -0.208089 -0.490110 -0.560257 -0.032034 0.104815 -0.313884 0.168653 0.475135 -1.083969 0.591659 -0.323228 -0.388767 -0.304383 -0.147380 0.182837 -0.653522 -0.593472 -0.032358 -0.470461 -1.007596 -0.391767 -0.238370 0.102124 -0.090538 -0.188907 -0.063492 -0.344844 0.715790 -0.016454 0.230343 0.333112 0.208651 0.822530 0.518750 -0.401972 -0.089149 -0.203898 0.390300 -0.588942 -0.110805 0.344090 -0.207771 0.144003 0.848766 -0.140142 -0.070105 -0.064431 0.424539 -0.302217 -0.579704 0.334698 -0.039216 0.119270 0.639088 0.362716 -0.438963 -0.254926 -0.663747 -0.028487 0.091739 -0.430574 0.089990 -0.664733 -0.066001 0.527605 -0.167510 -0.442711 0.306373 -0.120488 -0.208426 -0.228772 0.609142 0.768552 -0.628706 0.520273 -0.514620 0.291129 -0.717943 -0.408218 -0.085001 0.050169 0.134921 -0.008492 -0.070878 -0.010932 0.121486 -0.347521 -0.442419 0.175280 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::end() = 0.036863 0.420172 0.456205 -0.148082 0.416983 0.283831 0.143694 0.163517 -0.264429 -0.324484 -0.173171 -0.561257 -0.655366 0.475978 -0.049466 -0.015843 0.773879 0.182877 0.010943 -0.151641 0.034716 -0.231736 0.704476 0.730406 -0.635751 0.257795 0.126788 0.256801 -0.072357 0.713503 -0.307077 -0.645398 0.141479 0.110151 0.337235 -0.299277 -0.164047 -0.243237 -0.259742 -1.141630 -0.079560 0.505574 0.042518 -0.025205 0.168146 0.321777 0.957479 0.348709 -0.091285 0.263288 0.154472 0.024728 0.316433 0.073465 0.228534 0.084793 0.496805 -0.192454 -0.403476 0.164019 -0.063744 -0.685235 -0.210165 0.464301 0.610990 -0.047451 -0.180503 -0.153182 -0.128275 0.041399 -0.063342 0.335676 0.323249 0.342122 0.331777 -0.029528 0.169397 -0.496682 0.015603 -1.189440 -0.617703 -0.528658 0.563651 0.462130 0.140547 -0.317534 0.786409 -0.098475 0.296903 0.085046 0.839579 -0.485559 -0.183111 -0.289827 -0.096133 0.243260 -0.247816 -0.077993 0.081039 -0.170697 -0.461537 -0.374076 0.478986 -0.056644 -0.354902 0.224994 -0.159253 0.457108 -0.685692 -0.200260 -0.810007 -0.144584 0.052615 -0.770973 -0.023891 0.092041 0.036625 0.360764 -0.158134 -0.374933 0.217806 0.250081 -0.182583 -0.154212 -0.638484 0.728678 0.160122 -0.142309 0.262403 0.197763 0.315487 0.424723 0.472383 -0.133475 -0.123447 0.227758 -0.209332 -0.083093 -0.213760 -0.087888 -0.027391 -0.421549 -0.053347 0.157627 -0.369471 0.072686 -0.453993 -0.218257 0.269525 1.150635 -0.198895 0.328405 0.047084 -0.604747 0.543496 -0.057937 -0.351036 0.054116 0.435609 0.515712 -0.448890 -0.286741 0.202450 0.722219 0.282638 -0.409275 0.084758 -0.112711 0.017806 -0.109614 0.403367 0.110535 0.172868 -0.330817 -0.088456 0.183490 1.010727 -0.252281 -0.786367 0.070430 -0.046408 0.054663 -0.404616 0.035881 -0.102097 -0.099311 -0.053759 -0.085874 0.203409 0.597352 -1.109382 0.608982 -0.111535 -0.453155 0.653626 -0.170687 -0.098115 -0.407882 0.151054 0.531753 0.644027 0.194655 -0.112941 -0.214533 -0.568580 -0.094879 0.056278 0.313476 -0.363462 0.497707 0.005496 -0.526921 -0.342977 -0.601914 0.023797 -0.206372 -0.423541 0.198526 0.349710 -1.120863 0.638948 0.023794 -0.260487 0.040574 -0.078808 0.109128 -0.543792 -0.663026 0.098855 -0.242124 -0.575339 -0.163830 -0.284655 0.198460 0.050041 -0.104682 -0.312820 -0.571287 0.588329 0.040462 0.389649 0.417947 0.171153 0.594942 0.717198 -0.439036 -0.115649 -0.285882 0.296763 -0.402480 -0.090577 0.014977 -0.409643 0.326602 0.874624 0.011518 0.024638 -0.431236 0.531297 -0.341887 -0.261847 0.406638 -0.162800 -0.084801 0.236726 0.464590 -0.326124 -0.286478 -0.504459 -0.134787 -0.058551 -0.352398 0.167656 -0.637782 -0.082122 0.503906 -0.286365 -0.440769 0.255870 -0.133308 -0.232177 -0.167383 0.674723 0.516603 -0.511905 0.538177 -0.432540 0.361179 -0.704225 -0.301578 -0.087544 0.017212 -0.213491 -0.104137 0.096170 0.104087 0.042718 -0.204124 -0.239285 -0.063488 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator--() = 0.005350 1.302451 1.170988 -1.047993 1.191265 1.610538 0.128084 -0.219045 -0.581054 -0.528000 -0.445551 -1.500289 -1.379194 1.135348 -0.368651 -0.141144 1.773186 -0.098505 -0.229799 -0.255651 0.408919 0.359995 1.664848 1.786509 -1.760354 0.528897 0.781937 0.646746 -0.036257 1.638706 -0.695610 -1.906884 -0.210431 0.463134 0.790039 -0.447105 -0.542788 -0.822657 -0.071397 -2.639973 -0.226558 1.058942 -0.481200 -0.086130 0.490623 -0.124804 2.585648 0.837940 -0.421447 0.084069 0.776771 0.906588 0.461305 -0.097216 0.527006 0.160436 1.506137 -0.148529 -0.210394 0.087219 -0.135583 -0.236643 -0.347850 1.580266 1.480207 0.134510 -0.628342 -0.388413 0.126069 -0.009320 -0.525414 1.128405 0.453690 1.559278 0.616435 -0.333177 0.598241 -1.687497 0.676583 -1.554201 -1.360938 -1.020746 0.478122 1.216414 0.440822 -0.798658 2.153558 -0.396144 0.571282 0.564133 2.095735 -0.907755 -0.055352 -0.838736 -1.033109 0.376912 -0.303436 0.135239 -0.661959 -0.221762 -1.086914 -1.206469 0.475535 -0.053806 -1.020894 0.483934 -0.249267 0.930446 -1.056693 -0.247799 -1.261431 0.340942 -0.023434 -2.189687 -1.332772 -0.481141 -0.103094 0.230364 -0.526478 -1.415842 0.406947 0.793277 -0.703960 -0.366128 -1.189262 1.498411 1.169831 -0.349974 0.160360 0.090744 1.042976 1.178261 0.581489 -0.512838 -0.177550 0.284448 -0.199332 -0.479190 -0.624482 0.370118 -0.290978 -0.667197 -0.125448 1.035541 -0.729938 0.138946 -0.947092 -1.131981 0.497769 4.931869 -0.824998 0.954344 0.170744 -1.681370 1.051455 0.123121 -1.105761 0.041384 0.747933 1.705290 -1.928284 -0.736836 0.943371 1.938870 0.576196 -0.865476 0.495040 0.156150 -0.570045 -0.535448 1.122418 -0.126526 -0.065745 -0.675784 -0.467431 0.868639 2.611856 -0.325729 -2.326934 0.164889 0.771320 0.173124 -0.200381 0.144962 -0.679061 -0.103825 0.696150 -0.259231 1.143629 1.498141 -3.270844 1.304883 0.289207 -1.229621 1.552659 -0.291063 -0.334775 -0.220907 0.573077 1.485795 1.264041 0.070441 -0.153573 -0.761095 -1.456730 -0.154455 0.387972 0.723316 -1.315026 1.334884 0.356447 -1.499522 -0.863321 -1.180567 -0.388992 -0.610988 -1.505909 0.520404 -0.050259 -2.695076 1.945795 0.502668 -0.175454 -0.022607 -1.010600 0.509246 -1.323102 -1.587382 0.434681 -0.310359 -0.618971 0.230990 -0.816244 0.692512 0.584312 0.925709 -1.655914 -1.675204 1.020771 0.186728 1.274844 1.049790 0.623894 0.914177 0.756351 -0.496933 -0.642319 -1.217097 1.502568 0.444510 -0.729360 -0.446564 -1.094211 0.771182 1.861268 -0.554499 -0.354532 -1.403697 1.030899 -0.671862 -0.026286 0.338096 -0.545792 -0.992950 -0.220699 0.666882 -0.269677 -0.519145 -1.369492 -0.153106 -0.745515 -1.035431 0.472983 -1.108822 -0.155282 1.322283 -0.900116 -1.027709 0.605976 -0.085457 -0.416885 0.249111 1.210560 0.723828 -0.726452 1.056575 -1.388766 1.078042 -1.823461 -1.145900 0.020511 -1.069714 -0.462835 -0.687086 -0.383498 0.584638 0.107773 0.327594 -0.193244 0.120331 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.009347 0.369540 0.211218 -0.139034 0.352797 0.287771 0.081346 -0.065336 -0.127741 -0.230885 -0.123914 -0.311895 -0.379510 0.323258 -0.077721 0.092510 0.511799 0.039272 0.034378 -0.140017 0.133101 -0.128161 0.541099 0.489581 -0.466744 0.159975 0.300812 0.115540 -0.018656 0.412668 -0.221362 -0.484725 0.160070 -0.089173 0.133307 -0.212963 -0.096269 -0.191897 0.018449 -0.705978 -0.056443 0.041168 -0.140564 -0.007873 0.014070 0.124200 0.694828 0.257362 -0.105360 0.194561 0.199941 0.168603 0.086400 0.067370 0.124355 0.107412 0.269863 -0.126257 -0.148889 0.038259 -0.039692 -0.340684 -0.116006 0.376408 0.417669 -0.028589 -0.097873 0.083938 -0.150018 0.001634 -0.095535 0.251213 0.162735 0.305362 0.210428 -0.327106 0.033297 -0.575219 -0.078898 -0.847538 -0.383178 -0.355220 0.114027 0.117241 0.234078 0.050648 0.553992 -0.011250 0.195417 0.129565 0.606140 -0.432461 -0.086535 -0.164159 -0.114441 0.105246 -0.165780 0.051698 -0.067710 -0.132815 -0.306127 -0.423368 0.322915 0.026223 -0.253763 -0.113343 -0.089336 0.260309 -0.510966 -0.199619 -0.494384 -0.131001 -0.106648 -0.576357 -0.072330 0.022518 0.322911 0.157210 -0.077498 -0.471228 0.118784 0.320711 -0.102948 -0.267056 -0.122251 0.324474 0.247197 -0.039758 0.150628 0.033185 0.252683 0.529124 0.399846 -0.088698 -0.107034 0.067327 -0.114471 -0.076422 -0.137779 -0.020158 -0.046430 -0.322423 0.106884 0.307423 -0.228867 -0.047260 0.052424 -0.282703 0.193346 0.945974 -0.144234 0.218971 0.060366 -0.520709 0.110632 -0.202914 -0.283852 0.057247 0.284118 0.390953 -0.379085 -0.222929 0.197340 0.481010 0.187394 -0.332549 -0.064830 -0.080333 -0.017405 -0.067947 0.187981 0.051246 0.039638 -0.226427 -0.085428 0.196488 0.760773 -0.211892 -0.328068 0.118335 0.053904 -0.006853 -0.304007 -0.037107 -0.187498 -0.027942 0.132474 -0.063605 0.147302 0.423248 -0.850739 0.344049 -0.153669 -0.297781 0.250046 0.042107 -0.097328 -0.194664 0.175479 0.421349 0.354761 0.055803 0.154352 -0.159906 -0.392256 -0.065891 0.053531 0.207587 -0.279512 0.323261 0.125487 -0.488228 -0.291000 -0.136023 0.043012 -0.190570 -0.180533 0.151483 0.127336 -0.931281 0.509016 -0.001040 -0.152279 0.105566 -0.122452 0.288511 -0.383729 -0.481289 0.194614 -0.152870 -0.161766 0.035014 -0.150016 0.199128 0.067355 0.056122 -0.250187 -0.398108 0.244163 0.092456 0.223128 0.274496 0.217228 0.440160 -0.103854 -0.254356 -0.218992 -0.160049 0.222548 -0.160018 -0.134756 -0.061414 -0.246895 0.290922 0.617659 -0.013759 -0.069212 -0.152979 0.310431 -0.411727 -0.054448 0.242245 0.290965 -0.221241 0.088599 0.273056 -0.172968 -0.213629 -0.271371 -0.008451 -0.094165 -0.324220 0.101763 -0.388525 -0.038951 0.381496 -0.151714 -0.243780 0.240977 -0.069838 0.008390 -0.089363 0.328444 0.455397 -0.357213 0.168650 -0.307862 0.184963 -0.533348 -0.368462 0.042391 0.024572 -0.107501 -0.117464 -0.064001 0.157987 -0.009801 -0.011361 -0.063220 -0.112196 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.097473 1.840169 1.526155 -1.064946 1.574044 1.915908 0.218109 -0.294476 -0.516576 -0.522702 -0.576822 -1.469221 -1.603830 1.316047 -0.304127 -0.099817 2.129924 -0.176660 -0.210666 -0.406036 0.626013 0.130979 2.080291 2.051502 -2.153535 0.741114 1.368074 0.579956 0.112636 1.892539 -1.399693 -1.880481 0.071816 0.067680 0.738361 -0.599961 -0.626305 -1.384783 0.020446 -3.004899 -0.246102 0.420941 -1.111487 -0.135093 0.327412 0.430123 3.328337 0.983807 -0.618443 0.086794 0.901777 0.761041 0.286762 -0.004730 0.681379 0.374537 1.952641 0.501665 -0.310293 0.030618 -0.114982 -0.655223 -0.402239 1.797170 1.650701 0.124903 -0.630997 -0.017833 0.028223 -0.211213 -0.735554 1.213679 0.838978 1.833229 0.892113 -0.992772 0.601768 -2.234546 0.230921 -2.381970 -1.649412 -1.398299 0.284486 0.228381 0.788169 -0.569132 2.404852 -0.307335 0.875738 0.480066 2.614843 -1.564744 -0.129810 -0.952092 -1.037803 0.351112 -0.398345 0.321601 -0.437471 -0.863549 -1.322362 -1.679887 0.995381 0.095901 -1.190946 0.267838 -0.250626 1.094320 -1.323664 -0.435188 -1.704635 -0.215164 -0.301302 -2.592190 -1.217149 -0.231061 0.984286 0.345149 -0.444571 -2.066603 0.402528 1.387221 -0.761819 -0.898124 -0.610928 1.815477 1.510939 -0.228651 0.409315 -0.092175 1.381223 1.654166 1.500441 -0.435834 -0.287736 0.117356 -0.514202 -0.564370 -0.607243 0.344061 -0.194319 -0.852692 0.025416 1.514664 -0.873447 0.306297 0.074875 -1.215902 0.695004 5.700470 -0.886878 1.047396 -0.017881 -2.205553 0.970156 -0.230184 -1.533881 0.098629 0.946007 2.041965 -2.757348 -0.843843 1.053981 2.183028 0.704512 -1.679669 0.375131 -0.124614 -0.705607 -0.622457 1.060782 -0.100291 0.144963 -0.849390 -0.558096 1.137348 3.390697 -0.863749 -3.000605 0.361203 0.255636 0.224431 -0.798057 0.022353 -0.501468 -0.052797 0.766495 -0.400889 1.284757 1.772374 -4.037370 1.442965 -0.218675 -1.836929 1.826654 -0.056956 -0.408153 -0.020310 0.849096 1.945043 1.439650 0.404907 -0.290040 -0.952649 -1.641708 -0.263239 0.423093 0.792334 -1.371614 1.467440 0.650195 -2.020006 -1.155247 -1.315189 -0.074845 -0.664153 -1.420943 0.567103 -0.611884 -3.944809 2.436205 0.517959 -0.285267 0.146171 -1.203740 0.692883 -1.550218 -2.065444 0.642759 -0.315273 -0.515145 0.165708 -0.859915 0.843346 0.749834 1.024598 -1.934420 -2.343727 1.078938 0.217798 1.360553 1.260604 1.012228 1.647767 0.338615 -0.708994 -1.162093 -1.159171 1.751063 0.424301 -1.004703 -0.708743 -1.320938 1.061716 2.307855 -0.681021 -0.081913 -1.633732 1.085986 -1.539033 -0.112969 0.598431 0.596112 -1.325892 -0.199670 0.917749 -0.264975 -0.782256 -1.306034 -0.631268 -0.821798 -1.393916 0.393495 -1.385259 -0.219543 1.716551 -0.917671 -1.072294 0.789299 -0.447634 -0.143291 0.055301 1.173950 1.979989 -1.484975 0.878462 -1.506260 1.375002 -2.246511 -1.661871 0.406166 -0.998681 -0.436552 -0.833922 -0.212586 0.654686 -0.067861 0.012523 -0.055651 -0.114244 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::pop_back() = 0.009207 2.353799 2.026517 -1.500352 2.571931 2.827547 0.308466 -0.035121 -0.898116 -1.165875 -0.990209 -2.719869 -3.014435 2.115227 -0.511644 0.018964 3.029317 -0.336679 -0.299058 -0.277067 0.864965 0.294366 2.949457 2.482363 -3.023090 0.901535 1.117226 1.149540 -0.428897 3.227625 -1.433481 -3.453838 -0.148006 0.736275 1.502549 -0.589635 -0.742989 -1.479480 -0.532650 -4.336241 -0.538090 2.264002 -1.154528 -0.004749 0.688716 0.295064 4.601554 1.540887 -0.797103 0.165992 1.147139 0.978535 0.940121 0.077938 0.705365 0.250965 2.301229 -0.329374 -1.005827 0.161634 -0.432621 -1.190362 -0.788126 2.429307 2.577693 -0.104560 -1.097282 -0.126738 -0.251738 0.031422 -0.937619 1.947364 1.335605 2.345377 1.474796 -0.076271 0.550067 -2.253069 0.815974 -3.099973 -2.391884 -2.232267 0.776889 2.277338 0.776876 -1.896445 3.970338 -0.680687 0.914702 0.992988 3.941694 -1.921793 -0.245912 -2.141547 -1.272620 0.399073 -0.820275 -0.301899 -0.600782 -0.594593 -1.885729 -2.022308 0.741326 -0.333350 -1.618116 0.553386 -0.933591 1.997495 -2.161610 -0.583399 -2.948567 0.337576 -0.031250 -3.874019 -2.016157 0.037881 -0.466820 0.656850 -0.478026 -2.315541 0.986511 1.609394 -1.251950 -0.809621 -1.777922 3.118575 1.893567 -0.731518 0.652097 0.656817 1.844291 1.993067 1.723175 -0.584417 -0.814140 0.575711 -0.316320 -0.698895 -0.866741 0.620246 -0.491965 -1.501106 -0.424431 1.832295 -1.181279 0.566903 -2.189715 -2.066526 1.107197 7.610588 -1.524020 1.331282 -0.206158 -3.037019 2.405126 0.168810 -2.051291 -0.102723 1.189387 3.026960 -3.161530 -1.342394 2.010111 3.219264 1.003001 -1.901487 1.109571 -0.018335 -0.436869 -1.104068 1.686896 0.574334 0.140452 -1.056912 -0.716931 1.142527 4.923894 -1.143768 -4.373919 0.927620 0.944485 0.407533 -0.837988 -0.019549 -0.959324 -0.721116 1.158559 -0.455505 1.636473 2.771812 -5.014219 2.364761 0.462305 -2.458928 2.871075 -0.890724 -0.123438 -0.530733 0.611640 2.850969 2.208919 0.506743 -0.465125 -1.791215 -2.500872 0.059350 0.714938 1.449708 -1.754827 2.181331 0.107722 -2.495617 -1.681376 -2.420761 -0.816511 -0.837507 -2.472379 0.775520 0.280862 -4.856664 3.530405 0.580238 -0.303202 0.045084 -1.105335 1.091002 -2.102852 -3.059844 0.966196 -0.889087 -1.754731 0.115449 -1.179832 1.032814 1.153436 0.880540 -2.516257 -3.478112 2.070412 0.488397 2.098675 1.712006 1.405990 2.066402 2.132373 -1.512073 -1.049725 -2.460174 2.521904 0.288041 -0.896552 -0.808685 -1.585610 1.560505 3.157355 -0.661226 -0.258113 -2.896815 1.788511 -1.447848 -0.286202 1.168569 -0.942119 -1.682562 -0.140618 1.625763 -0.329998 -1.317939 -2.473034 -0.048383 -1.562052 -1.883057 0.229320 -2.413280 -0.672663 2.634022 -1.554831 -2.002137 0.897805 -0.184110 -0.987838 -0.420751 2.652676 1.659332 -1.879679 2.002271 -2.323159 2.145966 -3.256945 -2.021729 0.129852 -1.430864 -0.538929 -1.034632 0.094482 0.669499 -0.018943 -0.028264 -0.545757 -0.445791 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_pop_back_aux() = 0.346588 3.344740 2.819312 -1.487122 2.723927 3.741511 0.393076 -0.006894 -0.757246 -0.852908 -1.000674 -3.328206 -3.338328 2.186538 -0.495722 -0.724625 3.327200 -0.453760 -0.427634 0.046135 0.098302 1.320369 3.233406 3.091053 -3.193131 1.308334 1.128438 0.642851 -0.889788 3.787794 -2.304535 -4.204594 -0.110142 1.576097 1.202131 -0.079812 -1.277545 -2.731265 -0.761318 -4.740892 -0.446536 2.567807 -1.601449 -0.406104 1.009088 -0.069927 5.863861 1.434499 -0.388840 -0.362262 0.736144 1.311192 0.861955 -0.092607 1.482909 0.032065 3.346827 -0.133781 -1.138305 0.042173 -0.381821 -0.747433 -1.631330 2.784345 2.422259 0.496008 -1.243806 -1.094128 -0.301218 -0.237509 -1.483611 1.977924 1.938131 3.527605 1.138865 1.182925 1.190156 -1.180303 0.769769 -2.096444 -2.828153 -2.212617 1.076772 2.557424 0.722394 -2.560149 3.882108 -0.773064 1.463339 0.386258 4.648732 -2.112132 -0.323229 -1.626181 -1.520673 0.516996 -0.528322 0.383747 -1.294828 -1.560290 -2.346685 -2.104760 0.968368 -0.204533 -1.791968 1.769532 -0.386493 1.718741 -1.867791 0.030916 -2.839159 -0.145053 0.265922 -4.207428 -3.029676 0.401968 -0.589267 0.973261 -1.061173 -2.720902 1.067991 1.541098 -1.479891 -0.864002 -2.277114 3.429578 2.040209 -0.536772 0.795890 0.270665 2.634672 1.999736 1.464143 -0.503888 -0.133832 -0.057395 -0.156693 -0.847041 -0.374843 0.806306 -1.578384 -1.088108 -0.126826 2.205495 -1.461624 0.971802 -3.497447 -1.848493 1.030112 8.466486 -1.947530 1.783226 -0.430624 -3.606214 2.331349 -0.089640 -2.864866 -0.763915 1.185877 3.771193 -3.306243 -1.120486 2.189152 3.689538 1.102377 -1.909503 2.453437 0.168705 -1.058654 -1.630009 2.432116 0.027969 0.690176 -1.465782 -0.971237 1.981358 5.383900 -1.090455 -6.155670 0.708270 0.351775 1.620682 0.429039 0.349014 0.013713 -0.231614 1.487548 -0.728775 2.093442 2.864980 -5.571688 2.581855 0.577472 -3.401860 3.763184 -0.786182 -0.605926 1.468679 1.139982 3.472016 2.357197 1.168577 -1.206901 -2.259426 -2.515860 -0.503432 0.824221 1.343260 -2.124809 2.415955 0.711680 -3.255210 -1.903646 -3.758799 -0.329863 -0.916524 -3.539483 0.763207 -0.278346 -5.746635 4.217647 1.586144 -0.300708 -0.674670 -2.044981 0.371907 -2.310492 -3.429393 0.484330 -1.309810 -1.955366 0.728686 -1.690487 0.691049 1.701583 1.988589 -3.183832 -3.445509 2.561231 1.066904 2.642600 2.040941 1.763287 2.026947 2.875721 -1.377507 -0.740281 -3.029121 4.001740 0.540659 -1.547963 -0.130627 -2.462074 1.474557 3.422593 -1.266318 -0.477290 -4.060479 1.392134 -1.161661 -0.057611 1.111068 -1.282004 -1.966578 -0.733595 1.682019 0.187064 -1.194507 -2.494799 -0.933400 -2.011464 -2.299838 -0.007359 -2.363324 -0.677123 3.038349 -2.039693 -2.463419 0.629993 -0.936672 -1.159989 0.244382 2.008744 1.424296 -2.204058 2.843233 -2.538979 2.589532 -3.500429 -2.526390 0.756388 -2.587028 -0.867867 -1.738765 -0.392806 0.402106 -0.313389 0.003695 -0.482280 0.242089 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.131179 0.552762 0.557138 -0.268240 0.807591 0.451236 0.379015 0.209270 -0.582230 -0.874294 -0.141369 -1.076811 -1.408202 1.120598 -0.114641 0.276578 1.732072 0.332859 0.037775 -0.451066 0.532730 -0.823875 1.661634 1.682332 -1.416175 0.344016 0.532690 0.513043 0.106647 0.882023 -0.283301 -1.172062 0.601669 -0.486688 0.625601 -0.740374 -0.218536 -0.315339 -0.168022 -2.334363 -0.227999 0.595239 -0.239647 -0.005652 0.092552 1.051580 1.828551 0.903163 -0.478375 0.821650 0.559845 -0.235995 0.504172 0.203323 0.234961 0.065455 0.305601 0.045198 -0.765526 0.283965 -0.197711 -1.621523 -0.228283 1.050929 1.469052 -0.258257 -0.335665 0.235087 -0.265112 0.165005 -0.021442 0.775299 0.834732 0.413489 1.078141 -0.952140 -0.215173 -2.084327 -0.222326 -3.392892 -1.293145 -1.015681 1.164062 0.235602 0.488539 -0.411014 1.740860 -0.027738 0.367175 0.762761 1.855813 -1.223207 -0.467384 -0.752965 -0.147272 0.478581 -0.750453 0.039095 0.620665 -0.380408 -1.093421 -1.014032 0.935836 -0.027172 -0.735447 -0.423704 -0.374077 1.113786 -1.489765 -0.671912 -1.818139 -0.325238 0.016049 -1.875521 0.218429 0.120303 0.741659 0.819187 -0.380830 -0.880873 0.425523 0.637907 -0.267499 -0.684859 -0.512531 1.481728 0.502298 -0.019156 0.583839 0.591374 0.600871 1.307742 1.478810 -0.273206 -0.357831 0.434672 -0.635806 0.091185 -0.588328 -0.323116 0.624247 -1.066793 -0.036010 0.421379 -0.804036 -0.217193 0.329425 -0.492862 0.540381 2.789501 -0.233899 0.838710 0.386448 -1.309859 1.052899 -0.443114 -0.505047 0.384173 1.120413 0.942507 -1.379251 -0.728136 0.575110 1.625092 0.650938 -1.414196 -0.355323 -0.182469 0.292275 -0.351724 0.619338 0.393598 0.425451 -0.705930 -0.090771 0.660280 2.202717 -0.950450 -1.171110 0.208976 0.196694 0.025838 -1.595315 -0.082643 -0.541261 -0.226552 0.115169 -0.022212 0.369502 1.385964 -2.411332 1.169958 -0.465173 -0.590451 1.006228 0.109630 -0.480185 -1.596332 0.367566 1.068940 1.242418 0.461954 0.035078 -0.257745 -1.339827 -0.104681 0.181442 0.626975 -0.661336 1.139825 -0.224791 -0.925565 -0.866539 -0.694575 -0.094785 -0.526599 -0.397299 0.596144 0.711669 -2.486420 1.341347 -0.210932 -0.756033 0.157413 -0.109662 0.819896 -1.284083 -1.622352 0.543082 -0.610048 -1.233075 -0.600922 -0.467893 0.494082 0.187306 -0.492850 -0.520818 -1.543591 1.340061 -0.052408 0.970454 0.831514 0.320848 1.812015 0.686432 -1.107019 -0.694784 -0.613498 0.474183 -0.824287 -0.449785 -0.595512 -0.603580 0.876742 1.837476 0.045523 -0.057814 -0.546623 1.227565 -1.459545 -0.610278 0.952047 0.708907 -0.271551 0.758107 1.033765 -0.981884 -0.496666 -1.053255 -0.170417 -0.163595 -0.899873 0.412850 -1.319228 -0.042713 0.871634 -0.359403 -0.514435 0.630774 -0.033599 -0.102651 -0.465488 1.459489 1.927531 -1.411031 0.436447 -1.133203 0.796304 -1.645536 -1.053020 0.002250 0.486894 -0.316373 -0.170343 0.378612 0.385454 0.253714 -0.821911 -0.657125 -0.133174 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::deque() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_base() = 0.005082 0.380833 0.596442 -0.581916 1.257868 0.388255 0.378473 0.045049 -0.356303 -0.761964 -0.200337 -0.324188 -1.177589 0.477920 -0.475743 0.040149 0.698194 -0.235790 0.383800 -0.671180 0.682906 -0.643818 1.329496 0.728110 -1.550335 0.253194 0.034619 0.776773 0.136076 1.396673 0.155786 -0.801205 0.192421 0.120128 1.074366 -0.478957 -0.150921 -0.093873 -0.613006 -1.349325 -0.417454 0.770256 -0.301903 0.671276 0.419966 1.041880 1.184975 0.581341 -0.738362 0.960579 0.720889 0.094445 0.770581 0.281501 -0.100639 -0.151774 0.574994 -0.336470 -0.421627 0.275434 -0.636330 -1.169032 0.324101 0.731555 1.247856 -0.493693 -0.135508 -0.011097 -0.470930 0.365657 0.314764 1.039386 0.360228 0.063678 1.263932 -0.348894 0.004249 -1.486196 0.068666 -2.296001 -0.818508 -1.176285 0.491919 0.702154 0.477917 -0.398147 1.526604 0.307134 0.199955 0.608261 0.693823 -0.355754 0.169818 -0.646400 -0.463886 -0.210783 -0.330668 -0.271412 0.078555 0.381366 -0.525697 -0.290272 0.279620 -0.430354 -0.355439 -0.387564 -0.920631 0.807675 -1.330233 -0.239821 -1.299224 0.341333 -0.227502 -1.327288 0.031313 -0.363717 0.512139 0.062160 0.526340 0.219753 0.367106 0.698683 -0.308647 -0.070726 -0.662848 1.258313 0.775460 -0.056921 0.196415 0.509488 -0.391938 0.406554 1.247141 0.208738 -0.874489 0.449584 -0.032702 0.117742 -0.277373 0.531867 0.789290 -0.612398 -0.232418 0.026193 0.029080 -0.249136 -0.352824 -0.913293 0.631021 1.910741 -0.474261 0.552596 0.170264 -0.731584 0.624433 0.451815 0.265789 0.857512 0.822522 0.288139 -0.724099 -0.590770 0.454801 0.608763 0.043025 -1.076264 -0.202509 0.073647 0.214244 -0.111639 0.027664 0.315135 -0.116295 -0.397219 0.179681 -0.522787 1.381294 -0.317541 -0.985062 0.376797 0.474936 -0.650655 -0.550013 -0.218016 -0.360577 -0.434336 0.200757 -0.074411 -0.005366 0.759128 -1.941560 0.646020 -0.102809 -0.103766 0.708629 -0.387601 0.368400 -1.396146 -0.022671 0.325773 0.447664 0.122527 -0.126724 -0.146295 -0.801591 0.746194 -0.045482 0.652438 -0.576112 0.781766 -0.321280 -0.687395 -0.657835 -0.981077 -0.235479 0.251144 -0.545359 0.099518 0.364876 -1.904318 0.395272 -0.483004 -0.627590 0.400436 0.413012 0.819803 -0.266726 -0.845878 0.326876 -0.626466 -1.207712 -1.017869 -0.118941 0.159204 -0.019857 -0.294380 -0.805372 -1.135545 0.820822 -0.535428 0.410892 0.670652 0.427692 1.506128 0.584477 -1.019731 -0.773857 -0.590733 0.564215 -0.356455 -0.031628 -0.087158 -0.332898 0.306618 1.231416 0.237237 0.415427 -0.324279 1.322585 -0.754787 -0.409718 0.812260 -0.005293 -0.045365 0.903387 0.758278 -0.184762 -0.704822 -0.725484 0.304239 0.037581 -0.230840 0.673722 -0.990185 -0.055725 0.308645 0.187761 -0.805710 0.358860 -0.036457 -0.074516 -0.821534 1.501602 1.455506 -0.883083 0.392191 -0.296006 0.499512 -0.926080 -0.126553 -0.615378 -0.119272 0.426678 0.437304 -0.007303 0.644409 0.594930 -0.461013 -0.169753 -0.331830 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.053172 0.402366 0.318813 -0.083756 0.461611 0.168547 0.216516 0.156755 -0.260168 -0.522489 -0.154892 -0.471152 -0.796841 0.606238 -0.064596 0.137441 1.010996 0.264104 0.094311 -0.328197 0.306898 -0.572391 0.977272 0.935371 -0.851524 0.205409 0.446001 0.328297 0.128549 0.532456 -0.202066 -0.606364 0.427920 -0.321060 0.382018 -0.525853 -0.054196 -0.217980 -0.183473 -1.362770 -0.125710 0.148300 -0.117936 0.013624 0.002782 0.674775 1.057275 0.522250 -0.298068 0.476791 0.340636 -0.077619 0.237753 0.165158 0.085567 0.100360 0.187999 -0.024661 -0.466335 0.171409 -0.067537 -1.100290 -0.126471 0.584695 0.857975 -0.158446 -0.097140 0.212203 -0.227548 0.092209 -0.012521 0.377715 0.463325 0.225593 0.620441 -0.671719 -0.147701 -1.257742 -0.258149 -2.184491 -0.727512 -0.745480 0.603973 -0.049083 0.316248 -0.021479 0.954278 0.059822 0.350627 0.376444 1.055629 -0.763809 -0.288928 -0.447374 -0.009174 0.349840 -0.479149 0.017692 0.409049 -0.256961 -0.585727 -0.659428 0.652008 0.013088 -0.419754 -0.306247 -0.247284 0.634799 -0.964868 -0.430902 -1.160278 -0.355310 -0.071551 -1.044045 0.248211 0.113951 0.672224 0.481437 -0.080289 -0.556882 0.184971 0.495350 -0.084585 -0.460222 -0.198136 0.786195 0.263826 -0.063899 0.394439 0.298239 0.310125 0.805669 1.008905 -0.114445 -0.287735 0.281166 -0.458771 -0.034811 -0.388568 -0.210340 0.398181 -0.663614 0.069500 0.295291 -0.467393 -0.194353 0.369836 -0.333021 0.435793 1.412708 -0.065394 0.375480 0.176407 -0.777853 0.456814 -0.317844 -0.328631 0.268215 0.678108 0.505823 -0.698965 -0.419243 0.184801 0.856781 0.378334 -0.806664 -0.325073 -0.251792 0.175741 -0.142564 0.252673 0.258753 0.195752 -0.399473 -0.040573 0.345872 1.198839 -0.568767 -0.593571 0.128806 0.044036 -0.098085 -1.005204 -0.076478 -0.277156 -0.122783 0.004264 -0.039564 0.142240 0.785323 -1.408718 0.657984 -0.340973 -0.332670 0.474667 0.066278 -0.201549 -0.930962 0.317572 0.654176 0.720567 0.233550 0.095079 -0.127424 -0.749958 -0.084638 0.078811 0.417635 -0.332497 0.588856 -0.059584 -0.574739 -0.558515 -0.309072 0.068874 -0.308263 -0.104193 0.299577 0.415531 -1.578479 0.779959 -0.262182 -0.473462 0.192833 -0.032351 0.476012 -0.793607 -0.942723 0.321558 -0.276408 -0.643198 -0.366096 -0.218744 0.370518 0.031794 -0.319700 -0.215023 -0.834314 0.669562 -0.015469 0.388321 0.470856 0.268010 1.135565 0.182369 -0.646614 -0.462248 -0.184165 0.139325 -0.588107 -0.208047 -0.301359 -0.325461 0.524433 1.196003 0.052893 0.030004 -0.182136 0.731793 -0.961579 -0.429618 0.598805 0.636671 -0.097626 0.501245 0.615727 -0.631984 -0.422534 -0.529324 -0.097468 0.080202 -0.558014 0.224881 -0.872918 -0.021413 0.586572 -0.166836 -0.315182 0.445383 -0.076013 0.014583 -0.356826 0.788124 1.249552 -0.905703 0.223032 -0.568042 0.370604 -0.988759 -0.581315 -0.015061 0.353560 -0.106370 -0.000394 0.210854 0.214578 0.082202 -0.435426 -0.333680 -0.223769 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -0.069960 4.663618 5.555731 -5.041240 6.985055 7.937218 0.816766 -1.300833 -3.101436 -1.681621 -1.364074 -7.970812 -7.562761 5.186948 -2.000625 -0.111728 6.875972 -2.165308 -1.551156 -1.282320 2.538384 2.481314 7.715852 6.831123 -8.430407 2.396137 0.806671 3.288056 0.017321 7.502108 -3.769377 -7.677532 -1.037483 2.509684 3.431223 0.059505 -2.520865 -3.801957 -0.645283 -10.395759 -1.282004 6.188106 -2.954165 0.986320 2.791216 2.705610 11.319228 3.630901 -2.001275 1.281415 3.805035 1.716809 3.175239 -0.346900 2.115645 -0.501922 8.040856 0.136558 -1.978295 -0.231588 -1.533089 -1.219132 -1.780321 6.457746 6.992583 -0.093766 -3.463066 -1.367028 0.859622 0.229940 -1.516912 5.977979 3.310421 6.238007 4.452508 1.803773 2.707082 -4.800264 2.914358 -6.216134 -6.118815 -4.097560 3.174791 5.736720 1.357253 -5.963071 10.415607 -1.405802 0.593879 2.235076 9.129655 -3.884128 -0.065074 -3.918951 -4.461704 -0.128921 -1.382820 0.291080 -1.837121 0.097262 -5.173679 -3.684458 1.065641 -1.592614 -4.197689 2.910845 -2.225243 4.344505 -4.841956 -0.111703 -5.405244 2.625555 1.226096 -9.938411 -6.747505 -1.412540 -1.205876 0.676033 -1.617805 -3.910707 2.173976 2.675991 -4.002178 -0.588338 -5.708500 7.941531 6.274567 -1.010795 0.722373 1.948166 4.385101 4.354499 2.390301 -1.846153 -1.788328 0.827738 0.269002 -0.643585 -1.616177 2.532620 -0.750542 -2.868048 -0.459498 3.246318 -2.119394 1.700728 -6.632318 -4.366645 1.138933 19.732180 -4.469627 4.868826 0.321047 -6.433336 5.510401 0.957738 -3.545681 0.763699 2.797335 6.853110 -7.923143 -3.609198 6.225336 8.094920 1.628111 -5.965777 4.985482 2.156649 -1.493540 -3.619147 4.867759 0.644084 0.606532 -2.040238 -1.524537 2.595037 12.877632 -2.099155 -12.461089 2.038955 2.211583 1.766360 0.122274 -0.000805 -0.628739 -1.562548 3.562961 -0.091757 4.821656 6.900398 -13.516484 5.446968 2.372411 -5.540481 8.742258 -2.028962 -1.189058 0.077437 0.470217 5.725049 5.066752 1.787676 -3.187867 -3.755312 -6.453145 1.014181 1.970485 2.751577 -5.552291 6.051677 0.986789 -5.900097 -3.419331 -7.811287 -2.332410 -0.179839 -8.051585 1.904701 -1.311791 -13.040525 7.754331 2.354968 -1.002481 -0.824366 -3.509033 2.620477 -3.958949 -6.263833 1.603070 -3.101705 -5.529720 -1.135384 -2.824806 1.412747 3.110674 4.345712 -8.874681 -8.966123 6.661152 -0.078310 6.431321 4.288853 2.040538 4.411484 5.883849 -3.376428 -3.002998 -6.595755 7.887617 1.938881 -3.154038 0.062169 -4.600256 2.974844 6.571998 -2.394770 -0.550335 -7.886015 4.422081 -2.698739 -0.353038 2.272634 -2.872883 -4.713151 0.305228 3.853061 0.000883 -1.703203 -6.358076 -2.044001 -5.175192 -4.070682 2.249964 -4.200671 -0.861943 4.777343 -3.629644 -4.783540 2.036558 -1.062321 -3.297258 -0.133895 7.786444 5.096005 -4.068763 5.402204 -6.532838 6.544580 -7.421504 -4.937688 0.751418 -5.561492 -1.802091 -2.834128 -1.017498 2.696701 1.061368 -1.519894 -2.009553 1.250547 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.096239 0.499968 0.926542 -0.520466 0.525887 0.402312 0.112524 0.230812 -0.494564 -0.295316 -0.223042 -0.759122 -0.713139 0.614207 -0.148313 -0.271932 1.014489 0.242724 -0.124928 -0.238903 0.007420 -0.111275 0.801432 0.982235 -0.899187 0.343540 0.078652 0.509741 0.063304 1.086834 -0.488197 -0.748043 -0.144250 0.476020 0.556125 -0.420524 -0.250992 -0.330189 -0.470314 -1.555800 -0.032570 0.778634 0.089111 -0.045143 0.389352 0.440343 1.232801 0.409227 -0.158998 0.158287 0.320524 0.220005 0.384740 -0.014452 0.355935 0.089999 1.102261 -0.099048 -0.384584 0.234650 -0.038916 -0.599635 -0.165899 0.690561 0.778653 0.030590 -0.270186 -0.522243 0.143782 0.033502 -0.032890 0.412988 0.291283 0.560127 0.312700 0.140664 0.525722 -0.649825 0.342069 -1.228531 -0.755470 -0.595708 0.848838 0.695106 -0.063299 -0.599676 1.005292 -0.222960 0.393447 0.083330 0.961154 -0.356393 -0.159901 -0.386084 -0.435093 0.357167 -0.177359 -0.160584 -0.085913 -0.026114 -0.535744 -0.310673 0.496468 -0.134400 -0.485478 0.757540 -0.144651 0.583352 -0.748349 -0.028987 -0.793847 0.145857 0.232328 -0.958594 -0.279802 -0.222941 -0.055278 0.250044 -0.257746 -0.309585 0.226229 0.251999 -0.404538 0.168615 -1.275356 1.047001 0.247268 -0.245477 0.147561 0.091282 0.395100 0.165886 0.311930 -0.335677 -0.090741 0.349847 -0.266225 -0.254981 -0.404844 0.026782 -0.004620 -0.350521 -0.159040 0.093024 -0.456987 0.158413 -0.812831 -0.247003 0.322942 1.970433 -0.337015 0.482402 0.011283 -0.673862 0.787241 0.300408 -0.429788 0.085189 0.470996 0.653380 -0.719624 -0.369974 0.221914 0.934005 0.362780 -0.443022 0.298216 -0.072377 -0.276709 -0.058185 0.611935 -0.042617 0.019680 -0.379557 -0.217784 0.169122 1.264593 -0.004136 -1.429171 -0.076152 0.004939 -0.007174 -0.177547 0.169568 0.046429 -0.015278 -0.076311 -0.170968 0.543479 0.763620 -1.852271 0.838220 0.068138 -0.640380 1.025901 -0.403654 -0.074257 -0.415563 0.140393 0.621984 0.938617 0.198722 -0.417093 -0.187870 -0.710656 -0.122225 0.087100 0.399458 -0.596263 0.605696 0.185570 -0.668782 -0.330304 -1.044293 -0.060762 -0.087215 -0.823331 0.217858 0.067917 -1.499784 0.819041 0.139080 -0.164201 -0.052554 -0.278048 -0.128288 -0.688841 -0.720996 -0.036350 -0.091796 -0.701638 -0.291950 -0.440042 0.327151 -0.011387 0.201957 -0.674177 -0.808918 0.707980 -0.141554 0.575037 0.557542 0.110073 0.564926 1.267953 -0.257582 -0.155127 -0.375440 0.605234 -0.251298 -0.135016 0.228231 -0.614945 0.280926 1.006031 -0.153166 0.086777 -0.676868 0.725244 -0.093123 -0.341106 0.316219 -0.709198 -0.137155 0.252829 0.486741 -0.399929 -0.320151 -0.752236 -0.361024 -0.079931 -0.334359 0.369345 -0.637903 -0.036553 0.586646 -0.357726 -0.690522 0.303298 -0.208854 -0.457748 0.017997 0.922000 0.605701 -0.424171 0.922815 -0.584502 0.586987 -0.852703 -0.275593 -0.234260 -0.393388 -0.326109 -0.115808 -0.049865 0.232656 0.086510 -0.025512 -0.200853 0.165317 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = 0.100547 0.592691 0.939344 -0.497284 0.534410 0.460509 0.118140 0.038051 -0.451386 -0.122393 -0.290402 -0.682036 -0.568323 0.592537 -0.021815 -0.004629 1.027851 0.218847 -0.167723 -0.263660 0.173592 -0.423794 0.822501 1.044627 -0.920269 0.447837 0.295807 0.515397 0.164983 1.131723 -0.828632 -0.414765 -0.159896 0.081238 0.580477 -0.547948 -0.327370 -0.328762 -0.152414 -1.662372 -0.056919 0.535753 0.206730 -0.052937 0.304873 0.432141 1.314882 0.417808 -0.173246 0.154213 0.304061 -0.034330 0.500871 -0.004233 0.472712 0.406841 1.414579 0.246375 -0.284359 0.222134 -0.013152 -0.652259 0.064192 0.702664 0.808693 -0.002416 -0.342896 -0.283036 0.246145 -0.109562 -0.116160 0.526842 0.103321 0.559671 0.333347 -0.463187 0.812346 -0.843933 0.286008 -1.164962 -0.823259 -0.600479 0.504051 0.308903 0.295308 -0.387866 1.102168 -0.302233 0.400237 -0.207822 0.964172 -0.666498 -0.082904 -0.323299 -0.424338 0.248725 -0.128246 -0.198929 0.117402 -0.241907 -0.533280 -0.486338 0.867372 0.040996 -0.586570 0.675148 -0.133678 0.574863 -0.623219 -0.376151 -0.790484 -0.123960 -0.123884 -0.971808 0.061174 -0.290538 0.014783 0.212961 -0.228927 -0.759179 0.201118 0.453944 -0.363161 -0.151881 -1.124503 1.115235 0.396463 -0.293017 0.180084 -0.030107 0.397722 0.369679 0.545695 -0.340968 -0.105352 0.378772 -0.469513 -0.254187 -0.418852 -0.082361 0.050190 -0.437842 -0.438336 0.238368 -0.449356 0.524268 -0.109656 -0.176112 0.256454 2.280370 -0.317622 0.463056 0.016500 -0.771488 0.977676 0.293000 -0.507874 0.191538 0.512836 0.734692 -1.395864 -0.423220 0.191768 0.992800 0.351526 -0.645894 -0.095056 -0.183140 -0.309513 0.066000 0.571414 -0.123230 0.076142 -0.420236 -0.206845 0.077699 1.555334 -0.265182 -1.379058 0.001780 -0.322987 -0.264782 -0.802508 0.059105 -0.320177 -0.087425 -0.459246 -0.182441 0.531256 0.757455 -1.873997 0.871175 -0.273092 -0.919290 1.339880 -0.424393 -0.067686 -0.629635 0.162172 0.628391 0.930412 0.089721 -0.464320 -0.211109 -0.786243 -0.128512 -0.004556 0.339146 -0.695546 0.722347 0.190001 -0.775435 -0.278920 -0.856940 0.040353 -0.338917 -0.662886 0.266925 -0.045933 -1.405896 0.829527 0.207479 -0.165730 0.273642 -0.258056 -0.190876 -0.660535 -0.724563 0.072356 0.088882 -0.278153 -0.314667 -0.443557 0.388069 -0.021637 -0.041073 -0.828882 -0.960085 0.510327 -0.310617 0.548131 0.637346 0.137791 0.494983 1.303729 -0.328487 -0.338337 -0.101050 0.136148 -0.137120 -0.161540 -0.296232 -0.690041 0.411187 1.120837 -0.080325 0.365767 -0.647835 0.746956 -0.352824 -0.333190 0.314413 -0.520871 -0.309347 0.035080 0.458481 -0.328970 -0.326838 -0.644471 -0.562291 -0.060352 -0.325129 0.469166 -0.667163 -0.100940 0.620797 -0.487081 -0.515001 0.401688 -0.211289 -0.328146 -0.036779 0.932880 0.717170 -0.449315 0.636631 -0.550794 0.562807 -0.874483 -0.192957 -0.188549 -0.094202 -0.459618 -0.197365 0.264781 0.308629 0.109465 -0.139267 -0.051653 -0.099189 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.553526 0.769790 1.315022 -1.897717 2.871847 1.097842 0.474009 -0.019396 -1.165053 -2.137771 -0.853133 -1.157587 -3.177117 1.926767 -0.949624 0.838224 2.399264 -0.507265 0.306036 -1.736693 2.673771 -2.240775 3.248641 1.878040 -4.092482 0.303097 1.196809 2.726609 1.126194 2.767699 0.320958 -1.615048 -0.130625 -0.557273 2.980548 -1.653601 0.198028 0.339775 -1.021943 -4.161996 -1.038682 1.610274 -0.794000 1.327406 0.427854 2.617922 2.917673 2.045262 -2.298900 1.731825 2.584778 0.162388 1.567383 0.437366 -0.872111 0.086896 1.039218 -0.250933 -0.731418 0.571730 -0.819884 -3.114993 1.238632 2.301544 3.695594 -1.597301 -0.656685 1.400007 -0.376017 0.778727 0.398268 2.535961 0.627479 0.156155 3.297753 -2.697312 -0.430935 -5.358241 0.780577 -6.622421 -2.093746 -3.092626 0.795461 1.394359 1.042594 -0.845547 4.813114 0.256883 0.177524 2.436290 2.555357 -1.524775 0.165943 -3.148859 -1.251644 0.096755 -1.511720 -1.239138 0.740674 1.330150 -1.311535 -1.596844 0.575781 -0.855511 -1.565923 -1.764018 -2.607222 2.728080 -3.300008 -1.376107 -3.803547 1.151162 -0.590745 -4.023696 0.293485 -1.260222 1.192967 -0.091832 1.368375 -0.659372 0.684534 2.239464 -0.822509 -0.642357 -1.552071 3.412951 2.302862 -0.921373 0.504449 1.528913 -0.117154 1.649781 3.293887 -0.265817 -2.842794 1.909925 -0.920242 -0.242501 -1.761017 0.935845 2.835338 -2.226996 -1.121407 0.688644 -0.320864 -0.523428 0.726208 -2.854142 1.755089 6.920926 -0.788578 0.884756 0.308026 -2.124394 2.660435 1.045644 -0.129992 2.237072 1.864145 1.354701 -3.513945 -1.943917 1.537334 2.407355 0.583476 -2.874418 -1.435470 -0.180109 0.563586 -0.425189 0.207902 1.398885 -0.912868 -0.512272 0.009648 -0.722914 4.343443 -1.379681 -1.790986 1.274496 1.884986 -2.360884 -3.363320 -0.666271 -2.128390 -1.739962 0.480498 0.050080 0.774014 2.759094 -5.308761 1.999765 0.033289 -0.614767 1.577577 -1.356543 0.934750 -4.972683 0.129340 1.453361 1.842883 -0.388637 0.304352 -0.698187 -2.823540 1.683506 0.371235 1.830503 -1.472496 2.203651 -1.091892 -1.338392 -1.790156 -1.074768 -1.587412 0.068370 -0.885427 0.661205 0.663613 -4.604623 2.134330 -1.842742 -1.072692 1.409986 0.650417 2.668531 -1.719088 -2.687865 1.720986 -0.484447 -2.303784 -2.469755 -0.314491 1.570476 -0.169730 -1.363288 -2.082631 -4.202686 1.692986 -1.486340 1.118097 1.549301 1.000661 3.535695 1.204199 -2.247674 -2.457629 -1.419364 0.400295 -0.341113 -0.154518 -1.741873 -0.266262 1.542738 3.409638 0.302133 0.903167 -0.494971 3.350040 -2.528865 -1.492335 1.513606 0.331494 -0.867325 2.012816 1.741827 -1.263016 -1.915797 -2.784456 1.196382 -0.277392 -1.320523 1.476798 -2.857186 -0.319813 1.796863 -0.023528 -1.524496 1.644544 0.785402 -0.427916 -2.225495 4.602311 4.054915 -2.240484 0.403703 -1.948505 1.743887 -3.051404 -0.929550 -1.404202 0.468378 0.902464 0.756819 0.757048 1.698740 1.188625 -0.823253 -0.647206 -1.580914 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.280910 0.613662 0.426447 -0.599673 0.844427 0.632485 0.320973 0.051308 -0.666269 -1.040547 -0.330176 -1.031987 -1.389410 1.282096 -0.228504 0.452377 2.095984 0.446534 0.043443 -0.534550 0.953454 -1.043138 1.853733 2.014472 -1.735615 0.263934 0.913270 0.779172 0.241084 0.996547 -0.054674 -1.413386 0.452316 -0.726259 0.965912 -1.177803 -0.166536 -0.018111 0.020002 -2.885518 -0.274307 0.573288 -0.105652 0.024633 0.073935 0.645630 2.005653 1.093749 -0.744913 0.780481 0.875257 0.220471 0.516575 0.174494 0.094786 0.377272 0.092692 -0.061909 -0.494528 0.316245 -0.207380 -1.487697 0.150149 1.411289 1.831774 -0.277386 -0.355897 0.413253 -0.145578 0.199629 -0.081347 1.000794 0.530010 0.479292 1.148071 -1.794876 -0.265078 -3.085269 0.092258 -3.780301 -1.375936 -1.269303 0.840214 0.484197 0.738523 -0.259233 2.191700 -0.189740 0.484950 1.173702 2.035650 -1.322093 -0.363830 -1.168401 -0.485547 0.575270 -0.821031 -0.099039 0.457998 -0.166642 -1.157254 -1.484060 0.899331 0.109820 -0.945198 -0.873886 -0.471973 1.338210 -1.613000 -1.022398 -1.981880 -0.052610 -0.275200 -2.252913 0.233016 -0.446271 0.611939 0.642826 -0.379751 -1.371093 0.385607 0.982599 -0.309643 -0.879388 -0.572037 1.570940 0.764930 -0.290043 0.442744 0.509139 0.499187 1.654503 1.555301 -0.468928 -0.509133 0.717625 -0.835953 -0.207241 -1.067918 -0.287039 0.956991 -1.312671 -0.338509 0.700721 -0.897722 -0.332382 0.842007 -1.001816 0.752910 4.177721 -0.302800 0.863879 0.559387 -1.574169 1.321209 -0.229427 -0.543608 0.607904 1.356390 1.152597 -2.121570 -0.968774 0.558287 1.913777 0.745119 -1.278540 -0.932550 -0.284618 0.170042 -0.235801 0.600134 0.298644 0.016762 -0.768904 -0.161360 0.698724 2.550773 -0.915488 -0.746055 0.181760 0.863901 -0.496242 -2.031926 -0.155221 -1.440835 -0.305297 0.179246 -0.067241 0.609989 1.660641 -2.917649 1.345391 -0.522797 -0.488672 0.866987 0.054028 -0.403057 -2.329193 0.552785 1.248605 1.462428 -0.011791 0.479733 -0.252633 -1.668306 -0.052131 0.217723 0.915873 -1.001767 1.381571 -0.272522 -1.125154 -1.007916 -0.183969 -0.450034 -0.955556 -0.342217 0.690266 0.884055 -2.408637 1.636286 -0.356649 -0.673225 0.545066 -0.202405 1.144345 -1.624883 -1.854597 0.860413 -0.241634 -0.814509 -0.475604 -0.529140 1.012039 0.114794 -0.592707 -0.776681 -1.928157 1.153687 -0.115091 1.079927 0.955057 0.395611 1.837786 0.332790 -1.042369 -1.053230 -0.744563 0.159342 -0.511645 -0.530344 -1.255345 -0.625445 1.104909 2.296199 0.025001 -0.212366 -0.280068 1.614586 -1.617817 -0.507815 0.859023 0.602856 -0.477149 0.533800 1.008605 -1.250901 -0.729231 -1.318974 0.335048 -0.043489 -1.059798 0.651718 -1.592286 -0.001511 1.039194 -0.453425 -0.482507 0.895998 0.371323 0.022620 -0.373299 1.725452 1.681549 -1.191194 0.215630 -1.356043 0.726941 -2.022858 -1.103591 -0.309352 0.568906 -0.295675 -0.110403 0.309161 0.706980 0.325488 -0.305003 -0.515182 -0.421894 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/quicksort-for-linked-list.cpp__lastNode(Node*) = -0.305558 0.392817 0.144142 -0.820964 0.739069 0.615591 0.130243 -0.276474 -0.739986 -0.841517 -0.179385 -1.080422 -0.830203 0.970168 -0.271153 0.371866 1.508354 0.111192 -0.095475 -0.414435 0.788293 -0.544973 1.227973 1.524360 -1.210570 0.228144 0.639693 0.449254 -0.008525 0.755033 0.189943 -1.495302 -0.035998 -0.351891 0.782829 -0.685094 -0.420794 0.197446 0.413493 -2.142549 -0.201887 0.746833 0.035719 0.029348 0.174985 -0.113204 1.474720 0.650390 -0.465946 0.610695 0.772213 0.618515 0.414733 -0.077890 0.275416 0.386265 0.268940 -0.233163 -0.022333 0.195518 -0.351515 -0.160649 0.209545 1.161692 1.200826 -0.177718 -0.545829 0.138290 0.088638 0.196586 -0.108541 0.988075 0.032109 0.497183 0.636765 -1.416375 -0.054706 -2.566183 0.604348 -2.401891 -0.984065 -0.509173 0.421553 0.859969 0.455784 -0.169791 1.895754 -0.483976 0.045006 0.998960 1.476856 -0.608049 -0.027654 -0.666038 -0.795720 0.112642 -0.236296 -0.136897 -0.076969 0.255493 -0.856572 -1.045552 0.413494 -0.022763 -0.740650 -0.609062 -0.257937 0.897415 -1.090890 -0.598369 -1.024640 0.649711 -0.080928 -1.631276 -0.394105 -0.715296 -0.164219 0.250326 -0.718507 -1.133346 0.447722 0.525286 -0.474712 -0.362440 -0.452192 0.968861 0.761361 -0.149359 0.004216 0.327373 0.427307 1.268695 0.578397 -0.567478 -0.144483 0.509714 -0.160541 -0.162993 -0.667677 -0.050809 0.352451 -0.738058 -0.200666 0.495011 -0.617259 -0.323815 0.289448 -1.035387 0.176401 3.804551 -0.577360 0.871959 0.518150 -1.115005 0.879508 0.042938 -0.345417 0.278643 0.949629 1.067048 -1.477950 -0.800451 0.846767 1.579624 0.481029 -0.654532 -0.665678 0.205406 -0.071120 0.004315 0.681658 -0.108570 -0.097357 -0.520269 -0.247550 0.393301 2.106520 -0.347422 -0.423001 0.055636 1.213737 -0.279891 -1.048256 -0.026543 -1.639963 -0.169076 0.424526 -0.042793 0.701345 1.285634 -2.584711 1.022899 -0.223201 -0.312759 0.613201 0.169083 -0.269720 -1.966070 0.078397 0.835527 1.110373 -0.349005 0.596572 -0.279969 -1.246351 0.030979 0.185034 0.651648 -1.179802 1.201422 -0.183664 -0.928920 -0.443594 0.084433 -0.677446 -0.743903 -0.536872 0.545240 0.703081 -1.565991 1.254276 0.167924 -0.136587 0.240894 -0.184929 0.974415 -0.936437 -1.230055 0.671420 -0.210806 -0.367144 0.106038 -0.591029 0.713371 0.122794 -0.017289 -0.872807 -1.250800 0.842839 -0.077770 1.182149 0.736289 0.102716 0.916178 -0.091523 -0.498734 -0.595628 -0.740498 0.317182 0.075626 -0.339541 -1.031970 -0.512668 0.684764 1.381738 0.011621 -0.502560 -0.317928 1.145120 -0.818947 0.173755 0.333577 -0.179942 -0.656217 0.161721 0.563862 -0.609053 -0.265966 -1.243348 0.513345 -0.552883 -0.520940 0.617865 -0.842621 -0.097629 0.617263 -0.576972 -0.377278 0.613735 0.577207 -0.072633 0.093373 1.178493 0.592080 -0.350782 0.174822 -1.092763 0.516485 -1.305683 -0.802506 -0.396673 0.201604 -0.466350 -0.472592 -0.247537 0.753833 0.370552 0.250270 -0.283729 0.055410 +PE-benchmarks/quicksort-for-linked-list.cpp__partition(Node*, Node*) = -0.665926 2.516307 1.452815 -2.673289 3.047956 3.370384 0.507381 -0.646630 -1.904435 -2.643046 -0.811214 -3.639496 -3.752676 3.370156 -0.967153 0.497396 5.335523 -0.075555 -0.283459 -1.267581 2.491792 -0.704325 4.813774 5.334457 -4.918139 0.949183 2.835511 1.506326 0.239409 2.799262 -0.219323 -5.313052 0.263890 -0.769964 2.353574 -1.934443 -1.296776 -1.032909 0.724096 -7.434560 -0.830493 1.901480 -1.826731 0.033482 0.633753 0.440174 6.386959 2.502380 -2.008517 1.476340 2.742931 2.181483 0.894738 -0.197185 0.662566 0.605342 1.220024 0.089368 -0.290904 0.395126 -0.821234 -1.140197 -0.095528 4.351266 4.352064 -0.360409 -1.680497 0.528350 0.129296 0.342282 -0.993374 3.358624 1.484980 2.807952 2.688914 -3.920043 -0.506241 -8.244234 1.433221 -8.008469 -3.714789 -2.648038 1.444097 1.947704 1.539859 -1.223931 6.459613 -1.063062 0.921293 3.634205 5.852777 -2.714394 -0.258323 -2.801430 -2.644847 0.786931 -1.210848 0.362707 -0.624624 -0.280821 -3.230630 -4.074597 1.201567 -0.120479 -2.744237 -1.828266 -0.957863 3.119012 -3.643159 -1.482579 -4.153559 1.364541 -0.197285 -6.357711 -2.463917 -1.627307 1.095380 0.998593 -1.827243 -4.055286 1.207276 2.417858 -1.614335 -1.755346 -0.880405 3.825647 3.311603 -0.415994 0.498528 0.979553 2.353178 4.467863 2.967350 -1.457027 -0.817705 1.165209 -0.778462 -0.799594 -2.173705 0.470850 1.157631 -2.427087 -0.153728 2.656447 -2.160795 -1.090960 0.909492 -3.755713 1.216525 14.101184 -1.895506 2.913336 1.274733 -4.540100 2.669127 -0.412883 -2.173477 0.897030 3.051190 4.284335 -5.842055 -2.480549 2.903912 5.597254 1.693094 -3.304671 -0.867115 0.524235 -0.647188 -1.178227 2.430942 -0.073646 -0.016793 -1.827342 -0.961876 2.565300 7.510079 -1.760001 -3.669450 0.414383 3.627923 -0.090469 -2.857852 -0.006567 -3.796981 -0.498322 2.588573 -0.316669 2.756402 4.558489 -9.254986 3.350850 -0.335399 -1.915069 2.314847 0.706314 -1.176786 -4.165984 1.343122 3.767056 3.545394 -0.134268 1.238683 -1.545969 -4.367361 -0.088578 1.158698 2.242048 -3.668371 4.056846 -0.014079 -3.624532 -2.395310 -0.921262 -1.872471 -2.093957 -2.426036 1.788670 0.841612 -7.356102 5.151977 0.499466 -0.840565 0.342167 -1.850780 3.420060 -3.804424 -4.964390 2.317092 -0.987766 -1.838185 0.273623 -2.058524 2.402474 1.332135 1.061492 -3.650059 -5.360276 3.201295 0.306989 3.946755 2.765917 1.323025 4.249660 -0.648742 -1.941352 -2.710139 -3.407139 3.129305 0.764445 -2.027201 -3.117022 -2.160225 2.485573 5.288410 -0.904555 -1.583957 -2.237091 3.498326 -3.737332 0.140765 1.285124 1.052458 -2.588465 0.476168 2.092437 -1.771905 -1.310873 -4.117877 0.947932 -1.967430 -2.790020 1.575893 -3.345268 -0.292759 3.071215 -1.875266 -1.722193 2.101913 0.947468 -0.086445 0.153399 3.608898 3.769415 -2.616526 0.970519 -4.114941 2.656562 -5.230460 -3.857732 -0.308708 -0.776127 -0.895046 -1.757017 -0.897580 2.184962 0.838354 0.298754 -0.968923 0.195190 +PE-benchmarks/quicksort-for-linked-list.cpp___quickSort(Node*, Node*) = -0.293232 1.416101 0.636639 -1.220639 1.407583 1.436794 0.252205 -0.287137 -0.677599 -1.579229 -0.352925 -1.803167 -2.246053 1.683406 -0.591421 -0.016914 2.663523 -0.165299 0.018797 -0.951100 1.207086 -0.100481 2.684656 2.692182 -2.768266 0.384369 1.893206 0.996212 0.622960 0.944784 0.455914 -2.647540 0.311575 -0.263216 1.234041 -0.836915 -0.413189 -0.851567 0.084789 -3.711936 -0.526039 0.666619 -0.951763 0.101982 0.253335 0.573385 3.245274 1.478871 -1.232810 0.816722 1.722165 1.232644 0.331008 -0.042101 -0.014947 -0.332089 0.456107 -0.154165 -0.168496 0.175783 -0.166865 -0.946607 -0.322728 2.383475 2.499034 -0.215003 -0.682505 0.454224 -0.015907 0.412945 -0.553364 1.710493 0.883631 1.692933 1.636762 -1.966498 -0.554415 -4.653214 0.500256 -4.983554 -1.937968 -1.635837 0.932500 0.486002 0.624762 -0.018195 3.203697 0.066549 0.615818 2.148822 3.083210 -1.151510 -0.239971 -1.403285 -1.213625 0.902415 -0.970269 0.637017 -0.088088 0.110483 -1.638924 -2.050715 0.452568 -0.186318 -1.455253 -1.077362 -0.595089 1.486385 -2.058378 -0.492867 -2.327543 0.395034 0.063898 -3.512043 -1.555198 -0.691741 1.373009 0.509075 -0.557877 -1.722931 0.379158 1.163454 -0.625134 -0.869571 -0.185725 1.562998 1.815505 -0.063900 0.389437 0.727761 1.357767 2.399977 1.715593 -0.599799 -0.657753 0.501255 -0.482390 -0.407604 -1.189100 0.319736 0.972318 -1.243014 0.622182 1.442985 -1.065602 -1.406677 0.628340 -2.210696 0.891471 6.844685 -0.673534 1.392348 0.839655 -2.256132 0.540153 -0.578693 -1.195233 0.635606 1.577343 2.156246 -2.101689 -1.184770 1.329985 2.846786 0.844176 -1.821017 -0.382280 0.374706 -0.276746 -0.926800 1.157555 0.155569 -0.129677 -0.818604 -0.426206 1.749025 3.113130 -0.864197 -2.008237 0.113325 2.305265 0.036822 -1.213117 0.108713 -1.458619 -0.164001 1.585986 -0.045842 1.310298 2.265985 -5.050050 1.581612 0.420917 -0.509465 0.809154 0.557410 -0.792489 -2.126622 1.200964 2.016960 1.525357 -0.093653 0.720349 -0.741653 -2.308437 -0.053787 0.711844 1.143108 -1.684278 1.999307 -0.011618 -1.560431 -1.616412 -0.327587 -0.675605 -0.770978 -1.053647 0.954064 0.410045 -4.344562 2.708360 -0.314185 -0.783328 -0.115128 -1.328951 1.967290 -2.306167 -2.559432 1.073087 -0.772969 -1.328917 -0.083637 -0.972697 1.227334 0.767750 0.972966 -1.660689 -2.288653 1.671721 0.148030 1.722761 1.411464 0.899512 2.560265 -1.361392 -1.043323 -1.545406 -1.409715 1.791852 0.258390 -1.241657 -1.306576 -0.969577 1.202267 2.954206 -0.793455 -0.932025 -0.876169 1.673985 -2.347826 -0.393211 0.598143 1.299594 -1.190493 0.772943 0.964076 -1.108715 -0.697477 -2.112144 0.364776 -0.716660 -1.779553 0.766666 -1.862127 -0.062520 1.787666 -0.895999 -0.882585 1.278655 0.304507 0.134880 -0.016537 1.548930 2.607383 -1.794733 0.398423 -2.305623 1.251112 -2.942662 -2.307541 0.090702 -0.721760 -0.032948 -0.724452 -0.767364 0.980525 0.463472 -0.077641 -0.802726 0.252532 +PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.020724 0.431927 0.370055 -0.171283 0.382601 0.093451 0.138425 0.171559 -0.196891 -0.596682 -0.121792 -0.489373 -0.808855 0.502256 -0.144958 -0.114220 0.852452 0.138855 0.098639 -0.373016 0.208958 -0.351128 0.860875 0.840813 -0.877322 0.158739 0.438203 0.377815 0.254903 0.386546 0.027369 -0.617350 0.275353 -0.014792 0.431107 -0.372553 -0.016501 -0.293371 -0.351607 -1.202275 -0.142259 0.172639 -0.171814 0.053024 0.070782 0.707432 0.998843 0.467864 -0.365597 0.360968 0.447591 0.121309 0.162586 0.088528 -0.049612 -0.193631 0.187524 -0.134588 -0.339715 0.167991 0.005929 -0.932787 -0.172205 0.618711 0.801336 -0.125007 -0.067661 0.086012 -0.138212 0.132671 -0.041731 0.364867 0.478548 0.353765 0.570611 -0.435209 -0.138312 -1.234114 -0.110828 -2.074924 -0.641533 -0.706995 0.655091 0.082804 0.061023 -0.041465 0.867093 0.175854 0.350771 0.522610 0.951872 -0.456456 -0.225248 -0.420978 -0.130867 0.421773 -0.435631 0.127715 0.181755 -0.020014 -0.494495 -0.489723 0.393927 -0.117332 -0.400618 -0.157182 -0.251800 0.496948 -0.910284 -0.117729 -0.993359 -0.215774 0.145065 -0.996369 0.038394 0.018127 0.706539 0.342673 -0.012574 -0.264026 0.080850 0.343161 -0.095359 -0.174986 -0.435835 0.659883 0.283991 -0.041464 0.297826 0.299125 0.364311 0.546201 0.744290 -0.115690 -0.312256 0.227358 -0.341446 -0.104949 -0.371316 -0.049242 0.486315 -0.482018 0.190195 0.201629 -0.382453 -0.429639 0.104234 -0.477142 0.428267 1.328961 -0.049143 0.338030 0.163433 -0.639654 0.243470 -0.245665 -0.335618 0.261034 0.560301 0.500979 -0.363388 -0.347728 0.178771 0.775453 0.296587 -0.623210 -0.104475 -0.071620 0.049278 -0.218743 0.281300 0.193741 0.050978 -0.287649 -0.069511 0.428246 0.873773 -0.284553 -0.550255 0.015958 0.260926 -0.003393 -0.571696 0.043652 -0.029366 -0.054273 0.184716 -0.008757 0.216846 0.690687 -1.473263 0.545941 -0.027715 -0.143518 0.245515 0.022972 -0.189698 -0.811709 0.408507 0.610653 0.562652 0.175504 0.093036 -0.127651 -0.666746 -0.064693 0.142557 0.391043 -0.346672 0.504585 0.002981 -0.444949 -0.565603 -0.360665 -0.000335 -0.067479 -0.220022 0.247729 0.268020 -1.529903 0.754141 -0.325821 -0.417426 -0.055465 -0.213985 0.422973 -0.784904 -0.794696 0.188482 -0.320179 -0.753272 -0.363994 -0.237959 0.312138 -0.017420 -0.094048 -0.247293 -0.666638 0.637547 -0.040147 0.309628 0.428415 0.279656 1.042379 0.063458 -0.448472 -0.403682 -0.197278 0.382369 -0.457650 -0.230832 0.007243 -0.276523 0.337570 1.070924 -0.129851 -0.057060 -0.074109 0.588316 -0.718934 -0.488752 0.398023 0.479792 -0.073940 0.578997 0.443641 -0.541802 -0.347800 -0.624941 -0.066798 0.082904 -0.545404 0.211635 -0.748386 -0.010788 0.601492 -0.138230 -0.383927 0.443446 -0.104534 -0.032048 -0.240717 0.662431 1.176871 -0.782839 0.315287 -0.598496 0.360620 -0.923208 -0.598776 -0.026284 0.088800 0.065340 -0.020317 -0.053685 0.179766 0.111312 -0.304964 -0.339099 0.016559 +PE-benchmarks/quicksort-for-linked-list.cpp__printList(Node*) = -0.144366 0.545652 0.553012 -0.747537 0.568323 0.445225 0.095989 -0.027703 -0.477350 -0.946781 -0.107264 -1.141787 -1.157272 0.870807 -0.406115 -0.148639 1.343147 -0.012561 -0.041435 -0.488390 0.466234 -0.233692 1.273109 1.437443 -1.431335 0.134720 0.607383 0.704545 0.378985 0.599913 0.351827 -1.301082 -0.060997 0.185274 0.856542 -0.430940 -0.136613 -0.245156 -0.255699 -1.952344 -0.251798 0.758955 -0.088124 0.063294 0.260981 0.460333 1.556545 0.760246 -0.611305 0.364934 0.919864 0.549214 0.331425 -0.068921 -0.032505 -0.383648 0.397565 -0.311290 -0.195712 0.230501 -0.055635 -0.646030 -0.075275 1.257807 1.350935 -0.106436 -0.304406 -0.075976 0.103846 0.256346 -0.124037 0.825128 0.392088 0.820196 0.759741 -0.713000 0.010821 -2.233662 0.476457 -2.545584 -0.960698 -0.786649 0.827753 0.863931 0.039551 -0.366403 1.618637 0.047621 0.277324 1.101221 1.507842 -0.370318 -0.180712 -0.777090 -0.730417 0.538379 -0.531079 0.172750 -0.154320 0.403680 -0.796798 -0.706775 0.165402 -0.173045 -0.708155 -0.115287 -0.339077 0.747218 -1.126001 -0.108681 -1.116895 0.323926 0.319927 -1.771587 -0.438867 -0.538228 0.276277 0.236935 -0.317151 -0.499506 0.182958 0.381633 -0.371619 -0.012970 -1.155507 1.048657 0.681045 -0.084172 0.109568 0.428077 0.633191 0.758266 0.505638 -0.432534 -0.347640 0.378304 -0.335677 -0.231836 -0.690819 0.096554 0.734447 -0.614025 0.000000 0.346779 -0.550726 -0.649061 -0.252013 -1.017636 0.487330 3.291663 -0.332387 0.748608 0.408821 -1.004287 0.673149 -0.002017 -0.464630 0.307778 0.762595 0.981614 -0.919097 -0.635208 0.638472 1.451162 0.429213 -0.638206 -0.069287 0.290630 -0.160609 -0.365656 0.662799 0.091792 -0.256494 -0.421248 -0.233441 0.745554 1.486377 -0.099808 -0.791802 -0.069125 1.098204 -0.026918 -0.526344 0.180382 -0.595902 -0.038175 0.481895 0.028855 0.720978 1.164831 -2.618461 0.923386 0.364801 -0.107319 0.526636 -0.121374 -0.382720 -1.510006 0.527302 0.929194 0.844279 -0.071242 0.229022 -0.243352 -1.169220 0.003833 0.276070 0.633252 -0.889314 0.969937 -0.083787 -0.701378 -0.814634 -0.476698 -0.508927 -0.233479 -0.740356 0.470517 0.409899 -1.862254 1.322523 -0.207099 -0.383245 -0.233393 -0.592141 0.681360 -1.255573 -1.155825 0.306256 -0.449562 -0.959446 -0.317514 -0.547161 0.521636 0.060080 0.167798 -0.804994 -1.114751 0.936293 -0.166138 0.866349 0.688102 0.294696 1.108672 0.293364 -0.383463 -0.578593 -0.663015 0.775620 -0.099847 -0.526318 -0.235471 -0.456503 0.494355 1.441315 -0.410413 -0.375327 -0.219230 0.920837 -0.611012 -0.469606 0.234618 -0.183500 -0.447544 0.483383 0.443354 -0.705895 -0.291653 -1.319993 0.171864 -0.269060 -0.806636 0.462512 -0.896150 0.005720 0.816789 -0.400294 -0.602353 0.607054 0.200542 -0.207085 0.055537 1.142206 1.026134 -0.623589 0.516186 -1.268156 0.640464 -1.465778 -0.994795 -0.179836 -0.244056 -0.040555 -0.253414 -0.325031 0.480629 0.359728 -0.010903 -0.471450 0.341905 +PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -0.218691 1.452672 1.233520 -1.267757 1.517554 1.478318 0.320202 -0.384979 -0.791779 -1.098201 -0.430913 -1.550375 -1.887368 1.719002 -0.457768 0.200251 2.752350 0.028665 -0.147248 -0.927120 1.299999 -0.649179 2.660917 2.746057 -2.703202 0.543177 1.900428 1.013874 0.713992 1.428037 -0.722242 -1.885344 0.340544 -0.683995 1.123473 -1.174203 -0.464621 -0.938595 0.237393 -3.758625 -0.367457 0.122888 -1.027214 0.002136 0.166025 1.120286 3.365657 1.432450 -1.126886 0.679419 1.527947 0.657458 0.340464 0.054731 0.370457 0.274917 1.384754 0.711123 -0.276566 0.174914 -0.177360 -1.283912 -0.005504 2.254699 2.397368 -0.152544 -0.628328 0.501479 0.136247 0.068563 -0.482433 1.521567 0.854306 1.550461 1.530538 -2.486847 0.100535 -4.414590 0.174608 -4.686438 -1.926706 -1.623390 0.670065 -0.359162 0.953998 -0.060253 3.042498 -0.074720 0.726438 1.392298 3.015684 -1.777065 -0.280024 -1.281656 -1.179303 0.641887 -0.850551 0.438660 0.214526 -0.459255 -1.617151 -2.114876 1.167206 0.112933 -1.425269 -0.690208 -0.466085 1.565148 -1.931079 -0.861418 -2.284838 -0.113098 -0.336340 -3.324145 -0.738541 -0.718274 1.871682 0.468936 -0.543721 -2.201303 0.400331 1.604044 -0.686379 -1.150506 -0.286839 2.017756 1.752343 -0.105773 0.430469 0.257661 1.248118 2.273472 2.200377 -0.665773 -0.584774 0.476354 -1.017388 -0.444108 -1.211660 0.096808 1.005806 -1.328056 0.115187 1.503201 -1.113037 -0.471076 1.603259 -1.580856 0.901358 6.920851 -0.688698 1.359339 0.544215 -2.405065 1.023108 -0.430593 -1.226072 0.687357 1.556793 2.024337 -3.304260 -1.242660 1.153225 2.722954 0.934345 -2.349478 -0.643782 -0.107452 -0.427050 -0.595195 0.967808 0.076350 -0.049794 -0.966766 -0.483472 1.387099 3.745045 -1.217321 -2.453137 0.244000 0.998751 -0.265125 -2.040068 -0.069472 -1.235976 -0.098973 0.819506 -0.208765 1.357656 2.265837 -5.179447 1.706284 -0.398649 -1.253453 1.551807 0.329390 -0.707237 -1.926973 1.032787 2.021524 1.749193 0.215651 0.178808 -0.598471 -2.229614 -0.142364 0.466681 1.065361 -1.606377 1.883916 0.345769 -1.937386 -1.481042 -0.646382 -0.304711 -0.886987 -0.926735 0.912377 -0.273002 -4.638703 2.672593 -0.082307 -0.678291 0.357747 -1.120166 1.473019 -2.165633 -2.558031 1.049888 -0.368487 -0.796813 -0.424327 -0.867639 1.269621 0.557723 0.597094 -1.885478 -2.835631 1.394122 -0.214941 1.645340 1.424249 0.900078 2.593719 -0.502079 -1.001679 -1.822968 -0.952820 1.326955 0.167161 -1.224031 -1.456768 -1.115632 1.392645 2.942341 -0.638685 -0.202752 -0.960487 1.755214 -2.517944 -0.479768 0.784377 1.565512 -1.315869 0.499843 1.116201 -1.100354 -0.851738 -1.721493 -0.424253 -0.604821 -1.671939 0.846040 -1.770329 -0.030176 1.683889 -0.744119 -0.809061 1.237264 -0.003117 0.195078 -0.097838 1.728458 3.266382 -1.927686 0.302924 -2.049118 1.413399 -2.865477 -2.116409 0.224516 -0.346707 -0.327623 -0.629020 -0.138655 1.078238 0.315074 -0.336773 -0.403551 -0.101572 +PE-benchmarks/quicksort-for-linked-list.cpp__main = 0.202731 0.301357 1.222645 -0.659238 0.316606 -0.658999 0.131372 1.272655 -0.768940 -1.424250 -0.083927 -0.945222 -1.609669 0.797519 -0.357431 -1.390148 1.502660 0.519171 0.155162 -0.942299 -0.192804 -0.312267 1.114659 1.513151 -1.664736 0.258729 -0.002610 1.113032 0.798340 0.659473 0.875916 -1.138410 -0.109156 1.353820 1.271049 -0.652175 -0.013517 -0.408389 -1.930027 -2.373751 -0.171053 1.294567 -0.061133 0.207573 0.747105 2.097339 1.418507 0.665349 -0.862191 0.720757 0.966194 0.464689 0.368948 -0.104989 -0.369087 -1.123456 0.375624 -0.532840 -0.722577 0.755911 0.163388 -1.811041 -0.426439 1.005511 1.340165 -0.279647 -0.151191 -0.984863 0.291628 0.534697 0.328589 0.446132 1.152774 0.361774 1.053260 0.659348 -0.322961 -2.056103 0.581933 -4.350961 -1.124275 -1.204408 2.865328 0.941065 -1.344175 -0.921097 1.327188 0.289237 0.698074 1.528921 1.201422 0.537263 -0.454401 -0.842820 -0.518635 1.304320 -0.642496 -0.031023 0.192638 0.845904 -0.710408 0.119143 0.099362 -0.923732 -0.642724 0.867632 -0.507832 0.950206 -1.800904 0.918105 -1.690907 0.615192 1.535463 -1.437886 -0.344190 -0.289283 0.968941 0.582769 -0.088549 1.333161 0.020189 -0.309660 -0.449334 1.280880 -2.340280 1.453343 -0.054915 -0.154131 0.323511 0.856953 0.495456 -0.577604 0.571698 -0.413430 -0.530698 0.854649 -0.336008 -0.374121 -0.894414 0.149464 1.398885 -0.319347 0.521113 -0.830683 -0.682269 -1.494260 -1.463491 -0.765031 0.758470 1.836978 0.007719 0.657273 0.258651 -0.318639 0.518806 0.412925 -0.247731 0.596128 1.012112 0.543607 0.716397 -0.379381 -0.088681 1.273105 0.476188 -0.640927 0.592057 0.258671 -0.230213 -0.299081 0.873738 0.142449 -0.069485 -0.240547 -0.145748 0.565342 0.596353 0.623305 -1.615172 -0.779195 1.068809 0.192750 0.282477 0.705527 1.097678 0.084893 0.536434 -0.020472 0.700412 1.052981 -3.306420 1.039495 0.843735 0.436304 0.067772 -0.312454 -0.132839 -1.858749 0.511723 0.614591 1.370990 0.490800 -0.443324 0.136586 -1.013524 -0.075688 0.403427 0.736677 -0.624098 0.743027 -0.089530 -0.067660 -0.665579 -1.611354 -0.323164 0.937814 -0.969336 0.254574 0.376442 -2.753719 0.890955 -0.894688 -0.694315 -0.977363 -0.425106 0.161015 -1.396863 -0.991108 -0.387942 -0.501893 -2.691588 -1.289203 -0.712078 0.474496 -0.465890 0.165551 -0.241955 -0.911933 1.768436 -0.421770 0.620466 0.761131 -0.118396 1.985214 1.343113 -0.336120 -0.181743 -0.567152 1.530853 -1.127827 -0.018560 1.380804 -0.523385 -0.181660 1.591275 -0.498821 -0.186001 -0.155326 1.239270 -0.181365 -1.377409 0.376584 -0.606942 0.769935 2.044916 0.661171 -1.349798 -0.384130 -1.715441 -0.174274 0.588857 -0.432718 0.669582 -1.190843 0.122063 0.821690 -0.008811 -1.159782 0.663160 -0.351510 -0.758033 -0.232359 1.493677 2.224106 -1.164620 1.625075 -1.046756 0.886116 -1.306682 -0.546898 -0.809043 -0.573642 0.398215 0.310320 -0.718627 0.114646 0.468661 -0.499065 -1.028125 1.130317 +PE-benchmarks/coin-change.cpp__count(int*, int, int) = -3.878268 -3.697409 -1.996152 -5.045562 3.663703 6.408878 2.231508 -6.251247 -7.056741 -1.407604 3.418058 -10.525721 -4.218029 8.096028 -3.029737 6.753733 9.513965 0.183266 -4.340647 -2.572341 5.947151 0.673720 11.370700 12.035612 -6.274016 -0.176656 -1.123539 2.763737 1.406482 -0.912728 2.582428 -4.556669 2.723682 -6.842168 -0.327164 -1.974790 -2.264828 3.063614 7.274793 -11.612742 -0.798741 3.260258 1.121641 0.009120 0.194304 2.337356 5.982061 6.210248 1.257123 6.012276 4.113919 -0.685379 4.214321 0.252478 2.535261 0.197584 1.273336 -1.345184 -1.153762 -1.811906 -2.629265 0.176091 0.463790 8.030170 9.035107 0.432059 -4.475704 2.486402 2.558601 2.200533 2.583077 6.728383 -1.260187 2.926517 3.997181 -8.772979 1.255305 -11.055495 1.806924 -10.081010 -5.373687 1.937470 5.207107 3.791505 4.670182 -0.706375 11.993290 -1.326813 -5.349959 7.320958 9.140743 -6.672277 -1.765413 -0.950437 -3.207239 -0.747772 -2.805656 2.940137 2.259016 4.645438 -7.286057 -3.356089 0.619117 0.967320 -4.189687 -4.027106 0.136320 5.719906 -5.480433 -4.767039 -1.812133 5.979820 -0.713532 -12.348978 -4.006200 -5.078428 0.417872 1.605891 -6.713603 -6.325286 3.705192 0.897455 -1.877227 -2.870949 -1.443727 4.363392 5.454335 1.935787 -1.147122 5.521500 2.094950 12.210784 0.351017 -4.412115 1.312916 1.784126 -0.490256 4.623406 -2.452012 -1.998016 1.265772 -7.092981 0.983715 3.585834 -4.083925 -1.691862 1.225405 0.624883 -1.653077 23.455732 -2.273000 9.580288 7.896632 -6.579037 2.985789 -4.051113 2.397430 2.470042 4.326971 3.194214 -10.828056 -6.575175 7.893039 11.675956 3.999278 -7.739206 -0.311158 3.555779 1.349987 -2.362358 4.304206 1.253930 0.801907 -3.466490 -0.733601 4.865409 14.859737 -4.800898 0.291424 1.683932 3.530844 0.694701 -6.805533 -1.666507 -6.543180 -0.372671 3.650693 3.340367 3.346459 8.726557 -9.369618 7.009061 -0.793173 0.877095 7.126014 3.465738 -6.835174 -7.522411 -3.366356 3.018671 5.904782 -1.414002 -1.014327 1.388944 -9.143978 0.532205 2.395513 1.180418 -5.504666 7.931597 -0.197434 -3.253454 -2.148685 1.763058 -2.505595 -3.013007 -2.666451 6.520626 1.032826 -7.570895 6.027058 2.609111 -3.860790 0.482246 -1.923674 7.626273 -5.491037 -6.656459 4.869267 -3.899396 -4.355002 -2.122496 -2.200039 2.170518 3.419454 2.499553 -7.590637 -5.743265 8.289505 -2.662625 10.117308 4.139854 -2.218419 4.342757 -3.337216 -4.961678 -3.641311 -6.726936 0.810590 1.840371 -5.314937 -3.505589 -1.825935 6.338421 5.518690 0.412393 -5.993759 -0.500456 7.563525 -6.410350 -0.247468 2.505789 2.112417 -6.326211 2.512818 3.939083 -5.609120 2.990772 -5.203302 -1.151324 -6.428400 -3.925556 6.257737 -1.142974 2.844550 -1.189267 -1.180119 1.283323 3.155028 3.846651 0.840398 3.321863 10.143550 4.430248 -0.598622 -1.640017 -10.000329 5.724747 -7.713565 -7.370166 1.674786 2.610720 -5.114101 -2.704021 -0.361104 6.899496 5.349331 -6.130272 -4.906305 3.693306 +PE-benchmarks/coin-change.cpp__main = -0.000817 0.286545 0.480710 -0.156777 0.562984 0.064245 0.302624 0.331386 -0.574692 -0.730088 0.040638 -1.062413 -1.107484 0.825433 -0.025215 0.006258 1.151622 0.184112 0.000544 -0.314693 0.063977 -0.482367 1.069071 1.122417 -0.826824 0.340228 -0.021134 0.228847 -0.112006 0.659042 -0.094954 -0.998996 0.344394 0.023437 0.398742 -0.245490 -0.324938 -0.273645 -0.309677 -1.548302 -0.126907 0.886681 -0.006913 -0.038725 0.202835 0.935389 1.264466 0.540665 -0.166683 0.722440 0.246457 -0.349816 0.478897 0.097649 0.360933 -0.207240 0.361362 -0.130280 -0.740346 0.313204 -0.215661 -1.120958 -0.411006 0.611637 0.871571 -0.206124 -0.386524 -0.153593 -0.200056 0.210712 0.062861 0.528727 0.744871 0.223871 0.716077 -0.023005 -0.121935 -1.047095 -0.063804 -2.477979 -0.976771 -0.445698 1.355701 0.479880 0.000991 -0.544562 1.143449 -0.067710 0.094951 0.470885 1.291076 -0.555041 -0.397273 -0.279364 -0.048853 0.302155 -0.412796 -0.016191 0.500388 -0.150501 -0.821358 -0.287099 0.613326 -0.240504 -0.438846 0.122565 -0.189451 0.729638 -1.127187 -0.137052 -1.195532 -0.056088 0.430329 -1.178454 0.040555 0.317975 0.224724 0.718831 -0.521072 -0.161465 0.469493 0.018610 -0.331548 -0.087684 -0.741058 1.085669 0.091264 0.179011 0.426305 0.592327 0.518495 0.600105 0.786128 -0.208939 -0.060352 0.238898 -0.165124 0.253098 -0.117483 -0.295452 0.217724 -0.591508 0.156353 -0.103946 -0.581989 -0.228090 -0.550117 -0.144734 0.152839 1.321561 -0.279918 0.741103 0.241651 -0.729046 0.717036 -0.289869 -0.303002 0.056822 0.758712 0.639797 -0.242075 -0.408868 0.581941 1.170188 0.450465 -0.937398 0.151729 0.118147 0.246695 -0.224864 0.664988 0.241144 0.553566 -0.500288 -0.070557 0.371072 1.444053 -0.472491 -1.098486 0.047403 0.052381 0.424861 -0.690487 0.116031 0.015773 -0.093012 0.057171 -0.013455 0.237523 0.907511 -1.765271 0.889110 -0.174631 -0.385377 0.827033 0.077896 -0.394516 -1.136320 -0.039184 0.630091 0.952786 0.542215 -0.204764 -0.213857 -0.842738 -0.093943 0.096261 0.312823 -0.442670 0.801855 -0.270469 -0.525084 -0.432672 -0.899637 -0.032413 -0.047213 -0.492707 0.404839 0.688774 -1.784364 0.817381 0.019096 -0.509594 -0.306351 0.059207 0.380391 -0.698626 -1.014167 0.111739 -0.776311 -1.398467 -0.462651 -0.462134 0.020181 0.103646 -0.284171 -0.193761 -0.796514 1.300455 -0.030682 0.887388 0.584501 0.021629 1.245164 0.987092 -0.800620 -0.076216 -0.492171 0.616512 -0.875298 -0.174838 0.124820 -0.492591 0.417183 0.987263 0.068804 -0.092331 -0.588630 0.749753 -0.677606 -0.429192 0.699564 0.002820 -0.019921 0.815229 0.788289 -0.591089 -0.099606 -0.874911 -0.285890 -0.326775 -0.431437 0.216474 -0.748378 -0.111818 0.469337 -0.312569 -0.497655 0.253621 -0.164287 -0.340387 -0.294398 1.041082 1.295943 -1.005201 0.665299 -0.783580 0.641885 -0.942576 -0.672765 -0.024122 0.294322 -0.352279 -0.246683 0.141233 0.090332 0.229933 -0.811935 -0.690385 0.342848 +PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -3.092873 -3.368662 -1.249037 -5.389799 2.608332 5.101229 1.480214 -4.424821 -7.036022 -2.200195 2.567480 -8.442773 -2.637795 6.972772 -2.445734 5.444260 8.258113 0.716818 -3.914720 -1.619496 5.651563 -0.340065 8.528589 9.897901 -5.192526 0.107222 -1.106826 3.082961 1.255663 1.266345 2.747657 -4.572731 0.911522 -5.336485 0.370152 -3.071195 -2.218223 3.883621 5.543705 -10.572225 -0.239179 4.793762 1.609459 -0.335526 0.636320 -0.517844 4.694532 4.923999 0.459857 4.895428 3.752659 0.620327 3.435928 -0.150518 2.490335 1.482563 1.193611 -1.819130 -0.361852 -1.153405 -2.381144 0.277429 1.465369 6.782659 7.184119 0.007331 -3.876748 1.229537 2.266287 1.872059 2.669578 5.529382 -2.459006 1.442156 3.126257 -7.546635 1.627776 -9.359351 3.144014 -7.954397 -4.267242 1.987356 4.823143 5.804384 3.545281 -1.077863 10.152379 -3.435211 -4.430606 6.932223 6.902990 -4.341282 -1.034255 -1.477098 -3.885521 -0.359822 -2.036064 0.286070 0.295402 4.449033 -5.686145 -2.672781 0.412317 1.196717 -3.711881 -2.800126 0.006587 5.169613 -5.793870 -4.396718 -1.101872 6.648117 -0.495514 -9.768104 -4.516181 -5.578051 -1.342861 0.791924 -6.169089 -5.359888 3.463384 0.855732 -1.788465 -1.773275 -2.212786 3.799214 3.591749 1.419278 -1.538631 3.560970 1.199897 9.208420 0.171974 -4.111543 1.484962 2.251664 -0.061408 3.221809 -2.322637 -1.887679 0.331572 -5.618889 -1.118989 2.818533 -3.554793 -1.294813 -0.002334 0.062666 -1.569905 22.296016 -2.157641 7.988750 6.769372 -5.170231 3.143518 -1.312606 1.945249 2.159773 3.534997 3.138901 -9.542734 -5.392169 6.320711 9.739140 3.519510 -4.952586 -0.911541 2.921105 0.877436 -0.103627 3.793563 -0.047551 0.607499 -3.869313 -1.098851 2.962038 12.562773 -2.694529 0.107020 1.092170 3.603010 -1.334265 -5.739097 -0.931899 -6.940705 -0.079008 2.828591 1.494467 3.375724 7.438823 -8.407249 6.422896 -0.972408 0.454078 5.693460 2.165382 -4.867171 -7.939893 -3.783718 2.076574 6.106456 -2.275776 0.086985 1.471659 -7.782708 0.356393 1.742897 1.147523 -5.354298 6.981596 -0.092764 -2.835525 -1.349727 1.692369 -2.932649 -2.817947 -2.604614 5.234820 1.176573 -4.468226 4.902030 2.483722 -2.158413 0.841871 -0.465026 6.006423 -4.632189 -5.663583 4.349362 -1.971778 -3.624695 -1.196893 -2.279562 2.809853 3.214953 0.620276 -6.245645 -5.184075 6.329409 -2.407445 8.879746 3.577382 -2.600661 3.020524 -0.759875 -2.521346 -2.954591 -5.065904 -0.071493 1.248641 -3.592299 -5.033305 -1.951944 5.138439 4.496981 0.538737 -4.896185 -0.444324 7.298298 -3.799961 0.385665 1.630337 -0.611748 -5.314008 1.713969 3.213707 -4.948675 2.463060 -5.162819 0.262544 -5.061832 -2.295962 5.999287 -0.625710 2.446770 -0.723778 -1.084774 0.344923 2.213835 4.072765 -0.231542 2.957282 8.909838 2.071570 0.805778 -0.799841 -7.899469 4.205456 -6.314928 -5.137029 -0.207103 2.360663 -4.803010 -2.102879 -0.500085 6.447172 5.109327 -2.986452 -3.002449 3.098360 +PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -0.890985 -1.073780 -0.382568 -1.509536 0.768655 0.979314 0.539523 -0.883454 -2.201616 -0.973174 0.810265 -2.613557 -1.153641 2.247518 -0.718654 1.528901 2.761459 0.461073 -0.945137 -0.651132 1.720206 -0.621129 2.764957 3.249875 -1.945221 0.018719 -0.354450 1.085279 0.608224 0.420380 1.017770 -1.518528 0.475018 -1.528846 0.459120 -1.273587 -0.400002 1.286127 1.327021 -3.605432 -0.103478 1.664834 0.845950 -0.044834 0.185298 0.727177 1.506747 1.746531 -0.380319 1.754138 1.460597 -0.026268 1.099832 0.074085 0.402906 0.077818 -0.000128 -0.409397 -0.420465 -0.105402 -0.547449 -0.762246 0.433303 2.143007 2.674986 -0.223276 -0.981262 0.383067 0.588278 0.685293 0.986741 1.599074 -0.233223 0.132535 1.340213 -2.106379 0.108480 -3.703804 0.802034 -4.107259 -1.447951 0.204216 2.180313 1.648134 0.850385 -0.596855 3.173383 -0.647070 -1.125489 2.458524 2.271590 -1.318721 -0.575456 -0.784298 -1.184207 0.398662 -1.019908 0.070850 0.644090 1.338488 -1.834242 -0.978046 0.232464 0.220908 -1.212111 -1.003043 -0.182694 1.649280 -2.116922 -1.291358 -0.884400 1.730090 0.124980 -3.221883 -0.676977 -1.706705 -0.277064 0.433876 -1.600387 -1.166716 0.849736 0.098751 -0.595610 -0.428447 -1.346209 1.546269 0.883611 0.459977 -0.195536 1.117508 0.372936 2.562717 0.213251 -1.401287 0.131584 0.865083 -0.322286 1.013736 -1.236077 -0.758990 1.189705 -1.927264 -0.275647 0.351041 -1.222738 -0.680906 0.346086 -0.123741 -0.145269 6.286807 -0.330902 2.424319 2.092971 -1.588089 1.410053 -0.334023 0.624192 1.017869 1.468873 0.751103 -2.427405 -1.732515 1.620495 3.040865 1.195480 -1.663478 -0.629160 0.825055 0.478649 -0.103037 1.082047 0.211062 0.054616 -1.230952 -0.245124 0.983832 3.638892 -0.736522 0.327226 0.203327 1.608184 -0.627907 -2.092134 -0.244653 -2.172248 -0.045179 0.552135 0.502830 1.068024 2.443220 -3.284211 2.071606 -0.251753 0.458439 1.410301 0.493702 -1.608011 -3.430333 -0.720894 0.657834 2.052795 -0.472333 0.287108 0.689722 -2.534903 0.102437 0.431979 0.454718 -1.537545 2.121333 -0.322564 -0.713778 -0.709030 0.315095 -1.014212 -0.839067 -0.650877 1.666065 1.015717 -1.820580 1.508759 0.144528 -1.034866 0.097143 -0.046807 1.746015 -1.894730 -1.919472 1.204109 -0.740781 -1.575751 -0.940967 -0.626137 0.939799 0.490338 -0.304010 -1.498505 -1.955039 2.242564 -0.927353 2.477588 1.183473 -0.809399 1.355859 0.279998 -0.977257 -1.128432 -1.327606 -0.100027 -0.306912 -1.039487 -1.056402 -0.570173 1.558843 1.822014 0.252851 -1.341780 0.182684 2.504756 -1.108634 -0.448571 0.777389 -0.162939 -1.161388 1.092691 1.181469 -2.074280 0.551627 -1.924737 0.220608 -0.991398 -0.875212 1.915103 -0.556868 0.793505 -0.070826 -0.184085 -0.025237 0.933661 1.188805 -0.255559 0.531741 3.186452 1.144724 -0.187219 -0.016251 -2.561641 1.215007 -2.287365 -1.642114 -0.265888 0.889901 -1.411980 -0.278703 0.046512 1.863415 1.506917 -0.963506 -1.248066 0.934718 +PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 0.073829 0.209346 0.349770 -0.078303 0.287939 -0.058664 0.139744 0.376807 -0.330383 -0.408999 -0.105574 -0.475727 -0.560609 0.403663 -0.004747 -0.152399 0.641313 0.257403 0.057893 -0.136372 -0.129129 -0.257630 0.466034 0.528645 -0.384815 0.220343 -0.145069 0.146054 -0.189342 0.602626 -0.079139 -0.641611 0.109916 0.280312 0.298334 -0.231455 -0.161922 -0.104147 -0.444721 -0.900273 -0.016213 0.645649 0.154926 -0.034911 0.193554 0.400980 0.662901 0.220059 -0.018597 0.329566 0.027931 -0.014121 0.267384 0.064608 0.221710 0.001055 0.234397 -0.333219 -0.475974 0.256348 -0.103356 -0.656807 -0.256567 0.247879 0.384705 -0.083267 -0.156639 -0.300120 -0.166170 0.121751 0.060569 0.167756 0.364606 0.065129 0.243220 0.287897 -0.021932 -0.257287 0.040223 -1.255752 -0.489349 -0.357889 0.837534 0.565407 -0.146156 -0.379483 0.530657 -0.133689 0.220642 0.150902 0.600571 -0.168836 -0.223583 -0.198023 -0.000783 0.230066 -0.160203 -0.201184 0.143303 -0.039493 -0.366134 -0.078971 0.340974 -0.177550 -0.196891 0.290584 -0.107159 0.401179 -0.696604 0.006836 -0.702769 0.031931 0.294940 -0.466112 0.054993 0.190272 -0.089470 0.399742 -0.232712 0.038674 0.265818 -0.003278 -0.210070 0.133169 -0.698839 0.600306 -0.152283 -0.063105 0.231338 0.264695 0.188506 0.111199 0.313710 -0.117971 -0.028382 0.245348 -0.050391 -0.032843 -0.097883 -0.159964 -0.042466 -0.300330 0.057465 -0.174451 -0.329583 -0.086941 -0.754443 -0.090967 0.183686 0.400609 -0.185381 0.276464 -0.002315 -0.334481 0.429617 0.009951 -0.187080 -0.044440 0.407603 0.304550 0.162145 -0.171919 0.131653 0.523492 0.248400 -0.208309 0.168533 -0.073356 0.075809 0.021034 0.366509 0.095065 0.226660 -0.263140 -0.058320 0.009411 0.676145 -0.039379 -0.580632 -0.042742 0.005554 0.170013 -0.126869 0.121484 0.096089 -0.043955 -0.053770 -0.104772 0.111107 0.441912 -0.882149 0.528049 -0.087844 -0.228322 0.374722 -0.127283 -0.018626 -0.521175 -0.064293 0.328824 0.653446 0.252933 -0.103790 -0.125799 -0.370046 -0.087141 0.010702 0.262358 -0.222179 0.334994 -0.097005 -0.326358 -0.165223 -0.609178 -0.000864 0.016330 -0.342527 0.105006 0.509098 -0.874622 0.389762 -0.015057 -0.185859 -0.132591 0.152848 0.020586 -0.343028 -0.470421 -0.047598 -0.288884 -0.791253 -0.179425 -0.272859 0.088190 -0.077898 -0.186627 0.009019 -0.321508 0.661143 0.068058 0.367028 0.297862 -0.009064 0.565798 0.815164 -0.358346 0.137938 -0.273578 0.298459 -0.628197 0.108816 0.351143 -0.313040 0.147607 0.574578 0.110214 -0.034400 -0.314347 0.459783 -0.070589 -0.222746 0.397589 -0.389945 0.170545 0.444212 0.458200 -0.355874 -0.191924 -0.474056 -0.025169 -0.005257 -0.128069 0.083753 -0.498073 -0.086268 0.299121 -0.164723 -0.436254 0.109395 -0.131130 -0.323666 -0.181948 0.593096 0.382026 -0.418833 0.637575 -0.256395 0.265716 -0.434865 -0.127212 -0.233810 0.109335 -0.182976 -0.015852 -0.004455 -0.022484 0.029066 -0.207411 -0.317313 0.114346 +PE-benchmarks/biconnectivity.cpp__Graph::Graph(int) = -0.886871 -0.353017 0.767178 -1.783412 1.162852 0.995514 0.410560 -0.848063 -1.389678 -1.018199 0.615275 -1.692805 -2.233590 1.857005 -0.732418 0.245240 1.180535 -0.765547 -0.888833 -1.231136 1.149372 -0.763242 2.130421 1.889254 -2.224627 0.037407 0.101549 1.481186 0.369871 1.118776 0.558282 -0.957366 -0.791572 0.322133 1.440981 0.537627 -0.555454 -0.048229 -0.216505 -2.469148 -0.400903 2.355885 0.393642 0.063368 0.382942 0.544310 1.484941 1.397248 0.112313 0.749775 1.513490 -0.208230 1.396938 -0.301156 1.203996 -0.464769 1.912759 -0.270240 0.003629 -0.066071 -0.674896 -0.346056 0.109076 2.011536 2.134391 -0.659266 -1.068819 -0.334929 0.157511 1.216118 0.360379 1.714488 -0.116849 0.616049 1.745560 -0.498202 0.635133 -2.231303 1.250257 -2.368168 -1.583015 -0.045413 1.320372 1.700051 0.331098 -0.682506 3.176779 0.016607 -1.104992 0.375170 1.701236 -0.088378 -0.043586 -0.372897 -1.274213 -0.092360 -0.607702 0.066458 0.039322 1.393582 -1.574929 0.246495 -0.008691 -0.231418 -1.336363 0.396940 -0.941650 1.421743 -1.071854 0.010450 -1.000993 1.457096 0.503980 -2.910461 -1.080448 -1.563999 -0.729368 -0.067344 -0.867762 -0.027394 0.966174 0.353118 -0.692274 -0.066005 -1.845405 1.805799 1.437511 -0.019921 -0.182868 1.116752 0.356121 1.015353 0.282424 -0.621162 -0.650769 0.724482 -0.269446 0.690223 0.001976 0.379471 0.718355 -0.619811 -0.196263 -0.224526 -0.324728 -0.343018 -1.107959 -0.749597 -0.108865 4.672193 -1.082331 1.772666 0.783706 -0.948689 1.428544 0.419648 0.109870 0.641787 1.173942 0.742509 -1.264409 -1.268969 2.038357 2.466819 0.569046 -1.306027 0.677188 1.105986 -0.004866 -0.873666 1.568050 -0.033170 0.077404 -0.618754 -0.375504 0.187470 2.679102 -0.765686 -2.313946 0.479028 1.248655 -0.118901 -0.632566 0.264718 -0.925206 -0.489129 0.194284 0.421053 1.140751 1.856154 -2.952604 1.621538 0.397448 -0.606102 2.486144 -0.870997 -0.535934 -2.568023 -0.257748 0.330477 1.511726 -0.086827 -0.898480 -0.343271 -2.090822 0.634756 0.060827 0.463797 -1.581240 2.139944 -0.901035 -0.653609 -0.675386 -1.503704 -1.005771 0.338657 -1.618982 0.726364 0.251304 -2.259252 1.628963 0.325285 -0.484548 -0.575251 -0.030336 1.081709 -0.758619 -1.530843 0.521359 -0.989697 -1.603908 -1.359758 -0.941176 0.305390 0.238231 0.027909 -2.069772 -0.816651 2.082945 -1.249009 2.441331 1.017563 -0.231894 0.920019 1.954041 -0.864280 -0.298732 -0.854501 0.772522 0.213425 -1.232039 -0.466484 -0.742961 0.888183 0.922984 -0.221979 -0.234707 -0.894606 1.952432 -0.411230 -0.582716 0.074324 -1.322431 -0.856218 1.212365 0.776571 -0.307633 0.103344 -2.181086 -0.450106 -1.924871 -1.227398 1.424337 -0.373501 0.551350 0.139536 -0.203861 -0.537453 0.304441 0.600804 -0.746823 -0.007201 2.552141 1.203992 -0.967823 0.373363 -2.267286 1.778210 -1.079125 -0.678853 -0.204823 -0.335185 -0.407153 -0.668487 -0.645870 1.278532 1.260447 -1.004509 -1.049320 0.731554 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/biconnectivity.cpp__Graph::addEdge(int, int) = -0.207629 0.487799 0.710325 -0.603055 0.754452 1.121903 0.276523 -0.281601 -0.616820 -0.653736 0.004449 -1.382057 -1.318310 1.109193 -0.425102 0.196855 1.541574 0.062704 -0.304055 -0.381476 0.422605 0.137492 1.806434 1.739347 -1.420464 0.252384 0.326687 0.766053 0.238120 0.805545 -0.082842 -1.133776 0.389058 -0.163270 0.298001 -0.375291 -0.287049 -0.425646 -0.125558 -2.148592 -0.225758 0.688432 -0.513368 0.008501 0.265403 0.440363 1.795158 0.915251 -0.038145 0.601908 0.548565 0.208105 0.535907 0.083012 0.346667 -0.186662 0.740920 -0.544874 -0.492764 -0.041565 -0.176873 -1.004478 -0.409280 1.293690 1.399073 0.035829 -0.450303 -0.035715 -0.079355 0.187764 -0.010697 0.922614 0.369510 1.020899 0.781000 -0.549021 0.374274 -1.086776 0.077094 -1.834732 -1.161519 -0.700530 0.982812 0.926853 0.438551 -0.386730 1.803415 -0.096516 0.106437 0.802341 1.786177 -1.064380 -0.304424 -0.468897 -0.296752 0.358885 -0.642834 0.317974 -0.238620 0.166782 -1.059314 -0.641479 0.460506 -0.021103 -0.783408 0.076260 -0.272536 0.982118 -1.420744 -0.405713 -1.197009 0.144534 0.070884 -2.006226 -0.901309 -0.122971 0.719090 0.485326 -0.491112 -0.862902 0.463086 0.556744 -0.146803 -0.411900 -0.731987 1.111417 0.780983 -0.037090 0.246582 0.716530 0.691291 1.467165 0.800806 -0.243129 -0.174979 0.291639 -0.311569 0.129923 -0.267389 0.029452 -0.183725 -0.934183 0.065019 0.834763 -0.698001 -0.288385 -0.750103 -0.362115 0.362175 3.635235 -0.365216 1.015689 0.649424 -1.302250 0.385130 -0.520316 -0.435057 0.242592 0.623353 1.068468 -1.456415 -0.718430 0.835498 1.730116 0.586654 -1.131387 0.561812 0.154608 0.056481 -0.575498 0.818810 0.261799 0.282272 -0.665407 -0.194889 0.898380 2.137334 -0.665783 -1.420188 0.239282 -0.005284 0.248310 -0.655044 0.012613 0.068492 -0.109196 0.645692 0.094124 0.461225 1.342214 -1.896064 1.149993 0.129787 -0.527145 1.255378 0.055455 -0.620021 -0.353579 0.156390 1.053553 1.008436 0.190598 -0.275531 -0.289846 -1.387440 -0.098871 0.447877 0.509975 -0.775528 1.174062 0.272788 -0.917842 -0.842241 -0.799180 -0.012022 -0.212927 -0.880506 0.682669 -0.027183 -2.263055 1.406258 0.165344 -0.666402 -0.044295 -0.567136 0.875931 -1.261975 -1.438877 0.513147 -0.672698 -1.309578 -0.314565 -0.513330 0.391126 0.638030 0.283425 -1.139230 -1.015248 1.274140 -0.000222 1.106633 0.809169 0.307506 1.321654 0.255929 -0.788818 -0.472717 -0.974147 0.951325 -0.192234 -0.695056 -0.251756 -0.623938 0.830020 1.597008 -0.293416 -0.451401 -0.603867 1.072675 -1.118049 -0.486947 0.557549 0.477193 -0.695962 0.510108 0.750442 -0.681069 -0.188724 -0.958703 -0.412671 -0.563732 -0.964697 0.603355 -0.924936 0.178426 0.821408 -0.358289 -0.630573 0.530744 -0.053034 -0.123107 0.099323 1.344499 1.403520 -0.840485 0.568726 -1.358384 0.966789 -1.574328 -1.162813 0.244836 -0.160569 -0.224341 -0.359900 -0.116135 0.604120 0.547470 -0.787802 -0.548969 0.264206 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -3.450099 0.052963 2.249532 -7.511304 5.121575 9.300576 1.990171 -5.705738 -6.901412 -4.899215 2.474485 -11.780884 -7.954100 9.667650 -4.185614 4.627324 12.232431 -0.813738 -4.143231 -3.619443 7.278714 1.307063 14.765335 15.114927 -11.396774 0.590654 2.845905 6.447772 4.228903 1.934642 2.947931 -7.436113 2.358769 -5.651002 1.233863 -3.274755 -2.210371 0.009477 4.489240 -16.337766 -1.660155 3.769980 -4.124827 0.186931 1.064893 1.980303 11.562960 8.212464 -1.505167 5.886929 7.057181 1.912744 3.643337 0.001475 1.813397 -1.594845 2.965729 -2.361137 -0.737716 -1.632228 -1.741471 -3.644502 -0.233486 11.770261 12.102098 0.090807 -4.562203 2.471443 2.019843 1.973123 1.398099 8.723912 0.138485 6.774922 6.890732 -10.779574 1.919262 -15.382643 2.425693 -14.378719 -8.243883 -1.723970 6.536915 5.588295 4.831567 -1.189165 15.455584 -1.350157 -3.079942 10.850154 13.069061 -7.848177 -1.664895 -3.594595 -4.974989 1.771577 -4.968468 3.709738 -1.866861 4.497454 -8.723074 -5.589923 1.321233 0.835388 -6.636135 -3.993769 -1.307990 7.707268 -9.762723 -4.677471 -5.426135 5.571265 -0.289667 -17.145779 -8.596549 -5.553207 6.340426 1.507592 -5.662112 -7.959818 3.299649 3.683811 -1.465529 -3.853503 -2.817009 6.640383 8.371086 1.736251 -0.380438 5.743766 4.782842 14.241957 4.185952 -3.803085 -0.524952 2.041344 -1.692652 3.059717 -3.322930 -0.046561 1.685524 -7.579664 -0.084519 7.200816 -5.140419 -4.192236 0.959642 -2.884943 0.607136 36.106955 -2.267942 10.322662 8.723760 -9.683471 1.919820 -4.314948 -0.750374 3.864882 4.890501 7.288146 -15.572500 -7.164761 8.687471 14.862340 4.790833 -10.204927 1.331459 3.870829 0.346705 -4.120686 5.771732 1.037461 0.885344 -5.169944 -1.652148 8.442716 17.737692 -5.205914 -5.907786 1.848017 4.311138 -0.010848 -7.423835 -0.720833 -4.125447 -0.278954 7.088799 2.158734 5.212286 11.329146 -15.939071 8.462328 1.077565 -0.842603 7.893166 3.163297 -7.397705 -7.144205 -0.273233 6.426739 7.104669 -1.137034 -0.020257 -0.022919 -12.172621 0.133723 4.100768 2.598066 -7.316291 10.368757 1.582772 -5.626454 -5.837497 -0.684040 -2.842273 -2.193912 -5.176863 7.291836 -1.729385 -14.680287 10.368451 1.552582 -4.972224 0.050705 -5.385583 10.574298 -10.014265 -10.786797 6.334329 -4.562062 -7.827918 -2.555887 -3.541314 3.985615 5.818591 3.127526 -10.754500 -8.821879 9.504620 -2.153802 10.998844 6.211239 0.283094 9.219407 -4.360731 -4.726717 -6.282236 -8.209568 5.878711 2.488305 -7.637513 -6.230574 -3.602672 7.373867 10.424422 -2.644554 -6.094535 -1.745471 9.224957 -10.229594 -2.396722 2.448702 6.078585 -8.321413 3.703422 4.482834 -6.424670 1.552478 -8.110419 -1.856154 -6.369382 -7.300218 7.361105 -3.776502 3.149519 3.557972 -1.743300 -1.583250 4.770766 2.797553 0.921206 3.057517 11.281698 11.211360 -3.827947 -0.544363 -13.045610 7.592866 -12.443701 -11.146817 2.447097 -0.284442 -2.886466 -3.459524 -1.791726 8.025276 6.817984 -5.785170 -4.414086 4.122795 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/biconnectivity.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/biconnectivity.cpp__Graph::isBC() = -2.567406 -1.409324 0.530707 -4.790609 3.325511 3.936043 1.483192 -3.216993 -4.945157 -2.843055 2.265631 -6.211916 -5.154612 6.286794 -2.161001 2.987038 5.887875 -1.165406 -2.917913 -3.166890 4.794191 -0.880253 7.964521 7.545316 -6.340784 0.126546 0.276017 3.338417 1.902425 1.523961 2.353930 -3.497934 0.133739 -2.932034 1.649742 -0.392361 -1.402187 0.768267 2.369641 -8.436237 -0.728968 4.136943 0.245857 -0.208280 0.301405 1.444905 5.273372 4.953473 -0.300898 3.135613 4.641601 -0.292280 2.951601 -0.147016 2.230538 -0.648329 2.589578 -1.335876 -0.425868 -0.821952 -1.693055 -1.312769 0.465861 6.502705 6.641847 -0.919902 -3.052572 1.365200 0.726087 2.737796 1.599478 4.939912 -0.031438 1.843719 4.787562 -4.912467 0.307550 -8.838145 2.024954 -8.533294 -4.676154 0.226836 4.309922 3.991920 2.568167 -0.322456 9.212147 -0.909799 -3.275072 4.834573 6.343260 -2.849782 -1.003205 -1.836727 -3.421920 0.298797 -2.599440 1.126566 0.089219 3.522680 -5.365026 -1.446795 0.288429 0.431267 -3.811967 -2.153085 -1.297603 4.635480 -4.659500 -2.027408 -2.629048 4.629738 0.325970 -9.555555 -3.000251 -4.204484 0.598376 0.440464 -3.478128 -2.977196 2.654666 1.434475 -1.862943 -1.911868 -2.564465 4.397021 4.025191 1.291149 -0.417793 3.381280 1.840322 6.504834 1.884730 -2.480154 -0.591658 1.427189 -0.658517 2.751413 -1.068658 -0.369681 2.035881 -3.919691 0.167963 1.808223 -2.241116 -2.298656 -0.057460 -1.295314 -0.290964 17.401293 -1.982349 6.291290 4.360383 -4.415851 2.825485 -1.528351 0.457871 2.166798 3.561368 2.655945 -6.643447 -4.466800 5.967794 8.160109 2.706968 -5.327177 0.348385 2.777193 0.506532 -1.660645 3.651901 0.661715 0.703200 -2.934147 -1.064455 3.022832 10.156743 -3.096818 -2.753725 1.625702 3.493167 -0.307809 -4.473915 -0.333580 -3.348871 -0.568266 2.643675 1.619109 3.191820 6.500546 -8.020490 5.170473 -0.217588 -0.552033 5.318991 0.257058 -3.704615 -6.523758 -1.170580 2.134191 4.817875 -0.458531 -1.044839 0.059068 -6.994486 0.933560 1.206099 1.028658 -4.155721 6.230690 -1.306121 -2.530459 -2.622541 -0.928398 -2.486922 -0.144806 -2.870096 3.691826 0.292487 -6.962819 5.392198 0.639812 -2.298404 -0.561909 -1.046692 5.463980 -3.775055 -5.504153 3.247709 -2.896985 -4.390898 -2.749482 -2.110388 1.947685 2.288839 0.563875 -5.666667 -4.335407 5.805398 -2.579711 7.533490 3.316381 -0.765995 4.149979 0.546307 -2.839885 -2.876682 -3.769656 1.528101 0.728649 -4.416449 -3.004350 -2.025684 4.199989 3.984417 -0.699453 -2.861428 -1.429366 6.038600 -4.366116 -1.742016 1.328686 0.203294 -4.168352 3.118276 2.999067 -3.129665 1.101711 -5.412406 -0.393259 -4.837951 -4.097245 4.360335 -1.006143 2.193103 0.465271 -0.187973 -0.563316 1.733550 2.167914 -0.289563 0.649682 7.537772 4.815587 -2.402546 -0.657151 -7.504460 5.010633 -5.422428 -4.926480 0.766657 0.863372 -2.214564 -1.806448 -1.173207 4.812598 3.936486 -3.501398 -3.184135 2.322445 +PE-benchmarks/biconnectivity.cpp__main = 0.591521 0.591433 3.302240 -2.097784 0.542471 -3.523291 0.187116 5.418983 -3.287934 -6.447784 -0.444617 -4.688488 -5.955963 2.327020 -0.457290 -5.507256 4.469012 1.457540 0.575085 -2.345484 -1.539223 -2.141013 1.803058 4.743366 -4.093954 1.243196 -2.586647 2.484781 0.381855 2.262135 4.640385 -5.505806 -1.856520 6.454590 5.624722 -1.219161 -1.623195 0.043204 -7.359092 -7.911939 -0.868121 8.392190 1.105008 0.742173 3.449726 6.532732 4.655423 0.917049 -2.461336 2.488212 1.739866 1.209925 2.631778 -1.166722 -0.699235 -4.097040 -0.522764 -3.132755 -2.318071 3.615032 -0.669862 -4.824419 -1.197456 2.513921 2.919708 -1.378396 -1.981537 -4.870864 1.155006 1.965568 0.649200 2.384979 4.659849 -0.050496 3.000497 4.321649 -1.324642 -5.450535 4.343222 -13.979911 -3.874900 -2.533899 11.013377 8.037327 -6.325929 -6.417912 5.200820 -0.993176 1.305692 6.069839 3.681008 3.910727 -0.739198 -2.731220 -2.032009 2.888224 -0.426348 -1.711865 -0.180908 3.860555 -2.359852 2.148052 -0.797056 -4.680568 -1.918503 3.727122 -1.779016 3.055458 -5.735634 4.540113 -5.428308 4.047263 7.258166 -3.533163 -0.227722 -0.812187 -2.168773 2.506499 -2.418045 6.330617 1.331458 -3.552928 -2.272613 6.579081 -11.216295 6.054207 -1.768396 -0.919102 0.534570 4.161805 1.467564 -4.436750 -0.298786 -1.498546 -0.885903 3.479377 0.666763 -1.142379 -1.698730 0.479371 4.505258 -0.045911 -0.540264 -5.551477 -2.142825 -4.372366 -9.336190 -3.345080 0.740454 4.426492 -1.482590 2.488801 0.401046 0.185656 4.695010 3.005051 -0.567621 0.794013 3.721957 2.803628 3.784439 -0.949985 1.139913 4.713412 1.036790 0.223936 2.830553 2.622674 -0.477501 -0.466265 4.600812 -0.504146 0.793838 -0.514982 -0.487527 0.404409 2.238281 3.486560 -3.071981 -3.355839 4.553034 2.277292 1.949051 3.268456 2.282096 -0.556903 1.342466 -0.107438 2.296852 3.193439 -9.324726 3.733889 2.598956 1.859032 -0.413670 -1.825866 0.546016 -9.490163 -0.433500 1.376768 4.970817 1.377601 -1.321023 -0.816423 -2.977501 0.089572 1.255753 2.626976 -3.310624 3.382178 -2.457947 0.665807 -0.327023 -6.284678 -3.363517 3.443284 -4.358480 0.500205 4.002285 -4.915231 2.403800 -1.455295 -0.844069 -4.948215 0.375228 -0.339714 -2.765401 -2.634518 -1.998006 -2.772202 -10.878388 -3.526084 -3.653301 0.419489 -2.451304 -2.206379 -0.156648 -2.858576 7.841819 -1.160401 3.858734 2.550221 -1.639106 5.650812 9.557923 -1.254514 1.973160 -3.856592 5.052009 -4.346398 1.594405 4.927295 -1.861477 -2.051310 3.722408 -0.908267 -1.100722 -0.699305 3.822122 2.831031 -3.444663 0.749297 -7.859208 3.479857 6.934519 1.987837 -3.153250 -0.282953 -7.931872 1.450512 0.334231 0.477707 1.732612 -3.752436 -1.148491 2.153742 -1.350482 -4.250603 1.189988 0.151256 -4.217704 -0.480684 5.822760 3.514862 -2.025447 6.795037 -3.082376 3.104670 -2.626828 0.023292 -4.839636 -0.136131 1.122042 -0.620204 -2.510586 -0.466402 2.188553 -1.528270 -3.979710 5.348053 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/biconnectivity.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/biconnectivity.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.102838 2.291312 1.562487 -0.717917 2.766109 1.367771 1.013271 0.487268 -0.616644 -2.691570 -0.631638 -2.124391 -4.425986 2.294314 -0.585513 0.063224 3.754322 -0.176848 0.687496 -1.706446 1.853539 -2.030642 4.557629 3.680192 -4.653238 0.892316 2.125728 1.636419 0.893876 2.301289 -0.173409 -2.800218 1.563200 -0.912133 2.434333 -1.435159 -0.411212 -1.746284 -1.231941 -5.474236 -1.158902 1.074740 -1.666458 0.751731 0.332065 3.627279 5.243060 2.305665 -2.197185 2.042171 2.024831 -0.388197 1.362920 0.613941 -0.184239 -0.707094 0.810340 0.454739 -1.683475 0.649137 -0.741573 -4.573867 -0.332802 2.899213 4.047803 -1.009577 -0.593018 1.138952 -1.047903 0.592012 -0.366003 2.654282 2.658497 1.439750 3.834976 -2.583265 -0.915642 -6.064336 -0.790629 -9.619127 -3.353501 -3.757440 2.156846 -0.214132 1.442142 -0.768521 4.801038 0.882879 1.365380 2.454258 4.607286 -2.750372 -0.617689 -2.410959 -0.586002 0.946581 -1.988110 0.493299 1.582555 -0.871082 -2.603298 -2.541087 1.879002 -0.557000 -1.873320 -1.760126 -1.825465 2.696122 -3.943065 -1.143923 -5.230952 -1.214098 -0.209101 -5.266261 0.164105 0.378936 3.143710 1.639620 0.407178 -1.604759 0.753452 2.296745 -0.518526 -1.834076 -0.538712 3.938225 2.294532 0.051212 1.637644 1.825754 1.319343 3.039852 4.986868 0.217510 -1.976297 0.873415 -1.496661 0.057007 -1.230226 0.251822 2.685449 -2.415903 0.080594 1.378587 -1.326006 -1.234421 1.381152 -2.601321 1.997828 7.446721 -0.705544 1.826334 0.643406 -3.405656 1.992737 -0.923036 -1.365606 1.663266 2.934402 2.574579 -3.500661 -1.784515 1.567659 3.652194 1.049482 -4.325527 -0.755701 -0.209161 0.637889 -1.490111 0.998617 1.208337 0.840279 -1.502646 0.045779 1.590841 5.111028 -2.649330 -3.639972 0.843701 1.038919 -0.209938 -3.745856 -0.330947 -0.918710 -0.925056 0.907091 -0.060883 0.687486 3.291336 -6.560584 2.461418 -0.687083 -1.258650 2.150932 0.151528 -0.574745 -4.132004 1.655184 2.886846 2.100674 1.186277 -0.173361 -1.161072 -3.317569 0.547958 0.594217 1.895951 -1.644233 2.928538 -0.850023 -2.251208 -2.909906 -2.163292 -0.218727 -0.506149 -1.013645 1.105284 1.046774 -7.294980 3.452635 -1.336000 -2.279453 0.322650 -0.520194 2.619889 -3.003984 -4.252019 1.421064 -2.031352 -3.701978 -2.211573 -1.003741 1.065021 0.750870 -0.985431 -1.913322 -4.344012 3.357012 -0.466682 1.946062 2.303078 1.834084 5.843422 0.631077 -3.284702 -2.703609 -1.698674 1.915076 -1.512861 -1.416688 -1.759733 -1.375295 1.887757 5.068595 -0.379324 0.477254 -1.392684 3.095328 -4.594436 -2.024290 2.471422 2.911143 -0.795757 2.473208 2.492805 -1.699599 -1.892443 -2.776764 -0.286514 -0.230242 -2.581894 0.959781 -3.914342 -0.390382 2.681716 -0.679213 -1.605337 1.770754 -0.443432 0.247884 -1.973846 3.494801 6.416270 -4.615794 0.651170 -2.647321 2.195716 -4.426188 -2.842907 0.051400 0.525438 0.730074 -0.151317 0.731008 1.029767 0.923286 -2.556125 -1.478989 -0.690962 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/biconnectivity.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/biconnectivity.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/biconnectivity.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/biconnectivity.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/bfs.cpp__Graph::Graph(int) = -0.886871 -0.353017 0.767178 -1.783412 1.162852 0.995514 0.410560 -0.848063 -1.389678 -1.018199 0.615275 -1.692805 -2.233590 1.857005 -0.732418 0.245240 1.180535 -0.765547 -0.888833 -1.231136 1.149372 -0.763242 2.130421 1.889254 -2.224627 0.037407 0.101549 1.481186 0.369871 1.118776 0.558282 -0.957366 -0.791572 0.322133 1.440981 0.537627 -0.555454 -0.048229 -0.216505 -2.469148 -0.400903 2.355885 0.393642 0.063368 0.382942 0.544310 1.484941 1.397248 0.112313 0.749775 1.513490 -0.208230 1.396938 -0.301156 1.203996 -0.464769 1.912759 -0.270240 0.003629 -0.066071 -0.674896 -0.346056 0.109076 2.011536 2.134391 -0.659266 -1.068819 -0.334929 0.157511 1.216118 0.360379 1.714488 -0.116849 0.616049 1.745560 -0.498202 0.635133 -2.231303 1.250257 -2.368168 -1.583015 -0.045413 1.320372 1.700051 0.331098 -0.682506 3.176779 0.016607 -1.104992 0.375170 1.701236 -0.088378 -0.043586 -0.372897 -1.274213 -0.092360 -0.607702 0.066458 0.039322 1.393582 -1.574929 0.246495 -0.008691 -0.231418 -1.336363 0.396940 -0.941650 1.421743 -1.071854 0.010450 -1.000993 1.457096 0.503980 -2.910461 -1.080448 -1.563999 -0.729368 -0.067344 -0.867762 -0.027394 0.966174 0.353118 -0.692274 -0.066005 -1.845405 1.805799 1.437511 -0.019921 -0.182868 1.116752 0.356121 1.015353 0.282424 -0.621162 -0.650769 0.724482 -0.269446 0.690223 0.001976 0.379471 0.718355 -0.619811 -0.196263 -0.224526 -0.324728 -0.343018 -1.107959 -0.749597 -0.108865 4.672193 -1.082331 1.772666 0.783706 -0.948689 1.428544 0.419648 0.109870 0.641787 1.173942 0.742509 -1.264409 -1.268969 2.038357 2.466819 0.569046 -1.306027 0.677188 1.105986 -0.004866 -0.873666 1.568050 -0.033170 0.077404 -0.618754 -0.375504 0.187470 2.679102 -0.765686 -2.313946 0.479028 1.248655 -0.118901 -0.632566 0.264718 -0.925206 -0.489129 0.194284 0.421053 1.140751 1.856154 -2.952604 1.621538 0.397448 -0.606102 2.486144 -0.870997 -0.535934 -2.568023 -0.257748 0.330477 1.511726 -0.086827 -0.898480 -0.343271 -2.090822 0.634756 0.060827 0.463797 -1.581240 2.139944 -0.901035 -0.653609 -0.675386 -1.503704 -1.005771 0.338657 -1.618982 0.726364 0.251304 -2.259252 1.628963 0.325285 -0.484548 -0.575251 -0.030336 1.081709 -0.758619 -1.530843 0.521359 -0.989697 -1.603908 -1.359758 -0.941176 0.305390 0.238231 0.027909 -2.069772 -0.816651 2.082945 -1.249009 2.441331 1.017563 -0.231894 0.920019 1.954041 -0.864280 -0.298732 -0.854501 0.772522 0.213425 -1.232039 -0.466484 -0.742961 0.888183 0.922984 -0.221979 -0.234707 -0.894606 1.952432 -0.411230 -0.582716 0.074324 -1.322431 -0.856218 1.212365 0.776571 -0.307633 0.103344 -2.181086 -0.450106 -1.924871 -1.227398 1.424337 -0.373501 0.551350 0.139536 -0.203861 -0.537453 0.304441 0.600804 -0.746823 -0.007201 2.552141 1.203992 -0.967823 0.373363 -2.267286 1.778210 -1.079125 -0.678853 -0.204823 -0.335185 -0.407153 -0.668487 -0.645870 1.278532 1.260447 -1.004509 -1.049320 0.731554 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/bfs.cpp__Graph::addEdge(int, int) = -0.164326 0.331884 0.450107 -0.264187 0.527004 0.590706 0.242617 -0.119605 -0.410527 -0.492845 -0.064848 -0.887586 -0.943390 0.806856 -0.217229 0.252976 1.153778 0.178897 -0.118789 -0.280318 0.314766 -0.259326 1.260686 1.212431 -0.927336 0.186563 0.277930 0.475983 0.071305 0.652928 -0.196768 -0.771066 0.385684 -0.276657 0.288088 -0.401325 -0.185549 -0.210944 -0.077080 -1.556732 -0.155943 0.451956 -0.176537 -0.007302 0.115819 0.448248 1.239375 0.646140 -0.029216 0.504433 0.294081 -0.047873 0.430800 0.130127 0.300084 0.037132 0.475676 -0.289547 -0.484457 0.058847 -0.181542 -0.949825 -0.238634 0.816049 1.006179 -0.042053 -0.276699 0.057121 -0.183261 0.132910 -0.002605 0.600411 0.326987 0.537521 0.592142 -0.547811 0.192863 -0.903189 -0.100729 -1.660822 -0.837275 -0.579908 0.653839 0.471930 0.414948 -0.207579 1.255804 -0.059976 0.132561 0.404428 1.298107 -0.898381 -0.278445 -0.348565 -0.077224 0.227173 -0.497978 0.108263 0.129249 -0.054671 -0.760052 -0.563051 0.552367 0.033816 -0.511060 -0.057575 -0.224935 0.751796 -1.059194 -0.465316 -1.066060 -0.151156 -0.053566 -1.356959 -0.205103 0.024186 0.471496 0.479771 -0.349678 -0.710050 0.389677 0.470976 -0.088781 -0.444295 -0.432986 0.889278 0.413544 -0.063726 0.272787 0.483841 0.393248 1.064241 0.809088 -0.158857 -0.158589 0.267679 -0.392360 0.088566 -0.242868 -0.147495 0.002098 -0.763372 -0.031841 0.500667 -0.538004 -0.087995 -0.236702 -0.223312 0.318292 2.197603 -0.255340 0.639053 0.379791 -0.952312 0.475534 -0.385870 -0.290319 0.162458 0.584383 0.713420 -1.032760 -0.528170 0.527964 1.187139 0.449544 -0.861966 0.096608 -0.067078 0.185379 -0.299788 0.504540 0.264725 0.245007 -0.514608 -0.093038 0.470217 1.577414 -0.641029 -0.887849 0.206534 -0.128492 0.094844 -0.847071 -0.052924 -0.151683 -0.133772 0.158313 0.030641 0.207726 0.959184 -1.348457 0.862491 -0.169163 -0.444669 0.945579 0.010591 -0.372971 -0.602222 0.107303 0.759529 0.793835 0.213331 -0.127073 -0.204822 -0.975013 -0.073344 0.184665 0.436078 -0.496987 0.823542 0.056660 -0.707374 -0.599708 -0.521847 0.060607 -0.332889 -0.440527 0.458587 0.263608 -1.606895 0.968569 0.048525 -0.492582 0.119028 -0.154598 0.556854 -0.877131 -1.076542 0.375662 -0.475918 -0.849761 -0.302191 -0.327481 0.290055 0.309305 -0.124220 -0.599615 -0.796863 0.891601 -0.016220 0.739850 0.548455 0.231097 1.039302 0.381999 -0.706836 -0.345333 -0.497444 0.354741 -0.408263 -0.375856 -0.308837 -0.408021 0.663596 1.218997 -0.041182 -0.147699 -0.384453 0.831957 -0.902941 -0.365608 0.566210 0.398956 -0.363527 0.385661 0.648253 -0.574672 -0.263311 -0.623105 -0.274663 -0.295733 -0.660089 0.352378 -0.817783 0.048266 0.569489 -0.268365 -0.408865 0.374726 -0.009136 -0.075102 -0.103070 1.009564 1.081055 -0.734119 0.360547 -0.857581 0.591656 -1.117721 -0.723980 0.104760 0.202570 -0.224904 -0.181987 0.152537 0.356470 0.301226 -0.624119 -0.403787 -0.036241 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/bfs.cpp__Graph::BFS(int) = -1.438454 0.290338 2.926900 -4.246134 3.620395 3.299512 1.108556 -1.060722 -3.870446 -4.082706 0.659933 -6.984616 -6.231953 5.293403 -2.814381 0.733344 6.927747 -0.119972 -1.248435 -2.369109 3.189537 -0.450320 7.979239 7.798898 -7.323918 0.258042 -0.100489 4.584402 2.036471 2.956473 2.652587 -5.168378 0.376964 -0.265064 3.240127 -2.038373 -0.945538 0.096970 -0.839414 -10.032926 -1.368283 5.368650 -1.396688 0.942549 2.170629 3.922021 6.922768 4.358471 -1.952952 3.641958 3.793585 0.986628 3.382344 0.018622 -0.229914 -2.177606 1.961156 -2.521217 -2.006587 0.462199 -1.578086 -3.883814 0.196758 6.585120 7.582964 -0.678401 -2.388412 -0.098572 0.969523 1.793584 1.136891 5.273822 1.460270 3.550286 4.815247 -2.660693 0.963970 -8.343997 2.220526 -10.534675 -5.078162 -2.713720 5.642453 5.960193 0.554263 -3.299841 9.280015 -0.101088 -0.745053 7.090840 7.320130 -2.566957 -0.955872 -3.724435 -3.142956 1.220191 -2.986878 0.401237 -0.760252 3.803023 -4.855733 -2.226283 -0.146356 -1.162517 -3.473629 -0.249590 -2.084121 4.886411 -6.503451 -1.503789 -5.027037 3.460568 1.346115 -9.725303 -3.136774 -2.706127 1.694049 1.409403 -1.832233 -1.338013 2.186851 1.449143 -1.523792 0.455603 -6.090527 6.205450 3.537279 0.066321 0.016868 4.247834 1.807174 4.430465 2.222676 -1.858639 -1.624976 2.298743 -1.132010 0.956103 -2.520289 0.596731 3.184842 -3.905322 -1.377483 1.599685 -2.710007 -2.768882 -3.751306 -3.054762 1.392678 17.246677 -1.941822 5.293085 3.402369 -5.040555 3.443801 -0.068697 -0.050003 2.134274 3.484940 4.387394 -6.430356 -3.943564 4.530200 7.890020 2.378357 -4.785231 1.652100 2.225015 0.420533 -2.092825 3.560579 1.499831 -0.388825 -2.894922 -0.604704 2.626070 9.494705 -1.474485 -4.084853 0.520853 3.435593 -0.148542 -3.031037 0.284312 -0.988488 -1.132135 2.821998 1.030201 2.660572 6.419615 -10.193377 5.211445 1.743656 0.101427 4.286317 -0.816204 -2.697120 -6.835369 -0.492566 3.702080 4.349968 0.034568 -0.854960 -0.471658 -6.600499 1.173167 1.850081 2.887044 -3.838983 5.951962 -0.681783 -2.881821 -3.553168 -3.079965 -2.497170 0.107290 -4.063200 3.287073 1.049202 -8.146674 5.651959 -0.547318 -2.863772 -0.920039 -1.400308 4.688390 -5.488612 -6.024254 2.173205 -3.423312 -7.393871 -3.542438 -2.445970 1.678684 1.895184 0.044950 -5.458200 -5.801017 6.251973 -1.926584 5.596374 3.699953 0.191685 6.380038 2.874088 -3.312451 -2.572093 -5.422093 3.873299 -0.078754 -2.489788 -0.708090 -2.049710 3.190392 6.393370 -1.604347 -2.273410 -1.466549 6.106841 -3.257136 -2.674549 2.003642 -1.211242 -2.647519 3.567674 3.094391 -3.585995 -0.244490 -6.121420 0.213574 -2.974847 -2.907784 3.777969 -3.766298 0.475846 2.320362 -0.848942 -2.814944 2.188138 1.445309 -1.364277 0.366877 8.476471 6.311324 -2.603337 2.516644 -6.623891 4.720738 -7.115025 -4.509377 -1.022496 -0.868709 -0.252593 -0.662672 -0.667847 3.596119 4.018931 -3.463428 -3.167749 2.359031 +PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::empty() const = 0.052083 0.789617 0.542119 -0.434583 0.720186 0.922895 0.103822 -0.207952 -0.273192 -0.158725 -0.200105 -0.954225 -0.706360 0.590395 -0.135898 0.021662 0.827608 -0.142252 -0.149693 -0.014830 0.060240 0.371414 0.843229 0.764187 -0.735573 0.361479 0.311988 0.141981 -0.266278 0.967659 -0.523180 -1.131950 -0.054947 0.305156 0.233194 0.021089 -0.379591 -0.572691 0.093969 -1.181616 -0.080897 0.695079 -0.093174 -0.126609 0.216998 -0.363829 1.384639 0.371563 0.026648 -0.006171 0.228968 0.410555 0.274842 -0.014389 0.513880 0.126953 1.022833 -0.220596 -0.241303 -0.051197 -0.126211 0.061915 -0.406653 0.720828 0.620064 0.137906 -0.376233 -0.220351 -0.076610 0.003300 -0.329782 0.545645 0.165608 0.910865 0.177629 0.172785 0.427298 -0.341048 0.240629 -0.433027 -0.716193 -0.391298 0.149942 0.705168 0.322197 -0.333596 1.019986 -0.247197 0.238594 -0.061299 1.152264 -0.497653 -0.059260 -0.226920 -0.427678 0.095374 -0.081121 0.087294 -0.293923 -0.262673 -0.595845 -0.524487 0.324737 0.017539 -0.467685 0.431841 -0.033356 0.379641 -0.468239 -0.115495 -0.530862 0.070140 -0.044971 -1.046562 -0.895018 0.019010 -0.356808 0.185959 -0.360353 -0.851841 0.321201 0.336782 -0.401794 -0.260887 -0.474722 0.634430 0.552645 -0.067805 0.147914 0.042901 0.657215 0.726428 0.187723 -0.210010 0.064468 -0.051113 0.098095 -0.127204 -0.040868 0.123544 -0.654147 -0.302026 0.111241 0.614820 -0.368002 0.212697 -0.912417 -0.449307 0.141576 2.123627 -0.528563 0.529502 0.020583 -0.909765 0.397158 -0.068714 -0.680461 -0.238493 0.277870 0.931777 -0.604303 -0.342945 0.642655 0.961182 0.293057 -0.381071 0.469168 0.108150 -0.253363 -0.277706 0.627152 -0.049489 0.160307 -0.401348 -0.264310 0.434006 1.366892 -0.233990 -1.461713 0.236080 0.222585 0.323448 0.126507 0.041455 -0.305863 -0.021341 0.288965 -0.165940 0.512106 0.734648 -1.492891 0.694915 0.193468 -0.827508 1.060267 -0.128169 -0.213576 0.250830 0.173387 0.817879 0.599513 0.079595 -0.167882 -0.532637 -0.659394 -0.134179 0.143532 0.264973 -0.618820 0.641861 0.178587 -0.842340 -0.406837 -0.729938 -0.033235 -0.335207 -0.857590 0.252919 0.125288 -1.367016 1.031094 0.487182 -0.047892 -0.098304 -0.485302 0.145120 -0.517411 -0.778013 0.143431 -0.357139 -0.297606 0.352405 -0.414597 0.165153 0.448081 0.659462 -0.796954 -0.553956 0.545172 0.253029 0.698356 0.523430 0.378697 0.241342 0.422081 -0.318412 -0.105915 -0.579653 0.788371 0.169986 -0.366925 -0.111226 -0.637034 0.420915 0.804898 -0.223407 -0.231364 -1.007647 0.352496 -0.274230 0.128238 0.262606 -0.447127 -0.621104 -0.260523 0.404839 0.089695 -0.202927 -0.586515 -0.210115 -0.611582 -0.525615 0.078423 -0.455672 -0.166249 0.688810 -0.626507 -0.564328 0.190080 -0.150737 -0.271254 0.138214 0.439724 0.056959 -0.386893 0.634833 -0.643009 0.502947 -0.844223 -0.613101 0.216656 -0.636460 -0.430454 -0.501364 -0.198000 0.200046 -0.058047 0.135758 -0.122157 0.061935 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::front() = 0.021702 0.485135 0.443008 -0.114353 0.340092 0.093484 0.127215 0.181562 -0.152767 -0.526129 -0.134435 -0.653586 -0.822822 0.450763 -0.096305 -0.157299 0.724153 0.081399 0.048809 -0.225850 0.035660 -0.289301 0.713895 0.708519 -0.714416 0.193281 0.221107 0.309556 0.081321 0.505992 -0.076362 -0.619216 0.152208 0.200797 0.456944 -0.180046 -0.083110 -0.342076 -0.424275 -1.059108 -0.135941 0.491304 0.067874 -0.000481 0.126914 0.546984 0.998789 0.382726 -0.200436 0.181794 0.258273 -0.001138 0.291682 0.065314 0.092897 -0.234778 0.398138 -0.221437 -0.420895 0.167111 -0.024558 -0.831694 -0.249123 0.535609 0.674716 -0.058960 -0.114638 -0.079836 -0.142680 0.113185 -0.110109 0.348918 0.455244 0.420108 0.431124 -0.034401 0.104157 -0.687055 -0.026566 -1.579289 -0.614751 -0.603490 0.626203 0.414561 0.009937 -0.275594 0.782106 0.108927 0.319148 0.248473 0.933693 -0.369948 -0.208166 -0.350812 -0.097590 0.341502 -0.345180 0.054581 0.159411 -0.050510 -0.469227 -0.278612 0.371616 -0.132169 -0.348242 0.194544 -0.211486 0.406020 -0.734081 -0.028776 -0.878008 -0.282762 0.218622 -0.881659 0.067031 0.123174 0.173459 0.359258 -0.076121 -0.199903 0.147296 0.194106 -0.129307 -0.059337 -0.801828 0.731930 0.154394 -0.070804 0.289401 0.313992 0.403297 0.318051 0.506119 -0.085384 -0.212227 0.153557 -0.277317 -0.088194 -0.203300 -0.074845 0.275302 -0.386895 0.003756 0.092459 -0.343513 -0.176303 -0.435217 -0.368889 0.345478 1.004154 -0.145240 0.310189 0.049139 -0.575763 0.461932 -0.125033 -0.394941 0.059068 0.441719 0.552168 -0.219082 -0.290351 0.255868 0.728226 0.251158 -0.411210 0.128273 -0.012896 0.040458 -0.231407 0.373234 0.177620 0.117279 -0.289004 -0.084481 0.340233 0.802352 -0.220282 -0.672848 0.051652 0.063269 0.159106 -0.399867 0.086193 0.047345 -0.077012 -0.051808 -0.026774 0.192519 0.607906 -1.173265 0.572698 0.063944 -0.280930 0.520134 -0.203028 -0.149568 -0.670402 0.311016 0.609781 0.496991 0.199036 -0.117168 -0.255318 -0.576963 -0.076808 0.079685 0.346693 -0.325044 0.470558 -0.089887 -0.404494 -0.498574 -0.620557 0.000531 -0.064007 -0.383778 0.196866 0.392988 -1.148821 0.738714 -0.141348 -0.319786 -0.176069 -0.172197 0.111429 -0.648893 -0.684305 0.020479 -0.419414 -0.793934 -0.307556 -0.271759 0.132195 -0.020204 -0.183323 -0.244263 -0.509036 0.667070 -0.029046 0.339926 0.392930 0.280948 0.748801 0.700465 -0.432158 -0.155596 -0.203824 0.308845 -0.476977 -0.178408 0.124423 -0.316979 0.268325 0.906785 -0.133212 0.027627 -0.246289 0.443094 -0.368895 -0.487284 0.374434 -0.107447 -0.073044 0.402270 0.412841 -0.345504 -0.295187 -0.641106 -0.162300 -0.045445 -0.480679 0.081580 -0.676279 -0.116355 0.590253 -0.289820 -0.443617 0.297630 -0.136645 -0.203616 -0.194929 0.643351 0.719331 -0.636503 0.494821 -0.546321 0.356496 -0.792407 -0.443589 -0.002848 0.059808 -0.015705 -0.116825 0.067051 0.039307 0.071817 -0.327411 -0.339043 0.052653 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::pop_front() = 0.035546 0.578133 0.567179 -0.238481 0.489940 0.326964 0.139884 0.185985 -0.245989 -0.510544 -0.179803 -0.712521 -0.893651 0.556986 -0.135872 -0.179019 0.903324 0.106345 0.025351 -0.241338 0.068487 -0.162194 0.869176 0.872745 -0.871617 0.250924 0.276784 0.348785 0.048827 0.700788 -0.191726 -0.827638 0.146099 0.245325 0.457593 -0.263595 -0.142267 -0.414354 -0.412957 -1.310919 -0.130188 0.532293 -0.105134 -0.007137 0.192545 0.501051 1.215626 0.445137 -0.232173 0.228521 0.324200 0.156132 0.277105 0.055147 0.145403 -0.147040 0.514768 -0.212682 -0.418587 0.166723 -0.038245 -0.787504 -0.295215 0.656725 0.777874 -0.040868 -0.173418 -0.154039 -0.126828 0.091880 -0.129515 0.421035 0.499484 0.540230 0.467378 -0.022235 0.101014 -0.806514 0.036878 -1.620590 -0.724436 -0.686977 0.686566 0.485149 0.042345 -0.359769 0.954335 0.024409 0.380765 0.319597 1.076204 -0.460441 -0.208979 -0.419317 -0.204216 0.364103 -0.344643 0.053449 0.024876 -0.106642 -0.558465 -0.432104 0.394845 -0.135256 -0.434137 0.219997 -0.215877 0.510754 -0.835402 -0.050628 -0.968955 -0.155286 0.196812 -1.039797 -0.179053 0.070400 0.249025 0.368850 -0.131712 -0.332516 0.186595 0.293080 -0.216625 -0.096942 -0.770413 0.837401 0.280828 -0.111118 0.289377 0.271435 0.472693 0.451829 0.562631 -0.142816 -0.209343 0.196612 -0.244960 -0.143333 -0.278277 0.000000 0.153723 -0.435523 0.061836 0.223520 -0.415794 -0.159041 -0.517009 -0.438453 0.384557 1.523480 -0.224299 0.401077 0.059913 -0.730698 0.491453 -0.108888 -0.474385 0.078419 0.501042 0.674348 -0.423773 -0.339930 0.302868 0.880932 0.314492 -0.517032 0.210711 -0.031077 -0.041152 -0.263657 0.470746 0.143818 0.117581 -0.347654 -0.132355 0.402345 1.075227 -0.231989 -0.968724 0.051282 0.148576 0.162230 -0.317240 0.095104 0.028374 -0.070007 0.138369 -0.075196 0.319312 0.737294 -1.497649 0.672296 0.062903 -0.415713 0.609481 -0.164273 -0.163012 -0.495521 0.330530 0.715443 0.661739 0.238795 -0.115006 -0.289787 -0.689324 -0.098490 0.141514 0.402881 -0.437370 0.573280 0.025774 -0.580465 -0.533533 -0.725170 -0.025938 -0.107463 -0.540793 0.233168 0.287852 -1.498919 0.876116 -0.066453 -0.320604 -0.136455 -0.269392 0.207342 -0.743508 -0.829591 0.094591 -0.375206 -0.810948 -0.233583 -0.343361 0.236599 0.078665 0.029694 -0.418977 -0.705061 0.739501 0.043168 0.460245 0.489620 0.304389 0.842562 0.628553 -0.451956 -0.229114 -0.391107 0.576667 -0.386749 -0.228802 0.117473 -0.440018 0.336861 1.055420 -0.164537 -0.049120 -0.443309 0.563566 -0.450472 -0.400515 0.404768 -0.058280 -0.150327 0.373655 0.488438 -0.379378 -0.345299 -0.706602 -0.152625 -0.100651 -0.538223 0.154562 -0.753438 -0.088006 0.681770 -0.314384 -0.553348 0.340877 -0.169933 -0.233148 -0.155032 0.729298 0.814907 -0.693974 0.618549 -0.629889 0.478381 -0.930404 -0.543343 -0.020729 -0.140871 -0.080671 -0.152436 -0.038292 0.121760 0.061188 -0.231876 -0.322004 0.064172 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/bfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/bfs.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/bfs.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::~list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/bfs.cpp__main = 0.380535 0.225453 1.130708 -0.505376 0.205138 -1.032122 0.121047 1.547025 -0.864917 -1.366209 -0.107199 -0.924759 -1.392184 0.636036 -0.050718 -1.521086 1.200940 0.526292 0.168378 -0.738233 -0.590297 -0.356519 0.571083 1.095069 -1.052779 0.452797 -0.546574 0.696151 0.291805 0.767547 0.822013 -1.127905 -0.324949 1.673065 1.156431 -0.407319 -0.322389 -0.313520 -2.041400 -1.983807 -0.055514 1.738071 0.250225 0.106247 0.846342 1.952994 1.170499 0.309552 -0.553198 0.705801 0.456273 0.227693 0.483230 -0.156928 -0.034395 -0.964171 0.356611 -0.643543 -0.796398 0.922133 0.033877 -1.522164 -0.521173 0.538716 0.729401 -0.297489 -0.369201 -1.298701 0.259941 0.504363 0.301116 0.306332 1.161563 -0.012432 0.727247 1.298655 -0.283719 -1.127549 0.745252 -3.811505 -1.013640 -0.752290 3.072971 1.269905 -1.637308 -1.178964 0.952966 -0.060144 0.556467 1.187517 0.818822 0.951665 -0.378665 -0.493021 -0.352129 1.034220 -0.200043 -0.371269 0.238301 0.761223 -0.564756 0.639130 0.113708 -1.106921 -0.445268 1.268650 -0.312445 0.760609 -1.590161 1.195893 -1.380408 0.809672 1.777308 -0.771187 -0.199747 0.027360 0.251367 0.646101 -0.390050 1.695022 0.248659 -0.794073 -0.614083 1.647774 -2.547000 1.321882 -0.573015 -0.083923 0.290105 0.849720 0.406007 -1.124726 0.217677 -0.356812 -0.177451 0.800831 0.095990 -0.293284 -0.410017 0.002065 0.896603 -0.030336 0.433959 -1.352152 -0.590216 -1.215821 -2.204823 -0.472512 0.357813 0.577861 -0.197565 0.575698 0.022499 0.070457 0.592796 0.609753 -0.223346 0.224376 0.902624 0.462109 1.465053 -0.110926 -0.060054 1.008432 0.371946 -0.232312 0.826551 0.363289 -0.256219 0.005798 1.028325 -0.096345 0.282612 -0.176755 -0.147415 0.095887 0.350403 0.904577 -1.515503 -0.882336 0.781295 0.517130 0.711339 0.852591 1.254334 0.083892 0.257863 -0.178747 0.575554 0.698950 -2.738682 0.965978 0.652701 0.312445 0.022326 -0.332651 0.091180 -1.778179 -0.043110 0.316507 1.423789 0.572363 -0.609032 -0.012392 -0.639022 -0.122197 0.254474 0.515903 -0.544357 0.603824 -0.282068 0.106020 -0.127192 -1.784427 -0.300050 1.161182 -0.988411 0.069032 0.637765 -2.060335 0.494428 -0.555107 -0.366873 -1.191745 0.013078 -0.252062 -0.757017 -0.590072 -0.677589 -0.563015 -2.791553 -1.022650 -0.830525 0.162901 -0.570962 -0.046515 0.140859 -0.478357 1.864158 -0.296443 0.732479 0.661556 -0.402682 1.611492 1.999593 -0.261026 0.451892 -0.581325 1.415693 -1.367478 0.415063 1.747740 -0.611934 -0.497865 0.968516 -0.255873 -0.114325 -0.324143 0.957438 0.452809 -1.050427 0.332959 -1.434533 1.028613 2.037497 0.638751 -0.984514 -0.139646 -1.624389 -0.139188 0.413007 0.086728 0.448798 -0.873695 -0.128035 0.549816 -0.142339 -1.160062 0.310840 -0.450584 -1.026452 -0.218586 1.245181 1.543437 -0.894560 1.873219 -0.596423 0.766768 -0.677982 -0.031385 -1.034685 -0.365251 0.209945 0.135434 -0.730053 -0.213019 0.355302 -0.500954 -1.016178 1.337470 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::~_List_base() = 0.006833 0.165219 0.393724 -0.217897 0.245057 0.030167 0.084887 0.213061 -0.284149 -0.347130 -0.079194 -0.370930 -0.480802 0.363593 -0.149243 -0.168131 0.607403 0.226503 0.023250 -0.236433 0.012430 -0.142318 0.535234 0.597452 -0.562913 0.114501 0.045837 0.352823 0.115715 0.466581 0.005610 -0.476136 0.070389 0.245102 0.320267 -0.318763 -0.017692 -0.071553 -0.384978 -0.900392 -0.033268 0.369395 0.058010 0.031056 0.183971 0.413099 0.578294 0.293805 -0.152753 0.266981 0.272675 0.185172 0.175268 0.043140 0.028540 -0.096718 0.298490 -0.285308 -0.282950 0.167162 -0.001216 -0.579997 -0.133582 0.392510 0.538650 -0.048680 -0.051851 -0.236707 -0.030570 0.123793 0.098355 0.183132 0.223918 0.197457 0.265815 0.048157 0.055408 -0.584506 0.084148 -1.182482 -0.413686 -0.426928 0.676762 0.416183 -0.123267 -0.200586 0.559186 0.023693 0.230627 0.271655 0.535620 -0.159468 -0.168475 -0.248144 -0.151618 0.332483 -0.245232 -0.046660 -0.013956 0.152249 -0.301172 -0.185189 0.226984 -0.136983 -0.250302 0.216562 -0.152116 0.367550 -0.655807 0.003581 -0.588544 0.085116 0.221540 -0.577334 -0.057703 -0.102948 0.217323 0.208934 -0.063525 0.023736 0.088895 0.104035 -0.137200 0.138861 -0.696790 0.500988 0.060153 -0.114703 0.127661 0.170235 0.148529 0.159807 0.233121 -0.177045 -0.154093 0.264069 -0.166499 -0.104430 -0.318176 -0.016655 0.183964 -0.290618 0.099010 -0.029072 -0.283988 -0.236423 -0.427616 -0.199369 0.281223 0.819456 -0.062733 0.253159 0.112594 -0.337952 0.261110 0.038954 -0.122577 0.159970 0.345582 0.239839 -0.059242 -0.234403 0.035046 0.501326 0.229468 -0.230113 0.078910 -0.053037 -0.015610 -0.046372 0.270432 0.090174 -0.041356 -0.201584 -0.068057 0.133681 0.541922 0.041397 -0.492794 -0.077912 0.174823 -0.048387 -0.114095 0.093111 0.094748 -0.004793 0.072130 -0.030532 0.192607 0.462851 -1.053532 0.449889 0.091533 -0.071470 0.264295 -0.141775 -0.072384 -0.456189 0.143166 0.312177 0.532294 0.104735 -0.029857 0.016019 -0.429634 -0.053740 0.072933 0.281700 -0.264105 0.304422 0.072418 -0.290232 -0.274180 -0.452270 -0.028247 0.023555 -0.327305 0.146631 0.235173 -0.968816 0.407371 -0.166797 -0.235312 -0.060262 -0.085828 0.118285 -0.505133 -0.436953 0.012010 -0.138583 -0.604160 -0.280835 -0.185604 0.222895 -0.108104 0.023793 -0.178210 -0.351653 0.464239 -0.062643 0.216034 0.284615 0.039638 0.512440 0.425449 -0.204963 -0.104333 -0.166069 0.326515 -0.376105 -0.031477 0.304667 -0.233610 0.154794 0.677674 -0.032123 -0.064659 -0.115720 0.501815 -0.146253 -0.323783 0.251873 -0.149026 0.080317 0.425222 0.317468 -0.437193 -0.221707 -0.456225 -0.039168 0.122638 -0.233039 0.247780 -0.451657 0.054272 0.317456 -0.058197 -0.400621 0.257199 -0.072663 -0.208961 -0.083260 0.592842 0.524612 -0.316291 0.504059 -0.354573 0.243476 -0.546508 -0.210264 -0.194906 -0.095281 -0.066929 0.082423 -0.130343 0.148835 0.094349 -0.051291 -0.234126 0.111588 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_clear() = -0.146747 2.197092 1.609386 -1.150671 2.439479 2.017526 0.481376 0.215253 -0.834180 -1.868663 -0.915427 -2.410067 -3.457661 2.307862 -0.424059 0.244727 3.517216 -0.079109 0.020129 -0.887595 1.446108 -0.897322 3.502688 2.973231 -3.566327 0.803051 1.852169 1.418140 0.302730 2.488554 -0.839761 -3.057058 0.555625 -0.307456 1.811271 -1.183812 -0.434713 -1.344249 -0.620575 -4.923859 -0.729660 1.451221 -1.313535 0.186179 0.318708 1.647040 4.679172 1.931177 -1.443178 0.882881 1.625122 0.433607 0.899218 0.280134 0.152936 0.059822 1.334942 0.076613 -1.214284 0.373160 -0.336975 -2.665591 -0.509751 2.610121 3.192474 -0.542392 -0.888692 0.798109 -0.420422 0.221940 -0.738624 2.070139 1.776831 1.819836 2.360569 -1.733279 -0.317788 -4.332334 0.150839 -6.250447 -2.715023 -2.842597 1.274541 0.909208 0.995742 -1.109804 4.331726 -0.159239 1.076294 1.834139 4.307677 -2.400951 -0.524097 -2.495156 -0.882586 0.847613 -1.455332 -0.098641 0.524364 -0.643292 -2.116351 -2.503743 1.273496 -0.329869 -1.801051 -0.754332 -1.258502 2.398780 -2.960497 -1.061895 -3.989938 -0.317621 -0.136906 -4.421339 -0.912395 0.174414 1.226281 1.075003 -0.157905 -2.339552 0.798929 1.967094 -0.886839 -1.365268 -0.965532 3.284151 1.968415 -0.539192 1.080884 1.149424 1.771731 2.655351 3.144121 -0.463663 -1.346704 0.884496 -1.015825 -0.532042 -1.310755 0.216260 1.014100 -2.066257 -0.167385 1.771700 -1.392627 -0.320896 -0.024727 -2.343702 1.499157 7.651912 -0.979924 1.356684 0.176134 -3.181205 2.221750 -0.451525 -1.896386 0.623257 1.898226 2.881034 -3.448574 -1.586106 1.743579 3.500133 1.163083 -2.873665 -0.095573 -0.285704 0.064681 -1.135952 1.329154 0.960116 0.300168 -1.122497 -0.481329 1.471171 5.028964 -1.857573 -3.580464 0.873362 1.162355 -0.048090 -2.583148 -0.184732 -1.273561 -0.854306 1.042400 -0.246636 1.323494 3.103441 -5.675341 2.433119 -0.089992 -1.877675 2.220890 -0.333440 -0.334800 -2.463053 1.075017 2.960258 2.349378 0.589154 0.010118 -1.476656 -2.932003 0.116244 0.751245 1.666359 -1.625960 2.432914 -0.292802 -2.261225 -2.149699 -1.671467 -0.684685 -0.890457 -1.489020 1.008257 0.663654 -5.796358 3.643517 -0.443178 -1.006482 0.316286 -0.868747 1.912105 -2.735000 -3.611260 1.376845 -1.029508 -2.280408 -0.720094 -1.063592 1.376526 0.884553 -0.082308 -2.005739 -3.959450 2.415527 0.145547 1.937832 1.867647 1.496973 3.609873 1.016548 -2.118815 -1.823064 -1.945529 1.844380 -0.497196 -1.013591 -1.536362 -1.304171 1.858508 4.011223 -0.519377 -0.073563 -1.966358 2.300654 -2.998144 -1.055201 1.616794 1.023750 -1.371434 0.952517 1.939205 -1.238824 -1.572578 -2.665347 0.019683 -0.915574 -2.257573 0.456542 -3.112178 -0.577380 2.817442 -1.246549 -1.617727 1.463621 -0.081255 -0.415984 -1.076200 3.005193 3.756698 -2.985247 1.200485 -2.611231 2.095420 -3.861484 -2.504323 0.104338 -0.242134 -0.094311 -0.678172 0.489869 0.798301 0.237989 -0.940762 -0.980840 -0.731564 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/bfs.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/bfs.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.103476 0.641697 0.497859 -0.202878 0.824161 0.516597 0.369500 0.199136 -0.509319 -0.784774 -0.236954 -0.916835 -1.303886 1.063035 -0.046613 0.349197 1.700650 0.360424 0.073659 -0.393964 0.548691 -0.872602 1.593052 1.589766 -1.335531 0.378593 0.612344 0.426203 0.015948 0.951294 -0.429000 -1.131466 0.622660 -0.596594 0.583665 -0.797886 -0.232911 -0.325815 -0.097579 -2.287175 -0.213409 0.462332 -0.265000 -0.024871 0.040935 0.892494 1.828105 0.847668 -0.444437 0.766416 0.464175 -0.211691 0.465819 0.225554 0.270836 0.282215 0.277457 0.084568 -0.729449 0.271789 -0.198052 -1.576208 -0.182025 0.974142 1.368218 -0.250670 -0.319011 0.319413 -0.322016 0.093341 -0.086111 0.736093 0.774742 0.376674 1.007349 -1.076518 -0.223372 -1.972082 -0.281879 -3.209558 -1.252099 -1.063134 0.931508 0.125410 0.621496 -0.317222 1.677852 -0.107913 0.448728 0.634241 1.796746 -1.321889 -0.430544 -0.762861 -0.088307 0.411738 -0.690179 -0.033443 0.611984 -0.542362 -1.041807 -1.121291 1.025034 0.053994 -0.719234 -0.519137 -0.355197 1.089247 -1.427822 -0.792111 -1.825397 -0.422587 -0.163332 -1.762972 0.288106 0.176759 0.731003 0.808045 -0.331878 -1.077506 0.422808 0.769429 -0.241371 -0.839180 -0.289121 1.417857 0.496134 -0.087667 0.608159 0.493262 0.561385 1.383818 1.578165 -0.222703 -0.352038 0.437886 -0.648718 0.015306 -0.560612 -0.342949 0.495275 -1.084932 -0.094193 0.527074 -0.783678 -0.072079 0.497341 -0.503512 0.559925 2.718368 -0.248745 0.733298 0.299526 -1.345701 1.042707 -0.455047 -0.568554 0.349751 1.109417 0.957254 -1.509566 -0.695434 0.496442 1.539338 0.632007 -1.363167 -0.469452 -0.316951 0.274198 -0.273107 0.546770 0.361921 0.440750 -0.705069 -0.088574 0.574652 2.248802 -1.020561 -1.086397 0.258004 0.095687 -0.057476 -1.686181 -0.137442 -0.676947 -0.255673 0.057129 -0.085487 0.323742 1.327839 -2.231755 1.128992 -0.638718 -0.713144 0.971406 0.126124 -0.378079 -1.466239 0.369500 1.083932 1.236242 0.416507 0.104194 -0.313970 -1.279089 -0.123174 0.148120 0.636787 -0.637661 1.099386 -0.193474 -1.007322 -0.822727 -0.561396 -0.044277 -0.644216 -0.301495 0.539293 0.696047 -2.386497 1.320983 -0.176136 -0.689653 0.328782 -0.043990 0.806984 -1.209328 -1.605837 0.603913 -0.473636 -0.988665 -0.457622 -0.445601 0.559666 0.207534 -0.549578 -0.491850 -1.563544 1.186865 0.034156 0.892035 0.816438 0.375754 1.754578 0.563718 -1.112083 -0.711544 -0.583959 0.327162 -0.783837 -0.390482 -0.751213 -0.622451 0.915509 1.848173 0.112926 -0.002076 -0.557441 1.194270 -1.514949 -0.493447 0.966419 0.804998 -0.295204 0.597015 1.031906 -0.911318 -0.579525 -0.923953 -0.105150 -0.117822 -0.872058 0.352672 -1.361710 -0.086151 0.905872 -0.382456 -0.471999 0.621644 -0.043703 -0.036295 -0.510417 1.352060 1.799761 -1.395362 0.351887 -0.997538 0.726116 -1.591363 -0.969847 -0.015495 0.565129 -0.326315 -0.166925 0.444464 0.361782 0.163303 -0.724187 -0.534850 -0.336825 +PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/bfs.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/bfs.cpp__std::__new_allocator >::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/bfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/bfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.083720 2.091510 1.366277 -0.359619 1.764270 0.994141 0.719948 0.675167 -0.559317 -2.286870 -0.516342 -2.177360 -3.725642 2.182581 -0.238950 -0.160090 3.667570 0.279170 0.329360 -1.270693 1.166641 -1.538706 3.744430 3.539724 -3.647278 0.776785 2.126973 1.181516 0.844205 1.389804 -0.337967 -2.497264 1.425576 -0.773104 1.679738 -1.264721 -0.309632 -1.737586 -1.008497 -5.027494 -0.768477 0.692235 -1.313150 0.103118 0.102108 3.005358 4.657213 2.000392 -1.605766 1.355360 1.557942 -0.302976 0.766056 0.368787 -0.024966 -0.634567 0.544727 0.519102 -1.548016 0.558004 -0.116956 -3.966402 -0.797345 2.546330 3.306273 -0.569677 -0.532769 0.899980 -0.607787 0.344564 -0.592539 1.799689 2.536555 1.561691 2.828804 -2.175978 -0.872230 -5.152526 -0.763331 -8.528228 -2.957993 -2.988941 2.360755 -0.504262 0.824130 -0.581609 3.830087 0.570065 1.396620 2.114305 4.448601 -2.535818 -0.952148 -1.998853 -0.277919 1.471750 -1.871413 0.698029 1.493854 -1.118727 -2.382252 -2.419498 1.839216 -0.276175 -1.765330 -1.141537 -1.043031 2.253788 -3.274369 -0.881329 -4.517521 -1.453240 0.256850 -4.494726 0.072237 0.661008 2.839176 1.793391 -0.212651 -1.798575 0.495283 1.688997 -0.372280 -1.607716 -0.567686 3.184835 1.560644 0.007574 1.570323 1.482215 1.872850 2.774053 3.980758 -0.168993 -1.232827 0.683842 -1.602773 -0.168380 -1.239567 -0.305341 2.052539 -2.078855 0.419665 1.301486 -1.641542 -1.213251 1.289209 -1.887088 1.625575 6.335810 -0.320014 1.534248 0.564743 -3.007350 1.627760 -1.329863 -1.770118 0.940035 2.464994 2.542573 -2.810306 -1.415006 1.163741 3.547854 1.235267 -3.481002 -0.464180 -0.328609 0.392392 -1.401580 1.258420 0.959654 0.942841 -1.309365 -0.210127 2.227428 4.295147 -2.279002 -3.168347 0.379793 0.730584 0.419217 -3.290711 -0.005514 -0.458674 -0.488667 0.779399 -0.036220 0.895975 2.987535 -5.700701 2.271142 -0.520354 -1.251710 1.702409 0.413003 -1.002284 -3.201857 1.788924 2.872058 2.206859 1.182139 -0.082561 -1.017635 -2.932362 -0.257534 0.706838 1.517534 -1.341773 2.454841 -0.460662 -1.867452 -2.498233 -1.646497 -0.011700 -0.715075 -0.802046 1.142005 0.916030 -6.374895 3.463587 -0.993638 -1.862854 -0.155246 -0.998996 1.908249 -3.211251 -3.837815 1.095471 -1.548768 -3.109893 -1.449845 -1.093049 1.118529 0.662225 -0.665243 -1.274516 -3.562970 3.017396 0.017287 1.778801 1.923457 1.434754 4.861297 0.485099 -2.466108 -2.009369 -1.286411 1.696451 -1.544867 -1.396396 -1.351547 -1.295153 1.722446 4.488532 -0.641521 -0.000158 -1.205766 2.262963 -3.972367 -1.908973 1.910512 2.743855 -0.667918 2.001589 2.059049 -1.931118 -1.396869 -2.515920 -0.632578 -0.168553 -2.558438 0.519308 -3.364669 -0.301012 2.687335 -0.937404 -1.206959 1.652347 -0.495242 0.101871 -1.235184 2.569896 5.489034 -4.057488 0.778429 -2.689755 1.947818 -4.023807 -2.919626 0.459356 0.559369 0.223585 -0.529675 0.595067 0.518487 0.413461 -2.147296 -1.541073 -0.226072 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/bfs.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::_M_erase(std::_List_iterator) = 0.034729 1.615688 1.465928 -0.683626 1.819542 1.043269 0.371467 0.640995 -0.587224 -1.634984 -0.676598 -1.704429 -2.910330 1.643021 -0.321567 -0.244621 2.550804 0.006578 0.151402 -0.911988 0.850739 -0.743882 2.622877 2.070142 -2.837334 0.625484 1.249045 1.281959 0.515968 1.806108 -0.454697 -2.089902 0.516650 0.163133 1.491679 -0.851206 -0.141301 -1.188774 -1.189081 -3.662633 -0.594191 1.126121 -1.123447 0.294855 0.339854 2.148249 3.434289 1.443732 -1.236094 0.845763 1.306719 0.137029 0.677258 0.261444 -0.189791 -0.420946 1.013935 -0.045094 -1.215317 0.435512 -0.112894 -2.727494 -0.595685 1.802409 2.428117 -0.573392 -0.527358 0.493374 -0.362546 0.275762 -0.381745 1.398455 1.733276 1.214163 2.022904 -0.744181 -0.432210 -3.086908 -0.063216 -5.556618 -2.071175 -2.451240 1.646719 0.501241 0.235628 -0.910273 3.130391 0.196397 0.961005 1.501508 3.140312 -1.561802 -0.526532 -1.947737 -0.407997 0.932027 -1.284843 -0.095563 0.633812 -0.294357 -1.491700 -1.540034 0.941594 -0.596445 -1.298436 -0.288195 -1.172933 1.845916 -2.594545 -0.399432 -3.361986 -0.372126 0.343429 -3.213836 -0.556394 0.468924 1.493401 0.954764 0.249396 -0.966647 0.472549 1.290234 -0.588383 -0.594070 -1.035095 2.591514 1.268530 -0.399767 1.009209 1.145024 1.338972 1.522324 2.584756 -0.210626 -1.307019 0.799981 -0.795227 -0.386693 -0.988111 0.234075 1.113797 -1.492340 0.204052 0.941190 -1.012020 -0.626024 -0.393220 -1.706879 1.316522 4.753278 -0.490333 0.852858 -0.006889 -2.119617 1.450159 -0.352871 -1.367831 0.637613 1.416438 1.951786 -1.784796 -1.082783 1.055084 2.443814 0.830945 -2.330758 0.236551 -0.248268 0.167029 -0.935308 0.937224 0.977786 0.304813 -0.681309 -0.271248 1.039135 3.347886 -1.259518 -2.988709 0.539956 0.687401 0.046738 -1.736212 -0.006603 -0.066031 -0.691232 0.821140 -0.118128 0.822745 2.260078 -4.379773 1.780311 0.200069 -1.184336 1.429096 -0.371887 -0.102312 -1.893655 0.873643 2.136755 1.773225 0.742801 -0.259933 -1.011691 -2.105532 0.145593 0.640275 1.275720 -0.941078 1.645607 -0.230553 -1.378888 -1.689318 -1.702021 -0.336084 -0.055637 -1.096223 0.650437 0.423230 -4.904656 2.563171 -0.807550 -0.993309 -0.060455 -0.564587 1.331269 -2.116654 -2.643858 0.791830 -0.942097 -2.520324 -1.068605 -0.742353 0.904700 0.467572 -0.143175 -1.209799 -2.877657 2.089820 -0.014419 1.130014 1.385882 1.108201 3.187347 0.994624 -1.698951 -1.282750 -1.283875 1.656020 -0.885082 -0.532981 -0.416107 -0.859476 1.148487 3.084897 -0.429725 0.150520 -1.389209 1.739988 -2.279772 -1.343006 1.344940 0.978369 -0.571137 1.473079 1.549194 -1.118812 -1.281311 -2.099729 -0.199161 -0.335779 -1.640547 0.310488 -2.534154 -0.442449 2.241146 -0.719580 -1.451714 1.179644 -0.383090 -0.486484 -1.156250 2.414805 3.634340 -2.670362 1.268416 -1.875736 1.680450 -2.872571 -1.804060 -0.007603 -0.232124 0.276275 -0.228235 0.334186 0.381552 0.209920 -1.132487 -1.002652 -0.380074 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_dec_size(unsigned long) = -0.127014 0.315512 0.452788 -0.423880 0.619428 0.695284 0.234357 -0.323062 -0.475354 -0.229121 -0.012498 -0.925772 -0.663395 0.776790 -0.175132 0.409664 1.065334 0.071503 -0.190387 -0.244805 0.271690 -0.032421 1.130260 1.128075 -0.815841 0.262287 0.211244 0.150824 0.006725 0.677526 -0.486442 -0.833010 0.321675 -0.217113 0.238969 -0.285542 -0.322382 -0.205279 0.355194 -1.401800 -0.060597 0.407976 -0.037321 -0.067028 0.157716 0.363148 1.191550 0.555836 0.031468 0.440505 0.299195 0.045026 0.380433 0.079947 0.474815 0.204735 0.781787 -0.127753 -0.328172 0.017011 -0.193437 -0.347661 -0.213165 0.764178 0.876211 -0.038953 -0.375197 0.006597 0.055619 0.036721 -0.034623 0.596434 0.296446 0.550102 0.353008 -0.574620 0.296326 -0.927774 0.000999 -1.303224 -0.796033 -0.297511 0.416423 0.294901 0.482783 -0.366427 1.166493 -0.116723 0.001623 0.010317 1.174936 -0.890220 -0.188937 -0.165997 -0.163782 0.022334 -0.290173 0.142120 0.135031 -0.258607 -0.730849 -0.571534 0.592818 0.060980 -0.493352 0.048479 -0.035054 0.613312 -0.690162 -0.445443 -0.687798 0.045533 -0.145028 -1.208495 -0.044804 -0.140364 0.132164 0.312251 -0.470122 -0.863755 0.370542 0.390099 -0.337872 -0.468782 -0.512180 0.892653 0.585446 0.031625 0.150411 0.247323 0.437561 1.043520 0.485118 -0.345966 0.006981 0.127781 -0.215454 0.137188 -0.262110 -0.124855 -0.052094 -0.599641 -0.042230 0.473883 -0.478351 0.279858 -0.009414 -0.134790 0.104483 2.161354 -0.410655 0.722883 0.324065 -0.927319 0.554259 -0.293126 -0.298309 0.050060 0.525999 0.677556 -1.165462 -0.527563 0.625021 1.126629 0.419692 -0.861472 0.065710 0.011635 -0.018496 -0.285091 0.520871 0.089311 0.220501 -0.510789 -0.151927 0.344492 1.705246 -0.555422 -0.829436 0.157836 0.012428 0.166533 -0.621778 -0.111098 -0.416387 -0.039219 0.097820 0.062386 0.405239 0.882530 -1.551530 0.805686 -0.249588 -0.651173 1.085142 0.071562 -0.426893 -0.436171 0.018860 0.652208 0.766590 0.148318 0.009209 -0.166017 -0.871283 -0.078511 0.031075 0.264083 -0.590876 0.693730 0.199465 -0.779048 -0.340946 -0.457626 0.024582 -0.466528 -0.510502 0.456918 0.341970 -1.581195 0.880686 0.295522 -0.317497 0.154136 -0.259082 0.491979 -0.658536 -0.802830 0.306286 -0.368717 -0.386873 -0.107193 -0.325184 0.239144 0.101978 0.301580 -0.739540 -0.850775 0.735061 -0.040803 0.813446 0.541546 0.135473 0.613943 0.286631 -0.525288 -0.310873 -0.594419 0.386277 -0.088207 -0.401668 -0.127016 -0.491026 0.623387 0.935568 -0.033629 -0.164446 -0.551802 0.605691 -0.837345 0.045196 0.457400 0.266165 -0.517361 0.076847 0.557501 -0.359309 -0.119021 -0.514628 -0.366340 -0.482368 -0.509073 0.384515 -0.492280 0.043599 0.354303 -0.322261 -0.340271 0.323035 -0.041322 -0.179885 0.054184 0.845261 0.827587 -0.502612 0.291229 -0.782430 0.598024 -0.925089 -0.683832 0.176493 -0.075072 -0.559372 -0.316049 0.068363 0.430809 0.170773 -0.304329 -0.314825 0.052250 +PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/partition-problem.cpp__findPartiion(int*, int) = -5.948731 -6.362448 -2.643749 -8.735793 4.775883 8.373584 3.161774 -10.260543 -10.928829 -1.349179 5.501945 -16.064357 -5.153495 11.993396 -4.694349 10.212358 14.124202 0.096573 -6.822083 -4.862603 9.211616 2.050498 17.167649 18.133777 -9.226524 -0.558502 -2.797475 5.211884 3.202741 -2.917596 4.605137 -5.161814 2.949587 -10.837177 -1.426384 -2.498386 -2.957368 5.780375 11.992581 -16.748063 -0.570541 3.361087 2.739627 -0.057337 -0.094970 2.136272 8.233616 9.420288 2.543894 8.328496 6.828756 -1.223807 6.422504 0.394329 3.623714 0.252629 2.320591 -2.644196 -1.066862 -3.136219 -3.566650 2.000888 1.535961 12.067163 13.035761 1.977018 -7.290677 4.013438 5.184480 3.335945 4.027546 10.020214 -3.137245 4.919799 5.556626 -14.161373 2.689658 -17.146653 3.242545 -11.839286 -7.855235 3.874677 7.611203 5.535240 7.162947 0.337089 16.986090 -1.974407 -8.643588 11.621690 12.981768 -9.424844 -2.449756 -1.069159 -5.279411 -1.206956 -3.408491 5.223762 1.794566 9.151305 -10.741042 -4.872000 0.896626 1.498807 -6.090367 -5.339323 0.902378 7.372075 -7.170090 -6.864621 -1.298513 10.272989 -0.704198 -17.493328 -6.551992 -8.798996 1.513981 1.148492 -10.214288 -9.558815 5.083401 0.864482 -3.328527 -3.575631 -3.148872 5.503567 8.582690 2.634128 -2.546323 8.310331 2.736900 18.427759 -1.851407 -7.267020 2.458494 2.587811 -0.623481 6.357023 -3.983483 -3.096590 2.060203 -9.947503 1.443818 5.393447 -5.713865 -3.249877 2.562731 1.770332 -2.828458 34.786562 -2.838280 14.182237 12.701969 -8.329007 3.828677 -6.107263 4.484383 3.629237 5.250425 4.280768 -16.584691 -10.343696 11.685467 16.437272 5.841216 -10.852942 -0.866149 5.694922 1.866916 -2.697719 6.193167 1.291606 0.791673 -5.212497 -1.034101 7.578490 22.083229 -6.222658 1.683635 2.592144 4.522226 0.989302 -10.057122 -2.899626 -9.076426 -0.504778 5.675328 6.051773 5.671966 12.871706 -13.603977 10.134291 -0.070787 2.218988 9.986336 4.929107 -10.781006 -10.203394 -5.832586 3.944487 8.547504 -2.571482 -1.767792 2.622147 -13.700838 0.943022 3.721906 1.222630 -8.445280 11.748678 -0.021544 -4.574730 -2.637691 3.477236 -4.810703 -3.238393 -3.602565 10.035334 0.545368 -9.766218 8.487382 3.935007 -5.098895 1.137951 -3.984672 11.644032 -7.698741 -8.528157 7.203088 -5.276160 -5.659223 -3.254144 -2.339020 2.664996 4.774768 4.825938 -12.088234 -7.629009 11.937817 -4.275381 15.144412 6.061104 -3.930651 4.112754 -5.718194 -6.189392 -5.262547 -9.013408 0.421468 4.594604 -8.612234 -5.485858 -2.547692 9.109943 7.481822 -0.195798 -9.534367 -0.121097 11.371036 -9.530604 -1.206626 2.861352 2.192884 -10.198495 3.364618 5.434125 -8.609447 5.407551 -7.895305 -2.392313 -9.638657 -5.781654 9.653706 -0.238950 4.688920 -2.410727 -1.968988 2.738324 4.887048 5.869326 0.927030 6.138657 15.482532 6.309993 1.235831 -3.536628 -15.303533 8.068439 -10.995900 -10.826081 2.751669 3.135247 -8.503554 -3.799406 -1.114706 11.629658 8.296578 -8.726227 -7.251923 6.025375 +PE-benchmarks/partition-problem.cpp__main = -0.212576 -0.326734 0.302544 -0.491865 0.416117 -0.148770 0.320420 0.218180 -1.078349 -0.963481 0.375703 -1.578452 -1.060532 1.095303 -0.253179 0.180897 1.379790 0.294210 -0.284819 -0.370249 0.315840 -0.432350 1.214291 1.466097 -0.934400 0.150372 -0.563099 0.477483 0.089541 0.359165 0.678293 -1.053843 0.130920 0.061477 0.533269 -0.282328 -0.228831 0.337458 -0.131341 -1.850763 -0.064283 1.468691 0.773511 -0.046729 0.304160 0.729827 0.954364 0.773414 -0.195930 0.846093 0.635000 -0.220392 0.695230 0.033662 0.126340 -0.490627 0.147562 -0.616244 -0.720049 0.306456 -0.250615 -0.888933 -0.170700 0.894418 1.256860 -0.155776 -0.461914 -0.298712 0.213583 0.554729 0.465539 0.643932 0.364647 0.022716 0.706088 -0.083081 -0.158869 -1.692893 0.412145 -2.593930 -1.036675 -0.097910 1.957716 1.506485 -0.214697 -0.644559 1.410418 -0.162810 -0.324985 1.006705 1.293166 -0.190215 -0.483807 -0.435779 -0.452287 0.489061 -0.548819 -0.056223 0.359805 0.744286 -0.959351 -0.063579 0.237383 -0.305124 -0.492440 0.171841 -0.169522 0.926285 -1.164615 -0.136899 -0.819762 0.803543 0.778528 -1.492290 0.115176 -0.351966 -0.578961 0.676631 -0.781060 0.224199 0.488402 -0.442422 -0.506994 0.353472 -1.708400 1.151006 -0.025496 0.259872 0.147985 0.807220 0.389769 0.446681 0.132078 -0.638757 0.053756 0.403964 -0.013369 0.498690 -0.484052 -0.444875 0.483906 -0.757324 0.102457 -0.416200 -0.673219 -0.672267 -1.257333 -0.083325 0.026414 1.548789 -0.198622 1.161727 0.732213 -0.564513 1.173633 -0.014177 0.125290 0.234869 0.829881 0.413794 -0.011268 -0.708937 0.760995 1.466912 0.585355 -0.598501 -0.040021 0.500647 0.266948 -0.126393 0.851964 0.320580 0.290334 -0.592330 -0.107122 0.486104 1.411535 -0.038955 -0.503803 -0.050701 0.662502 0.277834 -0.736387 0.131876 -0.440154 -0.043800 0.181663 0.226020 0.415859 1.178331 -1.928413 1.145320 0.264438 0.275055 0.830356 -0.075810 -0.710549 -1.943939 -0.271192 0.407579 1.155516 0.182268 -0.285544 0.152370 -1.114288 -0.003835 0.145949 0.275759 -0.624980 0.952413 -0.558628 -0.168533 -0.407386 -0.734459 -0.501782 -0.051900 -0.644979 0.671658 1.154727 -1.016141 0.772830 -0.137783 -0.593859 -0.488204 -0.007719 0.551835 -0.776934 -0.861593 0.120131 -0.860239 -1.700277 -0.834003 -0.455662 0.119599 -0.013324 -0.268005 -0.198754 -0.706373 1.489057 -0.374980 1.204413 0.614687 -0.393157 0.849263 1.662611 -0.628047 -0.046359 -0.577460 0.352188 -0.800941 -0.293777 0.046528 -0.394915 0.450799 0.897869 0.071035 -0.547553 -0.372596 1.115949 -0.245472 -0.679180 0.599342 -1.128287 -0.045230 1.058981 0.782361 -1.031558 0.208327 -1.320399 0.171193 -0.392414 -0.371147 0.586646 -0.432981 0.131421 0.072754 -0.239631 -0.387464 0.328441 0.316805 -0.539542 -0.093974 1.669948 0.599032 -0.425680 0.762595 -1.212381 0.690503 -1.086082 -0.683144 -0.260128 0.428842 -0.658866 -0.122819 -0.048583 0.454335 0.511173 -0.669135 -1.029754 0.814524 +PE-benchmarks/topological-sorting.cpp__Graph::Graph(int) = -0.886871 -0.353017 0.767178 -1.783412 1.162852 0.995514 0.410560 -0.848063 -1.389678 -1.018199 0.615275 -1.692805 -2.233590 1.857005 -0.732418 0.245240 1.180535 -0.765547 -0.888833 -1.231136 1.149372 -0.763242 2.130421 1.889254 -2.224627 0.037407 0.101549 1.481186 0.369871 1.118776 0.558282 -0.957366 -0.791572 0.322133 1.440981 0.537627 -0.555454 -0.048229 -0.216505 -2.469148 -0.400903 2.355885 0.393642 0.063368 0.382942 0.544310 1.484941 1.397248 0.112313 0.749775 1.513490 -0.208230 1.396938 -0.301156 1.203996 -0.464769 1.912759 -0.270240 0.003629 -0.066071 -0.674896 -0.346056 0.109076 2.011536 2.134391 -0.659266 -1.068819 -0.334929 0.157511 1.216118 0.360379 1.714488 -0.116849 0.616049 1.745560 -0.498202 0.635133 -2.231303 1.250257 -2.368168 -1.583015 -0.045413 1.320372 1.700051 0.331098 -0.682506 3.176779 0.016607 -1.104992 0.375170 1.701236 -0.088378 -0.043586 -0.372897 -1.274213 -0.092360 -0.607702 0.066458 0.039322 1.393582 -1.574929 0.246495 -0.008691 -0.231418 -1.336363 0.396940 -0.941650 1.421743 -1.071854 0.010450 -1.000993 1.457096 0.503980 -2.910461 -1.080448 -1.563999 -0.729368 -0.067344 -0.867762 -0.027394 0.966174 0.353118 -0.692274 -0.066005 -1.845405 1.805799 1.437511 -0.019921 -0.182868 1.116752 0.356121 1.015353 0.282424 -0.621162 -0.650769 0.724482 -0.269446 0.690223 0.001976 0.379471 0.718355 -0.619811 -0.196263 -0.224526 -0.324728 -0.343018 -1.107959 -0.749597 -0.108865 4.672193 -1.082331 1.772666 0.783706 -0.948689 1.428544 0.419648 0.109870 0.641787 1.173942 0.742509 -1.264409 -1.268969 2.038357 2.466819 0.569046 -1.306027 0.677188 1.105986 -0.004866 -0.873666 1.568050 -0.033170 0.077404 -0.618754 -0.375504 0.187470 2.679102 -0.765686 -2.313946 0.479028 1.248655 -0.118901 -0.632566 0.264718 -0.925206 -0.489129 0.194284 0.421053 1.140751 1.856154 -2.952604 1.621538 0.397448 -0.606102 2.486144 -0.870997 -0.535934 -2.568023 -0.257748 0.330477 1.511726 -0.086827 -0.898480 -0.343271 -2.090822 0.634756 0.060827 0.463797 -1.581240 2.139944 -0.901035 -0.653609 -0.675386 -1.503704 -1.005771 0.338657 -1.618982 0.726364 0.251304 -2.259252 1.628963 0.325285 -0.484548 -0.575251 -0.030336 1.081709 -0.758619 -1.530843 0.521359 -0.989697 -1.603908 -1.359758 -0.941176 0.305390 0.238231 0.027909 -2.069772 -0.816651 2.082945 -1.249009 2.441331 1.017563 -0.231894 0.920019 1.954041 -0.864280 -0.298732 -0.854501 0.772522 0.213425 -1.232039 -0.466484 -0.742961 0.888183 0.922984 -0.221979 -0.234707 -0.894606 1.952432 -0.411230 -0.582716 0.074324 -1.322431 -0.856218 1.212365 0.776571 -0.307633 0.103344 -2.181086 -0.450106 -1.924871 -1.227398 1.424337 -0.373501 0.551350 0.139536 -0.203861 -0.537453 0.304441 0.600804 -0.746823 -0.007201 2.552141 1.203992 -0.967823 0.373363 -2.267286 1.778210 -1.079125 -0.678853 -0.204823 -0.335185 -0.407153 -0.668487 -0.645870 1.278532 1.260447 -1.004509 -1.049320 0.731554 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/topological-sorting.cpp__Graph::addEdge(int, int) = -0.164326 0.331884 0.450107 -0.264187 0.527004 0.590706 0.242617 -0.119605 -0.410527 -0.492845 -0.064848 -0.887586 -0.943390 0.806856 -0.217229 0.252976 1.153778 0.178897 -0.118789 -0.280318 0.314766 -0.259326 1.260686 1.212431 -0.927336 0.186563 0.277930 0.475983 0.071305 0.652928 -0.196768 -0.771066 0.385684 -0.276657 0.288088 -0.401325 -0.185549 -0.210944 -0.077080 -1.556732 -0.155943 0.451956 -0.176537 -0.007302 0.115819 0.448248 1.239375 0.646140 -0.029216 0.504433 0.294081 -0.047873 0.430800 0.130127 0.300084 0.037132 0.475676 -0.289547 -0.484457 0.058847 -0.181542 -0.949825 -0.238634 0.816049 1.006179 -0.042053 -0.276699 0.057121 -0.183261 0.132910 -0.002605 0.600411 0.326987 0.537521 0.592142 -0.547811 0.192863 -0.903189 -0.100729 -1.660822 -0.837275 -0.579908 0.653839 0.471930 0.414948 -0.207579 1.255804 -0.059976 0.132561 0.404428 1.298107 -0.898381 -0.278445 -0.348565 -0.077224 0.227173 -0.497978 0.108263 0.129249 -0.054671 -0.760052 -0.563051 0.552367 0.033816 -0.511060 -0.057575 -0.224935 0.751796 -1.059194 -0.465316 -1.066060 -0.151156 -0.053566 -1.356959 -0.205103 0.024186 0.471496 0.479771 -0.349678 -0.710050 0.389677 0.470976 -0.088781 -0.444295 -0.432986 0.889278 0.413544 -0.063726 0.272787 0.483841 0.393248 1.064241 0.809088 -0.158857 -0.158589 0.267679 -0.392360 0.088566 -0.242868 -0.147495 0.002098 -0.763372 -0.031841 0.500667 -0.538004 -0.087995 -0.236702 -0.223312 0.318292 2.197603 -0.255340 0.639053 0.379791 -0.952312 0.475534 -0.385870 -0.290319 0.162458 0.584383 0.713420 -1.032760 -0.528170 0.527964 1.187139 0.449544 -0.861966 0.096608 -0.067078 0.185379 -0.299788 0.504540 0.264725 0.245007 -0.514608 -0.093038 0.470217 1.577414 -0.641029 -0.887849 0.206534 -0.128492 0.094844 -0.847071 -0.052924 -0.151683 -0.133772 0.158313 0.030641 0.207726 0.959184 -1.348457 0.862491 -0.169163 -0.444669 0.945579 0.010591 -0.372971 -0.602222 0.107303 0.759529 0.793835 0.213331 -0.127073 -0.204822 -0.975013 -0.073344 0.184665 0.436078 -0.496987 0.823542 0.056660 -0.707374 -0.599708 -0.521847 0.060607 -0.332889 -0.440527 0.458587 0.263608 -1.606895 0.968569 0.048525 -0.492582 0.119028 -0.154598 0.556854 -0.877131 -1.076542 0.375662 -0.475918 -0.849761 -0.302191 -0.327481 0.290055 0.309305 -0.124220 -0.599615 -0.796863 0.891601 -0.016220 0.739850 0.548455 0.231097 1.039302 0.381999 -0.706836 -0.345333 -0.497444 0.354741 -0.408263 -0.375856 -0.308837 -0.408021 0.663596 1.218997 -0.041182 -0.147699 -0.384453 0.831957 -0.902941 -0.365608 0.566210 0.398956 -0.363527 0.385661 0.648253 -0.574672 -0.263311 -0.623105 -0.274663 -0.295733 -0.660089 0.352378 -0.817783 0.048266 0.569489 -0.268365 -0.408865 0.374726 -0.009136 -0.075102 -0.103070 1.009564 1.081055 -0.734119 0.360547 -0.857581 0.591656 -1.117721 -0.723980 0.104760 0.202570 -0.224904 -0.181987 0.152537 0.356470 0.301226 -0.624119 -0.403787 -0.036241 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -0.632807 1.067025 1.873390 -2.006360 1.752780 2.158433 0.647145 -0.206732 -1.859307 -2.631354 0.122500 -4.102222 -3.981059 3.078281 -1.197673 -0.043070 4.357156 0.097381 -0.667710 -1.221665 1.373422 -0.041850 4.666328 4.941164 -4.181662 0.449653 0.569835 2.306621 0.957620 1.578810 0.992824 -3.445253 0.574862 0.047562 1.576100 -1.034293 -0.602037 -0.728213 -0.836337 -6.089267 -0.733999 2.631858 -1.169457 0.079886 0.863386 1.661713 4.866747 2.592074 -0.894458 1.520960 2.018405 0.708817 1.477047 0.035600 0.304248 -1.328143 0.884243 -1.565200 -1.197023 0.307450 -0.429999 -2.809417 -0.753898 3.779435 4.111128 -0.053725 -1.282199 -0.227598 0.155875 0.715651 0.066622 2.663678 1.629059 2.426234 2.587534 -1.495511 0.280151 -4.628808 0.906098 -6.385623 -3.242367 -1.959097 3.507970 3.220112 0.388056 -1.882944 5.120635 -0.173761 0.230857 3.617709 4.918469 -2.047889 -0.842553 -2.049117 -1.388669 1.335735 -1.871612 0.813843 -0.783307 1.183145 -2.932907 -1.657133 0.599636 -0.518656 -2.196410 -0.169686 -0.867160 2.748533 -3.768519 -0.562869 -3.436706 1.121264 1.060138 -5.569170 -2.020447 -0.952200 1.411905 1.241702 -1.414245 -1.380519 1.051581 0.891428 -0.715730 -0.360073 -3.369332 3.438709 1.952967 -0.061741 0.480445 2.267417 1.915275 3.108139 1.640942 -0.962797 -0.675207 1.045832 -0.830172 0.219844 -1.318844 0.122471 1.248046 -2.187689 -0.491405 1.359009 -1.908056 -1.618566 -2.062753 -1.715709 1.077951 10.105894 -0.837069 2.738830 1.874552 -3.170497 1.911157 -0.838330 -1.014024 0.893789 2.065598 2.926905 -3.723933 -2.111587 2.361858 4.863779 1.564297 -2.664549 1.229245 0.985199 0.143749 -1.695009 2.364923 0.659089 0.371946 -1.670124 -0.526554 2.675792 5.415854 -1.155950 -2.882088 0.233857 1.476538 0.727445 -1.768421 0.331793 -0.107613 -0.361256 1.887284 0.422739 1.717958 3.829730 -5.889014 3.102165 0.803367 -0.501873 2.404044 -0.082140 -1.750358 -2.817175 0.667109 2.777608 2.796398 0.488299 -0.288741 -0.726560 -3.920810 -0.079255 1.263285 1.594805 -2.283470 3.326541 -0.091479 -1.957374 -2.400407 -2.146393 -1.188172 -0.231285 -2.451912 1.884921 0.698499 -5.388178 3.927885 -0.044764 -1.643103 -0.785669 -1.695788 2.589563 -3.749596 -3.931450 1.274346 -2.035335 -4.293608 -1.333979 -1.553320 1.145211 1.123765 0.134408 -2.877242 -3.260722 4.065423 -0.270929 3.299262 2.225864 0.580781 3.829387 1.624186 -1.935943 -1.348239 -3.088540 2.772145 -0.485678 -1.949462 -0.578287 -1.512624 1.892020 4.315167 -1.118077 -1.493146 -1.098421 3.087679 -2.564239 -1.800122 1.257497 0.281477 -1.536573 1.950544 1.886947 -2.283365 -0.393799 -3.641424 -0.282843 -1.374983 -2.620770 1.661130 -2.577401 0.392527 2.217157 -0.944405 -1.697215 1.530825 0.356805 -0.668987 0.256863 4.210010 3.846139 -2.072146 1.607778 -4.155495 2.667662 -4.448255 -3.265289 0.091462 -0.361553 -0.319401 -0.909651 -0.466780 1.608945 1.774811 -1.778943 -1.936573 1.348201 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/topological-sorting.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -1.577743 -1.239889 0.591405 -2.914381 2.941198 1.970937 0.980794 -1.931428 -3.381469 -1.907217 0.824769 -4.727387 -3.193773 4.086935 -2.239006 2.602309 4.858419 0.007550 -0.978042 -1.801768 3.522566 -0.738135 5.810263 4.933403 -4.722230 -0.213792 -0.086344 2.604986 1.295865 1.645243 2.248811 -3.397602 0.362356 -2.199081 1.793833 -2.090994 -0.734016 1.702416 2.033035 -7.092404 -1.023289 3.618019 -0.098818 0.764217 1.633376 2.860540 3.431968 3.368786 -1.486883 4.019931 2.703887 0.478667 2.862041 0.044034 -0.689828 -0.132396 1.375195 -1.358672 -1.267819 0.305397 -1.827294 -1.202555 1.404401 4.611479 5.755457 -0.985340 -2.115502 1.415403 1.217891 1.497334 1.291769 4.314794 -0.322462 1.893514 3.408912 -3.795969 -0.153646 -7.652967 1.586622 -7.249553 -3.223872 -0.828193 2.536779 3.367351 1.313130 -0.626644 7.184638 -0.293545 -1.845588 5.540651 4.557995 -2.117130 -0.468273 -2.566736 -2.645741 -0.237143 -1.942356 -0.394544 0.340449 3.402397 -3.508979 -2.805228 -0.524086 -0.276527 -2.308710 -1.760222 -1.636188 3.567128 -4.361297 -3.010330 -2.795229 3.399364 -0.571470 -6.814541 -1.788313 -2.492556 0.696072 1.000572 -1.262815 -2.014841 2.120982 1.268323 -1.347681 -0.395160 -2.061156 3.751578 2.656423 0.485061 -0.599375 2.832544 0.274806 4.039174 1.685815 -1.915979 -1.108163 2.022280 -0.539225 1.377369 -2.299174 0.005311 2.113307 -3.355054 -0.493911 1.446179 -1.840289 -2.015978 -0.900149 -2.270972 0.361554 11.369183 -1.605806 4.131640 2.838194 -3.888237 2.369269 -0.138099 1.062869 1.673560 2.730972 2.822080 -5.013048 -3.262021 3.829823 5.463764 1.740033 -3.598243 -0.868778 1.654318 0.996066 -0.285351 2.200081 1.755346 -0.953787 -2.330519 -0.185030 0.275777 7.822647 -1.528376 -1.166568 0.748656 3.538042 -1.307442 -3.775528 -0.393654 -3.284372 -1.462578 2.088603 0.933062 1.384351 4.579642 -7.279283 3.909518 0.405291 0.705038 2.571914 -0.100924 -2.161411 -6.294581 -1.677120 1.847984 2.940088 -0.713211 -0.031622 0.297710 -4.683266 1.752572 0.735719 1.961507 -2.629640 4.746156 -1.133626 -2.334737 -1.842924 0.421636 -1.930978 -1.146357 -1.730708 2.758422 1.684138 -4.591721 3.229895 -0.671201 -1.884943 0.858378 0.439135 4.413403 -3.062370 -3.961312 2.503299 -2.129230 -3.458132 -2.615540 -1.600799 1.354997 1.834485 0.189040 -3.673723 -4.523519 3.260923 -1.899267 4.016328 2.502589 -0.713007 3.835068 -0.083010 -2.646388 -2.461990 -3.451890 0.767580 0.715579 -0.846918 -2.332111 -1.014486 3.052503 3.698856 -0.460919 -1.945620 -1.551184 4.878415 -2.914498 -0.483506 1.452338 -0.988981 -2.365126 1.997543 2.194090 -2.691518 0.435030 -3.577975 1.629781 -3.133815 -0.516713 3.014696 -2.299766 -0.188168 0.167147 -0.587570 -1.029048 1.243092 2.235307 -0.590733 0.020033 6.392201 3.807804 -1.159388 0.776427 -4.153605 2.996175 -4.673422 -2.896678 -1.153506 0.267241 -1.110607 -0.130737 -0.063599 3.346498 3.338733 -2.325494 -2.188836 0.866248 +PE-benchmarks/topological-sorting.cpp__std::stack > >::stack >, void>() = 0.058933 0.212654 0.413247 -0.235060 0.277973 -0.016459 0.085676 0.272721 -0.328630 -0.377531 -0.096736 -0.389611 -0.470133 0.371374 -0.089051 -0.213233 0.619521 0.207681 0.030493 -0.233412 -0.036838 -0.171014 0.478424 0.568025 -0.507299 0.183988 0.015920 0.259964 0.027783 0.522403 -0.037535 -0.542479 0.023614 0.287266 0.318779 -0.288033 -0.112637 -0.112416 -0.398729 -0.906963 -0.014553 0.424464 0.038196 0.005877 0.202086 0.433680 0.640796 0.240591 -0.135322 0.287343 0.216648 0.168651 0.170616 0.022763 0.118821 -0.044305 0.331163 -0.245704 -0.292606 0.218577 -0.032706 -0.524705 -0.154162 0.350994 0.441678 -0.064020 -0.122077 -0.276792 -0.031301 0.107040 0.067971 0.188113 0.267023 0.161942 0.241647 0.078864 0.032166 -0.554146 0.119596 -1.250344 -0.441629 -0.369505 0.733960 0.403707 -0.173752 -0.232534 0.548587 -0.064428 0.232332 0.261612 0.534177 -0.104663 -0.156975 -0.206594 -0.164173 0.278192 -0.151449 -0.106724 -0.002526 0.096664 -0.311607 -0.135672 0.265531 -0.174620 -0.241739 0.259946 -0.110362 0.360923 -0.672995 0.061159 -0.580290 0.136341 0.272267 -0.512589 -0.066260 -0.039040 0.188171 0.229924 -0.153417 0.030338 0.149019 0.064735 -0.212803 0.189180 -0.681885 0.512794 0.004411 -0.072271 0.131962 0.157376 0.187649 0.102651 0.256850 -0.179202 -0.084874 0.251894 -0.083446 -0.114073 -0.223792 -0.042577 0.101213 -0.244815 0.121942 -0.094581 -0.291392 -0.211051 -0.479070 -0.198442 0.213858 0.760576 -0.140727 0.275215 0.049612 -0.323928 0.256151 0.057056 -0.171013 0.082904 0.368181 0.288722 0.017254 -0.194978 0.082555 0.510615 0.227492 -0.234991 0.109217 -0.031329 -0.062538 0.023418 0.321538 0.019009 0.041513 -0.208644 -0.092559 0.074038 0.612396 0.075567 -0.554721 -0.105510 0.150158 0.032272 -0.056414 0.136029 0.108882 0.015748 0.074935 -0.088180 0.224153 0.440281 -1.137966 0.467454 0.008698 -0.147539 0.251729 -0.094828 -0.032651 -0.485617 0.046871 0.308599 0.596959 0.145697 -0.048057 -0.040610 -0.389885 -0.070413 0.055553 0.258661 -0.292748 0.315361 0.059406 -0.330454 -0.190129 -0.488304 -0.028863 0.079542 -0.346671 0.115457 0.232050 -1.015067 0.403929 -0.088333 -0.162348 -0.111856 -0.025714 0.087919 -0.411713 -0.421114 -0.020169 -0.154481 -0.638561 -0.206754 -0.253539 0.192347 -0.109298 0.029840 -0.143280 -0.360204 0.515138 -0.029090 0.298825 0.303864 0.005808 0.547128 0.464598 -0.193486 -0.030188 -0.203274 0.383740 -0.413172 0.028944 0.353752 -0.291049 0.114332 0.598710 -0.010634 -0.056637 -0.180640 0.467032 -0.105648 -0.235636 0.250302 -0.219690 0.086788 0.444856 0.338632 -0.374456 -0.184331 -0.481468 -0.047141 0.052535 -0.156073 0.204186 -0.418221 -0.007608 0.307878 -0.094896 -0.420753 0.206962 -0.119478 -0.243667 -0.082094 0.544408 0.535588 -0.341751 0.550232 -0.306173 0.267890 -0.478084 -0.189287 -0.232453 -0.065460 -0.105575 0.011995 -0.169045 0.101717 0.066614 -0.053972 -0.227256 0.176004 +PE-benchmarks/topological-sorting.cpp__std::stack > >::empty() const = -0.025566 0.191729 0.256441 -0.155261 0.260568 0.124800 0.087510 -0.011867 -0.207953 -0.270447 -0.015011 -0.448661 -0.414658 0.330932 -0.110772 0.023132 0.462693 0.052144 -0.010584 -0.158712 0.048036 -0.116135 0.502159 0.504551 -0.434408 0.120640 0.084635 0.193720 0.033413 0.342352 -0.072034 -0.427234 0.100055 0.063303 0.173551 -0.137645 -0.080586 -0.104028 -0.085213 -0.667728 -0.052949 0.268753 0.035198 0.006199 0.087613 0.256631 0.557410 0.260631 -0.070164 0.238972 0.209025 0.055201 0.180682 0.042702 0.112801 -0.090351 0.314066 -0.201489 -0.213704 0.074468 -0.041073 -0.385456 -0.142464 0.357493 0.444222 -0.036374 -0.111015 -0.070186 -0.074258 0.075657 0.012334 0.240610 0.164744 0.251246 0.218471 -0.077062 0.110485 -0.475645 0.008369 -0.857316 -0.374821 -0.238057 0.388802 0.314856 0.058202 -0.096769 0.521927 0.036358 0.078518 0.146999 0.546152 -0.264352 -0.122641 -0.100075 -0.119576 0.154923 -0.190183 0.052769 -0.014371 0.060107 -0.304519 -0.195371 0.240703 -0.062014 -0.223720 0.095902 -0.094379 0.249969 -0.501638 -0.074435 -0.418108 -0.027358 0.097178 -0.553070 -0.042537 -0.019398 0.144430 0.176510 -0.132150 -0.170216 0.129270 0.093340 -0.113857 -0.036157 -0.468619 0.376408 0.141437 0.005898 0.113900 0.142078 0.220589 0.319317 0.193392 -0.134385 -0.077842 0.090916 -0.090323 0.025774 -0.131804 -0.043280 0.047068 -0.268029 0.083992 0.080247 -0.223425 -0.108253 -0.253078 -0.158871 0.127348 0.731063 -0.108715 0.284971 0.131169 -0.373419 0.194582 -0.115864 -0.152339 0.067122 0.254733 0.290315 -0.144887 -0.219079 0.217828 0.486034 0.181931 -0.277194 0.057097 0.048513 0.030749 -0.089391 0.255935 0.078079 0.043770 -0.205731 -0.063448 0.174008 0.597774 -0.091418 -0.350894 0.044910 0.063840 0.060526 -0.195152 0.028809 -0.030991 -0.012189 0.045363 0.007443 0.136511 0.403148 -0.832731 0.368318 0.019535 -0.150840 0.330986 -0.051302 -0.163173 -0.346097 0.091522 0.307432 0.345225 0.090969 0.019254 -0.067346 -0.386294 -0.042518 0.042694 0.161681 -0.257267 0.316658 0.042590 -0.316905 -0.249119 -0.308339 0.001810 -0.059567 -0.264969 0.181165 0.219495 -0.789708 0.405736 -0.016724 -0.198205 -0.062886 -0.098409 0.171535 -0.373351 -0.390018 0.062722 -0.266688 -0.409200 -0.140794 -0.156829 0.075885 -0.008574 0.010819 -0.203740 -0.265585 0.378578 -0.031700 0.260348 0.249129 0.083267 0.363827 0.255546 -0.232247 -0.089678 -0.125193 0.238812 -0.259549 -0.110981 0.141503 -0.205364 0.198688 0.507693 -0.022394 -0.070496 -0.128444 0.319080 -0.203774 -0.186605 0.217520 -0.020556 -0.109664 0.239221 0.253563 -0.228548 -0.092576 -0.359688 -0.090706 -0.099380 -0.252162 0.159443 -0.295924 -0.003319 0.264014 -0.128953 -0.267464 0.195791 -0.051119 -0.119283 -0.048355 0.443444 0.404751 -0.273019 0.293988 -0.362841 0.205956 -0.468219 -0.298697 0.001484 0.007608 -0.135169 -0.084763 -0.059997 0.134267 0.089976 -0.129559 -0.191048 0.092978 +PE-benchmarks/topological-sorting.cpp__std::stack > >::top() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/topological-sorting.cpp__std::stack > >::pop() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/topological-sorting.cpp__std::stack > >::~stack() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/topological-sorting.cpp__main = 0.331491 0.113779 1.020951 -0.470204 0.204815 -0.953760 0.135333 1.440374 -0.873364 -1.208883 -0.097239 -0.791520 -1.209484 0.622266 -0.039713 -1.321212 1.160397 0.583933 0.148786 -0.672761 -0.518260 -0.378100 0.540453 1.032386 -0.930639 0.414982 -0.558675 0.641561 0.221261 0.772961 0.703547 -1.030533 -0.256763 1.460832 1.019841 -0.478996 -0.294112 -0.184382 -1.832047 -1.871248 -0.012711 1.582712 0.258193 0.088544 0.774033 1.769277 1.006841 0.292487 -0.470778 0.725599 0.389358 0.199527 0.443798 -0.115398 0.008849 -0.752136 0.302025 -0.599680 -0.764229 0.857067 0.001606 -1.419998 -0.446163 0.457079 0.672243 -0.282873 -0.333802 -1.206479 0.222975 0.465972 0.352282 0.241108 1.017992 -0.120087 0.647391 1.150787 -0.286020 -1.033671 0.659476 -3.508333 -0.923990 -0.669156 2.863102 1.153162 -1.466276 -1.067429 0.866205 -0.118914 0.493708 1.061637 0.711596 0.822047 -0.374081 -0.443030 -0.297778 0.934315 -0.181462 -0.415668 0.256314 0.681512 -0.523595 0.554322 0.162914 -0.984001 -0.392480 1.128677 -0.271430 0.757613 -1.501510 1.006906 -1.277299 0.802299 1.580244 -0.665281 -0.138353 0.001561 0.233610 0.616464 -0.393434 1.526614 0.265116 -0.703729 -0.574175 1.482319 -2.267423 1.218435 -0.576157 -0.095635 0.263236 0.752000 0.287841 -0.982115 0.227309 -0.362394 -0.137645 0.790586 0.076279 -0.249687 -0.421169 -0.048936 0.770126 -0.081911 0.395891 -1.254349 -0.573285 -1.071038 -1.973219 -0.343359 0.326362 0.510612 -0.175602 0.541682 0.044996 0.065081 0.573684 0.577108 -0.131803 0.230389 0.865019 0.349041 1.305858 -0.124883 -0.102089 0.914685 0.381112 -0.231842 0.678049 0.254804 -0.199660 0.085609 0.918325 -0.081952 0.269840 -0.192651 -0.126520 0.003033 0.388658 0.809037 -1.372448 -0.805095 0.680016 0.396924 0.583180 0.746649 1.090393 0.076110 0.209560 -0.182494 0.507369 0.661659 -2.507244 0.920056 0.497292 0.279425 0.035643 -0.277775 0.097316 -1.651179 -0.124599 0.243396 1.406207 0.530960 -0.531476 0.060623 -0.592167 -0.118249 0.208366 0.481598 -0.485160 0.547169 -0.239104 0.067516 -0.064581 -1.600214 -0.259706 1.013147 -0.863284 0.073664 0.626560 -1.907578 0.395101 -0.500476 -0.338597 -0.989922 0.112395 -0.205053 -0.675726 -0.550137 -0.581362 -0.445782 -2.518134 -0.943907 -0.737898 0.201699 -0.543644 -0.072074 0.169497 -0.462093 1.702304 -0.268812 0.684371 0.601165 -0.437465 1.478402 1.833901 -0.259898 0.415950 -0.529299 1.234818 -1.314398 0.434144 1.583582 -0.564412 -0.414799 0.894574 -0.136645 -0.110925 -0.300212 0.970443 0.394275 -0.911155 0.367274 -1.292934 0.987297 1.881975 0.647636 -0.984623 -0.148344 -1.431957 -0.099991 0.422428 0.132891 0.463077 -0.802572 -0.075813 0.435328 -0.077519 -1.053673 0.279935 -0.387056 -0.942138 -0.216581 1.203974 1.409883 -0.794191 1.722481 -0.496282 0.683897 -0.601733 0.029494 -1.008031 -0.278017 0.112131 0.189957 -0.643021 -0.150651 0.318858 -0.431399 -0.919324 1.170711 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/topological-sorting.cpp__std::deque >::~deque() = 0.107745 0.271634 0.636155 -0.201671 0.618841 -0.213580 0.047607 0.807174 -0.318424 -0.980952 -0.306132 -0.604814 -1.403779 0.476858 -0.170416 -0.441348 0.715004 0.074367 0.210668 -0.584904 0.072178 -0.335570 0.799659 0.451505 -1.181663 0.196346 -0.038039 0.959076 0.429835 0.695268 0.495718 -0.705675 -0.035386 0.744761 0.930428 -0.327013 0.186296 -0.111570 -1.285801 -1.389153 -0.342902 1.073652 -0.154428 0.438323 0.414274 1.420958 0.841123 0.520984 -0.638145 0.664647 0.656729 0.030744 0.535827 0.092888 -0.622092 -0.670699 0.168074 -0.738610 -0.677973 0.454770 0.096615 -1.635359 -0.278893 0.447722 1.003487 -0.554418 -0.183447 -0.052285 -0.088380 0.346900 0.177502 0.517839 0.725794 0.086205 0.961986 0.572347 -0.344246 -0.850019 0.300090 -2.638655 -0.732049 -1.191673 1.438623 0.997571 -0.633661 -0.637116 1.252110 0.229896 0.301850 0.892194 0.788658 0.040607 -0.198535 -0.969018 0.043058 0.654403 -0.650112 -0.428828 0.221091 0.729863 -0.275041 -0.027449 0.022438 -0.814581 -0.461844 0.233205 -0.906065 0.783686 -1.427122 0.244146 -1.560832 0.305230 0.697568 -0.961402 -0.140337 0.281641 0.313520 0.361225 0.568796 0.824738 0.085795 -0.017244 -0.175065 0.617754 -1.327514 1.053684 0.178741 -0.424433 0.420046 0.945861 0.282337 -0.167683 0.645482 -0.047820 -0.969059 0.810758 -0.054193 -0.160479 -0.521083 0.282929 0.771644 -0.536656 0.164189 -0.346783 -0.233737 -0.684831 -1.332399 -0.798901 0.604683 0.624687 0.064021 0.032313 -0.036695 -0.238763 0.590981 0.236648 -0.211145 0.542192 0.419901 0.423387 0.509592 -0.318292 0.123430 0.694262 0.179415 -0.529337 0.358918 0.070521 0.299182 -0.301174 0.387926 0.701022 -0.061307 0.087692 0.047849 -0.063757 0.605408 0.067216 -0.893952 0.035680 0.579912 -0.214985 -0.237462 0.183595 0.510302 -0.567569 0.337499 0.125859 0.072901 0.713742 -1.499008 0.641686 0.721588 0.129400 0.099577 -0.599516 0.369943 -1.199080 0.113495 0.437742 0.699152 0.197749 -0.125880 -0.246031 -0.736853 0.330017 0.348806 0.557053 -0.162746 0.490121 -0.346658 0.101508 -0.493242 -0.951150 -0.344239 0.655712 -0.515827 0.129116 0.556208 -1.703739 0.508982 -0.947026 -0.523597 -0.246577 0.105859 0.467397 -0.748496 -0.650036 0.065339 -0.434207 -1.902195 -0.938931 -0.236963 0.248511 -0.196182 -0.357449 -0.082830 -0.780056 1.018999 -0.217316 0.001164 0.477401 0.135793 1.221894 0.973768 -0.717318 -0.097716 -0.443456 0.668717 -0.823771 0.421919 0.684294 -0.056896 0.035066 1.124718 -0.017095 0.151416 -0.280697 0.819903 -0.305810 -1.034536 0.476533 -0.366578 0.430913 1.402711 0.550377 -0.632452 -0.506820 -1.154007 0.277587 0.290148 -0.271462 0.260251 -1.169403 -0.243655 0.890658 -0.107362 -0.902511 0.564603 -0.147778 -0.676106 -0.856163 1.463523 1.354566 -0.885723 1.079375 -0.602714 0.613899 -0.885508 -0.148791 -0.601346 -0.109206 0.476712 0.331471 0.014093 -0.044465 0.308409 -0.558586 -0.737911 -0.003141 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.042536 0.202646 0.137250 0.014529 0.261946 0.045219 0.146519 0.043450 -0.166282 -0.260925 -0.101344 -0.275340 -0.390466 0.356159 -0.000863 0.221497 0.573032 0.205335 0.058406 -0.154716 0.162289 -0.466104 0.549240 0.516521 -0.397215 0.141786 0.198008 0.150873 -0.017364 0.386131 -0.216827 -0.305618 0.284322 -0.283900 0.187103 -0.340544 -0.046032 -0.033648 -0.019005 -0.767846 -0.051349 0.100417 0.108345 -0.011992 -0.035599 0.307372 0.558357 0.288973 -0.072596 0.314782 0.107944 -0.139078 0.204804 0.136279 0.139697 0.193767 0.164828 -0.087166 -0.323029 0.105097 -0.069876 -0.681741 -0.044318 0.276554 0.467220 -0.098010 -0.058609 0.154805 -0.196458 0.037945 0.019394 0.196815 0.168328 0.054738 0.290602 -0.448646 0.008335 -0.592933 -0.209512 -1.181533 -0.410931 -0.387759 0.275637 0.025757 0.293141 0.053491 0.527802 -0.010094 0.175772 0.041743 0.586721 -0.539136 -0.182382 -0.185406 0.070418 0.140075 -0.261941 -0.068415 0.293507 -0.184974 -0.329244 -0.378065 0.513860 0.069315 -0.219733 -0.171466 -0.124811 0.357705 -0.574525 -0.384246 -0.659909 -0.295748 -0.143827 -0.531552 0.339724 0.106913 0.256911 0.311364 -0.073472 -0.426473 0.158248 0.301316 -0.027535 -0.342599 -0.156586 0.440905 0.069508 -0.053309 0.247420 0.146769 0.122563 0.528555 0.577791 -0.071190 -0.132402 0.172371 -0.287577 0.018461 -0.181839 -0.225410 0.124159 -0.450603 -0.037134 0.152328 -0.278958 0.031304 0.221666 -0.095167 0.221623 0.590196 -0.046629 0.199037 0.097632 -0.460716 0.332339 -0.206640 -0.160814 0.118672 0.396035 0.253019 -0.399645 -0.260152 0.096292 0.466488 0.231057 -0.410891 -0.297572 -0.213233 0.170509 0.019580 0.120475 0.162392 0.144400 -0.271192 -0.008523 0.075648 0.757328 -0.376188 -0.189787 0.133380 -0.139505 -0.116625 -0.732396 -0.095950 -0.281635 -0.092699 -0.195555 -0.031082 -0.004011 0.438959 -0.668305 0.414487 -0.338652 -0.252775 0.368365 -0.006837 -0.096766 -0.612998 0.097952 0.348854 0.441564 0.100642 0.093398 -0.063025 -0.418175 -0.060349 -0.034853 0.227431 -0.179097 0.331151 -0.057146 -0.379888 -0.276271 -0.123277 0.098554 -0.278989 0.006848 0.177330 0.394416 -0.769665 0.401905 -0.109554 -0.265708 0.224621 0.120588 0.222862 -0.400011 -0.508971 0.192719 -0.158183 -0.266023 -0.183318 -0.098109 0.189270 -0.042100 -0.352099 -0.049692 -0.398921 0.329423 -0.015798 0.194112 0.256901 0.128813 0.546448 0.235578 -0.421065 -0.196919 0.005742 -0.164630 -0.457895 -0.043515 -0.204594 -0.187812 0.354732 0.683113 0.157192 0.076262 -0.054184 0.436935 -0.515815 -0.216417 0.411900 0.282827 -0.052447 0.224270 0.393210 -0.360151 -0.252952 -0.234607 -0.056516 0.054206 -0.276564 0.124207 -0.500889 -0.036364 0.296191 -0.120991 -0.156024 0.243415 -0.023706 0.001308 -0.245768 0.494205 0.561322 -0.456918 0.107082 -0.257345 0.130278 -0.523223 -0.238139 -0.028978 0.399264 -0.167411 0.010519 0.233020 0.120995 0.028036 -0.257304 -0.162951 -0.244861 +PE-benchmarks/topological-sorting.cpp__std::deque >::begin() = 0.036863 0.420172 0.456205 -0.148082 0.416983 0.283831 0.143694 0.163517 -0.264429 -0.324484 -0.173171 -0.561257 -0.655366 0.475978 -0.049466 -0.015843 0.773879 0.182877 0.010943 -0.151641 0.034716 -0.231736 0.704476 0.730406 -0.635751 0.257795 0.126788 0.256801 -0.072357 0.713503 -0.307077 -0.645398 0.141479 0.110151 0.337235 -0.299277 -0.164047 -0.243237 -0.259742 -1.141630 -0.079560 0.505574 0.042518 -0.025205 0.168146 0.321777 0.957479 0.348709 -0.091285 0.263288 0.154472 0.024728 0.316433 0.073465 0.228534 0.084793 0.496805 -0.192454 -0.403476 0.164019 -0.063744 -0.685235 -0.210165 0.464301 0.610990 -0.047451 -0.180503 -0.153182 -0.128275 0.041399 -0.063342 0.335676 0.323249 0.342122 0.331777 -0.029528 0.169397 -0.496682 0.015603 -1.189440 -0.617703 -0.528658 0.563651 0.462130 0.140547 -0.317534 0.786409 -0.098475 0.296903 0.085046 0.839579 -0.485559 -0.183111 -0.289827 -0.096133 0.243260 -0.247816 -0.077993 0.081039 -0.170697 -0.461537 -0.374076 0.478986 -0.056644 -0.354902 0.224994 -0.159253 0.457108 -0.685692 -0.200260 -0.810007 -0.144584 0.052615 -0.770973 -0.023891 0.092041 0.036625 0.360764 -0.158134 -0.374933 0.217806 0.250081 -0.182583 -0.154212 -0.638484 0.728678 0.160122 -0.142309 0.262403 0.197763 0.315487 0.424723 0.472383 -0.133475 -0.123447 0.227758 -0.209332 -0.083093 -0.213760 -0.087888 -0.027391 -0.421549 -0.053347 0.157627 -0.369471 0.072686 -0.453993 -0.218257 0.269525 1.150635 -0.198895 0.328405 0.047084 -0.604747 0.543496 -0.057937 -0.351036 0.054116 0.435609 0.515712 -0.448890 -0.286741 0.202450 0.722219 0.282638 -0.409275 0.084758 -0.112711 0.017806 -0.109614 0.403367 0.110535 0.172868 -0.330817 -0.088456 0.183490 1.010727 -0.252281 -0.786367 0.070430 -0.046408 0.054663 -0.404616 0.035881 -0.102097 -0.099311 -0.053759 -0.085874 0.203409 0.597352 -1.109382 0.608982 -0.111535 -0.453155 0.653626 -0.170687 -0.098115 -0.407882 0.151054 0.531753 0.644027 0.194655 -0.112941 -0.214533 -0.568580 -0.094879 0.056278 0.313476 -0.363462 0.497707 0.005496 -0.526921 -0.342977 -0.601914 0.023797 -0.206372 -0.423541 0.198526 0.349710 -1.120863 0.638948 0.023794 -0.260487 0.040574 -0.078808 0.109128 -0.543792 -0.663026 0.098855 -0.242124 -0.575339 -0.163830 -0.284655 0.198460 0.050041 -0.104682 -0.312820 -0.571287 0.588329 0.040462 0.389649 0.417947 0.171153 0.594942 0.717198 -0.439036 -0.115649 -0.285882 0.296763 -0.402480 -0.090577 0.014977 -0.409643 0.326602 0.874624 0.011518 0.024638 -0.431236 0.531297 -0.341887 -0.261847 0.406638 -0.162800 -0.084801 0.236726 0.464590 -0.326124 -0.286478 -0.504459 -0.134787 -0.058551 -0.352398 0.167656 -0.637782 -0.082122 0.503906 -0.286365 -0.440769 0.255870 -0.133308 -0.232177 -0.167383 0.674723 0.516603 -0.511905 0.538177 -0.432540 0.361179 -0.704225 -0.301578 -0.087544 0.017212 -0.213491 -0.104137 0.096170 0.104087 0.042718 -0.204124 -0.239285 -0.063488 +PE-benchmarks/topological-sorting.cpp__std::deque >::end() = 0.036863 0.420172 0.456205 -0.148082 0.416983 0.283831 0.143694 0.163517 -0.264429 -0.324484 -0.173171 -0.561257 -0.655366 0.475978 -0.049466 -0.015843 0.773879 0.182877 0.010943 -0.151641 0.034716 -0.231736 0.704476 0.730406 -0.635751 0.257795 0.126788 0.256801 -0.072357 0.713503 -0.307077 -0.645398 0.141479 0.110151 0.337235 -0.299277 -0.164047 -0.243237 -0.259742 -1.141630 -0.079560 0.505574 0.042518 -0.025205 0.168146 0.321777 0.957479 0.348709 -0.091285 0.263288 0.154472 0.024728 0.316433 0.073465 0.228534 0.084793 0.496805 -0.192454 -0.403476 0.164019 -0.063744 -0.685235 -0.210165 0.464301 0.610990 -0.047451 -0.180503 -0.153182 -0.128275 0.041399 -0.063342 0.335676 0.323249 0.342122 0.331777 -0.029528 0.169397 -0.496682 0.015603 -1.189440 -0.617703 -0.528658 0.563651 0.462130 0.140547 -0.317534 0.786409 -0.098475 0.296903 0.085046 0.839579 -0.485559 -0.183111 -0.289827 -0.096133 0.243260 -0.247816 -0.077993 0.081039 -0.170697 -0.461537 -0.374076 0.478986 -0.056644 -0.354902 0.224994 -0.159253 0.457108 -0.685692 -0.200260 -0.810007 -0.144584 0.052615 -0.770973 -0.023891 0.092041 0.036625 0.360764 -0.158134 -0.374933 0.217806 0.250081 -0.182583 -0.154212 -0.638484 0.728678 0.160122 -0.142309 0.262403 0.197763 0.315487 0.424723 0.472383 -0.133475 -0.123447 0.227758 -0.209332 -0.083093 -0.213760 -0.087888 -0.027391 -0.421549 -0.053347 0.157627 -0.369471 0.072686 -0.453993 -0.218257 0.269525 1.150635 -0.198895 0.328405 0.047084 -0.604747 0.543496 -0.057937 -0.351036 0.054116 0.435609 0.515712 -0.448890 -0.286741 0.202450 0.722219 0.282638 -0.409275 0.084758 -0.112711 0.017806 -0.109614 0.403367 0.110535 0.172868 -0.330817 -0.088456 0.183490 1.010727 -0.252281 -0.786367 0.070430 -0.046408 0.054663 -0.404616 0.035881 -0.102097 -0.099311 -0.053759 -0.085874 0.203409 0.597352 -1.109382 0.608982 -0.111535 -0.453155 0.653626 -0.170687 -0.098115 -0.407882 0.151054 0.531753 0.644027 0.194655 -0.112941 -0.214533 -0.568580 -0.094879 0.056278 0.313476 -0.363462 0.497707 0.005496 -0.526921 -0.342977 -0.601914 0.023797 -0.206372 -0.423541 0.198526 0.349710 -1.120863 0.638948 0.023794 -0.260487 0.040574 -0.078808 0.109128 -0.543792 -0.663026 0.098855 -0.242124 -0.575339 -0.163830 -0.284655 0.198460 0.050041 -0.104682 -0.312820 -0.571287 0.588329 0.040462 0.389649 0.417947 0.171153 0.594942 0.717198 -0.439036 -0.115649 -0.285882 0.296763 -0.402480 -0.090577 0.014977 -0.409643 0.326602 0.874624 0.011518 0.024638 -0.431236 0.531297 -0.341887 -0.261847 0.406638 -0.162800 -0.084801 0.236726 0.464590 -0.326124 -0.286478 -0.504459 -0.134787 -0.058551 -0.352398 0.167656 -0.637782 -0.082122 0.503906 -0.286365 -0.440769 0.255870 -0.133308 -0.232177 -0.167383 0.674723 0.516603 -0.511905 0.538177 -0.432540 0.361179 -0.704225 -0.301578 -0.087544 0.017212 -0.213491 -0.104137 0.096170 0.104087 0.042718 -0.204124 -0.239285 -0.063488 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/topological-sorting.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::~_Deque_base() = 0.162058 1.837287 1.773074 -1.408828 1.694031 2.509798 0.131412 -0.105788 -0.797269 -0.579080 -0.535676 -2.345244 -1.972510 1.437495 -0.528347 -0.599969 2.099291 -0.330755 -0.385305 -0.002464 -0.012828 1.360229 1.979824 2.103772 -2.072229 0.771330 0.422771 0.590147 -0.580222 2.453377 -0.955022 -3.095043 -0.506630 1.504020 0.828746 -0.018366 -0.915494 -1.380388 -0.412700 -3.158533 -0.251780 2.155074 -0.839770 -0.197554 0.939747 -0.576603 3.515289 0.900955 -0.225944 -0.118886 0.702695 1.440177 0.615834 -0.243690 0.901670 -0.127557 2.150512 -0.606850 -0.408552 0.072849 -0.255169 0.250002 -0.996078 1.945635 1.601495 0.358894 -0.978448 -1.176674 0.088608 -0.003474 -0.801649 1.420177 0.852982 2.358509 0.517457 1.138041 0.858550 -0.878229 1.178098 -0.770047 -1.742801 -1.069982 0.935095 2.578517 0.123857 -1.817523 2.646099 -0.690163 0.671469 0.601841 2.734780 -0.763339 -0.047305 -0.939518 -1.417849 0.369983 -0.153179 0.191083 -1.480657 -0.282178 -1.430796 -1.158838 0.119690 -0.331322 -1.210355 1.393140 -0.206517 1.050075 -1.167937 0.296817 -1.349237 0.859215 0.459959 -2.677328 -2.647037 -0.314901 -0.978258 0.335599 -0.927405 -1.376788 0.712963 0.576785 -1.149752 0.023742 -2.032472 1.973816 1.383129 -0.414970 0.133437 0.163042 1.592597 1.072300 0.039470 -0.616875 0.050059 0.139938 0.346262 -0.583667 -0.397769 0.774945 -1.228542 -0.511219 0.025010 1.209076 -0.896651 0.318106 -3.110101 -1.376035 0.440354 6.048180 -1.386003 1.333438 -0.001105 -2.095262 1.369313 0.310611 -1.589310 -0.444748 0.650462 2.386355 -1.729446 -0.733561 1.508651 2.484470 0.677913 -0.705285 1.804795 0.539686 -0.887915 -0.966260 1.845522 -0.235239 0.102882 -0.844783 -0.700928 1.187535 3.254546 -0.018141 -3.788193 0.187147 1.049264 0.972145 1.130190 0.424780 -0.193491 -0.070601 1.387737 -0.412028 1.614259 1.824506 -3.941762 1.675781 0.929537 -1.788975 2.191768 -0.547381 -0.415774 0.959994 0.512449 1.959389 1.602902 0.393418 -0.543928 -1.283790 -1.673846 -0.245955 0.633686 0.830318 -1.686265 1.650788 0.553147 -1.974713 -0.971814 -2.344237 -0.604043 -0.462836 -2.691048 0.553397 -0.112883 -3.386205 2.539854 1.162432 -0.010346 -0.629314 -1.486220 0.343545 -1.436345 -1.928891 0.241455 -0.754157 -1.282148 0.697905 -1.234699 0.504605 1.057240 1.844023 -2.269354 -1.912489 1.638916 0.655046 1.899557 1.327011 0.774093 0.752599 1.694281 -0.513910 -0.218992 -2.251251 2.982644 0.731048 -0.902367 0.267177 -1.612970 0.724519 1.961740 -0.885127 -0.769820 -2.584120 1.007452 -0.049877 0.269673 0.324347 -1.708637 -1.262156 -0.485369 0.837649 0.121767 -0.465442 -1.881912 -0.193933 -1.435199 -1.222193 0.332741 -1.187251 -0.295726 1.719020 -1.319817 -1.733908 0.392144 -0.326686 -1.001273 0.576739 1.408465 0.099626 -0.696806 2.136212 -1.776546 1.625455 -2.105019 -1.452526 0.110102 -2.224250 -0.693336 -1.158086 -0.891354 0.479387 0.022482 0.611230 -0.341114 0.645879 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.097473 1.840169 1.526155 -1.064946 1.574044 1.915908 0.218109 -0.294476 -0.516576 -0.522702 -0.576822 -1.469221 -1.603830 1.316047 -0.304127 -0.099817 2.129924 -0.176660 -0.210666 -0.406036 0.626013 0.130979 2.080291 2.051502 -2.153535 0.741114 1.368074 0.579956 0.112636 1.892539 -1.399693 -1.880481 0.071816 0.067680 0.738361 -0.599961 -0.626305 -1.384783 0.020446 -3.004899 -0.246102 0.420941 -1.111487 -0.135093 0.327412 0.430123 3.328337 0.983807 -0.618443 0.086794 0.901777 0.761041 0.286762 -0.004730 0.681379 0.374537 1.952641 0.501665 -0.310293 0.030618 -0.114982 -0.655223 -0.402239 1.797170 1.650701 0.124903 -0.630997 -0.017833 0.028223 -0.211213 -0.735554 1.213679 0.838978 1.833229 0.892113 -0.992772 0.601768 -2.234546 0.230921 -2.381970 -1.649412 -1.398299 0.284486 0.228381 0.788169 -0.569132 2.404852 -0.307335 0.875738 0.480066 2.614843 -1.564744 -0.129810 -0.952092 -1.037803 0.351112 -0.398345 0.321601 -0.437471 -0.863549 -1.322362 -1.679887 0.995381 0.095901 -1.190946 0.267838 -0.250626 1.094320 -1.323664 -0.435188 -1.704635 -0.215164 -0.301302 -2.592190 -1.217149 -0.231061 0.984286 0.345149 -0.444571 -2.066603 0.402528 1.387221 -0.761819 -0.898124 -0.610928 1.815477 1.510939 -0.228651 0.409315 -0.092175 1.381223 1.654166 1.500441 -0.435834 -0.287736 0.117356 -0.514202 -0.564370 -0.607243 0.344061 -0.194319 -0.852692 0.025416 1.514664 -0.873447 0.306297 0.074875 -1.215902 0.695004 5.700470 -0.886878 1.047396 -0.017881 -2.205553 0.970156 -0.230184 -1.533881 0.098629 0.946007 2.041965 -2.757348 -0.843843 1.053981 2.183028 0.704512 -1.679669 0.375131 -0.124614 -0.705607 -0.622457 1.060782 -0.100291 0.144963 -0.849390 -0.558096 1.137348 3.390697 -0.863749 -3.000605 0.361203 0.255636 0.224431 -0.798057 0.022353 -0.501468 -0.052797 0.766495 -0.400889 1.284757 1.772374 -4.037370 1.442965 -0.218675 -1.836929 1.826654 -0.056956 -0.408153 -0.020310 0.849096 1.945043 1.439650 0.404907 -0.290040 -0.952649 -1.641708 -0.263239 0.423093 0.792334 -1.371614 1.467440 0.650195 -2.020006 -1.155247 -1.315189 -0.074845 -0.664153 -1.420943 0.567103 -0.611884 -3.944809 2.436205 0.517959 -0.285267 0.146171 -1.203740 0.692883 -1.550218 -2.065444 0.642759 -0.315273 -0.515145 0.165708 -0.859915 0.843346 0.749834 1.024598 -1.934420 -2.343727 1.078938 0.217798 1.360553 1.260604 1.012228 1.647767 0.338615 -0.708994 -1.162093 -1.159171 1.751063 0.424301 -1.004703 -0.708743 -1.320938 1.061716 2.307855 -0.681021 -0.081913 -1.633732 1.085986 -1.539033 -0.112969 0.598431 0.596112 -1.325892 -0.199670 0.917749 -0.264975 -0.782256 -1.306034 -0.631268 -0.821798 -1.393916 0.393495 -1.385259 -0.219543 1.716551 -0.917671 -1.072294 0.789299 -0.447634 -0.143291 0.055301 1.173950 1.979989 -1.484975 0.878462 -1.506260 1.375002 -2.246511 -1.661871 0.406166 -0.998681 -0.436552 -0.833922 -0.212586 0.654686 -0.067861 0.012523 -0.055651 -0.114244 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.280910 0.613662 0.426447 -0.599673 0.844427 0.632485 0.320973 0.051308 -0.666269 -1.040547 -0.330176 -1.031987 -1.389410 1.282096 -0.228504 0.452377 2.095984 0.446534 0.043443 -0.534550 0.953454 -1.043138 1.853733 2.014472 -1.735615 0.263934 0.913270 0.779172 0.241084 0.996547 -0.054674 -1.413386 0.452316 -0.726259 0.965912 -1.177803 -0.166536 -0.018111 0.020002 -2.885518 -0.274307 0.573288 -0.105652 0.024633 0.073935 0.645630 2.005653 1.093749 -0.744913 0.780481 0.875257 0.220471 0.516575 0.174494 0.094786 0.377272 0.092692 -0.061909 -0.494528 0.316245 -0.207380 -1.487697 0.150149 1.411289 1.831774 -0.277386 -0.355897 0.413253 -0.145578 0.199629 -0.081347 1.000794 0.530010 0.479292 1.148071 -1.794876 -0.265078 -3.085269 0.092258 -3.780301 -1.375936 -1.269303 0.840214 0.484197 0.738523 -0.259233 2.191700 -0.189740 0.484950 1.173702 2.035650 -1.322093 -0.363830 -1.168401 -0.485547 0.575270 -0.821031 -0.099039 0.457998 -0.166642 -1.157254 -1.484060 0.899331 0.109820 -0.945198 -0.873886 -0.471973 1.338210 -1.613000 -1.022398 -1.981880 -0.052610 -0.275200 -2.252913 0.233016 -0.446271 0.611939 0.642826 -0.379751 -1.371093 0.385607 0.982599 -0.309643 -0.879388 -0.572037 1.570940 0.764930 -0.290043 0.442744 0.509139 0.499187 1.654503 1.555301 -0.468928 -0.509133 0.717625 -0.835953 -0.207241 -1.067918 -0.287039 0.956991 -1.312671 -0.338509 0.700721 -0.897722 -0.332382 0.842007 -1.001816 0.752910 4.177721 -0.302800 0.863879 0.559387 -1.574169 1.321209 -0.229427 -0.543608 0.607904 1.356390 1.152597 -2.121570 -0.968774 0.558287 1.913777 0.745119 -1.278540 -0.932550 -0.284618 0.170042 -0.235801 0.600134 0.298644 0.016762 -0.768904 -0.161360 0.698724 2.550773 -0.915488 -0.746055 0.181760 0.863901 -0.496242 -2.031926 -0.155221 -1.440835 -0.305297 0.179246 -0.067241 0.609989 1.660641 -2.917649 1.345391 -0.522797 -0.488672 0.866987 0.054028 -0.403057 -2.329193 0.552785 1.248605 1.462428 -0.011791 0.479733 -0.252633 -1.668306 -0.052131 0.217723 0.915873 -1.001767 1.381571 -0.272522 -1.125154 -1.007916 -0.183969 -0.450034 -0.955556 -0.342217 0.690266 0.884055 -2.408637 1.636286 -0.356649 -0.673225 0.545066 -0.202405 1.144345 -1.624883 -1.854597 0.860413 -0.241634 -0.814509 -0.475604 -0.529140 1.012039 0.114794 -0.592707 -0.776681 -1.928157 1.153687 -0.115091 1.079927 0.955057 0.395611 1.837786 0.332790 -1.042369 -1.053230 -0.744563 0.159342 -0.511645 -0.530344 -1.255345 -0.625445 1.104909 2.296199 0.025001 -0.212366 -0.280068 1.614586 -1.617817 -0.507815 0.859023 0.602856 -0.477149 0.533800 1.008605 -1.250901 -0.729231 -1.318974 0.335048 -0.043489 -1.059798 0.651718 -1.592286 -0.001511 1.039194 -0.453425 -0.482507 0.895998 0.371323 0.022620 -0.373299 1.725452 1.681549 -1.191194 0.215630 -1.356043 0.726941 -2.022858 -1.103591 -0.309352 0.568906 -0.295675 -0.110403 0.309161 0.706980 0.325488 -0.305003 -0.515182 -0.421894 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.189203 0.648831 0.640183 -0.123378 0.999220 0.462398 0.558507 0.497595 -0.714346 -1.261853 -0.222702 -1.270060 -2.039430 1.491257 -0.086755 0.357142 2.400694 0.603064 0.171158 -0.691710 0.725008 -1.289642 2.305219 2.319638 -1.946523 0.431075 0.767931 0.738032 0.211288 1.048379 -0.241514 -1.493472 1.009471 -0.798179 0.899904 -1.137743 -0.220377 -0.383005 -0.389652 -3.262926 -0.371362 0.748681 -0.381275 0.058461 0.116065 1.701311 2.378422 1.254122 -0.711917 1.309374 0.703944 -0.495225 0.731104 0.321870 0.164114 0.075095 0.079900 0.095730 -1.157868 0.473822 -0.251798 -2.598091 -0.331247 1.330194 2.059675 -0.458169 -0.399601 0.396760 -0.444864 0.271076 0.022077 1.033589 1.300854 0.373932 1.657736 -1.350864 -0.562518 -2.946873 -0.451777 -5.071759 -1.796414 -1.567337 1.774741 0.097499 0.654514 -0.522593 2.360202 0.041063 0.575309 1.141939 2.488864 -1.726688 -0.702211 -1.093650 0.045329 0.768895 -1.163562 0.042024 1.125323 -0.598528 -1.487706 -1.454874 1.346425 -0.083125 -0.994654 -0.783037 -0.623421 1.617892 -2.136467 -1.006916 -2.798674 -0.610834 0.015769 -2.528228 0.470335 0.329110 1.231206 1.311581 -0.408480 -1.056955 0.556991 0.873965 -0.217596 -1.036763 -0.409373 2.054158 0.609716 -0.094879 0.931931 0.992511 0.703434 1.826394 2.323982 -0.255555 -0.615873 0.752661 -1.004807 0.151466 -0.882397 -0.496187 1.066982 -1.540292 -0.002065 0.491046 -1.125973 -0.434570 0.663779 -0.651168 0.833393 3.500414 -0.166548 1.040683 0.569029 -1.708511 1.441396 -0.699292 -0.596011 0.670261 1.663712 1.193011 -1.821378 -0.950602 0.591868 2.188725 0.886848 -2.062568 -0.635977 -0.368613 0.596624 -0.540627 0.793352 0.676316 0.698475 -0.927125 -0.002340 0.887905 2.858578 -1.487748 -1.544654 0.219091 0.260043 -0.018397 -2.439375 -0.120664 -0.688402 -0.417278 0.143272 0.021163 0.316737 1.858079 -3.102921 1.562091 -0.712816 -0.665480 1.236916 0.240702 -0.612982 -2.346463 0.579411 1.395135 1.718606 0.739367 0.059765 -0.291361 -1.857337 -0.119809 0.274433 0.923501 -0.781511 1.585386 -0.450083 -1.106064 -1.214999 -0.897009 -0.055157 -0.754978 -0.346855 0.806378 1.118484 -3.448595 1.700844 -0.515198 -1.219839 0.302484 -0.013345 1.212721 -1.824556 -2.290684 0.789052 -0.827697 -1.886911 -1.003075 -0.613934 0.710372 0.263280 -0.902247 -0.512987 -2.144362 1.947230 -0.049132 1.227482 1.130795 0.401281 2.784445 0.838593 -1.725949 -0.986858 -0.802049 0.543549 -1.348106 -0.527012 -0.962474 -0.743936 1.199590 2.672826 0.146773 -0.010594 -0.697561 1.789059 -2.277574 -0.984154 1.422368 1.335506 -0.098324 1.286730 1.488819 -1.532899 -0.761166 -1.382950 -0.182668 0.015880 -1.222888 0.576748 -2.057120 -0.047095 1.195829 -0.417189 -0.639965 0.906527 -0.045915 -0.084158 -0.837630 2.033179 2.953944 -2.178544 0.542789 -1.489727 1.072042 -2.260579 -1.357153 -0.091474 0.852654 -0.292095 -0.080117 0.666204 0.433419 0.395152 -1.391710 -1.044533 -0.312485 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.123887 0.522906 0.685557 -0.438488 1.206033 0.495682 0.274420 0.280557 -0.613000 -0.978585 -0.344651 -1.023631 -1.639356 1.125311 -0.171510 0.397339 1.558240 0.094065 0.050595 -0.590905 0.778911 -0.868835 1.642658 1.198395 -1.631709 0.333080 0.518727 0.915129 0.276049 1.163402 -0.268381 -1.085303 0.363147 -0.343153 0.868537 -0.737658 -0.022248 -0.162010 -0.399881 -2.244242 -0.362241 0.767106 -0.466004 0.292557 0.131782 1.381792 1.713580 0.969747 -0.728044 0.914304 0.835252 -0.248306 0.613424 0.261895 -0.161167 0.023466 0.473588 -0.114391 -0.823014 0.306964 -0.182163 -1.847559 -0.094284 0.959107 1.590889 -0.585119 -0.410155 0.585459 -0.242028 0.211213 0.053834 0.922055 0.790567 0.264918 1.327964 -0.841158 -0.309366 -2.036764 -0.042725 -3.492154 -1.226767 -1.338780 0.996319 0.432852 0.349616 -0.490903 2.085832 -0.011125 0.223771 0.918677 1.751765 -1.155037 -0.339812 -1.236460 -0.122936 0.371946 -0.866404 -0.398280 0.624542 0.067184 -0.861502 -0.940468 0.706505 -0.353596 -0.766593 -0.505200 -0.875600 1.320057 -1.759532 -0.687177 -2.075551 0.003880 0.001629 -1.890535 0.085703 0.214339 0.729161 0.572964 0.165874 -0.623666 0.432885 0.777676 -0.355432 -0.458702 -0.566720 1.636524 0.716336 -0.279669 0.588283 0.830070 0.535818 1.121081 1.622411 -0.241484 -0.930942 0.733704 -0.479997 0.013541 -0.701259 -0.025885 0.762575 -1.195626 -0.097578 0.441329 -0.595221 -0.180726 0.050246 -0.846057 0.672856 2.696822 -0.235092 0.535184 0.147313 -1.206596 1.174430 -0.163664 -0.478737 0.595039 0.883737 0.933142 -1.296704 -0.813180 0.729872 1.475082 0.551990 -1.567230 -0.302035 -0.209004 0.428364 -0.322232 0.437736 0.815110 0.163150 -0.399217 -0.070266 0.209241 2.321394 -0.924685 -1.319386 0.522075 0.332341 -0.379716 -1.683802 -0.209274 -0.490942 -0.646586 0.264783 0.036538 0.312215 1.446382 -2.473818 1.160557 -0.125642 -0.622327 0.934813 -0.283286 0.012734 -1.763201 0.090037 1.043928 1.205981 0.327615 0.042329 -0.423081 -1.376986 0.281254 0.299092 0.735797 -0.508218 1.053732 -0.328956 -0.742027 -0.846480 -0.718328 -0.346777 -0.146106 -0.409607 0.511207 0.569873 -2.735058 1.287299 -0.613149 -0.648804 0.347983 0.136723 1.084073 -1.145920 -1.541197 0.724198 -0.513623 -1.464111 -0.855193 -0.300565 0.576056 0.146019 -0.577528 -0.588053 -1.864867 1.213328 -0.217769 0.677699 0.800815 0.411059 1.840729 0.729027 -1.240180 -0.792891 -0.671391 0.466335 -0.735177 -0.050821 -0.509075 -0.327883 0.867030 1.770256 0.153028 0.194623 -0.653059 1.318159 -1.462190 -0.770956 0.990575 0.570862 -0.327054 1.022923 1.074365 -0.856094 -0.717438 -1.237894 0.087514 -0.225811 -0.779756 0.376849 -1.503153 -0.254791 1.119049 -0.301726 -0.750805 0.764076 0.022530 -0.344400 -0.954466 1.955092 2.195751 -1.449827 0.579687 -1.101569 0.956364 -1.657578 -0.886757 -0.207422 0.400455 -0.039426 0.037187 0.538503 0.402185 0.283627 -0.827988 -0.657145 -0.503608 +PE-benchmarks/topological-sorting.cpp__std::__deque_buf_size(unsigned long) = -0.344857 -0.442576 -0.244121 -0.445243 0.257755 -0.042797 0.043426 -0.355504 -0.712604 -0.347823 0.124852 -0.797734 -0.200038 0.577765 -0.148597 0.530652 0.815753 0.196861 -0.148805 -0.185461 0.523212 -0.487390 0.480700 0.886886 -0.304389 0.032596 -0.265112 0.192211 -0.085632 0.075892 0.163691 -0.680776 0.047553 -0.528338 0.159584 -0.251300 -0.299393 0.701251 0.612639 -0.953837 0.036625 0.428973 0.389454 0.114446 0.175952 0.026091 0.315902 0.094735 0.005371 0.734904 0.322511 -0.130678 0.406966 -0.053565 0.311032 0.385835 -0.047976 -0.213913 -0.127150 0.009175 -0.412981 0.174850 0.212421 0.339911 0.545077 -0.090519 -0.443848 0.054934 0.163087 0.103727 0.259759 0.497095 -0.135760 -0.216743 0.268964 -0.715439 -0.104523 -1.269051 0.291116 -1.275808 -0.464006 0.266996 0.514978 0.587710 0.114601 -0.091732 0.874796 -0.458228 -0.485482 0.383024 0.616364 -0.237512 -0.102718 0.007811 -0.360554 -0.254196 0.048708 -0.181190 0.203503 0.521415 -0.532267 -0.366258 0.328420 -0.055240 -0.206563 -0.409205 0.013427 0.495284 -0.656895 -0.419613 -0.194133 0.696099 0.243440 -0.593852 0.071129 -0.470133 -0.362380 0.225359 -0.834060 -0.398398 0.346224 -0.102331 -0.354984 -0.015339 -0.189848 0.329487 0.274450 0.018909 -0.214230 0.390967 -0.021897 0.774908 -0.089820 -0.491283 0.163778 0.207784 0.028669 0.189462 -0.285152 -0.331473 0.122462 -0.475128 -0.063109 -0.198866 -0.338282 -0.115826 0.159529 -0.118975 -0.408000 1.250051 -0.415122 0.759461 0.512277 -0.179228 0.499205 -0.008754 0.383888 0.206276 0.613922 0.232574 -0.514660 -0.536514 0.755996 0.699834 0.088269 -0.404355 -0.449520 0.334139 0.320225 0.177576 0.359599 -0.109784 0.100150 -0.123355 -0.013543 -0.040765 1.263590 -0.149324 0.236942 0.042383 0.490221 0.002189 -0.728696 -0.154578 -0.963827 -0.076026 0.062067 0.257987 0.218993 0.711424 -1.094076 0.485021 -0.234872 0.212837 0.397629 0.293113 -0.315393 -1.559040 -0.557252 0.066052 0.711194 -0.122488 0.339909 0.115434 -0.615783 0.085893 0.000000 0.259845 -0.760890 0.674806 -0.172948 -0.414959 0.188955 0.231182 -0.512927 -0.324441 -0.267146 0.229267 0.791491 -0.517558 0.258665 0.238937 -0.010261 0.223465 0.275479 0.664835 -0.159975 -0.312988 0.359437 -0.291721 -0.310038 -0.052335 -0.105455 0.201591 -0.192302 -0.317919 -0.365779 -0.545614 0.757833 -0.110442 0.886504 0.084505 -0.550075 0.183502 0.112404 -0.290435 -0.172324 -0.125496 -0.328388 -0.355732 -0.019443 -0.418245 -0.199410 0.347804 0.347707 0.297886 -0.438645 0.094531 0.604004 -0.297647 0.398096 0.299486 -0.225854 -0.244466 0.193140 0.424993 -0.486420 0.184668 -0.562442 0.130017 -0.502421 0.052255 0.502260 -0.116033 0.035622 -0.310517 -0.296216 0.137939 0.239218 0.504252 -0.161139 0.176568 0.922878 0.179894 0.176165 0.052703 -0.574138 0.154136 -0.413927 -0.268318 -0.281339 0.629905 -0.589591 -0.234380 -0.135781 0.528305 0.274081 -0.167842 -0.377783 0.286068 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.057648 0.648388 0.418300 0.049222 0.615643 0.222793 0.336686 0.238464 -0.260549 -0.715942 -0.232931 -0.776189 -1.220647 0.832532 0.025635 0.255540 1.368150 0.310009 0.120440 -0.347801 0.392143 -0.930212 1.319355 1.237604 -1.090699 0.323643 0.574143 0.359591 0.062952 0.740125 -0.394868 -0.778759 0.627881 -0.515564 0.573141 -0.598266 -0.128533 -0.402531 -0.248906 -1.835166 -0.217536 0.370446 -0.032172 -0.028688 -0.038314 0.945899 1.558136 0.705193 -0.344724 0.558553 0.300163 -0.414340 0.457993 0.246074 0.217772 0.136393 0.299242 0.087055 -0.776112 0.237807 -0.134751 -1.648854 -0.216417 0.749057 1.146751 -0.220055 -0.179444 0.365739 -0.370245 0.096607 -0.125462 0.561220 0.744484 0.317742 0.902177 -0.863652 -0.127058 -1.497464 -0.436032 -2.956595 -1.066016 -1.038067 0.775387 -0.071602 0.540923 -0.177820 1.323237 0.061694 0.481120 0.336563 1.576794 -1.171456 -0.425279 -0.639793 0.123088 0.416289 -0.674721 -0.002312 0.809099 -0.568011 -0.866136 -0.861040 1.010814 0.057908 -0.569558 -0.360935 -0.346520 0.875398 -1.208022 -0.669738 -1.706215 -0.760459 -0.133458 -1.461703 0.538916 0.371693 0.637926 0.795507 -0.144451 -0.868379 0.322135 0.665000 -0.088597 -0.771568 -0.306094 1.239040 0.306813 -0.073865 0.652948 0.513023 0.504170 1.097123 1.516360 -0.062707 -0.368352 0.318753 -0.710337 0.021170 -0.392729 -0.399009 0.538530 -0.936699 -0.111693 0.392789 -0.649290 -0.038407 0.449685 -0.384568 0.567403 1.760953 -0.129355 0.503463 0.160992 -1.110605 0.908865 -0.469411 -0.557400 0.248089 0.945486 0.802398 -1.084055 -0.561993 0.351575 1.221864 0.507021 -1.171925 -0.426015 -0.362733 0.338112 -0.272322 0.385481 0.423542 0.459451 -0.590308 -0.027964 0.493696 1.728698 -1.006449 -0.931220 0.273045 -0.175619 0.002760 -1.636738 -0.133328 -0.437667 -0.252754 -0.257526 -0.051706 0.117633 1.075478 -1.670400 0.950830 -0.554586 -0.631906 0.938174 -0.005164 -0.291615 -1.388628 0.427409 0.984947 0.936815 0.412449 -0.051024 -0.336349 -1.035568 -0.123846 0.059009 0.558660 -0.405347 0.865604 -0.288861 -0.756633 -0.803140 -0.569226 0.126724 -0.527700 -0.130301 0.411960 0.735290 -1.946965 1.141594 -0.270352 -0.672183 0.235696 0.027125 0.499419 -1.048264 -1.363043 0.402245 -0.518344 -0.954242 -0.537176 -0.324595 0.374364 0.109108 -0.722020 -0.255295 -1.188536 1.030084 -0.017912 0.603514 0.658266 0.444346 1.571975 0.724905 -1.060316 -0.564957 -0.243412 0.002300 -0.896628 -0.314132 -0.631732 -0.472785 0.770310 1.639203 0.091430 0.191017 -0.410929 0.920048 -1.369886 -0.668318 0.921354 0.719280 -0.159475 0.585349 0.906851 -0.761352 -0.585450 -0.742937 -0.258990 0.005284 -0.815542 0.154107 -1.287063 -0.161104 0.865580 -0.392299 -0.380155 0.531499 -0.127151 -0.016686 -0.585004 1.090341 1.645772 -1.383090 0.275954 -0.792841 0.550824 -1.362531 -0.784070 0.087747 0.682662 -0.180022 -0.107270 0.599926 0.150511 0.086878 -0.861955 -0.521288 -0.403850 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/topological-sorting.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/topological-sorting.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.102838 2.291312 1.562487 -0.717917 2.766109 1.367771 1.013271 0.487268 -0.616644 -2.691570 -0.631638 -2.124391 -4.425986 2.294314 -0.585513 0.063224 3.754322 -0.176848 0.687496 -1.706446 1.853539 -2.030642 4.557629 3.680192 -4.653238 0.892316 2.125728 1.636419 0.893876 2.301289 -0.173409 -2.800218 1.563200 -0.912133 2.434333 -1.435159 -0.411212 -1.746284 -1.231941 -5.474236 -1.158902 1.074740 -1.666458 0.751731 0.332065 3.627279 5.243060 2.305665 -2.197185 2.042171 2.024831 -0.388197 1.362920 0.613941 -0.184239 -0.707094 0.810340 0.454739 -1.683475 0.649137 -0.741573 -4.573867 -0.332802 2.899213 4.047803 -1.009577 -0.593018 1.138952 -1.047903 0.592012 -0.366003 2.654282 2.658497 1.439750 3.834976 -2.583265 -0.915642 -6.064336 -0.790629 -9.619127 -3.353501 -3.757440 2.156846 -0.214132 1.442142 -0.768521 4.801038 0.882879 1.365380 2.454258 4.607286 -2.750372 -0.617689 -2.410959 -0.586002 0.946581 -1.988110 0.493299 1.582555 -0.871082 -2.603298 -2.541087 1.879002 -0.557000 -1.873320 -1.760126 -1.825465 2.696122 -3.943065 -1.143923 -5.230952 -1.214098 -0.209101 -5.266261 0.164105 0.378936 3.143710 1.639620 0.407178 -1.604759 0.753452 2.296745 -0.518526 -1.834076 -0.538712 3.938225 2.294532 0.051212 1.637644 1.825754 1.319343 3.039852 4.986868 0.217510 -1.976297 0.873415 -1.496661 0.057007 -1.230226 0.251822 2.685449 -2.415903 0.080594 1.378587 -1.326006 -1.234421 1.381152 -2.601321 1.997828 7.446721 -0.705544 1.826334 0.643406 -3.405656 1.992737 -0.923036 -1.365606 1.663266 2.934402 2.574579 -3.500661 -1.784515 1.567659 3.652194 1.049482 -4.325527 -0.755701 -0.209161 0.637889 -1.490111 0.998617 1.208337 0.840279 -1.502646 0.045779 1.590841 5.111028 -2.649330 -3.639972 0.843701 1.038919 -0.209938 -3.745856 -0.330947 -0.918710 -0.925056 0.907091 -0.060883 0.687486 3.291336 -6.560584 2.461418 -0.687083 -1.258650 2.150932 0.151528 -0.574745 -4.132004 1.655184 2.886846 2.100674 1.186277 -0.173361 -1.161072 -3.317569 0.547958 0.594217 1.895951 -1.644233 2.928538 -0.850023 -2.251208 -2.909906 -2.163292 -0.218727 -0.506149 -1.013645 1.105284 1.046774 -7.294980 3.452635 -1.336000 -2.279453 0.322650 -0.520194 2.619889 -3.003984 -4.252019 1.421064 -2.031352 -3.701978 -2.211573 -1.003741 1.065021 0.750870 -0.985431 -1.913322 -4.344012 3.357012 -0.466682 1.946062 2.303078 1.834084 5.843422 0.631077 -3.284702 -2.703609 -1.698674 1.915076 -1.512861 -1.416688 -1.759733 -1.375295 1.887757 5.068595 -0.379324 0.477254 -1.392684 3.095328 -4.594436 -2.024290 2.471422 2.911143 -0.795757 2.473208 2.492805 -1.699599 -1.892443 -2.776764 -0.286514 -0.230242 -2.581894 0.959781 -3.914342 -0.390382 2.681716 -0.679213 -1.605337 1.770754 -0.443432 0.247884 -1.973846 3.494801 6.416270 -4.615794 0.651170 -2.647321 2.195716 -4.426188 -2.842907 0.051400 0.525438 0.730074 -0.151317 0.731008 1.029767 0.923286 -2.556125 -1.478989 -0.690962 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/topological-sorting.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/topological-sorting.cpp__std::deque >::push_back(int const&) = -0.043741 3.042429 2.308773 -1.538446 2.903491 3.631226 0.647825 -0.225403 -1.121251 -1.314180 -0.980128 -3.364120 -3.603625 2.818422 -0.452523 0.245991 4.336237 -0.057423 -0.350475 -0.350980 1.119849 0.019273 4.137212 4.064622 -3.801415 1.252350 1.834864 0.942138 -0.557201 3.621027 -2.108776 -4.262667 0.499599 -0.010549 1.490007 -1.037984 -1.211112 -2.133394 -0.012500 -5.958342 -0.576498 2.113580 -1.504487 -0.343259 0.642153 0.379326 6.187963 2.047691 -0.866120 0.475159 1.216366 0.875365 1.063097 0.129189 1.386605 0.649384 2.623406 0.302232 -1.255911 0.164713 -0.564100 -1.702788 -1.050051 3.268701 3.357767 0.118667 -1.337854 -0.106749 -0.398153 -0.110907 -1.264037 2.427942 1.883375 3.031944 1.925030 -1.144015 0.611809 -3.661690 0.417986 -4.660327 -3.355116 -2.601343 1.148124 1.739451 1.624411 -1.950492 4.850555 -0.830827 1.359799 1.119790 5.358870 -3.134531 -0.552529 -2.124885 -1.463105 0.640081 -1.084634 0.287627 -0.287405 -1.727203 -2.867043 -3.116825 1.725528 0.159120 -2.168652 0.212655 -0.615656 2.484835 -2.609270 -1.219020 -3.809291 -0.354196 -0.402219 -5.169822 -2.075527 0.064738 0.252469 1.349320 -1.251308 -3.755613 1.236273 2.216369 -1.364214 -1.929364 -1.357242 3.889803 2.400458 -0.493958 1.047478 0.580453 2.466261 3.409350 2.798504 -0.729019 -0.438901 0.415020 -0.887961 -0.616167 -1.060925 0.243404 -0.532010 -2.045091 -0.396183 2.577402 -1.885115 0.728962 -1.144436 -2.087166 1.267812 10.268070 -1.772486 2.182427 0.203148 -4.247950 2.891561 -0.518568 -2.659835 -0.083875 2.086715 3.893587 -4.899285 -1.720146 2.328304 4.495888 1.501913 -2.975818 0.795637 -0.189008 -0.546136 -1.460624 2.270632 0.304120 0.784166 -1.847984 -0.846323 2.160408 6.630173 -2.111797 -5.436274 0.901850 0.765658 0.816887 -1.929131 -0.061066 -1.556414 -0.478332 1.249204 -0.603450 2.049650 3.623089 -6.585679 3.073028 -0.375033 -3.266802 3.852743 -0.252415 -0.945502 -0.771548 1.242371 3.731488 2.978490 0.963343 -0.509031 -1.981309 -3.371601 -0.425102 0.776498 1.676040 -2.430065 3.108672 0.268187 -3.552509 -2.276743 -2.745593 -0.517730 -1.797238 -2.750015 1.262810 0.405610 -6.496215 4.624248 1.102233 -0.826897 0.200714 -1.667568 1.463615 -3.021953 -4.323862 1.343870 -1.208632 -1.811536 0.273244 -1.676295 1.351176 1.661172 0.990370 -3.159150 -4.451017 2.855513 0.750615 3.087387 2.373152 1.716928 3.184318 2.038323 -2.127403 -1.666594 -2.900500 2.999512 0.144404 -1.787589 -1.807232 -2.411719 2.293977 4.475899 -0.834623 -0.477071 -3.532142 2.380931 -2.796617 -0.235127 1.697739 0.179181 -2.169316 -0.342173 2.220174 -0.807393 -1.451032 -2.765834 -0.595331 -1.810610 -2.702841 0.502371 -3.075525 -0.536089 3.102484 -1.986756 -1.997808 1.194138 -0.368454 -0.617295 -0.183389 2.847914 2.783105 -2.894184 1.899886 -3.084625 2.631587 -4.382868 -3.045521 0.607157 -1.269896 -1.105480 -1.569453 0.251579 0.974693 0.010646 -0.511495 -0.742314 -0.392486 +PE-benchmarks/topological-sorting.cpp__void std::deque >::_M_push_back_aux(int const&) = 0.159246 3.407252 3.364675 -2.089028 3.374496 3.954330 0.549356 0.153496 -1.527937 -1.639540 -1.054437 -4.515467 -4.491703 3.230579 -0.681044 -0.583160 4.886388 -0.177222 -0.553573 -0.520869 0.629564 0.711776 4.580660 4.545042 -4.490719 1.497281 1.452438 1.517299 -0.363822 4.329318 -2.291224 -4.940231 0.078596 1.280121 1.889580 -0.727283 -1.422621 -2.742119 -0.926087 -6.776802 -0.575477 3.213999 -1.614542 -0.234814 1.187646 1.053514 7.199328 2.237959 -0.951067 0.354097 1.536957 1.046288 1.456309 -0.033256 1.540395 -0.113884 3.943678 0.109570 -1.627628 0.325297 -0.524694 -1.998344 -1.726906 3.693705 3.833711 0.215670 -1.730502 -1.013947 -0.020812 0.015959 -1.201727 2.684284 2.526479 3.798293 2.145257 0.382086 1.174091 -3.371909 0.951345 -5.123390 -3.779186 -2.869755 2.410457 2.725659 0.694930 -3.014231 5.422849 -0.857244 1.539878 1.127059 6.116750 -2.745246 -0.725506 -2.364858 -1.805657 1.096917 -1.142675 0.329100 -0.497664 -1.308083 -3.117659 -2.666289 1.549038 -0.507316 -2.516269 1.701282 -0.771615 2.813415 -3.031290 -0.318694 -4.252343 0.070528 0.604679 -5.850615 -3.181191 0.127109 -0.189088 1.508426 -1.474746 -3.111782 1.373750 1.777716 -1.837020 -0.940229 -2.953651 4.782729 2.563365 -0.522678 1.018291 0.963665 3.206625 2.864527 2.338331 -0.975290 -0.471906 0.529766 -0.662673 -0.807178 -1.209277 0.550080 -0.646848 -1.919384 -0.185591 2.333885 -2.163132 0.689969 -3.199403 -2.206022 1.364620 11.376048 -2.096540 2.519845 0.106061 -4.396270 3.346873 0.001741 -2.996922 -0.246488 1.991971 4.562448 -4.487556 -1.810526 2.728608 5.116639 1.682860 -3.326231 2.166385 0.185496 -0.818915 -1.855285 2.969350 0.385849 0.805444 -1.805827 -1.009158 2.553821 7.082727 -1.754089 -7.604371 0.697082 0.804949 1.469643 -0.986046 0.378435 -0.501089 -0.463216 1.565951 -0.541094 2.563725 4.142164 -8.091131 3.635184 0.770237 -3.649830 4.875387 -0.775354 -0.994116 -0.371220 1.272152 4.129186 3.498629 1.521187 -1.450883 -2.298220 -3.741461 -0.505090 1.183501 1.843166 -2.735368 3.333517 0.465302 -3.549355 -2.437579 -4.409735 -0.654756 -1.027145 -4.088815 1.442787 0.075944 -7.878899 5.172398 1.305554 -0.934321 -0.681866 -2.372893 1.054210 -3.501394 -4.588921 0.831733 -1.808469 -3.263219 -0.125628 -2.018131 1.120572 1.782847 1.831947 -3.841763 -4.834244 3.779497 0.514230 3.505326 2.804059 1.706716 3.318180 3.726238 -2.088942 -1.399101 -3.343725 4.385736 0.065228 -1.919450 -0.746151 -2.772054 2.096936 4.934634 -1.327669 -0.478801 -4.581510 2.430095 -2.314008 -0.813579 1.704800 -1.074311 -2.202485 0.245880 2.406213 -0.854821 -1.375420 -3.580961 -1.301041 -2.143823 -3.013736 0.593840 -3.339421 -0.604377 3.675393 -2.380701 -2.888755 1.327840 -0.853637 -1.473277 -0.042908 3.500269 3.321729 -3.213573 3.284081 -3.786643 3.515478 -4.941865 -3.383587 0.677579 -2.425477 -1.263864 -1.844630 -0.042691 0.852013 0.071501 -0.678507 -1.296499 0.507453 +PE-benchmarks/topological-sorting.cpp__std::deque >::size() const = 0.063123 0.571130 0.579541 -0.317946 0.527119 0.613142 0.087338 -0.034266 -0.258514 -0.227270 -0.132803 -0.817157 -0.662741 0.467919 -0.129250 -0.103834 0.647380 -0.072549 -0.095051 -0.033996 -0.079296 0.220625 0.668284 0.676592 -0.613111 0.292337 0.055893 0.165382 -0.200454 0.805019 -0.392251 -0.880902 -0.053479 0.410057 0.234236 0.007028 -0.290914 -0.423384 -0.145743 -0.985367 -0.078464 0.681821 -0.094516 -0.063147 0.257315 0.011279 1.111921 0.295481 0.009794 0.075543 0.156267 0.232449 0.292947 -0.017696 0.354317 -0.065630 0.790515 -0.265812 -0.274006 0.057709 -0.085761 -0.187216 -0.359578 0.556820 0.517331 0.074245 -0.297505 -0.333773 -0.068560 0.002068 -0.202207 0.427589 0.294067 0.679657 0.172805 0.358574 0.375433 -0.157958 0.213328 -0.459107 -0.596286 -0.326260 0.398352 0.797700 0.081481 -0.498816 0.812838 -0.144131 0.190204 0.014870 0.901368 -0.357667 -0.082624 -0.167404 -0.306256 0.108492 -0.096395 0.053015 -0.326995 -0.113071 -0.474285 -0.284458 0.246703 -0.102986 -0.366047 0.507650 -0.073398 0.309434 -0.500703 0.033913 -0.500959 0.048638 0.149643 -0.816466 -0.520764 0.048801 -0.253924 0.209937 -0.289680 -0.410109 0.263174 0.137599 -0.314469 -0.019124 -0.815707 0.663320 0.317521 -0.075071 0.130708 0.101925 0.510031 0.361425 0.080862 -0.171472 0.012082 0.023238 0.053970 -0.077738 -0.032264 0.109687 -0.390186 -0.238643 0.009379 0.274928 -0.306078 0.165827 -0.992413 -0.293061 0.116792 1.451983 -0.393693 0.432065 0.001855 -0.661952 0.454966 -0.020929 -0.482553 -0.150062 0.231435 0.703234 -0.386594 -0.244758 0.475202 0.778013 0.229411 -0.274973 0.522826 0.143032 -0.162048 -0.248727 0.577225 -0.008649 0.135533 -0.314544 -0.186986 0.299309 1.065992 -0.074622 -1.073373 0.109994 0.037509 0.334549 0.163117 0.110608 0.032325 -0.030742 0.193961 -0.099361 0.373353 0.573494 -1.178299 0.576346 0.164898 -0.598817 0.796656 -0.216822 -0.168279 0.151982 0.113725 0.602541 0.511451 0.195218 -0.197280 -0.380274 -0.526270 -0.100193 0.118190 0.222251 -0.483855 0.514741 0.146826 -0.638639 -0.315317 -0.806200 -0.050264 -0.122543 -0.775963 0.198363 0.132004 -1.106257 0.761114 0.334012 -0.096589 -0.199258 -0.334579 0.037705 -0.436807 -0.590472 0.018302 -0.384564 -0.514498 0.102411 -0.364905 0.039971 0.219262 0.340673 -0.583929 -0.484285 0.572175 0.145731 0.539185 0.424346 0.230829 0.272434 0.752761 -0.272118 0.015478 -0.511324 0.739046 -0.061952 -0.216629 0.234107 -0.505255 0.251452 0.652075 -0.171678 -0.127040 -0.706757 0.309892 -0.028869 -0.045920 0.221600 -0.511655 -0.339370 -0.030566 0.334352 0.010071 -0.129246 -0.566515 -0.195676 -0.420061 -0.377064 0.093425 -0.395413 -0.125344 0.532357 -0.417024 -0.555573 0.140371 -0.182052 -0.339414 0.075231 0.527593 0.139438 -0.299196 0.701910 -0.530570 0.463118 -0.650149 -0.423997 0.075495 -0.429172 -0.282284 -0.355987 -0.151216 0.101404 0.018594 -0.009652 -0.167946 0.178214 +PE-benchmarks/topological-sorting.cpp__std::deque >::max_size() const = -0.037791 0.143272 0.247771 -0.138360 0.166366 -0.095238 0.077945 0.068389 -0.175916 -0.424638 0.027340 -0.453537 -0.506795 0.309740 -0.149254 -0.102783 0.445910 0.052522 0.026851 -0.256637 0.048388 -0.196113 0.501424 0.514530 -0.503657 0.060539 0.110555 0.287230 0.199689 0.170949 0.158307 -0.357200 0.110765 0.132274 0.278129 -0.129733 0.006038 -0.098564 -0.257582 -0.654539 -0.082488 0.257662 0.079820 0.046627 0.084019 0.499114 0.500371 0.290083 -0.174063 0.254193 0.310569 0.035546 0.167989 0.037419 -0.031357 -0.316984 0.192497 -0.236463 -0.232486 0.113854 0.003930 -0.559552 -0.136310 0.387357 0.511416 -0.072158 -0.045784 -0.055714 -0.050218 0.150071 0.054853 0.223172 0.243541 0.219726 0.311565 -0.087758 0.025922 -0.681549 -0.002638 -1.255300 -0.365998 -0.301821 0.559310 0.267835 -0.095040 -0.060288 0.503624 0.186113 0.094363 0.316429 0.542030 -0.133101 -0.155541 -0.149114 -0.110241 0.278852 -0.278697 0.114145 0.074894 0.213928 -0.289627 -0.101101 0.166581 -0.142270 -0.216811 0.073032 -0.148208 0.244394 -0.581884 0.049126 -0.485732 -0.058863 0.252169 -0.596425 0.060230 -0.045368 0.301881 0.183743 -0.054709 0.063016 0.056843 0.017605 -0.064437 0.096957 -0.617696 0.378464 0.095838 0.037636 0.126486 0.245765 0.216235 0.193011 0.213821 -0.122938 -0.162717 0.115349 -0.157339 0.024203 -0.192304 -0.044480 0.341266 -0.250868 0.141744 -0.047028 -0.214376 -0.349096 -0.211852 -0.228638 0.194554 0.577582 -0.015532 0.267000 0.171580 -0.286676 0.129187 -0.122527 -0.104295 0.145912 0.289223 0.233429 0.066247 -0.221339 0.168930 0.470914 0.168242 -0.278465 0.037155 0.101422 0.062123 -0.135216 0.221669 0.129056 -0.015673 -0.160230 -0.039658 0.243649 0.386178 -0.021863 -0.231185 -0.028496 0.178393 0.061380 -0.208022 0.078980 0.101841 0.004931 0.042937 0.062999 0.116355 0.402448 -0.912426 0.343410 0.148151 0.059071 0.174035 -0.066638 -0.187021 -0.623839 0.186953 0.290340 0.289825 0.088042 0.022239 -0.007028 -0.395700 -0.021910 0.062215 0.191026 -0.216946 0.287320 -0.025898 -0.168341 -0.327171 -0.308048 -0.021164 0.079412 -0.204784 0.182334 0.262527 -0.821011 0.396451 -0.207989 -0.276051 -0.195046 -0.126717 0.182734 -0.466064 -0.377458 -0.001189 -0.338366 -0.620507 -0.324516 -0.139616 0.065305 -0.111544 -0.069719 -0.110931 -0.211292 0.450603 -0.127040 0.193838 0.229535 0.085553 0.510700 0.239382 -0.217858 -0.121594 -0.036910 0.225434 -0.367888 -0.125602 0.259710 -0.120002 0.129102 0.547338 -0.092955 -0.066540 0.064660 0.326754 -0.217766 -0.392382 0.196746 0.029857 -0.005109 0.463114 0.222983 -0.340534 -0.095359 -0.459525 -0.091113 0.011135 -0.291769 0.171139 -0.333875 0.017699 0.276873 -0.069333 -0.267205 0.250609 -0.042122 -0.111679 -0.084730 0.475942 0.616411 -0.349723 0.283896 -0.423464 0.190484 -0.511846 -0.338773 -0.022456 0.056269 0.014241 -0.012822 -0.097372 0.109855 0.147557 -0.224566 -0.290645 0.199117 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -0.384971 0.281138 0.124687 -1.224427 1.272414 1.464321 0.392699 -0.736901 -1.104431 -0.387471 0.185037 -2.653024 -1.284203 1.194719 -0.490423 0.902813 2.109846 -0.278342 -0.563175 -0.332683 0.361317 1.070092 2.363821 2.342939 -1.453601 0.375204 -0.184003 0.258239 -0.415955 0.546587 -0.537850 -2.087650 0.285602 -0.268705 0.190284 0.064634 -0.784556 -0.400633 1.185757 -2.492845 -0.047949 1.311269 0.192403 -0.155876 0.337986 0.296488 2.322156 1.135934 0.102681 0.668480 0.872967 0.421947 0.881533 0.028395 0.601456 0.038617 1.089354 -0.551011 -0.423709 -0.505789 -0.476388 0.445624 -0.477557 1.609742 1.541670 0.104784 -1.214183 -0.040392 0.644651 0.109722 0.035448 1.495508 0.484838 1.220766 0.670114 -0.355237 0.561037 -1.454144 0.492096 -1.767233 -1.541131 -0.095887 0.932658 1.269658 0.826547 -0.896633 2.591196 -0.641223 -0.180347 0.599569 2.012648 -1.375978 -0.340758 -0.292690 -0.668801 -0.102217 -0.313815 0.353678 -0.013107 0.320804 -1.595985 -0.665664 0.304879 -0.085145 -0.971151 0.019571 0.285314 0.462149 -0.937957 -0.493160 -1.118666 1.059864 0.298384 -2.566079 -1.227238 -0.357681 -0.605810 0.291518 -1.375416 -1.573742 0.727726 0.048890 -0.997179 -0.363850 -1.167879 1.361563 1.373192 0.234964 0.291156 0.675053 1.075780 2.352388 0.043744 -0.967267 0.042626 0.191813 -0.018359 0.344874 -0.304788 -0.148006 -0.304289 -1.205683 0.583535 0.947222 -0.951507 0.264765 -0.941251 -0.390610 -0.138901 4.557250 -1.079570 1.863374 1.059724 -1.589094 0.955740 -0.824972 -0.427731 -0.231238 0.753812 1.514621 -1.553152 -1.063793 1.791730 2.367056 0.837271 -1.325045 1.095131 0.989716 0.236208 -0.701698 1.104941 0.173041 0.689854 -1.043364 -0.266557 1.102293 3.444162 -0.470869 -1.128407 0.373492 1.071333 0.860671 -0.163141 -0.228123 -1.273811 -0.155490 1.083853 0.524515 0.955748 1.853062 -2.634999 1.329537 0.215244 -0.718765 2.013263 0.395411 -1.198832 -0.427470 -0.325607 1.130625 1.391276 -0.048435 0.127035 -0.506943 -1.542715 -0.070443 0.375307 0.421641 -1.365143 1.526658 0.267822 -1.375719 -0.293358 -0.968371 -0.401831 -0.527108 -1.325313 1.074260 0.600970 -2.471887 1.761404 0.947881 -0.645950 -0.258783 -1.021235 1.112001 -1.180591 -1.252704 0.711410 -1.130898 -0.753660 0.274851 -0.597293 0.184743 0.658812 1.368995 -1.875610 -1.527351 2.003362 0.362658 2.228128 1.076860 -0.102590 0.463918 0.073272 -0.715774 -0.329462 -1.706433 0.888226 0.358435 -1.112273 0.107963 -0.985717 1.082482 1.415817 -0.568411 -0.778039 -1.150287 0.853538 -1.089284 0.490347 0.543379 -0.167443 -1.426018 0.155128 0.947318 -0.540231 0.267694 -1.432614 -0.256654 -1.589823 -1.033974 0.761065 -0.697550 0.111594 0.717759 -0.966750 -0.506375 0.363166 0.175943 -0.552575 0.535282 1.732867 0.650923 -0.084910 0.675157 -1.992955 1.207795 -1.783194 -1.625866 0.577965 -0.850051 -1.471969 -0.955452 -0.139283 1.156227 0.275567 -0.451475 -1.060976 0.829366 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_node() = -0.038901 0.455737 0.460681 -0.196647 0.535063 0.255328 0.223688 0.096370 -0.348959 -0.627110 -0.037133 -0.877824 -1.019375 0.701242 -0.109746 0.037732 1.036894 0.069922 0.011649 -0.350131 0.218231 -0.385497 1.091168 1.084350 -0.970024 0.267671 0.336399 0.341193 0.136366 0.527292 -0.127281 -0.805766 0.323276 -0.093623 0.412785 -0.281289 -0.188840 -0.364001 -0.185405 -1.456227 -0.178949 0.471590 -0.145962 0.013886 0.117907 0.788523 1.279469 0.571821 -0.294440 0.520123 0.418912 -0.135556 0.362303 0.088354 0.167537 -0.215332 0.418995 -0.051182 -0.491764 0.179601 -0.090192 -1.008497 -0.282915 0.733516 0.950417 -0.150450 -0.263626 0.058175 -0.142656 0.135181 -0.061245 0.561931 0.593972 0.453045 0.697250 -0.386862 -0.016279 -1.262643 -0.097440 -2.213577 -0.879625 -0.606066 0.861020 0.234535 0.183215 -0.260790 1.143945 0.094346 0.205994 0.466226 1.255912 -0.661460 -0.284596 -0.353716 -0.143244 0.344463 -0.466548 0.161460 0.309427 -0.132603 -0.717863 -0.510296 0.557538 -0.126187 -0.501812 -0.052236 -0.239995 0.614606 -0.991343 -0.216599 -1.107623 -0.229293 0.183167 -1.260538 -0.014307 0.128608 0.514172 0.507542 -0.255771 -0.414026 0.258674 0.265913 -0.199377 -0.276491 -0.564493 0.922467 0.368928 0.073757 0.370795 0.434137 0.537655 0.746540 0.809602 -0.169320 -0.219214 0.184903 -0.306379 0.098855 -0.260045 -0.134312 0.359681 -0.583684 0.127738 0.210693 -0.490600 -0.254695 -0.074524 -0.367408 0.286450 1.695978 -0.176881 0.598194 0.254062 -0.815588 0.522871 -0.336821 -0.397866 0.198579 0.654801 0.690909 -0.595907 -0.435690 0.477106 1.092966 0.379502 -0.904682 0.005981 0.068907 0.132086 -0.319088 0.513641 0.225295 0.298084 -0.425676 -0.082751 0.518684 1.326312 -0.497276 -0.913427 0.100591 0.129576 0.201537 -0.766620 0.039988 -0.101417 -0.099640 0.128865 0.024784 0.270331 0.872199 -1.725730 0.746203 -0.085401 -0.366862 0.698329 0.047221 -0.377762 -0.924422 0.282974 0.714286 0.706292 0.336113 -0.066302 -0.225712 -0.859874 -0.075674 0.145674 0.342203 -0.474937 0.753865 -0.099611 -0.567555 -0.589143 -0.626283 -0.009084 -0.155803 -0.408435 0.395462 0.398080 -1.760652 0.911774 -0.107530 -0.511375 -0.140452 -0.217402 0.461190 -0.827353 -0.989737 0.218263 -0.591356 -0.986105 -0.406634 -0.361012 0.165872 0.126947 -0.139400 -0.397456 -0.828013 0.952602 -0.064100 0.638281 0.567084 0.235901 1.137469 0.465646 -0.672716 -0.355855 -0.347741 0.516584 -0.533933 -0.333252 -0.104397 -0.426244 0.461563 1.138632 -0.096566 -0.057264 -0.391274 0.665174 -0.834190 -0.477101 0.535745 0.361189 -0.211996 0.592773 0.599039 -0.512685 -0.213766 -0.779033 -0.260783 -0.211658 -0.608786 0.252928 -0.772865 -0.067245 0.621652 -0.304216 -0.421831 0.412941 -0.132566 -0.137257 -0.243022 0.880878 1.308175 -0.936075 0.412766 -0.814996 0.558833 -1.059588 -0.760616 0.095888 0.151572 -0.169430 -0.225011 0.092828 0.196376 0.203421 -0.605913 -0.498245 0.141072 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.000611 1.014936 1.091491 -0.692563 0.964687 1.053178 0.200095 -0.138511 -0.465962 -0.444684 -0.288371 -1.148674 -1.196600 0.976364 -0.253566 -0.021538 1.537289 0.021169 -0.170163 -0.372143 0.424442 -0.136655 1.531028 1.569984 -1.552578 0.452393 0.755249 0.614297 0.235919 1.249720 -0.810896 -1.132771 0.102200 0.037949 0.626002 -0.508045 -0.337413 -0.755307 -0.103066 -2.220527 -0.185308 0.493872 -0.425283 -0.051100 0.270133 0.581354 2.141570 0.781868 -0.421416 0.224615 0.681570 0.282565 0.390291 0.032474 0.413190 0.101841 1.388576 0.238078 -0.375525 0.087853 -0.064588 -0.815312 -0.234293 1.263218 1.346341 0.029249 -0.396078 -0.086745 0.070893 -0.039800 -0.310000 0.842742 0.547149 1.128539 0.723384 -0.645157 0.529913 -1.640880 0.152165 -2.013232 -1.197250 -0.972228 0.566509 0.313619 0.467152 -0.460879 1.724361 -0.099798 0.514694 0.329494 1.808040 -1.070636 -0.193758 -0.643585 -0.640094 0.387310 -0.442856 0.195144 -0.063579 -0.374161 -0.953699 -1.007147 0.777110 0.024465 -0.837665 0.320462 -0.249256 0.845023 -1.046129 -0.361725 -1.281355 -0.186619 -0.081132 -1.871438 -0.534504 -0.235418 0.588446 0.341156 -0.295501 -1.169144 0.270644 0.795839 -0.455294 -0.486046 -0.870795 1.409230 0.915678 -0.166902 0.314858 0.115043 0.846823 1.047647 0.977687 -0.368135 -0.264834 0.218393 -0.520155 -0.251370 -0.553823 0.106837 0.147049 -0.697175 -0.085833 0.797408 -0.659076 0.150524 -0.055386 -0.662074 0.507747 3.720919 -0.470714 0.795958 0.151370 -1.418709 0.884607 -0.105029 -0.855418 0.219380 0.733120 1.245979 -1.798704 -0.669425 0.654058 1.578892 0.536461 -1.197382 0.162783 -0.061121 -0.316806 -0.421701 0.757944 0.057351 0.089552 -0.617100 -0.314700 0.739991 2.246276 -0.594902 -1.977375 0.194963 0.102798 0.046062 -0.811486 0.021029 -0.297063 -0.072897 0.242447 -0.154079 0.794684 1.293325 -2.812235 1.110181 -0.066065 -1.070768 1.438593 -0.190883 -0.381591 -0.490399 0.557505 1.233682 1.064371 0.289631 -0.312095 -0.464358 -1.245024 -0.153810 0.243642 0.560502 -0.917915 1.064561 0.310372 -1.209732 -0.837152 -1.041957 -0.045526 -0.434114 -0.958085 0.486650 -0.161178 -2.631863 1.580192 0.192070 -0.392674 0.076597 -0.726416 0.391631 -1.207564 -1.416489 0.360163 -0.317815 -0.653062 -0.260714 -0.555068 0.528231 0.345123 0.416175 -1.241111 -1.531233 0.912894 -0.085172 0.913863 0.880211 0.549016 1.172230 0.718637 -0.595246 -0.759366 -0.614776 0.956971 0.004863 -0.657308 -0.396802 -0.842097 0.739865 1.703196 -0.388934 0.028711 -0.965853 0.930966 -1.007754 -0.396862 0.509217 0.199271 -0.730188 0.130813 0.698584 -0.444906 -0.497757 -1.007359 -0.547089 -0.408662 -0.947613 0.437707 -1.016151 -0.069961 1.085360 -0.583634 -0.740651 0.610944 -0.246102 -0.203102 -0.028460 1.129226 1.480715 -1.021429 0.689710 -1.144551 0.935864 -1.613624 -1.048470 0.190750 -0.479295 -0.354581 -0.422919 0.025709 0.486871 0.113491 -0.238599 -0.231762 -0.006189 +PE-benchmarks/topological-sorting.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.730815 0.670793 -0.751524 -1.945322 2.298284 2.143117 0.663394 -1.723289 -1.219040 -0.511983 0.539846 -4.699750 -2.132222 1.201018 -0.914321 1.803675 3.345452 -1.244129 -0.909941 -0.969599 0.712710 2.656777 4.539117 3.888543 -2.603433 0.447867 0.181587 0.359960 -0.297729 -1.235022 -0.816386 -2.616813 0.894134 -1.401465 -0.361702 1.007956 -0.993213 -1.576954 2.781895 -3.351828 -0.114205 0.257293 -0.109189 -0.127032 -0.150228 1.265132 4.093321 2.092561 -0.098025 0.751423 2.201234 0.587162 1.108020 0.205819 -0.041127 -0.619902 1.272608 -0.548707 -0.418673 -1.809010 -0.466687 1.119632 -0.758160 2.807451 2.418147 0.401699 -2.072058 1.311964 1.673036 0.024927 -0.026706 2.651399 0.933716 2.439304 1.447590 -1.578422 0.589333 -3.119029 -0.024237 -3.334389 -2.657623 -0.305013 0.865405 0.281738 1.839520 0.101133 4.301866 -0.424597 0.027568 1.398027 3.139689 -2.789004 -0.689164 -0.367780 -0.925588 -0.142447 -0.597351 1.615973 0.352878 1.056863 -2.770867 -0.975263 0.296946 -0.136325 -1.620652 -1.125232 0.877397 -0.348094 -1.004942 -0.668152 -1.978858 1.442252 0.598375 -4.693046 -2.127014 -0.095070 0.839329 0.148499 -1.810579 -3.074146 0.518707 0.081790 -1.537501 -0.857783 -0.745485 1.326765 3.133325 0.864487 1.014933 1.346500 2.363920 5.074035 0.498357 -1.502477 -0.494993 -0.224426 -0.288962 0.655725 -0.203522 -0.231452 -0.019885 -2.332490 2.687266 2.371944 -1.461661 -0.448580 0.022864 -0.809545 -0.138143 6.765735 -1.427327 3.270281 2.157103 -2.605315 0.321174 -2.961493 -0.858316 -0.331413 0.923227 2.489136 -2.159440 -1.869720 3.200157 3.721077 1.309478 -2.887175 2.137755 2.279864 0.709853 -1.624455 1.095057 0.752875 1.530364 -1.526201 -0.230540 3.073099 5.643550 -0.869141 -0.775158 1.062313 1.948090 2.004279 -0.421967 -0.863646 -2.002382 -0.307765 2.885796 1.715521 1.297101 3.134963 -3.781899 1.373471 0.676095 -0.445006 2.707471 1.580375 -2.639101 0.034109 0.001621 2.060396 1.455752 -0.381044 0.261821 -1.015762 -2.197231 -0.105894 1.092423 0.448212 -1.961500 2.312392 0.652860 -2.139123 -0.613755 -0.886811 -0.335995 -0.095506 -1.433639 1.986698 -0.050370 -4.576079 3.186908 1.076077 -1.732600 -0.659321 -2.979723 2.660439 -1.998892 -1.713460 1.601620 -2.378729 -0.663480 0.466230 -0.406227 0.045708 1.472228 3.265166 -3.418434 -2.312454 3.358535 0.973272 3.491819 1.781042 0.179725 0.897540 -2.644395 -1.152625 -1.186065 -2.447990 1.007855 1.213453 -2.789877 0.299423 -1.367025 1.871595 2.408290 -1.837445 -1.328040 -1.076294 0.533324 -3.184205 0.425370 0.708490 1.862977 -3.159260 0.729732 1.360263 -0.797582 0.657023 -2.199663 -0.533860 -2.813718 -2.492250 0.982860 -1.055841 0.273512 1.608236 -1.646592 -0.009440 0.925412 -0.030528 0.058556 0.780467 2.311572 2.276339 -0.208572 -0.019558 -3.788382 1.939880 -3.299373 -3.825275 2.270349 -1.486630 -2.192150 -1.786613 -0.276001 2.304199 -0.025657 -1.534837 -2.226973 1.640831 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_S_buffer_size() = -0.039847 -0.091955 0.084967 -0.123571 0.043968 -0.157848 0.025863 -0.027115 -0.181315 -0.164620 0.076136 -0.200750 -0.073573 0.136109 -0.112437 0.003445 0.137869 0.064171 -0.009840 -0.129083 -0.023852 -0.083410 0.159434 0.187584 -0.116581 0.002966 -0.087886 0.126050 0.058393 0.090645 0.111294 -0.141699 0.008773 0.098810 0.050860 -0.071251 0.006652 0.120849 -0.053981 -0.190059 0.023367 0.121032 0.172472 0.020294 0.047440 0.158263 0.039261 0.096127 0.009814 0.187505 0.141082 0.072522 0.065237 0.021035 0.034553 -0.115496 0.131582 -0.254922 -0.079922 0.055750 -0.020358 -0.131882 -0.032803 0.120883 0.169206 -0.025024 -0.012222 -0.107343 -0.016689 0.099358 0.140791 0.035048 -0.043255 0.006140 0.015106 0.009388 0.076455 -0.227986 0.036293 -0.433694 -0.079257 0.030065 0.290108 0.241182 -0.101606 0.057225 0.137246 0.063916 -0.064652 0.089707 0.103323 0.039249 -0.070458 0.073001 -0.081957 0.079519 -0.068362 0.003839 -0.060286 0.266836 -0.073286 0.069244 0.052443 -0.071556 -0.037280 0.099347 -0.015104 0.059044 -0.295916 0.046889 -0.035322 0.123446 0.149829 -0.136355 0.064116 -0.114342 0.082393 0.014851 -0.089355 0.130036 0.053530 -0.089046 -0.055778 0.178179 -0.404295 0.045125 -0.057948 0.056225 -0.031972 0.049132 0.001629 0.027877 -0.114901 -0.132689 -0.003424 0.055681 0.014853 0.057933 -0.069281 -0.054260 0.058219 -0.090364 0.128162 -0.132075 -0.077178 -0.185323 -0.203287 -0.000343 0.010307 0.014412 -0.012675 0.144161 0.124500 -0.033758 -0.053582 -0.022420 0.091374 0.049146 0.078425 -0.034559 0.263815 -0.101760 0.068160 0.130653 0.078459 0.007433 -0.001145 0.080695 0.031927 0.075190 0.076789 0.016821 -0.083691 -0.065702 -0.027132 -0.027437 0.091183 0.155803 0.098203 -0.038855 0.076990 -0.019615 0.044838 0.041262 0.056705 0.065052 -0.015564 0.036435 0.029587 0.132434 -0.400945 0.140391 0.067416 0.130361 0.005069 -0.030160 -0.086905 -0.301353 -0.063408 -0.001907 0.145699 -0.022130 0.091126 0.118482 -0.112330 -0.005862 -0.027794 0.036692 -0.095452 0.053636 0.058002 -0.066216 -0.039293 -0.066384 -0.000996 0.093499 -0.078358 0.081408 0.166022 -0.271676 0.044894 -0.064791 -0.070043 -0.088376 0.040112 0.063460 -0.116224 -0.025939 -0.045052 -0.140977 -0.221167 -0.123357 -0.026034 -0.003686 -0.163017 0.008832 0.024418 0.092932 0.126999 -0.100495 0.060523 0.045117 -0.085253 0.052253 0.064923 0.011062 0.051788 0.081218 0.033197 -0.227418 0.033276 0.336298 -0.010801 0.014442 0.096142 0.043013 -0.084326 0.169347 0.149858 0.100964 -0.100152 0.052670 -0.129916 0.030339 0.238984 0.068478 -0.172845 0.037548 -0.154536 -0.007011 0.003133 -0.009997 0.140358 0.016457 0.063082 -0.030004 0.051925 -0.124553 0.082309 0.018212 -0.085707 0.032634 0.226973 0.109181 0.048284 0.161625 -0.124550 -0.010023 -0.106069 -0.060562 -0.076572 0.057073 -0.085934 0.041991 -0.156693 0.105268 0.085409 0.021852 -0.101041 0.171869 +PE-benchmarks/topological-sorting.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.077233 0.736189 0.602211 -0.196757 1.241842 0.432768 0.319537 0.279150 -0.430424 -0.966837 -0.422858 -0.922595 -1.692463 1.083814 -0.028369 0.493887 1.541006 0.060205 0.127880 -0.589913 0.805384 -1.095128 1.654920 1.084116 -1.567754 0.406923 0.750026 0.756629 0.232641 1.127185 -0.485836 -0.953118 0.549612 -0.604989 0.829733 -0.698517 -0.041194 -0.367156 -0.344136 -2.154501 -0.390006 0.513841 -0.497445 0.256024 -0.027294 1.493806 1.841977 0.941236 -0.703927 0.876491 0.702556 -0.491332 0.590183 0.336352 -0.082032 0.151914 0.495184 0.095175 -0.930359 0.283803 -0.190888 -2.070804 -0.139162 0.862485 1.506854 -0.613660 -0.376494 0.862640 -0.400886 0.149267 -0.081028 0.890982 0.900731 0.248315 1.397068 -1.090988 -0.366470 -1.995155 -0.351022 -3.764068 -1.267105 -1.466999 0.768440 -0.068748 0.563368 -0.250593 2.018920 0.046665 0.341524 0.696069 1.862853 -1.397470 -0.375315 -1.209002 0.098209 0.317027 -0.892573 -0.369837 0.956935 -0.291188 -0.884443 -1.052795 0.977195 -0.254905 -0.745520 -0.678065 -0.874393 1.295836 -1.752797 -0.834389 -2.271751 -0.457260 -0.188673 -1.859952 0.338835 0.530222 0.964820 0.703267 0.249685 -0.892342 0.447817 0.966540 -0.268610 -0.781100 -0.119800 1.618494 0.706479 -0.225076 0.768237 0.836364 0.613156 1.306281 2.054548 -0.080487 -0.958527 0.625301 -0.609628 0.024020 -0.544571 -0.159637 0.741899 -1.256937 -0.062023 0.579620 -0.596251 -0.068732 0.495213 -0.831187 0.721187 2.356063 -0.216530 0.429735 0.013788 -1.308042 1.102158 -0.385928 -0.648954 0.518194 0.938461 1.011531 -1.358845 -0.780621 0.723025 1.419254 0.540254 -1.772931 -0.469942 -0.383964 0.515264 -0.319294 0.321318 0.884879 0.364016 -0.430570 -0.038415 0.224356 2.397833 -1.259239 -1.374529 0.655863 0.015431 -0.326845 -2.061823 -0.297613 -0.523732 -0.686750 0.062241 -0.009953 0.163949 1.413159 -2.311990 1.132991 -0.400384 -0.832761 1.019017 -0.186164 0.050569 -1.789996 0.172993 1.173468 1.133031 0.423363 0.005539 -0.570876 -1.329637 0.240101 0.233788 0.729764 -0.394324 1.030077 -0.399748 -0.811187 -0.920921 -0.630122 -0.125299 -0.242742 -0.171016 0.467564 0.599037 -2.858708 1.365670 -0.639287 -0.692572 0.452453 0.231632 1.063863 -1.099398 -1.637873 0.766100 -0.571791 -1.359819 -0.823618 -0.263345 0.534991 0.207569 -0.776336 -0.456313 -1.880587 1.172550 -0.151535 0.596575 0.801547 0.595442 2.049655 0.566453 -1.422071 -0.868414 -0.470120 0.210743 -0.882352 -0.061639 -0.761823 -0.331427 0.962281 1.850995 0.201964 0.384445 -0.689226 1.204485 -1.836765 -0.811935 1.144385 1.018636 -0.369786 0.990057 1.159775 -0.766995 -0.832696 -1.082917 -0.070047 -0.217769 -0.870149 0.183307 -1.647715 -0.383919 1.246999 -0.388337 -0.646992 0.767968 -0.100749 -0.189121 -1.147364 1.766839 2.488604 -1.786799 0.374922 -0.995135 0.912451 -1.679469 -0.954453 -0.022986 0.679718 0.000100 -0.021295 0.783466 0.272155 0.158723 -1.077494 -0.633348 -0.754962 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -0.914214 6.192893 5.382756 -6.893402 8.371957 12.699046 1.160478 -3.751096 -4.992025 -1.804610 -0.585228 -13.914290 -9.178549 7.808822 -2.874432 0.773467 11.148721 -2.592202 -3.171902 -0.576145 2.460761 6.885944 11.770460 12.355800 -10.050081 2.986424 0.980333 1.747490 -1.908527 7.395227 -4.475167 -13.598625 -0.479963 2.295569 1.948267 0.951143 -4.734857 -5.205551 3.236833 -14.889545 -1.196305 8.223010 -3.883025 -0.781459 3.390362 -0.596748 16.604091 5.128761 -0.567992 1.150441 4.344761 4.347764 3.710246 -0.959203 4.217544 -0.594798 8.832208 -1.045282 -1.686305 -1.642518 -2.196055 2.916445 -4.041776 10.100565 8.897735 1.918840 -6.079277 -2.471809 1.932388 -0.254252 -2.810594 8.399908 4.707345 10.669055 3.880168 1.641894 3.282103 -7.244969 4.331026 -5.252419 -8.672916 -2.667045 3.949655 9.111535 2.864681 -7.811198 14.425110 -3.280232 0.221874 4.345428 14.222370 -6.515639 -0.685775 -3.467689 -6.772785 -0.198848 -1.110314 3.064202 -4.900786 -0.561630 -8.644203 -6.748930 0.668006 -0.878221 -6.033272 3.010318 0.002105 4.607336 -4.939135 -0.316659 -5.450700 4.746494 1.771772 -14.583292 -11.917020 -2.346781 -3.385983 1.758674 -6.543716 -8.807277 3.707642 2.222504 -5.800506 -2.076092 -6.614075 8.970984 8.823544 -0.164918 0.218365 2.213556 7.975442 9.669531 0.037797 -4.085874 0.797473 -0.373696 1.279042 -0.164134 -1.852858 2.326082 -3.639043 -3.899447 0.772357 6.483699 -4.673437 1.708292 -9.378231 -5.164888 -0.020752 30.477627 -6.668547 8.933184 2.598641 -10.480393 6.395344 -1.627804 -5.611557 -1.335544 3.850994 11.150687 -11.634903 -5.349670 10.341552 13.435481 3.401110 -6.809642 8.025757 4.666824 -2.228373 -5.756300 8.453539 -0.453262 1.860472 -4.441908 -2.793552 7.341992 19.399100 -2.773291 -14.116079 2.133158 4.990138 5.926935 2.086731 0.317015 -3.071101 -0.576953 7.606185 0.565884 7.684130 10.314995 -17.817906 7.895411 2.856180 -7.196373 11.199153 0.146170 -5.031507 3.316679 0.952931 8.913755 7.249388 2.252340 -2.252457 -5.323996 -9.318630 -0.663719 3.293255 3.122556 -8.766614 9.301689 2.356099 -9.488856 -4.111024 -8.561411 -3.463674 -2.912222 -11.542081 4.345751 -0.570326 -16.004070 12.342114 6.519005 -1.105499 -2.759233 -7.584933 4.566791 -6.750212 -9.364966 3.112192 -5.550631 -5.346387 2.570650 -4.895367 1.660002 5.767206 9.002617 -12.786849 -11.071235 10.224359 2.553745 11.783416 6.205125 2.216023 3.587024 4.360809 -3.696022 -3.005084 -11.194696 11.980797 4.601307 -6.599061 -0.422033 -7.126253 5.208473 8.733355 -4.353934 -4.989502 -11.108464 4.777662 -3.811241 2.165528 2.131516 -3.444411 -8.507599 -1.979495 4.580130 -0.210469 -0.074207 -8.798290 -2.146753 -9.588471 -6.660340 2.767359 -4.416859 -0.566050 6.194592 -6.316670 -5.187109 2.250028 -0.327865 -3.616743 3.542902 8.504052 2.967831 -2.978433 6.836188 -10.984678 8.788607 -10.811715 -9.642513 3.031612 -8.386357 -5.480974 -6.765661 -3.061192 4.482472 1.265925 -0.470039 -3.501788 4.247508 +PE-benchmarks/topological-sorting.cpp__int** std::copy(int**, int**, int**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/topological-sorting.cpp__int** std::copy_backward(int**, int**, int**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.177492 0.833652 0.772135 -0.461977 1.866403 0.747490 0.770636 0.239822 -0.647212 -1.602141 -0.301881 -1.171501 -2.588822 1.413977 -0.435633 0.476430 2.166514 -0.003527 0.519645 -1.058870 1.280787 -1.607442 2.847475 2.191343 -2.751831 0.502393 0.677290 1.109714 0.253531 1.790560 0.037502 -1.669024 0.989927 -0.744439 1.598362 -1.079244 -0.311730 -0.400282 -0.620179 -3.310552 -0.754550 1.125626 -0.660074 0.712701 0.351986 2.159339 2.746039 1.413148 -1.235228 1.818414 1.110318 -0.519133 1.280070 0.505844 -0.038686 -0.152528 0.349977 -0.052341 -1.150234 0.522538 -0.834266 -2.908147 0.127499 1.566114 2.574214 -0.846938 -0.436822 0.569270 -0.835536 0.505876 0.196291 1.820654 1.314982 0.291562 2.484730 -1.523111 -0.508835 -3.509690 -0.384192 -5.613807 -2.005080 -2.150100 1.391078 0.495948 1.138136 -0.681797 3.090043 0.404672 0.466750 1.387505 2.405402 -1.674647 -0.270357 -1.361816 -0.287158 0.169130 -1.148764 -0.112927 1.032000 -0.211624 -1.543175 -1.347536 1.179023 -0.411027 -1.004523 -1.255144 -1.352151 1.823216 -2.569012 -1.058046 -3.186616 -0.328127 -0.366749 -3.050594 0.495704 0.029957 1.337037 1.002221 0.257214 -0.670901 0.744168 1.306285 -0.336718 -1.073396 -0.500437 2.573708 1.282933 -0.020230 0.890076 1.275805 0.139071 1.825252 2.988536 0.175687 -1.301874 0.820939 -0.746710 0.363424 -0.720327 0.148502 1.615405 -1.664277 -0.336273 0.470700 -0.662265 -0.467445 0.530686 -1.370190 1.091835 4.161733 -0.549950 1.222402 0.583534 -1.900427 1.628904 -0.229767 -0.167087 1.288170 1.921498 1.154878 -2.182600 -1.196757 0.991655 2.074152 0.569673 -2.616546 -0.769397 -0.103720 0.765895 -0.627261 0.498930 0.842810 0.510280 -0.995433 0.248711 0.201937 3.288115 -1.631710 -1.796797 0.643927 0.585407 -0.556837 -2.530768 -0.385048 -1.014509 -0.809283 0.263664 0.020172 0.076218 1.938555 -3.623270 1.565633 -0.693863 -0.558396 1.523890 -0.087499 -0.136300 -3.054497 0.421663 1.277830 1.345157 0.648626 -0.038224 -0.460875 -2.037565 0.706702 0.144207 1.189792 -1.026140 1.901430 -0.824052 -1.332622 -1.520748 -1.361074 -0.281949 -0.400791 -0.577452 0.680338 1.163821 -3.938702 1.535956 -0.804829 -1.501736 0.624627 0.409327 1.764211 -1.421258 -2.424135 0.971367 -1.326583 -2.360749 -1.652953 -0.489452 0.504659 0.306812 -1.129262 -1.102159 -2.615995 2.110376 -0.534653 1.262242 1.390877 0.786529 3.432751 0.953738 -2.340992 -1.517096 -1.128425 0.750773 -1.167532 -0.505072 -1.173316 -0.737463 1.179088 2.939532 0.328111 0.452546 -0.772537 2.349803 -2.561429 -1.039597 1.772935 1.246335 -0.229750 1.640823 1.705470 -1.065337 -1.129111 -1.574079 0.184798 -0.098417 -1.136584 0.919298 -2.367152 -0.175207 1.100755 -0.165449 -0.997616 0.924932 0.001665 0.037153 -1.463706 2.713946 3.501262 -2.479811 0.394149 -1.333556 1.203544 -2.415784 -1.158067 -0.468832 0.705981 0.301659 0.241987 0.680323 0.851847 0.887135 -1.670604 -0.905311 -0.654704 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/topological-sorting.cpp__int** std::__miter_base(int**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/topological-sorting.cpp__int** std::__niter_wrap(int** const&, int**) = -0.021026 0.229423 0.143580 0.026343 0.253999 0.036877 0.139132 0.064413 -0.154146 -0.272016 -0.112143 -0.274298 -0.407604 0.336218 0.019496 0.196591 0.560619 0.190063 0.070254 -0.169906 0.142008 -0.467798 0.541630 0.524271 -0.415006 0.168068 0.206609 0.153091 0.000000 0.375869 -0.202960 -0.296722 0.266132 -0.263466 0.205522 -0.332598 -0.065749 -0.055440 -0.037340 -0.794364 -0.067845 0.116022 0.104225 0.001183 -0.015652 0.331609 0.580898 0.279575 -0.089073 0.333787 0.110393 -0.147710 0.229184 0.122296 0.125171 0.177097 0.174500 -0.088139 -0.308130 0.126289 -0.050886 -0.700611 -0.047218 0.275307 0.464100 -0.113898 -0.081196 0.146598 -0.179552 0.029080 0.001329 0.224828 0.179276 0.067055 0.305662 -0.443972 0.017777 -0.598917 -0.184541 -1.204490 -0.433937 -0.401424 0.301305 0.036218 0.280059 0.048464 0.545242 -0.012266 0.189446 0.047505 0.576857 -0.522332 -0.165666 -0.173945 0.074505 0.154400 -0.250828 -0.063970 0.283188 -0.181758 -0.323222 -0.372473 0.528961 0.044623 -0.242398 -0.154769 -0.136957 0.344144 -0.579007 -0.369070 -0.675838 -0.301042 -0.132315 -0.526052 0.336874 0.118510 0.261122 0.317762 -0.060845 -0.407062 0.145190 0.276923 -0.023420 -0.327765 -0.186244 0.443632 0.082450 -0.064079 0.258289 0.164323 0.142063 0.511622 0.577101 -0.060364 -0.144369 0.191016 -0.271159 0.012000 -0.171323 -0.210630 0.132581 -0.436577 -0.040820 0.131950 -0.272899 0.025669 0.207815 -0.117615 0.206952 0.590272 -0.037864 0.192442 0.099418 -0.445512 0.331389 -0.204195 -0.180870 0.138591 0.401055 0.277048 -0.394949 -0.242700 0.080251 0.479155 0.215089 -0.408361 -0.292924 -0.187983 0.158474 0.013375 0.150675 0.143282 0.165406 -0.257663 -0.001529 0.077637 0.747994 -0.362693 -0.191731 0.108883 -0.133918 -0.114938 -0.728828 -0.074654 -0.273697 -0.107701 -0.195164 -0.026569 -0.005693 0.422056 -0.680916 0.407936 -0.329729 -0.256088 0.357264 -0.006861 -0.087510 -0.621210 0.114086 0.338393 0.435591 0.094532 0.089955 -0.078246 -0.424235 -0.060009 -0.024029 0.216105 -0.200758 0.355629 -0.064471 -0.363999 -0.262036 -0.133086 0.098844 -0.261911 -0.005939 0.175616 0.391982 -0.770444 0.388855 -0.119204 -0.278643 0.214109 0.102103 0.217649 -0.397861 -0.495405 0.182544 -0.159628 -0.289342 -0.184493 -0.124864 0.180174 -0.041944 -0.360903 -0.059231 -0.391131 0.341919 -0.019727 0.185225 0.279645 0.120691 0.554125 0.240180 -0.430143 -0.184782 0.006947 -0.151980 -0.455270 -0.027591 -0.206511 -0.208472 0.328361 0.701850 0.148089 0.089489 -0.058120 0.427903 -0.514781 -0.231077 0.390332 0.275691 -0.035687 0.246791 0.374775 -0.342687 -0.236085 -0.257465 -0.058228 0.069695 -0.262429 0.140051 -0.517620 -0.054271 0.319252 -0.145268 -0.161875 0.260374 -0.043619 -0.009149 -0.256590 0.489410 0.571330 -0.466596 0.121280 -0.256957 0.137005 -0.515404 -0.217183 -0.051278 0.398899 -0.151924 -0.008349 0.223495 0.104053 0.045889 -0.277740 -0.173822 -0.228759 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/topological-sorting.cpp__int** std::__niter_base(int**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -0.666518 -0.159080 -0.215766 -1.341699 1.288899 0.664068 0.536984 -0.511740 -1.359700 -1.122059 0.250091 -2.365016 -1.598305 1.526054 -0.496943 1.225113 2.809199 0.107712 -0.240407 -0.962181 1.124024 -0.353110 2.939246 3.088305 -2.088301 0.198759 0.475170 1.046061 0.105318 -0.078235 0.335471 -1.867676 0.550758 -1.389177 0.595896 -0.765185 -0.466314 0.193149 1.242762 -3.466996 -0.259038 0.627585 -0.020770 0.121228 0.035090 0.974582 2.252398 1.621490 -0.688798 1.568497 1.596623 0.045493 0.913317 0.173169 0.018097 0.037568 -0.097616 -0.238099 -0.455457 -0.125581 -0.432415 -0.754362 0.176091 1.941608 2.353522 -0.306459 -1.134708 0.733268 0.588235 0.366615 0.369323 1.753208 0.333516 0.599479 1.560815 -2.440515 -0.308674 -4.379039 0.315138 -4.574395 -2.026951 -0.612795 1.550186 0.503083 1.034521 -0.004045 3.227847 -0.296759 -0.144820 1.892507 2.303295 -1.636966 -0.579545 -0.850942 -0.744806 0.405982 -0.820224 0.348494 0.786277 0.866469 -1.836618 -1.218530 0.776298 -0.108439 -1.233974 -1.512344 -0.078112 1.162816 -1.645690 -1.233640 -2.058526 1.176529 0.175556 -3.228170 -0.399553 -0.693236 0.862174 0.574901 -1.236489 -1.615864 0.582763 0.346546 -0.776520 -0.643506 -0.561508 1.496543 1.542803 0.221677 0.534969 1.195750 0.813845 3.051036 1.105586 -1.075796 -0.501860 0.810571 -0.626233 0.440971 -1.060726 -0.448557 1.054526 -1.867377 0.709794 0.798196 -1.229969 -0.863462 1.096632 -0.774601 0.216471 5.726770 -0.549450 2.034170 1.668249 -1.691649 1.190696 -1.081128 -0.026821 0.712124 1.572775 1.232807 -2.261790 -1.463647 1.521721 2.835856 1.069554 -2.145477 -0.637951 0.797947 0.631956 -0.491789 0.873136 0.470181 0.482527 -0.925022 -0.041603 1.394234 3.700756 -0.859414 -0.463700 0.274609 1.891231 0.032975 -2.130488 -0.388233 -2.206574 -0.391465 1.103192 0.744360 0.830703 2.342581 -3.926915 1.468321 -0.137094 0.166808 1.347491 0.916941 -1.399502 -3.093021 -0.033345 1.116636 1.795516 -0.275398 0.743395 -0.047252 -2.124866 0.080274 0.558065 0.741183 -1.491820 2.040399 -0.407960 -1.212300 -0.660911 -0.039122 -0.855812 -0.656956 -0.503569 1.411510 1.009843 -3.267358 1.814925 -0.042181 -1.262676 0.308355 -0.864337 2.269269 -1.868858 -1.920491 1.336256 -1.010298 -1.087302 -0.481345 -0.550736 0.747482 0.371783 0.341352 -1.459704 -1.974057 2.214982 -0.087444 2.256144 1.295728 -0.275030 1.842614 -0.995973 -1.365234 -1.069740 -1.385295 0.361627 -0.151604 -1.178767 -1.082032 -0.733727 1.396575 2.319085 -0.203803 -0.834043 -0.166129 1.807957 -2.359245 -0.194598 0.883617 1.026603 -1.126714 1.158559 1.249217 -1.685325 0.075641 -1.889547 0.334454 -0.930375 -1.289775 1.260713 -1.315127 0.287161 0.740343 -0.669441 -0.066666 1.062770 0.685138 0.170229 0.039642 2.440214 2.322452 -0.736418 -0.146984 -2.424773 1.067447 -2.454523 -1.987130 0.132500 0.374941 -1.094110 -0.511870 0.072710 1.509019 0.639732 -0.970360 -1.424905 0.564664 +PE-benchmarks/topological-sorting.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.052319 0.376944 0.273296 -0.139008 0.406972 0.181769 0.159607 -0.012123 -0.212057 -0.362548 -0.148884 -0.327452 -0.539844 0.491512 -0.050788 0.209208 0.830855 0.182783 0.055348 -0.310817 0.349587 -0.542469 0.816179 0.790739 -0.729020 0.194675 0.515420 0.278514 0.182582 0.447447 -0.289821 -0.390958 0.321425 -0.413552 0.296740 -0.496550 -0.064027 -0.173056 0.018988 -1.133028 -0.094025 -0.084428 -0.112884 0.012246 -0.044683 0.517786 0.896206 0.433182 -0.273347 0.379408 0.343207 -0.037969 0.166704 0.131970 0.104423 0.211366 0.300597 0.102275 -0.269711 0.111777 -0.038701 -0.819852 0.009011 0.522992 0.712271 -0.126620 -0.092437 0.281899 -0.132815 0.018805 -0.038359 0.345054 0.257074 0.221965 0.481464 -0.871986 -0.013644 -1.219117 -0.219396 -1.762420 -0.588245 -0.590702 0.288594 -0.238510 0.392657 0.162515 0.814750 0.034474 0.285423 0.243251 0.850365 -0.722125 -0.184773 -0.324551 -0.079460 0.233339 -0.351158 0.031889 0.312300 -0.237022 -0.460331 -0.640401 0.640308 0.086815 -0.382762 -0.325008 -0.178350 0.493174 -0.765421 -0.459097 -0.876476 -0.329795 -0.210498 -0.867448 0.267424 -0.015315 0.707131 0.301790 -0.052808 -0.663636 0.121343 0.527024 -0.074621 -0.482947 -0.058551 0.595091 0.321104 -0.050345 0.283934 0.125503 0.257266 0.770597 0.883014 -0.130409 -0.239163 0.216166 -0.429483 -0.062546 -0.347539 -0.175166 0.341656 -0.561365 0.025789 0.349539 -0.368439 -0.086425 0.668624 -0.300856 0.337225 1.387202 -0.060863 0.308667 0.156155 -0.694433 0.317571 -0.274186 -0.297308 0.271730 0.552406 0.440995 -0.824803 -0.377321 0.153438 0.709415 0.307123 -0.727880 -0.436783 -0.237258 0.071988 -0.038842 0.161492 0.141799 0.097369 -0.334180 -0.058895 0.258864 1.097302 -0.500279 -0.412135 0.130615 -0.019441 -0.212918 -0.985279 -0.106710 -0.373512 -0.080356 -0.053848 -0.049322 0.159165 0.647480 -1.288600 0.528554 -0.399618 -0.352371 0.415090 0.090964 -0.165038 -0.802353 0.281693 0.544187 0.576286 0.103136 0.139600 -0.086960 -0.634781 -0.072395 0.036519 0.320726 -0.340608 0.499486 0.045316 -0.564836 -0.442393 -0.095887 0.090113 -0.321911 -0.017962 0.262165 0.199546 -1.352938 0.664861 -0.192933 -0.346965 0.288915 -0.065371 0.426112 -0.643825 -0.755409 0.328059 -0.119835 -0.273651 -0.258982 -0.167680 0.370668 0.004097 -0.233696 -0.273774 -0.734129 0.396068 -0.078306 0.293907 0.406178 0.245877 0.887824 -0.067072 -0.472518 -0.500225 -0.027262 -0.010762 -0.367327 -0.202763 -0.393645 -0.284940 0.478721 1.005535 0.041093 0.083233 -0.066153 0.599301 -0.887534 -0.294119 0.441434 0.683791 -0.206498 0.313157 0.458196 -0.483794 -0.349587 -0.379818 -0.131365 0.059318 -0.463211 0.246104 -0.666810 -0.012746 0.487760 -0.144298 -0.196919 0.428139 -0.055675 0.104941 -0.260107 0.604845 1.099536 -0.702933 0.037444 -0.457496 0.274503 -0.827546 -0.496568 0.015601 0.340721 -0.126295 -0.032354 0.176081 0.265032 0.063552 -0.283409 -0.158775 -0.258296 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -0.764512 -0.138784 -0.165633 -1.663793 1.492798 1.180988 0.638658 -0.919964 -1.542606 -1.098009 0.397744 -2.982215 -1.783715 1.842072 -0.661659 1.516075 3.158839 -0.029311 -0.480221 -1.020704 1.156347 0.215935 3.435881 3.538160 -2.365733 0.246619 0.332591 0.859258 0.166342 -0.081707 0.301680 -2.312100 0.766264 -1.306879 0.634883 -0.578590 -0.648991 0.093345 1.652559 -3.856937 -0.239558 0.916874 0.090908 0.051988 0.172860 0.996357 2.663819 1.854410 -0.452675 1.613554 1.694418 0.266227 1.074847 0.159576 0.256836 -0.041582 0.221975 -0.640299 -0.480820 -0.286010 -0.507809 -0.343467 -0.048404 2.326744 2.664851 -0.257705 -1.354439 0.707735 0.873311 0.407764 0.362908 2.048204 0.459731 0.994416 1.471853 -2.536157 -0.125328 -4.402136 0.415431 -4.653056 -2.308066 -0.479639 1.628578 0.844846 1.217446 -0.468448 3.674496 -0.281405 -0.352657 1.722294 2.758724 -1.945997 -0.607121 -0.811285 -0.699051 0.287102 -0.890954 0.611344 0.737967 0.794484 -2.172674 -1.225884 0.760302 -0.107018 -1.428148 -1.400543 0.079093 1.318345 -1.627332 -1.269362 -1.936925 1.497314 0.164542 -3.774991 -0.442092 -0.882290 0.507626 0.552084 -1.511777 -1.941786 0.701592 0.341571 -1.002978 -0.790177 -1.061754 1.816359 2.004338 0.330363 0.447245 1.448041 1.070272 3.599374 0.813801 -1.309072 -0.355429 0.700886 -0.475648 0.624800 -1.094615 -0.422705 0.968062 -2.020864 0.674518 1.077602 -1.361747 -0.597314 0.774514 -0.733513 0.102087 6.667395 -0.832930 2.480611 1.942509 -2.030635 1.279553 -1.290010 -0.087275 0.574443 1.626216 1.491715 -2.745015 -1.718518 1.957522 3.333829 1.208564 -2.371214 -0.222593 0.997682 0.490509 -0.892336 1.126287 0.462403 0.571296 -1.132063 -0.130323 1.666382 4.366830 -1.007693 -0.484164 0.288550 2.104753 0.381705 -1.891587 -0.483764 -2.351155 -0.324412 1.319980 0.982573 1.118141 2.678698 -4.205178 1.762437 0.000953 -0.037860 1.875136 0.998284 -1.744486 -2.931578 -0.108563 1.336275 1.950399 -0.413831 0.848004 -0.093229 -2.472032 0.063192 0.555195 0.710334 -1.742899 2.176011 -0.183988 -1.380670 -0.664510 -0.137923 -0.901823 -0.842095 -0.842191 1.667371 1.331984 -3.642902 2.169979 0.251169 -1.363746 0.229116 -1.233446 2.585200 -2.077567 -1.971406 1.388970 -1.238106 -1.177257 -0.370542 -0.660111 0.765372 0.298984 0.973695 -1.977577 -2.147875 2.575673 -0.066597 2.707263 1.488487 -0.269166 1.714923 -1.124681 -1.443633 -1.043784 -2.090259 0.606977 0.202006 -1.524450 -0.753909 -0.909226 1.635244 2.462619 -0.370324 -1.196171 -0.386714 1.776959 -2.717761 0.084349 0.924259 1.039247 -1.536304 0.987465 1.353463 -1.690559 0.236625 -2.054661 0.127793 -1.372321 -1.515699 1.456864 -1.221373 0.416945 0.677721 -0.814672 -0.137191 1.142146 0.696560 -0.022021 0.335059 2.682592 2.292056 -0.638993 -0.127170 -2.877075 1.406830 -2.731367 -2.367901 0.394018 -0.000190 -1.455610 -0.759373 -0.075274 1.781994 0.757090 -1.005019 -1.664231 0.827865 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/topological-sorting.cpp__std::deque >::deque() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_base() = 0.005082 0.380833 0.596442 -0.581916 1.257868 0.388255 0.378473 0.045049 -0.356303 -0.761964 -0.200337 -0.324188 -1.177589 0.477920 -0.475743 0.040149 0.698194 -0.235790 0.383800 -0.671180 0.682906 -0.643818 1.329496 0.728110 -1.550335 0.253194 0.034619 0.776773 0.136076 1.396673 0.155786 -0.801205 0.192421 0.120128 1.074366 -0.478957 -0.150921 -0.093873 -0.613006 -1.349325 -0.417454 0.770256 -0.301903 0.671276 0.419966 1.041880 1.184975 0.581341 -0.738362 0.960579 0.720889 0.094445 0.770581 0.281501 -0.100639 -0.151774 0.574994 -0.336470 -0.421627 0.275434 -0.636330 -1.169032 0.324101 0.731555 1.247856 -0.493693 -0.135508 -0.011097 -0.470930 0.365657 0.314764 1.039386 0.360228 0.063678 1.263932 -0.348894 0.004249 -1.486196 0.068666 -2.296001 -0.818508 -1.176285 0.491919 0.702154 0.477917 -0.398147 1.526604 0.307134 0.199955 0.608261 0.693823 -0.355754 0.169818 -0.646400 -0.463886 -0.210783 -0.330668 -0.271412 0.078555 0.381366 -0.525697 -0.290272 0.279620 -0.430354 -0.355439 -0.387564 -0.920631 0.807675 -1.330233 -0.239821 -1.299224 0.341333 -0.227502 -1.327288 0.031313 -0.363717 0.512139 0.062160 0.526340 0.219753 0.367106 0.698683 -0.308647 -0.070726 -0.662848 1.258313 0.775460 -0.056921 0.196415 0.509488 -0.391938 0.406554 1.247141 0.208738 -0.874489 0.449584 -0.032702 0.117742 -0.277373 0.531867 0.789290 -0.612398 -0.232418 0.026193 0.029080 -0.249136 -0.352824 -0.913293 0.631021 1.910741 -0.474261 0.552596 0.170264 -0.731584 0.624433 0.451815 0.265789 0.857512 0.822522 0.288139 -0.724099 -0.590770 0.454801 0.608763 0.043025 -1.076264 -0.202509 0.073647 0.214244 -0.111639 0.027664 0.315135 -0.116295 -0.397219 0.179681 -0.522787 1.381294 -0.317541 -0.985062 0.376797 0.474936 -0.650655 -0.550013 -0.218016 -0.360577 -0.434336 0.200757 -0.074411 -0.005366 0.759128 -1.941560 0.646020 -0.102809 -0.103766 0.708629 -0.387601 0.368400 -1.396146 -0.022671 0.325773 0.447664 0.122527 -0.126724 -0.146295 -0.801591 0.746194 -0.045482 0.652438 -0.576112 0.781766 -0.321280 -0.687395 -0.657835 -0.981077 -0.235479 0.251144 -0.545359 0.099518 0.364876 -1.904318 0.395272 -0.483004 -0.627590 0.400436 0.413012 0.819803 -0.266726 -0.845878 0.326876 -0.626466 -1.207712 -1.017869 -0.118941 0.159204 -0.019857 -0.294380 -0.805372 -1.135545 0.820822 -0.535428 0.410892 0.670652 0.427692 1.506128 0.584477 -1.019731 -0.773857 -0.590733 0.564215 -0.356455 -0.031628 -0.087158 -0.332898 0.306618 1.231416 0.237237 0.415427 -0.324279 1.322585 -0.754787 -0.409718 0.812260 -0.005293 -0.045365 0.903387 0.758278 -0.184762 -0.704822 -0.725484 0.304239 0.037581 -0.230840 0.673722 -0.990185 -0.055725 0.308645 0.187761 -0.805710 0.358860 -0.036457 -0.074516 -0.821534 1.501602 1.455506 -0.883083 0.392191 -0.296006 0.499512 -0.926080 -0.126553 -0.615378 -0.119272 0.426678 0.437304 -0.007303 0.644409 0.594930 -0.461013 -0.169753 -0.331830 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.053172 0.402366 0.318813 -0.083756 0.461611 0.168547 0.216516 0.156755 -0.260168 -0.522489 -0.154892 -0.471152 -0.796841 0.606238 -0.064596 0.137441 1.010996 0.264104 0.094311 -0.328197 0.306898 -0.572391 0.977272 0.935371 -0.851524 0.205409 0.446001 0.328297 0.128549 0.532456 -0.202066 -0.606364 0.427920 -0.321060 0.382018 -0.525853 -0.054196 -0.217980 -0.183473 -1.362770 -0.125710 0.148300 -0.117936 0.013624 0.002782 0.674775 1.057275 0.522250 -0.298068 0.476791 0.340636 -0.077619 0.237753 0.165158 0.085567 0.100360 0.187999 -0.024661 -0.466335 0.171409 -0.067537 -1.100290 -0.126471 0.584695 0.857975 -0.158446 -0.097140 0.212203 -0.227548 0.092209 -0.012521 0.377715 0.463325 0.225593 0.620441 -0.671719 -0.147701 -1.257742 -0.258149 -2.184491 -0.727512 -0.745480 0.603973 -0.049083 0.316248 -0.021479 0.954278 0.059822 0.350627 0.376444 1.055629 -0.763809 -0.288928 -0.447374 -0.009174 0.349840 -0.479149 0.017692 0.409049 -0.256961 -0.585727 -0.659428 0.652008 0.013088 -0.419754 -0.306247 -0.247284 0.634799 -0.964868 -0.430902 -1.160278 -0.355310 -0.071551 -1.044045 0.248211 0.113951 0.672224 0.481437 -0.080289 -0.556882 0.184971 0.495350 -0.084585 -0.460222 -0.198136 0.786195 0.263826 -0.063899 0.394439 0.298239 0.310125 0.805669 1.008905 -0.114445 -0.287735 0.281166 -0.458771 -0.034811 -0.388568 -0.210340 0.398181 -0.663614 0.069500 0.295291 -0.467393 -0.194353 0.369836 -0.333021 0.435793 1.412708 -0.065394 0.375480 0.176407 -0.777853 0.456814 -0.317844 -0.328631 0.268215 0.678108 0.505823 -0.698965 -0.419243 0.184801 0.856781 0.378334 -0.806664 -0.325073 -0.251792 0.175741 -0.142564 0.252673 0.258753 0.195752 -0.399473 -0.040573 0.345872 1.198839 -0.568767 -0.593571 0.128806 0.044036 -0.098085 -1.005204 -0.076478 -0.277156 -0.122783 0.004264 -0.039564 0.142240 0.785323 -1.408718 0.657984 -0.340973 -0.332670 0.474667 0.066278 -0.201549 -0.930962 0.317572 0.654176 0.720567 0.233550 0.095079 -0.127424 -0.749958 -0.084638 0.078811 0.417635 -0.332497 0.588856 -0.059584 -0.574739 -0.558515 -0.309072 0.068874 -0.308263 -0.104193 0.299577 0.415531 -1.578479 0.779959 -0.262182 -0.473462 0.192833 -0.032351 0.476012 -0.793607 -0.942723 0.321558 -0.276408 -0.643198 -0.366096 -0.218744 0.370518 0.031794 -0.319700 -0.215023 -0.834314 0.669562 -0.015469 0.388321 0.470856 0.268010 1.135565 0.182369 -0.646614 -0.462248 -0.184165 0.139325 -0.588107 -0.208047 -0.301359 -0.325461 0.524433 1.196003 0.052893 0.030004 -0.182136 0.731793 -0.961579 -0.429618 0.598805 0.636671 -0.097626 0.501245 0.615727 -0.631984 -0.422534 -0.529324 -0.097468 0.080202 -0.558014 0.224881 -0.872918 -0.021413 0.586572 -0.166836 -0.315182 0.445383 -0.076013 0.014583 -0.356826 0.788124 1.249552 -0.905703 0.223032 -0.568042 0.370604 -0.988759 -0.581315 -0.015061 0.353560 -0.106370 -0.000394 0.210854 0.214578 0.082202 -0.435426 -0.333680 -0.223769 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -0.069960 4.663618 5.555731 -5.041240 6.985055 7.937218 0.816766 -1.300833 -3.101436 -1.681621 -1.364074 -7.970812 -7.562761 5.186948 -2.000625 -0.111728 6.875972 -2.165308 -1.551156 -1.282320 2.538384 2.481314 7.715852 6.831123 -8.430407 2.396137 0.806671 3.288056 0.017321 7.502108 -3.769377 -7.677532 -1.037483 2.509684 3.431223 0.059505 -2.520865 -3.801957 -0.645283 -10.395759 -1.282004 6.188106 -2.954165 0.986320 2.791216 2.705610 11.319228 3.630901 -2.001275 1.281415 3.805035 1.716809 3.175239 -0.346900 2.115645 -0.501922 8.040856 0.136558 -1.978295 -0.231588 -1.533089 -1.219132 -1.780321 6.457746 6.992583 -0.093766 -3.463066 -1.367028 0.859622 0.229940 -1.516912 5.977979 3.310421 6.238007 4.452508 1.803773 2.707082 -4.800264 2.914358 -6.216134 -6.118815 -4.097560 3.174791 5.736720 1.357253 -5.963071 10.415607 -1.405802 0.593879 2.235076 9.129655 -3.884128 -0.065074 -3.918951 -4.461704 -0.128921 -1.382820 0.291080 -1.837121 0.097262 -5.173679 -3.684458 1.065641 -1.592614 -4.197689 2.910845 -2.225243 4.344505 -4.841956 -0.111703 -5.405244 2.625555 1.226096 -9.938411 -6.747505 -1.412540 -1.205876 0.676033 -1.617805 -3.910707 2.173976 2.675991 -4.002178 -0.588338 -5.708500 7.941531 6.274567 -1.010795 0.722373 1.948166 4.385101 4.354499 2.390301 -1.846153 -1.788328 0.827738 0.269002 -0.643585 -1.616177 2.532620 -0.750542 -2.868048 -0.459498 3.246318 -2.119394 1.700728 -6.632318 -4.366645 1.138933 19.732180 -4.469627 4.868826 0.321047 -6.433336 5.510401 0.957738 -3.545681 0.763699 2.797335 6.853110 -7.923143 -3.609198 6.225336 8.094920 1.628111 -5.965777 4.985482 2.156649 -1.493540 -3.619147 4.867759 0.644084 0.606532 -2.040238 -1.524537 2.595037 12.877632 -2.099155 -12.461089 2.038955 2.211583 1.766360 0.122274 -0.000805 -0.628739 -1.562548 3.562961 -0.091757 4.821656 6.900398 -13.516484 5.446968 2.372411 -5.540481 8.742258 -2.028962 -1.189058 0.077437 0.470217 5.725049 5.066752 1.787676 -3.187867 -3.755312 -6.453145 1.014181 1.970485 2.751577 -5.552291 6.051677 0.986789 -5.900097 -3.419331 -7.811287 -2.332410 -0.179839 -8.051585 1.904701 -1.311791 -13.040525 7.754331 2.354968 -1.002481 -0.824366 -3.509033 2.620477 -3.958949 -6.263833 1.603070 -3.101705 -5.529720 -1.135384 -2.824806 1.412747 3.110674 4.345712 -8.874681 -8.966123 6.661152 -0.078310 6.431321 4.288853 2.040538 4.411484 5.883849 -3.376428 -3.002998 -6.595755 7.887617 1.938881 -3.154038 0.062169 -4.600256 2.974844 6.571998 -2.394770 -0.550335 -7.886015 4.422081 -2.698739 -0.353038 2.272634 -2.872883 -4.713151 0.305228 3.853061 0.000883 -1.703203 -6.358076 -2.044001 -5.175192 -4.070682 2.249964 -4.200671 -0.861943 4.777343 -3.629644 -4.783540 2.036558 -1.062321 -3.297258 -0.133895 7.786444 5.096005 -4.068763 5.402204 -6.532838 6.544580 -7.421504 -4.937688 0.751418 -5.561492 -1.802091 -2.834128 -1.017498 2.696701 1.061368 -1.519894 -2.009553 1.250547 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.096239 0.499968 0.926542 -0.520466 0.525887 0.402312 0.112524 0.230812 -0.494564 -0.295316 -0.223042 -0.759122 -0.713139 0.614207 -0.148313 -0.271932 1.014489 0.242724 -0.124928 -0.238903 0.007420 -0.111275 0.801432 0.982235 -0.899187 0.343540 0.078652 0.509741 0.063304 1.086834 -0.488197 -0.748043 -0.144250 0.476020 0.556125 -0.420524 -0.250992 -0.330189 -0.470314 -1.555800 -0.032570 0.778634 0.089111 -0.045143 0.389352 0.440343 1.232801 0.409227 -0.158998 0.158287 0.320524 0.220005 0.384740 -0.014452 0.355935 0.089999 1.102261 -0.099048 -0.384584 0.234650 -0.038916 -0.599635 -0.165899 0.690561 0.778653 0.030590 -0.270186 -0.522243 0.143782 0.033502 -0.032890 0.412988 0.291283 0.560127 0.312700 0.140664 0.525722 -0.649825 0.342069 -1.228531 -0.755470 -0.595708 0.848838 0.695106 -0.063299 -0.599676 1.005292 -0.222960 0.393447 0.083330 0.961154 -0.356393 -0.159901 -0.386084 -0.435093 0.357167 -0.177359 -0.160584 -0.085913 -0.026114 -0.535744 -0.310673 0.496468 -0.134400 -0.485478 0.757540 -0.144651 0.583352 -0.748349 -0.028987 -0.793847 0.145857 0.232328 -0.958594 -0.279802 -0.222941 -0.055278 0.250044 -0.257746 -0.309585 0.226229 0.251999 -0.404538 0.168615 -1.275356 1.047001 0.247268 -0.245477 0.147561 0.091282 0.395100 0.165886 0.311930 -0.335677 -0.090741 0.349847 -0.266225 -0.254981 -0.404844 0.026782 -0.004620 -0.350521 -0.159040 0.093024 -0.456987 0.158413 -0.812831 -0.247003 0.322942 1.970433 -0.337015 0.482402 0.011283 -0.673862 0.787241 0.300408 -0.429788 0.085189 0.470996 0.653380 -0.719624 -0.369974 0.221914 0.934005 0.362780 -0.443022 0.298216 -0.072377 -0.276709 -0.058185 0.611935 -0.042617 0.019680 -0.379557 -0.217784 0.169122 1.264593 -0.004136 -1.429171 -0.076152 0.004939 -0.007174 -0.177547 0.169568 0.046429 -0.015278 -0.076311 -0.170968 0.543479 0.763620 -1.852271 0.838220 0.068138 -0.640380 1.025901 -0.403654 -0.074257 -0.415563 0.140393 0.621984 0.938617 0.198722 -0.417093 -0.187870 -0.710656 -0.122225 0.087100 0.399458 -0.596263 0.605696 0.185570 -0.668782 -0.330304 -1.044293 -0.060762 -0.087215 -0.823331 0.217858 0.067917 -1.499784 0.819041 0.139080 -0.164201 -0.052554 -0.278048 -0.128288 -0.688841 -0.720996 -0.036350 -0.091796 -0.701638 -0.291950 -0.440042 0.327151 -0.011387 0.201957 -0.674177 -0.808918 0.707980 -0.141554 0.575037 0.557542 0.110073 0.564926 1.267953 -0.257582 -0.155127 -0.375440 0.605234 -0.251298 -0.135016 0.228231 -0.614945 0.280926 1.006031 -0.153166 0.086777 -0.676868 0.725244 -0.093123 -0.341106 0.316219 -0.709198 -0.137155 0.252829 0.486741 -0.399929 -0.320151 -0.752236 -0.361024 -0.079931 -0.334359 0.369345 -0.637903 -0.036553 0.586646 -0.357726 -0.690522 0.303298 -0.208854 -0.457748 0.017997 0.922000 0.605701 -0.424171 0.922815 -0.584502 0.586987 -0.852703 -0.275593 -0.234260 -0.393388 -0.326109 -0.115808 -0.049865 0.232656 0.086510 -0.025512 -0.200853 0.165317 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator() = 0.100547 0.592691 0.939344 -0.497284 0.534410 0.460509 0.118140 0.038051 -0.451386 -0.122393 -0.290402 -0.682036 -0.568323 0.592537 -0.021815 -0.004629 1.027851 0.218847 -0.167723 -0.263660 0.173592 -0.423794 0.822501 1.044627 -0.920269 0.447837 0.295807 0.515397 0.164983 1.131723 -0.828632 -0.414765 -0.159896 0.081238 0.580477 -0.547948 -0.327370 -0.328762 -0.152414 -1.662372 -0.056919 0.535753 0.206730 -0.052937 0.304873 0.432141 1.314882 0.417808 -0.173246 0.154213 0.304061 -0.034330 0.500871 -0.004233 0.472712 0.406841 1.414579 0.246375 -0.284359 0.222134 -0.013152 -0.652259 0.064192 0.702664 0.808693 -0.002416 -0.342896 -0.283036 0.246145 -0.109562 -0.116160 0.526842 0.103321 0.559671 0.333347 -0.463187 0.812346 -0.843933 0.286008 -1.164962 -0.823259 -0.600479 0.504051 0.308903 0.295308 -0.387866 1.102168 -0.302233 0.400237 -0.207822 0.964172 -0.666498 -0.082904 -0.323299 -0.424338 0.248725 -0.128246 -0.198929 0.117402 -0.241907 -0.533280 -0.486338 0.867372 0.040996 -0.586570 0.675148 -0.133678 0.574863 -0.623219 -0.376151 -0.790484 -0.123960 -0.123884 -0.971808 0.061174 -0.290538 0.014783 0.212961 -0.228927 -0.759179 0.201118 0.453944 -0.363161 -0.151881 -1.124503 1.115235 0.396463 -0.293017 0.180084 -0.030107 0.397722 0.369679 0.545695 -0.340968 -0.105352 0.378772 -0.469513 -0.254187 -0.418852 -0.082361 0.050190 -0.437842 -0.438336 0.238368 -0.449356 0.524268 -0.109656 -0.176112 0.256454 2.280370 -0.317622 0.463056 0.016500 -0.771488 0.977676 0.293000 -0.507874 0.191538 0.512836 0.734692 -1.395864 -0.423220 0.191768 0.992800 0.351526 -0.645894 -0.095056 -0.183140 -0.309513 0.066000 0.571414 -0.123230 0.076142 -0.420236 -0.206845 0.077699 1.555334 -0.265182 -1.379058 0.001780 -0.322987 -0.264782 -0.802508 0.059105 -0.320177 -0.087425 -0.459246 -0.182441 0.531256 0.757455 -1.873997 0.871175 -0.273092 -0.919290 1.339880 -0.424393 -0.067686 -0.629635 0.162172 0.628391 0.930412 0.089721 -0.464320 -0.211109 -0.786243 -0.128512 -0.004556 0.339146 -0.695546 0.722347 0.190001 -0.775435 -0.278920 -0.856940 0.040353 -0.338917 -0.662886 0.266925 -0.045933 -1.405896 0.829527 0.207479 -0.165730 0.273642 -0.258056 -0.190876 -0.660535 -0.724563 0.072356 0.088882 -0.278153 -0.314667 -0.443557 0.388069 -0.021637 -0.041073 -0.828882 -0.960085 0.510327 -0.310617 0.548131 0.637346 0.137791 0.494983 1.303729 -0.328487 -0.338337 -0.101050 0.136148 -0.137120 -0.161540 -0.296232 -0.690041 0.411187 1.120837 -0.080325 0.365767 -0.647835 0.746956 -0.352824 -0.333190 0.314413 -0.520871 -0.309347 0.035080 0.458481 -0.328970 -0.326838 -0.644471 -0.562291 -0.060352 -0.325129 0.469166 -0.667163 -0.100940 0.620797 -0.487081 -0.515001 0.401688 -0.211289 -0.328146 -0.036779 0.932880 0.717170 -0.449315 0.636631 -0.550794 0.562807 -0.874483 -0.192957 -0.188549 -0.094202 -0.459618 -0.197365 0.264781 0.308629 0.109465 -0.139267 -0.051653 -0.099189 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.553526 0.769790 1.315022 -1.897717 2.871847 1.097842 0.474009 -0.019396 -1.165053 -2.137771 -0.853133 -1.157587 -3.177117 1.926767 -0.949624 0.838224 2.399264 -0.507265 0.306036 -1.736693 2.673771 -2.240775 3.248641 1.878040 -4.092482 0.303097 1.196809 2.726609 1.126194 2.767699 0.320958 -1.615048 -0.130625 -0.557273 2.980548 -1.653601 0.198028 0.339775 -1.021943 -4.161996 -1.038682 1.610274 -0.794000 1.327406 0.427854 2.617922 2.917673 2.045262 -2.298900 1.731825 2.584778 0.162388 1.567383 0.437366 -0.872111 0.086896 1.039218 -0.250933 -0.731418 0.571730 -0.819884 -3.114993 1.238632 2.301544 3.695594 -1.597301 -0.656685 1.400007 -0.376017 0.778727 0.398268 2.535961 0.627479 0.156155 3.297753 -2.697312 -0.430935 -5.358241 0.780577 -6.622421 -2.093746 -3.092626 0.795461 1.394359 1.042594 -0.845547 4.813114 0.256883 0.177524 2.436290 2.555357 -1.524775 0.165943 -3.148859 -1.251644 0.096755 -1.511720 -1.239138 0.740674 1.330150 -1.311535 -1.596844 0.575781 -0.855511 -1.565923 -1.764018 -2.607222 2.728080 -3.300008 -1.376107 -3.803547 1.151162 -0.590745 -4.023696 0.293485 -1.260222 1.192967 -0.091832 1.368375 -0.659372 0.684534 2.239464 -0.822509 -0.642357 -1.552071 3.412951 2.302862 -0.921373 0.504449 1.528913 -0.117154 1.649781 3.293887 -0.265817 -2.842794 1.909925 -0.920242 -0.242501 -1.761017 0.935845 2.835338 -2.226996 -1.121407 0.688644 -0.320864 -0.523428 0.726208 -2.854142 1.755089 6.920926 -0.788578 0.884756 0.308026 -2.124394 2.660435 1.045644 -0.129992 2.237072 1.864145 1.354701 -3.513945 -1.943917 1.537334 2.407355 0.583476 -2.874418 -1.435470 -0.180109 0.563586 -0.425189 0.207902 1.398885 -0.912868 -0.512272 0.009648 -0.722914 4.343443 -1.379681 -1.790986 1.274496 1.884986 -2.360884 -3.363320 -0.666271 -2.128390 -1.739962 0.480498 0.050080 0.774014 2.759094 -5.308761 1.999765 0.033289 -0.614767 1.577577 -1.356543 0.934750 -4.972683 0.129340 1.453361 1.842883 -0.388637 0.304352 -0.698187 -2.823540 1.683506 0.371235 1.830503 -1.472496 2.203651 -1.091892 -1.338392 -1.790156 -1.074768 -1.587412 0.068370 -0.885427 0.661205 0.663613 -4.604623 2.134330 -1.842742 -1.072692 1.409986 0.650417 2.668531 -1.719088 -2.687865 1.720986 -0.484447 -2.303784 -2.469755 -0.314491 1.570476 -0.169730 -1.363288 -2.082631 -4.202686 1.692986 -1.486340 1.118097 1.549301 1.000661 3.535695 1.204199 -2.247674 -2.457629 -1.419364 0.400295 -0.341113 -0.154518 -1.741873 -0.266262 1.542738 3.409638 0.302133 0.903167 -0.494971 3.350040 -2.528865 -1.492335 1.513606 0.331494 -0.867325 2.012816 1.741827 -1.263016 -1.915797 -2.784456 1.196382 -0.277392 -1.320523 1.476798 -2.857186 -0.319813 1.796863 -0.023528 -1.524496 1.644544 0.785402 -0.427916 -2.225495 4.602311 4.054915 -2.240484 0.403703 -1.948505 1.743887 -3.051404 -0.929550 -1.404202 0.468378 0.902464 0.756819 0.757048 1.698740 1.188625 -0.823253 -0.647206 -1.580914 +PE-benchmarks/topological-sorting.cpp__std::deque >::empty() const = 0.063123 0.571130 0.579541 -0.317946 0.527119 0.613142 0.087338 -0.034266 -0.258514 -0.227270 -0.132803 -0.817157 -0.662741 0.467919 -0.129250 -0.103834 0.647380 -0.072549 -0.095051 -0.033996 -0.079296 0.220625 0.668284 0.676592 -0.613111 0.292337 0.055893 0.165382 -0.200454 0.805019 -0.392251 -0.880902 -0.053479 0.410057 0.234236 0.007028 -0.290914 -0.423384 -0.145743 -0.985367 -0.078464 0.681821 -0.094516 -0.063147 0.257315 0.011279 1.111921 0.295481 0.009794 0.075543 0.156267 0.232449 0.292947 -0.017696 0.354317 -0.065630 0.790515 -0.265812 -0.274006 0.057709 -0.085761 -0.187216 -0.359578 0.556820 0.517331 0.074245 -0.297505 -0.333773 -0.068560 0.002068 -0.202207 0.427589 0.294067 0.679657 0.172805 0.358574 0.375433 -0.157958 0.213328 -0.459107 -0.596286 -0.326260 0.398352 0.797700 0.081481 -0.498816 0.812838 -0.144131 0.190204 0.014870 0.901368 -0.357667 -0.082624 -0.167404 -0.306256 0.108492 -0.096395 0.053015 -0.326995 -0.113071 -0.474285 -0.284458 0.246703 -0.102986 -0.366047 0.507650 -0.073398 0.309434 -0.500703 0.033913 -0.500959 0.048638 0.149643 -0.816466 -0.520764 0.048801 -0.253924 0.209937 -0.289680 -0.410109 0.263174 0.137599 -0.314469 -0.019124 -0.815707 0.663320 0.317521 -0.075071 0.130708 0.101925 0.510031 0.361425 0.080862 -0.171472 0.012082 0.023238 0.053970 -0.077738 -0.032264 0.109687 -0.390186 -0.238643 0.009379 0.274928 -0.306078 0.165827 -0.992413 -0.293061 0.116792 1.451983 -0.393693 0.432065 0.001855 -0.661952 0.454966 -0.020929 -0.482553 -0.150062 0.231435 0.703234 -0.386594 -0.244758 0.475202 0.778013 0.229411 -0.274973 0.522826 0.143032 -0.162048 -0.248727 0.577225 -0.008649 0.135533 -0.314544 -0.186986 0.299309 1.065992 -0.074622 -1.073373 0.109994 0.037509 0.334549 0.163117 0.110608 0.032325 -0.030742 0.193961 -0.099361 0.373353 0.573494 -1.178299 0.576346 0.164898 -0.598817 0.796656 -0.216822 -0.168279 0.151982 0.113725 0.602541 0.511451 0.195218 -0.197280 -0.380274 -0.526270 -0.100193 0.118190 0.222251 -0.483855 0.514741 0.146826 -0.638639 -0.315317 -0.806200 -0.050264 -0.122543 -0.775963 0.198363 0.132004 -1.106257 0.761114 0.334012 -0.096589 -0.199258 -0.334579 0.037705 -0.436807 -0.590472 0.018302 -0.384564 -0.514498 0.102411 -0.364905 0.039971 0.219262 0.340673 -0.583929 -0.484285 0.572175 0.145731 0.539185 0.424346 0.230829 0.272434 0.752761 -0.272118 0.015478 -0.511324 0.739046 -0.061952 -0.216629 0.234107 -0.505255 0.251452 0.652075 -0.171678 -0.127040 -0.706757 0.309892 -0.028869 -0.045920 0.221600 -0.511655 -0.339370 -0.030566 0.334352 0.010071 -0.129246 -0.566515 -0.195676 -0.420061 -0.377064 0.093425 -0.395413 -0.125344 0.532357 -0.417024 -0.555573 0.140371 -0.182052 -0.339414 0.075231 0.527593 0.139438 -0.299196 0.701910 -0.530570 0.463118 -0.650149 -0.423997 0.075495 -0.429172 -0.282284 -0.355987 -0.151216 0.101404 0.018594 -0.009652 -0.167946 0.178214 +PE-benchmarks/topological-sorting.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/topological-sorting.cpp__std::deque >::back() = 0.020737 0.353491 0.337258 -0.047197 0.226925 -0.105918 0.110789 0.313897 -0.127840 -0.642251 -0.078365 -0.564273 -0.845733 0.378079 -0.126102 -0.286772 0.631133 0.110040 0.118875 -0.283394 -0.033954 -0.243617 0.643502 0.639088 -0.686195 0.120504 0.142865 0.335717 0.154812 0.301208 0.233209 -0.607266 0.185655 0.313039 0.458556 -0.155114 0.004864 -0.269479 -0.594370 -0.947462 -0.148625 0.494485 0.048052 0.054881 0.146138 0.673874 0.803819 0.358458 -0.253076 0.269756 0.297919 0.053873 0.241668 0.058099 -0.087675 -0.440735 0.095450 -0.381093 -0.421983 0.209238 0.017520 -0.915273 -0.293684 0.467748 0.645768 -0.105901 -0.045823 -0.119942 -0.164644 0.195786 -0.025016 0.280192 0.519006 0.306032 0.467661 0.125763 -0.106285 -0.711928 -0.026984 -1.774588 -0.544555 -0.606327 0.832937 0.467972 -0.192696 -0.251375 0.670438 0.219430 0.303310 0.450329 0.795935 -0.162117 -0.231274 -0.345674 -0.031156 0.446512 -0.396255 0.091831 0.141139 0.130273 -0.401091 -0.159085 0.205425 -0.245206 -0.293232 0.121871 -0.253193 0.366685 -0.802309 0.126916 -0.882652 -0.191429 0.391891 -0.787961 0.052153 0.144850 0.283792 0.374887 0.000111 0.139345 0.081256 0.040210 -0.062980 0.114043 -0.818415 0.605209 0.054118 -0.046861 0.286747 0.422396 0.334734 0.180600 0.421526 -0.050169 -0.268373 0.197865 -0.207513 -0.064324 -0.225926 -0.039844 0.422879 -0.334948 0.157696 -0.071548 -0.307435 -0.465151 -0.557177 -0.400914 0.366571 0.618831 -0.030875 0.255064 0.103407 -0.405235 0.279005 -0.151508 -0.274522 0.127651 0.434002 0.409777 0.195466 -0.229745 0.147823 0.623176 0.212014 -0.305064 0.173136 0.053654 0.106883 -0.263395 0.333247 0.223662 0.083158 -0.206412 -0.031866 0.357764 0.472052 -0.076312 -0.450321 -0.049319 0.250362 0.186219 -0.209881 0.146048 0.221740 -0.065681 0.090376 0.032447 0.111340 0.526980 -1.056261 0.471941 0.216271 0.014454 0.189663 -0.145354 -0.140806 -0.739544 0.338354 0.489624 0.423956 0.200759 -0.024655 -0.157856 -0.510245 -0.051037 0.123087 0.339733 -0.234810 0.389259 -0.138107 -0.208089 -0.490110 -0.560257 -0.032034 0.104815 -0.313884 0.168653 0.475135 -1.083969 0.591659 -0.323228 -0.388767 -0.304383 -0.147380 0.182837 -0.653522 -0.593472 -0.032358 -0.470461 -1.007596 -0.391767 -0.238370 0.102124 -0.090538 -0.188907 -0.063492 -0.344844 0.715790 -0.016454 0.230343 0.333112 0.208651 0.822530 0.518750 -0.401972 -0.089149 -0.203898 0.390300 -0.588942 -0.110805 0.344090 -0.207771 0.144003 0.848766 -0.140142 -0.070105 -0.064431 0.424539 -0.302217 -0.579704 0.334698 -0.039216 0.119270 0.639088 0.362716 -0.438963 -0.254926 -0.663747 -0.028487 0.091739 -0.430574 0.089990 -0.664733 -0.066001 0.527605 -0.167510 -0.442711 0.306373 -0.120488 -0.208426 -0.228772 0.609142 0.768552 -0.628706 0.520273 -0.514620 0.291129 -0.717943 -0.408218 -0.085001 0.050169 0.134921 -0.008492 -0.070878 -0.010932 0.121486 -0.347521 -0.442419 0.175280 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator--() = 0.005350 1.302451 1.170988 -1.047993 1.191265 1.610538 0.128084 -0.219045 -0.581054 -0.528000 -0.445551 -1.500289 -1.379194 1.135348 -0.368651 -0.141144 1.773186 -0.098505 -0.229799 -0.255651 0.408919 0.359995 1.664848 1.786509 -1.760354 0.528897 0.781937 0.646746 -0.036257 1.638706 -0.695610 -1.906884 -0.210431 0.463134 0.790039 -0.447105 -0.542788 -0.822657 -0.071397 -2.639973 -0.226558 1.058942 -0.481200 -0.086130 0.490623 -0.124804 2.585648 0.837940 -0.421447 0.084069 0.776771 0.906588 0.461305 -0.097216 0.527006 0.160436 1.506137 -0.148529 -0.210394 0.087219 -0.135583 -0.236643 -0.347850 1.580266 1.480207 0.134510 -0.628342 -0.388413 0.126069 -0.009320 -0.525414 1.128405 0.453690 1.559278 0.616435 -0.333177 0.598241 -1.687497 0.676583 -1.554201 -1.360938 -1.020746 0.478122 1.216414 0.440822 -0.798658 2.153558 -0.396144 0.571282 0.564133 2.095735 -0.907755 -0.055352 -0.838736 -1.033109 0.376912 -0.303436 0.135239 -0.661959 -0.221762 -1.086914 -1.206469 0.475535 -0.053806 -1.020894 0.483934 -0.249267 0.930446 -1.056693 -0.247799 -1.261431 0.340942 -0.023434 -2.189687 -1.332772 -0.481141 -0.103094 0.230364 -0.526478 -1.415842 0.406947 0.793277 -0.703960 -0.366128 -1.189262 1.498411 1.169831 -0.349974 0.160360 0.090744 1.042976 1.178261 0.581489 -0.512838 -0.177550 0.284448 -0.199332 -0.479190 -0.624482 0.370118 -0.290978 -0.667197 -0.125448 1.035541 -0.729938 0.138946 -0.947092 -1.131981 0.497769 4.931869 -0.824998 0.954344 0.170744 -1.681370 1.051455 0.123121 -1.105761 0.041384 0.747933 1.705290 -1.928284 -0.736836 0.943371 1.938870 0.576196 -0.865476 0.495040 0.156150 -0.570045 -0.535448 1.122418 -0.126526 -0.065745 -0.675784 -0.467431 0.868639 2.611856 -0.325729 -2.326934 0.164889 0.771320 0.173124 -0.200381 0.144962 -0.679061 -0.103825 0.696150 -0.259231 1.143629 1.498141 -3.270844 1.304883 0.289207 -1.229621 1.552659 -0.291063 -0.334775 -0.220907 0.573077 1.485795 1.264041 0.070441 -0.153573 -0.761095 -1.456730 -0.154455 0.387972 0.723316 -1.315026 1.334884 0.356447 -1.499522 -0.863321 -1.180567 -0.388992 -0.610988 -1.505909 0.520404 -0.050259 -2.695076 1.945795 0.502668 -0.175454 -0.022607 -1.010600 0.509246 -1.323102 -1.587382 0.434681 -0.310359 -0.618971 0.230990 -0.816244 0.692512 0.584312 0.925709 -1.655914 -1.675204 1.020771 0.186728 1.274844 1.049790 0.623894 0.914177 0.756351 -0.496933 -0.642319 -1.217097 1.502568 0.444510 -0.729360 -0.446564 -1.094211 0.771182 1.861268 -0.554499 -0.354532 -1.403697 1.030899 -0.671862 -0.026286 0.338096 -0.545792 -0.992950 -0.220699 0.666882 -0.269677 -0.519145 -1.369492 -0.153106 -0.745515 -1.035431 0.472983 -1.108822 -0.155282 1.322283 -0.900116 -1.027709 0.605976 -0.085457 -0.416885 0.249111 1.210560 0.723828 -0.726452 1.056575 -1.388766 1.078042 -1.823461 -1.145900 0.020511 -1.069714 -0.462835 -0.687086 -0.383498 0.584638 0.107773 0.327594 -0.193244 0.120331 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator*() const = -0.009347 0.369540 0.211218 -0.139034 0.352797 0.287771 0.081346 -0.065336 -0.127741 -0.230885 -0.123914 -0.311895 -0.379510 0.323258 -0.077721 0.092510 0.511799 0.039272 0.034378 -0.140017 0.133101 -0.128161 0.541099 0.489581 -0.466744 0.159975 0.300812 0.115540 -0.018656 0.412668 -0.221362 -0.484725 0.160070 -0.089173 0.133307 -0.212963 -0.096269 -0.191897 0.018449 -0.705978 -0.056443 0.041168 -0.140564 -0.007873 0.014070 0.124200 0.694828 0.257362 -0.105360 0.194561 0.199941 0.168603 0.086400 0.067370 0.124355 0.107412 0.269863 -0.126257 -0.148889 0.038259 -0.039692 -0.340684 -0.116006 0.376408 0.417669 -0.028589 -0.097873 0.083938 -0.150018 0.001634 -0.095535 0.251213 0.162735 0.305362 0.210428 -0.327106 0.033297 -0.575219 -0.078898 -0.847538 -0.383178 -0.355220 0.114027 0.117241 0.234078 0.050648 0.553992 -0.011250 0.195417 0.129565 0.606140 -0.432461 -0.086535 -0.164159 -0.114441 0.105246 -0.165780 0.051698 -0.067710 -0.132815 -0.306127 -0.423368 0.322915 0.026223 -0.253763 -0.113343 -0.089336 0.260309 -0.510966 -0.199619 -0.494384 -0.131001 -0.106648 -0.576357 -0.072330 0.022518 0.322911 0.157210 -0.077498 -0.471228 0.118784 0.320711 -0.102948 -0.267056 -0.122251 0.324474 0.247197 -0.039758 0.150628 0.033185 0.252683 0.529124 0.399846 -0.088698 -0.107034 0.067327 -0.114471 -0.076422 -0.137779 -0.020158 -0.046430 -0.322423 0.106884 0.307423 -0.228867 -0.047260 0.052424 -0.282703 0.193346 0.945974 -0.144234 0.218971 0.060366 -0.520709 0.110632 -0.202914 -0.283852 0.057247 0.284118 0.390953 -0.379085 -0.222929 0.197340 0.481010 0.187394 -0.332549 -0.064830 -0.080333 -0.017405 -0.067947 0.187981 0.051246 0.039638 -0.226427 -0.085428 0.196488 0.760773 -0.211892 -0.328068 0.118335 0.053904 -0.006853 -0.304007 -0.037107 -0.187498 -0.027942 0.132474 -0.063605 0.147302 0.423248 -0.850739 0.344049 -0.153669 -0.297781 0.250046 0.042107 -0.097328 -0.194664 0.175479 0.421349 0.354761 0.055803 0.154352 -0.159906 -0.392256 -0.065891 0.053531 0.207587 -0.279512 0.323261 0.125487 -0.488228 -0.291000 -0.136023 0.043012 -0.190570 -0.180533 0.151483 0.127336 -0.931281 0.509016 -0.001040 -0.152279 0.105566 -0.122452 0.288511 -0.383729 -0.481289 0.194614 -0.152870 -0.161766 0.035014 -0.150016 0.199128 0.067355 0.056122 -0.250187 -0.398108 0.244163 0.092456 0.223128 0.274496 0.217228 0.440160 -0.103854 -0.254356 -0.218992 -0.160049 0.222548 -0.160018 -0.134756 -0.061414 -0.246895 0.290922 0.617659 -0.013759 -0.069212 -0.152979 0.310431 -0.411727 -0.054448 0.242245 0.290965 -0.221241 0.088599 0.273056 -0.172968 -0.213629 -0.271371 -0.008451 -0.094165 -0.324220 0.101763 -0.388525 -0.038951 0.381496 -0.151714 -0.243780 0.240977 -0.069838 0.008390 -0.089363 0.328444 0.455397 -0.357213 0.168650 -0.307862 0.184963 -0.533348 -0.368462 0.042391 0.024572 -0.107501 -0.117464 -0.064001 0.157987 -0.009801 -0.011361 -0.063220 -0.112196 +PE-benchmarks/topological-sorting.cpp__std::deque >::pop_back() = 0.009207 2.353799 2.026517 -1.500352 2.571931 2.827547 0.308466 -0.035121 -0.898116 -1.165875 -0.990209 -2.719869 -3.014435 2.115227 -0.511644 0.018964 3.029317 -0.336679 -0.299058 -0.277067 0.864965 0.294366 2.949457 2.482363 -3.023090 0.901535 1.117226 1.149540 -0.428897 3.227625 -1.433481 -3.453838 -0.148006 0.736275 1.502549 -0.589635 -0.742989 -1.479480 -0.532650 -4.336241 -0.538090 2.264002 -1.154528 -0.004749 0.688716 0.295064 4.601554 1.540887 -0.797103 0.165992 1.147139 0.978535 0.940121 0.077938 0.705365 0.250965 2.301229 -0.329374 -1.005827 0.161634 -0.432621 -1.190362 -0.788126 2.429307 2.577693 -0.104560 -1.097282 -0.126738 -0.251738 0.031422 -0.937619 1.947364 1.335605 2.345377 1.474796 -0.076271 0.550067 -2.253069 0.815974 -3.099973 -2.391884 -2.232267 0.776889 2.277338 0.776876 -1.896445 3.970338 -0.680687 0.914702 0.992988 3.941694 -1.921793 -0.245912 -2.141547 -1.272620 0.399073 -0.820275 -0.301899 -0.600782 -0.594593 -1.885729 -2.022308 0.741326 -0.333350 -1.618116 0.553386 -0.933591 1.997495 -2.161610 -0.583399 -2.948567 0.337576 -0.031250 -3.874019 -2.016157 0.037881 -0.466820 0.656850 -0.478026 -2.315541 0.986511 1.609394 -1.251950 -0.809621 -1.777922 3.118575 1.893567 -0.731518 0.652097 0.656817 1.844291 1.993067 1.723175 -0.584417 -0.814140 0.575711 -0.316320 -0.698895 -0.866741 0.620246 -0.491965 -1.501106 -0.424431 1.832295 -1.181279 0.566903 -2.189715 -2.066526 1.107197 7.610588 -1.524020 1.331282 -0.206158 -3.037019 2.405126 0.168810 -2.051291 -0.102723 1.189387 3.026960 -3.161530 -1.342394 2.010111 3.219264 1.003001 -1.901487 1.109571 -0.018335 -0.436869 -1.104068 1.686896 0.574334 0.140452 -1.056912 -0.716931 1.142527 4.923894 -1.143768 -4.373919 0.927620 0.944485 0.407533 -0.837988 -0.019549 -0.959324 -0.721116 1.158559 -0.455505 1.636473 2.771812 -5.014219 2.364761 0.462305 -2.458928 2.871075 -0.890724 -0.123438 -0.530733 0.611640 2.850969 2.208919 0.506743 -0.465125 -1.791215 -2.500872 0.059350 0.714938 1.449708 -1.754827 2.181331 0.107722 -2.495617 -1.681376 -2.420761 -0.816511 -0.837507 -2.472379 0.775520 0.280862 -4.856664 3.530405 0.580238 -0.303202 0.045084 -1.105335 1.091002 -2.102852 -3.059844 0.966196 -0.889087 -1.754731 0.115449 -1.179832 1.032814 1.153436 0.880540 -2.516257 -3.478112 2.070412 0.488397 2.098675 1.712006 1.405990 2.066402 2.132373 -1.512073 -1.049725 -2.460174 2.521904 0.288041 -0.896552 -0.808685 -1.585610 1.560505 3.157355 -0.661226 -0.258113 -2.896815 1.788511 -1.447848 -0.286202 1.168569 -0.942119 -1.682562 -0.140618 1.625763 -0.329998 -1.317939 -2.473034 -0.048383 -1.562052 -1.883057 0.229320 -2.413280 -0.672663 2.634022 -1.554831 -2.002137 0.897805 -0.184110 -0.987838 -0.420751 2.652676 1.659332 -1.879679 2.002271 -2.323159 2.145966 -3.256945 -2.021729 0.129852 -1.430864 -0.538929 -1.034632 0.094482 0.669499 -0.018943 -0.028264 -0.545757 -0.445791 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_pop_back_aux() = 0.346588 3.344740 2.819312 -1.487122 2.723927 3.741511 0.393076 -0.006894 -0.757246 -0.852908 -1.000674 -3.328206 -3.338328 2.186538 -0.495722 -0.724625 3.327200 -0.453760 -0.427634 0.046135 0.098302 1.320369 3.233406 3.091053 -3.193131 1.308334 1.128438 0.642851 -0.889788 3.787794 -2.304535 -4.204594 -0.110142 1.576097 1.202131 -0.079812 -1.277545 -2.731265 -0.761318 -4.740892 -0.446536 2.567807 -1.601449 -0.406104 1.009088 -0.069927 5.863861 1.434499 -0.388840 -0.362262 0.736144 1.311192 0.861955 -0.092607 1.482909 0.032065 3.346827 -0.133781 -1.138305 0.042173 -0.381821 -0.747433 -1.631330 2.784345 2.422259 0.496008 -1.243806 -1.094128 -0.301218 -0.237509 -1.483611 1.977924 1.938131 3.527605 1.138865 1.182925 1.190156 -1.180303 0.769769 -2.096444 -2.828153 -2.212617 1.076772 2.557424 0.722394 -2.560149 3.882108 -0.773064 1.463339 0.386258 4.648732 -2.112132 -0.323229 -1.626181 -1.520673 0.516996 -0.528322 0.383747 -1.294828 -1.560290 -2.346685 -2.104760 0.968368 -0.204533 -1.791968 1.769532 -0.386493 1.718741 -1.867791 0.030916 -2.839159 -0.145053 0.265922 -4.207428 -3.029676 0.401968 -0.589267 0.973261 -1.061173 -2.720902 1.067991 1.541098 -1.479891 -0.864002 -2.277114 3.429578 2.040209 -0.536772 0.795890 0.270665 2.634672 1.999736 1.464143 -0.503888 -0.133832 -0.057395 -0.156693 -0.847041 -0.374843 0.806306 -1.578384 -1.088108 -0.126826 2.205495 -1.461624 0.971802 -3.497447 -1.848493 1.030112 8.466486 -1.947530 1.783226 -0.430624 -3.606214 2.331349 -0.089640 -2.864866 -0.763915 1.185877 3.771193 -3.306243 -1.120486 2.189152 3.689538 1.102377 -1.909503 2.453437 0.168705 -1.058654 -1.630009 2.432116 0.027969 0.690176 -1.465782 -0.971237 1.981358 5.383900 -1.090455 -6.155670 0.708270 0.351775 1.620682 0.429039 0.349014 0.013713 -0.231614 1.487548 -0.728775 2.093442 2.864980 -5.571688 2.581855 0.577472 -3.401860 3.763184 -0.786182 -0.605926 1.468679 1.139982 3.472016 2.357197 1.168577 -1.206901 -2.259426 -2.515860 -0.503432 0.824221 1.343260 -2.124809 2.415955 0.711680 -3.255210 -1.903646 -3.758799 -0.329863 -0.916524 -3.539483 0.763207 -0.278346 -5.746635 4.217647 1.586144 -0.300708 -0.674670 -2.044981 0.371907 -2.310492 -3.429393 0.484330 -1.309810 -1.955366 0.728686 -1.690487 0.691049 1.701583 1.988589 -3.183832 -3.445509 2.561231 1.066904 2.642600 2.040941 1.763287 2.026947 2.875721 -1.377507 -0.740281 -3.029121 4.001740 0.540659 -1.547963 -0.130627 -2.462074 1.474557 3.422593 -1.266318 -0.477290 -4.060479 1.392134 -1.161661 -0.057611 1.111068 -1.282004 -1.966578 -0.733595 1.682019 0.187064 -1.194507 -2.494799 -0.933400 -2.011464 -2.299838 -0.007359 -2.363324 -0.677123 3.038349 -2.039693 -2.463419 0.629993 -0.936672 -1.159989 0.244382 2.008744 1.424296 -2.204058 2.843233 -2.538979 2.589532 -3.500429 -2.526390 0.756388 -2.587028 -0.867867 -1.738765 -0.392806 0.402106 -0.313389 0.003695 -0.482280 0.242089 +PE-benchmarks/magic-square.cpp__generateSquare(int) = -4.093912 -4.995596 -1.965620 -6.529632 3.438395 3.962091 2.282338 -5.966247 -8.385306 -1.860110 4.063829 -11.584492 -4.672770 8.910066 -3.285814 6.148097 10.845546 0.396186 -4.292130 -4.566695 6.528571 -0.330195 12.190826 13.841059 -7.712080 -0.371810 -0.936656 4.114156 3.129789 -2.436573 4.266461 -4.240834 1.619952 -6.835664 1.120917 -2.558163 -2.170568 4.101181 7.560781 -13.559116 -0.832098 3.147791 3.025492 0.481862 0.416487 5.523559 5.881002 7.136089 -0.253287 7.210266 6.356813 -1.325343 4.795105 -0.112626 1.806949 -1.171734 1.504488 0.552506 -0.886342 -0.863845 -2.288596 0.404903 1.475833 9.177784 10.849693 0.217004 -5.223899 2.182677 4.442786 3.156903 3.074130 7.551886 -1.166725 2.691925 5.218133 -10.357446 0.819483 -17.273710 3.202786 -15.581805 -6.159254 2.177035 7.838233 2.140752 3.431785 -0.215292 13.157617 -0.120226 -5.920118 9.590236 9.513938 -5.163527 -2.066718 -1.236528 -4.815701 0.457586 -2.844497 3.643683 4.572339 7.003400 -7.916463 -3.193406 0.381858 -0.067203 -4.747626 -3.880812 0.128706 5.788871 -5.501011 -3.923806 -2.260766 7.631581 0.993870 -13.806452 -3.232812 -7.097427 1.317165 1.179915 -7.342258 -4.756519 3.239369 -0.418830 -3.155116 -0.984545 -3.391243 5.178210 5.965877 2.225084 -1.521409 6.196733 2.108024 11.440703 -0.608122 -6.039483 0.971364 2.825918 -1.224147 4.522594 -4.528657 -2.275893 5.312542 -7.322091 2.582920 1.478233 -4.441860 -3.815508 3.786354 0.047744 -1.696042 25.666998 -2.021538 10.857428 9.027131 -5.646422 4.011538 -3.239083 3.466888 3.862558 5.526395 2.631119 -10.161233 -7.320976 7.975563 12.803967 4.394827 -9.106224 -2.241436 4.695844 0.883746 -2.041441 4.900720 0.942768 -0.332761 -2.855759 -0.650128 5.334417 14.792127 -3.734684 0.241086 0.310060 6.768195 0.206756 -7.779859 -1.170707 -7.780822 -0.171841 3.337018 4.283797 4.888982 9.492841 -15.120335 7.633004 0.623170 2.746563 6.758623 3.705582 -7.851402 -12.737178 -3.060092 2.497603 6.885555 -1.539931 -1.456396 2.606188 -10.257658 0.932259 2.540486 1.364147 -6.693937 8.878335 -1.263399 -2.330692 -2.020737 1.958740 -3.942877 -2.044857 -2.614755 7.293588 1.269694 -9.914951 5.938307 1.325254 -4.503780 -0.399608 -2.710146 7.613491 -6.502531 -6.482511 4.222491 -3.895871 -5.270276 -4.201636 -2.477959 2.338183 1.844369 3.516936 -7.871299 -6.733254 9.545460 -4.576667 11.138196 4.744061 -3.452192 5.072340 -3.749770 -4.965318 -4.580650 -5.818740 1.105830 2.009164 -5.729834 -2.692968 -1.797451 5.837377 6.027422 -0.030701 -6.182905 0.402924 8.967611 -6.336651 -1.779848 2.004292 0.788463 -5.684149 4.637432 3.927434 -7.557889 3.799255 -7.326937 -1.642810 -5.871589 -3.838890 7.637037 -1.045696 3.167437 -1.975066 -1.353090 1.789881 4.309306 4.336529 0.495587 3.913187 11.778562 6.910350 -0.769716 -1.778643 -11.640250 6.135958 -8.544477 -7.817770 0.632213 2.178185 -5.502565 -2.239889 -1.113287 7.731000 5.848596 -6.727398 -6.472598 5.632764 +PE-benchmarks/magic-square.cpp__main = -0.058224 -0.005826 0.207918 -0.108451 0.276875 -0.079774 0.178512 0.133530 -0.387569 -0.311209 0.001911 -0.368628 -0.374517 0.465410 -0.041060 0.169128 0.674341 0.291349 0.005639 -0.202135 0.137030 -0.465099 0.566079 0.596028 -0.377245 0.128544 0.002836 0.181172 -0.036601 0.429312 -0.142382 -0.386497 0.252920 -0.194374 0.175583 -0.379511 -0.081478 0.083852 -0.074366 -0.837903 0.012612 0.260362 0.141389 -0.028597 0.031876 0.455840 0.477875 0.305486 -0.050898 0.449084 0.140432 -0.156426 0.201800 0.124504 0.214636 0.155697 0.183398 -0.090976 -0.399922 0.162598 -0.133190 -0.661660 -0.060244 0.272876 0.480790 -0.113436 -0.100951 -0.012067 -0.135652 0.113214 0.179095 0.154296 0.196327 -0.078102 0.300853 -0.308731 -0.044918 -0.678380 -0.133289 -1.394949 -0.428037 -0.244483 0.622010 0.103100 0.113231 -0.067656 0.531329 -0.071342 0.062175 0.154698 0.565837 -0.403617 -0.248999 -0.144936 0.001518 0.149665 -0.241809 -0.136030 0.345148 -0.051404 -0.380756 -0.233667 0.466255 -0.004834 -0.181807 -0.058462 -0.079241 0.448252 -0.676549 -0.284746 -0.612160 -0.029913 0.052240 -0.523025 0.279036 0.034067 0.250609 0.339441 -0.242142 -0.203859 0.245286 0.159520 -0.141352 -0.129389 -0.291508 0.509933 -0.045822 0.039404 0.191251 0.184372 0.070007 0.409557 0.490238 -0.182145 -0.041137 0.218326 -0.223480 0.101148 -0.207164 -0.275303 0.145044 -0.432207 0.051999 -0.040226 -0.335748 -0.069023 0.052448 0.042172 0.155310 0.595297 -0.087780 0.339939 0.156355 -0.383499 0.355641 -0.121062 -0.013683 0.110028 0.447971 0.145757 -0.220898 -0.286982 0.152234 0.515070 0.297738 -0.471193 -0.225890 -0.154452 0.174449 0.099130 0.179617 0.145016 0.166107 -0.302484 -0.029394 0.010555 0.797161 -0.261342 -0.326349 0.051120 -0.069461 -0.059616 -0.608603 -0.040965 -0.164301 -0.018213 -0.139870 -0.038027 0.067395 0.497066 -0.922906 0.497495 -0.312652 -0.161837 0.389366 0.040669 -0.150045 -0.771316 -0.097077 0.256088 0.615988 0.191962 0.020179 0.068115 -0.428068 -0.056673 -0.044444 0.213362 -0.186192 0.331384 -0.059931 -0.343995 -0.186958 -0.253937 0.047140 -0.142926 -0.062326 0.209264 0.411537 -0.917624 0.335878 -0.072708 -0.251803 0.107167 0.217083 0.224731 -0.373259 -0.502938 0.134525 -0.201990 -0.490905 -0.290182 -0.130511 0.167014 -0.096561 -0.273616 -0.000400 -0.411059 0.501810 -0.086783 0.356306 0.251159 -0.051189 0.616233 0.388807 -0.378856 -0.122259 -0.057189 -0.011147 -0.574504 -0.001038 0.012788 -0.192361 0.316936 0.563462 0.203655 0.003055 -0.092257 0.549389 -0.408860 -0.196121 0.450523 0.125404 0.036954 0.418306 0.474273 -0.495514 -0.160524 -0.306623 -0.099224 0.004762 -0.167008 0.206873 -0.390963 0.036256 0.132765 -0.023006 -0.203786 0.181447 -0.008257 -0.099798 -0.186856 0.626661 0.688985 -0.430796 0.242683 -0.292229 0.200639 -0.480056 -0.240311 -0.112815 0.357644 -0.275464 0.059037 0.139261 0.171801 0.083488 -0.288558 -0.256452 -0.019001 +PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -5.892890 -5.665771 0.226987 -12.258521 6.925248 12.486809 3.571705 -9.887541 -13.726524 -5.396058 5.783496 -18.417586 -8.314774 14.984905 -6.434642 10.463593 17.272726 -0.369799 -8.093103 -4.238995 11.291839 1.364807 20.864868 21.277452 -13.772648 0.450829 -1.714140 9.124434 4.558579 2.637030 6.319147 -8.747757 2.721166 -10.573246 0.213330 -5.123009 -4.368226 4.986062 9.563619 -23.097969 -1.563725 9.689479 -2.181240 0.384863 2.580072 1.643665 12.161796 11.697285 0.732385 11.725829 8.270595 0.752984 7.904628 0.001624 4.210099 0.051368 4.186316 -5.035102 -1.732179 -2.689734 -4.559959 -2.653202 1.908950 15.971627 16.638791 -0.436862 -8.370607 3.484209 4.746528 3.973673 5.405610 13.277500 -4.388492 6.282149 8.584136 -15.652236 4.556338 -18.066232 5.239776 -16.833482 -10.913166 2.392993 11.192009 11.702685 7.320912 -2.646630 22.587175 -4.305398 -8.971536 15.572950 15.890433 -10.070847 -2.233403 -3.401833 -7.096244 -0.265564 -5.756265 2.177602 -1.301817 10.403229 -12.771242 -4.505130 0.631795 1.707964 -8.687804 -4.846472 -1.155353 11.808003 -14.347671 -8.936439 -3.629873 13.067189 -1.110911 -23.448189 -12.270736 -9.639578 4.023871 1.809287 -10.453907 -10.094860 7.038634 3.134321 -2.516118 -3.439761 -5.047411 8.810378 10.106557 3.708996 -2.541813 9.930263 3.714040 20.638481 2.380581 -6.755322 1.431301 4.230829 -0.098793 7.546437 -3.253304 -2.000747 0.036322 -12.166576 -1.662936 8.163940 -7.190774 -4.274615 -1.854096 -0.043242 -2.406803 49.835691 -4.266086 17.579767 14.860545 -12.179746 2.836479 -4.419917 3.457178 5.348430 6.491359 7.959821 -21.667368 -11.058726 14.013466 21.426080 7.177649 -13.612727 2.275054 6.817935 1.582272 -2.836251 8.367447 1.304106 2.022067 -8.408656 -1.883907 7.872620 27.309149 -6.531891 -4.963363 2.909047 5.397085 -1.739866 -10.960963 -1.661335 -8.380706 -0.837062 8.447334 3.820101 6.345089 15.995027 -18.212397 13.513611 0.241816 0.576733 13.078981 4.491203 -11.154423 -13.619746 -7.481616 5.579174 11.416071 -3.876807 -1.524180 2.399603 -17.152902 1.658665 5.029068 2.315648 -10.244998 15.626135 1.042833 -6.318790 -4.861278 1.381317 -4.640328 -2.723019 -6.790087 11.535916 -0.621129 -14.442696 11.351264 3.908934 -6.903768 1.244639 -3.205109 15.353979 -11.442196 -13.270134 9.425045 -6.384718 -11.958721 -4.624224 -5.134995 4.776160 9.032000 2.502384 -15.344514 -9.798170 14.448911 -5.402797 18.011840 8.606407 -4.014058 10.192167 -3.675463 -6.813038 -6.558817 -12.752294 3.897144 3.487900 -8.689085 -8.757079 -4.634002 11.106409 10.932576 -0.999647 -10.095909 -1.573574 15.187600 -11.048461 -0.935378 3.588764 2.882938 -12.209674 5.591544 7.003825 -9.777598 5.527578 -10.629259 -1.911675 -11.688103 -5.900165 13.054920 -2.110087 5.137228 -0.117443 -1.418625 -0.627435 4.962845 6.211307 0.062225 5.789397 19.271320 11.005694 -1.211693 -1.453016 -17.776775 11.004797 -15.058594 -12.973973 1.325987 2.425846 -6.981206 -4.040252 -1.626770 13.529746 12.742065 -10.490293 -6.955327 7.347592 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::queue >, void>() = 0.058933 0.212654 0.413247 -0.235060 0.277973 -0.016459 0.085676 0.272721 -0.328630 -0.377531 -0.096736 -0.389611 -0.470133 0.371374 -0.089051 -0.213233 0.619521 0.207681 0.030493 -0.233412 -0.036838 -0.171014 0.478424 0.568025 -0.507299 0.183988 0.015920 0.259964 0.027783 0.522403 -0.037535 -0.542479 0.023614 0.287266 0.318779 -0.288033 -0.112637 -0.112416 -0.398729 -0.906963 -0.014553 0.424464 0.038196 0.005877 0.202086 0.433680 0.640796 0.240591 -0.135322 0.287343 0.216648 0.168651 0.170616 0.022763 0.118821 -0.044305 0.331163 -0.245704 -0.292606 0.218577 -0.032706 -0.524705 -0.154162 0.350994 0.441678 -0.064020 -0.122077 -0.276792 -0.031301 0.107040 0.067971 0.188113 0.267023 0.161942 0.241647 0.078864 0.032166 -0.554146 0.119596 -1.250344 -0.441629 -0.369505 0.733960 0.403707 -0.173752 -0.232534 0.548587 -0.064428 0.232332 0.261612 0.534177 -0.104663 -0.156975 -0.206594 -0.164173 0.278192 -0.151449 -0.106724 -0.002526 0.096664 -0.311607 -0.135672 0.265531 -0.174620 -0.241739 0.259946 -0.110362 0.360923 -0.672995 0.061159 -0.580290 0.136341 0.272267 -0.512589 -0.066260 -0.039040 0.188171 0.229924 -0.153417 0.030338 0.149019 0.064735 -0.212803 0.189180 -0.681885 0.512794 0.004411 -0.072271 0.131962 0.157376 0.187649 0.102651 0.256850 -0.179202 -0.084874 0.251894 -0.083446 -0.114073 -0.223792 -0.042577 0.101213 -0.244815 0.121942 -0.094581 -0.291392 -0.211051 -0.479070 -0.198442 0.213858 0.760576 -0.140727 0.275215 0.049612 -0.323928 0.256151 0.057056 -0.171013 0.082904 0.368181 0.288722 0.017254 -0.194978 0.082555 0.510615 0.227492 -0.234991 0.109217 -0.031329 -0.062538 0.023418 0.321538 0.019009 0.041513 -0.208644 -0.092559 0.074038 0.612396 0.075567 -0.554721 -0.105510 0.150158 0.032272 -0.056414 0.136029 0.108882 0.015748 0.074935 -0.088180 0.224153 0.440281 -1.137966 0.467454 0.008698 -0.147539 0.251729 -0.094828 -0.032651 -0.485617 0.046871 0.308599 0.596959 0.145697 -0.048057 -0.040610 -0.389885 -0.070413 0.055553 0.258661 -0.292748 0.315361 0.059406 -0.330454 -0.190129 -0.488304 -0.028863 0.079542 -0.346671 0.115457 0.232050 -1.015067 0.403929 -0.088333 -0.162348 -0.111856 -0.025714 0.087919 -0.411713 -0.421114 -0.020169 -0.154481 -0.638561 -0.206754 -0.253539 0.192347 -0.109298 0.029840 -0.143280 -0.360204 0.515138 -0.029090 0.298825 0.303864 0.005808 0.547128 0.464598 -0.193486 -0.030188 -0.203274 0.383740 -0.413172 0.028944 0.353752 -0.291049 0.114332 0.598710 -0.010634 -0.056637 -0.180640 0.467032 -0.105648 -0.235636 0.250302 -0.219690 0.086788 0.444856 0.338632 -0.374456 -0.184331 -0.481468 -0.047141 0.052535 -0.156073 0.204186 -0.418221 -0.007608 0.307878 -0.094896 -0.420753 0.206962 -0.119478 -0.243667 -0.082094 0.544408 0.535588 -0.341751 0.550232 -0.306173 0.267890 -0.478084 -0.189287 -0.232453 -0.065460 -0.105575 0.011995 -0.169045 0.101717 0.066614 -0.053972 -0.227256 0.176004 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::size() const = -0.025566 0.191729 0.256441 -0.155261 0.260568 0.124800 0.087510 -0.011867 -0.207953 -0.270447 -0.015011 -0.448661 -0.414658 0.330932 -0.110772 0.023132 0.462693 0.052144 -0.010584 -0.158712 0.048036 -0.116135 0.502159 0.504551 -0.434408 0.120640 0.084635 0.193720 0.033413 0.342352 -0.072034 -0.427234 0.100055 0.063303 0.173551 -0.137645 -0.080586 -0.104028 -0.085213 -0.667728 -0.052949 0.268753 0.035198 0.006199 0.087613 0.256631 0.557410 0.260631 -0.070164 0.238972 0.209025 0.055201 0.180682 0.042702 0.112801 -0.090351 0.314066 -0.201489 -0.213704 0.074468 -0.041073 -0.385456 -0.142464 0.357493 0.444222 -0.036374 -0.111015 -0.070186 -0.074258 0.075657 0.012334 0.240610 0.164744 0.251246 0.218471 -0.077062 0.110485 -0.475645 0.008369 -0.857316 -0.374821 -0.238057 0.388802 0.314856 0.058202 -0.096769 0.521927 0.036358 0.078518 0.146999 0.546152 -0.264352 -0.122641 -0.100075 -0.119576 0.154923 -0.190183 0.052769 -0.014371 0.060107 -0.304519 -0.195371 0.240703 -0.062014 -0.223720 0.095902 -0.094379 0.249969 -0.501638 -0.074435 -0.418108 -0.027358 0.097178 -0.553070 -0.042537 -0.019398 0.144430 0.176510 -0.132150 -0.170216 0.129270 0.093340 -0.113857 -0.036157 -0.468619 0.376408 0.141437 0.005898 0.113900 0.142078 0.220589 0.319317 0.193392 -0.134385 -0.077842 0.090916 -0.090323 0.025774 -0.131804 -0.043280 0.047068 -0.268029 0.083992 0.080247 -0.223425 -0.108253 -0.253078 -0.158871 0.127348 0.731063 -0.108715 0.284971 0.131169 -0.373419 0.194582 -0.115864 -0.152339 0.067122 0.254733 0.290315 -0.144887 -0.219079 0.217828 0.486034 0.181931 -0.277194 0.057097 0.048513 0.030749 -0.089391 0.255935 0.078079 0.043770 -0.205731 -0.063448 0.174008 0.597774 -0.091418 -0.350894 0.044910 0.063840 0.060526 -0.195152 0.028809 -0.030991 -0.012189 0.045363 0.007443 0.136511 0.403148 -0.832731 0.368318 0.019535 -0.150840 0.330986 -0.051302 -0.163173 -0.346097 0.091522 0.307432 0.345225 0.090969 0.019254 -0.067346 -0.386294 -0.042518 0.042694 0.161681 -0.257267 0.316658 0.042590 -0.316905 -0.249119 -0.308339 0.001810 -0.059567 -0.264969 0.181165 0.219495 -0.789708 0.405736 -0.016724 -0.198205 -0.062886 -0.098409 0.171535 -0.373351 -0.390018 0.062722 -0.266688 -0.409200 -0.140794 -0.156829 0.075885 -0.008574 0.010819 -0.203740 -0.265585 0.378578 -0.031700 0.260348 0.249129 0.083267 0.363827 0.255546 -0.232247 -0.089678 -0.125193 0.238812 -0.259549 -0.110981 0.141503 -0.205364 0.198688 0.507693 -0.022394 -0.070496 -0.128444 0.319080 -0.203774 -0.186605 0.217520 -0.020556 -0.109664 0.239221 0.253563 -0.228548 -0.092576 -0.359688 -0.090706 -0.099380 -0.252162 0.159443 -0.295924 -0.003319 0.264014 -0.128953 -0.267464 0.195791 -0.051119 -0.119283 -0.048355 0.443444 0.404751 -0.273019 0.293988 -0.362841 0.205956 -0.468219 -0.298697 0.001484 0.007608 -0.135169 -0.084763 -0.059997 0.134267 0.089976 -0.129559 -0.191048 0.092978 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::front() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::pop() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::~queue() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/aho-corasick-algorithm.cpp__findNextState(int, char) = -0.935440 -0.667051 0.136148 -1.578930 1.018523 2.124117 0.638827 -1.730732 -1.872206 -0.848843 0.898365 -2.867658 -1.324599 2.320603 -0.864545 1.917847 2.654171 -0.036305 -1.238584 -0.611738 1.530899 0.265755 3.384175 3.340488 -1.893511 0.142922 -0.108915 1.190537 0.564259 0.343472 0.587174 -1.327533 0.910225 -1.883791 -0.316974 -0.584882 -0.699111 0.524483 1.631946 -3.347053 -0.187173 0.974483 -0.453818 -0.087008 0.123297 -0.059601 2.026883 1.806881 0.584972 1.716329 0.992684 -0.131117 1.118643 0.158292 1.013215 0.124393 0.668389 -1.229497 -0.414924 -0.548454 -0.652446 -0.697796 -0.087486 2.324493 2.382577 0.025517 -1.200216 0.689328 0.367203 0.480802 0.711899 1.874811 -0.618028 1.096264 1.110519 -2.694636 0.835851 -2.120736 0.253643 -2.248661 -1.807121 0.378192 1.492758 1.682032 1.534322 -0.143121 3.264981 -0.639364 -1.331454 1.735428 2.688826 -2.158039 -0.493797 -0.171427 -0.440622 -0.107921 -1.006524 0.609866 -0.209815 1.047670 -2.030193 -0.628655 0.657867 0.464097 -1.297274 -0.879375 0.010841 1.846276 -2.236670 -1.611411 -0.678203 1.457418 -0.385707 -3.559961 -1.456463 -0.978364 0.969356 0.486148 -1.738411 -2.044594 1.163287 0.664076 -0.156097 -1.112412 -0.519572 1.244283 1.566810 0.635975 -0.148449 1.653778 0.773133 3.805508 0.708084 -0.823083 0.359728 0.379032 -0.126506 1.315729 -0.109296 -0.508141 -0.661565 -2.031034 -0.231477 1.660666 -1.186765 -0.348832 -0.217262 0.413000 -0.373831 7.385594 -0.613336 2.635337 2.349563 -2.045286 0.232405 -1.373131 0.324945 0.573041 0.867235 1.244287 -3.578019 -1.665920 2.187565 3.315002 1.173134 -2.272847 0.387396 0.782448 0.427198 -0.650686 1.244617 0.296390 0.720654 -1.382384 -0.274035 1.510018 4.324600 -1.487741 -0.665309 0.659848 -0.070289 0.112003 -2.006680 -0.434302 -0.980934 -0.040151 1.168001 0.666749 0.696079 2.445841 -2.154547 2.046709 -0.266006 -0.265814 2.388110 0.911485 -1.871961 -1.482641 -1.058499 1.058814 1.682400 -0.481407 -0.058812 0.246438 -2.664518 -0.005400 0.724022 0.232075 -1.422667 2.232902 0.418097 -1.165056 -0.826567 0.192182 -0.291410 -0.615676 -0.885259 1.826996 0.049948 -2.466301 1.878530 0.828809 -1.200279 0.389272 -0.619581 2.568454 -1.785980 -2.086556 1.524919 -1.180805 -1.716342 -0.406531 -0.659917 0.597487 1.338755 0.334807 -2.201939 -1.210402 2.159998 -0.503869 2.720729 1.261412 -0.384903 1.608651 -0.902458 -1.270064 -0.804655 -1.953219 0.483434 0.248066 -1.551213 -1.398836 -0.719221 1.923683 1.806204 -0.029957 -1.532422 -0.164838 2.018298 -2.423042 -0.143702 0.795297 1.322110 -2.027102 0.676861 1.192811 -1.428737 0.806922 -1.275358 -0.688713 -1.799491 -1.298306 1.797886 -0.324820 0.903673 0.108357 -0.258170 -0.026922 0.783018 0.732199 0.243874 0.829005 2.647336 1.947587 -0.369053 -0.485005 -2.747667 1.578519 -2.322986 -2.241887 0.726078 0.784121 -1.196485 -0.813156 -0.062598 1.957320 1.779396 -1.885861 -1.054747 0.892640 +PE-benchmarks/aho-corasick-algorithm.cpp__searchWords(std::__cxx11::basic_string, std::allocator >*, int, std::__cxx11::basic_string, std::allocator >) = -1.889905 -1.763596 -0.466562 -3.601159 1.446870 2.321008 1.011559 -2.449172 -4.136015 -2.933087 2.197921 -6.571239 -3.717137 4.726249 -2.184128 2.157929 5.573515 -0.260514 -2.240145 -2.065208 3.192641 0.433145 6.603047 7.240519 -4.901370 -0.131727 -0.276743 2.804966 2.322844 -0.535868 3.381878 -3.250049 0.927916 -2.259543 0.960764 -1.124647 -0.944239 1.280669 2.099444 -7.344681 -0.684142 3.418787 0.349710 0.217683 0.760720 2.581419 3.996180 3.939186 -0.693040 3.480613 3.596284 0.407611 2.288172 -0.191338 0.427130 -2.098123 0.617130 -1.353091 -0.691254 -0.459101 -0.916124 -1.378136 -0.018090 5.429203 5.843859 -0.222406 -2.357850 0.801075 1.672058 1.690094 1.646835 4.075441 0.111949 2.042059 3.244825 -3.946768 0.511624 -8.023791 1.815535 -8.757867 -3.526849 0.420587 5.204096 3.641501 0.979129 -1.372519 7.075051 -0.045608 -2.650007 6.229843 5.612318 -2.133156 -1.104411 -1.254761 -2.551291 1.126200 -2.470131 1.581449 0.535196 3.922059 -4.190077 -1.193532 -0.400339 -0.247039 -2.804357 -1.536013 -0.436049 3.342578 -4.664408 -1.226902 -1.691231 3.802260 1.405452 -7.953213 -3.156813 -3.301370 1.119384 0.752316 -3.348741 -1.535736 1.532780 -0.275918 -1.039083 -0.122721 -3.066619 2.939339 2.920697 1.459078 -0.632153 3.572783 1.877321 5.622989 0.046141 -2.556349 0.127768 1.198673 -0.294917 2.369186 -1.823804 -0.784867 2.633771 -3.500678 0.711922 1.192971 -2.405216 -3.071012 -0.222690 -0.923474 -0.525206 14.502371 -0.799811 5.640737 4.977723 -3.332784 0.813206 -1.607517 0.989277 1.964867 2.640390 2.417390 -4.278266 -3.529498 4.394810 7.121092 2.261687 -4.140643 0.630113 3.105041 0.563869 -1.640972 2.881738 0.558319 0.464227 -2.327260 -0.560019 3.717151 7.075883 -1.425695 -0.229709 0.122541 3.726521 0.356996 -3.018382 0.020455 -2.323021 0.178524 2.633632 1.828302 2.340247 5.260549 -7.540800 4.174300 1.340239 1.463758 3.021418 1.522557 -4.131713 -5.976548 -0.940521 1.923326 3.354318 -0.783044 -0.013211 0.969934 -5.671486 0.300131 1.675350 0.857564 -3.354256 4.767886 -0.195602 -0.854847 -2.194943 0.017884 -1.773410 -0.300105 -2.172001 3.762555 1.132073 -5.050566 3.971410 0.150966 -2.680460 -1.501326 -1.756292 4.386084 -4.553921 -4.127406 2.104565 -3.178217 -5.323119 -2.381978 -1.715806 1.234924 1.777120 1.148863 -4.113986 -2.870913 5.582266 -1.941834 5.667739 2.676097 -1.215489 3.739212 -0.695107 -1.924311 -2.152494 -3.450726 1.925095 0.138532 -3.272199 -0.883801 -1.070640 2.783154 3.848355 -1.002188 -3.563430 0.357119 4.505305 -2.893848 -1.650100 0.925939 0.810024 -3.061148 3.195583 2.022222 -3.888315 1.875386 -4.674798 -0.640894 -2.993364 -2.679242 3.927296 -0.871072 1.717624 0.332762 -0.561154 -0.334368 2.113758 1.943232 -0.389011 1.828150 5.953282 4.454470 -1.087672 -0.062127 -6.652449 3.497153 -5.317876 -4.890555 0.584389 0.452497 -1.817668 -1.297139 -1.035920 3.821781 3.919308 -3.383066 -3.486804 3.689358 +PE-benchmarks/aho-corasick-algorithm.cpp__main = -1.600807 3.281883 6.107628 -4.315571 7.779896 3.363142 2.807728 2.502977 -4.949983 -6.942966 -1.937813 -6.468228 -13.130400 7.922648 -1.445184 1.329766 10.215142 -0.017897 -0.186852 -5.375156 6.775694 -8.196831 11.645904 9.808880 -13.699929 2.449520 3.013192 7.809473 2.194272 9.688654 -0.216619 -6.858687 -0.120431 -0.347659 10.684921 -4.696445 -1.231000 -1.010801 -4.900436 -18.457579 -3.708221 10.459716 -0.308443 1.888150 2.634593 9.836328 12.065550 7.229187 -5.615650 6.028110 6.367786 -2.319606 6.687044 0.416770 0.290471 0.252359 5.113580 0.293038 -5.205294 2.848542 -2.130736 -12.330918 1.934450 8.573325 12.763941 -4.891803 -3.291176 1.731779 -0.933728 2.736926 -0.126902 8.764094 3.969203 1.588230 11.514022 -5.677877 -0.506092 -15.643997 3.300768 -24.682369 -10.696394 -9.897940 8.463974 6.033283 2.977738 -6.227439 17.887219 -0.658742 1.044054 7.069010 11.500184 -6.104706 -0.899061 -9.382613 -3.385668 1.986444 -5.604159 -3.632968 4.986130 0.904759 -7.561707 -5.004136 4.682987 -2.039310 -6.446335 -1.819500 -7.493260 9.961417 -10.732271 -4.616991 -14.879196 2.162439 0.398624 -14.784464 1.289997 -2.093752 0.961342 3.466924 1.170536 -2.225841 3.429519 5.496868 -3.026218 -2.685195 -8.491941 14.346209 6.027513 -3.389312 3.974105 6.679618 1.569806 5.008091 11.763855 -1.306009 -7.429473 6.917241 -4.499648 0.519696 -4.418086 1.216663 7.531556 -7.023510 -4.197177 0.276734 -3.176257 -0.727624 -2.034227 -6.949617 4.798530 23.586494 -2.812659 5.307867 0.970364 -7.838965 12.889892 2.125707 -2.820605 5.741293 8.615501 5.886670 -11.990200 -6.300998 5.549263 12.022303 3.127121 -9.709457 -2.807786 0.003991 1.696624 -3.076614 5.284896 3.763616 1.562973 -3.700683 -0.651728 -0.500361 16.617204 -6.192315 -10.871725 2.763788 4.343489 -4.157398 -11.942203 -0.514992 -5.566267 -5.634757 -0.741162 -0.294916 3.837427 10.422616 -18.804186 9.191440 -1.281810 -4.852946 9.909502 -4.804003 0.632250 -17.244345 0.928902 6.152490 9.458449 0.683648 -2.466890 -3.141870 -11.203294 3.514515 0.605464 5.679489 -6.279456 10.564090 -5.447668 -5.025066 -5.993835 -8.340718 -4.332278 -1.747466 -4.846529 2.633482 4.819044 -15.901910 9.320348 -3.702780 -4.605691 2.188290 2.236569 5.507765 -7.046822 -11.607904 4.279457 -2.377627 -11.129097 -8.618026 -4.325761 4.513947 0.409066 -5.826450 -6.685892 -13.844641 10.622080 -3.626739 7.669420 6.154357 2.025015 13.522565 11.670694 -9.453295 -5.408352 -6.186432 2.649074 -3.782612 -1.501076 -5.963208 -3.956667 5.363404 12.289969 0.496688 2.800113 -5.812059 12.455495 -8.196094 -6.080868 5.872599 -2.172880 -1.171254 7.070922 7.537015 -5.187767 -5.371359 -11.812873 0.888083 -2.226061 -4.516848 4.993516 -10.790105 -1.511922 6.648497 -2.753645 -5.201771 4.399916 1.847923 -3.346943 -6.579948 16.097834 13.441468 -10.199879 4.375431 -8.097032 7.349734 -10.287296 -2.920604 -4.536755 2.188288 0.695588 0.252701 3.711106 4.010364 4.409867 -6.825334 -4.489929 -3.207598 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.129103 1.034879 1.025536 -0.864980 2.233490 0.957810 0.460824 0.091281 -0.599626 -1.541747 -0.531574 -1.521446 -2.696167 1.434493 -0.780282 0.251771 2.135884 -0.271794 0.544534 -1.106974 1.165236 -0.871248 2.842689 1.783821 -3.039150 0.398398 0.846137 1.466797 0.503991 1.921002 0.272320 -2.016911 0.515651 -0.184574 1.699754 -0.936773 -0.245482 -0.568930 -0.706045 -3.422592 -0.822939 1.384917 -1.084250 0.930457 0.770201 2.291611 2.893340 1.409432 -1.488070 1.759903 1.317729 0.139263 1.376175 0.305586 -0.585307 -0.390433 0.969048 -0.390729 -1.031062 0.527456 -0.782816 -2.328598 0.061586 1.811853 2.747820 -0.915903 -0.669498 0.651195 -0.406324 0.512862 0.092709 2.050223 1.147956 1.086733 2.377567 -1.008600 -0.397773 -3.432296 0.025697 -5.133861 -1.868944 -2.256326 1.078701 0.903451 0.509441 -0.646284 3.366401 0.510706 0.521685 1.789024 2.512222 -1.184822 -0.139506 -1.771759 -0.578670 0.233522 -1.070619 -0.309813 0.590623 0.464505 -1.362518 -1.461832 0.458575 -0.762381 -1.189848 -0.806775 -1.579038 1.812295 -2.647516 -0.865566 -3.133244 0.137725 -0.266365 -3.291038 -0.543215 0.060344 1.290898 0.778485 0.670546 -0.601917 0.708357 1.332137 -0.489563 -0.433295 -0.662988 2.542997 1.597349 -0.150994 0.586277 1.442103 0.474003 1.576775 2.451717 0.067110 -1.575591 0.971665 -0.423262 -0.052134 -0.954284 0.610235 1.401655 -1.540421 -0.047911 0.792880 -0.644257 -0.730657 -0.415722 -2.020610 1.153299 4.684123 -0.782563 1.057854 0.352907 -2.061971 1.201918 0.124934 -0.354088 1.075483 1.510805 1.797373 -1.874121 -1.150445 1.210570 2.062905 0.501785 -2.442208 -0.180599 0.075507 0.559230 -0.602495 0.631915 1.118491 -0.141491 -0.743407 0.185834 0.064087 3.365265 -1.217198 -2.424536 0.577887 1.252518 -0.602187 -1.802835 -0.181217 -0.778861 -1.090594 0.856805 0.109499 0.211955 2.031347 -4.173558 1.585589 0.322075 -0.498051 1.325206 -0.424121 0.060055 -2.726431 0.325176 1.470092 1.153872 0.423759 -0.045515 -0.729089 -1.990238 0.951458 0.474711 1.401453 -1.003560 1.917083 -0.623692 -1.340886 -1.495125 -1.205291 -0.482835 0.009868 -1.081977 0.727448 0.820168 -4.317688 1.744743 -1.012077 -1.328942 0.495127 0.054490 1.961729 -1.625971 -2.319752 0.917925 -1.379829 -2.477483 -1.505597 -0.616502 0.515895 0.594537 -0.296149 -1.539093 -2.696448 1.681925 -0.614344 0.899875 1.512195 0.844534 3.158117 0.376763 -2.026533 -1.463439 -1.442238 1.276783 -0.488172 -0.146082 -0.777302 -0.648826 1.111488 2.981841 -0.160523 0.234554 -1.281155 2.042018 -2.223824 -0.896118 1.350564 0.598775 -0.524630 1.540063 1.391266 -0.784680 -1.033423 -1.745327 0.505522 -0.549063 -0.885667 0.797816 -2.498021 -0.582840 1.451406 -0.435671 -1.420881 1.001506 -0.003401 -0.284798 -1.330679 2.711614 3.461883 -2.276229 0.917853 -1.437438 1.528258 -2.638783 -1.288024 -0.562289 -0.274087 0.572280 0.177472 0.297714 0.814303 0.931574 -1.249896 -0.933770 -0.508055 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::~deque() = 0.107745 0.271634 0.636155 -0.201671 0.618841 -0.213580 0.047607 0.807174 -0.318424 -0.980952 -0.306132 -0.604814 -1.403779 0.476858 -0.170416 -0.441348 0.715004 0.074367 0.210668 -0.584904 0.072178 -0.335570 0.799659 0.451505 -1.181663 0.196346 -0.038039 0.959076 0.429835 0.695268 0.495718 -0.705675 -0.035386 0.744761 0.930428 -0.327013 0.186296 -0.111570 -1.285801 -1.389153 -0.342902 1.073652 -0.154428 0.438323 0.414274 1.420958 0.841123 0.520984 -0.638145 0.664647 0.656729 0.030744 0.535827 0.092888 -0.622092 -0.670699 0.168074 -0.738610 -0.677973 0.454770 0.096615 -1.635359 -0.278893 0.447722 1.003487 -0.554418 -0.183447 -0.052285 -0.088380 0.346900 0.177502 0.517839 0.725794 0.086205 0.961986 0.572347 -0.344246 -0.850019 0.300090 -2.638655 -0.732049 -1.191673 1.438623 0.997571 -0.633661 -0.637116 1.252110 0.229896 0.301850 0.892194 0.788658 0.040607 -0.198535 -0.969018 0.043058 0.654403 -0.650112 -0.428828 0.221091 0.729863 -0.275041 -0.027449 0.022438 -0.814581 -0.461844 0.233205 -0.906065 0.783686 -1.427122 0.244146 -1.560832 0.305230 0.697568 -0.961402 -0.140337 0.281641 0.313520 0.361225 0.568796 0.824738 0.085795 -0.017244 -0.175065 0.617754 -1.327514 1.053684 0.178741 -0.424433 0.420046 0.945861 0.282337 -0.167683 0.645482 -0.047820 -0.969059 0.810758 -0.054193 -0.160479 -0.521083 0.282929 0.771644 -0.536656 0.164189 -0.346783 -0.233737 -0.684831 -1.332399 -0.798901 0.604683 0.624687 0.064021 0.032313 -0.036695 -0.238763 0.590981 0.236648 -0.211145 0.542192 0.419901 0.423387 0.509592 -0.318292 0.123430 0.694262 0.179415 -0.529337 0.358918 0.070521 0.299182 -0.301174 0.387926 0.701022 -0.061307 0.087692 0.047849 -0.063757 0.605408 0.067216 -0.893952 0.035680 0.579912 -0.214985 -0.237462 0.183595 0.510302 -0.567569 0.337499 0.125859 0.072901 0.713742 -1.499008 0.641686 0.721588 0.129400 0.099577 -0.599516 0.369943 -1.199080 0.113495 0.437742 0.699152 0.197749 -0.125880 -0.246031 -0.736853 0.330017 0.348806 0.557053 -0.162746 0.490121 -0.346658 0.101508 -0.493242 -0.951150 -0.344239 0.655712 -0.515827 0.129116 0.556208 -1.703739 0.508982 -0.947026 -0.523597 -0.246577 0.105859 0.467397 -0.748496 -0.650036 0.065339 -0.434207 -1.902195 -0.938931 -0.236963 0.248511 -0.196182 -0.357449 -0.082830 -0.780056 1.018999 -0.217316 0.001164 0.477401 0.135793 1.221894 0.973768 -0.717318 -0.097716 -0.443456 0.668717 -0.823771 0.421919 0.684294 -0.056896 0.035066 1.124718 -0.017095 0.151416 -0.280697 0.819903 -0.305810 -1.034536 0.476533 -0.366578 0.430913 1.402711 0.550377 -0.632452 -0.506820 -1.154007 0.277587 0.290148 -0.271462 0.260251 -1.169403 -0.243655 0.890658 -0.107362 -0.902511 0.564603 -0.147778 -0.676106 -0.856163 1.463523 1.354566 -0.885723 1.079375 -0.602714 0.613899 -0.885508 -0.148791 -0.601346 -0.109206 0.476712 0.331471 0.014093 -0.044465 0.308409 -0.558586 -0.737911 -0.003141 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.042536 0.202646 0.137250 0.014529 0.261946 0.045219 0.146519 0.043450 -0.166282 -0.260925 -0.101344 -0.275340 -0.390466 0.356159 -0.000863 0.221497 0.573032 0.205335 0.058406 -0.154716 0.162289 -0.466104 0.549240 0.516521 -0.397215 0.141786 0.198008 0.150873 -0.017364 0.386131 -0.216827 -0.305618 0.284322 -0.283900 0.187103 -0.340544 -0.046032 -0.033648 -0.019005 -0.767846 -0.051349 0.100417 0.108345 -0.011992 -0.035599 0.307372 0.558357 0.288973 -0.072596 0.314782 0.107944 -0.139078 0.204804 0.136279 0.139697 0.193767 0.164828 -0.087166 -0.323029 0.105097 -0.069876 -0.681741 -0.044318 0.276554 0.467220 -0.098010 -0.058609 0.154805 -0.196458 0.037945 0.019394 0.196815 0.168328 0.054738 0.290602 -0.448646 0.008335 -0.592933 -0.209512 -1.181533 -0.410931 -0.387759 0.275637 0.025757 0.293141 0.053491 0.527802 -0.010094 0.175772 0.041743 0.586721 -0.539136 -0.182382 -0.185406 0.070418 0.140075 -0.261941 -0.068415 0.293507 -0.184974 -0.329244 -0.378065 0.513860 0.069315 -0.219733 -0.171466 -0.124811 0.357705 -0.574525 -0.384246 -0.659909 -0.295748 -0.143827 -0.531552 0.339724 0.106913 0.256911 0.311364 -0.073472 -0.426473 0.158248 0.301316 -0.027535 -0.342599 -0.156586 0.440905 0.069508 -0.053309 0.247420 0.146769 0.122563 0.528555 0.577791 -0.071190 -0.132402 0.172371 -0.287577 0.018461 -0.181839 -0.225410 0.124159 -0.450603 -0.037134 0.152328 -0.278958 0.031304 0.221666 -0.095167 0.221623 0.590196 -0.046629 0.199037 0.097632 -0.460716 0.332339 -0.206640 -0.160814 0.118672 0.396035 0.253019 -0.399645 -0.260152 0.096292 0.466488 0.231057 -0.410891 -0.297572 -0.213233 0.170509 0.019580 0.120475 0.162392 0.144400 -0.271192 -0.008523 0.075648 0.757328 -0.376188 -0.189787 0.133380 -0.139505 -0.116625 -0.732396 -0.095950 -0.281635 -0.092699 -0.195555 -0.031082 -0.004011 0.438959 -0.668305 0.414487 -0.338652 -0.252775 0.368365 -0.006837 -0.096766 -0.612998 0.097952 0.348854 0.441564 0.100642 0.093398 -0.063025 -0.418175 -0.060349 -0.034853 0.227431 -0.179097 0.331151 -0.057146 -0.379888 -0.276271 -0.123277 0.098554 -0.278989 0.006848 0.177330 0.394416 -0.769665 0.401905 -0.109554 -0.265708 0.224621 0.120588 0.222862 -0.400011 -0.508971 0.192719 -0.158183 -0.266023 -0.183318 -0.098109 0.189270 -0.042100 -0.352099 -0.049692 -0.398921 0.329423 -0.015798 0.194112 0.256901 0.128813 0.546448 0.235578 -0.421065 -0.196919 0.005742 -0.164630 -0.457895 -0.043515 -0.204594 -0.187812 0.354732 0.683113 0.157192 0.076262 -0.054184 0.436935 -0.515815 -0.216417 0.411900 0.282827 -0.052447 0.224270 0.393210 -0.360151 -0.252952 -0.234607 -0.056516 0.054206 -0.276564 0.124207 -0.500889 -0.036364 0.296191 -0.120991 -0.156024 0.243415 -0.023706 0.001308 -0.245768 0.494205 0.561322 -0.456918 0.107082 -0.257345 0.130278 -0.523223 -0.238139 -0.028978 0.399264 -0.167411 0.010519 0.233020 0.120995 0.028036 -0.257304 -0.162951 -0.244861 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::begin() = 0.036863 0.420172 0.456205 -0.148082 0.416983 0.283831 0.143694 0.163517 -0.264429 -0.324484 -0.173171 -0.561257 -0.655366 0.475978 -0.049466 -0.015843 0.773879 0.182877 0.010943 -0.151641 0.034716 -0.231736 0.704476 0.730406 -0.635751 0.257795 0.126788 0.256801 -0.072357 0.713503 -0.307077 -0.645398 0.141479 0.110151 0.337235 -0.299277 -0.164047 -0.243237 -0.259742 -1.141630 -0.079560 0.505574 0.042518 -0.025205 0.168146 0.321777 0.957479 0.348709 -0.091285 0.263288 0.154472 0.024728 0.316433 0.073465 0.228534 0.084793 0.496805 -0.192454 -0.403476 0.164019 -0.063744 -0.685235 -0.210165 0.464301 0.610990 -0.047451 -0.180503 -0.153182 -0.128275 0.041399 -0.063342 0.335676 0.323249 0.342122 0.331777 -0.029528 0.169397 -0.496682 0.015603 -1.189440 -0.617703 -0.528658 0.563651 0.462130 0.140547 -0.317534 0.786409 -0.098475 0.296903 0.085046 0.839579 -0.485559 -0.183111 -0.289827 -0.096133 0.243260 -0.247816 -0.077993 0.081039 -0.170697 -0.461537 -0.374076 0.478986 -0.056644 -0.354902 0.224994 -0.159253 0.457108 -0.685692 -0.200260 -0.810007 -0.144584 0.052615 -0.770973 -0.023891 0.092041 0.036625 0.360764 -0.158134 -0.374933 0.217806 0.250081 -0.182583 -0.154212 -0.638484 0.728678 0.160122 -0.142309 0.262403 0.197763 0.315487 0.424723 0.472383 -0.133475 -0.123447 0.227758 -0.209332 -0.083093 -0.213760 -0.087888 -0.027391 -0.421549 -0.053347 0.157627 -0.369471 0.072686 -0.453993 -0.218257 0.269525 1.150635 -0.198895 0.328405 0.047084 -0.604747 0.543496 -0.057937 -0.351036 0.054116 0.435609 0.515712 -0.448890 -0.286741 0.202450 0.722219 0.282638 -0.409275 0.084758 -0.112711 0.017806 -0.109614 0.403367 0.110535 0.172868 -0.330817 -0.088456 0.183490 1.010727 -0.252281 -0.786367 0.070430 -0.046408 0.054663 -0.404616 0.035881 -0.102097 -0.099311 -0.053759 -0.085874 0.203409 0.597352 -1.109382 0.608982 -0.111535 -0.453155 0.653626 -0.170687 -0.098115 -0.407882 0.151054 0.531753 0.644027 0.194655 -0.112941 -0.214533 -0.568580 -0.094879 0.056278 0.313476 -0.363462 0.497707 0.005496 -0.526921 -0.342977 -0.601914 0.023797 -0.206372 -0.423541 0.198526 0.349710 -1.120863 0.638948 0.023794 -0.260487 0.040574 -0.078808 0.109128 -0.543792 -0.663026 0.098855 -0.242124 -0.575339 -0.163830 -0.284655 0.198460 0.050041 -0.104682 -0.312820 -0.571287 0.588329 0.040462 0.389649 0.417947 0.171153 0.594942 0.717198 -0.439036 -0.115649 -0.285882 0.296763 -0.402480 -0.090577 0.014977 -0.409643 0.326602 0.874624 0.011518 0.024638 -0.431236 0.531297 -0.341887 -0.261847 0.406638 -0.162800 -0.084801 0.236726 0.464590 -0.326124 -0.286478 -0.504459 -0.134787 -0.058551 -0.352398 0.167656 -0.637782 -0.082122 0.503906 -0.286365 -0.440769 0.255870 -0.133308 -0.232177 -0.167383 0.674723 0.516603 -0.511905 0.538177 -0.432540 0.361179 -0.704225 -0.301578 -0.087544 0.017212 -0.213491 -0.104137 0.096170 0.104087 0.042718 -0.204124 -0.239285 -0.063488 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::end() = 0.036863 0.420172 0.456205 -0.148082 0.416983 0.283831 0.143694 0.163517 -0.264429 -0.324484 -0.173171 -0.561257 -0.655366 0.475978 -0.049466 -0.015843 0.773879 0.182877 0.010943 -0.151641 0.034716 -0.231736 0.704476 0.730406 -0.635751 0.257795 0.126788 0.256801 -0.072357 0.713503 -0.307077 -0.645398 0.141479 0.110151 0.337235 -0.299277 -0.164047 -0.243237 -0.259742 -1.141630 -0.079560 0.505574 0.042518 -0.025205 0.168146 0.321777 0.957479 0.348709 -0.091285 0.263288 0.154472 0.024728 0.316433 0.073465 0.228534 0.084793 0.496805 -0.192454 -0.403476 0.164019 -0.063744 -0.685235 -0.210165 0.464301 0.610990 -0.047451 -0.180503 -0.153182 -0.128275 0.041399 -0.063342 0.335676 0.323249 0.342122 0.331777 -0.029528 0.169397 -0.496682 0.015603 -1.189440 -0.617703 -0.528658 0.563651 0.462130 0.140547 -0.317534 0.786409 -0.098475 0.296903 0.085046 0.839579 -0.485559 -0.183111 -0.289827 -0.096133 0.243260 -0.247816 -0.077993 0.081039 -0.170697 -0.461537 -0.374076 0.478986 -0.056644 -0.354902 0.224994 -0.159253 0.457108 -0.685692 -0.200260 -0.810007 -0.144584 0.052615 -0.770973 -0.023891 0.092041 0.036625 0.360764 -0.158134 -0.374933 0.217806 0.250081 -0.182583 -0.154212 -0.638484 0.728678 0.160122 -0.142309 0.262403 0.197763 0.315487 0.424723 0.472383 -0.133475 -0.123447 0.227758 -0.209332 -0.083093 -0.213760 -0.087888 -0.027391 -0.421549 -0.053347 0.157627 -0.369471 0.072686 -0.453993 -0.218257 0.269525 1.150635 -0.198895 0.328405 0.047084 -0.604747 0.543496 -0.057937 -0.351036 0.054116 0.435609 0.515712 -0.448890 -0.286741 0.202450 0.722219 0.282638 -0.409275 0.084758 -0.112711 0.017806 -0.109614 0.403367 0.110535 0.172868 -0.330817 -0.088456 0.183490 1.010727 -0.252281 -0.786367 0.070430 -0.046408 0.054663 -0.404616 0.035881 -0.102097 -0.099311 -0.053759 -0.085874 0.203409 0.597352 -1.109382 0.608982 -0.111535 -0.453155 0.653626 -0.170687 -0.098115 -0.407882 0.151054 0.531753 0.644027 0.194655 -0.112941 -0.214533 -0.568580 -0.094879 0.056278 0.313476 -0.363462 0.497707 0.005496 -0.526921 -0.342977 -0.601914 0.023797 -0.206372 -0.423541 0.198526 0.349710 -1.120863 0.638948 0.023794 -0.260487 0.040574 -0.078808 0.109128 -0.543792 -0.663026 0.098855 -0.242124 -0.575339 -0.163830 -0.284655 0.198460 0.050041 -0.104682 -0.312820 -0.571287 0.588329 0.040462 0.389649 0.417947 0.171153 0.594942 0.717198 -0.439036 -0.115649 -0.285882 0.296763 -0.402480 -0.090577 0.014977 -0.409643 0.326602 0.874624 0.011518 0.024638 -0.431236 0.531297 -0.341887 -0.261847 0.406638 -0.162800 -0.084801 0.236726 0.464590 -0.326124 -0.286478 -0.504459 -0.134787 -0.058551 -0.352398 0.167656 -0.637782 -0.082122 0.503906 -0.286365 -0.440769 0.255870 -0.133308 -0.232177 -0.167383 0.674723 0.516603 -0.511905 0.538177 -0.432540 0.361179 -0.704225 -0.301578 -0.087544 0.017212 -0.213491 -0.104137 0.096170 0.104087 0.042718 -0.204124 -0.239285 -0.063488 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/aho-corasick-algorithm.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::~_Deque_base() = 0.162058 1.837287 1.773074 -1.408828 1.694031 2.509798 0.131412 -0.105788 -0.797269 -0.579080 -0.535676 -2.345244 -1.972510 1.437495 -0.528347 -0.599969 2.099291 -0.330755 -0.385305 -0.002464 -0.012828 1.360229 1.979824 2.103772 -2.072229 0.771330 0.422771 0.590147 -0.580222 2.453377 -0.955022 -3.095043 -0.506630 1.504020 0.828746 -0.018366 -0.915494 -1.380388 -0.412700 -3.158533 -0.251780 2.155074 -0.839770 -0.197554 0.939747 -0.576603 3.515289 0.900955 -0.225944 -0.118886 0.702695 1.440177 0.615834 -0.243690 0.901670 -0.127557 2.150512 -0.606850 -0.408552 0.072849 -0.255169 0.250002 -0.996078 1.945635 1.601495 0.358894 -0.978448 -1.176674 0.088608 -0.003474 -0.801649 1.420177 0.852982 2.358509 0.517457 1.138041 0.858550 -0.878229 1.178098 -0.770047 -1.742801 -1.069982 0.935095 2.578517 0.123857 -1.817523 2.646099 -0.690163 0.671469 0.601841 2.734780 -0.763339 -0.047305 -0.939518 -1.417849 0.369983 -0.153179 0.191083 -1.480657 -0.282178 -1.430796 -1.158838 0.119690 -0.331322 -1.210355 1.393140 -0.206517 1.050075 -1.167937 0.296817 -1.349237 0.859215 0.459959 -2.677328 -2.647037 -0.314901 -0.978258 0.335599 -0.927405 -1.376788 0.712963 0.576785 -1.149752 0.023742 -2.032472 1.973816 1.383129 -0.414970 0.133437 0.163042 1.592597 1.072300 0.039470 -0.616875 0.050059 0.139938 0.346262 -0.583667 -0.397769 0.774945 -1.228542 -0.511219 0.025010 1.209076 -0.896651 0.318106 -3.110101 -1.376035 0.440354 6.048180 -1.386003 1.333438 -0.001105 -2.095262 1.369313 0.310611 -1.589310 -0.444748 0.650462 2.386355 -1.729446 -0.733561 1.508651 2.484470 0.677913 -0.705285 1.804795 0.539686 -0.887915 -0.966260 1.845522 -0.235239 0.102882 -0.844783 -0.700928 1.187535 3.254546 -0.018141 -3.788193 0.187147 1.049264 0.972145 1.130190 0.424780 -0.193491 -0.070601 1.387737 -0.412028 1.614259 1.824506 -3.941762 1.675781 0.929537 -1.788975 2.191768 -0.547381 -0.415774 0.959994 0.512449 1.959389 1.602902 0.393418 -0.543928 -1.283790 -1.673846 -0.245955 0.633686 0.830318 -1.686265 1.650788 0.553147 -1.974713 -0.971814 -2.344237 -0.604043 -0.462836 -2.691048 0.553397 -0.112883 -3.386205 2.539854 1.162432 -0.010346 -0.629314 -1.486220 0.343545 -1.436345 -1.928891 0.241455 -0.754157 -1.282148 0.697905 -1.234699 0.504605 1.057240 1.844023 -2.269354 -1.912489 1.638916 0.655046 1.899557 1.327011 0.774093 0.752599 1.694281 -0.513910 -0.218992 -2.251251 2.982644 0.731048 -0.902367 0.267177 -1.612970 0.724519 1.961740 -0.885127 -0.769820 -2.584120 1.007452 -0.049877 0.269673 0.324347 -1.708637 -1.262156 -0.485369 0.837649 0.121767 -0.465442 -1.881912 -0.193933 -1.435199 -1.222193 0.332741 -1.187251 -0.295726 1.719020 -1.319817 -1.733908 0.392144 -0.326686 -1.001273 0.576739 1.408465 0.099626 -0.696806 2.136212 -1.776546 1.625455 -2.105019 -1.452526 0.110102 -2.224250 -0.693336 -1.158086 -0.891354 0.479387 0.022482 0.611230 -0.341114 0.645879 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.097473 1.840169 1.526155 -1.064946 1.574044 1.915908 0.218109 -0.294476 -0.516576 -0.522702 -0.576822 -1.469221 -1.603830 1.316047 -0.304127 -0.099817 2.129924 -0.176660 -0.210666 -0.406036 0.626013 0.130979 2.080291 2.051502 -2.153535 0.741114 1.368074 0.579956 0.112636 1.892539 -1.399693 -1.880481 0.071816 0.067680 0.738361 -0.599961 -0.626305 -1.384783 0.020446 -3.004899 -0.246102 0.420941 -1.111487 -0.135093 0.327412 0.430123 3.328337 0.983807 -0.618443 0.086794 0.901777 0.761041 0.286762 -0.004730 0.681379 0.374537 1.952641 0.501665 -0.310293 0.030618 -0.114982 -0.655223 -0.402239 1.797170 1.650701 0.124903 -0.630997 -0.017833 0.028223 -0.211213 -0.735554 1.213679 0.838978 1.833229 0.892113 -0.992772 0.601768 -2.234546 0.230921 -2.381970 -1.649412 -1.398299 0.284486 0.228381 0.788169 -0.569132 2.404852 -0.307335 0.875738 0.480066 2.614843 -1.564744 -0.129810 -0.952092 -1.037803 0.351112 -0.398345 0.321601 -0.437471 -0.863549 -1.322362 -1.679887 0.995381 0.095901 -1.190946 0.267838 -0.250626 1.094320 -1.323664 -0.435188 -1.704635 -0.215164 -0.301302 -2.592190 -1.217149 -0.231061 0.984286 0.345149 -0.444571 -2.066603 0.402528 1.387221 -0.761819 -0.898124 -0.610928 1.815477 1.510939 -0.228651 0.409315 -0.092175 1.381223 1.654166 1.500441 -0.435834 -0.287736 0.117356 -0.514202 -0.564370 -0.607243 0.344061 -0.194319 -0.852692 0.025416 1.514664 -0.873447 0.306297 0.074875 -1.215902 0.695004 5.700470 -0.886878 1.047396 -0.017881 -2.205553 0.970156 -0.230184 -1.533881 0.098629 0.946007 2.041965 -2.757348 -0.843843 1.053981 2.183028 0.704512 -1.679669 0.375131 -0.124614 -0.705607 -0.622457 1.060782 -0.100291 0.144963 -0.849390 -0.558096 1.137348 3.390697 -0.863749 -3.000605 0.361203 0.255636 0.224431 -0.798057 0.022353 -0.501468 -0.052797 0.766495 -0.400889 1.284757 1.772374 -4.037370 1.442965 -0.218675 -1.836929 1.826654 -0.056956 -0.408153 -0.020310 0.849096 1.945043 1.439650 0.404907 -0.290040 -0.952649 -1.641708 -0.263239 0.423093 0.792334 -1.371614 1.467440 0.650195 -2.020006 -1.155247 -1.315189 -0.074845 -0.664153 -1.420943 0.567103 -0.611884 -3.944809 2.436205 0.517959 -0.285267 0.146171 -1.203740 0.692883 -1.550218 -2.065444 0.642759 -0.315273 -0.515145 0.165708 -0.859915 0.843346 0.749834 1.024598 -1.934420 -2.343727 1.078938 0.217798 1.360553 1.260604 1.012228 1.647767 0.338615 -0.708994 -1.162093 -1.159171 1.751063 0.424301 -1.004703 -0.708743 -1.320938 1.061716 2.307855 -0.681021 -0.081913 -1.633732 1.085986 -1.539033 -0.112969 0.598431 0.596112 -1.325892 -0.199670 0.917749 -0.264975 -0.782256 -1.306034 -0.631268 -0.821798 -1.393916 0.393495 -1.385259 -0.219543 1.716551 -0.917671 -1.072294 0.789299 -0.447634 -0.143291 0.055301 1.173950 1.979989 -1.484975 0.878462 -1.506260 1.375002 -2.246511 -1.661871 0.406166 -0.998681 -0.436552 -0.833922 -0.212586 0.654686 -0.067861 0.012523 -0.055651 -0.114244 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.280910 0.613662 0.426447 -0.599673 0.844427 0.632485 0.320973 0.051308 -0.666269 -1.040547 -0.330176 -1.031987 -1.389410 1.282096 -0.228504 0.452377 2.095984 0.446534 0.043443 -0.534550 0.953454 -1.043138 1.853733 2.014472 -1.735615 0.263934 0.913270 0.779172 0.241084 0.996547 -0.054674 -1.413386 0.452316 -0.726259 0.965912 -1.177803 -0.166536 -0.018111 0.020002 -2.885518 -0.274307 0.573288 -0.105652 0.024633 0.073935 0.645630 2.005653 1.093749 -0.744913 0.780481 0.875257 0.220471 0.516575 0.174494 0.094786 0.377272 0.092692 -0.061909 -0.494528 0.316245 -0.207380 -1.487697 0.150149 1.411289 1.831774 -0.277386 -0.355897 0.413253 -0.145578 0.199629 -0.081347 1.000794 0.530010 0.479292 1.148071 -1.794876 -0.265078 -3.085269 0.092258 -3.780301 -1.375936 -1.269303 0.840214 0.484197 0.738523 -0.259233 2.191700 -0.189740 0.484950 1.173702 2.035650 -1.322093 -0.363830 -1.168401 -0.485547 0.575270 -0.821031 -0.099039 0.457998 -0.166642 -1.157254 -1.484060 0.899331 0.109820 -0.945198 -0.873886 -0.471973 1.338210 -1.613000 -1.022398 -1.981880 -0.052610 -0.275200 -2.252913 0.233016 -0.446271 0.611939 0.642826 -0.379751 -1.371093 0.385607 0.982599 -0.309643 -0.879388 -0.572037 1.570940 0.764930 -0.290043 0.442744 0.509139 0.499187 1.654503 1.555301 -0.468928 -0.509133 0.717625 -0.835953 -0.207241 -1.067918 -0.287039 0.956991 -1.312671 -0.338509 0.700721 -0.897722 -0.332382 0.842007 -1.001816 0.752910 4.177721 -0.302800 0.863879 0.559387 -1.574169 1.321209 -0.229427 -0.543608 0.607904 1.356390 1.152597 -2.121570 -0.968774 0.558287 1.913777 0.745119 -1.278540 -0.932550 -0.284618 0.170042 -0.235801 0.600134 0.298644 0.016762 -0.768904 -0.161360 0.698724 2.550773 -0.915488 -0.746055 0.181760 0.863901 -0.496242 -2.031926 -0.155221 -1.440835 -0.305297 0.179246 -0.067241 0.609989 1.660641 -2.917649 1.345391 -0.522797 -0.488672 0.866987 0.054028 -0.403057 -2.329193 0.552785 1.248605 1.462428 -0.011791 0.479733 -0.252633 -1.668306 -0.052131 0.217723 0.915873 -1.001767 1.381571 -0.272522 -1.125154 -1.007916 -0.183969 -0.450034 -0.955556 -0.342217 0.690266 0.884055 -2.408637 1.636286 -0.356649 -0.673225 0.545066 -0.202405 1.144345 -1.624883 -1.854597 0.860413 -0.241634 -0.814509 -0.475604 -0.529140 1.012039 0.114794 -0.592707 -0.776681 -1.928157 1.153687 -0.115091 1.079927 0.955057 0.395611 1.837786 0.332790 -1.042369 -1.053230 -0.744563 0.159342 -0.511645 -0.530344 -1.255345 -0.625445 1.104909 2.296199 0.025001 -0.212366 -0.280068 1.614586 -1.617817 -0.507815 0.859023 0.602856 -0.477149 0.533800 1.008605 -1.250901 -0.729231 -1.318974 0.335048 -0.043489 -1.059798 0.651718 -1.592286 -0.001511 1.039194 -0.453425 -0.482507 0.895998 0.371323 0.022620 -0.373299 1.725452 1.681549 -1.191194 0.215630 -1.356043 0.726941 -2.022858 -1.103591 -0.309352 0.568906 -0.295675 -0.110403 0.309161 0.706980 0.325488 -0.305003 -0.515182 -0.421894 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.189203 0.648831 0.640183 -0.123378 0.999220 0.462398 0.558507 0.497595 -0.714346 -1.261853 -0.222702 -1.270060 -2.039430 1.491257 -0.086755 0.357142 2.400694 0.603064 0.171158 -0.691710 0.725008 -1.289642 2.305219 2.319638 -1.946523 0.431075 0.767931 0.738032 0.211288 1.048379 -0.241514 -1.493472 1.009471 -0.798179 0.899904 -1.137743 -0.220377 -0.383005 -0.389652 -3.262926 -0.371362 0.748681 -0.381275 0.058461 0.116065 1.701311 2.378422 1.254122 -0.711917 1.309374 0.703944 -0.495225 0.731104 0.321870 0.164114 0.075095 0.079900 0.095730 -1.157868 0.473822 -0.251798 -2.598091 -0.331247 1.330194 2.059675 -0.458169 -0.399601 0.396760 -0.444864 0.271076 0.022077 1.033589 1.300854 0.373932 1.657736 -1.350864 -0.562518 -2.946873 -0.451777 -5.071759 -1.796414 -1.567337 1.774741 0.097499 0.654514 -0.522593 2.360202 0.041063 0.575309 1.141939 2.488864 -1.726688 -0.702211 -1.093650 0.045329 0.768895 -1.163562 0.042024 1.125323 -0.598528 -1.487706 -1.454874 1.346425 -0.083125 -0.994654 -0.783037 -0.623421 1.617892 -2.136467 -1.006916 -2.798674 -0.610834 0.015769 -2.528228 0.470335 0.329110 1.231206 1.311581 -0.408480 -1.056955 0.556991 0.873965 -0.217596 -1.036763 -0.409373 2.054158 0.609716 -0.094879 0.931931 0.992511 0.703434 1.826394 2.323982 -0.255555 -0.615873 0.752661 -1.004807 0.151466 -0.882397 -0.496187 1.066982 -1.540292 -0.002065 0.491046 -1.125973 -0.434570 0.663779 -0.651168 0.833393 3.500414 -0.166548 1.040683 0.569029 -1.708511 1.441396 -0.699292 -0.596011 0.670261 1.663712 1.193011 -1.821378 -0.950602 0.591868 2.188725 0.886848 -2.062568 -0.635977 -0.368613 0.596624 -0.540627 0.793352 0.676316 0.698475 -0.927125 -0.002340 0.887905 2.858578 -1.487748 -1.544654 0.219091 0.260043 -0.018397 -2.439375 -0.120664 -0.688402 -0.417278 0.143272 0.021163 0.316737 1.858079 -3.102921 1.562091 -0.712816 -0.665480 1.236916 0.240702 -0.612982 -2.346463 0.579411 1.395135 1.718606 0.739367 0.059765 -0.291361 -1.857337 -0.119809 0.274433 0.923501 -0.781511 1.585386 -0.450083 -1.106064 -1.214999 -0.897009 -0.055157 -0.754978 -0.346855 0.806378 1.118484 -3.448595 1.700844 -0.515198 -1.219839 0.302484 -0.013345 1.212721 -1.824556 -2.290684 0.789052 -0.827697 -1.886911 -1.003075 -0.613934 0.710372 0.263280 -0.902247 -0.512987 -2.144362 1.947230 -0.049132 1.227482 1.130795 0.401281 2.784445 0.838593 -1.725949 -0.986858 -0.802049 0.543549 -1.348106 -0.527012 -0.962474 -0.743936 1.199590 2.672826 0.146773 -0.010594 -0.697561 1.789059 -2.277574 -0.984154 1.422368 1.335506 -0.098324 1.286730 1.488819 -1.532899 -0.761166 -1.382950 -0.182668 0.015880 -1.222888 0.576748 -2.057120 -0.047095 1.195829 -0.417189 -0.639965 0.906527 -0.045915 -0.084158 -0.837630 2.033179 2.953944 -2.178544 0.542789 -1.489727 1.072042 -2.260579 -1.357153 -0.091474 0.852654 -0.292095 -0.080117 0.666204 0.433419 0.395152 -1.391710 -1.044533 -0.312485 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.123887 0.522906 0.685557 -0.438488 1.206033 0.495682 0.274420 0.280557 -0.613000 -0.978585 -0.344651 -1.023631 -1.639356 1.125311 -0.171510 0.397339 1.558240 0.094065 0.050595 -0.590905 0.778911 -0.868835 1.642658 1.198395 -1.631709 0.333080 0.518727 0.915129 0.276049 1.163402 -0.268381 -1.085303 0.363147 -0.343153 0.868537 -0.737658 -0.022248 -0.162010 -0.399881 -2.244242 -0.362241 0.767106 -0.466004 0.292557 0.131782 1.381792 1.713580 0.969747 -0.728044 0.914304 0.835252 -0.248306 0.613424 0.261895 -0.161167 0.023466 0.473588 -0.114391 -0.823014 0.306964 -0.182163 -1.847559 -0.094284 0.959107 1.590889 -0.585119 -0.410155 0.585459 -0.242028 0.211213 0.053834 0.922055 0.790567 0.264918 1.327964 -0.841158 -0.309366 -2.036764 -0.042725 -3.492154 -1.226767 -1.338780 0.996319 0.432852 0.349616 -0.490903 2.085832 -0.011125 0.223771 0.918677 1.751765 -1.155037 -0.339812 -1.236460 -0.122936 0.371946 -0.866404 -0.398280 0.624542 0.067184 -0.861502 -0.940468 0.706505 -0.353596 -0.766593 -0.505200 -0.875600 1.320057 -1.759532 -0.687177 -2.075551 0.003880 0.001629 -1.890535 0.085703 0.214339 0.729161 0.572964 0.165874 -0.623666 0.432885 0.777676 -0.355432 -0.458702 -0.566720 1.636524 0.716336 -0.279669 0.588283 0.830070 0.535818 1.121081 1.622411 -0.241484 -0.930942 0.733704 -0.479997 0.013541 -0.701259 -0.025885 0.762575 -1.195626 -0.097578 0.441329 -0.595221 -0.180726 0.050246 -0.846057 0.672856 2.696822 -0.235092 0.535184 0.147313 -1.206596 1.174430 -0.163664 -0.478737 0.595039 0.883737 0.933142 -1.296704 -0.813180 0.729872 1.475082 0.551990 -1.567230 -0.302035 -0.209004 0.428364 -0.322232 0.437736 0.815110 0.163150 -0.399217 -0.070266 0.209241 2.321394 -0.924685 -1.319386 0.522075 0.332341 -0.379716 -1.683802 -0.209274 -0.490942 -0.646586 0.264783 0.036538 0.312215 1.446382 -2.473818 1.160557 -0.125642 -0.622327 0.934813 -0.283286 0.012734 -1.763201 0.090037 1.043928 1.205981 0.327615 0.042329 -0.423081 -1.376986 0.281254 0.299092 0.735797 -0.508218 1.053732 -0.328956 -0.742027 -0.846480 -0.718328 -0.346777 -0.146106 -0.409607 0.511207 0.569873 -2.735058 1.287299 -0.613149 -0.648804 0.347983 0.136723 1.084073 -1.145920 -1.541197 0.724198 -0.513623 -1.464111 -0.855193 -0.300565 0.576056 0.146019 -0.577528 -0.588053 -1.864867 1.213328 -0.217769 0.677699 0.800815 0.411059 1.840729 0.729027 -1.240180 -0.792891 -0.671391 0.466335 -0.735177 -0.050821 -0.509075 -0.327883 0.867030 1.770256 0.153028 0.194623 -0.653059 1.318159 -1.462190 -0.770956 0.990575 0.570862 -0.327054 1.022923 1.074365 -0.856094 -0.717438 -1.237894 0.087514 -0.225811 -0.779756 0.376849 -1.503153 -0.254791 1.119049 -0.301726 -0.750805 0.764076 0.022530 -0.344400 -0.954466 1.955092 2.195751 -1.449827 0.579687 -1.101569 0.956364 -1.657578 -0.886757 -0.207422 0.400455 -0.039426 0.037187 0.538503 0.402185 0.283627 -0.827988 -0.657145 -0.503608 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.344857 -0.442576 -0.244121 -0.445243 0.257755 -0.042797 0.043426 -0.355504 -0.712604 -0.347823 0.124852 -0.797734 -0.200038 0.577765 -0.148597 0.530652 0.815753 0.196861 -0.148805 -0.185461 0.523212 -0.487390 0.480700 0.886886 -0.304389 0.032596 -0.265112 0.192211 -0.085632 0.075892 0.163691 -0.680776 0.047553 -0.528338 0.159584 -0.251300 -0.299393 0.701251 0.612639 -0.953837 0.036625 0.428973 0.389454 0.114446 0.175952 0.026091 0.315902 0.094735 0.005371 0.734904 0.322511 -0.130678 0.406966 -0.053565 0.311032 0.385835 -0.047976 -0.213913 -0.127150 0.009175 -0.412981 0.174850 0.212421 0.339911 0.545077 -0.090519 -0.443848 0.054934 0.163087 0.103727 0.259759 0.497095 -0.135760 -0.216743 0.268964 -0.715439 -0.104523 -1.269051 0.291116 -1.275808 -0.464006 0.266996 0.514978 0.587710 0.114601 -0.091732 0.874796 -0.458228 -0.485482 0.383024 0.616364 -0.237512 -0.102718 0.007811 -0.360554 -0.254196 0.048708 -0.181190 0.203503 0.521415 -0.532267 -0.366258 0.328420 -0.055240 -0.206563 -0.409205 0.013427 0.495284 -0.656895 -0.419613 -0.194133 0.696099 0.243440 -0.593852 0.071129 -0.470133 -0.362380 0.225359 -0.834060 -0.398398 0.346224 -0.102331 -0.354984 -0.015339 -0.189848 0.329487 0.274450 0.018909 -0.214230 0.390967 -0.021897 0.774908 -0.089820 -0.491283 0.163778 0.207784 0.028669 0.189462 -0.285152 -0.331473 0.122462 -0.475128 -0.063109 -0.198866 -0.338282 -0.115826 0.159529 -0.118975 -0.408000 1.250051 -0.415122 0.759461 0.512277 -0.179228 0.499205 -0.008754 0.383888 0.206276 0.613922 0.232574 -0.514660 -0.536514 0.755996 0.699834 0.088269 -0.404355 -0.449520 0.334139 0.320225 0.177576 0.359599 -0.109784 0.100150 -0.123355 -0.013543 -0.040765 1.263590 -0.149324 0.236942 0.042383 0.490221 0.002189 -0.728696 -0.154578 -0.963827 -0.076026 0.062067 0.257987 0.218993 0.711424 -1.094076 0.485021 -0.234872 0.212837 0.397629 0.293113 -0.315393 -1.559040 -0.557252 0.066052 0.711194 -0.122488 0.339909 0.115434 -0.615783 0.085893 0.000000 0.259845 -0.760890 0.674806 -0.172948 -0.414959 0.188955 0.231182 -0.512927 -0.324441 -0.267146 0.229267 0.791491 -0.517558 0.258665 0.238937 -0.010261 0.223465 0.275479 0.664835 -0.159975 -0.312988 0.359437 -0.291721 -0.310038 -0.052335 -0.105455 0.201591 -0.192302 -0.317919 -0.365779 -0.545614 0.757833 -0.110442 0.886504 0.084505 -0.550075 0.183502 0.112404 -0.290435 -0.172324 -0.125496 -0.328388 -0.355732 -0.019443 -0.418245 -0.199410 0.347804 0.347707 0.297886 -0.438645 0.094531 0.604004 -0.297647 0.398096 0.299486 -0.225854 -0.244466 0.193140 0.424993 -0.486420 0.184668 -0.562442 0.130017 -0.502421 0.052255 0.502260 -0.116033 0.035622 -0.310517 -0.296216 0.137939 0.239218 0.504252 -0.161139 0.176568 0.922878 0.179894 0.176165 0.052703 -0.574138 0.154136 -0.413927 -0.268318 -0.281339 0.629905 -0.589591 -0.234380 -0.135781 0.528305 0.274081 -0.167842 -0.377783 0.286068 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.057648 0.648388 0.418300 0.049222 0.615643 0.222793 0.336686 0.238464 -0.260549 -0.715942 -0.232931 -0.776189 -1.220647 0.832532 0.025635 0.255540 1.368150 0.310009 0.120440 -0.347801 0.392143 -0.930212 1.319355 1.237604 -1.090699 0.323643 0.574143 0.359591 0.062952 0.740125 -0.394868 -0.778759 0.627881 -0.515564 0.573141 -0.598266 -0.128533 -0.402531 -0.248906 -1.835166 -0.217536 0.370446 -0.032172 -0.028688 -0.038314 0.945899 1.558136 0.705193 -0.344724 0.558553 0.300163 -0.414340 0.457993 0.246074 0.217772 0.136393 0.299242 0.087055 -0.776112 0.237807 -0.134751 -1.648854 -0.216417 0.749057 1.146751 -0.220055 -0.179444 0.365739 -0.370245 0.096607 -0.125462 0.561220 0.744484 0.317742 0.902177 -0.863652 -0.127058 -1.497464 -0.436032 -2.956595 -1.066016 -1.038067 0.775387 -0.071602 0.540923 -0.177820 1.323237 0.061694 0.481120 0.336563 1.576794 -1.171456 -0.425279 -0.639793 0.123088 0.416289 -0.674721 -0.002312 0.809099 -0.568011 -0.866136 -0.861040 1.010814 0.057908 -0.569558 -0.360935 -0.346520 0.875398 -1.208022 -0.669738 -1.706215 -0.760459 -0.133458 -1.461703 0.538916 0.371693 0.637926 0.795507 -0.144451 -0.868379 0.322135 0.665000 -0.088597 -0.771568 -0.306094 1.239040 0.306813 -0.073865 0.652948 0.513023 0.504170 1.097123 1.516360 -0.062707 -0.368352 0.318753 -0.710337 0.021170 -0.392729 -0.399009 0.538530 -0.936699 -0.111693 0.392789 -0.649290 -0.038407 0.449685 -0.384568 0.567403 1.760953 -0.129355 0.503463 0.160992 -1.110605 0.908865 -0.469411 -0.557400 0.248089 0.945486 0.802398 -1.084055 -0.561993 0.351575 1.221864 0.507021 -1.171925 -0.426015 -0.362733 0.338112 -0.272322 0.385481 0.423542 0.459451 -0.590308 -0.027964 0.493696 1.728698 -1.006449 -0.931220 0.273045 -0.175619 0.002760 -1.636738 -0.133328 -0.437667 -0.252754 -0.257526 -0.051706 0.117633 1.075478 -1.670400 0.950830 -0.554586 -0.631906 0.938174 -0.005164 -0.291615 -1.388628 0.427409 0.984947 0.936815 0.412449 -0.051024 -0.336349 -1.035568 -0.123846 0.059009 0.558660 -0.405347 0.865604 -0.288861 -0.756633 -0.803140 -0.569226 0.126724 -0.527700 -0.130301 0.411960 0.735290 -1.946965 1.141594 -0.270352 -0.672183 0.235696 0.027125 0.499419 -1.048264 -1.363043 0.402245 -0.518344 -0.954242 -0.537176 -0.324595 0.374364 0.109108 -0.722020 -0.255295 -1.188536 1.030084 -0.017912 0.603514 0.658266 0.444346 1.571975 0.724905 -1.060316 -0.564957 -0.243412 0.002300 -0.896628 -0.314132 -0.631732 -0.472785 0.770310 1.639203 0.091430 0.191017 -0.410929 0.920048 -1.369886 -0.668318 0.921354 0.719280 -0.159475 0.585349 0.906851 -0.761352 -0.585450 -0.742937 -0.258990 0.005284 -0.815542 0.154107 -1.287063 -0.161104 0.865580 -0.392299 -0.380155 0.531499 -0.127151 -0.016686 -0.585004 1.090341 1.645772 -1.383090 0.275954 -0.792841 0.550824 -1.362531 -0.784070 0.087747 0.682662 -0.180022 -0.107270 0.599926 0.150511 0.086878 -0.861955 -0.521288 -0.403850 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/aho-corasick-algorithm.cpp__std::char_traits::length(char const*) = -0.047959 0.074187 0.150852 -0.097095 0.169069 -0.040761 0.085106 0.002587 -0.187054 -0.288537 0.020654 -0.325482 -0.337677 0.278622 -0.097826 0.057152 0.396993 0.088617 0.021521 -0.205347 0.083720 -0.228953 0.444247 0.449787 -0.380770 0.072168 0.097082 0.203905 0.117136 0.184709 0.039327 -0.273047 0.145170 -0.045471 0.159462 -0.183221 -0.017049 -0.004840 -0.071148 -0.570688 -0.049943 0.136265 0.077063 0.033706 0.037695 0.346494 0.380087 0.245882 -0.102309 0.299784 0.227428 -0.006760 0.151387 0.058174 0.027454 -0.104148 0.158474 -0.180372 -0.188637 0.087118 -0.019847 -0.457826 -0.071060 0.290635 0.418813 -0.078543 -0.056380 0.014940 -0.070522 0.097232 0.077826 0.187622 0.125286 0.112548 0.238713 -0.220717 0.025316 -0.583535 -0.051627 -0.997705 -0.308667 -0.213211 0.394175 0.157394 0.046081 0.035571 0.430770 0.095797 0.045847 0.192963 0.424459 -0.227646 -0.130408 -0.073812 -0.055988 0.175175 -0.217742 0.054169 0.086398 0.118905 -0.245923 -0.163811 0.243737 -0.056587 -0.183833 -0.035782 -0.105422 0.225626 -0.503444 -0.105493 -0.395801 -0.054455 0.083527 -0.463438 0.115922 -0.038266 0.278618 0.167500 -0.075430 -0.083781 0.080283 0.070455 -0.045615 -0.036890 -0.362809 0.281679 0.087056 0.029298 0.111920 0.161313 0.130608 0.299637 0.230672 -0.118414 -0.111806 0.119691 -0.132948 0.058125 -0.161478 -0.089342 0.195626 -0.273149 0.107635 0.008561 -0.193854 -0.201491 -0.011250 -0.121624 0.125977 0.490782 -0.010801 0.233741 0.174870 -0.272173 0.107471 -0.146694 -0.048953 0.146156 0.264172 0.160684 -0.062753 -0.204702 0.126690 0.392930 0.160782 -0.277092 -0.096596 0.025423 0.091004 -0.038347 0.158905 0.100618 0.020184 -0.164950 -0.019937 0.132903 0.438591 -0.092518 -0.110715 0.015050 0.074480 -0.030252 -0.313386 0.008641 -0.049450 -0.011005 -0.004040 0.044549 0.057003 0.340731 -0.721745 0.296792 -0.025945 -0.002619 0.172062 0.003863 -0.158386 -0.514861 0.089499 0.205575 0.287825 0.054183 0.090285 0.031890 -0.341656 -0.023180 0.021137 0.137715 -0.188958 0.258789 0.005404 -0.204364 -0.222308 -0.145654 0.019265 -0.032883 -0.098900 0.174861 0.247848 -0.684451 0.282926 -0.136853 -0.236388 -0.020933 -0.025848 0.214408 -0.351482 -0.318678 0.074136 -0.227878 -0.381874 -0.222255 -0.096389 0.084825 -0.084467 -0.102066 -0.080190 -0.190088 0.318211 -0.092154 0.164441 0.198305 0.031372 0.396850 0.091342 -0.221983 -0.120684 0.003919 0.076285 -0.324539 -0.070456 0.109996 -0.112287 0.172309 0.465811 0.024333 -0.047238 0.063015 0.319132 -0.261731 -0.238387 0.208970 0.140766 -0.027509 0.336657 0.220488 -0.302267 -0.074731 -0.298366 -0.056287 0.012676 -0.205817 0.186731 -0.268338 0.031388 0.182253 -0.041022 -0.173378 0.219917 -0.014112 -0.049391 -0.093159 0.413796 0.496524 -0.267519 0.162747 -0.306802 0.122478 -0.404969 -0.249946 -0.030619 0.153080 -0.080969 -0.000644 -0.032766 0.139574 0.119721 -0.176340 -0.202373 0.069934 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -0.339036 1.281610 1.549463 -1.414356 3.335246 1.066634 1.069069 0.820199 -1.430988 -3.032192 -0.588773 -3.137955 -4.911965 2.484752 -0.851227 0.677050 4.345654 -0.107591 0.524551 -1.952775 1.982649 -1.979029 5.173176 4.050906 -5.140360 0.817649 1.174346 2.606242 0.841609 2.426246 0.239432 -3.189952 1.152106 -0.747919 2.988991 -1.702428 -0.405095 -1.008260 -1.201424 -6.492636 -1.326311 2.709040 -1.239931 1.127558 0.968083 4.465936 5.054618 2.781871 -2.538881 2.988928 2.558636 -0.560359 2.311173 0.628964 -0.849429 -0.766339 1.017222 -0.419986 -2.112610 0.736836 -0.951471 -4.938775 0.066215 3.115910 4.809865 -1.702474 -1.257756 1.170500 -0.235107 0.762923 0.464047 3.398652 2.396274 0.968744 4.429697 -2.264156 -0.807065 -6.485494 0.017521 -10.552966 -3.915838 -3.820918 3.237130 1.226917 1.085178 -1.512351 6.230103 0.361197 0.947037 3.077571 4.400591 -2.699710 -0.748444 -3.082410 -0.714682 0.958716 -2.323628 -0.537822 1.905523 0.610449 -2.824112 -2.063567 1.590081 -1.163262 -2.218114 -1.722206 -2.293749 3.185282 -4.553457 -1.678751 -5.977167 0.326992 0.214486 -5.867690 0.081395 0.171443 2.205514 1.665786 0.429393 -0.995062 1.075357 1.673349 -0.955882 -0.896073 -2.010438 4.693094 2.520059 -0.231179 1.742119 2.749773 1.089144 3.136697 4.735970 -0.357150 -2.757910 1.975179 -1.435401 0.388851 -1.729626 0.264254 3.091507 -3.072773 -0.150179 0.868180 -1.580503 -1.254234 0.005683 -2.728785 1.871372 8.155556 -0.881631 2.276994 1.150470 -3.362392 2.995663 -0.511849 -0.756041 2.027247 3.166019 2.647107 -3.525929 -2.212610 2.070976 4.356426 1.290367 -4.570637 -0.392739 0.471844 1.363002 -1.361809 1.262918 2.001083 0.796228 -1.523194 0.232658 0.897015 6.122441 -2.198409 -3.608677 0.906278 2.101276 -0.741292 -4.078142 -0.386398 -1.578928 -1.723182 1.090512 0.447025 0.609177 3.921077 -7.177086 2.906795 -0.110772 -0.691953 2.841870 -0.325071 -0.515472 -5.743593 0.631519 2.515580 2.828513 0.705681 -0.039800 -1.001542 -3.736021 1.154986 0.739140 2.176372 -1.778060 3.508086 -1.402785 -1.996272 -2.397680 -2.602442 -0.864496 -0.152883 -1.419744 1.516453 1.888137 -7.350956 3.285397 -1.758697 -2.688986 0.540941 -0.169717 3.330571 -3.268726 -4.216654 1.828427 -2.302775 -4.656668 -2.945832 -1.171277 1.189096 0.651435 -1.261676 -2.294346 -4.852392 4.222024 -0.866589 2.469620 2.610628 0.925051 5.854169 1.638459 -3.712153 -2.398935 -2.434784 1.423966 -1.766168 -0.792403 -1.411061 -1.285277 2.072772 5.265412 -0.282336 0.641098 -1.576955 3.768482 -4.449279 -2.017940 2.639059 1.635093 -0.675383 3.461156 2.830362 -2.315232 -1.663548 -3.607482 0.459204 -0.608748 -2.043969 1.667419 -4.420582 -0.565765 2.678774 -0.792453 -1.945463 1.826579 0.093630 -0.517168 -2.450368 5.310843 6.556730 -4.007995 1.447889 -3.214010 2.657336 -4.763129 -2.527672 -0.706480 0.467433 0.286208 0.175478 1.223594 1.465212 1.513395 -2.926239 -2.330082 -0.460643 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.121920 0.285697 0.408187 -0.646375 0.864158 0.471727 0.001535 0.004627 -0.441503 -0.585623 -0.343180 -0.641559 -0.877482 0.650457 -0.283563 0.224817 0.802941 -0.095795 -0.028022 -0.369115 0.571426 -0.188184 0.849392 0.468034 -1.030773 0.119872 0.307213 0.796978 0.180998 0.910377 0.073339 -0.884425 -0.208248 0.158004 0.693031 -0.419042 0.045540 0.143565 -0.234130 -1.274028 -0.230024 0.716396 -0.169291 0.290655 0.198767 0.315660 0.865491 0.563155 -0.487044 0.398729 0.736403 0.415646 0.363196 0.079622 -0.245737 0.049752 0.455412 -0.496089 -0.231613 0.140618 -0.112284 -0.546620 0.080199 0.664938 0.975357 -0.366399 -0.312525 0.278019 -0.008871 0.208819 0.030994 0.657856 0.060103 0.286685 0.622503 -0.351982 -0.066375 -1.214519 0.461952 -1.506904 -0.565034 -0.792981 0.261276 0.880767 0.065571 -0.260176 1.430817 -0.133868 0.021688 0.685681 0.872060 -0.319866 0.003900 -0.935772 -0.397859 0.157585 -0.401876 -0.471810 -0.107456 0.608256 -0.313467 -0.517786 0.000000 -0.351307 -0.481878 -0.198865 -0.671676 0.777309 -1.029267 -0.296661 -0.983521 0.614019 0.000000 -1.098790 -0.469618 -0.250981 -0.049622 -0.057731 0.239731 -0.304501 0.252623 0.462761 -0.362118 0.063624 -0.612451 0.790819 0.603272 -0.403335 0.073435 0.432920 0.227292 0.518929 0.462623 -0.294757 -0.705825 0.596328 -0.004165 -0.220542 -0.575861 0.286603 0.267171 -0.638998 -0.067273 0.349515 -0.207592 -0.204497 -0.538234 -0.917981 0.421696 2.050129 -0.300438 0.191486 0.047323 -0.635705 0.604691 0.284744 -0.246332 0.353672 0.300556 0.612614 -0.564895 -0.546453 0.558947 0.805971 0.253234 -0.498610 -0.092301 0.008733 0.087317 -0.081087 0.254887 0.467026 -0.381694 -0.051733 -0.139618 -0.131090 1.278044 -0.112958 -0.688729 0.359348 0.794128 -0.518183 -0.479176 -0.106252 -0.583019 -0.484377 0.412174 0.003402 0.363889 0.864003 -1.655478 0.679700 0.405061 -0.241311 0.401959 -0.440328 0.295127 -1.003500 -0.098512 0.576438 0.684530 -0.239794 0.248192 -0.326794 -0.820926 0.354926 0.244458 0.545144 -0.450726 0.570288 -0.118208 -0.419003 -0.408281 -0.248264 -0.529672 0.005239 -0.470888 0.237787 0.294050 -1.416399 0.776428 -0.401064 -0.080756 0.274805 0.030404 0.744227 -0.593252 -0.709667 0.483566 -0.088072 -0.644064 -0.276468 -0.154391 0.520811 0.049863 0.050579 -0.566736 -1.006935 0.426269 -0.148519 0.321219 0.423377 0.241353 0.599820 0.199229 -0.456838 -0.407251 -0.525919 0.355423 -0.008339 0.156600 -0.181724 -0.085429 0.434455 0.907066 0.039332 -0.052055 -0.386567 0.816593 -0.406360 -0.238840 0.318701 -0.335244 -0.364550 0.429477 0.451395 -0.347001 -0.486583 -0.907868 0.476138 -0.263885 -0.340779 0.298659 -0.789756 -0.203993 0.726734 -0.243857 -0.638245 0.501495 0.256650 -0.387460 -0.453664 1.276724 0.631981 -0.337700 0.513251 -0.669793 0.500802 -0.936685 -0.351132 -0.392719 -0.206899 0.037957 0.065565 -0.022947 0.395001 0.181564 0.152600 -0.237687 -0.352285 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::deque() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_base() = 0.005082 0.380833 0.596442 -0.581916 1.257868 0.388255 0.378473 0.045049 -0.356303 -0.761964 -0.200337 -0.324188 -1.177589 0.477920 -0.475743 0.040149 0.698194 -0.235790 0.383800 -0.671180 0.682906 -0.643818 1.329496 0.728110 -1.550335 0.253194 0.034619 0.776773 0.136076 1.396673 0.155786 -0.801205 0.192421 0.120128 1.074366 -0.478957 -0.150921 -0.093873 -0.613006 -1.349325 -0.417454 0.770256 -0.301903 0.671276 0.419966 1.041880 1.184975 0.581341 -0.738362 0.960579 0.720889 0.094445 0.770581 0.281501 -0.100639 -0.151774 0.574994 -0.336470 -0.421627 0.275434 -0.636330 -1.169032 0.324101 0.731555 1.247856 -0.493693 -0.135508 -0.011097 -0.470930 0.365657 0.314764 1.039386 0.360228 0.063678 1.263932 -0.348894 0.004249 -1.486196 0.068666 -2.296001 -0.818508 -1.176285 0.491919 0.702154 0.477917 -0.398147 1.526604 0.307134 0.199955 0.608261 0.693823 -0.355754 0.169818 -0.646400 -0.463886 -0.210783 -0.330668 -0.271412 0.078555 0.381366 -0.525697 -0.290272 0.279620 -0.430354 -0.355439 -0.387564 -0.920631 0.807675 -1.330233 -0.239821 -1.299224 0.341333 -0.227502 -1.327288 0.031313 -0.363717 0.512139 0.062160 0.526340 0.219753 0.367106 0.698683 -0.308647 -0.070726 -0.662848 1.258313 0.775460 -0.056921 0.196415 0.509488 -0.391938 0.406554 1.247141 0.208738 -0.874489 0.449584 -0.032702 0.117742 -0.277373 0.531867 0.789290 -0.612398 -0.232418 0.026193 0.029080 -0.249136 -0.352824 -0.913293 0.631021 1.910741 -0.474261 0.552596 0.170264 -0.731584 0.624433 0.451815 0.265789 0.857512 0.822522 0.288139 -0.724099 -0.590770 0.454801 0.608763 0.043025 -1.076264 -0.202509 0.073647 0.214244 -0.111639 0.027664 0.315135 -0.116295 -0.397219 0.179681 -0.522787 1.381294 -0.317541 -0.985062 0.376797 0.474936 -0.650655 -0.550013 -0.218016 -0.360577 -0.434336 0.200757 -0.074411 -0.005366 0.759128 -1.941560 0.646020 -0.102809 -0.103766 0.708629 -0.387601 0.368400 -1.396146 -0.022671 0.325773 0.447664 0.122527 -0.126724 -0.146295 -0.801591 0.746194 -0.045482 0.652438 -0.576112 0.781766 -0.321280 -0.687395 -0.657835 -0.981077 -0.235479 0.251144 -0.545359 0.099518 0.364876 -1.904318 0.395272 -0.483004 -0.627590 0.400436 0.413012 0.819803 -0.266726 -0.845878 0.326876 -0.626466 -1.207712 -1.017869 -0.118941 0.159204 -0.019857 -0.294380 -0.805372 -1.135545 0.820822 -0.535428 0.410892 0.670652 0.427692 1.506128 0.584477 -1.019731 -0.773857 -0.590733 0.564215 -0.356455 -0.031628 -0.087158 -0.332898 0.306618 1.231416 0.237237 0.415427 -0.324279 1.322585 -0.754787 -0.409718 0.812260 -0.005293 -0.045365 0.903387 0.758278 -0.184762 -0.704822 -0.725484 0.304239 0.037581 -0.230840 0.673722 -0.990185 -0.055725 0.308645 0.187761 -0.805710 0.358860 -0.036457 -0.074516 -0.821534 1.501602 1.455506 -0.883083 0.392191 -0.296006 0.499512 -0.926080 -0.126553 -0.615378 -0.119272 0.426678 0.437304 -0.007303 0.644409 0.594930 -0.461013 -0.169753 -0.331830 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.053172 0.402366 0.318813 -0.083756 0.461611 0.168547 0.216516 0.156755 -0.260168 -0.522489 -0.154892 -0.471152 -0.796841 0.606238 -0.064596 0.137441 1.010996 0.264104 0.094311 -0.328197 0.306898 -0.572391 0.977272 0.935371 -0.851524 0.205409 0.446001 0.328297 0.128549 0.532456 -0.202066 -0.606364 0.427920 -0.321060 0.382018 -0.525853 -0.054196 -0.217980 -0.183473 -1.362770 -0.125710 0.148300 -0.117936 0.013624 0.002782 0.674775 1.057275 0.522250 -0.298068 0.476791 0.340636 -0.077619 0.237753 0.165158 0.085567 0.100360 0.187999 -0.024661 -0.466335 0.171409 -0.067537 -1.100290 -0.126471 0.584695 0.857975 -0.158446 -0.097140 0.212203 -0.227548 0.092209 -0.012521 0.377715 0.463325 0.225593 0.620441 -0.671719 -0.147701 -1.257742 -0.258149 -2.184491 -0.727512 -0.745480 0.603973 -0.049083 0.316248 -0.021479 0.954278 0.059822 0.350627 0.376444 1.055629 -0.763809 -0.288928 -0.447374 -0.009174 0.349840 -0.479149 0.017692 0.409049 -0.256961 -0.585727 -0.659428 0.652008 0.013088 -0.419754 -0.306247 -0.247284 0.634799 -0.964868 -0.430902 -1.160278 -0.355310 -0.071551 -1.044045 0.248211 0.113951 0.672224 0.481437 -0.080289 -0.556882 0.184971 0.495350 -0.084585 -0.460222 -0.198136 0.786195 0.263826 -0.063899 0.394439 0.298239 0.310125 0.805669 1.008905 -0.114445 -0.287735 0.281166 -0.458771 -0.034811 -0.388568 -0.210340 0.398181 -0.663614 0.069500 0.295291 -0.467393 -0.194353 0.369836 -0.333021 0.435793 1.412708 -0.065394 0.375480 0.176407 -0.777853 0.456814 -0.317844 -0.328631 0.268215 0.678108 0.505823 -0.698965 -0.419243 0.184801 0.856781 0.378334 -0.806664 -0.325073 -0.251792 0.175741 -0.142564 0.252673 0.258753 0.195752 -0.399473 -0.040573 0.345872 1.198839 -0.568767 -0.593571 0.128806 0.044036 -0.098085 -1.005204 -0.076478 -0.277156 -0.122783 0.004264 -0.039564 0.142240 0.785323 -1.408718 0.657984 -0.340973 -0.332670 0.474667 0.066278 -0.201549 -0.930962 0.317572 0.654176 0.720567 0.233550 0.095079 -0.127424 -0.749958 -0.084638 0.078811 0.417635 -0.332497 0.588856 -0.059584 -0.574739 -0.558515 -0.309072 0.068874 -0.308263 -0.104193 0.299577 0.415531 -1.578479 0.779959 -0.262182 -0.473462 0.192833 -0.032351 0.476012 -0.793607 -0.942723 0.321558 -0.276408 -0.643198 -0.366096 -0.218744 0.370518 0.031794 -0.319700 -0.215023 -0.834314 0.669562 -0.015469 0.388321 0.470856 0.268010 1.135565 0.182369 -0.646614 -0.462248 -0.184165 0.139325 -0.588107 -0.208047 -0.301359 -0.325461 0.524433 1.196003 0.052893 0.030004 -0.182136 0.731793 -0.961579 -0.429618 0.598805 0.636671 -0.097626 0.501245 0.615727 -0.631984 -0.422534 -0.529324 -0.097468 0.080202 -0.558014 0.224881 -0.872918 -0.021413 0.586572 -0.166836 -0.315182 0.445383 -0.076013 0.014583 -0.356826 0.788124 1.249552 -0.905703 0.223032 -0.568042 0.370604 -0.988759 -0.581315 -0.015061 0.353560 -0.106370 -0.000394 0.210854 0.214578 0.082202 -0.435426 -0.333680 -0.223769 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -0.069960 4.663618 5.555731 -5.041240 6.985055 7.937218 0.816766 -1.300833 -3.101436 -1.681621 -1.364074 -7.970812 -7.562761 5.186948 -2.000625 -0.111728 6.875972 -2.165308 -1.551156 -1.282320 2.538384 2.481314 7.715852 6.831123 -8.430407 2.396137 0.806671 3.288056 0.017321 7.502108 -3.769377 -7.677532 -1.037483 2.509684 3.431223 0.059505 -2.520865 -3.801957 -0.645283 -10.395759 -1.282004 6.188106 -2.954165 0.986320 2.791216 2.705610 11.319228 3.630901 -2.001275 1.281415 3.805035 1.716809 3.175239 -0.346900 2.115645 -0.501922 8.040856 0.136558 -1.978295 -0.231588 -1.533089 -1.219132 -1.780321 6.457746 6.992583 -0.093766 -3.463066 -1.367028 0.859622 0.229940 -1.516912 5.977979 3.310421 6.238007 4.452508 1.803773 2.707082 -4.800264 2.914358 -6.216134 -6.118815 -4.097560 3.174791 5.736720 1.357253 -5.963071 10.415607 -1.405802 0.593879 2.235076 9.129655 -3.884128 -0.065074 -3.918951 -4.461704 -0.128921 -1.382820 0.291080 -1.837121 0.097262 -5.173679 -3.684458 1.065641 -1.592614 -4.197689 2.910845 -2.225243 4.344505 -4.841956 -0.111703 -5.405244 2.625555 1.226096 -9.938411 -6.747505 -1.412540 -1.205876 0.676033 -1.617805 -3.910707 2.173976 2.675991 -4.002178 -0.588338 -5.708500 7.941531 6.274567 -1.010795 0.722373 1.948166 4.385101 4.354499 2.390301 -1.846153 -1.788328 0.827738 0.269002 -0.643585 -1.616177 2.532620 -0.750542 -2.868048 -0.459498 3.246318 -2.119394 1.700728 -6.632318 -4.366645 1.138933 19.732180 -4.469627 4.868826 0.321047 -6.433336 5.510401 0.957738 -3.545681 0.763699 2.797335 6.853110 -7.923143 -3.609198 6.225336 8.094920 1.628111 -5.965777 4.985482 2.156649 -1.493540 -3.619147 4.867759 0.644084 0.606532 -2.040238 -1.524537 2.595037 12.877632 -2.099155 -12.461089 2.038955 2.211583 1.766360 0.122274 -0.000805 -0.628739 -1.562548 3.562961 -0.091757 4.821656 6.900398 -13.516484 5.446968 2.372411 -5.540481 8.742258 -2.028962 -1.189058 0.077437 0.470217 5.725049 5.066752 1.787676 -3.187867 -3.755312 -6.453145 1.014181 1.970485 2.751577 -5.552291 6.051677 0.986789 -5.900097 -3.419331 -7.811287 -2.332410 -0.179839 -8.051585 1.904701 -1.311791 -13.040525 7.754331 2.354968 -1.002481 -0.824366 -3.509033 2.620477 -3.958949 -6.263833 1.603070 -3.101705 -5.529720 -1.135384 -2.824806 1.412747 3.110674 4.345712 -8.874681 -8.966123 6.661152 -0.078310 6.431321 4.288853 2.040538 4.411484 5.883849 -3.376428 -3.002998 -6.595755 7.887617 1.938881 -3.154038 0.062169 -4.600256 2.974844 6.571998 -2.394770 -0.550335 -7.886015 4.422081 -2.698739 -0.353038 2.272634 -2.872883 -4.713151 0.305228 3.853061 0.000883 -1.703203 -6.358076 -2.044001 -5.175192 -4.070682 2.249964 -4.200671 -0.861943 4.777343 -3.629644 -4.783540 2.036558 -1.062321 -3.297258 -0.133895 7.786444 5.096005 -4.068763 5.402204 -6.532838 6.544580 -7.421504 -4.937688 0.751418 -5.561492 -1.802091 -2.834128 -1.017498 2.696701 1.061368 -1.519894 -2.009553 1.250547 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.096239 0.499968 0.926542 -0.520466 0.525887 0.402312 0.112524 0.230812 -0.494564 -0.295316 -0.223042 -0.759122 -0.713139 0.614207 -0.148313 -0.271932 1.014489 0.242724 -0.124928 -0.238903 0.007420 -0.111275 0.801432 0.982235 -0.899187 0.343540 0.078652 0.509741 0.063304 1.086834 -0.488197 -0.748043 -0.144250 0.476020 0.556125 -0.420524 -0.250992 -0.330189 -0.470314 -1.555800 -0.032570 0.778634 0.089111 -0.045143 0.389352 0.440343 1.232801 0.409227 -0.158998 0.158287 0.320524 0.220005 0.384740 -0.014452 0.355935 0.089999 1.102261 -0.099048 -0.384584 0.234650 -0.038916 -0.599635 -0.165899 0.690561 0.778653 0.030590 -0.270186 -0.522243 0.143782 0.033502 -0.032890 0.412988 0.291283 0.560127 0.312700 0.140664 0.525722 -0.649825 0.342069 -1.228531 -0.755470 -0.595708 0.848838 0.695106 -0.063299 -0.599676 1.005292 -0.222960 0.393447 0.083330 0.961154 -0.356393 -0.159901 -0.386084 -0.435093 0.357167 -0.177359 -0.160584 -0.085913 -0.026114 -0.535744 -0.310673 0.496468 -0.134400 -0.485478 0.757540 -0.144651 0.583352 -0.748349 -0.028987 -0.793847 0.145857 0.232328 -0.958594 -0.279802 -0.222941 -0.055278 0.250044 -0.257746 -0.309585 0.226229 0.251999 -0.404538 0.168615 -1.275356 1.047001 0.247268 -0.245477 0.147561 0.091282 0.395100 0.165886 0.311930 -0.335677 -0.090741 0.349847 -0.266225 -0.254981 -0.404844 0.026782 -0.004620 -0.350521 -0.159040 0.093024 -0.456987 0.158413 -0.812831 -0.247003 0.322942 1.970433 -0.337015 0.482402 0.011283 -0.673862 0.787241 0.300408 -0.429788 0.085189 0.470996 0.653380 -0.719624 -0.369974 0.221914 0.934005 0.362780 -0.443022 0.298216 -0.072377 -0.276709 -0.058185 0.611935 -0.042617 0.019680 -0.379557 -0.217784 0.169122 1.264593 -0.004136 -1.429171 -0.076152 0.004939 -0.007174 -0.177547 0.169568 0.046429 -0.015278 -0.076311 -0.170968 0.543479 0.763620 -1.852271 0.838220 0.068138 -0.640380 1.025901 -0.403654 -0.074257 -0.415563 0.140393 0.621984 0.938617 0.198722 -0.417093 -0.187870 -0.710656 -0.122225 0.087100 0.399458 -0.596263 0.605696 0.185570 -0.668782 -0.330304 -1.044293 -0.060762 -0.087215 -0.823331 0.217858 0.067917 -1.499784 0.819041 0.139080 -0.164201 -0.052554 -0.278048 -0.128288 -0.688841 -0.720996 -0.036350 -0.091796 -0.701638 -0.291950 -0.440042 0.327151 -0.011387 0.201957 -0.674177 -0.808918 0.707980 -0.141554 0.575037 0.557542 0.110073 0.564926 1.267953 -0.257582 -0.155127 -0.375440 0.605234 -0.251298 -0.135016 0.228231 -0.614945 0.280926 1.006031 -0.153166 0.086777 -0.676868 0.725244 -0.093123 -0.341106 0.316219 -0.709198 -0.137155 0.252829 0.486741 -0.399929 -0.320151 -0.752236 -0.361024 -0.079931 -0.334359 0.369345 -0.637903 -0.036553 0.586646 -0.357726 -0.690522 0.303298 -0.208854 -0.457748 0.017997 0.922000 0.605701 -0.424171 0.922815 -0.584502 0.586987 -0.852703 -0.275593 -0.234260 -0.393388 -0.326109 -0.115808 -0.049865 0.232656 0.086510 -0.025512 -0.200853 0.165317 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = 0.100547 0.592691 0.939344 -0.497284 0.534410 0.460509 0.118140 0.038051 -0.451386 -0.122393 -0.290402 -0.682036 -0.568323 0.592537 -0.021815 -0.004629 1.027851 0.218847 -0.167723 -0.263660 0.173592 -0.423794 0.822501 1.044627 -0.920269 0.447837 0.295807 0.515397 0.164983 1.131723 -0.828632 -0.414765 -0.159896 0.081238 0.580477 -0.547948 -0.327370 -0.328762 -0.152414 -1.662372 -0.056919 0.535753 0.206730 -0.052937 0.304873 0.432141 1.314882 0.417808 -0.173246 0.154213 0.304061 -0.034330 0.500871 -0.004233 0.472712 0.406841 1.414579 0.246375 -0.284359 0.222134 -0.013152 -0.652259 0.064192 0.702664 0.808693 -0.002416 -0.342896 -0.283036 0.246145 -0.109562 -0.116160 0.526842 0.103321 0.559671 0.333347 -0.463187 0.812346 -0.843933 0.286008 -1.164962 -0.823259 -0.600479 0.504051 0.308903 0.295308 -0.387866 1.102168 -0.302233 0.400237 -0.207822 0.964172 -0.666498 -0.082904 -0.323299 -0.424338 0.248725 -0.128246 -0.198929 0.117402 -0.241907 -0.533280 -0.486338 0.867372 0.040996 -0.586570 0.675148 -0.133678 0.574863 -0.623219 -0.376151 -0.790484 -0.123960 -0.123884 -0.971808 0.061174 -0.290538 0.014783 0.212961 -0.228927 -0.759179 0.201118 0.453944 -0.363161 -0.151881 -1.124503 1.115235 0.396463 -0.293017 0.180084 -0.030107 0.397722 0.369679 0.545695 -0.340968 -0.105352 0.378772 -0.469513 -0.254187 -0.418852 -0.082361 0.050190 -0.437842 -0.438336 0.238368 -0.449356 0.524268 -0.109656 -0.176112 0.256454 2.280370 -0.317622 0.463056 0.016500 -0.771488 0.977676 0.293000 -0.507874 0.191538 0.512836 0.734692 -1.395864 -0.423220 0.191768 0.992800 0.351526 -0.645894 -0.095056 -0.183140 -0.309513 0.066000 0.571414 -0.123230 0.076142 -0.420236 -0.206845 0.077699 1.555334 -0.265182 -1.379058 0.001780 -0.322987 -0.264782 -0.802508 0.059105 -0.320177 -0.087425 -0.459246 -0.182441 0.531256 0.757455 -1.873997 0.871175 -0.273092 -0.919290 1.339880 -0.424393 -0.067686 -0.629635 0.162172 0.628391 0.930412 0.089721 -0.464320 -0.211109 -0.786243 -0.128512 -0.004556 0.339146 -0.695546 0.722347 0.190001 -0.775435 -0.278920 -0.856940 0.040353 -0.338917 -0.662886 0.266925 -0.045933 -1.405896 0.829527 0.207479 -0.165730 0.273642 -0.258056 -0.190876 -0.660535 -0.724563 0.072356 0.088882 -0.278153 -0.314667 -0.443557 0.388069 -0.021637 -0.041073 -0.828882 -0.960085 0.510327 -0.310617 0.548131 0.637346 0.137791 0.494983 1.303729 -0.328487 -0.338337 -0.101050 0.136148 -0.137120 -0.161540 -0.296232 -0.690041 0.411187 1.120837 -0.080325 0.365767 -0.647835 0.746956 -0.352824 -0.333190 0.314413 -0.520871 -0.309347 0.035080 0.458481 -0.328970 -0.326838 -0.644471 -0.562291 -0.060352 -0.325129 0.469166 -0.667163 -0.100940 0.620797 -0.487081 -0.515001 0.401688 -0.211289 -0.328146 -0.036779 0.932880 0.717170 -0.449315 0.636631 -0.550794 0.562807 -0.874483 -0.192957 -0.188549 -0.094202 -0.459618 -0.197365 0.264781 0.308629 0.109465 -0.139267 -0.051653 -0.099189 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.177492 0.833652 0.772135 -0.461977 1.866403 0.747490 0.770636 0.239822 -0.647212 -1.602141 -0.301881 -1.171501 -2.588822 1.413977 -0.435633 0.476430 2.166514 -0.003527 0.519645 -1.058870 1.280787 -1.607442 2.847475 2.191343 -2.751831 0.502393 0.677290 1.109714 0.253531 1.790560 0.037502 -1.669024 0.989927 -0.744439 1.598362 -1.079244 -0.311730 -0.400282 -0.620179 -3.310552 -0.754550 1.125626 -0.660074 0.712701 0.351986 2.159339 2.746039 1.413148 -1.235228 1.818414 1.110318 -0.519133 1.280070 0.505844 -0.038686 -0.152528 0.349977 -0.052341 -1.150234 0.522538 -0.834266 -2.908147 0.127499 1.566114 2.574214 -0.846938 -0.436822 0.569270 -0.835536 0.505876 0.196291 1.820654 1.314982 0.291562 2.484730 -1.523111 -0.508835 -3.509690 -0.384192 -5.613807 -2.005080 -2.150100 1.391078 0.495948 1.138136 -0.681797 3.090043 0.404672 0.466750 1.387505 2.405402 -1.674647 -0.270357 -1.361816 -0.287158 0.169130 -1.148764 -0.112927 1.032000 -0.211624 -1.543175 -1.347536 1.179023 -0.411027 -1.004523 -1.255144 -1.352151 1.823216 -2.569012 -1.058046 -3.186616 -0.328127 -0.366749 -3.050594 0.495704 0.029957 1.337037 1.002221 0.257214 -0.670901 0.744168 1.306285 -0.336718 -1.073396 -0.500437 2.573708 1.282933 -0.020230 0.890076 1.275805 0.139071 1.825252 2.988536 0.175687 -1.301874 0.820939 -0.746710 0.363424 -0.720327 0.148502 1.615405 -1.664277 -0.336273 0.470700 -0.662265 -0.467445 0.530686 -1.370190 1.091835 4.161733 -0.549950 1.222402 0.583534 -1.900427 1.628904 -0.229767 -0.167087 1.288170 1.921498 1.154878 -2.182600 -1.196757 0.991655 2.074152 0.569673 -2.616546 -0.769397 -0.103720 0.765895 -0.627261 0.498930 0.842810 0.510280 -0.995433 0.248711 0.201937 3.288115 -1.631710 -1.796797 0.643927 0.585407 -0.556837 -2.530768 -0.385048 -1.014509 -0.809283 0.263664 0.020172 0.076218 1.938555 -3.623270 1.565633 -0.693863 -0.558396 1.523890 -0.087499 -0.136300 -3.054497 0.421663 1.277830 1.345157 0.648626 -0.038224 -0.460875 -2.037565 0.706702 0.144207 1.189792 -1.026140 1.901430 -0.824052 -1.332622 -1.520748 -1.361074 -0.281949 -0.400791 -0.577452 0.680338 1.163821 -3.938702 1.535956 -0.804829 -1.501736 0.624627 0.409327 1.764211 -1.421258 -2.424135 0.971367 -1.326583 -2.360749 -1.652953 -0.489452 0.504659 0.306812 -1.129262 -1.102159 -2.615995 2.110376 -0.534653 1.262242 1.390877 0.786529 3.432751 0.953738 -2.340992 -1.517096 -1.128425 0.750773 -1.167532 -0.505072 -1.173316 -0.737463 1.179088 2.939532 0.328111 0.452546 -0.772537 2.349803 -2.561429 -1.039597 1.772935 1.246335 -0.229750 1.640823 1.705470 -1.065337 -1.129111 -1.574079 0.184798 -0.098417 -1.136584 0.919298 -2.367152 -0.175207 1.100755 -0.165449 -0.997616 0.924932 0.001665 0.037153 -1.463706 2.713946 3.501262 -2.479811 0.394149 -1.333556 1.203544 -2.415784 -1.158067 -0.468832 0.705981 0.301659 0.241987 0.680323 0.851847 0.887135 -1.670604 -0.905311 -0.654704 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.553526 0.769790 1.315022 -1.897717 2.871847 1.097842 0.474009 -0.019396 -1.165053 -2.137771 -0.853133 -1.157587 -3.177117 1.926767 -0.949624 0.838224 2.399264 -0.507265 0.306036 -1.736693 2.673771 -2.240775 3.248641 1.878040 -4.092482 0.303097 1.196809 2.726609 1.126194 2.767699 0.320958 -1.615048 -0.130625 -0.557273 2.980548 -1.653601 0.198028 0.339775 -1.021943 -4.161996 -1.038682 1.610274 -0.794000 1.327406 0.427854 2.617922 2.917673 2.045262 -2.298900 1.731825 2.584778 0.162388 1.567383 0.437366 -0.872111 0.086896 1.039218 -0.250933 -0.731418 0.571730 -0.819884 -3.114993 1.238632 2.301544 3.695594 -1.597301 -0.656685 1.400007 -0.376017 0.778727 0.398268 2.535961 0.627479 0.156155 3.297753 -2.697312 -0.430935 -5.358241 0.780577 -6.622421 -2.093746 -3.092626 0.795461 1.394359 1.042594 -0.845547 4.813114 0.256883 0.177524 2.436290 2.555357 -1.524775 0.165943 -3.148859 -1.251644 0.096755 -1.511720 -1.239138 0.740674 1.330150 -1.311535 -1.596844 0.575781 -0.855511 -1.565923 -1.764018 -2.607222 2.728080 -3.300008 -1.376107 -3.803547 1.151162 -0.590745 -4.023696 0.293485 -1.260222 1.192967 -0.091832 1.368375 -0.659372 0.684534 2.239464 -0.822509 -0.642357 -1.552071 3.412951 2.302862 -0.921373 0.504449 1.528913 -0.117154 1.649781 3.293887 -0.265817 -2.842794 1.909925 -0.920242 -0.242501 -1.761017 0.935845 2.835338 -2.226996 -1.121407 0.688644 -0.320864 -0.523428 0.726208 -2.854142 1.755089 6.920926 -0.788578 0.884756 0.308026 -2.124394 2.660435 1.045644 -0.129992 2.237072 1.864145 1.354701 -3.513945 -1.943917 1.537334 2.407355 0.583476 -2.874418 -1.435470 -0.180109 0.563586 -0.425189 0.207902 1.398885 -0.912868 -0.512272 0.009648 -0.722914 4.343443 -1.379681 -1.790986 1.274496 1.884986 -2.360884 -3.363320 -0.666271 -2.128390 -1.739962 0.480498 0.050080 0.774014 2.759094 -5.308761 1.999765 0.033289 -0.614767 1.577577 -1.356543 0.934750 -4.972683 0.129340 1.453361 1.842883 -0.388637 0.304352 -0.698187 -2.823540 1.683506 0.371235 1.830503 -1.472496 2.203651 -1.091892 -1.338392 -1.790156 -1.074768 -1.587412 0.068370 -0.885427 0.661205 0.663613 -4.604623 2.134330 -1.842742 -1.072692 1.409986 0.650417 2.668531 -1.719088 -2.687865 1.720986 -0.484447 -2.303784 -2.469755 -0.314491 1.570476 -0.169730 -1.363288 -2.082631 -4.202686 1.692986 -1.486340 1.118097 1.549301 1.000661 3.535695 1.204199 -2.247674 -2.457629 -1.419364 0.400295 -0.341113 -0.154518 -1.741873 -0.266262 1.542738 3.409638 0.302133 0.903167 -0.494971 3.350040 -2.528865 -1.492335 1.513606 0.331494 -0.867325 2.012816 1.741827 -1.263016 -1.915797 -2.784456 1.196382 -0.277392 -1.320523 1.476798 -2.857186 -0.319813 1.796863 -0.023528 -1.524496 1.644544 0.785402 -0.427916 -2.225495 4.602311 4.054915 -2.240484 0.403703 -1.948505 1.743887 -3.051404 -0.929550 -1.404202 0.468378 0.902464 0.756819 0.757048 1.698740 1.188625 -0.823253 -0.647206 -1.580914 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.000611 1.014936 1.091491 -0.692563 0.964687 1.053178 0.200095 -0.138511 -0.465962 -0.444684 -0.288371 -1.148674 -1.196600 0.976364 -0.253566 -0.021538 1.537289 0.021169 -0.170163 -0.372143 0.424442 -0.136655 1.531028 1.569984 -1.552578 0.452393 0.755249 0.614297 0.235919 1.249720 -0.810896 -1.132771 0.102200 0.037949 0.626002 -0.508045 -0.337413 -0.755307 -0.103066 -2.220527 -0.185308 0.493872 -0.425283 -0.051100 0.270133 0.581354 2.141570 0.781868 -0.421416 0.224615 0.681570 0.282565 0.390291 0.032474 0.413190 0.101841 1.388576 0.238078 -0.375525 0.087853 -0.064588 -0.815312 -0.234293 1.263218 1.346341 0.029249 -0.396078 -0.086745 0.070893 -0.039800 -0.310000 0.842742 0.547149 1.128539 0.723384 -0.645157 0.529913 -1.640880 0.152165 -2.013232 -1.197250 -0.972228 0.566509 0.313619 0.467152 -0.460879 1.724361 -0.099798 0.514694 0.329494 1.808040 -1.070636 -0.193758 -0.643585 -0.640094 0.387310 -0.442856 0.195144 -0.063579 -0.374161 -0.953699 -1.007147 0.777110 0.024465 -0.837665 0.320462 -0.249256 0.845023 -1.046129 -0.361725 -1.281355 -0.186619 -0.081132 -1.871438 -0.534504 -0.235418 0.588446 0.341156 -0.295501 -1.169144 0.270644 0.795839 -0.455294 -0.486046 -0.870795 1.409230 0.915678 -0.166902 0.314858 0.115043 0.846823 1.047647 0.977687 -0.368135 -0.264834 0.218393 -0.520155 -0.251370 -0.553823 0.106837 0.147049 -0.697175 -0.085833 0.797408 -0.659076 0.150524 -0.055386 -0.662074 0.507747 3.720919 -0.470714 0.795958 0.151370 -1.418709 0.884607 -0.105029 -0.855418 0.219380 0.733120 1.245979 -1.798704 -0.669425 0.654058 1.578892 0.536461 -1.197382 0.162783 -0.061121 -0.316806 -0.421701 0.757944 0.057351 0.089552 -0.617100 -0.314700 0.739991 2.246276 -0.594902 -1.977375 0.194963 0.102798 0.046062 -0.811486 0.021029 -0.297063 -0.072897 0.242447 -0.154079 0.794684 1.293325 -2.812235 1.110181 -0.066065 -1.070768 1.438593 -0.190883 -0.381591 -0.490399 0.557505 1.233682 1.064371 0.289631 -0.312095 -0.464358 -1.245024 -0.153810 0.243642 0.560502 -0.917915 1.064561 0.310372 -1.209732 -0.837152 -1.041957 -0.045526 -0.434114 -0.958085 0.486650 -0.161178 -2.631863 1.580192 0.192070 -0.392674 0.076597 -0.726416 0.391631 -1.207564 -1.416489 0.360163 -0.317815 -0.653062 -0.260714 -0.555068 0.528231 0.345123 0.416175 -1.241111 -1.531233 0.912894 -0.085172 0.913863 0.880211 0.549016 1.172230 0.718637 -0.595246 -0.759366 -0.614776 0.956971 0.004863 -0.657308 -0.396802 -0.842097 0.739865 1.703196 -0.388934 0.028711 -0.965853 0.930966 -1.007754 -0.396862 0.509217 0.199271 -0.730188 0.130813 0.698584 -0.444906 -0.497757 -1.007359 -0.547089 -0.408662 -0.947613 0.437707 -1.016151 -0.069961 1.085360 -0.583634 -0.740651 0.610944 -0.246102 -0.203102 -0.028460 1.129226 1.480715 -1.021429 0.689710 -1.144551 0.935864 -1.613624 -1.048470 0.190750 -0.479295 -0.354581 -0.422919 0.025709 0.486871 0.113491 -0.238599 -0.231762 -0.006189 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.038901 0.455737 0.460681 -0.196647 0.535063 0.255328 0.223688 0.096370 -0.348959 -0.627110 -0.037133 -0.877824 -1.019375 0.701242 -0.109746 0.037732 1.036894 0.069922 0.011649 -0.350131 0.218231 -0.385497 1.091168 1.084350 -0.970024 0.267671 0.336399 0.341193 0.136366 0.527292 -0.127281 -0.805766 0.323276 -0.093623 0.412785 -0.281289 -0.188840 -0.364001 -0.185405 -1.456227 -0.178949 0.471590 -0.145962 0.013886 0.117907 0.788523 1.279469 0.571821 -0.294440 0.520123 0.418912 -0.135556 0.362303 0.088354 0.167537 -0.215332 0.418995 -0.051182 -0.491764 0.179601 -0.090192 -1.008497 -0.282915 0.733516 0.950417 -0.150450 -0.263626 0.058175 -0.142656 0.135181 -0.061245 0.561931 0.593972 0.453045 0.697250 -0.386862 -0.016279 -1.262643 -0.097440 -2.213577 -0.879625 -0.606066 0.861020 0.234535 0.183215 -0.260790 1.143945 0.094346 0.205994 0.466226 1.255912 -0.661460 -0.284596 -0.353716 -0.143244 0.344463 -0.466548 0.161460 0.309427 -0.132603 -0.717863 -0.510296 0.557538 -0.126187 -0.501812 -0.052236 -0.239995 0.614606 -0.991343 -0.216599 -1.107623 -0.229293 0.183167 -1.260538 -0.014307 0.128608 0.514172 0.507542 -0.255771 -0.414026 0.258674 0.265913 -0.199377 -0.276491 -0.564493 0.922467 0.368928 0.073757 0.370795 0.434137 0.537655 0.746540 0.809602 -0.169320 -0.219214 0.184903 -0.306379 0.098855 -0.260045 -0.134312 0.359681 -0.583684 0.127738 0.210693 -0.490600 -0.254695 -0.074524 -0.367408 0.286450 1.695978 -0.176881 0.598194 0.254062 -0.815588 0.522871 -0.336821 -0.397866 0.198579 0.654801 0.690909 -0.595907 -0.435690 0.477106 1.092966 0.379502 -0.904682 0.005981 0.068907 0.132086 -0.319088 0.513641 0.225295 0.298084 -0.425676 -0.082751 0.518684 1.326312 -0.497276 -0.913427 0.100591 0.129576 0.201537 -0.766620 0.039988 -0.101417 -0.099640 0.128865 0.024784 0.270331 0.872199 -1.725730 0.746203 -0.085401 -0.366862 0.698329 0.047221 -0.377762 -0.924422 0.282974 0.714286 0.706292 0.336113 -0.066302 -0.225712 -0.859874 -0.075674 0.145674 0.342203 -0.474937 0.753865 -0.099611 -0.567555 -0.589143 -0.626283 -0.009084 -0.155803 -0.408435 0.395462 0.398080 -1.760652 0.911774 -0.107530 -0.511375 -0.140452 -0.217402 0.461190 -0.827353 -0.989737 0.218263 -0.591356 -0.986105 -0.406634 -0.361012 0.165872 0.126947 -0.139400 -0.397456 -0.828013 0.952602 -0.064100 0.638281 0.567084 0.235901 1.137469 0.465646 -0.672716 -0.355855 -0.347741 0.516584 -0.533933 -0.333252 -0.104397 -0.426244 0.461563 1.138632 -0.096566 -0.057264 -0.391274 0.665174 -0.834190 -0.477101 0.535745 0.361189 -0.211996 0.592773 0.599039 -0.512685 -0.213766 -0.779033 -0.260783 -0.211658 -0.608786 0.252928 -0.772865 -0.067245 0.621652 -0.304216 -0.421831 0.412941 -0.132566 -0.137257 -0.243022 0.880878 1.308175 -0.936075 0.412766 -0.814996 0.558833 -1.059588 -0.760616 0.095888 0.151572 -0.169430 -0.225011 0.092828 0.196376 0.203421 -0.605913 -0.498245 0.141072 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.039847 -0.091955 0.084967 -0.123571 0.043968 -0.157848 0.025863 -0.027115 -0.181315 -0.164620 0.076136 -0.200750 -0.073573 0.136109 -0.112437 0.003445 0.137869 0.064171 -0.009840 -0.129083 -0.023852 -0.083410 0.159434 0.187584 -0.116581 0.002966 -0.087886 0.126050 0.058393 0.090645 0.111294 -0.141699 0.008773 0.098810 0.050860 -0.071251 0.006652 0.120849 -0.053981 -0.190059 0.023367 0.121032 0.172472 0.020294 0.047440 0.158263 0.039261 0.096127 0.009814 0.187505 0.141082 0.072522 0.065237 0.021035 0.034553 -0.115496 0.131582 -0.254922 -0.079922 0.055750 -0.020358 -0.131882 -0.032803 0.120883 0.169206 -0.025024 -0.012222 -0.107343 -0.016689 0.099358 0.140791 0.035048 -0.043255 0.006140 0.015106 0.009388 0.076455 -0.227986 0.036293 -0.433694 -0.079257 0.030065 0.290108 0.241182 -0.101606 0.057225 0.137246 0.063916 -0.064652 0.089707 0.103323 0.039249 -0.070458 0.073001 -0.081957 0.079519 -0.068362 0.003839 -0.060286 0.266836 -0.073286 0.069244 0.052443 -0.071556 -0.037280 0.099347 -0.015104 0.059044 -0.295916 0.046889 -0.035322 0.123446 0.149829 -0.136355 0.064116 -0.114342 0.082393 0.014851 -0.089355 0.130036 0.053530 -0.089046 -0.055778 0.178179 -0.404295 0.045125 -0.057948 0.056225 -0.031972 0.049132 0.001629 0.027877 -0.114901 -0.132689 -0.003424 0.055681 0.014853 0.057933 -0.069281 -0.054260 0.058219 -0.090364 0.128162 -0.132075 -0.077178 -0.185323 -0.203287 -0.000343 0.010307 0.014412 -0.012675 0.144161 0.124500 -0.033758 -0.053582 -0.022420 0.091374 0.049146 0.078425 -0.034559 0.263815 -0.101760 0.068160 0.130653 0.078459 0.007433 -0.001145 0.080695 0.031927 0.075190 0.076789 0.016821 -0.083691 -0.065702 -0.027132 -0.027437 0.091183 0.155803 0.098203 -0.038855 0.076990 -0.019615 0.044838 0.041262 0.056705 0.065052 -0.015564 0.036435 0.029587 0.132434 -0.400945 0.140391 0.067416 0.130361 0.005069 -0.030160 -0.086905 -0.301353 -0.063408 -0.001907 0.145699 -0.022130 0.091126 0.118482 -0.112330 -0.005862 -0.027794 0.036692 -0.095452 0.053636 0.058002 -0.066216 -0.039293 -0.066384 -0.000996 0.093499 -0.078358 0.081408 0.166022 -0.271676 0.044894 -0.064791 -0.070043 -0.088376 0.040112 0.063460 -0.116224 -0.025939 -0.045052 -0.140977 -0.221167 -0.123357 -0.026034 -0.003686 -0.163017 0.008832 0.024418 0.092932 0.126999 -0.100495 0.060523 0.045117 -0.085253 0.052253 0.064923 0.011062 0.051788 0.081218 0.033197 -0.227418 0.033276 0.336298 -0.010801 0.014442 0.096142 0.043013 -0.084326 0.169347 0.149858 0.100964 -0.100152 0.052670 -0.129916 0.030339 0.238984 0.068478 -0.172845 0.037548 -0.154536 -0.007011 0.003133 -0.009997 0.140358 0.016457 0.063082 -0.030004 0.051925 -0.124553 0.082309 0.018212 -0.085707 0.032634 0.226973 0.109181 0.048284 0.161625 -0.124550 -0.010023 -0.106069 -0.060562 -0.076572 0.057073 -0.085934 0.041991 -0.156693 0.105268 0.085409 0.021852 -0.101041 0.171869 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::push_back(int const&) = -0.043741 3.042429 2.308773 -1.538446 2.903491 3.631226 0.647825 -0.225403 -1.121251 -1.314180 -0.980128 -3.364120 -3.603625 2.818422 -0.452523 0.245991 4.336237 -0.057423 -0.350475 -0.350980 1.119849 0.019273 4.137212 4.064622 -3.801415 1.252350 1.834864 0.942138 -0.557201 3.621027 -2.108776 -4.262667 0.499599 -0.010549 1.490007 -1.037984 -1.211112 -2.133394 -0.012500 -5.958342 -0.576498 2.113580 -1.504487 -0.343259 0.642153 0.379326 6.187963 2.047691 -0.866120 0.475159 1.216366 0.875365 1.063097 0.129189 1.386605 0.649384 2.623406 0.302232 -1.255911 0.164713 -0.564100 -1.702788 -1.050051 3.268701 3.357767 0.118667 -1.337854 -0.106749 -0.398153 -0.110907 -1.264037 2.427942 1.883375 3.031944 1.925030 -1.144015 0.611809 -3.661690 0.417986 -4.660327 -3.355116 -2.601343 1.148124 1.739451 1.624411 -1.950492 4.850555 -0.830827 1.359799 1.119790 5.358870 -3.134531 -0.552529 -2.124885 -1.463105 0.640081 -1.084634 0.287627 -0.287405 -1.727203 -2.867043 -3.116825 1.725528 0.159120 -2.168652 0.212655 -0.615656 2.484835 -2.609270 -1.219020 -3.809291 -0.354196 -0.402219 -5.169822 -2.075527 0.064738 0.252469 1.349320 -1.251308 -3.755613 1.236273 2.216369 -1.364214 -1.929364 -1.357242 3.889803 2.400458 -0.493958 1.047478 0.580453 2.466261 3.409350 2.798504 -0.729019 -0.438901 0.415020 -0.887961 -0.616167 -1.060925 0.243404 -0.532010 -2.045091 -0.396183 2.577402 -1.885115 0.728962 -1.144436 -2.087166 1.267812 10.268070 -1.772486 2.182427 0.203148 -4.247950 2.891561 -0.518568 -2.659835 -0.083875 2.086715 3.893587 -4.899285 -1.720146 2.328304 4.495888 1.501913 -2.975818 0.795637 -0.189008 -0.546136 -1.460624 2.270632 0.304120 0.784166 -1.847984 -0.846323 2.160408 6.630173 -2.111797 -5.436274 0.901850 0.765658 0.816887 -1.929131 -0.061066 -1.556414 -0.478332 1.249204 -0.603450 2.049650 3.623089 -6.585679 3.073028 -0.375033 -3.266802 3.852743 -0.252415 -0.945502 -0.771548 1.242371 3.731488 2.978490 0.963343 -0.509031 -1.981309 -3.371601 -0.425102 0.776498 1.676040 -2.430065 3.108672 0.268187 -3.552509 -2.276743 -2.745593 -0.517730 -1.797238 -2.750015 1.262810 0.405610 -6.496215 4.624248 1.102233 -0.826897 0.200714 -1.667568 1.463615 -3.021953 -4.323862 1.343870 -1.208632 -1.811536 0.273244 -1.676295 1.351176 1.661172 0.990370 -3.159150 -4.451017 2.855513 0.750615 3.087387 2.373152 1.716928 3.184318 2.038323 -2.127403 -1.666594 -2.900500 2.999512 0.144404 -1.787589 -1.807232 -2.411719 2.293977 4.475899 -0.834623 -0.477071 -3.532142 2.380931 -2.796617 -0.235127 1.697739 0.179181 -2.169316 -0.342173 2.220174 -0.807393 -1.451032 -2.765834 -0.595331 -1.810610 -2.702841 0.502371 -3.075525 -0.536089 3.102484 -1.986756 -1.997808 1.194138 -0.368454 -0.617295 -0.183389 2.847914 2.783105 -2.894184 1.899886 -3.084625 2.631587 -4.382868 -3.045521 0.607157 -1.269896 -1.105480 -1.569453 0.251579 0.974693 0.010646 -0.511495 -0.742314 -0.392486 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 0.159246 3.407252 3.364675 -2.089028 3.374496 3.954330 0.549356 0.153496 -1.527937 -1.639540 -1.054437 -4.515467 -4.491703 3.230579 -0.681044 -0.583160 4.886388 -0.177222 -0.553573 -0.520869 0.629564 0.711776 4.580660 4.545042 -4.490719 1.497281 1.452438 1.517299 -0.363822 4.329318 -2.291224 -4.940231 0.078596 1.280121 1.889580 -0.727283 -1.422621 -2.742119 -0.926087 -6.776802 -0.575477 3.213999 -1.614542 -0.234814 1.187646 1.053514 7.199328 2.237959 -0.951067 0.354097 1.536957 1.046288 1.456309 -0.033256 1.540395 -0.113884 3.943678 0.109570 -1.627628 0.325297 -0.524694 -1.998344 -1.726906 3.693705 3.833711 0.215670 -1.730502 -1.013947 -0.020812 0.015959 -1.201727 2.684284 2.526479 3.798293 2.145257 0.382086 1.174091 -3.371909 0.951345 -5.123390 -3.779186 -2.869755 2.410457 2.725659 0.694930 -3.014231 5.422849 -0.857244 1.539878 1.127059 6.116750 -2.745246 -0.725506 -2.364858 -1.805657 1.096917 -1.142675 0.329100 -0.497664 -1.308083 -3.117659 -2.666289 1.549038 -0.507316 -2.516269 1.701282 -0.771615 2.813415 -3.031290 -0.318694 -4.252343 0.070528 0.604679 -5.850615 -3.181191 0.127109 -0.189088 1.508426 -1.474746 -3.111782 1.373750 1.777716 -1.837020 -0.940229 -2.953651 4.782729 2.563365 -0.522678 1.018291 0.963665 3.206625 2.864527 2.338331 -0.975290 -0.471906 0.529766 -0.662673 -0.807178 -1.209277 0.550080 -0.646848 -1.919384 -0.185591 2.333885 -2.163132 0.689969 -3.199403 -2.206022 1.364620 11.376048 -2.096540 2.519845 0.106061 -4.396270 3.346873 0.001741 -2.996922 -0.246488 1.991971 4.562448 -4.487556 -1.810526 2.728608 5.116639 1.682860 -3.326231 2.166385 0.185496 -0.818915 -1.855285 2.969350 0.385849 0.805444 -1.805827 -1.009158 2.553821 7.082727 -1.754089 -7.604371 0.697082 0.804949 1.469643 -0.986046 0.378435 -0.501089 -0.463216 1.565951 -0.541094 2.563725 4.142164 -8.091131 3.635184 0.770237 -3.649830 4.875387 -0.775354 -0.994116 -0.371220 1.272152 4.129186 3.498629 1.521187 -1.450883 -2.298220 -3.741461 -0.505090 1.183501 1.843166 -2.735368 3.333517 0.465302 -3.549355 -2.437579 -4.409735 -0.654756 -1.027145 -4.088815 1.442787 0.075944 -7.878899 5.172398 1.305554 -0.934321 -0.681866 -2.372893 1.054210 -3.501394 -4.588921 0.831733 -1.808469 -3.263219 -0.125628 -2.018131 1.120572 1.782847 1.831947 -3.841763 -4.834244 3.779497 0.514230 3.505326 2.804059 1.706716 3.318180 3.726238 -2.088942 -1.399101 -3.343725 4.385736 0.065228 -1.919450 -0.746151 -2.772054 2.096936 4.934634 -1.327669 -0.478801 -4.581510 2.430095 -2.314008 -0.813579 1.704800 -1.074311 -2.202485 0.245880 2.406213 -0.854821 -1.375420 -3.580961 -1.301041 -2.143823 -3.013736 0.593840 -3.339421 -0.604377 3.675393 -2.380701 -2.888755 1.327840 -0.853637 -1.473277 -0.042908 3.500269 3.321729 -3.213573 3.284081 -3.786643 3.515478 -4.941865 -3.383587 0.677579 -2.425477 -1.263864 -1.844630 -0.042691 0.852013 0.071501 -0.678507 -1.296499 0.507453 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::size() const = 0.063123 0.571130 0.579541 -0.317946 0.527119 0.613142 0.087338 -0.034266 -0.258514 -0.227270 -0.132803 -0.817157 -0.662741 0.467919 -0.129250 -0.103834 0.647380 -0.072549 -0.095051 -0.033996 -0.079296 0.220625 0.668284 0.676592 -0.613111 0.292337 0.055893 0.165382 -0.200454 0.805019 -0.392251 -0.880902 -0.053479 0.410057 0.234236 0.007028 -0.290914 -0.423384 -0.145743 -0.985367 -0.078464 0.681821 -0.094516 -0.063147 0.257315 0.011279 1.111921 0.295481 0.009794 0.075543 0.156267 0.232449 0.292947 -0.017696 0.354317 -0.065630 0.790515 -0.265812 -0.274006 0.057709 -0.085761 -0.187216 -0.359578 0.556820 0.517331 0.074245 -0.297505 -0.333773 -0.068560 0.002068 -0.202207 0.427589 0.294067 0.679657 0.172805 0.358574 0.375433 -0.157958 0.213328 -0.459107 -0.596286 -0.326260 0.398352 0.797700 0.081481 -0.498816 0.812838 -0.144131 0.190204 0.014870 0.901368 -0.357667 -0.082624 -0.167404 -0.306256 0.108492 -0.096395 0.053015 -0.326995 -0.113071 -0.474285 -0.284458 0.246703 -0.102986 -0.366047 0.507650 -0.073398 0.309434 -0.500703 0.033913 -0.500959 0.048638 0.149643 -0.816466 -0.520764 0.048801 -0.253924 0.209937 -0.289680 -0.410109 0.263174 0.137599 -0.314469 -0.019124 -0.815707 0.663320 0.317521 -0.075071 0.130708 0.101925 0.510031 0.361425 0.080862 -0.171472 0.012082 0.023238 0.053970 -0.077738 -0.032264 0.109687 -0.390186 -0.238643 0.009379 0.274928 -0.306078 0.165827 -0.992413 -0.293061 0.116792 1.451983 -0.393693 0.432065 0.001855 -0.661952 0.454966 -0.020929 -0.482553 -0.150062 0.231435 0.703234 -0.386594 -0.244758 0.475202 0.778013 0.229411 -0.274973 0.522826 0.143032 -0.162048 -0.248727 0.577225 -0.008649 0.135533 -0.314544 -0.186986 0.299309 1.065992 -0.074622 -1.073373 0.109994 0.037509 0.334549 0.163117 0.110608 0.032325 -0.030742 0.193961 -0.099361 0.373353 0.573494 -1.178299 0.576346 0.164898 -0.598817 0.796656 -0.216822 -0.168279 0.151982 0.113725 0.602541 0.511451 0.195218 -0.197280 -0.380274 -0.526270 -0.100193 0.118190 0.222251 -0.483855 0.514741 0.146826 -0.638639 -0.315317 -0.806200 -0.050264 -0.122543 -0.775963 0.198363 0.132004 -1.106257 0.761114 0.334012 -0.096589 -0.199258 -0.334579 0.037705 -0.436807 -0.590472 0.018302 -0.384564 -0.514498 0.102411 -0.364905 0.039971 0.219262 0.340673 -0.583929 -0.484285 0.572175 0.145731 0.539185 0.424346 0.230829 0.272434 0.752761 -0.272118 0.015478 -0.511324 0.739046 -0.061952 -0.216629 0.234107 -0.505255 0.251452 0.652075 -0.171678 -0.127040 -0.706757 0.309892 -0.028869 -0.045920 0.221600 -0.511655 -0.339370 -0.030566 0.334352 0.010071 -0.129246 -0.566515 -0.195676 -0.420061 -0.377064 0.093425 -0.395413 -0.125344 0.532357 -0.417024 -0.555573 0.140371 -0.182052 -0.339414 0.075231 0.527593 0.139438 -0.299196 0.701910 -0.530570 0.463118 -0.650149 -0.423997 0.075495 -0.429172 -0.282284 -0.355987 -0.151216 0.101404 0.018594 -0.009652 -0.167946 0.178214 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::max_size() const = -0.037791 0.143272 0.247771 -0.138360 0.166366 -0.095238 0.077945 0.068389 -0.175916 -0.424638 0.027340 -0.453537 -0.506795 0.309740 -0.149254 -0.102783 0.445910 0.052522 0.026851 -0.256637 0.048388 -0.196113 0.501424 0.514530 -0.503657 0.060539 0.110555 0.287230 0.199689 0.170949 0.158307 -0.357200 0.110765 0.132274 0.278129 -0.129733 0.006038 -0.098564 -0.257582 -0.654539 -0.082488 0.257662 0.079820 0.046627 0.084019 0.499114 0.500371 0.290083 -0.174063 0.254193 0.310569 0.035546 0.167989 0.037419 -0.031357 -0.316984 0.192497 -0.236463 -0.232486 0.113854 0.003930 -0.559552 -0.136310 0.387357 0.511416 -0.072158 -0.045784 -0.055714 -0.050218 0.150071 0.054853 0.223172 0.243541 0.219726 0.311565 -0.087758 0.025922 -0.681549 -0.002638 -1.255300 -0.365998 -0.301821 0.559310 0.267835 -0.095040 -0.060288 0.503624 0.186113 0.094363 0.316429 0.542030 -0.133101 -0.155541 -0.149114 -0.110241 0.278852 -0.278697 0.114145 0.074894 0.213928 -0.289627 -0.101101 0.166581 -0.142270 -0.216811 0.073032 -0.148208 0.244394 -0.581884 0.049126 -0.485732 -0.058863 0.252169 -0.596425 0.060230 -0.045368 0.301881 0.183743 -0.054709 0.063016 0.056843 0.017605 -0.064437 0.096957 -0.617696 0.378464 0.095838 0.037636 0.126486 0.245765 0.216235 0.193011 0.213821 -0.122938 -0.162717 0.115349 -0.157339 0.024203 -0.192304 -0.044480 0.341266 -0.250868 0.141744 -0.047028 -0.214376 -0.349096 -0.211852 -0.228638 0.194554 0.577582 -0.015532 0.267000 0.171580 -0.286676 0.129187 -0.122527 -0.104295 0.145912 0.289223 0.233429 0.066247 -0.221339 0.168930 0.470914 0.168242 -0.278465 0.037155 0.101422 0.062123 -0.135216 0.221669 0.129056 -0.015673 -0.160230 -0.039658 0.243649 0.386178 -0.021863 -0.231185 -0.028496 0.178393 0.061380 -0.208022 0.078980 0.101841 0.004931 0.042937 0.062999 0.116355 0.402448 -0.912426 0.343410 0.148151 0.059071 0.174035 -0.066638 -0.187021 -0.623839 0.186953 0.290340 0.289825 0.088042 0.022239 -0.007028 -0.395700 -0.021910 0.062215 0.191026 -0.216946 0.287320 -0.025898 -0.168341 -0.327171 -0.308048 -0.021164 0.079412 -0.204784 0.182334 0.262527 -0.821011 0.396451 -0.207989 -0.276051 -0.195046 -0.126717 0.182734 -0.466064 -0.377458 -0.001189 -0.338366 -0.620507 -0.324516 -0.139616 0.065305 -0.111544 -0.069719 -0.110931 -0.211292 0.450603 -0.127040 0.193838 0.229535 0.085553 0.510700 0.239382 -0.217858 -0.121594 -0.036910 0.225434 -0.367888 -0.125602 0.259710 -0.120002 0.129102 0.547338 -0.092955 -0.066540 0.064660 0.326754 -0.217766 -0.392382 0.196746 0.029857 -0.005109 0.463114 0.222983 -0.340534 -0.095359 -0.459525 -0.091113 0.011135 -0.291769 0.171139 -0.333875 0.017699 0.276873 -0.069333 -0.267205 0.250609 -0.042122 -0.111679 -0.084730 0.475942 0.616411 -0.349723 0.283896 -0.423464 0.190484 -0.511846 -0.338773 -0.022456 0.056269 0.014241 -0.012822 -0.097372 0.109855 0.147557 -0.224566 -0.290645 0.199117 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -0.384971 0.281138 0.124687 -1.224427 1.272414 1.464321 0.392699 -0.736901 -1.104431 -0.387471 0.185037 -2.653024 -1.284203 1.194719 -0.490423 0.902813 2.109846 -0.278342 -0.563175 -0.332683 0.361317 1.070092 2.363821 2.342939 -1.453601 0.375204 -0.184003 0.258239 -0.415955 0.546587 -0.537850 -2.087650 0.285602 -0.268705 0.190284 0.064634 -0.784556 -0.400633 1.185757 -2.492845 -0.047949 1.311269 0.192403 -0.155876 0.337986 0.296488 2.322156 1.135934 0.102681 0.668480 0.872967 0.421947 0.881533 0.028395 0.601456 0.038617 1.089354 -0.551011 -0.423709 -0.505789 -0.476388 0.445624 -0.477557 1.609742 1.541670 0.104784 -1.214183 -0.040392 0.644651 0.109722 0.035448 1.495508 0.484838 1.220766 0.670114 -0.355237 0.561037 -1.454144 0.492096 -1.767233 -1.541131 -0.095887 0.932658 1.269658 0.826547 -0.896633 2.591196 -0.641223 -0.180347 0.599569 2.012648 -1.375978 -0.340758 -0.292690 -0.668801 -0.102217 -0.313815 0.353678 -0.013107 0.320804 -1.595985 -0.665664 0.304879 -0.085145 -0.971151 0.019571 0.285314 0.462149 -0.937957 -0.493160 -1.118666 1.059864 0.298384 -2.566079 -1.227238 -0.357681 -0.605810 0.291518 -1.375416 -1.573742 0.727726 0.048890 -0.997179 -0.363850 -1.167879 1.361563 1.373192 0.234964 0.291156 0.675053 1.075780 2.352388 0.043744 -0.967267 0.042626 0.191813 -0.018359 0.344874 -0.304788 -0.148006 -0.304289 -1.205683 0.583535 0.947222 -0.951507 0.264765 -0.941251 -0.390610 -0.138901 4.557250 -1.079570 1.863374 1.059724 -1.589094 0.955740 -0.824972 -0.427731 -0.231238 0.753812 1.514621 -1.553152 -1.063793 1.791730 2.367056 0.837271 -1.325045 1.095131 0.989716 0.236208 -0.701698 1.104941 0.173041 0.689854 -1.043364 -0.266557 1.102293 3.444162 -0.470869 -1.128407 0.373492 1.071333 0.860671 -0.163141 -0.228123 -1.273811 -0.155490 1.083853 0.524515 0.955748 1.853062 -2.634999 1.329537 0.215244 -0.718765 2.013263 0.395411 -1.198832 -0.427470 -0.325607 1.130625 1.391276 -0.048435 0.127035 -0.506943 -1.542715 -0.070443 0.375307 0.421641 -1.365143 1.526658 0.267822 -1.375719 -0.293358 -0.968371 -0.401831 -0.527108 -1.325313 1.074260 0.600970 -2.471887 1.761404 0.947881 -0.645950 -0.258783 -1.021235 1.112001 -1.180591 -1.252704 0.711410 -1.130898 -0.753660 0.274851 -0.597293 0.184743 0.658812 1.368995 -1.875610 -1.527351 2.003362 0.362658 2.228128 1.076860 -0.102590 0.463918 0.073272 -0.715774 -0.329462 -1.706433 0.888226 0.358435 -1.112273 0.107963 -0.985717 1.082482 1.415817 -0.568411 -0.778039 -1.150287 0.853538 -1.089284 0.490347 0.543379 -0.167443 -1.426018 0.155128 0.947318 -0.540231 0.267694 -1.432614 -0.256654 -1.589823 -1.033974 0.761065 -0.697550 0.111594 0.717759 -0.966750 -0.506375 0.363166 0.175943 -0.552575 0.535282 1.732867 0.650923 -0.084910 0.675157 -1.992955 1.207795 -1.783194 -1.625866 0.577965 -0.850051 -1.471969 -0.955452 -0.139283 1.156227 0.275567 -0.451475 -1.060976 0.829366 +PE-benchmarks/aho-corasick-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.730815 0.670793 -0.751524 -1.945322 2.298284 2.143117 0.663394 -1.723289 -1.219040 -0.511983 0.539846 -4.699750 -2.132222 1.201018 -0.914321 1.803675 3.345452 -1.244129 -0.909941 -0.969599 0.712710 2.656777 4.539117 3.888543 -2.603433 0.447867 0.181587 0.359960 -0.297729 -1.235022 -0.816386 -2.616813 0.894134 -1.401465 -0.361702 1.007956 -0.993213 -1.576954 2.781895 -3.351828 -0.114205 0.257293 -0.109189 -0.127032 -0.150228 1.265132 4.093321 2.092561 -0.098025 0.751423 2.201234 0.587162 1.108020 0.205819 -0.041127 -0.619902 1.272608 -0.548707 -0.418673 -1.809010 -0.466687 1.119632 -0.758160 2.807451 2.418147 0.401699 -2.072058 1.311964 1.673036 0.024927 -0.026706 2.651399 0.933716 2.439304 1.447590 -1.578422 0.589333 -3.119029 -0.024237 -3.334389 -2.657623 -0.305013 0.865405 0.281738 1.839520 0.101133 4.301866 -0.424597 0.027568 1.398027 3.139689 -2.789004 -0.689164 -0.367780 -0.925588 -0.142447 -0.597351 1.615973 0.352878 1.056863 -2.770867 -0.975263 0.296946 -0.136325 -1.620652 -1.125232 0.877397 -0.348094 -1.004942 -0.668152 -1.978858 1.442252 0.598375 -4.693046 -2.127014 -0.095070 0.839329 0.148499 -1.810579 -3.074146 0.518707 0.081790 -1.537501 -0.857783 -0.745485 1.326765 3.133325 0.864487 1.014933 1.346500 2.363920 5.074035 0.498357 -1.502477 -0.494993 -0.224426 -0.288962 0.655725 -0.203522 -0.231452 -0.019885 -2.332490 2.687266 2.371944 -1.461661 -0.448580 0.022864 -0.809545 -0.138143 6.765735 -1.427327 3.270281 2.157103 -2.605315 0.321174 -2.961493 -0.858316 -0.331413 0.923227 2.489136 -2.159440 -1.869720 3.200157 3.721077 1.309478 -2.887175 2.137755 2.279864 0.709853 -1.624455 1.095057 0.752875 1.530364 -1.526201 -0.230540 3.073099 5.643550 -0.869141 -0.775158 1.062313 1.948090 2.004279 -0.421967 -0.863646 -2.002382 -0.307765 2.885796 1.715521 1.297101 3.134963 -3.781899 1.373471 0.676095 -0.445006 2.707471 1.580375 -2.639101 0.034109 0.001621 2.060396 1.455752 -0.381044 0.261821 -1.015762 -2.197231 -0.105894 1.092423 0.448212 -1.961500 2.312392 0.652860 -2.139123 -0.613755 -0.886811 -0.335995 -0.095506 -1.433639 1.986698 -0.050370 -4.576079 3.186908 1.076077 -1.732600 -0.659321 -2.979723 2.660439 -1.998892 -1.713460 1.601620 -2.378729 -0.663480 0.466230 -0.406227 0.045708 1.472228 3.265166 -3.418434 -2.312454 3.358535 0.973272 3.491819 1.781042 0.179725 0.897540 -2.644395 -1.152625 -1.186065 -2.447990 1.007855 1.213453 -2.789877 0.299423 -1.367025 1.871595 2.408290 -1.837445 -1.328040 -1.076294 0.533324 -3.184205 0.425370 0.708490 1.862977 -3.159260 0.729732 1.360263 -0.797582 0.657023 -2.199663 -0.533860 -2.813718 -2.492250 0.982860 -1.055841 0.273512 1.608236 -1.646592 -0.009440 0.925412 -0.030528 0.058556 0.780467 2.311572 2.276339 -0.208572 -0.019558 -3.788382 1.939880 -3.299373 -3.825275 2.270349 -1.486630 -2.192150 -1.786613 -0.276001 2.304199 -0.025657 -1.534837 -2.226973 1.640831 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.077233 0.736189 0.602211 -0.196757 1.241842 0.432768 0.319537 0.279150 -0.430424 -0.966837 -0.422858 -0.922595 -1.692463 1.083814 -0.028369 0.493887 1.541006 0.060205 0.127880 -0.589913 0.805384 -1.095128 1.654920 1.084116 -1.567754 0.406923 0.750026 0.756629 0.232641 1.127185 -0.485836 -0.953118 0.549612 -0.604989 0.829733 -0.698517 -0.041194 -0.367156 -0.344136 -2.154501 -0.390006 0.513841 -0.497445 0.256024 -0.027294 1.493806 1.841977 0.941236 -0.703927 0.876491 0.702556 -0.491332 0.590183 0.336352 -0.082032 0.151914 0.495184 0.095175 -0.930359 0.283803 -0.190888 -2.070804 -0.139162 0.862485 1.506854 -0.613660 -0.376494 0.862640 -0.400886 0.149267 -0.081028 0.890982 0.900731 0.248315 1.397068 -1.090988 -0.366470 -1.995155 -0.351022 -3.764068 -1.267105 -1.466999 0.768440 -0.068748 0.563368 -0.250593 2.018920 0.046665 0.341524 0.696069 1.862853 -1.397470 -0.375315 -1.209002 0.098209 0.317027 -0.892573 -0.369837 0.956935 -0.291188 -0.884443 -1.052795 0.977195 -0.254905 -0.745520 -0.678065 -0.874393 1.295836 -1.752797 -0.834389 -2.271751 -0.457260 -0.188673 -1.859952 0.338835 0.530222 0.964820 0.703267 0.249685 -0.892342 0.447817 0.966540 -0.268610 -0.781100 -0.119800 1.618494 0.706479 -0.225076 0.768237 0.836364 0.613156 1.306281 2.054548 -0.080487 -0.958527 0.625301 -0.609628 0.024020 -0.544571 -0.159637 0.741899 -1.256937 -0.062023 0.579620 -0.596251 -0.068732 0.495213 -0.831187 0.721187 2.356063 -0.216530 0.429735 0.013788 -1.308042 1.102158 -0.385928 -0.648954 0.518194 0.938461 1.011531 -1.358845 -0.780621 0.723025 1.419254 0.540254 -1.772931 -0.469942 -0.383964 0.515264 -0.319294 0.321318 0.884879 0.364016 -0.430570 -0.038415 0.224356 2.397833 -1.259239 -1.374529 0.655863 0.015431 -0.326845 -2.061823 -0.297613 -0.523732 -0.686750 0.062241 -0.009953 0.163949 1.413159 -2.311990 1.132991 -0.400384 -0.832761 1.019017 -0.186164 0.050569 -1.789996 0.172993 1.173468 1.133031 0.423363 0.005539 -0.570876 -1.329637 0.240101 0.233788 0.729764 -0.394324 1.030077 -0.399748 -0.811187 -0.920921 -0.630122 -0.125299 -0.242742 -0.171016 0.467564 0.599037 -2.858708 1.365670 -0.639287 -0.692572 0.452453 0.231632 1.063863 -1.099398 -1.637873 0.766100 -0.571791 -1.359819 -0.823618 -0.263345 0.534991 0.207569 -0.776336 -0.456313 -1.880587 1.172550 -0.151535 0.596575 0.801547 0.595442 2.049655 0.566453 -1.422071 -0.868414 -0.470120 0.210743 -0.882352 -0.061639 -0.761823 -0.331427 0.962281 1.850995 0.201964 0.384445 -0.689226 1.204485 -1.836765 -0.811935 1.144385 1.018636 -0.369786 0.990057 1.159775 -0.766995 -0.832696 -1.082917 -0.070047 -0.217769 -0.870149 0.183307 -1.647715 -0.383919 1.246999 -0.388337 -0.646992 0.767968 -0.100749 -0.189121 -1.147364 1.766839 2.488604 -1.786799 0.374922 -0.995135 0.912451 -1.679469 -0.954453 -0.022986 0.679718 0.000100 -0.021295 0.783466 0.272155 0.158723 -1.077494 -0.633348 -0.754962 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -0.914214 6.192893 5.382756 -6.893402 8.371957 12.699046 1.160478 -3.751096 -4.992025 -1.804610 -0.585228 -13.914290 -9.178549 7.808822 -2.874432 0.773467 11.148721 -2.592202 -3.171902 -0.576145 2.460761 6.885944 11.770460 12.355800 -10.050081 2.986424 0.980333 1.747490 -1.908527 7.395227 -4.475167 -13.598625 -0.479963 2.295569 1.948267 0.951143 -4.734857 -5.205551 3.236833 -14.889545 -1.196305 8.223010 -3.883025 -0.781459 3.390362 -0.596748 16.604091 5.128761 -0.567992 1.150441 4.344761 4.347764 3.710246 -0.959203 4.217544 -0.594798 8.832208 -1.045282 -1.686305 -1.642518 -2.196055 2.916445 -4.041776 10.100565 8.897735 1.918840 -6.079277 -2.471809 1.932388 -0.254252 -2.810594 8.399908 4.707345 10.669055 3.880168 1.641894 3.282103 -7.244969 4.331026 -5.252419 -8.672916 -2.667045 3.949655 9.111535 2.864681 -7.811198 14.425110 -3.280232 0.221874 4.345428 14.222370 -6.515639 -0.685775 -3.467689 -6.772785 -0.198848 -1.110314 3.064202 -4.900786 -0.561630 -8.644203 -6.748930 0.668006 -0.878221 -6.033272 3.010318 0.002105 4.607336 -4.939135 -0.316659 -5.450700 4.746494 1.771772 -14.583292 -11.917020 -2.346781 -3.385983 1.758674 -6.543716 -8.807277 3.707642 2.222504 -5.800506 -2.076092 -6.614075 8.970984 8.823544 -0.164918 0.218365 2.213556 7.975442 9.669531 0.037797 -4.085874 0.797473 -0.373696 1.279042 -0.164134 -1.852858 2.326082 -3.639043 -3.899447 0.772357 6.483699 -4.673437 1.708292 -9.378231 -5.164888 -0.020752 30.477627 -6.668547 8.933184 2.598641 -10.480393 6.395344 -1.627804 -5.611557 -1.335544 3.850994 11.150687 -11.634903 -5.349670 10.341552 13.435481 3.401110 -6.809642 8.025757 4.666824 -2.228373 -5.756300 8.453539 -0.453262 1.860472 -4.441908 -2.793552 7.341992 19.399100 -2.773291 -14.116079 2.133158 4.990138 5.926935 2.086731 0.317015 -3.071101 -0.576953 7.606185 0.565884 7.684130 10.314995 -17.817906 7.895411 2.856180 -7.196373 11.199153 0.146170 -5.031507 3.316679 0.952931 8.913755 7.249388 2.252340 -2.252457 -5.323996 -9.318630 -0.663719 3.293255 3.122556 -8.766614 9.301689 2.356099 -9.488856 -4.111024 -8.561411 -3.463674 -2.912222 -11.542081 4.345751 -0.570326 -16.004070 12.342114 6.519005 -1.105499 -2.759233 -7.584933 4.566791 -6.750212 -9.364966 3.112192 -5.550631 -5.346387 2.570650 -4.895367 1.660002 5.767206 9.002617 -12.786849 -11.071235 10.224359 2.553745 11.783416 6.205125 2.216023 3.587024 4.360809 -3.696022 -3.005084 -11.194696 11.980797 4.601307 -6.599061 -0.422033 -7.126253 5.208473 8.733355 -4.353934 -4.989502 -11.108464 4.777662 -3.811241 2.165528 2.131516 -3.444411 -8.507599 -1.979495 4.580130 -0.210469 -0.074207 -8.798290 -2.146753 -9.588471 -6.660340 2.767359 -4.416859 -0.566050 6.194592 -6.316670 -5.187109 2.250028 -0.327865 -3.616743 3.542902 8.504052 2.967831 -2.978433 6.836188 -10.984678 8.788607 -10.811715 -9.642513 3.031612 -8.386357 -5.480974 -6.765661 -3.061192 4.482472 1.265925 -0.470039 -3.501788 4.247508 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__miter_base(int**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.021026 0.229423 0.143580 0.026343 0.253999 0.036877 0.139132 0.064413 -0.154146 -0.272016 -0.112143 -0.274298 -0.407604 0.336218 0.019496 0.196591 0.560619 0.190063 0.070254 -0.169906 0.142008 -0.467798 0.541630 0.524271 -0.415006 0.168068 0.206609 0.153091 0.000000 0.375869 -0.202960 -0.296722 0.266132 -0.263466 0.205522 -0.332598 -0.065749 -0.055440 -0.037340 -0.794364 -0.067845 0.116022 0.104225 0.001183 -0.015652 0.331609 0.580898 0.279575 -0.089073 0.333787 0.110393 -0.147710 0.229184 0.122296 0.125171 0.177097 0.174500 -0.088139 -0.308130 0.126289 -0.050886 -0.700611 -0.047218 0.275307 0.464100 -0.113898 -0.081196 0.146598 -0.179552 0.029080 0.001329 0.224828 0.179276 0.067055 0.305662 -0.443972 0.017777 -0.598917 -0.184541 -1.204490 -0.433937 -0.401424 0.301305 0.036218 0.280059 0.048464 0.545242 -0.012266 0.189446 0.047505 0.576857 -0.522332 -0.165666 -0.173945 0.074505 0.154400 -0.250828 -0.063970 0.283188 -0.181758 -0.323222 -0.372473 0.528961 0.044623 -0.242398 -0.154769 -0.136957 0.344144 -0.579007 -0.369070 -0.675838 -0.301042 -0.132315 -0.526052 0.336874 0.118510 0.261122 0.317762 -0.060845 -0.407062 0.145190 0.276923 -0.023420 -0.327765 -0.186244 0.443632 0.082450 -0.064079 0.258289 0.164323 0.142063 0.511622 0.577101 -0.060364 -0.144369 0.191016 -0.271159 0.012000 -0.171323 -0.210630 0.132581 -0.436577 -0.040820 0.131950 -0.272899 0.025669 0.207815 -0.117615 0.206952 0.590272 -0.037864 0.192442 0.099418 -0.445512 0.331389 -0.204195 -0.180870 0.138591 0.401055 0.277048 -0.394949 -0.242700 0.080251 0.479155 0.215089 -0.408361 -0.292924 -0.187983 0.158474 0.013375 0.150675 0.143282 0.165406 -0.257663 -0.001529 0.077637 0.747994 -0.362693 -0.191731 0.108883 -0.133918 -0.114938 -0.728828 -0.074654 -0.273697 -0.107701 -0.195164 -0.026569 -0.005693 0.422056 -0.680916 0.407936 -0.329729 -0.256088 0.357264 -0.006861 -0.087510 -0.621210 0.114086 0.338393 0.435591 0.094532 0.089955 -0.078246 -0.424235 -0.060009 -0.024029 0.216105 -0.200758 0.355629 -0.064471 -0.363999 -0.262036 -0.133086 0.098844 -0.261911 -0.005939 0.175616 0.391982 -0.770444 0.388855 -0.119204 -0.278643 0.214109 0.102103 0.217649 -0.397861 -0.495405 0.182544 -0.159628 -0.289342 -0.184493 -0.124864 0.180174 -0.041944 -0.360903 -0.059231 -0.391131 0.341919 -0.019727 0.185225 0.279645 0.120691 0.554125 0.240180 -0.430143 -0.184782 0.006947 -0.151980 -0.455270 -0.027591 -0.206511 -0.208472 0.328361 0.701850 0.148089 0.089489 -0.058120 0.427903 -0.514781 -0.231077 0.390332 0.275691 -0.035687 0.246791 0.374775 -0.342687 -0.236085 -0.257465 -0.058228 0.069695 -0.262429 0.140051 -0.517620 -0.054271 0.319252 -0.145268 -0.161875 0.260374 -0.043619 -0.009149 -0.256590 0.489410 0.571330 -0.466596 0.121280 -0.256957 0.137005 -0.515404 -0.217183 -0.051278 0.398899 -0.151924 -0.008349 0.223495 0.104053 0.045889 -0.277740 -0.173822 -0.228759 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_base(int**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -0.666518 -0.159080 -0.215766 -1.341699 1.288899 0.664068 0.536984 -0.511740 -1.359700 -1.122059 0.250091 -2.365016 -1.598305 1.526054 -0.496943 1.225113 2.809199 0.107712 -0.240407 -0.962181 1.124024 -0.353110 2.939246 3.088305 -2.088301 0.198759 0.475170 1.046061 0.105318 -0.078235 0.335471 -1.867676 0.550758 -1.389177 0.595896 -0.765185 -0.466314 0.193149 1.242762 -3.466996 -0.259038 0.627585 -0.020770 0.121228 0.035090 0.974582 2.252398 1.621490 -0.688798 1.568497 1.596623 0.045493 0.913317 0.173169 0.018097 0.037568 -0.097616 -0.238099 -0.455457 -0.125581 -0.432415 -0.754362 0.176091 1.941608 2.353522 -0.306459 -1.134708 0.733268 0.588235 0.366615 0.369323 1.753208 0.333516 0.599479 1.560815 -2.440515 -0.308674 -4.379039 0.315138 -4.574395 -2.026951 -0.612795 1.550186 0.503083 1.034521 -0.004045 3.227847 -0.296759 -0.144820 1.892507 2.303295 -1.636966 -0.579545 -0.850942 -0.744806 0.405982 -0.820224 0.348494 0.786277 0.866469 -1.836618 -1.218530 0.776298 -0.108439 -1.233974 -1.512344 -0.078112 1.162816 -1.645690 -1.233640 -2.058526 1.176529 0.175556 -3.228170 -0.399553 -0.693236 0.862174 0.574901 -1.236489 -1.615864 0.582763 0.346546 -0.776520 -0.643506 -0.561508 1.496543 1.542803 0.221677 0.534969 1.195750 0.813845 3.051036 1.105586 -1.075796 -0.501860 0.810571 -0.626233 0.440971 -1.060726 -0.448557 1.054526 -1.867377 0.709794 0.798196 -1.229969 -0.863462 1.096632 -0.774601 0.216471 5.726770 -0.549450 2.034170 1.668249 -1.691649 1.190696 -1.081128 -0.026821 0.712124 1.572775 1.232807 -2.261790 -1.463647 1.521721 2.835856 1.069554 -2.145477 -0.637951 0.797947 0.631956 -0.491789 0.873136 0.470181 0.482527 -0.925022 -0.041603 1.394234 3.700756 -0.859414 -0.463700 0.274609 1.891231 0.032975 -2.130488 -0.388233 -2.206574 -0.391465 1.103192 0.744360 0.830703 2.342581 -3.926915 1.468321 -0.137094 0.166808 1.347491 0.916941 -1.399502 -3.093021 -0.033345 1.116636 1.795516 -0.275398 0.743395 -0.047252 -2.124866 0.080274 0.558065 0.741183 -1.491820 2.040399 -0.407960 -1.212300 -0.660911 -0.039122 -0.855812 -0.656956 -0.503569 1.411510 1.009843 -3.267358 1.814925 -0.042181 -1.262676 0.308355 -0.864337 2.269269 -1.868858 -1.920491 1.336256 -1.010298 -1.087302 -0.481345 -0.550736 0.747482 0.371783 0.341352 -1.459704 -1.974057 2.214982 -0.087444 2.256144 1.295728 -0.275030 1.842614 -0.995973 -1.365234 -1.069740 -1.385295 0.361627 -0.151604 -1.178767 -1.082032 -0.733727 1.396575 2.319085 -0.203803 -0.834043 -0.166129 1.807957 -2.359245 -0.194598 0.883617 1.026603 -1.126714 1.158559 1.249217 -1.685325 0.075641 -1.889547 0.334454 -0.930375 -1.289775 1.260713 -1.315127 0.287161 0.740343 -0.669441 -0.066666 1.062770 0.685138 0.170229 0.039642 2.440214 2.322452 -0.736418 -0.146984 -2.424773 1.067447 -2.454523 -1.987130 0.132500 0.374941 -1.094110 -0.511870 0.072710 1.509019 0.639732 -0.970360 -1.424905 0.564664 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.052319 0.376944 0.273296 -0.139008 0.406972 0.181769 0.159607 -0.012123 -0.212057 -0.362548 -0.148884 -0.327452 -0.539844 0.491512 -0.050788 0.209208 0.830855 0.182783 0.055348 -0.310817 0.349587 -0.542469 0.816179 0.790739 -0.729020 0.194675 0.515420 0.278514 0.182582 0.447447 -0.289821 -0.390958 0.321425 -0.413552 0.296740 -0.496550 -0.064027 -0.173056 0.018988 -1.133028 -0.094025 -0.084428 -0.112884 0.012246 -0.044683 0.517786 0.896206 0.433182 -0.273347 0.379408 0.343207 -0.037969 0.166704 0.131970 0.104423 0.211366 0.300597 0.102275 -0.269711 0.111777 -0.038701 -0.819852 0.009011 0.522992 0.712271 -0.126620 -0.092437 0.281899 -0.132815 0.018805 -0.038359 0.345054 0.257074 0.221965 0.481464 -0.871986 -0.013644 -1.219117 -0.219396 -1.762420 -0.588245 -0.590702 0.288594 -0.238510 0.392657 0.162515 0.814750 0.034474 0.285423 0.243251 0.850365 -0.722125 -0.184773 -0.324551 -0.079460 0.233339 -0.351158 0.031889 0.312300 -0.237022 -0.460331 -0.640401 0.640308 0.086815 -0.382762 -0.325008 -0.178350 0.493174 -0.765421 -0.459097 -0.876476 -0.329795 -0.210498 -0.867448 0.267424 -0.015315 0.707131 0.301790 -0.052808 -0.663636 0.121343 0.527024 -0.074621 -0.482947 -0.058551 0.595091 0.321104 -0.050345 0.283934 0.125503 0.257266 0.770597 0.883014 -0.130409 -0.239163 0.216166 -0.429483 -0.062546 -0.347539 -0.175166 0.341656 -0.561365 0.025789 0.349539 -0.368439 -0.086425 0.668624 -0.300856 0.337225 1.387202 -0.060863 0.308667 0.156155 -0.694433 0.317571 -0.274186 -0.297308 0.271730 0.552406 0.440995 -0.824803 -0.377321 0.153438 0.709415 0.307123 -0.727880 -0.436783 -0.237258 0.071988 -0.038842 0.161492 0.141799 0.097369 -0.334180 -0.058895 0.258864 1.097302 -0.500279 -0.412135 0.130615 -0.019441 -0.212918 -0.985279 -0.106710 -0.373512 -0.080356 -0.053848 -0.049322 0.159165 0.647480 -1.288600 0.528554 -0.399618 -0.352371 0.415090 0.090964 -0.165038 -0.802353 0.281693 0.544187 0.576286 0.103136 0.139600 -0.086960 -0.634781 -0.072395 0.036519 0.320726 -0.340608 0.499486 0.045316 -0.564836 -0.442393 -0.095887 0.090113 -0.321911 -0.017962 0.262165 0.199546 -1.352938 0.664861 -0.192933 -0.346965 0.288915 -0.065371 0.426112 -0.643825 -0.755409 0.328059 -0.119835 -0.273651 -0.258982 -0.167680 0.370668 0.004097 -0.233696 -0.273774 -0.734129 0.396068 -0.078306 0.293907 0.406178 0.245877 0.887824 -0.067072 -0.472518 -0.500225 -0.027262 -0.010762 -0.367327 -0.202763 -0.393645 -0.284940 0.478721 1.005535 0.041093 0.083233 -0.066153 0.599301 -0.887534 -0.294119 0.441434 0.683791 -0.206498 0.313157 0.458196 -0.483794 -0.349587 -0.379818 -0.131365 0.059318 -0.463211 0.246104 -0.666810 -0.012746 0.487760 -0.144298 -0.196919 0.428139 -0.055675 0.104941 -0.260107 0.604845 1.099536 -0.702933 0.037444 -0.457496 0.274503 -0.827546 -0.496568 0.015601 0.340721 -0.126295 -0.032354 0.176081 0.265032 0.063552 -0.283409 -0.158775 -0.258296 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -0.764512 -0.138784 -0.165633 -1.663793 1.492798 1.180988 0.638658 -0.919964 -1.542606 -1.098009 0.397744 -2.982215 -1.783715 1.842072 -0.661659 1.516075 3.158839 -0.029311 -0.480221 -1.020704 1.156347 0.215935 3.435881 3.538160 -2.365733 0.246619 0.332591 0.859258 0.166342 -0.081707 0.301680 -2.312100 0.766264 -1.306879 0.634883 -0.578590 -0.648991 0.093345 1.652559 -3.856937 -0.239558 0.916874 0.090908 0.051988 0.172860 0.996357 2.663819 1.854410 -0.452675 1.613554 1.694418 0.266227 1.074847 0.159576 0.256836 -0.041582 0.221975 -0.640299 -0.480820 -0.286010 -0.507809 -0.343467 -0.048404 2.326744 2.664851 -0.257705 -1.354439 0.707735 0.873311 0.407764 0.362908 2.048204 0.459731 0.994416 1.471853 -2.536157 -0.125328 -4.402136 0.415431 -4.653056 -2.308066 -0.479639 1.628578 0.844846 1.217446 -0.468448 3.674496 -0.281405 -0.352657 1.722294 2.758724 -1.945997 -0.607121 -0.811285 -0.699051 0.287102 -0.890954 0.611344 0.737967 0.794484 -2.172674 -1.225884 0.760302 -0.107018 -1.428148 -1.400543 0.079093 1.318345 -1.627332 -1.269362 -1.936925 1.497314 0.164542 -3.774991 -0.442092 -0.882290 0.507626 0.552084 -1.511777 -1.941786 0.701592 0.341571 -1.002978 -0.790177 -1.061754 1.816359 2.004338 0.330363 0.447245 1.448041 1.070272 3.599374 0.813801 -1.309072 -0.355429 0.700886 -0.475648 0.624800 -1.094615 -0.422705 0.968062 -2.020864 0.674518 1.077602 -1.361747 -0.597314 0.774514 -0.733513 0.102087 6.667395 -0.832930 2.480611 1.942509 -2.030635 1.279553 -1.290010 -0.087275 0.574443 1.626216 1.491715 -2.745015 -1.718518 1.957522 3.333829 1.208564 -2.371214 -0.222593 0.997682 0.490509 -0.892336 1.126287 0.462403 0.571296 -1.132063 -0.130323 1.666382 4.366830 -1.007693 -0.484164 0.288550 2.104753 0.381705 -1.891587 -0.483764 -2.351155 -0.324412 1.319980 0.982573 1.118141 2.678698 -4.205178 1.762437 0.000953 -0.037860 1.875136 0.998284 -1.744486 -2.931578 -0.108563 1.336275 1.950399 -0.413831 0.848004 -0.093229 -2.472032 0.063192 0.555195 0.710334 -1.742899 2.176011 -0.183988 -1.380670 -0.664510 -0.137923 -0.901823 -0.842095 -0.842191 1.667371 1.331984 -3.642902 2.169979 0.251169 -1.363746 0.229116 -1.233446 2.585200 -2.077567 -1.971406 1.388970 -1.238106 -1.177257 -0.370542 -0.660111 0.765372 0.298984 0.973695 -1.977577 -2.147875 2.575673 -0.066597 2.707263 1.488487 -0.269166 1.714923 -1.124681 -1.443633 -1.043784 -2.090259 0.606977 0.202006 -1.524450 -0.753909 -0.909226 1.635244 2.462619 -0.370324 -1.196171 -0.386714 1.776959 -2.717761 0.084349 0.924259 1.039247 -1.536304 0.987465 1.353463 -1.690559 0.236625 -2.054661 0.127793 -1.372321 -1.515699 1.456864 -1.221373 0.416945 0.677721 -0.814672 -0.137191 1.142146 0.696560 -0.022021 0.335059 2.682592 2.292056 -0.638993 -0.127170 -2.877075 1.406830 -2.731367 -2.367901 0.394018 -0.000190 -1.455610 -0.759373 -0.075274 1.781994 0.757090 -1.005019 -1.664231 0.827865 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::front() = 0.010570 0.284406 0.240338 -0.005932 0.229628 -0.051441 0.117950 0.248095 -0.138979 -0.506150 -0.085051 -0.436218 -0.676615 0.346961 -0.074675 -0.126837 0.582216 0.146135 0.113545 -0.232105 0.001379 -0.276457 0.586325 0.574345 -0.563309 0.132133 0.129392 0.252392 0.072259 0.314968 0.114230 -0.523113 0.220060 0.135294 0.339889 -0.208602 -0.018224 -0.175756 -0.407935 -0.863611 -0.116080 0.373088 0.045295 0.041960 0.099814 0.521255 0.683535 0.314257 -0.181322 0.315347 0.214777 0.011567 0.225066 0.078854 -0.028865 -0.227899 0.061427 -0.325002 -0.378134 0.182502 -0.006257 -0.813546 -0.228434 0.371026 0.553165 -0.112286 -0.056419 -0.049289 -0.184948 0.142947 -0.002043 0.244641 0.400751 0.198855 0.394809 -0.007195 -0.106891 -0.613914 -0.075973 -1.516994 -0.487225 -0.517717 0.667802 0.357531 -0.051575 -0.155516 0.597584 0.129114 0.254795 0.326863 0.678364 -0.256662 -0.206141 -0.270372 0.023097 0.342835 -0.335300 0.031856 0.152643 0.035250 -0.357386 -0.221795 0.282580 -0.159524 -0.260254 0.013057 -0.210407 0.347917 -0.723869 -0.027702 -0.792721 -0.187020 0.223248 -0.654974 0.107845 0.151952 0.260530 0.358644 -0.020610 -0.007452 0.104697 0.093060 -0.044158 -0.019805 -0.563528 0.508424 0.045336 -0.055198 0.272180 0.337944 0.249107 0.287225 0.438377 -0.045645 -0.217463 0.202208 -0.183122 -0.030402 -0.195100 -0.084706 0.277239 -0.357229 0.123587 -0.015960 -0.286913 -0.317545 -0.356575 -0.293900 0.297994 0.532031 -0.026144 0.221805 0.106697 -0.390732 0.257289 -0.175674 -0.219180 0.127895 0.408950 0.337032 0.066466 -0.213108 0.105584 0.545193 0.204554 -0.303691 0.039385 -0.022344 0.135763 -0.166526 0.270483 0.195223 0.119015 -0.211132 -0.012145 0.247018 0.524465 -0.146967 -0.329851 -0.005774 0.146449 0.094587 -0.315245 0.075708 0.070449 -0.081618 0.043400 0.013996 0.051988 0.465263 -0.865579 0.425323 0.042175 -0.047235 0.187690 -0.074853 -0.112170 -0.630566 0.240900 0.404859 0.421956 0.166900 0.043391 -0.118938 -0.456200 -0.052307 0.082009 0.286422 -0.206821 0.360728 -0.106806 -0.244112 -0.385247 -0.397864 0.008395 -0.007480 -0.207999 0.161180 0.460456 -0.947409 0.478135 -0.252092 -0.349104 -0.130271 -0.046511 0.214510 -0.538940 -0.534692 0.042967 -0.359972 -0.768964 -0.289505 -0.195143 0.121644 -0.063461 -0.221254 -0.032751 -0.323640 0.583398 0.018432 0.200946 0.301882 0.154470 0.708680 0.370710 -0.406096 -0.088239 -0.163068 0.241151 -0.545593 -0.055659 0.194376 -0.200056 0.187210 0.767239 -0.022855 -0.050803 -0.066076 0.416918 -0.346182 -0.425710 0.346922 0.071693 0.096870 0.512631 0.360221 -0.400695 -0.234298 -0.502588 0.006339 0.093280 -0.344622 0.105582 -0.599196 -0.052312 0.432985 -0.139200 -0.348883 0.275682 -0.092478 -0.146138 -0.237201 0.546996 0.648665 -0.546502 0.399123 -0.397958 0.223123 -0.611066 -0.319391 -0.093164 0.146979 0.039711 0.003687 -0.006272 0.018787 0.093650 -0.299294 -0.354147 0.046096 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.009347 0.369540 0.211218 -0.139034 0.352797 0.287771 0.081346 -0.065336 -0.127741 -0.230885 -0.123914 -0.311895 -0.379510 0.323258 -0.077721 0.092510 0.511799 0.039272 0.034378 -0.140017 0.133101 -0.128161 0.541099 0.489581 -0.466744 0.159975 0.300812 0.115540 -0.018656 0.412668 -0.221362 -0.484725 0.160070 -0.089173 0.133307 -0.212963 -0.096269 -0.191897 0.018449 -0.705978 -0.056443 0.041168 -0.140564 -0.007873 0.014070 0.124200 0.694828 0.257362 -0.105360 0.194561 0.199941 0.168603 0.086400 0.067370 0.124355 0.107412 0.269863 -0.126257 -0.148889 0.038259 -0.039692 -0.340684 -0.116006 0.376408 0.417669 -0.028589 -0.097873 0.083938 -0.150018 0.001634 -0.095535 0.251213 0.162735 0.305362 0.210428 -0.327106 0.033297 -0.575219 -0.078898 -0.847538 -0.383178 -0.355220 0.114027 0.117241 0.234078 0.050648 0.553992 -0.011250 0.195417 0.129565 0.606140 -0.432461 -0.086535 -0.164159 -0.114441 0.105246 -0.165780 0.051698 -0.067710 -0.132815 -0.306127 -0.423368 0.322915 0.026223 -0.253763 -0.113343 -0.089336 0.260309 -0.510966 -0.199619 -0.494384 -0.131001 -0.106648 -0.576357 -0.072330 0.022518 0.322911 0.157210 -0.077498 -0.471228 0.118784 0.320711 -0.102948 -0.267056 -0.122251 0.324474 0.247197 -0.039758 0.150628 0.033185 0.252683 0.529124 0.399846 -0.088698 -0.107034 0.067327 -0.114471 -0.076422 -0.137779 -0.020158 -0.046430 -0.322423 0.106884 0.307423 -0.228867 -0.047260 0.052424 -0.282703 0.193346 0.945974 -0.144234 0.218971 0.060366 -0.520709 0.110632 -0.202914 -0.283852 0.057247 0.284118 0.390953 -0.379085 -0.222929 0.197340 0.481010 0.187394 -0.332549 -0.064830 -0.080333 -0.017405 -0.067947 0.187981 0.051246 0.039638 -0.226427 -0.085428 0.196488 0.760773 -0.211892 -0.328068 0.118335 0.053904 -0.006853 -0.304007 -0.037107 -0.187498 -0.027942 0.132474 -0.063605 0.147302 0.423248 -0.850739 0.344049 -0.153669 -0.297781 0.250046 0.042107 -0.097328 -0.194664 0.175479 0.421349 0.354761 0.055803 0.154352 -0.159906 -0.392256 -0.065891 0.053531 0.207587 -0.279512 0.323261 0.125487 -0.488228 -0.291000 -0.136023 0.043012 -0.190570 -0.180533 0.151483 0.127336 -0.931281 0.509016 -0.001040 -0.152279 0.105566 -0.122452 0.288511 -0.383729 -0.481289 0.194614 -0.152870 -0.161766 0.035014 -0.150016 0.199128 0.067355 0.056122 -0.250187 -0.398108 0.244163 0.092456 0.223128 0.274496 0.217228 0.440160 -0.103854 -0.254356 -0.218992 -0.160049 0.222548 -0.160018 -0.134756 -0.061414 -0.246895 0.290922 0.617659 -0.013759 -0.069212 -0.152979 0.310431 -0.411727 -0.054448 0.242245 0.290965 -0.221241 0.088599 0.273056 -0.172968 -0.213629 -0.271371 -0.008451 -0.094165 -0.324220 0.101763 -0.388525 -0.038951 0.381496 -0.151714 -0.243780 0.240977 -0.069838 0.008390 -0.089363 0.328444 0.455397 -0.357213 0.168650 -0.307862 0.184963 -0.533348 -0.368462 0.042391 0.024572 -0.107501 -0.117464 -0.064001 0.157987 -0.009801 -0.011361 -0.063220 -0.112196 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::pop_front() = 0.014234 2.455529 2.125600 -1.552798 2.652458 3.008651 0.310608 -0.069462 -0.904188 -1.137652 -1.020027 -2.836822 -3.094973 2.164943 -0.544654 0.000000 3.090978 -0.366878 -0.333578 -0.231438 0.845704 0.416749 3.026306 2.546935 -3.095265 0.926844 1.114751 1.170308 -0.483309 3.366661 -1.530461 -3.585911 -0.177529 0.830994 1.517133 -0.554302 -0.774878 -1.565047 -0.542132 -4.431091 -0.547334 2.378133 -1.189788 -0.023863 0.732596 0.198340 4.758044 1.573375 -0.770769 0.098393 1.147412 1.046003 0.970967 0.069258 0.760619 0.247291 2.445930 -0.363692 -1.027676 0.131846 -0.443350 -1.136422 -0.852670 2.510004 2.635427 -0.057277 -1.128507 -0.198502 -0.255231 0.015432 -0.992983 1.998692 1.360695 2.495913 1.462610 0.057147 0.642984 -2.155299 0.864154 -2.936964 -2.448723 -2.276254 0.752450 2.438958 0.805825 -2.018135 4.065028 -0.710752 0.946804 0.950372 4.063868 -1.976768 -0.241979 -2.181660 -1.332024 0.396917 -0.823978 -0.283278 -0.705361 -0.634862 -1.940847 -2.070374 0.725443 -0.326230 -1.660858 0.670609 -0.936466 2.024047 -2.154075 -0.571535 -2.973626 0.347598 -0.034508 -3.985232 -2.171764 0.035446 -0.591291 0.658863 -0.504781 -2.404176 1.015456 1.645378 -1.294991 -0.825661 -1.888701 3.209368 1.966529 -0.769062 0.652643 0.641868 1.921232 2.031799 1.677986 -0.599669 -0.803248 0.550995 -0.301379 -0.728031 -0.868528 0.674948 -0.612940 -1.511253 -0.455718 1.925817 -1.208382 0.651684 -2.414392 -2.104082 1.131024 7.870496 -1.595937 1.375160 -0.228865 -3.142940 2.493890 0.193606 -2.138532 -0.156069 1.172414 3.140296 -3.269162 -1.369913 2.085413 3.309272 1.024809 -1.899964 1.253162 -0.002481 -0.481481 -1.178375 1.766890 0.575517 0.136414 -1.095340 -0.752274 1.203512 5.059587 -1.154058 -4.593455 0.966679 0.942067 0.471425 -0.738982 -0.013688 -0.945576 -0.729146 1.207026 -0.473395 1.705466 2.841752 -5.097060 2.430432 0.535396 -2.581793 3.034188 -0.961538 -0.141470 -0.352160 0.645762 2.954019 2.244764 0.529875 -0.530089 -1.871574 -2.558760 0.045569 0.742289 1.481353 -1.813589 2.235553 0.149247 -2.594750 -1.736204 -2.571434 -0.833760 -0.882854 -2.631993 0.792216 0.253551 -4.946504 3.654362 0.674213 -0.289340 0.020329 -1.197934 1.058252 -2.155861 -3.136464 0.965507 -0.922597 -1.770591 0.172215 -1.217627 1.034057 1.229727 0.991411 -2.651450 -3.550758 2.113813 0.537666 2.166986 1.756415 1.469161 2.021816 2.283527 -1.526163 -1.043434 -2.576884 2.665356 0.365388 -0.957216 -0.793539 -1.659540 1.600371 3.225558 -0.715116 -0.284044 -3.066634 1.800053 -1.403426 -0.263803 1.177642 -1.079886 -1.766874 -0.244598 1.651783 -0.277192 -1.348244 -2.525942 -0.080144 -1.650740 -1.955057 0.216564 -2.452011 -0.686742 2.718975 -1.630529 -2.089512 0.890425 -0.205511 -1.046161 -0.376337 2.698469 1.563900 -1.876692 2.118121 -2.395332 2.221306 -3.343002 -2.077473 0.174471 -1.586276 -0.580247 -1.095275 0.080151 0.679899 -0.039442 0.019410 -0.536722 -0.444219 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_pop_front_aux() = 0.341562 3.243010 2.720229 -1.434677 2.643400 3.560407 0.390934 0.027447 -0.751174 -0.881131 -0.970857 -3.211253 -3.257790 2.136821 -0.462712 -0.705639 3.265539 -0.423560 -0.393115 0.000507 0.117562 1.197985 3.156557 3.026481 -3.120956 1.283024 1.130913 0.622084 -0.835375 3.648758 -2.207555 -4.072521 -0.080619 1.481378 1.187546 -0.115144 -1.245656 -2.645698 -0.751836 -4.646042 -0.437292 2.453675 -1.566189 -0.386990 0.965208 0.026797 5.707372 1.402012 -0.415175 -0.294663 0.735870 1.243725 0.831110 -0.083927 1.427656 0.035739 3.202126 -0.099464 -1.116456 0.071962 -0.371092 -0.801372 -1.566786 2.703649 2.364525 0.448726 -1.212581 -1.022363 -0.297725 -0.221519 -1.428247 1.926596 1.913041 3.377069 1.151051 1.049506 1.097240 -1.278073 0.721589 -2.259454 -2.771314 -2.168629 1.101210 2.395804 0.693445 -2.438459 3.787419 -0.742999 1.431237 0.428874 4.526558 -2.057157 -0.327162 -1.586067 -1.461269 0.519151 -0.524620 0.365125 -1.190250 -1.520020 -2.291567 -2.056695 0.984251 -0.211652 -1.749226 1.652310 -0.383617 1.692189 -1.875326 0.019051 -2.814100 -0.155075 0.269180 -4.096215 -2.874069 0.404404 -0.464796 0.971248 -1.034417 -2.632267 1.039045 1.505114 -1.436850 -0.847962 -2.166335 3.338786 1.967247 -0.499228 0.795344 0.285614 2.557731 1.961004 1.509333 -0.488636 -0.144723 -0.032678 -0.171634 -0.817905 -0.373056 0.751603 -1.457409 -1.077961 -0.095540 2.111972 -1.434521 0.887021 -3.272770 -1.810937 1.006285 8.206577 -1.875614 1.739348 -0.407917 -3.500294 2.242584 -0.114436 -2.777625 -0.710569 1.202849 3.657857 -3.198611 -1.092967 2.113850 3.599531 1.080569 -1.911027 2.309846 0.152851 -1.014042 -1.555702 2.352121 0.026787 0.694213 -1.427354 -0.935894 1.920373 5.248208 -1.080166 -5.936134 0.669211 0.354192 1.556790 0.330032 0.343152 0.000000 -0.223583 1.439080 -0.710885 2.024449 2.795040 -5.488847 2.516184 0.504380 -3.278994 3.600071 -0.715368 -0.587894 1.290106 1.105860 3.368967 2.321353 1.145445 -1.141937 -2.179066 -2.457972 -0.489652 0.796870 1.311615 -2.066047 2.361733 0.670155 -3.156077 -1.848818 -3.608126 -0.312614 -0.871177 -3.379869 0.746512 -0.251034 -5.656795 4.093691 1.492170 -0.314570 -0.649915 -1.952382 0.404658 -2.257483 -3.352773 0.485018 -1.276299 -1.939507 0.671920 -1.652692 0.689806 1.625292 1.877719 -3.048639 -3.372863 2.517831 1.017635 2.574289 1.996533 1.700115 2.071534 2.724566 -1.363417 -0.746572 -2.912411 3.858288 0.463313 -1.487298 -0.145772 -2.388143 1.434691 3.354389 -1.212429 -0.451358 -3.890660 1.380592 -1.206083 -0.080011 1.101995 -1.144238 -1.882265 -0.629614 1.655998 0.134258 -1.164203 -2.441891 -0.901639 -1.922775 -2.227837 0.005397 -2.324593 -0.663043 2.953395 -1.963995 -2.376044 0.637373 -0.915270 -1.101667 0.199967 1.962951 1.519728 -2.207045 2.727382 -2.466806 2.514192 -3.414371 -2.470645 0.711768 -2.431617 -0.826549 -1.678122 -0.378475 0.391707 -0.292889 -0.043980 -0.491315 0.240517 +PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -2.228072 -2.394376 -1.311253 -2.819335 1.758710 2.606702 1.150629 -3.752433 -4.205945 -1.223513 2.342959 -5.887832 -2.181176 4.637177 -1.746189 3.830773 5.359722 -0.189046 -2.264978 -2.425361 4.026778 0.892715 6.665467 6.857114 -3.951640 -0.149442 -0.071126 1.317757 2.223407 -1.616768 2.335875 -2.553236 1.606309 -4.275879 -0.482993 -1.070061 -1.113640 2.100408 5.154069 -6.298609 -0.304186 1.114674 1.080130 -0.040853 -0.053437 1.422133 3.055024 3.747669 0.088658 3.925346 3.547549 0.065196 2.037531 0.084945 0.754137 -0.359217 0.724538 -0.772151 -0.129789 -1.025597 -1.250297 0.613620 0.315708 4.772698 5.475042 0.170601 -2.678509 1.935749 1.936279 1.605562 1.713170 3.956425 -0.226093 1.539823 2.949190 -5.718946 -0.317114 -8.993531 0.945714 -6.971571 -3.034418 1.477417 3.101219 0.740240 2.654248 1.107027 6.545871 -0.570255 -3.426957 4.941827 5.004911 -3.293110 -0.921778 -0.161959 -2.332321 0.022135 -1.954786 2.452467 0.671627 3.122976 -4.098195 -3.077587 0.432189 0.418626 -2.491059 -2.954473 0.212714 2.613498 -3.209990 -2.545122 -0.904610 3.695595 -0.142775 -6.665362 -2.740696 -3.567446 1.551731 0.780430 -3.744703 -3.401133 1.752654 0.045225 -1.414075 -2.043050 0.204849 1.548516 3.532121 1.820208 -0.918141 2.564892 1.345066 7.207461 0.227022 -2.987441 0.747344 0.761813 -0.071447 2.842907 -2.063250 -1.236637 1.935335 -3.203386 1.385825 2.010056 -2.202098 -2.584476 2.662639 -0.346413 -1.173728 11.930496 -0.712299 5.237349 5.134311 -3.186600 0.470577 -2.712357 1.581784 1.858493 2.542261 1.922279 -4.990025 -3.905299 4.561199 6.331382 2.272923 -4.654548 -1.189632 2.718848 1.152410 -1.138290 2.427706 0.615760 0.581279 -2.469724 -0.369703 3.053005 7.874336 -2.554717 0.783420 0.726984 3.127356 0.273677 -3.925111 -0.932066 -3.828485 0.026829 2.956762 2.160285 2.161393 4.937788 -6.828658 3.629003 -0.089219 1.217398 2.691364 2.753426 -4.491347 -3.996147 -1.384294 1.277111 3.088924 -0.433751 0.553461 1.264244 -5.434640 0.399585 1.061558 0.321069 -3.299501 4.582779 -0.014278 -1.556322 -1.356567 2.003791 -1.417866 -1.651299 -0.877608 3.960923 1.011685 -4.671839 3.190418 0.799731 -2.103116 -0.017181 -1.590872 5.261842 -3.083390 -3.299226 2.938948 -2.610162 -2.183495 -1.536358 -0.908901 1.161225 2.017640 2.647899 -4.109288 -3.250268 4.596612 -1.481430 5.717611 2.393843 -1.574923 2.143041 -3.720980 -2.028750 -2.848879 -2.298182 0.476196 1.488150 -3.375577 -2.852259 -0.914014 3.438518 3.089591 -0.517007 -3.714047 -0.492932 4.208944 -5.075480 -0.349026 1.117466 3.008195 -3.638368 2.288731 1.993344 -3.458543 2.187638 -3.080770 -0.467817 -3.519804 -2.280998 3.891192 -0.154428 1.764426 -0.783371 -0.643247 1.039358 1.991681 2.241563 0.196575 1.646804 5.317664 4.111845 -0.495850 -1.525324 -5.966656 2.830130 -4.489926 -4.757411 1.273329 0.624276 -3.650203 -1.524339 -0.990828 4.507509 3.274001 -2.730397 -3.290816 2.652694 +PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 0.049568 0.322757 0.493402 -0.251826 0.422166 -0.067183 0.247012 0.324381 -0.495154 -0.814933 0.066486 -1.193219 -1.114772 0.726510 -0.077706 -0.202111 1.019913 0.072910 -0.037028 -0.359974 -0.129323 -0.181786 0.940087 1.021304 -0.794892 0.317901 -0.172127 0.129350 0.005801 0.468495 0.165804 -1.033831 0.251744 0.438560 0.555842 -0.012402 -0.337627 -0.349496 -0.480372 -1.402602 -0.112912 1.067663 0.220785 -0.042783 0.313834 1.017287 1.227365 0.470799 -0.084364 0.523161 0.242802 -0.140158 0.491953 0.025055 0.314256 -0.485681 0.409498 -0.478775 -0.668383 0.315223 -0.151335 -0.867098 -0.505211 0.637578 0.774493 -0.169543 -0.389954 -0.307550 0.000119 0.264679 0.023112 0.518676 0.800248 0.356045 0.531360 0.236416 -0.030291 -0.785660 0.104631 -2.421640 -0.917986 -0.379776 1.429354 0.745226 -0.270220 -0.761405 1.046573 0.038824 0.094603 0.395797 1.206726 -0.248561 -0.339094 -0.238347 -0.004589 0.330095 -0.338079 0.068358 0.397292 0.025905 -0.756088 0.046735 0.390544 -0.388641 -0.417060 0.399979 -0.114559 0.587702 -0.989422 0.207513 -0.975670 0.101808 0.667956 -1.111837 0.135257 0.230751 -0.065524 0.586831 -0.489581 0.130275 0.384812 -0.192170 -0.393379 0.225382 -1.332441 1.060540 0.089513 0.181249 0.320284 0.719069 0.582565 0.328591 0.388217 -0.241150 -0.020228 0.182126 -0.020914 0.180407 -0.059045 -0.214728 0.337387 -0.415292 0.138640 -0.259220 -0.501642 -0.285591 -1.009161 -0.226096 0.122902 1.032803 -0.349228 0.722619 0.217629 -0.568029 0.586931 -0.214108 -0.327285 -0.077476 0.646366 0.649604 0.123778 -0.360500 0.592537 1.110305 0.370271 -0.636356 0.480275 0.277147 0.066998 -0.353892 0.711989 0.156630 0.458833 -0.420792 -0.106112 0.393113 1.147882 -0.176818 -0.816017 -0.118257 0.239297 0.631202 -0.179977 0.219023 0.230550 -0.011847 0.063498 0.086905 0.328518 0.803731 -1.614152 0.848088 0.116606 -0.241851 0.721952 -0.042469 -0.370535 -1.116052 -0.018047 0.599223 0.820398 0.368899 -0.188217 -0.246753 -0.755478 -0.090224 0.068311 0.281531 -0.455158 0.632325 -0.213296 -0.329245 -0.342879 -0.953587 -0.078549 0.159236 -0.613138 0.345068 0.843733 -1.533749 0.805361 0.000215 -0.428570 -0.572596 -0.113344 0.253906 -0.658812 -0.720843 -0.122899 -0.829627 -1.527604 -0.436186 -0.504371 -0.048433 -0.152360 -0.037423 -0.228719 -0.541301 1.348246 -0.065520 0.848855 0.549434 0.016504 1.018625 1.049915 -0.596979 0.137655 -0.668203 0.649047 -0.745840 -0.176838 0.653320 -0.462606 0.229371 0.832652 -0.121853 -0.203468 -0.423111 0.502474 -0.440726 -0.427966 0.508243 -0.363548 0.005988 0.835767 0.623976 -0.483677 -0.014223 -0.979265 -0.307084 -0.348601 -0.391426 0.181470 -0.611149 -0.120980 0.423288 -0.352339 -0.563677 0.232767 -0.207790 -0.511250 -0.130022 0.928543 1.020870 -0.786020 0.768260 -0.810607 0.649891 -0.821995 -0.610925 -0.046664 0.066608 -0.262698 -0.290981 -0.078001 0.031052 0.244859 -0.693169 -0.775248 0.606475 +PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -1.387716 -1.372862 1.518928 -2.653904 2.583334 0.529251 1.185865 -0.488923 -2.947415 -2.933981 0.883831 -3.981477 -4.753988 3.552383 -2.039802 1.343606 3.621859 -0.490247 -0.718429 -2.822362 3.109882 -1.669155 5.453727 4.081785 -5.508780 -0.154398 -0.747942 3.764557 2.253039 1.718450 3.108185 -2.182870 0.020242 -0.270670 3.609665 -1.218732 -0.042975 1.323040 -0.947901 -6.578958 -1.509911 4.921323 0.645202 1.281769 1.733329 4.948020 2.773742 3.485392 -1.773870 3.843271 3.252316 -0.611057 3.358630 0.077528 -1.047800 -1.807219 1.416631 -2.196417 -1.909834 0.748218 -1.271742 -3.659538 1.207804 4.145304 5.957255 -1.975101 -1.550619 0.892625 0.792509 2.120585 1.606148 4.143985 0.431872 0.769567 4.615392 -2.123793 -0.178769 -6.448620 1.853815 -9.297782 -3.644149 -2.099483 4.436200 4.010953 0.301513 -1.988657 7.333998 0.753408 -1.775424 4.982586 3.748440 -1.115222 -0.412933 -3.083631 -1.692747 0.423340 -2.689515 -0.736804 1.259996 3.960897 -3.130297 -0.528539 -0.375289 -1.293775 -2.274669 -0.840824 -2.928487 3.769683 -4.733674 -1.580661 -3.912909 3.309586 0.859413 -6.456055 -0.207691 -2.211855 0.652913 0.746013 0.366125 1.154973 1.571871 0.725663 -1.060085 0.653749 -4.887047 4.679383 2.505270 -0.168874 0.203436 4.169253 -0.243532 2.031678 2.242280 -1.126971 -2.757970 2.762670 -0.838778 1.680173 -1.805347 0.626160 3.900284 -2.872710 -1.054551 -0.546887 -0.962743 -2.333449 -2.571076 -2.224851 1.104607 8.589248 -0.893046 3.333022 2.273508 -2.368205 3.168922 0.502788 1.258445 2.677159 2.791068 1.355692 -3.093162 -3.062400 3.202151 4.851420 1.182581 -3.481362 -0.082513 1.791757 1.261770 -1.308968 2.043299 2.220980 -0.508114 -1.560836 0.081980 -0.453746 5.844413 -1.227981 -1.447458 0.748932 3.118522 -1.573362 -3.270944 -0.133223 -1.164845 -2.064021 0.903731 1.257204 1.133237 4.152844 -6.563632 3.639872 1.303387 1.083000 2.875089 -1.673199 -1.081326 -7.675496 -1.240570 1.117362 2.778767 -0.627422 -0.845240 0.290502 -4.680166 2.409228 0.389118 1.849950 -2.129831 4.240554 -2.144363 -0.707860 -2.119339 -1.876712 -2.140099 0.730598 -1.876357 1.939673 2.283849 -4.700765 2.605497 -2.156597 -2.478020 0.042399 0.984185 3.700013 -2.763592 -3.389285 1.590862 -2.280709 -5.936208 -4.743584 -1.405845 0.986251 0.179059 -1.170045 -3.058432 -3.870604 4.539217 -2.721276 3.343343 2.172806 -0.609072 4.673195 2.704766 -3.249357 -1.782291 -3.192294 0.785379 -0.737116 -0.637701 -0.348636 -0.533393 2.039906 3.497153 -0.338099 -0.549296 -0.686829 5.157622 -2.591094 -2.621029 1.614779 -1.583326 -0.773796 4.153334 2.359644 -2.743279 -0.260454 -4.695692 0.913392 -1.897095 -0.822770 3.207335 -2.685644 0.146424 0.508971 0.055983 -1.624623 1.436789 1.682463 -1.526401 -1.535739 7.547601 5.196211 -2.204833 1.338480 -4.091447 3.077754 -3.829146 -1.570304 -1.868815 0.456360 0.392545 0.800516 0.285690 2.763037 3.763764 -3.666427 -2.922940 0.790745 +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.011500 0.436129 0.414336 -0.052259 0.367355 -0.000224 0.191229 0.307816 -0.232059 -0.630815 -0.156484 -0.573912 -0.931069 0.547583 -0.040328 -0.069064 0.954559 0.237901 0.114257 -0.371458 0.161900 -0.579642 0.911707 0.938016 -0.897014 0.241586 0.340152 0.407399 0.207075 0.497129 -0.051723 -0.574639 0.318109 -0.059877 0.535830 -0.438667 -0.069235 -0.277895 -0.439797 -1.414219 -0.173165 0.395585 0.026990 0.047748 0.110926 0.849214 1.084776 0.495428 -0.333641 0.458387 0.342089 -0.141676 0.359045 0.113999 0.022024 -0.126818 0.257426 -0.118560 -0.509124 0.264562 -0.007501 -1.239214 -0.177722 0.583221 0.870057 -0.184036 -0.128205 0.055339 -0.154575 0.129677 -0.028424 0.419483 0.545496 0.266473 0.660664 -0.403748 -0.059221 -1.155906 -0.131504 -2.314444 -0.781451 -0.791710 0.862664 0.169702 0.106043 -0.181016 0.966940 0.113226 0.391145 0.400348 1.034418 -0.566228 -0.279895 -0.445565 -0.001424 0.465001 -0.482007 0.015091 0.421566 -0.124538 -0.564164 -0.464795 0.612040 -0.129051 -0.451804 -0.050226 -0.300524 0.591563 -0.981001 -0.240946 -1.213051 -0.364012 0.144562 -1.030197 0.286289 0.144584 0.514772 0.518632 -0.040013 -0.266883 0.143185 0.297864 -0.079958 -0.220127 -0.635296 0.876497 0.186566 -0.099954 0.418335 0.428581 0.363171 0.531445 0.883574 -0.092502 -0.327595 0.340917 -0.439090 -0.055337 -0.364670 -0.178872 0.525188 -0.577025 0.015164 0.077465 -0.449996 -0.269107 0.003946 -0.371748 0.428574 1.213616 -0.031921 0.356136 0.160571 -0.650499 0.550389 -0.213671 -0.356078 0.283262 0.672819 0.540733 -0.456690 -0.364424 0.136779 0.879369 0.329464 -0.696595 -0.174227 -0.130929 0.152868 -0.194670 0.371223 0.244127 0.221337 -0.346136 -0.022129 0.352487 1.010845 -0.420758 -0.656040 0.011870 0.068052 -0.019012 -0.874716 0.047570 -0.089167 -0.150217 -0.093128 -0.004314 0.141676 0.735009 -1.427037 0.674804 -0.149371 -0.253359 0.500556 -0.081185 -0.175412 -1.077705 0.365270 0.619093 0.694909 0.244909 -0.045835 -0.160448 -0.749423 -0.077809 0.097379 0.412199 -0.357887 0.619300 -0.157115 -0.417372 -0.549215 -0.530221 0.038332 -0.148427 -0.224285 0.276452 0.501879 -1.475102 0.743740 -0.333507 -0.518540 0.000613 -0.080477 0.304026 -0.818754 -0.866586 0.154822 -0.367192 -0.931494 -0.503216 -0.300002 0.275149 -0.050669 -0.406990 -0.189427 -0.727367 0.808166 -0.095806 0.358746 0.507132 0.226892 1.130998 0.576298 -0.643602 -0.326329 -0.158188 0.183020 -0.685287 -0.148267 -0.108265 -0.351837 0.375017 1.215734 -0.023834 0.091613 -0.174645 0.696704 -0.762997 -0.628259 0.533092 0.296061 0.046218 0.662273 0.559999 -0.620338 -0.371235 -0.695217 -0.152708 0.150196 -0.515825 0.238481 -0.921797 -0.078720 0.644070 -0.243992 -0.401959 0.455676 -0.135234 -0.129935 -0.373963 0.848250 1.211038 -0.907399 0.413357 -0.603242 0.402868 -0.960695 -0.475293 -0.110151 0.317292 -0.017797 -0.014189 0.197054 0.103583 0.155110 -0.544997 -0.449249 -0.060857 +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.023696 1.123242 1.075675 -0.626384 1.853912 0.624527 0.674534 0.448180 -0.546763 -1.903304 -0.260528 -1.354657 -2.953712 1.324307 -0.574694 -0.189338 2.109240 -0.241675 0.562967 -1.309916 1.087307 -1.197116 2.909287 2.257934 -3.166061 0.543050 0.832016 1.334062 0.688622 1.585380 0.454746 -1.797886 0.808130 -0.077829 1.821234 -0.822197 -0.257514 -0.854371 -1.181370 -3.413250 -0.851545 1.215561 -0.922137 0.816628 0.542248 2.634811 3.036508 1.442313 -1.537138 1.712788 1.478630 -0.186186 1.182492 0.370030 -0.351210 -0.896459 0.524581 -0.169542 -1.066426 0.570005 -0.607505 -3.001507 -0.116746 1.803098 2.706197 -0.837271 -0.407344 0.337256 -0.647776 0.609102 0.107687 1.903939 1.620381 0.706026 2.663467 -1.042264 -0.544863 -3.782656 -0.183705 -6.199656 -2.121448 -2.382348 1.883275 0.563393 0.582290 -0.754613 3.162367 0.742779 0.659644 1.804597 2.514579 -1.186844 -0.237255 -1.429625 -0.510358 0.554650 -1.220975 0.213925 0.770141 0.136343 -1.534811 -1.113505 0.858756 -0.759676 -1.133436 -0.892165 -1.452640 1.695138 -2.732614 -0.379237 -3.239690 -0.204546 0.184848 -3.276598 -0.030457 -0.011001 1.798440 0.899391 0.480858 -0.065599 0.489216 1.069846 -0.378606 -0.539691 -1.030879 2.566571 1.458919 0.057178 0.897287 1.431545 0.472734 1.426651 2.813590 0.202105 -1.477739 0.760137 -0.600971 0.221233 -0.755085 0.484377 1.952624 -1.391003 0.081011 0.332522 -0.615135 -1.106948 0.017947 -1.749383 1.216587 4.343867 -0.450228 1.258276 0.579077 -1.788702 1.208497 -0.198978 -0.376342 1.401537 1.861096 1.316284 -1.554647 -1.110897 0.960504 2.157707 0.482580 -2.609063 -0.240285 0.243377 0.490675 -0.929537 0.678913 0.781914 0.393564 -0.838838 0.187307 0.607031 2.854330 -1.209105 -2.241480 0.391350 1.013593 -0.294988 -1.805130 -0.095219 -0.296265 -0.688358 0.712512 0.085743 0.300017 1.945785 -4.288555 1.495936 -0.006204 -0.291877 1.221866 -0.123789 -0.196369 -2.919890 0.816417 1.391959 1.201546 0.695462 -0.202983 -0.520099 -2.070720 0.696522 0.371280 1.189656 -1.112858 1.897270 -0.692198 -1.125389 -1.730554 -1.754788 -0.318316 0.196851 -0.912855 0.645349 0.821376 -4.542914 1.711688 -1.080415 -1.623886 0.020776 -0.133748 1.729500 -1.672313 -2.397216 0.701148 -1.539123 -2.995206 -1.854147 -0.631199 0.437931 0.289134 -0.598562 -1.265164 -2.491723 2.351031 -0.606816 1.158720 1.504261 0.916835 3.711588 0.743839 -2.142254 -1.550857 -1.191211 1.511357 -1.068617 -0.658958 -0.519655 -0.800340 0.850405 3.075854 -0.145306 0.328596 -0.751077 2.202885 -2.445221 -1.448117 1.521317 1.234467 -0.151882 2.113862 1.523986 -1.036067 -1.069223 -1.961676 0.032674 -0.004636 -1.298670 0.963132 -2.388725 -0.165361 1.403901 -0.185510 -1.273221 1.091929 -0.260757 -0.077705 -1.380574 2.606359 4.009922 -2.701653 0.734305 -1.579706 1.386780 -2.589412 -1.418240 -0.415523 0.076331 0.703306 0.183424 0.156634 0.767893 0.978466 -1.698857 -1.097897 -0.098030 +PE-benchmarks/z-algorithm-linear-time.cpp__getZarr(std::__cxx11::basic_string, std::allocator >, int*) = -4.001443 -4.710549 -2.007688 -6.541122 2.812424 5.382142 1.967896 -6.494526 -7.918095 -2.986524 4.358307 -10.126342 -3.540653 8.241353 -3.451485 6.782967 9.576871 -0.132600 -4.536595 -3.818762 7.213032 0.638882 11.588316 12.653669 -7.542999 -0.250434 -0.053004 3.503688 4.437833 -1.867809 4.625670 -4.326410 2.840608 -7.355402 0.005128 -2.993145 -2.132151 3.934731 7.824643 -12.052147 -0.599774 2.884501 0.345122 0.185728 0.441899 3.075399 5.256537 6.582303 -0.216834 7.274678 6.131628 0.496966 3.480462 -0.121083 1.806735 -0.532323 0.866206 -1.763636 0.238879 -1.830898 -2.141887 -0.063059 1.251279 8.799937 9.583080 -0.631747 -4.426600 3.067659 3.674983 2.418467 3.688208 7.084302 -1.538403 2.229021 4.922489 -11.364956 0.838622 -14.478574 2.384888 -13.742255 -5.358598 2.606143 6.386846 2.669668 4.160043 -0.054285 12.217031 -1.562506 -6.126257 9.160371 8.376615 -5.696417 -1.382311 -0.721420 -3.723577 0.055146 -3.496882 3.044954 1.460131 5.588081 -7.066585 -3.230524 0.512393 0.897579 -4.822390 -5.165584 0.104909 5.685021 -7.171836 -4.619919 -1.095664 7.479839 -0.246470 -12.625117 -4.619077 -6.948110 3.359063 0.554466 -6.584551 -5.499842 3.004551 0.727920 -1.651782 -2.651745 -1.293158 3.758409 6.347727 3.203972 -1.770336 5.330200 2.072521 12.713342 0.686440 -4.971496 1.040836 2.016467 -0.289175 5.088565 -3.150782 -1.850035 3.629703 -6.411764 0.542679 3.571080 -4.004050 -3.509315 4.683693 0.042572 -2.120153 26.639804 -1.417815 10.124629 9.617175 -5.896462 0.538987 -3.901600 3.027571 4.003241 4.424400 3.080639 -11.334144 -6.740571 7.722758 11.889346 4.040350 -8.558220 -1.129526 4.566470 1.250086 -1.928653 3.946386 0.280967 0.851911 -4.246965 -0.880392 5.222053 14.220769 -4.035456 1.751514 0.676270 5.346968 -0.946576 -6.986972 -1.346414 -6.537771 0.432318 4.753525 3.416327 4.064890 8.921395 -11.683753 6.753631 -0.543624 2.140197 5.287705 4.686284 -7.518986 -9.914376 -3.270918 2.029564 5.931618 -2.481159 1.522638 2.962049 -9.806946 0.650001 2.287920 0.530926 -6.091627 7.996154 0.910552 -2.313546 -2.055200 3.438060 -2.706517 -2.148840 -1.889654 7.078198 0.776281 -8.709751 5.552549 1.521372 -4.168900 0.215975 -2.343322 9.555705 -6.593913 -6.275132 5.381102 -3.484009 -5.101564 -2.844483 -2.207222 2.937956 2.875869 2.823083 -7.980520 -5.856482 8.272534 -3.767103 10.127471 4.421736 -3.140353 5.379044 -6.861014 -3.170151 -4.919679 -5.929256 0.915638 2.118704 -5.722118 -4.240609 -1.576702 6.006629 5.622426 -0.459355 -6.406670 1.463580 7.824798 -8.299967 -0.219680 1.593507 5.657943 -6.653689 4.242055 3.255765 -6.594464 3.998323 -5.831936 -1.425643 -5.820340 -3.617030 8.229179 -0.061338 3.917810 -1.386469 -0.181087 1.356049 3.836425 4.145179 0.708389 3.664052 9.975350 8.024297 -0.533326 -3.096817 -10.643187 5.430453 -8.021077 -8.238067 1.425451 2.066499 -5.040947 -2.472982 -1.607947 8.444358 7.146071 -5.350004 -4.833440 5.205031 +PE-benchmarks/z-algorithm-linear-time.cpp__main = -0.861014 0.643618 3.017241 -2.114595 3.873414 0.569418 1.528347 1.625808 -2.317726 -3.583114 -0.684895 -1.750624 -6.536762 3.471560 -1.062699 0.536167 3.801433 -0.298254 0.273172 -3.308165 3.720726 -4.571377 5.495817 3.592884 -6.990016 0.751437 0.937425 4.623913 1.814045 4.594641 0.879994 -2.062394 -0.124352 0.110919 5.658912 -2.308653 0.278819 0.116472 -3.531076 -7.905850 -2.005369 4.865754 -0.308348 1.574607 1.270767 6.396732 4.339990 3.713789 -3.319886 3.548082 3.687664 -1.508272 3.226891 0.475266 -0.898801 -0.618495 1.774243 -0.265993 -2.670377 1.511001 -0.980435 -7.139110 1.611598 3.757282 6.447064 -3.167791 -0.939508 1.242782 -0.879438 1.874674 0.745283 4.046076 1.724464 -0.480619 6.434465 -2.396441 -0.981486 -7.507094 1.378329 -12.777656 -4.767124 -5.266995 4.485463 2.692403 1.056150 -2.706493 8.411615 0.716232 0.089915 4.110186 4.176430 -2.222773 -0.288574 -4.956498 -1.426405 0.912501 -3.227261 -2.203464 2.646223 1.601240 -3.122739 -1.434314 1.571052 -1.428314 -2.720036 -1.474140 -4.626336 4.889129 -5.724955 -1.941829 -7.294091 1.606641 0.306936 -6.727495 1.531962 -1.281645 1.800432 1.033711 2.245751 1.076803 1.349162 2.751041 -1.193687 -0.694197 -4.437973 6.742627 2.756227 -1.716030 1.969847 3.597849 -0.542555 1.276598 6.231850 -0.151934 -4.908446 3.829523 -2.199247 0.670263 -2.146021 1.176189 5.008481 -3.414443 -1.802988 -0.873472 -0.679524 -1.235114 -0.930535 -3.417998 2.888169 8.923564 -0.754302 2.034540 0.299386 -2.869029 5.699212 1.420959 -0.279024 3.911527 4.064683 1.204531 -4.388266 -2.967359 2.148382 4.681366 1.111578 -4.760889 -1.604650 -0.054799 1.255508 -1.452004 1.638281 2.522193 0.134931 -1.341565 0.042278 -1.522516 6.634964 -2.537742 -4.192692 1.629001 2.302602 -3.181828 -5.525198 -0.438474 -1.518920 -3.182693 -0.373731 -0.015232 1.265878 4.513703 -8.438437 3.865294 -0.328240 -1.186579 3.618788 -2.971928 1.027398 -9.059872 0.159557 1.930474 4.035976 0.189143 -1.190340 -0.819365 -5.078501 2.715612 -0.000416 2.675906 -2.198739 4.546959 -3.054778 -1.590145 -3.055592 -4.088188 -2.186204 0.536186 -1.643927 0.773298 2.061520 -7.619118 3.364244 -3.423268 -2.645225 1.305601 2.176574 3.135588 -2.791525 -5.000223 2.042598 -0.972750 -6.203972 -5.829340 -1.433159 2.142931 -0.536164 -3.492152 -2.576344 -6.454823 4.834639 -2.534178 2.690056 2.475619 0.840739 7.238141 5.315200 -4.776578 -2.909215 -2.620733 1.010749 -2.417784 -0.181454 -1.633990 -1.103066 2.200369 5.264110 0.580260 2.025204 -1.609544 6.595746 -3.742270 -3.827542 2.947291 -0.516528 0.360349 4.902703 3.661035 -2.723110 -2.977127 -5.566895 1.004034 -0.235582 -1.730590 2.773489 -5.006498 -0.356692 2.565048 0.125139 -2.594332 2.058364 0.908777 -1.590631 -4.344505 8.628806 7.706047 -5.212664 1.841204 -3.259723 3.264233 -4.267324 -0.515126 -2.924760 1.237344 1.666528 1.599724 1.698380 2.114557 2.600292 -3.809644 -2.170655 -2.029814 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.119662 1.073048 1.005441 -0.890615 2.158325 0.988136 0.483967 0.173146 -0.635333 -1.688659 -0.503007 -1.538011 -2.776619 1.440877 -0.723503 0.123606 2.201712 -0.248301 0.520450 -1.144657 1.158963 -0.897370 2.876020 1.980585 -3.087881 0.446102 0.826164 1.485243 0.526749 1.890259 0.311038 -2.045989 0.562033 -0.109026 1.750073 -0.915424 -0.253284 -0.599686 -0.846168 -3.445159 -0.789154 1.354161 -0.964905 0.914103 0.651894 2.144087 2.997991 1.430289 -1.478956 1.652010 1.434653 0.158229 1.316553 0.333489 -0.454383 -0.495249 0.837753 -0.402250 -0.970455 0.506388 -0.734835 -2.463210 -0.039316 1.814134 2.753230 -0.846197 -0.623582 0.488130 -0.480772 0.552777 0.131013 1.990130 1.266433 0.950082 2.420872 -0.994127 -0.411222 -3.550823 0.045976 -5.344245 -1.900715 -2.305020 1.305130 0.968086 0.539109 -0.734594 3.324710 0.478676 0.576979 1.721579 2.553389 -1.178332 -0.167196 -1.710085 -0.593167 0.369135 -1.094022 -0.164512 0.570321 0.413660 -1.377379 -1.357752 0.571480 -0.789206 -1.203131 -0.833455 -1.530826 1.823124 -2.656597 -0.665293 -3.160918 0.146806 -0.103578 -3.304943 -0.534363 -0.072228 1.224081 0.760639 0.533760 -0.507624 0.643284 1.247720 -0.499831 -0.463707 -0.810218 2.539840 1.597667 -0.143144 0.627057 1.409205 0.515302 1.620633 2.445236 0.055454 -1.520221 0.928276 -0.419125 -0.038900 -0.972523 0.575310 1.506955 -1.527883 -0.035187 0.705334 -0.654075 -0.785993 -0.369703 -1.968208 1.191560 4.841340 -0.711650 1.092157 0.469490 -1.969851 1.277087 0.119631 -0.358392 1.183706 1.584667 1.677784 -1.806728 -1.179296 1.149300 2.117937 0.524685 -2.448301 -0.185194 0.104890 0.525072 -0.707607 0.634232 0.970064 -0.026261 -0.727994 0.170543 0.300518 3.230734 -1.196284 -2.426347 0.546276 1.256918 -0.534843 -1.752137 -0.176661 -0.786872 -0.948983 0.857727 0.110880 0.298920 2.071605 -4.239203 1.588500 0.316258 -0.458108 1.370696 -0.338475 0.036630 -2.713973 0.493130 1.458888 1.244014 0.472503 -0.045337 -0.696539 -2.060246 0.832292 0.509721 1.360122 -1.104465 1.866745 -0.606928 -1.252247 -1.553185 -1.398113 -0.520272 0.038916 -1.133542 0.729764 0.829538 -4.369312 1.766973 -0.965385 -1.370052 0.368029 -0.109716 1.914687 -1.672838 -2.332810 0.877558 -1.402269 -2.590174 -1.510002 -0.570394 0.564874 0.487044 -0.298949 -1.524421 -2.660465 1.906862 -0.596639 1.020575 1.530603 0.872936 3.164431 0.561919 -2.007220 -1.497678 -1.377988 1.366027 -0.615464 -0.364610 -0.770148 -0.679729 1.050189 3.089839 -0.116584 0.207225 -1.133010 2.097769 -2.252326 -1.047711 1.397380 0.691160 -0.471124 1.675466 1.434098 -0.892774 -1.084448 -1.852410 0.398302 -0.348766 -1.143979 0.871089 -2.467649 -0.377818 1.499977 -0.398659 -1.410616 1.100009 -0.041261 -0.263704 -1.311553 2.720271 3.429871 -2.300818 0.886738 -1.568083 1.501384 -2.681042 -1.341968 -0.513407 -0.228935 0.517233 0.150310 0.219921 0.849091 0.882724 -1.185086 -0.992976 -0.389828 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator > std::__str_concat, std::allocator > >(std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::allocator_type const&) = -0.488474 1.320380 1.686487 -0.605429 3.094094 1.189941 1.436582 0.745807 -1.645081 -2.765009 -0.521792 -3.021049 -5.137158 3.396087 -0.663157 0.996148 5.182455 0.724971 0.562415 -1.965676 2.271846 -3.171665 5.724096 4.943470 -5.170394 0.900432 1.528259 2.066483 0.744842 3.019984 -0.325633 -3.222094 2.022210 -1.822378 2.847563 -2.543816 -0.677843 -0.822207 -0.928134 -7.546372 -1.323888 2.479130 -1.084410 0.812720 0.884521 5.320610 5.530767 3.002324 -2.174291 3.640643 1.772726 -1.523485 2.549933 0.737462 -0.017269 -0.046797 1.081399 0.695016 -2.773813 1.184865 -1.315512 -5.902883 -0.032163 3.348314 5.319559 -1.526697 -1.194846 1.179666 -0.882226 0.847101 0.200243 3.390777 2.951909 1.047875 4.685440 -3.019552 -0.974464 -7.067197 -0.761535 -11.958289 -4.168771 -3.874584 3.547091 0.174202 1.680747 -1.527567 6.333227 0.497708 0.896962 3.095645 5.530091 -3.716777 -1.109336 -2.847965 -0.366725 0.869522 -2.567330 -0.284337 3.031118 -0.761304 -3.512528 -3.209172 2.474962 -0.565956 -2.276909 -1.753013 -2.243757 3.861130 -5.106754 -2.487644 -6.663289 -1.099409 -0.399610 -6.376742 0.960643 0.485111 2.780622 2.718856 -0.226542 -1.921973 1.659459 2.340557 -0.698195 -2.063538 -0.953744 5.501239 2.012803 -0.110712 1.867433 2.737892 0.931823 3.693023 5.885137 -0.257557 -2.101211 1.967140 -2.255133 0.602626 -1.902541 -0.469245 3.304734 -3.551434 -0.476568 0.940723 -2.106441 -0.817769 1.342507 -2.154306 1.951325 8.599204 -0.982146 2.663786 1.118397 -4.119383 3.612927 -0.856476 -0.760363 1.969304 3.978744 2.953378 -4.793883 -2.387127 2.022041 4.960685 1.670605 -5.486147 -1.318225 -0.419137 1.562601 -1.203867 1.686010 1.954366 1.190262 -2.194655 0.267810 0.833766 7.226532 -3.653807 -4.137266 0.779380 0.891690 -0.585969 -5.752259 -0.390904 -1.710025 -1.601768 0.194642 0.114575 0.498474 4.264868 -7.674517 3.716043 -1.475859 -1.468406 3.434395 -0.065803 -0.980897 -6.304456 0.699584 2.986517 3.438240 1.698782 -0.627823 -0.828941 -4.384893 0.852113 0.427219 2.461235 -1.912169 4.191463 -1.547142 -2.662176 -2.872089 -2.470595 -0.266921 -1.316539 -1.066203 1.777184 2.249544 -8.162680 3.646408 -1.448102 -2.967329 0.926189 0.748443 2.921510 -3.674313 -5.309807 1.834160 -2.386790 -4.847934 -3.346198 -1.501216 1.214457 0.929834 -2.194301 -2.057538 -5.725189 4.557913 -1.020290 2.938781 2.822801 1.035456 7.042580 2.295821 -4.555260 -2.798272 -2.217399 1.213584 -2.540382 -0.834082 -2.361481 -1.612794 2.754216 5.990277 0.223696 0.681145 -2.156186 4.628149 -5.199342 -2.201882 3.381509 2.419787 -0.389954 3.206145 3.482357 -2.890868 -1.818336 -3.302222 -0.330495 -0.623851 -2.083326 1.649084 -5.042578 -0.639342 2.353021 -0.849775 -1.759047 1.771919 0.041260 -0.334306 -2.382405 5.512749 7.576816 -5.285855 1.300553 -3.188176 2.951699 -5.194375 -2.710562 -0.711996 1.560143 -0.033469 0.136437 1.884010 1.328906 1.703245 -4.044529 -2.350537 -0.920261 +PE-benchmarks/z-algorithm-linear-time.cpp__std::char_traits::length(char const*) = -0.047959 0.074187 0.150852 -0.097095 0.169069 -0.040761 0.085106 0.002587 -0.187054 -0.288537 0.020654 -0.325482 -0.337677 0.278622 -0.097826 0.057152 0.396993 0.088617 0.021521 -0.205347 0.083720 -0.228953 0.444247 0.449787 -0.380770 0.072168 0.097082 0.203905 0.117136 0.184709 0.039327 -0.273047 0.145170 -0.045471 0.159462 -0.183221 -0.017049 -0.004840 -0.071148 -0.570688 -0.049943 0.136265 0.077063 0.033706 0.037695 0.346494 0.380087 0.245882 -0.102309 0.299784 0.227428 -0.006760 0.151387 0.058174 0.027454 -0.104148 0.158474 -0.180372 -0.188637 0.087118 -0.019847 -0.457826 -0.071060 0.290635 0.418813 -0.078543 -0.056380 0.014940 -0.070522 0.097232 0.077826 0.187622 0.125286 0.112548 0.238713 -0.220717 0.025316 -0.583535 -0.051627 -0.997705 -0.308667 -0.213211 0.394175 0.157394 0.046081 0.035571 0.430770 0.095797 0.045847 0.192963 0.424459 -0.227646 -0.130408 -0.073812 -0.055988 0.175175 -0.217742 0.054169 0.086398 0.118905 -0.245923 -0.163811 0.243737 -0.056587 -0.183833 -0.035782 -0.105422 0.225626 -0.503444 -0.105493 -0.395801 -0.054455 0.083527 -0.463438 0.115922 -0.038266 0.278618 0.167500 -0.075430 -0.083781 0.080283 0.070455 -0.045615 -0.036890 -0.362809 0.281679 0.087056 0.029298 0.111920 0.161313 0.130608 0.299637 0.230672 -0.118414 -0.111806 0.119691 -0.132948 0.058125 -0.161478 -0.089342 0.195626 -0.273149 0.107635 0.008561 -0.193854 -0.201491 -0.011250 -0.121624 0.125977 0.490782 -0.010801 0.233741 0.174870 -0.272173 0.107471 -0.146694 -0.048953 0.146156 0.264172 0.160684 -0.062753 -0.204702 0.126690 0.392930 0.160782 -0.277092 -0.096596 0.025423 0.091004 -0.038347 0.158905 0.100618 0.020184 -0.164950 -0.019937 0.132903 0.438591 -0.092518 -0.110715 0.015050 0.074480 -0.030252 -0.313386 0.008641 -0.049450 -0.011005 -0.004040 0.044549 0.057003 0.340731 -0.721745 0.296792 -0.025945 -0.002619 0.172062 0.003863 -0.158386 -0.514861 0.089499 0.205575 0.287825 0.054183 0.090285 0.031890 -0.341656 -0.023180 0.021137 0.137715 -0.188958 0.258789 0.005404 -0.204364 -0.222308 -0.145654 0.019265 -0.032883 -0.098900 0.174861 0.247848 -0.684451 0.282926 -0.136853 -0.236388 -0.020933 -0.025848 0.214408 -0.351482 -0.318678 0.074136 -0.227878 -0.381874 -0.222255 -0.096389 0.084825 -0.084467 -0.102066 -0.080190 -0.190088 0.318211 -0.092154 0.164441 0.198305 0.031372 0.396850 0.091342 -0.221983 -0.120684 0.003919 0.076285 -0.324539 -0.070456 0.109996 -0.112287 0.172309 0.465811 0.024333 -0.047238 0.063015 0.319132 -0.261731 -0.238387 0.208970 0.140766 -0.027509 0.336657 0.220488 -0.302267 -0.074731 -0.298366 -0.056287 0.012676 -0.205817 0.186731 -0.268338 0.031388 0.182253 -0.041022 -0.173378 0.219917 -0.014112 -0.049391 -0.093159 0.413796 0.496524 -0.267519 0.162747 -0.306802 0.122478 -0.404969 -0.249946 -0.030619 0.153080 -0.080969 -0.000644 -0.032766 0.139574 0.119721 -0.176340 -0.202373 0.069934 +PE-benchmarks/z-algorithm-linear-time.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -0.339036 1.281610 1.549463 -1.414356 3.335246 1.066634 1.069069 0.820199 -1.430988 -3.032192 -0.588773 -3.137955 -4.911965 2.484752 -0.851227 0.677050 4.345654 -0.107591 0.524551 -1.952775 1.982649 -1.979029 5.173176 4.050906 -5.140360 0.817649 1.174346 2.606242 0.841609 2.426246 0.239432 -3.189952 1.152106 -0.747919 2.988991 -1.702428 -0.405095 -1.008260 -1.201424 -6.492636 -1.326311 2.709040 -1.239931 1.127558 0.968083 4.465936 5.054618 2.781871 -2.538881 2.988928 2.558636 -0.560359 2.311173 0.628964 -0.849429 -0.766339 1.017222 -0.419986 -2.112610 0.736836 -0.951471 -4.938775 0.066215 3.115910 4.809865 -1.702474 -1.257756 1.170500 -0.235107 0.762923 0.464047 3.398652 2.396274 0.968744 4.429697 -2.264156 -0.807065 -6.485494 0.017521 -10.552966 -3.915838 -3.820918 3.237130 1.226917 1.085178 -1.512351 6.230103 0.361197 0.947037 3.077571 4.400591 -2.699710 -0.748444 -3.082410 -0.714682 0.958716 -2.323628 -0.537822 1.905523 0.610449 -2.824112 -2.063567 1.590081 -1.163262 -2.218114 -1.722206 -2.293749 3.185282 -4.553457 -1.678751 -5.977167 0.326992 0.214486 -5.867690 0.081395 0.171443 2.205514 1.665786 0.429393 -0.995062 1.075357 1.673349 -0.955882 -0.896073 -2.010438 4.693094 2.520059 -0.231179 1.742119 2.749773 1.089144 3.136697 4.735970 -0.357150 -2.757910 1.975179 -1.435401 0.388851 -1.729626 0.264254 3.091507 -3.072773 -0.150179 0.868180 -1.580503 -1.254234 0.005683 -2.728785 1.871372 8.155556 -0.881631 2.276994 1.150470 -3.362392 2.995663 -0.511849 -0.756041 2.027247 3.166019 2.647107 -3.525929 -2.212610 2.070976 4.356426 1.290367 -4.570637 -0.392739 0.471844 1.363002 -1.361809 1.262918 2.001083 0.796228 -1.523194 0.232658 0.897015 6.122441 -2.198409 -3.608677 0.906278 2.101276 -0.741292 -4.078142 -0.386398 -1.578928 -1.723182 1.090512 0.447025 0.609177 3.921077 -7.177086 2.906795 -0.110772 -0.691953 2.841870 -0.325071 -0.515472 -5.743593 0.631519 2.515580 2.828513 0.705681 -0.039800 -1.001542 -3.736021 1.154986 0.739140 2.176372 -1.778060 3.508086 -1.402785 -1.996272 -2.397680 -2.602442 -0.864496 -0.152883 -1.419744 1.516453 1.888137 -7.350956 3.285397 -1.758697 -2.688986 0.540941 -0.169717 3.330571 -3.268726 -4.216654 1.828427 -2.302775 -4.656668 -2.945832 -1.171277 1.189096 0.651435 -1.261676 -2.294346 -4.852392 4.222024 -0.866589 2.469620 2.610628 0.925051 5.854169 1.638459 -3.712153 -2.398935 -2.434784 1.423966 -1.766168 -0.792403 -1.411061 -1.285277 2.072772 5.265412 -0.282336 0.641098 -1.576955 3.768482 -4.449279 -2.017940 2.639059 1.635093 -0.675383 3.461156 2.830362 -2.315232 -1.663548 -3.607482 0.459204 -0.608748 -2.043969 1.667419 -4.420582 -0.565765 2.678774 -0.792453 -1.945463 1.826579 0.093630 -0.517168 -2.450368 5.310843 6.556730 -4.007995 1.447889 -3.214010 2.657336 -4.763129 -2.527672 -0.706480 0.467433 0.286208 0.175478 1.223594 1.465212 1.513395 -2.926239 -2.330082 -0.460643 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.121920 0.285697 0.408187 -0.646375 0.864158 0.471727 0.001535 0.004627 -0.441503 -0.585623 -0.343180 -0.641559 -0.877482 0.650457 -0.283563 0.224817 0.802941 -0.095795 -0.028022 -0.369115 0.571426 -0.188184 0.849392 0.468034 -1.030773 0.119872 0.307213 0.796978 0.180998 0.910377 0.073339 -0.884425 -0.208248 0.158004 0.693031 -0.419042 0.045540 0.143565 -0.234130 -1.274028 -0.230024 0.716396 -0.169291 0.290655 0.198767 0.315660 0.865491 0.563155 -0.487044 0.398729 0.736403 0.415646 0.363196 0.079622 -0.245737 0.049752 0.455412 -0.496089 -0.231613 0.140618 -0.112284 -0.546620 0.080199 0.664938 0.975357 -0.366399 -0.312525 0.278019 -0.008871 0.208819 0.030994 0.657856 0.060103 0.286685 0.622503 -0.351982 -0.066375 -1.214519 0.461952 -1.506904 -0.565034 -0.792981 0.261276 0.880767 0.065571 -0.260176 1.430817 -0.133868 0.021688 0.685681 0.872060 -0.319866 0.003900 -0.935772 -0.397859 0.157585 -0.401876 -0.471810 -0.107456 0.608256 -0.313467 -0.517786 0.000000 -0.351307 -0.481878 -0.198865 -0.671676 0.777309 -1.029267 -0.296661 -0.983521 0.614019 0.000000 -1.098790 -0.469618 -0.250981 -0.049622 -0.057731 0.239731 -0.304501 0.252623 0.462761 -0.362118 0.063624 -0.612451 0.790819 0.603272 -0.403335 0.073435 0.432920 0.227292 0.518929 0.462623 -0.294757 -0.705825 0.596328 -0.004165 -0.220542 -0.575861 0.286603 0.267171 -0.638998 -0.067273 0.349515 -0.207592 -0.204497 -0.538234 -0.917981 0.421696 2.050129 -0.300438 0.191486 0.047323 -0.635705 0.604691 0.284744 -0.246332 0.353672 0.300556 0.612614 -0.564895 -0.546453 0.558947 0.805971 0.253234 -0.498610 -0.092301 0.008733 0.087317 -0.081087 0.254887 0.467026 -0.381694 -0.051733 -0.139618 -0.131090 1.278044 -0.112958 -0.688729 0.359348 0.794128 -0.518183 -0.479176 -0.106252 -0.583019 -0.484377 0.412174 0.003402 0.363889 0.864003 -1.655478 0.679700 0.405061 -0.241311 0.401959 -0.440328 0.295127 -1.003500 -0.098512 0.576438 0.684530 -0.239794 0.248192 -0.326794 -0.820926 0.354926 0.244458 0.545144 -0.450726 0.570288 -0.118208 -0.419003 -0.408281 -0.248264 -0.529672 0.005239 -0.470888 0.237787 0.294050 -1.416399 0.776428 -0.401064 -0.080756 0.274805 0.030404 0.744227 -0.593252 -0.709667 0.483566 -0.088072 -0.644064 -0.276468 -0.154391 0.520811 0.049863 0.050579 -0.566736 -1.006935 0.426269 -0.148519 0.321219 0.423377 0.241353 0.599820 0.199229 -0.456838 -0.407251 -0.525919 0.355423 -0.008339 0.156600 -0.181724 -0.085429 0.434455 0.907066 0.039332 -0.052055 -0.386567 0.816593 -0.406360 -0.238840 0.318701 -0.335244 -0.364550 0.429477 0.451395 -0.347001 -0.486583 -0.907868 0.476138 -0.263885 -0.340779 0.298659 -0.789756 -0.203993 0.726734 -0.243857 -0.638245 0.501495 0.256650 -0.387460 -0.453664 1.276724 0.631981 -0.337700 0.513251 -0.669793 0.500802 -0.936685 -0.351132 -0.392719 -0.206899 0.037957 0.065565 -0.022947 0.395001 0.181564 0.152600 -0.237687 -0.352285 +PE-benchmarks/z-algorithm-linear-time.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/strongly-connected-components.cpp__Graph::Graph(int) = -0.886871 -0.353017 0.767178 -1.783412 1.162852 0.995514 0.410560 -0.848063 -1.389678 -1.018199 0.615275 -1.692805 -2.233590 1.857005 -0.732418 0.245240 1.180535 -0.765547 -0.888833 -1.231136 1.149372 -0.763242 2.130421 1.889254 -2.224627 0.037407 0.101549 1.481186 0.369871 1.118776 0.558282 -0.957366 -0.791572 0.322133 1.440981 0.537627 -0.555454 -0.048229 -0.216505 -2.469148 -0.400903 2.355885 0.393642 0.063368 0.382942 0.544310 1.484941 1.397248 0.112313 0.749775 1.513490 -0.208230 1.396938 -0.301156 1.203996 -0.464769 1.912759 -0.270240 0.003629 -0.066071 -0.674896 -0.346056 0.109076 2.011536 2.134391 -0.659266 -1.068819 -0.334929 0.157511 1.216118 0.360379 1.714488 -0.116849 0.616049 1.745560 -0.498202 0.635133 -2.231303 1.250257 -2.368168 -1.583015 -0.045413 1.320372 1.700051 0.331098 -0.682506 3.176779 0.016607 -1.104992 0.375170 1.701236 -0.088378 -0.043586 -0.372897 -1.274213 -0.092360 -0.607702 0.066458 0.039322 1.393582 -1.574929 0.246495 -0.008691 -0.231418 -1.336363 0.396940 -0.941650 1.421743 -1.071854 0.010450 -1.000993 1.457096 0.503980 -2.910461 -1.080448 -1.563999 -0.729368 -0.067344 -0.867762 -0.027394 0.966174 0.353118 -0.692274 -0.066005 -1.845405 1.805799 1.437511 -0.019921 -0.182868 1.116752 0.356121 1.015353 0.282424 -0.621162 -0.650769 0.724482 -0.269446 0.690223 0.001976 0.379471 0.718355 -0.619811 -0.196263 -0.224526 -0.324728 -0.343018 -1.107959 -0.749597 -0.108865 4.672193 -1.082331 1.772666 0.783706 -0.948689 1.428544 0.419648 0.109870 0.641787 1.173942 0.742509 -1.264409 -1.268969 2.038357 2.466819 0.569046 -1.306027 0.677188 1.105986 -0.004866 -0.873666 1.568050 -0.033170 0.077404 -0.618754 -0.375504 0.187470 2.679102 -0.765686 -2.313946 0.479028 1.248655 -0.118901 -0.632566 0.264718 -0.925206 -0.489129 0.194284 0.421053 1.140751 1.856154 -2.952604 1.621538 0.397448 -0.606102 2.486144 -0.870997 -0.535934 -2.568023 -0.257748 0.330477 1.511726 -0.086827 -0.898480 -0.343271 -2.090822 0.634756 0.060827 0.463797 -1.581240 2.139944 -0.901035 -0.653609 -0.675386 -1.503704 -1.005771 0.338657 -1.618982 0.726364 0.251304 -2.259252 1.628963 0.325285 -0.484548 -0.575251 -0.030336 1.081709 -0.758619 -1.530843 0.521359 -0.989697 -1.603908 -1.359758 -0.941176 0.305390 0.238231 0.027909 -2.069772 -0.816651 2.082945 -1.249009 2.441331 1.017563 -0.231894 0.920019 1.954041 -0.864280 -0.298732 -0.854501 0.772522 0.213425 -1.232039 -0.466484 -0.742961 0.888183 0.922984 -0.221979 -0.234707 -0.894606 1.952432 -0.411230 -0.582716 0.074324 -1.322431 -0.856218 1.212365 0.776571 -0.307633 0.103344 -2.181086 -0.450106 -1.924871 -1.227398 1.424337 -0.373501 0.551350 0.139536 -0.203861 -0.537453 0.304441 0.600804 -0.746823 -0.007201 2.552141 1.203992 -0.967823 0.373363 -2.267286 1.778210 -1.079125 -0.678853 -0.204823 -0.335185 -0.407153 -0.668487 -0.645870 1.278532 1.260447 -1.004509 -1.049320 0.731554 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/strongly-connected-components.cpp__Graph::DFSUtil(int, bool*) = -0.651191 0.936332 1.862081 -2.063836 1.609501 2.012877 0.582854 -0.287435 -1.819892 -2.645370 0.265000 -4.217650 -3.917284 2.966773 -1.288374 -0.194809 4.080059 -0.065484 -0.725090 -1.194983 1.246623 0.182706 4.471577 4.757219 -4.043862 0.344582 0.392184 2.308021 1.023591 1.350498 1.239114 -3.367343 0.414894 0.329802 1.543480 -0.755790 -0.557717 -0.704522 -0.895528 -5.710821 -0.724856 2.743600 -1.065476 0.091558 0.901021 1.632668 4.626423 2.510720 -0.843812 1.379418 2.051111 0.754458 1.443122 -0.033827 0.239372 -1.683329 0.907180 -1.687303 -1.104905 0.256017 -0.406499 -2.538451 -0.803052 3.740505 3.988092 0.005707 -1.253238 -0.370180 0.245316 0.783532 0.097033 2.607343 1.570287 2.490303 2.464089 -1.140767 0.376002 -4.386076 1.035563 -5.997149 -3.073566 -1.712243 3.535104 3.428163 0.133791 -1.944002 4.925092 -0.040618 0.058311 3.646079 4.745253 -1.699417 -0.798714 -1.906742 -1.476125 1.313658 -1.811505 0.931715 -0.946331 1.481142 -2.824966 -1.326539 0.288149 -0.622205 -2.091838 0.055531 -0.820192 2.549625 -3.589829 -0.246382 -3.088027 1.267472 1.311439 -5.438050 -2.153774 -1.037335 1.219647 1.090858 -1.429959 -1.011060 0.996363 0.608870 -0.718849 -0.030860 -3.683122 3.266013 1.885520 0.048550 0.336080 2.287729 1.924406 2.782056 1.200721 -0.979386 -0.611563 0.902676 -0.681694 0.288756 -1.204348 0.215049 1.284112 -1.970513 -0.424673 1.176245 -1.786302 -1.769750 -2.441855 -1.687401 0.959269 9.727359 -0.828861 2.740471 1.895529 -2.943469 1.744830 -0.766143 -0.906050 0.802970 1.859953 2.817991 -3.269181 -2.038387 2.452436 4.717953 1.467805 -2.427561 1.496828 1.239875 0.097635 -1.765525 2.372671 0.627688 0.250009 -1.559541 -0.540599 2.710051 4.992759 -0.872968 -2.745375 0.170253 1.588988 0.899785 -1.317372 0.426344 0.154064 -0.272748 1.937633 0.505173 1.733369 3.681433 -5.716444 2.962949 1.153671 -0.261842 2.288419 -0.165336 -1.812577 -2.716943 0.625032 2.640985 2.541284 0.444977 -0.361603 -0.681190 -3.770508 -0.040082 1.268180 1.484193 -2.227653 3.184848 -0.100079 -1.734310 -2.352530 -2.217032 -1.258736 0.014515 -2.553926 1.854167 0.631148 -5.057343 3.807363 -0.017179 -1.561846 -1.102279 -1.799104 2.447538 -3.630471 -3.680777 1.080412 -2.186604 -4.396452 -1.364253 -1.513683 0.936518 1.058266 0.293113 -2.847037 -2.939151 4.029651 -0.355116 3.254067 2.098657 0.519914 3.545327 1.711465 -1.718249 -1.179616 -3.033397 2.895115 -0.380185 -1.982458 -0.223324 -1.386477 1.693810 3.972375 -1.257236 -1.576384 -0.971725 2.858386 -2.171656 -1.842419 1.054350 -0.063937 -1.533267 1.971589 1.690137 -2.135352 -0.200178 -3.678151 -0.324995 -1.488852 -2.552959 1.607540 -2.278546 0.415129 2.070402 -0.903527 -1.693072 1.422995 0.382592 -0.749589 0.425201 4.078096 3.583983 -1.821099 1.656759 -4.177811 2.614727 -4.263073 -3.247050 0.162106 -0.552167 -0.237680 -0.950455 -0.644928 1.556706 1.829527 -1.726298 -1.970837 1.658420 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/strongly-connected-components.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator*() const = 0.008113 0.408769 0.436557 -0.350547 0.748536 0.277740 -0.030410 0.071753 -0.147372 -0.471277 -0.320510 -0.386770 -0.779783 0.359088 -0.186018 0.053336 0.386884 -0.235618 0.052528 -0.331145 0.343950 -0.140282 0.579300 0.070387 -0.805164 0.137409 0.300322 0.600951 0.233300 0.680287 -0.087462 -0.482120 -0.112857 0.232107 0.494909 -0.156759 0.123107 -0.132292 -0.399844 -0.699709 -0.223230 0.334433 -0.364163 0.303257 0.099624 0.607031 0.700141 0.368146 -0.426784 0.241624 0.558490 0.198598 0.212254 0.105187 -0.330584 -0.147414 0.471873 -0.341936 -0.250227 0.087995 -0.000368 -0.668447 -0.047257 0.381307 0.632109 -0.349066 -0.161767 0.363656 -0.106630 0.100682 -0.043232 0.433521 0.236824 0.263968 0.533102 -0.083165 -0.060290 -0.625671 0.149693 -1.204393 -0.374130 -0.766930 0.111420 0.424932 -0.045966 -0.125099 0.971817 0.095679 0.100529 0.408947 0.619663 -0.269745 0.015903 -0.722957 -0.144359 0.102288 -0.342685 -0.325701 -0.075337 0.409799 -0.117913 -0.287094 0.016428 -0.385884 -0.317887 -0.086025 -0.633645 0.485347 -0.859173 -0.060266 -0.841727 0.193709 0.047575 -0.724358 -0.260748 0.109453 0.333677 -0.072771 0.489928 -0.067224 0.102706 0.407630 -0.209703 0.092948 -0.431328 0.576055 0.470016 -0.291933 0.169639 0.356333 0.273257 0.235837 0.526596 -0.061500 -0.731055 0.362018 0.016946 -0.187988 -0.281536 0.321935 0.237537 -0.428975 0.079425 0.271784 -0.040573 -0.158398 -0.427357 -0.742911 0.394397 0.940096 -0.150158 -0.051296 -0.182058 -0.431948 0.253879 0.100702 -0.312885 0.267869 0.072493 0.454332 -0.167539 -0.324610 0.394342 0.408984 0.095906 -0.486956 0.122210 -0.030869 0.089804 -0.135324 0.069144 0.501196 -0.258519 0.085005 -0.084645 -0.143805 0.827037 -0.115472 -0.596814 0.387888 0.293463 -0.320775 -0.287130 -0.093398 0.014112 -0.432039 0.329065 0.013595 0.149368 0.545382 -1.103907 0.381266 0.359959 -0.267967 0.180603 -0.421309 0.366955 -0.470510 -0.004596 0.481102 0.320323 -0.044676 0.093556 -0.364160 -0.483460 0.321313 0.212259 0.369721 -0.154383 0.265698 -0.009980 -0.268668 -0.375804 -0.322170 -0.249408 0.302217 -0.298726 0.074019 0.000220 -1.316479 0.568492 -0.474393 -0.084714 0.122023 0.023063 0.521015 -0.360148 -0.458914 0.300405 -0.166934 -0.631435 -0.321518 -0.025915 0.261582 -0.001008 0.003790 -0.348164 -0.740588 0.249822 -0.107790 -0.040230 0.275028 0.361620 0.582724 0.086781 -0.383393 -0.318009 -0.258772 0.363848 -0.114257 0.209062 0.174736 0.021087 0.238003 0.631965 -0.023541 0.163923 -0.257770 0.408647 -0.370408 -0.369121 0.268549 0.042012 -0.254344 0.479873 0.316152 -0.085446 -0.455028 -0.617170 0.214654 -0.157922 -0.290055 0.050169 -0.637987 -0.264718 0.723531 -0.122348 -0.573978 0.404970 -0.041719 -0.295648 -0.569913 0.886193 0.843505 -0.478213 0.433041 -0.392891 0.413030 -0.652266 -0.291027 -0.159118 -0.158677 0.264656 0.077886 0.031285 0.144998 0.047949 -0.065664 -0.151513 -0.353446 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/strongly-connected-components.cpp__Graph::getTranspose() = -0.589738 0.652103 1.349102 -2.098908 1.767388 2.460097 0.636549 -0.238294 -2.103796 -2.185238 0.239745 -4.092499 -3.559238 3.088154 -1.063565 0.215049 4.164334 0.201636 -0.868686 -0.736437 1.306153 0.274364 4.253677 4.668426 -3.645138 0.453204 0.095574 1.802089 0.323793 1.974697 0.843368 -3.803212 0.367895 0.229401 1.365685 -1.051010 -0.815662 -0.299845 -0.392763 -5.813895 -0.556785 3.255877 -0.547634 -0.019288 0.991996 1.101496 4.341611 2.395643 -0.677530 1.458489 1.764433 0.816986 1.526264 0.053296 0.551528 -0.945473 0.783251 -1.399892 -0.981804 0.213738 -0.639702 -1.850252 -0.721987 3.495799 3.828798 -0.045067 -1.415071 -0.651817 0.219690 0.782565 0.160522 2.576427 1.333868 2.019231 2.091167 -0.687367 0.282957 -3.915996 1.307253 -5.410670 -2.890962 -1.378690 3.300039 3.879799 0.424075 -2.337549 4.889269 -0.585331 -0.099139 3.315624 4.472989 -1.670014 -0.722690 -1.754444 -1.601791 1.018690 -1.492835 0.412155 -0.646356 1.142436 -2.838167 -1.516411 0.098601 -0.498057 -2.021610 0.068611 -0.703348 2.563190 -3.391868 -0.524815 -2.737525 1.653077 0.947490 -5.298284 -2.274505 -1.186570 -0.150652 1.004960 -1.803188 -1.323045 1.268188 0.460463 -1.001972 -0.212127 -3.303178 3.334103 1.638490 -0.114449 0.252548 1.861646 1.579562 2.795458 0.911661 -1.250809 -0.299508 0.990905 -0.395893 0.330096 -1.321845 0.081806 0.724079 -2.230255 -0.330554 1.113048 -1.845308 -1.077298 -2.768153 -1.481805 0.634986 9.844207 -1.162969 3.007007 1.870108 -3.005088 2.307062 -0.361746 -0.775454 0.661762 1.958102 2.675773 -3.207188 -1.998756 2.414443 4.771256 1.565948 -2.182038 1.321546 1.154804 0.068622 -1.450920 2.490229 0.425324 0.284331 -1.672348 -0.597695 2.253800 5.251326 -0.792147 -2.670929 0.221175 2.001885 0.633497 -1.115882 0.315027 -0.931942 -0.223188 1.877105 0.252108 1.831276 3.574472 -5.562408 3.133115 0.769004 -0.551006 2.510722 -0.133459 -1.645368 -2.615764 0.213428 2.415503 2.889978 0.267478 -0.298442 -0.585826 -3.713655 -0.063285 1.151532 1.437966 -2.333594 3.247811 -0.144975 -1.851302 -1.889569 -2.059997 -1.344308 -0.596763 -2.561664 1.848438 1.005501 -4.623537 3.525113 0.392497 -1.340434 -0.819510 -1.214437 2.109674 -3.251053 -3.561458 1.202486 -1.771142 -3.746981 -0.866983 -1.550750 1.102773 1.199462 0.413855 -2.728713 -3.272021 3.879590 -0.186879 3.514315 2.182969 0.302389 2.986963 2.034052 -1.734277 -1.077926 -3.317345 2.703424 -0.348550 -1.620830 -0.410105 -1.649756 1.796301 3.653426 -0.710222 -1.697650 -1.453430 3.132686 -1.475014 -1.024614 1.183474 -0.926459 -1.442716 1.425840 1.844317 -2.015643 -0.217944 -3.444265 0.123463 -1.594829 -2.199744 1.730104 -2.185243 0.420356 1.680802 -0.966542 -1.673864 1.141841 0.575950 -0.954110 0.554992 4.125311 2.195054 -1.406032 1.862271 -3.846172 2.561149 -4.037716 -2.841789 -0.161125 -0.598383 -0.789202 -0.923486 -0.577627 1.600868 1.540466 -1.235783 -1.775974 1.388737 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/strongly-connected-components.cpp__Graph::addEdge(int, int) = -0.164326 0.331884 0.450107 -0.264187 0.527004 0.590706 0.242617 -0.119605 -0.410527 -0.492845 -0.064848 -0.887586 -0.943390 0.806856 -0.217229 0.252976 1.153778 0.178897 -0.118789 -0.280318 0.314766 -0.259326 1.260686 1.212431 -0.927336 0.186563 0.277930 0.475983 0.071305 0.652928 -0.196768 -0.771066 0.385684 -0.276657 0.288088 -0.401325 -0.185549 -0.210944 -0.077080 -1.556732 -0.155943 0.451956 -0.176537 -0.007302 0.115819 0.448248 1.239375 0.646140 -0.029216 0.504433 0.294081 -0.047873 0.430800 0.130127 0.300084 0.037132 0.475676 -0.289547 -0.484457 0.058847 -0.181542 -0.949825 -0.238634 0.816049 1.006179 -0.042053 -0.276699 0.057121 -0.183261 0.132910 -0.002605 0.600411 0.326987 0.537521 0.592142 -0.547811 0.192863 -0.903189 -0.100729 -1.660822 -0.837275 -0.579908 0.653839 0.471930 0.414948 -0.207579 1.255804 -0.059976 0.132561 0.404428 1.298107 -0.898381 -0.278445 -0.348565 -0.077224 0.227173 -0.497978 0.108263 0.129249 -0.054671 -0.760052 -0.563051 0.552367 0.033816 -0.511060 -0.057575 -0.224935 0.751796 -1.059194 -0.465316 -1.066060 -0.151156 -0.053566 -1.356959 -0.205103 0.024186 0.471496 0.479771 -0.349678 -0.710050 0.389677 0.470976 -0.088781 -0.444295 -0.432986 0.889278 0.413544 -0.063726 0.272787 0.483841 0.393248 1.064241 0.809088 -0.158857 -0.158589 0.267679 -0.392360 0.088566 -0.242868 -0.147495 0.002098 -0.763372 -0.031841 0.500667 -0.538004 -0.087995 -0.236702 -0.223312 0.318292 2.197603 -0.255340 0.639053 0.379791 -0.952312 0.475534 -0.385870 -0.290319 0.162458 0.584383 0.713420 -1.032760 -0.528170 0.527964 1.187139 0.449544 -0.861966 0.096608 -0.067078 0.185379 -0.299788 0.504540 0.264725 0.245007 -0.514608 -0.093038 0.470217 1.577414 -0.641029 -0.887849 0.206534 -0.128492 0.094844 -0.847071 -0.052924 -0.151683 -0.133772 0.158313 0.030641 0.207726 0.959184 -1.348457 0.862491 -0.169163 -0.444669 0.945579 0.010591 -0.372971 -0.602222 0.107303 0.759529 0.793835 0.213331 -0.127073 -0.204822 -0.975013 -0.073344 0.184665 0.436078 -0.496987 0.823542 0.056660 -0.707374 -0.599708 -0.521847 0.060607 -0.332889 -0.440527 0.458587 0.263608 -1.606895 0.968569 0.048525 -0.492582 0.119028 -0.154598 0.556854 -0.877131 -1.076542 0.375662 -0.475918 -0.849761 -0.302191 -0.327481 0.290055 0.309305 -0.124220 -0.599615 -0.796863 0.891601 -0.016220 0.739850 0.548455 0.231097 1.039302 0.381999 -0.706836 -0.345333 -0.497444 0.354741 -0.408263 -0.375856 -0.308837 -0.408021 0.663596 1.218997 -0.041182 -0.147699 -0.384453 0.831957 -0.902941 -0.365608 0.566210 0.398956 -0.363527 0.385661 0.648253 -0.574672 -0.263311 -0.623105 -0.274663 -0.295733 -0.660089 0.352378 -0.817783 0.048266 0.569489 -0.268365 -0.408865 0.374726 -0.009136 -0.075102 -0.103070 1.009564 1.081055 -0.734119 0.360547 -0.857581 0.591656 -1.117721 -0.723980 0.104760 0.202570 -0.224904 -0.181987 0.152537 0.356470 0.301226 -0.624119 -0.403787 -0.036241 +PE-benchmarks/strongly-connected-components.cpp__Graph::fillOrder(int, bool*, std::stack > >&) = -0.632807 1.067025 1.873390 -2.006360 1.752780 2.158433 0.647145 -0.206732 -1.859307 -2.631354 0.122500 -4.102222 -3.981059 3.078281 -1.197673 -0.043070 4.357156 0.097381 -0.667710 -1.221665 1.373422 -0.041850 4.666328 4.941164 -4.181662 0.449653 0.569835 2.306621 0.957620 1.578810 0.992824 -3.445253 0.574862 0.047562 1.576100 -1.034293 -0.602037 -0.728213 -0.836337 -6.089267 -0.733999 2.631858 -1.169457 0.079886 0.863386 1.661713 4.866747 2.592074 -0.894458 1.520960 2.018405 0.708817 1.477047 0.035600 0.304248 -1.328143 0.884243 -1.565200 -1.197023 0.307450 -0.429999 -2.809417 -0.753898 3.779435 4.111128 -0.053725 -1.282199 -0.227598 0.155875 0.715651 0.066622 2.663678 1.629059 2.426234 2.587534 -1.495511 0.280151 -4.628808 0.906098 -6.385623 -3.242367 -1.959097 3.507970 3.220112 0.388056 -1.882944 5.120635 -0.173761 0.230857 3.617709 4.918469 -2.047889 -0.842553 -2.049117 -1.388669 1.335735 -1.871612 0.813843 -0.783307 1.183145 -2.932907 -1.657133 0.599636 -0.518656 -2.196410 -0.169686 -0.867160 2.748533 -3.768519 -0.562869 -3.436706 1.121264 1.060138 -5.569170 -2.020447 -0.952200 1.411905 1.241702 -1.414245 -1.380519 1.051581 0.891428 -0.715730 -0.360073 -3.369332 3.438709 1.952967 -0.061741 0.480445 2.267417 1.915275 3.108139 1.640942 -0.962797 -0.675207 1.045832 -0.830172 0.219844 -1.318844 0.122471 1.248046 -2.187689 -0.491405 1.359009 -1.908056 -1.618566 -2.062753 -1.715709 1.077951 10.105894 -0.837069 2.738830 1.874552 -3.170497 1.911157 -0.838330 -1.014024 0.893789 2.065598 2.926905 -3.723933 -2.111587 2.361858 4.863779 1.564297 -2.664549 1.229245 0.985199 0.143749 -1.695009 2.364923 0.659089 0.371946 -1.670124 -0.526554 2.675792 5.415854 -1.155950 -2.882088 0.233857 1.476538 0.727445 -1.768421 0.331793 -0.107613 -0.361256 1.887284 0.422739 1.717958 3.829730 -5.889014 3.102165 0.803367 -0.501873 2.404044 -0.082140 -1.750358 -2.817175 0.667109 2.777608 2.796398 0.488299 -0.288741 -0.726560 -3.920810 -0.079255 1.263285 1.594805 -2.283470 3.326541 -0.091479 -1.957374 -2.400407 -2.146393 -1.188172 -0.231285 -2.451912 1.884921 0.698499 -5.388178 3.927885 -0.044764 -1.643103 -0.785669 -1.695788 2.589563 -3.749596 -3.931450 1.274346 -2.035335 -4.293608 -1.333979 -1.553320 1.145211 1.123765 0.134408 -2.877242 -3.260722 4.065423 -0.270929 3.299262 2.225864 0.580781 3.829387 1.624186 -1.935943 -1.348239 -3.088540 2.772145 -0.485678 -1.949462 -0.578287 -1.512624 1.892020 4.315167 -1.118077 -1.493146 -1.098421 3.087679 -2.564239 -1.800122 1.257497 0.281477 -1.536573 1.950544 1.886947 -2.283365 -0.393799 -3.641424 -0.282843 -1.374983 -2.620770 1.661130 -2.577401 0.392527 2.217157 -0.944405 -1.697215 1.530825 0.356805 -0.668987 0.256863 4.210010 3.846139 -2.072146 1.607778 -4.155495 2.667662 -4.448255 -3.265289 0.091462 -0.361553 -0.319401 -0.909651 -0.466780 1.608945 1.774811 -1.778943 -1.936573 1.348201 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/strongly-connected-components.cpp__Graph::printSCCs() = -2.624729 -1.896825 0.879866 -4.721908 4.346527 3.780062 1.531561 -3.357486 -5.322949 -2.568539 1.523509 -7.092466 -4.822885 6.547177 -3.112879 4.195132 7.361946 -0.214729 -2.049405 -2.794126 5.644652 -1.034079 8.976941 7.823290 -7.132093 -0.240810 0.187334 3.875073 1.941248 2.382592 2.665452 -4.754421 0.431485 -3.726168 2.336044 -2.676839 -1.215846 2.283543 3.512061 -10.615408 -1.306023 5.001955 -0.051671 0.673929 1.825273 3.263556 5.344327 5.301675 -1.650819 5.404229 4.332973 0.486494 4.036886 0.003565 -0.012221 0.275890 2.466295 -1.551935 -1.436799 0.004881 -2.540248 -1.405481 1.913366 7.145614 8.649313 -1.278569 -3.337940 2.143198 1.721644 2.203351 1.918647 6.289763 -0.699449 2.758647 5.164531 -6.235532 -0.011436 -11.342495 2.412219 -9.978867 -4.985998 -0.813933 3.626603 4.620479 2.650222 -0.811351 10.871059 -0.876524 -3.062842 7.689285 7.082857 -3.729936 -0.828064 -3.521708 -4.075234 -0.364152 -2.947020 -0.172445 0.427930 4.507311 -5.564353 -4.225745 -0.269661 0.141961 -3.796322 -2.816368 -2.124907 5.437562 -5.981670 -4.580522 -3.828682 5.201315 -1.042117 -10.398974 -3.152186 -4.229485 0.943032 1.234955 -2.491803 -3.813104 3.191536 2.189098 -2.119229 -1.573828 -2.587747 5.417219 4.401775 0.733590 -0.875657 3.903959 0.780432 6.946652 2.565957 -3.032130 -1.372770 2.800855 -0.980187 2.292162 -3.123084 -0.215727 2.637037 -4.986394 -0.801127 2.492050 -2.797353 -2.479841 -0.629163 -2.789329 0.306698 18.337826 -2.364167 6.400045 4.447751 -5.922176 3.790088 -0.555887 1.318094 2.495068 4.110954 3.992077 -8.456547 -5.112509 6.025586 8.644374 2.842700 -5.692837 -1.285948 2.442747 1.281084 -0.822298 3.543753 2.121709 -0.964422 -3.581016 -0.549931 1.082668 12.247500 -2.948010 -2.161930 1.499447 4.745052 -1.811052 -5.936852 -0.703388 -5.202968 -1.907048 3.018682 1.395901 2.653917 7.155015 -10.811889 5.957053 0.106260 0.271777 4.719436 0.099940 -3.546912 -8.498630 -2.258786 2.715061 4.883950 -0.965763 -0.209707 0.380501 -7.425122 2.221928 1.121960 2.536308 -4.205780 7.267338 -1.541967 -3.673006 -2.768844 0.458250 -2.945221 -1.937809 -2.753646 4.239069 1.843132 -6.945017 5.287200 -0.291912 -2.640963 1.295190 0.176932 6.684612 -4.580319 -6.164579 4.064698 -2.873442 -4.454833 -3.522475 -2.400595 2.300971 2.887941 0.687827 -6.025561 -6.885080 5.194693 -2.757999 6.792224 3.797963 -1.109412 5.229413 -0.089685 -3.783190 -3.788611 -5.091019 1.164783 1.432523 -2.313896 -4.169093 -1.825217 4.976426 5.374253 -0.653729 -3.013418 -2.488420 7.381964 -4.863336 -0.678409 1.995939 -0.704554 -4.100434 2.666099 3.364331 -3.985915 0.764043 -5.373592 1.765542 -5.056979 -1.786528 4.732073 -2.907586 0.480234 0.283635 -0.852380 -1.085009 1.886423 3.296039 -0.735556 0.280651 9.523060 5.617791 -1.868064 0.535166 -6.883831 4.786301 -6.857214 -4.689430 -1.029458 0.473243 -2.332643 -0.678770 -0.153102 5.353375 4.807737 -3.361050 -3.254783 1.240744 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::stack >, void>() = 0.058933 0.212654 0.413247 -0.235060 0.277973 -0.016459 0.085676 0.272721 -0.328630 -0.377531 -0.096736 -0.389611 -0.470133 0.371374 -0.089051 -0.213233 0.619521 0.207681 0.030493 -0.233412 -0.036838 -0.171014 0.478424 0.568025 -0.507299 0.183988 0.015920 0.259964 0.027783 0.522403 -0.037535 -0.542479 0.023614 0.287266 0.318779 -0.288033 -0.112637 -0.112416 -0.398729 -0.906963 -0.014553 0.424464 0.038196 0.005877 0.202086 0.433680 0.640796 0.240591 -0.135322 0.287343 0.216648 0.168651 0.170616 0.022763 0.118821 -0.044305 0.331163 -0.245704 -0.292606 0.218577 -0.032706 -0.524705 -0.154162 0.350994 0.441678 -0.064020 -0.122077 -0.276792 -0.031301 0.107040 0.067971 0.188113 0.267023 0.161942 0.241647 0.078864 0.032166 -0.554146 0.119596 -1.250344 -0.441629 -0.369505 0.733960 0.403707 -0.173752 -0.232534 0.548587 -0.064428 0.232332 0.261612 0.534177 -0.104663 -0.156975 -0.206594 -0.164173 0.278192 -0.151449 -0.106724 -0.002526 0.096664 -0.311607 -0.135672 0.265531 -0.174620 -0.241739 0.259946 -0.110362 0.360923 -0.672995 0.061159 -0.580290 0.136341 0.272267 -0.512589 -0.066260 -0.039040 0.188171 0.229924 -0.153417 0.030338 0.149019 0.064735 -0.212803 0.189180 -0.681885 0.512794 0.004411 -0.072271 0.131962 0.157376 0.187649 0.102651 0.256850 -0.179202 -0.084874 0.251894 -0.083446 -0.114073 -0.223792 -0.042577 0.101213 -0.244815 0.121942 -0.094581 -0.291392 -0.211051 -0.479070 -0.198442 0.213858 0.760576 -0.140727 0.275215 0.049612 -0.323928 0.256151 0.057056 -0.171013 0.082904 0.368181 0.288722 0.017254 -0.194978 0.082555 0.510615 0.227492 -0.234991 0.109217 -0.031329 -0.062538 0.023418 0.321538 0.019009 0.041513 -0.208644 -0.092559 0.074038 0.612396 0.075567 -0.554721 -0.105510 0.150158 0.032272 -0.056414 0.136029 0.108882 0.015748 0.074935 -0.088180 0.224153 0.440281 -1.137966 0.467454 0.008698 -0.147539 0.251729 -0.094828 -0.032651 -0.485617 0.046871 0.308599 0.596959 0.145697 -0.048057 -0.040610 -0.389885 -0.070413 0.055553 0.258661 -0.292748 0.315361 0.059406 -0.330454 -0.190129 -0.488304 -0.028863 0.079542 -0.346671 0.115457 0.232050 -1.015067 0.403929 -0.088333 -0.162348 -0.111856 -0.025714 0.087919 -0.411713 -0.421114 -0.020169 -0.154481 -0.638561 -0.206754 -0.253539 0.192347 -0.109298 0.029840 -0.143280 -0.360204 0.515138 -0.029090 0.298825 0.303864 0.005808 0.547128 0.464598 -0.193486 -0.030188 -0.203274 0.383740 -0.413172 0.028944 0.353752 -0.291049 0.114332 0.598710 -0.010634 -0.056637 -0.180640 0.467032 -0.105648 -0.235636 0.250302 -0.219690 0.086788 0.444856 0.338632 -0.374456 -0.184331 -0.481468 -0.047141 0.052535 -0.156073 0.204186 -0.418221 -0.007608 0.307878 -0.094896 -0.420753 0.206962 -0.119478 -0.243667 -0.082094 0.544408 0.535588 -0.341751 0.550232 -0.306173 0.267890 -0.478084 -0.189287 -0.232453 -0.065460 -0.105575 0.011995 -0.169045 0.101717 0.066614 -0.053972 -0.227256 0.176004 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::empty() const = -0.025566 0.191729 0.256441 -0.155261 0.260568 0.124800 0.087510 -0.011867 -0.207953 -0.270447 -0.015011 -0.448661 -0.414658 0.330932 -0.110772 0.023132 0.462693 0.052144 -0.010584 -0.158712 0.048036 -0.116135 0.502159 0.504551 -0.434408 0.120640 0.084635 0.193720 0.033413 0.342352 -0.072034 -0.427234 0.100055 0.063303 0.173551 -0.137645 -0.080586 -0.104028 -0.085213 -0.667728 -0.052949 0.268753 0.035198 0.006199 0.087613 0.256631 0.557410 0.260631 -0.070164 0.238972 0.209025 0.055201 0.180682 0.042702 0.112801 -0.090351 0.314066 -0.201489 -0.213704 0.074468 -0.041073 -0.385456 -0.142464 0.357493 0.444222 -0.036374 -0.111015 -0.070186 -0.074258 0.075657 0.012334 0.240610 0.164744 0.251246 0.218471 -0.077062 0.110485 -0.475645 0.008369 -0.857316 -0.374821 -0.238057 0.388802 0.314856 0.058202 -0.096769 0.521927 0.036358 0.078518 0.146999 0.546152 -0.264352 -0.122641 -0.100075 -0.119576 0.154923 -0.190183 0.052769 -0.014371 0.060107 -0.304519 -0.195371 0.240703 -0.062014 -0.223720 0.095902 -0.094379 0.249969 -0.501638 -0.074435 -0.418108 -0.027358 0.097178 -0.553070 -0.042537 -0.019398 0.144430 0.176510 -0.132150 -0.170216 0.129270 0.093340 -0.113857 -0.036157 -0.468619 0.376408 0.141437 0.005898 0.113900 0.142078 0.220589 0.319317 0.193392 -0.134385 -0.077842 0.090916 -0.090323 0.025774 -0.131804 -0.043280 0.047068 -0.268029 0.083992 0.080247 -0.223425 -0.108253 -0.253078 -0.158871 0.127348 0.731063 -0.108715 0.284971 0.131169 -0.373419 0.194582 -0.115864 -0.152339 0.067122 0.254733 0.290315 -0.144887 -0.219079 0.217828 0.486034 0.181931 -0.277194 0.057097 0.048513 0.030749 -0.089391 0.255935 0.078079 0.043770 -0.205731 -0.063448 0.174008 0.597774 -0.091418 -0.350894 0.044910 0.063840 0.060526 -0.195152 0.028809 -0.030991 -0.012189 0.045363 0.007443 0.136511 0.403148 -0.832731 0.368318 0.019535 -0.150840 0.330986 -0.051302 -0.163173 -0.346097 0.091522 0.307432 0.345225 0.090969 0.019254 -0.067346 -0.386294 -0.042518 0.042694 0.161681 -0.257267 0.316658 0.042590 -0.316905 -0.249119 -0.308339 0.001810 -0.059567 -0.264969 0.181165 0.219495 -0.789708 0.405736 -0.016724 -0.198205 -0.062886 -0.098409 0.171535 -0.373351 -0.390018 0.062722 -0.266688 -0.409200 -0.140794 -0.156829 0.075885 -0.008574 0.010819 -0.203740 -0.265585 0.378578 -0.031700 0.260348 0.249129 0.083267 0.363827 0.255546 -0.232247 -0.089678 -0.125193 0.238812 -0.259549 -0.110981 0.141503 -0.205364 0.198688 0.507693 -0.022394 -0.070496 -0.128444 0.319080 -0.203774 -0.186605 0.217520 -0.020556 -0.109664 0.239221 0.253563 -0.228548 -0.092576 -0.359688 -0.090706 -0.099380 -0.252162 0.159443 -0.295924 -0.003319 0.264014 -0.128953 -0.267464 0.195791 -0.051119 -0.119283 -0.048355 0.443444 0.404751 -0.273019 0.293988 -0.362841 0.205956 -0.468219 -0.298697 0.001484 0.007608 -0.135169 -0.084763 -0.059997 0.134267 0.089976 -0.129559 -0.191048 0.092978 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::top() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::pop() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::~stack() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/strongly-connected-components.cpp__main = 0.283655 0.126489 0.906491 -0.400670 0.202885 -0.838508 0.135055 1.272588 -0.775224 -1.099968 -0.095846 -0.738465 -1.122798 0.581937 -0.036770 -1.146750 1.070459 0.530719 0.139058 -0.599769 -0.449491 -0.369394 0.531303 0.955396 -0.854245 0.375874 -0.483805 0.579386 0.184732 0.713399 0.613705 -0.946003 -0.191156 1.276654 0.917298 -0.441652 -0.259592 -0.167719 -1.628609 -1.713682 -0.019485 1.421423 0.249380 0.076704 0.677995 1.585661 0.943238 0.288328 -0.415897 0.660900 0.345825 0.162023 0.418241 -0.083925 0.015993 -0.667180 0.269122 -0.564001 -0.712580 0.759759 -0.006994 -1.327496 -0.412305 0.429478 0.640820 -0.254756 -0.296947 -1.050228 0.164713 0.421673 0.306226 0.232917 0.924199 -0.094082 0.596905 1.003180 -0.251807 -0.940366 0.555692 -3.197363 -0.853902 -0.629897 2.551878 1.050489 -1.268865 -0.944812 0.814417 -0.092835 0.450456 0.938864 0.693223 0.675325 -0.348769 -0.407375 -0.245948 0.841145 -0.191878 -0.364402 0.249306 0.589913 -0.495516 0.459794 0.181123 -0.868495 -0.365459 0.983359 -0.254885 0.697752 -1.379755 0.861826 -1.193248 0.665885 1.388798 -0.642786 -0.088802 0.023160 0.209165 0.577488 -0.349657 1.317215 0.250392 -0.604919 -0.501095 1.276687 -2.036741 1.114974 -0.507907 -0.092492 0.260214 0.688661 0.268298 -0.817752 0.241648 -0.319787 -0.136785 0.704411 0.044334 -0.212866 -0.382306 -0.062273 0.688148 -0.117234 0.345846 -1.092981 -0.530918 -0.948493 -1.760765 -0.317829 0.311442 0.470065 -0.158403 0.493475 0.051917 0.012475 0.539105 0.480442 -0.136119 0.208173 0.796520 0.337049 1.144533 -0.135880 -0.073684 0.851636 0.357179 -0.227882 0.587549 0.211241 -0.148216 0.059984 0.825622 -0.046840 0.254303 -0.196353 -0.110280 0.019150 0.397311 0.678046 -1.216885 -0.688523 0.587671 0.355108 0.456980 0.647838 0.946288 0.051659 0.165091 -0.158969 0.436252 0.626243 -2.244460 0.850353 0.425282 0.230763 0.065505 -0.255578 0.071858 -1.507361 -0.093324 0.256136 1.269461 0.477100 -0.458508 0.036191 -0.563597 -0.110939 0.182760 0.447517 -0.439979 0.513535 -0.226022 0.032170 -0.093296 -1.432731 -0.219157 0.866913 -0.764910 0.084145 0.614210 -1.736839 0.392921 -0.455526 -0.329029 -0.865898 0.108107 -0.162034 -0.635812 -0.535756 -0.499051 -0.430308 -2.263855 -0.851037 -0.653697 0.185899 -0.483047 -0.106554 0.152700 -0.427229 1.542695 -0.230463 0.616569 0.551680 -0.361583 1.348413 1.659192 -0.279185 0.359399 -0.469891 1.072981 -1.212496 0.375802 1.392385 -0.511102 -0.333309 0.858207 -0.107854 -0.097936 -0.266735 0.890133 0.310225 -0.835585 0.369114 -1.129976 0.867786 1.684078 0.609862 -0.895574 -0.158559 -1.290780 -0.086955 0.373296 0.078858 0.409960 -0.759872 -0.076120 0.420581 -0.087819 -0.949529 0.269678 -0.340171 -0.835756 -0.216959 1.110248 1.273746 -0.742908 1.537284 -0.465044 0.610403 -0.585027 0.002401 -0.882527 -0.207152 0.091061 0.164459 -0.544358 -0.129888 0.281030 -0.409666 -0.835792 1.008585 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::~deque() = 0.107745 0.271634 0.636155 -0.201671 0.618841 -0.213580 0.047607 0.807174 -0.318424 -0.980952 -0.306132 -0.604814 -1.403779 0.476858 -0.170416 -0.441348 0.715004 0.074367 0.210668 -0.584904 0.072178 -0.335570 0.799659 0.451505 -1.181663 0.196346 -0.038039 0.959076 0.429835 0.695268 0.495718 -0.705675 -0.035386 0.744761 0.930428 -0.327013 0.186296 -0.111570 -1.285801 -1.389153 -0.342902 1.073652 -0.154428 0.438323 0.414274 1.420958 0.841123 0.520984 -0.638145 0.664647 0.656729 0.030744 0.535827 0.092888 -0.622092 -0.670699 0.168074 -0.738610 -0.677973 0.454770 0.096615 -1.635359 -0.278893 0.447722 1.003487 -0.554418 -0.183447 -0.052285 -0.088380 0.346900 0.177502 0.517839 0.725794 0.086205 0.961986 0.572347 -0.344246 -0.850019 0.300090 -2.638655 -0.732049 -1.191673 1.438623 0.997571 -0.633661 -0.637116 1.252110 0.229896 0.301850 0.892194 0.788658 0.040607 -0.198535 -0.969018 0.043058 0.654403 -0.650112 -0.428828 0.221091 0.729863 -0.275041 -0.027449 0.022438 -0.814581 -0.461844 0.233205 -0.906065 0.783686 -1.427122 0.244146 -1.560832 0.305230 0.697568 -0.961402 -0.140337 0.281641 0.313520 0.361225 0.568796 0.824738 0.085795 -0.017244 -0.175065 0.617754 -1.327514 1.053684 0.178741 -0.424433 0.420046 0.945861 0.282337 -0.167683 0.645482 -0.047820 -0.969059 0.810758 -0.054193 -0.160479 -0.521083 0.282929 0.771644 -0.536656 0.164189 -0.346783 -0.233737 -0.684831 -1.332399 -0.798901 0.604683 0.624687 0.064021 0.032313 -0.036695 -0.238763 0.590981 0.236648 -0.211145 0.542192 0.419901 0.423387 0.509592 -0.318292 0.123430 0.694262 0.179415 -0.529337 0.358918 0.070521 0.299182 -0.301174 0.387926 0.701022 -0.061307 0.087692 0.047849 -0.063757 0.605408 0.067216 -0.893952 0.035680 0.579912 -0.214985 -0.237462 0.183595 0.510302 -0.567569 0.337499 0.125859 0.072901 0.713742 -1.499008 0.641686 0.721588 0.129400 0.099577 -0.599516 0.369943 -1.199080 0.113495 0.437742 0.699152 0.197749 -0.125880 -0.246031 -0.736853 0.330017 0.348806 0.557053 -0.162746 0.490121 -0.346658 0.101508 -0.493242 -0.951150 -0.344239 0.655712 -0.515827 0.129116 0.556208 -1.703739 0.508982 -0.947026 -0.523597 -0.246577 0.105859 0.467397 -0.748496 -0.650036 0.065339 -0.434207 -1.902195 -0.938931 -0.236963 0.248511 -0.196182 -0.357449 -0.082830 -0.780056 1.018999 -0.217316 0.001164 0.477401 0.135793 1.221894 0.973768 -0.717318 -0.097716 -0.443456 0.668717 -0.823771 0.421919 0.684294 -0.056896 0.035066 1.124718 -0.017095 0.151416 -0.280697 0.819903 -0.305810 -1.034536 0.476533 -0.366578 0.430913 1.402711 0.550377 -0.632452 -0.506820 -1.154007 0.277587 0.290148 -0.271462 0.260251 -1.169403 -0.243655 0.890658 -0.107362 -0.902511 0.564603 -0.147778 -0.676106 -0.856163 1.463523 1.354566 -0.885723 1.079375 -0.602714 0.613899 -0.885508 -0.148791 -0.601346 -0.109206 0.476712 0.331471 0.014093 -0.044465 0.308409 -0.558586 -0.737911 -0.003141 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.042536 0.202646 0.137250 0.014529 0.261946 0.045219 0.146519 0.043450 -0.166282 -0.260925 -0.101344 -0.275340 -0.390466 0.356159 -0.000863 0.221497 0.573032 0.205335 0.058406 -0.154716 0.162289 -0.466104 0.549240 0.516521 -0.397215 0.141786 0.198008 0.150873 -0.017364 0.386131 -0.216827 -0.305618 0.284322 -0.283900 0.187103 -0.340544 -0.046032 -0.033648 -0.019005 -0.767846 -0.051349 0.100417 0.108345 -0.011992 -0.035599 0.307372 0.558357 0.288973 -0.072596 0.314782 0.107944 -0.139078 0.204804 0.136279 0.139697 0.193767 0.164828 -0.087166 -0.323029 0.105097 -0.069876 -0.681741 -0.044318 0.276554 0.467220 -0.098010 -0.058609 0.154805 -0.196458 0.037945 0.019394 0.196815 0.168328 0.054738 0.290602 -0.448646 0.008335 -0.592933 -0.209512 -1.181533 -0.410931 -0.387759 0.275637 0.025757 0.293141 0.053491 0.527802 -0.010094 0.175772 0.041743 0.586721 -0.539136 -0.182382 -0.185406 0.070418 0.140075 -0.261941 -0.068415 0.293507 -0.184974 -0.329244 -0.378065 0.513860 0.069315 -0.219733 -0.171466 -0.124811 0.357705 -0.574525 -0.384246 -0.659909 -0.295748 -0.143827 -0.531552 0.339724 0.106913 0.256911 0.311364 -0.073472 -0.426473 0.158248 0.301316 -0.027535 -0.342599 -0.156586 0.440905 0.069508 -0.053309 0.247420 0.146769 0.122563 0.528555 0.577791 -0.071190 -0.132402 0.172371 -0.287577 0.018461 -0.181839 -0.225410 0.124159 -0.450603 -0.037134 0.152328 -0.278958 0.031304 0.221666 -0.095167 0.221623 0.590196 -0.046629 0.199037 0.097632 -0.460716 0.332339 -0.206640 -0.160814 0.118672 0.396035 0.253019 -0.399645 -0.260152 0.096292 0.466488 0.231057 -0.410891 -0.297572 -0.213233 0.170509 0.019580 0.120475 0.162392 0.144400 -0.271192 -0.008523 0.075648 0.757328 -0.376188 -0.189787 0.133380 -0.139505 -0.116625 -0.732396 -0.095950 -0.281635 -0.092699 -0.195555 -0.031082 -0.004011 0.438959 -0.668305 0.414487 -0.338652 -0.252775 0.368365 -0.006837 -0.096766 -0.612998 0.097952 0.348854 0.441564 0.100642 0.093398 -0.063025 -0.418175 -0.060349 -0.034853 0.227431 -0.179097 0.331151 -0.057146 -0.379888 -0.276271 -0.123277 0.098554 -0.278989 0.006848 0.177330 0.394416 -0.769665 0.401905 -0.109554 -0.265708 0.224621 0.120588 0.222862 -0.400011 -0.508971 0.192719 -0.158183 -0.266023 -0.183318 -0.098109 0.189270 -0.042100 -0.352099 -0.049692 -0.398921 0.329423 -0.015798 0.194112 0.256901 0.128813 0.546448 0.235578 -0.421065 -0.196919 0.005742 -0.164630 -0.457895 -0.043515 -0.204594 -0.187812 0.354732 0.683113 0.157192 0.076262 -0.054184 0.436935 -0.515815 -0.216417 0.411900 0.282827 -0.052447 0.224270 0.393210 -0.360151 -0.252952 -0.234607 -0.056516 0.054206 -0.276564 0.124207 -0.500889 -0.036364 0.296191 -0.120991 -0.156024 0.243415 -0.023706 0.001308 -0.245768 0.494205 0.561322 -0.456918 0.107082 -0.257345 0.130278 -0.523223 -0.238139 -0.028978 0.399264 -0.167411 0.010519 0.233020 0.120995 0.028036 -0.257304 -0.162951 -0.244861 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::begin() = 0.036863 0.420172 0.456205 -0.148082 0.416983 0.283831 0.143694 0.163517 -0.264429 -0.324484 -0.173171 -0.561257 -0.655366 0.475978 -0.049466 -0.015843 0.773879 0.182877 0.010943 -0.151641 0.034716 -0.231736 0.704476 0.730406 -0.635751 0.257795 0.126788 0.256801 -0.072357 0.713503 -0.307077 -0.645398 0.141479 0.110151 0.337235 -0.299277 -0.164047 -0.243237 -0.259742 -1.141630 -0.079560 0.505574 0.042518 -0.025205 0.168146 0.321777 0.957479 0.348709 -0.091285 0.263288 0.154472 0.024728 0.316433 0.073465 0.228534 0.084793 0.496805 -0.192454 -0.403476 0.164019 -0.063744 -0.685235 -0.210165 0.464301 0.610990 -0.047451 -0.180503 -0.153182 -0.128275 0.041399 -0.063342 0.335676 0.323249 0.342122 0.331777 -0.029528 0.169397 -0.496682 0.015603 -1.189440 -0.617703 -0.528658 0.563651 0.462130 0.140547 -0.317534 0.786409 -0.098475 0.296903 0.085046 0.839579 -0.485559 -0.183111 -0.289827 -0.096133 0.243260 -0.247816 -0.077993 0.081039 -0.170697 -0.461537 -0.374076 0.478986 -0.056644 -0.354902 0.224994 -0.159253 0.457108 -0.685692 -0.200260 -0.810007 -0.144584 0.052615 -0.770973 -0.023891 0.092041 0.036625 0.360764 -0.158134 -0.374933 0.217806 0.250081 -0.182583 -0.154212 -0.638484 0.728678 0.160122 -0.142309 0.262403 0.197763 0.315487 0.424723 0.472383 -0.133475 -0.123447 0.227758 -0.209332 -0.083093 -0.213760 -0.087888 -0.027391 -0.421549 -0.053347 0.157627 -0.369471 0.072686 -0.453993 -0.218257 0.269525 1.150635 -0.198895 0.328405 0.047084 -0.604747 0.543496 -0.057937 -0.351036 0.054116 0.435609 0.515712 -0.448890 -0.286741 0.202450 0.722219 0.282638 -0.409275 0.084758 -0.112711 0.017806 -0.109614 0.403367 0.110535 0.172868 -0.330817 -0.088456 0.183490 1.010727 -0.252281 -0.786367 0.070430 -0.046408 0.054663 -0.404616 0.035881 -0.102097 -0.099311 -0.053759 -0.085874 0.203409 0.597352 -1.109382 0.608982 -0.111535 -0.453155 0.653626 -0.170687 -0.098115 -0.407882 0.151054 0.531753 0.644027 0.194655 -0.112941 -0.214533 -0.568580 -0.094879 0.056278 0.313476 -0.363462 0.497707 0.005496 -0.526921 -0.342977 -0.601914 0.023797 -0.206372 -0.423541 0.198526 0.349710 -1.120863 0.638948 0.023794 -0.260487 0.040574 -0.078808 0.109128 -0.543792 -0.663026 0.098855 -0.242124 -0.575339 -0.163830 -0.284655 0.198460 0.050041 -0.104682 -0.312820 -0.571287 0.588329 0.040462 0.389649 0.417947 0.171153 0.594942 0.717198 -0.439036 -0.115649 -0.285882 0.296763 -0.402480 -0.090577 0.014977 -0.409643 0.326602 0.874624 0.011518 0.024638 -0.431236 0.531297 -0.341887 -0.261847 0.406638 -0.162800 -0.084801 0.236726 0.464590 -0.326124 -0.286478 -0.504459 -0.134787 -0.058551 -0.352398 0.167656 -0.637782 -0.082122 0.503906 -0.286365 -0.440769 0.255870 -0.133308 -0.232177 -0.167383 0.674723 0.516603 -0.511905 0.538177 -0.432540 0.361179 -0.704225 -0.301578 -0.087544 0.017212 -0.213491 -0.104137 0.096170 0.104087 0.042718 -0.204124 -0.239285 -0.063488 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::end() = 0.036863 0.420172 0.456205 -0.148082 0.416983 0.283831 0.143694 0.163517 -0.264429 -0.324484 -0.173171 -0.561257 -0.655366 0.475978 -0.049466 -0.015843 0.773879 0.182877 0.010943 -0.151641 0.034716 -0.231736 0.704476 0.730406 -0.635751 0.257795 0.126788 0.256801 -0.072357 0.713503 -0.307077 -0.645398 0.141479 0.110151 0.337235 -0.299277 -0.164047 -0.243237 -0.259742 -1.141630 -0.079560 0.505574 0.042518 -0.025205 0.168146 0.321777 0.957479 0.348709 -0.091285 0.263288 0.154472 0.024728 0.316433 0.073465 0.228534 0.084793 0.496805 -0.192454 -0.403476 0.164019 -0.063744 -0.685235 -0.210165 0.464301 0.610990 -0.047451 -0.180503 -0.153182 -0.128275 0.041399 -0.063342 0.335676 0.323249 0.342122 0.331777 -0.029528 0.169397 -0.496682 0.015603 -1.189440 -0.617703 -0.528658 0.563651 0.462130 0.140547 -0.317534 0.786409 -0.098475 0.296903 0.085046 0.839579 -0.485559 -0.183111 -0.289827 -0.096133 0.243260 -0.247816 -0.077993 0.081039 -0.170697 -0.461537 -0.374076 0.478986 -0.056644 -0.354902 0.224994 -0.159253 0.457108 -0.685692 -0.200260 -0.810007 -0.144584 0.052615 -0.770973 -0.023891 0.092041 0.036625 0.360764 -0.158134 -0.374933 0.217806 0.250081 -0.182583 -0.154212 -0.638484 0.728678 0.160122 -0.142309 0.262403 0.197763 0.315487 0.424723 0.472383 -0.133475 -0.123447 0.227758 -0.209332 -0.083093 -0.213760 -0.087888 -0.027391 -0.421549 -0.053347 0.157627 -0.369471 0.072686 -0.453993 -0.218257 0.269525 1.150635 -0.198895 0.328405 0.047084 -0.604747 0.543496 -0.057937 -0.351036 0.054116 0.435609 0.515712 -0.448890 -0.286741 0.202450 0.722219 0.282638 -0.409275 0.084758 -0.112711 0.017806 -0.109614 0.403367 0.110535 0.172868 -0.330817 -0.088456 0.183490 1.010727 -0.252281 -0.786367 0.070430 -0.046408 0.054663 -0.404616 0.035881 -0.102097 -0.099311 -0.053759 -0.085874 0.203409 0.597352 -1.109382 0.608982 -0.111535 -0.453155 0.653626 -0.170687 -0.098115 -0.407882 0.151054 0.531753 0.644027 0.194655 -0.112941 -0.214533 -0.568580 -0.094879 0.056278 0.313476 -0.363462 0.497707 0.005496 -0.526921 -0.342977 -0.601914 0.023797 -0.206372 -0.423541 0.198526 0.349710 -1.120863 0.638948 0.023794 -0.260487 0.040574 -0.078808 0.109128 -0.543792 -0.663026 0.098855 -0.242124 -0.575339 -0.163830 -0.284655 0.198460 0.050041 -0.104682 -0.312820 -0.571287 0.588329 0.040462 0.389649 0.417947 0.171153 0.594942 0.717198 -0.439036 -0.115649 -0.285882 0.296763 -0.402480 -0.090577 0.014977 -0.409643 0.326602 0.874624 0.011518 0.024638 -0.431236 0.531297 -0.341887 -0.261847 0.406638 -0.162800 -0.084801 0.236726 0.464590 -0.326124 -0.286478 -0.504459 -0.134787 -0.058551 -0.352398 0.167656 -0.637782 -0.082122 0.503906 -0.286365 -0.440769 0.255870 -0.133308 -0.232177 -0.167383 0.674723 0.516603 -0.511905 0.538177 -0.432540 0.361179 -0.704225 -0.301578 -0.087544 0.017212 -0.213491 -0.104137 0.096170 0.104087 0.042718 -0.204124 -0.239285 -0.063488 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/strongly-connected-components.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::~_Deque_base() = 0.162058 1.837287 1.773074 -1.408828 1.694031 2.509798 0.131412 -0.105788 -0.797269 -0.579080 -0.535676 -2.345244 -1.972510 1.437495 -0.528347 -0.599969 2.099291 -0.330755 -0.385305 -0.002464 -0.012828 1.360229 1.979824 2.103772 -2.072229 0.771330 0.422771 0.590147 -0.580222 2.453377 -0.955022 -3.095043 -0.506630 1.504020 0.828746 -0.018366 -0.915494 -1.380388 -0.412700 -3.158533 -0.251780 2.155074 -0.839770 -0.197554 0.939747 -0.576603 3.515289 0.900955 -0.225944 -0.118886 0.702695 1.440177 0.615834 -0.243690 0.901670 -0.127557 2.150512 -0.606850 -0.408552 0.072849 -0.255169 0.250002 -0.996078 1.945635 1.601495 0.358894 -0.978448 -1.176674 0.088608 -0.003474 -0.801649 1.420177 0.852982 2.358509 0.517457 1.138041 0.858550 -0.878229 1.178098 -0.770047 -1.742801 -1.069982 0.935095 2.578517 0.123857 -1.817523 2.646099 -0.690163 0.671469 0.601841 2.734780 -0.763339 -0.047305 -0.939518 -1.417849 0.369983 -0.153179 0.191083 -1.480657 -0.282178 -1.430796 -1.158838 0.119690 -0.331322 -1.210355 1.393140 -0.206517 1.050075 -1.167937 0.296817 -1.349237 0.859215 0.459959 -2.677328 -2.647037 -0.314901 -0.978258 0.335599 -0.927405 -1.376788 0.712963 0.576785 -1.149752 0.023742 -2.032472 1.973816 1.383129 -0.414970 0.133437 0.163042 1.592597 1.072300 0.039470 -0.616875 0.050059 0.139938 0.346262 -0.583667 -0.397769 0.774945 -1.228542 -0.511219 0.025010 1.209076 -0.896651 0.318106 -3.110101 -1.376035 0.440354 6.048180 -1.386003 1.333438 -0.001105 -2.095262 1.369313 0.310611 -1.589310 -0.444748 0.650462 2.386355 -1.729446 -0.733561 1.508651 2.484470 0.677913 -0.705285 1.804795 0.539686 -0.887915 -0.966260 1.845522 -0.235239 0.102882 -0.844783 -0.700928 1.187535 3.254546 -0.018141 -3.788193 0.187147 1.049264 0.972145 1.130190 0.424780 -0.193491 -0.070601 1.387737 -0.412028 1.614259 1.824506 -3.941762 1.675781 0.929537 -1.788975 2.191768 -0.547381 -0.415774 0.959994 0.512449 1.959389 1.602902 0.393418 -0.543928 -1.283790 -1.673846 -0.245955 0.633686 0.830318 -1.686265 1.650788 0.553147 -1.974713 -0.971814 -2.344237 -0.604043 -0.462836 -2.691048 0.553397 -0.112883 -3.386205 2.539854 1.162432 -0.010346 -0.629314 -1.486220 0.343545 -1.436345 -1.928891 0.241455 -0.754157 -1.282148 0.697905 -1.234699 0.504605 1.057240 1.844023 -2.269354 -1.912489 1.638916 0.655046 1.899557 1.327011 0.774093 0.752599 1.694281 -0.513910 -0.218992 -2.251251 2.982644 0.731048 -0.902367 0.267177 -1.612970 0.724519 1.961740 -0.885127 -0.769820 -2.584120 1.007452 -0.049877 0.269673 0.324347 -1.708637 -1.262156 -0.485369 0.837649 0.121767 -0.465442 -1.881912 -0.193933 -1.435199 -1.222193 0.332741 -1.187251 -0.295726 1.719020 -1.319817 -1.733908 0.392144 -0.326686 -1.001273 0.576739 1.408465 0.099626 -0.696806 2.136212 -1.776546 1.625455 -2.105019 -1.452526 0.110102 -2.224250 -0.693336 -1.158086 -0.891354 0.479387 0.022482 0.611230 -0.341114 0.645879 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.097473 1.840169 1.526155 -1.064946 1.574044 1.915908 0.218109 -0.294476 -0.516576 -0.522702 -0.576822 -1.469221 -1.603830 1.316047 -0.304127 -0.099817 2.129924 -0.176660 -0.210666 -0.406036 0.626013 0.130979 2.080291 2.051502 -2.153535 0.741114 1.368074 0.579956 0.112636 1.892539 -1.399693 -1.880481 0.071816 0.067680 0.738361 -0.599961 -0.626305 -1.384783 0.020446 -3.004899 -0.246102 0.420941 -1.111487 -0.135093 0.327412 0.430123 3.328337 0.983807 -0.618443 0.086794 0.901777 0.761041 0.286762 -0.004730 0.681379 0.374537 1.952641 0.501665 -0.310293 0.030618 -0.114982 -0.655223 -0.402239 1.797170 1.650701 0.124903 -0.630997 -0.017833 0.028223 -0.211213 -0.735554 1.213679 0.838978 1.833229 0.892113 -0.992772 0.601768 -2.234546 0.230921 -2.381970 -1.649412 -1.398299 0.284486 0.228381 0.788169 -0.569132 2.404852 -0.307335 0.875738 0.480066 2.614843 -1.564744 -0.129810 -0.952092 -1.037803 0.351112 -0.398345 0.321601 -0.437471 -0.863549 -1.322362 -1.679887 0.995381 0.095901 -1.190946 0.267838 -0.250626 1.094320 -1.323664 -0.435188 -1.704635 -0.215164 -0.301302 -2.592190 -1.217149 -0.231061 0.984286 0.345149 -0.444571 -2.066603 0.402528 1.387221 -0.761819 -0.898124 -0.610928 1.815477 1.510939 -0.228651 0.409315 -0.092175 1.381223 1.654166 1.500441 -0.435834 -0.287736 0.117356 -0.514202 -0.564370 -0.607243 0.344061 -0.194319 -0.852692 0.025416 1.514664 -0.873447 0.306297 0.074875 -1.215902 0.695004 5.700470 -0.886878 1.047396 -0.017881 -2.205553 0.970156 -0.230184 -1.533881 0.098629 0.946007 2.041965 -2.757348 -0.843843 1.053981 2.183028 0.704512 -1.679669 0.375131 -0.124614 -0.705607 -0.622457 1.060782 -0.100291 0.144963 -0.849390 -0.558096 1.137348 3.390697 -0.863749 -3.000605 0.361203 0.255636 0.224431 -0.798057 0.022353 -0.501468 -0.052797 0.766495 -0.400889 1.284757 1.772374 -4.037370 1.442965 -0.218675 -1.836929 1.826654 -0.056956 -0.408153 -0.020310 0.849096 1.945043 1.439650 0.404907 -0.290040 -0.952649 -1.641708 -0.263239 0.423093 0.792334 -1.371614 1.467440 0.650195 -2.020006 -1.155247 -1.315189 -0.074845 -0.664153 -1.420943 0.567103 -0.611884 -3.944809 2.436205 0.517959 -0.285267 0.146171 -1.203740 0.692883 -1.550218 -2.065444 0.642759 -0.315273 -0.515145 0.165708 -0.859915 0.843346 0.749834 1.024598 -1.934420 -2.343727 1.078938 0.217798 1.360553 1.260604 1.012228 1.647767 0.338615 -0.708994 -1.162093 -1.159171 1.751063 0.424301 -1.004703 -0.708743 -1.320938 1.061716 2.307855 -0.681021 -0.081913 -1.633732 1.085986 -1.539033 -0.112969 0.598431 0.596112 -1.325892 -0.199670 0.917749 -0.264975 -0.782256 -1.306034 -0.631268 -0.821798 -1.393916 0.393495 -1.385259 -0.219543 1.716551 -0.917671 -1.072294 0.789299 -0.447634 -0.143291 0.055301 1.173950 1.979989 -1.484975 0.878462 -1.506260 1.375002 -2.246511 -1.661871 0.406166 -0.998681 -0.436552 -0.833922 -0.212586 0.654686 -0.067861 0.012523 -0.055651 -0.114244 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.280910 0.613662 0.426447 -0.599673 0.844427 0.632485 0.320973 0.051308 -0.666269 -1.040547 -0.330176 -1.031987 -1.389410 1.282096 -0.228504 0.452377 2.095984 0.446534 0.043443 -0.534550 0.953454 -1.043138 1.853733 2.014472 -1.735615 0.263934 0.913270 0.779172 0.241084 0.996547 -0.054674 -1.413386 0.452316 -0.726259 0.965912 -1.177803 -0.166536 -0.018111 0.020002 -2.885518 -0.274307 0.573288 -0.105652 0.024633 0.073935 0.645630 2.005653 1.093749 -0.744913 0.780481 0.875257 0.220471 0.516575 0.174494 0.094786 0.377272 0.092692 -0.061909 -0.494528 0.316245 -0.207380 -1.487697 0.150149 1.411289 1.831774 -0.277386 -0.355897 0.413253 -0.145578 0.199629 -0.081347 1.000794 0.530010 0.479292 1.148071 -1.794876 -0.265078 -3.085269 0.092258 -3.780301 -1.375936 -1.269303 0.840214 0.484197 0.738523 -0.259233 2.191700 -0.189740 0.484950 1.173702 2.035650 -1.322093 -0.363830 -1.168401 -0.485547 0.575270 -0.821031 -0.099039 0.457998 -0.166642 -1.157254 -1.484060 0.899331 0.109820 -0.945198 -0.873886 -0.471973 1.338210 -1.613000 -1.022398 -1.981880 -0.052610 -0.275200 -2.252913 0.233016 -0.446271 0.611939 0.642826 -0.379751 -1.371093 0.385607 0.982599 -0.309643 -0.879388 -0.572037 1.570940 0.764930 -0.290043 0.442744 0.509139 0.499187 1.654503 1.555301 -0.468928 -0.509133 0.717625 -0.835953 -0.207241 -1.067918 -0.287039 0.956991 -1.312671 -0.338509 0.700721 -0.897722 -0.332382 0.842007 -1.001816 0.752910 4.177721 -0.302800 0.863879 0.559387 -1.574169 1.321209 -0.229427 -0.543608 0.607904 1.356390 1.152597 -2.121570 -0.968774 0.558287 1.913777 0.745119 -1.278540 -0.932550 -0.284618 0.170042 -0.235801 0.600134 0.298644 0.016762 -0.768904 -0.161360 0.698724 2.550773 -0.915488 -0.746055 0.181760 0.863901 -0.496242 -2.031926 -0.155221 -1.440835 -0.305297 0.179246 -0.067241 0.609989 1.660641 -2.917649 1.345391 -0.522797 -0.488672 0.866987 0.054028 -0.403057 -2.329193 0.552785 1.248605 1.462428 -0.011791 0.479733 -0.252633 -1.668306 -0.052131 0.217723 0.915873 -1.001767 1.381571 -0.272522 -1.125154 -1.007916 -0.183969 -0.450034 -0.955556 -0.342217 0.690266 0.884055 -2.408637 1.636286 -0.356649 -0.673225 0.545066 -0.202405 1.144345 -1.624883 -1.854597 0.860413 -0.241634 -0.814509 -0.475604 -0.529140 1.012039 0.114794 -0.592707 -0.776681 -1.928157 1.153687 -0.115091 1.079927 0.955057 0.395611 1.837786 0.332790 -1.042369 -1.053230 -0.744563 0.159342 -0.511645 -0.530344 -1.255345 -0.625445 1.104909 2.296199 0.025001 -0.212366 -0.280068 1.614586 -1.617817 -0.507815 0.859023 0.602856 -0.477149 0.533800 1.008605 -1.250901 -0.729231 -1.318974 0.335048 -0.043489 -1.059798 0.651718 -1.592286 -0.001511 1.039194 -0.453425 -0.482507 0.895998 0.371323 0.022620 -0.373299 1.725452 1.681549 -1.191194 0.215630 -1.356043 0.726941 -2.022858 -1.103591 -0.309352 0.568906 -0.295675 -0.110403 0.309161 0.706980 0.325488 -0.305003 -0.515182 -0.421894 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.189203 0.648831 0.640183 -0.123378 0.999220 0.462398 0.558507 0.497595 -0.714346 -1.261853 -0.222702 -1.270060 -2.039430 1.491257 -0.086755 0.357142 2.400694 0.603064 0.171158 -0.691710 0.725008 -1.289642 2.305219 2.319638 -1.946523 0.431075 0.767931 0.738032 0.211288 1.048379 -0.241514 -1.493472 1.009471 -0.798179 0.899904 -1.137743 -0.220377 -0.383005 -0.389652 -3.262926 -0.371362 0.748681 -0.381275 0.058461 0.116065 1.701311 2.378422 1.254122 -0.711917 1.309374 0.703944 -0.495225 0.731104 0.321870 0.164114 0.075095 0.079900 0.095730 -1.157868 0.473822 -0.251798 -2.598091 -0.331247 1.330194 2.059675 -0.458169 -0.399601 0.396760 -0.444864 0.271076 0.022077 1.033589 1.300854 0.373932 1.657736 -1.350864 -0.562518 -2.946873 -0.451777 -5.071759 -1.796414 -1.567337 1.774741 0.097499 0.654514 -0.522593 2.360202 0.041063 0.575309 1.141939 2.488864 -1.726688 -0.702211 -1.093650 0.045329 0.768895 -1.163562 0.042024 1.125323 -0.598528 -1.487706 -1.454874 1.346425 -0.083125 -0.994654 -0.783037 -0.623421 1.617892 -2.136467 -1.006916 -2.798674 -0.610834 0.015769 -2.528228 0.470335 0.329110 1.231206 1.311581 -0.408480 -1.056955 0.556991 0.873965 -0.217596 -1.036763 -0.409373 2.054158 0.609716 -0.094879 0.931931 0.992511 0.703434 1.826394 2.323982 -0.255555 -0.615873 0.752661 -1.004807 0.151466 -0.882397 -0.496187 1.066982 -1.540292 -0.002065 0.491046 -1.125973 -0.434570 0.663779 -0.651168 0.833393 3.500414 -0.166548 1.040683 0.569029 -1.708511 1.441396 -0.699292 -0.596011 0.670261 1.663712 1.193011 -1.821378 -0.950602 0.591868 2.188725 0.886848 -2.062568 -0.635977 -0.368613 0.596624 -0.540627 0.793352 0.676316 0.698475 -0.927125 -0.002340 0.887905 2.858578 -1.487748 -1.544654 0.219091 0.260043 -0.018397 -2.439375 -0.120664 -0.688402 -0.417278 0.143272 0.021163 0.316737 1.858079 -3.102921 1.562091 -0.712816 -0.665480 1.236916 0.240702 -0.612982 -2.346463 0.579411 1.395135 1.718606 0.739367 0.059765 -0.291361 -1.857337 -0.119809 0.274433 0.923501 -0.781511 1.585386 -0.450083 -1.106064 -1.214999 -0.897009 -0.055157 -0.754978 -0.346855 0.806378 1.118484 -3.448595 1.700844 -0.515198 -1.219839 0.302484 -0.013345 1.212721 -1.824556 -2.290684 0.789052 -0.827697 -1.886911 -1.003075 -0.613934 0.710372 0.263280 -0.902247 -0.512987 -2.144362 1.947230 -0.049132 1.227482 1.130795 0.401281 2.784445 0.838593 -1.725949 -0.986858 -0.802049 0.543549 -1.348106 -0.527012 -0.962474 -0.743936 1.199590 2.672826 0.146773 -0.010594 -0.697561 1.789059 -2.277574 -0.984154 1.422368 1.335506 -0.098324 1.286730 1.488819 -1.532899 -0.761166 -1.382950 -0.182668 0.015880 -1.222888 0.576748 -2.057120 -0.047095 1.195829 -0.417189 -0.639965 0.906527 -0.045915 -0.084158 -0.837630 2.033179 2.953944 -2.178544 0.542789 -1.489727 1.072042 -2.260579 -1.357153 -0.091474 0.852654 -0.292095 -0.080117 0.666204 0.433419 0.395152 -1.391710 -1.044533 -0.312485 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.123887 0.522906 0.685557 -0.438488 1.206033 0.495682 0.274420 0.280557 -0.613000 -0.978585 -0.344651 -1.023631 -1.639356 1.125311 -0.171510 0.397339 1.558240 0.094065 0.050595 -0.590905 0.778911 -0.868835 1.642658 1.198395 -1.631709 0.333080 0.518727 0.915129 0.276049 1.163402 -0.268381 -1.085303 0.363147 -0.343153 0.868537 -0.737658 -0.022248 -0.162010 -0.399881 -2.244242 -0.362241 0.767106 -0.466004 0.292557 0.131782 1.381792 1.713580 0.969747 -0.728044 0.914304 0.835252 -0.248306 0.613424 0.261895 -0.161167 0.023466 0.473588 -0.114391 -0.823014 0.306964 -0.182163 -1.847559 -0.094284 0.959107 1.590889 -0.585119 -0.410155 0.585459 -0.242028 0.211213 0.053834 0.922055 0.790567 0.264918 1.327964 -0.841158 -0.309366 -2.036764 -0.042725 -3.492154 -1.226767 -1.338780 0.996319 0.432852 0.349616 -0.490903 2.085832 -0.011125 0.223771 0.918677 1.751765 -1.155037 -0.339812 -1.236460 -0.122936 0.371946 -0.866404 -0.398280 0.624542 0.067184 -0.861502 -0.940468 0.706505 -0.353596 -0.766593 -0.505200 -0.875600 1.320057 -1.759532 -0.687177 -2.075551 0.003880 0.001629 -1.890535 0.085703 0.214339 0.729161 0.572964 0.165874 -0.623666 0.432885 0.777676 -0.355432 -0.458702 -0.566720 1.636524 0.716336 -0.279669 0.588283 0.830070 0.535818 1.121081 1.622411 -0.241484 -0.930942 0.733704 -0.479997 0.013541 -0.701259 -0.025885 0.762575 -1.195626 -0.097578 0.441329 -0.595221 -0.180726 0.050246 -0.846057 0.672856 2.696822 -0.235092 0.535184 0.147313 -1.206596 1.174430 -0.163664 -0.478737 0.595039 0.883737 0.933142 -1.296704 -0.813180 0.729872 1.475082 0.551990 -1.567230 -0.302035 -0.209004 0.428364 -0.322232 0.437736 0.815110 0.163150 -0.399217 -0.070266 0.209241 2.321394 -0.924685 -1.319386 0.522075 0.332341 -0.379716 -1.683802 -0.209274 -0.490942 -0.646586 0.264783 0.036538 0.312215 1.446382 -2.473818 1.160557 -0.125642 -0.622327 0.934813 -0.283286 0.012734 -1.763201 0.090037 1.043928 1.205981 0.327615 0.042329 -0.423081 -1.376986 0.281254 0.299092 0.735797 -0.508218 1.053732 -0.328956 -0.742027 -0.846480 -0.718328 -0.346777 -0.146106 -0.409607 0.511207 0.569873 -2.735058 1.287299 -0.613149 -0.648804 0.347983 0.136723 1.084073 -1.145920 -1.541197 0.724198 -0.513623 -1.464111 -0.855193 -0.300565 0.576056 0.146019 -0.577528 -0.588053 -1.864867 1.213328 -0.217769 0.677699 0.800815 0.411059 1.840729 0.729027 -1.240180 -0.792891 -0.671391 0.466335 -0.735177 -0.050821 -0.509075 -0.327883 0.867030 1.770256 0.153028 0.194623 -0.653059 1.318159 -1.462190 -0.770956 0.990575 0.570862 -0.327054 1.022923 1.074365 -0.856094 -0.717438 -1.237894 0.087514 -0.225811 -0.779756 0.376849 -1.503153 -0.254791 1.119049 -0.301726 -0.750805 0.764076 0.022530 -0.344400 -0.954466 1.955092 2.195751 -1.449827 0.579687 -1.101569 0.956364 -1.657578 -0.886757 -0.207422 0.400455 -0.039426 0.037187 0.538503 0.402185 0.283627 -0.827988 -0.657145 -0.503608 +PE-benchmarks/strongly-connected-components.cpp__std::__deque_buf_size(unsigned long) = -0.344857 -0.442576 -0.244121 -0.445243 0.257755 -0.042797 0.043426 -0.355504 -0.712604 -0.347823 0.124852 -0.797734 -0.200038 0.577765 -0.148597 0.530652 0.815753 0.196861 -0.148805 -0.185461 0.523212 -0.487390 0.480700 0.886886 -0.304389 0.032596 -0.265112 0.192211 -0.085632 0.075892 0.163691 -0.680776 0.047553 -0.528338 0.159584 -0.251300 -0.299393 0.701251 0.612639 -0.953837 0.036625 0.428973 0.389454 0.114446 0.175952 0.026091 0.315902 0.094735 0.005371 0.734904 0.322511 -0.130678 0.406966 -0.053565 0.311032 0.385835 -0.047976 -0.213913 -0.127150 0.009175 -0.412981 0.174850 0.212421 0.339911 0.545077 -0.090519 -0.443848 0.054934 0.163087 0.103727 0.259759 0.497095 -0.135760 -0.216743 0.268964 -0.715439 -0.104523 -1.269051 0.291116 -1.275808 -0.464006 0.266996 0.514978 0.587710 0.114601 -0.091732 0.874796 -0.458228 -0.485482 0.383024 0.616364 -0.237512 -0.102718 0.007811 -0.360554 -0.254196 0.048708 -0.181190 0.203503 0.521415 -0.532267 -0.366258 0.328420 -0.055240 -0.206563 -0.409205 0.013427 0.495284 -0.656895 -0.419613 -0.194133 0.696099 0.243440 -0.593852 0.071129 -0.470133 -0.362380 0.225359 -0.834060 -0.398398 0.346224 -0.102331 -0.354984 -0.015339 -0.189848 0.329487 0.274450 0.018909 -0.214230 0.390967 -0.021897 0.774908 -0.089820 -0.491283 0.163778 0.207784 0.028669 0.189462 -0.285152 -0.331473 0.122462 -0.475128 -0.063109 -0.198866 -0.338282 -0.115826 0.159529 -0.118975 -0.408000 1.250051 -0.415122 0.759461 0.512277 -0.179228 0.499205 -0.008754 0.383888 0.206276 0.613922 0.232574 -0.514660 -0.536514 0.755996 0.699834 0.088269 -0.404355 -0.449520 0.334139 0.320225 0.177576 0.359599 -0.109784 0.100150 -0.123355 -0.013543 -0.040765 1.263590 -0.149324 0.236942 0.042383 0.490221 0.002189 -0.728696 -0.154578 -0.963827 -0.076026 0.062067 0.257987 0.218993 0.711424 -1.094076 0.485021 -0.234872 0.212837 0.397629 0.293113 -0.315393 -1.559040 -0.557252 0.066052 0.711194 -0.122488 0.339909 0.115434 -0.615783 0.085893 0.000000 0.259845 -0.760890 0.674806 -0.172948 -0.414959 0.188955 0.231182 -0.512927 -0.324441 -0.267146 0.229267 0.791491 -0.517558 0.258665 0.238937 -0.010261 0.223465 0.275479 0.664835 -0.159975 -0.312988 0.359437 -0.291721 -0.310038 -0.052335 -0.105455 0.201591 -0.192302 -0.317919 -0.365779 -0.545614 0.757833 -0.110442 0.886504 0.084505 -0.550075 0.183502 0.112404 -0.290435 -0.172324 -0.125496 -0.328388 -0.355732 -0.019443 -0.418245 -0.199410 0.347804 0.347707 0.297886 -0.438645 0.094531 0.604004 -0.297647 0.398096 0.299486 -0.225854 -0.244466 0.193140 0.424993 -0.486420 0.184668 -0.562442 0.130017 -0.502421 0.052255 0.502260 -0.116033 0.035622 -0.310517 -0.296216 0.137939 0.239218 0.504252 -0.161139 0.176568 0.922878 0.179894 0.176165 0.052703 -0.574138 0.154136 -0.413927 -0.268318 -0.281339 0.629905 -0.589591 -0.234380 -0.135781 0.528305 0.274081 -0.167842 -0.377783 0.286068 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.057648 0.648388 0.418300 0.049222 0.615643 0.222793 0.336686 0.238464 -0.260549 -0.715942 -0.232931 -0.776189 -1.220647 0.832532 0.025635 0.255540 1.368150 0.310009 0.120440 -0.347801 0.392143 -0.930212 1.319355 1.237604 -1.090699 0.323643 0.574143 0.359591 0.062952 0.740125 -0.394868 -0.778759 0.627881 -0.515564 0.573141 -0.598266 -0.128533 -0.402531 -0.248906 -1.835166 -0.217536 0.370446 -0.032172 -0.028688 -0.038314 0.945899 1.558136 0.705193 -0.344724 0.558553 0.300163 -0.414340 0.457993 0.246074 0.217772 0.136393 0.299242 0.087055 -0.776112 0.237807 -0.134751 -1.648854 -0.216417 0.749057 1.146751 -0.220055 -0.179444 0.365739 -0.370245 0.096607 -0.125462 0.561220 0.744484 0.317742 0.902177 -0.863652 -0.127058 -1.497464 -0.436032 -2.956595 -1.066016 -1.038067 0.775387 -0.071602 0.540923 -0.177820 1.323237 0.061694 0.481120 0.336563 1.576794 -1.171456 -0.425279 -0.639793 0.123088 0.416289 -0.674721 -0.002312 0.809099 -0.568011 -0.866136 -0.861040 1.010814 0.057908 -0.569558 -0.360935 -0.346520 0.875398 -1.208022 -0.669738 -1.706215 -0.760459 -0.133458 -1.461703 0.538916 0.371693 0.637926 0.795507 -0.144451 -0.868379 0.322135 0.665000 -0.088597 -0.771568 -0.306094 1.239040 0.306813 -0.073865 0.652948 0.513023 0.504170 1.097123 1.516360 -0.062707 -0.368352 0.318753 -0.710337 0.021170 -0.392729 -0.399009 0.538530 -0.936699 -0.111693 0.392789 -0.649290 -0.038407 0.449685 -0.384568 0.567403 1.760953 -0.129355 0.503463 0.160992 -1.110605 0.908865 -0.469411 -0.557400 0.248089 0.945486 0.802398 -1.084055 -0.561993 0.351575 1.221864 0.507021 -1.171925 -0.426015 -0.362733 0.338112 -0.272322 0.385481 0.423542 0.459451 -0.590308 -0.027964 0.493696 1.728698 -1.006449 -0.931220 0.273045 -0.175619 0.002760 -1.636738 -0.133328 -0.437667 -0.252754 -0.257526 -0.051706 0.117633 1.075478 -1.670400 0.950830 -0.554586 -0.631906 0.938174 -0.005164 -0.291615 -1.388628 0.427409 0.984947 0.936815 0.412449 -0.051024 -0.336349 -1.035568 -0.123846 0.059009 0.558660 -0.405347 0.865604 -0.288861 -0.756633 -0.803140 -0.569226 0.126724 -0.527700 -0.130301 0.411960 0.735290 -1.946965 1.141594 -0.270352 -0.672183 0.235696 0.027125 0.499419 -1.048264 -1.363043 0.402245 -0.518344 -0.954242 -0.537176 -0.324595 0.374364 0.109108 -0.722020 -0.255295 -1.188536 1.030084 -0.017912 0.603514 0.658266 0.444346 1.571975 0.724905 -1.060316 -0.564957 -0.243412 0.002300 -0.896628 -0.314132 -0.631732 -0.472785 0.770310 1.639203 0.091430 0.191017 -0.410929 0.920048 -1.369886 -0.668318 0.921354 0.719280 -0.159475 0.585349 0.906851 -0.761352 -0.585450 -0.742937 -0.258990 0.005284 -0.815542 0.154107 -1.287063 -0.161104 0.865580 -0.392299 -0.380155 0.531499 -0.127151 -0.016686 -0.585004 1.090341 1.645772 -1.383090 0.275954 -0.792841 0.550824 -1.362531 -0.784070 0.087747 0.682662 -0.180022 -0.107270 0.599926 0.150511 0.086878 -0.861955 -0.521288 -0.403850 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/strongly-connected-components.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/strongly-connected-components.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/strongly-connected-components.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.083720 2.091510 1.366277 -0.359619 1.764270 0.994141 0.719948 0.675167 -0.559317 -2.286870 -0.516342 -2.177360 -3.725642 2.182581 -0.238950 -0.160090 3.667570 0.279170 0.329360 -1.270693 1.166641 -1.538706 3.744430 3.539724 -3.647278 0.776785 2.126973 1.181516 0.844205 1.389804 -0.337967 -2.497264 1.425576 -0.773104 1.679738 -1.264721 -0.309632 -1.737586 -1.008497 -5.027494 -0.768477 0.692235 -1.313150 0.103118 0.102108 3.005358 4.657213 2.000392 -1.605766 1.355360 1.557942 -0.302976 0.766056 0.368787 -0.024966 -0.634567 0.544727 0.519102 -1.548016 0.558004 -0.116956 -3.966402 -0.797345 2.546330 3.306273 -0.569677 -0.532769 0.899980 -0.607787 0.344564 -0.592539 1.799689 2.536555 1.561691 2.828804 -2.175978 -0.872230 -5.152526 -0.763331 -8.528228 -2.957993 -2.988941 2.360755 -0.504262 0.824130 -0.581609 3.830087 0.570065 1.396620 2.114305 4.448601 -2.535818 -0.952148 -1.998853 -0.277919 1.471750 -1.871413 0.698029 1.493854 -1.118727 -2.382252 -2.419498 1.839216 -0.276175 -1.765330 -1.141537 -1.043031 2.253788 -3.274369 -0.881329 -4.517521 -1.453240 0.256850 -4.494726 0.072237 0.661008 2.839176 1.793391 -0.212651 -1.798575 0.495283 1.688997 -0.372280 -1.607716 -0.567686 3.184835 1.560644 0.007574 1.570323 1.482215 1.872850 2.774053 3.980758 -0.168993 -1.232827 0.683842 -1.602773 -0.168380 -1.239567 -0.305341 2.052539 -2.078855 0.419665 1.301486 -1.641542 -1.213251 1.289209 -1.887088 1.625575 6.335810 -0.320014 1.534248 0.564743 -3.007350 1.627760 -1.329863 -1.770118 0.940035 2.464994 2.542573 -2.810306 -1.415006 1.163741 3.547854 1.235267 -3.481002 -0.464180 -0.328609 0.392392 -1.401580 1.258420 0.959654 0.942841 -1.309365 -0.210127 2.227428 4.295147 -2.279002 -3.168347 0.379793 0.730584 0.419217 -3.290711 -0.005514 -0.458674 -0.488667 0.779399 -0.036220 0.895975 2.987535 -5.700701 2.271142 -0.520354 -1.251710 1.702409 0.413003 -1.002284 -3.201857 1.788924 2.872058 2.206859 1.182139 -0.082561 -1.017635 -2.932362 -0.257534 0.706838 1.517534 -1.341773 2.454841 -0.460662 -1.867452 -2.498233 -1.646497 -0.011700 -0.715075 -0.802046 1.142005 0.916030 -6.374895 3.463587 -0.993638 -1.862854 -0.155246 -0.998996 1.908249 -3.211251 -3.837815 1.095471 -1.548768 -3.109893 -1.449845 -1.093049 1.118529 0.662225 -0.665243 -1.274516 -3.562970 3.017396 0.017287 1.778801 1.923457 1.434754 4.861297 0.485099 -2.466108 -2.009369 -1.286411 1.696451 -1.544867 -1.396396 -1.351547 -1.295153 1.722446 4.488532 -0.641521 -0.000158 -1.205766 2.262963 -3.972367 -1.908973 1.910512 2.743855 -0.667918 2.001589 2.059049 -1.931118 -1.396869 -2.515920 -0.632578 -0.168553 -2.558438 0.519308 -3.364669 -0.301012 2.687335 -0.937404 -1.206959 1.652347 -0.495242 0.101871 -1.235184 2.569896 5.489034 -4.057488 0.778429 -2.689755 1.947818 -4.023807 -2.919626 0.459356 0.559369 0.223585 -0.529675 0.595067 0.518487 0.413461 -2.147296 -1.541073 -0.226072 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::push_back(int const&) = -0.043741 3.042429 2.308773 -1.538446 2.903491 3.631226 0.647825 -0.225403 -1.121251 -1.314180 -0.980128 -3.364120 -3.603625 2.818422 -0.452523 0.245991 4.336237 -0.057423 -0.350475 -0.350980 1.119849 0.019273 4.137212 4.064622 -3.801415 1.252350 1.834864 0.942138 -0.557201 3.621027 -2.108776 -4.262667 0.499599 -0.010549 1.490007 -1.037984 -1.211112 -2.133394 -0.012500 -5.958342 -0.576498 2.113580 -1.504487 -0.343259 0.642153 0.379326 6.187963 2.047691 -0.866120 0.475159 1.216366 0.875365 1.063097 0.129189 1.386605 0.649384 2.623406 0.302232 -1.255911 0.164713 -0.564100 -1.702788 -1.050051 3.268701 3.357767 0.118667 -1.337854 -0.106749 -0.398153 -0.110907 -1.264037 2.427942 1.883375 3.031944 1.925030 -1.144015 0.611809 -3.661690 0.417986 -4.660327 -3.355116 -2.601343 1.148124 1.739451 1.624411 -1.950492 4.850555 -0.830827 1.359799 1.119790 5.358870 -3.134531 -0.552529 -2.124885 -1.463105 0.640081 -1.084634 0.287627 -0.287405 -1.727203 -2.867043 -3.116825 1.725528 0.159120 -2.168652 0.212655 -0.615656 2.484835 -2.609270 -1.219020 -3.809291 -0.354196 -0.402219 -5.169822 -2.075527 0.064738 0.252469 1.349320 -1.251308 -3.755613 1.236273 2.216369 -1.364214 -1.929364 -1.357242 3.889803 2.400458 -0.493958 1.047478 0.580453 2.466261 3.409350 2.798504 -0.729019 -0.438901 0.415020 -0.887961 -0.616167 -1.060925 0.243404 -0.532010 -2.045091 -0.396183 2.577402 -1.885115 0.728962 -1.144436 -2.087166 1.267812 10.268070 -1.772486 2.182427 0.203148 -4.247950 2.891561 -0.518568 -2.659835 -0.083875 2.086715 3.893587 -4.899285 -1.720146 2.328304 4.495888 1.501913 -2.975818 0.795637 -0.189008 -0.546136 -1.460624 2.270632 0.304120 0.784166 -1.847984 -0.846323 2.160408 6.630173 -2.111797 -5.436274 0.901850 0.765658 0.816887 -1.929131 -0.061066 -1.556414 -0.478332 1.249204 -0.603450 2.049650 3.623089 -6.585679 3.073028 -0.375033 -3.266802 3.852743 -0.252415 -0.945502 -0.771548 1.242371 3.731488 2.978490 0.963343 -0.509031 -1.981309 -3.371601 -0.425102 0.776498 1.676040 -2.430065 3.108672 0.268187 -3.552509 -2.276743 -2.745593 -0.517730 -1.797238 -2.750015 1.262810 0.405610 -6.496215 4.624248 1.102233 -0.826897 0.200714 -1.667568 1.463615 -3.021953 -4.323862 1.343870 -1.208632 -1.811536 0.273244 -1.676295 1.351176 1.661172 0.990370 -3.159150 -4.451017 2.855513 0.750615 3.087387 2.373152 1.716928 3.184318 2.038323 -2.127403 -1.666594 -2.900500 2.999512 0.144404 -1.787589 -1.807232 -2.411719 2.293977 4.475899 -0.834623 -0.477071 -3.532142 2.380931 -2.796617 -0.235127 1.697739 0.179181 -2.169316 -0.342173 2.220174 -0.807393 -1.451032 -2.765834 -0.595331 -1.810610 -2.702841 0.502371 -3.075525 -0.536089 3.102484 -1.986756 -1.997808 1.194138 -0.368454 -0.617295 -0.183389 2.847914 2.783105 -2.894184 1.899886 -3.084625 2.631587 -4.382868 -3.045521 0.607157 -1.269896 -1.105480 -1.569453 0.251579 0.974693 0.010646 -0.511495 -0.742314 -0.392486 +PE-benchmarks/strongly-connected-components.cpp__void std::deque >::_M_push_back_aux(int const&) = 0.159246 3.407252 3.364675 -2.089028 3.374496 3.954330 0.549356 0.153496 -1.527937 -1.639540 -1.054437 -4.515467 -4.491703 3.230579 -0.681044 -0.583160 4.886388 -0.177222 -0.553573 -0.520869 0.629564 0.711776 4.580660 4.545042 -4.490719 1.497281 1.452438 1.517299 -0.363822 4.329318 -2.291224 -4.940231 0.078596 1.280121 1.889580 -0.727283 -1.422621 -2.742119 -0.926087 -6.776802 -0.575477 3.213999 -1.614542 -0.234814 1.187646 1.053514 7.199328 2.237959 -0.951067 0.354097 1.536957 1.046288 1.456309 -0.033256 1.540395 -0.113884 3.943678 0.109570 -1.627628 0.325297 -0.524694 -1.998344 -1.726906 3.693705 3.833711 0.215670 -1.730502 -1.013947 -0.020812 0.015959 -1.201727 2.684284 2.526479 3.798293 2.145257 0.382086 1.174091 -3.371909 0.951345 -5.123390 -3.779186 -2.869755 2.410457 2.725659 0.694930 -3.014231 5.422849 -0.857244 1.539878 1.127059 6.116750 -2.745246 -0.725506 -2.364858 -1.805657 1.096917 -1.142675 0.329100 -0.497664 -1.308083 -3.117659 -2.666289 1.549038 -0.507316 -2.516269 1.701282 -0.771615 2.813415 -3.031290 -0.318694 -4.252343 0.070528 0.604679 -5.850615 -3.181191 0.127109 -0.189088 1.508426 -1.474746 -3.111782 1.373750 1.777716 -1.837020 -0.940229 -2.953651 4.782729 2.563365 -0.522678 1.018291 0.963665 3.206625 2.864527 2.338331 -0.975290 -0.471906 0.529766 -0.662673 -0.807178 -1.209277 0.550080 -0.646848 -1.919384 -0.185591 2.333885 -2.163132 0.689969 -3.199403 -2.206022 1.364620 11.376048 -2.096540 2.519845 0.106061 -4.396270 3.346873 0.001741 -2.996922 -0.246488 1.991971 4.562448 -4.487556 -1.810526 2.728608 5.116639 1.682860 -3.326231 2.166385 0.185496 -0.818915 -1.855285 2.969350 0.385849 0.805444 -1.805827 -1.009158 2.553821 7.082727 -1.754089 -7.604371 0.697082 0.804949 1.469643 -0.986046 0.378435 -0.501089 -0.463216 1.565951 -0.541094 2.563725 4.142164 -8.091131 3.635184 0.770237 -3.649830 4.875387 -0.775354 -0.994116 -0.371220 1.272152 4.129186 3.498629 1.521187 -1.450883 -2.298220 -3.741461 -0.505090 1.183501 1.843166 -2.735368 3.333517 0.465302 -3.549355 -2.437579 -4.409735 -0.654756 -1.027145 -4.088815 1.442787 0.075944 -7.878899 5.172398 1.305554 -0.934321 -0.681866 -2.372893 1.054210 -3.501394 -4.588921 0.831733 -1.808469 -3.263219 -0.125628 -2.018131 1.120572 1.782847 1.831947 -3.841763 -4.834244 3.779497 0.514230 3.505326 2.804059 1.706716 3.318180 3.726238 -2.088942 -1.399101 -3.343725 4.385736 0.065228 -1.919450 -0.746151 -2.772054 2.096936 4.934634 -1.327669 -0.478801 -4.581510 2.430095 -2.314008 -0.813579 1.704800 -1.074311 -2.202485 0.245880 2.406213 -0.854821 -1.375420 -3.580961 -1.301041 -2.143823 -3.013736 0.593840 -3.339421 -0.604377 3.675393 -2.380701 -2.888755 1.327840 -0.853637 -1.473277 -0.042908 3.500269 3.321729 -3.213573 3.284081 -3.786643 3.515478 -4.941865 -3.383587 0.677579 -2.425477 -1.263864 -1.844630 -0.042691 0.852013 0.071501 -0.678507 -1.296499 0.507453 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::size() const = 0.063123 0.571130 0.579541 -0.317946 0.527119 0.613142 0.087338 -0.034266 -0.258514 -0.227270 -0.132803 -0.817157 -0.662741 0.467919 -0.129250 -0.103834 0.647380 -0.072549 -0.095051 -0.033996 -0.079296 0.220625 0.668284 0.676592 -0.613111 0.292337 0.055893 0.165382 -0.200454 0.805019 -0.392251 -0.880902 -0.053479 0.410057 0.234236 0.007028 -0.290914 -0.423384 -0.145743 -0.985367 -0.078464 0.681821 -0.094516 -0.063147 0.257315 0.011279 1.111921 0.295481 0.009794 0.075543 0.156267 0.232449 0.292947 -0.017696 0.354317 -0.065630 0.790515 -0.265812 -0.274006 0.057709 -0.085761 -0.187216 -0.359578 0.556820 0.517331 0.074245 -0.297505 -0.333773 -0.068560 0.002068 -0.202207 0.427589 0.294067 0.679657 0.172805 0.358574 0.375433 -0.157958 0.213328 -0.459107 -0.596286 -0.326260 0.398352 0.797700 0.081481 -0.498816 0.812838 -0.144131 0.190204 0.014870 0.901368 -0.357667 -0.082624 -0.167404 -0.306256 0.108492 -0.096395 0.053015 -0.326995 -0.113071 -0.474285 -0.284458 0.246703 -0.102986 -0.366047 0.507650 -0.073398 0.309434 -0.500703 0.033913 -0.500959 0.048638 0.149643 -0.816466 -0.520764 0.048801 -0.253924 0.209937 -0.289680 -0.410109 0.263174 0.137599 -0.314469 -0.019124 -0.815707 0.663320 0.317521 -0.075071 0.130708 0.101925 0.510031 0.361425 0.080862 -0.171472 0.012082 0.023238 0.053970 -0.077738 -0.032264 0.109687 -0.390186 -0.238643 0.009379 0.274928 -0.306078 0.165827 -0.992413 -0.293061 0.116792 1.451983 -0.393693 0.432065 0.001855 -0.661952 0.454966 -0.020929 -0.482553 -0.150062 0.231435 0.703234 -0.386594 -0.244758 0.475202 0.778013 0.229411 -0.274973 0.522826 0.143032 -0.162048 -0.248727 0.577225 -0.008649 0.135533 -0.314544 -0.186986 0.299309 1.065992 -0.074622 -1.073373 0.109994 0.037509 0.334549 0.163117 0.110608 0.032325 -0.030742 0.193961 -0.099361 0.373353 0.573494 -1.178299 0.576346 0.164898 -0.598817 0.796656 -0.216822 -0.168279 0.151982 0.113725 0.602541 0.511451 0.195218 -0.197280 -0.380274 -0.526270 -0.100193 0.118190 0.222251 -0.483855 0.514741 0.146826 -0.638639 -0.315317 -0.806200 -0.050264 -0.122543 -0.775963 0.198363 0.132004 -1.106257 0.761114 0.334012 -0.096589 -0.199258 -0.334579 0.037705 -0.436807 -0.590472 0.018302 -0.384564 -0.514498 0.102411 -0.364905 0.039971 0.219262 0.340673 -0.583929 -0.484285 0.572175 0.145731 0.539185 0.424346 0.230829 0.272434 0.752761 -0.272118 0.015478 -0.511324 0.739046 -0.061952 -0.216629 0.234107 -0.505255 0.251452 0.652075 -0.171678 -0.127040 -0.706757 0.309892 -0.028869 -0.045920 0.221600 -0.511655 -0.339370 -0.030566 0.334352 0.010071 -0.129246 -0.566515 -0.195676 -0.420061 -0.377064 0.093425 -0.395413 -0.125344 0.532357 -0.417024 -0.555573 0.140371 -0.182052 -0.339414 0.075231 0.527593 0.139438 -0.299196 0.701910 -0.530570 0.463118 -0.650149 -0.423997 0.075495 -0.429172 -0.282284 -0.355987 -0.151216 0.101404 0.018594 -0.009652 -0.167946 0.178214 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::max_size() const = -0.037791 0.143272 0.247771 -0.138360 0.166366 -0.095238 0.077945 0.068389 -0.175916 -0.424638 0.027340 -0.453537 -0.506795 0.309740 -0.149254 -0.102783 0.445910 0.052522 0.026851 -0.256637 0.048388 -0.196113 0.501424 0.514530 -0.503657 0.060539 0.110555 0.287230 0.199689 0.170949 0.158307 -0.357200 0.110765 0.132274 0.278129 -0.129733 0.006038 -0.098564 -0.257582 -0.654539 -0.082488 0.257662 0.079820 0.046627 0.084019 0.499114 0.500371 0.290083 -0.174063 0.254193 0.310569 0.035546 0.167989 0.037419 -0.031357 -0.316984 0.192497 -0.236463 -0.232486 0.113854 0.003930 -0.559552 -0.136310 0.387357 0.511416 -0.072158 -0.045784 -0.055714 -0.050218 0.150071 0.054853 0.223172 0.243541 0.219726 0.311565 -0.087758 0.025922 -0.681549 -0.002638 -1.255300 -0.365998 -0.301821 0.559310 0.267835 -0.095040 -0.060288 0.503624 0.186113 0.094363 0.316429 0.542030 -0.133101 -0.155541 -0.149114 -0.110241 0.278852 -0.278697 0.114145 0.074894 0.213928 -0.289627 -0.101101 0.166581 -0.142270 -0.216811 0.073032 -0.148208 0.244394 -0.581884 0.049126 -0.485732 -0.058863 0.252169 -0.596425 0.060230 -0.045368 0.301881 0.183743 -0.054709 0.063016 0.056843 0.017605 -0.064437 0.096957 -0.617696 0.378464 0.095838 0.037636 0.126486 0.245765 0.216235 0.193011 0.213821 -0.122938 -0.162717 0.115349 -0.157339 0.024203 -0.192304 -0.044480 0.341266 -0.250868 0.141744 -0.047028 -0.214376 -0.349096 -0.211852 -0.228638 0.194554 0.577582 -0.015532 0.267000 0.171580 -0.286676 0.129187 -0.122527 -0.104295 0.145912 0.289223 0.233429 0.066247 -0.221339 0.168930 0.470914 0.168242 -0.278465 0.037155 0.101422 0.062123 -0.135216 0.221669 0.129056 -0.015673 -0.160230 -0.039658 0.243649 0.386178 -0.021863 -0.231185 -0.028496 0.178393 0.061380 -0.208022 0.078980 0.101841 0.004931 0.042937 0.062999 0.116355 0.402448 -0.912426 0.343410 0.148151 0.059071 0.174035 -0.066638 -0.187021 -0.623839 0.186953 0.290340 0.289825 0.088042 0.022239 -0.007028 -0.395700 -0.021910 0.062215 0.191026 -0.216946 0.287320 -0.025898 -0.168341 -0.327171 -0.308048 -0.021164 0.079412 -0.204784 0.182334 0.262527 -0.821011 0.396451 -0.207989 -0.276051 -0.195046 -0.126717 0.182734 -0.466064 -0.377458 -0.001189 -0.338366 -0.620507 -0.324516 -0.139616 0.065305 -0.111544 -0.069719 -0.110931 -0.211292 0.450603 -0.127040 0.193838 0.229535 0.085553 0.510700 0.239382 -0.217858 -0.121594 -0.036910 0.225434 -0.367888 -0.125602 0.259710 -0.120002 0.129102 0.547338 -0.092955 -0.066540 0.064660 0.326754 -0.217766 -0.392382 0.196746 0.029857 -0.005109 0.463114 0.222983 -0.340534 -0.095359 -0.459525 -0.091113 0.011135 -0.291769 0.171139 -0.333875 0.017699 0.276873 -0.069333 -0.267205 0.250609 -0.042122 -0.111679 -0.084730 0.475942 0.616411 -0.349723 0.283896 -0.423464 0.190484 -0.511846 -0.338773 -0.022456 0.056269 0.014241 -0.012822 -0.097372 0.109855 0.147557 -0.224566 -0.290645 0.199117 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -0.384971 0.281138 0.124687 -1.224427 1.272414 1.464321 0.392699 -0.736901 -1.104431 -0.387471 0.185037 -2.653024 -1.284203 1.194719 -0.490423 0.902813 2.109846 -0.278342 -0.563175 -0.332683 0.361317 1.070092 2.363821 2.342939 -1.453601 0.375204 -0.184003 0.258239 -0.415955 0.546587 -0.537850 -2.087650 0.285602 -0.268705 0.190284 0.064634 -0.784556 -0.400633 1.185757 -2.492845 -0.047949 1.311269 0.192403 -0.155876 0.337986 0.296488 2.322156 1.135934 0.102681 0.668480 0.872967 0.421947 0.881533 0.028395 0.601456 0.038617 1.089354 -0.551011 -0.423709 -0.505789 -0.476388 0.445624 -0.477557 1.609742 1.541670 0.104784 -1.214183 -0.040392 0.644651 0.109722 0.035448 1.495508 0.484838 1.220766 0.670114 -0.355237 0.561037 -1.454144 0.492096 -1.767233 -1.541131 -0.095887 0.932658 1.269658 0.826547 -0.896633 2.591196 -0.641223 -0.180347 0.599569 2.012648 -1.375978 -0.340758 -0.292690 -0.668801 -0.102217 -0.313815 0.353678 -0.013107 0.320804 -1.595985 -0.665664 0.304879 -0.085145 -0.971151 0.019571 0.285314 0.462149 -0.937957 -0.493160 -1.118666 1.059864 0.298384 -2.566079 -1.227238 -0.357681 -0.605810 0.291518 -1.375416 -1.573742 0.727726 0.048890 -0.997179 -0.363850 -1.167879 1.361563 1.373192 0.234964 0.291156 0.675053 1.075780 2.352388 0.043744 -0.967267 0.042626 0.191813 -0.018359 0.344874 -0.304788 -0.148006 -0.304289 -1.205683 0.583535 0.947222 -0.951507 0.264765 -0.941251 -0.390610 -0.138901 4.557250 -1.079570 1.863374 1.059724 -1.589094 0.955740 -0.824972 -0.427731 -0.231238 0.753812 1.514621 -1.553152 -1.063793 1.791730 2.367056 0.837271 -1.325045 1.095131 0.989716 0.236208 -0.701698 1.104941 0.173041 0.689854 -1.043364 -0.266557 1.102293 3.444162 -0.470869 -1.128407 0.373492 1.071333 0.860671 -0.163141 -0.228123 -1.273811 -0.155490 1.083853 0.524515 0.955748 1.853062 -2.634999 1.329537 0.215244 -0.718765 2.013263 0.395411 -1.198832 -0.427470 -0.325607 1.130625 1.391276 -0.048435 0.127035 -0.506943 -1.542715 -0.070443 0.375307 0.421641 -1.365143 1.526658 0.267822 -1.375719 -0.293358 -0.968371 -0.401831 -0.527108 -1.325313 1.074260 0.600970 -2.471887 1.761404 0.947881 -0.645950 -0.258783 -1.021235 1.112001 -1.180591 -1.252704 0.711410 -1.130898 -0.753660 0.274851 -0.597293 0.184743 0.658812 1.368995 -1.875610 -1.527351 2.003362 0.362658 2.228128 1.076860 -0.102590 0.463918 0.073272 -0.715774 -0.329462 -1.706433 0.888226 0.358435 -1.112273 0.107963 -0.985717 1.082482 1.415817 -0.568411 -0.778039 -1.150287 0.853538 -1.089284 0.490347 0.543379 -0.167443 -1.426018 0.155128 0.947318 -0.540231 0.267694 -1.432614 -0.256654 -1.589823 -1.033974 0.761065 -0.697550 0.111594 0.717759 -0.966750 -0.506375 0.363166 0.175943 -0.552575 0.535282 1.732867 0.650923 -0.084910 0.675157 -1.992955 1.207795 -1.783194 -1.625866 0.577965 -0.850051 -1.471969 -0.955452 -0.139283 1.156227 0.275567 -0.451475 -1.060976 0.829366 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_node() = -0.038901 0.455737 0.460681 -0.196647 0.535063 0.255328 0.223688 0.096370 -0.348959 -0.627110 -0.037133 -0.877824 -1.019375 0.701242 -0.109746 0.037732 1.036894 0.069922 0.011649 -0.350131 0.218231 -0.385497 1.091168 1.084350 -0.970024 0.267671 0.336399 0.341193 0.136366 0.527292 -0.127281 -0.805766 0.323276 -0.093623 0.412785 -0.281289 -0.188840 -0.364001 -0.185405 -1.456227 -0.178949 0.471590 -0.145962 0.013886 0.117907 0.788523 1.279469 0.571821 -0.294440 0.520123 0.418912 -0.135556 0.362303 0.088354 0.167537 -0.215332 0.418995 -0.051182 -0.491764 0.179601 -0.090192 -1.008497 -0.282915 0.733516 0.950417 -0.150450 -0.263626 0.058175 -0.142656 0.135181 -0.061245 0.561931 0.593972 0.453045 0.697250 -0.386862 -0.016279 -1.262643 -0.097440 -2.213577 -0.879625 -0.606066 0.861020 0.234535 0.183215 -0.260790 1.143945 0.094346 0.205994 0.466226 1.255912 -0.661460 -0.284596 -0.353716 -0.143244 0.344463 -0.466548 0.161460 0.309427 -0.132603 -0.717863 -0.510296 0.557538 -0.126187 -0.501812 -0.052236 -0.239995 0.614606 -0.991343 -0.216599 -1.107623 -0.229293 0.183167 -1.260538 -0.014307 0.128608 0.514172 0.507542 -0.255771 -0.414026 0.258674 0.265913 -0.199377 -0.276491 -0.564493 0.922467 0.368928 0.073757 0.370795 0.434137 0.537655 0.746540 0.809602 -0.169320 -0.219214 0.184903 -0.306379 0.098855 -0.260045 -0.134312 0.359681 -0.583684 0.127738 0.210693 -0.490600 -0.254695 -0.074524 -0.367408 0.286450 1.695978 -0.176881 0.598194 0.254062 -0.815588 0.522871 -0.336821 -0.397866 0.198579 0.654801 0.690909 -0.595907 -0.435690 0.477106 1.092966 0.379502 -0.904682 0.005981 0.068907 0.132086 -0.319088 0.513641 0.225295 0.298084 -0.425676 -0.082751 0.518684 1.326312 -0.497276 -0.913427 0.100591 0.129576 0.201537 -0.766620 0.039988 -0.101417 -0.099640 0.128865 0.024784 0.270331 0.872199 -1.725730 0.746203 -0.085401 -0.366862 0.698329 0.047221 -0.377762 -0.924422 0.282974 0.714286 0.706292 0.336113 -0.066302 -0.225712 -0.859874 -0.075674 0.145674 0.342203 -0.474937 0.753865 -0.099611 -0.567555 -0.589143 -0.626283 -0.009084 -0.155803 -0.408435 0.395462 0.398080 -1.760652 0.911774 -0.107530 -0.511375 -0.140452 -0.217402 0.461190 -0.827353 -0.989737 0.218263 -0.591356 -0.986105 -0.406634 -0.361012 0.165872 0.126947 -0.139400 -0.397456 -0.828013 0.952602 -0.064100 0.638281 0.567084 0.235901 1.137469 0.465646 -0.672716 -0.355855 -0.347741 0.516584 -0.533933 -0.333252 -0.104397 -0.426244 0.461563 1.138632 -0.096566 -0.057264 -0.391274 0.665174 -0.834190 -0.477101 0.535745 0.361189 -0.211996 0.592773 0.599039 -0.512685 -0.213766 -0.779033 -0.260783 -0.211658 -0.608786 0.252928 -0.772865 -0.067245 0.621652 -0.304216 -0.421831 0.412941 -0.132566 -0.137257 -0.243022 0.880878 1.308175 -0.936075 0.412766 -0.814996 0.558833 -1.059588 -0.760616 0.095888 0.151572 -0.169430 -0.225011 0.092828 0.196376 0.203421 -0.605913 -0.498245 0.141072 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.000611 1.014936 1.091491 -0.692563 0.964687 1.053178 0.200095 -0.138511 -0.465962 -0.444684 -0.288371 -1.148674 -1.196600 0.976364 -0.253566 -0.021538 1.537289 0.021169 -0.170163 -0.372143 0.424442 -0.136655 1.531028 1.569984 -1.552578 0.452393 0.755249 0.614297 0.235919 1.249720 -0.810896 -1.132771 0.102200 0.037949 0.626002 -0.508045 -0.337413 -0.755307 -0.103066 -2.220527 -0.185308 0.493872 -0.425283 -0.051100 0.270133 0.581354 2.141570 0.781868 -0.421416 0.224615 0.681570 0.282565 0.390291 0.032474 0.413190 0.101841 1.388576 0.238078 -0.375525 0.087853 -0.064588 -0.815312 -0.234293 1.263218 1.346341 0.029249 -0.396078 -0.086745 0.070893 -0.039800 -0.310000 0.842742 0.547149 1.128539 0.723384 -0.645157 0.529913 -1.640880 0.152165 -2.013232 -1.197250 -0.972228 0.566509 0.313619 0.467152 -0.460879 1.724361 -0.099798 0.514694 0.329494 1.808040 -1.070636 -0.193758 -0.643585 -0.640094 0.387310 -0.442856 0.195144 -0.063579 -0.374161 -0.953699 -1.007147 0.777110 0.024465 -0.837665 0.320462 -0.249256 0.845023 -1.046129 -0.361725 -1.281355 -0.186619 -0.081132 -1.871438 -0.534504 -0.235418 0.588446 0.341156 -0.295501 -1.169144 0.270644 0.795839 -0.455294 -0.486046 -0.870795 1.409230 0.915678 -0.166902 0.314858 0.115043 0.846823 1.047647 0.977687 -0.368135 -0.264834 0.218393 -0.520155 -0.251370 -0.553823 0.106837 0.147049 -0.697175 -0.085833 0.797408 -0.659076 0.150524 -0.055386 -0.662074 0.507747 3.720919 -0.470714 0.795958 0.151370 -1.418709 0.884607 -0.105029 -0.855418 0.219380 0.733120 1.245979 -1.798704 -0.669425 0.654058 1.578892 0.536461 -1.197382 0.162783 -0.061121 -0.316806 -0.421701 0.757944 0.057351 0.089552 -0.617100 -0.314700 0.739991 2.246276 -0.594902 -1.977375 0.194963 0.102798 0.046062 -0.811486 0.021029 -0.297063 -0.072897 0.242447 -0.154079 0.794684 1.293325 -2.812235 1.110181 -0.066065 -1.070768 1.438593 -0.190883 -0.381591 -0.490399 0.557505 1.233682 1.064371 0.289631 -0.312095 -0.464358 -1.245024 -0.153810 0.243642 0.560502 -0.917915 1.064561 0.310372 -1.209732 -0.837152 -1.041957 -0.045526 -0.434114 -0.958085 0.486650 -0.161178 -2.631863 1.580192 0.192070 -0.392674 0.076597 -0.726416 0.391631 -1.207564 -1.416489 0.360163 -0.317815 -0.653062 -0.260714 -0.555068 0.528231 0.345123 0.416175 -1.241111 -1.531233 0.912894 -0.085172 0.913863 0.880211 0.549016 1.172230 0.718637 -0.595246 -0.759366 -0.614776 0.956971 0.004863 -0.657308 -0.396802 -0.842097 0.739865 1.703196 -0.388934 0.028711 -0.965853 0.930966 -1.007754 -0.396862 0.509217 0.199271 -0.730188 0.130813 0.698584 -0.444906 -0.497757 -1.007359 -0.547089 -0.408662 -0.947613 0.437707 -1.016151 -0.069961 1.085360 -0.583634 -0.740651 0.610944 -0.246102 -0.203102 -0.028460 1.129226 1.480715 -1.021429 0.689710 -1.144551 0.935864 -1.613624 -1.048470 0.190750 -0.479295 -0.354581 -0.422919 0.025709 0.486871 0.113491 -0.238599 -0.231762 -0.006189 +PE-benchmarks/strongly-connected-components.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.730815 0.670793 -0.751524 -1.945322 2.298284 2.143117 0.663394 -1.723289 -1.219040 -0.511983 0.539846 -4.699750 -2.132222 1.201018 -0.914321 1.803675 3.345452 -1.244129 -0.909941 -0.969599 0.712710 2.656777 4.539117 3.888543 -2.603433 0.447867 0.181587 0.359960 -0.297729 -1.235022 -0.816386 -2.616813 0.894134 -1.401465 -0.361702 1.007956 -0.993213 -1.576954 2.781895 -3.351828 -0.114205 0.257293 -0.109189 -0.127032 -0.150228 1.265132 4.093321 2.092561 -0.098025 0.751423 2.201234 0.587162 1.108020 0.205819 -0.041127 -0.619902 1.272608 -0.548707 -0.418673 -1.809010 -0.466687 1.119632 -0.758160 2.807451 2.418147 0.401699 -2.072058 1.311964 1.673036 0.024927 -0.026706 2.651399 0.933716 2.439304 1.447590 -1.578422 0.589333 -3.119029 -0.024237 -3.334389 -2.657623 -0.305013 0.865405 0.281738 1.839520 0.101133 4.301866 -0.424597 0.027568 1.398027 3.139689 -2.789004 -0.689164 -0.367780 -0.925588 -0.142447 -0.597351 1.615973 0.352878 1.056863 -2.770867 -0.975263 0.296946 -0.136325 -1.620652 -1.125232 0.877397 -0.348094 -1.004942 -0.668152 -1.978858 1.442252 0.598375 -4.693046 -2.127014 -0.095070 0.839329 0.148499 -1.810579 -3.074146 0.518707 0.081790 -1.537501 -0.857783 -0.745485 1.326765 3.133325 0.864487 1.014933 1.346500 2.363920 5.074035 0.498357 -1.502477 -0.494993 -0.224426 -0.288962 0.655725 -0.203522 -0.231452 -0.019885 -2.332490 2.687266 2.371944 -1.461661 -0.448580 0.022864 -0.809545 -0.138143 6.765735 -1.427327 3.270281 2.157103 -2.605315 0.321174 -2.961493 -0.858316 -0.331413 0.923227 2.489136 -2.159440 -1.869720 3.200157 3.721077 1.309478 -2.887175 2.137755 2.279864 0.709853 -1.624455 1.095057 0.752875 1.530364 -1.526201 -0.230540 3.073099 5.643550 -0.869141 -0.775158 1.062313 1.948090 2.004279 -0.421967 -0.863646 -2.002382 -0.307765 2.885796 1.715521 1.297101 3.134963 -3.781899 1.373471 0.676095 -0.445006 2.707471 1.580375 -2.639101 0.034109 0.001621 2.060396 1.455752 -0.381044 0.261821 -1.015762 -2.197231 -0.105894 1.092423 0.448212 -1.961500 2.312392 0.652860 -2.139123 -0.613755 -0.886811 -0.335995 -0.095506 -1.433639 1.986698 -0.050370 -4.576079 3.186908 1.076077 -1.732600 -0.659321 -2.979723 2.660439 -1.998892 -1.713460 1.601620 -2.378729 -0.663480 0.466230 -0.406227 0.045708 1.472228 3.265166 -3.418434 -2.312454 3.358535 0.973272 3.491819 1.781042 0.179725 0.897540 -2.644395 -1.152625 -1.186065 -2.447990 1.007855 1.213453 -2.789877 0.299423 -1.367025 1.871595 2.408290 -1.837445 -1.328040 -1.076294 0.533324 -3.184205 0.425370 0.708490 1.862977 -3.159260 0.729732 1.360263 -0.797582 0.657023 -2.199663 -0.533860 -2.813718 -2.492250 0.982860 -1.055841 0.273512 1.608236 -1.646592 -0.009440 0.925412 -0.030528 0.058556 0.780467 2.311572 2.276339 -0.208572 -0.019558 -3.788382 1.939880 -3.299373 -3.825275 2.270349 -1.486630 -2.192150 -1.786613 -0.276001 2.304199 -0.025657 -1.534837 -2.226973 1.640831 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_S_buffer_size() = -0.039847 -0.091955 0.084967 -0.123571 0.043968 -0.157848 0.025863 -0.027115 -0.181315 -0.164620 0.076136 -0.200750 -0.073573 0.136109 -0.112437 0.003445 0.137869 0.064171 -0.009840 -0.129083 -0.023852 -0.083410 0.159434 0.187584 -0.116581 0.002966 -0.087886 0.126050 0.058393 0.090645 0.111294 -0.141699 0.008773 0.098810 0.050860 -0.071251 0.006652 0.120849 -0.053981 -0.190059 0.023367 0.121032 0.172472 0.020294 0.047440 0.158263 0.039261 0.096127 0.009814 0.187505 0.141082 0.072522 0.065237 0.021035 0.034553 -0.115496 0.131582 -0.254922 -0.079922 0.055750 -0.020358 -0.131882 -0.032803 0.120883 0.169206 -0.025024 -0.012222 -0.107343 -0.016689 0.099358 0.140791 0.035048 -0.043255 0.006140 0.015106 0.009388 0.076455 -0.227986 0.036293 -0.433694 -0.079257 0.030065 0.290108 0.241182 -0.101606 0.057225 0.137246 0.063916 -0.064652 0.089707 0.103323 0.039249 -0.070458 0.073001 -0.081957 0.079519 -0.068362 0.003839 -0.060286 0.266836 -0.073286 0.069244 0.052443 -0.071556 -0.037280 0.099347 -0.015104 0.059044 -0.295916 0.046889 -0.035322 0.123446 0.149829 -0.136355 0.064116 -0.114342 0.082393 0.014851 -0.089355 0.130036 0.053530 -0.089046 -0.055778 0.178179 -0.404295 0.045125 -0.057948 0.056225 -0.031972 0.049132 0.001629 0.027877 -0.114901 -0.132689 -0.003424 0.055681 0.014853 0.057933 -0.069281 -0.054260 0.058219 -0.090364 0.128162 -0.132075 -0.077178 -0.185323 -0.203287 -0.000343 0.010307 0.014412 -0.012675 0.144161 0.124500 -0.033758 -0.053582 -0.022420 0.091374 0.049146 0.078425 -0.034559 0.263815 -0.101760 0.068160 0.130653 0.078459 0.007433 -0.001145 0.080695 0.031927 0.075190 0.076789 0.016821 -0.083691 -0.065702 -0.027132 -0.027437 0.091183 0.155803 0.098203 -0.038855 0.076990 -0.019615 0.044838 0.041262 0.056705 0.065052 -0.015564 0.036435 0.029587 0.132434 -0.400945 0.140391 0.067416 0.130361 0.005069 -0.030160 -0.086905 -0.301353 -0.063408 -0.001907 0.145699 -0.022130 0.091126 0.118482 -0.112330 -0.005862 -0.027794 0.036692 -0.095452 0.053636 0.058002 -0.066216 -0.039293 -0.066384 -0.000996 0.093499 -0.078358 0.081408 0.166022 -0.271676 0.044894 -0.064791 -0.070043 -0.088376 0.040112 0.063460 -0.116224 -0.025939 -0.045052 -0.140977 -0.221167 -0.123357 -0.026034 -0.003686 -0.163017 0.008832 0.024418 0.092932 0.126999 -0.100495 0.060523 0.045117 -0.085253 0.052253 0.064923 0.011062 0.051788 0.081218 0.033197 -0.227418 0.033276 0.336298 -0.010801 0.014442 0.096142 0.043013 -0.084326 0.169347 0.149858 0.100964 -0.100152 0.052670 -0.129916 0.030339 0.238984 0.068478 -0.172845 0.037548 -0.154536 -0.007011 0.003133 -0.009997 0.140358 0.016457 0.063082 -0.030004 0.051925 -0.124553 0.082309 0.018212 -0.085707 0.032634 0.226973 0.109181 0.048284 0.161625 -0.124550 -0.010023 -0.106069 -0.060562 -0.076572 0.057073 -0.085934 0.041991 -0.156693 0.105268 0.085409 0.021852 -0.101041 0.171869 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.077233 0.736189 0.602211 -0.196757 1.241842 0.432768 0.319537 0.279150 -0.430424 -0.966837 -0.422858 -0.922595 -1.692463 1.083814 -0.028369 0.493887 1.541006 0.060205 0.127880 -0.589913 0.805384 -1.095128 1.654920 1.084116 -1.567754 0.406923 0.750026 0.756629 0.232641 1.127185 -0.485836 -0.953118 0.549612 -0.604989 0.829733 -0.698517 -0.041194 -0.367156 -0.344136 -2.154501 -0.390006 0.513841 -0.497445 0.256024 -0.027294 1.493806 1.841977 0.941236 -0.703927 0.876491 0.702556 -0.491332 0.590183 0.336352 -0.082032 0.151914 0.495184 0.095175 -0.930359 0.283803 -0.190888 -2.070804 -0.139162 0.862485 1.506854 -0.613660 -0.376494 0.862640 -0.400886 0.149267 -0.081028 0.890982 0.900731 0.248315 1.397068 -1.090988 -0.366470 -1.995155 -0.351022 -3.764068 -1.267105 -1.466999 0.768440 -0.068748 0.563368 -0.250593 2.018920 0.046665 0.341524 0.696069 1.862853 -1.397470 -0.375315 -1.209002 0.098209 0.317027 -0.892573 -0.369837 0.956935 -0.291188 -0.884443 -1.052795 0.977195 -0.254905 -0.745520 -0.678065 -0.874393 1.295836 -1.752797 -0.834389 -2.271751 -0.457260 -0.188673 -1.859952 0.338835 0.530222 0.964820 0.703267 0.249685 -0.892342 0.447817 0.966540 -0.268610 -0.781100 -0.119800 1.618494 0.706479 -0.225076 0.768237 0.836364 0.613156 1.306281 2.054548 -0.080487 -0.958527 0.625301 -0.609628 0.024020 -0.544571 -0.159637 0.741899 -1.256937 -0.062023 0.579620 -0.596251 -0.068732 0.495213 -0.831187 0.721187 2.356063 -0.216530 0.429735 0.013788 -1.308042 1.102158 -0.385928 -0.648954 0.518194 0.938461 1.011531 -1.358845 -0.780621 0.723025 1.419254 0.540254 -1.772931 -0.469942 -0.383964 0.515264 -0.319294 0.321318 0.884879 0.364016 -0.430570 -0.038415 0.224356 2.397833 -1.259239 -1.374529 0.655863 0.015431 -0.326845 -2.061823 -0.297613 -0.523732 -0.686750 0.062241 -0.009953 0.163949 1.413159 -2.311990 1.132991 -0.400384 -0.832761 1.019017 -0.186164 0.050569 -1.789996 0.172993 1.173468 1.133031 0.423363 0.005539 -0.570876 -1.329637 0.240101 0.233788 0.729764 -0.394324 1.030077 -0.399748 -0.811187 -0.920921 -0.630122 -0.125299 -0.242742 -0.171016 0.467564 0.599037 -2.858708 1.365670 -0.639287 -0.692572 0.452453 0.231632 1.063863 -1.099398 -1.637873 0.766100 -0.571791 -1.359819 -0.823618 -0.263345 0.534991 0.207569 -0.776336 -0.456313 -1.880587 1.172550 -0.151535 0.596575 0.801547 0.595442 2.049655 0.566453 -1.422071 -0.868414 -0.470120 0.210743 -0.882352 -0.061639 -0.761823 -0.331427 0.962281 1.850995 0.201964 0.384445 -0.689226 1.204485 -1.836765 -0.811935 1.144385 1.018636 -0.369786 0.990057 1.159775 -0.766995 -0.832696 -1.082917 -0.070047 -0.217769 -0.870149 0.183307 -1.647715 -0.383919 1.246999 -0.388337 -0.646992 0.767968 -0.100749 -0.189121 -1.147364 1.766839 2.488604 -1.786799 0.374922 -0.995135 0.912451 -1.679469 -0.954453 -0.022986 0.679718 0.000100 -0.021295 0.783466 0.272155 0.158723 -1.077494 -0.633348 -0.754962 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -0.914214 6.192893 5.382756 -6.893402 8.371957 12.699046 1.160478 -3.751096 -4.992025 -1.804610 -0.585228 -13.914290 -9.178549 7.808822 -2.874432 0.773467 11.148721 -2.592202 -3.171902 -0.576145 2.460761 6.885944 11.770460 12.355800 -10.050081 2.986424 0.980333 1.747490 -1.908527 7.395227 -4.475167 -13.598625 -0.479963 2.295569 1.948267 0.951143 -4.734857 -5.205551 3.236833 -14.889545 -1.196305 8.223010 -3.883025 -0.781459 3.390362 -0.596748 16.604091 5.128761 -0.567992 1.150441 4.344761 4.347764 3.710246 -0.959203 4.217544 -0.594798 8.832208 -1.045282 -1.686305 -1.642518 -2.196055 2.916445 -4.041776 10.100565 8.897735 1.918840 -6.079277 -2.471809 1.932388 -0.254252 -2.810594 8.399908 4.707345 10.669055 3.880168 1.641894 3.282103 -7.244969 4.331026 -5.252419 -8.672916 -2.667045 3.949655 9.111535 2.864681 -7.811198 14.425110 -3.280232 0.221874 4.345428 14.222370 -6.515639 -0.685775 -3.467689 -6.772785 -0.198848 -1.110314 3.064202 -4.900786 -0.561630 -8.644203 -6.748930 0.668006 -0.878221 -6.033272 3.010318 0.002105 4.607336 -4.939135 -0.316659 -5.450700 4.746494 1.771772 -14.583292 -11.917020 -2.346781 -3.385983 1.758674 -6.543716 -8.807277 3.707642 2.222504 -5.800506 -2.076092 -6.614075 8.970984 8.823544 -0.164918 0.218365 2.213556 7.975442 9.669531 0.037797 -4.085874 0.797473 -0.373696 1.279042 -0.164134 -1.852858 2.326082 -3.639043 -3.899447 0.772357 6.483699 -4.673437 1.708292 -9.378231 -5.164888 -0.020752 30.477627 -6.668547 8.933184 2.598641 -10.480393 6.395344 -1.627804 -5.611557 -1.335544 3.850994 11.150687 -11.634903 -5.349670 10.341552 13.435481 3.401110 -6.809642 8.025757 4.666824 -2.228373 -5.756300 8.453539 -0.453262 1.860472 -4.441908 -2.793552 7.341992 19.399100 -2.773291 -14.116079 2.133158 4.990138 5.926935 2.086731 0.317015 -3.071101 -0.576953 7.606185 0.565884 7.684130 10.314995 -17.817906 7.895411 2.856180 -7.196373 11.199153 0.146170 -5.031507 3.316679 0.952931 8.913755 7.249388 2.252340 -2.252457 -5.323996 -9.318630 -0.663719 3.293255 3.122556 -8.766614 9.301689 2.356099 -9.488856 -4.111024 -8.561411 -3.463674 -2.912222 -11.542081 4.345751 -0.570326 -16.004070 12.342114 6.519005 -1.105499 -2.759233 -7.584933 4.566791 -6.750212 -9.364966 3.112192 -5.550631 -5.346387 2.570650 -4.895367 1.660002 5.767206 9.002617 -12.786849 -11.071235 10.224359 2.553745 11.783416 6.205125 2.216023 3.587024 4.360809 -3.696022 -3.005084 -11.194696 11.980797 4.601307 -6.599061 -0.422033 -7.126253 5.208473 8.733355 -4.353934 -4.989502 -11.108464 4.777662 -3.811241 2.165528 2.131516 -3.444411 -8.507599 -1.979495 4.580130 -0.210469 -0.074207 -8.798290 -2.146753 -9.588471 -6.660340 2.767359 -4.416859 -0.566050 6.194592 -6.316670 -5.187109 2.250028 -0.327865 -3.616743 3.542902 8.504052 2.967831 -2.978433 6.836188 -10.984678 8.788607 -10.811715 -9.642513 3.031612 -8.386357 -5.480974 -6.765661 -3.061192 4.482472 1.265925 -0.470039 -3.501788 4.247508 +PE-benchmarks/strongly-connected-components.cpp__int** std::copy(int**, int**, int**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/strongly-connected-components.cpp__int** std::copy_backward(int**, int**, int**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.177492 0.833652 0.772135 -0.461977 1.866403 0.747490 0.770636 0.239822 -0.647212 -1.602141 -0.301881 -1.171501 -2.588822 1.413977 -0.435633 0.476430 2.166514 -0.003527 0.519645 -1.058870 1.280787 -1.607442 2.847475 2.191343 -2.751831 0.502393 0.677290 1.109714 0.253531 1.790560 0.037502 -1.669024 0.989927 -0.744439 1.598362 -1.079244 -0.311730 -0.400282 -0.620179 -3.310552 -0.754550 1.125626 -0.660074 0.712701 0.351986 2.159339 2.746039 1.413148 -1.235228 1.818414 1.110318 -0.519133 1.280070 0.505844 -0.038686 -0.152528 0.349977 -0.052341 -1.150234 0.522538 -0.834266 -2.908147 0.127499 1.566114 2.574214 -0.846938 -0.436822 0.569270 -0.835536 0.505876 0.196291 1.820654 1.314982 0.291562 2.484730 -1.523111 -0.508835 -3.509690 -0.384192 -5.613807 -2.005080 -2.150100 1.391078 0.495948 1.138136 -0.681797 3.090043 0.404672 0.466750 1.387505 2.405402 -1.674647 -0.270357 -1.361816 -0.287158 0.169130 -1.148764 -0.112927 1.032000 -0.211624 -1.543175 -1.347536 1.179023 -0.411027 -1.004523 -1.255144 -1.352151 1.823216 -2.569012 -1.058046 -3.186616 -0.328127 -0.366749 -3.050594 0.495704 0.029957 1.337037 1.002221 0.257214 -0.670901 0.744168 1.306285 -0.336718 -1.073396 -0.500437 2.573708 1.282933 -0.020230 0.890076 1.275805 0.139071 1.825252 2.988536 0.175687 -1.301874 0.820939 -0.746710 0.363424 -0.720327 0.148502 1.615405 -1.664277 -0.336273 0.470700 -0.662265 -0.467445 0.530686 -1.370190 1.091835 4.161733 -0.549950 1.222402 0.583534 -1.900427 1.628904 -0.229767 -0.167087 1.288170 1.921498 1.154878 -2.182600 -1.196757 0.991655 2.074152 0.569673 -2.616546 -0.769397 -0.103720 0.765895 -0.627261 0.498930 0.842810 0.510280 -0.995433 0.248711 0.201937 3.288115 -1.631710 -1.796797 0.643927 0.585407 -0.556837 -2.530768 -0.385048 -1.014509 -0.809283 0.263664 0.020172 0.076218 1.938555 -3.623270 1.565633 -0.693863 -0.558396 1.523890 -0.087499 -0.136300 -3.054497 0.421663 1.277830 1.345157 0.648626 -0.038224 -0.460875 -2.037565 0.706702 0.144207 1.189792 -1.026140 1.901430 -0.824052 -1.332622 -1.520748 -1.361074 -0.281949 -0.400791 -0.577452 0.680338 1.163821 -3.938702 1.535956 -0.804829 -1.501736 0.624627 0.409327 1.764211 -1.421258 -2.424135 0.971367 -1.326583 -2.360749 -1.652953 -0.489452 0.504659 0.306812 -1.129262 -1.102159 -2.615995 2.110376 -0.534653 1.262242 1.390877 0.786529 3.432751 0.953738 -2.340992 -1.517096 -1.128425 0.750773 -1.167532 -0.505072 -1.173316 -0.737463 1.179088 2.939532 0.328111 0.452546 -0.772537 2.349803 -2.561429 -1.039597 1.772935 1.246335 -0.229750 1.640823 1.705470 -1.065337 -1.129111 -1.574079 0.184798 -0.098417 -1.136584 0.919298 -2.367152 -0.175207 1.100755 -0.165449 -0.997616 0.924932 0.001665 0.037153 -1.463706 2.713946 3.501262 -2.479811 0.394149 -1.333556 1.203544 -2.415784 -1.158067 -0.468832 0.705981 0.301659 0.241987 0.680323 0.851847 0.887135 -1.670604 -0.905311 -0.654704 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/strongly-connected-components.cpp__int** std::__miter_base(int**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_wrap(int** const&, int**) = -0.021026 0.229423 0.143580 0.026343 0.253999 0.036877 0.139132 0.064413 -0.154146 -0.272016 -0.112143 -0.274298 -0.407604 0.336218 0.019496 0.196591 0.560619 0.190063 0.070254 -0.169906 0.142008 -0.467798 0.541630 0.524271 -0.415006 0.168068 0.206609 0.153091 0.000000 0.375869 -0.202960 -0.296722 0.266132 -0.263466 0.205522 -0.332598 -0.065749 -0.055440 -0.037340 -0.794364 -0.067845 0.116022 0.104225 0.001183 -0.015652 0.331609 0.580898 0.279575 -0.089073 0.333787 0.110393 -0.147710 0.229184 0.122296 0.125171 0.177097 0.174500 -0.088139 -0.308130 0.126289 -0.050886 -0.700611 -0.047218 0.275307 0.464100 -0.113898 -0.081196 0.146598 -0.179552 0.029080 0.001329 0.224828 0.179276 0.067055 0.305662 -0.443972 0.017777 -0.598917 -0.184541 -1.204490 -0.433937 -0.401424 0.301305 0.036218 0.280059 0.048464 0.545242 -0.012266 0.189446 0.047505 0.576857 -0.522332 -0.165666 -0.173945 0.074505 0.154400 -0.250828 -0.063970 0.283188 -0.181758 -0.323222 -0.372473 0.528961 0.044623 -0.242398 -0.154769 -0.136957 0.344144 -0.579007 -0.369070 -0.675838 -0.301042 -0.132315 -0.526052 0.336874 0.118510 0.261122 0.317762 -0.060845 -0.407062 0.145190 0.276923 -0.023420 -0.327765 -0.186244 0.443632 0.082450 -0.064079 0.258289 0.164323 0.142063 0.511622 0.577101 -0.060364 -0.144369 0.191016 -0.271159 0.012000 -0.171323 -0.210630 0.132581 -0.436577 -0.040820 0.131950 -0.272899 0.025669 0.207815 -0.117615 0.206952 0.590272 -0.037864 0.192442 0.099418 -0.445512 0.331389 -0.204195 -0.180870 0.138591 0.401055 0.277048 -0.394949 -0.242700 0.080251 0.479155 0.215089 -0.408361 -0.292924 -0.187983 0.158474 0.013375 0.150675 0.143282 0.165406 -0.257663 -0.001529 0.077637 0.747994 -0.362693 -0.191731 0.108883 -0.133918 -0.114938 -0.728828 -0.074654 -0.273697 -0.107701 -0.195164 -0.026569 -0.005693 0.422056 -0.680916 0.407936 -0.329729 -0.256088 0.357264 -0.006861 -0.087510 -0.621210 0.114086 0.338393 0.435591 0.094532 0.089955 -0.078246 -0.424235 -0.060009 -0.024029 0.216105 -0.200758 0.355629 -0.064471 -0.363999 -0.262036 -0.133086 0.098844 -0.261911 -0.005939 0.175616 0.391982 -0.770444 0.388855 -0.119204 -0.278643 0.214109 0.102103 0.217649 -0.397861 -0.495405 0.182544 -0.159628 -0.289342 -0.184493 -0.124864 0.180174 -0.041944 -0.360903 -0.059231 -0.391131 0.341919 -0.019727 0.185225 0.279645 0.120691 0.554125 0.240180 -0.430143 -0.184782 0.006947 -0.151980 -0.455270 -0.027591 -0.206511 -0.208472 0.328361 0.701850 0.148089 0.089489 -0.058120 0.427903 -0.514781 -0.231077 0.390332 0.275691 -0.035687 0.246791 0.374775 -0.342687 -0.236085 -0.257465 -0.058228 0.069695 -0.262429 0.140051 -0.517620 -0.054271 0.319252 -0.145268 -0.161875 0.260374 -0.043619 -0.009149 -0.256590 0.489410 0.571330 -0.466596 0.121280 -0.256957 0.137005 -0.515404 -0.217183 -0.051278 0.398899 -0.151924 -0.008349 0.223495 0.104053 0.045889 -0.277740 -0.173822 -0.228759 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_base(int**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -0.666518 -0.159080 -0.215766 -1.341699 1.288899 0.664068 0.536984 -0.511740 -1.359700 -1.122059 0.250091 -2.365016 -1.598305 1.526054 -0.496943 1.225113 2.809199 0.107712 -0.240407 -0.962181 1.124024 -0.353110 2.939246 3.088305 -2.088301 0.198759 0.475170 1.046061 0.105318 -0.078235 0.335471 -1.867676 0.550758 -1.389177 0.595896 -0.765185 -0.466314 0.193149 1.242762 -3.466996 -0.259038 0.627585 -0.020770 0.121228 0.035090 0.974582 2.252398 1.621490 -0.688798 1.568497 1.596623 0.045493 0.913317 0.173169 0.018097 0.037568 -0.097616 -0.238099 -0.455457 -0.125581 -0.432415 -0.754362 0.176091 1.941608 2.353522 -0.306459 -1.134708 0.733268 0.588235 0.366615 0.369323 1.753208 0.333516 0.599479 1.560815 -2.440515 -0.308674 -4.379039 0.315138 -4.574395 -2.026951 -0.612795 1.550186 0.503083 1.034521 -0.004045 3.227847 -0.296759 -0.144820 1.892507 2.303295 -1.636966 -0.579545 -0.850942 -0.744806 0.405982 -0.820224 0.348494 0.786277 0.866469 -1.836618 -1.218530 0.776298 -0.108439 -1.233974 -1.512344 -0.078112 1.162816 -1.645690 -1.233640 -2.058526 1.176529 0.175556 -3.228170 -0.399553 -0.693236 0.862174 0.574901 -1.236489 -1.615864 0.582763 0.346546 -0.776520 -0.643506 -0.561508 1.496543 1.542803 0.221677 0.534969 1.195750 0.813845 3.051036 1.105586 -1.075796 -0.501860 0.810571 -0.626233 0.440971 -1.060726 -0.448557 1.054526 -1.867377 0.709794 0.798196 -1.229969 -0.863462 1.096632 -0.774601 0.216471 5.726770 -0.549450 2.034170 1.668249 -1.691649 1.190696 -1.081128 -0.026821 0.712124 1.572775 1.232807 -2.261790 -1.463647 1.521721 2.835856 1.069554 -2.145477 -0.637951 0.797947 0.631956 -0.491789 0.873136 0.470181 0.482527 -0.925022 -0.041603 1.394234 3.700756 -0.859414 -0.463700 0.274609 1.891231 0.032975 -2.130488 -0.388233 -2.206574 -0.391465 1.103192 0.744360 0.830703 2.342581 -3.926915 1.468321 -0.137094 0.166808 1.347491 0.916941 -1.399502 -3.093021 -0.033345 1.116636 1.795516 -0.275398 0.743395 -0.047252 -2.124866 0.080274 0.558065 0.741183 -1.491820 2.040399 -0.407960 -1.212300 -0.660911 -0.039122 -0.855812 -0.656956 -0.503569 1.411510 1.009843 -3.267358 1.814925 -0.042181 -1.262676 0.308355 -0.864337 2.269269 -1.868858 -1.920491 1.336256 -1.010298 -1.087302 -0.481345 -0.550736 0.747482 0.371783 0.341352 -1.459704 -1.974057 2.214982 -0.087444 2.256144 1.295728 -0.275030 1.842614 -0.995973 -1.365234 -1.069740 -1.385295 0.361627 -0.151604 -1.178767 -1.082032 -0.733727 1.396575 2.319085 -0.203803 -0.834043 -0.166129 1.807957 -2.359245 -0.194598 0.883617 1.026603 -1.126714 1.158559 1.249217 -1.685325 0.075641 -1.889547 0.334454 -0.930375 -1.289775 1.260713 -1.315127 0.287161 0.740343 -0.669441 -0.066666 1.062770 0.685138 0.170229 0.039642 2.440214 2.322452 -0.736418 -0.146984 -2.424773 1.067447 -2.454523 -1.987130 0.132500 0.374941 -1.094110 -0.511870 0.072710 1.509019 0.639732 -0.970360 -1.424905 0.564664 +PE-benchmarks/strongly-connected-components.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.052319 0.376944 0.273296 -0.139008 0.406972 0.181769 0.159607 -0.012123 -0.212057 -0.362548 -0.148884 -0.327452 -0.539844 0.491512 -0.050788 0.209208 0.830855 0.182783 0.055348 -0.310817 0.349587 -0.542469 0.816179 0.790739 -0.729020 0.194675 0.515420 0.278514 0.182582 0.447447 -0.289821 -0.390958 0.321425 -0.413552 0.296740 -0.496550 -0.064027 -0.173056 0.018988 -1.133028 -0.094025 -0.084428 -0.112884 0.012246 -0.044683 0.517786 0.896206 0.433182 -0.273347 0.379408 0.343207 -0.037969 0.166704 0.131970 0.104423 0.211366 0.300597 0.102275 -0.269711 0.111777 -0.038701 -0.819852 0.009011 0.522992 0.712271 -0.126620 -0.092437 0.281899 -0.132815 0.018805 -0.038359 0.345054 0.257074 0.221965 0.481464 -0.871986 -0.013644 -1.219117 -0.219396 -1.762420 -0.588245 -0.590702 0.288594 -0.238510 0.392657 0.162515 0.814750 0.034474 0.285423 0.243251 0.850365 -0.722125 -0.184773 -0.324551 -0.079460 0.233339 -0.351158 0.031889 0.312300 -0.237022 -0.460331 -0.640401 0.640308 0.086815 -0.382762 -0.325008 -0.178350 0.493174 -0.765421 -0.459097 -0.876476 -0.329795 -0.210498 -0.867448 0.267424 -0.015315 0.707131 0.301790 -0.052808 -0.663636 0.121343 0.527024 -0.074621 -0.482947 -0.058551 0.595091 0.321104 -0.050345 0.283934 0.125503 0.257266 0.770597 0.883014 -0.130409 -0.239163 0.216166 -0.429483 -0.062546 -0.347539 -0.175166 0.341656 -0.561365 0.025789 0.349539 -0.368439 -0.086425 0.668624 -0.300856 0.337225 1.387202 -0.060863 0.308667 0.156155 -0.694433 0.317571 -0.274186 -0.297308 0.271730 0.552406 0.440995 -0.824803 -0.377321 0.153438 0.709415 0.307123 -0.727880 -0.436783 -0.237258 0.071988 -0.038842 0.161492 0.141799 0.097369 -0.334180 -0.058895 0.258864 1.097302 -0.500279 -0.412135 0.130615 -0.019441 -0.212918 -0.985279 -0.106710 -0.373512 -0.080356 -0.053848 -0.049322 0.159165 0.647480 -1.288600 0.528554 -0.399618 -0.352371 0.415090 0.090964 -0.165038 -0.802353 0.281693 0.544187 0.576286 0.103136 0.139600 -0.086960 -0.634781 -0.072395 0.036519 0.320726 -0.340608 0.499486 0.045316 -0.564836 -0.442393 -0.095887 0.090113 -0.321911 -0.017962 0.262165 0.199546 -1.352938 0.664861 -0.192933 -0.346965 0.288915 -0.065371 0.426112 -0.643825 -0.755409 0.328059 -0.119835 -0.273651 -0.258982 -0.167680 0.370668 0.004097 -0.233696 -0.273774 -0.734129 0.396068 -0.078306 0.293907 0.406178 0.245877 0.887824 -0.067072 -0.472518 -0.500225 -0.027262 -0.010762 -0.367327 -0.202763 -0.393645 -0.284940 0.478721 1.005535 0.041093 0.083233 -0.066153 0.599301 -0.887534 -0.294119 0.441434 0.683791 -0.206498 0.313157 0.458196 -0.483794 -0.349587 -0.379818 -0.131365 0.059318 -0.463211 0.246104 -0.666810 -0.012746 0.487760 -0.144298 -0.196919 0.428139 -0.055675 0.104941 -0.260107 0.604845 1.099536 -0.702933 0.037444 -0.457496 0.274503 -0.827546 -0.496568 0.015601 0.340721 -0.126295 -0.032354 0.176081 0.265032 0.063552 -0.283409 -0.158775 -0.258296 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -0.764512 -0.138784 -0.165633 -1.663793 1.492798 1.180988 0.638658 -0.919964 -1.542606 -1.098009 0.397744 -2.982215 -1.783715 1.842072 -0.661659 1.516075 3.158839 -0.029311 -0.480221 -1.020704 1.156347 0.215935 3.435881 3.538160 -2.365733 0.246619 0.332591 0.859258 0.166342 -0.081707 0.301680 -2.312100 0.766264 -1.306879 0.634883 -0.578590 -0.648991 0.093345 1.652559 -3.856937 -0.239558 0.916874 0.090908 0.051988 0.172860 0.996357 2.663819 1.854410 -0.452675 1.613554 1.694418 0.266227 1.074847 0.159576 0.256836 -0.041582 0.221975 -0.640299 -0.480820 -0.286010 -0.507809 -0.343467 -0.048404 2.326744 2.664851 -0.257705 -1.354439 0.707735 0.873311 0.407764 0.362908 2.048204 0.459731 0.994416 1.471853 -2.536157 -0.125328 -4.402136 0.415431 -4.653056 -2.308066 -0.479639 1.628578 0.844846 1.217446 -0.468448 3.674496 -0.281405 -0.352657 1.722294 2.758724 -1.945997 -0.607121 -0.811285 -0.699051 0.287102 -0.890954 0.611344 0.737967 0.794484 -2.172674 -1.225884 0.760302 -0.107018 -1.428148 -1.400543 0.079093 1.318345 -1.627332 -1.269362 -1.936925 1.497314 0.164542 -3.774991 -0.442092 -0.882290 0.507626 0.552084 -1.511777 -1.941786 0.701592 0.341571 -1.002978 -0.790177 -1.061754 1.816359 2.004338 0.330363 0.447245 1.448041 1.070272 3.599374 0.813801 -1.309072 -0.355429 0.700886 -0.475648 0.624800 -1.094615 -0.422705 0.968062 -2.020864 0.674518 1.077602 -1.361747 -0.597314 0.774514 -0.733513 0.102087 6.667395 -0.832930 2.480611 1.942509 -2.030635 1.279553 -1.290010 -0.087275 0.574443 1.626216 1.491715 -2.745015 -1.718518 1.957522 3.333829 1.208564 -2.371214 -0.222593 0.997682 0.490509 -0.892336 1.126287 0.462403 0.571296 -1.132063 -0.130323 1.666382 4.366830 -1.007693 -0.484164 0.288550 2.104753 0.381705 -1.891587 -0.483764 -2.351155 -0.324412 1.319980 0.982573 1.118141 2.678698 -4.205178 1.762437 0.000953 -0.037860 1.875136 0.998284 -1.744486 -2.931578 -0.108563 1.336275 1.950399 -0.413831 0.848004 -0.093229 -2.472032 0.063192 0.555195 0.710334 -1.742899 2.176011 -0.183988 -1.380670 -0.664510 -0.137923 -0.901823 -0.842095 -0.842191 1.667371 1.331984 -3.642902 2.169979 0.251169 -1.363746 0.229116 -1.233446 2.585200 -2.077567 -1.971406 1.388970 -1.238106 -1.177257 -0.370542 -0.660111 0.765372 0.298984 0.973695 -1.977577 -2.147875 2.575673 -0.066597 2.707263 1.488487 -0.269166 1.714923 -1.124681 -1.443633 -1.043784 -2.090259 0.606977 0.202006 -1.524450 -0.753909 -0.909226 1.635244 2.462619 -0.370324 -1.196171 -0.386714 1.776959 -2.717761 0.084349 0.924259 1.039247 -1.536304 0.987465 1.353463 -1.690559 0.236625 -2.054661 0.127793 -1.372321 -1.515699 1.456864 -1.221373 0.416945 0.677721 -0.814672 -0.137191 1.142146 0.696560 -0.022021 0.335059 2.682592 2.292056 -0.638993 -0.127170 -2.877075 1.406830 -2.731367 -2.367901 0.394018 -0.000190 -1.455610 -0.759373 -0.075274 1.781994 0.757090 -1.005019 -1.664231 0.827865 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::deque() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_base() = 0.005082 0.380833 0.596442 -0.581916 1.257868 0.388255 0.378473 0.045049 -0.356303 -0.761964 -0.200337 -0.324188 -1.177589 0.477920 -0.475743 0.040149 0.698194 -0.235790 0.383800 -0.671180 0.682906 -0.643818 1.329496 0.728110 -1.550335 0.253194 0.034619 0.776773 0.136076 1.396673 0.155786 -0.801205 0.192421 0.120128 1.074366 -0.478957 -0.150921 -0.093873 -0.613006 -1.349325 -0.417454 0.770256 -0.301903 0.671276 0.419966 1.041880 1.184975 0.581341 -0.738362 0.960579 0.720889 0.094445 0.770581 0.281501 -0.100639 -0.151774 0.574994 -0.336470 -0.421627 0.275434 -0.636330 -1.169032 0.324101 0.731555 1.247856 -0.493693 -0.135508 -0.011097 -0.470930 0.365657 0.314764 1.039386 0.360228 0.063678 1.263932 -0.348894 0.004249 -1.486196 0.068666 -2.296001 -0.818508 -1.176285 0.491919 0.702154 0.477917 -0.398147 1.526604 0.307134 0.199955 0.608261 0.693823 -0.355754 0.169818 -0.646400 -0.463886 -0.210783 -0.330668 -0.271412 0.078555 0.381366 -0.525697 -0.290272 0.279620 -0.430354 -0.355439 -0.387564 -0.920631 0.807675 -1.330233 -0.239821 -1.299224 0.341333 -0.227502 -1.327288 0.031313 -0.363717 0.512139 0.062160 0.526340 0.219753 0.367106 0.698683 -0.308647 -0.070726 -0.662848 1.258313 0.775460 -0.056921 0.196415 0.509488 -0.391938 0.406554 1.247141 0.208738 -0.874489 0.449584 -0.032702 0.117742 -0.277373 0.531867 0.789290 -0.612398 -0.232418 0.026193 0.029080 -0.249136 -0.352824 -0.913293 0.631021 1.910741 -0.474261 0.552596 0.170264 -0.731584 0.624433 0.451815 0.265789 0.857512 0.822522 0.288139 -0.724099 -0.590770 0.454801 0.608763 0.043025 -1.076264 -0.202509 0.073647 0.214244 -0.111639 0.027664 0.315135 -0.116295 -0.397219 0.179681 -0.522787 1.381294 -0.317541 -0.985062 0.376797 0.474936 -0.650655 -0.550013 -0.218016 -0.360577 -0.434336 0.200757 -0.074411 -0.005366 0.759128 -1.941560 0.646020 -0.102809 -0.103766 0.708629 -0.387601 0.368400 -1.396146 -0.022671 0.325773 0.447664 0.122527 -0.126724 -0.146295 -0.801591 0.746194 -0.045482 0.652438 -0.576112 0.781766 -0.321280 -0.687395 -0.657835 -0.981077 -0.235479 0.251144 -0.545359 0.099518 0.364876 -1.904318 0.395272 -0.483004 -0.627590 0.400436 0.413012 0.819803 -0.266726 -0.845878 0.326876 -0.626466 -1.207712 -1.017869 -0.118941 0.159204 -0.019857 -0.294380 -0.805372 -1.135545 0.820822 -0.535428 0.410892 0.670652 0.427692 1.506128 0.584477 -1.019731 -0.773857 -0.590733 0.564215 -0.356455 -0.031628 -0.087158 -0.332898 0.306618 1.231416 0.237237 0.415427 -0.324279 1.322585 -0.754787 -0.409718 0.812260 -0.005293 -0.045365 0.903387 0.758278 -0.184762 -0.704822 -0.725484 0.304239 0.037581 -0.230840 0.673722 -0.990185 -0.055725 0.308645 0.187761 -0.805710 0.358860 -0.036457 -0.074516 -0.821534 1.501602 1.455506 -0.883083 0.392191 -0.296006 0.499512 -0.926080 -0.126553 -0.615378 -0.119272 0.426678 0.437304 -0.007303 0.644409 0.594930 -0.461013 -0.169753 -0.331830 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.053172 0.402366 0.318813 -0.083756 0.461611 0.168547 0.216516 0.156755 -0.260168 -0.522489 -0.154892 -0.471152 -0.796841 0.606238 -0.064596 0.137441 1.010996 0.264104 0.094311 -0.328197 0.306898 -0.572391 0.977272 0.935371 -0.851524 0.205409 0.446001 0.328297 0.128549 0.532456 -0.202066 -0.606364 0.427920 -0.321060 0.382018 -0.525853 -0.054196 -0.217980 -0.183473 -1.362770 -0.125710 0.148300 -0.117936 0.013624 0.002782 0.674775 1.057275 0.522250 -0.298068 0.476791 0.340636 -0.077619 0.237753 0.165158 0.085567 0.100360 0.187999 -0.024661 -0.466335 0.171409 -0.067537 -1.100290 -0.126471 0.584695 0.857975 -0.158446 -0.097140 0.212203 -0.227548 0.092209 -0.012521 0.377715 0.463325 0.225593 0.620441 -0.671719 -0.147701 -1.257742 -0.258149 -2.184491 -0.727512 -0.745480 0.603973 -0.049083 0.316248 -0.021479 0.954278 0.059822 0.350627 0.376444 1.055629 -0.763809 -0.288928 -0.447374 -0.009174 0.349840 -0.479149 0.017692 0.409049 -0.256961 -0.585727 -0.659428 0.652008 0.013088 -0.419754 -0.306247 -0.247284 0.634799 -0.964868 -0.430902 -1.160278 -0.355310 -0.071551 -1.044045 0.248211 0.113951 0.672224 0.481437 -0.080289 -0.556882 0.184971 0.495350 -0.084585 -0.460222 -0.198136 0.786195 0.263826 -0.063899 0.394439 0.298239 0.310125 0.805669 1.008905 -0.114445 -0.287735 0.281166 -0.458771 -0.034811 -0.388568 -0.210340 0.398181 -0.663614 0.069500 0.295291 -0.467393 -0.194353 0.369836 -0.333021 0.435793 1.412708 -0.065394 0.375480 0.176407 -0.777853 0.456814 -0.317844 -0.328631 0.268215 0.678108 0.505823 -0.698965 -0.419243 0.184801 0.856781 0.378334 -0.806664 -0.325073 -0.251792 0.175741 -0.142564 0.252673 0.258753 0.195752 -0.399473 -0.040573 0.345872 1.198839 -0.568767 -0.593571 0.128806 0.044036 -0.098085 -1.005204 -0.076478 -0.277156 -0.122783 0.004264 -0.039564 0.142240 0.785323 -1.408718 0.657984 -0.340973 -0.332670 0.474667 0.066278 -0.201549 -0.930962 0.317572 0.654176 0.720567 0.233550 0.095079 -0.127424 -0.749958 -0.084638 0.078811 0.417635 -0.332497 0.588856 -0.059584 -0.574739 -0.558515 -0.309072 0.068874 -0.308263 -0.104193 0.299577 0.415531 -1.578479 0.779959 -0.262182 -0.473462 0.192833 -0.032351 0.476012 -0.793607 -0.942723 0.321558 -0.276408 -0.643198 -0.366096 -0.218744 0.370518 0.031794 -0.319700 -0.215023 -0.834314 0.669562 -0.015469 0.388321 0.470856 0.268010 1.135565 0.182369 -0.646614 -0.462248 -0.184165 0.139325 -0.588107 -0.208047 -0.301359 -0.325461 0.524433 1.196003 0.052893 0.030004 -0.182136 0.731793 -0.961579 -0.429618 0.598805 0.636671 -0.097626 0.501245 0.615727 -0.631984 -0.422534 -0.529324 -0.097468 0.080202 -0.558014 0.224881 -0.872918 -0.021413 0.586572 -0.166836 -0.315182 0.445383 -0.076013 0.014583 -0.356826 0.788124 1.249552 -0.905703 0.223032 -0.568042 0.370604 -0.988759 -0.581315 -0.015061 0.353560 -0.106370 -0.000394 0.210854 0.214578 0.082202 -0.435426 -0.333680 -0.223769 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -0.069960 4.663618 5.555731 -5.041240 6.985055 7.937218 0.816766 -1.300833 -3.101436 -1.681621 -1.364074 -7.970812 -7.562761 5.186948 -2.000625 -0.111728 6.875972 -2.165308 -1.551156 -1.282320 2.538384 2.481314 7.715852 6.831123 -8.430407 2.396137 0.806671 3.288056 0.017321 7.502108 -3.769377 -7.677532 -1.037483 2.509684 3.431223 0.059505 -2.520865 -3.801957 -0.645283 -10.395759 -1.282004 6.188106 -2.954165 0.986320 2.791216 2.705610 11.319228 3.630901 -2.001275 1.281415 3.805035 1.716809 3.175239 -0.346900 2.115645 -0.501922 8.040856 0.136558 -1.978295 -0.231588 -1.533089 -1.219132 -1.780321 6.457746 6.992583 -0.093766 -3.463066 -1.367028 0.859622 0.229940 -1.516912 5.977979 3.310421 6.238007 4.452508 1.803773 2.707082 -4.800264 2.914358 -6.216134 -6.118815 -4.097560 3.174791 5.736720 1.357253 -5.963071 10.415607 -1.405802 0.593879 2.235076 9.129655 -3.884128 -0.065074 -3.918951 -4.461704 -0.128921 -1.382820 0.291080 -1.837121 0.097262 -5.173679 -3.684458 1.065641 -1.592614 -4.197689 2.910845 -2.225243 4.344505 -4.841956 -0.111703 -5.405244 2.625555 1.226096 -9.938411 -6.747505 -1.412540 -1.205876 0.676033 -1.617805 -3.910707 2.173976 2.675991 -4.002178 -0.588338 -5.708500 7.941531 6.274567 -1.010795 0.722373 1.948166 4.385101 4.354499 2.390301 -1.846153 -1.788328 0.827738 0.269002 -0.643585 -1.616177 2.532620 -0.750542 -2.868048 -0.459498 3.246318 -2.119394 1.700728 -6.632318 -4.366645 1.138933 19.732180 -4.469627 4.868826 0.321047 -6.433336 5.510401 0.957738 -3.545681 0.763699 2.797335 6.853110 -7.923143 -3.609198 6.225336 8.094920 1.628111 -5.965777 4.985482 2.156649 -1.493540 -3.619147 4.867759 0.644084 0.606532 -2.040238 -1.524537 2.595037 12.877632 -2.099155 -12.461089 2.038955 2.211583 1.766360 0.122274 -0.000805 -0.628739 -1.562548 3.562961 -0.091757 4.821656 6.900398 -13.516484 5.446968 2.372411 -5.540481 8.742258 -2.028962 -1.189058 0.077437 0.470217 5.725049 5.066752 1.787676 -3.187867 -3.755312 -6.453145 1.014181 1.970485 2.751577 -5.552291 6.051677 0.986789 -5.900097 -3.419331 -7.811287 -2.332410 -0.179839 -8.051585 1.904701 -1.311791 -13.040525 7.754331 2.354968 -1.002481 -0.824366 -3.509033 2.620477 -3.958949 -6.263833 1.603070 -3.101705 -5.529720 -1.135384 -2.824806 1.412747 3.110674 4.345712 -8.874681 -8.966123 6.661152 -0.078310 6.431321 4.288853 2.040538 4.411484 5.883849 -3.376428 -3.002998 -6.595755 7.887617 1.938881 -3.154038 0.062169 -4.600256 2.974844 6.571998 -2.394770 -0.550335 -7.886015 4.422081 -2.698739 -0.353038 2.272634 -2.872883 -4.713151 0.305228 3.853061 0.000883 -1.703203 -6.358076 -2.044001 -5.175192 -4.070682 2.249964 -4.200671 -0.861943 4.777343 -3.629644 -4.783540 2.036558 -1.062321 -3.297258 -0.133895 7.786444 5.096005 -4.068763 5.402204 -6.532838 6.544580 -7.421504 -4.937688 0.751418 -5.561492 -1.802091 -2.834128 -1.017498 2.696701 1.061368 -1.519894 -2.009553 1.250547 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.096239 0.499968 0.926542 -0.520466 0.525887 0.402312 0.112524 0.230812 -0.494564 -0.295316 -0.223042 -0.759122 -0.713139 0.614207 -0.148313 -0.271932 1.014489 0.242724 -0.124928 -0.238903 0.007420 -0.111275 0.801432 0.982235 -0.899187 0.343540 0.078652 0.509741 0.063304 1.086834 -0.488197 -0.748043 -0.144250 0.476020 0.556125 -0.420524 -0.250992 -0.330189 -0.470314 -1.555800 -0.032570 0.778634 0.089111 -0.045143 0.389352 0.440343 1.232801 0.409227 -0.158998 0.158287 0.320524 0.220005 0.384740 -0.014452 0.355935 0.089999 1.102261 -0.099048 -0.384584 0.234650 -0.038916 -0.599635 -0.165899 0.690561 0.778653 0.030590 -0.270186 -0.522243 0.143782 0.033502 -0.032890 0.412988 0.291283 0.560127 0.312700 0.140664 0.525722 -0.649825 0.342069 -1.228531 -0.755470 -0.595708 0.848838 0.695106 -0.063299 -0.599676 1.005292 -0.222960 0.393447 0.083330 0.961154 -0.356393 -0.159901 -0.386084 -0.435093 0.357167 -0.177359 -0.160584 -0.085913 -0.026114 -0.535744 -0.310673 0.496468 -0.134400 -0.485478 0.757540 -0.144651 0.583352 -0.748349 -0.028987 -0.793847 0.145857 0.232328 -0.958594 -0.279802 -0.222941 -0.055278 0.250044 -0.257746 -0.309585 0.226229 0.251999 -0.404538 0.168615 -1.275356 1.047001 0.247268 -0.245477 0.147561 0.091282 0.395100 0.165886 0.311930 -0.335677 -0.090741 0.349847 -0.266225 -0.254981 -0.404844 0.026782 -0.004620 -0.350521 -0.159040 0.093024 -0.456987 0.158413 -0.812831 -0.247003 0.322942 1.970433 -0.337015 0.482402 0.011283 -0.673862 0.787241 0.300408 -0.429788 0.085189 0.470996 0.653380 -0.719624 -0.369974 0.221914 0.934005 0.362780 -0.443022 0.298216 -0.072377 -0.276709 -0.058185 0.611935 -0.042617 0.019680 -0.379557 -0.217784 0.169122 1.264593 -0.004136 -1.429171 -0.076152 0.004939 -0.007174 -0.177547 0.169568 0.046429 -0.015278 -0.076311 -0.170968 0.543479 0.763620 -1.852271 0.838220 0.068138 -0.640380 1.025901 -0.403654 -0.074257 -0.415563 0.140393 0.621984 0.938617 0.198722 -0.417093 -0.187870 -0.710656 -0.122225 0.087100 0.399458 -0.596263 0.605696 0.185570 -0.668782 -0.330304 -1.044293 -0.060762 -0.087215 -0.823331 0.217858 0.067917 -1.499784 0.819041 0.139080 -0.164201 -0.052554 -0.278048 -0.128288 -0.688841 -0.720996 -0.036350 -0.091796 -0.701638 -0.291950 -0.440042 0.327151 -0.011387 0.201957 -0.674177 -0.808918 0.707980 -0.141554 0.575037 0.557542 0.110073 0.564926 1.267953 -0.257582 -0.155127 -0.375440 0.605234 -0.251298 -0.135016 0.228231 -0.614945 0.280926 1.006031 -0.153166 0.086777 -0.676868 0.725244 -0.093123 -0.341106 0.316219 -0.709198 -0.137155 0.252829 0.486741 -0.399929 -0.320151 -0.752236 -0.361024 -0.079931 -0.334359 0.369345 -0.637903 -0.036553 0.586646 -0.357726 -0.690522 0.303298 -0.208854 -0.457748 0.017997 0.922000 0.605701 -0.424171 0.922815 -0.584502 0.586987 -0.852703 -0.275593 -0.234260 -0.393388 -0.326109 -0.115808 -0.049865 0.232656 0.086510 -0.025512 -0.200853 0.165317 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator() = 0.100547 0.592691 0.939344 -0.497284 0.534410 0.460509 0.118140 0.038051 -0.451386 -0.122393 -0.290402 -0.682036 -0.568323 0.592537 -0.021815 -0.004629 1.027851 0.218847 -0.167723 -0.263660 0.173592 -0.423794 0.822501 1.044627 -0.920269 0.447837 0.295807 0.515397 0.164983 1.131723 -0.828632 -0.414765 -0.159896 0.081238 0.580477 -0.547948 -0.327370 -0.328762 -0.152414 -1.662372 -0.056919 0.535753 0.206730 -0.052937 0.304873 0.432141 1.314882 0.417808 -0.173246 0.154213 0.304061 -0.034330 0.500871 -0.004233 0.472712 0.406841 1.414579 0.246375 -0.284359 0.222134 -0.013152 -0.652259 0.064192 0.702664 0.808693 -0.002416 -0.342896 -0.283036 0.246145 -0.109562 -0.116160 0.526842 0.103321 0.559671 0.333347 -0.463187 0.812346 -0.843933 0.286008 -1.164962 -0.823259 -0.600479 0.504051 0.308903 0.295308 -0.387866 1.102168 -0.302233 0.400237 -0.207822 0.964172 -0.666498 -0.082904 -0.323299 -0.424338 0.248725 -0.128246 -0.198929 0.117402 -0.241907 -0.533280 -0.486338 0.867372 0.040996 -0.586570 0.675148 -0.133678 0.574863 -0.623219 -0.376151 -0.790484 -0.123960 -0.123884 -0.971808 0.061174 -0.290538 0.014783 0.212961 -0.228927 -0.759179 0.201118 0.453944 -0.363161 -0.151881 -1.124503 1.115235 0.396463 -0.293017 0.180084 -0.030107 0.397722 0.369679 0.545695 -0.340968 -0.105352 0.378772 -0.469513 -0.254187 -0.418852 -0.082361 0.050190 -0.437842 -0.438336 0.238368 -0.449356 0.524268 -0.109656 -0.176112 0.256454 2.280370 -0.317622 0.463056 0.016500 -0.771488 0.977676 0.293000 -0.507874 0.191538 0.512836 0.734692 -1.395864 -0.423220 0.191768 0.992800 0.351526 -0.645894 -0.095056 -0.183140 -0.309513 0.066000 0.571414 -0.123230 0.076142 -0.420236 -0.206845 0.077699 1.555334 -0.265182 -1.379058 0.001780 -0.322987 -0.264782 -0.802508 0.059105 -0.320177 -0.087425 -0.459246 -0.182441 0.531256 0.757455 -1.873997 0.871175 -0.273092 -0.919290 1.339880 -0.424393 -0.067686 -0.629635 0.162172 0.628391 0.930412 0.089721 -0.464320 -0.211109 -0.786243 -0.128512 -0.004556 0.339146 -0.695546 0.722347 0.190001 -0.775435 -0.278920 -0.856940 0.040353 -0.338917 -0.662886 0.266925 -0.045933 -1.405896 0.829527 0.207479 -0.165730 0.273642 -0.258056 -0.190876 -0.660535 -0.724563 0.072356 0.088882 -0.278153 -0.314667 -0.443557 0.388069 -0.021637 -0.041073 -0.828882 -0.960085 0.510327 -0.310617 0.548131 0.637346 0.137791 0.494983 1.303729 -0.328487 -0.338337 -0.101050 0.136148 -0.137120 -0.161540 -0.296232 -0.690041 0.411187 1.120837 -0.080325 0.365767 -0.647835 0.746956 -0.352824 -0.333190 0.314413 -0.520871 -0.309347 0.035080 0.458481 -0.328970 -0.326838 -0.644471 -0.562291 -0.060352 -0.325129 0.469166 -0.667163 -0.100940 0.620797 -0.487081 -0.515001 0.401688 -0.211289 -0.328146 -0.036779 0.932880 0.717170 -0.449315 0.636631 -0.550794 0.562807 -0.874483 -0.192957 -0.188549 -0.094202 -0.459618 -0.197365 0.264781 0.308629 0.109465 -0.139267 -0.051653 -0.099189 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.553526 0.769790 1.315022 -1.897717 2.871847 1.097842 0.474009 -0.019396 -1.165053 -2.137771 -0.853133 -1.157587 -3.177117 1.926767 -0.949624 0.838224 2.399264 -0.507265 0.306036 -1.736693 2.673771 -2.240775 3.248641 1.878040 -4.092482 0.303097 1.196809 2.726609 1.126194 2.767699 0.320958 -1.615048 -0.130625 -0.557273 2.980548 -1.653601 0.198028 0.339775 -1.021943 -4.161996 -1.038682 1.610274 -0.794000 1.327406 0.427854 2.617922 2.917673 2.045262 -2.298900 1.731825 2.584778 0.162388 1.567383 0.437366 -0.872111 0.086896 1.039218 -0.250933 -0.731418 0.571730 -0.819884 -3.114993 1.238632 2.301544 3.695594 -1.597301 -0.656685 1.400007 -0.376017 0.778727 0.398268 2.535961 0.627479 0.156155 3.297753 -2.697312 -0.430935 -5.358241 0.780577 -6.622421 -2.093746 -3.092626 0.795461 1.394359 1.042594 -0.845547 4.813114 0.256883 0.177524 2.436290 2.555357 -1.524775 0.165943 -3.148859 -1.251644 0.096755 -1.511720 -1.239138 0.740674 1.330150 -1.311535 -1.596844 0.575781 -0.855511 -1.565923 -1.764018 -2.607222 2.728080 -3.300008 -1.376107 -3.803547 1.151162 -0.590745 -4.023696 0.293485 -1.260222 1.192967 -0.091832 1.368375 -0.659372 0.684534 2.239464 -0.822509 -0.642357 -1.552071 3.412951 2.302862 -0.921373 0.504449 1.528913 -0.117154 1.649781 3.293887 -0.265817 -2.842794 1.909925 -0.920242 -0.242501 -1.761017 0.935845 2.835338 -2.226996 -1.121407 0.688644 -0.320864 -0.523428 0.726208 -2.854142 1.755089 6.920926 -0.788578 0.884756 0.308026 -2.124394 2.660435 1.045644 -0.129992 2.237072 1.864145 1.354701 -3.513945 -1.943917 1.537334 2.407355 0.583476 -2.874418 -1.435470 -0.180109 0.563586 -0.425189 0.207902 1.398885 -0.912868 -0.512272 0.009648 -0.722914 4.343443 -1.379681 -1.790986 1.274496 1.884986 -2.360884 -3.363320 -0.666271 -2.128390 -1.739962 0.480498 0.050080 0.774014 2.759094 -5.308761 1.999765 0.033289 -0.614767 1.577577 -1.356543 0.934750 -4.972683 0.129340 1.453361 1.842883 -0.388637 0.304352 -0.698187 -2.823540 1.683506 0.371235 1.830503 -1.472496 2.203651 -1.091892 -1.338392 -1.790156 -1.074768 -1.587412 0.068370 -0.885427 0.661205 0.663613 -4.604623 2.134330 -1.842742 -1.072692 1.409986 0.650417 2.668531 -1.719088 -2.687865 1.720986 -0.484447 -2.303784 -2.469755 -0.314491 1.570476 -0.169730 -1.363288 -2.082631 -4.202686 1.692986 -1.486340 1.118097 1.549301 1.000661 3.535695 1.204199 -2.247674 -2.457629 -1.419364 0.400295 -0.341113 -0.154518 -1.741873 -0.266262 1.542738 3.409638 0.302133 0.903167 -0.494971 3.350040 -2.528865 -1.492335 1.513606 0.331494 -0.867325 2.012816 1.741827 -1.263016 -1.915797 -2.784456 1.196382 -0.277392 -1.320523 1.476798 -2.857186 -0.319813 1.796863 -0.023528 -1.524496 1.644544 0.785402 -0.427916 -2.225495 4.602311 4.054915 -2.240484 0.403703 -1.948505 1.743887 -3.051404 -0.929550 -1.404202 0.468378 0.902464 0.756819 0.757048 1.698740 1.188625 -0.823253 -0.647206 -1.580914 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::empty() const = 0.063123 0.571130 0.579541 -0.317946 0.527119 0.613142 0.087338 -0.034266 -0.258514 -0.227270 -0.132803 -0.817157 -0.662741 0.467919 -0.129250 -0.103834 0.647380 -0.072549 -0.095051 -0.033996 -0.079296 0.220625 0.668284 0.676592 -0.613111 0.292337 0.055893 0.165382 -0.200454 0.805019 -0.392251 -0.880902 -0.053479 0.410057 0.234236 0.007028 -0.290914 -0.423384 -0.145743 -0.985367 -0.078464 0.681821 -0.094516 -0.063147 0.257315 0.011279 1.111921 0.295481 0.009794 0.075543 0.156267 0.232449 0.292947 -0.017696 0.354317 -0.065630 0.790515 -0.265812 -0.274006 0.057709 -0.085761 -0.187216 -0.359578 0.556820 0.517331 0.074245 -0.297505 -0.333773 -0.068560 0.002068 -0.202207 0.427589 0.294067 0.679657 0.172805 0.358574 0.375433 -0.157958 0.213328 -0.459107 -0.596286 -0.326260 0.398352 0.797700 0.081481 -0.498816 0.812838 -0.144131 0.190204 0.014870 0.901368 -0.357667 -0.082624 -0.167404 -0.306256 0.108492 -0.096395 0.053015 -0.326995 -0.113071 -0.474285 -0.284458 0.246703 -0.102986 -0.366047 0.507650 -0.073398 0.309434 -0.500703 0.033913 -0.500959 0.048638 0.149643 -0.816466 -0.520764 0.048801 -0.253924 0.209937 -0.289680 -0.410109 0.263174 0.137599 -0.314469 -0.019124 -0.815707 0.663320 0.317521 -0.075071 0.130708 0.101925 0.510031 0.361425 0.080862 -0.171472 0.012082 0.023238 0.053970 -0.077738 -0.032264 0.109687 -0.390186 -0.238643 0.009379 0.274928 -0.306078 0.165827 -0.992413 -0.293061 0.116792 1.451983 -0.393693 0.432065 0.001855 -0.661952 0.454966 -0.020929 -0.482553 -0.150062 0.231435 0.703234 -0.386594 -0.244758 0.475202 0.778013 0.229411 -0.274973 0.522826 0.143032 -0.162048 -0.248727 0.577225 -0.008649 0.135533 -0.314544 -0.186986 0.299309 1.065992 -0.074622 -1.073373 0.109994 0.037509 0.334549 0.163117 0.110608 0.032325 -0.030742 0.193961 -0.099361 0.373353 0.573494 -1.178299 0.576346 0.164898 -0.598817 0.796656 -0.216822 -0.168279 0.151982 0.113725 0.602541 0.511451 0.195218 -0.197280 -0.380274 -0.526270 -0.100193 0.118190 0.222251 -0.483855 0.514741 0.146826 -0.638639 -0.315317 -0.806200 -0.050264 -0.122543 -0.775963 0.198363 0.132004 -1.106257 0.761114 0.334012 -0.096589 -0.199258 -0.334579 0.037705 -0.436807 -0.590472 0.018302 -0.384564 -0.514498 0.102411 -0.364905 0.039971 0.219262 0.340673 -0.583929 -0.484285 0.572175 0.145731 0.539185 0.424346 0.230829 0.272434 0.752761 -0.272118 0.015478 -0.511324 0.739046 -0.061952 -0.216629 0.234107 -0.505255 0.251452 0.652075 -0.171678 -0.127040 -0.706757 0.309892 -0.028869 -0.045920 0.221600 -0.511655 -0.339370 -0.030566 0.334352 0.010071 -0.129246 -0.566515 -0.195676 -0.420061 -0.377064 0.093425 -0.395413 -0.125344 0.532357 -0.417024 -0.555573 0.140371 -0.182052 -0.339414 0.075231 0.527593 0.139438 -0.299196 0.701910 -0.530570 0.463118 -0.650149 -0.423997 0.075495 -0.429172 -0.282284 -0.355987 -0.151216 0.101404 0.018594 -0.009652 -0.167946 0.178214 +PE-benchmarks/strongly-connected-components.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::back() = 0.020737 0.353491 0.337258 -0.047197 0.226925 -0.105918 0.110789 0.313897 -0.127840 -0.642251 -0.078365 -0.564273 -0.845733 0.378079 -0.126102 -0.286772 0.631133 0.110040 0.118875 -0.283394 -0.033954 -0.243617 0.643502 0.639088 -0.686195 0.120504 0.142865 0.335717 0.154812 0.301208 0.233209 -0.607266 0.185655 0.313039 0.458556 -0.155114 0.004864 -0.269479 -0.594370 -0.947462 -0.148625 0.494485 0.048052 0.054881 0.146138 0.673874 0.803819 0.358458 -0.253076 0.269756 0.297919 0.053873 0.241668 0.058099 -0.087675 -0.440735 0.095450 -0.381093 -0.421983 0.209238 0.017520 -0.915273 -0.293684 0.467748 0.645768 -0.105901 -0.045823 -0.119942 -0.164644 0.195786 -0.025016 0.280192 0.519006 0.306032 0.467661 0.125763 -0.106285 -0.711928 -0.026984 -1.774588 -0.544555 -0.606327 0.832937 0.467972 -0.192696 -0.251375 0.670438 0.219430 0.303310 0.450329 0.795935 -0.162117 -0.231274 -0.345674 -0.031156 0.446512 -0.396255 0.091831 0.141139 0.130273 -0.401091 -0.159085 0.205425 -0.245206 -0.293232 0.121871 -0.253193 0.366685 -0.802309 0.126916 -0.882652 -0.191429 0.391891 -0.787961 0.052153 0.144850 0.283792 0.374887 0.000111 0.139345 0.081256 0.040210 -0.062980 0.114043 -0.818415 0.605209 0.054118 -0.046861 0.286747 0.422396 0.334734 0.180600 0.421526 -0.050169 -0.268373 0.197865 -0.207513 -0.064324 -0.225926 -0.039844 0.422879 -0.334948 0.157696 -0.071548 -0.307435 -0.465151 -0.557177 -0.400914 0.366571 0.618831 -0.030875 0.255064 0.103407 -0.405235 0.279005 -0.151508 -0.274522 0.127651 0.434002 0.409777 0.195466 -0.229745 0.147823 0.623176 0.212014 -0.305064 0.173136 0.053654 0.106883 -0.263395 0.333247 0.223662 0.083158 -0.206412 -0.031866 0.357764 0.472052 -0.076312 -0.450321 -0.049319 0.250362 0.186219 -0.209881 0.146048 0.221740 -0.065681 0.090376 0.032447 0.111340 0.526980 -1.056261 0.471941 0.216271 0.014454 0.189663 -0.145354 -0.140806 -0.739544 0.338354 0.489624 0.423956 0.200759 -0.024655 -0.157856 -0.510245 -0.051037 0.123087 0.339733 -0.234810 0.389259 -0.138107 -0.208089 -0.490110 -0.560257 -0.032034 0.104815 -0.313884 0.168653 0.475135 -1.083969 0.591659 -0.323228 -0.388767 -0.304383 -0.147380 0.182837 -0.653522 -0.593472 -0.032358 -0.470461 -1.007596 -0.391767 -0.238370 0.102124 -0.090538 -0.188907 -0.063492 -0.344844 0.715790 -0.016454 0.230343 0.333112 0.208651 0.822530 0.518750 -0.401972 -0.089149 -0.203898 0.390300 -0.588942 -0.110805 0.344090 -0.207771 0.144003 0.848766 -0.140142 -0.070105 -0.064431 0.424539 -0.302217 -0.579704 0.334698 -0.039216 0.119270 0.639088 0.362716 -0.438963 -0.254926 -0.663747 -0.028487 0.091739 -0.430574 0.089990 -0.664733 -0.066001 0.527605 -0.167510 -0.442711 0.306373 -0.120488 -0.208426 -0.228772 0.609142 0.768552 -0.628706 0.520273 -0.514620 0.291129 -0.717943 -0.408218 -0.085001 0.050169 0.134921 -0.008492 -0.070878 -0.010932 0.121486 -0.347521 -0.442419 0.175280 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator--() = 0.005350 1.302451 1.170988 -1.047993 1.191265 1.610538 0.128084 -0.219045 -0.581054 -0.528000 -0.445551 -1.500289 -1.379194 1.135348 -0.368651 -0.141144 1.773186 -0.098505 -0.229799 -0.255651 0.408919 0.359995 1.664848 1.786509 -1.760354 0.528897 0.781937 0.646746 -0.036257 1.638706 -0.695610 -1.906884 -0.210431 0.463134 0.790039 -0.447105 -0.542788 -0.822657 -0.071397 -2.639973 -0.226558 1.058942 -0.481200 -0.086130 0.490623 -0.124804 2.585648 0.837940 -0.421447 0.084069 0.776771 0.906588 0.461305 -0.097216 0.527006 0.160436 1.506137 -0.148529 -0.210394 0.087219 -0.135583 -0.236643 -0.347850 1.580266 1.480207 0.134510 -0.628342 -0.388413 0.126069 -0.009320 -0.525414 1.128405 0.453690 1.559278 0.616435 -0.333177 0.598241 -1.687497 0.676583 -1.554201 -1.360938 -1.020746 0.478122 1.216414 0.440822 -0.798658 2.153558 -0.396144 0.571282 0.564133 2.095735 -0.907755 -0.055352 -0.838736 -1.033109 0.376912 -0.303436 0.135239 -0.661959 -0.221762 -1.086914 -1.206469 0.475535 -0.053806 -1.020894 0.483934 -0.249267 0.930446 -1.056693 -0.247799 -1.261431 0.340942 -0.023434 -2.189687 -1.332772 -0.481141 -0.103094 0.230364 -0.526478 -1.415842 0.406947 0.793277 -0.703960 -0.366128 -1.189262 1.498411 1.169831 -0.349974 0.160360 0.090744 1.042976 1.178261 0.581489 -0.512838 -0.177550 0.284448 -0.199332 -0.479190 -0.624482 0.370118 -0.290978 -0.667197 -0.125448 1.035541 -0.729938 0.138946 -0.947092 -1.131981 0.497769 4.931869 -0.824998 0.954344 0.170744 -1.681370 1.051455 0.123121 -1.105761 0.041384 0.747933 1.705290 -1.928284 -0.736836 0.943371 1.938870 0.576196 -0.865476 0.495040 0.156150 -0.570045 -0.535448 1.122418 -0.126526 -0.065745 -0.675784 -0.467431 0.868639 2.611856 -0.325729 -2.326934 0.164889 0.771320 0.173124 -0.200381 0.144962 -0.679061 -0.103825 0.696150 -0.259231 1.143629 1.498141 -3.270844 1.304883 0.289207 -1.229621 1.552659 -0.291063 -0.334775 -0.220907 0.573077 1.485795 1.264041 0.070441 -0.153573 -0.761095 -1.456730 -0.154455 0.387972 0.723316 -1.315026 1.334884 0.356447 -1.499522 -0.863321 -1.180567 -0.388992 -0.610988 -1.505909 0.520404 -0.050259 -2.695076 1.945795 0.502668 -0.175454 -0.022607 -1.010600 0.509246 -1.323102 -1.587382 0.434681 -0.310359 -0.618971 0.230990 -0.816244 0.692512 0.584312 0.925709 -1.655914 -1.675204 1.020771 0.186728 1.274844 1.049790 0.623894 0.914177 0.756351 -0.496933 -0.642319 -1.217097 1.502568 0.444510 -0.729360 -0.446564 -1.094211 0.771182 1.861268 -0.554499 -0.354532 -1.403697 1.030899 -0.671862 -0.026286 0.338096 -0.545792 -0.992950 -0.220699 0.666882 -0.269677 -0.519145 -1.369492 -0.153106 -0.745515 -1.035431 0.472983 -1.108822 -0.155282 1.322283 -0.900116 -1.027709 0.605976 -0.085457 -0.416885 0.249111 1.210560 0.723828 -0.726452 1.056575 -1.388766 1.078042 -1.823461 -1.145900 0.020511 -1.069714 -0.462835 -0.687086 -0.383498 0.584638 0.107773 0.327594 -0.193244 0.120331 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator*() const = -0.009347 0.369540 0.211218 -0.139034 0.352797 0.287771 0.081346 -0.065336 -0.127741 -0.230885 -0.123914 -0.311895 -0.379510 0.323258 -0.077721 0.092510 0.511799 0.039272 0.034378 -0.140017 0.133101 -0.128161 0.541099 0.489581 -0.466744 0.159975 0.300812 0.115540 -0.018656 0.412668 -0.221362 -0.484725 0.160070 -0.089173 0.133307 -0.212963 -0.096269 -0.191897 0.018449 -0.705978 -0.056443 0.041168 -0.140564 -0.007873 0.014070 0.124200 0.694828 0.257362 -0.105360 0.194561 0.199941 0.168603 0.086400 0.067370 0.124355 0.107412 0.269863 -0.126257 -0.148889 0.038259 -0.039692 -0.340684 -0.116006 0.376408 0.417669 -0.028589 -0.097873 0.083938 -0.150018 0.001634 -0.095535 0.251213 0.162735 0.305362 0.210428 -0.327106 0.033297 -0.575219 -0.078898 -0.847538 -0.383178 -0.355220 0.114027 0.117241 0.234078 0.050648 0.553992 -0.011250 0.195417 0.129565 0.606140 -0.432461 -0.086535 -0.164159 -0.114441 0.105246 -0.165780 0.051698 -0.067710 -0.132815 -0.306127 -0.423368 0.322915 0.026223 -0.253763 -0.113343 -0.089336 0.260309 -0.510966 -0.199619 -0.494384 -0.131001 -0.106648 -0.576357 -0.072330 0.022518 0.322911 0.157210 -0.077498 -0.471228 0.118784 0.320711 -0.102948 -0.267056 -0.122251 0.324474 0.247197 -0.039758 0.150628 0.033185 0.252683 0.529124 0.399846 -0.088698 -0.107034 0.067327 -0.114471 -0.076422 -0.137779 -0.020158 -0.046430 -0.322423 0.106884 0.307423 -0.228867 -0.047260 0.052424 -0.282703 0.193346 0.945974 -0.144234 0.218971 0.060366 -0.520709 0.110632 -0.202914 -0.283852 0.057247 0.284118 0.390953 -0.379085 -0.222929 0.197340 0.481010 0.187394 -0.332549 -0.064830 -0.080333 -0.017405 -0.067947 0.187981 0.051246 0.039638 -0.226427 -0.085428 0.196488 0.760773 -0.211892 -0.328068 0.118335 0.053904 -0.006853 -0.304007 -0.037107 -0.187498 -0.027942 0.132474 -0.063605 0.147302 0.423248 -0.850739 0.344049 -0.153669 -0.297781 0.250046 0.042107 -0.097328 -0.194664 0.175479 0.421349 0.354761 0.055803 0.154352 -0.159906 -0.392256 -0.065891 0.053531 0.207587 -0.279512 0.323261 0.125487 -0.488228 -0.291000 -0.136023 0.043012 -0.190570 -0.180533 0.151483 0.127336 -0.931281 0.509016 -0.001040 -0.152279 0.105566 -0.122452 0.288511 -0.383729 -0.481289 0.194614 -0.152870 -0.161766 0.035014 -0.150016 0.199128 0.067355 0.056122 -0.250187 -0.398108 0.244163 0.092456 0.223128 0.274496 0.217228 0.440160 -0.103854 -0.254356 -0.218992 -0.160049 0.222548 -0.160018 -0.134756 -0.061414 -0.246895 0.290922 0.617659 -0.013759 -0.069212 -0.152979 0.310431 -0.411727 -0.054448 0.242245 0.290965 -0.221241 0.088599 0.273056 -0.172968 -0.213629 -0.271371 -0.008451 -0.094165 -0.324220 0.101763 -0.388525 -0.038951 0.381496 -0.151714 -0.243780 0.240977 -0.069838 0.008390 -0.089363 0.328444 0.455397 -0.357213 0.168650 -0.307862 0.184963 -0.533348 -0.368462 0.042391 0.024572 -0.107501 -0.117464 -0.064001 0.157987 -0.009801 -0.011361 -0.063220 -0.112196 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::pop_back() = 0.009207 2.353799 2.026517 -1.500352 2.571931 2.827547 0.308466 -0.035121 -0.898116 -1.165875 -0.990209 -2.719869 -3.014435 2.115227 -0.511644 0.018964 3.029317 -0.336679 -0.299058 -0.277067 0.864965 0.294366 2.949457 2.482363 -3.023090 0.901535 1.117226 1.149540 -0.428897 3.227625 -1.433481 -3.453838 -0.148006 0.736275 1.502549 -0.589635 -0.742989 -1.479480 -0.532650 -4.336241 -0.538090 2.264002 -1.154528 -0.004749 0.688716 0.295064 4.601554 1.540887 -0.797103 0.165992 1.147139 0.978535 0.940121 0.077938 0.705365 0.250965 2.301229 -0.329374 -1.005827 0.161634 -0.432621 -1.190362 -0.788126 2.429307 2.577693 -0.104560 -1.097282 -0.126738 -0.251738 0.031422 -0.937619 1.947364 1.335605 2.345377 1.474796 -0.076271 0.550067 -2.253069 0.815974 -3.099973 -2.391884 -2.232267 0.776889 2.277338 0.776876 -1.896445 3.970338 -0.680687 0.914702 0.992988 3.941694 -1.921793 -0.245912 -2.141547 -1.272620 0.399073 -0.820275 -0.301899 -0.600782 -0.594593 -1.885729 -2.022308 0.741326 -0.333350 -1.618116 0.553386 -0.933591 1.997495 -2.161610 -0.583399 -2.948567 0.337576 -0.031250 -3.874019 -2.016157 0.037881 -0.466820 0.656850 -0.478026 -2.315541 0.986511 1.609394 -1.251950 -0.809621 -1.777922 3.118575 1.893567 -0.731518 0.652097 0.656817 1.844291 1.993067 1.723175 -0.584417 -0.814140 0.575711 -0.316320 -0.698895 -0.866741 0.620246 -0.491965 -1.501106 -0.424431 1.832295 -1.181279 0.566903 -2.189715 -2.066526 1.107197 7.610588 -1.524020 1.331282 -0.206158 -3.037019 2.405126 0.168810 -2.051291 -0.102723 1.189387 3.026960 -3.161530 -1.342394 2.010111 3.219264 1.003001 -1.901487 1.109571 -0.018335 -0.436869 -1.104068 1.686896 0.574334 0.140452 -1.056912 -0.716931 1.142527 4.923894 -1.143768 -4.373919 0.927620 0.944485 0.407533 -0.837988 -0.019549 -0.959324 -0.721116 1.158559 -0.455505 1.636473 2.771812 -5.014219 2.364761 0.462305 -2.458928 2.871075 -0.890724 -0.123438 -0.530733 0.611640 2.850969 2.208919 0.506743 -0.465125 -1.791215 -2.500872 0.059350 0.714938 1.449708 -1.754827 2.181331 0.107722 -2.495617 -1.681376 -2.420761 -0.816511 -0.837507 -2.472379 0.775520 0.280862 -4.856664 3.530405 0.580238 -0.303202 0.045084 -1.105335 1.091002 -2.102852 -3.059844 0.966196 -0.889087 -1.754731 0.115449 -1.179832 1.032814 1.153436 0.880540 -2.516257 -3.478112 2.070412 0.488397 2.098675 1.712006 1.405990 2.066402 2.132373 -1.512073 -1.049725 -2.460174 2.521904 0.288041 -0.896552 -0.808685 -1.585610 1.560505 3.157355 -0.661226 -0.258113 -2.896815 1.788511 -1.447848 -0.286202 1.168569 -0.942119 -1.682562 -0.140618 1.625763 -0.329998 -1.317939 -2.473034 -0.048383 -1.562052 -1.883057 0.229320 -2.413280 -0.672663 2.634022 -1.554831 -2.002137 0.897805 -0.184110 -0.987838 -0.420751 2.652676 1.659332 -1.879679 2.002271 -2.323159 2.145966 -3.256945 -2.021729 0.129852 -1.430864 -0.538929 -1.034632 0.094482 0.669499 -0.018943 -0.028264 -0.545757 -0.445791 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_pop_back_aux() = 0.346588 3.344740 2.819312 -1.487122 2.723927 3.741511 0.393076 -0.006894 -0.757246 -0.852908 -1.000674 -3.328206 -3.338328 2.186538 -0.495722 -0.724625 3.327200 -0.453760 -0.427634 0.046135 0.098302 1.320369 3.233406 3.091053 -3.193131 1.308334 1.128438 0.642851 -0.889788 3.787794 -2.304535 -4.204594 -0.110142 1.576097 1.202131 -0.079812 -1.277545 -2.731265 -0.761318 -4.740892 -0.446536 2.567807 -1.601449 -0.406104 1.009088 -0.069927 5.863861 1.434499 -0.388840 -0.362262 0.736144 1.311192 0.861955 -0.092607 1.482909 0.032065 3.346827 -0.133781 -1.138305 0.042173 -0.381821 -0.747433 -1.631330 2.784345 2.422259 0.496008 -1.243806 -1.094128 -0.301218 -0.237509 -1.483611 1.977924 1.938131 3.527605 1.138865 1.182925 1.190156 -1.180303 0.769769 -2.096444 -2.828153 -2.212617 1.076772 2.557424 0.722394 -2.560149 3.882108 -0.773064 1.463339 0.386258 4.648732 -2.112132 -0.323229 -1.626181 -1.520673 0.516996 -0.528322 0.383747 -1.294828 -1.560290 -2.346685 -2.104760 0.968368 -0.204533 -1.791968 1.769532 -0.386493 1.718741 -1.867791 0.030916 -2.839159 -0.145053 0.265922 -4.207428 -3.029676 0.401968 -0.589267 0.973261 -1.061173 -2.720902 1.067991 1.541098 -1.479891 -0.864002 -2.277114 3.429578 2.040209 -0.536772 0.795890 0.270665 2.634672 1.999736 1.464143 -0.503888 -0.133832 -0.057395 -0.156693 -0.847041 -0.374843 0.806306 -1.578384 -1.088108 -0.126826 2.205495 -1.461624 0.971802 -3.497447 -1.848493 1.030112 8.466486 -1.947530 1.783226 -0.430624 -3.606214 2.331349 -0.089640 -2.864866 -0.763915 1.185877 3.771193 -3.306243 -1.120486 2.189152 3.689538 1.102377 -1.909503 2.453437 0.168705 -1.058654 -1.630009 2.432116 0.027969 0.690176 -1.465782 -0.971237 1.981358 5.383900 -1.090455 -6.155670 0.708270 0.351775 1.620682 0.429039 0.349014 0.013713 -0.231614 1.487548 -0.728775 2.093442 2.864980 -5.571688 2.581855 0.577472 -3.401860 3.763184 -0.786182 -0.605926 1.468679 1.139982 3.472016 2.357197 1.168577 -1.206901 -2.259426 -2.515860 -0.503432 0.824221 1.343260 -2.124809 2.415955 0.711680 -3.255210 -1.903646 -3.758799 -0.329863 -0.916524 -3.539483 0.763207 -0.278346 -5.746635 4.217647 1.586144 -0.300708 -0.674670 -2.044981 0.371907 -2.310492 -3.429393 0.484330 -1.309810 -1.955366 0.728686 -1.690487 0.691049 1.701583 1.988589 -3.183832 -3.445509 2.561231 1.066904 2.642600 2.040941 1.763287 2.026947 2.875721 -1.377507 -0.740281 -3.029121 4.001740 0.540659 -1.547963 -0.130627 -2.462074 1.474557 3.422593 -1.266318 -0.477290 -4.060479 1.392134 -1.161661 -0.057611 1.111068 -1.282004 -1.966578 -0.733595 1.682019 0.187064 -1.194507 -2.494799 -0.933400 -2.011464 -2.299838 -0.007359 -2.363324 -0.677123 3.038349 -2.039693 -2.463419 0.629993 -0.936672 -1.159989 0.244382 2.008744 1.424296 -2.204058 2.843233 -2.538979 2.589532 -3.500429 -2.526390 0.756388 -2.587028 -0.867867 -1.738765 -0.392806 0.402106 -0.313389 0.003695 -0.482280 0.242089 +PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -2.567431 -1.880582 0.468100 -5.011757 4.546265 4.732652 1.663548 -3.109112 -6.163964 -2.928282 1.645588 -8.239535 -5.093345 7.043937 -2.932531 4.209506 8.708076 0.337637 -2.228664 -2.547758 5.368509 -0.767906 9.670743 9.685539 -7.361432 0.267832 -0.367848 3.529397 1.521468 2.798875 2.376837 -6.160629 1.292222 -3.849727 2.156889 -3.364905 -1.932140 2.411710 3.712331 -11.830651 -1.105455 5.581336 -0.393934 0.740579 1.872003 3.565067 6.513614 5.227866 -1.554903 6.144689 4.244908 0.649287 4.065614 0.080640 0.859000 0.303871 1.713639 -1.237561 -1.676538 -0.135485 -2.756625 -1.712172 1.172838 7.346274 8.814719 -1.100943 -3.778872 1.332320 1.634884 2.010780 2.185238 6.575689 0.280878 2.477959 5.227817 -5.777732 0.325473 -11.429987 2.516537 -12.090482 -5.348959 -0.682894 5.292044 4.752053 2.757082 -2.512569 11.497195 -1.627554 -3.037370 8.121180 8.030496 -4.415456 -1.038757 -3.103455 -3.949024 -0.210896 -2.860981 0.107566 0.972571 3.786041 -6.170512 -4.269071 0.216208 -0.164945 -4.029915 -2.771264 -1.580625 5.716628 -6.989756 -4.114887 -4.318006 5.434096 -0.360167 -11.046506 -3.850351 -4.253422 0.645129 1.580914 -4.070559 -4.122574 3.495683 1.702371 -2.361206 -1.435058 -2.698370 6.089464 4.553808 0.990223 -0.640963 4.190815 1.250145 8.127937 2.218854 -3.454187 -0.587647 2.822283 -0.634820 2.622290 -3.288859 -0.575517 3.047545 -5.496624 -0.874784 2.320568 -3.501983 -1.952336 -0.203117 -2.338641 -0.181623 21.349136 -2.681027 7.479614 5.276723 -6.269358 3.863075 -0.826222 1.401328 2.693529 4.728303 4.395199 -9.053832 -5.353615 6.340544 9.803803 3.281187 -6.691060 -0.460428 2.743139 1.278776 -1.145728 3.923887 1.324340 0.051217 -3.966901 -0.626706 1.969607 13.507992 -3.175533 -2.308098 1.036724 5.138089 -1.190304 -5.410005 -0.708988 -5.534561 -1.277551 3.277160 1.458399 3.208908 7.878680 -11.889893 6.407435 -0.380524 -0.006059 5.209857 1.223368 -4.128495 -8.867069 -2.631737 3.105972 5.926382 -0.576030 0.382780 0.586713 -8.100159 1.509672 1.586309 2.552184 -5.079075 7.652842 -0.785769 -3.839193 -2.538870 -0.269242 -2.952783 -2.203572 -3.274179 4.804589 2.009169 -8.695745 5.592949 0.774709 -3.033423 0.563235 -0.000169 6.650226 -5.366610 -6.886043 4.056964 -3.236576 -5.606172 -2.869759 -2.669026 2.415564 2.887586 0.777013 -6.561810 -7.569104 6.997200 -2.376229 8.063114 4.280086 -1.470077 6.086664 -0.336168 -4.164982 -3.753463 -6.199451 2.352454 0.744664 -2.713613 -3.104849 -2.272137 5.012353 6.239216 -0.167461 -3.697551 -2.032352 7.895990 -4.821751 -0.220176 2.639949 0.334512 -4.176843 3.064896 3.987598 -4.588060 1.013087 -5.947873 0.810671 -4.910695 -2.159091 5.534391 -3.118843 1.001471 0.555509 -0.957217 -1.396690 2.379937 3.130545 -1.008484 1.073163 10.068104 6.028142 -1.983775 0.906179 -7.617118 5.200197 -7.586012 -5.310006 -1.122654 0.312665 -3.159410 -1.263404 -0.314664 5.682823 5.001626 -3.743917 -3.654489 2.294074 +PE-benchmarks/snake-ladder.cpp__std::queue > >::queue >, void>() = 0.058933 0.212654 0.413247 -0.235060 0.277973 -0.016459 0.085676 0.272721 -0.328630 -0.377531 -0.096736 -0.389611 -0.470133 0.371374 -0.089051 -0.213233 0.619521 0.207681 0.030493 -0.233412 -0.036838 -0.171014 0.478424 0.568025 -0.507299 0.183988 0.015920 0.259964 0.027783 0.522403 -0.037535 -0.542479 0.023614 0.287266 0.318779 -0.288033 -0.112637 -0.112416 -0.398729 -0.906963 -0.014553 0.424464 0.038196 0.005877 0.202086 0.433680 0.640796 0.240591 -0.135322 0.287343 0.216648 0.168651 0.170616 0.022763 0.118821 -0.044305 0.331163 -0.245704 -0.292606 0.218577 -0.032706 -0.524705 -0.154162 0.350994 0.441678 -0.064020 -0.122077 -0.276792 -0.031301 0.107040 0.067971 0.188113 0.267023 0.161942 0.241647 0.078864 0.032166 -0.554146 0.119596 -1.250344 -0.441629 -0.369505 0.733960 0.403707 -0.173752 -0.232534 0.548587 -0.064428 0.232332 0.261612 0.534177 -0.104663 -0.156975 -0.206594 -0.164173 0.278192 -0.151449 -0.106724 -0.002526 0.096664 -0.311607 -0.135672 0.265531 -0.174620 -0.241739 0.259946 -0.110362 0.360923 -0.672995 0.061159 -0.580290 0.136341 0.272267 -0.512589 -0.066260 -0.039040 0.188171 0.229924 -0.153417 0.030338 0.149019 0.064735 -0.212803 0.189180 -0.681885 0.512794 0.004411 -0.072271 0.131962 0.157376 0.187649 0.102651 0.256850 -0.179202 -0.084874 0.251894 -0.083446 -0.114073 -0.223792 -0.042577 0.101213 -0.244815 0.121942 -0.094581 -0.291392 -0.211051 -0.479070 -0.198442 0.213858 0.760576 -0.140727 0.275215 0.049612 -0.323928 0.256151 0.057056 -0.171013 0.082904 0.368181 0.288722 0.017254 -0.194978 0.082555 0.510615 0.227492 -0.234991 0.109217 -0.031329 -0.062538 0.023418 0.321538 0.019009 0.041513 -0.208644 -0.092559 0.074038 0.612396 0.075567 -0.554721 -0.105510 0.150158 0.032272 -0.056414 0.136029 0.108882 0.015748 0.074935 -0.088180 0.224153 0.440281 -1.137966 0.467454 0.008698 -0.147539 0.251729 -0.094828 -0.032651 -0.485617 0.046871 0.308599 0.596959 0.145697 -0.048057 -0.040610 -0.389885 -0.070413 0.055553 0.258661 -0.292748 0.315361 0.059406 -0.330454 -0.190129 -0.488304 -0.028863 0.079542 -0.346671 0.115457 0.232050 -1.015067 0.403929 -0.088333 -0.162348 -0.111856 -0.025714 0.087919 -0.411713 -0.421114 -0.020169 -0.154481 -0.638561 -0.206754 -0.253539 0.192347 -0.109298 0.029840 -0.143280 -0.360204 0.515138 -0.029090 0.298825 0.303864 0.005808 0.547128 0.464598 -0.193486 -0.030188 -0.203274 0.383740 -0.413172 0.028944 0.353752 -0.291049 0.114332 0.598710 -0.010634 -0.056637 -0.180640 0.467032 -0.105648 -0.235636 0.250302 -0.219690 0.086788 0.444856 0.338632 -0.374456 -0.184331 -0.481468 -0.047141 0.052535 -0.156073 0.204186 -0.418221 -0.007608 0.307878 -0.094896 -0.420753 0.206962 -0.119478 -0.243667 -0.082094 0.544408 0.535588 -0.341751 0.550232 -0.306173 0.267890 -0.478084 -0.189287 -0.232453 -0.065460 -0.105575 0.011995 -0.169045 0.101717 0.066614 -0.053972 -0.227256 0.176004 +PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/snake-ladder.cpp__std::queue > >::empty() const = -0.025566 0.191729 0.256441 -0.155261 0.260568 0.124800 0.087510 -0.011867 -0.207953 -0.270447 -0.015011 -0.448661 -0.414658 0.330932 -0.110772 0.023132 0.462693 0.052144 -0.010584 -0.158712 0.048036 -0.116135 0.502159 0.504551 -0.434408 0.120640 0.084635 0.193720 0.033413 0.342352 -0.072034 -0.427234 0.100055 0.063303 0.173551 -0.137645 -0.080586 -0.104028 -0.085213 -0.667728 -0.052949 0.268753 0.035198 0.006199 0.087613 0.256631 0.557410 0.260631 -0.070164 0.238972 0.209025 0.055201 0.180682 0.042702 0.112801 -0.090351 0.314066 -0.201489 -0.213704 0.074468 -0.041073 -0.385456 -0.142464 0.357493 0.444222 -0.036374 -0.111015 -0.070186 -0.074258 0.075657 0.012334 0.240610 0.164744 0.251246 0.218471 -0.077062 0.110485 -0.475645 0.008369 -0.857316 -0.374821 -0.238057 0.388802 0.314856 0.058202 -0.096769 0.521927 0.036358 0.078518 0.146999 0.546152 -0.264352 -0.122641 -0.100075 -0.119576 0.154923 -0.190183 0.052769 -0.014371 0.060107 -0.304519 -0.195371 0.240703 -0.062014 -0.223720 0.095902 -0.094379 0.249969 -0.501638 -0.074435 -0.418108 -0.027358 0.097178 -0.553070 -0.042537 -0.019398 0.144430 0.176510 -0.132150 -0.170216 0.129270 0.093340 -0.113857 -0.036157 -0.468619 0.376408 0.141437 0.005898 0.113900 0.142078 0.220589 0.319317 0.193392 -0.134385 -0.077842 0.090916 -0.090323 0.025774 -0.131804 -0.043280 0.047068 -0.268029 0.083992 0.080247 -0.223425 -0.108253 -0.253078 -0.158871 0.127348 0.731063 -0.108715 0.284971 0.131169 -0.373419 0.194582 -0.115864 -0.152339 0.067122 0.254733 0.290315 -0.144887 -0.219079 0.217828 0.486034 0.181931 -0.277194 0.057097 0.048513 0.030749 -0.089391 0.255935 0.078079 0.043770 -0.205731 -0.063448 0.174008 0.597774 -0.091418 -0.350894 0.044910 0.063840 0.060526 -0.195152 0.028809 -0.030991 -0.012189 0.045363 0.007443 0.136511 0.403148 -0.832731 0.368318 0.019535 -0.150840 0.330986 -0.051302 -0.163173 -0.346097 0.091522 0.307432 0.345225 0.090969 0.019254 -0.067346 -0.386294 -0.042518 0.042694 0.161681 -0.257267 0.316658 0.042590 -0.316905 -0.249119 -0.308339 0.001810 -0.059567 -0.264969 0.181165 0.219495 -0.789708 0.405736 -0.016724 -0.198205 -0.062886 -0.098409 0.171535 -0.373351 -0.390018 0.062722 -0.266688 -0.409200 -0.140794 -0.156829 0.075885 -0.008574 0.010819 -0.203740 -0.265585 0.378578 -0.031700 0.260348 0.249129 0.083267 0.363827 0.255546 -0.232247 -0.089678 -0.125193 0.238812 -0.259549 -0.110981 0.141503 -0.205364 0.198688 0.507693 -0.022394 -0.070496 -0.128444 0.319080 -0.203774 -0.186605 0.217520 -0.020556 -0.109664 0.239221 0.253563 -0.228548 -0.092576 -0.359688 -0.090706 -0.099380 -0.252162 0.159443 -0.295924 -0.003319 0.264014 -0.128953 -0.267464 0.195791 -0.051119 -0.119283 -0.048355 0.443444 0.404751 -0.273019 0.293988 -0.362841 0.205956 -0.468219 -0.298697 0.001484 0.007608 -0.135169 -0.084763 -0.059997 0.134267 0.089976 -0.129559 -0.191048 0.092978 +PE-benchmarks/snake-ladder.cpp__std::queue > >::front() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/snake-ladder.cpp__std::queue > >::pop() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/snake-ladder.cpp__std::queue > >::~queue() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/snake-ladder.cpp__main = -0.568445 0.300833 2.087951 -1.943227 1.672627 1.538026 0.762193 -0.364046 -2.498652 -1.143549 0.148882 -3.550239 -2.538656 3.084649 -0.693259 0.781615 4.353835 0.807595 -1.123616 -1.103590 1.643350 -1.305602 3.922244 4.623943 -3.392649 0.702718 0.336566 1.886395 0.918457 2.376086 -0.980143 -1.889822 0.202285 -0.817305 1.658311 -1.798656 -0.849287 -0.071767 0.277151 -5.985152 -0.231451 2.350088 0.809033 -0.193618 0.765766 2.234927 3.946387 2.281399 -0.675082 1.417522 1.715022 -0.547259 1.773882 0.074612 1.184049 0.373186 3.010244 0.746476 -1.312023 0.398612 -0.597254 -2.280831 0.213783 3.095050 3.827675 -0.068142 -1.311221 -0.421437 0.998609 0.504699 0.476783 2.159224 0.725039 1.337762 2.016730 -2.182984 1.408127 -4.804891 0.894826 -5.944652 -2.878380 -1.197125 3.048612 1.390914 0.930549 -1.529325 4.566732 -0.766672 -0.046227 1.451582 4.090566 -2.355905 -0.853512 -1.450706 -1.679428 0.869269 -1.302534 -0.062447 1.219071 0.339289 -2.692195 -1.647269 1.806097 0.113364 -1.925406 0.887204 -0.477616 2.723188 -2.698529 -1.428365 -2.677894 0.755989 0.283474 -4.726283 -0.214433 -1.600041 0.126161 1.151814 -1.784838 -2.035856 1.184785 0.976213 -1.279911 -0.575265 -3.171952 3.965622 1.392196 -0.085928 0.317682 1.010347 1.186752 2.267187 1.877195 -1.670236 -0.138655 1.231199 -1.619961 0.355346 -1.841817 -0.764044 1.379647 -2.258401 -0.875325 0.680948 -1.931760 0.287987 -0.108312 -0.315138 0.621234 8.964613 -0.974957 2.874293 1.422950 -2.801428 3.466071 0.290330 -0.541066 0.971960 2.261005 2.103404 -4.663417 -2.191884 1.881613 4.415103 1.715456 -3.165694 -0.395067 0.207399 -0.125294 -0.394566 2.044779 0.347431 0.346611 -1.818200 -0.593338 1.232629 5.819867 -1.513269 -3.721839 0.167977 0.212943 -0.361031 -3.424634 -0.013760 -1.551274 -0.185005 -0.369695 0.085498 1.883015 3.550620 -6.576511 3.433645 -0.488254 -1.556771 4.290265 -0.532163 -1.542161 -3.766150 -0.047673 2.037723 3.422812 0.563849 -1.589488 -0.000365 -3.547665 -0.142778 0.351568 1.215231 -2.290841 3.027579 -0.115386 -1.977943 -1.443986 -2.270636 -0.564221 -1.197170 -1.956858 1.796921 0.433758 -4.753690 3.108261 0.424487 -1.241314 0.195162 -0.689184 0.797605 -2.803242 -3.220242 0.866382 -0.822109 -2.427251 -2.031817 -1.328950 1.269619 0.522297 -0.119752 -2.724473 -3.861574 3.157467 -1.437404 3.294041 2.068974 -0.143468 2.679094 3.795037 -1.622961 -1.710289 -1.226176 0.703393 -0.642693 -1.455397 -1.536158 -1.674432 2.059088 3.596064 -0.320269 -0.067714 -1.811689 3.391887 -2.025082 -1.456574 1.489603 -1.052334 -1.340814 1.231905 2.072701 -2.382098 -0.386153 -2.829185 -1.441152 -1.086184 -1.613851 2.015493 -1.946124 0.359061 1.130886 -1.031994 -1.095186 1.270361 0.363136 -0.895018 0.167674 4.361782 3.349960 -1.761168 1.483289 -3.309796 2.523955 -3.720952 -2.022602 -0.188164 0.294232 -1.831332 -0.566277 0.845550 1.806647 1.211223 -1.709594 -1.424977 0.749027 +PE-benchmarks/snake-ladder.cpp__std::deque >::~deque() = 0.107745 0.271634 0.636155 -0.201671 0.618841 -0.213580 0.047607 0.807174 -0.318424 -0.980952 -0.306132 -0.604814 -1.403779 0.476858 -0.170416 -0.441348 0.715004 0.074367 0.210668 -0.584904 0.072178 -0.335570 0.799659 0.451505 -1.181663 0.196346 -0.038039 0.959076 0.429835 0.695268 0.495718 -0.705675 -0.035386 0.744761 0.930428 -0.327013 0.186296 -0.111570 -1.285801 -1.389153 -0.342902 1.073652 -0.154428 0.438323 0.414274 1.420958 0.841123 0.520984 -0.638145 0.664647 0.656729 0.030744 0.535827 0.092888 -0.622092 -0.670699 0.168074 -0.738610 -0.677973 0.454770 0.096615 -1.635359 -0.278893 0.447722 1.003487 -0.554418 -0.183447 -0.052285 -0.088380 0.346900 0.177502 0.517839 0.725794 0.086205 0.961986 0.572347 -0.344246 -0.850019 0.300090 -2.638655 -0.732049 -1.191673 1.438623 0.997571 -0.633661 -0.637116 1.252110 0.229896 0.301850 0.892194 0.788658 0.040607 -0.198535 -0.969018 0.043058 0.654403 -0.650112 -0.428828 0.221091 0.729863 -0.275041 -0.027449 0.022438 -0.814581 -0.461844 0.233205 -0.906065 0.783686 -1.427122 0.244146 -1.560832 0.305230 0.697568 -0.961402 -0.140337 0.281641 0.313520 0.361225 0.568796 0.824738 0.085795 -0.017244 -0.175065 0.617754 -1.327514 1.053684 0.178741 -0.424433 0.420046 0.945861 0.282337 -0.167683 0.645482 -0.047820 -0.969059 0.810758 -0.054193 -0.160479 -0.521083 0.282929 0.771644 -0.536656 0.164189 -0.346783 -0.233737 -0.684831 -1.332399 -0.798901 0.604683 0.624687 0.064021 0.032313 -0.036695 -0.238763 0.590981 0.236648 -0.211145 0.542192 0.419901 0.423387 0.509592 -0.318292 0.123430 0.694262 0.179415 -0.529337 0.358918 0.070521 0.299182 -0.301174 0.387926 0.701022 -0.061307 0.087692 0.047849 -0.063757 0.605408 0.067216 -0.893952 0.035680 0.579912 -0.214985 -0.237462 0.183595 0.510302 -0.567569 0.337499 0.125859 0.072901 0.713742 -1.499008 0.641686 0.721588 0.129400 0.099577 -0.599516 0.369943 -1.199080 0.113495 0.437742 0.699152 0.197749 -0.125880 -0.246031 -0.736853 0.330017 0.348806 0.557053 -0.162746 0.490121 -0.346658 0.101508 -0.493242 -0.951150 -0.344239 0.655712 -0.515827 0.129116 0.556208 -1.703739 0.508982 -0.947026 -0.523597 -0.246577 0.105859 0.467397 -0.748496 -0.650036 0.065339 -0.434207 -1.902195 -0.938931 -0.236963 0.248511 -0.196182 -0.357449 -0.082830 -0.780056 1.018999 -0.217316 0.001164 0.477401 0.135793 1.221894 0.973768 -0.717318 -0.097716 -0.443456 0.668717 -0.823771 0.421919 0.684294 -0.056896 0.035066 1.124718 -0.017095 0.151416 -0.280697 0.819903 -0.305810 -1.034536 0.476533 -0.366578 0.430913 1.402711 0.550377 -0.632452 -0.506820 -1.154007 0.277587 0.290148 -0.271462 0.260251 -1.169403 -0.243655 0.890658 -0.107362 -0.902511 0.564603 -0.147778 -0.676106 -0.856163 1.463523 1.354566 -0.885723 1.079375 -0.602714 0.613899 -0.885508 -0.148791 -0.601346 -0.109206 0.476712 0.331471 0.014093 -0.044465 0.308409 -0.558586 -0.737911 -0.003141 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.042536 0.202646 0.137250 0.014529 0.261946 0.045219 0.146519 0.043450 -0.166282 -0.260925 -0.101344 -0.275340 -0.390466 0.356159 -0.000863 0.221497 0.573032 0.205335 0.058406 -0.154716 0.162289 -0.466104 0.549240 0.516521 -0.397215 0.141786 0.198008 0.150873 -0.017364 0.386131 -0.216827 -0.305618 0.284322 -0.283900 0.187103 -0.340544 -0.046032 -0.033648 -0.019005 -0.767846 -0.051349 0.100417 0.108345 -0.011992 -0.035599 0.307372 0.558357 0.288973 -0.072596 0.314782 0.107944 -0.139078 0.204804 0.136279 0.139697 0.193767 0.164828 -0.087166 -0.323029 0.105097 -0.069876 -0.681741 -0.044318 0.276554 0.467220 -0.098010 -0.058609 0.154805 -0.196458 0.037945 0.019394 0.196815 0.168328 0.054738 0.290602 -0.448646 0.008335 -0.592933 -0.209512 -1.181533 -0.410931 -0.387759 0.275637 0.025757 0.293141 0.053491 0.527802 -0.010094 0.175772 0.041743 0.586721 -0.539136 -0.182382 -0.185406 0.070418 0.140075 -0.261941 -0.068415 0.293507 -0.184974 -0.329244 -0.378065 0.513860 0.069315 -0.219733 -0.171466 -0.124811 0.357705 -0.574525 -0.384246 -0.659909 -0.295748 -0.143827 -0.531552 0.339724 0.106913 0.256911 0.311364 -0.073472 -0.426473 0.158248 0.301316 -0.027535 -0.342599 -0.156586 0.440905 0.069508 -0.053309 0.247420 0.146769 0.122563 0.528555 0.577791 -0.071190 -0.132402 0.172371 -0.287577 0.018461 -0.181839 -0.225410 0.124159 -0.450603 -0.037134 0.152328 -0.278958 0.031304 0.221666 -0.095167 0.221623 0.590196 -0.046629 0.199037 0.097632 -0.460716 0.332339 -0.206640 -0.160814 0.118672 0.396035 0.253019 -0.399645 -0.260152 0.096292 0.466488 0.231057 -0.410891 -0.297572 -0.213233 0.170509 0.019580 0.120475 0.162392 0.144400 -0.271192 -0.008523 0.075648 0.757328 -0.376188 -0.189787 0.133380 -0.139505 -0.116625 -0.732396 -0.095950 -0.281635 -0.092699 -0.195555 -0.031082 -0.004011 0.438959 -0.668305 0.414487 -0.338652 -0.252775 0.368365 -0.006837 -0.096766 -0.612998 0.097952 0.348854 0.441564 0.100642 0.093398 -0.063025 -0.418175 -0.060349 -0.034853 0.227431 -0.179097 0.331151 -0.057146 -0.379888 -0.276271 -0.123277 0.098554 -0.278989 0.006848 0.177330 0.394416 -0.769665 0.401905 -0.109554 -0.265708 0.224621 0.120588 0.222862 -0.400011 -0.508971 0.192719 -0.158183 -0.266023 -0.183318 -0.098109 0.189270 -0.042100 -0.352099 -0.049692 -0.398921 0.329423 -0.015798 0.194112 0.256901 0.128813 0.546448 0.235578 -0.421065 -0.196919 0.005742 -0.164630 -0.457895 -0.043515 -0.204594 -0.187812 0.354732 0.683113 0.157192 0.076262 -0.054184 0.436935 -0.515815 -0.216417 0.411900 0.282827 -0.052447 0.224270 0.393210 -0.360151 -0.252952 -0.234607 -0.056516 0.054206 -0.276564 0.124207 -0.500889 -0.036364 0.296191 -0.120991 -0.156024 0.243415 -0.023706 0.001308 -0.245768 0.494205 0.561322 -0.456918 0.107082 -0.257345 0.130278 -0.523223 -0.238139 -0.028978 0.399264 -0.167411 0.010519 0.233020 0.120995 0.028036 -0.257304 -0.162951 -0.244861 +PE-benchmarks/snake-ladder.cpp__std::deque >::begin() = 0.036863 0.420172 0.456205 -0.148082 0.416983 0.283831 0.143694 0.163517 -0.264429 -0.324484 -0.173171 -0.561257 -0.655366 0.475978 -0.049466 -0.015843 0.773879 0.182877 0.010943 -0.151641 0.034716 -0.231736 0.704476 0.730406 -0.635751 0.257795 0.126788 0.256801 -0.072357 0.713503 -0.307077 -0.645398 0.141479 0.110151 0.337235 -0.299277 -0.164047 -0.243237 -0.259742 -1.141630 -0.079560 0.505574 0.042518 -0.025205 0.168146 0.321777 0.957479 0.348709 -0.091285 0.263288 0.154472 0.024728 0.316433 0.073465 0.228534 0.084793 0.496805 -0.192454 -0.403476 0.164019 -0.063744 -0.685235 -0.210165 0.464301 0.610990 -0.047451 -0.180503 -0.153182 -0.128275 0.041399 -0.063342 0.335676 0.323249 0.342122 0.331777 -0.029528 0.169397 -0.496682 0.015603 -1.189440 -0.617703 -0.528658 0.563651 0.462130 0.140547 -0.317534 0.786409 -0.098475 0.296903 0.085046 0.839579 -0.485559 -0.183111 -0.289827 -0.096133 0.243260 -0.247816 -0.077993 0.081039 -0.170697 -0.461537 -0.374076 0.478986 -0.056644 -0.354902 0.224994 -0.159253 0.457108 -0.685692 -0.200260 -0.810007 -0.144584 0.052615 -0.770973 -0.023891 0.092041 0.036625 0.360764 -0.158134 -0.374933 0.217806 0.250081 -0.182583 -0.154212 -0.638484 0.728678 0.160122 -0.142309 0.262403 0.197763 0.315487 0.424723 0.472383 -0.133475 -0.123447 0.227758 -0.209332 -0.083093 -0.213760 -0.087888 -0.027391 -0.421549 -0.053347 0.157627 -0.369471 0.072686 -0.453993 -0.218257 0.269525 1.150635 -0.198895 0.328405 0.047084 -0.604747 0.543496 -0.057937 -0.351036 0.054116 0.435609 0.515712 -0.448890 -0.286741 0.202450 0.722219 0.282638 -0.409275 0.084758 -0.112711 0.017806 -0.109614 0.403367 0.110535 0.172868 -0.330817 -0.088456 0.183490 1.010727 -0.252281 -0.786367 0.070430 -0.046408 0.054663 -0.404616 0.035881 -0.102097 -0.099311 -0.053759 -0.085874 0.203409 0.597352 -1.109382 0.608982 -0.111535 -0.453155 0.653626 -0.170687 -0.098115 -0.407882 0.151054 0.531753 0.644027 0.194655 -0.112941 -0.214533 -0.568580 -0.094879 0.056278 0.313476 -0.363462 0.497707 0.005496 -0.526921 -0.342977 -0.601914 0.023797 -0.206372 -0.423541 0.198526 0.349710 -1.120863 0.638948 0.023794 -0.260487 0.040574 -0.078808 0.109128 -0.543792 -0.663026 0.098855 -0.242124 -0.575339 -0.163830 -0.284655 0.198460 0.050041 -0.104682 -0.312820 -0.571287 0.588329 0.040462 0.389649 0.417947 0.171153 0.594942 0.717198 -0.439036 -0.115649 -0.285882 0.296763 -0.402480 -0.090577 0.014977 -0.409643 0.326602 0.874624 0.011518 0.024638 -0.431236 0.531297 -0.341887 -0.261847 0.406638 -0.162800 -0.084801 0.236726 0.464590 -0.326124 -0.286478 -0.504459 -0.134787 -0.058551 -0.352398 0.167656 -0.637782 -0.082122 0.503906 -0.286365 -0.440769 0.255870 -0.133308 -0.232177 -0.167383 0.674723 0.516603 -0.511905 0.538177 -0.432540 0.361179 -0.704225 -0.301578 -0.087544 0.017212 -0.213491 -0.104137 0.096170 0.104087 0.042718 -0.204124 -0.239285 -0.063488 +PE-benchmarks/snake-ladder.cpp__std::deque >::end() = 0.036863 0.420172 0.456205 -0.148082 0.416983 0.283831 0.143694 0.163517 -0.264429 -0.324484 -0.173171 -0.561257 -0.655366 0.475978 -0.049466 -0.015843 0.773879 0.182877 0.010943 -0.151641 0.034716 -0.231736 0.704476 0.730406 -0.635751 0.257795 0.126788 0.256801 -0.072357 0.713503 -0.307077 -0.645398 0.141479 0.110151 0.337235 -0.299277 -0.164047 -0.243237 -0.259742 -1.141630 -0.079560 0.505574 0.042518 -0.025205 0.168146 0.321777 0.957479 0.348709 -0.091285 0.263288 0.154472 0.024728 0.316433 0.073465 0.228534 0.084793 0.496805 -0.192454 -0.403476 0.164019 -0.063744 -0.685235 -0.210165 0.464301 0.610990 -0.047451 -0.180503 -0.153182 -0.128275 0.041399 -0.063342 0.335676 0.323249 0.342122 0.331777 -0.029528 0.169397 -0.496682 0.015603 -1.189440 -0.617703 -0.528658 0.563651 0.462130 0.140547 -0.317534 0.786409 -0.098475 0.296903 0.085046 0.839579 -0.485559 -0.183111 -0.289827 -0.096133 0.243260 -0.247816 -0.077993 0.081039 -0.170697 -0.461537 -0.374076 0.478986 -0.056644 -0.354902 0.224994 -0.159253 0.457108 -0.685692 -0.200260 -0.810007 -0.144584 0.052615 -0.770973 -0.023891 0.092041 0.036625 0.360764 -0.158134 -0.374933 0.217806 0.250081 -0.182583 -0.154212 -0.638484 0.728678 0.160122 -0.142309 0.262403 0.197763 0.315487 0.424723 0.472383 -0.133475 -0.123447 0.227758 -0.209332 -0.083093 -0.213760 -0.087888 -0.027391 -0.421549 -0.053347 0.157627 -0.369471 0.072686 -0.453993 -0.218257 0.269525 1.150635 -0.198895 0.328405 0.047084 -0.604747 0.543496 -0.057937 -0.351036 0.054116 0.435609 0.515712 -0.448890 -0.286741 0.202450 0.722219 0.282638 -0.409275 0.084758 -0.112711 0.017806 -0.109614 0.403367 0.110535 0.172868 -0.330817 -0.088456 0.183490 1.010727 -0.252281 -0.786367 0.070430 -0.046408 0.054663 -0.404616 0.035881 -0.102097 -0.099311 -0.053759 -0.085874 0.203409 0.597352 -1.109382 0.608982 -0.111535 -0.453155 0.653626 -0.170687 -0.098115 -0.407882 0.151054 0.531753 0.644027 0.194655 -0.112941 -0.214533 -0.568580 -0.094879 0.056278 0.313476 -0.363462 0.497707 0.005496 -0.526921 -0.342977 -0.601914 0.023797 -0.206372 -0.423541 0.198526 0.349710 -1.120863 0.638948 0.023794 -0.260487 0.040574 -0.078808 0.109128 -0.543792 -0.663026 0.098855 -0.242124 -0.575339 -0.163830 -0.284655 0.198460 0.050041 -0.104682 -0.312820 -0.571287 0.588329 0.040462 0.389649 0.417947 0.171153 0.594942 0.717198 -0.439036 -0.115649 -0.285882 0.296763 -0.402480 -0.090577 0.014977 -0.409643 0.326602 0.874624 0.011518 0.024638 -0.431236 0.531297 -0.341887 -0.261847 0.406638 -0.162800 -0.084801 0.236726 0.464590 -0.326124 -0.286478 -0.504459 -0.134787 -0.058551 -0.352398 0.167656 -0.637782 -0.082122 0.503906 -0.286365 -0.440769 0.255870 -0.133308 -0.232177 -0.167383 0.674723 0.516603 -0.511905 0.538177 -0.432540 0.361179 -0.704225 -0.301578 -0.087544 0.017212 -0.213491 -0.104137 0.096170 0.104087 0.042718 -0.204124 -0.239285 -0.063488 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/snake-ladder.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::~_Deque_base() = 0.162058 1.837287 1.773074 -1.408828 1.694031 2.509798 0.131412 -0.105788 -0.797269 -0.579080 -0.535676 -2.345244 -1.972510 1.437495 -0.528347 -0.599969 2.099291 -0.330755 -0.385305 -0.002464 -0.012828 1.360229 1.979824 2.103772 -2.072229 0.771330 0.422771 0.590147 -0.580222 2.453377 -0.955022 -3.095043 -0.506630 1.504020 0.828746 -0.018366 -0.915494 -1.380388 -0.412700 -3.158533 -0.251780 2.155074 -0.839770 -0.197554 0.939747 -0.576603 3.515289 0.900955 -0.225944 -0.118886 0.702695 1.440177 0.615834 -0.243690 0.901670 -0.127557 2.150512 -0.606850 -0.408552 0.072849 -0.255169 0.250002 -0.996078 1.945635 1.601495 0.358894 -0.978448 -1.176674 0.088608 -0.003474 -0.801649 1.420177 0.852982 2.358509 0.517457 1.138041 0.858550 -0.878229 1.178098 -0.770047 -1.742801 -1.069982 0.935095 2.578517 0.123857 -1.817523 2.646099 -0.690163 0.671469 0.601841 2.734780 -0.763339 -0.047305 -0.939518 -1.417849 0.369983 -0.153179 0.191083 -1.480657 -0.282178 -1.430796 -1.158838 0.119690 -0.331322 -1.210355 1.393140 -0.206517 1.050075 -1.167937 0.296817 -1.349237 0.859215 0.459959 -2.677328 -2.647037 -0.314901 -0.978258 0.335599 -0.927405 -1.376788 0.712963 0.576785 -1.149752 0.023742 -2.032472 1.973816 1.383129 -0.414970 0.133437 0.163042 1.592597 1.072300 0.039470 -0.616875 0.050059 0.139938 0.346262 -0.583667 -0.397769 0.774945 -1.228542 -0.511219 0.025010 1.209076 -0.896651 0.318106 -3.110101 -1.376035 0.440354 6.048180 -1.386003 1.333438 -0.001105 -2.095262 1.369313 0.310611 -1.589310 -0.444748 0.650462 2.386355 -1.729446 -0.733561 1.508651 2.484470 0.677913 -0.705285 1.804795 0.539686 -0.887915 -0.966260 1.845522 -0.235239 0.102882 -0.844783 -0.700928 1.187535 3.254546 -0.018141 -3.788193 0.187147 1.049264 0.972145 1.130190 0.424780 -0.193491 -0.070601 1.387737 -0.412028 1.614259 1.824506 -3.941762 1.675781 0.929537 -1.788975 2.191768 -0.547381 -0.415774 0.959994 0.512449 1.959389 1.602902 0.393418 -0.543928 -1.283790 -1.673846 -0.245955 0.633686 0.830318 -1.686265 1.650788 0.553147 -1.974713 -0.971814 -2.344237 -0.604043 -0.462836 -2.691048 0.553397 -0.112883 -3.386205 2.539854 1.162432 -0.010346 -0.629314 -1.486220 0.343545 -1.436345 -1.928891 0.241455 -0.754157 -1.282148 0.697905 -1.234699 0.504605 1.057240 1.844023 -2.269354 -1.912489 1.638916 0.655046 1.899557 1.327011 0.774093 0.752599 1.694281 -0.513910 -0.218992 -2.251251 2.982644 0.731048 -0.902367 0.267177 -1.612970 0.724519 1.961740 -0.885127 -0.769820 -2.584120 1.007452 -0.049877 0.269673 0.324347 -1.708637 -1.262156 -0.485369 0.837649 0.121767 -0.465442 -1.881912 -0.193933 -1.435199 -1.222193 0.332741 -1.187251 -0.295726 1.719020 -1.319817 -1.733908 0.392144 -0.326686 -1.001273 0.576739 1.408465 0.099626 -0.696806 2.136212 -1.776546 1.625455 -2.105019 -1.452526 0.110102 -2.224250 -0.693336 -1.158086 -0.891354 0.479387 0.022482 0.611230 -0.341114 0.645879 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.097473 1.840169 1.526155 -1.064946 1.574044 1.915908 0.218109 -0.294476 -0.516576 -0.522702 -0.576822 -1.469221 -1.603830 1.316047 -0.304127 -0.099817 2.129924 -0.176660 -0.210666 -0.406036 0.626013 0.130979 2.080291 2.051502 -2.153535 0.741114 1.368074 0.579956 0.112636 1.892539 -1.399693 -1.880481 0.071816 0.067680 0.738361 -0.599961 -0.626305 -1.384783 0.020446 -3.004899 -0.246102 0.420941 -1.111487 -0.135093 0.327412 0.430123 3.328337 0.983807 -0.618443 0.086794 0.901777 0.761041 0.286762 -0.004730 0.681379 0.374537 1.952641 0.501665 -0.310293 0.030618 -0.114982 -0.655223 -0.402239 1.797170 1.650701 0.124903 -0.630997 -0.017833 0.028223 -0.211213 -0.735554 1.213679 0.838978 1.833229 0.892113 -0.992772 0.601768 -2.234546 0.230921 -2.381970 -1.649412 -1.398299 0.284486 0.228381 0.788169 -0.569132 2.404852 -0.307335 0.875738 0.480066 2.614843 -1.564744 -0.129810 -0.952092 -1.037803 0.351112 -0.398345 0.321601 -0.437471 -0.863549 -1.322362 -1.679887 0.995381 0.095901 -1.190946 0.267838 -0.250626 1.094320 -1.323664 -0.435188 -1.704635 -0.215164 -0.301302 -2.592190 -1.217149 -0.231061 0.984286 0.345149 -0.444571 -2.066603 0.402528 1.387221 -0.761819 -0.898124 -0.610928 1.815477 1.510939 -0.228651 0.409315 -0.092175 1.381223 1.654166 1.500441 -0.435834 -0.287736 0.117356 -0.514202 -0.564370 -0.607243 0.344061 -0.194319 -0.852692 0.025416 1.514664 -0.873447 0.306297 0.074875 -1.215902 0.695004 5.700470 -0.886878 1.047396 -0.017881 -2.205553 0.970156 -0.230184 -1.533881 0.098629 0.946007 2.041965 -2.757348 -0.843843 1.053981 2.183028 0.704512 -1.679669 0.375131 -0.124614 -0.705607 -0.622457 1.060782 -0.100291 0.144963 -0.849390 -0.558096 1.137348 3.390697 -0.863749 -3.000605 0.361203 0.255636 0.224431 -0.798057 0.022353 -0.501468 -0.052797 0.766495 -0.400889 1.284757 1.772374 -4.037370 1.442965 -0.218675 -1.836929 1.826654 -0.056956 -0.408153 -0.020310 0.849096 1.945043 1.439650 0.404907 -0.290040 -0.952649 -1.641708 -0.263239 0.423093 0.792334 -1.371614 1.467440 0.650195 -2.020006 -1.155247 -1.315189 -0.074845 -0.664153 -1.420943 0.567103 -0.611884 -3.944809 2.436205 0.517959 -0.285267 0.146171 -1.203740 0.692883 -1.550218 -2.065444 0.642759 -0.315273 -0.515145 0.165708 -0.859915 0.843346 0.749834 1.024598 -1.934420 -2.343727 1.078938 0.217798 1.360553 1.260604 1.012228 1.647767 0.338615 -0.708994 -1.162093 -1.159171 1.751063 0.424301 -1.004703 -0.708743 -1.320938 1.061716 2.307855 -0.681021 -0.081913 -1.633732 1.085986 -1.539033 -0.112969 0.598431 0.596112 -1.325892 -0.199670 0.917749 -0.264975 -0.782256 -1.306034 -0.631268 -0.821798 -1.393916 0.393495 -1.385259 -0.219543 1.716551 -0.917671 -1.072294 0.789299 -0.447634 -0.143291 0.055301 1.173950 1.979989 -1.484975 0.878462 -1.506260 1.375002 -2.246511 -1.661871 0.406166 -0.998681 -0.436552 -0.833922 -0.212586 0.654686 -0.067861 0.012523 -0.055651 -0.114244 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_destroy_nodes(queueEntry**, queueEntry**) = -0.280910 0.613662 0.426447 -0.599673 0.844427 0.632485 0.320973 0.051308 -0.666269 -1.040547 -0.330176 -1.031987 -1.389410 1.282096 -0.228504 0.452377 2.095984 0.446534 0.043443 -0.534550 0.953454 -1.043138 1.853733 2.014472 -1.735615 0.263934 0.913270 0.779172 0.241084 0.996547 -0.054674 -1.413386 0.452316 -0.726259 0.965912 -1.177803 -0.166536 -0.018111 0.020002 -2.885518 -0.274307 0.573288 -0.105652 0.024633 0.073935 0.645630 2.005653 1.093749 -0.744913 0.780481 0.875257 0.220471 0.516575 0.174494 0.094786 0.377272 0.092692 -0.061909 -0.494528 0.316245 -0.207380 -1.487697 0.150149 1.411289 1.831774 -0.277386 -0.355897 0.413253 -0.145578 0.199629 -0.081347 1.000794 0.530010 0.479292 1.148071 -1.794876 -0.265078 -3.085269 0.092258 -3.780301 -1.375936 -1.269303 0.840214 0.484197 0.738523 -0.259233 2.191700 -0.189740 0.484950 1.173702 2.035650 -1.322093 -0.363830 -1.168401 -0.485547 0.575270 -0.821031 -0.099039 0.457998 -0.166642 -1.157254 -1.484060 0.899331 0.109820 -0.945198 -0.873886 -0.471973 1.338210 -1.613000 -1.022398 -1.981880 -0.052610 -0.275200 -2.252913 0.233016 -0.446271 0.611939 0.642826 -0.379751 -1.371093 0.385607 0.982599 -0.309643 -0.879388 -0.572037 1.570940 0.764930 -0.290043 0.442744 0.509139 0.499187 1.654503 1.555301 -0.468928 -0.509133 0.717625 -0.835953 -0.207241 -1.067918 -0.287039 0.956991 -1.312671 -0.338509 0.700721 -0.897722 -0.332382 0.842007 -1.001816 0.752910 4.177721 -0.302800 0.863879 0.559387 -1.574169 1.321209 -0.229427 -0.543608 0.607904 1.356390 1.152597 -2.121570 -0.968774 0.558287 1.913777 0.745119 -1.278540 -0.932550 -0.284618 0.170042 -0.235801 0.600134 0.298644 0.016762 -0.768904 -0.161360 0.698724 2.550773 -0.915488 -0.746055 0.181760 0.863901 -0.496242 -2.031926 -0.155221 -1.440835 -0.305297 0.179246 -0.067241 0.609989 1.660641 -2.917649 1.345391 -0.522797 -0.488672 0.866987 0.054028 -0.403057 -2.329193 0.552785 1.248605 1.462428 -0.011791 0.479733 -0.252633 -1.668306 -0.052131 0.217723 0.915873 -1.001767 1.381571 -0.272522 -1.125154 -1.007916 -0.183969 -0.450034 -0.955556 -0.342217 0.690266 0.884055 -2.408637 1.636286 -0.356649 -0.673225 0.545066 -0.202405 1.144345 -1.624883 -1.854597 0.860413 -0.241634 -0.814509 -0.475604 -0.529140 1.012039 0.114794 -0.592707 -0.776681 -1.928157 1.153687 -0.115091 1.079927 0.955057 0.395611 1.837786 0.332790 -1.042369 -1.053230 -0.744563 0.159342 -0.511645 -0.530344 -1.255345 -0.625445 1.104909 2.296199 0.025001 -0.212366 -0.280068 1.614586 -1.617817 -0.507815 0.859023 0.602856 -0.477149 0.533800 1.008605 -1.250901 -0.729231 -1.318974 0.335048 -0.043489 -1.059798 0.651718 -1.592286 -0.001511 1.039194 -0.453425 -0.482507 0.895998 0.371323 0.022620 -0.373299 1.725452 1.681549 -1.191194 0.215630 -1.356043 0.726941 -2.022858 -1.103591 -0.309352 0.568906 -0.295675 -0.110403 0.309161 0.706980 0.325488 -0.305003 -0.515182 -0.421894 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_map(queueEntry**, unsigned long) = -0.189203 0.648831 0.640183 -0.123378 0.999220 0.462398 0.558507 0.497595 -0.714346 -1.261853 -0.222702 -1.270060 -2.039430 1.491257 -0.086755 0.357142 2.400694 0.603064 0.171158 -0.691710 0.725008 -1.289642 2.305219 2.319638 -1.946523 0.431075 0.767931 0.738032 0.211288 1.048379 -0.241514 -1.493472 1.009471 -0.798179 0.899904 -1.137743 -0.220377 -0.383005 -0.389652 -3.262926 -0.371362 0.748681 -0.381275 0.058461 0.116065 1.701311 2.378422 1.254122 -0.711917 1.309374 0.703944 -0.495225 0.731104 0.321870 0.164114 0.075095 0.079900 0.095730 -1.157868 0.473822 -0.251798 -2.598091 -0.331247 1.330194 2.059675 -0.458169 -0.399601 0.396760 -0.444864 0.271076 0.022077 1.033589 1.300854 0.373932 1.657736 -1.350864 -0.562518 -2.946873 -0.451777 -5.071759 -1.796414 -1.567337 1.774741 0.097499 0.654514 -0.522593 2.360202 0.041063 0.575309 1.141939 2.488864 -1.726688 -0.702211 -1.093650 0.045329 0.768895 -1.163562 0.042024 1.125323 -0.598528 -1.487706 -1.454874 1.346425 -0.083125 -0.994654 -0.783037 -0.623421 1.617892 -2.136467 -1.006916 -2.798674 -0.610834 0.015769 -2.528228 0.470335 0.329110 1.231206 1.311581 -0.408480 -1.056955 0.556991 0.873965 -0.217596 -1.036763 -0.409373 2.054158 0.609716 -0.094879 0.931931 0.992511 0.703434 1.826394 2.323982 -0.255555 -0.615873 0.752661 -1.004807 0.151466 -0.882397 -0.496187 1.066982 -1.540292 -0.002065 0.491046 -1.125973 -0.434570 0.663779 -0.651168 0.833393 3.500414 -0.166548 1.040683 0.569029 -1.708511 1.441396 -0.699292 -0.596011 0.670261 1.663712 1.193011 -1.821378 -0.950602 0.591868 2.188725 0.886848 -2.062568 -0.635977 -0.368613 0.596624 -0.540627 0.793352 0.676316 0.698475 -0.927125 -0.002340 0.887905 2.858578 -1.487748 -1.544654 0.219091 0.260043 -0.018397 -2.439375 -0.120664 -0.688402 -0.417278 0.143272 0.021163 0.316737 1.858079 -3.102921 1.562091 -0.712816 -0.665480 1.236916 0.240702 -0.612982 -2.346463 0.579411 1.395135 1.718606 0.739367 0.059765 -0.291361 -1.857337 -0.119809 0.274433 0.923501 -0.781511 1.585386 -0.450083 -1.106064 -1.214999 -0.897009 -0.055157 -0.754978 -0.346855 0.806378 1.118484 -3.448595 1.700844 -0.515198 -1.219839 0.302484 -0.013345 1.212721 -1.824556 -2.290684 0.789052 -0.827697 -1.886911 -1.003075 -0.613934 0.710372 0.263280 -0.902247 -0.512987 -2.144362 1.947230 -0.049132 1.227482 1.130795 0.401281 2.784445 0.838593 -1.725949 -0.986858 -0.802049 0.543549 -1.348106 -0.527012 -0.962474 -0.743936 1.199590 2.672826 0.146773 -0.010594 -0.697561 1.789059 -2.277574 -0.984154 1.422368 1.335506 -0.098324 1.286730 1.488819 -1.532899 -0.761166 -1.382950 -0.182668 0.015880 -1.222888 0.576748 -2.057120 -0.047095 1.195829 -0.417189 -0.639965 0.906527 -0.045915 -0.084158 -0.837630 2.033179 2.953944 -2.178544 0.542789 -1.489727 1.072042 -2.260579 -1.357153 -0.091474 0.852654 -0.292095 -0.080117 0.666204 0.433419 0.395152 -1.391710 -1.044533 -0.312485 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_node(queueEntry*) = -0.123887 0.522906 0.685557 -0.438488 1.206033 0.495682 0.274420 0.280557 -0.613000 -0.978585 -0.344651 -1.023631 -1.639356 1.125311 -0.171510 0.397339 1.558240 0.094065 0.050595 -0.590905 0.778911 -0.868835 1.642658 1.198395 -1.631709 0.333080 0.518727 0.915129 0.276049 1.163402 -0.268381 -1.085303 0.363147 -0.343153 0.868537 -0.737658 -0.022248 -0.162010 -0.399881 -2.244242 -0.362241 0.767106 -0.466004 0.292557 0.131782 1.381792 1.713580 0.969747 -0.728044 0.914304 0.835252 -0.248306 0.613424 0.261895 -0.161167 0.023466 0.473588 -0.114391 -0.823014 0.306964 -0.182163 -1.847559 -0.094284 0.959107 1.590889 -0.585119 -0.410155 0.585459 -0.242028 0.211213 0.053834 0.922055 0.790567 0.264918 1.327964 -0.841158 -0.309366 -2.036764 -0.042725 -3.492154 -1.226767 -1.338780 0.996319 0.432852 0.349616 -0.490903 2.085832 -0.011125 0.223771 0.918677 1.751765 -1.155037 -0.339812 -1.236460 -0.122936 0.371946 -0.866404 -0.398280 0.624542 0.067184 -0.861502 -0.940468 0.706505 -0.353596 -0.766593 -0.505200 -0.875600 1.320057 -1.759532 -0.687177 -2.075551 0.003880 0.001629 -1.890535 0.085703 0.214339 0.729161 0.572964 0.165874 -0.623666 0.432885 0.777676 -0.355432 -0.458702 -0.566720 1.636524 0.716336 -0.279669 0.588283 0.830070 0.535818 1.121081 1.622411 -0.241484 -0.930942 0.733704 -0.479997 0.013541 -0.701259 -0.025885 0.762575 -1.195626 -0.097578 0.441329 -0.595221 -0.180726 0.050246 -0.846057 0.672856 2.696822 -0.235092 0.535184 0.147313 -1.206596 1.174430 -0.163664 -0.478737 0.595039 0.883737 0.933142 -1.296704 -0.813180 0.729872 1.475082 0.551990 -1.567230 -0.302035 -0.209004 0.428364 -0.322232 0.437736 0.815110 0.163150 -0.399217 -0.070266 0.209241 2.321394 -0.924685 -1.319386 0.522075 0.332341 -0.379716 -1.683802 -0.209274 -0.490942 -0.646586 0.264783 0.036538 0.312215 1.446382 -2.473818 1.160557 -0.125642 -0.622327 0.934813 -0.283286 0.012734 -1.763201 0.090037 1.043928 1.205981 0.327615 0.042329 -0.423081 -1.376986 0.281254 0.299092 0.735797 -0.508218 1.053732 -0.328956 -0.742027 -0.846480 -0.718328 -0.346777 -0.146106 -0.409607 0.511207 0.569873 -2.735058 1.287299 -0.613149 -0.648804 0.347983 0.136723 1.084073 -1.145920 -1.541197 0.724198 -0.513623 -1.464111 -0.855193 -0.300565 0.576056 0.146019 -0.577528 -0.588053 -1.864867 1.213328 -0.217769 0.677699 0.800815 0.411059 1.840729 0.729027 -1.240180 -0.792891 -0.671391 0.466335 -0.735177 -0.050821 -0.509075 -0.327883 0.867030 1.770256 0.153028 0.194623 -0.653059 1.318159 -1.462190 -0.770956 0.990575 0.570862 -0.327054 1.022923 1.074365 -0.856094 -0.717438 -1.237894 0.087514 -0.225811 -0.779756 0.376849 -1.503153 -0.254791 1.119049 -0.301726 -0.750805 0.764076 0.022530 -0.344400 -0.954466 1.955092 2.195751 -1.449827 0.579687 -1.101569 0.956364 -1.657578 -0.886757 -0.207422 0.400455 -0.039426 0.037187 0.538503 0.402185 0.283627 -0.827988 -0.657145 -0.503608 +PE-benchmarks/snake-ladder.cpp__std::__deque_buf_size(unsigned long) = -0.344857 -0.442576 -0.244121 -0.445243 0.257755 -0.042797 0.043426 -0.355504 -0.712604 -0.347823 0.124852 -0.797734 -0.200038 0.577765 -0.148597 0.530652 0.815753 0.196861 -0.148805 -0.185461 0.523212 -0.487390 0.480700 0.886886 -0.304389 0.032596 -0.265112 0.192211 -0.085632 0.075892 0.163691 -0.680776 0.047553 -0.528338 0.159584 -0.251300 -0.299393 0.701251 0.612639 -0.953837 0.036625 0.428973 0.389454 0.114446 0.175952 0.026091 0.315902 0.094735 0.005371 0.734904 0.322511 -0.130678 0.406966 -0.053565 0.311032 0.385835 -0.047976 -0.213913 -0.127150 0.009175 -0.412981 0.174850 0.212421 0.339911 0.545077 -0.090519 -0.443848 0.054934 0.163087 0.103727 0.259759 0.497095 -0.135760 -0.216743 0.268964 -0.715439 -0.104523 -1.269051 0.291116 -1.275808 -0.464006 0.266996 0.514978 0.587710 0.114601 -0.091732 0.874796 -0.458228 -0.485482 0.383024 0.616364 -0.237512 -0.102718 0.007811 -0.360554 -0.254196 0.048708 -0.181190 0.203503 0.521415 -0.532267 -0.366258 0.328420 -0.055240 -0.206563 -0.409205 0.013427 0.495284 -0.656895 -0.419613 -0.194133 0.696099 0.243440 -0.593852 0.071129 -0.470133 -0.362380 0.225359 -0.834060 -0.398398 0.346224 -0.102331 -0.354984 -0.015339 -0.189848 0.329487 0.274450 0.018909 -0.214230 0.390967 -0.021897 0.774908 -0.089820 -0.491283 0.163778 0.207784 0.028669 0.189462 -0.285152 -0.331473 0.122462 -0.475128 -0.063109 -0.198866 -0.338282 -0.115826 0.159529 -0.118975 -0.408000 1.250051 -0.415122 0.759461 0.512277 -0.179228 0.499205 -0.008754 0.383888 0.206276 0.613922 0.232574 -0.514660 -0.536514 0.755996 0.699834 0.088269 -0.404355 -0.449520 0.334139 0.320225 0.177576 0.359599 -0.109784 0.100150 -0.123355 -0.013543 -0.040765 1.263590 -0.149324 0.236942 0.042383 0.490221 0.002189 -0.728696 -0.154578 -0.963827 -0.076026 0.062067 0.257987 0.218993 0.711424 -1.094076 0.485021 -0.234872 0.212837 0.397629 0.293113 -0.315393 -1.559040 -0.557252 0.066052 0.711194 -0.122488 0.339909 0.115434 -0.615783 0.085893 0.000000 0.259845 -0.760890 0.674806 -0.172948 -0.414959 0.188955 0.231182 -0.512927 -0.324441 -0.267146 0.229267 0.791491 -0.517558 0.258665 0.238937 -0.010261 0.223465 0.275479 0.664835 -0.159975 -0.312988 0.359437 -0.291721 -0.310038 -0.052335 -0.105455 0.201591 -0.192302 -0.317919 -0.365779 -0.545614 0.757833 -0.110442 0.886504 0.084505 -0.550075 0.183502 0.112404 -0.290435 -0.172324 -0.125496 -0.328388 -0.355732 -0.019443 -0.418245 -0.199410 0.347804 0.347707 0.297886 -0.438645 0.094531 0.604004 -0.297647 0.398096 0.299486 -0.225854 -0.244466 0.193140 0.424993 -0.486420 0.184668 -0.562442 0.130017 -0.502421 0.052255 0.502260 -0.116033 0.035622 -0.310517 -0.296216 0.137939 0.239218 0.504252 -0.161139 0.176568 0.922878 0.179894 0.176165 0.052703 -0.574138 0.154136 -0.413927 -0.268318 -0.281339 0.629905 -0.589591 -0.234380 -0.135781 0.528305 0.274081 -0.167842 -0.377783 0.286068 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::deallocate(queueEntry*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.057648 0.648388 0.418300 0.049222 0.615643 0.222793 0.336686 0.238464 -0.260549 -0.715942 -0.232931 -0.776189 -1.220647 0.832532 0.025635 0.255540 1.368150 0.310009 0.120440 -0.347801 0.392143 -0.930212 1.319355 1.237604 -1.090699 0.323643 0.574143 0.359591 0.062952 0.740125 -0.394868 -0.778759 0.627881 -0.515564 0.573141 -0.598266 -0.128533 -0.402531 -0.248906 -1.835166 -0.217536 0.370446 -0.032172 -0.028688 -0.038314 0.945899 1.558136 0.705193 -0.344724 0.558553 0.300163 -0.414340 0.457993 0.246074 0.217772 0.136393 0.299242 0.087055 -0.776112 0.237807 -0.134751 -1.648854 -0.216417 0.749057 1.146751 -0.220055 -0.179444 0.365739 -0.370245 0.096607 -0.125462 0.561220 0.744484 0.317742 0.902177 -0.863652 -0.127058 -1.497464 -0.436032 -2.956595 -1.066016 -1.038067 0.775387 -0.071602 0.540923 -0.177820 1.323237 0.061694 0.481120 0.336563 1.576794 -1.171456 -0.425279 -0.639793 0.123088 0.416289 -0.674721 -0.002312 0.809099 -0.568011 -0.866136 -0.861040 1.010814 0.057908 -0.569558 -0.360935 -0.346520 0.875398 -1.208022 -0.669738 -1.706215 -0.760459 -0.133458 -1.461703 0.538916 0.371693 0.637926 0.795507 -0.144451 -0.868379 0.322135 0.665000 -0.088597 -0.771568 -0.306094 1.239040 0.306813 -0.073865 0.652948 0.513023 0.504170 1.097123 1.516360 -0.062707 -0.368352 0.318753 -0.710337 0.021170 -0.392729 -0.399009 0.538530 -0.936699 -0.111693 0.392789 -0.649290 -0.038407 0.449685 -0.384568 0.567403 1.760953 -0.129355 0.503463 0.160992 -1.110605 0.908865 -0.469411 -0.557400 0.248089 0.945486 0.802398 -1.084055 -0.561993 0.351575 1.221864 0.507021 -1.171925 -0.426015 -0.362733 0.338112 -0.272322 0.385481 0.423542 0.459451 -0.590308 -0.027964 0.493696 1.728698 -1.006449 -0.931220 0.273045 -0.175619 0.002760 -1.636738 -0.133328 -0.437667 -0.252754 -0.257526 -0.051706 0.117633 1.075478 -1.670400 0.950830 -0.554586 -0.631906 0.938174 -0.005164 -0.291615 -1.388628 0.427409 0.984947 0.936815 0.412449 -0.051024 -0.336349 -1.035568 -0.123846 0.059009 0.558660 -0.405347 0.865604 -0.288861 -0.756633 -0.803140 -0.569226 0.126724 -0.527700 -0.130301 0.411960 0.735290 -1.946965 1.141594 -0.270352 -0.672183 0.235696 0.027125 0.499419 -1.048264 -1.363043 0.402245 -0.518344 -0.954242 -0.537176 -0.324595 0.374364 0.109108 -0.722020 -0.255295 -1.188536 1.030084 -0.017912 0.603514 0.658266 0.444346 1.571975 0.724905 -1.060316 -0.564957 -0.243412 0.002300 -0.896628 -0.314132 -0.631732 -0.472785 0.770310 1.639203 0.091430 0.191017 -0.410929 0.920048 -1.369886 -0.668318 0.921354 0.719280 -0.159475 0.585349 0.906851 -0.761352 -0.585450 -0.742937 -0.258990 0.005284 -0.815542 0.154107 -1.287063 -0.161104 0.865580 -0.392299 -0.380155 0.531499 -0.127151 -0.016686 -0.585004 1.090341 1.645772 -1.383090 0.275954 -0.792841 0.550824 -1.362531 -0.784070 0.087747 0.682662 -0.180022 -0.107270 0.599926 0.150511 0.086878 -0.861955 -0.521288 -0.403850 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::deallocate(queueEntry**, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/snake-ladder.cpp__std::deque >::deque() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_base() = 0.005082 0.380833 0.596442 -0.581916 1.257868 0.388255 0.378473 0.045049 -0.356303 -0.761964 -0.200337 -0.324188 -1.177589 0.477920 -0.475743 0.040149 0.698194 -0.235790 0.383800 -0.671180 0.682906 -0.643818 1.329496 0.728110 -1.550335 0.253194 0.034619 0.776773 0.136076 1.396673 0.155786 -0.801205 0.192421 0.120128 1.074366 -0.478957 -0.150921 -0.093873 -0.613006 -1.349325 -0.417454 0.770256 -0.301903 0.671276 0.419966 1.041880 1.184975 0.581341 -0.738362 0.960579 0.720889 0.094445 0.770581 0.281501 -0.100639 -0.151774 0.574994 -0.336470 -0.421627 0.275434 -0.636330 -1.169032 0.324101 0.731555 1.247856 -0.493693 -0.135508 -0.011097 -0.470930 0.365657 0.314764 1.039386 0.360228 0.063678 1.263932 -0.348894 0.004249 -1.486196 0.068666 -2.296001 -0.818508 -1.176285 0.491919 0.702154 0.477917 -0.398147 1.526604 0.307134 0.199955 0.608261 0.693823 -0.355754 0.169818 -0.646400 -0.463886 -0.210783 -0.330668 -0.271412 0.078555 0.381366 -0.525697 -0.290272 0.279620 -0.430354 -0.355439 -0.387564 -0.920631 0.807675 -1.330233 -0.239821 -1.299224 0.341333 -0.227502 -1.327288 0.031313 -0.363717 0.512139 0.062160 0.526340 0.219753 0.367106 0.698683 -0.308647 -0.070726 -0.662848 1.258313 0.775460 -0.056921 0.196415 0.509488 -0.391938 0.406554 1.247141 0.208738 -0.874489 0.449584 -0.032702 0.117742 -0.277373 0.531867 0.789290 -0.612398 -0.232418 0.026193 0.029080 -0.249136 -0.352824 -0.913293 0.631021 1.910741 -0.474261 0.552596 0.170264 -0.731584 0.624433 0.451815 0.265789 0.857512 0.822522 0.288139 -0.724099 -0.590770 0.454801 0.608763 0.043025 -1.076264 -0.202509 0.073647 0.214244 -0.111639 0.027664 0.315135 -0.116295 -0.397219 0.179681 -0.522787 1.381294 -0.317541 -0.985062 0.376797 0.474936 -0.650655 -0.550013 -0.218016 -0.360577 -0.434336 0.200757 -0.074411 -0.005366 0.759128 -1.941560 0.646020 -0.102809 -0.103766 0.708629 -0.387601 0.368400 -1.396146 -0.022671 0.325773 0.447664 0.122527 -0.126724 -0.146295 -0.801591 0.746194 -0.045482 0.652438 -0.576112 0.781766 -0.321280 -0.687395 -0.657835 -0.981077 -0.235479 0.251144 -0.545359 0.099518 0.364876 -1.904318 0.395272 -0.483004 -0.627590 0.400436 0.413012 0.819803 -0.266726 -0.845878 0.326876 -0.626466 -1.207712 -1.017869 -0.118941 0.159204 -0.019857 -0.294380 -0.805372 -1.135545 0.820822 -0.535428 0.410892 0.670652 0.427692 1.506128 0.584477 -1.019731 -0.773857 -0.590733 0.564215 -0.356455 -0.031628 -0.087158 -0.332898 0.306618 1.231416 0.237237 0.415427 -0.324279 1.322585 -0.754787 -0.409718 0.812260 -0.005293 -0.045365 0.903387 0.758278 -0.184762 -0.704822 -0.725484 0.304239 0.037581 -0.230840 0.673722 -0.990185 -0.055725 0.308645 0.187761 -0.805710 0.358860 -0.036457 -0.074516 -0.821534 1.501602 1.455506 -0.883083 0.392191 -0.296006 0.499512 -0.926080 -0.126553 -0.615378 -0.119272 0.426678 0.437304 -0.007303 0.644409 0.594930 -0.461013 -0.169753 -0.331830 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.053172 0.402366 0.318813 -0.083756 0.461611 0.168547 0.216516 0.156755 -0.260168 -0.522489 -0.154892 -0.471152 -0.796841 0.606238 -0.064596 0.137441 1.010996 0.264104 0.094311 -0.328197 0.306898 -0.572391 0.977272 0.935371 -0.851524 0.205409 0.446001 0.328297 0.128549 0.532456 -0.202066 -0.606364 0.427920 -0.321060 0.382018 -0.525853 -0.054196 -0.217980 -0.183473 -1.362770 -0.125710 0.148300 -0.117936 0.013624 0.002782 0.674775 1.057275 0.522250 -0.298068 0.476791 0.340636 -0.077619 0.237753 0.165158 0.085567 0.100360 0.187999 -0.024661 -0.466335 0.171409 -0.067537 -1.100290 -0.126471 0.584695 0.857975 -0.158446 -0.097140 0.212203 -0.227548 0.092209 -0.012521 0.377715 0.463325 0.225593 0.620441 -0.671719 -0.147701 -1.257742 -0.258149 -2.184491 -0.727512 -0.745480 0.603973 -0.049083 0.316248 -0.021479 0.954278 0.059822 0.350627 0.376444 1.055629 -0.763809 -0.288928 -0.447374 -0.009174 0.349840 -0.479149 0.017692 0.409049 -0.256961 -0.585727 -0.659428 0.652008 0.013088 -0.419754 -0.306247 -0.247284 0.634799 -0.964868 -0.430902 -1.160278 -0.355310 -0.071551 -1.044045 0.248211 0.113951 0.672224 0.481437 -0.080289 -0.556882 0.184971 0.495350 -0.084585 -0.460222 -0.198136 0.786195 0.263826 -0.063899 0.394439 0.298239 0.310125 0.805669 1.008905 -0.114445 -0.287735 0.281166 -0.458771 -0.034811 -0.388568 -0.210340 0.398181 -0.663614 0.069500 0.295291 -0.467393 -0.194353 0.369836 -0.333021 0.435793 1.412708 -0.065394 0.375480 0.176407 -0.777853 0.456814 -0.317844 -0.328631 0.268215 0.678108 0.505823 -0.698965 -0.419243 0.184801 0.856781 0.378334 -0.806664 -0.325073 -0.251792 0.175741 -0.142564 0.252673 0.258753 0.195752 -0.399473 -0.040573 0.345872 1.198839 -0.568767 -0.593571 0.128806 0.044036 -0.098085 -1.005204 -0.076478 -0.277156 -0.122783 0.004264 -0.039564 0.142240 0.785323 -1.408718 0.657984 -0.340973 -0.332670 0.474667 0.066278 -0.201549 -0.930962 0.317572 0.654176 0.720567 0.233550 0.095079 -0.127424 -0.749958 -0.084638 0.078811 0.417635 -0.332497 0.588856 -0.059584 -0.574739 -0.558515 -0.309072 0.068874 -0.308263 -0.104193 0.299577 0.415531 -1.578479 0.779959 -0.262182 -0.473462 0.192833 -0.032351 0.476012 -0.793607 -0.942723 0.321558 -0.276408 -0.643198 -0.366096 -0.218744 0.370518 0.031794 -0.319700 -0.215023 -0.834314 0.669562 -0.015469 0.388321 0.470856 0.268010 1.135565 0.182369 -0.646614 -0.462248 -0.184165 0.139325 -0.588107 -0.208047 -0.301359 -0.325461 0.524433 1.196003 0.052893 0.030004 -0.182136 0.731793 -0.961579 -0.429618 0.598805 0.636671 -0.097626 0.501245 0.615727 -0.631984 -0.422534 -0.529324 -0.097468 0.080202 -0.558014 0.224881 -0.872918 -0.021413 0.586572 -0.166836 -0.315182 0.445383 -0.076013 0.014583 -0.356826 0.788124 1.249552 -0.905703 0.223032 -0.568042 0.370604 -0.988759 -0.581315 -0.015061 0.353560 -0.106370 -0.000394 0.210854 0.214578 0.082202 -0.435426 -0.333680 -0.223769 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -0.069960 4.663618 5.555731 -5.041240 6.985055 7.937218 0.816766 -1.300833 -3.101436 -1.681621 -1.364074 -7.970812 -7.562761 5.186948 -2.000625 -0.111728 6.875972 -2.165308 -1.551156 -1.282320 2.538384 2.481314 7.715852 6.831123 -8.430407 2.396137 0.806671 3.288056 0.017321 7.502108 -3.769377 -7.677532 -1.037483 2.509684 3.431223 0.059505 -2.520865 -3.801957 -0.645283 -10.395759 -1.282004 6.188106 -2.954165 0.986320 2.791216 2.705610 11.319228 3.630901 -2.001275 1.281415 3.805035 1.716809 3.175239 -0.346900 2.115645 -0.501922 8.040856 0.136558 -1.978295 -0.231588 -1.533089 -1.219132 -1.780321 6.457746 6.992583 -0.093766 -3.463066 -1.367028 0.859622 0.229940 -1.516912 5.977979 3.310421 6.238007 4.452508 1.803773 2.707082 -4.800264 2.914358 -6.216134 -6.118815 -4.097560 3.174791 5.736720 1.357253 -5.963071 10.415607 -1.405802 0.593879 2.235076 9.129655 -3.884128 -0.065074 -3.918951 -4.461704 -0.128921 -1.382820 0.291080 -1.837121 0.097262 -5.173679 -3.684458 1.065641 -1.592614 -4.197689 2.910845 -2.225243 4.344505 -4.841956 -0.111703 -5.405244 2.625555 1.226096 -9.938411 -6.747505 -1.412540 -1.205876 0.676033 -1.617805 -3.910707 2.173976 2.675991 -4.002178 -0.588338 -5.708500 7.941531 6.274567 -1.010795 0.722373 1.948166 4.385101 4.354499 2.390301 -1.846153 -1.788328 0.827738 0.269002 -0.643585 -1.616177 2.532620 -0.750542 -2.868048 -0.459498 3.246318 -2.119394 1.700728 -6.632318 -4.366645 1.138933 19.732180 -4.469627 4.868826 0.321047 -6.433336 5.510401 0.957738 -3.545681 0.763699 2.797335 6.853110 -7.923143 -3.609198 6.225336 8.094920 1.628111 -5.965777 4.985482 2.156649 -1.493540 -3.619147 4.867759 0.644084 0.606532 -2.040238 -1.524537 2.595037 12.877632 -2.099155 -12.461089 2.038955 2.211583 1.766360 0.122274 -0.000805 -0.628739 -1.562548 3.562961 -0.091757 4.821656 6.900398 -13.516484 5.446968 2.372411 -5.540481 8.742258 -2.028962 -1.189058 0.077437 0.470217 5.725049 5.066752 1.787676 -3.187867 -3.755312 -6.453145 1.014181 1.970485 2.751577 -5.552291 6.051677 0.986789 -5.900097 -3.419331 -7.811287 -2.332410 -0.179839 -8.051585 1.904701 -1.311791 -13.040525 7.754331 2.354968 -1.002481 -0.824366 -3.509033 2.620477 -3.958949 -6.263833 1.603070 -3.101705 -5.529720 -1.135384 -2.824806 1.412747 3.110674 4.345712 -8.874681 -8.966123 6.661152 -0.078310 6.431321 4.288853 2.040538 4.411484 5.883849 -3.376428 -3.002998 -6.595755 7.887617 1.938881 -3.154038 0.062169 -4.600256 2.974844 6.571998 -2.394770 -0.550335 -7.886015 4.422081 -2.698739 -0.353038 2.272634 -2.872883 -4.713151 0.305228 3.853061 0.000883 -1.703203 -6.358076 -2.044001 -5.175192 -4.070682 2.249964 -4.200671 -0.861943 4.777343 -3.629644 -4.783540 2.036558 -1.062321 -3.297258 -0.133895 7.786444 5.096005 -4.068763 5.402204 -6.532838 6.544580 -7.421504 -4.937688 0.751418 -5.561492 -1.802091 -2.834128 -1.017498 2.696701 1.061368 -1.519894 -2.009553 1.250547 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.096239 0.499968 0.926542 -0.520466 0.525887 0.402312 0.112524 0.230812 -0.494564 -0.295316 -0.223042 -0.759122 -0.713139 0.614207 -0.148313 -0.271932 1.014489 0.242724 -0.124928 -0.238903 0.007420 -0.111275 0.801432 0.982235 -0.899187 0.343540 0.078652 0.509741 0.063304 1.086834 -0.488197 -0.748043 -0.144250 0.476020 0.556125 -0.420524 -0.250992 -0.330189 -0.470314 -1.555800 -0.032570 0.778634 0.089111 -0.045143 0.389352 0.440343 1.232801 0.409227 -0.158998 0.158287 0.320524 0.220005 0.384740 -0.014452 0.355935 0.089999 1.102261 -0.099048 -0.384584 0.234650 -0.038916 -0.599635 -0.165899 0.690561 0.778653 0.030590 -0.270186 -0.522243 0.143782 0.033502 -0.032890 0.412988 0.291283 0.560127 0.312700 0.140664 0.525722 -0.649825 0.342069 -1.228531 -0.755470 -0.595708 0.848838 0.695106 -0.063299 -0.599676 1.005292 -0.222960 0.393447 0.083330 0.961154 -0.356393 -0.159901 -0.386084 -0.435093 0.357167 -0.177359 -0.160584 -0.085913 -0.026114 -0.535744 -0.310673 0.496468 -0.134400 -0.485478 0.757540 -0.144651 0.583352 -0.748349 -0.028987 -0.793847 0.145857 0.232328 -0.958594 -0.279802 -0.222941 -0.055278 0.250044 -0.257746 -0.309585 0.226229 0.251999 -0.404538 0.168615 -1.275356 1.047001 0.247268 -0.245477 0.147561 0.091282 0.395100 0.165886 0.311930 -0.335677 -0.090741 0.349847 -0.266225 -0.254981 -0.404844 0.026782 -0.004620 -0.350521 -0.159040 0.093024 -0.456987 0.158413 -0.812831 -0.247003 0.322942 1.970433 -0.337015 0.482402 0.011283 -0.673862 0.787241 0.300408 -0.429788 0.085189 0.470996 0.653380 -0.719624 -0.369974 0.221914 0.934005 0.362780 -0.443022 0.298216 -0.072377 -0.276709 -0.058185 0.611935 -0.042617 0.019680 -0.379557 -0.217784 0.169122 1.264593 -0.004136 -1.429171 -0.076152 0.004939 -0.007174 -0.177547 0.169568 0.046429 -0.015278 -0.076311 -0.170968 0.543479 0.763620 -1.852271 0.838220 0.068138 -0.640380 1.025901 -0.403654 -0.074257 -0.415563 0.140393 0.621984 0.938617 0.198722 -0.417093 -0.187870 -0.710656 -0.122225 0.087100 0.399458 -0.596263 0.605696 0.185570 -0.668782 -0.330304 -1.044293 -0.060762 -0.087215 -0.823331 0.217858 0.067917 -1.499784 0.819041 0.139080 -0.164201 -0.052554 -0.278048 -0.128288 -0.688841 -0.720996 -0.036350 -0.091796 -0.701638 -0.291950 -0.440042 0.327151 -0.011387 0.201957 -0.674177 -0.808918 0.707980 -0.141554 0.575037 0.557542 0.110073 0.564926 1.267953 -0.257582 -0.155127 -0.375440 0.605234 -0.251298 -0.135016 0.228231 -0.614945 0.280926 1.006031 -0.153166 0.086777 -0.676868 0.725244 -0.093123 -0.341106 0.316219 -0.709198 -0.137155 0.252829 0.486741 -0.399929 -0.320151 -0.752236 -0.361024 -0.079931 -0.334359 0.369345 -0.637903 -0.036553 0.586646 -0.357726 -0.690522 0.303298 -0.208854 -0.457748 0.017997 0.922000 0.605701 -0.424171 0.922815 -0.584502 0.586987 -0.852703 -0.275593 -0.234260 -0.393388 -0.326109 -0.115808 -0.049865 0.232656 0.086510 -0.025512 -0.200853 0.165317 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator() = 0.100547 0.592691 0.939344 -0.497284 0.534410 0.460509 0.118140 0.038051 -0.451386 -0.122393 -0.290402 -0.682036 -0.568323 0.592537 -0.021815 -0.004629 1.027851 0.218847 -0.167723 -0.263660 0.173592 -0.423794 0.822501 1.044627 -0.920269 0.447837 0.295807 0.515397 0.164983 1.131723 -0.828632 -0.414765 -0.159896 0.081238 0.580477 -0.547948 -0.327370 -0.328762 -0.152414 -1.662372 -0.056919 0.535753 0.206730 -0.052937 0.304873 0.432141 1.314882 0.417808 -0.173246 0.154213 0.304061 -0.034330 0.500871 -0.004233 0.472712 0.406841 1.414579 0.246375 -0.284359 0.222134 -0.013152 -0.652259 0.064192 0.702664 0.808693 -0.002416 -0.342896 -0.283036 0.246145 -0.109562 -0.116160 0.526842 0.103321 0.559671 0.333347 -0.463187 0.812346 -0.843933 0.286008 -1.164962 -0.823259 -0.600479 0.504051 0.308903 0.295308 -0.387866 1.102168 -0.302233 0.400237 -0.207822 0.964172 -0.666498 -0.082904 -0.323299 -0.424338 0.248725 -0.128246 -0.198929 0.117402 -0.241907 -0.533280 -0.486338 0.867372 0.040996 -0.586570 0.675148 -0.133678 0.574863 -0.623219 -0.376151 -0.790484 -0.123960 -0.123884 -0.971808 0.061174 -0.290538 0.014783 0.212961 -0.228927 -0.759179 0.201118 0.453944 -0.363161 -0.151881 -1.124503 1.115235 0.396463 -0.293017 0.180084 -0.030107 0.397722 0.369679 0.545695 -0.340968 -0.105352 0.378772 -0.469513 -0.254187 -0.418852 -0.082361 0.050190 -0.437842 -0.438336 0.238368 -0.449356 0.524268 -0.109656 -0.176112 0.256454 2.280370 -0.317622 0.463056 0.016500 -0.771488 0.977676 0.293000 -0.507874 0.191538 0.512836 0.734692 -1.395864 -0.423220 0.191768 0.992800 0.351526 -0.645894 -0.095056 -0.183140 -0.309513 0.066000 0.571414 -0.123230 0.076142 -0.420236 -0.206845 0.077699 1.555334 -0.265182 -1.379058 0.001780 -0.322987 -0.264782 -0.802508 0.059105 -0.320177 -0.087425 -0.459246 -0.182441 0.531256 0.757455 -1.873997 0.871175 -0.273092 -0.919290 1.339880 -0.424393 -0.067686 -0.629635 0.162172 0.628391 0.930412 0.089721 -0.464320 -0.211109 -0.786243 -0.128512 -0.004556 0.339146 -0.695546 0.722347 0.190001 -0.775435 -0.278920 -0.856940 0.040353 -0.338917 -0.662886 0.266925 -0.045933 -1.405896 0.829527 0.207479 -0.165730 0.273642 -0.258056 -0.190876 -0.660535 -0.724563 0.072356 0.088882 -0.278153 -0.314667 -0.443557 0.388069 -0.021637 -0.041073 -0.828882 -0.960085 0.510327 -0.310617 0.548131 0.637346 0.137791 0.494983 1.303729 -0.328487 -0.338337 -0.101050 0.136148 -0.137120 -0.161540 -0.296232 -0.690041 0.411187 1.120837 -0.080325 0.365767 -0.647835 0.746956 -0.352824 -0.333190 0.314413 -0.520871 -0.309347 0.035080 0.458481 -0.328970 -0.326838 -0.644471 -0.562291 -0.060352 -0.325129 0.469166 -0.667163 -0.100940 0.620797 -0.487081 -0.515001 0.401688 -0.211289 -0.328146 -0.036779 0.932880 0.717170 -0.449315 0.636631 -0.550794 0.562807 -0.874483 -0.192957 -0.188549 -0.094202 -0.459618 -0.197365 0.264781 0.308629 0.109465 -0.139267 -0.051653 -0.099189 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.177492 0.833652 0.772135 -0.461977 1.866403 0.747490 0.770636 0.239822 -0.647212 -1.602141 -0.301881 -1.171501 -2.588822 1.413977 -0.435633 0.476430 2.166514 -0.003527 0.519645 -1.058870 1.280787 -1.607442 2.847475 2.191343 -2.751831 0.502393 0.677290 1.109714 0.253531 1.790560 0.037502 -1.669024 0.989927 -0.744439 1.598362 -1.079244 -0.311730 -0.400282 -0.620179 -3.310552 -0.754550 1.125626 -0.660074 0.712701 0.351986 2.159339 2.746039 1.413148 -1.235228 1.818414 1.110318 -0.519133 1.280070 0.505844 -0.038686 -0.152528 0.349977 -0.052341 -1.150234 0.522538 -0.834266 -2.908147 0.127499 1.566114 2.574214 -0.846938 -0.436822 0.569270 -0.835536 0.505876 0.196291 1.820654 1.314982 0.291562 2.484730 -1.523111 -0.508835 -3.509690 -0.384192 -5.613807 -2.005080 -2.150100 1.391078 0.495948 1.138136 -0.681797 3.090043 0.404672 0.466750 1.387505 2.405402 -1.674647 -0.270357 -1.361816 -0.287158 0.169130 -1.148764 -0.112927 1.032000 -0.211624 -1.543175 -1.347536 1.179023 -0.411027 -1.004523 -1.255144 -1.352151 1.823216 -2.569012 -1.058046 -3.186616 -0.328127 -0.366749 -3.050594 0.495704 0.029957 1.337037 1.002221 0.257214 -0.670901 0.744168 1.306285 -0.336718 -1.073396 -0.500437 2.573708 1.282933 -0.020230 0.890076 1.275805 0.139071 1.825252 2.988536 0.175687 -1.301874 0.820939 -0.746710 0.363424 -0.720327 0.148502 1.615405 -1.664277 -0.336273 0.470700 -0.662265 -0.467445 0.530686 -1.370190 1.091835 4.161733 -0.549950 1.222402 0.583534 -1.900427 1.628904 -0.229767 -0.167087 1.288170 1.921498 1.154878 -2.182600 -1.196757 0.991655 2.074152 0.569673 -2.616546 -0.769397 -0.103720 0.765895 -0.627261 0.498930 0.842810 0.510280 -0.995433 0.248711 0.201937 3.288115 -1.631710 -1.796797 0.643927 0.585407 -0.556837 -2.530768 -0.385048 -1.014509 -0.809283 0.263664 0.020172 0.076218 1.938555 -3.623270 1.565633 -0.693863 -0.558396 1.523890 -0.087499 -0.136300 -3.054497 0.421663 1.277830 1.345157 0.648626 -0.038224 -0.460875 -2.037565 0.706702 0.144207 1.189792 -1.026140 1.901430 -0.824052 -1.332622 -1.520748 -1.361074 -0.281949 -0.400791 -0.577452 0.680338 1.163821 -3.938702 1.535956 -0.804829 -1.501736 0.624627 0.409327 1.764211 -1.421258 -2.424135 0.971367 -1.326583 -2.360749 -1.652953 -0.489452 0.504659 0.306812 -1.129262 -1.102159 -2.615995 2.110376 -0.534653 1.262242 1.390877 0.786529 3.432751 0.953738 -2.340992 -1.517096 -1.128425 0.750773 -1.167532 -0.505072 -1.173316 -0.737463 1.179088 2.939532 0.328111 0.452546 -0.772537 2.349803 -2.561429 -1.039597 1.772935 1.246335 -0.229750 1.640823 1.705470 -1.065337 -1.129111 -1.574079 0.184798 -0.098417 -1.136584 0.919298 -2.367152 -0.175207 1.100755 -0.165449 -0.997616 0.924932 0.001665 0.037153 -1.463706 2.713946 3.501262 -2.479811 0.394149 -1.333556 1.203544 -2.415784 -1.158067 -0.468832 0.705981 0.301659 0.241987 0.680323 0.851847 0.887135 -1.670604 -0.905311 -0.654704 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_create_nodes(queueEntry**, queueEntry**) = -0.553526 0.769790 1.315022 -1.897717 2.871847 1.097842 0.474009 -0.019396 -1.165053 -2.137771 -0.853133 -1.157587 -3.177117 1.926767 -0.949624 0.838224 2.399264 -0.507265 0.306036 -1.736693 2.673771 -2.240775 3.248641 1.878040 -4.092482 0.303097 1.196809 2.726609 1.126194 2.767699 0.320958 -1.615048 -0.130625 -0.557273 2.980548 -1.653601 0.198028 0.339775 -1.021943 -4.161996 -1.038682 1.610274 -0.794000 1.327406 0.427854 2.617922 2.917673 2.045262 -2.298900 1.731825 2.584778 0.162388 1.567383 0.437366 -0.872111 0.086896 1.039218 -0.250933 -0.731418 0.571730 -0.819884 -3.114993 1.238632 2.301544 3.695594 -1.597301 -0.656685 1.400007 -0.376017 0.778727 0.398268 2.535961 0.627479 0.156155 3.297753 -2.697312 -0.430935 -5.358241 0.780577 -6.622421 -2.093746 -3.092626 0.795461 1.394359 1.042594 -0.845547 4.813114 0.256883 0.177524 2.436290 2.555357 -1.524775 0.165943 -3.148859 -1.251644 0.096755 -1.511720 -1.239138 0.740674 1.330150 -1.311535 -1.596844 0.575781 -0.855511 -1.565923 -1.764018 -2.607222 2.728080 -3.300008 -1.376107 -3.803547 1.151162 -0.590745 -4.023696 0.293485 -1.260222 1.192967 -0.091832 1.368375 -0.659372 0.684534 2.239464 -0.822509 -0.642357 -1.552071 3.412951 2.302862 -0.921373 0.504449 1.528913 -0.117154 1.649781 3.293887 -0.265817 -2.842794 1.909925 -0.920242 -0.242501 -1.761017 0.935845 2.835338 -2.226996 -1.121407 0.688644 -0.320864 -0.523428 0.726208 -2.854142 1.755089 6.920926 -0.788578 0.884756 0.308026 -2.124394 2.660435 1.045644 -0.129992 2.237072 1.864145 1.354701 -3.513945 -1.943917 1.537334 2.407355 0.583476 -2.874418 -1.435470 -0.180109 0.563586 -0.425189 0.207902 1.398885 -0.912868 -0.512272 0.009648 -0.722914 4.343443 -1.379681 -1.790986 1.274496 1.884986 -2.360884 -3.363320 -0.666271 -2.128390 -1.739962 0.480498 0.050080 0.774014 2.759094 -5.308761 1.999765 0.033289 -0.614767 1.577577 -1.356543 0.934750 -4.972683 0.129340 1.453361 1.842883 -0.388637 0.304352 -0.698187 -2.823540 1.683506 0.371235 1.830503 -1.472496 2.203651 -1.091892 -1.338392 -1.790156 -1.074768 -1.587412 0.068370 -0.885427 0.661205 0.663613 -4.604623 2.134330 -1.842742 -1.072692 1.409986 0.650417 2.668531 -1.719088 -2.687865 1.720986 -0.484447 -2.303784 -2.469755 -0.314491 1.570476 -0.169730 -1.363288 -2.082631 -4.202686 1.692986 -1.486340 1.118097 1.549301 1.000661 3.535695 1.204199 -2.247674 -2.457629 -1.419364 0.400295 -0.341113 -0.154518 -1.741873 -0.266262 1.542738 3.409638 0.302133 0.903167 -0.494971 3.350040 -2.528865 -1.492335 1.513606 0.331494 -0.867325 2.012816 1.741827 -1.263016 -1.915797 -2.784456 1.196382 -0.277392 -1.320523 1.476798 -2.857186 -0.319813 1.796863 -0.023528 -1.524496 1.644544 0.785402 -0.427916 -2.225495 4.602311 4.054915 -2.240484 0.403703 -1.948505 1.743887 -3.051404 -0.929550 -1.404202 0.468378 0.902464 0.756819 0.757048 1.698740 1.188625 -0.823253 -0.647206 -1.580914 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_M_set_node(queueEntry**) = 0.000611 1.014936 1.091491 -0.692563 0.964687 1.053178 0.200095 -0.138511 -0.465962 -0.444684 -0.288371 -1.148674 -1.196600 0.976364 -0.253566 -0.021538 1.537289 0.021169 -0.170163 -0.372143 0.424442 -0.136655 1.531028 1.569984 -1.552578 0.452393 0.755249 0.614297 0.235919 1.249720 -0.810896 -1.132771 0.102200 0.037949 0.626002 -0.508045 -0.337413 -0.755307 -0.103066 -2.220527 -0.185308 0.493872 -0.425283 -0.051100 0.270133 0.581354 2.141570 0.781868 -0.421416 0.224615 0.681570 0.282565 0.390291 0.032474 0.413190 0.101841 1.388576 0.238078 -0.375525 0.087853 -0.064588 -0.815312 -0.234293 1.263218 1.346341 0.029249 -0.396078 -0.086745 0.070893 -0.039800 -0.310000 0.842742 0.547149 1.128539 0.723384 -0.645157 0.529913 -1.640880 0.152165 -2.013232 -1.197250 -0.972228 0.566509 0.313619 0.467152 -0.460879 1.724361 -0.099798 0.514694 0.329494 1.808040 -1.070636 -0.193758 -0.643585 -0.640094 0.387310 -0.442856 0.195144 -0.063579 -0.374161 -0.953699 -1.007147 0.777110 0.024465 -0.837665 0.320462 -0.249256 0.845023 -1.046129 -0.361725 -1.281355 -0.186619 -0.081132 -1.871438 -0.534504 -0.235418 0.588446 0.341156 -0.295501 -1.169144 0.270644 0.795839 -0.455294 -0.486046 -0.870795 1.409230 0.915678 -0.166902 0.314858 0.115043 0.846823 1.047647 0.977687 -0.368135 -0.264834 0.218393 -0.520155 -0.251370 -0.553823 0.106837 0.147049 -0.697175 -0.085833 0.797408 -0.659076 0.150524 -0.055386 -0.662074 0.507747 3.720919 -0.470714 0.795958 0.151370 -1.418709 0.884607 -0.105029 -0.855418 0.219380 0.733120 1.245979 -1.798704 -0.669425 0.654058 1.578892 0.536461 -1.197382 0.162783 -0.061121 -0.316806 -0.421701 0.757944 0.057351 0.089552 -0.617100 -0.314700 0.739991 2.246276 -0.594902 -1.977375 0.194963 0.102798 0.046062 -0.811486 0.021029 -0.297063 -0.072897 0.242447 -0.154079 0.794684 1.293325 -2.812235 1.110181 -0.066065 -1.070768 1.438593 -0.190883 -0.381591 -0.490399 0.557505 1.233682 1.064371 0.289631 -0.312095 -0.464358 -1.245024 -0.153810 0.243642 0.560502 -0.917915 1.064561 0.310372 -1.209732 -0.837152 -1.041957 -0.045526 -0.434114 -0.958085 0.486650 -0.161178 -2.631863 1.580192 0.192070 -0.392674 0.076597 -0.726416 0.391631 -1.207564 -1.416489 0.360163 -0.317815 -0.653062 -0.260714 -0.555068 0.528231 0.345123 0.416175 -1.241111 -1.531233 0.912894 -0.085172 0.913863 0.880211 0.549016 1.172230 0.718637 -0.595246 -0.759366 -0.614776 0.956971 0.004863 -0.657308 -0.396802 -0.842097 0.739865 1.703196 -0.388934 0.028711 -0.965853 0.930966 -1.007754 -0.396862 0.509217 0.199271 -0.730188 0.130813 0.698584 -0.444906 -0.497757 -1.007359 -0.547089 -0.408662 -0.947613 0.437707 -1.016151 -0.069961 1.085360 -0.583634 -0.740651 0.610944 -0.246102 -0.203102 -0.028460 1.129226 1.480715 -1.021429 0.689710 -1.144551 0.935864 -1.613624 -1.048470 0.190750 -0.479295 -0.354581 -0.422919 0.025709 0.486871 0.113491 -0.238599 -0.231762 -0.006189 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_node() = -0.038901 0.455737 0.460681 -0.196647 0.535063 0.255328 0.223688 0.096370 -0.348959 -0.627110 -0.037133 -0.877824 -1.019375 0.701242 -0.109746 0.037732 1.036894 0.069922 0.011649 -0.350131 0.218231 -0.385497 1.091168 1.084350 -0.970024 0.267671 0.336399 0.341193 0.136366 0.527292 -0.127281 -0.805766 0.323276 -0.093623 0.412785 -0.281289 -0.188840 -0.364001 -0.185405 -1.456227 -0.178949 0.471590 -0.145962 0.013886 0.117907 0.788523 1.279469 0.571821 -0.294440 0.520123 0.418912 -0.135556 0.362303 0.088354 0.167537 -0.215332 0.418995 -0.051182 -0.491764 0.179601 -0.090192 -1.008497 -0.282915 0.733516 0.950417 -0.150450 -0.263626 0.058175 -0.142656 0.135181 -0.061245 0.561931 0.593972 0.453045 0.697250 -0.386862 -0.016279 -1.262643 -0.097440 -2.213577 -0.879625 -0.606066 0.861020 0.234535 0.183215 -0.260790 1.143945 0.094346 0.205994 0.466226 1.255912 -0.661460 -0.284596 -0.353716 -0.143244 0.344463 -0.466548 0.161460 0.309427 -0.132603 -0.717863 -0.510296 0.557538 -0.126187 -0.501812 -0.052236 -0.239995 0.614606 -0.991343 -0.216599 -1.107623 -0.229293 0.183167 -1.260538 -0.014307 0.128608 0.514172 0.507542 -0.255771 -0.414026 0.258674 0.265913 -0.199377 -0.276491 -0.564493 0.922467 0.368928 0.073757 0.370795 0.434137 0.537655 0.746540 0.809602 -0.169320 -0.219214 0.184903 -0.306379 0.098855 -0.260045 -0.134312 0.359681 -0.583684 0.127738 0.210693 -0.490600 -0.254695 -0.074524 -0.367408 0.286450 1.695978 -0.176881 0.598194 0.254062 -0.815588 0.522871 -0.336821 -0.397866 0.198579 0.654801 0.690909 -0.595907 -0.435690 0.477106 1.092966 0.379502 -0.904682 0.005981 0.068907 0.132086 -0.319088 0.513641 0.225295 0.298084 -0.425676 -0.082751 0.518684 1.326312 -0.497276 -0.913427 0.100591 0.129576 0.201537 -0.766620 0.039988 -0.101417 -0.099640 0.128865 0.024784 0.270331 0.872199 -1.725730 0.746203 -0.085401 -0.366862 0.698329 0.047221 -0.377762 -0.924422 0.282974 0.714286 0.706292 0.336113 -0.066302 -0.225712 -0.859874 -0.075674 0.145674 0.342203 -0.474937 0.753865 -0.099611 -0.567555 -0.589143 -0.626283 -0.009084 -0.155803 -0.408435 0.395462 0.398080 -1.760652 0.911774 -0.107530 -0.511375 -0.140452 -0.217402 0.461190 -0.827353 -0.989737 0.218263 -0.591356 -0.986105 -0.406634 -0.361012 0.165872 0.126947 -0.139400 -0.397456 -0.828013 0.952602 -0.064100 0.638281 0.567084 0.235901 1.137469 0.465646 -0.672716 -0.355855 -0.347741 0.516584 -0.533933 -0.333252 -0.104397 -0.426244 0.461563 1.138632 -0.096566 -0.057264 -0.391274 0.665174 -0.834190 -0.477101 0.535745 0.361189 -0.211996 0.592773 0.599039 -0.512685 -0.213766 -0.779033 -0.260783 -0.211658 -0.608786 0.252928 -0.772865 -0.067245 0.621652 -0.304216 -0.421831 0.412941 -0.132566 -0.137257 -0.243022 0.880878 1.308175 -0.936075 0.412766 -0.814996 0.558833 -1.059588 -0.760616 0.095888 0.151572 -0.169430 -0.225011 0.092828 0.196376 0.203421 -0.605913 -0.498245 0.141072 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_S_buffer_size() = -0.039847 -0.091955 0.084967 -0.123571 0.043968 -0.157848 0.025863 -0.027115 -0.181315 -0.164620 0.076136 -0.200750 -0.073573 0.136109 -0.112437 0.003445 0.137869 0.064171 -0.009840 -0.129083 -0.023852 -0.083410 0.159434 0.187584 -0.116581 0.002966 -0.087886 0.126050 0.058393 0.090645 0.111294 -0.141699 0.008773 0.098810 0.050860 -0.071251 0.006652 0.120849 -0.053981 -0.190059 0.023367 0.121032 0.172472 0.020294 0.047440 0.158263 0.039261 0.096127 0.009814 0.187505 0.141082 0.072522 0.065237 0.021035 0.034553 -0.115496 0.131582 -0.254922 -0.079922 0.055750 -0.020358 -0.131882 -0.032803 0.120883 0.169206 -0.025024 -0.012222 -0.107343 -0.016689 0.099358 0.140791 0.035048 -0.043255 0.006140 0.015106 0.009388 0.076455 -0.227986 0.036293 -0.433694 -0.079257 0.030065 0.290108 0.241182 -0.101606 0.057225 0.137246 0.063916 -0.064652 0.089707 0.103323 0.039249 -0.070458 0.073001 -0.081957 0.079519 -0.068362 0.003839 -0.060286 0.266836 -0.073286 0.069244 0.052443 -0.071556 -0.037280 0.099347 -0.015104 0.059044 -0.295916 0.046889 -0.035322 0.123446 0.149829 -0.136355 0.064116 -0.114342 0.082393 0.014851 -0.089355 0.130036 0.053530 -0.089046 -0.055778 0.178179 -0.404295 0.045125 -0.057948 0.056225 -0.031972 0.049132 0.001629 0.027877 -0.114901 -0.132689 -0.003424 0.055681 0.014853 0.057933 -0.069281 -0.054260 0.058219 -0.090364 0.128162 -0.132075 -0.077178 -0.185323 -0.203287 -0.000343 0.010307 0.014412 -0.012675 0.144161 0.124500 -0.033758 -0.053582 -0.022420 0.091374 0.049146 0.078425 -0.034559 0.263815 -0.101760 0.068160 0.130653 0.078459 0.007433 -0.001145 0.080695 0.031927 0.075190 0.076789 0.016821 -0.083691 -0.065702 -0.027132 -0.027437 0.091183 0.155803 0.098203 -0.038855 0.076990 -0.019615 0.044838 0.041262 0.056705 0.065052 -0.015564 0.036435 0.029587 0.132434 -0.400945 0.140391 0.067416 0.130361 0.005069 -0.030160 -0.086905 -0.301353 -0.063408 -0.001907 0.145699 -0.022130 0.091126 0.118482 -0.112330 -0.005862 -0.027794 0.036692 -0.095452 0.053636 0.058002 -0.066216 -0.039293 -0.066384 -0.000996 0.093499 -0.078358 0.081408 0.166022 -0.271676 0.044894 -0.064791 -0.070043 -0.088376 0.040112 0.063460 -0.116224 -0.025939 -0.045052 -0.140977 -0.221167 -0.123357 -0.026034 -0.003686 -0.163017 0.008832 0.024418 0.092932 0.126999 -0.100495 0.060523 0.045117 -0.085253 0.052253 0.064923 0.011062 0.051788 0.081218 0.033197 -0.227418 0.033276 0.336298 -0.010801 0.014442 0.096142 0.043013 -0.084326 0.169347 0.149858 0.100964 -0.100152 0.052670 -0.129916 0.030339 0.238984 0.068478 -0.172845 0.037548 -0.154536 -0.007011 0.003133 -0.009997 0.140358 0.016457 0.063082 -0.030004 0.051925 -0.124553 0.082309 0.018212 -0.085707 0.032634 0.226973 0.109181 0.048284 0.161625 -0.124550 -0.010023 -0.106069 -0.060562 -0.076572 0.057073 -0.085934 0.041991 -0.156693 0.105268 0.085409 0.021852 -0.101041 0.171869 +PE-benchmarks/snake-ladder.cpp__std::deque >::push_back(queueEntry const&) = 0.061775 3.129094 2.345213 -1.467666 2.841975 3.479576 0.614303 0.031252 -1.070128 -1.429102 -1.046997 -3.355309 -3.692041 2.726900 -0.403559 -0.031645 4.253962 -0.045897 -0.275549 -0.315656 0.893233 0.106053 3.967929 3.924916 -3.719018 1.292557 1.680833 0.884034 -0.672831 3.665568 -1.962421 -4.394604 0.404310 0.348984 1.579755 -0.933206 -1.239950 -2.214034 -0.355039 -5.899344 -0.579582 2.369131 -1.451571 -0.343634 0.740003 0.396953 6.193959 1.939174 -0.843677 0.404235 1.101143 0.958835 1.073455 0.091955 1.352952 0.515086 2.520031 0.095280 -1.325014 0.267060 -0.542527 -1.733005 -1.178930 3.164254 3.207068 0.117442 -1.339731 -0.314829 -0.442085 -0.077516 -1.309134 2.362061 2.015616 3.012321 1.864522 -0.685479 0.532436 -3.332384 0.518347 -4.661182 -3.336583 -2.657097 1.362419 2.029677 1.349157 -2.135602 4.737753 -0.860937 1.472490 1.152848 5.281294 -2.861579 -0.547762 -2.149320 -1.410088 0.708313 -1.010439 0.199406 -0.374353 -1.678238 -2.803325 -2.919657 1.601028 0.003977 -2.118330 0.427782 -0.628552 2.424773 -2.632378 -0.954479 -3.858911 -0.297080 -0.167773 -5.007195 -2.141113 0.211780 0.032650 1.401210 -1.227750 -3.443856 1.240917 2.041980 -1.394006 -1.665601 -1.624137 3.886656 2.208095 -0.548153 1.076150 0.658170 2.488320 3.089193 2.667855 -0.660418 -0.425070 0.448113 -0.746231 -0.714561 -0.960373 0.289261 -0.606966 -1.917093 -0.355746 2.370032 -1.857906 0.631898 -1.712799 -2.160301 1.287033 9.813399 -1.806936 2.081669 0.065398 -4.108215 2.877723 -0.414795 -2.725936 -0.204916 2.058300 3.915015 -4.413304 -1.595016 2.248463 4.401635 1.446735 -2.716988 1.041820 -0.149016 -0.588130 -1.458207 2.347329 0.272096 0.827751 -1.783742 -0.846899 2.096290 6.382798 -1.893039 -5.469078 0.793426 0.837503 0.980936 -1.549971 0.074225 -1.317711 -0.481042 1.286445 -0.656819 2.026053 3.514898 -6.449470 3.044461 -0.232240 -3.207108 3.686088 -0.349530 -0.805307 -0.691768 1.224900 3.711636 2.986077 1.007291 -0.564593 -2.079643 -3.249630 -0.442129 0.793470 1.704717 -2.385630 3.033582 0.196914 -3.451627 -2.214416 -2.940352 -0.548775 -1.609713 -2.857815 1.143571 0.532917 -6.362595 4.567226 1.075560 -0.761881 -0.003776 -1.620718 1.297434 -2.940864 -4.228290 1.172611 -1.260570 -2.072705 0.328410 -1.754094 1.280204 1.603387 0.975292 -3.004999 -4.296610 2.958950 0.860115 3.038684 2.352703 1.704003 3.170792 2.308924 -2.083725 -1.424825 -3.001384 3.153015 0.010740 -1.632995 -1.482106 -2.437807 2.111154 4.400074 -0.865070 -0.501822 -3.580477 2.288815 -2.503803 -0.269492 1.657299 -0.191264 -1.968172 -0.234807 2.196517 -0.738023 -1.468995 -2.857500 -0.487801 -1.747428 -2.606037 0.376163 -3.127173 -0.626627 3.160826 -2.028498 -2.137051 1.112507 -0.450012 -0.772383 -0.212073 2.773352 2.561570 -2.875529 2.164730 -2.977008 2.614597 -4.259438 -2.897634 0.463843 -1.362429 -0.987161 -1.564832 0.131720 0.786951 -0.041129 -0.457587 -0.801338 -0.276814 +PE-benchmarks/snake-ladder.cpp__void std::deque >::_M_push_back_aux(queueEntry const&) = 0.264762 3.493916 3.401115 -2.018249 3.312980 3.802679 0.515833 0.410151 -1.476814 -1.754462 -1.121306 -4.506656 -4.580120 3.139057 -0.632080 -0.860796 4.804113 -0.165697 -0.478648 -0.485545 0.402947 0.798556 4.411377 4.405337 -4.408322 1.537488 1.298407 1.459195 -0.479452 4.373858 -2.144868 -5.072168 -0.016694 1.639654 1.979328 -0.622505 -1.451460 -2.822759 -1.268625 -6.717804 -0.578562 3.469551 -1.561625 -0.235189 1.285497 1.071141 7.205324 2.129443 -0.928624 0.283173 1.421733 1.129758 1.466667 -0.070490 1.506742 -0.248182 3.840303 -0.097382 -1.696731 0.427643 -0.503121 -2.028561 -1.855784 3.589258 3.683013 0.214445 -1.732378 -1.222028 -0.064744 0.049351 -1.246824 2.618403 2.658720 3.778670 2.084750 0.840622 1.094718 -3.042603 1.051706 -5.124245 -3.760653 -2.925509 2.624751 3.015886 0.419677 -3.199341 5.310046 -0.887353 1.652569 1.160117 6.039174 -2.472294 -0.720739 -2.389293 -1.752641 1.165148 -1.068480 0.240879 -0.584612 -1.259118 -3.053942 -2.469120 1.424538 -0.662459 -2.465947 1.916409 -0.784511 2.753353 -3.054398 -0.054153 -4.301964 0.127644 0.839125 -5.687989 -3.246777 0.274151 -0.408907 1.560316 -1.451187 -2.800024 1.378393 1.603326 -1.866812 -0.676466 -3.220546 4.779582 2.371002 -0.576873 1.046962 1.041382 3.228684 2.544370 2.207682 -0.906689 -0.458075 0.562860 -0.520943 -0.905572 -1.108724 0.595937 -0.721804 -1.791385 -0.145154 2.126515 -2.135923 0.592905 -3.767766 -2.279157 1.383841 10.921377 -2.130989 2.419086 -0.031689 -4.256535 3.333035 0.105513 -3.063023 -0.367529 1.963556 4.583876 -4.001575 -1.685396 2.648766 5.022387 1.627682 -3.067400 2.412568 0.225488 -0.860909 -1.852868 3.046048 0.353825 0.849030 -1.741585 -1.009734 2.489703 6.835351 -1.535331 -7.637174 0.588657 0.876794 1.633692 -0.606887 0.513727 -0.262386 -0.465926 1.603192 -0.594463 2.540128 4.033973 -7.954922 3.606618 0.913030 -3.590136 4.708732 -0.872468 -0.853921 -0.291440 1.254681 4.109334 3.506216 1.565136 -1.506445 -2.396553 -3.619490 -0.522117 1.200473 1.871844 -2.690933 3.258428 0.394028 -3.448473 -2.375251 -4.604494 -0.685801 -0.839620 -4.196614 1.323548 0.203251 -7.745278 5.115376 1.278881 -0.869305 -0.886357 -2.326044 0.888030 -3.420304 -4.493350 0.660474 -1.860407 -3.524388 -0.070462 -2.095929 1.049601 1.725062 1.816869 -3.687612 -4.679838 3.882933 0.623730 3.456624 2.783609 1.693791 3.304654 3.996839 -2.045264 -1.157332 -3.444609 4.539239 -0.068436 -1.764856 -0.421025 -2.798142 1.914112 4.858809 -1.358117 -0.503551 -4.629845 2.337979 -2.021193 -0.847944 1.664360 -1.444756 -2.001341 0.353247 2.382555 -0.785451 -1.393382 -3.672627 -1.193511 -2.080642 -2.916932 0.467631 -3.391069 -0.694915 3.733735 -2.422443 -3.027997 1.246209 -0.935196 -1.628364 -0.071592 3.425707 3.100194 -3.194919 3.548925 -3.679026 3.498488 -4.818435 -3.235700 0.534265 -2.518010 -1.145545 -1.840008 -0.162551 0.664271 0.019726 -0.624599 -1.355523 0.623126 +PE-benchmarks/snake-ladder.cpp__std::deque >::size() const = 0.063123 0.571130 0.579541 -0.317946 0.527119 0.613142 0.087338 -0.034266 -0.258514 -0.227270 -0.132803 -0.817157 -0.662741 0.467919 -0.129250 -0.103834 0.647380 -0.072549 -0.095051 -0.033996 -0.079296 0.220625 0.668284 0.676592 -0.613111 0.292337 0.055893 0.165382 -0.200454 0.805019 -0.392251 -0.880902 -0.053479 0.410057 0.234236 0.007028 -0.290914 -0.423384 -0.145743 -0.985367 -0.078464 0.681821 -0.094516 -0.063147 0.257315 0.011279 1.111921 0.295481 0.009794 0.075543 0.156267 0.232449 0.292947 -0.017696 0.354317 -0.065630 0.790515 -0.265812 -0.274006 0.057709 -0.085761 -0.187216 -0.359578 0.556820 0.517331 0.074245 -0.297505 -0.333773 -0.068560 0.002068 -0.202207 0.427589 0.294067 0.679657 0.172805 0.358574 0.375433 -0.157958 0.213328 -0.459107 -0.596286 -0.326260 0.398352 0.797700 0.081481 -0.498816 0.812838 -0.144131 0.190204 0.014870 0.901368 -0.357667 -0.082624 -0.167404 -0.306256 0.108492 -0.096395 0.053015 -0.326995 -0.113071 -0.474285 -0.284458 0.246703 -0.102986 -0.366047 0.507650 -0.073398 0.309434 -0.500703 0.033913 -0.500959 0.048638 0.149643 -0.816466 -0.520764 0.048801 -0.253924 0.209937 -0.289680 -0.410109 0.263174 0.137599 -0.314469 -0.019124 -0.815707 0.663320 0.317521 -0.075071 0.130708 0.101925 0.510031 0.361425 0.080862 -0.171472 0.012082 0.023238 0.053970 -0.077738 -0.032264 0.109687 -0.390186 -0.238643 0.009379 0.274928 -0.306078 0.165827 -0.992413 -0.293061 0.116792 1.451983 -0.393693 0.432065 0.001855 -0.661952 0.454966 -0.020929 -0.482553 -0.150062 0.231435 0.703234 -0.386594 -0.244758 0.475202 0.778013 0.229411 -0.274973 0.522826 0.143032 -0.162048 -0.248727 0.577225 -0.008649 0.135533 -0.314544 -0.186986 0.299309 1.065992 -0.074622 -1.073373 0.109994 0.037509 0.334549 0.163117 0.110608 0.032325 -0.030742 0.193961 -0.099361 0.373353 0.573494 -1.178299 0.576346 0.164898 -0.598817 0.796656 -0.216822 -0.168279 0.151982 0.113725 0.602541 0.511451 0.195218 -0.197280 -0.380274 -0.526270 -0.100193 0.118190 0.222251 -0.483855 0.514741 0.146826 -0.638639 -0.315317 -0.806200 -0.050264 -0.122543 -0.775963 0.198363 0.132004 -1.106257 0.761114 0.334012 -0.096589 -0.199258 -0.334579 0.037705 -0.436807 -0.590472 0.018302 -0.384564 -0.514498 0.102411 -0.364905 0.039971 0.219262 0.340673 -0.583929 -0.484285 0.572175 0.145731 0.539185 0.424346 0.230829 0.272434 0.752761 -0.272118 0.015478 -0.511324 0.739046 -0.061952 -0.216629 0.234107 -0.505255 0.251452 0.652075 -0.171678 -0.127040 -0.706757 0.309892 -0.028869 -0.045920 0.221600 -0.511655 -0.339370 -0.030566 0.334352 0.010071 -0.129246 -0.566515 -0.195676 -0.420061 -0.377064 0.093425 -0.395413 -0.125344 0.532357 -0.417024 -0.555573 0.140371 -0.182052 -0.339414 0.075231 0.527593 0.139438 -0.299196 0.701910 -0.530570 0.463118 -0.650149 -0.423997 0.075495 -0.429172 -0.282284 -0.355987 -0.151216 0.101404 0.018594 -0.009652 -0.167946 0.178214 +PE-benchmarks/snake-ladder.cpp__std::deque >::max_size() const = -0.037791 0.143272 0.247771 -0.138360 0.166366 -0.095238 0.077945 0.068389 -0.175916 -0.424638 0.027340 -0.453537 -0.506795 0.309740 -0.149254 -0.102783 0.445910 0.052522 0.026851 -0.256637 0.048388 -0.196113 0.501424 0.514530 -0.503657 0.060539 0.110555 0.287230 0.199689 0.170949 0.158307 -0.357200 0.110765 0.132274 0.278129 -0.129733 0.006038 -0.098564 -0.257582 -0.654539 -0.082488 0.257662 0.079820 0.046627 0.084019 0.499114 0.500371 0.290083 -0.174063 0.254193 0.310569 0.035546 0.167989 0.037419 -0.031357 -0.316984 0.192497 -0.236463 -0.232486 0.113854 0.003930 -0.559552 -0.136310 0.387357 0.511416 -0.072158 -0.045784 -0.055714 -0.050218 0.150071 0.054853 0.223172 0.243541 0.219726 0.311565 -0.087758 0.025922 -0.681549 -0.002638 -1.255300 -0.365998 -0.301821 0.559310 0.267835 -0.095040 -0.060288 0.503624 0.186113 0.094363 0.316429 0.542030 -0.133101 -0.155541 -0.149114 -0.110241 0.278852 -0.278697 0.114145 0.074894 0.213928 -0.289627 -0.101101 0.166581 -0.142270 -0.216811 0.073032 -0.148208 0.244394 -0.581884 0.049126 -0.485732 -0.058863 0.252169 -0.596425 0.060230 -0.045368 0.301881 0.183743 -0.054709 0.063016 0.056843 0.017605 -0.064437 0.096957 -0.617696 0.378464 0.095838 0.037636 0.126486 0.245765 0.216235 0.193011 0.213821 -0.122938 -0.162717 0.115349 -0.157339 0.024203 -0.192304 -0.044480 0.341266 -0.250868 0.141744 -0.047028 -0.214376 -0.349096 -0.211852 -0.228638 0.194554 0.577582 -0.015532 0.267000 0.171580 -0.286676 0.129187 -0.122527 -0.104295 0.145912 0.289223 0.233429 0.066247 -0.221339 0.168930 0.470914 0.168242 -0.278465 0.037155 0.101422 0.062123 -0.135216 0.221669 0.129056 -0.015673 -0.160230 -0.039658 0.243649 0.386178 -0.021863 -0.231185 -0.028496 0.178393 0.061380 -0.208022 0.078980 0.101841 0.004931 0.042937 0.062999 0.116355 0.402448 -0.912426 0.343410 0.148151 0.059071 0.174035 -0.066638 -0.187021 -0.623839 0.186953 0.290340 0.289825 0.088042 0.022239 -0.007028 -0.395700 -0.021910 0.062215 0.191026 -0.216946 0.287320 -0.025898 -0.168341 -0.327171 -0.308048 -0.021164 0.079412 -0.204784 0.182334 0.262527 -0.821011 0.396451 -0.207989 -0.276051 -0.195046 -0.126717 0.182734 -0.466064 -0.377458 -0.001189 -0.338366 -0.620507 -0.324516 -0.139616 0.065305 -0.111544 -0.069719 -0.110931 -0.211292 0.450603 -0.127040 0.193838 0.229535 0.085553 0.510700 0.239382 -0.217858 -0.121594 -0.036910 0.225434 -0.367888 -0.125602 0.259710 -0.120002 0.129102 0.547338 -0.092955 -0.066540 0.064660 0.326754 -0.217766 -0.392382 0.196746 0.029857 -0.005109 0.463114 0.222983 -0.340534 -0.095359 -0.459525 -0.091113 0.011135 -0.291769 0.171139 -0.333875 0.017699 0.276873 -0.069333 -0.267205 0.250609 -0.042122 -0.111679 -0.084730 0.475942 0.616411 -0.349723 0.283896 -0.423464 0.190484 -0.511846 -0.338773 -0.022456 0.056269 0.014241 -0.012822 -0.097372 0.109855 0.147557 -0.224566 -0.290645 0.199117 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -0.384971 0.281138 0.124687 -1.224427 1.272414 1.464321 0.392699 -0.736901 -1.104431 -0.387471 0.185037 -2.653024 -1.284203 1.194719 -0.490423 0.902813 2.109846 -0.278342 -0.563175 -0.332683 0.361317 1.070092 2.363821 2.342939 -1.453601 0.375204 -0.184003 0.258239 -0.415955 0.546587 -0.537850 -2.087650 0.285602 -0.268705 0.190284 0.064634 -0.784556 -0.400633 1.185757 -2.492845 -0.047949 1.311269 0.192403 -0.155876 0.337986 0.296488 2.322156 1.135934 0.102681 0.668480 0.872967 0.421947 0.881533 0.028395 0.601456 0.038617 1.089354 -0.551011 -0.423709 -0.505789 -0.476388 0.445624 -0.477557 1.609742 1.541670 0.104784 -1.214183 -0.040392 0.644651 0.109722 0.035448 1.495508 0.484838 1.220766 0.670114 -0.355237 0.561037 -1.454144 0.492096 -1.767233 -1.541131 -0.095887 0.932658 1.269658 0.826547 -0.896633 2.591196 -0.641223 -0.180347 0.599569 2.012648 -1.375978 -0.340758 -0.292690 -0.668801 -0.102217 -0.313815 0.353678 -0.013107 0.320804 -1.595985 -0.665664 0.304879 -0.085145 -0.971151 0.019571 0.285314 0.462149 -0.937957 -0.493160 -1.118666 1.059864 0.298384 -2.566079 -1.227238 -0.357681 -0.605810 0.291518 -1.375416 -1.573742 0.727726 0.048890 -0.997179 -0.363850 -1.167879 1.361563 1.373192 0.234964 0.291156 0.675053 1.075780 2.352388 0.043744 -0.967267 0.042626 0.191813 -0.018359 0.344874 -0.304788 -0.148006 -0.304289 -1.205683 0.583535 0.947222 -0.951507 0.264765 -0.941251 -0.390610 -0.138901 4.557250 -1.079570 1.863374 1.059724 -1.589094 0.955740 -0.824972 -0.427731 -0.231238 0.753812 1.514621 -1.553152 -1.063793 1.791730 2.367056 0.837271 -1.325045 1.095131 0.989716 0.236208 -0.701698 1.104941 0.173041 0.689854 -1.043364 -0.266557 1.102293 3.444162 -0.470869 -1.128407 0.373492 1.071333 0.860671 -0.163141 -0.228123 -1.273811 -0.155490 1.083853 0.524515 0.955748 1.853062 -2.634999 1.329537 0.215244 -0.718765 2.013263 0.395411 -1.198832 -0.427470 -0.325607 1.130625 1.391276 -0.048435 0.127035 -0.506943 -1.542715 -0.070443 0.375307 0.421641 -1.365143 1.526658 0.267822 -1.375719 -0.293358 -0.968371 -0.401831 -0.527108 -1.325313 1.074260 0.600970 -2.471887 1.761404 0.947881 -0.645950 -0.258783 -1.021235 1.112001 -1.180591 -1.252704 0.711410 -1.130898 -0.753660 0.274851 -0.597293 0.184743 0.658812 1.368995 -1.875610 -1.527351 2.003362 0.362658 2.228128 1.076860 -0.102590 0.463918 0.073272 -0.715774 -0.329462 -1.706433 0.888226 0.358435 -1.112273 0.107963 -0.985717 1.082482 1.415817 -0.568411 -0.778039 -1.150287 0.853538 -1.089284 0.490347 0.543379 -0.167443 -1.426018 0.155128 0.947318 -0.540231 0.267694 -1.432614 -0.256654 -1.589823 -1.033974 0.761065 -0.697550 0.111594 0.717759 -0.966750 -0.506375 0.363166 0.175943 -0.552575 0.535282 1.732867 0.650923 -0.084910 0.675157 -1.992955 1.207795 -1.783194 -1.625866 0.577965 -0.850051 -1.471969 -0.955452 -0.139283 1.156227 0.275567 -0.451475 -1.060976 0.829366 +PE-benchmarks/snake-ladder.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.730815 0.670793 -0.751524 -1.945322 2.298284 2.143117 0.663394 -1.723289 -1.219040 -0.511983 0.539846 -4.699750 -2.132222 1.201018 -0.914321 1.803675 3.345452 -1.244129 -0.909941 -0.969599 0.712710 2.656777 4.539117 3.888543 -2.603433 0.447867 0.181587 0.359960 -0.297729 -1.235022 -0.816386 -2.616813 0.894134 -1.401465 -0.361702 1.007956 -0.993213 -1.576954 2.781895 -3.351828 -0.114205 0.257293 -0.109189 -0.127032 -0.150228 1.265132 4.093321 2.092561 -0.098025 0.751423 2.201234 0.587162 1.108020 0.205819 -0.041127 -0.619902 1.272608 -0.548707 -0.418673 -1.809010 -0.466687 1.119632 -0.758160 2.807451 2.418147 0.401699 -2.072058 1.311964 1.673036 0.024927 -0.026706 2.651399 0.933716 2.439304 1.447590 -1.578422 0.589333 -3.119029 -0.024237 -3.334389 -2.657623 -0.305013 0.865405 0.281738 1.839520 0.101133 4.301866 -0.424597 0.027568 1.398027 3.139689 -2.789004 -0.689164 -0.367780 -0.925588 -0.142447 -0.597351 1.615973 0.352878 1.056863 -2.770867 -0.975263 0.296946 -0.136325 -1.620652 -1.125232 0.877397 -0.348094 -1.004942 -0.668152 -1.978858 1.442252 0.598375 -4.693046 -2.127014 -0.095070 0.839329 0.148499 -1.810579 -3.074146 0.518707 0.081790 -1.537501 -0.857783 -0.745485 1.326765 3.133325 0.864487 1.014933 1.346500 2.363920 5.074035 0.498357 -1.502477 -0.494993 -0.224426 -0.288962 0.655725 -0.203522 -0.231452 -0.019885 -2.332490 2.687266 2.371944 -1.461661 -0.448580 0.022864 -0.809545 -0.138143 6.765735 -1.427327 3.270281 2.157103 -2.605315 0.321174 -2.961493 -0.858316 -0.331413 0.923227 2.489136 -2.159440 -1.869720 3.200157 3.721077 1.309478 -2.887175 2.137755 2.279864 0.709853 -1.624455 1.095057 0.752875 1.530364 -1.526201 -0.230540 3.073099 5.643550 -0.869141 -0.775158 1.062313 1.948090 2.004279 -0.421967 -0.863646 -2.002382 -0.307765 2.885796 1.715521 1.297101 3.134963 -3.781899 1.373471 0.676095 -0.445006 2.707471 1.580375 -2.639101 0.034109 0.001621 2.060396 1.455752 -0.381044 0.261821 -1.015762 -2.197231 -0.105894 1.092423 0.448212 -1.961500 2.312392 0.652860 -2.139123 -0.613755 -0.886811 -0.335995 -0.095506 -1.433639 1.986698 -0.050370 -4.576079 3.186908 1.076077 -1.732600 -0.659321 -2.979723 2.660439 -1.998892 -1.713460 1.601620 -2.378729 -0.663480 0.466230 -0.406227 0.045708 1.472228 3.265166 -3.418434 -2.312454 3.358535 0.973272 3.491819 1.781042 0.179725 0.897540 -2.644395 -1.152625 -1.186065 -2.447990 1.007855 1.213453 -2.789877 0.299423 -1.367025 1.871595 2.408290 -1.837445 -1.328040 -1.076294 0.533324 -3.184205 0.425370 0.708490 1.862977 -3.159260 0.729732 1.360263 -0.797582 0.657023 -2.199663 -0.533860 -2.813718 -2.492250 0.982860 -1.055841 0.273512 1.608236 -1.646592 -0.009440 0.925412 -0.030528 0.058556 0.780467 2.311572 2.276339 -0.208572 -0.019558 -3.788382 1.939880 -3.299373 -3.825275 2.270349 -1.486630 -2.192150 -1.786613 -0.276001 2.304199 -0.025657 -1.534837 -2.226973 1.640831 +PE-benchmarks/snake-ladder.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.077233 0.736189 0.602211 -0.196757 1.241842 0.432768 0.319537 0.279150 -0.430424 -0.966837 -0.422858 -0.922595 -1.692463 1.083814 -0.028369 0.493887 1.541006 0.060205 0.127880 -0.589913 0.805384 -1.095128 1.654920 1.084116 -1.567754 0.406923 0.750026 0.756629 0.232641 1.127185 -0.485836 -0.953118 0.549612 -0.604989 0.829733 -0.698517 -0.041194 -0.367156 -0.344136 -2.154501 -0.390006 0.513841 -0.497445 0.256024 -0.027294 1.493806 1.841977 0.941236 -0.703927 0.876491 0.702556 -0.491332 0.590183 0.336352 -0.082032 0.151914 0.495184 0.095175 -0.930359 0.283803 -0.190888 -2.070804 -0.139162 0.862485 1.506854 -0.613660 -0.376494 0.862640 -0.400886 0.149267 -0.081028 0.890982 0.900731 0.248315 1.397068 -1.090988 -0.366470 -1.995155 -0.351022 -3.764068 -1.267105 -1.466999 0.768440 -0.068748 0.563368 -0.250593 2.018920 0.046665 0.341524 0.696069 1.862853 -1.397470 -0.375315 -1.209002 0.098209 0.317027 -0.892573 -0.369837 0.956935 -0.291188 -0.884443 -1.052795 0.977195 -0.254905 -0.745520 -0.678065 -0.874393 1.295836 -1.752797 -0.834389 -2.271751 -0.457260 -0.188673 -1.859952 0.338835 0.530222 0.964820 0.703267 0.249685 -0.892342 0.447817 0.966540 -0.268610 -0.781100 -0.119800 1.618494 0.706479 -0.225076 0.768237 0.836364 0.613156 1.306281 2.054548 -0.080487 -0.958527 0.625301 -0.609628 0.024020 -0.544571 -0.159637 0.741899 -1.256937 -0.062023 0.579620 -0.596251 -0.068732 0.495213 -0.831187 0.721187 2.356063 -0.216530 0.429735 0.013788 -1.308042 1.102158 -0.385928 -0.648954 0.518194 0.938461 1.011531 -1.358845 -0.780621 0.723025 1.419254 0.540254 -1.772931 -0.469942 -0.383964 0.515264 -0.319294 0.321318 0.884879 0.364016 -0.430570 -0.038415 0.224356 2.397833 -1.259239 -1.374529 0.655863 0.015431 -0.326845 -2.061823 -0.297613 -0.523732 -0.686750 0.062241 -0.009953 0.163949 1.413159 -2.311990 1.132991 -0.400384 -0.832761 1.019017 -0.186164 0.050569 -1.789996 0.172993 1.173468 1.133031 0.423363 0.005539 -0.570876 -1.329637 0.240101 0.233788 0.729764 -0.394324 1.030077 -0.399748 -0.811187 -0.920921 -0.630122 -0.125299 -0.242742 -0.171016 0.467564 0.599037 -2.858708 1.365670 -0.639287 -0.692572 0.452453 0.231632 1.063863 -1.099398 -1.637873 0.766100 -0.571791 -1.359819 -0.823618 -0.263345 0.534991 0.207569 -0.776336 -0.456313 -1.880587 1.172550 -0.151535 0.596575 0.801547 0.595442 2.049655 0.566453 -1.422071 -0.868414 -0.470120 0.210743 -0.882352 -0.061639 -0.761823 -0.331427 0.962281 1.850995 0.201964 0.384445 -0.689226 1.204485 -1.836765 -0.811935 1.144385 1.018636 -0.369786 0.990057 1.159775 -0.766995 -0.832696 -1.082917 -0.070047 -0.217769 -0.870149 0.183307 -1.647715 -0.383919 1.246999 -0.388337 -0.646992 0.767968 -0.100749 -0.189121 -1.147364 1.766839 2.488604 -1.786799 0.374922 -0.995135 0.912451 -1.679469 -0.954453 -0.022986 0.679718 0.000100 -0.021295 0.783466 0.272155 0.158723 -1.077494 -0.633348 -0.754962 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -0.914214 6.192893 5.382756 -6.893402 8.371957 12.699046 1.160478 -3.751096 -4.992025 -1.804610 -0.585228 -13.914290 -9.178549 7.808822 -2.874432 0.773467 11.148721 -2.592202 -3.171902 -0.576145 2.460761 6.885944 11.770460 12.355800 -10.050081 2.986424 0.980333 1.747490 -1.908527 7.395227 -4.475167 -13.598625 -0.479963 2.295569 1.948267 0.951143 -4.734857 -5.205551 3.236833 -14.889545 -1.196305 8.223010 -3.883025 -0.781459 3.390362 -0.596748 16.604091 5.128761 -0.567992 1.150441 4.344761 4.347764 3.710246 -0.959203 4.217544 -0.594798 8.832208 -1.045282 -1.686305 -1.642518 -2.196055 2.916445 -4.041776 10.100565 8.897735 1.918840 -6.079277 -2.471809 1.932388 -0.254252 -2.810594 8.399908 4.707345 10.669055 3.880168 1.641894 3.282103 -7.244969 4.331026 -5.252419 -8.672916 -2.667045 3.949655 9.111535 2.864681 -7.811198 14.425110 -3.280232 0.221874 4.345428 14.222370 -6.515639 -0.685775 -3.467689 -6.772785 -0.198848 -1.110314 3.064202 -4.900786 -0.561630 -8.644203 -6.748930 0.668006 -0.878221 -6.033272 3.010318 0.002105 4.607336 -4.939135 -0.316659 -5.450700 4.746494 1.771772 -14.583292 -11.917020 -2.346781 -3.385983 1.758674 -6.543716 -8.807277 3.707642 2.222504 -5.800506 -2.076092 -6.614075 8.970984 8.823544 -0.164918 0.218365 2.213556 7.975442 9.669531 0.037797 -4.085874 0.797473 -0.373696 1.279042 -0.164134 -1.852858 2.326082 -3.639043 -3.899447 0.772357 6.483699 -4.673437 1.708292 -9.378231 -5.164888 -0.020752 30.477627 -6.668547 8.933184 2.598641 -10.480393 6.395344 -1.627804 -5.611557 -1.335544 3.850994 11.150687 -11.634903 -5.349670 10.341552 13.435481 3.401110 -6.809642 8.025757 4.666824 -2.228373 -5.756300 8.453539 -0.453262 1.860472 -4.441908 -2.793552 7.341992 19.399100 -2.773291 -14.116079 2.133158 4.990138 5.926935 2.086731 0.317015 -3.071101 -0.576953 7.606185 0.565884 7.684130 10.314995 -17.817906 7.895411 2.856180 -7.196373 11.199153 0.146170 -5.031507 3.316679 0.952931 8.913755 7.249388 2.252340 -2.252457 -5.323996 -9.318630 -0.663719 3.293255 3.122556 -8.766614 9.301689 2.356099 -9.488856 -4.111024 -8.561411 -3.463674 -2.912222 -11.542081 4.345751 -0.570326 -16.004070 12.342114 6.519005 -1.105499 -2.759233 -7.584933 4.566791 -6.750212 -9.364966 3.112192 -5.550631 -5.346387 2.570650 -4.895367 1.660002 5.767206 9.002617 -12.786849 -11.071235 10.224359 2.553745 11.783416 6.205125 2.216023 3.587024 4.360809 -3.696022 -3.005084 -11.194696 11.980797 4.601307 -6.599061 -0.422033 -7.126253 5.208473 8.733355 -4.353934 -4.989502 -11.108464 4.777662 -3.811241 2.165528 2.131516 -3.444411 -8.507599 -1.979495 4.580130 -0.210469 -0.074207 -8.798290 -2.146753 -9.588471 -6.660340 2.767359 -4.416859 -0.566050 6.194592 -6.316670 -5.187109 2.250028 -0.327865 -3.616743 3.542902 8.504052 2.967831 -2.978433 6.836188 -10.984678 8.788607 -10.811715 -9.642513 3.031612 -8.386357 -5.480974 -6.765661 -3.061192 4.482472 1.265925 -0.470039 -3.501788 4.247508 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy(queueEntry**, queueEntry**, queueEntry**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy_backward(queueEntry**, queueEntry**, queueEntry**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a(queueEntry**, queueEntry**, queueEntry**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__miter_base(queueEntry**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_wrap(queueEntry** const&, queueEntry**) = -0.021026 0.229423 0.143580 0.026343 0.253999 0.036877 0.139132 0.064413 -0.154146 -0.272016 -0.112143 -0.274298 -0.407604 0.336218 0.019496 0.196591 0.560619 0.190063 0.070254 -0.169906 0.142008 -0.467798 0.541630 0.524271 -0.415006 0.168068 0.206609 0.153091 0.000000 0.375869 -0.202960 -0.296722 0.266132 -0.263466 0.205522 -0.332598 -0.065749 -0.055440 -0.037340 -0.794364 -0.067845 0.116022 0.104225 0.001183 -0.015652 0.331609 0.580898 0.279575 -0.089073 0.333787 0.110393 -0.147710 0.229184 0.122296 0.125171 0.177097 0.174500 -0.088139 -0.308130 0.126289 -0.050886 -0.700611 -0.047218 0.275307 0.464100 -0.113898 -0.081196 0.146598 -0.179552 0.029080 0.001329 0.224828 0.179276 0.067055 0.305662 -0.443972 0.017777 -0.598917 -0.184541 -1.204490 -0.433937 -0.401424 0.301305 0.036218 0.280059 0.048464 0.545242 -0.012266 0.189446 0.047505 0.576857 -0.522332 -0.165666 -0.173945 0.074505 0.154400 -0.250828 -0.063970 0.283188 -0.181758 -0.323222 -0.372473 0.528961 0.044623 -0.242398 -0.154769 -0.136957 0.344144 -0.579007 -0.369070 -0.675838 -0.301042 -0.132315 -0.526052 0.336874 0.118510 0.261122 0.317762 -0.060845 -0.407062 0.145190 0.276923 -0.023420 -0.327765 -0.186244 0.443632 0.082450 -0.064079 0.258289 0.164323 0.142063 0.511622 0.577101 -0.060364 -0.144369 0.191016 -0.271159 0.012000 -0.171323 -0.210630 0.132581 -0.436577 -0.040820 0.131950 -0.272899 0.025669 0.207815 -0.117615 0.206952 0.590272 -0.037864 0.192442 0.099418 -0.445512 0.331389 -0.204195 -0.180870 0.138591 0.401055 0.277048 -0.394949 -0.242700 0.080251 0.479155 0.215089 -0.408361 -0.292924 -0.187983 0.158474 0.013375 0.150675 0.143282 0.165406 -0.257663 -0.001529 0.077637 0.747994 -0.362693 -0.191731 0.108883 -0.133918 -0.114938 -0.728828 -0.074654 -0.273697 -0.107701 -0.195164 -0.026569 -0.005693 0.422056 -0.680916 0.407936 -0.329729 -0.256088 0.357264 -0.006861 -0.087510 -0.621210 0.114086 0.338393 0.435591 0.094532 0.089955 -0.078246 -0.424235 -0.060009 -0.024029 0.216105 -0.200758 0.355629 -0.064471 -0.363999 -0.262036 -0.133086 0.098844 -0.261911 -0.005939 0.175616 0.391982 -0.770444 0.388855 -0.119204 -0.278643 0.214109 0.102103 0.217649 -0.397861 -0.495405 0.182544 -0.159628 -0.289342 -0.184493 -0.124864 0.180174 -0.041944 -0.360903 -0.059231 -0.391131 0.341919 -0.019727 0.185225 0.279645 0.120691 0.554125 0.240180 -0.430143 -0.184782 0.006947 -0.151980 -0.455270 -0.027591 -0.206511 -0.208472 0.328361 0.701850 0.148089 0.089489 -0.058120 0.427903 -0.514781 -0.231077 0.390332 0.275691 -0.035687 0.246791 0.374775 -0.342687 -0.236085 -0.257465 -0.058228 0.069695 -0.262429 0.140051 -0.517620 -0.054271 0.319252 -0.145268 -0.161875 0.260374 -0.043619 -0.009149 -0.256590 0.489410 0.571330 -0.466596 0.121280 -0.256957 0.137005 -0.515404 -0.217183 -0.051278 0.398899 -0.151924 -0.008349 0.223495 0.104053 0.045889 -0.277740 -0.173822 -0.228759 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a1(queueEntry**, queueEntry**, queueEntry**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_base(queueEntry**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a2(queueEntry**, queueEntry**, queueEntry**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move::__copy_m(queueEntry**, queueEntry**, queueEntry**) = -0.666518 -0.159080 -0.215766 -1.341699 1.288899 0.664068 0.536984 -0.511740 -1.359700 -1.122059 0.250091 -2.365016 -1.598305 1.526054 -0.496943 1.225113 2.809199 0.107712 -0.240407 -0.962181 1.124024 -0.353110 2.939246 3.088305 -2.088301 0.198759 0.475170 1.046061 0.105318 -0.078235 0.335471 -1.867676 0.550758 -1.389177 0.595896 -0.765185 -0.466314 0.193149 1.242762 -3.466996 -0.259038 0.627585 -0.020770 0.121228 0.035090 0.974582 2.252398 1.621490 -0.688798 1.568497 1.596623 0.045493 0.913317 0.173169 0.018097 0.037568 -0.097616 -0.238099 -0.455457 -0.125581 -0.432415 -0.754362 0.176091 1.941608 2.353522 -0.306459 -1.134708 0.733268 0.588235 0.366615 0.369323 1.753208 0.333516 0.599479 1.560815 -2.440515 -0.308674 -4.379039 0.315138 -4.574395 -2.026951 -0.612795 1.550186 0.503083 1.034521 -0.004045 3.227847 -0.296759 -0.144820 1.892507 2.303295 -1.636966 -0.579545 -0.850942 -0.744806 0.405982 -0.820224 0.348494 0.786277 0.866469 -1.836618 -1.218530 0.776298 -0.108439 -1.233974 -1.512344 -0.078112 1.162816 -1.645690 -1.233640 -2.058526 1.176529 0.175556 -3.228170 -0.399553 -0.693236 0.862174 0.574901 -1.236489 -1.615864 0.582763 0.346546 -0.776520 -0.643506 -0.561508 1.496543 1.542803 0.221677 0.534969 1.195750 0.813845 3.051036 1.105586 -1.075796 -0.501860 0.810571 -0.626233 0.440971 -1.060726 -0.448557 1.054526 -1.867377 0.709794 0.798196 -1.229969 -0.863462 1.096632 -0.774601 0.216471 5.726770 -0.549450 2.034170 1.668249 -1.691649 1.190696 -1.081128 -0.026821 0.712124 1.572775 1.232807 -2.261790 -1.463647 1.521721 2.835856 1.069554 -2.145477 -0.637951 0.797947 0.631956 -0.491789 0.873136 0.470181 0.482527 -0.925022 -0.041603 1.394234 3.700756 -0.859414 -0.463700 0.274609 1.891231 0.032975 -2.130488 -0.388233 -2.206574 -0.391465 1.103192 0.744360 0.830703 2.342581 -3.926915 1.468321 -0.137094 0.166808 1.347491 0.916941 -1.399502 -3.093021 -0.033345 1.116636 1.795516 -0.275398 0.743395 -0.047252 -2.124866 0.080274 0.558065 0.741183 -1.491820 2.040399 -0.407960 -1.212300 -0.660911 -0.039122 -0.855812 -0.656956 -0.503569 1.411510 1.009843 -3.267358 1.814925 -0.042181 -1.262676 0.308355 -0.864337 2.269269 -1.868858 -1.920491 1.336256 -1.010298 -1.087302 -0.481345 -0.550736 0.747482 0.371783 0.341352 -1.459704 -1.974057 2.214982 -0.087444 2.256144 1.295728 -0.275030 1.842614 -0.995973 -1.365234 -1.069740 -1.385295 0.361627 -0.151604 -1.178767 -1.082032 -0.733727 1.396575 2.319085 -0.203803 -0.834043 -0.166129 1.807957 -2.359245 -0.194598 0.883617 1.026603 -1.126714 1.158559 1.249217 -1.685325 0.075641 -1.889547 0.334454 -0.930375 -1.289775 1.260713 -1.315127 0.287161 0.740343 -0.669441 -0.066666 1.062770 0.685138 0.170229 0.039642 2.440214 2.322452 -0.736418 -0.146984 -2.424773 1.067447 -2.454523 -1.987130 0.132500 0.374941 -1.094110 -0.511870 0.072710 1.509019 0.639732 -0.970360 -1.424905 0.564664 +PE-benchmarks/snake-ladder.cpp__void std::__copy_move::__assign_one(queueEntry**, queueEntry**) = -0.052319 0.376944 0.273296 -0.139008 0.406972 0.181769 0.159607 -0.012123 -0.212057 -0.362548 -0.148884 -0.327452 -0.539844 0.491512 -0.050788 0.209208 0.830855 0.182783 0.055348 -0.310817 0.349587 -0.542469 0.816179 0.790739 -0.729020 0.194675 0.515420 0.278514 0.182582 0.447447 -0.289821 -0.390958 0.321425 -0.413552 0.296740 -0.496550 -0.064027 -0.173056 0.018988 -1.133028 -0.094025 -0.084428 -0.112884 0.012246 -0.044683 0.517786 0.896206 0.433182 -0.273347 0.379408 0.343207 -0.037969 0.166704 0.131970 0.104423 0.211366 0.300597 0.102275 -0.269711 0.111777 -0.038701 -0.819852 0.009011 0.522992 0.712271 -0.126620 -0.092437 0.281899 -0.132815 0.018805 -0.038359 0.345054 0.257074 0.221965 0.481464 -0.871986 -0.013644 -1.219117 -0.219396 -1.762420 -0.588245 -0.590702 0.288594 -0.238510 0.392657 0.162515 0.814750 0.034474 0.285423 0.243251 0.850365 -0.722125 -0.184773 -0.324551 -0.079460 0.233339 -0.351158 0.031889 0.312300 -0.237022 -0.460331 -0.640401 0.640308 0.086815 -0.382762 -0.325008 -0.178350 0.493174 -0.765421 -0.459097 -0.876476 -0.329795 -0.210498 -0.867448 0.267424 -0.015315 0.707131 0.301790 -0.052808 -0.663636 0.121343 0.527024 -0.074621 -0.482947 -0.058551 0.595091 0.321104 -0.050345 0.283934 0.125503 0.257266 0.770597 0.883014 -0.130409 -0.239163 0.216166 -0.429483 -0.062546 -0.347539 -0.175166 0.341656 -0.561365 0.025789 0.349539 -0.368439 -0.086425 0.668624 -0.300856 0.337225 1.387202 -0.060863 0.308667 0.156155 -0.694433 0.317571 -0.274186 -0.297308 0.271730 0.552406 0.440995 -0.824803 -0.377321 0.153438 0.709415 0.307123 -0.727880 -0.436783 -0.237258 0.071988 -0.038842 0.161492 0.141799 0.097369 -0.334180 -0.058895 0.258864 1.097302 -0.500279 -0.412135 0.130615 -0.019441 -0.212918 -0.985279 -0.106710 -0.373512 -0.080356 -0.053848 -0.049322 0.159165 0.647480 -1.288600 0.528554 -0.399618 -0.352371 0.415090 0.090964 -0.165038 -0.802353 0.281693 0.544187 0.576286 0.103136 0.139600 -0.086960 -0.634781 -0.072395 0.036519 0.320726 -0.340608 0.499486 0.045316 -0.564836 -0.442393 -0.095887 0.090113 -0.321911 -0.017962 0.262165 0.199546 -1.352938 0.664861 -0.192933 -0.346965 0.288915 -0.065371 0.426112 -0.643825 -0.755409 0.328059 -0.119835 -0.273651 -0.258982 -0.167680 0.370668 0.004097 -0.233696 -0.273774 -0.734129 0.396068 -0.078306 0.293907 0.406178 0.245877 0.887824 -0.067072 -0.472518 -0.500225 -0.027262 -0.010762 -0.367327 -0.202763 -0.393645 -0.284940 0.478721 1.005535 0.041093 0.083233 -0.066153 0.599301 -0.887534 -0.294119 0.441434 0.683791 -0.206498 0.313157 0.458196 -0.483794 -0.349587 -0.379818 -0.131365 0.059318 -0.463211 0.246104 -0.666810 -0.012746 0.487760 -0.144298 -0.196919 0.428139 -0.055675 0.104941 -0.260107 0.604845 1.099536 -0.702933 0.037444 -0.457496 0.274503 -0.827546 -0.496568 0.015601 0.340721 -0.126295 -0.032354 0.176081 0.265032 0.063552 -0.283409 -0.158775 -0.258296 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a(queueEntry**, queueEntry**, queueEntry**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a1(queueEntry**, queueEntry**, queueEntry**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a2(queueEntry**, queueEntry**, queueEntry**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward::__copy_move_b(queueEntry**, queueEntry**, queueEntry**) = -0.764512 -0.138784 -0.165633 -1.663793 1.492798 1.180988 0.638658 -0.919964 -1.542606 -1.098009 0.397744 -2.982215 -1.783715 1.842072 -0.661659 1.516075 3.158839 -0.029311 -0.480221 -1.020704 1.156347 0.215935 3.435881 3.538160 -2.365733 0.246619 0.332591 0.859258 0.166342 -0.081707 0.301680 -2.312100 0.766264 -1.306879 0.634883 -0.578590 -0.648991 0.093345 1.652559 -3.856937 -0.239558 0.916874 0.090908 0.051988 0.172860 0.996357 2.663819 1.854410 -0.452675 1.613554 1.694418 0.266227 1.074847 0.159576 0.256836 -0.041582 0.221975 -0.640299 -0.480820 -0.286010 -0.507809 -0.343467 -0.048404 2.326744 2.664851 -0.257705 -1.354439 0.707735 0.873311 0.407764 0.362908 2.048204 0.459731 0.994416 1.471853 -2.536157 -0.125328 -4.402136 0.415431 -4.653056 -2.308066 -0.479639 1.628578 0.844846 1.217446 -0.468448 3.674496 -0.281405 -0.352657 1.722294 2.758724 -1.945997 -0.607121 -0.811285 -0.699051 0.287102 -0.890954 0.611344 0.737967 0.794484 -2.172674 -1.225884 0.760302 -0.107018 -1.428148 -1.400543 0.079093 1.318345 -1.627332 -1.269362 -1.936925 1.497314 0.164542 -3.774991 -0.442092 -0.882290 0.507626 0.552084 -1.511777 -1.941786 0.701592 0.341571 -1.002978 -0.790177 -1.061754 1.816359 2.004338 0.330363 0.447245 1.448041 1.070272 3.599374 0.813801 -1.309072 -0.355429 0.700886 -0.475648 0.624800 -1.094615 -0.422705 0.968062 -2.020864 0.674518 1.077602 -1.361747 -0.597314 0.774514 -0.733513 0.102087 6.667395 -0.832930 2.480611 1.942509 -2.030635 1.279553 -1.290010 -0.087275 0.574443 1.626216 1.491715 -2.745015 -1.718518 1.957522 3.333829 1.208564 -2.371214 -0.222593 0.997682 0.490509 -0.892336 1.126287 0.462403 0.571296 -1.132063 -0.130323 1.666382 4.366830 -1.007693 -0.484164 0.288550 2.104753 0.381705 -1.891587 -0.483764 -2.351155 -0.324412 1.319980 0.982573 1.118141 2.678698 -4.205178 1.762437 0.000953 -0.037860 1.875136 0.998284 -1.744486 -2.931578 -0.108563 1.336275 1.950399 -0.413831 0.848004 -0.093229 -2.472032 0.063192 0.555195 0.710334 -1.742899 2.176011 -0.183988 -1.380670 -0.664510 -0.137923 -0.901823 -0.842095 -0.842191 1.667371 1.331984 -3.642902 2.169979 0.251169 -1.363746 0.229116 -1.233446 2.585200 -2.077567 -1.971406 1.388970 -1.238106 -1.177257 -0.370542 -0.660111 0.765372 0.298984 0.973695 -1.977577 -2.147875 2.575673 -0.066597 2.707263 1.488487 -0.269166 1.714923 -1.124681 -1.443633 -1.043784 -2.090259 0.606977 0.202006 -1.524450 -0.753909 -0.909226 1.635244 2.462619 -0.370324 -1.196171 -0.386714 1.776959 -2.717761 0.084349 0.924259 1.039247 -1.536304 0.987465 1.353463 -1.690559 0.236625 -2.054661 0.127793 -1.372321 -1.515699 1.456864 -1.221373 0.416945 0.677721 -0.814672 -0.137191 1.142146 0.696560 -0.022021 0.335059 2.682592 2.292056 -0.638993 -0.127170 -2.877075 1.406830 -2.731367 -2.367901 0.394018 -0.000190 -1.455610 -0.759373 -0.075274 1.781994 0.757090 -1.005019 -1.664231 0.827865 +PE-benchmarks/snake-ladder.cpp__std::deque >::empty() const = 0.063123 0.571130 0.579541 -0.317946 0.527119 0.613142 0.087338 -0.034266 -0.258514 -0.227270 -0.132803 -0.817157 -0.662741 0.467919 -0.129250 -0.103834 0.647380 -0.072549 -0.095051 -0.033996 -0.079296 0.220625 0.668284 0.676592 -0.613111 0.292337 0.055893 0.165382 -0.200454 0.805019 -0.392251 -0.880902 -0.053479 0.410057 0.234236 0.007028 -0.290914 -0.423384 -0.145743 -0.985367 -0.078464 0.681821 -0.094516 -0.063147 0.257315 0.011279 1.111921 0.295481 0.009794 0.075543 0.156267 0.232449 0.292947 -0.017696 0.354317 -0.065630 0.790515 -0.265812 -0.274006 0.057709 -0.085761 -0.187216 -0.359578 0.556820 0.517331 0.074245 -0.297505 -0.333773 -0.068560 0.002068 -0.202207 0.427589 0.294067 0.679657 0.172805 0.358574 0.375433 -0.157958 0.213328 -0.459107 -0.596286 -0.326260 0.398352 0.797700 0.081481 -0.498816 0.812838 -0.144131 0.190204 0.014870 0.901368 -0.357667 -0.082624 -0.167404 -0.306256 0.108492 -0.096395 0.053015 -0.326995 -0.113071 -0.474285 -0.284458 0.246703 -0.102986 -0.366047 0.507650 -0.073398 0.309434 -0.500703 0.033913 -0.500959 0.048638 0.149643 -0.816466 -0.520764 0.048801 -0.253924 0.209937 -0.289680 -0.410109 0.263174 0.137599 -0.314469 -0.019124 -0.815707 0.663320 0.317521 -0.075071 0.130708 0.101925 0.510031 0.361425 0.080862 -0.171472 0.012082 0.023238 0.053970 -0.077738 -0.032264 0.109687 -0.390186 -0.238643 0.009379 0.274928 -0.306078 0.165827 -0.992413 -0.293061 0.116792 1.451983 -0.393693 0.432065 0.001855 -0.661952 0.454966 -0.020929 -0.482553 -0.150062 0.231435 0.703234 -0.386594 -0.244758 0.475202 0.778013 0.229411 -0.274973 0.522826 0.143032 -0.162048 -0.248727 0.577225 -0.008649 0.135533 -0.314544 -0.186986 0.299309 1.065992 -0.074622 -1.073373 0.109994 0.037509 0.334549 0.163117 0.110608 0.032325 -0.030742 0.193961 -0.099361 0.373353 0.573494 -1.178299 0.576346 0.164898 -0.598817 0.796656 -0.216822 -0.168279 0.151982 0.113725 0.602541 0.511451 0.195218 -0.197280 -0.380274 -0.526270 -0.100193 0.118190 0.222251 -0.483855 0.514741 0.146826 -0.638639 -0.315317 -0.806200 -0.050264 -0.122543 -0.775963 0.198363 0.132004 -1.106257 0.761114 0.334012 -0.096589 -0.199258 -0.334579 0.037705 -0.436807 -0.590472 0.018302 -0.384564 -0.514498 0.102411 -0.364905 0.039971 0.219262 0.340673 -0.583929 -0.484285 0.572175 0.145731 0.539185 0.424346 0.230829 0.272434 0.752761 -0.272118 0.015478 -0.511324 0.739046 -0.061952 -0.216629 0.234107 -0.505255 0.251452 0.652075 -0.171678 -0.127040 -0.706757 0.309892 -0.028869 -0.045920 0.221600 -0.511655 -0.339370 -0.030566 0.334352 0.010071 -0.129246 -0.566515 -0.195676 -0.420061 -0.377064 0.093425 -0.395413 -0.125344 0.532357 -0.417024 -0.555573 0.140371 -0.182052 -0.339414 0.075231 0.527593 0.139438 -0.299196 0.701910 -0.530570 0.463118 -0.650149 -0.423997 0.075495 -0.429172 -0.282284 -0.355987 -0.151216 0.101404 0.018594 -0.009652 -0.167946 0.178214 +PE-benchmarks/snake-ladder.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/snake-ladder.cpp__std::deque >::front() = 0.010570 0.284406 0.240338 -0.005932 0.229628 -0.051441 0.117950 0.248095 -0.138979 -0.506150 -0.085051 -0.436218 -0.676615 0.346961 -0.074675 -0.126837 0.582216 0.146135 0.113545 -0.232105 0.001379 -0.276457 0.586325 0.574345 -0.563309 0.132133 0.129392 0.252392 0.072259 0.314968 0.114230 -0.523113 0.220060 0.135294 0.339889 -0.208602 -0.018224 -0.175756 -0.407935 -0.863611 -0.116080 0.373088 0.045295 0.041960 0.099814 0.521255 0.683535 0.314257 -0.181322 0.315347 0.214777 0.011567 0.225066 0.078854 -0.028865 -0.227899 0.061427 -0.325002 -0.378134 0.182502 -0.006257 -0.813546 -0.228434 0.371026 0.553165 -0.112286 -0.056419 -0.049289 -0.184948 0.142947 -0.002043 0.244641 0.400751 0.198855 0.394809 -0.007195 -0.106891 -0.613914 -0.075973 -1.516994 -0.487225 -0.517717 0.667802 0.357531 -0.051575 -0.155516 0.597584 0.129114 0.254795 0.326863 0.678364 -0.256662 -0.206141 -0.270372 0.023097 0.342835 -0.335300 0.031856 0.152643 0.035250 -0.357386 -0.221795 0.282580 -0.159524 -0.260254 0.013057 -0.210407 0.347917 -0.723869 -0.027702 -0.792721 -0.187020 0.223248 -0.654974 0.107845 0.151952 0.260530 0.358644 -0.020610 -0.007452 0.104697 0.093060 -0.044158 -0.019805 -0.563528 0.508424 0.045336 -0.055198 0.272180 0.337944 0.249107 0.287225 0.438377 -0.045645 -0.217463 0.202208 -0.183122 -0.030402 -0.195100 -0.084706 0.277239 -0.357229 0.123587 -0.015960 -0.286913 -0.317545 -0.356575 -0.293900 0.297994 0.532031 -0.026144 0.221805 0.106697 -0.390732 0.257289 -0.175674 -0.219180 0.127895 0.408950 0.337032 0.066466 -0.213108 0.105584 0.545193 0.204554 -0.303691 0.039385 -0.022344 0.135763 -0.166526 0.270483 0.195223 0.119015 -0.211132 -0.012145 0.247018 0.524465 -0.146967 -0.329851 -0.005774 0.146449 0.094587 -0.315245 0.075708 0.070449 -0.081618 0.043400 0.013996 0.051988 0.465263 -0.865579 0.425323 0.042175 -0.047235 0.187690 -0.074853 -0.112170 -0.630566 0.240900 0.404859 0.421956 0.166900 0.043391 -0.118938 -0.456200 -0.052307 0.082009 0.286422 -0.206821 0.360728 -0.106806 -0.244112 -0.385247 -0.397864 0.008395 -0.007480 -0.207999 0.161180 0.460456 -0.947409 0.478135 -0.252092 -0.349104 -0.130271 -0.046511 0.214510 -0.538940 -0.534692 0.042967 -0.359972 -0.768964 -0.289505 -0.195143 0.121644 -0.063461 -0.221254 -0.032751 -0.323640 0.583398 0.018432 0.200946 0.301882 0.154470 0.708680 0.370710 -0.406096 -0.088239 -0.163068 0.241151 -0.545593 -0.055659 0.194376 -0.200056 0.187210 0.767239 -0.022855 -0.050803 -0.066076 0.416918 -0.346182 -0.425710 0.346922 0.071693 0.096870 0.512631 0.360221 -0.400695 -0.234298 -0.502588 0.006339 0.093280 -0.344622 0.105582 -0.599196 -0.052312 0.432985 -0.139200 -0.348883 0.275682 -0.092478 -0.146138 -0.237201 0.546996 0.648665 -0.546502 0.399123 -0.397958 0.223123 -0.611066 -0.319391 -0.093164 0.146979 0.039711 0.003687 -0.006272 0.018787 0.093650 -0.299294 -0.354147 0.046096 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::operator*() const = -0.009347 0.369540 0.211218 -0.139034 0.352797 0.287771 0.081346 -0.065336 -0.127741 -0.230885 -0.123914 -0.311895 -0.379510 0.323258 -0.077721 0.092510 0.511799 0.039272 0.034378 -0.140017 0.133101 -0.128161 0.541099 0.489581 -0.466744 0.159975 0.300812 0.115540 -0.018656 0.412668 -0.221362 -0.484725 0.160070 -0.089173 0.133307 -0.212963 -0.096269 -0.191897 0.018449 -0.705978 -0.056443 0.041168 -0.140564 -0.007873 0.014070 0.124200 0.694828 0.257362 -0.105360 0.194561 0.199941 0.168603 0.086400 0.067370 0.124355 0.107412 0.269863 -0.126257 -0.148889 0.038259 -0.039692 -0.340684 -0.116006 0.376408 0.417669 -0.028589 -0.097873 0.083938 -0.150018 0.001634 -0.095535 0.251213 0.162735 0.305362 0.210428 -0.327106 0.033297 -0.575219 -0.078898 -0.847538 -0.383178 -0.355220 0.114027 0.117241 0.234078 0.050648 0.553992 -0.011250 0.195417 0.129565 0.606140 -0.432461 -0.086535 -0.164159 -0.114441 0.105246 -0.165780 0.051698 -0.067710 -0.132815 -0.306127 -0.423368 0.322915 0.026223 -0.253763 -0.113343 -0.089336 0.260309 -0.510966 -0.199619 -0.494384 -0.131001 -0.106648 -0.576357 -0.072330 0.022518 0.322911 0.157210 -0.077498 -0.471228 0.118784 0.320711 -0.102948 -0.267056 -0.122251 0.324474 0.247197 -0.039758 0.150628 0.033185 0.252683 0.529124 0.399846 -0.088698 -0.107034 0.067327 -0.114471 -0.076422 -0.137779 -0.020158 -0.046430 -0.322423 0.106884 0.307423 -0.228867 -0.047260 0.052424 -0.282703 0.193346 0.945974 -0.144234 0.218971 0.060366 -0.520709 0.110632 -0.202914 -0.283852 0.057247 0.284118 0.390953 -0.379085 -0.222929 0.197340 0.481010 0.187394 -0.332549 -0.064830 -0.080333 -0.017405 -0.067947 0.187981 0.051246 0.039638 -0.226427 -0.085428 0.196488 0.760773 -0.211892 -0.328068 0.118335 0.053904 -0.006853 -0.304007 -0.037107 -0.187498 -0.027942 0.132474 -0.063605 0.147302 0.423248 -0.850739 0.344049 -0.153669 -0.297781 0.250046 0.042107 -0.097328 -0.194664 0.175479 0.421349 0.354761 0.055803 0.154352 -0.159906 -0.392256 -0.065891 0.053531 0.207587 -0.279512 0.323261 0.125487 -0.488228 -0.291000 -0.136023 0.043012 -0.190570 -0.180533 0.151483 0.127336 -0.931281 0.509016 -0.001040 -0.152279 0.105566 -0.122452 0.288511 -0.383729 -0.481289 0.194614 -0.152870 -0.161766 0.035014 -0.150016 0.199128 0.067355 0.056122 -0.250187 -0.398108 0.244163 0.092456 0.223128 0.274496 0.217228 0.440160 -0.103854 -0.254356 -0.218992 -0.160049 0.222548 -0.160018 -0.134756 -0.061414 -0.246895 0.290922 0.617659 -0.013759 -0.069212 -0.152979 0.310431 -0.411727 -0.054448 0.242245 0.290965 -0.221241 0.088599 0.273056 -0.172968 -0.213629 -0.271371 -0.008451 -0.094165 -0.324220 0.101763 -0.388525 -0.038951 0.381496 -0.151714 -0.243780 0.240977 -0.069838 0.008390 -0.089363 0.328444 0.455397 -0.357213 0.168650 -0.307862 0.184963 -0.533348 -0.368462 0.042391 0.024572 -0.107501 -0.117464 -0.064001 0.157987 -0.009801 -0.011361 -0.063220 -0.112196 +PE-benchmarks/snake-ladder.cpp__std::deque >::pop_front() = 0.014234 2.455529 2.125600 -1.552798 2.652458 3.008651 0.310608 -0.069462 -0.904188 -1.137652 -1.020027 -2.836822 -3.094973 2.164943 -0.544654 0.000000 3.090978 -0.366878 -0.333578 -0.231438 0.845704 0.416749 3.026306 2.546935 -3.095265 0.926844 1.114751 1.170308 -0.483309 3.366661 -1.530461 -3.585911 -0.177529 0.830994 1.517133 -0.554302 -0.774878 -1.565047 -0.542132 -4.431091 -0.547334 2.378133 -1.189788 -0.023863 0.732596 0.198340 4.758044 1.573375 -0.770769 0.098393 1.147412 1.046003 0.970967 0.069258 0.760619 0.247291 2.445930 -0.363692 -1.027676 0.131846 -0.443350 -1.136422 -0.852670 2.510004 2.635427 -0.057277 -1.128507 -0.198502 -0.255231 0.015432 -0.992983 1.998692 1.360695 2.495913 1.462610 0.057147 0.642984 -2.155299 0.864154 -2.936964 -2.448723 -2.276254 0.752450 2.438958 0.805825 -2.018135 4.065028 -0.710752 0.946804 0.950372 4.063868 -1.976768 -0.241979 -2.181660 -1.332024 0.396917 -0.823978 -0.283278 -0.705361 -0.634862 -1.940847 -2.070374 0.725443 -0.326230 -1.660858 0.670609 -0.936466 2.024047 -2.154075 -0.571535 -2.973626 0.347598 -0.034508 -3.985232 -2.171764 0.035446 -0.591291 0.658863 -0.504781 -2.404176 1.015456 1.645378 -1.294991 -0.825661 -1.888701 3.209368 1.966529 -0.769062 0.652643 0.641868 1.921232 2.031799 1.677986 -0.599669 -0.803248 0.550995 -0.301379 -0.728031 -0.868528 0.674948 -0.612940 -1.511253 -0.455718 1.925817 -1.208382 0.651684 -2.414392 -2.104082 1.131024 7.870496 -1.595937 1.375160 -0.228865 -3.142940 2.493890 0.193606 -2.138532 -0.156069 1.172414 3.140296 -3.269162 -1.369913 2.085413 3.309272 1.024809 -1.899964 1.253162 -0.002481 -0.481481 -1.178375 1.766890 0.575517 0.136414 -1.095340 -0.752274 1.203512 5.059587 -1.154058 -4.593455 0.966679 0.942067 0.471425 -0.738982 -0.013688 -0.945576 -0.729146 1.207026 -0.473395 1.705466 2.841752 -5.097060 2.430432 0.535396 -2.581793 3.034188 -0.961538 -0.141470 -0.352160 0.645762 2.954019 2.244764 0.529875 -0.530089 -1.871574 -2.558760 0.045569 0.742289 1.481353 -1.813589 2.235553 0.149247 -2.594750 -1.736204 -2.571434 -0.833760 -0.882854 -2.631993 0.792216 0.253551 -4.946504 3.654362 0.674213 -0.289340 0.020329 -1.197934 1.058252 -2.155861 -3.136464 0.965507 -0.922597 -1.770591 0.172215 -1.217627 1.034057 1.229727 0.991411 -2.651450 -3.550758 2.113813 0.537666 2.166986 1.756415 1.469161 2.021816 2.283527 -1.526163 -1.043434 -2.576884 2.665356 0.365388 -0.957216 -0.793539 -1.659540 1.600371 3.225558 -0.715116 -0.284044 -3.066634 1.800053 -1.403426 -0.263803 1.177642 -1.079886 -1.766874 -0.244598 1.651783 -0.277192 -1.348244 -2.525942 -0.080144 -1.650740 -1.955057 0.216564 -2.452011 -0.686742 2.718975 -1.630529 -2.089512 0.890425 -0.205511 -1.046161 -0.376337 2.698469 1.563900 -1.876692 2.118121 -2.395332 2.221306 -3.343002 -2.077473 0.174471 -1.586276 -0.580247 -1.095275 0.080151 0.679899 -0.039442 0.019410 -0.536722 -0.444219 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_pop_front_aux() = 0.341562 3.243010 2.720229 -1.434677 2.643400 3.560407 0.390934 0.027447 -0.751174 -0.881131 -0.970857 -3.211253 -3.257790 2.136821 -0.462712 -0.705639 3.265539 -0.423560 -0.393115 0.000507 0.117562 1.197985 3.156557 3.026481 -3.120956 1.283024 1.130913 0.622084 -0.835375 3.648758 -2.207555 -4.072521 -0.080619 1.481378 1.187546 -0.115144 -1.245656 -2.645698 -0.751836 -4.646042 -0.437292 2.453675 -1.566189 -0.386990 0.965208 0.026797 5.707372 1.402012 -0.415175 -0.294663 0.735870 1.243725 0.831110 -0.083927 1.427656 0.035739 3.202126 -0.099464 -1.116456 0.071962 -0.371092 -0.801372 -1.566786 2.703649 2.364525 0.448726 -1.212581 -1.022363 -0.297725 -0.221519 -1.428247 1.926596 1.913041 3.377069 1.151051 1.049506 1.097240 -1.278073 0.721589 -2.259454 -2.771314 -2.168629 1.101210 2.395804 0.693445 -2.438459 3.787419 -0.742999 1.431237 0.428874 4.526558 -2.057157 -0.327162 -1.586067 -1.461269 0.519151 -0.524620 0.365125 -1.190250 -1.520020 -2.291567 -2.056695 0.984251 -0.211652 -1.749226 1.652310 -0.383617 1.692189 -1.875326 0.019051 -2.814100 -0.155075 0.269180 -4.096215 -2.874069 0.404404 -0.464796 0.971248 -1.034417 -2.632267 1.039045 1.505114 -1.436850 -0.847962 -2.166335 3.338786 1.967247 -0.499228 0.795344 0.285614 2.557731 1.961004 1.509333 -0.488636 -0.144723 -0.032678 -0.171634 -0.817905 -0.373056 0.751603 -1.457409 -1.077961 -0.095540 2.111972 -1.434521 0.887021 -3.272770 -1.810937 1.006285 8.206577 -1.875614 1.739348 -0.407917 -3.500294 2.242584 -0.114436 -2.777625 -0.710569 1.202849 3.657857 -3.198611 -1.092967 2.113850 3.599531 1.080569 -1.911027 2.309846 0.152851 -1.014042 -1.555702 2.352121 0.026787 0.694213 -1.427354 -0.935894 1.920373 5.248208 -1.080166 -5.936134 0.669211 0.354192 1.556790 0.330032 0.343152 0.000000 -0.223583 1.439080 -0.710885 2.024449 2.795040 -5.488847 2.516184 0.504380 -3.278994 3.600071 -0.715368 -0.587894 1.290106 1.105860 3.368967 2.321353 1.145445 -1.141937 -2.179066 -2.457972 -0.489652 0.796870 1.311615 -2.066047 2.361733 0.670155 -3.156077 -1.848818 -3.608126 -0.312614 -0.871177 -3.379869 0.746512 -0.251034 -5.656795 4.093691 1.492170 -0.314570 -0.649915 -1.952382 0.404658 -2.257483 -3.352773 0.485018 -1.276299 -1.939507 0.671920 -1.652692 0.689806 1.625292 1.877719 -3.048639 -3.372863 2.517831 1.017635 2.574289 1.996533 1.700115 2.071534 2.724566 -1.363417 -0.746572 -2.912411 3.858288 0.463313 -1.487298 -0.145772 -2.388143 1.434691 3.354389 -1.212429 -0.451358 -3.890660 1.380592 -1.206083 -0.080011 1.101995 -1.144238 -1.882265 -0.629614 1.655998 0.134258 -1.164203 -2.441891 -0.901639 -1.922775 -2.227837 0.005397 -2.324593 -0.663043 2.953395 -1.963995 -2.376044 0.637373 -0.915270 -1.101667 0.199967 1.962951 1.519728 -2.207045 2.727382 -2.466806 2.514192 -3.414371 -2.470645 0.711768 -2.431617 -0.826549 -1.678122 -0.378475 0.391707 -0.292889 -0.043980 -0.491315 0.240517 +PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -3.337133 -3.339622 -1.348408 -5.979522 2.887793 7.094302 1.625946 -5.557185 -7.313372 -1.800920 3.036069 -9.386857 -3.136103 7.699223 -3.035644 6.081010 8.864950 0.275792 -4.609871 -1.616105 6.190764 1.179982 10.211777 11.148004 -6.211987 0.042445 -1.011577 3.680445 2.002655 1.091119 2.842776 -4.615752 1.518640 -6.083767 -0.583511 -3.087348 -2.134514 3.460907 6.174197 -11.357774 -0.343065 4.432296 0.458602 -0.342864 0.580429 -0.397390 5.605692 5.884148 0.689594 5.165872 4.232511 0.929942 3.520325 -0.018457 2.485561 0.932193 1.344853 -2.196836 -0.155114 -2.004436 -2.115676 0.069637 1.032816 7.973539 8.251244 0.353803 -4.113494 1.724602 2.313704 1.788456 2.808588 6.206442 -2.540759 2.651698 3.543638 -7.794244 2.238800 -8.694810 2.909484 -7.365796 -4.504355 2.021547 4.933593 6.022121 4.368967 -1.099273 11.124020 -3.149412 -4.844145 8.082772 7.800180 -5.541580 -1.175316 -1.468989 -4.047099 -0.134210 -2.731968 1.317993 -0.513812 4.809383 -6.360287 -3.009307 -0.127786 1.612855 -4.350954 -3.101164 0.072657 5.277914 -6.604165 -4.673591 -0.823085 6.783861 -0.960120 -11.440179 -6.506822 -5.932208 0.185769 0.401969 -6.170848 -6.225886 3.436880 1.349797 -1.393470 -2.492314 -1.953121 3.600569 4.656449 1.746900 -1.646860 3.945571 1.793209 11.140372 0.012700 -4.150660 1.466729 1.980133 -0.036110 3.748772 -2.218647 -1.584945 -0.007802 -6.492991 -0.775099 4.249247 -3.792075 -1.446808 -0.089675 0.357648 -1.491591 25.866387 -1.964744 8.896894 7.875912 -6.221370 1.896409 -2.455962 1.861159 2.645537 3.213039 3.586188 -11.079519 -5.821947 6.941936 10.865300 3.883079 -5.896565 0.596390 3.384717 0.823451 -1.060926 4.042730 0.080105 0.598573 -4.328586 -1.230165 4.319409 13.840196 -3.221883 0.073794 1.550078 3.350655 -1.266932 -5.272138 -1.099128 -6.009029 0.104624 4.078876 1.822765 3.739807 8.147416 -8.186327 6.827098 -0.551259 0.428297 6.089350 2.619203 -5.964250 -5.885801 -3.624546 2.604210 6.075857 -2.402755 -0.090444 1.621858 -8.806825 0.254755 2.491023 0.905298 -5.550727 7.629756 1.023696 -3.283695 -2.157788 1.879259 -2.569368 -2.577092 -3.106973 6.036828 -0.385370 -5.699558 5.709322 2.705149 -2.954853 0.739824 -1.547971 6.959487 -5.833638 -6.455870 5.033956 -2.345924 -4.139880 -1.116984 -2.279218 3.056756 4.489806 1.651650 -7.784044 -5.627997 6.932336 -2.353839 9.416390 4.044618 -2.335791 3.464856 -2.738980 -2.726400 -3.724968 -6.204533 0.881229 2.010975 -4.796295 -4.560174 -2.238357 5.982749 5.234298 -0.090325 -5.786770 -0.142353 7.692851 -4.507689 0.069099 1.525349 1.317021 -6.590217 1.708209 3.258977 -5.295873 2.933437 -5.126682 -0.483599 -5.616678 -3.410184 6.801522 -0.519539 3.280438 -0.319354 -0.771918 0.331502 2.605581 3.818275 0.114638 3.708089 9.596821 2.852855 0.694293 -1.117411 -9.209394 5.011923 -7.470641 -6.546825 0.832942 1.589048 -4.699044 -2.284433 -0.858600 7.263191 5.933339 -3.864716 -3.175199 3.497589 +PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -1.152957 -0.746753 -0.063216 -2.238458 1.001341 1.641242 0.547290 -1.186325 -2.500098 -1.893297 0.840985 -3.836496 -2.237095 2.962940 -1.249662 1.321043 3.726643 0.203413 -1.189681 -0.981932 2.104024 -0.319347 3.873731 4.442075 -3.036253 -0.071907 0.004270 1.826593 1.001254 0.525060 1.887466 -2.566312 0.314361 -1.259318 1.075331 -1.270759 -0.533683 1.073125 0.998858 -4.991022 -0.402099 2.494264 0.596068 0.021429 0.446250 0.741435 2.715631 2.396622 -0.589978 1.839703 2.115667 0.582715 1.442654 -0.082926 0.346749 -0.610304 0.090905 -1.166508 -0.426415 -0.102563 -0.661602 -1.016998 0.281125 3.359138 3.716911 -0.144460 -1.323276 0.291052 0.730716 1.012254 0.820557 2.450467 -0.107272 1.144066 1.893636 -2.583324 0.287135 -4.923632 1.408763 -5.429304 -2.117022 -0.232242 2.751373 2.957777 0.789397 -0.964226 4.586894 -0.631940 -1.150428 3.743076 3.555312 -1.418147 -0.630000 -1.395839 -1.751543 0.725101 -1.464545 0.407324 0.095410 2.153472 -2.508268 -1.171956 -0.167982 0.044762 -1.777679 -1.023326 -0.451665 2.234236 -3.017083 -1.162235 -1.526893 2.257007 0.540375 -4.863321 -1.664679 -2.216360 -0.173929 0.496913 -2.012930 -1.461069 1.106367 0.309456 -0.695357 -0.263199 -2.380114 2.180468 1.521100 0.405568 -0.330364 1.879050 0.933434 3.280935 0.314401 -1.599295 -0.054303 1.098085 -0.456751 0.868854 -1.469047 -0.519560 1.508937 -2.390450 -0.390201 0.861694 -1.590630 -1.474424 -0.614446 -1.011742 0.157132 9.550742 -0.720406 3.134632 2.655980 -2.357078 1.573689 -0.471098 0.332011 1.090799 1.809473 1.730963 -3.224254 -2.233997 2.468363 4.371717 1.473586 -1.936199 -0.062034 1.374436 0.342502 -0.675009 1.744268 0.293677 -0.198159 -1.523827 -0.459162 1.866955 4.684436 -0.754835 -0.116401 0.157946 2.487170 -0.341312 -2.080979 0.009093 -2.298601 -0.072902 1.324086 0.665991 1.614845 3.368285 -4.663619 2.805872 0.481931 0.652018 1.836246 0.386673 -2.016535 -4.296672 -0.468187 1.469731 2.467782 -0.754095 0.274670 0.342362 -3.564427 0.171950 0.890265 1.001283 -2.277747 3.005839 -0.366696 -1.082771 -1.454011 0.015589 -1.522780 -0.795828 -1.435331 2.112179 1.039726 -2.776998 2.714879 0.139627 -1.297725 -0.376265 -0.729542 2.462196 -2.951232 -2.834784 1.472172 -1.332623 -2.707460 -1.063892 -1.148018 1.252631 0.909777 -0.032628 -2.434894 -2.502731 3.157522 -1.014979 3.428197 1.665939 -0.532363 2.185320 0.278064 -1.190515 -1.398313 -2.288666 0.677212 -0.031152 -1.683977 -1.277514 -0.791083 1.945004 2.799160 -0.386056 -1.988584 0.186462 3.120890 -1.470503 -0.860934 0.687857 -0.474634 -1.785136 1.417464 1.334331 -2.497764 0.545324 -3.084845 0.368076 -1.576228 -1.661568 2.260083 -1.156197 0.870472 0.564064 -0.538173 -0.471774 1.277366 1.525597 -0.370200 0.937721 4.053970 1.637146 -0.386038 0.299348 -3.878724 1.874506 -3.467408 -2.612584 -0.265473 0.595163 -1.119225 -0.662468 -0.423041 2.292478 2.128718 -1.244538 -1.710448 1.521542 +PE-benchmarks/floyd-warshall.cpp__main = 0.073829 0.209346 0.349770 -0.078303 0.287939 -0.058664 0.139744 0.376807 -0.330383 -0.408999 -0.105574 -0.475727 -0.560609 0.403663 -0.004747 -0.152399 0.641313 0.257403 0.057893 -0.136372 -0.129129 -0.257630 0.466034 0.528645 -0.384815 0.220343 -0.145069 0.146054 -0.189342 0.602626 -0.079139 -0.641611 0.109916 0.280312 0.298334 -0.231455 -0.161922 -0.104147 -0.444721 -0.900273 -0.016213 0.645649 0.154926 -0.034911 0.193554 0.400980 0.662901 0.220059 -0.018597 0.329566 0.027931 -0.014121 0.267384 0.064608 0.221710 0.001055 0.234397 -0.333219 -0.475974 0.256348 -0.103356 -0.656807 -0.256567 0.247879 0.384705 -0.083267 -0.156639 -0.300120 -0.166170 0.121751 0.060569 0.167756 0.364606 0.065129 0.243220 0.287897 -0.021932 -0.257287 0.040223 -1.255752 -0.489349 -0.357889 0.837534 0.565407 -0.146156 -0.379483 0.530657 -0.133689 0.220642 0.150902 0.600571 -0.168836 -0.223583 -0.198023 -0.000783 0.230066 -0.160203 -0.201184 0.143303 -0.039493 -0.366134 -0.078971 0.340974 -0.177550 -0.196891 0.290584 -0.107159 0.401179 -0.696604 0.006836 -0.702769 0.031931 0.294940 -0.466112 0.054993 0.190272 -0.089470 0.399742 -0.232712 0.038674 0.265818 -0.003278 -0.210070 0.133169 -0.698839 0.600306 -0.152283 -0.063105 0.231338 0.264695 0.188506 0.111199 0.313710 -0.117971 -0.028382 0.245348 -0.050391 -0.032843 -0.097883 -0.159964 -0.042466 -0.300330 0.057465 -0.174451 -0.329583 -0.086941 -0.754443 -0.090967 0.183686 0.400609 -0.185381 0.276464 -0.002315 -0.334481 0.429617 0.009951 -0.187080 -0.044440 0.407603 0.304550 0.162145 -0.171919 0.131653 0.523492 0.248400 -0.208309 0.168533 -0.073356 0.075809 0.021034 0.366509 0.095065 0.226660 -0.263140 -0.058320 0.009411 0.676145 -0.039379 -0.580632 -0.042742 0.005554 0.170013 -0.126869 0.121484 0.096089 -0.043955 -0.053770 -0.104772 0.111107 0.441912 -0.882149 0.528049 -0.087844 -0.228322 0.374722 -0.127283 -0.018626 -0.521175 -0.064293 0.328824 0.653446 0.252933 -0.103790 -0.125799 -0.370046 -0.087141 0.010702 0.262358 -0.222179 0.334994 -0.097005 -0.326358 -0.165223 -0.609178 -0.000864 0.016330 -0.342527 0.105006 0.509098 -0.874622 0.389762 -0.015057 -0.185859 -0.132591 0.152848 0.020586 -0.343028 -0.470421 -0.047598 -0.288884 -0.791253 -0.179425 -0.272859 0.088190 -0.077898 -0.186627 0.009019 -0.321508 0.661143 0.068058 0.367028 0.297862 -0.009064 0.565798 0.815164 -0.358346 0.137938 -0.273578 0.298459 -0.628197 0.108816 0.351143 -0.313040 0.147607 0.574578 0.110214 -0.034400 -0.314347 0.459783 -0.070589 -0.222746 0.397589 -0.389945 0.170545 0.444212 0.458200 -0.355874 -0.191924 -0.474056 -0.025169 -0.005257 -0.128069 0.083753 -0.498073 -0.086268 0.299121 -0.164723 -0.436254 0.109395 -0.131130 -0.323666 -0.181948 0.593096 0.382026 -0.418833 0.637575 -0.256395 0.265716 -0.434865 -0.127212 -0.233810 0.109335 -0.182976 -0.015852 -0.004455 -0.022484 0.029066 -0.207411 -0.317313 0.114346 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.098575 0.880534 0.868348 -0.586196 0.935358 0.726713 0.270626 -0.107670 -0.484258 -0.690193 -0.249764 -0.958563 -1.252306 1.078694 -0.224451 0.131055 1.719775 0.127984 -0.049835 -0.593705 0.684196 -0.618786 1.688968 1.691732 -1.620157 0.379838 1.057639 0.602628 0.406792 0.962997 -0.636308 -1.025126 0.385990 -0.458900 0.656747 -0.746941 -0.260815 -0.632959 -0.012964 -2.314280 -0.210881 0.060379 -0.563970 -0.008848 0.074747 1.047076 2.088534 0.886879 -0.606407 0.520761 0.806618 0.101978 0.280033 0.118797 0.301138 0.157361 0.957569 0.466632 -0.421748 0.160715 -0.121464 -1.210112 -0.100402 1.275436 1.470916 -0.128746 -0.329815 0.297592 -0.044666 0.034132 -0.225110 0.839264 0.691950 0.841838 0.995592 -1.399835 0.105632 -2.478992 -0.143974 -3.174163 -1.236741 -1.072164 0.624174 -0.366415 0.578838 -0.064941 1.791931 0.037090 0.497885 0.647667 1.906880 -1.255996 -0.294834 -0.709615 -0.501922 0.414510 -0.606875 0.238451 0.375699 -0.433433 -1.031043 -1.214000 0.958883 0.061674 -0.826165 -0.297274 -0.307629 1.002100 -1.337104 -0.564494 -1.602277 -0.374148 -0.167086 -1.990622 -0.112447 -0.186412 1.315997 0.474533 -0.301032 -1.260095 0.294145 0.983397 -0.364302 -0.741238 -0.275008 1.384030 0.896778 -0.028752 0.413977 0.223526 0.751452 1.350183 1.571469 -0.340761 -0.379587 0.290020 -0.759304 -0.180883 -0.663395 -0.086387 0.637346 -0.896892 0.082941 0.796151 -0.734654 -0.184858 0.960760 -0.740664 0.600954 3.683405 -0.360602 0.813493 0.261939 -1.478625 0.705600 -0.377271 -0.736240 0.403846 1.008407 1.157211 -1.893939 -0.751653 0.638735 1.632486 0.613100 -1.599225 -0.364848 -0.199888 -0.116434 -0.342199 0.564054 0.172402 0.138429 -0.651556 -0.247246 0.769648 2.344103 -0.898330 -1.606325 0.193681 0.176815 -0.087119 -1.463690 -0.065587 -0.477278 -0.073681 0.253659 -0.125270 0.673141 1.395181 -3.081917 1.109419 -0.423429 -0.867451 1.111840 0.148087 -0.439467 -1.212383 0.594510 1.250082 1.140040 0.357515 -0.052527 -0.336073 -1.342562 -0.125470 0.211313 0.650744 -0.849221 1.111077 0.194527 -1.204801 -0.940510 -0.622779 0.019196 -0.484559 -0.494309 0.550008 -0.070015 -3.028050 1.596292 -0.106367 -0.543079 0.216243 -0.509745 0.770403 -1.327661 -1.615004 0.561043 -0.355584 -0.714017 -0.470839 -0.493030 0.663655 0.249982 0.105490 -0.985983 -1.726550 0.986028 -0.169145 0.939294 0.868757 0.555879 1.778460 0.059221 -0.781429 -1.049671 -0.421138 0.696247 -0.280430 -0.672185 -0.695818 -0.685766 0.883433 1.869994 -0.280591 0.064734 -0.590482 1.102849 -1.631983 -0.487433 0.689253 1.088929 -0.651445 0.495260 0.836164 -0.760315 -0.581816 -0.978395 -0.489788 -0.274547 -1.027164 0.460473 -1.191736 -0.038081 1.035996 -0.401001 -0.541210 0.737200 -0.159681 0.077698 -0.232137 1.163235 2.313760 -1.413231 0.290594 -1.182420 0.886989 -1.753125 -1.256776 0.191869 0.031776 -0.230427 -0.307220 0.127812 0.555387 0.160168 -0.521367 -0.331576 -0.123490 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__printList(Node*) = -0.195341 0.244917 0.367117 -0.777490 0.600404 0.493521 0.156377 -0.177261 -0.683919 -0.699644 0.049530 -1.069492 -0.853577 0.899679 -0.329585 0.203795 1.286442 0.055863 -0.150605 -0.415066 0.585272 -0.229269 1.255547 1.432915 -1.265937 0.173512 0.388883 0.622791 0.325604 0.533853 0.254740 -1.083031 0.039259 -0.150429 0.545671 -0.518470 -0.177341 0.023678 0.173443 -1.856930 -0.149428 0.625740 -0.037721 0.038024 0.195669 0.298591 1.267722 0.758844 -0.517163 0.570634 0.883872 0.393246 0.339034 -0.014901 0.053523 -0.147343 0.333680 -0.224106 -0.131361 0.124070 -0.080769 -0.484061 0.035549 1.123204 1.280576 -0.130240 -0.365982 0.039234 0.176806 0.220713 0.075155 0.779185 0.159452 0.530076 0.677813 -0.875209 0.022061 -2.153627 0.413707 -2.189697 -0.921256 -0.460620 0.843362 0.744414 0.226742 -0.254713 1.527892 -0.081061 0.018732 0.995949 1.285566 -0.495386 -0.176328 -0.569908 -0.693655 0.426268 -0.457151 0.128156 -0.094439 0.387589 -0.785680 -0.698055 0.272099 -0.074028 -0.689637 -0.284355 -0.219330 0.747039 -1.019851 -0.339979 -0.798152 0.544763 0.146012 -1.607012 -0.407207 -0.628988 0.254787 0.178881 -0.407529 -0.580863 0.197853 0.272023 -0.376595 -0.138989 -0.878240 0.879425 0.678753 0.030292 0.068578 0.331873 0.494056 0.963127 0.353473 -0.531624 -0.207275 0.344071 -0.179541 0.038058 -0.674004 -0.006789 0.539738 -0.671388 0.010822 0.340114 -0.543367 -0.483777 0.035353 -0.655534 0.243996 3.174799 -0.225624 0.874880 0.615339 -0.913484 0.631135 -0.056463 -0.249931 0.437769 0.717358 0.727813 -1.057154 -0.682088 0.610685 1.388806 0.470639 -0.741970 -0.266192 0.298813 -0.085786 -0.223197 0.600681 0.036085 -0.117926 -0.464719 -0.196497 0.645348 1.572781 -0.154210 -0.594726 0.018133 0.979727 -0.195893 -0.700767 0.026818 -0.791060 -0.036582 0.456566 0.073602 0.662859 1.132421 -2.383388 0.874728 0.167823 -0.081228 0.558030 0.071081 -0.521324 -1.424574 0.261010 0.673919 0.888091 -0.147881 0.305455 -0.020205 -1.143395 -0.007952 0.248399 0.387903 -0.847262 0.955033 -0.036194 -0.618740 -0.584355 -0.234072 -0.487633 -0.307735 -0.581338 0.585643 0.401032 -1.648341 1.046493 -0.100689 -0.419887 -0.025050 -0.476813 0.825024 -1.063860 -1.028354 0.446327 -0.332910 -0.715054 -0.292864 -0.415489 0.516375 0.100561 0.169703 -0.770802 -1.016892 0.846229 -0.224717 0.877653 0.677049 0.060448 0.868211 0.084227 -0.394693 -0.597589 -0.601998 0.590672 -0.039536 -0.504597 -0.385443 -0.463336 0.556666 1.241161 -0.169042 -0.453979 -0.193866 0.979919 -0.671705 -0.293465 0.290676 -0.026951 -0.509550 0.448474 0.480176 -0.731573 -0.093805 -1.104318 0.163310 -0.294761 -0.636158 0.668656 -0.577372 0.139753 0.531383 -0.290897 -0.393370 0.611050 0.267522 -0.129078 0.082805 1.182710 0.910339 -0.432311 0.290477 -1.152368 0.562668 -1.296047 -0.898758 -0.130578 -0.109115 -0.333839 -0.225101 -0.263763 0.656460 0.406965 -0.016271 -0.426440 0.325178 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__getTail(Node*) = -0.305558 0.392817 0.144142 -0.820964 0.739069 0.615591 0.130243 -0.276474 -0.739986 -0.841517 -0.179385 -1.080422 -0.830203 0.970168 -0.271153 0.371866 1.508354 0.111192 -0.095475 -0.414435 0.788293 -0.544973 1.227973 1.524360 -1.210570 0.228144 0.639693 0.449254 -0.008525 0.755033 0.189943 -1.495302 -0.035998 -0.351891 0.782829 -0.685094 -0.420794 0.197446 0.413493 -2.142549 -0.201887 0.746833 0.035719 0.029348 0.174985 -0.113204 1.474720 0.650390 -0.465946 0.610695 0.772213 0.618515 0.414733 -0.077890 0.275416 0.386265 0.268940 -0.233163 -0.022333 0.195518 -0.351515 -0.160649 0.209545 1.161692 1.200826 -0.177718 -0.545829 0.138290 0.088638 0.196586 -0.108541 0.988075 0.032109 0.497183 0.636765 -1.416375 -0.054706 -2.566183 0.604348 -2.401891 -0.984065 -0.509173 0.421553 0.859969 0.455784 -0.169791 1.895754 -0.483976 0.045006 0.998960 1.476856 -0.608049 -0.027654 -0.666038 -0.795720 0.112642 -0.236296 -0.136897 -0.076969 0.255493 -0.856572 -1.045552 0.413494 -0.022763 -0.740650 -0.609062 -0.257937 0.897415 -1.090890 -0.598369 -1.024640 0.649711 -0.080928 -1.631276 -0.394105 -0.715296 -0.164219 0.250326 -0.718507 -1.133346 0.447722 0.525286 -0.474712 -0.362440 -0.452192 0.968861 0.761361 -0.149359 0.004216 0.327373 0.427307 1.268695 0.578397 -0.567478 -0.144483 0.509714 -0.160541 -0.162993 -0.667677 -0.050809 0.352451 -0.738058 -0.200666 0.495011 -0.617259 -0.323815 0.289448 -1.035387 0.176401 3.804551 -0.577360 0.871959 0.518150 -1.115005 0.879508 0.042938 -0.345417 0.278643 0.949629 1.067048 -1.477950 -0.800451 0.846767 1.579624 0.481029 -0.654532 -0.665678 0.205406 -0.071120 0.004315 0.681658 -0.108570 -0.097357 -0.520269 -0.247550 0.393301 2.106520 -0.347422 -0.423001 0.055636 1.213737 -0.279891 -1.048256 -0.026543 -1.639963 -0.169076 0.424526 -0.042793 0.701345 1.285634 -2.584711 1.022899 -0.223201 -0.312759 0.613201 0.169083 -0.269720 -1.966070 0.078397 0.835527 1.110373 -0.349005 0.596572 -0.279969 -1.246351 0.030979 0.185034 0.651648 -1.179802 1.201422 -0.183664 -0.928920 -0.443594 0.084433 -0.677446 -0.743903 -0.536872 0.545240 0.703081 -1.565991 1.254276 0.167924 -0.136587 0.240894 -0.184929 0.974415 -0.936437 -1.230055 0.671420 -0.210806 -0.367144 0.106038 -0.591029 0.713371 0.122794 -0.017289 -0.872807 -1.250800 0.842839 -0.077770 1.182149 0.736289 0.102716 0.916178 -0.091523 -0.498734 -0.595628 -0.740498 0.317182 0.075626 -0.339541 -1.031970 -0.512668 0.684764 1.381738 0.011621 -0.502560 -0.317928 1.145120 -0.818947 0.173755 0.333577 -0.179942 -0.656217 0.161721 0.563862 -0.609053 -0.265966 -1.243348 0.513345 -0.552883 -0.520940 0.617865 -0.842621 -0.097629 0.617263 -0.576972 -0.377278 0.613735 0.577207 -0.072633 0.093373 1.178493 0.592080 -0.350782 0.174822 -1.092763 0.516485 -1.305683 -0.802506 -0.396673 0.201604 -0.466350 -0.472592 -0.247537 0.753833 0.370552 0.250270 -0.283729 0.055410 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__partition(Node*, Node*, Node**, Node**) = -0.880364 3.123457 2.021459 -3.175867 3.647454 3.815749 0.884886 -1.002041 -2.228384 -3.035573 -1.104374 -3.924806 -4.715473 4.572394 -0.957325 1.385746 7.361368 0.337173 -0.328753 -2.153268 3.978626 -2.255990 6.844750 7.313303 -6.816850 1.217565 4.758865 2.602764 1.551516 3.256103 -0.926157 -5.099552 0.937293 -2.725776 3.112543 -3.489449 -1.186995 -1.374691 1.345203 -10.146479 -1.072974 0.891427 -2.009262 0.034521 0.282138 1.836296 8.178037 3.868875 -3.084426 2.154879 3.919501 1.557122 1.229008 0.149431 0.679629 1.284253 1.974413 1.535510 -0.526986 0.550057 -0.617294 -3.173807 0.573853 5.801930 6.450179 -0.673035 -1.827867 1.836293 0.380174 0.331588 -1.106394 4.261226 1.689387 3.239618 4.171643 -7.464033 -0.432150 -12.316480 0.854983 -12.283201 -5.053226 -4.057005 1.579125 -0.166515 3.037834 -0.255192 8.290149 -0.722169 1.520036 4.303381 7.652368 -4.685741 -0.662574 -3.827218 -2.947699 1.624672 -2.330459 0.663286 0.960359 -1.001010 -4.270143 -5.902004 2.867923 0.531979 -3.815784 -3.091121 -1.330182 4.396741 -4.802839 -3.194228 -6.052618 0.296285 -1.358531 -8.716808 -1.515275 -2.240954 3.495209 1.372536 -1.624718 -6.127397 1.152511 4.040749 -1.628818 -3.531251 -0.218241 5.148881 4.511395 -0.507322 1.089404 1.089595 2.784151 6.551607 5.628964 -1.830817 -1.537062 1.753188 -2.564838 -0.939558 -3.538379 -0.103723 2.963933 -3.913711 -0.472214 3.860054 -2.958691 -1.209217 4.720495 -4.309131 2.163842 18.692624 -1.634899 3.583804 1.988547 -6.149226 3.523566 -0.947079 -2.761155 2.102916 4.421507 5.135331 -9.301368 -3.429347 2.950347 7.327872 2.472635 -5.714540 -2.859421 -0.255857 -0.614602 -1.366145 2.463445 0.263355 -0.068118 -2.563297 -1.029464 3.476795 9.860624 -3.465233 -4.840855 0.676845 3.713652 -1.364058 -6.446941 -0.442253 -5.210766 -0.694989 1.995132 -0.373817 3.336826 5.999676 -12.507844 4.489199 -1.336920 -2.664905 3.651651 1.050187 -1.862701 -6.634392 2.419096 4.925547 4.698059 -0.164003 1.293684 -1.423589 -6.116832 -0.183889 1.215449 2.839279 -4.321714 5.317957 -0.056615 -4.590959 -3.635310 -0.462342 -1.580826 -3.231546 -1.857070 2.611536 0.614243 -10.302579 6.644798 -0.372663 -1.868042 1.610696 -2.409587 4.513403 -5.676538 -6.761037 3.350610 -0.631764 -1.674039 -0.856985 -2.247883 3.694249 1.556336 0.491039 -4.568980 -7.533588 3.628535 -0.485787 4.558245 3.735457 1.912578 6.472429 -1.444403 -3.003013 -4.777044 -2.927348 2.289184 0.578102 -3.027956 -5.501088 -2.709141 3.929165 7.792325 -1.103702 -0.953451 -2.159004 5.057694 -6.752679 -0.900867 2.101782 3.603004 -3.327828 0.996065 2.944863 -3.291148 -2.084239 -4.678596 0.181886 -1.439446 -4.162001 2.467992 -4.836939 -0.062801 4.055576 -2.111221 -1.487342 3.303743 0.973291 0.659956 -0.410045 4.923387 7.203929 -4.504232 0.026556 -5.435099 3.321391 -7.465150 -5.151594 -0.015087 0.056387 -1.086854 -1.526499 0.153239 3.016300 1.143485 -0.694607 -1.250901 -0.796210 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSortRecur(Node*, Node*) = -0.475769 3.043818 1.944699 -2.453882 2.766846 2.667705 0.588962 -0.348124 -1.445641 -3.013154 -0.988719 -3.485067 -4.479852 3.472995 -0.821861 0.185057 5.750796 -0.005440 -0.085544 -1.917639 2.737445 -1.567057 5.415743 5.808155 -5.819589 1.043429 3.881572 2.285245 1.547074 2.428149 -0.140891 -4.328163 0.508065 -1.156387 3.013418 -2.356339 -0.901519 -1.699256 0.047010 -8.213828 -1.066071 1.228926 -1.563301 0.136623 0.473583 2.054693 7.002335 3.064261 -2.740831 1.440435 3.310196 1.453293 1.085435 -0.025422 0.181777 0.013078 1.656370 0.809234 -0.526957 0.633877 -0.257851 -2.972802 0.065923 4.830545 5.253542 -0.546768 -1.424606 1.121027 0.334446 0.422636 -1.167672 3.533199 1.893630 3.094380 3.539955 -5.077867 -0.338473 -9.759716 0.921618 -10.636694 -4.219276 -3.702799 1.869124 0.399242 1.687900 -0.524566 6.712730 -0.152499 1.593843 3.795682 6.367729 -3.106026 -0.511778 -3.238971 -2.404522 1.775608 -1.977282 0.789429 0.585412 -0.444543 -3.396164 -4.293616 1.949998 -0.076919 -3.168380 -1.864411 -1.280916 3.323594 -4.058622 -1.677017 -5.198453 0.016987 -0.316248 -7.187577 -1.442911 -1.548047 2.795818 1.169249 -0.998064 -4.067578 0.700616 2.842710 -1.270044 -2.134404 -1.297358 4.288264 3.546967 -0.464487 1.013273 1.266092 2.653347 4.517568 4.321359 -1.271814 -1.494310 1.373271 -1.963425 -1.017894 -2.721931 0.211933 2.825442 -2.825166 -0.167290 2.722307 -2.304078 -1.620813 2.601528 -4.036468 1.969931 14.508577 -1.260384 2.729230 1.399522 -4.757817 2.665559 -0.678810 -2.611001 1.613053 3.508680 4.469149 -6.376830 -2.565091 2.326685 5.949743 1.813492 -4.245949 -1.566181 0.179502 -0.674666 -1.509270 2.270326 0.236116 -0.103464 -1.860114 -0.849341 3.164824 7.214265 -2.294458 -4.192762 0.253867 3.335362 -0.595863 -4.377857 0.070273 -3.310471 -0.556202 1.754545 -0.241969 2.751664 4.738370 -10.350782 3.570852 -0.233957 -1.855029 2.639156 0.489396 -1.399732 -5.457609 2.465126 4.203579 3.516872 -0.049399 0.770124 -1.483635 -4.894675 -0.161174 1.160491 2.409097 -3.513810 4.270934 -0.209559 -3.352231 -3.229717 -1.047869 -1.321495 -1.938714 -1.908134 1.945098 0.592287 -8.491856 5.602423 -0.670114 -1.623329 0.441698 -2.383110 3.280787 -4.825280 -5.386078 2.187206 -0.973977 -2.359565 -0.940193 -2.045261 2.727345 1.099340 0.482056 -3.613289 -5.742790 3.335126 -0.391727 3.469836 3.100774 1.819381 5.500735 -0.612821 -2.345278 -3.569022 -2.400548 2.434513 0.245921 -2.441851 -3.566437 -2.224107 2.689215 6.490234 -1.420294 -0.751755 -1.668469 3.768753 -5.004609 -1.396285 1.462090 2.301845 -2.378719 1.343194 2.166505 -2.499464 -1.727260 -4.361009 0.076642 -1.001804 -3.554108 1.752842 -4.190863 -0.288629 3.787574 -1.939026 -1.621886 2.756534 0.476916 0.223170 -0.391100 3.856480 5.963317 -3.921239 0.626462 -4.585351 2.795456 -6.158214 -4.227861 -0.065720 -0.384237 -0.243663 -1.345814 -0.251139 2.002057 0.970128 -0.743519 -1.341526 -0.111285 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -0.032672 0.653343 0.449569 -0.366068 0.476578 0.247414 0.081057 -0.018186 -0.123039 -0.672759 -0.135736 -0.520146 -0.859310 0.518426 -0.252534 -0.208869 0.882284 -0.059433 0.083164 -0.483739 0.354522 -0.214962 0.972003 0.916116 -1.103664 0.145892 0.794141 0.428676 0.468749 0.289866 0.051337 -0.682271 0.212504 -0.014679 0.467880 -0.325375 -0.005859 -0.496958 -0.269142 -1.227260 -0.179286 -0.128048 -0.464823 0.074861 0.025790 0.756370 1.233784 0.527451 -0.550898 0.239641 0.706476 0.381461 -0.003721 0.039461 -0.138208 -0.333455 0.302025 0.007981 -0.129464 0.087030 0.061985 -0.755160 -0.141571 0.845133 0.896797 -0.086400 -0.059385 0.224648 -0.060888 0.107390 -0.176942 0.467374 0.506513 0.639176 0.629985 -0.753849 -0.141628 -1.717140 -0.078514 -2.257558 -0.658402 -0.780247 0.420408 -0.171027 0.082150 0.153919 0.990564 0.305957 0.404775 0.735054 1.102287 -0.459081 -0.147694 -0.481833 -0.363066 0.443282 -0.440338 0.344819 -0.015817 0.033013 -0.519251 -0.649463 0.291100 -0.115146 -0.489116 -0.294751 -0.253328 0.443849 -0.931817 -0.001276 -0.937524 -0.207257 0.125871 -1.224432 -0.197026 -0.147319 1.142982 0.162955 0.047028 -0.432743 -0.021758 0.513684 -0.134656 -0.217020 -0.305223 0.589440 0.573900 0.026135 0.226703 0.189279 0.540238 0.671967 0.815745 -0.145811 -0.384566 0.104409 -0.359021 -0.219240 -0.428495 0.116701 0.646379 -0.429998 0.342741 0.443252 -0.355622 -0.637558 0.477594 -0.778355 0.491184 1.962343 -0.090688 0.383303 0.172129 -0.793634 -0.021576 -0.328074 -0.495652 0.313397 0.540412 0.680680 -0.567992 -0.395547 0.306005 0.867529 0.281624 -0.758566 -0.098030 0.030186 -0.143511 -0.326236 0.262111 0.114915 -0.122123 -0.260751 -0.155909 0.668201 0.953652 -0.246136 -0.613065 0.023016 0.483505 0.005274 -0.482383 0.061528 -0.016072 0.030824 0.463885 -0.015611 0.406225 0.771011 -1.938996 0.496523 0.088421 -0.150024 0.095674 0.130986 -0.254345 -0.749400 0.634126 0.783280 0.451795 0.099510 0.201473 -0.198777 -0.739011 -0.060939 0.229660 0.419633 -0.474611 0.537831 0.179739 -0.578155 -0.725730 -0.231598 -0.038138 0.004396 -0.262409 0.272130 -0.086360 -1.923914 0.999855 -0.365931 -0.371500 -0.139329 -0.527304 0.601174 -0.919972 -0.881732 0.261779 -0.319282 -0.616311 -0.294124 -0.261080 0.408086 0.039207 0.228362 -0.487618 -0.812798 0.534005 -0.062686 0.327008 0.475853 0.469815 1.176029 -0.511313 -0.304340 -0.667679 -0.209996 0.642942 -0.162059 -0.446851 -0.029763 -0.289036 0.355583 1.160520 -0.376474 -0.132043 0.016083 0.512740 -0.906022 -0.476594 0.249135 0.846862 -0.336262 0.538307 0.331310 -0.461851 -0.371866 -0.718562 -0.101545 -0.020638 -0.736299 0.222262 -0.708053 -0.000199 0.763789 -0.143421 -0.396995 0.565526 -0.129435 0.118656 -0.127726 0.526157 1.503575 -0.862001 0.169292 -0.765985 0.430917 -1.107477 -0.908731 0.129845 -0.143392 0.215845 -0.136695 -0.292777 0.295284 0.101766 -0.160225 -0.241360 0.108168 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 0.214215 0.212480 1.208589 -0.610103 0.240946 -0.756608 0.128021 1.315989 -0.776241 -1.374291 -0.070608 -0.922013 -1.540502 0.747630 -0.322453 -1.386907 1.422132 0.559608 0.146084 -0.903892 -0.261907 -0.348969 1.007137 1.435555 -1.551756 0.253971 -0.139133 1.104373 0.759710 0.658429 0.879544 -1.040323 -0.148181 1.396390 1.269357 -0.634369 -0.012210 -0.330996 -1.963247 -2.288314 -0.152970 1.389246 0.089276 0.202426 0.769031 2.070685 1.280644 0.613123 -0.793056 0.709934 0.879608 0.375591 0.424877 -0.107426 -0.344766 -1.104459 0.391684 -0.568701 -0.751315 0.779944 0.161666 -1.810498 -0.406640 0.909809 1.265884 -0.279846 -0.147680 -1.054661 0.310485 0.537055 0.371789 0.396323 1.094794 0.270843 0.990511 0.785014 -0.253972 -1.844284 0.609647 -4.177406 -1.074872 -1.134698 2.907548 1.028488 -1.387095 -0.974721 1.232116 0.256669 0.662727 1.417836 1.082368 0.606690 -0.453667 -0.788632 -0.464806 1.287154 -0.606625 -0.102489 0.237297 0.876872 -0.657185 0.239881 0.106347 -0.930803 -0.596468 0.981443 -0.493995 0.915327 -1.729634 0.923091 -1.621889 0.621487 1.559908 -1.302049 -0.244719 -0.274744 0.779803 0.590926 -0.094249 1.437540 0.027959 -0.405509 -0.434115 1.357458 -2.463238 1.441405 -0.166839 -0.176985 0.311103 0.867734 0.423877 -0.711336 0.464599 -0.408614 -0.495712 0.881453 -0.324772 -0.347804 -0.860723 0.106510 1.363410 -0.283092 0.440038 -0.952165 -0.656469 -1.410138 -1.601078 -0.651848 0.712016 1.550934 0.028392 0.617860 0.242532 -0.207191 0.592565 0.488042 -0.179724 0.571581 0.971731 0.457715 0.820280 -0.342829 -0.146860 1.192376 0.451794 -0.534544 0.599855 0.253035 -0.200135 -0.241908 0.869124 0.137604 -0.050054 -0.218990 -0.121570 0.457233 0.479440 0.673669 -1.553284 -0.803592 0.977738 0.176816 0.300465 0.716643 1.118499 0.071526 0.391282 -0.012699 0.643861 0.974756 -3.108835 1.022798 0.843393 0.460551 0.113890 -0.389368 -0.096578 -1.880088 0.429700 0.515666 1.355277 0.480519 -0.509305 0.172922 -0.946825 -0.070808 0.359269 0.700583 -0.578178 0.695984 -0.141110 0.021906 -0.579886 -1.650491 -0.313858 0.951199 -0.957969 0.227405 0.452979 -2.512223 0.767312 -0.875577 -0.673861 -0.974446 -0.335392 0.031128 -1.311728 -0.883323 -0.459003 -0.479299 -2.694611 -1.321712 -0.696599 0.416837 -0.521590 0.063521 -0.166539 -0.799363 1.749656 -0.459362 0.579268 0.720688 -0.197452 1.851443 1.579799 -0.319076 -0.069187 -0.502757 1.400097 -1.186907 0.064519 1.428020 -0.500725 -0.235127 1.492006 -0.440053 -0.131546 -0.141608 1.214623 -0.028816 -1.392736 0.366231 -0.822371 0.857860 2.034446 0.639818 -1.334811 -0.345937 -1.674457 -0.191262 0.629415 -0.332845 0.667084 -1.140723 0.114257 0.738446 -0.009102 -1.141030 0.608843 -0.342896 -0.819350 -0.236280 1.501248 2.045689 -1.064755 1.665853 -0.966070 0.836920 -1.187379 -0.393961 -0.867695 -0.512369 0.360605 0.346440 -0.648771 0.067254 0.478027 -0.519539 -1.033679 1.131841 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__maxSubArraySum(int*, int) = -1.138067 -0.937537 0.580029 -2.265360 1.579562 0.983270 0.807175 -0.502034 -3.203287 -2.362510 0.982585 -4.524240 -3.351946 3.830845 -1.126154 1.212828 5.178927 0.594822 -1.055132 -2.010218 2.600339 -1.642562 5.031521 5.762129 -4.395994 0.193100 0.701007 2.322967 2.059230 0.649693 1.251744 -2.576332 0.811853 -1.925481 1.870343 -2.051801 -0.591305 0.720425 0.858243 -6.792586 -0.556578 2.451427 0.517304 0.297095 0.527744 3.944157 3.777583 3.075772 -1.718443 3.037300 3.103840 -0.730661 1.874101 -0.030934 0.232466 -0.912831 1.064141 1.015531 -1.203094 0.481625 -0.675451 -2.902562 0.202823 3.840656 5.146266 -0.784435 -1.657768 0.518310 1.211286 1.174115 1.258541 2.885705 1.413443 0.859005 3.517866 -3.435848 -0.254998 -8.270294 1.001490 -10.473280 -3.001834 -0.981802 4.623494 0.600438 0.509904 -1.266749 5.726434 -0.197577 -0.989771 4.177596 4.792980 -2.113735 -1.260214 -1.890093 -1.876208 1.446768 -2.221846 0.583702 2.520749 1.611114 -3.231420 -1.964700 0.932438 -0.386290 -2.346105 -1.116735 -0.923563 3.146763 -3.966735 -1.344669 -3.424864 1.603277 1.087264 -6.173301 -0.925694 -2.124904 1.330978 1.412481 -2.232296 -1.318590 1.170976 0.422820 -1.197851 -0.436254 -2.050210 3.869068 1.945922 0.850431 0.245968 2.313950 1.507831 3.574270 2.148217 -2.095211 -0.588163 1.689220 -1.532329 1.145756 -2.603533 -1.040036 3.860262 -2.950316 0.180495 0.235973 -2.276206 -1.741911 1.827108 -1.014646 0.475690 10.975850 -0.496334 3.766672 2.831091 -2.803892 2.730533 -0.440037 0.385271 1.984885 3.034880 2.055858 -4.087480 -2.717597 2.636231 5.480959 1.988587 -4.579456 -0.974490 1.256608 0.784315 -0.860459 2.021656 0.821080 0.224359 -1.692739 -0.288443 2.241270 6.091996 -1.958720 -2.317327 -0.192871 2.718367 -0.457856 -4.234322 0.115768 -2.459801 -0.190153 0.864715 0.915376 2.040191 4.405336 -8.357347 3.618347 0.149871 0.303626 2.950065 0.780660 -2.505755 -6.709543 0.012890 1.768289 3.579587 0.630160 -0.477470 0.716939 -4.531506 0.219601 0.961629 1.318199 -2.551549 3.745281 -0.795683 -1.091970 -1.907510 -1.002009 -1.360224 -0.741250 -1.456828 2.683690 1.035316 -6.180316 3.194653 -0.571161 -2.274314 -0.616058 -0.778892 2.603378 -4.041790 -3.936540 1.479240 -1.879124 -4.120169 -2.858999 -1.424283 1.365424 0.658610 -0.192115 -2.646189 -4.618231 4.605512 -2.079606 4.077212 2.378543 -0.819728 4.311159 1.123039 -2.121541 -2.610918 -1.607056 1.090955 -1.087935 -1.958425 -1.727458 -0.977231 2.337116 4.147697 -0.403310 -1.113397 -0.648399 4.062904 -3.287224 -1.999921 1.524498 1.080984 -1.352196 3.163925 2.179517 -3.815802 0.409168 -3.917750 -0.940948 -1.266387 -2.116060 2.805057 -2.276779 0.884048 0.917840 -0.594978 -0.607437 1.980719 1.083759 -0.656659 0.095566 5.339913 5.602322 -2.594013 0.627401 -4.903973 2.991237 -4.703055 -3.512924 -0.193711 0.851699 -1.628792 -0.516837 0.477948 2.405651 2.337176 -2.790773 -2.852465 1.930842 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = -0.000507 0.244015 0.394538 -0.048374 0.500869 0.055881 0.296881 0.323736 -0.506390 -0.569384 -0.024982 -0.874043 -0.920420 0.735329 0.037368 0.122057 1.048045 0.273659 0.013087 -0.205001 0.047539 -0.556537 0.919513 0.954313 -0.633947 0.320602 -0.076631 0.162083 -0.229327 0.718924 -0.236511 -0.847094 0.360141 -0.078386 0.337191 -0.303384 -0.286640 -0.171314 -0.249535 -1.386968 -0.083975 0.814492 0.128868 -0.067873 0.147157 0.718551 1.082783 0.460079 -0.052945 0.630589 0.080427 -0.400470 0.473645 0.138217 0.405561 0.027715 0.328714 -0.138999 -0.744687 0.286730 -0.226217 -1.074660 -0.335188 0.454234 0.731900 -0.177734 -0.320364 -0.117495 -0.254766 0.155855 0.069584 0.410040 0.601584 0.095646 0.575531 -0.036627 -0.062839 -0.727168 -0.132430 -2.075512 -0.854001 -0.428918 1.120632 0.450809 0.120939 -0.488717 0.971462 -0.148906 0.126914 0.228867 1.123300 -0.619369 -0.380248 -0.260384 0.064040 0.221918 -0.359024 -0.144619 0.542875 -0.266176 -0.719064 -0.295718 0.681559 -0.129171 -0.356567 0.109784 -0.158504 0.685992 -0.983764 -0.286633 -1.120594 -0.158923 0.246973 -0.957149 0.215405 0.356069 0.030437 0.702451 -0.460484 -0.275330 0.467565 0.091776 -0.269114 -0.197034 -0.615917 1.003197 -0.021186 0.084273 0.425915 0.491729 0.374890 0.578433 0.771165 -0.163726 -0.030678 0.254329 -0.210902 0.213210 -0.098054 -0.364378 0.072439 -0.602686 0.013138 -0.077519 -0.539421 -0.001677 -0.488786 -0.020061 0.163055 0.983936 -0.256859 0.595520 0.157818 -0.673318 0.783207 -0.235165 -0.262302 0.003624 0.694782 0.528329 -0.298700 -0.370208 0.445299 0.987942 0.423766 -0.780890 0.030649 -0.054457 0.286374 -0.106131 0.540571 0.247454 0.539667 -0.489047 -0.043009 0.195227 1.359066 -0.517124 -0.929299 0.105730 -0.137063 0.297040 -0.786160 0.036745 -0.111742 -0.127345 -0.147347 -0.054255 0.126380 0.795587 -1.347353 0.832143 -0.329830 -0.455154 0.853619 0.001851 -0.278649 -1.009543 -0.103307 0.557813 0.915315 0.478943 -0.192119 -0.199650 -0.722491 -0.102339 0.013751 0.305548 -0.341868 0.686249 -0.279070 -0.519757 -0.345420 -0.783776 0.027316 -0.187185 -0.366295 0.332924 0.753164 -1.426748 0.687572 0.056498 -0.434147 -0.104355 0.213042 0.252928 -0.572026 -0.908714 0.122411 -0.610561 -1.122294 -0.375379 -0.374963 0.047384 0.068415 -0.436140 -0.091480 -0.708836 1.099018 0.011035 0.749061 0.499822 0.016877 1.034716 1.083412 -0.783388 -0.017272 -0.387041 0.307009 -0.884196 -0.068521 0.001891 -0.448997 0.442342 0.906277 0.196915 0.001960 -0.560154 0.712437 -0.595031 -0.342410 0.725673 -0.085827 0.025434 0.614600 0.776458 -0.543913 -0.173599 -0.673352 -0.233241 -0.232564 -0.343540 0.152486 -0.735155 -0.124528 0.400463 -0.299403 -0.423906 0.189961 -0.130259 -0.313323 -0.332815 0.962164 0.976089 -0.871502 0.591929 -0.583751 0.507636 -0.799726 -0.464603 -0.065703 0.424254 -0.402436 -0.164802 0.299368 0.051917 0.140280 -0.713355 -0.565082 0.103147 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -0.640476 0.397050 1.563674 -2.434701 2.577184 1.950271 0.826479 -0.485132 -2.104511 -2.121583 0.204689 -3.115585 -3.712606 2.660048 -1.362296 0.401684 3.074415 -0.687856 -0.561867 -1.733487 2.144955 -0.569662 4.284309 3.566335 -4.408147 0.512841 0.144161 2.591598 1.011362 2.544771 1.166557 -2.638810 -0.153900 0.236687 2.481990 -0.833069 -0.689789 -0.129473 -0.824928 -5.232221 -1.018087 3.388533 -0.406341 0.845670 1.156767 2.294300 3.673251 2.411310 -1.319213 2.176976 2.454155 0.352370 2.116328 0.049549 0.241498 -0.963572 1.882424 -1.004687 -0.945593 0.279904 -1.053534 -2.190438 0.327711 3.339804 4.123788 -0.935563 -1.345025 -0.048614 0.079915 1.216802 0.561354 3.244872 0.540790 1.328322 3.229493 -1.189657 0.497175 -4.408104 1.532826 -6.130938 -2.897123 -1.883975 2.807765 3.046224 0.741991 -1.658170 5.581127 -0.028360 -0.608812 3.137607 3.409881 -1.109703 -0.025318 -1.967248 -1.895279 0.254833 -1.409683 -0.187452 0.073897 1.941392 -2.462417 -0.712245 0.086315 -0.858422 -1.911187 -0.239238 -1.865105 2.668988 -3.593978 -0.563137 -2.904582 2.236051 0.501279 -5.166316 -1.955373 -1.669868 0.514129 0.270125 -0.334835 -0.184481 1.272009 1.044794 -1.084899 0.080494 -2.904771 3.464739 2.402871 -0.098980 0.217655 2.229411 0.494280 2.099765 1.962014 -0.646838 -1.556325 1.456955 -0.194858 0.724545 -0.904506 0.907008 1.593921 -1.999873 -0.433319 0.503373 -0.811682 -1.205432 -2.137203 -2.030425 0.877834 9.165824 -1.283025 2.749358 1.506214 -2.415547 2.044041 0.488583 0.001544 1.759116 2.047962 1.812068 -2.955123 -2.124745 2.617156 3.976547 0.917759 -2.886915 0.662307 1.299612 0.168741 -1.121849 1.783372 0.687439 0.003683 -1.306326 -0.283050 0.465707 5.001753 -0.925634 -3.120027 0.724578 2.094107 -0.744076 -1.430454 0.004710 -0.992203 -0.979735 1.326120 0.245910 1.454372 3.259016 -6.043887 2.816891 0.839551 -0.395454 2.891532 -0.800843 -0.614769 -3.930998 -0.396010 1.554037 2.348880 -0.197906 -0.890436 -0.497830 -3.574960 1.273186 0.665139 1.388023 -2.346141 3.317276 -0.760878 -1.499857 -1.826227 -2.376802 -1.350003 0.416649 -2.338785 1.319605 0.420200 -4.992081 2.677298 -0.466361 -1.513975 -0.189613 -0.168850 2.383800 -2.098461 -3.104608 1.204178 -1.658138 -4.013302 -2.290064 -1.282868 0.916979 0.911496 0.188646 -3.175420 -3.254977 3.557601 -1.392233 3.069348 2.039826 0.320629 3.547569 1.718553 -2.220104 -1.651290 -2.642783 2.110153 -0.106781 -1.183729 -0.605606 -1.208407 1.480603 3.159785 -0.396111 -0.456332 -1.344338 3.732789 -1.817023 -1.376340 1.239658 -0.868307 -1.310113 2.342659 1.866994 -1.330735 -0.564851 -3.522589 0.087791 -1.568432 -1.411719 2.290272 -2.052020 0.246241 1.234739 -0.429746 -1.742312 1.173961 0.639737 -0.854636 -0.650282 4.834454 3.493043 -1.911054 1.328956 -3.156563 2.498489 -3.298719 -1.729616 -0.912018 -0.661733 0.125407 -0.168173 -0.431901 2.114175 2.247468 -1.910185 -1.487267 0.732114 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::SuffixTrieNode() = -0.370219 -0.134002 0.400368 -0.992853 0.628090 0.626654 0.307599 -0.250968 -1.275012 -0.633647 0.106487 -1.566565 -0.937023 1.420479 -0.380683 0.555092 1.969886 0.452329 -0.494040 -0.453722 0.862870 -0.590333 1.718403 2.092164 -1.399858 0.208937 0.000120 0.820904 0.296218 0.953302 0.061727 -1.078307 0.096409 -0.507754 0.690552 -0.987251 -0.349041 0.436827 0.278561 -2.683901 -0.064110 1.194420 0.572845 -0.072599 0.288070 0.624340 1.483777 1.037644 -0.260283 0.804910 0.786369 0.090786 0.769831 0.039237 0.472072 0.299410 0.724025 -0.145594 -0.430953 0.145197 -0.325043 -0.786351 0.226270 1.403182 1.694158 -0.074159 -0.604656 -0.098604 0.347374 0.312814 0.369752 0.982046 0.035264 0.355274 0.786227 -1.135098 0.436759 -2.179162 0.575915 -2.770724 -1.097566 -0.367506 1.341233 1.058245 0.434132 -0.585891 2.103082 -0.513034 -0.181315 1.100055 1.658876 -0.898993 -0.343625 -0.683666 -0.796406 0.349658 -0.547274 -0.193381 0.387643 0.514107 -1.156825 -0.718256 0.519542 0.088563 -0.845855 -0.018938 -0.184551 1.170547 -1.429587 -0.724981 -1.015695 0.739324 0.074400 -2.045576 -0.246122 -0.965656 -0.208766 0.356542 -0.911562 -0.907703 0.580808 0.363232 -0.513873 -0.182905 -1.368941 1.439927 0.487825 -0.055660 -0.010295 0.521144 0.324056 1.259746 0.476476 -0.841191 -0.007195 0.697910 -0.504423 0.164013 -0.871006 -0.417218 0.644240 -1.158133 -0.411950 0.239497 -0.863169 -0.086475 -0.095840 -0.270168 0.215988 4.178113 -0.433027 1.316917 0.869586 -1.193160 1.279382 0.119999 -0.012661 0.481001 1.044577 0.809165 -1.790974 -1.046189 0.839737 1.968708 0.788950 -1.007957 -0.298981 0.167787 0.038229 0.032729 0.816414 0.049400 -0.027811 -0.820713 -0.260887 0.414449 2.543445 -0.434874 -0.648573 0.044565 0.635389 -0.413116 -1.337373 -0.027103 -1.151644 -0.062346 -0.028652 0.049082 0.818640 1.600388 -2.632323 1.533932 -0.275526 -0.288825 1.355892 -0.106714 -0.651951 -2.071595 -0.256541 0.753450 1.597118 -0.143135 -0.152128 0.141201 -1.613741 -0.027570 0.174985 0.583018 -1.099043 1.358773 -0.077164 -0.820442 -0.525469 -0.414959 -0.478575 -0.584645 -0.697797 0.847380 0.530627 -1.655710 1.261221 0.148699 -0.477448 0.164305 -0.049230 0.608226 -1.294492 -1.369635 0.548102 -0.257813 -0.990192 -0.615039 -0.574678 0.748989 0.145998 -0.225056 -1.090599 -1.516963 1.393687 -0.556741 1.506666 0.869861 -0.248713 1.023971 1.048823 -0.617820 -0.666271 -0.739292 0.018710 -0.331752 -0.496227 -0.554037 -0.626074 0.954681 1.536297 0.053933 -0.413359 -0.262040 1.667209 -0.604363 -0.402894 0.578890 -0.564983 -0.607408 0.561283 0.868753 -1.233955 -0.091322 -1.323303 -0.119878 -0.448668 -0.599398 1.056528 -0.795608 0.269969 0.364487 -0.353659 -0.408774 0.605764 0.480030 -0.369863 0.228828 2.048840 0.881343 -0.359891 0.501033 -1.469634 0.886423 -1.593041 -0.813248 -0.368154 0.363601 -0.825174 -0.168471 0.145781 0.982662 0.697254 -0.432152 -0.610314 0.334648 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -0.305981 0.849702 1.216838 -1.784945 1.985197 1.359859 0.607579 -0.206534 -1.339812 -2.054558 -0.117543 -2.494142 -2.910511 1.940163 -0.955376 0.103253 2.708012 -0.369850 -0.075236 -1.175449 1.442571 -0.702012 3.292747 2.991898 -3.399330 0.512566 0.380196 1.821514 0.534554 2.075955 0.935327 -2.532158 0.054595 0.170368 2.066484 -0.833586 -0.664457 -0.306229 -0.728104 -4.266238 -0.777459 2.455037 -0.335576 0.659588 0.876674 1.329148 3.413171 1.734625 -1.195700 1.538031 1.737732 0.488859 1.610080 0.127970 0.205859 -0.697718 1.119033 -0.960043 -0.734002 0.436177 -0.902579 -1.883271 0.180760 2.595380 3.108673 -0.552314 -0.977882 -0.138379 -0.109276 0.806165 0.213170 2.511014 0.673794 1.219864 2.353445 -1.300327 0.326909 -3.937276 1.003467 -5.200455 -2.362357 -1.776306 1.994513 2.519556 0.655983 -1.258953 4.098077 -0.037984 0.097528 2.322354 2.954038 -0.906558 -0.053517 -1.589462 -1.401386 0.338938 -0.968091 -0.067619 -0.076604 1.150089 -1.902923 -0.836760 0.391641 -0.664494 -1.461282 -0.375504 -1.252869 2.060496 -2.830287 -0.490623 -2.566948 1.260466 0.301886 -4.039155 -1.113863 -1.104451 0.315426 0.464891 -0.417951 -0.550267 0.946750 0.911661 -0.811898 -0.066339 -2.362104 2.806786 1.746999 -0.032778 0.251076 1.617818 0.566532 1.757900 1.718940 -0.381860 -1.003872 0.955312 -0.225939 0.202284 -0.817056 0.541004 1.291041 -1.571591 -0.586075 0.585546 -0.818489 -0.971939 -1.442390 -1.911139 0.868381 7.347257 -1.104518 2.043244 1.153377 -2.112472 1.719621 0.393459 -0.264075 1.158530 1.790327 1.846105 -2.475064 -1.574510 1.818623 3.080573 0.725113 -2.097070 0.161891 0.816280 0.069589 -0.749222 1.310697 0.355347 0.019641 -1.135852 -0.157638 0.687698 3.864063 -0.678220 -2.351512 0.385403 1.714833 -0.396555 -1.385752 0.033655 -1.177735 -0.588502 0.924016 0.069921 1.017287 2.527245 -4.931394 2.192060 0.495290 -0.311281 2.087840 -0.451230 -0.446966 -3.495448 0.097858 1.561897 1.759887 -0.120095 -0.308596 -0.600889 -2.690210 0.754259 0.524277 1.319636 -1.936933 2.517604 -0.653983 -1.414293 -1.580569 -1.751747 -1.056030 0.000358 -1.786596 1.022140 0.870512 -3.863616 2.271963 -0.300643 -1.193955 -0.065539 -0.398795 1.892914 -1.876881 -2.549396 0.863545 -1.485745 -3.022888 -1.416368 -1.044486 0.724746 0.585705 -0.170203 -2.260159 -2.509711 2.655497 -0.843952 2.273391 1.764985 0.566768 2.950537 1.453717 -1.760281 -1.300738 -2.033676 1.579800 -0.259497 -0.949252 -0.886200 -1.104625 1.119448 3.009759 -0.326843 -0.377319 -0.920203 2.711059 -1.641090 -1.004396 1.130968 -0.738758 -0.982956 1.561328 1.466820 -1.068936 -0.651877 -2.704505 0.310885 -0.898921 -1.287855 1.515131 -1.973772 -0.011595 1.241788 -0.605770 -1.457591 1.022428 0.415013 -0.446036 -0.458985 3.351744 2.559805 -1.542602 0.997968 -2.355102 1.704425 -2.918212 -1.542866 -0.723211 -0.276012 0.142734 -0.254849 -0.285538 1.440924 1.511330 -1.123434 -1.062255 0.503699 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = -0.273868 1.062068 1.936267 -1.670307 1.917972 0.300800 0.760778 1.000218 -1.383148 -3.609333 -0.072431 -3.706942 -4.822049 2.422655 -1.251193 -1.053894 3.621981 -0.173526 0.362006 -1.784511 1.058082 -1.159557 4.078784 3.986280 -4.635016 0.363695 0.014423 2.410485 1.052271 1.941776 2.125175 -3.698244 0.242003 1.515035 3.476587 -0.749651 -0.311593 -0.631313 -2.510278 -5.613297 -1.171611 4.097619 0.092430 0.833802 1.366099 3.355403 4.457210 2.318502 -1.961550 1.832848 2.352088 0.312927 2.140640 0.111755 -0.515087 -2.486238 0.542056 -1.773879 -1.751541 1.179182 -0.784688 -3.762865 -0.435983 3.298214 4.364162 -0.837406 -0.875288 -0.773134 -0.164110 1.315732 0.324205 2.845678 2.527418 1.522066 3.487441 -0.092253 -0.425077 -5.526397 1.196287 -8.973680 -3.211578 -2.964947 4.283350 3.731987 -0.555379 -2.848163 4.987232 0.796919 0.622398 3.594099 4.227095 -0.504218 -0.642201 -2.652027 -1.382592 1.415604 -1.953104 0.230481 0.381470 1.686495 -2.531131 -0.747529 0.185324 -1.547730 -1.763903 0.072868 -1.841110 2.600175 -3.810147 0.381930 -4.394139 1.014154 1.889160 -5.181798 -0.295973 -0.893544 0.089522 1.338169 -0.270116 1.010016 0.860530 0.271513 -1.046000 0.842635 -5.149706 4.374152 1.525823 -0.112972 0.732118 2.818292 1.097312 0.940362 1.891308 -0.520577 -1.699217 1.440772 -0.765973 0.103115 -1.602744 0.504169 3.540917 -1.650429 -0.830561 -0.569156 -1.267997 -2.157535 -2.987760 -2.781311 1.697164 7.069987 -0.915401 2.208646 1.175360 -2.250235 3.026466 0.518580 -0.422818 1.348541 2.669033 2.281482 -1.417282 -1.910804 1.947649 3.936616 0.946342 -2.274888 0.758740 1.263904 0.512540 -1.690096 1.923643 1.062637 -0.044222 -1.272707 -0.029045 1.387355 3.829531 -0.453262 -2.641059 -0.137902 2.883800 0.421275 -1.339952 0.568386 -0.260067 -0.772508 0.884202 0.497051 1.286140 3.316266 -6.645538 2.832766 1.473784 0.456227 1.927793 -1.168013 -0.732176 -5.561590 1.020246 2.196059 2.240699 0.718930 -0.356641 -0.751305 -3.422323 0.860951 0.605674 2.084461 -2.048866 2.940521 -1.605263 -1.080117 -2.546976 -3.337457 -1.732778 0.533136 -2.482639 1.182248 2.602382 -5.020423 3.092677 -1.299691 -1.924633 -1.354657 -0.731942 1.906035 -3.211375 -3.322257 0.294154 -2.754649 -5.690409 -2.807920 -1.464371 0.516963 -0.267858 -0.901915 -1.974614 -3.275406 4.530173 -1.040906 2.625085 2.141348 0.706505 4.412384 3.842346 -2.427998 -1.152432 -2.717599 2.503451 -1.528710 -1.121115 0.507659 -1.120208 0.915624 4.255498 -0.894437 -0.439425 -0.902384 3.245836 -1.700524 -2.604741 1.621829 -1.655670 -0.025672 3.164072 1.964468 -2.135579 -1.025347 -4.380507 0.486130 -0.462355 -1.996003 1.402313 -3.304030 -0.171688 1.961861 -0.755496 -2.309805 1.359962 0.325902 -1.376891 -1.012664 4.748027 3.978275 -2.634051 2.297680 -3.489177 2.295333 -4.032886 -2.143072 -1.148808 -0.421961 0.642440 0.005316 -0.205770 1.002012 1.873781 -1.846543 -2.471300 1.323395 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/trie-suffixes.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/trie-suffixes.cpp__main = -1.839313 1.909522 7.425202 -4.311973 8.313495 0.682624 2.716912 3.236894 -4.104875 -7.026060 -1.652479 -4.331804 -14.546397 7.402542 -2.684141 1.046693 7.243359 -1.711581 0.376093 -7.167075 7.744338 -9.282887 11.247826 5.845853 -15.260740 1.135796 3.165399 10.292441 4.781550 9.180497 1.989652 -3.939582 -1.603150 0.841101 12.572390 -3.915614 1.047028 -0.836832 -7.613628 -16.882632 -4.990870 11.305536 -1.712187 3.148793 3.652817 15.878159 9.032017 8.039383 -7.569536 7.311435 7.663561 -3.559693 7.127505 0.151030 -3.493423 -2.029406 5.594533 -0.065808 -6.257080 3.441321 -1.433972 -14.550191 3.757108 8.706366 14.042687 -7.510195 -2.391576 4.200446 -0.700509 3.775179 0.331533 9.213946 3.266349 1.342775 13.880290 -4.595036 -1.866850 -15.272193 3.461161 -26.567440 -10.393362 -11.382333 8.322861 5.136787 0.949409 -5.467704 18.903803 2.372300 -0.074274 9.962146 9.425112 -4.218180 -0.539756 -11.922444 -3.184723 1.808404 -7.361960 -5.411259 5.984177 4.101544 -6.717261 -3.431962 1.917010 -3.072007 -6.226587 -1.885759 -10.686541 10.132364 -11.896561 -4.732064 -15.839487 2.861197 0.583875 -15.042405 2.707269 -1.285964 4.575262 2.289038 6.434727 2.149235 2.843201 6.363570 -2.454546 -0.665253 -9.808506 14.799934 6.255749 -3.991090 4.283035 8.590410 -0.028544 1.378018 13.340347 -0.235890 -11.657664 8.575806 -5.282154 0.933416 -4.245426 3.129267 10.714741 -6.878906 -3.730070 -1.358282 -1.287723 -2.918516 -3.237661 -8.549175 6.182995 18.249473 -1.863457 3.768518 -1.002641 -6.771052 11.852084 2.831114 -1.947534 7.139179 7.733647 4.265926 -9.378992 -5.920890 5.547337 10.244836 2.058978 -9.932747 -2.312630 0.299060 2.396644 -3.368987 4.253278 6.908502 -0.745447 -2.477120 -0.251624 -4.028899 14.666598 -5.428962 -9.909557 3.556361 5.329114 -6.550120 -11.776050 -0.219518 -1.872455 -8.116656 -0.761274 0.161709 2.868015 9.516131 -18.303137 8.284401 0.789941 -3.155997 7.495735 -7.939598 2.199954 -19.727458 0.106174 4.978164 7.652987 -0.001833 -3.319505 -2.784717 -10.636361 6.637573 0.039642 6.017652 -3.899918 10.369436 -7.063004 -3.537182 -6.823563 -8.021921 -4.731717 1.711255 -3.677696 1.437506 3.613428 -16.318421 8.325742 -8.267810 -5.221463 2.313711 4.845062 6.379220 -6.464916 -10.879285 4.173319 -2.014052 -13.360587 -12.856307 -4.119949 4.099844 -0.272305 -7.183150 -5.869628 -14.240180 8.981353 -5.659301 4.834946 5.038841 2.014995 15.737852 10.727769 -9.965587 -5.720239 -6.070255 2.210324 -3.858029 0.809679 -2.986523 -2.038603 4.897127 10.261176 -0.548389 4.751097 -4.906875 12.904652 -7.487899 -8.328109 4.962607 -2.373449 0.123666 9.719136 6.929622 -4.743643 -5.823194 -12.514099 2.284631 -2.644512 -2.439696 4.677555 -11.184082 -2.795409 6.383927 -0.704628 -5.820050 3.784154 1.961293 -4.170179 -9.476209 18.322392 17.584143 -11.838316 4.694810 -7.155543 7.891194 -9.096919 -1.392784 -6.102394 1.632517 4.880999 2.979565 4.163749 3.487695 5.942992 -9.391644 -4.735970 -4.654264 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.129103 1.034879 1.025536 -0.864980 2.233490 0.957810 0.460824 0.091281 -0.599626 -1.541747 -0.531574 -1.521446 -2.696167 1.434493 -0.780282 0.251771 2.135884 -0.271794 0.544534 -1.106974 1.165236 -0.871248 2.842689 1.783821 -3.039150 0.398398 0.846137 1.466797 0.503991 1.921002 0.272320 -2.016911 0.515651 -0.184574 1.699754 -0.936773 -0.245482 -0.568930 -0.706045 -3.422592 -0.822939 1.384917 -1.084250 0.930457 0.770201 2.291611 2.893340 1.409432 -1.488070 1.759903 1.317729 0.139263 1.376175 0.305586 -0.585307 -0.390433 0.969048 -0.390729 -1.031062 0.527456 -0.782816 -2.328598 0.061586 1.811853 2.747820 -0.915903 -0.669498 0.651195 -0.406324 0.512862 0.092709 2.050223 1.147956 1.086733 2.377567 -1.008600 -0.397773 -3.432296 0.025697 -5.133861 -1.868944 -2.256326 1.078701 0.903451 0.509441 -0.646284 3.366401 0.510706 0.521685 1.789024 2.512222 -1.184822 -0.139506 -1.771759 -0.578670 0.233522 -1.070619 -0.309813 0.590623 0.464505 -1.362518 -1.461832 0.458575 -0.762381 -1.189848 -0.806775 -1.579038 1.812295 -2.647516 -0.865566 -3.133244 0.137725 -0.266365 -3.291038 -0.543215 0.060344 1.290898 0.778485 0.670546 -0.601917 0.708357 1.332137 -0.489563 -0.433295 -0.662988 2.542997 1.597349 -0.150994 0.586277 1.442103 0.474003 1.576775 2.451717 0.067110 -1.575591 0.971665 -0.423262 -0.052134 -0.954284 0.610235 1.401655 -1.540421 -0.047911 0.792880 -0.644257 -0.730657 -0.415722 -2.020610 1.153299 4.684123 -0.782563 1.057854 0.352907 -2.061971 1.201918 0.124934 -0.354088 1.075483 1.510805 1.797373 -1.874121 -1.150445 1.210570 2.062905 0.501785 -2.442208 -0.180599 0.075507 0.559230 -0.602495 0.631915 1.118491 -0.141491 -0.743407 0.185834 0.064087 3.365265 -1.217198 -2.424536 0.577887 1.252518 -0.602187 -1.802835 -0.181217 -0.778861 -1.090594 0.856805 0.109499 0.211955 2.031347 -4.173558 1.585589 0.322075 -0.498051 1.325206 -0.424121 0.060055 -2.726431 0.325176 1.470092 1.153872 0.423759 -0.045515 -0.729089 -1.990238 0.951458 0.474711 1.401453 -1.003560 1.917083 -0.623692 -1.340886 -1.495125 -1.205291 -0.482835 0.009868 -1.081977 0.727448 0.820168 -4.317688 1.744743 -1.012077 -1.328942 0.495127 0.054490 1.961729 -1.625971 -2.319752 0.917925 -1.379829 -2.477483 -1.505597 -0.616502 0.515895 0.594537 -0.296149 -1.539093 -2.696448 1.681925 -0.614344 0.899875 1.512195 0.844534 3.158117 0.376763 -2.026533 -1.463439 -1.442238 1.276783 -0.488172 -0.146082 -0.777302 -0.648826 1.111488 2.981841 -0.160523 0.234554 -1.281155 2.042018 -2.223824 -0.896118 1.350564 0.598775 -0.524630 1.540063 1.391266 -0.784680 -1.033423 -1.745327 0.505522 -0.549063 -0.885667 0.797816 -2.498021 -0.582840 1.451406 -0.435671 -1.420881 1.001506 -0.003401 -0.284798 -1.330679 2.711614 3.461883 -2.276229 0.917853 -1.437438 1.528258 -2.638783 -1.288024 -0.562289 -0.274087 0.572280 0.177472 0.297714 0.814303 0.931574 -1.249896 -0.933770 -0.508055 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::SuffixTrie(std::__cxx11::basic_string, std::allocator >) = -0.441062 -0.277851 0.451427 -1.358787 1.538668 0.890143 0.663191 -0.232469 -1.556375 -1.455686 0.271708 -1.829483 -2.020383 1.678256 -0.873641 0.605568 2.188617 0.010579 -0.148485 -1.075314 1.444439 -0.788888 2.851121 2.552304 -2.623394 0.259113 -0.351894 1.489253 0.522420 1.483251 1.055316 -1.634678 0.415352 -0.457990 1.364940 -1.048576 -0.421998 0.534861 -0.272405 -3.387525 -0.540674 1.953933 0.013527 0.700341 0.678885 1.586884 2.003784 1.512367 -0.854182 1.994771 1.413020 0.046085 1.483827 0.257910 0.054284 -0.380384 0.411831 -0.822047 -0.715744 0.294363 -0.925199 -1.764127 0.409276 1.892989 2.661091 -0.626449 -0.754051 -0.006123 -0.110634 0.820979 0.875921 1.981370 0.352428 0.183166 2.081092 -1.151559 0.023894 -3.145430 0.633586 -4.543245 -1.674528 -1.084299 2.100864 1.920411 0.664211 -0.931737 3.293282 -0.067264 -0.430539 2.184356 1.905965 -0.852141 -0.146893 -1.060484 -0.968981 0.097741 -0.904235 -0.209974 0.332206 1.319033 -1.542157 -0.524310 0.229470 -0.503482 -1.034484 -0.732303 -1.080161 1.770447 -2.615419 -0.702018 -1.885526 1.438854 0.127619 -3.095356 -0.620192 -1.157541 0.402463 0.408688 -0.390287 -0.022026 0.881257 0.541892 -0.542904 -0.034772 -1.576497 2.128545 1.169269 0.158615 0.096324 1.467662 -0.171258 1.636999 1.323975 -0.427203 -0.800599 1.038004 -0.106075 0.692203 -0.790114 0.204553 1.355529 -1.597582 -0.359083 0.078803 -0.640339 -0.849544 -0.793079 -0.947008 0.517520 5.320545 -0.644098 1.898318 1.389196 -1.439433 1.260326 0.257741 0.657918 1.402117 1.584877 0.750467 -1.817353 -1.432779 1.329282 2.349232 0.656591 -1.931577 -0.134822 0.667874 0.505557 -0.311518 0.795885 0.446242 0.069398 -1.007729 0.092497 0.092344 3.183696 -0.633721 -0.980044 0.333009 1.301614 -0.767360 -1.400911 -0.181940 -1.076921 -0.504990 0.705070 0.256978 0.503976 2.036565 -3.468654 1.792916 0.000000 0.312300 1.434899 -0.115636 -0.486095 -3.134843 -0.515057 0.628906 1.578311 -0.068701 -0.201644 0.182758 -2.212964 0.818553 0.343246 0.919013 -1.387591 2.022189 -0.552113 -0.857003 -1.007726 -1.039283 -0.787901 0.086422 -1.048536 0.998832 0.837743 -2.836112 1.149514 -0.434613 -1.282853 0.218502 0.354540 1.786548 -1.317657 -1.881364 0.883084 -1.167532 -2.635348 -1.629214 -0.591787 0.575849 0.384815 -0.460527 -1.627751 -2.027717 2.349185 -1.007258 1.861572 1.346740 -0.112820 2.450426 0.883989 -1.616933 -1.163359 -1.569501 0.778618 -0.594495 -0.548211 -0.479493 -0.645851 1.009251 2.212509 0.265555 -0.410154 -0.263306 2.701031 -1.305074 -0.811397 1.166166 -0.207804 -0.496973 1.791478 1.378925 -1.344808 -0.288724 -1.895709 0.377383 -0.501836 -0.654978 1.748737 -1.379175 0.386106 0.285982 0.092183 -0.909634 0.802887 0.548208 -0.317675 -0.493716 3.283645 2.189249 -1.032180 0.581957 -1.761265 1.310115 -2.113300 -0.960190 -0.859033 0.295668 -0.122734 0.271329 -0.094660 1.542962 1.616041 -1.315930 -1.044131 0.442796 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/trie-suffixes.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/trie-suffixes.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.102838 2.291312 1.562487 -0.717917 2.766109 1.367771 1.013271 0.487268 -0.616644 -2.691570 -0.631638 -2.124391 -4.425986 2.294314 -0.585513 0.063224 3.754322 -0.176848 0.687496 -1.706446 1.853539 -2.030642 4.557629 3.680192 -4.653238 0.892316 2.125728 1.636419 0.893876 2.301289 -0.173409 -2.800218 1.563200 -0.912133 2.434333 -1.435159 -0.411212 -1.746284 -1.231941 -5.474236 -1.158902 1.074740 -1.666458 0.751731 0.332065 3.627279 5.243060 2.305665 -2.197185 2.042171 2.024831 -0.388197 1.362920 0.613941 -0.184239 -0.707094 0.810340 0.454739 -1.683475 0.649137 -0.741573 -4.573867 -0.332802 2.899213 4.047803 -1.009577 -0.593018 1.138952 -1.047903 0.592012 -0.366003 2.654282 2.658497 1.439750 3.834976 -2.583265 -0.915642 -6.064336 -0.790629 -9.619127 -3.353501 -3.757440 2.156846 -0.214132 1.442142 -0.768521 4.801038 0.882879 1.365380 2.454258 4.607286 -2.750372 -0.617689 -2.410959 -0.586002 0.946581 -1.988110 0.493299 1.582555 -0.871082 -2.603298 -2.541087 1.879002 -0.557000 -1.873320 -1.760126 -1.825465 2.696122 -3.943065 -1.143923 -5.230952 -1.214098 -0.209101 -5.266261 0.164105 0.378936 3.143710 1.639620 0.407178 -1.604759 0.753452 2.296745 -0.518526 -1.834076 -0.538712 3.938225 2.294532 0.051212 1.637644 1.825754 1.319343 3.039852 4.986868 0.217510 -1.976297 0.873415 -1.496661 0.057007 -1.230226 0.251822 2.685449 -2.415903 0.080594 1.378587 -1.326006 -1.234421 1.381152 -2.601321 1.997828 7.446721 -0.705544 1.826334 0.643406 -3.405656 1.992737 -0.923036 -1.365606 1.663266 2.934402 2.574579 -3.500661 -1.784515 1.567659 3.652194 1.049482 -4.325527 -0.755701 -0.209161 0.637889 -1.490111 0.998617 1.208337 0.840279 -1.502646 0.045779 1.590841 5.111028 -2.649330 -3.639972 0.843701 1.038919 -0.209938 -3.745856 -0.330947 -0.918710 -0.925056 0.907091 -0.060883 0.687486 3.291336 -6.560584 2.461418 -0.687083 -1.258650 2.150932 0.151528 -0.574745 -4.132004 1.655184 2.886846 2.100674 1.186277 -0.173361 -1.161072 -3.317569 0.547958 0.594217 1.895951 -1.644233 2.928538 -0.850023 -2.251208 -2.909906 -2.163292 -0.218727 -0.506149 -1.013645 1.105284 1.046774 -7.294980 3.452635 -1.336000 -2.279453 0.322650 -0.520194 2.619889 -3.003984 -4.252019 1.421064 -2.031352 -3.701978 -2.211573 -1.003741 1.065021 0.750870 -0.985431 -1.913322 -4.344012 3.357012 -0.466682 1.946062 2.303078 1.834084 5.843422 0.631077 -3.284702 -2.703609 -1.698674 1.915076 -1.512861 -1.416688 -1.759733 -1.375295 1.887757 5.068595 -0.379324 0.477254 -1.392684 3.095328 -4.594436 -2.024290 2.471422 2.911143 -0.795757 2.473208 2.492805 -1.699599 -1.892443 -2.776764 -0.286514 -0.230242 -2.581894 0.959781 -3.914342 -0.390382 2.681716 -0.679213 -1.605337 1.770754 -0.443432 0.247884 -1.973846 3.494801 6.416270 -4.615794 0.651170 -2.647321 2.195716 -4.426188 -2.842907 0.051400 0.525438 0.730074 -0.151317 0.731008 1.029767 0.923286 -2.556125 -1.478989 -0.690962 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/trie-suffixes.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/trie-suffixes.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/trie-suffixes.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/trie-suffixes.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/trie-suffixes.cpp__std::char_traits::length(char const*) = -0.047959 0.074187 0.150852 -0.097095 0.169069 -0.040761 0.085106 0.002587 -0.187054 -0.288537 0.020654 -0.325482 -0.337677 0.278622 -0.097826 0.057152 0.396993 0.088617 0.021521 -0.205347 0.083720 -0.228953 0.444247 0.449787 -0.380770 0.072168 0.097082 0.203905 0.117136 0.184709 0.039327 -0.273047 0.145170 -0.045471 0.159462 -0.183221 -0.017049 -0.004840 -0.071148 -0.570688 -0.049943 0.136265 0.077063 0.033706 0.037695 0.346494 0.380087 0.245882 -0.102309 0.299784 0.227428 -0.006760 0.151387 0.058174 0.027454 -0.104148 0.158474 -0.180372 -0.188637 0.087118 -0.019847 -0.457826 -0.071060 0.290635 0.418813 -0.078543 -0.056380 0.014940 -0.070522 0.097232 0.077826 0.187622 0.125286 0.112548 0.238713 -0.220717 0.025316 -0.583535 -0.051627 -0.997705 -0.308667 -0.213211 0.394175 0.157394 0.046081 0.035571 0.430770 0.095797 0.045847 0.192963 0.424459 -0.227646 -0.130408 -0.073812 -0.055988 0.175175 -0.217742 0.054169 0.086398 0.118905 -0.245923 -0.163811 0.243737 -0.056587 -0.183833 -0.035782 -0.105422 0.225626 -0.503444 -0.105493 -0.395801 -0.054455 0.083527 -0.463438 0.115922 -0.038266 0.278618 0.167500 -0.075430 -0.083781 0.080283 0.070455 -0.045615 -0.036890 -0.362809 0.281679 0.087056 0.029298 0.111920 0.161313 0.130608 0.299637 0.230672 -0.118414 -0.111806 0.119691 -0.132948 0.058125 -0.161478 -0.089342 0.195626 -0.273149 0.107635 0.008561 -0.193854 -0.201491 -0.011250 -0.121624 0.125977 0.490782 -0.010801 0.233741 0.174870 -0.272173 0.107471 -0.146694 -0.048953 0.146156 0.264172 0.160684 -0.062753 -0.204702 0.126690 0.392930 0.160782 -0.277092 -0.096596 0.025423 0.091004 -0.038347 0.158905 0.100618 0.020184 -0.164950 -0.019937 0.132903 0.438591 -0.092518 -0.110715 0.015050 0.074480 -0.030252 -0.313386 0.008641 -0.049450 -0.011005 -0.004040 0.044549 0.057003 0.340731 -0.721745 0.296792 -0.025945 -0.002619 0.172062 0.003863 -0.158386 -0.514861 0.089499 0.205575 0.287825 0.054183 0.090285 0.031890 -0.341656 -0.023180 0.021137 0.137715 -0.188958 0.258789 0.005404 -0.204364 -0.222308 -0.145654 0.019265 -0.032883 -0.098900 0.174861 0.247848 -0.684451 0.282926 -0.136853 -0.236388 -0.020933 -0.025848 0.214408 -0.351482 -0.318678 0.074136 -0.227878 -0.381874 -0.222255 -0.096389 0.084825 -0.084467 -0.102066 -0.080190 -0.190088 0.318211 -0.092154 0.164441 0.198305 0.031372 0.396850 0.091342 -0.221983 -0.120684 0.003919 0.076285 -0.324539 -0.070456 0.109996 -0.112287 0.172309 0.465811 0.024333 -0.047238 0.063015 0.319132 -0.261731 -0.238387 0.208970 0.140766 -0.027509 0.336657 0.220488 -0.302267 -0.074731 -0.298366 -0.056287 0.012676 -0.205817 0.186731 -0.268338 0.031388 0.182253 -0.041022 -0.173378 0.219917 -0.014112 -0.049391 -0.093159 0.413796 0.496524 -0.267519 0.162747 -0.306802 0.122478 -0.404969 -0.249946 -0.030619 0.153080 -0.080969 -0.000644 -0.032766 0.139574 0.119721 -0.176340 -0.202373 0.069934 +PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -0.339036 1.281610 1.549463 -1.414356 3.335246 1.066634 1.069069 0.820199 -1.430988 -3.032192 -0.588773 -3.137955 -4.911965 2.484752 -0.851227 0.677050 4.345654 -0.107591 0.524551 -1.952775 1.982649 -1.979029 5.173176 4.050906 -5.140360 0.817649 1.174346 2.606242 0.841609 2.426246 0.239432 -3.189952 1.152106 -0.747919 2.988991 -1.702428 -0.405095 -1.008260 -1.201424 -6.492636 -1.326311 2.709040 -1.239931 1.127558 0.968083 4.465936 5.054618 2.781871 -2.538881 2.988928 2.558636 -0.560359 2.311173 0.628964 -0.849429 -0.766339 1.017222 -0.419986 -2.112610 0.736836 -0.951471 -4.938775 0.066215 3.115910 4.809865 -1.702474 -1.257756 1.170500 -0.235107 0.762923 0.464047 3.398652 2.396274 0.968744 4.429697 -2.264156 -0.807065 -6.485494 0.017521 -10.552966 -3.915838 -3.820918 3.237130 1.226917 1.085178 -1.512351 6.230103 0.361197 0.947037 3.077571 4.400591 -2.699710 -0.748444 -3.082410 -0.714682 0.958716 -2.323628 -0.537822 1.905523 0.610449 -2.824112 -2.063567 1.590081 -1.163262 -2.218114 -1.722206 -2.293749 3.185282 -4.553457 -1.678751 -5.977167 0.326992 0.214486 -5.867690 0.081395 0.171443 2.205514 1.665786 0.429393 -0.995062 1.075357 1.673349 -0.955882 -0.896073 -2.010438 4.693094 2.520059 -0.231179 1.742119 2.749773 1.089144 3.136697 4.735970 -0.357150 -2.757910 1.975179 -1.435401 0.388851 -1.729626 0.264254 3.091507 -3.072773 -0.150179 0.868180 -1.580503 -1.254234 0.005683 -2.728785 1.871372 8.155556 -0.881631 2.276994 1.150470 -3.362392 2.995663 -0.511849 -0.756041 2.027247 3.166019 2.647107 -3.525929 -2.212610 2.070976 4.356426 1.290367 -4.570637 -0.392739 0.471844 1.363002 -1.361809 1.262918 2.001083 0.796228 -1.523194 0.232658 0.897015 6.122441 -2.198409 -3.608677 0.906278 2.101276 -0.741292 -4.078142 -0.386398 -1.578928 -1.723182 1.090512 0.447025 0.609177 3.921077 -7.177086 2.906795 -0.110772 -0.691953 2.841870 -0.325071 -0.515472 -5.743593 0.631519 2.515580 2.828513 0.705681 -0.039800 -1.001542 -3.736021 1.154986 0.739140 2.176372 -1.778060 3.508086 -1.402785 -1.996272 -2.397680 -2.602442 -0.864496 -0.152883 -1.419744 1.516453 1.888137 -7.350956 3.285397 -1.758697 -2.688986 0.540941 -0.169717 3.330571 -3.268726 -4.216654 1.828427 -2.302775 -4.656668 -2.945832 -1.171277 1.189096 0.651435 -1.261676 -2.294346 -4.852392 4.222024 -0.866589 2.469620 2.610628 0.925051 5.854169 1.638459 -3.712153 -2.398935 -2.434784 1.423966 -1.766168 -0.792403 -1.411061 -1.285277 2.072772 5.265412 -0.282336 0.641098 -1.576955 3.768482 -4.449279 -2.017940 2.639059 1.635093 -0.675383 3.461156 2.830362 -2.315232 -1.663548 -3.607482 0.459204 -0.608748 -2.043969 1.667419 -4.420582 -0.565765 2.678774 -0.792453 -1.945463 1.826579 0.093630 -0.517168 -2.450368 5.310843 6.556730 -4.007995 1.447889 -3.214010 2.657336 -4.763129 -2.527672 -0.706480 0.467433 0.286208 0.175478 1.223594 1.465212 1.513395 -2.926239 -2.330082 -0.460643 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.121920 0.285697 0.408187 -0.646375 0.864158 0.471727 0.001535 0.004627 -0.441503 -0.585623 -0.343180 -0.641559 -0.877482 0.650457 -0.283563 0.224817 0.802941 -0.095795 -0.028022 -0.369115 0.571426 -0.188184 0.849392 0.468034 -1.030773 0.119872 0.307213 0.796978 0.180998 0.910377 0.073339 -0.884425 -0.208248 0.158004 0.693031 -0.419042 0.045540 0.143565 -0.234130 -1.274028 -0.230024 0.716396 -0.169291 0.290655 0.198767 0.315660 0.865491 0.563155 -0.487044 0.398729 0.736403 0.415646 0.363196 0.079622 -0.245737 0.049752 0.455412 -0.496089 -0.231613 0.140618 -0.112284 -0.546620 0.080199 0.664938 0.975357 -0.366399 -0.312525 0.278019 -0.008871 0.208819 0.030994 0.657856 0.060103 0.286685 0.622503 -0.351982 -0.066375 -1.214519 0.461952 -1.506904 -0.565034 -0.792981 0.261276 0.880767 0.065571 -0.260176 1.430817 -0.133868 0.021688 0.685681 0.872060 -0.319866 0.003900 -0.935772 -0.397859 0.157585 -0.401876 -0.471810 -0.107456 0.608256 -0.313467 -0.517786 0.000000 -0.351307 -0.481878 -0.198865 -0.671676 0.777309 -1.029267 -0.296661 -0.983521 0.614019 0.000000 -1.098790 -0.469618 -0.250981 -0.049622 -0.057731 0.239731 -0.304501 0.252623 0.462761 -0.362118 0.063624 -0.612451 0.790819 0.603272 -0.403335 0.073435 0.432920 0.227292 0.518929 0.462623 -0.294757 -0.705825 0.596328 -0.004165 -0.220542 -0.575861 0.286603 0.267171 -0.638998 -0.067273 0.349515 -0.207592 -0.204497 -0.538234 -0.917981 0.421696 2.050129 -0.300438 0.191486 0.047323 -0.635705 0.604691 0.284744 -0.246332 0.353672 0.300556 0.612614 -0.564895 -0.546453 0.558947 0.805971 0.253234 -0.498610 -0.092301 0.008733 0.087317 -0.081087 0.254887 0.467026 -0.381694 -0.051733 -0.139618 -0.131090 1.278044 -0.112958 -0.688729 0.359348 0.794128 -0.518183 -0.479176 -0.106252 -0.583019 -0.484377 0.412174 0.003402 0.363889 0.864003 -1.655478 0.679700 0.405061 -0.241311 0.401959 -0.440328 0.295127 -1.003500 -0.098512 0.576438 0.684530 -0.239794 0.248192 -0.326794 -0.820926 0.354926 0.244458 0.545144 -0.450726 0.570288 -0.118208 -0.419003 -0.408281 -0.248264 -0.529672 0.005239 -0.470888 0.237787 0.294050 -1.416399 0.776428 -0.401064 -0.080756 0.274805 0.030404 0.744227 -0.593252 -0.709667 0.483566 -0.088072 -0.644064 -0.276468 -0.154391 0.520811 0.049863 0.050579 -0.566736 -1.006935 0.426269 -0.148519 0.321219 0.423377 0.241353 0.599820 0.199229 -0.456838 -0.407251 -0.525919 0.355423 -0.008339 0.156600 -0.181724 -0.085429 0.434455 0.907066 0.039332 -0.052055 -0.386567 0.816593 -0.406360 -0.238840 0.318701 -0.335244 -0.364550 0.429477 0.451395 -0.347001 -0.486583 -0.907868 0.476138 -0.263885 -0.340779 0.298659 -0.789756 -0.203993 0.726734 -0.243857 -0.638245 0.501495 0.256650 -0.387460 -0.453664 1.276724 0.631981 -0.337700 0.513251 -0.669793 0.500802 -0.936685 -0.351132 -0.392719 -0.206899 0.037957 0.065565 -0.022947 0.395001 0.181564 0.152600 -0.237687 -0.352285 +PE-benchmarks/optimal-binary-search-tree.cpp__optimalSearchTree(int*, int*, int) = -5.183771 -5.288257 -3.158001 -6.751118 4.726260 8.631957 2.838738 -8.503988 -9.355525 -1.531283 4.868091 -13.704466 -5.317657 10.531971 -4.115606 8.964509 12.156031 -0.054532 -5.732343 -3.478955 8.077944 1.377142 14.992359 15.868524 -8.417298 -0.386538 -1.300967 3.812623 2.283767 -1.826180 3.888072 -5.801264 3.494678 -9.290827 -0.890113 -2.572110 -2.814285 4.214507 10.110181 -14.952673 -1.132089 3.899969 1.024832 0.196326 0.196391 3.142752 7.364761 8.283715 1.213918 8.307329 5.941659 -0.778950 5.333275 0.226011 2.877204 -0.211982 1.230941 -1.225124 -1.006496 -2.599732 -3.222221 0.663496 0.681047 10.655566 12.086449 0.490912 -5.911336 3.457521 3.488527 2.922871 3.579965 8.982851 -1.830384 3.843007 5.553389 -11.437056 1.349160 -15.174885 2.535958 -13.088412 -6.778674 2.936980 6.892955 4.410777 6.114039 -0.512444 15.731905 -1.437456 -7.457383 10.465681 11.613882 -8.481997 -2.209145 -1.000425 -4.656041 -0.784330 -3.787799 4.345366 2.820613 6.579348 -9.457098 -4.620347 0.202456 1.232508 -5.601717 -5.811000 0.125950 7.130284 -7.089061 -6.113261 -1.862485 8.232930 -0.917943 -16.296725 -6.378249 -7.080387 1.191633 1.727229 -8.683732 -7.974010 4.550995 0.830951 -2.340156 -3.699480 -1.020137 5.016532 7.545786 2.859305 -1.686144 7.078434 2.759017 16.276186 -0.050710 -5.916339 1.626277 2.266182 -0.341790 6.410571 -3.430460 -2.317236 2.103579 -9.193420 1.949081 4.691320 -5.197210 -2.853392 2.426679 0.726057 -2.439701 31.416097 -2.558303 12.750653 10.883377 -8.420208 3.128547 -5.496463 3.494971 3.824619 5.534345 3.880802 -13.893227 -8.565446 10.345802 15.298982 5.147743 -10.406535 -0.436038 5.251828 1.841549 -3.274512 5.594413 1.536575 0.797218 -4.315606 -0.873256 6.764215 18.994812 -6.085745 0.665207 2.119804 5.587598 0.620221 -8.470142 -2.125355 -8.655183 -0.399905 5.487214 4.568808 4.524815 11.311279 -12.668284 8.798936 -0.544442 1.823938 8.617630 5.062406 -9.403521 -9.527966 -4.212911 3.522628 7.344729 -1.912367 -1.012926 2.245512 -12.055839 0.815612 3.443252 1.174403 -7.268000 10.561205 -0.129808 -3.926022 -2.858721 2.850479 -3.449201 -3.715793 -3.414785 8.793500 0.666666 -10.151266 7.524636 3.231569 -5.330325 0.390749 -2.893536 10.371579 -7.373192 -8.657769 6.590368 -5.134400 -5.559254 -2.787292 -2.770591 2.783689 4.910676 3.880865 -10.163813 -7.449736 10.784141 -3.644595 13.161009 5.422426 -3.189230 5.562636 -6.018059 -6.333057 -5.216205 -8.661447 1.626915 2.879110 -7.230045 -4.548141 -2.239154 8.178574 6.993472 0.413250 -8.243131 -0.378837 9.947363 -8.257740 -0.304363 2.887122 3.632358 -8.414263 3.547565 4.795256 -7.428297 4.443741 -6.785936 -1.416907 -8.413134 -5.149341 8.660602 -1.054157 4.066766 -1.763571 -1.274671 1.982335 4.322267 5.162208 1.362587 4.608701 13.166710 6.026621 -0.649250 -2.516698 -13.380085 7.429445 -10.106835 -9.983416 2.353263 2.852910 -6.616551 -3.510648 -0.931010 9.308540 7.365427 -7.991721 -6.509619 5.279444 +PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -0.793634 -0.648553 -0.328054 -0.795861 0.881369 1.115105 0.581723 -0.891103 -1.611247 -0.556211 0.501818 -1.902503 -1.142871 1.967350 -0.464584 1.614826 2.514326 0.470007 -0.617554 -0.682930 1.587569 -0.841330 2.692396 2.901503 -1.726937 0.115391 0.306731 0.670137 0.464932 0.477818 0.064075 -1.167267 0.923981 -1.952446 0.221018 -1.300632 -0.410161 0.788190 1.472208 -3.189530 -0.189803 0.686466 0.275691 0.001849 -0.027443 1.181999 1.589273 1.551276 -0.309028 1.785528 1.067009 -0.434922 0.929731 0.214862 0.494794 0.492739 0.240303 0.372911 -0.510411 -0.105829 -0.562510 -1.098301 0.248846 1.743399 2.399048 -0.289501 -0.831149 0.719263 0.175590 0.409417 0.618211 1.451420 0.210499 0.180340 1.427225 -2.337229 -0.069003 -3.444570 0.037608 -4.033156 -1.348225 -0.146332 1.349001 0.113742 1.312805 -0.094804 2.848666 -0.384671 -0.788385 1.640494 2.238652 -1.965468 -0.544938 -0.494718 -0.645389 0.141304 -1.012070 0.270407 1.097681 0.312124 -1.696265 -1.557876 0.799503 0.368903 -1.076906 -1.273355 -0.263879 1.489134 -1.911414 -1.567341 -1.391553 0.547528 -0.452538 -2.869650 -0.260831 -0.997049 0.647483 0.700183 -1.298675 -1.703684 0.846979 0.620516 -0.365233 -1.228510 0.145783 1.452116 1.011632 0.358760 0.126787 0.807736 0.336946 2.836656 1.215078 -0.994836 -0.037689 0.711731 -0.720470 0.896360 -1.055152 -0.738820 1.039761 -1.882091 0.022840 0.711888 -1.132225 -0.234283 1.612482 -0.087579 -0.004048 5.254983 -0.312251 1.936838 1.620527 -1.758581 1.116246 -0.801412 0.364810 0.951634 1.515658 0.835231 -2.717385 -1.474602 1.381764 2.676400 1.071524 -2.238575 -0.920426 0.308942 0.687195 -0.228414 0.824639 0.384414 0.330235 -1.146263 -0.096628 0.787727 3.650355 -1.529582 -0.173706 0.366148 0.767876 -0.503689 -2.600638 -0.411315 -1.941869 -0.189668 0.343072 0.384498 0.651282 2.134690 -3.010959 1.763967 -0.901240 -0.173728 1.518980 0.760899 -1.372694 -2.505338 -0.365967 0.793084 1.763848 0.099468 0.230318 0.432708 -2.278289 0.060662 0.271387 0.506188 -1.252681 1.974534 -0.125830 -1.058102 -0.765802 0.329349 -0.317109 -1.208123 -0.222446 1.446893 0.644650 -2.560204 1.412759 0.143059 -1.091437 0.520279 0.131129 1.628020 -1.655300 -2.024168 1.286943 -0.691846 -0.958315 -0.837949 -0.486748 0.810503 0.640856 -0.290682 -1.318400 -2.174168 1.875598 -0.640551 2.070286 1.074096 -0.403232 1.747494 -0.405895 -1.346848 -1.373665 -0.824937 -0.177753 -0.445200 -0.932385 -1.411660 -0.527781 1.664123 1.960690 0.353670 -0.728348 -0.193820 2.193867 -1.946061 -0.244699 1.026920 1.362825 -1.011923 0.876685 1.248387 -1.730373 0.178983 -1.208112 -0.233731 -0.842867 -0.953714 1.502276 -0.973445 0.543563 0.124422 -0.193441 0.092206 0.873573 0.777173 0.085136 0.102753 2.551243 2.030846 -0.947544 -0.272915 -2.068971 1.141217 -2.135355 -1.586633 0.079816 1.001035 -1.261434 -0.296662 0.464324 1.496382 1.095063 -1.310828 -1.021049 0.205288 +PE-benchmarks/optimal-binary-search-tree.cpp__main = 0.162913 0.597579 0.725810 -0.156080 0.563398 0.022536 0.249307 0.661427 -0.494231 -0.975072 -0.070960 -1.296524 -1.479833 0.774862 -0.019971 -0.500110 1.155099 0.098799 0.069975 -0.315409 -0.257796 -0.243751 1.018593 1.127525 -0.975072 0.446680 -0.146966 0.279272 -0.164892 0.808335 0.101136 -1.329368 0.148796 0.696302 0.658578 -0.036000 -0.402011 -0.577161 -0.884801 -1.721040 -0.204774 1.408971 0.005261 -0.018943 0.430784 1.057386 1.592316 0.490040 -0.222612 0.576336 0.219546 -0.173838 0.585463 0.003014 0.294670 -0.591388 0.456056 -0.429587 -0.845348 0.454882 -0.143059 -1.236701 -0.675479 0.682114 0.864969 -0.185458 -0.454203 -0.520506 -0.193365 0.263224 -0.096704 0.605751 1.042353 0.486595 0.746357 0.711255 -0.088900 -0.730001 0.183667 -2.619333 -1.118419 -0.661380 1.762027 1.063089 -0.412599 -0.957276 1.233071 -0.041913 0.315609 0.596316 1.433517 -0.208911 -0.380274 -0.396292 -0.101320 0.500558 -0.381032 -0.016925 0.276720 -0.040351 -0.844419 -0.064102 0.425990 -0.523596 -0.509573 0.597123 -0.272300 0.687771 -1.230163 0.324325 -1.392001 -0.003946 0.853185 -1.249029 -0.242030 0.478675 -0.087882 0.801773 -0.478293 0.247276 0.453527 -0.221433 -0.414973 0.323556 -1.432934 1.275555 0.006527 0.074070 0.491827 0.774656 0.742121 0.178188 0.592058 -0.138464 -0.110476 0.280223 0.000000 0.078725 -0.028511 -0.120471 0.184275 -0.423324 0.192242 -0.314137 -0.590286 -0.399248 -1.571461 -0.407334 0.235122 1.213750 -0.373484 0.704291 0.081478 -0.679326 0.811777 -0.132245 -0.551798 -0.077971 0.748416 0.895364 0.274665 -0.292990 0.587559 1.269260 0.392619 -0.673358 0.684552 0.300492 0.107139 -0.406034 0.944845 0.200522 0.599268 -0.442694 -0.112210 0.482663 1.261290 -0.166378 -1.475182 -0.114501 0.236896 0.747810 -0.099821 0.370115 0.435392 -0.117820 0.190639 -0.057237 0.338905 0.897171 -1.927807 0.959731 0.233198 -0.393485 0.803261 -0.160581 -0.282477 -1.003370 0.107188 0.777131 0.986271 0.630935 -0.400222 -0.461910 -0.844820 -0.122801 0.203309 0.403803 -0.528306 0.858474 -0.346170 -0.455535 -0.501565 -1.427081 -0.120556 0.241416 -0.891580 0.306341 0.798580 -1.878702 0.971740 -0.004039 -0.496248 -0.730733 -0.124384 0.139360 -0.780826 -1.026864 -0.155884 -0.975138 -1.960767 -0.455330 -0.674464 -0.087258 0.095389 -0.173638 -0.224623 -0.720377 1.604676 0.085342 0.918620 0.685178 0.109813 1.316255 1.566092 -0.785064 0.195209 -0.748185 1.087918 -0.969715 -0.104207 0.610970 -0.641646 0.178275 1.098642 -0.151027 -0.135860 -0.813011 0.658737 -0.294336 -0.624471 0.612838 -0.630572 0.152830 0.990113 0.756277 -0.472253 -0.134767 -1.226362 -0.248374 -0.322847 -0.464317 0.093607 -0.937756 -0.265938 0.753373 -0.506874 -0.829801 0.229219 -0.335082 -0.636999 -0.291883 1.064869 1.118879 -1.085120 1.195539 -0.864021 0.781695 -0.996442 -0.627538 -0.159255 -0.051162 -0.149095 -0.352620 -0.076613 -0.150614 0.221200 -0.799449 -0.850389 0.621482 +PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -0.902141 -1.031335 -0.441530 -1.443136 0.769850 1.045681 0.529332 -0.930099 -2.127680 -0.882669 0.716886 -2.458073 -1.051206 2.206555 -0.679519 1.611910 2.728987 0.496574 -0.911641 -0.595422 1.737324 -0.669819 2.696241 3.158281 -1.825634 0.012112 -0.274148 0.997948 0.491701 0.485797 0.873432 -1.497165 0.495016 -1.637779 0.418722 -1.328573 -0.416223 1.314417 1.410983 -3.521325 -0.090032 1.533128 0.820314 -0.062958 0.135463 0.570372 1.468291 1.690470 -0.309875 1.700372 1.341436 -0.001723 1.063849 0.095851 0.464762 0.295914 -0.027555 -0.369985 -0.383164 -0.116171 -0.590609 -0.679597 0.478934 2.066418 2.574124 -0.205180 -0.966117 0.441304 0.512083 0.631928 0.921033 1.562358 -0.292135 0.099761 1.256890 -2.230295 0.101510 -3.591081 0.744641 -3.881554 -1.374796 0.191379 1.902530 1.539060 0.981933 -0.503572 3.111831 -0.719972 -1.083503 2.320860 2.218449 -1.416025 -0.537608 -0.770490 -1.125063 0.286477 -0.958543 0.004596 0.634479 1.200312 -1.783943 -1.087883 0.288832 0.301762 -1.167998 -1.096671 -0.164867 1.635098 -2.047786 -1.410203 -0.892870 1.631811 -0.053265 -3.109822 -0.607248 -1.668193 -0.300804 0.423457 -1.601639 -1.365387 0.892218 0.234747 -0.569127 -0.581537 -1.088076 1.482603 0.864966 0.385374 -0.206453 1.021027 0.294300 2.637218 0.308858 -1.356254 0.151657 0.869917 -0.365336 0.937353 -1.207835 -0.777610 1.059650 -1.943737 -0.334477 0.455009 -1.202202 -0.536269 0.515944 -0.136391 -0.130048 6.215251 -0.389058 2.318540 2.006577 -1.626011 1.399606 -0.345564 0.602507 0.951846 1.458627 0.767718 -2.561510 -1.703342 1.587783 2.957958 1.180617 -1.612127 -0.737701 0.692269 0.489683 -0.032801 1.012208 0.194844 0.036624 -1.229613 -0.242365 0.866226 3.683401 -0.826644 0.411942 0.250156 1.504773 -0.681533 -2.174062 -0.296460 -2.308766 -0.073336 0.493881 0.442597 1.009852 2.383966 -3.101533 2.034836 -0.424910 0.346425 1.399175 0.510088 -1.504868 -3.300951 -0.750154 0.672238 2.038482 -0.492966 0.354941 0.632066 -2.474713 0.099378 0.382732 0.497617 -1.515808 2.083190 -0.291813 -0.815104 -0.663900 0.447959 -0.960898 -0.987910 -0.557349 1.608998 1.000208 -1.718234 1.489736 0.208527 -0.940696 0.265540 0.056402 1.732485 -1.805545 -1.908956 1.263881 -0.630766 -1.317363 -0.798148 -0.600223 0.990357 0.510759 -0.349567 -1.470685 -1.974226 2.090736 -0.841930 2.439045 1.135610 -0.758762 1.296318 0.157752 -0.982668 -1.132036 -1.298053 -0.245033 -0.264070 -0.978535 -1.212362 -0.552534 1.610188 1.798976 0.319007 -1.286666 0.171599 2.477579 -1.151224 -0.290907 0.789751 -0.067318 -1.182100 0.914457 1.177964 -2.002283 0.465543 -1.777685 0.279409 -0.992217 -0.844643 1.836772 -0.600821 0.748413 -0.077278 -0.195266 0.017099 0.887384 1.217635 -0.190349 0.516216 3.077713 1.014300 -0.149594 -0.099714 -2.432782 1.145584 -2.219832 -1.557240 -0.285345 0.967567 -1.420443 -0.277020 0.111254 1.839580 1.421690 -0.867785 -1.126757 0.732675 +PE-benchmarks/n-queen-problem.cpp__solveNQUtil(int (*) [4], int) = -2.845094 -2.981528 -1.485523 -5.381875 2.510585 6.077435 1.650771 -5.711707 -6.575187 -1.155858 3.187264 -9.140070 -2.724334 7.013070 -2.621015 5.664166 8.039169 -0.189327 -4.541362 -2.223200 5.274807 1.994666 9.587628 10.231302 -5.664527 0.349731 -0.867188 2.035871 2.746091 -0.093085 2.204744 -3.703175 2.120570 -5.384855 -0.436948 -2.024787 -2.414496 2.343178 6.405774 -10.026068 -0.152243 3.487681 1.337585 -0.437422 0.611449 1.836695 5.331727 5.292887 1.152997 4.755650 3.824693 0.560877 3.306495 -0.086106 2.797980 0.446698 2.626851 -1.587939 -0.154604 -2.077396 -1.827448 0.925185 0.353557 7.310407 7.375841 0.241483 -4.066925 1.850156 3.150318 1.656655 2.494710 5.799150 -1.469301 2.777937 2.933813 -7.381642 2.358020 -7.796216 2.171735 -8.561707 -4.172482 2.397610 4.640943 3.171131 3.872716 -1.041047 10.015519 -2.177124 -4.749499 6.005456 7.252495 -5.207030 -1.074177 -0.305334 -2.952154 -0.442437 -2.278299 2.147869 1.189548 3.649832 -6.053898 -2.116118 0.279619 1.224497 -4.030045 -2.179812 0.681310 4.268947 -5.480754 -3.533469 -0.147648 5.749071 -0.668133 -10.464630 -4.822922 -5.295763 0.565059 0.251199 -5.844897 -5.634769 2.995955 0.834425 -1.729194 -2.324327 -1.964271 3.364559 4.850687 2.352440 -1.538127 3.954396 2.157676 10.450657 -0.162173 -4.085546 1.746107 1.241100 0.103190 3.861511 -1.674882 -1.749983 0.914096 -5.561568 0.184257 3.594058 -3.375729 -0.830730 1.188364 0.813997 -1.891310 22.175259 -2.111340 8.587453 7.231375 -5.523184 0.638214 -3.006413 1.604444 2.058327 3.033789 3.270193 -9.466855 -5.367657 6.718566 10.061363 3.475743 -6.321480 1.238359 3.429633 0.251013 -1.553856 3.713985 -0.188706 1.085127 -3.977049 -1.172921 3.993582 12.777565 -3.356768 0.467324 0.930793 2.821957 -0.104578 -4.158407 -1.038232 -4.847291 0.598238 3.222560 2.261318 3.744347 7.261384 -7.985295 6.302893 -0.706968 0.014996 6.193340 3.042974 -5.964311 -5.142377 -3.372351 2.274459 5.303453 -2.125637 -0.405960 1.611246 -7.962402 0.124599 1.784279 0.277099 -5.079313 6.462717 1.614949 -2.603480 -1.392709 1.804852 -1.305967 -1.996797 -2.550000 5.644814 -0.151657 -6.377652 5.173538 2.666159 -2.860167 -0.016432 -1.888195 5.986980 -5.015871 -4.947420 3.867519 -2.560749 -3.715011 -1.302544 -2.176204 2.366906 3.186469 3.273635 -7.526454 -4.861359 6.939844 -2.656939 8.874088 3.824963 -2.233590 3.086942 -3.911847 -2.351159 -3.365489 -5.643692 0.412876 2.148224 -4.737216 -2.292141 -2.145506 5.303416 4.286018 -0.596055 -5.176463 -0.049419 6.001060 -5.281480 0.428637 1.272127 2.629259 -6.291244 2.009463 2.836005 -4.511450 3.239391 -4.312420 -2.215601 -5.588270 -3.009579 6.336636 0.101260 3.017658 -0.845033 -0.876176 0.668530 2.493271 2.672498 -0.196764 3.762998 8.073718 4.007593 0.098069 -1.433366 -8.561241 5.073750 -6.457268 -6.354377 1.623380 0.894865 -4.896052 -2.545588 -1.013053 6.649900 5.359682 -4.434581 -3.577302 4.091035 +PE-benchmarks/n-queen-problem.cpp__solveNQ() = -0.168068 -0.222581 0.454091 -0.594387 0.426311 -0.021132 0.245304 0.217470 -1.055063 -0.791868 0.174043 -1.334392 -0.859687 1.023838 -0.240124 0.080842 1.368165 0.372668 -0.276684 -0.343818 0.268808 -0.375704 1.048789 1.376449 -0.834763 0.183625 -0.465348 0.460062 -0.012202 0.625936 0.413330 -1.052617 -0.065132 0.186086 0.587860 -0.422839 -0.308737 0.347311 -0.168148 -1.858408 -0.013879 1.372548 0.722867 -0.063002 0.380903 0.516015 0.958410 0.648505 -0.125370 0.689402 0.523939 0.021835 0.637279 -0.014032 0.249685 -0.151957 0.394029 -0.542563 -0.567532 0.355838 -0.280633 -0.611122 -0.062495 0.843113 1.094659 -0.086483 -0.485041 -0.470085 0.269441 0.458372 0.365289 0.602230 0.224510 0.075743 0.505366 -0.123020 0.001234 -1.537903 0.568227 -2.134138 -0.929484 -0.129595 1.646648 1.474192 -0.207408 -0.619624 1.353117 -0.357438 -0.188748 0.807810 1.141503 -0.141207 -0.358315 -0.424464 -0.558978 0.368570 -0.343490 -0.218402 0.145652 0.667860 -0.837679 -0.156247 0.260419 -0.268490 -0.469714 0.344760 -0.128738 0.906988 -1.051412 -0.139142 -0.751563 0.881199 0.628907 -1.290935 0.024842 -0.492447 -0.647680 0.542118 -0.810465 0.045865 0.528050 -0.274192 -0.582862 0.386246 -1.634629 1.122412 -0.031886 0.052104 0.019368 0.561824 0.269585 0.308720 0.107714 -0.663685 0.105500 0.504382 -0.046718 0.221839 -0.528975 -0.348282 0.265419 -0.658057 -0.005398 -0.339557 -0.640093 -0.452289 -1.234114 -0.165695 0.056864 1.760426 -0.364720 1.008943 0.544611 -0.566997 1.174722 0.212457 0.066924 0.148802 0.788645 0.486925 -0.241294 -0.640479 0.651026 1.363646 0.555410 -0.420163 -0.064428 0.338118 0.069050 0.048218 0.852435 0.149593 0.127756 -0.550679 -0.171417 0.232398 1.470421 0.078200 -0.642313 -0.130921 0.590920 0.149502 -0.567367 0.172901 -0.517011 -0.030509 0.142580 0.069288 0.506636 1.077799 -1.995058 1.135716 0.131815 0.056498 0.860289 -0.164860 -0.461356 -1.646010 -0.329824 0.406356 1.248836 0.114130 -0.304125 0.083778 -1.020255 -0.014994 0.095311 0.379814 -0.719647 0.900954 -0.368190 -0.362911 -0.254436 -0.717160 -0.471849 -0.153438 -0.715143 0.536629 0.907196 -0.986392 0.750297 0.011229 -0.332938 -0.293736 0.041579 0.376329 -0.643898 -0.769190 0.102316 -0.537496 -1.315437 -0.619612 -0.513676 0.274075 -0.044286 -0.097314 -0.326751 -0.781234 1.240594 -0.316768 1.181636 0.584829 -0.380053 0.674705 1.643152 -0.447942 -0.021582 -0.572176 0.341067 -0.596223 -0.150848 0.007138 -0.461373 0.411636 0.854908 0.065747 -0.441351 -0.472278 1.124457 -0.071155 -0.415856 0.473136 -1.306500 -0.045130 0.793147 0.705277 -0.906489 0.074314 -1.195223 0.202379 -0.358627 -0.230453 0.573749 -0.461201 0.077692 0.081871 -0.270087 -0.466768 0.265268 0.310842 -0.566714 0.016089 1.534728 0.357691 -0.230266 0.865542 -1.011032 0.661606 -0.954890 -0.444193 -0.449739 0.254317 -0.669131 -0.114108 -0.139726 0.457404 0.395715 -0.319680 -0.774840 0.658791 +PE-benchmarks/n-queen-problem.cpp__main = -0.027413 -0.016906 0.130506 -0.095883 0.154569 -0.145434 0.105117 0.059316 -0.261442 -0.226555 0.052468 -0.313362 -0.208103 0.277145 -0.054903 0.094652 0.362832 0.154386 -0.015883 -0.117966 0.041459 -0.279743 0.321815 0.328353 -0.216282 0.076070 -0.085835 0.127177 -0.006197 0.255518 -0.028771 -0.226642 0.130526 -0.037066 0.099985 -0.171289 -0.018040 0.071922 -0.072049 -0.446997 0.031251 0.219641 0.226905 -0.028847 0.010073 0.258569 0.254281 0.186940 -0.008631 0.244052 0.119635 -0.081214 0.128704 0.084565 0.129561 -0.001537 0.166582 -0.186952 -0.269733 0.080444 -0.056715 -0.401145 -0.055653 0.170800 0.289272 -0.051813 -0.030418 -0.030871 -0.083579 0.096716 0.156004 0.054604 0.062119 -0.043052 0.127201 -0.089062 0.049253 -0.334003 -0.077353 -0.842890 -0.240984 -0.098840 0.442752 0.203999 0.010160 -0.023762 0.274856 0.003727 0.010180 0.067042 0.328109 -0.173473 -0.173162 -0.050012 -0.022967 0.124182 -0.153777 -0.076959 0.170563 0.079389 -0.216407 -0.024260 0.263946 -0.014359 -0.091776 0.055055 -0.026256 0.216658 -0.437381 -0.109003 -0.272279 0.002802 0.106117 -0.300448 0.218186 0.002030 0.070497 0.169734 -0.128737 -0.031195 0.122112 0.017112 -0.093498 0.027499 -0.421580 0.269225 -0.088372 0.073133 0.105011 0.109228 0.065760 0.180176 0.145211 -0.142042 -0.009053 0.080824 -0.085459 0.097898 -0.096940 -0.195130 0.080803 -0.250103 0.053552 -0.093733 -0.191345 -0.083073 -0.143529 0.061522 0.082949 0.165680 -0.025111 0.229183 0.110877 -0.194908 0.181031 -0.067235 0.005108 0.042078 0.223047 0.033428 0.081830 -0.190693 0.102352 0.277546 0.178905 -0.181872 -0.088125 -0.043190 0.096790 0.092349 0.095034 0.090201 0.065136 -0.189166 -0.033637 0.011044 0.398235 -0.039849 -0.084283 0.047944 -0.047393 -0.027163 -0.276585 -0.018512 -0.042190 0.033364 -0.148282 -0.002693 0.038944 0.299296 -0.545716 0.307262 -0.108670 -0.029823 0.219412 -0.041573 -0.124441 -0.530469 -0.073927 0.136237 0.341279 0.064726 0.023783 0.077567 -0.229731 -0.045870 -0.051153 0.087156 -0.095215 0.143309 -0.032312 -0.169711 -0.124605 -0.179072 0.024483 -0.002180 -0.059806 0.132266 0.329492 -0.473872 0.194799 -0.065686 -0.156278 -0.017904 0.121864 0.080535 -0.224948 -0.235033 0.013208 -0.185151 -0.351851 -0.201370 -0.049559 0.049112 -0.141626 -0.184826 0.048279 -0.107355 0.294509 -0.094448 0.165220 0.135248 -0.041604 0.265278 0.339853 -0.169705 -0.008265 0.039881 -0.056289 -0.418596 0.003481 0.195948 -0.102450 0.158404 0.291424 0.125984 -0.026495 0.045529 0.292274 -0.098030 -0.191803 0.264281 -0.099894 0.011509 0.288855 0.270196 -0.299278 -0.058997 -0.223385 -0.066986 0.006626 -0.099792 0.125789 -0.144265 0.037703 0.064132 -0.004819 -0.150397 0.118379 -0.015905 -0.101330 -0.093239 0.404773 0.298054 -0.177548 0.190616 -0.188208 0.068613 -0.276866 -0.147592 -0.045689 0.235896 -0.192282 0.046863 0.040975 0.111759 0.051854 -0.135291 -0.169767 0.064487 +PE-benchmarks/graph-coloring.cpp__Graph::addEdge(int, int) = -0.207629 0.487799 0.710325 -0.603055 0.754452 1.121903 0.276523 -0.281601 -0.616820 -0.653736 0.004449 -1.382057 -1.318310 1.109193 -0.425102 0.196855 1.541574 0.062704 -0.304055 -0.381476 0.422605 0.137492 1.806434 1.739347 -1.420464 0.252384 0.326687 0.766053 0.238120 0.805545 -0.082842 -1.133776 0.389058 -0.163270 0.298001 -0.375291 -0.287049 -0.425646 -0.125558 -2.148592 -0.225758 0.688432 -0.513368 0.008501 0.265403 0.440363 1.795158 0.915251 -0.038145 0.601908 0.548565 0.208105 0.535907 0.083012 0.346667 -0.186662 0.740920 -0.544874 -0.492764 -0.041565 -0.176873 -1.004478 -0.409280 1.293690 1.399073 0.035829 -0.450303 -0.035715 -0.079355 0.187764 -0.010697 0.922614 0.369510 1.020899 0.781000 -0.549021 0.374274 -1.086776 0.077094 -1.834732 -1.161519 -0.700530 0.982812 0.926853 0.438551 -0.386730 1.803415 -0.096516 0.106437 0.802341 1.786177 -1.064380 -0.304424 -0.468897 -0.296752 0.358885 -0.642834 0.317974 -0.238620 0.166782 -1.059314 -0.641479 0.460506 -0.021103 -0.783408 0.076260 -0.272536 0.982118 -1.420744 -0.405713 -1.197009 0.144534 0.070884 -2.006226 -0.901309 -0.122971 0.719090 0.485326 -0.491112 -0.862902 0.463086 0.556744 -0.146803 -0.411900 -0.731987 1.111417 0.780983 -0.037090 0.246582 0.716530 0.691291 1.467165 0.800806 -0.243129 -0.174979 0.291639 -0.311569 0.129923 -0.267389 0.029452 -0.183725 -0.934183 0.065019 0.834763 -0.698001 -0.288385 -0.750103 -0.362115 0.362175 3.635235 -0.365216 1.015689 0.649424 -1.302250 0.385130 -0.520316 -0.435057 0.242592 0.623353 1.068468 -1.456415 -0.718430 0.835498 1.730116 0.586654 -1.131387 0.561812 0.154608 0.056481 -0.575498 0.818810 0.261799 0.282272 -0.665407 -0.194889 0.898380 2.137334 -0.665783 -1.420188 0.239282 -0.005284 0.248310 -0.655044 0.012613 0.068492 -0.109196 0.645692 0.094124 0.461225 1.342214 -1.896064 1.149993 0.129787 -0.527145 1.255378 0.055455 -0.620021 -0.353579 0.156390 1.053553 1.008436 0.190598 -0.275531 -0.289846 -1.387440 -0.098871 0.447877 0.509975 -0.775528 1.174062 0.272788 -0.917842 -0.842241 -0.799180 -0.012022 -0.212927 -0.880506 0.682669 -0.027183 -2.263055 1.406258 0.165344 -0.666402 -0.044295 -0.567136 0.875931 -1.261975 -1.438877 0.513147 -0.672698 -1.309578 -0.314565 -0.513330 0.391126 0.638030 0.283425 -1.139230 -1.015248 1.274140 -0.000222 1.106633 0.809169 0.307506 1.321654 0.255929 -0.788818 -0.472717 -0.974147 0.951325 -0.192234 -0.695056 -0.251756 -0.623938 0.830020 1.597008 -0.293416 -0.451401 -0.603867 1.072675 -1.118049 -0.486947 0.557549 0.477193 -0.695962 0.510108 0.750442 -0.681069 -0.188724 -0.958703 -0.412671 -0.563732 -0.964697 0.603355 -0.924936 0.178426 0.821408 -0.358289 -0.630573 0.530744 -0.053034 -0.123107 0.099323 1.344499 1.403520 -0.840485 0.568726 -1.358384 0.966789 -1.574328 -1.162813 0.244836 -0.160569 -0.224341 -0.359900 -0.116135 0.604120 0.547470 -0.787802 -0.548969 0.264206 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -4.068353 -1.340295 2.543634 -8.368763 5.257887 8.969360 2.439301 -4.568412 -9.479330 -6.225861 2.787705 -15.816688 -9.886371 11.927255 -4.697569 4.653579 15.009859 0.542392 -5.127081 -3.076411 7.354529 0.595560 15.938085 17.667763 -12.136613 0.440994 -0.535227 6.889266 2.837734 3.887758 4.312461 -10.401781 1.306367 -3.782656 3.477632 -3.903010 -2.745047 2.061670 3.535502 -20.034196 -1.571672 10.213177 0.645006 -0.312466 2.387169 2.299315 12.782179 9.386683 -1.254799 6.123147 7.236221 1.660370 6.051891 -0.213731 2.375587 -2.086261 3.283059 -4.057969 -2.633685 -0.686901 -2.797600 -4.033950 -0.251488 13.225735 14.455052 0.329860 -5.636808 -0.019478 2.864937 3.352236 2.306518 9.763230 0.883328 6.287302 7.246053 -7.676611 2.285218 -16.361792 5.027845 -16.783893 -9.454272 -1.477333 10.544281 12.350545 3.601069 -5.420743 18.205837 -2.881193 -3.861818 12.312558 15.287453 -7.104632 -2.573861 -5.380304 -6.643504 2.371833 -5.554822 2.145789 -1.081937 6.465214 -10.485042 -5.227882 0.329084 0.155087 -7.137291 -1.579865 -1.597868 9.402497 -10.705994 -4.491735 -6.597338 8.024553 1.925924 -19.463471 -7.709591 -7.243782 -1.148164 2.912653 -8.074493 -6.760452 4.894056 1.689073 -3.290507 -1.854526 -9.731768 10.207920 6.712419 1.070776 -0.800171 7.003597 4.702375 12.681088 1.985662 -5.839935 0.202579 3.519788 -1.797924 3.400282 -5.057652 -1.302725 2.885481 -8.913179 -1.907946 4.783526 -6.509126 -3.753250 -5.645494 -3.038051 0.683507 37.681445 -3.606466 12.369164 9.345232 -10.338682 7.908913 -1.967083 -0.069640 3.224983 6.538618 8.109808 -14.864515 -8.643821 10.320582 17.663173 5.971698 -8.663567 2.026361 4.932145 0.896860 -3.987115 8.083824 1.661492 0.534684 -6.468907 -2.030472 7.987887 20.257627 -4.159615 -5.968481 1.435380 6.553032 0.680366 -7.593661 -0.108254 -6.614422 -0.699685 5.807333 2.340387 6.518213 13.575406 -18.002684 11.493486 2.098921 -0.349394 10.599339 0.714423 -8.048497 -11.437851 -1.567311 7.002481 10.012384 -0.907125 -1.699156 -0.067546 -14.127594 0.314549 3.777990 3.872531 -8.817912 12.155645 -0.771104 -5.610294 -6.038821 -3.448476 -5.134637 -3.512876 -7.702373 8.213793 2.599987 -12.369263 11.745866 2.181553 -4.950104 -1.424166 -4.222937 8.940963 -10.970280 -11.866341 5.580846 -5.850177 -10.915618 -4.107557 -4.733829 4.173844 5.181537 1.618117 -11.024736 -10.908070 12.855196 -2.949466 14.128464 6.995633 -1.132576 8.279757 5.087050 -5.479158 -5.112826 -10.168054 5.244730 0.890765 -7.386584 -5.518824 -4.360570 8.019769 11.385242 -2.219512 -7.095128 -3.533949 11.808113 -6.602405 -3.358524 3.432803 -2.717873 -7.613992 4.242346 6.007139 -8.396084 1.655073 -11.536680 -0.215098 -7.404025 -7.234453 7.969278 -4.895757 2.932587 3.045634 -2.971433 -2.829189 4.305509 4.602306 -2.101478 3.432602 15.904469 6.818458 -2.520474 3.000822 -15.254356 8.967447 -13.989158 -10.574600 0.397538 0.260753 -5.191667 -3.474148 -0.971329 8.391796 7.400207 -5.626555 -6.620263 5.599251 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/graph-coloring.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/graph-coloring.cpp__main = 0.267887 -0.679796 3.042300 -1.598601 2.725123 -2.039413 0.223947 1.552709 -1.652106 -0.782639 -0.582302 -1.132348 -2.306775 1.479873 -1.639049 -0.558638 1.336616 0.089712 0.801919 -1.788739 0.421505 -1.208553 1.638147 -0.714801 -3.012818 -0.004752 -0.807847 2.451986 0.920876 3.120003 1.457496 -1.539243 -1.722786 1.904055 2.918132 -1.578283 -0.233111 0.432714 -2.267282 -4.332794 -1.186971 4.619060 -1.655526 1.360678 3.807694 7.187668 0.699679 0.985323 -2.246603 3.979305 0.367541 -0.030872 2.604276 -0.603449 -2.569351 -0.302910 3.201374 -0.854922 -2.486015 2.244554 -1.246502 -1.709501 1.762103 1.699802 2.746865 -2.554217 -1.402402 0.343305 1.533381 0.883879 0.671995 2.625525 0.041001 1.487599 2.426920 1.391875 -0.404448 -2.229165 1.733062 -5.649247 -1.988359 -1.721715 2.568359 1.935605 -2.989258 -1.400920 4.223113 0.716393 -0.262466 4.261071 0.757938 1.682043 0.160904 -2.998268 -1.273832 -0.603712 -0.516961 -3.602633 0.991755 3.260730 -1.095954 -0.310586 -1.758199 -2.022384 -0.941546 2.059223 -2.774134 2.257802 -3.755241 -1.278137 -3.083727 2.665465 0.467378 -2.459345 -0.363843 0.854836 1.916106 0.892459 2.479721 2.612783 1.642769 0.688522 -1.323449 3.636333 -3.154280 3.860844 0.088043 -0.584733 -0.151050 2.687607 -0.968315 -2.916100 1.759016 -0.348121 -2.702029 3.111777 -0.102700 -0.402157 -1.017233 1.474710 1.650640 -0.738578 -0.125336 -1.538311 -0.412696 -1.617731 -4.551175 -2.555244 0.734475 1.114598 -1.698429 0.982352 -1.574138 -1.444941 1.080339 2.350466 0.574397 0.322670 1.224860 2.117847 0.257843 -0.497571 1.282646 1.353524 0.164335 -1.522678 0.949974 0.443133 0.254389 1.513405 1.590551 2.583954 -1.838840 -0.616402 0.182630 -4.642543 3.800386 1.113435 -3.492677 -0.637632 2.313951 -1.714443 -0.307975 1.154514 1.800092 -2.803117 0.572318 -0.272330 -0.053155 1.321861 -5.860571 2.160982 1.379542 0.214874 0.056717 -2.821569 1.235461 -5.598999 -3.003957 0.373113 1.588648 0.013543 -1.485571 -0.218958 -0.974963 2.999032 -0.235807 2.134460 0.049405 2.671183 -1.485066 -1.293201 0.140783 -1.193079 -0.838191 2.260894 -1.418154 0.015967 0.807250 -4.256389 0.478991 -2.683060 -0.573576 0.501921 3.362338 1.245990 -0.605538 -1.438207 -0.072803 -0.612358 -4.422375 -3.654628 -2.186119 -0.047350 0.362666 -0.546502 -1.060101 -2.992740 0.537752 -2.064847 -0.105332 1.306686 -1.155613 4.229609 1.644253 -1.636286 0.218059 -2.667584 1.493322 -0.345281 4.099289 2.567697 -0.541488 0.249165 0.679911 -0.834861 1.002755 -2.941642 2.727638 0.710365 -0.217676 0.335559 -4.336408 1.125724 2.763578 1.077272 -0.423872 -0.151998 -2.294406 1.926470 -2.234005 4.221713 0.873951 -2.668534 -3.091772 0.043073 -0.060927 -2.804209 -0.656822 0.222296 -2.367742 -1.802571 4.373092 4.994033 -1.857946 3.846691 0.562181 2.438386 -1.034062 1.203824 -3.767361 -1.570729 2.008094 1.647832 0.037971 0.157278 2.471723 -2.457819 -0.985905 0.071750 +PE-benchmarks/graph-coloring.cpp__Graph::Graph(int) = -0.886871 -0.353017 0.767178 -1.783412 1.162852 0.995514 0.410560 -0.848063 -1.389678 -1.018199 0.615275 -1.692805 -2.233590 1.857005 -0.732418 0.245240 1.180535 -0.765547 -0.888833 -1.231136 1.149372 -0.763242 2.130421 1.889254 -2.224627 0.037407 0.101549 1.481186 0.369871 1.118776 0.558282 -0.957366 -0.791572 0.322133 1.440981 0.537627 -0.555454 -0.048229 -0.216505 -2.469148 -0.400903 2.355885 0.393642 0.063368 0.382942 0.544310 1.484941 1.397248 0.112313 0.749775 1.513490 -0.208230 1.396938 -0.301156 1.203996 -0.464769 1.912759 -0.270240 0.003629 -0.066071 -0.674896 -0.346056 0.109076 2.011536 2.134391 -0.659266 -1.068819 -0.334929 0.157511 1.216118 0.360379 1.714488 -0.116849 0.616049 1.745560 -0.498202 0.635133 -2.231303 1.250257 -2.368168 -1.583015 -0.045413 1.320372 1.700051 0.331098 -0.682506 3.176779 0.016607 -1.104992 0.375170 1.701236 -0.088378 -0.043586 -0.372897 -1.274213 -0.092360 -0.607702 0.066458 0.039322 1.393582 -1.574929 0.246495 -0.008691 -0.231418 -1.336363 0.396940 -0.941650 1.421743 -1.071854 0.010450 -1.000993 1.457096 0.503980 -2.910461 -1.080448 -1.563999 -0.729368 -0.067344 -0.867762 -0.027394 0.966174 0.353118 -0.692274 -0.066005 -1.845405 1.805799 1.437511 -0.019921 -0.182868 1.116752 0.356121 1.015353 0.282424 -0.621162 -0.650769 0.724482 -0.269446 0.690223 0.001976 0.379471 0.718355 -0.619811 -0.196263 -0.224526 -0.324728 -0.343018 -1.107959 -0.749597 -0.108865 4.672193 -1.082331 1.772666 0.783706 -0.948689 1.428544 0.419648 0.109870 0.641787 1.173942 0.742509 -1.264409 -1.268969 2.038357 2.466819 0.569046 -1.306027 0.677188 1.105986 -0.004866 -0.873666 1.568050 -0.033170 0.077404 -0.618754 -0.375504 0.187470 2.679102 -0.765686 -2.313946 0.479028 1.248655 -0.118901 -0.632566 0.264718 -0.925206 -0.489129 0.194284 0.421053 1.140751 1.856154 -2.952604 1.621538 0.397448 -0.606102 2.486144 -0.870997 -0.535934 -2.568023 -0.257748 0.330477 1.511726 -0.086827 -0.898480 -0.343271 -2.090822 0.634756 0.060827 0.463797 -1.581240 2.139944 -0.901035 -0.653609 -0.675386 -1.503704 -1.005771 0.338657 -1.618982 0.726364 0.251304 -2.259252 1.628963 0.325285 -0.484548 -0.575251 -0.030336 1.081709 -0.758619 -1.530843 0.521359 -0.989697 -1.603908 -1.359758 -0.941176 0.305390 0.238231 0.027909 -2.069772 -0.816651 2.082945 -1.249009 2.441331 1.017563 -0.231894 0.920019 1.954041 -0.864280 -0.298732 -0.854501 0.772522 0.213425 -1.232039 -0.466484 -0.742961 0.888183 0.922984 -0.221979 -0.234707 -0.894606 1.952432 -0.411230 -0.582716 0.074324 -1.322431 -0.856218 1.212365 0.776571 -0.307633 0.103344 -2.181086 -0.450106 -1.924871 -1.227398 1.424337 -0.373501 0.551350 0.139536 -0.203861 -0.537453 0.304441 0.600804 -0.746823 -0.007201 2.552141 1.203992 -0.967823 0.373363 -2.267286 1.778210 -1.079125 -0.678853 -0.204823 -0.335185 -0.407153 -0.668487 -0.645870 1.278532 1.260447 -1.004509 -1.049320 0.731554 +PE-benchmarks/graph-coloring.cpp__Graph::~Graph() = -0.253408 0.253885 0.337285 -0.787774 0.574818 0.573302 0.099583 -0.122705 -0.754460 -0.753057 -0.086148 -1.431109 -1.048752 0.896240 -0.351288 0.035400 1.360975 0.111695 -0.185028 -0.417745 0.409024 -0.056907 1.179550 1.519530 -1.243763 0.216427 0.247790 0.724909 0.084937 0.786905 0.480896 -1.536765 -0.265596 0.350891 0.942562 -0.388421 -0.419108 0.136879 0.025103 -2.188821 -0.261563 1.520572 0.524185 0.081831 0.504177 -0.206405 1.311751 0.634177 -0.277328 0.559237 0.740001 0.608224 0.745445 -0.180521 0.264735 -0.076415 0.725576 -0.627568 -0.171242 0.219434 -0.266260 -0.107319 -0.078177 1.163174 1.306202 -0.100586 -0.605849 -0.428912 0.276905 0.377440 -0.025328 1.046832 -0.059453 0.744897 0.595746 -0.331516 0.324256 -1.871709 0.948704 -1.891782 -1.040352 -0.466665 0.954278 1.552144 0.066213 -0.521743 1.903307 -0.389251 -0.025779 0.763247 1.387069 -0.136872 -0.034198 -0.509928 -0.785498 0.383403 -0.284573 -0.074543 -0.096339 0.648500 -0.825048 -0.593106 0.180267 -0.262478 -0.770857 0.240112 -0.336386 0.822754 -0.934312 -0.236730 -0.929556 0.836190 0.333724 -1.618884 -0.924466 -0.726676 -0.925511 0.310876 -0.693961 -0.500777 0.415934 -0.000166 -0.459573 0.170742 -1.230179 1.015466 0.692377 -0.268517 -0.030281 0.620503 0.456828 0.816609 -0.050647 -0.582674 -0.122354 0.611094 -0.005327 -0.081814 -0.655225 0.100339 0.146590 -0.515397 -0.123742 0.177210 -0.586079 -0.414947 -1.076617 -0.900092 0.111197 3.488866 -0.526381 0.914458 0.631477 -0.810796 0.969057 0.327803 -0.248806 0.238284 0.784785 1.032079 -0.757953 -0.723608 0.789510 1.628505 0.411482 -0.334566 -0.069243 0.498194 -0.055564 -0.226205 1.004427 -0.054007 -0.076451 -0.419286 -0.197387 0.424225 1.569252 -0.040941 -1.112645 -0.134122 1.365140 -0.074833 -0.361963 0.191280 -1.217226 -0.214261 0.309902 0.105281 0.690016 1.199399 -2.484275 1.102988 0.577477 -0.141388 1.100886 -0.196981 -0.325548 -1.680096 0.094131 0.681558 1.044125 -0.355130 0.103611 -0.254438 -1.271060 0.054922 0.250436 0.600123 -1.199240 1.255103 -0.308466 -0.530616 -0.402453 -0.573156 -0.651377 -0.533612 -1.031251 0.562677 0.911065 -1.300710 1.095309 0.207755 -0.275030 -0.149578 -0.395717 0.519915 -0.982208 -1.020622 0.274091 -0.422955 -0.925195 -0.098918 -0.685456 0.450570 0.195636 0.335625 -0.983635 -0.715303 1.127759 -0.190162 1.165745 0.762492 -0.072025 0.492856 0.736497 -0.486592 -0.173435 -0.719084 0.568608 0.073349 -0.288703 -0.593653 -0.565892 0.417799 1.334750 -0.143958 -0.540340 -0.728891 1.120211 -0.273949 -0.124363 0.202657 -1.184585 -0.386273 0.329314 0.458141 -0.560502 -0.090482 -1.431982 0.262635 -0.527064 -0.423772 0.745103 -0.826126 -0.076261 0.598440 -0.802414 -0.613355 0.543080 0.514021 -0.493305 0.231256 1.285468 0.068829 -0.153543 0.764518 -1.210349 0.581618 -1.213440 -0.515762 -0.478050 -0.397791 -0.517336 -0.450978 -0.354594 0.603234 0.548014 0.118139 -0.602726 0.434338 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::~list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::~_List_base() = 0.006833 0.165219 0.393724 -0.217897 0.245057 0.030167 0.084887 0.213061 -0.284149 -0.347130 -0.079194 -0.370930 -0.480802 0.363593 -0.149243 -0.168131 0.607403 0.226503 0.023250 -0.236433 0.012430 -0.142318 0.535234 0.597452 -0.562913 0.114501 0.045837 0.352823 0.115715 0.466581 0.005610 -0.476136 0.070389 0.245102 0.320267 -0.318763 -0.017692 -0.071553 -0.384978 -0.900392 -0.033268 0.369395 0.058010 0.031056 0.183971 0.413099 0.578294 0.293805 -0.152753 0.266981 0.272675 0.185172 0.175268 0.043140 0.028540 -0.096718 0.298490 -0.285308 -0.282950 0.167162 -0.001216 -0.579997 -0.133582 0.392510 0.538650 -0.048680 -0.051851 -0.236707 -0.030570 0.123793 0.098355 0.183132 0.223918 0.197457 0.265815 0.048157 0.055408 -0.584506 0.084148 -1.182482 -0.413686 -0.426928 0.676762 0.416183 -0.123267 -0.200586 0.559186 0.023693 0.230627 0.271655 0.535620 -0.159468 -0.168475 -0.248144 -0.151618 0.332483 -0.245232 -0.046660 -0.013956 0.152249 -0.301172 -0.185189 0.226984 -0.136983 -0.250302 0.216562 -0.152116 0.367550 -0.655807 0.003581 -0.588544 0.085116 0.221540 -0.577334 -0.057703 -0.102948 0.217323 0.208934 -0.063525 0.023736 0.088895 0.104035 -0.137200 0.138861 -0.696790 0.500988 0.060153 -0.114703 0.127661 0.170235 0.148529 0.159807 0.233121 -0.177045 -0.154093 0.264069 -0.166499 -0.104430 -0.318176 -0.016655 0.183964 -0.290618 0.099010 -0.029072 -0.283988 -0.236423 -0.427616 -0.199369 0.281223 0.819456 -0.062733 0.253159 0.112594 -0.337952 0.261110 0.038954 -0.122577 0.159970 0.345582 0.239839 -0.059242 -0.234403 0.035046 0.501326 0.229468 -0.230113 0.078910 -0.053037 -0.015610 -0.046372 0.270432 0.090174 -0.041356 -0.201584 -0.068057 0.133681 0.541922 0.041397 -0.492794 -0.077912 0.174823 -0.048387 -0.114095 0.093111 0.094748 -0.004793 0.072130 -0.030532 0.192607 0.462851 -1.053532 0.449889 0.091533 -0.071470 0.264295 -0.141775 -0.072384 -0.456189 0.143166 0.312177 0.532294 0.104735 -0.029857 0.016019 -0.429634 -0.053740 0.072933 0.281700 -0.264105 0.304422 0.072418 -0.290232 -0.274180 -0.452270 -0.028247 0.023555 -0.327305 0.146631 0.235173 -0.968816 0.407371 -0.166797 -0.235312 -0.060262 -0.085828 0.118285 -0.505133 -0.436953 0.012010 -0.138583 -0.604160 -0.280835 -0.185604 0.222895 -0.108104 0.023793 -0.178210 -0.351653 0.464239 -0.062643 0.216034 0.284615 0.039638 0.512440 0.425449 -0.204963 -0.104333 -0.166069 0.326515 -0.376105 -0.031477 0.304667 -0.233610 0.154794 0.677674 -0.032123 -0.064659 -0.115720 0.501815 -0.146253 -0.323783 0.251873 -0.149026 0.080317 0.425222 0.317468 -0.437193 -0.221707 -0.456225 -0.039168 0.122638 -0.233039 0.247780 -0.451657 0.054272 0.317456 -0.058197 -0.400621 0.257199 -0.072663 -0.208961 -0.083260 0.592842 0.524612 -0.316291 0.504059 -0.354573 0.243476 -0.546508 -0.210264 -0.194906 -0.095281 -0.066929 0.082423 -0.130343 0.148835 0.094349 -0.051291 -0.234126 0.111588 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_clear() = -0.146747 2.197092 1.609386 -1.150671 2.439479 2.017526 0.481376 0.215253 -0.834180 -1.868663 -0.915427 -2.410067 -3.457661 2.307862 -0.424059 0.244727 3.517216 -0.079109 0.020129 -0.887595 1.446108 -0.897322 3.502688 2.973231 -3.566327 0.803051 1.852169 1.418140 0.302730 2.488554 -0.839761 -3.057058 0.555625 -0.307456 1.811271 -1.183812 -0.434713 -1.344249 -0.620575 -4.923859 -0.729660 1.451221 -1.313535 0.186179 0.318708 1.647040 4.679172 1.931177 -1.443178 0.882881 1.625122 0.433607 0.899218 0.280134 0.152936 0.059822 1.334942 0.076613 -1.214284 0.373160 -0.336975 -2.665591 -0.509751 2.610121 3.192474 -0.542392 -0.888692 0.798109 -0.420422 0.221940 -0.738624 2.070139 1.776831 1.819836 2.360569 -1.733279 -0.317788 -4.332334 0.150839 -6.250447 -2.715023 -2.842597 1.274541 0.909208 0.995742 -1.109804 4.331726 -0.159239 1.076294 1.834139 4.307677 -2.400951 -0.524097 -2.495156 -0.882586 0.847613 -1.455332 -0.098641 0.524364 -0.643292 -2.116351 -2.503743 1.273496 -0.329869 -1.801051 -0.754332 -1.258502 2.398780 -2.960497 -1.061895 -3.989938 -0.317621 -0.136906 -4.421339 -0.912395 0.174414 1.226281 1.075003 -0.157905 -2.339552 0.798929 1.967094 -0.886839 -1.365268 -0.965532 3.284151 1.968415 -0.539192 1.080884 1.149424 1.771731 2.655351 3.144121 -0.463663 -1.346704 0.884496 -1.015825 -0.532042 -1.310755 0.216260 1.014100 -2.066257 -0.167385 1.771700 -1.392627 -0.320896 -0.024727 -2.343702 1.499157 7.651912 -0.979924 1.356684 0.176134 -3.181205 2.221750 -0.451525 -1.896386 0.623257 1.898226 2.881034 -3.448574 -1.586106 1.743579 3.500133 1.163083 -2.873665 -0.095573 -0.285704 0.064681 -1.135952 1.329154 0.960116 0.300168 -1.122497 -0.481329 1.471171 5.028964 -1.857573 -3.580464 0.873362 1.162355 -0.048090 -2.583148 -0.184732 -1.273561 -0.854306 1.042400 -0.246636 1.323494 3.103441 -5.675341 2.433119 -0.089992 -1.877675 2.220890 -0.333440 -0.334800 -2.463053 1.075017 2.960258 2.349378 0.589154 0.010118 -1.476656 -2.932003 0.116244 0.751245 1.666359 -1.625960 2.432914 -0.292802 -2.261225 -2.149699 -1.671467 -0.684685 -0.890457 -1.489020 1.008257 0.663654 -5.796358 3.643517 -0.443178 -1.006482 0.316286 -0.868747 1.912105 -2.735000 -3.611260 1.376845 -1.029508 -2.280408 -0.720094 -1.063592 1.376526 0.884553 -0.082308 -2.005739 -3.959450 2.415527 0.145547 1.937832 1.867647 1.496973 3.609873 1.016548 -2.118815 -1.823064 -1.945529 1.844380 -0.497196 -1.013591 -1.536362 -1.304171 1.858508 4.011223 -0.519377 -0.073563 -1.966358 2.300654 -2.998144 -1.055201 1.616794 1.023750 -1.371434 0.952517 1.939205 -1.238824 -1.572578 -2.665347 0.019683 -0.915574 -2.257573 0.456542 -3.112178 -0.577380 2.817442 -1.246549 -1.617727 1.463621 -0.081255 -0.415984 -1.076200 3.005193 3.756698 -2.985247 1.200485 -2.611231 2.095420 -3.861484 -2.504323 0.104338 -0.242134 -0.094311 -0.678172 0.489869 0.798301 0.237989 -0.940762 -0.980840 -0.731564 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/graph-coloring.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/graph-coloring.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.103476 0.641697 0.497859 -0.202878 0.824161 0.516597 0.369500 0.199136 -0.509319 -0.784774 -0.236954 -0.916835 -1.303886 1.063035 -0.046613 0.349197 1.700650 0.360424 0.073659 -0.393964 0.548691 -0.872602 1.593052 1.589766 -1.335531 0.378593 0.612344 0.426203 0.015948 0.951294 -0.429000 -1.131466 0.622660 -0.596594 0.583665 -0.797886 -0.232911 -0.325815 -0.097579 -2.287175 -0.213409 0.462332 -0.265000 -0.024871 0.040935 0.892494 1.828105 0.847668 -0.444437 0.766416 0.464175 -0.211691 0.465819 0.225554 0.270836 0.282215 0.277457 0.084568 -0.729449 0.271789 -0.198052 -1.576208 -0.182025 0.974142 1.368218 -0.250670 -0.319011 0.319413 -0.322016 0.093341 -0.086111 0.736093 0.774742 0.376674 1.007349 -1.076518 -0.223372 -1.972082 -0.281879 -3.209558 -1.252099 -1.063134 0.931508 0.125410 0.621496 -0.317222 1.677852 -0.107913 0.448728 0.634241 1.796746 -1.321889 -0.430544 -0.762861 -0.088307 0.411738 -0.690179 -0.033443 0.611984 -0.542362 -1.041807 -1.121291 1.025034 0.053994 -0.719234 -0.519137 -0.355197 1.089247 -1.427822 -0.792111 -1.825397 -0.422587 -0.163332 -1.762972 0.288106 0.176759 0.731003 0.808045 -0.331878 -1.077506 0.422808 0.769429 -0.241371 -0.839180 -0.289121 1.417857 0.496134 -0.087667 0.608159 0.493262 0.561385 1.383818 1.578165 -0.222703 -0.352038 0.437886 -0.648718 0.015306 -0.560612 -0.342949 0.495275 -1.084932 -0.094193 0.527074 -0.783678 -0.072079 0.497341 -0.503512 0.559925 2.718368 -0.248745 0.733298 0.299526 -1.345701 1.042707 -0.455047 -0.568554 0.349751 1.109417 0.957254 -1.509566 -0.695434 0.496442 1.539338 0.632007 -1.363167 -0.469452 -0.316951 0.274198 -0.273107 0.546770 0.361921 0.440750 -0.705069 -0.088574 0.574652 2.248802 -1.020561 -1.086397 0.258004 0.095687 -0.057476 -1.686181 -0.137442 -0.676947 -0.255673 0.057129 -0.085487 0.323742 1.327839 -2.231755 1.128992 -0.638718 -0.713144 0.971406 0.126124 -0.378079 -1.466239 0.369500 1.083932 1.236242 0.416507 0.104194 -0.313970 -1.279089 -0.123174 0.148120 0.636787 -0.637661 1.099386 -0.193474 -1.007322 -0.822727 -0.561396 -0.044277 -0.644216 -0.301495 0.539293 0.696047 -2.386497 1.320983 -0.176136 -0.689653 0.328782 -0.043990 0.806984 -1.209328 -1.605837 0.603913 -0.473636 -0.988665 -0.457622 -0.445601 0.559666 0.207534 -0.549578 -0.491850 -1.563544 1.186865 0.034156 0.892035 0.816438 0.375754 1.754578 0.563718 -1.112083 -0.711544 -0.583959 0.327162 -0.783837 -0.390482 -0.751213 -0.622451 0.915509 1.848173 0.112926 -0.002076 -0.557441 1.194270 -1.514949 -0.493447 0.966419 0.804998 -0.295204 0.597015 1.031906 -0.911318 -0.579525 -0.923953 -0.105150 -0.117822 -0.872058 0.352672 -1.361710 -0.086151 0.905872 -0.382456 -0.471999 0.621644 -0.043703 -0.036295 -0.510417 1.352060 1.799761 -1.395362 0.351887 -0.997538 0.726116 -1.591363 -0.969847 -0.015495 0.565129 -0.326315 -0.166925 0.444464 0.361782 0.163303 -0.724187 -0.534850 -0.336825 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/graph-coloring.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/graph-coloring.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.083720 2.091510 1.366277 -0.359619 1.764270 0.994141 0.719948 0.675167 -0.559317 -2.286870 -0.516342 -2.177360 -3.725642 2.182581 -0.238950 -0.160090 3.667570 0.279170 0.329360 -1.270693 1.166641 -1.538706 3.744430 3.539724 -3.647278 0.776785 2.126973 1.181516 0.844205 1.389804 -0.337967 -2.497264 1.425576 -0.773104 1.679738 -1.264721 -0.309632 -1.737586 -1.008497 -5.027494 -0.768477 0.692235 -1.313150 0.103118 0.102108 3.005358 4.657213 2.000392 -1.605766 1.355360 1.557942 -0.302976 0.766056 0.368787 -0.024966 -0.634567 0.544727 0.519102 -1.548016 0.558004 -0.116956 -3.966402 -0.797345 2.546330 3.306273 -0.569677 -0.532769 0.899980 -0.607787 0.344564 -0.592539 1.799689 2.536555 1.561691 2.828804 -2.175978 -0.872230 -5.152526 -0.763331 -8.528228 -2.957993 -2.988941 2.360755 -0.504262 0.824130 -0.581609 3.830087 0.570065 1.396620 2.114305 4.448601 -2.535818 -0.952148 -1.998853 -0.277919 1.471750 -1.871413 0.698029 1.493854 -1.118727 -2.382252 -2.419498 1.839216 -0.276175 -1.765330 -1.141537 -1.043031 2.253788 -3.274369 -0.881329 -4.517521 -1.453240 0.256850 -4.494726 0.072237 0.661008 2.839176 1.793391 -0.212651 -1.798575 0.495283 1.688997 -0.372280 -1.607716 -0.567686 3.184835 1.560644 0.007574 1.570323 1.482215 1.872850 2.774053 3.980758 -0.168993 -1.232827 0.683842 -1.602773 -0.168380 -1.239567 -0.305341 2.052539 -2.078855 0.419665 1.301486 -1.641542 -1.213251 1.289209 -1.887088 1.625575 6.335810 -0.320014 1.534248 0.564743 -3.007350 1.627760 -1.329863 -1.770118 0.940035 2.464994 2.542573 -2.810306 -1.415006 1.163741 3.547854 1.235267 -3.481002 -0.464180 -0.328609 0.392392 -1.401580 1.258420 0.959654 0.942841 -1.309365 -0.210127 2.227428 4.295147 -2.279002 -3.168347 0.379793 0.730584 0.419217 -3.290711 -0.005514 -0.458674 -0.488667 0.779399 -0.036220 0.895975 2.987535 -5.700701 2.271142 -0.520354 -1.251710 1.702409 0.413003 -1.002284 -3.201857 1.788924 2.872058 2.206859 1.182139 -0.082561 -1.017635 -2.932362 -0.257534 0.706838 1.517534 -1.341773 2.454841 -0.460662 -1.867452 -2.498233 -1.646497 -0.011700 -0.715075 -0.802046 1.142005 0.916030 -6.374895 3.463587 -0.993638 -1.862854 -0.155246 -0.998996 1.908249 -3.211251 -3.837815 1.095471 -1.548768 -3.109893 -1.449845 -1.093049 1.118529 0.662225 -0.665243 -1.274516 -3.562970 3.017396 0.017287 1.778801 1.923457 1.434754 4.861297 0.485099 -2.466108 -2.009369 -1.286411 1.696451 -1.544867 -1.396396 -1.351547 -1.295153 1.722446 4.488532 -0.641521 -0.000158 -1.205766 2.262963 -3.972367 -1.908973 1.910512 2.743855 -0.667918 2.001589 2.059049 -1.931118 -1.396869 -2.515920 -0.632578 -0.168553 -2.558438 0.519308 -3.364669 -0.301012 2.687335 -0.937404 -1.206959 1.652347 -0.495242 0.101871 -1.235184 2.569896 5.489034 -4.057488 0.778429 -2.689755 1.947818 -4.023807 -2.919626 0.459356 0.559369 0.223585 -0.529675 0.595067 0.518487 0.413461 -2.147296 -1.541073 -0.226072 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/reservoir-sampling.cpp__printArray(int*, int) = -0.517269 -0.256661 0.083392 -0.804218 0.565738 0.578819 0.337391 -0.394539 -1.108004 -0.951458 0.333900 -1.725166 -1.253556 1.448326 -0.537028 0.636365 1.906533 0.230551 -0.380961 -0.606949 0.962894 -0.528022 1.987249 2.202488 -1.575506 0.011639 0.208665 0.829032 0.508082 0.368693 0.599806 -1.227454 0.393169 -0.725322 0.615530 -0.759571 -0.190320 0.389916 0.381277 -2.532271 -0.238192 1.010344 0.277544 0.049881 0.161912 0.907545 1.432818 1.199004 -0.410074 1.087531 1.026029 0.007680 0.710773 0.051417 0.142241 -0.261572 0.148014 -0.271087 -0.449367 0.086933 -0.308457 -1.004152 0.053746 1.546143 1.932500 -0.193671 -0.533085 0.214102 0.168034 0.463769 0.384535 1.122666 0.282156 0.466932 1.121047 -1.312035 -0.014098 -2.711330 0.347193 -3.415273 -1.126725 -0.396823 1.423573 0.897046 0.450145 -0.379004 2.221607 -0.095678 -0.368226 1.594497 1.866410 -0.951965 -0.436605 -0.677420 -0.662690 0.434396 -0.874133 0.225164 0.457626 0.702923 -1.261232 -0.815791 0.278303 0.014539 -0.848500 -0.568779 -0.332669 1.136594 -1.628289 -0.682551 -1.210029 0.579567 0.207863 -2.382614 -0.329640 -0.806572 0.292467 0.496526 -0.845386 -0.737264 0.524795 0.292418 -0.311264 -0.337068 -0.966717 1.274494 0.687716 0.194816 0.072611 0.865853 0.460371 1.619507 0.643665 -0.720237 -0.193072 0.581759 -0.510128 0.419127 -0.835437 -0.367045 1.030768 -1.256770 -0.042783 0.322738 -0.843665 -0.665442 0.199458 -0.487317 0.249470 4.111150 -0.265368 1.416415 1.131909 -1.242934 0.908361 -0.368915 0.105848 0.610347 1.093221 0.809434 -1.498204 -1.075378 1.058700 2.093427 0.750796 -1.277747 -0.297017 0.449557 0.346853 -0.343721 0.774567 0.322214 -0.006629 -0.771462 -0.143719 0.829243 2.355161 -0.650138 -0.264727 0.083310 1.001385 -0.173853 -1.422446 -0.031589 -1.058434 -0.082225 0.399498 0.311535 0.644469 1.669606 -2.625363 1.388300 -0.021889 0.166240 0.966937 0.201939 -0.950514 -2.287993 -0.004116 0.794589 1.267900 -0.028021 0.145199 0.184337 -1.743716 0.067988 0.308538 0.586332 -1.011493 1.450829 -0.231119 -0.659120 -0.843581 -0.167937 -0.516774 -0.511754 -0.542921 0.991529 0.686198 -1.936077 1.333230 -0.128154 -0.813897 -0.093026 -0.200928 1.124067 -1.541260 -1.535418 0.680344 -0.748613 -1.378343 -0.763049 -0.526494 0.563397 0.279423 -0.223678 -0.969592 -1.446184 1.594460 -0.507718 1.513901 0.831517 -0.158739 1.436845 0.258603 -0.830633 -0.813587 -0.809213 0.269822 -0.431896 -0.737445 -0.572469 -0.379506 1.007557 1.621326 -0.080223 -0.662299 0.008740 1.581827 -1.046661 -0.588721 0.594635 0.244529 -0.631981 0.892601 0.821537 -1.357699 0.056614 -1.430680 0.002369 -0.552356 -0.880993 1.004239 -0.885516 0.345798 0.382961 -0.225656 -0.286097 0.695019 0.568175 -0.164398 0.137450 2.017997 1.421640 -0.669359 0.217657 -1.812577 0.903224 -1.800119 -1.302083 -0.102458 0.474527 -0.550142 -0.204669 0.038630 0.971525 0.896786 -0.827311 -0.921414 0.518124 +PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -1.928484 -1.829905 -0.147346 -2.630112 1.649882 2.366454 1.185711 -2.090791 -3.705382 -1.950058 1.654940 -5.292364 -3.118163 4.503675 -1.698345 2.624654 5.609044 0.654672 -1.701735 -1.907569 3.370607 -0.548079 6.347582 6.843529 -4.411623 -0.149745 -0.056094 2.481006 1.845873 0.059018 1.983975 -2.811301 1.412475 -3.132962 0.636232 -2.123153 -0.571864 1.684574 2.541216 -7.141518 -0.491579 2.384080 0.410324 0.133588 0.465139 2.149301 3.564178 3.675700 -0.776853 3.600580 3.047924 -0.294504 2.145307 0.230696 0.527083 -0.628268 0.552069 -0.600069 -0.996491 -0.452247 -1.061887 -1.993841 0.220247 4.408697 5.556938 -0.136626 -1.957671 0.976596 1.162375 1.351839 1.657179 3.493015 0.327007 1.297403 3.295335 -4.283863 -0.171096 -7.906045 0.958907 -8.162978 -3.245079 -0.079833 4.236745 2.065338 1.819699 -0.580214 6.495719 -0.439677 -2.159759 4.850938 5.188258 -3.245853 -1.219439 -1.331449 -2.008892 0.871363 -2.394989 1.424092 1.003736 2.658449 -3.930132 -2.656760 0.663610 0.212621 -2.487754 -2.053493 -0.793382 3.451202 -4.336335 -2.284070 -2.386961 2.608287 0.277604 -6.772036 -2.096891 -2.915811 1.407705 1.216514 -2.993139 -2.388380 1.676075 0.495846 -0.951452 -1.282882 -1.524638 3.084479 2.654137 0.850354 -0.246846 2.756214 0.991091 5.732176 1.211055 -2.413717 -0.067201 1.487069 -1.002243 1.984094 -2.412146 -1.050936 2.432173 -3.642500 0.254496 1.401395 -2.430887 -2.177254 1.132244 -0.433548 -0.011781 12.522147 -0.404694 4.740455 4.335659 -3.406406 1.945226 -1.631413 1.139971 2.107255 2.969686 1.935203 -5.139431 -3.516365 3.522576 6.207801 2.204560 -4.323944 -0.757482 1.754112 1.256191 -1.253201 2.355841 0.882372 0.262866 -2.388559 -0.322561 2.839906 7.309715 -2.348252 -0.878791 0.468795 2.513230 -0.319685 -4.257461 -0.475144 -2.814786 -0.238025 2.035988 1.519456 1.922625 5.017325 -6.950179 3.946206 0.121814 0.996765 3.151765 1.502255 -3.602194 -5.253133 -0.787342 1.780330 3.622309 -0.088494 -0.002907 1.090914 -5.355415 0.290118 1.215064 0.995560 -2.901290 4.540556 -0.364541 -1.672521 -2.019847 -0.052284 -1.518681 -1.470674 -1.403312 3.474794 1.077260 -5.254961 3.423080 -0.044475 -2.519818 -0.011696 -1.054357 4.220822 -4.034062 -4.266601 2.601590 -2.202795 -3.856028 -2.349439 -1.220842 1.453023 1.676391 0.432471 -3.460857 -3.911776 4.924410 -1.791422 4.996455 2.423066 -1.053017 3.575222 -0.563312 -2.424973 -2.638766 -2.527978 0.824423 -0.235842 -2.803093 -2.359288 -0.957463 3.169742 4.112232 -0.287644 -2.666376 -0.308666 4.856864 -3.824328 -1.280607 1.628002 1.783762 -2.433628 2.673773 2.375609 -4.067962 1.028176 -3.564153 -0.507326 -2.261316 -2.464794 3.525068 -1.586450 1.558078 0.235739 -0.340380 -0.080645 2.001886 1.943710 -0.185637 0.980938 6.074844 4.273206 -1.436890 -0.049067 -5.617829 3.024386 -5.001167 -4.095926 0.341427 0.989684 -2.355431 -0.728909 -0.129737 3.694473 3.251870 -2.962706 -2.828470 1.937723 +PE-benchmarks/reservoir-sampling.cpp__main = 0.008311 0.235284 0.419628 -0.120056 0.570190 0.108257 0.307409 0.362499 -0.593541 -0.582022 -0.040533 -0.816026 -0.910711 0.791835 0.030811 0.119323 1.165555 0.328805 0.024149 -0.266118 0.099627 -0.551814 0.997945 1.053967 -0.718973 0.352935 -0.018479 0.180545 -0.207409 0.774684 -0.254895 -0.923443 0.383555 -0.128578 0.323256 -0.422265 -0.313908 -0.158026 -0.228736 -1.543929 -0.068978 0.741350 -0.008880 -0.055415 0.168908 0.769342 1.143131 0.490002 -0.111017 0.744915 0.146080 -0.310667 0.428222 0.136730 0.402813 0.119127 0.300643 -0.095927 -0.720531 0.316130 -0.229175 -1.084410 -0.316736 0.494654 0.777325 -0.206924 -0.347918 -0.119933 -0.235421 0.150541 0.105542 0.430828 0.620734 0.065233 0.623971 -0.157879 -0.158899 -0.944398 -0.117166 -2.279822 -0.906847 -0.468418 1.205434 0.359776 0.124397 -0.451202 1.049001 -0.203359 0.156428 0.342607 1.143637 -0.654887 -0.384995 -0.288776 0.016819 0.246674 -0.354784 -0.164373 0.512919 -0.282039 -0.753184 -0.401144 0.720671 -0.139377 -0.399720 0.018016 -0.160020 0.764174 -1.092620 -0.320349 -1.186483 -0.041469 0.228421 -1.004074 0.124928 0.305731 0.230474 0.710030 -0.489320 -0.319308 0.477917 0.154766 -0.313390 -0.218600 -0.473723 1.017875 0.032287 0.081503 0.425345 0.464121 0.367345 0.673479 0.872867 -0.205906 -0.038686 0.322102 -0.193486 0.187208 -0.171244 -0.344308 0.071836 -0.641167 0.102504 -0.039980 -0.584599 -0.069195 -0.345901 -0.052070 0.178306 1.243354 -0.264002 0.642529 0.191299 -0.722333 0.723963 -0.243816 -0.254505 0.076320 0.771077 0.537174 -0.395758 -0.392268 0.416997 1.050640 0.465291 -0.888235 -0.030504 -0.088492 0.249376 -0.064074 0.558088 0.212470 0.544006 -0.509269 -0.055540 0.196354 1.496249 -0.518541 -1.005638 0.066300 -0.049338 0.236271 -0.802540 0.039794 -0.144461 -0.112310 -0.005638 -0.084787 0.184180 0.855035 -1.588896 0.866070 -0.403962 -0.467072 0.779854 0.111420 -0.274062 -1.013235 -0.117915 0.560425 1.044218 0.495570 -0.124994 -0.153759 -0.776965 -0.110240 0.048230 0.330091 -0.395433 0.734748 -0.204933 -0.596593 -0.325551 -0.737716 0.018096 -0.185294 -0.363696 0.352531 0.675339 -1.687007 0.701018 0.037419 -0.448828 -0.039986 0.208446 0.381590 -0.613632 -0.977380 0.197211 -0.532842 -1.123450 -0.358172 -0.408770 0.150545 0.090993 -0.333993 -0.131001 -0.832216 1.128048 0.033979 0.801068 0.552104 -0.022853 1.173063 0.860345 -0.789096 -0.097082 -0.457613 0.431379 -0.871314 -0.058251 -0.020204 -0.498105 0.471013 0.986708 0.219480 -0.048855 -0.587354 0.821366 -0.721030 -0.278041 0.746935 0.101107 0.032464 0.689966 0.826035 -0.630593 -0.193407 -0.685940 -0.191805 -0.199081 -0.329083 0.238224 -0.773583 -0.082099 0.407026 -0.248268 -0.446262 0.240589 -0.142145 -0.284532 -0.337333 1.002318 1.167098 -0.931959 0.599806 -0.595145 0.554181 -0.851666 -0.508613 -0.128203 0.378988 -0.426083 -0.139769 0.208355 0.123971 0.150151 -0.665495 -0.557078 0.113093 +PE-benchmarks/dfa-based-division.cpp__preprocess(int, int (*) [2]) = -1.653022 -1.624325 -1.170640 -2.500707 1.801695 2.403261 0.941858 -2.436145 -3.462292 -1.228441 1.454732 -4.296243 -1.665450 3.605556 -1.284361 3.030510 4.409259 0.190157 -1.491391 -1.395758 2.834160 -0.163979 4.821068 5.405151 -3.032717 0.169399 0.014321 0.971913 0.754265 0.017014 0.725279 -2.787107 1.246313 -3.179958 0.183367 -1.481477 -1.244438 1.684023 3.679374 -5.495787 -0.287210 1.743792 0.099546 0.179383 0.415062 1.176726 2.702988 2.596055 -0.240346 3.339296 2.197966 0.162351 1.566665 0.000000 1.065988 0.603861 0.645638 0.116864 -0.356548 -0.386809 -1.276594 0.066862 0.462000 3.466995 3.765714 -0.428124 -2.134735 1.199191 1.118601 0.763826 1.239908 3.057853 -0.129761 0.721950 1.958172 -4.590476 -0.049992 -6.959844 0.943389 -5.971678 -2.625718 0.849012 2.527111 1.346053 2.047301 -0.989971 5.348547 -0.770443 -2.336258 3.375531 3.953570 -2.859705 -0.600890 -0.425544 -1.751180 -0.406898 -1.196239 0.660518 0.738791 1.536171 -3.164230 -2.301017 0.919098 0.309330 -1.930687 -2.244514 -0.006472 2.707996 -3.188319 -2.287871 -1.138011 2.913081 -0.335298 -5.243053 -1.244285 -2.480967 0.514458 0.743158 -3.145824 -2.916996 1.508217 0.453433 -1.240987 -1.500178 0.076128 2.335068 2.700428 0.879015 -0.550007 1.679554 0.891842 5.506704 0.529707 -2.264263 0.489961 0.981802 -0.085632 2.030460 -1.589497 -0.906215 1.350241 -2.902542 0.537943 1.321064 -1.899278 -0.911010 2.454646 -0.231759 -1.062098 10.828451 -1.014701 4.291647 3.564634 -2.888910 1.143125 -1.196007 1.063942 1.389538 2.462726 1.641999 -5.028555 -2.871154 3.442142 5.189812 1.794482 -3.903329 -1.152761 1.617752 0.631865 -0.549252 1.886845 0.183878 0.814602 -1.975436 -0.277680 1.758689 6.964476 -2.115906 0.160975 0.411865 2.487019 -0.122985 -3.738251 -0.745926 -3.690575 -0.139500 1.671950 1.366581 1.653749 4.000733 -6.053121 3.015218 -0.892230 -0.216820 2.659920 2.016461 -2.882499 -4.328397 -1.394473 1.135862 3.002100 -0.419805 1.210024 0.832482 -4.044327 0.229580 0.799157 0.540416 -2.768335 3.658726 -0.064215 -1.555405 -0.676572 1.025639 -1.191599 -1.844503 -0.998416 2.854468 1.409622 -4.196760 2.511417 0.929632 -1.577962 0.343614 -0.536017 3.717520 -2.455771 -3.138864 2.388461 -1.743559 -1.938798 -0.778827 -1.114567 1.128099 1.089689 0.908829 -3.016980 -2.895882 3.723741 -1.139746 4.550863 1.991721 -1.292067 2.255517 -1.489883 -1.827691 -1.891909 -2.490785 0.588673 0.515497 -2.016303 -2.042319 -0.956973 2.626538 2.627061 0.307522 -2.484085 -0.473168 3.594124 -3.149341 0.885866 1.203689 1.671147 -2.565010 1.240202 2.043590 -2.567112 1.268591 -2.568731 -0.135430 -2.690092 -1.323115 3.014946 -0.545159 1.095046 -0.385133 -0.482687 0.070257 1.484340 1.821589 -0.008066 1.152889 4.303977 2.962385 -0.581070 -0.874081 -4.177034 2.462895 -3.429096 -3.265769 0.280838 0.929845 -2.721674 -1.198109 -0.118768 3.349941 2.378387 -1.851807 -1.985420 1.621065 +PE-benchmarks/dfa-based-division.cpp__isDivisibleUtil(int, int*, int (*) [2]) = -0.558674 -0.026301 0.140444 -1.142621 1.102905 1.005740 0.474393 -1.007215 -1.202472 -0.931944 0.366958 -1.731026 -1.418480 1.659569 -0.541849 1.059689 2.162796 -0.006823 -0.452392 -0.826637 1.131143 -0.118832 2.555917 2.528892 -1.833745 0.196534 0.536270 0.904803 0.444464 0.372169 0.222401 -1.221457 0.571871 -1.285295 0.093906 -0.648401 -0.496672 0.032868 0.966517 -2.721899 -0.233714 0.329831 -0.685417 0.031371 0.096579 0.627883 1.915689 1.320636 -0.291496 1.268009 1.183797 0.201569 0.631117 0.143498 0.252431 -0.005981 0.465862 -0.095430 -0.285130 -0.076103 -0.355564 -0.668963 -0.024119 1.787782 1.861187 -0.011852 -0.835386 0.638346 0.294648 0.337754 0.361942 1.385088 0.078282 0.881346 1.264279 -1.880564 0.136189 -3.009099 0.163086 -2.810414 -1.530637 -0.339092 1.161756 0.448217 0.987532 0.094002 2.452751 -0.004524 -0.318939 1.582428 2.239826 -1.438681 -0.413406 -0.448817 -0.712575 0.244082 -0.848472 0.367604 0.172144 0.611577 -1.535957 -1.064664 0.674368 0.162304 -1.073477 -1.012840 -0.098573 1.406284 -1.579788 -0.906179 -1.211801 0.781182 -0.196407 -2.773024 -1.139594 -0.704004 1.312477 0.400966 -0.968637 -1.497159 0.646428 0.660470 -0.371331 -0.762904 0.118137 1.156528 1.362255 0.263609 0.093600 0.840258 0.739112 2.689108 1.015848 -0.693273 -0.125415 0.365120 -0.431923 0.584254 -0.556694 -0.256007 0.237290 -1.407959 0.513307 1.110088 -0.929881 -0.613429 0.932363 -0.442962 0.050971 5.283963 -0.351502 1.636634 1.491242 -1.617636 -0.063675 -0.830524 -0.072194 0.636454 0.931488 1.002474 -2.140407 -1.178013 1.378349 2.377937 0.861457 -1.907079 -0.426431 0.451372 0.282899 -0.448838 0.832717 0.293090 0.502381 -0.936487 -0.293909 1.252887 3.127546 -0.994495 -0.743603 0.383571 0.703978 -0.076379 -1.686277 -0.269858 -1.156719 -0.088334 0.919164 0.482363 0.498529 1.922423 -2.924282 1.416471 -0.237496 -0.091069 1.230541 0.866411 -1.279213 -1.565604 -0.159464 0.991281 1.329354 -0.045437 0.140933 0.055997 -1.880078 0.001073 0.500259 0.445101 -1.143174 1.572083 0.294108 -1.062405 -0.870468 -0.012159 -0.229503 -0.567978 -0.493891 1.214731 0.231340 -2.664929 1.621702 0.243117 -0.995623 0.218568 -0.435284 1.997772 -1.525096 -1.720822 1.200715 -0.970277 -1.115050 -0.512479 -0.408784 0.577638 0.768794 0.470678 -1.540107 -1.255343 1.458265 -0.315690 1.801432 1.049540 0.034652 1.766400 -0.992361 -0.951067 -1.017760 -0.999388 0.965657 0.097044 -1.148717 -0.895880 -0.487721 1.189689 1.854981 -0.094011 -1.010263 -0.279802 1.625962 -1.841017 -0.256786 0.655463 1.555296 -1.261652 0.855337 0.872260 -1.242825 0.159478 -1.162565 -0.239792 -0.964542 -1.158831 1.141883 -0.714676 0.422494 0.526482 -0.270437 -0.200118 0.793568 0.383020 0.274174 0.211070 1.685354 2.384846 -0.958996 -0.343229 -2.022356 1.107381 -2.016272 -1.928046 0.433704 0.175412 -0.746730 -0.530717 -0.277514 1.412486 1.056578 -1.067448 -0.904418 0.532116 +PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -0.294063 -0.006347 0.355850 -0.488078 0.713894 0.340613 0.394793 -0.160739 -0.807093 -0.732661 0.239626 -1.272146 -1.250970 1.172300 -0.310464 0.341139 1.618488 0.196746 -0.162980 -0.709703 0.547662 -0.505611 1.810174 1.828292 -1.318093 0.174568 0.294648 0.703822 0.323811 0.194116 0.195758 -0.815822 0.568044 -0.640368 0.294089 -0.477856 -0.225101 -0.123684 0.088813 -2.098240 -0.230115 0.268003 -0.367492 0.108277 0.076113 1.311468 1.402548 0.958290 -0.241985 1.126281 0.699504 -0.338777 0.516728 0.149471 0.229628 -0.301144 0.252036 -0.017010 -0.610984 0.164564 -0.227809 -1.251254 -0.217174 1.121989 1.476426 -0.160478 -0.468641 0.251091 -0.020462 0.326692 0.250935 0.856566 0.505247 0.447721 1.056344 -1.138413 -0.153257 -2.217787 -0.148635 -3.238023 -1.194170 -0.501865 1.445904 -0.020911 0.307809 -0.000449 1.736118 0.224228 -0.136883 1.134282 1.658324 -0.985949 -0.483237 -0.332595 -0.218399 0.379709 -0.663000 0.422369 0.653009 0.344300 -1.115525 -0.570227 0.636918 -0.163457 -0.672569 -0.486114 -0.245904 1.060233 -1.422514 -0.459146 -1.308334 0.191707 0.239127 -1.909443 -0.201823 -0.101254 1.292243 0.646363 -0.612520 -0.498059 0.448180 0.299758 -0.220497 -0.297544 -0.311927 1.029190 0.623259 0.237092 0.328536 0.934654 0.514687 1.471769 1.015499 -0.372228 -0.208198 0.396164 -0.422753 0.428496 -0.419995 -0.264887 0.591950 -1.035909 0.498590 0.270319 -0.742288 -0.724525 0.365344 -0.166483 0.233407 2.895880 -0.154580 1.148632 0.803094 -1.041661 0.378084 -0.723219 -0.018189 0.510721 0.981588 0.590056 -1.076789 -0.795007 0.785982 1.697775 0.633444 -1.623528 -0.156855 0.200699 0.273003 -0.415560 0.650952 0.379362 0.309708 -0.450064 -0.040221 0.812402 2.004420 -0.793507 -0.948765 0.101663 0.282874 0.225838 -1.288845 -0.039170 -0.135423 -0.096757 0.442918 0.298867 0.351920 1.332859 -2.435939 1.062710 -0.155203 -0.013869 0.875075 0.486439 -0.799277 -1.576652 0.011489 0.750549 1.085937 0.370227 -0.202540 0.055056 -1.344610 -0.015422 0.372646 0.420689 -0.644276 1.168797 -0.127221 -0.637565 -0.681785 -0.423834 -0.091136 -0.035927 -0.348066 0.781180 0.201049 -2.603123 1.071560 -0.163809 -0.877497 -0.080113 -0.277362 1.113624 -1.160943 -1.393686 0.520975 -0.802605 -1.446604 -0.753610 -0.431953 0.296756 0.256850 0.009270 -0.662862 -1.004377 1.503419 -0.317248 1.163580 0.753240 -0.017564 1.787296 -0.259660 -1.093170 -0.590001 -0.661809 0.684112 -0.585492 -0.597231 -0.126407 -0.399234 0.773587 1.426615 0.017958 -0.416609 -0.148287 1.231189 -1.456791 -0.655835 0.731305 0.982538 -0.364692 1.150809 0.871892 -1.087673 -0.007860 -0.969256 -0.428915 -0.406574 -0.785582 0.689896 -0.839476 0.214233 0.384292 -0.118445 -0.232467 0.663232 0.039400 0.148585 -0.089954 1.473966 2.225676 -1.149020 0.180516 -1.358787 0.887003 -1.443104 -1.218471 0.144897 0.462306 -0.256755 -0.188263 -0.017501 0.585803 0.582117 -1.279989 -0.886113 0.450882 +PE-benchmarks/dfa-based-division.cpp__main = -0.363151 -0.440949 0.149871 -0.584228 0.573652 0.009593 0.415479 -0.040553 -1.144656 -0.870329 0.408884 -1.410608 -0.982843 1.264763 -0.219453 0.670219 1.599265 0.345041 -0.218708 -0.479560 0.686305 -0.858543 1.509146 1.731660 -1.092327 0.145953 -0.112196 0.568216 0.168917 0.411976 0.369411 -1.027401 0.427192 -0.689805 0.427544 -0.650056 -0.247405 0.484042 0.396514 -2.064292 -0.096343 1.001320 0.346849 -0.009342 0.115650 0.867231 0.994338 0.933813 -0.353950 1.240802 0.740437 -0.464219 0.633770 0.129793 0.306290 -0.109243 0.039126 -0.097147 -0.646066 0.263306 -0.339289 -1.082850 0.023097 0.974660 1.470618 -0.342000 -0.498492 0.126649 0.060170 0.417994 0.516359 0.778448 0.315902 -0.120064 0.982564 -1.025683 -0.229394 -2.424304 0.131217 -3.238287 -1.129734 -0.107626 1.671124 0.630649 0.295608 -0.413894 1.649623 -0.148445 -0.444714 1.056294 1.442723 -0.744400 -0.509440 -0.402776 -0.362133 0.351763 -0.674272 -0.037904 0.779303 0.370599 -1.088167 -0.490888 0.626432 -0.069736 -0.601077 -0.501147 -0.194099 1.098424 -1.344006 -0.694995 -1.063956 0.574485 0.313153 -1.713006 0.219024 -0.390872 0.153173 0.658124 -0.857827 -0.356243 0.552446 -0.038628 -0.406441 -0.231242 -0.797397 1.201821 0.301581 0.374438 0.240240 0.749188 0.311558 1.194302 0.665883 -0.647150 -0.037671 0.459297 -0.296028 0.655309 -0.606656 -0.553370 0.768402 -1.003016 -0.014878 -0.129961 -0.769141 -0.468958 0.249024 -0.012027 0.004233 2.620910 -0.155594 1.272963 0.941974 -0.836578 1.070455 -0.264326 0.219595 0.498114 1.055316 0.403484 -0.929591 -0.852359 0.841384 1.642880 0.694342 -1.293767 -0.596938 0.315884 0.476646 -0.089478 0.659785 0.309737 0.373745 -0.692405 -0.046090 0.484020 1.939665 -0.597932 -0.525921 0.082010 0.684266 -0.081613 -1.543265 -0.083536 -0.933990 -0.088002 0.056685 0.222878 0.409015 1.356087 -2.404103 1.163575 -0.245482 0.087101 0.953141 0.302713 -0.857492 -2.478588 -0.285788 0.438431 1.260509 0.210529 0.166626 0.297067 -1.330552 0.024238 0.091153 0.284899 -0.694965 1.150804 -0.496098 -0.427658 -0.464201 -0.334948 -0.449021 -0.383399 -0.303762 0.846358 1.075886 -1.718555 0.814735 -0.094167 -0.747475 -0.034924 0.146958 0.997557 -1.030873 -1.230758 0.507150 -0.757062 -1.354500 -0.803647 -0.385265 0.272408 0.023018 -0.512411 -0.335883 -1.080731 1.471288 -0.461826 1.314978 0.686275 -0.392295 1.293770 0.734620 -0.894795 -0.453938 -0.515991 0.196834 -0.815957 -0.415538 -0.527815 -0.369773 0.771467 1.135083 0.296179 -0.417283 -0.201708 1.347942 -1.007092 -0.447009 0.796638 0.078654 -0.244774 1.008768 0.929362 -1.218606 0.169859 -1.149873 -0.042377 -0.424354 -0.477504 0.811626 -0.554339 0.232094 0.061857 -0.146208 -0.180118 0.487498 0.412844 -0.214984 -0.155208 1.731273 1.481509 -0.748865 0.195282 -1.291455 0.652077 -1.283837 -0.941107 -0.138641 0.710134 -0.768717 -0.121392 0.243488 0.691022 0.649661 -0.850007 -0.909100 0.491979 +PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -9.529143 -9.777799 -5.061269 -13.293897 7.947153 17.994664 4.974516 -18.016615 -16.582688 -1.174942 9.584958 -25.821231 -8.808004 19.049238 -8.400705 16.755411 21.202937 -1.230434 -12.221560 -6.053469 14.461429 6.203727 28.082372 28.701801 -14.989437 -1.110671 -3.113714 8.034696 5.508373 -4.798878 7.563742 -8.028725 5.912837 -16.857708 -3.461238 -2.864223 -4.830673 6.699503 19.009729 -25.829886 -1.816029 5.782283 1.830427 0.084195 0.306161 3.363695 13.008168 15.554122 4.476192 13.271353 10.605342 -0.838478 9.817186 0.402395 5.524383 -1.325451 4.385471 -4.463506 -0.990103 -6.424029 -5.119831 3.012763 0.898135 20.328736 21.771007 2.557653 -10.800184 6.479438 7.682766 5.383574 6.550061 16.431975 -5.997826 9.468536 8.527420 -20.944215 5.378025 -23.105282 4.725067 -16.665638 -11.901280 6.516122 11.083588 9.324463 11.861671 0.645912 27.901047 -2.061902 -14.388761 18.077927 20.684242 -15.618198 -3.752570 -0.745064 -8.263560 -1.507982 -6.851237 9.578307 2.760062 13.951756 -17.012260 -6.364805 -0.712626 3.054635 -10.279123 -8.628696 1.164513 12.443929 -11.542932 -10.863711 -0.187560 15.797212 -2.411502 -30.267622 -14.019544 -13.610294 2.964960 1.674200 -15.328426 -15.176293 7.866273 1.676825 -3.431402 -6.523122 -3.025122 7.206716 14.777119 5.313148 -4.148147 13.494436 5.459162 30.597276 -2.179514 -10.429114 3.767347 2.994037 -0.129573 12.039419 -4.810135 -3.625974 0.619174 -16.805258 3.840771 10.890814 -8.880484 -5.136093 1.277722 3.024898 -4.740559 58.767430 -4.440754 23.692088 20.960982 -15.281252 2.871533 -11.062764 6.446459 6.403352 7.663853 6.879084 -26.434280 -15.630224 19.213253 27.847992 9.223406 -18.095376 2.118864 10.097502 2.014973 -6.947077 10.215919 2.777475 0.865083 -7.652500 -1.932916 13.871184 33.776319 -10.532365 0.902899 4.485623 7.479021 1.797423 -13.318872 -4.075677 -12.749853 -0.096696 10.886793 9.109697 8.238628 20.071274 -19.132685 15.853759 1.122570 3.556237 17.474239 8.777931 -18.157299 -11.899696 -8.135821 6.477005 11.880213 -5.079830 -4.318832 4.158147 -21.976020 1.287542 7.130916 1.088337 -12.653618 18.620646 1.679957 -6.573149 -5.456587 5.594979 -5.032150 -5.444016 -7.004616 16.467213 -2.244996 -16.243662 13.949662 6.634322 -9.818819 0.707870 -7.829793 18.937252 -13.220828 -14.332655 11.786450 -9.140266 -9.468642 -4.698981 -4.554908 4.815591 10.622976 10.013805 -20.604497 -10.674824 18.331027 -6.980689 23.728680 9.650195 -5.403155 7.736642 -12.544462 -10.395880 -8.987577 -16.288880 2.732857 8.068628 -14.885022 -7.546281 -4.039996 15.263772 11.699679 -0.863028 -16.069267 -0.142811 16.935472 -14.911030 -1.287624 3.816177 6.187007 -17.511119 5.122654 7.535621 -12.618747 9.298029 -10.883719 -4.402047 -16.236571 -10.316250 16.167523 0.177427 8.581597 -3.722778 -2.093639 4.241718 7.668710 8.801286 3.279981 10.394225 23.171618 9.055122 0.923770 -5.378599 -25.228145 14.076545 -18.266099 -18.746115 6.366931 3.669158 -11.583333 -6.576569 -2.621228 17.669568 14.101763 -15.506627 -11.461768 10.437509 +PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -0.672422 0.153534 0.600825 -1.665654 1.042792 1.458561 0.438531 -0.966075 -1.479175 -1.820389 0.831065 -3.341634 -2.573552 2.221558 -1.173656 0.299875 2.778690 -0.485475 -0.797467 -1.258600 1.254447 0.569186 3.550082 3.621277 -3.084395 0.090168 0.614007 1.429442 1.482051 -0.092032 1.500323 -2.145521 0.604255 -0.347301 0.789063 -0.236340 -0.405789 -0.460725 0.289801 -3.803714 -0.545111 1.365185 -0.670008 0.183062 0.463026 1.827795 2.937440 1.998453 -0.711041 1.477150 2.085066 0.542459 0.877431 -0.130188 -0.011574 -1.750010 0.652998 -0.837706 -0.407969 -0.183826 -0.210099 -1.209480 -0.589024 2.974885 3.115025 -0.145337 -0.981058 0.269897 0.601659 0.801059 0.312244 2.111840 0.874690 1.890463 1.914083 -1.575362 0.109573 -4.098238 0.635662 -5.275500 -2.053684 -0.591933 2.565336 1.424396 0.200293 -0.653871 3.677824 0.456647 -0.651721 2.989880 3.352646 -1.121825 -0.552529 -0.817576 -1.172918 0.903906 -1.441313 1.372116 -0.102117 1.494533 -2.146901 -0.773688 -0.162040 -0.414845 -1.578826 -0.481441 -0.461839 1.545217 -2.628198 -0.031786 -1.534042 1.188434 0.997825 -4.385265 -1.871038 -1.125431 1.622573 0.497982 -1.177179 -0.661387 0.545000 0.197219 -0.471748 -0.078479 -1.822057 1.763800 1.896258 0.753070 0.038069 1.827235 1.571043 2.655999 0.675167 -0.937636 -0.354174 0.335978 -0.259907 0.791042 -0.808208 0.127595 1.435907 -1.527923 0.727708 0.971866 -1.183637 -1.896861 -0.551624 -1.127835 0.269937 7.450080 -0.450183 2.592695 2.029995 -2.031717 0.131534 -1.157368 -0.270663 0.895206 1.276056 1.767869 -1.948869 -1.586031 2.182147 3.625413 1.023558 -2.392149 0.989684 1.519497 0.039520 -1.492813 1.587156 0.403819 0.134813 -1.047206 -0.374701 2.413771 3.413362 -0.728907 -1.304101 0.007750 1.801831 0.707202 -0.824163 0.246853 -0.121566 0.136481 1.911044 0.794943 1.355199 2.676890 -4.625527 1.970545 1.141561 0.428074 1.382580 0.672699 -1.976151 -2.322571 0.432573 1.594392 1.414542 0.001777 -0.064035 -0.000311 -2.868873 0.067731 1.017591 0.631414 -1.711816 2.309745 0.213800 -0.840832 -1.673424 -0.758577 -0.677565 0.229242 -1.510150 1.699992 0.052639 -4.207651 2.591392 -0.170642 -1.517109 -1.175801 -1.637104 2.281314 -2.693831 -2.381390 0.859738 -1.876254 -3.105431 -1.156685 -1.014270 0.523583 0.875533 1.129217 -2.266384 -1.844742 2.926699 -0.703416 2.520126 1.505286 0.137916 2.641544 -0.873507 -1.048431 -1.297237 -1.934490 2.100650 0.079937 -1.892113 0.061638 -0.727350 1.260105 2.490856 -1.118676 -1.586949 -0.133317 1.829207 -2.103546 -1.201432 0.449123 1.230337 -1.552271 1.830245 0.927178 -1.638944 0.541217 -2.583443 -0.638953 -1.429041 -1.907174 1.596762 -0.987303 0.669354 1.002153 -0.406815 -0.717825 1.253575 0.350614 -0.178449 0.668745 2.661740 3.309960 -1.384709 0.427683 -3.498474 1.976786 -3.106816 -3.025879 0.656225 -0.504538 -0.261144 -0.857598 -0.945550 1.558993 1.693035 -1.732058 -1.729557 1.920344 +PE-benchmarks/word-wrap.cpp__main = 0.008311 0.235284 0.419628 -0.120056 0.570190 0.108257 0.307409 0.362499 -0.593541 -0.582022 -0.040533 -0.816026 -0.910711 0.791835 0.030811 0.119323 1.165555 0.328805 0.024149 -0.266118 0.099627 -0.551814 0.997945 1.053967 -0.718973 0.352935 -0.018479 0.180545 -0.207409 0.774684 -0.254895 -0.923443 0.383555 -0.128578 0.323256 -0.422265 -0.313908 -0.158026 -0.228736 -1.543929 -0.068978 0.741350 -0.008880 -0.055415 0.168908 0.769342 1.143131 0.490002 -0.111017 0.744915 0.146080 -0.310667 0.428222 0.136730 0.402813 0.119127 0.300643 -0.095927 -0.720531 0.316130 -0.229175 -1.084410 -0.316736 0.494654 0.777325 -0.206924 -0.347918 -0.119933 -0.235421 0.150541 0.105542 0.430828 0.620734 0.065233 0.623971 -0.157879 -0.158899 -0.944398 -0.117166 -2.279822 -0.906847 -0.468418 1.205434 0.359776 0.124397 -0.451202 1.049001 -0.203359 0.156428 0.342607 1.143637 -0.654887 -0.384995 -0.288776 0.016819 0.246674 -0.354784 -0.164373 0.512919 -0.282039 -0.753184 -0.401144 0.720671 -0.139377 -0.399720 0.018016 -0.160020 0.764174 -1.092620 -0.320349 -1.186483 -0.041469 0.228421 -1.004074 0.124928 0.305731 0.230474 0.710030 -0.489320 -0.319308 0.477917 0.154766 -0.313390 -0.218600 -0.473723 1.017875 0.032287 0.081503 0.425345 0.464121 0.367345 0.673479 0.872867 -0.205906 -0.038686 0.322102 -0.193486 0.187208 -0.171244 -0.344308 0.071836 -0.641167 0.102504 -0.039980 -0.584599 -0.069195 -0.345901 -0.052070 0.178306 1.243354 -0.264002 0.642529 0.191299 -0.722333 0.723963 -0.243816 -0.254505 0.076320 0.771077 0.537174 -0.395758 -0.392268 0.416997 1.050640 0.465291 -0.888235 -0.030504 -0.088492 0.249376 -0.064074 0.558088 0.212470 0.544006 -0.509269 -0.055540 0.196354 1.496249 -0.518541 -1.005638 0.066300 -0.049338 0.236271 -0.802540 0.039794 -0.144461 -0.112310 -0.005638 -0.084787 0.184180 0.855035 -1.588896 0.866070 -0.403962 -0.467072 0.779854 0.111420 -0.274062 -1.013235 -0.117915 0.560425 1.044218 0.495570 -0.124994 -0.153759 -0.776965 -0.110240 0.048230 0.330091 -0.395433 0.734748 -0.204933 -0.596593 -0.325551 -0.737716 0.018096 -0.185294 -0.363696 0.352531 0.675339 -1.687007 0.701018 0.037419 -0.448828 -0.039986 0.208446 0.381590 -0.613632 -0.977380 0.197211 -0.532842 -1.123450 -0.358172 -0.408770 0.150545 0.090993 -0.333993 -0.131001 -0.832216 1.128048 0.033979 0.801068 0.552104 -0.022853 1.173063 0.860345 -0.789096 -0.097082 -0.457613 0.431379 -0.871314 -0.058251 -0.020204 -0.498105 0.471013 0.986708 0.219480 -0.048855 -0.587354 0.821366 -0.721030 -0.278041 0.746935 0.101107 0.032464 0.689966 0.826035 -0.630593 -0.193407 -0.685940 -0.191805 -0.199081 -0.329083 0.238224 -0.773583 -0.082099 0.407026 -0.248268 -0.446262 0.240589 -0.142145 -0.284532 -0.337333 1.002318 1.167098 -0.931959 0.599806 -0.595145 0.554181 -0.851666 -0.508613 -0.128203 0.378988 -0.426083 -0.139769 0.208355 0.123971 0.150151 -0.665495 -0.557078 0.113093 +PE-benchmarks/tower-of-hanoi.cpp__towerOfHanoi(int, char, char, char) = -0.582611 -0.173566 1.074773 -1.645105 0.860733 0.219527 0.432837 -0.150221 -1.519640 -2.633737 1.009882 -3.419886 -3.214831 2.171403 -1.231110 -0.552854 2.806940 -0.447311 -0.300623 -1.907270 0.783180 0.201879 3.413250 3.824306 -3.464554 -0.000778 0.620693 1.570827 1.921344 -0.541978 2.268378 -2.608248 0.467048 0.615141 1.607182 -0.134774 -0.349362 -0.458448 -0.483598 -4.041827 -0.737494 1.856497 -0.674567 0.479001 0.908790 3.441914 2.775712 1.996731 -1.413194 2.147080 2.601322 0.358622 0.956780 -0.324672 -0.515087 -2.876621 0.358332 -0.685066 -0.596744 0.574716 -0.124476 -1.760162 -0.800532 2.941637 3.451634 -0.655295 -0.991628 -0.374948 0.861063 1.139471 0.457123 2.198277 1.866607 1.630415 2.479094 -1.059911 -0.674628 -5.878051 0.938550 -7.677557 -2.391992 -0.760160 3.975212 1.255141 -0.936669 -1.268113 3.730924 1.145901 -0.647688 3.427777 3.321666 -0.211429 -0.694677 -0.820475 -1.199243 1.396197 -1.668405 1.577954 0.380808 1.872583 -2.150395 -0.475086 -0.275174 -1.261074 -1.561827 -0.255287 -0.758297 1.670239 -2.830318 0.772390 -2.221312 1.440944 2.152326 -4.435654 -1.119478 -1.133473 1.979251 0.856663 -1.200661 0.915412 0.407883 -0.628859 -0.790084 0.862674 -2.835343 2.352283 1.814178 0.926809 0.135868 2.260217 1.617070 1.582588 0.688497 -1.126109 -0.716042 0.672190 -0.346750 0.838732 -1.308173 0.316591 2.958154 -1.069757 1.193774 -0.279738 -1.217933 -2.852491 -0.532420 -1.582637 0.318769 6.519463 -0.348484 2.640059 2.031946 -1.465249 0.505658 -0.857018 0.017779 1.212924 1.787449 1.600709 -0.737921 -1.397234 2.065392 3.723154 0.930431 -2.739118 0.781423 2.028473 0.167826 -1.851686 1.950502 0.545270 0.038361 -0.738185 -0.194696 2.402452 2.594597 -0.249796 -1.738020 -0.812854 2.973213 1.157351 -0.537218 0.754878 0.364556 0.148495 2.060480 1.071553 1.483438 2.601880 -6.487734 1.858843 1.819587 1.149414 0.880576 0.725077 -2.060848 -3.962482 0.855460 1.283855 1.475963 0.600760 0.200861 0.282541 -2.894941 0.255410 0.907770 0.777758 -1.809326 2.338995 -0.304885 -0.311782 -1.650219 -1.498864 -1.040656 0.727956 -1.719009 1.656544 0.891869 -5.344897 2.282157 -0.857807 -1.846769 -1.979718 -1.744576 2.395370 -2.925853 -2.230034 0.304196 -2.454028 -4.329315 -2.065317 -1.292147 0.165478 -0.018902 1.236828 -1.711715 -1.994147 3.607232 -1.057298 2.571421 1.540282 -0.239444 3.455237 -0.301842 -1.153678 -1.108919 -1.877123 3.096034 -0.556186 -1.656691 0.993384 -0.564640 0.616315 2.536212 -1.334050 -1.420568 -0.124719 1.835171 -2.170395 -1.613913 0.387178 1.102529 -0.519276 3.072226 0.875983 -2.080961 0.705410 -3.326893 -0.608078 -1.070161 -1.687658 1.685512 -1.250916 0.558667 0.816400 -0.250673 -1.048915 1.362593 0.255205 -0.651913 0.361471 2.851483 4.778833 -1.983579 1.013576 -3.747407 2.122725 -3.079741 -3.042119 0.136915 -0.884988 0.043354 -0.679250 -1.334377 1.174842 1.850528 -1.944888 -2.501684 2.823325 +PE-benchmarks/tower-of-hanoi.cpp__main = -0.006124 0.041610 0.227440 -0.125614 0.309792 -0.126401 0.179300 0.193190 -0.432051 -0.341610 -0.015632 -0.387309 -0.363849 0.473190 0.019132 0.124027 0.686459 0.272527 0.012883 -0.199114 0.087762 -0.493796 0.509268 0.566602 -0.321631 0.198030 -0.027082 0.088313 -0.124534 0.485133 -0.185527 -0.452840 0.206145 -0.152211 0.174096 -0.348781 -0.176423 0.042989 -0.088117 -0.844474 0.031327 0.315431 0.121574 -0.053776 0.049991 0.476421 0.540377 0.252272 -0.033468 0.469446 0.084405 -0.172946 0.197148 0.104127 0.304918 0.208110 0.216072 -0.051372 -0.409578 0.214013 -0.164681 -0.606369 -0.080824 0.231361 0.383818 -0.128776 -0.171178 -0.052153 -0.136383 0.096461 0.148711 0.159276 0.239432 -0.113617 0.276684 -0.278024 -0.068161 -0.648020 -0.097840 -1.462811 -0.455980 -0.187059 0.679208 0.090623 0.062745 -0.099604 0.520731 -0.159463 0.063880 0.144655 0.564394 -0.348812 -0.237499 -0.103386 -0.011037 0.095375 -0.148026 -0.196094 0.356578 -0.106989 -0.391190 -0.184149 0.504802 -0.042471 -0.173243 -0.015078 -0.037488 0.441624 -0.693737 -0.227168 -0.603906 0.021311 0.102967 -0.458280 0.270479 0.097975 0.221457 0.360431 -0.332034 -0.197258 0.305410 0.120220 -0.216955 -0.079070 -0.276603 0.521739 -0.101564 0.081836 0.195552 0.171513 0.109127 0.352402 0.513967 -0.184302 0.028081 0.206151 -0.140427 0.091505 -0.112780 -0.301225 0.062293 -0.386404 0.074931 -0.105734 -0.343152 -0.043651 0.000994 0.043099 0.087944 0.536416 -0.165775 0.361995 0.093374 -0.369475 0.350683 -0.102960 -0.062118 0.032962 0.470570 0.194641 -0.144402 -0.247557 0.199743 0.524359 0.295762 -0.476071 -0.195583 -0.132745 0.127522 0.168919 0.230723 0.073851 0.248977 -0.309543 -0.053896 -0.049088 0.867635 -0.227173 -0.388275 0.023522 -0.094126 0.021043 -0.550922 0.001954 -0.150166 0.002328 -0.137066 -0.095676 0.098941 0.474496 -1.007340 0.515060 -0.395487 -0.237906 0.376801 0.087616 -0.110313 -0.800744 -0.193372 0.252510 0.680653 0.232925 0.001979 0.011486 -0.388320 -0.073347 -0.061824 0.190323 -0.214835 0.342323 -0.072944 -0.384217 -0.102907 -0.289971 0.046524 -0.086939 -0.081692 0.178090 0.408413 -0.963874 0.332436 0.005756 -0.178839 0.055573 0.277198 0.194364 -0.279839 -0.487099 0.102347 -0.217889 -0.525306 -0.216101 -0.198446 0.136466 -0.097754 -0.267569 0.034530 -0.419610 0.552709 -0.053229 0.439097 0.270408 -0.085019 0.650922 0.427956 -0.367379 -0.048115 -0.094394 0.046078 -0.611571 0.059382 0.061874 -0.249800 0.276474 0.484498 0.225144 0.011077 -0.157177 0.514606 -0.368254 -0.107974 0.448953 0.054740 0.043425 0.437940 0.495436 -0.432776 -0.123148 -0.331866 -0.107198 -0.065341 -0.090042 0.163279 -0.357527 -0.025624 0.123187 -0.059705 -0.223919 0.131210 -0.055072 -0.134505 -0.185690 0.578227 0.699961 -0.456256 0.288856 -0.243828 0.225054 -0.411633 -0.219333 -0.150363 0.387465 -0.314110 -0.011391 0.100559 0.124682 0.055752 -0.291239 -0.249582 0.045416 +PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.444021 -0.475063 -0.154973 -0.409908 0.416443 0.173706 0.221706 -0.364058 -0.810828 -0.520716 0.245428 -0.825332 -0.422339 0.796596 -0.232319 0.710890 1.001177 0.221964 -0.130314 -0.377823 0.616259 -0.636158 0.960655 1.197293 -0.589644 0.017499 0.064593 0.265237 -0.037467 0.216664 0.236887 -0.814100 0.273647 -0.712711 0.232186 -0.522469 -0.298533 0.654921 0.708188 -1.308959 -0.109851 0.468470 0.121735 0.088541 0.067689 0.269312 0.458761 0.495058 -0.103197 1.046004 0.462211 -0.091999 0.438165 0.014614 0.283109 0.265638 -0.033724 -0.110837 -0.160635 0.139906 -0.441593 -0.251131 0.184635 0.614977 0.876181 -0.270718 -0.440832 0.146705 0.006496 0.250429 0.333354 0.675994 -0.045885 -0.120240 0.545742 -1.141874 -0.158885 -1.880101 0.206823 -1.826290 -0.620873 0.139613 0.629687 0.418478 0.400586 -0.026238 1.284259 -0.289169 -0.527458 0.672104 0.849720 -0.586988 -0.150350 -0.045941 -0.314566 -0.146666 -0.262188 -0.052188 0.283903 0.365651 -0.661683 -0.587765 0.402101 -0.017042 -0.374522 -0.668523 -0.163664 0.715096 -0.886234 -0.668636 -0.601809 0.575586 -0.023871 -1.015793 0.056192 -0.477430 0.039082 0.371887 -0.814628 -0.552231 0.518636 0.079957 -0.233291 -0.300810 0.017472 0.606571 0.378891 0.155060 -0.045485 0.431272 0.003041 1.111993 0.369873 -0.487082 0.019604 0.412133 -0.114463 0.431300 -0.397508 -0.273580 0.305535 -0.649933 -0.014442 0.043414 -0.469827 -0.246603 0.558160 -0.168697 -0.207404 2.063006 -0.290608 0.852617 0.722784 -0.574930 0.587916 -0.218823 0.358629 0.345206 0.729016 0.322802 -0.925559 -0.637422 0.743754 1.111866 0.396593 -0.810155 -0.696524 0.276635 0.416026 0.084423 0.450320 0.099404 0.143926 -0.410219 -0.007461 0.063089 1.532035 -0.493409 0.073686 0.054527 0.584000 -0.166782 -1.141087 -0.133330 -1.164199 -0.139469 0.200891 0.208184 0.184776 0.893401 -1.575240 0.698983 -0.403394 0.081795 0.519618 0.412328 -0.469770 -1.718893 -0.401149 0.165619 0.794213 -0.022075 0.469731 0.213278 -0.899795 0.113394 0.031249 0.281121 -0.710202 0.901342 -0.234655 -0.465200 -0.091046 0.211526 -0.385730 -0.565324 -0.125392 0.585409 0.720484 -1.041489 0.432646 0.173081 -0.320716 0.233241 0.299719 0.932985 -0.474506 -0.776922 0.564019 -0.425537 -0.444811 -0.247642 -0.280840 0.220668 0.023278 -0.279493 -0.372627 -0.706357 0.797329 -0.257545 0.996854 0.393511 -0.373624 0.690802 -0.143506 -0.576960 -0.313678 -0.338324 0.009708 -0.303060 -0.147084 -0.710156 -0.124709 0.553787 0.664384 0.373210 -0.392462 -0.043787 0.963976 -0.748563 0.195801 0.422031 0.288876 -0.280721 0.458426 0.516336 -0.663397 0.164350 -0.667344 0.205981 -0.518623 -0.120447 0.669842 -0.335729 0.119392 -0.140375 -0.120623 -0.012529 0.329783 0.578063 -0.007310 0.027671 1.081673 0.769657 -0.187962 -0.090971 -0.778773 0.326254 -0.678328 -0.517603 -0.245235 0.629438 -0.623577 -0.240845 0.008857 0.669957 0.536773 -0.340144 -0.441294 0.217681 +PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -7.130081 -7.378170 -3.520710 -9.761177 5.486748 11.983185 3.548291 -12.634799 -12.910318 -2.341914 6.976070 -18.998179 -6.383033 14.361531 -6.128453 12.244895 16.227431 -0.388087 -8.939850 -4.799873 11.746753 3.510573 20.586670 21.199710 -11.244849 -0.830831 -2.395825 6.153954 4.762692 -3.276367 6.595611 -6.225596 4.140319 -12.843294 -2.252238 -2.932377 -3.352174 5.971353 13.822340 -19.550834 -1.108237 5.008299 2.184338 -0.301091 0.097168 1.183542 9.582774 11.526912 2.832016 9.824983 8.416747 0.048896 7.113778 0.358655 3.675152 -0.388725 2.748067 -4.536424 -0.798826 -4.440131 -3.999331 1.424440 1.298005 15.121907 16.183529 1.847934 -7.847865 5.104499 5.532050 4.252896 5.475787 11.956887 -4.307556 6.035879 6.930947 -16.407599 3.132964 -18.942252 3.687561 -13.472018 -8.846204 4.605812 8.660040 7.822257 8.699422 1.395067 20.652952 -2.853152 -10.485763 14.572755 15.340650 -11.177624 -2.826710 -1.303734 -6.780102 -0.723754 -5.516164 6.245170 0.574244 10.910002 -12.523609 -5.861295 0.007605 2.491105 -7.626997 -7.046663 0.717496 9.521967 -9.620758 -8.560690 -0.686001 12.152772 -1.614348 -21.610907 -10.249472 -10.778058 2.143474 1.634387 -11.474641 -11.325777 5.985553 1.337655 -2.645764 -5.147796 -2.441225 5.088576 10.086995 4.082781 -3.293668 9.436414 3.740984 22.338119 -0.859101 -7.991206 2.857832 2.545435 -0.164650 8.685774 -4.119163 -3.368038 1.028194 -11.839442 1.471194 7.921002 -6.805499 -5.102024 1.176344 1.419710 -3.272506 42.179651 -2.797546 16.867793 15.677191 -11.082266 2.345679 -7.663739 4.806372 4.836606 6.101347 5.493052 -19.159849 -12.048676 14.103630 20.348572 7.058020 -12.413203 0.202775 7.385842 2.185188 -3.871868 7.440068 2.040726 0.897496 -6.771788 -1.582387 9.786746 25.203702 -7.494438 1.826144 3.473166 5.602773 0.454575 -11.081036 -2.986760 -9.978728 -0.076097 8.081738 6.229208 6.033062 15.319162 -14.301457 12.070559 0.050813 3.081584 11.684845 6.308648 -13.106378 -9.780088 -6.178153 4.715893 9.493254 -3.665990 -2.116110 3.219966 -16.528096 0.931311 4.792213 1.189240 -9.463133 14.004170 0.720433 -4.958359 -4.328257 4.856928 -4.208015 -4.322612 -4.550182 12.112944 -0.349073 -10.296740 10.554175 4.349796 -6.514641 0.750406 -4.995036 14.672917 -9.754027 -10.849336 9.255649 -6.757117 -7.339047 -3.763434 -3.262787 4.189586 7.993220 6.016257 -14.532202 -8.181712 13.630209 -4.984997 17.713623 7.149790 -4.294001 5.730371 -7.900915 -6.857553 -7.019437 -10.635185 0.631456 5.321588 -10.658465 -7.786716 -2.947666 11.447027 9.097568 -0.804462 -11.933383 -0.087117 13.328559 -11.741116 -1.507430 3.098064 4.428633 -12.770774 4.536197 5.907291 -10.006232 6.520648 -8.606301 -1.892174 -11.584859 -7.420955 12.051636 -0.115473 6.210309 -2.364980 -1.542926 2.971769 5.539890 7.214122 1.886029 6.880375 17.687890 6.968992 0.926927 -3.946476 -18.517869 9.786206 -13.774994 -13.697157 4.030630 3.631708 -9.288663 -4.608368 -1.903153 13.634446 10.877429 -10.173537 -8.466137 7.446004 +PE-benchmarks/palindrome-partitioning.cpp__main = 0.065688 0.149076 0.372895 -0.140159 0.282242 -0.114566 0.152310 0.326537 -0.396610 -0.511470 0.062290 -0.749544 -0.690699 0.447105 -0.048481 -0.188539 0.610935 0.113304 -0.004537 -0.189367 -0.146565 -0.172332 0.548699 0.623946 -0.489367 0.225871 -0.241499 0.198362 -0.059970 0.435328 0.106161 -0.654373 0.085162 0.363515 0.295551 -0.053181 -0.179819 -0.154333 -0.423189 -0.904900 -0.055043 0.801291 0.179772 -0.013019 0.230993 0.571213 0.702408 0.282582 -0.072954 0.406448 0.164327 -0.120120 0.337440 0.024516 0.176785 -0.330572 0.288520 -0.350893 -0.489241 0.237453 -0.070459 -0.674278 -0.331219 0.344729 0.487211 -0.106947 -0.220986 -0.321363 -0.074913 0.182447 0.106569 0.266819 0.429400 0.149363 0.345797 0.413730 0.021397 -0.374693 0.101988 -1.422019 -0.575096 -0.233722 1.100448 0.684144 -0.259989 -0.470268 0.613803 -0.015453 0.068663 0.293379 0.683579 -0.066232 -0.248575 -0.127118 -0.071346 0.294055 -0.218624 -0.046725 0.151888 0.135197 -0.440902 0.082200 0.254417 -0.273848 -0.247152 0.379948 -0.111630 0.362060 -0.721868 0.154360 -0.613417 0.120000 0.506450 -0.619566 -0.043417 0.171106 -0.094743 0.402719 -0.283935 0.248391 0.238351 -0.222581 -0.235889 0.283328 -0.969420 0.634982 -0.083442 0.100669 0.228649 0.404929 0.332665 0.069949 0.148215 -0.161512 -0.019211 0.161654 0.045412 0.143352 -0.041538 -0.137350 0.087838 -0.256479 0.136035 -0.286796 -0.326987 -0.242867 -0.927915 -0.063967 0.074421 0.463573 -0.138411 0.447558 0.137721 -0.288769 0.411421 -0.048727 -0.158550 0.002330 0.380433 0.317815 0.320932 -0.201054 0.287070 0.647963 0.240976 -0.307450 0.325556 0.190071 0.090975 -0.113123 0.480483 0.111519 0.290069 -0.260217 -0.056376 0.190988 0.631853 0.026139 -0.637726 -0.064922 0.106770 0.320596 -0.038252 0.179188 0.241549 -0.012437 0.020315 0.008342 0.163269 0.491926 -1.050521 0.541242 0.140548 -0.096302 0.431055 -0.106692 -0.213589 -0.664665 -0.053755 0.299320 0.574327 0.286353 -0.183347 -0.089323 -0.441966 -0.069054 0.066902 0.148879 -0.263164 0.411714 -0.161991 -0.189545 -0.212611 -0.741570 -0.064259 0.190959 -0.459182 0.206908 0.523362 -0.937766 0.411624 -0.026242 -0.301133 -0.393240 0.001269 0.064591 -0.402624 -0.458944 -0.117517 -0.531881 -1.086026 -0.324462 -0.308909 -0.073213 -0.058590 -0.123596 -0.050819 -0.245415 0.852986 -0.047141 0.462494 0.346892 -0.069401 0.583590 0.916117 -0.368584 0.163319 -0.296859 0.479449 -0.631674 -0.013578 0.502413 -0.317450 0.085639 0.516644 0.010670 -0.113688 -0.306183 0.407724 -0.028541 -0.377567 0.350081 -0.472943 0.116472 0.621251 0.421464 -0.350100 0.008589 -0.648920 -0.143229 -0.130590 -0.175041 0.155927 -0.363379 -0.057206 0.273263 -0.189533 -0.436156 0.138013 -0.154093 -0.382443 -0.131916 0.678453 0.521409 -0.447496 0.665382 -0.457026 0.354838 -0.486430 -0.287411 -0.118436 0.043812 -0.195919 -0.112271 -0.071713 -0.002569 0.166238 -0.401346 -0.483656 0.416961 +PE-benchmarks/subset-sum.cpp__printSubset(int*, int) = -0.550877 -0.541584 -0.095995 -0.839893 0.608791 0.611573 0.398042 -0.524210 -1.329400 -0.714455 0.484846 -1.659098 -0.946304 1.479792 -0.440434 0.973765 1.853867 0.292700 -0.487716 -0.532618 1.065509 -0.533165 1.950750 2.188151 -1.391571 0.073593 -0.019807 0.716326 0.425391 0.321240 0.488337 -1.031517 0.477834 -1.046970 0.304164 -0.836857 -0.262696 0.645130 0.805835 -2.439047 -0.129584 0.895486 0.321343 0.016218 0.102638 0.752664 1.164829 1.179865 -0.310121 1.300018 0.971361 -0.153795 0.716831 0.098645 0.258363 -0.007797 0.095021 -0.170702 -0.388235 -0.002359 -0.344089 -0.823752 0.157710 1.397701 1.829817 -0.222588 -0.618069 0.315950 0.240750 0.422552 0.573599 1.078383 0.063888 0.164973 1.031063 -1.464008 -0.010605 -2.621174 0.296260 -3.082006 -1.096597 -0.051653 1.458248 0.773371 0.620508 -0.277964 2.127329 -0.253734 -0.626250 1.485877 1.643653 -1.058764 -0.428388 -0.456388 -0.630114 0.304188 -0.768944 0.160548 0.521317 0.668304 -1.253592 -0.790565 0.397848 0.101010 -0.827128 -0.723385 -0.199005 1.134206 -1.527869 -0.894657 -0.888534 0.817477 0.050857 -2.196457 -0.300833 -0.876030 0.261259 0.445468 -0.965727 -0.816420 0.559731 0.169708 -0.341441 -0.446314 -0.684482 1.109198 0.666844 0.323423 0.033055 0.765362 0.334275 1.805315 0.499410 -0.820046 -0.029634 0.543468 -0.326308 0.685807 -0.787161 -0.479029 0.808475 -1.298866 -0.024387 0.294237 -0.838774 -0.491700 0.469673 -0.124906 -0.016319 3.974659 -0.184602 1.550040 1.317433 -1.147457 0.864694 -0.417327 0.304402 0.714650 1.055517 0.571927 -1.610762 -1.109117 1.046750 2.034167 0.791564 -1.383137 -0.483819 0.464976 0.406034 -0.177997 0.729485 0.242786 0.159561 -0.817286 -0.114942 0.709156 2.465056 -0.693151 -0.088293 0.161369 0.874687 -0.315941 -1.577642 -0.170846 -1.248881 -0.073785 0.375104 0.337066 0.596866 1.629672 -2.418436 1.345497 -0.246478 0.166974 0.994142 0.410044 -1.075874 -2.212370 -0.302507 0.538121 1.333266 -0.091006 0.215565 0.388608 -1.704642 0.050645 0.275073 0.333304 -0.978989 1.439571 -0.187863 -0.589890 -0.585284 0.062678 -0.495685 -0.567347 -0.390358 1.096264 0.676290 -1.737581 1.056053 0.004410 -0.826218 0.098120 -0.065562 1.257610 -1.318407 -1.402667 0.809689 -0.637261 -1.145418 -0.713705 -0.417466 0.547953 0.319505 -0.219757 -0.923758 -1.351175 1.521361 -0.555112 1.552801 0.826880 -0.404264 1.207947 0.062516 -0.838037 -0.807869 -0.760598 0.103949 -0.383941 -0.695584 -0.706080 -0.405484 1.056381 1.394851 0.168311 -0.738278 0.012464 1.629315 -1.093819 -0.383198 0.650169 0.377523 -0.691830 0.864236 0.865414 -1.362465 0.266921 -1.223419 -0.008843 -0.601424 -0.684860 1.195852 -0.555592 0.459204 0.094363 -0.128492 -0.083825 0.682268 0.619551 -0.097960 0.165106 2.042357 1.309503 -0.486568 0.007338 -1.680655 0.833566 -1.607581 -1.199054 -0.065716 0.619408 -0.856308 -0.199833 0.086997 1.131649 0.934778 -0.833573 -0.874115 0.522869 +PE-benchmarks/subset-sum.cpp__comparator(void const*, void const*) = -0.232964 0.363336 0.120485 -0.150399 0.751325 0.556526 0.351523 -0.319775 -0.513774 -0.581640 0.064381 -0.943614 -0.997652 1.006037 -0.140452 0.654264 1.448745 0.115213 -0.109333 -0.519460 0.772317 -0.502733 1.629538 1.461162 -1.186314 0.259752 0.734848 0.264510 0.302151 0.269988 -0.138580 -0.764564 0.688668 -0.989319 0.197373 -0.484419 -0.198539 -0.258690 0.570831 -1.838869 -0.191179 -0.057156 -0.106613 -0.009064 -0.132998 0.657202 1.432498 0.863278 -0.317213 0.832135 0.697954 -0.183314 0.353043 0.196825 0.126111 0.144252 0.351037 0.139099 -0.465561 -0.003984 -0.172627 -0.995975 -0.139768 0.992517 1.331336 -0.157029 -0.336768 0.663213 -0.091623 0.243477 0.007604 0.771157 0.382511 0.438208 0.926021 -1.497908 -0.320012 -2.307766 -0.376858 -2.754793 -1.100458 -0.621154 0.596522 -0.326235 0.810319 0.498905 1.539962 0.064021 0.045831 0.615558 1.612803 -1.242444 -0.366223 -0.384069 -0.185986 0.309933 -0.677424 0.380404 0.596693 -0.211564 -0.992961 -1.144573 0.856737 0.154138 -0.655330 -0.793475 -0.231610 0.896141 -1.129303 -0.833873 -1.241323 -0.234687 -0.295335 -1.745461 0.033840 -0.014287 0.963794 0.677766 -0.367376 -1.175134 0.336549 0.628763 -0.193977 -0.989602 0.425748 0.804662 0.734672 0.219344 0.423588 0.449851 0.576063 1.687629 1.411948 -0.301878 -0.213411 0.168663 -0.435072 0.322939 -0.466591 -0.350889 0.288331 -1.017485 0.496775 0.766835 -0.649501 -0.472098 0.900277 -0.408585 0.286369 2.309466 -0.119640 0.888173 0.608612 -1.205302 0.426240 -0.792283 -0.352515 0.415083 0.917369 0.771667 -1.208634 -0.744994 0.686061 1.457065 0.566070 -1.457879 -0.690131 -0.033859 0.273365 -0.301095 0.462096 0.408948 0.407768 -0.634274 -0.072244 0.787711 1.969771 -1.070221 -0.794811 0.349441 0.192015 0.005963 -1.678536 -0.258472 -0.826939 -0.141001 0.406189 0.139560 0.233345 1.219695 -2.041658 0.924619 -0.425236 -0.375174 0.858958 0.522065 -0.688831 -1.097726 0.333285 0.864309 0.870551 0.224799 0.033836 -0.128425 -1.230122 -0.071198 0.194340 0.345629 -0.593044 1.040338 -0.112047 -0.773671 -0.768210 0.021703 0.123305 -0.648896 -0.059558 0.681415 0.411525 -2.126629 1.150520 -0.207919 -0.746965 0.293479 -0.295086 1.116217 -0.926910 -1.297625 0.709676 -0.584151 -0.607135 -0.446792 -0.280237 0.448993 0.485120 0.090553 -0.520199 -1.130427 0.878441 -0.077379 0.881307 0.712348 0.286272 1.404020 -0.445558 -0.955311 -0.886905 -0.194461 0.152829 -0.356816 -0.640444 -1.095141 -0.438658 0.943981 1.489678 -0.001183 -0.274839 -0.504997 0.983966 -1.841306 -0.405338 0.766218 1.256415 -0.592205 0.604039 0.818318 -0.787624 -0.225366 -0.653740 -0.131795 -0.354477 -0.872026 0.438423 -0.862527 0.054686 0.559286 -0.315869 -0.068814 0.649351 0.073296 0.268986 -0.371126 1.013274 1.742243 -1.221940 -0.122680 -1.093344 0.645702 -1.455680 -1.194337 0.370169 0.511853 -0.479044 -0.269528 0.173003 0.576979 0.217510 -0.815216 -0.616589 -0.125370 +PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -3.785327 -3.248834 -3.216493 -5.267233 3.770871 7.805847 1.856379 -6.722914 -6.857537 -1.782014 3.952285 -9.518577 -4.363213 8.077877 -3.525152 6.453171 9.283711 -0.891540 -3.911611 -3.447852 7.241742 2.821841 12.277307 12.475440 -8.171395 -0.163790 1.783930 2.199938 3.934040 -1.750180 3.617850 -5.940248 3.624503 -7.419276 -1.131134 -2.734592 -2.039143 2.274135 8.656667 -11.630304 -1.012782 1.627091 -1.651558 0.384750 0.179489 3.618018 6.330280 6.805229 -1.225975 7.457606 6.573880 1.605396 2.547143 -0.100131 0.907764 -1.019119 0.279002 0.353110 0.684218 -2.525892 -1.825697 0.807879 -0.172768 9.037407 10.098763 -0.514525 -4.297352 3.513792 2.500977 2.235073 2.476890 7.393552 0.235683 3.556855 5.669247 -9.148398 -1.011195 -14.797793 1.589648 -13.705818 -4.833550 1.761836 4.913410 0.402172 4.806893 0.676605 12.484731 -0.622049 -5.504938 10.061316 9.068745 -6.420566 -1.241426 -0.635949 -4.359527 0.323045 -3.867239 4.602643 1.309997 3.976848 -7.239279 -5.941160 -0.863182 0.895755 -5.039311 -6.366283 -0.338696 4.618726 -7.093455 -3.976082 -1.871173 5.995795 -0.898517 -13.480053 -8.013139 -6.025562 4.648844 0.668215 -5.899399 -6.404846 2.682042 1.268393 -1.661347 -4.189580 3.122100 2.679293 7.489015 3.349846 -1.258346 4.004980 2.977228 13.936454 1.473961 -4.610899 0.530572 1.235681 0.196016 4.851898 -3.518187 -0.706146 3.410250 -6.553376 3.757074 5.006894 -3.868023 -4.215891 5.806140 -1.640431 -1.677795 26.790783 -1.422601 9.880396 9.077185 -7.137920 -1.150100 -5.218056 1.921603 4.246927 4.539793 3.978666 -9.807857 -6.162013 7.938406 11.987647 3.884194 -9.485189 -0.143289 4.913960 1.387875 -3.334146 4.097678 0.624703 0.645910 -4.036884 -0.867717 6.445764 14.085469 -4.855854 0.293754 1.096449 7.347449 -0.196210 -4.872325 -1.268723 -6.614119 0.379890 7.418335 3.021621 4.248955 8.786685 -12.877509 6.003098 0.048421 1.626606 3.799740 5.967035 -7.879526 -5.393092 -1.284186 2.834798 5.079013 -1.065071 1.941081 2.151673 -9.850172 0.576914 3.020987 0.568601 -6.109084 8.374056 1.730168 -3.321764 -3.169667 3.571859 -1.882064 -2.979325 -2.250130 7.024288 -0.879180 -11.768896 6.184877 1.397321 -4.657180 -0.462737 -3.298916 9.718731 -7.005106 -7.337809 5.913158 -3.995827 -4.094782 -1.578968 -2.196479 2.953220 5.040085 5.678040 -8.433560 -7.394215 8.058694 -2.155404 9.735565 4.568909 -1.877815 5.982774 -11.031196 -3.661002 -6.443475 -6.151909 3.821093 2.909315 -6.372838 -3.810503 -1.850255 6.268985 6.263860 -1.122732 -7.023135 -0.429844 7.365611 -8.531313 0.697127 1.538894 8.943535 -6.983371 3.724819 3.104696 -5.749872 3.538201 -5.241939 -0.914038 -6.156468 -4.722470 7.480104 -0.982571 3.704138 -0.187627 -0.330966 1.068302 3.970982 3.417223 1.187998 3.401915 8.566268 8.234232 -2.314400 -2.564353 -10.821489 5.795519 -8.875637 -9.678971 2.561414 -0.596565 -4.593852 -2.904189 -2.680919 7.908089 6.060156 -4.766497 -4.812567 4.681406 +PE-benchmarks/subset-sum.cpp__generateSubsets(int*, int, int) = -1.268142 -0.919919 -0.227163 -2.173810 1.702515 1.986307 0.858262 -1.525323 -2.853186 -1.537529 1.081426 -3.680216 -2.343608 3.428707 -1.152477 1.950273 4.388568 0.257594 -1.099241 -1.588858 2.596130 -0.533291 4.824551 5.165852 -3.486807 0.138793 0.798715 1.643339 1.164728 0.213422 1.230879 -2.579955 1.088311 -2.574165 0.487093 -1.602501 -0.771003 0.809762 2.075148 -5.615090 -0.456275 1.150626 -0.501246 0.151725 0.178762 1.816533 3.087567 2.739642 -0.799340 3.038848 2.494069 0.066173 1.249934 0.082181 0.582334 -0.161475 0.244083 0.136532 -0.522610 -0.136523 -0.805169 -1.237114 0.161421 3.513292 4.182859 -0.389760 -1.609260 0.991894 0.660445 0.960384 0.967292 2.751696 0.250736 1.049696 2.603010 -3.988419 -0.434987 -6.850138 0.651328 -7.275864 -2.634581 -0.210666 2.944631 0.550672 1.466959 0.042490 5.136518 -0.347054 -1.394247 3.946692 4.056728 -2.417659 -0.852862 -0.965004 -1.651072 0.584767 -1.613156 1.000439 1.097992 1.512208 -3.007294 -2.136317 0.648121 0.133504 -2.001406 -2.154705 -0.406853 2.657703 -3.381060 -1.790244 -2.097160 2.098682 0.045464 -5.424544 -1.955978 -1.928972 2.019505 0.891586 -2.317581 -2.233904 1.280404 0.768671 -0.847040 -1.196611 0.072355 2.107775 2.295802 0.907541 -0.018324 1.924603 1.109836 4.774460 1.626083 -1.718446 -0.084852 1.086179 -0.596849 1.407078 -1.621591 -0.645795 1.618641 -2.813071 0.909305 1.330216 -1.890712 -1.811607 1.880911 -0.754787 -0.036411 10.612193 -0.640661 3.690894 3.045658 -2.879199 0.886088 -1.462165 0.490104 1.610593 2.437659 1.662416 -4.040330 -2.483291 2.742357 4.922997 1.757679 -3.903451 -0.874738 1.241311 0.569282 -0.798958 1.743437 0.453125 0.311612 -1.562562 -0.330602 2.199707 5.876373 -1.877200 -1.156835 0.285288 2.489203 -0.270256 -3.178823 -0.293120 -2.540393 -0.054881 1.968427 0.829954 1.635854 3.788979 -6.450430 2.882979 -0.312467 0.374491 2.035300 1.746339 -2.571874 -4.317939 -0.480001 1.526903 2.893024 -0.080996 0.367703 0.628089 -3.992549 0.165557 1.040317 0.850245 -2.394943 3.497667 -0.118171 -1.611450 -1.474984 0.450661 -1.034561 -1.004863 -0.951027 2.525806 0.372136 -5.408559 2.778963 0.144484 -1.865522 0.084737 -0.819762 3.570266 -3.085127 -3.516509 2.105652 -1.504863 -2.508474 -1.232699 -1.165280 1.363906 1.363968 0.825303 -2.654949 -3.205919 3.537160 -1.027744 3.901830 1.990067 -0.658357 3.486767 -2.156781 -2.003838 -2.224837 -2.192702 1.351560 -0.038056 -2.026793 -1.844332 -0.957721 2.446035 3.211922 -0.073166 -2.059522 -0.303363 3.582235 -3.479058 -0.518036 1.212837 2.332328 -2.007908 2.054697 1.842118 -2.904188 0.692633 -2.694158 -0.264870 -1.826249 -1.846512 2.652756 -1.318808 1.067351 0.366631 -0.310781 -0.045247 1.665412 1.240324 0.366148 0.678122 4.040434 4.176336 -1.646321 -0.376810 -4.149827 2.286790 -3.858953 -3.476401 0.246717 0.692679 -1.530783 -0.784229 -0.480072 2.660046 2.144324 -2.160569 -2.019322 1.481346 +PE-benchmarks/subset-sum.cpp__main = -0.008379 0.150473 0.461335 -0.247874 0.622841 0.120274 0.330240 0.331106 -0.732090 -0.686997 0.117628 -1.025598 -1.034649 0.889191 -0.039544 0.095483 1.248647 0.246125 -0.029634 -0.381237 0.150703 -0.452229 1.177978 1.258729 -0.927089 0.367635 -0.046784 0.282267 -0.026809 0.644538 -0.073598 -0.990439 0.397807 -0.109620 0.307033 -0.373116 -0.327424 -0.181302 -0.181821 -1.703327 -0.099049 0.805492 -0.115177 -0.012671 0.222059 0.983505 1.222152 0.600187 -0.229255 0.929335 0.366806 -0.321356 0.454406 0.101942 0.325047 -0.138559 0.315804 -0.083730 -0.706422 0.309497 -0.188739 -1.130061 -0.366074 0.645762 0.957578 -0.254681 -0.416412 -0.130253 -0.124576 0.211507 0.197628 0.549020 0.690310 0.130892 0.783044 -0.163535 -0.203882 -1.289153 -0.051952 -2.627780 -1.036126 -0.402892 1.534084 0.391639 0.030851 -0.493822 1.213218 -0.110203 0.033396 0.602172 1.247464 -0.606070 -0.418567 -0.260112 -0.096780 0.353516 -0.440226 -0.009646 0.487738 -0.104683 -0.858593 -0.361905 0.660377 -0.233336 -0.495989 0.001149 -0.179925 0.805445 -1.221011 -0.225734 -1.165772 0.146979 0.404471 -1.226033 -0.061107 0.214925 0.434956 0.713590 -0.539414 -0.155770 0.440763 0.011554 -0.358283 -0.106779 -0.607079 1.063293 0.173181 0.228363 0.420652 0.581034 0.490919 0.746327 0.801165 -0.290908 -0.060595 0.310238 -0.107950 0.340615 -0.219550 -0.292984 0.229119 -0.651064 0.262797 -0.092950 -0.624713 -0.301097 -0.359336 -0.057388 0.106748 1.585362 -0.198177 0.853281 0.385809 -0.730310 0.648176 -0.317179 -0.202032 0.221474 0.812669 0.542989 -0.359527 -0.456605 0.528276 1.234712 0.500052 -1.093094 0.055264 0.133664 0.243186 -0.179437 0.672544 0.217661 0.584130 -0.524216 -0.057959 0.398939 1.565648 -0.465832 -1.118430 0.013890 0.147826 0.299200 -0.749529 0.086241 -0.036431 -0.072604 0.209223 0.017011 0.283627 0.972021 -1.970666 0.907335 -0.222092 -0.321614 0.766610 0.225931 -0.477681 -1.150607 -0.089887 0.534726 1.072447 0.531963 -0.131359 -0.052516 -0.916607 -0.094497 0.144702 0.248835 -0.480436 0.856321 -0.191445 -0.523210 -0.381087 -0.812037 -0.054313 -0.027436 -0.471296 0.484431 0.612820 -1.994992 0.737473 -0.019001 -0.603103 -0.219068 0.032233 0.564379 -0.745975 -1.039850 0.212819 -0.692820 -1.407911 -0.510696 -0.455982 0.102486 0.133277 -0.170830 -0.242003 -0.876652 1.331954 -0.069460 0.920945 0.647000 -0.111642 1.317640 0.725181 -0.808867 -0.176227 -0.539064 0.717663 -0.849553 -0.190514 0.092610 -0.532477 0.451203 1.035526 0.135337 -0.181634 -0.584750 0.889831 -0.818515 -0.397875 0.721211 0.228597 -0.016736 0.935826 0.831822 -0.732411 -0.025160 -0.864978 -0.265771 -0.267563 -0.387253 0.410667 -0.688461 0.010019 0.390924 -0.209711 -0.461809 0.336581 -0.161389 -0.302950 -0.292208 1.143973 1.493830 -1.012593 0.620098 -0.823304 0.681710 -0.977979 -0.719813 -0.062812 0.258259 -0.449791 -0.187679 0.062985 0.231646 0.306440 -0.810675 -0.717707 0.404181 +PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -0.902141 -1.031335 -0.441530 -1.443136 0.769850 1.045681 0.529332 -0.930099 -2.127680 -0.882669 0.716886 -2.458073 -1.051206 2.206555 -0.679519 1.611910 2.728987 0.496574 -0.911641 -0.595422 1.737324 -0.669819 2.696241 3.158281 -1.825634 0.012112 -0.274148 0.997948 0.491701 0.485797 0.873432 -1.497165 0.495016 -1.637779 0.418722 -1.328573 -0.416223 1.314417 1.410983 -3.521325 -0.090032 1.533128 0.820314 -0.062958 0.135463 0.570372 1.468291 1.690470 -0.309875 1.700372 1.341436 -0.001723 1.063849 0.095851 0.464762 0.295914 -0.027555 -0.369985 -0.383164 -0.116171 -0.590609 -0.679597 0.478934 2.066418 2.574124 -0.205180 -0.966117 0.441304 0.512083 0.631928 0.921033 1.562358 -0.292135 0.099761 1.256890 -2.230295 0.101510 -3.591081 0.744641 -3.881554 -1.374796 0.191379 1.902530 1.539060 0.981933 -0.503572 3.111831 -0.719972 -1.083503 2.320860 2.218449 -1.416025 -0.537608 -0.770490 -1.125063 0.286477 -0.958543 0.004596 0.634479 1.200312 -1.783943 -1.087883 0.288832 0.301762 -1.167998 -1.096671 -0.164867 1.635098 -2.047786 -1.410203 -0.892870 1.631811 -0.053265 -3.109822 -0.607248 -1.668193 -0.300804 0.423457 -1.601639 -1.365387 0.892218 0.234747 -0.569127 -0.581537 -1.088076 1.482603 0.864966 0.385374 -0.206453 1.021027 0.294300 2.637218 0.308858 -1.356254 0.151657 0.869917 -0.365336 0.937353 -1.207835 -0.777610 1.059650 -1.943737 -0.334477 0.455009 -1.202202 -0.536269 0.515944 -0.136391 -0.130048 6.215251 -0.389058 2.318540 2.006577 -1.626011 1.399606 -0.345564 0.602507 0.951846 1.458627 0.767718 -2.561510 -1.703342 1.587783 2.957958 1.180617 -1.612127 -0.737701 0.692269 0.489683 -0.032801 1.012208 0.194844 0.036624 -1.229613 -0.242365 0.866226 3.683401 -0.826644 0.411942 0.250156 1.504773 -0.681533 -2.174062 -0.296460 -2.308766 -0.073336 0.493881 0.442597 1.009852 2.383966 -3.101533 2.034836 -0.424910 0.346425 1.399175 0.510088 -1.504868 -3.300951 -0.750154 0.672238 2.038482 -0.492966 0.354941 0.632066 -2.474713 0.099378 0.382732 0.497617 -1.515808 2.083190 -0.291813 -0.815104 -0.663900 0.447959 -0.960898 -0.987910 -0.557349 1.608998 1.000208 -1.718234 1.489736 0.208527 -0.940696 0.265540 0.056402 1.732485 -1.805545 -1.908956 1.263881 -0.630766 -1.317363 -0.798148 -0.600223 0.990357 0.510759 -0.349567 -1.470685 -1.974226 2.090736 -0.841930 2.439045 1.135610 -0.758762 1.296318 0.157752 -0.982668 -1.132036 -1.298053 -0.245033 -0.264070 -0.978535 -1.212362 -0.552534 1.610188 1.798976 0.319007 -1.286666 0.171599 2.477579 -1.151224 -0.290907 0.789751 -0.067318 -1.182100 0.914457 1.177964 -2.002283 0.465543 -1.777685 0.279409 -0.992217 -0.844643 1.836772 -0.600821 0.748413 -0.077278 -0.195266 0.017099 0.887384 1.217635 -0.190349 0.516216 3.077713 1.014300 -0.149594 -0.099714 -2.432782 1.145584 -2.219832 -1.557240 -0.285345 0.967567 -1.420443 -0.277020 0.111254 1.839580 1.421690 -0.867785 -1.126757 0.732675 +PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -1.036765 -1.003168 -0.341472 -1.466062 0.851916 0.948636 0.554524 -1.217740 -1.944775 -1.025686 0.629047 -2.421374 -1.120984 2.253671 -0.609142 1.832352 2.713390 0.359015 -0.754316 -0.756148 1.736729 -0.820747 2.680234 3.011669 -1.592883 -0.011691 0.351983 1.138208 0.277251 0.466414 0.934356 -1.772654 0.380490 -1.815988 0.530549 -1.084256 -0.659311 1.266725 1.804034 -3.417439 -0.201573 1.486413 0.755132 -0.053864 0.117976 -0.302932 1.358860 1.630341 -0.070984 1.879834 1.243436 -0.128813 1.157482 0.065575 0.913085 0.542398 0.323827 -0.441983 -0.327758 0.014957 -0.853218 -0.306160 0.427474 2.004851 2.482723 -0.296282 -1.174087 0.506160 0.366981 0.793644 0.671344 1.784572 -0.776085 0.294426 1.282471 -2.935597 0.123025 -4.186591 0.771992 -3.674390 -1.649738 0.359043 1.365612 1.176562 1.296467 0.189454 3.202401 -0.747721 -1.279329 1.732372 2.359772 -1.317602 -0.437943 -0.428711 -0.938663 0.080194 -0.856335 0.013193 0.888508 1.107642 -1.807728 -1.152041 0.703746 0.336928 -1.124113 -1.267902 -0.166103 1.894233 -1.791490 -1.794192 -1.072284 1.607676 -0.319382 -3.116625 -0.872063 -1.448578 -0.278440 0.577849 -1.929359 -1.806788 1.232526 0.348364 -0.564158 -0.917132 -0.054568 1.243978 1.164685 0.427101 -0.217899 1.240243 0.255862 3.080135 0.749643 -1.197753 0.262354 0.832048 -0.388226 0.990529 -0.938845 -0.775052 0.367565 -1.768821 -0.180593 0.781627 -1.194932 -0.700784 0.847645 -0.309289 -0.310244 6.675284 -0.713691 2.289924 2.108005 -1.613829 1.157278 -0.438757 0.570729 0.670862 1.527752 1.043752 -2.667813 -1.639483 1.950125 3.079839 1.146145 -1.898652 -1.319170 0.678451 0.647023 -0.044591 1.161350 0.210007 0.228755 -1.163226 -0.192521 0.774735 3.582429 -1.261668 -0.716344 0.292563 1.668656 -0.519035 -2.630537 -0.315194 -2.840821 -0.189708 0.397148 0.412835 0.825057 2.317721 -3.642744 2.012643 -0.233835 0.135620 2.094610 0.819664 -1.477599 -3.841640 -0.879445 0.735790 1.941541 -0.609179 0.521696 0.362013 -2.527982 0.180699 0.247166 0.583272 -1.639635 2.309924 -0.640077 -0.911281 -0.588156 0.601655 -0.851089 -1.393871 -0.475402 1.622082 1.377040 -2.070058 1.534795 0.472497 -0.817587 0.573193 0.058944 2.167524 -1.596591 -2.021251 1.370943 -0.847947 -1.040600 -0.470696 -0.709196 0.840981 0.771438 -0.044625 -1.378068 -1.360684 1.880386 -0.734726 2.740395 1.081159 -0.691139 1.368543 -0.478991 -1.253120 -0.890919 -1.002535 -0.256380 -0.052115 -0.989555 -2.393745 -0.504323 1.696089 1.711100 0.372964 -1.198155 -0.397329 2.373092 -2.009604 0.178500 0.820135 0.180960 -1.294515 0.701793 1.186588 -1.727099 0.503388 -1.611189 0.137841 -1.423000 -0.811422 1.664329 -0.648919 0.494456 -0.156577 -0.615250 0.135825 0.744840 1.437338 0.062231 0.507743 2.514553 1.362761 -0.361175 -0.467240 -2.405535 0.938696 -2.123021 -1.580935 -0.157459 0.903897 -1.515256 -0.561963 0.121028 1.721629 1.421119 -0.932699 -1.162262 0.551748 +PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = -0.141447 -0.024815 0.532990 -0.579352 0.573356 0.064870 0.305072 0.286946 -1.090456 -0.936052 0.106866 -1.471577 -1.116679 1.171537 -0.185386 0.104481 1.635368 0.384566 -0.240495 -0.418068 0.343534 -0.540378 1.295729 1.619035 -1.061876 0.299151 -0.300325 0.476011 -0.012080 0.757215 0.312600 -1.228194 0.040082 0.069915 0.695470 -0.514322 -0.395735 0.194379 -0.194482 -2.243418 -0.074712 1.424494 0.614248 -0.066377 0.383234 0.717966 1.340903 0.762784 -0.225872 0.815256 0.572934 -0.068461 0.720328 0.009521 0.302773 -0.105667 0.442703 -0.441610 -0.682684 0.421481 -0.301116 -0.900205 -0.114471 0.985189 1.279618 -0.150228 -0.576017 -0.374525 0.215122 0.445078 0.282069 0.758124 0.421787 0.158474 0.712861 -0.332654 -0.065400 -1.873212 0.503939 -2.743391 -1.177523 -0.334588 1.788847 1.382087 -0.093378 -0.662576 1.639576 -0.384304 -0.077112 0.904370 1.461677 -0.371565 -0.410598 -0.543577 -0.541379 0.428033 -0.430349 -0.208114 0.299955 0.482872 -1.017272 -0.356290 0.477410 -0.278612 -0.610558 0.238554 -0.191220 1.069152 -1.270399 -0.253139 -1.106539 0.737448 0.596422 -1.574854 0.070944 -0.373765 -0.470890 0.708759 -0.856469 -0.163551 0.594886 -0.140891 -0.623101 0.204723 -1.583206 1.366838 0.075957 0.053465 0.166127 0.665431 0.424645 0.542376 0.469106 -0.650848 0.043263 0.560276 -0.139151 0.215602 -0.558248 -0.400645 0.347658 -0.810307 -0.010637 -0.242594 -0.761706 -0.451542 -1.076379 -0.286358 0.127623 2.197542 -0.414842 1.113227 0.552993 -0.796063 1.332469 0.100251 -0.105693 0.194435 0.989458 0.714758 -0.516865 -0.717137 0.741229 1.632117 0.636416 -0.707940 -0.139675 0.297317 0.096841 -0.018793 0.968622 0.185947 0.286877 -0.654633 -0.180557 0.352977 1.864812 -0.147342 -0.892516 -0.095414 0.571967 0.192638 -0.887137 0.168893 -0.613743 -0.092872 0.155974 0.038969 0.555083 1.271049 -2.372148 1.303827 -0.016769 -0.127194 1.018905 -0.099539 -0.506348 -1.879137 -0.241113 0.611453 1.434072 0.217751 -0.317100 -0.040566 -1.223081 -0.043427 0.132655 0.465478 -0.832249 1.113401 -0.429464 -0.527873 -0.381416 -0.820454 -0.452000 -0.242494 -0.748595 0.609299 0.986939 -1.430001 0.986035 -0.008524 -0.450640 -0.260690 0.015695 0.507033 -0.816877 -1.051370 0.200052 -0.634996 -1.499078 -0.669123 -0.629321 0.342221 0.033468 -0.204181 -0.408073 -1.069955 1.465739 -0.286059 1.340748 0.750848 -0.285982 1.042428 1.695670 -0.673335 -0.144624 -0.674278 0.422306 -0.718055 -0.214300 -0.186441 -0.601152 0.542528 1.171934 0.061392 -0.398915 -0.621890 1.270542 -0.406780 -0.495327 0.628389 -1.082927 -0.098663 0.903910 0.871396 -0.994086 -0.013048 -1.355881 0.147788 -0.395819 -0.374963 0.591058 -0.723705 0.004743 0.287743 -0.387500 -0.529014 0.369384 0.247307 -0.553536 -0.108926 1.689261 0.752351 -0.563042 0.897445 -1.161016 0.810383 -1.208174 -0.619592 -0.428818 0.370204 -0.689930 -0.203695 -0.041600 0.460299 0.411536 -0.519660 -0.871592 0.599800 +PE-benchmarks/rat-in-a-maze.cpp__solveMazeUtil(int (*) [4], int, int, int (*) [4]) = -1.802082 -1.336141 0.068079 -3.162053 1.979485 3.059619 1.025876 -2.836163 -4.075297 -1.907711 1.598906 -5.434227 -2.656854 4.653733 -1.623053 2.981404 5.702156 0.094172 -2.255410 -1.941648 3.765714 -0.273672 6.339654 6.890018 -4.351195 0.255130 0.676275 2.201135 1.920238 0.193064 1.654756 -2.627409 0.897458 -3.542648 0.482295 -1.776125 -1.327325 1.273844 3.364372 -7.384083 -0.451228 1.796601 0.369851 -0.029568 0.350798 1.309417 4.061098 3.636484 -0.427692 3.400340 3.308937 0.151717 2.061945 -0.060876 0.985255 0.034969 1.587730 -0.366928 -0.307213 -0.519422 -1.144723 -0.851583 0.612685 4.954932 5.433164 -0.101087 -2.449468 1.260063 1.696400 1.415518 1.278001 3.932550 -0.711201 1.758802 2.877922 -5.888670 0.536142 -8.478626 1.411901 -7.387331 -3.529177 0.450056 3.367372 1.992616 2.291236 0.555124 6.937904 -1.107870 -2.359677 4.597750 5.300713 -3.157144 -0.825301 -0.935637 -2.605511 0.447489 -1.891911 1.303302 0.515165 2.685494 -3.986036 -2.488560 0.892005 0.468604 -2.763806 -1.959299 -0.288192 3.551287 -4.051579 -2.594357 -1.682791 3.312357 -0.159328 -7.301305 -2.514788 -3.284355 1.567392 0.958449 -3.465555 -3.516509 1.896470 0.875898 -1.220771 -1.595561 -0.904744 2.698193 3.086356 1.194976 -0.580632 2.346827 1.516363 6.137189 1.732746 -2.546593 0.410644 1.219828 -0.650331 1.998087 -1.857360 -1.000886 1.031585 -3.686357 0.624180 2.278666 -2.410026 -2.059179 1.331423 -0.681901 -0.535732 14.254987 -1.120302 5.241662 4.366139 -3.776367 1.536685 -1.650533 0.619227 1.878606 2.714658 2.587472 -6.168873 -3.484660 4.113283 6.795241 2.330770 -4.601368 -1.109494 1.995722 0.347854 -0.764119 2.739491 0.400673 0.470069 -2.464770 -0.695729 2.901593 8.115324 -2.282014 -1.450042 0.564953 2.179487 -0.376939 -4.568578 -0.445421 -3.602943 -0.008650 2.486554 1.136431 2.243395 5.037509 -7.615963 4.154087 -0.242335 0.200342 3.800059 1.863202 -3.602041 -4.977641 -1.130955 1.953236 3.743062 -0.752391 -0.509473 0.736991 -5.493845 0.188522 1.321235 0.818827 -3.535250 4.833605 0.076851 -2.030525 -1.728757 0.738573 -1.201773 -1.616649 -1.583053 3.554743 0.006214 -5.319901 3.842184 0.660038 -2.089944 0.261321 -1.429248 4.488659 -3.455513 -4.071988 2.792018 -1.863192 -2.804581 -1.745628 -1.604086 1.819689 2.319388 1.405099 -4.125403 -3.878008 4.124762 -1.781212 5.593675 2.686667 -1.009977 3.395096 -1.359145 -2.017131 -2.874187 -2.419249 0.832811 0.796173 -2.990679 -3.713505 -1.434392 3.406603 3.863402 -0.505384 -2.764295 -0.781834 4.631113 -4.374852 -0.750142 1.150841 1.546968 -3.462225 2.104122 2.137394 -3.401384 1.374561 -3.535377 -0.492589 -3.036822 -2.337714 3.756332 -0.971699 1.428189 0.162970 -0.767990 0.175502 2.000316 1.936709 0.328946 1.316904 5.466995 4.198535 -1.160075 -0.579168 -5.715473 3.247904 -4.997617 -4.357179 0.580656 1.160725 -2.605371 -1.464116 -0.639190 3.989528 3.063252 -2.802693 -2.466671 2.224394 +PE-benchmarks/rat-in-a-maze.cpp__main = 0.071881 0.211234 0.307287 -0.086612 0.306758 -0.040862 0.150181 0.295439 -0.335834 -0.410857 -0.022496 -0.590610 -0.569246 0.409484 -0.000811 -0.091014 0.591925 0.156140 0.019499 -0.117076 -0.110322 -0.219366 0.487726 0.523630 -0.390931 0.234165 -0.170445 0.109304 -0.167971 0.514861 -0.053406 -0.622673 0.124342 0.233176 0.235197 -0.118639 -0.174477 -0.143016 -0.334412 -0.831195 -0.023957 0.652779 0.158539 -0.045412 0.159428 0.387890 0.679422 0.236484 -0.022540 0.332208 0.066208 -0.087183 0.274707 0.060729 0.227187 -0.097143 0.250704 -0.310549 -0.468063 0.204085 -0.089790 -0.610093 -0.282061 0.269190 0.389497 -0.083473 -0.181746 -0.228830 -0.148723 0.119648 0.059965 0.199601 0.358462 0.100231 0.259944 0.284678 0.003755 -0.256465 0.017464 -1.215728 -0.511045 -0.267511 0.842225 0.563491 -0.113950 -0.371449 0.533355 -0.093456 0.136541 0.159098 0.634376 -0.181717 -0.228452 -0.148476 -0.016467 0.212887 -0.169462 -0.123707 0.153526 -0.029973 -0.395310 -0.030651 0.328513 -0.167989 -0.208275 0.267817 -0.080604 0.351083 -0.655444 0.018986 -0.604745 0.027946 0.315558 -0.512516 0.029110 0.215964 -0.109610 0.385179 -0.247611 0.032347 0.248694 -0.066665 -0.213876 0.114172 -0.716353 0.568383 -0.102548 0.042929 0.242101 0.289264 0.273679 0.162958 0.248261 -0.121835 -0.001450 0.146223 0.016082 0.073933 -0.024339 -0.171962 -0.049556 -0.288645 0.081537 -0.160723 -0.312687 -0.092118 -0.746149 -0.052169 0.108635 0.392365 -0.162022 0.348740 0.049013 -0.339815 0.402180 -0.063105 -0.202002 -0.052011 0.364417 0.308533 0.185922 -0.185805 0.224444 0.549542 0.238012 -0.258951 0.206779 0.030338 0.084933 -0.028300 0.377715 0.098952 0.284362 -0.272886 -0.061172 0.103371 0.687271 -0.057467 -0.551069 0.008603 0.000175 0.235595 -0.132686 0.103092 0.097924 -0.026556 -0.038116 -0.059446 0.119193 0.450703 -0.858332 0.506827 -0.041921 -0.215682 0.407334 -0.090174 -0.120739 -0.526358 -0.067954 0.324774 0.574124 0.247016 -0.110788 -0.130327 -0.375168 -0.087888 0.022757 0.170018 -0.217829 0.346796 -0.123350 -0.287191 -0.183034 -0.598583 -0.014041 0.056264 -0.350591 0.151771 0.510174 -0.837063 0.404311 0.018203 -0.221819 -0.211359 0.085427 0.056892 -0.330019 -0.455996 -0.046510 -0.394024 -0.818297 -0.179987 -0.259863 0.001466 -0.038518 -0.171519 -0.012311 -0.273158 0.687295 0.043352 0.392962 0.309072 -0.006373 0.518476 0.788801 -0.364570 0.134422 -0.268526 0.319777 -0.593848 0.029801 0.348629 -0.315662 0.150778 0.508605 0.087176 -0.071178 -0.313064 0.383460 -0.084979 -0.246076 0.386020 -0.369716 0.076060 0.437639 0.438041 -0.296998 -0.091138 -0.496760 -0.076249 -0.100305 -0.161360 0.079904 -0.389130 -0.082737 0.284441 -0.188308 -0.387869 0.111924 -0.144285 -0.305631 -0.166023 0.575819 0.383631 -0.422148 0.566624 -0.321750 0.277922 -0.440075 -0.225194 -0.113880 0.122413 -0.221348 -0.089985 0.003664 -0.009298 0.057975 -0.283186 -0.350510 0.197207 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -1.870819 -1.485102 1.241742 -3.555432 3.415123 3.223235 1.321209 -2.755168 -4.440116 -2.286400 1.410755 -6.374570 -3.938250 5.211193 -2.396309 3.274834 6.234611 0.007727 -1.932554 -2.253202 4.002925 -0.368263 7.644829 6.898371 -5.450799 0.160035 -0.699584 3.443693 1.734375 1.586840 2.230940 -3.217320 0.868738 -3.135722 1.200958 -1.818282 -1.272930 1.500344 2.503554 -8.518615 -0.915717 3.778520 -0.157372 0.661845 1.474906 2.191943 4.699056 4.020200 -0.386946 4.530779 3.017965 -0.121671 3.561125 0.243776 0.408135 -0.100879 2.323969 -2.243427 -1.682416 -0.234668 -2.058823 -1.913401 0.996795 5.574337 6.614200 -0.481261 -2.841143 1.396826 1.473994 1.807706 1.915089 5.051416 -0.766320 2.389532 3.956201 -4.853802 1.020397 -7.644989 1.453820 -7.239494 -4.421179 -0.528655 3.900931 4.063961 2.282273 -0.411529 8.392181 -0.942656 -2.442132 5.675299 5.928179 -3.354610 -0.837164 -2.047745 -2.545162 -0.190123 -2.365540 0.305427 -0.024426 3.922190 -4.591294 -2.552246 0.652714 -0.071529 -2.923645 -1.403071 -1.263603 4.591091 -5.221230 -3.521358 -2.971541 4.010273 -0.516664 -8.213029 -2.716142 -2.748543 1.450155 1.463742 -2.489673 -2.934487 2.729628 1.367891 -1.356797 -0.994879 -2.444590 4.132951 3.388568 0.801494 -0.527470 3.889289 0.837559 6.055552 2.086397 -2.095024 -0.486158 1.953578 -0.506805 2.317661 -1.740344 -0.509033 0.994920 -4.070118 -0.757853 2.275648 -2.441715 -2.127147 -1.682995 -1.176886 -0.121663 14.315558 -1.719409 5.477036 4.164258 -4.490624 2.216948 -1.045633 1.258059 1.881521 2.967216 3.280771 -6.749319 -4.114171 4.810421 7.124151 2.358844 -5.010364 -0.182444 2.031877 1.072757 -0.740325 2.979026 1.638007 0.297600 -3.091960 -0.318633 1.465222 9.912062 -2.539111 -2.428715 1.242462 1.842596 -0.707330 -4.726058 -0.679400 -2.595960 -1.215443 2.340682 1.433527 1.606131 5.747025 -7.508680 4.826738 0.201902 0.211807 4.772788 0.518127 -3.205724 -5.637307 -2.434350 2.288890 3.964275 -0.563087 -1.070060 0.341980 -6.053289 1.349220 1.279908 1.758033 -3.248069 5.779521 -0.716037 -2.607147 -2.130781 -0.325696 -1.529528 -0.919657 -2.333947 3.665422 0.943143 -5.568498 4.086906 0.224329 -2.548078 0.758471 -0.271282 5.451604 -3.468725 -4.741054 2.993347 -2.922513 -4.801800 -2.951814 -1.792959 1.367971 2.853734 0.613026 -4.972051 -4.259884 4.764048 -2.099431 5.703842 3.205969 -0.997997 4.464177 0.446275 -3.355217 -2.418145 -3.927031 1.043155 0.799133 -2.117841 -3.070727 -1.616672 3.888073 4.586962 -0.501876 -2.563511 -1.755867 5.855539 -4.524014 -1.236197 2.047104 -0.079666 -3.386700 2.706459 2.991065 -3.183299 0.985040 -3.927203 0.200385 -3.864289 -1.578332 4.074481 -2.056796 0.641703 0.241609 -0.671389 -0.884623 1.624702 2.066081 -0.414809 0.453107 7.664902 5.052737 -1.409824 0.527094 -5.641542 4.007524 -5.611011 -3.804369 -0.381374 0.680155 -2.069429 -0.722959 -0.065130 4.297225 4.162674 -4.037687 -2.953288 1.640005 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::queue >, void>() = 0.058933 0.212654 0.413247 -0.235060 0.277973 -0.016459 0.085676 0.272721 -0.328630 -0.377531 -0.096736 -0.389611 -0.470133 0.371374 -0.089051 -0.213233 0.619521 0.207681 0.030493 -0.233412 -0.036838 -0.171014 0.478424 0.568025 -0.507299 0.183988 0.015920 0.259964 0.027783 0.522403 -0.037535 -0.542479 0.023614 0.287266 0.318779 -0.288033 -0.112637 -0.112416 -0.398729 -0.906963 -0.014553 0.424464 0.038196 0.005877 0.202086 0.433680 0.640796 0.240591 -0.135322 0.287343 0.216648 0.168651 0.170616 0.022763 0.118821 -0.044305 0.331163 -0.245704 -0.292606 0.218577 -0.032706 -0.524705 -0.154162 0.350994 0.441678 -0.064020 -0.122077 -0.276792 -0.031301 0.107040 0.067971 0.188113 0.267023 0.161942 0.241647 0.078864 0.032166 -0.554146 0.119596 -1.250344 -0.441629 -0.369505 0.733960 0.403707 -0.173752 -0.232534 0.548587 -0.064428 0.232332 0.261612 0.534177 -0.104663 -0.156975 -0.206594 -0.164173 0.278192 -0.151449 -0.106724 -0.002526 0.096664 -0.311607 -0.135672 0.265531 -0.174620 -0.241739 0.259946 -0.110362 0.360923 -0.672995 0.061159 -0.580290 0.136341 0.272267 -0.512589 -0.066260 -0.039040 0.188171 0.229924 -0.153417 0.030338 0.149019 0.064735 -0.212803 0.189180 -0.681885 0.512794 0.004411 -0.072271 0.131962 0.157376 0.187649 0.102651 0.256850 -0.179202 -0.084874 0.251894 -0.083446 -0.114073 -0.223792 -0.042577 0.101213 -0.244815 0.121942 -0.094581 -0.291392 -0.211051 -0.479070 -0.198442 0.213858 0.760576 -0.140727 0.275215 0.049612 -0.323928 0.256151 0.057056 -0.171013 0.082904 0.368181 0.288722 0.017254 -0.194978 0.082555 0.510615 0.227492 -0.234991 0.109217 -0.031329 -0.062538 0.023418 0.321538 0.019009 0.041513 -0.208644 -0.092559 0.074038 0.612396 0.075567 -0.554721 -0.105510 0.150158 0.032272 -0.056414 0.136029 0.108882 0.015748 0.074935 -0.088180 0.224153 0.440281 -1.137966 0.467454 0.008698 -0.147539 0.251729 -0.094828 -0.032651 -0.485617 0.046871 0.308599 0.596959 0.145697 -0.048057 -0.040610 -0.389885 -0.070413 0.055553 0.258661 -0.292748 0.315361 0.059406 -0.330454 -0.190129 -0.488304 -0.028863 0.079542 -0.346671 0.115457 0.232050 -1.015067 0.403929 -0.088333 -0.162348 -0.111856 -0.025714 0.087919 -0.411713 -0.421114 -0.020169 -0.154481 -0.638561 -0.206754 -0.253539 0.192347 -0.109298 0.029840 -0.143280 -0.360204 0.515138 -0.029090 0.298825 0.303864 0.005808 0.547128 0.464598 -0.193486 -0.030188 -0.203274 0.383740 -0.413172 0.028944 0.353752 -0.291049 0.114332 0.598710 -0.010634 -0.056637 -0.180640 0.467032 -0.105648 -0.235636 0.250302 -0.219690 0.086788 0.444856 0.338632 -0.374456 -0.184331 -0.481468 -0.047141 0.052535 -0.156073 0.204186 -0.418221 -0.007608 0.307878 -0.094896 -0.420753 0.206962 -0.119478 -0.243667 -0.082094 0.544408 0.535588 -0.341751 0.550232 -0.306173 0.267890 -0.478084 -0.189287 -0.232453 -0.065460 -0.105575 0.011995 -0.169045 0.101717 0.066614 -0.053972 -0.227256 0.176004 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::empty() const = -0.025566 0.191729 0.256441 -0.155261 0.260568 0.124800 0.087510 -0.011867 -0.207953 -0.270447 -0.015011 -0.448661 -0.414658 0.330932 -0.110772 0.023132 0.462693 0.052144 -0.010584 -0.158712 0.048036 -0.116135 0.502159 0.504551 -0.434408 0.120640 0.084635 0.193720 0.033413 0.342352 -0.072034 -0.427234 0.100055 0.063303 0.173551 -0.137645 -0.080586 -0.104028 -0.085213 -0.667728 -0.052949 0.268753 0.035198 0.006199 0.087613 0.256631 0.557410 0.260631 -0.070164 0.238972 0.209025 0.055201 0.180682 0.042702 0.112801 -0.090351 0.314066 -0.201489 -0.213704 0.074468 -0.041073 -0.385456 -0.142464 0.357493 0.444222 -0.036374 -0.111015 -0.070186 -0.074258 0.075657 0.012334 0.240610 0.164744 0.251246 0.218471 -0.077062 0.110485 -0.475645 0.008369 -0.857316 -0.374821 -0.238057 0.388802 0.314856 0.058202 -0.096769 0.521927 0.036358 0.078518 0.146999 0.546152 -0.264352 -0.122641 -0.100075 -0.119576 0.154923 -0.190183 0.052769 -0.014371 0.060107 -0.304519 -0.195371 0.240703 -0.062014 -0.223720 0.095902 -0.094379 0.249969 -0.501638 -0.074435 -0.418108 -0.027358 0.097178 -0.553070 -0.042537 -0.019398 0.144430 0.176510 -0.132150 -0.170216 0.129270 0.093340 -0.113857 -0.036157 -0.468619 0.376408 0.141437 0.005898 0.113900 0.142078 0.220589 0.319317 0.193392 -0.134385 -0.077842 0.090916 -0.090323 0.025774 -0.131804 -0.043280 0.047068 -0.268029 0.083992 0.080247 -0.223425 -0.108253 -0.253078 -0.158871 0.127348 0.731063 -0.108715 0.284971 0.131169 -0.373419 0.194582 -0.115864 -0.152339 0.067122 0.254733 0.290315 -0.144887 -0.219079 0.217828 0.486034 0.181931 -0.277194 0.057097 0.048513 0.030749 -0.089391 0.255935 0.078079 0.043770 -0.205731 -0.063448 0.174008 0.597774 -0.091418 -0.350894 0.044910 0.063840 0.060526 -0.195152 0.028809 -0.030991 -0.012189 0.045363 0.007443 0.136511 0.403148 -0.832731 0.368318 0.019535 -0.150840 0.330986 -0.051302 -0.163173 -0.346097 0.091522 0.307432 0.345225 0.090969 0.019254 -0.067346 -0.386294 -0.042518 0.042694 0.161681 -0.257267 0.316658 0.042590 -0.316905 -0.249119 -0.308339 0.001810 -0.059567 -0.264969 0.181165 0.219495 -0.789708 0.405736 -0.016724 -0.198205 -0.062886 -0.098409 0.171535 -0.373351 -0.390018 0.062722 -0.266688 -0.409200 -0.140794 -0.156829 0.075885 -0.008574 0.010819 -0.203740 -0.265585 0.378578 -0.031700 0.260348 0.249129 0.083267 0.363827 0.255546 -0.232247 -0.089678 -0.125193 0.238812 -0.259549 -0.110981 0.141503 -0.205364 0.198688 0.507693 -0.022394 -0.070496 -0.128444 0.319080 -0.203774 -0.186605 0.217520 -0.020556 -0.109664 0.239221 0.253563 -0.228548 -0.092576 -0.359688 -0.090706 -0.099380 -0.252162 0.159443 -0.295924 -0.003319 0.264014 -0.128953 -0.267464 0.195791 -0.051119 -0.119283 -0.048355 0.443444 0.404751 -0.273019 0.293988 -0.362841 0.205956 -0.468219 -0.298697 0.001484 0.007608 -0.135169 -0.084763 -0.059997 0.134267 0.089976 -0.129559 -0.191048 0.092978 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::front() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::pop() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::~queue() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__dfs(int (*) [6], int, bool*) = -1.118848 -0.590803 0.065692 -1.895118 1.260228 1.975477 0.625571 -1.545836 -2.196965 -1.211535 0.670832 -2.985718 -1.690855 2.741176 -0.991643 1.834350 3.473436 0.244761 -1.032457 -0.986950 2.202220 -0.299724 3.854643 4.073477 -2.643974 0.063871 0.419000 1.545537 0.819677 0.538993 0.839537 -1.977578 0.759767 -2.115886 0.274279 -1.353182 -0.569361 0.895391 1.727824 -4.424799 -0.296628 1.095729 -0.326628 -0.028680 0.122616 0.241564 2.534254 2.197859 -0.219222 1.962755 1.712182 0.334894 1.121991 0.150332 0.674802 0.290617 0.335303 -0.801210 -0.305494 -0.290398 -0.704700 -0.905395 0.299879 2.894673 3.233598 -0.054481 -1.263960 0.828926 0.414200 0.591163 0.739090 2.206890 -0.238978 1.040535 1.759847 -3.408965 0.245147 -4.546863 0.600378 -4.157382 -2.039321 -0.179336 1.686798 1.425747 1.595856 -0.051992 4.088019 -0.706545 -1.078932 2.874052 3.242297 -2.265165 -0.547756 -0.910020 -1.250787 0.262228 -1.285352 0.571228 -0.119963 1.290190 -2.317248 -1.805476 0.659401 0.420819 -1.629251 -1.607606 -0.242130 2.169733 -2.638056 -1.858472 -1.461221 1.689725 -0.409060 -4.139235 -1.595294 -1.745766 1.158910 0.515927 -1.815023 -2.373332 1.119766 0.932844 -0.481658 -1.274482 -0.499742 1.609979 1.827998 0.405935 -0.207985 1.428114 0.743612 4.080749 1.006211 -1.284569 0.029629 0.851218 -0.533195 0.957885 -1.169383 -0.524681 0.666408 -2.217155 -0.355179 1.570315 -1.480493 -0.959686 0.925931 -0.545330 0.043562 8.878698 -0.566051 2.658870 2.486119 -2.462492 0.853675 -1.065012 0.295544 1.068414 1.631268 1.561268 -4.104433 -2.136071 2.217803 3.844960 1.423025 -2.484032 -0.550284 0.780082 0.503050 -0.521688 1.336777 0.301473 0.166831 -1.528283 -0.338954 1.614219 4.987830 -1.501304 -0.457937 0.544940 1.330360 -0.458626 -2.673198 -0.412273 -2.052280 -0.162032 1.320883 0.579175 1.216239 3.073191 -4.032173 2.390532 -0.421962 0.010819 1.883754 0.944906 -1.899302 -2.793991 -0.559313 1.372155 2.266945 -0.419930 0.547671 0.305292 -3.259412 0.091092 0.736656 0.779173 -1.927610 2.776882 0.086995 -1.559075 -1.226582 0.505926 -0.921254 -1.096742 -0.847233 2.008049 0.446130 -3.193023 2.404360 0.429053 -1.148546 0.542354 -0.661763 2.944865 -2.470794 -2.778533 1.909907 -1.013926 -1.584615 -0.619322 -0.797005 1.247358 1.180962 0.216326 -2.429763 -2.315078 2.505172 -0.613146 3.050932 1.537807 -0.364538 2.130780 -1.124372 -1.391057 -1.579149 -1.888622 0.501334 0.292488 -1.656803 -1.987076 -0.809435 2.191999 2.677548 -0.097524 -1.667127 -0.116915 2.870114 -2.707715 -0.323513 0.924262 1.448630 -1.984765 0.980209 1.414708 -2.122129 0.387218 -1.976409 -0.015191 -1.549018 -1.592362 2.110954 -1.016600 0.870107 0.476293 -0.370001 -0.120580 1.218974 1.203944 0.209410 0.686959 3.363416 2.465350 -0.624260 -0.406482 -3.233241 1.620536 -3.093636 -2.545035 0.212903 0.690970 -1.352184 -0.662952 -0.163431 2.327965 1.848037 -1.237309 -1.226072 0.702979 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__minCut(int (*) [6], int, int) = -4.504826 -3.996537 0.242798 -8.760987 4.618193 8.733542 2.404333 -6.713446 -10.086526 -4.213327 4.042616 -13.603404 -6.187293 11.130994 -4.247008 7.371044 13.274303 0.227978 -5.465203 -3.426504 8.354551 0.607168 14.984187 16.628340 -10.191731 0.272043 -0.490450 6.093789 3.406273 1.635420 4.218619 -7.710746 1.914916 -7.455040 0.650177 -4.263288 -3.048618 4.115265 7.602881 -17.368158 -1.014855 6.598464 -0.730200 -0.124834 1.421492 0.945243 9.248515 8.647457 -0.344486 8.100840 6.949653 0.909305 5.162345 -0.150503 3.109650 0.007973 2.161736 -2.972923 -0.679372 -1.464233 -2.878242 -1.510286 1.156038 11.755583 12.648479 -0.172745 -6.021654 1.873856 3.331052 2.595737 3.619234 9.366779 -1.760027 4.235864 6.455614 -11.615174 2.235716 -16.308885 4.260347 -13.846604 -8.004131 1.660087 8.498003 8.112796 5.295174 -2.393564 16.515475 -3.499141 -6.194612 11.824008 12.151748 -7.586080 -1.893774 -2.691987 -5.845027 0.595874 -4.445863 2.342995 -0.921242 6.573149 -9.412428 -4.918300 0.994031 1.199470 -6.591519 -4.444501 -0.475344 8.357162 -9.668548 -6.269150 -3.345486 9.387361 -0.232974 -16.835235 -8.022502 -8.020663 1.986104 1.430171 -8.589553 -7.813031 4.732972 1.659216 -2.547962 -3.155410 -4.263745 6.739235 7.398624 2.442941 -1.773962 6.248439 3.232481 15.074985 1.233006 -5.886316 1.189532 3.209200 -0.675180 5.060438 -3.964370 -1.734438 1.886724 -8.390293 -1.516034 5.187159 -5.685880 -3.195954 0.648218 -0.729875 -1.585885 37.343668 -2.720027 12.380456 10.934278 -8.866246 4.012355 -3.284808 2.139516 4.179767 5.594858 5.845871 -16.277911 -8.307053 9.940475 16.066532 5.529385 -9.715015 -0.049793 5.129201 1.327962 -2.412396 6.524821 0.475263 1.029071 -5.963612 -1.542246 6.670628 19.793982 -4.700650 -2.428811 1.500061 5.788994 -1.014840 -8.501814 -1.039148 -7.728577 -0.223914 5.964248 2.843939 5.696300 12.034855 -15.690566 9.725375 -0.133500 0.532708 8.821439 3.637818 -8.580347 -10.715877 -3.837372 4.227696 8.951984 -2.068539 0.600598 1.922870 -13.056277 0.558456 3.395879 1.865521 -8.273167 11.434647 0.491572 -4.951232 -3.695295 0.931447 -4.458005 -3.340125 -5.036854 8.587077 0.778522 -11.089274 8.705850 3.037662 -4.607649 0.614423 -3.175786 11.016026 -9.160168 -9.961432 6.892238 -4.413830 -7.513500 -2.755662 -3.776308 3.961262 5.266705 2.140284 -10.839123 -8.850814 10.869161 -3.442304 13.623908 6.250184 -3.081426 6.873169 -2.485528 -4.663839 -5.338505 -8.987116 3.387972 2.335435 -6.972006 -6.742074 -3.476801 8.019506 8.649448 -0.730262 -7.505435 -1.153083 11.092168 -8.348883 -0.762887 2.528001 2.577814 -8.397021 3.809920 4.955376 -7.945292 3.784122 -8.621176 -0.842168 -7.654064 -5.316582 9.503204 -1.880304 4.091477 0.345020 -1.437107 -0.341934 4.165822 5.028197 -0.225285 4.306315 14.045831 7.884445 -0.732260 -0.927036 -13.782085 7.535137 -11.418404 -9.973341 0.842377 1.570849 -6.226744 -3.385197 -1.300008 9.735999 8.527447 -5.678748 -5.409651 5.491873 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 0.108562 0.240969 0.362785 -0.089745 0.309884 -0.089748 0.140269 0.416580 -0.360037 -0.429266 -0.117269 -0.488181 -0.553497 0.408849 0.035381 -0.182466 0.649392 0.244855 0.062722 -0.134358 -0.161974 -0.276761 0.428161 0.509027 -0.347739 0.266667 -0.165015 0.084148 -0.247963 0.639840 -0.107902 -0.685840 0.078734 0.308421 0.297343 -0.210968 -0.225218 -0.131389 -0.453888 -0.904654 -0.003736 0.682362 0.141716 -0.051697 0.205630 0.414701 0.704569 0.184582 -0.006977 0.343141 -0.009420 -0.025135 0.264283 0.051022 0.281898 0.035996 0.256179 -0.306817 -0.482412 0.290624 -0.124350 -0.619946 -0.270287 0.220202 0.320057 -0.093494 -0.203457 -0.326843 -0.166657 0.110582 0.040313 0.171076 0.393343 0.041452 0.227108 0.308368 -0.037427 -0.237047 0.063855 -1.300993 -0.507978 -0.319607 0.875666 0.557089 -0.179813 -0.400782 0.523591 -0.192436 0.221779 0.144206 0.599609 -0.132299 -0.215917 -0.170323 -0.009153 0.193873 -0.097681 -0.241227 0.150923 -0.076550 -0.373090 -0.045960 0.366672 -0.202641 -0.191182 0.319507 -0.079323 0.396761 -0.708062 0.045221 -0.697266 0.066081 0.328758 -0.422949 0.049288 0.232877 -0.108905 0.413735 -0.292640 0.043075 0.305900 -0.029479 -0.260472 0.166715 -0.688902 0.608177 -0.189444 -0.034817 0.234205 0.256122 0.214587 0.073096 0.329528 -0.119409 0.017763 0.237231 0.004978 -0.039271 -0.034960 -0.177245 -0.097633 -0.269795 0.072753 -0.218123 -0.334518 -0.070026 -0.788745 -0.090349 0.138776 0.361355 -0.237377 0.291168 -0.044302 -0.325131 0.426311 0.022019 -0.219371 -0.095817 0.422670 0.337139 0.213143 -0.145635 0.163326 0.529685 0.247083 -0.211562 0.188737 -0.058885 0.044523 0.067561 0.400580 0.047622 0.281907 -0.267846 -0.074654 -0.030351 0.723128 -0.016599 -0.621916 -0.061140 -0.010890 0.223785 -0.088415 0.150096 0.105511 -0.030261 -0.051901 -0.143205 0.132138 0.426865 -0.938439 0.539759 -0.143067 -0.279034 0.366345 -0.095985 0.007862 -0.540794 -0.128489 0.326439 0.696556 0.280242 -0.115923 -0.163552 -0.343547 -0.098257 -0.000885 0.246998 -0.241274 0.342287 -0.105680 -0.353172 -0.109189 -0.633201 -0.001274 0.053655 -0.355437 0.084224 0.507016 -0.905456 0.387468 0.037252 -0.137217 -0.166987 0.192924 0.000342 -0.280748 -0.459861 -0.069050 -0.299483 -0.814187 -0.130037 -0.318150 0.067825 -0.078694 -0.182595 0.032306 -0.327209 0.695076 0.090427 0.422221 0.310694 -0.031618 0.588923 0.841264 -0.350695 0.187368 -0.298382 0.336609 -0.652909 0.149096 0.383866 -0.351333 0.120632 0.521935 0.124540 -0.029052 -0.357627 0.436594 -0.043519 -0.163981 0.396542 -0.437053 0.174859 0.457301 0.472309 -0.314049 -0.167007 -0.490885 -0.030484 -0.051993 -0.076759 0.054690 -0.475783 -0.127522 0.292736 -0.189189 -0.449676 0.075904 -0.162340 -0.346803 -0.181171 0.560807 0.389344 -0.435806 0.668357 -0.224128 0.281992 -0.389249 -0.113227 -0.258842 0.129215 -0.208740 -0.062804 -0.030256 -0.053897 0.010576 -0.209198 -0.312733 0.157290 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::~deque() = 0.107745 0.271634 0.636155 -0.201671 0.618841 -0.213580 0.047607 0.807174 -0.318424 -0.980952 -0.306132 -0.604814 -1.403779 0.476858 -0.170416 -0.441348 0.715004 0.074367 0.210668 -0.584904 0.072178 -0.335570 0.799659 0.451505 -1.181663 0.196346 -0.038039 0.959076 0.429835 0.695268 0.495718 -0.705675 -0.035386 0.744761 0.930428 -0.327013 0.186296 -0.111570 -1.285801 -1.389153 -0.342902 1.073652 -0.154428 0.438323 0.414274 1.420958 0.841123 0.520984 -0.638145 0.664647 0.656729 0.030744 0.535827 0.092888 -0.622092 -0.670699 0.168074 -0.738610 -0.677973 0.454770 0.096615 -1.635359 -0.278893 0.447722 1.003487 -0.554418 -0.183447 -0.052285 -0.088380 0.346900 0.177502 0.517839 0.725794 0.086205 0.961986 0.572347 -0.344246 -0.850019 0.300090 -2.638655 -0.732049 -1.191673 1.438623 0.997571 -0.633661 -0.637116 1.252110 0.229896 0.301850 0.892194 0.788658 0.040607 -0.198535 -0.969018 0.043058 0.654403 -0.650112 -0.428828 0.221091 0.729863 -0.275041 -0.027449 0.022438 -0.814581 -0.461844 0.233205 -0.906065 0.783686 -1.427122 0.244146 -1.560832 0.305230 0.697568 -0.961402 -0.140337 0.281641 0.313520 0.361225 0.568796 0.824738 0.085795 -0.017244 -0.175065 0.617754 -1.327514 1.053684 0.178741 -0.424433 0.420046 0.945861 0.282337 -0.167683 0.645482 -0.047820 -0.969059 0.810758 -0.054193 -0.160479 -0.521083 0.282929 0.771644 -0.536656 0.164189 -0.346783 -0.233737 -0.684831 -1.332399 -0.798901 0.604683 0.624687 0.064021 0.032313 -0.036695 -0.238763 0.590981 0.236648 -0.211145 0.542192 0.419901 0.423387 0.509592 -0.318292 0.123430 0.694262 0.179415 -0.529337 0.358918 0.070521 0.299182 -0.301174 0.387926 0.701022 -0.061307 0.087692 0.047849 -0.063757 0.605408 0.067216 -0.893952 0.035680 0.579912 -0.214985 -0.237462 0.183595 0.510302 -0.567569 0.337499 0.125859 0.072901 0.713742 -1.499008 0.641686 0.721588 0.129400 0.099577 -0.599516 0.369943 -1.199080 0.113495 0.437742 0.699152 0.197749 -0.125880 -0.246031 -0.736853 0.330017 0.348806 0.557053 -0.162746 0.490121 -0.346658 0.101508 -0.493242 -0.951150 -0.344239 0.655712 -0.515827 0.129116 0.556208 -1.703739 0.508982 -0.947026 -0.523597 -0.246577 0.105859 0.467397 -0.748496 -0.650036 0.065339 -0.434207 -1.902195 -0.938931 -0.236963 0.248511 -0.196182 -0.357449 -0.082830 -0.780056 1.018999 -0.217316 0.001164 0.477401 0.135793 1.221894 0.973768 -0.717318 -0.097716 -0.443456 0.668717 -0.823771 0.421919 0.684294 -0.056896 0.035066 1.124718 -0.017095 0.151416 -0.280697 0.819903 -0.305810 -1.034536 0.476533 -0.366578 0.430913 1.402711 0.550377 -0.632452 -0.506820 -1.154007 0.277587 0.290148 -0.271462 0.260251 -1.169403 -0.243655 0.890658 -0.107362 -0.902511 0.564603 -0.147778 -0.676106 -0.856163 1.463523 1.354566 -0.885723 1.079375 -0.602714 0.613899 -0.885508 -0.148791 -0.601346 -0.109206 0.476712 0.331471 0.014093 -0.044465 0.308409 -0.558586 -0.737911 -0.003141 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.042536 0.202646 0.137250 0.014529 0.261946 0.045219 0.146519 0.043450 -0.166282 -0.260925 -0.101344 -0.275340 -0.390466 0.356159 -0.000863 0.221497 0.573032 0.205335 0.058406 -0.154716 0.162289 -0.466104 0.549240 0.516521 -0.397215 0.141786 0.198008 0.150873 -0.017364 0.386131 -0.216827 -0.305618 0.284322 -0.283900 0.187103 -0.340544 -0.046032 -0.033648 -0.019005 -0.767846 -0.051349 0.100417 0.108345 -0.011992 -0.035599 0.307372 0.558357 0.288973 -0.072596 0.314782 0.107944 -0.139078 0.204804 0.136279 0.139697 0.193767 0.164828 -0.087166 -0.323029 0.105097 -0.069876 -0.681741 -0.044318 0.276554 0.467220 -0.098010 -0.058609 0.154805 -0.196458 0.037945 0.019394 0.196815 0.168328 0.054738 0.290602 -0.448646 0.008335 -0.592933 -0.209512 -1.181533 -0.410931 -0.387759 0.275637 0.025757 0.293141 0.053491 0.527802 -0.010094 0.175772 0.041743 0.586721 -0.539136 -0.182382 -0.185406 0.070418 0.140075 -0.261941 -0.068415 0.293507 -0.184974 -0.329244 -0.378065 0.513860 0.069315 -0.219733 -0.171466 -0.124811 0.357705 -0.574525 -0.384246 -0.659909 -0.295748 -0.143827 -0.531552 0.339724 0.106913 0.256911 0.311364 -0.073472 -0.426473 0.158248 0.301316 -0.027535 -0.342599 -0.156586 0.440905 0.069508 -0.053309 0.247420 0.146769 0.122563 0.528555 0.577791 -0.071190 -0.132402 0.172371 -0.287577 0.018461 -0.181839 -0.225410 0.124159 -0.450603 -0.037134 0.152328 -0.278958 0.031304 0.221666 -0.095167 0.221623 0.590196 -0.046629 0.199037 0.097632 -0.460716 0.332339 -0.206640 -0.160814 0.118672 0.396035 0.253019 -0.399645 -0.260152 0.096292 0.466488 0.231057 -0.410891 -0.297572 -0.213233 0.170509 0.019580 0.120475 0.162392 0.144400 -0.271192 -0.008523 0.075648 0.757328 -0.376188 -0.189787 0.133380 -0.139505 -0.116625 -0.732396 -0.095950 -0.281635 -0.092699 -0.195555 -0.031082 -0.004011 0.438959 -0.668305 0.414487 -0.338652 -0.252775 0.368365 -0.006837 -0.096766 -0.612998 0.097952 0.348854 0.441564 0.100642 0.093398 -0.063025 -0.418175 -0.060349 -0.034853 0.227431 -0.179097 0.331151 -0.057146 -0.379888 -0.276271 -0.123277 0.098554 -0.278989 0.006848 0.177330 0.394416 -0.769665 0.401905 -0.109554 -0.265708 0.224621 0.120588 0.222862 -0.400011 -0.508971 0.192719 -0.158183 -0.266023 -0.183318 -0.098109 0.189270 -0.042100 -0.352099 -0.049692 -0.398921 0.329423 -0.015798 0.194112 0.256901 0.128813 0.546448 0.235578 -0.421065 -0.196919 0.005742 -0.164630 -0.457895 -0.043515 -0.204594 -0.187812 0.354732 0.683113 0.157192 0.076262 -0.054184 0.436935 -0.515815 -0.216417 0.411900 0.282827 -0.052447 0.224270 0.393210 -0.360151 -0.252952 -0.234607 -0.056516 0.054206 -0.276564 0.124207 -0.500889 -0.036364 0.296191 -0.120991 -0.156024 0.243415 -0.023706 0.001308 -0.245768 0.494205 0.561322 -0.456918 0.107082 -0.257345 0.130278 -0.523223 -0.238139 -0.028978 0.399264 -0.167411 0.010519 0.233020 0.120995 0.028036 -0.257304 -0.162951 -0.244861 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::begin() = 0.036863 0.420172 0.456205 -0.148082 0.416983 0.283831 0.143694 0.163517 -0.264429 -0.324484 -0.173171 -0.561257 -0.655366 0.475978 -0.049466 -0.015843 0.773879 0.182877 0.010943 -0.151641 0.034716 -0.231736 0.704476 0.730406 -0.635751 0.257795 0.126788 0.256801 -0.072357 0.713503 -0.307077 -0.645398 0.141479 0.110151 0.337235 -0.299277 -0.164047 -0.243237 -0.259742 -1.141630 -0.079560 0.505574 0.042518 -0.025205 0.168146 0.321777 0.957479 0.348709 -0.091285 0.263288 0.154472 0.024728 0.316433 0.073465 0.228534 0.084793 0.496805 -0.192454 -0.403476 0.164019 -0.063744 -0.685235 -0.210165 0.464301 0.610990 -0.047451 -0.180503 -0.153182 -0.128275 0.041399 -0.063342 0.335676 0.323249 0.342122 0.331777 -0.029528 0.169397 -0.496682 0.015603 -1.189440 -0.617703 -0.528658 0.563651 0.462130 0.140547 -0.317534 0.786409 -0.098475 0.296903 0.085046 0.839579 -0.485559 -0.183111 -0.289827 -0.096133 0.243260 -0.247816 -0.077993 0.081039 -0.170697 -0.461537 -0.374076 0.478986 -0.056644 -0.354902 0.224994 -0.159253 0.457108 -0.685692 -0.200260 -0.810007 -0.144584 0.052615 -0.770973 -0.023891 0.092041 0.036625 0.360764 -0.158134 -0.374933 0.217806 0.250081 -0.182583 -0.154212 -0.638484 0.728678 0.160122 -0.142309 0.262403 0.197763 0.315487 0.424723 0.472383 -0.133475 -0.123447 0.227758 -0.209332 -0.083093 -0.213760 -0.087888 -0.027391 -0.421549 -0.053347 0.157627 -0.369471 0.072686 -0.453993 -0.218257 0.269525 1.150635 -0.198895 0.328405 0.047084 -0.604747 0.543496 -0.057937 -0.351036 0.054116 0.435609 0.515712 -0.448890 -0.286741 0.202450 0.722219 0.282638 -0.409275 0.084758 -0.112711 0.017806 -0.109614 0.403367 0.110535 0.172868 -0.330817 -0.088456 0.183490 1.010727 -0.252281 -0.786367 0.070430 -0.046408 0.054663 -0.404616 0.035881 -0.102097 -0.099311 -0.053759 -0.085874 0.203409 0.597352 -1.109382 0.608982 -0.111535 -0.453155 0.653626 -0.170687 -0.098115 -0.407882 0.151054 0.531753 0.644027 0.194655 -0.112941 -0.214533 -0.568580 -0.094879 0.056278 0.313476 -0.363462 0.497707 0.005496 -0.526921 -0.342977 -0.601914 0.023797 -0.206372 -0.423541 0.198526 0.349710 -1.120863 0.638948 0.023794 -0.260487 0.040574 -0.078808 0.109128 -0.543792 -0.663026 0.098855 -0.242124 -0.575339 -0.163830 -0.284655 0.198460 0.050041 -0.104682 -0.312820 -0.571287 0.588329 0.040462 0.389649 0.417947 0.171153 0.594942 0.717198 -0.439036 -0.115649 -0.285882 0.296763 -0.402480 -0.090577 0.014977 -0.409643 0.326602 0.874624 0.011518 0.024638 -0.431236 0.531297 -0.341887 -0.261847 0.406638 -0.162800 -0.084801 0.236726 0.464590 -0.326124 -0.286478 -0.504459 -0.134787 -0.058551 -0.352398 0.167656 -0.637782 -0.082122 0.503906 -0.286365 -0.440769 0.255870 -0.133308 -0.232177 -0.167383 0.674723 0.516603 -0.511905 0.538177 -0.432540 0.361179 -0.704225 -0.301578 -0.087544 0.017212 -0.213491 -0.104137 0.096170 0.104087 0.042718 -0.204124 -0.239285 -0.063488 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::end() = 0.036863 0.420172 0.456205 -0.148082 0.416983 0.283831 0.143694 0.163517 -0.264429 -0.324484 -0.173171 -0.561257 -0.655366 0.475978 -0.049466 -0.015843 0.773879 0.182877 0.010943 -0.151641 0.034716 -0.231736 0.704476 0.730406 -0.635751 0.257795 0.126788 0.256801 -0.072357 0.713503 -0.307077 -0.645398 0.141479 0.110151 0.337235 -0.299277 -0.164047 -0.243237 -0.259742 -1.141630 -0.079560 0.505574 0.042518 -0.025205 0.168146 0.321777 0.957479 0.348709 -0.091285 0.263288 0.154472 0.024728 0.316433 0.073465 0.228534 0.084793 0.496805 -0.192454 -0.403476 0.164019 -0.063744 -0.685235 -0.210165 0.464301 0.610990 -0.047451 -0.180503 -0.153182 -0.128275 0.041399 -0.063342 0.335676 0.323249 0.342122 0.331777 -0.029528 0.169397 -0.496682 0.015603 -1.189440 -0.617703 -0.528658 0.563651 0.462130 0.140547 -0.317534 0.786409 -0.098475 0.296903 0.085046 0.839579 -0.485559 -0.183111 -0.289827 -0.096133 0.243260 -0.247816 -0.077993 0.081039 -0.170697 -0.461537 -0.374076 0.478986 -0.056644 -0.354902 0.224994 -0.159253 0.457108 -0.685692 -0.200260 -0.810007 -0.144584 0.052615 -0.770973 -0.023891 0.092041 0.036625 0.360764 -0.158134 -0.374933 0.217806 0.250081 -0.182583 -0.154212 -0.638484 0.728678 0.160122 -0.142309 0.262403 0.197763 0.315487 0.424723 0.472383 -0.133475 -0.123447 0.227758 -0.209332 -0.083093 -0.213760 -0.087888 -0.027391 -0.421549 -0.053347 0.157627 -0.369471 0.072686 -0.453993 -0.218257 0.269525 1.150635 -0.198895 0.328405 0.047084 -0.604747 0.543496 -0.057937 -0.351036 0.054116 0.435609 0.515712 -0.448890 -0.286741 0.202450 0.722219 0.282638 -0.409275 0.084758 -0.112711 0.017806 -0.109614 0.403367 0.110535 0.172868 -0.330817 -0.088456 0.183490 1.010727 -0.252281 -0.786367 0.070430 -0.046408 0.054663 -0.404616 0.035881 -0.102097 -0.099311 -0.053759 -0.085874 0.203409 0.597352 -1.109382 0.608982 -0.111535 -0.453155 0.653626 -0.170687 -0.098115 -0.407882 0.151054 0.531753 0.644027 0.194655 -0.112941 -0.214533 -0.568580 -0.094879 0.056278 0.313476 -0.363462 0.497707 0.005496 -0.526921 -0.342977 -0.601914 0.023797 -0.206372 -0.423541 0.198526 0.349710 -1.120863 0.638948 0.023794 -0.260487 0.040574 -0.078808 0.109128 -0.543792 -0.663026 0.098855 -0.242124 -0.575339 -0.163830 -0.284655 0.198460 0.050041 -0.104682 -0.312820 -0.571287 0.588329 0.040462 0.389649 0.417947 0.171153 0.594942 0.717198 -0.439036 -0.115649 -0.285882 0.296763 -0.402480 -0.090577 0.014977 -0.409643 0.326602 0.874624 0.011518 0.024638 -0.431236 0.531297 -0.341887 -0.261847 0.406638 -0.162800 -0.084801 0.236726 0.464590 -0.326124 -0.286478 -0.504459 -0.134787 -0.058551 -0.352398 0.167656 -0.637782 -0.082122 0.503906 -0.286365 -0.440769 0.255870 -0.133308 -0.232177 -0.167383 0.674723 0.516603 -0.511905 0.538177 -0.432540 0.361179 -0.704225 -0.301578 -0.087544 0.017212 -0.213491 -0.104137 0.096170 0.104087 0.042718 -0.204124 -0.239285 -0.063488 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::~_Deque_base() = 0.162058 1.837287 1.773074 -1.408828 1.694031 2.509798 0.131412 -0.105788 -0.797269 -0.579080 -0.535676 -2.345244 -1.972510 1.437495 -0.528347 -0.599969 2.099291 -0.330755 -0.385305 -0.002464 -0.012828 1.360229 1.979824 2.103772 -2.072229 0.771330 0.422771 0.590147 -0.580222 2.453377 -0.955022 -3.095043 -0.506630 1.504020 0.828746 -0.018366 -0.915494 -1.380388 -0.412700 -3.158533 -0.251780 2.155074 -0.839770 -0.197554 0.939747 -0.576603 3.515289 0.900955 -0.225944 -0.118886 0.702695 1.440177 0.615834 -0.243690 0.901670 -0.127557 2.150512 -0.606850 -0.408552 0.072849 -0.255169 0.250002 -0.996078 1.945635 1.601495 0.358894 -0.978448 -1.176674 0.088608 -0.003474 -0.801649 1.420177 0.852982 2.358509 0.517457 1.138041 0.858550 -0.878229 1.178098 -0.770047 -1.742801 -1.069982 0.935095 2.578517 0.123857 -1.817523 2.646099 -0.690163 0.671469 0.601841 2.734780 -0.763339 -0.047305 -0.939518 -1.417849 0.369983 -0.153179 0.191083 -1.480657 -0.282178 -1.430796 -1.158838 0.119690 -0.331322 -1.210355 1.393140 -0.206517 1.050075 -1.167937 0.296817 -1.349237 0.859215 0.459959 -2.677328 -2.647037 -0.314901 -0.978258 0.335599 -0.927405 -1.376788 0.712963 0.576785 -1.149752 0.023742 -2.032472 1.973816 1.383129 -0.414970 0.133437 0.163042 1.592597 1.072300 0.039470 -0.616875 0.050059 0.139938 0.346262 -0.583667 -0.397769 0.774945 -1.228542 -0.511219 0.025010 1.209076 -0.896651 0.318106 -3.110101 -1.376035 0.440354 6.048180 -1.386003 1.333438 -0.001105 -2.095262 1.369313 0.310611 -1.589310 -0.444748 0.650462 2.386355 -1.729446 -0.733561 1.508651 2.484470 0.677913 -0.705285 1.804795 0.539686 -0.887915 -0.966260 1.845522 -0.235239 0.102882 -0.844783 -0.700928 1.187535 3.254546 -0.018141 -3.788193 0.187147 1.049264 0.972145 1.130190 0.424780 -0.193491 -0.070601 1.387737 -0.412028 1.614259 1.824506 -3.941762 1.675781 0.929537 -1.788975 2.191768 -0.547381 -0.415774 0.959994 0.512449 1.959389 1.602902 0.393418 -0.543928 -1.283790 -1.673846 -0.245955 0.633686 0.830318 -1.686265 1.650788 0.553147 -1.974713 -0.971814 -2.344237 -0.604043 -0.462836 -2.691048 0.553397 -0.112883 -3.386205 2.539854 1.162432 -0.010346 -0.629314 -1.486220 0.343545 -1.436345 -1.928891 0.241455 -0.754157 -1.282148 0.697905 -1.234699 0.504605 1.057240 1.844023 -2.269354 -1.912489 1.638916 0.655046 1.899557 1.327011 0.774093 0.752599 1.694281 -0.513910 -0.218992 -2.251251 2.982644 0.731048 -0.902367 0.267177 -1.612970 0.724519 1.961740 -0.885127 -0.769820 -2.584120 1.007452 -0.049877 0.269673 0.324347 -1.708637 -1.262156 -0.485369 0.837649 0.121767 -0.465442 -1.881912 -0.193933 -1.435199 -1.222193 0.332741 -1.187251 -0.295726 1.719020 -1.319817 -1.733908 0.392144 -0.326686 -1.001273 0.576739 1.408465 0.099626 -0.696806 2.136212 -1.776546 1.625455 -2.105019 -1.452526 0.110102 -2.224250 -0.693336 -1.158086 -0.891354 0.479387 0.022482 0.611230 -0.341114 0.645879 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.097473 1.840169 1.526155 -1.064946 1.574044 1.915908 0.218109 -0.294476 -0.516576 -0.522702 -0.576822 -1.469221 -1.603830 1.316047 -0.304127 -0.099817 2.129924 -0.176660 -0.210666 -0.406036 0.626013 0.130979 2.080291 2.051502 -2.153535 0.741114 1.368074 0.579956 0.112636 1.892539 -1.399693 -1.880481 0.071816 0.067680 0.738361 -0.599961 -0.626305 -1.384783 0.020446 -3.004899 -0.246102 0.420941 -1.111487 -0.135093 0.327412 0.430123 3.328337 0.983807 -0.618443 0.086794 0.901777 0.761041 0.286762 -0.004730 0.681379 0.374537 1.952641 0.501665 -0.310293 0.030618 -0.114982 -0.655223 -0.402239 1.797170 1.650701 0.124903 -0.630997 -0.017833 0.028223 -0.211213 -0.735554 1.213679 0.838978 1.833229 0.892113 -0.992772 0.601768 -2.234546 0.230921 -2.381970 -1.649412 -1.398299 0.284486 0.228381 0.788169 -0.569132 2.404852 -0.307335 0.875738 0.480066 2.614843 -1.564744 -0.129810 -0.952092 -1.037803 0.351112 -0.398345 0.321601 -0.437471 -0.863549 -1.322362 -1.679887 0.995381 0.095901 -1.190946 0.267838 -0.250626 1.094320 -1.323664 -0.435188 -1.704635 -0.215164 -0.301302 -2.592190 -1.217149 -0.231061 0.984286 0.345149 -0.444571 -2.066603 0.402528 1.387221 -0.761819 -0.898124 -0.610928 1.815477 1.510939 -0.228651 0.409315 -0.092175 1.381223 1.654166 1.500441 -0.435834 -0.287736 0.117356 -0.514202 -0.564370 -0.607243 0.344061 -0.194319 -0.852692 0.025416 1.514664 -0.873447 0.306297 0.074875 -1.215902 0.695004 5.700470 -0.886878 1.047396 -0.017881 -2.205553 0.970156 -0.230184 -1.533881 0.098629 0.946007 2.041965 -2.757348 -0.843843 1.053981 2.183028 0.704512 -1.679669 0.375131 -0.124614 -0.705607 -0.622457 1.060782 -0.100291 0.144963 -0.849390 -0.558096 1.137348 3.390697 -0.863749 -3.000605 0.361203 0.255636 0.224431 -0.798057 0.022353 -0.501468 -0.052797 0.766495 -0.400889 1.284757 1.772374 -4.037370 1.442965 -0.218675 -1.836929 1.826654 -0.056956 -0.408153 -0.020310 0.849096 1.945043 1.439650 0.404907 -0.290040 -0.952649 -1.641708 -0.263239 0.423093 0.792334 -1.371614 1.467440 0.650195 -2.020006 -1.155247 -1.315189 -0.074845 -0.664153 -1.420943 0.567103 -0.611884 -3.944809 2.436205 0.517959 -0.285267 0.146171 -1.203740 0.692883 -1.550218 -2.065444 0.642759 -0.315273 -0.515145 0.165708 -0.859915 0.843346 0.749834 1.024598 -1.934420 -2.343727 1.078938 0.217798 1.360553 1.260604 1.012228 1.647767 0.338615 -0.708994 -1.162093 -1.159171 1.751063 0.424301 -1.004703 -0.708743 -1.320938 1.061716 2.307855 -0.681021 -0.081913 -1.633732 1.085986 -1.539033 -0.112969 0.598431 0.596112 -1.325892 -0.199670 0.917749 -0.264975 -0.782256 -1.306034 -0.631268 -0.821798 -1.393916 0.393495 -1.385259 -0.219543 1.716551 -0.917671 -1.072294 0.789299 -0.447634 -0.143291 0.055301 1.173950 1.979989 -1.484975 0.878462 -1.506260 1.375002 -2.246511 -1.661871 0.406166 -0.998681 -0.436552 -0.833922 -0.212586 0.654686 -0.067861 0.012523 -0.055651 -0.114244 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.280910 0.613662 0.426447 -0.599673 0.844427 0.632485 0.320973 0.051308 -0.666269 -1.040547 -0.330176 -1.031987 -1.389410 1.282096 -0.228504 0.452377 2.095984 0.446534 0.043443 -0.534550 0.953454 -1.043138 1.853733 2.014472 -1.735615 0.263934 0.913270 0.779172 0.241084 0.996547 -0.054674 -1.413386 0.452316 -0.726259 0.965912 -1.177803 -0.166536 -0.018111 0.020002 -2.885518 -0.274307 0.573288 -0.105652 0.024633 0.073935 0.645630 2.005653 1.093749 -0.744913 0.780481 0.875257 0.220471 0.516575 0.174494 0.094786 0.377272 0.092692 -0.061909 -0.494528 0.316245 -0.207380 -1.487697 0.150149 1.411289 1.831774 -0.277386 -0.355897 0.413253 -0.145578 0.199629 -0.081347 1.000794 0.530010 0.479292 1.148071 -1.794876 -0.265078 -3.085269 0.092258 -3.780301 -1.375936 -1.269303 0.840214 0.484197 0.738523 -0.259233 2.191700 -0.189740 0.484950 1.173702 2.035650 -1.322093 -0.363830 -1.168401 -0.485547 0.575270 -0.821031 -0.099039 0.457998 -0.166642 -1.157254 -1.484060 0.899331 0.109820 -0.945198 -0.873886 -0.471973 1.338210 -1.613000 -1.022398 -1.981880 -0.052610 -0.275200 -2.252913 0.233016 -0.446271 0.611939 0.642826 -0.379751 -1.371093 0.385607 0.982599 -0.309643 -0.879388 -0.572037 1.570940 0.764930 -0.290043 0.442744 0.509139 0.499187 1.654503 1.555301 -0.468928 -0.509133 0.717625 -0.835953 -0.207241 -1.067918 -0.287039 0.956991 -1.312671 -0.338509 0.700721 -0.897722 -0.332382 0.842007 -1.001816 0.752910 4.177721 -0.302800 0.863879 0.559387 -1.574169 1.321209 -0.229427 -0.543608 0.607904 1.356390 1.152597 -2.121570 -0.968774 0.558287 1.913777 0.745119 -1.278540 -0.932550 -0.284618 0.170042 -0.235801 0.600134 0.298644 0.016762 -0.768904 -0.161360 0.698724 2.550773 -0.915488 -0.746055 0.181760 0.863901 -0.496242 -2.031926 -0.155221 -1.440835 -0.305297 0.179246 -0.067241 0.609989 1.660641 -2.917649 1.345391 -0.522797 -0.488672 0.866987 0.054028 -0.403057 -2.329193 0.552785 1.248605 1.462428 -0.011791 0.479733 -0.252633 -1.668306 -0.052131 0.217723 0.915873 -1.001767 1.381571 -0.272522 -1.125154 -1.007916 -0.183969 -0.450034 -0.955556 -0.342217 0.690266 0.884055 -2.408637 1.636286 -0.356649 -0.673225 0.545066 -0.202405 1.144345 -1.624883 -1.854597 0.860413 -0.241634 -0.814509 -0.475604 -0.529140 1.012039 0.114794 -0.592707 -0.776681 -1.928157 1.153687 -0.115091 1.079927 0.955057 0.395611 1.837786 0.332790 -1.042369 -1.053230 -0.744563 0.159342 -0.511645 -0.530344 -1.255345 -0.625445 1.104909 2.296199 0.025001 -0.212366 -0.280068 1.614586 -1.617817 -0.507815 0.859023 0.602856 -0.477149 0.533800 1.008605 -1.250901 -0.729231 -1.318974 0.335048 -0.043489 -1.059798 0.651718 -1.592286 -0.001511 1.039194 -0.453425 -0.482507 0.895998 0.371323 0.022620 -0.373299 1.725452 1.681549 -1.191194 0.215630 -1.356043 0.726941 -2.022858 -1.103591 -0.309352 0.568906 -0.295675 -0.110403 0.309161 0.706980 0.325488 -0.305003 -0.515182 -0.421894 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.189203 0.648831 0.640183 -0.123378 0.999220 0.462398 0.558507 0.497595 -0.714346 -1.261853 -0.222702 -1.270060 -2.039430 1.491257 -0.086755 0.357142 2.400694 0.603064 0.171158 -0.691710 0.725008 -1.289642 2.305219 2.319638 -1.946523 0.431075 0.767931 0.738032 0.211288 1.048379 -0.241514 -1.493472 1.009471 -0.798179 0.899904 -1.137743 -0.220377 -0.383005 -0.389652 -3.262926 -0.371362 0.748681 -0.381275 0.058461 0.116065 1.701311 2.378422 1.254122 -0.711917 1.309374 0.703944 -0.495225 0.731104 0.321870 0.164114 0.075095 0.079900 0.095730 -1.157868 0.473822 -0.251798 -2.598091 -0.331247 1.330194 2.059675 -0.458169 -0.399601 0.396760 -0.444864 0.271076 0.022077 1.033589 1.300854 0.373932 1.657736 -1.350864 -0.562518 -2.946873 -0.451777 -5.071759 -1.796414 -1.567337 1.774741 0.097499 0.654514 -0.522593 2.360202 0.041063 0.575309 1.141939 2.488864 -1.726688 -0.702211 -1.093650 0.045329 0.768895 -1.163562 0.042024 1.125323 -0.598528 -1.487706 -1.454874 1.346425 -0.083125 -0.994654 -0.783037 -0.623421 1.617892 -2.136467 -1.006916 -2.798674 -0.610834 0.015769 -2.528228 0.470335 0.329110 1.231206 1.311581 -0.408480 -1.056955 0.556991 0.873965 -0.217596 -1.036763 -0.409373 2.054158 0.609716 -0.094879 0.931931 0.992511 0.703434 1.826394 2.323982 -0.255555 -0.615873 0.752661 -1.004807 0.151466 -0.882397 -0.496187 1.066982 -1.540292 -0.002065 0.491046 -1.125973 -0.434570 0.663779 -0.651168 0.833393 3.500414 -0.166548 1.040683 0.569029 -1.708511 1.441396 -0.699292 -0.596011 0.670261 1.663712 1.193011 -1.821378 -0.950602 0.591868 2.188725 0.886848 -2.062568 -0.635977 -0.368613 0.596624 -0.540627 0.793352 0.676316 0.698475 -0.927125 -0.002340 0.887905 2.858578 -1.487748 -1.544654 0.219091 0.260043 -0.018397 -2.439375 -0.120664 -0.688402 -0.417278 0.143272 0.021163 0.316737 1.858079 -3.102921 1.562091 -0.712816 -0.665480 1.236916 0.240702 -0.612982 -2.346463 0.579411 1.395135 1.718606 0.739367 0.059765 -0.291361 -1.857337 -0.119809 0.274433 0.923501 -0.781511 1.585386 -0.450083 -1.106064 -1.214999 -0.897009 -0.055157 -0.754978 -0.346855 0.806378 1.118484 -3.448595 1.700844 -0.515198 -1.219839 0.302484 -0.013345 1.212721 -1.824556 -2.290684 0.789052 -0.827697 -1.886911 -1.003075 -0.613934 0.710372 0.263280 -0.902247 -0.512987 -2.144362 1.947230 -0.049132 1.227482 1.130795 0.401281 2.784445 0.838593 -1.725949 -0.986858 -0.802049 0.543549 -1.348106 -0.527012 -0.962474 -0.743936 1.199590 2.672826 0.146773 -0.010594 -0.697561 1.789059 -2.277574 -0.984154 1.422368 1.335506 -0.098324 1.286730 1.488819 -1.532899 -0.761166 -1.382950 -0.182668 0.015880 -1.222888 0.576748 -2.057120 -0.047095 1.195829 -0.417189 -0.639965 0.906527 -0.045915 -0.084158 -0.837630 2.033179 2.953944 -2.178544 0.542789 -1.489727 1.072042 -2.260579 -1.357153 -0.091474 0.852654 -0.292095 -0.080117 0.666204 0.433419 0.395152 -1.391710 -1.044533 -0.312485 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.123887 0.522906 0.685557 -0.438488 1.206033 0.495682 0.274420 0.280557 -0.613000 -0.978585 -0.344651 -1.023631 -1.639356 1.125311 -0.171510 0.397339 1.558240 0.094065 0.050595 -0.590905 0.778911 -0.868835 1.642658 1.198395 -1.631709 0.333080 0.518727 0.915129 0.276049 1.163402 -0.268381 -1.085303 0.363147 -0.343153 0.868537 -0.737658 -0.022248 -0.162010 -0.399881 -2.244242 -0.362241 0.767106 -0.466004 0.292557 0.131782 1.381792 1.713580 0.969747 -0.728044 0.914304 0.835252 -0.248306 0.613424 0.261895 -0.161167 0.023466 0.473588 -0.114391 -0.823014 0.306964 -0.182163 -1.847559 -0.094284 0.959107 1.590889 -0.585119 -0.410155 0.585459 -0.242028 0.211213 0.053834 0.922055 0.790567 0.264918 1.327964 -0.841158 -0.309366 -2.036764 -0.042725 -3.492154 -1.226767 -1.338780 0.996319 0.432852 0.349616 -0.490903 2.085832 -0.011125 0.223771 0.918677 1.751765 -1.155037 -0.339812 -1.236460 -0.122936 0.371946 -0.866404 -0.398280 0.624542 0.067184 -0.861502 -0.940468 0.706505 -0.353596 -0.766593 -0.505200 -0.875600 1.320057 -1.759532 -0.687177 -2.075551 0.003880 0.001629 -1.890535 0.085703 0.214339 0.729161 0.572964 0.165874 -0.623666 0.432885 0.777676 -0.355432 -0.458702 -0.566720 1.636524 0.716336 -0.279669 0.588283 0.830070 0.535818 1.121081 1.622411 -0.241484 -0.930942 0.733704 -0.479997 0.013541 -0.701259 -0.025885 0.762575 -1.195626 -0.097578 0.441329 -0.595221 -0.180726 0.050246 -0.846057 0.672856 2.696822 -0.235092 0.535184 0.147313 -1.206596 1.174430 -0.163664 -0.478737 0.595039 0.883737 0.933142 -1.296704 -0.813180 0.729872 1.475082 0.551990 -1.567230 -0.302035 -0.209004 0.428364 -0.322232 0.437736 0.815110 0.163150 -0.399217 -0.070266 0.209241 2.321394 -0.924685 -1.319386 0.522075 0.332341 -0.379716 -1.683802 -0.209274 -0.490942 -0.646586 0.264783 0.036538 0.312215 1.446382 -2.473818 1.160557 -0.125642 -0.622327 0.934813 -0.283286 0.012734 -1.763201 0.090037 1.043928 1.205981 0.327615 0.042329 -0.423081 -1.376986 0.281254 0.299092 0.735797 -0.508218 1.053732 -0.328956 -0.742027 -0.846480 -0.718328 -0.346777 -0.146106 -0.409607 0.511207 0.569873 -2.735058 1.287299 -0.613149 -0.648804 0.347983 0.136723 1.084073 -1.145920 -1.541197 0.724198 -0.513623 -1.464111 -0.855193 -0.300565 0.576056 0.146019 -0.577528 -0.588053 -1.864867 1.213328 -0.217769 0.677699 0.800815 0.411059 1.840729 0.729027 -1.240180 -0.792891 -0.671391 0.466335 -0.735177 -0.050821 -0.509075 -0.327883 0.867030 1.770256 0.153028 0.194623 -0.653059 1.318159 -1.462190 -0.770956 0.990575 0.570862 -0.327054 1.022923 1.074365 -0.856094 -0.717438 -1.237894 0.087514 -0.225811 -0.779756 0.376849 -1.503153 -0.254791 1.119049 -0.301726 -0.750805 0.764076 0.022530 -0.344400 -0.954466 1.955092 2.195751 -1.449827 0.579687 -1.101569 0.956364 -1.657578 -0.886757 -0.207422 0.400455 -0.039426 0.037187 0.538503 0.402185 0.283627 -0.827988 -0.657145 -0.503608 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__deque_buf_size(unsigned long) = -0.344857 -0.442576 -0.244121 -0.445243 0.257755 -0.042797 0.043426 -0.355504 -0.712604 -0.347823 0.124852 -0.797734 -0.200038 0.577765 -0.148597 0.530652 0.815753 0.196861 -0.148805 -0.185461 0.523212 -0.487390 0.480700 0.886886 -0.304389 0.032596 -0.265112 0.192211 -0.085632 0.075892 0.163691 -0.680776 0.047553 -0.528338 0.159584 -0.251300 -0.299393 0.701251 0.612639 -0.953837 0.036625 0.428973 0.389454 0.114446 0.175952 0.026091 0.315902 0.094735 0.005371 0.734904 0.322511 -0.130678 0.406966 -0.053565 0.311032 0.385835 -0.047976 -0.213913 -0.127150 0.009175 -0.412981 0.174850 0.212421 0.339911 0.545077 -0.090519 -0.443848 0.054934 0.163087 0.103727 0.259759 0.497095 -0.135760 -0.216743 0.268964 -0.715439 -0.104523 -1.269051 0.291116 -1.275808 -0.464006 0.266996 0.514978 0.587710 0.114601 -0.091732 0.874796 -0.458228 -0.485482 0.383024 0.616364 -0.237512 -0.102718 0.007811 -0.360554 -0.254196 0.048708 -0.181190 0.203503 0.521415 -0.532267 -0.366258 0.328420 -0.055240 -0.206563 -0.409205 0.013427 0.495284 -0.656895 -0.419613 -0.194133 0.696099 0.243440 -0.593852 0.071129 -0.470133 -0.362380 0.225359 -0.834060 -0.398398 0.346224 -0.102331 -0.354984 -0.015339 -0.189848 0.329487 0.274450 0.018909 -0.214230 0.390967 -0.021897 0.774908 -0.089820 -0.491283 0.163778 0.207784 0.028669 0.189462 -0.285152 -0.331473 0.122462 -0.475128 -0.063109 -0.198866 -0.338282 -0.115826 0.159529 -0.118975 -0.408000 1.250051 -0.415122 0.759461 0.512277 -0.179228 0.499205 -0.008754 0.383888 0.206276 0.613922 0.232574 -0.514660 -0.536514 0.755996 0.699834 0.088269 -0.404355 -0.449520 0.334139 0.320225 0.177576 0.359599 -0.109784 0.100150 -0.123355 -0.013543 -0.040765 1.263590 -0.149324 0.236942 0.042383 0.490221 0.002189 -0.728696 -0.154578 -0.963827 -0.076026 0.062067 0.257987 0.218993 0.711424 -1.094076 0.485021 -0.234872 0.212837 0.397629 0.293113 -0.315393 -1.559040 -0.557252 0.066052 0.711194 -0.122488 0.339909 0.115434 -0.615783 0.085893 0.000000 0.259845 -0.760890 0.674806 -0.172948 -0.414959 0.188955 0.231182 -0.512927 -0.324441 -0.267146 0.229267 0.791491 -0.517558 0.258665 0.238937 -0.010261 0.223465 0.275479 0.664835 -0.159975 -0.312988 0.359437 -0.291721 -0.310038 -0.052335 -0.105455 0.201591 -0.192302 -0.317919 -0.365779 -0.545614 0.757833 -0.110442 0.886504 0.084505 -0.550075 0.183502 0.112404 -0.290435 -0.172324 -0.125496 -0.328388 -0.355732 -0.019443 -0.418245 -0.199410 0.347804 0.347707 0.297886 -0.438645 0.094531 0.604004 -0.297647 0.398096 0.299486 -0.225854 -0.244466 0.193140 0.424993 -0.486420 0.184668 -0.562442 0.130017 -0.502421 0.052255 0.502260 -0.116033 0.035622 -0.310517 -0.296216 0.137939 0.239218 0.504252 -0.161139 0.176568 0.922878 0.179894 0.176165 0.052703 -0.574138 0.154136 -0.413927 -0.268318 -0.281339 0.629905 -0.589591 -0.234380 -0.135781 0.528305 0.274081 -0.167842 -0.377783 0.286068 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.057648 0.648388 0.418300 0.049222 0.615643 0.222793 0.336686 0.238464 -0.260549 -0.715942 -0.232931 -0.776189 -1.220647 0.832532 0.025635 0.255540 1.368150 0.310009 0.120440 -0.347801 0.392143 -0.930212 1.319355 1.237604 -1.090699 0.323643 0.574143 0.359591 0.062952 0.740125 -0.394868 -0.778759 0.627881 -0.515564 0.573141 -0.598266 -0.128533 -0.402531 -0.248906 -1.835166 -0.217536 0.370446 -0.032172 -0.028688 -0.038314 0.945899 1.558136 0.705193 -0.344724 0.558553 0.300163 -0.414340 0.457993 0.246074 0.217772 0.136393 0.299242 0.087055 -0.776112 0.237807 -0.134751 -1.648854 -0.216417 0.749057 1.146751 -0.220055 -0.179444 0.365739 -0.370245 0.096607 -0.125462 0.561220 0.744484 0.317742 0.902177 -0.863652 -0.127058 -1.497464 -0.436032 -2.956595 -1.066016 -1.038067 0.775387 -0.071602 0.540923 -0.177820 1.323237 0.061694 0.481120 0.336563 1.576794 -1.171456 -0.425279 -0.639793 0.123088 0.416289 -0.674721 -0.002312 0.809099 -0.568011 -0.866136 -0.861040 1.010814 0.057908 -0.569558 -0.360935 -0.346520 0.875398 -1.208022 -0.669738 -1.706215 -0.760459 -0.133458 -1.461703 0.538916 0.371693 0.637926 0.795507 -0.144451 -0.868379 0.322135 0.665000 -0.088597 -0.771568 -0.306094 1.239040 0.306813 -0.073865 0.652948 0.513023 0.504170 1.097123 1.516360 -0.062707 -0.368352 0.318753 -0.710337 0.021170 -0.392729 -0.399009 0.538530 -0.936699 -0.111693 0.392789 -0.649290 -0.038407 0.449685 -0.384568 0.567403 1.760953 -0.129355 0.503463 0.160992 -1.110605 0.908865 -0.469411 -0.557400 0.248089 0.945486 0.802398 -1.084055 -0.561993 0.351575 1.221864 0.507021 -1.171925 -0.426015 -0.362733 0.338112 -0.272322 0.385481 0.423542 0.459451 -0.590308 -0.027964 0.493696 1.728698 -1.006449 -0.931220 0.273045 -0.175619 0.002760 -1.636738 -0.133328 -0.437667 -0.252754 -0.257526 -0.051706 0.117633 1.075478 -1.670400 0.950830 -0.554586 -0.631906 0.938174 -0.005164 -0.291615 -1.388628 0.427409 0.984947 0.936815 0.412449 -0.051024 -0.336349 -1.035568 -0.123846 0.059009 0.558660 -0.405347 0.865604 -0.288861 -0.756633 -0.803140 -0.569226 0.126724 -0.527700 -0.130301 0.411960 0.735290 -1.946965 1.141594 -0.270352 -0.672183 0.235696 0.027125 0.499419 -1.048264 -1.363043 0.402245 -0.518344 -0.954242 -0.537176 -0.324595 0.374364 0.109108 -0.722020 -0.255295 -1.188536 1.030084 -0.017912 0.603514 0.658266 0.444346 1.571975 0.724905 -1.060316 -0.564957 -0.243412 0.002300 -0.896628 -0.314132 -0.631732 -0.472785 0.770310 1.639203 0.091430 0.191017 -0.410929 0.920048 -1.369886 -0.668318 0.921354 0.719280 -0.159475 0.585349 0.906851 -0.761352 -0.585450 -0.742937 -0.258990 0.005284 -0.815542 0.154107 -1.287063 -0.161104 0.865580 -0.392299 -0.380155 0.531499 -0.127151 -0.016686 -0.585004 1.090341 1.645772 -1.383090 0.275954 -0.792841 0.550824 -1.362531 -0.784070 0.087747 0.682662 -0.180022 -0.107270 0.599926 0.150511 0.086878 -0.861955 -0.521288 -0.403850 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::deque() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_base() = 0.005082 0.380833 0.596442 -0.581916 1.257868 0.388255 0.378473 0.045049 -0.356303 -0.761964 -0.200337 -0.324188 -1.177589 0.477920 -0.475743 0.040149 0.698194 -0.235790 0.383800 -0.671180 0.682906 -0.643818 1.329496 0.728110 -1.550335 0.253194 0.034619 0.776773 0.136076 1.396673 0.155786 -0.801205 0.192421 0.120128 1.074366 -0.478957 -0.150921 -0.093873 -0.613006 -1.349325 -0.417454 0.770256 -0.301903 0.671276 0.419966 1.041880 1.184975 0.581341 -0.738362 0.960579 0.720889 0.094445 0.770581 0.281501 -0.100639 -0.151774 0.574994 -0.336470 -0.421627 0.275434 -0.636330 -1.169032 0.324101 0.731555 1.247856 -0.493693 -0.135508 -0.011097 -0.470930 0.365657 0.314764 1.039386 0.360228 0.063678 1.263932 -0.348894 0.004249 -1.486196 0.068666 -2.296001 -0.818508 -1.176285 0.491919 0.702154 0.477917 -0.398147 1.526604 0.307134 0.199955 0.608261 0.693823 -0.355754 0.169818 -0.646400 -0.463886 -0.210783 -0.330668 -0.271412 0.078555 0.381366 -0.525697 -0.290272 0.279620 -0.430354 -0.355439 -0.387564 -0.920631 0.807675 -1.330233 -0.239821 -1.299224 0.341333 -0.227502 -1.327288 0.031313 -0.363717 0.512139 0.062160 0.526340 0.219753 0.367106 0.698683 -0.308647 -0.070726 -0.662848 1.258313 0.775460 -0.056921 0.196415 0.509488 -0.391938 0.406554 1.247141 0.208738 -0.874489 0.449584 -0.032702 0.117742 -0.277373 0.531867 0.789290 -0.612398 -0.232418 0.026193 0.029080 -0.249136 -0.352824 -0.913293 0.631021 1.910741 -0.474261 0.552596 0.170264 -0.731584 0.624433 0.451815 0.265789 0.857512 0.822522 0.288139 -0.724099 -0.590770 0.454801 0.608763 0.043025 -1.076264 -0.202509 0.073647 0.214244 -0.111639 0.027664 0.315135 -0.116295 -0.397219 0.179681 -0.522787 1.381294 -0.317541 -0.985062 0.376797 0.474936 -0.650655 -0.550013 -0.218016 -0.360577 -0.434336 0.200757 -0.074411 -0.005366 0.759128 -1.941560 0.646020 -0.102809 -0.103766 0.708629 -0.387601 0.368400 -1.396146 -0.022671 0.325773 0.447664 0.122527 -0.126724 -0.146295 -0.801591 0.746194 -0.045482 0.652438 -0.576112 0.781766 -0.321280 -0.687395 -0.657835 -0.981077 -0.235479 0.251144 -0.545359 0.099518 0.364876 -1.904318 0.395272 -0.483004 -0.627590 0.400436 0.413012 0.819803 -0.266726 -0.845878 0.326876 -0.626466 -1.207712 -1.017869 -0.118941 0.159204 -0.019857 -0.294380 -0.805372 -1.135545 0.820822 -0.535428 0.410892 0.670652 0.427692 1.506128 0.584477 -1.019731 -0.773857 -0.590733 0.564215 -0.356455 -0.031628 -0.087158 -0.332898 0.306618 1.231416 0.237237 0.415427 -0.324279 1.322585 -0.754787 -0.409718 0.812260 -0.005293 -0.045365 0.903387 0.758278 -0.184762 -0.704822 -0.725484 0.304239 0.037581 -0.230840 0.673722 -0.990185 -0.055725 0.308645 0.187761 -0.805710 0.358860 -0.036457 -0.074516 -0.821534 1.501602 1.455506 -0.883083 0.392191 -0.296006 0.499512 -0.926080 -0.126553 -0.615378 -0.119272 0.426678 0.437304 -0.007303 0.644409 0.594930 -0.461013 -0.169753 -0.331830 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.053172 0.402366 0.318813 -0.083756 0.461611 0.168547 0.216516 0.156755 -0.260168 -0.522489 -0.154892 -0.471152 -0.796841 0.606238 -0.064596 0.137441 1.010996 0.264104 0.094311 -0.328197 0.306898 -0.572391 0.977272 0.935371 -0.851524 0.205409 0.446001 0.328297 0.128549 0.532456 -0.202066 -0.606364 0.427920 -0.321060 0.382018 -0.525853 -0.054196 -0.217980 -0.183473 -1.362770 -0.125710 0.148300 -0.117936 0.013624 0.002782 0.674775 1.057275 0.522250 -0.298068 0.476791 0.340636 -0.077619 0.237753 0.165158 0.085567 0.100360 0.187999 -0.024661 -0.466335 0.171409 -0.067537 -1.100290 -0.126471 0.584695 0.857975 -0.158446 -0.097140 0.212203 -0.227548 0.092209 -0.012521 0.377715 0.463325 0.225593 0.620441 -0.671719 -0.147701 -1.257742 -0.258149 -2.184491 -0.727512 -0.745480 0.603973 -0.049083 0.316248 -0.021479 0.954278 0.059822 0.350627 0.376444 1.055629 -0.763809 -0.288928 -0.447374 -0.009174 0.349840 -0.479149 0.017692 0.409049 -0.256961 -0.585727 -0.659428 0.652008 0.013088 -0.419754 -0.306247 -0.247284 0.634799 -0.964868 -0.430902 -1.160278 -0.355310 -0.071551 -1.044045 0.248211 0.113951 0.672224 0.481437 -0.080289 -0.556882 0.184971 0.495350 -0.084585 -0.460222 -0.198136 0.786195 0.263826 -0.063899 0.394439 0.298239 0.310125 0.805669 1.008905 -0.114445 -0.287735 0.281166 -0.458771 -0.034811 -0.388568 -0.210340 0.398181 -0.663614 0.069500 0.295291 -0.467393 -0.194353 0.369836 -0.333021 0.435793 1.412708 -0.065394 0.375480 0.176407 -0.777853 0.456814 -0.317844 -0.328631 0.268215 0.678108 0.505823 -0.698965 -0.419243 0.184801 0.856781 0.378334 -0.806664 -0.325073 -0.251792 0.175741 -0.142564 0.252673 0.258753 0.195752 -0.399473 -0.040573 0.345872 1.198839 -0.568767 -0.593571 0.128806 0.044036 -0.098085 -1.005204 -0.076478 -0.277156 -0.122783 0.004264 -0.039564 0.142240 0.785323 -1.408718 0.657984 -0.340973 -0.332670 0.474667 0.066278 -0.201549 -0.930962 0.317572 0.654176 0.720567 0.233550 0.095079 -0.127424 -0.749958 -0.084638 0.078811 0.417635 -0.332497 0.588856 -0.059584 -0.574739 -0.558515 -0.309072 0.068874 -0.308263 -0.104193 0.299577 0.415531 -1.578479 0.779959 -0.262182 -0.473462 0.192833 -0.032351 0.476012 -0.793607 -0.942723 0.321558 -0.276408 -0.643198 -0.366096 -0.218744 0.370518 0.031794 -0.319700 -0.215023 -0.834314 0.669562 -0.015469 0.388321 0.470856 0.268010 1.135565 0.182369 -0.646614 -0.462248 -0.184165 0.139325 -0.588107 -0.208047 -0.301359 -0.325461 0.524433 1.196003 0.052893 0.030004 -0.182136 0.731793 -0.961579 -0.429618 0.598805 0.636671 -0.097626 0.501245 0.615727 -0.631984 -0.422534 -0.529324 -0.097468 0.080202 -0.558014 0.224881 -0.872918 -0.021413 0.586572 -0.166836 -0.315182 0.445383 -0.076013 0.014583 -0.356826 0.788124 1.249552 -0.905703 0.223032 -0.568042 0.370604 -0.988759 -0.581315 -0.015061 0.353560 -0.106370 -0.000394 0.210854 0.214578 0.082202 -0.435426 -0.333680 -0.223769 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -0.069960 4.663618 5.555731 -5.041240 6.985055 7.937218 0.816766 -1.300833 -3.101436 -1.681621 -1.364074 -7.970812 -7.562761 5.186948 -2.000625 -0.111728 6.875972 -2.165308 -1.551156 -1.282320 2.538384 2.481314 7.715852 6.831123 -8.430407 2.396137 0.806671 3.288056 0.017321 7.502108 -3.769377 -7.677532 -1.037483 2.509684 3.431223 0.059505 -2.520865 -3.801957 -0.645283 -10.395759 -1.282004 6.188106 -2.954165 0.986320 2.791216 2.705610 11.319228 3.630901 -2.001275 1.281415 3.805035 1.716809 3.175239 -0.346900 2.115645 -0.501922 8.040856 0.136558 -1.978295 -0.231588 -1.533089 -1.219132 -1.780321 6.457746 6.992583 -0.093766 -3.463066 -1.367028 0.859622 0.229940 -1.516912 5.977979 3.310421 6.238007 4.452508 1.803773 2.707082 -4.800264 2.914358 -6.216134 -6.118815 -4.097560 3.174791 5.736720 1.357253 -5.963071 10.415607 -1.405802 0.593879 2.235076 9.129655 -3.884128 -0.065074 -3.918951 -4.461704 -0.128921 -1.382820 0.291080 -1.837121 0.097262 -5.173679 -3.684458 1.065641 -1.592614 -4.197689 2.910845 -2.225243 4.344505 -4.841956 -0.111703 -5.405244 2.625555 1.226096 -9.938411 -6.747505 -1.412540 -1.205876 0.676033 -1.617805 -3.910707 2.173976 2.675991 -4.002178 -0.588338 -5.708500 7.941531 6.274567 -1.010795 0.722373 1.948166 4.385101 4.354499 2.390301 -1.846153 -1.788328 0.827738 0.269002 -0.643585 -1.616177 2.532620 -0.750542 -2.868048 -0.459498 3.246318 -2.119394 1.700728 -6.632318 -4.366645 1.138933 19.732180 -4.469627 4.868826 0.321047 -6.433336 5.510401 0.957738 -3.545681 0.763699 2.797335 6.853110 -7.923143 -3.609198 6.225336 8.094920 1.628111 -5.965777 4.985482 2.156649 -1.493540 -3.619147 4.867759 0.644084 0.606532 -2.040238 -1.524537 2.595037 12.877632 -2.099155 -12.461089 2.038955 2.211583 1.766360 0.122274 -0.000805 -0.628739 -1.562548 3.562961 -0.091757 4.821656 6.900398 -13.516484 5.446968 2.372411 -5.540481 8.742258 -2.028962 -1.189058 0.077437 0.470217 5.725049 5.066752 1.787676 -3.187867 -3.755312 -6.453145 1.014181 1.970485 2.751577 -5.552291 6.051677 0.986789 -5.900097 -3.419331 -7.811287 -2.332410 -0.179839 -8.051585 1.904701 -1.311791 -13.040525 7.754331 2.354968 -1.002481 -0.824366 -3.509033 2.620477 -3.958949 -6.263833 1.603070 -3.101705 -5.529720 -1.135384 -2.824806 1.412747 3.110674 4.345712 -8.874681 -8.966123 6.661152 -0.078310 6.431321 4.288853 2.040538 4.411484 5.883849 -3.376428 -3.002998 -6.595755 7.887617 1.938881 -3.154038 0.062169 -4.600256 2.974844 6.571998 -2.394770 -0.550335 -7.886015 4.422081 -2.698739 -0.353038 2.272634 -2.872883 -4.713151 0.305228 3.853061 0.000883 -1.703203 -6.358076 -2.044001 -5.175192 -4.070682 2.249964 -4.200671 -0.861943 4.777343 -3.629644 -4.783540 2.036558 -1.062321 -3.297258 -0.133895 7.786444 5.096005 -4.068763 5.402204 -6.532838 6.544580 -7.421504 -4.937688 0.751418 -5.561492 -1.802091 -2.834128 -1.017498 2.696701 1.061368 -1.519894 -2.009553 1.250547 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.096239 0.499968 0.926542 -0.520466 0.525887 0.402312 0.112524 0.230812 -0.494564 -0.295316 -0.223042 -0.759122 -0.713139 0.614207 -0.148313 -0.271932 1.014489 0.242724 -0.124928 -0.238903 0.007420 -0.111275 0.801432 0.982235 -0.899187 0.343540 0.078652 0.509741 0.063304 1.086834 -0.488197 -0.748043 -0.144250 0.476020 0.556125 -0.420524 -0.250992 -0.330189 -0.470314 -1.555800 -0.032570 0.778634 0.089111 -0.045143 0.389352 0.440343 1.232801 0.409227 -0.158998 0.158287 0.320524 0.220005 0.384740 -0.014452 0.355935 0.089999 1.102261 -0.099048 -0.384584 0.234650 -0.038916 -0.599635 -0.165899 0.690561 0.778653 0.030590 -0.270186 -0.522243 0.143782 0.033502 -0.032890 0.412988 0.291283 0.560127 0.312700 0.140664 0.525722 -0.649825 0.342069 -1.228531 -0.755470 -0.595708 0.848838 0.695106 -0.063299 -0.599676 1.005292 -0.222960 0.393447 0.083330 0.961154 -0.356393 -0.159901 -0.386084 -0.435093 0.357167 -0.177359 -0.160584 -0.085913 -0.026114 -0.535744 -0.310673 0.496468 -0.134400 -0.485478 0.757540 -0.144651 0.583352 -0.748349 -0.028987 -0.793847 0.145857 0.232328 -0.958594 -0.279802 -0.222941 -0.055278 0.250044 -0.257746 -0.309585 0.226229 0.251999 -0.404538 0.168615 -1.275356 1.047001 0.247268 -0.245477 0.147561 0.091282 0.395100 0.165886 0.311930 -0.335677 -0.090741 0.349847 -0.266225 -0.254981 -0.404844 0.026782 -0.004620 -0.350521 -0.159040 0.093024 -0.456987 0.158413 -0.812831 -0.247003 0.322942 1.970433 -0.337015 0.482402 0.011283 -0.673862 0.787241 0.300408 -0.429788 0.085189 0.470996 0.653380 -0.719624 -0.369974 0.221914 0.934005 0.362780 -0.443022 0.298216 -0.072377 -0.276709 -0.058185 0.611935 -0.042617 0.019680 -0.379557 -0.217784 0.169122 1.264593 -0.004136 -1.429171 -0.076152 0.004939 -0.007174 -0.177547 0.169568 0.046429 -0.015278 -0.076311 -0.170968 0.543479 0.763620 -1.852271 0.838220 0.068138 -0.640380 1.025901 -0.403654 -0.074257 -0.415563 0.140393 0.621984 0.938617 0.198722 -0.417093 -0.187870 -0.710656 -0.122225 0.087100 0.399458 -0.596263 0.605696 0.185570 -0.668782 -0.330304 -1.044293 -0.060762 -0.087215 -0.823331 0.217858 0.067917 -1.499784 0.819041 0.139080 -0.164201 -0.052554 -0.278048 -0.128288 -0.688841 -0.720996 -0.036350 -0.091796 -0.701638 -0.291950 -0.440042 0.327151 -0.011387 0.201957 -0.674177 -0.808918 0.707980 -0.141554 0.575037 0.557542 0.110073 0.564926 1.267953 -0.257582 -0.155127 -0.375440 0.605234 -0.251298 -0.135016 0.228231 -0.614945 0.280926 1.006031 -0.153166 0.086777 -0.676868 0.725244 -0.093123 -0.341106 0.316219 -0.709198 -0.137155 0.252829 0.486741 -0.399929 -0.320151 -0.752236 -0.361024 -0.079931 -0.334359 0.369345 -0.637903 -0.036553 0.586646 -0.357726 -0.690522 0.303298 -0.208854 -0.457748 0.017997 0.922000 0.605701 -0.424171 0.922815 -0.584502 0.586987 -0.852703 -0.275593 -0.234260 -0.393388 -0.326109 -0.115808 -0.049865 0.232656 0.086510 -0.025512 -0.200853 0.165317 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator() = 0.100547 0.592691 0.939344 -0.497284 0.534410 0.460509 0.118140 0.038051 -0.451386 -0.122393 -0.290402 -0.682036 -0.568323 0.592537 -0.021815 -0.004629 1.027851 0.218847 -0.167723 -0.263660 0.173592 -0.423794 0.822501 1.044627 -0.920269 0.447837 0.295807 0.515397 0.164983 1.131723 -0.828632 -0.414765 -0.159896 0.081238 0.580477 -0.547948 -0.327370 -0.328762 -0.152414 -1.662372 -0.056919 0.535753 0.206730 -0.052937 0.304873 0.432141 1.314882 0.417808 -0.173246 0.154213 0.304061 -0.034330 0.500871 -0.004233 0.472712 0.406841 1.414579 0.246375 -0.284359 0.222134 -0.013152 -0.652259 0.064192 0.702664 0.808693 -0.002416 -0.342896 -0.283036 0.246145 -0.109562 -0.116160 0.526842 0.103321 0.559671 0.333347 -0.463187 0.812346 -0.843933 0.286008 -1.164962 -0.823259 -0.600479 0.504051 0.308903 0.295308 -0.387866 1.102168 -0.302233 0.400237 -0.207822 0.964172 -0.666498 -0.082904 -0.323299 -0.424338 0.248725 -0.128246 -0.198929 0.117402 -0.241907 -0.533280 -0.486338 0.867372 0.040996 -0.586570 0.675148 -0.133678 0.574863 -0.623219 -0.376151 -0.790484 -0.123960 -0.123884 -0.971808 0.061174 -0.290538 0.014783 0.212961 -0.228927 -0.759179 0.201118 0.453944 -0.363161 -0.151881 -1.124503 1.115235 0.396463 -0.293017 0.180084 -0.030107 0.397722 0.369679 0.545695 -0.340968 -0.105352 0.378772 -0.469513 -0.254187 -0.418852 -0.082361 0.050190 -0.437842 -0.438336 0.238368 -0.449356 0.524268 -0.109656 -0.176112 0.256454 2.280370 -0.317622 0.463056 0.016500 -0.771488 0.977676 0.293000 -0.507874 0.191538 0.512836 0.734692 -1.395864 -0.423220 0.191768 0.992800 0.351526 -0.645894 -0.095056 -0.183140 -0.309513 0.066000 0.571414 -0.123230 0.076142 -0.420236 -0.206845 0.077699 1.555334 -0.265182 -1.379058 0.001780 -0.322987 -0.264782 -0.802508 0.059105 -0.320177 -0.087425 -0.459246 -0.182441 0.531256 0.757455 -1.873997 0.871175 -0.273092 -0.919290 1.339880 -0.424393 -0.067686 -0.629635 0.162172 0.628391 0.930412 0.089721 -0.464320 -0.211109 -0.786243 -0.128512 -0.004556 0.339146 -0.695546 0.722347 0.190001 -0.775435 -0.278920 -0.856940 0.040353 -0.338917 -0.662886 0.266925 -0.045933 -1.405896 0.829527 0.207479 -0.165730 0.273642 -0.258056 -0.190876 -0.660535 -0.724563 0.072356 0.088882 -0.278153 -0.314667 -0.443557 0.388069 -0.021637 -0.041073 -0.828882 -0.960085 0.510327 -0.310617 0.548131 0.637346 0.137791 0.494983 1.303729 -0.328487 -0.338337 -0.101050 0.136148 -0.137120 -0.161540 -0.296232 -0.690041 0.411187 1.120837 -0.080325 0.365767 -0.647835 0.746956 -0.352824 -0.333190 0.314413 -0.520871 -0.309347 0.035080 0.458481 -0.328970 -0.326838 -0.644471 -0.562291 -0.060352 -0.325129 0.469166 -0.667163 -0.100940 0.620797 -0.487081 -0.515001 0.401688 -0.211289 -0.328146 -0.036779 0.932880 0.717170 -0.449315 0.636631 -0.550794 0.562807 -0.874483 -0.192957 -0.188549 -0.094202 -0.459618 -0.197365 0.264781 0.308629 0.109465 -0.139267 -0.051653 -0.099189 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.177492 0.833652 0.772135 -0.461977 1.866403 0.747490 0.770636 0.239822 -0.647212 -1.602141 -0.301881 -1.171501 -2.588822 1.413977 -0.435633 0.476430 2.166514 -0.003527 0.519645 -1.058870 1.280787 -1.607442 2.847475 2.191343 -2.751831 0.502393 0.677290 1.109714 0.253531 1.790560 0.037502 -1.669024 0.989927 -0.744439 1.598362 -1.079244 -0.311730 -0.400282 -0.620179 -3.310552 -0.754550 1.125626 -0.660074 0.712701 0.351986 2.159339 2.746039 1.413148 -1.235228 1.818414 1.110318 -0.519133 1.280070 0.505844 -0.038686 -0.152528 0.349977 -0.052341 -1.150234 0.522538 -0.834266 -2.908147 0.127499 1.566114 2.574214 -0.846938 -0.436822 0.569270 -0.835536 0.505876 0.196291 1.820654 1.314982 0.291562 2.484730 -1.523111 -0.508835 -3.509690 -0.384192 -5.613807 -2.005080 -2.150100 1.391078 0.495948 1.138136 -0.681797 3.090043 0.404672 0.466750 1.387505 2.405402 -1.674647 -0.270357 -1.361816 -0.287158 0.169130 -1.148764 -0.112927 1.032000 -0.211624 -1.543175 -1.347536 1.179023 -0.411027 -1.004523 -1.255144 -1.352151 1.823216 -2.569012 -1.058046 -3.186616 -0.328127 -0.366749 -3.050594 0.495704 0.029957 1.337037 1.002221 0.257214 -0.670901 0.744168 1.306285 -0.336718 -1.073396 -0.500437 2.573708 1.282933 -0.020230 0.890076 1.275805 0.139071 1.825252 2.988536 0.175687 -1.301874 0.820939 -0.746710 0.363424 -0.720327 0.148502 1.615405 -1.664277 -0.336273 0.470700 -0.662265 -0.467445 0.530686 -1.370190 1.091835 4.161733 -0.549950 1.222402 0.583534 -1.900427 1.628904 -0.229767 -0.167087 1.288170 1.921498 1.154878 -2.182600 -1.196757 0.991655 2.074152 0.569673 -2.616546 -0.769397 -0.103720 0.765895 -0.627261 0.498930 0.842810 0.510280 -0.995433 0.248711 0.201937 3.288115 -1.631710 -1.796797 0.643927 0.585407 -0.556837 -2.530768 -0.385048 -1.014509 -0.809283 0.263664 0.020172 0.076218 1.938555 -3.623270 1.565633 -0.693863 -0.558396 1.523890 -0.087499 -0.136300 -3.054497 0.421663 1.277830 1.345157 0.648626 -0.038224 -0.460875 -2.037565 0.706702 0.144207 1.189792 -1.026140 1.901430 -0.824052 -1.332622 -1.520748 -1.361074 -0.281949 -0.400791 -0.577452 0.680338 1.163821 -3.938702 1.535956 -0.804829 -1.501736 0.624627 0.409327 1.764211 -1.421258 -2.424135 0.971367 -1.326583 -2.360749 -1.652953 -0.489452 0.504659 0.306812 -1.129262 -1.102159 -2.615995 2.110376 -0.534653 1.262242 1.390877 0.786529 3.432751 0.953738 -2.340992 -1.517096 -1.128425 0.750773 -1.167532 -0.505072 -1.173316 -0.737463 1.179088 2.939532 0.328111 0.452546 -0.772537 2.349803 -2.561429 -1.039597 1.772935 1.246335 -0.229750 1.640823 1.705470 -1.065337 -1.129111 -1.574079 0.184798 -0.098417 -1.136584 0.919298 -2.367152 -0.175207 1.100755 -0.165449 -0.997616 0.924932 0.001665 0.037153 -1.463706 2.713946 3.501262 -2.479811 0.394149 -1.333556 1.203544 -2.415784 -1.158067 -0.468832 0.705981 0.301659 0.241987 0.680323 0.851847 0.887135 -1.670604 -0.905311 -0.654704 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.553526 0.769790 1.315022 -1.897717 2.871847 1.097842 0.474009 -0.019396 -1.165053 -2.137771 -0.853133 -1.157587 -3.177117 1.926767 -0.949624 0.838224 2.399264 -0.507265 0.306036 -1.736693 2.673771 -2.240775 3.248641 1.878040 -4.092482 0.303097 1.196809 2.726609 1.126194 2.767699 0.320958 -1.615048 -0.130625 -0.557273 2.980548 -1.653601 0.198028 0.339775 -1.021943 -4.161996 -1.038682 1.610274 -0.794000 1.327406 0.427854 2.617922 2.917673 2.045262 -2.298900 1.731825 2.584778 0.162388 1.567383 0.437366 -0.872111 0.086896 1.039218 -0.250933 -0.731418 0.571730 -0.819884 -3.114993 1.238632 2.301544 3.695594 -1.597301 -0.656685 1.400007 -0.376017 0.778727 0.398268 2.535961 0.627479 0.156155 3.297753 -2.697312 -0.430935 -5.358241 0.780577 -6.622421 -2.093746 -3.092626 0.795461 1.394359 1.042594 -0.845547 4.813114 0.256883 0.177524 2.436290 2.555357 -1.524775 0.165943 -3.148859 -1.251644 0.096755 -1.511720 -1.239138 0.740674 1.330150 -1.311535 -1.596844 0.575781 -0.855511 -1.565923 -1.764018 -2.607222 2.728080 -3.300008 -1.376107 -3.803547 1.151162 -0.590745 -4.023696 0.293485 -1.260222 1.192967 -0.091832 1.368375 -0.659372 0.684534 2.239464 -0.822509 -0.642357 -1.552071 3.412951 2.302862 -0.921373 0.504449 1.528913 -0.117154 1.649781 3.293887 -0.265817 -2.842794 1.909925 -0.920242 -0.242501 -1.761017 0.935845 2.835338 -2.226996 -1.121407 0.688644 -0.320864 -0.523428 0.726208 -2.854142 1.755089 6.920926 -0.788578 0.884756 0.308026 -2.124394 2.660435 1.045644 -0.129992 2.237072 1.864145 1.354701 -3.513945 -1.943917 1.537334 2.407355 0.583476 -2.874418 -1.435470 -0.180109 0.563586 -0.425189 0.207902 1.398885 -0.912868 -0.512272 0.009648 -0.722914 4.343443 -1.379681 -1.790986 1.274496 1.884986 -2.360884 -3.363320 -0.666271 -2.128390 -1.739962 0.480498 0.050080 0.774014 2.759094 -5.308761 1.999765 0.033289 -0.614767 1.577577 -1.356543 0.934750 -4.972683 0.129340 1.453361 1.842883 -0.388637 0.304352 -0.698187 -2.823540 1.683506 0.371235 1.830503 -1.472496 2.203651 -1.091892 -1.338392 -1.790156 -1.074768 -1.587412 0.068370 -0.885427 0.661205 0.663613 -4.604623 2.134330 -1.842742 -1.072692 1.409986 0.650417 2.668531 -1.719088 -2.687865 1.720986 -0.484447 -2.303784 -2.469755 -0.314491 1.570476 -0.169730 -1.363288 -2.082631 -4.202686 1.692986 -1.486340 1.118097 1.549301 1.000661 3.535695 1.204199 -2.247674 -2.457629 -1.419364 0.400295 -0.341113 -0.154518 -1.741873 -0.266262 1.542738 3.409638 0.302133 0.903167 -0.494971 3.350040 -2.528865 -1.492335 1.513606 0.331494 -0.867325 2.012816 1.741827 -1.263016 -1.915797 -2.784456 1.196382 -0.277392 -1.320523 1.476798 -2.857186 -0.319813 1.796863 -0.023528 -1.524496 1.644544 0.785402 -0.427916 -2.225495 4.602311 4.054915 -2.240484 0.403703 -1.948505 1.743887 -3.051404 -0.929550 -1.404202 0.468378 0.902464 0.756819 0.757048 1.698740 1.188625 -0.823253 -0.647206 -1.580914 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.000611 1.014936 1.091491 -0.692563 0.964687 1.053178 0.200095 -0.138511 -0.465962 -0.444684 -0.288371 -1.148674 -1.196600 0.976364 -0.253566 -0.021538 1.537289 0.021169 -0.170163 -0.372143 0.424442 -0.136655 1.531028 1.569984 -1.552578 0.452393 0.755249 0.614297 0.235919 1.249720 -0.810896 -1.132771 0.102200 0.037949 0.626002 -0.508045 -0.337413 -0.755307 -0.103066 -2.220527 -0.185308 0.493872 -0.425283 -0.051100 0.270133 0.581354 2.141570 0.781868 -0.421416 0.224615 0.681570 0.282565 0.390291 0.032474 0.413190 0.101841 1.388576 0.238078 -0.375525 0.087853 -0.064588 -0.815312 -0.234293 1.263218 1.346341 0.029249 -0.396078 -0.086745 0.070893 -0.039800 -0.310000 0.842742 0.547149 1.128539 0.723384 -0.645157 0.529913 -1.640880 0.152165 -2.013232 -1.197250 -0.972228 0.566509 0.313619 0.467152 -0.460879 1.724361 -0.099798 0.514694 0.329494 1.808040 -1.070636 -0.193758 -0.643585 -0.640094 0.387310 -0.442856 0.195144 -0.063579 -0.374161 -0.953699 -1.007147 0.777110 0.024465 -0.837665 0.320462 -0.249256 0.845023 -1.046129 -0.361725 -1.281355 -0.186619 -0.081132 -1.871438 -0.534504 -0.235418 0.588446 0.341156 -0.295501 -1.169144 0.270644 0.795839 -0.455294 -0.486046 -0.870795 1.409230 0.915678 -0.166902 0.314858 0.115043 0.846823 1.047647 0.977687 -0.368135 -0.264834 0.218393 -0.520155 -0.251370 -0.553823 0.106837 0.147049 -0.697175 -0.085833 0.797408 -0.659076 0.150524 -0.055386 -0.662074 0.507747 3.720919 -0.470714 0.795958 0.151370 -1.418709 0.884607 -0.105029 -0.855418 0.219380 0.733120 1.245979 -1.798704 -0.669425 0.654058 1.578892 0.536461 -1.197382 0.162783 -0.061121 -0.316806 -0.421701 0.757944 0.057351 0.089552 -0.617100 -0.314700 0.739991 2.246276 -0.594902 -1.977375 0.194963 0.102798 0.046062 -0.811486 0.021029 -0.297063 -0.072897 0.242447 -0.154079 0.794684 1.293325 -2.812235 1.110181 -0.066065 -1.070768 1.438593 -0.190883 -0.381591 -0.490399 0.557505 1.233682 1.064371 0.289631 -0.312095 -0.464358 -1.245024 -0.153810 0.243642 0.560502 -0.917915 1.064561 0.310372 -1.209732 -0.837152 -1.041957 -0.045526 -0.434114 -0.958085 0.486650 -0.161178 -2.631863 1.580192 0.192070 -0.392674 0.076597 -0.726416 0.391631 -1.207564 -1.416489 0.360163 -0.317815 -0.653062 -0.260714 -0.555068 0.528231 0.345123 0.416175 -1.241111 -1.531233 0.912894 -0.085172 0.913863 0.880211 0.549016 1.172230 0.718637 -0.595246 -0.759366 -0.614776 0.956971 0.004863 -0.657308 -0.396802 -0.842097 0.739865 1.703196 -0.388934 0.028711 -0.965853 0.930966 -1.007754 -0.396862 0.509217 0.199271 -0.730188 0.130813 0.698584 -0.444906 -0.497757 -1.007359 -0.547089 -0.408662 -0.947613 0.437707 -1.016151 -0.069961 1.085360 -0.583634 -0.740651 0.610944 -0.246102 -0.203102 -0.028460 1.129226 1.480715 -1.021429 0.689710 -1.144551 0.935864 -1.613624 -1.048470 0.190750 -0.479295 -0.354581 -0.422919 0.025709 0.486871 0.113491 -0.238599 -0.231762 -0.006189 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.038901 0.455737 0.460681 -0.196647 0.535063 0.255328 0.223688 0.096370 -0.348959 -0.627110 -0.037133 -0.877824 -1.019375 0.701242 -0.109746 0.037732 1.036894 0.069922 0.011649 -0.350131 0.218231 -0.385497 1.091168 1.084350 -0.970024 0.267671 0.336399 0.341193 0.136366 0.527292 -0.127281 -0.805766 0.323276 -0.093623 0.412785 -0.281289 -0.188840 -0.364001 -0.185405 -1.456227 -0.178949 0.471590 -0.145962 0.013886 0.117907 0.788523 1.279469 0.571821 -0.294440 0.520123 0.418912 -0.135556 0.362303 0.088354 0.167537 -0.215332 0.418995 -0.051182 -0.491764 0.179601 -0.090192 -1.008497 -0.282915 0.733516 0.950417 -0.150450 -0.263626 0.058175 -0.142656 0.135181 -0.061245 0.561931 0.593972 0.453045 0.697250 -0.386862 -0.016279 -1.262643 -0.097440 -2.213577 -0.879625 -0.606066 0.861020 0.234535 0.183215 -0.260790 1.143945 0.094346 0.205994 0.466226 1.255912 -0.661460 -0.284596 -0.353716 -0.143244 0.344463 -0.466548 0.161460 0.309427 -0.132603 -0.717863 -0.510296 0.557538 -0.126187 -0.501812 -0.052236 -0.239995 0.614606 -0.991343 -0.216599 -1.107623 -0.229293 0.183167 -1.260538 -0.014307 0.128608 0.514172 0.507542 -0.255771 -0.414026 0.258674 0.265913 -0.199377 -0.276491 -0.564493 0.922467 0.368928 0.073757 0.370795 0.434137 0.537655 0.746540 0.809602 -0.169320 -0.219214 0.184903 -0.306379 0.098855 -0.260045 -0.134312 0.359681 -0.583684 0.127738 0.210693 -0.490600 -0.254695 -0.074524 -0.367408 0.286450 1.695978 -0.176881 0.598194 0.254062 -0.815588 0.522871 -0.336821 -0.397866 0.198579 0.654801 0.690909 -0.595907 -0.435690 0.477106 1.092966 0.379502 -0.904682 0.005981 0.068907 0.132086 -0.319088 0.513641 0.225295 0.298084 -0.425676 -0.082751 0.518684 1.326312 -0.497276 -0.913427 0.100591 0.129576 0.201537 -0.766620 0.039988 -0.101417 -0.099640 0.128865 0.024784 0.270331 0.872199 -1.725730 0.746203 -0.085401 -0.366862 0.698329 0.047221 -0.377762 -0.924422 0.282974 0.714286 0.706292 0.336113 -0.066302 -0.225712 -0.859874 -0.075674 0.145674 0.342203 -0.474937 0.753865 -0.099611 -0.567555 -0.589143 -0.626283 -0.009084 -0.155803 -0.408435 0.395462 0.398080 -1.760652 0.911774 -0.107530 -0.511375 -0.140452 -0.217402 0.461190 -0.827353 -0.989737 0.218263 -0.591356 -0.986105 -0.406634 -0.361012 0.165872 0.126947 -0.139400 -0.397456 -0.828013 0.952602 -0.064100 0.638281 0.567084 0.235901 1.137469 0.465646 -0.672716 -0.355855 -0.347741 0.516584 -0.533933 -0.333252 -0.104397 -0.426244 0.461563 1.138632 -0.096566 -0.057264 -0.391274 0.665174 -0.834190 -0.477101 0.535745 0.361189 -0.211996 0.592773 0.599039 -0.512685 -0.213766 -0.779033 -0.260783 -0.211658 -0.608786 0.252928 -0.772865 -0.067245 0.621652 -0.304216 -0.421831 0.412941 -0.132566 -0.137257 -0.243022 0.880878 1.308175 -0.936075 0.412766 -0.814996 0.558833 -1.059588 -0.760616 0.095888 0.151572 -0.169430 -0.225011 0.092828 0.196376 0.203421 -0.605913 -0.498245 0.141072 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.039847 -0.091955 0.084967 -0.123571 0.043968 -0.157848 0.025863 -0.027115 -0.181315 -0.164620 0.076136 -0.200750 -0.073573 0.136109 -0.112437 0.003445 0.137869 0.064171 -0.009840 -0.129083 -0.023852 -0.083410 0.159434 0.187584 -0.116581 0.002966 -0.087886 0.126050 0.058393 0.090645 0.111294 -0.141699 0.008773 0.098810 0.050860 -0.071251 0.006652 0.120849 -0.053981 -0.190059 0.023367 0.121032 0.172472 0.020294 0.047440 0.158263 0.039261 0.096127 0.009814 0.187505 0.141082 0.072522 0.065237 0.021035 0.034553 -0.115496 0.131582 -0.254922 -0.079922 0.055750 -0.020358 -0.131882 -0.032803 0.120883 0.169206 -0.025024 -0.012222 -0.107343 -0.016689 0.099358 0.140791 0.035048 -0.043255 0.006140 0.015106 0.009388 0.076455 -0.227986 0.036293 -0.433694 -0.079257 0.030065 0.290108 0.241182 -0.101606 0.057225 0.137246 0.063916 -0.064652 0.089707 0.103323 0.039249 -0.070458 0.073001 -0.081957 0.079519 -0.068362 0.003839 -0.060286 0.266836 -0.073286 0.069244 0.052443 -0.071556 -0.037280 0.099347 -0.015104 0.059044 -0.295916 0.046889 -0.035322 0.123446 0.149829 -0.136355 0.064116 -0.114342 0.082393 0.014851 -0.089355 0.130036 0.053530 -0.089046 -0.055778 0.178179 -0.404295 0.045125 -0.057948 0.056225 -0.031972 0.049132 0.001629 0.027877 -0.114901 -0.132689 -0.003424 0.055681 0.014853 0.057933 -0.069281 -0.054260 0.058219 -0.090364 0.128162 -0.132075 -0.077178 -0.185323 -0.203287 -0.000343 0.010307 0.014412 -0.012675 0.144161 0.124500 -0.033758 -0.053582 -0.022420 0.091374 0.049146 0.078425 -0.034559 0.263815 -0.101760 0.068160 0.130653 0.078459 0.007433 -0.001145 0.080695 0.031927 0.075190 0.076789 0.016821 -0.083691 -0.065702 -0.027132 -0.027437 0.091183 0.155803 0.098203 -0.038855 0.076990 -0.019615 0.044838 0.041262 0.056705 0.065052 -0.015564 0.036435 0.029587 0.132434 -0.400945 0.140391 0.067416 0.130361 0.005069 -0.030160 -0.086905 -0.301353 -0.063408 -0.001907 0.145699 -0.022130 0.091126 0.118482 -0.112330 -0.005862 -0.027794 0.036692 -0.095452 0.053636 0.058002 -0.066216 -0.039293 -0.066384 -0.000996 0.093499 -0.078358 0.081408 0.166022 -0.271676 0.044894 -0.064791 -0.070043 -0.088376 0.040112 0.063460 -0.116224 -0.025939 -0.045052 -0.140977 -0.221167 -0.123357 -0.026034 -0.003686 -0.163017 0.008832 0.024418 0.092932 0.126999 -0.100495 0.060523 0.045117 -0.085253 0.052253 0.064923 0.011062 0.051788 0.081218 0.033197 -0.227418 0.033276 0.336298 -0.010801 0.014442 0.096142 0.043013 -0.084326 0.169347 0.149858 0.100964 -0.100152 0.052670 -0.129916 0.030339 0.238984 0.068478 -0.172845 0.037548 -0.154536 -0.007011 0.003133 -0.009997 0.140358 0.016457 0.063082 -0.030004 0.051925 -0.124553 0.082309 0.018212 -0.085707 0.032634 0.226973 0.109181 0.048284 0.161625 -0.124550 -0.010023 -0.106069 -0.060562 -0.076572 0.057073 -0.085934 0.041991 -0.156693 0.105268 0.085409 0.021852 -0.101041 0.171869 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::push_back(int const&) = -0.043741 3.042429 2.308773 -1.538446 2.903491 3.631226 0.647825 -0.225403 -1.121251 -1.314180 -0.980128 -3.364120 -3.603625 2.818422 -0.452523 0.245991 4.336237 -0.057423 -0.350475 -0.350980 1.119849 0.019273 4.137212 4.064622 -3.801415 1.252350 1.834864 0.942138 -0.557201 3.621027 -2.108776 -4.262667 0.499599 -0.010549 1.490007 -1.037984 -1.211112 -2.133394 -0.012500 -5.958342 -0.576498 2.113580 -1.504487 -0.343259 0.642153 0.379326 6.187963 2.047691 -0.866120 0.475159 1.216366 0.875365 1.063097 0.129189 1.386605 0.649384 2.623406 0.302232 -1.255911 0.164713 -0.564100 -1.702788 -1.050051 3.268701 3.357767 0.118667 -1.337854 -0.106749 -0.398153 -0.110907 -1.264037 2.427942 1.883375 3.031944 1.925030 -1.144015 0.611809 -3.661690 0.417986 -4.660327 -3.355116 -2.601343 1.148124 1.739451 1.624411 -1.950492 4.850555 -0.830827 1.359799 1.119790 5.358870 -3.134531 -0.552529 -2.124885 -1.463105 0.640081 -1.084634 0.287627 -0.287405 -1.727203 -2.867043 -3.116825 1.725528 0.159120 -2.168652 0.212655 -0.615656 2.484835 -2.609270 -1.219020 -3.809291 -0.354196 -0.402219 -5.169822 -2.075527 0.064738 0.252469 1.349320 -1.251308 -3.755613 1.236273 2.216369 -1.364214 -1.929364 -1.357242 3.889803 2.400458 -0.493958 1.047478 0.580453 2.466261 3.409350 2.798504 -0.729019 -0.438901 0.415020 -0.887961 -0.616167 -1.060925 0.243404 -0.532010 -2.045091 -0.396183 2.577402 -1.885115 0.728962 -1.144436 -2.087166 1.267812 10.268070 -1.772486 2.182427 0.203148 -4.247950 2.891561 -0.518568 -2.659835 -0.083875 2.086715 3.893587 -4.899285 -1.720146 2.328304 4.495888 1.501913 -2.975818 0.795637 -0.189008 -0.546136 -1.460624 2.270632 0.304120 0.784166 -1.847984 -0.846323 2.160408 6.630173 -2.111797 -5.436274 0.901850 0.765658 0.816887 -1.929131 -0.061066 -1.556414 -0.478332 1.249204 -0.603450 2.049650 3.623089 -6.585679 3.073028 -0.375033 -3.266802 3.852743 -0.252415 -0.945502 -0.771548 1.242371 3.731488 2.978490 0.963343 -0.509031 -1.981309 -3.371601 -0.425102 0.776498 1.676040 -2.430065 3.108672 0.268187 -3.552509 -2.276743 -2.745593 -0.517730 -1.797238 -2.750015 1.262810 0.405610 -6.496215 4.624248 1.102233 -0.826897 0.200714 -1.667568 1.463615 -3.021953 -4.323862 1.343870 -1.208632 -1.811536 0.273244 -1.676295 1.351176 1.661172 0.990370 -3.159150 -4.451017 2.855513 0.750615 3.087387 2.373152 1.716928 3.184318 2.038323 -2.127403 -1.666594 -2.900500 2.999512 0.144404 -1.787589 -1.807232 -2.411719 2.293977 4.475899 -0.834623 -0.477071 -3.532142 2.380931 -2.796617 -0.235127 1.697739 0.179181 -2.169316 -0.342173 2.220174 -0.807393 -1.451032 -2.765834 -0.595331 -1.810610 -2.702841 0.502371 -3.075525 -0.536089 3.102484 -1.986756 -1.997808 1.194138 -0.368454 -0.617295 -0.183389 2.847914 2.783105 -2.894184 1.899886 -3.084625 2.631587 -4.382868 -3.045521 0.607157 -1.269896 -1.105480 -1.569453 0.251579 0.974693 0.010646 -0.511495 -0.742314 -0.392486 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 0.159246 3.407252 3.364675 -2.089028 3.374496 3.954330 0.549356 0.153496 -1.527937 -1.639540 -1.054437 -4.515467 -4.491703 3.230579 -0.681044 -0.583160 4.886388 -0.177222 -0.553573 -0.520869 0.629564 0.711776 4.580660 4.545042 -4.490719 1.497281 1.452438 1.517299 -0.363822 4.329318 -2.291224 -4.940231 0.078596 1.280121 1.889580 -0.727283 -1.422621 -2.742119 -0.926087 -6.776802 -0.575477 3.213999 -1.614542 -0.234814 1.187646 1.053514 7.199328 2.237959 -0.951067 0.354097 1.536957 1.046288 1.456309 -0.033256 1.540395 -0.113884 3.943678 0.109570 -1.627628 0.325297 -0.524694 -1.998344 -1.726906 3.693705 3.833711 0.215670 -1.730502 -1.013947 -0.020812 0.015959 -1.201727 2.684284 2.526479 3.798293 2.145257 0.382086 1.174091 -3.371909 0.951345 -5.123390 -3.779186 -2.869755 2.410457 2.725659 0.694930 -3.014231 5.422849 -0.857244 1.539878 1.127059 6.116750 -2.745246 -0.725506 -2.364858 -1.805657 1.096917 -1.142675 0.329100 -0.497664 -1.308083 -3.117659 -2.666289 1.549038 -0.507316 -2.516269 1.701282 -0.771615 2.813415 -3.031290 -0.318694 -4.252343 0.070528 0.604679 -5.850615 -3.181191 0.127109 -0.189088 1.508426 -1.474746 -3.111782 1.373750 1.777716 -1.837020 -0.940229 -2.953651 4.782729 2.563365 -0.522678 1.018291 0.963665 3.206625 2.864527 2.338331 -0.975290 -0.471906 0.529766 -0.662673 -0.807178 -1.209277 0.550080 -0.646848 -1.919384 -0.185591 2.333885 -2.163132 0.689969 -3.199403 -2.206022 1.364620 11.376048 -2.096540 2.519845 0.106061 -4.396270 3.346873 0.001741 -2.996922 -0.246488 1.991971 4.562448 -4.487556 -1.810526 2.728608 5.116639 1.682860 -3.326231 2.166385 0.185496 -0.818915 -1.855285 2.969350 0.385849 0.805444 -1.805827 -1.009158 2.553821 7.082727 -1.754089 -7.604371 0.697082 0.804949 1.469643 -0.986046 0.378435 -0.501089 -0.463216 1.565951 -0.541094 2.563725 4.142164 -8.091131 3.635184 0.770237 -3.649830 4.875387 -0.775354 -0.994116 -0.371220 1.272152 4.129186 3.498629 1.521187 -1.450883 -2.298220 -3.741461 -0.505090 1.183501 1.843166 -2.735368 3.333517 0.465302 -3.549355 -2.437579 -4.409735 -0.654756 -1.027145 -4.088815 1.442787 0.075944 -7.878899 5.172398 1.305554 -0.934321 -0.681866 -2.372893 1.054210 -3.501394 -4.588921 0.831733 -1.808469 -3.263219 -0.125628 -2.018131 1.120572 1.782847 1.831947 -3.841763 -4.834244 3.779497 0.514230 3.505326 2.804059 1.706716 3.318180 3.726238 -2.088942 -1.399101 -3.343725 4.385736 0.065228 -1.919450 -0.746151 -2.772054 2.096936 4.934634 -1.327669 -0.478801 -4.581510 2.430095 -2.314008 -0.813579 1.704800 -1.074311 -2.202485 0.245880 2.406213 -0.854821 -1.375420 -3.580961 -1.301041 -2.143823 -3.013736 0.593840 -3.339421 -0.604377 3.675393 -2.380701 -2.888755 1.327840 -0.853637 -1.473277 -0.042908 3.500269 3.321729 -3.213573 3.284081 -3.786643 3.515478 -4.941865 -3.383587 0.677579 -2.425477 -1.263864 -1.844630 -0.042691 0.852013 0.071501 -0.678507 -1.296499 0.507453 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::size() const = 0.063123 0.571130 0.579541 -0.317946 0.527119 0.613142 0.087338 -0.034266 -0.258514 -0.227270 -0.132803 -0.817157 -0.662741 0.467919 -0.129250 -0.103834 0.647380 -0.072549 -0.095051 -0.033996 -0.079296 0.220625 0.668284 0.676592 -0.613111 0.292337 0.055893 0.165382 -0.200454 0.805019 -0.392251 -0.880902 -0.053479 0.410057 0.234236 0.007028 -0.290914 -0.423384 -0.145743 -0.985367 -0.078464 0.681821 -0.094516 -0.063147 0.257315 0.011279 1.111921 0.295481 0.009794 0.075543 0.156267 0.232449 0.292947 -0.017696 0.354317 -0.065630 0.790515 -0.265812 -0.274006 0.057709 -0.085761 -0.187216 -0.359578 0.556820 0.517331 0.074245 -0.297505 -0.333773 -0.068560 0.002068 -0.202207 0.427589 0.294067 0.679657 0.172805 0.358574 0.375433 -0.157958 0.213328 -0.459107 -0.596286 -0.326260 0.398352 0.797700 0.081481 -0.498816 0.812838 -0.144131 0.190204 0.014870 0.901368 -0.357667 -0.082624 -0.167404 -0.306256 0.108492 -0.096395 0.053015 -0.326995 -0.113071 -0.474285 -0.284458 0.246703 -0.102986 -0.366047 0.507650 -0.073398 0.309434 -0.500703 0.033913 -0.500959 0.048638 0.149643 -0.816466 -0.520764 0.048801 -0.253924 0.209937 -0.289680 -0.410109 0.263174 0.137599 -0.314469 -0.019124 -0.815707 0.663320 0.317521 -0.075071 0.130708 0.101925 0.510031 0.361425 0.080862 -0.171472 0.012082 0.023238 0.053970 -0.077738 -0.032264 0.109687 -0.390186 -0.238643 0.009379 0.274928 -0.306078 0.165827 -0.992413 -0.293061 0.116792 1.451983 -0.393693 0.432065 0.001855 -0.661952 0.454966 -0.020929 -0.482553 -0.150062 0.231435 0.703234 -0.386594 -0.244758 0.475202 0.778013 0.229411 -0.274973 0.522826 0.143032 -0.162048 -0.248727 0.577225 -0.008649 0.135533 -0.314544 -0.186986 0.299309 1.065992 -0.074622 -1.073373 0.109994 0.037509 0.334549 0.163117 0.110608 0.032325 -0.030742 0.193961 -0.099361 0.373353 0.573494 -1.178299 0.576346 0.164898 -0.598817 0.796656 -0.216822 -0.168279 0.151982 0.113725 0.602541 0.511451 0.195218 -0.197280 -0.380274 -0.526270 -0.100193 0.118190 0.222251 -0.483855 0.514741 0.146826 -0.638639 -0.315317 -0.806200 -0.050264 -0.122543 -0.775963 0.198363 0.132004 -1.106257 0.761114 0.334012 -0.096589 -0.199258 -0.334579 0.037705 -0.436807 -0.590472 0.018302 -0.384564 -0.514498 0.102411 -0.364905 0.039971 0.219262 0.340673 -0.583929 -0.484285 0.572175 0.145731 0.539185 0.424346 0.230829 0.272434 0.752761 -0.272118 0.015478 -0.511324 0.739046 -0.061952 -0.216629 0.234107 -0.505255 0.251452 0.652075 -0.171678 -0.127040 -0.706757 0.309892 -0.028869 -0.045920 0.221600 -0.511655 -0.339370 -0.030566 0.334352 0.010071 -0.129246 -0.566515 -0.195676 -0.420061 -0.377064 0.093425 -0.395413 -0.125344 0.532357 -0.417024 -0.555573 0.140371 -0.182052 -0.339414 0.075231 0.527593 0.139438 -0.299196 0.701910 -0.530570 0.463118 -0.650149 -0.423997 0.075495 -0.429172 -0.282284 -0.355987 -0.151216 0.101404 0.018594 -0.009652 -0.167946 0.178214 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::max_size() const = -0.037791 0.143272 0.247771 -0.138360 0.166366 -0.095238 0.077945 0.068389 -0.175916 -0.424638 0.027340 -0.453537 -0.506795 0.309740 -0.149254 -0.102783 0.445910 0.052522 0.026851 -0.256637 0.048388 -0.196113 0.501424 0.514530 -0.503657 0.060539 0.110555 0.287230 0.199689 0.170949 0.158307 -0.357200 0.110765 0.132274 0.278129 -0.129733 0.006038 -0.098564 -0.257582 -0.654539 -0.082488 0.257662 0.079820 0.046627 0.084019 0.499114 0.500371 0.290083 -0.174063 0.254193 0.310569 0.035546 0.167989 0.037419 -0.031357 -0.316984 0.192497 -0.236463 -0.232486 0.113854 0.003930 -0.559552 -0.136310 0.387357 0.511416 -0.072158 -0.045784 -0.055714 -0.050218 0.150071 0.054853 0.223172 0.243541 0.219726 0.311565 -0.087758 0.025922 -0.681549 -0.002638 -1.255300 -0.365998 -0.301821 0.559310 0.267835 -0.095040 -0.060288 0.503624 0.186113 0.094363 0.316429 0.542030 -0.133101 -0.155541 -0.149114 -0.110241 0.278852 -0.278697 0.114145 0.074894 0.213928 -0.289627 -0.101101 0.166581 -0.142270 -0.216811 0.073032 -0.148208 0.244394 -0.581884 0.049126 -0.485732 -0.058863 0.252169 -0.596425 0.060230 -0.045368 0.301881 0.183743 -0.054709 0.063016 0.056843 0.017605 -0.064437 0.096957 -0.617696 0.378464 0.095838 0.037636 0.126486 0.245765 0.216235 0.193011 0.213821 -0.122938 -0.162717 0.115349 -0.157339 0.024203 -0.192304 -0.044480 0.341266 -0.250868 0.141744 -0.047028 -0.214376 -0.349096 -0.211852 -0.228638 0.194554 0.577582 -0.015532 0.267000 0.171580 -0.286676 0.129187 -0.122527 -0.104295 0.145912 0.289223 0.233429 0.066247 -0.221339 0.168930 0.470914 0.168242 -0.278465 0.037155 0.101422 0.062123 -0.135216 0.221669 0.129056 -0.015673 -0.160230 -0.039658 0.243649 0.386178 -0.021863 -0.231185 -0.028496 0.178393 0.061380 -0.208022 0.078980 0.101841 0.004931 0.042937 0.062999 0.116355 0.402448 -0.912426 0.343410 0.148151 0.059071 0.174035 -0.066638 -0.187021 -0.623839 0.186953 0.290340 0.289825 0.088042 0.022239 -0.007028 -0.395700 -0.021910 0.062215 0.191026 -0.216946 0.287320 -0.025898 -0.168341 -0.327171 -0.308048 -0.021164 0.079412 -0.204784 0.182334 0.262527 -0.821011 0.396451 -0.207989 -0.276051 -0.195046 -0.126717 0.182734 -0.466064 -0.377458 -0.001189 -0.338366 -0.620507 -0.324516 -0.139616 0.065305 -0.111544 -0.069719 -0.110931 -0.211292 0.450603 -0.127040 0.193838 0.229535 0.085553 0.510700 0.239382 -0.217858 -0.121594 -0.036910 0.225434 -0.367888 -0.125602 0.259710 -0.120002 0.129102 0.547338 -0.092955 -0.066540 0.064660 0.326754 -0.217766 -0.392382 0.196746 0.029857 -0.005109 0.463114 0.222983 -0.340534 -0.095359 -0.459525 -0.091113 0.011135 -0.291769 0.171139 -0.333875 0.017699 0.276873 -0.069333 -0.267205 0.250609 -0.042122 -0.111679 -0.084730 0.475942 0.616411 -0.349723 0.283896 -0.423464 0.190484 -0.511846 -0.338773 -0.022456 0.056269 0.014241 -0.012822 -0.097372 0.109855 0.147557 -0.224566 -0.290645 0.199117 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -0.384971 0.281138 0.124687 -1.224427 1.272414 1.464321 0.392699 -0.736901 -1.104431 -0.387471 0.185037 -2.653024 -1.284203 1.194719 -0.490423 0.902813 2.109846 -0.278342 -0.563175 -0.332683 0.361317 1.070092 2.363821 2.342939 -1.453601 0.375204 -0.184003 0.258239 -0.415955 0.546587 -0.537850 -2.087650 0.285602 -0.268705 0.190284 0.064634 -0.784556 -0.400633 1.185757 -2.492845 -0.047949 1.311269 0.192403 -0.155876 0.337986 0.296488 2.322156 1.135934 0.102681 0.668480 0.872967 0.421947 0.881533 0.028395 0.601456 0.038617 1.089354 -0.551011 -0.423709 -0.505789 -0.476388 0.445624 -0.477557 1.609742 1.541670 0.104784 -1.214183 -0.040392 0.644651 0.109722 0.035448 1.495508 0.484838 1.220766 0.670114 -0.355237 0.561037 -1.454144 0.492096 -1.767233 -1.541131 -0.095887 0.932658 1.269658 0.826547 -0.896633 2.591196 -0.641223 -0.180347 0.599569 2.012648 -1.375978 -0.340758 -0.292690 -0.668801 -0.102217 -0.313815 0.353678 -0.013107 0.320804 -1.595985 -0.665664 0.304879 -0.085145 -0.971151 0.019571 0.285314 0.462149 -0.937957 -0.493160 -1.118666 1.059864 0.298384 -2.566079 -1.227238 -0.357681 -0.605810 0.291518 -1.375416 -1.573742 0.727726 0.048890 -0.997179 -0.363850 -1.167879 1.361563 1.373192 0.234964 0.291156 0.675053 1.075780 2.352388 0.043744 -0.967267 0.042626 0.191813 -0.018359 0.344874 -0.304788 -0.148006 -0.304289 -1.205683 0.583535 0.947222 -0.951507 0.264765 -0.941251 -0.390610 -0.138901 4.557250 -1.079570 1.863374 1.059724 -1.589094 0.955740 -0.824972 -0.427731 -0.231238 0.753812 1.514621 -1.553152 -1.063793 1.791730 2.367056 0.837271 -1.325045 1.095131 0.989716 0.236208 -0.701698 1.104941 0.173041 0.689854 -1.043364 -0.266557 1.102293 3.444162 -0.470869 -1.128407 0.373492 1.071333 0.860671 -0.163141 -0.228123 -1.273811 -0.155490 1.083853 0.524515 0.955748 1.853062 -2.634999 1.329537 0.215244 -0.718765 2.013263 0.395411 -1.198832 -0.427470 -0.325607 1.130625 1.391276 -0.048435 0.127035 -0.506943 -1.542715 -0.070443 0.375307 0.421641 -1.365143 1.526658 0.267822 -1.375719 -0.293358 -0.968371 -0.401831 -0.527108 -1.325313 1.074260 0.600970 -2.471887 1.761404 0.947881 -0.645950 -0.258783 -1.021235 1.112001 -1.180591 -1.252704 0.711410 -1.130898 -0.753660 0.274851 -0.597293 0.184743 0.658812 1.368995 -1.875610 -1.527351 2.003362 0.362658 2.228128 1.076860 -0.102590 0.463918 0.073272 -0.715774 -0.329462 -1.706433 0.888226 0.358435 -1.112273 0.107963 -0.985717 1.082482 1.415817 -0.568411 -0.778039 -1.150287 0.853538 -1.089284 0.490347 0.543379 -0.167443 -1.426018 0.155128 0.947318 -0.540231 0.267694 -1.432614 -0.256654 -1.589823 -1.033974 0.761065 -0.697550 0.111594 0.717759 -0.966750 -0.506375 0.363166 0.175943 -0.552575 0.535282 1.732867 0.650923 -0.084910 0.675157 -1.992955 1.207795 -1.783194 -1.625866 0.577965 -0.850051 -1.471969 -0.955452 -0.139283 1.156227 0.275567 -0.451475 -1.060976 0.829366 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.730815 0.670793 -0.751524 -1.945322 2.298284 2.143117 0.663394 -1.723289 -1.219040 -0.511983 0.539846 -4.699750 -2.132222 1.201018 -0.914321 1.803675 3.345452 -1.244129 -0.909941 -0.969599 0.712710 2.656777 4.539117 3.888543 -2.603433 0.447867 0.181587 0.359960 -0.297729 -1.235022 -0.816386 -2.616813 0.894134 -1.401465 -0.361702 1.007956 -0.993213 -1.576954 2.781895 -3.351828 -0.114205 0.257293 -0.109189 -0.127032 -0.150228 1.265132 4.093321 2.092561 -0.098025 0.751423 2.201234 0.587162 1.108020 0.205819 -0.041127 -0.619902 1.272608 -0.548707 -0.418673 -1.809010 -0.466687 1.119632 -0.758160 2.807451 2.418147 0.401699 -2.072058 1.311964 1.673036 0.024927 -0.026706 2.651399 0.933716 2.439304 1.447590 -1.578422 0.589333 -3.119029 -0.024237 -3.334389 -2.657623 -0.305013 0.865405 0.281738 1.839520 0.101133 4.301866 -0.424597 0.027568 1.398027 3.139689 -2.789004 -0.689164 -0.367780 -0.925588 -0.142447 -0.597351 1.615973 0.352878 1.056863 -2.770867 -0.975263 0.296946 -0.136325 -1.620652 -1.125232 0.877397 -0.348094 -1.004942 -0.668152 -1.978858 1.442252 0.598375 -4.693046 -2.127014 -0.095070 0.839329 0.148499 -1.810579 -3.074146 0.518707 0.081790 -1.537501 -0.857783 -0.745485 1.326765 3.133325 0.864487 1.014933 1.346500 2.363920 5.074035 0.498357 -1.502477 -0.494993 -0.224426 -0.288962 0.655725 -0.203522 -0.231452 -0.019885 -2.332490 2.687266 2.371944 -1.461661 -0.448580 0.022864 -0.809545 -0.138143 6.765735 -1.427327 3.270281 2.157103 -2.605315 0.321174 -2.961493 -0.858316 -0.331413 0.923227 2.489136 -2.159440 -1.869720 3.200157 3.721077 1.309478 -2.887175 2.137755 2.279864 0.709853 -1.624455 1.095057 0.752875 1.530364 -1.526201 -0.230540 3.073099 5.643550 -0.869141 -0.775158 1.062313 1.948090 2.004279 -0.421967 -0.863646 -2.002382 -0.307765 2.885796 1.715521 1.297101 3.134963 -3.781899 1.373471 0.676095 -0.445006 2.707471 1.580375 -2.639101 0.034109 0.001621 2.060396 1.455752 -0.381044 0.261821 -1.015762 -2.197231 -0.105894 1.092423 0.448212 -1.961500 2.312392 0.652860 -2.139123 -0.613755 -0.886811 -0.335995 -0.095506 -1.433639 1.986698 -0.050370 -4.576079 3.186908 1.076077 -1.732600 -0.659321 -2.979723 2.660439 -1.998892 -1.713460 1.601620 -2.378729 -0.663480 0.466230 -0.406227 0.045708 1.472228 3.265166 -3.418434 -2.312454 3.358535 0.973272 3.491819 1.781042 0.179725 0.897540 -2.644395 -1.152625 -1.186065 -2.447990 1.007855 1.213453 -2.789877 0.299423 -1.367025 1.871595 2.408290 -1.837445 -1.328040 -1.076294 0.533324 -3.184205 0.425370 0.708490 1.862977 -3.159260 0.729732 1.360263 -0.797582 0.657023 -2.199663 -0.533860 -2.813718 -2.492250 0.982860 -1.055841 0.273512 1.608236 -1.646592 -0.009440 0.925412 -0.030528 0.058556 0.780467 2.311572 2.276339 -0.208572 -0.019558 -3.788382 1.939880 -3.299373 -3.825275 2.270349 -1.486630 -2.192150 -1.786613 -0.276001 2.304199 -0.025657 -1.534837 -2.226973 1.640831 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.077233 0.736189 0.602211 -0.196757 1.241842 0.432768 0.319537 0.279150 -0.430424 -0.966837 -0.422858 -0.922595 -1.692463 1.083814 -0.028369 0.493887 1.541006 0.060205 0.127880 -0.589913 0.805384 -1.095128 1.654920 1.084116 -1.567754 0.406923 0.750026 0.756629 0.232641 1.127185 -0.485836 -0.953118 0.549612 -0.604989 0.829733 -0.698517 -0.041194 -0.367156 -0.344136 -2.154501 -0.390006 0.513841 -0.497445 0.256024 -0.027294 1.493806 1.841977 0.941236 -0.703927 0.876491 0.702556 -0.491332 0.590183 0.336352 -0.082032 0.151914 0.495184 0.095175 -0.930359 0.283803 -0.190888 -2.070804 -0.139162 0.862485 1.506854 -0.613660 -0.376494 0.862640 -0.400886 0.149267 -0.081028 0.890982 0.900731 0.248315 1.397068 -1.090988 -0.366470 -1.995155 -0.351022 -3.764068 -1.267105 -1.466999 0.768440 -0.068748 0.563368 -0.250593 2.018920 0.046665 0.341524 0.696069 1.862853 -1.397470 -0.375315 -1.209002 0.098209 0.317027 -0.892573 -0.369837 0.956935 -0.291188 -0.884443 -1.052795 0.977195 -0.254905 -0.745520 -0.678065 -0.874393 1.295836 -1.752797 -0.834389 -2.271751 -0.457260 -0.188673 -1.859952 0.338835 0.530222 0.964820 0.703267 0.249685 -0.892342 0.447817 0.966540 -0.268610 -0.781100 -0.119800 1.618494 0.706479 -0.225076 0.768237 0.836364 0.613156 1.306281 2.054548 -0.080487 -0.958527 0.625301 -0.609628 0.024020 -0.544571 -0.159637 0.741899 -1.256937 -0.062023 0.579620 -0.596251 -0.068732 0.495213 -0.831187 0.721187 2.356063 -0.216530 0.429735 0.013788 -1.308042 1.102158 -0.385928 -0.648954 0.518194 0.938461 1.011531 -1.358845 -0.780621 0.723025 1.419254 0.540254 -1.772931 -0.469942 -0.383964 0.515264 -0.319294 0.321318 0.884879 0.364016 -0.430570 -0.038415 0.224356 2.397833 -1.259239 -1.374529 0.655863 0.015431 -0.326845 -2.061823 -0.297613 -0.523732 -0.686750 0.062241 -0.009953 0.163949 1.413159 -2.311990 1.132991 -0.400384 -0.832761 1.019017 -0.186164 0.050569 -1.789996 0.172993 1.173468 1.133031 0.423363 0.005539 -0.570876 -1.329637 0.240101 0.233788 0.729764 -0.394324 1.030077 -0.399748 -0.811187 -0.920921 -0.630122 -0.125299 -0.242742 -0.171016 0.467564 0.599037 -2.858708 1.365670 -0.639287 -0.692572 0.452453 0.231632 1.063863 -1.099398 -1.637873 0.766100 -0.571791 -1.359819 -0.823618 -0.263345 0.534991 0.207569 -0.776336 -0.456313 -1.880587 1.172550 -0.151535 0.596575 0.801547 0.595442 2.049655 0.566453 -1.422071 -0.868414 -0.470120 0.210743 -0.882352 -0.061639 -0.761823 -0.331427 0.962281 1.850995 0.201964 0.384445 -0.689226 1.204485 -1.836765 -0.811935 1.144385 1.018636 -0.369786 0.990057 1.159775 -0.766995 -0.832696 -1.082917 -0.070047 -0.217769 -0.870149 0.183307 -1.647715 -0.383919 1.246999 -0.388337 -0.646992 0.767968 -0.100749 -0.189121 -1.147364 1.766839 2.488604 -1.786799 0.374922 -0.995135 0.912451 -1.679469 -0.954453 -0.022986 0.679718 0.000100 -0.021295 0.783466 0.272155 0.158723 -1.077494 -0.633348 -0.754962 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -0.914214 6.192893 5.382756 -6.893402 8.371957 12.699046 1.160478 -3.751096 -4.992025 -1.804610 -0.585228 -13.914290 -9.178549 7.808822 -2.874432 0.773467 11.148721 -2.592202 -3.171902 -0.576145 2.460761 6.885944 11.770460 12.355800 -10.050081 2.986424 0.980333 1.747490 -1.908527 7.395227 -4.475167 -13.598625 -0.479963 2.295569 1.948267 0.951143 -4.734857 -5.205551 3.236833 -14.889545 -1.196305 8.223010 -3.883025 -0.781459 3.390362 -0.596748 16.604091 5.128761 -0.567992 1.150441 4.344761 4.347764 3.710246 -0.959203 4.217544 -0.594798 8.832208 -1.045282 -1.686305 -1.642518 -2.196055 2.916445 -4.041776 10.100565 8.897735 1.918840 -6.079277 -2.471809 1.932388 -0.254252 -2.810594 8.399908 4.707345 10.669055 3.880168 1.641894 3.282103 -7.244969 4.331026 -5.252419 -8.672916 -2.667045 3.949655 9.111535 2.864681 -7.811198 14.425110 -3.280232 0.221874 4.345428 14.222370 -6.515639 -0.685775 -3.467689 -6.772785 -0.198848 -1.110314 3.064202 -4.900786 -0.561630 -8.644203 -6.748930 0.668006 -0.878221 -6.033272 3.010318 0.002105 4.607336 -4.939135 -0.316659 -5.450700 4.746494 1.771772 -14.583292 -11.917020 -2.346781 -3.385983 1.758674 -6.543716 -8.807277 3.707642 2.222504 -5.800506 -2.076092 -6.614075 8.970984 8.823544 -0.164918 0.218365 2.213556 7.975442 9.669531 0.037797 -4.085874 0.797473 -0.373696 1.279042 -0.164134 -1.852858 2.326082 -3.639043 -3.899447 0.772357 6.483699 -4.673437 1.708292 -9.378231 -5.164888 -0.020752 30.477627 -6.668547 8.933184 2.598641 -10.480393 6.395344 -1.627804 -5.611557 -1.335544 3.850994 11.150687 -11.634903 -5.349670 10.341552 13.435481 3.401110 -6.809642 8.025757 4.666824 -2.228373 -5.756300 8.453539 -0.453262 1.860472 -4.441908 -2.793552 7.341992 19.399100 -2.773291 -14.116079 2.133158 4.990138 5.926935 2.086731 0.317015 -3.071101 -0.576953 7.606185 0.565884 7.684130 10.314995 -17.817906 7.895411 2.856180 -7.196373 11.199153 0.146170 -5.031507 3.316679 0.952931 8.913755 7.249388 2.252340 -2.252457 -5.323996 -9.318630 -0.663719 3.293255 3.122556 -8.766614 9.301689 2.356099 -9.488856 -4.111024 -8.561411 -3.463674 -2.912222 -11.542081 4.345751 -0.570326 -16.004070 12.342114 6.519005 -1.105499 -2.759233 -7.584933 4.566791 -6.750212 -9.364966 3.112192 -5.550631 -5.346387 2.570650 -4.895367 1.660002 5.767206 9.002617 -12.786849 -11.071235 10.224359 2.553745 11.783416 6.205125 2.216023 3.587024 4.360809 -3.696022 -3.005084 -11.194696 11.980797 4.601307 -6.599061 -0.422033 -7.126253 5.208473 8.733355 -4.353934 -4.989502 -11.108464 4.777662 -3.811241 2.165528 2.131516 -3.444411 -8.507599 -1.979495 4.580130 -0.210469 -0.074207 -8.798290 -2.146753 -9.588471 -6.660340 2.767359 -4.416859 -0.566050 6.194592 -6.316670 -5.187109 2.250028 -0.327865 -3.616743 3.542902 8.504052 2.967831 -2.978433 6.836188 -10.984678 8.788607 -10.811715 -9.642513 3.031612 -8.386357 -5.480974 -6.765661 -3.061192 4.482472 1.265925 -0.470039 -3.501788 4.247508 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy(int**, int**, int**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__miter_base(int**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.021026 0.229423 0.143580 0.026343 0.253999 0.036877 0.139132 0.064413 -0.154146 -0.272016 -0.112143 -0.274298 -0.407604 0.336218 0.019496 0.196591 0.560619 0.190063 0.070254 -0.169906 0.142008 -0.467798 0.541630 0.524271 -0.415006 0.168068 0.206609 0.153091 0.000000 0.375869 -0.202960 -0.296722 0.266132 -0.263466 0.205522 -0.332598 -0.065749 -0.055440 -0.037340 -0.794364 -0.067845 0.116022 0.104225 0.001183 -0.015652 0.331609 0.580898 0.279575 -0.089073 0.333787 0.110393 -0.147710 0.229184 0.122296 0.125171 0.177097 0.174500 -0.088139 -0.308130 0.126289 -0.050886 -0.700611 -0.047218 0.275307 0.464100 -0.113898 -0.081196 0.146598 -0.179552 0.029080 0.001329 0.224828 0.179276 0.067055 0.305662 -0.443972 0.017777 -0.598917 -0.184541 -1.204490 -0.433937 -0.401424 0.301305 0.036218 0.280059 0.048464 0.545242 -0.012266 0.189446 0.047505 0.576857 -0.522332 -0.165666 -0.173945 0.074505 0.154400 -0.250828 -0.063970 0.283188 -0.181758 -0.323222 -0.372473 0.528961 0.044623 -0.242398 -0.154769 -0.136957 0.344144 -0.579007 -0.369070 -0.675838 -0.301042 -0.132315 -0.526052 0.336874 0.118510 0.261122 0.317762 -0.060845 -0.407062 0.145190 0.276923 -0.023420 -0.327765 -0.186244 0.443632 0.082450 -0.064079 0.258289 0.164323 0.142063 0.511622 0.577101 -0.060364 -0.144369 0.191016 -0.271159 0.012000 -0.171323 -0.210630 0.132581 -0.436577 -0.040820 0.131950 -0.272899 0.025669 0.207815 -0.117615 0.206952 0.590272 -0.037864 0.192442 0.099418 -0.445512 0.331389 -0.204195 -0.180870 0.138591 0.401055 0.277048 -0.394949 -0.242700 0.080251 0.479155 0.215089 -0.408361 -0.292924 -0.187983 0.158474 0.013375 0.150675 0.143282 0.165406 -0.257663 -0.001529 0.077637 0.747994 -0.362693 -0.191731 0.108883 -0.133918 -0.114938 -0.728828 -0.074654 -0.273697 -0.107701 -0.195164 -0.026569 -0.005693 0.422056 -0.680916 0.407936 -0.329729 -0.256088 0.357264 -0.006861 -0.087510 -0.621210 0.114086 0.338393 0.435591 0.094532 0.089955 -0.078246 -0.424235 -0.060009 -0.024029 0.216105 -0.200758 0.355629 -0.064471 -0.363999 -0.262036 -0.133086 0.098844 -0.261911 -0.005939 0.175616 0.391982 -0.770444 0.388855 -0.119204 -0.278643 0.214109 0.102103 0.217649 -0.397861 -0.495405 0.182544 -0.159628 -0.289342 -0.184493 -0.124864 0.180174 -0.041944 -0.360903 -0.059231 -0.391131 0.341919 -0.019727 0.185225 0.279645 0.120691 0.554125 0.240180 -0.430143 -0.184782 0.006947 -0.151980 -0.455270 -0.027591 -0.206511 -0.208472 0.328361 0.701850 0.148089 0.089489 -0.058120 0.427903 -0.514781 -0.231077 0.390332 0.275691 -0.035687 0.246791 0.374775 -0.342687 -0.236085 -0.257465 -0.058228 0.069695 -0.262429 0.140051 -0.517620 -0.054271 0.319252 -0.145268 -0.161875 0.260374 -0.043619 -0.009149 -0.256590 0.489410 0.571330 -0.466596 0.121280 -0.256957 0.137005 -0.515404 -0.217183 -0.051278 0.398899 -0.151924 -0.008349 0.223495 0.104053 0.045889 -0.277740 -0.173822 -0.228759 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_base(int**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -0.666518 -0.159080 -0.215766 -1.341699 1.288899 0.664068 0.536984 -0.511740 -1.359700 -1.122059 0.250091 -2.365016 -1.598305 1.526054 -0.496943 1.225113 2.809199 0.107712 -0.240407 -0.962181 1.124024 -0.353110 2.939246 3.088305 -2.088301 0.198759 0.475170 1.046061 0.105318 -0.078235 0.335471 -1.867676 0.550758 -1.389177 0.595896 -0.765185 -0.466314 0.193149 1.242762 -3.466996 -0.259038 0.627585 -0.020770 0.121228 0.035090 0.974582 2.252398 1.621490 -0.688798 1.568497 1.596623 0.045493 0.913317 0.173169 0.018097 0.037568 -0.097616 -0.238099 -0.455457 -0.125581 -0.432415 -0.754362 0.176091 1.941608 2.353522 -0.306459 -1.134708 0.733268 0.588235 0.366615 0.369323 1.753208 0.333516 0.599479 1.560815 -2.440515 -0.308674 -4.379039 0.315138 -4.574395 -2.026951 -0.612795 1.550186 0.503083 1.034521 -0.004045 3.227847 -0.296759 -0.144820 1.892507 2.303295 -1.636966 -0.579545 -0.850942 -0.744806 0.405982 -0.820224 0.348494 0.786277 0.866469 -1.836618 -1.218530 0.776298 -0.108439 -1.233974 -1.512344 -0.078112 1.162816 -1.645690 -1.233640 -2.058526 1.176529 0.175556 -3.228170 -0.399553 -0.693236 0.862174 0.574901 -1.236489 -1.615864 0.582763 0.346546 -0.776520 -0.643506 -0.561508 1.496543 1.542803 0.221677 0.534969 1.195750 0.813845 3.051036 1.105586 -1.075796 -0.501860 0.810571 -0.626233 0.440971 -1.060726 -0.448557 1.054526 -1.867377 0.709794 0.798196 -1.229969 -0.863462 1.096632 -0.774601 0.216471 5.726770 -0.549450 2.034170 1.668249 -1.691649 1.190696 -1.081128 -0.026821 0.712124 1.572775 1.232807 -2.261790 -1.463647 1.521721 2.835856 1.069554 -2.145477 -0.637951 0.797947 0.631956 -0.491789 0.873136 0.470181 0.482527 -0.925022 -0.041603 1.394234 3.700756 -0.859414 -0.463700 0.274609 1.891231 0.032975 -2.130488 -0.388233 -2.206574 -0.391465 1.103192 0.744360 0.830703 2.342581 -3.926915 1.468321 -0.137094 0.166808 1.347491 0.916941 -1.399502 -3.093021 -0.033345 1.116636 1.795516 -0.275398 0.743395 -0.047252 -2.124866 0.080274 0.558065 0.741183 -1.491820 2.040399 -0.407960 -1.212300 -0.660911 -0.039122 -0.855812 -0.656956 -0.503569 1.411510 1.009843 -3.267358 1.814925 -0.042181 -1.262676 0.308355 -0.864337 2.269269 -1.868858 -1.920491 1.336256 -1.010298 -1.087302 -0.481345 -0.550736 0.747482 0.371783 0.341352 -1.459704 -1.974057 2.214982 -0.087444 2.256144 1.295728 -0.275030 1.842614 -0.995973 -1.365234 -1.069740 -1.385295 0.361627 -0.151604 -1.178767 -1.082032 -0.733727 1.396575 2.319085 -0.203803 -0.834043 -0.166129 1.807957 -2.359245 -0.194598 0.883617 1.026603 -1.126714 1.158559 1.249217 -1.685325 0.075641 -1.889547 0.334454 -0.930375 -1.289775 1.260713 -1.315127 0.287161 0.740343 -0.669441 -0.066666 1.062770 0.685138 0.170229 0.039642 2.440214 2.322452 -0.736418 -0.146984 -2.424773 1.067447 -2.454523 -1.987130 0.132500 0.374941 -1.094110 -0.511870 0.072710 1.509019 0.639732 -0.970360 -1.424905 0.564664 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.052319 0.376944 0.273296 -0.139008 0.406972 0.181769 0.159607 -0.012123 -0.212057 -0.362548 -0.148884 -0.327452 -0.539844 0.491512 -0.050788 0.209208 0.830855 0.182783 0.055348 -0.310817 0.349587 -0.542469 0.816179 0.790739 -0.729020 0.194675 0.515420 0.278514 0.182582 0.447447 -0.289821 -0.390958 0.321425 -0.413552 0.296740 -0.496550 -0.064027 -0.173056 0.018988 -1.133028 -0.094025 -0.084428 -0.112884 0.012246 -0.044683 0.517786 0.896206 0.433182 -0.273347 0.379408 0.343207 -0.037969 0.166704 0.131970 0.104423 0.211366 0.300597 0.102275 -0.269711 0.111777 -0.038701 -0.819852 0.009011 0.522992 0.712271 -0.126620 -0.092437 0.281899 -0.132815 0.018805 -0.038359 0.345054 0.257074 0.221965 0.481464 -0.871986 -0.013644 -1.219117 -0.219396 -1.762420 -0.588245 -0.590702 0.288594 -0.238510 0.392657 0.162515 0.814750 0.034474 0.285423 0.243251 0.850365 -0.722125 -0.184773 -0.324551 -0.079460 0.233339 -0.351158 0.031889 0.312300 -0.237022 -0.460331 -0.640401 0.640308 0.086815 -0.382762 -0.325008 -0.178350 0.493174 -0.765421 -0.459097 -0.876476 -0.329795 -0.210498 -0.867448 0.267424 -0.015315 0.707131 0.301790 -0.052808 -0.663636 0.121343 0.527024 -0.074621 -0.482947 -0.058551 0.595091 0.321104 -0.050345 0.283934 0.125503 0.257266 0.770597 0.883014 -0.130409 -0.239163 0.216166 -0.429483 -0.062546 -0.347539 -0.175166 0.341656 -0.561365 0.025789 0.349539 -0.368439 -0.086425 0.668624 -0.300856 0.337225 1.387202 -0.060863 0.308667 0.156155 -0.694433 0.317571 -0.274186 -0.297308 0.271730 0.552406 0.440995 -0.824803 -0.377321 0.153438 0.709415 0.307123 -0.727880 -0.436783 -0.237258 0.071988 -0.038842 0.161492 0.141799 0.097369 -0.334180 -0.058895 0.258864 1.097302 -0.500279 -0.412135 0.130615 -0.019441 -0.212918 -0.985279 -0.106710 -0.373512 -0.080356 -0.053848 -0.049322 0.159165 0.647480 -1.288600 0.528554 -0.399618 -0.352371 0.415090 0.090964 -0.165038 -0.802353 0.281693 0.544187 0.576286 0.103136 0.139600 -0.086960 -0.634781 -0.072395 0.036519 0.320726 -0.340608 0.499486 0.045316 -0.564836 -0.442393 -0.095887 0.090113 -0.321911 -0.017962 0.262165 0.199546 -1.352938 0.664861 -0.192933 -0.346965 0.288915 -0.065371 0.426112 -0.643825 -0.755409 0.328059 -0.119835 -0.273651 -0.258982 -0.167680 0.370668 0.004097 -0.233696 -0.273774 -0.734129 0.396068 -0.078306 0.293907 0.406178 0.245877 0.887824 -0.067072 -0.472518 -0.500225 -0.027262 -0.010762 -0.367327 -0.202763 -0.393645 -0.284940 0.478721 1.005535 0.041093 0.083233 -0.066153 0.599301 -0.887534 -0.294119 0.441434 0.683791 -0.206498 0.313157 0.458196 -0.483794 -0.349587 -0.379818 -0.131365 0.059318 -0.463211 0.246104 -0.666810 -0.012746 0.487760 -0.144298 -0.196919 0.428139 -0.055675 0.104941 -0.260107 0.604845 1.099536 -0.702933 0.037444 -0.457496 0.274503 -0.827546 -0.496568 0.015601 0.340721 -0.126295 -0.032354 0.176081 0.265032 0.063552 -0.283409 -0.158775 -0.258296 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -0.764512 -0.138784 -0.165633 -1.663793 1.492798 1.180988 0.638658 -0.919964 -1.542606 -1.098009 0.397744 -2.982215 -1.783715 1.842072 -0.661659 1.516075 3.158839 -0.029311 -0.480221 -1.020704 1.156347 0.215935 3.435881 3.538160 -2.365733 0.246619 0.332591 0.859258 0.166342 -0.081707 0.301680 -2.312100 0.766264 -1.306879 0.634883 -0.578590 -0.648991 0.093345 1.652559 -3.856937 -0.239558 0.916874 0.090908 0.051988 0.172860 0.996357 2.663819 1.854410 -0.452675 1.613554 1.694418 0.266227 1.074847 0.159576 0.256836 -0.041582 0.221975 -0.640299 -0.480820 -0.286010 -0.507809 -0.343467 -0.048404 2.326744 2.664851 -0.257705 -1.354439 0.707735 0.873311 0.407764 0.362908 2.048204 0.459731 0.994416 1.471853 -2.536157 -0.125328 -4.402136 0.415431 -4.653056 -2.308066 -0.479639 1.628578 0.844846 1.217446 -0.468448 3.674496 -0.281405 -0.352657 1.722294 2.758724 -1.945997 -0.607121 -0.811285 -0.699051 0.287102 -0.890954 0.611344 0.737967 0.794484 -2.172674 -1.225884 0.760302 -0.107018 -1.428148 -1.400543 0.079093 1.318345 -1.627332 -1.269362 -1.936925 1.497314 0.164542 -3.774991 -0.442092 -0.882290 0.507626 0.552084 -1.511777 -1.941786 0.701592 0.341571 -1.002978 -0.790177 -1.061754 1.816359 2.004338 0.330363 0.447245 1.448041 1.070272 3.599374 0.813801 -1.309072 -0.355429 0.700886 -0.475648 0.624800 -1.094615 -0.422705 0.968062 -2.020864 0.674518 1.077602 -1.361747 -0.597314 0.774514 -0.733513 0.102087 6.667395 -0.832930 2.480611 1.942509 -2.030635 1.279553 -1.290010 -0.087275 0.574443 1.626216 1.491715 -2.745015 -1.718518 1.957522 3.333829 1.208564 -2.371214 -0.222593 0.997682 0.490509 -0.892336 1.126287 0.462403 0.571296 -1.132063 -0.130323 1.666382 4.366830 -1.007693 -0.484164 0.288550 2.104753 0.381705 -1.891587 -0.483764 -2.351155 -0.324412 1.319980 0.982573 1.118141 2.678698 -4.205178 1.762437 0.000953 -0.037860 1.875136 0.998284 -1.744486 -2.931578 -0.108563 1.336275 1.950399 -0.413831 0.848004 -0.093229 -2.472032 0.063192 0.555195 0.710334 -1.742899 2.176011 -0.183988 -1.380670 -0.664510 -0.137923 -0.901823 -0.842095 -0.842191 1.667371 1.331984 -3.642902 2.169979 0.251169 -1.363746 0.229116 -1.233446 2.585200 -2.077567 -1.971406 1.388970 -1.238106 -1.177257 -0.370542 -0.660111 0.765372 0.298984 0.973695 -1.977577 -2.147875 2.575673 -0.066597 2.707263 1.488487 -0.269166 1.714923 -1.124681 -1.443633 -1.043784 -2.090259 0.606977 0.202006 -1.524450 -0.753909 -0.909226 1.635244 2.462619 -0.370324 -1.196171 -0.386714 1.776959 -2.717761 0.084349 0.924259 1.039247 -1.536304 0.987465 1.353463 -1.690559 0.236625 -2.054661 0.127793 -1.372321 -1.515699 1.456864 -1.221373 0.416945 0.677721 -0.814672 -0.137191 1.142146 0.696560 -0.022021 0.335059 2.682592 2.292056 -0.638993 -0.127170 -2.877075 1.406830 -2.731367 -2.367901 0.394018 -0.000190 -1.455610 -0.759373 -0.075274 1.781994 0.757090 -1.005019 -1.664231 0.827865 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::empty() const = 0.063123 0.571130 0.579541 -0.317946 0.527119 0.613142 0.087338 -0.034266 -0.258514 -0.227270 -0.132803 -0.817157 -0.662741 0.467919 -0.129250 -0.103834 0.647380 -0.072549 -0.095051 -0.033996 -0.079296 0.220625 0.668284 0.676592 -0.613111 0.292337 0.055893 0.165382 -0.200454 0.805019 -0.392251 -0.880902 -0.053479 0.410057 0.234236 0.007028 -0.290914 -0.423384 -0.145743 -0.985367 -0.078464 0.681821 -0.094516 -0.063147 0.257315 0.011279 1.111921 0.295481 0.009794 0.075543 0.156267 0.232449 0.292947 -0.017696 0.354317 -0.065630 0.790515 -0.265812 -0.274006 0.057709 -0.085761 -0.187216 -0.359578 0.556820 0.517331 0.074245 -0.297505 -0.333773 -0.068560 0.002068 -0.202207 0.427589 0.294067 0.679657 0.172805 0.358574 0.375433 -0.157958 0.213328 -0.459107 -0.596286 -0.326260 0.398352 0.797700 0.081481 -0.498816 0.812838 -0.144131 0.190204 0.014870 0.901368 -0.357667 -0.082624 -0.167404 -0.306256 0.108492 -0.096395 0.053015 -0.326995 -0.113071 -0.474285 -0.284458 0.246703 -0.102986 -0.366047 0.507650 -0.073398 0.309434 -0.500703 0.033913 -0.500959 0.048638 0.149643 -0.816466 -0.520764 0.048801 -0.253924 0.209937 -0.289680 -0.410109 0.263174 0.137599 -0.314469 -0.019124 -0.815707 0.663320 0.317521 -0.075071 0.130708 0.101925 0.510031 0.361425 0.080862 -0.171472 0.012082 0.023238 0.053970 -0.077738 -0.032264 0.109687 -0.390186 -0.238643 0.009379 0.274928 -0.306078 0.165827 -0.992413 -0.293061 0.116792 1.451983 -0.393693 0.432065 0.001855 -0.661952 0.454966 -0.020929 -0.482553 -0.150062 0.231435 0.703234 -0.386594 -0.244758 0.475202 0.778013 0.229411 -0.274973 0.522826 0.143032 -0.162048 -0.248727 0.577225 -0.008649 0.135533 -0.314544 -0.186986 0.299309 1.065992 -0.074622 -1.073373 0.109994 0.037509 0.334549 0.163117 0.110608 0.032325 -0.030742 0.193961 -0.099361 0.373353 0.573494 -1.178299 0.576346 0.164898 -0.598817 0.796656 -0.216822 -0.168279 0.151982 0.113725 0.602541 0.511451 0.195218 -0.197280 -0.380274 -0.526270 -0.100193 0.118190 0.222251 -0.483855 0.514741 0.146826 -0.638639 -0.315317 -0.806200 -0.050264 -0.122543 -0.775963 0.198363 0.132004 -1.106257 0.761114 0.334012 -0.096589 -0.199258 -0.334579 0.037705 -0.436807 -0.590472 0.018302 -0.384564 -0.514498 0.102411 -0.364905 0.039971 0.219262 0.340673 -0.583929 -0.484285 0.572175 0.145731 0.539185 0.424346 0.230829 0.272434 0.752761 -0.272118 0.015478 -0.511324 0.739046 -0.061952 -0.216629 0.234107 -0.505255 0.251452 0.652075 -0.171678 -0.127040 -0.706757 0.309892 -0.028869 -0.045920 0.221600 -0.511655 -0.339370 -0.030566 0.334352 0.010071 -0.129246 -0.566515 -0.195676 -0.420061 -0.377064 0.093425 -0.395413 -0.125344 0.532357 -0.417024 -0.555573 0.140371 -0.182052 -0.339414 0.075231 0.527593 0.139438 -0.299196 0.701910 -0.530570 0.463118 -0.650149 -0.423997 0.075495 -0.429172 -0.282284 -0.355987 -0.151216 0.101404 0.018594 -0.009652 -0.167946 0.178214 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::front() = 0.010570 0.284406 0.240338 -0.005932 0.229628 -0.051441 0.117950 0.248095 -0.138979 -0.506150 -0.085051 -0.436218 -0.676615 0.346961 -0.074675 -0.126837 0.582216 0.146135 0.113545 -0.232105 0.001379 -0.276457 0.586325 0.574345 -0.563309 0.132133 0.129392 0.252392 0.072259 0.314968 0.114230 -0.523113 0.220060 0.135294 0.339889 -0.208602 -0.018224 -0.175756 -0.407935 -0.863611 -0.116080 0.373088 0.045295 0.041960 0.099814 0.521255 0.683535 0.314257 -0.181322 0.315347 0.214777 0.011567 0.225066 0.078854 -0.028865 -0.227899 0.061427 -0.325002 -0.378134 0.182502 -0.006257 -0.813546 -0.228434 0.371026 0.553165 -0.112286 -0.056419 -0.049289 -0.184948 0.142947 -0.002043 0.244641 0.400751 0.198855 0.394809 -0.007195 -0.106891 -0.613914 -0.075973 -1.516994 -0.487225 -0.517717 0.667802 0.357531 -0.051575 -0.155516 0.597584 0.129114 0.254795 0.326863 0.678364 -0.256662 -0.206141 -0.270372 0.023097 0.342835 -0.335300 0.031856 0.152643 0.035250 -0.357386 -0.221795 0.282580 -0.159524 -0.260254 0.013057 -0.210407 0.347917 -0.723869 -0.027702 -0.792721 -0.187020 0.223248 -0.654974 0.107845 0.151952 0.260530 0.358644 -0.020610 -0.007452 0.104697 0.093060 -0.044158 -0.019805 -0.563528 0.508424 0.045336 -0.055198 0.272180 0.337944 0.249107 0.287225 0.438377 -0.045645 -0.217463 0.202208 -0.183122 -0.030402 -0.195100 -0.084706 0.277239 -0.357229 0.123587 -0.015960 -0.286913 -0.317545 -0.356575 -0.293900 0.297994 0.532031 -0.026144 0.221805 0.106697 -0.390732 0.257289 -0.175674 -0.219180 0.127895 0.408950 0.337032 0.066466 -0.213108 0.105584 0.545193 0.204554 -0.303691 0.039385 -0.022344 0.135763 -0.166526 0.270483 0.195223 0.119015 -0.211132 -0.012145 0.247018 0.524465 -0.146967 -0.329851 -0.005774 0.146449 0.094587 -0.315245 0.075708 0.070449 -0.081618 0.043400 0.013996 0.051988 0.465263 -0.865579 0.425323 0.042175 -0.047235 0.187690 -0.074853 -0.112170 -0.630566 0.240900 0.404859 0.421956 0.166900 0.043391 -0.118938 -0.456200 -0.052307 0.082009 0.286422 -0.206821 0.360728 -0.106806 -0.244112 -0.385247 -0.397864 0.008395 -0.007480 -0.207999 0.161180 0.460456 -0.947409 0.478135 -0.252092 -0.349104 -0.130271 -0.046511 0.214510 -0.538940 -0.534692 0.042967 -0.359972 -0.768964 -0.289505 -0.195143 0.121644 -0.063461 -0.221254 -0.032751 -0.323640 0.583398 0.018432 0.200946 0.301882 0.154470 0.708680 0.370710 -0.406096 -0.088239 -0.163068 0.241151 -0.545593 -0.055659 0.194376 -0.200056 0.187210 0.767239 -0.022855 -0.050803 -0.066076 0.416918 -0.346182 -0.425710 0.346922 0.071693 0.096870 0.512631 0.360221 -0.400695 -0.234298 -0.502588 0.006339 0.093280 -0.344622 0.105582 -0.599196 -0.052312 0.432985 -0.139200 -0.348883 0.275682 -0.092478 -0.146138 -0.237201 0.546996 0.648665 -0.546502 0.399123 -0.397958 0.223123 -0.611066 -0.319391 -0.093164 0.146979 0.039711 0.003687 -0.006272 0.018787 0.093650 -0.299294 -0.354147 0.046096 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::operator*() const = -0.009347 0.369540 0.211218 -0.139034 0.352797 0.287771 0.081346 -0.065336 -0.127741 -0.230885 -0.123914 -0.311895 -0.379510 0.323258 -0.077721 0.092510 0.511799 0.039272 0.034378 -0.140017 0.133101 -0.128161 0.541099 0.489581 -0.466744 0.159975 0.300812 0.115540 -0.018656 0.412668 -0.221362 -0.484725 0.160070 -0.089173 0.133307 -0.212963 -0.096269 -0.191897 0.018449 -0.705978 -0.056443 0.041168 -0.140564 -0.007873 0.014070 0.124200 0.694828 0.257362 -0.105360 0.194561 0.199941 0.168603 0.086400 0.067370 0.124355 0.107412 0.269863 -0.126257 -0.148889 0.038259 -0.039692 -0.340684 -0.116006 0.376408 0.417669 -0.028589 -0.097873 0.083938 -0.150018 0.001634 -0.095535 0.251213 0.162735 0.305362 0.210428 -0.327106 0.033297 -0.575219 -0.078898 -0.847538 -0.383178 -0.355220 0.114027 0.117241 0.234078 0.050648 0.553992 -0.011250 0.195417 0.129565 0.606140 -0.432461 -0.086535 -0.164159 -0.114441 0.105246 -0.165780 0.051698 -0.067710 -0.132815 -0.306127 -0.423368 0.322915 0.026223 -0.253763 -0.113343 -0.089336 0.260309 -0.510966 -0.199619 -0.494384 -0.131001 -0.106648 -0.576357 -0.072330 0.022518 0.322911 0.157210 -0.077498 -0.471228 0.118784 0.320711 -0.102948 -0.267056 -0.122251 0.324474 0.247197 -0.039758 0.150628 0.033185 0.252683 0.529124 0.399846 -0.088698 -0.107034 0.067327 -0.114471 -0.076422 -0.137779 -0.020158 -0.046430 -0.322423 0.106884 0.307423 -0.228867 -0.047260 0.052424 -0.282703 0.193346 0.945974 -0.144234 0.218971 0.060366 -0.520709 0.110632 -0.202914 -0.283852 0.057247 0.284118 0.390953 -0.379085 -0.222929 0.197340 0.481010 0.187394 -0.332549 -0.064830 -0.080333 -0.017405 -0.067947 0.187981 0.051246 0.039638 -0.226427 -0.085428 0.196488 0.760773 -0.211892 -0.328068 0.118335 0.053904 -0.006853 -0.304007 -0.037107 -0.187498 -0.027942 0.132474 -0.063605 0.147302 0.423248 -0.850739 0.344049 -0.153669 -0.297781 0.250046 0.042107 -0.097328 -0.194664 0.175479 0.421349 0.354761 0.055803 0.154352 -0.159906 -0.392256 -0.065891 0.053531 0.207587 -0.279512 0.323261 0.125487 -0.488228 -0.291000 -0.136023 0.043012 -0.190570 -0.180533 0.151483 0.127336 -0.931281 0.509016 -0.001040 -0.152279 0.105566 -0.122452 0.288511 -0.383729 -0.481289 0.194614 -0.152870 -0.161766 0.035014 -0.150016 0.199128 0.067355 0.056122 -0.250187 -0.398108 0.244163 0.092456 0.223128 0.274496 0.217228 0.440160 -0.103854 -0.254356 -0.218992 -0.160049 0.222548 -0.160018 -0.134756 -0.061414 -0.246895 0.290922 0.617659 -0.013759 -0.069212 -0.152979 0.310431 -0.411727 -0.054448 0.242245 0.290965 -0.221241 0.088599 0.273056 -0.172968 -0.213629 -0.271371 -0.008451 -0.094165 -0.324220 0.101763 -0.388525 -0.038951 0.381496 -0.151714 -0.243780 0.240977 -0.069838 0.008390 -0.089363 0.328444 0.455397 -0.357213 0.168650 -0.307862 0.184963 -0.533348 -0.368462 0.042391 0.024572 -0.107501 -0.117464 -0.064001 0.157987 -0.009801 -0.011361 -0.063220 -0.112196 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::pop_front() = 0.014234 2.455529 2.125600 -1.552798 2.652458 3.008651 0.310608 -0.069462 -0.904188 -1.137652 -1.020027 -2.836822 -3.094973 2.164943 -0.544654 0.000000 3.090978 -0.366878 -0.333578 -0.231438 0.845704 0.416749 3.026306 2.546935 -3.095265 0.926844 1.114751 1.170308 -0.483309 3.366661 -1.530461 -3.585911 -0.177529 0.830994 1.517133 -0.554302 -0.774878 -1.565047 -0.542132 -4.431091 -0.547334 2.378133 -1.189788 -0.023863 0.732596 0.198340 4.758044 1.573375 -0.770769 0.098393 1.147412 1.046003 0.970967 0.069258 0.760619 0.247291 2.445930 -0.363692 -1.027676 0.131846 -0.443350 -1.136422 -0.852670 2.510004 2.635427 -0.057277 -1.128507 -0.198502 -0.255231 0.015432 -0.992983 1.998692 1.360695 2.495913 1.462610 0.057147 0.642984 -2.155299 0.864154 -2.936964 -2.448723 -2.276254 0.752450 2.438958 0.805825 -2.018135 4.065028 -0.710752 0.946804 0.950372 4.063868 -1.976768 -0.241979 -2.181660 -1.332024 0.396917 -0.823978 -0.283278 -0.705361 -0.634862 -1.940847 -2.070374 0.725443 -0.326230 -1.660858 0.670609 -0.936466 2.024047 -2.154075 -0.571535 -2.973626 0.347598 -0.034508 -3.985232 -2.171764 0.035446 -0.591291 0.658863 -0.504781 -2.404176 1.015456 1.645378 -1.294991 -0.825661 -1.888701 3.209368 1.966529 -0.769062 0.652643 0.641868 1.921232 2.031799 1.677986 -0.599669 -0.803248 0.550995 -0.301379 -0.728031 -0.868528 0.674948 -0.612940 -1.511253 -0.455718 1.925817 -1.208382 0.651684 -2.414392 -2.104082 1.131024 7.870496 -1.595937 1.375160 -0.228865 -3.142940 2.493890 0.193606 -2.138532 -0.156069 1.172414 3.140296 -3.269162 -1.369913 2.085413 3.309272 1.024809 -1.899964 1.253162 -0.002481 -0.481481 -1.178375 1.766890 0.575517 0.136414 -1.095340 -0.752274 1.203512 5.059587 -1.154058 -4.593455 0.966679 0.942067 0.471425 -0.738982 -0.013688 -0.945576 -0.729146 1.207026 -0.473395 1.705466 2.841752 -5.097060 2.430432 0.535396 -2.581793 3.034188 -0.961538 -0.141470 -0.352160 0.645762 2.954019 2.244764 0.529875 -0.530089 -1.871574 -2.558760 0.045569 0.742289 1.481353 -1.813589 2.235553 0.149247 -2.594750 -1.736204 -2.571434 -0.833760 -0.882854 -2.631993 0.792216 0.253551 -4.946504 3.654362 0.674213 -0.289340 0.020329 -1.197934 1.058252 -2.155861 -3.136464 0.965507 -0.922597 -1.770591 0.172215 -1.217627 1.034057 1.229727 0.991411 -2.651450 -3.550758 2.113813 0.537666 2.166986 1.756415 1.469161 2.021816 2.283527 -1.526163 -1.043434 -2.576884 2.665356 0.365388 -0.957216 -0.793539 -1.659540 1.600371 3.225558 -0.715116 -0.284044 -3.066634 1.800053 -1.403426 -0.263803 1.177642 -1.079886 -1.766874 -0.244598 1.651783 -0.277192 -1.348244 -2.525942 -0.080144 -1.650740 -1.955057 0.216564 -2.452011 -0.686742 2.718975 -1.630529 -2.089512 0.890425 -0.205511 -1.046161 -0.376337 2.698469 1.563900 -1.876692 2.118121 -2.395332 2.221306 -3.343002 -2.077473 0.174471 -1.586276 -0.580247 -1.095275 0.080151 0.679899 -0.039442 0.019410 -0.536722 -0.444219 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_pop_front_aux() = 0.341562 3.243010 2.720229 -1.434677 2.643400 3.560407 0.390934 0.027447 -0.751174 -0.881131 -0.970857 -3.211253 -3.257790 2.136821 -0.462712 -0.705639 3.265539 -0.423560 -0.393115 0.000507 0.117562 1.197985 3.156557 3.026481 -3.120956 1.283024 1.130913 0.622084 -0.835375 3.648758 -2.207555 -4.072521 -0.080619 1.481378 1.187546 -0.115144 -1.245656 -2.645698 -0.751836 -4.646042 -0.437292 2.453675 -1.566189 -0.386990 0.965208 0.026797 5.707372 1.402012 -0.415175 -0.294663 0.735870 1.243725 0.831110 -0.083927 1.427656 0.035739 3.202126 -0.099464 -1.116456 0.071962 -0.371092 -0.801372 -1.566786 2.703649 2.364525 0.448726 -1.212581 -1.022363 -0.297725 -0.221519 -1.428247 1.926596 1.913041 3.377069 1.151051 1.049506 1.097240 -1.278073 0.721589 -2.259454 -2.771314 -2.168629 1.101210 2.395804 0.693445 -2.438459 3.787419 -0.742999 1.431237 0.428874 4.526558 -2.057157 -0.327162 -1.586067 -1.461269 0.519151 -0.524620 0.365125 -1.190250 -1.520020 -2.291567 -2.056695 0.984251 -0.211652 -1.749226 1.652310 -0.383617 1.692189 -1.875326 0.019051 -2.814100 -0.155075 0.269180 -4.096215 -2.874069 0.404404 -0.464796 0.971248 -1.034417 -2.632267 1.039045 1.505114 -1.436850 -0.847962 -2.166335 3.338786 1.967247 -0.499228 0.795344 0.285614 2.557731 1.961004 1.509333 -0.488636 -0.144723 -0.032678 -0.171634 -0.817905 -0.373056 0.751603 -1.457409 -1.077961 -0.095540 2.111972 -1.434521 0.887021 -3.272770 -1.810937 1.006285 8.206577 -1.875614 1.739348 -0.407917 -3.500294 2.242584 -0.114436 -2.777625 -0.710569 1.202849 3.657857 -3.198611 -1.092967 2.113850 3.599531 1.080569 -1.911027 2.309846 0.152851 -1.014042 -1.555702 2.352121 0.026787 0.694213 -1.427354 -0.935894 1.920373 5.248208 -1.080166 -5.936134 0.669211 0.354192 1.556790 0.330032 0.343152 0.000000 -0.223583 1.439080 -0.710885 2.024449 2.795040 -5.488847 2.516184 0.504380 -3.278994 3.600071 -0.715368 -0.587894 1.290106 1.105860 3.368967 2.321353 1.145445 -1.141937 -2.179066 -2.457972 -0.489652 0.796870 1.311615 -2.066047 2.361733 0.670155 -3.156077 -1.848818 -3.608126 -0.312614 -0.871177 -3.379869 0.746512 -0.251034 -5.656795 4.093691 1.492170 -0.314570 -0.649915 -1.952382 0.404658 -2.257483 -3.352773 0.485018 -1.276299 -1.939507 0.671920 -1.652692 0.689806 1.625292 1.877719 -3.048639 -3.372863 2.517831 1.017635 2.574289 1.996533 1.700115 2.071534 2.724566 -1.363417 -0.746572 -2.912411 3.858288 0.463313 -1.487298 -0.145772 -2.388143 1.434691 3.354389 -1.212429 -0.451358 -3.890660 1.380592 -1.206083 -0.080011 1.101995 -1.144238 -1.882265 -0.629614 1.655998 0.134258 -1.164203 -2.441891 -0.901639 -1.922775 -2.227837 0.005397 -2.324593 -0.663043 2.953395 -1.963995 -2.376044 0.637373 -0.915270 -1.101667 0.199967 1.962951 1.519728 -2.207045 2.727382 -2.466806 2.514192 -3.414371 -2.470645 0.711768 -2.431617 -0.826549 -1.678122 -0.378475 0.391707 -0.292889 -0.043980 -0.491315 0.240517 +PE-benchmarks/cutting-a-rod.cpp__max(int, int) = -0.444021 -0.475063 -0.154973 -0.409908 0.416443 0.173706 0.221706 -0.364058 -0.810828 -0.520716 0.245428 -0.825332 -0.422339 0.796596 -0.232319 0.710890 1.001177 0.221964 -0.130314 -0.377823 0.616259 -0.636158 0.960655 1.197293 -0.589644 0.017499 0.064593 0.265237 -0.037467 0.216664 0.236887 -0.814100 0.273647 -0.712711 0.232186 -0.522469 -0.298533 0.654921 0.708188 -1.308959 -0.109851 0.468470 0.121735 0.088541 0.067689 0.269312 0.458761 0.495058 -0.103197 1.046004 0.462211 -0.091999 0.438165 0.014614 0.283109 0.265638 -0.033724 -0.110837 -0.160635 0.139906 -0.441593 -0.251131 0.184635 0.614977 0.876181 -0.270718 -0.440832 0.146705 0.006496 0.250429 0.333354 0.675994 -0.045885 -0.120240 0.545742 -1.141874 -0.158885 -1.880101 0.206823 -1.826290 -0.620873 0.139613 0.629687 0.418478 0.400586 -0.026238 1.284259 -0.289169 -0.527458 0.672104 0.849720 -0.586988 -0.150350 -0.045941 -0.314566 -0.146666 -0.262188 -0.052188 0.283903 0.365651 -0.661683 -0.587765 0.402101 -0.017042 -0.374522 -0.668523 -0.163664 0.715096 -0.886234 -0.668636 -0.601809 0.575586 -0.023871 -1.015793 0.056192 -0.477430 0.039082 0.371887 -0.814628 -0.552231 0.518636 0.079957 -0.233291 -0.300810 0.017472 0.606571 0.378891 0.155060 -0.045485 0.431272 0.003041 1.111993 0.369873 -0.487082 0.019604 0.412133 -0.114463 0.431300 -0.397508 -0.273580 0.305535 -0.649933 -0.014442 0.043414 -0.469827 -0.246603 0.558160 -0.168697 -0.207404 2.063006 -0.290608 0.852617 0.722784 -0.574930 0.587916 -0.218823 0.358629 0.345206 0.729016 0.322802 -0.925559 -0.637422 0.743754 1.111866 0.396593 -0.810155 -0.696524 0.276635 0.416026 0.084423 0.450320 0.099404 0.143926 -0.410219 -0.007461 0.063089 1.532035 -0.493409 0.073686 0.054527 0.584000 -0.166782 -1.141087 -0.133330 -1.164199 -0.139469 0.200891 0.208184 0.184776 0.893401 -1.575240 0.698983 -0.403394 0.081795 0.519618 0.412328 -0.469770 -1.718893 -0.401149 0.165619 0.794213 -0.022075 0.469731 0.213278 -0.899795 0.113394 0.031249 0.281121 -0.710202 0.901342 -0.234655 -0.465200 -0.091046 0.211526 -0.385730 -0.565324 -0.125392 0.585409 0.720484 -1.041489 0.432646 0.173081 -0.320716 0.233241 0.299719 0.932985 -0.474506 -0.776922 0.564019 -0.425537 -0.444811 -0.247642 -0.280840 0.220668 0.023278 -0.279493 -0.372627 -0.706357 0.797329 -0.257545 0.996854 0.393511 -0.373624 0.690802 -0.143506 -0.576960 -0.313678 -0.338324 0.009708 -0.303060 -0.147084 -0.710156 -0.124709 0.553787 0.664384 0.373210 -0.392462 -0.043787 0.963976 -0.748563 0.195801 0.422031 0.288876 -0.280721 0.458426 0.516336 -0.663397 0.164350 -0.667344 0.205981 -0.518623 -0.120447 0.669842 -0.335729 0.119392 -0.140375 -0.120623 -0.012529 0.329783 0.578063 -0.007310 0.027671 1.081673 0.769657 -0.187962 -0.090971 -0.778773 0.326254 -0.678328 -0.517603 -0.245235 0.629438 -0.623577 -0.240845 0.008857 0.669957 0.536773 -0.340144 -0.441294 0.217681 +PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -1.743782 -1.516767 -0.495096 -2.298974 1.798634 3.009901 1.199809 -2.412686 -3.629481 -1.267463 1.557665 -5.017366 -2.607611 4.346842 -1.436044 3.194888 5.329289 0.489325 -1.947619 -1.477897 3.247830 -0.201663 6.089889 6.431637 -3.935209 0.119677 0.010114 1.445264 1.474673 0.347411 0.940069 -2.591358 1.837724 -3.425600 0.297605 -1.897486 -0.942990 1.338511 3.126676 -6.697882 -0.350403 1.930591 0.596257 -0.070450 0.233780 2.295536 3.580838 3.482574 -0.224378 3.347102 2.549533 -0.333861 2.014252 0.254426 0.941293 0.088470 0.842589 -0.227896 -0.901021 -0.665140 -1.082559 -1.426670 0.133981 4.264070 5.214879 -0.243976 -1.952738 1.237620 1.131793 1.119451 1.425548 3.314219 0.344403 1.184482 2.718913 -4.360027 0.228034 -6.552273 0.549661 -7.477058 -2.976110 0.166354 3.345263 1.425392 2.346223 -0.733045 6.231430 -0.682361 -2.116026 3.804746 4.985651 -3.742507 -1.113285 -0.970695 -1.562015 0.356021 -2.168453 1.216983 1.485013 1.487928 -3.833342 -2.478757 0.826601 0.568138 -2.409681 -1.992719 -0.277313 3.125010 -3.804330 -2.573383 -2.008654 2.207312 -0.327587 -6.678327 -1.461925 -2.539260 0.943910 1.170368 -2.957604 -3.145372 1.701231 0.824888 -0.945703 -1.969975 -0.951252 3.020551 2.613829 1.063810 -0.141277 2.279078 1.184908 6.007671 1.481409 -2.308328 0.231017 1.119845 -0.910592 2.178008 -1.957696 -1.219157 1.777958 -3.799717 0.286694 1.807644 -2.341248 -0.898831 1.559664 -0.025679 -0.261953 11.970275 -0.824842 4.739566 3.925087 -3.681840 1.865920 -1.867818 0.807313 1.758761 2.695818 1.933070 -5.597106 -3.297853 3.510924 6.087356 2.275036 -4.487517 -0.496269 1.415229 0.941311 -1.182965 2.146326 0.777527 0.671001 -2.470730 -0.404200 2.483914 7.694307 -2.720609 -0.411959 0.673049 1.827976 -0.245417 -4.126413 -0.739879 -3.188244 -0.108116 1.691901 1.275705 1.810403 4.724493 -5.934249 3.876239 -0.772921 0.013778 3.518570 1.580619 -3.469469 -4.207371 -0.939528 1.778257 3.492883 -0.167894 -0.089405 0.931129 -5.035386 0.124825 0.950117 0.786067 -2.776709 4.106596 0.154557 -1.829281 -1.663850 0.387319 -0.842642 -1.888834 -1.223755 3.332918 0.942388 -5.050833 3.335895 0.567303 -2.378408 0.287409 -0.760327 3.737564 -3.575521 -3.902438 2.499657 -1.883079 -2.764257 -1.811982 -1.134087 1.532786 1.623243 0.756174 -3.578002 -4.141954 4.401761 -1.441232 4.866504 2.369068 -0.917597 3.192240 -0.886651 -2.392467 -2.643093 -2.780905 0.436526 -0.016851 -2.667426 -2.102229 -1.179635 3.415759 3.780996 -0.021367 -2.422091 -0.524893 4.266741 -3.948984 -0.650817 1.705598 2.183872 -2.769589 1.895133 2.373774 -3.486849 0.988253 -2.895698 -0.758522 -2.455337 -2.300969 3.398708 -1.327454 1.527783 0.048061 -0.399184 0.116107 1.798763 1.590399 -0.078976 0.964028 5.497830 3.813538 -1.406911 -0.384956 -5.127399 3.014496 -4.653484 -3.945445 0.711613 1.159101 -2.672702 -0.953073 0.203144 3.517825 2.688089 -2.954245 -2.561591 1.570582 +PE-benchmarks/cutting-a-rod.cpp__main = 0.022574 0.092824 0.460457 -0.239250 0.430119 -0.089130 0.253720 0.345065 -0.614261 -0.677395 0.198989 -1.076219 -0.951047 0.702096 -0.090195 -0.110781 0.917940 0.128775 -0.066752 -0.294761 -0.029022 -0.269041 0.890980 0.970451 -0.758241 0.272491 -0.267106 0.300720 0.030217 0.466201 0.148754 -0.825547 0.220173 0.247569 0.329990 -0.101546 -0.219873 -0.187769 -0.380824 -1.284318 -0.078375 0.965242 0.127624 -0.018322 0.248558 0.887962 0.958439 0.483014 -0.173131 0.648883 0.340114 -0.284305 0.429461 0.052793 0.220008 -0.472963 0.339398 -0.270685 -0.663719 0.256921 -0.109199 -0.951858 -0.404034 0.545953 0.787502 -0.170984 -0.309185 -0.281301 -0.050249 0.259072 0.212829 0.407058 0.605428 0.169872 0.604434 0.310084 -0.049559 -0.824987 0.055716 -2.136802 -0.833994 -0.262484 1.536513 0.679942 -0.243179 -0.594384 0.917086 0.024786 -0.019104 0.521134 1.018117 -0.228758 -0.383844 -0.197764 -0.125776 0.400218 -0.388392 0.033489 0.356626 0.148884 -0.690747 0.025359 0.372796 -0.310922 -0.370016 0.320594 -0.143741 0.571301 -0.984530 0.094436 -0.830875 0.186874 0.639923 -1.006106 -0.075328 0.178727 0.084758 0.561885 -0.423615 0.248660 0.314977 -0.255161 -0.318147 0.245699 -1.085338 0.904705 0.014547 0.258345 0.325701 0.583569 0.481220 0.293522 0.332877 -0.261338 -0.032469 0.176552 0.000497 0.336221 -0.116977 -0.225683 0.266622 -0.424451 0.221070 -0.303150 -0.481090 -0.372996 -0.879651 -0.009420 0.071182 0.956426 -0.128331 0.742965 0.319136 -0.459977 0.569991 -0.166514 -0.150522 0.108814 0.567396 0.393483 0.171389 -0.357853 0.478496 0.981776 0.380252 -0.701293 0.329930 0.290038 0.178759 -0.219708 0.615912 0.205549 0.445728 -0.398150 -0.064738 0.400077 1.006729 -0.136815 -0.933002 -0.032732 0.177148 0.405664 -0.297727 0.168854 0.249854 -0.003455 0.102244 0.074054 0.259660 0.774644 -1.573961 0.753573 0.146721 -0.100350 0.655849 -0.003703 -0.453706 -1.031864 -0.067439 0.411177 0.789999 0.434414 -0.258339 -0.030426 -0.699556 -0.077885 0.124090 0.151173 -0.349868 0.625256 -0.239382 -0.239226 -0.352140 -0.928894 -0.108384 0.221912 -0.550507 0.389452 0.624426 -1.445524 0.599325 -0.054353 -0.513853 -0.504823 -0.055655 0.263836 -0.629262 -0.736506 -0.044709 -0.762430 -1.487193 -0.555480 -0.376024 -0.083498 0.005277 -0.142919 -0.139110 -0.489372 1.225769 -0.145675 0.726944 0.499132 -0.118810 0.939088 1.056351 -0.569469 0.037276 -0.419635 0.678263 -0.798700 -0.173987 0.474617 -0.406961 0.222368 0.727010 0.008250 -0.189259 -0.427665 0.624724 -0.312205 -0.548219 0.533959 -0.315902 0.051383 0.899842 0.627322 -0.576921 0.077065 -0.879056 -0.283635 -0.242171 -0.320251 0.295648 -0.440450 0.007878 0.310607 -0.195848 -0.477646 0.232928 -0.168519 -0.417630 -0.183261 0.996597 1.034361 -0.732006 0.715762 -0.755648 0.561767 -0.770182 -0.583940 -0.023874 0.101337 -0.324496 -0.157044 -0.020525 0.111436 0.294155 -0.705673 -0.713976 0.602275 +PE-benchmarks/longest-palindromic-subsequence.cpp__max(int, int) = -0.444021 -0.475063 -0.154973 -0.409908 0.416443 0.173706 0.221706 -0.364058 -0.810828 -0.520716 0.245428 -0.825332 -0.422339 0.796596 -0.232319 0.710890 1.001177 0.221964 -0.130314 -0.377823 0.616259 -0.636158 0.960655 1.197293 -0.589644 0.017499 0.064593 0.265237 -0.037467 0.216664 0.236887 -0.814100 0.273647 -0.712711 0.232186 -0.522469 -0.298533 0.654921 0.708188 -1.308959 -0.109851 0.468470 0.121735 0.088541 0.067689 0.269312 0.458761 0.495058 -0.103197 1.046004 0.462211 -0.091999 0.438165 0.014614 0.283109 0.265638 -0.033724 -0.110837 -0.160635 0.139906 -0.441593 -0.251131 0.184635 0.614977 0.876181 -0.270718 -0.440832 0.146705 0.006496 0.250429 0.333354 0.675994 -0.045885 -0.120240 0.545742 -1.141874 -0.158885 -1.880101 0.206823 -1.826290 -0.620873 0.139613 0.629687 0.418478 0.400586 -0.026238 1.284259 -0.289169 -0.527458 0.672104 0.849720 -0.586988 -0.150350 -0.045941 -0.314566 -0.146666 -0.262188 -0.052188 0.283903 0.365651 -0.661683 -0.587765 0.402101 -0.017042 -0.374522 -0.668523 -0.163664 0.715096 -0.886234 -0.668636 -0.601809 0.575586 -0.023871 -1.015793 0.056192 -0.477430 0.039082 0.371887 -0.814628 -0.552231 0.518636 0.079957 -0.233291 -0.300810 0.017472 0.606571 0.378891 0.155060 -0.045485 0.431272 0.003041 1.111993 0.369873 -0.487082 0.019604 0.412133 -0.114463 0.431300 -0.397508 -0.273580 0.305535 -0.649933 -0.014442 0.043414 -0.469827 -0.246603 0.558160 -0.168697 -0.207404 2.063006 -0.290608 0.852617 0.722784 -0.574930 0.587916 -0.218823 0.358629 0.345206 0.729016 0.322802 -0.925559 -0.637422 0.743754 1.111866 0.396593 -0.810155 -0.696524 0.276635 0.416026 0.084423 0.450320 0.099404 0.143926 -0.410219 -0.007461 0.063089 1.532035 -0.493409 0.073686 0.054527 0.584000 -0.166782 -1.141087 -0.133330 -1.164199 -0.139469 0.200891 0.208184 0.184776 0.893401 -1.575240 0.698983 -0.403394 0.081795 0.519618 0.412328 -0.469770 -1.718893 -0.401149 0.165619 0.794213 -0.022075 0.469731 0.213278 -0.899795 0.113394 0.031249 0.281121 -0.710202 0.901342 -0.234655 -0.465200 -0.091046 0.211526 -0.385730 -0.565324 -0.125392 0.585409 0.720484 -1.041489 0.432646 0.173081 -0.320716 0.233241 0.299719 0.932985 -0.474506 -0.776922 0.564019 -0.425537 -0.444811 -0.247642 -0.280840 0.220668 0.023278 -0.279493 -0.372627 -0.706357 0.797329 -0.257545 0.996854 0.393511 -0.373624 0.690802 -0.143506 -0.576960 -0.313678 -0.338324 0.009708 -0.303060 -0.147084 -0.710156 -0.124709 0.553787 0.664384 0.373210 -0.392462 -0.043787 0.963976 -0.748563 0.195801 0.422031 0.288876 -0.280721 0.458426 0.516336 -0.663397 0.164350 -0.667344 0.205981 -0.518623 -0.120447 0.669842 -0.335729 0.119392 -0.140375 -0.120623 -0.012529 0.329783 0.578063 -0.007310 0.027671 1.081673 0.769657 -0.187962 -0.090971 -0.778773 0.326254 -0.678328 -0.517603 -0.245235 0.629438 -0.623577 -0.240845 0.008857 0.669957 0.536773 -0.340144 -0.441294 0.217681 +PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -5.337206 -5.098473 -2.565279 -7.910630 4.533538 10.197860 2.808621 -10.178074 -9.278137 -1.294014 5.439998 -15.006293 -5.440994 10.894708 -4.972899 9.067485 12.145523 -0.929361 -6.931555 -3.530626 8.112529 3.801938 16.264277 16.344822 -8.821221 -0.643687 -1.761755 5.067491 3.327123 -2.748302 4.828257 -4.806124 3.460130 -9.232263 -2.044565 -1.354988 -2.598467 3.365574 9.994242 -14.665436 -1.060971 3.325203 0.257190 -0.020175 0.085630 1.634727 7.918385 8.951176 2.697483 7.240922 6.016981 -0.098210 5.367588 0.320625 3.243696 -1.289038 2.214515 -3.619205 -0.713589 -3.801231 -2.815749 1.171756 0.176169 11.854339 12.296343 1.634892 -6.017838 3.819336 3.980982 3.014836 3.716783 9.286010 -3.288861 5.871375 4.960952 -11.803976 3.247859 -12.393257 2.481209 -9.724148 -6.887308 3.368708 6.584428 5.731758 6.495276 0.344584 15.856423 -1.060144 -7.912348 10.940834 12.146220 -8.813043 -2.242538 -0.674257 -4.493950 -0.637290 -4.076073 5.592215 0.846667 8.253120 -9.759093 -3.125501 -0.520283 1.680551 -5.906810 -4.915015 0.712343 7.102520 -7.220259 -5.801926 -0.266578 8.944970 -1.058676 -17.369407 -8.743041 -7.398988 2.724140 0.779437 -8.515228 -8.474172 4.422472 1.189989 -1.650999 -3.465150 -2.193540 3.867170 8.407483 3.165169 -2.271242 8.189584 3.454200 17.714586 -1.269993 -5.553472 2.062186 1.482947 0.067572 6.707656 -2.201940 -1.935477 0.163415 -9.426557 1.886896 6.529703 -5.084165 -3.498711 -0.015548 1.569952 -2.387729 34.126842 -2.420155 13.340128 11.979991 -8.838793 0.610392 -6.692411 3.352558 3.398218 4.098709 4.167764 -14.812731 -8.956316 11.057681 15.854626 5.278347 -10.115618 2.163620 5.760979 1.104427 -4.147654 5.658719 1.553866 0.587076 -4.437193 -1.206438 8.388982 19.174773 -5.804656 0.555488 2.736863 3.956154 1.321462 -6.962970 -2.210812 -5.984734 0.101750 6.496741 5.139700 4.703099 11.600150 -10.498238 9.040454 0.937856 2.184210 9.509326 4.959754 -10.316660 -6.504364 -4.627774 4.132850 6.660547 -3.013232 -2.175539 2.093622 -12.537376 0.616493 4.312099 0.744992 -6.992512 10.470544 1.203865 -3.831257 -3.531618 3.026391 -2.884800 -2.195138 -4.088410 9.316259 -1.532304 -9.598535 8.445345 3.733818 -5.553236 0.009655 -4.764793 11.182234 -8.034488 -8.488034 6.714209 -5.569482 -6.324176 -2.419625 -2.589982 2.721988 6.129666 5.474824 -11.875696 -5.467215 10.858212 -3.689045 13.427989 5.526722 -2.682270 4.962334 -7.801085 -5.820948 -4.839451 -9.756142 1.997117 4.433413 -8.701210 -3.537009 -2.300675 8.663869 6.885119 -0.857128 -9.467143 0.570642 9.484162 -8.722535 -1.188570 2.187329 4.108607 -10.261574 3.261993 4.332547 -7.182107 5.179200 -6.402869 -2.725294 -9.300436 -6.312849 9.026028 0.022253 4.969548 -1.523526 -1.102132 2.075608 4.417182 4.731339 1.980167 6.074710 13.110546 5.829175 0.391886 -3.102396 -14.576368 7.985858 -10.667012 -11.188012 3.924004 2.003426 -5.959107 -3.794900 -1.822354 10.042310 8.336959 -8.994818 -6.484457 6.170432 +PE-benchmarks/longest-palindromic-subsequence.cpp__main = -0.001841 0.096097 0.689836 -0.354084 0.440877 -0.161185 0.263552 0.305378 -0.698150 -0.728741 0.252124 -1.467600 -1.137648 0.804890 -0.164339 -0.235769 1.023104 0.081339 -0.134665 -0.388080 -0.060702 -0.089149 1.045911 1.124311 -0.880017 0.260551 -0.507287 0.477287 0.121601 0.439152 0.253170 -0.907666 0.112791 0.481432 0.383480 0.067389 -0.209512 -0.200173 -0.463100 -1.392236 -0.096561 1.290828 0.289152 -0.066087 0.337003 0.795228 1.113255 0.567795 -0.057924 0.549944 0.390001 -0.276085 0.591815 0.050936 0.301595 -0.690160 0.604627 -0.589474 -0.770479 0.259196 -0.120793 -0.934933 -0.504772 0.701087 0.938780 -0.020581 -0.400535 -0.425818 0.031673 0.287336 0.276119 0.496576 0.719897 0.386630 0.689580 0.589523 0.147519 -0.789337 0.171451 -1.968851 -0.947090 -0.250893 1.750677 0.954287 -0.337066 -0.750001 1.041110 0.033068 -0.072303 0.609188 1.205339 -0.181678 -0.433223 -0.227699 -0.247051 0.466617 -0.451125 0.166858 0.116819 0.395747 -0.794979 0.042443 0.385846 -0.386790 -0.426081 0.594413 -0.102355 0.569639 -0.927948 0.201632 -0.838448 0.290995 0.821354 -1.025308 -0.309359 0.073959 -0.085782 0.576020 -0.501843 0.357362 0.344402 -0.428473 -0.405246 0.399057 -1.642040 0.966800 0.058987 0.259863 0.253833 0.734642 0.586600 0.258504 -0.012133 -0.343688 0.016693 0.159151 0.024347 0.383043 -0.145668 -0.225510 0.363968 -0.233359 -0.034222 -0.400230 -0.526423 -0.474479 -1.337634 -0.016789 0.071676 0.961316 -0.105034 0.732569 0.395205 -0.448461 0.654417 -0.135261 -0.140404 0.024778 0.555002 0.497488 0.219918 -0.516637 0.632576 1.095471 0.417717 -0.597141 0.596335 0.465749 0.228051 -0.332246 0.767621 0.241210 0.429279 -0.463088 -0.083375 0.492879 1.108227 -0.060320 -1.085293 -0.004408 0.178748 0.596939 -0.123431 0.217864 0.542873 -0.018411 0.004730 0.187381 0.374973 0.912700 -1.691148 0.873361 0.368550 -0.046655 0.845939 -0.186608 -0.574211 -0.908835 -0.081249 0.482440 0.830122 0.547245 -0.363496 -0.093291 -0.821355 -0.068215 0.104817 0.190532 -0.393151 0.721635 -0.331280 -0.244807 -0.433700 -1.210247 -0.236839 0.361076 -0.775327 0.461727 0.793755 -1.324642 0.747503 0.052851 -0.444206 -0.700174 -0.243395 0.229194 -0.743443 -0.766913 -0.136002 -1.011644 -1.751350 -0.643132 -0.401989 -0.199971 -0.021971 -0.046991 -0.344434 -0.344506 1.544136 -0.171523 0.882399 0.554417 -0.156480 0.751615 1.504440 -0.577583 0.181261 -0.469692 0.747833 -0.708901 -0.291213 0.684309 -0.465003 0.212217 0.783166 -0.158448 -0.266335 -0.564279 0.668044 -0.268937 -0.772734 0.537505 -0.658837 -0.007839 0.991724 0.654126 -0.599908 0.141344 -1.061250 -0.426121 -0.376701 -0.415049 0.326892 -0.435293 -0.001468 0.378272 -0.336694 -0.574409 0.219593 -0.166361 -0.625690 -0.091929 1.224419 1.023696 -0.606623 0.912457 -0.971364 0.625310 -0.858140 -0.645384 0.040838 -0.128189 -0.486473 -0.223236 -0.036905 0.150721 0.453350 -0.707149 -0.907363 0.790464 +PE-benchmarks/subset-sum-problem.cpp__isSubsetSum(int*, int, int) = -5.372264 -5.220193 -2.054373 -7.451278 4.675792 8.811979 2.917240 -9.649258 -9.319418 -1.405283 4.951593 -14.741484 -5.252486 10.846948 -4.484382 9.254954 12.452744 -0.319221 -6.322875 -3.816068 7.992343 2.592247 15.700594 16.156461 -8.278531 -0.562275 -2.218189 4.299899 2.610694 -2.557549 4.104930 -5.172927 3.324156 -9.101732 -1.284490 -1.564474 -2.743665 4.122197 10.456646 -14.764522 -0.959514 3.607487 1.471541 -0.176213 0.190546 1.471694 7.750803 8.594941 2.784888 7.286544 5.642472 -0.466573 5.721247 0.438766 3.479613 -0.279290 2.327435 -3.774410 -1.112475 -2.908950 -3.246320 1.450370 0.584901 11.233260 12.108821 1.541135 -6.182088 3.575318 4.142502 2.895765 3.698371 9.105824 -2.497613 5.002034 4.851053 -12.347970 2.541841 -14.139853 2.509208 -10.024241 -7.227562 3.249209 6.265715 5.535478 6.581120 -0.024197 15.664472 -1.417426 -7.700775 9.750387 12.082361 -8.989133 -2.297875 -0.870770 -4.376339 -1.124613 -3.759680 5.087114 1.010903 7.616938 -9.693392 -4.178660 0.722031 1.471242 -5.610667 -5.123564 0.855973 7.391157 -6.187152 -6.428026 -0.997028 8.888422 -1.215377 -16.115538 -6.104116 -7.513975 1.225376 1.467897 -8.874642 -8.709196 4.709066 0.955285 -2.481748 -3.793260 -3.031352 4.633334 8.034973 2.672272 -2.296861 7.822080 2.944646 17.014202 -1.237492 -6.029425 2.163194 1.883537 -0.266913 6.433036 -3.003796 -2.468218 0.980526 -8.740723 0.646898 5.516171 -5.200847 -2.817134 0.778364 1.299347 -2.405020 31.120275 -2.683455 12.521423 11.268207 -8.532475 2.747552 -6.079272 3.548035 2.981758 4.910814 4.102083 -15.124403 -9.261177 10.886186 15.427693 5.295515 -9.664117 0.327955 5.255445 1.497473 -3.652675 5.759367 1.734307 0.584399 -4.524204 -1.024060 7.159584 19.684133 -6.012653 1.173171 2.567532 4.058783 1.522873 -8.282565 -2.455336 -7.275555 -0.348334 5.226072 5.253556 4.641656 11.576754 -11.184894 9.107068 -0.201921 1.801678 9.637480 4.545052 -9.799355 -7.781885 -4.695623 3.935013 7.194674 -2.328356 -1.434093 1.896426 -12.299196 0.761875 3.276687 1.192770 -7.071881 10.320499 0.142039 -4.240352 -2.897432 2.930630 -3.514458 -3.347936 -3.720034 9.016079 0.911722 -8.605130 8.152003 3.843353 -4.752972 0.772747 -4.092980 11.149489 -7.207968 -8.050456 6.598389 -5.541532 -5.276190 -2.581354 -2.537868 2.653735 4.639643 4.783920 -11.102812 -5.964140 10.832495 -3.494558 13.567198 5.397640 -3.035850 4.205500 -5.434780 -6.161817 -4.373621 -9.315194 0.877246 4.201017 -7.994129 -4.253198 -2.322090 8.600131 6.864518 -0.296016 -8.835966 -0.250016 9.561457 -9.291905 -0.684597 2.730064 2.888571 -9.416275 2.966522 4.717761 -7.243623 4.651153 -6.407875 -1.900059 -9.111823 -5.706798 8.515923 -0.426857 4.262245 -2.003363 -1.539942 2.200949 4.208518 5.155134 1.367069 5.290920 13.448633 5.476383 0.659983 -2.867449 -13.937920 7.551809 -10.127335 -10.215330 3.126512 2.633626 -7.162073 -3.712480 -1.096935 9.731238 7.685543 -7.914069 -6.764411 5.372081 +PE-benchmarks/subset-sum-problem.cpp__main = -0.234980 -0.244543 0.284840 -0.434527 0.550491 -0.007285 0.386675 0.185344 -1.123856 -0.970579 0.304046 -1.592075 -1.150286 1.228485 -0.175907 0.374862 1.597027 0.350140 -0.256348 -0.394601 0.427054 -0.629826 1.403921 1.644913 -0.999684 0.236344 -0.410902 0.409616 -0.018713 0.500349 0.459944 -1.164501 0.269547 -0.231467 0.523751 -0.424773 -0.340763 0.317016 0.042279 -2.115002 -0.093716 1.400439 0.661852 -0.061929 0.261949 0.781440 1.178563 0.842925 -0.188172 1.019007 0.577362 -0.352753 0.764047 0.077506 0.264220 -0.230164 0.162930 -0.459160 -0.790127 0.346770 -0.337694 -1.038955 -0.158053 0.939970 1.349188 -0.215396 -0.564995 -0.158588 0.119667 0.506895 0.404252 0.766766 0.444747 0.002311 0.828202 -0.425212 -0.224880 -1.929710 0.301028 -2.903218 -1.195275 -0.179676 1.889551 1.305056 0.039045 -0.592162 1.625478 -0.272720 -0.301431 0.970655 1.501695 -0.513740 -0.509949 -0.455885 -0.380255 0.399505 -0.573632 -0.099626 0.524683 0.488053 -1.096555 -0.328910 0.498701 -0.229876 -0.572405 -0.041374 -0.190272 1.080038 -1.297968 -0.404160 -1.086019 0.663269 0.578537 -1.643710 0.217023 -0.244127 -0.438518 0.827754 -0.897988 -0.134052 0.623876 -0.251797 -0.528055 0.039332 -1.367366 1.298852 0.061085 0.246804 0.244939 0.828006 0.420053 0.785388 0.506573 -0.626867 0.056710 0.465820 -0.111548 0.525872 -0.481973 -0.540887 0.419422 -0.930189 0.062462 -0.265375 -0.774132 -0.524392 -0.897055 -0.098975 0.024273 1.898680 -0.287323 1.232386 0.744412 -0.781157 1.309408 -0.150158 0.049837 0.249145 1.006392 0.570749 -0.419628 -0.772487 0.854914 1.660246 0.662970 -0.884584 -0.243433 0.385543 0.352731 -0.104915 0.908115 0.343954 0.452020 -0.700526 -0.095980 0.463958 1.856762 -0.355163 -0.633533 0.026152 0.537233 0.259025 -1.152583 0.060520 -0.689008 -0.121136 0.147867 0.180293 0.392540 1.308736 -2.111720 1.271009 -0.057854 0.040353 1.010694 0.059903 -0.725868 -2.068799 -0.311130 0.527323 1.330616 0.276844 -0.231756 0.065513 -1.263617 -0.018103 0.126289 0.341198 -0.711531 1.138626 -0.589166 -0.389088 -0.428185 -0.675673 -0.438697 -0.284476 -0.574822 0.736639 1.219904 -1.320767 0.896384 -0.057196 -0.644107 -0.284017 0.104803 0.713594 -0.820901 -1.090990 0.292132 -0.873647 -1.631307 -0.781733 -0.524458 0.192240 0.091699 -0.396047 -0.250484 -0.973124 1.583178 -0.310525 1.374004 0.716689 -0.357536 1.101031 1.567557 -0.857912 -0.155336 -0.638719 0.286294 -0.877032 -0.300434 -0.297023 -0.490469 0.637476 1.099633 0.182720 -0.486438 -0.524121 1.260532 -0.612248 -0.563823 0.764810 -0.794276 -0.118222 1.026144 0.944338 -1.079456 0.138368 -1.302148 0.144963 -0.474657 -0.426950 0.601395 -0.631419 0.070507 0.143316 -0.316862 -0.355982 0.364720 0.320216 -0.465222 -0.198014 1.761025 0.871151 -0.654296 0.674445 -1.252509 0.772038 -1.219131 -0.768015 -0.249083 0.640971 -0.773396 -0.201962 0.113039 0.486786 0.504341 -0.822892 -1.039199 0.627957 +PE-benchmarks/bellman-ford-algorithm.cpp__createGraph(int, int) = -0.458421 0.374769 0.904977 -1.216832 1.206951 1.022420 0.395288 -0.563391 -0.940018 -0.858459 0.312792 -1.353408 -1.867460 1.591423 -0.533649 0.228618 1.515680 -0.457120 -0.493829 -1.105604 0.983854 -0.461056 2.196377 1.904043 -2.101808 0.239567 0.718956 1.016031 0.616208 0.974201 -0.094071 -1.003819 0.038910 -0.284358 0.768915 -0.022549 -0.374378 -0.632421 -0.047628 -2.349148 -0.290548 0.783413 -0.545841 0.006839 0.140945 1.152008 2.032738 1.290380 -0.342801 0.668254 1.326427 -0.145721 0.644873 -0.021102 0.730085 -0.347043 1.488761 0.122477 -0.262354 -0.055857 -0.331496 -0.951889 -0.162422 1.769851 1.790887 -0.388995 -0.663227 0.211756 -0.100663 0.618799 0.074934 1.261659 0.572624 0.885740 1.526910 -1.021481 0.218224 -2.431632 0.217743 -3.031705 -1.484865 -0.575852 1.085386 0.317017 0.537829 -0.102601 2.469308 0.175080 -0.311678 0.729687 1.958681 -0.871606 -0.276991 -0.510177 -0.822807 0.236158 -0.752344 0.409126 0.155566 0.336549 -1.431906 -0.454351 0.494809 -0.037763 -1.115771 -0.160123 -0.566014 1.238009 -1.434840 -0.199866 -1.358493 0.454541 0.164473 -2.696887 -0.628813 -0.684916 1.080927 0.173823 -0.530384 -0.743271 0.600060 0.791693 -0.529209 -0.564093 -0.701768 1.607819 1.274053 0.243680 0.220785 0.697327 0.782197 1.429005 1.233611 -0.397158 -0.528663 0.283155 -0.527612 0.402611 -0.190952 0.195523 0.723219 -0.868807 0.313298 0.532763 -0.569304 -0.493102 0.300936 -0.634151 0.292506 4.635008 -0.639181 1.437884 0.600281 -1.395545 0.669442 -0.433163 -0.418897 0.566409 1.058766 0.970727 -1.742728 -1.012141 1.453660 2.105443 0.666189 -1.915502 0.334958 0.465282 -0.067625 -0.668480 0.998357 0.196374 0.236961 -0.703576 -0.341659 0.827838 2.727557 -1.015370 -2.025309 0.419532 0.557148 0.076477 -1.111746 0.056008 -0.145659 -0.147374 0.554703 0.233455 0.920407 1.717479 -3.074217 1.340549 -0.092000 -0.798508 1.718361 -0.164551 -0.722421 -1.490506 0.266696 0.937422 1.283668 0.366625 -0.492473 -0.302763 -1.806871 0.196118 0.256149 0.442302 -1.091444 1.602066 -0.121313 -1.061939 -1.006644 -1.066959 -0.285827 0.251327 -0.986147 0.731140 -0.362697 -3.410960 1.775952 0.008541 -0.689896 -0.277724 -0.466472 1.166140 -1.183862 -1.752815 0.624094 -0.854987 -1.348689 -0.929221 -0.665633 0.451809 0.417160 0.277257 -1.607703 -1.421709 1.519147 -0.678048 1.730637 0.992725 0.307628 1.772777 0.292340 -0.885017 -0.920003 -0.730547 1.062714 -0.089815 -1.213192 -0.323956 -0.746603 1.004397 1.441538 -0.412500 -0.146248 -0.731080 1.457074 -1.487267 -0.731596 0.476038 0.654993 -0.956612 1.014661 0.897458 -0.578417 -0.170551 -1.485308 -0.710700 -1.137471 -1.398577 0.913732 -0.694559 0.396142 0.688850 -0.076900 -0.611064 0.552377 -0.024921 -0.089673 -0.161387 1.741545 2.505968 -1.528401 0.158904 -1.884180 1.541234 -1.614493 -1.441354 0.377474 -0.190766 -0.170118 -0.514588 -0.337738 0.967863 0.735098 -1.057147 -0.692593 0.425325 +PE-benchmarks/bellman-ford-algorithm.cpp__printArr(int*, int) = -0.596089 -0.599763 -0.119758 -0.895589 0.651665 0.705499 0.410419 -0.622135 -1.379186 -0.718791 0.555474 -1.706959 -0.971363 1.533591 -0.491718 1.047968 1.900448 0.251795 -0.510419 -0.593034 1.150125 -0.472703 2.081004 2.311129 -1.498638 0.058524 0.042162 0.761671 0.518779 0.237904 0.539677 -1.055037 0.527674 -1.151000 0.248039 -0.852938 -0.260785 0.663765 0.941295 -2.512148 -0.152448 0.809565 0.196015 0.049230 0.099915 0.803161 1.184560 1.251726 -0.363726 1.423884 1.091601 -0.134432 0.708583 0.092417 0.212358 -0.064857 0.071864 -0.132295 -0.333607 -0.036899 -0.336316 -0.805184 0.160863 1.486060 1.941533 -0.247136 -0.648008 0.377230 0.275644 0.435738 0.610104 1.158200 0.060183 0.209697 1.114870 -1.603816 -0.054811 -2.863327 0.292265 -3.181639 -1.143408 -0.018106 1.490049 0.700318 0.675338 -0.216651 2.233528 -0.204107 -0.707865 1.611125 1.694820 -1.125519 -0.427946 -0.427766 -0.680383 0.316942 -0.824283 0.269043 0.482715 0.726012 -1.305224 -0.877668 0.381073 0.100451 -0.882137 -0.848342 -0.215001 1.163504 -1.581394 -0.938080 -0.879044 0.890572 0.031753 -2.327938 -0.414286 -0.949628 0.451718 0.431612 -0.987109 -0.853754 0.545018 0.175592 -0.334650 -0.504357 -0.564674 1.087014 0.807673 0.381537 0.016012 0.790081 0.366174 1.971716 0.515405 -0.859297 -0.054543 0.540496 -0.311507 0.766045 -0.838687 -0.437684 0.863287 -1.340504 0.069432 0.367072 -0.855884 -0.587422 0.643246 -0.143183 -0.050201 4.264738 -0.150935 1.647660 1.446543 -1.198031 0.780113 -0.508265 0.351335 0.819469 1.079329 0.578061 -1.734134 -1.157423 1.109480 2.132236 0.812121 -1.535020 -0.516694 0.547111 0.426521 -0.246388 0.757066 0.255480 0.154070 -0.828541 -0.106436 0.814017 2.555473 -0.741954 -0.095726 0.164987 0.976662 -0.333525 -1.625787 -0.190512 -1.282080 -0.069083 0.530776 0.397847 0.627626 1.694927 -2.589383 1.344136 -0.210152 0.225774 0.973959 0.525292 -1.189594 -2.210550 -0.271640 0.528019 1.325627 -0.088902 0.283100 0.451071 -1.797344 0.068887 0.328092 0.302627 -1.032707 1.519354 -0.139286 -0.604426 -0.623707 0.133233 -0.514575 -0.576994 -0.397975 1.181489 0.599302 -1.927803 1.074632 -0.014165 -0.910645 0.104632 -0.158604 1.436990 -1.392704 -1.459900 0.895794 -0.681925 -1.160024 -0.748103 -0.416119 0.560635 0.382609 -0.104166 -1.018584 -1.411948 1.556474 -0.584312 1.606538 0.867497 -0.431140 1.281419 -0.207944 -0.867046 -0.915333 -0.800095 0.226153 -0.306982 -0.787035 -0.765588 -0.403071 1.101403 1.446954 0.143161 -0.818615 0.025622 1.682197 -1.247429 -0.374750 0.637331 0.624188 -0.763898 0.925318 0.860641 -1.413198 0.336624 -1.246990 -0.021350 -0.647358 -0.738116 1.304496 -0.525569 0.526856 0.075002 -0.088882 -0.050325 0.748729 0.644743 -0.039599 0.194317 2.091418 1.502153 -0.521090 -0.071223 -1.796088 0.883533 -1.689169 -1.332373 -0.007267 0.566405 -0.875597 -0.222583 0.019270 1.231197 1.015085 -0.882139 -0.915725 0.590442 +PE-benchmarks/bellman-ford-algorithm.cpp__BellmanFord(Graph*, int) = -4.492855 -1.432779 0.288208 -7.981971 6.705832 12.261757 2.893321 -7.540578 -9.319271 -3.553139 3.543151 -14.444375 -8.003658 12.112170 -4.468315 8.002845 14.681670 -0.343969 -5.532221 -2.934064 8.981154 2.124095 17.325494 17.553855 -11.778501 0.759929 1.752005 5.017652 2.751347 3.002769 1.717845 -9.727045 3.781887 -8.315687 -0.047557 -3.994084 -3.203142 1.379773 8.528823 -18.640750 -1.291653 5.472001 -2.658107 -0.414838 0.822367 1.345292 12.504337 9.594419 -0.649171 7.652674 7.251532 1.427445 4.557590 0.329104 3.414803 0.297282 3.346837 -1.309300 -1.509746 -2.689174 -3.015052 -1.903378 -0.554168 12.939497 13.966197 0.202154 -5.843674 3.094254 2.117881 2.390612 2.224518 9.915234 0.004090 6.455282 7.265710 -11.209952 1.503896 -16.546309 2.398353 -15.146923 -8.961805 -0.122413 6.982420 6.166300 7.208899 -2.124308 18.022140 -2.809750 -5.090268 11.176899 15.205293 -10.444988 -2.340408 -3.391585 -5.775000 0.680560 -5.384623 3.756185 -0.080016 3.575508 -10.821899 -7.643930 1.408930 1.947600 -7.234578 -5.281386 -0.751957 8.844643 -10.294167 -6.846720 -5.192983 7.029668 -1.507494 -19.706652 -10.036009 -6.397083 3.333225 2.335490 -8.219193 -10.906865 4.952976 3.826015 -2.695328 -6.050065 -0.719283 7.689719 9.240950 2.699671 -0.510785 5.674390 5.015494 18.067689 4.017684 -5.467801 0.788803 1.908862 -1.106743 5.035080 -3.987714 -1.294570 0.492353 -9.791176 0.814294 8.361288 -6.341993 -2.548807 1.384256 -1.709794 -0.513113 40.332653 -3.415431 13.197831 10.341652 -11.871566 3.780505 -5.238209 -0.014304 3.735567 6.093255 7.729484 -17.707379 -8.777501 11.139426 17.521570 6.137936 -12.229402 1.024569 4.345405 1.287153 -4.262815 6.723764 1.459609 1.861344 -6.838376 -1.907636 8.805384 22.550294 -7.325189 -6.173362 3.032991 5.504862 0.221055 -8.805864 -1.820133 -8.056693 -0.279730 7.832161 2.460665 6.062283 13.537105 -17.418570 10.438824 -0.347896 -1.930504 10.594048 4.509806 -9.389465 -7.110318 -1.954540 6.851272 9.133261 -0.783551 -0.089888 0.450724 -14.103447 0.098705 4.033224 2.350778 -8.443546 12.137244 1.487845 -7.076736 -5.725811 -0.075135 -3.081371 -4.931161 -5.765016 9.010055 -0.304157 -15.890986 11.412302 3.502822 -5.590166 0.682026 -4.527247 11.685314 -10.356255 -12.492201 7.884720 -5.336951 -7.120832 -1.920480 -3.748983 4.383516 7.573650 4.530205 -12.170618 -11.351901 11.327366 -1.945211 14.148213 7.012462 -0.686206 8.718786 -4.574947 -6.158582 -7.283516 -10.018628 5.660026 2.789798 -8.708433 -7.719506 -4.387865 9.725527 10.788665 -1.383241 -7.836708 -4.111226 11.092016 -11.049081 -0.385724 3.947744 6.049101 -10.159331 2.700419 6.213375 -7.392088 2.409686 -8.326417 -1.696154 -8.848095 -7.728443 8.502702 -3.491214 3.847127 2.366218 -2.221618 -0.944074 4.638275 4.007082 0.518152 3.715069 13.578401 9.625843 -3.841716 -0.663357 -14.816122 8.892649 -13.871289 -12.735199 3.296099 -0.088666 -6.425188 -4.287188 -1.067190 9.789552 7.077698 -6.365945 -5.443381 4.181533 +PE-benchmarks/bellman-ford-algorithm.cpp__main = 0.785540 12.250704 11.128012 -8.323745 10.829586 15.441379 0.986895 -2.636865 -3.450133 -1.537223 -3.464914 -10.949658 -9.674963 8.351619 -2.659223 -1.953030 12.481059 -2.482677 -2.650852 -0.401483 2.723774 5.588453 11.902593 11.496504 -12.274744 4.400963 6.751261 2.572287 -1.624848 13.711286 -10.328575 -14.159221 -1.442485 3.871949 3.599533 -1.174227 -4.734973 -10.132246 0.178372 -16.716945 -0.935397 5.194281 -8.267117 -1.757446 2.945625 -1.031552 21.532891 5.356887 -2.361061 -2.565508 4.591758 6.750887 0.967180 -0.704439 5.961051 1.880668 14.518500 3.123064 -1.578867 -0.995400 -1.447626 1.101480 -3.996293 11.394530 8.743382 2.514110 -4.457864 -2.770769 0.631471 -1.623960 -5.554485 7.149867 5.337110 13.803632 3.518324 -0.542194 5.189148 -8.565961 3.230959 -6.033191 -9.385570 -6.911260 0.395759 4.751916 3.809531 -7.028548 14.163879 -3.198385 4.832242 1.853344 16.611091 -8.237156 -0.323181 -5.901696 -8.303958 0.743149 -0.921767 2.148023 -5.873595 -5.825652 -8.313144 -9.240259 3.234730 0.565043 -6.675009 5.186664 -0.397159 6.153627 -5.511439 -0.347394 -7.704411 1.051402 -0.749897 -15.861391 -12.768588 -1.661599 1.649081 0.936475 -4.299272 -12.845955 3.362560 7.993471 -6.398478 -4.039370 -4.906473 11.512656 9.793279 -1.223007 1.196744 -1.862016 9.624121 8.467053 5.772793 -3.059610 0.022889 -1.178559 -1.159055 -3.940866 -2.407099 3.777837 -5.256726 -3.372905 0.003400 10.472323 -5.033502 3.821544 -6.124500 -7.223190 3.531945 37.967082 -7.792512 7.145056 -1.528288 -14.100017 6.623610 0.201544 -10.493638 -2.299254 3.803364 13.806729 -16.881247 -4.773942 8.761829 13.342168 4.242150 -8.778687 7.341747 0.327778 -6.141776 -5.029451 7.669920 -1.370775 0.492352 -5.310957 -4.573396 7.642330 21.403155 -3.892149 -23.490125 2.793596 1.963872 4.291114 1.193602 0.645960 -1.304450 0.487240 6.892746 -3.262118 9.894600 10.879646 -24.406811 8.932497 1.143089 -13.382616 13.593964 -1.469243 -2.565994 6.452321 4.214345 12.944988 8.514050 3.311960 -3.990721 -7.448009 -9.149428 -1.785355 3.047208 4.633964 -8.666420 8.366856 5.113176 -13.546971 -6.772172 -11.394549 -1.430521 -3.598866 -12.444977 2.945950 -6.068324 -23.461514 16.320255 6.752065 0.581751 -1.202362 -9.107160 2.425776 -8.275975 -12.487530 2.960000 -2.369819 -2.646843 3.547246 -5.709881 4.184110 6.607681 10.767709 -14.217553 -14.651853 6.726298 2.842699 10.284431 7.248929 6.839168 7.024861 5.056046 -2.562460 -5.714046 -10.410445 15.364250 5.926087 -7.340982 -2.437537 -8.948485 6.100584 11.453280 -5.786490 -1.818967 -14.350635 5.002751 -5.799946 1.772715 2.631783 -1.330010 -10.094625 -4.666707 5.228712 1.144967 -4.295044 -8.063218 -4.503707 -8.463476 -8.667740 0.850541 -6.406762 -1.532659 10.395106 -6.493999 -7.974292 2.654142 -3.039221 -2.412911 2.771112 5.957858 7.655301 -7.160716 7.799979 -9.576388 9.865307 -13.101811 -10.931572 3.907942 -11.358318 -3.625431 -6.718483 -2.809865 3.716531 -1.547890 2.486781 0.626015 0.984777 +PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -1.376579 -0.856895 0.445501 -2.238717 2.902852 2.585315 0.941698 -1.676369 -2.921778 -1.427350 0.582631 -4.424371 -3.480897 3.851147 -1.995668 2.321020 4.703737 0.053366 -1.013169 -1.655865 3.190105 -0.496534 5.870735 4.762024 -4.691529 -0.064452 0.109974 2.449960 1.482579 1.762452 1.269558 -2.693350 0.984077 -2.302533 1.497599 -2.065111 -0.650952 0.919816 1.402928 -6.725478 -1.004424 2.971373 -0.567027 0.914785 1.362039 4.016630 3.752498 3.242616 -1.328261 3.698478 2.294124 -0.128635 2.814796 0.197653 -0.575384 -0.192570 1.710495 -0.356299 -1.490470 -0.031419 -1.640049 -2.168304 0.763600 4.183273 5.532393 -0.943912 -1.942580 1.469814 0.905881 1.220842 1.192565 3.989245 0.516234 1.905917 3.566559 -2.898585 0.116340 -5.891862 0.814520 -7.459532 -2.789564 -1.337252 2.526799 2.040453 1.342652 -0.974103 6.806419 -0.093890 -1.400091 4.751708 4.622856 -2.730220 -0.606871 -2.420911 -1.821541 -0.105188 -2.079017 -0.154651 1.350756 2.417278 -3.315575 -2.583995 -0.370319 -0.326343 -2.298988 -1.354362 -1.785851 3.361574 -4.494988 -2.559344 -3.330763 2.058189 -0.619282 -6.763124 -2.091364 -1.676541 1.301285 1.159778 -0.904502 -2.030674 1.943398 1.577242 -0.896680 -0.764669 -1.054558 3.933648 2.606059 0.395104 -0.187792 2.863798 0.548827 4.187535 2.417799 -1.400369 -1.293546 1.892966 -0.913846 1.253616 -2.029440 -0.005527 2.207321 -3.622318 -0.107535 1.691875 -1.808344 -1.207700 -0.436301 -1.729587 0.623122 10.942946 -1.401560 3.775380 2.489009 -3.903980 1.989487 -0.443577 0.806964 1.781673 2.460171 2.824510 -5.017631 -2.943554 3.428185 5.199656 1.680870 -4.403655 0.106923 1.130392 1.180235 -0.727783 1.835275 1.905807 -0.473032 -2.083668 -0.028332 0.555881 7.629021 -2.363720 -2.044743 0.885783 2.201694 -1.082040 -3.700249 -0.450209 -2.254164 -1.453177 1.848471 0.915366 1.043575 4.406333 -6.247533 3.778904 0.239537 0.045474 3.078216 -0.032376 -1.882740 -4.732561 -1.322699 1.991745 2.775296 0.013467 -0.942380 0.096210 -4.517779 1.503453 1.067692 1.891835 -2.191487 4.345139 -0.560302 -2.057982 -1.982637 -0.291509 -1.018863 -0.810973 -1.717891 2.646472 0.520406 -5.496991 3.140776 -0.653846 -2.299619 0.678030 0.371059 3.596484 -3.236469 -4.088217 2.279433 -2.128927 -3.837525 -2.817595 -1.329048 1.214149 2.174161 0.179481 -3.832944 -4.967313 3.581693 -1.908113 3.551171 2.513397 -0.299274 4.296270 -0.081400 -2.923663 -2.762982 -3.151966 0.865036 0.233221 -0.983732 -1.797074 -0.902994 3.061047 4.068420 -0.439433 -1.281190 -1.700216 4.494384 -3.172667 -0.985532 1.723363 0.471456 -2.212014 2.238642 2.299188 -2.585676 0.104393 -3.014828 0.369160 -2.667134 -1.040954 2.777351 -2.811010 -0.013879 0.695734 -0.477285 -1.120014 1.373427 1.415686 -0.566395 -0.260860 6.106034 4.662229 -2.097762 0.910620 -4.024436 3.443106 -4.741065 -2.947986 -0.538482 0.205078 -0.766568 -0.084432 0.579453 2.923887 3.019724 -3.285075 -2.226557 0.554536 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::priority_queue(int*, int*, std::greater const&) = -0.043648 2.884435 2.564414 -1.218933 3.712773 2.639255 1.138667 0.504287 -0.970734 -2.335020 -1.003154 -2.831950 -5.200369 2.744964 -0.611589 0.144295 3.839346 -0.587496 0.311408 -1.366167 1.806568 -1.614683 4.833403 3.548702 -5.066383 1.293867 1.515264 1.893518 -0.018297 4.230825 -1.220373 -3.651779 0.761515 0.149016 3.026491 -0.993589 -0.839385 -2.098828 -1.640308 -6.191465 -1.321260 3.060034 -1.461842 0.625044 0.856474 2.944036 6.138652 2.482860 -1.793061 1.646759 1.769957 -0.366951 2.072981 0.492564 0.601408 -0.214174 2.417569 0.081018 -2.130784 0.623920 -1.039542 -4.199776 -0.491536 3.226370 4.319018 -1.093028 -1.113861 0.510613 -1.215410 0.576151 -0.762217 3.229627 2.500106 1.996972 3.905976 -1.012348 -0.018733 -4.339172 0.082156 -7.837841 -3.964932 -4.042918 2.049777 1.801457 1.699743 -2.267833 5.969362 0.175704 1.235531 1.759648 5.144937 -2.984007 -0.377343 -2.955974 -1.029906 0.408167 -1.803492 -0.332127 1.002473 -1.097568 -2.992768 -2.371839 1.843140 -0.628841 -2.177822 -0.465945 -2.272187 3.142004 -3.867414 -1.227326 -5.532721 -0.565639 -0.289621 -5.777935 -0.689025 0.463127 1.067520 1.529189 0.405013 -1.886183 1.385482 2.567039 -1.160087 -1.765648 -1.988218 5.084986 2.644657 -0.610125 1.736496 1.907483 1.479865 2.692457 4.760677 0.185455 -2.203251 1.143237 -1.137357 0.005768 -0.788085 0.769349 1.337598 -2.464659 -0.751653 1.483789 -1.226404 0.129985 -1.422413 -2.781535 2.012173 8.701648 -1.604370 2.031952 -0.060338 -3.949577 3.596761 -0.115901 -1.977610 1.204967 2.817547 3.180411 -4.212615 -1.989337 2.426454 4.240019 1.087502 -4.065216 0.387416 -0.121670 0.366122 -1.763250 1.809545 1.309381 1.037896 -1.742445 -0.272365 0.832432 6.563630 -2.718092 -5.570275 1.493397 0.716973 -0.088608 -3.056539 -0.315773 -1.004332 -1.546022 0.645982 -0.432530 1.208638 3.728323 -6.799719 3.170932 -0.449663 -2.761132 3.996533 -1.165883 -0.039019 -3.228331 1.052754 3.326304 2.751588 1.213137 -1.092126 -2.061953 -3.725258 0.897946 0.449836 2.085716 -2.105321 3.541904 -1.118962 -2.999353 -2.890578 -3.868292 -0.645129 -0.660100 -2.404164 0.895243 1.142856 -7.364835 4.144799 -0.506993 -1.807084 0.404887 -0.188145 2.037698 -2.606188 -4.678941 1.398777 -2.011236 -3.977747 -2.014777 -1.474078 1.000458 1.164989 -0.791339 -2.898318 -5.053365 3.828344 -0.255582 2.717743 2.550460 2.042733 5.250112 3.332024 -3.702087 -2.142372 -2.832183 2.601966 -1.112587 -1.254048 -1.580248 -2.027140 2.140002 4.963826 -0.314119 0.824074 -3.217112 3.546108 -3.585757 -1.674645 2.637386 0.439789 -1.233573 1.696489 2.945348 -0.852470 -2.250538 -3.478260 -0.281205 -1.305886 -2.519742 0.854467 -4.153414 -0.823454 3.152378 -1.323783 -2.458810 1.333773 -0.464591 -0.773927 -2.200072 4.566386 5.064405 -4.501468 1.902088 -2.802670 2.890668 -4.404860 -2.290182 -0.270999 -0.362968 0.344244 -0.511652 1.011593 1.017099 0.861785 -2.385624 -1.306149 -1.166245 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::top() const = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::pop() = 0.166964 1.533067 1.409217 -0.564549 1.234891 1.362521 0.270954 0.362567 -0.441056 -0.821006 -0.443643 -1.855352 -2.025066 1.181736 -0.264466 -0.551263 1.802158 -0.033826 -0.101058 -0.090264 -0.112205 0.364217 1.708403 1.655349 -1.666690 0.606941 0.312547 0.465465 -0.412859 1.840828 -0.753377 -2.214681 0.086496 1.017543 0.835758 -0.075627 -0.526202 -1.265646 -0.889659 -2.563057 -0.263029 1.699329 -0.456511 -0.166036 0.562189 0.442334 2.900037 0.808318 -0.225617 0.015507 0.359577 0.454393 0.600743 0.019077 0.617340 -0.342614 1.397857 -0.433683 -0.936294 0.204504 -0.199638 -1.024091 -0.966591 1.373460 1.389042 0.143961 -0.540313 -0.688019 -0.294656 0.089832 -0.574629 0.933401 1.232701 1.565475 0.758244 0.948373 0.410246 -0.635256 0.306018 -2.021596 -1.533671 -1.289909 1.232310 1.631377 0.041479 -1.460937 1.986209 -0.211879 0.787901 0.394619 2.459718 -0.893248 -0.364499 -0.919446 -0.552018 0.526001 -0.497471 0.116694 -0.333678 -0.554023 -1.261277 -0.799922 0.500229 -0.300108 -0.864465 1.000310 -0.325596 0.995134 -1.311231 0.170164 -1.818329 -0.178161 0.525402 -2.198173 -1.152907 0.391548 -0.385453 0.772047 -0.507455 -0.828600 0.580558 0.516655 -0.674019 -0.149103 -1.723634 1.931422 0.672100 -0.258747 0.560784 0.503551 1.273584 0.767999 0.802164 -0.224471 -0.178383 0.125928 -0.179425 -0.340184 -0.243338 0.227485 -0.434061 -0.666315 -0.011398 0.682980 -0.837897 0.142779 -2.278631 -0.899637 0.667818 3.534140 -0.853936 0.912055 -0.157737 -1.685039 1.335430 -0.064086 -1.317783 -0.348143 0.783422 1.777211 -0.967503 -0.592003 1.013707 1.917613 0.617689 -0.886486 1.288335 0.095638 -0.272338 -0.854579 1.275823 0.233160 0.432116 -0.768044 -0.402782 0.985195 2.459686 -0.473647 -2.939318 0.254290 0.235811 0.927927 0.135036 0.277071 0.277394 -0.157806 0.551941 -0.285238 0.878403 1.529029 -2.810696 1.446308 0.438628 -1.378673 1.798482 -0.540755 -0.324372 0.064371 0.580675 1.738089 1.322073 0.719861 -0.657221 -1.054831 -1.336394 -0.248710 0.386543 0.801565 -0.948497 1.222712 0.063082 -1.397035 -1.084619 -2.158326 -0.172570 -0.266426 -1.743534 0.400652 0.431621 -2.919972 2.091532 0.477678 -0.386755 -0.597610 -0.800045 0.114373 -1.345355 -1.804752 0.062913 -0.965885 -1.731939 -0.027226 -0.866540 0.250715 0.612639 0.553272 -1.215692 -1.573092 1.703272 0.457296 1.299902 1.027335 0.805540 1.354496 2.046128 -0.903653 -0.165905 -1.454417 1.900581 -0.373037 -0.631894 0.340492 -1.146688 0.668387 1.903316 -0.552800 -0.234661 -1.830437 0.870079 -0.483006 -0.473511 0.778555 -0.929972 -0.584438 0.185284 1.024413 -0.249500 -0.662634 -1.514588 -0.410288 -0.782961 -1.181349 -0.029983 -1.447516 -0.353015 1.551770 -0.973722 -1.379643 0.347957 -0.468337 -0.769939 -0.089086 1.328085 0.915163 -1.326556 1.715050 -1.359839 1.277270 -1.861904 -1.212774 0.205132 -0.991360 -0.314142 -0.684612 -0.110961 0.045287 -0.063581 -0.330086 -0.605405 0.269584 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 0.176219 1.715021 1.481608 -0.543794 1.370965 1.464065 0.330460 0.412156 -0.461623 -0.955057 -0.504972 -1.986310 -2.285614 1.326842 -0.229791 -0.512589 2.065321 -0.015654 -0.067283 -0.165520 -0.021057 0.209108 1.974280 1.907744 -1.912341 0.699305 0.487543 0.512367 -0.383426 1.953499 -0.839726 -2.368144 0.207302 0.887317 0.943864 -0.177354 -0.581551 -1.404956 -0.911409 -2.945876 -0.330101 1.732918 -0.558525 -0.161018 0.558481 0.637426 3.261697 0.940334 -0.331929 0.134573 0.427248 0.369604 0.685343 0.049423 0.640336 -0.313795 1.435640 -0.345932 -1.048227 0.253009 -0.209624 -1.331605 -1.011708 1.529374 1.606325 0.085329 -0.607880 -0.579097 -0.348732 0.082121 -0.647722 1.087634 1.415610 1.660044 0.973795 0.728503 0.351359 -0.980685 0.229914 -2.608228 -1.772396 -1.514043 1.355443 1.543430 0.172338 -1.493240 2.276201 -0.209372 0.898968 0.494527 2.780373 -1.141875 -0.420616 -1.052409 -0.530234 0.603561 -0.615590 0.147003 -0.183185 -0.720482 -1.437392 -1.016470 0.704371 -0.297686 -1.008164 0.879643 -0.401995 1.159507 -1.524488 0.036974 -2.176056 -0.338987 0.476008 -2.503674 -1.103953 0.488927 -0.198945 0.931692 -0.523494 -1.040217 0.627353 0.663057 -0.689057 -0.347400 -1.677179 2.171912 0.798523 -0.271530 0.706110 0.611445 1.415603 1.020708 1.155647 -0.210915 -0.263693 0.185880 -0.299542 -0.343206 -0.304073 0.183763 -0.324238 -0.833832 -0.024281 0.801779 -0.957042 0.135069 -2.103746 -1.020609 0.761032 3.990882 -0.878060 1.008987 -0.128361 -1.918780 1.494830 -0.182325 -1.474255 -0.276821 0.976702 1.988749 -1.268572 -0.681803 1.088073 2.182987 0.699354 -1.172638 1.202986 0.047602 -0.228904 -0.944853 1.374974 0.293236 0.563613 -0.869645 -0.403754 1.125654 2.830585 -0.710579 -3.168878 0.298996 0.225079 0.944177 -0.203960 0.258756 0.175951 -0.227016 0.564400 -0.296340 0.916334 1.729802 -3.159641 1.608565 0.317655 -1.537009 1.961286 -0.491083 -0.382608 -0.158947 0.701484 1.944378 1.485754 0.809828 -0.664129 -1.160299 -1.552470 -0.271585 0.429680 0.894908 -1.051551 1.431512 0.006146 -1.548591 -1.239616 -2.249607 -0.152515 -0.374144 -1.770531 0.483713 0.512406 -3.348164 2.328417 0.431770 -0.528778 -0.547365 -0.845967 0.255199 -1.549473 -2.092211 0.171375 -1.058086 -1.904113 -0.101431 -0.959540 0.329044 0.690791 0.444389 -1.308657 -1.858963 1.911451 0.476821 1.431417 1.186939 0.910888 1.710656 2.085597 -1.132872 -0.313662 -1.544118 1.962744 -0.482513 -0.715486 0.130552 -1.267321 0.812767 2.246663 -0.564317 -0.194899 -1.958409 1.027760 -0.832166 -0.582364 0.934332 -0.682845 -0.640129 0.289501 1.183477 -0.358009 -0.762454 -1.666832 -0.462221 -0.796785 -1.351514 0.001858 -1.721166 -0.405337 1.760835 -1.078902 -1.435178 0.468819 -0.516267 -0.745192 -0.214489 1.498762 1.306164 -1.650845 1.731562 -1.525957 1.417909 -2.137996 -1.395166 0.238569 -0.885413 -0.322059 -0.750723 0.000000 0.063887 -0.038515 -0.529171 -0.704447 0.189121 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::empty() const = -0.025566 0.191729 0.256441 -0.155261 0.260568 0.124800 0.087510 -0.011867 -0.207953 -0.270447 -0.015011 -0.448661 -0.414658 0.330932 -0.110772 0.023132 0.462693 0.052144 -0.010584 -0.158712 0.048036 -0.116135 0.502159 0.504551 -0.434408 0.120640 0.084635 0.193720 0.033413 0.342352 -0.072034 -0.427234 0.100055 0.063303 0.173551 -0.137645 -0.080586 -0.104028 -0.085213 -0.667728 -0.052949 0.268753 0.035198 0.006199 0.087613 0.256631 0.557410 0.260631 -0.070164 0.238972 0.209025 0.055201 0.180682 0.042702 0.112801 -0.090351 0.314066 -0.201489 -0.213704 0.074468 -0.041073 -0.385456 -0.142464 0.357493 0.444222 -0.036374 -0.111015 -0.070186 -0.074258 0.075657 0.012334 0.240610 0.164744 0.251246 0.218471 -0.077062 0.110485 -0.475645 0.008369 -0.857316 -0.374821 -0.238057 0.388802 0.314856 0.058202 -0.096769 0.521927 0.036358 0.078518 0.146999 0.546152 -0.264352 -0.122641 -0.100075 -0.119576 0.154923 -0.190183 0.052769 -0.014371 0.060107 -0.304519 -0.195371 0.240703 -0.062014 -0.223720 0.095902 -0.094379 0.249969 -0.501638 -0.074435 -0.418108 -0.027358 0.097178 -0.553070 -0.042537 -0.019398 0.144430 0.176510 -0.132150 -0.170216 0.129270 0.093340 -0.113857 -0.036157 -0.468619 0.376408 0.141437 0.005898 0.113900 0.142078 0.220589 0.319317 0.193392 -0.134385 -0.077842 0.090916 -0.090323 0.025774 -0.131804 -0.043280 0.047068 -0.268029 0.083992 0.080247 -0.223425 -0.108253 -0.253078 -0.158871 0.127348 0.731063 -0.108715 0.284971 0.131169 -0.373419 0.194582 -0.115864 -0.152339 0.067122 0.254733 0.290315 -0.144887 -0.219079 0.217828 0.486034 0.181931 -0.277194 0.057097 0.048513 0.030749 -0.089391 0.255935 0.078079 0.043770 -0.205731 -0.063448 0.174008 0.597774 -0.091418 -0.350894 0.044910 0.063840 0.060526 -0.195152 0.028809 -0.030991 -0.012189 0.045363 0.007443 0.136511 0.403148 -0.832731 0.368318 0.019535 -0.150840 0.330986 -0.051302 -0.163173 -0.346097 0.091522 0.307432 0.345225 0.090969 0.019254 -0.067346 -0.386294 -0.042518 0.042694 0.161681 -0.257267 0.316658 0.042590 -0.316905 -0.249119 -0.308339 0.001810 -0.059567 -0.264969 0.181165 0.219495 -0.789708 0.405736 -0.016724 -0.198205 -0.062886 -0.098409 0.171535 -0.373351 -0.390018 0.062722 -0.266688 -0.409200 -0.140794 -0.156829 0.075885 -0.008574 0.010819 -0.203740 -0.265585 0.378578 -0.031700 0.260348 0.249129 0.083267 0.363827 0.255546 -0.232247 -0.089678 -0.125193 0.238812 -0.259549 -0.110981 0.141503 -0.205364 0.198688 0.507693 -0.022394 -0.070496 -0.128444 0.319080 -0.203774 -0.186605 0.217520 -0.020556 -0.109664 0.239221 0.253563 -0.228548 -0.092576 -0.359688 -0.090706 -0.099380 -0.252162 0.159443 -0.295924 -0.003319 0.264014 -0.128953 -0.267464 0.195791 -0.051119 -0.119283 -0.048355 0.443444 0.404751 -0.273019 0.293988 -0.362841 0.205956 -0.468219 -0.298697 0.001484 0.007608 -0.135169 -0.084763 -0.059997 0.134267 0.089976 -0.129559 -0.191048 0.092978 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::~priority_queue() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/Nearly_sorted_Algo.cpp__printArray(int*, int) = -0.517269 -0.256661 0.083392 -0.804218 0.565738 0.578819 0.337391 -0.394539 -1.108004 -0.951458 0.333900 -1.725166 -1.253556 1.448326 -0.537028 0.636365 1.906533 0.230551 -0.380961 -0.606949 0.962894 -0.528022 1.987249 2.202488 -1.575506 0.011639 0.208665 0.829032 0.508082 0.368693 0.599806 -1.227454 0.393169 -0.725322 0.615530 -0.759571 -0.190320 0.389916 0.381277 -2.532271 -0.238192 1.010344 0.277544 0.049881 0.161912 0.907545 1.432818 1.199004 -0.410074 1.087531 1.026029 0.007680 0.710773 0.051417 0.142241 -0.261572 0.148014 -0.271087 -0.449367 0.086933 -0.308457 -1.004152 0.053746 1.546143 1.932500 -0.193671 -0.533085 0.214102 0.168034 0.463769 0.384535 1.122666 0.282156 0.466932 1.121047 -1.312035 -0.014098 -2.711330 0.347193 -3.415273 -1.126725 -0.396823 1.423573 0.897046 0.450145 -0.379004 2.221607 -0.095678 -0.368226 1.594497 1.866410 -0.951965 -0.436605 -0.677420 -0.662690 0.434396 -0.874133 0.225164 0.457626 0.702923 -1.261232 -0.815791 0.278303 0.014539 -0.848500 -0.568779 -0.332669 1.136594 -1.628289 -0.682551 -1.210029 0.579567 0.207863 -2.382614 -0.329640 -0.806572 0.292467 0.496526 -0.845386 -0.737264 0.524795 0.292418 -0.311264 -0.337068 -0.966717 1.274494 0.687716 0.194816 0.072611 0.865853 0.460371 1.619507 0.643665 -0.720237 -0.193072 0.581759 -0.510128 0.419127 -0.835437 -0.367045 1.030768 -1.256770 -0.042783 0.322738 -0.843665 -0.665442 0.199458 -0.487317 0.249470 4.111150 -0.265368 1.416415 1.131909 -1.242934 0.908361 -0.368915 0.105848 0.610347 1.093221 0.809434 -1.498204 -1.075378 1.058700 2.093427 0.750796 -1.277747 -0.297017 0.449557 0.346853 -0.343721 0.774567 0.322214 -0.006629 -0.771462 -0.143719 0.829243 2.355161 -0.650138 -0.264727 0.083310 1.001385 -0.173853 -1.422446 -0.031589 -1.058434 -0.082225 0.399498 0.311535 0.644469 1.669606 -2.625363 1.388300 -0.021889 0.166240 0.966937 0.201939 -0.950514 -2.287993 -0.004116 0.794589 1.267900 -0.028021 0.145199 0.184337 -1.743716 0.067988 0.308538 0.586332 -1.011493 1.450829 -0.231119 -0.659120 -0.843581 -0.167937 -0.516774 -0.511754 -0.542921 0.991529 0.686198 -1.936077 1.333230 -0.128154 -0.813897 -0.093026 -0.200928 1.124067 -1.541260 -1.535418 0.680344 -0.748613 -1.378343 -0.763049 -0.526494 0.563397 0.279423 -0.223678 -0.969592 -1.446184 1.594460 -0.507718 1.513901 0.831517 -0.158739 1.436845 0.258603 -0.830633 -0.813587 -0.809213 0.269822 -0.431896 -0.737445 -0.572469 -0.379506 1.007557 1.621326 -0.080223 -0.662299 0.008740 1.581827 -1.046661 -0.588721 0.594635 0.244529 -0.631981 0.892601 0.821537 -1.357699 0.056614 -1.430680 0.002369 -0.552356 -0.880993 1.004239 -0.885516 0.345798 0.382961 -0.225656 -0.286097 0.695019 0.568175 -0.164398 0.137450 2.017997 1.421640 -0.669359 0.217657 -1.812577 0.903224 -1.800119 -1.302083 -0.102458 0.474527 -0.550142 -0.204669 0.038630 0.971525 0.896786 -0.827311 -0.921414 0.518124 +PE-benchmarks/Nearly_sorted_Algo.cpp__main = 0.045692 0.363876 0.670174 -0.335491 0.703691 0.223016 0.318096 0.403416 -0.729715 -0.816101 0.077851 -1.275790 -1.297887 0.952676 -0.083558 -0.123377 1.350851 0.158284 -0.044562 -0.401081 0.059406 -0.308265 1.285457 1.385985 -1.121404 0.430760 -0.037158 0.357625 -0.010677 0.778159 -0.052112 -1.219884 0.300097 0.197332 0.458207 -0.266107 -0.387590 -0.396005 -0.400656 -1.910737 -0.151097 1.074982 -0.158405 -0.014082 0.338248 1.070498 1.542299 0.649739 -0.285340 0.841938 0.433994 -0.225723 0.524683 0.051732 0.337057 -0.354268 0.515092 -0.161911 -0.760439 0.344775 -0.167198 -1.178287 -0.505629 0.808095 1.072471 -0.222016 -0.483036 -0.294240 -0.091102 0.233907 0.091098 0.665572 0.858971 0.389084 0.850714 0.117752 -0.108665 -1.285261 0.082004 -2.767942 -1.182616 -0.530013 1.719514 0.670003 -0.111232 -0.727048 1.394669 -0.081498 0.128256 0.685436 1.476864 -0.531427 -0.419217 -0.350216 -0.210536 0.451265 -0.462510 0.053374 0.365146 -0.065241 -0.954871 -0.325162 0.595289 -0.349137 -0.591519 0.258344 -0.223814 0.834993 -1.302127 -0.024882 -1.293940 0.164373 0.598277 -1.443153 -0.278108 0.238288 0.328241 0.745240 -0.562785 -0.075996 0.453252 -0.042806 -0.441233 0.042636 -0.997434 1.257534 0.249285 0.202531 0.448067 0.663805 0.686026 0.642449 0.746343 -0.300578 -0.089510 0.295766 -0.073299 0.267882 -0.210185 -0.187280 0.234621 -0.609637 0.269578 -0.097230 -0.668747 -0.361099 -0.815617 -0.224097 0.162026 1.912519 -0.292056 0.931174 0.340606 -0.830854 0.756053 -0.259738 -0.380816 0.162114 0.833301 0.769392 -0.307965 -0.470167 0.645612 1.418466 0.512693 -1.092040 0.347357 0.258003 0.142015 -0.333555 0.862539 0.204451 0.592865 -0.546747 -0.114197 0.552778 1.663086 -0.380581 -1.481021 -0.024292 0.246687 0.483298 -0.522364 0.198045 0.141258 -0.072853 0.305993 0.002869 0.420805 1.079251 -2.284945 1.018928 0.006408 -0.411459 0.916406 0.100241 -0.501848 -1.099034 0.025724 0.710887 1.125874 0.596498 -0.273879 -0.205891 -1.021350 -0.112226 0.218161 0.314785 -0.598394 0.967198 -0.192884 -0.583839 -0.498526 -1.146923 -0.111907 0.075252 -0.756037 0.496494 0.596713 -2.237588 0.960756 0.020342 -0.617517 -0.445646 -0.159683 0.484620 -0.880276 -1.156404 0.115904 -0.843563 -1.697189 -0.532672 -0.586405 0.064931 0.182250 -0.034401 -0.405834 -0.965563 1.537209 -0.047821 1.037363 0.751799 -0.013688 1.406144 1.042027 -0.824085 -0.133993 -0.707800 1.041990 -0.825287 -0.270260 0.271913 -0.653929 0.408003 1.177672 -0.037780 -0.210965 -0.778500 0.888368 -0.715559 -0.514747 0.695969 -0.050769 -0.059732 0.987368 0.848957 -0.679497 -0.046766 -1.110318 -0.336730 -0.365673 -0.505416 0.383632 -0.798315 -0.056283 0.590366 -0.350230 -0.655574 0.360105 -0.246318 -0.445586 -0.249798 1.230972 1.531952 -1.109975 0.886688 -0.995617 0.839921 -1.140286 -0.836436 -0.044846 0.015612 -0.393295 -0.302845 -0.038378 0.179678 0.322384 -0.832556 -0.805527 0.572512 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::~vector() = 0.015540 1.065123 1.120539 -0.675239 1.408918 0.933231 0.184229 0.384695 -0.521252 -1.022991 -0.576081 -1.254908 -1.923018 1.146739 -0.289574 -0.075533 1.673101 -0.034263 0.026343 -0.493727 0.571291 -0.352049 1.693578 1.246406 -1.894234 0.432688 0.592814 0.996553 0.159550 1.629206 -0.426330 -1.588895 0.082170 0.368951 1.080300 -0.585186 -0.100685 -0.603648 -0.827113 -2.488821 -0.386617 1.135108 -0.660677 0.247764 0.350602 1.118104 2.285070 0.959591 -0.758852 0.485318 0.875912 0.290074 0.571868 0.165444 -0.110265 -0.129151 0.908180 -0.339326 -0.800183 0.292681 -0.128180 -1.602965 -0.337343 1.207209 1.632929 -0.400504 -0.444719 0.193929 -0.215318 0.166379 -0.229658 1.000510 0.962179 0.839924 1.208268 -0.177256 -0.080676 -1.680671 0.257832 -3.072496 -1.333624 -1.641368 0.959704 1.031868 0.121703 -0.901824 2.263902 -0.079228 0.561420 0.920433 2.042206 -0.985508 -0.257813 -1.472615 -0.415081 0.486249 -0.775095 -0.373204 0.071972 0.042820 -0.910202 -0.977832 0.468704 -0.476822 -0.880591 0.042101 -0.898166 1.304973 -1.754171 -0.294283 -2.156376 0.116084 0.198286 -2.112381 -0.553973 0.183822 0.412248 0.466775 0.215543 -0.653196 0.414512 0.869217 -0.539091 -0.205584 -1.145848 1.852365 0.870646 -0.490922 0.548668 0.720122 0.827524 0.875904 1.390437 -0.245436 -0.951006 0.675363 -0.352538 -0.360047 -0.714142 0.303075 0.449036 -1.037173 -0.099268 0.643045 -0.619819 -0.135957 -0.952761 -1.234240 0.874066 3.377806 -0.494977 0.506603 -0.119621 -1.434944 1.264241 0.077423 -0.905433 0.361032 0.781552 1.358507 -1.259025 -0.781910 0.822288 1.620636 0.545164 -1.285012 0.340683 -0.155923 0.063623 -0.529136 0.686479 0.702728 -0.004463 -0.406064 -0.243795 0.395954 2.443844 -0.623411 -2.039341 0.488841 0.530633 -0.128213 -0.907011 -0.033303 -0.185824 -0.605019 0.565612 -0.122462 0.634433 1.559349 -2.868586 1.286467 0.296984 -0.933492 1.108566 -0.598721 0.162269 -1.092624 0.337249 1.422027 1.287966 0.341899 -0.153945 -0.776102 -1.422517 0.216491 0.434107 0.922484 -0.702838 1.088934 -0.116243 -1.017673 -1.020813 -1.275649 -0.447985 -0.035148 -1.004142 0.394449 0.338648 -3.062675 1.721378 -0.431711 -0.454719 0.080532 -0.269460 0.837480 -1.303379 -1.676730 0.563257 -0.509621 -1.602535 -0.590150 -0.489255 0.657947 0.278304 -0.057090 -0.972371 -2.018893 1.284629 0.009183 0.753188 0.919418 0.708452 1.735073 1.136300 -1.061947 -0.705466 -1.077001 1.144029 -0.439656 -0.149719 -0.123611 -0.578845 0.778973 1.970340 -0.193555 0.095723 -1.104021 1.239683 -1.070108 -0.744134 0.853259 -0.073864 -0.478461 0.768382 1.035326 -0.611141 -0.926615 -1.513110 0.107283 -0.365528 -0.973573 0.226658 -1.671284 -0.368756 1.543613 -0.540053 -1.188926 0.745726 -0.145387 -0.591502 -0.775342 1.912588 1.827249 -1.410471 1.142523 -1.225500 1.166798 -1.873254 -0.987796 -0.215318 -0.341377 0.089239 -0.125642 0.208933 0.317686 0.118228 -0.408578 -0.551846 -0.390657 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/Nearly_sorted_Algo.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::~_Vector_base() = -0.002640 0.797467 0.844345 -1.146427 1.530679 1.145202 0.094765 -0.051693 -0.575994 -0.518080 -0.362440 -1.847741 -1.442776 0.593985 -0.412039 0.171410 1.329980 -0.550382 -0.221618 -0.360000 0.089352 1.005390 1.654892 1.110072 -1.497432 0.434196 -0.039536 0.852891 -0.248972 1.033327 -0.736511 -1.597752 -0.287337 0.615416 0.505594 0.225499 -0.353370 -0.772585 -0.062563 -1.797364 -0.188213 1.124656 -0.544288 0.209613 0.430743 0.530965 2.099468 0.794626 -0.327641 0.210110 0.959460 0.553143 0.652096 0.055525 -0.103483 -0.223531 1.348959 -0.708539 -0.452342 -0.309898 -0.150311 -0.152318 -0.423406 1.083987 1.088000 -0.152330 -0.904661 0.008042 0.459623 -0.043709 -0.132655 1.163710 0.538393 1.153082 0.726746 0.483564 0.537833 -0.575886 0.563772 -1.068139 -1.262341 -0.891028 0.611191 1.408833 0.171715 -0.886565 2.164696 -0.431848 0.335355 0.434693 1.393829 -0.805838 -0.106211 -0.877809 -0.531053 0.048351 -0.261525 -0.227587 -0.546264 0.624136 -0.848329 -0.269698 0.069848 -0.584140 -0.789344 0.462114 -0.333851 0.373677 -1.001511 0.004194 -1.435652 0.946839 0.494527 -1.855072 -1.348483 0.183173 -0.127556 -0.058236 -0.146788 -0.725124 0.357408 0.253494 -0.877751 0.296533 -1.446606 1.312398 1.258239 -0.306308 0.455541 0.601657 1.012269 1.137901 0.291296 -0.499692 -0.782690 0.410753 0.111266 -0.248503 -0.218779 0.498065 -0.418645 -0.822607 0.506165 0.820425 -0.478777 0.192359 -1.754599 -0.872780 0.322923 3.185701 -0.830532 0.832192 0.161745 -1.089304 0.819868 -0.234118 -0.752745 -0.107611 0.138212 1.376542 -0.831057 -0.669866 1.256660 1.439614 0.448704 -0.966017 1.420845 0.658950 0.098668 -0.571604 0.692786 0.540956 0.300570 -0.389333 -0.232036 0.533087 2.520054 0.047948 -1.838002 0.575407 0.680255 0.437553 0.327489 -0.138893 -0.190297 -0.567354 1.178172 0.305561 0.699370 1.370487 -2.253265 0.842985 0.830223 -0.842575 1.451703 -0.402802 -0.137582 0.212307 -0.176114 1.084231 0.974233 -0.008985 -0.118704 -0.871238 -0.966188 0.237365 0.547222 0.546451 -0.828981 0.931375 0.294803 -1.058759 -0.324566 -1.489375 -0.485454 0.423031 -1.386281 0.474828 -0.108108 -2.577333 1.470163 0.243609 -0.344046 -0.172975 -0.934056 0.837366 -0.818767 -0.870723 0.514222 -0.737945 -1.008533 0.038194 -0.332893 0.159133 0.483042 1.123535 -1.558825 -1.436999 1.311844 0.393445 1.084507 0.848968 0.320021 0.472717 0.563803 -0.520216 -0.194076 -1.349915 1.257602 0.325647 -0.400909 0.582010 -0.682450 0.543110 1.222854 -0.649776 -0.052376 -1.249266 0.497709 -0.610524 -0.045510 0.378821 -0.538254 -1.025248 0.406276 0.719134 -0.037142 -0.308367 -1.395538 -0.004178 -1.052642 -0.796144 0.274103 -0.957396 -0.296143 1.355712 -0.798378 -1.045307 0.402728 -0.241285 -0.761642 -0.225373 1.606216 0.944018 -0.226683 1.179772 -1.326746 1.106787 -1.431973 -1.030722 0.250224 -1.249898 -0.500211 -0.517758 -0.096281 0.643548 -0.072258 -0.134725 -0.648133 0.255827 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*) = -0.019407 0.273966 0.259081 -0.080884 0.309645 0.050318 0.142235 0.149091 -0.215330 -0.410622 -0.115160 -0.338108 -0.570570 0.421248 -0.058553 0.048956 0.723007 0.215387 0.084231 -0.283319 0.175187 -0.420670 0.696175 0.698475 -0.641457 0.165610 0.288206 0.285831 0.133719 0.399262 -0.087983 -0.435110 0.270733 -0.149966 0.310749 -0.408235 -0.038281 -0.122254 -0.198392 -1.032986 -0.091631 0.145920 -0.024162 0.034956 0.046384 0.528158 0.740696 0.371437 -0.224709 0.395735 0.277863 -0.010095 0.201914 0.106846 0.033519 0.038202 0.169561 -0.114359 -0.324604 0.165287 -0.019570 -0.830518 -0.087155 0.426287 0.634452 -0.131590 -0.074745 0.086868 -0.139659 0.082190 0.024442 0.279507 0.302313 0.155657 0.435010 -0.442502 -0.069929 -0.924281 -0.132104 -1.643774 -0.534799 -0.548676 0.532176 0.059785 0.159225 0.000770 0.699167 0.052970 0.266909 0.288059 0.715246 -0.481574 -0.199380 -0.291488 -0.022785 0.300930 -0.338804 -0.003727 0.237918 -0.084069 -0.397568 -0.431695 0.478068 -0.038720 -0.321384 -0.152185 -0.195176 0.443302 -0.760574 -0.267361 -0.834410 -0.205071 0.000868 -0.727546 0.193557 0.039768 0.494139 0.334587 -0.038995 -0.306443 0.112061 0.300162 -0.061317 -0.232256 -0.303906 0.551160 0.163285 -0.072655 0.270851 0.225453 0.207105 0.519094 0.654042 -0.106349 -0.226360 0.258504 -0.305818 -0.044710 -0.306800 -0.137058 0.305200 -0.468044 0.075012 0.135736 -0.336131 -0.197912 0.167250 -0.256946 0.313236 0.956117 -0.023740 0.265358 0.150604 -0.513703 0.295514 -0.194714 -0.212270 0.236731 0.494869 0.342343 -0.388505 -0.294539 0.078352 0.616740 0.264734 -0.515453 -0.230427 -0.153255 0.108237 -0.064700 0.213921 0.160458 0.106265 -0.270812 -0.025613 0.209391 0.809273 -0.304845 -0.367898 0.035107 0.065942 -0.110960 -0.659071 -0.015571 -0.159836 -0.083577 -0.007412 -0.019435 0.100944 0.550745 -1.084996 0.482626 -0.202153 -0.180960 0.289660 0.016558 -0.124802 -0.724071 0.229030 0.426963 0.544939 0.131364 0.095101 -0.052397 -0.546002 -0.061082 0.057321 0.301638 -0.272764 0.429013 -0.017298 -0.391406 -0.375047 -0.237409 0.049400 -0.166388 -0.102770 0.213087 0.329878 -1.151846 0.516973 -0.235574 -0.357308 0.121564 -0.023401 0.324760 -0.585188 -0.628131 0.192746 -0.187097 -0.517663 -0.294242 -0.179253 0.273998 -0.046044 -0.228424 -0.141136 -0.532863 0.486375 -0.042853 0.239033 0.356741 0.146419 0.794759 0.152103 -0.435552 -0.290217 -0.092053 0.102464 -0.473381 -0.092607 -0.095254 -0.246149 0.327311 0.890129 0.046204 0.016698 -0.062036 0.556048 -0.610350 -0.350084 0.399893 0.375271 -0.008415 0.442069 0.419793 -0.488547 -0.288980 -0.422798 -0.048961 0.125003 -0.359580 0.224729 -0.632730 -0.004904 0.423628 -0.110211 -0.271348 0.358439 -0.067909 -0.031077 -0.253068 0.607855 0.878567 -0.600770 0.234916 -0.401148 0.243418 -0.697028 -0.357012 -0.093099 0.246883 -0.067480 0.027981 0.080777 0.162093 0.092842 -0.277211 -0.256381 -0.111101 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy_aux::__destroy(int*, int*) = -0.031051 0.113770 0.123194 0.063663 0.186286 -0.052390 0.143168 0.086784 -0.173583 -0.210966 -0.088026 -0.252131 -0.321299 0.306270 0.034115 0.224738 0.492504 0.245772 0.049328 -0.116309 0.093186 -0.502807 0.441717 0.438925 -0.284235 0.137028 0.061485 0.142213 -0.055994 0.385086 -0.213199 -0.207531 0.245297 -0.241329 0.185412 -0.322737 -0.044724 0.043745 -0.052225 -0.682409 -0.033265 0.195095 0.258754 -0.017139 -0.013674 0.280717 0.420494 0.236746 -0.003462 0.303959 0.021357 -0.228176 0.260733 0.133842 0.164018 0.212764 0.180888 -0.123027 -0.351767 0.129129 -0.071598 -0.681198 -0.024519 0.180852 0.392939 -0.098208 -0.055098 0.085008 -0.177601 0.040303 0.062594 0.147006 0.110347 -0.036193 0.227853 -0.322980 0.077324 -0.381115 -0.181798 -1.007977 -0.361528 -0.318049 0.317857 0.113180 0.250222 -0.000134 0.432729 -0.042661 0.140425 -0.069342 0.467667 -0.469709 -0.181648 -0.131218 0.124248 0.122909 -0.226069 -0.139882 0.338166 -0.154006 -0.276021 -0.257327 0.520845 0.062245 -0.173477 -0.057655 -0.110973 0.322826 -0.503255 -0.379261 -0.590891 -0.289453 -0.119382 -0.395715 0.439194 0.121452 0.067774 0.319521 -0.079172 -0.322093 0.166018 0.205467 -0.012316 -0.266022 -0.279544 0.428967 -0.042416 -0.076163 0.235012 0.157550 0.050984 0.394823 0.470692 -0.066374 -0.097416 0.199175 -0.276341 0.044778 -0.148148 -0.268364 0.088685 -0.414348 -0.118208 0.030846 -0.253157 0.115425 0.084079 0.018016 0.175169 0.304152 -0.025957 0.159624 0.081513 -0.349268 0.406099 -0.131523 -0.092808 0.094125 0.355654 0.167127 -0.295762 -0.223600 0.038113 0.385759 0.206663 -0.304508 -0.289773 -0.218869 0.200587 0.076754 0.115861 0.157547 0.163831 -0.249635 0.015655 -0.032461 0.640414 -0.325825 -0.127899 0.108983 -0.230576 -0.132559 -0.714408 -0.084834 -0.260814 -0.106066 -0.340707 -0.023310 -0.060561 0.360734 -0.470719 0.397790 -0.338994 -0.228527 0.414483 -0.083752 -0.060505 -0.634337 0.015930 0.249930 0.425852 0.090361 0.027417 -0.026690 -0.351476 -0.055469 -0.079011 0.191338 -0.133178 0.284109 -0.108726 -0.290322 -0.190579 -0.162414 0.107860 -0.265603 0.018215 0.150161 0.470953 -0.528168 0.278262 -0.090443 -0.245254 0.227538 0.210303 0.092975 -0.314877 -0.401186 0.121659 -0.135589 -0.269046 -0.215827 -0.082630 0.131611 -0.097801 -0.454129 0.025724 -0.286350 0.310643 -0.053390 0.152913 0.216458 0.049757 0.412678 0.472264 -0.404020 -0.084364 0.070137 -0.295387 -0.516975 0.039563 -0.157377 -0.165152 0.301266 0.583845 0.215960 0.130717 -0.040466 0.412288 -0.363266 -0.231744 0.401546 0.067398 0.035478 0.213800 0.371858 -0.345165 -0.214760 -0.193623 -0.073504 0.094764 -0.176691 0.121709 -0.450770 -0.044170 0.212947 -0.121282 -0.137273 0.189099 -0.015092 -0.060009 -0.249689 0.501776 0.382905 -0.357053 0.147860 -0.176659 0.081083 -0.403921 -0.085202 -0.087629 0.460536 -0.205021 0.046638 0.302876 0.073603 0.037402 -0.277778 -0.168504 -0.243337 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -0.272973 0.576047 0.428127 -0.347647 0.959655 0.676096 0.452744 0.028341 -0.703448 -0.992293 -0.185163 -1.274605 -1.623779 1.398392 -0.128569 0.594422 2.147562 0.381584 0.030701 -0.581237 0.848310 -1.031392 2.077826 2.114958 -1.700075 0.373472 0.860670 0.630812 0.142416 0.949575 -0.245137 -1.445029 0.720803 -0.898872 0.767666 -0.971425 -0.322770 -0.217191 0.170330 -2.905967 -0.325798 0.652071 -0.203462 0.014062 0.065534 0.966615 2.128266 1.139898 -0.570379 1.097500 0.725384 -0.254129 0.676308 0.224349 0.319772 0.284535 0.296750 0.123912 -0.765388 0.305540 -0.304920 -1.723209 -0.142119 1.337839 1.866036 -0.344834 -0.505974 0.458768 -0.276553 0.230536 -0.072613 1.105233 0.773077 0.504841 1.346100 -1.611022 -0.294707 -2.895329 -0.182074 -4.047873 -1.575785 -1.148258 1.104882 0.142982 0.857913 -0.244382 2.279016 -0.117566 0.311686 0.947862 2.257143 -1.565798 -0.483841 -0.876924 -0.217359 0.493119 -0.899097 0.065120 0.856960 -0.433876 -1.349343 -1.452053 1.157868 0.068386 -0.953657 -0.813627 -0.466163 1.396267 -1.702690 -1.086428 -2.182465 -0.321568 -0.233752 -2.361922 0.146443 -0.013897 0.789533 0.957196 -0.563582 -1.389576 0.574700 0.856574 -0.292514 -1.080496 -0.156485 1.658002 0.798509 -0.059627 0.635611 0.740000 0.650953 1.926046 1.849932 -0.367817 -0.417824 0.600574 -0.796733 0.139138 -0.787393 -0.411442 0.731361 -1.365316 -0.068996 0.689589 -0.974432 -0.267224 0.828481 -0.718545 0.570919 3.868209 -0.331729 1.052755 0.636510 -1.641982 1.246354 -0.573026 -0.543922 0.531874 1.430267 1.218944 -1.982016 -0.947494 0.793633 2.089405 0.789879 -1.776426 -0.765834 -0.190730 0.417860 -0.406993 0.762337 0.442852 0.478747 -0.855386 -0.082669 0.784852 2.776845 -1.335704 -1.308845 0.275847 0.499418 -0.130107 -2.216679 -0.172224 -1.194047 -0.350240 0.151041 0.013170 0.440223 1.709207 -2.965999 1.424704 -0.612640 -0.686020 1.297287 0.287176 -0.621592 -2.161626 0.420644 1.263395 1.484398 0.363629 0.218355 -0.318709 -1.748561 -0.072307 0.212870 0.783800 -0.933213 1.548149 -0.366111 -1.133979 -1.010107 -0.469829 -0.168869 -0.945592 -0.359881 0.808241 0.953960 -2.883933 1.622621 -0.198568 -0.902669 0.414381 -0.119926 1.201355 -1.557372 -2.011159 0.843567 -0.658005 -1.177213 -0.586219 -0.585045 0.701896 0.363735 -0.537729 -0.734347 -1.867234 1.520235 -0.076287 1.299022 1.027497 0.348852 2.113197 0.362469 -1.413693 -0.954299 -0.704044 0.340612 -0.768589 -0.591160 -1.284684 -0.696890 1.186789 2.275478 0.105563 -0.141149 -0.684929 1.574369 -2.022334 -0.530396 1.098550 1.034901 -0.462253 0.757282 1.204075 -1.189628 -0.555726 -1.232100 -0.086235 -0.299699 -1.088877 0.604510 -1.631616 -0.060304 0.992049 -0.552363 -0.446477 0.811170 0.181398 0.008687 -0.505557 1.716073 2.215213 -1.630928 0.247431 -1.441266 0.896210 -2.027245 -1.277520 -0.022263 0.653693 -0.477501 -0.279890 0.494355 0.586633 0.392866 -0.943699 -0.786109 -0.303453 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector(int*, int*, std::allocator const&) = -0.098742 0.995778 0.551875 -0.118490 1.849788 0.765470 0.796574 0.397341 -0.437261 -1.518764 -0.446541 -1.027141 -2.544112 1.277542 -0.263282 0.561163 2.006506 0.060953 0.624406 -0.765648 1.102441 -1.634385 2.622361 1.836038 -2.411809 0.539881 0.508918 0.815694 -0.185922 1.930804 -0.108003 -1.751411 1.120500 -0.741837 1.485306 -0.966717 -0.296781 -0.448025 -0.707095 -3.021804 -0.723580 1.257401 -0.509467 0.621428 0.245934 1.743950 2.682188 1.261544 -1.016605 1.623513 0.704444 -0.609104 1.273707 0.599381 0.046548 0.074780 0.057836 -0.283054 -1.342783 0.492244 -0.876949 -2.950672 -0.010381 1.270298 2.272880 -0.805327 -0.349660 0.634304 -1.143779 0.443029 0.080362 1.626843 1.353681 0.147479 2.294982 -1.147571 -0.628659 -2.676606 -0.590459 -5.099601 -1.899916 -2.228861 1.139994 0.717130 1.265249 -0.776234 2.811711 0.277651 0.617702 1.059530 2.331063 -1.764527 -0.308320 -1.412398 0.035876 0.064010 -1.088040 -0.312032 1.092951 -0.564053 -1.461541 -1.320566 1.227151 -0.310185 -0.851545 -1.299792 -1.314989 1.737988 -2.424532 -1.164004 -3.251602 -0.614739 -0.521524 -2.738539 0.679097 0.457811 0.818855 1.153295 0.349120 -0.795823 0.809046 1.351627 -0.247954 -1.273271 -0.310569 2.481145 1.001140 -0.117139 1.051488 1.266938 0.090069 1.808574 3.025660 0.383167 -1.238315 0.729674 -0.647164 0.323842 -0.480307 0.021670 1.197644 -1.690241 -0.468166 0.514841 -0.620348 -0.169450 0.110230 -1.274381 1.141628 3.255315 -0.574924 0.975478 0.330750 -1.892695 1.747571 -0.293014 -0.302645 1.000599 1.834688 1.128669 -1.874468 -1.071380 0.880940 1.812697 0.521063 -2.279800 -0.693511 -0.343234 0.906216 -0.576707 0.375163 0.936759 0.702432 -1.013712 0.294431 0.051561 3.155977 -1.747367 -1.590708 0.824263 0.318744 -0.440125 -2.474431 -0.477803 -1.088147 -0.903074 0.068186 -0.082391 -0.172040 1.780911 -2.738616 1.490044 -0.883792 -0.729537 1.477964 -0.193870 0.061775 -2.709416 0.357263 1.328639 1.264837 0.674257 0.006802 -0.674305 -1.807030 0.651207 0.057473 1.195144 -0.787474 1.717000 -0.987785 -1.343548 -1.476224 -1.344104 -0.197119 -0.561923 -0.452626 0.518314 1.545999 -3.379422 1.468130 -0.714538 -1.410526 0.735990 0.675519 1.581973 -1.206684 -2.373390 0.947959 -1.326452 -2.231794 -1.356151 -0.407545 0.422713 0.361143 -1.447594 -0.774952 -2.421476 2.003687 -0.205276 1.085822 1.280747 0.921308 3.225656 1.254760 -2.471848 -1.242655 -1.200689 0.463746 -1.369153 -0.323283 -1.209965 -0.727148 1.203449 2.836487 0.526998 0.490253 -0.902139 2.160372 -2.401428 -0.909568 1.941661 1.002981 -0.126631 1.354112 1.793211 -0.875042 -1.290711 -1.351472 0.405152 -0.057403 -1.094672 0.560356 -2.474646 -0.330055 1.167593 -0.261454 -0.987269 0.746321 -0.038270 0.008433 -1.645699 2.513962 2.841238 -2.465398 0.431696 -1.019364 1.018341 -2.230060 -0.942631 -0.446913 0.928702 0.291996 0.259628 0.922630 0.586749 0.637930 -1.606910 -0.828167 -1.021752 +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.173692 1.103488 0.751151 0.091452 1.008915 0.727599 0.415783 0.822077 -0.425409 -1.034482 -0.364245 -1.489903 -2.013077 1.084382 0.048098 -0.292026 1.701710 0.273661 0.186028 -0.075207 -0.235678 -0.183202 1.540663 1.431490 -1.220807 0.599099 -0.012916 0.128684 -0.726977 1.453827 -0.347791 -2.110057 0.574658 0.552965 0.639694 -0.191975 -0.486572 -0.884644 -0.951751 -2.351802 -0.275212 1.710596 -0.299704 -0.119483 0.399455 0.714015 2.362420 0.697355 -0.112920 0.621322 -0.037725 -0.105464 0.683957 0.177551 0.492084 -0.201969 0.279283 -0.659457 -1.285746 0.418909 -0.292862 -1.667393 -1.046051 0.832583 1.133811 -0.154383 -0.498116 -0.421127 -0.696020 0.203047 -0.335667 0.735708 1.451609 0.722840 0.928684 0.934143 -0.364765 -0.436225 -0.124008 -2.820471 -1.499105 -1.231292 1.694664 1.429529 0.046609 -1.303602 1.681916 -0.247390 0.682678 0.515120 2.158154 -0.933700 -0.557649 -0.794161 0.156728 0.514284 -0.605933 -0.124610 0.304097 -0.740736 -1.212528 -0.693304 0.708951 -0.372494 -0.657008 0.343501 -0.387680 1.070711 -1.566354 -0.093252 -2.200325 -0.376367 0.537125 -1.734924 -0.468606 1.009978 -0.331143 1.266075 -0.517550 -0.461373 0.717858 0.252969 -0.427210 -0.348276 -1.012929 1.718336 0.121097 -0.146896 0.869328 0.903884 0.955057 0.898688 1.224263 0.021528 -0.182963 0.319522 -0.074922 -0.006889 -0.032281 -0.180138 -0.365773 -0.865235 0.149002 0.238156 -0.866017 -0.068757 -2.047854 -0.580570 0.558068 1.806888 -0.585344 0.746961 -0.071687 -1.357984 1.254946 -0.427410 -0.980386 -0.287165 1.023952 1.363462 -0.192427 -0.426160 0.735096 1.662659 0.604347 -0.907281 0.856660 -0.087057 0.327623 -0.671244 1.099423 0.478189 0.945452 -0.746038 -0.119919 0.687999 2.130924 -0.773261 -2.095634 0.231562 0.107067 0.962836 -0.373641 0.196974 0.169077 -0.339574 0.400470 -0.212204 0.271194 1.307900 -1.866955 1.303662 -0.065152 -0.985456 1.216158 -0.158015 -0.243700 -0.507537 0.270682 1.368886 1.376970 0.913765 -0.324551 -0.897196 -1.155489 -0.228477 0.289924 0.718469 -0.556444 1.142674 -0.423562 -1.021367 -0.853494 -1.744625 -0.046289 -0.296821 -1.091459 0.358050 1.256060 -2.484774 1.531011 0.168884 -0.662160 -0.447728 -0.052272 0.392196 -1.086179 -1.738361 0.162870 -1.140987 -2.127839 -0.124205 -0.769358 0.097141 0.514495 -0.286146 -0.310646 -1.265486 1.949315 0.667533 1.153242 0.904022 0.501845 1.756925 1.824909 -1.382290 0.144722 -1.369793 1.369888 -1.204487 -0.188916 0.234950 -0.929596 0.637356 1.782900 0.005873 -0.255423 -1.525757 0.937824 -0.805466 -0.478236 1.155735 -0.389541 0.035838 0.716895 1.265333 -0.536839 -0.595257 -1.269155 -0.017477 -0.457542 -0.879393 -0.165491 -1.649242 -0.406413 1.258877 -0.765921 -1.101962 0.244551 -0.408434 -0.673588 -0.587569 1.311843 1.048575 -1.630981 1.483152 -0.985329 0.996134 -1.516761 -0.911131 -0.034014 -0.050657 -0.283391 -0.444107 0.211260 -0.246353 -0.028944 -0.875165 -0.932838 0.049544 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base(std::allocator const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_range_initialize(int*, int*, std::forward_iterator_tag) = -0.041955 2.722694 2.129802 -1.342640 2.713008 2.495657 0.808434 0.089090 -1.025180 -1.839038 -0.550374 -4.231244 -4.271574 2.434780 -0.417542 0.156674 4.410984 -0.374787 -0.272169 -0.919444 0.706508 0.024717 4.704173 4.517508 -4.127879 1.266746 1.463105 1.282652 -0.023987 2.249081 -1.708216 -3.670501 0.835289 -0.111293 1.569445 -0.416282 -1.139076 -2.586672 -0.234424 -5.975563 -0.710112 2.071692 -1.173001 -0.148411 0.595119 2.219131 6.346580 2.312791 -1.072726 0.895442 1.660290 -0.135140 1.541080 0.200887 0.789586 -0.543547 2.539257 0.264113 -1.684397 -0.013752 -0.369742 -2.701651 -1.263991 3.303695 3.592138 -0.127035 -1.599365 0.204980 0.147397 -0.009226 -0.944423 2.749848 2.535030 2.969851 2.632338 -1.034706 0.706246 -4.001834 -0.001842 -6.528266 -3.900094 -2.661302 2.375713 1.156557 1.309663 -1.847237 5.124772 -0.279358 1.385598 1.304212 5.345568 -3.202536 -0.895683 -1.836783 -0.908666 1.003599 -1.449974 0.769545 0.665679 -1.097437 -3.172108 -2.196968 1.969871 -0.336382 -2.293590 0.291229 -0.548038 1.930375 -2.828796 -0.842595 -4.548913 -0.693228 0.552238 -5.619506 -1.368488 0.698957 1.159760 1.644284 -1.187117 -2.917386 0.961607 1.384009 -1.272271 -1.406978 -2.253739 4.134043 2.525724 -0.029300 1.688991 1.497881 2.877717 3.560628 3.078149 -0.703378 -0.926588 0.438975 -1.294622 -0.124898 -0.787135 -0.048382 0.547263 -2.268721 0.335153 2.017601 -2.006551 0.120106 -0.970284 -1.734126 1.157385 9.066295 -1.410235 2.608653 0.760139 -3.816224 2.753176 -1.398387 -2.462620 0.122580 2.163929 3.830360 -4.032728 -1.753008 2.506493 4.743333 1.524157 -3.761014 1.392811 0.631455 0.163982 -1.909174 2.259346 0.779643 1.625891 -1.886226 -0.504224 2.807578 6.456373 -2.107564 -5.129148 0.784037 0.563089 1.491052 -2.344330 -0.043894 -0.789072 -0.644693 1.220158 0.205856 1.659412 3.767278 -6.613230 2.881337 0.085526 -2.570824 4.117242 -0.010227 -1.599566 -1.718847 1.342965 3.568194 2.742010 1.200258 -0.836193 -1.874255 -3.395045 -0.376553 0.935356 1.466095 -2.269595 3.272654 -0.068545 -2.927723 -2.250052 -3.403997 -0.255592 -0.829063 -2.536783 1.587777 0.625364 -7.062356 4.525495 0.566659 -1.803460 -0.535019 -2.171869 1.623334 -3.350635 -4.081720 1.110943 -2.254982 -3.071994 -0.724316 -1.552658 0.636243 1.405637 0.722463 -3.079976 -4.168150 3.988428 0.490212 3.237394 2.564006 1.416886 3.789791 2.192583 -2.487896 -1.534048 -2.506495 2.650323 -0.586054 -2.144710 -1.030651 -2.306954 2.057007 4.707394 -1.364334 -0.048855 -2.950383 2.028660 -3.543794 -1.249373 1.837040 0.923259 -1.958737 1.066452 2.328274 -1.187614 -0.970386 -3.283275 -1.320965 -1.753460 -2.989707 0.656159 -3.290309 -0.527171 3.302428 -2.113320 -1.782728 1.362836 -0.769864 -0.696469 -0.524400 3.267680 4.498564 -3.298493 1.819325 -3.702673 2.820286 -4.625537 -3.510777 1.150837 -0.928713 -1.058513 -1.636247 0.692071 0.977901 0.256431 -2.113170 -1.825421 0.480997 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = -0.078452 0.779023 0.502944 -0.007797 0.818012 0.400598 0.413843 0.285968 -0.365574 -0.841405 -0.293165 -0.843946 -1.457904 1.051493 0.013330 0.331419 1.757196 0.404873 0.151014 -0.469992 0.572085 -1.069338 1.690210 1.591712 -1.422122 0.398896 0.808663 0.453690 0.126312 0.900211 -0.499087 -0.995352 0.805884 -0.730469 0.649388 -0.837063 -0.159785 -0.493139 -0.226939 -2.346238 -0.259353 0.296932 -0.261209 -0.015993 -0.046256 1.160683 1.936770 0.894269 -0.498442 0.766152 0.449714 -0.395186 0.474340 0.295707 0.222452 0.255822 0.288390 0.205651 -0.875568 0.277383 -0.156188 -1.965677 -0.233320 0.960476 1.444902 -0.286876 -0.228570 0.493791 -0.421638 0.098031 -0.134404 0.706569 0.921227 0.381419 1.159164 -1.219683 -0.283699 -2.064258 -0.533658 -3.701959 -1.325266 -1.307178 0.938588 -0.256883 0.705151 -0.156931 1.676859 0.041294 0.607460 0.547798 1.928131 -1.490674 -0.506692 -0.826459 0.097749 0.522376 -0.830974 0.023820 0.936145 -0.735021 -1.078914 -1.205113 1.226118 0.087363 -0.736600 -0.604530 -0.426207 1.133724 -1.519925 -0.871012 -2.116653 -0.815612 -0.229824 -1.841209 0.503095 0.385833 1.029977 0.949337 -0.171989 -1.145585 0.372298 0.911884 -0.126825 -1.023037 -0.092757 1.487545 0.492349 -0.092791 0.785400 0.580041 0.606105 1.480862 1.964325 -0.101437 -0.472775 0.431890 -0.857140 0.001820 -0.568632 -0.428801 0.666911 -1.171990 -0.039168 0.591341 -0.817203 -0.116459 0.798458 -0.515409 0.712996 2.496664 -0.143390 0.646648 0.243056 -1.413239 1.011624 -0.604781 -0.669874 0.397877 1.202507 0.982457 -1.512376 -0.704447 0.397844 1.534173 0.646838 -1.566325 -0.587268 -0.477290 0.372225 -0.337596 0.454914 0.491465 0.546659 -0.723308 -0.040294 0.653174 2.222622 -1.269684 -1.214534 0.312017 -0.095991 -0.070333 -2.014910 -0.184195 -0.584479 -0.298774 -0.104683 -0.078638 0.204532 1.360126 -2.220132 1.147709 -0.731004 -0.773491 1.042503 0.138452 -0.367762 -1.597614 0.549574 1.205503 1.213818 0.511498 0.018702 -0.361829 -1.313307 -0.149405 0.131595 0.695553 -0.530758 1.094779 -0.259998 -0.987507 -0.980520 -0.592628 0.137474 -0.669269 -0.135457 0.526734 0.741725 -2.619219 1.406123 -0.351843 -0.840274 0.378020 -0.024945 0.784242 -1.327279 -1.738015 0.606409 -0.526081 -1.092785 -0.617692 -0.402002 0.575132 0.210079 -0.721968 -0.389884 -1.602725 1.237831 0.017303 0.768327 0.840991 0.529362 2.047243 0.523655 -1.289990 -0.829376 -0.392488 0.157107 -0.983491 -0.423518 -0.878211 -0.602720 0.983218 2.070565 0.104418 0.164062 -0.540525 1.207283 -1.859614 -0.727525 1.120483 1.184032 -0.227053 0.735866 1.126872 -0.994918 -0.734403 -0.876496 -0.265116 0.032822 -1.011040 0.270373 -1.593555 -0.132464 1.061340 -0.409834 -0.445485 0.702776 -0.151449 0.058877 -0.704491 1.322113 2.214116 -1.749671 0.270754 -0.986875 0.723143 -1.721191 -1.038419 0.093501 0.733768 -0.214191 -0.106004 0.642366 0.273813 0.113208 -0.991851 -0.603745 -0.511942 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = 0.064969 0.478604 0.725819 -0.383850 0.449204 0.353617 0.109349 0.021411 -0.370109 -0.138776 -0.233835 -0.553165 -0.480298 0.504653 -0.028900 0.035198 0.865384 0.196999 -0.114403 -0.231009 0.160185 -0.386842 0.712695 0.870838 -0.760786 0.355994 0.263889 0.415260 0.126021 0.914853 -0.651534 -0.371410 -0.073834 0.016976 0.460134 -0.473130 -0.248455 -0.244952 -0.109903 -1.371025 -0.047403 0.398754 0.169005 -0.039375 0.220187 0.364899 1.075437 0.363302 -0.142908 0.172046 0.260373 -0.019203 0.397817 0.020422 0.373998 0.337451 1.091098 0.149774 -0.255134 0.180038 -0.019658 -0.587605 0.042669 0.580772 0.686794 -0.015579 -0.261457 -0.185408 0.148526 -0.073564 -0.079314 0.425232 0.091077 0.435607 0.288225 -0.434833 0.611178 -0.749276 0.180468 -1.071575 -0.678598 -0.512109 0.412027 0.240862 0.269511 -0.257302 0.914206 -0.222226 0.328609 -0.141196 0.816943 -0.585657 -0.089749 -0.266266 -0.318531 0.210045 -0.138330 -0.154900 0.110060 -0.192996 -0.450043 -0.433919 0.729987 0.043065 -0.476166 0.469382 -0.118857 0.484809 -0.576669 -0.342330 -0.689645 -0.129597 -0.119755 -0.817953 0.092993 -0.216255 0.077025 0.197211 -0.181471 -0.644340 0.173495 0.397051 -0.278271 -0.165422 -0.870812 0.890196 0.314335 -0.226873 0.166406 -0.011168 0.316197 0.375421 0.491950 -0.275410 -0.102525 0.310144 -0.392704 -0.193464 -0.350209 -0.092760 0.052201 -0.404710 -0.315468 0.212434 -0.381906 0.380516 -0.039613 -0.159541 0.232388 1.815171 -0.246820 0.381023 0.033915 -0.659421 0.757814 0.179482 -0.404006 0.166608 0.446666 0.588870 -1.096339 -0.364778 0.159842 0.818228 0.303099 -0.541569 -0.125135 -0.170932 -0.210894 0.061119 0.442595 -0.070410 0.060726 -0.359582 -0.161318 0.069596 1.290002 -0.242917 -1.040308 0.023479 -0.250269 -0.227400 -0.703836 0.027465 -0.288401 -0.071850 -0.360052 -0.142641 0.401674 0.642968 -1.537887 0.718975 -0.256923 -0.719967 1.041995 -0.313200 -0.067148 -0.566365 0.140454 0.529050 0.769715 0.071002 -0.307529 -0.160610 -0.658397 -0.106887 -0.009169 0.294073 -0.557565 0.590228 0.153512 -0.657079 -0.257373 -0.643372 0.047635 -0.296082 -0.494742 0.230125 0.024215 -1.200359 0.691048 0.132507 -0.163566 0.245469 -0.178964 -0.091479 -0.565120 -0.622355 0.090552 0.044156 -0.237151 -0.255445 -0.344503 0.330928 -0.032327 -0.068302 -0.632082 -0.774522 0.420875 -0.233378 0.434826 0.518130 0.126943 0.454172 0.968803 -0.300857 -0.291148 -0.067724 0.081264 -0.174518 -0.127924 -0.233121 -0.545156 0.367752 0.955071 -0.035034 0.273144 -0.471843 0.633934 -0.344160 -0.276617 0.297037 -0.329655 -0.248991 0.064571 0.403127 -0.309019 -0.288743 -0.519904 -0.419045 -0.034524 -0.291881 0.379551 -0.573895 -0.074241 0.513955 -0.375260 -0.417524 0.349723 -0.159543 -0.239255 -0.059401 0.777451 0.627564 -0.397529 0.493470 -0.455976 0.433496 -0.745516 -0.191650 -0.147928 -0.012731 -0.371313 -0.142613 0.209239 0.264683 0.084963 -0.118996 -0.056046 -0.111847 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -0.271009 0.338160 0.253407 -0.389073 0.763753 0.403832 0.307581 -0.023430 -0.728909 -0.950057 -0.067942 -1.254208 -1.227399 1.073392 -0.130565 0.422374 1.614082 0.210177 -0.023234 -0.465372 0.622398 -0.877106 1.465971 1.669814 -1.231588 0.318268 0.446121 0.383814 -0.055484 0.728591 -0.007612 -1.360169 0.373477 -0.515748 0.712472 -0.617326 -0.441034 0.021789 0.199216 -2.255971 -0.273493 0.862745 -0.018386 0.043587 0.152165 0.663007 1.617805 0.735452 -0.376149 0.951574 0.553014 -0.110304 0.637388 0.047247 0.352724 0.183884 0.259776 -0.067711 -0.517042 0.298697 -0.400532 -1.007828 -0.063770 1.021763 1.308840 -0.311418 -0.561306 0.187252 -0.137291 0.215963 -0.024404 0.987039 0.538538 0.336371 0.960237 -1.157072 -0.155500 -2.305178 0.154873 -3.133756 -1.223389 -0.626340 0.981723 0.582671 0.471717 -0.381912 1.930444 -0.300037 0.027115 0.828265 1.731706 -0.965163 -0.269693 -0.550956 -0.334037 0.161298 -0.478254 -0.060334 0.491964 -0.079461 -1.055354 -0.944581 0.791843 -0.106951 -0.724441 -0.532828 -0.355061 1.041526 -1.359548 -0.672849 -1.534970 0.102700 0.066866 -1.737883 0.067335 -0.130011 0.136404 0.734663 -0.741446 -0.925566 0.581130 0.411107 -0.350271 -0.526484 -0.436324 1.333956 0.569169 0.002239 0.352880 0.672268 0.516079 1.335087 1.092963 -0.389766 -0.202451 0.499145 -0.358430 0.169446 -0.472240 -0.287629 0.485200 -0.913452 -0.146987 0.276107 -0.741438 -0.222683 0.257299 -0.652287 0.175299 3.029585 -0.451435 0.961563 0.514697 -1.155849 1.111904 -0.297527 -0.320647 0.300687 1.120684 1.027741 -1.354984 -0.780136 0.880752 1.705014 0.552434 -1.182717 -0.532867 0.137336 0.317203 -0.185518 0.768305 0.194062 0.412876 -0.633124 -0.099229 0.448092 2.285435 -0.826158 -0.774409 0.134317 0.559143 0.044343 -1.541778 -0.047239 -1.147700 -0.281985 0.155667 0.058677 0.394745 1.358545 -2.418055 1.144457 -0.461925 -0.451892 0.969762 0.216860 -0.433512 -2.085733 0.039661 0.875267 1.192575 0.189997 0.251657 -0.291987 -1.330689 -0.001326 0.150823 0.605800 -0.961266 1.311353 -0.390638 -0.856457 -0.556663 -0.395571 -0.377341 -0.659602 -0.451528 0.630922 0.944313 -1.988527 1.215991 0.083289 -0.522889 0.111380 0.054752 0.916745 -0.999152 -1.460997 0.594663 -0.662253 -1.048713 -0.340935 -0.596413 0.397274 0.158254 -0.503170 -0.618646 -1.355948 1.349162 -0.110907 1.242553 0.803098 0.083379 1.468994 0.542993 -1.013121 -0.502457 -0.659475 0.323618 -0.582621 -0.315979 -0.895038 -0.532277 0.763678 1.548343 0.162673 -0.238100 -0.511608 1.202231 -1.215605 -0.210564 0.746905 0.249890 -0.383984 0.617308 0.877090 -0.763365 -0.243730 -1.220351 0.082283 -0.523112 -0.600710 0.524383 -1.112722 -0.156770 0.643046 -0.550068 -0.396307 0.570319 0.314947 -0.143143 -0.265019 1.421788 1.381894 -0.978212 0.308501 -1.142470 0.706102 -1.385112 -0.894001 -0.204412 0.634048 -0.495323 -0.453640 0.209156 0.519355 0.436931 -0.639694 -0.639749 0.065335 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = -0.327376 0.412471 0.448342 -0.273888 1.136744 0.470709 0.469766 0.301963 -0.879847 -1.343054 -0.204936 -1.603865 -2.059185 1.664569 -0.155291 0.599532 2.525449 0.569673 0.103382 -0.728786 0.823572 -1.251351 2.389266 2.273158 -1.899988 0.338264 0.723444 0.905584 0.272721 0.953207 -0.148862 -1.544030 0.997179 -0.958413 0.832814 -1.086766 -0.190968 -0.153504 -0.154241 -3.190521 -0.304932 0.766450 -0.227578 0.166897 0.012975 1.596438 2.297517 1.324243 -0.676899 1.381783 0.847791 -0.557555 0.849911 0.350431 0.166933 0.066169 0.189082 0.033364 -1.151168 0.405553 -0.351897 -2.505809 -0.408577 1.299833 2.180247 -0.502358 -0.565595 0.551188 -0.357264 0.370864 0.221191 1.059353 1.212172 0.317465 1.679262 -1.431326 -0.568356 -3.128447 -0.428625 -5.154065 -1.656760 -1.391964 1.752114 0.123741 0.568054 -0.414403 2.435422 -0.017005 0.340414 1.073578 2.617384 -1.697646 -0.784663 -1.139875 0.105931 0.763083 -1.202347 -0.023651 1.379721 -0.299319 -1.424097 -1.400235 1.268190 -0.205723 -1.029479 -0.863608 -0.663169 1.760784 -2.177718 -1.045799 -2.807011 -0.425109 0.072584 -2.633342 0.230681 0.291364 0.958865 1.300459 -0.549374 -1.141625 0.663561 0.778585 -0.278788 -0.968433 -0.193586 2.010274 0.675677 0.001979 0.794362 1.168399 0.820529 2.089101 2.145261 -0.384598 -0.607931 0.788425 -0.900267 0.205743 -1.011921 -0.613998 1.068189 -1.683661 0.101740 0.559586 -1.189213 -0.429475 0.688645 -0.626203 0.743924 3.681035 -0.217309 1.042519 0.729261 -1.671037 1.432977 -0.621411 -0.419478 0.640663 1.540776 1.282991 -1.698630 -1.069242 0.831008 2.237429 0.967644 -2.266836 -0.688345 -0.341083 0.811485 -0.485547 0.709513 0.851218 0.588743 -0.801094 0.045928 0.918092 2.955356 -1.638600 -1.700609 0.333597 0.392386 -0.043621 -2.645476 -0.197692 -0.977791 -0.497000 0.165543 0.190455 0.263273 2.033655 -3.222594 1.640610 -0.397465 -0.572946 1.454821 0.300616 -0.625222 -2.614760 0.369657 1.347606 1.758952 0.740248 0.106460 -0.295093 -1.939802 -0.076367 0.414115 0.932209 -0.744402 1.519433 -0.523014 -0.905060 -1.141874 -0.731419 -0.166918 -0.694597 -0.402427 0.995851 1.224679 -3.523637 1.680341 -0.506837 -1.224221 0.311870 -0.062158 1.433814 -1.882101 -2.250153 0.860516 -1.036687 -1.969015 -1.016164 -0.455656 0.666756 0.305346 -0.777275 -0.546803 -2.139131 1.971013 -0.229091 1.266460 1.145864 0.288097 2.555577 0.748204 -1.728335 -0.998543 -0.654381 0.380331 -1.324770 -0.524109 -1.156317 -0.519513 1.320364 2.693726 0.237338 -0.091454 -0.766889 1.706743 -2.409930 -0.995217 1.459091 1.292759 -0.273921 1.411672 1.504235 -1.634838 -0.643164 -1.399628 -0.211032 -0.167001 -1.342393 0.573319 -2.018520 -0.025576 1.186138 -0.506771 -0.609386 1.021082 0.092167 -0.172240 -0.860438 2.181841 2.993590 -2.107063 0.476020 -1.720474 1.183079 -2.385945 -1.507467 0.044413 0.889318 -0.517755 -0.136305 0.778041 0.509711 0.389553 -1.355254 -1.262604 -0.257215 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a(int*, int*, int*, std::allocator&) = 0.007653 0.662417 0.385282 0.026588 0.523442 0.185489 0.250982 0.229392 -0.184139 -0.676218 -0.228115 -0.664270 -1.097818 0.657548 0.037417 0.114003 1.135862 0.190312 0.143133 -0.371709 0.288973 -0.745176 1.130560 1.093803 -1.029195 0.341167 0.570073 0.330221 0.141356 0.587452 -0.256677 -0.687801 0.473339 -0.346173 0.540401 -0.482564 -0.153360 -0.427784 -0.267276 -1.643854 -0.234534 0.304598 -0.097046 0.024141 0.023258 0.874411 1.424501 0.587809 -0.373452 0.526329 0.328875 -0.274983 0.414985 0.162233 0.112350 0.021899 0.284089 0.031272 -0.575845 0.250036 -0.047081 -1.417365 -0.202700 0.683856 0.991268 -0.224777 -0.205734 0.293788 -0.267400 0.066499 -0.167829 0.568846 0.663349 0.363371 0.809617 -0.750753 -0.099390 -1.387790 -0.287759 -2.635347 -0.968718 -0.938303 0.712705 -0.029235 0.400655 -0.112001 1.198078 0.083064 0.460098 0.370787 1.335738 -0.925040 -0.303033 -0.515172 0.063820 0.413196 -0.548021 0.056624 0.572671 -0.419654 -0.719155 -0.742861 0.860090 -0.036214 -0.562773 -0.287289 -0.332542 0.691657 -1.083961 -0.480830 -1.481224 -0.627103 -0.062459 -1.270041 0.379090 0.306166 0.657400 0.653295 -0.072202 -0.683498 0.215338 0.516875 -0.072318 -0.590511 -0.348221 1.021397 0.344079 -0.081307 0.563506 0.464563 0.511728 0.910413 1.267215 -0.037777 -0.365899 0.306578 -0.535784 -0.027967 -0.323619 -0.253213 0.497866 -0.749331 -0.032477 0.313960 -0.531709 -0.137358 0.356984 -0.466572 0.461958 1.590557 -0.090842 0.419565 0.154880 -0.927496 0.671905 -0.416509 -0.549156 0.280990 0.812667 0.772868 -0.868087 -0.438937 0.271223 1.087886 0.385879 -0.982037 -0.329871 -0.208057 0.216460 -0.264042 0.411743 0.291871 0.392544 -0.456145 -0.023195 0.469301 1.437379 -0.765900 -0.771322 0.154750 -0.051468 0.009194 -1.301458 -0.040944 -0.325292 -0.230185 -0.123269 -0.030323 0.129521 0.885319 -1.569487 0.779067 -0.397577 -0.511071 0.684846 0.021983 -0.232618 -1.176822 0.453158 0.835736 0.764954 0.308324 0.008092 -0.328100 -0.910431 -0.104490 0.103324 0.456103 -0.434854 0.801759 -0.209644 -0.631087 -0.676894 -0.478044 0.098524 -0.365055 -0.165818 0.349212 0.568231 -1.763389 0.976151 -0.282156 -0.602352 0.140486 -0.090611 0.467627 -0.920679 -1.129104 0.324143 -0.454517 -0.872323 -0.435163 -0.354091 0.317312 0.087284 -0.546321 -0.275903 -0.984075 0.890669 -0.015563 0.477652 0.630082 0.385568 1.380295 0.467157 -0.884455 -0.481206 -0.213284 0.121496 -0.717572 -0.249921 -0.476679 -0.457453 0.573913 1.470071 0.007766 0.149711 -0.312419 0.750885 -1.169137 -0.602778 0.689662 0.659038 -0.124669 0.581683 0.695399 -0.597974 -0.456354 -0.723112 -0.196920 0.040504 -0.688711 0.188142 -1.130456 -0.172603 0.832002 -0.383938 -0.366773 0.532790 -0.167487 -0.021943 -0.498968 0.892912 1.473220 -1.197378 0.275455 -0.705855 0.486289 -1.174466 -0.670793 0.023759 0.513984 -0.072548 -0.152750 0.380942 0.111534 0.123857 -0.724137 -0.460179 -0.260501 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_max_size(std::allocator const&) = -0.077233 0.736189 0.602211 -0.196757 1.241842 0.432768 0.319537 0.279150 -0.430424 -0.966837 -0.422858 -0.922595 -1.692463 1.083814 -0.028369 0.493887 1.541006 0.060205 0.127880 -0.589913 0.805384 -1.095128 1.654920 1.084116 -1.567754 0.406923 0.750026 0.756629 0.232641 1.127185 -0.485836 -0.953118 0.549612 -0.604989 0.829733 -0.698517 -0.041194 -0.367156 -0.344136 -2.154501 -0.390006 0.513841 -0.497445 0.256024 -0.027294 1.493806 1.841977 0.941236 -0.703927 0.876491 0.702556 -0.491332 0.590183 0.336352 -0.082032 0.151914 0.495184 0.095175 -0.930359 0.283803 -0.190888 -2.070804 -0.139162 0.862485 1.506854 -0.613660 -0.376494 0.862640 -0.400886 0.149267 -0.081028 0.890982 0.900731 0.248315 1.397068 -1.090988 -0.366470 -1.995155 -0.351022 -3.764068 -1.267105 -1.466999 0.768440 -0.068748 0.563368 -0.250593 2.018920 0.046665 0.341524 0.696069 1.862853 -1.397470 -0.375315 -1.209002 0.098209 0.317027 -0.892573 -0.369837 0.956935 -0.291188 -0.884443 -1.052795 0.977195 -0.254905 -0.745520 -0.678065 -0.874393 1.295836 -1.752797 -0.834389 -2.271751 -0.457260 -0.188673 -1.859952 0.338835 0.530222 0.964820 0.703267 0.249685 -0.892342 0.447817 0.966540 -0.268610 -0.781100 -0.119800 1.618494 0.706479 -0.225076 0.768237 0.836364 0.613156 1.306281 2.054548 -0.080487 -0.958527 0.625301 -0.609628 0.024020 -0.544571 -0.159637 0.741899 -1.256937 -0.062023 0.579620 -0.596251 -0.068732 0.495213 -0.831187 0.721187 2.356063 -0.216530 0.429735 0.013788 -1.308042 1.102158 -0.385928 -0.648954 0.518194 0.938461 1.011531 -1.358845 -0.780621 0.723025 1.419254 0.540254 -1.772931 -0.469942 -0.383964 0.515264 -0.319294 0.321318 0.884879 0.364016 -0.430570 -0.038415 0.224356 2.397833 -1.259239 -1.374529 0.655863 0.015431 -0.326845 -2.061823 -0.297613 -0.523732 -0.686750 0.062241 -0.009953 0.163949 1.413159 -2.311990 1.132991 -0.400384 -0.832761 1.019017 -0.186164 0.050569 -1.789996 0.172993 1.173468 1.133031 0.423363 0.005539 -0.570876 -1.329637 0.240101 0.233788 0.729764 -0.394324 1.030077 -0.399748 -0.811187 -0.920921 -0.630122 -0.125299 -0.242742 -0.171016 0.467564 0.599037 -2.858708 1.365670 -0.639287 -0.692572 0.452453 0.231632 1.063863 -1.099398 -1.637873 0.766100 -0.571791 -1.359819 -0.823618 -0.263345 0.534991 0.207569 -0.776336 -0.456313 -1.880587 1.172550 -0.151535 0.596575 0.801547 0.595442 2.049655 0.566453 -1.422071 -0.868414 -0.470120 0.210743 -0.882352 -0.061639 -0.761823 -0.331427 0.962281 1.850995 0.201964 0.384445 -0.689226 1.204485 -1.836765 -0.811935 1.144385 1.018636 -0.369786 0.990057 1.159775 -0.766995 -0.832696 -1.082917 -0.070047 -0.217769 -0.870149 0.183307 -1.647715 -0.383919 1.246999 -0.388337 -0.646992 0.767968 -0.100749 -0.189121 -1.147364 1.766839 2.488604 -1.786799 0.374922 -0.995135 0.912451 -1.679469 -0.954453 -0.022986 0.679718 0.000100 -0.021295 0.783466 0.272155 0.158723 -1.077494 -0.633348 -0.754962 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy(int*, int*, int*) = -0.001404 0.706788 0.437644 0.049594 0.629640 0.183367 0.329824 0.299200 -0.278068 -0.747302 -0.255425 -0.787600 -1.230673 0.817777 0.086122 0.200567 1.363815 0.282189 0.137116 -0.360977 0.339017 -0.951037 1.273871 1.225736 -1.071415 0.396249 0.562798 0.299903 0.021633 0.767078 -0.409763 -0.814092 0.578508 -0.467021 0.590568 -0.569833 -0.211547 -0.451566 -0.276408 -1.866064 -0.221556 0.422763 -0.049501 -0.032299 -0.006290 0.983857 1.622345 0.660318 -0.349580 0.591132 0.265261 -0.433986 0.479272 0.218506 0.263433 0.154665 0.330697 0.112484 -0.767650 0.293275 -0.136754 -1.630863 -0.233037 0.720133 1.078982 -0.246170 -0.248848 0.330808 -0.353826 0.076573 -0.163783 0.592553 0.784169 0.306382 0.901126 -0.838507 -0.133110 -1.483208 -0.387429 -3.024793 -1.107651 -1.013450 0.839187 -0.069459 0.494184 -0.204146 1.333611 0.000774 0.495931 0.335629 1.565968 -1.118115 -0.400896 -0.600631 0.118804 0.394421 -0.601086 -0.037910 0.806400 -0.601851 -0.867070 -0.822436 1.051613 0.008124 -0.586514 -0.315315 -0.330830 0.857418 -1.223962 -0.616177 -1.716642 -0.731603 -0.088127 -1.413041 0.530361 0.425896 0.622702 0.815898 -0.191752 -0.844567 0.349159 0.614406 -0.134884 -0.723187 -0.325815 1.249638 0.282593 -0.056347 0.666684 0.522004 0.549750 1.042086 1.531488 -0.053319 -0.334175 0.329282 -0.638551 0.008281 -0.319290 -0.401510 0.491783 -0.892137 -0.100091 0.328739 -0.648166 -0.027128 0.401532 -0.406398 0.507822 1.721774 -0.172586 0.511572 0.120790 -1.086052 0.904609 -0.454898 -0.609746 0.216631 0.965572 0.859016 -1.028362 -0.518257 0.367207 1.240724 0.489736 -1.172647 -0.401162 -0.323010 0.294792 -0.232000 0.449752 0.356989 0.535703 -0.581484 -0.037305 0.455923 1.766347 -0.970174 -0.974448 0.230150 -0.186476 0.058219 -1.594716 -0.083419 -0.420306 -0.254062 -0.255265 -0.085625 0.136981 1.043529 -1.739301 0.955989 -0.600886 -0.685932 0.918695 0.026110 -0.255871 -1.416459 0.379346 0.972100 0.973952 0.433647 -0.066601 -0.389322 -1.015129 -0.134622 0.058246 0.531974 -0.446103 0.897375 -0.304861 -0.767558 -0.732870 -0.603058 0.126604 -0.473297 -0.155998 0.389464 0.730774 -1.978578 1.126249 -0.227693 -0.636475 0.190788 0.048716 0.473962 -0.983834 -1.338917 0.370617 -0.530388 -1.000496 -0.488963 -0.396640 0.344903 0.108469 -0.726792 -0.241548 -1.186447 1.076513 0.000527 0.649821 0.693842 0.413671 1.602778 0.755605 -1.061743 -0.503390 -0.267010 0.053100 -0.918714 -0.257927 -0.600926 -0.531738 0.716964 1.605297 0.096652 0.209593 -0.458145 0.887827 -1.341781 -0.624214 0.898740 0.665035 -0.138401 0.620958 0.902524 -0.702064 -0.543665 -0.782625 -0.266018 -0.025963 -0.750097 0.140888 -1.281503 -0.220264 0.882256 -0.441042 -0.399427 0.514967 -0.178274 -0.050281 -0.595049 1.053256 1.663098 -1.409741 0.320933 -0.760185 0.573828 -1.309097 -0.749130 0.040415 0.702178 -0.190299 -0.173090 0.564599 0.102156 0.086240 -0.884178 -0.527580 -0.344803 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy(int*, int*, int*) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy(int*, int*, int*) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__miter_base(int*) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_wrap(int* const&, int*) = -0.021026 0.229423 0.143580 0.026343 0.253999 0.036877 0.139132 0.064413 -0.154146 -0.272016 -0.112143 -0.274298 -0.407604 0.336218 0.019496 0.196591 0.560619 0.190063 0.070254 -0.169906 0.142008 -0.467798 0.541630 0.524271 -0.415006 0.168068 0.206609 0.153091 0.000000 0.375869 -0.202960 -0.296722 0.266132 -0.263466 0.205522 -0.332598 -0.065749 -0.055440 -0.037340 -0.794364 -0.067845 0.116022 0.104225 0.001183 -0.015652 0.331609 0.580898 0.279575 -0.089073 0.333787 0.110393 -0.147710 0.229184 0.122296 0.125171 0.177097 0.174500 -0.088139 -0.308130 0.126289 -0.050886 -0.700611 -0.047218 0.275307 0.464100 -0.113898 -0.081196 0.146598 -0.179552 0.029080 0.001329 0.224828 0.179276 0.067055 0.305662 -0.443972 0.017777 -0.598917 -0.184541 -1.204490 -0.433937 -0.401424 0.301305 0.036218 0.280059 0.048464 0.545242 -0.012266 0.189446 0.047505 0.576857 -0.522332 -0.165666 -0.173945 0.074505 0.154400 -0.250828 -0.063970 0.283188 -0.181758 -0.323222 -0.372473 0.528961 0.044623 -0.242398 -0.154769 -0.136957 0.344144 -0.579007 -0.369070 -0.675838 -0.301042 -0.132315 -0.526052 0.336874 0.118510 0.261122 0.317762 -0.060845 -0.407062 0.145190 0.276923 -0.023420 -0.327765 -0.186244 0.443632 0.082450 -0.064079 0.258289 0.164323 0.142063 0.511622 0.577101 -0.060364 -0.144369 0.191016 -0.271159 0.012000 -0.171323 -0.210630 0.132581 -0.436577 -0.040820 0.131950 -0.272899 0.025669 0.207815 -0.117615 0.206952 0.590272 -0.037864 0.192442 0.099418 -0.445512 0.331389 -0.204195 -0.180870 0.138591 0.401055 0.277048 -0.394949 -0.242700 0.080251 0.479155 0.215089 -0.408361 -0.292924 -0.187983 0.158474 0.013375 0.150675 0.143282 0.165406 -0.257663 -0.001529 0.077637 0.747994 -0.362693 -0.191731 0.108883 -0.133918 -0.114938 -0.728828 -0.074654 -0.273697 -0.107701 -0.195164 -0.026569 -0.005693 0.422056 -0.680916 0.407936 -0.329729 -0.256088 0.357264 -0.006861 -0.087510 -0.621210 0.114086 0.338393 0.435591 0.094532 0.089955 -0.078246 -0.424235 -0.060009 -0.024029 0.216105 -0.200758 0.355629 -0.064471 -0.363999 -0.262036 -0.133086 0.098844 -0.261911 -0.005939 0.175616 0.391982 -0.770444 0.388855 -0.119204 -0.278643 0.214109 0.102103 0.217649 -0.397861 -0.495405 0.182544 -0.159628 -0.289342 -0.184493 -0.124864 0.180174 -0.041944 -0.360903 -0.059231 -0.391131 0.341919 -0.019727 0.185225 0.279645 0.120691 0.554125 0.240180 -0.430143 -0.184782 0.006947 -0.151980 -0.455270 -0.027591 -0.206511 -0.208472 0.328361 0.701850 0.148089 0.089489 -0.058120 0.427903 -0.514781 -0.231077 0.390332 0.275691 -0.035687 0.246791 0.374775 -0.342687 -0.236085 -0.257465 -0.058228 0.069695 -0.262429 0.140051 -0.517620 -0.054271 0.319252 -0.145268 -0.161875 0.260374 -0.043619 -0.009149 -0.256590 0.489410 0.571330 -0.466596 0.121280 -0.256957 0.137005 -0.515404 -0.217183 -0.051278 0.398899 -0.151924 -0.008349 0.223495 0.104053 0.045889 -0.277740 -0.173822 -0.228759 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base(int*) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int*, int*, int*) = -0.666518 -0.159080 -0.215766 -1.341699 1.288899 0.664068 0.536984 -0.511740 -1.359700 -1.122059 0.250091 -2.365016 -1.598305 1.526054 -0.496943 1.225113 2.809199 0.107712 -0.240407 -0.962181 1.124024 -0.353110 2.939246 3.088305 -2.088301 0.198759 0.475170 1.046061 0.105318 -0.078235 0.335471 -1.867676 0.550758 -1.389177 0.595896 -0.765185 -0.466314 0.193149 1.242762 -3.466996 -0.259038 0.627585 -0.020770 0.121228 0.035090 0.974582 2.252398 1.621490 -0.688798 1.568497 1.596623 0.045493 0.913317 0.173169 0.018097 0.037568 -0.097616 -0.238099 -0.455457 -0.125581 -0.432415 -0.754362 0.176091 1.941608 2.353522 -0.306459 -1.134708 0.733268 0.588235 0.366615 0.369323 1.753208 0.333516 0.599479 1.560815 -2.440515 -0.308674 -4.379039 0.315138 -4.574395 -2.026951 -0.612795 1.550186 0.503083 1.034521 -0.004045 3.227847 -0.296759 -0.144820 1.892507 2.303295 -1.636966 -0.579545 -0.850942 -0.744806 0.405982 -0.820224 0.348494 0.786277 0.866469 -1.836618 -1.218530 0.776298 -0.108439 -1.233974 -1.512344 -0.078112 1.162816 -1.645690 -1.233640 -2.058526 1.176529 0.175556 -3.228170 -0.399553 -0.693236 0.862174 0.574901 -1.236489 -1.615864 0.582763 0.346546 -0.776520 -0.643506 -0.561508 1.496543 1.542803 0.221677 0.534969 1.195750 0.813845 3.051036 1.105586 -1.075796 -0.501860 0.810571 -0.626233 0.440971 -1.060726 -0.448557 1.054526 -1.867377 0.709794 0.798196 -1.229969 -0.863462 1.096632 -0.774601 0.216471 5.726770 -0.549450 2.034170 1.668249 -1.691649 1.190696 -1.081128 -0.026821 0.712124 1.572775 1.232807 -2.261790 -1.463647 1.521721 2.835856 1.069554 -2.145477 -0.637951 0.797947 0.631956 -0.491789 0.873136 0.470181 0.482527 -0.925022 -0.041603 1.394234 3.700756 -0.859414 -0.463700 0.274609 1.891231 0.032975 -2.130488 -0.388233 -2.206574 -0.391465 1.103192 0.744360 0.830703 2.342581 -3.926915 1.468321 -0.137094 0.166808 1.347491 0.916941 -1.399502 -3.093021 -0.033345 1.116636 1.795516 -0.275398 0.743395 -0.047252 -2.124866 0.080274 0.558065 0.741183 -1.491820 2.040399 -0.407960 -1.212300 -0.660911 -0.039122 -0.855812 -0.656956 -0.503569 1.411510 1.009843 -3.267358 1.814925 -0.042181 -1.262676 0.308355 -0.864337 2.269269 -1.868858 -1.920491 1.336256 -1.010298 -1.087302 -0.481345 -0.550736 0.747482 0.371783 0.341352 -1.459704 -1.974057 2.214982 -0.087444 2.256144 1.295728 -0.275030 1.842614 -0.995973 -1.365234 -1.069740 -1.385295 0.361627 -0.151604 -1.178767 -1.082032 -0.733727 1.396575 2.319085 -0.203803 -0.834043 -0.166129 1.807957 -2.359245 -0.194598 0.883617 1.026603 -1.126714 1.158559 1.249217 -1.685325 0.075641 -1.889547 0.334454 -0.930375 -1.289775 1.260713 -1.315127 0.287161 0.740343 -0.669441 -0.066666 1.062770 0.685138 0.170229 0.039642 2.440214 2.322452 -0.736418 -0.146984 -2.424773 1.067447 -2.454523 -1.987130 0.132500 0.374941 -1.094110 -0.511870 0.072710 1.509019 0.639732 -0.970360 -1.424905 0.564664 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__copy_move::__assign_one(int*, int*) = -0.090190 0.218924 0.235656 -0.163105 0.393105 0.170885 0.176284 -0.067790 -0.296107 -0.315968 -0.059986 -0.359373 -0.475041 0.517957 -0.067388 0.296524 0.813360 0.191314 0.014134 -0.316629 0.368958 -0.526581 0.827585 0.818562 -0.686778 0.171727 0.422292 0.282028 0.190728 0.391935 -0.263101 -0.347401 0.334840 -0.481391 0.220009 -0.492526 -0.072739 -0.068857 0.134980 -1.096365 -0.076070 -0.072919 -0.090288 0.018544 -0.039390 0.524252 0.776368 0.444477 -0.235531 0.480233 0.355735 -0.104579 0.188454 0.130495 0.127359 0.207443 0.294718 0.118995 -0.261938 0.097217 -0.062137 -0.763440 0.028003 0.503057 0.720502 -0.140591 -0.119687 0.268225 -0.096215 0.037629 0.049283 0.348709 0.198809 0.151603 0.479405 -0.880567 -0.006051 -1.233347 -0.208832 -1.688160 -0.571961 -0.454639 0.356014 -0.238759 0.400821 0.164581 0.804904 0.024332 0.155354 0.248305 0.791860 -0.717989 -0.196479 -0.239353 -0.084171 0.196505 -0.350478 0.044451 0.332485 -0.170090 -0.468241 -0.595852 0.628266 0.091331 -0.365997 -0.338389 -0.154445 0.498946 -0.748924 -0.493517 -0.779287 -0.228038 -0.199760 -0.847009 0.253439 -0.064669 0.694524 0.296690 -0.122482 -0.613800 0.147500 0.448352 -0.081927 -0.462473 -0.027074 0.562178 0.318487 0.009828 0.245047 0.139163 0.211126 0.801148 0.800510 -0.176388 -0.194046 0.217295 -0.392180 0.047255 -0.344429 -0.200196 0.324989 -0.565507 0.049862 0.299434 -0.368276 -0.083933 0.701311 -0.183193 0.249105 1.371534 -0.041286 0.380821 0.246366 -0.644089 0.306047 -0.286418 -0.178459 0.306396 0.538350 0.353504 -0.823488 -0.393386 0.189866 0.717185 0.318595 -0.777536 -0.456406 -0.178774 0.118946 -0.020590 0.171295 0.145038 0.117926 -0.339760 -0.041372 0.233746 1.103631 -0.500823 -0.376379 0.125133 -0.022346 -0.221237 -0.999777 -0.122250 -0.389116 -0.067172 -0.042784 -0.004498 0.145572 0.643889 -1.277495 0.522903 -0.400169 -0.291367 0.447938 0.144970 -0.238509 -0.823469 0.182305 0.444430 0.580463 0.114724 0.138529 0.008183 -0.641474 -0.055171 0.028763 0.257602 -0.336294 0.511395 0.045300 -0.519102 -0.381341 -0.066672 0.080034 -0.316588 -0.007881 0.311543 0.200489 -1.316301 0.571700 -0.156593 -0.373681 0.291658 -0.030174 0.470696 -0.603998 -0.713143 0.342553 -0.145758 -0.279428 -0.300020 -0.146745 0.324604 0.010945 -0.209315 -0.272001 -0.692972 0.416871 -0.129985 0.342929 0.390023 0.136791 0.831412 -0.092398 -0.471579 -0.482556 -0.015972 -0.012890 -0.364428 -0.206920 -0.387657 -0.258353 0.483161 0.913311 0.090977 0.046797 -0.056981 0.624975 -0.876094 -0.256955 0.439286 0.698608 -0.205245 0.347792 0.457559 -0.516092 -0.246100 -0.347961 -0.161806 0.015087 -0.405074 0.321875 -0.558791 0.044381 0.358901 -0.092936 -0.145527 0.406578 -0.017561 0.100873 -0.223607 0.650128 1.107419 -0.636399 0.000854 -0.476498 0.276685 -0.774843 -0.490914 0.025183 0.359296 -0.211563 -0.023593 0.174835 0.318423 0.126126 -0.332907 -0.192777 -0.183829 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_iter >::_Iter_comp_iter(std::greater) = -0.033328 0.323643 0.134904 0.011630 0.359738 0.269451 0.142538 -0.002099 -0.126803 -0.241128 -0.116106 -0.392827 -0.456404 0.372895 -0.033840 0.193283 0.541965 0.110540 0.047516 -0.028795 0.077515 -0.203517 0.555257 0.452260 -0.345006 0.146886 0.141195 0.030365 -0.223772 0.484546 -0.262452 -0.570639 0.280154 -0.130615 0.094939 -0.174574 -0.094190 -0.148214 -0.004625 -0.670580 -0.047845 0.228392 -0.013110 -0.053443 -0.020448 0.060403 0.673559 0.263966 0.022031 0.210992 0.027451 0.000000 0.160339 0.129991 0.211678 0.151970 0.152532 -0.225999 -0.343938 0.037700 -0.118835 -0.472346 -0.208651 0.288378 0.396141 -0.026835 -0.086440 0.082179 -0.301549 0.030794 -0.074744 0.201183 0.235001 0.208070 0.204996 -0.132983 -0.022496 -0.282496 -0.195059 -0.807368 -0.398577 -0.349081 0.172867 0.272639 0.291586 -0.080625 0.522154 -0.048964 0.169485 0.016441 0.682879 -0.531707 -0.173693 -0.180900 0.049048 0.060892 -0.216908 -0.027186 0.084628 -0.253660 -0.363199 -0.388766 0.370408 0.060531 -0.189105 -0.113864 -0.087905 0.316337 -0.524364 -0.288311 -0.603684 -0.247191 -0.112395 -0.556960 0.054624 0.218929 0.050776 0.313634 -0.139456 -0.484504 0.228599 0.290191 -0.079130 -0.354675 -0.114516 0.405323 0.096142 -0.033966 0.237701 0.127236 0.221000 0.573657 0.449487 -0.037574 -0.061647 0.046194 -0.125518 0.014483 -0.053847 -0.143684 -0.170947 -0.407231 0.038449 0.269767 -0.270649 0.074028 -0.191947 -0.153089 0.200301 0.605560 -0.171656 0.219463 0.027647 -0.551140 0.286701 -0.258498 -0.263719 -0.064327 0.310987 0.366458 -0.264388 -0.230464 0.246643 0.478123 0.224928 -0.306771 -0.020264 -0.154846 0.148619 -0.087389 0.185716 0.170133 0.176156 -0.292100 -0.050016 0.149753 0.810364 -0.351723 -0.331394 0.214799 -0.088066 0.102314 -0.397257 -0.087254 -0.212941 -0.079491 0.002443 -0.065494 0.025423 0.449305 -0.554166 0.405340 -0.231523 -0.349894 0.388328 -0.005974 -0.105803 -0.212200 0.080280 0.453228 0.395666 0.155495 0.108128 -0.210998 -0.379606 -0.077401 0.003649 0.230290 -0.177735 0.314769 -0.019262 -0.486614 -0.308346 -0.235077 0.070927 -0.289524 -0.157147 0.153138 0.407859 -0.774641 0.509046 0.055732 -0.187178 0.112542 0.054557 0.236513 -0.348334 -0.549442 0.188087 -0.280529 -0.279672 0.038824 -0.119936 0.114249 0.098996 -0.153557 -0.099991 -0.364351 0.360705 0.182349 0.272621 0.239334 0.221755 0.439590 0.229061 -0.413964 -0.087718 -0.219157 0.105541 -0.365312 -0.090948 -0.078468 -0.229080 0.364054 0.601111 0.109030 -0.062877 -0.261110 0.323809 -0.391238 -0.056280 0.411623 0.151401 -0.156401 0.058890 0.404006 -0.192763 -0.250548 -0.232686 0.017892 -0.144079 -0.336006 -0.019983 -0.462792 -0.079078 0.352871 -0.185032 -0.246720 0.143197 -0.045973 -0.049583 -0.178783 0.398072 0.288169 -0.416131 0.226404 -0.274607 0.167924 -0.520755 -0.334336 0.075851 0.189792 -0.187507 -0.102967 0.123015 0.066434 -0.055955 -0.143471 -0.144695 -0.211430 +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.579871 0.046406 0.573762 -1.295951 1.480020 0.911826 0.841048 0.059873 -2.207360 -1.901922 0.425018 -3.659874 -3.005150 2.850779 -0.453482 0.852299 3.940188 0.465422 -0.466252 -1.141778 1.166920 -0.805836 3.778448 4.240538 -2.964301 0.612223 -0.056877 1.028084 0.243113 1.200150 0.627990 -3.109944 0.810599 -0.738024 1.320998 -1.051662 -0.941166 0.226971 0.427175 -5.322725 -0.393711 2.690851 0.543786 -0.005803 0.586831 2.110623 3.506867 2.118409 -0.657527 2.278422 1.509839 -0.525833 1.687531 0.084772 0.712309 -0.447865 0.442345 -0.333534 -1.432110 0.547568 -0.709255 -1.998165 -0.526302 2.610365 3.382742 -0.473252 -1.565449 -0.076752 0.313691 0.871931 0.299858 2.282449 1.508923 0.867656 2.259990 -1.364920 -0.368417 -4.743346 0.688094 -7.005709 -2.890230 -0.887952 3.665256 1.913195 0.569204 -1.758900 4.294091 -0.438202 -0.441918 2.486984 3.983525 -1.726831 -0.922725 -1.218543 -0.777973 0.811220 -1.285970 0.249211 1.385594 0.438642 -2.756437 -1.417170 1.044126 -0.499451 -1.690844 -0.402158 -0.491262 2.221970 -2.944543 -0.915915 -3.057810 1.121230 0.995384 -4.455723 -0.494647 -0.534460 -0.165751 1.550713 -1.974337 -1.163409 1.293530 0.052742 -1.167895 -0.524539 -2.116579 3.259311 1.220287 0.340135 0.680781 2.007644 1.319495 2.808678 1.402054 -1.297541 -0.143271 1.081646 -0.535110 0.801444 -1.255866 -0.739469 1.456569 -2.192317 0.208033 0.174909 -1.781891 -0.784322 -0.643081 -0.758124 0.216540 7.076654 -0.925951 2.882226 1.789266 -2.215609 2.598423 -0.663838 -0.305481 0.703830 2.287085 2.013287 -2.364911 -1.818244 2.165074 4.165006 1.492051 -2.846645 -0.125773 0.867455 0.680940 -0.865788 2.113937 0.515529 1.114914 -1.596780 -0.209189 1.558991 4.979076 -1.449290 -2.069959 0.038266 1.751519 0.658203 -2.454243 0.036286 -1.785028 -0.427197 0.811890 0.548397 1.362148 3.222873 -5.569654 2.863920 0.006283 -0.528009 2.439469 0.429940 -1.747812 -4.221660 -0.223831 1.727268 2.928873 0.664470 -0.099157 -0.222284 -3.322151 -0.009695 0.572554 1.003842 -2.081820 2.995685 -0.869635 -1.307548 -1.203857 -1.484964 -1.089639 -0.828572 -1.503129 1.811294 2.141200 -4.569820 2.588897 0.163784 -1.592633 -0.498839 -0.353329 1.889885 -2.551319 -3.010990 0.935686 -1.828136 -3.420333 -1.296208 -1.266680 0.570530 0.483763 -0.181247 -1.629068 -3.099127 3.906077 -0.407065 3.356648 1.936140 -0.346320 2.967400 1.798400 -2.151599 -0.915874 -2.175794 1.474571 -1.143886 -1.168674 -0.849882 -1.333978 1.644332 3.170034 -0.033284 -1.133362 -1.472016 2.850561 -2.269189 -0.948999 1.589692 -0.263810 -0.794536 1.861161 2.104057 -2.245730 0.143192 -3.147035 -0.301119 -1.325041 -1.482177 1.526323 -1.980056 0.150122 0.975174 -1.112001 -0.900970 1.145570 0.528742 -0.996004 -0.072467 3.804586 3.063998 -1.955803 1.098040 -3.266585 2.078184 -3.278883 -2.316199 -0.245532 0.459318 -1.508486 -0.811855 0.220377 1.373596 1.232214 -1.998525 -2.246946 1.206253 +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.194832 0.270896 0.013421 -0.489100 0.602671 0.021828 0.239628 -0.095226 -0.291822 -0.697231 0.056850 -1.323407 -0.980495 0.350159 -0.252330 0.349434 1.185489 -0.170833 -0.007839 -0.505646 0.156748 0.117030 1.462368 1.306231 -1.022356 0.132046 0.219628 0.474398 0.098688 -0.291619 -0.081606 -0.766068 0.385189 -0.374706 0.263877 0.026578 -0.130884 -0.458536 0.265124 -1.313882 -0.102609 0.116073 -0.006776 0.046064 -0.054866 0.915206 1.348591 0.732515 -0.317714 0.419940 0.793570 -0.037315 0.405434 0.155396 -0.211375 -0.382840 0.172129 -0.335317 -0.387128 -0.286780 -0.078599 -0.646828 -0.167313 0.853396 0.930601 -0.099156 -0.465342 0.426841 0.316770 0.068226 0.078179 0.755793 0.515780 0.528785 0.753806 -0.724905 0.065709 -1.469262 -0.196459 -2.302494 -1.020700 -0.543238 0.714647 0.086810 0.385162 0.054749 1.369666 0.057190 0.311238 0.565817 1.063824 -0.861152 -0.361274 -0.336061 -0.064412 0.277121 -0.460657 0.311938 0.349243 0.378939 -0.850176 -0.226951 0.434844 -0.165531 -0.531598 -0.433589 0.055295 0.062604 -0.813693 -0.260652 -1.279695 0.070753 0.387447 -1.527958 0.023891 0.159992 0.771973 0.262446 -0.334308 -0.639750 0.091653 0.092393 -0.312458 -0.162621 -0.697467 0.719993 0.731894 0.183442 0.577241 0.606257 0.663225 1.378912 0.683033 -0.349607 -0.481526 0.165340 -0.486570 0.084751 -0.219724 -0.209350 0.557432 -0.853943 0.645348 0.460957 -0.552242 -0.425385 0.237478 -0.383478 0.274444 1.780957 -0.243976 0.847330 0.639755 -0.752066 0.291280 -0.898253 -0.287604 0.094023 0.527059 0.742766 -0.507897 -0.575036 0.716833 1.139462 0.453233 -0.998422 0.331769 0.513497 0.464497 -0.416415 0.237581 0.402883 0.514394 -0.525057 0.021623 0.898971 1.566187 -0.274189 -0.184644 0.231843 0.496357 0.411776 -0.704567 -0.202946 -0.433110 -0.181250 0.558020 0.501283 0.203378 1.052015 -1.508389 0.487614 0.126897 0.024016 0.688694 0.315065 -0.692686 -0.999958 0.222837 0.714769 0.585516 -0.025629 0.290834 -0.252148 -0.751767 -0.036951 0.263776 0.357515 -0.521552 0.729568 -0.008995 -0.600551 -0.409811 -0.475501 -0.083083 0.107613 -0.242388 0.569300 0.394839 -1.770344 1.021988 -0.150326 -0.777162 -0.164655 -0.721909 0.876865 -0.951908 -0.726981 0.441830 -0.840640 -0.729349 -0.302127 -0.109785 0.067228 0.080664 0.228504 -0.673715 -0.760208 1.193847 0.177086 0.847574 0.586722 0.124100 0.896173 -0.362410 -0.524243 -0.388550 -0.428404 0.084786 -0.324519 -0.694983 0.098614 -0.348656 0.534444 1.188538 -0.513076 -0.076181 0.074686 0.366824 -1.238286 -0.381485 0.446142 0.784891 -0.581539 0.755517 0.579253 -0.622199 -0.069891 -0.920804 -0.140881 -0.405092 -0.867752 0.303228 -0.771531 0.024066 0.762648 -0.423605 -0.181627 0.444824 -0.062524 -0.004394 -0.140041 0.963176 1.492915 -0.450246 0.080207 -1.158631 0.461945 -1.238721 -1.130959 0.471830 0.010660 -0.377504 -0.297967 0.150891 0.588323 0.047804 -0.691363 -0.810557 0.373810 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator+(long) const = -0.058365 0.757820 0.562359 -0.170220 0.811396 0.829967 0.277552 0.041863 -0.312152 -0.554914 -0.221110 -0.987830 -1.255756 0.870674 -0.133694 0.157822 1.323044 0.113004 0.028250 -0.223858 0.254715 -0.207607 1.398914 1.296946 -1.143715 0.341926 0.483955 0.303685 -0.140324 0.941726 -0.472184 -1.246879 0.461553 -0.134562 0.388773 -0.368505 -0.271474 -0.543609 -0.116964 -1.817476 -0.223950 0.582047 -0.397850 -0.027294 0.148955 0.486672 1.734346 0.686167 -0.215715 0.497174 0.322295 0.027940 0.412460 0.141951 0.310913 0.044109 0.517071 -0.129564 -0.604079 0.122172 -0.176214 -1.034525 -0.452445 0.891595 1.121609 -0.086577 -0.328920 0.048793 -0.342580 0.064762 -0.240007 0.701145 0.727797 0.732880 0.741546 -0.307860 -0.023878 -1.122913 -0.160775 -2.000223 -1.065179 -0.875560 0.648985 0.454883 0.484040 -0.439776 1.454492 -0.043885 0.377326 0.373251 1.644484 -1.075833 -0.305756 -0.524233 -0.123927 0.290379 -0.535644 0.154210 0.140125 -0.475503 -0.903213 -0.929654 0.666264 -0.024216 -0.618970 -0.113048 -0.293970 0.799910 -1.098168 -0.447141 -1.447780 -0.357297 -0.061131 -1.566433 -0.318779 0.274373 0.386387 0.655797 -0.310444 -0.917180 0.405247 0.579610 -0.236022 -0.651300 -0.324283 1.145435 0.573591 -0.099884 0.478751 0.407102 0.658172 1.176053 1.056073 -0.127575 -0.245045 0.205545 -0.346947 -0.003706 -0.300216 -0.057188 -0.029960 -0.782478 0.085682 0.625987 -0.619975 0.000966 -0.311318 -0.516261 0.433553 2.388690 -0.364579 0.639191 0.184695 -1.235187 0.734423 -0.445301 -0.641930 0.092748 0.749129 1.019904 -1.073126 -0.519082 0.610422 1.349757 0.481091 -1.029923 0.149328 -0.099053 0.160060 -0.490960 0.649985 0.309413 0.380208 -0.576881 -0.121653 0.629289 1.880245 -0.795379 -1.371940 0.276375 0.085774 0.289631 -0.809472 -0.044330 -0.282969 -0.210702 0.323290 -0.063963 0.318220 1.097798 -1.820223 0.927878 -0.190949 -0.768799 1.018001 0.029036 -0.358806 -0.434589 0.390636 1.049669 0.894133 0.448816 -0.036267 -0.478313 -1.062600 -0.118788 0.213117 0.524437 -0.592656 0.952880 -0.010817 -0.973345 -0.764403 -0.804217 0.020111 -0.508958 -0.632181 0.437571 0.451324 -2.153827 1.253978 0.091389 -0.534026 0.060235 -0.293740 0.598528 -0.993510 -1.360494 0.417094 -0.613187 -0.899178 -0.148494 -0.438113 0.297032 0.410979 0.009644 -0.647129 -1.173404 1.042986 0.240063 0.806092 0.698256 0.463043 1.252531 0.501976 -0.914475 -0.433123 -0.718469 0.783754 -0.439769 -0.431061 -0.352990 -0.613447 0.722142 1.505269 -0.084137 -0.131840 -0.855639 0.813160 -1.070996 -0.284858 0.725158 0.476913 -0.388181 0.294656 0.798475 -0.463433 -0.446562 -0.781573 -0.178847 -0.369132 -0.842462 0.176327 -1.112847 -0.124949 0.898796 -0.472774 -0.596572 0.426477 -0.151789 -0.154333 -0.282157 0.988636 1.201782 -1.114098 0.583471 -0.920798 0.715969 -1.352799 -0.922124 0.175712 -0.043514 -0.269835 -0.331987 0.161807 0.218760 0.085741 -0.517702 -0.453108 -0.159377 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.009347 0.369540 0.211218 -0.139034 0.352797 0.287771 0.081346 -0.065336 -0.127741 -0.230885 -0.123914 -0.311895 -0.379510 0.323258 -0.077721 0.092510 0.511799 0.039272 0.034378 -0.140017 0.133101 -0.128161 0.541099 0.489581 -0.466744 0.159975 0.300812 0.115540 -0.018656 0.412668 -0.221362 -0.484725 0.160070 -0.089173 0.133307 -0.212963 -0.096269 -0.191897 0.018449 -0.705978 -0.056443 0.041168 -0.140564 -0.007873 0.014070 0.124200 0.694828 0.257362 -0.105360 0.194561 0.199941 0.168603 0.086400 0.067370 0.124355 0.107412 0.269863 -0.126257 -0.148889 0.038259 -0.039692 -0.340684 -0.116006 0.376408 0.417669 -0.028589 -0.097873 0.083938 -0.150018 0.001634 -0.095535 0.251213 0.162735 0.305362 0.210428 -0.327106 0.033297 -0.575219 -0.078898 -0.847538 -0.383178 -0.355220 0.114027 0.117241 0.234078 0.050648 0.553992 -0.011250 0.195417 0.129565 0.606140 -0.432461 -0.086535 -0.164159 -0.114441 0.105246 -0.165780 0.051698 -0.067710 -0.132815 -0.306127 -0.423368 0.322915 0.026223 -0.253763 -0.113343 -0.089336 0.260309 -0.510966 -0.199619 -0.494384 -0.131001 -0.106648 -0.576357 -0.072330 0.022518 0.322911 0.157210 -0.077498 -0.471228 0.118784 0.320711 -0.102948 -0.267056 -0.122251 0.324474 0.247197 -0.039758 0.150628 0.033185 0.252683 0.529124 0.399846 -0.088698 -0.107034 0.067327 -0.114471 -0.076422 -0.137779 -0.020158 -0.046430 -0.322423 0.106884 0.307423 -0.228867 -0.047260 0.052424 -0.282703 0.193346 0.945974 -0.144234 0.218971 0.060366 -0.520709 0.110632 -0.202914 -0.283852 0.057247 0.284118 0.390953 -0.379085 -0.222929 0.197340 0.481010 0.187394 -0.332549 -0.064830 -0.080333 -0.017405 -0.067947 0.187981 0.051246 0.039638 -0.226427 -0.085428 0.196488 0.760773 -0.211892 -0.328068 0.118335 0.053904 -0.006853 -0.304007 -0.037107 -0.187498 -0.027942 0.132474 -0.063605 0.147302 0.423248 -0.850739 0.344049 -0.153669 -0.297781 0.250046 0.042107 -0.097328 -0.194664 0.175479 0.421349 0.354761 0.055803 0.154352 -0.159906 -0.392256 -0.065891 0.053531 0.207587 -0.279512 0.323261 0.125487 -0.488228 -0.291000 -0.136023 0.043012 -0.190570 -0.180533 0.151483 0.127336 -0.931281 0.509016 -0.001040 -0.152279 0.105566 -0.122452 0.288511 -0.383729 -0.481289 0.194614 -0.152870 -0.161766 0.035014 -0.150016 0.199128 0.067355 0.056122 -0.250187 -0.398108 0.244163 0.092456 0.223128 0.274496 0.217228 0.440160 -0.103854 -0.254356 -0.218992 -0.160049 0.222548 -0.160018 -0.134756 -0.061414 -0.246895 0.290922 0.617659 -0.013759 -0.069212 -0.152979 0.310431 -0.411727 -0.054448 0.242245 0.290965 -0.221241 0.088599 0.273056 -0.172968 -0.213629 -0.271371 -0.008451 -0.094165 -0.324220 0.101763 -0.388525 -0.038951 0.381496 -0.151714 -0.243780 0.240977 -0.069838 0.008390 -0.089363 0.328444 0.455397 -0.357213 0.168650 -0.307862 0.184963 -0.533348 -0.368462 0.042391 0.024572 -0.107501 -0.117464 -0.064001 0.157987 -0.009801 -0.011361 -0.063220 -0.112196 +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 >) = -1.484430 0.023553 1.222505 -3.551873 3.408275 2.802914 1.805711 -1.590333 -4.684523 -3.057965 1.537384 -8.554152 -6.243722 6.227366 -1.463763 2.125770 8.283587 0.012609 -1.778012 -2.983769 2.774431 -0.203687 8.813185 9.579963 -6.759701 1.168316 0.260051 1.932076 1.423383 1.251007 0.938307 -5.725929 1.798796 -1.894563 2.305061 -1.248629 -2.201877 -0.330802 2.283100 -10.924227 -0.889620 4.296557 0.564850 0.042821 1.141279 5.817465 7.802072 4.789939 -1.052558 4.510075 3.780905 -1.001020 3.463073 -0.020932 1.730059 -1.714373 2.512482 0.445285 -2.349033 0.425259 -1.384867 -2.448224 -1.243381 6.349567 7.571662 -0.504728 -3.677151 0.318443 1.859226 1.668824 0.476324 5.389651 3.172142 3.151231 4.643941 -3.684917 0.116606 -10.753002 1.402565 -14.131206 -6.115519 -1.101476 7.031190 2.145486 1.484589 -3.340325 9.530263 0.116591 -1.697918 5.138184 8.871517 -4.081917 -1.765901 -1.794157 -2.157065 1.229851 -2.518136 2.113450 3.319865 1.269562 -6.208540 -2.841937 1.766940 -1.038371 -3.829661 -0.704832 -0.499743 4.324632 -5.046045 -1.390625 -5.146665 2.670265 1.999026 -10.344129 -1.817938 -1.921550 0.838650 2.482532 -4.453606 -2.990273 2.441725 0.098636 -2.803815 -1.119763 -4.058675 6.535276 4.112298 1.351788 0.863133 4.428235 3.453941 6.837586 2.068969 -3.205165 -0.028514 1.508518 -1.063443 2.162139 -2.564218 -1.133040 3.565525 -4.369229 1.464584 1.013206 -3.604005 -1.495927 0.274884 -1.387889 -0.117986 16.852853 -2.248409 6.965089 4.303261 -5.025251 4.216275 -2.252954 -0.541261 1.566035 4.513173 4.355649 -6.025505 -4.268871 5.552557 9.412119 3.108138 -7.252625 0.565341 2.727213 0.582822 -2.789409 4.560119 0.866782 2.041637 -3.026320 -0.643194 4.292052 11.188981 -3.398532 -4.468294 0.071007 3.858555 2.227598 -4.543063 -0.107593 -3.310834 -0.420517 2.243034 1.980976 3.576435 7.038632 -12.790013 5.955776 0.540510 -1.127419 5.981278 1.613036 -4.727338 -7.628230 -0.306871 3.821178 5.514650 1.305855 -1.074245 -0.312582 -7.327641 0.068238 1.433029 1.624540 -4.755747 6.367861 -0.795843 -2.735418 -2.537285 -2.835286 -1.930961 -1.273663 -3.477952 4.340904 2.863687 -10.849992 5.960826 0.939691 -3.488071 -1.634967 -2.226081 4.334900 -5.483982 -5.985659 1.862902 -4.290990 -6.539827 -2.999470 -2.651209 0.931125 1.157310 2.168882 -5.175880 -6.449236 8.299668 -1.476769 7.684756 4.232448 -0.593354 5.938071 1.590215 -4.316787 -2.583197 -5.051702 4.013122 -0.625742 -3.765902 -0.549336 -2.787757 3.585213 6.222209 -0.926838 -2.859183 -3.051560 5.377591 -5.478451 -1.864737 2.721856 0.942879 -3.022237 3.693098 3.921483 -4.293651 1.103441 -6.400511 -2.301426 -3.914005 -3.647038 3.692494 -3.085488 0.714951 1.521222 -2.350060 -1.174967 2.790535 0.777123 -1.552427 1.016107 7.556993 7.867700 -4.100378 1.444727 -7.910168 5.267240 -7.133029 -6.101065 0.881491 -0.298559 -3.406889 -2.397227 -0.203898 3.549847 2.871727 -4.961261 -5.045592 3.655513 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.029926 0.494486 0.378886 -0.197174 0.498471 0.347330 0.162012 -0.026577 -0.232956 -0.344459 -0.184549 -0.450631 -0.616825 0.543822 -0.063733 0.175188 0.896555 0.146310 0.023243 -0.264181 0.313904 -0.429651 0.874091 0.845503 -0.782658 0.243146 0.502972 0.268329 0.098859 0.605090 -0.401182 -0.545146 0.276310 -0.304778 0.310829 -0.450974 -0.127563 -0.272244 0.004923 -1.230069 -0.097031 0.048060 -0.154749 -0.015260 0.005235 0.427923 1.073529 0.447932 -0.241203 0.318597 0.324804 0.023992 0.195998 0.116499 0.189771 0.225163 0.456189 0.081158 -0.294778 0.099127 -0.059927 -0.747482 -0.062394 0.589850 0.737681 -0.084451 -0.147072 0.196772 -0.136551 -0.002770 -0.103851 0.398042 0.296532 0.360663 0.461222 -0.728332 0.071524 -1.111227 -0.159400 -1.622031 -0.654399 -0.615548 0.283222 -0.081048 0.404778 0.030175 0.905907 -0.024965 0.318093 0.197288 0.972058 -0.758831 -0.177006 -0.350814 -0.143048 0.213087 -0.323600 0.030489 0.211531 -0.295820 -0.518927 -0.671961 0.637274 0.081388 -0.422649 -0.193324 -0.167307 0.517517 -0.763615 -0.428039 -0.898783 -0.302699 -0.196847 -0.957079 0.108964 0.003552 0.572943 0.310800 -0.109528 -0.750071 0.170331 0.549908 -0.142864 -0.482214 -0.164362 0.689820 0.375485 -0.073745 0.285914 0.106268 0.347247 0.790278 0.845734 -0.146380 -0.205199 0.187392 -0.386858 -0.094896 -0.317864 -0.129104 0.193098 -0.556245 0.002146 0.421226 -0.398009 0.006814 0.426796 -0.338103 0.338597 1.627483 -0.158777 0.359897 0.112454 -0.795679 0.404682 -0.243356 -0.400695 0.192696 0.542967 0.570625 -0.906937 -0.391698 0.244576 0.802519 0.328272 -0.727983 -0.283090 -0.214168 0.011734 -0.089885 0.258522 0.119260 0.120955 -0.374961 -0.102406 0.299969 1.256486 -0.499178 -0.652313 0.160476 -0.030080 -0.122139 -0.867045 -0.086542 -0.355052 -0.081540 -0.004445 -0.086428 0.238673 0.709896 -1.399585 0.600081 -0.354138 -0.500592 0.574014 0.035798 -0.169826 -0.633590 0.283715 0.646044 0.633686 0.139922 0.068569 -0.186195 -0.679419 -0.091733 0.058077 0.344692 -0.408917 0.557355 0.082502 -0.677377 -0.469204 -0.258571 0.072659 -0.348596 -0.184031 0.268469 0.171193 -1.458194 0.787671 -0.072805 -0.308781 0.246962 -0.137932 0.383239 -0.665694 -0.826749 0.316644 -0.158645 -0.300977 -0.177522 -0.228120 0.361729 0.079990 -0.120810 -0.397324 -0.809625 0.456435 -0.017853 0.389814 0.457002 0.297772 0.854801 0.097133 -0.482783 -0.469219 -0.156375 0.151766 -0.302336 -0.243288 -0.362138 -0.378016 0.505099 1.047417 -0.005634 0.059975 -0.257612 0.599250 -0.829577 -0.242337 0.449983 0.522470 -0.288653 0.215721 0.491270 -0.410075 -0.367433 -0.441141 -0.165784 -0.052738 -0.509557 0.218817 -0.694396 -0.047452 0.569521 -0.232229 -0.291005 0.404012 -0.092682 0.035049 -0.215304 0.634493 1.007762 -0.708432 0.168686 -0.513535 0.357981 -0.890795 -0.545320 0.047705 0.195250 -0.180496 -0.116472 0.148850 0.259725 0.033807 -0.236628 -0.147450 -0.235251 +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.081035 0.751137 0.778132 -0.214344 0.558987 0.354838 0.190308 0.276674 -0.283208 -0.674654 -0.168989 -1.166627 -1.289619 0.688221 -0.100214 -0.280949 1.057198 0.024225 -0.014741 -0.241720 -0.049905 -0.208442 1.049045 1.093162 -1.052797 0.369536 0.163631 0.416485 0.012679 0.853372 -0.222238 -1.014668 0.104579 0.461028 0.651891 -0.107358 -0.269567 -0.613685 -0.596152 -1.624276 -0.222029 1.033058 0.053773 -0.023230 0.316534 0.719017 1.600218 0.538113 -0.223739 0.242654 0.300672 -0.084041 0.553533 0.026066 0.260506 -0.392798 0.800981 -0.252124 -0.632878 0.247717 -0.059386 -1.058109 -0.466407 0.805077 0.966251 -0.056927 -0.327203 -0.303498 -0.111562 0.127483 -0.224381 0.626539 0.730027 0.750274 0.629295 0.287755 0.302239 -0.723113 0.129560 -1.917879 -1.000431 -0.773818 1.039033 0.849613 -0.023922 -0.725021 1.239787 0.037992 0.392332 0.279649 1.427883 -0.507074 -0.268138 -0.460756 -0.204033 0.442559 -0.421472 0.087607 0.151388 -0.138427 -0.754903 -0.324691 0.502579 -0.253528 -0.564336 0.563186 -0.282990 0.595176 -0.938881 0.040510 -1.220003 -0.291046 0.411868 -1.337637 -0.173990 0.227968 -0.082680 0.562620 -0.247624 -0.263965 0.289493 0.134511 -0.287624 -0.010434 -1.343019 1.216538 0.296761 -0.095500 0.412827 0.509862 0.712684 0.383380 0.577897 -0.138631 -0.212384 0.198194 -0.271618 -0.060182 -0.188195 -0.034784 0.189927 -0.475752 -0.082990 0.107077 -0.510297 -0.064165 -1.063341 -0.462971 0.360767 1.726623 -0.320908 0.568985 0.063704 -0.849501 0.878555 -0.092118 -0.646727 0.002115 0.591756 0.946356 -0.445526 -0.387603 0.516958 1.197500 0.353691 -0.639682 0.476885 0.139343 -0.000498 -0.451418 0.764599 0.200340 0.321086 -0.437941 -0.143500 0.542409 1.319287 -0.321044 -1.407535 0.058156 0.046782 0.425979 -0.389974 0.195425 0.147266 -0.147838 -0.027264 -0.036527 0.376993 0.896509 -1.738784 0.895725 0.216059 -0.592081 1.070625 -0.357119 -0.273968 -0.715838 0.368048 0.895405 0.759963 0.391631 -0.404677 -0.481918 -0.882414 -0.114647 0.165924 0.430734 -0.564131 0.812970 -0.162671 -0.593919 -0.651077 -1.219332 -0.055235 -0.077014 -0.840137 0.320503 0.506794 -1.646732 1.104888 0.027668 -0.444302 -0.388695 -0.357685 0.044322 -0.884221 -1.009608 -0.035956 -0.704498 -1.291513 -0.395824 -0.519207 0.060306 0.133962 -0.120540 -0.547420 -0.805586 1.142894 -0.016699 0.691590 0.651559 0.348002 0.970258 1.432344 -0.668875 -0.099889 -0.515687 0.724979 -0.553379 -0.303349 0.178497 -0.602894 0.346856 1.242667 -0.255923 0.032819 -0.736580 0.600288 -0.393154 -0.639391 0.501016 -0.501619 -0.164708 0.484758 0.600125 -0.344693 -0.292779 -1.027172 -0.367039 -0.273109 -0.657342 0.132371 -0.929231 -0.220364 0.868418 -0.572378 -0.716859 0.342013 -0.259781 -0.456781 -0.200541 0.983529 0.886147 -0.897275 0.913352 -0.879108 0.691811 -1.122051 -0.632764 0.031589 -0.142517 -0.144204 -0.337341 0.118094 0.006631 0.155022 -0.571569 -0.554135 0.239556 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter >&&) = -0.009234 0.526606 0.362485 -0.150938 0.520604 0.473952 0.154680 -0.028792 -0.200778 -0.274704 -0.185992 -0.544908 -0.613596 0.510668 -0.061732 0.150215 0.784960 0.091951 0.003275 -0.099853 0.160026 -0.203766 0.772585 0.703645 -0.617469 0.243487 0.309636 0.139161 -0.146179 0.702461 -0.443179 -0.712080 0.233117 -0.108923 0.216973 -0.267198 -0.174414 -0.309417 -0.013916 -1.047365 -0.075444 0.270714 -0.125794 -0.061858 0.042312 0.154299 1.050867 0.370698 -0.077441 0.203983 0.157725 0.073941 0.207463 0.107773 0.286071 0.202363 0.459953 -0.093537 -0.344425 0.055764 -0.110607 -0.537544 -0.206927 0.505972 0.592321 -0.013474 -0.171390 0.054349 -0.222786 -0.007563 -0.154790 0.352601 0.305225 0.423064 0.312867 -0.287003 0.109683 -0.588971 -0.117233 -1.074310 -0.592641 -0.507160 0.222672 0.253257 0.360302 -0.157565 0.805188 -0.096404 0.276459 0.060901 0.949162 -0.681975 -0.167583 -0.292120 -0.110589 0.116737 -0.242696 0.000252 0.047311 -0.333538 -0.499659 -0.561923 0.500807 0.065533 -0.345764 -0.021910 -0.116564 0.441269 -0.642184 -0.327118 -0.773541 -0.247848 -0.140970 -0.846652 -0.076665 0.130108 0.177671 0.321227 -0.181211 -0.703722 0.248452 0.442934 -0.179239 -0.417711 -0.245249 0.642300 0.290195 -0.077255 0.263787 0.097517 0.374105 0.701648 0.610330 -0.107948 -0.099459 0.088018 -0.213563 -0.072557 -0.156182 -0.090332 -0.137483 -0.476618 -0.003345 0.417183 -0.363900 0.133659 -0.124404 -0.282843 0.270820 1.356803 -0.263131 0.340910 0.026350 -0.774656 0.432803 -0.220097 -0.435593 -0.014850 0.417538 0.598172 -0.667796 -0.325458 0.336748 0.733425 0.297749 -0.517480 0.002016 -0.161417 0.019922 -0.139681 0.319149 0.122157 0.172142 -0.374311 -0.119721 0.265965 1.192609 -0.424350 -0.732032 0.217497 -0.069713 0.080866 -0.513917 -0.066730 -0.265538 -0.081699 0.048402 -0.113067 0.211556 0.642017 -1.087861 0.574236 -0.247350 -0.573464 0.640095 -0.040253 -0.142601 -0.254131 0.184021 0.651493 0.572076 0.184495 0.017318 -0.297832 -0.574151 -0.103905 0.052420 0.311456 -0.361635 0.493930 0.068807 -0.694536 -0.415586 -0.409508 0.054338 -0.345744 -0.336658 0.217107 0.261174 -1.221674 0.771168 0.111592 -0.209796 0.137799 -0.114249 0.267004 -0.528883 -0.759436 0.240951 -0.258397 -0.317651 0.012112 -0.234469 0.229049 0.165386 -0.024298 -0.372208 -0.662485 0.468937 0.142702 0.427125 0.398992 0.311658 0.614172 0.327301 -0.458638 -0.247462 -0.316878 0.291181 -0.268834 -0.207642 -0.188796 -0.396625 0.460955 0.866146 0.004971 -0.024708 -0.450820 0.461477 -0.552451 -0.097527 0.439352 0.175614 -0.304683 0.039870 0.480713 -0.227701 -0.326836 -0.398236 -0.108365 -0.210465 -0.469127 0.072129 -0.606180 -0.097971 0.542957 -0.296562 -0.362949 0.249478 -0.106334 -0.077158 -0.152240 0.545931 0.556192 -0.567781 0.328786 -0.450110 0.346431 -0.769025 -0.488580 0.093882 0.047049 -0.238202 -0.193839 0.108701 0.157772 -0.040819 -0.143269 -0.134748 -0.200296 +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.746624 0.521543 1.600526 -1.850822 1.905154 1.084671 0.974073 -0.308980 -2.416178 -2.374704 0.441285 -4.669185 -3.880605 3.393199 -0.686645 0.813575 4.799182 0.227534 -0.627812 -1.777276 1.412047 -1.126718 4.788262 5.367634 -3.989214 0.788642 0.419290 1.531577 0.780305 1.425222 0.114884 -3.355276 0.853687 -0.801468 1.927001 -0.982627 -1.236138 -0.225667 0.471991 -6.516398 -0.554210 2.594374 0.282254 0.085530 0.699766 3.237415 4.844327 2.556020 -0.779945 2.393135 2.042318 -0.934472 2.106518 0.003356 1.021396 -0.779691 1.649912 0.123341 -1.642372 0.628277 -0.872594 -2.462442 -0.534441 3.451033 4.152378 -0.439514 -1.973974 -0.043873 0.727047 0.891341 -0.035357 2.996761 2.030219 1.779311 2.806536 -2.377364 0.330871 -6.220002 0.713920 -8.499929 -3.788477 -1.284007 4.028574 1.692405 0.763162 -2.176871 5.391565 -0.178749 -0.414019 2.451918 5.272407 -2.408487 -0.972265 -1.367578 -0.936768 0.737917 -1.438763 0.695576 1.624132 0.372725 -3.438086 -1.634327 1.728356 -0.690981 -2.149532 0.080395 -0.608304 2.608657 -3.388824 -0.929807 -3.931127 0.828547 1.322595 -5.769747 -0.052672 -0.653825 0.631146 1.737106 -2.368038 -1.753820 1.469184 0.455107 -1.473169 -0.651632 -3.082109 4.599866 2.072386 0.340188 0.827289 2.480385 1.922427 3.334519 2.039642 -1.523236 -0.341986 1.100772 -1.204579 0.707957 -1.442197 -0.651322 2.075766 -2.465563 0.014653 0.515585 -2.102399 -0.572411 -0.050018 -0.966416 0.324652 9.478394 -1.378151 3.566029 1.976024 -2.777422 3.419659 -0.863352 -0.648609 0.766362 2.563861 2.879595 -4.076209 -2.328668 2.924625 5.149923 1.728238 -4.123688 -0.078581 1.036265 0.564528 -1.299273 2.631305 0.561901 1.388335 -1.919029 -0.322078 2.124272 6.516061 -2.074120 -3.366405 0.066616 1.203598 1.116797 -3.512338 -0.023309 -1.676548 -0.535518 0.744388 0.891421 1.862526 4.052198 -7.534929 3.497393 0.106729 -1.262786 3.765102 0.236588 -2.167267 -5.234924 -0.004366 2.503455 3.315763 1.005771 -0.596992 -0.515261 -4.160893 0.018705 0.675809 1.342629 -2.823568 3.704213 -0.729162 -1.873832 -1.621484 -2.374675 -1.241021 -0.802454 -2.061528 2.206058 1.905232 -6.479743 3.598901 0.390866 -1.885955 -0.621980 -0.966418 2.129652 -3.183112 -3.682450 0.949015 -2.346073 -4.074754 -1.957128 -1.501344 0.402673 0.269575 -0.049842 -2.646039 -4.149343 4.662114 -0.822581 4.121947 2.442381 -0.009985 3.817621 2.616299 -2.528903 -1.360623 -2.370075 2.058496 -0.950478 -1.810053 -1.218464 -1.663097 1.946756 4.074874 -0.529583 -0.816309 -1.935766 3.197643 -3.396293 -1.505972 1.815532 0.013423 -1.376328 2.050290 2.471878 -2.384158 0.068947 -4.032069 -1.391105 -1.900471 -2.091018 1.780075 -2.439835 0.021766 1.464753 -1.613529 -1.200403 1.554066 0.346134 -1.175024 0.062003 4.564453 5.050537 -2.629601 1.113712 -4.217657 2.844653 -4.174202 -3.125896 0.141709 0.390761 -1.659229 -1.327013 0.451948 1.831189 1.447842 -2.868898 -2.556056 1.557454 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::greater::operator()(int const&, int const&) const = -0.171616 0.285102 0.085069 -0.223197 0.598656 0.390703 0.262288 -0.233097 -0.394900 -0.451887 0.041636 -0.689384 -0.747833 0.761721 -0.110717 0.490311 1.095799 0.083628 -0.018663 -0.418173 0.569364 -0.431027 1.230978 1.112902 -0.951600 0.210147 0.657284 0.297963 0.231521 0.315332 -0.116994 -0.696701 0.514474 -0.718280 0.190355 -0.435893 -0.151904 -0.180781 0.422666 -1.421126 -0.149192 -0.003051 -0.184856 0.012354 -0.091241 0.466782 1.074448 0.655462 -0.307249 0.710484 0.563066 -0.095681 0.236379 0.151114 0.183739 0.122103 0.273277 0.131738 -0.325348 0.013527 -0.123185 -0.764941 -0.115878 0.756691 1.024564 -0.186171 -0.251033 0.481990 -0.145550 0.148773 0.019707 0.590262 0.253689 0.332087 0.738453 -1.137400 -0.189006 -1.799669 -0.268087 -2.287357 -0.833699 -0.485590 0.464353 -0.366875 0.608724 0.331308 1.184684 0.071641 0.045238 0.478006 1.206880 -0.906137 -0.267907 -0.268244 -0.137592 0.266603 -0.511887 0.242613 0.527257 -0.205139 -0.736181 -0.842610 0.686920 0.115006 -0.523042 -0.641880 -0.183104 0.660221 -0.933094 -0.641338 -0.977562 -0.179188 -0.238008 -1.315363 -0.126554 -0.017011 0.842650 0.429047 -0.267736 -0.886430 0.240512 0.502455 -0.128719 -0.726445 0.392465 0.582425 0.614396 0.188369 0.341562 0.336296 0.431649 1.362142 1.024561 -0.221468 -0.196787 0.150827 -0.324729 0.234710 -0.359214 -0.230876 0.293588 -0.735252 0.340281 0.556013 -0.496030 -0.336784 0.877155 -0.337975 0.220702 2.090262 -0.086290 0.664128 0.490805 -0.912185 0.185494 -0.563815 -0.266671 0.353362 0.713854 0.569552 -0.906416 -0.554245 0.498814 1.097345 0.429914 -1.163615 -0.526339 -0.031270 0.222683 -0.211294 0.304125 0.232900 0.285045 -0.460423 -0.051821 0.563299 1.461008 -0.791797 -0.706431 0.238617 0.328406 -0.102024 -1.196775 -0.180802 -0.668952 -0.084104 0.233367 0.070234 0.223158 0.928961 -1.786005 0.680292 -0.294484 -0.298687 0.633038 0.431977 -0.507825 -1.044090 0.255869 0.641504 0.675888 0.121274 0.244181 -0.063001 -0.936318 -0.054351 0.129017 0.264332 -0.477353 0.792022 -0.055019 -0.612623 -0.574836 0.018105 0.064103 -0.454118 -0.046870 0.516876 0.358837 -1.863781 0.854240 -0.132406 -0.570874 0.235545 -0.196689 0.870616 -0.826085 -1.046617 0.537827 -0.419041 -0.467215 -0.250522 -0.218494 0.350231 0.294003 0.045666 -0.417927 -0.794049 0.695089 -0.068095 0.638863 0.551161 0.207044 1.124369 -0.616545 -0.722536 -0.657951 -0.157719 0.201260 -0.314292 -0.454728 -0.720047 -0.341082 0.692870 1.159530 0.046399 -0.189335 -0.293797 0.762175 -1.394074 -0.229404 0.580605 1.113069 -0.440647 0.469791 0.614544 -0.610427 -0.178291 -0.515942 -0.182352 -0.238947 -0.646085 0.400893 -0.665662 0.060512 0.477541 -0.245639 -0.109234 0.529714 0.045876 0.201792 -0.238042 0.725424 1.471998 -0.955412 -0.130704 -0.814517 0.406940 -1.109694 -0.917664 0.245428 0.279398 -0.339184 -0.193853 0.106912 0.451841 0.220887 -0.533968 -0.417571 -0.099009 +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.036990 0.653387 0.589679 -0.164047 0.545851 0.341364 0.198415 0.181993 -0.266147 -0.606601 -0.153329 -0.938603 -1.112687 0.654682 -0.070818 -0.090235 1.023109 0.056356 0.021112 -0.275473 0.090214 -0.317397 1.041479 1.051251 -0.989254 0.337452 0.299129 0.352005 0.052479 0.710533 -0.233485 -0.874414 0.223123 0.131939 0.520827 -0.224228 -0.230426 -0.498166 -0.362433 -1.528821 -0.204561 0.684495 -0.057529 -0.003497 0.198366 0.682916 1.440474 0.531389 -0.253264 0.359880 0.322519 -0.099209 0.451708 0.064730 0.209649 -0.212755 0.595307 -0.139056 -0.535224 0.209598 -0.060216 -1.029296 -0.349552 0.737199 0.922519 -0.105282 -0.286676 -0.077921 -0.146986 0.093860 -0.179116 0.587809 0.630295 0.595330 0.639434 -0.114523 0.147475 -0.944808 -0.007139 -1.974229 -0.926351 -0.730072 0.837050 0.494287 0.147999 -0.443198 1.170849 0.039682 0.346493 0.313233 1.307672 -0.634340 -0.251506 -0.413379 -0.140020 0.376301 -0.423947 0.100498 0.219002 -0.205620 -0.705825 -0.476580 0.575784 -0.155348 -0.537727 0.208876 -0.265084 0.586946 -0.933517 -0.150152 -1.176783 -0.320028 0.205129 -1.250854 -0.059309 0.201664 0.217382 0.529210 -0.205926 -0.428707 0.256176 0.260326 -0.215778 -0.221592 -0.859364 1.036962 0.345523 -0.057583 0.408689 0.433864 0.608656 0.604057 0.739127 -0.122952 -0.230423 0.204507 -0.301087 -0.020226 -0.220734 -0.082754 0.228320 -0.539408 -0.012382 0.212461 -0.486005 -0.093920 -0.483324 -0.431893 0.337272 1.685586 -0.238935 0.523910 0.126812 -0.845201 0.695969 -0.222231 -0.556005 0.105940 0.616524 0.829873 -0.596276 -0.393141 0.441760 1.107141 0.349476 -0.744590 0.181642 0.045891 0.058560 -0.360678 0.609419 0.199285 0.313925 -0.423437 -0.104447 0.498667 1.329430 -0.443163 -1.108775 0.096239 0.044579 0.259502 -0.631560 0.093802 -0.043306 -0.149223 0.021508 -0.025644 0.294683 0.850602 -1.634702 0.794278 -0.003176 -0.529797 0.863610 -0.154538 -0.276806 -0.754284 0.350594 0.807707 0.716275 0.331267 -0.199620 -0.380099 -0.850430 -0.101458 0.147446 0.389551 -0.513753 0.773614 -0.116976 -0.606967 -0.605095 -0.855117 -0.006658 -0.176010 -0.579550 0.333896 0.443929 -1.646412 0.992198 -0.040436 -0.463276 -0.175546 -0.273969 0.248755 -0.832904 -0.987272 0.121845 -0.577794 -1.022531 -0.342513 -0.431018 0.146425 0.140846 -0.163743 -0.468545 -0.821455 0.968915 -0.004674 0.607484 0.609948 0.320982 1.023202 0.883413 -0.679779 -0.242540 -0.410141 0.544059 -0.515940 -0.290757 -0.049940 -0.524762 0.417152 1.218527 -0.150676 0.020924 -0.560484 0.617364 -0.647624 -0.521852 0.515045 -0.013960 -0.192877 0.466207 0.585908 -0.395130 -0.292498 -0.845674 -0.280805 -0.200069 -0.624917 0.177748 -0.886227 -0.164163 0.775281 -0.455845 -0.547697 0.389764 -0.203379 -0.263285 -0.249852 0.884164 1.036450 -0.909436 0.620183 -0.787092 0.589522 -1.071227 -0.648122 0.049974 0.038493 -0.147604 -0.277163 0.140075 0.089049 0.147565 -0.549650 -0.471634 0.085804 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::front() const = 0.021702 0.485135 0.443008 -0.114353 0.340092 0.093484 0.127215 0.181562 -0.152767 -0.526129 -0.134435 -0.653586 -0.822822 0.450763 -0.096305 -0.157299 0.724153 0.081399 0.048809 -0.225850 0.035660 -0.289301 0.713895 0.708519 -0.714416 0.193281 0.221107 0.309556 0.081321 0.505992 -0.076362 -0.619216 0.152208 0.200797 0.456944 -0.180046 -0.083110 -0.342076 -0.424275 -1.059108 -0.135941 0.491304 0.067874 -0.000481 0.126914 0.546984 0.998789 0.382726 -0.200436 0.181794 0.258273 -0.001138 0.291682 0.065314 0.092897 -0.234778 0.398138 -0.221437 -0.420895 0.167111 -0.024558 -0.831694 -0.249123 0.535609 0.674716 -0.058960 -0.114638 -0.079836 -0.142680 0.113185 -0.110109 0.348918 0.455244 0.420108 0.431124 -0.034401 0.104157 -0.687055 -0.026566 -1.579289 -0.614751 -0.603490 0.626203 0.414561 0.009937 -0.275594 0.782106 0.108927 0.319148 0.248473 0.933693 -0.369948 -0.208166 -0.350812 -0.097590 0.341502 -0.345180 0.054581 0.159411 -0.050510 -0.469227 -0.278612 0.371616 -0.132169 -0.348242 0.194544 -0.211486 0.406020 -0.734081 -0.028776 -0.878008 -0.282762 0.218622 -0.881659 0.067031 0.123174 0.173459 0.359258 -0.076121 -0.199903 0.147296 0.194106 -0.129307 -0.059337 -0.801828 0.731930 0.154394 -0.070804 0.289401 0.313992 0.403297 0.318051 0.506119 -0.085384 -0.212227 0.153557 -0.277317 -0.088194 -0.203300 -0.074845 0.275302 -0.386895 0.003756 0.092459 -0.343513 -0.176303 -0.435217 -0.368889 0.345478 1.004154 -0.145240 0.310189 0.049139 -0.575763 0.461932 -0.125033 -0.394941 0.059068 0.441719 0.552168 -0.219082 -0.290351 0.255868 0.728226 0.251158 -0.411210 0.128273 -0.012896 0.040458 -0.231407 0.373234 0.177620 0.117279 -0.289004 -0.084481 0.340233 0.802352 -0.220282 -0.672848 0.051652 0.063269 0.159106 -0.399867 0.086193 0.047345 -0.077012 -0.051808 -0.026774 0.192519 0.607906 -1.173265 0.572698 0.063944 -0.280930 0.520134 -0.203028 -0.149568 -0.670402 0.311016 0.609781 0.496991 0.199036 -0.117168 -0.255318 -0.576963 -0.076808 0.079685 0.346693 -0.325044 0.470558 -0.089887 -0.404494 -0.498574 -0.620557 0.000531 -0.064007 -0.383778 0.196866 0.392988 -1.148821 0.738714 -0.141348 -0.319786 -0.176069 -0.172197 0.111429 -0.648893 -0.684305 0.020479 -0.419414 -0.793934 -0.307556 -0.271759 0.132195 -0.020204 -0.183323 -0.244263 -0.509036 0.667070 -0.029046 0.339926 0.392930 0.280948 0.748801 0.700465 -0.432158 -0.155596 -0.203824 0.308845 -0.476977 -0.178408 0.124423 -0.316979 0.268325 0.906785 -0.133212 0.027627 -0.246289 0.443094 -0.368895 -0.487284 0.374434 -0.107447 -0.073044 0.402270 0.412841 -0.345504 -0.295187 -0.641106 -0.162300 -0.045445 -0.480679 0.081580 -0.676279 -0.116355 0.590253 -0.289820 -0.443617 0.297630 -0.136645 -0.203616 -0.194929 0.643351 0.719331 -0.636503 0.494821 -0.546321 0.356496 -0.792407 -0.443589 -0.002848 0.059808 -0.015705 -0.116825 0.067051 0.039307 0.071817 -0.327411 -0.339043 0.052653 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() const = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.009347 0.369540 0.211218 -0.139034 0.352797 0.287771 0.081346 -0.065336 -0.127741 -0.230885 -0.123914 -0.311895 -0.379510 0.323258 -0.077721 0.092510 0.511799 0.039272 0.034378 -0.140017 0.133101 -0.128161 0.541099 0.489581 -0.466744 0.159975 0.300812 0.115540 -0.018656 0.412668 -0.221362 -0.484725 0.160070 -0.089173 0.133307 -0.212963 -0.096269 -0.191897 0.018449 -0.705978 -0.056443 0.041168 -0.140564 -0.007873 0.014070 0.124200 0.694828 0.257362 -0.105360 0.194561 0.199941 0.168603 0.086400 0.067370 0.124355 0.107412 0.269863 -0.126257 -0.148889 0.038259 -0.039692 -0.340684 -0.116006 0.376408 0.417669 -0.028589 -0.097873 0.083938 -0.150018 0.001634 -0.095535 0.251213 0.162735 0.305362 0.210428 -0.327106 0.033297 -0.575219 -0.078898 -0.847538 -0.383178 -0.355220 0.114027 0.117241 0.234078 0.050648 0.553992 -0.011250 0.195417 0.129565 0.606140 -0.432461 -0.086535 -0.164159 -0.114441 0.105246 -0.165780 0.051698 -0.067710 -0.132815 -0.306127 -0.423368 0.322915 0.026223 -0.253763 -0.113343 -0.089336 0.260309 -0.510966 -0.199619 -0.494384 -0.131001 -0.106648 -0.576357 -0.072330 0.022518 0.322911 0.157210 -0.077498 -0.471228 0.118784 0.320711 -0.102948 -0.267056 -0.122251 0.324474 0.247197 -0.039758 0.150628 0.033185 0.252683 0.529124 0.399846 -0.088698 -0.107034 0.067327 -0.114471 -0.076422 -0.137779 -0.020158 -0.046430 -0.322423 0.106884 0.307423 -0.228867 -0.047260 0.052424 -0.282703 0.193346 0.945974 -0.144234 0.218971 0.060366 -0.520709 0.110632 -0.202914 -0.283852 0.057247 0.284118 0.390953 -0.379085 -0.222929 0.197340 0.481010 0.187394 -0.332549 -0.064830 -0.080333 -0.017405 -0.067947 0.187981 0.051246 0.039638 -0.226427 -0.085428 0.196488 0.760773 -0.211892 -0.328068 0.118335 0.053904 -0.006853 -0.304007 -0.037107 -0.187498 -0.027942 0.132474 -0.063605 0.147302 0.423248 -0.850739 0.344049 -0.153669 -0.297781 0.250046 0.042107 -0.097328 -0.194664 0.175479 0.421349 0.354761 0.055803 0.154352 -0.159906 -0.392256 -0.065891 0.053531 0.207587 -0.279512 0.323261 0.125487 -0.488228 -0.291000 -0.136023 0.043012 -0.190570 -0.180533 0.151483 0.127336 -0.931281 0.509016 -0.001040 -0.152279 0.105566 -0.122452 0.288511 -0.383729 -0.481289 0.194614 -0.152870 -0.161766 0.035014 -0.150016 0.199128 0.067355 0.056122 -0.250187 -0.398108 0.244163 0.092456 0.223128 0.274496 0.217228 0.440160 -0.103854 -0.254356 -0.218992 -0.160049 0.222548 -0.160018 -0.134756 -0.061414 -0.246895 0.290922 0.617659 -0.013759 -0.069212 -0.152979 0.310431 -0.411727 -0.054448 0.242245 0.290965 -0.221241 0.088599 0.273056 -0.172968 -0.213629 -0.271371 -0.008451 -0.094165 -0.324220 0.101763 -0.388525 -0.038951 0.381496 -0.151714 -0.243780 0.240977 -0.069838 0.008390 -0.089363 0.328444 0.455397 -0.357213 0.168650 -0.307862 0.184963 -0.533348 -0.368462 0.042391 0.024572 -0.107501 -0.117464 -0.064001 0.157987 -0.009801 -0.011361 -0.063220 -0.112196 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.029926 0.494486 0.378886 -0.197174 0.498471 0.347330 0.162012 -0.026577 -0.232956 -0.344459 -0.184549 -0.450631 -0.616825 0.543822 -0.063733 0.175188 0.896555 0.146310 0.023243 -0.264181 0.313904 -0.429651 0.874091 0.845503 -0.782658 0.243146 0.502972 0.268329 0.098859 0.605090 -0.401182 -0.545146 0.276310 -0.304778 0.310829 -0.450974 -0.127563 -0.272244 0.004923 -1.230069 -0.097031 0.048060 -0.154749 -0.015260 0.005235 0.427923 1.073529 0.447932 -0.241203 0.318597 0.324804 0.023992 0.195998 0.116499 0.189771 0.225163 0.456189 0.081158 -0.294778 0.099127 -0.059927 -0.747482 -0.062394 0.589850 0.737681 -0.084451 -0.147072 0.196772 -0.136551 -0.002770 -0.103851 0.398042 0.296532 0.360663 0.461222 -0.728332 0.071524 -1.111227 -0.159400 -1.622031 -0.654399 -0.615548 0.283222 -0.081048 0.404778 0.030175 0.905907 -0.024965 0.318093 0.197288 0.972058 -0.758831 -0.177006 -0.350814 -0.143048 0.213087 -0.323600 0.030489 0.211531 -0.295820 -0.518927 -0.671961 0.637274 0.081388 -0.422649 -0.193324 -0.167307 0.517517 -0.763615 -0.428039 -0.898783 -0.302699 -0.196847 -0.957079 0.108964 0.003552 0.572943 0.310800 -0.109528 -0.750071 0.170331 0.549908 -0.142864 -0.482214 -0.164362 0.689820 0.375485 -0.073745 0.285914 0.106268 0.347247 0.790278 0.845734 -0.146380 -0.205199 0.187392 -0.386858 -0.094896 -0.317864 -0.129104 0.193098 -0.556245 0.002146 0.421226 -0.398009 0.006814 0.426796 -0.338103 0.338597 1.627483 -0.158777 0.359897 0.112454 -0.795679 0.404682 -0.243356 -0.400695 0.192696 0.542967 0.570625 -0.906937 -0.391698 0.244576 0.802519 0.328272 -0.727983 -0.283090 -0.214168 0.011734 -0.089885 0.258522 0.119260 0.120955 -0.374961 -0.102406 0.299969 1.256486 -0.499178 -0.652313 0.160476 -0.030080 -0.122139 -0.867045 -0.086542 -0.355052 -0.081540 -0.004445 -0.086428 0.238673 0.709896 -1.399585 0.600081 -0.354138 -0.500592 0.574014 0.035798 -0.169826 -0.633590 0.283715 0.646044 0.633686 0.139922 0.068569 -0.186195 -0.679419 -0.091733 0.058077 0.344692 -0.408917 0.557355 0.082502 -0.677377 -0.469204 -0.258571 0.072659 -0.348596 -0.184031 0.268469 0.171193 -1.458194 0.787671 -0.072805 -0.308781 0.246962 -0.137932 0.383239 -0.665694 -0.826749 0.316644 -0.158645 -0.300977 -0.177522 -0.228120 0.361729 0.079990 -0.120810 -0.397324 -0.809625 0.456435 -0.017853 0.389814 0.457002 0.297772 0.854801 0.097133 -0.482783 -0.469219 -0.156375 0.151766 -0.302336 -0.243288 -0.362138 -0.378016 0.505099 1.047417 -0.005634 0.059975 -0.257612 0.599250 -0.829577 -0.242337 0.449983 0.522470 -0.288653 0.215721 0.491270 -0.410075 -0.367433 -0.441141 -0.165784 -0.052738 -0.509557 0.218817 -0.694396 -0.047452 0.569521 -0.232229 -0.291005 0.404012 -0.092682 0.035049 -0.215304 0.634493 1.007762 -0.708432 0.168686 -0.513535 0.357981 -0.890795 -0.545320 0.047705 0.195250 -0.180496 -0.116472 0.148850 0.259725 0.033807 -0.236628 -0.147450 -0.235251 +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.138966 1.227173 0.958480 -0.220646 1.186289 0.746564 0.478705 1.060102 -0.757873 -1.645520 -0.344206 -2.279430 -2.757274 1.523089 -0.069800 -0.560226 2.320184 0.264650 0.157105 -0.257780 -0.211706 -0.190824 2.028121 2.093034 -1.779628 0.690010 -0.077343 0.417698 -0.708685 1.674822 0.164275 -2.936025 0.429041 0.984143 1.152596 -0.206677 -0.676628 -0.947502 -1.306294 -3.303693 -0.418444 2.678295 -0.133214 -0.099926 0.684324 0.967355 3.038041 1.004284 -0.340843 0.866116 0.270007 0.041306 1.017333 0.076994 0.518612 -0.635938 0.296985 -0.993333 -1.507278 0.648771 -0.389833 -1.946728 -1.239978 1.347613 1.706399 -0.243473 -0.796986 -0.737273 -0.604244 0.463116 -0.367771 1.187161 1.788532 1.004119 1.327971 1.173480 -0.471694 -1.246018 0.337241 -4.114581 -2.030484 -1.447917 2.583835 2.313781 -0.259441 -1.853894 2.472028 -0.318090 0.685134 1.178271 2.859653 -0.742700 -0.666287 -1.131217 -0.150793 0.819600 -0.796073 -0.127932 0.335484 -0.384812 -1.643747 -0.705566 0.588494 -0.685475 -0.966859 0.539565 -0.549401 1.454779 -2.075053 0.124394 -2.748506 0.040038 1.072728 -2.517577 -0.851009 0.871056 -0.752566 1.519590 -0.870896 -0.241833 0.933546 -0.000667 -0.693941 -0.010123 -1.900269 2.306044 0.234975 -0.145113 0.925195 1.388115 1.276847 0.945829 1.204940 -0.183827 -0.233598 0.556402 -0.005462 -0.002305 -0.229284 -0.153288 -0.053995 -1.031713 0.149534 0.035820 -1.145187 -0.515182 -2.941492 -1.031451 0.630336 3.048706 -0.821265 1.197255 0.165601 -1.621943 1.752932 -0.285920 -1.137542 -0.261847 1.423043 1.858881 -0.095375 -0.648832 1.153674 2.439165 0.791608 -1.048075 1.109447 0.292857 0.326330 -0.921008 1.657518 0.508700 1.019245 -0.914369 -0.201822 1.017521 2.630665 -0.661370 -2.648117 0.062179 0.863351 1.244516 -0.303377 0.446438 0.009838 -0.408567 0.655062 -0.171478 0.609666 1.822181 -3.015357 1.805648 0.377037 -0.878409 1.511475 -0.258845 -0.442885 -1.447052 0.324803 1.704140 1.848743 0.958308 -0.387338 -1.086382 -1.700323 -0.205535 0.457793 0.981153 -0.991864 1.692167 -0.761190 -1.082517 -1.101556 -2.263871 -0.438766 -0.239632 -1.629688 0.584408 1.785997 -3.091961 2.054391 0.142669 -0.838034 -0.904123 -0.238876 0.591643 -1.570921 -2.229023 0.126204 -1.591444 -3.104705 -0.321278 -1.166934 0.157598 0.577760 -0.254753 -0.548119 -1.610492 2.779945 0.615789 1.789839 1.245415 0.452300 2.257755 2.509937 -1.643910 0.211832 -1.904024 1.928359 -1.398500 -0.326128 0.310762 -1.177594 0.689278 2.289059 -0.184136 -0.552930 -1.842959 1.361422 -0.785401 -0.729772 1.258957 -1.108048 0.044510 1.170984 1.507151 -0.847683 -0.555477 -2.130451 0.137594 -0.710982 -1.107991 0.012529 -2.047478 -0.495456 1.554365 -1.087832 -1.461547 0.385725 -0.267195 -1.029521 -0.537156 1.928537 1.266793 -1.893501 2.010162 -1.628698 1.373586 -2.076117 -1.246074 -0.268182 -0.238426 -0.328824 -0.651725 0.002320 -0.191165 0.238908 -1.047137 -1.430369 0.540793 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::pop_back() = 0.016423 1.620790 1.112570 -0.504594 1.452714 1.617949 0.377803 -0.076189 -0.413428 -0.662710 -0.521936 -1.479513 -1.804686 1.347809 -0.140557 0.207618 2.128273 0.030112 -0.064836 -0.250621 0.555302 -0.279538 2.110569 1.940664 -1.865939 0.665345 1.086415 0.391067 -0.215421 1.744541 -1.247885 -1.879132 0.522342 -0.269515 0.652523 -0.580160 -0.521804 -1.184508 -0.037847 -2.867424 -0.288109 0.651418 -0.801558 -0.163725 0.155899 0.510963 3.094532 1.015889 -0.424932 0.318760 0.533719 0.199929 0.468751 0.181356 0.674657 0.394144 1.291531 0.264410 -0.768652 0.076647 -0.240768 -1.270534 -0.559005 1.505163 1.632543 0.003474 -0.535290 0.205683 -0.386792 -0.103953 -0.629466 1.089797 1.053317 1.403679 1.032289 -0.819591 0.231139 -1.812048 -0.202172 -2.762045 -1.672410 -1.460036 0.487468 0.327772 0.956952 -0.649079 2.277950 -0.246179 0.808403 0.364342 2.691616 -1.826351 -0.361237 -0.983442 -0.457544 0.336791 -0.640637 0.192571 0.141657 -1.111277 -1.408062 -1.633428 1.169395 0.155219 -1.034299 -0.075272 -0.332611 1.210121 -1.446456 -0.742027 -2.107481 -0.657180 -0.352664 -2.495657 -0.624535 0.319389 0.647745 0.800439 -0.443461 -1.981907 0.567012 1.285662 -0.531553 -1.211293 -0.347087 1.884751 1.118342 -0.188074 0.710157 0.274617 1.223251 1.850388 1.821042 -0.222141 -0.313463 0.144694 -0.622259 -0.269437 -0.448401 -0.022707 -0.182430 -1.126800 -0.070230 1.340507 -0.944806 0.374199 -0.061398 -0.933401 0.738021 4.504561 -0.741691 0.958688 0.013833 -2.164866 1.249183 -0.532412 -1.378737 0.001967 1.093399 1.850901 -2.364283 -0.835032 1.013833 2.103794 0.751968 -1.699297 0.197484 -0.320181 -0.137566 -0.677747 0.938105 0.272686 0.523308 -0.943462 -0.359867 1.048890 3.286525 -1.306710 -2.577302 0.550980 -0.032941 0.364486 -1.340787 -0.129959 -0.616433 -0.243562 0.422988 -0.307361 0.801091 1.760755 -3.132954 1.474975 -0.488473 -1.705658 1.848421 -0.029674 -0.445741 -0.403935 0.721976 1.905699 1.423805 0.608708 -0.224931 -0.970575 -1.612609 -0.257393 0.312756 0.822304 -1.031016 1.443058 0.175519 -1.818574 -1.224668 -1.265261 0.035578 -0.888458 -1.061919 0.591877 0.203592 -3.492793 2.276317 0.373801 -0.549907 0.233748 -0.692800 0.747004 -1.510118 -2.199591 0.697269 -0.642258 -0.869680 0.018507 -0.721893 0.647144 0.749539 0.243394 -1.352410 -2.177811 1.347132 0.381188 1.304159 1.155729 0.987986 1.857341 0.773020 -1.215395 -0.931141 -1.126647 1.224621 -0.242252 -0.847677 -0.892249 -1.146832 1.216197 2.356248 -0.312442 -0.033839 -1.579093 1.135368 -1.756461 -0.280064 1.035640 0.717637 -1.006864 -0.022440 1.203441 -0.455302 -0.857374 -1.168479 -0.468893 -0.718150 -1.419709 0.147397 -1.664345 -0.295797 1.622773 -0.902069 -0.922532 0.666151 -0.354774 -0.135912 -0.331499 1.317727 1.866634 -1.771141 0.775667 -1.390069 1.218166 -2.200888 -1.559051 0.446604 -0.284384 -0.471216 -0.691440 0.317393 0.402914 -0.093398 -0.517308 -0.352076 -0.432721 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator--() = 0.008865 0.467814 0.418236 -0.246747 0.427031 0.410204 0.089874 -0.068582 -0.194191 -0.204369 -0.174634 -0.434540 -0.471091 0.408548 -0.090700 0.067717 0.670227 0.067394 -0.021356 -0.173675 0.162931 -0.155547 0.669842 0.673179 -0.644765 0.228657 0.342703 0.246630 0.049617 0.610931 -0.384078 -0.505965 0.089600 -0.038965 0.254145 -0.298024 -0.143537 -0.262085 -0.019478 -0.995135 -0.072197 0.159812 -0.096234 -0.013043 0.092717 0.184582 0.913439 0.329606 -0.141509 0.169941 0.262305 0.158983 0.191005 0.049507 0.192976 0.159330 0.582452 -0.042857 -0.174896 0.063217 -0.022689 -0.423769 -0.087622 0.512139 0.571892 -0.010313 -0.155903 -0.000328 -0.052155 -0.028780 -0.122252 0.351163 0.160610 0.441264 0.263605 -0.365696 0.242212 -0.679995 0.014825 -0.918304 -0.518524 -0.462731 0.186986 0.189440 0.276704 -0.069267 0.745486 -0.061883 0.266477 0.066287 0.753850 -0.531571 -0.083524 -0.235042 -0.216063 0.162022 -0.186957 0.027690 -0.064179 -0.163197 -0.385886 -0.492293 0.447451 0.036700 -0.367021 0.077961 -0.118075 0.352572 -0.551787 -0.252633 -0.597974 -0.142438 -0.127686 -0.751793 -0.101297 -0.073067 0.270387 0.165964 -0.094989 -0.588267 0.126366 0.390705 -0.162637 -0.270288 -0.380910 0.545577 0.347906 -0.120045 0.162872 0.018533 0.321168 0.542435 0.445681 -0.153537 -0.132934 0.140013 -0.218964 -0.133931 -0.237883 -0.001119 -0.020857 -0.370823 -0.023628 0.355193 -0.293849 0.088035 -0.000468 -0.299584 0.239866 1.430801 -0.189039 0.293653 0.063945 -0.637451 0.332146 -0.095430 -0.371575 0.107866 0.342755 0.520481 -0.704109 -0.294513 0.213430 0.652486 0.236479 -0.435248 -0.044853 -0.099776 -0.100381 -0.086329 0.299765 0.022147 0.027431 -0.284728 -0.122789 0.224472 1.002613 -0.245546 -0.646176 0.105836 -0.010592 -0.071122 -0.421906 -0.019773 -0.223985 -0.050365 0.032346 -0.084189 0.266369 0.545258 -1.158705 0.490394 -0.142227 -0.471747 0.552119 -0.084736 -0.111110 -0.248125 0.229295 0.521882 0.493903 0.060868 0.003627 -0.191529 -0.533351 -0.081958 0.063937 0.260339 -0.407945 0.451733 0.166313 -0.593177 -0.340564 -0.337580 0.035935 -0.252068 -0.342221 0.198675 0.058229 -1.121402 0.648641 0.047777 -0.178765 0.150937 -0.221582 0.199237 -0.510284 -0.588777 0.187143 -0.102845 -0.191302 -0.048901 -0.226424 0.266452 0.078443 0.081335 -0.458630 -0.580821 0.316648 0.004033 0.308837 0.387295 0.239353 0.469409 0.218022 -0.285811 -0.290896 -0.180973 0.258356 -0.110264 -0.188512 -0.140887 -0.372635 0.347844 0.809747 -0.066213 0.020737 -0.307331 0.435047 -0.433926 -0.140404 0.260145 0.123304 -0.283755 0.052564 0.321356 -0.213832 -0.264182 -0.387523 -0.149039 -0.096626 -0.383123 0.205909 -0.492939 -0.045023 0.491531 -0.251303 -0.334546 0.309688 -0.105979 -0.068933 -0.067130 0.500018 0.541345 -0.400513 0.296420 -0.418813 0.306136 -0.685123 -0.376761 0.014286 -0.066839 -0.182924 -0.148740 0.004442 0.217639 0.023946 -0.030739 -0.061117 -0.121011 +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.106941 1.087480 1.373565 -0.474285 1.167482 0.584588 0.482565 0.769828 -0.870868 -1.481844 -0.132421 -2.186790 -2.601797 1.554110 -0.165331 -0.510996 2.365818 0.188072 -0.005770 -0.675158 0.103371 -0.498948 2.271569 2.411976 -2.191490 0.705216 0.309052 0.790494 0.135291 1.402782 -0.157946 -2.096287 0.444627 0.565248 1.151914 -0.420901 -0.574650 -1.059400 -1.076295 -3.449617 -0.418417 1.885619 -0.363909 0.004768 0.621241 1.919945 3.047720 1.168271 -0.650168 1.021315 0.755966 -0.306391 0.958784 0.056320 0.411991 -0.782925 1.024676 -0.164175 -1.303577 0.589798 -0.196503 -2.269456 -0.908392 1.576609 2.014430 -0.303270 -0.738440 -0.491087 -0.161639 0.355017 -0.186509 1.261244 1.716910 1.087163 1.601963 0.254395 -0.054527 -2.213164 0.169872 -4.789429 -2.106390 -1.421685 2.659455 1.145657 -0.167912 -1.425156 2.561435 0.024525 0.590465 1.152751 2.824045 -0.998908 -0.657371 -0.951549 -0.366133 0.935746 -0.930066 0.205070 0.631388 -0.290239 -1.653554 -0.749337 0.964736 -0.609338 -1.129773 0.594889 -0.562016 1.456297 -2.121271 0.040744 -2.616097 -0.182177 0.980982 -2.756784 -0.501018 0.465043 0.517289 1.301549 -0.692687 -0.284982 0.652297 0.185580 -0.642379 -0.049971 -1.913287 2.441951 0.617968 0.059537 0.868211 1.206532 1.332993 0.984169 1.549614 -0.342005 -0.400144 0.536160 -0.467192 0.124904 -0.493724 -0.139081 0.686424 -1.029946 0.197253 0.072295 -1.135350 -0.557237 -1.472467 -0.790808 0.613076 3.749870 -0.531559 1.377319 0.375222 -1.615624 1.564948 -0.350393 -1.005109 0.260657 1.450634 1.687839 -0.932516 -0.797001 1.047328 2.532642 0.820490 -1.845824 0.739777 0.329986 0.148719 -0.895575 1.519294 0.443144 0.881624 -0.890877 -0.210576 1.181296 2.791709 -0.820693 -2.922745 -0.033116 0.424575 0.871779 -0.996714 0.394116 0.326390 -0.259471 0.432429 -0.022811 0.782927 1.908469 -3.912776 1.781621 0.237535 -0.899873 1.779129 -0.148242 -0.720377 -1.785854 0.538907 1.594325 1.783949 1.035117 -0.694790 -0.682637 -1.869110 -0.187312 0.455746 0.803482 -1.072708 1.744343 -0.404136 -1.045978 -1.195191 -2.241823 -0.195329 -0.004279 -1.450853 0.766541 0.903846 -3.886367 2.027400 -0.094495 -1.080834 -0.799529 -0.572885 0.614847 -1.799302 -2.207457 0.145556 -1.422141 -2.954553 -0.996829 -1.069905 0.216663 0.399428 -0.133009 -0.937177 -1.929551 2.638561 -0.048746 1.666207 1.351726 0.389131 2.595702 2.157637 -1.499513 -0.408956 -1.274580 1.827704 -1.231957 -0.629728 0.193602 -1.154113 0.725566 2.436859 -0.393122 -0.143978 -1.497152 1.473115 -1.350388 -1.183942 1.143317 -0.162041 -0.142410 1.508714 1.390900 -1.069492 -0.415368 -2.069213 -0.659535 -0.521142 -1.200813 0.469457 -1.832997 -0.257311 1.470713 -0.839673 -1.263366 0.704853 -0.472660 -0.769842 -0.494850 2.075016 2.705273 -2.162253 1.621906 -1.845132 1.565454 -2.261284 -1.498014 -0.012323 -0.191092 -0.311442 -0.563463 0.119813 0.144227 0.473878 -1.474233 -1.353469 0.736420 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::push_back(int const&) = -0.074130 2.956656 2.167822 -1.390178 2.773336 3.166067 0.693218 -0.046764 -1.082809 -1.648734 -0.933624 -3.259822 -3.798790 2.840310 -0.410375 0.211756 4.455256 0.027801 -0.212641 -0.616425 1.266294 -0.451016 4.267593 4.207658 -3.990503 1.210831 2.050703 1.071968 -0.223357 3.265617 -1.756442 -4.059834 0.705754 -0.275297 1.674018 -1.212707 -1.084411 -2.082485 -0.183074 -6.136081 -0.660859 1.889459 -1.484756 -0.251193 0.541053 1.003487 6.158771 2.161922 -1.134810 0.737856 1.403710 0.641493 1.074863 0.178403 1.124842 0.441448 2.239326 0.410443 -1.339711 0.295044 -0.497128 -2.310708 -0.953063 3.306923 3.559099 -0.065200 -1.254330 0.173537 -0.420961 -0.006639 -1.173754 2.460421 2.080533 2.805759 2.266103 -1.651654 0.290275 -4.418685 0.222699 -5.948341 -3.462026 -2.820408 1.471576 1.285403 1.560958 -1.692283 4.936397 -0.589062 1.421940 1.477708 5.431535 -3.160225 -0.653246 -2.240510 -1.308992 0.863977 -1.315123 0.362090 0.157700 -1.640774 -2.914552 -3.159479 1.874465 0.079594 -2.222812 -0.179788 -0.754051 2.592739 -2.912113 -1.271571 -4.187277 -0.583647 -0.307014 -5.317833 -1.609739 0.119716 0.855087 1.505175 -1.106432 -3.558929 1.132706 2.228168 -1.218548 -1.979240 -1.243276 3.946829 2.353940 -0.414059 1.202864 0.826219 2.437005 3.477340 3.254884 -0.672793 -0.653940 0.552895 -1.132660 -0.559275 -1.210047 0.097717 0.141544 -2.190420 -0.296386 2.403716 -1.938538 0.302389 -0.461819 -2.203101 1.403033 10.071142 -1.533596 2.166281 0.339341 -4.187781 2.809690 -0.699097 -2.577636 0.198617 2.340897 3.805273 -4.799452 -1.770311 2.187331 4.563029 1.526932 -3.264661 0.393061 -0.223079 -0.366462 -1.471372 2.158493 0.436530 0.836672 -1.824875 -0.744652 2.268419 6.494599 -2.269985 -5.086411 0.804231 0.882537 0.679320 -2.498238 -0.055239 -1.557232 -0.521208 1.161368 -0.504000 1.918925 3.690806 -6.820493 3.073178 -0.485960 -2.944141 3.536560 -0.092099 -1.004768 -1.619944 1.422466 3.715779 2.993527 0.990464 -0.376961 -1.846864 -3.494556 -0.394250 0.790248 1.743119 -2.365728 3.176043 0.064052 -3.343826 -2.428153 -2.523227 -0.485946 -1.693946 -2.391145 1.324041 0.585091 -6.760615 4.605082 0.650957 -1.098811 0.185508 -1.576637 1.691263 -3.243907 -4.450801 1.400526 -1.300190 -2.151832 -0.122909 -1.653847 1.426621 1.484170 0.577192 -2.900564 -4.534451 3.031949 0.565077 2.988173 2.417929 1.709495 3.764961 1.746268 -2.317878 -1.883564 -2.656096 2.742316 -0.215749 -1.784614 -1.945619 -2.279982 2.302527 4.748805 -0.816084 -0.384165 -3.105732 2.534795 -3.262148 -0.623938 1.815120 0.775809 -1.953984 0.187353 2.289564 -1.154413 -1.505485 -2.903684 -0.581490 -1.513174 -2.794267 0.585952 -3.320809 -0.518607 3.157694 -1.868686 -1.871623 1.401325 -0.348978 -0.456731 -0.434384 2.975649 3.572973 -3.292665 1.659215 -3.183154 2.597935 -4.553280 -3.163491 0.539931 -0.814404 -0.868468 -1.418863 0.366793 0.963789 0.143537 -0.900043 -0.961312 -0.391427 +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.068503 0.997024 0.945734 -0.161807 1.108985 0.688952 0.552975 0.684343 -0.717089 -1.364183 -0.101695 -2.233598 -2.503454 1.484004 -0.081917 -0.205256 2.163917 0.183840 0.012001 -0.370732 -0.114284 -0.220415 2.123501 2.082866 -1.713772 0.644476 -0.077391 0.285504 -0.359682 1.296459 -0.126970 -2.312553 0.738326 0.550319 0.909297 -0.117724 -0.603354 -0.961380 -0.872355 -2.980876 -0.356445 2.096313 -0.114330 -0.103501 0.527772 1.455936 2.804960 1.044022 -0.198497 0.926141 0.286667 -0.355551 0.982756 0.154907 0.575272 -0.655307 0.584939 -0.696004 -1.483002 0.462501 -0.334541 -1.976288 -1.166155 1.286306 1.696086 -0.257521 -0.716081 -0.419801 -0.408195 0.370409 -0.218514 1.107571 1.762086 0.940120 1.281180 0.676927 -0.243479 -1.195631 -0.052096 -4.077678 -1.948330 -1.205257 2.387501 1.517535 -0.008875 -1.655357 2.274417 -0.044667 0.450717 0.745342 2.742166 -1.106765 -0.710170 -0.819217 0.110276 0.658279 -0.874238 0.150462 0.689080 -0.564678 -1.634099 -0.582511 0.846099 -0.525927 -0.913972 0.467976 -0.412728 1.346696 -1.875091 -0.045434 -2.444142 -0.255048 0.857767 -2.473095 -0.267131 0.853751 -0.232635 1.434413 -0.787528 -0.372152 0.814620 0.070008 -0.588185 -0.271162 -1.743214 2.265369 0.412243 0.097369 0.917349 1.363234 1.248940 1.176245 1.292162 -0.206604 -0.200659 0.344303 -0.199362 0.300678 -0.162090 -0.293095 0.190707 -1.067153 0.143422 0.121578 -1.076917 -0.225681 -2.049948 -0.555530 0.491439 2.687510 -0.659272 1.287964 0.304954 -1.576563 1.537742 -0.595527 -0.949877 -0.150112 1.304182 1.580599 -0.502565 -0.718606 1.157565 2.319851 0.782253 -1.488483 1.000312 0.246910 0.370725 -1.012315 1.422224 0.579264 1.113761 -0.937968 -0.142864 1.051354 2.677487 -0.970885 -2.350607 0.141901 0.286683 1.232086 -0.700174 0.240537 0.220338 -0.307366 0.377945 0.055522 0.505737 1.750147 -2.744076 1.693564 0.123397 -0.935056 1.754675 -0.106497 -0.700573 -1.327732 0.285298 1.549857 1.614259 1.002052 -0.480232 -0.821297 -1.651261 -0.205846 0.323596 0.722311 -0.814025 1.494393 -0.524566 -0.973411 -1.035103 -2.076871 -0.123760 -0.219146 -1.328366 0.700482 1.554358 -3.175930 1.884463 0.132681 -1.007643 -0.769956 -0.311387 0.639033 -1.500113 -2.001510 0.126908 -1.612073 -2.837389 -0.610899 -0.946503 0.009996 0.382317 -0.193446 -0.633609 -1.556278 2.639877 0.326144 1.655183 1.172254 0.407955 2.196372 2.174353 -1.635920 0.022346 -1.633743 1.559904 -1.324737 -0.528023 0.417691 -1.045431 0.793962 2.106541 -0.180096 -0.363622 -1.562665 1.151483 -1.258889 -0.798752 1.295682 -0.323978 -0.126741 1.175420 1.457078 -0.849899 -0.376102 -1.766062 -0.431631 -0.727642 -1.136960 0.138117 -1.725541 -0.316830 1.262591 -0.877321 -1.162113 0.438987 -0.410597 -0.850646 -0.511279 1.855438 1.859357 -1.951268 1.544185 -1.629976 1.405322 -1.970340 -1.376686 0.137321 -0.030324 -0.472208 -0.615287 0.254567 -0.041818 0.304307 -1.455251 -1.425415 0.546705 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 0.071701 5.327429 4.557884 -2.761672 4.783759 4.521467 1.260191 0.309883 -1.807277 -3.646772 -1.115281 -6.908644 -7.900896 4.628861 -0.899487 -0.593632 8.089213 -0.667352 -0.415835 -2.270422 1.847287 -0.408080 8.488794 8.436496 -8.398163 2.313799 3.818974 2.856671 1.297240 4.133957 -2.600248 -6.263730 1.235679 0.009594 3.457227 -1.398895 -1.859625 -4.938500 -1.089500 -11.456566 -1.497014 3.025915 -2.992006 -0.033629 1.250983 4.932720 11.753877 4.289544 -2.891745 1.681345 3.749881 0.280905 2.341403 0.117448 0.994694 -1.377927 4.853319 1.387975 -2.488834 0.416827 -0.276473 -5.392211 -1.953538 6.499919 7.040750 -0.389240 -2.577728 0.380294 0.503816 0.061809 -1.884977 5.054267 4.788954 5.688119 5.259478 -2.886664 0.987242 -9.325173 0.315759 -13.512181 -7.054228 -5.422619 4.527647 1.001580 1.866621 -2.978680 9.452456 0.032282 2.774936 3.343212 9.887881 -5.334735 -1.375607 -3.745408 -2.331092 2.440205 -2.835591 1.771320 1.049818 -1.913293 -5.569442 -4.568424 3.469739 -0.773854 -4.496349 0.403484 -1.449274 3.996354 -5.544563 -1.110140 -8.281870 -1.314158 1.011046 -10.530580 -2.780243 0.432229 3.808554 2.707398 -1.584510 -4.902847 1.262164 3.014082 -2.176464 -2.396522 -3.833605 7.616953 5.005730 -0.145999 2.733398 2.465849 5.301352 5.852861 6.176787 -1.268986 -1.995615 1.016371 -2.618335 -0.673524 -2.169633 0.439174 2.279255 -3.742791 0.566293 3.649842 -3.542252 -0.704178 -0.269842 -3.959752 2.495572 18.204794 -2.153799 4.522767 1.282416 -6.979167 4.492509 -1.987950 -4.679429 1.114191 4.241476 7.035160 -8.044290 -3.177852 4.029865 8.759967 2.652110 -7.318569 1.801525 0.944757 -0.532602 -3.547531 4.168331 1.041655 2.145091 -3.082609 -1.091124 5.364916 11.247043 -3.714703 -9.968088 0.857465 1.604134 1.983536 -4.495806 0.313023 -0.935295 -0.919622 2.509869 0.070186 3.592864 6.849924 -13.893306 5.262433 0.371782 -4.469237 6.663320 0.059323 -2.701455 -3.777246 3.322731 6.599199 4.969886 2.189156 -1.625196 -3.097093 -6.548136 -0.638409 1.926719 2.812154 -4.398960 6.068364 0.202148 -5.133215 -4.603336 -5.857977 -0.561294 -1.226825 -4.571892 2.799816 -0.014233 -14.067691 8.418783 0.264184 -3.233198 -1.063705 -4.384764 3.095553 -6.636796 -7.757955 1.969000 -3.430516 -5.790365 -1.945565 -3.093915 1.828356 2.397897 1.618215 -5.883981 -8.196176 6.850986 0.163824 5.456791 4.846428 2.861259 7.967729 3.027633 -4.191343 -3.779985 -4.196590 5.660241 -0.620636 -4.013761 -2.219256 -4.175939 3.488305 9.087994 -2.842921 -0.038624 -5.017918 4.132070 -6.873182 -2.903124 2.899166 2.665730 -3.373023 2.452515 3.863076 -2.477995 -2.013079 -6.255900 -2.626142 -2.491326 -5.545057 1.659020 -6.128236 -0.790104 6.249170 -3.452854 -3.380522 3.101811 -1.521155 -0.932269 -0.917429 5.778353 9.829202 -6.797521 3.134629 -6.866886 5.409667 -8.788563 -6.598183 1.698173 -2.079363 -1.005614 -2.740818 0.582337 1.858487 0.850003 -3.606014 -2.973384 1.043628 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -0.860726 -1.122377 0.030226 -1.232732 0.741167 -0.022274 0.436464 -0.312982 -1.983644 -1.841048 0.906241 -3.271254 -2.227380 2.146496 -0.808652 0.617140 2.652562 0.228198 -0.545715 -1.291621 1.038236 -0.586366 2.761126 3.222173 -2.293116 -0.045225 -0.323377 1.364486 1.104703 -0.171182 1.737247 -1.902998 0.486509 -0.359100 1.194762 -0.599971 -0.392483 0.885278 0.386575 -3.570985 -0.386240 2.283827 0.909314 0.390223 0.567111 2.282017 1.601441 1.666783 -0.715597 2.174788 1.810165 -0.396622 1.481485 -0.099414 -0.012604 -1.399357 0.329271 -0.577026 -0.798197 0.364279 -0.548834 -1.444095 -0.318201 2.021361 2.957245 -0.625435 -1.145323 -0.132449 0.767476 1.096350 1.029697 1.792795 0.867394 0.354966 1.916687 -0.993807 -0.264669 -4.494215 0.886000 -6.118335 -1.726834 -0.048684 3.423497 1.556852 -0.400394 -1.085700 3.319488 0.159786 -1.169965 2.328419 2.621770 -0.467706 -0.732508 -0.619394 -0.778706 0.864618 -1.281221 0.492395 1.382642 1.825172 -1.786103 -0.377250 0.110121 -0.870610 -1.254920 -0.325735 -0.623923 1.736913 -2.319297 -0.212359 -1.757300 1.522888 1.442819 -3.393912 -0.577838 -1.164360 -0.237845 0.963743 -1.562200 0.352660 0.799057 -0.841704 -0.683678 0.556860 -2.120768 2.068200 0.973448 0.640609 -0.017657 2.065334 0.836982 1.761706 0.138224 -1.314287 -0.283413 0.992500 -0.250372 1.120209 -1.354876 -0.505663 2.190437 -1.442015 0.412604 -0.581823 -1.242004 -1.538452 -0.489682 -0.564368 -0.169655 4.974601 -0.304679 2.324740 2.073803 -1.019964 1.449991 -0.245200 0.727849 1.053018 1.609114 1.011896 -0.730702 -1.571529 1.852730 3.161668 1.025077 -2.192567 -0.133000 1.417774 0.883607 -0.800634 1.496255 0.651426 0.230060 -0.732872 0.017544 1.239623 2.716168 -0.686045 -0.925835 -0.326730 2.210679 0.306320 -1.689141 0.218371 -1.252129 -0.243212 0.658846 1.039809 0.859814 2.470927 -4.537019 2.000411 1.073610 0.967220 1.607827 0.430851 -1.628770 -4.485312 -0.319954 0.588566 1.793673 0.242423 0.030879 0.523557 -2.575273 0.264559 0.602788 0.608644 -1.515260 2.103056 -0.848742 0.124031 -0.778714 -0.802383 -1.064508 -0.066203 -1.153089 1.725130 1.776449 -3.080052 1.395375 -0.373240 -1.485533 -1.017101 -0.435288 1.738796 -2.112851 -1.779439 0.500817 -1.925543 -3.313003 -1.817972 -0.767955 0.194365 -0.040237 0.048978 -1.178149 -1.615673 3.171278 -1.297139 2.386617 1.269468 -0.897905 1.956401 1.001366 -1.316114 -0.695473 -1.036139 0.865198 -0.931479 -0.884955 -0.154866 -0.235882 0.913981 2.043597 -0.101590 -1.112856 -0.253178 2.069194 -1.433242 -1.189836 0.806868 -0.280276 -0.388565 2.461918 1.117106 -2.126653 0.733776 -2.630219 -0.313382 -1.001722 -0.973491 1.731938 -1.009586 0.472333 0.161532 -0.492085 -0.499030 1.143992 0.905219 -0.847863 0.133568 3.216240 2.673230 -1.030410 0.729239 -2.996295 1.589240 -2.373007 -1.823010 -0.227452 0.357233 -1.062326 -0.462340 -0.146874 1.283856 1.644198 -1.696086 -2.329381 1.878499 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = 0.017678 0.778070 0.405668 -0.010732 0.591155 0.274756 0.246946 0.207021 -0.164703 -0.737268 -0.252233 -0.686437 -1.184124 0.687495 0.022798 0.085857 1.203977 0.134603 0.164059 -0.425306 0.337795 -0.710168 1.230472 1.179149 -1.159967 0.372207 0.715197 0.341098 0.197288 0.578234 -0.246438 -0.776992 0.494173 -0.368309 0.560511 -0.492424 -0.174385 -0.526970 -0.252391 -1.755809 -0.269115 0.225524 -0.251575 0.042462 0.021279 0.925303 1.584905 0.630637 -0.459062 0.556158 0.417911 -0.194517 0.383436 0.150687 0.073503 -0.013767 0.277702 0.066160 -0.532208 0.247195 -0.026369 -1.436778 -0.225400 0.778311 1.062429 -0.240467 -0.231832 0.355378 -0.269351 0.055276 -0.229094 0.646668 0.732278 0.466619 0.887426 -0.871744 -0.158936 -1.605592 -0.290502 -2.831860 -1.041127 -1.021678 0.696153 -0.106197 0.430493 -0.063404 1.310590 0.113459 0.509119 0.487634 1.444928 -0.977663 -0.287051 -0.557899 0.014077 0.444687 -0.572779 0.132535 0.517694 -0.447405 -0.766356 -0.858007 0.868206 -0.053836 -0.631693 -0.384403 -0.358526 0.712975 -1.159713 -0.470640 -1.566172 -0.638691 -0.075392 -1.400378 0.276770 0.303225 0.850748 0.651536 -0.053875 -0.768467 0.194509 0.588331 -0.083422 -0.652254 -0.254921 1.036062 0.468945 -0.069222 0.586782 0.471336 0.602807 1.027211 1.373624 -0.031767 -0.412852 0.298420 -0.530602 -0.060745 -0.346793 -0.195479 0.541761 -0.771560 0.044912 0.415064 -0.551450 -0.227114 0.480720 -0.602203 0.493741 1.876677 -0.102750 0.452383 0.172785 -1.023740 0.597195 -0.489181 -0.637218 0.325455 0.858068 0.882788 -0.967275 -0.458037 0.313361 1.181282 0.394305 -1.085891 -0.333021 -0.177170 0.174347 -0.327420 0.446557 0.277606 0.394119 -0.464172 -0.040379 0.579399 1.544960 -0.802768 -0.835153 0.154650 0.045190 0.026815 -1.315878 -0.030764 -0.338174 -0.231820 0.022274 -0.033582 0.184389 0.946642 -1.779684 0.789213 -0.388311 -0.538631 0.627626 0.098873 -0.259623 -1.163696 0.551314 0.924199 0.774693 0.312496 0.070630 -0.379656 -0.983190 -0.109029 0.158305 0.480870 -0.502434 0.873280 -0.165390 -0.704764 -0.748351 -0.448716 0.089509 -0.361362 -0.189973 0.374668 0.489260 -2.005665 1.086744 -0.310917 -0.635741 0.127057 -0.198811 0.592301 -1.003663 -1.223323 0.385029 -0.478556 -0.892619 -0.403829 -0.396325 0.365876 0.143141 -0.453095 -0.360858 -1.088855 0.921944 0.018100 0.509964 0.693270 0.456502 1.521743 0.235073 -0.910578 -0.581624 -0.276474 0.264902 -0.655867 -0.317076 -0.525813 -0.500772 0.601008 1.588076 -0.060105 0.108484 -0.330073 0.766499 -1.320651 -0.602111 0.678448 0.867331 -0.195834 0.614675 0.698316 -0.595497 -0.477680 -0.786955 -0.181645 0.015434 -0.774449 0.206484 -1.197306 -0.182704 0.938307 -0.407924 -0.391375 0.604065 -0.196015 0.028917 -0.505869 0.880545 1.661645 -1.306921 0.248874 -0.786153 0.542211 -1.285949 -0.802774 0.060110 0.452347 -0.019451 -0.207738 0.301560 0.141984 0.132344 -0.724099 -0.465497 -0.245922 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::max_size() const = -0.037791 0.143272 0.247771 -0.138360 0.166366 -0.095238 0.077945 0.068389 -0.175916 -0.424638 0.027340 -0.453537 -0.506795 0.309740 -0.149254 -0.102783 0.445910 0.052522 0.026851 -0.256637 0.048388 -0.196113 0.501424 0.514530 -0.503657 0.060539 0.110555 0.287230 0.199689 0.170949 0.158307 -0.357200 0.110765 0.132274 0.278129 -0.129733 0.006038 -0.098564 -0.257582 -0.654539 -0.082488 0.257662 0.079820 0.046627 0.084019 0.499114 0.500371 0.290083 -0.174063 0.254193 0.310569 0.035546 0.167989 0.037419 -0.031357 -0.316984 0.192497 -0.236463 -0.232486 0.113854 0.003930 -0.559552 -0.136310 0.387357 0.511416 -0.072158 -0.045784 -0.055714 -0.050218 0.150071 0.054853 0.223172 0.243541 0.219726 0.311565 -0.087758 0.025922 -0.681549 -0.002638 -1.255300 -0.365998 -0.301821 0.559310 0.267835 -0.095040 -0.060288 0.503624 0.186113 0.094363 0.316429 0.542030 -0.133101 -0.155541 -0.149114 -0.110241 0.278852 -0.278697 0.114145 0.074894 0.213928 -0.289627 -0.101101 0.166581 -0.142270 -0.216811 0.073032 -0.148208 0.244394 -0.581884 0.049126 -0.485732 -0.058863 0.252169 -0.596425 0.060230 -0.045368 0.301881 0.183743 -0.054709 0.063016 0.056843 0.017605 -0.064437 0.096957 -0.617696 0.378464 0.095838 0.037636 0.126486 0.245765 0.216235 0.193011 0.213821 -0.122938 -0.162717 0.115349 -0.157339 0.024203 -0.192304 -0.044480 0.341266 -0.250868 0.141744 -0.047028 -0.214376 -0.349096 -0.211852 -0.228638 0.194554 0.577582 -0.015532 0.267000 0.171580 -0.286676 0.129187 -0.122527 -0.104295 0.145912 0.289223 0.233429 0.066247 -0.221339 0.168930 0.470914 0.168242 -0.278465 0.037155 0.101422 0.062123 -0.135216 0.221669 0.129056 -0.015673 -0.160230 -0.039658 0.243649 0.386178 -0.021863 -0.231185 -0.028496 0.178393 0.061380 -0.208022 0.078980 0.101841 0.004931 0.042937 0.062999 0.116355 0.402448 -0.912426 0.343410 0.148151 0.059071 0.174035 -0.066638 -0.187021 -0.623839 0.186953 0.290340 0.289825 0.088042 0.022239 -0.007028 -0.395700 -0.021910 0.062215 0.191026 -0.216946 0.287320 -0.025898 -0.168341 -0.327171 -0.308048 -0.021164 0.079412 -0.204784 0.182334 0.262527 -0.821011 0.396451 -0.207989 -0.276051 -0.195046 -0.126717 0.182734 -0.466064 -0.377458 -0.001189 -0.338366 -0.620507 -0.324516 -0.139616 0.065305 -0.111544 -0.069719 -0.110931 -0.211292 0.450603 -0.127040 0.193838 0.229535 0.085553 0.510700 0.239382 -0.217858 -0.121594 -0.036910 0.225434 -0.367888 -0.125602 0.259710 -0.120002 0.129102 0.547338 -0.092955 -0.066540 0.064660 0.326754 -0.217766 -0.392382 0.196746 0.029857 -0.005109 0.463114 0.222983 -0.340534 -0.095359 -0.459525 -0.091113 0.011135 -0.291769 0.171139 -0.333875 0.017699 0.276873 -0.069333 -0.267205 0.250609 -0.042122 -0.111679 -0.084730 0.475942 0.616411 -0.349723 0.283896 -0.423464 0.190484 -0.511846 -0.338773 -0.022456 0.056269 0.014241 -0.012822 -0.097372 0.109855 0.147557 -0.224566 -0.290645 0.199117 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::size() const = -0.113342 0.447714 0.175880 -0.648177 0.830054 0.683141 0.196677 -0.313272 -0.364993 -0.229712 -0.048650 -1.428014 -0.706775 0.332113 -0.215573 0.469644 1.074879 -0.277981 -0.168846 -0.156458 -0.026752 0.656037 1.306174 1.151156 -0.763273 0.283109 -0.023504 0.222322 -0.413441 0.243540 -0.664796 -1.052155 0.134543 -0.144442 -0.006789 0.211577 -0.395575 -0.550323 0.585149 -1.178039 0.001032 0.385245 -0.081854 -0.081649 0.075813 0.079661 1.478197 0.561695 0.044208 0.167814 0.488456 0.202072 0.429190 0.090690 0.210114 0.052530 0.698342 -0.396326 -0.272866 -0.418167 -0.182081 0.134748 -0.280216 0.770224 0.626631 0.099495 -0.660093 0.110513 0.332200 -0.124906 -0.082815 0.770425 0.265142 0.786969 0.326643 -0.191661 0.473501 -0.502227 0.046622 -0.662075 -0.954933 -0.254932 0.265421 0.594180 0.571947 -0.255617 1.316035 -0.365877 0.247495 0.040884 0.984936 -0.931637 -0.207106 -0.146086 -0.227959 -0.074476 -0.099281 0.160523 -0.191635 0.123377 -0.815013 -0.256469 0.387979 -0.042987 -0.504156 0.012882 0.249291 -0.055496 -0.440815 -0.297294 -0.847264 0.343490 0.165671 -1.309511 -0.550366 0.163883 0.006398 0.112753 -0.573962 -1.048055 0.274630 0.118837 -0.528630 -0.214253 -0.687046 0.667573 0.818372 0.075180 0.421571 0.270071 0.729375 1.401243 0.213442 -0.407172 -0.170507 0.017619 -0.130753 0.019755 0.031876 -0.056323 -0.429483 -0.696482 0.491758 0.719703 -0.504277 0.244854 -0.517367 -0.219916 0.034890 2.111815 -0.593283 0.882205 0.443943 -0.879099 0.435944 -0.702581 -0.454048 -0.273029 0.250940 0.928289 -0.788669 -0.492018 0.906500 1.103203 0.425278 -0.707404 0.769037 0.527146 0.225772 -0.342783 0.431220 0.176664 0.569958 -0.582490 -0.105012 0.703426 1.927515 -0.160671 -0.676801 0.369173 0.262292 0.577062 -0.099796 -0.223343 -0.552474 -0.163650 0.649608 0.331574 0.363092 0.960571 -1.234636 0.511676 0.090519 -0.537225 1.146537 0.185709 -0.587072 0.108157 -0.068654 0.735916 0.641460 -0.042279 0.146270 -0.481008 -0.612217 -0.093627 0.235535 0.242085 -0.657418 0.719660 0.251966 -0.955316 -0.138096 -0.719978 -0.091807 -0.098917 -0.680685 0.494794 0.168851 -1.490837 1.036241 0.508718 -0.416014 -0.044999 -0.782979 0.622683 -0.603952 -0.593755 0.428183 -0.684149 -0.212533 0.301266 -0.198846 -0.016915 0.360395 0.715432 -1.023007 -0.726127 0.974848 0.465218 1.032009 0.590699 0.109848 0.187898 -0.036540 -0.353409 -0.102811 -0.772286 0.387086 0.134243 -0.647271 0.133238 -0.605561 0.555622 0.868402 -0.462994 -0.157140 -0.570405 0.184660 -0.744194 0.227824 0.327444 0.107160 -0.882508 0.031162 0.529062 -0.124817 0.016670 -0.714391 -0.158686 -0.820922 -0.696930 0.209265 -0.493882 -0.052966 0.714446 -0.637807 -0.320632 0.183032 -0.126514 -0.194588 0.136894 0.782003 0.505054 0.006774 0.360559 -0.982956 0.525934 -0.994055 -0.944965 0.528180 -0.483918 -0.761322 -0.562842 0.050626 0.590991 -0.134061 -0.229137 -0.500544 0.304186 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = 0.048181 0.985325 0.696425 -0.134527 0.583046 0.111325 0.225462 0.404426 -0.131287 -1.145571 -0.232174 -1.070601 -1.691478 0.780850 -0.131485 -0.393948 1.350728 0.026318 0.180050 -0.579175 0.231798 -0.611649 1.402003 1.373376 -1.528625 0.337320 0.755616 0.591073 0.444948 0.536955 0.110501 -1.029451 0.390960 0.164925 0.916512 -0.331960 -0.105122 -0.808141 -0.811695 -2.007364 -0.366749 0.589716 -0.243305 0.081226 0.160251 1.383160 1.945757 0.763240 -0.674324 0.419386 0.667335 -0.067600 0.433241 0.088423 -0.102929 -0.652275 0.379770 -0.102111 -0.663755 0.327405 0.044962 -1.741956 -0.421150 1.068477 1.340238 -0.221313 -0.200043 0.143417 -0.208439 0.213795 -0.298013 0.753320 1.087042 0.788151 1.105982 -0.472869 -0.157119 -1.899635 -0.143535 -3.604643 -1.213118 -1.287508 1.191559 0.225127 0.007129 -0.350980 1.529152 0.384407 0.654666 0.858032 1.797642 -0.694027 -0.362452 -0.783805 -0.148682 0.755718 -0.755645 0.312462 0.483180 -0.162337 -0.897470 -0.669876 0.636739 -0.310884 -0.730628 -0.057960 -0.486884 0.769276 -1.395032 -0.006785 -1.835965 -0.651917 0.430536 -1.799340 0.109694 0.281919 0.920536 0.700265 0.008290 -0.328076 0.124188 0.429780 -0.139889 -0.250712 -1.019583 1.326417 0.495290 -0.044210 0.630481 0.724693 0.859687 0.707335 1.323070 -0.045340 -0.565584 0.285392 -0.603777 -0.162510 -0.439270 -0.060893 0.978681 -0.704717 0.147239 0.248297 -0.613016 -0.669930 -0.121086 -0.923243 0.699472 2.137077 -0.116942 0.552160 0.162917 -1.067248 0.662343 -0.416682 -0.803245 0.324723 0.933223 1.101022 -0.580273 -0.507948 0.440079 1.415233 0.416685 -1.090011 0.068233 0.050826 0.087705 -0.618027 0.634851 0.362922 0.286550 -0.450012 -0.099541 0.911637 1.387721 -0.590803 -1.196562 0.024012 0.356929 0.301712 -0.999786 0.180254 0.115700 -0.184010 0.163205 0.021769 0.362446 1.131792 -2.351728 0.929067 0.133978 -0.353562 0.633546 -0.112629 -0.345529 -1.490629 0.843675 1.178495 0.780693 0.414072 -0.133508 -0.496411 -1.145324 -0.105221 0.281540 0.640804 -0.586400 0.958871 -0.259293 -0.596695 -1.062941 -0.935895 -0.031779 -0.024479 -0.507627 0.397087 0.533299 -2.415345 1.427318 -0.524325 -0.754730 -0.395280 -0.501419 0.497281 -1.347408 -1.399663 0.159054 -0.810021 -1.608518 -0.710614 -0.526007 0.307316 0.061911 -0.356055 -0.453082 -1.152468 1.319121 -0.086558 0.598154 0.786961 0.619045 1.863291 0.679195 -0.898204 -0.584354 -0.398963 0.712348 -0.785914 -0.482514 -0.076673 -0.523917 0.471386 1.832656 -0.411967 0.050578 -0.325138 0.789365 -1.188757 -1.064094 0.641776 0.534605 -0.128636 0.994047 0.705802 -0.710300 -0.539563 -1.270432 -0.286123 0.010810 -1.032305 0.159708 -1.393917 -0.223771 1.222168 -0.492855 -0.672858 0.696139 -0.280044 -0.157947 -0.480582 1.066984 2.021306 -1.553533 0.612324 -1.136141 0.746230 -1.606579 -1.069255 0.084600 0.161916 0.266178 -0.244274 0.107743 0.052826 0.215853 -0.868777 -0.730314 0.141629 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = -0.453874 0.089561 -0.096161 -0.827589 1.201511 0.544463 0.554650 -0.365824 -0.989363 -0.792148 0.165172 -2.109222 -1.501134 1.196866 -0.243963 1.134231 2.371115 0.056360 -0.170199 -0.778865 0.745699 -0.382552 2.609914 2.582197 -1.707712 0.335656 0.353184 0.756506 -0.059275 -0.032451 -0.229863 -1.357306 0.695498 -1.324007 0.369625 -0.468802 -0.463168 -0.199898 1.039553 -2.891094 -0.235488 0.413155 0.002480 0.064480 -0.053880 1.148489 2.154348 1.353928 -0.408232 1.313450 1.111130 -0.451632 0.924743 0.253824 0.163013 0.092433 0.239059 -0.020729 -0.683951 -0.176582 -0.348308 -1.018106 -0.040621 1.489901 1.896613 -0.247775 -1.006351 0.754089 0.400790 0.171896 0.225192 1.470158 0.501422 0.569864 1.384395 -1.909182 -0.055206 -3.144935 -0.122470 -3.878802 -1.885385 -0.652450 1.315968 0.044282 1.086162 0.015252 2.687170 -0.192333 0.038884 1.091767 2.069991 -1.784734 -0.601554 -0.570574 -0.270516 0.282810 -0.714015 0.346157 1.041842 0.324670 -1.645212 -0.956013 1.078849 -0.048960 -1.041634 -1.102721 -0.018543 0.875490 -1.343107 -1.158678 -2.024635 0.434384 0.064260 -2.706579 -0.037980 -0.049813 0.874533 0.719245 -0.971964 -1.557573 0.519292 0.340790 -0.596784 -0.777266 -0.386669 1.420262 1.281894 0.227109 0.772992 1.104580 0.855706 2.743511 1.283812 -0.739058 -0.459017 0.570665 -0.681432 0.481895 -0.616864 -0.537723 0.682823 -1.683942 0.667974 0.740730 -1.083495 -0.359419 0.950398 -0.352544 0.183503 4.216707 -0.443568 1.695112 1.266047 -1.520524 1.108826 -1.227177 -0.210111 0.467530 1.313111 1.114460 -1.952746 -1.189830 1.282197 2.380470 0.913108 -2.123046 -0.352024 0.556914 0.700997 -0.501388 0.717604 0.550689 0.833501 -0.849690 0.042705 1.215286 3.360524 -1.078779 -0.736032 0.411634 0.891554 0.275582 -2.100092 -0.429904 -1.589705 -0.427266 0.619796 0.684286 0.483534 1.962913 -2.999841 1.251645 -0.358302 -0.229833 1.605343 0.754629 -1.225774 -2.287580 -0.016808 1.063970 1.490261 0.033863 0.297290 -0.219358 -1.723452 -0.009755 0.423060 0.546957 -1.105365 1.724324 -0.363740 -1.124121 -0.563602 -0.385509 -0.369664 -0.523923 -0.368888 1.185980 0.843381 -2.991120 1.576936 0.058399 -1.260317 0.300849 -0.717457 1.709470 -1.512592 -1.670245 1.065964 -1.063549 -1.000859 -0.486302 -0.425356 0.390041 0.390918 0.111539 -1.204692 -1.651540 2.040284 0.017040 1.851008 1.161463 -0.109658 1.670744 -0.494744 -1.460261 -0.810297 -1.015281 0.114391 -0.402006 -1.019087 -0.844836 -0.740599 1.256864 2.070077 -0.133814 -0.370230 -0.377544 1.356006 -2.290912 -0.332052 0.996145 1.140300 -0.959219 1.005536 1.229889 -1.291693 0.013640 -1.430909 -0.154985 -0.815223 -1.185027 0.885946 -1.284598 0.108789 0.795022 -0.723445 -0.032727 0.859800 0.250249 0.157084 -0.197346 2.032027 2.288064 -0.960307 -0.085437 -1.971251 0.977262 -2.080950 -1.698399 0.413838 0.520213 -1.034117 -0.522449 0.474700 1.095370 0.387428 -1.355448 -1.307812 0.308339 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(std::greater) = -0.033328 0.323643 0.134904 0.011630 0.359738 0.269451 0.142538 -0.002099 -0.126803 -0.241128 -0.116106 -0.392827 -0.456404 0.372895 -0.033840 0.193283 0.541965 0.110540 0.047516 -0.028795 0.077515 -0.203517 0.555257 0.452260 -0.345006 0.146886 0.141195 0.030365 -0.223772 0.484546 -0.262452 -0.570639 0.280154 -0.130615 0.094939 -0.174574 -0.094190 -0.148214 -0.004625 -0.670580 -0.047845 0.228392 -0.013110 -0.053443 -0.020448 0.060403 0.673559 0.263966 0.022031 0.210992 0.027451 0.000000 0.160339 0.129991 0.211678 0.151970 0.152532 -0.225999 -0.343938 0.037700 -0.118835 -0.472346 -0.208651 0.288378 0.396141 -0.026835 -0.086440 0.082179 -0.301549 0.030794 -0.074744 0.201183 0.235001 0.208070 0.204996 -0.132983 -0.022496 -0.282496 -0.195059 -0.807368 -0.398577 -0.349081 0.172867 0.272639 0.291586 -0.080625 0.522154 -0.048964 0.169485 0.016441 0.682879 -0.531707 -0.173693 -0.180900 0.049048 0.060892 -0.216908 -0.027186 0.084628 -0.253660 -0.363199 -0.388766 0.370408 0.060531 -0.189105 -0.113864 -0.087905 0.316337 -0.524364 -0.288311 -0.603684 -0.247191 -0.112395 -0.556960 0.054624 0.218929 0.050776 0.313634 -0.139456 -0.484504 0.228599 0.290191 -0.079130 -0.354675 -0.114516 0.405323 0.096142 -0.033966 0.237701 0.127236 0.221000 0.573657 0.449487 -0.037574 -0.061647 0.046194 -0.125518 0.014483 -0.053847 -0.143684 -0.170947 -0.407231 0.038449 0.269767 -0.270649 0.074028 -0.191947 -0.153089 0.200301 0.605560 -0.171656 0.219463 0.027647 -0.551140 0.286701 -0.258498 -0.263719 -0.064327 0.310987 0.366458 -0.264388 -0.230464 0.246643 0.478123 0.224928 -0.306771 -0.020264 -0.154846 0.148619 -0.087389 0.185716 0.170133 0.176156 -0.292100 -0.050016 0.149753 0.810364 -0.351723 -0.331394 0.214799 -0.088066 0.102314 -0.397257 -0.087254 -0.212941 -0.079491 0.002443 -0.065494 0.025423 0.449305 -0.554166 0.405340 -0.231523 -0.349894 0.388328 -0.005974 -0.105803 -0.212200 0.080280 0.453228 0.395666 0.155495 0.108128 -0.210998 -0.379606 -0.077401 0.003649 0.230290 -0.177735 0.314769 -0.019262 -0.486614 -0.308346 -0.235077 0.070927 -0.289524 -0.157147 0.153138 0.407859 -0.774641 0.509046 0.055732 -0.187178 0.112542 0.054557 0.236513 -0.348334 -0.549442 0.188087 -0.280529 -0.279672 0.038824 -0.119936 0.114249 0.098996 -0.153557 -0.099991 -0.364351 0.360705 0.182349 0.272621 0.239334 0.221755 0.439590 0.229061 -0.413964 -0.087718 -0.219157 0.105541 -0.365312 -0.090948 -0.078468 -0.229080 0.364054 0.601111 0.109030 -0.062877 -0.261110 0.323809 -0.391238 -0.056280 0.411623 0.151401 -0.156401 0.058890 0.404006 -0.192763 -0.250548 -0.232686 0.017892 -0.144079 -0.336006 -0.019983 -0.462792 -0.079078 0.352871 -0.185032 -0.246720 0.143197 -0.045973 -0.049583 -0.178783 0.398072 0.288169 -0.416131 0.226404 -0.274607 0.167924 -0.520755 -0.334336 0.075851 0.189792 -0.187507 -0.102967 0.123015 0.066434 -0.055955 -0.143471 -0.144695 -0.211430 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator-(long) const = -0.089783 0.695328 0.500224 -0.250973 0.811381 0.860361 0.320058 -0.078946 -0.372640 -0.568944 -0.152781 -1.155547 -1.255395 0.952067 -0.157401 0.285188 1.412913 0.095145 -0.045787 -0.268540 0.247829 -0.075698 1.505256 1.395811 -1.156722 0.348081 0.384156 0.166843 -0.102094 0.842622 -0.417770 -1.325258 0.573909 -0.136117 0.421745 -0.302500 -0.331878 -0.517262 0.029686 -1.881045 -0.193534 0.655520 -0.244087 -0.059307 0.175322 0.569034 1.773702 0.734209 -0.097186 0.525368 0.310799 0.061158 0.466504 0.146948 0.398031 0.036738 0.543744 -0.315550 -0.622226 0.089016 -0.207069 -0.892301 -0.501724 0.959287 1.163682 -0.097208 -0.392590 0.077152 -0.213996 0.094734 -0.206103 0.757406 0.767667 0.757450 0.667348 -0.419195 -0.003019 -1.111155 -0.156810 -2.152747 -1.125493 -0.781769 0.696719 0.500670 0.519138 -0.580943 1.530027 -0.030957 0.282113 0.268135 1.724440 -1.141996 -0.323698 -0.478601 -0.016510 0.226717 -0.539637 0.212766 0.239850 -0.500081 -0.990307 -0.841714 0.682536 -0.030346 -0.645810 -0.111892 -0.204494 0.836474 -1.069760 -0.455155 -1.366666 -0.243474 -0.053828 -1.662890 -0.127716 0.219080 0.238355 0.649303 -0.410642 -0.972839 0.443073 0.538196 -0.309605 -0.679574 -0.523532 1.225642 0.660983 -0.037054 0.442865 0.535837 0.693496 1.328290 0.947372 -0.209336 -0.170267 0.176905 -0.293996 0.077225 -0.289611 -0.119637 0.020377 -0.828255 0.052421 0.635750 -0.650206 0.097121 -0.334487 -0.449023 0.369476 2.454055 -0.451236 0.769724 0.279977 -1.273472 0.732379 -0.529069 -0.608382 0.024844 0.780916 1.032955 -1.145420 -0.594846 0.721656 1.459701 0.518509 -1.068373 0.229854 -0.056107 0.123704 -0.582731 0.682776 0.297994 0.431376 -0.636346 -0.134923 0.651947 2.032381 -0.834827 -1.158919 0.242477 0.143966 0.408895 -0.764956 -0.088124 -0.352408 -0.171496 0.305380 0.042642 0.377566 1.163288 -1.791040 1.009945 -0.213180 -0.777668 1.128802 0.082897 -0.456407 -0.533350 0.303473 1.061490 0.939550 0.355415 0.047235 -0.452174 -1.131945 -0.122670 0.157822 0.492706 -0.632574 0.926572 0.035355 -0.951129 -0.692163 -0.738222 0.023800 -0.551356 -0.638069 0.506194 0.678200 -2.156648 1.298259 0.153377 -0.556210 0.042114 -0.339175 0.699554 -1.007707 -1.280715 0.401087 -0.671249 -0.920994 -0.132659 -0.455679 0.298393 0.266737 0.157150 -0.723459 -1.157280 1.162375 0.215817 0.936472 0.729920 0.416242 1.196535 0.421697 -0.925081 -0.372705 -0.934492 0.701875 -0.378790 -0.497512 -0.174320 -0.628472 0.779099 1.482781 -0.100933 -0.246803 -0.802692 0.759677 -1.217871 -0.172008 0.742825 0.497669 -0.472629 0.282549 0.826964 -0.493489 -0.370617 -0.799436 -0.244163 -0.478449 -0.856796 0.232837 -1.042250 -0.079803 0.792212 -0.489496 -0.561210 0.440316 -0.137273 -0.221316 -0.193469 1.039502 1.185691 -1.051111 0.516808 -1.017059 0.785337 -1.364369 -0.990106 0.232627 -0.049166 -0.399622 -0.383720 0.136010 0.295075 0.124766 -0.558423 -0.561000 -0.063136 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::empty() const = 0.037132 0.606819 0.666212 -0.167992 0.475435 0.197619 0.195290 0.270165 -0.274445 -0.681652 -0.122525 -1.044491 -1.195499 0.655853 -0.107627 -0.222023 1.003911 0.075970 0.005516 -0.273166 0.006060 -0.319566 0.998744 1.030648 -0.981368 0.294782 0.167478 0.424452 0.079100 0.705990 -0.124744 -0.869376 0.167884 0.331821 0.619383 -0.160879 -0.186313 -0.492705 -0.563752 -1.500718 -0.202526 0.884966 0.099757 -0.008898 0.246668 0.784643 1.400354 0.532762 -0.239407 0.284461 0.316625 -0.137369 0.499858 0.055521 0.189685 -0.389925 0.635717 -0.230034 -0.622710 0.239175 -0.057151 -1.111609 -0.392102 0.739466 0.943961 -0.083208 -0.249982 -0.210165 -0.124732 0.157923 -0.140824 0.545538 0.679621 0.599259 0.634476 0.139427 0.207628 -0.825020 0.044593 -2.035311 -0.911272 -0.735307 1.018738 0.681691 -0.022960 -0.587654 1.131190 0.099603 0.345987 0.319852 1.316053 -0.487172 -0.292621 -0.445954 -0.144530 0.448487 -0.460144 0.084562 0.262475 -0.082845 -0.702329 -0.298724 0.490512 -0.223409 -0.501785 0.414805 -0.281886 0.584395 -0.936205 -0.005724 -1.181766 -0.312849 0.386704 -1.253504 -0.012680 0.197503 0.047297 0.547213 -0.203532 -0.196941 0.253564 0.136020 -0.223497 -0.026002 -1.207551 1.119082 0.229439 -0.061331 0.399978 0.511544 0.603204 0.380633 0.615867 -0.133486 -0.234380 0.208323 -0.330660 -0.021371 -0.228386 -0.095626 0.330064 -0.494898 -0.055662 0.055768 -0.486786 -0.151769 -0.807663 -0.403275 0.374067 1.486266 -0.231759 0.524350 0.105618 -0.763460 0.792394 -0.125392 -0.523286 0.061231 0.596175 0.792697 -0.368087 -0.390678 0.441861 1.091729 0.348510 -0.642110 0.318544 0.091003 0.071792 -0.394169 0.637369 0.241989 0.276495 -0.410690 -0.106983 0.499316 1.169436 -0.335640 -1.165413 0.052793 0.051834 0.333513 -0.511775 0.153961 0.120868 -0.131652 -0.077058 -0.003934 0.299168 0.850996 -1.615186 0.830750 0.161655 -0.440547 0.922802 -0.301930 -0.278436 -0.876389 0.349891 0.804010 0.708536 0.360954 -0.330204 -0.367461 -0.831715 -0.095649 0.133543 0.418095 -0.474162 0.730623 -0.192532 -0.497268 -0.638501 -1.046838 -0.038071 -0.067407 -0.661281 0.315913 0.537580 -1.540696 0.995129 -0.082811 -0.469551 -0.336230 -0.266638 0.092407 -0.864502 -0.951834 -0.014366 -0.664243 -1.240868 -0.476109 -0.432013 0.078342 0.057912 -0.224623 -0.414331 -0.737879 1.070031 -0.073223 0.604569 0.577991 0.304229 0.995604 1.263538 -0.649532 -0.143032 -0.387781 0.549801 -0.620994 -0.278749 0.148907 -0.489157 0.346849 1.182048 -0.200092 0.042849 -0.541185 0.609372 -0.452145 -0.676512 0.514034 -0.333162 -0.099313 0.559673 0.585486 -0.435875 -0.291800 -0.942990 -0.330907 -0.176541 -0.625131 0.143814 -0.884914 -0.167751 0.763596 -0.460170 -0.616922 0.349180 -0.202862 -0.376433 -0.234522 0.958677 0.967912 -0.882097 0.767913 -0.823457 0.601606 -1.066620 -0.604968 0.021785 0.003319 -0.105491 -0.234354 0.154851 0.028880 0.166914 -0.597914 -0.554588 0.200409 +PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::operator== > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.063285 0.584134 0.288126 -0.266475 0.476963 0.193630 0.147719 -0.018787 -0.171821 -0.694292 -0.072258 -0.749649 -0.972265 0.606020 -0.194686 -0.067769 0.953046 -0.039067 0.052497 -0.449060 0.348527 -0.243709 1.049034 0.942094 -1.053998 0.166702 0.704090 0.412901 0.368204 0.275902 0.167742 -0.789763 0.279839 -0.076452 0.491463 -0.227292 -0.052672 -0.459110 -0.178771 -1.305856 -0.199615 0.198740 -0.126641 0.033757 0.014474 0.588234 1.215573 0.579859 -0.436553 0.317590 0.639071 0.198307 0.165861 0.068226 -0.017276 -0.341211 0.324969 -0.102608 -0.301759 0.068808 0.000218 -0.792574 -0.242145 0.832844 0.972905 -0.102715 -0.130360 0.250901 -0.107161 0.215649 -0.146495 0.527833 0.434768 0.604913 0.687784 -0.629779 -0.134651 -1.627792 -0.090162 -2.387390 -0.765210 -0.724468 0.562320 -0.047086 0.166212 0.162734 1.077533 0.267877 0.305013 0.620684 1.228513 -0.459889 -0.221929 -0.444820 -0.254372 0.484390 -0.505927 0.311575 0.303065 0.020720 -0.625634 -0.584147 0.367650 -0.092508 -0.501495 -0.260125 -0.252233 0.508278 -0.914192 -0.114896 -1.010004 -0.235988 0.138708 -1.311213 -0.261773 -0.018288 0.732092 0.318486 -0.058280 -0.461481 0.081467 0.383304 -0.132599 -0.286566 -0.256375 0.604059 0.523711 0.086711 0.314011 0.387541 0.572664 0.818149 0.801693 -0.141289 -0.315501 0.098579 -0.311584 -0.056175 -0.355834 -0.032591 0.516801 -0.500862 0.369549 0.405869 -0.412197 -0.634901 0.221843 -0.688805 0.426211 1.838531 -0.102015 0.482811 0.276214 -0.792934 0.091624 -0.370332 -0.478638 0.232139 0.603809 0.702515 -0.345280 -0.448138 0.420029 0.985065 0.324258 -0.778369 -0.129593 0.077047 0.015537 -0.357467 0.341097 0.204114 0.061726 -0.324691 -0.118342 0.696557 0.963293 -0.398971 -0.791265 0.093287 0.558361 0.083317 -0.614487 0.030568 -0.225778 -0.024391 0.293126 0.033102 0.329435 0.841901 -1.853243 0.616024 0.184708 -0.142293 0.397381 0.133266 -0.350663 -1.004709 0.544878 0.793800 0.501881 0.069739 0.113694 -0.240877 -0.821005 -0.063044 0.194373 0.392532 -0.460564 0.640943 -0.067980 -0.464601 -0.737433 -0.283640 -0.016362 -0.115378 -0.264592 0.348290 0.303091 -1.782763 1.017675 -0.311102 -0.467678 -0.178924 -0.441386 0.572061 -0.928633 -0.947684 0.239553 -0.497414 -0.784072 -0.299939 -0.280574 0.315895 0.148158 0.161678 -0.399529 -0.625111 0.722585 -0.057965 0.459211 0.509071 0.420110 1.116411 -0.304679 -0.496026 -0.535215 -0.171053 0.454300 -0.294686 -0.457190 -0.224574 -0.309712 0.426825 1.182420 -0.285529 -0.181602 -0.184816 0.559359 -0.978829 -0.517527 0.383109 0.607354 -0.325904 0.571738 0.443308 -0.496392 -0.309835 -0.772590 -0.140903 -0.124254 -0.749964 0.202172 -0.755855 -0.046705 0.738495 -0.324083 -0.349988 0.530314 -0.058355 0.050148 -0.179603 0.583678 1.315011 -0.938278 0.182461 -0.843332 0.404675 -1.144942 -0.903280 0.186853 -0.057683 0.045175 -0.188489 -0.140359 0.250077 0.144198 -0.352775 -0.437941 0.106991 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() const = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/karatsuba.cpp__makeEqualLength(std::__cxx11::basic_string, std::allocator >&, std::__cxx11::basic_string, std::allocator >&) = -1.686400 -1.583773 -0.226782 -2.591430 1.713844 1.106452 1.132789 -1.094025 -3.687707 -2.643707 1.207487 -4.662932 -3.192839 4.341016 -1.265307 2.346681 5.779247 0.921383 -0.927056 -2.133250 3.249068 -1.494368 5.719345 6.566127 -4.423639 0.002704 0.314263 2.005311 1.569076 0.245303 2.212494 -3.709530 1.389285 -2.658214 1.633111 -2.494899 -0.656335 1.991701 2.218613 -7.419873 -0.526698 2.646886 0.710178 0.129914 0.473340 2.518247 3.497232 3.512716 -1.460212 3.869380 3.230148 0.068636 1.933765 0.207319 0.314954 -0.329447 -0.607955 -0.696052 -0.983758 0.467450 -1.037350 -2.134827 0.485672 4.232040 5.642838 -0.816578 -1.873072 0.929875 0.995681 1.377173 1.549042 3.314652 1.151125 0.396755 3.505852 -4.750149 -1.233947 -9.826672 1.134594 -10.583268 -3.463978 -0.592579 4.448779 1.613417 1.393459 -1.137379 6.400602 -0.461994 -1.594746 5.029329 4.981120 -2.663281 -1.229578 -1.906103 -1.905409 1.137289 -2.393891 0.753261 1.576579 1.948822 -3.729197 -3.002267 1.037924 -0.157869 -2.479031 -2.889959 -0.636040 3.546083 -4.060527 -2.379634 -3.303287 2.823428 0.489280 -6.298600 -0.540574 -2.909608 0.994017 1.420959 -2.791796 -2.009783 1.475681 0.341366 -1.378286 -1.276762 -1.932783 3.441898 2.370203 0.784195 0.003832 2.554707 0.924713 5.156108 1.520613 -2.575090 -0.365658 1.896818 -1.066361 1.653463 -3.093271 -1.196924 3.892145 -3.189919 -0.320107 0.480342 -2.499105 -2.262543 2.364660 -1.350634 0.239984 11.611910 -0.526551 4.100638 3.833295 -3.150266 2.744454 -1.065693 0.943756 2.191628 3.701556 1.854582 -4.713253 -3.397890 2.990860 5.986547 2.288022 -4.093148 -2.029917 1.463884 1.246819 -0.971341 2.175925 0.762366 0.190758 -2.204149 -0.217571 2.189238 6.932702 -2.006933 -0.017633 -0.031690 4.251823 -0.647062 -4.563962 -0.385199 -3.987137 -0.374956 1.485556 1.241639 2.114505 4.889209 -8.262567 3.762237 -0.479637 1.033821 2.013139 1.495739 -3.056908 -7.462539 -0.323701 1.645142 3.990651 -0.042604 1.617999 1.031923 -5.140646 0.338189 0.653907 1.418968 -2.970784 4.229052 -1.121367 -1.544341 -1.739602 0.456664 -2.168105 -1.818966 -0.950870 3.127081 3.076264 -5.471996 3.225518 -0.443212 -2.190788 0.185561 -0.571639 4.463540 -4.140639 -4.156109 2.426897 -1.946043 -3.447035 -2.172260 -1.315617 1.880175 0.258454 -0.178091 -2.580420 -4.361991 4.926768 -1.401219 4.749935 2.445301 -1.209116 3.985323 -0.532526 -2.543962 -2.507707 -2.760654 0.740218 -0.685066 -2.104168 -2.216820 -1.037879 2.886013 4.394760 0.113503 -2.408677 -0.072806 4.799663 -4.247765 -0.958318 1.847663 1.699107 -1.542763 2.956743 2.508067 -4.339006 0.510543 -4.011016 0.614217 -1.536322 -2.104171 3.384034 -2.135832 1.174897 0.323326 -0.476786 -0.208333 2.157055 2.123858 -0.448597 0.310409 5.885927 4.805434 -1.714648 -0.153461 -5.123040 2.403665 -4.846087 -3.665142 -0.587152 1.164088 -2.388489 -0.485634 -0.067563 3.221923 2.729383 -1.795862 -3.085782 1.615822 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char, std::__cxx11::basic_string, std::allocator > const&) = -0.016026 0.976969 0.988780 -0.479250 1.722706 0.488475 0.665292 0.487127 -0.514391 -1.711924 -0.322319 -1.160023 -2.692249 1.206101 -0.465898 -0.089975 1.932165 -0.116302 0.568872 -1.161196 0.970076 -1.327082 2.614200 1.993590 -2.784185 0.523806 0.620698 1.196242 0.448227 1.677577 0.289415 -1.611360 0.752677 -0.108001 1.758538 -0.839272 -0.283051 -0.663124 -1.150096 -3.133941 -0.779197 1.275963 -0.649439 0.766643 0.522354 2.407321 2.720619 1.273459 -1.306139 1.625158 1.165171 -0.336712 1.232438 0.394112 -0.196094 -0.606229 0.530492 -0.187679 -1.104718 0.603249 -0.683595 -2.880471 -0.035476 1.522514 2.427569 -0.808796 -0.385998 0.250744 -0.703409 0.563734 0.136315 1.741254 1.448928 0.467236 2.431530 -0.909288 -0.431045 -3.230192 -0.198825 -5.626503 -1.935796 -2.222960 1.683330 0.614545 0.624252 -0.774201 2.889698 0.577541 0.617830 1.435652 2.232713 -1.143828 -0.210821 -1.305052 -0.351826 0.375711 -1.067721 -0.019727 0.863976 0.038358 -1.387567 -0.970952 0.926843 -0.680817 -0.971292 -0.760407 -1.381074 1.622550 -2.522185 -0.484094 -3.091443 -0.267868 0.060890 -2.876782 0.238211 0.066293 1.382497 0.905884 0.425615 -0.072721 0.580339 1.025437 -0.351000 -0.537686 -0.984035 2.480237 1.184903 -0.038219 0.852119 1.334785 0.244480 1.231570 2.703599 0.245225 -1.352655 0.795874 -0.610283 0.200731 -0.638517 0.356429 1.715615 -1.333725 -0.128638 0.192068 -0.551525 -0.779976 -0.090669 -1.512910 1.131115 3.680519 -0.501802 1.087617 0.437665 -1.614258 1.344866 -0.056696 -0.258104 1.240813 1.772601 1.153380 -1.460182 -1.012931 0.843311 1.903773 0.434239 -2.349102 -0.327775 0.081304 0.558258 -0.715485 0.586681 0.751395 0.421051 -0.810268 0.223261 0.251339 2.697836 -1.200607 -2.051687 0.404681 0.714231 -0.355283 -1.835423 -0.131784 -0.394367 -0.721400 0.364498 0.017325 0.140942 1.739459 -3.726240 1.438178 -0.216580 -0.377440 1.309889 -0.245560 -0.016715 -2.834783 0.574879 1.217784 1.183337 0.674031 -0.269736 -0.508740 -1.857822 0.697325 0.217101 1.164015 -0.987169 1.744211 -0.761619 -1.076879 -1.500257 -1.702401 -0.246885 0.076364 -0.790262 0.525266 0.960334 -3.972212 1.457281 -0.942390 -1.451551 0.188320 0.187415 1.451287 -1.383870 -2.179416 0.618247 -1.387774 -2.731013 -1.750477 -0.570218 0.372085 0.197600 -0.837358 -1.065330 -2.296410 2.166115 -0.581464 1.074263 1.359184 0.806205 3.388390 1.103413 -2.100672 -1.316774 -1.046475 1.111264 -1.158915 -0.427633 -0.562903 -0.735868 0.807701 2.809222 0.054651 0.482067 -0.752431 2.123853 -2.170213 -1.277064 1.534015 0.882811 -0.011347 1.898710 1.503265 -0.930648 -1.083331 -1.718212 0.056553 0.036805 -1.056835 0.849430 -2.304563 -0.228784 1.204708 -0.185228 -1.194242 0.903315 -0.210389 -0.136241 -1.392731 2.501413 3.516314 -2.463107 0.733592 -1.273730 1.220376 -2.268286 -1.041456 -0.542500 0.286847 0.591254 0.252738 0.357714 0.650511 0.884873 -1.624543 -0.974534 -0.291655 +PE-benchmarks/karatsuba.cpp__addBitStrings(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -1.800656 -2.227682 0.019583 -3.244658 3.107759 1.626512 1.463993 -2.420185 -4.352801 -2.524902 1.949711 -5.643341 -4.055629 4.908849 -2.115899 3.459293 5.830424 -0.043686 -1.603287 -2.353244 3.559374 -1.277633 7.331898 6.810799 -5.360095 0.128339 -1.078810 2.574479 1.715083 0.398596 2.624586 -2.457322 1.672698 -3.487092 1.207218 -1.673580 -1.114680 1.619656 2.726432 -7.852889 -0.879671 3.391722 -0.691513 0.979465 1.225755 5.027431 3.896935 3.750426 -0.805893 5.730460 3.023007 -0.759933 3.471347 0.312220 -0.104890 -0.941981 0.920306 -0.581824 -1.842362 -0.019175 -1.846296 -2.149672 0.859646 5.030153 6.692894 -1.250192 -2.706908 1.929792 1.901825 1.801217 2.382458 4.847507 0.434323 1.086324 4.443937 -4.372082 0.208365 -8.785280 0.731012 -9.988434 -4.314432 -0.235688 4.840755 1.756192 1.701719 -1.408096 7.834524 0.612073 -2.764949 5.562892 5.442465 -3.092610 -1.065616 -1.517425 -1.846623 -0.086115 -2.617556 0.522563 2.072725 3.560578 -4.574199 -2.368105 0.549028 -0.587801 -2.778556 -2.305002 -1.123096 4.194698 -4.531246 -2.984131 -3.028031 3.444330 0.043978 -7.932558 -1.268769 -2.381671 2.114461 1.647241 -2.259623 -1.564639 2.220870 0.572307 -1.308865 -0.602141 -1.776438 3.932278 3.434013 1.514958 -0.158961 4.304264 0.712960 5.942700 1.464429 -2.333682 -0.749459 1.847391 -0.388490 3.033269 -2.063763 -0.942641 3.557415 -3.697079 -0.079923 0.795856 -2.323166 -1.869835 1.576212 -1.144257 -0.766416 11.264437 -1.411393 5.690597 4.306770 -3.724582 1.161854 -1.456354 1.919590 2.495589 3.581658 2.454204 -4.660280 -3.879748 4.449096 6.768148 2.188165 -5.801425 -0.322158 2.577079 1.296337 -1.255218 2.397544 1.495709 1.020080 -2.842318 0.066300 1.328152 9.047888 -2.656736 -0.516912 0.684694 3.339034 -0.555237 -4.509487 -0.789076 -3.245104 -0.991877 1.730042 2.088239 1.189667 5.402716 -7.597543 4.104881 -0.284702 1.144913 3.402850 1.459149 -3.648717 -7.370884 -2.305376 1.510387 3.569874 -0.099829 -0.094318 1.091658 -5.625011 1.434219 0.811570 1.292543 -2.854254 5.297103 -0.680124 -1.326051 -1.702990 0.364572 -1.354669 -0.499580 -1.271026 3.742282 2.576472 -5.858655 3.173073 -0.422441 -3.275261 -0.089064 0.479105 5.925768 -3.586460 -4.094004 2.525155 -3.575229 -5.257452 -4.133840 -1.531865 0.916913 1.732956 0.258455 -4.258318 -3.411835 5.137631 -2.238462 5.268239 3.084565 -1.568654 5.129076 -0.252081 -3.580088 -2.228835 -3.755204 1.476980 -0.053638 -1.911840 -0.539149 -1.133974 3.244740 4.199977 0.125777 -2.609498 -0.359585 5.386031 -4.091510 -1.186097 2.262912 2.162062 -2.452577 3.943296 2.914313 -3.486951 1.440097 -3.797211 -0.391037 -3.470732 -1.109099 4.449365 -1.534434 0.713108 -0.596619 0.067557 0.180392 2.072288 1.678160 -0.609262 0.251152 7.103466 7.111995 -2.485117 -0.281538 -5.492042 3.955290 -5.163455 -3.725997 -0.421233 0.587527 -2.076625 -0.433741 -0.162073 3.978697 4.153686 -4.820847 -3.949419 2.338305 +PE-benchmarks/karatsuba.cpp__multiplyiSingleBit(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.240609 -0.288542 -0.112843 -0.653277 0.206388 0.189320 0.202215 -0.664612 -0.575726 -0.364904 0.471045 -1.198354 -0.379075 0.651003 -0.362740 0.395125 0.694499 -0.176698 -0.449637 -0.434880 0.169185 0.409415 1.010905 0.956271 -0.489201 0.010617 -0.359335 0.177486 0.322527 -0.499144 0.659274 -0.307678 0.306320 -0.181941 -0.041437 0.269847 -0.212749 0.060083 0.376192 -0.760031 0.000337 0.204506 0.247943 -0.012948 0.044294 0.471293 0.514253 0.509131 0.421807 0.432056 0.338932 0.097134 0.326703 0.027730 0.304490 -0.470328 0.188748 -0.919465 -0.140713 -0.188838 -0.116958 0.125393 -0.200684 0.747612 0.596939 0.100772 -0.386950 0.186140 0.391360 0.293524 0.299325 0.505089 -0.163593 0.448512 0.052829 -0.717277 0.298527 -0.489674 0.098095 -1.140249 -0.510688 0.341953 0.770860 0.515422 0.049820 0.001299 0.835671 0.204525 -0.527417 0.529342 0.754595 -0.275335 -0.203409 0.182014 0.010225 -0.025067 -0.161965 0.495614 0.102403 0.788831 -0.615787 0.486291 -0.021780 -0.120765 -0.309358 -0.061261 0.233079 0.357671 -0.562658 0.053689 0.215663 0.730987 0.303953 -1.026375 -0.086719 -0.333506 0.328233 -0.025815 -0.553756 -0.123951 0.238424 -0.178919 -0.174477 0.225264 -0.946167 0.155396 0.437818 0.393422 -0.164544 0.886727 0.359719 0.990124 -0.419994 -0.355425 0.228621 -0.049119 0.247664 0.477111 0.165258 -0.192813 0.033303 -0.504361 0.336109 0.149627 -0.283376 -0.444464 -0.501696 0.214551 -0.216864 1.440691 -0.228565 0.942451 0.780572 -0.374410 -0.441822 -0.642865 0.215142 -0.014543 0.174637 0.143904 -0.211376 -0.547525 0.756793 0.948748 0.299516 -0.463919 0.514422 0.492575 -0.132496 -0.329118 0.347184 0.032942 0.079443 -0.184606 -0.112381 0.566965 0.969128 -0.026950 0.539180 0.008202 0.184740 0.487955 0.057477 -0.055778 0.169453 0.199582 0.344207 0.508981 0.294314 0.653903 -0.591873 0.575237 0.238505 0.369367 0.430662 0.356294 -0.697953 -0.711908 -0.453899 0.244926 0.352395 -0.402294 -0.041604 0.154314 -0.655975 -0.012238 0.205148 -0.060864 -0.361534 0.362639 0.198559 -0.052609 -0.073270 0.190181 -0.078597 0.396709 -0.237844 0.549684 0.214461 -0.721864 0.518920 0.154452 -0.367802 -0.343339 -0.425108 0.776099 -0.435610 -0.163007 0.107570 -0.601239 -0.814228 -0.168636 -0.197685 0.000561 -0.147946 0.558370 -0.585892 0.272471 0.870375 -0.300910 0.801911 0.327216 -0.198762 0.329032 -0.751246 -0.259204 0.117557 -0.819253 0.112956 0.094920 -0.511716 0.846846 -0.105593 0.345239 0.228691 -0.140678 -0.789022 0.558474 0.260676 -0.538640 -0.150324 0.075067 0.144446 -0.614859 0.546124 0.218324 -0.429932 0.491224 -0.485867 -0.369401 -0.627191 -0.354353 0.509752 0.258453 0.332170 -0.227370 -0.004996 0.069455 0.324986 0.083178 0.053124 0.525254 0.697552 0.511076 0.129033 -0.181143 -0.937067 0.484249 -0.504680 -0.773901 0.320472 0.217915 -0.253643 -0.282881 -0.463088 0.557643 0.544520 -0.721392 -0.610959 0.826693 +PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -4.781223 -5.689350 5.471837 -9.703812 8.077466 0.665011 3.527269 0.230546 -9.904352 -7.530709 2.072799 -6.944435 -14.505830 10.092668 -4.819293 4.166693 7.166439 -2.808548 -3.307657 -10.133576 11.618556 -8.854544 13.794237 8.736625 -17.176057 -0.145030 -2.311870 14.926464 7.468519 6.990320 7.722939 -1.145960 -4.143378 0.120120 13.737654 -3.520754 1.289239 5.704536 -5.973748 -18.649053 -5.066918 15.565053 2.358538 4.431315 4.184691 16.556979 4.457702 10.766618 -6.352956 10.480759 11.680089 -4.162614 9.814392 -0.408886 -3.130413 -3.586468 5.106659 -3.379806 -4.684919 2.397733 -2.088935 -12.578173 7.072772 11.110854 17.085087 -8.773989 -4.494757 3.954310 2.246382 6.743321 4.746475 11.911313 -1.927519 -2.331507 15.573853 -7.025209 -0.259273 -18.128024 8.657678 -26.335650 -11.131982 -7.292145 13.596957 11.821030 0.881692 -7.307000 23.777667 1.779214 -7.119819 14.783928 7.136485 -2.121868 0.284168 -11.636027 -5.927222 0.688440 -7.891241 -6.268044 5.159769 13.478690 -7.877119 1.720293 -0.925933 -4.234378 -7.270676 -2.543344 -11.931144 12.305593 -13.447859 -4.397122 -11.691771 13.383665 2.778798 -17.568828 1.523341 -8.651626 1.764036 -1.412473 4.757180 7.011693 3.624413 3.341602 -3.689879 2.843828 -16.273978 14.820664 8.183647 -4.340895 1.456206 12.227823 -3.359255 2.283244 7.844657 -3.151017 -12.534768 11.653180 -3.213274 5.088078 -4.807746 3.862406 13.261893 -8.638137 -4.392567 -5.043793 -0.077923 -5.157052 -6.090358 -6.150074 3.597949 25.279956 -1.452007 7.996964 4.355564 -3.687886 12.990193 4.818336 3.975156 11.454555 7.847399 -0.655618 -10.447636 -9.119647 8.626528 13.128006 2.551447 -10.082279 -2.306732 4.485934 2.585207 -3.430847 5.503103 6.432045 -1.824358 -1.863596 -0.363271 -5.817320 16.244510 -3.091773 -4.094409 4.071985 8.839392 -9.777651 -11.686677 -0.960603 -3.464562 -9.036779 -0.000219 3.100459 4.896528 11.582713 -18.890420 9.974952 3.149697 1.227201 8.963490 -8.923027 0.781460 -25.933685 -5.333683 0.557171 9.935318 -4.273107 -3.994050 0.949221 -14.108977 9.320490 0.612850 4.351650 -6.275081 12.701215 -8.516576 0.220031 -4.772010 -7.107890 -8.898726 4.952657 -4.655291 3.464608 3.215719 -12.679203 6.156266 -8.865349 -5.927350 1.990590 6.252419 9.519354 -5.175936 -9.144783 5.614759 -1.426932 -16.774009 -17.064293 -3.705271 4.985476 -2.088881 -6.900593 -8.946559 -12.635323 12.830309 -10.299687 9.240007 4.938294 -2.897645 13.284974 12.009838 -9.890447 -5.253274 -8.462821 0.603475 -1.996863 -0.492803 -0.760647 -0.611004 5.033441 7.148385 1.092517 2.004036 -0.451874 18.175913 -4.556745 -9.539326 3.443692 -7.362227 -0.909843 13.915606 7.260496 -7.377208 -2.482342 -16.452304 3.122284 -4.559389 -1.489301 10.992099 -6.562217 1.216306 1.644348 2.021017 -4.434192 4.776974 6.013736 -5.641334 -7.798691 26.281052 15.687492 -6.660178 2.822746 -11.034448 9.426392 -7.496878 0.440548 -8.871646 2.855787 3.597028 4.409675 2.126132 8.911093 11.086342 -11.447931 -6.966766 -1.124358 +PE-benchmarks/karatsuba.cpp__main = -4.269060 4.422000 14.615411 -8.511129 17.131159 2.908742 6.790710 7.939631 -10.332811 -16.709994 -2.821984 -11.440252 -32.706598 17.883821 -4.176127 2.731050 19.490970 -1.591733 0.078946 -14.776259 16.758866 -20.409629 26.514435 17.789828 -33.053733 3.516950 6.665049 21.076671 9.426455 18.643844 3.668015 -10.396423 -0.262006 -0.302410 25.357677 -9.589282 1.455427 -1.980693 -15.460179 -39.409389 -9.786504 23.440281 -3.066479 5.404660 5.882866 32.289902 22.414987 18.517916 -15.620909 15.879545 16.803561 -8.652167 14.628554 1.211590 -5.175443 -4.342177 8.526013 0.433620 -13.986910 6.871220 -2.584414 -34.211367 5.545763 19.199455 31.167441 -14.859113 -5.473006 8.193016 -2.493265 8.118800 1.116413 19.106858 9.970020 1.283742 30.377371 -11.257535 -5.553967 -35.710366 5.903831 -62.176559 -24.216417 -24.345240 22.346402 10.786590 3.624999 -13.031476 40.939293 3.747757 0.447322 21.341702 23.640478 -12.179465 -3.014127 -24.711381 -5.737025 6.370287 -16.937239 -9.153033 14.250518 5.754471 -16.534532 -8.782396 7.264500 -6.041405 -14.379086 -6.085725 -20.970400 23.235709 -26.585401 -10.064677 -35.783759 5.044321 2.625644 -34.176111 6.024605 -2.665914 9.841653 7.177028 9.782846 2.540769 6.129496 12.438498 -5.230913 -4.301639 -20.294962 32.500711 13.079471 -7.698094 10.777682 18.560152 2.003220 7.417000 29.729254 -1.522263 -22.725859 17.541092 -11.788027 3.306573 -10.101648 4.180358 23.148823 -16.578623 -7.266958 -2.356483 -5.178776 -6.525598 -4.381450 -16.107792 13.003515 43.419000 -2.746842 10.133925 0.879762 -15.562473 27.252462 3.384550 -5.070981 16.106921 18.795363 9.279202 -21.785080 -13.765830 11.688052 25.208433 6.418976 -23.607575 -5.816612 0.273181 5.974968 -8.971506 10.309913 13.593638 2.067517 -6.668604 -0.713130 -3.249884 33.248325 -13.965629 -21.889809 7.484498 10.822919 -11.787753 -28.058613 -1.023770 -5.487634 -15.690120 -0.923522 0.606588 7.082920 22.780131 -40.475208 19.216319 -0.153046 -7.219429 17.465484 -13.525679 1.809894 -42.337470 2.174263 12.056979 19.477842 1.833799 -6.265404 -5.514039 -25.210452 11.115360 1.258423 12.157353 -9.623294 23.102120 -14.924274 -7.452741 -15.547560 -18.347380 -10.015265 1.489839 -7.789612 5.066789 9.724196 -37.519734 19.576724 -16.218405 -12.984867 3.977058 7.921656 14.850418 -16.396849 -25.986349 9.981658 -5.459019 -30.436813 -26.679894 -8.558610 9.914825 -0.297182 -16.104895 -11.842051 -31.622403 23.754931 -10.471256 13.432770 12.069021 4.226195 35.388602 24.296958 -22.907757 -13.086152 -13.505703 5.893905 -11.011481 -1.703771 -8.603044 -5.769952 11.788431 25.429290 0.040964 8.098925 -10.181372 28.985226 -19.579120 -19.147357 13.034779 -0.900858 0.236658 22.360676 17.061019 -13.443236 -12.425152 -27.880324 3.261311 -4.002595 -9.410892 10.973704 -24.584610 -3.512905 14.791563 -2.086544 -11.482915 9.939176 3.911166 -8.138256 -19.700864 39.857170 38.955659 -27.304880 9.282100 -18.238036 17.394480 -22.215626 -6.039264 -10.888303 5.751061 7.368938 4.877004 9.353317 7.987667 11.739870 -20.931197 -12.247920 -8.533542 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.129103 1.034879 1.025536 -0.864980 2.233490 0.957810 0.460824 0.091281 -0.599626 -1.541747 -0.531574 -1.521446 -2.696167 1.434493 -0.780282 0.251771 2.135884 -0.271794 0.544534 -1.106974 1.165236 -0.871248 2.842689 1.783821 -3.039150 0.398398 0.846137 1.466797 0.503991 1.921002 0.272320 -2.016911 0.515651 -0.184574 1.699754 -0.936773 -0.245482 -0.568930 -0.706045 -3.422592 -0.822939 1.384917 -1.084250 0.930457 0.770201 2.291611 2.893340 1.409432 -1.488070 1.759903 1.317729 0.139263 1.376175 0.305586 -0.585307 -0.390433 0.969048 -0.390729 -1.031062 0.527456 -0.782816 -2.328598 0.061586 1.811853 2.747820 -0.915903 -0.669498 0.651195 -0.406324 0.512862 0.092709 2.050223 1.147956 1.086733 2.377567 -1.008600 -0.397773 -3.432296 0.025697 -5.133861 -1.868944 -2.256326 1.078701 0.903451 0.509441 -0.646284 3.366401 0.510706 0.521685 1.789024 2.512222 -1.184822 -0.139506 -1.771759 -0.578670 0.233522 -1.070619 -0.309813 0.590623 0.464505 -1.362518 -1.461832 0.458575 -0.762381 -1.189848 -0.806775 -1.579038 1.812295 -2.647516 -0.865566 -3.133244 0.137725 -0.266365 -3.291038 -0.543215 0.060344 1.290898 0.778485 0.670546 -0.601917 0.708357 1.332137 -0.489563 -0.433295 -0.662988 2.542997 1.597349 -0.150994 0.586277 1.442103 0.474003 1.576775 2.451717 0.067110 -1.575591 0.971665 -0.423262 -0.052134 -0.954284 0.610235 1.401655 -1.540421 -0.047911 0.792880 -0.644257 -0.730657 -0.415722 -2.020610 1.153299 4.684123 -0.782563 1.057854 0.352907 -2.061971 1.201918 0.124934 -0.354088 1.075483 1.510805 1.797373 -1.874121 -1.150445 1.210570 2.062905 0.501785 -2.442208 -0.180599 0.075507 0.559230 -0.602495 0.631915 1.118491 -0.141491 -0.743407 0.185834 0.064087 3.365265 -1.217198 -2.424536 0.577887 1.252518 -0.602187 -1.802835 -0.181217 -0.778861 -1.090594 0.856805 0.109499 0.211955 2.031347 -4.173558 1.585589 0.322075 -0.498051 1.325206 -0.424121 0.060055 -2.726431 0.325176 1.470092 1.153872 0.423759 -0.045515 -0.729089 -1.990238 0.951458 0.474711 1.401453 -1.003560 1.917083 -0.623692 -1.340886 -1.495125 -1.205291 -0.482835 0.009868 -1.081977 0.727448 0.820168 -4.317688 1.744743 -1.012077 -1.328942 0.495127 0.054490 1.961729 -1.625971 -2.319752 0.917925 -1.379829 -2.477483 -1.505597 -0.616502 0.515895 0.594537 -0.296149 -1.539093 -2.696448 1.681925 -0.614344 0.899875 1.512195 0.844534 3.158117 0.376763 -2.026533 -1.463439 -1.442238 1.276783 -0.488172 -0.146082 -0.777302 -0.648826 1.111488 2.981841 -0.160523 0.234554 -1.281155 2.042018 -2.223824 -0.896118 1.350564 0.598775 -0.524630 1.540063 1.391266 -0.784680 -1.033423 -1.745327 0.505522 -0.549063 -0.885667 0.797816 -2.498021 -0.582840 1.451406 -0.435671 -1.420881 1.001506 -0.003401 -0.284798 -1.330679 2.711614 3.461883 -2.276229 0.917853 -1.437438 1.528258 -2.638783 -1.288024 -0.562289 -0.274087 0.572280 0.177472 0.297714 0.814303 0.931574 -1.249896 -0.933770 -0.508055 +PE-benchmarks/karatsuba.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::__str_concat, std::allocator > >(std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::value_type const*, std::__cxx11::basic_string, std::allocator >::size_type, std::__cxx11::basic_string, std::allocator >::allocator_type const&) = -0.488474 1.320380 1.686487 -0.605429 3.094094 1.189941 1.436582 0.745807 -1.645081 -2.765009 -0.521792 -3.021049 -5.137158 3.396087 -0.663157 0.996148 5.182455 0.724971 0.562415 -1.965676 2.271846 -3.171665 5.724096 4.943470 -5.170394 0.900432 1.528259 2.066483 0.744842 3.019984 -0.325633 -3.222094 2.022210 -1.822378 2.847563 -2.543816 -0.677843 -0.822207 -0.928134 -7.546372 -1.323888 2.479130 -1.084410 0.812720 0.884521 5.320610 5.530767 3.002324 -2.174291 3.640643 1.772726 -1.523485 2.549933 0.737462 -0.017269 -0.046797 1.081399 0.695016 -2.773813 1.184865 -1.315512 -5.902883 -0.032163 3.348314 5.319559 -1.526697 -1.194846 1.179666 -0.882226 0.847101 0.200243 3.390777 2.951909 1.047875 4.685440 -3.019552 -0.974464 -7.067197 -0.761535 -11.958289 -4.168771 -3.874584 3.547091 0.174202 1.680747 -1.527567 6.333227 0.497708 0.896962 3.095645 5.530091 -3.716777 -1.109336 -2.847965 -0.366725 0.869522 -2.567330 -0.284337 3.031118 -0.761304 -3.512528 -3.209172 2.474962 -0.565956 -2.276909 -1.753013 -2.243757 3.861130 -5.106754 -2.487644 -6.663289 -1.099409 -0.399610 -6.376742 0.960643 0.485111 2.780622 2.718856 -0.226542 -1.921973 1.659459 2.340557 -0.698195 -2.063538 -0.953744 5.501239 2.012803 -0.110712 1.867433 2.737892 0.931823 3.693023 5.885137 -0.257557 -2.101211 1.967140 -2.255133 0.602626 -1.902541 -0.469245 3.304734 -3.551434 -0.476568 0.940723 -2.106441 -0.817769 1.342507 -2.154306 1.951325 8.599204 -0.982146 2.663786 1.118397 -4.119383 3.612927 -0.856476 -0.760363 1.969304 3.978744 2.953378 -4.793883 -2.387127 2.022041 4.960685 1.670605 -5.486147 -1.318225 -0.419137 1.562601 -1.203867 1.686010 1.954366 1.190262 -2.194655 0.267810 0.833766 7.226532 -3.653807 -4.137266 0.779380 0.891690 -0.585969 -5.752259 -0.390904 -1.710025 -1.601768 0.194642 0.114575 0.498474 4.264868 -7.674517 3.716043 -1.475859 -1.468406 3.434395 -0.065803 -0.980897 -6.304456 0.699584 2.986517 3.438240 1.698782 -0.627823 -0.828941 -4.384893 0.852113 0.427219 2.461235 -1.912169 4.191463 -1.547142 -2.662176 -2.872089 -2.470595 -0.266921 -1.316539 -1.066203 1.777184 2.249544 -8.162680 3.646408 -1.448102 -2.967329 0.926189 0.748443 2.921510 -3.674313 -5.309807 1.834160 -2.386790 -4.847934 -3.346198 -1.501216 1.214457 0.929834 -2.194301 -2.057538 -5.725189 4.557913 -1.020290 2.938781 2.822801 1.035456 7.042580 2.295821 -4.555260 -2.798272 -2.217399 1.213584 -2.540382 -0.834082 -2.361481 -1.612794 2.754216 5.990277 0.223696 0.681145 -2.156186 4.628149 -5.199342 -2.201882 3.381509 2.419787 -0.389954 3.206145 3.482357 -2.890868 -1.818336 -3.302222 -0.330495 -0.623851 -2.083326 1.649084 -5.042578 -0.639342 2.353021 -0.849775 -1.759047 1.771919 0.041260 -0.334306 -2.382405 5.512749 7.576816 -5.285855 1.300553 -3.188176 2.951699 -5.194375 -2.710562 -0.711996 1.560143 -0.033469 0.136437 1.884010 1.328906 1.703245 -4.044529 -2.350537 -0.920261 +PE-benchmarks/karatsuba.cpp__std::char_traits::length(char const*) = -0.047959 0.074187 0.150852 -0.097095 0.169069 -0.040761 0.085106 0.002587 -0.187054 -0.288537 0.020654 -0.325482 -0.337677 0.278622 -0.097826 0.057152 0.396993 0.088617 0.021521 -0.205347 0.083720 -0.228953 0.444247 0.449787 -0.380770 0.072168 0.097082 0.203905 0.117136 0.184709 0.039327 -0.273047 0.145170 -0.045471 0.159462 -0.183221 -0.017049 -0.004840 -0.071148 -0.570688 -0.049943 0.136265 0.077063 0.033706 0.037695 0.346494 0.380087 0.245882 -0.102309 0.299784 0.227428 -0.006760 0.151387 0.058174 0.027454 -0.104148 0.158474 -0.180372 -0.188637 0.087118 -0.019847 -0.457826 -0.071060 0.290635 0.418813 -0.078543 -0.056380 0.014940 -0.070522 0.097232 0.077826 0.187622 0.125286 0.112548 0.238713 -0.220717 0.025316 -0.583535 -0.051627 -0.997705 -0.308667 -0.213211 0.394175 0.157394 0.046081 0.035571 0.430770 0.095797 0.045847 0.192963 0.424459 -0.227646 -0.130408 -0.073812 -0.055988 0.175175 -0.217742 0.054169 0.086398 0.118905 -0.245923 -0.163811 0.243737 -0.056587 -0.183833 -0.035782 -0.105422 0.225626 -0.503444 -0.105493 -0.395801 -0.054455 0.083527 -0.463438 0.115922 -0.038266 0.278618 0.167500 -0.075430 -0.083781 0.080283 0.070455 -0.045615 -0.036890 -0.362809 0.281679 0.087056 0.029298 0.111920 0.161313 0.130608 0.299637 0.230672 -0.118414 -0.111806 0.119691 -0.132948 0.058125 -0.161478 -0.089342 0.195626 -0.273149 0.107635 0.008561 -0.193854 -0.201491 -0.011250 -0.121624 0.125977 0.490782 -0.010801 0.233741 0.174870 -0.272173 0.107471 -0.146694 -0.048953 0.146156 0.264172 0.160684 -0.062753 -0.204702 0.126690 0.392930 0.160782 -0.277092 -0.096596 0.025423 0.091004 -0.038347 0.158905 0.100618 0.020184 -0.164950 -0.019937 0.132903 0.438591 -0.092518 -0.110715 0.015050 0.074480 -0.030252 -0.313386 0.008641 -0.049450 -0.011005 -0.004040 0.044549 0.057003 0.340731 -0.721745 0.296792 -0.025945 -0.002619 0.172062 0.003863 -0.158386 -0.514861 0.089499 0.205575 0.287825 0.054183 0.090285 0.031890 -0.341656 -0.023180 0.021137 0.137715 -0.188958 0.258789 0.005404 -0.204364 -0.222308 -0.145654 0.019265 -0.032883 -0.098900 0.174861 0.247848 -0.684451 0.282926 -0.136853 -0.236388 -0.020933 -0.025848 0.214408 -0.351482 -0.318678 0.074136 -0.227878 -0.381874 -0.222255 -0.096389 0.084825 -0.084467 -0.102066 -0.080190 -0.190088 0.318211 -0.092154 0.164441 0.198305 0.031372 0.396850 0.091342 -0.221983 -0.120684 0.003919 0.076285 -0.324539 -0.070456 0.109996 -0.112287 0.172309 0.465811 0.024333 -0.047238 0.063015 0.319132 -0.261731 -0.238387 0.208970 0.140766 -0.027509 0.336657 0.220488 -0.302267 -0.074731 -0.298366 -0.056287 0.012676 -0.205817 0.186731 -0.268338 0.031388 0.182253 -0.041022 -0.173378 0.219917 -0.014112 -0.049391 -0.093159 0.413796 0.496524 -0.267519 0.162747 -0.306802 0.122478 -0.404969 -0.249946 -0.030619 0.153080 -0.080969 -0.000644 -0.032766 0.139574 0.119721 -0.176340 -0.202373 0.069934 +PE-benchmarks/karatsuba.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -0.339036 1.281610 1.549463 -1.414356 3.335246 1.066634 1.069069 0.820199 -1.430988 -3.032192 -0.588773 -3.137955 -4.911965 2.484752 -0.851227 0.677050 4.345654 -0.107591 0.524551 -1.952775 1.982649 -1.979029 5.173176 4.050906 -5.140360 0.817649 1.174346 2.606242 0.841609 2.426246 0.239432 -3.189952 1.152106 -0.747919 2.988991 -1.702428 -0.405095 -1.008260 -1.201424 -6.492636 -1.326311 2.709040 -1.239931 1.127558 0.968083 4.465936 5.054618 2.781871 -2.538881 2.988928 2.558636 -0.560359 2.311173 0.628964 -0.849429 -0.766339 1.017222 -0.419986 -2.112610 0.736836 -0.951471 -4.938775 0.066215 3.115910 4.809865 -1.702474 -1.257756 1.170500 -0.235107 0.762923 0.464047 3.398652 2.396274 0.968744 4.429697 -2.264156 -0.807065 -6.485494 0.017521 -10.552966 -3.915838 -3.820918 3.237130 1.226917 1.085178 -1.512351 6.230103 0.361197 0.947037 3.077571 4.400591 -2.699710 -0.748444 -3.082410 -0.714682 0.958716 -2.323628 -0.537822 1.905523 0.610449 -2.824112 -2.063567 1.590081 -1.163262 -2.218114 -1.722206 -2.293749 3.185282 -4.553457 -1.678751 -5.977167 0.326992 0.214486 -5.867690 0.081395 0.171443 2.205514 1.665786 0.429393 -0.995062 1.075357 1.673349 -0.955882 -0.896073 -2.010438 4.693094 2.520059 -0.231179 1.742119 2.749773 1.089144 3.136697 4.735970 -0.357150 -2.757910 1.975179 -1.435401 0.388851 -1.729626 0.264254 3.091507 -3.072773 -0.150179 0.868180 -1.580503 -1.254234 0.005683 -2.728785 1.871372 8.155556 -0.881631 2.276994 1.150470 -3.362392 2.995663 -0.511849 -0.756041 2.027247 3.166019 2.647107 -3.525929 -2.212610 2.070976 4.356426 1.290367 -4.570637 -0.392739 0.471844 1.363002 -1.361809 1.262918 2.001083 0.796228 -1.523194 0.232658 0.897015 6.122441 -2.198409 -3.608677 0.906278 2.101276 -0.741292 -4.078142 -0.386398 -1.578928 -1.723182 1.090512 0.447025 0.609177 3.921077 -7.177086 2.906795 -0.110772 -0.691953 2.841870 -0.325071 -0.515472 -5.743593 0.631519 2.515580 2.828513 0.705681 -0.039800 -1.001542 -3.736021 1.154986 0.739140 2.176372 -1.778060 3.508086 -1.402785 -1.996272 -2.397680 -2.602442 -0.864496 -0.152883 -1.419744 1.516453 1.888137 -7.350956 3.285397 -1.758697 -2.688986 0.540941 -0.169717 3.330571 -3.268726 -4.216654 1.828427 -2.302775 -4.656668 -2.945832 -1.171277 1.189096 0.651435 -1.261676 -2.294346 -4.852392 4.222024 -0.866589 2.469620 2.610628 0.925051 5.854169 1.638459 -3.712153 -2.398935 -2.434784 1.423966 -1.766168 -0.792403 -1.411061 -1.285277 2.072772 5.265412 -0.282336 0.641098 -1.576955 3.768482 -4.449279 -2.017940 2.639059 1.635093 -0.675383 3.461156 2.830362 -2.315232 -1.663548 -3.607482 0.459204 -0.608748 -2.043969 1.667419 -4.420582 -0.565765 2.678774 -0.792453 -1.945463 1.826579 0.093630 -0.517168 -2.450368 5.310843 6.556730 -4.007995 1.447889 -3.214010 2.657336 -4.763129 -2.527672 -0.706480 0.467433 0.286208 0.175478 1.223594 1.465212 1.513395 -2.926239 -2.330082 -0.460643 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.121920 0.285697 0.408187 -0.646375 0.864158 0.471727 0.001535 0.004627 -0.441503 -0.585623 -0.343180 -0.641559 -0.877482 0.650457 -0.283563 0.224817 0.802941 -0.095795 -0.028022 -0.369115 0.571426 -0.188184 0.849392 0.468034 -1.030773 0.119872 0.307213 0.796978 0.180998 0.910377 0.073339 -0.884425 -0.208248 0.158004 0.693031 -0.419042 0.045540 0.143565 -0.234130 -1.274028 -0.230024 0.716396 -0.169291 0.290655 0.198767 0.315660 0.865491 0.563155 -0.487044 0.398729 0.736403 0.415646 0.363196 0.079622 -0.245737 0.049752 0.455412 -0.496089 -0.231613 0.140618 -0.112284 -0.546620 0.080199 0.664938 0.975357 -0.366399 -0.312525 0.278019 -0.008871 0.208819 0.030994 0.657856 0.060103 0.286685 0.622503 -0.351982 -0.066375 -1.214519 0.461952 -1.506904 -0.565034 -0.792981 0.261276 0.880767 0.065571 -0.260176 1.430817 -0.133868 0.021688 0.685681 0.872060 -0.319866 0.003900 -0.935772 -0.397859 0.157585 -0.401876 -0.471810 -0.107456 0.608256 -0.313467 -0.517786 0.000000 -0.351307 -0.481878 -0.198865 -0.671676 0.777309 -1.029267 -0.296661 -0.983521 0.614019 0.000000 -1.098790 -0.469618 -0.250981 -0.049622 -0.057731 0.239731 -0.304501 0.252623 0.462761 -0.362118 0.063624 -0.612451 0.790819 0.603272 -0.403335 0.073435 0.432920 0.227292 0.518929 0.462623 -0.294757 -0.705825 0.596328 -0.004165 -0.220542 -0.575861 0.286603 0.267171 -0.638998 -0.067273 0.349515 -0.207592 -0.204497 -0.538234 -0.917981 0.421696 2.050129 -0.300438 0.191486 0.047323 -0.635705 0.604691 0.284744 -0.246332 0.353672 0.300556 0.612614 -0.564895 -0.546453 0.558947 0.805971 0.253234 -0.498610 -0.092301 0.008733 0.087317 -0.081087 0.254887 0.467026 -0.381694 -0.051733 -0.139618 -0.131090 1.278044 -0.112958 -0.688729 0.359348 0.794128 -0.518183 -0.479176 -0.106252 -0.583019 -0.484377 0.412174 0.003402 0.363889 0.864003 -1.655478 0.679700 0.405061 -0.241311 0.401959 -0.440328 0.295127 -1.003500 -0.098512 0.576438 0.684530 -0.239794 0.248192 -0.326794 -0.820926 0.354926 0.244458 0.545144 -0.450726 0.570288 -0.118208 -0.419003 -0.408281 -0.248264 -0.529672 0.005239 -0.470888 0.237787 0.294050 -1.416399 0.776428 -0.401064 -0.080756 0.274805 0.030404 0.744227 -0.593252 -0.709667 0.483566 -0.088072 -0.644064 -0.276468 -0.154391 0.520811 0.049863 0.050579 -0.566736 -1.006935 0.426269 -0.148519 0.321219 0.423377 0.241353 0.599820 0.199229 -0.456838 -0.407251 -0.525919 0.355423 -0.008339 0.156600 -0.181724 -0.085429 0.434455 0.907066 0.039332 -0.052055 -0.386567 0.816593 -0.406360 -0.238840 0.318701 -0.335244 -0.364550 0.429477 0.451395 -0.347001 -0.486583 -0.907868 0.476138 -0.263885 -0.340779 0.298659 -0.789756 -0.203993 0.726734 -0.243857 -0.638245 0.501495 0.256650 -0.387460 -0.453664 1.276724 0.631981 -0.337700 0.513251 -0.669793 0.500802 -0.936685 -0.351132 -0.392719 -0.206899 0.037957 0.065565 -0.022947 0.395001 0.181564 0.152600 -0.237687 -0.352285 +PE-benchmarks/karatsuba.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -0.737556 -0.912000 -0.343881 -0.908885 0.475738 0.099009 0.383473 -0.594825 -1.408177 -0.750399 0.337852 -1.430282 -0.612245 1.517374 -0.301079 1.291928 1.884243 0.513612 -0.339322 -0.565285 1.185724 -1.113744 1.555115 1.951979 -0.890095 -0.051725 0.209413 0.699810 0.048587 0.424249 0.629848 -1.236130 0.167591 -1.255394 0.642055 -1.019328 -0.424359 1.247963 1.236777 -2.348834 -0.088985 1.157046 1.029806 -0.032898 0.081573 -0.069263 0.611026 1.028168 -0.180995 1.413198 0.813726 -0.216950 0.845373 0.063148 0.635966 0.619715 0.082084 -0.108801 -0.287811 0.269485 -0.670876 -0.258363 0.514529 1.158275 1.675104 -0.346631 -0.757914 0.243933 0.235083 0.609405 0.546357 1.095924 -0.532710 -0.257073 0.856094 -2.119976 -0.111295 -3.384936 0.608001 -3.067641 -1.043565 0.263749 0.985533 0.666639 0.792165 0.126180 2.077995 -0.566688 -0.856349 1.036051 1.411314 -0.719803 -0.328210 -0.333599 -0.663230 0.054194 -0.526783 -0.302978 1.033558 0.726258 -1.134345 -0.875713 0.635808 0.193390 -0.654059 -0.947336 -0.145682 1.336306 -1.146590 -1.349068 -0.888261 1.088079 -0.207738 -1.844628 0.055670 -1.118820 -0.601589 0.474582 -1.394329 -1.091640 0.898374 0.128133 -0.516831 -0.537873 -0.134959 0.963374 0.492890 0.190235 -0.159920 0.696624 -0.120018 1.774211 0.543524 -0.968018 0.162058 0.787242 -0.433382 0.589160 -0.926419 -0.734928 0.666600 -1.187541 -0.253451 0.084134 -0.837970 -0.413933 0.976513 -0.262525 -0.189334 3.921191 -0.508789 1.416683 1.317380 -0.911835 1.237813 0.020804 0.576036 0.491824 1.295941 0.510915 -1.560934 -1.112482 1.150626 1.949421 0.797814 -1.145622 -1.526942 0.305484 0.568075 0.279487 0.710216 0.134386 0.012979 -0.757518 -0.076876 0.089547 2.266088 -0.779322 -0.207756 0.048804 1.441560 -0.608045 -2.142583 -0.207726 -2.482644 -0.177996 -0.198667 0.206013 0.523180 1.506332 -2.806329 1.394785 -0.392785 0.200757 1.323626 0.458242 -0.825816 -3.515866 -0.665194 0.310278 1.500984 -0.404187 0.575827 0.384338 -1.631003 0.173531 -0.093445 0.518283 -1.127568 1.511894 -0.747828 -0.559373 -0.221147 0.527222 -0.710451 -1.213644 -0.096914 1.016622 1.513293 -1.188066 0.812215 0.180949 -0.434807 0.551817 0.467306 1.272370 -0.967641 -1.266967 0.844311 -0.418856 -0.488613 -0.453191 -0.463175 0.645520 0.103385 -0.411125 -0.541486 -1.014206 1.192037 -0.632035 1.820812 0.643455 -0.664735 0.854358 0.106380 -0.867031 -0.554693 -0.343229 -0.633663 -0.355705 -0.356632 -1.745922 -0.248249 1.090172 1.108271 0.528419 -0.599511 -0.172853 1.772518 -1.170881 0.217723 0.654838 -0.287249 -0.508851 0.541622 0.869676 -1.371731 0.215802 -1.133598 0.339296 -0.733156 -0.290054 1.114137 -0.551930 0.226208 -0.313186 -0.419781 0.143232 0.472083 1.183538 -0.078646 0.179696 1.804802 0.759709 -0.183523 -0.277671 -1.414311 0.401377 -1.287462 -0.708210 -0.503645 0.914788 -1.202636 -0.195528 0.268073 1.086133 0.837814 -0.372266 -0.814429 0.200488 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isadjacent(char, char) = -0.342806 -0.356293 -0.155652 -0.366843 0.202250 0.289019 0.272379 -0.610720 -0.596212 -0.347411 0.347475 -0.975084 -0.393965 0.774336 -0.242457 0.771806 0.874696 0.091737 -0.381090 -0.337564 0.445692 -0.107590 1.116118 1.019169 -0.464916 0.024905 -0.057639 0.296504 0.249669 -0.064216 0.331778 -0.301890 0.491323 -0.722106 -0.039231 -0.161757 -0.209226 0.275447 0.571322 -1.007137 -0.023157 0.304742 0.363309 -0.054678 -0.040755 0.144379 0.462738 0.591601 0.389013 0.662040 0.231104 -0.207610 0.459011 0.131375 0.450269 0.067328 0.272142 -0.636827 -0.300580 -0.163309 -0.257051 -0.359826 -0.074619 0.660204 0.759221 -0.040320 -0.349052 0.342873 0.092031 0.288881 0.335381 0.536421 -0.296819 0.197629 0.299349 -1.061175 0.292209 -0.655366 -0.110831 -1.275226 -0.576420 0.178483 0.549495 0.304132 0.534463 0.241725 0.968835 -0.090155 -0.498030 0.268141 0.859082 -0.695508 -0.251781 0.124608 0.154018 -0.024287 -0.385745 0.183554 0.416964 0.373268 -0.668509 -0.012347 0.421707 0.170962 -0.346655 -0.290920 0.057382 0.598872 -0.801617 -0.601873 -0.256181 0.290497 -0.141705 -1.072018 -0.033291 -0.210589 0.265011 0.257397 -0.593181 -0.627336 0.437176 0.151833 0.008506 -0.395167 -0.169167 0.298496 0.350477 0.292942 0.005689 0.726455 0.152358 1.349269 0.303876 -0.264547 0.165107 0.126306 -0.119714 0.535382 0.039234 -0.425336 -0.134876 -0.737053 0.044422 0.405472 -0.407184 -0.178208 0.061853 0.282263 -0.130908 1.688910 -0.178536 0.846747 0.835231 -0.561210 -0.119639 -0.597997 0.223774 0.101027 0.363589 0.260294 -0.716071 -0.588052 0.687800 1.021907 0.408891 -0.728767 -0.061743 0.158342 0.284741 -0.116791 0.296630 0.178865 0.320687 -0.482117 -0.036472 0.342254 1.241295 -0.596326 0.083829 0.199291 -0.126344 0.051615 -0.856629 -0.199180 -0.390294 0.024433 0.004048 0.306183 0.043533 0.765337 -0.551398 0.735603 -0.171618 0.033311 0.882861 0.346496 -0.628288 -0.950731 -0.460407 0.279771 0.555196 -0.270095 0.033217 0.166156 -0.842085 -0.014223 0.059467 0.071430 -0.356085 0.613469 0.034456 -0.228450 -0.206731 0.245873 0.132487 -0.229318 -0.014488 0.606154 0.468592 -0.728670 0.518531 0.157091 -0.467156 0.156417 0.019122 0.791434 -0.535869 -0.538201 0.385856 -0.495715 -0.619036 -0.238194 -0.147246 0.141513 0.195513 0.000781 -0.451501 -0.008644 0.757386 -0.268202 0.834010 0.349551 -0.178652 0.524496 -0.432372 -0.507869 -0.114059 -0.341194 -0.385002 -0.230148 -0.407145 -0.318245 -0.123766 0.662456 0.564040 0.116102 -0.452395 0.183199 0.619389 -0.998712 -0.111949 0.393323 0.524193 -0.546775 0.414728 0.462104 -0.589256 0.262397 -0.306161 -0.378107 -0.515255 -0.370844 0.563815 -0.118887 0.280819 -0.108658 -0.111665 0.096272 0.268804 0.250553 0.083147 0.198722 0.806903 0.712322 -0.185132 -0.292303 -0.823224 0.351948 -0.675842 -0.637312 0.263929 0.575095 -0.486951 -0.185298 0.083777 0.601328 0.584550 -0.820325 -0.511332 0.249055 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLenUtil(char (*) [3], int, int, char) = -2.435693 -1.863946 -0.046273 -4.119579 2.651401 5.594679 1.421525 -4.174769 -5.096638 -1.973309 2.518238 -7.511727 -3.763086 5.997608 -2.427125 4.109012 6.877183 -0.367668 -3.166230 -1.895563 4.411151 1.020851 8.772247 9.106037 -5.670397 0.233933 0.108478 3.036023 2.162488 0.416349 1.854948 -3.645208 1.879674 -4.549215 -0.578128 -1.791844 -1.704349 1.277758 4.236690 -8.955324 -0.715410 2.561170 -1.533315 0.057643 0.526641 1.670870 5.390446 4.813734 0.125670 4.690245 3.614714 -0.013781 2.665251 0.027305 1.648330 -0.629723 1.502286 -1.103028 -0.497856 -1.381483 -1.467641 -1.414272 -0.100069 6.445379 6.842069 -0.029246 -3.217645 1.513224 1.401845 1.327201 1.785596 5.213457 -0.493524 2.933153 3.771260 -5.970992 1.370607 -7.580408 1.322278 -7.473086 -4.268597 0.939273 4.489645 3.263986 3.202050 -0.700938 8.967830 -1.272923 -3.544541 6.346428 6.949496 -4.901694 -1.110879 -0.732172 -2.608456 0.164345 -2.690191 2.201470 -0.306317 3.151702 -5.306016 -2.562659 0.454559 0.703191 -3.617855 -2.442815 -0.344854 4.212644 -5.780057 -3.119981 -1.841669 4.009145 -0.241900 -9.678533 -5.166335 -3.427993 2.907856 0.972216 -4.464434 -4.401090 2.570971 1.136562 -0.798153 -2.258479 -0.861053 3.278772 4.373631 1.834822 -0.632653 3.630545 2.244102 9.004381 1.457479 -2.645831 0.579361 1.132245 -0.348397 3.292086 -1.297099 -0.743230 0.407108 -4.904384 0.424840 3.567288 -3.015882 -1.877000 0.593050 0.052329 -1.002641 19.991014 -1.319006 7.056269 6.095830 -5.206431 0.716927 -3.102401 0.952561 2.350281 2.659109 3.339308 -8.616900 -4.296337 5.743655 8.880656 2.935482 -6.363232 1.126449 2.984630 0.940392 -1.994173 3.529432 0.562690 1.188724 -3.269191 -0.760127 4.346806 10.892970 -3.363609 -1.848512 1.184210 1.785367 0.159906 -4.359615 -0.630320 -2.695162 -0.007240 4.003217 1.721566 2.599489 6.456642 -7.730394 5.079120 -0.093785 0.011070 4.963245 2.629680 -5.155374 -3.823933 -1.900416 2.543522 4.245948 -0.527443 -0.430218 0.912421 -7.132787 0.187621 2.287135 0.639625 -4.187957 6.288735 1.054930 -2.776568 -2.428703 0.295167 -1.277929 -1.309545 -2.667840 4.859996 -1.106614 -7.404290 4.881141 1.710018 -3.203182 -0.121342 -2.028347 6.133884 -5.024129 -5.707139 3.841729 -3.113309 -4.664871 -1.652375 -1.945387 1.633033 3.845759 1.730663 -6.211112 -4.692045 6.140651 -1.731659 7.254633 3.436456 -1.208810 4.578090 -2.917490 -2.935930 -3.254688 -4.754124 2.601370 1.083109 -4.272779 -3.081891 -1.834492 4.537299 4.739872 -0.685104 -4.072925 -0.665671 5.593312 -5.271471 -0.727265 1.497510 3.700258 -4.995454 2.476918 2.701418 -3.920820 2.336968 -4.116267 -1.588549 -4.565165 -3.393056 5.063004 -0.969518 2.389175 0.436631 -0.515191 -0.106221 2.300873 1.981543 0.402426 2.318223 7.171872 5.703507 -1.381291 -0.723992 -7.690874 4.584861 -6.389510 -6.251889 1.614503 0.832914 -2.880438 -2.166974 -0.797911 5.192462 4.762691 -4.648539 -3.042260 3.233395 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__int const& std::max(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLen(char (*) [3], char) = -2.026582 -2.218876 -1.416796 -2.915914 1.722158 3.029111 1.189111 -2.562806 -4.573601 -1.555095 1.788224 -5.571251 -2.425225 4.891994 -1.493943 3.627756 5.898985 0.649902 -2.267002 -1.452697 3.931626 -0.645647 6.308692 7.064864 -3.971613 0.084081 -0.313893 1.751784 1.289222 0.436244 1.848851 -3.075773 1.446031 -4.083650 0.287525 -2.483131 -1.240373 2.351903 3.600885 -7.469141 -0.314444 2.806822 1.046422 -0.116703 0.207889 1.795953 3.452793 3.716146 -0.354072 3.944960 2.785002 -0.154018 2.278992 0.121978 1.199124 0.494241 0.103104 -0.236179 -0.635615 -0.656176 -1.399628 -1.065441 0.652979 4.647905 5.506718 -0.328988 -2.454708 1.322502 1.167717 1.342374 1.822342 3.765671 -0.329386 0.673003 2.975523 -4.930872 0.144060 -7.351689 1.349023 -8.351716 -2.894638 0.778616 3.912281 2.208880 2.415141 -0.659793 7.024540 -1.539749 -2.744528 5.373182 5.058878 -3.436398 -1.067343 -1.134248 -2.308778 0.260501 -2.014098 0.683816 1.588107 2.408876 -4.121804 -2.505595 0.344621 0.674587 -2.640139 -2.618658 -0.246984 3.334629 -4.530505 -2.859742 -1.770880 3.353501 -0.250608 -7.064375 -2.533622 -3.330273 0.312783 0.952128 -3.812431 -3.339890 2.147069 0.573768 -1.087100 -1.690351 -0.716761 2.765009 2.343309 1.241468 -0.512200 2.479924 0.954097 6.548473 1.035739 -2.737837 0.566783 1.593597 -0.570079 2.385317 -2.043444 -1.563041 1.962321 -4.237808 0.069478 1.526127 -2.581903 -1.349216 1.666204 -0.189841 -0.676215 14.124845 -1.004275 5.378614 4.614447 -3.754440 1.865710 -1.576277 1.272699 2.001675 3.056945 2.020982 -5.727984 -3.635851 4.014637 6.777182 2.526252 -4.303506 -0.826593 1.898342 1.107491 -0.487767 2.381927 0.356955 0.560822 -2.694076 -0.523538 2.302701 8.451402 -2.446154 0.586519 0.624497 2.923987 -0.860919 -4.359421 -0.606225 -4.447636 -0.076918 1.850049 1.102624 2.159899 5.166955 -6.425755 4.359397 -1.050986 0.594314 3.103545 1.924185 -3.633349 -5.807165 -1.833977 1.535309 4.178508 -0.742725 0.288492 1.180997 -5.538244 0.216240 1.154802 0.855612 -3.353416 4.850227 -0.198923 -1.825684 -1.423801 1.235071 -1.525581 -1.928768 -1.163930 3.697002 1.018166 -4.461788 3.368744 0.858253 -2.190196 0.221079 -0.091222 4.044669 -3.790247 -4.327100 2.951865 -1.756449 -3.029500 -1.493834 -1.466850 1.925025 2.059189 0.153015 -3.781818 -4.375756 4.992164 -1.686870 5.808184 2.564493 -1.599727 3.279958 -1.427175 -2.328062 -2.728518 -3.078301 -0.017120 -0.100149 -2.519384 -2.656262 -1.230723 3.651231 3.698406 0.357023 -3.079031 0.065469 5.163986 -3.221112 -0.339435 1.564234 1.493026 -3.070611 2.161839 2.482115 -4.009543 1.459474 -3.542156 -0.098355 -2.854509 -1.985244 4.046457 -1.182516 1.688450 -0.210996 -0.454363 0.332303 1.822803 2.376334 -0.098979 1.435192 6.271663 3.056863 -0.803066 -0.580927 -5.580063 2.991963 -4.814153 -3.974354 0.039108 1.821703 -3.017766 -1.095895 -0.016480 4.088506 3.395111 -2.864654 -2.646434 1.997593 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 0.339031 0.900849 1.655839 -0.725370 0.432990 -0.307636 0.054936 1.033702 -0.485322 -1.832888 0.229196 -2.490310 -2.458582 0.853819 -0.605859 -1.894746 1.189323 -0.466457 -0.029802 -0.679658 -0.801554 0.467513 1.182596 1.419249 -1.807420 0.271515 -0.308301 0.907322 0.525381 0.646493 1.060583 -2.021206 -0.560720 2.449696 1.494820 0.810182 -0.250067 -1.351633 -2.235273 -1.954825 -0.439802 2.624509 0.074745 0.091632 0.964608 1.916212 2.239859 0.652997 -0.621276 0.133787 0.964511 0.262293 0.664832 -0.387204 -0.081750 -2.473454 1.185057 -0.878827 -1.043559 0.677545 0.113454 -1.320037 -1.210461 1.409204 1.356826 -0.064758 -0.407999 -1.460851 0.227025 0.623971 -0.163262 0.820606 1.644179 1.577419 1.069725 2.238514 0.262473 -1.058436 0.939722 -3.591484 -1.351472 -0.935483 3.054089 2.259830 -1.781847 -1.902546 1.547149 0.595213 0.457021 1.412769 2.024605 0.979179 -0.519108 -0.756459 -0.803879 1.166143 -0.684281 0.484410 -0.225046 1.018841 -1.013212 0.852867 -0.498722 -1.178427 -0.632327 1.998860 -0.499955 0.538353 -1.515508 1.808357 -1.487591 0.389174 2.410470 -2.056059 -1.128359 0.253824 -0.349331 0.724947 -0.446048 1.697314 0.223486 -0.878636 -0.714109 1.841065 -3.804000 1.859249 0.115490 0.334361 0.338609 1.329231 1.518211 -1.072955 -0.222548 -0.275405 -0.328776 0.151277 0.080716 -0.141666 -0.061984 0.375254 1.016986 0.115981 0.506280 -0.934548 -0.583805 -1.442206 -3.747961 -1.051879 0.537241 1.940382 -0.501416 1.055819 -0.026531 -0.521229 0.851992 0.303166 -0.808346 -0.311006 0.562681 1.311543 1.537729 -0.257312 1.047052 1.702091 0.283043 -0.408783 2.177182 1.259253 -0.347105 -1.076867 1.513504 0.285755 0.119519 -0.262452 -0.321366 1.270751 0.626920 0.837682 -2.592466 -0.637374 1.121528 1.633480 1.512123 1.135565 1.845986 0.240742 0.667177 0.174312 0.985083 1.137913 -3.478485 1.174244 1.981874 0.161983 0.951060 -0.861571 -0.543595 -1.391172 0.682161 1.146811 0.774196 0.909333 -1.132989 -0.611960 -1.007490 -0.030687 0.488642 0.639800 -0.764056 0.909241 -0.434834 -0.116773 -1.144221 -2.918371 -0.565921 1.411073 -2.125064 0.265593 0.568754 -2.640025 1.632785 -0.245062 -0.629469 -2.407190 -1.095093 -0.413821 -1.502910 -1.063329 -1.044374 -1.872060 -3.755537 -1.099319 -1.156113 -0.583206 -0.089908 0.583996 -0.660800 -0.603551 2.442523 -0.300909 1.211746 0.801847 0.250390 1.618643 2.924574 -0.293501 0.498195 -1.111242 2.629977 -0.977846 -0.541387 2.224159 -0.661274 -0.414934 1.121947 -1.253389 -0.347192 -0.961169 0.393528 0.729689 -1.632763 0.090217 -2.184166 0.236239 1.697323 0.440184 -0.522659 0.130312 -2.479023 -0.689293 -0.598332 -0.861120 -0.033267 -0.962675 -0.261338 1.188301 -0.654909 -1.623691 0.194279 -0.635004 -1.346352 0.115549 1.380468 1.530631 -1.234942 2.362631 -1.866509 1.366789 -1.479430 -1.299127 -0.090137 -1.283373 0.455826 -0.526235 -0.832888 -0.410959 0.589696 -0.992982 -1.472585 2.131307 +PE-benchmarks/cut-vertices.cpp__Graph::Graph(int) = -0.886871 -0.353017 0.767178 -1.783412 1.162852 0.995514 0.410560 -0.848063 -1.389678 -1.018199 0.615275 -1.692805 -2.233590 1.857005 -0.732418 0.245240 1.180535 -0.765547 -0.888833 -1.231136 1.149372 -0.763242 2.130421 1.889254 -2.224627 0.037407 0.101549 1.481186 0.369871 1.118776 0.558282 -0.957366 -0.791572 0.322133 1.440981 0.537627 -0.555454 -0.048229 -0.216505 -2.469148 -0.400903 2.355885 0.393642 0.063368 0.382942 0.544310 1.484941 1.397248 0.112313 0.749775 1.513490 -0.208230 1.396938 -0.301156 1.203996 -0.464769 1.912759 -0.270240 0.003629 -0.066071 -0.674896 -0.346056 0.109076 2.011536 2.134391 -0.659266 -1.068819 -0.334929 0.157511 1.216118 0.360379 1.714488 -0.116849 0.616049 1.745560 -0.498202 0.635133 -2.231303 1.250257 -2.368168 -1.583015 -0.045413 1.320372 1.700051 0.331098 -0.682506 3.176779 0.016607 -1.104992 0.375170 1.701236 -0.088378 -0.043586 -0.372897 -1.274213 -0.092360 -0.607702 0.066458 0.039322 1.393582 -1.574929 0.246495 -0.008691 -0.231418 -1.336363 0.396940 -0.941650 1.421743 -1.071854 0.010450 -1.000993 1.457096 0.503980 -2.910461 -1.080448 -1.563999 -0.729368 -0.067344 -0.867762 -0.027394 0.966174 0.353118 -0.692274 -0.066005 -1.845405 1.805799 1.437511 -0.019921 -0.182868 1.116752 0.356121 1.015353 0.282424 -0.621162 -0.650769 0.724482 -0.269446 0.690223 0.001976 0.379471 0.718355 -0.619811 -0.196263 -0.224526 -0.324728 -0.343018 -1.107959 -0.749597 -0.108865 4.672193 -1.082331 1.772666 0.783706 -0.948689 1.428544 0.419648 0.109870 0.641787 1.173942 0.742509 -1.264409 -1.268969 2.038357 2.466819 0.569046 -1.306027 0.677188 1.105986 -0.004866 -0.873666 1.568050 -0.033170 0.077404 -0.618754 -0.375504 0.187470 2.679102 -0.765686 -2.313946 0.479028 1.248655 -0.118901 -0.632566 0.264718 -0.925206 -0.489129 0.194284 0.421053 1.140751 1.856154 -2.952604 1.621538 0.397448 -0.606102 2.486144 -0.870997 -0.535934 -2.568023 -0.257748 0.330477 1.511726 -0.086827 -0.898480 -0.343271 -2.090822 0.634756 0.060827 0.463797 -1.581240 2.139944 -0.901035 -0.653609 -0.675386 -1.503704 -1.005771 0.338657 -1.618982 0.726364 0.251304 -2.259252 1.628963 0.325285 -0.484548 -0.575251 -0.030336 1.081709 -0.758619 -1.530843 0.521359 -0.989697 -1.603908 -1.359758 -0.941176 0.305390 0.238231 0.027909 -2.069772 -0.816651 2.082945 -1.249009 2.441331 1.017563 -0.231894 0.920019 1.954041 -0.864280 -0.298732 -0.854501 0.772522 0.213425 -1.232039 -0.466484 -0.742961 0.888183 0.922984 -0.221979 -0.234707 -0.894606 1.952432 -0.411230 -0.582716 0.074324 -1.322431 -0.856218 1.212365 0.776571 -0.307633 0.103344 -2.181086 -0.450106 -1.924871 -1.227398 1.424337 -0.373501 0.551350 0.139536 -0.203861 -0.537453 0.304441 0.600804 -0.746823 -0.007201 2.552141 1.203992 -0.967823 0.373363 -2.267286 1.778210 -1.079125 -0.678853 -0.204823 -0.335185 -0.407153 -0.668487 -0.645870 1.278532 1.260447 -1.004509 -1.049320 0.731554 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/cut-vertices.cpp__Graph::addEdge(int, int) = -0.207629 0.487799 0.710325 -0.603055 0.754452 1.121903 0.276523 -0.281601 -0.616820 -0.653736 0.004449 -1.382057 -1.318310 1.109193 -0.425102 0.196855 1.541574 0.062704 -0.304055 -0.381476 0.422605 0.137492 1.806434 1.739347 -1.420464 0.252384 0.326687 0.766053 0.238120 0.805545 -0.082842 -1.133776 0.389058 -0.163270 0.298001 -0.375291 -0.287049 -0.425646 -0.125558 -2.148592 -0.225758 0.688432 -0.513368 0.008501 0.265403 0.440363 1.795158 0.915251 -0.038145 0.601908 0.548565 0.208105 0.535907 0.083012 0.346667 -0.186662 0.740920 -0.544874 -0.492764 -0.041565 -0.176873 -1.004478 -0.409280 1.293690 1.399073 0.035829 -0.450303 -0.035715 -0.079355 0.187764 -0.010697 0.922614 0.369510 1.020899 0.781000 -0.549021 0.374274 -1.086776 0.077094 -1.834732 -1.161519 -0.700530 0.982812 0.926853 0.438551 -0.386730 1.803415 -0.096516 0.106437 0.802341 1.786177 -1.064380 -0.304424 -0.468897 -0.296752 0.358885 -0.642834 0.317974 -0.238620 0.166782 -1.059314 -0.641479 0.460506 -0.021103 -0.783408 0.076260 -0.272536 0.982118 -1.420744 -0.405713 -1.197009 0.144534 0.070884 -2.006226 -0.901309 -0.122971 0.719090 0.485326 -0.491112 -0.862902 0.463086 0.556744 -0.146803 -0.411900 -0.731987 1.111417 0.780983 -0.037090 0.246582 0.716530 0.691291 1.467165 0.800806 -0.243129 -0.174979 0.291639 -0.311569 0.129923 -0.267389 0.029452 -0.183725 -0.934183 0.065019 0.834763 -0.698001 -0.288385 -0.750103 -0.362115 0.362175 3.635235 -0.365216 1.015689 0.649424 -1.302250 0.385130 -0.520316 -0.435057 0.242592 0.623353 1.068468 -1.456415 -0.718430 0.835498 1.730116 0.586654 -1.131387 0.561812 0.154608 0.056481 -0.575498 0.818810 0.261799 0.282272 -0.665407 -0.194889 0.898380 2.137334 -0.665783 -1.420188 0.239282 -0.005284 0.248310 -0.655044 0.012613 0.068492 -0.109196 0.645692 0.094124 0.461225 1.342214 -1.896064 1.149993 0.129787 -0.527145 1.255378 0.055455 -0.620021 -0.353579 0.156390 1.053553 1.008436 0.190598 -0.275531 -0.289846 -1.387440 -0.098871 0.447877 0.509975 -0.775528 1.174062 0.272788 -0.917842 -0.842241 -0.799180 -0.012022 -0.212927 -0.880506 0.682669 -0.027183 -2.263055 1.406258 0.165344 -0.666402 -0.044295 -0.567136 0.875931 -1.261975 -1.438877 0.513147 -0.672698 -1.309578 -0.314565 -0.513330 0.391126 0.638030 0.283425 -1.139230 -1.015248 1.274140 -0.000222 1.106633 0.809169 0.307506 1.321654 0.255929 -0.788818 -0.472717 -0.974147 0.951325 -0.192234 -0.695056 -0.251756 -0.623938 0.830020 1.597008 -0.293416 -0.451401 -0.603867 1.072675 -1.118049 -0.486947 0.557549 0.477193 -0.695962 0.510108 0.750442 -0.681069 -0.188724 -0.958703 -0.412671 -0.563732 -0.964697 0.603355 -0.924936 0.178426 0.821408 -0.358289 -0.630573 0.530744 -0.053034 -0.123107 0.099323 1.344499 1.403520 -0.840485 0.568726 -1.358384 0.966789 -1.574328 -1.162813 0.244836 -0.160569 -0.224341 -0.359900 -0.116135 0.604120 0.547470 -0.787802 -0.548969 0.264206 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/cut-vertices.cpp__Graph::APUtil(int, bool*, int*, int*, int*, bool*) = -3.433521 0.605171 2.403373 -7.700609 5.477985 10.305247 2.014041 -6.202782 -6.753696 -4.902977 2.594379 -12.206229 -8.393186 9.835193 -4.455176 4.574388 12.405856 -1.279832 -4.365926 -3.751247 7.405584 2.304756 15.537222 15.472628 -12.005554 0.690860 3.332252 6.649653 4.610970 1.767476 2.996921 -7.651372 2.660561 -5.716439 0.812157 -2.874623 -2.249274 -0.802930 4.588752 -16.580741 -1.789549 3.335014 -5.078741 0.212068 1.022038 1.802303 12.331279 8.498804 -1.399410 5.829201 7.362136 2.337213 3.483152 0.002598 1.786531 -2.028588 3.353037 -2.658888 -0.639598 -2.105112 -1.588900 -3.598793 -0.730501 12.324770 12.392636 0.303978 -4.633805 2.785314 1.973576 1.956980 1.195529 9.045294 0.170379 7.756507 7.103089 -10.853418 2.094465 -15.132042 2.176588 -14.149587 -8.539927 -1.963312 6.413431 5.414603 5.109656 -0.773935 15.880640 -1.102769 -3.015309 11.175844 13.689437 -8.257988 -1.654366 -3.525376 -4.999107 1.921222 -5.200425 4.420932 -2.428684 4.513983 -9.019355 -5.759740 1.179034 0.900425 -6.943205 -4.063251 -1.314170 7.727406 -10.111625 -4.531613 -5.422529 5.496452 -0.387675 -17.932290 -10.003120 -5.336444 7.474751 1.426979 -5.501874 -8.426158 3.199164 4.051572 -1.264976 -4.197782 -2.175742 6.361839 9.143101 1.960825 -0.283056 6.015517 5.405165 15.205338 4.433816 -3.581565 -0.594261 1.664914 -1.459023 3.173676 -2.978184 0.340286 1.018368 -7.706805 0.580487 8.208854 -5.192943 -4.636712 0.647626 -3.069455 0.699168 37.619206 -2.244416 10.650587 9.027916 -10.220345 0.824324 -5.061107 -1.181921 3.893106 4.638290 7.781257 -15.891371 -7.280548 9.068517 15.314348 4.841768 -10.749218 2.217818 4.112525 0.143667 -4.730396 5.929842 1.109135 1.097633 -5.274454 -1.765723 9.372204 18.172183 -5.512649 -6.753378 2.127294 4.140292 0.391457 -6.910849 -0.759307 -3.361413 -0.165800 8.098396 2.289086 5.340108 11.644995 -16.104609 8.512851 1.575494 -1.032800 8.099321 3.566263 -7.798543 -5.736168 0.065002 6.945159 6.891135 -1.166150 -0.230997 -0.283569 -12.521452 0.033427 4.586580 2.501317 -7.415761 10.610623 2.181510 -5.891434 -6.343232 -0.768805 -2.489352 -1.854359 -5.529709 7.525028 -2.671514 -15.843519 11.000815 1.667860 -5.312540 -0.189581 -6.270522 11.193741 -10.447263 -11.217917 6.600260 -4.921727 -8.202490 -2.294607 -3.601690 4.002875 6.651181 4.174141 -11.511849 -8.702653 9.713997 -1.879485 11.128036 6.477421 0.761367 9.655328 -5.859028 -4.827740 -6.604127 -8.658410 6.830362 3.038842 -8.305800 -6.176359 -3.811638 7.617041 10.852982 -3.182172 -6.567904 -2.037108 9.093916 -11.064041 -2.553555 2.383112 7.335584 -9.052575 3.759389 4.477937 -6.214126 1.646274 -8.103778 -2.321834 -6.785313 -7.954135 7.460124 -3.793413 3.347226 4.092559 -1.829221 -1.721542 5.018579 2.429806 1.258745 3.291205 11.053950 11.993969 -4.275653 -0.665021 -13.590537 8.008771 -13.010934 -12.067546 3.236595 -1.000758 -2.612209 -3.804822 -2.301689 8.277634 7.008302 -6.204975 -4.476940 4.378961 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/cut-vertices.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/cut-vertices.cpp__Graph::AP() = -3.212244 -1.474550 0.681249 -6.186444 4.210589 5.684249 1.769703 -4.412833 -6.151130 -3.662633 2.915884 -8.536902 -6.584186 7.936989 -3.068908 3.625173 7.850925 -1.591257 -3.705127 -3.877027 6.068858 0.104152 10.625453 10.145829 -8.396866 0.112640 0.612061 4.370903 2.806914 1.373093 3.348867 -5.002437 0.531048 -3.676361 1.595481 -0.574850 -1.713480 0.703791 3.306258 -10.967982 -1.037051 4.806378 -0.646853 -0.165445 0.497428 1.640179 7.212468 6.412460 -0.547451 4.110782 6.091701 0.436121 3.441845 -0.208820 2.342188 -1.427281 2.891390 -2.070106 -0.377248 -1.319319 -1.933074 -1.411232 0.176028 8.689993 8.769842 -0.739937 -3.887765 1.801573 1.150211 3.163914 1.903417 6.511724 0.155767 3.293810 6.028284 -6.285443 0.410022 -11.488958 2.547405 -10.697681 -5.955204 0.146621 5.513816 5.022964 3.203585 -0.450654 11.864180 -0.973350 -4.024222 7.237354 8.601202 -3.928429 -1.259388 -2.357116 -4.513160 0.657222 -3.488325 2.223473 -0.710780 4.707383 -6.893288 -2.451451 -0.021059 0.435744 -4.959561 -2.949182 -1.434982 5.681383 -6.230750 -2.423264 -3.202609 5.959025 0.538901 -12.506208 -5.362254 -5.321179 1.803644 0.516873 -4.464813 -4.068727 3.105053 1.759075 -2.164888 -2.383520 -2.941855 5.072523 5.688473 1.812408 -0.667033 4.455294 2.847394 9.087392 1.975798 -3.207224 -0.613876 1.553491 -0.538630 3.427915 -1.603539 -0.154845 2.409683 -4.929096 0.529569 3.087236 -3.040247 -3.573638 -0.241158 -1.990958 -0.307662 23.515309 -2.265842 8.118141 6.075463 -5.994041 2.504893 -2.510961 0.412265 2.809206 4.232941 3.909663 -8.701440 -5.765232 7.694466 10.703480 3.473459 -6.912677 1.100320 3.910811 0.561541 -2.657449 4.701916 0.827704 0.742449 -3.755467 -1.371497 4.832578 12.963197 -3.736021 -3.483413 1.947618 4.815995 0.026484 -4.882794 -0.391054 -3.687728 -0.503924 4.497427 2.192612 4.241177 8.464881 -10.725348 6.452907 0.466921 -0.264550 6.157446 1.032078 -5.242342 -7.033303 -1.134817 3.187782 5.769080 -0.620898 -0.864275 0.075052 -9.087619 0.996074 2.081565 1.345887 -5.408876 7.988124 -0.923055 -3.351334 -3.707045 -0.901397 -3.128799 -0.188634 -3.915739 5.034947 -0.146243 -9.447241 7.211604 0.945710 -3.111581 -1.024765 -2.376919 7.551225 -5.538446 -7.250420 4.334936 -4.003629 -5.913157 -3.007325 -2.669108 2.489776 3.497845 1.822402 -7.729530 -5.564247 7.669220 -2.787296 9.499655 4.354296 -0.750690 5.476109 -1.049056 -3.462453 -3.945834 -5.414767 3.064600 1.561111 -5.981625 -3.544982 -2.567944 5.344843 5.562848 -1.464307 -4.431381 -1.704849 7.438860 -6.024571 -2.135316 1.523959 1.486429 -5.784956 3.909548 3.585936 -4.127580 1.644522 -6.891453 -0.599538 -6.186267 -5.474362 5.658437 -1.364553 2.863202 1.049081 -0.444161 -0.811270 2.557526 2.667773 -0.171231 1.433474 9.348137 6.616227 -2.854336 -0.743044 -10.002711 6.345129 -7.556624 -7.188494 1.439685 0.194100 -2.714362 -2.528882 -2.012017 6.311580 5.269797 -4.318561 -4.154275 3.492933 +PE-benchmarks/cut-vertices.cpp__main = 0.932917 0.262126 2.678187 -1.236205 0.314952 -2.455958 0.230364 3.918281 -2.073073 -3.114536 -0.185512 -1.954779 -3.209468 1.353660 -0.122435 -3.920224 2.665419 1.296141 0.367983 -1.717408 -1.493832 -0.456635 1.112080 2.454161 -2.410154 0.975238 -1.532418 1.716205 0.801560 1.578413 2.249440 -2.529771 -0.903742 4.265270 2.698425 -0.925640 -0.705337 -0.676660 -5.076421 -4.519797 -0.108083 4.218479 0.362654 0.309545 2.169653 4.688598 2.416585 0.626183 -1.393244 1.628818 1.075163 0.654177 1.046075 -0.467944 -0.312946 -2.486276 0.542615 -1.430654 -1.754322 2.194850 0.149386 -3.400257 -1.244929 1.130109 1.583304 -0.693176 -0.851976 -3.345253 0.838138 1.240346 0.820272 0.615138 2.838079 -0.181235 1.723324 3.573758 -0.893086 -2.459875 1.990411 -8.622774 -2.250123 -1.678265 7.585585 3.043369 -4.261256 -3.086042 2.033550 -0.161889 1.262939 3.069087 1.567833 2.680642 -0.834422 -1.208294 -0.870201 2.563959 -0.402618 -0.866939 0.453661 1.972479 -1.194455 1.730918 -0.145671 -2.804594 -0.982746 3.139146 -0.740049 1.775289 -3.515568 3.155902 -3.070437 2.335613 4.479071 -1.585077 -0.886086 -0.056397 0.550004 1.440016 -0.858026 4.581954 0.462828 -2.170997 -1.450567 4.257206 -5.954697 3.031811 -1.403819 -0.256142 0.573739 2.068720 0.811189 -3.093106 0.230350 -0.829602 -0.409322 1.990803 0.389129 -0.705529 -1.069418 0.224455 2.228082 0.188723 1.105511 -3.420026 -1.305622 -3.079883 -5.519704 -1.031864 0.782250 1.262342 -0.343404 1.295015 0.096293 0.525282 1.312626 1.690655 -0.330775 0.654788 2.022416 0.874996 3.690082 -0.108506 -0.356654 2.203343 0.799322 -0.431622 2.237184 0.978737 -0.687672 -0.107183 2.458780 -0.285379 0.642147 -0.236762 -0.299311 0.250479 0.316458 2.398082 -3.803195 -2.322692 2.145791 1.265344 2.207032 2.140371 3.324508 0.199018 0.952032 -0.383606 1.421695 1.467868 -6.244865 2.092881 1.893662 1.031252 -0.227715 -0.738509 0.265115 -3.847303 -0.137139 0.475307 3.303144 1.409195 -1.624838 0.123626 -1.368161 -0.242949 0.753039 1.139176 -1.174841 1.314952 -0.673378 0.642152 -0.120693 -4.353641 -0.854196 3.014864 -2.434973 0.094982 1.231882 -4.636645 0.855494 -1.388853 -0.846570 -3.001679 -0.084564 -0.652704 -1.680123 -1.199746 -1.705074 -1.153236 -6.812280 -2.526529 -1.944492 0.392345 -1.267643 0.193187 0.341776 -1.079048 4.477338 -0.703828 1.681929 1.484266 -1.162454 3.748400 4.707867 -0.449879 1.134213 -1.610358 3.758067 -2.993130 1.025034 4.292211 -1.375674 -1.448172 2.036741 -0.718425 -0.390491 -0.894698 2.238576 1.293894 -2.484727 0.595351 -3.530068 2.707754 4.983848 1.370850 -2.356138 -0.209033 -3.815133 -0.254104 1.126429 0.400783 1.156393 -1.912418 -0.177460 1.115007 -0.172604 -2.724909 0.641170 -1.053424 -2.520496 -0.411325 2.841993 3.602099 -1.980804 4.554347 -1.308450 1.892871 -1.368756 0.117822 -2.598192 -1.318716 0.664768 0.459519 -1.924121 -0.552391 0.911958 -1.130718 -2.472251 3.430789 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/cut-vertices.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/cut-vertices.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.102838 2.291312 1.562487 -0.717917 2.766109 1.367771 1.013271 0.487268 -0.616644 -2.691570 -0.631638 -2.124391 -4.425986 2.294314 -0.585513 0.063224 3.754322 -0.176848 0.687496 -1.706446 1.853539 -2.030642 4.557629 3.680192 -4.653238 0.892316 2.125728 1.636419 0.893876 2.301289 -0.173409 -2.800218 1.563200 -0.912133 2.434333 -1.435159 -0.411212 -1.746284 -1.231941 -5.474236 -1.158902 1.074740 -1.666458 0.751731 0.332065 3.627279 5.243060 2.305665 -2.197185 2.042171 2.024831 -0.388197 1.362920 0.613941 -0.184239 -0.707094 0.810340 0.454739 -1.683475 0.649137 -0.741573 -4.573867 -0.332802 2.899213 4.047803 -1.009577 -0.593018 1.138952 -1.047903 0.592012 -0.366003 2.654282 2.658497 1.439750 3.834976 -2.583265 -0.915642 -6.064336 -0.790629 -9.619127 -3.353501 -3.757440 2.156846 -0.214132 1.442142 -0.768521 4.801038 0.882879 1.365380 2.454258 4.607286 -2.750372 -0.617689 -2.410959 -0.586002 0.946581 -1.988110 0.493299 1.582555 -0.871082 -2.603298 -2.541087 1.879002 -0.557000 -1.873320 -1.760126 -1.825465 2.696122 -3.943065 -1.143923 -5.230952 -1.214098 -0.209101 -5.266261 0.164105 0.378936 3.143710 1.639620 0.407178 -1.604759 0.753452 2.296745 -0.518526 -1.834076 -0.538712 3.938225 2.294532 0.051212 1.637644 1.825754 1.319343 3.039852 4.986868 0.217510 -1.976297 0.873415 -1.496661 0.057007 -1.230226 0.251822 2.685449 -2.415903 0.080594 1.378587 -1.326006 -1.234421 1.381152 -2.601321 1.997828 7.446721 -0.705544 1.826334 0.643406 -3.405656 1.992737 -0.923036 -1.365606 1.663266 2.934402 2.574579 -3.500661 -1.784515 1.567659 3.652194 1.049482 -4.325527 -0.755701 -0.209161 0.637889 -1.490111 0.998617 1.208337 0.840279 -1.502646 0.045779 1.590841 5.111028 -2.649330 -3.639972 0.843701 1.038919 -0.209938 -3.745856 -0.330947 -0.918710 -0.925056 0.907091 -0.060883 0.687486 3.291336 -6.560584 2.461418 -0.687083 -1.258650 2.150932 0.151528 -0.574745 -4.132004 1.655184 2.886846 2.100674 1.186277 -0.173361 -1.161072 -3.317569 0.547958 0.594217 1.895951 -1.644233 2.928538 -0.850023 -2.251208 -2.909906 -2.163292 -0.218727 -0.506149 -1.013645 1.105284 1.046774 -7.294980 3.452635 -1.336000 -2.279453 0.322650 -0.520194 2.619889 -3.003984 -4.252019 1.421064 -2.031352 -3.701978 -2.211573 -1.003741 1.065021 0.750870 -0.985431 -1.913322 -4.344012 3.357012 -0.466682 1.946062 2.303078 1.834084 5.843422 0.631077 -3.284702 -2.703609 -1.698674 1.915076 -1.512861 -1.416688 -1.759733 -1.375295 1.887757 5.068595 -0.379324 0.477254 -1.392684 3.095328 -4.594436 -2.024290 2.471422 2.911143 -0.795757 2.473208 2.492805 -1.699599 -1.892443 -2.776764 -0.286514 -0.230242 -2.581894 0.959781 -3.914342 -0.390382 2.681716 -0.679213 -1.605337 1.770754 -0.443432 0.247884 -1.973846 3.494801 6.416270 -4.615794 0.651170 -2.647321 2.195716 -4.426188 -2.842907 0.051400 0.525438 0.730074 -0.151317 0.731008 1.029767 0.923286 -2.556125 -1.478989 -0.690962 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/cut-vertices.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/cut-vertices.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/cut-vertices.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/cut-vertices.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/sort-array-wave-form-2.cpp__sortInWave(int*, int) = -2.094496 -1.491563 -1.026009 -3.572279 1.932130 4.450204 0.970065 -3.817257 -3.670457 -1.522422 1.936573 -5.671273 -2.455621 4.510591 -2.177110 3.457495 5.211509 -0.439220 -2.404351 -1.555639 3.639624 1.831242 6.672337 6.695017 -4.331501 -0.174868 0.507772 1.910099 1.858059 -0.397050 2.451309 -3.520538 1.569736 -3.294540 -0.235066 -1.173601 -1.078249 1.276234 3.980963 -6.519282 -0.439812 1.763327 -0.492686 -0.000859 0.282859 0.068717 3.676210 3.745221 0.130028 3.195935 3.211147 1.450957 1.613730 -0.015565 0.957735 -0.469939 0.455450 -1.938148 0.195422 -1.429037 -1.057980 0.530528 -0.088905 5.202500 5.315026 0.068853 -2.266173 1.527909 1.398882 1.336488 1.297610 3.955157 -0.916013 2.481184 2.344128 -5.102707 0.456274 -6.556773 1.303233 -5.708413 -2.943568 0.805624 2.504658 2.613912 2.578457 -0.052322 6.793433 -0.730742 -2.790100 4.906496 5.171446 -3.252509 -0.661998 -0.747778 -2.065425 0.211478 -2.053138 1.992116 -0.370758 2.770446 -3.925898 -2.190269 -0.411087 0.650345 -2.733353 -2.660649 -0.014983 3.017641 -3.876280 -2.325782 -0.722683 3.885973 -0.458658 -7.512134 -4.267746 -3.362298 1.411448 0.158785 -3.244481 -3.702769 1.658246 0.944229 -0.767565 -1.872944 -0.267122 1.676546 3.935792 1.382185 -0.876642 2.783207 1.616972 7.556541 0.210554 -2.333863 0.476561 0.692831 0.211536 2.267973 -1.467946 -0.374225 0.476003 -3.648472 0.847770 3.253518 -2.149253 -2.011220 0.687722 -0.744477 -0.626550 15.634902 -1.148710 5.336514 5.001000 -3.964787 -0.352005 -2.448199 0.800086 1.616728 1.967649 2.444322 -5.860338 -3.502551 4.435702 6.627733 2.191648 -4.038666 0.551358 2.374042 0.390937 -1.786910 2.324794 0.317464 0.197008 -2.364504 -0.680644 3.574631 7.657451 -2.151405 -0.039002 0.787737 3.393649 -0.029288 -2.329028 -0.720286 -3.315582 0.213735 3.696245 1.601374 2.306342 4.952811 -5.844925 3.660955 0.663112 0.720259 2.978522 2.369041 -4.000205 -3.122210 -1.109763 1.981156 2.900953 -1.579170 0.981496 0.803803 -5.425959 0.216634 1.651541 0.584611 -3.317286 4.333205 0.939198 -1.854819 -1.817024 1.611131 -1.328861 -1.479378 -1.764407 3.723168 0.173711 -5.133700 3.874344 1.078722 -2.202065 0.034562 -2.094291 5.415517 -3.971528 -3.859832 3.086967 -2.050574 -2.569227 -0.433622 -1.244195 1.790978 2.529448 2.748059 -4.797412 -2.928477 4.140802 -1.003710 5.378520 2.443629 -0.746791 2.625856 -4.617751 -1.721716 -2.570545 -4.139280 1.655793 1.828727 -3.540616 -2.201196 -1.101074 3.536888 3.516468 -0.768752 -4.129094 -0.008165 3.914134 -4.346543 0.273067 0.761625 2.942478 -4.208737 1.346146 1.702194 -3.010484 1.689410 -3.064030 -0.278075 -3.529289 -2.788857 3.893027 -0.432715 2.052102 0.122879 -0.479019 0.169271 1.998453 2.098304 0.458525 2.253875 4.815743 3.071878 -0.308686 -1.201613 -5.999991 3.007394 -4.935467 -5.025508 1.289824 -0.237911 -2.283867 -1.579355 -1.502313 4.375117 3.408283 -2.136255 -2.360765 2.398121 +PE-benchmarks/sort-array-wave-form-2.cpp__main = -0.408879 -0.225589 0.233381 -0.892555 0.780322 0.605582 0.433683 -0.102221 -1.443819 -1.052309 0.326746 -1.969240 -1.440123 1.665150 -0.401872 0.546583 2.205797 0.356073 -0.413214 -0.584103 0.830602 -0.505215 2.102945 2.416010 -1.609583 0.249440 -0.104087 0.723451 0.219565 0.720672 0.499936 -1.605879 0.394236 -0.530118 0.601274 -0.820750 -0.458718 0.356265 0.251312 -2.956228 -0.174381 1.482355 0.236426 -0.015278 0.330610 1.044038 1.733694 1.213369 -0.357934 1.341299 0.904324 -0.052284 0.843079 0.051538 0.396509 -0.148959 0.219860 -0.332482 -0.662880 0.230504 -0.417433 -1.106978 -0.126134 1.531234 1.924001 -0.247110 -0.781334 -0.055831 0.160826 0.492538 0.442871 1.204054 0.516786 0.332499 1.180705 -0.928057 -0.113870 -2.606128 0.473303 -3.797367 -1.407230 -0.328224 2.049696 1.222282 0.285667 -0.756465 2.427945 -0.386782 -0.379242 1.677397 2.042107 -0.921581 -0.509159 -0.649612 -0.678824 0.445134 -0.753656 0.031790 0.504301 0.585644 -1.463481 -0.738642 0.421166 -0.160807 -0.933994 -0.352355 -0.268794 1.344428 -1.878238 -0.581798 -1.384771 0.898717 0.447537 -2.435864 -0.525425 -0.642580 0.091192 0.706312 -1.151500 -0.612563 0.753179 0.081560 -0.556554 -0.171312 -1.172066 1.546143 0.543033 0.248724 0.167381 0.974867 0.562269 1.589491 0.675476 -0.813483 -0.018688 0.672830 -0.248996 0.517962 -0.735062 -0.439703 0.739674 -1.295035 0.040252 0.112800 -1.010996 -0.612166 -0.379446 -0.361032 0.100301 4.237431 -0.436362 1.659230 1.136184 -1.302713 1.130988 -0.300317 0.028491 0.530903 1.282704 0.940648 -1.329646 -1.085006 1.181841 2.354719 0.882511 -1.418356 -0.067751 0.507265 0.321279 -0.270187 1.084631 0.224034 0.347094 -0.907129 -0.190841 0.756638 2.770360 -0.601351 -0.765094 0.024037 1.001295 0.051838 -1.268449 0.061111 -0.953115 -0.099625 0.519006 0.191275 0.761611 1.828338 -3.017373 1.637017 -0.143314 -0.042590 1.149961 0.300804 -0.968218 -2.333270 -0.307848 0.822358 1.718072 0.178132 0.005189 0.104915 -1.853194 -0.006370 0.349803 0.550105 -1.140924 1.646248 -0.289546 -0.766625 -0.660950 -0.556046 -0.562367 -0.397633 -0.785542 1.047017 0.869886 -2.320361 1.374149 0.072017 -0.809564 -0.231761 -0.056847 1.140835 -1.459799 -1.694561 0.651555 -0.865936 -1.834534 -0.718765 -0.725175 0.546058 0.354807 -0.174361 -0.949290 -1.602874 2.058791 -0.390010 1.875683 1.017228 -0.343252 1.649327 0.720415 -1.001998 -0.600568 -1.153297 0.652420 -0.676582 -0.600899 -0.350169 -0.660568 0.988285 1.661830 0.065847 -0.770690 -0.406752 1.778694 -0.982843 -0.465328 0.791249 -0.086964 -0.520683 1.143164 1.095512 -1.412054 0.133874 -1.637634 -0.008111 -0.700441 -0.736259 1.078785 -0.924771 0.277569 0.391334 -0.329128 -0.477792 0.636779 0.449413 -0.406833 0.096815 2.249188 1.514330 -0.825838 0.607422 -1.817493 1.116363 -1.811851 -1.267479 -0.260921 0.426222 -0.805925 -0.326287 -0.052215 0.937510 0.894238 -0.936165 -1.092193 0.750226 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -1.010276 -1.170501 -0.381229 -1.181188 1.044216 0.825840 0.741768 -0.859345 -2.296752 -0.765841 0.626620 -2.144994 -1.144166 2.505671 -0.440463 2.117896 3.275942 0.860698 -0.682374 -0.942405 2.138984 -1.707078 3.088829 3.632587 -2.062024 0.141394 0.335336 0.905483 0.567026 0.695394 0.098144 -1.386195 0.934259 -2.587252 0.572095 -2.005656 -0.524211 1.460041 1.974846 -4.164665 -0.142152 0.975409 0.724308 -0.003622 -0.007706 1.537744 1.648565 1.892364 -0.662507 2.434118 1.466481 -0.721219 1.177399 0.244124 0.646808 0.951798 0.186118 0.845243 -0.603537 0.167889 -0.763187 -1.351825 0.735706 2.027826 3.014288 -0.558470 -1.062482 0.820369 0.429788 0.548263 0.975220 1.720900 0.102006 -0.353858 1.823625 -3.406217 -0.267214 -5.270324 0.277263 -5.654713 -1.726622 -0.049990 1.915100 -0.044257 1.540405 -0.176453 3.503587 -0.668438 -1.052792 2.039329 2.535962 -2.224154 -0.697849 -0.740549 -0.989810 0.209675 -1.162160 -0.060893 1.781464 0.418590 -2.048753 -1.980735 1.243885 0.450948 -1.300197 -1.744305 -0.306302 2.052556 -2.253831 -2.188930 -1.758302 1.024331 -0.543099 -3.352249 0.329692 -1.585354 0.520096 0.872602 -1.766990 -1.992915 1.070244 0.659242 -0.692476 -1.386414 0.026602 2.028665 1.071604 0.427364 0.096559 0.834702 0.131380 3.204632 1.564585 -1.507723 -0.024305 1.159483 -1.039559 1.094577 -1.699573 -1.134967 1.788224 -2.304540 -0.258237 0.420804 -1.465382 -0.227564 2.703260 -0.050089 -0.074492 6.558837 -0.364541 2.424458 2.025571 -1.957044 1.999869 -0.520875 0.706210 1.367633 2.176378 0.769859 -3.577997 -1.891903 1.536189 3.270857 1.398400 -2.828713 -1.990837 0.266297 0.855630 0.128810 0.960149 0.362290 0.297856 -1.409015 -0.096698 0.595330 4.531908 -1.767414 -0.129834 0.253473 1.351910 -1.056362 -3.826893 -0.523767 -3.111302 -0.247907 0.004775 0.399108 0.943318 2.664124 -4.427597 2.250592 -1.392049 -0.102586 1.870781 0.927077 -1.607853 -4.372104 -0.626285 0.702979 2.517816 0.044942 0.502243 0.823467 -2.812576 0.135198 0.110739 0.650780 -1.646010 2.459827 -0.494695 -1.207127 -0.680234 0.570087 -0.712937 -1.705949 -0.059237 1.789015 1.238435 -3.021213 1.486416 0.053499 -1.233640 0.911669 0.491110 1.999568 -1.960055 -2.423198 1.604422 -0.531554 -0.947955 -1.269987 -0.613556 1.181943 0.358014 -0.745521 -1.346451 -2.947259 2.228863 -1.090314 2.659103 1.320196 -0.856631 2.155492 -0.028539 -1.609096 -1.773333 -0.766561 -0.607142 -0.707961 -0.921214 -2.177714 -0.632695 2.012445 2.338236 0.729432 -0.702223 -0.165493 3.005752 -2.375905 -0.195806 1.331244 1.254963 -0.970905 1.185733 1.627522 -2.459620 0.217741 -1.630038 -0.062531 -0.811501 -0.848034 2.046789 -1.138211 0.664042 -0.159882 -0.181014 0.251042 1.107126 1.226079 0.034201 0.007223 3.378682 2.610932 -1.064689 -0.450636 -2.426321 1.258647 -2.520798 -1.656815 -0.352093 1.552231 -1.842837 -0.173121 0.770903 1.942083 1.332009 -1.334562 -1.252111 0.204363 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = -0.076719 -0.135317 0.283676 -0.248522 0.277930 -0.193701 0.208656 0.108942 -0.539868 -0.493093 0.273953 -0.798971 -0.589904 0.569757 -0.144287 0.074885 0.688846 0.127020 -0.102134 -0.295651 0.122758 -0.329418 0.725069 0.775173 -0.583592 0.114396 -0.182496 0.318592 0.191991 0.206858 0.173389 -0.429517 0.226357 -0.022672 0.194778 -0.154196 -0.063436 0.027169 -0.118461 -0.900120 -0.023167 0.532104 0.195990 -0.001756 0.099203 0.758640 0.533298 0.433469 -0.159222 0.560727 0.393541 -0.278336 0.283458 0.076629 0.122383 -0.377357 0.255276 -0.147088 -0.465389 0.133279 -0.076124 -0.742910 -0.177627 0.447563 0.687277 -0.139324 -0.157857 -0.083342 0.014895 0.236140 0.308869 0.262061 0.309085 0.026589 0.471692 -0.063656 -0.004062 -0.902525 -0.039101 -1.763964 -0.563933 -0.093813 1.137039 0.320450 -0.119069 -0.246697 0.658587 0.121969 -0.145465 0.429078 0.711850 -0.220513 -0.328554 -0.099301 -0.132276 0.311514 -0.372707 0.080238 0.373663 0.258246 -0.511844 0.031750 0.308229 -0.157292 -0.253517 0.107832 -0.089394 0.436877 -0.766467 -0.033553 -0.498409 0.161730 0.430482 -0.794038 0.113747 -0.035208 0.264865 0.346440 -0.304742 0.185118 0.188395 -0.171385 -0.197769 0.159026 -0.790565 0.605548 0.028723 0.288550 0.188611 0.403534 0.273301 0.310740 0.229827 -0.281545 -0.040071 0.111153 -0.101044 0.360186 -0.189578 -0.248850 0.396982 -0.385910 0.193084 -0.236161 -0.359748 -0.363951 -0.277031 0.104270 0.045495 0.729742 0.008580 0.623408 0.380999 -0.315069 0.348843 -0.170643 0.056588 0.202902 0.426026 0.118378 0.067297 -0.362742 0.356405 0.709780 0.321145 -0.624214 0.035026 0.216510 0.190616 -0.099059 0.333230 0.196798 0.226502 -0.314430 -0.037203 0.307749 0.717693 -0.119197 -0.466216 0.006608 0.129579 0.142906 -0.441625 0.047250 0.109739 0.056464 -0.007922 0.130807 0.179412 0.623236 -1.261344 0.554009 0.079972 0.085510 0.467927 0.044898 -0.457407 -1.035974 -0.073412 0.222641 0.557155 0.252125 -0.123768 0.177468 -0.554119 -0.035868 0.050180 0.068311 -0.227254 0.421768 -0.148343 -0.121746 -0.293711 -0.509383 -0.069860 0.163468 -0.259722 0.369947 0.443744 -1.082333 0.389813 -0.138242 -0.448312 -0.311368 -0.019219 0.287478 -0.524191 -0.515543 0.015009 -0.553557 -1.020747 -0.576863 -0.165721 -0.035853 -0.097831 -0.156225 -0.078519 -0.323569 0.832984 -0.283475 0.499202 0.325309 -0.154041 0.685890 0.607403 -0.374604 -0.105411 -0.111228 0.302197 -0.623448 -0.200308 0.321936 -0.193750 0.229994 0.509829 0.047058 -0.144576 -0.069071 0.533538 -0.325256 -0.493946 0.412221 -0.046080 -0.013167 0.751059 0.459477 -0.579202 0.109207 -0.605681 -0.274372 -0.135240 -0.258683 0.341533 -0.195585 0.128318 0.090298 -0.012359 -0.240173 0.239383 -0.040139 -0.213330 -0.110477 0.825551 0.948784 -0.487406 0.339754 -0.622106 0.352458 -0.606973 -0.506339 0.044317 0.214820 -0.295431 -0.020196 0.016785 0.232493 0.288035 -0.557778 -0.533233 0.469554 +PE-benchmarks/rotate-bits-of-an-integer.cpp__main = -0.030357 0.634618 1.320943 -0.964728 0.618119 -0.293530 0.208589 0.524352 -0.740011 -2.386637 0.707164 -2.813497 -3.072022 1.274572 -0.816719 -1.546377 1.628121 -0.735049 -0.053733 -1.392270 0.008262 0.367073 2.243471 2.455261 -2.790354 0.218524 0.398117 1.362191 1.594581 -0.434648 1.941308 -1.881964 0.047648 1.581300 1.353065 0.541415 -0.173072 -1.253494 -1.580890 -2.685156 -0.689183 1.750111 -0.754774 0.404880 0.803161 3.174848 2.542109 1.316422 -1.408354 1.127983 2.014833 0.169335 0.653890 -0.324831 -0.736478 -3.331645 0.532066 -0.531517 -0.662708 0.499848 0.240807 -1.969341 -1.125751 2.126510 2.378900 -0.400867 -0.601002 -0.627676 0.463565 0.888746 0.031801 1.513392 2.032649 1.651449 2.056496 0.735821 -0.399034 -3.675399 0.686535 -6.008494 -1.884517 -0.940252 3.677134 1.268507 -1.565235 -1.165761 2.473148 1.330112 -0.037687 2.804645 2.590447 0.558567 -0.536670 -0.649696 -1.017879 1.574634 -1.258605 1.458130 0.005946 1.573694 -1.479486 0.251706 -0.501534 -1.458385 -1.172018 0.677888 -0.740151 0.830912 -2.240337 1.696520 -1.814788 0.568947 2.513383 -3.226614 -1.366806 -0.218189 1.751024 0.699907 -0.408319 1.755757 -0.025873 -1.005838 -0.506518 1.446853 -3.077272 1.756768 1.054704 0.820027 0.416201 1.802876 1.791633 0.086966 0.341727 -0.477355 -0.746877 0.131319 -0.001004 0.498229 -0.554524 0.572085 2.320923 -0.296294 1.291452 -0.647540 -0.755929 -2.760093 -1.818799 -1.493269 0.391104 3.610395 -0.007016 1.737502 1.098345 -0.817520 0.099297 -0.583286 -0.578559 0.804531 1.059240 1.427840 0.979475 -0.699086 1.422305 2.548437 0.472236 -1.772770 1.564818 1.914161 -0.065300 -1.718219 1.675599 0.428075 0.223995 -0.318032 -0.196734 2.278856 0.967025 0.378026 -2.191083 -0.656822 2.029789 1.477586 0.550128 0.987198 1.750172 0.156309 1.670474 0.677169 1.087678 1.718986 -4.954580 1.168108 2.233320 0.964388 0.336956 0.143679 -1.464760 -2.470458 1.188245 1.196824 0.673286 0.848542 -0.522561 -0.210290 -1.867953 0.070261 0.949456 0.429489 -1.147000 1.609290 -0.373938 0.150408 -1.598513 -2.196814 -0.664648 1.584245 -1.734189 0.996640 0.255890 -4.249979 1.881695 -0.958806 -1.488979 -2.569036 -1.782216 1.122561 -2.217233 -1.644418 -0.389339 -2.418808 -4.377632 -1.846669 -1.056103 -0.376698 0.105133 0.879475 -1.041916 -1.031318 3.035394 -0.737236 1.471890 1.206495 0.235280 2.847521 0.720132 -0.760092 -0.554462 -1.077116 3.210557 -0.811612 -1.255545 1.734685 -0.557738 -0.165912 1.886235 -1.505455 -0.849539 -0.266242 0.876871 -0.888140 -2.154675 0.155617 0.195960 -0.103058 2.908235 0.490130 -1.123337 0.510270 -2.953764 -0.776990 -0.636516 -1.465007 0.818418 -0.970284 0.098094 1.289337 -0.400098 -1.253024 1.027703 -0.434177 -0.725150 0.044369 1.819313 3.860195 -1.998844 1.497212 -2.767897 1.668729 -2.323938 -2.385058 0.353499 -1.148245 0.720352 -0.683098 -1.292559 0.265946 1.229837 -1.780268 -2.042472 2.688850 +PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::leftRotate(int, unsigned int) = -0.411595 -0.316031 -0.362162 -0.476233 0.691706 0.368961 0.445184 -0.838839 -0.755020 -0.454672 0.393740 -1.166263 -0.781056 1.039789 -0.281719 0.941809 1.299012 0.031591 -0.211828 -0.511354 0.468146 -0.180636 1.616933 1.564235 -0.862880 0.109052 0.003509 0.227339 0.103591 -0.287425 -0.137055 -0.558962 0.671654 -1.104700 -0.146811 -0.240477 -0.388123 0.159905 1.056974 -1.416270 -0.105386 0.262275 -0.236152 0.078957 0.089253 0.577855 0.941998 0.787399 0.103296 1.143372 0.502927 -0.249258 0.535952 0.206365 0.252854 0.032092 0.191322 0.186083 -0.411562 -0.023968 -0.307905 -0.497237 -0.109837 0.900833 0.939233 -0.062774 -0.653948 0.597431 0.345304 0.306160 0.358752 0.824875 0.257089 0.294382 0.683806 -1.354996 -0.033545 -1.969076 -0.192337 -1.995182 -0.984508 0.059795 0.757731 -0.303650 0.778876 -0.221437 1.288685 0.407241 -0.399657 0.236137 1.336394 -1.126405 -0.363327 0.080388 -0.136917 -0.100569 -0.532047 0.320208 0.362222 0.345447 -1.012288 -0.668850 0.770045 0.079644 -0.522476 -0.584078 0.092175 0.820734 -0.950367 -0.634277 -0.675386 0.172139 -0.210761 -1.549882 0.019193 -0.229955 0.842045 0.487726 -0.730660 -0.899238 0.430275 0.253880 -0.269425 -0.584968 0.187090 0.800134 0.947511 0.210986 0.059339 0.452023 0.358427 1.907759 0.471942 -0.530905 0.044904 0.146888 -0.301041 0.700840 -0.297529 -0.442388 0.463964 -0.981116 0.550082 0.485441 -0.571804 -0.233634 1.192292 0.095960 -0.207468 1.726076 -0.166225 1.075077 1.020488 -0.873452 -0.275201 -0.575154 0.243276 0.298683 0.660072 0.354621 -1.088149 -0.748910 0.932618 1.401751 0.541868 -1.438049 -0.301187 0.236934 0.383223 -0.439253 0.445750 0.321259 0.606765 -0.652396 -0.044012 0.609805 2.026537 -0.835101 -0.351687 0.253256 0.189741 0.240087 -1.279391 -0.321624 -0.672642 -0.130128 0.281292 0.647250 0.067189 1.116452 -1.578529 0.814099 -0.437631 -0.137745 0.823748 0.783922 -1.006653 -1.108130 -0.304519 0.409505 0.745310 0.212352 0.270210 0.130886 -0.944560 0.012458 0.130192 0.132243 -0.503259 0.827614 -0.011788 -0.561366 -0.320119 0.085797 0.096800 -0.606819 -0.026256 0.832419 0.691575 -1.594461 0.736188 0.156093 -0.790375 0.119852 -0.148558 1.262200 -0.691878 -0.844806 0.757882 -0.928804 -0.677330 -0.464622 -0.097533 0.021516 0.192244 0.061055 -0.670366 -0.263463 1.295626 -0.333148 1.158965 0.583227 -0.174770 0.905420 -0.336283 -0.785073 -0.407691 -0.314855 0.147658 -0.059949 -0.668642 -0.310329 -0.155084 0.768905 0.947749 0.103194 -0.632049 -0.011906 0.891457 -1.236310 0.291455 0.563991 1.205940 -0.660017 0.655245 0.700172 -0.804209 0.259213 -0.439351 -0.351639 -0.804941 -0.577665 0.605231 -0.366533 0.215748 -0.026759 -0.068320 -0.028836 0.383144 0.176843 0.020770 0.055411 1.143221 1.408762 -0.637699 -0.449412 -1.184018 0.728891 -1.032424 -1.144115 0.389979 0.313290 -0.832795 -0.293309 0.077750 0.871895 0.630887 -1.083097 -0.832013 0.343654 +PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::rightRotate(int, unsigned int) = -0.411595 -0.316031 -0.362162 -0.476233 0.691706 0.368961 0.445184 -0.838839 -0.755020 -0.454672 0.393740 -1.166263 -0.781056 1.039789 -0.281719 0.941809 1.299012 0.031591 -0.211828 -0.511354 0.468146 -0.180636 1.616933 1.564235 -0.862880 0.109052 0.003509 0.227339 0.103591 -0.287425 -0.137055 -0.558962 0.671654 -1.104700 -0.146811 -0.240477 -0.388123 0.159905 1.056974 -1.416270 -0.105386 0.262275 -0.236152 0.078957 0.089253 0.577855 0.941998 0.787399 0.103296 1.143372 0.502927 -0.249258 0.535952 0.206365 0.252854 0.032092 0.191322 0.186083 -0.411562 -0.023968 -0.307905 -0.497237 -0.109837 0.900833 0.939233 -0.062774 -0.653948 0.597431 0.345304 0.306160 0.358752 0.824875 0.257089 0.294382 0.683806 -1.354996 -0.033545 -1.969076 -0.192337 -1.995182 -0.984508 0.059795 0.757731 -0.303650 0.778876 -0.221437 1.288685 0.407241 -0.399657 0.236137 1.336394 -1.126405 -0.363327 0.080388 -0.136917 -0.100569 -0.532047 0.320208 0.362222 0.345447 -1.012288 -0.668850 0.770045 0.079644 -0.522476 -0.584078 0.092175 0.820734 -0.950367 -0.634277 -0.675386 0.172139 -0.210761 -1.549882 0.019193 -0.229955 0.842045 0.487726 -0.730660 -0.899238 0.430275 0.253880 -0.269425 -0.584968 0.187090 0.800134 0.947511 0.210986 0.059339 0.452023 0.358427 1.907759 0.471942 -0.530905 0.044904 0.146888 -0.301041 0.700840 -0.297529 -0.442388 0.463964 -0.981116 0.550082 0.485441 -0.571804 -0.233634 1.192292 0.095960 -0.207468 1.726076 -0.166225 1.075077 1.020488 -0.873452 -0.275201 -0.575154 0.243276 0.298683 0.660072 0.354621 -1.088149 -0.748910 0.932618 1.401751 0.541868 -1.438049 -0.301187 0.236934 0.383223 -0.439253 0.445750 0.321259 0.606765 -0.652396 -0.044012 0.609805 2.026537 -0.835101 -0.351687 0.253256 0.189741 0.240087 -1.279391 -0.321624 -0.672642 -0.130128 0.281292 0.647250 0.067189 1.116452 -1.578529 0.814099 -0.437631 -0.137745 0.823748 0.783922 -1.006653 -1.108130 -0.304519 0.409505 0.745310 0.212352 0.270210 0.130886 -0.944560 0.012458 0.130192 0.132243 -0.503259 0.827614 -0.011788 -0.561366 -0.320119 0.085797 0.096800 -0.606819 -0.026256 0.832419 0.691575 -1.594461 0.736188 0.156093 -0.790375 0.119852 -0.148558 1.262200 -0.691878 -0.844806 0.757882 -0.928804 -0.677330 -0.464622 -0.097533 0.021516 0.192244 0.061055 -0.670366 -0.263463 1.295626 -0.333148 1.158965 0.583227 -0.174770 0.905420 -0.336283 -0.785073 -0.407691 -0.314855 0.147658 -0.059949 -0.668642 -0.310329 -0.155084 0.768905 0.947749 0.103194 -0.632049 -0.011906 0.891457 -1.236310 0.291455 0.563991 1.205940 -0.660017 0.655245 0.700172 -0.804209 0.259213 -0.439351 -0.351639 -0.804941 -0.577665 0.605231 -0.366533 0.215748 -0.026759 -0.068320 -0.028836 0.383144 0.176843 0.020770 0.055411 1.143221 1.408762 -0.637699 -0.449412 -1.184018 0.728891 -1.032424 -1.144115 0.389979 0.313290 -0.832795 -0.293309 0.077750 0.871895 0.630887 -1.083097 -0.832013 0.343654 +PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.112886 0.189959 0.365392 0.004535 0.241068 -0.084352 0.188230 0.144704 -0.228574 -0.589866 -0.062064 -0.682511 -0.895197 0.549975 -0.096629 0.012216 0.808034 0.193551 0.069078 -0.334512 0.095946 -0.579621 0.817733 0.867046 -0.652170 0.112201 0.189442 0.362242 0.103825 0.382640 -0.003052 -0.525652 0.271351 -0.040120 0.495573 -0.289997 -0.107582 -0.106101 -0.326965 -1.138546 -0.183898 0.517798 0.175761 0.049654 0.125800 0.842829 0.833933 0.447966 -0.138901 0.475086 0.202264 -0.311507 0.456157 0.091844 0.141216 -0.217342 0.302333 -0.132560 -0.510155 0.263153 -0.147942 -1.061490 -0.188824 0.508375 0.797334 -0.158291 -0.178421 -0.055733 -0.178533 0.194266 -0.008050 0.439494 0.496631 0.239128 0.579580 -0.274783 0.049814 -0.947335 -0.092938 -1.954341 -0.648316 -0.506821 0.754331 0.270141 0.076611 -0.233670 0.897831 0.147810 0.127104 0.266641 0.963009 -0.487365 -0.263283 -0.235551 0.041525 0.263615 -0.439923 0.050684 0.462408 0.014280 -0.539359 -0.300456 0.490348 -0.152503 -0.327994 0.064735 -0.276494 0.534450 -0.844278 -0.203221 -1.066785 -0.370719 0.205679 -0.937219 0.357237 0.124635 0.257368 0.521518 -0.248796 -0.157572 0.301567 0.132130 -0.063010 -0.142787 -0.666532 0.836183 0.087394 -0.051916 0.286607 0.488009 0.239666 0.426241 0.695345 -0.102606 -0.220525 0.293717 -0.465515 0.069282 -0.244814 -0.214194 0.486714 -0.508395 -0.048113 -0.057573 -0.400532 -0.197706 -0.131429 -0.250217 0.275107 0.917707 -0.152362 0.380936 0.199677 -0.537503 0.594739 -0.207598 -0.155761 0.144657 0.597269 0.490323 -0.339492 -0.338422 0.339169 0.848746 0.294991 -0.637036 -0.101185 -0.000836 0.296480 -0.226561 0.418930 0.285896 0.186311 -0.318884 0.008438 0.212418 0.889422 -0.455036 -0.566523 0.005522 -0.032421 0.151074 -0.823225 0.073560 -0.061896 -0.157333 -0.223089 0.065466 0.041879 0.644158 -1.205842 0.647116 -0.093312 -0.177069 0.662965 -0.121447 -0.227858 -1.115287 0.170943 0.503305 0.561353 0.321853 -0.127389 -0.149586 -0.696094 -0.011599 0.012398 0.404786 -0.337027 0.617723 -0.244625 -0.351028 -0.461825 -0.569829 0.045976 -0.202932 -0.242872 0.293471 0.577510 -1.187134 0.626958 -0.173971 -0.435818 -0.097638 0.073479 0.202756 -0.660744 -0.754801 0.070435 -0.556769 -0.928967 -0.539384 -0.283793 0.061570 -0.066063 -0.458030 -0.149477 -0.555594 0.833505 -0.166597 0.494098 0.369493 0.125330 0.949164 0.793097 -0.643247 -0.152533 -0.087480 0.094295 -0.697826 -0.121683 -0.066514 -0.206418 0.348660 0.934290 -0.002197 0.120023 -0.164652 0.611179 -0.572546 -0.518240 0.481563 0.091841 0.068182 0.599183 0.493467 -0.523287 -0.228290 -0.628793 -0.248352 -0.075175 -0.424092 0.175368 -0.785349 -0.107520 0.406444 -0.244659 -0.341071 0.272261 -0.003946 -0.188256 -0.255169 0.828509 1.033618 -0.732706 0.401768 -0.614745 0.375664 -0.785350 -0.392578 -0.078023 0.389000 -0.072376 -0.078010 0.261065 0.051783 0.231972 -0.669695 -0.502732 0.046062 +PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = -2.978933 -3.877511 2.873091 -6.292898 4.619347 0.696170 2.119515 -1.072133 -6.155862 -4.848503 1.891175 -5.458557 -7.960764 6.382415 -3.325918 3.253544 5.109284 -1.646680 -2.016400 -6.032985 6.661440 -3.886336 8.814026 6.328078 -10.155355 -0.209651 -1.286192 7.326971 4.925898 3.245479 5.502344 -2.402725 -1.336159 -0.117676 7.834130 -2.188719 -0.002596 3.661500 -1.464249 -11.433102 -2.738062 9.201259 1.533520 2.481507 3.062203 9.931419 2.977284 6.415907 -3.602083 7.203874 7.022922 -1.357140 5.854578 -0.379646 -1.597395 -2.503440 2.893541 -3.152618 -2.189749 1.402217 -1.762434 -5.599997 3.667267 7.187653 10.573322 -5.214812 -3.098609 2.035090 2.421622 4.048162 3.151950 7.658875 -0.575871 -0.615016 8.551745 -5.287374 -0.352070 -12.292534 5.075377 -17.030735 -6.624165 -2.998917 7.940106 6.803633 0.492829 -4.540408 14.187143 1.038926 -4.832551 8.439155 4.802871 -1.305316 0.154259 -5.797663 -3.257540 0.060865 -4.575411 -2.623385 3.005015 7.630044 -5.114207 0.599376 -0.847309 -2.586884 -4.466228 -1.977886 -6.050451 7.181332 -7.848441 -2.779951 -5.977991 8.544006 1.558037 -11.093625 1.192158 -5.803926 0.734134 -0.587772 1.383574 3.372400 2.532943 1.333042 -2.571317 1.514613 -9.841364 8.763913 5.549658 -1.105417 0.085736 7.455555 -1.528645 2.659314 3.763644 -2.654885 -6.217965 6.202781 -1.266894 3.521507 -3.284901 1.970202 8.240638 -4.911913 -2.607615 -2.404087 -0.613653 -3.060951 -2.780484 -3.815771 1.309132 16.615079 -1.662785 5.957572 3.872086 -2.847274 6.702494 2.109896 2.814340 6.234338 4.951130 0.571197 -6.668544 -5.583858 5.919839 8.590036 1.760699 -6.426011 -1.195383 3.525301 1.446747 -2.447880 3.628908 3.336022 -1.232377 -1.869480 -0.221628 -2.803626 10.288562 -1.721489 -1.283909 1.344783 6.829976 -4.791686 -6.020698 -0.457015 -3.223650 -4.407961 0.993902 2.327750 3.194698 7.094555 -12.452569 6.160913 1.962421 1.487336 5.223046 -3.735991 -0.924926 -16.134954 -3.308319 0.333391 5.615673 -2.853824 -0.689859 1.195268 -8.675170 5.280840 0.021793 2.405340 -4.370188 7.458549 -4.038397 -0.201671 -2.347901 -2.941103 -5.060658 1.923531 -2.937887 2.975655 3.532831 -8.282015 3.669353 -4.443422 -3.751207 0.866797 2.839814 7.100953 -3.693708 -4.878305 3.261657 -1.815867 -9.524450 -9.361682 -2.546508 2.729798 -1.664707 -2.174049 -5.875864 -7.602813 7.705932 -6.153530 6.312205 3.351067 -2.205369 7.713249 4.427609 -5.281183 -3.217006 -6.256774 0.846240 -0.417007 -0.720824 -0.083113 -0.515719 3.238240 4.345827 0.120395 -0.139573 -0.102523 9.819674 -4.245230 -3.893382 1.835010 -2.936737 -1.229522 7.912806 3.813625 -4.582921 -0.278673 -9.331780 1.747307 -3.585528 -0.573792 7.157581 -3.279198 0.931934 -0.092318 1.045385 -2.390289 2.836702 3.798672 -3.405544 -3.276598 14.700218 9.753935 -3.282014 1.254935 -7.161682 5.671401 -5.003225 -1.074460 -4.695719 0.863711 0.924422 1.822244 0.214473 5.842045 7.168522 -6.043745 -4.688259 0.961171 +PE-benchmarks/edit-distance.cpp__main = -0.994156 0.375063 3.324502 -2.373293 3.909527 0.145529 1.541079 1.346060 -2.548032 -3.772346 -0.336822 -2.637480 -6.908215 3.717716 -1.320213 0.457603 3.909920 -0.595270 0.166288 -3.715769 3.802898 -4.258996 5.912412 3.869482 -7.325397 0.632713 0.583325 4.994152 2.306437 4.048116 1.477927 -2.100227 -0.297114 0.285721 5.648649 -1.897695 0.300616 0.187963 -3.355731 -8.064373 -2.148219 5.329621 -0.296017 1.599587 1.518762 6.832999 4.434461 3.956429 -3.302510 3.832127 3.973471 -1.657171 3.580608 0.395885 -1.050760 -1.346272 2.182782 -0.754549 -2.817804 1.558467 -1.022079 -7.041078 1.538428 4.169899 6.881771 -3.089779 -1.250976 1.322516 -0.529498 1.998643 0.954360 4.443399 1.930210 0.012885 6.829431 -2.243145 -0.826654 -8.079570 1.562163 -13.000052 -5.030040 -4.979046 4.988239 2.818900 0.733405 -2.678069 8.811754 1.001111 -0.359552 4.811051 4.514167 -2.022281 -0.371237 -4.903461 -1.710234 0.958792 -3.428086 -1.794142 2.313953 2.436247 -3.384501 -1.435244 1.400816 -1.694801 -2.876835 -1.250708 -4.619612 4.841514 -5.770857 -1.816603 -7.216012 1.951477 0.711044 -6.923745 1.049279 -1.446084 2.130843 1.070883 2.145148 1.464760 1.417426 2.266278 -1.326511 -0.276611 -5.200371 6.719686 3.002339 -1.403734 1.753978 4.131862 -0.285949 1.306565 5.599760 -0.357445 -4.912613 3.790279 -2.072234 1.028883 -2.167958 1.216319 5.540167 -3.027586 -2.006948 -1.129101 -0.742712 -1.885729 -1.334537 -3.538624 2.665099 8.875420 -0.635366 2.200208 0.646940 -2.824787 5.435969 1.223314 -0.066925 3.880687 4.050300 1.452940 -4.185400 -3.287967 2.689284 4.995588 1.144961 -4.905720 -1.217741 0.620913 1.484483 -1.674399 1.975526 2.746197 0.048702 -1.428233 0.076642 -1.350637 6.876726 -2.413862 -4.205390 1.609081 2.595463 -2.787213 -5.371100 -0.291217 -0.849106 -3.295759 -0.290595 0.400282 1.407445 4.777617 -9.016046 4.002644 0.221811 -0.724821 3.625691 -3.053484 0.524469 -9.322483 -0.027990 1.925180 3.890787 0.397960 -1.227740 -0.789852 -5.360992 2.923343 0.013810 2.638682 -2.240646 4.915579 -3.315444 -1.476056 -3.178928 -4.201562 -2.459879 1.032270 -1.879932 1.084118 2.302806 -7.654687 3.541684 -3.446664 -2.673522 0.803772 1.855254 3.516165 -3.038311 -5.035432 1.967043 -1.725113 -6.915040 -6.237660 -1.551564 1.733155 -0.497686 -3.234201 -2.960403 -6.147327 5.436200 -2.802812 2.992633 2.605427 0.578831 7.188224 5.335840 -4.845829 -2.744219 -2.690033 1.241433 -2.140364 -0.335260 -1.193320 -1.068336 2.170873 5.184137 0.124053 1.751442 -1.709518 6.614512 -3.952800 -4.245269 2.815329 -0.671316 0.164816 5.419542 3.586587 -2.786739 -2.478811 -5.971326 0.765390 -0.793857 -1.675429 2.954692 -4.841553 -0.487916 2.499103 -0.051716 -2.621186 2.060414 0.990786 -1.873471 -4.167664 9.088805 8.429057 -5.102542 1.973159 -3.803198 3.471426 -4.437336 -0.889386 -2.737510 0.873171 1.489721 1.416420 1.543698 2.271586 3.230436 -4.218113 -2.728238 -1.366959 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.129103 1.034879 1.025536 -0.864980 2.233490 0.957810 0.460824 0.091281 -0.599626 -1.541747 -0.531574 -1.521446 -2.696167 1.434493 -0.780282 0.251771 2.135884 -0.271794 0.544534 -1.106974 1.165236 -0.871248 2.842689 1.783821 -3.039150 0.398398 0.846137 1.466797 0.503991 1.921002 0.272320 -2.016911 0.515651 -0.184574 1.699754 -0.936773 -0.245482 -0.568930 -0.706045 -3.422592 -0.822939 1.384917 -1.084250 0.930457 0.770201 2.291611 2.893340 1.409432 -1.488070 1.759903 1.317729 0.139263 1.376175 0.305586 -0.585307 -0.390433 0.969048 -0.390729 -1.031062 0.527456 -0.782816 -2.328598 0.061586 1.811853 2.747820 -0.915903 -0.669498 0.651195 -0.406324 0.512862 0.092709 2.050223 1.147956 1.086733 2.377567 -1.008600 -0.397773 -3.432296 0.025697 -5.133861 -1.868944 -2.256326 1.078701 0.903451 0.509441 -0.646284 3.366401 0.510706 0.521685 1.789024 2.512222 -1.184822 -0.139506 -1.771759 -0.578670 0.233522 -1.070619 -0.309813 0.590623 0.464505 -1.362518 -1.461832 0.458575 -0.762381 -1.189848 -0.806775 -1.579038 1.812295 -2.647516 -0.865566 -3.133244 0.137725 -0.266365 -3.291038 -0.543215 0.060344 1.290898 0.778485 0.670546 -0.601917 0.708357 1.332137 -0.489563 -0.433295 -0.662988 2.542997 1.597349 -0.150994 0.586277 1.442103 0.474003 1.576775 2.451717 0.067110 -1.575591 0.971665 -0.423262 -0.052134 -0.954284 0.610235 1.401655 -1.540421 -0.047911 0.792880 -0.644257 -0.730657 -0.415722 -2.020610 1.153299 4.684123 -0.782563 1.057854 0.352907 -2.061971 1.201918 0.124934 -0.354088 1.075483 1.510805 1.797373 -1.874121 -1.150445 1.210570 2.062905 0.501785 -2.442208 -0.180599 0.075507 0.559230 -0.602495 0.631915 1.118491 -0.141491 -0.743407 0.185834 0.064087 3.365265 -1.217198 -2.424536 0.577887 1.252518 -0.602187 -1.802835 -0.181217 -0.778861 -1.090594 0.856805 0.109499 0.211955 2.031347 -4.173558 1.585589 0.322075 -0.498051 1.325206 -0.424121 0.060055 -2.726431 0.325176 1.470092 1.153872 0.423759 -0.045515 -0.729089 -1.990238 0.951458 0.474711 1.401453 -1.003560 1.917083 -0.623692 -1.340886 -1.495125 -1.205291 -0.482835 0.009868 -1.081977 0.727448 0.820168 -4.317688 1.744743 -1.012077 -1.328942 0.495127 0.054490 1.961729 -1.625971 -2.319752 0.917925 -1.379829 -2.477483 -1.505597 -0.616502 0.515895 0.594537 -0.296149 -1.539093 -2.696448 1.681925 -0.614344 0.899875 1.512195 0.844534 3.158117 0.376763 -2.026533 -1.463439 -1.442238 1.276783 -0.488172 -0.146082 -0.777302 -0.648826 1.111488 2.981841 -0.160523 0.234554 -1.281155 2.042018 -2.223824 -0.896118 1.350564 0.598775 -0.524630 1.540063 1.391266 -0.784680 -1.033423 -1.745327 0.505522 -0.549063 -0.885667 0.797816 -2.498021 -0.582840 1.451406 -0.435671 -1.420881 1.001506 -0.003401 -0.284798 -1.330679 2.711614 3.461883 -2.276229 0.917853 -1.437438 1.528258 -2.638783 -1.288024 -0.562289 -0.274087 0.572280 0.177472 0.297714 0.814303 0.931574 -1.249896 -0.933770 -0.508055 +PE-benchmarks/edit-distance.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/edit-distance.cpp__std::char_traits::length(char const*) = -0.047959 0.074187 0.150852 -0.097095 0.169069 -0.040761 0.085106 0.002587 -0.187054 -0.288537 0.020654 -0.325482 -0.337677 0.278622 -0.097826 0.057152 0.396993 0.088617 0.021521 -0.205347 0.083720 -0.228953 0.444247 0.449787 -0.380770 0.072168 0.097082 0.203905 0.117136 0.184709 0.039327 -0.273047 0.145170 -0.045471 0.159462 -0.183221 -0.017049 -0.004840 -0.071148 -0.570688 -0.049943 0.136265 0.077063 0.033706 0.037695 0.346494 0.380087 0.245882 -0.102309 0.299784 0.227428 -0.006760 0.151387 0.058174 0.027454 -0.104148 0.158474 -0.180372 -0.188637 0.087118 -0.019847 -0.457826 -0.071060 0.290635 0.418813 -0.078543 -0.056380 0.014940 -0.070522 0.097232 0.077826 0.187622 0.125286 0.112548 0.238713 -0.220717 0.025316 -0.583535 -0.051627 -0.997705 -0.308667 -0.213211 0.394175 0.157394 0.046081 0.035571 0.430770 0.095797 0.045847 0.192963 0.424459 -0.227646 -0.130408 -0.073812 -0.055988 0.175175 -0.217742 0.054169 0.086398 0.118905 -0.245923 -0.163811 0.243737 -0.056587 -0.183833 -0.035782 -0.105422 0.225626 -0.503444 -0.105493 -0.395801 -0.054455 0.083527 -0.463438 0.115922 -0.038266 0.278618 0.167500 -0.075430 -0.083781 0.080283 0.070455 -0.045615 -0.036890 -0.362809 0.281679 0.087056 0.029298 0.111920 0.161313 0.130608 0.299637 0.230672 -0.118414 -0.111806 0.119691 -0.132948 0.058125 -0.161478 -0.089342 0.195626 -0.273149 0.107635 0.008561 -0.193854 -0.201491 -0.011250 -0.121624 0.125977 0.490782 -0.010801 0.233741 0.174870 -0.272173 0.107471 -0.146694 -0.048953 0.146156 0.264172 0.160684 -0.062753 -0.204702 0.126690 0.392930 0.160782 -0.277092 -0.096596 0.025423 0.091004 -0.038347 0.158905 0.100618 0.020184 -0.164950 -0.019937 0.132903 0.438591 -0.092518 -0.110715 0.015050 0.074480 -0.030252 -0.313386 0.008641 -0.049450 -0.011005 -0.004040 0.044549 0.057003 0.340731 -0.721745 0.296792 -0.025945 -0.002619 0.172062 0.003863 -0.158386 -0.514861 0.089499 0.205575 0.287825 0.054183 0.090285 0.031890 -0.341656 -0.023180 0.021137 0.137715 -0.188958 0.258789 0.005404 -0.204364 -0.222308 -0.145654 0.019265 -0.032883 -0.098900 0.174861 0.247848 -0.684451 0.282926 -0.136853 -0.236388 -0.020933 -0.025848 0.214408 -0.351482 -0.318678 0.074136 -0.227878 -0.381874 -0.222255 -0.096389 0.084825 -0.084467 -0.102066 -0.080190 -0.190088 0.318211 -0.092154 0.164441 0.198305 0.031372 0.396850 0.091342 -0.221983 -0.120684 0.003919 0.076285 -0.324539 -0.070456 0.109996 -0.112287 0.172309 0.465811 0.024333 -0.047238 0.063015 0.319132 -0.261731 -0.238387 0.208970 0.140766 -0.027509 0.336657 0.220488 -0.302267 -0.074731 -0.298366 -0.056287 0.012676 -0.205817 0.186731 -0.268338 0.031388 0.182253 -0.041022 -0.173378 0.219917 -0.014112 -0.049391 -0.093159 0.413796 0.496524 -0.267519 0.162747 -0.306802 0.122478 -0.404969 -0.249946 -0.030619 0.153080 -0.080969 -0.000644 -0.032766 0.139574 0.119721 -0.176340 -0.202373 0.069934 +PE-benchmarks/edit-distance.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -0.339036 1.281610 1.549463 -1.414356 3.335246 1.066634 1.069069 0.820199 -1.430988 -3.032192 -0.588773 -3.137955 -4.911965 2.484752 -0.851227 0.677050 4.345654 -0.107591 0.524551 -1.952775 1.982649 -1.979029 5.173176 4.050906 -5.140360 0.817649 1.174346 2.606242 0.841609 2.426246 0.239432 -3.189952 1.152106 -0.747919 2.988991 -1.702428 -0.405095 -1.008260 -1.201424 -6.492636 -1.326311 2.709040 -1.239931 1.127558 0.968083 4.465936 5.054618 2.781871 -2.538881 2.988928 2.558636 -0.560359 2.311173 0.628964 -0.849429 -0.766339 1.017222 -0.419986 -2.112610 0.736836 -0.951471 -4.938775 0.066215 3.115910 4.809865 -1.702474 -1.257756 1.170500 -0.235107 0.762923 0.464047 3.398652 2.396274 0.968744 4.429697 -2.264156 -0.807065 -6.485494 0.017521 -10.552966 -3.915838 -3.820918 3.237130 1.226917 1.085178 -1.512351 6.230103 0.361197 0.947037 3.077571 4.400591 -2.699710 -0.748444 -3.082410 -0.714682 0.958716 -2.323628 -0.537822 1.905523 0.610449 -2.824112 -2.063567 1.590081 -1.163262 -2.218114 -1.722206 -2.293749 3.185282 -4.553457 -1.678751 -5.977167 0.326992 0.214486 -5.867690 0.081395 0.171443 2.205514 1.665786 0.429393 -0.995062 1.075357 1.673349 -0.955882 -0.896073 -2.010438 4.693094 2.520059 -0.231179 1.742119 2.749773 1.089144 3.136697 4.735970 -0.357150 -2.757910 1.975179 -1.435401 0.388851 -1.729626 0.264254 3.091507 -3.072773 -0.150179 0.868180 -1.580503 -1.254234 0.005683 -2.728785 1.871372 8.155556 -0.881631 2.276994 1.150470 -3.362392 2.995663 -0.511849 -0.756041 2.027247 3.166019 2.647107 -3.525929 -2.212610 2.070976 4.356426 1.290367 -4.570637 -0.392739 0.471844 1.363002 -1.361809 1.262918 2.001083 0.796228 -1.523194 0.232658 0.897015 6.122441 -2.198409 -3.608677 0.906278 2.101276 -0.741292 -4.078142 -0.386398 -1.578928 -1.723182 1.090512 0.447025 0.609177 3.921077 -7.177086 2.906795 -0.110772 -0.691953 2.841870 -0.325071 -0.515472 -5.743593 0.631519 2.515580 2.828513 0.705681 -0.039800 -1.001542 -3.736021 1.154986 0.739140 2.176372 -1.778060 3.508086 -1.402785 -1.996272 -2.397680 -2.602442 -0.864496 -0.152883 -1.419744 1.516453 1.888137 -7.350956 3.285397 -1.758697 -2.688986 0.540941 -0.169717 3.330571 -3.268726 -4.216654 1.828427 -2.302775 -4.656668 -2.945832 -1.171277 1.189096 0.651435 -1.261676 -2.294346 -4.852392 4.222024 -0.866589 2.469620 2.610628 0.925051 5.854169 1.638459 -3.712153 -2.398935 -2.434784 1.423966 -1.766168 -0.792403 -1.411061 -1.285277 2.072772 5.265412 -0.282336 0.641098 -1.576955 3.768482 -4.449279 -2.017940 2.639059 1.635093 -0.675383 3.461156 2.830362 -2.315232 -1.663548 -3.607482 0.459204 -0.608748 -2.043969 1.667419 -4.420582 -0.565765 2.678774 -0.792453 -1.945463 1.826579 0.093630 -0.517168 -2.450368 5.310843 6.556730 -4.007995 1.447889 -3.214010 2.657336 -4.763129 -2.527672 -0.706480 0.467433 0.286208 0.175478 1.223594 1.465212 1.513395 -2.926239 -2.330082 -0.460643 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.121920 0.285697 0.408187 -0.646375 0.864158 0.471727 0.001535 0.004627 -0.441503 -0.585623 -0.343180 -0.641559 -0.877482 0.650457 -0.283563 0.224817 0.802941 -0.095795 -0.028022 -0.369115 0.571426 -0.188184 0.849392 0.468034 -1.030773 0.119872 0.307213 0.796978 0.180998 0.910377 0.073339 -0.884425 -0.208248 0.158004 0.693031 -0.419042 0.045540 0.143565 -0.234130 -1.274028 -0.230024 0.716396 -0.169291 0.290655 0.198767 0.315660 0.865491 0.563155 -0.487044 0.398729 0.736403 0.415646 0.363196 0.079622 -0.245737 0.049752 0.455412 -0.496089 -0.231613 0.140618 -0.112284 -0.546620 0.080199 0.664938 0.975357 -0.366399 -0.312525 0.278019 -0.008871 0.208819 0.030994 0.657856 0.060103 0.286685 0.622503 -0.351982 -0.066375 -1.214519 0.461952 -1.506904 -0.565034 -0.792981 0.261276 0.880767 0.065571 -0.260176 1.430817 -0.133868 0.021688 0.685681 0.872060 -0.319866 0.003900 -0.935772 -0.397859 0.157585 -0.401876 -0.471810 -0.107456 0.608256 -0.313467 -0.517786 0.000000 -0.351307 -0.481878 -0.198865 -0.671676 0.777309 -1.029267 -0.296661 -0.983521 0.614019 0.000000 -1.098790 -0.469618 -0.250981 -0.049622 -0.057731 0.239731 -0.304501 0.252623 0.462761 -0.362118 0.063624 -0.612451 0.790819 0.603272 -0.403335 0.073435 0.432920 0.227292 0.518929 0.462623 -0.294757 -0.705825 0.596328 -0.004165 -0.220542 -0.575861 0.286603 0.267171 -0.638998 -0.067273 0.349515 -0.207592 -0.204497 -0.538234 -0.917981 0.421696 2.050129 -0.300438 0.191486 0.047323 -0.635705 0.604691 0.284744 -0.246332 0.353672 0.300556 0.612614 -0.564895 -0.546453 0.558947 0.805971 0.253234 -0.498610 -0.092301 0.008733 0.087317 -0.081087 0.254887 0.467026 -0.381694 -0.051733 -0.139618 -0.131090 1.278044 -0.112958 -0.688729 0.359348 0.794128 -0.518183 -0.479176 -0.106252 -0.583019 -0.484377 0.412174 0.003402 0.363889 0.864003 -1.655478 0.679700 0.405061 -0.241311 0.401959 -0.440328 0.295127 -1.003500 -0.098512 0.576438 0.684530 -0.239794 0.248192 -0.326794 -0.820926 0.354926 0.244458 0.545144 -0.450726 0.570288 -0.118208 -0.419003 -0.408281 -0.248264 -0.529672 0.005239 -0.470888 0.237787 0.294050 -1.416399 0.776428 -0.401064 -0.080756 0.274805 0.030404 0.744227 -0.593252 -0.709667 0.483566 -0.088072 -0.644064 -0.276468 -0.154391 0.520811 0.049863 0.050579 -0.566736 -1.006935 0.426269 -0.148519 0.321219 0.423377 0.241353 0.599820 0.199229 -0.456838 -0.407251 -0.525919 0.355423 -0.008339 0.156600 -0.181724 -0.085429 0.434455 0.907066 0.039332 -0.052055 -0.386567 0.816593 -0.406360 -0.238840 0.318701 -0.335244 -0.364550 0.429477 0.451395 -0.347001 -0.486583 -0.907868 0.476138 -0.263885 -0.340779 0.298659 -0.789756 -0.203993 0.726734 -0.243857 -0.638245 0.501495 0.256650 -0.387460 -0.453664 1.276724 0.631981 -0.337700 0.513251 -0.669793 0.500802 -0.936685 -0.351132 -0.392719 -0.206899 0.037957 0.065565 -0.022947 0.395001 0.181564 0.152600 -0.237687 -0.352285 +PE-benchmarks/edit-distance.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/sieve-of-eratosthenes.cpp__SieveOfEratosthenes(int) = -2.367444 -2.703515 -1.043333 -2.965552 1.823604 2.280930 1.235205 -2.685785 -4.605839 -1.674520 1.851812 -5.764544 -2.663595 5.008117 -1.747465 3.575852 6.130308 0.807483 -2.011325 -1.979956 4.059011 -0.896391 6.558981 7.427153 -4.118371 -0.332904 -0.566046 2.221654 1.351701 -0.424452 2.373279 -2.979417 1.197163 -4.019145 0.549266 -2.310056 -0.853061 2.887522 3.830407 -7.575048 -0.463102 2.408182 1.388599 0.063373 0.201550 1.786937 3.147641 3.960597 -0.459069 4.062548 3.263886 -0.227432 2.471190 0.196947 0.656337 0.045596 -0.203149 -0.636098 -0.706765 -0.278815 -1.452543 -0.895015 0.942513 4.835822 6.094853 -0.074599 -2.436439 1.273899 1.464035 1.614450 2.009409 3.860653 -0.221135 0.706950 3.210314 -5.492551 -0.402693 -9.501777 1.495200 -8.259828 -3.192431 0.671173 4.025156 2.352196 2.246053 -0.203655 7.191942 -0.885681 -2.903595 5.750713 5.206413 -3.321248 -1.236669 -1.376837 -2.720064 0.399109 -2.190873 1.247140 1.195220 3.427717 -4.194489 -3.071319 0.428067 0.345832 -2.543677 -3.047793 -0.318698 3.642007 -3.798280 -3.008680 -1.993286 3.845099 -0.015263 -7.019002 -1.665396 -3.906198 0.362416 1.169935 -3.810292 -2.946989 2.022816 0.198476 -1.399788 -1.422665 -1.511445 2.791940 2.571979 0.938132 -0.762604 2.743937 0.690645 6.333812 0.480545 -3.143132 0.326887 1.837974 -0.846453 2.399998 -2.913846 -1.492201 2.814727 -4.004863 0.077225 1.051849 -2.624399 -2.236121 1.808239 -0.520367 -0.466009 13.070421 -0.746071 5.145696 4.796732 -3.532750 2.732790 -1.560839 1.830679 2.243489 3.418976 1.649564 -5.762706 -4.103258 4.039859 6.805130 2.570110 -4.173868 -1.867724 2.080291 1.320509 -0.735565 2.510647 0.877691 -0.187184 -2.282359 -0.328355 2.435530 8.274944 -2.253906 0.973859 0.556193 3.626346 -0.620772 -4.968721 -0.727975 -4.667657 -0.361026 1.901076 1.721958 2.181563 5.384833 -7.309417 4.257743 -0.597866 1.500638 2.846760 1.767912 -3.886229 -6.508034 -1.459348 1.440429 4.114550 -0.451982 0.371234 1.359577 -5.712688 0.477986 1.081542 1.186003 -3.373083 4.963649 -0.957861 -1.774376 -1.580258 1.332959 -2.280157 -2.101947 -1.129793 3.852895 1.789313 -4.169248 3.331905 0.415294 -2.167650 0.391868 -0.609476 4.701450 -3.752721 -4.196294 3.017325 -2.100834 -2.802403 -2.134249 -1.249397 1.853093 1.402476 0.405938 -3.626836 -4.225839 5.030371 -1.857965 5.840397 2.459039 -1.785418 2.944459 -0.889246 -2.703351 -2.729042 -2.917424 0.002392 0.287605 -2.700097 -2.811371 -0.910731 3.626177 3.872287 0.323067 -3.314965 0.082708 5.495353 -3.601871 -0.855245 1.618180 0.819146 -2.714873 2.487850 2.481824 -4.493511 1.378054 -3.808621 0.590221 -2.723869 -2.168578 4.008264 -1.288368 1.662075 -0.635368 -0.414556 0.617924 2.086910 2.894551 0.065663 1.282588 6.870950 3.181443 -0.435706 -0.597860 -5.971543 2.878979 -4.959017 -3.993305 -0.167604 1.844260 -3.201291 -0.820688 -0.162970 4.173253 3.306225 -2.563845 -3.226895 2.029159 +PE-benchmarks/sieve-of-eratosthenes.cpp__main = 0.018895 0.263514 0.597731 -0.302166 0.285601 -0.245241 0.136597 0.385104 -0.370213 -0.901019 0.092545 -0.932992 -1.090841 0.586032 -0.258148 -0.474995 0.883113 0.053377 0.044708 -0.512767 -0.003663 -0.290101 0.881957 0.969404 -1.011023 0.125711 0.134803 0.537522 0.413757 0.275788 0.413189 -0.768164 0.094322 0.467397 0.647713 -0.126412 -0.034674 -0.352064 -0.745324 -1.287191 -0.182316 0.726427 0.008960 0.083636 0.266446 1.165406 1.027000 0.507936 -0.421953 0.454984 0.601901 -0.002017 0.297340 -0.020808 -0.084350 -0.785895 0.333566 -0.262438 -0.516415 0.321092 0.018307 -1.072527 -0.334188 0.730651 0.921748 -0.164988 -0.135004 -0.274695 0.015640 0.307153 0.096660 0.418709 0.686654 0.429946 0.713088 0.109371 -0.084123 -1.319892 0.126027 -2.605049 -0.750249 -0.594423 1.403636 0.484456 -0.453259 -0.416135 0.938137 0.311542 0.217939 0.786428 1.052787 -0.021080 -0.333220 -0.401104 -0.258154 0.598804 -0.512385 0.193965 0.247874 0.378458 -0.585264 -0.025008 0.180842 -0.389038 -0.396350 0.312879 -0.291652 0.509090 -1.063148 0.329807 -1.007583 0.026275 0.760604 -1.149108 -0.066930 0.000000 0.527795 0.434115 -0.167259 0.405915 0.114255 -0.087322 -0.222460 0.410223 -1.244809 0.887762 0.137732 0.143971 0.263901 0.595976 0.516478 0.079485 0.457552 -0.206788 -0.286364 0.250164 -0.259003 0.020661 -0.320837 -0.042374 0.781152 -0.331961 0.290793 -0.266465 -0.418220 -0.764086 -0.632664 -0.442060 0.365771 1.212602 -0.066529 0.556862 0.229239 -0.443655 0.353081 -0.101826 -0.229622 0.210890 0.575117 0.485533 0.221190 -0.332796 0.350210 0.935055 0.297427 -0.622482 0.303723 0.293556 0.041486 -0.332004 0.518994 0.231461 0.070805 -0.257049 -0.084244 0.543686 0.673901 0.020043 -0.843346 -0.203419 0.459090 0.319233 -0.190310 0.302489 0.434635 0.048991 0.205941 0.102221 0.340801 0.750530 -1.925719 0.664256 0.422373 0.127920 0.346727 -0.124186 -0.337584 -1.240692 0.340092 0.545563 0.610746 0.353377 -0.201941 -0.050272 -0.713830 -0.024476 0.180848 0.376540 -0.384632 0.559012 -0.163414 -0.200011 -0.608531 -0.875950 -0.140017 0.367403 -0.541145 0.288864 0.385638 -1.679208 0.767860 -0.380323 -0.516203 -0.633281 -0.297022 0.240499 -0.898931 -0.748609 -0.135211 -0.700568 -1.540100 -0.713612 -0.405292 0.045042 -0.142098 -0.043258 -0.213694 -0.547581 1.092496 -0.255881 0.523933 0.458946 0.089692 1.182339 0.737667 -0.386940 -0.167575 -0.268834 0.766889 -0.696621 -0.255196 0.579331 -0.265915 0.113892 0.935736 -0.314405 -0.112260 -0.106223 0.584537 -0.358063 -0.818415 0.322589 -0.117320 0.109631 1.026286 0.430802 -0.664456 -0.107802 -1.032407 -0.259977 -0.023253 -0.498042 0.251756 -0.662935 0.007839 0.526201 -0.135254 -0.570330 0.367372 -0.171235 -0.334178 -0.155867 0.893901 1.391833 -0.832215 0.707496 -0.881309 0.550121 -0.942690 -0.700293 -0.091363 -0.072867 0.113271 -0.049915 -0.206252 0.080819 0.323455 -0.592752 -0.682543 0.636144 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__maxChainLength(Pair*, int) = -3.616207 -3.079281 -1.418823 -6.012644 3.515587 6.315471 1.683109 -5.508002 -6.741230 -2.054033 2.996130 -8.166953 -3.884510 7.711236 -3.083393 5.791105 8.568846 -0.227066 -3.842859 -2.804365 6.865115 0.064679 10.384890 10.889325 -7.192515 -0.257520 0.837816 3.824358 2.620233 0.587837 2.850100 -4.627306 1.495777 -6.341615 0.303661 -2.943413 -1.644525 2.956957 6.310487 -11.140178 -0.672239 3.041740 -0.199896 0.001909 0.128935 1.022665 5.551424 6.216286 -0.702273 5.390269 5.626176 0.791324 2.977673 -0.013758 1.918826 0.473873 1.216686 -0.464056 0.288837 -1.721259 -2.013957 -0.079200 1.331709 8.200737 8.921003 -0.408378 -3.744307 2.527740 1.937750 2.257503 2.492142 6.298931 -1.633173 2.389132 4.812799 -8.933983 0.630669 -12.643908 2.446273 -10.333963 -4.740417 1.232857 4.250946 3.252795 4.457348 0.120324 11.442104 -1.687138 -4.629264 8.071048 7.854938 -5.269298 -1.155994 -1.840364 -4.540264 0.180401 -3.152120 1.979897 0.650191 4.421592 -6.411583 -4.030183 0.004807 1.384484 -4.538380 -4.675669 -0.614212 5.379362 -6.091624 -4.482762 -1.882900 6.205890 -1.109880 -11.980457 -5.497442 -6.305296 1.889170 0.195555 -5.309955 -5.969893 2.932960 1.947087 -1.709554 -3.154333 -0.212887 3.791293 5.667914 1.842098 -1.302398 3.509751 1.758322 11.051595 1.314995 -4.151454 0.280790 1.972038 -0.783362 3.601295 -3.097975 -1.028711 2.388740 -6.178594 0.528153 3.913367 -3.484491 -2.548876 3.483732 -1.008102 -0.905217 25.700517 -1.779550 8.541471 7.411362 -6.243786 1.984836 -2.594214 1.758913 3.511665 4.159857 3.179171 -10.764874 -5.949066 6.897179 10.641685 3.744576 -7.192707 -1.174612 3.308175 0.885977 -1.574449 3.632542 0.423380 -0.086592 -3.730542 -1.094456 4.465473 13.298192 -3.880571 -0.652243 1.555740 5.434402 -1.705070 -6.254174 -1.207787 -6.885080 -0.121881 4.283379 2.086849 4.036708 8.268703 -10.850076 6.238667 -0.561681 0.654762 5.330979 2.881202 -5.868772 -7.764389 -2.036708 2.580708 5.753842 -1.857894 0.707026 1.651750 -8.946127 0.716434 2.196743 1.175601 -5.598846 7.720462 0.212092 -3.375601 -2.785914 2.196797 -2.932160 -2.586064 -2.453949 5.811219 -0.306978 -8.276700 5.944827 1.463742 -3.247650 0.809694 -1.813575 7.777829 -5.999896 -6.922028 5.275853 -2.387429 -3.300705 -1.936268 -2.055823 3.327966 3.696106 2.076843 -7.519888 -6.394522 6.481630 -2.824519 9.067881 4.010250 -1.763825 4.622844 -4.676925 -3.174989 -4.997999 -5.208797 1.426864 2.161343 -5.325068 -5.035677 -1.914333 5.958604 5.586668 -0.234958 -5.160039 -0.180838 7.868510 -5.985910 -0.227296 1.559309 3.314840 -6.181269 2.454107 3.252906 -5.366289 2.220403 -5.426336 -0.180115 -5.338660 -4.192241 6.667101 -0.976300 3.272924 -0.174559 -0.330200 0.576294 3.122295 3.875244 0.814929 2.721165 9.176692 5.329197 -1.027136 -2.072641 -9.422831 5.054806 -7.719544 -7.078984 0.982093 1.107274 -3.989824 -2.009745 -1.223381 7.239301 5.371677 -3.514479 -3.366337 2.917944 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 0.063619 0.369438 0.549029 -0.165351 0.411209 -0.082035 0.204243 0.425304 -0.419839 -0.790770 0.004005 -1.019276 -1.118690 0.642523 -0.074063 -0.314444 0.926005 0.097044 0.034593 -0.316299 -0.106015 -0.304128 0.852682 0.932248 -0.800423 0.288585 -0.062356 0.297145 -0.003118 0.548992 0.125771 -0.933337 0.154979 0.426061 0.523366 -0.088651 -0.245574 -0.362222 -0.622439 -1.336843 -0.149566 0.975833 0.073627 -0.002377 0.281429 0.928064 1.167175 0.440496 -0.208704 0.488180 0.272973 -0.167869 0.439460 0.026850 0.197044 -0.495782 0.371934 -0.305990 -0.647018 0.331241 -0.109984 -1.027753 -0.449072 0.583725 0.764744 -0.153799 -0.302875 -0.322547 -0.128221 0.240292 -0.000664 0.460755 0.746010 0.343313 0.613614 0.337515 -0.043403 -0.807538 0.088850 -2.246495 -0.848358 -0.492709 1.362553 0.703597 -0.288490 -0.609589 0.974571 0.055269 0.189248 0.504260 1.127250 -0.200666 -0.324985 -0.297829 -0.107820 0.411853 -0.365348 0.029823 0.293757 0.069011 -0.665516 -0.057711 0.361423 -0.369966 -0.393074 0.384361 -0.217952 0.553347 -1.012101 0.196335 -1.059535 -0.029090 0.643744 -1.036961 -0.052954 0.264741 0.092225 0.586328 -0.359420 0.183734 0.326945 -0.137656 -0.294595 0.236883 -1.138161 0.976397 0.020702 0.104275 0.354737 0.594621 0.534201 0.195406 0.489008 -0.158670 -0.118078 0.214824 -0.101550 0.102690 -0.101112 -0.143638 0.314634 -0.384783 0.164257 -0.247148 -0.468943 -0.390203 -0.968841 -0.293644 0.209435 0.987065 -0.236573 0.584734 0.143341 -0.534418 0.590628 -0.136375 -0.344688 0.016117 0.607047 0.620259 0.170573 -0.297878 0.465467 0.997264 0.333511 -0.596279 0.389647 0.226965 0.118996 -0.285384 0.662163 0.191771 0.380042 -0.358974 -0.084674 0.390335 0.972255 -0.148760 -1.008396 -0.075160 0.189327 0.485051 -0.243720 0.248511 0.295278 -0.057901 0.080473 -0.000484 0.258656 0.745764 -1.615190 0.760167 0.166449 -0.207626 0.615339 -0.111980 -0.286179 -1.007481 0.101215 0.588594 0.753427 0.448645 -0.265651 -0.254016 -0.699383 -0.080784 0.129399 0.320941 -0.405692 0.654987 -0.255131 -0.338054 -0.443136 -1.007571 -0.082032 0.182972 -0.600795 0.286836 0.617898 -1.515512 0.762228 -0.087928 -0.430707 -0.537278 -0.087947 0.163002 -0.675755 -0.805902 -0.096166 -0.766265 -1.494321 -0.476714 -0.464160 -0.039612 -0.007720 -0.186944 -0.164032 -0.554574 1.211891 -0.052459 0.690878 0.511355 0.074582 1.063058 1.117144 -0.590199 0.052521 -0.439778 0.711851 -0.794464 -0.130527 0.458289 -0.428434 0.185901 0.881462 -0.112220 -0.091178 -0.454418 0.567551 -0.307387 -0.570198 0.491100 -0.360750 0.088279 0.841330 0.588432 -0.474534 -0.102626 -0.952987 -0.239111 -0.215916 -0.402748 0.139492 -0.692891 -0.145498 0.533065 -0.323384 -0.592329 0.235674 -0.206702 -0.432698 -0.219099 0.893822 1.033303 -0.840520 0.819531 -0.730479 0.572385 -0.833233 -0.549936 -0.091064 0.062320 -0.120029 -0.215772 -0.039303 -0.029556 0.215079 -0.651555 -0.669646 0.488761 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__findLength(char*) = -4.768440 -4.959431 -3.065940 -6.385838 4.122918 7.972786 2.846790 -8.713993 -8.303434 -1.092113 5.037813 -13.244443 -4.902499 9.836813 -3.912903 8.657059 11.199876 -0.483475 -5.552860 -3.771187 7.285155 2.696316 14.668006 14.785810 -7.907864 -0.384639 -1.442005 3.317858 3.029774 -3.017482 3.982037 -4.743973 3.919237 -8.951371 -1.598711 -1.564807 -2.402624 3.404184 10.085509 -13.304107 -0.813808 2.707289 1.124525 0.058986 -0.010543 3.129044 6.918897 7.978680 1.756981 7.555807 5.582348 -0.998896 4.901192 0.445619 2.784067 -0.898630 1.570415 -1.931474 -1.037525 -3.076380 -2.647774 1.017205 -0.019375 9.934683 11.053339 0.923752 -5.619484 3.854816 3.785718 2.765936 3.324324 8.344689 -1.606050 4.333792 4.973659 -10.890190 1.348021 -13.331733 1.625991 -11.701406 -6.469259 3.102163 6.447673 3.084609 6.031819 0.124396 14.057088 -0.523764 -7.272727 9.142027 10.983177 -8.294419 -2.231001 -0.294508 -3.407762 -0.649790 -3.654858 5.292582 2.748312 6.250546 -9.043267 -3.892881 0.369508 1.223733 -5.194259 -5.199574 0.495865 6.137884 -6.367840 -5.363176 -1.034931 7.378634 -0.862702 -15.197290 -5.995909 -6.237181 2.288738 1.307683 -7.883154 -7.554383 3.971772 0.631118 -2.154292 -3.761794 -0.852537 4.094872 7.727144 3.138941 -1.528630 7.261182 2.909771 16.180679 -0.576787 -5.437394 1.766368 1.409284 -0.061530 6.279069 -2.718026 -2.312851 1.830237 -8.493814 2.610293 4.978699 -4.674004 -2.967630 2.581217 1.441758 -2.405167 28.296335 -2.011730 12.123782 10.773457 -7.581877 1.293442 -6.370224 3.300065 3.259318 4.595536 3.481293 -12.445636 -8.084322 9.823963 13.979909 4.689047 -10.106561 0.433964 5.075025 1.707878 -3.763201 4.994426 1.495810 1.197752 -4.234012 -0.728744 7.183321 17.451237 -6.014262 0.941079 2.096715 4.446364 1.478214 -7.318312 -2.285189 -6.679979 -0.071943 5.483507 5.083428 4.223586 10.422516 -10.917621 8.014501 0.219528 1.964195 8.194535 5.280701 -9.586230 -7.379555 -3.944467 3.352894 6.254561 -1.908346 -1.002721 2.234823 -11.294360 0.649723 3.236911 0.392671 -6.328223 9.419525 0.490151 -3.331338 -2.707885 2.875306 -2.617180 -2.781206 -2.804109 8.498657 0.477224 -9.869587 7.025005 2.787493 -5.393485 0.140731 -3.744295 10.272971 -6.916168 -7.388956 5.999219 -5.274464 -5.508795 -2.639979 -2.140075 2.015914 4.573355 5.034562 -9.730134 -5.909552 10.295649 -3.411993 12.155947 5.060613 -2.767066 4.733071 -7.466478 -5.739567 -4.712085 -8.106212 1.358984 3.232579 -7.607260 -3.297323 -1.980530 7.683944 6.230489 -0.344934 -8.187785 -0.066997 8.488876 -9.036709 -0.487240 2.591978 5.016525 -8.441895 3.465950 4.366477 -6.872074 4.740108 -5.774320 -2.621758 -8.098156 -5.340631 7.942878 -0.270946 4.159310 -1.839137 -1.133560 2.262720 4.145932 4.151963 1.269097 4.745478 11.736215 6.473830 -0.695045 -3.103219 -12.878505 7.077150 -9.402299 -10.048807 3.451187 1.949650 -6.393689 -3.331947 -1.186417 9.004911 7.057284 -8.278777 -6.488642 5.343543 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 0.096378 0.356468 0.514100 -0.144475 0.270083 -0.165496 0.120410 0.432458 -0.288260 -0.704258 -0.028516 -0.849126 -0.943639 0.448437 -0.091842 -0.450305 0.663884 0.061343 0.051466 -0.251426 -0.220393 -0.157036 0.586727 0.669587 -0.633344 0.222288 -0.125651 0.279899 0.005915 0.462963 0.213649 -0.792421 0.018160 0.630505 0.510906 0.006754 -0.169582 -0.335283 -0.730432 -1.015014 -0.123184 0.927983 0.155530 0.007875 0.293752 0.743883 0.927060 0.305524 -0.162494 0.280506 0.213898 -0.019596 0.359041 -0.009211 0.106493 -0.554818 0.338811 -0.424636 -0.524740 0.301349 -0.047074 -0.813952 -0.418987 0.460337 0.568434 -0.091970 -0.207235 -0.412640 -0.093595 0.225897 -0.023150 0.329219 0.617946 0.343261 0.423238 0.560403 0.025081 -0.463983 0.167544 -1.734460 -0.639609 -0.437445 1.178603 0.806413 -0.423766 -0.573729 0.715399 0.090104 0.221355 0.408408 0.855717 0.042359 -0.244279 -0.252453 -0.116621 0.403550 -0.268057 0.011418 0.108949 0.190284 -0.471991 0.103376 0.171575 -0.389052 -0.291659 0.520645 -0.191522 0.371850 -0.814093 0.359928 -0.817678 0.007610 0.677003 -0.767980 -0.087922 0.207011 -0.067747 0.431184 -0.231116 0.362725 0.220895 -0.216678 -0.242935 0.412767 -1.250719 0.767612 -0.071583 0.031971 0.257733 0.494907 0.444782 -0.085734 0.209430 -0.114703 -0.112927 0.176447 -0.030003 -0.007335 -0.064431 -0.051466 0.257483 -0.214364 0.141737 -0.314383 -0.341435 -0.399076 -1.173112 -0.313092 0.212125 0.565693 -0.197262 0.401701 0.046535 -0.340492 0.443455 -0.009491 -0.310976 -0.044263 0.425310 0.503947 0.449525 -0.187704 0.322795 0.733691 0.225066 -0.256316 0.489166 0.234533 0.032212 -0.242830 0.566373 0.133069 0.221369 -0.235909 -0.086064 0.296864 0.562203 0.090822 -0.795893 -0.129681 0.216773 0.451922 0.094115 0.289356 0.415552 -0.023723 0.056406 -0.010476 0.222119 0.539202 -1.261817 0.591156 0.324508 -0.088251 0.412773 -0.231332 -0.158461 -0.761451 0.128026 0.472794 0.558041 0.327327 -0.255049 -0.240036 -0.495924 -0.069234 0.110635 0.287074 -0.319064 0.455110 -0.201167 -0.202936 -0.362972 -0.943302 -0.091512 0.283783 -0.590210 0.163074 0.534778 -1.109319 0.606600 -0.114166 -0.299223 -0.583580 -0.115746 -0.017499 -0.540453 -0.552422 -0.218570 -0.644287 -1.328223 -0.387340 -0.396204 -0.070789 -0.092165 -0.113261 -0.094022 -0.299220 0.978438 -0.035419 0.473858 0.384234 0.081477 0.759425 1.094554 -0.374824 0.170032 -0.347761 0.645392 -0.672905 -0.046994 0.643962 -0.335902 0.024198 0.675397 -0.166853 -0.083950 -0.317914 0.386759 0.017834 -0.542551 0.316427 -0.606276 0.157320 0.718453 0.404515 -0.337174 -0.101885 -0.847045 -0.155793 -0.119004 -0.302241 0.062256 -0.555136 -0.147583 0.479112 -0.281612 -0.587325 0.170078 -0.201195 -0.452265 -0.141407 0.689211 0.640767 -0.583957 0.838416 -0.561104 0.428153 -0.624832 -0.359235 -0.143867 -0.072506 0.001524 -0.153813 -0.145708 -0.102784 0.154536 -0.422513 -0.549763 0.489388 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -5.657447 -0.789334 -4.430312 -12.912609 13.786347 29.277157 4.027691 -15.559496 -19.350101 5.726915 6.791582 -30.590659 -11.040610 20.983963 -6.881342 12.110395 24.127960 -3.124302 -13.540685 -2.741558 13.752103 15.222720 28.662594 30.661456 -19.508777 4.436796 -1.453782 -1.408988 2.526176 8.787290 -6.098044 -19.838904 3.817939 -9.304072 -3.019847 -4.504442 -10.113686 -0.767734 21.257134 -31.424597 -0.936162 15.460304 2.628860 -2.203313 4.046309 9.640801 24.688016 14.625056 -0.280304 10.889818 11.629969 5.277220 9.255630 -1.894841 9.248063 1.797187 17.395835 9.996731 -0.363703 -8.181290 -5.291226 11.014357 -4.683293 22.663348 23.257838 3.253839 -14.314768 0.021784 8.069440 2.163773 2.034705 18.853690 5.687135 14.805042 9.898735 -0.796271 6.667461 -18.513876 8.850003 -19.848806 -10.387508 5.298474 11.131604 5.360523 11.049969 -10.446438 32.875733 -7.927368 -10.881655 17.172628 25.608577 -16.719213 -1.963320 -1.027086 -17.745943 -1.994048 -4.087902 9.116723 3.052605 2.161076 -19.684060 -16.875148 -4.249701 2.551569 -13.484544 0.774830 1.424618 6.584575 -12.475857 -4.096025 -1.622476 12.786705 -1.214421 -32.573800 -30.068626 -14.581704 -7.966587 0.901785 -18.231352 -19.750717 8.935239 1.325696 -11.002329 -7.818419 -0.407559 12.553184 16.787606 6.175918 -3.666582 1.866888 11.989767 27.494933 -4.370156 -14.591491 6.074711 0.758464 3.434090 9.027094 -7.529821 -0.755828 1.744144 -13.644072 8.428158 10.909583 -10.317067 3.671649 -1.685372 -2.958701 -5.997010 66.986924 -9.850009 25.975189 14.485389 -21.693875 6.582714 -6.126673 -1.918591 4.196180 9.817987 15.809202 -22.785400 -14.633380 22.742752 31.604972 10.007198 -19.897087 12.887155 13.326746 -1.970446 -7.711699 15.780170 -2.330593 2.603359 -12.233096 -5.499240 12.769311 43.609633 -9.813136 -12.503812 3.867976 14.670058 4.329742 1.189651 -0.983271 -15.703320 1.878770 14.183346 2.971477 17.230469 22.498696 -34.942550 19.364073 -0.645687 -8.953264 20.506101 7.543432 -17.612151 5.547394 -4.468940 10.513254 16.709568 2.915589 -7.260197 -0.412452 -23.300534 -0.581474 6.442353 0.961690 -18.766564 22.125713 7.823532 -14.465027 -5.638631 -4.755158 -2.899572 -9.528328 -16.732501 15.584602 -7.808581 -28.831364 19.471219 14.074817 -5.863387 -6.742864 -8.392105 6.482589 -14.112661 -18.415963 9.190811 -8.834259 -6.559116 1.087614 -9.109220 5.358465 16.800690 22.219598 -28.969959 -26.659217 23.674552 -3.350683 28.588414 13.631851 -3.517093 4.485167 -6.508199 -6.668667 -14.105144 -17.814780 14.491536 10.461417 -14.935226 0.474239 -11.877948 14.905665 13.370316 -4.539925 -14.508653 -16.674636 16.824361 -4.141717 5.559898 3.338022 2.266366 -20.273148 0.195602 8.799608 -6.809943 7.952243 -14.556926 -8.283108 -21.099424 -10.017133 15.898211 -2.444836 5.504915 2.945887 -7.592615 -2.829435 5.812627 3.501405 -6.234835 12.032233 22.900134 3.617244 -3.664181 7.391998 -25.765329 19.836438 -21.224221 -20.636186 6.943150 -13.019161 -19.709789 -12.165196 -5.186707 17.085011 9.866944 -7.254233 -9.766176 12.917008 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 0.348774 0.358947 1.358612 -0.909827 0.655114 -0.168022 0.213833 0.778556 -1.167325 -1.304919 0.573819 -2.562200 -1.858618 0.996615 -0.246841 -1.197091 1.120050 -0.408681 -0.338939 -0.504764 -0.666967 0.566178 1.109730 1.512551 -1.390625 0.644627 -0.996435 0.553643 0.210125 0.672169 0.732522 -1.704519 -0.487925 1.896241 0.749956 0.713330 -0.706927 -0.845721 -1.216244 -1.946213 -0.182815 2.635676 0.133740 -0.004905 0.976651 1.640876 1.865809 0.572835 -0.369705 0.743099 0.773085 -0.157271 0.833971 -0.337216 0.370087 -1.906777 1.280775 -0.622369 -0.855610 0.534778 -0.010368 -0.787829 -1.064595 1.082292 1.059912 -0.155686 -0.891154 -1.398571 0.507729 0.504962 0.192572 0.911112 1.250317 0.913394 0.860969 2.102577 0.383042 -0.765736 1.027803 -2.814654 -1.481678 0.044810 3.413638 2.191309 -1.490142 -1.874536 1.511099 0.056673 -0.234426 1.163828 1.574916 0.820785 -0.411058 -0.063473 -0.823642 0.805490 -0.237885 0.320407 -0.181195 0.928108 -1.093631 1.011772 -0.151086 -1.167857 -0.710122 1.874332 -0.123694 0.537975 -1.314179 1.487394 -0.675941 1.160471 2.206693 -1.638722 -1.274800 0.126124 -0.574242 0.620565 -0.950745 1.583517 0.423415 -1.429693 -0.954853 1.742973 -3.387779 1.574310 0.099283 0.677883 0.240770 1.133709 1.373474 -0.711885 -0.704420 -0.571426 0.196033 0.048363 0.782276 0.565014 0.210007 0.173422 0.287562 0.111229 0.571211 -1.138573 -0.609290 -0.966884 -3.473236 -0.206460 -0.342384 1.799488 -0.462979 1.544385 0.453391 -0.291132 0.822091 0.238613 -0.472999 -0.089238 0.523055 0.969952 1.323841 -0.304832 1.191342 1.776650 0.390291 -0.723518 1.950623 1.524861 -0.326440 -0.704902 1.729384 -0.100712 0.755440 -0.401551 -0.303939 0.977487 1.103792 0.839351 -2.490354 -0.518885 0.822017 1.507079 1.332405 0.914532 1.483069 0.220400 0.694014 0.179841 0.995451 1.068264 -3.275377 1.170638 1.468853 -0.017170 1.164255 -0.302480 -0.884270 -1.158458 -0.192808 0.535388 1.077543 0.809920 -1.089706 -0.280387 -0.995979 -0.114417 0.468767 -0.088210 -0.900165 1.091894 -0.334191 0.022107 -0.338510 -2.615824 -0.550261 1.404999 -1.996483 0.577027 0.514330 -2.325154 0.996734 0.282040 -0.599123 -2.134145 -0.838063 -0.123205 -0.825863 -0.745363 -0.793553 -1.731605 -3.414469 -0.900860 -1.076965 -0.711750 0.079032 0.722023 -0.693898 -0.388188 2.534191 -0.397151 1.554393 0.957085 -0.429247 1.065749 2.701678 -0.365795 0.664497 -1.168870 2.539017 -0.817941 -0.391598 2.031033 -0.958931 -0.409654 0.545265 -0.675256 -0.570479 -1.216551 0.497331 0.734752 -1.033237 0.185838 -2.149166 0.053918 1.744342 0.572024 -0.346502 0.805039 -2.175204 -0.810606 -0.930354 -0.280867 0.518875 -0.083455 -0.119804 0.549475 -0.623765 -1.242101 0.163518 -0.612725 -1.345788 0.249712 1.481088 1.263713 -0.806252 2.073139 -1.576388 1.355489 -0.966898 -1.000855 -0.055573 -1.063742 -0.405975 -0.779383 -0.870125 -0.058600 0.728768 -1.078681 -1.433279 2.411045 +PE-benchmarks/tug-of-war.cpp__TOWUtil(int*, int, bool*, int, bool*, int*, int, int, int) = -3.239271 -2.542055 -1.316413 -5.188910 3.482801 4.935351 1.889730 -5.182655 -6.363487 -2.677996 3.136523 -8.666865 -4.513774 7.523666 -2.727952 5.632434 9.414859 -0.352469 -2.873140 -4.271722 6.352141 0.839621 11.467207 11.937497 -7.945701 0.206971 1.589511 2.761157 3.784138 -1.484178 2.900823 -5.112485 3.014262 -6.942731 -0.049019 -2.687621 -1.927150 2.411659 7.306391 -11.762868 -0.690607 0.618527 -0.905764 0.443228 -0.053513 4.155044 6.639894 6.342525 -1.240462 6.934334 6.327729 0.151035 2.776516 0.064590 0.860381 -0.614565 0.326419 0.322700 -0.084346 -1.269791 -1.664039 -0.481459 0.451358 8.172111 9.232119 -0.477005 -4.332141 3.287302 2.730250 2.164844 1.762006 6.800153 0.709077 3.055111 5.554697 -10.277519 -0.926574 -15.967465 1.234196 -14.385536 -5.803625 0.744321 5.459813 0.255482 4.314554 0.493584 11.300181 -0.403291 -4.310237 8.717554 8.957207 -6.032369 -1.386030 -1.162283 -3.214037 0.476023 -3.231217 3.795736 1.662183 3.533394 -6.956737 -5.326147 1.095403 0.318201 -4.620691 -5.321488 -0.210430 4.503069 -6.586795 -3.946735 -3.564834 5.252283 -0.027648 -12.420588 -4.192600 -4.903962 5.247657 1.147974 -5.463308 -5.964711 2.431596 1.441409 -2.178008 -3.661911 0.995676 4.272233 6.791237 2.479164 -0.477257 4.316092 2.773390 12.320067 2.341634 -4.345233 0.136187 1.664890 -0.891170 3.555280 -3.682231 -1.149395 4.002600 -6.143611 2.890216 4.010143 -3.787437 -3.689692 6.483859 -1.299189 -1.078612 24.011122 -1.499909 8.904413 8.013349 -5.792025 1.120112 -4.552041 1.568571 3.736645 4.352021 3.946736 -10.299439 -5.873878 6.872829 10.735043 3.769363 -9.479557 -1.908988 3.654064 1.425649 -2.375349 3.877760 0.649586 1.406139 -3.934912 -0.554746 5.741367 13.824364 -4.665450 -0.495408 0.804286 5.378275 0.092809 -7.014826 -1.498890 -6.178898 -0.185606 5.878909 3.233723 4.033869 8.402382 -13.555922 5.844496 -0.195884 0.774575 4.000790 4.764475 -6.942531 -7.743433 -1.227867 3.047740 5.472908 -0.464555 1.729786 1.733587 -9.330154 0.539976 2.444353 1.019230 -5.995681 7.832343 0.782988 -3.293599 -2.721064 2.500104 -2.604301 -2.311591 -1.680899 6.341829 0.517504 -11.988536 5.895570 0.758740 -4.330514 0.424216 -3.035532 9.144095 -6.371999 -6.585615 5.078994 -3.527346 -4.269510 -2.470757 -1.668367 2.285016 2.945297 3.898732 -7.150887 -7.626921 7.557034 -1.982298 8.981257 4.537493 -1.639210 6.100643 -7.611193 -3.765170 -5.606598 -5.036092 3.173544 2.112341 -5.651272 -4.645941 -1.999181 5.538853 6.676557 -0.993905 -5.449808 -0.694534 7.162161 -9.475936 -0.625035 2.052831 7.255442 -5.808366 3.767993 3.654746 -5.885379 2.739276 -5.895527 -1.314011 -4.980138 -4.394869 6.459416 -1.587034 2.846415 0.165449 -0.980317 0.855122 4.060683 2.772520 0.566194 2.405613 8.615710 10.024990 -2.601061 -2.718995 -9.880683 5.186010 -8.376838 -8.580534 1.829626 0.500091 -4.456772 -2.447381 -1.632014 7.396392 4.859329 -4.964271 -4.759347 3.862803 +PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -2.652965 -1.480753 0.043010 -4.604399 2.930315 4.424627 1.516217 -3.663123 -5.565313 -3.493288 2.288832 -8.294288 -4.914707 6.854369 -2.623844 3.701393 8.556580 -0.005767 -2.878530 -2.940286 5.512422 -0.108156 9.809353 10.388985 -7.176235 0.138228 0.961083 3.634543 3.108478 -0.012363 3.190372 -4.606164 1.796252 -4.686722 0.905190 -2.547296 -1.378471 1.508962 3.915224 -10.985414 -0.910522 2.905430 -0.497672 0.040923 0.430406 2.513234 6.613239 5.665331 -1.184985 4.820451 5.116144 0.642380 2.779521 0.080397 0.824352 -1.069355 0.939321 -1.308550 -0.743352 -0.824954 -1.433896 -2.300694 0.381770 7.660690 8.468795 -0.124087 -3.244232 2.077038 1.838321 1.959531 1.850680 5.760895 0.314138 2.958030 4.979241 -7.745976 0.085563 -12.473200 1.712188 -12.233110 -5.216560 -0.281590 5.527072 3.120040 2.955921 -0.123493 10.379838 -0.992162 -2.947638 8.266178 8.411007 -4.765224 -1.471759 -2.254972 -3.666762 1.247169 -3.460814 2.404213 0.240338 3.973318 -6.041224 -3.989042 0.742138 0.408006 -4.212295 -3.558628 -0.693742 5.069913 -6.563068 -3.260815 -3.386136 4.404241 0.288345 -11.058050 -4.341317 -4.494833 3.252771 1.404787 -4.452716 -4.566529 2.376680 1.355074 -1.456412 -2.282950 -1.950485 4.103718 4.697768 1.731969 -0.519524 4.005364 2.607267 9.283733 2.326684 -3.408266 -0.003811 1.721480 -1.056590 2.777708 -2.977068 -1.144992 2.981645 -5.244593 0.425437 3.293575 -3.618335 -3.805793 1.808544 -1.725736 -0.067244 21.306599 -1.118941 7.252410 6.431193 -5.807061 1.816169 -2.887737 0.640964 2.950652 4.125330 3.994357 -8.694475 -5.312008 5.934837 9.989137 3.440566 -6.661646 -0.639922 3.068309 0.941490 -1.979986 3.756604 0.911639 0.527903 -3.622386 -0.911252 5.077971 11.708976 -3.321570 -1.344596 0.951773 4.072298 -0.236360 -5.963721 -0.578501 -4.141682 -0.115185 4.148886 1.878156 3.414781 7.768428 -11.008669 5.927556 0.093736 0.905774 4.242785 2.608715 -5.426924 -7.184301 -0.826668 3.420834 5.237947 -0.671317 0.230384 0.856095 -8.284155 0.281012 2.251858 1.588355 -4.869130 7.045974 -0.019687 -2.944595 -3.420392 0.776408 -2.300136 -1.703244 -2.401999 5.227848 0.474493 -8.413791 6.228260 0.424146 -3.362644 -0.306024 -2.536837 7.103621 -6.249422 -6.715604 4.205750 -3.382084 -5.365160 -2.617998 -2.197454 2.679618 3.182876 1.515299 -6.139428 -5.987029 7.081325 -2.114154 7.880021 4.016500 -0.946206 5.866097 -2.630202 -3.245171 -4.377339 -4.487690 2.125417 0.839851 -4.750596 -4.127166 -1.946231 4.961391 6.454655 -1.191831 -4.484019 -0.389171 6.815926 -6.620160 -1.907267 1.914637 3.449838 -4.916926 3.712069 3.258692 -5.382696 1.601314 -5.772388 -0.439525 -4.079809 -4.257553 5.295095 -2.176327 2.204560 1.170104 -0.914264 -0.175850 3.234659 2.682135 0.349847 1.758866 8.426531 7.124317 -2.243845 -0.705602 -8.893186 4.763048 -8.028855 -7.166402 1.045344 1.202677 -3.002295 -1.938248 -1.042653 5.700035 4.807761 -4.094607 -4.000733 3.317397 +PE-benchmarks/tug-of-war.cpp__main = 0.041070 0.222315 0.384699 -0.099179 0.429065 0.024797 0.223576 0.369653 -0.461962 -0.495511 -0.073054 -0.645876 -0.735660 0.597749 0.013032 -0.016538 0.903434 0.293104 0.041021 -0.201245 -0.014751 -0.404722 0.731990 0.791306 -0.551894 0.286639 -0.081774 0.163299 -0.198375 0.688655 -0.167017 -0.782527 0.246736 0.075867 0.310795 -0.326860 -0.237915 -0.131086 -0.336729 -1.222101 -0.042596 0.693500 0.073023 -0.045163 0.181231 0.585161 0.903016 0.355030 -0.064807 0.537241 0.087006 -0.162394 0.347803 0.100669 0.312262 0.060091 0.267520 -0.214573 -0.598253 0.286239 -0.166265 -0.870608 -0.286651 0.371266 0.581015 -0.145096 -0.252279 -0.210026 -0.200796 0.136146 0.083055 0.299292 0.492670 0.065181 0.433595 0.065009 -0.090416 -0.600842 -0.038472 -1.767787 -0.698098 -0.413154 1.021484 0.462592 -0.010879 -0.415343 0.789829 -0.168524 0.188535 0.246754 0.872104 -0.411862 -0.304289 -0.243399 0.008018 0.238370 -0.257494 -0.182779 0.328111 -0.160766 -0.559659 -0.240058 0.530823 -0.158464 -0.298306 0.154300 -0.133589 0.582676 -0.894612 -0.156757 -0.944626 -0.004769 0.261681 -0.735093 0.089960 0.248001 0.070502 0.554886 -0.361016 -0.140317 0.371867 0.075744 -0.261730 -0.042715 -0.586281 0.809090 -0.059998 0.009199 0.328341 0.364408 0.277926 0.392339 0.593288 -0.161939 -0.033534 0.283725 -0.121938 0.077183 -0.134563 -0.252136 0.014685 -0.470748 0.079985 -0.107216 -0.457091 -0.078068 -0.550172 -0.071519 0.180996 0.821981 -0.224691 0.459497 0.094492 -0.528407 0.576790 -0.116933 -0.220793 0.015940 0.589340 0.420862 -0.116806 -0.282094 0.274325 0.787066 0.356846 -0.548272 0.069014 -0.080924 0.162592 -0.021520 0.462298 0.153768 0.385333 -0.386204 -0.056930 0.102882 1.086197 -0.278960 -0.793135 0.011779 -0.021892 0.203142 -0.464705 0.080639 -0.024186 -0.078132 -0.029704 -0.094780 0.147644 0.648474 -1.235523 0.697060 -0.245903 -0.347697 0.577288 -0.007932 -0.146344 -0.767205 -0.091104 0.444625 0.848832 0.374252 -0.114392 -0.139779 -0.573505 -0.098691 0.029466 0.296224 -0.308806 0.534871 -0.150969 -0.461476 -0.245387 -0.673447 0.008616 -0.084482 -0.353111 0.228769 0.592218 -1.280815 0.545390 0.011181 -0.317344 -0.086288 0.180647 0.201088 -0.478330 -0.723901 0.074807 -0.410863 -0.957351 -0.268799 -0.340815 0.119368 0.006548 -0.260310 -0.060991 -0.576862 0.894596 0.051018 0.584048 0.424983 -0.015958 0.869431 0.837755 -0.573721 0.020428 -0.365595 0.364919 -0.749756 0.025282 0.165469 -0.405573 0.309310 0.780643 0.164847 -0.041628 -0.450851 0.640575 -0.395809 -0.250393 0.572262 -0.144419 0.101505 0.567089 0.642118 -0.493233 -0.192666 -0.579998 -0.108487 -0.102169 -0.228576 0.160988 -0.635828 -0.084184 0.353074 -0.206496 -0.441258 0.174992 -0.136638 -0.304099 -0.259640 0.797707 0.774562 -0.675396 0.618691 -0.425770 0.409948 -0.643265 -0.317912 -0.181006 0.244161 -0.304530 -0.077811 0.101950 0.050743 0.089609 -0.436453 -0.437195 0.113719 +PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -0.837141 -0.782894 -0.414441 -1.272079 0.855623 0.825468 0.446707 -1.161866 -1.737801 -0.924416 0.686869 -2.346501 -0.940486 1.845774 -0.498720 1.443670 2.130649 0.020354 -0.715022 -0.704561 1.340046 -0.383835 2.179110 2.423933 -1.228929 0.123083 0.243473 0.698300 0.100294 0.245994 0.904733 -1.742861 0.256577 -1.351291 0.298960 -0.473573 -0.842004 0.869512 1.693205 -2.679876 -0.186853 1.403467 0.521040 -0.042433 0.150044 -0.386569 1.207992 1.172881 0.127083 1.702109 1.016190 -0.019440 0.965769 -0.074399 0.998248 0.320698 0.541676 -0.443023 -0.219055 -0.077827 -0.853775 0.254440 0.120310 1.626739 1.801779 -0.244844 -1.208203 0.360042 0.343984 0.715370 0.518975 1.621943 -0.686999 0.402215 1.013284 -2.209236 0.132980 -3.319274 0.754391 -3.014233 -1.430505 0.647441 1.244209 0.968945 0.926425 0.295954 2.753229 -0.759018 -1.314744 1.404566 2.021335 -0.837508 -0.268055 0.021687 -0.849983 -0.160748 -0.450488 0.137072 0.676777 1.020282 -1.565393 -0.720100 0.516009 0.114089 -0.920874 -0.918760 -0.043399 1.439745 -1.505079 -1.188488 -0.635292 1.616629 -0.011046 -2.511461 -1.343527 -1.032355 -0.328300 0.507113 -1.920862 -1.421464 1.171984 0.028101 -0.585104 -0.554055 0.304838 0.797128 1.087131 0.640431 -0.235829 1.192930 0.449111 2.659653 0.416933 -0.978496 0.444142 0.486210 0.160765 1.023731 -0.337369 -0.559597 -0.186528 -1.208518 0.269055 0.619157 -0.954857 -0.772229 0.307407 -0.279108 -0.641465 5.496005 -0.798895 2.133992 1.790420 -1.250046 0.501048 -0.522040 0.432315 0.325673 1.177827 1.026560 -1.679212 -1.333159 2.023646 2.643855 0.869375 -1.652700 -0.756940 0.941357 0.483762 -0.027529 1.168273 0.010477 0.503319 -0.922866 -0.213740 0.696335 3.060469 -0.994033 -0.927468 0.239814 1.469116 -0.002978 -1.710560 -0.169959 -2.267423 -0.073789 0.646945 0.393404 0.715477 1.917218 -3.222360 1.641122 -0.042023 0.073412 1.811607 0.995892 -1.299866 -3.039728 -1.025354 0.563993 1.541577 -0.497270 0.351265 0.157075 -2.016522 0.149049 0.280005 0.314721 -1.526251 2.014019 -0.502525 -0.724609 -0.273535 0.435424 -0.667206 -0.890213 -0.579283 1.364268 1.057610 -1.953694 1.280002 0.750632 -0.566315 0.094783 0.006450 1.887950 -1.020678 -1.599456 1.059229 -1.039694 -1.096732 -0.102142 -0.747944 0.407647 0.857087 0.429473 -1.256826 -0.755988 1.805580 -0.526154 2.559913 0.939167 -0.671592 1.077672 -0.865705 -1.003668 -0.485889 -0.896453 0.174799 0.084285 -0.816512 -1.838951 -0.484516 1.235385 1.090446 0.277090 -1.232912 -0.623849 1.743943 -1.674349 0.435530 0.587793 0.133415 -1.264421 0.702122 0.943398 -1.069881 0.735956 -1.438574 -0.057931 -1.686885 -0.490267 1.355068 -0.249979 0.292010 -0.198416 -0.715873 0.097229 0.528077 1.128941 0.023650 0.578254 1.801506 1.151076 -0.306267 -0.345780 -2.025865 0.862855 -1.541016 -1.467525 0.038470 0.576125 -1.406510 -0.876302 -0.265897 1.446966 1.276067 -0.918726 -1.068141 0.918682 +PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -0.902141 -1.031335 -0.441530 -1.443136 0.769850 1.045681 0.529332 -0.930099 -2.127680 -0.882669 0.716886 -2.458073 -1.051206 2.206555 -0.679519 1.611910 2.728987 0.496574 -0.911641 -0.595422 1.737324 -0.669819 2.696241 3.158281 -1.825634 0.012112 -0.274148 0.997948 0.491701 0.485797 0.873432 -1.497165 0.495016 -1.637779 0.418722 -1.328573 -0.416223 1.314417 1.410983 -3.521325 -0.090032 1.533128 0.820314 -0.062958 0.135463 0.570372 1.468291 1.690470 -0.309875 1.700372 1.341436 -0.001723 1.063849 0.095851 0.464762 0.295914 -0.027555 -0.369985 -0.383164 -0.116171 -0.590609 -0.679597 0.478934 2.066418 2.574124 -0.205180 -0.966117 0.441304 0.512083 0.631928 0.921033 1.562358 -0.292135 0.099761 1.256890 -2.230295 0.101510 -3.591081 0.744641 -3.881554 -1.374796 0.191379 1.902530 1.539060 0.981933 -0.503572 3.111831 -0.719972 -1.083503 2.320860 2.218449 -1.416025 -0.537608 -0.770490 -1.125063 0.286477 -0.958543 0.004596 0.634479 1.200312 -1.783943 -1.087883 0.288832 0.301762 -1.167998 -1.096671 -0.164867 1.635098 -2.047786 -1.410203 -0.892870 1.631811 -0.053265 -3.109822 -0.607248 -1.668193 -0.300804 0.423457 -1.601639 -1.365387 0.892218 0.234747 -0.569127 -0.581537 -1.088076 1.482603 0.864966 0.385374 -0.206453 1.021027 0.294300 2.637218 0.308858 -1.356254 0.151657 0.869917 -0.365336 0.937353 -1.207835 -0.777610 1.059650 -1.943737 -0.334477 0.455009 -1.202202 -0.536269 0.515944 -0.136391 -0.130048 6.215251 -0.389058 2.318540 2.006577 -1.626011 1.399606 -0.345564 0.602507 0.951846 1.458627 0.767718 -2.561510 -1.703342 1.587783 2.957958 1.180617 -1.612127 -0.737701 0.692269 0.489683 -0.032801 1.012208 0.194844 0.036624 -1.229613 -0.242365 0.866226 3.683401 -0.826644 0.411942 0.250156 1.504773 -0.681533 -2.174062 -0.296460 -2.308766 -0.073336 0.493881 0.442597 1.009852 2.383966 -3.101533 2.034836 -0.424910 0.346425 1.399175 0.510088 -1.504868 -3.300951 -0.750154 0.672238 2.038482 -0.492966 0.354941 0.632066 -2.474713 0.099378 0.382732 0.497617 -1.515808 2.083190 -0.291813 -0.815104 -0.663900 0.447959 -0.960898 -0.987910 -0.557349 1.608998 1.000208 -1.718234 1.489736 0.208527 -0.940696 0.265540 0.056402 1.732485 -1.805545 -1.908956 1.263881 -0.630766 -1.317363 -0.798148 -0.600223 0.990357 0.510759 -0.349567 -1.470685 -1.974226 2.090736 -0.841930 2.439045 1.135610 -0.758762 1.296318 0.157752 -0.982668 -1.132036 -1.298053 -0.245033 -0.264070 -0.978535 -1.212362 -0.552534 1.610188 1.798976 0.319007 -1.286666 0.171599 2.477579 -1.151224 -0.290907 0.789751 -0.067318 -1.182100 0.914457 1.177964 -2.002283 0.465543 -1.777685 0.279409 -0.992217 -0.844643 1.836772 -0.600821 0.748413 -0.077278 -0.195266 0.017099 0.887384 1.217635 -0.190349 0.516216 3.077713 1.014300 -0.149594 -0.099714 -2.432782 1.145584 -2.219832 -1.557240 -0.285345 0.967567 -1.420443 -0.277020 0.111254 1.839580 1.421690 -0.867785 -1.126757 0.732675 +PE-benchmarks/the-knights-tour.cpp__solveKT() = -0.774656 -0.552337 0.502951 -2.109752 1.468965 1.480199 0.766795 -0.194305 -3.130690 -1.589424 0.349194 -3.946203 -2.219502 3.287476 -0.572635 1.328945 4.359071 0.936191 -1.099098 -0.522532 1.599533 -1.089667 3.495726 4.476271 -2.543279 0.577350 -0.857301 1.250298 -0.368535 2.261642 0.482819 -3.291598 0.053443 -0.832852 1.402706 -1.770399 -1.212134 1.233077 0.736415 -5.849774 -0.119638 3.915469 1.382319 -0.312649 0.825917 0.649470 3.228749 2.102008 -0.277949 1.993239 1.199100 -0.006782 1.945207 -0.012649 1.406988 0.729745 0.823059 -0.703554 -1.196635 0.521577 -1.073292 -1.196600 0.208486 2.791465 3.341208 -0.254115 -1.790796 -0.610425 0.583778 0.788968 0.780680 2.289860 0.312620 0.396259 1.624044 -1.516780 0.457966 -4.059278 1.699435 -5.479693 -2.567753 -0.228821 3.494616 3.619155 0.736474 -2.278225 4.681506 -1.766380 -0.810039 2.640525 3.685984 -1.604494 -0.790973 -1.496981 -1.661925 0.418767 -0.892323 -0.841614 0.776921 1.008094 -2.740946 -1.246700 0.792679 -0.025069 -1.725638 -0.037966 -0.255178 2.705614 -2.952137 -1.483580 -2.147441 2.379948 0.566144 -4.280089 -0.907196 -1.703109 -2.089253 1.147580 -2.737697 -1.709822 1.809068 0.125080 -1.479243 -0.177419 -3.109888 3.339254 0.661964 0.040140 -0.014329 1.513847 0.770507 2.599823 0.554374 -1.862526 0.455300 1.525728 -0.350039 0.698879 -1.432569 -1.063475 0.690942 -2.436522 -1.129379 0.072840 -1.971094 0.036893 -1.723376 -0.448088 -0.048037 8.831827 -1.384637 3.179705 1.895357 -2.472763 3.495981 0.432535 0.040011 0.513081 2.364428 1.940369 -3.386956 -2.139641 2.369247 4.530749 1.752911 -1.842602 -0.229895 0.763932 0.316268 0.061903 2.275359 0.035351 0.533029 -1.896740 -0.552861 0.734428 5.846240 -0.855722 -1.492817 0.095078 1.861069 -0.213199 -2.417705 0.084038 -2.949635 -0.290265 0.212434 0.024971 1.796869 3.485808 -5.215025 3.493182 -0.602191 -0.679452 3.040595 -0.102431 -1.450864 -4.697128 -1.303404 1.492074 3.779856 -0.108278 -0.260429 -0.012908 -3.454324 -0.026433 0.394794 1.147806 -2.468846 3.213756 -0.838262 -1.682904 -0.708107 -1.205612 -1.593641 -1.385749 -1.895960 1.868715 2.104668 -2.770312 2.603612 0.944014 -0.804666 -0.011793 0.350880 1.425621 -2.349713 -3.028255 1.178838 -1.009258 -2.724455 -0.812485 -1.574981 1.261440 0.619420 -0.738512 -2.054316 -3.277024 3.698453 -0.736682 4.067036 1.917668 -0.962976 1.985170 3.304797 -1.627075 -0.665443 -2.610680 0.493823 -0.880237 -0.821896 -1.291663 -1.542691 1.985686 2.766362 0.450478 -1.371604 -1.317092 3.580298 -0.712428 -0.219011 1.397519 -2.540831 -1.178418 1.065851 2.124445 -2.439321 0.217198 -3.209965 0.365886 -1.654253 -0.918919 2.018033 -1.562385 0.333373 0.480254 -1.068000 -0.939889 0.794609 1.312212 -1.263511 0.544620 4.601745 0.734128 -0.526898 1.478667 -3.202637 2.069832 -3.107102 -1.609846 -1.079233 0.900172 -2.226063 -0.753954 0.339475 1.841318 1.550991 -0.970505 -1.671421 1.105255 +PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -2.062983 -1.213634 -0.382495 -3.064887 2.498111 3.951678 1.349721 -2.767208 -4.272027 -2.008986 1.491047 -5.754788 -3.457711 5.325194 -1.618978 3.710520 6.686812 0.420201 -2.026327 -1.798108 4.267215 -0.916194 7.465360 7.976053 -5.134166 0.314334 0.978174 2.270970 1.565598 0.947007 1.057862 -3.627728 1.898017 -4.521309 0.504349 -2.695775 -1.319998 1.405715 3.623408 -8.623420 -0.656224 2.074207 -0.564224 0.017869 0.182700 2.190429 5.001511 4.245736 -0.840461 4.242380 3.255071 -0.239259 2.254483 0.239040 1.216869 0.441265 0.644527 0.188332 -0.783157 -0.572040 -1.371734 -2.120978 0.425448 5.390521 6.356869 -0.484359 -2.537721 1.770414 0.856544 1.119258 1.301795 4.369407 0.304381 1.639505 3.780619 -6.226978 0.098943 -8.974617 0.830734 -9.533208 -3.908136 -0.239696 3.650602 1.551440 3.123545 -0.533359 8.030506 -1.146403 -2.226840 5.421700 6.372882 -4.686497 -1.153921 -1.547635 -2.266398 0.435360 -2.542904 1.217716 1.318353 1.604486 -4.682680 -3.598668 1.250780 0.746143 -3.185827 -3.170360 -0.608363 4.044491 -5.138715 -3.456378 -3.115538 2.553031 -0.701474 -8.389586 -2.599454 -2.928506 2.188812 1.363258 -3.615604 -4.461765 2.186852 1.617383 -1.008278 -2.740898 -0.113155 3.649495 3.472981 1.142853 -0.019583 2.635774 1.626005 7.741286 2.687187 -2.493115 0.016863 1.546121 -1.215145 2.248863 -2.254823 -1.200776 1.979974 -4.668061 0.066297 2.675046 -2.912942 -1.378851 2.808535 -0.793904 -0.165443 16.764676 -1.126528 5.600900 4.658064 -4.877216 2.132067 -2.237703 0.508481 2.325814 3.485135 2.979443 -7.804958 -3.900220 4.377511 7.674898 2.749152 -5.812666 -1.108755 1.626996 1.111594 -1.232633 2.681244 0.674680 0.831402 -2.959190 -0.554236 3.173820 9.855273 -3.514512 -1.234671 0.939302 2.518796 -0.694879 -5.632162 -0.767825 -4.293884 -0.324033 2.433869 1.092228 2.308150 5.884402 -8.187850 4.650952 -1.244949 -0.316391 3.923828 2.189438 -3.918023 -5.729975 -0.940653 2.549538 4.387354 -0.220488 0.438622 0.681231 -6.323661 0.166027 1.438863 1.238904 -3.721659 5.548504 0.056283 -2.807668 -2.307559 0.680231 -1.359733 -2.352974 -1.480302 3.986506 0.549747 -7.000314 4.470955 0.753586 -2.733525 0.683764 -0.916129 5.119917 -4.674827 -5.555776 3.559316 -2.126055 -3.276139 -1.688731 -1.674750 2.154158 2.503538 0.295952 -4.520648 -5.500302 5.211241 -1.472741 6.065100 3.093250 -0.779784 4.794681 -1.959377 -3.105790 -3.549683 -3.475270 1.123856 0.061648 -3.208459 -3.784998 -1.633195 4.249871 5.096631 -0.008483 -2.792151 -0.648878 5.489484 -5.226256 -0.608194 2.015822 3.432597 -3.610837 2.181674 2.902470 -4.091507 0.937547 -3.822826 -0.560996 -3.055330 -2.981929 4.071849 -2.117304 1.576248 0.772740 -0.684228 -0.020304 2.335998 2.026249 0.374527 1.025352 6.507600 5.448418 -2.177952 -0.752550 -6.270025 3.591723 -6.014316 -5.085164 0.624179 1.618870 -2.699984 -1.431227 0.187881 4.236285 3.383802 -3.404567 -2.636155 1.525879 +PE-benchmarks/the-knights-tour.cpp__main = -0.027413 -0.016906 0.130506 -0.095883 0.154569 -0.145434 0.105117 0.059316 -0.261442 -0.226555 0.052468 -0.313362 -0.208103 0.277145 -0.054903 0.094652 0.362832 0.154386 -0.015883 -0.117966 0.041459 -0.279743 0.321815 0.328353 -0.216282 0.076070 -0.085835 0.127177 -0.006197 0.255518 -0.028771 -0.226642 0.130526 -0.037066 0.099985 -0.171289 -0.018040 0.071922 -0.072049 -0.446997 0.031251 0.219641 0.226905 -0.028847 0.010073 0.258569 0.254281 0.186940 -0.008631 0.244052 0.119635 -0.081214 0.128704 0.084565 0.129561 -0.001537 0.166582 -0.186952 -0.269733 0.080444 -0.056715 -0.401145 -0.055653 0.170800 0.289272 -0.051813 -0.030418 -0.030871 -0.083579 0.096716 0.156004 0.054604 0.062119 -0.043052 0.127201 -0.089062 0.049253 -0.334003 -0.077353 -0.842890 -0.240984 -0.098840 0.442752 0.203999 0.010160 -0.023762 0.274856 0.003727 0.010180 0.067042 0.328109 -0.173473 -0.173162 -0.050012 -0.022967 0.124182 -0.153777 -0.076959 0.170563 0.079389 -0.216407 -0.024260 0.263946 -0.014359 -0.091776 0.055055 -0.026256 0.216658 -0.437381 -0.109003 -0.272279 0.002802 0.106117 -0.300448 0.218186 0.002030 0.070497 0.169734 -0.128737 -0.031195 0.122112 0.017112 -0.093498 0.027499 -0.421580 0.269225 -0.088372 0.073133 0.105011 0.109228 0.065760 0.180176 0.145211 -0.142042 -0.009053 0.080824 -0.085459 0.097898 -0.096940 -0.195130 0.080803 -0.250103 0.053552 -0.093733 -0.191345 -0.083073 -0.143529 0.061522 0.082949 0.165680 -0.025111 0.229183 0.110877 -0.194908 0.181031 -0.067235 0.005108 0.042078 0.223047 0.033428 0.081830 -0.190693 0.102352 0.277546 0.178905 -0.181872 -0.088125 -0.043190 0.096790 0.092349 0.095034 0.090201 0.065136 -0.189166 -0.033637 0.011044 0.398235 -0.039849 -0.084283 0.047944 -0.047393 -0.027163 -0.276585 -0.018512 -0.042190 0.033364 -0.148282 -0.002693 0.038944 0.299296 -0.545716 0.307262 -0.108670 -0.029823 0.219412 -0.041573 -0.124441 -0.530469 -0.073927 0.136237 0.341279 0.064726 0.023783 0.077567 -0.229731 -0.045870 -0.051153 0.087156 -0.095215 0.143309 -0.032312 -0.169711 -0.124605 -0.179072 0.024483 -0.002180 -0.059806 0.132266 0.329492 -0.473872 0.194799 -0.065686 -0.156278 -0.017904 0.121864 0.080535 -0.224948 -0.235033 0.013208 -0.185151 -0.351851 -0.201370 -0.049559 0.049112 -0.141626 -0.184826 0.048279 -0.107355 0.294509 -0.094448 0.165220 0.135248 -0.041604 0.265278 0.339853 -0.169705 -0.008265 0.039881 -0.056289 -0.418596 0.003481 0.195948 -0.102450 0.158404 0.291424 0.125984 -0.026495 0.045529 0.292274 -0.098030 -0.191803 0.264281 -0.099894 0.011509 0.288855 0.270196 -0.299278 -0.058997 -0.223385 -0.066986 0.006626 -0.099792 0.125789 -0.144265 0.037703 0.064132 -0.004819 -0.150397 0.118379 -0.015905 -0.101330 -0.093239 0.404773 0.298054 -0.177548 0.190616 -0.188208 0.068613 -0.276866 -0.147592 -0.045689 0.235896 -0.192282 0.046863 0.040975 0.111759 0.051854 -0.135291 -0.169767 0.064487 +PE-benchmarks/longest-bitonic-subsequence.cpp__lbs(int*, int) = -6.981528 -6.112098 -3.652944 -11.645080 6.227853 12.974904 3.059586 -11.711602 -12.533005 -3.492197 6.473505 -15.787427 -6.939514 14.386645 -6.375297 11.197502 15.539139 -1.374319 -7.933530 -5.621212 13.152207 2.695661 20.040890 20.523834 -13.874198 -0.736540 1.548232 6.159276 6.389201 -0.547059 6.266668 -8.516444 3.613534 -11.843418 -0.135708 -4.625410 -3.077642 5.146709 12.976363 -20.026651 -1.146132 5.024611 -0.657803 -0.001857 0.281716 2.646059 10.167564 11.863992 -0.977128 9.969351 11.171803 2.664556 5.122249 -0.242558 3.172641 -0.158720 2.265067 -1.623960 1.473029 -4.326750 -3.467826 1.529051 1.905556 15.984252 16.781820 -0.688894 -7.060752 5.304901 4.574273 4.371439 4.862186 12.103029 -2.671969 5.268855 8.724672 -16.684489 1.077080 -22.922607 4.475036 -19.044421 -8.302388 3.170221 7.541233 5.394102 8.390535 0.171651 21.437570 -2.599507 -9.528124 15.424185 14.518896 -9.854865 -1.855937 -2.732859 -8.290289 0.108865 -6.135145 5.151408 0.616505 8.538432 -12.109089 -7.219614 -1.335483 2.608674 -8.717011 -9.045980 -0.719894 9.234061 -11.244358 -7.496118 -1.946146 12.284739 -2.001475 -22.981773 -11.358585 -12.573784 4.250447 -0.517705 -9.818069 -11.076386 4.997701 3.386119 -3.090035 -6.151810 -0.002216 6.197814 11.841777 4.319693 -3.045446 6.778441 3.780051 21.741008 1.348510 -8.006484 0.751285 2.888278 -0.649633 7.367813 -5.536950 -1.420102 5.014112 -11.288134 1.961372 8.157503 -6.164777 -5.165044 7.026060 -1.908950 -2.232060 48.695010 -3.276979 16.647435 14.797983 -11.690102 1.312236 -5.961598 3.509191 6.694768 7.121765 5.954886 -19.815943 -11.265357 13.530055 20.069018 6.839154 -13.666628 -0.449690 7.241526 1.223063 -4.089865 6.662902 0.520748 -0.160144 -7.204777 -2.197069 9.314791 24.651274 -7.167620 0.709902 2.699539 10.975546 -2.536845 -9.625888 -2.373733 -12.054717 0.399611 9.672880 4.705049 7.997826 15.411666 -19.219898 11.295224 -0.330302 1.810949 9.132821 6.318550 -11.923414 -12.256634 -3.627312 4.564229 9.826784 -4.106552 1.972070 3.551553 -16.936387 1.384085 4.335275 1.461242 -10.552397 13.989799 1.882328 -5.709230 -5.140624 5.214349 -4.967884 -4.312076 -4.597944 11.294473 -1.372569 -15.655165 11.173471 2.796702 -6.364062 0.620883 -4.572376 15.408438 -11.392190 -12.069742 9.932253 -4.793973 -6.066839 -3.342350 -3.639812 6.184278 7.097205 6.371908 -15.252872 -11.679029 12.306471 -5.342796 17.110364 7.490923 -3.313324 8.049058 -12.252073 -4.966422 -9.879734 -10.709553 3.224258 5.525949 -11.025263 -7.789579 -3.332417 11.160899 9.836657 -1.549527 -10.885211 0.427180 13.729172 -11.988119 0.198622 2.067174 8.595486 -12.644811 4.678712 5.355379 -9.659347 5.105171 -9.801173 -0.962661 -10.711715 -8.255933 13.133621 -0.648430 6.977259 -0.790346 -0.081931 1.437709 6.004062 7.019800 1.462120 6.086705 16.486601 10.294407 -1.447860 -4.751452 -18.379926 9.988460 -14.395465 -14.359074 3.033765 0.562252 -7.508409 -4.169022 -3.588999 14.411666 10.684422 -6.608944 -6.626119 6.686888 +PE-benchmarks/longest-bitonic-subsequence.cpp__main = 0.032929 0.162046 0.407824 -0.161036 0.423367 -0.031105 0.236142 0.319383 -0.528188 -0.597981 0.094811 -0.919693 -0.865750 0.641191 -0.030702 -0.052678 0.873055 0.149005 -0.021409 -0.254240 -0.032187 -0.319424 0.814654 0.886607 -0.656446 0.292167 -0.178204 0.215607 -0.069003 0.521356 0.018283 -0.795289 0.221981 0.159070 0.308012 -0.148586 -0.255811 -0.181272 -0.315197 -1.226728 -0.081426 0.849141 0.097869 -0.023271 0.218670 0.755394 0.942523 0.417554 -0.119163 0.614122 0.223402 -0.268393 0.417859 0.060577 0.267337 -0.271536 0.321643 -0.232247 -0.611519 0.267344 -0.133369 -0.888079 -0.361303 0.468117 0.683520 -0.168776 -0.316626 -0.231270 -0.109539 0.196842 0.129055 0.398355 0.557464 0.149415 0.536172 0.190841 -0.047087 -0.718249 0.023294 -1.934054 -0.783846 -0.288986 1.284398 0.581328 -0.124713 -0.506128 0.872975 -0.050288 0.036556 0.389231 0.955112 -0.309257 -0.329281 -0.172494 -0.062545 0.302359 -0.315914 -0.028319 0.336696 0.013925 -0.634427 -0.078886 0.444266 -0.254761 -0.348567 0.243663 -0.138061 0.543557 -0.919876 -0.009232 -0.855274 0.083300 0.473191 -0.888547 -0.008449 0.228836 0.065229 0.557864 -0.412239 0.069400 0.344401 -0.143558 -0.287549 0.107443 -0.856862 0.843766 0.008843 0.172973 0.325653 0.504643 0.422084 0.351089 0.427794 -0.205480 -0.024363 0.200030 -0.026135 0.253377 -0.078219 -0.229522 0.144988 -0.426898 0.158554 -0.219560 -0.454495 -0.233994 -0.723644 -0.044519 0.071731 0.884945 -0.177721 0.630591 0.234528 -0.482695 0.558594 -0.175610 -0.192262 0.062710 0.562170 0.434126 0.041981 -0.311229 0.429742 0.911536 0.349422 -0.647413 0.226037 0.182503 0.177758 -0.155677 0.576273 0.170221 0.448742 -0.383282 -0.054986 0.284460 1.041905 -0.213443 -0.850229 -0.010400 0.079325 0.353725 -0.376087 0.138343 0.121274 -0.046614 0.044382 0.018335 0.199806 0.698487 -1.403894 0.710252 -0.017511 -0.215677 0.633621 0.012660 -0.341307 -0.910694 -0.080566 0.415120 0.769713 0.407671 -0.193949 -0.103303 -0.645425 -0.080604 0.085666 0.182746 -0.349791 0.611591 -0.215955 -0.324663 -0.292775 -0.805839 -0.054779 0.090148 -0.469766 0.330671 0.606483 -1.343958 0.567252 0.000000 -0.432617 -0.346938 0.029068 0.245093 -0.537927 -0.712423 0.004888 -0.653859 -1.252124 -0.413835 -0.376865 -0.042035 0.025856 -0.197279 -0.120830 -0.500769 1.086438 -0.064180 0.679514 0.474013 -0.076295 0.887223 0.938707 -0.583959 0.045808 -0.388877 0.545909 -0.753233 -0.097111 0.316740 -0.409983 0.247342 0.722709 0.065303 -0.120916 -0.442686 0.588516 -0.353761 -0.405214 0.524753 -0.227418 0.047432 0.744128 0.605382 -0.487460 0.007848 -0.754862 -0.226547 -0.227502 -0.275548 0.233162 -0.501134 -0.055121 0.327216 -0.231306 -0.441160 0.203610 -0.159601 -0.362876 -0.209609 0.883063 0.913945 -0.704059 0.646497 -0.626401 0.499070 -0.694831 -0.478111 -0.065632 0.178639 -0.317473 -0.174229 0.034692 0.070659 0.226781 -0.630388 -0.603539 0.416334 +PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -2.971992 -2.745752 -0.737157 -4.639024 2.539647 4.392629 1.683769 -4.491786 -5.680483 -2.814337 2.942878 -8.145422 -3.943587 6.710857 -2.674755 4.876239 7.990902 0.041548 -3.159873 -2.857851 5.431022 0.505834 9.682064 10.016024 -6.367032 -0.158670 0.273200 3.353635 3.166155 -0.859223 3.507442 -3.981873 2.398351 -5.369427 0.144711 -2.209293 -1.303154 2.314505 5.137722 -9.974547 -0.669998 2.616898 -0.033366 0.013386 0.291023 1.699735 5.104321 5.578427 -0.230139 5.285758 4.719641 0.290646 2.844150 0.229844 1.232905 -0.774696 0.637976 -2.143194 -0.629499 -1.254100 -1.534336 -1.418521 0.370220 7.152724 8.069649 -0.216985 -3.212901 2.372135 2.083340 2.025076 2.501642 5.498664 -0.643248 2.409372 4.369538 -8.179725 0.335625 -11.247085 1.360879 -10.694888 -4.862136 0.833215 5.191754 2.810200 3.457389 0.086310 9.705548 -0.893563 -3.941027 7.203495 7.547095 -4.909863 -1.499441 -1.336548 -2.682200 0.773578 -3.434758 2.538028 0.693463 4.060887 -5.837941 -3.186167 0.829532 0.740562 -3.888309 -3.902557 -0.235768 4.943577 -5.890220 -3.878409 -2.203275 4.948673 -0.219033 -10.413698 -3.959008 -4.561607 2.875724 1.145605 -4.628786 -4.544153 2.412501 0.982744 -1.133286 -2.602255 -1.279373 3.304253 4.870369 2.125062 -0.773074 4.440799 2.027510 10.142956 1.421781 -3.439258 0.422910 1.518473 -0.659363 3.675520 -2.587836 -1.438532 2.323610 -5.214636 0.328275 3.378278 -3.402674 -3.257373 2.261380 -0.417180 -0.737580 20.436690 -0.898837 7.440197 7.215071 -5.207746 0.938729 -3.349795 1.620696 2.881060 3.631860 2.985553 -8.662620 -5.336052 5.909231 9.515738 3.378117 -6.658430 -0.705905 3.084287 1.346221 -2.049383 3.297375 0.966717 0.830237 -3.570617 -0.640715 4.756815 11.146698 -3.607389 -0.294804 1.022520 3.810613 -0.331500 -5.852392 -1.058555 -4.359433 0.005031 3.810321 2.474282 2.919138 7.356954 -9.220365 5.570060 0.097583 1.343948 4.621708 3.132057 -5.868000 -6.945817 -1.684782 2.521296 4.782246 -1.287244 0.841746 1.614086 -7.999987 0.368716 1.943545 0.925287 -4.386826 6.490737 0.175642 -2.248729 -2.688192 1.705672 -2.004221 -1.884307 -1.812652 5.478293 1.199126 -7.351162 5.198693 0.767173 -3.575925 0.246779 -2.303536 7.679767 -5.803895 -5.818505 4.296948 -3.314242 -4.769609 -2.378486 -1.681533 2.331621 2.859922 1.918422 -5.950961 -4.573010 6.745332 -2.247624 7.730869 3.630730 -1.621454 4.812914 -4.065833 -3.215706 -3.790501 -4.648896 1.232036 1.160650 -4.771400 -3.948220 -1.494517 5.073681 5.499731 -0.663916 -4.889803 0.143442 6.377757 -7.198421 -1.142173 1.900237 4.236455 -5.022413 3.396277 3.084391 -5.377667 2.327455 -4.747881 -0.853727 -4.261097 -3.794792 5.721879 -1.128965 2.781567 -0.037339 -0.530685 0.527340 3.023830 2.949789 0.523012 2.159662 8.024207 6.607439 -1.370326 -1.745202 -8.608552 4.289741 -7.191584 -6.856423 1.456329 1.328067 -3.616589 -1.728282 -0.871062 6.057332 5.193670 -4.334916 -4.120792 3.347749 +PE-benchmarks/kmp-algorithm.cpp__computeLPSArray(char*, int, int*) = -1.741402 -1.223484 -0.286766 -3.001610 1.803859 3.388783 1.017233 -2.831918 -3.583329 -1.235995 1.335778 -4.637215 -2.095688 4.252219 -1.512949 3.273538 5.271995 0.340415 -2.104770 -1.426602 3.604896 -0.286862 5.960546 6.299609 -3.971811 0.145946 0.606591 2.085388 1.648068 0.643857 0.906203 -2.262861 1.363657 -3.771537 0.203149 -2.140600 -0.971129 1.332614 3.206356 -6.695820 -0.290043 1.372406 -0.003079 -0.113364 0.079334 1.003192 3.643966 3.412639 -0.170383 2.932190 2.633737 0.180470 1.736890 0.194051 1.226442 0.675796 1.124372 -0.393107 -0.335234 -0.861782 -1.011454 -1.054093 0.642687 4.471864 4.938348 -0.076970 -1.941818 1.519484 1.159694 0.882726 1.298131 3.343655 -0.772570 1.492296 2.449160 -5.572713 0.924404 -6.442142 0.812598 -6.404486 -2.877555 0.159609 2.470242 1.404942 2.713829 -0.013267 6.221660 -1.106040 -1.969395 3.934733 4.778081 -3.715913 -0.817297 -1.080894 -1.859055 0.245911 -1.884928 0.928930 0.757264 1.747752 -3.601459 -2.353386 0.953501 0.959335 -2.530817 -2.180706 -0.164679 3.187598 -3.867035 -2.931901 -1.552527 2.517099 -0.890395 -6.619688 -2.246495 -2.939435 1.657034 0.527488 -2.852874 -3.917349 1.624095 1.519185 -0.706651 -2.079481 -0.482216 2.508112 2.912717 0.899744 -0.401737 2.045698 1.125993 6.428782 1.564782 -2.145818 0.273733 1.136130 -0.940858 1.757390 -1.702598 -1.030791 1.062800 -3.757257 -0.248751 2.575083 -2.234360 -0.842955 2.117087 -0.159122 -0.203297 14.112706 -0.888891 4.588758 4.002052 -3.800552 1.145378 -1.663888 0.600256 1.773559 2.332807 2.116650 -6.746089 -3.311236 3.426102 5.993250 2.231509 -4.272296 -0.710921 1.161777 0.479590 -0.713748 1.862802 0.308959 0.363498 -2.420364 -0.600019 2.490967 7.837856 -2.541310 -0.575138 0.836439 1.567274 -0.961958 -4.296432 -0.799081 -3.384934 0.006844 1.704185 0.960605 1.991848 4.682072 -5.849690 3.795309 -0.870831 -0.208463 3.532072 1.588178 -3.173340 -4.217498 -1.128341 1.911760 3.449885 -0.981804 0.153694 0.838934 -5.008858 0.074947 1.114873 0.816492 -2.950160 4.118343 0.573675 -2.123291 -1.649638 1.024664 -0.927879 -1.733484 -1.118481 3.245661 -0.057036 -4.846043 3.539166 0.808623 -1.972973 0.873764 -0.974790 4.015418 -3.680568 -3.983403 2.842302 -1.170531 -2.048386 -1.194096 -1.137422 1.993947 1.925679 0.676335 -4.068478 -3.756668 3.663895 -1.489868 4.751750 2.374416 -0.715799 3.070602 -2.013568 -1.920247 -2.795104 -2.694845 0.158715 0.661414 -2.767222 -2.978448 -1.245647 3.528749 3.796929 -0.123608 -2.419012 -0.002383 4.314085 -4.084065 -0.417220 1.311529 2.440549 -3.426961 1.311541 2.093428 -3.267961 0.893699 -2.707955 -0.799076 -2.476816 -2.329099 3.589273 -1.074606 1.631376 0.323541 -0.427237 0.191269 1.905986 1.721839 0.444597 1.369959 5.115312 3.726610 -0.914048 -1.011912 -5.000932 2.753513 -4.661864 -3.937523 0.677509 1.199572 -2.327181 -1.025150 0.007142 3.875303 2.878188 -2.443751 -1.762952 1.244940 +PE-benchmarks/kmp-algorithm.cpp__main = 0.173122 0.437486 0.526550 -0.069031 0.440129 0.045907 0.184808 0.612930 -0.404775 -0.593301 -0.180539 -0.752975 -0.921753 0.536001 0.049345 -0.338065 0.870407 0.259158 0.093275 -0.135482 -0.280910 -0.197252 0.631945 0.723923 -0.559464 0.378438 -0.229680 0.128182 -0.351116 0.861969 -0.103774 -1.037642 0.103733 0.550553 0.433546 -0.178804 -0.318359 -0.319086 -0.707084 -1.284471 -0.071421 1.078787 0.086560 -0.051476 0.342908 0.530302 1.088041 0.269603 -0.032506 0.417723 -0.025495 -0.020090 0.413387 0.040772 0.319336 -0.094552 0.318518 -0.456816 -0.674305 0.379989 -0.136431 -0.865756 -0.482974 0.346269 0.484930 -0.114927 -0.307967 -0.498078 -0.231314 0.144682 -0.035471 0.312752 0.660949 0.208411 0.375963 0.661637 -0.067430 -0.179750 0.135040 -1.628589 -0.759410 -0.526560 1.237007 0.924899 -0.270266 -0.727170 0.789156 -0.230871 0.347003 0.242958 0.906838 -0.177081 -0.278873 -0.296487 0.005717 0.318771 -0.175888 -0.247933 0.126266 -0.148855 -0.545037 -0.085363 0.405541 -0.331180 -0.313390 0.503346 -0.161507 0.535604 -0.914667 0.134825 -1.035235 0.057075 0.504381 -0.678180 -0.134083 0.404206 -0.269577 0.615187 -0.351585 0.102217 0.392399 -0.087055 -0.330448 0.219842 -0.993612 0.899463 -0.166458 -0.093309 0.368428 0.444730 0.396425 0.093981 0.416759 -0.097765 -0.020780 0.310746 0.051150 -0.056808 -0.025282 -0.136796 -0.172825 -0.338871 0.085450 -0.241441 -0.450925 -0.095986 -1.357063 -0.204657 0.209373 0.627294 -0.322292 0.396021 -0.064178 -0.479388 0.650765 0.014080 -0.394190 -0.138528 0.548973 0.579655 0.266237 -0.167031 0.253745 0.795488 0.307508 -0.285389 0.463437 0.000172 0.063951 -0.099615 0.649190 0.103817 0.445886 -0.346861 -0.085855 0.101739 0.965181 -0.056997 -1.047418 -0.082082 0.053122 0.432771 0.017029 0.243088 0.236203 -0.103875 0.056396 -0.161525 0.191356 0.593320 -1.194766 0.727614 -0.021095 -0.414181 0.562644 -0.175884 -0.014925 -0.517065 -0.058320 0.517361 0.886291 0.435223 -0.238361 -0.333693 -0.515483 -0.129158 0.084612 0.345220 -0.344793 0.538482 -0.188043 -0.443838 -0.223652 -1.028689 -0.039387 0.074774 -0.633312 0.124511 0.689780 -1.237813 0.599274 0.068832 -0.251400 -0.326046 0.116411 -0.003056 -0.448099 -0.691383 -0.107316 -0.497757 -1.257699 -0.158041 -0.483163 0.040544 0.025210 -0.173321 -0.051572 -0.487311 1.053929 0.205859 0.594770 0.471686 0.026167 0.818995 1.264112 -0.553211 0.280625 -0.581985 0.674526 -0.803449 0.135136 0.503824 -0.526252 0.139981 0.791758 0.071406 -0.079082 -0.672941 0.550969 -0.057539 -0.277019 0.519327 -0.659767 0.235096 0.592995 0.626045 -0.353594 -0.224066 -0.747431 -0.034432 -0.112188 -0.189638 0.037868 -0.742938 -0.206708 0.519430 -0.348213 -0.673727 0.102940 -0.259510 -0.527966 -0.254732 0.764143 0.467603 -0.663433 1.013583 -0.389937 0.475025 -0.598074 -0.204814 -0.302001 -0.004148 -0.212042 -0.152700 -0.041765 -0.143542 0.035187 -0.355306 -0.498056 0.247066 +PE-benchmarks/little-and-big-endian-mystery.cpp__show_mem_rep(char*, int) = -0.616883 -0.633892 -0.145025 -0.911320 0.562668 0.712624 0.419043 -0.665014 -1.395060 -0.757491 0.568659 -1.796581 -0.962099 1.558622 -0.513442 1.084022 1.913707 0.280306 -0.611895 -0.538028 1.147201 -0.467878 2.103485 2.300606 -1.426115 0.033715 -0.098323 0.846463 0.515179 0.228776 0.644800 -0.932840 0.535187 -1.181032 0.218378 -0.818203 -0.246785 0.698774 0.829414 -2.498585 -0.130240 0.907403 0.326076 0.007075 0.073126 0.653222 1.163895 1.265152 -0.177623 1.314297 0.972491 -0.170083 0.774486 0.118135 0.286434 -0.046559 0.067505 -0.395011 -0.399461 -0.103121 -0.355046 -0.892936 0.169559 1.503534 1.892943 -0.170917 -0.636328 0.400025 0.260436 0.463124 0.654937 1.132100 -0.102786 0.225313 1.032191 -1.618862 0.122938 -2.447041 0.280679 -2.974821 -1.117858 0.004785 1.509627 0.952395 0.698956 -0.201027 2.215062 -0.284088 -0.727235 1.604153 1.708644 -1.142157 -0.453345 -0.446732 -0.578991 0.302795 -0.836715 0.199876 0.449176 0.848740 -1.315706 -0.665140 0.364622 0.165539 -0.863042 -0.747243 -0.182328 1.200949 -1.653456 -0.970632 -0.809858 0.895204 0.022415 -2.338986 -0.420502 -0.920179 0.349543 0.423637 -1.006818 -0.879100 0.596067 0.204977 -0.235987 -0.467686 -0.744352 1.053809 0.690916 0.358091 -0.003498 0.933119 0.335917 2.011940 0.473442 -0.797967 0.004915 0.541816 -0.327326 0.774797 -0.694544 -0.523904 0.683916 -1.420838 -0.086207 0.428718 -0.865347 -0.553628 0.320771 -0.009159 -0.032910 4.275729 -0.155207 1.660275 1.492385 -1.191341 0.721474 -0.534419 0.370959 0.729973 0.990720 0.572256 -1.757917 -1.187929 1.127217 2.142614 0.832143 -1.395907 -0.360271 0.498370 0.439429 -0.198950 0.728668 0.274177 0.193281 -0.875647 -0.121188 0.816507 2.564246 -0.742646 0.045270 0.229052 0.711753 -0.332113 -1.647262 -0.206358 -1.154225 -0.060666 0.419864 0.402332 0.555635 1.710830 -2.156432 1.423168 -0.211312 0.250326 1.084981 0.426594 -1.171593 -2.192001 -0.419410 0.560424 1.337333 -0.220139 0.139931 0.428965 -1.807263 0.046286 0.349979 0.315740 -0.973527 1.496709 -0.134534 -0.549223 -0.636996 0.154291 -0.465362 -0.496969 -0.380964 1.186756 0.583730 -1.610824 1.114476 0.025566 -0.900378 0.115247 -0.095947 1.381153 -1.400039 -1.445928 0.883872 -0.682843 -1.284335 -0.743677 -0.402638 0.569492 0.437285 -0.277150 -1.030003 -1.223850 1.591102 -0.603767 1.629111 0.845488 -0.422375 1.234562 -0.038029 -0.855994 -0.796504 -0.841784 -0.013820 -0.359365 -0.793193 -0.761845 -0.379324 1.152447 1.429980 0.145670 -0.855564 0.170660 1.698141 -1.176696 -0.482881 0.649253 0.439293 -0.831918 0.904675 0.879644 -1.437168 0.343523 -1.224609 -0.073060 -0.670174 -0.760505 1.292238 -0.505756 0.559664 0.074685 -0.092942 -0.035538 0.705054 0.668678 -0.032159 0.255983 2.155284 1.305620 -0.403560 -0.096238 -1.810145 0.878635 -1.682294 -1.288191 0.015826 0.752596 -0.827986 -0.204219 0.092759 1.249268 1.095399 -1.022345 -0.906906 0.575893 +PE-benchmarks/little-and-big-endian-mystery.cpp__main = -0.001857 0.009908 0.290643 -0.119155 0.232806 -0.240067 0.176324 0.278100 -0.411720 -0.397378 0.024662 -0.476251 -0.451894 0.452574 -0.028910 0.011916 0.660231 0.296752 -0.005154 -0.197429 0.035297 -0.476872 0.504540 0.564643 -0.389765 0.150219 -0.139435 0.223158 -0.013468 0.447231 -0.049384 -0.384339 0.183081 0.018589 0.272105 -0.308444 -0.067168 0.036927 -0.293788 -0.848909 0.022030 0.477989 0.292352 -0.043486 0.084435 0.562147 0.496600 0.289687 -0.067738 0.378984 0.139354 -0.200333 0.246030 0.108967 0.198786 -0.005338 0.233982 -0.168795 -0.491851 0.207906 -0.097803 -0.762877 -0.109028 0.261107 0.469936 -0.106983 -0.086157 -0.131584 -0.094350 0.153393 0.208298 0.111195 0.258944 -0.090052 0.300369 -0.045007 0.006258 -0.548950 -0.071901 -1.521021 -0.454381 -0.265193 0.867992 0.285227 -0.073148 -0.222252 0.486682 -0.048067 0.101804 0.167114 0.567811 -0.239559 -0.287288 -0.187366 -0.007357 0.249095 -0.247835 -0.178271 0.393361 0.029064 -0.379422 -0.036727 0.426662 -0.085128 -0.170911 0.160123 -0.081071 0.433137 -0.692160 -0.122478 -0.613181 -0.004728 0.249589 -0.503605 0.322760 0.069154 0.083891 0.363716 -0.219509 0.032145 0.217517 0.017640 -0.174626 0.081744 -0.669450 0.595783 -0.168006 0.055894 0.219212 0.256134 0.116744 0.168656 0.378636 -0.187928 -0.036302 0.216465 -0.195230 0.097292 -0.183880 -0.298029 0.220287 -0.374095 0.017010 -0.217028 -0.339174 -0.117937 -0.290983 0.073099 0.173972 0.376774 -0.063292 0.348099 0.113639 -0.295003 0.450670 -0.018582 -0.038930 0.071232 0.434405 0.123008 0.036578 -0.267848 0.122217 0.499907 0.292044 -0.370661 -0.084473 -0.103801 0.142928 0.097284 0.221875 0.148540 0.189590 -0.292568 -0.040660 0.023300 0.662235 -0.122417 -0.403632 0.000674 -0.068025 0.011594 -0.478530 0.030508 0.005416 0.005242 -0.237288 -0.038575 0.094807 0.491065 -0.934636 0.535626 -0.175822 -0.108623 0.420675 -0.090965 -0.139469 -0.902518 -0.098683 0.251785 0.637941 0.210491 -0.115188 0.063308 -0.395558 -0.071856 -0.048215 0.201140 -0.154211 0.289743 -0.139260 -0.228133 -0.193665 -0.457355 0.012715 0.015564 -0.148236 0.181106 0.504033 -0.829747 0.336321 -0.118132 -0.261546 -0.067743 0.206916 0.058880 -0.388147 -0.456222 -0.011352 -0.267342 -0.734688 -0.398604 -0.157772 0.103773 -0.180085 -0.343651 0.066606 -0.331099 0.618525 -0.143006 0.341112 0.258406 -0.074950 0.602303 0.781513 -0.344436 -0.011191 -0.047244 0.011654 -0.694305 0.029461 0.228256 -0.212413 0.220569 0.534397 0.162649 0.028277 -0.094330 0.523683 -0.212660 -0.362233 0.450999 -0.216882 0.129734 0.535458 0.482551 -0.516778 -0.144143 -0.430105 -0.145518 0.051515 -0.144321 0.176560 -0.377034 0.013696 0.158579 -0.051435 -0.279623 0.161264 -0.062280 -0.223370 -0.200541 0.686338 0.626760 -0.433900 0.404708 -0.305654 0.220096 -0.466000 -0.191865 -0.151807 0.332980 -0.247712 0.080105 0.142246 0.096088 0.088408 -0.335713 -0.336151 0.115469 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -4.435607 -4.539921 -2.082088 -6.626647 3.577570 7.423609 2.383677 -7.132265 -8.177202 -2.042591 4.093026 -11.425960 -4.371708 9.475943 -3.628787 7.916466 11.428721 0.482596 -4.904759 -3.638343 7.887550 1.145780 13.763883 14.319997 -8.465464 -0.252679 -0.663087 4.172808 3.941287 -1.090748 3.302689 -4.585998 3.241258 -9.121547 -0.960233 -3.851412 -1.784645 4.202196 8.910009 -13.884785 -0.280383 2.588391 0.526738 0.209367 0.157800 2.730525 7.094003 7.584482 -0.138423 7.171106 6.143621 -0.595993 4.282409 0.398868 1.821917 0.313147 1.420420 -0.675774 -0.648745 -2.794595 -2.353144 -0.636832 0.959729 9.138622 10.403140 0.548723 -5.149089 3.649843 3.781992 2.256745 3.261698 7.713402 -1.293870 3.352313 5.392648 -11.194119 0.771253 -14.257316 1.943919 -12.193095 -5.987567 1.935778 6.472483 3.616245 5.717543 -0.457771 13.277866 -1.887257 -6.068997 9.417767 10.337759 -8.154777 -1.899003 -1.697732 -3.700954 -0.009531 -3.639061 3.630135 1.602837 5.603439 -8.280153 -5.277643 0.821207 1.412901 -5.254667 -4.912175 -0.629065 6.175993 -8.071389 -5.485754 -2.224861 6.758774 -0.879257 -14.341450 -5.633950 -6.660496 2.889247 0.986320 -7.142422 -7.737121 3.603394 1.774382 -2.135350 -3.870450 -0.599296 5.348840 7.134599 2.152665 -1.373701 5.638677 2.204040 14.840098 1.002074 -5.426164 1.008565 2.261744 -0.980184 4.413849 -4.006185 -2.237402 2.728153 -8.588555 1.335075 5.236827 -4.649159 -2.514503 4.242194 0.793862 -1.517968 29.399709 -1.462494 11.171165 10.201190 -7.079352 2.556221 -4.581313 2.910099 3.962264 4.400399 4.105096 -13.686445 -7.606143 8.402091 12.732850 4.477551 -9.710111 -0.902488 3.816521 2.021397 -2.263956 4.368356 0.918922 1.107348 -5.183506 -0.819484 6.488969 17.363057 -5.683869 0.184451 1.800440 3.604657 -0.620307 -8.798106 -2.195930 -7.255804 -0.288570 5.721863 4.121186 4.442609 10.397836 -11.590161 7.935602 -0.100662 1.247164 7.117730 4.440096 -8.285692 -7.940067 -3.525886 3.339260 7.000789 -1.684930 -0.126497 2.515060 -11.223188 0.566438 3.249332 0.735670 -6.545005 9.285258 1.136727 -3.708463 -2.853154 2.319133 -3.174711 -3.128837 -2.491711 7.993500 -0.315537 -9.919518 6.780662 1.538282 -4.965930 1.211367 -2.958368 9.783445 -7.293071 -7.648706 6.478561 -3.483971 -5.535213 -3.125428 -1.751303 2.799797 4.657565 2.982101 -9.145806 -8.442939 9.056605 -3.666790 11.084749 5.113064 -2.517527 5.069841 -5.252058 -4.091513 -5.973917 -6.356324 0.870006 2.407270 -6.917712 -6.004782 -1.915464 7.354898 7.191276 -0.611037 -6.821442 -0.301036 9.247160 -8.621110 -0.720259 2.501708 5.215419 -7.821607 3.223821 4.450218 -7.469708 3.686975 -6.209479 -2.084057 -6.440712 -5.079268 7.871789 -1.119815 4.044876 -0.573045 -0.761031 1.327817 4.251241 4.147872 0.221406 3.875278 12.057420 7.224978 -0.954368 -2.597800 -12.023827 6.862756 -9.773304 -9.241742 2.221281 1.968571 -6.148303 -2.479220 -0.534443 9.581174 6.836034 -6.518263 -4.887873 4.039030 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__sort(int*, int) = -0.136737 0.048855 0.224288 -0.356341 0.492351 0.230708 0.207760 -0.157332 -0.514495 -0.544452 0.262798 -0.782502 -0.727335 0.676345 -0.216600 0.225101 0.873354 -0.045977 -0.060344 -0.483155 0.386470 -0.188861 1.109076 1.107977 -0.957474 0.166016 0.320593 0.345924 0.391411 0.076907 0.166077 -0.624680 0.369515 -0.363505 0.100771 -0.253120 -0.137603 -0.127434 0.247856 -1.212642 -0.141106 0.086015 -0.393479 0.095963 0.059912 0.828850 0.877652 0.597388 -0.383685 0.833355 0.695378 -0.062768 0.192262 0.048864 0.000000 -0.361384 0.178433 0.037940 -0.216659 0.068941 -0.043323 -0.680823 -0.173990 0.735353 0.949049 -0.217592 -0.277373 0.212428 0.021492 0.177836 0.175576 0.568635 0.391570 0.302075 0.726661 -0.704498 -0.209093 -1.715697 -0.085002 -2.153507 -0.752223 -0.219970 0.915421 -0.078192 0.168733 0.061379 1.051898 0.206939 -0.154993 0.781366 0.969558 -0.539768 -0.241144 -0.102242 -0.269070 0.302144 -0.460423 0.387242 0.166574 0.183200 -0.653190 -0.476993 0.362380 -0.137494 -0.479927 -0.413240 -0.167674 0.510363 -0.960368 -0.203686 -0.673723 0.181168 0.199676 -1.200114 -0.250920 -0.138176 1.012950 0.311187 -0.299475 -0.238747 0.146736 0.094899 -0.175797 -0.218802 -0.135872 0.529572 0.554408 0.343574 0.201029 0.387591 0.460120 0.934706 0.569553 -0.292168 -0.175689 0.112370 -0.087711 0.372264 -0.300220 -0.054531 0.472763 -0.516091 0.472984 0.195306 -0.406856 -0.595906 0.473595 -0.238644 0.041845 1.810659 0.002710 0.771910 0.590422 -0.631424 0.018864 -0.506962 -0.067411 0.455368 0.559226 0.391132 -0.507231 -0.450930 0.517386 1.022471 0.348280 -1.081806 -0.140919 0.335018 0.146364 -0.298565 0.418381 0.158328 0.221682 -0.338126 -0.044805 0.622048 1.148864 -0.367166 -0.525973 0.035976 0.429022 0.091041 -0.645117 -0.002233 -0.111003 0.019440 0.536645 0.190132 0.290811 0.800235 -1.853566 0.528258 0.006922 0.032660 0.290895 0.445538 -0.626459 -0.884913 0.171508 0.383306 0.541068 0.237934 0.200766 0.126404 -0.830909 -0.011181 0.227756 0.088063 -0.469774 0.710711 0.060747 -0.383608 -0.454105 -0.186564 -0.072067 0.019793 -0.242525 0.532527 0.113883 -1.845765 0.616085 -0.178566 -0.602708 -0.167315 -0.336980 0.876844 -0.747418 -0.794365 0.358588 -0.582391 -0.855482 -0.441347 -0.248333 0.128102 0.160669 0.207050 -0.419801 -0.666072 0.826429 -0.193055 0.623871 0.507798 -0.023409 1.063865 -0.515328 -0.499356 -0.512642 -0.285844 0.701064 -0.300654 -0.440643 -0.053226 -0.278585 0.399204 0.845745 -0.081932 -0.319362 -0.093083 0.634323 -0.977061 -0.332712 0.354912 0.952321 -0.303585 0.783491 0.433826 -0.586252 0.136744 -0.656315 -0.211747 -0.262578 -0.491967 0.533020 -0.329922 0.180422 0.280794 -0.016570 -0.185891 0.485537 -0.037891 0.059866 -0.092206 0.785407 1.590518 -0.747589 0.060205 -0.884321 0.501540 -0.917766 -0.931110 0.192160 0.062842 -0.220791 -0.192859 -0.222216 0.451710 0.398247 -0.579547 -0.516651 0.447917 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__printArr(int*, int) = -0.548709 -0.307559 -0.020259 -0.772087 0.586856 0.642553 0.355689 -0.484821 -1.132286 -0.806604 0.306508 -1.596969 -1.100365 1.437567 -0.464725 0.810042 1.870306 0.282515 -0.400632 -0.539973 1.025221 -0.556993 1.938999 2.152007 -1.434499 0.040242 0.186315 0.741486 0.404065 0.395686 0.465868 -1.126088 0.446422 -0.902966 0.479617 -0.842152 -0.237033 0.506091 0.587139 -2.462864 -0.190517 0.872116 0.278070 0.027380 0.109524 0.761669 1.330191 1.164483 -0.335028 1.113522 0.920446 -0.023220 0.704000 0.093477 0.219831 -0.031417 0.106994 -0.218235 -0.383214 0.033631 -0.353366 -0.899207 0.122432 1.450559 1.842503 -0.184402 -0.565764 0.296273 0.146116 0.418221 0.388299 1.102407 0.179153 0.337936 1.033238 -1.451487 -0.006144 -2.607861 0.292607 -3.146122 -1.078641 -0.287354 1.239555 0.790724 0.605107 -0.277492 2.170907 -0.191705 -0.432141 1.466589 1.763131 -1.065745 -0.390078 -0.581764 -0.612060 0.319595 -0.788274 0.172459 0.464957 0.603742 -1.230904 -0.895732 0.358525 0.079205 -0.830376 -0.690777 -0.274987 1.132022 -1.545228 -0.827127 -1.104016 0.589733 0.026256 -2.254392 -0.272756 -0.822916 0.274233 0.456516 -0.884195 -0.902958 0.564716 0.324706 -0.296803 -0.486738 -0.712616 1.174227 0.678638 0.165979 0.049788 0.763146 0.354717 1.743185 0.648322 -0.727485 -0.126349 0.567153 -0.472457 0.461951 -0.813273 -0.403124 0.875650 -1.288491 -0.085158 0.392454 -0.830218 -0.511729 0.411484 -0.386990 0.159061 4.024849 -0.275612 1.391052 1.160846 -1.241777 0.887934 -0.395667 0.146436 0.627722 1.082614 0.758379 -1.641773 -1.079735 1.033926 2.033892 0.761450 -1.279027 -0.438852 0.369416 0.373949 -0.260731 0.728500 0.271839 0.045246 -0.789286 -0.133705 0.717307 2.416424 -0.729980 -0.141102 0.152637 0.889501 -0.265127 -1.546430 -0.126791 -1.216107 -0.120075 0.352006 0.277231 0.587029 1.625218 -2.418909 1.352786 -0.208063 0.088368 0.968921 0.286141 -0.930846 -2.169965 -0.117888 0.727192 1.281112 -0.084320 0.217763 0.199114 -1.711659 0.052964 0.275353 0.522078 -1.003605 1.441177 -0.191950 -0.691200 -0.718533 0.005822 -0.469419 -0.642028 -0.421403 1.005754 0.673237 -1.791372 1.233153 -0.045669 -0.754460 0.093375 -0.099406 1.172111 -1.398190 -1.490909 0.779134 -0.634352 -1.117760 -0.658458 -0.456202 0.611118 0.306749 -0.256995 -0.950784 -1.421316 1.478020 -0.469152 1.498026 0.809942 -0.191473 1.312677 0.105658 -0.853514 -0.829475 -0.769544 0.105811 -0.369974 -0.688188 -0.736853 -0.387151 1.059772 1.556888 0.049782 -0.656099 0.011287 1.592768 -1.103570 -0.419900 0.629401 0.363365 -0.673851 0.776659 0.837905 -1.298453 0.057904 -1.266077 0.040053 -0.567290 -0.807147 1.038382 -0.802448 0.344361 0.296953 -0.219518 -0.185947 0.684801 0.616885 -0.091003 0.139702 1.960522 1.294778 -0.576918 0.081519 -1.672008 0.829319 -1.701258 -1.192997 -0.098089 0.570816 -0.654445 -0.216216 0.090646 1.023305 0.847095 -0.758126 -0.821203 0.371781 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 0.119727 0.475720 0.970756 -0.513432 0.658428 0.218711 0.224075 0.614223 -0.723408 -0.959951 -0.002442 -1.335638 -1.492738 0.907789 -0.223578 -0.624708 1.372802 0.154588 -0.019612 -0.509762 -0.132808 0.005850 1.263629 1.465372 -1.344523 0.414642 -0.068379 0.590960 0.152347 0.871137 0.187083 -1.413287 0.050967 0.821959 0.706972 -0.240177 -0.360170 -0.529308 -0.901187 -2.093872 -0.191347 1.346505 -0.233253 0.058506 0.588163 1.213653 1.668311 0.641652 -0.405570 0.726002 0.586278 0.153619 0.526079 -0.061569 0.169797 -0.690303 0.663803 -0.391880 -0.693892 0.448054 -0.069442 -1.151792 -0.613451 0.955528 1.161725 -0.174867 -0.472300 -0.701219 0.052949 0.307085 0.055376 0.705090 0.981433 0.642679 0.853633 0.622708 -0.041323 -1.284214 0.405384 -2.824074 -1.206244 -0.717101 2.040262 1.086876 -0.546549 -0.983104 1.475769 -0.005269 0.300394 0.916021 1.470946 -0.139179 -0.362998 -0.465376 -0.415322 0.681912 -0.454427 0.097763 0.012120 0.253789 -0.904683 -0.184734 0.304979 -0.597105 -0.659135 0.680492 -0.314289 0.824508 -1.395947 0.409878 -1.355586 0.414886 0.960158 -1.520445 -0.664346 0.061730 0.306316 0.654433 -0.478148 0.358960 0.356784 -0.192627 -0.509806 0.517749 -1.598676 1.352254 0.274529 0.039189 0.352261 0.714638 0.744942 0.226761 0.471139 -0.343555 -0.189046 0.429303 -0.014511 0.024979 -0.359534 0.085918 0.354437 -0.431059 0.365986 -0.249171 -0.659176 -0.651521 -1.506193 -0.493168 0.298537 2.176802 -0.327517 0.892234 0.290451 -0.734781 0.695844 -0.002664 -0.443572 0.202671 0.800161 0.877334 0.011227 -0.410121 0.545974 1.470619 0.472425 -0.854599 0.748244 0.404678 -0.070377 -0.461813 1.048785 0.129956 0.367647 -0.441668 -0.168539 0.627810 1.397619 0.033137 -1.803027 -0.272095 0.580913 0.566031 0.107282 0.433924 0.543580 -0.034018 0.562249 -0.010120 0.604722 1.079323 -2.675254 1.045220 0.482992 -0.261750 0.785167 -0.104508 -0.397691 -0.928437 0.203497 0.753649 1.170789 0.587943 -0.398167 -0.234987 -1.052032 -0.101168 0.345218 0.450291 -0.723426 0.976166 -0.074182 -0.514300 -0.555714 -1.513053 -0.225036 0.356742 -1.121665 0.423165 0.432813 -2.457097 1.035771 -0.089493 -0.582805 -0.740071 -0.420770 0.334536 -1.037634 -1.110798 -0.089983 -0.822027 -2.050744 -0.616676 -0.722077 0.121587 0.110303 0.308660 -0.567995 -0.940255 1.660615 -0.063172 1.004770 0.801953 -0.003012 1.430235 1.253847 -0.631252 -0.046361 -0.876075 1.543505 -0.726399 -0.240708 0.754730 -0.711978 0.176948 1.294517 -0.303597 -0.292291 -0.835709 0.927224 -0.356088 -0.677146 0.493469 -0.488628 0.106083 1.175040 0.728280 -0.708794 -0.100958 -1.383347 -0.296175 -0.245257 -0.514660 0.459503 -0.903180 -0.039614 0.749113 -0.363249 -0.956651 0.408967 -0.318674 -0.662276 -0.116420 1.289571 1.501062 -1.024797 1.334357 -1.096006 0.957016 -1.210085 -0.777595 -0.254154 -0.508746 -0.162211 -0.255696 -0.407754 0.135786 0.376257 -0.619025 -0.867698 0.866834 +PE-benchmarks/ugly-numbers.cpp__maxDivide(int, int) = -0.554201 -0.679159 -0.236386 -0.701079 0.345313 0.102718 0.346106 -0.606374 -0.881458 -0.414294 0.372413 -1.078211 -0.436873 1.045462 -0.281847 0.970059 1.370725 0.324720 -0.165869 -0.651997 0.790019 -0.573232 1.453605 1.622738 -0.830690 -0.039574 -0.056127 0.573966 0.221477 -0.063661 0.394651 -0.650238 0.294972 -1.192848 0.065394 -0.714165 -0.139121 0.902233 1.096361 -1.645936 0.024733 0.197388 0.358682 0.107682 -0.008436 0.290343 0.610177 0.768222 -0.170979 1.153014 0.668997 -0.395390 0.572390 0.129352 0.269434 0.249868 -0.021475 0.008260 -0.224126 -0.045660 -0.375020 -0.246260 0.271062 0.695899 1.015332 -0.015427 -0.629828 0.385333 0.286774 0.287876 0.328208 0.831015 -0.209526 0.066993 0.656233 -1.596293 -0.214086 -2.381587 0.176591 -1.926810 -0.821614 0.189663 0.852167 0.303303 0.678974 0.149076 1.357982 -0.126411 -0.675452 0.870666 1.096286 -0.888020 -0.253012 -0.104410 -0.261937 -0.053662 -0.248358 0.259955 0.454897 0.713385 -0.924912 -0.807411 0.534683 0.059473 -0.459037 -0.713026 -0.246785 0.701490 -1.077561 -0.774711 -0.595580 0.630021 -0.046991 -1.295153 0.062399 -0.648294 0.365321 0.223432 -0.945372 -0.824327 0.521873 0.144471 -0.388183 -0.373789 -0.031838 0.761417 0.665022 0.047430 -0.037558 0.669464 -0.091994 1.625518 0.179711 -0.696624 0.037756 0.471561 -0.261225 0.306508 -0.632478 -0.429471 0.528756 -1.028748 0.253970 0.214061 -0.541140 -0.386519 1.026774 0.090335 -0.154149 2.715281 -0.134400 1.186494 1.149154 -0.527824 0.647156 -0.453528 0.541020 0.450870 0.734602 0.318881 -1.261510 -0.861724 0.820451 1.193564 0.435306 -1.073080 -0.914168 0.249530 0.526873 0.068341 0.450869 0.059037 0.125776 -0.594865 0.035427 0.411402 1.919070 -0.649515 0.126455 0.104364 0.481420 -0.174233 -1.561769 -0.310597 -1.268743 -0.171815 0.329954 0.562341 0.389453 1.130059 -1.866528 0.867520 -0.109908 0.292394 0.669800 0.538733 -0.827621 -1.948651 -0.526726 0.263706 0.952532 -0.127379 0.398543 0.377169 -1.229944 0.133798 0.158794 0.149616 -0.829463 1.135614 -0.212192 -0.563403 -0.154586 0.249260 -0.608120 -0.525057 0.014249 0.852831 0.612731 -1.349766 0.526948 -0.059986 -0.550597 0.433826 0.023190 1.207057 -0.685167 -0.818850 0.743137 -0.365074 -0.601024 -0.432971 -0.122569 0.127600 0.080480 -0.144477 -0.533939 -0.897043 0.983126 -0.478458 1.202304 0.521273 -0.400290 0.589241 -0.445130 -0.607293 -0.507849 -0.270398 -0.199225 -0.165621 -0.516697 -0.922134 -0.111253 0.707698 0.844450 0.228019 -0.592420 0.080759 1.258073 -1.015925 0.037826 0.456537 0.427985 -0.515380 0.455358 0.657394 -1.045704 0.335224 -0.813967 -0.124954 -0.538749 -0.368518 0.759333 -0.275878 0.270251 -0.184976 -0.156947 0.173684 0.523110 0.611559 -0.070263 0.273599 1.458977 0.945573 -0.133946 -0.349611 -1.159248 0.465618 -0.957004 -0.771827 -0.099781 0.590089 -0.844739 -0.137675 0.042053 1.104447 0.682549 -0.643294 -0.509546 0.205836 +PE-benchmarks/ugly-numbers.cpp__isUgly(int) = -0.332578 -0.657703 0.296852 -0.755983 0.410138 -0.094572 0.258066 -0.475494 -1.153462 -0.409681 0.660464 -1.190952 -0.519700 1.022049 -0.387608 0.417411 1.118955 0.047949 -0.502393 -0.907714 0.585128 -0.248484 1.273801 1.536584 -0.991384 0.098026 -0.072897 0.575420 0.798785 -0.119390 0.480748 -0.292418 0.071060 -0.558402 0.136449 -0.246622 -0.293829 0.310089 0.704638 -1.491218 -0.030717 0.432235 0.371832 0.062883 0.243514 1.005165 0.583074 0.765922 -0.198712 1.084968 1.062178 -0.323845 0.514297 -0.065354 0.244220 -0.412701 1.020530 0.133589 -0.202756 0.097183 -0.192860 -0.274275 0.076805 0.968871 1.084518 -0.169074 -0.541515 0.007242 0.630089 0.601428 0.585255 0.751426 0.039928 0.155540 0.750574 -0.950599 0.169220 -2.486121 0.270264 -2.332197 -0.849955 0.401027 1.455037 -0.057072 0.040673 0.496637 1.323667 0.096706 -0.746428 0.515137 0.860184 -0.174745 -0.290915 0.229701 -0.696432 0.327466 -0.415035 0.423583 0.385855 0.982441 -0.832980 -0.086388 0.376983 -0.158003 -0.527865 0.076011 -0.035048 0.724395 -0.859135 -0.164100 -0.243868 0.861527 0.452524 -1.431648 -0.050742 -0.812595 0.615429 0.276549 -0.844087 -0.044592 0.342094 -0.322328 -0.478134 0.270418 -0.573380 0.697771 0.523146 0.617614 -0.150384 0.478778 0.341536 0.694277 0.133033 -0.791282 0.143811 0.237217 -0.138663 0.718995 -0.511875 -0.261420 0.759892 -0.502593 0.678773 -0.137309 -0.520678 -0.851195 0.658979 0.129598 -0.323523 2.251641 -0.111849 1.331710 1.028366 -0.371416 0.188438 -0.295067 0.430223 0.581963 0.689352 0.198738 -0.548954 -0.728157 0.856480 1.334085 0.507572 -1.328454 -0.319790 0.694903 0.060262 0.093772 0.681584 0.156966 0.138127 -0.434777 -0.116902 0.518362 1.414952 -0.212231 -0.859033 -0.208252 0.657506 0.014804 -0.958007 0.062654 -0.285149 0.192335 0.345827 0.519410 0.489763 1.014962 -2.326447 0.887720 0.128913 0.319036 0.968167 0.328318 -1.001252 -1.672472 -0.296381 0.060756 0.861414 0.178352 -0.446269 0.567146 -1.090209 0.072545 0.108064 -0.050737 -0.747758 0.962213 -0.050154 -0.158392 -0.208358 -0.181437 -0.102974 0.188503 -0.343795 0.831673 0.029452 -1.886676 0.488700 -0.104703 -0.603573 -0.308240 -0.337303 0.742901 -0.606263 -0.581306 0.211608 -0.648385 -0.947902 -0.988100 -0.339530 0.099462 0.137867 0.450990 -0.699801 -0.340855 0.925014 -0.897820 1.201916 0.566872 -0.580509 0.739802 0.009349 -0.329921 -0.555427 0.234933 0.251620 -0.168110 -0.571447 -0.181412 -0.261666 0.432598 0.563098 -0.126144 -0.381836 -0.245969 0.995838 -0.867444 -0.549757 0.247128 0.072381 -0.411790 1.107213 0.457130 -0.901999 0.601028 -0.843205 -0.613336 -0.563173 -0.243651 1.034085 0.145354 0.392520 -0.340658 0.064790 -0.041314 0.463916 0.206961 -0.059185 0.212130 1.160791 1.594322 -0.409538 0.052811 -1.257722 0.820330 -0.901328 -0.882214 0.129462 0.104960 -0.755209 -0.220257 -0.349594 0.851535 0.774019 -0.865831 -0.806961 1.079582 +PE-benchmarks/ugly-numbers.cpp__getNthUglyNo(int) = -0.716877 -0.959442 -0.508187 -0.822416 0.538483 0.412394 0.433265 -0.661075 -1.592939 -0.496432 0.532924 -1.648764 -0.692915 1.634349 -0.395491 1.293572 2.016179 0.496537 -0.542797 -0.610311 1.311589 -0.829755 1.909018 2.289705 -1.197370 -0.005054 -0.020644 0.514846 0.356527 0.289347 0.432314 -1.029922 0.468592 -1.412734 0.378749 -1.121892 -0.358331 1.110898 1.297711 -2.521345 -0.063127 0.976937 0.914567 -0.018095 0.054195 0.927795 0.847409 1.195816 -0.300802 1.530046 0.976097 -0.282085 0.823175 0.090854 0.432845 0.384592 0.129748 0.301043 -0.339468 0.040232 -0.544858 -0.484186 0.392775 1.344757 1.928738 -0.282486 -0.739251 0.351787 0.355701 0.523861 0.710852 1.127071 -0.046064 -0.200107 1.044568 -1.758566 -0.119074 -3.197858 0.409418 -3.570082 -0.924193 0.241841 1.356160 0.300504 0.767628 -0.119067 2.247911 -0.423659 -0.897729 1.463292 1.552343 -1.063294 -0.429226 -0.331688 -0.793955 0.126214 -0.685093 0.010466 1.143074 0.674815 -1.302989 -1.041267 0.416770 0.195348 -0.774629 -0.915167 -0.140296 1.144780 -1.425690 -1.120840 -0.830042 0.928692 -0.104680 -2.124242 -0.108678 -1.214669 -0.168244 0.446719 -1.310452 -0.999649 0.748880 0.097437 -0.517192 -0.556508 -0.244311 1.084001 0.552627 0.360607 -0.123732 0.601162 0.048082 1.901022 0.472027 -1.103966 0.123506 0.711178 -0.460405 0.769586 -1.056461 -0.743509 1.174927 -1.395040 0.042846 0.048525 -0.903463 -0.367440 1.206609 -0.083729 -0.179857 3.941854 -0.317786 1.664842 1.412586 -1.103678 1.084233 -0.255046 0.614400 0.759758 1.329432 0.437972 -1.597521 -1.237613 1.156630 2.114231 0.878906 -1.483636 -1.019367 0.452833 0.552409 0.106981 0.699790 0.177232 0.041011 -0.873420 -0.100409 0.333432 2.647706 -0.843083 0.231610 0.078350 1.257480 -0.551591 -1.921299 -0.229202 -2.034270 -0.063394 0.044309 0.321458 0.669898 1.681058 -2.788810 1.482226 -0.575057 0.239938 1.089067 0.557715 -1.104531 -2.860528 -0.560555 0.332086 1.557711 -0.109979 0.293120 0.585640 -1.780074 0.121096 0.059775 0.392222 -1.121544 1.557202 -0.358512 -0.594207 -0.356270 0.426924 -0.523612 -0.980007 -0.148628 1.176141 0.946427 -1.601775 0.892749 0.103136 -0.695833 0.247181 0.366160 1.099678 -1.188915 -1.368988 0.860847 -0.499487 -0.735874 -0.753844 -0.422681 0.659765 0.214066 -0.222811 -0.856069 -1.581818 1.564655 -0.762020 1.835471 0.771733 -0.697320 1.049845 -0.062038 -0.858268 -0.953667 -0.464689 -0.437617 -0.430206 -0.559274 -0.972719 -0.316406 1.180952 1.246769 0.407225 -0.695522 0.006814 1.886987 -1.014882 -0.071598 0.699987 0.276937 -0.622532 0.839507 0.932556 -1.559095 0.327278 -1.171776 0.034766 -0.689056 -0.446032 1.349323 -0.533858 0.453056 -0.273533 -0.163399 0.149370 0.623679 0.930863 -0.151458 0.240510 2.178857 1.119822 -0.370282 -0.132321 -1.652601 0.751806 -1.506990 -1.013856 -0.283767 0.824194 -1.270807 -0.156425 0.236972 1.277515 0.947671 -0.740860 -0.949968 0.459219 +PE-benchmarks/ugly-numbers.cpp__main = -0.076719 -0.135317 0.283676 -0.248522 0.277930 -0.193701 0.208656 0.108942 -0.539868 -0.493093 0.273953 -0.798971 -0.589904 0.569757 -0.144287 0.074885 0.688846 0.127020 -0.102134 -0.295651 0.122758 -0.329418 0.725069 0.775173 -0.583592 0.114396 -0.182496 0.318592 0.191991 0.206858 0.173389 -0.429517 0.226357 -0.022672 0.194778 -0.154196 -0.063436 0.027169 -0.118461 -0.900120 -0.023167 0.532104 0.195990 -0.001756 0.099203 0.758640 0.533298 0.433469 -0.159222 0.560727 0.393541 -0.278336 0.283458 0.076629 0.122383 -0.377357 0.255276 -0.147088 -0.465389 0.133279 -0.076124 -0.742910 -0.177627 0.447563 0.687277 -0.139324 -0.157857 -0.083342 0.014895 0.236140 0.308869 0.262061 0.309085 0.026589 0.471692 -0.063656 -0.004062 -0.902525 -0.039101 -1.763964 -0.563933 -0.093813 1.137039 0.320450 -0.119069 -0.246697 0.658587 0.121969 -0.145465 0.429078 0.711850 -0.220513 -0.328554 -0.099301 -0.132276 0.311514 -0.372707 0.080238 0.373663 0.258246 -0.511844 0.031750 0.308229 -0.157292 -0.253517 0.107832 -0.089394 0.436877 -0.766467 -0.033553 -0.498409 0.161730 0.430482 -0.794038 0.113747 -0.035208 0.264865 0.346440 -0.304742 0.185118 0.188395 -0.171385 -0.197769 0.159026 -0.790565 0.605548 0.028723 0.288550 0.188611 0.403534 0.273301 0.310740 0.229827 -0.281545 -0.040071 0.111153 -0.101044 0.360186 -0.189578 -0.248850 0.396982 -0.385910 0.193084 -0.236161 -0.359748 -0.363951 -0.277031 0.104270 0.045495 0.729742 0.008580 0.623408 0.380999 -0.315069 0.348843 -0.170643 0.056588 0.202902 0.426026 0.118378 0.067297 -0.362742 0.356405 0.709780 0.321145 -0.624214 0.035026 0.216510 0.190616 -0.099059 0.333230 0.196798 0.226502 -0.314430 -0.037203 0.307749 0.717693 -0.119197 -0.466216 0.006608 0.129579 0.142906 -0.441625 0.047250 0.109739 0.056464 -0.007922 0.130807 0.179412 0.623236 -1.261344 0.554009 0.079972 0.085510 0.467927 0.044898 -0.457407 -1.035974 -0.073412 0.222641 0.557155 0.252125 -0.123768 0.177468 -0.554119 -0.035868 0.050180 0.068311 -0.227254 0.421768 -0.148343 -0.121746 -0.293711 -0.509383 -0.069860 0.163468 -0.259722 0.369947 0.443744 -1.082333 0.389813 -0.138242 -0.448312 -0.311368 -0.019219 0.287478 -0.524191 -0.515543 0.015009 -0.553557 -1.020747 -0.576863 -0.165721 -0.035853 -0.097831 -0.156225 -0.078519 -0.323569 0.832984 -0.283475 0.499202 0.325309 -0.154041 0.685890 0.607403 -0.374604 -0.105411 -0.111228 0.302197 -0.623448 -0.200308 0.321936 -0.193750 0.229994 0.509829 0.047058 -0.144576 -0.069071 0.533538 -0.325256 -0.493946 0.412221 -0.046080 -0.013167 0.751059 0.459477 -0.579202 0.109207 -0.605681 -0.274372 -0.135240 -0.258683 0.341533 -0.195585 0.128318 0.090298 -0.012359 -0.240173 0.239383 -0.040139 -0.213330 -0.110477 0.825551 0.948784 -0.487406 0.339754 -0.622106 0.352458 -0.606973 -0.506339 0.044317 0.214820 -0.295431 -0.020196 0.016785 0.232493 0.288035 -0.557778 -0.533233 0.469554 +PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -3.188623 -3.256631 -1.730668 -4.039709 2.706918 5.294361 1.791650 -5.483593 -5.496561 -0.727900 3.040649 -8.704929 -3.404915 6.482494 -2.674507 5.413327 7.335572 -0.093013 -3.720344 -2.109242 4.574211 1.362346 9.363450 9.615138 -4.903718 -0.397393 -1.157439 2.541999 1.399468 -1.457909 2.538049 -3.079990 2.148824 -5.418127 -0.741934 -1.058833 -1.569001 2.320454 5.881395 -8.825972 -0.669521 2.301671 1.067816 0.044430 0.086067 1.825147 4.431139 5.208463 1.407507 4.644695 3.338941 -0.669947 3.452959 0.262748 1.871254 -0.546667 1.111425 -1.443433 -0.885083 -1.747471 -1.886220 0.366435 0.129272 6.600652 7.407266 0.709786 -3.544995 2.004814 2.187916 1.975793 2.153017 5.380049 -1.409021 2.817356 3.052315 -6.615274 1.312273 -8.155680 1.365886 -6.994355 -4.124356 1.850604 4.182249 3.076068 3.697654 -0.037143 9.364169 -0.447749 -4.594410 5.996681 7.200548 -5.180434 -1.521356 -0.426429 -2.521560 -0.399815 -2.408337 3.015336 1.699390 4.487793 -5.816460 -2.191982 -0.019110 0.774780 -3.284252 -2.929517 0.242029 4.342933 -4.047743 -3.554159 -0.853462 4.851302 -0.489181 -10.091017 -3.813925 -4.122994 0.647044 1.056776 -5.221512 -4.711783 2.835636 0.390570 -1.286178 -2.045557 -1.321876 2.846135 4.449756 1.668969 -1.097338 4.741241 1.715132 9.891975 -0.397386 -3.480059 1.131215 1.188964 -0.311885 3.963183 -1.776687 -1.501692 0.745736 -5.764257 1.418891 3.010967 -3.132217 -1.846453 0.266688 0.863899 -1.337725 18.376744 -1.582627 7.784762 6.696628 -5.105710 1.618384 -3.669734 2.179839 1.981665 3.045950 2.236932 -8.039366 -5.236088 6.382201 9.331756 3.173419 -6.075502 0.373919 3.159327 1.025700 -2.305740 3.458469 1.235452 0.328811 -2.503783 -0.531114 4.370235 11.224966 -3.657958 0.304339 1.423752 2.709244 0.881398 -4.800776 -1.296610 -4.395641 -0.180738 3.146328 3.020803 2.561690 6.801234 -6.836443 5.474257 0.189120 1.286684 5.798254 2.781213 -5.914473 -5.035583 -2.642607 2.305715 4.242936 -1.249959 -1.422944 1.256511 -7.320626 0.451025 2.168832 0.704410 -4.107315 6.233852 -0.036382 -2.233845 -1.918302 1.494093 -1.744680 -1.956481 -2.209076 5.394500 0.226619 -5.760189 4.708570 1.962958 -3.369461 0.077095 -2.103277 6.083962 -4.460152 -5.023668 3.713860 -3.419730 -3.640052 -1.871455 -1.576641 1.475506 3.075690 2.739865 -6.228595 -3.720939 6.577227 -2.264349 7.980327 3.177000 -1.772852 3.062703 -3.307547 -3.985907 -2.761406 -5.336512 0.762438 1.821482 -4.646612 -2.116413 -1.266379 5.074355 4.127158 0.017388 -5.152108 -0.102261 5.845422 -4.876911 -0.650436 1.733256 1.632382 -5.238014 2.130023 2.882036 -4.518990 2.771815 -3.883217 -1.269356 -5.239311 -3.442657 5.033058 -0.508706 2.570895 -1.215547 -0.793302 1.267262 2.514960 2.972284 0.908648 3.057405 8.020161 3.212027 -0.183856 -1.400609 -8.341746 4.624121 -6.175977 -6.110880 1.824637 1.704272 -3.850478 -2.033676 -0.573851 5.481595 4.429349 -5.411812 -4.218814 3.327623 +PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.444021 -0.475063 -0.154973 -0.409908 0.416443 0.173706 0.221706 -0.364058 -0.810828 -0.520716 0.245428 -0.825332 -0.422339 0.796596 -0.232319 0.710890 1.001177 0.221964 -0.130314 -0.377823 0.616259 -0.636158 0.960655 1.197293 -0.589644 0.017499 0.064593 0.265237 -0.037467 0.216664 0.236887 -0.814100 0.273647 -0.712711 0.232186 -0.522469 -0.298533 0.654921 0.708188 -1.308959 -0.109851 0.468470 0.121735 0.088541 0.067689 0.269312 0.458761 0.495058 -0.103197 1.046004 0.462211 -0.091999 0.438165 0.014614 0.283109 0.265638 -0.033724 -0.110837 -0.160635 0.139906 -0.441593 -0.251131 0.184635 0.614977 0.876181 -0.270718 -0.440832 0.146705 0.006496 0.250429 0.333354 0.675994 -0.045885 -0.120240 0.545742 -1.141874 -0.158885 -1.880101 0.206823 -1.826290 -0.620873 0.139613 0.629687 0.418478 0.400586 -0.026238 1.284259 -0.289169 -0.527458 0.672104 0.849720 -0.586988 -0.150350 -0.045941 -0.314566 -0.146666 -0.262188 -0.052188 0.283903 0.365651 -0.661683 -0.587765 0.402101 -0.017042 -0.374522 -0.668523 -0.163664 0.715096 -0.886234 -0.668636 -0.601809 0.575586 -0.023871 -1.015793 0.056192 -0.477430 0.039082 0.371887 -0.814628 -0.552231 0.518636 0.079957 -0.233291 -0.300810 0.017472 0.606571 0.378891 0.155060 -0.045485 0.431272 0.003041 1.111993 0.369873 -0.487082 0.019604 0.412133 -0.114463 0.431300 -0.397508 -0.273580 0.305535 -0.649933 -0.014442 0.043414 -0.469827 -0.246603 0.558160 -0.168697 -0.207404 2.063006 -0.290608 0.852617 0.722784 -0.574930 0.587916 -0.218823 0.358629 0.345206 0.729016 0.322802 -0.925559 -0.637422 0.743754 1.111866 0.396593 -0.810155 -0.696524 0.276635 0.416026 0.084423 0.450320 0.099404 0.143926 -0.410219 -0.007461 0.063089 1.532035 -0.493409 0.073686 0.054527 0.584000 -0.166782 -1.141087 -0.133330 -1.164199 -0.139469 0.200891 0.208184 0.184776 0.893401 -1.575240 0.698983 -0.403394 0.081795 0.519618 0.412328 -0.469770 -1.718893 -0.401149 0.165619 0.794213 -0.022075 0.469731 0.213278 -0.899795 0.113394 0.031249 0.281121 -0.710202 0.901342 -0.234655 -0.465200 -0.091046 0.211526 -0.385730 -0.565324 -0.125392 0.585409 0.720484 -1.041489 0.432646 0.173081 -0.320716 0.233241 0.299719 0.932985 -0.474506 -0.776922 0.564019 -0.425537 -0.444811 -0.247642 -0.280840 0.220668 0.023278 -0.279493 -0.372627 -0.706357 0.797329 -0.257545 0.996854 0.393511 -0.373624 0.690802 -0.143506 -0.576960 -0.313678 -0.338324 0.009708 -0.303060 -0.147084 -0.710156 -0.124709 0.553787 0.664384 0.373210 -0.392462 -0.043787 0.963976 -0.748563 0.195801 0.422031 0.288876 -0.280721 0.458426 0.516336 -0.663397 0.164350 -0.667344 0.205981 -0.518623 -0.120447 0.669842 -0.335729 0.119392 -0.140375 -0.120623 -0.012529 0.329783 0.578063 -0.007310 0.027671 1.081673 0.769657 -0.187962 -0.090971 -0.778773 0.326254 -0.678328 -0.517603 -0.245235 0.629438 -0.623577 -0.240845 0.008857 0.669957 0.536773 -0.340144 -0.441294 0.217681 +PE-benchmarks/binomial-coefficient.cpp__main = -0.035519 0.344091 0.720819 -0.500307 0.393852 -0.186050 0.153681 0.260198 -0.470460 -1.216465 0.278461 -1.414427 -1.532802 0.763950 -0.386808 -0.640820 1.019615 -0.221170 -0.016637 -0.730953 0.068453 -0.083845 1.234211 1.350947 -1.418490 0.160817 0.249338 0.695929 0.715706 0.019900 0.764937 -0.993029 0.089911 0.637739 0.729797 0.071029 -0.125432 -0.550721 -0.749855 -1.566960 -0.307407 0.856802 -0.251018 0.166081 0.367211 1.629768 1.389947 0.711328 -0.658147 0.647632 0.968555 0.031624 0.379229 -0.099363 -0.212610 -1.403628 0.406450 -0.253877 -0.440057 0.304724 0.048009 -1.152456 -0.500587 1.093287 1.266866 -0.217360 -0.314379 -0.279864 0.155900 0.433795 0.046486 0.758417 0.976575 0.752030 1.029650 0.116239 -0.132456 -1.985199 0.263392 -3.316707 -1.022004 -0.547742 1.827558 0.575158 -0.641024 -0.503401 1.350366 0.570133 0.041158 1.283293 1.423597 0.073908 -0.323971 -0.350236 -0.486524 0.750479 -0.643491 0.590784 0.139763 0.682437 -0.814719 -0.001086 0.006657 -0.647766 -0.610282 0.308766 -0.365277 0.548134 -1.294524 0.644482 -1.081929 0.188050 1.125313 -1.675540 -0.441262 -0.111291 0.916029 0.428071 -0.286443 0.640803 0.096470 -0.335716 -0.296506 0.591459 -1.547920 1.015089 0.462633 0.363062 0.250820 0.848799 0.842603 0.194302 0.388888 -0.295231 -0.358766 0.148255 -0.140365 0.209118 -0.336176 0.140316 1.126080 -0.308177 0.569724 -0.290274 -0.476304 -1.244643 -0.727064 -0.706807 0.259702 1.919089 -0.078045 0.899938 0.519969 -0.554812 0.195741 -0.293664 -0.306696 0.386460 0.669959 0.751477 0.298254 -0.439905 0.715949 1.366034 0.332001 -0.980160 0.570725 0.776044 0.005794 -0.700002 0.824789 0.225474 0.125797 -0.270138 -0.121015 0.999909 0.796626 0.066231 -1.111602 -0.275741 0.849844 0.620105 -0.045781 0.434777 0.690743 0.070408 0.628816 0.263793 0.536275 0.980612 -2.687799 0.747454 0.840076 0.318696 0.339994 0.047261 -0.687338 -1.487897 0.513630 0.684312 0.558383 0.436849 -0.225748 -0.101477 -1.020601 0.005044 0.383124 0.313599 -0.628150 0.864866 -0.171229 -0.128533 -0.806906 -1.081622 -0.261930 0.634907 -0.801341 0.518296 0.256980 -2.317038 1.033010 -0.452923 -0.730005 -1.093353 -0.710970 0.557301 -1.154183 -0.948787 -0.131960 -1.152123 -2.107265 -0.938607 -0.544169 -0.080737 -0.030705 0.264350 -0.495033 -0.648877 1.529902 -0.391709 0.806953 0.649040 0.125374 1.535718 0.497332 -0.472540 -0.317777 -0.447976 1.381519 -0.593549 -0.559517 0.771187 -0.337603 0.062561 1.105205 -0.614728 -0.330239 -0.122561 0.612652 -0.562735 -1.047731 0.237247 0.120497 -0.062888 1.446296 0.400542 -0.684421 0.127223 -1.465922 -0.418073 -0.292078 -0.739521 0.437036 -0.620130 0.025450 0.669697 -0.219562 -0.661500 0.547957 -0.201426 -0.358086 -0.045446 1.060520 2.036215 -1.073118 0.767007 -1.360710 0.822869 -1.258234 -1.164711 0.102978 -0.341355 0.224335 -0.304055 -0.521350 0.190263 0.569193 -0.885814 -0.981695 1.172117 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__computeTransFun(char*, int, int (*) [256]) = -2.542111 -1.256383 0.093848 -4.898380 3.120936 6.385309 1.390630 -4.491679 -5.309634 -1.750678 1.923628 -7.368592 -3.416720 6.417996 -2.529105 4.585330 7.803826 0.028656 -3.360704 -1.687816 5.260053 0.663927 9.102838 9.486890 -6.174569 0.288132 0.858623 3.381032 2.050982 1.524428 1.161024 -4.072266 1.614611 -5.062312 -0.090622 -2.732509 -1.610061 1.447446 4.661267 -10.028046 -0.518049 2.416614 -1.107536 -0.212999 0.319501 0.283549 6.131695 5.122294 -0.122915 3.933249 3.947999 0.919726 2.466320 0.139469 1.938166 0.756486 1.998252 -0.960986 -0.275741 -1.588204 -1.513842 -0.962196 0.595271 7.056409 7.321192 0.249042 -3.077870 1.880295 1.549254 1.152569 1.584985 5.242397 -1.290497 3.189974 3.519221 -7.403587 1.766507 -8.621274 1.619439 -7.410970 -4.414199 0.249554 3.374478 3.412563 4.066361 -0.460413 9.570379 -1.940135 -2.903346 6.235672 7.500344 -5.540278 -1.035167 -1.752422 -3.312303 0.252380 -2.666388 1.589493 -0.425400 2.764041 -5.482209 -3.594942 0.841785 1.433187 -3.932084 -2.821841 -0.258018 4.733652 -5.736622 -4.073773 -2.013915 4.226109 -1.250114 -10.287081 -5.196208 -4.330397 2.288399 0.561530 -4.367628 -6.140804 2.530334 2.402817 -1.104790 -2.994623 -0.824614 3.671187 4.783717 1.245303 -0.756462 2.909747 2.167929 9.751698 1.846333 -3.051286 0.523349 1.376675 -0.875155 2.481038 -2.143556 -0.879035 0.265941 -5.442118 -0.375261 4.610940 -3.298219 -1.216942 1.461518 -0.515332 -0.346810 22.826573 -1.635942 7.028910 5.912401 -6.105204 1.547803 -2.461753 0.426659 2.346159 2.964804 3.776852 -10.545195 -4.865925 5.606507 9.227817 3.292719 -6.120961 0.137116 2.107557 0.374211 -1.469219 3.214504 0.335480 0.497799 -3.650084 -1.121871 4.299463 12.115481 -3.516384 -2.047664 1.555306 2.287695 -0.980982 -5.261773 -1.046998 -4.473899 0.010328 3.627744 1.248531 3.283074 7.143786 -8.633558 5.655352 -0.614674 -0.732147 5.535080 2.206325 -4.811988 -4.424075 -1.623488 3.291600 4.997757 -1.392527 -0.064119 0.736154 -7.572405 0.061498 2.166443 1.206578 -4.646712 6.423652 1.260823 -3.671574 -2.757250 0.888100 -1.659362 -2.371918 -2.665412 4.865269 -1.063230 -7.412567 5.824337 1.849648 -2.724952 1.000133 -2.178926 6.172162 -5.573884 -6.315890 4.414470 -1.948923 -3.208492 -1.086693 -1.896228 2.859330 3.841446 1.765823 -6.870726 -5.672880 5.438972 -1.683854 7.387297 3.674711 -0.710963 4.278556 -2.897493 -2.673273 -4.041500 -4.901672 1.722843 1.788727 -4.525915 -4.483037 -2.188868 5.287889 5.640305 -0.622070 -4.083682 -0.819599 6.294402 -5.544195 -0.370485 1.661795 3.086340 -5.779398 1.300375 2.986153 -4.252020 1.433321 -4.239048 -1.041091 -4.382895 -3.823068 5.207740 -1.425554 2.436978 0.977092 -0.846772 -0.175359 2.658831 2.457004 0.619935 2.475958 7.532289 4.822292 -1.051438 -1.000874 -7.794516 4.477784 -7.207648 -6.334269 1.357682 0.744996 -3.288086 -1.998108 -0.534964 5.841689 4.320309 -3.254463 -2.300328 2.112882 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -1.386572 -0.738537 0.164723 -1.952620 1.716974 1.992456 1.071717 -1.560713 -3.001940 -2.081620 1.363082 -5.119053 -3.504808 3.979161 -1.388055 1.842161 5.055932 0.169044 -1.361520 -1.891567 2.698611 -0.133882 5.893816 6.032237 -4.285370 0.142500 0.244654 1.791252 1.794941 -0.057011 1.613302 -2.877786 1.593174 -2.275126 0.740038 -1.215295 -0.642252 0.476138 1.751399 -6.394424 -0.614652 2.129797 0.160636 0.014405 0.328190 2.666865 4.043047 3.340562 -0.646580 2.984747 2.766592 -0.226423 1.856993 0.214060 0.436802 -1.151401 0.694927 -0.764343 -1.240847 -0.274068 -0.780558 -2.209754 -0.435220 4.221212 5.144333 -0.170605 -1.729726 1.015664 0.795827 1.212143 1.137356 3.164885 1.332091 1.675933 3.267813 -3.294037 -0.280696 -6.920891 0.414735 -8.424850 -3.220325 -0.617889 3.990759 1.292333 1.427881 -0.623624 5.887413 -0.032058 -1.437422 4.331881 5.241790 -2.952416 -1.247060 -1.291237 -1.543680 1.024450 -2.411855 1.655040 1.027276 1.754235 -3.693650 -2.370228 0.777753 -0.034355 -2.346984 -1.659001 -0.520409 2.849020 -3.869989 -1.603793 -2.786958 1.658687 0.598902 -6.319872 -1.864968 -1.852904 1.743364 1.462278 -2.359589 -2.047339 1.342382 0.445601 -0.891752 -1.337442 -1.589511 2.868740 2.458518 1.102209 0.190516 2.675844 1.704529 5.116510 1.553417 -1.865712 -0.187855 0.952193 -0.858287 1.824680 -1.815031 -0.910240 2.446935 -2.915959 0.467654 1.307369 -2.225990 -2.165011 0.693226 -0.823918 0.222533 10.274612 -0.432942 3.996918 3.437163 -3.312584 1.390388 -1.968578 0.301839 1.567817 2.702860 2.215111 -3.955172 -3.074931 3.293773 5.709362 2.028434 -4.169317 0.013094 1.685526 1.037324 -1.600989 2.230591 1.020442 0.708935 -2.168069 -0.319934 2.955873 6.588292 -2.307069 -1.179483 0.497318 2.168708 0.496243 -3.367374 -0.287079 -1.659852 -0.156652 1.872724 1.319968 1.737173 4.553163 -6.492612 3.535485 0.105722 0.456498 2.703933 1.316088 -3.265637 -4.092225 -0.093037 2.103703 3.062117 0.491977 -0.094665 0.432681 -4.767703 0.123219 1.046552 1.020736 -2.440864 3.934591 -0.359049 -1.550020 -2.227405 -0.451598 -0.983048 -0.902623 -1.420163 2.973328 1.260234 -5.525426 3.610898 -0.028863 -2.354710 -0.659538 -1.330629 3.655372 -3.844417 -3.996303 1.974622 -2.666022 -3.972763 -2.078752 -1.224456 1.083147 1.442192 0.753419 -3.121553 -3.515030 4.912981 -1.119177 4.388001 2.351822 -0.461926 3.758237 -0.536748 -2.443540 -2.290183 -2.430965 1.331054 -0.397797 -2.661178 -1.349131 -1.129796 2.790215 4.043348 -0.681032 -2.273373 -0.683521 3.819756 -4.105433 -1.678000 1.663683 2.216607 -2.189636 2.766703 2.260022 -3.336403 0.719727 -3.404873 -0.764471 -2.099801 -2.633488 2.729958 -1.828686 1.110237 0.846256 -0.635535 -0.348397 1.836146 1.087100 -0.284932 0.488440 5.092971 4.851743 -2.143390 0.194469 -5.176917 2.867259 -4.756145 -4.191322 0.809980 0.560175 -1.914986 -0.952303 -0.152924 2.792345 2.617294 -3.013124 -3.026012 1.944546 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.173122 0.437486 0.526550 -0.069031 0.440129 0.045907 0.184808 0.612930 -0.404775 -0.593301 -0.180539 -0.752975 -0.921753 0.536001 0.049345 -0.338065 0.870407 0.259158 0.093275 -0.135482 -0.280910 -0.197252 0.631945 0.723923 -0.559464 0.378438 -0.229680 0.128182 -0.351116 0.861969 -0.103774 -1.037642 0.103733 0.550553 0.433546 -0.178804 -0.318359 -0.319086 -0.707084 -1.284471 -0.071421 1.078787 0.086560 -0.051476 0.342908 0.530302 1.088041 0.269603 -0.032506 0.417723 -0.025495 -0.020090 0.413387 0.040772 0.319336 -0.094552 0.318518 -0.456816 -0.674305 0.379989 -0.136431 -0.865756 -0.482974 0.346269 0.484930 -0.114927 -0.307967 -0.498078 -0.231314 0.144682 -0.035471 0.312752 0.660949 0.208411 0.375963 0.661637 -0.067430 -0.179750 0.135040 -1.628589 -0.759410 -0.526560 1.237007 0.924899 -0.270266 -0.727170 0.789156 -0.230871 0.347003 0.242958 0.906838 -0.177081 -0.278873 -0.296487 0.005717 0.318771 -0.175888 -0.247933 0.126266 -0.148855 -0.545037 -0.085363 0.405541 -0.331180 -0.313390 0.503346 -0.161507 0.535604 -0.914667 0.134825 -1.035235 0.057075 0.504381 -0.678180 -0.134083 0.404206 -0.269577 0.615187 -0.351585 0.102217 0.392399 -0.087055 -0.330448 0.219842 -0.993612 0.899463 -0.166458 -0.093309 0.368428 0.444730 0.396425 0.093981 0.416759 -0.097765 -0.020780 0.310746 0.051150 -0.056808 -0.025282 -0.136796 -0.172825 -0.338871 0.085450 -0.241441 -0.450925 -0.095986 -1.357063 -0.204657 0.209373 0.627294 -0.322292 0.396021 -0.064178 -0.479388 0.650765 0.014080 -0.394190 -0.138528 0.548973 0.579655 0.266237 -0.167031 0.253745 0.795488 0.307508 -0.285389 0.463437 0.000172 0.063951 -0.099615 0.649190 0.103817 0.445886 -0.346861 -0.085855 0.101739 0.965181 -0.056997 -1.047418 -0.082082 0.053122 0.432771 0.017029 0.243088 0.236203 -0.103875 0.056396 -0.161525 0.191356 0.593320 -1.194766 0.727614 -0.021095 -0.414181 0.562644 -0.175884 -0.014925 -0.517065 -0.058320 0.517361 0.886291 0.435223 -0.238361 -0.333693 -0.515483 -0.129158 0.084612 0.345220 -0.344793 0.538482 -0.188043 -0.443838 -0.223652 -1.028689 -0.039387 0.074774 -0.633312 0.124511 0.689780 -1.237813 0.599274 0.068832 -0.251400 -0.326046 0.116411 -0.003056 -0.448099 -0.691383 -0.107316 -0.497757 -1.257699 -0.158041 -0.483163 0.040544 0.025210 -0.173321 -0.051572 -0.487311 1.053929 0.205859 0.594770 0.471686 0.026167 0.818995 1.264112 -0.553211 0.280625 -0.581985 0.674526 -0.803449 0.135136 0.503824 -0.526252 0.139981 0.791758 0.071406 -0.079082 -0.672941 0.550969 -0.057539 -0.277019 0.519327 -0.659767 0.235096 0.592995 0.626045 -0.353594 -0.224066 -0.747431 -0.034432 -0.112188 -0.189638 0.037868 -0.742938 -0.206708 0.519430 -0.348213 -0.673727 0.102940 -0.259510 -0.527966 -0.254732 0.764143 0.467603 -0.663433 1.013583 -0.389937 0.475025 -0.598074 -0.204814 -0.302001 -0.004148 -0.212042 -0.152700 -0.041765 -0.143542 0.035187 -0.355306 -0.498056 0.247066 +PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -1.138426 -1.152429 -0.263080 -1.860537 0.853254 1.406554 0.605946 -1.403871 -2.441120 -0.994814 0.775930 -2.711393 -1.156394 2.641882 -0.885563 1.981353 3.332527 0.579074 -1.206491 -0.911202 2.277669 -0.920739 3.403449 3.901423 -2.292948 -0.012011 0.089981 1.499416 0.965891 0.502489 0.848985 -1.257234 0.619793 -2.327923 0.456438 -1.741532 -0.494734 1.432061 1.694870 -4.287216 -0.129772 1.187023 0.607111 -0.041999 0.080022 0.783850 1.852899 2.073356 -0.252647 1.947122 1.617436 -0.045357 1.221606 0.127164 0.654891 0.562495 0.351917 -0.288449 -0.287573 -0.230929 -0.686891 -0.998508 0.778525 2.620325 3.087675 -0.168231 -1.132114 0.760366 0.720529 0.659201 1.049777 1.938663 -0.633840 0.342439 1.524987 -3.554367 0.504959 -4.376341 0.736274 -4.527095 -1.656708 0.116156 1.889066 1.255330 1.428683 -0.099816 3.790908 -0.842552 -1.229210 2.674434 2.681926 -1.995639 -0.560503 -0.845785 -1.260357 0.254187 -1.158638 0.108621 0.693076 1.455729 -2.105486 -1.315764 0.614195 0.534305 -1.470609 -1.352515 -0.197076 2.080446 -2.563546 -1.903111 -1.089116 1.722695 -0.385153 -3.841954 -0.712078 -2.104987 0.586780 0.368469 -1.840221 -2.039807 1.056563 0.748032 -0.459134 -0.928969 -0.918558 1.706335 1.267319 0.382570 -0.326087 1.241242 0.296919 3.458247 0.864810 -1.487911 0.122250 1.083551 -0.797720 0.980461 -1.354761 -0.895354 1.180128 -2.413219 -0.540979 0.979732 -1.427804 -0.606315 1.335531 -0.081097 -0.059787 8.242577 -0.462145 2.722653 2.467570 -2.067653 1.266003 -0.573993 0.694821 1.247777 1.661733 1.023781 -3.934513 -2.083626 1.857080 3.595102 1.420879 -2.268774 -0.991730 0.606399 0.451717 0.016538 1.082239 0.175535 -0.015131 -1.476266 -0.320203 1.079692 4.622141 -1.266118 0.297523 0.331784 1.146540 -1.026241 -3.077310 -0.413472 -2.481693 -0.056372 0.526385 0.513184 1.161190 2.864542 -3.673815 2.454114 -0.739043 0.232074 1.924304 0.691673 -1.747349 -3.795266 -0.901943 0.918348 2.398789 -0.720356 0.202464 0.765732 -3.064022 0.108636 0.519537 0.672361 -1.839029 2.543350 -0.007242 -1.128054 -0.871775 0.745383 -0.849012 -1.123071 -0.486286 1.944469 0.444708 -2.361638 1.913871 0.242937 -1.124066 0.649425 -0.059584 2.219356 -2.255837 -2.365372 1.666504 -0.513105 -1.358054 -1.057097 -0.701394 1.368917 0.745066 -0.412048 -2.090237 -2.366837 2.262491 -1.196893 2.885283 1.376150 -0.759222 1.863763 -0.374814 -1.123150 -1.616469 -1.337784 -0.535260 -0.082286 -1.322029 -1.883524 -0.625517 2.081339 2.329641 0.222437 -1.316853 0.469150 3.027534 -1.966473 -0.463480 0.851133 0.698766 -1.672073 1.059244 1.336941 -2.414184 0.466831 -1.886753 -0.111769 -1.154310 -1.136387 2.334347 -0.776284 0.984870 -0.011545 -0.143271 0.134064 1.165302 1.375037 0.115486 0.723358 3.575979 1.961733 -0.282447 -0.495915 -2.937775 1.463233 -2.754559 -1.951069 -0.190298 1.347173 -1.456939 -0.322552 0.209906 2.378277 1.856045 -1.343742 -1.108805 0.700103 +PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.757498 -3.128746 -1.508515 -4.543952 3.050993 3.631889 1.844613 -3.963557 -6.059234 -3.471565 3.459452 -9.000007 -4.915714 6.400670 -2.967861 3.977282 7.345546 -0.801198 -2.790748 -3.518162 5.203367 0.708935 9.738297 9.830796 -7.024870 0.027917 -1.099775 2.704143 3.217545 -0.908342 4.810688 -4.804484 2.384492 -3.962919 1.160174 -1.411915 -1.766119 2.320203 4.238396 -9.685405 -1.141060 4.560999 0.510206 0.845387 1.029914 4.509760 5.156816 5.273277 -0.883538 6.428257 5.070088 0.121460 3.700569 0.010832 0.808225 -2.405787 0.489619 -2.108993 -0.912372 -0.974840 -2.227221 -1.347749 0.068932 7.030354 8.245788 -0.922914 -3.606905 1.678105 1.996820 2.565430 3.023029 6.364899 0.860676 1.869347 5.439445 -5.678374 -0.215432 -11.127056 1.957962 -13.493199 -4.669307 0.920083 6.830630 3.392976 2.264033 -1.513882 10.453928 -0.357431 -4.575523 8.329166 7.177345 -3.489876 -1.115617 -1.023207 -3.096816 0.157741 -3.098270 2.611702 1.507083 4.964181 -5.959545 -2.048856 -0.465531 -0.675251 -3.730495 -3.533580 -0.985417 4.298202 -6.645526 -2.043131 -2.395307 5.725109 1.237095 -10.451940 -4.379343 -4.609825 1.768655 1.097736 -4.514624 -1.945091 2.627449 -0.363133 -1.666101 -0.968080 -2.468991 3.939366 4.859920 2.833191 -0.865221 5.372607 1.748809 8.792297 0.685249 -3.276797 -0.017581 1.615225 0.572668 4.399565 -2.077873 -0.780870 4.256429 -4.636616 0.966492 1.337501 -2.848817 -3.902115 0.645573 -1.198175 -1.216284 18.625937 -1.365978 8.049601 7.134325 -4.495393 0.815865 -2.758492 2.507046 3.343192 4.117063 2.698601 -5.883331 -5.333780 6.676600 9.398701 2.780076 -6.899658 0.726578 4.660873 1.725996 -2.359948 3.527414 0.880283 1.096347 -3.341339 -0.283784 3.808067 10.842688 -2.889354 0.505659 0.617850 5.358066 0.325769 -3.793270 -0.607665 -3.819366 -0.157480 4.167637 2.867966 2.861118 7.198541 -10.020214 5.502376 0.647055 2.376054 3.826322 3.025838 -5.526468 -8.227506 -2.302801 1.719235 4.354809 -0.695147 0.476503 1.642676 -7.830085 1.307079 1.836882 0.905426 -4.787200 6.752926 -0.518753 -1.481417 -2.342624 0.435450 -2.446273 -0.315884 -2.511919 5.266448 1.922591 -7.885541 4.407286 0.563448 -3.941692 -1.544931 -1.337443 7.196988 -5.043121 -5.349628 3.448719 -4.866150 -7.138936 -3.406725 -2.029386 1.178018 2.309708 2.030120 -6.186228 -4.896769 8.673120 -2.960814 8.188658 3.887337 -2.078741 5.521946 -3.446097 -3.687048 -3.544783 -5.359662 2.303136 0.473619 -4.187290 -1.212583 -1.360939 3.993344 4.871660 -0.553147 -4.851772 0.226630 6.534169 -5.749718 -1.289652 1.994360 3.170899 -4.225571 5.214362 3.135734 -4.793868 2.822860 -5.853362 -0.730045 -4.705475 -2.880981 6.145736 -1.176873 2.463752 -0.584330 -0.297992 -0.116949 2.794828 2.717971 -0.470648 1.739418 8.924089 6.937364 -1.747105 -0.744357 -8.567718 4.795155 -6.592936 -6.457710 0.633177 0.769606 -3.142134 -1.771098 -1.565955 6.032543 6.117070 -5.305317 -5.065125 4.871710 +PE-benchmarks/boyer-moore-algorithm.cpp__int const& std::max(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/boyer-moore-algorithm.cpp__main = -0.861014 0.643618 3.017241 -2.114595 3.873414 0.569418 1.528347 1.625808 -2.317726 -3.583114 -0.684895 -1.750624 -6.536762 3.471560 -1.062699 0.536167 3.801433 -0.298254 0.273172 -3.308165 3.720726 -4.571377 5.495817 3.592884 -6.990016 0.751437 0.937425 4.623913 1.814045 4.594641 0.879994 -2.062394 -0.124352 0.110919 5.658912 -2.308653 0.278819 0.116472 -3.531076 -7.905850 -2.005369 4.865754 -0.308348 1.574607 1.270767 6.396732 4.339990 3.713789 -3.319886 3.548082 3.687664 -1.508272 3.226891 0.475266 -0.898801 -0.618495 1.774243 -0.265993 -2.670377 1.511001 -0.980435 -7.139110 1.611598 3.757282 6.447064 -3.167791 -0.939508 1.242782 -0.879438 1.874674 0.745283 4.046076 1.724464 -0.480619 6.434465 -2.396441 -0.981486 -7.507094 1.378329 -12.777656 -4.767124 -5.266995 4.485463 2.692403 1.056150 -2.706493 8.411615 0.716232 0.089915 4.110186 4.176430 -2.222773 -0.288574 -4.956498 -1.426405 0.912501 -3.227261 -2.203464 2.646223 1.601240 -3.122739 -1.434314 1.571052 -1.428314 -2.720036 -1.474140 -4.626336 4.889129 -5.724955 -1.941829 -7.294091 1.606641 0.306936 -6.727495 1.531962 -1.281645 1.800432 1.033711 2.245751 1.076803 1.349162 2.751041 -1.193687 -0.694197 -4.437973 6.742627 2.756227 -1.716030 1.969847 3.597849 -0.542555 1.276598 6.231850 -0.151934 -4.908446 3.829523 -2.199247 0.670263 -2.146021 1.176189 5.008481 -3.414443 -1.802988 -0.873472 -0.679524 -1.235114 -0.930535 -3.417998 2.888169 8.923564 -0.754302 2.034540 0.299386 -2.869029 5.699212 1.420959 -0.279024 3.911527 4.064683 1.204531 -4.388266 -2.967359 2.148382 4.681366 1.111578 -4.760889 -1.604650 -0.054799 1.255508 -1.452004 1.638281 2.522193 0.134931 -1.341565 0.042278 -1.522516 6.634964 -2.537742 -4.192692 1.629001 2.302602 -3.181828 -5.525198 -0.438474 -1.518920 -3.182693 -0.373731 -0.015232 1.265878 4.513703 -8.438437 3.865294 -0.328240 -1.186579 3.618788 -2.971928 1.027398 -9.059872 0.159557 1.930474 4.035976 0.189143 -1.190340 -0.819365 -5.078501 2.715612 -0.000416 2.675906 -2.198739 4.546959 -3.054778 -1.590145 -3.055592 -4.088188 -2.186204 0.536186 -1.643927 0.773298 2.061520 -7.619118 3.364244 -3.423268 -2.645225 1.305601 2.176574 3.135588 -2.791525 -5.000223 2.042598 -0.972750 -6.203972 -5.829340 -1.433159 2.142931 -0.536164 -3.492152 -2.576344 -6.454823 4.834639 -2.534178 2.690056 2.475619 0.840739 7.238141 5.315200 -4.776578 -2.909215 -2.620733 1.010749 -2.417784 -0.181454 -1.633990 -1.103066 2.200369 5.264110 0.580260 2.025204 -1.609544 6.595746 -3.742270 -3.827542 2.947291 -0.516528 0.360349 4.902703 3.661035 -2.723110 -2.977127 -5.566895 1.004034 -0.235582 -1.730590 2.773489 -5.006498 -0.356692 2.565048 0.125139 -2.594332 2.058364 0.908777 -1.590631 -4.344505 8.628806 7.706047 -5.212664 1.841204 -3.259723 3.264233 -4.267324 -0.515126 -2.924760 1.237344 1.666528 1.599724 1.698380 2.114557 2.600292 -3.809644 -2.170655 -2.029814 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.129103 1.034879 1.025536 -0.864980 2.233490 0.957810 0.460824 0.091281 -0.599626 -1.541747 -0.531574 -1.521446 -2.696167 1.434493 -0.780282 0.251771 2.135884 -0.271794 0.544534 -1.106974 1.165236 -0.871248 2.842689 1.783821 -3.039150 0.398398 0.846137 1.466797 0.503991 1.921002 0.272320 -2.016911 0.515651 -0.184574 1.699754 -0.936773 -0.245482 -0.568930 -0.706045 -3.422592 -0.822939 1.384917 -1.084250 0.930457 0.770201 2.291611 2.893340 1.409432 -1.488070 1.759903 1.317729 0.139263 1.376175 0.305586 -0.585307 -0.390433 0.969048 -0.390729 -1.031062 0.527456 -0.782816 -2.328598 0.061586 1.811853 2.747820 -0.915903 -0.669498 0.651195 -0.406324 0.512862 0.092709 2.050223 1.147956 1.086733 2.377567 -1.008600 -0.397773 -3.432296 0.025697 -5.133861 -1.868944 -2.256326 1.078701 0.903451 0.509441 -0.646284 3.366401 0.510706 0.521685 1.789024 2.512222 -1.184822 -0.139506 -1.771759 -0.578670 0.233522 -1.070619 -0.309813 0.590623 0.464505 -1.362518 -1.461832 0.458575 -0.762381 -1.189848 -0.806775 -1.579038 1.812295 -2.647516 -0.865566 -3.133244 0.137725 -0.266365 -3.291038 -0.543215 0.060344 1.290898 0.778485 0.670546 -0.601917 0.708357 1.332137 -0.489563 -0.433295 -0.662988 2.542997 1.597349 -0.150994 0.586277 1.442103 0.474003 1.576775 2.451717 0.067110 -1.575591 0.971665 -0.423262 -0.052134 -0.954284 0.610235 1.401655 -1.540421 -0.047911 0.792880 -0.644257 -0.730657 -0.415722 -2.020610 1.153299 4.684123 -0.782563 1.057854 0.352907 -2.061971 1.201918 0.124934 -0.354088 1.075483 1.510805 1.797373 -1.874121 -1.150445 1.210570 2.062905 0.501785 -2.442208 -0.180599 0.075507 0.559230 -0.602495 0.631915 1.118491 -0.141491 -0.743407 0.185834 0.064087 3.365265 -1.217198 -2.424536 0.577887 1.252518 -0.602187 -1.802835 -0.181217 -0.778861 -1.090594 0.856805 0.109499 0.211955 2.031347 -4.173558 1.585589 0.322075 -0.498051 1.325206 -0.424121 0.060055 -2.726431 0.325176 1.470092 1.153872 0.423759 -0.045515 -0.729089 -1.990238 0.951458 0.474711 1.401453 -1.003560 1.917083 -0.623692 -1.340886 -1.495125 -1.205291 -0.482835 0.009868 -1.081977 0.727448 0.820168 -4.317688 1.744743 -1.012077 -1.328942 0.495127 0.054490 1.961729 -1.625971 -2.319752 0.917925 -1.379829 -2.477483 -1.505597 -0.616502 0.515895 0.594537 -0.296149 -1.539093 -2.696448 1.681925 -0.614344 0.899875 1.512195 0.844534 3.158117 0.376763 -2.026533 -1.463439 -1.442238 1.276783 -0.488172 -0.146082 -0.777302 -0.648826 1.111488 2.981841 -0.160523 0.234554 -1.281155 2.042018 -2.223824 -0.896118 1.350564 0.598775 -0.524630 1.540063 1.391266 -0.784680 -1.033423 -1.745327 0.505522 -0.549063 -0.885667 0.797816 -2.498021 -0.582840 1.451406 -0.435671 -1.420881 1.001506 -0.003401 -0.284798 -1.330679 2.711614 3.461883 -2.276229 0.917853 -1.437438 1.528258 -2.638783 -1.288024 -0.562289 -0.274087 0.572280 0.177472 0.297714 0.814303 0.931574 -1.249896 -0.933770 -0.508055 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/boyer-moore-algorithm.cpp__std::char_traits::length(char const*) = -0.047959 0.074187 0.150852 -0.097095 0.169069 -0.040761 0.085106 0.002587 -0.187054 -0.288537 0.020654 -0.325482 -0.337677 0.278622 -0.097826 0.057152 0.396993 0.088617 0.021521 -0.205347 0.083720 -0.228953 0.444247 0.449787 -0.380770 0.072168 0.097082 0.203905 0.117136 0.184709 0.039327 -0.273047 0.145170 -0.045471 0.159462 -0.183221 -0.017049 -0.004840 -0.071148 -0.570688 -0.049943 0.136265 0.077063 0.033706 0.037695 0.346494 0.380087 0.245882 -0.102309 0.299784 0.227428 -0.006760 0.151387 0.058174 0.027454 -0.104148 0.158474 -0.180372 -0.188637 0.087118 -0.019847 -0.457826 -0.071060 0.290635 0.418813 -0.078543 -0.056380 0.014940 -0.070522 0.097232 0.077826 0.187622 0.125286 0.112548 0.238713 -0.220717 0.025316 -0.583535 -0.051627 -0.997705 -0.308667 -0.213211 0.394175 0.157394 0.046081 0.035571 0.430770 0.095797 0.045847 0.192963 0.424459 -0.227646 -0.130408 -0.073812 -0.055988 0.175175 -0.217742 0.054169 0.086398 0.118905 -0.245923 -0.163811 0.243737 -0.056587 -0.183833 -0.035782 -0.105422 0.225626 -0.503444 -0.105493 -0.395801 -0.054455 0.083527 -0.463438 0.115922 -0.038266 0.278618 0.167500 -0.075430 -0.083781 0.080283 0.070455 -0.045615 -0.036890 -0.362809 0.281679 0.087056 0.029298 0.111920 0.161313 0.130608 0.299637 0.230672 -0.118414 -0.111806 0.119691 -0.132948 0.058125 -0.161478 -0.089342 0.195626 -0.273149 0.107635 0.008561 -0.193854 -0.201491 -0.011250 -0.121624 0.125977 0.490782 -0.010801 0.233741 0.174870 -0.272173 0.107471 -0.146694 -0.048953 0.146156 0.264172 0.160684 -0.062753 -0.204702 0.126690 0.392930 0.160782 -0.277092 -0.096596 0.025423 0.091004 -0.038347 0.158905 0.100618 0.020184 -0.164950 -0.019937 0.132903 0.438591 -0.092518 -0.110715 0.015050 0.074480 -0.030252 -0.313386 0.008641 -0.049450 -0.011005 -0.004040 0.044549 0.057003 0.340731 -0.721745 0.296792 -0.025945 -0.002619 0.172062 0.003863 -0.158386 -0.514861 0.089499 0.205575 0.287825 0.054183 0.090285 0.031890 -0.341656 -0.023180 0.021137 0.137715 -0.188958 0.258789 0.005404 -0.204364 -0.222308 -0.145654 0.019265 -0.032883 -0.098900 0.174861 0.247848 -0.684451 0.282926 -0.136853 -0.236388 -0.020933 -0.025848 0.214408 -0.351482 -0.318678 0.074136 -0.227878 -0.381874 -0.222255 -0.096389 0.084825 -0.084467 -0.102066 -0.080190 -0.190088 0.318211 -0.092154 0.164441 0.198305 0.031372 0.396850 0.091342 -0.221983 -0.120684 0.003919 0.076285 -0.324539 -0.070456 0.109996 -0.112287 0.172309 0.465811 0.024333 -0.047238 0.063015 0.319132 -0.261731 -0.238387 0.208970 0.140766 -0.027509 0.336657 0.220488 -0.302267 -0.074731 -0.298366 -0.056287 0.012676 -0.205817 0.186731 -0.268338 0.031388 0.182253 -0.041022 -0.173378 0.219917 -0.014112 -0.049391 -0.093159 0.413796 0.496524 -0.267519 0.162747 -0.306802 0.122478 -0.404969 -0.249946 -0.030619 0.153080 -0.080969 -0.000644 -0.032766 0.139574 0.119721 -0.176340 -0.202373 0.069934 +PE-benchmarks/boyer-moore-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -0.339036 1.281610 1.549463 -1.414356 3.335246 1.066634 1.069069 0.820199 -1.430988 -3.032192 -0.588773 -3.137955 -4.911965 2.484752 -0.851227 0.677050 4.345654 -0.107591 0.524551 -1.952775 1.982649 -1.979029 5.173176 4.050906 -5.140360 0.817649 1.174346 2.606242 0.841609 2.426246 0.239432 -3.189952 1.152106 -0.747919 2.988991 -1.702428 -0.405095 -1.008260 -1.201424 -6.492636 -1.326311 2.709040 -1.239931 1.127558 0.968083 4.465936 5.054618 2.781871 -2.538881 2.988928 2.558636 -0.560359 2.311173 0.628964 -0.849429 -0.766339 1.017222 -0.419986 -2.112610 0.736836 -0.951471 -4.938775 0.066215 3.115910 4.809865 -1.702474 -1.257756 1.170500 -0.235107 0.762923 0.464047 3.398652 2.396274 0.968744 4.429697 -2.264156 -0.807065 -6.485494 0.017521 -10.552966 -3.915838 -3.820918 3.237130 1.226917 1.085178 -1.512351 6.230103 0.361197 0.947037 3.077571 4.400591 -2.699710 -0.748444 -3.082410 -0.714682 0.958716 -2.323628 -0.537822 1.905523 0.610449 -2.824112 -2.063567 1.590081 -1.163262 -2.218114 -1.722206 -2.293749 3.185282 -4.553457 -1.678751 -5.977167 0.326992 0.214486 -5.867690 0.081395 0.171443 2.205514 1.665786 0.429393 -0.995062 1.075357 1.673349 -0.955882 -0.896073 -2.010438 4.693094 2.520059 -0.231179 1.742119 2.749773 1.089144 3.136697 4.735970 -0.357150 -2.757910 1.975179 -1.435401 0.388851 -1.729626 0.264254 3.091507 -3.072773 -0.150179 0.868180 -1.580503 -1.254234 0.005683 -2.728785 1.871372 8.155556 -0.881631 2.276994 1.150470 -3.362392 2.995663 -0.511849 -0.756041 2.027247 3.166019 2.647107 -3.525929 -2.212610 2.070976 4.356426 1.290367 -4.570637 -0.392739 0.471844 1.363002 -1.361809 1.262918 2.001083 0.796228 -1.523194 0.232658 0.897015 6.122441 -2.198409 -3.608677 0.906278 2.101276 -0.741292 -4.078142 -0.386398 -1.578928 -1.723182 1.090512 0.447025 0.609177 3.921077 -7.177086 2.906795 -0.110772 -0.691953 2.841870 -0.325071 -0.515472 -5.743593 0.631519 2.515580 2.828513 0.705681 -0.039800 -1.001542 -3.736021 1.154986 0.739140 2.176372 -1.778060 3.508086 -1.402785 -1.996272 -2.397680 -2.602442 -0.864496 -0.152883 -1.419744 1.516453 1.888137 -7.350956 3.285397 -1.758697 -2.688986 0.540941 -0.169717 3.330571 -3.268726 -4.216654 1.828427 -2.302775 -4.656668 -2.945832 -1.171277 1.189096 0.651435 -1.261676 -2.294346 -4.852392 4.222024 -0.866589 2.469620 2.610628 0.925051 5.854169 1.638459 -3.712153 -2.398935 -2.434784 1.423966 -1.766168 -0.792403 -1.411061 -1.285277 2.072772 5.265412 -0.282336 0.641098 -1.576955 3.768482 -4.449279 -2.017940 2.639059 1.635093 -0.675383 3.461156 2.830362 -2.315232 -1.663548 -3.607482 0.459204 -0.608748 -2.043969 1.667419 -4.420582 -0.565765 2.678774 -0.792453 -1.945463 1.826579 0.093630 -0.517168 -2.450368 5.310843 6.556730 -4.007995 1.447889 -3.214010 2.657336 -4.763129 -2.527672 -0.706480 0.467433 0.286208 0.175478 1.223594 1.465212 1.513395 -2.926239 -2.330082 -0.460643 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.121920 0.285697 0.408187 -0.646375 0.864158 0.471727 0.001535 0.004627 -0.441503 -0.585623 -0.343180 -0.641559 -0.877482 0.650457 -0.283563 0.224817 0.802941 -0.095795 -0.028022 -0.369115 0.571426 -0.188184 0.849392 0.468034 -1.030773 0.119872 0.307213 0.796978 0.180998 0.910377 0.073339 -0.884425 -0.208248 0.158004 0.693031 -0.419042 0.045540 0.143565 -0.234130 -1.274028 -0.230024 0.716396 -0.169291 0.290655 0.198767 0.315660 0.865491 0.563155 -0.487044 0.398729 0.736403 0.415646 0.363196 0.079622 -0.245737 0.049752 0.455412 -0.496089 -0.231613 0.140618 -0.112284 -0.546620 0.080199 0.664938 0.975357 -0.366399 -0.312525 0.278019 -0.008871 0.208819 0.030994 0.657856 0.060103 0.286685 0.622503 -0.351982 -0.066375 -1.214519 0.461952 -1.506904 -0.565034 -0.792981 0.261276 0.880767 0.065571 -0.260176 1.430817 -0.133868 0.021688 0.685681 0.872060 -0.319866 0.003900 -0.935772 -0.397859 0.157585 -0.401876 -0.471810 -0.107456 0.608256 -0.313467 -0.517786 0.000000 -0.351307 -0.481878 -0.198865 -0.671676 0.777309 -1.029267 -0.296661 -0.983521 0.614019 0.000000 -1.098790 -0.469618 -0.250981 -0.049622 -0.057731 0.239731 -0.304501 0.252623 0.462761 -0.362118 0.063624 -0.612451 0.790819 0.603272 -0.403335 0.073435 0.432920 0.227292 0.518929 0.462623 -0.294757 -0.705825 0.596328 -0.004165 -0.220542 -0.575861 0.286603 0.267171 -0.638998 -0.067273 0.349515 -0.207592 -0.204497 -0.538234 -0.917981 0.421696 2.050129 -0.300438 0.191486 0.047323 -0.635705 0.604691 0.284744 -0.246332 0.353672 0.300556 0.612614 -0.564895 -0.546453 0.558947 0.805971 0.253234 -0.498610 -0.092301 0.008733 0.087317 -0.081087 0.254887 0.467026 -0.381694 -0.051733 -0.139618 -0.131090 1.278044 -0.112958 -0.688729 0.359348 0.794128 -0.518183 -0.479176 -0.106252 -0.583019 -0.484377 0.412174 0.003402 0.363889 0.864003 -1.655478 0.679700 0.405061 -0.241311 0.401959 -0.440328 0.295127 -1.003500 -0.098512 0.576438 0.684530 -0.239794 0.248192 -0.326794 -0.820926 0.354926 0.244458 0.545144 -0.450726 0.570288 -0.118208 -0.419003 -0.408281 -0.248264 -0.529672 0.005239 -0.470888 0.237787 0.294050 -1.416399 0.776428 -0.401064 -0.080756 0.274805 0.030404 0.744227 -0.593252 -0.709667 0.483566 -0.088072 -0.644064 -0.276468 -0.154391 0.520811 0.049863 0.050579 -0.566736 -1.006935 0.426269 -0.148519 0.321219 0.423377 0.241353 0.599820 0.199229 -0.456838 -0.407251 -0.525919 0.355423 -0.008339 0.156600 -0.181724 -0.085429 0.434455 0.907066 0.039332 -0.052055 -0.386567 0.816593 -0.406360 -0.238840 0.318701 -0.335244 -0.364550 0.429477 0.451395 -0.347001 -0.486583 -0.907868 0.476138 -0.263885 -0.340779 0.298659 -0.789756 -0.203993 0.726734 -0.243857 -0.638245 0.501495 0.256650 -0.387460 -0.453664 1.276724 0.631981 -0.337700 0.513251 -0.669793 0.500802 -0.936685 -0.351132 -0.392719 -0.206899 0.037957 0.065565 -0.022947 0.395001 0.181564 0.152600 -0.237687 -0.352285 +PE-benchmarks/boyer-moore-algorithm.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.205743 -3.032020 -1.460258 -3.173748 1.051112 1.556928 0.986342 -2.662098 -4.411240 -1.938153 2.286421 -5.580337 -2.195390 4.472492 -1.819855 3.152991 5.225200 0.377709 -2.048021 -2.127958 3.867629 -0.411696 5.861071 6.737200 -3.983074 -0.459388 -0.532749 2.202290 2.336041 -1.086161 3.351553 -2.598945 1.055538 -3.475239 0.616659 -1.964345 -0.685208 2.914410 3.571512 -6.560532 -0.385811 2.662986 1.597160 0.105932 0.290266 1.978841 2.272139 3.657532 -0.691308 3.954382 3.547078 0.095065 2.149973 -0.036010 0.431333 -0.783158 -0.322768 -0.929250 -0.216913 -0.468091 -1.103175 -0.556029 0.874097 4.623150 5.622890 -0.364281 -2.200360 1.225432 1.756909 1.666429 2.284632 3.612020 -0.389871 0.541758 3.108686 -4.973303 -0.179898 -8.809511 1.714549 -8.635243 -2.566827 1.185363 4.264905 1.962652 1.569209 -0.259874 6.446247 -0.676247 -3.196610 5.899697 4.324650 -2.210856 -1.014075 -0.940614 -2.562735 0.670564 -2.218149 1.318953 1.236927 3.783997 -3.682609 -2.039949 -0.205150 0.216636 -2.426974 -2.738168 -0.221422 2.849453 -3.864213 -2.207879 -1.106457 3.992414 0.507318 -6.412297 -2.206587 -4.143532 0.577295 0.502525 -3.460389 -1.876116 1.539330 -0.381399 -1.078823 -0.749193 -1.751023 2.033684 2.479516 1.516829 -0.991101 2.770293 0.711790 5.720888 -0.303684 -3.011858 0.336690 1.571233 -0.460085 2.565057 -2.563292 -1.352716 3.568157 -3.247514 0.025779 0.584181 -2.217319 -2.683651 2.114179 -0.497565 -0.775270 12.554390 -0.350734 4.967015 5.067338 -2.672304 1.231946 -1.368280 2.041230 2.348864 2.868659 1.287822 -4.394046 -3.711909 3.789574 6.164051 2.216484 -3.704050 -1.225084 2.662246 1.239611 -0.701035 2.125135 0.418815 -0.190872 -2.195160 -0.322402 2.411230 6.687797 -1.535825 1.804414 0.090593 4.262048 -0.866328 -3.724090 -0.403383 -3.994639 0.087236 1.807521 1.789341 2.227894 4.784043 -6.820097 3.718215 0.112789 2.179893 1.985758 1.871492 -3.925807 -6.828015 -1.446542 0.791236 3.375669 -0.982010 1.035371 1.822209 -5.267137 0.511152 0.949649 0.672927 -3.142424 4.378440 -0.617145 -0.783611 -1.356449 1.702808 -2.127723 -1.229636 -0.885931 3.703567 1.717400 -3.583874 2.714286 0.137634 -2.127060 -0.388674 -0.675621 4.390143 -3.851369 -3.391215 2.509434 -2.106602 -3.210161 -2.120596 -1.140976 1.556327 1.054500 0.579161 -3.448602 -3.215876 4.899974 -2.229662 5.306615 2.195340 -2.064829 2.577187 -2.080501 -1.710882 -2.528659 -2.412374 -0.132620 0.298632 -2.630934 -1.897150 -0.562919 2.955263 3.107475 -0.122338 -3.339542 1.075004 4.745550 -3.126025 -0.901947 0.931233 1.377007 -2.594253 2.904547 1.782532 -4.269181 1.961674 -3.785531 0.103946 -2.464522 -1.797253 4.282287 -0.516107 1.929469 -0.785799 -0.151587 0.633504 1.979818 2.733506 -0.228635 1.633638 6.070752 3.407889 -0.083797 -0.967638 -5.798620 2.422496 -4.379922 -3.895330 -0.078318 1.257646 -2.817555 -0.749891 -0.616140 4.173631 3.869173 -2.347786 -3.159554 2.839941 +PE-benchmarks/optimized-naive-algorithm.cpp__main = -0.861014 0.643618 3.017241 -2.114595 3.873414 0.569418 1.528347 1.625808 -2.317726 -3.583114 -0.684895 -1.750624 -6.536762 3.471560 -1.062699 0.536167 3.801433 -0.298254 0.273172 -3.308165 3.720726 -4.571377 5.495817 3.592884 -6.990016 0.751437 0.937425 4.623913 1.814045 4.594641 0.879994 -2.062394 -0.124352 0.110919 5.658912 -2.308653 0.278819 0.116472 -3.531076 -7.905850 -2.005369 4.865754 -0.308348 1.574607 1.270767 6.396732 4.339990 3.713789 -3.319886 3.548082 3.687664 -1.508272 3.226891 0.475266 -0.898801 -0.618495 1.774243 -0.265993 -2.670377 1.511001 -0.980435 -7.139110 1.611598 3.757282 6.447064 -3.167791 -0.939508 1.242782 -0.879438 1.874674 0.745283 4.046076 1.724464 -0.480619 6.434465 -2.396441 -0.981486 -7.507094 1.378329 -12.777656 -4.767124 -5.266995 4.485463 2.692403 1.056150 -2.706493 8.411615 0.716232 0.089915 4.110186 4.176430 -2.222773 -0.288574 -4.956498 -1.426405 0.912501 -3.227261 -2.203464 2.646223 1.601240 -3.122739 -1.434314 1.571052 -1.428314 -2.720036 -1.474140 -4.626336 4.889129 -5.724955 -1.941829 -7.294091 1.606641 0.306936 -6.727495 1.531962 -1.281645 1.800432 1.033711 2.245751 1.076803 1.349162 2.751041 -1.193687 -0.694197 -4.437973 6.742627 2.756227 -1.716030 1.969847 3.597849 -0.542555 1.276598 6.231850 -0.151934 -4.908446 3.829523 -2.199247 0.670263 -2.146021 1.176189 5.008481 -3.414443 -1.802988 -0.873472 -0.679524 -1.235114 -0.930535 -3.417998 2.888169 8.923564 -0.754302 2.034540 0.299386 -2.869029 5.699212 1.420959 -0.279024 3.911527 4.064683 1.204531 -4.388266 -2.967359 2.148382 4.681366 1.111578 -4.760889 -1.604650 -0.054799 1.255508 -1.452004 1.638281 2.522193 0.134931 -1.341565 0.042278 -1.522516 6.634964 -2.537742 -4.192692 1.629001 2.302602 -3.181828 -5.525198 -0.438474 -1.518920 -3.182693 -0.373731 -0.015232 1.265878 4.513703 -8.438437 3.865294 -0.328240 -1.186579 3.618788 -2.971928 1.027398 -9.059872 0.159557 1.930474 4.035976 0.189143 -1.190340 -0.819365 -5.078501 2.715612 -0.000416 2.675906 -2.198739 4.546959 -3.054778 -1.590145 -3.055592 -4.088188 -2.186204 0.536186 -1.643927 0.773298 2.061520 -7.619118 3.364244 -3.423268 -2.645225 1.305601 2.176574 3.135588 -2.791525 -5.000223 2.042598 -0.972750 -6.203972 -5.829340 -1.433159 2.142931 -0.536164 -3.492152 -2.576344 -6.454823 4.834639 -2.534178 2.690056 2.475619 0.840739 7.238141 5.315200 -4.776578 -2.909215 -2.620733 1.010749 -2.417784 -0.181454 -1.633990 -1.103066 2.200369 5.264110 0.580260 2.025204 -1.609544 6.595746 -3.742270 -3.827542 2.947291 -0.516528 0.360349 4.902703 3.661035 -2.723110 -2.977127 -5.566895 1.004034 -0.235582 -1.730590 2.773489 -5.006498 -0.356692 2.565048 0.125139 -2.594332 2.058364 0.908777 -1.590631 -4.344505 8.628806 7.706047 -5.212664 1.841204 -3.259723 3.264233 -4.267324 -0.515126 -2.924760 1.237344 1.666528 1.599724 1.698380 2.114557 2.600292 -3.809644 -2.170655 -2.029814 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.129103 1.034879 1.025536 -0.864980 2.233490 0.957810 0.460824 0.091281 -0.599626 -1.541747 -0.531574 -1.521446 -2.696167 1.434493 -0.780282 0.251771 2.135884 -0.271794 0.544534 -1.106974 1.165236 -0.871248 2.842689 1.783821 -3.039150 0.398398 0.846137 1.466797 0.503991 1.921002 0.272320 -2.016911 0.515651 -0.184574 1.699754 -0.936773 -0.245482 -0.568930 -0.706045 -3.422592 -0.822939 1.384917 -1.084250 0.930457 0.770201 2.291611 2.893340 1.409432 -1.488070 1.759903 1.317729 0.139263 1.376175 0.305586 -0.585307 -0.390433 0.969048 -0.390729 -1.031062 0.527456 -0.782816 -2.328598 0.061586 1.811853 2.747820 -0.915903 -0.669498 0.651195 -0.406324 0.512862 0.092709 2.050223 1.147956 1.086733 2.377567 -1.008600 -0.397773 -3.432296 0.025697 -5.133861 -1.868944 -2.256326 1.078701 0.903451 0.509441 -0.646284 3.366401 0.510706 0.521685 1.789024 2.512222 -1.184822 -0.139506 -1.771759 -0.578670 0.233522 -1.070619 -0.309813 0.590623 0.464505 -1.362518 -1.461832 0.458575 -0.762381 -1.189848 -0.806775 -1.579038 1.812295 -2.647516 -0.865566 -3.133244 0.137725 -0.266365 -3.291038 -0.543215 0.060344 1.290898 0.778485 0.670546 -0.601917 0.708357 1.332137 -0.489563 -0.433295 -0.662988 2.542997 1.597349 -0.150994 0.586277 1.442103 0.474003 1.576775 2.451717 0.067110 -1.575591 0.971665 -0.423262 -0.052134 -0.954284 0.610235 1.401655 -1.540421 -0.047911 0.792880 -0.644257 -0.730657 -0.415722 -2.020610 1.153299 4.684123 -0.782563 1.057854 0.352907 -2.061971 1.201918 0.124934 -0.354088 1.075483 1.510805 1.797373 -1.874121 -1.150445 1.210570 2.062905 0.501785 -2.442208 -0.180599 0.075507 0.559230 -0.602495 0.631915 1.118491 -0.141491 -0.743407 0.185834 0.064087 3.365265 -1.217198 -2.424536 0.577887 1.252518 -0.602187 -1.802835 -0.181217 -0.778861 -1.090594 0.856805 0.109499 0.211955 2.031347 -4.173558 1.585589 0.322075 -0.498051 1.325206 -0.424121 0.060055 -2.726431 0.325176 1.470092 1.153872 0.423759 -0.045515 -0.729089 -1.990238 0.951458 0.474711 1.401453 -1.003560 1.917083 -0.623692 -1.340886 -1.495125 -1.205291 -0.482835 0.009868 -1.081977 0.727448 0.820168 -4.317688 1.744743 -1.012077 -1.328942 0.495127 0.054490 1.961729 -1.625971 -2.319752 0.917925 -1.379829 -2.477483 -1.505597 -0.616502 0.515895 0.594537 -0.296149 -1.539093 -2.696448 1.681925 -0.614344 0.899875 1.512195 0.844534 3.158117 0.376763 -2.026533 -1.463439 -1.442238 1.276783 -0.488172 -0.146082 -0.777302 -0.648826 1.111488 2.981841 -0.160523 0.234554 -1.281155 2.042018 -2.223824 -0.896118 1.350564 0.598775 -0.524630 1.540063 1.391266 -0.784680 -1.033423 -1.745327 0.505522 -0.549063 -0.885667 0.797816 -2.498021 -0.582840 1.451406 -0.435671 -1.420881 1.001506 -0.003401 -0.284798 -1.330679 2.711614 3.461883 -2.276229 0.917853 -1.437438 1.528258 -2.638783 -1.288024 -0.562289 -0.274087 0.572280 0.177472 0.297714 0.814303 0.931574 -1.249896 -0.933770 -0.508055 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/optimized-naive-algorithm.cpp__std::char_traits::length(char const*) = -0.047959 0.074187 0.150852 -0.097095 0.169069 -0.040761 0.085106 0.002587 -0.187054 -0.288537 0.020654 -0.325482 -0.337677 0.278622 -0.097826 0.057152 0.396993 0.088617 0.021521 -0.205347 0.083720 -0.228953 0.444247 0.449787 -0.380770 0.072168 0.097082 0.203905 0.117136 0.184709 0.039327 -0.273047 0.145170 -0.045471 0.159462 -0.183221 -0.017049 -0.004840 -0.071148 -0.570688 -0.049943 0.136265 0.077063 0.033706 0.037695 0.346494 0.380087 0.245882 -0.102309 0.299784 0.227428 -0.006760 0.151387 0.058174 0.027454 -0.104148 0.158474 -0.180372 -0.188637 0.087118 -0.019847 -0.457826 -0.071060 0.290635 0.418813 -0.078543 -0.056380 0.014940 -0.070522 0.097232 0.077826 0.187622 0.125286 0.112548 0.238713 -0.220717 0.025316 -0.583535 -0.051627 -0.997705 -0.308667 -0.213211 0.394175 0.157394 0.046081 0.035571 0.430770 0.095797 0.045847 0.192963 0.424459 -0.227646 -0.130408 -0.073812 -0.055988 0.175175 -0.217742 0.054169 0.086398 0.118905 -0.245923 -0.163811 0.243737 -0.056587 -0.183833 -0.035782 -0.105422 0.225626 -0.503444 -0.105493 -0.395801 -0.054455 0.083527 -0.463438 0.115922 -0.038266 0.278618 0.167500 -0.075430 -0.083781 0.080283 0.070455 -0.045615 -0.036890 -0.362809 0.281679 0.087056 0.029298 0.111920 0.161313 0.130608 0.299637 0.230672 -0.118414 -0.111806 0.119691 -0.132948 0.058125 -0.161478 -0.089342 0.195626 -0.273149 0.107635 0.008561 -0.193854 -0.201491 -0.011250 -0.121624 0.125977 0.490782 -0.010801 0.233741 0.174870 -0.272173 0.107471 -0.146694 -0.048953 0.146156 0.264172 0.160684 -0.062753 -0.204702 0.126690 0.392930 0.160782 -0.277092 -0.096596 0.025423 0.091004 -0.038347 0.158905 0.100618 0.020184 -0.164950 -0.019937 0.132903 0.438591 -0.092518 -0.110715 0.015050 0.074480 -0.030252 -0.313386 0.008641 -0.049450 -0.011005 -0.004040 0.044549 0.057003 0.340731 -0.721745 0.296792 -0.025945 -0.002619 0.172062 0.003863 -0.158386 -0.514861 0.089499 0.205575 0.287825 0.054183 0.090285 0.031890 -0.341656 -0.023180 0.021137 0.137715 -0.188958 0.258789 0.005404 -0.204364 -0.222308 -0.145654 0.019265 -0.032883 -0.098900 0.174861 0.247848 -0.684451 0.282926 -0.136853 -0.236388 -0.020933 -0.025848 0.214408 -0.351482 -0.318678 0.074136 -0.227878 -0.381874 -0.222255 -0.096389 0.084825 -0.084467 -0.102066 -0.080190 -0.190088 0.318211 -0.092154 0.164441 0.198305 0.031372 0.396850 0.091342 -0.221983 -0.120684 0.003919 0.076285 -0.324539 -0.070456 0.109996 -0.112287 0.172309 0.465811 0.024333 -0.047238 0.063015 0.319132 -0.261731 -0.238387 0.208970 0.140766 -0.027509 0.336657 0.220488 -0.302267 -0.074731 -0.298366 -0.056287 0.012676 -0.205817 0.186731 -0.268338 0.031388 0.182253 -0.041022 -0.173378 0.219917 -0.014112 -0.049391 -0.093159 0.413796 0.496524 -0.267519 0.162747 -0.306802 0.122478 -0.404969 -0.249946 -0.030619 0.153080 -0.080969 -0.000644 -0.032766 0.139574 0.119721 -0.176340 -0.202373 0.069934 +PE-benchmarks/optimized-naive-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -0.339036 1.281610 1.549463 -1.414356 3.335246 1.066634 1.069069 0.820199 -1.430988 -3.032192 -0.588773 -3.137955 -4.911965 2.484752 -0.851227 0.677050 4.345654 -0.107591 0.524551 -1.952775 1.982649 -1.979029 5.173176 4.050906 -5.140360 0.817649 1.174346 2.606242 0.841609 2.426246 0.239432 -3.189952 1.152106 -0.747919 2.988991 -1.702428 -0.405095 -1.008260 -1.201424 -6.492636 -1.326311 2.709040 -1.239931 1.127558 0.968083 4.465936 5.054618 2.781871 -2.538881 2.988928 2.558636 -0.560359 2.311173 0.628964 -0.849429 -0.766339 1.017222 -0.419986 -2.112610 0.736836 -0.951471 -4.938775 0.066215 3.115910 4.809865 -1.702474 -1.257756 1.170500 -0.235107 0.762923 0.464047 3.398652 2.396274 0.968744 4.429697 -2.264156 -0.807065 -6.485494 0.017521 -10.552966 -3.915838 -3.820918 3.237130 1.226917 1.085178 -1.512351 6.230103 0.361197 0.947037 3.077571 4.400591 -2.699710 -0.748444 -3.082410 -0.714682 0.958716 -2.323628 -0.537822 1.905523 0.610449 -2.824112 -2.063567 1.590081 -1.163262 -2.218114 -1.722206 -2.293749 3.185282 -4.553457 -1.678751 -5.977167 0.326992 0.214486 -5.867690 0.081395 0.171443 2.205514 1.665786 0.429393 -0.995062 1.075357 1.673349 -0.955882 -0.896073 -2.010438 4.693094 2.520059 -0.231179 1.742119 2.749773 1.089144 3.136697 4.735970 -0.357150 -2.757910 1.975179 -1.435401 0.388851 -1.729626 0.264254 3.091507 -3.072773 -0.150179 0.868180 -1.580503 -1.254234 0.005683 -2.728785 1.871372 8.155556 -0.881631 2.276994 1.150470 -3.362392 2.995663 -0.511849 -0.756041 2.027247 3.166019 2.647107 -3.525929 -2.212610 2.070976 4.356426 1.290367 -4.570637 -0.392739 0.471844 1.363002 -1.361809 1.262918 2.001083 0.796228 -1.523194 0.232658 0.897015 6.122441 -2.198409 -3.608677 0.906278 2.101276 -0.741292 -4.078142 -0.386398 -1.578928 -1.723182 1.090512 0.447025 0.609177 3.921077 -7.177086 2.906795 -0.110772 -0.691953 2.841870 -0.325071 -0.515472 -5.743593 0.631519 2.515580 2.828513 0.705681 -0.039800 -1.001542 -3.736021 1.154986 0.739140 2.176372 -1.778060 3.508086 -1.402785 -1.996272 -2.397680 -2.602442 -0.864496 -0.152883 -1.419744 1.516453 1.888137 -7.350956 3.285397 -1.758697 -2.688986 0.540941 -0.169717 3.330571 -3.268726 -4.216654 1.828427 -2.302775 -4.656668 -2.945832 -1.171277 1.189096 0.651435 -1.261676 -2.294346 -4.852392 4.222024 -0.866589 2.469620 2.610628 0.925051 5.854169 1.638459 -3.712153 -2.398935 -2.434784 1.423966 -1.766168 -0.792403 -1.411061 -1.285277 2.072772 5.265412 -0.282336 0.641098 -1.576955 3.768482 -4.449279 -2.017940 2.639059 1.635093 -0.675383 3.461156 2.830362 -2.315232 -1.663548 -3.607482 0.459204 -0.608748 -2.043969 1.667419 -4.420582 -0.565765 2.678774 -0.792453 -1.945463 1.826579 0.093630 -0.517168 -2.450368 5.310843 6.556730 -4.007995 1.447889 -3.214010 2.657336 -4.763129 -2.527672 -0.706480 0.467433 0.286208 0.175478 1.223594 1.465212 1.513395 -2.926239 -2.330082 -0.460643 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.121920 0.285697 0.408187 -0.646375 0.864158 0.471727 0.001535 0.004627 -0.441503 -0.585623 -0.343180 -0.641559 -0.877482 0.650457 -0.283563 0.224817 0.802941 -0.095795 -0.028022 -0.369115 0.571426 -0.188184 0.849392 0.468034 -1.030773 0.119872 0.307213 0.796978 0.180998 0.910377 0.073339 -0.884425 -0.208248 0.158004 0.693031 -0.419042 0.045540 0.143565 -0.234130 -1.274028 -0.230024 0.716396 -0.169291 0.290655 0.198767 0.315660 0.865491 0.563155 -0.487044 0.398729 0.736403 0.415646 0.363196 0.079622 -0.245737 0.049752 0.455412 -0.496089 -0.231613 0.140618 -0.112284 -0.546620 0.080199 0.664938 0.975357 -0.366399 -0.312525 0.278019 -0.008871 0.208819 0.030994 0.657856 0.060103 0.286685 0.622503 -0.351982 -0.066375 -1.214519 0.461952 -1.506904 -0.565034 -0.792981 0.261276 0.880767 0.065571 -0.260176 1.430817 -0.133868 0.021688 0.685681 0.872060 -0.319866 0.003900 -0.935772 -0.397859 0.157585 -0.401876 -0.471810 -0.107456 0.608256 -0.313467 -0.517786 0.000000 -0.351307 -0.481878 -0.198865 -0.671676 0.777309 -1.029267 -0.296661 -0.983521 0.614019 0.000000 -1.098790 -0.469618 -0.250981 -0.049622 -0.057731 0.239731 -0.304501 0.252623 0.462761 -0.362118 0.063624 -0.612451 0.790819 0.603272 -0.403335 0.073435 0.432920 0.227292 0.518929 0.462623 -0.294757 -0.705825 0.596328 -0.004165 -0.220542 -0.575861 0.286603 0.267171 -0.638998 -0.067273 0.349515 -0.207592 -0.204497 -0.538234 -0.917981 0.421696 2.050129 -0.300438 0.191486 0.047323 -0.635705 0.604691 0.284744 -0.246332 0.353672 0.300556 0.612614 -0.564895 -0.546453 0.558947 0.805971 0.253234 -0.498610 -0.092301 0.008733 0.087317 -0.081087 0.254887 0.467026 -0.381694 -0.051733 -0.139618 -0.131090 1.278044 -0.112958 -0.688729 0.359348 0.794128 -0.518183 -0.479176 -0.106252 -0.583019 -0.484377 0.412174 0.003402 0.363889 0.864003 -1.655478 0.679700 0.405061 -0.241311 0.401959 -0.440328 0.295127 -1.003500 -0.098512 0.576438 0.684530 -0.239794 0.248192 -0.326794 -0.820926 0.354926 0.244458 0.545144 -0.450726 0.570288 -0.118208 -0.419003 -0.408281 -0.248264 -0.529672 0.005239 -0.470888 0.237787 0.294050 -1.416399 0.776428 -0.401064 -0.080756 0.274805 0.030404 0.744227 -0.593252 -0.709667 0.483566 -0.088072 -0.644064 -0.276468 -0.154391 0.520811 0.049863 0.050579 -0.566736 -1.006935 0.426269 -0.148519 0.321219 0.423377 0.241353 0.599820 0.199229 -0.456838 -0.407251 -0.525919 0.355423 -0.008339 0.156600 -0.181724 -0.085429 0.434455 0.907066 0.039332 -0.052055 -0.386567 0.816593 -0.406360 -0.238840 0.318701 -0.335244 -0.364550 0.429477 0.451395 -0.347001 -0.486583 -0.907868 0.476138 -0.263885 -0.340779 0.298659 -0.789756 -0.203993 0.726734 -0.243857 -0.638245 0.501495 0.256650 -0.387460 -0.453664 1.276724 0.631981 -0.337700 0.513251 -0.669793 0.500802 -0.936685 -0.351132 -0.392719 -0.206899 0.037957 0.065565 -0.022947 0.395001 0.181564 0.152600 -0.237687 -0.352285 +PE-benchmarks/optimized-naive-algorithm.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.444021 -0.475063 -0.154973 -0.409908 0.416443 0.173706 0.221706 -0.364058 -0.810828 -0.520716 0.245428 -0.825332 -0.422339 0.796596 -0.232319 0.710890 1.001177 0.221964 -0.130314 -0.377823 0.616259 -0.636158 0.960655 1.197293 -0.589644 0.017499 0.064593 0.265237 -0.037467 0.216664 0.236887 -0.814100 0.273647 -0.712711 0.232186 -0.522469 -0.298533 0.654921 0.708188 -1.308959 -0.109851 0.468470 0.121735 0.088541 0.067689 0.269312 0.458761 0.495058 -0.103197 1.046004 0.462211 -0.091999 0.438165 0.014614 0.283109 0.265638 -0.033724 -0.110837 -0.160635 0.139906 -0.441593 -0.251131 0.184635 0.614977 0.876181 -0.270718 -0.440832 0.146705 0.006496 0.250429 0.333354 0.675994 -0.045885 -0.120240 0.545742 -1.141874 -0.158885 -1.880101 0.206823 -1.826290 -0.620873 0.139613 0.629687 0.418478 0.400586 -0.026238 1.284259 -0.289169 -0.527458 0.672104 0.849720 -0.586988 -0.150350 -0.045941 -0.314566 -0.146666 -0.262188 -0.052188 0.283903 0.365651 -0.661683 -0.587765 0.402101 -0.017042 -0.374522 -0.668523 -0.163664 0.715096 -0.886234 -0.668636 -0.601809 0.575586 -0.023871 -1.015793 0.056192 -0.477430 0.039082 0.371887 -0.814628 -0.552231 0.518636 0.079957 -0.233291 -0.300810 0.017472 0.606571 0.378891 0.155060 -0.045485 0.431272 0.003041 1.111993 0.369873 -0.487082 0.019604 0.412133 -0.114463 0.431300 -0.397508 -0.273580 0.305535 -0.649933 -0.014442 0.043414 -0.469827 -0.246603 0.558160 -0.168697 -0.207404 2.063006 -0.290608 0.852617 0.722784 -0.574930 0.587916 -0.218823 0.358629 0.345206 0.729016 0.322802 -0.925559 -0.637422 0.743754 1.111866 0.396593 -0.810155 -0.696524 0.276635 0.416026 0.084423 0.450320 0.099404 0.143926 -0.410219 -0.007461 0.063089 1.532035 -0.493409 0.073686 0.054527 0.584000 -0.166782 -1.141087 -0.133330 -1.164199 -0.139469 0.200891 0.208184 0.184776 0.893401 -1.575240 0.698983 -0.403394 0.081795 0.519618 0.412328 -0.469770 -1.718893 -0.401149 0.165619 0.794213 -0.022075 0.469731 0.213278 -0.899795 0.113394 0.031249 0.281121 -0.710202 0.901342 -0.234655 -0.465200 -0.091046 0.211526 -0.385730 -0.565324 -0.125392 0.585409 0.720484 -1.041489 0.432646 0.173081 -0.320716 0.233241 0.299719 0.932985 -0.474506 -0.776922 0.564019 -0.425537 -0.444811 -0.247642 -0.280840 0.220668 0.023278 -0.279493 -0.372627 -0.706357 0.797329 -0.257545 0.996854 0.393511 -0.373624 0.690802 -0.143506 -0.576960 -0.313678 -0.338324 0.009708 -0.303060 -0.147084 -0.710156 -0.124709 0.553787 0.664384 0.373210 -0.392462 -0.043787 0.963976 -0.748563 0.195801 0.422031 0.288876 -0.280721 0.458426 0.516336 -0.663397 0.164350 -0.667344 0.205981 -0.518623 -0.120447 0.669842 -0.335729 0.119392 -0.140375 -0.120623 -0.012529 0.329783 0.578063 -0.007310 0.027671 1.081673 0.769657 -0.187962 -0.090971 -0.778773 0.326254 -0.678328 -0.517603 -0.245235 0.629438 -0.623577 -0.240845 0.008857 0.669957 0.536773 -0.340144 -0.441294 0.217681 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -2.891802 -2.157256 -0.831530 -4.864865 2.975021 5.131088 1.417589 -4.425464 -5.246796 -2.082164 2.478199 -6.778387 -3.669341 6.324907 -2.564183 4.469510 6.893796 -0.470016 -3.032624 -2.463981 5.401169 0.297355 8.615815 8.746490 -6.092220 -0.161470 0.955011 3.038036 2.288149 0.538029 2.419876 -4.129327 1.393471 -4.725121 0.435972 -1.960520 -1.372990 1.876477 4.813770 -8.972182 -0.613927 2.668942 -0.414247 -0.026780 0.173396 0.962746 4.848879 5.119653 -0.555316 4.310278 4.681922 0.715506 2.370016 -0.014248 1.658600 -0.057637 1.264452 -0.757663 0.089172 -1.406131 -1.640298 -0.270183 0.645863 6.782952 7.286569 -0.486564 -3.007316 2.023675 1.401734 1.999626 1.863104 5.180996 -0.905901 2.254687 4.099367 -6.970562 0.372680 -10.207852 1.790321 -8.889055 -4.120702 0.812293 3.571673 2.663082 3.501653 -0.000693 9.347232 -1.097095 -3.685176 6.217288 6.697243 -4.191869 -0.981766 -1.444965 -3.414588 0.248455 -2.772502 1.821873 0.471323 3.334600 -5.341623 -3.088736 0.074386 0.981097 -3.748784 -3.632762 -0.596333 4.445040 -5.114569 -3.349372 -1.835396 4.813885 -0.666246 -10.005233 -4.498799 -4.770590 1.784625 0.289886 -4.202183 -4.677184 2.425023 1.624978 -1.398353 -2.668821 -0.255876 3.276540 4.829626 1.687629 -0.875935 3.081488 1.739428 9.013290 1.418278 -3.168487 0.095630 1.357980 -0.585369 2.997316 -2.238590 -0.679985 1.874153 -4.832851 0.640338 3.329976 -2.803347 -2.286386 2.467550 -1.037995 -0.636183 20.723533 -1.584291 6.966275 5.938794 -5.163282 1.319728 -2.347768 1.121150 2.654307 3.376272 2.854177 -8.342105 -4.761927 5.854875 8.730995 3.019751 -6.072200 -0.526555 2.789798 0.752057 -1.703787 3.084187 0.470736 0.225874 -3.161757 -0.923808 3.880535 10.677849 -3.339094 -1.238446 1.295659 4.442774 -0.928960 -4.788207 -0.897557 -5.075154 -0.062073 3.706905 1.740225 3.258469 6.783697 -9.043721 5.079286 -0.136903 0.307203 4.576260 2.325507 -4.831285 -6.168838 -1.377774 2.332477 4.546449 -1.318956 0.667901 1.090980 -7.340192 0.581962 1.724307 0.960043 -4.494652 6.232798 0.179992 -2.745847 -2.518499 1.333124 -2.185782 -1.897451 -2.185186 4.672530 0.037760 -7.448380 5.132992 1.102257 -2.769365 0.321795 -1.704861 6.557630 -4.978217 -5.737951 4.152379 -2.406815 -3.201750 -1.641436 -1.737367 2.510240 2.998223 1.990543 -6.103233 -5.001046 5.475826 -2.159090 7.430156 3.306592 -1.128251 4.116526 -3.844818 -2.640410 -3.945626 -4.338520 1.656497 1.626810 -4.550869 -3.902614 -1.614286 4.809283 4.634263 -0.501311 -4.160575 -0.491546 6.111389 -5.430574 -0.263148 1.352310 3.124846 -5.053365 2.221698 2.721509 -4.141268 1.725839 -4.543421 -0.414709 -4.564335 -3.727379 5.214372 -0.883128 2.606476 0.118291 -0.336669 0.182434 2.468484 2.889423 0.519106 2.025493 7.183228 5.027557 -1.387948 -1.595727 -7.816637 4.274686 -6.398944 -6.086983 1.145947 0.508878 -3.055705 -1.801803 -1.180650 5.734528 4.340878 -3.021108 -2.934198 2.522517 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 0.063619 0.369438 0.549029 -0.165351 0.411209 -0.082035 0.204243 0.425304 -0.419839 -0.790770 0.004005 -1.019276 -1.118690 0.642523 -0.074063 -0.314444 0.926005 0.097044 0.034593 -0.316299 -0.106015 -0.304128 0.852682 0.932248 -0.800423 0.288585 -0.062356 0.297145 -0.003118 0.548992 0.125771 -0.933337 0.154979 0.426061 0.523366 -0.088651 -0.245574 -0.362222 -0.622439 -1.336843 -0.149566 0.975833 0.073627 -0.002377 0.281429 0.928064 1.167175 0.440496 -0.208704 0.488180 0.272973 -0.167869 0.439460 0.026850 0.197044 -0.495782 0.371934 -0.305990 -0.647018 0.331241 -0.109984 -1.027753 -0.449072 0.583725 0.764744 -0.153799 -0.302875 -0.322547 -0.128221 0.240292 -0.000664 0.460755 0.746010 0.343313 0.613614 0.337515 -0.043403 -0.807538 0.088850 -2.246495 -0.848358 -0.492709 1.362553 0.703597 -0.288490 -0.609589 0.974571 0.055269 0.189248 0.504260 1.127250 -0.200666 -0.324985 -0.297829 -0.107820 0.411853 -0.365348 0.029823 0.293757 0.069011 -0.665516 -0.057711 0.361423 -0.369966 -0.393074 0.384361 -0.217952 0.553347 -1.012101 0.196335 -1.059535 -0.029090 0.643744 -1.036961 -0.052954 0.264741 0.092225 0.586328 -0.359420 0.183734 0.326945 -0.137656 -0.294595 0.236883 -1.138161 0.976397 0.020702 0.104275 0.354737 0.594621 0.534201 0.195406 0.489008 -0.158670 -0.118078 0.214824 -0.101550 0.102690 -0.101112 -0.143638 0.314634 -0.384783 0.164257 -0.247148 -0.468943 -0.390203 -0.968841 -0.293644 0.209435 0.987065 -0.236573 0.584734 0.143341 -0.534418 0.590628 -0.136375 -0.344688 0.016117 0.607047 0.620259 0.170573 -0.297878 0.465467 0.997264 0.333511 -0.596279 0.389647 0.226965 0.118996 -0.285384 0.662163 0.191771 0.380042 -0.358974 -0.084674 0.390335 0.972255 -0.148760 -1.008396 -0.075160 0.189327 0.485051 -0.243720 0.248511 0.295278 -0.057901 0.080473 -0.000484 0.258656 0.745764 -1.615190 0.760167 0.166449 -0.207626 0.615339 -0.111980 -0.286179 -1.007481 0.101215 0.588594 0.753427 0.448645 -0.265651 -0.254016 -0.699383 -0.080784 0.129399 0.320941 -0.405692 0.654987 -0.255131 -0.338054 -0.443136 -1.007571 -0.082032 0.182972 -0.600795 0.286836 0.617898 -1.515512 0.762228 -0.087928 -0.430707 -0.537278 -0.087947 0.163002 -0.675755 -0.805902 -0.096166 -0.766265 -1.494321 -0.476714 -0.464160 -0.039612 -0.007720 -0.186944 -0.164032 -0.554574 1.211891 -0.052459 0.690878 0.511355 0.074582 1.063058 1.117144 -0.590199 0.052521 -0.439778 0.711851 -0.794464 -0.130527 0.458289 -0.428434 0.185901 0.881462 -0.112220 -0.091178 -0.454418 0.567551 -0.307387 -0.570198 0.491100 -0.360750 0.088279 0.841330 0.588432 -0.474534 -0.102626 -0.952987 -0.239111 -0.215916 -0.402748 0.139492 -0.692891 -0.145498 0.533065 -0.323384 -0.592329 0.235674 -0.206702 -0.432698 -0.219099 0.893822 1.033303 -0.840520 0.819531 -0.730479 0.572385 -0.833233 -0.549936 -0.091064 0.062320 -0.120029 -0.215772 -0.039303 -0.029556 0.215079 -0.651555 -0.669646 0.488761 +PE-benchmarks/shortest-common-supersequence.cpp__superSeq(char*, char*, int, int) = -4.658898 -4.308903 -2.163081 -6.613762 3.952231 8.817217 2.595396 -8.705579 -7.882637 -1.170555 4.461153 -13.261379 -5.045008 9.560842 -4.172410 8.084889 10.798009 -0.544500 -5.961421 -2.875879 6.652370 2.908078 14.178749 14.287928 -7.410837 -0.518147 -1.857886 4.239197 2.256139 -2.125087 3.947622 -4.321354 3.168383 -7.870874 -1.344239 -1.096599 -2.393066 2.918397 8.394947 -13.064032 -0.982301 3.370287 0.876698 -0.052097 0.151514 1.500708 7.097445 7.781513 2.824965 6.151103 4.612754 -0.529091 5.134140 0.388312 3.137338 -0.867661 1.902932 -3.590029 -1.112847 -3.070355 -2.629060 0.684460 0.051923 10.180850 10.686367 1.412125 -5.299055 3.154012 3.363855 2.673775 3.003600 8.117175 -2.823544 5.083448 4.011008 -10.231737 3.046818 -10.065402 2.084739 -8.463252 -6.285914 2.666329 5.718130 5.714582 5.783788 -0.309330 13.942988 -0.885596 -6.688812 8.698176 10.873516 -7.986700 -2.085156 -0.735458 -3.278470 -0.734456 -3.491578 4.563279 1.377126 6.852495 -8.646758 -2.356694 -0.096926 1.424890 -5.071426 -3.957722 0.605643 6.538399 -6.084318 -5.314996 -0.697589 7.439256 -1.013774 -15.286335 -6.328630 -5.988124 1.261623 1.089757 -7.544017 -7.559557 4.136778 1.094298 -1.461219 -3.079891 -2.795524 4.056241 7.051860 2.333665 -1.745791 7.639888 2.898144 15.356496 -0.954076 -4.716153 1.813802 1.494947 -0.214504 5.722941 -1.785754 -1.953236 -0.159510 -8.643091 1.223272 5.528978 -4.551440 -2.302287 -0.906024 1.591490 -1.921543 29.172581 -2.486183 11.619325 10.160878 -7.849288 1.581446 -5.777038 2.815595 2.552487 3.761703 3.717035 -13.177044 -7.804927 9.629413 14.000898 4.651429 -8.618885 1.848105 4.600442 1.013450 -3.770900 5.082272 1.605603 0.653924 -3.804120 -0.964858 7.035627 16.987249 -5.358931 0.542770 2.403344 2.944719 1.491460 -6.559001 -2.021609 -5.550320 -0.178422 4.900886 4.573686 3.833187 10.135414 -8.469944 8.196864 0.601941 1.545564 9.120291 3.862279 -8.753717 -6.324055 -4.192103 3.860054 6.016666 -2.723668 -2.248318 1.485478 -10.950702 0.518369 3.578340 0.931754 -6.039602 9.100617 0.623211 -3.397439 -2.964000 2.253600 -2.481895 -2.345757 -3.642607 8.032979 -0.382152 -7.938034 7.487157 3.372112 -4.929625 0.292380 -3.839521 9.413607 -6.896187 -7.390657 5.642380 -4.917351 -5.626724 -2.151507 -2.378066 2.295990 4.885608 4.152320 -10.091093 -4.711627 9.618690 -3.140522 11.812281 4.824008 -2.201412 4.314105 -5.374749 -5.663272 -3.653104 -9.005070 1.155149 3.455417 -7.346037 -2.964168 -2.055693 7.701896 6.212620 -0.407717 -8.019419 0.373685 8.248175 -7.509726 -1.013090 2.255981 2.475073 -8.679903 2.516655 4.052875 -6.269240 4.204718 -5.610429 -2.330116 -8.104372 -5.520386 7.515487 -0.468793 4.050904 -1.380753 -1.267462 1.746851 3.755305 4.167232 1.578976 5.134938 11.700558 4.338127 0.316676 -2.459532 -12.603557 7.047535 -9.276381 -9.335868 3.205461 2.404746 -5.186537 -3.296923 -1.003495 8.360936 6.967909 -8.252906 -5.839291 4.941792 +PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/shortest-common-supersequence.cpp__main = 0.125885 0.538045 1.128145 -0.499148 0.573425 -0.079353 0.210945 0.472905 -0.689311 -1.040459 0.120659 -2.029767 -1.713877 0.904336 -0.208349 -0.797676 1.212626 -0.138679 -0.084724 -0.553977 -0.331992 0.345788 1.247261 1.379305 -1.191528 0.419014 -0.606574 0.582039 0.096443 0.575966 0.443001 -1.488186 -0.165473 1.216628 0.638864 0.406088 -0.428067 -0.592243 -0.904761 -1.770011 -0.235538 1.913876 0.133145 -0.071768 0.638703 0.816175 1.784633 0.597401 -0.029958 0.445666 0.426021 0.007571 0.807054 -0.076389 0.395658 -1.129056 0.950642 -1.056191 -0.840209 0.429014 -0.129778 -0.878192 -0.868005 0.990359 1.065349 0.107626 -0.694779 -0.830523 0.073917 0.309392 0.039888 0.819524 1.193291 0.962154 0.861661 1.254347 0.254339 -0.758970 0.533106 -2.061143 -1.266740 -0.439273 2.146270 1.551854 -0.693305 -1.152622 1.420213 -0.008756 0.080361 0.913677 1.636836 0.067838 -0.382109 -0.298144 -0.469952 0.578173 -0.394842 0.368312 -0.449665 0.615951 -0.976535 0.022971 0.280087 -0.745719 -0.618889 1.088978 -0.139418 0.552709 -1.048960 0.692234 -1.135304 0.455484 1.278733 -1.195087 -0.983374 0.149425 -0.246885 0.675174 -0.669064 0.577806 0.457066 -0.687710 -0.624733 0.757164 -2.399405 1.162334 0.210457 0.177604 0.222734 1.009381 0.979417 0.083607 -0.313912 -0.340572 0.035473 0.184868 0.259578 0.209963 -0.026418 0.020175 0.321106 0.107071 -0.122648 -0.517209 -0.597535 -0.768702 -2.413155 -0.476837 0.081214 1.303806 -0.324237 0.725115 0.311055 -0.544817 0.657680 -0.100597 -0.468566 -0.199538 0.619647 1.064509 0.505925 -0.544428 0.941851 1.441600 0.397582 -0.435362 1.291538 0.852695 0.097343 -0.632284 1.275777 0.143643 0.507208 -0.481428 -0.166529 0.704993 1.329033 0.174149 -1.664697 -0.141935 0.438604 1.169607 0.567224 0.526872 1.094154 -0.076763 0.286627 0.204122 0.636574 1.067139 -2.263284 1.050994 0.797120 -0.150546 0.923757 -0.352650 -0.570233 -0.546880 0.039721 0.778881 0.942070 0.794105 -0.489133 -0.524240 -1.017364 -0.077660 0.228864 0.356581 -0.673871 1.025509 -0.396198 -0.414280 -0.549298 -1.832456 -0.425547 0.675909 -1.371691 0.456014 0.895977 -1.672859 1.145038 0.251600 -0.297039 -1.223504 -0.633593 0.207848 -0.897922 -0.927545 -0.331568 -1.462112 -2.398063 -0.511283 -0.746323 -0.366747 0.081061 0.331146 -0.708339 -0.308239 2.146048 0.037022 1.230372 0.775524 -0.057491 0.830873 1.950959 -0.628632 0.484622 -0.884883 1.481307 -0.564064 -0.357468 1.162457 -0.736954 0.032364 1.003809 -0.560706 -0.432764 -1.009979 0.623971 -0.135659 -0.911429 0.417488 -1.162856 -0.032082 1.199343 0.644638 -0.398684 0.183773 -1.565608 -0.485672 -0.680333 -0.557297 0.238020 -0.685061 -0.233918 0.783258 -0.716506 -0.978167 0.202890 -0.337296 -1.002239 0.028448 1.349446 1.104948 -0.680780 1.512254 -1.292410 0.897035 -1.035902 -0.798393 -0.015800 -0.711286 -0.441600 -0.562450 -0.402834 -0.009000 0.602680 -0.674065 -1.191340 1.219523 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__minInitialPoints(int (*) [3]) = -4.979442 -3.724387 -1.751666 -9.453678 5.546534 12.689268 3.569353 -10.528207 -10.854819 -3.597914 5.972441 -18.378613 -7.174342 13.089679 -4.950766 10.440132 14.976625 -1.390238 -8.063317 -3.578935 8.300442 5.678146 18.907286 18.901780 -10.929672 0.949378 -2.182918 2.597852 4.058354 -0.461172 4.172822 -9.009186 5.834034 -8.581201 -1.015064 -1.440918 -4.668415 2.076356 10.944679 -18.267148 -0.596391 7.085210 0.246592 -1.000683 1.273586 2.924822 12.027096 9.982283 3.289522 8.295950 6.067129 1.169545 6.049269 0.211191 5.435682 -0.823793 3.760557 -6.417087 -1.614834 -4.146800 -3.438815 0.847392 -1.704119 13.737225 13.334976 0.393508 -7.450616 3.730044 4.904410 2.901522 3.696521 10.913425 -0.555330 6.800206 5.181145 -12.388414 3.601409 -11.427020 2.524488 -15.189358 -9.296915 3.486066 8.930486 8.255379 7.287821 -4.407618 18.625526 -3.051482 -8.246082 9.773921 15.419287 -10.978888 -2.472043 -0.925489 -2.893117 -1.116991 -4.897567 5.107093 0.919778 4.916897 -12.087111 -2.949017 0.874117 1.753710 -7.491934 -4.143209 1.454184 8.548617 -10.279517 -6.045207 -1.376437 9.879282 -0.636364 -20.518728 -7.870112 -6.958759 1.086110 1.654824 -10.457582 -10.576476 5.748871 1.789110 -2.964550 -5.235484 -5.256493 7.541694 10.018464 4.759867 -1.676328 9.471956 5.699949 20.815416 0.250339 -6.313693 3.090390 0.919505 1.182840 7.755308 -1.302141 -2.715108 -0.261262 -10.391999 0.009408 8.123159 -6.395438 -0.949240 -1.585034 1.601712 -3.142875 40.079421 -4.520388 16.170059 13.095491 -11.315356 1.077799 -7.739826 1.500830 2.203491 5.094734 7.239048 -17.752200 -9.808091 13.545611 19.158474 6.394474 -12.148450 5.229626 6.340000 0.668127 -5.611178 7.343263 0.715169 3.905958 -7.767348 -2.063645 9.303275 24.533128 -7.340275 0.066839 2.465341 3.865887 3.109329 -6.409386 -2.322023 -6.475560 0.848873 7.562375 5.017545 6.312891 13.900742 -12.279198 11.624976 -0.533530 -1.077250 12.299310 5.802996 -11.615629 -7.161351 -5.649648 5.884164 9.049243 -3.312122 0.037589 1.387469 -14.815716 -0.065367 3.630437 0.437549 -8.635297 11.369343 3.128825 -5.185121 -3.420214 1.611325 -2.227889 -3.242353 -5.736487 10.483518 1.980769 -13.123083 11.050998 5.408509 -6.172775 -0.820279 -5.035079 13.133747 -9.686147 -9.660320 7.121219 -7.020808 -9.267911 -1.572533 -4.085180 3.229441 5.712602 6.603013 -13.915418 -8.312654 14.208103 -2.948550 16.598806 7.350547 -2.559959 6.857294 -6.783267 -5.719844 -4.686159 -14.186964 3.270983 3.808090 -9.813163 -2.509063 -4.325697 10.121784 8.538278 -1.762887 -10.639763 -1.164474 9.240925 -12.359153 1.024348 3.394201 6.306286 -12.276034 3.351808 5.983610 -7.269651 5.755023 -8.119144 -4.296469 -11.577953 -7.137063 10.161563 -0.318546 5.281464 -0.501437 -1.995201 0.330427 4.392613 3.780260 -0.607031 6.435631 14.341450 8.398122 -1.175913 -2.438826 -16.507505 10.310125 -12.592586 -13.590019 4.947284 1.105410 -8.326279 -5.714173 -1.945513 11.398803 9.457102 -9.481865 -7.554305 7.741770 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::max(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 0.096378 0.356468 0.514100 -0.144475 0.270083 -0.165496 0.120410 0.432458 -0.288260 -0.704258 -0.028516 -0.849126 -0.943639 0.448437 -0.091842 -0.450305 0.663884 0.061343 0.051466 -0.251426 -0.220393 -0.157036 0.586727 0.669587 -0.633344 0.222288 -0.125651 0.279899 0.005915 0.462963 0.213649 -0.792421 0.018160 0.630505 0.510906 0.006754 -0.169582 -0.335283 -0.730432 -1.015014 -0.123184 0.927983 0.155530 0.007875 0.293752 0.743883 0.927060 0.305524 -0.162494 0.280506 0.213898 -0.019596 0.359041 -0.009211 0.106493 -0.554818 0.338811 -0.424636 -0.524740 0.301349 -0.047074 -0.813952 -0.418987 0.460337 0.568434 -0.091970 -0.207235 -0.412640 -0.093595 0.225897 -0.023150 0.329219 0.617946 0.343261 0.423238 0.560403 0.025081 -0.463983 0.167544 -1.734460 -0.639609 -0.437445 1.178603 0.806413 -0.423766 -0.573729 0.715399 0.090104 0.221355 0.408408 0.855717 0.042359 -0.244279 -0.252453 -0.116621 0.403550 -0.268057 0.011418 0.108949 0.190284 -0.471991 0.103376 0.171575 -0.389052 -0.291659 0.520645 -0.191522 0.371850 -0.814093 0.359928 -0.817678 0.007610 0.677003 -0.767980 -0.087922 0.207011 -0.067747 0.431184 -0.231116 0.362725 0.220895 -0.216678 -0.242935 0.412767 -1.250719 0.767612 -0.071583 0.031971 0.257733 0.494907 0.444782 -0.085734 0.209430 -0.114703 -0.112927 0.176447 -0.030003 -0.007335 -0.064431 -0.051466 0.257483 -0.214364 0.141737 -0.314383 -0.341435 -0.399076 -1.173112 -0.313092 0.212125 0.565693 -0.197262 0.401701 0.046535 -0.340492 0.443455 -0.009491 -0.310976 -0.044263 0.425310 0.503947 0.449525 -0.187704 0.322795 0.733691 0.225066 -0.256316 0.489166 0.234533 0.032212 -0.242830 0.566373 0.133069 0.221369 -0.235909 -0.086064 0.296864 0.562203 0.090822 -0.795893 -0.129681 0.216773 0.451922 0.094115 0.289356 0.415552 -0.023723 0.056406 -0.010476 0.222119 0.539202 -1.261817 0.591156 0.324508 -0.088251 0.412773 -0.231332 -0.158461 -0.761451 0.128026 0.472794 0.558041 0.327327 -0.255049 -0.240036 -0.495924 -0.069234 0.110635 0.287074 -0.319064 0.455110 -0.201167 -0.202936 -0.362972 -0.943302 -0.091512 0.283783 -0.590210 0.163074 0.534778 -1.109319 0.606600 -0.114166 -0.299223 -0.583580 -0.115746 -0.017499 -0.540453 -0.552422 -0.218570 -0.644287 -1.328223 -0.387340 -0.396204 -0.070789 -0.092165 -0.113261 -0.094022 -0.299220 0.978438 -0.035419 0.473858 0.384234 0.081477 0.759425 1.094554 -0.374824 0.170032 -0.347761 0.645392 -0.672905 -0.046994 0.643962 -0.335902 0.024198 0.675397 -0.166853 -0.083950 -0.317914 0.386759 0.017834 -0.542551 0.316427 -0.606276 0.157320 0.718453 0.404515 -0.337174 -0.101885 -0.847045 -0.155793 -0.119004 -0.302241 0.062256 -0.555136 -0.147583 0.479112 -0.281612 -0.587325 0.170078 -0.201195 -0.452265 -0.141407 0.689211 0.640767 -0.583957 0.838416 -0.561104 0.428153 -0.624832 -0.359235 -0.143867 -0.072506 0.001524 -0.153813 -0.145708 -0.102784 0.154536 -0.422513 -0.549763 0.489388 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -2.077407 -2.409685 -0.694742 -3.290358 1.639575 3.030475 1.155902 -3.303693 -4.247135 -1.369991 2.009925 -5.435594 -1.896517 4.585394 -1.630056 3.927351 5.306021 0.263324 -2.391368 -1.612633 3.555783 0.076616 6.041694 6.605961 -3.582244 -0.012976 -0.249753 1.773815 1.542589 -0.077444 1.790240 -2.623815 1.313780 -3.782791 0.131406 -1.683038 -1.318113 2.214464 4.220458 -6.638863 -0.219602 2.217911 0.951533 -0.104758 0.353611 0.724506 2.870116 3.507205 0.296624 3.699944 2.749730 -0.053165 2.206561 0.049708 1.475378 0.394619 0.992784 -1.098096 -0.286300 -0.731985 -1.348258 -0.029320 0.621427 4.476576 5.075495 -0.257273 -2.461347 1.206341 1.754816 1.354578 1.778319 3.694839 -1.161354 1.104603 2.259878 -5.688499 0.733626 -7.106128 1.365128 -6.242259 -3.094373 1.374952 3.156446 2.304113 2.559810 -0.255975 6.449434 -1.211836 -3.139848 3.799979 4.601008 -3.233342 -0.844527 -0.419626 -1.831801 -0.086036 -1.775507 1.065388 0.943956 2.541435 -3.832376 -1.804640 0.742549 0.683268 -2.457374 -2.166261 0.099637 3.386222 -3.493719 -3.008484 -0.819711 3.830352 -0.464987 -6.673539 -1.912670 -3.427045 0.354742 0.672056 -3.781034 -3.399059 2.044722 0.459119 -1.125269 -1.688636 -1.059737 2.445167 2.988962 1.353506 -0.829034 2.622794 0.922644 6.575690 0.549083 -2.698422 0.791012 1.190041 -0.317604 2.598994 -1.677675 -1.278490 0.899292 -3.674137 -0.043306 1.957665 -2.274744 -1.073090 1.429161 0.295625 -1.062826 13.702463 -1.169380 5.344831 4.814436 -3.333839 1.449657 -1.670439 1.441459 1.660171 2.435406 1.795574 -6.201912 -3.502779 4.130445 6.415194 2.304103 -4.244708 -0.949896 1.984244 0.736308 -0.806056 2.386195 0.320816 0.572631 -2.473521 -0.497950 2.315543 7.844326 -2.334211 -0.045170 0.535895 2.378406 -0.466561 -4.160820 -0.785389 -4.125315 0.041304 1.873619 1.520233 2.015438 4.732749 -6.072956 3.960706 -0.433416 0.448837 3.981043 1.980432 -3.795924 -5.218041 -1.967957 1.229014 3.553969 -1.222191 0.395305 1.285957 -5.224231 0.281060 0.905933 0.437945 -3.230277 4.337837 0.105264 -1.584109 -0.994662 1.301184 -1.335387 -1.952758 -1.278417 3.680709 1.185784 -4.125291 3.006122 1.152114 -2.048050 0.622099 -0.875280 4.626348 -3.199126 -3.385750 2.759348 -1.757194 -2.320749 -1.343967 -1.262456 1.546484 1.638058 1.259065 -3.937314 -3.115884 4.104212 -1.791548 5.604303 2.333502 -1.647537 2.341721 -1.798881 -1.976809 -2.169253 -3.073055 0.083633 0.857743 -2.780018 -2.977848 -1.093346 3.461515 3.018368 0.112889 -3.081614 -0.203747 4.315821 -4.102283 0.186694 1.188352 1.489165 -3.381851 1.573228 2.052590 -3.409823 1.856630 -2.929447 -0.567137 -3.207757 -1.828653 4.033182 -0.259839 1.809738 -0.830296 -0.489225 0.544323 1.683569 2.311453 0.074551 1.747590 5.433410 3.094118 -0.163492 -1.136508 -5.418448 2.815921 -4.238683 -3.864576 0.551625 1.253265 -3.211646 -1.275673 -0.317354 4.173131 3.333872 -2.601071 -2.504224 2.179244 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__finalCount(int, int) = -0.953017 -1.355864 -0.619946 -1.314461 0.737773 0.649780 0.668828 -1.059868 -2.166640 -0.812541 0.884114 -2.495687 -1.017166 2.282495 -0.584401 1.842202 2.816215 0.521648 -0.813446 -0.991907 1.558598 -0.581388 2.781950 3.265206 -1.690488 0.039828 -0.257930 0.320100 0.627691 0.019334 0.774085 -1.624418 0.939602 -1.673956 0.567367 -1.198792 -0.651636 1.358182 1.922036 -3.449964 -0.046093 1.351566 1.126424 -0.038004 0.237557 1.598501 1.284918 1.656510 -0.159475 2.178903 1.278852 -0.225837 1.135290 0.092991 0.683427 0.287309 0.102827 -0.174117 -0.446293 0.056116 -0.736406 -0.335190 0.274825 1.917778 2.574213 -0.472733 -1.150760 0.452289 0.830459 0.724298 0.977522 1.645337 0.261005 -0.128781 1.234203 -2.548029 -0.270402 -4.222502 0.536612 -5.097299 -1.479447 0.503328 2.064402 0.510991 0.932950 -0.679196 3.100024 -0.417401 -1.374876 1.721686 2.207751 -1.503136 -0.583024 -0.294301 -0.657137 0.027482 -0.905598 0.282542 1.514013 0.774952 -1.912279 -1.067865 0.568016 0.079241 -1.102849 -1.221697 0.023837 1.635457 -1.818066 -1.329195 -0.953997 1.612991 0.027076 -3.017852 0.334658 -1.609127 -0.209392 0.603575 -1.913992 -1.237094 1.021849 -0.028972 -0.866473 -0.717112 -0.859687 1.683092 1.080173 0.657734 -0.220411 1.225692 0.237002 2.813422 0.412196 -1.570844 0.286517 0.851296 -0.366177 1.214561 -1.296501 -0.953785 1.660707 -1.823553 0.049246 0.081308 -1.232076 -0.362331 1.454333 0.019183 -0.414384 5.366942 -0.623478 2.502581 2.089488 -1.486816 1.281690 -0.638517 0.854927 0.865466 1.794151 0.637546 -2.326313 -1.708611 1.763436 3.042847 1.195167 -2.174112 -0.955529 0.776239 0.565227 -0.283300 1.076872 0.195233 0.276698 -1.219831 -0.135409 0.612239 3.785267 -1.150522 0.675215 -0.104744 1.804555 -0.222192 -2.205549 -0.339633 -2.474581 0.011545 0.337573 0.749151 1.030541 2.304751 -3.678557 2.030278 -0.710028 0.313042 1.538849 0.992806 -1.702530 -3.786639 -0.877551 0.445167 2.095912 -0.257205 0.688052 0.814921 -2.477102 0.158078 0.025044 0.393359 -1.551317 1.942115 -0.257953 -0.693452 -0.254529 0.590055 -0.703528 -1.195960 -0.299200 1.690400 1.711192 -2.434348 1.234550 0.238378 -1.038301 0.195993 0.173956 1.945683 -1.593168 -1.555247 1.076799 -0.872532 -1.240120 -0.968445 -0.653435 0.800651 -0.131005 0.253857 -1.328915 -2.049163 2.415276 -0.966931 2.709169 1.122552 -1.029247 1.460241 -0.486339 -1.164225 -1.038040 -1.430923 -0.299198 -0.341480 -0.923933 -0.638125 -0.477396 1.566902 1.571821 0.385672 -1.250057 0.098417 2.214549 -1.926994 0.227695 0.905183 0.744492 -0.940533 1.217611 1.250209 -2.065426 0.679051 -1.599856 -0.128739 -1.162991 -0.622157 1.910186 -0.510482 0.726832 -0.606416 -0.158960 0.205171 0.867710 1.114180 -0.359403 0.510967 2.880809 1.851321 -0.449241 -0.307840 -2.417246 1.272224 -1.963668 -1.592079 -0.211617 0.880527 -1.818539 -0.368532 0.064642 1.801596 1.372004 -1.140782 -1.565687 1.007288 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = -0.100111 0.058405 0.303929 -0.166048 0.410795 -0.040326 0.257559 0.095263 -0.500300 -0.545786 0.115602 -0.785165 -0.746341 0.693094 -0.079307 0.191924 0.922529 0.182357 -0.034838 -0.315583 0.215758 -0.542744 0.903160 0.927139 -0.652175 0.182132 0.063476 0.246719 0.049768 0.399699 -0.070319 -0.602965 0.350577 -0.246804 0.263530 -0.298140 -0.168501 -0.058706 -0.047314 -1.164104 -0.071699 0.453544 0.061453 -0.022160 0.053480 0.806067 0.839325 0.491120 -0.152774 0.634283 0.299883 -0.343847 0.332894 0.121485 0.263307 -0.111634 0.277241 -0.006683 -0.542015 0.189562 -0.182585 -0.912009 -0.184599 0.513247 0.771346 -0.174464 -0.235196 0.044366 -0.134913 0.187781 0.158900 0.383731 0.448528 0.080588 0.583334 -0.396745 -0.076437 -1.124633 -0.158622 -2.105142 -0.706710 -0.277027 0.956227 0.120388 0.125100 -0.196875 0.884950 0.029473 -0.031410 0.378829 0.984809 -0.546797 -0.341983 -0.180901 -0.055353 0.213450 -0.397111 0.030557 0.517425 -0.041139 -0.642455 -0.280708 0.548759 -0.086874 -0.322347 -0.090197 -0.135103 0.595214 -0.909124 -0.265041 -0.863066 -0.081232 0.220888 -0.966385 0.229631 0.104041 0.404831 0.503386 -0.402199 -0.225008 0.342912 0.102386 -0.211170 -0.174357 -0.446285 0.786512 0.105440 0.209216 0.289215 0.412292 0.310576 0.617323 0.683079 -0.229146 -0.067955 0.173500 -0.266665 0.277063 -0.190084 -0.318619 0.348083 -0.552967 0.128368 -0.036956 -0.460647 -0.219044 0.052503 -0.031043 0.127152 1.094877 -0.143007 0.621545 0.303514 -0.584138 0.495887 -0.293999 -0.095893 0.150910 0.617342 0.364692 -0.346167 -0.413756 0.459850 0.898192 0.391357 -0.860319 -0.143175 0.044620 0.258553 -0.104214 0.382306 0.232393 0.334340 -0.416567 -0.043022 0.278744 1.155017 -0.454873 -0.631700 0.086744 0.004813 0.162103 -0.834386 -0.005573 -0.124341 -0.033092 -0.052995 0.043297 0.157274 0.756104 -1.452654 0.689546 -0.241380 -0.199518 0.639111 0.126497 -0.398218 -1.140431 -0.045156 0.441554 0.719941 0.359925 -0.070193 -0.005964 -0.697302 -0.051926 0.022351 0.229961 -0.320056 0.598368 -0.179431 -0.407604 -0.374243 -0.480127 0.006110 -0.105657 -0.201923 0.385335 0.508092 -1.421173 0.607869 -0.064793 -0.444053 -0.112895 0.095643 0.404033 -0.593555 -0.793205 0.171457 -0.567438 -0.932021 -0.484035 -0.251830 0.067827 0.000537 -0.297477 -0.133170 -0.630711 0.907670 -0.168483 0.659646 0.410677 -0.013602 0.991966 0.538145 -0.605755 -0.218903 -0.183764 0.240445 -0.700046 -0.201159 -0.027861 -0.279380 0.424809 0.770083 0.107612 -0.047649 -0.230037 0.658567 -0.690657 -0.374919 0.577826 0.272643 -0.084471 0.666446 0.620444 -0.593369 -0.067465 -0.601536 -0.276627 -0.219844 -0.369869 0.262360 -0.503513 0.008622 0.249028 -0.129080 -0.260182 0.260076 -0.035907 -0.136087 -0.221614 0.870035 1.210367 -0.760601 0.289291 -0.650038 0.432576 -0.779367 -0.595163 0.044069 0.407804 -0.323214 -0.109835 0.178544 0.211390 0.223812 -0.664040 -0.509641 0.210128 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::Graph(int) = -0.886871 -0.353017 0.767178 -1.783412 1.162852 0.995514 0.410560 -0.848063 -1.389678 -1.018199 0.615275 -1.692805 -2.233590 1.857005 -0.732418 0.245240 1.180535 -0.765547 -0.888833 -1.231136 1.149372 -0.763242 2.130421 1.889254 -2.224627 0.037407 0.101549 1.481186 0.369871 1.118776 0.558282 -0.957366 -0.791572 0.322133 1.440981 0.537627 -0.555454 -0.048229 -0.216505 -2.469148 -0.400903 2.355885 0.393642 0.063368 0.382942 0.544310 1.484941 1.397248 0.112313 0.749775 1.513490 -0.208230 1.396938 -0.301156 1.203996 -0.464769 1.912759 -0.270240 0.003629 -0.066071 -0.674896 -0.346056 0.109076 2.011536 2.134391 -0.659266 -1.068819 -0.334929 0.157511 1.216118 0.360379 1.714488 -0.116849 0.616049 1.745560 -0.498202 0.635133 -2.231303 1.250257 -2.368168 -1.583015 -0.045413 1.320372 1.700051 0.331098 -0.682506 3.176779 0.016607 -1.104992 0.375170 1.701236 -0.088378 -0.043586 -0.372897 -1.274213 -0.092360 -0.607702 0.066458 0.039322 1.393582 -1.574929 0.246495 -0.008691 -0.231418 -1.336363 0.396940 -0.941650 1.421743 -1.071854 0.010450 -1.000993 1.457096 0.503980 -2.910461 -1.080448 -1.563999 -0.729368 -0.067344 -0.867762 -0.027394 0.966174 0.353118 -0.692274 -0.066005 -1.845405 1.805799 1.437511 -0.019921 -0.182868 1.116752 0.356121 1.015353 0.282424 -0.621162 -0.650769 0.724482 -0.269446 0.690223 0.001976 0.379471 0.718355 -0.619811 -0.196263 -0.224526 -0.324728 -0.343018 -1.107959 -0.749597 -0.108865 4.672193 -1.082331 1.772666 0.783706 -0.948689 1.428544 0.419648 0.109870 0.641787 1.173942 0.742509 -1.264409 -1.268969 2.038357 2.466819 0.569046 -1.306027 0.677188 1.105986 -0.004866 -0.873666 1.568050 -0.033170 0.077404 -0.618754 -0.375504 0.187470 2.679102 -0.765686 -2.313946 0.479028 1.248655 -0.118901 -0.632566 0.264718 -0.925206 -0.489129 0.194284 0.421053 1.140751 1.856154 -2.952604 1.621538 0.397448 -0.606102 2.486144 -0.870997 -0.535934 -2.568023 -0.257748 0.330477 1.511726 -0.086827 -0.898480 -0.343271 -2.090822 0.634756 0.060827 0.463797 -1.581240 2.139944 -0.901035 -0.653609 -0.675386 -1.503704 -1.005771 0.338657 -1.618982 0.726364 0.251304 -2.259252 1.628963 0.325285 -0.484548 -0.575251 -0.030336 1.081709 -0.758619 -1.530843 0.521359 -0.989697 -1.603908 -1.359758 -0.941176 0.305390 0.238231 0.027909 -2.069772 -0.816651 2.082945 -1.249009 2.441331 1.017563 -0.231894 0.920019 1.954041 -0.864280 -0.298732 -0.854501 0.772522 0.213425 -1.232039 -0.466484 -0.742961 0.888183 0.922984 -0.221979 -0.234707 -0.894606 1.952432 -0.411230 -0.582716 0.074324 -1.322431 -0.856218 1.212365 0.776571 -0.307633 0.103344 -2.181086 -0.450106 -1.924871 -1.227398 1.424337 -0.373501 0.551350 0.139536 -0.203861 -0.537453 0.304441 0.600804 -0.746823 -0.007201 2.552141 1.203992 -0.967823 0.373363 -2.267286 1.778210 -1.079125 -0.678853 -0.204823 -0.335185 -0.407153 -0.668487 -0.645870 1.278532 1.260447 -1.004509 -1.049320 0.731554 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::addEdge(int, int) = -0.164326 0.331884 0.450107 -0.264187 0.527004 0.590706 0.242617 -0.119605 -0.410527 -0.492845 -0.064848 -0.887586 -0.943390 0.806856 -0.217229 0.252976 1.153778 0.178897 -0.118789 -0.280318 0.314766 -0.259326 1.260686 1.212431 -0.927336 0.186563 0.277930 0.475983 0.071305 0.652928 -0.196768 -0.771066 0.385684 -0.276657 0.288088 -0.401325 -0.185549 -0.210944 -0.077080 -1.556732 -0.155943 0.451956 -0.176537 -0.007302 0.115819 0.448248 1.239375 0.646140 -0.029216 0.504433 0.294081 -0.047873 0.430800 0.130127 0.300084 0.037132 0.475676 -0.289547 -0.484457 0.058847 -0.181542 -0.949825 -0.238634 0.816049 1.006179 -0.042053 -0.276699 0.057121 -0.183261 0.132910 -0.002605 0.600411 0.326987 0.537521 0.592142 -0.547811 0.192863 -0.903189 -0.100729 -1.660822 -0.837275 -0.579908 0.653839 0.471930 0.414948 -0.207579 1.255804 -0.059976 0.132561 0.404428 1.298107 -0.898381 -0.278445 -0.348565 -0.077224 0.227173 -0.497978 0.108263 0.129249 -0.054671 -0.760052 -0.563051 0.552367 0.033816 -0.511060 -0.057575 -0.224935 0.751796 -1.059194 -0.465316 -1.066060 -0.151156 -0.053566 -1.356959 -0.205103 0.024186 0.471496 0.479771 -0.349678 -0.710050 0.389677 0.470976 -0.088781 -0.444295 -0.432986 0.889278 0.413544 -0.063726 0.272787 0.483841 0.393248 1.064241 0.809088 -0.158857 -0.158589 0.267679 -0.392360 0.088566 -0.242868 -0.147495 0.002098 -0.763372 -0.031841 0.500667 -0.538004 -0.087995 -0.236702 -0.223312 0.318292 2.197603 -0.255340 0.639053 0.379791 -0.952312 0.475534 -0.385870 -0.290319 0.162458 0.584383 0.713420 -1.032760 -0.528170 0.527964 1.187139 0.449544 -0.861966 0.096608 -0.067078 0.185379 -0.299788 0.504540 0.264725 0.245007 -0.514608 -0.093038 0.470217 1.577414 -0.641029 -0.887849 0.206534 -0.128492 0.094844 -0.847071 -0.052924 -0.151683 -0.133772 0.158313 0.030641 0.207726 0.959184 -1.348457 0.862491 -0.169163 -0.444669 0.945579 0.010591 -0.372971 -0.602222 0.107303 0.759529 0.793835 0.213331 -0.127073 -0.204822 -0.975013 -0.073344 0.184665 0.436078 -0.496987 0.823542 0.056660 -0.707374 -0.599708 -0.521847 0.060607 -0.332889 -0.440527 0.458587 0.263608 -1.606895 0.968569 0.048525 -0.492582 0.119028 -0.154598 0.556854 -0.877131 -1.076542 0.375662 -0.475918 -0.849761 -0.302191 -0.327481 0.290055 0.309305 -0.124220 -0.599615 -0.796863 0.891601 -0.016220 0.739850 0.548455 0.231097 1.039302 0.381999 -0.706836 -0.345333 -0.497444 0.354741 -0.408263 -0.375856 -0.308837 -0.408021 0.663596 1.218997 -0.041182 -0.147699 -0.384453 0.831957 -0.902941 -0.365608 0.566210 0.398956 -0.363527 0.385661 0.648253 -0.574672 -0.263311 -0.623105 -0.274663 -0.295733 -0.660089 0.352378 -0.817783 0.048266 0.569489 -0.268365 -0.408865 0.374726 -0.009136 -0.075102 -0.103070 1.009564 1.081055 -0.734119 0.360547 -0.857581 0.591656 -1.117721 -0.723980 0.104760 0.202570 -0.224904 -0.181987 0.152537 0.356470 0.301226 -0.624119 -0.403787 -0.036241 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclicUtil(int, bool*, bool*) = -1.698543 0.274841 2.188750 -3.864650 2.585977 3.698499 1.074196 -1.948700 -3.749323 -3.507031 0.859288 -6.721344 -4.960360 5.275849 -2.126974 1.607670 6.967449 0.091219 -1.823553 -2.002239 3.381912 -0.128506 7.635182 8.157780 -6.064607 0.313697 0.513045 3.701355 1.810084 1.568113 1.813126 -4.474382 0.818066 -1.822977 1.586619 -1.820034 -1.021557 0.301714 0.958246 -9.223007 -0.886471 3.325218 -1.310251 -0.049700 0.895011 1.223557 6.629862 4.335419 -0.766256 2.691509 3.433684 0.935690 2.410091 0.100522 0.889844 -1.113036 1.374930 -2.504805 -1.162310 -0.060656 -1.056567 -2.948098 -0.137138 6.205654 6.558114 0.225224 -2.393252 0.522997 0.901138 1.139263 0.792754 4.452307 1.008177 3.357172 3.758606 -4.776098 0.880611 -8.292369 1.618661 -8.196087 -4.755011 -1.577538 4.463003 4.738349 1.764264 -1.753179 8.237886 -0.909945 -1.037631 5.964546 7.333619 -3.806530 -1.169874 -2.711103 -2.695721 1.230983 -2.748467 1.420034 -1.652839 2.794970 -4.712869 -2.927440 1.034637 -0.038925 -3.406829 -1.366004 -0.816906 4.440510 -5.333347 -2.152863 -3.868414 2.952717 0.674548 -8.631837 -3.145984 -2.876211 2.177573 1.363970 -3.067687 -3.408119 1.960854 1.532561 -1.179020 -1.277254 -4.339609 4.523030 3.493021 0.330352 -0.132899 3.354899 2.420677 6.237989 1.871328 -2.154895 -0.396174 1.549946 -1.225984 1.095855 -2.171619 -0.327989 1.668280 -3.657342 -1.457055 2.709850 -2.963165 -2.350535 -1.400952 -1.915486 0.865048 17.228832 -1.279548 4.846367 4.035144 -4.954935 2.746142 -1.587990 -0.519462 1.611266 3.037659 4.095307 -7.730794 -4.023780 4.418174 7.836120 2.662374 -4.340264 0.724588 1.846932 0.418891 -2.002370 3.419234 0.833339 0.280945 -2.913645 -0.872479 3.988196 9.505360 -2.167055 -2.718958 0.804101 2.079741 0.428553 -4.081651 -0.095204 -1.608013 -0.441160 2.880615 1.080523 2.803845 6.255137 -8.545177 4.937032 0.488460 -0.317127 4.037215 0.493468 -3.436914 -4.766323 -0.102852 3.718011 4.382060 -0.019584 -0.054547 -0.414233 -6.484068 0.075567 1.791393 2.070673 -3.824547 5.483366 -0.036567 -3.145242 -3.247187 -1.486835 -2.235825 -1.000449 -3.142702 3.577123 0.745023 -6.748292 5.826334 0.573849 -2.169366 -0.270529 -2.496623 5.111720 -5.407483 -5.789917 2.877736 -2.835715 -5.159964 -1.893120 -2.055754 2.036696 2.047083 0.317980 -5.137372 -4.859389 5.811828 -0.983715 5.940373 3.309739 0.120660 4.825923 1.223830 -2.669334 -2.534839 -4.544683 2.785647 0.427262 -3.541086 -2.580013 -2.024317 3.673837 5.967889 -1.427202 -2.935639 -0.995771 5.239634 -4.663726 -2.115928 1.689320 0.905754 -3.553172 2.398092 2.768853 -3.818776 0.234208 -5.138797 -0.286436 -2.972603 -3.845910 3.387623 -2.771865 1.186083 2.221241 -1.179624 -1.482685 2.341066 1.594717 -0.430777 1.134518 7.012587 5.413981 -1.787256 0.917691 -6.894523 3.964215 -6.703761 -5.291968 0.437869 0.337075 -1.622061 -1.560550 -0.580672 3.753659 3.472115 -2.606988 -2.789756 2.107471 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -1.299535 -0.551460 0.373319 -2.551202 1.797076 2.475136 0.878769 -1.451014 -3.136410 -1.760068 0.713834 -4.127050 -2.508772 3.805194 -1.131962 2.164621 4.958346 0.552532 -1.372065 -1.106286 2.805515 -1.047070 4.955503 5.585340 -3.676035 0.302672 0.430739 1.875993 0.826425 1.449342 0.625647 -2.896547 0.819180 -2.447885 0.972581 -2.135702 -0.922332 1.060114 1.796097 -6.473728 -0.351772 2.159568 0.001224 -0.104546 0.341488 1.219389 3.838840 2.914226 -0.709004 2.490326 2.231232 0.133658 1.643159 0.131012 0.985740 0.481333 0.694647 -0.249128 -0.711980 -0.074703 -0.972952 -1.655061 0.503063 3.858496 4.431209 -0.269997 -1.710605 0.713258 0.667217 0.760570 0.850822 2.910644 0.161806 1.116247 2.403944 -4.081376 0.377686 -6.248970 1.041886 -6.709858 -2.886735 -0.499673 2.825867 2.194015 1.796235 -1.055685 5.659746 -1.121668 -1.121982 3.708012 4.569697 -2.943617 -0.827094 -1.627055 -1.884960 0.470043 -1.636577 0.243156 0.578063 1.232359 -3.237422 -2.275240 0.962954 0.437163 -2.236649 -1.599056 -0.434109 3.084481 -3.672740 -2.269917 -2.373867 2.071540 -0.206348 -5.829993 -1.327193 -2.283517 0.693086 0.893477 -2.546873 -2.966940 1.575426 1.197045 -1.005681 -1.384056 -1.640051 3.175296 2.047475 0.425171 -0.060281 1.690562 1.099931 4.640994 1.669971 -1.905605 -0.001404 1.317107 -0.988202 1.054368 -1.818540 -0.869414 1.427266 -3.211036 -0.700235 1.554233 -2.146431 -0.693568 0.971402 -0.770467 0.201173 12.065531 -1.037348 3.786313 2.863444 -3.443289 2.442024 -0.788003 0.101205 1.392648 2.531098 2.244557 -5.608987 -2.776957 2.891527 5.380585 2.010380 -3.442267 -0.786797 0.874028 0.435033 -0.544199 1.986845 0.323316 0.274903 -2.146903 -0.570100 1.932307 7.019268 -1.890832 -1.108487 0.531447 1.826164 -0.661459 -3.851274 -0.379879 -3.114661 -0.215291 1.237715 0.462780 1.930610 4.263518 -6.179783 3.564061 -0.820830 -0.455505 2.954356 0.795056 -2.332020 -4.752262 -0.684476 2.026963 3.528008 -0.326434 0.236023 0.304774 -4.394135 0.054017 0.864747 1.199231 -2.758524 3.786292 -0.126433 -2.173519 -1.617294 -0.096004 -1.383864 -1.612131 -1.430965 2.571817 0.809977 -4.554268 3.415911 0.540555 -1.538916 0.496017 -0.540477 3.112304 -3.381943 -3.926909 2.233995 -1.180715 -2.437723 -1.203857 -1.332979 1.763203 1.234388 -0.295409 -3.091591 -4.085154 3.612680 -1.077786 4.274944 2.214361 -0.476785 3.203367 0.376487 -1.915171 -2.200197 -2.644713 0.711603 -0.162383 -1.995132 -2.430107 -1.347322 2.860606 3.749159 -0.005105 -1.757033 -0.483168 4.041228 -2.889855 -0.574834 1.435482 0.742480 -2.349489 1.316441 2.147411 -2.975252 0.263269 -3.148805 -0.065045 -1.918123 -2.011006 2.709053 -1.684049 0.932985 0.783412 -0.627505 -0.467226 1.577765 1.490866 -0.145774 0.715866 4.934027 3.156854 -1.202070 0.082930 -4.293301 2.489156 -4.315651 -3.193180 -0.112330 1.148672 -1.869899 -0.865013 0.194722 2.859789 2.147357 -1.710928 -1.632657 0.980469 +PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 0.178945 -0.047300 0.993415 -0.664762 0.147896 -1.021003 0.136821 1.457874 -1.057541 -1.557587 -0.088227 -1.104501 -1.425807 0.828465 -0.148491 -1.259973 1.416599 0.653395 0.130139 -0.669925 -0.377468 -0.644485 0.674333 1.371032 -1.088050 0.311811 -0.721982 0.825641 0.177611 0.820428 1.068548 -1.337134 -0.386609 1.505779 1.334678 -0.645236 -0.297931 0.167985 -1.894990 -2.259887 -0.078493 2.060770 0.487790 0.115415 0.862430 1.771009 1.110444 0.454826 -0.600864 0.813688 0.516730 0.254442 0.646864 -0.154527 -0.076978 -0.869896 -0.028317 -0.864092 -0.764530 1.001833 -0.098897 -1.537871 -0.273705 0.701631 0.973943 -0.345138 -0.431181 -1.302677 0.266770 0.574778 0.399955 0.456380 1.048062 -0.179487 0.760758 0.978383 -0.329352 -1.547597 0.978153 -3.910401 -1.040695 -0.679380 3.096949 1.918686 -1.536279 -1.457073 1.246752 -0.208242 0.379421 1.516296 0.926941 0.867715 -0.389600 -0.719645 -0.493485 0.961969 -0.285691 -0.547664 0.127420 1.026650 -0.664575 0.518971 -0.000856 -1.060353 -0.492474 1.005558 -0.374583 0.959018 -1.698331 0.935457 -1.449101 1.085620 1.737976 -0.993591 0.114923 -0.314448 -0.237341 0.647209 -0.601714 1.590496 0.383789 -0.806884 -0.649284 1.627604 -2.991911 1.554865 -0.626124 -0.205427 0.158930 0.936898 0.228361 -1.017072 0.055877 -0.534875 -0.192385 1.007790 -0.015382 -0.270829 -0.658757 -0.097634 1.167809 -0.268042 -0.007337 -1.438613 -0.678562 -1.158060 -2.232667 -0.578082 0.363935 1.150340 -0.283303 0.706567 0.221362 -0.030113 1.141226 0.767607 -0.017647 0.305734 1.060636 0.483443 1.019807 -0.295627 0.087121 1.243931 0.465659 -0.066483 0.535554 0.415710 -0.111816 0.064013 1.094732 -0.055249 0.081845 -0.276582 -0.141712 0.010987 0.645704 0.932922 -0.900932 -0.874852 1.091908 0.319934 0.344171 0.802554 0.676074 -0.018591 0.173747 -0.122216 0.627512 0.897494 -2.734942 1.138834 0.552281 0.501547 0.001648 -0.473495 0.039042 -2.495481 -0.177071 0.308982 1.592315 0.394856 -0.326447 0.065063 -0.865479 -0.040156 0.219669 0.678691 -0.719177 0.797481 -0.500385 0.051130 -0.148631 -1.584336 -0.682523 0.851946 -1.001100 0.202092 1.070128 -1.609205 0.563809 -0.552136 -0.340041 -1.036218 0.200858 -0.059748 -0.905283 -0.718296 -0.499534 -0.551253 -2.765419 -1.079443 -0.857531 0.303861 -0.718736 -0.509280 0.115603 -0.747571 1.946986 -0.382417 0.970609 0.670362 -0.541308 1.540484 2.435578 -0.321761 0.429143 -0.828325 1.137327 -1.399795 0.426699 1.467269 -0.535952 -0.332949 1.081498 -0.115842 -0.252639 -0.067741 1.259056 0.641742 -0.988122 0.360606 -1.894977 0.999299 1.933468 0.691740 -1.230310 -0.139788 -1.874255 0.281996 0.353425 0.070478 0.592871 -0.961708 -0.082385 0.426636 -0.120710 -1.123439 0.331523 -0.041828 -1.095953 -0.151780 1.708840 1.131425 -0.574755 1.817422 -0.804636 0.747307 -0.828229 0.008889 -1.306601 -0.015178 0.109565 0.180545 -0.600073 -0.036286 0.515239 -0.342955 -1.056051 1.269248 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.102838 2.291312 1.562487 -0.717917 2.766109 1.367771 1.013271 0.487268 -0.616644 -2.691570 -0.631638 -2.124391 -4.425986 2.294314 -0.585513 0.063224 3.754322 -0.176848 0.687496 -1.706446 1.853539 -2.030642 4.557629 3.680192 -4.653238 0.892316 2.125728 1.636419 0.893876 2.301289 -0.173409 -2.800218 1.563200 -0.912133 2.434333 -1.435159 -0.411212 -1.746284 -1.231941 -5.474236 -1.158902 1.074740 -1.666458 0.751731 0.332065 3.627279 5.243060 2.305665 -2.197185 2.042171 2.024831 -0.388197 1.362920 0.613941 -0.184239 -0.707094 0.810340 0.454739 -1.683475 0.649137 -0.741573 -4.573867 -0.332802 2.899213 4.047803 -1.009577 -0.593018 1.138952 -1.047903 0.592012 -0.366003 2.654282 2.658497 1.439750 3.834976 -2.583265 -0.915642 -6.064336 -0.790629 -9.619127 -3.353501 -3.757440 2.156846 -0.214132 1.442142 -0.768521 4.801038 0.882879 1.365380 2.454258 4.607286 -2.750372 -0.617689 -2.410959 -0.586002 0.946581 -1.988110 0.493299 1.582555 -0.871082 -2.603298 -2.541087 1.879002 -0.557000 -1.873320 -1.760126 -1.825465 2.696122 -3.943065 -1.143923 -5.230952 -1.214098 -0.209101 -5.266261 0.164105 0.378936 3.143710 1.639620 0.407178 -1.604759 0.753452 2.296745 -0.518526 -1.834076 -0.538712 3.938225 2.294532 0.051212 1.637644 1.825754 1.319343 3.039852 4.986868 0.217510 -1.976297 0.873415 -1.496661 0.057007 -1.230226 0.251822 2.685449 -2.415903 0.080594 1.378587 -1.326006 -1.234421 1.381152 -2.601321 1.997828 7.446721 -0.705544 1.826334 0.643406 -3.405656 1.992737 -0.923036 -1.365606 1.663266 2.934402 2.574579 -3.500661 -1.784515 1.567659 3.652194 1.049482 -4.325527 -0.755701 -0.209161 0.637889 -1.490111 0.998617 1.208337 0.840279 -1.502646 0.045779 1.590841 5.111028 -2.649330 -3.639972 0.843701 1.038919 -0.209938 -3.745856 -0.330947 -0.918710 -0.925056 0.907091 -0.060883 0.687486 3.291336 -6.560584 2.461418 -0.687083 -1.258650 2.150932 0.151528 -0.574745 -4.132004 1.655184 2.886846 2.100674 1.186277 -0.173361 -1.161072 -3.317569 0.547958 0.594217 1.895951 -1.644233 2.928538 -0.850023 -2.251208 -2.909906 -2.163292 -0.218727 -0.506149 -1.013645 1.105284 1.046774 -7.294980 3.452635 -1.336000 -2.279453 0.322650 -0.520194 2.619889 -3.003984 -4.252019 1.421064 -2.031352 -3.701978 -2.211573 -1.003741 1.065021 0.750870 -0.985431 -1.913322 -4.344012 3.357012 -0.466682 1.946062 2.303078 1.834084 5.843422 0.631077 -3.284702 -2.703609 -1.698674 1.915076 -1.512861 -1.416688 -1.759733 -1.375295 1.887757 5.068595 -0.379324 0.477254 -1.392684 3.095328 -4.594436 -2.024290 2.471422 2.911143 -0.795757 2.473208 2.492805 -1.699599 -1.892443 -2.776764 -0.286514 -0.230242 -2.581894 0.959781 -3.914342 -0.390382 2.681716 -0.679213 -1.605337 1.770754 -0.443432 0.247884 -1.973846 3.494801 6.416270 -4.615794 0.651170 -2.647321 2.195716 -4.426188 -2.842907 0.051400 0.525438 0.730074 -0.151317 0.731008 1.029767 0.923286 -2.556125 -1.478989 -0.690962 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/detect-cycle-in-a-graph.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.427164 0.092427 0.084091 -0.061203 0.177694 0.196217 0.157154 -0.155053 -0.440582 -0.529751 0.280006 -0.196952 -0.764121 0.818141 -0.383650 0.218064 0.872847 0.777739 -0.082051 -0.279484 0.634506 -0.724894 0.796904 0.955745 -0.652834 0.161457 0.326516 0.145023 -0.112356 0.626875 0.103690 -0.762042 0.528347 -0.400582 0.565366 -0.978794 -0.273830 0.748280 0.024493 -1.351710 -0.195161 0.343005 -0.150091 0.008048 0.139762 0.565612 0.361239 0.512340 -0.015300 0.529150 0.375182 -0.023397 0.784708 0.028796 0.407084 0.362414 -0.174682 -0.107795 0.284760 0.236544 -0.527459 -0.482729 0.080139 0.622277 0.981535 -0.508511 -0.343986 -0.193712 -0.335879 0.157357 -0.092104 0.478535 0.339257 0.027834 0.027279 -1.254371 -0.384041 -1.652802 0.193744 -1.709994 -0.443115 -0.226636 0.176417 0.433028 0.201837 -0.043176 1.119451 -0.139791 -0.091554 0.587748 1.133157 -0.405900 0.040787 -0.036061 -0.156546 0.058516 -0.213015 0.037681 0.017354 -0.161070 -0.549880 -0.945595 0.100297 -0.082235 -0.314426 -0.584990 -0.253564 0.843374 -0.762472 -0.444071 -0.882203 0.150033 0.029799 -1.121238 0.382234 -0.363900 0.268435 0.577023 -0.701762 -0.520744 0.633193 0.545725 0.066842 -0.376251 -0.076466 0.654440 -0.131381 0.143882 -0.193998 0.021094 0.006462 0.578510 0.653871 -0.424375 -0.048722 0.240777 -0.456144 0.385286 -0.500840 -0.123233 0.414035 -0.518575 -0.419957 0.016924 -0.433251 -0.166767 0.502596 -0.406845 -0.225808 1.934454 -0.449372 0.602554 0.324794 -0.637096 0.558970 -0.043436 -0.045495 0.152527 0.686626 0.279096 -1.269257 -0.575306 0.375755 1.151255 0.405204 -0.792772 -0.477336 -0.138737 0.264153 -0.083046 0.665981 0.041992 -0.050997 -0.384327 -0.127180 -0.032526 1.115353 -0.603343 0.124674 -0.471958 0.422641 0.001547 -0.779587 -0.000972 -0.724059 -0.100768 0.340287 -0.097259 0.117750 0.467946 -1.521508 0.793550 -0.706585 -0.170523 0.256281 0.233700 -0.093994 -1.278252 0.049253 0.208616 0.693361 0.014081 0.542840 0.304591 -0.902392 0.039123 -0.055231 0.251056 -0.354359 0.840628 0.044366 -0.553878 -0.395670 0.251348 -0.159182 -0.838342 -0.177029 0.816272 0.600106 -1.221236 0.522735 0.038852 -0.001795 0.106979 0.494154 0.660673 -0.601963 -1.060708 0.700268 0.012000 0.039852 -0.263269 -0.391920 0.769283 -0.050082 -0.473508 -0.166154 -0.802089 0.509534 0.101833 0.653866 0.298684 0.102022 0.983520 0.017669 -0.510403 -0.247891 -0.245122 0.150685 -0.563650 -0.077359 -0.833384 -0.156657 0.620607 0.614745 0.491881 -0.303297 0.050353 1.056710 -0.505084 0.226020 -0.053263 0.593955 0.308874 0.184715 0.524860 -0.457898 -0.291687 -0.718018 0.386341 -0.492151 -0.312207 0.724076 -0.646826 0.232202 -0.080113 -0.019219 -0.253278 0.331119 0.686803 0.089176 0.166002 0.544086 0.904460 -0.150462 0.016527 -0.429238 0.381381 -0.533788 -0.031298 -0.473824 0.593900 -0.302247 0.154016 0.001280 0.594879 0.426672 -0.043202 -0.231850 0.330513 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__dist(Point, Point) = -0.516287 0.093673 0.212469 -1.305377 1.408350 2.200991 0.545469 -1.633455 -1.236825 0.159481 0.744901 -2.877990 -1.315934 1.804879 -0.714228 1.130554 2.013986 -0.422160 -0.920899 -0.531884 0.494234 1.565622 2.708446 2.607614 -1.567987 0.369479 -0.290748 -0.172403 -0.087624 0.209678 -0.371717 -1.961918 0.728967 -0.317117 -0.128096 0.397585 -0.916304 -0.388385 1.779410 -2.429064 -0.154440 0.896024 -0.151761 -0.112680 0.403720 0.804594 2.182607 1.292292 0.597645 0.977948 0.788273 0.266277 0.940680 -0.018385 1.113530 -0.375010 1.448314 -0.453656 -0.247310 -0.473823 -0.514224 1.086683 -0.856636 1.906155 1.898249 0.199872 -1.265846 -0.029260 0.708810 0.255230 -0.018525 1.614940 0.578298 1.719632 0.368115 -0.630627 0.524923 -1.598687 0.375600 -1.573676 -1.512179 0.461873 0.931957 0.743398 0.848014 -1.072269 2.656822 0.180855 -0.978817 0.491808 2.542111 -1.558695 -0.338343 0.291895 -0.570472 -0.350025 -0.292872 1.328159 0.201458 0.143705 -1.812723 -0.692099 0.101542 -0.141225 -1.011127 0.042131 0.383177 0.929273 -0.596213 -0.275538 -0.164770 1.246534 0.081846 -2.925664 -1.237586 -0.650714 -0.269375 0.274443 -1.584247 -1.496311 0.836627 0.022105 -1.030268 -0.535904 -1.005138 1.271886 1.804672 0.632226 -0.198678 1.011066 1.253712 2.682860 -0.610603 -1.091748 0.514794 -0.256755 0.460146 1.047161 -0.223858 0.071150 -0.328437 -1.083147 0.838671 0.944287 -0.850244 0.319780 -0.749570 0.044463 -0.574026 5.058129 -1.118912 2.321733 1.282906 -1.813723 0.455204 -1.161258 -0.187916 -0.142675 0.756333 1.151728 -2.020726 -1.294318 2.141069 2.767681 0.818226 -1.956449 1.282489 1.046439 -0.321175 -1.400001 1.460887 0.089165 0.338379 -0.688828 -0.358556 1.379654 3.600746 -0.916715 -1.179786 0.192126 0.999496 1.443033 0.231266 -0.247009 -0.689896 0.142308 1.228365 0.832961 1.257658 1.787560 -3.010831 1.531850 0.315483 -0.731666 2.237665 0.798900 -1.703139 0.099242 -0.374693 1.064580 1.119503 0.109280 -0.231478 -0.171618 -1.886038 -0.020697 0.423595 -0.010659 -1.321345 1.495594 0.599831 -1.258485 -0.380345 -0.623491 -0.282607 -0.558833 -1.525405 1.446687 0.354002 -3.184638 1.725409 1.243467 -0.694384 -0.494933 -1.321657 1.466916 -1.097477 -1.236035 0.606097 -1.300777 -0.767148 0.179608 -0.733329 0.069776 0.461134 2.401276 -2.245352 -1.243025 2.098156 -0.061805 2.398037 1.101521 -0.056970 0.506639 -0.951106 -1.095877 -0.353482 -2.471145 1.762285 0.991073 -1.486855 1.012248 -0.923288 1.219840 0.974091 -0.307613 -1.519178 -1.209739 0.795501 -1.408185 0.702442 0.389476 0.413306 -1.649459 0.005671 0.831781 -0.377344 0.747333 -1.118763 -0.937494 -2.142257 -1.117590 1.062339 -0.021699 0.458825 -0.092795 -0.671843 -0.264968 0.600952 0.080312 -0.278486 1.120184 1.613345 0.945117 -0.311676 0.336419 -2.299230 1.719164 -1.616091 -1.998115 1.002069 -1.086661 -1.486334 -1.132227 -0.678204 1.217689 0.651846 -0.976682 -1.228973 1.349935 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.131632 0.046777 0.230895 0.060785 -0.006382 -0.022737 0.100887 -0.050889 -0.028350 -0.130136 0.198950 -0.237625 -0.396756 0.406504 -0.264592 -0.001485 0.379545 0.326795 -0.063168 -0.153783 0.199413 -0.260159 0.534501 0.513357 -0.354552 0.018478 0.158871 0.186411 0.048015 0.131882 0.052279 -0.200269 0.177487 -0.115103 0.215639 -0.378113 -0.010550 0.216640 -0.003244 -0.575131 -0.062850 0.055267 0.268374 0.003555 0.100824 0.331630 0.185356 0.327169 0.066148 0.224857 0.194004 -0.054847 0.371730 0.059883 0.181871 -0.158641 0.123312 -0.197733 -0.024734 0.127831 -0.126036 -0.407603 0.015698 0.356944 0.375507 -0.038851 -0.069199 -0.185542 0.062822 0.076223 0.031722 0.169655 0.097754 0.215355 -0.020047 -0.324083 -0.126049 -0.705689 -0.056459 -0.830470 -0.253569 -0.094057 0.269530 0.173485 0.051469 0.130292 0.483720 0.254903 -0.048093 0.185882 0.581061 -0.204427 -0.162944 0.093110 0.057624 0.186921 -0.185036 0.230120 0.142894 0.197041 -0.268645 -0.299730 -0.058051 -0.047841 -0.145334 0.107467 -0.116724 0.318897 -0.431397 -0.169613 -0.329705 0.018233 0.115915 -0.601207 0.201801 -0.137265 0.346854 0.228183 -0.219994 -0.096748 0.244483 0.183146 0.122453 -0.004456 -0.292623 0.100116 -0.160874 0.150824 -0.027819 0.020483 0.059311 0.318844 0.220784 -0.229728 -0.020578 0.042234 -0.236281 0.232399 -0.236881 -0.013958 0.191016 -0.294198 0.199282 -0.076631 -0.204419 -0.332636 0.030219 0.025119 0.018700 0.632526 -0.084189 0.314262 0.115231 -0.292852 0.106214 -0.191254 0.005854 0.110578 0.210259 0.054160 -0.331651 -0.355657 0.118687 0.516277 0.215463 -0.346366 0.002132 -0.021709 0.122826 -0.178311 0.318751 0.110042 -0.091952 -0.222116 -0.060496 0.141012 0.326307 -0.041612 -0.206546 -0.174716 0.141442 0.162638 -0.194370 0.028033 0.101536 0.039339 0.151796 0.010430 0.005076 0.155132 -0.669458 0.406488 -0.096387 0.175607 0.255508 -0.088591 -0.196280 -0.493749 0.132209 0.130355 0.155121 -0.004459 -0.009278 0.209902 -0.426920 0.012903 0.017194 0.094064 -0.093274 0.283014 0.138574 -0.216005 -0.308719 -0.022449 0.086181 -0.235017 -0.088842 0.396835 0.206696 -0.627891 0.255424 0.058203 -0.167206 -0.022591 0.083332 0.193387 -0.392019 -0.464689 0.215945 -0.131973 -0.185741 -0.368928 -0.120135 0.253250 -0.258313 -0.018658 0.046735 -0.072909 0.270454 0.038787 0.160638 0.143633 0.118113 0.264681 0.063893 -0.209643 -0.062206 0.029296 0.101696 -0.310062 -0.119856 0.018353 -0.058723 0.282720 0.291222 0.028586 -0.171785 0.002205 0.455032 -0.134653 -0.155935 0.032450 0.273432 0.202641 0.341578 0.247318 -0.303692 -0.062040 -0.314554 -0.031071 -0.166723 -0.176354 0.268995 -0.261525 0.099410 -0.009256 -0.085314 -0.159874 0.238545 0.140142 0.050492 0.117676 0.191479 0.478218 -0.035850 0.169497 -0.249760 0.005053 -0.299390 -0.104392 -0.088170 0.195581 -0.150767 0.185324 0.000515 0.258369 0.266010 -0.207616 -0.206236 0.201004 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__cost(Point*, int, int, int) = -0.208132 0.966555 1.130005 -0.587206 1.438745 1.491686 0.932295 0.835646 -1.578617 -2.636100 0.760403 -3.118138 -4.421964 2.871581 -0.730725 -0.594141 3.552946 0.671122 -0.290798 -1.332188 0.477715 -0.265218 4.031162 3.913718 -3.223433 0.984156 0.173382 0.809954 -0.069976 1.382157 1.354489 -3.626395 1.761999 0.379732 1.136962 -0.706927 -1.042771 -0.867865 -1.364200 -5.156867 -0.781771 2.690728 -1.427082 0.022269 0.940251 3.078540 3.763954 2.114972 -0.131905 2.301750 1.027589 -0.459230 1.918702 0.128290 0.791950 -1.773055 0.005323 -1.683392 -1.614244 0.717590 -0.752303 -3.365935 -1.805578 2.493681 3.302196 -0.918168 -1.461728 -0.792031 -0.890089 0.945320 -0.033178 2.049592 2.767405 1.381016 2.244179 0.435293 -1.345339 -3.128128 0.008600 -7.814652 -3.107769 -1.404878 4.589936 2.306606 -0.372749 -1.929243 4.194634 0.218782 0.028606 3.428527 4.630632 -1.209156 -1.204477 -0.502017 0.013804 1.505104 -1.635543 1.091744 0.735777 -0.107466 -2.840017 -1.178744 0.349682 -1.142170 -1.382089 -0.241891 -0.828518 2.537392 -4.042607 0.331459 -3.821403 0.663795 1.739132 -4.724771 -1.633408 1.039087 2.025415 2.420993 -1.769068 0.188476 1.616949 -0.192912 -0.231955 -0.299412 -1.204817 2.769102 0.347449 0.977782 1.042712 2.534516 1.922304 2.269832 2.393945 -0.456921 -0.222139 0.493030 -0.095889 1.379592 -0.193710 -0.008066 0.381183 -1.487587 1.069212 0.049210 -1.826557 -1.931564 -2.796590 -0.907203 0.260119 5.705139 -1.001295 2.758519 1.372918 -2.429229 0.989994 -1.593876 -1.203007 0.384302 2.180450 2.134751 -0.938191 -1.450153 1.981655 4.465500 1.425595 -3.047094 1.796919 0.930534 0.831380 -1.904201 2.840652 0.877304 1.737428 -1.462481 -0.208722 2.291571 3.987616 -1.653394 -3.778893 -0.435676 1.302710 2.355818 -0.805549 0.669383 1.088565 -0.291303 2.351163 0.207508 0.603795 2.575850 -4.726256 2.817213 0.267620 -0.324690 1.844188 0.720556 -1.603636 -2.449428 0.202732 1.688357 2.688313 1.747169 -0.382631 -0.439097 -3.225271 -0.176437 1.033636 0.796416 -1.178761 3.008533 -0.502237 -1.366393 -1.919995 -2.378760 -0.143585 0.331062 -1.901177 2.036450 1.611414 -6.288198 2.719068 0.097196 -1.962572 -1.609470 -0.363386 2.491217 -2.770443 -3.859762 0.974052 -2.645348 -5.139765 -1.475074 -1.754831 0.514231 1.316685 -0.065884 -0.903830 -2.024685 4.554940 0.588181 3.022910 1.957965 0.322241 4.912948 1.362733 -2.716473 -0.435388 -3.081785 3.443469 -2.160162 -1.148269 0.263828 -1.434994 1.431173 2.997008 -0.163983 -1.538101 -1.983061 2.620866 -2.926735 -1.337966 1.467083 1.498895 0.298591 2.953392 2.315335 -1.786070 -0.055236 -3.123730 -0.332767 -1.506356 -1.816680 1.270426 -2.417451 0.284010 1.313404 -0.834418 -1.461782 0.952939 -0.097789 -0.472611 -0.291735 2.652878 4.838914 -3.224958 2.019034 -2.862919 2.249642 -3.073501 -2.540399 0.073925 0.044034 0.052100 -0.595262 -0.440187 0.594016 1.548200 -3.456377 -2.672730 2.082749 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -4.427241 -3.397937 -1.523943 -5.691787 3.748209 7.793291 2.410824 -7.003144 -7.397676 -1.272441 4.203754 -10.364031 -5.512448 9.462221 -4.014783 6.698495 10.588334 1.236929 -4.920387 -3.184059 7.298131 0.283465 13.081724 13.619436 -7.837509 -0.061751 -0.060060 4.121116 1.916030 -0.379135 3.107246 -4.464145 3.257647 -7.697306 0.013505 -3.486558 -2.127532 3.747842 7.283372 -13.597367 -1.236617 2.587746 0.205204 0.028713 0.244582 3.019182 6.257957 7.653599 1.228125 6.057311 5.234757 -0.899025 5.487050 0.361249 2.805320 -0.136830 1.442451 -1.117581 -0.162696 -1.869363 -2.793310 -0.619303 0.824383 9.582480 11.303089 0.077112 -4.861797 2.249586 2.185759 2.420016 2.287138 7.411739 -1.515520 3.869836 4.089772 -10.467151 1.103101 -13.598674 2.088503 -11.236095 -5.923919 1.500962 5.183148 3.819722 5.188214 0.091185 13.605689 -0.570968 -5.425344 9.460814 10.902500 -7.075894 -1.913078 -0.844359 -4.109210 0.372867 -3.495927 4.144318 2.105387 5.036423 -8.076693 -4.948770 -0.108611 1.154822 -4.673546 -4.788631 -0.236433 6.844751 -6.153253 -5.221479 -2.478272 6.295587 -1.084330 -14.879863 -4.998312 -6.072167 2.670429 1.833822 -7.086043 -6.948615 4.126049 1.738340 -1.150637 -3.494075 -0.886940 4.426047 5.426452 2.309988 -1.616662 5.267333 2.338571 13.035877 1.027298 -5.026110 1.085891 1.745012 -1.580320 5.383713 -3.506574 -1.527827 1.811334 -7.703158 0.947833 4.152982 -4.592998 -2.589835 2.206341 0.278730 -1.629004 28.076543 -2.398803 10.581139 8.738391 -7.704640 3.081860 -4.301189 1.974270 3.347864 4.809854 3.172651 -13.542883 -7.596272 7.953916 13.635352 4.692717 -9.137353 -0.649837 3.425972 1.229295 -3.110395 5.388640 1.459571 -0.181046 -3.604587 -0.983757 6.047001 15.631028 -5.583453 -1.059827 1.039605 4.464551 0.553974 -7.653642 -1.586888 -6.578059 -0.360929 4.727859 3.219998 3.748641 9.058658 -11.532983 8.062768 -0.765958 1.212298 7.770134 3.477283 -7.569840 -8.151537 -2.506777 3.115275 6.470312 -1.409192 -1.255521 2.255041 -10.808232 0.588984 2.941009 1.133155 -5.545030 9.357489 0.131247 -3.970331 -3.606108 2.317661 -2.559003 -3.572289 -3.050478 8.278186 -0.156555 -9.820361 6.923148 2.430438 -4.308153 0.698779 -2.425619 8.697465 -7.124352 -8.639090 6.166011 -3.364159 -3.775636 -3.072880 -2.566491 3.738884 4.365421 2.596238 -8.370523 -6.382011 8.347725 -2.774038 10.607995 4.659456 -1.656735 5.874024 -4.118761 -5.690772 -4.927562 -7.039290 1.584449 2.067412 -6.413116 -5.081478 -2.106893 7.542490 6.383458 0.587480 -6.640250 -0.442071 9.436410 -7.272161 -1.005770 1.765133 3.466498 -6.066643 2.574226 4.322880 -6.442601 2.683751 -6.026949 -0.998884 -6.834625 -5.153111 7.789079 -1.678982 3.881652 -1.324323 -1.065767 1.463212 4.005075 4.784408 2.049414 4.171685 10.567121 6.256905 -0.809046 -1.931223 -11.014690 6.164916 -8.941207 -7.798147 1.605839 2.441439 -4.532057 -1.847676 -0.434388 7.958473 6.222274 -7.010540 -5.147621 4.347453 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = 0.314953 1.456777 2.193364 -1.135980 1.387571 1.243418 0.326460 0.413227 -1.114480 -0.468378 -0.432696 -2.104987 -1.686564 1.529723 -0.071144 -0.524038 2.238722 0.304028 -0.476471 -0.139000 -0.082585 -0.187114 1.587061 1.961599 -1.583146 1.024106 -0.025115 0.553797 -0.542778 2.766665 -1.730582 -1.952261 -0.451159 1.065974 1.094759 -0.481756 -1.054537 -1.072093 -0.738166 -3.200456 -0.028070 2.194465 0.103859 -0.384539 0.833386 0.681938 3.131126 0.736549 -0.020722 -0.021204 0.230881 -0.019824 1.022993 -0.095872 1.542084 0.448685 2.896290 0.337102 -0.935923 0.478937 -0.422860 -0.761917 -0.568456 1.398041 1.324580 0.136026 -0.985742 -1.249948 0.233250 -0.084587 -0.473303 1.007661 0.923340 1.394015 0.476137 0.646546 1.331890 -0.717652 0.793941 -1.978935 -1.781552 -0.870268 1.565234 1.515611 0.013540 -1.849241 2.217696 -0.902701 0.683003 -0.280240 2.512746 -0.897373 -0.334468 -0.651337 -0.967920 0.273575 0.005887 -0.460380 0.053008 -0.793862 -1.405628 -0.541481 1.165111 -0.224284 -0.968891 2.020717 -0.037159 1.286502 -1.206272 0.020219 -1.573773 0.213243 0.524043 -2.099437 -0.794098 -0.018159 -0.923032 0.717123 -1.182059 -1.139535 0.976745 0.527798 -1.241852 0.180020 -2.551823 2.612722 0.367956 -0.216025 0.336117 0.067322 1.236305 0.263414 0.807139 -0.685741 0.291163 0.314427 -0.373566 -0.337189 -0.246528 -0.089279 -0.683408 -0.570151 -0.643215 0.245040 -1.029676 1.092680 -2.175572 -0.300667 0.263302 4.527745 -1.326021 1.301672 -0.356993 -1.691363 2.246701 0.710061 -1.358768 -0.539379 0.962028 1.853618 -1.985244 -0.724456 1.124825 2.264736 0.826066 -1.241978 1.113392 -0.069449 -0.722158 -0.177832 1.667375 -0.268309 0.587780 -1.013045 -0.648969 0.325562 3.403089 -0.371070 -4.044990 -0.016097 -0.488508 0.742274 -0.338268 0.403799 0.019564 0.002705 -0.361510 -0.636575 1.384391 1.601805 -4.004414 2.022650 -0.211675 -2.254101 3.080346 -0.853272 -0.189578 -0.581956 -0.128206 1.591079 2.122815 0.802542 -1.441596 -0.911125 -1.448811 -0.330303 0.062795 0.674587 -1.301846 1.467924 0.212420 -1.789845 -0.553023 -2.779009 -0.133177 -0.347257 -2.110383 0.513438 0.087461 -3.167133 2.081006 1.140506 0.080215 -0.396966 -0.432213 -0.652956 -1.045687 -1.762395 -0.140769 -0.464044 -1.407285 -0.193506 -1.223747 0.397749 0.360258 0.459951 -1.604358 -2.044175 1.842507 -0.077157 1.938042 1.246358 0.378428 1.126054 3.710116 -0.688936 -0.033468 -1.214631 1.581461 -0.391000 -0.419123 0.162897 -1.637484 0.719293 1.612967 -0.307494 0.324208 -2.405980 1.241456 -0.084103 -0.204975 0.720524 -2.137389 -0.638591 -0.039927 1.248495 -0.224427 -0.518866 -1.670966 -1.170188 -1.105687 -0.677808 0.360309 -1.165190 -0.418897 1.213116 -1.227085 -1.509761 0.167612 -0.574095 -1.157295 0.203609 1.717613 1.026417 -1.070433 2.100870 -1.237742 1.610445 -1.625887 -0.691621 -0.154643 -0.857271 -1.108080 -0.812413 0.247701 0.252580 -0.013976 -0.334404 -0.377560 0.549752 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__merge(Node*, Node*) = -0.361685 3.220582 2.458242 -3.036071 3.149160 3.752283 0.423295 -0.959073 -1.562489 -2.126327 -0.924062 -3.439619 -3.772760 3.332530 -1.045429 0.099726 5.318807 -0.408136 -0.446307 -1.573972 2.517207 -0.244636 5.134753 5.445931 -5.536733 1.127883 3.713836 1.984046 1.236522 2.928202 -1.073966 -4.458903 0.052303 -0.657254 2.298224 -1.925990 -1.143830 -2.045640 0.609283 -7.517057 -0.805709 0.864377 -2.327501 -0.002166 0.632254 1.135764 7.004438 2.766927 -2.345686 0.921830 3.232999 2.177918 0.635453 -0.191860 0.638165 0.305182 2.747557 1.054804 -0.007316 0.217677 -0.277388 -1.346653 -0.100246 4.800788 4.692419 -0.121536 -1.537026 0.623961 0.587449 0.085919 -1.299361 3.364471 1.502137 3.716001 2.797802 -4.310903 0.312054 -8.557886 1.212861 -7.858245 -3.836878 -3.039021 1.043128 0.473212 1.698582 -0.670970 6.316504 -0.453342 1.383532 3.191935 5.999575 -2.988352 -0.208182 -2.731866 -2.980819 1.233832 -1.370764 0.982016 -0.667284 -0.577328 -3.180773 -4.221311 1.531000 0.065634 -3.027641 -1.118630 -0.862954 2.904752 -3.389175 -1.276136 -3.978453 0.667981 -0.484527 -6.787849 -2.787353 -1.860197 2.721361 0.509289 -1.213379 -4.407684 0.714359 2.933875 -1.640609 -1.929121 -1.013745 3.846295 3.953055 -0.350215 0.518560 0.405061 2.817966 4.367671 3.390472 -1.452202 -1.028087 0.841288 -1.345399 -1.123375 -2.378814 0.776958 1.489443 -2.273605 0.134014 3.257429 -2.073579 -0.986564 1.978184 -3.745767 1.581346 15.207707 -1.680679 2.833449 1.121375 -4.830696 2.059559 -0.471775 -2.744039 1.187591 2.785094 4.506051 -6.682262 -2.389634 2.619292 5.628746 1.704281 -4.033053 -0.598644 0.374961 -1.364492 -1.484700 2.348392 -0.225793 -0.365127 -1.788440 -1.149848 3.101823 7.421986 -1.795296 -5.113683 0.377369 3.016657 -0.292213 -2.801272 0.081909 -2.754150 -0.194574 2.464932 -0.449928 3.226270 4.485195 -10.428334 3.292439 0.005784 -2.497262 2.918555 0.539020 -1.399603 -3.025535 2.163277 4.120436 3.296596 0.017055 0.511436 -1.545095 -4.478307 -0.238059 1.236147 2.050093 -3.631768 3.931547 0.784270 -3.886930 -2.859183 -1.360230 -1.218135 -1.727597 -2.610467 1.803860 -0.793685 -8.722455 5.557389 0.264939 -0.987987 0.355216 -2.928827 3.021852 -4.265477 -4.957383 2.097197 -0.649459 -1.385731 -0.122065 -2.005323 2.572934 1.506033 2.084034 -4.397421 -5.640233 2.689488 -0.115173 3.558131 2.959875 1.839716 4.430618 -1.158546 -1.562664 -3.458241 -2.762716 3.573212 1.390792 -2.648157 -2.900893 -2.464872 2.538791 5.638282 -1.705405 -0.985898 -2.396158 3.235729 -4.266889 -0.451453 0.960037 2.040639 -3.054284 0.368089 1.814111 -1.645768 -1.436840 -3.840140 -0.297890 -1.683803 -3.343329 1.715261 -3.222017 -0.123284 3.549615 -1.835928 -1.819830 2.394308 0.174632 0.152138 0.334367 3.227057 5.186608 -3.149480 0.895844 -4.349445 2.973881 -5.695710 -4.311288 0.359521 -1.780900 -0.616579 -1.689357 -0.966759 2.229951 0.678293 0.176501 -0.651753 0.221364 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -0.245758 1.127318 0.853063 -1.054781 0.972809 0.595272 0.242141 0.008193 -0.651328 -1.619214 -0.327852 -1.633032 -2.096091 1.494351 -0.459455 -0.145251 2.468622 0.078062 0.011738 -1.024143 1.104978 -0.887826 2.324392 2.550585 -2.599616 0.332772 1.567959 1.241383 0.947945 0.827246 0.429078 -1.763155 0.178618 -0.244430 1.566461 -1.020007 -0.225138 -0.589159 -0.366353 -3.574102 -0.490387 0.736956 -0.265610 0.127843 0.251673 1.289462 2.832395 1.386625 -1.280775 0.683969 1.600060 0.582498 0.563126 -0.012662 -0.120564 -0.431310 0.632317 0.066416 -0.340687 0.389473 -0.048496 -1.640544 0.036945 2.138219 2.434857 -0.292881 -0.498647 0.369371 0.194692 0.390170 -0.337672 1.479050 0.836836 1.242397 1.626878 -2.062324 -0.144430 -4.481448 0.457800 -5.339217 -1.807334 -1.665552 1.264361 0.371269 0.375034 -0.177151 2.877219 0.196500 0.673327 1.844751 2.718573 -1.002953 -0.312138 -1.425888 -1.027181 1.034582 -1.021834 0.367623 0.438149 0.270608 -1.433050 -1.541441 0.737749 -0.208527 -1.341013 -0.639934 -0.653324 1.431427 -1.965953 -0.485985 -2.336887 0.007943 0.228962 -3.154083 -0.342512 -0.781538 1.226119 0.530043 -0.341282 -1.208680 0.216076 0.967156 -0.475650 -0.517904 -1.209518 1.876466 1.316543 -0.176026 0.427595 0.778830 1.072116 1.615858 1.713414 -0.598166 -0.768855 0.702403 -0.968506 -0.422468 -1.307832 0.017147 1.719111 -1.209385 -0.006920 0.787261 -1.001103 -1.138644 0.868641 -1.803229 0.962658 5.779169 -0.387780 1.171956 0.720530 -1.829792 1.113623 -0.207125 -0.955710 0.810910 1.582497 1.765165 -2.121332 -1.147659 0.905637 2.553702 0.780781 -1.670448 -0.707406 0.196331 -0.195409 -0.644467 0.967057 0.203528 -0.207835 -0.742359 -0.324579 1.373236 2.659772 -0.733469 -1.530134 -0.055566 1.644587 -0.296080 -1.864968 0.153108 -1.209230 -0.199275 0.556677 0.014244 1.123875 2.058786 -4.639223 1.588355 0.219087 -0.346916 0.976635 0.037280 -0.640672 -3.069232 1.147408 1.727872 1.487233 -0.097209 0.308461 -0.469869 -2.146673 -0.031774 0.469798 1.114548 -1.471799 1.788203 -0.261309 -1.134931 -1.499611 -0.538761 -0.611215 -0.575560 -0.775575 0.855221 0.558512 -3.584147 2.353769 -0.640320 -0.842128 -0.081690 -0.985065 1.302606 -2.256562 -2.228010 0.724179 -0.596318 -1.498081 -0.808453 -0.858141 1.122458 0.158106 -0.018309 -1.328587 -2.193141 1.610550 -0.425375 1.376505 1.292518 0.700301 2.486355 0.032616 -0.967028 -1.447373 -0.760305 0.865231 -0.246660 -0.988482 -1.150535 -0.798019 1.008278 2.869393 -0.674951 -0.311218 -0.305741 1.709297 -1.957058 -1.048873 0.611571 0.684494 -0.754262 1.048483 0.896979 -1.351885 -0.731705 -2.129394 0.025735 -0.198671 -1.540525 0.835629 -1.861688 -0.080650 1.599245 -0.763405 -0.767765 1.283153 0.269758 -0.015386 -0.207591 1.854676 2.727396 -1.686367 0.404523 -2.093481 1.109439 -2.711030 -1.763589 -0.178088 -0.021857 0.072871 -0.399307 -0.178490 0.826578 0.564562 -0.455729 -0.819161 0.198697 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__split(Node*) = -0.261985 2.178823 1.290128 -1.597612 2.237156 2.504548 0.381579 -0.518468 -1.033133 -1.454977 -0.680001 -2.389353 -2.528579 2.199542 -0.510663 0.324183 3.486513 -0.173730 -0.201203 -0.742248 1.490389 -0.370933 3.252349 3.368104 -3.218522 0.837271 2.108586 0.803456 0.041313 2.195456 -0.935747 -3.372445 0.301583 -0.538244 1.360773 -1.106086 -0.948824 -1.261229 0.494500 -4.780375 -0.511253 0.941989 -1.402835 -0.096245 0.319586 0.360970 4.645304 1.608230 -1.151490 0.707733 1.587749 1.231320 0.527170 -0.039039 0.756555 0.583718 1.510184 0.392778 -0.360381 0.142821 -0.498285 -0.870208 -0.298272 2.814304 2.727437 -0.109561 -1.086769 0.442494 -0.076010 0.025247 -0.911682 2.130574 1.136174 2.183374 1.686757 -2.451755 0.000393 -4.824999 0.558192 -4.933022 -2.530978 -1.904672 0.580967 0.718713 1.288121 -0.666737 4.119463 -0.639731 0.858549 1.741889 4.083023 -2.198839 -0.206536 -1.697744 -1.585404 0.418857 -0.744692 0.347305 -0.295534 -0.803321 -2.176402 -2.788222 1.194356 0.082235 -1.807901 -0.879571 -0.533034 1.952849 -2.301986 -1.021778 -2.824064 0.258717 -0.388417 -4.181369 -1.632457 -0.632823 1.045392 0.720510 -1.086396 -3.132502 0.824082 1.913938 -1.081456 -1.507863 -0.293774 2.594706 2.267058 -0.221307 0.529717 0.408108 1.818897 3.080981 2.348978 -0.788000 -0.479204 0.468167 -0.631918 -0.587746 -1.135859 0.279405 0.306724 -1.582259 -0.001047 2.101529 -1.426658 -0.258433 0.711365 -2.305367 0.878854 9.068382 -1.353999 1.827419 0.504117 -3.271094 1.632412 -0.494579 -1.851991 0.338401 1.891659 3.040983 -4.050014 -1.552462 1.953647 3.624412 1.126134 -2.474320 -0.315329 0.092942 -0.553514 -0.842517 1.566568 -0.032900 0.223281 -1.300994 -0.705789 1.746097 5.233011 -1.491372 -3.177282 0.510067 1.614286 0.163681 -1.926278 -0.079237 -2.103568 -0.274015 1.476016 -0.372073 1.793239 2.964879 -6.092970 2.236702 -0.460915 -1.939089 2.043556 0.413525 -0.746246 -1.913495 1.018108 2.784361 2.280315 0.195771 0.450340 -1.303000 -2.777540 -0.193429 0.686538 1.404324 -2.294619 2.579396 0.250285 -2.745093 -1.701480 -0.963897 -0.767680 -1.404402 -1.659638 1.088569 0.163273 -5.370802 3.637783 0.555832 -0.518630 0.291284 -1.343668 1.951459 -2.429486 -3.377404 1.442704 -0.707020 -0.983849 0.321910 -1.337986 1.457780 1.071634 0.902682 -2.538796 -3.592889 1.981719 0.343076 2.501985 1.871696 1.225787 2.847551 -0.317052 -1.374780 -1.833551 -2.047083 2.140890 0.487642 -1.448968 -1.986749 -1.633282 1.763663 3.549510 -0.684485 -0.711925 -1.903881 2.043618 -2.722873 0.092442 1.007035 1.063136 -1.938376 0.031384 1.488838 -0.836907 -1.030948 -2.412814 0.057437 -1.424611 -2.024822 0.753417 -2.261091 -0.338460 2.298709 -1.393008 -1.228895 1.313083 0.181336 0.004846 0.001534 2.081368 2.796097 -2.119236 0.707604 -2.570876 1.855127 -3.503468 -2.680728 0.228275 -0.653191 -0.666701 -1.313138 -0.372715 1.258867 0.256656 0.004216 -0.455281 -0.127461 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__insert(Node**, int) = -0.188371 1.759899 1.684250 -1.719951 1.830200 1.686057 0.353213 -0.265174 -1.100604 -1.412261 -0.573168 -1.835246 -2.271533 2.100344 -0.539989 0.026642 3.445815 0.113385 -0.187856 -1.198537 1.556565 -0.854893 3.161434 3.423416 -3.382967 0.720989 2.241938 1.325478 0.949471 1.847933 -0.841846 -2.295305 0.231641 -0.643359 1.524184 -1.570410 -0.612843 -1.111888 0.071788 -4.783065 -0.415958 0.260116 -1.280201 0.015652 0.326042 1.543383 4.156983 1.713492 -1.502171 0.832217 1.933539 0.901564 0.407248 -0.000600 0.418902 0.355627 1.734696 0.934497 -0.282438 0.348737 -0.176246 -1.588265 0.099883 2.775782 2.908937 -0.214956 -0.811401 0.424452 0.334640 0.065802 -0.541795 1.850695 1.082423 1.812601 1.872924 -3.012060 0.135304 -5.563680 0.429221 -5.934648 -2.388446 -2.017941 1.088941 -0.336504 0.934983 -0.256676 3.743989 -0.209012 0.973354 1.865691 3.590739 -1.975054 -0.310343 -1.664712 -1.590961 0.862357 -0.947058 0.396663 0.175221 -0.456980 -1.944101 -2.492003 1.400760 0.032208 -1.783603 -0.679638 -0.567035 1.967437 -2.420773 -0.906286 -2.795789 0.108839 -0.246010 -4.005458 -0.880102 -1.040787 2.310012 0.515736 -0.689080 -2.489666 0.454050 1.896355 -0.953701 -1.136994 -0.689438 2.603974 2.070379 -0.194986 0.466937 0.272379 1.498349 2.484709 2.633491 -0.900569 -0.714942 0.731257 -1.228617 -0.676727 -1.591398 0.162325 1.389840 -1.546117 0.044318 1.638685 -1.380665 -0.615387 1.878332 -1.973242 1.112179 8.677284 -0.859605 1.672597 0.614163 -2.843954 1.379576 -0.279948 -1.492622 0.915288 1.961478 2.466265 -4.094449 -1.492524 1.291372 3.347833 1.148918 -2.813049 -0.773315 -0.119893 -0.692859 -0.603692 1.254123 -0.044121 -0.126438 -1.150766 -0.632866 1.604275 4.591932 -1.248040 -3.062912 0.118274 1.321760 -0.413711 -2.386563 0.031437 -1.428166 -0.085859 1.019512 -0.325028 1.816123 2.767727 -6.634101 2.133020 -0.495236 -1.507855 1.788692 0.332350 -0.759396 -2.546580 1.212801 2.407000 2.317834 0.249544 0.152820 -0.671548 -2.721043 -0.178554 0.592486 1.334199 -2.053691 2.312677 0.458703 -2.341686 -1.699911 -0.907006 -0.495725 -0.921970 -1.229536 1.066898 -0.458285 -5.723543 3.224405 -0.143034 -0.748280 0.387430 -1.371560 1.706134 -2.653201 -3.074400 1.207957 -0.273020 -1.088034 -0.604288 -1.164049 1.660018 0.546566 0.721055 -2.343637 -3.619196 1.760879 -0.357575 2.054311 1.797119 0.977283 3.243474 -0.363644 -1.085305 -2.219786 -1.244319 1.744061 0.210264 -1.396275 -1.634336 -1.443510 1.577173 3.600720 -0.816828 -0.209284 -1.136654 2.248022 -2.890235 -0.624014 0.867893 1.641172 -1.487224 0.740260 1.342843 -1.434254 -1.040571 -2.256966 -0.479067 -0.615563 -1.909047 1.144637 -2.160996 -0.025566 2.051620 -0.861625 -1.079230 1.535709 -0.035183 0.127885 -0.080164 2.223539 4.070859 -2.288428 0.536241 -2.477839 1.804925 -3.466829 -2.461686 0.030326 -0.492649 -0.365288 -0.715085 -0.278061 1.337827 0.419545 -0.292717 -0.464241 0.024715 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__print(Node*) = -0.268530 1.374363 1.222084 -1.590761 1.253042 1.105772 0.196480 -0.060878 -0.908915 -1.934897 -0.311474 -2.298770 -2.557239 1.801848 -0.715214 -0.422990 2.842263 -0.144489 -0.114546 -1.058899 1.124660 -0.416827 2.706003 3.088299 -3.139342 0.394460 1.529885 1.462561 0.952586 1.125776 0.648503 -2.556300 -0.128931 0.307113 1.815645 -0.921175 -0.401829 -0.752398 -0.492266 -4.211114 -0.580723 1.360843 -0.552875 0.148549 0.550859 1.200721 3.513352 1.606895 -1.487671 0.667823 1.970920 1.102751 0.664735 -0.177565 -0.132111 -0.832190 0.843700 -0.212809 -0.223072 0.430497 -0.074175 -1.356476 -0.116464 2.703899 2.845195 -0.229626 -0.759819 -0.008583 0.375268 0.457129 -0.466625 1.890922 1.042937 1.807453 1.758181 -1.727755 -0.040334 -4.968706 1.016853 -5.467117 -2.134318 -1.725323 1.643547 1.357606 0.131956 -0.784196 3.525640 0.110929 0.644517 2.442056 3.243446 -0.850786 -0.250144 -1.678949 -1.590976 1.145651 -1.039994 0.517912 -0.246055 0.630020 -1.721200 -1.644642 0.364795 -0.442163 -1.630452 -0.366541 -0.716052 1.594459 -2.214373 -0.149272 -2.404722 0.605710 0.616739 -3.832216 -1.089994 -1.143191 0.939800 0.432848 -0.614120 -1.166349 0.305084 0.843488 -0.786369 -0.175348 -2.088012 2.272673 1.684507 -0.201488 0.269959 0.878182 1.450928 1.635809 1.314184 -0.844714 -0.773647 0.736844 -0.728123 -0.525063 -1.470601 0.355930 1.727445 -1.205869 -0.023176 0.882811 -1.138615 -1.366239 -0.043701 -2.287929 0.964949 7.418575 -0.689902 1.578049 0.872460 -2.164301 1.394327 -0.031474 -1.179385 0.802300 1.660596 2.278747 -2.391098 -1.312469 1.363280 3.165680 0.878596 -1.653735 -0.159282 0.660475 -0.476872 -0.960449 1.473225 0.072033 -0.389954 -0.842144 -0.505911 1.769107 3.197985 -0.389392 -2.007086 -0.157818 2.327499 -0.016223 -1.270420 0.370713 -1.196873 -0.166923 1.179790 0.024412 1.632278 2.457203 -5.657671 1.876375 0.740847 -0.386249 1.111274 -0.088279 -0.835092 -3.046243 1.267351 2.053257 1.723791 -0.115858 0.340085 -0.670496 -2.546299 -0.012411 0.716268 1.261075 -1.961430 2.185374 -0.157684 -1.413474 -1.703051 -1.001701 -1.061580 -0.468903 -1.523731 1.030888 0.472057 -4.136714 2.883121 -0.438028 -0.806082 -0.499131 -1.491654 1.527615 -2.621075 -2.544795 0.747924 -0.856855 -1.963970 -0.703633 -1.182177 1.190803 0.309561 0.484362 -1.918757 -2.617633 2.039291 -0.370168 1.887256 1.566656 0.752176 2.570185 0.354314 -0.876221 -1.480127 -1.482105 1.833586 0.107881 -1.264253 -0.857403 -1.071649 1.011273 3.143539 -1.032952 -0.712168 -0.630086 1.894945 -1.649586 -1.003876 0.433154 0.045818 -1.059089 1.050378 0.892984 -1.335359 -0.627113 -2.807208 0.210254 -0.607257 -1.788025 1.021001 -1.919450 -0.071278 1.881065 -0.957900 -1.169251 1.383773 0.346976 -0.301452 0.109137 2.259113 2.618796 -1.564514 0.899480 -2.682853 1.515159 -3.161569 -2.181208 -0.252829 -0.673795 0.055786 -0.703772 -0.673291 1.018232 0.742722 -0.167333 -0.955533 0.721516 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = 0.210154 0.242394 1.215257 -0.624814 0.273586 -0.738309 0.142304 1.217995 -0.795096 -1.286392 -0.096861 -0.894374 -1.437053 0.770598 -0.259646 -1.238448 1.453491 0.561167 0.110537 -0.891976 -0.173033 -0.517037 1.000681 1.440413 -1.507802 0.301439 -0.058416 1.057444 0.740631 0.724177 0.666953 -0.920199 -0.152105 1.189430 1.253161 -0.694633 -0.068295 -0.318025 -1.783670 -2.305109 -0.131042 1.271932 0.144359 0.166177 0.705927 2.040518 1.319125 0.604904 -0.766751 0.689571 0.839690 0.253112 0.444046 -0.091531 -0.219447 -0.894828 0.549671 -0.374728 -0.728378 0.767606 0.130317 -1.780859 -0.297534 0.896974 1.237098 -0.280187 -0.185269 -0.942790 0.335941 0.470443 0.342060 0.413721 1.005942 0.234382 0.966160 0.491431 -0.136446 -1.917182 0.561885 -4.145117 -1.088230 -1.087874 2.725253 0.813457 -1.213411 -0.877250 1.249094 0.176231 0.646463 1.258596 1.097951 0.453834 -0.434492 -0.753657 -0.471836 1.184300 -0.551847 -0.158361 0.360147 0.736359 -0.670204 0.168419 0.288421 -0.824884 -0.608736 0.936893 -0.449412 0.928111 -1.668940 0.755534 -1.592186 0.520132 1.389896 -1.284533 -0.074234 -0.293985 0.793941 0.573283 -0.143726 1.186928 0.065053 -0.287597 -0.457400 1.200118 -2.335872 1.477334 -0.139525 -0.163385 0.313211 0.774279 0.415499 -0.612617 0.594381 -0.428576 -0.450457 0.861861 -0.409516 -0.342538 -0.836310 0.016808 1.336808 -0.324891 0.317384 -0.881680 -0.665445 -1.206072 -1.254441 -0.582267 0.667096 1.676349 -0.014056 0.629107 0.210971 -0.271798 0.686728 0.489721 -0.212902 0.556344 0.996421 0.486770 0.513364 -0.375917 -0.114116 1.207418 0.469131 -0.642213 0.411400 0.170631 -0.221948 -0.135613 0.829117 0.090380 -0.011896 -0.263154 -0.138842 0.378717 0.674047 0.539988 -1.556275 -0.741680 0.793062 0.085811 0.011473 0.650926 0.930355 0.068226 0.200630 -0.054031 0.656048 0.985742 -3.142998 1.057884 0.617975 0.288032 0.281249 -0.376228 -0.087309 -1.989519 0.368242 0.532773 1.392467 0.455664 -0.536854 0.155819 -0.955655 -0.082798 0.288516 0.675898 -0.609651 0.723062 -0.134414 -0.075365 -0.533522 -1.560118 -0.264044 0.827725 -0.868249 0.238922 0.398144 -2.487234 0.790410 -0.787671 -0.618742 -0.821377 -0.267609 -0.007529 -1.254091 -0.897536 -0.405477 -0.394742 -2.465090 -1.294268 -0.692192 0.445666 -0.527547 -0.041765 -0.212118 -0.890908 1.657535 -0.521223 0.620540 0.736097 -0.188326 1.822301 1.610359 -0.335172 -0.141926 -0.385973 1.175190 -1.152288 0.057581 1.193208 -0.536003 -0.150671 1.481822 -0.379233 -0.007882 -0.153648 1.221636 -0.139915 -1.322715 0.396894 -0.752836 0.749859 1.901608 0.663923 -1.294159 -0.355893 -1.598907 -0.293313 0.580921 -0.310949 0.671430 -1.113539 0.077983 0.716141 -0.055713 -1.054560 0.607481 -0.337651 -0.756217 -0.246852 1.489663 2.091900 -1.075540 1.524551 -0.925598 0.826947 -1.175786 -0.373588 -0.830162 -0.347319 0.251298 0.298749 -0.496511 0.107095 0.448857 -0.547104 -0.939336 1.007643 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__countNonDecreasing(int) = -3.324161 -3.726137 -2.239090 -4.353800 3.026462 4.527099 1.997450 -4.579538 -6.683789 -0.734017 2.615526 -8.797128 -3.389435 7.322397 -2.278979 5.806495 8.876715 1.113379 -3.589154 -2.146570 5.429121 -0.921585 9.528901 10.641272 -5.238800 -0.209681 -1.338949 2.691360 0.764391 -0.185755 1.982072 -3.664816 1.830234 -6.275981 0.282589 -2.926670 -1.729466 3.584016 5.991369 -10.809377 -0.520309 3.344940 2.521208 -0.093375 0.029512 2.852177 4.809962 5.556081 0.512001 5.265374 3.524261 -1.180390 3.921727 0.373471 2.221963 0.945517 0.683692 0.245666 -1.354680 -1.033692 -2.292393 -0.376478 1.185904 6.780423 8.268482 0.391987 -3.831155 1.917163 2.186119 1.992193 2.539608 5.514052 -1.147583 1.417315 3.682169 -7.417768 0.852627 -10.687423 1.947751 -10.434723 -4.329581 1.424532 5.131676 2.720232 3.867163 -0.759479 10.434479 -1.382368 -4.307185 7.024311 7.664465 -5.532314 -1.851038 -1.526666 -3.485939 -0.219785 -2.341532 1.648857 3.600471 4.208027 -6.311519 -3.305877 0.574009 0.967186 -3.550522 -3.536456 0.069452 5.075465 -4.679958 -4.437582 -2.058833 5.123641 -0.670193 -10.466017 -2.662970 -5.018427 -0.690173 1.397923 -5.934443 -5.274091 3.271751 0.636962 -2.057242 -2.064472 -1.722625 4.164179 3.641408 1.207241 -0.956817 4.254372 1.113889 9.730983 0.180026 -4.400850 1.099900 2.358407 -1.163841 3.575397 -3.219225 -2.459807 2.639103 -6.666271 0.583603 1.844565 -3.813271 -1.241351 2.020159 0.599282 -1.010878 19.958864 -1.803669 8.112009 6.493942 -5.564177 4.110359 -2.459695 2.462715 2.520590 4.584469 2.137625 -9.021060 -5.881329 6.143140 10.081894 3.782067 -6.403365 -1.550566 2.504829 1.252056 -1.054381 3.492241 1.025225 -0.078303 -2.841882 -0.608090 3.352156 12.914781 -3.836521 0.838482 1.238540 3.967529 -0.491942 -6.792202 -1.357679 -6.983467 -0.420888 1.665985 2.458022 3.250787 7.683207 -9.177151 6.532117 -1.381563 1.102802 5.918051 2.447634 -5.559517 -8.646718 -3.062776 2.373945 6.086177 -1.098905 -1.270014 1.597166 -7.960948 0.480578 1.768446 1.450282 -4.759182 7.028654 -1.062112 -2.812747 -1.720952 1.665455 -2.655847 -2.999957 -1.852531 5.547341 1.338157 -6.031360 4.941799 1.831688 -3.137012 0.733092 -0.587434 5.320274 -4.985970 -6.034276 4.027277 -2.543784 -3.314772 -2.358093 -1.920014 2.488168 2.373754 0.944401 -5.935125 -5.890600 7.375129 -2.863021 8.826220 3.573621 -2.422360 3.737662 -1.373144 -4.540315 -3.469901 -5.116820 -0.613008 0.725053 -3.965877 -2.847904 -1.614646 5.605489 4.994699 1.094241 -4.670205 -0.001069 7.661081 -4.041056 -0.669264 2.490179 0.063131 -4.647947 2.394706 3.785306 -5.906929 2.113430 -4.824622 -0.498719 -4.661348 -3.024751 5.534590 -1.566956 2.356299 -1.279333 -0.983908 1.322817 2.806213 3.748932 0.513771 2.680706 9.800657 2.920991 -0.429865 -0.981299 -8.415099 4.659216 -6.787666 -5.505285 0.282644 3.038799 -4.786607 -1.544064 0.463172 5.791032 4.275960 -4.959198 -4.317592 2.651997 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -0.067352 0.045435 0.269000 -0.145172 0.269669 -0.123787 0.173726 0.102417 -0.368721 -0.459275 0.083082 -0.615015 -0.571290 0.499008 -0.097086 0.056063 0.660408 0.146656 -0.017966 -0.250710 0.101379 -0.395651 0.637204 0.664478 -0.485096 0.115836 0.000181 0.229474 0.058801 0.313671 0.017559 -0.462049 0.213758 -0.042359 0.251069 -0.202735 -0.092508 -0.031767 -0.155307 -0.842276 -0.045317 0.405693 0.143356 -0.011908 0.065803 0.621886 0.599210 0.356149 -0.106565 0.426609 0.240808 -0.195574 0.252475 0.085424 0.172756 -0.170670 0.244117 -0.125329 -0.419737 0.159671 -0.119676 -0.698208 -0.154514 0.389860 0.575036 -0.112635 -0.139557 -0.045728 -0.100287 0.173386 0.136414 0.252195 0.320464 0.080536 0.392959 -0.173857 -0.007953 -0.781078 -0.079928 -1.593106 -0.497961 -0.221763 0.772277 0.223204 -0.010176 -0.161016 0.625778 0.064308 0.000697 0.282977 0.713276 -0.303771 -0.261277 -0.135525 -0.064154 0.205147 -0.299821 0.012152 0.332617 0.080133 -0.448930 -0.119622 0.358911 -0.105961 -0.220933 0.046087 -0.108673 0.413717 -0.711116 -0.101448 -0.621209 -0.044532 0.254148 -0.697405 0.194664 0.046311 0.244859 0.348242 -0.273895 -0.046017 0.236862 0.023364 -0.159510 0.001527 -0.558843 0.577727 0.013155 0.136912 0.192211 0.312579 0.221156 0.336183 0.403500 -0.185178 -0.062803 0.135123 -0.195118 0.167038 -0.153404 -0.226447 0.290932 -0.382549 0.105848 -0.104191 -0.333138 -0.227917 -0.151769 -0.050492 0.129842 0.673505 -0.103697 0.438513 0.206708 -0.390213 0.348714 -0.167116 -0.062180 0.090530 0.435605 0.248380 -0.067215 -0.303582 0.317178 0.634618 0.282912 -0.520356 -0.043657 0.052188 0.171769 -0.061660 0.286516 0.173691 0.175667 -0.293503 -0.044412 0.185273 0.744965 -0.215292 -0.419197 0.032222 0.032258 0.128974 -0.496551 0.035272 -0.004066 0.001085 -0.077062 0.033305 0.120737 0.549542 -1.099281 0.520535 -0.083320 -0.080143 0.436545 0.007145 -0.270500 -0.894401 -0.018345 0.325753 0.524556 0.238607 -0.059591 0.008017 -0.493842 -0.040376 0.003587 0.196094 -0.233429 0.398490 -0.125467 -0.272486 -0.294079 -0.415858 -0.003370 -0.004845 -0.191338 0.261572 0.424971 -1.014981 0.452241 -0.091031 -0.312569 -0.159198 0.067844 0.223531 -0.458252 -0.539725 0.049053 -0.445460 -0.765923 -0.394661 -0.183874 0.036650 -0.083908 -0.223794 -0.063160 -0.375357 0.674217 -0.151444 0.442626 0.283556 -0.006708 0.688333 0.515554 -0.390380 -0.101393 -0.091747 0.173986 -0.578488 -0.117625 0.157812 -0.186847 0.263106 0.564018 0.052979 -0.040421 -0.093533 0.477775 -0.365436 -0.347271 0.403153 0.027117 -0.015431 0.543569 0.436527 -0.456010 -0.066724 -0.495594 -0.193309 -0.122932 -0.269362 0.185124 -0.365758 0.006537 0.195075 -0.087307 -0.255179 0.194479 -0.030399 -0.155654 -0.143921 0.665425 0.817831 -0.504038 0.308176 -0.480663 0.288343 -0.570966 -0.404463 -0.008735 0.272978 -0.201660 -0.047877 0.072139 0.138162 0.163269 -0.434998 -0.389758 0.210754 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__cmp(suffix, suffix) = -0.308872 0.998696 1.417554 -1.654060 2.268185 2.888413 0.512251 -0.867003 -2.058144 -0.512025 0.143747 -3.838419 -2.265578 2.528938 -0.613944 0.506836 3.060873 -0.328766 -1.136797 -0.401883 0.422167 1.263541 2.933412 3.282914 -2.114970 0.962182 -0.385247 0.233181 -0.992288 2.554364 -0.839205 -3.776558 -0.382656 0.528044 0.518656 0.310756 -1.739779 -0.843800 1.141516 -4.171715 -0.224800 3.394647 0.087565 -0.395214 1.138989 -0.877850 3.948175 1.324940 0.515043 0.845925 0.864069 0.622226 1.523292 -0.317621 1.915698 0.254898 3.265173 -0.688504 -0.911373 0.008918 -1.045524 0.956870 -1.138671 2.424468 1.886569 0.345580 -1.939991 -1.159327 0.449860 0.714837 -0.406048 2.249683 0.800124 2.258513 0.832741 0.819788 1.025874 -1.908871 1.412745 -1.177433 -2.517079 0.056513 1.767170 3.214358 0.702327 -1.425868 3.931051 -1.386719 -0.597043 -0.022239 3.577660 -1.123009 -0.279652 -0.325273 -1.790895 -0.154193 -0.102013 0.252843 -1.002140 0.233969 -2.420747 -1.149525 0.547773 -0.246888 -1.445493 1.565941 0.002537 1.804803 -1.335340 -0.243426 -1.319155 1.811671 0.575804 -3.676040 -2.596961 -0.551799 -2.459721 1.082738 -2.590059 -2.128869 1.769648 0.030707 -1.817057 -0.121817 -1.709840 2.704784 1.565052 0.275010 -0.045488 0.758803 1.862550 1.982534 -0.104552 -1.314750 0.876533 0.131294 0.699675 0.534350 -0.169113 0.184277 -1.829774 -0.986040 0.487091 1.216489 -1.425228 0.373511 -3.316946 -0.796112 -0.525883 7.324676 -2.131943 2.810633 0.803627 -2.474425 2.217346 -0.128588 -1.108658 -0.732054 1.246098 2.809189 -2.287689 -1.431306 3.067654 3.778427 1.158500 -1.710996 1.704663 1.257835 -0.467872 -0.583401 2.788479 0.059434 0.975736 -1.466774 -0.791843 1.260932 5.357599 -0.826047 -4.787728 0.358531 1.259439 1.670221 0.022021 0.258422 -1.299526 -0.115459 1.520348 0.198474 1.711804 2.746558 -4.396001 2.715060 0.451791 -2.074266 4.038365 -0.275078 -1.343784 -0.094875 -0.678663 1.961477 2.512430 0.776448 -1.456407 -1.215653 -2.535976 -0.154117 0.505470 0.656087 -2.421800 2.777770 -0.050702 -2.296436 -0.648847 -2.476136 -0.690931 -0.912811 -3.093584 1.355094 0.661638 -3.975600 2.911989 2.055935 -0.177146 -0.777868 -1.135740 0.810845 -1.054714 -2.418030 0.544777 -1.727823 -1.745678 0.458448 -1.672808 0.154717 1.817686 1.978818 -2.855970 -1.809853 2.576853 0.220331 3.807026 1.739794 0.011924 0.606577 2.709827 -1.245132 -0.071475 -2.276620 2.567529 0.686467 -1.258052 -0.768799 -1.936927 1.382652 1.793758 -0.517203 -1.302153 -3.991551 1.753682 -0.644349 0.570856 0.859354 -2.904273 -1.925241 -0.285195 1.553773 -0.082862 0.383483 -2.352000 -0.576186 -3.000232 -1.063791 0.834072 -0.828270 -0.299859 0.901419 -1.715143 -1.536905 0.172275 0.194510 -1.200863 0.791138 2.287734 -0.175261 -0.722225 2.152167 -2.726786 2.570207 -2.424865 -1.955075 0.415947 -1.619309 -2.228118 -1.955507 -0.758236 1.101497 0.598530 -0.478639 -1.173116 1.439505 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -5.406114 -2.549004 2.514067 -12.122515 9.109174 16.081167 3.728727 -9.691600 -13.443632 -4.053767 4.646227 -20.678001 -10.319359 15.526101 -6.247399 9.406491 18.647584 -0.774377 -8.112361 -3.798132 10.306178 3.641780 21.991008 22.933149 -15.225644 1.559747 -1.564129 7.610595 2.643838 6.053719 2.077571 -12.363533 2.461030 -7.706154 1.383913 -4.021845 -5.379097 2.472936 9.499638 -24.900034 -1.650003 11.103052 -1.115413 -0.039674 2.988222 1.255728 16.372340 11.779122 0.820778 9.486670 8.554385 1.496051 8.351596 -0.167629 5.819501 0.270225 7.883813 -3.641998 -2.334541 -2.903566 -4.784254 -0.879320 -0.141403 16.807896 17.614518 0.802080 -8.866132 0.867080 4.313099 3.300397 3.493093 13.871898 -1.479784 8.917495 8.371464 -11.313941 5.667489 -17.277831 5.936783 -14.932029 -12.100044 0.743415 10.753924 13.490603 8.067593 -6.072768 24.203903 -4.950152 -7.358968 12.923052 18.787101 -11.687001 -2.229663 -3.888053 -8.369635 -0.446816 -5.188958 3.408017 -1.630457 7.068712 -13.956531 -6.465341 1.375183 1.334853 -9.300741 -2.114634 -1.042451 11.543548 -12.568368 -7.528985 -5.278303 12.088299 -0.508875 -25.038533 -13.238280 -9.500577 -0.666448 2.348951 -11.512972 -12.002912 7.314689 3.375675 -4.709157 -4.387042 -7.561466 12.016827 11.606916 2.522242 -1.782206 8.518505 5.713719 20.454556 1.814711 -7.474527 1.683931 3.401818 -0.170697 6.415468 -4.119718 -0.877395 -1.205727 -11.897308 -1.279139 8.771991 -7.700175 -1.028652 -5.450965 -0.965461 -1.654956 53.072422 -6.082628 18.077714 13.104856 -14.094536 7.754323 -3.811874 1.084372 4.164917 6.986288 9.915498 -23.352139 -11.580525 15.144369 22.870553 7.447875 -14.132636 4.032651 6.792766 0.542618 -4.772715 10.208339 1.009543 2.313890 -8.627271 -2.545757 9.207275 30.239242 -7.293903 -9.749053 3.412027 5.466920 0.771240 -8.915063 -1.748553 -9.387801 -0.777489 8.599294 3.560018 8.440658 17.314944 -21.928145 14.629044 0.903483 -3.151066 17.203602 2.963302 -11.076463 -9.230213 -5.207998 7.868423 12.543104 -1.661660 -3.413478 0.333709 -18.140624 0.968881 5.022222 3.090499 -12.174317 16.194392 1.621965 -8.878356 -5.681941 -3.702103 -5.158872 -4.649787 -10.545435 11.323256 -0.454546 -17.927076 13.873168 6.470807 -6.388956 0.313034 -5.415293 12.704025 -11.656785 -14.451222 8.457231 -7.023586 -10.968329 -3.295057 -5.702725 4.359736 8.896505 6.010732 -17.836944 -13.809575 15.830279 -3.928716 19.617220 9.566059 -2.233816 8.675159 1.356416 -7.651289 -6.939063 -14.639665 7.637957 4.518658 -10.272508 -7.597527 -6.581049 11.340185 12.706442 -1.572134 -9.530708 -6.714815 14.986116 -10.166738 -0.677101 4.467927 -0.475389 -12.950448 3.010875 7.924991 -8.304300 3.983972 -12.108492 -3.090194 -12.531912 -8.074948 12.042017 -3.570669 4.697720 1.828680 -3.674222 -2.570987 5.097340 5.074981 -1.605807 5.923732 19.914161 8.651603 -1.969997 1.815027 -19.004829 12.566248 -16.482084 -13.807361 2.367197 -1.126493 -9.068680 -5.772530 -1.521671 13.091188 10.307848 -8.618258 -7.089301 7.067914 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::sort(suffix*, suffix*, int (*)(suffix, suffix)) = 0.032547 0.915265 0.705633 -0.208784 0.770033 0.538395 0.266283 0.264200 -0.299257 -0.767553 -0.291663 -0.975481 -1.397609 0.867140 -0.086881 -0.076766 1.442063 0.157962 0.081053 -0.376662 0.271066 -0.470718 1.408539 1.369786 -1.345128 0.409370 0.618175 0.440372 0.090391 0.936392 -0.378291 -1.143459 0.405901 -0.035560 0.655387 -0.474994 -0.233249 -0.671181 -0.438123 -2.050040 -0.247836 0.583867 -0.305042 -0.010275 0.165183 0.866996 1.916405 0.718569 -0.428322 0.447649 0.457092 -0.004814 0.421924 0.129822 0.205919 -0.072733 0.580661 -0.036207 -0.657352 0.242542 -0.077208 -1.383660 -0.382547 0.969800 1.215560 -0.142243 -0.285966 0.072011 -0.251886 0.085325 -0.257635 0.701490 0.854354 0.717052 0.883420 -0.466648 -0.026201 -1.491388 -0.140300 -2.770896 -1.178880 -1.121581 0.907164 0.298795 0.317144 -0.419348 1.516877 0.031596 0.589226 0.513652 1.727378 -0.974499 -0.337929 -0.696704 -0.164734 0.504896 -0.591994 0.109623 0.336182 -0.442778 -0.916716 -0.870794 0.788029 -0.105718 -0.698869 -0.038035 -0.356531 0.853062 -1.257435 -0.332182 -1.668480 -0.471645 0.086513 -1.656298 -0.078294 0.253560 0.617829 0.681743 -0.176418 -0.775160 0.293242 0.610276 -0.250815 -0.508370 -0.647846 1.315654 0.520735 -0.125913 0.569159 0.469669 0.737233 0.974179 1.270286 -0.126529 -0.367994 0.297871 -0.501612 -0.142917 -0.410264 -0.102297 0.364948 -0.784584 0.039755 0.481497 -0.660142 -0.168827 -0.153387 -0.657949 0.585657 2.436889 -0.281312 0.601536 0.116878 -1.213384 0.811203 -0.347813 -0.767273 0.201143 0.882582 1.073394 -1.030606 -0.536982 0.467642 1.399013 0.493789 -1.091864 0.035364 -0.152400 0.057750 -0.437999 0.638849 0.283079 0.359570 -0.564386 -0.141294 0.681275 1.826359 -0.719347 -1.425902 0.165190 0.121526 0.193041 -0.998801 0.037178 -0.182451 -0.193425 0.162896 -0.101914 0.396857 1.155743 -2.182927 1.003360 -0.187965 -0.729072 0.946191 -0.064905 -0.288739 -0.933942 0.556014 1.138482 0.995075 0.424838 -0.125380 -0.485502 -1.115416 -0.144581 0.216965 0.600895 -0.621818 0.966401 -0.080773 -0.899464 -0.857763 -0.897925 0.013881 -0.339979 -0.582000 0.401005 0.451856 -2.354524 1.362938 -0.148618 -0.591717 -0.025453 -0.342751 0.494207 -1.153895 -1.418077 0.321690 -0.558162 -1.131977 -0.380816 -0.502607 0.402352 0.234813 -0.179268 -0.595368 -1.284592 1.143363 0.086148 0.732161 0.786083 0.523206 1.547205 0.702888 -0.901315 -0.536766 -0.571714 0.688343 -0.608327 -0.411910 -0.300490 -0.660623 0.651991 1.723377 -0.178469 0.017177 -0.695317 0.887959 -1.149826 -0.603562 0.737889 0.443111 -0.278468 0.559570 0.825001 -0.613861 -0.561806 -0.988231 -0.254778 -0.143788 -0.892687 0.202399 -1.284007 -0.174743 1.076839 -0.500466 -0.658568 0.565643 -0.245878 -0.173198 -0.395017 1.075448 1.586902 -1.332874 0.637376 -0.962513 0.752932 -1.490408 -0.929081 0.068446 0.071389 -0.111991 -0.265790 0.193287 0.175903 0.093467 -0.609612 -0.509217 -0.112857 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::push_back(int const&) = -0.074130 2.956656 2.167822 -1.390178 2.773336 3.166067 0.693218 -0.046764 -1.082809 -1.648734 -0.933624 -3.259822 -3.798790 2.840310 -0.410375 0.211756 4.455256 0.027801 -0.212641 -0.616425 1.266294 -0.451016 4.267593 4.207658 -3.990503 1.210831 2.050703 1.071968 -0.223357 3.265617 -1.756442 -4.059834 0.705754 -0.275297 1.674018 -1.212707 -1.084411 -2.082485 -0.183074 -6.136081 -0.660859 1.889459 -1.484756 -0.251193 0.541053 1.003487 6.158771 2.161922 -1.134810 0.737856 1.403710 0.641493 1.074863 0.178403 1.124842 0.441448 2.239326 0.410443 -1.339711 0.295044 -0.497128 -2.310708 -0.953063 3.306923 3.559099 -0.065200 -1.254330 0.173537 -0.420961 -0.006639 -1.173754 2.460421 2.080533 2.805759 2.266103 -1.651654 0.290275 -4.418685 0.222699 -5.948341 -3.462026 -2.820408 1.471576 1.285403 1.560958 -1.692283 4.936397 -0.589062 1.421940 1.477708 5.431535 -3.160225 -0.653246 -2.240510 -1.308992 0.863977 -1.315123 0.362090 0.157700 -1.640774 -2.914552 -3.159479 1.874465 0.079594 -2.222812 -0.179788 -0.754051 2.592739 -2.912113 -1.271571 -4.187277 -0.583647 -0.307014 -5.317833 -1.609739 0.119716 0.855087 1.505175 -1.106432 -3.558929 1.132706 2.228168 -1.218548 -1.979240 -1.243276 3.946829 2.353940 -0.414059 1.202864 0.826219 2.437005 3.477340 3.254884 -0.672793 -0.653940 0.552895 -1.132660 -0.559275 -1.210047 0.097717 0.141544 -2.190420 -0.296386 2.403716 -1.938538 0.302389 -0.461819 -2.203101 1.403033 10.071142 -1.533596 2.166281 0.339341 -4.187781 2.809690 -0.699097 -2.577636 0.198617 2.340897 3.805273 -4.799452 -1.770311 2.187331 4.563029 1.526932 -3.264661 0.393061 -0.223079 -0.366462 -1.471372 2.158493 0.436530 0.836672 -1.824875 -0.744652 2.268419 6.494599 -2.269985 -5.086411 0.804231 0.882537 0.679320 -2.498238 -0.055239 -1.557232 -0.521208 1.161368 -0.504000 1.918925 3.690806 -6.820493 3.073178 -0.485960 -2.944141 3.536560 -0.092099 -1.004768 -1.619944 1.422466 3.715779 2.993527 0.990464 -0.376961 -1.846864 -3.494556 -0.394250 0.790248 1.743119 -2.365728 3.176043 0.064052 -3.343826 -2.428153 -2.523227 -0.485946 -1.693946 -2.391145 1.324041 0.585091 -6.760615 4.605082 0.650957 -1.098811 0.185508 -1.576637 1.691263 -3.243907 -4.450801 1.400526 -1.300190 -2.151832 -0.122909 -1.653847 1.426621 1.484170 0.577192 -2.900564 -4.534451 3.031949 0.565077 2.988173 2.417929 1.709495 3.764961 1.746268 -2.317878 -1.883564 -2.656096 2.742316 -0.215749 -1.784614 -1.945619 -2.279982 2.302527 4.748805 -0.816084 -0.384165 -3.105732 2.534795 -3.262148 -0.623938 1.815120 0.775809 -1.953984 0.187353 2.289564 -1.154413 -1.505485 -2.903684 -0.581490 -1.513174 -2.794267 0.585952 -3.320809 -0.518607 3.157694 -1.868686 -1.871623 1.401325 -0.348978 -0.456731 -0.434384 2.975649 3.572973 -3.292665 1.659215 -3.183154 2.597935 -4.553280 -3.163491 0.539931 -0.814404 -0.868468 -1.418863 0.366793 0.963789 0.143537 -0.900043 -0.961312 -0.391427 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::~vector() = 0.015540 1.065123 1.120539 -0.675239 1.408918 0.933231 0.184229 0.384695 -0.521252 -1.022991 -0.576081 -1.254908 -1.923018 1.146739 -0.289574 -0.075533 1.673101 -0.034263 0.026343 -0.493727 0.571291 -0.352049 1.693578 1.246406 -1.894234 0.432688 0.592814 0.996553 0.159550 1.629206 -0.426330 -1.588895 0.082170 0.368951 1.080300 -0.585186 -0.100685 -0.603648 -0.827113 -2.488821 -0.386617 1.135108 -0.660677 0.247764 0.350602 1.118104 2.285070 0.959591 -0.758852 0.485318 0.875912 0.290074 0.571868 0.165444 -0.110265 -0.129151 0.908180 -0.339326 -0.800183 0.292681 -0.128180 -1.602965 -0.337343 1.207209 1.632929 -0.400504 -0.444719 0.193929 -0.215318 0.166379 -0.229658 1.000510 0.962179 0.839924 1.208268 -0.177256 -0.080676 -1.680671 0.257832 -3.072496 -1.333624 -1.641368 0.959704 1.031868 0.121703 -0.901824 2.263902 -0.079228 0.561420 0.920433 2.042206 -0.985508 -0.257813 -1.472615 -0.415081 0.486249 -0.775095 -0.373204 0.071972 0.042820 -0.910202 -0.977832 0.468704 -0.476822 -0.880591 0.042101 -0.898166 1.304973 -1.754171 -0.294283 -2.156376 0.116084 0.198286 -2.112381 -0.553973 0.183822 0.412248 0.466775 0.215543 -0.653196 0.414512 0.869217 -0.539091 -0.205584 -1.145848 1.852365 0.870646 -0.490922 0.548668 0.720122 0.827524 0.875904 1.390437 -0.245436 -0.951006 0.675363 -0.352538 -0.360047 -0.714142 0.303075 0.449036 -1.037173 -0.099268 0.643045 -0.619819 -0.135957 -0.952761 -1.234240 0.874066 3.377806 -0.494977 0.506603 -0.119621 -1.434944 1.264241 0.077423 -0.905433 0.361032 0.781552 1.358507 -1.259025 -0.781910 0.822288 1.620636 0.545164 -1.285012 0.340683 -0.155923 0.063623 -0.529136 0.686479 0.702728 -0.004463 -0.406064 -0.243795 0.395954 2.443844 -0.623411 -2.039341 0.488841 0.530633 -0.128213 -0.907011 -0.033303 -0.185824 -0.605019 0.565612 -0.122462 0.634433 1.559349 -2.868586 1.286467 0.296984 -0.933492 1.108566 -0.598721 0.162269 -1.092624 0.337249 1.422027 1.287966 0.341899 -0.153945 -0.776102 -1.422517 0.216491 0.434107 0.922484 -0.702838 1.088934 -0.116243 -1.017673 -1.020813 -1.275649 -0.447985 -0.035148 -1.004142 0.394449 0.338648 -3.062675 1.721378 -0.431711 -0.454719 0.080532 -0.269460 0.837480 -1.303379 -1.676730 0.563257 -0.509621 -1.602535 -0.590150 -0.489255 0.657947 0.278304 -0.057090 -0.972371 -2.018893 1.284629 0.009183 0.753188 0.919418 0.708452 1.735073 1.136300 -1.061947 -0.705466 -1.077001 1.144029 -0.439656 -0.149719 -0.123611 -0.578845 0.778973 1.970340 -0.193555 0.095723 -1.104021 1.239683 -1.070108 -0.744134 0.853259 -0.073864 -0.478461 0.768382 1.035326 -0.611141 -0.926615 -1.513110 0.107283 -0.365528 -0.973573 0.226658 -1.671284 -0.368756 1.543613 -0.540053 -1.188926 0.745726 -0.145387 -0.591502 -0.775342 1.912588 1.827249 -1.410471 1.142523 -1.225500 1.166798 -1.873254 -0.987796 -0.215318 -0.341377 0.089239 -0.125642 0.208933 0.317686 0.118228 -0.408578 -0.551846 -0.390657 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__kasai(std::__cxx11::basic_string, std::allocator >, std::vector >) = -3.975944 -3.577702 -0.590610 -6.325318 5.056555 4.503574 2.969012 -3.881126 -8.804053 -5.653017 3.416770 -11.076490 -8.545636 10.100932 -3.558462 5.996556 11.826672 -0.033250 -3.654169 -5.456925 9.064563 -3.456634 14.508114 14.111250 -11.498787 0.393913 0.345982 6.165098 4.844661 1.473351 5.355652 -5.552267 2.803367 -7.070909 3.791896 -4.538879 -1.872962 3.354781 3.835719 -16.749725 -2.106215 6.823056 0.589807 1.206098 1.143226 8.457957 8.393262 8.586490 -2.831380 9.374236 7.530820 -1.619591 5.840370 0.398766 0.838762 -1.383311 1.230523 -0.896306 -2.566094 -0.392795 -2.967774 -6.486078 1.910443 10.479345 13.302300 -2.604720 -4.790112 3.806848 1.949231 3.730058 3.825463 9.322565 0.769050 1.470469 9.737426 -10.788889 -0.470215 -18.029720 2.579717 -23.581693 -8.006781 -1.595405 9.944769 3.902979 4.154773 -1.653248 16.930732 -0.999833 -5.126708 12.607101 11.182947 -6.532015 -1.920346 -4.336664 -4.421142 1.045801 -5.611591 1.072411 4.555693 6.144433 -8.957154 -4.113282 1.237621 -0.297487 -6.120318 -5.733554 -3.275410 8.364970 -11.465357 -5.265560 -7.114372 6.597754 0.462325 -16.411395 -3.817942 -6.083607 4.242819 2.200688 -4.733367 -3.902792 4.124836 2.175511 -2.059112 -2.695777 -3.370673 8.147379 6.346931 2.225120 0.229986 7.736750 1.728799 12.104646 5.858413 -4.187659 -2.207605 4.416012 -2.015362 5.179834 -3.981215 -1.649211 7.378678 -8.636156 -0.263786 2.077412 -4.500998 -4.881016 3.071438 -2.508230 0.258738 29.017242 -1.707656 10.717990 8.766231 -7.607668 4.404245 -2.805617 2.415346 6.067759 7.374197 4.209584 -11.653152 -8.006761 8.638072 14.275703 4.597169 -11.309695 -1.804232 4.217568 2.802771 -2.305417 4.804857 2.366785 1.422540 -5.131293 -0.571057 3.886414 17.503667 -5.841952 -1.529855 1.826193 6.215282 -2.588366 -10.684215 -1.136100 -6.629765 -1.856178 3.665771 2.675867 4.001689 11.354823 -16.172227 9.242797 -1.036438 1.561981 6.874998 2.362517 -6.241390 -16.089800 -2.987814 3.595491 8.317971 -1.123635 -0.556269 1.713639 -12.426518 2.356836 2.337233 2.693892 -6.693552 10.990676 -2.244006 -3.072436 -4.564145 -0.007192 -3.537504 -1.253104 -2.530883 7.042088 2.232068 -12.992656 7.603522 -1.242250 -6.005181 0.148671 0.341020 9.901643 -8.221134 -10.084746 6.032134 -4.918633 -10.553532 -7.022588 -3.279402 3.694121 3.393675 -1.311126 -8.231228 -10.120868 11.999777 -5.127479 11.356599 5.951561 -2.129909 11.233445 -1.567309 -6.934574 -6.599115 -6.526730 1.070746 -1.285834 -4.969911 -5.159562 -2.268677 7.050577 9.195075 0.037591 -4.246144 0.012787 12.070510 -9.464302 -3.850205 4.136217 4.372377 -5.307337 8.201447 5.998347 -8.265129 1.555833 -9.438097 -0.596111 -5.400907 -4.479457 8.750511 -4.531717 2.676232 0.976998 -0.442954 -0.606862 4.566946 4.184327 -0.439342 -0.099586 15.260779 12.864424 -5.272771 -0.916821 -11.938712 7.317769 -10.802261 -8.126987 -0.772670 3.826735 -3.078902 -1.149421 0.441068 8.378443 8.434849 -9.016073 -6.531346 3.567895 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::size() const = -0.113342 0.447714 0.175880 -0.648177 0.830054 0.683141 0.196677 -0.313272 -0.364993 -0.229712 -0.048650 -1.428014 -0.706775 0.332113 -0.215573 0.469644 1.074879 -0.277981 -0.168846 -0.156458 -0.026752 0.656037 1.306174 1.151156 -0.763273 0.283109 -0.023504 0.222322 -0.413441 0.243540 -0.664796 -1.052155 0.134543 -0.144442 -0.006789 0.211577 -0.395575 -0.550323 0.585149 -1.178039 0.001032 0.385245 -0.081854 -0.081649 0.075813 0.079661 1.478197 0.561695 0.044208 0.167814 0.488456 0.202072 0.429190 0.090690 0.210114 0.052530 0.698342 -0.396326 -0.272866 -0.418167 -0.182081 0.134748 -0.280216 0.770224 0.626631 0.099495 -0.660093 0.110513 0.332200 -0.124906 -0.082815 0.770425 0.265142 0.786969 0.326643 -0.191661 0.473501 -0.502227 0.046622 -0.662075 -0.954933 -0.254932 0.265421 0.594180 0.571947 -0.255617 1.316035 -0.365877 0.247495 0.040884 0.984936 -0.931637 -0.207106 -0.146086 -0.227959 -0.074476 -0.099281 0.160523 -0.191635 0.123377 -0.815013 -0.256469 0.387979 -0.042987 -0.504156 0.012882 0.249291 -0.055496 -0.440815 -0.297294 -0.847264 0.343490 0.165671 -1.309511 -0.550366 0.163883 0.006398 0.112753 -0.573962 -1.048055 0.274630 0.118837 -0.528630 -0.214253 -0.687046 0.667573 0.818372 0.075180 0.421571 0.270071 0.729375 1.401243 0.213442 -0.407172 -0.170507 0.017619 -0.130753 0.019755 0.031876 -0.056323 -0.429483 -0.696482 0.491758 0.719703 -0.504277 0.244854 -0.517367 -0.219916 0.034890 2.111815 -0.593283 0.882205 0.443943 -0.879099 0.435944 -0.702581 -0.454048 -0.273029 0.250940 0.928289 -0.788669 -0.492018 0.906500 1.103203 0.425278 -0.707404 0.769037 0.527146 0.225772 -0.342783 0.431220 0.176664 0.569958 -0.582490 -0.105012 0.703426 1.927515 -0.160671 -0.676801 0.369173 0.262292 0.577062 -0.099796 -0.223343 -0.552474 -0.163650 0.649608 0.331574 0.363092 0.960571 -1.234636 0.511676 0.090519 -0.537225 1.146537 0.185709 -0.587072 0.108157 -0.068654 0.735916 0.641460 -0.042279 0.146270 -0.481008 -0.612217 -0.093627 0.235535 0.242085 -0.657418 0.719660 0.251966 -0.955316 -0.138096 -0.719978 -0.091807 -0.098917 -0.680685 0.494794 0.168851 -1.490837 1.036241 0.508718 -0.416014 -0.044999 -0.782979 0.622683 -0.603952 -0.593755 0.428183 -0.684149 -0.212533 0.301266 -0.198846 -0.016915 0.360395 0.715432 -1.023007 -0.726127 0.974848 0.465218 1.032009 0.590699 0.109848 0.187898 -0.036540 -0.353409 -0.102811 -0.772286 0.387086 0.134243 -0.647271 0.133238 -0.605561 0.555622 0.868402 -0.462994 -0.157140 -0.570405 0.184660 -0.744194 0.227824 0.327444 0.107160 -0.882508 0.031162 0.529062 -0.124817 0.016670 -0.714391 -0.158686 -0.820922 -0.696930 0.209265 -0.493882 -0.052966 0.714446 -0.637807 -0.320632 0.183032 -0.126514 -0.194588 0.136894 0.782003 0.505054 0.006774 0.360559 -0.982956 0.525934 -0.994055 -0.944965 0.528180 -0.483918 -0.761322 -0.562842 0.050626 0.590991 -0.134061 -0.229137 -0.500544 0.304186 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(unsigned long, int const&, std::allocator const&) = -0.129163 0.573185 0.726604 -0.642920 1.639364 0.635280 0.588444 0.005932 -0.583388 -1.289546 -0.115460 -0.860303 -2.035008 1.045284 -0.538200 0.261332 1.549558 -0.252510 0.435967 -1.121904 1.130038 -1.061838 2.379235 1.760218 -2.470948 0.399079 0.607013 1.073750 0.530439 1.355854 0.243461 -1.236388 0.662061 -0.462452 1.315324 -0.791594 -0.268729 -0.339725 -0.454779 -2.559403 -0.670888 0.719159 -0.798271 0.791783 0.412917 1.986239 2.115362 1.143555 -1.188274 1.689814 1.236285 -0.212728 1.017761 0.346067 -0.188811 -0.391187 0.526189 -0.001414 -0.661174 0.395242 -0.682491 -2.116357 0.212718 1.372301 2.166208 -0.763044 -0.385025 0.399575 -0.522267 0.474852 0.287490 1.652087 0.937524 0.327154 2.148647 -1.296698 -0.344310 -3.216326 -0.154103 -4.559134 -1.580402 -1.655536 1.136684 0.241899 0.816838 -0.345042 2.578750 0.531423 0.216705 1.320473 1.700939 -1.080109 -0.037414 -0.914332 -0.498454 0.071061 -0.851185 0.096707 0.565162 0.223406 -1.155118 -0.961378 0.752353 -0.512802 -0.842124 -1.019463 -1.198883 1.367734 -2.139340 -0.616546 -2.322321 0.091438 -0.230118 -2.508576 0.037253 -0.290741 1.574622 0.523236 0.363059 -0.206533 0.497030 0.986622 -0.322910 -0.610109 -0.361774 1.908699 1.357112 0.120920 0.538199 0.997300 0.021313 1.381098 2.281666 0.130184 -1.182640 0.646617 -0.395618 0.373663 -0.588033 0.449733 1.477247 -1.168275 0.005392 0.327316 -0.355652 -0.694084 0.577682 -1.266557 0.795207 3.671927 -0.435844 1.099800 0.626767 -1.394273 0.854642 -0.097253 0.082809 1.337282 1.478703 0.808806 -1.639891 -0.965495 0.852680 1.599618 0.330326 -2.290714 -0.548184 0.214131 0.477319 -0.531933 0.375582 0.566705 0.222663 -0.686487 0.227485 0.100977 2.491473 -1.065552 -1.553785 0.427863 0.747713 -0.587966 -1.662496 -0.260363 -0.610196 -0.594448 0.558837 0.098051 0.134300 1.479015 -3.423923 1.109558 -0.292233 -0.204938 1.052081 0.046124 -0.116785 -2.371837 0.334239 0.805806 0.885624 0.443765 -0.017816 -0.202619 -1.638618 0.761760 0.180012 0.862743 -0.959561 1.556245 -0.468340 -1.009812 -1.187338 -1.096633 -0.243547 0.040431 -0.580052 0.559093 0.496302 -3.577000 1.040835 -0.757443 -1.274965 0.414610 0.153627 1.646086 -1.034993 -1.768614 0.763271 -1.121693 -1.968018 -1.509825 -0.376123 0.337703 0.244479 -0.432817 -1.168844 -2.021337 1.626745 -0.672226 0.962895 1.168577 0.567637 2.821470 0.133992 -1.746596 -1.408433 -0.851644 1.000697 -0.646372 -0.462297 -0.695698 -0.560658 0.763745 2.253027 0.137623 0.343608 -0.501509 1.929263 -2.085692 -0.817778 1.228460 1.270623 -0.245668 1.586134 1.200117 -0.733698 -0.754938 -1.288000 0.083455 -0.099436 -0.800907 1.041316 -1.671345 -0.021522 0.737235 0.062063 -0.860475 0.833733 -0.059420 0.107268 -1.109405 2.172084 3.234360 -1.921696 0.254411 -1.095524 1.016975 -1.872292 -0.966093 -0.426755 0.169171 0.417088 0.248959 0.137691 0.912414 0.946835 -1.302803 -0.682373 -0.234387 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::operator[](unsigned long) = -0.066768 0.550444 0.444451 -0.246227 0.620683 0.741644 0.161138 -0.176605 -0.243475 -0.260923 -0.153774 -0.713171 -0.738211 0.610842 -0.154561 0.190916 0.879740 0.013512 -0.044488 -0.131221 0.206255 -0.022576 0.971945 0.899918 -0.775560 0.238828 0.378378 0.207000 -0.115724 0.744045 -0.473590 -0.878011 0.234252 -0.096828 0.195390 -0.237476 -0.225955 -0.359375 0.107247 -1.204915 -0.125193 0.315730 -0.290784 -0.033690 0.105198 0.134591 1.211618 0.465083 -0.084682 0.280724 0.257195 0.152379 0.256812 0.078418 0.306774 0.126295 0.591886 -0.090379 -0.295522 0.014035 -0.137392 -0.446573 -0.271846 0.673978 0.758622 0.003881 -0.256650 0.009567 -0.193771 -0.000932 -0.192753 0.514249 0.338636 0.634683 0.387018 -0.288257 0.169065 -0.738859 -0.045918 -0.991520 -0.687187 -0.496649 0.210474 0.353403 0.429590 -0.223479 1.024973 -0.071741 0.201053 0.140150 1.118565 -0.785522 -0.145484 -0.268447 -0.215997 0.096319 -0.289534 0.138097 -0.107118 -0.289104 -0.601703 -0.694077 0.450421 0.047088 -0.438279 -0.011142 -0.148636 0.493913 -0.685463 -0.342146 -0.806250 -0.170957 -0.150684 -1.084335 -0.348522 0.047728 0.234786 0.316505 -0.266924 -0.812318 0.294825 0.464883 -0.211020 -0.475728 -0.231153 0.713841 0.504446 -0.073548 0.222921 0.126472 0.463294 0.888273 0.576698 -0.157095 -0.111164 0.080593 -0.197542 -0.028419 -0.198452 0.021708 -0.196307 -0.512712 0.054854 0.561436 -0.401876 0.116605 -0.187416 -0.363125 0.241771 1.906442 -0.335923 0.475446 0.135068 -0.918027 0.435780 -0.283403 -0.454135 0.024941 0.430147 0.743539 -0.897895 -0.387361 0.504693 0.937017 0.328215 -0.664987 0.122968 -0.036482 0.012874 -0.296964 0.459653 0.132384 0.150327 -0.409987 -0.139002 0.401822 1.407810 -0.489959 -0.960943 0.233478 0.033029 0.158549 -0.450550 -0.056246 -0.277882 -0.099066 0.252719 -0.062620 0.297213 0.759181 -1.351160 0.636191 -0.128621 -0.630164 0.795619 0.004049 -0.264059 -0.082663 0.233948 0.733392 0.586171 0.228435 0.015162 -0.332381 -0.731347 -0.083669 0.127687 0.334184 -0.497713 0.654710 0.151019 -0.811886 -0.493284 -0.499750 0.021295 -0.414886 -0.518952 0.317098 0.154554 -1.500093 0.901995 0.206545 -0.265505 0.106072 -0.280839 0.407802 -0.639609 -0.885720 0.315133 -0.364413 -0.357457 0.032824 -0.294049 0.218854 0.305130 0.204531 -0.612915 -0.787348 0.561314 0.157701 0.580163 0.473974 0.335563 0.648630 0.213067 -0.511161 -0.323343 -0.471866 0.571504 -0.109512 -0.342185 -0.235335 -0.452292 0.532050 0.971454 -0.084419 -0.118373 -0.611685 0.522989 -0.647791 -0.040505 0.412010 0.276905 -0.441363 0.002350 0.481879 -0.206733 -0.273795 -0.479823 -0.160812 -0.376192 -0.577495 0.165709 -0.633089 -0.063960 0.590919 -0.345057 -0.422774 0.288370 -0.083521 -0.088722 -0.060034 0.634680 0.660764 -0.587039 0.381370 -0.644133 0.479229 -0.915493 -0.654986 0.172937 -0.162299 -0.281844 -0.297835 0.016008 0.250614 0.042024 -0.166599 -0.179161 -0.113440 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__printArr(std::vector >, int) = -0.482506 -0.428672 0.021674 -0.807701 0.349460 0.217810 0.261458 -0.303137 -1.072919 -1.002958 0.415086 -1.610494 -1.095170 1.267274 -0.549698 0.416804 1.622252 0.184937 -0.360624 -0.642792 0.818969 -0.473717 1.675154 1.948203 -1.379820 -0.068220 0.048245 0.815953 0.603606 0.111572 0.901600 -1.039290 0.233700 -0.477582 0.629429 -0.621499 -0.131359 0.485656 0.203156 -2.167161 -0.204678 1.017982 0.406850 0.081679 0.194049 0.992895 1.078327 1.051565 -0.412516 1.016265 1.025000 0.053168 0.634759 -0.011780 0.020749 -0.498751 0.020116 -0.368383 -0.347754 0.133282 -0.255471 -0.852744 0.088397 1.391169 1.714643 -0.196938 -0.469691 0.084723 0.262569 0.525860 0.461826 0.982328 0.217728 0.329482 0.997538 -1.077716 -0.045827 -2.557549 0.460893 -3.294823 -0.920812 -0.211836 1.534748 0.940116 0.119305 -0.336546 1.923687 -0.009350 -0.448637 1.663084 1.530807 -0.518746 -0.389006 -0.554334 -0.679423 0.458897 -0.770892 0.220632 0.393697 0.989363 -1.071160 -0.466368 0.040837 -0.117924 -0.714848 -0.425361 -0.294408 0.948665 -1.511217 -0.372240 -0.930352 0.737743 0.457579 -2.071806 -0.284382 -0.875717 0.248187 0.364504 -0.799206 -0.268604 0.432597 0.019688 -0.293093 0.042723 -1.181970 1.046659 0.491474 0.256854 -0.046391 0.870627 0.359577 1.185456 0.325739 -0.712959 -0.158460 0.556768 -0.385241 0.407689 -0.761763 -0.327024 1.168397 -1.027530 0.039454 0.012614 -0.714348 -0.887295 0.017645 -0.457941 0.163880 3.461748 -0.191291 1.309621 1.102743 -0.897896 0.679310 -0.242825 0.258018 0.586358 0.954518 0.597628 -0.930308 -0.944102 0.951067 1.831792 0.638157 -0.993589 -0.206757 0.590225 0.291473 -0.258951 0.705421 0.246563 -0.121317 -0.615536 -0.128297 0.720652 1.810314 -0.307377 0.041314 -0.077697 1.115813 -0.133788 -1.054297 0.086806 -0.806797 0.002797 0.386874 0.344275 0.605730 1.436184 -2.425015 1.206295 0.181401 0.480461 0.627703 0.168206 -0.880383 -2.370249 -0.077557 0.558361 1.085956 -0.099717 0.139515 0.297149 -1.516607 0.100695 0.284158 0.495648 -0.908874 1.244462 -0.258671 -0.369926 -0.696366 -0.110196 -0.559923 -0.210653 -0.481437 0.887140 0.643928 -1.570802 1.071714 -0.230853 -0.714012 -0.320338 -0.161724 0.968983 -1.365425 -1.211272 0.476344 -0.740134 -1.463729 -0.824354 -0.488325 0.445027 0.097662 -0.200106 -0.770071 -1.103932 1.504735 -0.604143 1.362182 0.687896 -0.292476 1.258361 0.233671 -0.588452 -0.636179 -0.654828 0.245080 -0.452846 -0.612270 -0.213517 -0.232464 0.740246 1.283718 -0.134043 -0.679530 0.282600 1.399600 -0.683388 -0.641539 0.395470 -0.006431 -0.450661 1.047886 0.627567 -1.301887 0.195437 -1.417960 0.046867 -0.459263 -0.684990 0.970875 -0.644258 0.359977 0.203431 -0.109599 -0.249575 0.612442 0.573979 -0.215136 0.216434 1.842733 1.259624 -0.448426 0.236033 -1.674428 0.770116 -1.514219 -1.124827 -0.207168 0.436757 -0.403093 -0.132438 -0.145098 0.880158 0.928663 -0.745455 -0.928261 0.763773 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = -1.671439 -0.952492 5.090306 -4.113363 5.089975 -0.636459 1.729882 1.911045 -3.800789 -4.445267 -0.270609 -2.280994 -8.884377 4.527409 -2.245176 0.447493 3.252097 -1.522333 -0.254539 -5.593270 5.596810 -5.814349 6.655474 3.158579 -9.933361 0.297540 0.049145 8.116603 4.005486 5.688751 2.916372 -1.108221 -2.485338 1.836769 8.751319 -2.162689 1.106771 1.426114 -5.499787 -9.834435 -3.179868 8.514321 0.154288 2.620266 2.766656 10.194398 3.414816 5.231028 -4.818261 5.127566 6.069486 -2.124405 5.118532 -0.073222 -2.474927 -2.112617 3.909481 -1.281370 -3.244136 2.220830 -1.010246 -8.591666 3.521940 5.368499 9.200854 -5.235278 -1.605236 1.725768 0.198090 3.223280 1.708213 6.073994 0.789592 -0.767839 9.325316 -1.936850 -0.684993 -9.766214 3.947305 -15.480268 -6.158670 -6.280102 6.542393 5.042642 -0.248283 -3.933431 12.331362 1.556595 -1.763124 7.009514 3.853361 -0.784932 0.318923 -7.296350 -3.075594 0.844313 -4.511307 -3.944771 2.678594 5.606122 -3.627286 -0.273498 0.165450 -2.820736 -3.772102 -0.624921 -7.498984 6.424240 -7.266749 -2.017478 -8.547065 4.912462 1.354784 -8.489704 1.368434 -3.207546 1.991642 -0.146454 4.610162 4.462403 1.638599 2.701818 -1.975156 1.499857 -8.862046 8.911580 4.100669 -2.888568 1.687032 5.789096 -1.754200 -0.943059 6.318315 -0.671457 -8.111565 6.360012 -2.492192 1.431971 -2.934129 2.914247 8.003085 -3.391361 -3.146094 -3.006564 0.264030 -2.653842 -3.587548 -5.079553 3.420896 10.500188 -0.731521 2.313648 0.097790 -2.258441 7.715499 3.456534 0.786021 6.026543 4.561519 0.501936 -4.590057 -4.230382 3.558561 5.748696 0.855436 -5.309615 -1.404387 1.409380 1.571213 -1.877378 2.626498 4.082098 -1.379592 -0.906024 -0.052106 -4.291164 7.792794 -1.705544 -5.035322 2.209822 4.456403 -5.564315 -5.992834 -0.099638 -0.514330 -5.501646 -0.723459 0.602034 2.191966 5.661642 -11.551332 4.900734 1.642715 -0.325609 4.375935 -6.165020 1.985007 -13.473805 -1.239312 1.031046 4.849226 -0.866624 -2.285960 -0.566216 -6.802651 5.379832 -0.350351 3.274155 -2.735552 6.426709 -5.004972 -0.754363 -3.433498 -5.713394 -4.316116 2.841763 -2.714641 0.680709 2.082233 -8.521506 3.569661 -5.812497 -2.859255 1.243429 3.798788 4.200967 -2.811154 -5.380812 2.378655 -0.813079 -9.187327 -9.807966 -2.091996 2.518625 -1.477307 -4.409288 -4.172993 -7.894836 6.142815 -5.089091 3.197803 2.688394 -0.156210 8.461124 8.141978 -5.669304 -3.169208 -3.512631 1.214096 -1.908080 0.863557 -0.348633 -0.613075 2.102730 4.850826 0.094959 3.138570 -1.925256 9.332392 -2.920670 -5.932653 2.407975 -3.698004 0.819644 7.753729 3.965542 -3.081104 -3.149312 -8.708715 1.894421 -1.392458 -0.549183 4.642791 -5.446005 -0.789585 2.508024 0.738175 -3.712239 2.338022 2.124389 -3.548131 -6.106800 13.443911 10.406172 -5.582524 3.105576 -4.444462 4.683429 -4.187458 0.990392 -5.330405 0.327935 3.171619 2.930832 1.657460 3.347315 5.102079 -5.324642 -3.184719 -2.119221 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.129103 1.034879 1.025536 -0.864980 2.233490 0.957810 0.460824 0.091281 -0.599626 -1.541747 -0.531574 -1.521446 -2.696167 1.434493 -0.780282 0.251771 2.135884 -0.271794 0.544534 -1.106974 1.165236 -0.871248 2.842689 1.783821 -3.039150 0.398398 0.846137 1.466797 0.503991 1.921002 0.272320 -2.016911 0.515651 -0.184574 1.699754 -0.936773 -0.245482 -0.568930 -0.706045 -3.422592 -0.822939 1.384917 -1.084250 0.930457 0.770201 2.291611 2.893340 1.409432 -1.488070 1.759903 1.317729 0.139263 1.376175 0.305586 -0.585307 -0.390433 0.969048 -0.390729 -1.031062 0.527456 -0.782816 -2.328598 0.061586 1.811853 2.747820 -0.915903 -0.669498 0.651195 -0.406324 0.512862 0.092709 2.050223 1.147956 1.086733 2.377567 -1.008600 -0.397773 -3.432296 0.025697 -5.133861 -1.868944 -2.256326 1.078701 0.903451 0.509441 -0.646284 3.366401 0.510706 0.521685 1.789024 2.512222 -1.184822 -0.139506 -1.771759 -0.578670 0.233522 -1.070619 -0.309813 0.590623 0.464505 -1.362518 -1.461832 0.458575 -0.762381 -1.189848 -0.806775 -1.579038 1.812295 -2.647516 -0.865566 -3.133244 0.137725 -0.266365 -3.291038 -0.543215 0.060344 1.290898 0.778485 0.670546 -0.601917 0.708357 1.332137 -0.489563 -0.433295 -0.662988 2.542997 1.597349 -0.150994 0.586277 1.442103 0.474003 1.576775 2.451717 0.067110 -1.575591 0.971665 -0.423262 -0.052134 -0.954284 0.610235 1.401655 -1.540421 -0.047911 0.792880 -0.644257 -0.730657 -0.415722 -2.020610 1.153299 4.684123 -0.782563 1.057854 0.352907 -2.061971 1.201918 0.124934 -0.354088 1.075483 1.510805 1.797373 -1.874121 -1.150445 1.210570 2.062905 0.501785 -2.442208 -0.180599 0.075507 0.559230 -0.602495 0.631915 1.118491 -0.141491 -0.743407 0.185834 0.064087 3.365265 -1.217198 -2.424536 0.577887 1.252518 -0.602187 -1.802835 -0.181217 -0.778861 -1.090594 0.856805 0.109499 0.211955 2.031347 -4.173558 1.585589 0.322075 -0.498051 1.325206 -0.424121 0.060055 -2.726431 0.325176 1.470092 1.153872 0.423759 -0.045515 -0.729089 -1.990238 0.951458 0.474711 1.401453 -1.003560 1.917083 -0.623692 -1.340886 -1.495125 -1.205291 -0.482835 0.009868 -1.081977 0.727448 0.820168 -4.317688 1.744743 -1.012077 -1.328942 0.495127 0.054490 1.961729 -1.625971 -2.319752 0.917925 -1.379829 -2.477483 -1.505597 -0.616502 0.515895 0.594537 -0.296149 -1.539093 -2.696448 1.681925 -0.614344 0.899875 1.512195 0.844534 3.158117 0.376763 -2.026533 -1.463439 -1.442238 1.276783 -0.488172 -0.146082 -0.777302 -0.648826 1.111488 2.981841 -0.160523 0.234554 -1.281155 2.042018 -2.223824 -0.896118 1.350564 0.598775 -0.524630 1.540063 1.391266 -0.784680 -1.033423 -1.745327 0.505522 -0.549063 -0.885667 0.797816 -2.498021 -0.582840 1.451406 -0.435671 -1.420881 1.001506 -0.003401 -0.284798 -1.330679 2.711614 3.461883 -2.276229 0.917853 -1.437438 1.528258 -2.638783 -1.288024 -0.562289 -0.274087 0.572280 0.177472 0.297714 0.814303 0.931574 -1.249896 -0.933770 -0.508055 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(std::vector > const&) = -0.139707 3.411052 3.359435 -1.576104 4.108678 2.561942 1.335463 0.863635 -1.247888 -3.420908 -1.067966 -3.755260 -6.740405 3.558044 -0.888399 -0.349985 5.200486 -0.484407 0.377097 -2.132342 2.237079 -2.257825 6.194046 5.014214 -6.636653 1.407136 2.304408 2.737850 0.823615 4.456352 -0.910558 -4.322102 1.040972 0.235688 4.020321 -1.471439 -0.827112 -2.680599 -2.442257 -8.127426 -1.655878 3.440847 -1.804338 0.768237 1.059336 4.729617 7.708409 3.293527 -2.617112 2.106889 2.662823 -0.490380 2.405940 0.510237 0.364515 -1.007474 2.802404 0.404852 -2.632540 0.959361 -1.011718 -5.837269 -0.666822 4.353846 5.767893 -1.322236 -1.255306 0.575517 -1.104736 0.881012 -0.848995 3.935883 3.530975 2.634043 5.129864 -1.768997 -0.211669 -6.818987 0.070558 -11.643979 -5.025043 -5.156298 3.394163 1.560289 1.496661 -2.595254 7.440386 0.669347 1.684299 2.884756 6.737083 -3.458655 -0.733409 -3.753393 -1.366059 1.201198 -2.607393 0.062795 1.673959 -0.963505 -3.836772 -2.932555 2.265034 -0.975157 -2.849323 -0.530603 -2.761267 4.004917 -5.132451 -1.134576 -7.201347 -0.935607 0.286277 -7.594068 -0.604157 0.319969 2.373130 2.069788 0.347245 -1.901041 1.442159 2.938126 -1.313487 -1.788067 -2.892818 6.440996 3.199466 -0.593406 2.146025 2.620968 2.114720 3.156029 6.068470 -0.004550 -2.789731 1.537064 -1.978470 -0.124694 -1.505943 0.764601 2.863699 -3.056296 -0.601621 1.567105 -1.812747 -0.770673 -0.953474 -3.587861 2.695457 11.263852 -1.634647 2.663100 0.265899 -4.793072 4.220444 -0.321384 -2.422774 1.759231 3.769847 4.028128 -5.065563 -2.545454 2.825648 5.624355 1.521326 -5.405053 0.302405 -0.003731 0.413361 -2.380003 2.347326 1.659736 1.082432 -2.093725 -0.358291 1.736500 7.719822 -3.254170 -6.896207 1.310086 1.258959 0.047164 -4.156108 -0.090764 -0.762528 -1.634900 0.867430 -0.319075 1.708617 4.854104 -9.507676 4.041221 -0.174678 -2.803495 4.600556 -1.201590 -0.478441 -5.054660 1.845285 4.284827 3.524737 1.666097 -1.411149 -2.225084 -4.895575 0.890622 0.752369 2.744571 -2.671637 4.461027 -1.341301 -3.351173 -3.901171 -4.747775 -0.772679 -0.548843 -2.823869 1.346024 1.256085 -9.870811 5.405465 -1.161136 -2.555071 -0.036259 -0.737862 2.554079 -4.010169 -6.004210 1.534700 -2.649799 -5.605305 -3.126149 -1.930954 1.392026 1.143358 -0.973959 -3.461897 -6.367624 5.142035 -0.704025 3.410317 3.230471 2.444913 7.253111 3.861477 -4.401760 -2.974965 -3.098407 3.369036 -1.691186 -1.851869 -1.758613 -2.349849 2.542797 6.616241 -0.863279 0.929786 -3.373180 4.484604 -4.861695 -2.841204 3.121806 1.182225 -1.272332 2.909357 3.543318 -1.817338 -2.682948 -4.738033 -0.773232 -1.222655 -3.463151 1.243666 -5.366980 -0.837652 4.057714 -1.553403 -2.978754 2.018043 -0.589986 -0.863004 -2.507337 5.712047 7.639703 -5.994462 2.338886 -4.047459 3.738663 -5.965974 -3.374644 -0.248000 -0.354017 0.696095 -0.572609 1.082039 1.250219 1.261390 -3.348304 -2.072745 -0.773107 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = -0.053172 0.402366 0.318813 -0.083756 0.461611 0.168547 0.216516 0.156755 -0.260168 -0.522489 -0.154892 -0.471152 -0.796841 0.606238 -0.064596 0.137441 1.010996 0.264104 0.094311 -0.328197 0.306898 -0.572391 0.977272 0.935371 -0.851524 0.205409 0.446001 0.328297 0.128549 0.532456 -0.202066 -0.606364 0.427920 -0.321060 0.382018 -0.525853 -0.054196 -0.217980 -0.183473 -1.362770 -0.125710 0.148300 -0.117936 0.013624 0.002782 0.674775 1.057275 0.522250 -0.298068 0.476791 0.340636 -0.077619 0.237753 0.165158 0.085567 0.100360 0.187999 -0.024661 -0.466335 0.171409 -0.067537 -1.100290 -0.126471 0.584695 0.857975 -0.158446 -0.097140 0.212203 -0.227548 0.092209 -0.012521 0.377715 0.463325 0.225593 0.620441 -0.671719 -0.147701 -1.257742 -0.258149 -2.184491 -0.727512 -0.745480 0.603973 -0.049083 0.316248 -0.021479 0.954278 0.059822 0.350627 0.376444 1.055629 -0.763809 -0.288928 -0.447374 -0.009174 0.349840 -0.479149 0.017692 0.409049 -0.256961 -0.585727 -0.659428 0.652008 0.013088 -0.419754 -0.306247 -0.247284 0.634799 -0.964868 -0.430902 -1.160278 -0.355310 -0.071551 -1.044045 0.248211 0.113951 0.672224 0.481437 -0.080289 -0.556882 0.184971 0.495350 -0.084585 -0.460222 -0.198136 0.786195 0.263826 -0.063899 0.394439 0.298239 0.310125 0.805669 1.008905 -0.114445 -0.287735 0.281166 -0.458771 -0.034811 -0.388568 -0.210340 0.398181 -0.663614 0.069500 0.295291 -0.467393 -0.194353 0.369836 -0.333021 0.435793 1.412708 -0.065394 0.375480 0.176407 -0.777853 0.456814 -0.317844 -0.328631 0.268215 0.678108 0.505823 -0.698965 -0.419243 0.184801 0.856781 0.378334 -0.806664 -0.325073 -0.251792 0.175741 -0.142564 0.252673 0.258753 0.195752 -0.399473 -0.040573 0.345872 1.198839 -0.568767 -0.593571 0.128806 0.044036 -0.098085 -1.005204 -0.076478 -0.277156 -0.122783 0.004264 -0.039564 0.142240 0.785323 -1.408718 0.657984 -0.340973 -0.332670 0.474667 0.066278 -0.201549 -0.930962 0.317572 0.654176 0.720567 0.233550 0.095079 -0.127424 -0.749958 -0.084638 0.078811 0.417635 -0.332497 0.588856 -0.059584 -0.574739 -0.558515 -0.309072 0.068874 -0.308263 -0.104193 0.299577 0.415531 -1.578479 0.779959 -0.262182 -0.473462 0.192833 -0.032351 0.476012 -0.793607 -0.942723 0.321558 -0.276408 -0.643198 -0.366096 -0.218744 0.370518 0.031794 -0.319700 -0.215023 -0.834314 0.669562 -0.015469 0.388321 0.470856 0.268010 1.135565 0.182369 -0.646614 -0.462248 -0.184165 0.139325 -0.588107 -0.208047 -0.301359 -0.325461 0.524433 1.196003 0.052893 0.030004 -0.182136 0.731793 -0.961579 -0.429618 0.598805 0.636671 -0.097626 0.501245 0.615727 -0.631984 -0.422534 -0.529324 -0.097468 0.080202 -0.558014 0.224881 -0.872918 -0.021413 0.586572 -0.166836 -0.315182 0.445383 -0.076013 0.014583 -0.356826 0.788124 1.249552 -0.905703 0.223032 -0.568042 0.370604 -0.988759 -0.581315 -0.015061 0.353560 -0.106370 -0.000394 0.210854 0.214578 0.082202 -0.435426 -0.333680 -0.223769 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = 0.064969 0.478604 0.725819 -0.383850 0.449204 0.353617 0.109349 0.021411 -0.370109 -0.138776 -0.233835 -0.553165 -0.480298 0.504653 -0.028900 0.035198 0.865384 0.196999 -0.114403 -0.231009 0.160185 -0.386842 0.712695 0.870838 -0.760786 0.355994 0.263889 0.415260 0.126021 0.914853 -0.651534 -0.371410 -0.073834 0.016976 0.460134 -0.473130 -0.248455 -0.244952 -0.109903 -1.371025 -0.047403 0.398754 0.169005 -0.039375 0.220187 0.364899 1.075437 0.363302 -0.142908 0.172046 0.260373 -0.019203 0.397817 0.020422 0.373998 0.337451 1.091098 0.149774 -0.255134 0.180038 -0.019658 -0.587605 0.042669 0.580772 0.686794 -0.015579 -0.261457 -0.185408 0.148526 -0.073564 -0.079314 0.425232 0.091077 0.435607 0.288225 -0.434833 0.611178 -0.749276 0.180468 -1.071575 -0.678598 -0.512109 0.412027 0.240862 0.269511 -0.257302 0.914206 -0.222226 0.328609 -0.141196 0.816943 -0.585657 -0.089749 -0.266266 -0.318531 0.210045 -0.138330 -0.154900 0.110060 -0.192996 -0.450043 -0.433919 0.729987 0.043065 -0.476166 0.469382 -0.118857 0.484809 -0.576669 -0.342330 -0.689645 -0.129597 -0.119755 -0.817953 0.092993 -0.216255 0.077025 0.197211 -0.181471 -0.644340 0.173495 0.397051 -0.278271 -0.165422 -0.870812 0.890196 0.314335 -0.226873 0.166406 -0.011168 0.316197 0.375421 0.491950 -0.275410 -0.102525 0.310144 -0.392704 -0.193464 -0.350209 -0.092760 0.052201 -0.404710 -0.315468 0.212434 -0.381906 0.380516 -0.039613 -0.159541 0.232388 1.815171 -0.246820 0.381023 0.033915 -0.659421 0.757814 0.179482 -0.404006 0.166608 0.446666 0.588870 -1.096339 -0.364778 0.159842 0.818228 0.303099 -0.541569 -0.125135 -0.170932 -0.210894 0.061119 0.442595 -0.070410 0.060726 -0.359582 -0.161318 0.069596 1.290002 -0.242917 -1.040308 0.023479 -0.250269 -0.227400 -0.703836 0.027465 -0.288401 -0.071850 -0.360052 -0.142641 0.401674 0.642968 -1.537887 0.718975 -0.256923 -0.719967 1.041995 -0.313200 -0.067148 -0.566365 0.140454 0.529050 0.769715 0.071002 -0.307529 -0.160610 -0.658397 -0.106887 -0.009169 0.294073 -0.557565 0.590228 0.153512 -0.657079 -0.257373 -0.643372 0.047635 -0.296082 -0.494742 0.230125 0.024215 -1.200359 0.691048 0.132507 -0.163566 0.245469 -0.178964 -0.091479 -0.565120 -0.622355 0.090552 0.044156 -0.237151 -0.255445 -0.344503 0.330928 -0.032327 -0.068302 -0.632082 -0.774522 0.420875 -0.233378 0.434826 0.518130 0.126943 0.454172 0.968803 -0.300857 -0.291148 -0.067724 0.081264 -0.174518 -0.127924 -0.233121 -0.545156 0.367752 0.955071 -0.035034 0.273144 -0.471843 0.633934 -0.344160 -0.276617 0.297037 -0.329655 -0.248991 0.064571 0.403127 -0.309019 -0.288743 -0.519904 -0.419045 -0.034524 -0.291881 0.379551 -0.573895 -0.074241 0.513955 -0.375260 -0.417524 0.349723 -0.159543 -0.239255 -0.059401 0.777451 0.627564 -0.397529 0.493470 -0.455976 0.433496 -0.745516 -0.191650 -0.147928 -0.012731 -0.371313 -0.142613 0.209239 0.264683 0.084963 -0.118996 -0.056046 -0.111847 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::char_traits::length(char const*) = -0.047959 0.074187 0.150852 -0.097095 0.169069 -0.040761 0.085106 0.002587 -0.187054 -0.288537 0.020654 -0.325482 -0.337677 0.278622 -0.097826 0.057152 0.396993 0.088617 0.021521 -0.205347 0.083720 -0.228953 0.444247 0.449787 -0.380770 0.072168 0.097082 0.203905 0.117136 0.184709 0.039327 -0.273047 0.145170 -0.045471 0.159462 -0.183221 -0.017049 -0.004840 -0.071148 -0.570688 -0.049943 0.136265 0.077063 0.033706 0.037695 0.346494 0.380087 0.245882 -0.102309 0.299784 0.227428 -0.006760 0.151387 0.058174 0.027454 -0.104148 0.158474 -0.180372 -0.188637 0.087118 -0.019847 -0.457826 -0.071060 0.290635 0.418813 -0.078543 -0.056380 0.014940 -0.070522 0.097232 0.077826 0.187622 0.125286 0.112548 0.238713 -0.220717 0.025316 -0.583535 -0.051627 -0.997705 -0.308667 -0.213211 0.394175 0.157394 0.046081 0.035571 0.430770 0.095797 0.045847 0.192963 0.424459 -0.227646 -0.130408 -0.073812 -0.055988 0.175175 -0.217742 0.054169 0.086398 0.118905 -0.245923 -0.163811 0.243737 -0.056587 -0.183833 -0.035782 -0.105422 0.225626 -0.503444 -0.105493 -0.395801 -0.054455 0.083527 -0.463438 0.115922 -0.038266 0.278618 0.167500 -0.075430 -0.083781 0.080283 0.070455 -0.045615 -0.036890 -0.362809 0.281679 0.087056 0.029298 0.111920 0.161313 0.130608 0.299637 0.230672 -0.118414 -0.111806 0.119691 -0.132948 0.058125 -0.161478 -0.089342 0.195626 -0.273149 0.107635 0.008561 -0.193854 -0.201491 -0.011250 -0.121624 0.125977 0.490782 -0.010801 0.233741 0.174870 -0.272173 0.107471 -0.146694 -0.048953 0.146156 0.264172 0.160684 -0.062753 -0.204702 0.126690 0.392930 0.160782 -0.277092 -0.096596 0.025423 0.091004 -0.038347 0.158905 0.100618 0.020184 -0.164950 -0.019937 0.132903 0.438591 -0.092518 -0.110715 0.015050 0.074480 -0.030252 -0.313386 0.008641 -0.049450 -0.011005 -0.004040 0.044549 0.057003 0.340731 -0.721745 0.296792 -0.025945 -0.002619 0.172062 0.003863 -0.158386 -0.514861 0.089499 0.205575 0.287825 0.054183 0.090285 0.031890 -0.341656 -0.023180 0.021137 0.137715 -0.188958 0.258789 0.005404 -0.204364 -0.222308 -0.145654 0.019265 -0.032883 -0.098900 0.174861 0.247848 -0.684451 0.282926 -0.136853 -0.236388 -0.020933 -0.025848 0.214408 -0.351482 -0.318678 0.074136 -0.227878 -0.381874 -0.222255 -0.096389 0.084825 -0.084467 -0.102066 -0.080190 -0.190088 0.318211 -0.092154 0.164441 0.198305 0.031372 0.396850 0.091342 -0.221983 -0.120684 0.003919 0.076285 -0.324539 -0.070456 0.109996 -0.112287 0.172309 0.465811 0.024333 -0.047238 0.063015 0.319132 -0.261731 -0.238387 0.208970 0.140766 -0.027509 0.336657 0.220488 -0.302267 -0.074731 -0.298366 -0.056287 0.012676 -0.205817 0.186731 -0.268338 0.031388 0.182253 -0.041022 -0.173378 0.219917 -0.014112 -0.049391 -0.093159 0.413796 0.496524 -0.267519 0.162747 -0.306802 0.122478 -0.404969 -0.249946 -0.030619 0.153080 -0.080969 -0.000644 -0.032766 0.139574 0.119721 -0.176340 -0.202373 0.069934 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -0.339036 1.281610 1.549463 -1.414356 3.335246 1.066634 1.069069 0.820199 -1.430988 -3.032192 -0.588773 -3.137955 -4.911965 2.484752 -0.851227 0.677050 4.345654 -0.107591 0.524551 -1.952775 1.982649 -1.979029 5.173176 4.050906 -5.140360 0.817649 1.174346 2.606242 0.841609 2.426246 0.239432 -3.189952 1.152106 -0.747919 2.988991 -1.702428 -0.405095 -1.008260 -1.201424 -6.492636 -1.326311 2.709040 -1.239931 1.127558 0.968083 4.465936 5.054618 2.781871 -2.538881 2.988928 2.558636 -0.560359 2.311173 0.628964 -0.849429 -0.766339 1.017222 -0.419986 -2.112610 0.736836 -0.951471 -4.938775 0.066215 3.115910 4.809865 -1.702474 -1.257756 1.170500 -0.235107 0.762923 0.464047 3.398652 2.396274 0.968744 4.429697 -2.264156 -0.807065 -6.485494 0.017521 -10.552966 -3.915838 -3.820918 3.237130 1.226917 1.085178 -1.512351 6.230103 0.361197 0.947037 3.077571 4.400591 -2.699710 -0.748444 -3.082410 -0.714682 0.958716 -2.323628 -0.537822 1.905523 0.610449 -2.824112 -2.063567 1.590081 -1.163262 -2.218114 -1.722206 -2.293749 3.185282 -4.553457 -1.678751 -5.977167 0.326992 0.214486 -5.867690 0.081395 0.171443 2.205514 1.665786 0.429393 -0.995062 1.075357 1.673349 -0.955882 -0.896073 -2.010438 4.693094 2.520059 -0.231179 1.742119 2.749773 1.089144 3.136697 4.735970 -0.357150 -2.757910 1.975179 -1.435401 0.388851 -1.729626 0.264254 3.091507 -3.072773 -0.150179 0.868180 -1.580503 -1.254234 0.005683 -2.728785 1.871372 8.155556 -0.881631 2.276994 1.150470 -3.362392 2.995663 -0.511849 -0.756041 2.027247 3.166019 2.647107 -3.525929 -2.212610 2.070976 4.356426 1.290367 -4.570637 -0.392739 0.471844 1.363002 -1.361809 1.262918 2.001083 0.796228 -1.523194 0.232658 0.897015 6.122441 -2.198409 -3.608677 0.906278 2.101276 -0.741292 -4.078142 -0.386398 -1.578928 -1.723182 1.090512 0.447025 0.609177 3.921077 -7.177086 2.906795 -0.110772 -0.691953 2.841870 -0.325071 -0.515472 -5.743593 0.631519 2.515580 2.828513 0.705681 -0.039800 -1.001542 -3.736021 1.154986 0.739140 2.176372 -1.778060 3.508086 -1.402785 -1.996272 -2.397680 -2.602442 -0.864496 -0.152883 -1.419744 1.516453 1.888137 -7.350956 3.285397 -1.758697 -2.688986 0.540941 -0.169717 3.330571 -3.268726 -4.216654 1.828427 -2.302775 -4.656668 -2.945832 -1.171277 1.189096 0.651435 -1.261676 -2.294346 -4.852392 4.222024 -0.866589 2.469620 2.610628 0.925051 5.854169 1.638459 -3.712153 -2.398935 -2.434784 1.423966 -1.766168 -0.792403 -1.411061 -1.285277 2.072772 5.265412 -0.282336 0.641098 -1.576955 3.768482 -4.449279 -2.017940 2.639059 1.635093 -0.675383 3.461156 2.830362 -2.315232 -1.663548 -3.607482 0.459204 -0.608748 -2.043969 1.667419 -4.420582 -0.565765 2.678774 -0.792453 -1.945463 1.826579 0.093630 -0.517168 -2.450368 5.310843 6.556730 -4.007995 1.447889 -3.214010 2.657336 -4.763129 -2.527672 -0.706480 0.467433 0.286208 0.175478 1.223594 1.465212 1.513395 -2.926239 -2.330082 -0.460643 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.121920 0.285697 0.408187 -0.646375 0.864158 0.471727 0.001535 0.004627 -0.441503 -0.585623 -0.343180 -0.641559 -0.877482 0.650457 -0.283563 0.224817 0.802941 -0.095795 -0.028022 -0.369115 0.571426 -0.188184 0.849392 0.468034 -1.030773 0.119872 0.307213 0.796978 0.180998 0.910377 0.073339 -0.884425 -0.208248 0.158004 0.693031 -0.419042 0.045540 0.143565 -0.234130 -1.274028 -0.230024 0.716396 -0.169291 0.290655 0.198767 0.315660 0.865491 0.563155 -0.487044 0.398729 0.736403 0.415646 0.363196 0.079622 -0.245737 0.049752 0.455412 -0.496089 -0.231613 0.140618 -0.112284 -0.546620 0.080199 0.664938 0.975357 -0.366399 -0.312525 0.278019 -0.008871 0.208819 0.030994 0.657856 0.060103 0.286685 0.622503 -0.351982 -0.066375 -1.214519 0.461952 -1.506904 -0.565034 -0.792981 0.261276 0.880767 0.065571 -0.260176 1.430817 -0.133868 0.021688 0.685681 0.872060 -0.319866 0.003900 -0.935772 -0.397859 0.157585 -0.401876 -0.471810 -0.107456 0.608256 -0.313467 -0.517786 0.000000 -0.351307 -0.481878 -0.198865 -0.671676 0.777309 -1.029267 -0.296661 -0.983521 0.614019 0.000000 -1.098790 -0.469618 -0.250981 -0.049622 -0.057731 0.239731 -0.304501 0.252623 0.462761 -0.362118 0.063624 -0.612451 0.790819 0.603272 -0.403335 0.073435 0.432920 0.227292 0.518929 0.462623 -0.294757 -0.705825 0.596328 -0.004165 -0.220542 -0.575861 0.286603 0.267171 -0.638998 -0.067273 0.349515 -0.207592 -0.204497 -0.538234 -0.917981 0.421696 2.050129 -0.300438 0.191486 0.047323 -0.635705 0.604691 0.284744 -0.246332 0.353672 0.300556 0.612614 -0.564895 -0.546453 0.558947 0.805971 0.253234 -0.498610 -0.092301 0.008733 0.087317 -0.081087 0.254887 0.467026 -0.381694 -0.051733 -0.139618 -0.131090 1.278044 -0.112958 -0.688729 0.359348 0.794128 -0.518183 -0.479176 -0.106252 -0.583019 -0.484377 0.412174 0.003402 0.363889 0.864003 -1.655478 0.679700 0.405061 -0.241311 0.401959 -0.440328 0.295127 -1.003500 -0.098512 0.576438 0.684530 -0.239794 0.248192 -0.326794 -0.820926 0.354926 0.244458 0.545144 -0.450726 0.570288 -0.118208 -0.419003 -0.408281 -0.248264 -0.529672 0.005239 -0.470888 0.237787 0.294050 -1.416399 0.776428 -0.401064 -0.080756 0.274805 0.030404 0.744227 -0.593252 -0.709667 0.483566 -0.088072 -0.644064 -0.276468 -0.154391 0.520811 0.049863 0.050579 -0.566736 -1.006935 0.426269 -0.148519 0.321219 0.423377 0.241353 0.599820 0.199229 -0.456838 -0.407251 -0.525919 0.355423 -0.008339 0.156600 -0.181724 -0.085429 0.434455 0.907066 0.039332 -0.052055 -0.386567 0.816593 -0.406360 -0.238840 0.318701 -0.335244 -0.364550 0.429477 0.451395 -0.347001 -0.486583 -0.907868 0.476138 -0.263885 -0.340779 0.298659 -0.789756 -0.203993 0.726734 -0.243857 -0.638245 0.501495 0.256650 -0.387460 -0.453664 1.276724 0.631981 -0.337700 0.513251 -0.669793 0.500802 -0.936685 -0.351132 -0.392719 -0.206899 0.037957 0.065565 -0.022947 0.395001 0.181564 0.152600 -0.237687 -0.352285 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.177704 0.931784 0.455145 -1.074629 1.525505 0.807394 0.483635 0.180982 -0.932787 -1.432578 -0.097780 -2.597367 -2.405792 1.344374 -0.365619 0.143816 2.766027 -0.156160 -0.014320 -0.925249 0.385694 0.203331 2.906240 2.899549 -2.374051 0.565765 0.542068 0.866408 -0.091152 0.364158 0.090932 -2.428565 0.465580 -0.182993 0.843104 -0.227771 -0.640719 -0.995856 0.041848 -3.599001 -0.391243 1.087704 -0.560513 0.097202 0.324135 1.481622 3.259739 1.440340 -0.746802 1.136817 1.359148 0.269179 0.874352 0.091552 0.013925 -0.590632 0.343743 -0.453538 -0.816602 0.038831 -0.249375 -1.204800 -0.611573 1.947036 2.125594 -0.208377 -1.158033 0.230269 0.342894 0.276676 -0.161576 1.740055 1.281949 1.301220 1.643464 -0.938022 -0.318797 -3.341343 0.266471 -4.863193 -2.333039 -1.285971 2.054494 0.832320 0.400536 -0.612382 3.190754 -0.122520 0.588974 1.774753 2.751620 -1.351613 -0.604106 -1.004458 -0.596519 0.709123 -0.744827 0.510424 0.455022 0.411243 -1.900644 -0.972338 0.704979 -0.567297 -1.316826 -0.605741 -0.189061 0.999489 -1.868492 -0.295759 -2.655906 0.664901 0.811968 -3.291581 -0.989191 0.175740 0.998631 0.862437 -0.953360 -1.133829 0.520558 0.246929 -0.887000 -0.218981 -1.195070 1.849006 1.457201 0.118702 0.920385 1.369892 1.484193 2.410734 1.327960 -0.677106 -0.625221 0.599327 -0.372645 0.037903 -0.602753 -0.077029 0.677319 -1.507604 1.087357 0.741250 -1.237254 -1.001891 -0.526093 -1.204096 0.509569 5.098855 -0.743389 1.807280 1.002971 -1.830175 1.018034 -1.144787 -0.879958 0.278752 1.487451 1.860350 -1.311867 -1.111552 1.487586 2.861264 0.943400 -2.028146 0.629878 0.861212 0.303079 -0.957517 1.265311 0.463492 0.856565 -0.848809 -0.147818 1.740063 3.525081 -0.634659 -1.768183 0.161382 1.602126 0.932024 -0.977013 0.019680 -0.856815 -0.384896 1.464049 0.514629 0.927630 2.262640 -4.162134 1.495861 0.338789 -0.349438 1.363693 0.633684 -1.111158 -1.954738 0.443029 1.677167 1.766772 0.284646 0.172262 -0.767015 -1.956818 -0.096250 0.776668 0.876715 -1.434187 1.981879 -0.275952 -1.375743 -0.939051 -1.269318 -0.583874 -0.000426 -1.179017 1.083135 0.759386 -4.178402 2.294983 -0.018828 -1.259479 -0.488469 -1.301368 1.746036 -1.947162 -2.109512 0.828325 -1.453676 -2.082371 -0.329883 -0.899396 0.459310 0.563372 0.760463 -1.501462 -1.978788 2.726071 0.403854 2.134445 1.497357 0.269114 2.348795 -0.266022 -1.464007 -0.684483 -1.805879 1.567615 -0.418324 -1.128497 -0.016083 -1.133621 1.007373 2.607276 -0.701845 -0.695250 -0.908428 1.363312 -2.096551 -0.553560 0.917627 0.697454 -0.901825 1.423585 1.323424 -1.199676 -0.212343 -2.232047 0.013218 -0.949904 -1.538560 0.687221 -1.807532 -0.118420 1.570077 -1.023724 -0.770642 0.973910 -0.104851 -0.214053 -0.163037 2.090488 2.643838 -1.469324 0.847581 -2.370230 1.445698 -2.591359 -2.145684 0.289113 -0.389168 -0.582421 -0.803388 -0.255425 0.845885 0.306786 -1.181217 -1.579124 0.860247 +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.011310 0.421739 0.263065 -0.071968 0.399490 0.266207 0.130867 0.124506 -0.163716 -0.401918 -0.140720 -0.454553 -0.653646 0.418042 -0.071171 -0.004163 0.679527 0.105320 0.085189 -0.172587 0.070131 -0.159776 0.694582 0.641963 -0.607039 0.196992 0.239994 0.167541 -0.055387 0.487415 -0.119740 -0.691235 0.248375 0.023752 0.237003 -0.234320 -0.106156 -0.258613 -0.202346 -0.962237 -0.104625 0.289501 -0.149736 0.006679 0.081482 0.305427 0.878437 0.337031 -0.146558 0.310949 0.199819 0.120320 0.181830 0.086574 0.090973 -0.020264 0.166937 -0.254166 -0.330614 0.119082 -0.049538 -0.639993 -0.254388 0.436864 0.560253 -0.076303 -0.125162 0.006036 -0.227845 0.066174 -0.087762 0.311887 0.379935 0.321306 0.364465 -0.122165 -0.091317 -0.619828 -0.092680 -1.292566 -0.545451 -0.523663 0.455074 0.317128 0.144587 -0.138373 0.710960 0.011927 0.274296 0.268519 0.801540 -0.457341 -0.173975 -0.275521 -0.040069 0.236072 -0.282658 0.041947 0.018720 -0.149539 -0.425500 -0.436803 0.349717 -0.072197 -0.313419 -0.077885 -0.170417 0.388372 -0.714894 -0.156249 -0.794115 -0.161809 0.043812 -0.747455 -0.094393 0.163382 0.292216 0.343254 -0.092351 -0.345063 0.169354 0.264644 -0.108797 -0.229497 -0.291493 0.518305 0.202860 -0.064081 0.272002 0.223475 0.325041 0.547263 0.525047 -0.061908 -0.167574 0.150972 -0.127342 -0.055148 -0.168291 -0.040552 0.018515 -0.410645 0.146910 0.232797 -0.321762 -0.160823 -0.260214 -0.337316 0.277242 0.971556 -0.140000 0.279190 0.082405 -0.588924 0.248925 -0.244127 -0.335230 0.073651 0.414840 0.479810 -0.248552 -0.247400 0.212661 0.641042 0.242637 -0.408803 0.051528 -0.069617 0.074312 -0.177874 0.309362 0.149089 0.159026 -0.278190 -0.060113 0.285485 0.852976 -0.266885 -0.511448 0.092030 0.122968 0.109667 -0.320364 0.014421 -0.083204 -0.085370 0.190977 -0.049333 0.128694 0.544188 -0.983469 0.466928 -0.086100 -0.281393 0.298522 0.017397 -0.124583 -0.331486 0.227492 0.520875 0.493068 0.180108 0.106388 -0.215591 -0.513493 -0.077794 0.106646 0.293170 -0.293062 0.437109 0.013262 -0.482242 -0.392887 -0.359018 0.022064 -0.159844 -0.279551 0.187181 0.340887 -1.157602 0.611063 -0.079939 -0.291712 -0.001028 -0.107918 0.333198 -0.531361 -0.655037 0.177938 -0.310889 -0.554633 -0.073274 -0.227835 0.189883 0.095209 -0.038686 -0.200975 -0.490503 0.530153 0.151364 0.308656 0.361919 0.231239 0.695578 0.150188 -0.437530 -0.168878 -0.315746 0.385286 -0.378174 -0.124116 0.028954 -0.308077 0.310263 0.826863 -0.011063 -0.109213 -0.272897 0.433890 -0.484738 -0.204607 0.378049 0.236709 -0.095609 0.299209 0.412153 -0.303695 -0.269709 -0.443736 0.023734 -0.057793 -0.404888 0.096384 -0.611364 -0.065524 0.503369 -0.198530 -0.367894 0.275180 -0.110089 -0.092425 -0.196905 0.506927 0.615422 -0.569662 0.368436 -0.418020 0.287791 -0.686742 -0.432253 -0.010571 0.037045 -0.072089 -0.104373 -0.038754 0.090591 0.026703 -0.183814 -0.248997 -0.061567 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__introsort_loop >(suffix*, suffix*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -0.372860 1.224284 0.633703 -1.514220 2.072052 1.421437 0.712724 0.242095 -1.649227 -2.213826 -0.192021 -3.544106 -3.454008 2.394005 -0.481759 0.459241 4.346602 0.077914 -0.127251 -1.322182 1.165091 -0.325551 4.276602 4.491711 -3.649758 0.841716 1.127747 1.168567 0.199606 1.095496 0.115857 -3.645563 0.790209 -0.713538 1.494339 -1.078499 -1.012162 -0.988452 0.243378 -5.794885 -0.579831 1.897488 -0.652709 0.070337 0.525300 2.222205 4.770140 2.223213 -1.342956 1.922722 2.019304 0.399455 1.316593 0.090273 0.187894 -0.350439 0.505321 -0.189153 -1.091027 0.251469 -0.501080 -2.082750 -0.598768 3.015166 3.451081 -0.520300 -1.657262 0.401666 0.393076 0.460974 -0.180718 2.652475 1.938531 1.574022 2.643267 -1.978679 -0.614372 -5.592714 0.529074 -7.891498 -3.309682 -1.904213 2.950241 1.098632 0.847433 -1.082065 4.950532 -0.549295 0.680575 2.846719 4.250677 -2.199338 -0.801533 -1.693489 -1.074249 1.031283 -1.307190 0.430048 0.872399 0.172830 -2.856179 -2.098174 1.176844 -0.557874 -2.080313 -1.132401 -0.508203 1.915154 -3.184741 -0.877251 -4.028832 0.822722 0.782600 -4.995926 -1.281670 -0.228851 1.265525 1.382682 -1.562028 -2.042623 0.969950 0.734498 -1.243179 -0.857855 -1.326418 3.070585 2.028854 0.143049 1.152612 1.706679 1.934682 3.593698 2.499957 -1.116937 -0.812799 1.117942 -0.803546 0.069882 -1.294170 -0.303706 1.465620 -2.345412 0.906402 1.145788 -1.925423 -1.228910 0.118246 -1.936601 0.762840 8.457866 -1.102934 2.679009 1.541831 -2.945915 1.896691 -1.265581 -1.240040 0.719702 2.539496 2.908102 -2.796433 -1.757692 2.162813 4.471791 1.504356 -3.172781 0.228741 0.973015 0.480872 -1.150021 1.946972 0.518522 1.163426 -1.609170 -0.305989 2.219119 5.583646 -1.374951 -2.500470 0.148308 2.407327 0.720656 -2.231138 0.053781 -1.932563 -0.542470 1.843017 0.398113 1.517303 3.497366 -6.494072 2.571923 -0.099847 -0.804525 2.043856 0.897640 -1.538046 -3.500752 0.635835 2.457551 2.951003 0.470686 0.448184 -0.929923 -3.290002 -0.119800 0.939698 1.418998 -2.335854 3.203954 -0.406855 -2.120645 -1.524472 -1.494083 -0.861291 -0.711236 -1.560347 1.679450 1.282652 -6.027430 3.441290 -0.067442 -1.711821 -0.391840 -1.323086 2.526259 -3.055345 -3.488969 1.450490 -1.768383 -2.935009 -0.674295 -1.475584 1.113625 0.952394 0.549544 -2.231627 -3.700329 3.913119 0.288358 3.329747 2.278079 0.325983 3.781930 -0.024192 -2.101643 -1.522659 -2.439526 1.928409 -0.750169 -1.531804 -1.043710 -1.690588 1.774095 4.097745 -0.809867 -0.913820 -1.458312 2.561101 -3.263904 -0.682498 1.453026 1.303700 -1.292396 1.966201 2.053609 -2.043062 -0.452216 -3.316847 0.100502 -1.275771 -2.145942 1.320628 -2.856295 -0.115838 2.227283 -1.405604 -1.143134 1.460900 0.164183 -0.459482 -0.333019 3.352104 4.056427 -2.442323 1.118936 -3.481384 2.211259 -4.009267 -3.030754 0.059739 -0.193664 -1.030079 -1.100852 -0.111617 1.429325 0.768796 -1.557377 -2.093089 0.930030 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__long std::__lg(long) = -0.204744 -0.269311 0.008870 -0.278055 0.104661 0.065262 0.164878 -0.331316 -0.411054 -0.308171 0.258053 -0.673322 -0.286631 0.484484 -0.219970 0.377447 0.532198 0.068558 -0.217882 -0.261637 0.162631 -0.025398 0.695660 0.680097 -0.328599 -0.002524 -0.183686 0.169270 0.198167 -0.047618 0.263904 -0.250540 0.311710 -0.233901 0.030959 -0.081769 -0.103749 0.204495 0.224009 -0.622403 0.002866 0.252722 0.251267 -0.008450 0.047662 0.345022 0.281495 0.372201 0.228851 0.451339 0.187424 -0.061705 0.285656 0.073929 0.221654 -0.135396 0.163360 -0.560703 -0.212232 -0.042815 -0.138410 -0.272609 -0.096985 0.430585 0.499891 -0.046078 -0.190477 0.074249 0.094813 0.199315 0.269544 0.305406 -0.044337 0.119299 0.142998 -0.484790 0.180793 -0.401275 -0.038705 -0.949035 -0.351163 0.126840 0.534544 0.378916 0.149554 -0.037752 0.582115 0.046129 -0.319418 0.198685 0.516348 -0.353419 -0.180173 0.104228 0.093833 0.009849 -0.256474 0.150879 0.137047 0.346946 -0.407835 0.108031 0.194760 -0.006529 -0.199068 -0.055598 0.037500 0.342852 -0.582662 -0.203356 -0.137281 0.254996 0.091169 -0.660892 0.170533 -0.183703 0.183461 0.141795 -0.366558 -0.152121 0.245840 -0.022988 -0.045895 -0.048058 -0.550758 0.277724 0.164841 0.195021 -0.033210 0.468808 0.095324 0.668422 0.017661 -0.230264 0.079991 0.088088 -0.046165 0.334130 -0.023158 -0.229123 0.076070 -0.428107 0.043624 0.079137 -0.252786 -0.156793 -0.165845 0.177333 -0.069590 0.821498 -0.117794 0.553647 0.514848 -0.301405 -0.051226 -0.353361 0.195678 0.070950 0.225387 0.104735 -0.259179 -0.365730 0.416611 0.625036 0.253662 -0.379273 0.103544 0.169178 0.148469 -0.117937 0.220445 0.115567 0.119961 -0.290233 -0.029535 0.185936 0.718160 -0.190628 0.250985 0.031954 -0.043793 0.121095 -0.324823 -0.068907 -0.035957 0.062313 0.034595 0.245070 0.059628 0.475136 -0.444497 0.460929 -0.040785 0.118191 0.426057 0.143823 -0.410895 -0.624891 -0.277248 0.138161 0.354903 -0.118295 0.089732 0.173223 -0.507611 -0.004320 0.011273 0.050704 -0.230586 0.307471 0.099987 -0.128724 -0.111392 0.028843 0.045798 -0.012143 -0.094044 0.372747 0.382178 -0.536872 0.292663 0.037990 -0.307336 -0.039352 -0.008896 0.472821 -0.361914 -0.240613 0.135020 -0.389141 -0.545872 -0.253217 -0.097214 0.036454 -0.104286 0.025615 -0.250499 -0.007567 0.546479 -0.206689 0.487626 0.206049 -0.158173 0.320515 -0.101289 -0.246126 0.006639 -0.294388 -0.104401 -0.246050 -0.216884 0.254992 -0.057201 0.328862 0.326172 0.040695 -0.313874 0.261423 0.354674 -0.453694 -0.117841 0.221041 0.214084 -0.245693 0.389026 0.267979 -0.416981 0.190537 -0.276226 -0.225383 -0.279583 -0.209248 0.382713 -0.030212 0.211838 -0.116751 0.028807 -0.045146 0.181089 0.110975 -0.067355 0.152699 0.605417 0.485438 -0.041521 -0.027595 -0.542227 0.248000 -0.402383 -0.392717 0.103191 0.308560 -0.279106 -0.073213 -0.068059 0.371029 0.377880 -0.458227 -0.375734 0.316746 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__final_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.059376 1.473744 0.941171 -1.216581 1.809838 1.341067 0.494095 0.555728 -1.032243 -1.814111 -0.398588 -2.870579 -2.955609 1.619640 -0.409650 -0.149140 3.283050 -0.045164 0.041166 -0.802159 0.325755 0.389353 3.223737 3.270221 -2.847760 0.768261 0.641154 0.928587 -0.278714 1.241762 -0.116788 -3.350711 0.442136 0.327522 1.186687 -0.469285 -0.804164 -1.287834 -0.442175 -4.414444 -0.431362 1.847734 -0.832300 0.019647 0.618615 1.293294 4.112010 1.585894 -0.916921 1.076827 1.389950 0.735082 0.958329 0.057163 0.104338 -0.491963 0.526660 -0.793733 -1.014175 0.177821 -0.305066 -1.538608 -0.886016 2.270050 2.414014 -0.251644 -1.258359 -0.154942 0.175580 0.253344 -0.365621 1.944534 1.749239 1.638051 1.814933 -0.423334 -0.364684 -3.292665 0.501112 -5.238138 -2.710071 -1.810366 2.377685 1.744935 0.338420 -1.348645 3.700909 -0.491183 0.999913 1.934708 3.333287 -1.510543 -0.623903 -1.465379 -0.743478 0.905178 -0.895842 0.254018 -0.043770 0.055580 -2.158746 -1.363435 0.748948 -0.647387 -1.572318 -0.295909 -0.357450 1.327968 -2.398374 -0.249811 -3.317403 0.718113 0.942243 -3.771763 -1.435089 0.261600 0.637083 1.096632 -1.038459 -1.355956 0.702861 0.489721 -1.072688 -0.308768 -1.718452 2.502711 1.537210 -0.119887 1.068221 1.326332 1.758495 2.451923 1.664041 -0.692856 -0.711745 0.767026 -0.368733 -0.273653 -0.764082 0.085010 0.429401 -1.620592 0.802200 1.003017 -1.476451 -0.857994 -1.464320 -1.660759 0.798133 6.218338 -1.041219 1.891666 0.842956 -2.311408 1.517327 -0.915455 -1.367364 0.155454 1.700569 2.514367 -1.655324 -1.154993 1.604442 3.313469 1.103961 -1.985761 1.073197 0.767562 0.219639 -1.123429 1.657441 0.441951 1.011473 -1.216077 -0.294678 1.864040 4.176282 -0.639585 -2.596249 0.143707 1.791014 1.039826 -0.725298 0.170528 -0.853761 -0.462680 1.813266 0.224039 1.194495 2.644186 -4.773160 1.898712 0.396656 -0.878359 1.644465 0.367983 -0.965728 -1.672228 0.654337 2.171410 2.262248 0.475431 0.269348 -1.125002 -2.304752 -0.187874 0.860520 1.213167 -1.738478 2.293338 -0.155677 -1.843571 -1.220453 -1.937504 -0.704885 -0.238848 -1.767901 1.071494 1.029865 -4.803015 2.868405 0.099864 -1.232636 -0.557586 -1.393682 1.777214 -2.346979 -2.643338 0.903833 -1.510834 -2.568803 -0.159195 -1.204612 0.713782 0.794580 0.799782 -1.784927 -2.662670 3.101257 0.763176 2.440181 1.786448 0.513655 2.720064 0.577146 -1.521622 -0.710712 -2.394409 2.234047 -0.554190 -1.136247 -0.119605 -1.529473 1.152394 3.241062 -0.887007 -0.753408 -1.593078 1.655132 -2.110530 -0.480506 1.104363 0.332424 -0.925811 1.338414 1.609476 -1.247029 -0.567295 -2.688539 0.239302 -1.015676 -1.782551 0.660147 -2.379437 -0.239499 2.164002 -1.270108 -1.384724 0.970613 -0.199208 -0.645950 -0.274071 2.419202 2.640207 -1.769058 1.550015 -2.581841 1.763399 -3.099487 -2.306132 0.086886 -0.848083 -0.629114 -0.928435 -0.342322 0.830563 0.255664 -0.838559 -1.582270 0.779938 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__partial_sort >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.132434 1.143752 0.822121 -0.232814 0.948838 0.626248 0.307783 0.532246 -0.393502 -1.044591 -0.375582 -1.086431 -1.779061 1.011087 -0.040725 -0.269165 1.774629 0.186628 0.189961 -0.553317 0.252021 -0.475556 1.706209 1.712856 -1.718267 0.585488 0.767862 0.495195 0.136801 1.055766 -0.271460 -1.519832 0.486482 0.059959 0.801599 -0.598960 -0.362510 -0.881001 -0.664488 -2.630440 -0.342355 0.729550 -0.621336 0.053014 0.298300 1.205240 2.386681 0.834454 -0.640344 0.752989 0.597882 0.094400 0.487592 0.101234 0.131983 -0.160531 0.473513 -0.074902 -0.744704 0.409446 -0.041816 -1.731442 -0.537836 1.148797 1.436164 -0.271727 -0.435490 0.023487 -0.278749 0.110013 -0.321427 0.918460 1.195897 0.818626 1.185770 -0.484368 -0.295284 -1.972877 -0.079803 -3.685283 -1.521734 -1.421088 1.386861 0.347450 0.217957 -0.542960 1.895243 -0.003005 0.774559 0.891368 2.032096 -1.035643 -0.376868 -0.842411 -0.183337 0.702523 -0.675903 0.144897 0.320852 -0.515211 -1.108842 -1.077112 0.905110 -0.293896 -0.913073 -0.143603 -0.475484 1.051291 -1.660665 -0.262793 -2.148157 -0.390102 0.245422 -1.972078 -0.301707 0.385643 0.979225 0.893398 -0.206489 -0.736919 0.327261 0.626768 -0.329015 -0.507677 -0.635941 1.548218 0.662039 -0.148317 0.736411 0.669945 0.945165 1.151244 1.610127 -0.114977 -0.484357 0.474362 -0.431363 -0.196558 -0.484646 -0.023967 0.462444 -0.890196 0.246809 0.482921 -0.808305 -0.442478 -0.244257 -0.924788 0.664791 2.988532 -0.304596 0.735744 0.172882 -1.391774 0.811989 -0.459426 -0.955171 0.348858 1.152574 1.345369 -1.061429 -0.554567 0.480553 1.743569 0.566390 -1.375883 0.106818 -0.087095 0.030643 -0.558395 0.889996 0.269731 0.554506 -0.619693 -0.139873 0.865592 2.168149 -0.774246 -1.773982 0.041163 0.377926 0.296674 -1.019595 0.158834 -0.103170 -0.260611 0.510369 -0.131623 0.498068 1.356126 -2.820765 1.163066 -0.195028 -0.784146 0.837292 0.112447 -0.306657 -1.087564 0.691744 1.306969 1.281633 0.571376 -0.056634 -0.596171 -1.362756 -0.173802 0.375395 0.705454 -0.809381 1.252873 -0.093593 -1.025621 -0.954751 -1.077161 -0.024928 -0.250851 -0.734603 0.467946 0.502701 -3.100356 1.561777 -0.268503 -0.780766 -0.119329 -0.457946 0.771683 -1.390676 -1.722298 0.409624 -0.670690 -1.604401 -0.418221 -0.732620 0.516458 0.341018 -0.094293 -0.678068 -1.592417 1.531617 0.204989 0.911832 1.040880 0.540902 2.109335 0.524032 -1.130650 -0.617891 -0.871163 1.163234 -0.759002 -0.406165 -0.268824 -0.874700 0.660869 2.142170 -0.232123 -0.085737 -0.889601 1.106302 -1.484747 -0.688623 0.840081 0.746256 -0.181293 0.930121 0.986776 -0.772950 -0.612827 -1.291158 -0.171965 -0.091394 -0.990712 0.318258 -1.634440 -0.225428 1.354508 -0.580920 -0.848053 0.738923 -0.381973 -0.226843 -0.535234 1.255984 2.150035 -1.743165 0.862246 -1.147453 0.979819 -1.768780 -1.119958 -0.067782 -0.013831 -0.029038 -0.343866 0.016188 0.161420 0.174789 -0.775930 -0.711760 0.015974 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition_pivot >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.034444 2.063742 1.031516 -1.032855 1.961396 1.715320 0.478794 0.135976 -0.593219 -1.481238 -0.428771 -2.940117 -3.039800 1.427296 -0.352953 -0.066980 3.032605 -0.511613 0.045715 -0.870922 0.265255 0.835457 3.429019 3.145306 -2.964331 0.901167 1.021741 0.752749 -0.140800 1.008589 -0.679550 -3.044819 0.612680 0.068075 0.800915 0.033226 -0.835618 -1.899243 -0.089145 -4.047487 -0.463137 0.987183 -1.227996 0.034332 0.342289 1.371815 4.561892 1.568146 -0.764644 0.763747 1.406482 0.487288 0.864790 0.087471 0.114583 -0.636062 0.956337 -0.385342 -0.928650 -0.162891 -0.161522 -1.334234 -1.114767 2.316491 2.250000 -0.017361 -1.323404 0.271724 0.130454 0.060761 -0.857332 2.045443 1.913563 2.306323 1.808186 -0.534955 -0.054648 -2.868530 0.051030 -4.506178 -2.768762 -1.917515 1.701904 1.011849 0.765120 -0.984568 3.552291 -0.157487 1.113744 1.545790 3.599209 -1.959165 -0.525734 -1.221862 -0.516247 0.719936 -0.791641 0.811829 -0.142660 -0.367550 -2.210053 -1.541125 0.922862 -0.546196 -1.608353 -0.188570 -0.260866 0.819128 -2.123353 -0.160681 -3.321091 0.012520 0.757131 -3.937903 -1.637446 0.742926 1.329887 0.976967 -0.797198 -1.922476 0.517139 0.792119 -0.975061 -0.777992 -1.128301 2.395709 2.034535 -0.036750 1.277006 1.246077 2.194933 2.905556 1.825618 -0.441082 -0.768320 0.287670 -0.428753 -0.342011 -0.392093 0.267119 0.108579 -1.587740 1.229753 1.625274 -1.319699 -0.577817 -0.941878 -1.615316 0.774007 6.197096 -1.058146 1.855308 0.711199 -2.425454 1.123528 -1.494617 -1.774918 -0.009540 1.262459 2.834879 -2.005911 -1.084674 1.778457 3.147879 0.977798 -2.419125 1.387772 0.773837 0.159981 -1.419117 1.576249 0.454744 1.330019 -1.217223 -0.278669 2.321358 4.388430 -1.056198 -2.956320 0.472402 1.044269 1.446412 -0.753127 -0.040614 -0.462070 -0.506938 2.030977 0.409702 1.163771 2.559597 -4.502337 1.663051 0.515015 -1.408385 1.845790 0.452459 -1.143254 -0.531949 0.970201 2.503074 1.761262 0.678153 0.014455 -1.469988 -2.257142 -0.249469 1.001651 1.023191 -1.737349 2.264766 0.188968 -2.059766 -1.418798 -1.996333 -0.410681 -0.090063 -1.751519 1.082569 0.351808 -5.351636 3.123919 0.287800 -1.338463 -0.568142 -1.907517 1.721878 -2.267910 -2.604771 0.899610 -1.701334 -2.224432 0.042957 -0.979765 0.326995 1.100234 1.263564 -2.164887 -2.729086 2.874912 1.012136 2.229980 1.843545 1.013579 2.579591 -0.092683 -1.568666 -0.924577 -2.182070 2.524462 -0.094319 -1.539581 -0.244023 -1.621694 1.197564 3.307492 -1.225334 -0.602478 -1.890927 1.164582 -2.634460 -0.641133 1.050895 1.151288 -1.438031 0.921134 1.529410 -0.710882 -0.531320 -2.505763 -0.407814 -1.284262 -2.165920 0.360096 -2.299135 -0.361761 2.527983 -1.550812 -1.276528 1.063446 -0.649330 -0.461646 -0.229688 1.961815 3.145561 -2.052146 1.162849 -2.641161 1.844389 -3.184145 -2.725158 0.835582 -1.151013 -0.546239 -1.267267 -0.266480 0.851677 -0.016541 -1.241031 -1.439552 0.623517 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__heap_select >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.284990 1.041197 0.784214 -0.945874 1.179095 0.980465 0.364301 0.233617 -0.893468 -1.680834 -0.469802 -1.596317 -2.243330 1.729481 -0.352240 0.208829 2.889114 0.403993 0.111009 -0.862764 1.167430 -1.149644 2.614361 2.967962 -2.688836 0.452148 1.292660 1.155712 0.485267 1.272375 0.216779 -2.206228 0.425802 -0.564710 1.503106 -1.470503 -0.353733 -0.266311 -0.268261 -4.216200 -0.518026 1.023458 -0.525070 0.147240 0.339890 1.188363 3.083843 1.513330 -1.257733 1.159458 1.384883 0.503021 0.770232 0.077138 -0.075994 0.071296 0.071494 -0.148017 -0.528758 0.574227 -0.186163 -2.047852 0.069011 2.131275 2.614826 -0.447304 -0.663000 0.335692 -0.049316 0.278690 -0.261028 1.639337 1.051054 0.945623 1.764357 -2.174788 -0.455894 -4.491956 0.451811 -5.448181 -2.072380 -1.845361 1.523055 1.002555 0.674551 -0.684293 3.269971 -0.195997 0.724385 2.066079 2.904912 -1.547277 -0.391303 -1.661486 -0.854738 0.927792 -1.099060 0.046082 0.245458 -0.025640 -1.639221 -1.994376 0.983392 -0.167064 -1.476203 -1.049033 -0.760432 1.804277 -2.341669 -0.995975 -2.850439 0.162707 -0.011105 -3.305381 -0.079457 -0.653398 0.995574 0.874260 -0.531075 -1.533976 0.461236 1.120565 -0.501916 -0.886226 -1.187802 2.296048 1.253129 -0.421842 0.582774 0.873289 0.935902 2.054884 2.001665 -0.630907 -0.803340 1.065935 -0.954691 -0.370878 -1.464017 -0.086264 1.506019 -1.638062 -0.364690 0.836013 -1.219159 -0.767967 0.727096 -1.737660 0.984594 6.258446 -0.463168 1.275911 0.809714 -2.137925 1.772027 -0.273970 -0.898644 0.947415 1.893154 1.874068 -2.843592 -1.235641 0.857514 2.869579 0.942418 -1.778223 -0.891461 -0.015919 0.062760 -0.593318 1.159738 0.290272 0.034775 -0.953524 -0.240778 1.203322 3.482623 -1.002396 -1.235221 0.008862 1.563181 -0.427652 -2.338886 0.046403 -1.654243 -0.456401 0.713601 -0.041365 1.023786 2.293176 -4.461054 1.822992 -0.362017 -0.567500 0.954571 0.100987 -0.583751 -3.101609 0.946229 1.765980 1.978925 0.069620 0.639713 -0.491637 -2.417803 -0.038415 0.516946 1.270842 -1.608557 2.117759 -0.345448 -1.489114 -1.421445 -0.534318 -0.811623 -1.016745 -0.829739 0.969255 1.009930 -3.646194 2.353141 -0.538990 -0.987502 0.369763 -0.625267 1.690019 -2.362603 -2.590914 1.102474 -0.506702 -1.589690 -0.683902 -0.984802 1.323455 0.231701 -0.566287 -1.303430 -2.806165 1.876893 -0.124894 1.618187 1.481032 0.535458 2.762658 0.440581 -1.401403 -1.415720 -1.390181 0.930953 -0.535137 -0.781388 -1.446430 -0.992886 1.287993 3.276722 -0.257751 -0.424043 -0.486594 2.173956 -2.108121 -0.790078 0.943495 0.746578 -0.601041 0.990616 1.239878 -1.622779 -0.855642 -2.201644 0.532194 -0.129586 -1.493378 0.990886 -2.284581 -0.066714 1.636425 -0.707385 -0.866976 1.317986 0.400025 -0.113118 -0.434554 2.419635 2.556911 -1.722963 0.580476 -2.099441 1.248229 -2.878234 -1.648595 -0.545958 0.405998 -0.150847 -0.342455 0.063706 0.899379 0.620067 -0.473436 -0.860832 -0.156747 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.351759 0.299758 0.054979 -0.876332 0.912340 0.399917 0.347831 -0.155442 -0.734706 -0.932097 -0.096444 -1.630356 -1.261438 0.886332 -0.279886 0.756812 2.079344 0.104791 -0.065682 -0.672738 0.680568 -0.344410 2.119003 2.180476 -1.624988 0.258965 0.518030 0.799146 0.122604 0.177407 -0.122976 -1.292577 0.407126 -0.873064 0.644794 -0.641653 -0.307128 -0.154471 0.595678 -2.616147 -0.176259 0.435773 0.087103 0.052070 0.031299 0.802614 1.969575 1.141602 -0.586617 0.838204 1.122335 0.093047 0.700338 0.169664 -0.083828 0.156111 0.183889 -0.269075 -0.400955 -0.125849 -0.212227 -0.914199 0.141557 1.388996 1.637419 -0.240134 -0.751197 0.563190 0.437524 0.106187 0.112175 1.244873 0.406413 0.545269 1.130303 -1.745246 0.023114 -2.859121 0.104580 -3.431120 -1.554874 -0.865123 0.929170 0.385668 0.839186 -0.061639 2.338374 -0.326309 0.369398 1.023179 1.681266 -1.380925 -0.401760 -0.790918 -0.379966 0.393012 -0.642422 0.070995 0.500656 0.359179 -1.277827 -0.925575 0.830337 -0.032288 -0.960225 -0.886565 -0.084323 0.671436 -1.296207 -0.935026 -1.895992 0.404750 0.068272 -2.324277 0.058419 -0.303221 0.663701 0.428678 -0.644200 -1.392395 0.305617 0.478013 -0.510685 -0.578534 -0.776016 1.311096 1.094623 -0.039628 0.616182 0.720007 0.686117 2.137334 1.160306 -0.670237 -0.582245 0.640355 -0.758565 -0.002590 -0.769754 -0.353972 0.820371 -1.402749 0.280135 0.742489 -0.915565 -0.342958 0.787786 -0.719183 0.413092 3.959235 -0.420446 1.244031 0.986630 -1.321061 1.030025 -0.769510 -0.357076 0.428690 1.110091 1.159905 -1.800347 -0.995046 0.899956 1.959209 0.762884 -1.433216 -0.341811 0.392010 0.482342 -0.309708 0.528440 0.362733 0.483219 -0.836167 -0.038712 0.972241 2.764061 -0.615875 -0.358637 0.240008 1.017424 -0.071102 -1.694678 -0.304774 -1.542625 -0.363081 0.570494 0.447876 0.528947 1.695849 -2.663278 1.060721 -0.239647 -0.202557 1.125066 0.383069 -0.802659 -2.100888 0.226036 1.023386 1.323648 -0.243649 0.581041 -0.252014 -1.472188 -0.019082 0.321921 0.686821 -1.077386 1.404183 -0.159477 -1.051325 -0.560854 -0.286130 -0.426938 -0.522573 -0.355543 0.891196 0.778970 -2.372830 1.505248 -0.140101 -0.930167 0.350537 -0.695306 1.393244 -1.485509 -1.382336 0.925785 -0.628232 -0.689361 -0.347776 -0.374342 0.627532 0.164668 -0.018565 -1.103020 -1.618577 1.521746 0.073425 1.420122 1.003056 0.042283 1.363107 -0.264811 -0.885131 -0.818287 -0.800789 -0.078175 -0.280301 -0.810922 -0.846999 -0.653967 1.021250 2.028224 -0.347225 -0.199797 -0.105286 1.177574 -1.822444 -0.292863 0.690523 0.781065 -0.809891 0.749927 0.936384 -1.152372 -0.260798 -1.404794 0.171932 -0.437411 -1.072356 0.780397 -1.313749 0.064270 0.986203 -0.650595 -0.237786 0.792815 0.295412 -0.002612 -0.182006 1.734654 1.780755 -0.610955 0.041103 -1.642027 0.711268 -1.924417 -1.335854 0.108350 0.283827 -0.724612 -0.344183 0.319094 1.027032 0.266619 -0.598386 -0.913320 0.114505 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__make_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.855495 -0.103869 -0.373934 -1.941985 2.205331 1.240546 1.038460 -0.398948 -2.425320 -1.973037 0.560833 -4.749999 -3.120267 2.541264 -0.597870 1.905777 4.787019 -0.012884 -0.501897 -1.411122 1.196878 0.367198 5.076861 5.181918 -3.294152 0.676819 -0.153693 0.967115 -0.315189 0.029209 0.233077 -3.791231 1.242606 -1.776646 0.672245 -0.607758 -1.253134 -0.118255 1.914110 -5.739446 -0.257692 2.004810 0.117953 0.006920 0.277583 2.131707 4.326032 2.593577 -0.645782 2.681678 2.191139 -0.287338 1.819176 0.261003 0.333569 -0.206584 -0.095231 -0.747749 -1.313605 -0.370110 -0.887315 -1.175168 -0.528128 3.002955 3.486733 -0.486673 -2.382471 0.799120 1.018815 0.600742 0.481003 3.024508 1.587596 1.099989 2.594060 -2.345182 -0.558629 -5.485186 0.394006 -7.444543 -3.648224 -0.751911 3.476874 1.544776 1.477370 -1.221132 5.331713 -0.958157 -0.291521 2.830864 4.100807 -2.790321 -1.112475 -1.125307 -0.615039 0.434234 -1.203860 0.527757 1.338908 0.872903 -3.432762 -1.507959 1.184471 -0.505351 -2.002994 -1.656604 0.154226 1.462805 -2.963696 -1.455300 -3.788854 1.967583 1.071949 -5.385219 -0.999486 -0.172281 0.627920 1.383611 -2.568590 -2.392806 1.327644 -0.024394 -1.635012 -0.924206 -1.397740 3.047463 2.325205 0.677508 1.281446 2.358340 1.838004 5.061516 1.685808 -1.710825 -0.498755 1.085729 -0.565183 0.975328 -1.035263 -0.900900 1.117356 -3.052346 1.535233 1.149530 -2.168649 -0.884874 0.193811 -0.806997 -0.020834 8.465621 -1.358580 3.788539 2.694980 -2.665472 2.172589 -2.200041 -0.312134 0.475035 2.347545 2.544817 -2.909611 -2.198947 3.025326 4.828511 1.848409 -3.707634 0.510166 1.739209 1.411173 -1.106455 1.914182 0.800307 2.092802 -2.079252 -0.038294 2.443435 6.726859 -1.523513 -1.240126 0.482897 2.523040 1.284764 -2.564745 -0.563277 -2.887842 -0.694167 2.305359 1.372646 1.350347 3.944173 -5.765611 2.614885 -0.131746 -0.339711 2.669374 1.566102 -2.547700 -3.885476 -0.592659 1.962430 3.216210 0.234428 0.879941 -0.490328 -3.460816 -0.006433 0.953383 1.005075 -2.483375 3.451934 -0.538984 -2.019389 -0.763264 -1.157870 -1.210350 -0.676926 -1.354371 2.375522 2.133100 -5.662056 3.082503 0.526752 -2.231887 -0.243886 -1.320205 3.409363 -2.813128 -3.038889 1.877913 -2.444720 -2.884641 -0.587420 -1.031968 0.494537 0.942219 0.908665 -2.477922 -3.578275 4.761298 0.537466 4.375970 2.327606 -0.618134 2.958061 -0.549371 -2.327180 -1.107133 -3.025615 1.285282 -0.660049 -1.959538 -0.914242 -1.611830 2.170417 3.590727 -0.610071 -1.474043 -1.300390 2.555678 -3.814457 -0.114703 1.739979 1.378934 -1.843310 2.089539 2.474332 -2.431670 0.503377 -3.432910 0.066535 -2.170300 -2.062652 1.759053 -2.189409 0.292096 1.394562 -1.500626 -0.492421 1.247803 0.565874 -0.652596 0.042896 4.122971 3.854518 -1.410918 0.464044 -4.115036 2.232149 -3.907864 -3.457219 0.591086 0.129830 -2.383700 -1.309706 0.238387 2.330603 0.909564 -2.289410 -2.925758 1.563272 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(suffix*, suffix*) = 0.084637 1.184083 0.917392 -0.531904 1.518922 1.182306 0.516660 0.440184 -0.972582 -1.307529 -0.076214 -2.222130 -2.446831 1.646402 -0.092878 -0.170471 2.345032 -0.052773 -0.024092 -0.520044 0.187501 0.109908 2.364093 2.326483 -1.984480 0.838657 0.422607 0.298741 -0.344491 1.375288 -0.181850 -2.696551 0.588985 0.311695 0.602680 -0.194369 -0.883716 -1.122406 -0.346472 -3.275249 -0.368094 1.719798 -0.880069 -0.065307 0.532550 1.135551 3.142643 1.104494 -0.470868 1.259838 0.667879 0.066706 0.747648 0.050926 0.660024 -0.476663 0.727785 -0.271175 -1.073868 0.375778 -0.368698 -1.421965 -1.161108 1.529678 1.764413 -0.279149 -1.015574 -0.290891 -0.355090 0.331736 -0.330861 1.408117 1.614592 1.166823 1.466030 0.230504 -0.478041 -2.136230 0.149967 -4.181908 -2.132337 -1.021002 2.272125 1.065478 0.146630 -1.120536 2.639550 -0.251843 0.319197 1.258597 2.876538 -1.094919 -0.535244 -0.647890 -0.416952 0.602298 -0.668544 0.349084 0.283372 -0.524373 -1.760370 -1.071911 0.808733 -0.564730 -1.139711 0.052669 -0.361077 1.388529 -2.042925 -0.047864 -2.300387 0.258592 0.733358 -2.721133 -1.436183 0.645071 0.531986 1.253142 -1.031827 -0.771637 0.877124 0.179646 -0.798549 -0.427368 -0.650179 1.905368 0.916959 0.305982 0.809340 1.090195 1.488764 1.714105 1.452820 -0.336838 -0.102074 0.260627 0.202416 0.335179 -0.149422 -0.008147 -0.219829 -0.991406 0.781196 0.530949 -1.124008 -0.652022 -1.456810 -0.907485 0.238782 4.116007 -0.789603 1.583388 0.518219 -1.814749 0.923650 -0.753346 -1.112152 0.046890 1.390878 1.881503 -0.744654 -0.748858 1.453721 2.630793 0.835972 -1.948332 0.855828 0.532132 0.131364 -0.942982 1.641430 0.271504 1.175697 -0.941766 -0.270022 1.310373 3.135322 -0.954528 -3.028162 0.165393 0.854672 1.179821 -0.498001 0.284300 -0.057630 -0.229442 1.239086 -0.103862 0.825998 1.909336 -3.897341 1.653338 0.142847 -1.056611 1.516686 0.534046 -0.860614 -0.959739 0.262591 1.606413 1.769070 0.984007 -0.236553 -0.884105 -1.839604 -0.223110 0.587773 0.584672 -1.196911 1.867273 -0.247738 -1.315913 -0.980183 -1.770794 -0.199602 -0.175316 -1.463857 0.851335 0.844220 -4.179431 2.045421 0.350986 -0.919001 -0.749257 -0.640242 1.236379 -1.461266 -2.279700 0.491791 -1.549465 -2.573414 -0.183178 -1.115835 0.193086 0.942593 0.633203 -1.026262 -1.775181 2.598164 0.485212 1.995802 1.394704 0.382241 2.443626 0.708999 -1.562302 -0.345985 -1.735369 2.394649 -0.804129 -0.708497 -0.048179 -1.296785 0.841146 2.144823 -0.270513 -0.706954 -1.945132 1.301450 -1.663723 -0.332367 1.132088 0.443798 -0.536288 1.223803 1.427996 -0.683283 -0.173191 -1.841414 -0.327092 -1.089970 -1.150447 0.397452 -1.519139 -0.292693 1.380670 -0.951005 -1.143656 0.595492 -0.419155 -0.565847 -0.332790 1.607861 2.387994 -2.110075 1.379817 -1.780799 1.545308 -2.125482 -1.801202 0.239948 -0.535124 -0.594873 -0.947953 -0.363441 0.258231 0.354135 -1.173565 -1.277738 0.791142 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__pop_heap >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 0.091731 1.236336 0.756595 -0.671513 1.681169 0.756987 0.612641 0.820385 -0.976521 -1.740612 -0.194193 -2.573677 -2.820662 1.425575 -0.090592 -0.084405 2.952441 -0.020247 0.169915 -0.878521 0.072872 0.043952 2.990856 2.922206 -2.416021 0.899569 0.419549 0.532779 -0.332345 0.855169 -0.274185 -2.804592 0.819679 -0.010981 0.791566 -0.282824 -0.870583 -1.387569 -0.441654 -3.879895 -0.385609 1.457839 -0.971891 0.030409 0.461599 2.038747 3.727649 1.367924 -0.758134 1.492237 1.039572 -0.056387 0.919836 0.156339 0.190653 -0.533631 0.320117 -0.426631 -1.290931 0.273814 -0.307470 -2.021608 -1.057540 1.712954 1.970445 -0.444492 -1.246023 0.048399 -0.008100 0.200556 -0.199871 1.685396 2.057713 1.096193 1.916205 -0.323446 -0.660768 -2.822328 -0.071289 -5.691416 -2.647472 -1.541166 2.751912 0.808933 0.256741 -1.082449 3.179604 -0.356169 0.848952 1.624708 2.989530 -1.571636 -0.766406 -0.973413 -0.155138 0.770742 -0.840060 0.286600 0.598441 -0.317388 -2.065448 -1.011964 1.127249 -0.730177 -1.342208 -0.412415 -0.270624 1.167286 -2.438290 -0.203535 -3.343532 0.276076 1.042138 -3.211663 -0.881061 0.961264 1.293743 1.417352 -1.025997 -0.956044 0.746216 0.223226 -0.922836 -0.381489 -1.020299 2.288761 1.154755 0.256655 1.339870 1.472569 1.698790 2.329248 2.101361 -0.434016 -0.604443 0.618459 -0.281448 0.139867 -0.277578 -0.212399 0.396180 -1.518804 1.159210 0.595660 -1.402547 -0.848796 -0.944534 -1.052787 0.516306 4.400708 -0.801960 1.805889 0.749808 -1.943900 1.118755 -1.339901 -1.184354 0.137637 1.691270 2.119358 -0.994678 -0.891820 1.443322 2.945247 1.017903 -2.412391 1.010651 0.705349 0.532378 -0.986573 1.490084 0.541273 1.627251 -1.146493 -0.107478 1.652473 3.867952 -0.939875 -2.492428 0.132798 1.008194 1.321732 -1.010840 0.151173 -0.243452 -0.438143 1.570202 0.273968 0.736124 2.291223 -4.204729 1.647760 -0.087675 -0.856924 1.451012 0.771850 -1.005118 -1.599235 0.358010 1.802928 2.117940 0.949542 0.074656 -0.974462 -1.951390 -0.228785 0.738452 0.861686 -1.306375 2.072842 -0.262491 -1.547566 -0.936709 -1.936991 -0.237610 0.124799 -1.271708 0.992484 1.004478 -4.918328 2.323809 0.015042 -1.435068 -0.663815 -0.948155 1.713394 -1.905548 -2.404633 0.761629 -1.765729 -2.884799 -0.402062 -1.102398 0.279762 0.743051 0.427815 -1.174066 -2.327682 3.250182 0.743647 2.255491 1.664469 0.289268 3.081925 0.381802 -1.773519 -0.493273 -1.974486 2.050620 -1.177354 -0.882000 0.151501 -1.417880 0.978729 2.813228 -0.591883 -0.459324 -1.501432 1.371949 -2.465113 -0.575644 1.337646 1.186256 -0.543208 1.858967 1.720198 -1.185760 -0.310551 -2.263594 -0.190643 -0.905367 -1.465182 0.492449 -2.187154 -0.297722 1.852834 -1.038093 -1.122944 0.800957 -0.575449 -0.520786 -0.632948 2.108246 3.447259 -2.248428 1.334033 -2.175804 1.687512 -2.610401 -2.174900 0.277388 -0.251164 -0.641865 -0.883855 -0.067147 0.510453 0.233373 -1.650243 -1.759796 0.875766 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__adjust_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_iter) = -1.531948 -0.536590 0.426530 -3.591838 3.327742 3.569978 1.566510 -2.186360 -4.583020 -1.948436 1.509464 -7.124717 -4.659758 5.607017 -1.467641 2.706813 7.393637 0.014793 -1.737147 -2.669824 2.834264 0.806495 8.068497 8.751406 -5.872497 1.006981 0.271192 1.377093 1.041032 0.958686 0.720017 -5.388484 1.716123 -2.430527 1.159554 -1.417170 -2.182183 0.327214 3.483574 -9.703302 -0.627788 2.963961 -0.254017 0.135614 1.007480 4.159502 6.459809 4.253734 -0.675443 4.667745 3.526588 -0.039846 2.769811 -0.084027 1.597160 -0.625898 1.823084 0.323096 -1.318827 0.063766 -1.335437 -0.638376 -0.905104 5.670771 6.606140 -0.402100 -3.582506 0.466812 1.866285 1.325933 0.627736 4.985407 2.118338 2.728956 3.765184 -4.008303 -0.248919 -9.894699 1.481672 -11.026621 -5.202081 -0.315769 5.526061 1.673315 1.942559 -2.423540 8.622619 -0.340898 -2.045402 4.845772 7.372105 -3.951142 -1.269721 -1.120492 -2.173059 0.575151 -1.857736 2.045497 2.071665 1.264356 -5.458695 -3.254608 1.277257 -0.692418 -3.482912 -1.550265 -0.167852 3.765024 -4.276903 -1.755769 -3.775803 3.574037 1.045154 -9.024681 -2.740459 -2.342887 1.157687 1.755296 -4.314439 -3.438047 2.246194 0.292915 -2.642132 -1.490456 -1.890994 4.947422 4.357716 1.196123 0.297960 3.507588 2.741723 7.286300 1.274189 -3.188517 0.265618 1.462624 -0.260332 2.076461 -2.463470 -0.672403 2.226793 -4.004003 1.967921 1.589001 -3.141931 -1.231022 1.159667 -1.132272 -0.614556 16.364272 -2.142271 6.483018 4.385848 -4.566262 2.827677 -2.333137 0.013063 1.678184 3.855129 3.638594 -6.109295 -3.869525 5.011012 8.390174 2.796755 -6.554212 0.223372 2.550404 0.359598 -2.281869 4.032727 0.398471 1.643987 -2.648180 -0.571793 3.671765 10.586389 -2.972797 -3.249400 0.058317 4.132196 1.602735 -3.484967 -0.384550 -3.838692 -0.313469 3.244990 1.890085 3.350719 6.206512 -11.366162 5.027071 0.155241 -0.907940 4.690250 2.383742 -4.374446 -5.374049 -0.754374 2.916101 5.022967 0.762115 -0.054070 0.138092 -6.589672 0.136849 1.475433 1.175208 -4.581398 5.787494 0.077806 -2.837332 -1.658808 -1.276786 -1.854062 -1.575677 -2.996078 4.087177 1.952390 -9.905983 4.834548 1.323705 -2.939681 -0.687491 -2.108544 4.924978 -4.531786 -5.059173 2.374218 -3.193129 -4.513245 -1.727474 -2.261665 1.210090 1.468816 3.300643 -5.162873 -5.812598 6.804554 -0.879462 7.065153 3.787889 -1.005657 4.635240 -1.272653 -3.587757 -2.549217 -5.145293 4.102540 0.543162 -3.375150 -0.771538 -2.535655 3.412984 5.210995 -0.503053 -3.390593 -2.793634 4.976505 -5.213640 -0.296737 2.089316 2.021238 -3.160007 2.715582 3.297773 -3.737023 1.400756 -5.085240 -1.454973 -3.797738 -2.898411 3.912965 -2.147188 1.093856 0.746081 -1.754344 -0.673302 2.583103 1.002431 -1.009101 1.442400 6.456802 6.479391 -2.828137 0.710696 -6.925216 4.616248 -6.036317 -5.488318 0.690400 -0.881791 -3.585046 -2.203292 -1.009154 3.899955 2.654840 -3.571085 -4.129052 3.181578 +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.007533 0.612027 0.484476 -0.255340 0.589970 0.512892 0.164417 -0.041031 -0.253855 -0.326369 -0.220214 -0.573810 -0.693807 0.596131 -0.076679 0.141168 0.962255 0.109836 -0.008862 -0.217546 0.278220 -0.316833 0.932002 0.900266 -0.836295 0.291618 0.490524 0.258143 0.015136 0.762733 -0.512544 -0.699334 0.231195 -0.196005 0.324918 -0.405398 -0.191100 -0.371432 -0.009142 -1.327110 -0.100037 0.180548 -0.196613 -0.042767 0.055153 0.338059 1.250852 0.462681 -0.209058 0.257785 0.306402 0.085952 0.225293 0.101027 0.275118 0.238959 0.611781 0.060042 -0.319845 0.086477 -0.081153 -0.675112 -0.133798 0.656708 0.763091 -0.042282 -0.201706 0.111645 -0.140287 -0.024345 -0.169343 0.451031 0.335990 0.499361 0.440980 -0.584677 0.156693 -1.003336 -0.099403 -1.481642 -0.720552 -0.640394 0.277849 0.076413 0.416898 -0.102165 0.997064 -0.084404 0.350763 0.151324 1.093752 -0.795538 -0.169239 -0.377077 -0.206637 0.192835 -0.296042 0.029089 0.110762 -0.354618 -0.577523 -0.703521 0.634240 0.075962 -0.462537 -0.061640 -0.156265 0.541859 -0.761810 -0.396982 -0.921090 -0.275602 -0.183196 -1.046711 -0.049495 0.022419 0.438754 0.319810 -0.166247 -0.836505 0.219318 0.572792 -0.211106 -0.481481 -0.270172 0.784548 0.429866 -0.097145 0.287894 0.087033 0.437228 0.809958 0.808454 -0.162351 -0.171235 0.158617 -0.344233 -0.127247 -0.288190 -0.083042 0.044540 -0.551125 -0.021497 0.492912 -0.427580 0.100052 0.184968 -0.375350 0.339968 1.867765 -0.256692 0.411127 0.068754 -0.896925 0.491794 -0.212526 -0.504081 0.113661 0.533528 0.700256 -0.989071 -0.406075 0.335715 0.895623 0.349421 -0.728086 -0.129396 -0.191078 -0.048520 -0.140929 0.355552 0.096721 0.144541 -0.415742 -0.145916 0.341073 1.415670 -0.498078 -0.892492 0.190336 -0.040720 -0.031361 -0.748812 -0.066374 -0.336593 -0.082723 0.044957 -0.123534 0.318181 0.772313 -1.510571 0.671607 -0.308658 -0.648813 0.732937 -0.019367 -0.174613 -0.464826 0.285738 0.747902 0.691086 0.176708 -0.002461 -0.285431 -0.724058 -0.111071 0.079634 0.368657 -0.477226 0.615223 0.119689 -0.789918 -0.496015 -0.421255 0.055204 -0.375280 -0.350100 0.274773 0.142841 -1.563451 0.910480 0.047324 -0.270598 0.205009 -0.210494 0.340367 -0.687562 -0.898089 0.305229 -0.197455 -0.328303 -0.096062 -0.288561 0.352789 0.155883 -0.007925 -0.520874 -0.885122 0.516802 0.042601 0.485722 0.507826 0.349667 0.821778 0.261337 -0.493047 -0.438213 -0.285487 0.314293 -0.237346 -0.283812 -0.330631 -0.471093 0.531478 1.089299 -0.052361 0.036718 -0.449071 0.599198 -0.771620 -0.190555 0.458533 0.361148 -0.370808 0.118285 0.524345 -0.336357 -0.385278 -0.502463 -0.200204 -0.164795 -0.555902 0.191529 -0.721981 -0.082159 0.651281 -0.320161 -0.385092 0.379886 -0.129688 -0.034842 -0.170501 0.664142 0.915989 -0.713932 0.299927 -0.569574 0.441459 -0.954045 -0.594072 0.079808 0.049778 -0.234696 -0.200591 0.121619 0.254418 0.004062 -0.189847 -0.136126 -0.212207 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__push_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_val&) = -0.747353 0.120086 0.950165 -1.752952 1.713772 1.420454 0.766696 -0.609018 -2.216355 -1.620668 0.369216 -3.505124 -2.692539 2.812758 -0.653528 1.098958 3.992815 0.256367 -0.526711 -1.495469 1.329957 -0.436414 4.027031 4.530850 -3.162064 0.619677 0.351029 1.061523 0.429055 1.144679 0.073739 -3.049477 0.761044 -1.036908 1.143385 -1.034129 -1.159278 0.266591 1.129934 -5.384802 -0.350113 1.664917 -0.182734 0.142937 0.580070 2.006949 3.705614 2.054793 -0.459412 2.366052 1.725630 -0.227448 1.559502 -0.035771 0.870837 -0.048938 0.980476 -0.091154 -0.930487 0.402478 -0.829881 -1.169603 -0.310101 2.805075 3.274105 -0.349828 -1.811709 0.018288 0.654691 0.669042 0.049120 2.561745 1.289790 1.373710 2.068047 -2.400507 -0.002623 -5.307637 0.745042 -6.159382 -2.985829 -0.733534 2.894635 1.417977 0.948926 -1.515464 4.507708 -0.475803 -0.595533 2.184017 4.035307 -2.125913 -0.610962 -0.892481 -0.841117 0.268863 -0.918685 0.570144 0.745659 0.395536 -2.773194 -1.771471 1.271681 -0.480555 -1.777094 -0.473696 -0.365950 2.106961 -2.760466 -1.059804 -2.912768 1.396063 0.715858 -4.585736 -0.575767 -0.852970 0.709913 1.208624 -2.187413 -1.881911 1.302910 0.525064 -1.301854 -0.793597 -1.587645 3.349326 2.038140 0.183444 0.420930 1.825762 1.324648 3.403594 1.394325 -1.422953 -0.130966 1.051517 -0.611441 0.562336 -1.293215 -0.341956 1.125003 -2.109557 0.355366 0.792544 -1.699907 -0.428119 0.389628 -0.799567 0.013688 8.504928 -1.283063 3.040028 1.900838 -2.289955 2.362959 -0.862388 -0.236959 0.735102 2.023178 2.273597 -3.755014 -1.939721 2.421936 4.195578 1.436433 -3.356771 -0.279355 0.850561 0.426604 -0.882258 2.155523 0.241304 1.060703 -1.571001 -0.249700 1.566998 5.741494 -1.648735 -2.269569 0.023689 1.376583 0.713487 -2.586913 -0.184316 -1.941441 -0.454030 1.361908 0.793500 1.593225 3.297697 -6.151390 2.728203 -0.132405 -0.996762 2.635792 0.700744 -1.771724 -3.613440 -0.332922 1.799443 2.852442 0.593443 0.145326 -0.227984 -3.449959 0.069060 0.657061 1.046633 -2.562513 3.114849 -0.180558 -1.820370 -0.949111 -1.229715 -1.171047 -0.936603 -1.623302 1.894679 1.366567 -5.469086 2.681886 0.594947 -1.403025 -0.011869 -0.759580 2.392333 -2.383312 -2.872532 1.196490 -1.540750 -2.633842 -1.008899 -1.174657 0.554190 0.386696 0.626715 -2.411802 -3.490045 3.505614 -0.337084 3.522769 2.003064 -0.279233 2.793854 0.671885 -1.933009 -1.182241 -2.358664 1.981366 -0.221620 -1.399969 -1.217308 -1.381598 1.704721 3.206259 -0.211278 -1.158805 -1.618712 2.777951 -2.993510 -0.406655 1.329082 0.596548 -1.319076 1.348473 1.963972 -1.926996 0.222512 -3.024006 -0.679625 -1.713758 -1.476402 1.770859 -1.764397 0.232351 0.883204 -1.158628 -0.841956 1.314191 0.508424 -0.812329 0.328755 3.625241 3.810003 -1.643331 0.621101 -3.337106 2.243948 -3.221277 -2.522103 -0.066754 0.045479 -1.652095 -1.114805 -0.122416 1.929245 1.206430 -1.801726 -1.872053 1.173124 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(suffix*, suffix&) = 0.084637 1.184083 0.917392 -0.531904 1.518922 1.182306 0.516660 0.440184 -0.972582 -1.307529 -0.076214 -2.222130 -2.446831 1.646402 -0.092878 -0.170471 2.345032 -0.052773 -0.024092 -0.520044 0.187501 0.109908 2.364093 2.326483 -1.984480 0.838657 0.422607 0.298741 -0.344491 1.375288 -0.181850 -2.696551 0.588985 0.311695 0.602680 -0.194369 -0.883716 -1.122406 -0.346472 -3.275249 -0.368094 1.719798 -0.880069 -0.065307 0.532550 1.135551 3.142643 1.104494 -0.470868 1.259838 0.667879 0.066706 0.747648 0.050926 0.660024 -0.476663 0.727785 -0.271175 -1.073868 0.375778 -0.368698 -1.421965 -1.161108 1.529678 1.764413 -0.279149 -1.015574 -0.290891 -0.355090 0.331736 -0.330861 1.408117 1.614592 1.166823 1.466030 0.230504 -0.478041 -2.136230 0.149967 -4.181908 -2.132337 -1.021002 2.272125 1.065478 0.146630 -1.120536 2.639550 -0.251843 0.319197 1.258597 2.876538 -1.094919 -0.535244 -0.647890 -0.416952 0.602298 -0.668544 0.349084 0.283372 -0.524373 -1.760370 -1.071911 0.808733 -0.564730 -1.139711 0.052669 -0.361077 1.388529 -2.042925 -0.047864 -2.300387 0.258592 0.733358 -2.721133 -1.436183 0.645071 0.531986 1.253142 -1.031827 -0.771637 0.877124 0.179646 -0.798549 -0.427368 -0.650179 1.905368 0.916959 0.305982 0.809340 1.090195 1.488764 1.714105 1.452820 -0.336838 -0.102074 0.260627 0.202416 0.335179 -0.149422 -0.008147 -0.219829 -0.991406 0.781196 0.530949 -1.124008 -0.652022 -1.456810 -0.907485 0.238782 4.116007 -0.789603 1.583388 0.518219 -1.814749 0.923650 -0.753346 -1.112152 0.046890 1.390878 1.881503 -0.744654 -0.748858 1.453721 2.630793 0.835972 -1.948332 0.855828 0.532132 0.131364 -0.942982 1.641430 0.271504 1.175697 -0.941766 -0.270022 1.310373 3.135322 -0.954528 -3.028162 0.165393 0.854672 1.179821 -0.498001 0.284300 -0.057630 -0.229442 1.239086 -0.103862 0.825998 1.909336 -3.897341 1.653338 0.142847 -1.056611 1.516686 0.534046 -0.860614 -0.959739 0.262591 1.606413 1.769070 0.984007 -0.236553 -0.884105 -1.839604 -0.223110 0.587773 0.584672 -1.196911 1.867273 -0.247738 -1.315913 -0.980183 -1.770794 -0.199602 -0.175316 -1.463857 0.851335 0.844220 -4.179431 2.045421 0.350986 -0.919001 -0.749257 -0.640242 1.236379 -1.461266 -2.279700 0.491791 -1.549465 -2.573414 -0.183178 -1.115835 0.193086 0.942593 0.633203 -1.026262 -1.775181 2.598164 0.485212 1.995802 1.394704 0.382241 2.443626 0.708999 -1.562302 -0.345985 -1.735369 2.394649 -0.804129 -0.708497 -0.048179 -1.296785 0.841146 2.144823 -0.270513 -0.706954 -1.945132 1.301450 -1.663723 -0.332367 1.132088 0.443798 -0.536288 1.223803 1.427996 -0.683283 -0.173191 -1.841414 -0.327092 -1.089970 -1.150447 0.397452 -1.519139 -0.292693 1.380670 -0.951005 -1.143656 0.595492 -0.419155 -0.565847 -0.332790 1.607861 2.387994 -2.110075 1.379817 -1.780799 1.545308 -2.125482 -1.801202 0.239948 -0.535124 -0.594873 -0.947953 -0.363441 0.258231 0.354135 -1.173565 -1.277738 0.791142 +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) = -0.696453 1.041550 1.257274 -2.176755 1.568729 1.215968 0.369185 0.732086 -1.750294 -3.671108 -0.522171 -2.572070 -3.899012 2.844218 -1.137048 -0.436551 4.715302 0.624498 0.319820 -1.701136 1.967119 -1.552967 4.180074 5.219402 -4.784573 0.226167 1.748692 2.323669 1.236616 1.370456 1.993165 -4.170140 0.302681 -0.115827 2.823050 -2.591874 -0.274892 0.228645 -1.166574 -6.972328 -0.941957 1.907947 -1.603436 0.558231 0.902058 2.590868 4.640397 2.591343 -2.758796 2.188794 2.981580 1.799959 0.923781 -0.144780 -1.135678 -1.024778 -1.477428 -0.931811 -0.327010 1.258396 -0.234011 -3.196379 0.336364 3.871017 4.558838 -0.895314 -0.990139 0.034618 0.197104 0.769848 -0.104825 2.785346 2.162442 1.353932 3.102139 -3.317509 -1.674995 -8.710493 1.553191 -9.754078 -3.129482 -2.910133 3.432606 2.925760 -0.079968 -1.834167 5.525606 -0.032040 0.936538 5.421253 4.435996 -1.469329 -0.537154 -3.197727 -2.049385 1.818975 -1.935049 0.259756 -0.835863 1.390952 -2.544748 -3.001451 0.202278 -0.947013 -2.399741 -2.196123 -1.479249 3.014760 -4.336380 -0.677781 -4.519607 1.656777 1.053081 -5.637589 -0.422613 -2.001782 2.132016 1.050981 -0.942047 -1.030901 0.534910 1.243316 -0.912805 -0.246340 -3.141873 3.743519 1.985605 -0.726219 0.403009 1.690847 1.285584 2.547556 2.418575 -1.339220 -1.616052 2.135085 -1.270214 -0.818769 -3.010130 0.449897 3.779796 -2.477808 -0.473929 0.666036 -1.917418 -2.688989 0.616349 -3.638378 1.724553 10.992555 -0.650985 2.224408 1.730496 -3.075251 2.708236 -0.100834 -0.868015 2.042270 3.174039 2.837269 -4.078978 -2.000941 1.403419 4.791901 1.471735 -2.338242 -1.111104 0.713748 -0.035251 -1.234601 2.052776 0.381370 -0.816733 -1.247334 -0.410524 2.246133 4.994295 -0.427991 -0.545320 -0.670430 4.238209 -0.651424 -2.683063 0.539564 -2.225325 -0.615780 2.561734 0.167818 2.048643 3.802216 -7.940078 2.719644 0.225483 0.556324 -0.319415 0.256746 -1.014444 -5.838594 1.680387 2.556736 3.175576 -0.014243 1.857944 -0.353655 -4.062191 0.192556 1.257789 2.353248 -2.873494 3.456669 -0.519302 -2.010462 -2.393099 -0.620510 -2.377379 -0.902633 -1.646869 1.626252 1.514478 -5.876968 3.681685 -1.520817 -1.574476 -0.150023 -1.299505 3.533092 -4.248454 -4.095542 1.820701 -0.920393 -3.530057 -1.479913 -1.740253 2.386642 -0.125776 -0.812581 -2.073080 -4.938131 3.396218 -0.313039 2.777953 2.289484 0.478051 4.967850 0.197546 -1.700356 -2.389241 -3.213577 2.766565 -0.696237 -1.265642 -1.255067 -1.200255 1.591289 5.197864 -0.838577 -1.515841 0.353992 3.824747 -2.598652 -1.425137 0.920664 0.953513 -0.535059 2.466182 1.608704 -3.218711 -1.138590 -4.446773 2.044496 0.011768 -2.370395 1.995066 -3.568311 0.261968 2.403920 -0.405422 -1.678681 2.280963 1.174890 -0.347625 -0.315699 4.461021 4.359417 -2.179480 1.234951 -3.917986 2.181422 -4.783280 -2.933988 -1.658097 0.265869 0.581813 -0.262248 -1.058459 1.726564 1.509953 -0.138787 -1.647260 0.795947 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.458288 1.163756 1.244257 -1.602279 1.446434 1.534627 0.356469 -0.024977 -1.257799 -1.818621 -0.587463 -2.088890 -2.495094 2.184937 -0.608494 0.332134 3.562515 0.469706 -0.098559 -0.934388 1.569488 -1.264118 3.141595 3.765303 -3.332922 0.462280 1.467524 1.626595 0.633039 1.829115 0.036247 -2.642090 0.133409 -0.564805 1.940341 -1.905052 -0.451299 -0.101862 -0.118807 -5.235435 -0.569205 1.402820 -0.510334 0.142930 0.535889 1.079256 3.752386 1.882261 -1.509124 1.113677 1.805844 0.847487 0.993741 -0.003874 0.021421 0.252988 0.549263 -0.085332 -0.379981 0.625334 -0.263273 -1.988500 0.380487 2.818736 3.295272 -0.386010 -0.865447 0.166028 0.248365 0.252914 -0.308977 2.086086 0.936578 1.352657 1.922041 -2.757723 -0.030609 -5.506240 0.970660 -5.716032 -2.424273 -2.060838 1.535183 1.689453 0.884528 -1.139621 4.129933 -0.430173 0.756059 2.435024 3.492187 -1.869943 -0.335456 -2.116508 -1.488418 0.981711 -1.206475 -0.038267 -0.135488 0.203669 -1.965351 -2.450469 1.030186 -0.082821 -1.855397 -0.944519 -0.859983 2.217528 -2.578585 -1.278028 -3.076477 0.563362 -0.120585 -4.134521 -0.201904 -1.401655 0.720478 0.724509 -0.792038 -2.088942 0.569048 1.445780 -0.772005 -0.930755 -2.081304 2.991600 1.692914 -0.688719 0.381664 0.771987 1.049469 2.331904 1.953093 -1.032211 -0.892546 1.346531 -1.265450 -0.600092 -2.021947 0.035095 1.822962 -1.946946 -0.933773 1.116673 -1.463178 -0.540516 0.761300 -2.112139 1.153971 8.667166 -0.747211 1.659484 1.017299 -2.684649 2.602669 0.105259 -1.019805 1.157260 2.162473 2.346419 -4.248992 -1.641806 1.168966 3.599416 1.174246 -1.955117 -1.050471 0.050353 -0.191076 -0.648232 1.493221 0.174809 -0.364780 -1.193678 -0.426884 1.366360 4.506777 -0.977782 -1.551718 -0.001866 1.956029 -0.759215 -2.755492 0.047641 -2.298271 -0.509992 0.753032 -0.078019 1.575181 2.884130 -5.653167 2.328571 -0.333724 -0.840060 1.534765 -0.223663 -0.714538 -3.701768 1.066877 2.149347 2.469888 -0.138164 0.668909 -0.531465 -3.038319 -0.001896 0.596903 1.599145 -2.212929 2.632807 -0.233947 -1.989402 -1.665641 -0.742215 -1.263506 -1.424249 -1.341054 1.231946 0.923534 -4.077139 2.974297 -0.374838 -0.935145 0.585213 -0.938060 1.853223 -2.910677 -3.072218 1.352111 -0.325746 -1.482383 -0.796016 -1.217115 1.750852 0.205740 -0.536423 -2.075656 -3.678209 2.042304 -0.371703 2.133122 1.796377 0.583748 2.836112 1.105720 -1.374592 -1.819375 -1.815840 1.109193 -0.143831 -1.076522 -1.880667 -1.260614 1.626207 3.894104 -0.432704 -0.492961 -0.628070 2.754087 -2.080735 -0.801425 0.899601 0.158754 -1.023823 0.712219 1.349816 -1.906703 -1.009744 -2.779088 0.631854 -0.327767 -1.790135 1.408517 -2.551398 0.015830 1.880821 -0.890701 -1.110084 1.570143 0.706838 -0.266954 -0.163493 3.188482 2.550650 -1.516846 0.784531 -2.700313 1.607373 -3.542812 -1.902648 -0.772188 0.202016 -0.369632 -0.456895 0.065518 1.362938 0.818837 -0.113957 -0.776401 -0.154049 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::iter_swap(suffix*, suffix*) = -0.019407 0.273966 0.259081 -0.080884 0.309645 0.050318 0.142235 0.149091 -0.215330 -0.410622 -0.115160 -0.338108 -0.570570 0.421248 -0.058553 0.048956 0.723007 0.215387 0.084231 -0.283319 0.175187 -0.420670 0.696175 0.698475 -0.641457 0.165610 0.288206 0.285831 0.133719 0.399262 -0.087983 -0.435110 0.270733 -0.149966 0.310749 -0.408235 -0.038281 -0.122254 -0.198392 -1.032986 -0.091631 0.145920 -0.024162 0.034956 0.046384 0.528158 0.740696 0.371437 -0.224709 0.395735 0.277863 -0.010095 0.201914 0.106846 0.033519 0.038202 0.169561 -0.114359 -0.324604 0.165287 -0.019570 -0.830518 -0.087155 0.426287 0.634452 -0.131590 -0.074745 0.086868 -0.139659 0.082190 0.024442 0.279507 0.302313 0.155657 0.435010 -0.442502 -0.069929 -0.924281 -0.132104 -1.643774 -0.534799 -0.548676 0.532176 0.059785 0.159225 0.000770 0.699167 0.052970 0.266909 0.288059 0.715246 -0.481574 -0.199380 -0.291488 -0.022785 0.300930 -0.338804 -0.003727 0.237918 -0.084069 -0.397568 -0.431695 0.478068 -0.038720 -0.321384 -0.152185 -0.195176 0.443302 -0.760574 -0.267361 -0.834410 -0.205071 0.000868 -0.727546 0.193557 0.039768 0.494139 0.334587 -0.038995 -0.306443 0.112061 0.300162 -0.061317 -0.232256 -0.303906 0.551160 0.163285 -0.072655 0.270851 0.225453 0.207105 0.519094 0.654042 -0.106349 -0.226360 0.258504 -0.305818 -0.044710 -0.306800 -0.137058 0.305200 -0.468044 0.075012 0.135736 -0.336131 -0.197912 0.167250 -0.256946 0.313236 0.956117 -0.023740 0.265358 0.150604 -0.513703 0.295514 -0.194714 -0.212270 0.236731 0.494869 0.342343 -0.388505 -0.294539 0.078352 0.616740 0.264734 -0.515453 -0.230427 -0.153255 0.108237 -0.064700 0.213921 0.160458 0.106265 -0.270812 -0.025613 0.209391 0.809273 -0.304845 -0.367898 0.035107 0.065942 -0.110960 -0.659071 -0.015571 -0.159836 -0.083577 -0.007412 -0.019435 0.100944 0.550745 -1.084996 0.482626 -0.202153 -0.180960 0.289660 0.016558 -0.124802 -0.724071 0.229030 0.426963 0.544939 0.131364 0.095101 -0.052397 -0.546002 -0.061082 0.057321 0.301638 -0.272764 0.429013 -0.017298 -0.391406 -0.375047 -0.237409 0.049400 -0.166388 -0.102770 0.213087 0.329878 -1.151846 0.516973 -0.235574 -0.357308 0.121564 -0.023401 0.324760 -0.585188 -0.628131 0.192746 -0.187097 -0.517663 -0.294242 -0.179253 0.273998 -0.046044 -0.228424 -0.141136 -0.532863 0.486375 -0.042853 0.239033 0.356741 0.146419 0.794759 0.152103 -0.435552 -0.290217 -0.092053 0.102464 -0.473381 -0.092607 -0.095254 -0.246149 0.327311 0.890129 0.046204 0.016698 -0.062036 0.556048 -0.610350 -0.350084 0.399893 0.375271 -0.008415 0.442069 0.419793 -0.488547 -0.288980 -0.422798 -0.048961 0.125003 -0.359580 0.224729 -0.632730 -0.004904 0.423628 -0.110211 -0.271348 0.358439 -0.067909 -0.031077 -0.253068 0.607855 0.878567 -0.600770 0.234916 -0.401148 0.243418 -0.697028 -0.357012 -0.093099 0.246883 -0.067480 0.027981 0.080777 0.162093 0.092842 -0.277211 -0.256381 -0.111101 +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.117094 0.581231 0.485858 -0.192690 0.545529 0.038211 0.192401 0.520560 -0.382016 -0.842113 -0.194185 -0.604105 -1.072640 0.646571 -0.024285 -0.313701 1.145473 0.213408 0.184431 -0.476857 0.095682 -0.427543 0.990495 1.051554 -1.027746 0.370182 0.394275 0.295731 0.110837 0.599827 0.052567 -1.001885 0.290925 0.138648 0.536807 -0.453630 -0.231613 -0.436697 -0.592856 -1.652964 -0.160749 0.455216 -0.355878 0.051244 0.210084 0.997988 1.369510 0.479368 -0.452291 0.644623 0.422194 0.126662 0.229219 0.058299 0.050200 -0.159209 0.120656 -0.154393 -0.498477 0.385097 -0.040369 -1.168563 -0.329335 0.649147 0.824603 -0.243366 -0.262135 -0.069344 -0.181005 0.155110 -0.066705 0.482644 0.797688 0.292421 0.747868 -0.295669 -0.388281 -1.451335 -0.025294 -2.860323 -0.926229 -0.832897 1.201937 0.181325 -0.122234 -0.251245 1.101375 -0.004464 0.475681 0.764326 1.155339 -0.408708 -0.281551 -0.480020 -0.120555 0.501196 -0.380852 0.002548 0.246960 -0.142026 -0.659356 -0.520463 0.539187 -0.313379 -0.511819 -0.124488 -0.276952 0.678585 -1.256196 0.003065 -1.361153 -0.049049 0.373031 -1.100986 -0.091256 0.226764 0.831505 0.577677 -0.193455 -0.151426 0.228922 0.260190 -0.267373 -0.060292 -0.467699 0.890797 0.213166 -0.008606 0.436667 0.457928 0.513825 0.547193 1.010049 -0.123849 -0.277408 0.377129 -0.182060 -0.132209 -0.307195 -0.077989 0.421159 -0.518357 0.354121 0.034983 -0.526807 -0.574068 -0.165125 -0.584666 0.400468 1.515901 -0.173277 0.475423 0.115769 -0.718306 0.313305 -0.262914 -0.479980 0.241610 0.810004 0.704182 -0.197723 -0.311097 0.228931 1.026332 0.374095 -0.812409 0.005890 -0.033509 0.013748 -0.176502 0.535575 0.118882 0.333827 -0.357871 -0.090568 0.420953 1.211282 -0.270519 -0.915129 -0.120269 0.382195 0.188476 -0.504729 0.191056 0.073705 -0.077433 0.389993 -0.116585 0.306934 0.816556 -2.000871 0.725471 -0.163413 -0.269142 0.188183 0.186053 -0.136889 -1.009482 0.301553 0.696368 0.931664 0.378597 0.078420 -0.247048 -0.782270 -0.111947 0.212008 0.451444 -0.483185 0.709644 -0.064120 -0.566947 -0.493302 -0.607465 -0.031240 0.075528 -0.361504 0.249363 0.396106 -2.094346 0.850848 -0.302677 -0.462866 -0.194192 -0.122341 0.540500 -0.816293 -0.997145 0.182800 -0.428421 -1.227948 -0.332783 -0.489565 0.346045 0.031180 -0.085433 -0.188925 -0.888876 1.049895 0.093698 0.576261 0.622945 0.189431 1.501636 0.164284 -0.627303 -0.297666 -0.484350 0.777502 -0.722077 -0.093296 0.155407 -0.503205 0.291774 1.247690 -0.077879 -0.121278 -0.333363 0.753700 -0.849234 -0.442291 0.530902 0.487562 0.086267 0.920215 0.649151 -0.637182 -0.344528 -0.874824 -0.008179 0.051409 -0.469205 0.235181 -0.970657 -0.115973 0.737026 -0.219353 -0.569802 0.461509 -0.254608 -0.172373 -0.361657 0.795549 1.556206 -1.107856 0.614104 -0.638993 0.557411 -1.006683 -0.650658 -0.226627 0.105343 0.028182 -0.118442 -0.193479 0.088951 0.129313 -0.454459 -0.516294 0.200597 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int std::__bit_width(unsigned long) = -0.161019 -0.137479 0.103577 -0.160366 0.227092 -0.015169 0.214806 -0.139515 -0.397532 -0.327043 0.147826 -0.645673 -0.427941 0.540755 -0.118028 0.358916 0.679819 0.170104 -0.092702 -0.262697 0.143547 -0.279107 0.716499 0.726941 -0.391142 0.072395 -0.083898 0.072939 0.064578 0.176997 -0.003015 -0.422384 0.372519 -0.228362 0.186322 -0.200234 -0.134268 0.132519 0.182129 -0.807211 -0.012474 0.337862 0.303169 -0.025785 0.055498 0.564426 0.461144 0.385501 0.092128 0.507293 0.162480 -0.202040 0.319769 0.110314 0.269951 -0.015479 0.225375 -0.282559 -0.371474 0.088101 -0.177142 -0.472655 -0.128350 0.387458 0.586006 -0.124804 -0.191101 0.045712 0.006095 0.171121 0.194442 0.300088 0.225368 0.037965 0.264552 -0.433487 0.038467 -0.697051 -0.121454 -1.423382 -0.473213 -0.056692 0.597183 0.178446 0.185209 -0.190562 0.654421 0.050767 -0.170061 0.057708 0.672685 -0.482834 -0.244030 -0.007126 0.110152 0.042985 -0.293177 0.061504 0.424978 0.024585 -0.480657 -0.124389 0.408912 -0.026321 -0.215267 -0.071991 -0.017447 0.432726 -0.590099 -0.285937 -0.472808 0.033326 0.071638 -0.699027 0.444327 -0.050832 0.084125 0.318633 -0.372462 -0.235501 0.290185 0.041081 -0.159398 -0.178075 -0.508077 0.556211 0.129386 0.146255 0.114522 0.384619 0.125123 0.614641 0.291393 -0.255622 0.019053 0.139206 -0.186864 0.281356 -0.163853 -0.300484 0.258135 -0.465449 0.018857 -0.017271 -0.331675 -0.007184 0.048058 0.098694 0.023104 0.690975 -0.168171 0.514121 0.349580 -0.410221 0.327054 -0.284281 0.080766 0.062564 0.433043 0.181994 -0.318600 -0.375069 0.384413 0.675900 0.302289 -0.551330 -0.106852 0.031610 0.212656 -0.117675 0.255400 0.177626 0.195159 -0.338974 -0.014072 0.106958 0.891623 -0.354692 -0.046363 0.033573 0.006165 0.134208 -0.583347 -0.083186 -0.227112 -0.003378 -0.143640 0.167448 0.085605 0.550332 -0.832637 0.541919 -0.215113 -0.092623 0.566344 0.100078 -0.355661 -0.873490 -0.153826 0.244145 0.510752 0.102742 0.099363 0.094174 -0.542247 -0.018637 -0.086301 0.148171 -0.249861 0.363134 -0.047208 -0.263158 -0.157456 -0.173570 0.044256 -0.211011 -0.093494 0.341575 0.636928 -0.848765 0.373582 0.009338 -0.328877 0.017706 0.102254 0.370642 -0.403568 -0.404158 0.118589 -0.410276 -0.535513 -0.327608 -0.136055 0.053775 -0.199928 -0.110298 -0.142724 -0.323772 0.641145 -0.168243 0.519405 0.261114 -0.097527 0.500935 0.266206 -0.422187 -0.064202 -0.240918 -0.080526 -0.444432 -0.151637 0.151868 -0.140015 0.376451 0.497648 0.128793 -0.128826 -0.003155 0.436946 -0.569497 -0.113018 0.410514 0.198284 -0.106891 0.397294 0.428331 -0.470728 0.018573 -0.340578 -0.226661 -0.215076 -0.232165 0.283981 -0.270117 0.087064 -0.017373 -0.063659 -0.118516 0.190931 0.062359 -0.148813 -0.045858 0.680328 0.681890 -0.329597 0.104876 -0.498946 0.280920 -0.500098 -0.374945 0.041036 0.343321 -0.383927 -0.061082 0.126113 0.258504 0.215985 -0.448144 -0.425795 0.152577 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int std::__countl_zero(unsigned long) = -0.480541 -0.338787 0.299305 -0.473628 0.770944 -0.049166 0.662453 -0.083859 -1.334561 -0.899152 0.173142 -1.741219 -1.235791 1.744945 -0.020219 1.189786 2.378905 0.738681 -0.248466 -0.576547 0.926282 -1.557237 2.010842 2.204782 -1.119878 0.286736 -0.139136 0.441847 -0.110575 0.864800 -0.261910 -1.175646 0.806639 -1.287368 0.673307 -1.012448 -0.448652 0.609732 0.643492 -2.796010 -0.053815 1.226278 0.854293 -0.228222 0.004980 0.996505 1.554884 1.157665 0.023532 1.331393 0.353243 -0.971456 1.031406 0.358957 0.952588 0.692291 0.398429 -0.129564 -1.177342 0.405341 -0.672301 -1.600244 0.091216 1.089908 1.754011 -0.304843 -0.707945 0.379201 -0.077798 0.346948 0.506830 0.933540 0.582451 -0.253045 1.149910 -1.819379 -0.068317 -2.667627 -0.208414 -4.088922 -1.540217 -0.370486 1.595092 0.285244 0.921097 -0.561902 2.118720 -0.499540 -0.327168 0.564287 2.126247 -1.644977 -0.739734 -0.611315 0.004306 0.105648 -0.801430 -0.320638 1.492195 -0.256061 -1.519386 -0.965227 1.547382 0.208333 -0.704531 -0.644263 -0.093654 1.606724 -1.519276 -1.462358 -1.815663 0.090797 -0.152076 -1.928236 1.124160 -0.207636 -0.106721 1.118849 -1.247488 -1.289967 1.012059 0.435768 -0.565144 -0.955258 -0.823051 1.871012 0.229429 0.220686 0.437856 0.975088 0.244901 1.889177 1.402918 -0.733317 0.100828 0.667453 -0.841267 0.660142 -0.696910 -1.151283 0.874789 -1.381394 -0.781003 0.024441 -1.123724 0.219406 0.831305 0.202823 0.160792 2.894188 -0.444099 1.303464 0.867418 -1.341299 1.866652 -0.421955 0.111520 0.229241 1.582707 0.730859 -2.013358 -1.258416 1.082406 2.083818 1.011718 -1.741652 -1.077720 -0.231034 0.786785 0.061078 0.709881 0.482158 0.738973 -1.136137 -0.040236 0.176163 3.195045 -1.464330 -0.641417 0.331108 0.004982 -0.054211 -2.816471 -0.355883 -1.467246 -0.276761 -0.828576 0.178075 0.377707 1.827395 -2.536590 1.770220 -1.209338 -0.587495 1.888412 0.203000 -0.834868 -3.182690 -0.581840 0.850908 1.920945 0.449647 0.114907 0.058989 -1.732405 -0.040699 -0.271657 0.638685 -0.772289 1.451339 -0.779079 -0.959096 -0.501549 -0.410554 -0.300987 -1.050525 -0.073095 0.978358 1.896960 -1.904776 1.269475 0.193516 -0.672913 0.533153 0.630374 1.038519 -1.190818 -1.722232 0.724323 -0.831849 -1.259881 -0.882288 -0.465089 0.468941 -0.163641 -1.167238 -0.423078 -1.597705 1.970871 -0.435755 1.850217 0.871135 -0.327177 1.638215 1.590660 -1.494521 -0.461256 -0.602477 -0.738696 -1.202701 -0.401376 -1.142760 -0.574539 1.366372 1.677435 0.593440 -0.104088 -0.513476 1.785324 -1.905979 -0.398210 1.440360 0.225592 -0.358614 0.868999 1.533741 -1.542209 -0.203694 -1.118122 -0.353587 -0.594063 -0.642683 0.727569 -1.157434 0.037786 0.150170 -0.468679 -0.120055 0.463329 0.497302 -0.326294 -0.399414 2.283611 1.918964 -1.127879 0.089653 -1.394075 0.798865 -1.617107 -0.926798 -0.149818 1.461400 -1.362289 -0.172585 1.063268 0.759074 0.617537 -1.238080 -1.093234 -0.126796 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.292400 2.089897 1.519595 -1.686194 2.106382 2.040060 0.505369 0.478359 -1.347454 -2.684724 -0.753240 -3.111841 -3.867692 2.753094 -0.680860 -0.286385 4.405258 0.248050 0.055274 -0.980069 1.338832 -0.723693 3.927952 4.342772 -4.060181 0.752593 1.670171 1.495663 0.165120 2.360005 0.360327 -4.407802 0.333734 0.235596 2.289216 -1.525632 -0.780392 -1.018843 -0.837171 -6.262799 -0.763758 2.466470 -1.079090 0.045114 0.769257 1.250323 5.291143 2.201276 -1.699856 1.212336 1.944323 1.321139 1.054189 -0.024242 0.183843 -0.376213 0.404786 -0.628444 -0.961956 0.762130 -0.432434 -2.366400 -0.557116 3.408880 3.765686 -0.387938 -1.176761 -0.109627 -0.198422 0.516911 -0.739258 2.524253 2.006655 2.113012 2.452816 -1.754782 -0.690415 -5.858998 1.050789 -7.437741 -3.218804 -2.711652 2.489038 2.549811 0.527334 -1.836371 5.016655 -0.441860 1.167545 3.216744 4.869789 -1.854887 -0.589702 -2.636864 -1.611336 1.337964 -1.454154 0.173353 -0.245770 -0.076265 -2.672546 -2.721161 0.826417 -0.514740 -2.173347 -0.839197 -1.016235 2.656671 -3.398913 -0.702897 -4.169458 0.660572 0.592149 -5.225675 -1.384375 -0.697851 0.604205 1.319341 -1.139424 -2.081568 0.948369 1.425925 -1.156314 -0.852773 -2.287174 3.623305 1.905261 -0.530945 0.805560 1.381340 1.926315 2.742697 2.452091 -0.930889 -0.924516 1.208836 -0.855908 -0.704318 -1.804583 0.220308 1.481327 -2.114448 -0.253151 1.374812 -1.867520 -1.246377 -0.928106 -2.949051 1.459305 9.814299 -1.254311 2.124007 0.884575 -3.435888 2.665694 -0.260374 -1.833985 0.699863 2.624014 3.370112 -3.493729 -1.754036 1.903637 4.531949 1.429312 -2.308531 -0.031512 0.355222 -0.218180 -1.315128 2.194748 0.366037 0.140873 -1.486951 -0.612703 2.173697 5.324615 -1.133986 -3.042444 0.075589 2.794233 0.329680 -1.979788 0.348884 -1.910727 -0.538740 1.760939 -0.246656 1.942886 3.593603 -7.000231 2.893572 0.221927 -1.168215 1.707198 -0.029877 -0.891970 -3.624495 1.379474 3.129186 3.009986 0.375907 0.608310 -1.330233 -3.562121 -0.132484 0.966958 2.005419 -2.532158 3.187509 -0.490084 -2.476994 -2.285155 -1.726443 -1.448030 -1.210665 -2.161346 1.335451 1.481707 -5.785587 4.108196 -0.245332 -1.135853 -0.290265 -1.345582 2.290448 -3.490408 -4.086778 1.345749 -1.281519 -2.995551 -0.474713 -1.759405 1.712196 0.778884 0.065005 -2.248907 -4.167933 3.296578 0.331860 2.944355 2.260032 1.095173 3.966760 1.273986 -1.945001 -1.656955 -2.969206 2.717883 -0.501212 -1.384707 -1.414626 -1.760172 1.772066 4.645994 -0.827911 -1.101104 -1.686734 2.924245 -2.476355 -0.880912 1.331508 0.003142 -1.170365 1.200433 1.923186 -1.918322 -1.259441 -3.714205 0.842924 -0.942457 -2.445292 0.988378 -3.329689 -0.311670 2.767870 -1.422449 -1.850620 1.598947 0.427388 -0.616052 -0.306549 3.410286 3.115930 -2.578358 1.692695 -3.403474 2.238869 -4.421587 -2.861347 -0.566342 -0.487910 -0.222091 -0.966780 -0.457530 1.080981 0.685693 -0.366780 -1.412163 0.331004 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.126551 1.303036 1.062594 -0.759903 1.344718 1.199883 0.437021 0.360868 -0.844358 -1.368589 -0.531861 -1.916661 -2.307720 1.737583 -0.235741 0.096442 2.778556 0.391926 -0.011158 -0.451514 0.721898 -0.799890 2.424131 2.598084 -2.291150 0.590856 0.826061 0.847875 -0.133106 1.847209 -0.404870 -2.429300 0.394546 -0.080476 1.331634 -1.034748 -0.505103 -0.642669 -0.489291 -3.889036 -0.387073 1.622344 -0.240220 -0.088011 0.397692 0.777944 3.261763 1.330329 -0.738367 0.710845 0.825951 0.286067 0.858832 0.139362 0.466011 0.191375 0.712111 -0.251109 -0.982377 0.458827 -0.330045 -1.850491 -0.375239 1.869681 2.250073 -0.203208 -0.679415 -0.055202 -0.270658 0.223055 -0.390599 1.388707 1.166015 1.124850 1.415621 -0.960766 -0.063247 -2.903717 0.317722 -4.356728 -2.045097 -1.728216 1.502723 1.405068 0.623757 -1.175672 2.956563 -0.400637 0.806209 1.228632 3.045897 -1.558719 -0.509767 -1.522654 -0.656626 0.738639 -0.919469 -0.140058 0.342940 -0.499299 -1.690586 -1.629415 1.058567 -0.101035 -1.266451 -0.197509 -0.574249 1.721047 -2.037110 -0.805174 -2.728049 -0.094528 0.095863 -3.047526 -0.333004 -0.094115 0.041478 1.056552 -0.695055 -1.566116 0.716390 1.013963 -0.661619 -0.808056 -1.456315 2.474165 0.911296 -0.396208 0.711520 0.799488 1.094116 1.742543 1.777424 -0.504438 -0.476938 0.741822 -0.772645 -0.325964 -0.985198 -0.197060 0.584103 -1.472886 -0.433929 0.831275 -1.233761 -0.121637 -0.621699 -1.297153 0.927392 5.382596 -0.759166 1.241093 0.372817 -2.190017 2.060468 -0.156654 -1.164574 0.283406 1.637353 1.966925 -2.341456 -1.111805 1.044302 2.702381 0.964340 -1.542128 -0.129661 -0.169996 0.046123 -0.627141 1.270808 0.361668 0.379808 -1.077351 -0.329929 1.053484 3.537599 -1.072708 -2.217631 0.257756 0.870487 0.127425 -1.756107 0.047435 -1.190551 -0.405404 0.351122 -0.229217 0.972861 2.217368 -3.880041 1.964812 -0.284673 -1.184968 1.764779 -0.257764 -0.482838 -2.156000 0.668798 1.955765 2.029387 0.406621 -0.001978 -0.835843 -2.138960 -0.169570 0.374716 1.203847 -1.371111 1.899995 -0.377167 -1.638002 -1.349417 -1.364725 -0.552570 -0.993360 -1.227151 0.795475 1.156549 -3.409293 2.467094 0.008994 -0.759579 0.125825 -0.476630 0.981777 -2.033428 -2.555166 0.748876 -0.744142 -1.730124 -0.416464 -0.988005 0.956915 0.440642 -0.401703 -1.237134 -2.530535 2.024373 0.158976 1.732878 1.386256 0.683241 2.312798 1.689342 -1.457920 -0.877911 -1.508852 1.078245 -0.709080 -0.713105 -1.017318 -1.182255 1.276866 2.927157 -0.205818 -0.278362 -1.317776 1.864336 -1.585612 -0.655597 1.182743 -0.215869 -0.637952 0.565440 1.452751 -1.194184 -0.930898 -2.003018 0.122207 -0.492374 -1.444916 0.506032 -2.175513 -0.264073 1.679104 -0.985934 -1.121149 0.880483 0.104424 -0.469300 -0.410925 2.235429 1.804261 -1.739565 1.135407 -1.860573 1.332681 -2.655121 -1.487641 -0.253683 0.090148 -0.468632 -0.504042 0.325484 0.545375 0.268937 -0.539471 -0.833077 -0.202000 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::move_backward(suffix*, suffix*, suffix*) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_linear_insert >(suffix*, __gnu_cxx::__ops::_Val_comp_iter) = 0.002802 1.154829 1.219023 -0.908718 1.143685 0.785019 0.299559 0.486672 -0.851355 -1.407831 -0.454168 -1.427591 -2.022047 1.459921 -0.248815 -0.300623 2.499214 0.319244 0.070653 -0.826590 0.676512 -0.816366 2.177481 2.525829 -2.388838 0.612028 0.999356 0.964424 0.439246 1.413648 -0.186200 -1.896279 0.210963 0.026089 1.313404 -1.149079 -0.463775 -0.653096 -0.670874 -3.705167 -0.380117 0.965616 -0.684281 0.095525 0.486689 1.506711 2.964544 1.177058 -1.062608 0.924714 1.129740 0.425026 0.617487 0.001752 0.117520 -0.057972 0.689614 0.069802 -0.578360 0.610543 -0.097641 -1.854584 -0.157788 1.784329 2.074522 -0.338030 -0.639261 -0.102463 0.065078 0.152574 -0.265919 1.322213 1.197383 0.977675 1.473006 -1.301963 -0.166780 -3.477705 0.430573 -4.786299 -1.888754 -1.638418 1.735935 0.722199 0.198716 -0.834549 2.709151 -0.199935 0.821195 1.576055 2.511968 -1.152797 -0.351101 -1.293200 -0.808054 0.852992 -0.770108 0.023485 0.115223 -0.163259 -1.409517 -1.446779 0.971324 -0.344872 -1.277206 -0.227566 -0.585750 1.503970 -2.111404 -0.409288 -2.474396 0.137704 0.326367 -2.715540 -0.264814 -0.372578 1.156936 0.777436 -0.481983 -1.007394 0.404177 0.863954 -0.626520 -0.374298 -1.410642 2.181519 0.980995 -0.306251 0.551073 0.646813 1.009013 1.301117 1.752603 -0.533918 -0.608119 0.859705 -0.723610 -0.433853 -1.080095 0.035638 1.111205 -1.164450 -0.120938 0.514814 -1.068755 -0.582797 0.147283 -1.362559 0.825433 5.184400 -0.508676 1.126533 0.414083 -1.780824 1.424268 -0.102205 -0.981685 0.686470 1.572250 1.705227 -2.168623 -0.918108 0.687012 2.440266 0.802271 -1.667794 -0.246572 0.003904 -0.231135 -0.472980 1.177843 0.097914 0.186755 -0.803199 -0.303878 0.978772 3.052671 -0.637036 -1.889500 -0.149057 0.950805 -0.078037 -1.506777 0.250349 -0.646699 -0.253475 0.643420 -0.183013 1.049661 1.913319 -4.335709 1.629557 -0.268178 -0.811916 1.011092 -0.000209 -0.398939 -2.177158 0.762799 1.569229 1.874920 0.395123 0.089436 -0.506060 -1.949515 -0.127470 0.464621 1.032962 -1.396878 1.743800 -0.030982 -1.395271 -1.118251 -1.124069 -0.492372 -0.416151 -1.042886 0.703544 0.405701 -3.779273 2.059695 -0.330206 -0.761835 0.001492 -0.650929 1.077133 -1.926640 -2.167250 0.638661 -0.466080 -1.728097 -0.679535 -1.011668 1.004645 0.157181 -0.147644 -1.226882 -2.469454 1.805582 -0.129931 1.426744 1.363754 0.454746 2.547284 0.837933 -1.069591 -1.065418 -1.199606 1.366239 -0.577566 -0.584566 -0.573009 -1.089683 0.877840 2.732460 -0.379694 -0.167561 -0.760274 1.756711 -1.601168 -0.775630 0.786032 0.462883 -0.401707 1.074597 1.110854 -1.245609 -0.721839 -1.953362 -0.007488 -0.126992 -1.163653 0.802485 -1.905469 -0.127238 1.523796 -0.614481 -1.046016 1.053669 -0.103462 -0.320669 -0.348315 2.003257 2.652851 -1.702657 0.994408 -1.699770 1.319111 -2.374444 -1.381374 -0.462620 -0.029186 -0.119387 -0.371118 -0.134757 0.615103 0.433775 -0.513953 -0.721087 0.197602 +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.045188 0.450404 0.354599 -0.081000 0.415329 0.334159 0.129921 0.153386 -0.191916 -0.333870 -0.163066 -0.554522 -0.661460 0.420462 -0.049138 -0.034942 0.664699 0.109283 0.044005 -0.087544 -0.034656 -0.083661 0.644971 0.619131 -0.547697 0.240706 0.091023 0.148696 -0.177740 0.644014 -0.227473 -0.747336 0.164235 0.175096 0.249400 -0.170938 -0.168385 -0.280408 -0.249631 -0.973840 -0.089547 0.516667 -0.041191 -0.025975 0.153326 0.188909 0.917897 0.299554 -0.045279 0.239314 0.094831 0.093182 0.267054 0.068665 0.200640 0.012530 0.338589 -0.311144 -0.384419 0.130465 -0.072486 -0.567080 -0.305993 0.408020 0.511382 -0.034333 -0.176285 -0.148888 -0.212724 0.046958 -0.110054 0.315067 0.361412 0.369073 0.281473 0.147155 0.062841 -0.300119 -0.004970 -0.978621 -0.562201 -0.478799 0.491921 0.562012 0.113788 -0.324337 0.707044 -0.080080 0.271620 0.111470 0.804179 -0.424620 -0.165473 -0.247596 -0.049828 0.198653 -0.219228 -0.030919 -0.037389 -0.177369 -0.430873 -0.347625 0.353669 -0.084694 -0.307050 0.167610 -0.145536 0.377835 -0.641819 -0.120206 -0.747405 -0.128418 0.081908 -0.701251 -0.153381 0.196789 -0.031109 0.360421 -0.154771 -0.327118 0.226112 0.191679 -0.161820 -0.152186 -0.520261 0.601095 0.145317 -0.110335 0.261574 0.215021 0.343443 0.433212 0.380668 -0.073063 -0.098624 0.149001 -0.073480 -0.061181 -0.104926 -0.037444 -0.165518 -0.369270 0.042193 0.183002 -0.325532 0.016536 -0.639629 -0.261381 0.232160 0.925793 -0.217242 0.291006 0.022586 -0.578722 0.409795 -0.138181 -0.370610 -0.029930 0.365020 0.523548 -0.226803 -0.225225 0.245621 0.653417 0.239392 -0.302523 0.213021 -0.052164 0.044136 -0.171744 0.401778 0.121706 0.202043 -0.297414 -0.079445 0.218480 0.895246 -0.215421 -0.689739 0.097493 0.021257 0.184511 -0.184142 0.045705 -0.043924 -0.099921 0.095228 -0.078666 0.151652 0.528379 -0.896869 0.521758 -0.040962 -0.405367 0.503564 -0.114683 -0.093109 -0.184061 0.147492 0.523808 0.534756 0.206613 -0.030624 -0.278491 -0.491432 -0.092253 0.084046 0.281042 -0.315451 0.447935 -0.001131 -0.505217 -0.334006 -0.560839 0.013915 -0.173143 -0.434253 0.166315 0.389071 -1.021363 0.610229 0.059301 -0.233074 -0.040065 -0.090764 0.160439 -0.468096 -0.618592 0.095462 -0.327105 -0.584983 -0.024323 -0.272796 0.123284 0.115402 -0.027830 -0.249109 -0.453430 0.571740 0.174225 0.363365 0.372300 0.204078 0.528784 0.551078 -0.430750 -0.025317 -0.380463 0.417057 -0.372263 -0.081562 0.107677 -0.378494 0.283175 0.769477 0.000978 -0.078016 -0.450639 0.409192 -0.274233 -0.168152 0.376244 -0.140041 -0.089840 0.191302 0.423875 -0.214991 -0.249362 -0.464074 -0.027673 -0.129291 -0.351361 0.066598 -0.588831 -0.108036 0.501886 -0.286752 -0.443228 0.196737 -0.138481 -0.223633 -0.156024 0.544146 0.345232 -0.475297 0.540456 -0.393373 0.322073 -0.630689 -0.328067 -0.037119 -0.047154 -0.163899 -0.152373 0.003871 0.037892 0.006323 -0.157507 -0.243226 -0.036999 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a(suffix*, suffix*, suffix*) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__miter_base(suffix*) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_wrap(suffix* const&, suffix*) = -0.021026 0.229423 0.143580 0.026343 0.253999 0.036877 0.139132 0.064413 -0.154146 -0.272016 -0.112143 -0.274298 -0.407604 0.336218 0.019496 0.196591 0.560619 0.190063 0.070254 -0.169906 0.142008 -0.467798 0.541630 0.524271 -0.415006 0.168068 0.206609 0.153091 0.000000 0.375869 -0.202960 -0.296722 0.266132 -0.263466 0.205522 -0.332598 -0.065749 -0.055440 -0.037340 -0.794364 -0.067845 0.116022 0.104225 0.001183 -0.015652 0.331609 0.580898 0.279575 -0.089073 0.333787 0.110393 -0.147710 0.229184 0.122296 0.125171 0.177097 0.174500 -0.088139 -0.308130 0.126289 -0.050886 -0.700611 -0.047218 0.275307 0.464100 -0.113898 -0.081196 0.146598 -0.179552 0.029080 0.001329 0.224828 0.179276 0.067055 0.305662 -0.443972 0.017777 -0.598917 -0.184541 -1.204490 -0.433937 -0.401424 0.301305 0.036218 0.280059 0.048464 0.545242 -0.012266 0.189446 0.047505 0.576857 -0.522332 -0.165666 -0.173945 0.074505 0.154400 -0.250828 -0.063970 0.283188 -0.181758 -0.323222 -0.372473 0.528961 0.044623 -0.242398 -0.154769 -0.136957 0.344144 -0.579007 -0.369070 -0.675838 -0.301042 -0.132315 -0.526052 0.336874 0.118510 0.261122 0.317762 -0.060845 -0.407062 0.145190 0.276923 -0.023420 -0.327765 -0.186244 0.443632 0.082450 -0.064079 0.258289 0.164323 0.142063 0.511622 0.577101 -0.060364 -0.144369 0.191016 -0.271159 0.012000 -0.171323 -0.210630 0.132581 -0.436577 -0.040820 0.131950 -0.272899 0.025669 0.207815 -0.117615 0.206952 0.590272 -0.037864 0.192442 0.099418 -0.445512 0.331389 -0.204195 -0.180870 0.138591 0.401055 0.277048 -0.394949 -0.242700 0.080251 0.479155 0.215089 -0.408361 -0.292924 -0.187983 0.158474 0.013375 0.150675 0.143282 0.165406 -0.257663 -0.001529 0.077637 0.747994 -0.362693 -0.191731 0.108883 -0.133918 -0.114938 -0.728828 -0.074654 -0.273697 -0.107701 -0.195164 -0.026569 -0.005693 0.422056 -0.680916 0.407936 -0.329729 -0.256088 0.357264 -0.006861 -0.087510 -0.621210 0.114086 0.338393 0.435591 0.094532 0.089955 -0.078246 -0.424235 -0.060009 -0.024029 0.216105 -0.200758 0.355629 -0.064471 -0.363999 -0.262036 -0.133086 0.098844 -0.261911 -0.005939 0.175616 0.391982 -0.770444 0.388855 -0.119204 -0.278643 0.214109 0.102103 0.217649 -0.397861 -0.495405 0.182544 -0.159628 -0.289342 -0.184493 -0.124864 0.180174 -0.041944 -0.360903 -0.059231 -0.391131 0.341919 -0.019727 0.185225 0.279645 0.120691 0.554125 0.240180 -0.430143 -0.184782 0.006947 -0.151980 -0.455270 -0.027591 -0.206511 -0.208472 0.328361 0.701850 0.148089 0.089489 -0.058120 0.427903 -0.514781 -0.231077 0.390332 0.275691 -0.035687 0.246791 0.374775 -0.342687 -0.236085 -0.257465 -0.058228 0.069695 -0.262429 0.140051 -0.517620 -0.054271 0.319252 -0.145268 -0.161875 0.260374 -0.043619 -0.009149 -0.256590 0.489410 0.571330 -0.466596 0.121280 -0.256957 0.137005 -0.515404 -0.217183 -0.051278 0.398899 -0.151924 -0.008349 0.223495 0.104053 0.045889 -0.277740 -0.173822 -0.228759 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a1(suffix*, suffix*, suffix*) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_base(suffix*) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a2(suffix*, suffix*, suffix*) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward::__copy_move_b(suffix*, suffix*, suffix*) = -0.764512 -0.138784 -0.165633 -1.663793 1.492798 1.180988 0.638658 -0.919964 -1.542606 -1.098009 0.397744 -2.982215 -1.783715 1.842072 -0.661659 1.516075 3.158839 -0.029311 -0.480221 -1.020704 1.156347 0.215935 3.435881 3.538160 -2.365733 0.246619 0.332591 0.859258 0.166342 -0.081707 0.301680 -2.312100 0.766264 -1.306879 0.634883 -0.578590 -0.648991 0.093345 1.652559 -3.856937 -0.239558 0.916874 0.090908 0.051988 0.172860 0.996357 2.663819 1.854410 -0.452675 1.613554 1.694418 0.266227 1.074847 0.159576 0.256836 -0.041582 0.221975 -0.640299 -0.480820 -0.286010 -0.507809 -0.343467 -0.048404 2.326744 2.664851 -0.257705 -1.354439 0.707735 0.873311 0.407764 0.362908 2.048204 0.459731 0.994416 1.471853 -2.536157 -0.125328 -4.402136 0.415431 -4.653056 -2.308066 -0.479639 1.628578 0.844846 1.217446 -0.468448 3.674496 -0.281405 -0.352657 1.722294 2.758724 -1.945997 -0.607121 -0.811285 -0.699051 0.287102 -0.890954 0.611344 0.737967 0.794484 -2.172674 -1.225884 0.760302 -0.107018 -1.428148 -1.400543 0.079093 1.318345 -1.627332 -1.269362 -1.936925 1.497314 0.164542 -3.774991 -0.442092 -0.882290 0.507626 0.552084 -1.511777 -1.941786 0.701592 0.341571 -1.002978 -0.790177 -1.061754 1.816359 2.004338 0.330363 0.447245 1.448041 1.070272 3.599374 0.813801 -1.309072 -0.355429 0.700886 -0.475648 0.624800 -1.094615 -0.422705 0.968062 -2.020864 0.674518 1.077602 -1.361747 -0.597314 0.774514 -0.733513 0.102087 6.667395 -0.832930 2.480611 1.942509 -2.030635 1.279553 -1.290010 -0.087275 0.574443 1.626216 1.491715 -2.745015 -1.718518 1.957522 3.333829 1.208564 -2.371214 -0.222593 0.997682 0.490509 -0.892336 1.126287 0.462403 0.571296 -1.132063 -0.130323 1.666382 4.366830 -1.007693 -0.484164 0.288550 2.104753 0.381705 -1.891587 -0.483764 -2.351155 -0.324412 1.319980 0.982573 1.118141 2.678698 -4.205178 1.762437 0.000953 -0.037860 1.875136 0.998284 -1.744486 -2.931578 -0.108563 1.336275 1.950399 -0.413831 0.848004 -0.093229 -2.472032 0.063192 0.555195 0.710334 -1.742899 2.176011 -0.183988 -1.380670 -0.664510 -0.137923 -0.901823 -0.842095 -0.842191 1.667371 1.331984 -3.642902 2.169979 0.251169 -1.363746 0.229116 -1.233446 2.585200 -2.077567 -1.971406 1.388970 -1.238106 -1.177257 -0.370542 -0.660111 0.765372 0.298984 0.973695 -1.977577 -2.147875 2.575673 -0.066597 2.707263 1.488487 -0.269166 1.714923 -1.124681 -1.443633 -1.043784 -2.090259 0.606977 0.202006 -1.524450 -0.753909 -0.909226 1.635244 2.462619 -0.370324 -1.196171 -0.386714 1.776959 -2.717761 0.084349 0.924259 1.039247 -1.536304 0.987465 1.353463 -1.690559 0.236625 -2.054661 0.127793 -1.372321 -1.515699 1.456864 -1.221373 0.416945 0.677721 -0.814672 -0.137191 1.142146 0.696560 -0.022021 0.335059 2.682592 2.292056 -0.638993 -0.127170 -2.877075 1.406830 -2.731367 -2.367901 0.394018 -0.000190 -1.455610 -0.759373 -0.075274 1.781994 0.757090 -1.005019 -1.664231 0.827865 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__copy_move::__assign_one(suffix*, suffix*) = 0.015326 0.305589 0.272096 -0.092326 0.331589 0.019234 0.142761 0.188865 -0.244985 -0.430890 -0.126855 -0.350562 -0.563458 0.426435 -0.018425 0.018889 0.731085 0.202839 0.089060 -0.281305 0.142341 -0.439801 0.658302 0.678857 -0.604381 0.211934 0.268261 0.223925 0.075098 0.436476 -0.116746 -0.479339 0.239550 -0.121858 0.309757 -0.387748 -0.101577 -0.149497 -0.207559 -1.037367 -0.079155 0.182633 -0.037371 0.018170 0.058461 0.541879 0.782364 0.335961 -0.213088 0.409310 0.240512 -0.021109 0.198812 0.093261 0.093706 0.073144 0.191343 -0.087957 -0.331041 0.199563 -0.040564 -0.793656 -0.100875 0.398610 0.569804 -0.141817 -0.121563 0.060145 -0.140146 0.071021 0.004186 0.282828 0.331049 0.131980 0.418898 -0.422031 -0.085424 -0.904041 -0.108471 -1.689015 -0.553428 -0.510393 0.570308 0.051468 0.125568 -0.020529 0.692101 -0.005777 0.268045 0.281363 0.714284 -0.445037 -0.191713 -0.263788 -0.031155 0.264737 -0.276282 -0.043770 0.245538 -0.121126 -0.404524 -0.398683 0.503766 -0.063812 -0.315675 -0.123262 -0.167341 0.438884 -0.772032 -0.228976 -0.828908 -0.170922 0.034686 -0.684383 0.187852 0.082373 0.474705 0.348580 -0.098923 -0.302042 0.152144 0.273962 -0.111719 -0.198710 -0.293969 0.559031 0.126124 -0.044367 0.273719 0.216880 0.233185 0.480991 0.669861 -0.107787 -0.180215 0.250388 -0.250450 -0.051138 -0.243877 -0.154339 0.250033 -0.437509 0.090300 0.092064 -0.341066 -0.180997 0.132947 -0.256328 0.268325 0.916863 -0.075736 0.280062 0.108616 -0.504354 0.292208 -0.182646 -0.244560 0.185354 0.509935 0.374932 -0.337508 -0.268256 0.110025 0.622933 0.263416 -0.518705 -0.210223 -0.138783 0.076952 -0.018174 0.247992 0.113014 0.161512 -0.275518 -0.041947 0.169629 0.856255 -0.282065 -0.409182 0.016709 0.049499 -0.057187 -0.620617 0.013041 -0.150413 -0.069883 -0.005543 -0.057867 0.121975 0.535698 -1.141286 0.494336 -0.257376 -0.231672 0.281283 0.047856 -0.098314 -0.743689 0.164834 0.424578 0.588049 0.158672 0.082967 -0.090150 -0.519503 -0.072198 0.045734 0.286279 -0.291859 0.436306 -0.025973 -0.418220 -0.319013 -0.261431 0.048989 -0.129063 -0.115680 0.192305 0.327795 -1.182680 0.514678 -0.183265 -0.308665 0.087168 0.016676 0.304516 -0.522908 -0.617571 0.171293 -0.197696 -0.540597 -0.244854 -0.224543 0.253633 -0.046840 -0.224393 -0.117850 -0.538565 0.520308 -0.020484 0.294226 0.369573 0.123866 0.817885 0.178203 -0.427901 -0.240787 -0.116856 0.140614 -0.498093 -0.052327 -0.062531 -0.284441 0.300337 0.837486 0.060530 0.022046 -0.105316 0.532859 -0.583280 -0.291320 0.398846 0.328162 -0.004101 0.455158 0.433902 -0.446722 -0.264062 -0.439627 -0.054276 0.078268 -0.308269 0.195666 -0.610439 -0.046158 0.417243 -0.134677 -0.284770 0.324948 -0.099119 -0.054215 -0.252291 0.575566 0.885884 -0.617744 0.265698 -0.368881 0.259695 -0.651413 -0.343027 -0.118131 0.266763 -0.093244 -0.018971 0.054975 0.130681 0.074351 -0.278999 -0.251801 -0.068157 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(suffix&, suffix*) = 0.084637 1.184083 0.917392 -0.531904 1.518922 1.182306 0.516660 0.440184 -0.972582 -1.307529 -0.076214 -2.222130 -2.446831 1.646402 -0.092878 -0.170471 2.345032 -0.052773 -0.024092 -0.520044 0.187501 0.109908 2.364093 2.326483 -1.984480 0.838657 0.422607 0.298741 -0.344491 1.375288 -0.181850 -2.696551 0.588985 0.311695 0.602680 -0.194369 -0.883716 -1.122406 -0.346472 -3.275249 -0.368094 1.719798 -0.880069 -0.065307 0.532550 1.135551 3.142643 1.104494 -0.470868 1.259838 0.667879 0.066706 0.747648 0.050926 0.660024 -0.476663 0.727785 -0.271175 -1.073868 0.375778 -0.368698 -1.421965 -1.161108 1.529678 1.764413 -0.279149 -1.015574 -0.290891 -0.355090 0.331736 -0.330861 1.408117 1.614592 1.166823 1.466030 0.230504 -0.478041 -2.136230 0.149967 -4.181908 -2.132337 -1.021002 2.272125 1.065478 0.146630 -1.120536 2.639550 -0.251843 0.319197 1.258597 2.876538 -1.094919 -0.535244 -0.647890 -0.416952 0.602298 -0.668544 0.349084 0.283372 -0.524373 -1.760370 -1.071911 0.808733 -0.564730 -1.139711 0.052669 -0.361077 1.388529 -2.042925 -0.047864 -2.300387 0.258592 0.733358 -2.721133 -1.436183 0.645071 0.531986 1.253142 -1.031827 -0.771637 0.877124 0.179646 -0.798549 -0.427368 -0.650179 1.905368 0.916959 0.305982 0.809340 1.090195 1.488764 1.714105 1.452820 -0.336838 -0.102074 0.260627 0.202416 0.335179 -0.149422 -0.008147 -0.219829 -0.991406 0.781196 0.530949 -1.124008 -0.652022 -1.456810 -0.907485 0.238782 4.116007 -0.789603 1.583388 0.518219 -1.814749 0.923650 -0.753346 -1.112152 0.046890 1.390878 1.881503 -0.744654 -0.748858 1.453721 2.630793 0.835972 -1.948332 0.855828 0.532132 0.131364 -0.942982 1.641430 0.271504 1.175697 -0.941766 -0.270022 1.310373 3.135322 -0.954528 -3.028162 0.165393 0.854672 1.179821 -0.498001 0.284300 -0.057630 -0.229442 1.239086 -0.103862 0.825998 1.909336 -3.897341 1.653338 0.142847 -1.056611 1.516686 0.534046 -0.860614 -0.959739 0.262591 1.606413 1.769070 0.984007 -0.236553 -0.884105 -1.839604 -0.223110 0.587773 0.584672 -1.196911 1.867273 -0.247738 -1.315913 -0.980183 -1.770794 -0.199602 -0.175316 -1.463857 0.851335 0.844220 -4.179431 2.045421 0.350986 -0.919001 -0.749257 -0.640242 1.236379 -1.461266 -2.279700 0.491791 -1.549465 -2.573414 -0.183178 -1.115835 0.193086 0.942593 0.633203 -1.026262 -1.775181 2.598164 0.485212 1.995802 1.394704 0.382241 2.443626 0.708999 -1.562302 -0.345985 -1.735369 2.394649 -0.804129 -0.708497 -0.048179 -1.296785 0.841146 2.144823 -0.270513 -0.706954 -1.945132 1.301450 -1.663723 -0.332367 1.132088 0.443798 -0.536288 1.223803 1.427996 -0.683283 -0.173191 -1.841414 -0.327092 -1.089970 -1.150447 0.397452 -1.519139 -0.292693 1.380670 -0.951005 -1.143656 0.595492 -0.419155 -0.565847 -0.332790 1.607861 2.387994 -2.110075 1.379817 -1.780799 1.545308 -2.125482 -1.801202 0.239948 -0.535124 -0.594873 -0.947953 -0.363441 0.258231 0.354135 -1.173565 -1.277738 0.791142 +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.007533 0.612027 0.484476 -0.255340 0.589970 0.512892 0.164417 -0.041031 -0.253855 -0.326369 -0.220214 -0.573810 -0.693807 0.596131 -0.076679 0.141168 0.962255 0.109836 -0.008862 -0.217546 0.278220 -0.316833 0.932002 0.900266 -0.836295 0.291618 0.490524 0.258143 0.015136 0.762733 -0.512544 -0.699334 0.231195 -0.196005 0.324918 -0.405398 -0.191100 -0.371432 -0.009142 -1.327110 -0.100037 0.180548 -0.196613 -0.042767 0.055153 0.338059 1.250852 0.462681 -0.209058 0.257785 0.306402 0.085952 0.225293 0.101027 0.275118 0.238959 0.611781 0.060042 -0.319845 0.086477 -0.081153 -0.675112 -0.133798 0.656708 0.763091 -0.042282 -0.201706 0.111645 -0.140287 -0.024345 -0.169343 0.451031 0.335990 0.499361 0.440980 -0.584677 0.156693 -1.003336 -0.099403 -1.481642 -0.720552 -0.640394 0.277849 0.076413 0.416898 -0.102165 0.997064 -0.084404 0.350763 0.151324 1.093752 -0.795538 -0.169239 -0.377077 -0.206637 0.192835 -0.296042 0.029089 0.110762 -0.354618 -0.577523 -0.703521 0.634240 0.075962 -0.462537 -0.061640 -0.156265 0.541859 -0.761810 -0.396982 -0.921090 -0.275602 -0.183196 -1.046711 -0.049495 0.022419 0.438754 0.319810 -0.166247 -0.836505 0.219318 0.572792 -0.211106 -0.481481 -0.270172 0.784548 0.429866 -0.097145 0.287894 0.087033 0.437228 0.809958 0.808454 -0.162351 -0.171235 0.158617 -0.344233 -0.127247 -0.288190 -0.083042 0.044540 -0.551125 -0.021497 0.492912 -0.427580 0.100052 0.184968 -0.375350 0.339968 1.867765 -0.256692 0.411127 0.068754 -0.896925 0.491794 -0.212526 -0.504081 0.113661 0.533528 0.700256 -0.989071 -0.406075 0.335715 0.895623 0.349421 -0.728086 -0.129396 -0.191078 -0.048520 -0.140929 0.355552 0.096721 0.144541 -0.415742 -0.145916 0.341073 1.415670 -0.498078 -0.892492 0.190336 -0.040720 -0.031361 -0.748812 -0.066374 -0.336593 -0.082723 0.044957 -0.123534 0.318181 0.772313 -1.510571 0.671607 -0.308658 -0.648813 0.732937 -0.019367 -0.174613 -0.464826 0.285738 0.747902 0.691086 0.176708 -0.002461 -0.285431 -0.724058 -0.111071 0.079634 0.368657 -0.477226 0.615223 0.119689 -0.789918 -0.496015 -0.421255 0.055204 -0.375280 -0.350100 0.274773 0.142841 -1.563451 0.910480 0.047324 -0.270598 0.205009 -0.210494 0.340367 -0.687562 -0.898089 0.305229 -0.197455 -0.328303 -0.096062 -0.288561 0.352789 0.155883 -0.007925 -0.520874 -0.885122 0.516802 0.042601 0.485722 0.507826 0.349667 0.821778 0.261337 -0.493047 -0.438213 -0.285487 0.314293 -0.237346 -0.283812 -0.330631 -0.471093 0.531478 1.089299 -0.052361 0.036718 -0.449071 0.599198 -0.771620 -0.190555 0.458533 0.361148 -0.370808 0.118285 0.524345 -0.336357 -0.385278 -0.502463 -0.200204 -0.164795 -0.555902 0.191529 -0.721981 -0.082159 0.651281 -0.320161 -0.385092 0.379886 -0.129688 -0.034842 -0.170501 0.664142 0.915989 -0.713932 0.299927 -0.569574 0.441459 -0.954045 -0.594072 0.079808 0.049778 -0.234696 -0.200591 0.121619 0.254418 0.004062 -0.189847 -0.136126 -0.212207 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(int (*)(suffix, suffix)) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::~_Vector_base() = -0.002640 0.797467 0.844345 -1.146427 1.530679 1.145202 0.094765 -0.051693 -0.575994 -0.518080 -0.362440 -1.847741 -1.442776 0.593985 -0.412039 0.171410 1.329980 -0.550382 -0.221618 -0.360000 0.089352 1.005390 1.654892 1.110072 -1.497432 0.434196 -0.039536 0.852891 -0.248972 1.033327 -0.736511 -1.597752 -0.287337 0.615416 0.505594 0.225499 -0.353370 -0.772585 -0.062563 -1.797364 -0.188213 1.124656 -0.544288 0.209613 0.430743 0.530965 2.099468 0.794626 -0.327641 0.210110 0.959460 0.553143 0.652096 0.055525 -0.103483 -0.223531 1.348959 -0.708539 -0.452342 -0.309898 -0.150311 -0.152318 -0.423406 1.083987 1.088000 -0.152330 -0.904661 0.008042 0.459623 -0.043709 -0.132655 1.163710 0.538393 1.153082 0.726746 0.483564 0.537833 -0.575886 0.563772 -1.068139 -1.262341 -0.891028 0.611191 1.408833 0.171715 -0.886565 2.164696 -0.431848 0.335355 0.434693 1.393829 -0.805838 -0.106211 -0.877809 -0.531053 0.048351 -0.261525 -0.227587 -0.546264 0.624136 -0.848329 -0.269698 0.069848 -0.584140 -0.789344 0.462114 -0.333851 0.373677 -1.001511 0.004194 -1.435652 0.946839 0.494527 -1.855072 -1.348483 0.183173 -0.127556 -0.058236 -0.146788 -0.725124 0.357408 0.253494 -0.877751 0.296533 -1.446606 1.312398 1.258239 -0.306308 0.455541 0.601657 1.012269 1.137901 0.291296 -0.499692 -0.782690 0.410753 0.111266 -0.248503 -0.218779 0.498065 -0.418645 -0.822607 0.506165 0.820425 -0.478777 0.192359 -1.754599 -0.872780 0.322923 3.185701 -0.830532 0.832192 0.161745 -1.089304 0.819868 -0.234118 -0.752745 -0.107611 0.138212 1.376542 -0.831057 -0.669866 1.256660 1.439614 0.448704 -0.966017 1.420845 0.658950 0.098668 -0.571604 0.692786 0.540956 0.300570 -0.389333 -0.232036 0.533087 2.520054 0.047948 -1.838002 0.575407 0.680255 0.437553 0.327489 -0.138893 -0.190297 -0.567354 1.178172 0.305561 0.699370 1.370487 -2.253265 0.842985 0.830223 -0.842575 1.451703 -0.402802 -0.137582 0.212307 -0.176114 1.084231 0.974233 -0.008985 -0.118704 -0.871238 -0.966188 0.237365 0.547222 0.546451 -0.828981 0.931375 0.294803 -1.058759 -0.324566 -1.489375 -0.485454 0.423031 -1.386281 0.474828 -0.108108 -2.577333 1.470163 0.243609 -0.344046 -0.172975 -0.934056 0.837366 -0.818767 -0.870723 0.514222 -0.737945 -1.008533 0.038194 -0.332893 0.159133 0.483042 1.123535 -1.558825 -1.436999 1.311844 0.393445 1.084507 0.848968 0.320021 0.472717 0.563803 -0.520216 -0.194076 -1.349915 1.257602 0.325647 -0.400909 0.582010 -0.682450 0.543110 1.222854 -0.649776 -0.052376 -1.249266 0.497709 -0.610524 -0.045510 0.378821 -0.538254 -1.025248 0.406276 0.719134 -0.037142 -0.308367 -1.395538 -0.004178 -1.052642 -0.796144 0.274103 -0.957396 -0.296143 1.355712 -0.798378 -1.045307 0.402728 -0.241285 -0.761642 -0.225373 1.606216 0.944018 -0.226683 1.179772 -1.326746 1.106787 -1.431973 -1.030722 0.250224 -1.249898 -0.500211 -0.517758 -0.096281 0.643548 -0.072258 -0.134725 -0.648133 0.255827 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*) = -0.019407 0.273966 0.259081 -0.080884 0.309645 0.050318 0.142235 0.149091 -0.215330 -0.410622 -0.115160 -0.338108 -0.570570 0.421248 -0.058553 0.048956 0.723007 0.215387 0.084231 -0.283319 0.175187 -0.420670 0.696175 0.698475 -0.641457 0.165610 0.288206 0.285831 0.133719 0.399262 -0.087983 -0.435110 0.270733 -0.149966 0.310749 -0.408235 -0.038281 -0.122254 -0.198392 -1.032986 -0.091631 0.145920 -0.024162 0.034956 0.046384 0.528158 0.740696 0.371437 -0.224709 0.395735 0.277863 -0.010095 0.201914 0.106846 0.033519 0.038202 0.169561 -0.114359 -0.324604 0.165287 -0.019570 -0.830518 -0.087155 0.426287 0.634452 -0.131590 -0.074745 0.086868 -0.139659 0.082190 0.024442 0.279507 0.302313 0.155657 0.435010 -0.442502 -0.069929 -0.924281 -0.132104 -1.643774 -0.534799 -0.548676 0.532176 0.059785 0.159225 0.000770 0.699167 0.052970 0.266909 0.288059 0.715246 -0.481574 -0.199380 -0.291488 -0.022785 0.300930 -0.338804 -0.003727 0.237918 -0.084069 -0.397568 -0.431695 0.478068 -0.038720 -0.321384 -0.152185 -0.195176 0.443302 -0.760574 -0.267361 -0.834410 -0.205071 0.000868 -0.727546 0.193557 0.039768 0.494139 0.334587 -0.038995 -0.306443 0.112061 0.300162 -0.061317 -0.232256 -0.303906 0.551160 0.163285 -0.072655 0.270851 0.225453 0.207105 0.519094 0.654042 -0.106349 -0.226360 0.258504 -0.305818 -0.044710 -0.306800 -0.137058 0.305200 -0.468044 0.075012 0.135736 -0.336131 -0.197912 0.167250 -0.256946 0.313236 0.956117 -0.023740 0.265358 0.150604 -0.513703 0.295514 -0.194714 -0.212270 0.236731 0.494869 0.342343 -0.388505 -0.294539 0.078352 0.616740 0.264734 -0.515453 -0.230427 -0.153255 0.108237 -0.064700 0.213921 0.160458 0.106265 -0.270812 -0.025613 0.209391 0.809273 -0.304845 -0.367898 0.035107 0.065942 -0.110960 -0.659071 -0.015571 -0.159836 -0.083577 -0.007412 -0.019435 0.100944 0.550745 -1.084996 0.482626 -0.202153 -0.180960 0.289660 0.016558 -0.124802 -0.724071 0.229030 0.426963 0.544939 0.131364 0.095101 -0.052397 -0.546002 -0.061082 0.057321 0.301638 -0.272764 0.429013 -0.017298 -0.391406 -0.375047 -0.237409 0.049400 -0.166388 -0.102770 0.213087 0.329878 -1.151846 0.516973 -0.235574 -0.357308 0.121564 -0.023401 0.324760 -0.585188 -0.628131 0.192746 -0.187097 -0.517663 -0.294242 -0.179253 0.273998 -0.046044 -0.228424 -0.141136 -0.532863 0.486375 -0.042853 0.239033 0.356741 0.146419 0.794759 0.152103 -0.435552 -0.290217 -0.092053 0.102464 -0.473381 -0.092607 -0.095254 -0.246149 0.327311 0.890129 0.046204 0.016698 -0.062036 0.556048 -0.610350 -0.350084 0.399893 0.375271 -0.008415 0.442069 0.419793 -0.488547 -0.288980 -0.422798 -0.048961 0.125003 -0.359580 0.224729 -0.632730 -0.004904 0.423628 -0.110211 -0.271348 0.358439 -0.067909 -0.031077 -0.253068 0.607855 0.878567 -0.600770 0.234916 -0.401148 0.243418 -0.697028 -0.357012 -0.093099 0.246883 -0.067480 0.027981 0.080777 0.162093 0.092842 -0.277211 -0.256381 -0.111101 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy_aux::__destroy(int*, int*) = -0.031051 0.113770 0.123194 0.063663 0.186286 -0.052390 0.143168 0.086784 -0.173583 -0.210966 -0.088026 -0.252131 -0.321299 0.306270 0.034115 0.224738 0.492504 0.245772 0.049328 -0.116309 0.093186 -0.502807 0.441717 0.438925 -0.284235 0.137028 0.061485 0.142213 -0.055994 0.385086 -0.213199 -0.207531 0.245297 -0.241329 0.185412 -0.322737 -0.044724 0.043745 -0.052225 -0.682409 -0.033265 0.195095 0.258754 -0.017139 -0.013674 0.280717 0.420494 0.236746 -0.003462 0.303959 0.021357 -0.228176 0.260733 0.133842 0.164018 0.212764 0.180888 -0.123027 -0.351767 0.129129 -0.071598 -0.681198 -0.024519 0.180852 0.392939 -0.098208 -0.055098 0.085008 -0.177601 0.040303 0.062594 0.147006 0.110347 -0.036193 0.227853 -0.322980 0.077324 -0.381115 -0.181798 -1.007977 -0.361528 -0.318049 0.317857 0.113180 0.250222 -0.000134 0.432729 -0.042661 0.140425 -0.069342 0.467667 -0.469709 -0.181648 -0.131218 0.124248 0.122909 -0.226069 -0.139882 0.338166 -0.154006 -0.276021 -0.257327 0.520845 0.062245 -0.173477 -0.057655 -0.110973 0.322826 -0.503255 -0.379261 -0.590891 -0.289453 -0.119382 -0.395715 0.439194 0.121452 0.067774 0.319521 -0.079172 -0.322093 0.166018 0.205467 -0.012316 -0.266022 -0.279544 0.428967 -0.042416 -0.076163 0.235012 0.157550 0.050984 0.394823 0.470692 -0.066374 -0.097416 0.199175 -0.276341 0.044778 -0.148148 -0.268364 0.088685 -0.414348 -0.118208 0.030846 -0.253157 0.115425 0.084079 0.018016 0.175169 0.304152 -0.025957 0.159624 0.081513 -0.349268 0.406099 -0.131523 -0.092808 0.094125 0.355654 0.167127 -0.295762 -0.223600 0.038113 0.385759 0.206663 -0.304508 -0.289773 -0.218869 0.200587 0.076754 0.115861 0.157547 0.163831 -0.249635 0.015655 -0.032461 0.640414 -0.325825 -0.127899 0.108983 -0.230576 -0.132559 -0.714408 -0.084834 -0.260814 -0.106066 -0.340707 -0.023310 -0.060561 0.360734 -0.470719 0.397790 -0.338994 -0.228527 0.414483 -0.083752 -0.060505 -0.634337 0.015930 0.249930 0.425852 0.090361 0.027417 -0.026690 -0.351476 -0.055469 -0.079011 0.191338 -0.133178 0.284109 -0.108726 -0.290322 -0.190579 -0.162414 0.107860 -0.265603 0.018215 0.150161 0.470953 -0.528168 0.278262 -0.090443 -0.245254 0.227538 0.210303 0.092975 -0.314877 -0.401186 0.121659 -0.135589 -0.269046 -0.215827 -0.082630 0.131611 -0.097801 -0.454129 0.025724 -0.286350 0.310643 -0.053390 0.152913 0.216458 0.049757 0.412678 0.472264 -0.404020 -0.084364 0.070137 -0.295387 -0.516975 0.039563 -0.157377 -0.165152 0.301266 0.583845 0.215960 0.130717 -0.040466 0.412288 -0.363266 -0.231744 0.401546 0.067398 0.035478 0.213800 0.371858 -0.345165 -0.214760 -0.193623 -0.073504 0.094764 -0.176691 0.121709 -0.450770 -0.044170 0.212947 -0.121282 -0.137273 0.189099 -0.015092 -0.060009 -0.249689 0.501776 0.382905 -0.357053 0.147860 -0.176659 0.081083 -0.403921 -0.085202 -0.087629 0.460536 -0.205021 0.046638 0.302876 0.073603 0.037402 -0.277778 -0.168504 -0.243337 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -0.272973 0.576047 0.428127 -0.347647 0.959655 0.676096 0.452744 0.028341 -0.703448 -0.992293 -0.185163 -1.274605 -1.623779 1.398392 -0.128569 0.594422 2.147562 0.381584 0.030701 -0.581237 0.848310 -1.031392 2.077826 2.114958 -1.700075 0.373472 0.860670 0.630812 0.142416 0.949575 -0.245137 -1.445029 0.720803 -0.898872 0.767666 -0.971425 -0.322770 -0.217191 0.170330 -2.905967 -0.325798 0.652071 -0.203462 0.014062 0.065534 0.966615 2.128266 1.139898 -0.570379 1.097500 0.725384 -0.254129 0.676308 0.224349 0.319772 0.284535 0.296750 0.123912 -0.765388 0.305540 -0.304920 -1.723209 -0.142119 1.337839 1.866036 -0.344834 -0.505974 0.458768 -0.276553 0.230536 -0.072613 1.105233 0.773077 0.504841 1.346100 -1.611022 -0.294707 -2.895329 -0.182074 -4.047873 -1.575785 -1.148258 1.104882 0.142982 0.857913 -0.244382 2.279016 -0.117566 0.311686 0.947862 2.257143 -1.565798 -0.483841 -0.876924 -0.217359 0.493119 -0.899097 0.065120 0.856960 -0.433876 -1.349343 -1.452053 1.157868 0.068386 -0.953657 -0.813627 -0.466163 1.396267 -1.702690 -1.086428 -2.182465 -0.321568 -0.233752 -2.361922 0.146443 -0.013897 0.789533 0.957196 -0.563582 -1.389576 0.574700 0.856574 -0.292514 -1.080496 -0.156485 1.658002 0.798509 -0.059627 0.635611 0.740000 0.650953 1.926046 1.849932 -0.367817 -0.417824 0.600574 -0.796733 0.139138 -0.787393 -0.411442 0.731361 -1.365316 -0.068996 0.689589 -0.974432 -0.267224 0.828481 -0.718545 0.570919 3.868209 -0.331729 1.052755 0.636510 -1.641982 1.246354 -0.573026 -0.543922 0.531874 1.430267 1.218944 -1.982016 -0.947494 0.793633 2.089405 0.789879 -1.776426 -0.765834 -0.190730 0.417860 -0.406993 0.762337 0.442852 0.478747 -0.855386 -0.082669 0.784852 2.776845 -1.335704 -1.308845 0.275847 0.499418 -0.130107 -2.216679 -0.172224 -1.194047 -0.350240 0.151041 0.013170 0.440223 1.709207 -2.965999 1.424704 -0.612640 -0.686020 1.297287 0.287176 -0.621592 -2.161626 0.420644 1.263395 1.484398 0.363629 0.218355 -0.318709 -1.748561 -0.072307 0.212870 0.783800 -0.933213 1.548149 -0.366111 -1.133979 -1.010107 -0.469829 -0.168869 -0.945592 -0.359881 0.808241 0.953960 -2.883933 1.622621 -0.198568 -0.902669 0.414381 -0.119926 1.201355 -1.557372 -2.011159 0.843567 -0.658005 -1.177213 -0.586219 -0.585045 0.701896 0.363735 -0.537729 -0.734347 -1.867234 1.520235 -0.076287 1.299022 1.027497 0.348852 2.113197 0.362469 -1.413693 -0.954299 -0.704044 0.340612 -0.768589 -0.591160 -1.284684 -0.696890 1.186789 2.275478 0.105563 -0.141149 -0.684929 1.574369 -2.022334 -0.530396 1.098550 1.034901 -0.462253 0.757282 1.204075 -1.189628 -0.555726 -1.232100 -0.086235 -0.299699 -1.088877 0.604510 -1.631616 -0.060304 0.992049 -0.552363 -0.446477 0.811170 0.181398 0.008687 -0.505557 1.716073 2.215213 -1.630928 0.247431 -1.441266 0.896210 -2.027245 -1.277520 -0.022263 0.653693 -0.477501 -0.279890 0.494355 0.586633 0.392866 -0.943699 -0.786109 -0.303453 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 0.071701 5.327429 4.557884 -2.761672 4.783759 4.521467 1.260191 0.309883 -1.807277 -3.646772 -1.115281 -6.908644 -7.900896 4.628861 -0.899487 -0.593632 8.089213 -0.667352 -0.415835 -2.270422 1.847287 -0.408080 8.488794 8.436496 -8.398163 2.313799 3.818974 2.856671 1.297240 4.133957 -2.600248 -6.263730 1.235679 0.009594 3.457227 -1.398895 -1.859625 -4.938500 -1.089500 -11.456566 -1.497014 3.025915 -2.992006 -0.033629 1.250983 4.932720 11.753877 4.289544 -2.891745 1.681345 3.749881 0.280905 2.341403 0.117448 0.994694 -1.377927 4.853319 1.387975 -2.488834 0.416827 -0.276473 -5.392211 -1.953538 6.499919 7.040750 -0.389240 -2.577728 0.380294 0.503816 0.061809 -1.884977 5.054267 4.788954 5.688119 5.259478 -2.886664 0.987242 -9.325173 0.315759 -13.512181 -7.054228 -5.422619 4.527647 1.001580 1.866621 -2.978680 9.452456 0.032282 2.774936 3.343212 9.887881 -5.334735 -1.375607 -3.745408 -2.331092 2.440205 -2.835591 1.771320 1.049818 -1.913293 -5.569442 -4.568424 3.469739 -0.773854 -4.496349 0.403484 -1.449274 3.996354 -5.544563 -1.110140 -8.281870 -1.314158 1.011046 -10.530580 -2.780243 0.432229 3.808554 2.707398 -1.584510 -4.902847 1.262164 3.014082 -2.176464 -2.396522 -3.833605 7.616953 5.005730 -0.145999 2.733398 2.465849 5.301352 5.852861 6.176787 -1.268986 -1.995615 1.016371 -2.618335 -0.673524 -2.169633 0.439174 2.279255 -3.742791 0.566293 3.649842 -3.542252 -0.704178 -0.269842 -3.959752 2.495572 18.204794 -2.153799 4.522767 1.282416 -6.979167 4.492509 -1.987950 -4.679429 1.114191 4.241476 7.035160 -8.044290 -3.177852 4.029865 8.759967 2.652110 -7.318569 1.801525 0.944757 -0.532602 -3.547531 4.168331 1.041655 2.145091 -3.082609 -1.091124 5.364916 11.247043 -3.714703 -9.968088 0.857465 1.604134 1.983536 -4.495806 0.313023 -0.935295 -0.919622 2.509869 0.070186 3.592864 6.849924 -13.893306 5.262433 0.371782 -4.469237 6.663320 0.059323 -2.701455 -3.777246 3.322731 6.599199 4.969886 2.189156 -1.625196 -3.097093 -6.548136 -0.638409 1.926719 2.812154 -4.398960 6.068364 0.202148 -5.133215 -4.603336 -5.857977 -0.561294 -1.226825 -4.571892 2.799816 -0.014233 -14.067691 8.418783 0.264184 -3.233198 -1.063705 -4.384764 3.095553 -6.636796 -7.757955 1.969000 -3.430516 -5.790365 -1.945565 -3.093915 1.828356 2.397897 1.618215 -5.883981 -8.196176 6.850986 0.163824 5.456791 4.846428 2.861259 7.967729 3.027633 -4.191343 -3.779985 -4.196590 5.660241 -0.620636 -4.013761 -2.219256 -4.175939 3.488305 9.087994 -2.842921 -0.038624 -5.017918 4.132070 -6.873182 -2.903124 2.899166 2.665730 -3.373023 2.452515 3.863076 -2.477995 -2.013079 -6.255900 -2.626142 -2.491326 -5.545057 1.659020 -6.128236 -0.790104 6.249170 -3.452854 -3.380522 3.101811 -1.521155 -0.932269 -0.917429 5.778353 9.829202 -6.797521 3.134629 -6.866886 5.409667 -8.788563 -6.598183 1.698173 -2.079363 -1.005614 -2.740818 0.582337 1.858487 0.850003 -3.606014 -2.973384 1.043628 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -0.860726 -1.122377 0.030226 -1.232732 0.741167 -0.022274 0.436464 -0.312982 -1.983644 -1.841048 0.906241 -3.271254 -2.227380 2.146496 -0.808652 0.617140 2.652562 0.228198 -0.545715 -1.291621 1.038236 -0.586366 2.761126 3.222173 -2.293116 -0.045225 -0.323377 1.364486 1.104703 -0.171182 1.737247 -1.902998 0.486509 -0.359100 1.194762 -0.599971 -0.392483 0.885278 0.386575 -3.570985 -0.386240 2.283827 0.909314 0.390223 0.567111 2.282017 1.601441 1.666783 -0.715597 2.174788 1.810165 -0.396622 1.481485 -0.099414 -0.012604 -1.399357 0.329271 -0.577026 -0.798197 0.364279 -0.548834 -1.444095 -0.318201 2.021361 2.957245 -0.625435 -1.145323 -0.132449 0.767476 1.096350 1.029697 1.792795 0.867394 0.354966 1.916687 -0.993807 -0.264669 -4.494215 0.886000 -6.118335 -1.726834 -0.048684 3.423497 1.556852 -0.400394 -1.085700 3.319488 0.159786 -1.169965 2.328419 2.621770 -0.467706 -0.732508 -0.619394 -0.778706 0.864618 -1.281221 0.492395 1.382642 1.825172 -1.786103 -0.377250 0.110121 -0.870610 -1.254920 -0.325735 -0.623923 1.736913 -2.319297 -0.212359 -1.757300 1.522888 1.442819 -3.393912 -0.577838 -1.164360 -0.237845 0.963743 -1.562200 0.352660 0.799057 -0.841704 -0.683678 0.556860 -2.120768 2.068200 0.973448 0.640609 -0.017657 2.065334 0.836982 1.761706 0.138224 -1.314287 -0.283413 0.992500 -0.250372 1.120209 -1.354876 -0.505663 2.190437 -1.442015 0.412604 -0.581823 -1.242004 -1.538452 -0.489682 -0.564368 -0.169655 4.974601 -0.304679 2.324740 2.073803 -1.019964 1.449991 -0.245200 0.727849 1.053018 1.609114 1.011896 -0.730702 -1.571529 1.852730 3.161668 1.025077 -2.192567 -0.133000 1.417774 0.883607 -0.800634 1.496255 0.651426 0.230060 -0.732872 0.017544 1.239623 2.716168 -0.686045 -0.925835 -0.326730 2.210679 0.306320 -1.689141 0.218371 -1.252129 -0.243212 0.658846 1.039809 0.859814 2.470927 -4.537019 2.000411 1.073610 0.967220 1.607827 0.430851 -1.628770 -4.485312 -0.319954 0.588566 1.793673 0.242423 0.030879 0.523557 -2.575273 0.264559 0.602788 0.608644 -1.515260 2.103056 -0.848742 0.124031 -0.778714 -0.802383 -1.064508 -0.066203 -1.153089 1.725130 1.776449 -3.080052 1.395375 -0.373240 -1.485533 -1.017101 -0.435288 1.738796 -2.112851 -1.779439 0.500817 -1.925543 -3.313003 -1.817972 -0.767955 0.194365 -0.040237 0.048978 -1.178149 -1.615673 3.171278 -1.297139 2.386617 1.269468 -0.897905 1.956401 1.001366 -1.316114 -0.695473 -1.036139 0.865198 -0.931479 -0.884955 -0.154866 -0.235882 0.913981 2.043597 -0.101590 -1.112856 -0.253178 2.069194 -1.433242 -1.189836 0.806868 -0.280276 -0.388565 2.461918 1.117106 -2.126653 0.733776 -2.630219 -0.313382 -1.001722 -0.973491 1.731938 -1.009586 0.472333 0.161532 -0.492085 -0.499030 1.143992 0.905219 -0.847863 0.133568 3.216240 2.673230 -1.030410 0.729239 -2.996295 1.589240 -2.373007 -1.823010 -0.227452 0.357233 -1.062326 -0.462340 -0.146874 1.283856 1.644198 -1.696086 -2.329381 1.878499 +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.194832 0.270896 0.013421 -0.489100 0.602671 0.021828 0.239628 -0.095226 -0.291822 -0.697231 0.056850 -1.323407 -0.980495 0.350159 -0.252330 0.349434 1.185489 -0.170833 -0.007839 -0.505646 0.156748 0.117030 1.462368 1.306231 -1.022356 0.132046 0.219628 0.474398 0.098688 -0.291619 -0.081606 -0.766068 0.385189 -0.374706 0.263877 0.026578 -0.130884 -0.458536 0.265124 -1.313882 -0.102609 0.116073 -0.006776 0.046064 -0.054866 0.915206 1.348591 0.732515 -0.317714 0.419940 0.793570 -0.037315 0.405434 0.155396 -0.211375 -0.382840 0.172129 -0.335317 -0.387128 -0.286780 -0.078599 -0.646828 -0.167313 0.853396 0.930601 -0.099156 -0.465342 0.426841 0.316770 0.068226 0.078179 0.755793 0.515780 0.528785 0.753806 -0.724905 0.065709 -1.469262 -0.196459 -2.302494 -1.020700 -0.543238 0.714647 0.086810 0.385162 0.054749 1.369666 0.057190 0.311238 0.565817 1.063824 -0.861152 -0.361274 -0.336061 -0.064412 0.277121 -0.460657 0.311938 0.349243 0.378939 -0.850176 -0.226951 0.434844 -0.165531 -0.531598 -0.433589 0.055295 0.062604 -0.813693 -0.260652 -1.279695 0.070753 0.387447 -1.527958 0.023891 0.159992 0.771973 0.262446 -0.334308 -0.639750 0.091653 0.092393 -0.312458 -0.162621 -0.697467 0.719993 0.731894 0.183442 0.577241 0.606257 0.663225 1.378912 0.683033 -0.349607 -0.481526 0.165340 -0.486570 0.084751 -0.219724 -0.209350 0.557432 -0.853943 0.645348 0.460957 -0.552242 -0.425385 0.237478 -0.383478 0.274444 1.780957 -0.243976 0.847330 0.639755 -0.752066 0.291280 -0.898253 -0.287604 0.094023 0.527059 0.742766 -0.507897 -0.575036 0.716833 1.139462 0.453233 -0.998422 0.331769 0.513497 0.464497 -0.416415 0.237581 0.402883 0.514394 -0.525057 0.021623 0.898971 1.566187 -0.274189 -0.184644 0.231843 0.496357 0.411776 -0.704567 -0.202946 -0.433110 -0.181250 0.558020 0.501283 0.203378 1.052015 -1.508389 0.487614 0.126897 0.024016 0.688694 0.315065 -0.692686 -0.999958 0.222837 0.714769 0.585516 -0.025629 0.290834 -0.252148 -0.751767 -0.036951 0.263776 0.357515 -0.521552 0.729568 -0.008995 -0.600551 -0.409811 -0.475501 -0.083083 0.107613 -0.242388 0.569300 0.394839 -1.770344 1.021988 -0.150326 -0.777162 -0.164655 -0.721909 0.876865 -0.951908 -0.726981 0.441830 -0.840640 -0.729349 -0.302127 -0.109785 0.067228 0.080664 0.228504 -0.673715 -0.760208 1.193847 0.177086 0.847574 0.586722 0.124100 0.896173 -0.362410 -0.524243 -0.388550 -0.428404 0.084786 -0.324519 -0.694983 0.098614 -0.348656 0.534444 1.188538 -0.513076 -0.076181 0.074686 0.366824 -1.238286 -0.381485 0.446142 0.784891 -0.581539 0.755517 0.579253 -0.622199 -0.069891 -0.920804 -0.140881 -0.405092 -0.867752 0.303228 -0.771531 0.024066 0.762648 -0.423605 -0.181627 0.444824 -0.062524 -0.004394 -0.140041 0.963176 1.492915 -0.450246 0.080207 -1.158631 0.461945 -1.238721 -1.130959 0.471830 0.010660 -0.377504 -0.297967 0.150891 0.588323 0.047804 -0.691363 -0.810557 0.373810 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -0.271009 0.338160 0.253407 -0.389073 0.763753 0.403832 0.307581 -0.023430 -0.728909 -0.950057 -0.067942 -1.254208 -1.227399 1.073392 -0.130565 0.422374 1.614082 0.210177 -0.023234 -0.465372 0.622398 -0.877106 1.465971 1.669814 -1.231588 0.318268 0.446121 0.383814 -0.055484 0.728591 -0.007612 -1.360169 0.373477 -0.515748 0.712472 -0.617326 -0.441034 0.021789 0.199216 -2.255971 -0.273493 0.862745 -0.018386 0.043587 0.152165 0.663007 1.617805 0.735452 -0.376149 0.951574 0.553014 -0.110304 0.637388 0.047247 0.352724 0.183884 0.259776 -0.067711 -0.517042 0.298697 -0.400532 -1.007828 -0.063770 1.021763 1.308840 -0.311418 -0.561306 0.187252 -0.137291 0.215963 -0.024404 0.987039 0.538538 0.336371 0.960237 -1.157072 -0.155500 -2.305178 0.154873 -3.133756 -1.223389 -0.626340 0.981723 0.582671 0.471717 -0.381912 1.930444 -0.300037 0.027115 0.828265 1.731706 -0.965163 -0.269693 -0.550956 -0.334037 0.161298 -0.478254 -0.060334 0.491964 -0.079461 -1.055354 -0.944581 0.791843 -0.106951 -0.724441 -0.532828 -0.355061 1.041526 -1.359548 -0.672849 -1.534970 0.102700 0.066866 -1.737883 0.067335 -0.130011 0.136404 0.734663 -0.741446 -0.925566 0.581130 0.411107 -0.350271 -0.526484 -0.436324 1.333956 0.569169 0.002239 0.352880 0.672268 0.516079 1.335087 1.092963 -0.389766 -0.202451 0.499145 -0.358430 0.169446 -0.472240 -0.287629 0.485200 -0.913452 -0.146987 0.276107 -0.741438 -0.222683 0.257299 -0.652287 0.175299 3.029585 -0.451435 0.961563 0.514697 -1.155849 1.111904 -0.297527 -0.320647 0.300687 1.120684 1.027741 -1.354984 -0.780136 0.880752 1.705014 0.552434 -1.182717 -0.532867 0.137336 0.317203 -0.185518 0.768305 0.194062 0.412876 -0.633124 -0.099229 0.448092 2.285435 -0.826158 -0.774409 0.134317 0.559143 0.044343 -1.541778 -0.047239 -1.147700 -0.281985 0.155667 0.058677 0.394745 1.358545 -2.418055 1.144457 -0.461925 -0.451892 0.969762 0.216860 -0.433512 -2.085733 0.039661 0.875267 1.192575 0.189997 0.251657 -0.291987 -1.330689 -0.001326 0.150823 0.605800 -0.961266 1.311353 -0.390638 -0.856457 -0.556663 -0.395571 -0.377341 -0.659602 -0.451528 0.630922 0.944313 -1.988527 1.215991 0.083289 -0.522889 0.111380 0.054752 0.916745 -0.999152 -1.460997 0.594663 -0.662253 -1.048713 -0.340935 -0.596413 0.397274 0.158254 -0.503170 -0.618646 -1.355948 1.349162 -0.110907 1.242553 0.803098 0.083379 1.468994 0.542993 -1.013121 -0.502457 -0.659475 0.323618 -0.582621 -0.315979 -0.895038 -0.532277 0.763678 1.548343 0.162673 -0.238100 -0.511608 1.202231 -1.215605 -0.210564 0.746905 0.249890 -0.383984 0.617308 0.877090 -0.763365 -0.243730 -1.220351 0.082283 -0.523112 -0.600710 0.524383 -1.112722 -0.156770 0.643046 -0.550068 -0.396307 0.570319 0.314947 -0.143143 -0.265019 1.421788 1.381894 -0.978212 0.308501 -1.142470 0.706102 -1.385112 -0.894001 -0.204412 0.634048 -0.495323 -0.453640 0.209156 0.519355 0.436931 -0.639694 -0.639749 0.065335 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = 0.017678 0.778070 0.405668 -0.010732 0.591155 0.274756 0.246946 0.207021 -0.164703 -0.737268 -0.252233 -0.686437 -1.184124 0.687495 0.022798 0.085857 1.203977 0.134603 0.164059 -0.425306 0.337795 -0.710168 1.230472 1.179149 -1.159967 0.372207 0.715197 0.341098 0.197288 0.578234 -0.246438 -0.776992 0.494173 -0.368309 0.560511 -0.492424 -0.174385 -0.526970 -0.252391 -1.755809 -0.269115 0.225524 -0.251575 0.042462 0.021279 0.925303 1.584905 0.630637 -0.459062 0.556158 0.417911 -0.194517 0.383436 0.150687 0.073503 -0.013767 0.277702 0.066160 -0.532208 0.247195 -0.026369 -1.436778 -0.225400 0.778311 1.062429 -0.240467 -0.231832 0.355378 -0.269351 0.055276 -0.229094 0.646668 0.732278 0.466619 0.887426 -0.871744 -0.158936 -1.605592 -0.290502 -2.831860 -1.041127 -1.021678 0.696153 -0.106197 0.430493 -0.063404 1.310590 0.113459 0.509119 0.487634 1.444928 -0.977663 -0.287051 -0.557899 0.014077 0.444687 -0.572779 0.132535 0.517694 -0.447405 -0.766356 -0.858007 0.868206 -0.053836 -0.631693 -0.384403 -0.358526 0.712975 -1.159713 -0.470640 -1.566172 -0.638691 -0.075392 -1.400378 0.276770 0.303225 0.850748 0.651536 -0.053875 -0.768467 0.194509 0.588331 -0.083422 -0.652254 -0.254921 1.036062 0.468945 -0.069222 0.586782 0.471336 0.602807 1.027211 1.373624 -0.031767 -0.412852 0.298420 -0.530602 -0.060745 -0.346793 -0.195479 0.541761 -0.771560 0.044912 0.415064 -0.551450 -0.227114 0.480720 -0.602203 0.493741 1.876677 -0.102750 0.452383 0.172785 -1.023740 0.597195 -0.489181 -0.637218 0.325455 0.858068 0.882788 -0.967275 -0.458037 0.313361 1.181282 0.394305 -1.085891 -0.333021 -0.177170 0.174347 -0.327420 0.446557 0.277606 0.394119 -0.464172 -0.040379 0.579399 1.544960 -0.802768 -0.835153 0.154650 0.045190 0.026815 -1.315878 -0.030764 -0.338174 -0.231820 0.022274 -0.033582 0.184389 0.946642 -1.779684 0.789213 -0.388311 -0.538631 0.627626 0.098873 -0.259623 -1.163696 0.551314 0.924199 0.774693 0.312496 0.070630 -0.379656 -0.983190 -0.109029 0.158305 0.480870 -0.502434 0.873280 -0.165390 -0.704764 -0.748351 -0.448716 0.089509 -0.361362 -0.189973 0.374668 0.489260 -2.005665 1.086744 -0.310917 -0.635741 0.127057 -0.198811 0.592301 -1.003663 -1.223323 0.385029 -0.478556 -0.892619 -0.403829 -0.396325 0.365876 0.143141 -0.453095 -0.360858 -1.088855 0.921944 0.018100 0.509964 0.693270 0.456502 1.521743 0.235073 -0.910578 -0.581624 -0.276474 0.264902 -0.655867 -0.317076 -0.525813 -0.500772 0.601008 1.588076 -0.060105 0.108484 -0.330073 0.766499 -1.320651 -0.602111 0.678448 0.867331 -0.195834 0.614675 0.698316 -0.595497 -0.477680 -0.786955 -0.181645 0.015434 -0.774449 0.206484 -1.197306 -0.182704 0.938307 -0.407924 -0.391375 0.604065 -0.196015 0.028917 -0.505869 0.880545 1.661645 -1.306921 0.248874 -0.786153 0.542211 -1.285949 -0.802774 0.060110 0.452347 -0.019451 -0.207738 0.301560 0.141984 0.132344 -0.724099 -0.465497 -0.245922 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::max_size() const = -0.037791 0.143272 0.247771 -0.138360 0.166366 -0.095238 0.077945 0.068389 -0.175916 -0.424638 0.027340 -0.453537 -0.506795 0.309740 -0.149254 -0.102783 0.445910 0.052522 0.026851 -0.256637 0.048388 -0.196113 0.501424 0.514530 -0.503657 0.060539 0.110555 0.287230 0.199689 0.170949 0.158307 -0.357200 0.110765 0.132274 0.278129 -0.129733 0.006038 -0.098564 -0.257582 -0.654539 -0.082488 0.257662 0.079820 0.046627 0.084019 0.499114 0.500371 0.290083 -0.174063 0.254193 0.310569 0.035546 0.167989 0.037419 -0.031357 -0.316984 0.192497 -0.236463 -0.232486 0.113854 0.003930 -0.559552 -0.136310 0.387357 0.511416 -0.072158 -0.045784 -0.055714 -0.050218 0.150071 0.054853 0.223172 0.243541 0.219726 0.311565 -0.087758 0.025922 -0.681549 -0.002638 -1.255300 -0.365998 -0.301821 0.559310 0.267835 -0.095040 -0.060288 0.503624 0.186113 0.094363 0.316429 0.542030 -0.133101 -0.155541 -0.149114 -0.110241 0.278852 -0.278697 0.114145 0.074894 0.213928 -0.289627 -0.101101 0.166581 -0.142270 -0.216811 0.073032 -0.148208 0.244394 -0.581884 0.049126 -0.485732 -0.058863 0.252169 -0.596425 0.060230 -0.045368 0.301881 0.183743 -0.054709 0.063016 0.056843 0.017605 -0.064437 0.096957 -0.617696 0.378464 0.095838 0.037636 0.126486 0.245765 0.216235 0.193011 0.213821 -0.122938 -0.162717 0.115349 -0.157339 0.024203 -0.192304 -0.044480 0.341266 -0.250868 0.141744 -0.047028 -0.214376 -0.349096 -0.211852 -0.228638 0.194554 0.577582 -0.015532 0.267000 0.171580 -0.286676 0.129187 -0.122527 -0.104295 0.145912 0.289223 0.233429 0.066247 -0.221339 0.168930 0.470914 0.168242 -0.278465 0.037155 0.101422 0.062123 -0.135216 0.221669 0.129056 -0.015673 -0.160230 -0.039658 0.243649 0.386178 -0.021863 -0.231185 -0.028496 0.178393 0.061380 -0.208022 0.078980 0.101841 0.004931 0.042937 0.062999 0.116355 0.402448 -0.912426 0.343410 0.148151 0.059071 0.174035 -0.066638 -0.187021 -0.623839 0.186953 0.290340 0.289825 0.088042 0.022239 -0.007028 -0.395700 -0.021910 0.062215 0.191026 -0.216946 0.287320 -0.025898 -0.168341 -0.327171 -0.308048 -0.021164 0.079412 -0.204784 0.182334 0.262527 -0.821011 0.396451 -0.207989 -0.276051 -0.195046 -0.126717 0.182734 -0.466064 -0.377458 -0.001189 -0.338366 -0.620507 -0.324516 -0.139616 0.065305 -0.111544 -0.069719 -0.110931 -0.211292 0.450603 -0.127040 0.193838 0.229535 0.085553 0.510700 0.239382 -0.217858 -0.121594 -0.036910 0.225434 -0.367888 -0.125602 0.259710 -0.120002 0.129102 0.547338 -0.092955 -0.066540 0.064660 0.326754 -0.217766 -0.392382 0.196746 0.029857 -0.005109 0.463114 0.222983 -0.340534 -0.095359 -0.459525 -0.091113 0.011135 -0.291769 0.171139 -0.333875 0.017699 0.276873 -0.069333 -0.267205 0.250609 -0.042122 -0.111679 -0.084730 0.475942 0.616411 -0.349723 0.283896 -0.423464 0.190484 -0.511846 -0.338773 -0.022456 0.056269 0.014241 -0.012822 -0.097372 0.109855 0.147557 -0.224566 -0.290645 0.199117 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_max_size(std::allocator const&) = -0.077233 0.736189 0.602211 -0.196757 1.241842 0.432768 0.319537 0.279150 -0.430424 -0.966837 -0.422858 -0.922595 -1.692463 1.083814 -0.028369 0.493887 1.541006 0.060205 0.127880 -0.589913 0.805384 -1.095128 1.654920 1.084116 -1.567754 0.406923 0.750026 0.756629 0.232641 1.127185 -0.485836 -0.953118 0.549612 -0.604989 0.829733 -0.698517 -0.041194 -0.367156 -0.344136 -2.154501 -0.390006 0.513841 -0.497445 0.256024 -0.027294 1.493806 1.841977 0.941236 -0.703927 0.876491 0.702556 -0.491332 0.590183 0.336352 -0.082032 0.151914 0.495184 0.095175 -0.930359 0.283803 -0.190888 -2.070804 -0.139162 0.862485 1.506854 -0.613660 -0.376494 0.862640 -0.400886 0.149267 -0.081028 0.890982 0.900731 0.248315 1.397068 -1.090988 -0.366470 -1.995155 -0.351022 -3.764068 -1.267105 -1.466999 0.768440 -0.068748 0.563368 -0.250593 2.018920 0.046665 0.341524 0.696069 1.862853 -1.397470 -0.375315 -1.209002 0.098209 0.317027 -0.892573 -0.369837 0.956935 -0.291188 -0.884443 -1.052795 0.977195 -0.254905 -0.745520 -0.678065 -0.874393 1.295836 -1.752797 -0.834389 -2.271751 -0.457260 -0.188673 -1.859952 0.338835 0.530222 0.964820 0.703267 0.249685 -0.892342 0.447817 0.966540 -0.268610 -0.781100 -0.119800 1.618494 0.706479 -0.225076 0.768237 0.836364 0.613156 1.306281 2.054548 -0.080487 -0.958527 0.625301 -0.609628 0.024020 -0.544571 -0.159637 0.741899 -1.256937 -0.062023 0.579620 -0.596251 -0.068732 0.495213 -0.831187 0.721187 2.356063 -0.216530 0.429735 0.013788 -1.308042 1.102158 -0.385928 -0.648954 0.518194 0.938461 1.011531 -1.358845 -0.780621 0.723025 1.419254 0.540254 -1.772931 -0.469942 -0.383964 0.515264 -0.319294 0.321318 0.884879 0.364016 -0.430570 -0.038415 0.224356 2.397833 -1.259239 -1.374529 0.655863 0.015431 -0.326845 -2.061823 -0.297613 -0.523732 -0.686750 0.062241 -0.009953 0.163949 1.413159 -2.311990 1.132991 -0.400384 -0.832761 1.019017 -0.186164 0.050569 -1.789996 0.172993 1.173468 1.133031 0.423363 0.005539 -0.570876 -1.329637 0.240101 0.233788 0.729764 -0.394324 1.030077 -0.399748 -0.811187 -0.920921 -0.630122 -0.125299 -0.242742 -0.171016 0.467564 0.599037 -2.858708 1.365670 -0.639287 -0.692572 0.452453 0.231632 1.063863 -1.099398 -1.637873 0.766100 -0.571791 -1.359819 -0.823618 -0.263345 0.534991 0.207569 -0.776336 -0.456313 -1.880587 1.172550 -0.151535 0.596575 0.801547 0.595442 2.049655 0.566453 -1.422071 -0.868414 -0.470120 0.210743 -0.882352 -0.061639 -0.761823 -0.331427 0.962281 1.850995 0.201964 0.384445 -0.689226 1.204485 -1.836765 -0.811935 1.144385 1.018636 -0.369786 0.990057 1.159775 -0.766995 -0.832696 -1.082917 -0.070047 -0.217769 -0.870149 0.183307 -1.647715 -0.383919 1.246999 -0.388337 -0.646992 0.767968 -0.100749 -0.189121 -1.147364 1.766839 2.488604 -1.786799 0.374922 -0.995135 0.912451 -1.679469 -0.954453 -0.022986 0.679718 0.000100 -0.021295 0.783466 0.272155 0.158723 -1.077494 -0.633348 -0.754962 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.029926 0.494486 0.378886 -0.197174 0.498471 0.347330 0.162012 -0.026577 -0.232956 -0.344459 -0.184549 -0.450631 -0.616825 0.543822 -0.063733 0.175188 0.896555 0.146310 0.023243 -0.264181 0.313904 -0.429651 0.874091 0.845503 -0.782658 0.243146 0.502972 0.268329 0.098859 0.605090 -0.401182 -0.545146 0.276310 -0.304778 0.310829 -0.450974 -0.127563 -0.272244 0.004923 -1.230069 -0.097031 0.048060 -0.154749 -0.015260 0.005235 0.427923 1.073529 0.447932 -0.241203 0.318597 0.324804 0.023992 0.195998 0.116499 0.189771 0.225163 0.456189 0.081158 -0.294778 0.099127 -0.059927 -0.747482 -0.062394 0.589850 0.737681 -0.084451 -0.147072 0.196772 -0.136551 -0.002770 -0.103851 0.398042 0.296532 0.360663 0.461222 -0.728332 0.071524 -1.111227 -0.159400 -1.622031 -0.654399 -0.615548 0.283222 -0.081048 0.404778 0.030175 0.905907 -0.024965 0.318093 0.197288 0.972058 -0.758831 -0.177006 -0.350814 -0.143048 0.213087 -0.323600 0.030489 0.211531 -0.295820 -0.518927 -0.671961 0.637274 0.081388 -0.422649 -0.193324 -0.167307 0.517517 -0.763615 -0.428039 -0.898783 -0.302699 -0.196847 -0.957079 0.108964 0.003552 0.572943 0.310800 -0.109528 -0.750071 0.170331 0.549908 -0.142864 -0.482214 -0.164362 0.689820 0.375485 -0.073745 0.285914 0.106268 0.347247 0.790278 0.845734 -0.146380 -0.205199 0.187392 -0.386858 -0.094896 -0.317864 -0.129104 0.193098 -0.556245 0.002146 0.421226 -0.398009 0.006814 0.426796 -0.338103 0.338597 1.627483 -0.158777 0.359897 0.112454 -0.795679 0.404682 -0.243356 -0.400695 0.192696 0.542967 0.570625 -0.906937 -0.391698 0.244576 0.802519 0.328272 -0.727983 -0.283090 -0.214168 0.011734 -0.089885 0.258522 0.119260 0.120955 -0.374961 -0.102406 0.299969 1.256486 -0.499178 -0.652313 0.160476 -0.030080 -0.122139 -0.867045 -0.086542 -0.355052 -0.081540 -0.004445 -0.086428 0.238673 0.709896 -1.399585 0.600081 -0.354138 -0.500592 0.574014 0.035798 -0.169826 -0.633590 0.283715 0.646044 0.633686 0.139922 0.068569 -0.186195 -0.679419 -0.091733 0.058077 0.344692 -0.408917 0.557355 0.082502 -0.677377 -0.469204 -0.258571 0.072659 -0.348596 -0.184031 0.268469 0.171193 -1.458194 0.787671 -0.072805 -0.308781 0.246962 -0.137932 0.383239 -0.665694 -0.826749 0.316644 -0.158645 -0.300977 -0.177522 -0.228120 0.361729 0.079990 -0.120810 -0.397324 -0.809625 0.456435 -0.017853 0.389814 0.457002 0.297772 0.854801 0.097133 -0.482783 -0.469219 -0.156375 0.151766 -0.302336 -0.243288 -0.362138 -0.378016 0.505099 1.047417 -0.005634 0.059975 -0.257612 0.599250 -0.829577 -0.242337 0.449983 0.522470 -0.288653 0.215721 0.491270 -0.410075 -0.367433 -0.441141 -0.165784 -0.052738 -0.509557 0.218817 -0.694396 -0.047452 0.569521 -0.232229 -0.291005 0.404012 -0.092682 0.035049 -0.215304 0.634493 1.007762 -0.708432 0.168686 -0.513535 0.357981 -0.890795 -0.545320 0.047705 0.195250 -0.180496 -0.116472 0.148850 0.259725 0.033807 -0.236628 -0.147450 -0.235251 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = 0.048181 0.985325 0.696425 -0.134527 0.583046 0.111325 0.225462 0.404426 -0.131287 -1.145571 -0.232174 -1.070601 -1.691478 0.780850 -0.131485 -0.393948 1.350728 0.026318 0.180050 -0.579175 0.231798 -0.611649 1.402003 1.373376 -1.528625 0.337320 0.755616 0.591073 0.444948 0.536955 0.110501 -1.029451 0.390960 0.164925 0.916512 -0.331960 -0.105122 -0.808141 -0.811695 -2.007364 -0.366749 0.589716 -0.243305 0.081226 0.160251 1.383160 1.945757 0.763240 -0.674324 0.419386 0.667335 -0.067600 0.433241 0.088423 -0.102929 -0.652275 0.379770 -0.102111 -0.663755 0.327405 0.044962 -1.741956 -0.421150 1.068477 1.340238 -0.221313 -0.200043 0.143417 -0.208439 0.213795 -0.298013 0.753320 1.087042 0.788151 1.105982 -0.472869 -0.157119 -1.899635 -0.143535 -3.604643 -1.213118 -1.287508 1.191559 0.225127 0.007129 -0.350980 1.529152 0.384407 0.654666 0.858032 1.797642 -0.694027 -0.362452 -0.783805 -0.148682 0.755718 -0.755645 0.312462 0.483180 -0.162337 -0.897470 -0.669876 0.636739 -0.310884 -0.730628 -0.057960 -0.486884 0.769276 -1.395032 -0.006785 -1.835965 -0.651917 0.430536 -1.799340 0.109694 0.281919 0.920536 0.700265 0.008290 -0.328076 0.124188 0.429780 -0.139889 -0.250712 -1.019583 1.326417 0.495290 -0.044210 0.630481 0.724693 0.859687 0.707335 1.323070 -0.045340 -0.565584 0.285392 -0.603777 -0.162510 -0.439270 -0.060893 0.978681 -0.704717 0.147239 0.248297 -0.613016 -0.669930 -0.121086 -0.923243 0.699472 2.137077 -0.116942 0.552160 0.162917 -1.067248 0.662343 -0.416682 -0.803245 0.324723 0.933223 1.101022 -0.580273 -0.507948 0.440079 1.415233 0.416685 -1.090011 0.068233 0.050826 0.087705 -0.618027 0.634851 0.362922 0.286550 -0.450012 -0.099541 0.911637 1.387721 -0.590803 -1.196562 0.024012 0.356929 0.301712 -0.999786 0.180254 0.115700 -0.184010 0.163205 0.021769 0.362446 1.131792 -2.351728 0.929067 0.133978 -0.353562 0.633546 -0.112629 -0.345529 -1.490629 0.843675 1.178495 0.780693 0.414072 -0.133508 -0.496411 -1.145324 -0.105221 0.281540 0.640804 -0.586400 0.958871 -0.259293 -0.596695 -1.062941 -0.935895 -0.031779 -0.024479 -0.507627 0.397087 0.533299 -2.415345 1.427318 -0.524325 -0.754730 -0.395280 -0.501419 0.497281 -1.347408 -1.399663 0.159054 -0.810021 -1.608518 -0.710614 -0.526007 0.307316 0.061911 -0.356055 -0.453082 -1.152468 1.319121 -0.086558 0.598154 0.786961 0.619045 1.863291 0.679195 -0.898204 -0.584354 -0.398963 0.712348 -0.785914 -0.482514 -0.076673 -0.523917 0.471386 1.832656 -0.411967 0.050578 -0.325138 0.789365 -1.188757 -1.064094 0.641776 0.534605 -0.128636 0.994047 0.705802 -0.710300 -0.539563 -1.270432 -0.286123 0.010810 -1.032305 0.159708 -1.393917 -0.223771 1.222168 -0.492855 -0.672858 0.696139 -0.280044 -0.157947 -0.480582 1.066984 2.021306 -1.553533 0.612324 -1.136141 0.746230 -1.606579 -1.069255 0.084600 0.161916 0.266178 -0.244274 0.107743 0.052826 0.215853 -0.868777 -0.730314 0.141629 +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.453874 0.089561 -0.096161 -0.827589 1.201511 0.544463 0.554650 -0.365824 -0.989363 -0.792148 0.165172 -2.109222 -1.501134 1.196866 -0.243963 1.134231 2.371115 0.056360 -0.170199 -0.778865 0.745699 -0.382552 2.609914 2.582197 -1.707712 0.335656 0.353184 0.756506 -0.059275 -0.032451 -0.229863 -1.357306 0.695498 -1.324007 0.369625 -0.468802 -0.463168 -0.199898 1.039553 -2.891094 -0.235488 0.413155 0.002480 0.064480 -0.053880 1.148489 2.154348 1.353928 -0.408232 1.313450 1.111130 -0.451632 0.924743 0.253824 0.163013 0.092433 0.239059 -0.020729 -0.683951 -0.176582 -0.348308 -1.018106 -0.040621 1.489901 1.896613 -0.247775 -1.006351 0.754089 0.400790 0.171896 0.225192 1.470158 0.501422 0.569864 1.384395 -1.909182 -0.055206 -3.144935 -0.122470 -3.878802 -1.885385 -0.652450 1.315968 0.044282 1.086162 0.015252 2.687170 -0.192333 0.038884 1.091767 2.069991 -1.784734 -0.601554 -0.570574 -0.270516 0.282810 -0.714015 0.346157 1.041842 0.324670 -1.645212 -0.956013 1.078849 -0.048960 -1.041634 -1.102721 -0.018543 0.875490 -1.343107 -1.158678 -2.024635 0.434384 0.064260 -2.706579 -0.037980 -0.049813 0.874533 0.719245 -0.971964 -1.557573 0.519292 0.340790 -0.596784 -0.777266 -0.386669 1.420262 1.281894 0.227109 0.772992 1.104580 0.855706 2.743511 1.283812 -0.739058 -0.459017 0.570665 -0.681432 0.481895 -0.616864 -0.537723 0.682823 -1.683942 0.667974 0.740730 -1.083495 -0.359419 0.950398 -0.352544 0.183503 4.216707 -0.443568 1.695112 1.266047 -1.520524 1.108826 -1.227177 -0.210111 0.467530 1.313111 1.114460 -1.952746 -1.189830 1.282197 2.380470 0.913108 -2.123046 -0.352024 0.556914 0.700997 -0.501388 0.717604 0.550689 0.833501 -0.849690 0.042705 1.215286 3.360524 -1.078779 -0.736032 0.411634 0.891554 0.275582 -2.100092 -0.429904 -1.589705 -0.427266 0.619796 0.684286 0.483534 1.962913 -2.999841 1.251645 -0.358302 -0.229833 1.605343 0.754629 -1.225774 -2.287580 -0.016808 1.063970 1.490261 0.033863 0.297290 -0.219358 -1.723452 -0.009755 0.423060 0.546957 -1.105365 1.724324 -0.363740 -1.124121 -0.563602 -0.385509 -0.369664 -0.523923 -0.368888 1.185980 0.843381 -2.991120 1.576936 0.058399 -1.260317 0.300849 -0.717457 1.709470 -1.512592 -1.670245 1.065964 -1.063549 -1.000859 -0.486302 -0.425356 0.390041 0.390918 0.111539 -1.204692 -1.651540 2.040284 0.017040 1.851008 1.161463 -0.109658 1.670744 -0.494744 -1.460261 -0.810297 -1.015281 0.114391 -0.402006 -1.019087 -0.844836 -0.740599 1.256864 2.070077 -0.133814 -0.370230 -0.377544 1.356006 -2.290912 -0.332052 0.996145 1.140300 -0.959219 1.005536 1.229889 -1.291693 0.013640 -1.430909 -0.154985 -0.815223 -1.185027 0.885946 -1.284598 0.108789 0.795022 -0.723445 -0.032727 0.859800 0.250249 0.157084 -0.197346 2.032027 2.288064 -0.960307 -0.085437 -1.971251 0.977262 -2.080950 -1.698399 0.413838 0.520213 -1.034117 -0.522449 0.474700 1.095370 0.387428 -1.355448 -1.307812 0.308339 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_base(int*) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = -0.327376 0.412471 0.448342 -0.273888 1.136744 0.470709 0.469766 0.301963 -0.879847 -1.343054 -0.204936 -1.603865 -2.059185 1.664569 -0.155291 0.599532 2.525449 0.569673 0.103382 -0.728786 0.823572 -1.251351 2.389266 2.273158 -1.899988 0.338264 0.723444 0.905584 0.272721 0.953207 -0.148862 -1.544030 0.997179 -0.958413 0.832814 -1.086766 -0.190968 -0.153504 -0.154241 -3.190521 -0.304932 0.766450 -0.227578 0.166897 0.012975 1.596438 2.297517 1.324243 -0.676899 1.381783 0.847791 -0.557555 0.849911 0.350431 0.166933 0.066169 0.189082 0.033364 -1.151168 0.405553 -0.351897 -2.505809 -0.408577 1.299833 2.180247 -0.502358 -0.565595 0.551188 -0.357264 0.370864 0.221191 1.059353 1.212172 0.317465 1.679262 -1.431326 -0.568356 -3.128447 -0.428625 -5.154065 -1.656760 -1.391964 1.752114 0.123741 0.568054 -0.414403 2.435422 -0.017005 0.340414 1.073578 2.617384 -1.697646 -0.784663 -1.139875 0.105931 0.763083 -1.202347 -0.023651 1.379721 -0.299319 -1.424097 -1.400235 1.268190 -0.205723 -1.029479 -0.863608 -0.663169 1.760784 -2.177718 -1.045799 -2.807011 -0.425109 0.072584 -2.633342 0.230681 0.291364 0.958865 1.300459 -0.549374 -1.141625 0.663561 0.778585 -0.278788 -0.968433 -0.193586 2.010274 0.675677 0.001979 0.794362 1.168399 0.820529 2.089101 2.145261 -0.384598 -0.607931 0.788425 -0.900267 0.205743 -1.011921 -0.613998 1.068189 -1.683661 0.101740 0.559586 -1.189213 -0.429475 0.688645 -0.626203 0.743924 3.681035 -0.217309 1.042519 0.729261 -1.671037 1.432977 -0.621411 -0.419478 0.640663 1.540776 1.282991 -1.698630 -1.069242 0.831008 2.237429 0.967644 -2.266836 -0.688345 -0.341083 0.811485 -0.485547 0.709513 0.851218 0.588743 -0.801094 0.045928 0.918092 2.955356 -1.638600 -1.700609 0.333597 0.392386 -0.043621 -2.645476 -0.197692 -0.977791 -0.497000 0.165543 0.190455 0.263273 2.033655 -3.222594 1.640610 -0.397465 -0.572946 1.454821 0.300616 -0.625222 -2.614760 0.369657 1.347606 1.758952 0.740248 0.106460 -0.295093 -1.939802 -0.076367 0.414115 0.932209 -0.744402 1.519433 -0.523014 -0.905060 -1.141874 -0.731419 -0.166918 -0.694597 -0.402427 0.995851 1.224679 -3.523637 1.680341 -0.506837 -1.224221 0.311870 -0.062158 1.433814 -1.882101 -2.250153 0.860516 -1.036687 -1.969015 -1.016164 -0.455656 0.666756 0.305346 -0.777275 -0.546803 -2.139131 1.971013 -0.229091 1.266460 1.145864 0.288097 2.555577 0.748204 -1.728335 -0.998543 -0.654381 0.380331 -1.324770 -0.524109 -1.156317 -0.519513 1.320364 2.693726 0.237338 -0.091454 -0.766889 1.706743 -2.409930 -0.995217 1.459091 1.292759 -0.273921 1.411672 1.504235 -1.634838 -0.643164 -1.399628 -0.211032 -0.167001 -1.342393 0.573319 -2.018520 -0.025576 1.186138 -0.506771 -0.609386 1.021082 0.092167 -0.172240 -0.860438 2.181841 2.993590 -2.107063 0.476020 -1.720474 1.183079 -2.385945 -1.507467 0.044413 0.889318 -0.517755 -0.136305 0.778041 0.509711 0.389553 -1.355254 -1.262604 -0.257215 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base(unsigned long, std::allocator const&) = -0.070503 0.524421 0.697394 -0.557742 1.489800 0.597007 0.513224 0.032164 -0.465633 -0.972365 -0.226044 -0.616291 -1.639318 0.808584 -0.471952 0.230235 1.201937 -0.176704 0.405333 -0.829904 0.902153 -0.928544 1.891458 1.271506 -1.978990 0.350630 0.302103 0.904554 0.206575 1.544043 0.025551 -1.061692 0.462047 -0.221245 1.215881 -0.686105 -0.240530 -0.215907 -0.522412 -2.039191 -0.541026 0.831788 -0.477012 0.697098 0.413588 1.433949 1.729611 0.873841 -0.882475 1.294219 0.863942 -0.135996 0.965451 0.347046 -0.035826 -0.114194 0.634507 -0.157408 -0.633278 0.342153 -0.712060 -1.708743 0.259094 1.037484 1.722948 -0.609306 -0.275993 0.180345 -0.561530 0.392945 0.265309 1.352338 0.654491 0.198334 1.688501 -0.806988 -0.096954 -2.200926 -0.082634 -3.330014 -1.238251 -1.473015 0.741309 0.531288 0.763218 -0.450547 2.101729 0.338653 0.251887 0.807334 1.283035 -0.865761 0.043052 -0.817274 -0.420665 -0.119742 -0.596397 -0.171925 0.394988 0.157685 -0.883674 -0.697905 0.630184 -0.408759 -0.601024 -0.654937 -1.064498 1.154758 -1.727328 -0.558458 -1.921452 0.103432 -0.331326 -1.939921 0.118142 -0.257561 0.869181 0.370077 0.404349 -0.157882 0.512007 0.930387 -0.320472 -0.462388 -0.508707 1.702649 1.031790 -0.042550 0.411507 0.744853 -0.206230 0.959998 1.859945 0.185120 -1.008784 0.576294 -0.293455 0.224209 -0.426669 0.429247 1.018770 -0.965177 -0.242402 0.233796 -0.206400 -0.271000 0.048726 -1.039883 0.747462 2.827761 -0.520243 0.810895 0.340748 -1.155477 0.933106 0.197460 0.129662 1.028908 1.188243 0.609295 -1.354210 -0.803105 0.670080 1.147032 0.222554 -1.696275 -0.397346 0.030518 0.392823 -0.305579 0.221463 0.477706 0.106343 -0.603171 0.203988 -0.279083 2.104354 -0.823350 -1.387783 0.467726 0.456386 -0.623674 -1.252793 -0.281499 -0.584610 -0.565455 0.235590 -0.029533 0.033975 1.163479 -2.597099 0.963221 -0.317305 -0.323399 1.094970 -0.250007 0.166251 -1.854799 0.120462 0.639198 0.749511 0.325207 -0.136827 -0.244642 -1.254232 0.738659 0.022904 0.816767 -0.770296 1.209924 -0.431395 -0.950934 -0.933477 -1.122728 -0.202437 -0.008859 -0.585093 0.325195 0.528543 -2.706226 0.778370 -0.535429 -0.934884 0.517895 0.373864 1.155544 -0.651847 -1.389809 0.567961 -0.857888 -1.532392 -1.232490 -0.257739 0.264955 0.143886 -0.478609 -1.002322 -1.662513 1.242384 -0.560381 0.735223 0.934501 0.536308 2.148367 0.625507 -1.481401 -1.063263 -0.746428 0.669355 -0.557762 -0.221461 -0.517671 -0.491921 0.625881 1.818473 0.255675 0.455217 -0.549678 1.681333 -1.442389 -0.578809 1.120180 0.526862 -0.154709 1.122771 1.067070 -0.453560 -0.816659 -0.971949 0.166125 -0.057524 -0.535933 0.809554 -1.442082 -0.084269 0.560419 0.052869 -0.858777 0.558623 -0.039662 -0.018667 -1.006826 1.903075 2.239080 -1.434685 0.374332 -0.670183 0.775599 -1.435011 -0.490972 -0.528118 0.100688 0.339937 0.335584 0.225295 0.750544 0.722065 -0.909792 -0.405094 -0.438154 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_fill_initialize(unsigned long, int const&) = 0.033134 1.016278 0.937221 -0.432877 0.858500 0.810042 0.215638 0.061001 -0.352695 -0.671060 -0.269993 -1.241565 -1.417908 0.911255 -0.175528 -0.160173 1.411283 -0.031205 -0.048544 -0.339695 0.207301 -0.168088 1.424108 1.435970 -1.389391 0.446101 0.592292 0.458784 0.059156 1.083281 -0.527841 -1.287363 0.169004 0.220807 0.660180 -0.286557 -0.377340 -0.797184 -0.339051 -2.051165 -0.254394 0.765826 -0.362769 -0.033178 0.290900 0.715884 2.094958 0.704531 -0.353219 0.304351 0.497486 0.126061 0.474567 0.029014 0.371050 -0.166226 1.042977 0.008194 -0.530816 0.192386 -0.114311 -0.985332 -0.439659 1.117551 1.218361 -0.039045 -0.431282 -0.147170 -0.110108 0.049870 -0.368893 0.844515 0.799035 1.043994 0.777282 -0.250094 0.297063 -1.354733 0.105129 -2.231968 -1.203863 -0.948091 0.794034 0.546061 0.270346 -0.599363 1.641567 -0.027356 0.481917 0.413669 1.820629 -0.889363 -0.237356 -0.581346 -0.416896 0.383719 -0.456958 0.204286 0.035328 -0.351485 -0.955421 -0.804613 0.663335 -0.149014 -0.752629 0.320507 -0.297592 0.781455 -1.113608 -0.161534 -1.439176 -0.300813 0.166896 -1.766502 -0.448475 0.099226 0.386142 0.538380 -0.348904 -0.840777 0.362445 0.536276 -0.398994 -0.359243 -0.938226 1.380810 0.693400 -0.107512 0.413924 0.375759 0.884171 0.883885 0.966042 -0.219584 -0.254976 0.192372 -0.387882 -0.166437 -0.326559 0.060827 0.147618 -0.638265 0.002608 0.551319 -0.634451 -0.025648 -0.518080 -0.714077 0.451295 2.962730 -0.492307 0.735633 0.098462 -1.283491 0.855167 -0.227725 -0.857450 0.069328 0.754766 1.278977 -1.189491 -0.542593 0.727137 1.539123 0.471909 -1.061463 0.355405 0.069742 -0.131358 -0.529569 0.847224 0.149073 0.280775 -0.567508 -0.241278 0.732115 1.986196 -0.585065 -1.811477 0.150995 0.140962 0.374453 -0.639037 0.126370 -0.099095 -0.138285 0.261807 -0.115054 0.604462 1.182827 -2.473867 1.055593 0.027207 -0.915156 1.251877 -0.167176 -0.353615 -0.606824 0.507186 1.206167 0.957660 0.432146 -0.296762 -0.603937 -1.156860 -0.136746 0.246008 0.563864 -0.813820 1.059982 0.059294 -1.036566 -0.823521 -1.153409 -0.047201 -0.303526 -0.938773 0.431123 0.192467 -2.437776 1.502113 0.145646 -0.440376 -0.198130 -0.567514 0.365641 -1.106026 -1.382389 0.233295 -0.643463 -1.070833 -0.255737 -0.617848 0.294919 0.339022 0.191603 -0.940876 -1.306891 1.157661 0.052584 0.938971 0.828086 0.537567 1.296427 0.909642 -0.752109 -0.470679 -0.701355 1.024998 -0.293000 -0.529405 -0.176237 -0.771533 0.606475 1.590978 -0.361477 -0.019244 -0.955639 0.785746 -0.890615 -0.455156 0.559668 0.063891 -0.508297 0.343081 0.715397 -0.369905 -0.428049 -1.095780 -0.430959 -0.465663 -0.901501 0.226918 -1.108791 -0.211612 1.089680 -0.643144 -0.776864 0.489089 -0.270426 -0.300580 -0.145181 1.052791 1.388463 -1.144495 0.814124 -1.106126 0.901468 -1.488690 -1.002354 0.157047 -0.311563 -0.213410 -0.490008 0.027564 0.222309 0.128774 -0.484196 -0.445774 0.120066 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = -0.078452 0.779023 0.502944 -0.007797 0.818012 0.400598 0.413843 0.285968 -0.365574 -0.841405 -0.293165 -0.843946 -1.457904 1.051493 0.013330 0.331419 1.757196 0.404873 0.151014 -0.469992 0.572085 -1.069338 1.690210 1.591712 -1.422122 0.398896 0.808663 0.453690 0.126312 0.900211 -0.499087 -0.995352 0.805884 -0.730469 0.649388 -0.837063 -0.159785 -0.493139 -0.226939 -2.346238 -0.259353 0.296932 -0.261209 -0.015993 -0.046256 1.160683 1.936770 0.894269 -0.498442 0.766152 0.449714 -0.395186 0.474340 0.295707 0.222452 0.255822 0.288390 0.205651 -0.875568 0.277383 -0.156188 -1.965677 -0.233320 0.960476 1.444902 -0.286876 -0.228570 0.493791 -0.421638 0.098031 -0.134404 0.706569 0.921227 0.381419 1.159164 -1.219683 -0.283699 -2.064258 -0.533658 -3.701959 -1.325266 -1.307178 0.938588 -0.256883 0.705151 -0.156931 1.676859 0.041294 0.607460 0.547798 1.928131 -1.490674 -0.506692 -0.826459 0.097749 0.522376 -0.830974 0.023820 0.936145 -0.735021 -1.078914 -1.205113 1.226118 0.087363 -0.736600 -0.604530 -0.426207 1.133724 -1.519925 -0.871012 -2.116653 -0.815612 -0.229824 -1.841209 0.503095 0.385833 1.029977 0.949337 -0.171989 -1.145585 0.372298 0.911884 -0.126825 -1.023037 -0.092757 1.487545 0.492349 -0.092791 0.785400 0.580041 0.606105 1.480862 1.964325 -0.101437 -0.472775 0.431890 -0.857140 0.001820 -0.568632 -0.428801 0.666911 -1.171990 -0.039168 0.591341 -0.817203 -0.116459 0.798458 -0.515409 0.712996 2.496664 -0.143390 0.646648 0.243056 -1.413239 1.011624 -0.604781 -0.669874 0.397877 1.202507 0.982457 -1.512376 -0.704447 0.397844 1.534173 0.646838 -1.566325 -0.587268 -0.477290 0.372225 -0.337596 0.454914 0.491465 0.546659 -0.723308 -0.040294 0.653174 2.222622 -1.269684 -1.214534 0.312017 -0.095991 -0.070333 -2.014910 -0.184195 -0.584479 -0.298774 -0.104683 -0.078638 0.204532 1.360126 -2.220132 1.147709 -0.731004 -0.773491 1.042503 0.138452 -0.367762 -1.597614 0.549574 1.205503 1.213818 0.511498 0.018702 -0.361829 -1.313307 -0.149405 0.131595 0.695553 -0.530758 1.094779 -0.259998 -0.987507 -0.980520 -0.592628 0.137474 -0.669269 -0.135457 0.526734 0.741725 -2.619219 1.406123 -0.351843 -0.840274 0.378020 -0.024945 0.784242 -1.327279 -1.738015 0.606409 -0.526081 -1.092785 -0.617692 -0.402002 0.575132 0.210079 -0.721968 -0.389884 -1.602725 1.237831 0.017303 0.768327 0.840991 0.529362 2.047243 0.523655 -1.289990 -0.829376 -0.392488 0.157107 -0.983491 -0.423518 -0.878211 -0.602720 0.983218 2.070565 0.104418 0.164062 -0.540525 1.207283 -1.859614 -0.727525 1.120483 1.184032 -0.227053 0.735866 1.126872 -0.994918 -0.734403 -0.876496 -0.265116 0.032822 -1.011040 0.270373 -1.593555 -0.132464 1.061340 -0.409834 -0.445485 0.702776 -0.151449 0.058877 -0.704491 1.322113 2.214116 -1.749671 0.270754 -0.986875 0.723143 -1.721191 -1.038419 0.093501 0.733768 -0.214191 -0.106004 0.642366 0.273813 0.113208 -0.991851 -0.603745 -0.511942 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_create_storage(unsigned long) = 0.101259 1.569228 1.700366 -1.040990 1.468547 2.019984 0.215752 -0.275487 -0.650109 -0.310764 -0.432852 -1.922078 -1.629843 1.293384 -0.336017 -0.177764 1.888119 -0.211749 -0.382700 -0.129914 0.190305 0.552791 1.874550 1.942863 -1.828800 0.731657 0.605285 0.560643 -0.249492 2.115688 -1.423250 -2.015783 -0.192447 0.664590 0.672179 -0.212150 -0.768626 -1.251053 -0.094615 -2.782223 -0.219527 1.332718 -0.662397 -0.182398 0.616612 0.099396 3.092741 0.862297 -0.187178 0.000000 0.565090 0.570693 0.638940 -0.090263 0.945137 0.148695 2.336313 0.126194 -0.487133 0.041182 -0.220218 -0.325087 -0.650156 1.642136 1.500762 0.247025 -0.797817 -0.653681 0.099597 -0.149853 -0.652479 1.222845 0.748608 1.919040 0.617463 0.217996 1.068632 -1.019258 0.574808 -1.100182 -1.591788 -0.977953 0.607800 1.280176 0.520467 -1.263416 2.297793 -0.463644 0.568430 0.061144 2.465893 -1.251751 -0.124423 -0.669340 -1.017987 0.212272 -0.253510 0.214482 -0.669573 -0.629806 -1.302456 -1.143351 0.744238 -0.053274 -1.077652 1.132383 -0.184441 0.980081 -1.020568 -0.178096 -1.351080 0.066200 0.035672 -2.378281 -1.504890 -0.166318 -0.233953 0.403635 -0.730438 -1.601132 0.609807 0.810159 -0.863469 -0.430274 -1.498771 1.950346 1.252748 -0.274760 0.274350 0.050029 1.340418 1.160838 0.666375 -0.493759 -0.025588 0.085783 -0.224404 -0.349095 -0.351109 0.388953 -0.745209 -0.640879 -0.211633 1.134939 -0.824041 0.700698 -1.499428 -0.814791 0.394191 5.146666 -1.064401 1.161934 -0.016521 -1.947512 1.393594 0.072999 -1.355175 -0.211924 0.673219 1.986194 -2.284592 -0.740376 1.251188 2.173467 0.646960 -1.242272 1.080204 0.188098 -0.626333 -0.730504 1.413055 -0.097406 0.260346 -0.839830 -0.543690 0.933499 3.187465 -0.581866 -3.386575 0.317449 0.044828 0.615475 -0.100508 0.172080 -0.186868 -0.095855 0.550494 -0.319821 1.242362 1.629299 -3.489166 1.524780 0.224499 -1.895039 2.426478 -0.468024 -0.464236 0.483930 0.471328 1.723556 1.392863 0.534530 -0.747517 -0.996503 -1.532215 -0.236501 0.370951 0.651604 -1.368714 1.474933 0.518262 -1.827035 -0.907178 -2.008778 -0.156946 -0.585968 -1.972268 0.570209 -0.335106 -3.225902 2.199128 0.959086 -0.188370 -0.196374 -1.126021 0.167936 -1.280222 -1.781129 0.284758 -0.605887 -0.855456 0.184178 -0.946661 0.395312 0.807836 1.111434 -2.000865 -1.926711 1.322259 0.216872 1.560433 1.181704 0.730785 0.930928 1.688210 -0.674395 -0.518231 -1.375733 1.957325 0.405345 -0.871113 -0.205865 -1.378781 0.862412 1.866002 -0.638865 -0.121438 -2.113575 0.944383 -0.633691 -0.037493 0.513221 -0.768582 -1.185406 -0.391267 0.857880 0.001465 -0.470834 -1.371404 -0.793935 -1.140848 -1.136525 0.363288 -1.108580 -0.258541 1.452496 -1.096541 -1.265577 0.441396 -0.430918 -0.648577 0.284618 1.341497 0.955319 -0.985293 1.470061 -1.505817 1.453134 -1.911422 -1.291713 0.346640 -1.334849 -0.732599 -0.958343 -0.159086 0.474372 0.038485 -0.050287 -0.220525 0.240358 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n_a(int*, unsigned long, int const&, std::allocator&) = -0.069076 0.457907 0.347958 0.003530 0.494201 0.175610 0.266984 0.137215 -0.267164 -0.628652 -0.137011 -0.700683 -1.034896 0.700593 -0.008077 0.211709 1.117319 0.206779 0.099531 -0.378913 0.309499 -0.729250 1.141832 1.122600 -0.948009 0.277036 0.477593 0.333243 0.123679 0.528086 -0.228597 -0.663477 0.485761 -0.413040 0.465209 -0.476014 -0.163918 -0.284819 -0.137764 -1.570271 -0.217724 0.317307 -0.074733 0.031533 0.030333 0.883157 1.266653 0.598538 -0.299129 0.628624 0.317913 -0.341352 0.439106 0.160293 0.161267 0.019312 0.278927 0.048034 -0.566848 0.236883 -0.113336 -1.323619 -0.184335 0.664119 0.999471 -0.228240 -0.234493 0.254025 -0.250092 0.103623 -0.081226 0.574992 0.606162 0.297051 0.795028 -0.758872 -0.090568 -1.401541 -0.275035 -2.518717 -0.920325 -0.767623 0.734896 -0.028366 0.407411 -0.110444 1.189688 0.080196 0.290462 0.366696 1.283159 -0.919525 -0.313732 -0.406270 0.059288 0.331021 -0.546251 0.075471 0.591927 -0.328944 -0.728382 -0.700890 0.815219 -0.032010 -0.518107 -0.298865 -0.309691 0.707785 -1.060271 -0.513897 -1.385247 -0.526276 -0.050586 -1.250092 0.365158 0.238868 0.631709 0.648919 -0.192078 -0.635700 0.286693 0.442677 -0.079269 -0.568806 -0.282021 0.988689 0.328981 -0.027226 0.489381 0.479854 0.426438 0.939389 1.180964 -0.089226 -0.306502 0.309325 -0.528619 0.081331 -0.319983 -0.277029 0.480116 -0.751807 -0.009051 0.262128 -0.531369 -0.135344 0.391612 -0.350909 0.369515 1.574466 -0.114575 0.491352 0.245619 -0.879232 0.660125 -0.428350 -0.388485 0.284054 0.799360 0.687244 -0.870562 -0.458531 0.353606 1.098504 0.401420 -1.031371 -0.343907 -0.147878 0.292529 -0.254171 0.424274 0.310569 0.379811 -0.461248 -0.005110 0.412206 1.442132 -0.786457 -0.735563 0.147068 -0.056776 0.030562 -1.307018 -0.053492 -0.341728 -0.216037 -0.112419 0.017543 0.103516 0.880600 -1.555281 0.777611 -0.397740 -0.439387 0.741389 0.075881 -0.305050 -1.198650 0.322575 0.735391 0.760993 0.344725 0.005739 -0.234388 -0.917671 -0.071832 0.079642 0.426066 -0.432477 0.815965 -0.210225 -0.604922 -0.614524 -0.449142 0.091251 -0.390957 -0.158013 0.398375 0.569287 -1.724329 0.884331 -0.216611 -0.601278 0.140258 -0.017877 0.511593 -0.866423 -1.092836 0.337577 -0.506838 -0.864122 -0.476682 -0.329534 0.256223 0.094325 -0.510769 -0.275279 -0.942152 0.912840 -0.068382 0.566550 0.581140 0.272212 1.321777 0.442300 -0.883862 -0.450382 -0.201980 0.121383 -0.712282 -0.252429 -0.470949 -0.394356 0.590930 1.344112 0.056403 0.112652 -0.303515 0.782678 -1.144883 -0.524780 0.685504 0.673384 -0.120475 0.599177 0.693116 -0.628841 -0.356092 -0.673504 -0.233826 -0.050320 -0.627820 0.245759 -1.023908 -0.117131 0.662453 -0.320703 -0.315481 0.474083 -0.090438 -0.027157 -0.433065 0.936884 1.478450 -1.108889 0.239961 -0.731663 0.489236 -1.108404 -0.663437 0.031629 0.531989 -0.156337 -0.145724 0.378586 0.164762 0.191615 -0.775639 -0.495146 -0.184427 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_fill_n(int*, unsigned long, int const&) = -0.073220 0.446942 0.348136 -0.014005 0.513120 0.168411 0.274634 0.136139 -0.294127 -0.627694 -0.132060 -0.707952 -1.014201 0.723129 -0.008372 0.221581 1.133771 0.215778 0.090098 -0.362717 0.313358 -0.737121 1.130505 1.105042 -0.911680 0.273916 0.459020 0.300072 0.077067 0.556955 -0.256846 -0.694487 0.488360 -0.419419 0.446294 -0.473716 -0.175849 -0.276648 -0.124013 -1.545944 -0.194989 0.320058 -0.077218 0.009966 0.016424 0.865781 1.264946 0.590198 -0.276843 0.616406 0.296788 -0.338226 0.413174 0.167484 0.205887 0.053453 0.280146 0.062209 -0.584966 0.232829 -0.142823 -1.286318 -0.188295 0.651528 0.970267 -0.217465 -0.235315 0.248870 -0.267242 0.106904 -0.073289 0.548639 0.609582 0.272895 0.771911 -0.753310 -0.107758 -1.385437 -0.288190 -2.518381 -0.906633 -0.734817 0.728295 -0.042986 0.403664 -0.116066 1.168715 0.052995 0.277356 0.357586 1.292542 -0.918061 -0.326614 -0.403881 0.051016 0.298599 -0.526103 0.051005 0.606055 -0.350689 -0.737882 -0.689976 0.812967 -0.019863 -0.492589 -0.301101 -0.283627 0.719137 -1.061518 -0.509881 -1.366566 -0.503907 -0.045190 -1.234009 0.365156 0.248572 0.617780 0.649517 -0.234670 -0.652911 0.319792 0.453970 -0.108585 -0.566867 -0.247395 0.989897 0.297459 -0.002313 0.479946 0.458013 0.419979 0.937270 1.189563 -0.100770 -0.271461 0.286622 -0.517353 0.084578 -0.299038 -0.300450 0.444111 -0.750566 0.002279 0.260670 -0.539896 -0.121251 0.388312 -0.328152 0.361731 1.554763 -0.149338 0.505299 0.222839 -0.889762 0.659422 -0.424760 -0.384575 0.238446 0.801873 0.679510 -0.849759 -0.462841 0.385484 1.088933 0.416729 -1.035527 -0.338453 -0.165892 0.288921 -0.224703 0.411109 0.305957 0.386429 -0.477130 -0.020270 0.390336 1.474957 -0.788562 -0.754262 0.162365 -0.070585 0.055761 -1.291359 -0.060482 -0.344955 -0.194188 -0.111875 -0.006186 0.115714 0.889979 -1.570814 0.790017 -0.434275 -0.461430 0.748302 0.091554 -0.301062 -1.200247 0.274343 0.744660 0.788522 0.364489 0.003115 -0.238044 -0.898361 -0.077730 0.063025 0.429713 -0.420365 0.795133 -0.207238 -0.634219 -0.600742 -0.451345 0.090756 -0.389373 -0.151681 0.389697 0.570680 -1.738966 0.896234 -0.180807 -0.564023 0.133572 0.020647 0.506684 -0.837433 -1.101122 0.337026 -0.510692 -0.852269 -0.450813 -0.325425 0.255136 0.093770 -0.499950 -0.254097 -0.952793 0.917310 -0.053268 0.603033 0.564812 0.269057 1.325663 0.450748 -0.870958 -0.437805 -0.215587 0.127808 -0.727262 -0.248214 -0.452670 -0.392842 0.603813 1.299054 0.072670 0.102098 -0.321219 0.780116 -1.132382 -0.480738 0.706548 0.656965 -0.135078 0.583201 0.718606 -0.625392 -0.360500 -0.659060 -0.234771 -0.089176 -0.616299 0.215383 -0.996032 -0.119851 0.636200 -0.308659 -0.316341 0.440378 -0.086130 -0.028269 -0.421854 0.925535 1.472101 -1.107697 0.241154 -0.715918 0.490647 -1.093415 -0.677401 0.041413 0.542294 -0.184706 -0.150332 0.375210 0.165998 0.164517 -0.756097 -0.481985 -0.179057 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n::__uninit_fill_n(int*, unsigned long, int const&) = -0.068306 0.391606 0.295951 -0.054546 0.425840 0.163333 0.203442 0.065255 -0.227161 -0.555652 -0.099799 -0.591892 -0.860653 0.585435 -0.057371 0.144889 0.922271 0.132899 0.086682 -0.357253 0.267173 -0.539133 0.975867 0.955550 -0.833130 0.215713 0.447721 0.297218 0.150178 0.406197 -0.132009 -0.599206 0.385790 -0.304950 0.377213 -0.384149 -0.129594 -0.244695 -0.101129 -1.299407 -0.185232 0.204644 -0.127248 0.044837 0.032062 0.738958 1.065396 0.509349 -0.278427 0.539386 0.339277 -0.176098 0.322957 0.118402 0.099425 -0.045173 0.234757 -0.004829 -0.411279 0.185536 -0.082638 -1.035518 -0.161919 0.602660 0.853350 -0.185298 -0.193024 0.206694 -0.197966 0.100111 -0.069398 0.498580 0.492182 0.305729 0.657286 -0.659994 -0.091228 -1.273915 -0.201675 -2.128598 -0.754009 -0.626863 0.595211 -0.017381 0.306389 -0.029544 1.012209 0.108084 0.228416 0.383635 1.071694 -0.723521 -0.241634 -0.316034 -0.012240 0.284953 -0.452890 0.121073 0.386456 -0.190236 -0.599468 -0.599487 0.619192 -0.052054 -0.443329 -0.275312 -0.259275 0.564729 -0.922765 -0.370518 -1.112467 -0.377038 -0.014125 -1.074928 0.213883 0.138548 0.638549 0.487514 -0.157712 -0.509052 0.219070 0.367731 -0.075335 -0.432253 -0.235176 0.762864 0.327423 -0.002359 0.367333 0.378733 0.375498 0.803479 0.933890 -0.096772 -0.268145 0.241214 -0.403320 0.051576 -0.282422 -0.175573 0.414189 -0.606518 0.081221 0.244432 -0.431966 -0.217389 0.340463 -0.365568 0.308083 1.403843 -0.102358 0.427238 0.234149 -0.741735 0.426015 -0.382782 -0.320075 0.257198 0.651481 0.585627 -0.668681 -0.387831 0.321378 0.926526 0.328181 -0.849073 -0.261708 -0.068954 0.206982 -0.227276 0.359936 0.236228 0.249888 -0.367674 -0.021321 0.381844 1.178813 -0.586393 -0.569834 0.102262 0.050614 0.031934 -0.982441 -0.024997 -0.253167 -0.148462 0.020665 0.025386 0.120453 0.741149 -1.416533 0.625500 -0.267502 -0.308612 0.521366 0.103099 -0.273820 -0.962207 0.299923 0.617565 0.607051 0.258930 0.075185 -0.180477 -0.774354 -0.053496 0.091486 0.357489 -0.397003 0.678685 -0.109034 -0.527044 -0.530984 -0.328533 0.062181 -0.279546 -0.155170 0.340769 0.409531 -1.538413 0.758038 -0.199465 -0.492644 0.076584 -0.080155 0.495441 -0.745289 -0.899595 0.290001 -0.438676 -0.712244 -0.371144 -0.278767 0.226458 0.072030 -0.308660 -0.267269 -0.761062 0.735937 -0.054244 0.467347 0.484724 0.237798 1.107065 0.170747 -0.680767 -0.403043 -0.175468 0.202627 -0.541101 -0.235992 -0.310143 -0.317043 0.473646 1.118770 0.000000 0.031662 -0.193197 0.640612 -0.947237 -0.415260 0.518514 0.634550 -0.135949 0.527951 0.536970 -0.517854 -0.277597 -0.585103 -0.166618 -0.061565 -0.543393 0.232261 -0.817109 -0.074911 0.559693 -0.239510 -0.284548 0.424496 -0.071036 -0.001043 -0.314562 0.753841 1.275873 -0.894142 0.196868 -0.645843 0.404520 -0.943795 -0.613027 0.034543 0.364405 -0.095323 -0.134601 0.188178 0.176612 0.175036 -0.576514 -0.401422 -0.089385 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::fill_n(int*, unsigned long, int const&) = -0.124691 0.508485 0.295379 0.164856 0.626938 0.252143 0.390812 0.229082 -0.299325 -0.860759 -0.074044 -1.066857 -1.465609 0.917325 -0.017580 0.284342 1.345304 0.210333 0.131775 -0.320763 0.280009 -0.761217 1.438554 1.311215 -1.046720 0.278362 0.368952 0.271487 -0.083989 0.584137 -0.144600 -1.054282 0.746608 -0.430290 0.470629 -0.361448 -0.187434 -0.385349 -0.224586 -1.770573 -0.284279 0.666515 -0.103530 -0.003744 0.008957 1.016431 1.545366 0.752898 -0.249506 0.776377 0.246672 -0.541991 0.562237 0.240213 0.222342 -0.179662 0.059636 -0.121045 -0.905749 0.242259 -0.229857 -1.671084 -0.461283 0.753756 1.199571 -0.263698 -0.280476 0.289362 -0.500151 0.211161 -0.097506 0.669780 0.948542 0.345778 1.010576 -0.488232 -0.313047 -1.363945 -0.453291 -3.014737 -1.136987 -0.874640 1.052026 0.238698 0.449143 -0.369588 1.414045 0.145731 0.255087 0.502663 1.714084 -1.124580 -0.492924 -0.515308 0.227814 0.372138 -0.758297 0.142063 0.795330 -0.464181 -0.988541 -0.754718 0.837238 -0.079802 -0.542844 -0.398702 -0.377677 0.887013 -1.300514 -0.550701 -1.766485 -0.684485 0.091433 -1.584522 0.344751 0.569351 0.484791 0.969390 -0.328292 -0.635555 0.467381 0.393026 -0.079970 -0.713208 -0.303361 1.243588 0.282768 0.077037 0.685761 0.779614 0.584717 1.185977 1.393708 -0.025462 -0.315427 0.247527 -0.527437 0.273467 -0.226185 -0.388782 0.447847 -0.947742 0.067040 0.283329 -0.674774 -0.217395 -0.017575 -0.352292 0.427447 1.537008 -0.178386 0.663385 0.302912 -1.096742 0.873035 -0.672928 -0.460836 0.164258 0.954895 0.843347 -0.709227 -0.544502 0.615155 1.365277 0.512273 -1.238550 -0.146948 -0.100648 0.558428 -0.498429 0.561939 0.551490 0.640698 -0.609509 0.029151 0.624559 1.710390 -1.069744 -0.954591 0.290768 -0.046391 0.367453 -1.431493 -0.078627 -0.282693 -0.293284 -0.023354 0.070521 0.015253 1.113486 -1.562105 0.961451 -0.361372 -0.476042 0.938338 0.117007 -0.478116 -1.337563 0.326556 0.961083 0.868459 0.597898 -0.030748 -0.383459 -1.098626 -0.085438 0.123164 0.511192 -0.387757 0.982461 -0.442528 -0.667292 -0.835943 -0.721772 0.078540 -0.463862 -0.255353 0.509445 0.988013 -1.995523 1.125941 -0.195385 -0.804232 -0.044018 0.054068 0.669857 -1.036356 -1.434095 0.385462 -0.946645 -1.384936 -0.549694 -0.376133 0.118008 0.249092 -0.686947 -0.173767 -1.064246 1.361671 0.092164 0.808578 0.652267 0.368227 1.660968 0.766676 -1.250260 -0.371911 -0.476113 0.321205 -1.039911 -0.358426 -0.447624 -0.426493 0.752618 1.536330 0.098835 -0.012871 -0.544267 0.873958 -1.351530 -0.643941 0.987460 0.714750 -0.109472 0.766833 0.962709 -0.734042 -0.389722 -0.853121 -0.215856 -0.246059 -0.850683 0.099131 -1.263660 -0.174149 0.783573 -0.412258 -0.413001 0.430204 -0.089658 -0.107738 -0.580777 1.158838 1.648614 -1.461478 0.386868 -0.961412 0.637191 -1.360360 -0.942320 0.188996 0.660919 -0.200213 -0.230123 0.528002 0.066229 0.206691 -1.137506 -0.791007 -0.150085 +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.368922 0.580004 0.431453 -0.606298 1.065288 1.041140 0.406663 -0.203743 -0.761147 -1.006135 -0.142998 -1.367963 -1.639459 1.479397 -0.318365 0.640948 2.223501 0.266085 -0.026308 -0.601240 1.008533 -0.724683 2.263849 2.315189 -1.931387 0.296320 0.985888 0.746675 0.243856 0.918057 -0.110913 -1.679962 0.659804 -0.885921 0.725728 -1.000889 -0.291636 -0.171961 0.366128 -3.035536 -0.357471 0.570294 -0.485772 0.062225 0.104668 0.748530 2.234532 1.259303 -0.694359 1.111266 0.990168 0.120957 0.586511 0.172257 0.184613 0.186380 0.219804 0.020774 -0.534019 0.204520 -0.282362 -1.427419 -0.105882 1.597016 2.064090 -0.303667 -0.532389 0.469226 -0.196763 0.234601 -0.088273 1.255746 0.696030 0.741628 1.367068 -1.755456 -0.331925 -3.273254 -0.008018 -3.835058 -1.587172 -1.133864 0.962766 0.377525 0.914330 -0.259854 2.501725 -0.086316 0.235048 1.275629 2.355926 -1.592137 -0.407779 -0.965641 -0.490246 0.503525 -0.943974 0.235320 0.417922 -0.225822 -1.398746 -1.670138 0.906518 0.074649 -1.062885 -0.997006 -0.490646 1.416823 -1.734693 -1.079093 -2.056180 -0.014724 -0.272273 -2.636184 -0.258928 -0.325662 0.911914 0.778001 -0.579587 -1.519648 0.516445 0.933825 -0.332580 -1.102052 -0.156465 1.599176 1.113406 -0.076139 0.488320 0.666359 0.716730 2.155739 1.645642 -0.485014 -0.471316 0.587840 -0.705102 0.106386 -0.962084 -0.190340 0.749429 -1.397811 0.003867 0.935253 -0.976576 -0.430551 0.857291 -0.956698 0.585905 4.740585 -0.365672 1.182229 0.810980 -1.800834 1.135579 -0.595217 -0.534090 0.655515 1.392827 1.324375 -2.284272 -1.046701 0.929202 2.256309 0.810503 -1.777001 -0.699376 -0.022811 0.310212 -0.556108 0.825479 0.398774 0.244488 -0.857319 -0.139642 1.004060 2.933553 -1.219371 -1.223859 0.282930 0.911712 -0.191240 -1.997267 -0.183632 -1.339064 -0.322795 0.599809 0.072154 0.628790 1.846561 -3.272826 1.409410 -0.400300 -0.576056 1.139607 0.366057 -0.748152 -1.956547 0.549142 1.333983 1.446052 0.228473 0.456633 -0.283237 -1.906799 -0.033264 0.351709 0.816613 -1.115425 1.656734 -0.186403 -1.263408 -1.121531 -0.322088 -0.368121 -1.004883 -0.535620 0.914990 0.756938 -3.073316 1.776307 -0.175352 -0.903176 0.417590 -0.417038 1.519146 -1.732099 -2.102105 1.015923 -0.630995 -1.044498 -0.461081 -0.595776 0.833383 0.474340 -0.178146 -1.043257 -2.034001 1.451459 -0.032916 1.385854 1.080910 0.390341 2.049500 -0.118436 -1.294255 -1.148300 -0.973492 0.708530 -0.398726 -0.788917 -1.319483 -0.706016 1.253591 2.375645 -0.041219 -0.413665 -0.646656 1.647994 -2.035872 -0.397854 0.945720 1.173808 -0.698121 0.635713 1.105161 -1.202187 -0.510201 -1.350726 0.116627 -0.422500 -1.238127 0.765775 -1.561322 0.066220 1.038900 -0.499748 -0.489502 0.922612 0.314421 0.071968 -0.316017 1.790663 2.153066 -1.452079 0.199641 -1.677447 0.971748 -2.219435 -1.521836 0.013808 0.322385 -0.447390 -0.338014 0.198818 0.815268 0.479063 -0.651948 -0.726139 -0.201170 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__size_to_integer(unsigned long) = -0.096984 -0.041388 0.054249 -0.054792 0.156397 0.014721 0.091592 -0.099725 -0.197168 -0.151451 0.016173 -0.201920 -0.170439 0.264104 -0.075292 0.227477 0.347027 0.132649 0.013802 -0.155449 0.120208 -0.261755 0.386937 0.386018 -0.218941 0.042614 0.084257 0.120089 0.008760 0.194615 -0.078292 -0.208127 0.178583 -0.222243 0.042334 -0.234183 -0.041983 0.127649 0.128806 -0.449917 -0.018543 0.016068 0.074023 0.021879 -0.006848 0.196156 0.221793 0.201115 0.005951 0.346843 0.120795 -0.048825 0.137156 0.078465 0.112245 0.110025 0.125169 -0.124240 -0.143563 0.061789 -0.086443 -0.318765 -0.006436 0.194111 0.326181 -0.074419 -0.068485 0.059504 -0.110117 0.062692 0.099760 0.154561 0.008109 0.009412 0.153332 -0.353214 0.025939 -0.485043 -0.098457 -0.697741 -0.219229 -0.089984 0.183811 0.048071 0.185793 0.130921 0.359373 0.012753 -0.042235 0.060352 0.312814 -0.320813 -0.104267 0.025194 -0.001555 0.026157 -0.155697 0.000478 0.096973 0.047661 -0.203534 -0.229099 0.288063 0.028783 -0.122954 -0.142791 -0.063690 0.217215 -0.417811 -0.258758 -0.307081 -0.050977 -0.083980 -0.330939 0.171667 -0.049108 0.242271 0.151980 -0.146355 -0.232616 0.148922 0.127779 -0.026437 -0.169507 -0.073198 0.185099 0.065794 0.014868 0.062116 0.078492 0.005832 0.404688 0.243775 -0.119360 -0.046616 0.125653 -0.138695 0.091544 -0.130126 -0.132991 0.048904 -0.293764 0.072879 0.062423 -0.173155 -0.054363 0.191294 -0.016611 0.053077 0.403558 -0.049380 0.200115 0.178687 -0.259751 0.085500 -0.170468 0.048211 0.114799 0.239869 0.089807 -0.195543 -0.191594 0.130406 0.317794 0.157391 -0.275397 -0.224760 -0.048879 0.148996 0.050141 0.098868 0.087638 0.022749 -0.169192 0.000345 -0.009820 0.489428 -0.183185 0.009757 0.056396 -0.031836 -0.092197 -0.409812 -0.058706 -0.201572 -0.025978 -0.051230 0.029140 -0.014762 0.277886 -0.527962 0.254370 -0.199653 -0.053629 0.193784 0.074256 -0.128713 -0.406595 -0.039149 0.120222 0.277689 0.045137 0.157048 0.069377 -0.288158 -0.009015 -0.035867 0.117491 -0.162907 0.232555 0.036140 -0.259956 -0.116126 0.016425 0.062500 -0.176403 0.004709 0.167172 0.233281 -0.545469 0.170743 -0.036513 -0.168935 0.150207 0.112558 0.245462 -0.222470 -0.265896 0.148402 -0.143786 -0.129263 -0.120474 -0.049539 0.089320 -0.057197 -0.123242 -0.050598 -0.168118 0.187187 -0.058409 0.174920 0.134287 -0.027078 0.280895 -0.056230 -0.226454 -0.106619 0.044763 -0.070848 -0.278799 -0.013661 -0.039976 -0.068062 0.228094 0.350550 0.140372 -0.028560 0.061102 0.317630 -0.292882 -0.043559 0.219185 0.251203 -0.046967 0.193058 0.216346 -0.262568 -0.057328 -0.119456 -0.027926 -0.032375 -0.117111 0.184170 -0.204272 0.043422 0.046943 -0.000840 -0.079649 0.152080 0.052833 0.011751 -0.072184 0.350340 0.373984 -0.163360 0.042693 -0.196945 0.055236 -0.284734 -0.159417 -0.040495 0.249321 -0.174700 0.009800 0.030730 0.169131 0.097068 -0.130117 -0.115066 -0.057643 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__fill_a(int*, int*, int const&) = -0.010152 0.455920 0.331472 -0.060128 0.445718 0.151863 0.201741 0.198680 -0.235896 -0.544672 -0.176489 -0.469067 -0.831118 0.566354 -0.023878 0.087630 0.986170 0.233559 0.118006 -0.358576 0.266335 -0.575779 0.962052 0.950870 -0.887108 0.257974 0.463202 0.332733 0.163152 0.511933 -0.174331 -0.588572 0.391539 -0.280192 0.418855 -0.509962 -0.093630 -0.261565 -0.220142 -1.415805 -0.158704 0.179510 -0.126176 0.039974 0.042677 0.723250 1.102355 0.503454 -0.331021 0.514801 0.345534 -0.094884 0.286514 0.137192 0.056514 0.067021 0.207344 -0.026608 -0.436537 0.213792 -0.029556 -1.138031 -0.132271 0.582201 0.851735 -0.190222 -0.142313 0.195790 -0.193735 0.074479 -0.048651 0.433741 0.485222 0.250226 0.650561 -0.662371 -0.128815 -1.269710 -0.208207 -2.230406 -0.773524 -0.772810 0.655308 -0.028162 0.290084 -0.031533 0.989158 0.055477 0.377976 0.387967 1.035901 -0.730200 -0.255496 -0.424451 -0.001000 0.378490 -0.456923 0.026582 0.388412 -0.250529 -0.573682 -0.648244 0.682211 -0.036298 -0.465082 -0.272852 -0.271576 0.607675 -0.973831 -0.400550 -1.192138 -0.365898 -0.048526 -1.033047 0.242511 0.137147 0.680647 0.494232 -0.055034 -0.518060 0.158855 0.446564 -0.076355 -0.430552 -0.257451 0.791650 0.289709 -0.085438 0.416177 0.333347 0.349124 0.771803 1.007525 -0.092793 -0.311670 0.318456 -0.425935 -0.047732 -0.367535 -0.180780 0.415023 -0.635561 0.062129 0.254535 -0.455275 -0.205623 0.342135 -0.377918 0.406451 1.412859 -0.047864 0.362290 0.179979 -0.747444 0.454914 -0.312954 -0.368741 0.308053 0.688149 0.553880 -0.689574 -0.384339 0.152718 0.882114 0.346399 -0.801605 -0.315777 -0.201291 0.151671 -0.154974 0.313073 0.220533 0.237763 -0.372413 -0.026586 0.349850 1.180172 -0.541777 -0.597458 0.079813 0.055211 -0.094710 -0.998068 -0.033886 -0.261279 -0.152787 0.005047 -0.030537 0.138875 0.751518 -1.433941 0.644883 -0.323126 -0.339296 0.452465 0.066230 -0.183038 -0.947388 0.349839 0.633252 0.708621 0.221331 0.088192 -0.157865 -0.762078 -0.083958 0.100458 0.394982 -0.375818 0.637813 -0.074234 -0.542961 -0.530045 -0.328691 0.069455 -0.274107 -0.129767 0.296149 0.410663 -1.580039 0.753858 -0.281482 -0.499331 0.171808 -0.069323 0.465586 -0.789307 -0.915591 0.301208 -0.279298 -0.689838 -0.368446 -0.272253 0.352327 0.032108 -0.337307 -0.234101 -0.818734 0.694554 -0.023328 0.370548 0.516345 0.251767 1.150919 0.191572 -0.664771 -0.437974 -0.181754 0.164627 -0.582858 -0.176199 -0.305194 -0.366782 0.471691 1.233476 0.034686 0.056460 -0.190008 0.713728 -0.959510 -0.458938 0.555670 0.622399 -0.064106 0.546286 0.578857 -0.597057 -0.388800 -0.575042 -0.100894 0.111179 -0.529745 0.256570 -0.906380 -0.057226 0.632693 -0.215391 -0.326883 0.479301 -0.115839 -0.006330 -0.378471 0.778533 1.269569 -0.925060 0.251428 -0.567266 0.384057 -0.973121 -0.539403 -0.059662 0.352830 -0.075397 -0.038130 0.191803 0.180694 0.117908 -0.476297 -0.355423 -0.191564 +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.378080 0.311724 0.351326 -0.656857 0.838361 0.644557 0.368347 -0.177906 -0.838397 -0.849353 -0.172784 -1.061964 -1.159911 1.355361 -0.218962 0.790502 2.088315 0.471428 -0.076946 -0.535265 1.097493 -1.169863 1.889025 2.084788 -1.625715 0.242346 0.817705 0.770224 0.267608 0.932665 -0.199445 -1.184033 0.490813 -1.082953 0.796750 -1.240264 -0.208399 0.216879 0.436146 -2.826796 -0.222708 0.460637 0.001227 0.009372 0.015380 0.621536 1.783624 1.125857 -0.648785 0.954981 0.879071 -0.029721 0.580796 0.194231 0.235883 0.561586 0.228031 0.152304 -0.452828 0.257647 -0.275104 -1.363665 0.304099 1.372422 1.851774 -0.300557 -0.424577 0.511140 -0.046677 0.176252 0.074336 1.023842 0.310261 0.313945 1.127658 -2.115856 -0.124618 -3.196748 0.053807 -3.576872 -1.347411 -0.969493 0.773691 0.272826 0.945364 -0.146980 2.192519 -0.261086 0.207981 1.027917 1.934705 -1.484944 -0.371902 -0.976880 -0.497816 0.416846 -0.796152 -0.109765 0.617409 -0.154764 -1.182615 -1.482929 1.044472 0.237317 -0.926790 -0.959659 -0.393498 1.364747 -1.513583 -1.277988 -1.760550 0.032475 -0.440645 -2.216102 0.378384 -0.585523 0.610580 0.607987 -0.538610 -1.524234 0.454972 0.956267 -0.322339 -1.012554 -0.386686 1.537107 0.805591 -0.170241 0.365645 0.447289 0.385488 1.833374 1.512167 -0.580129 -0.396716 0.704347 -0.873775 0.020842 -1.068747 -0.418160 0.924638 -1.378021 -0.420659 0.692831 -0.903904 -0.131790 1.271167 -0.697218 0.554204 4.291427 -0.280096 1.012082 0.729241 -1.542762 1.393977 -0.258247 -0.322942 0.687687 1.345435 0.990374 -2.451355 -1.047133 0.648050 1.941263 0.786058 -1.483895 -1.170354 -0.257290 0.257786 -0.116266 0.562696 0.281619 0.068412 -0.821876 -0.135417 0.589853 2.734545 -1.061647 -0.656892 0.241906 0.681636 -0.630772 -2.369141 -0.266323 -1.664900 -0.289076 0.009787 0.000293 0.584474 1.671969 -2.901458 1.363318 -0.721706 -0.513827 1.104232 0.159532 -0.553973 -2.471047 0.324648 1.067389 1.486416 -0.027124 0.456110 -0.060573 -1.703771 -0.024116 0.137250 0.772619 -1.015064 1.428820 -0.261519 -1.117551 -0.867465 -0.023154 -0.420173 -1.087047 -0.225880 0.810931 0.832145 -2.294958 1.474210 -0.222215 -0.695860 0.720821 -0.084267 1.204979 -1.518733 -1.789557 0.953652 -0.203624 -0.585074 -0.554930 -0.460218 0.958922 0.122930 -0.651248 -0.830358 -1.934538 1.086207 -0.291493 1.191647 0.931742 0.197840 1.684255 0.299648 -1.060412 -1.115345 -0.592796 -0.088896 -0.458874 -0.565736 -1.494544 -0.588403 1.211732 2.127888 0.178426 -0.164248 -0.252123 1.684540 -1.719573 -0.392849 0.885914 0.725580 -0.584801 0.463688 1.024382 -1.295758 -0.544671 -1.171295 0.174774 -0.157079 -0.947283 0.822136 -1.360209 0.097095 0.762364 -0.385078 -0.286543 0.868260 0.468401 0.089185 -0.311259 1.820578 1.739868 -1.060424 -0.014244 -1.369709 0.713194 -1.928667 -1.078901 -0.240140 0.761166 -0.562636 -0.117096 0.471829 0.869309 0.430713 -0.430670 -0.491134 -0.418631 +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.208005 1.300228 0.937364 -0.094829 1.026713 0.742439 0.360696 0.630805 -0.398993 -0.986459 -0.427776 -1.467209 -1.939792 1.066729 0.078992 -0.275558 1.750276 0.151419 0.125992 -0.246280 -0.045393 -0.395398 1.593425 1.578387 -1.450183 0.701736 0.358756 0.269669 -0.384241 1.441947 -0.556405 -1.806029 0.407123 0.370989 0.802165 -0.302001 -0.553873 -1.012452 -0.783461 -2.553296 -0.317968 1.404639 -0.309268 -0.090354 0.381909 0.904853 2.584348 0.735193 -0.304027 0.543010 0.180320 -0.145734 0.716820 0.111584 0.507349 -0.108381 0.744172 -0.256208 -1.052438 0.429635 -0.193665 -1.652780 -0.792524 1.016847 1.248778 -0.171983 -0.572486 -0.255970 -0.438973 0.086943 -0.454763 0.908791 1.313055 0.902698 1.004497 0.274689 -0.038933 -1.004965 -0.028073 -3.054331 -1.595134 -1.298007 1.449572 0.983750 0.202841 -1.062000 1.862510 -0.225833 0.750811 0.451448 2.211387 -1.048550 -0.431510 -0.787549 -0.058531 0.521451 -0.546500 -0.048562 0.357698 -0.762406 -1.206198 -0.829947 0.952955 -0.304942 -0.830217 0.368207 -0.394861 1.036314 -1.507513 -0.193089 -2.158911 -0.512033 0.360700 -1.884440 -0.310279 0.748573 0.020387 1.089410 -0.448643 -0.768104 0.592592 0.443877 -0.457789 -0.445367 -1.090073 1.803714 0.398607 -0.166977 0.819908 0.751056 1.068529 0.949204 1.400136 -0.050956 -0.258831 0.342536 -0.280288 -0.127677 -0.140101 -0.144314 -0.076811 -0.844226 -0.016420 0.364109 -0.845654 0.042298 -1.304210 -0.723550 0.545417 2.524337 -0.578024 0.774329 -0.059820 -1.450211 1.290325 -0.351479 -1.130037 -0.105093 1.066488 1.534281 -0.833562 -0.492818 0.729765 1.792753 0.578327 -1.141460 0.558028 -0.065323 0.096307 -0.595018 1.110767 0.302515 0.836158 -0.732207 -0.179274 0.732187 2.352485 -0.825926 -2.181363 0.184782 0.011216 0.712892 -0.784329 0.200007 -0.024021 -0.322387 0.195086 -0.227067 0.452401 1.346773 -2.391469 1.334350 -0.190966 -1.172605 1.400740 -0.185502 -0.253300 -0.814648 0.436881 1.437447 1.357388 0.758695 -0.396224 -0.911918 -1.278462 -0.227882 0.272611 0.692412 -0.773380 1.275515 -0.302698 -1.122908 -0.875845 -1.622814 -0.014013 -0.335691 -1.053953 0.404258 0.877758 -2.698724 1.666895 0.145180 -0.631198 -0.309306 -0.271634 0.345024 -1.178860 -1.740841 0.202227 -0.946993 -1.813228 -0.227125 -0.842071 0.222332 0.444973 -0.276331 -0.625106 -1.482255 1.771982 0.388805 1.142724 1.033890 0.576062 1.805289 1.684258 -1.276558 -0.158094 -1.090733 1.173382 -0.943344 -0.310178 -0.104467 -1.028709 0.664160 1.950722 -0.145096 -0.012624 -1.404652 0.951217 -1.029191 -0.578440 0.993372 -0.188977 -0.193398 0.639338 1.134109 -0.480904 -0.590061 -1.346790 -0.280858 -0.428448 -0.932808 0.010107 -1.641896 -0.447082 1.390019 -0.878224 -1.018190 0.437708 -0.458436 -0.549413 -0.533286 1.303891 1.440810 -1.678220 1.261557 -1.085794 1.058410 -1.643021 -0.965412 -0.003815 -0.003195 -0.270053 -0.556948 0.270909 -0.107311 0.040903 -0.885495 -0.777274 0.018824 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() const = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() const = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +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.198948 1.344599 0.989726 -0.071823 1.132911 0.740317 0.439538 0.700613 -0.492921 -1.057543 -0.455086 -1.590539 -2.072646 1.226958 0.127696 -0.188995 1.978228 0.243296 0.119975 -0.235547 0.004651 -0.601258 1.736737 1.710321 -1.492403 0.756819 0.351481 0.239351 -0.503964 1.621573 -0.709492 -1.932321 0.512292 0.250141 0.852332 -0.389271 -0.612059 -1.036234 -0.792594 -2.775506 -0.304990 1.522805 -0.261723 -0.146793 0.352362 1.014299 2.782192 0.807702 -0.280155 0.607813 0.116706 -0.304737 0.781106 0.167856 0.658431 0.024385 0.790780 -0.174995 -1.244243 0.472874 -0.283338 -1.866278 -0.822861 1.053123 1.336492 -0.193376 -0.615600 -0.218949 -0.525398 0.097017 -0.450716 0.932498 1.433875 0.845709 1.096006 0.186935 -0.072654 -1.100384 -0.127742 -3.443777 -1.734067 -1.373153 1.576053 0.943526 0.296370 -1.154145 1.998043 -0.308123 0.786644 0.416290 2.441618 -1.241625 -0.529374 -0.873007 -0.003547 0.502676 -0.599565 -0.143096 0.591426 -0.944603 -1.354113 -0.909523 1.144478 -0.260603 -0.853958 0.340182 -0.393148 1.202075 -1.647513 -0.328436 -2.394329 -0.616533 0.335032 -2.027439 -0.159009 0.868303 -0.014311 1.252013 -0.568192 -0.929173 0.726413 0.541408 -0.520355 -0.578043 -1.067666 2.031955 0.337121 -0.142017 0.923086 0.808496 1.106551 1.080877 1.664409 -0.066499 -0.227106 0.365240 -0.383054 -0.091429 -0.135773 -0.292612 -0.082894 -0.987033 -0.084034 0.378888 -0.962111 0.152528 -1.259662 -0.663376 0.591281 2.655554 -0.659767 0.866336 -0.093910 -1.608766 1.523030 -0.389869 -1.190627 -0.169452 1.219393 1.620429 -0.993838 -0.572138 0.825748 1.945590 0.682184 -1.332070 0.486737 -0.180277 0.174638 -0.562977 1.148775 0.367633 0.979317 -0.857547 -0.193384 0.718809 2.681453 -1.030200 -2.384489 0.260182 -0.123792 0.761918 -1.077588 0.157532 -0.119036 -0.346264 0.063089 -0.282369 0.459861 1.504982 -2.561283 1.511272 -0.394275 -1.347467 1.634590 -0.181374 -0.276553 -1.054285 0.363069 1.573811 1.566386 0.884018 -0.470917 -0.973140 -1.383160 -0.258014 0.227534 0.768283 -0.784629 1.371131 -0.397914 -1.259379 -0.931822 -1.747828 0.014067 -0.443934 -1.044132 0.444510 1.040301 -2.913913 1.816993 0.199643 -0.665321 -0.259004 -0.132308 0.351358 -1.242015 -1.950654 0.248701 -1.022864 -1.941400 -0.280925 -0.884619 0.249923 0.466158 -0.456802 -0.590751 -1.684627 1.957827 0.404895 1.314894 1.097650 0.604165 2.027772 1.972706 -1.453846 -0.180278 -1.144458 1.104987 -1.144486 -0.318184 -0.228715 -1.102994 0.807211 2.085948 -0.056210 0.047257 -1.550378 1.088159 -1.201835 -0.599876 1.202450 -0.182980 -0.207130 0.678612 1.341234 -0.584994 -0.677373 -1.406302 -0.349957 -0.494915 -0.994193 -0.037146 -1.792943 -0.494743 1.440273 -0.935329 -1.050844 0.419885 -0.469222 -0.577751 -0.629367 1.464236 1.630688 -1.890583 1.307036 -1.140124 1.145949 -1.777652 -1.043749 0.012841 0.184999 -0.387804 -0.577288 0.454566 -0.116688 0.003286 -1.045535 -0.844675 -0.065478 +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.208776 1.233926 0.885358 -0.152904 0.958353 0.730162 0.297154 0.558845 -0.358990 -0.913459 -0.390564 -1.358418 -1.765549 0.951570 0.029699 -0.342379 1.555227 0.077538 0.113143 -0.224619 -0.087720 -0.205281 1.427461 1.411338 -1.335304 0.640413 0.328884 0.233644 -0.357741 1.320058 -0.459818 -1.741757 0.307151 0.479079 0.714170 -0.210135 -0.519549 -0.972328 -0.746826 -2.282432 -0.285476 1.291976 -0.361783 -0.077050 0.383638 0.760653 2.383092 0.646005 -0.283325 0.453772 0.201685 0.019520 0.600671 0.069692 0.445507 -0.172867 0.700002 -0.309070 -0.896868 0.378288 -0.162967 -1.364680 -0.770108 0.955388 1.102656 -0.129041 -0.531017 -0.303301 -0.386847 0.083430 -0.442935 0.832378 1.199075 0.911376 0.866756 0.373566 -0.039593 -0.877339 0.045287 -2.664212 -1.428818 -1.157247 1.309887 0.994734 0.101820 -0.981100 1.685031 -0.197945 0.688764 0.468387 1.999922 -0.852546 -0.359412 -0.697312 -0.130058 0.475383 -0.453139 -0.002961 0.152226 -0.623698 -1.077284 -0.728544 0.756928 -0.324986 -0.755439 0.391761 -0.344445 0.893259 -1.370007 -0.049710 -1.886131 -0.362795 0.397161 -1.709276 -0.461554 0.648253 0.027227 0.928006 -0.414276 -0.641456 0.524969 0.368932 -0.453856 -0.308814 -1.043227 1.577890 0.397049 -0.142110 0.697859 0.649934 1.017589 0.813295 1.153062 -0.058503 -0.220474 0.274425 -0.154989 -0.157432 -0.102541 -0.042858 -0.142739 -0.698937 0.073852 0.346414 -0.746251 -0.039748 -1.355360 -0.738209 0.483986 2.353714 -0.565807 0.710215 -0.071290 -1.312714 1.056216 -0.305912 -1.061627 -0.131949 0.918609 1.432664 -0.631681 -0.422118 0.697536 1.620775 0.505089 -0.959162 0.640227 0.013600 0.010760 -0.568123 1.046429 0.228174 0.706235 -0.638634 -0.195485 0.701826 2.089166 -0.625862 -2.015635 0.139977 0.118606 0.714264 -0.459753 0.228502 0.064539 -0.254812 0.328170 -0.219224 0.469337 1.207322 -2.252721 1.182240 -0.060728 -1.041830 1.180716 -0.158283 -0.222069 -0.578205 0.414229 1.319621 1.203446 0.672899 -0.326778 -0.858006 -1.135145 -0.209546 0.284456 0.623836 -0.737906 1.138236 -0.201507 -1.045030 -0.792305 -1.502204 -0.043084 -0.224280 -1.051110 0.346652 0.718002 -2.512808 1.540602 0.162327 -0.522564 -0.372980 -0.333913 0.328872 -1.057725 -1.547600 0.154651 -0.878831 -1.661350 -0.121587 -0.791304 0.192566 0.422678 -0.074222 -0.617096 -1.301166 1.595079 0.402943 1.043521 0.937474 0.541648 1.590577 1.412705 -1.073462 -0.110755 -1.064222 1.254625 -0.772163 -0.293740 0.056339 -0.951396 0.546876 1.725380 -0.201450 -0.093613 -1.294334 0.809151 -0.831545 -0.468920 0.826381 -0.227811 -0.208872 0.568111 0.977962 -0.369917 -0.511566 -1.258389 -0.213650 -0.439693 -0.848381 -0.003392 -1.435096 -0.404862 1.287259 -0.797031 -0.987256 0.388121 -0.439034 -0.523300 -0.414783 1.120848 1.238234 -1.463474 1.218464 -0.999974 0.973694 -1.478412 -0.915002 -0.000901 -0.170779 -0.209040 -0.545825 0.080501 -0.095461 0.024324 -0.686370 -0.683550 0.113866 +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.294173 2.152617 1.633680 -0.450216 1.606983 1.503227 0.426237 0.689884 -0.485712 -1.359220 -0.620912 -2.371246 -2.898531 1.553141 -0.096308 -0.671170 2.467014 -0.073658 0.039238 -0.260792 -0.078258 0.004841 2.320435 2.249170 -2.251343 0.943204 0.638830 0.448921 -0.503264 2.168976 -0.867737 -2.851531 0.335876 0.968343 1.187233 -0.140200 -0.798785 -1.791562 -1.182787 -3.550901 -0.463741 2.100691 -0.719516 -0.177548 0.628650 1.048147 4.011192 1.076235 -0.477926 0.319468 0.424801 0.199661 0.871492 0.054953 0.744317 -0.452375 1.446637 -0.328268 -1.338498 0.435788 -0.258270 -1.855938 -1.270659 1.730586 1.830307 -0.033083 -0.818324 -0.550858 -0.503149 0.105120 -0.860904 1.367877 1.937339 1.845027 1.332472 0.765014 0.165635 -1.320696 0.181102 -3.745193 -2.239530 -1.854789 1.813597 1.648647 0.155941 -1.756729 2.740469 -0.245708 1.111263 0.719757 3.382876 -1.341143 -0.524277 -1.241818 -0.457524 0.728197 -0.723281 0.163121 0.047768 -1.008196 -1.763351 -1.173646 0.968565 -0.463826 -1.223013 0.861395 -0.514354 1.384032 -1.937215 0.087025 -2.838817 -0.574290 0.667238 -2.955778 -1.103165 0.881080 -0.098408 1.303027 -0.657044 -1.155656 0.793742 0.696357 -0.802776 -0.464449 -1.824018 2.625898 0.859100 -0.223062 1.003824 0.922578 1.793806 1.218048 1.678585 -0.125975 -0.333123 0.233256 -0.306342 -0.347801 -0.187998 0.114109 -0.242889 -0.996983 0.029103 0.800336 -1.155984 0.033844 -2.346404 -1.298271 0.842398 4.401773 -1.032704 1.188706 -0.197492 -2.244592 1.768793 -0.375629 -1.858690 -0.345769 1.307476 2.471692 -1.313746 -0.727404 1.327383 2.654573 0.799870 -1.539682 1.342509 0.111382 -0.177081 -1.134173 1.697981 0.353265 0.949851 -1.022579 -0.424901 1.364676 3.381541 -0.981004 -3.672521 0.310730 0.251236 1.289766 -0.461220 0.370630 0.222195 -0.336090 0.643869 -0.361978 0.985303 2.015773 -3.750693 1.899194 0.209592 -1.821381 2.168170 -0.420554 -0.433472 -0.551314 0.826578 2.330081 1.776353 1.079914 -0.753922 -1.513280 -1.841821 -0.330792 0.517469 1.035661 -1.229907 1.795414 -0.214585 -1.758036 -1.447742 -2.640672 -0.154231 -0.356024 -1.955576 0.556365 0.800390 -4.061778 2.758761 0.428055 -0.707335 -0.767503 -0.880769 0.386114 -1.786902 -2.552572 0.195616 -1.436560 -2.545628 -0.146327 -1.252011 0.292616 0.828087 0.241856 -1.339630 -2.232882 2.492697 0.621895 1.766748 1.476951 1.084527 2.383148 2.435338 -1.546550 -0.308339 -1.844142 2.302058 -0.823101 -0.765162 0.065749 -1.539079 0.907476 2.705182 -0.627760 -0.172179 -2.304952 1.157612 -1.212178 -0.758168 1.190819 -0.586387 -0.637597 0.594677 1.470251 -0.403526 -0.857579 -2.084767 -0.521418 -0.949628 -1.574265 -0.111733 -2.190350 -0.639896 2.175550 -1.367181 -1.650627 0.560804 -0.699113 -0.857035 -0.447875 1.714679 1.872901 -2.279101 1.990358 -1.790469 1.711444 -2.512987 -1.694358 0.255316 -0.733662 -0.282229 -1.001144 0.083467 -0.105044 -0.024556 -0.953000 -0.991138 0.271281 +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.270956 1.537043 1.279364 -0.306150 0.939593 0.503911 0.261122 0.843014 -0.302300 -1.468955 -0.374618 -1.869594 -2.459159 1.056101 -0.155653 -1.007023 1.738482 -0.082114 0.146311 -0.444967 -0.249330 -0.075616 1.648559 1.678057 -1.844640 0.620178 0.391377 0.569162 -0.010227 1.254757 0.029969 -2.069473 0.151342 1.210492 1.207255 0.011762 -0.446914 -1.369015 -1.510900 -2.644356 -0.432152 1.793170 -0.354875 -0.012191 0.588881 1.395367 2.886768 0.813411 -0.586817 0.290414 0.536700 0.180111 0.691458 -0.027311 0.195737 -1.040880 0.845765 -0.534406 -1.057365 0.506426 -0.048868 -1.790455 -1.034008 1.341028 1.469948 -0.119390 -0.511218 -0.594123 -0.288726 0.285924 -0.552891 1.002595 1.683042 1.352403 1.173223 0.910073 -0.027727 -1.275380 0.266215 -3.717546 -1.681145 -1.525352 1.996096 1.446960 -0.475748 -1.369562 1.993887 0.161147 0.896502 0.968012 2.460343 -0.457562 -0.443230 -0.987059 -0.342984 0.904416 -0.685847 0.241386 0.095890 -0.240390 -1.246081 -0.472112 0.463406 -0.692409 -0.910016 0.843715 -0.527735 0.954766 -1.688247 0.583939 -2.261785 -0.385724 1.083243 -2.235726 -0.687172 0.631443 0.124489 0.999375 -0.318762 -0.034858 0.418150 0.133137 -0.525030 0.241410 -2.092433 1.967757 0.445117 -0.119531 0.766993 1.005298 1.379595 0.369859 1.084966 -0.065775 -0.436084 0.275701 -0.236136 -0.299580 -0.215327 0.151369 0.448242 -0.595787 0.206602 0.103681 -0.822279 -0.635803 -2.171619 -1.188711 0.743623 2.700991 -0.575964 0.836655 -0.082662 -1.355520 1.142129 -0.206802 -1.303052 -0.113007 1.023835 1.747671 -0.110984 -0.471214 0.850452 1.945376 0.518960 -0.962126 1.179881 0.342845 -0.116798 -0.961804 1.327687 0.322819 0.583815 -0.606224 -0.267374 1.146799 1.870181 -0.329747 -2.499457 -0.058704 0.539845 1.082481 -0.034729 0.531156 0.677643 -0.206068 0.516468 -0.140909 0.705064 1.437286 -3.028057 1.362160 0.644581 -0.798385 1.177508 -0.440311 -0.327355 -1.022328 0.820177 1.648221 1.205472 0.802224 -0.602405 -1.028900 -1.357384 -0.204128 0.459592 0.825754 -0.871520 1.276835 -0.334036 -0.885049 -1.197523 -2.161586 -0.204510 0.241976 -1.487435 0.374830 0.774286 -3.059827 1.981650 -0.131867 -0.694151 -1.079941 -0.755876 0.196965 -1.513902 -1.769155 -0.156825 -1.322229 -2.639201 -0.531808 -0.990968 0.105392 0.314528 0.046362 -0.749600 -1.378192 2.137143 0.259469 1.152222 1.085139 0.750250 2.053652 2.009469 -1.066041 -0.102257 -1.226335 1.863871 -0.942934 -0.498401 0.653275 -1.002916 0.347674 2.070224 -0.679702 -0.157595 -1.291690 0.830607 -0.654652 -1.099557 0.755918 -0.678582 -0.102515 1.096461 0.969508 -0.505524 -0.577211 -1.925884 -0.354667 -0.430371 -1.178054 -0.049915 -1.713975 -0.477524 1.688801 -0.934550 -1.368418 0.527845 -0.570985 -0.782908 -0.391890 1.364638 1.727790 -1.801968 1.717261 -1.466236 1.252445 -1.898100 -1.249354 0.009451 -0.558385 0.187286 -0.613407 -0.187448 -0.231281 0.153522 -0.899711 -1.047511 0.646704 +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.079921 0.482027 0.367614 -0.092442 0.437274 0.303075 0.130447 0.193159 -0.221570 -0.354137 -0.174761 -0.566976 -0.654348 0.425649 -0.009010 -0.065010 0.672777 0.096735 0.048834 -0.085531 -0.067502 -0.102792 0.607098 0.599513 -0.510621 0.287030 0.071078 0.086790 -0.236361 0.681228 -0.256236 -0.791565 0.133052 0.203205 0.248408 -0.150451 -0.231681 -0.307650 -0.258798 -0.978221 -0.077070 0.553380 -0.054401 -0.042760 0.165403 0.202630 0.959565 0.264078 -0.033658 0.252889 0.057480 0.082169 0.263952 0.055080 0.260828 0.047472 0.360372 -0.284742 -0.390857 0.164741 -0.093480 -0.530219 -0.319713 0.380343 0.446733 -0.044559 -0.223103 -0.175612 -0.213212 0.035789 -0.130310 0.318388 0.390149 0.345396 0.265361 0.167626 0.047345 -0.279879 0.018663 -1.023863 -0.580830 -0.440516 0.530053 0.553694 0.080131 -0.345636 0.699979 -0.138827 0.272756 0.104774 0.803217 -0.388083 -0.157807 -0.219896 -0.058198 0.162460 -0.156706 -0.070962 -0.029770 -0.214425 -0.437829 -0.314613 0.379367 -0.109785 -0.301342 0.196533 -0.117700 0.373416 -0.653277 -0.081821 -0.741902 -0.094269 0.115726 -0.658088 -0.159086 0.239394 -0.050544 0.374414 -0.214699 -0.322717 0.266194 0.165479 -0.212222 -0.118640 -0.510324 0.608966 0.108156 -0.082047 0.264441 0.206447 0.369523 0.395108 0.396487 -0.074501 -0.052479 0.140884 -0.018112 -0.067610 -0.042003 -0.054725 -0.220685 -0.338735 0.057481 0.139330 -0.330468 0.033451 -0.673931 -0.260763 0.187250 0.886539 -0.269238 0.305710 -0.019402 -0.569372 0.406490 -0.126113 -0.402900 -0.081307 0.380087 0.556138 -0.175806 -0.198941 0.277293 0.659610 0.238075 -0.305775 0.233225 -0.037692 0.012850 -0.125218 0.435849 0.074262 0.257289 -0.302120 -0.095780 0.178718 0.942228 -0.192642 -0.731023 0.079094 0.004814 0.238283 -0.145688 0.074317 -0.034501 -0.086227 0.097097 -0.117098 0.172683 0.513332 -0.953159 0.533467 -0.096185 -0.456080 0.495187 -0.083385 -0.066621 -0.203680 0.083296 0.521422 0.577866 0.233922 -0.042757 -0.316244 -0.464934 -0.103369 0.072459 0.265683 -0.334547 0.455228 -0.009806 -0.532031 -0.277972 -0.584862 0.013504 -0.135818 -0.447163 0.145533 0.386989 -1.052196 0.607935 0.111610 -0.184431 -0.074460 -0.050688 0.140195 -0.405817 -0.608032 0.074010 -0.337704 -0.607916 0.025064 -0.318086 0.102919 0.114606 -0.023798 -0.225823 -0.459131 0.605673 0.196594 0.418558 0.385133 0.181525 0.551910 0.577178 -0.423098 0.024113 -0.405266 0.455207 -0.396975 -0.041281 0.140401 -0.416787 0.256200 0.716834 0.015304 -0.072668 -0.493919 0.386003 -0.247162 -0.109388 0.375197 -0.187150 -0.085526 0.204391 0.437984 -0.173166 -0.224444 -0.480903 -0.032989 -0.176027 -0.300050 0.037535 -0.566540 -0.149290 0.495500 -0.311218 -0.456650 0.163246 -0.169691 -0.246771 -0.155247 0.511857 0.352549 -0.492270 0.571238 -0.361106 0.338350 -0.585073 -0.314083 -0.062151 -0.027274 -0.189663 -0.199325 -0.021930 0.006480 -0.012167 -0.159294 -0.238646 0.005946 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_wrap(int* const&, int*) = -0.021026 0.229423 0.143580 0.026343 0.253999 0.036877 0.139132 0.064413 -0.154146 -0.272016 -0.112143 -0.274298 -0.407604 0.336218 0.019496 0.196591 0.560619 0.190063 0.070254 -0.169906 0.142008 -0.467798 0.541630 0.524271 -0.415006 0.168068 0.206609 0.153091 0.000000 0.375869 -0.202960 -0.296722 0.266132 -0.263466 0.205522 -0.332598 -0.065749 -0.055440 -0.037340 -0.794364 -0.067845 0.116022 0.104225 0.001183 -0.015652 0.331609 0.580898 0.279575 -0.089073 0.333787 0.110393 -0.147710 0.229184 0.122296 0.125171 0.177097 0.174500 -0.088139 -0.308130 0.126289 -0.050886 -0.700611 -0.047218 0.275307 0.464100 -0.113898 -0.081196 0.146598 -0.179552 0.029080 0.001329 0.224828 0.179276 0.067055 0.305662 -0.443972 0.017777 -0.598917 -0.184541 -1.204490 -0.433937 -0.401424 0.301305 0.036218 0.280059 0.048464 0.545242 -0.012266 0.189446 0.047505 0.576857 -0.522332 -0.165666 -0.173945 0.074505 0.154400 -0.250828 -0.063970 0.283188 -0.181758 -0.323222 -0.372473 0.528961 0.044623 -0.242398 -0.154769 -0.136957 0.344144 -0.579007 -0.369070 -0.675838 -0.301042 -0.132315 -0.526052 0.336874 0.118510 0.261122 0.317762 -0.060845 -0.407062 0.145190 0.276923 -0.023420 -0.327765 -0.186244 0.443632 0.082450 -0.064079 0.258289 0.164323 0.142063 0.511622 0.577101 -0.060364 -0.144369 0.191016 -0.271159 0.012000 -0.171323 -0.210630 0.132581 -0.436577 -0.040820 0.131950 -0.272899 0.025669 0.207815 -0.117615 0.206952 0.590272 -0.037864 0.192442 0.099418 -0.445512 0.331389 -0.204195 -0.180870 0.138591 0.401055 0.277048 -0.394949 -0.242700 0.080251 0.479155 0.215089 -0.408361 -0.292924 -0.187983 0.158474 0.013375 0.150675 0.143282 0.165406 -0.257663 -0.001529 0.077637 0.747994 -0.362693 -0.191731 0.108883 -0.133918 -0.114938 -0.728828 -0.074654 -0.273697 -0.107701 -0.195164 -0.026569 -0.005693 0.422056 -0.680916 0.407936 -0.329729 -0.256088 0.357264 -0.006861 -0.087510 -0.621210 0.114086 0.338393 0.435591 0.094532 0.089955 -0.078246 -0.424235 -0.060009 -0.024029 0.216105 -0.200758 0.355629 -0.064471 -0.363999 -0.262036 -0.133086 0.098844 -0.261911 -0.005939 0.175616 0.391982 -0.770444 0.388855 -0.119204 -0.278643 0.214109 0.102103 0.217649 -0.397861 -0.495405 0.182544 -0.159628 -0.289342 -0.184493 -0.124864 0.180174 -0.041944 -0.360903 -0.059231 -0.391131 0.341919 -0.019727 0.185225 0.279645 0.120691 0.554125 0.240180 -0.430143 -0.184782 0.006947 -0.151980 -0.455270 -0.027591 -0.206511 -0.208472 0.328361 0.701850 0.148089 0.089489 -0.058120 0.427903 -0.514781 -0.231077 0.390332 0.275691 -0.035687 0.246791 0.374775 -0.342687 -0.236085 -0.257465 -0.058228 0.069695 -0.262429 0.140051 -0.517620 -0.054271 0.319252 -0.145268 -0.161875 0.260374 -0.043619 -0.009149 -0.256590 0.489410 0.571330 -0.466596 0.121280 -0.256957 0.137005 -0.515404 -0.217183 -0.051278 0.398899 -0.151924 -0.008349 0.223495 0.104053 0.045889 -0.277740 -0.173822 -0.228759 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a1(int const*, int const*, int*) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a2(int const*, int const*, int*) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = -0.666518 -0.159080 -0.215766 -1.341699 1.288899 0.664068 0.536984 -0.511740 -1.359700 -1.122059 0.250091 -2.365016 -1.598305 1.526054 -0.496943 1.225113 2.809199 0.107712 -0.240407 -0.962181 1.124024 -0.353110 2.939246 3.088305 -2.088301 0.198759 0.475170 1.046061 0.105318 -0.078235 0.335471 -1.867676 0.550758 -1.389177 0.595896 -0.765185 -0.466314 0.193149 1.242762 -3.466996 -0.259038 0.627585 -0.020770 0.121228 0.035090 0.974582 2.252398 1.621490 -0.688798 1.568497 1.596623 0.045493 0.913317 0.173169 0.018097 0.037568 -0.097616 -0.238099 -0.455457 -0.125581 -0.432415 -0.754362 0.176091 1.941608 2.353522 -0.306459 -1.134708 0.733268 0.588235 0.366615 0.369323 1.753208 0.333516 0.599479 1.560815 -2.440515 -0.308674 -4.379039 0.315138 -4.574395 -2.026951 -0.612795 1.550186 0.503083 1.034521 -0.004045 3.227847 -0.296759 -0.144820 1.892507 2.303295 -1.636966 -0.579545 -0.850942 -0.744806 0.405982 -0.820224 0.348494 0.786277 0.866469 -1.836618 -1.218530 0.776298 -0.108439 -1.233974 -1.512344 -0.078112 1.162816 -1.645690 -1.233640 -2.058526 1.176529 0.175556 -3.228170 -0.399553 -0.693236 0.862174 0.574901 -1.236489 -1.615864 0.582763 0.346546 -0.776520 -0.643506 -0.561508 1.496543 1.542803 0.221677 0.534969 1.195750 0.813845 3.051036 1.105586 -1.075796 -0.501860 0.810571 -0.626233 0.440971 -1.060726 -0.448557 1.054526 -1.867377 0.709794 0.798196 -1.229969 -0.863462 1.096632 -0.774601 0.216471 5.726770 -0.549450 2.034170 1.668249 -1.691649 1.190696 -1.081128 -0.026821 0.712124 1.572775 1.232807 -2.261790 -1.463647 1.521721 2.835856 1.069554 -2.145477 -0.637951 0.797947 0.631956 -0.491789 0.873136 0.470181 0.482527 -0.925022 -0.041603 1.394234 3.700756 -0.859414 -0.463700 0.274609 1.891231 0.032975 -2.130488 -0.388233 -2.206574 -0.391465 1.103192 0.744360 0.830703 2.342581 -3.926915 1.468321 -0.137094 0.166808 1.347491 0.916941 -1.399502 -3.093021 -0.033345 1.116636 1.795516 -0.275398 0.743395 -0.047252 -2.124866 0.080274 0.558065 0.741183 -1.491820 2.040399 -0.407960 -1.212300 -0.660911 -0.039122 -0.855812 -0.656956 -0.503569 1.411510 1.009843 -3.267358 1.814925 -0.042181 -1.262676 0.308355 -0.864337 2.269269 -1.868858 -1.920491 1.336256 -1.010298 -1.087302 -0.481345 -0.550736 0.747482 0.371783 0.341352 -1.459704 -1.974057 2.214982 -0.087444 2.256144 1.295728 -0.275030 1.842614 -0.995973 -1.365234 -1.069740 -1.385295 0.361627 -0.151604 -1.178767 -1.082032 -0.733727 1.396575 2.319085 -0.203803 -0.834043 -0.166129 1.807957 -2.359245 -0.194598 0.883617 1.026603 -1.126714 1.158559 1.249217 -1.685325 0.075641 -1.889547 0.334454 -0.930375 -1.289775 1.260713 -1.315127 0.287161 0.740343 -0.669441 -0.066666 1.062770 0.685138 0.170229 0.039642 2.440214 2.322452 -0.736418 -0.146984 -2.424773 1.067447 -2.454523 -1.987130 0.132500 0.374941 -1.094110 -0.511870 0.072710 1.509019 0.639732 -0.970360 -1.424905 0.564664 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__copy_move::__assign_one(int*, int const*) = -0.090190 0.218924 0.235656 -0.163105 0.393105 0.170885 0.176284 -0.067790 -0.296107 -0.315968 -0.059986 -0.359373 -0.475041 0.517957 -0.067388 0.296524 0.813360 0.191314 0.014134 -0.316629 0.368958 -0.526581 0.827585 0.818562 -0.686778 0.171727 0.422292 0.282028 0.190728 0.391935 -0.263101 -0.347401 0.334840 -0.481391 0.220009 -0.492526 -0.072739 -0.068857 0.134980 -1.096365 -0.076070 -0.072919 -0.090288 0.018544 -0.039390 0.524252 0.776368 0.444477 -0.235531 0.480233 0.355735 -0.104579 0.188454 0.130495 0.127359 0.207443 0.294718 0.118995 -0.261938 0.097217 -0.062137 -0.763440 0.028003 0.503057 0.720502 -0.140591 -0.119687 0.268225 -0.096215 0.037629 0.049283 0.348709 0.198809 0.151603 0.479405 -0.880567 -0.006051 -1.233347 -0.208832 -1.688160 -0.571961 -0.454639 0.356014 -0.238759 0.400821 0.164581 0.804904 0.024332 0.155354 0.248305 0.791860 -0.717989 -0.196479 -0.239353 -0.084171 0.196505 -0.350478 0.044451 0.332485 -0.170090 -0.468241 -0.595852 0.628266 0.091331 -0.365997 -0.338389 -0.154445 0.498946 -0.748924 -0.493517 -0.779287 -0.228038 -0.199760 -0.847009 0.253439 -0.064669 0.694524 0.296690 -0.122482 -0.613800 0.147500 0.448352 -0.081927 -0.462473 -0.027074 0.562178 0.318487 0.009828 0.245047 0.139163 0.211126 0.801148 0.800510 -0.176388 -0.194046 0.217295 -0.392180 0.047255 -0.344429 -0.200196 0.324989 -0.565507 0.049862 0.299434 -0.368276 -0.083933 0.701311 -0.183193 0.249105 1.371534 -0.041286 0.380821 0.246366 -0.644089 0.306047 -0.286418 -0.178459 0.306396 0.538350 0.353504 -0.823488 -0.393386 0.189866 0.717185 0.318595 -0.777536 -0.456406 -0.178774 0.118946 -0.020590 0.171295 0.145038 0.117926 -0.339760 -0.041372 0.233746 1.103631 -0.500823 -0.376379 0.125133 -0.022346 -0.221237 -0.999777 -0.122250 -0.389116 -0.067172 -0.042784 -0.004498 0.145572 0.643889 -1.277495 0.522903 -0.400169 -0.291367 0.447938 0.144970 -0.238509 -0.823469 0.182305 0.444430 0.580463 0.114724 0.138529 0.008183 -0.641474 -0.055171 0.028763 0.257602 -0.336294 0.511395 0.045300 -0.519102 -0.381341 -0.066672 0.080034 -0.316588 -0.007881 0.311543 0.200489 -1.316301 0.571700 -0.156593 -0.373681 0.291658 -0.030174 0.470696 -0.603998 -0.713143 0.342553 -0.145758 -0.279428 -0.300020 -0.146745 0.324604 0.010945 -0.209315 -0.272001 -0.692972 0.416871 -0.129985 0.342929 0.390023 0.136791 0.831412 -0.092398 -0.471579 -0.482556 -0.015972 -0.012890 -0.364428 -0.206920 -0.387657 -0.258353 0.483161 0.913311 0.090977 0.046797 -0.056981 0.624975 -0.876094 -0.256955 0.439286 0.698608 -0.205245 0.347792 0.457559 -0.516092 -0.246100 -0.347961 -0.161806 0.015087 -0.405074 0.321875 -0.558791 0.044381 0.358901 -0.092936 -0.145527 0.406578 -0.017561 0.100873 -0.223607 0.650128 1.107419 -0.636399 0.000854 -0.476498 0.276685 -0.774843 -0.490914 0.025183 0.359296 -0.211563 -0.023593 0.174835 0.318423 0.126126 -0.332907 -0.192777 -0.183829 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.029926 0.494486 0.378886 -0.197174 0.498471 0.347330 0.162012 -0.026577 -0.232956 -0.344459 -0.184549 -0.450631 -0.616825 0.543822 -0.063733 0.175188 0.896555 0.146310 0.023243 -0.264181 0.313904 -0.429651 0.874091 0.845503 -0.782658 0.243146 0.502972 0.268329 0.098859 0.605090 -0.401182 -0.545146 0.276310 -0.304778 0.310829 -0.450974 -0.127563 -0.272244 0.004923 -1.230069 -0.097031 0.048060 -0.154749 -0.015260 0.005235 0.427923 1.073529 0.447932 -0.241203 0.318597 0.324804 0.023992 0.195998 0.116499 0.189771 0.225163 0.456189 0.081158 -0.294778 0.099127 -0.059927 -0.747482 -0.062394 0.589850 0.737681 -0.084451 -0.147072 0.196772 -0.136551 -0.002770 -0.103851 0.398042 0.296532 0.360663 0.461222 -0.728332 0.071524 -1.111227 -0.159400 -1.622031 -0.654399 -0.615548 0.283222 -0.081048 0.404778 0.030175 0.905907 -0.024965 0.318093 0.197288 0.972058 -0.758831 -0.177006 -0.350814 -0.143048 0.213087 -0.323600 0.030489 0.211531 -0.295820 -0.518927 -0.671961 0.637274 0.081388 -0.422649 -0.193324 -0.167307 0.517517 -0.763615 -0.428039 -0.898783 -0.302699 -0.196847 -0.957079 0.108964 0.003552 0.572943 0.310800 -0.109528 -0.750071 0.170331 0.549908 -0.142864 -0.482214 -0.164362 0.689820 0.375485 -0.073745 0.285914 0.106268 0.347247 0.790278 0.845734 -0.146380 -0.205199 0.187392 -0.386858 -0.094896 -0.317864 -0.129104 0.193098 -0.556245 0.002146 0.421226 -0.398009 0.006814 0.426796 -0.338103 0.338597 1.627483 -0.158777 0.359897 0.112454 -0.795679 0.404682 -0.243356 -0.400695 0.192696 0.542967 0.570625 -0.906937 -0.391698 0.244576 0.802519 0.328272 -0.727983 -0.283090 -0.214168 0.011734 -0.089885 0.258522 0.119260 0.120955 -0.374961 -0.102406 0.299969 1.256486 -0.499178 -0.652313 0.160476 -0.030080 -0.122139 -0.867045 -0.086542 -0.355052 -0.081540 -0.004445 -0.086428 0.238673 0.709896 -1.399585 0.600081 -0.354138 -0.500592 0.574014 0.035798 -0.169826 -0.633590 0.283715 0.646044 0.633686 0.139922 0.068569 -0.186195 -0.679419 -0.091733 0.058077 0.344692 -0.408917 0.557355 0.082502 -0.677377 -0.469204 -0.258571 0.072659 -0.348596 -0.184031 0.268469 0.171193 -1.458194 0.787671 -0.072805 -0.308781 0.246962 -0.137932 0.383239 -0.665694 -0.826749 0.316644 -0.158645 -0.300977 -0.177522 -0.228120 0.361729 0.079990 -0.120810 -0.397324 -0.809625 0.456435 -0.017853 0.389814 0.457002 0.297772 0.854801 0.097133 -0.482783 -0.469219 -0.156375 0.151766 -0.302336 -0.243288 -0.362138 -0.378016 0.505099 1.047417 -0.005634 0.059975 -0.257612 0.599250 -0.829577 -0.242337 0.449983 0.522470 -0.288653 0.215721 0.491270 -0.410075 -0.367433 -0.441141 -0.165784 -0.052738 -0.509557 0.218817 -0.694396 -0.047452 0.569521 -0.232229 -0.291005 0.404012 -0.092682 0.035049 -0.215304 0.634493 1.007762 -0.708432 0.168686 -0.513535 0.357981 -0.890795 -0.545320 0.047705 0.195250 -0.180496 -0.116472 0.148850 0.259725 0.033807 -0.236628 -0.147450 -0.235251 +PE-benchmarks/find-two-non-repeating-element.cpp__get2NonRepeatingNos(int*, int, int*, int*) = -2.193810 -1.324972 -0.034180 -3.904408 3.323746 4.170912 0.904134 -3.658035 -4.460854 -1.770202 1.631691 -5.396855 -2.916949 5.345512 -1.865080 4.219345 6.819632 0.206271 -2.170089 -2.131130 4.622722 -0.783476 7.566365 8.164877 -5.321566 0.214492 1.176187 2.541026 2.110006 0.379684 0.784236 -2.781723 1.688693 -5.168024 0.209965 -2.442815 -1.165345 1.311240 4.729713 -8.096860 -0.224625 0.309124 -1.181282 0.421425 -0.118943 2.040665 4.869655 3.668285 -0.977070 4.128349 4.090790 0.393540 1.783235 0.249758 0.669093 0.760040 0.956927 0.964467 -0.317630 -1.164453 -1.211088 -0.567653 1.077380 5.703871 6.629985 -0.299280 -2.546217 2.406026 1.788109 1.180258 1.749074 4.312424 -0.583216 1.746944 3.655983 -7.083444 0.730179 -10.741182 0.660381 -8.438456 -4.088665 -0.029415 2.896102 0.158467 3.470175 0.126512 7.682755 -0.753499 -2.221672 5.681667 6.306663 -4.649296 -1.029988 -1.411001 -2.862063 0.248269 -2.507331 1.431310 1.277131 2.003219 -4.697282 -4.357153 1.589703 0.750078 -3.266005 -3.472263 -0.037685 4.193248 -3.996825 -3.749416 -2.399254 3.219221 -1.151807 -8.556051 -2.065295 -3.664135 3.062390 0.754727 -3.483964 -5.044433 1.730876 1.967068 -1.522879 -2.723347 0.794424 3.135855 4.538302 1.020993 -0.287487 2.238369 1.634777 8.214169 1.960076 -3.025023 0.012556 1.177801 -1.178375 2.269547 -2.879328 -1.161480 2.752508 -4.280992 0.256627 2.992829 -2.831176 -1.381412 5.115535 -1.119043 -0.861074 17.012747 -1.308840 5.913250 4.651720 -4.785321 1.218804 -2.075628 0.858505 2.609719 3.509560 3.030634 -8.131594 -4.205632 4.365534 7.574896 2.786920 -6.538954 -2.074969 1.796437 0.225530 -1.173814 2.213038 0.272626 0.661783 -2.968990 -0.693360 3.365650 10.196244 -3.463210 -0.405735 1.054754 3.178190 -1.141732 -5.635530 -1.359465 -5.030561 0.045919 2.280797 1.713443 2.641397 6.080529 -9.125215 3.657819 -1.103921 -0.360520 3.951322 2.774117 -4.282175 -5.514988 -1.034604 2.520281 4.233665 -0.676101 1.252520 1.075356 -6.399343 0.000476 1.552308 1.161658 -3.837441 5.307929 0.904358 -2.540961 -2.042412 1.641689 -1.265263 -2.279019 -1.061940 4.120289 -0.173115 -7.220684 4.585125 0.724261 -2.631584 0.635286 -1.257003 6.106552 -4.240075 -4.885748 3.560063 -1.784128 -1.938862 -1.779074 -1.204002 2.442842 2.375067 1.866521 -5.218161 -5.032400 3.578648 -1.517883 5.918530 3.088555 -0.912748 4.499218 -3.443057 -2.501149 -3.787123 -3.110688 1.713579 1.508787 -3.751473 -2.962404 -1.534671 4.246508 5.026691 -0.170342 -3.151239 0.226857 5.390258 -5.276069 -0.403122 1.810550 4.789429 -4.179082 1.807226 2.704071 -3.484951 1.029426 -3.402388 -0.792759 -3.127166 -3.157595 4.783918 -0.914643 1.822202 0.453378 -0.007350 0.689657 2.901729 2.050403 0.814427 1.390092 6.116850 6.537526 -1.932506 -1.794992 -6.452148 3.796596 -6.171119 -5.027480 0.633096 0.238236 -3.056761 -1.364986 -0.542573 4.886158 2.722907 -2.828083 -2.553077 1.616454 +PE-benchmarks/find-two-non-repeating-element.cpp__main = 0.131700 1.072883 1.037007 -0.563188 0.748516 0.117845 0.177368 0.616826 -0.396823 -1.580922 -0.070472 -1.563188 -2.113536 0.963233 -0.365166 -1.044598 1.524056 -0.199754 0.138832 -0.781771 0.020315 -0.026319 1.567081 1.624503 -1.882288 0.372281 0.621584 0.690199 0.555438 0.523105 0.610395 -1.711958 0.142304 0.977869 1.046120 -0.040969 -0.244873 -1.098778 -1.269505 -2.250513 -0.386572 1.056381 -0.667090 0.121878 0.460615 1.768661 2.327733 0.827934 -0.879757 0.520452 1.024885 0.421651 0.309867 -0.089857 -0.181807 -1.381710 0.444732 -0.346754 -0.638608 0.435031 0.046025 -1.503190 -0.779517 1.390098 1.468344 -0.204321 -0.369850 -0.353031 -0.052368 0.410309 -0.283592 0.907020 1.502946 1.142282 1.249638 0.259455 -0.384667 -2.282050 0.264128 -4.244276 -1.397155 -1.206483 2.016020 0.736021 -0.717084 -0.756093 1.776135 0.485833 0.595236 1.573490 2.064497 -0.085301 -0.383055 -0.809796 -0.575112 0.962957 -0.715075 0.549172 0.008192 0.319018 -1.069279 -0.378474 0.109274 -0.768697 -0.821157 0.322696 -0.482402 0.805429 -1.733241 0.806677 -1.809010 0.029670 1.236520 -2.142682 -0.772631 0.162633 1.154495 0.645443 -0.244687 0.367658 0.173281 0.024150 -0.462692 0.488899 -1.612658 1.434149 0.595823 0.193962 0.494670 0.914360 1.213980 0.348077 0.949630 -0.205735 -0.505573 0.213948 -0.177390 -0.183650 -0.400819 0.272035 1.063751 -0.437080 0.703300 -0.007170 -0.681234 -1.401532 -1.119569 -1.273781 0.640798 2.738086 -0.319033 0.902647 0.233499 -1.041623 0.320360 -0.341494 -0.890452 0.245779 0.960132 1.335735 0.188071 -0.480338 0.790715 1.732814 0.454549 -1.127061 0.846251 0.595221 -0.189942 -0.878112 1.039794 0.232589 0.226249 -0.405956 -0.251817 1.272848 1.339440 -0.028524 -1.819997 -0.264675 1.073751 0.859610 0.100107 0.552342 0.808255 0.029343 0.991870 0.025235 0.775019 1.314272 -3.447635 1.027700 0.816841 -0.079714 0.331689 0.023172 -0.513410 -1.386365 0.852914 1.294582 0.935259 0.623502 -0.217116 -0.554804 -1.255012 -0.102106 0.537293 0.669124 -0.819870 1.079212 -0.121855 -0.581396 -1.142785 -1.483963 -0.289323 0.631732 -1.105564 0.439871 0.285341 -3.290335 1.685195 -0.496946 -0.724662 -1.212561 -0.910337 0.668880 -1.509774 -1.500131 -0.068948 -1.225210 -2.507872 -0.742043 -0.813055 0.188820 0.129824 0.426298 -0.656799 -1.189681 1.883097 -0.030477 0.998608 0.918563 0.543434 2.214917 0.553302 -0.674821 -0.444737 -0.927633 1.993793 -0.710783 -0.625383 0.840428 -0.661021 0.176494 1.741284 -0.821185 -0.397339 -0.541718 0.778457 -0.864619 -1.104480 0.440178 0.222859 -0.116512 1.531969 0.678096 -0.721839 -0.307115 -1.842723 -0.274163 -0.304367 -1.089186 0.220386 -1.244136 -0.180323 1.320267 -0.457159 -1.082555 0.677210 -0.424824 -0.439162 -0.206683 1.137893 2.447551 -1.658286 1.191488 -1.530103 1.107919 -1.766433 -1.498134 0.046795 -0.616370 0.434063 -0.440536 -0.696740 0.062361 0.352391 -0.776009 -1.025132 1.057654 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__isValid(int, int, int) = -0.813536 -1.048637 -0.629531 -1.041146 0.632775 0.041997 0.403439 -0.813740 -1.687763 -0.898537 0.574857 -1.946553 -0.670743 1.641387 -0.286129 1.347422 1.910118 0.246047 -0.449879 -0.722585 1.205599 -0.918788 1.578420 2.011372 -0.789477 0.053833 0.209723 0.452629 -0.116132 0.214348 0.943056 -1.699940 0.057740 -1.214460 0.609396 -0.611336 -0.827354 1.243206 1.668864 -2.348917 -0.132061 1.558432 1.150831 -0.036351 0.157041 -0.267095 0.635515 0.910996 -0.017392 1.743206 0.877407 -0.198637 0.962701 -0.103569 0.988395 0.528860 0.341519 -0.085881 -0.229805 0.240439 -0.943542 0.427720 0.327119 1.190292 1.546002 -0.413497 -1.142652 0.181707 0.343298 0.795964 0.541871 1.389305 -0.649925 -0.178634 0.913179 -2.080392 -0.184430 -3.738790 0.875838 -3.410528 -1.193239 0.777828 1.193522 0.616242 0.677691 0.319381 2.374646 -0.779990 -1.310877 1.099613 1.575222 -0.369922 -0.240053 0.086986 -0.833974 -0.206828 -0.262906 -0.203475 1.256879 0.927230 -1.311885 -0.699679 0.568354 0.001502 -0.675347 -0.932285 -0.047591 1.315889 -1.147781 -1.144742 -0.675901 1.568377 0.082469 -1.904128 -0.654367 -1.077084 -0.958169 0.565727 -1.976399 -1.059653 1.196776 -0.256887 -0.748513 -0.344423 0.399398 0.755678 0.662493 0.558693 -0.270878 0.969947 0.084618 2.008860 0.339132 -1.078329 0.469556 0.655785 0.070238 0.903180 -0.558849 -0.744448 0.277284 -0.951638 0.228322 -0.039906 -0.865154 -0.724167 0.739937 -0.357367 -0.702176 4.200869 -0.828142 1.820232 1.517411 -0.815583 0.898079 -0.082636 0.648983 0.258414 1.375910 0.727192 -0.995087 -1.167043 1.767335 2.242101 0.771269 -1.349695 -1.433351 0.821963 0.607563 0.319535 1.036357 -0.044940 0.359860 -0.747465 -0.123513 0.109586 2.459436 -0.818204 -0.669709 -0.007669 1.913675 -0.169753 -1.850122 -0.097972 -2.820608 -0.117091 0.085057 0.290108 0.622118 1.603786 -3.413892 1.480468 -0.193404 0.247860 1.564365 0.908412 -1.003196 -3.926449 -1.089343 0.218202 1.551768 -0.436495 0.555924 0.264439 -1.690737 0.227127 -0.063913 0.376815 -1.437133 1.800176 -0.949342 -0.480028 0.055466 0.565955 -0.791205 -1.118329 -0.270842 1.139874 1.707427 -1.474051 0.832241 0.609758 -0.314470 0.145795 0.516689 1.476473 -0.663745 -1.268871 0.810334 -0.860311 -0.754043 -0.172660 -0.708916 0.352056 0.364930 0.118840 -0.648874 -0.656840 1.602987 -0.632615 2.406356 0.720169 -0.911144 0.827682 -0.434640 -0.927825 -0.300854 -0.388858 -0.313097 -0.210457 -0.366995 -1.913092 -0.304288 0.973282 0.745528 0.552479 -0.923410 -0.608784 1.684246 -1.296928 0.644439 0.584721 -0.433439 -0.711677 0.730100 0.882631 -1.096896 0.648898 -1.375295 0.214614 -1.423122 -0.049381 1.172174 -0.261642 0.072213 -0.519437 -0.755536 0.214063 0.361733 1.324665 -0.138655 0.386415 1.591644 0.800433 -0.210947 -0.307592 -1.588987 0.495636 -1.104604 -0.904423 -0.407307 0.770832 -1.538304 -0.692609 -0.095058 1.167638 1.031220 -0.559864 -1.084307 0.773598 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -6.373094 -4.239174 -4.205519 -10.879545 8.325741 16.377548 3.820209 -13.090983 -14.185789 -4.486481 8.912803 -22.717168 -11.578069 16.589773 -7.060485 10.247582 18.997476 -3.903915 -9.002768 -7.991984 13.394192 7.483803 26.314099 26.700430 -18.774983 1.302694 3.009718 4.349210 9.880274 -4.015452 6.788408 -11.511161 7.181292 -12.692772 -2.227452 -3.032827 -5.445938 0.487635 15.197917 -24.817863 -2.609751 4.493981 -5.084144 0.858473 1.302503 12.744438 16.775480 13.895603 -2.725410 14.907088 13.882237 1.891688 5.961818 -0.923316 2.204294 -5.806484 4.396492 2.056634 0.584429 -5.411216 -2.970425 -0.157644 -2.474638 19.649983 20.701756 -0.775577 -9.922180 6.309896 6.280112 4.191133 4.339151 16.304630 3.541932 10.016164 12.913757 -15.362626 0.006818 -27.845447 3.257535 -31.032227 -11.387408 3.338087 13.833924 0.186743 7.648591 -0.495894 26.739531 -0.430880 -10.888952 21.391136 20.564599 -12.732771 -2.622069 -0.339615 -9.317077 1.279505 -7.701786 11.407826 2.665249 8.067377 -15.930486 -9.783694 -1.711861 0.166441 -11.385101 -9.116790 -0.693502 8.501714 -15.936841 -4.416444 -4.086761 11.058915 1.268718 -29.254126 -18.681245 -10.524295 12.128749 1.869807 -12.172589 -10.982120 5.123272 1.136186 -3.783227 -6.359556 2.868996 7.135488 16.009548 8.444729 -1.741223 9.708372 9.437716 26.951725 3.207402 -8.847956 1.240340 1.219792 1.320726 10.647968 -4.796117 -0.668767 7.432397 -12.335078 9.056232 9.422943 -8.030465 -9.202905 8.418679 -3.015488 -4.242471 55.436007 -3.023827 21.817194 18.078154 -14.888999 -3.681220 -11.818375 1.894249 8.407960 8.751850 10.143508 -18.725547 -12.273210 17.740254 26.206764 7.642867 -21.687309 5.029637 12.443870 1.463270 -8.540776 10.371905 0.703813 3.621594 -8.353864 -2.281361 15.510423 30.099914 -9.626912 -3.340813 1.787553 12.107073 2.989876 -7.434595 -1.101391 -7.501359 1.418922 16.088822 6.553460 9.728382 18.468809 -28.428344 12.970554 1.450093 1.961722 9.364475 12.062988 -17.220952 -8.509283 -2.194144 6.980941 10.111215 -0.133135 -0.195370 3.113759 -20.624086 0.664508 7.429719 0.069865 -13.119735 18.078446 4.720285 -6.431649 -7.115810 2.904002 -2.511379 -1.959093 -7.104176 14.663688 -5.516046 -28.036198 14.288915 3.543488 -10.532431 -5.231244 -9.043519 18.047361 -14.800215 -15.461204 10.254622 -10.870350 -13.498780 -4.865371 -6.024538 3.989476 11.401804 13.076941 -19.464505 -15.622310 20.030623 -5.328629 20.989223 10.797734 -3.232042 14.596184 -20.093281 -7.599639 -12.913450 -13.215133 11.622062 5.492995 -14.262577 -3.532036 -5.323310 11.530873 13.066065 -4.687304 -13.784428 -2.208549 13.718580 -17.114928 -1.393265 2.668059 18.610070 -15.160586 10.347502 6.279725 -10.317809 8.740765 -12.786411 -6.221781 -14.131031 -10.399868 15.357375 -1.722588 7.010904 1.494230 -1.591250 0.841497 8.428771 3.820346 1.305910 7.309776 17.855528 21.322467 -7.375630 -2.980531 -23.864929 14.771292 -18.875295 -21.818511 7.211539 -2.657454 -8.474017 -8.085466 -6.357620 15.412405 13.466034 -14.051678 -11.233674 13.508015 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__int const& std::max(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__geMaxCollection(int (*) [4]) = 0.121684 0.456340 0.452923 -0.180688 0.464593 0.175545 0.141014 0.282840 -0.353790 -0.484192 -0.102567 -0.751860 -0.744439 0.493586 0.003217 -0.197764 0.720357 0.044075 0.022608 -0.138605 -0.149154 -0.092326 0.599933 0.652845 -0.517113 0.345101 -0.048466 0.049817 -0.262905 0.686385 -0.168063 -0.920619 0.049696 0.369328 0.288361 -0.051966 -0.343898 -0.351659 -0.347575 -1.034170 -0.066707 0.759711 -0.055467 -0.057113 0.241174 0.389157 1.043347 0.248622 -0.044355 0.335274 0.078448 0.035837 0.296101 0.005679 0.345328 -0.099404 0.432081 -0.271307 -0.439808 0.245470 -0.135126 -0.501811 -0.393412 0.401776 0.418271 -0.072599 -0.333392 -0.313386 -0.157282 0.085116 -0.106152 0.364235 0.507612 0.334858 0.303929 0.332947 0.024554 -0.351643 0.125481 -1.297680 -0.659133 -0.316498 0.838872 0.647251 -0.120140 -0.482026 0.748855 -0.176147 0.193477 0.219902 0.860360 -0.216327 -0.179313 -0.154600 -0.133903 0.156916 -0.091938 -0.078509 -0.005849 -0.126585 -0.503357 -0.141331 0.341565 -0.241134 -0.306137 0.349812 -0.080909 0.389118 -0.738136 0.115148 -0.723639 0.071379 0.362742 -0.684311 -0.240172 0.268149 -0.078758 0.413544 -0.383506 -0.117282 0.349076 -0.018444 -0.339154 0.102774 -0.713860 0.688580 0.039998 0.043039 0.245856 0.287413 0.461170 0.242825 0.328770 -0.127879 0.034019 0.121438 0.105537 -0.004587 0.056126 -0.069454 -0.202047 -0.259526 0.146239 -0.053710 -0.360698 -0.077834 -0.910452 -0.248877 0.077885 0.879164 -0.358384 0.440531 -0.016456 -0.514832 0.410070 -0.090043 -0.403974 -0.149640 0.421215 0.606569 0.056504 -0.179075 0.419306 0.757749 0.254372 -0.363308 0.387762 0.125733 -0.031644 -0.110783 0.576559 0.011053 0.352484 -0.312393 -0.130646 0.184823 0.990109 -0.076972 -0.898305 -0.006731 0.072935 0.429142 0.022087 0.186341 0.120031 -0.029719 0.158876 -0.130688 0.260504 0.541364 -1.245315 0.597853 -0.033086 -0.434811 0.513255 -0.037283 -0.115750 -0.373011 -0.047032 0.501660 0.670262 0.333985 -0.136140 -0.335524 -0.472674 -0.107107 0.082607 0.225152 -0.396412 0.510253 -0.058474 -0.503904 -0.209715 -0.766085 -0.037825 0.056449 -0.568788 0.160819 0.398447 -1.213786 0.623709 0.181433 -0.153526 -0.314621 -0.036207 0.112618 -0.356012 -0.603427 -0.029727 -0.495314 -0.898193 -0.019460 -0.430959 -0.003396 0.092786 0.040992 -0.208219 -0.450580 0.826734 0.154768 0.607364 0.425873 0.081512 0.655598 0.752091 -0.402731 0.139732 -0.484412 0.678528 -0.486848 -0.020024 0.361549 -0.474500 0.163483 0.600851 -0.023447 -0.117710 -0.569661 0.372921 -0.137618 -0.108689 0.358731 -0.377460 -0.053245 0.391662 0.468060 -0.160082 -0.091750 -0.643862 -0.108887 -0.315271 -0.225244 0.039587 -0.479477 -0.188359 0.448491 -0.337097 -0.525929 0.105394 -0.222006 -0.359402 -0.108763 0.554707 0.494954 -0.541886 0.717362 -0.432237 0.441091 -0.548015 -0.369285 -0.094470 -0.065749 -0.231249 -0.296647 -0.139385 -0.032673 0.041263 -0.260593 -0.351761 0.295485 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 0.096378 0.356468 0.514100 -0.144475 0.270083 -0.165496 0.120410 0.432458 -0.288260 -0.704258 -0.028516 -0.849126 -0.943639 0.448437 -0.091842 -0.450305 0.663884 0.061343 0.051466 -0.251426 -0.220393 -0.157036 0.586727 0.669587 -0.633344 0.222288 -0.125651 0.279899 0.005915 0.462963 0.213649 -0.792421 0.018160 0.630505 0.510906 0.006754 -0.169582 -0.335283 -0.730432 -1.015014 -0.123184 0.927983 0.155530 0.007875 0.293752 0.743883 0.927060 0.305524 -0.162494 0.280506 0.213898 -0.019596 0.359041 -0.009211 0.106493 -0.554818 0.338811 -0.424636 -0.524740 0.301349 -0.047074 -0.813952 -0.418987 0.460337 0.568434 -0.091970 -0.207235 -0.412640 -0.093595 0.225897 -0.023150 0.329219 0.617946 0.343261 0.423238 0.560403 0.025081 -0.463983 0.167544 -1.734460 -0.639609 -0.437445 1.178603 0.806413 -0.423766 -0.573729 0.715399 0.090104 0.221355 0.408408 0.855717 0.042359 -0.244279 -0.252453 -0.116621 0.403550 -0.268057 0.011418 0.108949 0.190284 -0.471991 0.103376 0.171575 -0.389052 -0.291659 0.520645 -0.191522 0.371850 -0.814093 0.359928 -0.817678 0.007610 0.677003 -0.767980 -0.087922 0.207011 -0.067747 0.431184 -0.231116 0.362725 0.220895 -0.216678 -0.242935 0.412767 -1.250719 0.767612 -0.071583 0.031971 0.257733 0.494907 0.444782 -0.085734 0.209430 -0.114703 -0.112927 0.176447 -0.030003 -0.007335 -0.064431 -0.051466 0.257483 -0.214364 0.141737 -0.314383 -0.341435 -0.399076 -1.173112 -0.313092 0.212125 0.565693 -0.197262 0.401701 0.046535 -0.340492 0.443455 -0.009491 -0.310976 -0.044263 0.425310 0.503947 0.449525 -0.187704 0.322795 0.733691 0.225066 -0.256316 0.489166 0.234533 0.032212 -0.242830 0.566373 0.133069 0.221369 -0.235909 -0.086064 0.296864 0.562203 0.090822 -0.795893 -0.129681 0.216773 0.451922 0.094115 0.289356 0.415552 -0.023723 0.056406 -0.010476 0.222119 0.539202 -1.261817 0.591156 0.324508 -0.088251 0.412773 -0.231332 -0.158461 -0.761451 0.128026 0.472794 0.558041 0.327327 -0.255049 -0.240036 -0.495924 -0.069234 0.110635 0.287074 -0.319064 0.455110 -0.201167 -0.202936 -0.362972 -0.943302 -0.091512 0.283783 -0.590210 0.163074 0.534778 -1.109319 0.606600 -0.114166 -0.299223 -0.583580 -0.115746 -0.017499 -0.540453 -0.552422 -0.218570 -0.644287 -1.328223 -0.387340 -0.396204 -0.070789 -0.092165 -0.113261 -0.094022 -0.299220 0.978438 -0.035419 0.473858 0.384234 0.081477 0.759425 1.094554 -0.374824 0.170032 -0.347761 0.645392 -0.672905 -0.046994 0.643962 -0.335902 0.024198 0.675397 -0.166853 -0.083950 -0.317914 0.386759 0.017834 -0.542551 0.316427 -0.606276 0.157320 0.718453 0.404515 -0.337174 -0.101885 -0.847045 -0.155793 -0.119004 -0.302241 0.062256 -0.555136 -0.147583 0.479112 -0.281612 -0.587325 0.170078 -0.201195 -0.452265 -0.141407 0.689211 0.640767 -0.583957 0.838416 -0.561104 0.428153 -0.624832 -0.359235 -0.143867 -0.072506 0.001524 -0.153813 -0.145708 -0.102784 0.154536 -0.422513 -0.549763 0.489388 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__maxSumIS(int*, int) = -3.803279 -3.484264 -1.398589 -5.718158 3.256534 6.910528 1.803093 -5.833652 -7.068681 -2.282239 3.236442 -9.046348 -3.910350 8.044766 -3.372830 6.456829 9.488220 0.293809 -4.078125 -2.581523 7.137987 0.516522 11.350865 12.081774 -7.493913 -0.327085 0.702477 4.139140 3.164800 0.144801 3.157836 -4.754123 2.367525 -7.179598 -0.233878 -3.672993 -1.577065 3.407172 6.932626 -12.135078 -0.749454 2.904093 -0.370223 0.100508 0.282081 1.098347 5.816187 6.650616 -0.632746 6.223005 5.680510 0.787885 3.231191 0.136995 1.391023 0.291618 0.805367 -1.003615 -0.039323 -1.879253 -1.963274 -0.908141 1.188288 8.630590 9.766264 -0.163765 -3.781863 2.694052 2.302392 2.116838 2.846826 6.659164 -1.760253 2.763788 4.915994 -9.777707 0.830487 -13.141214 2.177414 -10.697562 -5.088100 1.173455 4.911534 3.812933 4.885293 0.083542 11.948074 -1.831307 -4.812252 8.896424 8.601607 -6.328535 -1.413763 -1.819711 -4.254571 0.521619 -3.811675 2.423550 0.377274 4.676386 -6.754875 -4.781933 0.300344 1.535506 -4.721546 -4.915122 -0.543819 5.816595 -6.981100 -5.329476 -2.155014 6.106058 -1.256765 -12.760456 -5.868606 -6.303802 2.591545 0.839172 -5.662362 -6.528045 2.987231 1.887140 -1.258074 -3.583180 -0.216988 3.893878 5.887893 1.971907 -1.285721 3.973824 1.899877 12.284381 1.648329 -4.373873 0.492632 2.129038 -1.010364 4.028720 -3.639752 -1.369482 2.054529 -6.952845 0.403643 4.733057 -4.024087 -2.858819 3.300096 -0.608937 -0.912254 26.958722 -1.338829 9.101056 8.524828 -6.773631 1.887133 -3.250952 2.064549 3.907935 4.157349 3.581300 -11.900421 -6.289591 6.932718 11.459082 4.081290 -7.762720 -1.293687 3.408404 1.402444 -1.874867 3.856842 0.848271 0.210887 -4.283589 -0.935225 5.269796 13.980853 -4.292420 -0.411518 1.504470 4.786386 -1.701931 -7.180899 -1.422119 -6.894676 -0.103733 4.912834 2.352005 3.719552 8.802365 -10.934548 6.671306 -0.350234 1.086351 5.661540 3.526973 -6.720058 -7.365044 -2.088094 2.896243 5.895059 -1.872291 0.786585 2.119956 -9.645229 0.503650 2.617139 1.241968 -5.739175 8.166042 0.757022 -3.384050 -3.175364 2.505357 -2.587033 -3.375676 -2.452355 6.570201 -0.144594 -8.348822 6.102956 1.403978 -4.028492 1.136206 -2.280236 8.558896 -6.873957 -7.369507 5.765569 -2.755067 -4.017060 -2.270100 -1.986519 3.442738 4.418940 2.173513 -7.755925 -6.833969 6.927694 -2.710581 9.232707 4.273947 -1.963519 5.096314 -4.909811 -3.492527 -5.425787 -5.453502 1.479429 2.025796 -5.566168 -5.994498 -1.866181 6.473329 6.580503 -0.336320 -5.725882 -0.139380 8.328624 -7.056569 -0.522940 1.943097 4.424220 -6.456922 2.675201 3.477545 -6.274374 2.555071 -5.367415 -0.323638 -5.126908 -4.340510 7.240822 -1.351871 3.534952 -0.092912 -0.448488 0.678852 3.541347 4.112484 0.921089 2.969863 9.861094 6.011075 -0.897816 -1.990402 -10.067850 5.146006 -8.723558 -7.803110 1.274886 1.452297 -4.448529 -1.960744 -0.871122 7.715617 5.973224 -4.243956 -3.797988 3.189413 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 0.095060 0.420335 0.652681 -0.197483 0.390091 -0.145769 0.185945 0.515586 -0.395557 -0.935624 0.031396 -1.147472 -1.271881 0.653282 -0.146367 -0.488121 0.962232 0.045080 0.054265 -0.383274 -0.168342 -0.275158 0.900932 0.982728 -0.941430 0.259982 -0.040006 0.384691 0.100899 0.522000 0.259709 -1.034702 0.101727 0.603705 0.659280 -0.006070 -0.198862 -0.478396 -0.828300 -1.406249 -0.197241 1.114062 0.073101 0.020123 0.333817 1.073941 1.269802 0.475017 -0.283749 0.462188 0.378555 -0.136969 0.446233 -0.015210 0.119454 -0.725937 0.412955 -0.358842 -0.713171 0.384543 -0.065075 -1.132698 -0.517758 0.679308 0.854742 -0.163068 -0.270196 -0.404717 -0.106303 0.285840 -0.004428 0.481014 0.849012 0.472309 0.701423 0.476967 -0.051357 -0.911007 0.143436 -2.515646 -0.896442 -0.602178 1.546571 0.809919 -0.443452 -0.711101 1.025271 0.151296 0.253163 0.632168 1.230529 -0.086886 -0.371512 -0.393485 -0.158451 0.526654 -0.451206 0.082529 0.286426 0.168192 -0.695844 0.022231 0.281201 -0.434632 -0.411198 0.506360 -0.275634 0.557918 -1.095162 0.340911 -1.165548 -0.039257 0.825351 -1.165182 -0.109838 0.281085 0.110459 0.626337 -0.320610 0.349428 0.287023 -0.169945 -0.309056 0.386553 -1.392262 1.076665 0.029780 0.133112 0.377560 0.697327 0.639855 0.071728 0.484351 -0.151422 -0.184802 0.229430 -0.139221 0.059866 -0.123276 -0.107559 0.469752 -0.353062 0.206632 -0.316863 -0.482390 -0.543916 -1.180868 -0.393971 0.299845 1.073366 -0.226329 0.610098 0.114404 -0.535575 0.611055 -0.109623 -0.385277 -0.001258 0.617653 0.671314 0.314142 -0.293521 0.490242 1.056799 0.322858 -0.594999 0.531483 0.307105 0.091900 -0.368373 0.708230 0.242146 0.328166 -0.341150 -0.094688 0.502271 0.910992 -0.068918 -1.132022 -0.144487 0.301211 0.576326 -0.119736 0.343714 0.452951 -0.020051 0.127964 0.033821 0.316096 0.790152 -1.821644 0.795681 0.352623 -0.129754 0.613354 -0.196182 -0.305847 -1.125509 0.214987 0.655991 0.740215 0.504944 -0.338215 -0.268793 -0.731440 -0.065760 0.162584 0.385195 -0.413580 0.664638 -0.294300 -0.305974 -0.568184 -1.181329 -0.129387 0.313246 -0.722313 0.272611 0.630859 -1.660217 0.862304 -0.170413 -0.490144 -0.723679 -0.189469 0.114958 -0.818825 -0.850411 -0.194956 -0.880526 -1.754905 -0.581305 -0.534452 -0.087333 -0.035046 -0.153627 -0.182840 -0.579441 1.328330 -0.091025 0.706754 0.532929 0.107316 1.187226 1.270089 -0.567317 0.068409 -0.479446 0.875862 -0.856386 -0.179784 0.622672 -0.420789 0.133687 0.945900 -0.242224 -0.097378 -0.456965 0.556610 -0.250478 -0.739020 0.456334 -0.479586 0.130149 0.957271 0.572065 -0.533779 -0.103916 -1.117590 -0.276794 -0.200981 -0.476594 0.105348 -0.775959 -0.144061 0.619073 -0.329523 -0.692479 0.245892 -0.255412 -0.506094 -0.221351 0.951298 1.160165 -0.932962 0.955669 -0.871049 0.646290 -0.932094 -0.659022 -0.095433 -0.033968 -0.015726 -0.204225 -0.091319 -0.081337 0.264770 -0.720740 -0.769857 0.635104 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__solve(int*, int) = -2.197823 -1.808567 -0.723290 -3.491890 2.319376 3.722474 1.322219 -3.435948 -4.208924 -1.709069 1.981475 -5.691209 -2.773155 5.096116 -1.861511 4.053246 6.203310 0.118315 -2.130392 -2.072796 4.169034 0.092308 7.243937 7.647313 -4.945235 0.049580 0.878443 1.771635 2.103379 -0.075331 1.558650 -3.549965 2.096673 -4.265490 0.398484 -2.170905 -1.183671 1.647422 4.563625 -7.780208 -0.459405 1.569910 -0.183998 0.051370 0.225859 2.072385 4.111998 4.166124 -0.695827 4.232788 3.660265 0.320993 1.908547 0.160381 1.059515 0.048917 0.639842 -0.310467 -0.281686 -0.824425 -1.218694 -0.659521 0.376459 5.319894 6.214769 -0.561270 -2.414526 1.862428 1.604030 1.265502 1.565552 4.194695 0.035429 1.626587 3.224252 -6.565861 -0.102215 -9.477965 0.897486 -9.158169 -3.653878 0.478651 3.303313 1.007328 2.969467 -0.466915 7.502977 -0.565488 -2.777525 4.765094 5.777901 -4.211960 -1.025048 -1.030145 -2.073799 0.308360 -2.445182 1.793075 1.377068 1.827277 -4.454023 -3.172003 0.886655 0.652102 -3.011223 -3.354088 -0.189727 3.701470 -4.229495 -3.179977 -1.947570 3.352705 -0.642513 -8.089734 -2.105201 -3.533787 1.999777 0.803398 -3.527185 -4.081252 1.782878 1.165175 -1.260329 -2.548825 -0.285246 3.108825 4.094217 1.553108 -0.431301 2.622850 1.527370 7.845250 1.573746 -2.884220 0.181814 1.158515 -0.740894 2.588301 -2.494486 -1.007872 2.375537 -4.185437 0.535512 2.600907 -2.622305 -1.498191 3.465377 -0.604449 -0.533698 16.086662 -1.070319 5.757868 5.068460 -4.373791 1.358705 -2.365144 0.986144 2.316585 3.181864 2.347771 -7.282376 -3.940204 4.398207 7.271756 2.592290 -5.684463 -1.207370 1.994654 0.791382 -1.624190 2.379776 0.545281 0.484119 -2.712801 -0.525415 3.266621 9.011141 -3.091818 -0.330929 0.608859 3.564714 -0.507022 -4.716312 -0.970667 -4.527620 0.031950 2.742601 1.674692 2.541681 5.580387 -8.273115 4.173637 -0.605434 0.272569 3.605231 2.621438 -4.326809 -5.696263 -0.886534 2.005849 3.813426 -0.808985 1.281656 1.256532 -6.033546 0.273157 1.159420 0.758248 -3.612458 4.828114 0.414796 -2.225804 -1.840352 1.404213 -1.449081 -2.316192 -1.277694 4.082489 1.146446 -6.838930 3.958988 0.672872 -2.706905 0.592971 -1.557535 5.664640 -4.413649 -4.509317 3.342323 -2.051262 -2.541277 -1.566955 -1.328624 2.029630 1.647290 1.805648 -4.554054 -4.728068 4.740047 -1.671679 5.824586 2.831797 -1.076717 3.835396 -3.602379 -2.519184 -3.439528 -3.707057 1.179711 0.938680 -3.503690 -2.924546 -1.297786 3.991017 4.327849 -0.217773 -3.323422 -0.231632 4.742488 -5.653918 0.079965 1.586093 3.916209 -3.766399 2.002893 2.429225 -3.960394 1.439548 -3.445166 -0.636657 -3.164193 -2.789688 4.334463 -1.085432 1.979678 -0.075849 -0.396244 0.361130 2.424594 2.149678 0.365193 1.500945 5.853159 5.303220 -1.488893 -1.419781 -6.276544 3.334063 -5.529351 -5.226890 0.986194 0.709322 -3.053270 -1.366451 -0.482476 4.577903 3.336410 -2.703622 -2.804354 2.072141 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 0.041070 0.222315 0.384699 -0.099179 0.429065 0.024797 0.223576 0.369653 -0.461962 -0.495511 -0.073054 -0.645876 -0.735660 0.597749 0.013032 -0.016538 0.903434 0.293104 0.041021 -0.201245 -0.014751 -0.404722 0.731990 0.791306 -0.551894 0.286639 -0.081774 0.163299 -0.198375 0.688655 -0.167017 -0.782527 0.246736 0.075867 0.310795 -0.326860 -0.237915 -0.131086 -0.336729 -1.222101 -0.042596 0.693500 0.073023 -0.045163 0.181231 0.585161 0.903016 0.355030 -0.064807 0.537241 0.087006 -0.162394 0.347803 0.100669 0.312262 0.060091 0.267520 -0.214573 -0.598253 0.286239 -0.166265 -0.870608 -0.286651 0.371266 0.581015 -0.145096 -0.252279 -0.210026 -0.200796 0.136146 0.083055 0.299292 0.492670 0.065181 0.433595 0.065009 -0.090416 -0.600842 -0.038472 -1.767787 -0.698098 -0.413154 1.021484 0.462592 -0.010879 -0.415343 0.789829 -0.168524 0.188535 0.246754 0.872104 -0.411862 -0.304289 -0.243399 0.008018 0.238370 -0.257494 -0.182779 0.328111 -0.160766 -0.559659 -0.240058 0.530823 -0.158464 -0.298306 0.154300 -0.133589 0.582676 -0.894612 -0.156757 -0.944626 -0.004769 0.261681 -0.735093 0.089960 0.248001 0.070502 0.554886 -0.361016 -0.140317 0.371867 0.075744 -0.261730 -0.042715 -0.586281 0.809090 -0.059998 0.009199 0.328341 0.364408 0.277926 0.392339 0.593288 -0.161939 -0.033534 0.283725 -0.121938 0.077183 -0.134563 -0.252136 0.014685 -0.470748 0.079985 -0.107216 -0.457091 -0.078068 -0.550172 -0.071519 0.180996 0.821981 -0.224691 0.459497 0.094492 -0.528407 0.576790 -0.116933 -0.220793 0.015940 0.589340 0.420862 -0.116806 -0.282094 0.274325 0.787066 0.356846 -0.548272 0.069014 -0.080924 0.162592 -0.021520 0.462298 0.153768 0.385333 -0.386204 -0.056930 0.102882 1.086197 -0.278960 -0.793135 0.011779 -0.021892 0.203142 -0.464705 0.080639 -0.024186 -0.078132 -0.029704 -0.094780 0.147644 0.648474 -1.235523 0.697060 -0.245903 -0.347697 0.577288 -0.007932 -0.146344 -0.767205 -0.091104 0.444625 0.848832 0.374252 -0.114392 -0.139779 -0.573505 -0.098691 0.029466 0.296224 -0.308806 0.534871 -0.150969 -0.461476 -0.245387 -0.673447 0.008616 -0.084482 -0.353111 0.228769 0.592218 -1.280815 0.545390 0.011181 -0.317344 -0.086288 0.180647 0.201088 -0.478330 -0.723901 0.074807 -0.410863 -0.957351 -0.268799 -0.340815 0.119368 0.006548 -0.260310 -0.060991 -0.576862 0.894596 0.051018 0.584048 0.424983 -0.015958 0.869431 0.837755 -0.573721 0.020428 -0.365595 0.364919 -0.749756 0.025282 0.165469 -0.405573 0.309310 0.780643 0.164847 -0.041628 -0.450851 0.640575 -0.395809 -0.250393 0.572262 -0.144419 0.101505 0.567089 0.642118 -0.493233 -0.192666 -0.579998 -0.108487 -0.102169 -0.228576 0.160988 -0.635828 -0.084184 0.353074 -0.206496 -0.441258 0.174992 -0.136638 -0.304099 -0.259640 0.797707 0.774562 -0.675396 0.618691 -0.425770 0.409948 -0.643265 -0.317912 -0.181006 0.244161 -0.304530 -0.077811 0.101950 0.050743 0.089609 -0.436453 -0.437195 0.113719 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__maxProfit(int*, int) = -4.299125 -2.553070 -0.782546 -7.504618 4.839823 9.140815 2.396130 -7.414998 -7.664345 -3.480113 4.019840 -11.259774 -6.288054 9.899898 -4.222453 7.136328 11.253268 -1.094224 -4.863175 -3.982815 8.135384 1.921572 14.672121 14.477464 -10.314231 -0.004510 1.778901 4.456171 4.412111 -0.027504 3.635383 -6.507682 3.543353 -7.541942 0.156813 -2.665323 -2.156595 1.703224 7.647691 -14.497121 -1.109569 3.037320 -2.211876 0.048375 0.345927 2.467380 8.847649 8.350454 -0.591937 6.882429 7.286792 1.385928 3.511500 0.151870 2.219051 -0.904467 1.875747 -2.163930 -0.069572 -2.623894 -2.124750 -1.107320 0.129930 11.156101 11.749094 -0.582633 -4.653422 3.780359 2.586536 2.667617 2.648722 8.418429 -0.533377 4.799783 6.379173 -11.692895 0.726733 -15.341007 1.844632 -14.383323 -7.148878 0.667305 5.794306 3.708257 5.828120 -0.494621 14.870237 -0.985544 -5.380041 9.695284 11.472181 -7.925154 -1.694469 -2.189114 -4.195363 0.573590 -4.861193 4.113698 0.226811 4.466087 -8.772604 -4.913054 0.544935 1.449616 -6.220224 -5.894178 -0.654993 7.097967 -8.463096 -5.238226 -3.124354 6.906440 -1.157379 -16.603826 -6.886409 -6.629166 4.922047 0.749695 -6.142161 -7.901792 3.366910 2.991126 -1.759218 -4.856948 -0.687198 5.410327 8.714129 2.955325 -0.965757 5.719965 3.705924 15.622029 2.791655 -4.587156 0.044992 1.575484 -0.830201 4.940509 -3.185698 -0.791434 2.631804 -7.934861 1.205904 6.571145 -4.603105 -3.509843 3.882275 -1.356233 -0.782429 33.489074 -2.218498 11.272887 9.811809 -8.848967 0.879051 -5.241686 1.150561 4.174926 4.954999 5.098542 -14.448539 -7.553578 9.234084 14.247461 4.790761 -10.587400 0.472719 4.354304 0.905998 -4.057296 4.855855 1.043675 1.055014 -5.178181 -1.377778 7.559791 17.484561 -5.889372 -1.850246 2.048511 5.791197 -0.383057 -7.288418 -1.685011 -6.271680 0.071374 6.942069 3.326671 5.001906 10.930847 -13.645853 7.930004 0.010666 0.177999 7.296052 4.434641 -8.327387 -7.772181 -1.546620 4.484885 6.663174 -2.007282 1.267736 1.540995 -11.882678 0.591610 3.220716 1.276655 -6.847123 9.554762 1.518994 -4.458424 -4.437486 2.002980 -2.670173 -2.696678 -3.554391 7.746850 -0.361412 -13.227204 8.710516 1.638379 -5.246596 0.438913 -4.213723 11.504131 -8.652066 -9.143748 6.726059 -4.343580 -5.869844 -2.535774 -2.672459 3.823995 4.828450 4.227845 -10.325584 -8.007909 9.101060 -2.874283 11.392159 5.596270 -1.089180 7.460857 -7.812213 -4.523081 -6.432113 -8.276978 3.707620 3.029652 -7.966804 -5.232320 -2.744904 7.836869 8.210262 -1.544425 -7.070480 -0.517786 8.810654 -10.723392 -0.645644 2.336564 7.717872 -8.630839 3.634357 4.320823 -6.519509 2.853323 -6.804409 -1.635043 -7.160831 -6.668211 8.239889 -1.618514 4.353265 0.799197 -0.476153 0.202247 4.462783 3.608270 1.175023 3.369906 11.002480 9.910035 -2.873256 -2.865689 -12.867853 7.337854 -10.875457 -10.917632 3.041484 0.345573 -4.393719 -3.156250 -2.014992 9.122966 7.012614 -5.857209 -4.958667 4.316559 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__int const& std::max(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 0.063619 0.369438 0.549029 -0.165351 0.411209 -0.082035 0.204243 0.425304 -0.419839 -0.790770 0.004005 -1.019276 -1.118690 0.642523 -0.074063 -0.314444 0.926005 0.097044 0.034593 -0.316299 -0.106015 -0.304128 0.852682 0.932248 -0.800423 0.288585 -0.062356 0.297145 -0.003118 0.548992 0.125771 -0.933337 0.154979 0.426061 0.523366 -0.088651 -0.245574 -0.362222 -0.622439 -1.336843 -0.149566 0.975833 0.073627 -0.002377 0.281429 0.928064 1.167175 0.440496 -0.208704 0.488180 0.272973 -0.167869 0.439460 0.026850 0.197044 -0.495782 0.371934 -0.305990 -0.647018 0.331241 -0.109984 -1.027753 -0.449072 0.583725 0.764744 -0.153799 -0.302875 -0.322547 -0.128221 0.240292 -0.000664 0.460755 0.746010 0.343313 0.613614 0.337515 -0.043403 -0.807538 0.088850 -2.246495 -0.848358 -0.492709 1.362553 0.703597 -0.288490 -0.609589 0.974571 0.055269 0.189248 0.504260 1.127250 -0.200666 -0.324985 -0.297829 -0.107820 0.411853 -0.365348 0.029823 0.293757 0.069011 -0.665516 -0.057711 0.361423 -0.369966 -0.393074 0.384361 -0.217952 0.553347 -1.012101 0.196335 -1.059535 -0.029090 0.643744 -1.036961 -0.052954 0.264741 0.092225 0.586328 -0.359420 0.183734 0.326945 -0.137656 -0.294595 0.236883 -1.138161 0.976397 0.020702 0.104275 0.354737 0.594621 0.534201 0.195406 0.489008 -0.158670 -0.118078 0.214824 -0.101550 0.102690 -0.101112 -0.143638 0.314634 -0.384783 0.164257 -0.247148 -0.468943 -0.390203 -0.968841 -0.293644 0.209435 0.987065 -0.236573 0.584734 0.143341 -0.534418 0.590628 -0.136375 -0.344688 0.016117 0.607047 0.620259 0.170573 -0.297878 0.465467 0.997264 0.333511 -0.596279 0.389647 0.226965 0.118996 -0.285384 0.662163 0.191771 0.380042 -0.358974 -0.084674 0.390335 0.972255 -0.148760 -1.008396 -0.075160 0.189327 0.485051 -0.243720 0.248511 0.295278 -0.057901 0.080473 -0.000484 0.258656 0.745764 -1.615190 0.760167 0.166449 -0.207626 0.615339 -0.111980 -0.286179 -1.007481 0.101215 0.588594 0.753427 0.448645 -0.265651 -0.254016 -0.699383 -0.080784 0.129399 0.320941 -0.405692 0.654987 -0.255131 -0.338054 -0.443136 -1.007571 -0.082032 0.182972 -0.600795 0.286836 0.617898 -1.515512 0.762228 -0.087928 -0.430707 -0.537278 -0.087947 0.163002 -0.675755 -0.805902 -0.096166 -0.766265 -1.494321 -0.476714 -0.464160 -0.039612 -0.007720 -0.186944 -0.164032 -0.554574 1.211891 -0.052459 0.690878 0.511355 0.074582 1.063058 1.117144 -0.590199 0.052521 -0.439778 0.711851 -0.794464 -0.130527 0.458289 -0.428434 0.185901 0.881462 -0.112220 -0.091178 -0.454418 0.567551 -0.307387 -0.570198 0.491100 -0.360750 0.088279 0.841330 0.588432 -0.474534 -0.102626 -0.952987 -0.239111 -0.215916 -0.402748 0.139492 -0.692891 -0.145498 0.533065 -0.323384 -0.592329 0.235674 -0.206702 -0.432698 -0.219099 0.893822 1.033303 -0.840520 0.819531 -0.730479 0.572385 -0.833233 -0.549936 -0.091064 0.062320 -0.120029 -0.215772 -0.039303 -0.029556 0.215079 -0.651555 -0.669646 0.488761 +PE-benchmarks/permutations-of-a-given-string.cpp__permute(std::__cxx11::basic_string, std::allocator >, int, int) = -1.009552 -1.062559 0.237777 -2.185336 1.577338 1.028918 0.842098 -0.683476 -2.502578 -2.604084 1.059297 -3.426417 -3.191149 2.758393 -1.618666 0.757066 3.432067 -0.143086 -0.580914 -1.964666 2.282855 -0.690521 4.551248 4.459487 -4.102566 -0.042375 -0.264812 2.499516 1.729911 0.609430 2.843025 -2.321993 0.685316 -0.871767 1.776490 -1.280973 -0.406070 0.943200 -0.138491 -5.117446 -0.876085 2.653955 -0.094226 0.971727 0.902960 2.936632 2.664731 2.587524 -1.385643 3.177294 2.744307 0.165914 1.969832 0.110824 -0.405258 -1.725093 -0.045755 -1.282518 -0.754282 0.270692 -1.016546 -2.486930 0.382043 3.363732 4.376211 -0.855605 -1.196856 0.186099 0.385510 1.518557 1.465609 3.059186 0.604252 0.655268 3.303258 -2.174669 -0.294885 -5.868684 1.148949 -7.842325 -2.438933 -1.041216 3.929945 2.589918 0.411983 -1.004109 5.084960 0.346214 -1.220451 4.534281 3.164976 -0.910295 -0.459432 -1.393328 -1.620289 0.719872 -1.813961 0.573506 0.524888 2.923232 -2.509988 -0.608464 -0.346295 -0.868011 -1.737596 -1.370052 -1.434086 2.518767 -4.090274 -0.594753 -2.462222 2.485883 0.976668 -5.236435 -1.571258 -2.133608 1.461872 0.599105 -1.049289 0.420314 1.066976 0.178381 -0.562401 0.342868 -2.392089 2.665641 1.918755 0.705599 -0.106651 2.741235 0.250806 2.779149 1.389349 -0.997945 -1.058138 1.476596 -0.265298 1.367745 -1.408988 0.189601 2.865089 -2.373974 0.187484 0.050589 -1.164242 -2.592902 -0.706787 -1.446081 0.505706 8.803651 -0.521146 3.304629 2.913210 -1.946056 1.012577 -0.303047 1.217282 2.272908 2.286278 1.151881 -2.267949 -2.247846 2.333854 4.119336 1.119903 -3.078948 0.076803 1.800008 0.830705 -0.983784 1.490878 0.733710 -0.079176 -1.352296 0.071385 1.298319 4.224972 -0.765552 -0.708928 0.040372 2.791579 -0.660725 -1.915719 0.063944 -1.164400 -0.413450 1.829061 0.938102 1.028980 3.273809 -5.616669 2.625694 0.861434 1.555353 1.460243 0.452346 -1.670111 -5.212518 -0.473128 0.892693 2.133420 -0.221402 -0.109887 0.711738 -3.699834 1.035772 0.958308 1.177825 -2.168265 3.233157 -0.724513 -0.612345 -1.763171 -0.900205 -1.360991 0.492514 -1.460993 1.997085 0.899400 -4.415561 1.958040 -0.956991 -2.267298 -0.601373 -0.253649 3.180058 -2.743746 -2.867057 1.330678 -2.182920 -4.627800 -2.703402 -1.024550 0.803486 0.736513 -0.167185 -2.483798 -2.673270 3.991945 -1.757636 3.140566 1.939692 -0.540422 3.925988 -0.067807 -2.043751 -1.879081 -2.301560 1.563187 -0.706032 -1.435731 -0.451693 -0.578981 1.458939 3.201547 -0.261625 -1.443961 0.420149 3.858116 -2.208424 -1.721073 1.166219 0.579207 -0.927842 3.381893 1.636122 -2.650590 0.365558 -3.332105 0.302839 -0.997921 -1.391312 2.912716 -1.681114 0.997496 0.301945 0.263423 -0.946026 1.477929 1.118897 -0.310356 -0.063958 4.847084 4.069761 -1.487337 0.497391 -3.702198 2.175084 -3.511403 -2.400404 -0.816675 0.388111 -0.023313 0.126386 -0.720794 2.484998 2.968019 -2.519211 -2.245734 1.860624 +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.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/permutations-of-a-given-string.cpp__main = -0.574301 0.244402 1.787441 -1.510456 2.671520 0.386356 1.114554 0.472791 -1.646286 -2.229149 -0.135834 -1.613864 -3.984113 2.317995 -0.795808 0.688479 2.585951 -0.355019 0.155920 -2.286614 2.429176 -2.595827 3.915148 2.618973 -4.444024 0.541076 0.316741 2.649202 1.218938 2.640774 0.589962 -1.433869 0.302095 -0.296529 3.246375 -1.261166 -0.073178 0.123869 -1.505055 -4.891680 -1.204782 2.843929 -0.156949 1.057400 0.799339 4.019057 2.933402 2.394200 -1.845253 2.613237 2.349274 -1.031343 2.217324 0.439394 -0.232433 -0.462444 1.399060 -0.415976 -1.674967 0.838062 -0.928610 -4.131220 0.914330 2.485982 4.153700 -1.834128 -0.807066 0.873327 -0.465078 1.171970 0.747770 2.807975 1.198540 -0.171377 4.093933 -1.926409 -0.442686 -5.093716 0.587450 -8.157882 -3.097008 -2.918670 2.792801 1.324772 1.012359 -1.495878 5.314030 0.555542 -0.259364 2.426804 2.801689 -1.649524 -0.192801 -2.593936 -0.876581 0.229006 -1.917321 -0.925596 1.620068 1.067872 -2.168755 -0.945783 1.266366 -0.909397 -1.674341 -1.137422 -2.603206 2.994968 -3.585573 -1.321042 -4.278718 1.121969 0.036610 -4.289438 0.936552 -0.936716 1.423469 0.668877 1.034384 0.428247 1.016154 1.589752 -0.899847 -0.617996 -2.618690 4.103671 2.053870 -0.540392 1.046627 2.390232 -0.312777 1.462633 3.705421 -0.183268 -2.723813 2.054681 -1.104253 0.842345 -1.188030 0.595873 3.192444 -2.045433 -1.129149 -0.429893 -0.474674 -0.795356 -0.125972 -1.914334 1.507253 5.720484 -0.610626 1.647152 0.646235 -1.927251 3.099570 0.544531 0.180794 2.413476 2.640993 0.796071 -2.944163 -2.118983 1.738185 3.043275 0.736702 -3.462249 -0.984288 0.259675 0.928601 -0.924821 0.968788 1.478599 0.290175 -1.087416 0.136936 -0.851784 4.648477 -1.797624 -2.449315 1.081770 1.321393 -1.667306 -3.479882 -0.460569 -0.962825 -1.777046 -0.189165 0.259001 0.735311 2.953643 -5.589244 2.484470 -0.410070 -0.615820 2.530396 -1.372822 0.228706 -5.602437 -0.178610 1.127912 2.399363 0.286520 -0.559842 -0.360502 -3.278612 1.754205 -0.125844 1.526733 -1.493724 2.906677 -1.764303 -1.177901 -1.827000 -2.420229 -1.216839 0.385622 -1.011508 0.768915 1.550555 -5.077677 2.016321 -1.781379 -1.773280 0.808195 1.184399 2.438727 -1.646050 -3.021690 1.319692 -1.221314 -3.925324 -3.622373 -0.792584 1.006417 -0.354945 -1.744398 -1.947475 -3.801031 3.365036 -1.717237 2.032049 1.730329 0.417625 4.482262 2.698041 -3.141760 -1.888831 -1.709245 0.628166 -1.332254 -0.399285 -0.881747 -0.770978 1.496066 3.288618 0.388793 1.047791 -0.974696 4.066647 -3.001194 -2.150758 2.060082 0.289146 -0.123746 3.190201 2.397648 -1.649350 -1.515127 -3.235738 0.254300 -0.478769 -1.092678 1.977151 -2.833287 -0.101370 1.218553 0.091650 -1.486905 1.295092 0.474915 -0.858956 -2.501685 5.397541 5.312595 -3.157790 0.809958 -2.197050 2.070593 -2.758899 -0.707845 -1.466043 0.723002 0.559222 0.826022 0.952080 1.663827 1.929806 -2.591725 -1.568935 -0.886069 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.129103 1.034879 1.025536 -0.864980 2.233490 0.957810 0.460824 0.091281 -0.599626 -1.541747 -0.531574 -1.521446 -2.696167 1.434493 -0.780282 0.251771 2.135884 -0.271794 0.544534 -1.106974 1.165236 -0.871248 2.842689 1.783821 -3.039150 0.398398 0.846137 1.466797 0.503991 1.921002 0.272320 -2.016911 0.515651 -0.184574 1.699754 -0.936773 -0.245482 -0.568930 -0.706045 -3.422592 -0.822939 1.384917 -1.084250 0.930457 0.770201 2.291611 2.893340 1.409432 -1.488070 1.759903 1.317729 0.139263 1.376175 0.305586 -0.585307 -0.390433 0.969048 -0.390729 -1.031062 0.527456 -0.782816 -2.328598 0.061586 1.811853 2.747820 -0.915903 -0.669498 0.651195 -0.406324 0.512862 0.092709 2.050223 1.147956 1.086733 2.377567 -1.008600 -0.397773 -3.432296 0.025697 -5.133861 -1.868944 -2.256326 1.078701 0.903451 0.509441 -0.646284 3.366401 0.510706 0.521685 1.789024 2.512222 -1.184822 -0.139506 -1.771759 -0.578670 0.233522 -1.070619 -0.309813 0.590623 0.464505 -1.362518 -1.461832 0.458575 -0.762381 -1.189848 -0.806775 -1.579038 1.812295 -2.647516 -0.865566 -3.133244 0.137725 -0.266365 -3.291038 -0.543215 0.060344 1.290898 0.778485 0.670546 -0.601917 0.708357 1.332137 -0.489563 -0.433295 -0.662988 2.542997 1.597349 -0.150994 0.586277 1.442103 0.474003 1.576775 2.451717 0.067110 -1.575591 0.971665 -0.423262 -0.052134 -0.954284 0.610235 1.401655 -1.540421 -0.047911 0.792880 -0.644257 -0.730657 -0.415722 -2.020610 1.153299 4.684123 -0.782563 1.057854 0.352907 -2.061971 1.201918 0.124934 -0.354088 1.075483 1.510805 1.797373 -1.874121 -1.150445 1.210570 2.062905 0.501785 -2.442208 -0.180599 0.075507 0.559230 -0.602495 0.631915 1.118491 -0.141491 -0.743407 0.185834 0.064087 3.365265 -1.217198 -2.424536 0.577887 1.252518 -0.602187 -1.802835 -0.181217 -0.778861 -1.090594 0.856805 0.109499 0.211955 2.031347 -4.173558 1.585589 0.322075 -0.498051 1.325206 -0.424121 0.060055 -2.726431 0.325176 1.470092 1.153872 0.423759 -0.045515 -0.729089 -1.990238 0.951458 0.474711 1.401453 -1.003560 1.917083 -0.623692 -1.340886 -1.495125 -1.205291 -0.482835 0.009868 -1.081977 0.727448 0.820168 -4.317688 1.744743 -1.012077 -1.328942 0.495127 0.054490 1.961729 -1.625971 -2.319752 0.917925 -1.379829 -2.477483 -1.505597 -0.616502 0.515895 0.594537 -0.296149 -1.539093 -2.696448 1.681925 -0.614344 0.899875 1.512195 0.844534 3.158117 0.376763 -2.026533 -1.463439 -1.442238 1.276783 -0.488172 -0.146082 -0.777302 -0.648826 1.111488 2.981841 -0.160523 0.234554 -1.281155 2.042018 -2.223824 -0.896118 1.350564 0.598775 -0.524630 1.540063 1.391266 -0.784680 -1.033423 -1.745327 0.505522 -0.549063 -0.885667 0.797816 -2.498021 -0.582840 1.451406 -0.435671 -1.420881 1.001506 -0.003401 -0.284798 -1.330679 2.711614 3.461883 -2.276229 0.917853 -1.437438 1.528258 -2.638783 -1.288024 -0.562289 -0.274087 0.572280 0.177472 0.297714 0.814303 0.931574 -1.249896 -0.933770 -0.508055 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/permutations-of-a-given-string.cpp__std::char_traits::length(char const*) = -0.047959 0.074187 0.150852 -0.097095 0.169069 -0.040761 0.085106 0.002587 -0.187054 -0.288537 0.020654 -0.325482 -0.337677 0.278622 -0.097826 0.057152 0.396993 0.088617 0.021521 -0.205347 0.083720 -0.228953 0.444247 0.449787 -0.380770 0.072168 0.097082 0.203905 0.117136 0.184709 0.039327 -0.273047 0.145170 -0.045471 0.159462 -0.183221 -0.017049 -0.004840 -0.071148 -0.570688 -0.049943 0.136265 0.077063 0.033706 0.037695 0.346494 0.380087 0.245882 -0.102309 0.299784 0.227428 -0.006760 0.151387 0.058174 0.027454 -0.104148 0.158474 -0.180372 -0.188637 0.087118 -0.019847 -0.457826 -0.071060 0.290635 0.418813 -0.078543 -0.056380 0.014940 -0.070522 0.097232 0.077826 0.187622 0.125286 0.112548 0.238713 -0.220717 0.025316 -0.583535 -0.051627 -0.997705 -0.308667 -0.213211 0.394175 0.157394 0.046081 0.035571 0.430770 0.095797 0.045847 0.192963 0.424459 -0.227646 -0.130408 -0.073812 -0.055988 0.175175 -0.217742 0.054169 0.086398 0.118905 -0.245923 -0.163811 0.243737 -0.056587 -0.183833 -0.035782 -0.105422 0.225626 -0.503444 -0.105493 -0.395801 -0.054455 0.083527 -0.463438 0.115922 -0.038266 0.278618 0.167500 -0.075430 -0.083781 0.080283 0.070455 -0.045615 -0.036890 -0.362809 0.281679 0.087056 0.029298 0.111920 0.161313 0.130608 0.299637 0.230672 -0.118414 -0.111806 0.119691 -0.132948 0.058125 -0.161478 -0.089342 0.195626 -0.273149 0.107635 0.008561 -0.193854 -0.201491 -0.011250 -0.121624 0.125977 0.490782 -0.010801 0.233741 0.174870 -0.272173 0.107471 -0.146694 -0.048953 0.146156 0.264172 0.160684 -0.062753 -0.204702 0.126690 0.392930 0.160782 -0.277092 -0.096596 0.025423 0.091004 -0.038347 0.158905 0.100618 0.020184 -0.164950 -0.019937 0.132903 0.438591 -0.092518 -0.110715 0.015050 0.074480 -0.030252 -0.313386 0.008641 -0.049450 -0.011005 -0.004040 0.044549 0.057003 0.340731 -0.721745 0.296792 -0.025945 -0.002619 0.172062 0.003863 -0.158386 -0.514861 0.089499 0.205575 0.287825 0.054183 0.090285 0.031890 -0.341656 -0.023180 0.021137 0.137715 -0.188958 0.258789 0.005404 -0.204364 -0.222308 -0.145654 0.019265 -0.032883 -0.098900 0.174861 0.247848 -0.684451 0.282926 -0.136853 -0.236388 -0.020933 -0.025848 0.214408 -0.351482 -0.318678 0.074136 -0.227878 -0.381874 -0.222255 -0.096389 0.084825 -0.084467 -0.102066 -0.080190 -0.190088 0.318211 -0.092154 0.164441 0.198305 0.031372 0.396850 0.091342 -0.221983 -0.120684 0.003919 0.076285 -0.324539 -0.070456 0.109996 -0.112287 0.172309 0.465811 0.024333 -0.047238 0.063015 0.319132 -0.261731 -0.238387 0.208970 0.140766 -0.027509 0.336657 0.220488 -0.302267 -0.074731 -0.298366 -0.056287 0.012676 -0.205817 0.186731 -0.268338 0.031388 0.182253 -0.041022 -0.173378 0.219917 -0.014112 -0.049391 -0.093159 0.413796 0.496524 -0.267519 0.162747 -0.306802 0.122478 -0.404969 -0.249946 -0.030619 0.153080 -0.080969 -0.000644 -0.032766 0.139574 0.119721 -0.176340 -0.202373 0.069934 +PE-benchmarks/permutations-of-a-given-string.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -0.339036 1.281610 1.549463 -1.414356 3.335246 1.066634 1.069069 0.820199 -1.430988 -3.032192 -0.588773 -3.137955 -4.911965 2.484752 -0.851227 0.677050 4.345654 -0.107591 0.524551 -1.952775 1.982649 -1.979029 5.173176 4.050906 -5.140360 0.817649 1.174346 2.606242 0.841609 2.426246 0.239432 -3.189952 1.152106 -0.747919 2.988991 -1.702428 -0.405095 -1.008260 -1.201424 -6.492636 -1.326311 2.709040 -1.239931 1.127558 0.968083 4.465936 5.054618 2.781871 -2.538881 2.988928 2.558636 -0.560359 2.311173 0.628964 -0.849429 -0.766339 1.017222 -0.419986 -2.112610 0.736836 -0.951471 -4.938775 0.066215 3.115910 4.809865 -1.702474 -1.257756 1.170500 -0.235107 0.762923 0.464047 3.398652 2.396274 0.968744 4.429697 -2.264156 -0.807065 -6.485494 0.017521 -10.552966 -3.915838 -3.820918 3.237130 1.226917 1.085178 -1.512351 6.230103 0.361197 0.947037 3.077571 4.400591 -2.699710 -0.748444 -3.082410 -0.714682 0.958716 -2.323628 -0.537822 1.905523 0.610449 -2.824112 -2.063567 1.590081 -1.163262 -2.218114 -1.722206 -2.293749 3.185282 -4.553457 -1.678751 -5.977167 0.326992 0.214486 -5.867690 0.081395 0.171443 2.205514 1.665786 0.429393 -0.995062 1.075357 1.673349 -0.955882 -0.896073 -2.010438 4.693094 2.520059 -0.231179 1.742119 2.749773 1.089144 3.136697 4.735970 -0.357150 -2.757910 1.975179 -1.435401 0.388851 -1.729626 0.264254 3.091507 -3.072773 -0.150179 0.868180 -1.580503 -1.254234 0.005683 -2.728785 1.871372 8.155556 -0.881631 2.276994 1.150470 -3.362392 2.995663 -0.511849 -0.756041 2.027247 3.166019 2.647107 -3.525929 -2.212610 2.070976 4.356426 1.290367 -4.570637 -0.392739 0.471844 1.363002 -1.361809 1.262918 2.001083 0.796228 -1.523194 0.232658 0.897015 6.122441 -2.198409 -3.608677 0.906278 2.101276 -0.741292 -4.078142 -0.386398 -1.578928 -1.723182 1.090512 0.447025 0.609177 3.921077 -7.177086 2.906795 -0.110772 -0.691953 2.841870 -0.325071 -0.515472 -5.743593 0.631519 2.515580 2.828513 0.705681 -0.039800 -1.001542 -3.736021 1.154986 0.739140 2.176372 -1.778060 3.508086 -1.402785 -1.996272 -2.397680 -2.602442 -0.864496 -0.152883 -1.419744 1.516453 1.888137 -7.350956 3.285397 -1.758697 -2.688986 0.540941 -0.169717 3.330571 -3.268726 -4.216654 1.828427 -2.302775 -4.656668 -2.945832 -1.171277 1.189096 0.651435 -1.261676 -2.294346 -4.852392 4.222024 -0.866589 2.469620 2.610628 0.925051 5.854169 1.638459 -3.712153 -2.398935 -2.434784 1.423966 -1.766168 -0.792403 -1.411061 -1.285277 2.072772 5.265412 -0.282336 0.641098 -1.576955 3.768482 -4.449279 -2.017940 2.639059 1.635093 -0.675383 3.461156 2.830362 -2.315232 -1.663548 -3.607482 0.459204 -0.608748 -2.043969 1.667419 -4.420582 -0.565765 2.678774 -0.792453 -1.945463 1.826579 0.093630 -0.517168 -2.450368 5.310843 6.556730 -4.007995 1.447889 -3.214010 2.657336 -4.763129 -2.527672 -0.706480 0.467433 0.286208 0.175478 1.223594 1.465212 1.513395 -2.926239 -2.330082 -0.460643 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.121920 0.285697 0.408187 -0.646375 0.864158 0.471727 0.001535 0.004627 -0.441503 -0.585623 -0.343180 -0.641559 -0.877482 0.650457 -0.283563 0.224817 0.802941 -0.095795 -0.028022 -0.369115 0.571426 -0.188184 0.849392 0.468034 -1.030773 0.119872 0.307213 0.796978 0.180998 0.910377 0.073339 -0.884425 -0.208248 0.158004 0.693031 -0.419042 0.045540 0.143565 -0.234130 -1.274028 -0.230024 0.716396 -0.169291 0.290655 0.198767 0.315660 0.865491 0.563155 -0.487044 0.398729 0.736403 0.415646 0.363196 0.079622 -0.245737 0.049752 0.455412 -0.496089 -0.231613 0.140618 -0.112284 -0.546620 0.080199 0.664938 0.975357 -0.366399 -0.312525 0.278019 -0.008871 0.208819 0.030994 0.657856 0.060103 0.286685 0.622503 -0.351982 -0.066375 -1.214519 0.461952 -1.506904 -0.565034 -0.792981 0.261276 0.880767 0.065571 -0.260176 1.430817 -0.133868 0.021688 0.685681 0.872060 -0.319866 0.003900 -0.935772 -0.397859 0.157585 -0.401876 -0.471810 -0.107456 0.608256 -0.313467 -0.517786 0.000000 -0.351307 -0.481878 -0.198865 -0.671676 0.777309 -1.029267 -0.296661 -0.983521 0.614019 0.000000 -1.098790 -0.469618 -0.250981 -0.049622 -0.057731 0.239731 -0.304501 0.252623 0.462761 -0.362118 0.063624 -0.612451 0.790819 0.603272 -0.403335 0.073435 0.432920 0.227292 0.518929 0.462623 -0.294757 -0.705825 0.596328 -0.004165 -0.220542 -0.575861 0.286603 0.267171 -0.638998 -0.067273 0.349515 -0.207592 -0.204497 -0.538234 -0.917981 0.421696 2.050129 -0.300438 0.191486 0.047323 -0.635705 0.604691 0.284744 -0.246332 0.353672 0.300556 0.612614 -0.564895 -0.546453 0.558947 0.805971 0.253234 -0.498610 -0.092301 0.008733 0.087317 -0.081087 0.254887 0.467026 -0.381694 -0.051733 -0.139618 -0.131090 1.278044 -0.112958 -0.688729 0.359348 0.794128 -0.518183 -0.479176 -0.106252 -0.583019 -0.484377 0.412174 0.003402 0.363889 0.864003 -1.655478 0.679700 0.405061 -0.241311 0.401959 -0.440328 0.295127 -1.003500 -0.098512 0.576438 0.684530 -0.239794 0.248192 -0.326794 -0.820926 0.354926 0.244458 0.545144 -0.450726 0.570288 -0.118208 -0.419003 -0.408281 -0.248264 -0.529672 0.005239 -0.470888 0.237787 0.294050 -1.416399 0.776428 -0.401064 -0.080756 0.274805 0.030404 0.744227 -0.593252 -0.709667 0.483566 -0.088072 -0.644064 -0.276468 -0.154391 0.520811 0.049863 0.050579 -0.566736 -1.006935 0.426269 -0.148519 0.321219 0.423377 0.241353 0.599820 0.199229 -0.456838 -0.407251 -0.525919 0.355423 -0.008339 0.156600 -0.181724 -0.085429 0.434455 0.907066 0.039332 -0.052055 -0.386567 0.816593 -0.406360 -0.238840 0.318701 -0.335244 -0.364550 0.429477 0.451395 -0.347001 -0.486583 -0.907868 0.476138 -0.263885 -0.340779 0.298659 -0.789756 -0.203993 0.726734 -0.243857 -0.638245 0.501495 0.256650 -0.387460 -0.453664 1.276724 0.631981 -0.337700 0.513251 -0.669793 0.500802 -0.936685 -0.351132 -0.392719 -0.206899 0.037957 0.065565 -0.022947 0.395001 0.181564 0.152600 -0.237687 -0.352285 +PE-benchmarks/permutations-of-a-given-string.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/overlapping-subproblems-property.cpp___initialize() = -0.439206 -0.545558 -0.183173 -0.730837 0.330082 0.382960 0.236918 -0.475595 -1.082788 -0.320413 0.232262 -1.013857 -0.265690 1.048977 -0.294640 0.869688 1.335367 0.403844 -0.440771 -0.281343 0.844972 -0.556050 1.172997 1.457615 -0.722521 0.021385 -0.144292 0.478862 0.151143 0.447268 0.212817 -0.593953 0.157417 -0.863944 0.244232 -0.843994 -0.222820 0.820486 0.719259 -1.702175 0.037234 0.660974 0.650099 -0.064920 0.046835 0.153593 0.585671 0.743137 -0.033998 0.777959 0.531836 0.029285 0.532002 0.073678 0.376632 0.503469 0.171699 -0.191631 -0.160768 -0.001330 -0.334718 -0.274334 0.403755 0.905270 1.137773 -0.075242 -0.444160 0.167202 0.245421 0.260924 0.483778 0.660805 -0.371709 -0.094589 0.421406 -1.285949 0.236863 -1.641392 0.382313 -1.730728 -0.562244 0.122331 0.718889 0.709719 0.557149 -0.098534 1.419706 -0.501253 -0.473637 0.865564 0.922529 -0.720744 -0.227292 -0.317288 -0.546995 0.034956 -0.342623 -0.222569 0.332374 0.567812 -0.768027 -0.536362 0.317213 0.245039 -0.508821 -0.444232 -0.029352 0.795170 -0.987331 -0.835166 -0.371267 0.764267 -0.200486 -1.292445 -0.008110 -0.924716 -0.261775 0.137309 -0.815593 -0.827197 0.493144 0.238121 -0.300087 -0.289982 -0.590046 0.690023 0.260141 0.058989 -0.175130 0.312613 -0.049059 1.209050 0.152848 -0.716699 0.132925 0.526800 -0.285890 0.317963 -0.628173 -0.490656 0.410622 -0.975647 -0.325108 0.175984 -0.582991 -0.034325 0.406050 0.015336 -0.045743 2.849365 -0.261487 1.013365 0.871335 -0.759656 0.752459 -0.012428 0.349745 0.410352 0.721101 0.294056 -1.342878 -0.834195 0.644104 1.313484 0.589031 -0.612766 -0.596803 0.125102 0.190673 0.280731 0.400216 0.004804 -0.101740 -0.617275 -0.144256 0.092379 1.846745 -0.342149 0.392721 0.108921 0.522363 -0.560751 -1.207479 -0.179838 -1.314919 -0.018072 -0.080505 0.108246 0.460496 1.093629 -1.451718 1.036788 -0.476270 0.052677 0.744690 0.133945 -0.549469 -1.728807 -0.515333 0.261091 1.113730 -0.355126 0.208040 0.357916 -1.122127 0.031533 0.038231 0.306558 -0.757285 0.929593 -0.065521 -0.520283 -0.175696 0.348619 -0.393036 -0.611532 -0.158026 0.701725 0.516797 -0.641039 0.631998 0.158252 -0.286504 0.381069 0.266516 0.658905 -0.754165 -0.811339 0.595261 -0.057609 -0.303031 -0.319729 -0.266801 0.596718 0.068298 -0.327888 -0.649593 -0.911876 0.790117 -0.467806 1.115045 0.495079 -0.425778 0.446987 0.218176 -0.375546 -0.496404 -0.410514 -0.521049 -0.201500 -0.285487 -0.622597 -0.265406 0.811841 0.833501 0.308770 -0.471620 0.218000 1.276406 -0.404407 -0.015581 0.388638 -0.239951 -0.530041 0.295248 0.576665 -0.992607 0.116636 -0.722522 0.150554 -0.375796 -0.252275 0.911617 -0.287307 0.337918 -0.125872 -0.079460 0.017024 0.399582 0.640485 -0.100750 0.267955 1.500127 0.253810 0.128520 -0.051247 -0.972105 0.414498 -0.947714 -0.484123 -0.323064 0.671786 -0.801309 -0.042628 0.134386 0.927551 0.611129 -0.211839 -0.361477 0.147147 +PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -1.051476 -1.290328 -0.271369 -1.940155 0.744565 1.656657 0.510501 -1.871217 -2.155679 -0.752507 1.212191 -2.996344 -0.943842 2.246321 -1.059984 1.784492 2.438002 -0.107414 -1.330338 -0.830712 1.571355 0.650799 3.060524 3.303760 -1.842974 -0.081764 -0.380808 1.013721 0.938013 -0.215317 1.254697 -1.410224 0.575286 -1.449072 -0.084379 -0.521351 -0.639039 1.049139 1.979718 -3.078954 -0.093408 1.239358 0.275494 -0.010432 0.306179 0.284888 1.355501 1.753009 0.316906 1.794373 1.469966 0.315124 1.046292 -0.051618 0.719757 -0.301196 0.562585 -1.130576 0.009574 -0.519828 -0.595024 0.293113 0.103648 2.381042 2.478407 -0.038542 -1.239563 0.383410 0.971928 0.717287 0.983446 1.873962 -0.688597 0.868044 0.943011 -2.395766 0.634694 -2.976429 0.853608 -2.622303 -1.439597 0.935601 1.753862 1.677546 0.983534 -0.314892 3.164162 -0.445688 -1.767075 2.077775 2.204965 -1.320474 -0.363789 0.003822 -0.960872 -0.033754 -0.858320 0.772518 -0.087624 1.736036 -1.866181 -0.418672 -0.045132 0.193641 -1.228844 -0.778829 0.134040 1.498021 -1.837157 -1.071250 0.045944 2.286864 0.077400 -3.381363 -1.485315 -1.847167 0.291947 0.049495 -1.901096 -1.306043 0.947219 -0.022744 -0.509240 -0.407213 -1.102528 0.982429 1.610635 0.815696 -0.612229 1.477594 0.579567 3.232952 -0.399201 -1.360669 0.461869 0.436424 0.169987 1.393716 -0.613415 -0.392233 0.267105 -1.667838 0.107559 0.974166 -1.039213 -0.757796 -0.036372 0.204434 -0.656434 7.081850 -0.597510 2.814657 2.606797 -1.542547 0.128922 -0.930086 0.815342 0.763529 0.892063 0.848977 -2.698824 -1.717082 2.217108 3.198128 1.083169 -1.876877 0.266455 1.352653 0.218474 -0.613673 1.266651 0.050293 0.153584 -1.163366 -0.307379 1.353817 3.651072 -0.740085 0.188790 0.184544 1.305242 0.008271 -1.175111 -0.266792 -1.434370 0.191475 1.302400 0.910852 1.101221 2.306091 -2.851159 1.885014 0.295242 0.497195 1.806265 0.973950 -2.051779 -2.129319 -1.083126 0.533828 1.547728 -0.790018 0.292757 0.727136 -2.567427 0.145070 0.594430 0.073883 -1.635558 2.039771 0.389813 -0.657313 -0.477242 0.547160 -0.707083 -0.488243 -0.940806 1.888341 0.349054 -2.069687 1.475478 0.679291 -1.027508 -0.083946 -0.752610 2.408011 -1.676582 -1.463473 1.224081 -1.086378 -1.495557 -0.557509 -0.634938 0.595151 0.775055 1.071415 -2.209848 -1.080948 2.146306 -0.903274 2.785174 1.124089 -0.877731 0.931750 -1.304201 -0.698606 -0.831142 -1.861909 0.523395 0.632956 -1.516488 -0.625397 -0.493521 1.545153 1.263130 -0.178661 -1.882144 0.216978 1.924095 -1.674318 0.102258 0.314839 0.655716 -1.851347 0.877489 0.799014 -1.566446 1.214647 -1.543792 -0.424004 -1.788888 -0.940454 2.151491 0.245212 1.093296 -0.476290 -0.112181 0.113987 0.825197 1.072244 -0.067139 1.249698 2.651421 1.388843 0.294838 -0.447841 -2.882087 1.449200 -2.028373 -2.090334 0.415100 0.181458 -1.442050 -0.719185 -0.645327 2.189460 1.902740 -1.230993 -1.276637 1.601772 +PE-benchmarks/overlapping-subproblems-property.cpp__main = -0.044082 0.070186 0.467364 -0.244529 0.246952 -0.262432 0.166318 0.296231 -0.426068 -0.684023 0.100070 -0.783671 -0.834206 0.565268 -0.191584 -0.248266 0.791184 0.176322 -0.007737 -0.377005 0.030123 -0.352386 0.741405 0.825829 -0.721453 0.096991 -0.041272 0.436879 0.236506 0.322259 0.255144 -0.586503 0.144930 0.291455 0.473271 -0.207078 -0.040644 -0.114912 -0.536013 -1.079312 -0.083564 0.651667 0.168135 0.029639 0.196089 0.944400 0.741429 0.439986 -0.244820 0.432143 0.404834 -0.104751 0.297736 0.046781 0.046614 -0.503404 0.289260 -0.243501 -0.508798 0.249439 -0.066304 -0.929298 -0.239902 0.541860 0.763710 -0.124141 -0.118998 -0.245908 -0.021234 0.281693 0.179753 0.292616 0.503775 0.185385 0.532409 0.086237 -0.026065 -0.992637 0.049213 -2.116429 -0.606750 -0.387914 1.210504 0.444635 -0.315051 -0.358193 0.757485 0.187293 0.091328 0.535911 0.850182 -0.099041 -0.319390 -0.274183 -0.161867 0.438187 -0.412881 0.060904 0.320501 0.303813 -0.513758 0.004605 0.237847 -0.282057 -0.286641 0.271297 -0.195840 0.496763 -0.899853 0.159865 -0.800693 0.053324 0.580418 -0.896049 0.095125 -0.024995 0.312001 0.389467 -0.237023 0.305778 0.188063 -0.102097 -0.201010 0.307462 -1.054350 0.770102 -0.009153 0.113819 0.206932 0.468943 0.300245 0.103298 0.356491 -0.230872 -0.160719 0.225072 -0.242932 0.102723 -0.286015 -0.150967 0.573717 -0.355480 0.174714 -0.277476 -0.391092 -0.514982 -0.530523 -0.183654 0.258250 0.840106 -0.073630 0.505274 0.238485 -0.361459 0.408314 -0.058351 -0.080916 0.163880 0.514090 0.300528 0.172113 -0.335506 0.299339 0.769458 0.315622 -0.522439 0.160389 0.157278 0.122730 -0.179431 0.407913 0.214461 0.100101 -0.280375 -0.064039 0.319664 0.636917 -0.036426 -0.653945 -0.109497 0.244960 0.208650 -0.303441 0.175810 0.281907 0.027779 0.012515 0.066662 0.230176 0.661722 -1.496457 0.625146 0.218009 0.080922 0.417033 -0.116851 -0.300166 -1.127578 0.112030 0.400165 0.620192 0.299017 -0.188472 0.031283 -0.602955 -0.035301 0.081858 0.298845 -0.287504 0.453362 -0.161175 -0.174303 -0.426261 -0.721711 -0.083936 0.216358 -0.382686 0.279347 0.454084 -1.291447 0.570240 -0.259426 -0.410443 -0.422939 -0.068813 0.169082 -0.675028 -0.623447 -0.087132 -0.560823 -1.235901 -0.639180 -0.266012 0.053295 -0.170786 -0.160998 -0.100390 -0.425724 0.932285 -0.247048 0.484632 0.351440 -0.005855 0.909046 0.812205 -0.374620 -0.095182 -0.167181 0.446821 -0.699028 -0.154709 0.465999 -0.209580 0.165382 0.734555 -0.107426 -0.078060 -0.082086 0.588896 -0.264492 -0.635600 0.390136 -0.199641 0.122165 0.854833 0.462687 -0.625152 -0.102054 -0.781102 -0.235856 -0.028606 -0.352592 0.251712 -0.496286 0.034409 0.310828 -0.080852 -0.439728 0.268919 -0.074085 -0.301186 -0.135891 0.853587 1.066537 -0.620552 0.583740 -0.660830 0.413567 -0.740165 -0.480181 -0.101045 0.085423 -0.059616 0.012394 -0.065329 0.119092 0.247424 -0.503170 -0.566143 0.459119 +PE-benchmarks/largest-independent-set-problem.cpp__max(int, int) = -0.444021 -0.475063 -0.154973 -0.409908 0.416443 0.173706 0.221706 -0.364058 -0.810828 -0.520716 0.245428 -0.825332 -0.422339 0.796596 -0.232319 0.710890 1.001177 0.221964 -0.130314 -0.377823 0.616259 -0.636158 0.960655 1.197293 -0.589644 0.017499 0.064593 0.265237 -0.037467 0.216664 0.236887 -0.814100 0.273647 -0.712711 0.232186 -0.522469 -0.298533 0.654921 0.708188 -1.308959 -0.109851 0.468470 0.121735 0.088541 0.067689 0.269312 0.458761 0.495058 -0.103197 1.046004 0.462211 -0.091999 0.438165 0.014614 0.283109 0.265638 -0.033724 -0.110837 -0.160635 0.139906 -0.441593 -0.251131 0.184635 0.614977 0.876181 -0.270718 -0.440832 0.146705 0.006496 0.250429 0.333354 0.675994 -0.045885 -0.120240 0.545742 -1.141874 -0.158885 -1.880101 0.206823 -1.826290 -0.620873 0.139613 0.629687 0.418478 0.400586 -0.026238 1.284259 -0.289169 -0.527458 0.672104 0.849720 -0.586988 -0.150350 -0.045941 -0.314566 -0.146666 -0.262188 -0.052188 0.283903 0.365651 -0.661683 -0.587765 0.402101 -0.017042 -0.374522 -0.668523 -0.163664 0.715096 -0.886234 -0.668636 -0.601809 0.575586 -0.023871 -1.015793 0.056192 -0.477430 0.039082 0.371887 -0.814628 -0.552231 0.518636 0.079957 -0.233291 -0.300810 0.017472 0.606571 0.378891 0.155060 -0.045485 0.431272 0.003041 1.111993 0.369873 -0.487082 0.019604 0.412133 -0.114463 0.431300 -0.397508 -0.273580 0.305535 -0.649933 -0.014442 0.043414 -0.469827 -0.246603 0.558160 -0.168697 -0.207404 2.063006 -0.290608 0.852617 0.722784 -0.574930 0.587916 -0.218823 0.358629 0.345206 0.729016 0.322802 -0.925559 -0.637422 0.743754 1.111866 0.396593 -0.810155 -0.696524 0.276635 0.416026 0.084423 0.450320 0.099404 0.143926 -0.410219 -0.007461 0.063089 1.532035 -0.493409 0.073686 0.054527 0.584000 -0.166782 -1.141087 -0.133330 -1.164199 -0.139469 0.200891 0.208184 0.184776 0.893401 -1.575240 0.698983 -0.403394 0.081795 0.519618 0.412328 -0.469770 -1.718893 -0.401149 0.165619 0.794213 -0.022075 0.469731 0.213278 -0.899795 0.113394 0.031249 0.281121 -0.710202 0.901342 -0.234655 -0.465200 -0.091046 0.211526 -0.385730 -0.565324 -0.125392 0.585409 0.720484 -1.041489 0.432646 0.173081 -0.320716 0.233241 0.299719 0.932985 -0.474506 -0.776922 0.564019 -0.425537 -0.444811 -0.247642 -0.280840 0.220668 0.023278 -0.279493 -0.372627 -0.706357 0.797329 -0.257545 0.996854 0.393511 -0.373624 0.690802 -0.143506 -0.576960 -0.313678 -0.338324 0.009708 -0.303060 -0.147084 -0.710156 -0.124709 0.553787 0.664384 0.373210 -0.392462 -0.043787 0.963976 -0.748563 0.195801 0.422031 0.288876 -0.280721 0.458426 0.516336 -0.663397 0.164350 -0.667344 0.205981 -0.518623 -0.120447 0.669842 -0.335729 0.119392 -0.140375 -0.120623 -0.012529 0.329783 0.578063 -0.007310 0.027671 1.081673 0.769657 -0.187962 -0.090971 -0.778773 0.326254 -0.678328 -0.517603 -0.245235 0.629438 -0.623577 -0.240845 0.008857 0.669957 0.536773 -0.340144 -0.441294 0.217681 +PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -1.299021 2.552672 1.527494 -4.536595 4.394886 6.172956 0.840050 -2.590408 -3.596551 -2.421386 0.283654 -7.147463 -5.361623 5.656712 -2.184409 1.095511 7.625245 -1.031798 -1.714832 -1.930009 3.892988 1.731249 8.064093 8.422522 -7.400596 1.022538 3.368880 1.946309 1.409001 2.966392 -0.068377 -7.400286 0.452728 -1.086699 2.046903 -1.725563 -1.928522 -1.799385 2.625921 -10.114482 -0.979417 3.034453 -2.079341 -0.172793 0.998470 1.787323 8.980541 4.404120 -2.488394 2.195420 4.820107 3.087750 1.328718 -0.439363 1.231672 -0.760278 3.324823 1.195868 -0.117435 -0.641778 -1.051594 0.207620 -0.961667 7.274097 7.219263 0.158364 -2.884627 0.512505 1.151897 0.959758 -0.892581 5.268027 2.222669 5.199368 3.985425 -3.804908 0.044507 -11.252894 2.297442 -10.569109 -4.782206 -2.037751 2.740339 1.864636 2.119294 -1.742971 9.587667 -0.741220 -0.333446 5.983672 8.802123 -3.714422 -0.596874 -2.884540 -4.938005 1.200312 -2.089390 2.300304 -0.507454 0.645042 -5.301767 -5.432134 0.019792 -0.072704 -4.106433 -1.532681 -0.763806 3.631175 -4.782334 -1.035781 -3.956173 2.750315 0.322776 -10.430584 -6.517439 -3.391671 1.626013 0.635038 -3.417833 -5.368293 1.780640 2.347775 -2.808362 -2.082720 -1.085255 4.688425 5.536326 0.812468 -0.069128 1.220085 4.074093 7.034212 2.308274 -2.998395 -0.363380 0.603261 -0.516440 0.195676 -3.066091 0.827589 1.986243 -3.442505 1.724161 4.022509 -3.081037 -2.105806 0.802183 -4.492042 0.895161 21.608472 -2.744104 5.779730 3.043564 -6.725992 2.181267 -1.306265 -2.498227 1.353163 3.750871 5.926958 -7.222401 -3.927765 5.615569 8.905147 2.727975 -5.748921 1.005374 2.476268 -1.167190 -2.738737 4.004642 -0.119228 -0.343526 -2.890541 -1.681011 4.940923 10.857757 -2.356063 -6.092044 0.703180 6.063019 0.874607 -1.766799 0.163090 -4.215556 0.167009 4.824300 0.154446 4.944206 6.899106 -14.286249 5.082595 1.153597 -2.158215 4.238708 1.650064 -3.638391 -3.397450 1.659343 5.134633 4.597991 0.283861 0.348826 -1.490750 -6.835604 -0.103425 2.045051 2.218248 -5.379373 6.081440 0.969971 -4.787611 -3.748829 -1.699040 -2.111295 -2.278028 -4.399275 3.527916 -0.714571 -11.555738 7.610746 1.431789 -1.653161 -1.307396 -3.913352 4.439209 -5.830106 -6.884955 2.928083 -2.544200 -3.078027 -0.050398 -2.832314 2.727439 3.237062 4.750819 -6.774908 -7.583744 5.573109 -0.299952 6.839237 4.017375 1.396650 5.071230 -2.517795 -2.171222 -4.537552 -4.963110 5.881414 2.319285 -4.446911 -2.405722 -3.118629 3.841457 6.458533 -2.411499 -3.382252 -3.806804 4.766878 -4.502208 0.108712 1.217431 1.967512 -5.004886 0.987241 2.635512 -2.527768 -0.265379 -5.835453 -0.461487 -4.353255 -4.578223 3.038815 -3.092154 0.549156 3.497066 -2.430816 -2.126897 2.758412 1.092596 -0.494405 1.780420 5.403237 5.472392 -3.425368 1.593963 -7.498469 4.814209 -7.920302 -7.077119 1.250746 -3.455669 -2.284587 -2.963834 -2.237327 3.908283 1.881896 -0.464075 -2.279506 2.428685 +PE-benchmarks/largest-independent-set-problem.cpp__newNode(int) = 0.054220 0.975897 1.248877 -0.847713 0.991918 0.742942 0.215732 0.073450 -0.681526 -0.661944 -0.304554 -1.144121 -1.253477 1.099356 -0.207442 -0.210900 1.770382 0.120581 -0.142631 -0.590631 0.448874 -0.417342 1.554476 1.733012 -1.644737 0.539504 0.815899 0.648164 0.327809 1.311354 -0.763472 -1.189069 0.019028 0.077082 0.803043 -0.683367 -0.465452 -0.742345 -0.278730 -2.508312 -0.153576 0.509884 -0.474612 -0.046707 0.341120 1.050938 2.271454 0.783403 -0.558024 0.420329 0.772864 0.251458 0.374619 -0.010717 0.500722 0.145045 1.463216 0.444116 -0.407295 0.294431 -0.119601 -0.969394 -0.155645 1.306950 1.364595 -0.069014 -0.504582 -0.185264 0.177974 0.008535 -0.246619 0.879153 0.694220 0.972665 0.854355 -0.891914 0.410590 -2.199378 0.250053 -2.919698 -1.320553 -0.975887 0.962717 0.051849 0.241747 -0.444486 1.843220 -0.191861 0.549180 0.557008 1.862694 -0.924854 -0.225035 -0.656441 -0.749216 0.426680 -0.367063 0.075849 0.136087 -0.316923 -1.025775 -0.948298 0.911681 -0.113533 -0.876734 0.351781 -0.235864 0.994003 -1.306286 -0.235426 -1.462174 -0.015318 0.128605 -1.902440 -0.409784 -0.306602 0.942281 0.399014 -0.480245 -1.016541 0.365711 0.767370 -0.621763 -0.274653 -0.931367 1.577366 0.814393 -0.091137 0.301068 0.149777 0.846061 0.892014 1.235240 -0.469065 -0.229823 0.366625 -0.569639 -0.320645 -0.607053 0.024632 0.412186 -0.677502 0.010961 0.549553 -0.753774 -0.051421 0.213396 -0.720872 0.488515 3.933512 -0.565624 0.906140 0.124324 -1.381038 0.883495 -0.003504 -0.835051 0.269179 0.960443 1.289736 -1.757512 -0.679940 0.674659 1.716697 0.607659 -1.422185 0.019626 -0.057684 -0.413505 -0.232141 0.847726 -0.064697 0.137723 -0.638865 -0.360893 0.624507 2.426715 -0.515297 -2.154484 -0.002330 0.185678 0.047304 -0.936910 0.153255 -0.227686 0.001914 0.238139 -0.248519 0.934766 1.374778 -3.511754 1.245750 -0.247435 -1.062021 1.356504 -0.058868 -0.325355 -1.055222 0.418104 1.219405 1.368339 0.398112 -0.361986 -0.408882 -1.307102 -0.161643 0.219188 0.633834 -1.038394 1.157669 0.296057 -1.259723 -0.734886 -1.109063 -0.066264 -0.245723 -0.925597 0.477073 -0.241466 -3.113003 1.607530 0.132350 -0.338896 -0.016714 -0.589598 0.418831 -1.216310 -1.491349 0.309030 -0.284986 -0.910703 -0.419054 -0.715770 0.619867 0.197177 0.384196 -1.182823 -1.734515 1.133705 -0.225365 1.131102 0.964255 0.406717 1.590881 0.724293 -0.572244 -0.799980 -0.576881 1.064133 -0.192554 -0.548185 -0.295479 -0.915359 0.674031 1.736757 -0.384660 0.099925 -0.910655 1.106228 -1.121375 -0.414836 0.534947 0.272061 -0.597681 0.497622 0.798977 -0.627799 -0.485937 -1.192904 -0.635586 -0.380723 -0.817115 0.530857 -1.076081 -0.106017 1.046956 -0.534016 -0.800654 0.637901 -0.298512 -0.245809 -0.048976 1.234277 2.074053 -1.224163 0.778659 -1.165741 1.055636 -1.632521 -1.062410 -0.022923 -0.352462 -0.354223 -0.420302 -0.088893 0.506308 0.167049 -0.339728 -0.306640 0.213848 +PE-benchmarks/largest-independent-set-problem.cpp__main = 0.299549 3.640907 3.617071 -2.492471 2.679867 2.611770 0.264047 0.172357 -0.974040 -2.193260 -0.753868 -3.874718 -4.153820 2.570235 -1.055751 -1.988768 3.945469 -0.807505 -0.453841 -1.048128 0.582265 0.872118 3.732835 3.790396 -4.470358 1.087383 2.140768 1.496800 0.712149 3.073379 -1.192236 -4.227170 -0.481182 2.216225 2.246519 -0.155315 -0.994717 -3.308559 -1.802248 -5.404674 -0.554344 2.082539 -2.010648 -0.255142 1.035278 2.106406 6.659663 1.890846 -1.605867 -0.550030 2.220339 1.840243 0.366427 -0.310311 0.866282 -1.543609 3.703077 0.481841 -0.911787 0.277339 -0.148601 -1.381512 -1.417739 3.851984 3.263776 0.408433 -1.046961 -1.014348 0.335896 0.208192 -1.441651 2.191554 2.651547 4.071084 1.956575 0.122734 0.917524 -4.415051 1.054059 -6.107080 -3.124725 -2.707782 2.186019 1.480140 -0.461441 -2.159785 4.446777 0.174544 1.714278 2.098176 5.434953 -1.224760 -0.457233 -2.211959 -2.540922 1.331760 -0.935658 1.055081 -0.981739 -0.468095 -2.632799 -1.795981 0.518549 -0.774759 -2.078157 1.808625 -0.567527 1.931832 -2.757777 1.278679 -3.241210 0.106343 1.534901 -5.402771 -3.019972 -0.480175 1.646445 0.569243 -0.952664 -1.745970 0.645871 1.581373 -1.807701 0.241916 -3.466678 3.898391 2.409599 0.008551 0.590334 0.505510 3.214874 1.284058 2.008487 -0.888033 -0.604634 -0.141642 -0.753256 -1.251752 -1.021272 1.049749 0.817408 -0.858818 0.573836 1.799118 -1.611985 -0.984606 -2.283711 -2.955709 1.594416 10.275509 -1.870863 2.241349 -0.272930 -3.683047 1.665993 0.048980 -3.074662 -0.280741 1.660188 4.091117 -2.883190 -1.471428 2.543961 4.278320 1.258319 -2.729985 2.399784 0.731921 -1.705605 -1.875226 2.425181 -0.084685 -0.099281 -1.354939 -1.300306 2.913981 5.095757 -0.433325 -6.590944 0.127066 1.570802 1.736913 0.464498 0.863263 0.973803 0.339099 2.022450 -0.654221 3.007549 3.490812 -8.843726 2.825873 1.447237 -2.515823 3.010749 -0.659391 -0.962500 -0.836271 1.951136 4.036150 2.471754 1.196449 -1.363758 -2.035042 -2.985629 -0.442180 1.076960 1.741803 -2.513415 2.510515 0.844268 -3.053406 -2.726401 -4.017682 -0.663780 0.354614 -3.621480 0.899098 -1.197563 -7.940399 5.197420 0.571536 -0.429194 -1.923553 -2.941568 0.676846 -3.337100 -3.879278 0.130170 -1.717263 -3.284154 -0.483275 -1.925006 1.034964 1.047712 2.519098 -3.501139 -4.077457 3.200384 0.096920 2.945946 2.245712 2.105775 3.731577 2.117299 -0.776824 -1.716123 -2.603148 4.928535 0.470078 -2.246427 0.743020 -2.275903 1.170834 3.936610 -2.414601 -0.515161 -2.979975 1.629571 -1.683285 -1.295715 0.747453 -0.559695 -2.129081 0.815844 1.537557 -0.559958 -1.296135 -3.774629 -1.490445 -1.882086 -2.961654 0.243494 -2.432854 -0.531302 3.500433 -1.727620 -2.766365 1.228582 -1.052235 -0.983465 0.489964 2.284771 4.337158 -3.110845 2.807579 -3.586621 3.093089 -4.488572 -3.777881 0.862847 -2.991522 0.086404 -1.695140 -1.321029 0.742967 0.011568 -0.230981 -0.881175 1.581213 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__printMaxSubSquare(int (*) [5]) = -5.356933 -4.934650 -0.737206 -11.020895 5.103470 11.005819 2.758035 -9.017729 -12.176017 -3.896247 4.940125 -16.215148 -6.020112 13.122345 -5.130197 9.441476 15.608381 0.225065 -7.425863 -3.783879 10.167020 1.699449 17.437145 19.501435 -11.717976 0.353287 -0.833492 6.161955 4.546801 1.682561 4.647440 -8.352436 2.345862 -8.961468 0.873929 -5.142893 -3.816153 5.055923 10.046278 -20.288347 -0.692781 7.552056 0.965554 -0.443271 1.608614 1.422793 10.566342 10.132657 0.122327 8.599001 8.152313 1.857438 5.987702 -0.308795 4.045391 0.744453 3.474541 -3.262288 -0.109493 -2.555820 -3.260011 0.122468 1.813741 14.121333 14.669465 0.053023 -7.095422 2.486429 5.248186 3.028050 4.322328 10.919202 -2.996136 5.029824 6.287112 -14.328542 3.716273 -18.001662 5.424173 -15.883828 -8.688605 2.713974 9.043866 9.194716 6.576730 -3.117912 19.362390 -4.389220 -7.607977 12.881623 13.852144 -8.964365 -1.902439 -2.921321 -6.973829 0.266088 -4.694230 2.667288 -0.079420 7.569098 -11.008970 -5.032066 0.555981 1.943632 -7.833989 -4.628905 0.144411 9.341023 -10.664755 -7.205263 -2.111544 11.616035 -0.842231 -20.100949 -8.667003 -10.688774 0.697664 0.589621 -10.244699 -10.010841 5.290287 2.156788 -3.341378 -3.657294 -5.854686 7.847540 8.979947 2.948804 -2.712749 6.866016 3.678745 17.933071 0.317828 -7.632962 1.989472 3.492312 -0.643795 5.808399 -4.838223 -2.333428 2.424028 -10.351634 -1.728560 6.484465 -6.534687 -2.367993 1.301612 -0.348266 -2.197499 44.896174 -3.720463 15.255857 13.034623 -10.544574 4.420496 -3.503637 2.558171 4.700482 6.224758 6.603412 -19.724463 -10.026399 11.720625 18.962317 6.564159 -10.905389 0.359823 5.906426 0.401883 -2.611780 7.260865 -0.143923 0.677326 -7.167726 -2.222046 7.583770 23.587823 -5.140199 -0.909357 1.562066 7.042554 -1.707293 -9.232248 -1.566115 -10.318660 0.344358 6.413319 3.467191 7.433752 14.106684 -17.531067 11.771456 -0.418926 0.323442 10.930113 4.152455 -10.192472 -12.519812 -4.977867 4.830934 10.562932 -4.041109 0.394914 2.699552 -15.289863 0.498400 3.710575 1.782665 -10.058389 12.761999 1.669532 -5.496368 -3.627594 2.231674 -4.826258 -4.329512 -5.730936 10.207450 0.512480 -11.882849 10.282795 3.975784 -5.085025 0.873915 -3.886979 11.986615 -10.512465 -10.613922 7.808568 -3.989801 -7.271728 -2.857174 -4.306956 5.362146 5.524857 3.775839 -13.611801 -10.583312 12.121099 -4.758591 16.119103 7.322545 -3.737591 6.629750 -3.775762 -4.419938 -6.645295 -10.969767 2.326476 3.844415 -8.489738 -6.889351 -4.147964 9.668662 9.565658 -1.019019 -9.166492 -0.437957 12.593011 -9.002139 -0.024784 2.383644 2.192271 -10.852666 3.389288 5.401761 -9.177366 4.694479 -9.753419 -1.535422 -9.201863 -6.012308 11.734630 -1.197754 5.276082 -0.313562 -1.670049 0.108447 5.052945 6.047154 -0.415549 6.176456 16.297995 7.281084 0.366863 -1.709006 -16.171199 9.053473 -13.180985 -11.468920 1.192747 1.603206 -7.942483 -4.048954 -1.724817 12.225799 9.783330 -6.064869 -5.901037 6.646688 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 0.078742 0.154009 0.297585 -0.118844 0.200660 -0.063741 0.068551 0.305923 -0.263417 -0.336957 -0.073313 -0.359666 -0.407061 0.265968 -0.053746 -0.229091 0.429813 0.174524 0.054477 -0.130908 -0.175314 -0.059641 0.311396 0.379154 -0.306265 0.162140 -0.156368 0.143200 -0.116231 0.451869 0.045698 -0.546330 0.007346 0.394781 0.229253 -0.141888 -0.115667 -0.072194 -0.421837 -0.653736 -0.006456 0.530235 0.104896 0.000000 0.209192 0.274157 0.463351 0.139210 -0.020182 0.252546 0.070420 0.148008 0.177167 0.015525 0.115248 -0.097571 0.189007 -0.400257 -0.302287 0.209055 -0.043170 -0.406008 -0.230190 0.199011 0.267788 -0.051100 -0.114348 -0.342296 -0.096894 0.114957 0.064460 0.117696 0.247206 0.097962 0.128594 0.381213 -0.005402 -0.145765 0.126738 -0.865969 -0.336725 -0.249936 0.704450 0.591011 -0.243431 -0.292961 0.374151 -0.078600 0.171702 0.176950 0.379723 0.025703 -0.138603 -0.110176 -0.064038 0.216420 -0.086990 -0.131116 -0.076297 0.120960 -0.227720 0.011518 0.147199 -0.209741 -0.147631 0.316374 -0.082807 0.246771 -0.557851 0.146199 -0.448670 0.158800 0.326005 -0.307031 -0.096280 0.080247 -0.068701 0.237738 -0.155754 0.182532 0.165096 -0.089517 -0.176821 0.267784 -0.686620 0.373273 -0.122319 -0.063151 0.118724 0.185414 0.144025 -0.022592 0.058036 -0.113973 -0.025066 0.199940 0.063642 -0.065844 -0.081267 -0.035087 -0.072388 -0.156282 0.136408 -0.190688 -0.221652 -0.183079 -0.802292 -0.128383 0.130038 0.249689 -0.138401 0.198403 0.008995 -0.186454 0.196210 0.051929 -0.122581 -0.025689 0.257211 0.210667 0.343224 -0.096909 0.067547 0.361084 0.159853 -0.021856 0.245278 0.023582 -0.006130 0.018461 0.315335 0.025336 0.090119 -0.153684 -0.059370 0.000919 0.380002 0.162790 -0.396205 -0.102845 0.126752 0.146186 0.182048 0.156969 0.187876 0.001771 0.078770 -0.073200 0.115846 0.293082 -0.727868 0.363533 0.078929 -0.075503 0.147785 -0.115738 0.008616 -0.283135 -0.038713 0.201730 0.471976 0.147374 -0.031720 -0.068232 -0.246038 -0.062907 0.039163 0.190134 -0.198817 0.218547 0.001199 -0.219183 -0.095465 -0.486366 -0.029439 0.126156 -0.346016 0.056077 0.347948 -0.674070 0.251567 -0.033715 -0.114481 -0.189578 0.052045 0.009343 -0.250883 -0.268894 -0.094623 -0.216868 -0.651228 -0.099756 -0.226202 0.059512 -0.099638 0.004663 -0.004153 -0.129777 0.479769 0.067081 0.231342 0.217774 -0.040322 0.347200 0.535164 -0.168154 0.172699 -0.233460 0.373279 -0.442035 0.121038 0.493669 -0.237241 0.017439 0.394294 0.037594 -0.104835 -0.186325 0.320279 0.114556 -0.157268 0.209555 -0.412360 0.169674 0.388961 0.276564 -0.248336 -0.109021 -0.400099 0.042984 0.022354 -0.055163 0.100630 -0.319150 -0.041328 0.222614 -0.095574 -0.404461 0.093513 -0.116036 -0.296440 -0.074656 0.421402 0.185799 -0.205278 0.593290 -0.186320 0.179588 -0.285245 -0.062839 -0.240681 -0.068554 -0.093594 -0.000121 -0.191488 -0.011871 0.039585 -0.027828 -0.236750 0.204018 +PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -0.630464 -0.613798 -0.156666 -0.742700 0.477087 0.451571 0.369549 -0.542657 -1.209239 -0.787262 0.427429 -1.516430 -0.956904 1.430896 -0.477210 0.926734 1.790102 0.329182 -0.409716 -0.592806 1.065008 -0.663450 1.873423 2.116231 -1.281138 -0.049199 0.096310 0.723741 0.440800 0.197284 0.590928 -0.969692 0.488368 -1.064553 0.389839 -0.870935 -0.215702 0.734622 0.726131 -2.294432 -0.164462 0.770693 0.335643 0.053887 0.072719 0.867139 1.015853 1.142725 -0.287040 1.283416 0.909210 -0.157057 0.697275 0.100217 0.213494 -0.030329 -0.042869 -0.167155 -0.352368 0.050266 -0.408892 -0.859400 0.205342 1.350125 1.792972 -0.235147 -0.563297 0.328275 0.166917 0.471336 0.530266 1.057224 0.096876 0.121079 1.030836 -1.593025 -0.090238 -2.719383 0.257151 -3.192502 -0.973409 -0.072687 1.286185 0.629972 0.582914 -0.154244 2.067827 -0.164508 -0.633878 1.505114 1.588378 -1.005255 -0.404710 -0.432748 -0.557189 0.239575 -0.782801 0.172684 0.588791 0.734722 -1.185012 -0.805696 0.329536 0.076290 -0.742968 -0.819576 -0.249261 1.121598 -1.529072 -0.872059 -0.982980 0.680538 0.041387 -2.123229 -0.131082 -0.887779 0.373012 0.450126 -0.977316 -0.766525 0.607125 0.214524 -0.260713 -0.448993 -0.535637 1.050725 0.590579 0.257603 -0.024883 0.793385 0.192486 1.733428 0.607259 -0.763683 -0.077842 0.594617 -0.480233 0.600386 -0.807850 -0.481643 0.978874 -1.280820 -0.030446 0.247099 -0.802775 -0.594496 0.670790 -0.233771 0.042790 3.748849 -0.227428 1.418960 1.274291 -1.087593 0.787390 -0.432303 0.394349 0.684132 1.086280 0.559419 -1.536615 -1.071810 1.041007 1.954502 0.755183 -1.329884 -0.596479 0.413742 0.494629 -0.176554 0.661037 0.289354 0.036550 -0.755961 -0.080276 0.599226 2.285484 -0.740247 0.114193 0.105896 0.886611 -0.307651 -1.650996 -0.145201 -1.246290 -0.097897 0.314389 0.342986 0.492031 1.550559 -2.321862 1.285658 -0.281317 0.282916 0.862353 0.410854 -0.985248 -2.370366 -0.282591 0.523797 1.241307 -0.071051 0.280373 0.373185 -1.661011 0.099402 0.224320 0.460396 -0.942466 1.401160 -0.234055 -0.565902 -0.601334 0.185395 -0.459442 -0.622584 -0.253984 1.038221 0.701604 -1.662472 1.017376 -0.074099 -0.767248 0.117902 0.065927 1.248828 -1.290926 -1.378021 0.793256 -0.653162 -1.093699 -0.756744 -0.393849 0.548786 0.237499 -0.332313 -0.814967 -1.306748 1.456791 -0.571240 1.518613 0.716592 -0.368000 1.298745 -0.070354 -0.838831 -0.804942 -0.641530 -0.037753 -0.442030 -0.630032 -0.746269 -0.250123 1.036923 1.362726 0.152309 -0.667227 0.190010 1.613019 -1.123738 -0.364302 0.616171 0.515478 -0.585344 0.898133 0.809602 -1.382126 0.188470 -1.163561 0.034908 -0.569425 -0.674255 1.108756 -0.657169 0.413912 0.042451 -0.080585 -0.047279 0.633474 0.715336 -0.037894 0.161191 1.958702 1.395440 -0.491415 -0.069825 -1.625643 0.756926 -1.549139 -1.129897 -0.134839 0.744233 -0.696916 -0.148547 0.102621 1.066135 0.935352 -0.857301 -0.865205 0.446283 +PE-benchmarks/longest-palindrome-substring.cpp__longestPalSubstr(std::__cxx11::basic_string, std::allocator >) = -4.932345 -5.778444 -2.419038 -7.409728 4.573664 6.629995 3.149329 -7.511773 -9.997426 -3.217122 5.042797 -13.938667 -6.423807 10.927887 -4.427406 8.075793 12.779041 0.083850 -5.470304 -4.907047 8.684904 0.202158 15.862703 16.394444 -9.841483 -0.311848 -2.020442 5.100938 4.083160 -1.580677 5.777175 -5.198304 3.480702 -8.707530 0.760079 -3.256175 -2.578988 4.607050 8.108256 -16.079775 -1.310428 5.223282 2.103626 0.715665 0.763256 5.764469 7.654135 8.933311 0.310212 9.175572 6.856631 -1.161283 6.237571 0.497012 2.358214 -1.347602 1.405944 -2.290002 -1.629739 -1.867814 -3.446339 -1.789501 1.317703 11.251874 13.256762 -0.135796 -5.859445 3.291564 3.770457 3.733340 4.714050 9.566395 -1.120250 2.943977 7.184082 -11.819093 1.280147 -16.823462 2.770020 -17.758233 -7.308038 1.950587 9.250316 4.639886 5.317612 -0.790532 16.432678 -0.987742 -7.308263 11.988987 11.524201 -7.510899 -2.310750 -1.743302 -4.765008 -0.078851 -4.526874 3.852974 3.577086 8.085921 -9.697269 -3.521316 0.364376 0.441117 -5.823073 -5.530633 -0.613436 7.772291 -8.939626 -5.519044 -3.002524 8.778139 -0.027107 -16.850173 -5.302977 -7.918816 2.466330 1.656789 -7.902251 -5.820270 4.591096 0.595914 -2.477747 -2.578541 -3.554721 6.039786 7.142907 3.233538 -1.707188 8.224937 1.982703 15.206948 1.034097 -5.785261 0.819418 3.100135 -0.779409 6.566010 -3.838382 -2.529614 5.004597 -9.213385 0.969007 3.234241 -5.104640 -4.378381 2.219291 0.233472 -1.670668 31.086430 -2.232515 12.906248 11.444599 -7.861745 2.956119 -4.628655 4.346890 4.966570 6.443214 3.520850 -12.996790 -9.047260 10.055123 15.444950 5.208876 -10.947111 -0.515540 5.533847 2.163245 -2.886828 5.333284 1.701861 0.744976 -4.896162 -0.611993 5.948101 18.731748 -5.561455 1.128494 1.645870 5.911955 -0.320399 -9.000142 -1.793020 -7.345121 -0.425049 4.665096 4.594532 4.499977 11.681910 -14.088800 9.534142 -0.410522 3.067759 8.320424 4.368482 -9.045135 -12.643506 -4.541342 3.107105 7.930584 -1.907456 -1.415256 2.854170 -12.736542 1.545568 3.035542 1.653750 -7.242155 10.830144 -0.797566 -3.124023 -3.349134 2.036932 -3.490276 -2.029426 -3.139766 8.793226 1.473181 -10.673430 7.272189 1.600500 -5.961876 -0.051422 -2.092946 10.641992 -7.898408 -8.644523 6.115150 -5.762082 -8.398219 -5.223614 -2.837517 2.996593 3.959401 2.621898 -10.118944 -7.702994 12.341336 -5.139672 13.354717 5.918161 -3.510580 7.492587 -4.512761 -6.547245 -5.692944 -8.218822 0.733444 1.547392 -6.975895 -3.624146 -2.197388 7.876573 7.847766 0.069447 -7.492896 0.903429 11.314414 -8.948470 -2.226212 3.391177 3.477198 -7.494916 6.304028 5.326355 -8.650668 4.141324 -7.832759 -1.693652 -7.297411 -4.971338 9.695187 -1.748932 4.315193 -1.852141 -0.551364 1.362597 4.569263 4.944139 0.675976 3.706234 14.945949 8.806327 -1.471975 -2.193736 -13.663616 7.685477 -10.663987 -9.567042 1.201911 3.353643 -5.809299 -2.286288 -0.851449 9.805321 8.802880 -9.135049 -7.409193 5.954239 +PE-benchmarks/longest-palindrome-substring.cpp__main = -0.449172 0.505532 1.906126 -1.299923 2.678807 0.279794 0.902264 0.576057 -1.198252 -2.036003 -0.364494 -1.287748 -3.903985 1.965052 -0.918181 0.430510 2.030753 -0.551491 0.342248 -2.018393 2.187191 -2.536210 3.407483 1.802403 -4.276876 0.404319 0.598318 2.695560 1.129610 2.806486 0.600424 -1.311548 -0.087990 0.059402 3.330593 -1.164021 0.058652 -0.123339 -1.823244 -4.487532 -1.357789 2.922561 -0.531751 1.179191 1.074230 4.329118 2.669897 2.148522 -2.120774 2.444782 2.102636 -0.914302 2.172052 0.274910 -0.797590 -0.607238 1.598005 -0.184148 -1.671019 0.913803 -0.870939 -3.947547 1.072977 2.353840 3.915291 -1.983242 -0.676711 0.993320 -0.457631 1.100063 0.386020 2.782159 0.946950 0.256328 3.898082 -1.365074 -0.373359 -4.437409 0.673567 -7.433952 -2.802280 -3.047632 2.159858 1.458022 0.589873 -1.353215 5.115447 0.806701 -0.075572 2.575892 2.507278 -1.195687 -0.010432 -2.824618 -0.963315 0.123410 -1.793976 -1.283779 1.511805 1.218877 -1.860046 -0.893004 0.640030 -0.984115 -1.548810 -0.764974 -2.889222 2.727043 -3.505091 -1.267990 -4.207265 0.818095 -0.063437 -4.180171 0.744631 -0.502640 1.432212 0.582098 1.640872 0.636158 0.951695 1.724090 -0.724466 -0.201544 -2.468272 4.035248 1.860530 -0.707468 1.018370 2.271339 -0.337219 0.671009 3.719141 0.076107 -3.025159 2.062534 -1.124938 0.497445 -1.045057 0.950666 2.928757 -1.943218 -0.937039 -0.332128 -0.271343 -0.828316 -0.740897 -2.340171 1.605608 5.068963 -0.741247 1.339519 0.062938 -1.956828 2.908516 0.824792 -0.062474 2.156290 2.261529 1.092184 -2.498612 -1.724698 1.640617 2.645039 0.486147 -3.068776 -0.735513 0.224193 0.804147 -0.760778 0.919106 1.742723 -0.165137 -0.868363 0.134608 -1.270121 4.161695 -1.479594 -2.700641 1.053744 1.395297 -1.809163 -3.113346 -0.254957 -0.688410 -2.049689 -0.097613 0.061154 0.488915 2.572517 -5.279993 2.232066 0.036754 -0.637394 2.161492 -1.840182 0.563989 -5.459304 -0.159063 1.209750 1.864677 0.130051 -0.805630 -0.613081 -2.848307 1.989741 -0.060002 1.662617 -1.214466 2.828311 -1.805018 -1.184466 -1.863567 -2.298295 -1.115483 0.544664 -1.060311 0.499552 1.128886 -4.805195 1.947136 -2.082909 -1.646436 0.764502 1.429997 2.045830 -1.495913 -2.898134 1.138281 -1.086130 -3.774628 -3.593817 -0.913156 0.832155 -0.053594 -1.841922 -1.780206 -3.765369 2.552572 -1.721706 1.381602 1.563193 0.644051 4.473474 2.625282 -2.951676 -1.786114 -1.618640 0.744634 -1.138853 0.159818 -0.747632 -0.623631 1.295077 2.976130 0.116807 1.303900 -1.215721 3.681747 -2.242444 -2.043495 1.711838 -0.396181 -0.045674 2.819377 2.042829 -1.141435 -1.574987 -3.109484 0.612639 -0.671737 -0.584988 1.537252 -2.968993 -0.671718 1.393875 -0.002997 -1.706266 1.035573 0.438414 -0.879382 -2.586908 5.005921 4.977840 -3.159548 1.140902 -1.731988 2.026868 -2.583696 -0.441273 -1.649608 0.438859 1.257986 0.907850 0.968482 1.251681 1.802651 -2.568075 -1.213459 -1.118758 +PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -0.129103 1.034879 1.025536 -0.864980 2.233490 0.957810 0.460824 0.091281 -0.599626 -1.541747 -0.531574 -1.521446 -2.696167 1.434493 -0.780282 0.251771 2.135884 -0.271794 0.544534 -1.106974 1.165236 -0.871248 2.842689 1.783821 -3.039150 0.398398 0.846137 1.466797 0.503991 1.921002 0.272320 -2.016911 0.515651 -0.184574 1.699754 -0.936773 -0.245482 -0.568930 -0.706045 -3.422592 -0.822939 1.384917 -1.084250 0.930457 0.770201 2.291611 2.893340 1.409432 -1.488070 1.759903 1.317729 0.139263 1.376175 0.305586 -0.585307 -0.390433 0.969048 -0.390729 -1.031062 0.527456 -0.782816 -2.328598 0.061586 1.811853 2.747820 -0.915903 -0.669498 0.651195 -0.406324 0.512862 0.092709 2.050223 1.147956 1.086733 2.377567 -1.008600 -0.397773 -3.432296 0.025697 -5.133861 -1.868944 -2.256326 1.078701 0.903451 0.509441 -0.646284 3.366401 0.510706 0.521685 1.789024 2.512222 -1.184822 -0.139506 -1.771759 -0.578670 0.233522 -1.070619 -0.309813 0.590623 0.464505 -1.362518 -1.461832 0.458575 -0.762381 -1.189848 -0.806775 -1.579038 1.812295 -2.647516 -0.865566 -3.133244 0.137725 -0.266365 -3.291038 -0.543215 0.060344 1.290898 0.778485 0.670546 -0.601917 0.708357 1.332137 -0.489563 -0.433295 -0.662988 2.542997 1.597349 -0.150994 0.586277 1.442103 0.474003 1.576775 2.451717 0.067110 -1.575591 0.971665 -0.423262 -0.052134 -0.954284 0.610235 1.401655 -1.540421 -0.047911 0.792880 -0.644257 -0.730657 -0.415722 -2.020610 1.153299 4.684123 -0.782563 1.057854 0.352907 -2.061971 1.201918 0.124934 -0.354088 1.075483 1.510805 1.797373 -1.874121 -1.150445 1.210570 2.062905 0.501785 -2.442208 -0.180599 0.075507 0.559230 -0.602495 0.631915 1.118491 -0.141491 -0.743407 0.185834 0.064087 3.365265 -1.217198 -2.424536 0.577887 1.252518 -0.602187 -1.802835 -0.181217 -0.778861 -1.090594 0.856805 0.109499 0.211955 2.031347 -4.173558 1.585589 0.322075 -0.498051 1.325206 -0.424121 0.060055 -2.726431 0.325176 1.470092 1.153872 0.423759 -0.045515 -0.729089 -1.990238 0.951458 0.474711 1.401453 -1.003560 1.917083 -0.623692 -1.340886 -1.495125 -1.205291 -0.482835 0.009868 -1.081977 0.727448 0.820168 -4.317688 1.744743 -1.012077 -1.328942 0.495127 0.054490 1.961729 -1.625971 -2.319752 0.917925 -1.379829 -2.477483 -1.505597 -0.616502 0.515895 0.594537 -0.296149 -1.539093 -2.696448 1.681925 -0.614344 0.899875 1.512195 0.844534 3.158117 0.376763 -2.026533 -1.463439 -1.442238 1.276783 -0.488172 -0.146082 -0.777302 -0.648826 1.111488 2.981841 -0.160523 0.234554 -1.281155 2.042018 -2.223824 -0.896118 1.350564 0.598775 -0.524630 1.540063 1.391266 -0.784680 -1.033423 -1.745327 0.505522 -0.549063 -0.885667 0.797816 -2.498021 -0.582840 1.451406 -0.435671 -1.420881 1.001506 -0.003401 -0.284798 -1.330679 2.711614 3.461883 -2.276229 0.917853 -1.437438 1.528258 -2.638783 -1.288024 -0.562289 -0.274087 0.572280 0.177472 0.297714 0.814303 0.931574 -1.249896 -0.933770 -0.508055 +PE-benchmarks/longest-palindrome-substring.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/longest-palindrome-substring.cpp__std::char_traits::length(char const*) = -0.047959 0.074187 0.150852 -0.097095 0.169069 -0.040761 0.085106 0.002587 -0.187054 -0.288537 0.020654 -0.325482 -0.337677 0.278622 -0.097826 0.057152 0.396993 0.088617 0.021521 -0.205347 0.083720 -0.228953 0.444247 0.449787 -0.380770 0.072168 0.097082 0.203905 0.117136 0.184709 0.039327 -0.273047 0.145170 -0.045471 0.159462 -0.183221 -0.017049 -0.004840 -0.071148 -0.570688 -0.049943 0.136265 0.077063 0.033706 0.037695 0.346494 0.380087 0.245882 -0.102309 0.299784 0.227428 -0.006760 0.151387 0.058174 0.027454 -0.104148 0.158474 -0.180372 -0.188637 0.087118 -0.019847 -0.457826 -0.071060 0.290635 0.418813 -0.078543 -0.056380 0.014940 -0.070522 0.097232 0.077826 0.187622 0.125286 0.112548 0.238713 -0.220717 0.025316 -0.583535 -0.051627 -0.997705 -0.308667 -0.213211 0.394175 0.157394 0.046081 0.035571 0.430770 0.095797 0.045847 0.192963 0.424459 -0.227646 -0.130408 -0.073812 -0.055988 0.175175 -0.217742 0.054169 0.086398 0.118905 -0.245923 -0.163811 0.243737 -0.056587 -0.183833 -0.035782 -0.105422 0.225626 -0.503444 -0.105493 -0.395801 -0.054455 0.083527 -0.463438 0.115922 -0.038266 0.278618 0.167500 -0.075430 -0.083781 0.080283 0.070455 -0.045615 -0.036890 -0.362809 0.281679 0.087056 0.029298 0.111920 0.161313 0.130608 0.299637 0.230672 -0.118414 -0.111806 0.119691 -0.132948 0.058125 -0.161478 -0.089342 0.195626 -0.273149 0.107635 0.008561 -0.193854 -0.201491 -0.011250 -0.121624 0.125977 0.490782 -0.010801 0.233741 0.174870 -0.272173 0.107471 -0.146694 -0.048953 0.146156 0.264172 0.160684 -0.062753 -0.204702 0.126690 0.392930 0.160782 -0.277092 -0.096596 0.025423 0.091004 -0.038347 0.158905 0.100618 0.020184 -0.164950 -0.019937 0.132903 0.438591 -0.092518 -0.110715 0.015050 0.074480 -0.030252 -0.313386 0.008641 -0.049450 -0.011005 -0.004040 0.044549 0.057003 0.340731 -0.721745 0.296792 -0.025945 -0.002619 0.172062 0.003863 -0.158386 -0.514861 0.089499 0.205575 0.287825 0.054183 0.090285 0.031890 -0.341656 -0.023180 0.021137 0.137715 -0.188958 0.258789 0.005404 -0.204364 -0.222308 -0.145654 0.019265 -0.032883 -0.098900 0.174861 0.247848 -0.684451 0.282926 -0.136853 -0.236388 -0.020933 -0.025848 0.214408 -0.351482 -0.318678 0.074136 -0.227878 -0.381874 -0.222255 -0.096389 0.084825 -0.084467 -0.102066 -0.080190 -0.190088 0.318211 -0.092154 0.164441 0.198305 0.031372 0.396850 0.091342 -0.221983 -0.120684 0.003919 0.076285 -0.324539 -0.070456 0.109996 -0.112287 0.172309 0.465811 0.024333 -0.047238 0.063015 0.319132 -0.261731 -0.238387 0.208970 0.140766 -0.027509 0.336657 0.220488 -0.302267 -0.074731 -0.298366 -0.056287 0.012676 -0.205817 0.186731 -0.268338 0.031388 0.182253 -0.041022 -0.173378 0.219917 -0.014112 -0.049391 -0.093159 0.413796 0.496524 -0.267519 0.162747 -0.306802 0.122478 -0.404969 -0.249946 -0.030619 0.153080 -0.080969 -0.000644 -0.032766 0.139574 0.119721 -0.176340 -0.202373 0.069934 +PE-benchmarks/longest-palindrome-substring.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -0.339036 1.281610 1.549463 -1.414356 3.335246 1.066634 1.069069 0.820199 -1.430988 -3.032192 -0.588773 -3.137955 -4.911965 2.484752 -0.851227 0.677050 4.345654 -0.107591 0.524551 -1.952775 1.982649 -1.979029 5.173176 4.050906 -5.140360 0.817649 1.174346 2.606242 0.841609 2.426246 0.239432 -3.189952 1.152106 -0.747919 2.988991 -1.702428 -0.405095 -1.008260 -1.201424 -6.492636 -1.326311 2.709040 -1.239931 1.127558 0.968083 4.465936 5.054618 2.781871 -2.538881 2.988928 2.558636 -0.560359 2.311173 0.628964 -0.849429 -0.766339 1.017222 -0.419986 -2.112610 0.736836 -0.951471 -4.938775 0.066215 3.115910 4.809865 -1.702474 -1.257756 1.170500 -0.235107 0.762923 0.464047 3.398652 2.396274 0.968744 4.429697 -2.264156 -0.807065 -6.485494 0.017521 -10.552966 -3.915838 -3.820918 3.237130 1.226917 1.085178 -1.512351 6.230103 0.361197 0.947037 3.077571 4.400591 -2.699710 -0.748444 -3.082410 -0.714682 0.958716 -2.323628 -0.537822 1.905523 0.610449 -2.824112 -2.063567 1.590081 -1.163262 -2.218114 -1.722206 -2.293749 3.185282 -4.553457 -1.678751 -5.977167 0.326992 0.214486 -5.867690 0.081395 0.171443 2.205514 1.665786 0.429393 -0.995062 1.075357 1.673349 -0.955882 -0.896073 -2.010438 4.693094 2.520059 -0.231179 1.742119 2.749773 1.089144 3.136697 4.735970 -0.357150 -2.757910 1.975179 -1.435401 0.388851 -1.729626 0.264254 3.091507 -3.072773 -0.150179 0.868180 -1.580503 -1.254234 0.005683 -2.728785 1.871372 8.155556 -0.881631 2.276994 1.150470 -3.362392 2.995663 -0.511849 -0.756041 2.027247 3.166019 2.647107 -3.525929 -2.212610 2.070976 4.356426 1.290367 -4.570637 -0.392739 0.471844 1.363002 -1.361809 1.262918 2.001083 0.796228 -1.523194 0.232658 0.897015 6.122441 -2.198409 -3.608677 0.906278 2.101276 -0.741292 -4.078142 -0.386398 -1.578928 -1.723182 1.090512 0.447025 0.609177 3.921077 -7.177086 2.906795 -0.110772 -0.691953 2.841870 -0.325071 -0.515472 -5.743593 0.631519 2.515580 2.828513 0.705681 -0.039800 -1.001542 -3.736021 1.154986 0.739140 2.176372 -1.778060 3.508086 -1.402785 -1.996272 -2.397680 -2.602442 -0.864496 -0.152883 -1.419744 1.516453 1.888137 -7.350956 3.285397 -1.758697 -2.688986 0.540941 -0.169717 3.330571 -3.268726 -4.216654 1.828427 -2.302775 -4.656668 -2.945832 -1.171277 1.189096 0.651435 -1.261676 -2.294346 -4.852392 4.222024 -0.866589 2.469620 2.610628 0.925051 5.854169 1.638459 -3.712153 -2.398935 -2.434784 1.423966 -1.766168 -0.792403 -1.411061 -1.285277 2.072772 5.265412 -0.282336 0.641098 -1.576955 3.768482 -4.449279 -2.017940 2.639059 1.635093 -0.675383 3.461156 2.830362 -2.315232 -1.663548 -3.607482 0.459204 -0.608748 -2.043969 1.667419 -4.420582 -0.565765 2.678774 -0.792453 -1.945463 1.826579 0.093630 -0.517168 -2.450368 5.310843 6.556730 -4.007995 1.447889 -3.214010 2.657336 -4.763129 -2.527672 -0.706480 0.467433 0.286208 0.175478 1.223594 1.465212 1.513395 -2.926239 -2.330082 -0.460643 +PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::_Guard(std::__cxx11::basic_string, std::allocator >*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.121920 0.285697 0.408187 -0.646375 0.864158 0.471727 0.001535 0.004627 -0.441503 -0.585623 -0.343180 -0.641559 -0.877482 0.650457 -0.283563 0.224817 0.802941 -0.095795 -0.028022 -0.369115 0.571426 -0.188184 0.849392 0.468034 -1.030773 0.119872 0.307213 0.796978 0.180998 0.910377 0.073339 -0.884425 -0.208248 0.158004 0.693031 -0.419042 0.045540 0.143565 -0.234130 -1.274028 -0.230024 0.716396 -0.169291 0.290655 0.198767 0.315660 0.865491 0.563155 -0.487044 0.398729 0.736403 0.415646 0.363196 0.079622 -0.245737 0.049752 0.455412 -0.496089 -0.231613 0.140618 -0.112284 -0.546620 0.080199 0.664938 0.975357 -0.366399 -0.312525 0.278019 -0.008871 0.208819 0.030994 0.657856 0.060103 0.286685 0.622503 -0.351982 -0.066375 -1.214519 0.461952 -1.506904 -0.565034 -0.792981 0.261276 0.880767 0.065571 -0.260176 1.430817 -0.133868 0.021688 0.685681 0.872060 -0.319866 0.003900 -0.935772 -0.397859 0.157585 -0.401876 -0.471810 -0.107456 0.608256 -0.313467 -0.517786 0.000000 -0.351307 -0.481878 -0.198865 -0.671676 0.777309 -1.029267 -0.296661 -0.983521 0.614019 0.000000 -1.098790 -0.469618 -0.250981 -0.049622 -0.057731 0.239731 -0.304501 0.252623 0.462761 -0.362118 0.063624 -0.612451 0.790819 0.603272 -0.403335 0.073435 0.432920 0.227292 0.518929 0.462623 -0.294757 -0.705825 0.596328 -0.004165 -0.220542 -0.575861 0.286603 0.267171 -0.638998 -0.067273 0.349515 -0.207592 -0.204497 -0.538234 -0.917981 0.421696 2.050129 -0.300438 0.191486 0.047323 -0.635705 0.604691 0.284744 -0.246332 0.353672 0.300556 0.612614 -0.564895 -0.546453 0.558947 0.805971 0.253234 -0.498610 -0.092301 0.008733 0.087317 -0.081087 0.254887 0.467026 -0.381694 -0.051733 -0.139618 -0.131090 1.278044 -0.112958 -0.688729 0.359348 0.794128 -0.518183 -0.479176 -0.106252 -0.583019 -0.484377 0.412174 0.003402 0.363889 0.864003 -1.655478 0.679700 0.405061 -0.241311 0.401959 -0.440328 0.295127 -1.003500 -0.098512 0.576438 0.684530 -0.239794 0.248192 -0.326794 -0.820926 0.354926 0.244458 0.545144 -0.450726 0.570288 -0.118208 -0.419003 -0.408281 -0.248264 -0.529672 0.005239 -0.470888 0.237787 0.294050 -1.416399 0.776428 -0.401064 -0.080756 0.274805 0.030404 0.744227 -0.593252 -0.709667 0.483566 -0.088072 -0.644064 -0.276468 -0.154391 0.520811 0.049863 0.050579 -0.566736 -1.006935 0.426269 -0.148519 0.321219 0.423377 0.241353 0.599820 0.199229 -0.456838 -0.407251 -0.525919 0.355423 -0.008339 0.156600 -0.181724 -0.085429 0.434455 0.907066 0.039332 -0.052055 -0.386567 0.816593 -0.406360 -0.238840 0.318701 -0.335244 -0.364550 0.429477 0.451395 -0.347001 -0.486583 -0.907868 0.476138 -0.263885 -0.340779 0.298659 -0.789756 -0.203993 0.726734 -0.243857 -0.638245 0.501495 0.256650 -0.387460 -0.453664 1.276724 0.631981 -0.337700 0.513251 -0.669793 0.500802 -0.936685 -0.351132 -0.392719 -0.206899 0.037957 0.065565 -0.022947 0.395001 0.181564 0.152600 -0.237687 -0.352285 +PE-benchmarks/longest-palindrome-substring.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/program-wish-womens-day.cpp__main = -4.406714 -5.025659 -3.534930 -5.100176 2.109747 2.646767 2.063521 -5.063902 -8.304454 -2.549737 4.728863 -9.725164 -4.552054 9.342314 -3.731959 5.794974 10.243368 1.981171 -3.987840 -3.669870 7.623333 -1.645882 11.094075 12.949909 -7.729772 -0.517451 -0.216501 2.031666 2.005052 -1.761697 6.336281 -6.244700 2.403812 -6.384386 2.675375 -4.548314 -1.619682 6.928441 7.442055 -13.696587 -0.837966 4.410580 4.336720 0.090111 0.468207 4.877537 4.041528 7.181504 -0.495466 7.205133 6.629667 -0.107825 5.146788 -0.199566 1.721655 -1.085162 -2.240287 -0.187132 0.786199 -0.283411 -2.935462 1.122497 1.975451 9.121717 11.215318 -0.965070 -5.028718 1.088205 3.263978 3.522183 2.718890 6.875214 -0.236360 0.942008 3.802950 -10.713201 -2.307082 -19.357603 3.983429 -17.429077 -5.042828 2.666556 7.109940 4.082447 2.900049 -1.216339 13.013589 0.020751 -6.185194 10.962330 9.701005 -3.637513 -1.691619 -1.858471 -4.516656 1.074938 -2.981217 3.253358 4.372143 5.986200 -7.332867 -5.202477 -1.867404 -0.037216 -4.329042 -5.440292 -0.206570 5.849596 -4.919224 -4.115802 -2.547219 8.698658 1.544566 -14.012964 -1.323255 -8.087700 -1.089941 1.854525 -7.734375 -3.745325 3.710520 -0.137805 -2.167147 -1.611005 -3.242485 4.941140 4.186898 2.899915 -2.156748 4.843200 1.354976 10.230079 -1.227854 -7.133664 1.111499 2.447850 -1.040289 4.837712 -6.177000 -2.046562 7.384203 -6.640426 1.208076 0.277497 -4.314592 -4.139664 4.879435 -1.499570 -2.100443 24.689336 -2.498548 10.665578 8.450776 -5.506994 5.192078 -2.488934 3.478136 3.944445 5.690098 2.123219 -9.521045 -7.942938 7.809510 12.815159 4.530947 -7.511743 -3.557124 4.578851 1.784566 -2.110739 5.436733 0.622845 -1.331173 -3.312718 -0.754522 4.651117 12.926591 -3.312285 3.576208 -0.973588 10.738443 -0.137552 -6.960432 -1.162091 -10.425592 -0.111194 4.353016 3.657679 4.749751 8.525624 -14.855784 7.960996 -0.497939 4.060457 3.561131 2.977579 -7.241421 -15.527795 -2.072582 1.695814 6.766848 -2.233286 2.301058 3.702166 -10.314718 1.370384 1.761030 1.236458 -6.563147 8.657703 -1.773074 -1.560110 -2.393417 4.500927 -5.153062 -4.565651 -1.823946 8.276658 5.468122 -7.876765 5.352724 1.165245 -3.526397 -0.784013 -0.771858 7.781514 -7.086585 -7.328275 4.913641 -3.098305 -3.459071 -4.226130 -2.429294 3.892058 0.364639 1.807713 -5.601791 -7.108342 8.604983 -3.023355 10.219393 4.276875 -3.373354 4.269375 -3.799734 -4.243670 -4.384809 -5.740363 0.466986 1.142742 -4.719638 -4.199282 -1.275643 6.231179 5.380015 0.956442 -7.334974 0.871039 9.446898 -4.638731 -0.638885 1.175824 0.793475 -3.310898 4.203404 4.063538 -7.789255 2.846662 -8.609892 1.756709 -5.756639 -3.065598 8.006362 -1.264210 3.358449 -2.847803 -1.081608 2.157161 4.407088 6.471909 0.180943 4.203900 10.396906 4.778861 0.447485 -2.330637 -10.473273 4.187588 -7.747623 -6.529013 -1.376085 2.529015 -5.870955 -0.998387 -1.413135 8.126580 5.888347 -3.727644 -6.318346 6.005325 +PE-benchmarks/program-wish-womens-day.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.131632 0.046777 0.230895 0.060785 -0.006382 -0.022737 0.100887 -0.050889 -0.028350 -0.130136 0.198950 -0.237625 -0.396756 0.406504 -0.264592 -0.001485 0.379545 0.326795 -0.063168 -0.153783 0.199413 -0.260159 0.534501 0.513357 -0.354552 0.018478 0.158871 0.186411 0.048015 0.131882 0.052279 -0.200269 0.177487 -0.115103 0.215639 -0.378113 -0.010550 0.216640 -0.003244 -0.575131 -0.062850 0.055267 0.268374 0.003555 0.100824 0.331630 0.185356 0.327169 0.066148 0.224857 0.194004 -0.054847 0.371730 0.059883 0.181871 -0.158641 0.123312 -0.197733 -0.024734 0.127831 -0.126036 -0.407603 0.015698 0.356944 0.375507 -0.038851 -0.069199 -0.185542 0.062822 0.076223 0.031722 0.169655 0.097754 0.215355 -0.020047 -0.324083 -0.126049 -0.705689 -0.056459 -0.830470 -0.253569 -0.094057 0.269530 0.173485 0.051469 0.130292 0.483720 0.254903 -0.048093 0.185882 0.581061 -0.204427 -0.162944 0.093110 0.057624 0.186921 -0.185036 0.230120 0.142894 0.197041 -0.268645 -0.299730 -0.058051 -0.047841 -0.145334 0.107467 -0.116724 0.318897 -0.431397 -0.169613 -0.329705 0.018233 0.115915 -0.601207 0.201801 -0.137265 0.346854 0.228183 -0.219994 -0.096748 0.244483 0.183146 0.122453 -0.004456 -0.292623 0.100116 -0.160874 0.150824 -0.027819 0.020483 0.059311 0.318844 0.220784 -0.229728 -0.020578 0.042234 -0.236281 0.232399 -0.236881 -0.013958 0.191016 -0.294198 0.199282 -0.076631 -0.204419 -0.332636 0.030219 0.025119 0.018700 0.632526 -0.084189 0.314262 0.115231 -0.292852 0.106214 -0.191254 0.005854 0.110578 0.210259 0.054160 -0.331651 -0.355657 0.118687 0.516277 0.215463 -0.346366 0.002132 -0.021709 0.122826 -0.178311 0.318751 0.110042 -0.091952 -0.222116 -0.060496 0.141012 0.326307 -0.041612 -0.206546 -0.174716 0.141442 0.162638 -0.194370 0.028033 0.101536 0.039339 0.151796 0.010430 0.005076 0.155132 -0.669458 0.406488 -0.096387 0.175607 0.255508 -0.088591 -0.196280 -0.493749 0.132209 0.130355 0.155121 -0.004459 -0.009278 0.209902 -0.426920 0.012903 0.017194 0.094064 -0.093274 0.283014 0.138574 -0.216005 -0.308719 -0.022449 0.086181 -0.235017 -0.088842 0.396835 0.206696 -0.627891 0.255424 0.058203 -0.167206 -0.022591 0.083332 0.193387 -0.392019 -0.464689 0.215945 -0.131973 -0.185741 -0.368928 -0.120135 0.253250 -0.258313 -0.018658 0.046735 -0.072909 0.270454 0.038787 0.160638 0.143633 0.118113 0.264681 0.063893 -0.209643 -0.062206 0.029296 0.101696 -0.310062 -0.119856 0.018353 -0.058723 0.282720 0.291222 0.028586 -0.171785 0.002205 0.455032 -0.134653 -0.155935 0.032450 0.273432 0.202641 0.341578 0.247318 -0.303692 -0.062040 -0.314554 -0.031071 -0.166723 -0.176354 0.268995 -0.261525 0.099410 -0.009256 -0.085314 -0.159874 0.238545 0.140142 0.050492 0.117676 0.191479 0.478218 -0.035850 0.169497 -0.249760 0.005053 -0.299390 -0.104392 -0.088170 0.195581 -0.150767 0.185324 0.000515 0.258369 0.266010 -0.207616 -0.206236 0.201004 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::Graph(int) = -0.886871 -0.353017 0.767178 -1.783412 1.162852 0.995514 0.410560 -0.848063 -1.389678 -1.018199 0.615275 -1.692805 -2.233590 1.857005 -0.732418 0.245240 1.180535 -0.765547 -0.888833 -1.231136 1.149372 -0.763242 2.130421 1.889254 -2.224627 0.037407 0.101549 1.481186 0.369871 1.118776 0.558282 -0.957366 -0.791572 0.322133 1.440981 0.537627 -0.555454 -0.048229 -0.216505 -2.469148 -0.400903 2.355885 0.393642 0.063368 0.382942 0.544310 1.484941 1.397248 0.112313 0.749775 1.513490 -0.208230 1.396938 -0.301156 1.203996 -0.464769 1.912759 -0.270240 0.003629 -0.066071 -0.674896 -0.346056 0.109076 2.011536 2.134391 -0.659266 -1.068819 -0.334929 0.157511 1.216118 0.360379 1.714488 -0.116849 0.616049 1.745560 -0.498202 0.635133 -2.231303 1.250257 -2.368168 -1.583015 -0.045413 1.320372 1.700051 0.331098 -0.682506 3.176779 0.016607 -1.104992 0.375170 1.701236 -0.088378 -0.043586 -0.372897 -1.274213 -0.092360 -0.607702 0.066458 0.039322 1.393582 -1.574929 0.246495 -0.008691 -0.231418 -1.336363 0.396940 -0.941650 1.421743 -1.071854 0.010450 -1.000993 1.457096 0.503980 -2.910461 -1.080448 -1.563999 -0.729368 -0.067344 -0.867762 -0.027394 0.966174 0.353118 -0.692274 -0.066005 -1.845405 1.805799 1.437511 -0.019921 -0.182868 1.116752 0.356121 1.015353 0.282424 -0.621162 -0.650769 0.724482 -0.269446 0.690223 0.001976 0.379471 0.718355 -0.619811 -0.196263 -0.224526 -0.324728 -0.343018 -1.107959 -0.749597 -0.108865 4.672193 -1.082331 1.772666 0.783706 -0.948689 1.428544 0.419648 0.109870 0.641787 1.173942 0.742509 -1.264409 -1.268969 2.038357 2.466819 0.569046 -1.306027 0.677188 1.105986 -0.004866 -0.873666 1.568050 -0.033170 0.077404 -0.618754 -0.375504 0.187470 2.679102 -0.765686 -2.313946 0.479028 1.248655 -0.118901 -0.632566 0.264718 -0.925206 -0.489129 0.194284 0.421053 1.140751 1.856154 -2.952604 1.621538 0.397448 -0.606102 2.486144 -0.870997 -0.535934 -2.568023 -0.257748 0.330477 1.511726 -0.086827 -0.898480 -0.343271 -2.090822 0.634756 0.060827 0.463797 -1.581240 2.139944 -0.901035 -0.653609 -0.675386 -1.503704 -1.005771 0.338657 -1.618982 0.726364 0.251304 -2.259252 1.628963 0.325285 -0.484548 -0.575251 -0.030336 1.081709 -0.758619 -1.530843 0.521359 -0.989697 -1.603908 -1.359758 -0.941176 0.305390 0.238231 0.027909 -2.069772 -0.816651 2.082945 -1.249009 2.441331 1.017563 -0.231894 0.920019 1.954041 -0.864280 -0.298732 -0.854501 0.772522 0.213425 -1.232039 -0.466484 -0.742961 0.888183 0.922984 -0.221979 -0.234707 -0.894606 1.952432 -0.411230 -0.582716 0.074324 -1.322431 -0.856218 1.212365 0.776571 -0.307633 0.103344 -2.181086 -0.450106 -1.924871 -1.227398 1.424337 -0.373501 0.551350 0.139536 -0.203861 -0.537453 0.304441 0.600804 -0.746823 -0.007201 2.552141 1.203992 -0.967823 0.373363 -2.267286 1.778210 -1.079125 -0.678853 -0.204823 -0.335185 -0.407153 -0.668487 -0.645870 1.278532 1.260447 -1.004509 -1.049320 0.731554 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::~Graph() = -0.253408 0.253885 0.337285 -0.787774 0.574818 0.573302 0.099583 -0.122705 -0.754460 -0.753057 -0.086148 -1.431109 -1.048752 0.896240 -0.351288 0.035400 1.360975 0.111695 -0.185028 -0.417745 0.409024 -0.056907 1.179550 1.519530 -1.243763 0.216427 0.247790 0.724909 0.084937 0.786905 0.480896 -1.536765 -0.265596 0.350891 0.942562 -0.388421 -0.419108 0.136879 0.025103 -2.188821 -0.261563 1.520572 0.524185 0.081831 0.504177 -0.206405 1.311751 0.634177 -0.277328 0.559237 0.740001 0.608224 0.745445 -0.180521 0.264735 -0.076415 0.725576 -0.627568 -0.171242 0.219434 -0.266260 -0.107319 -0.078177 1.163174 1.306202 -0.100586 -0.605849 -0.428912 0.276905 0.377440 -0.025328 1.046832 -0.059453 0.744897 0.595746 -0.331516 0.324256 -1.871709 0.948704 -1.891782 -1.040352 -0.466665 0.954278 1.552144 0.066213 -0.521743 1.903307 -0.389251 -0.025779 0.763247 1.387069 -0.136872 -0.034198 -0.509928 -0.785498 0.383403 -0.284573 -0.074543 -0.096339 0.648500 -0.825048 -0.593106 0.180267 -0.262478 -0.770857 0.240112 -0.336386 0.822754 -0.934312 -0.236730 -0.929556 0.836190 0.333724 -1.618884 -0.924466 -0.726676 -0.925511 0.310876 -0.693961 -0.500777 0.415934 -0.000166 -0.459573 0.170742 -1.230179 1.015466 0.692377 -0.268517 -0.030281 0.620503 0.456828 0.816609 -0.050647 -0.582674 -0.122354 0.611094 -0.005327 -0.081814 -0.655225 0.100339 0.146590 -0.515397 -0.123742 0.177210 -0.586079 -0.414947 -1.076617 -0.900092 0.111197 3.488866 -0.526381 0.914458 0.631477 -0.810796 0.969057 0.327803 -0.248806 0.238284 0.784785 1.032079 -0.757953 -0.723608 0.789510 1.628505 0.411482 -0.334566 -0.069243 0.498194 -0.055564 -0.226205 1.004427 -0.054007 -0.076451 -0.419286 -0.197387 0.424225 1.569252 -0.040941 -1.112645 -0.134122 1.365140 -0.074833 -0.361963 0.191280 -1.217226 -0.214261 0.309902 0.105281 0.690016 1.199399 -2.484275 1.102988 0.577477 -0.141388 1.100886 -0.196981 -0.325548 -1.680096 0.094131 0.681558 1.044125 -0.355130 0.103611 -0.254438 -1.271060 0.054922 0.250436 0.600123 -1.199240 1.255103 -0.308466 -0.530616 -0.402453 -0.573156 -0.651377 -0.533612 -1.031251 0.562677 0.911065 -1.300710 1.095309 0.207755 -0.275030 -0.149578 -0.395717 0.519915 -0.982208 -1.020622 0.274091 -0.422955 -0.925195 -0.098918 -0.685456 0.450570 0.195636 0.335625 -0.983635 -0.715303 1.127759 -0.190162 1.165745 0.762492 -0.072025 0.492856 0.736497 -0.486592 -0.173435 -0.719084 0.568608 0.073349 -0.288703 -0.593653 -0.565892 0.417799 1.334750 -0.143958 -0.540340 -0.728891 1.120211 -0.273949 -0.124363 0.202657 -1.184585 -0.386273 0.329314 0.458141 -0.560502 -0.090482 -1.431982 0.262635 -0.527064 -0.423772 0.745103 -0.826126 -0.076261 0.598440 -0.802414 -0.613355 0.543080 0.514021 -0.493305 0.231256 1.285468 0.068829 -0.153543 0.764518 -1.210349 0.581618 -1.213440 -0.515762 -0.478050 -0.397791 -0.517336 -0.450978 -0.354594 0.603234 0.548014 0.118139 -0.602726 0.434338 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::~list() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::addEdge(int, int, int) = -0.260497 0.292384 0.513435 -0.272655 0.742321 0.747534 0.387674 -0.071353 -0.626841 -0.753740 0.023701 -1.252747 -1.419515 1.166126 -0.273077 0.376756 1.629159 0.247678 -0.109941 -0.439568 0.451946 -0.377534 1.810245 1.751425 -1.302835 0.233625 0.343024 0.590083 0.093106 0.726514 -0.130323 -1.161245 0.659656 -0.471235 0.349659 -0.531643 -0.271364 -0.247198 -0.040903 -2.171002 -0.254515 0.663418 -0.393223 0.031106 0.169967 0.866433 1.644820 0.932077 -0.133721 0.953831 0.449781 -0.224826 0.600770 0.178700 0.337228 -0.087232 0.383434 -0.260362 -0.732608 0.136429 -0.289344 -1.407033 -0.404575 1.088449 1.456760 -0.165635 -0.431076 0.104502 -0.280111 0.243331 0.063121 0.874928 0.669623 0.602283 1.007831 -0.705105 -0.043211 -1.533028 -0.195041 -2.675148 -1.222999 -0.735450 1.165409 0.497067 0.514154 -0.371656 1.779599 -0.014734 0.058150 0.755338 1.822133 -1.231663 -0.445140 -0.452978 -0.044142 0.333715 -0.766396 0.231696 0.360956 -0.111181 -1.125899 -0.827254 0.719413 -0.046389 -0.699239 -0.281552 -0.349497 1.101009 -1.507463 -0.627607 -1.599370 -0.146501 0.045665 -1.929007 -0.305598 0.131238 0.778147 0.807827 -0.564420 -0.802247 0.576781 0.504289 -0.139144 -0.639431 -0.335138 1.269915 0.589840 0.036276 0.438883 0.800194 0.547774 1.528346 1.226115 -0.220755 -0.234908 0.388348 -0.492115 0.299601 -0.361061 -0.217503 0.177924 -1.061985 0.123876 0.564385 -0.775340 -0.288885 -0.169554 -0.278753 0.361294 2.934212 -0.300059 0.979557 0.628274 -1.267107 0.676164 -0.644514 -0.286654 0.312461 0.921403 0.926590 -1.308340 -0.714650 0.794642 1.711662 0.637859 -1.429744 0.086159 0.019901 0.413478 -0.529040 0.752020 0.449425 0.484286 -0.700213 -0.057264 0.725568 2.168511 -1.004417 -1.291163 0.236167 0.012699 0.256597 -1.240470 -0.058915 -0.201693 -0.219712 0.396341 0.118729 0.244002 1.350812 -2.002406 1.157215 -0.222939 -0.478177 1.200134 0.220374 -0.640626 -0.983966 0.132177 0.964166 1.111752 0.485872 -0.119387 -0.213456 -1.392958 -0.063120 0.293637 0.557937 -0.652819 1.219347 -0.061517 -0.870611 -0.818863 -0.738870 0.033055 -0.443848 -0.560023 0.703056 0.483404 -2.427208 1.246165 0.006493 -0.820135 0.062278 -0.167769 0.960805 -1.219933 -1.567000 0.566436 -0.826975 -1.409353 -0.534732 -0.468286 0.309644 0.484900 -0.165948 -0.716388 -1.204620 1.447524 -0.004692 1.136011 0.770829 0.207069 1.669720 0.388640 -1.134740 -0.507038 -0.784642 0.708159 -0.668627 -0.538551 -0.463908 -0.522812 0.902239 1.652634 -0.010250 -0.275888 -0.627984 1.195209 -1.441968 -0.494133 0.861839 0.836420 -0.376063 0.763087 0.964848 -0.892060 -0.253653 -0.907232 -0.344769 -0.448799 -0.891766 0.514726 -1.149824 0.089774 0.685263 -0.305472 -0.504581 0.503840 0.009232 -0.099134 -0.229690 1.440410 1.823611 -1.215697 0.463983 -1.259353 0.889448 -1.547746 -1.110089 0.161337 0.296298 -0.328856 -0.255340 0.215352 0.461686 0.483763 -1.076182 -0.752022 0.082942 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::AdjListNode(int, int) = -0.148576 0.265854 0.569769 -0.298649 0.593555 0.446742 0.266349 -0.122331 -0.520285 -0.305944 -0.096120 -0.761121 -0.753248 0.832956 -0.098343 0.397594 1.216983 0.274974 -0.104433 -0.332901 0.410691 -0.624868 1.172406 1.243934 -0.894650 0.268052 0.379801 0.410536 0.075968 0.825117 -0.618708 -0.604126 0.315065 -0.482340 0.368782 -0.604559 -0.261920 -0.110248 0.184799 -1.645115 -0.105418 0.323141 -0.019882 -0.027341 0.102342 0.656858 1.198533 0.613084 -0.143598 0.594590 0.325202 -0.289128 0.463442 0.129856 0.448160 0.353865 0.813516 0.264146 -0.461579 0.166263 -0.216628 -0.912744 -0.026557 0.733727 1.022107 -0.121155 -0.327497 0.066950 -0.056441 0.038993 0.020682 0.588355 0.308381 0.343407 0.614907 -0.871803 0.290996 -1.361013 -0.101773 -1.872277 -0.868590 -0.503317 0.559314 -0.022256 0.545106 -0.178176 1.254567 -0.138596 0.112497 0.105541 1.225595 -1.024647 -0.263657 -0.280278 -0.186394 0.133485 -0.403337 -0.021449 0.462855 -0.302018 -0.749531 -0.741840 0.880943 0.107773 -0.518500 -0.034264 -0.186842 0.782881 -0.900290 -0.671373 -1.080446 -0.244646 -0.213691 -1.246199 0.200556 -0.105008 0.452477 0.479202 -0.431102 -0.895961 0.408286 0.533350 -0.245590 -0.561816 -0.332497 1.075266 0.428976 -0.056595 0.273391 0.219032 0.309132 0.978398 0.974049 -0.307290 -0.127587 0.329625 -0.574635 0.092732 -0.416797 -0.267796 0.221515 -0.739618 -0.164142 0.361191 -0.564182 0.236640 0.477159 -0.108691 0.239208 2.231122 -0.289261 0.649617 0.287987 -0.948716 0.835094 -0.199088 -0.251630 0.250610 0.730403 0.646817 -1.413293 -0.560027 0.473497 1.170305 0.481019 -1.113273 -0.363281 -0.184940 0.150799 -0.092159 0.476741 0.178176 0.240827 -0.539394 -0.095551 0.224242 1.794641 -0.762619 -1.085275 0.168218 -0.220804 -0.118156 -1.301414 -0.108492 -0.508260 -0.136396 -0.215022 -0.038339 0.299308 0.954394 -1.846032 0.901478 -0.500871 -0.687324 1.205010 0.005183 -0.346459 -0.976960 0.066921 0.662520 0.940405 0.317238 -0.162375 -0.103182 -0.965062 -0.066377 0.003481 0.398266 -0.577618 0.855163 0.016639 -0.821283 -0.449551 -0.534947 0.079901 -0.554647 -0.339407 0.461200 0.262913 -1.771527 0.868802 0.116109 -0.417432 0.338353 -0.009277 0.387927 -0.773731 -1.049661 0.372891 -0.286721 -0.477455 -0.425319 -0.328826 0.326457 0.127056 -0.224586 -0.600887 -1.092434 0.767131 -0.214868 0.780119 0.574750 0.116322 0.993290 0.653896 -0.712322 -0.502099 -0.193602 0.125181 -0.425539 -0.298357 -0.574597 -0.474021 0.699852 1.186608 0.102702 0.159469 -0.526114 0.917923 -0.987379 -0.252435 0.626035 0.398780 -0.325147 0.292444 0.698206 -0.602748 -0.283498 -0.554892 -0.450051 -0.248969 -0.505449 0.437166 -0.781368 -0.005429 0.440024 -0.298775 -0.316831 0.388149 -0.009731 -0.090382 -0.179377 1.060913 1.310404 -0.797985 0.283952 -0.745788 0.577902 -1.052248 -0.582326 0.019908 0.317374 -0.497393 -0.168296 0.390088 0.398278 0.210404 -0.559027 -0.306716 -0.165487 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::push_back(AdjListNode const&) = 0.044802 0.760088 0.639571 -0.217725 0.626013 0.428508 0.199390 0.235574 -0.266556 -0.644594 -0.241132 -0.843480 -1.154199 0.702092 -0.101197 -0.140345 1.166487 0.124517 0.059126 -0.316595 0.159636 -0.317303 1.135052 1.125140 -1.117268 0.343288 0.451780 0.395687 0.078259 0.813459 -0.278074 -0.981101 0.266905 0.115099 0.565699 -0.365322 -0.197616 -0.553664 -0.434707 -1.693738 -0.197260 0.565882 -0.207148 -0.002119 0.188837 0.696142 1.577286 0.577154 -0.338486 0.347588 0.391871 0.071343 0.361705 0.085493 0.168398 -0.118221 0.552551 -0.124932 -0.530520 0.215229 -0.048231 -1.095017 -0.340331 0.812639 0.995157 -0.099500 -0.240985 -0.045117 -0.180904 0.084170 -0.202608 0.575269 0.682393 0.634800 0.682929 -0.242105 0.042128 -1.151943 -0.039226 -2.207222 -0.963161 -0.911112 0.809699 0.397202 0.173204 -0.392072 1.244326 0.026916 0.491833 0.419505 1.396859 -0.709068 -0.265096 -0.552280 -0.182431 0.441662 -0.462762 0.083758 0.175370 -0.273102 -0.734579 -0.648653 0.598987 -0.132833 -0.577835 0.099330 -0.292277 0.675127 -1.048660 -0.183817 -1.326683 -0.316113 0.147419 -1.345298 -0.130099 0.167779 0.435533 0.528495 -0.147752 -0.544132 0.233389 0.439481 -0.231662 -0.295239 -0.723959 1.077891 0.407252 -0.123900 0.434703 0.379329 0.614713 0.704538 0.916113 -0.129260 -0.294653 0.256564 -0.365077 -0.146355 -0.339012 -0.043794 0.263546 -0.603040 0.048953 0.342320 -0.534938 -0.166752 -0.342123 -0.559425 0.477771 1.980222 -0.248423 0.498009 0.089289 -0.964439 0.650852 -0.227128 -0.630856 0.149740 0.694322 0.885886 -0.724842 -0.429730 0.377234 1.146306 0.396156 -0.803183 0.125362 -0.079113 0.002281 -0.353930 0.569897 0.203893 0.249078 -0.449255 -0.133327 0.542804 1.446126 -0.468921 -1.198285 0.095988 0.137845 0.178479 -0.656237 0.076789 -0.073070 -0.139217 0.150828 -0.086298 0.357243 0.938067 -1.846594 0.834553 -0.058069 -0.574049 0.772286 -0.114601 -0.221248 -0.718838 0.451339 0.921732 0.825420 0.328762 -0.121915 -0.395255 -0.905400 -0.121365 0.184651 0.496224 -0.540425 0.782080 -0.031162 -0.732020 -0.688530 -0.816452 -0.005883 -0.215182 -0.567790 0.316230 0.368637 -1.927112 1.113002 -0.112361 -0.462628 -0.086210 -0.315314 0.348168 -0.947626 -1.117051 0.203053 -0.467407 -0.983122 -0.307787 -0.436361 0.314928 0.156817 -0.079189 -0.511942 -0.990931 0.947680 0.062693 0.591760 0.649224 0.409737 1.198722 0.668021 -0.681175 -0.376872 -0.480807 0.638831 -0.496226 -0.312394 -0.092467 -0.560650 0.481241 1.398767 -0.176055 -0.009357 -0.571281 0.721246 -0.799632 -0.509368 0.560545 0.188848 -0.206017 0.477872 0.647502 -0.487888 -0.445119 -0.858846 -0.204558 -0.114476 -0.708388 0.186403 -1.027088 -0.140328 0.890835 -0.419564 -0.608884 0.461740 -0.217862 -0.208401 -0.280436 0.899976 1.205908 -1.018263 0.635061 -0.796006 0.619020 -1.206497 -0.725734 0.012708 -0.034923 -0.088588 -0.218547 0.072735 0.140360 0.086254 -0.430962 -0.421046 -0.016291 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -0.544280 1.042180 2.007060 -1.893732 1.667394 1.856089 0.683329 0.175351 -1.928399 -2.858838 0.127323 -4.338969 -4.278867 3.109592 -1.132466 -0.323263 4.420823 0.195660 -0.624898 -1.226696 1.104067 -0.133162 4.624070 4.983479 -4.181808 0.511849 0.229499 2.362722 0.867560 1.674923 1.191919 -3.583971 0.519529 0.451481 1.794088 -0.946062 -0.649516 -0.761109 -1.319174 -6.262884 -0.766082 3.227657 -0.888263 0.080280 1.033051 1.955971 4.936582 2.576015 -0.857521 1.583685 1.890901 0.513631 1.697835 0.015589 0.320883 -1.595719 0.869242 -1.794520 -1.486511 0.497351 -0.440505 -3.172505 -0.931652 3.717533 4.133104 -0.105677 -1.338686 -0.542472 0.135577 0.826578 0.117566 2.663606 1.877290 2.343818 2.672812 -0.885809 0.278626 -4.327553 1.020365 -6.786376 -3.381793 -2.038448 4.136724 3.696969 0.037947 -2.296371 5.153247 -0.184151 0.288695 3.651262 4.992370 -1.802833 -0.945990 -2.099704 -1.269261 1.499712 -1.915181 0.681092 -0.611444 1.286323 -2.996495 -1.333370 0.588951 -0.741991 -2.190823 0.231132 -0.935515 2.821186 -3.919805 -0.316523 -3.682830 1.132786 1.461948 -5.558420 -1.904965 -0.746754 1.006763 1.474297 -1.479705 -0.894396 1.134334 0.564611 -0.760364 -0.001965 -4.029440 3.713320 1.656402 -0.095147 0.594437 2.555149 1.956182 2.714085 1.550913 -0.932337 -0.670540 1.170625 -0.789593 0.253402 -1.249877 0.043750 1.332515 -2.150586 -0.564131 0.942159 -1.974808 -1.694578 -2.885470 -1.650353 1.092607 9.606934 -0.848216 2.768184 1.819076 -3.020969 2.215379 -0.693075 -1.017022 0.809479 2.155677 2.949312 -3.205635 -2.053307 2.334734 4.946529 1.576895 -2.532662 1.515156 1.075112 0.235456 -1.740932 2.573912 0.728239 0.549586 -1.678759 -0.488938 2.619556 5.268799 -1.016782 -3.103445 0.096812 1.450929 0.957502 -1.604984 0.504505 0.199037 -0.415788 1.704330 0.432575 1.666632 3.840890 -5.873544 3.249978 0.989125 -0.426014 2.538353 -0.299881 -1.707238 -3.125272 0.588334 2.761665 2.948391 0.653210 -0.548847 -0.786244 -3.936194 -0.091245 1.257577 1.646152 -2.252264 3.382127 -0.346840 -1.763048 -2.379738 -2.634078 -1.231347 -0.024168 -2.646991 1.852969 1.077721 -5.298900 3.893875 -0.104267 -1.732646 -1.094938 -1.562617 2.322559 -3.779262 -3.937848 1.018771 -2.269253 -4.954089 -1.560160 -1.688699 0.980762 1.012346 -0.128080 -2.684653 -3.154882 4.480178 -0.299723 3.386983 2.276463 0.468308 3.954239 2.525739 -2.073252 -1.024495 -3.181079 2.860670 -0.890054 -1.787531 -0.211049 -1.574495 1.734247 4.354718 -1.100807 -1.438191 -1.232538 3.146278 -2.261117 -2.076164 1.359322 -0.361655 -1.208379 2.279758 1.999942 -2.380562 -0.369204 -3.909809 -0.324777 -1.305771 -2.536335 1.606101 -2.743248 0.295400 2.260776 -1.044579 -1.891075 1.453596 0.274564 -0.977860 0.150684 4.433491 3.776534 -2.184043 2.041053 -4.188676 2.756381 -4.424305 -3.098048 -0.095673 -0.303466 -0.289763 -0.883452 -0.392227 1.385634 1.839392 -2.042358 -2.217149 1.574006 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator() = -0.006187 0.250432 0.298769 -0.156981 0.278791 0.139834 0.091768 -0.011870 -0.207555 -0.171542 -0.120700 -0.295421 -0.304248 0.328885 -0.043071 0.114850 0.540451 0.153302 -0.007763 -0.165707 0.133370 -0.312939 0.493082 0.523261 -0.441818 0.172306 0.200054 0.214985 0.048097 0.481112 -0.297338 -0.284701 0.098289 -0.111548 0.219450 -0.323495 -0.090623 -0.077333 -0.024881 -0.788330 -0.028372 0.124754 0.093555 -0.012250 0.050816 0.230414 0.596547 0.254290 -0.082232 0.207712 0.172997 0.011050 0.191709 0.069732 0.176569 0.198671 0.444138 -0.043428 -0.196684 0.095846 -0.032672 -0.458296 -0.000378 0.336987 0.442997 -0.041905 -0.098579 0.009846 -0.046712 -0.001567 -0.005623 0.222013 0.066591 0.187480 0.197982 -0.378123 0.208842 -0.559963 -0.030611 -0.884801 -0.389276 -0.335369 0.227977 0.104782 0.217917 0.003827 0.538284 -0.062213 0.185353 -0.007944 0.522485 -0.423974 -0.103439 -0.152202 -0.106916 0.132687 -0.158497 -0.066842 0.095377 -0.095176 -0.283568 -0.329081 0.455218 0.047202 -0.255359 0.057852 -0.089216 0.304703 -0.483569 -0.274688 -0.487968 -0.140872 -0.111496 -0.510243 0.156630 -0.067690 0.201509 0.165710 -0.086561 -0.414663 0.118249 0.283264 -0.108491 -0.192505 -0.363432 0.440119 0.150079 -0.094586 0.139049 0.026709 0.153148 0.386904 0.384462 -0.144294 -0.096872 0.172888 -0.239087 -0.072017 -0.212922 -0.113556 0.056222 -0.338446 -0.069731 0.160567 -0.247005 0.093011 0.100473 -0.126397 0.184257 0.884773 -0.105215 0.216956 0.068746 -0.435286 0.318091 -0.047554 -0.196272 0.116746 0.314326 0.297225 -0.497289 -0.247894 0.095990 0.469082 0.206245 -0.332918 -0.185294 -0.146517 -0.013657 0.051357 0.184956 0.035230 0.029894 -0.238273 -0.070262 0.053390 0.759340 -0.198389 -0.362808 0.066876 -0.104833 -0.152635 -0.506492 -0.035815 -0.224850 -0.040699 -0.161665 -0.063040 0.142509 0.413995 -0.865667 0.414576 -0.224584 -0.321322 0.446226 -0.090812 -0.066073 -0.439824 0.097018 0.330369 0.448320 0.033565 0.006053 -0.059613 -0.402704 -0.063638 -0.018395 0.203927 -0.281604 0.325991 0.080534 -0.420366 -0.214279 -0.216236 0.062200 -0.210413 -0.158453 0.156524 0.164511 -0.789285 0.414091 -0.017436 -0.159238 0.189121 -0.020782 0.107313 -0.374291 -0.417938 0.126946 -0.045295 -0.155147 -0.137002 -0.146396 0.216646 -0.053706 -0.122761 -0.238482 -0.403394 0.241972 -0.078900 0.208214 0.279700 0.105247 0.372548 0.298951 -0.245598 -0.196770 -0.001073 -0.028503 -0.249315 -0.060693 -0.106899 -0.255384 0.280883 0.623538 0.055548 0.087896 -0.119858 0.407891 -0.326833 -0.163470 0.262285 0.052777 -0.128278 0.123553 0.292418 -0.269116 -0.212553 -0.270772 -0.132553 0.017133 -0.225385 0.200322 -0.387358 -0.020843 0.300272 -0.151618 -0.222569 0.245793 -0.056050 -0.061471 -0.104644 0.466592 0.448352 -0.293957 0.207149 -0.266342 0.174873 -0.487581 -0.189036 -0.066685 0.150210 -0.194703 -0.033110 0.098154 0.176790 0.035959 -0.078452 -0.064833 -0.137162 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::begin() = 0.067005 0.863240 0.593890 -0.295601 0.749647 0.860501 0.141433 0.037810 -0.219112 -0.397607 -0.261033 -0.847299 -0.953758 0.624860 -0.144986 -0.109465 0.957155 -0.044537 -0.002048 -0.071088 0.032184 0.215380 0.975839 0.883851 -0.880931 0.347165 0.339174 0.145644 -0.267925 0.961389 -0.457453 -1.251885 0.152055 0.307502 0.280961 -0.115399 -0.298074 -0.633570 -0.211322 -1.338796 -0.131726 0.592286 -0.425739 -0.070694 0.209312 0.062491 1.548270 0.433506 -0.119258 0.139339 0.231198 0.395299 0.213784 0.042596 0.322694 0.002129 0.617654 -0.281654 -0.377077 0.057099 -0.111495 -0.423426 -0.488402 0.733140 0.710763 0.050402 -0.292578 -0.179547 -0.257909 -0.000908 -0.327437 0.520662 0.556290 0.828330 0.366487 0.183133 0.095200 -0.507975 0.059595 -1.044955 -0.793313 -0.667910 0.396736 0.702089 0.223869 -0.481768 1.079503 -0.133822 0.407654 0.241713 1.285674 -0.636887 -0.151408 -0.408499 -0.284665 0.192481 -0.235854 0.109214 -0.328244 -0.356900 -0.654511 -0.652221 0.333631 -0.081405 -0.479337 0.203355 -0.151127 0.496278 -0.780748 -0.068063 -0.930055 -0.086813 0.060320 -1.152187 -0.669240 0.205445 0.078788 0.362127 -0.256810 -0.708747 0.308546 0.429146 -0.328744 -0.303875 -0.485966 0.814428 0.477927 -0.111427 0.290349 0.154988 0.666563 0.740036 0.520306 -0.114637 -0.100667 0.037844 -0.010703 -0.178516 -0.112959 0.140588 -0.391685 -0.431541 0.157056 0.569339 -0.436275 0.034770 -0.848112 -0.562240 0.327811 1.978444 -0.454416 0.472293 -0.032577 -1.004109 0.436500 -0.226755 -0.713395 -0.138905 0.426904 0.954593 -0.598838 -0.327082 0.544255 1.001084 0.330478 -0.515495 0.504810 0.005288 -0.136529 -0.388179 0.605066 0.086316 0.210353 -0.422090 -0.214821 0.516906 1.447441 -0.313947 -1.293872 0.206007 0.182121 0.397936 0.016349 0.063808 -0.048647 -0.075554 0.484336 -0.168423 0.423770 0.809663 -1.514011 0.698204 0.050682 -0.750304 0.729176 -0.071184 -0.175206 0.196145 0.315583 0.925371 0.680980 0.300747 -0.040723 -0.549634 -0.714108 -0.140689 0.215476 0.401160 -0.543909 0.657757 0.176402 -0.909431 -0.559014 -0.807933 -0.039607 -0.253284 -0.789126 0.233262 0.179292 -1.714868 1.103135 0.261337 -0.197616 -0.129804 -0.415316 0.334468 -0.682102 -0.976842 0.214754 -0.449914 -0.633587 0.203615 -0.424634 0.220722 0.378589 0.402001 -0.647041 -0.829564 0.730034 0.370317 0.637577 0.554835 0.465979 0.730279 0.406116 -0.485367 -0.188415 -0.767477 1.003624 -0.124122 -0.328767 0.076258 -0.609967 0.442865 1.051778 -0.210011 -0.233441 -0.860993 0.458381 -0.463417 -0.033935 0.414050 -0.031825 -0.430000 0.017372 0.532730 -0.097527 -0.361438 -0.668687 -0.062535 -0.434521 -0.643796 0.017018 -0.744240 -0.161838 0.831895 -0.462032 -0.668904 0.257117 -0.229724 -0.240782 -0.058575 0.588301 0.518519 -0.686025 0.721382 -0.666824 0.587422 -0.995793 -0.731445 0.144392 -0.460642 -0.197080 -0.392850 -0.190304 0.122061 -0.071898 -0.022997 -0.209470 0.006042 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::end() = 0.056096 0.656822 0.474245 -0.188300 0.582488 0.597330 0.135677 0.095598 -0.205514 -0.365739 -0.212050 -0.700911 -0.807609 0.522661 -0.097062 -0.072203 0.810927 0.032373 0.020979 -0.079316 -0.001236 0.065860 0.810405 0.751491 -0.714314 0.293935 0.215099 0.147170 -0.222833 0.802701 -0.342463 -0.999610 0.158145 0.241299 0.265181 -0.143169 -0.233230 -0.456989 -0.230476 -1.156318 -0.110637 0.554476 -0.233465 -0.048334 0.181319 0.125700 1.233084 0.366530 -0.082269 0.189327 0.163015 0.244241 0.240419 0.055630 0.261667 0.007330 0.478122 -0.296399 -0.380748 0.093782 -0.091991 -0.495253 -0.397198 0.570580 0.611072 0.008034 -0.234431 -0.164218 -0.235317 0.023025 -0.218745 0.417865 0.458851 0.598702 0.323980 0.165144 0.079020 -0.404047 0.027312 -1.011788 -0.677757 -0.573354 0.444329 0.632051 0.168828 -0.403053 0.893274 -0.106951 0.339637 0.176591 1.044927 -0.530753 -0.158441 -0.328048 -0.167246 0.195567 -0.227541 0.039147 -0.182817 -0.267135 -0.542692 -0.499923 0.343650 -0.083050 -0.393194 0.185483 -0.148331 0.437056 -0.711283 -0.094134 -0.838730 -0.107616 0.071114 -0.926719 -0.411311 0.201117 0.023839 0.361274 -0.205790 -0.517933 0.267329 0.310413 -0.245282 -0.228031 -0.503114 0.707762 0.311622 -0.110881 0.275962 0.185004 0.505003 0.586624 0.450487 -0.093850 -0.099646 0.093422 -0.042092 -0.119849 -0.108943 0.051572 -0.278602 -0.400406 0.099625 0.376170 -0.380903 0.025653 -0.743870 -0.411811 0.279986 1.452118 -0.335829 0.381649 -0.004996 -0.791415 0.423148 -0.182468 -0.542003 -0.084417 0.395962 0.739071 -0.412820 -0.276153 0.394938 0.827250 0.284935 -0.409009 0.358915 -0.023438 -0.046197 -0.279961 0.503422 0.104011 0.206198 -0.359752 -0.147133 0.367693 1.171343 -0.264684 -0.991805 0.151750 0.101689 0.291223 -0.083896 0.054756 -0.046286 -0.087738 0.289782 -0.123544 0.287711 0.669021 -1.205440 0.609981 0.004860 -0.577836 0.616370 -0.092933 -0.134158 0.006042 0.231538 0.724589 0.607868 0.253680 -0.035673 -0.414063 -0.602770 -0.116471 0.149761 0.341101 -0.429680 0.552846 0.087635 -0.707324 -0.446510 -0.684386 -0.012846 -0.213214 -0.611689 0.199789 0.284182 -1.368115 0.856682 0.160319 -0.215345 -0.084934 -0.253040 0.247453 -0.575099 -0.797717 0.155108 -0.388509 -0.609285 0.089646 -0.348715 0.172003 0.246996 0.187086 -0.448075 -0.641497 0.650887 0.272271 0.500471 0.463568 0.335029 0.629532 0.478597 -0.458058 -0.106866 -0.573970 0.710341 -0.248193 -0.205164 0.091968 -0.494231 0.363020 0.910627 -0.104516 -0.155728 -0.655816 0.433786 -0.368825 -0.101044 0.395147 -0.085933 -0.259920 0.104337 0.478303 -0.156259 -0.305400 -0.566381 -0.045104 -0.281906 -0.497579 0.041808 -0.666536 -0.134937 0.666890 -0.374392 -0.556066 0.226927 -0.184102 -0.232208 -0.107299 0.566223 0.431875 -0.580661 0.630919 -0.530099 0.454748 -0.813241 -0.529756 0.053636 -0.253898 -0.180490 -0.272611 -0.093216 0.079977 -0.032787 -0.090252 -0.226348 -0.015478 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator*() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getV() = -0.047218 0.211520 0.173578 -0.163131 0.338931 0.276887 0.098022 -0.121002 -0.211791 -0.184305 -0.035016 -0.343816 -0.314707 0.349703 -0.094322 0.179826 0.494304 0.047802 -0.006836 -0.145829 0.152472 -0.112273 0.552504 0.517405 -0.424501 0.137028 0.207685 0.119054 -0.010510 0.357156 -0.194642 -0.441168 0.173485 -0.157012 0.056576 -0.208939 -0.104982 -0.087697 0.134441 -0.669314 -0.038488 0.052678 -0.117968 -0.001575 0.019363 0.130666 0.574990 0.268657 -0.067544 0.295387 0.212470 0.101993 0.108151 0.065894 0.147292 0.103488 0.263984 -0.109537 -0.141117 0.023698 -0.063129 -0.284273 -0.097014 0.356473 0.425900 -0.042561 -0.125123 0.070264 -0.113418 0.020459 -0.007893 0.254868 0.104470 0.234999 0.208368 -0.335686 0.040890 -0.589449 -0.068334 -0.773278 -0.366893 -0.219156 0.181447 0.116992 0.242243 0.052714 0.544146 -0.021391 0.065349 0.134618 0.547635 -0.428325 -0.098242 -0.078961 -0.119153 0.068412 -0.165099 0.064260 -0.047525 -0.065884 -0.314037 -0.378819 0.310873 0.030739 -0.236998 -0.126724 -0.065431 0.266081 -0.494469 -0.234040 -0.397195 -0.029244 -0.095910 -0.555919 -0.086315 -0.026835 0.310304 0.152110 -0.147171 -0.421393 0.144941 0.242039 -0.110254 -0.246583 -0.090774 0.291561 0.244580 0.020415 0.111741 0.046844 0.206542 0.559675 0.317342 -0.134677 -0.061917 0.068455 -0.077168 0.033379 -0.134669 -0.045187 -0.063098 -0.326565 0.130958 0.257318 -0.228704 -0.044769 0.085111 -0.165040 0.105225 0.930307 -0.124658 0.291125 0.150578 -0.470364 0.099107 -0.215147 -0.165003 0.091913 0.270062 0.303462 -0.377771 -0.238994 0.233768 0.488780 0.198865 -0.382204 -0.084453 -0.021850 0.029552 -0.049695 0.197784 0.054484 0.060195 -0.232008 -0.067905 0.171370 0.767101 -0.212436 -0.292312 0.112853 0.050999 -0.015172 -0.318504 -0.052647 -0.203103 -0.014758 0.143538 -0.018780 0.133709 0.419656 -0.839635 0.338397 -0.154220 -0.236777 0.282894 0.096113 -0.170798 -0.215780 0.076091 0.321591 0.358937 0.067391 0.153281 -0.064763 -0.398949 -0.048667 0.045774 0.144463 -0.275198 0.335170 0.125471 -0.442494 -0.229948 -0.106808 0.032933 -0.185247 -0.170451 0.200861 0.128279 -0.894644 0.415855 0.035301 -0.178996 0.108309 -0.087255 0.333096 -0.343903 -0.439023 0.209108 -0.178794 -0.167543 -0.006024 -0.129080 0.153064 0.074203 0.080502 -0.248415 -0.356951 0.264966 0.040778 0.272150 0.258342 0.108141 0.383748 -0.129180 -0.253416 -0.201323 -0.148758 0.220420 -0.157120 -0.138913 -0.055427 -0.220309 0.295362 0.525435 0.036125 -0.105648 -0.143807 0.336105 -0.400288 -0.017284 0.240097 0.305782 -0.219988 0.123235 0.272420 -0.205267 -0.110141 -0.239513 -0.038891 -0.138397 -0.266083 0.177533 -0.280506 0.018176 0.252638 -0.100352 -0.192388 0.219416 -0.031724 0.004322 -0.052863 0.373727 0.463281 -0.290679 0.132060 -0.326864 0.187146 -0.480645 -0.362807 0.051973 0.043146 -0.192769 -0.108704 -0.065248 0.211378 0.052774 -0.060859 -0.097222 -0.037730 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator++() = 0.037140 0.690044 0.544389 -0.359768 0.605162 0.657833 0.095892 -0.106483 -0.222616 -0.246371 -0.229465 -0.587156 -0.613684 0.513340 -0.118560 0.015423 0.820494 -0.015790 -0.041968 -0.164440 0.179929 -0.015592 0.816339 0.795730 -0.792844 0.305049 0.456806 0.214151 -0.024786 0.788225 -0.513450 -0.780354 0.067919 0.041292 0.269430 -0.260011 -0.240030 -0.452287 -0.004907 -1.179803 -0.087048 0.215978 -0.295113 -0.043795 0.126748 0.128234 1.249460 0.378844 -0.172688 0.126741 0.311813 0.304534 0.162819 0.029680 0.284096 0.171601 0.732875 -0.014911 -0.174443 0.043672 -0.052690 -0.333512 -0.185686 0.660860 0.639258 0.026941 -0.237458 -0.029019 -0.074991 -0.058297 -0.241072 0.455620 0.272417 0.659054 0.298056 -0.337472 0.250644 -0.773803 0.058924 -0.974091 -0.643395 -0.538146 0.158459 0.255320 0.314916 -0.158632 0.928182 -0.118127 0.335062 0.128060 0.994116 -0.619436 -0.072658 -0.301643 -0.337667 0.140839 -0.164010 0.077736 -0.205796 -0.271491 -0.501183 -0.628085 0.450281 0.025798 -0.450310 0.110294 -0.106952 0.409584 -0.626980 -0.207369 -0.686547 -0.104561 -0.121571 -0.955680 -0.362078 -0.047436 0.315618 0.173813 -0.175973 -0.776881 0.187625 0.496338 -0.271300 -0.329360 -0.358794 0.656179 0.495630 -0.106447 0.178694 -0.015770 0.495768 0.676795 0.523410 -0.175043 -0.110883 0.080377 -0.159891 -0.195813 -0.210439 0.079256 -0.161525 -0.386690 0.041447 0.526525 -0.351689 0.105610 -0.121860 -0.449705 0.265237 1.937499 -0.333624 0.391648 0.015369 -0.845470 0.343845 -0.133683 -0.559112 0.027690 0.381230 0.752298 -0.864628 -0.332300 0.378583 0.829415 0.281364 -0.543360 0.111144 -0.063815 -0.206356 -0.171283 0.418444 -0.019269 0.059209 -0.349419 -0.198644 0.353804 1.302202 -0.283419 -0.968885 0.150894 0.061618 0.062477 -0.302433 0.003585 -0.221635 -0.031334 0.227835 -0.148284 0.412943 0.678376 -1.495420 0.584472 -0.124016 -0.669572 0.660736 -0.047338 -0.138914 -0.067831 0.281243 0.721471 0.588570 0.121589 -0.007489 -0.345977 -0.631440 -0.111734 0.123859 0.312719 -0.531722 0.560291 0.250742 -0.808691 -0.425051 -0.473138 0.008969 -0.273475 -0.526113 0.221757 -0.047702 -1.483571 0.893947 0.174949 -0.136715 0.088870 -0.363819 0.276129 -0.586147 -0.762622 0.236063 -0.169549 -0.227071 0.089762 -0.324989 0.304988 0.209638 0.298266 -0.645953 -0.771739 0.412762 0.113263 0.473540 0.484979 0.359026 0.581719 0.158591 -0.309294 -0.347731 -0.386882 0.570715 0.001451 -0.291974 -0.140235 -0.507517 0.414201 0.924576 -0.164545 -0.054301 -0.534148 0.448047 -0.514983 -0.043913 0.278524 0.153857 -0.451678 -0.027856 0.382838 -0.134188 -0.307762 -0.498244 -0.169127 -0.272608 -0.503686 0.166587 -0.559499 -0.092551 0.653342 -0.351176 -0.454095 0.323132 -0.167205 -0.089077 -0.018018 0.505951 0.631647 -0.514363 0.402274 -0.539405 0.446948 -0.844867 -0.571458 0.092526 -0.263642 -0.212396 -0.292455 -0.105546 0.244018 -0.024409 0.035622 -0.041949 -0.078018 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::longestPath(int) = -4.308810 -2.702126 1.865094 -7.972634 6.171641 7.175510 2.344456 -5.095929 -9.149304 -5.450614 2.845545 -15.142291 -9.471031 11.409726 -5.699651 5.669662 13.629775 0.011001 -4.236149 -3.674078 7.927247 0.242221 15.637864 15.096740 -12.216449 -0.390965 -0.716551 7.167768 3.391743 3.524404 5.985440 -9.753608 0.948271 -4.318694 3.940432 -4.158868 -2.360784 3.156673 4.317724 -19.393434 -2.382871 11.019606 -0.054116 0.861777 3.968044 5.642466 10.547848 9.144053 -2.284231 8.554554 6.764719 1.361410 7.238789 -0.427513 -0.160148 -2.094913 3.761021 -4.286682 -3.272004 -0.172190 -3.790627 -3.210867 1.390559 12.992385 14.903574 -1.217264 -5.910335 1.900025 3.541987 3.784432 2.743975 10.935549 -0.271546 6.661752 7.977691 -7.615920 1.455528 -16.671340 4.971355 -17.320756 -8.870326 -1.309383 8.979012 11.409486 2.664370 -4.016264 18.974515 -1.591899 -4.934938 14.232711 13.876558 -5.802424 -1.930373 -6.053300 -6.591477 0.872368 -5.485003 0.523877 0.111736 8.556125 -10.031999 -5.634166 -1.721689 -0.514943 -6.742490 -2.167603 -3.096874 9.227312 -11.294901 -6.006554 -6.654782 8.655960 0.715355 -19.228526 -7.525684 -6.343243 -0.040345 2.911018 -5.678092 -5.502808 5.425528 1.947471 -3.011858 -0.533424 -7.976639 10.042932 6.785345 1.305398 -1.354823 8.281215 3.096532 11.398579 2.288452 -5.366113 -1.343099 4.489778 -1.405492 3.792801 -5.103377 -0.415267 3.813924 -8.851029 -1.395770 4.365315 -5.780073 -4.835038 -5.918379 -4.431893 0.388859 34.204145 -4.048482 12.023639 8.578345 -10.327715 6.406383 -1.357914 1.377156 3.294397 6.280597 8.402109 -13.423966 -8.463441 10.803876 16.444486 5.207207 -8.842020 1.428610 5.333853 1.950467 -2.753109 7.489597 3.609779 -1.057320 -6.223907 -1.261525 4.482647 20.262547 -3.936916 -4.857476 1.502614 8.184027 -0.828305 -7.898036 -0.156903 -6.692857 -2.603602 5.985855 2.775746 4.899909 12.847246 -17.765553 11.060606 2.854012 1.142998 8.886836 -0.111095 -7.331416 -14.019130 -3.579416 6.052946 8.390322 -1.720425 -1.497243 0.230650 -13.277778 2.659132 3.281022 4.500392 -7.658779 12.744188 -1.930313 -5.338567 -5.390492 -1.147104 -5.039403 -2.756942 -6.602637 8.035137 3.316809 -11.827103 10.296048 0.281222 -5.194299 -0.404082 -1.509360 10.040049 -9.952685 -11.228035 5.809681 -6.280544 -11.145752 -5.591049 -4.908749 3.311362 5.765356 1.276354 -10.722988 -10.808951 10.994960 -4.152169 12.356800 6.761076 -1.790524 9.172370 2.127244 -6.201729 -5.133268 -10.349586 3.982219 1.717865 -4.459211 -5.041098 -3.305782 7.944578 10.120293 -2.349567 -6.621616 -4.147828 11.913058 -6.353736 -2.385517 3.106034 -3.561985 -7.139132 4.774288 5.506299 -7.472101 2.186924 -10.786594 1.720155 -8.893867 -3.718021 7.903704 -5.436612 0.761225 1.774316 -2.684636 -2.944564 3.473389 5.416747 -2.259771 2.372027 16.423069 8.225901 -2.590202 3.063069 -13.462115 8.904705 -13.156988 -9.307190 -1.128617 -0.076226 -3.574706 -2.266371 -0.601390 8.356781 8.855426 -6.986792 -6.632386 4.724946 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::stack >, void>() = 0.058933 0.212654 0.413247 -0.235060 0.277973 -0.016459 0.085676 0.272721 -0.328630 -0.377531 -0.096736 -0.389611 -0.470133 0.371374 -0.089051 -0.213233 0.619521 0.207681 0.030493 -0.233412 -0.036838 -0.171014 0.478424 0.568025 -0.507299 0.183988 0.015920 0.259964 0.027783 0.522403 -0.037535 -0.542479 0.023614 0.287266 0.318779 -0.288033 -0.112637 -0.112416 -0.398729 -0.906963 -0.014553 0.424464 0.038196 0.005877 0.202086 0.433680 0.640796 0.240591 -0.135322 0.287343 0.216648 0.168651 0.170616 0.022763 0.118821 -0.044305 0.331163 -0.245704 -0.292606 0.218577 -0.032706 -0.524705 -0.154162 0.350994 0.441678 -0.064020 -0.122077 -0.276792 -0.031301 0.107040 0.067971 0.188113 0.267023 0.161942 0.241647 0.078864 0.032166 -0.554146 0.119596 -1.250344 -0.441629 -0.369505 0.733960 0.403707 -0.173752 -0.232534 0.548587 -0.064428 0.232332 0.261612 0.534177 -0.104663 -0.156975 -0.206594 -0.164173 0.278192 -0.151449 -0.106724 -0.002526 0.096664 -0.311607 -0.135672 0.265531 -0.174620 -0.241739 0.259946 -0.110362 0.360923 -0.672995 0.061159 -0.580290 0.136341 0.272267 -0.512589 -0.066260 -0.039040 0.188171 0.229924 -0.153417 0.030338 0.149019 0.064735 -0.212803 0.189180 -0.681885 0.512794 0.004411 -0.072271 0.131962 0.157376 0.187649 0.102651 0.256850 -0.179202 -0.084874 0.251894 -0.083446 -0.114073 -0.223792 -0.042577 0.101213 -0.244815 0.121942 -0.094581 -0.291392 -0.211051 -0.479070 -0.198442 0.213858 0.760576 -0.140727 0.275215 0.049612 -0.323928 0.256151 0.057056 -0.171013 0.082904 0.368181 0.288722 0.017254 -0.194978 0.082555 0.510615 0.227492 -0.234991 0.109217 -0.031329 -0.062538 0.023418 0.321538 0.019009 0.041513 -0.208644 -0.092559 0.074038 0.612396 0.075567 -0.554721 -0.105510 0.150158 0.032272 -0.056414 0.136029 0.108882 0.015748 0.074935 -0.088180 0.224153 0.440281 -1.137966 0.467454 0.008698 -0.147539 0.251729 -0.094828 -0.032651 -0.485617 0.046871 0.308599 0.596959 0.145697 -0.048057 -0.040610 -0.389885 -0.070413 0.055553 0.258661 -0.292748 0.315361 0.059406 -0.330454 -0.190129 -0.488304 -0.028863 0.079542 -0.346671 0.115457 0.232050 -1.015067 0.403929 -0.088333 -0.162348 -0.111856 -0.025714 0.087919 -0.411713 -0.421114 -0.020169 -0.154481 -0.638561 -0.206754 -0.253539 0.192347 -0.109298 0.029840 -0.143280 -0.360204 0.515138 -0.029090 0.298825 0.303864 0.005808 0.547128 0.464598 -0.193486 -0.030188 -0.203274 0.383740 -0.413172 0.028944 0.353752 -0.291049 0.114332 0.598710 -0.010634 -0.056637 -0.180640 0.467032 -0.105648 -0.235636 0.250302 -0.219690 0.086788 0.444856 0.338632 -0.374456 -0.184331 -0.481468 -0.047141 0.052535 -0.156073 0.204186 -0.418221 -0.007608 0.307878 -0.094896 -0.420753 0.206962 -0.119478 -0.243667 -0.082094 0.544408 0.535588 -0.341751 0.550232 -0.306173 0.267890 -0.478084 -0.189287 -0.232453 -0.065460 -0.105575 0.011995 -0.169045 0.101717 0.066614 -0.053972 -0.227256 0.176004 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::empty() const = -0.025566 0.191729 0.256441 -0.155261 0.260568 0.124800 0.087510 -0.011867 -0.207953 -0.270447 -0.015011 -0.448661 -0.414658 0.330932 -0.110772 0.023132 0.462693 0.052144 -0.010584 -0.158712 0.048036 -0.116135 0.502159 0.504551 -0.434408 0.120640 0.084635 0.193720 0.033413 0.342352 -0.072034 -0.427234 0.100055 0.063303 0.173551 -0.137645 -0.080586 -0.104028 -0.085213 -0.667728 -0.052949 0.268753 0.035198 0.006199 0.087613 0.256631 0.557410 0.260631 -0.070164 0.238972 0.209025 0.055201 0.180682 0.042702 0.112801 -0.090351 0.314066 -0.201489 -0.213704 0.074468 -0.041073 -0.385456 -0.142464 0.357493 0.444222 -0.036374 -0.111015 -0.070186 -0.074258 0.075657 0.012334 0.240610 0.164744 0.251246 0.218471 -0.077062 0.110485 -0.475645 0.008369 -0.857316 -0.374821 -0.238057 0.388802 0.314856 0.058202 -0.096769 0.521927 0.036358 0.078518 0.146999 0.546152 -0.264352 -0.122641 -0.100075 -0.119576 0.154923 -0.190183 0.052769 -0.014371 0.060107 -0.304519 -0.195371 0.240703 -0.062014 -0.223720 0.095902 -0.094379 0.249969 -0.501638 -0.074435 -0.418108 -0.027358 0.097178 -0.553070 -0.042537 -0.019398 0.144430 0.176510 -0.132150 -0.170216 0.129270 0.093340 -0.113857 -0.036157 -0.468619 0.376408 0.141437 0.005898 0.113900 0.142078 0.220589 0.319317 0.193392 -0.134385 -0.077842 0.090916 -0.090323 0.025774 -0.131804 -0.043280 0.047068 -0.268029 0.083992 0.080247 -0.223425 -0.108253 -0.253078 -0.158871 0.127348 0.731063 -0.108715 0.284971 0.131169 -0.373419 0.194582 -0.115864 -0.152339 0.067122 0.254733 0.290315 -0.144887 -0.219079 0.217828 0.486034 0.181931 -0.277194 0.057097 0.048513 0.030749 -0.089391 0.255935 0.078079 0.043770 -0.205731 -0.063448 0.174008 0.597774 -0.091418 -0.350894 0.044910 0.063840 0.060526 -0.195152 0.028809 -0.030991 -0.012189 0.045363 0.007443 0.136511 0.403148 -0.832731 0.368318 0.019535 -0.150840 0.330986 -0.051302 -0.163173 -0.346097 0.091522 0.307432 0.345225 0.090969 0.019254 -0.067346 -0.386294 -0.042518 0.042694 0.161681 -0.257267 0.316658 0.042590 -0.316905 -0.249119 -0.308339 0.001810 -0.059567 -0.264969 0.181165 0.219495 -0.789708 0.405736 -0.016724 -0.198205 -0.062886 -0.098409 0.171535 -0.373351 -0.390018 0.062722 -0.266688 -0.409200 -0.140794 -0.156829 0.075885 -0.008574 0.010819 -0.203740 -0.265585 0.378578 -0.031700 0.260348 0.249129 0.083267 0.363827 0.255546 -0.232247 -0.089678 -0.125193 0.238812 -0.259549 -0.110981 0.141503 -0.205364 0.198688 0.507693 -0.022394 -0.070496 -0.128444 0.319080 -0.203774 -0.186605 0.217520 -0.020556 -0.109664 0.239221 0.253563 -0.228548 -0.092576 -0.359688 -0.090706 -0.099380 -0.252162 0.159443 -0.295924 -0.003319 0.264014 -0.128953 -0.267464 0.195791 -0.051119 -0.119283 -0.048355 0.443444 0.404751 -0.273019 0.293988 -0.362841 0.205956 -0.468219 -0.298697 0.001484 0.007608 -0.135169 -0.084763 -0.059997 0.134267 0.089976 -0.129559 -0.191048 0.092978 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::top() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::pop() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator->() const = 0.000821 0.438625 0.308138 -0.180299 0.350094 0.233294 0.074185 0.000466 -0.116602 -0.366986 -0.117228 -0.439950 -0.548628 0.354376 -0.129149 -0.067425 0.560716 0.003177 0.039708 -0.191307 0.097769 -0.095321 0.598276 0.554324 -0.589630 0.148346 0.314285 0.198865 0.063898 0.398908 -0.102382 -0.568878 0.125666 0.088572 0.251974 -0.159475 -0.073182 -0.285621 -0.167985 -0.789830 -0.088988 0.162565 -0.137807 0.005048 0.060394 0.276819 0.815112 0.301563 -0.177114 0.148971 0.283083 0.210908 0.103002 0.046615 0.065545 -0.105424 0.303885 -0.182347 -0.192738 0.064996 -0.015915 -0.442410 -0.181256 0.473130 0.510272 -0.022204 -0.087277 0.013284 -0.129714 0.054474 -0.118508 0.286764 0.280990 0.412539 0.283279 -0.194147 0.033903 -0.673233 -0.029909 -1.105132 -0.440508 -0.443830 0.279163 0.227682 0.092957 -0.045211 0.626846 0.079067 0.243933 0.253031 0.723711 -0.337916 -0.111669 -0.239461 -0.168694 0.208923 -0.226735 0.111674 -0.079215 -0.037792 -0.349832 -0.360658 0.245759 -0.059460 -0.286741 -0.004529 -0.132122 0.279076 -0.589406 -0.045001 -0.584315 -0.135410 0.061995 -0.709344 -0.128022 0.015416 0.346174 0.173453 -0.056776 -0.324432 0.095344 0.267861 -0.121770 -0.133209 -0.377138 0.421259 0.255979 -0.031421 0.165194 0.117637 0.338309 0.422499 0.382995 -0.093222 -0.157945 0.062985 -0.138863 -0.110344 -0.168604 0.024704 0.099209 -0.300142 0.140993 0.251834 -0.249389 -0.194865 -0.148178 -0.389717 0.261923 1.032775 -0.148965 0.252230 0.057077 -0.535211 0.132347 -0.178748 -0.339195 0.057003 0.309170 0.463698 -0.250085 -0.239566 0.239579 0.558993 0.194854 -0.333922 0.068922 -0.004334 -0.046286 -0.164816 0.250746 0.079684 0.003782 -0.221707 -0.105149 0.307234 0.708360 -0.141237 -0.448538 0.074789 0.157817 0.084779 -0.198643 0.033232 -0.036207 -0.012006 0.179451 -0.045154 0.206654 0.484964 -1.041421 0.390667 0.020428 -0.236091 0.252019 -0.028394 -0.125963 -0.303642 0.272933 0.506114 0.356761 0.089662 0.086306 -0.198824 -0.446300 -0.064622 0.094609 0.260898 -0.307501 0.351791 0.094185 -0.452205 -0.395863 -0.298417 0.002583 -0.078276 -0.286417 0.158956 0.142015 -1.067841 0.622540 -0.072176 -0.191943 -0.068547 -0.223321 0.256838 -0.498311 -0.540069 0.119289 -0.263358 -0.400399 -0.067247 -0.193243 0.179608 0.040279 0.088468 -0.280928 -0.419312 0.376555 0.057570 0.252525 0.305726 0.271409 0.554010 0.044187 -0.250231 -0.219902 -0.200879 0.371696 -0.203367 -0.189902 0.088299 -0.254610 0.247714 0.699185 -0.131046 -0.088515 -0.151334 0.318053 -0.367763 -0.208442 0.230021 0.180057 -0.198842 0.215057 0.275552 -0.211236 -0.234257 -0.432530 -0.043277 -0.095707 -0.410172 0.086171 -0.454062 -0.052640 0.476117 -0.180025 -0.337607 0.271668 -0.097848 -0.053898 -0.080934 0.390590 0.575284 -0.439417 0.289800 -0.424525 0.252969 -0.640224 -0.457289 0.050555 -0.072238 -0.012291 -0.129643 -0.128607 0.128268 0.018036 -0.059587 -0.151493 0.016987 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getWeight() = -0.047218 0.211520 0.173578 -0.163131 0.338931 0.276887 0.098022 -0.121002 -0.211791 -0.184305 -0.035016 -0.343816 -0.314707 0.349703 -0.094322 0.179826 0.494304 0.047802 -0.006836 -0.145829 0.152472 -0.112273 0.552504 0.517405 -0.424501 0.137028 0.207685 0.119054 -0.010510 0.357156 -0.194642 -0.441168 0.173485 -0.157012 0.056576 -0.208939 -0.104982 -0.087697 0.134441 -0.669314 -0.038488 0.052678 -0.117968 -0.001575 0.019363 0.130666 0.574990 0.268657 -0.067544 0.295387 0.212470 0.101993 0.108151 0.065894 0.147292 0.103488 0.263984 -0.109537 -0.141117 0.023698 -0.063129 -0.284273 -0.097014 0.356473 0.425900 -0.042561 -0.125123 0.070264 -0.113418 0.020459 -0.007893 0.254868 0.104470 0.234999 0.208368 -0.335686 0.040890 -0.589449 -0.068334 -0.773278 -0.366893 -0.219156 0.181447 0.116992 0.242243 0.052714 0.544146 -0.021391 0.065349 0.134618 0.547635 -0.428325 -0.098242 -0.078961 -0.119153 0.068412 -0.165099 0.064260 -0.047525 -0.065884 -0.314037 -0.378819 0.310873 0.030739 -0.236998 -0.126724 -0.065431 0.266081 -0.494469 -0.234040 -0.397195 -0.029244 -0.095910 -0.555919 -0.086315 -0.026835 0.310304 0.152110 -0.147171 -0.421393 0.144941 0.242039 -0.110254 -0.246583 -0.090774 0.291561 0.244580 0.020415 0.111741 0.046844 0.206542 0.559675 0.317342 -0.134677 -0.061917 0.068455 -0.077168 0.033379 -0.134669 -0.045187 -0.063098 -0.326565 0.130958 0.257318 -0.228704 -0.044769 0.085111 -0.165040 0.105225 0.930307 -0.124658 0.291125 0.150578 -0.470364 0.099107 -0.215147 -0.165003 0.091913 0.270062 0.303462 -0.377771 -0.238994 0.233768 0.488780 0.198865 -0.382204 -0.084453 -0.021850 0.029552 -0.049695 0.197784 0.054484 0.060195 -0.232008 -0.067905 0.171370 0.767101 -0.212436 -0.292312 0.112853 0.050999 -0.015172 -0.318504 -0.052647 -0.203103 -0.014758 0.143538 -0.018780 0.133709 0.419656 -0.839635 0.338397 -0.154220 -0.236777 0.282894 0.096113 -0.170798 -0.215780 0.076091 0.321591 0.358937 0.067391 0.153281 -0.064763 -0.398949 -0.048667 0.045774 0.144463 -0.275198 0.335170 0.125471 -0.442494 -0.229948 -0.106808 0.032933 -0.185247 -0.170451 0.200861 0.128279 -0.894644 0.415855 0.035301 -0.178996 0.108309 -0.087255 0.333096 -0.343903 -0.439023 0.209108 -0.178794 -0.167543 -0.006024 -0.129080 0.153064 0.074203 0.080502 -0.248415 -0.356951 0.264966 0.040778 0.272150 0.258342 0.108141 0.383748 -0.129180 -0.253416 -0.201323 -0.148758 0.220420 -0.157120 -0.138913 -0.055427 -0.220309 0.295362 0.525435 0.036125 -0.105648 -0.143807 0.336105 -0.400288 -0.017284 0.240097 0.305782 -0.219988 0.123235 0.272420 -0.205267 -0.110141 -0.239513 -0.038891 -0.138397 -0.266083 0.177533 -0.280506 0.018176 0.252638 -0.100352 -0.192388 0.219416 -0.031724 0.004322 -0.052863 0.373727 0.463281 -0.290679 0.132060 -0.326864 0.187146 -0.480645 -0.362807 0.051973 0.043146 -0.192769 -0.108704 -0.065248 0.211378 0.052774 -0.060859 -0.097222 -0.037730 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::~stack() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 0.513293 0.033202 2.404144 -1.164839 2.539286 -1.600534 0.239961 1.178680 -1.376737 -0.723409 -0.546108 -1.376047 -1.902410 1.278919 -1.023627 -0.518126 1.431909 -0.032947 0.814966 -1.340110 0.017578 -0.775535 1.472082 -0.297071 -2.231869 0.480303 -0.516357 1.238906 0.321831 2.524992 0.855016 -1.792476 -1.077985 1.340660 1.874199 -1.194533 -0.911402 -0.173201 -1.317140 -3.746322 -0.892531 3.475916 -1.917717 1.027786 3.219975 6.105175 1.421248 0.577455 -1.782750 3.612411 -0.144912 -0.096276 2.167335 -0.470716 -1.684417 -0.135998 2.775990 -0.368082 -2.008482 1.938293 -1.285093 -1.104153 1.031934 1.328289 1.877723 -1.948299 -1.659793 0.302930 1.247250 0.489053 0.213517 2.431960 0.594734 1.556245 1.831735 0.983498 -0.406808 -1.997452 1.101214 -5.128358 -1.910091 -1.024040 2.151177 0.986520 -2.411398 -0.927817 3.396011 0.394875 -0.097205 3.434017 1.065562 1.202982 0.177323 -1.802549 -0.959937 -0.762442 0.095457 -2.629714 0.845795 2.055058 -1.150175 -0.536627 -1.048877 -1.860546 -0.857296 1.640673 -1.788528 1.680981 -3.228233 -0.897549 -2.504686 1.856350 0.369515 -2.013381 -0.617840 1.327452 2.109655 1.091457 1.354800 1.576181 1.658491 0.305576 -1.297208 2.833770 -1.794553 3.056319 0.071079 0.071605 -0.061165 2.113993 -0.259475 -1.923293 1.668191 -0.227584 -1.560392 2.055047 0.414412 -0.233431 -0.350414 1.034231 0.770675 -0.490875 0.373325 -1.020885 -0.609318 -1.327303 -3.396151 -2.132108 0.067657 0.985358 -1.795716 1.180571 -1.206861 -1.552189 0.272696 1.418517 0.068165 -0.151492 1.186043 2.540303 0.296172 -0.224139 1.410922 1.409198 0.206745 -1.784165 0.971524 0.598068 0.080245 1.366971 1.664338 1.712101 -0.834937 -0.746486 0.136811 -3.493278 3.736337 0.725053 -3.369219 -0.679431 1.628151 -0.572598 -0.178177 1.063955 1.570925 -2.091625 0.837480 -0.391828 -0.103633 1.057379 -5.404549 1.828849 0.684940 -0.225511 -0.007579 -1.426970 0.681505 -4.251174 -2.669944 0.604641 1.333334 0.425353 -1.145332 -0.569453 -0.713874 2.142630 -0.061845 1.546623 -0.200470 2.457361 -0.974205 -1.484193 0.409643 -0.863555 -0.269405 1.848771 -1.194931 0.230146 0.602107 -4.309721 0.530885 -1.607988 -0.431726 0.132934 2.545482 1.243520 -0.272691 -1.331487 -0.086058 -1.111109 -3.720294 -2.366853 -2.085155 -0.389578 0.727563 -0.046329 -0.896962 -2.420209 0.739897 -1.346257 0.307478 1.457087 -0.866214 3.890845 0.524760 -1.533043 0.274942 -2.354661 1.790312 -0.300193 3.398078 2.068945 -0.927806 0.152734 0.658146 -0.739564 0.593196 -2.887724 1.797584 0.063385 0.433451 0.440475 -2.888264 0.631006 2.280258 0.986487 0.083845 0.267290 -1.668227 1.263646 -2.338749 3.632431 0.520305 -2.122004 -2.983250 0.132985 -0.507276 -2.301426 -0.587505 -0.257862 -1.723930 -1.222980 2.876092 4.675607 -1.909310 3.156237 0.625935 2.157669 -0.961638 0.507757 -2.710369 -1.256422 1.319731 0.626501 -0.237813 -0.080118 1.883486 -2.288994 -0.866779 0.574615 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.006270 0.209553 0.292279 -0.159805 0.265071 0.114335 0.085135 0.085048 -0.215663 -0.258482 -0.089495 -0.330329 -0.387003 0.328452 -0.106173 -0.023737 0.525543 0.160742 0.018351 -0.161427 0.048355 -0.152743 0.488210 0.500844 -0.449443 0.121718 0.100763 0.228743 0.020564 0.444233 -0.112996 -0.435835 0.104812 0.089033 0.216732 -0.260933 -0.046468 -0.082132 -0.190707 -0.747207 -0.027565 0.244818 0.035988 0.002431 0.100010 0.243204 0.556359 0.254170 -0.086252 0.215857 0.191790 0.136655 0.146609 0.061028 0.095871 0.023180 0.287370 -0.223226 -0.237738 0.104131 -0.030810 -0.450634 -0.113444 0.337232 0.442579 -0.030790 -0.061813 -0.107180 -0.089319 0.068325 0.032043 0.178262 0.158862 0.199785 0.199217 -0.078978 0.074126 -0.470961 0.003996 -0.916753 -0.362227 -0.349387 0.403671 0.305193 0.040487 -0.099267 0.500333 -0.008976 0.188511 0.142187 0.516285 -0.269653 -0.135496 -0.184789 -0.108158 0.203119 -0.193127 -0.035437 -0.013344 0.023592 -0.280049 -0.246706 0.270892 -0.046569 -0.217573 0.100167 -0.107734 0.303271 -0.545511 -0.103114 -0.498990 -0.017148 0.063912 -0.511677 -0.013857 -0.038744 0.173443 0.183952 -0.079675 -0.181262 0.114254 0.176645 -0.114522 -0.033226 -0.456171 0.405398 0.091242 -0.083273 0.127506 0.098324 0.155066 0.286066 0.263279 -0.135876 -0.107087 0.169777 -0.143076 -0.074038 -0.216390 -0.047274 0.046819 -0.295406 0.064253 0.088624 -0.246557 -0.096963 -0.249464 -0.173221 0.221393 0.739656 -0.097530 0.219656 0.077528 -0.381208 0.223225 -0.045644 -0.159184 0.086376 0.292149 0.260436 -0.169570 -0.219116 0.095124 0.444470 0.204218 -0.229404 0.008615 -0.082128 0.004549 -0.025470 0.211799 0.077843 -0.001647 -0.209992 -0.068151 0.110036 0.597557 -0.066813 -0.378516 0.020261 0.066034 -0.036431 -0.201841 0.022912 -0.039934 -0.015550 0.029531 -0.045439 0.142521 0.412388 -0.847037 0.391896 -0.035701 -0.170845 0.285780 -0.088279 -0.071353 -0.331990 0.110244 0.322531 0.438658 0.078183 0.030979 -0.046165 -0.374565 -0.057545 0.035741 0.232260 -0.238019 0.278081 0.076825 -0.352391 -0.246861 -0.308811 0.011891 -0.085354 -0.241842 0.136329 0.220740 -0.828911 0.402897 -0.069538 -0.177101 0.029366 -0.050040 0.141061 -0.402939 -0.412012 0.072869 -0.133707 -0.372815 -0.138577 -0.146693 0.186730 -0.048303 -0.006656 -0.171721 -0.322490 0.338563 -0.001925 0.203425 0.247962 0.092966 0.405576 0.276840 -0.216598 -0.111454 -0.131464 0.202828 -0.298914 -0.049539 0.146193 -0.218593 0.209310 0.588664 0.010995 -0.046322 -0.125523 0.398316 -0.203233 -0.189449 0.252666 -0.033177 -0.034880 0.240415 0.293804 -0.306320 -0.207005 -0.331877 -0.031447 0.026771 -0.235760 0.165600 -0.386666 0.012711 0.296324 -0.092963 -0.309899 0.213450 -0.056987 -0.125716 -0.082861 0.466826 0.395792 -0.281981 0.349645 -0.291069 0.186258 -0.484186 -0.223372 -0.094433 -0.004536 -0.113764 0.009973 -0.057481 0.138186 0.038031 -0.031345 -0.146014 -0.007594 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.030779 0.519908 0.424403 -0.141922 0.553111 0.334109 0.218920 0.142301 -0.281067 -0.504399 -0.190557 -0.594331 -0.873823 0.658548 -0.077541 0.103421 1.076696 0.227630 0.062206 -0.281562 0.271215 -0.459573 1.035184 0.990135 -0.905161 0.253881 0.433553 0.318111 0.044826 0.690099 -0.313428 -0.760552 0.382805 -0.212287 0.396107 -0.480277 -0.117733 -0.317167 -0.197538 -1.459811 -0.128716 0.280787 -0.159801 -0.013883 0.052700 0.584912 1.234598 0.537000 -0.265924 0.415980 0.322233 -0.015658 0.267047 0.149686 0.170914 0.114157 0.343591 -0.045777 -0.491402 0.158759 -0.088763 -1.027920 -0.197876 0.651553 0.883385 -0.116277 -0.151774 0.127077 -0.231284 0.070635 -0.078013 0.430704 0.502783 0.364290 0.600199 -0.528065 -0.062532 -1.149851 -0.198153 -2.044102 -0.793666 -0.770325 0.598601 0.108378 0.328369 -0.153819 1.045435 0.000384 0.383297 0.330480 1.177322 -0.800515 -0.281161 -0.473637 -0.072763 0.329587 -0.451591 0.016293 0.308281 -0.315759 -0.644323 -0.690988 0.648975 0.007661 -0.459641 -0.174563 -0.236241 0.659141 -0.963062 -0.399845 -1.182585 -0.328213 -0.057900 -1.133677 0.089752 0.132818 0.538036 0.490447 -0.137008 -0.643317 0.233959 0.518234 -0.152828 -0.459489 -0.303946 0.880923 0.318207 -0.087299 0.396419 0.279004 0.400106 0.825350 0.971625 -0.130415 -0.253771 0.252391 -0.416146 -0.067161 -0.358894 -0.164278 0.249623 -0.658494 0.045857 0.366978 -0.496964 -0.101115 0.128008 -0.370268 0.437165 1.652989 -0.163309 0.426710 0.132706 -0.879098 0.543926 -0.287014 -0.432017 0.189181 0.668669 0.635453 -0.781099 -0.433620 0.275939 0.949885 0.399483 -0.806767 -0.171380 -0.228703 0.115486 -0.193607 0.349703 0.236214 0.219338 -0.440254 -0.084083 0.386976 1.358022 -0.567666 -0.833750 0.158666 0.033397 -0.007307 -0.886970 -0.056310 -0.258697 -0.123966 0.053667 -0.076670 0.221748 0.847740 -1.519703 0.729511 -0.295493 -0.480891 0.633591 0.011113 -0.206336 -0.762199 0.319595 0.756033 0.777967 0.270336 0.024048 -0.226659 -0.794597 -0.103977 0.100369 0.441601 -0.400806 0.646724 -0.022398 -0.687280 -0.585327 -0.471756 0.051420 -0.334948 -0.270262 0.305881 0.387178 -1.683735 0.902769 -0.142053 -0.435279 0.150880 -0.104912 0.433140 -0.815476 -1.014063 0.310143 -0.315218 -0.670524 -0.284636 -0.279185 0.361578 0.107687 -0.206814 -0.338572 -0.909811 0.729929 0.044984 0.484228 0.521681 0.319905 1.102542 0.346573 -0.656878 -0.431242 -0.313277 0.301853 -0.523117 -0.248572 -0.269852 -0.418538 0.550812 1.237885 0.006166 0.006747 -0.373595 0.731741 -0.903622 -0.377836 0.607354 0.475350 -0.179781 0.403810 0.648802 -0.558266 -0.440380 -0.590647 -0.131887 -0.031854 -0.604359 0.197594 -0.900503 -0.056119 0.668332 -0.254767 -0.409269 0.421257 -0.113020 -0.055308 -0.312023 0.817772 1.157779 -0.911203 0.354274 -0.624082 0.454082 -1.052009 -0.630067 0.017043 0.208088 -0.160570 -0.084513 0.183623 0.209271 0.052457 -0.388645 -0.322355 -0.200725 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.060826 0.467639 0.725997 -0.401384 0.468123 0.346417 0.117000 0.020335 -0.397072 -0.137818 -0.228884 -0.560434 -0.459604 0.527188 -0.029195 0.045070 0.881837 0.205997 -0.123836 -0.214813 0.164043 -0.394714 0.701368 0.853280 -0.724456 0.352873 0.245316 0.382089 0.079409 0.943722 -0.679783 -0.402420 -0.071235 0.010596 0.441220 -0.470832 -0.260386 -0.236781 -0.096152 -1.346697 -0.024668 0.401505 0.166520 -0.060943 0.206278 0.347522 1.073731 0.354962 -0.120621 0.159829 0.239248 -0.016077 0.371886 0.027612 0.418618 0.371591 1.092317 0.163949 -0.273252 0.175985 -0.049146 -0.550304 0.038709 0.568180 0.657590 -0.004805 -0.262280 -0.190563 0.131376 -0.070283 -0.071377 0.398880 0.094497 0.411452 0.265109 -0.429271 0.593988 -0.733172 0.167314 -1.071239 -0.664907 -0.479303 0.405425 0.226243 0.265765 -0.262925 0.893233 -0.249427 0.315503 -0.150306 0.826326 -0.584192 -0.102632 -0.263878 -0.326803 0.177623 -0.118182 -0.179366 0.124189 -0.214741 -0.459543 -0.423005 0.727735 0.055212 -0.450647 0.467147 -0.092793 0.496162 -0.577917 -0.338314 -0.670964 -0.107228 -0.114358 -0.801871 0.092991 -0.206550 0.063096 0.197810 -0.224063 -0.661551 0.206595 0.408344 -0.307588 -0.163483 -0.836186 0.891404 0.282813 -0.201960 0.156970 -0.033009 0.309738 0.373302 0.500550 -0.286955 -0.067485 0.287441 -0.381438 -0.190218 -0.329264 -0.116180 0.016196 -0.403469 -0.304138 0.210976 -0.390433 0.394608 -0.042913 -0.136783 0.224604 1.795468 -0.281583 0.394970 0.011135 -0.669950 0.757112 0.183071 -0.400096 0.121000 0.449179 0.581135 -1.075536 -0.369088 0.191720 0.808657 0.318408 -0.545725 -0.119681 -0.188947 -0.214502 0.090587 0.429430 -0.075021 0.067344 -0.375464 -0.176478 0.047726 1.322827 -0.245023 -1.059007 0.038776 -0.264077 -0.202201 -0.688177 0.020475 -0.291628 -0.050001 -0.359508 -0.166371 0.413872 0.652347 -1.553420 0.731381 -0.293458 -0.742010 1.048908 -0.297527 -0.063159 -0.567962 0.092222 0.538319 0.797243 0.090766 -0.310153 -0.164266 -0.639088 -0.112785 -0.025786 0.297720 -0.545453 0.569396 0.156499 -0.686375 -0.243591 -0.645574 0.047140 -0.294498 -0.488410 0.221448 0.025608 -1.214996 0.702951 0.168312 -0.126310 0.238783 -0.140440 -0.096388 -0.536130 -0.630641 0.090001 0.040302 -0.225298 -0.229576 -0.340394 0.329841 -0.032881 -0.057483 -0.610900 -0.785163 0.425346 -0.218264 0.471309 0.501802 0.123788 0.458057 0.977251 -0.287953 -0.278570 -0.081332 0.087688 -0.189498 -0.123708 -0.214842 -0.543642 0.380636 0.910012 -0.018768 0.262590 -0.489547 0.631372 -0.331659 -0.232574 0.318081 -0.346074 -0.263594 0.048595 0.428616 -0.305570 -0.293151 -0.505460 -0.419990 -0.073380 -0.280360 0.349175 -0.546018 -0.076961 0.487702 -0.363216 -0.418384 0.316018 -0.155235 -0.240367 -0.048190 0.766101 0.621215 -0.396337 0.494663 -0.440231 0.434907 -0.730527 -0.205613 -0.138143 -0.002426 -0.399682 -0.147221 0.205864 0.265919 0.057865 -0.099454 -0.042885 -0.106477 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::~_List_base() = 0.006833 0.165219 0.393724 -0.217897 0.245057 0.030167 0.084887 0.213061 -0.284149 -0.347130 -0.079194 -0.370930 -0.480802 0.363593 -0.149243 -0.168131 0.607403 0.226503 0.023250 -0.236433 0.012430 -0.142318 0.535234 0.597452 -0.562913 0.114501 0.045837 0.352823 0.115715 0.466581 0.005610 -0.476136 0.070389 0.245102 0.320267 -0.318763 -0.017692 -0.071553 -0.384978 -0.900392 -0.033268 0.369395 0.058010 0.031056 0.183971 0.413099 0.578294 0.293805 -0.152753 0.266981 0.272675 0.185172 0.175268 0.043140 0.028540 -0.096718 0.298490 -0.285308 -0.282950 0.167162 -0.001216 -0.579997 -0.133582 0.392510 0.538650 -0.048680 -0.051851 -0.236707 -0.030570 0.123793 0.098355 0.183132 0.223918 0.197457 0.265815 0.048157 0.055408 -0.584506 0.084148 -1.182482 -0.413686 -0.426928 0.676762 0.416183 -0.123267 -0.200586 0.559186 0.023693 0.230627 0.271655 0.535620 -0.159468 -0.168475 -0.248144 -0.151618 0.332483 -0.245232 -0.046660 -0.013956 0.152249 -0.301172 -0.185189 0.226984 -0.136983 -0.250302 0.216562 -0.152116 0.367550 -0.655807 0.003581 -0.588544 0.085116 0.221540 -0.577334 -0.057703 -0.102948 0.217323 0.208934 -0.063525 0.023736 0.088895 0.104035 -0.137200 0.138861 -0.696790 0.500988 0.060153 -0.114703 0.127661 0.170235 0.148529 0.159807 0.233121 -0.177045 -0.154093 0.264069 -0.166499 -0.104430 -0.318176 -0.016655 0.183964 -0.290618 0.099010 -0.029072 -0.283988 -0.236423 -0.427616 -0.199369 0.281223 0.819456 -0.062733 0.253159 0.112594 -0.337952 0.261110 0.038954 -0.122577 0.159970 0.345582 0.239839 -0.059242 -0.234403 0.035046 0.501326 0.229468 -0.230113 0.078910 -0.053037 -0.015610 -0.046372 0.270432 0.090174 -0.041356 -0.201584 -0.068057 0.133681 0.541922 0.041397 -0.492794 -0.077912 0.174823 -0.048387 -0.114095 0.093111 0.094748 -0.004793 0.072130 -0.030532 0.192607 0.462851 -1.053532 0.449889 0.091533 -0.071470 0.264295 -0.141775 -0.072384 -0.456189 0.143166 0.312177 0.532294 0.104735 -0.029857 0.016019 -0.429634 -0.053740 0.072933 0.281700 -0.264105 0.304422 0.072418 -0.290232 -0.274180 -0.452270 -0.028247 0.023555 -0.327305 0.146631 0.235173 -0.968816 0.407371 -0.166797 -0.235312 -0.060262 -0.085828 0.118285 -0.505133 -0.436953 0.012010 -0.138583 -0.604160 -0.280835 -0.185604 0.222895 -0.108104 0.023793 -0.178210 -0.351653 0.464239 -0.062643 0.216034 0.284615 0.039638 0.512440 0.425449 -0.204963 -0.104333 -0.166069 0.326515 -0.376105 -0.031477 0.304667 -0.233610 0.154794 0.677674 -0.032123 -0.064659 -0.115720 0.501815 -0.146253 -0.323783 0.251873 -0.149026 0.080317 0.425222 0.317468 -0.437193 -0.221707 -0.456225 -0.039168 0.122638 -0.233039 0.247780 -0.451657 0.054272 0.317456 -0.058197 -0.400621 0.257199 -0.072663 -0.208961 -0.083260 0.592842 0.524612 -0.316291 0.504059 -0.354573 0.243476 -0.546508 -0.210264 -0.194906 -0.095281 -0.066929 0.082423 -0.130343 0.148835 0.094349 -0.051291 -0.234126 0.111588 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_clear() = -0.146747 2.197092 1.609386 -1.150671 2.439479 2.017526 0.481376 0.215253 -0.834180 -1.868663 -0.915427 -2.410067 -3.457661 2.307862 -0.424059 0.244727 3.517216 -0.079109 0.020129 -0.887595 1.446108 -0.897322 3.502688 2.973231 -3.566327 0.803051 1.852169 1.418140 0.302730 2.488554 -0.839761 -3.057058 0.555625 -0.307456 1.811271 -1.183812 -0.434713 -1.344249 -0.620575 -4.923859 -0.729660 1.451221 -1.313535 0.186179 0.318708 1.647040 4.679172 1.931177 -1.443178 0.882881 1.625122 0.433607 0.899218 0.280134 0.152936 0.059822 1.334942 0.076613 -1.214284 0.373160 -0.336975 -2.665591 -0.509751 2.610121 3.192474 -0.542392 -0.888692 0.798109 -0.420422 0.221940 -0.738624 2.070139 1.776831 1.819836 2.360569 -1.733279 -0.317788 -4.332334 0.150839 -6.250447 -2.715023 -2.842597 1.274541 0.909208 0.995742 -1.109804 4.331726 -0.159239 1.076294 1.834139 4.307677 -2.400951 -0.524097 -2.495156 -0.882586 0.847613 -1.455332 -0.098641 0.524364 -0.643292 -2.116351 -2.503743 1.273496 -0.329869 -1.801051 -0.754332 -1.258502 2.398780 -2.960497 -1.061895 -3.989938 -0.317621 -0.136906 -4.421339 -0.912395 0.174414 1.226281 1.075003 -0.157905 -2.339552 0.798929 1.967094 -0.886839 -1.365268 -0.965532 3.284151 1.968415 -0.539192 1.080884 1.149424 1.771731 2.655351 3.144121 -0.463663 -1.346704 0.884496 -1.015825 -0.532042 -1.310755 0.216260 1.014100 -2.066257 -0.167385 1.771700 -1.392627 -0.320896 -0.024727 -2.343702 1.499157 7.651912 -0.979924 1.356684 0.176134 -3.181205 2.221750 -0.451525 -1.896386 0.623257 1.898226 2.881034 -3.448574 -1.586106 1.743579 3.500133 1.163083 -2.873665 -0.095573 -0.285704 0.064681 -1.135952 1.329154 0.960116 0.300168 -1.122497 -0.481329 1.471171 5.028964 -1.857573 -3.580464 0.873362 1.162355 -0.048090 -2.583148 -0.184732 -1.273561 -0.854306 1.042400 -0.246636 1.323494 3.103441 -5.675341 2.433119 -0.089992 -1.877675 2.220890 -0.333440 -0.334800 -2.463053 1.075017 2.960258 2.349378 0.589154 0.010118 -1.476656 -2.932003 0.116244 0.751245 1.666359 -1.625960 2.432914 -0.292802 -2.261225 -2.149699 -1.671467 -0.684685 -0.890457 -1.489020 1.008257 0.663654 -5.796358 3.643517 -0.443178 -1.006482 0.316286 -0.868747 1.912105 -2.735000 -3.611260 1.376845 -1.029508 -2.280408 -0.720094 -1.063592 1.376526 0.884553 -0.082308 -2.005739 -3.959450 2.415527 0.145547 1.937832 1.867647 1.496973 3.609873 1.016548 -2.118815 -1.823064 -1.945529 1.844380 -0.497196 -1.013591 -1.536362 -1.304171 1.858508 4.011223 -0.519377 -0.073563 -1.966358 2.300654 -2.998144 -1.055201 1.616794 1.023750 -1.371434 0.952517 1.939205 -1.238824 -1.572578 -2.665347 0.019683 -0.915574 -2.257573 0.456542 -3.112178 -0.577380 2.817442 -1.246549 -1.617727 1.463621 -0.081255 -0.415984 -1.076200 3.005193 3.756698 -2.985247 1.200485 -2.611231 2.095420 -3.861484 -2.504323 0.104338 -0.242134 -0.094311 -0.678172 0.489869 0.798301 0.237989 -0.940762 -0.980840 -0.731564 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node::_M_valptr() = 0.012305 0.349749 0.294082 -0.131164 0.274435 0.135684 0.070834 0.043800 -0.123903 -0.317028 -0.103909 -0.416740 -0.479461 0.304487 -0.094171 -0.064184 0.480188 0.043613 0.030630 -0.152900 0.028665 -0.132023 0.490754 0.476727 -0.476650 0.143587 0.177762 0.190206 0.025267 0.397863 -0.098754 -0.470791 0.086641 0.131142 0.250282 -0.141669 -0.071874 -0.208227 -0.201205 -0.704392 -0.070904 0.257244 0.012602 0.000000 0.082319 0.250165 0.677249 0.249337 -0.107980 0.138147 0.196497 0.121810 0.158932 0.044178 0.089865 -0.086428 0.319945 -0.218209 -0.221476 0.089028 -0.017637 -0.441867 -0.161456 0.377428 0.435991 -0.022403 -0.083765 -0.056513 -0.110858 0.056832 -0.075308 0.236955 0.223009 0.321608 0.220530 -0.068482 0.102892 -0.461414 -0.002195 -0.931576 -0.391105 -0.374121 0.321383 0.315105 0.050037 -0.098835 0.531774 0.046499 0.208586 0.141945 0.604657 -0.268489 -0.110934 -0.185273 -0.114865 0.191757 -0.190864 0.040207 -0.034556 -0.006824 -0.296609 -0.239920 0.252745 -0.066531 -0.240485 0.109283 -0.118285 0.244197 -0.518135 -0.040015 -0.515297 -0.129115 0.086440 -0.573508 -0.028552 0.029956 0.157037 0.181610 -0.062476 -0.220052 0.103114 0.172012 -0.106551 -0.056631 -0.500096 0.409321 0.144054 -0.054275 0.152786 0.128418 0.266730 0.288767 0.275896 -0.088406 -0.122960 0.089788 -0.127626 -0.084027 -0.134913 -0.018250 0.063735 -0.263887 0.059919 0.130353 -0.223588 -0.110744 -0.285765 -0.276534 0.215469 0.746731 -0.128292 0.212817 0.040958 -0.423763 0.206107 -0.103631 -0.271188 0.032456 0.268789 0.377806 -0.146202 -0.203014 0.181400 0.478264 0.170460 -0.227539 0.076720 -0.009971 -0.016208 -0.107643 0.246132 0.074840 0.023212 -0.200150 -0.080971 0.199125 0.591446 -0.090874 -0.386650 0.050392 0.066746 0.068845 -0.180654 0.044349 -0.015386 -0.025373 0.034299 -0.037382 0.150104 0.406739 -0.843835 0.373970 0.020086 -0.211844 0.298137 -0.105309 -0.089702 -0.324981 0.190910 0.407189 0.341049 0.079381 0.020325 -0.162489 -0.379601 -0.059742 0.050451 0.224805 -0.261581 0.304749 0.042606 -0.362639 -0.310171 -0.337554 0.011889 -0.064890 -0.275050 0.131787 0.218553 -0.826345 0.498897 -0.053065 -0.171488 -0.065630 -0.133606 0.126951 -0.413177 -0.432284 0.048228 -0.240764 -0.403423 -0.099756 -0.177764 0.121949 -0.015422 -0.013561 -0.205512 -0.306742 0.357775 0.019978 0.211326 0.265283 0.192353 0.420239 0.280872 -0.233187 -0.107347 -0.136484 0.240940 -0.262447 -0.106824 0.135515 -0.231951 0.194248 0.599917 -0.072279 -0.034060 -0.137616 0.293407 -0.215214 -0.223769 0.219667 -0.035373 -0.110917 0.204586 0.254199 -0.196250 -0.196064 -0.391546 -0.060265 -0.055149 -0.310300 0.083673 -0.403943 -0.060445 0.392873 -0.180316 -0.318856 0.217352 -0.089233 -0.115215 -0.084856 0.398161 0.396867 -0.339553 0.330578 -0.343839 0.203774 -0.520922 -0.304352 -0.008097 -0.010966 -0.049901 -0.093523 -0.058751 0.080876 0.027401 -0.080061 -0.157046 0.018511 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____clang_call_terminate = -0.028606 -0.097207 0.133504 -0.192564 0.133293 -0.114683 -0.110707 0.216408 -0.169728 -0.294772 -0.108404 -0.230022 -0.234212 0.162593 -0.123148 -0.184431 0.266422 0.132565 0.029428 -0.103340 -0.043404 -0.003393 0.103948 0.054641 -0.189519 -0.077012 -0.131424 0.343290 0.164842 0.094732 0.144288 -0.133905 -0.040814 0.239104 0.153222 -0.130928 0.146411 0.113529 -0.396088 -0.193554 0.067142 0.114650 -0.035299 0.153828 0.034556 0.330510 0.117755 0.092859 -0.159261 0.010844 0.211493 0.115595 0.056362 0.028580 -0.214370 -0.193820 -0.003691 -0.192444 -0.115473 0.088611 0.007969 -0.354438 -0.128041 0.024191 0.206876 -0.058438 -0.034902 -0.092875 0.082530 0.094501 0.235481 -0.081131 0.242628 -0.057832 0.106082 0.251981 -0.114865 -0.191537 0.066218 -0.560390 0.079753 -0.200030 0.418292 0.278811 -0.447277 -0.236091 0.082509 0.010503 0.092802 0.195914 0.170281 0.145460 -0.150635 -0.335592 0.033010 0.249628 -0.130304 -0.152609 0.067377 0.357261 0.079901 0.104988 -0.150237 -0.295959 -0.067914 0.128650 -0.151026 0.246923 -0.316559 0.232503 -0.320242 0.201968 0.341612 -0.150199 -0.121714 -0.031475 -0.020135 0.044112 0.054632 0.292991 -0.008912 -0.066543 -0.077836 0.372726 -0.372765 0.246234 -0.081985 -0.074866 -0.063371 0.200210 0.125201 -0.120436 -0.089093 -0.113329 -0.169145 0.206295 -0.007956 -0.187966 -0.325462 -0.006991 0.298310 -0.145260 0.054652 -0.115293 -0.123649 -0.157208 -0.354687 -0.102931 0.194563 0.139712 0.026472 -0.101961 0.002821 0.044591 0.141999 0.245591 0.092194 0.074210 -0.039292 0.088079 0.237864 -0.084565 -0.028120 0.031376 0.110656 -0.110771 0.178386 -0.095841 0.105450 0.015195 -0.060356 0.210556 -0.223749 0.146216 0.028216 0.059483 0.020704 0.099129 -0.245397 -0.047967 0.138402 -0.039381 0.013803 0.056730 0.180674 -0.068688 0.137348 0.100638 0.027625 0.236389 -0.336047 0.137750 0.395840 0.159756 -0.045034 -0.151336 0.145974 -0.257094 -0.019279 0.053468 0.222399 0.147045 -0.031067 0.017933 -0.090718 0.008990 0.223153 0.187429 0.070290 -0.139080 0.021807 0.187217 -0.049526 -0.197243 -0.178625 0.324922 -0.208736 0.086407 0.025078 -0.378424 0.062475 -0.249759 -0.060597 -0.123072 -0.102033 0.108690 -0.272132 -0.047823 -0.047990 -0.115948 -0.503139 -0.246460 0.105473 0.097115 -0.161887 0.007324 0.014689 -0.248947 0.180926 -0.163405 -0.107411 0.068937 -0.052253 0.102424 0.357968 0.052369 -0.029458 -0.030896 0.155904 -0.209003 0.095683 0.295132 0.169784 -0.003384 0.286431 -0.012463 -0.024580 0.034140 0.059647 0.050646 -0.318627 0.074700 -0.188848 0.105083 0.413922 0.083980 -0.318073 -0.110615 -0.222270 0.058802 0.153379 -0.173074 0.001657 -0.224395 0.055549 0.198791 0.064060 -0.252103 0.198192 -0.017533 -0.238825 -0.127052 0.368829 0.313391 -0.068269 0.322139 -0.221346 0.231728 -0.266014 -0.102778 -0.096477 -0.083320 0.042462 0.147978 0.003068 -0.001984 -0.049307 0.108506 -0.244222 0.119502 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.103476 0.641697 0.497859 -0.202878 0.824161 0.516597 0.369500 0.199136 -0.509319 -0.784774 -0.236954 -0.916835 -1.303886 1.063035 -0.046613 0.349197 1.700650 0.360424 0.073659 -0.393964 0.548691 -0.872602 1.593052 1.589766 -1.335531 0.378593 0.612344 0.426203 0.015948 0.951294 -0.429000 -1.131466 0.622660 -0.596594 0.583665 -0.797886 -0.232911 -0.325815 -0.097579 -2.287175 -0.213409 0.462332 -0.265000 -0.024871 0.040935 0.892494 1.828105 0.847668 -0.444437 0.766416 0.464175 -0.211691 0.465819 0.225554 0.270836 0.282215 0.277457 0.084568 -0.729449 0.271789 -0.198052 -1.576208 -0.182025 0.974142 1.368218 -0.250670 -0.319011 0.319413 -0.322016 0.093341 -0.086111 0.736093 0.774742 0.376674 1.007349 -1.076518 -0.223372 -1.972082 -0.281879 -3.209558 -1.252099 -1.063134 0.931508 0.125410 0.621496 -0.317222 1.677852 -0.107913 0.448728 0.634241 1.796746 -1.321889 -0.430544 -0.762861 -0.088307 0.411738 -0.690179 -0.033443 0.611984 -0.542362 -1.041807 -1.121291 1.025034 0.053994 -0.719234 -0.519137 -0.355197 1.089247 -1.427822 -0.792111 -1.825397 -0.422587 -0.163332 -1.762972 0.288106 0.176759 0.731003 0.808045 -0.331878 -1.077506 0.422808 0.769429 -0.241371 -0.839180 -0.289121 1.417857 0.496134 -0.087667 0.608159 0.493262 0.561385 1.383818 1.578165 -0.222703 -0.352038 0.437886 -0.648718 0.015306 -0.560612 -0.342949 0.495275 -1.084932 -0.094193 0.527074 -0.783678 -0.072079 0.497341 -0.503512 0.559925 2.718368 -0.248745 0.733298 0.299526 -1.345701 1.042707 -0.455047 -0.568554 0.349751 1.109417 0.957254 -1.509566 -0.695434 0.496442 1.539338 0.632007 -1.363167 -0.469452 -0.316951 0.274198 -0.273107 0.546770 0.361921 0.440750 -0.705069 -0.088574 0.574652 2.248802 -1.020561 -1.086397 0.258004 0.095687 -0.057476 -1.686181 -0.137442 -0.676947 -0.255673 0.057129 -0.085487 0.323742 1.327839 -2.231755 1.128992 -0.638718 -0.713144 0.971406 0.126124 -0.378079 -1.466239 0.369500 1.083932 1.236242 0.416507 0.104194 -0.313970 -1.279089 -0.123174 0.148120 0.636787 -0.637661 1.099386 -0.193474 -1.007322 -0.822727 -0.561396 -0.044277 -0.644216 -0.301495 0.539293 0.696047 -2.386497 1.320983 -0.176136 -0.689653 0.328782 -0.043990 0.806984 -1.209328 -1.605837 0.603913 -0.473636 -0.988665 -0.457622 -0.445601 0.559666 0.207534 -0.549578 -0.491850 -1.563544 1.186865 0.034156 0.892035 0.816438 0.375754 1.754578 0.563718 -1.112083 -0.711544 -0.583959 0.327162 -0.783837 -0.390482 -0.751213 -0.622451 0.915509 1.848173 0.112926 -0.002076 -0.557441 1.194270 -1.514949 -0.493447 0.966419 0.804998 -0.295204 0.597015 1.031906 -0.911318 -0.579525 -0.923953 -0.105150 -0.117822 -0.872058 0.352672 -1.361710 -0.086151 0.905872 -0.382456 -0.471999 0.621644 -0.043703 -0.036295 -0.510417 1.352060 1.799761 -1.395362 0.351887 -0.997538 0.726116 -1.591363 -0.969847 -0.015495 0.565129 -0.326315 -0.166925 0.444464 0.361782 0.163303 -0.724187 -0.534850 -0.336825 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.010088 0.232207 0.188492 -0.072998 0.182935 -0.029877 0.068429 0.058254 -0.103004 -0.335118 -0.068245 -0.293561 -0.402479 0.252177 -0.081225 -0.030164 0.414488 0.080087 0.062735 -0.199535 0.064349 -0.244841 0.432842 0.421964 -0.423013 0.095116 0.190210 0.200391 0.108990 0.240220 0.012608 -0.316604 0.131755 0.022369 0.236193 -0.187244 -0.008337 -0.109040 -0.187140 -0.607351 -0.067898 0.124756 0.054467 0.027408 0.032401 0.340028 0.499926 0.234587 -0.140125 0.198959 0.214899 0.059850 0.129637 0.059649 0.004518 -0.100224 0.164353 -0.197093 -0.196409 0.101679 0.003589 -0.514237 -0.090051 0.310570 0.410582 -0.064571 -0.029130 0.028613 -0.107122 0.078407 -0.009816 0.183967 0.183551 0.182910 0.240772 -0.212136 0.017723 -0.569305 -0.062191 -1.071965 -0.324952 -0.349275 0.326755 0.157643 0.037917 0.033505 0.440617 0.105938 0.175916 0.187909 0.482964 -0.231783 -0.118701 -0.159010 -0.051276 0.212009 -0.218422 0.041607 0.066213 0.051973 -0.238013 -0.208360 0.255778 -0.061104 -0.200598 -0.022401 -0.129327 0.219855 -0.519941 -0.071073 -0.492990 -0.156212 0.072789 -0.483876 0.129907 0.011088 0.291225 0.172600 -0.005757 -0.133617 0.054127 0.149127 -0.038309 -0.057364 -0.394286 0.314593 0.089673 -0.030875 0.150806 0.147654 0.176749 0.269087 0.313176 -0.072435 -0.156924 0.118563 -0.170251 -0.051677 -0.164588 -0.064312 0.212293 -0.269007 0.083561 0.058666 -0.194018 -0.203982 -0.043936 -0.239287 0.214097 0.506449 -0.030378 0.161587 0.084658 -0.322518 0.118995 -0.134461 -0.167802 0.111491 0.278228 0.248176 -0.064068 -0.188637 0.090262 0.385160 0.149311 -0.227436 -0.076973 -0.033060 0.044046 -0.056599 0.149102 0.097379 -0.000374 -0.159369 -0.037461 0.158021 0.432262 -0.091974 -0.146472 0.020532 0.077385 -0.021933 -0.298888 0.024181 -0.033845 -0.024189 -0.015103 -0.000276 0.070596 0.344322 -0.732850 0.302444 -0.025394 -0.063623 0.139213 -0.050143 -0.084915 -0.493745 0.188887 0.305332 0.283649 0.042595 0.091355 -0.063253 -0.334963 -0.040403 0.028893 0.200839 -0.193272 0.246880 0.005419 -0.250098 -0.283359 -0.174870 0.029344 -0.038205 -0.108981 0.125483 0.246905 -0.721088 0.376087 -0.173194 -0.209671 -0.023677 -0.061045 0.169823 -0.391308 -0.360944 0.059643 -0.201954 -0.376097 -0.181216 -0.117324 0.130889 -0.091315 -0.126447 -0.081962 -0.231245 0.297408 -0.040476 0.115419 0.214459 0.140459 0.453263 0.116668 -0.222922 -0.138353 -0.007371 0.078413 -0.327438 -0.066299 0.104008 -0.138874 0.167869 0.558035 -0.025552 -0.010802 0.053843 0.293459 -0.273170 -0.275551 0.211118 0.125949 -0.028762 0.302022 0.221124 -0.269968 -0.178218 -0.330223 -0.025846 0.056908 -0.263954 0.110961 -0.376357 -0.025739 0.311112 -0.092385 -0.224769 0.241478 -0.052227 -0.045324 -0.129659 0.368513 0.488641 -0.334053 0.199337 -0.287799 0.120295 -0.457672 -0.255600 -0.040201 0.134505 0.004299 -0.009404 -0.031519 0.086183 0.057146 -0.126842 -0.168371 -0.004533 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::~deque() = 0.107745 0.271634 0.636155 -0.201671 0.618841 -0.213580 0.047607 0.807174 -0.318424 -0.980952 -0.306132 -0.604814 -1.403779 0.476858 -0.170416 -0.441348 0.715004 0.074367 0.210668 -0.584904 0.072178 -0.335570 0.799659 0.451505 -1.181663 0.196346 -0.038039 0.959076 0.429835 0.695268 0.495718 -0.705675 -0.035386 0.744761 0.930428 -0.327013 0.186296 -0.111570 -1.285801 -1.389153 -0.342902 1.073652 -0.154428 0.438323 0.414274 1.420958 0.841123 0.520984 -0.638145 0.664647 0.656729 0.030744 0.535827 0.092888 -0.622092 -0.670699 0.168074 -0.738610 -0.677973 0.454770 0.096615 -1.635359 -0.278893 0.447722 1.003487 -0.554418 -0.183447 -0.052285 -0.088380 0.346900 0.177502 0.517839 0.725794 0.086205 0.961986 0.572347 -0.344246 -0.850019 0.300090 -2.638655 -0.732049 -1.191673 1.438623 0.997571 -0.633661 -0.637116 1.252110 0.229896 0.301850 0.892194 0.788658 0.040607 -0.198535 -0.969018 0.043058 0.654403 -0.650112 -0.428828 0.221091 0.729863 -0.275041 -0.027449 0.022438 -0.814581 -0.461844 0.233205 -0.906065 0.783686 -1.427122 0.244146 -1.560832 0.305230 0.697568 -0.961402 -0.140337 0.281641 0.313520 0.361225 0.568796 0.824738 0.085795 -0.017244 -0.175065 0.617754 -1.327514 1.053684 0.178741 -0.424433 0.420046 0.945861 0.282337 -0.167683 0.645482 -0.047820 -0.969059 0.810758 -0.054193 -0.160479 -0.521083 0.282929 0.771644 -0.536656 0.164189 -0.346783 -0.233737 -0.684831 -1.332399 -0.798901 0.604683 0.624687 0.064021 0.032313 -0.036695 -0.238763 0.590981 0.236648 -0.211145 0.542192 0.419901 0.423387 0.509592 -0.318292 0.123430 0.694262 0.179415 -0.529337 0.358918 0.070521 0.299182 -0.301174 0.387926 0.701022 -0.061307 0.087692 0.047849 -0.063757 0.605408 0.067216 -0.893952 0.035680 0.579912 -0.214985 -0.237462 0.183595 0.510302 -0.567569 0.337499 0.125859 0.072901 0.713742 -1.499008 0.641686 0.721588 0.129400 0.099577 -0.599516 0.369943 -1.199080 0.113495 0.437742 0.699152 0.197749 -0.125880 -0.246031 -0.736853 0.330017 0.348806 0.557053 -0.162746 0.490121 -0.346658 0.101508 -0.493242 -0.951150 -0.344239 0.655712 -0.515827 0.129116 0.556208 -1.703739 0.508982 -0.947026 -0.523597 -0.246577 0.105859 0.467397 -0.748496 -0.650036 0.065339 -0.434207 -1.902195 -0.938931 -0.236963 0.248511 -0.196182 -0.357449 -0.082830 -0.780056 1.018999 -0.217316 0.001164 0.477401 0.135793 1.221894 0.973768 -0.717318 -0.097716 -0.443456 0.668717 -0.823771 0.421919 0.684294 -0.056896 0.035066 1.124718 -0.017095 0.151416 -0.280697 0.819903 -0.305810 -1.034536 0.476533 -0.366578 0.430913 1.402711 0.550377 -0.632452 -0.506820 -1.154007 0.277587 0.290148 -0.271462 0.260251 -1.169403 -0.243655 0.890658 -0.107362 -0.902511 0.564603 -0.147778 -0.676106 -0.856163 1.463523 1.354566 -0.885723 1.079375 -0.602714 0.613899 -0.885508 -0.148791 -0.601346 -0.109206 0.476712 0.331471 0.014093 -0.044465 0.308409 -0.558586 -0.737911 -0.003141 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.042536 0.202646 0.137250 0.014529 0.261946 0.045219 0.146519 0.043450 -0.166282 -0.260925 -0.101344 -0.275340 -0.390466 0.356159 -0.000863 0.221497 0.573032 0.205335 0.058406 -0.154716 0.162289 -0.466104 0.549240 0.516521 -0.397215 0.141786 0.198008 0.150873 -0.017364 0.386131 -0.216827 -0.305618 0.284322 -0.283900 0.187103 -0.340544 -0.046032 -0.033648 -0.019005 -0.767846 -0.051349 0.100417 0.108345 -0.011992 -0.035599 0.307372 0.558357 0.288973 -0.072596 0.314782 0.107944 -0.139078 0.204804 0.136279 0.139697 0.193767 0.164828 -0.087166 -0.323029 0.105097 -0.069876 -0.681741 -0.044318 0.276554 0.467220 -0.098010 -0.058609 0.154805 -0.196458 0.037945 0.019394 0.196815 0.168328 0.054738 0.290602 -0.448646 0.008335 -0.592933 -0.209512 -1.181533 -0.410931 -0.387759 0.275637 0.025757 0.293141 0.053491 0.527802 -0.010094 0.175772 0.041743 0.586721 -0.539136 -0.182382 -0.185406 0.070418 0.140075 -0.261941 -0.068415 0.293507 -0.184974 -0.329244 -0.378065 0.513860 0.069315 -0.219733 -0.171466 -0.124811 0.357705 -0.574525 -0.384246 -0.659909 -0.295748 -0.143827 -0.531552 0.339724 0.106913 0.256911 0.311364 -0.073472 -0.426473 0.158248 0.301316 -0.027535 -0.342599 -0.156586 0.440905 0.069508 -0.053309 0.247420 0.146769 0.122563 0.528555 0.577791 -0.071190 -0.132402 0.172371 -0.287577 0.018461 -0.181839 -0.225410 0.124159 -0.450603 -0.037134 0.152328 -0.278958 0.031304 0.221666 -0.095167 0.221623 0.590196 -0.046629 0.199037 0.097632 -0.460716 0.332339 -0.206640 -0.160814 0.118672 0.396035 0.253019 -0.399645 -0.260152 0.096292 0.466488 0.231057 -0.410891 -0.297572 -0.213233 0.170509 0.019580 0.120475 0.162392 0.144400 -0.271192 -0.008523 0.075648 0.757328 -0.376188 -0.189787 0.133380 -0.139505 -0.116625 -0.732396 -0.095950 -0.281635 -0.092699 -0.195555 -0.031082 -0.004011 0.438959 -0.668305 0.414487 -0.338652 -0.252775 0.368365 -0.006837 -0.096766 -0.612998 0.097952 0.348854 0.441564 0.100642 0.093398 -0.063025 -0.418175 -0.060349 -0.034853 0.227431 -0.179097 0.331151 -0.057146 -0.379888 -0.276271 -0.123277 0.098554 -0.278989 0.006848 0.177330 0.394416 -0.769665 0.401905 -0.109554 -0.265708 0.224621 0.120588 0.222862 -0.400011 -0.508971 0.192719 -0.158183 -0.266023 -0.183318 -0.098109 0.189270 -0.042100 -0.352099 -0.049692 -0.398921 0.329423 -0.015798 0.194112 0.256901 0.128813 0.546448 0.235578 -0.421065 -0.196919 0.005742 -0.164630 -0.457895 -0.043515 -0.204594 -0.187812 0.354732 0.683113 0.157192 0.076262 -0.054184 0.436935 -0.515815 -0.216417 0.411900 0.282827 -0.052447 0.224270 0.393210 -0.360151 -0.252952 -0.234607 -0.056516 0.054206 -0.276564 0.124207 -0.500889 -0.036364 0.296191 -0.120991 -0.156024 0.243415 -0.023706 0.001308 -0.245768 0.494205 0.561322 -0.456918 0.107082 -0.257345 0.130278 -0.523223 -0.238139 -0.028978 0.399264 -0.167411 0.010519 0.233020 0.120995 0.028036 -0.257304 -0.162951 -0.244861 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::begin() = 0.036863 0.420172 0.456205 -0.148082 0.416983 0.283831 0.143694 0.163517 -0.264429 -0.324484 -0.173171 -0.561257 -0.655366 0.475978 -0.049466 -0.015843 0.773879 0.182877 0.010943 -0.151641 0.034716 -0.231736 0.704476 0.730406 -0.635751 0.257795 0.126788 0.256801 -0.072357 0.713503 -0.307077 -0.645398 0.141479 0.110151 0.337235 -0.299277 -0.164047 -0.243237 -0.259742 -1.141630 -0.079560 0.505574 0.042518 -0.025205 0.168146 0.321777 0.957479 0.348709 -0.091285 0.263288 0.154472 0.024728 0.316433 0.073465 0.228534 0.084793 0.496805 -0.192454 -0.403476 0.164019 -0.063744 -0.685235 -0.210165 0.464301 0.610990 -0.047451 -0.180503 -0.153182 -0.128275 0.041399 -0.063342 0.335676 0.323249 0.342122 0.331777 -0.029528 0.169397 -0.496682 0.015603 -1.189440 -0.617703 -0.528658 0.563651 0.462130 0.140547 -0.317534 0.786409 -0.098475 0.296903 0.085046 0.839579 -0.485559 -0.183111 -0.289827 -0.096133 0.243260 -0.247816 -0.077993 0.081039 -0.170697 -0.461537 -0.374076 0.478986 -0.056644 -0.354902 0.224994 -0.159253 0.457108 -0.685692 -0.200260 -0.810007 -0.144584 0.052615 -0.770973 -0.023891 0.092041 0.036625 0.360764 -0.158134 -0.374933 0.217806 0.250081 -0.182583 -0.154212 -0.638484 0.728678 0.160122 -0.142309 0.262403 0.197763 0.315487 0.424723 0.472383 -0.133475 -0.123447 0.227758 -0.209332 -0.083093 -0.213760 -0.087888 -0.027391 -0.421549 -0.053347 0.157627 -0.369471 0.072686 -0.453993 -0.218257 0.269525 1.150635 -0.198895 0.328405 0.047084 -0.604747 0.543496 -0.057937 -0.351036 0.054116 0.435609 0.515712 -0.448890 -0.286741 0.202450 0.722219 0.282638 -0.409275 0.084758 -0.112711 0.017806 -0.109614 0.403367 0.110535 0.172868 -0.330817 -0.088456 0.183490 1.010727 -0.252281 -0.786367 0.070430 -0.046408 0.054663 -0.404616 0.035881 -0.102097 -0.099311 -0.053759 -0.085874 0.203409 0.597352 -1.109382 0.608982 -0.111535 -0.453155 0.653626 -0.170687 -0.098115 -0.407882 0.151054 0.531753 0.644027 0.194655 -0.112941 -0.214533 -0.568580 -0.094879 0.056278 0.313476 -0.363462 0.497707 0.005496 -0.526921 -0.342977 -0.601914 0.023797 -0.206372 -0.423541 0.198526 0.349710 -1.120863 0.638948 0.023794 -0.260487 0.040574 -0.078808 0.109128 -0.543792 -0.663026 0.098855 -0.242124 -0.575339 -0.163830 -0.284655 0.198460 0.050041 -0.104682 -0.312820 -0.571287 0.588329 0.040462 0.389649 0.417947 0.171153 0.594942 0.717198 -0.439036 -0.115649 -0.285882 0.296763 -0.402480 -0.090577 0.014977 -0.409643 0.326602 0.874624 0.011518 0.024638 -0.431236 0.531297 -0.341887 -0.261847 0.406638 -0.162800 -0.084801 0.236726 0.464590 -0.326124 -0.286478 -0.504459 -0.134787 -0.058551 -0.352398 0.167656 -0.637782 -0.082122 0.503906 -0.286365 -0.440769 0.255870 -0.133308 -0.232177 -0.167383 0.674723 0.516603 -0.511905 0.538177 -0.432540 0.361179 -0.704225 -0.301578 -0.087544 0.017212 -0.213491 -0.104137 0.096170 0.104087 0.042718 -0.204124 -0.239285 -0.063488 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::end() = 0.036863 0.420172 0.456205 -0.148082 0.416983 0.283831 0.143694 0.163517 -0.264429 -0.324484 -0.173171 -0.561257 -0.655366 0.475978 -0.049466 -0.015843 0.773879 0.182877 0.010943 -0.151641 0.034716 -0.231736 0.704476 0.730406 -0.635751 0.257795 0.126788 0.256801 -0.072357 0.713503 -0.307077 -0.645398 0.141479 0.110151 0.337235 -0.299277 -0.164047 -0.243237 -0.259742 -1.141630 -0.079560 0.505574 0.042518 -0.025205 0.168146 0.321777 0.957479 0.348709 -0.091285 0.263288 0.154472 0.024728 0.316433 0.073465 0.228534 0.084793 0.496805 -0.192454 -0.403476 0.164019 -0.063744 -0.685235 -0.210165 0.464301 0.610990 -0.047451 -0.180503 -0.153182 -0.128275 0.041399 -0.063342 0.335676 0.323249 0.342122 0.331777 -0.029528 0.169397 -0.496682 0.015603 -1.189440 -0.617703 -0.528658 0.563651 0.462130 0.140547 -0.317534 0.786409 -0.098475 0.296903 0.085046 0.839579 -0.485559 -0.183111 -0.289827 -0.096133 0.243260 -0.247816 -0.077993 0.081039 -0.170697 -0.461537 -0.374076 0.478986 -0.056644 -0.354902 0.224994 -0.159253 0.457108 -0.685692 -0.200260 -0.810007 -0.144584 0.052615 -0.770973 -0.023891 0.092041 0.036625 0.360764 -0.158134 -0.374933 0.217806 0.250081 -0.182583 -0.154212 -0.638484 0.728678 0.160122 -0.142309 0.262403 0.197763 0.315487 0.424723 0.472383 -0.133475 -0.123447 0.227758 -0.209332 -0.083093 -0.213760 -0.087888 -0.027391 -0.421549 -0.053347 0.157627 -0.369471 0.072686 -0.453993 -0.218257 0.269525 1.150635 -0.198895 0.328405 0.047084 -0.604747 0.543496 -0.057937 -0.351036 0.054116 0.435609 0.515712 -0.448890 -0.286741 0.202450 0.722219 0.282638 -0.409275 0.084758 -0.112711 0.017806 -0.109614 0.403367 0.110535 0.172868 -0.330817 -0.088456 0.183490 1.010727 -0.252281 -0.786367 0.070430 -0.046408 0.054663 -0.404616 0.035881 -0.102097 -0.099311 -0.053759 -0.085874 0.203409 0.597352 -1.109382 0.608982 -0.111535 -0.453155 0.653626 -0.170687 -0.098115 -0.407882 0.151054 0.531753 0.644027 0.194655 -0.112941 -0.214533 -0.568580 -0.094879 0.056278 0.313476 -0.363462 0.497707 0.005496 -0.526921 -0.342977 -0.601914 0.023797 -0.206372 -0.423541 0.198526 0.349710 -1.120863 0.638948 0.023794 -0.260487 0.040574 -0.078808 0.109128 -0.543792 -0.663026 0.098855 -0.242124 -0.575339 -0.163830 -0.284655 0.198460 0.050041 -0.104682 -0.312820 -0.571287 0.588329 0.040462 0.389649 0.417947 0.171153 0.594942 0.717198 -0.439036 -0.115649 -0.285882 0.296763 -0.402480 -0.090577 0.014977 -0.409643 0.326602 0.874624 0.011518 0.024638 -0.431236 0.531297 -0.341887 -0.261847 0.406638 -0.162800 -0.084801 0.236726 0.464590 -0.326124 -0.286478 -0.504459 -0.134787 -0.058551 -0.352398 0.167656 -0.637782 -0.082122 0.503906 -0.286365 -0.440769 0.255870 -0.133308 -0.232177 -0.167383 0.674723 0.516603 -0.511905 0.538177 -0.432540 0.361179 -0.704225 -0.301578 -0.087544 0.017212 -0.213491 -0.104137 0.096170 0.104087 0.042718 -0.204124 -0.239285 -0.063488 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::~_Deque_base() = 0.162058 1.837287 1.773074 -1.408828 1.694031 2.509798 0.131412 -0.105788 -0.797269 -0.579080 -0.535676 -2.345244 -1.972510 1.437495 -0.528347 -0.599969 2.099291 -0.330755 -0.385305 -0.002464 -0.012828 1.360229 1.979824 2.103772 -2.072229 0.771330 0.422771 0.590147 -0.580222 2.453377 -0.955022 -3.095043 -0.506630 1.504020 0.828746 -0.018366 -0.915494 -1.380388 -0.412700 -3.158533 -0.251780 2.155074 -0.839770 -0.197554 0.939747 -0.576603 3.515289 0.900955 -0.225944 -0.118886 0.702695 1.440177 0.615834 -0.243690 0.901670 -0.127557 2.150512 -0.606850 -0.408552 0.072849 -0.255169 0.250002 -0.996078 1.945635 1.601495 0.358894 -0.978448 -1.176674 0.088608 -0.003474 -0.801649 1.420177 0.852982 2.358509 0.517457 1.138041 0.858550 -0.878229 1.178098 -0.770047 -1.742801 -1.069982 0.935095 2.578517 0.123857 -1.817523 2.646099 -0.690163 0.671469 0.601841 2.734780 -0.763339 -0.047305 -0.939518 -1.417849 0.369983 -0.153179 0.191083 -1.480657 -0.282178 -1.430796 -1.158838 0.119690 -0.331322 -1.210355 1.393140 -0.206517 1.050075 -1.167937 0.296817 -1.349237 0.859215 0.459959 -2.677328 -2.647037 -0.314901 -0.978258 0.335599 -0.927405 -1.376788 0.712963 0.576785 -1.149752 0.023742 -2.032472 1.973816 1.383129 -0.414970 0.133437 0.163042 1.592597 1.072300 0.039470 -0.616875 0.050059 0.139938 0.346262 -0.583667 -0.397769 0.774945 -1.228542 -0.511219 0.025010 1.209076 -0.896651 0.318106 -3.110101 -1.376035 0.440354 6.048180 -1.386003 1.333438 -0.001105 -2.095262 1.369313 0.310611 -1.589310 -0.444748 0.650462 2.386355 -1.729446 -0.733561 1.508651 2.484470 0.677913 -0.705285 1.804795 0.539686 -0.887915 -0.966260 1.845522 -0.235239 0.102882 -0.844783 -0.700928 1.187535 3.254546 -0.018141 -3.788193 0.187147 1.049264 0.972145 1.130190 0.424780 -0.193491 -0.070601 1.387737 -0.412028 1.614259 1.824506 -3.941762 1.675781 0.929537 -1.788975 2.191768 -0.547381 -0.415774 0.959994 0.512449 1.959389 1.602902 0.393418 -0.543928 -1.283790 -1.673846 -0.245955 0.633686 0.830318 -1.686265 1.650788 0.553147 -1.974713 -0.971814 -2.344237 -0.604043 -0.462836 -2.691048 0.553397 -0.112883 -3.386205 2.539854 1.162432 -0.010346 -0.629314 -1.486220 0.343545 -1.436345 -1.928891 0.241455 -0.754157 -1.282148 0.697905 -1.234699 0.504605 1.057240 1.844023 -2.269354 -1.912489 1.638916 0.655046 1.899557 1.327011 0.774093 0.752599 1.694281 -0.513910 -0.218992 -2.251251 2.982644 0.731048 -0.902367 0.267177 -1.612970 0.724519 1.961740 -0.885127 -0.769820 -2.584120 1.007452 -0.049877 0.269673 0.324347 -1.708637 -1.262156 -0.485369 0.837649 0.121767 -0.465442 -1.881912 -0.193933 -1.435199 -1.222193 0.332741 -1.187251 -0.295726 1.719020 -1.319817 -1.733908 0.392144 -0.326686 -1.001273 0.576739 1.408465 0.099626 -0.696806 2.136212 -1.776546 1.625455 -2.105019 -1.452526 0.110102 -2.224250 -0.693336 -1.158086 -0.891354 0.479387 0.022482 0.611230 -0.341114 0.645879 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.097473 1.840169 1.526155 -1.064946 1.574044 1.915908 0.218109 -0.294476 -0.516576 -0.522702 -0.576822 -1.469221 -1.603830 1.316047 -0.304127 -0.099817 2.129924 -0.176660 -0.210666 -0.406036 0.626013 0.130979 2.080291 2.051502 -2.153535 0.741114 1.368074 0.579956 0.112636 1.892539 -1.399693 -1.880481 0.071816 0.067680 0.738361 -0.599961 -0.626305 -1.384783 0.020446 -3.004899 -0.246102 0.420941 -1.111487 -0.135093 0.327412 0.430123 3.328337 0.983807 -0.618443 0.086794 0.901777 0.761041 0.286762 -0.004730 0.681379 0.374537 1.952641 0.501665 -0.310293 0.030618 -0.114982 -0.655223 -0.402239 1.797170 1.650701 0.124903 -0.630997 -0.017833 0.028223 -0.211213 -0.735554 1.213679 0.838978 1.833229 0.892113 -0.992772 0.601768 -2.234546 0.230921 -2.381970 -1.649412 -1.398299 0.284486 0.228381 0.788169 -0.569132 2.404852 -0.307335 0.875738 0.480066 2.614843 -1.564744 -0.129810 -0.952092 -1.037803 0.351112 -0.398345 0.321601 -0.437471 -0.863549 -1.322362 -1.679887 0.995381 0.095901 -1.190946 0.267838 -0.250626 1.094320 -1.323664 -0.435188 -1.704635 -0.215164 -0.301302 -2.592190 -1.217149 -0.231061 0.984286 0.345149 -0.444571 -2.066603 0.402528 1.387221 -0.761819 -0.898124 -0.610928 1.815477 1.510939 -0.228651 0.409315 -0.092175 1.381223 1.654166 1.500441 -0.435834 -0.287736 0.117356 -0.514202 -0.564370 -0.607243 0.344061 -0.194319 -0.852692 0.025416 1.514664 -0.873447 0.306297 0.074875 -1.215902 0.695004 5.700470 -0.886878 1.047396 -0.017881 -2.205553 0.970156 -0.230184 -1.533881 0.098629 0.946007 2.041965 -2.757348 -0.843843 1.053981 2.183028 0.704512 -1.679669 0.375131 -0.124614 -0.705607 -0.622457 1.060782 -0.100291 0.144963 -0.849390 -0.558096 1.137348 3.390697 -0.863749 -3.000605 0.361203 0.255636 0.224431 -0.798057 0.022353 -0.501468 -0.052797 0.766495 -0.400889 1.284757 1.772374 -4.037370 1.442965 -0.218675 -1.836929 1.826654 -0.056956 -0.408153 -0.020310 0.849096 1.945043 1.439650 0.404907 -0.290040 -0.952649 -1.641708 -0.263239 0.423093 0.792334 -1.371614 1.467440 0.650195 -2.020006 -1.155247 -1.315189 -0.074845 -0.664153 -1.420943 0.567103 -0.611884 -3.944809 2.436205 0.517959 -0.285267 0.146171 -1.203740 0.692883 -1.550218 -2.065444 0.642759 -0.315273 -0.515145 0.165708 -0.859915 0.843346 0.749834 1.024598 -1.934420 -2.343727 1.078938 0.217798 1.360553 1.260604 1.012228 1.647767 0.338615 -0.708994 -1.162093 -1.159171 1.751063 0.424301 -1.004703 -0.708743 -1.320938 1.061716 2.307855 -0.681021 -0.081913 -1.633732 1.085986 -1.539033 -0.112969 0.598431 0.596112 -1.325892 -0.199670 0.917749 -0.264975 -0.782256 -1.306034 -0.631268 -0.821798 -1.393916 0.393495 -1.385259 -0.219543 1.716551 -0.917671 -1.072294 0.789299 -0.447634 -0.143291 0.055301 1.173950 1.979989 -1.484975 0.878462 -1.506260 1.375002 -2.246511 -1.661871 0.406166 -0.998681 -0.436552 -0.833922 -0.212586 0.654686 -0.067861 0.012523 -0.055651 -0.114244 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.280910 0.613662 0.426447 -0.599673 0.844427 0.632485 0.320973 0.051308 -0.666269 -1.040547 -0.330176 -1.031987 -1.389410 1.282096 -0.228504 0.452377 2.095984 0.446534 0.043443 -0.534550 0.953454 -1.043138 1.853733 2.014472 -1.735615 0.263934 0.913270 0.779172 0.241084 0.996547 -0.054674 -1.413386 0.452316 -0.726259 0.965912 -1.177803 -0.166536 -0.018111 0.020002 -2.885518 -0.274307 0.573288 -0.105652 0.024633 0.073935 0.645630 2.005653 1.093749 -0.744913 0.780481 0.875257 0.220471 0.516575 0.174494 0.094786 0.377272 0.092692 -0.061909 -0.494528 0.316245 -0.207380 -1.487697 0.150149 1.411289 1.831774 -0.277386 -0.355897 0.413253 -0.145578 0.199629 -0.081347 1.000794 0.530010 0.479292 1.148071 -1.794876 -0.265078 -3.085269 0.092258 -3.780301 -1.375936 -1.269303 0.840214 0.484197 0.738523 -0.259233 2.191700 -0.189740 0.484950 1.173702 2.035650 -1.322093 -0.363830 -1.168401 -0.485547 0.575270 -0.821031 -0.099039 0.457998 -0.166642 -1.157254 -1.484060 0.899331 0.109820 -0.945198 -0.873886 -0.471973 1.338210 -1.613000 -1.022398 -1.981880 -0.052610 -0.275200 -2.252913 0.233016 -0.446271 0.611939 0.642826 -0.379751 -1.371093 0.385607 0.982599 -0.309643 -0.879388 -0.572037 1.570940 0.764930 -0.290043 0.442744 0.509139 0.499187 1.654503 1.555301 -0.468928 -0.509133 0.717625 -0.835953 -0.207241 -1.067918 -0.287039 0.956991 -1.312671 -0.338509 0.700721 -0.897722 -0.332382 0.842007 -1.001816 0.752910 4.177721 -0.302800 0.863879 0.559387 -1.574169 1.321209 -0.229427 -0.543608 0.607904 1.356390 1.152597 -2.121570 -0.968774 0.558287 1.913777 0.745119 -1.278540 -0.932550 -0.284618 0.170042 -0.235801 0.600134 0.298644 0.016762 -0.768904 -0.161360 0.698724 2.550773 -0.915488 -0.746055 0.181760 0.863901 -0.496242 -2.031926 -0.155221 -1.440835 -0.305297 0.179246 -0.067241 0.609989 1.660641 -2.917649 1.345391 -0.522797 -0.488672 0.866987 0.054028 -0.403057 -2.329193 0.552785 1.248605 1.462428 -0.011791 0.479733 -0.252633 -1.668306 -0.052131 0.217723 0.915873 -1.001767 1.381571 -0.272522 -1.125154 -1.007916 -0.183969 -0.450034 -0.955556 -0.342217 0.690266 0.884055 -2.408637 1.636286 -0.356649 -0.673225 0.545066 -0.202405 1.144345 -1.624883 -1.854597 0.860413 -0.241634 -0.814509 -0.475604 -0.529140 1.012039 0.114794 -0.592707 -0.776681 -1.928157 1.153687 -0.115091 1.079927 0.955057 0.395611 1.837786 0.332790 -1.042369 -1.053230 -0.744563 0.159342 -0.511645 -0.530344 -1.255345 -0.625445 1.104909 2.296199 0.025001 -0.212366 -0.280068 1.614586 -1.617817 -0.507815 0.859023 0.602856 -0.477149 0.533800 1.008605 -1.250901 -0.729231 -1.318974 0.335048 -0.043489 -1.059798 0.651718 -1.592286 -0.001511 1.039194 -0.453425 -0.482507 0.895998 0.371323 0.022620 -0.373299 1.725452 1.681549 -1.191194 0.215630 -1.356043 0.726941 -2.022858 -1.103591 -0.309352 0.568906 -0.295675 -0.110403 0.309161 0.706980 0.325488 -0.305003 -0.515182 -0.421894 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -0.189203 0.648831 0.640183 -0.123378 0.999220 0.462398 0.558507 0.497595 -0.714346 -1.261853 -0.222702 -1.270060 -2.039430 1.491257 -0.086755 0.357142 2.400694 0.603064 0.171158 -0.691710 0.725008 -1.289642 2.305219 2.319638 -1.946523 0.431075 0.767931 0.738032 0.211288 1.048379 -0.241514 -1.493472 1.009471 -0.798179 0.899904 -1.137743 -0.220377 -0.383005 -0.389652 -3.262926 -0.371362 0.748681 -0.381275 0.058461 0.116065 1.701311 2.378422 1.254122 -0.711917 1.309374 0.703944 -0.495225 0.731104 0.321870 0.164114 0.075095 0.079900 0.095730 -1.157868 0.473822 -0.251798 -2.598091 -0.331247 1.330194 2.059675 -0.458169 -0.399601 0.396760 -0.444864 0.271076 0.022077 1.033589 1.300854 0.373932 1.657736 -1.350864 -0.562518 -2.946873 -0.451777 -5.071759 -1.796414 -1.567337 1.774741 0.097499 0.654514 -0.522593 2.360202 0.041063 0.575309 1.141939 2.488864 -1.726688 -0.702211 -1.093650 0.045329 0.768895 -1.163562 0.042024 1.125323 -0.598528 -1.487706 -1.454874 1.346425 -0.083125 -0.994654 -0.783037 -0.623421 1.617892 -2.136467 -1.006916 -2.798674 -0.610834 0.015769 -2.528228 0.470335 0.329110 1.231206 1.311581 -0.408480 -1.056955 0.556991 0.873965 -0.217596 -1.036763 -0.409373 2.054158 0.609716 -0.094879 0.931931 0.992511 0.703434 1.826394 2.323982 -0.255555 -0.615873 0.752661 -1.004807 0.151466 -0.882397 -0.496187 1.066982 -1.540292 -0.002065 0.491046 -1.125973 -0.434570 0.663779 -0.651168 0.833393 3.500414 -0.166548 1.040683 0.569029 -1.708511 1.441396 -0.699292 -0.596011 0.670261 1.663712 1.193011 -1.821378 -0.950602 0.591868 2.188725 0.886848 -2.062568 -0.635977 -0.368613 0.596624 -0.540627 0.793352 0.676316 0.698475 -0.927125 -0.002340 0.887905 2.858578 -1.487748 -1.544654 0.219091 0.260043 -0.018397 -2.439375 -0.120664 -0.688402 -0.417278 0.143272 0.021163 0.316737 1.858079 -3.102921 1.562091 -0.712816 -0.665480 1.236916 0.240702 -0.612982 -2.346463 0.579411 1.395135 1.718606 0.739367 0.059765 -0.291361 -1.857337 -0.119809 0.274433 0.923501 -0.781511 1.585386 -0.450083 -1.106064 -1.214999 -0.897009 -0.055157 -0.754978 -0.346855 0.806378 1.118484 -3.448595 1.700844 -0.515198 -1.219839 0.302484 -0.013345 1.212721 -1.824556 -2.290684 0.789052 -0.827697 -1.886911 -1.003075 -0.613934 0.710372 0.263280 -0.902247 -0.512987 -2.144362 1.947230 -0.049132 1.227482 1.130795 0.401281 2.784445 0.838593 -1.725949 -0.986858 -0.802049 0.543549 -1.348106 -0.527012 -0.962474 -0.743936 1.199590 2.672826 0.146773 -0.010594 -0.697561 1.789059 -2.277574 -0.984154 1.422368 1.335506 -0.098324 1.286730 1.488819 -1.532899 -0.761166 -1.382950 -0.182668 0.015880 -1.222888 0.576748 -2.057120 -0.047095 1.195829 -0.417189 -0.639965 0.906527 -0.045915 -0.084158 -0.837630 2.033179 2.953944 -2.178544 0.542789 -1.489727 1.072042 -2.260579 -1.357153 -0.091474 0.852654 -0.292095 -0.080117 0.666204 0.433419 0.395152 -1.391710 -1.044533 -0.312485 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.040917 0.247189 0.252751 -0.092697 0.317591 0.058661 0.149623 0.128129 -0.227466 -0.399530 -0.104361 -0.339151 -0.553432 0.441190 -0.078911 0.073862 0.735420 0.230659 0.072383 -0.268129 0.195468 -0.418976 0.703786 0.690725 -0.623665 0.139328 0.279606 0.283612 0.116418 0.409523 -0.101850 -0.444006 0.288923 -0.170400 0.292330 -0.416181 -0.018564 -0.100462 -0.180057 -1.006469 -0.075135 0.130315 -0.020042 0.021781 0.026437 0.503921 0.718155 0.380835 -0.208232 0.376730 0.275414 -0.001462 0.177533 0.120829 0.048045 0.054872 0.159888 -0.113386 -0.339503 0.144095 -0.038561 -0.811647 -0.084255 0.427534 0.637572 -0.115702 -0.052159 0.095075 -0.156565 0.091055 0.042507 0.251494 0.291365 0.143340 0.419950 -0.447176 -0.079372 -0.918297 -0.157074 -1.620817 -0.511793 -0.535010 0.506508 0.049324 0.172307 0.005797 0.681727 0.055143 0.253234 0.282297 0.725110 -0.498378 -0.216096 -0.302950 -0.026871 0.286605 -0.349917 -0.008172 0.248237 -0.087285 -0.403590 -0.437287 0.462967 -0.014028 -0.298719 -0.168882 -0.183030 0.456864 -0.756092 -0.282537 -0.818480 -0.199777 -0.010645 -0.733045 0.196407 0.028170 0.489928 0.328189 -0.051622 -0.325854 0.125119 0.324556 -0.065432 -0.247090 -0.274248 0.548433 0.150344 -0.061886 0.259982 0.207899 0.187605 0.536028 0.654732 -0.117175 -0.214393 0.239859 -0.322236 -0.038249 -0.317316 -0.151838 0.296779 -0.482070 0.078697 0.156114 -0.342190 -0.192277 0.181100 -0.234497 0.327907 0.956041 -0.032505 0.271953 0.148817 -0.528908 0.296464 -0.197159 -0.192214 0.216812 0.489848 0.318314 -0.393201 -0.311991 0.094393 0.604073 0.280701 -0.517983 -0.235076 -0.178505 0.120272 -0.058495 0.183721 0.179567 0.085260 -0.284342 -0.032607 0.207402 0.818606 -0.318340 -0.365954 0.059604 0.060355 -0.112647 -0.662639 -0.036867 -0.167774 -0.068575 -0.007804 -0.023948 0.102626 0.567647 -1.072385 0.489177 -0.211077 -0.177647 0.300762 0.016582 -0.134058 -0.715858 0.212897 0.437425 0.550913 0.137474 0.098544 -0.037177 -0.539942 -0.061423 0.046498 0.312965 -0.251103 0.404534 -0.009973 -0.407295 -0.389283 -0.227599 0.049110 -0.183466 -0.089983 0.214801 0.332312 -1.151067 0.530023 -0.225924 -0.344374 0.132076 -0.004915 0.329973 -0.587339 -0.641697 0.202921 -0.185652 -0.494344 -0.293067 -0.152499 0.283094 -0.046201 -0.219621 -0.131597 -0.540654 0.473879 -0.038924 0.247919 0.333997 0.154541 0.787082 0.147502 -0.426474 -0.302354 -0.093258 0.089813 -0.476006 -0.108531 -0.093337 -0.225489 0.353682 0.871392 0.055307 0.003470 -0.058100 0.565080 -0.611385 -0.335424 0.421461 0.382407 -0.025175 0.419548 0.438228 -0.506011 -0.305847 -0.399939 -0.047248 0.109515 -0.373714 0.208885 -0.615999 0.013002 0.400568 -0.085934 -0.265498 0.341480 -0.047997 -0.020621 -0.242245 0.612651 0.868559 -0.591092 0.220718 -0.401536 0.236692 -0.704848 -0.377968 -0.070799 0.247248 -0.082967 0.046849 0.090302 0.179036 0.074989 -0.256776 -0.245509 -0.127204 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.123887 0.522906 0.685557 -0.438488 1.206033 0.495682 0.274420 0.280557 -0.613000 -0.978585 -0.344651 -1.023631 -1.639356 1.125311 -0.171510 0.397339 1.558240 0.094065 0.050595 -0.590905 0.778911 -0.868835 1.642658 1.198395 -1.631709 0.333080 0.518727 0.915129 0.276049 1.163402 -0.268381 -1.085303 0.363147 -0.343153 0.868537 -0.737658 -0.022248 -0.162010 -0.399881 -2.244242 -0.362241 0.767106 -0.466004 0.292557 0.131782 1.381792 1.713580 0.969747 -0.728044 0.914304 0.835252 -0.248306 0.613424 0.261895 -0.161167 0.023466 0.473588 -0.114391 -0.823014 0.306964 -0.182163 -1.847559 -0.094284 0.959107 1.590889 -0.585119 -0.410155 0.585459 -0.242028 0.211213 0.053834 0.922055 0.790567 0.264918 1.327964 -0.841158 -0.309366 -2.036764 -0.042725 -3.492154 -1.226767 -1.338780 0.996319 0.432852 0.349616 -0.490903 2.085832 -0.011125 0.223771 0.918677 1.751765 -1.155037 -0.339812 -1.236460 -0.122936 0.371946 -0.866404 -0.398280 0.624542 0.067184 -0.861502 -0.940468 0.706505 -0.353596 -0.766593 -0.505200 -0.875600 1.320057 -1.759532 -0.687177 -2.075551 0.003880 0.001629 -1.890535 0.085703 0.214339 0.729161 0.572964 0.165874 -0.623666 0.432885 0.777676 -0.355432 -0.458702 -0.566720 1.636524 0.716336 -0.279669 0.588283 0.830070 0.535818 1.121081 1.622411 -0.241484 -0.930942 0.733704 -0.479997 0.013541 -0.701259 -0.025885 0.762575 -1.195626 -0.097578 0.441329 -0.595221 -0.180726 0.050246 -0.846057 0.672856 2.696822 -0.235092 0.535184 0.147313 -1.206596 1.174430 -0.163664 -0.478737 0.595039 0.883737 0.933142 -1.296704 -0.813180 0.729872 1.475082 0.551990 -1.567230 -0.302035 -0.209004 0.428364 -0.322232 0.437736 0.815110 0.163150 -0.399217 -0.070266 0.209241 2.321394 -0.924685 -1.319386 0.522075 0.332341 -0.379716 -1.683802 -0.209274 -0.490942 -0.646586 0.264783 0.036538 0.312215 1.446382 -2.473818 1.160557 -0.125642 -0.622327 0.934813 -0.283286 0.012734 -1.763201 0.090037 1.043928 1.205981 0.327615 0.042329 -0.423081 -1.376986 0.281254 0.299092 0.735797 -0.508218 1.053732 -0.328956 -0.742027 -0.846480 -0.718328 -0.346777 -0.146106 -0.409607 0.511207 0.569873 -2.735058 1.287299 -0.613149 -0.648804 0.347983 0.136723 1.084073 -1.145920 -1.541197 0.724198 -0.513623 -1.464111 -0.855193 -0.300565 0.576056 0.146019 -0.577528 -0.588053 -1.864867 1.213328 -0.217769 0.677699 0.800815 0.411059 1.840729 0.729027 -1.240180 -0.792891 -0.671391 0.466335 -0.735177 -0.050821 -0.509075 -0.327883 0.867030 1.770256 0.153028 0.194623 -0.653059 1.318159 -1.462190 -0.770956 0.990575 0.570862 -0.327054 1.022923 1.074365 -0.856094 -0.717438 -1.237894 0.087514 -0.225811 -0.779756 0.376849 -1.503153 -0.254791 1.119049 -0.301726 -0.750805 0.764076 0.022530 -0.344400 -0.954466 1.955092 2.195751 -1.449827 0.579687 -1.101569 0.956364 -1.657578 -0.886757 -0.207422 0.400455 -0.039426 0.037187 0.538503 0.402185 0.283627 -0.827988 -0.657145 -0.503608 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__deque_buf_size(unsigned long) = -0.344857 -0.442576 -0.244121 -0.445243 0.257755 -0.042797 0.043426 -0.355504 -0.712604 -0.347823 0.124852 -0.797734 -0.200038 0.577765 -0.148597 0.530652 0.815753 0.196861 -0.148805 -0.185461 0.523212 -0.487390 0.480700 0.886886 -0.304389 0.032596 -0.265112 0.192211 -0.085632 0.075892 0.163691 -0.680776 0.047553 -0.528338 0.159584 -0.251300 -0.299393 0.701251 0.612639 -0.953837 0.036625 0.428973 0.389454 0.114446 0.175952 0.026091 0.315902 0.094735 0.005371 0.734904 0.322511 -0.130678 0.406966 -0.053565 0.311032 0.385835 -0.047976 -0.213913 -0.127150 0.009175 -0.412981 0.174850 0.212421 0.339911 0.545077 -0.090519 -0.443848 0.054934 0.163087 0.103727 0.259759 0.497095 -0.135760 -0.216743 0.268964 -0.715439 -0.104523 -1.269051 0.291116 -1.275808 -0.464006 0.266996 0.514978 0.587710 0.114601 -0.091732 0.874796 -0.458228 -0.485482 0.383024 0.616364 -0.237512 -0.102718 0.007811 -0.360554 -0.254196 0.048708 -0.181190 0.203503 0.521415 -0.532267 -0.366258 0.328420 -0.055240 -0.206563 -0.409205 0.013427 0.495284 -0.656895 -0.419613 -0.194133 0.696099 0.243440 -0.593852 0.071129 -0.470133 -0.362380 0.225359 -0.834060 -0.398398 0.346224 -0.102331 -0.354984 -0.015339 -0.189848 0.329487 0.274450 0.018909 -0.214230 0.390967 -0.021897 0.774908 -0.089820 -0.491283 0.163778 0.207784 0.028669 0.189462 -0.285152 -0.331473 0.122462 -0.475128 -0.063109 -0.198866 -0.338282 -0.115826 0.159529 -0.118975 -0.408000 1.250051 -0.415122 0.759461 0.512277 -0.179228 0.499205 -0.008754 0.383888 0.206276 0.613922 0.232574 -0.514660 -0.536514 0.755996 0.699834 0.088269 -0.404355 -0.449520 0.334139 0.320225 0.177576 0.359599 -0.109784 0.100150 -0.123355 -0.013543 -0.040765 1.263590 -0.149324 0.236942 0.042383 0.490221 0.002189 -0.728696 -0.154578 -0.963827 -0.076026 0.062067 0.257987 0.218993 0.711424 -1.094076 0.485021 -0.234872 0.212837 0.397629 0.293113 -0.315393 -1.559040 -0.557252 0.066052 0.711194 -0.122488 0.339909 0.115434 -0.615783 0.085893 0.000000 0.259845 -0.760890 0.674806 -0.172948 -0.414959 0.188955 0.231182 -0.512927 -0.324441 -0.267146 0.229267 0.791491 -0.517558 0.258665 0.238937 -0.010261 0.223465 0.275479 0.664835 -0.159975 -0.312988 0.359437 -0.291721 -0.310038 -0.052335 -0.105455 0.201591 -0.192302 -0.317919 -0.365779 -0.545614 0.757833 -0.110442 0.886504 0.084505 -0.550075 0.183502 0.112404 -0.290435 -0.172324 -0.125496 -0.328388 -0.355732 -0.019443 -0.418245 -0.199410 0.347804 0.347707 0.297886 -0.438645 0.094531 0.604004 -0.297647 0.398096 0.299486 -0.225854 -0.244466 0.193140 0.424993 -0.486420 0.184668 -0.562442 0.130017 -0.502421 0.052255 0.502260 -0.116033 0.035622 -0.310517 -0.296216 0.137939 0.239218 0.504252 -0.161139 0.176568 0.922878 0.179894 0.176165 0.052703 -0.574138 0.154136 -0.413927 -0.268318 -0.281339 0.629905 -0.589591 -0.234380 -0.135781 0.528305 0.274081 -0.167842 -0.377783 0.286068 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.057648 0.648388 0.418300 0.049222 0.615643 0.222793 0.336686 0.238464 -0.260549 -0.715942 -0.232931 -0.776189 -1.220647 0.832532 0.025635 0.255540 1.368150 0.310009 0.120440 -0.347801 0.392143 -0.930212 1.319355 1.237604 -1.090699 0.323643 0.574143 0.359591 0.062952 0.740125 -0.394868 -0.778759 0.627881 -0.515564 0.573141 -0.598266 -0.128533 -0.402531 -0.248906 -1.835166 -0.217536 0.370446 -0.032172 -0.028688 -0.038314 0.945899 1.558136 0.705193 -0.344724 0.558553 0.300163 -0.414340 0.457993 0.246074 0.217772 0.136393 0.299242 0.087055 -0.776112 0.237807 -0.134751 -1.648854 -0.216417 0.749057 1.146751 -0.220055 -0.179444 0.365739 -0.370245 0.096607 -0.125462 0.561220 0.744484 0.317742 0.902177 -0.863652 -0.127058 -1.497464 -0.436032 -2.956595 -1.066016 -1.038067 0.775387 -0.071602 0.540923 -0.177820 1.323237 0.061694 0.481120 0.336563 1.576794 -1.171456 -0.425279 -0.639793 0.123088 0.416289 -0.674721 -0.002312 0.809099 -0.568011 -0.866136 -0.861040 1.010814 0.057908 -0.569558 -0.360935 -0.346520 0.875398 -1.208022 -0.669738 -1.706215 -0.760459 -0.133458 -1.461703 0.538916 0.371693 0.637926 0.795507 -0.144451 -0.868379 0.322135 0.665000 -0.088597 -0.771568 -0.306094 1.239040 0.306813 -0.073865 0.652948 0.513023 0.504170 1.097123 1.516360 -0.062707 -0.368352 0.318753 -0.710337 0.021170 -0.392729 -0.399009 0.538530 -0.936699 -0.111693 0.392789 -0.649290 -0.038407 0.449685 -0.384568 0.567403 1.760953 -0.129355 0.503463 0.160992 -1.110605 0.908865 -0.469411 -0.557400 0.248089 0.945486 0.802398 -1.084055 -0.561993 0.351575 1.221864 0.507021 -1.171925 -0.426015 -0.362733 0.338112 -0.272322 0.385481 0.423542 0.459451 -0.590308 -0.027964 0.493696 1.728698 -1.006449 -0.931220 0.273045 -0.175619 0.002760 -1.636738 -0.133328 -0.437667 -0.252754 -0.257526 -0.051706 0.117633 1.075478 -1.670400 0.950830 -0.554586 -0.631906 0.938174 -0.005164 -0.291615 -1.388628 0.427409 0.984947 0.936815 0.412449 -0.051024 -0.336349 -1.035568 -0.123846 0.059009 0.558660 -0.405347 0.865604 -0.288861 -0.756633 -0.803140 -0.569226 0.126724 -0.527700 -0.130301 0.411960 0.735290 -1.946965 1.141594 -0.270352 -0.672183 0.235696 0.027125 0.499419 -1.048264 -1.363043 0.402245 -0.518344 -0.954242 -0.537176 -0.324595 0.374364 0.109108 -0.722020 -0.255295 -1.188536 1.030084 -0.017912 0.603514 0.658266 0.444346 1.571975 0.724905 -1.060316 -0.564957 -0.243412 0.002300 -0.896628 -0.314132 -0.631732 -0.472785 0.770310 1.639203 0.091430 0.191017 -0.410929 0.920048 -1.369886 -0.668318 0.921354 0.719280 -0.159475 0.585349 0.906851 -0.761352 -0.585450 -0.742937 -0.258990 0.005284 -0.815542 0.154107 -1.287063 -0.161104 0.865580 -0.392299 -0.380155 0.531499 -0.127151 -0.016686 -0.585004 1.090341 1.645772 -1.383090 0.275954 -0.792841 0.550824 -1.362531 -0.784070 0.087747 0.682662 -0.180022 -0.107270 0.599926 0.150511 0.086878 -0.861955 -0.521288 -0.403850 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.002137 0.280663 0.197163 -0.089899 0.277138 0.190161 0.077995 -0.022002 -0.135042 -0.180927 -0.110596 -0.288686 -0.310343 0.273368 -0.042744 0.095751 0.431271 0.079708 0.025300 -0.101610 0.063998 -0.164863 0.433577 0.411985 -0.353764 0.155217 0.164289 0.106881 -0.057286 0.411623 -0.217733 -0.386638 0.121045 -0.046603 0.131615 -0.195157 -0.094962 -0.114504 -0.014770 -0.620540 -0.038359 0.135847 0.009845 -0.013020 0.035996 0.097546 0.556965 0.205135 -0.036226 0.183738 0.113355 0.079505 0.142330 0.064933 0.148676 0.126409 0.285922 -0.162119 -0.177627 0.062292 -0.041414 -0.340141 -0.096206 0.280706 0.343388 -0.028787 -0.094361 0.014140 -0.131162 0.003992 -0.052335 0.201404 0.104754 0.214431 0.147678 -0.201440 0.102286 -0.363400 -0.051184 -0.673982 -0.333775 -0.285511 0.156247 0.204663 0.191159 -0.002976 0.458920 -0.043817 0.160070 0.018479 0.487086 -0.363034 -0.085801 -0.109971 -0.060611 0.088080 -0.129909 -0.019768 -0.023052 -0.101847 -0.252904 -0.302630 0.329901 0.019152 -0.207507 0.000468 -0.075499 0.225430 -0.439696 -0.194634 -0.425366 -0.124707 -0.082203 -0.440521 0.027140 0.037057 0.133774 0.165367 -0.083198 -0.366849 0.126555 0.224862 -0.087729 -0.190479 -0.245209 0.312536 0.135273 -0.062612 0.138220 0.043966 0.181103 0.395393 0.292747 -0.083882 -0.072049 0.094131 -0.103235 -0.050105 -0.104088 -0.063112 -0.081905 -0.286168 0.025810 0.185941 -0.203066 0.036861 -0.085162 -0.169521 0.146892 0.659931 -0.123562 0.179558 0.044248 -0.409261 0.184391 -0.127797 -0.215846 0.032700 0.243737 0.305062 -0.275202 -0.186377 0.139161 0.400281 0.163000 -0.226166 -0.057031 -0.085969 0.012673 -0.010773 0.183367 0.046401 0.059069 -0.204870 -0.061251 0.088379 0.643859 -0.161529 -0.266180 0.093938 -0.037167 -0.022787 -0.286018 -0.025991 -0.166677 -0.041309 -0.012678 -0.055832 0.090751 0.345022 -0.653154 0.327352 -0.154011 -0.273534 0.296164 -0.034808 -0.061067 -0.216003 0.093457 0.322424 0.339049 0.045523 0.088371 -0.123571 -0.325556 -0.061011 0.009373 0.171493 -0.233593 0.276219 0.073907 -0.398662 -0.205307 -0.175160 0.052318 -0.177184 -0.169165 0.124314 0.203873 -0.689785 0.385372 0.018071 -0.131825 0.108482 -0.032737 0.158624 -0.298595 -0.373504 0.123553 -0.130276 -0.164790 0.002505 -0.134537 0.141469 0.011655 -0.045908 -0.174771 -0.285537 0.225383 0.054864 0.181930 0.234053 0.138172 0.306390 0.132832 -0.237311 -0.106437 -0.095654 0.091792 -0.219098 -0.051677 -0.014198 -0.224236 0.237455 0.518390 0.045009 -0.014757 -0.139261 0.285785 -0.259178 -0.069775 0.231891 0.075536 -0.133316 0.078129 0.251704 -0.157982 -0.175436 -0.230387 -0.025439 -0.053607 -0.224348 0.099265 -0.338406 -0.046756 0.298252 -0.152006 -0.225028 0.186660 -0.061223 -0.052927 -0.093285 0.336015 0.276980 -0.257349 0.209428 -0.227176 0.135767 -0.414045 -0.215525 -0.016260 0.085844 -0.145111 -0.081345 0.005855 0.110595 -0.000435 -0.031835 -0.068774 -0.110673 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.080546 0.267000 0.305074 -0.033583 0.370577 0.071944 0.212490 0.163579 -0.266443 -0.471545 -0.139368 -0.452434 -0.729554 0.572949 -0.058511 0.151072 0.929419 0.312477 0.082844 -0.291181 0.238951 -0.609055 0.869617 0.858748 -0.699601 0.159468 0.310125 0.319146 0.064096 0.527558 -0.197078 -0.527511 0.387903 -0.277517 0.381864 -0.505521 -0.054734 -0.101821 -0.203173 -1.240414 -0.108771 0.244178 0.032190 0.009572 0.026489 0.650401 0.881401 0.469458 -0.192428 0.467437 0.230558 -0.166476 0.296052 0.162256 0.135868 0.120694 0.204776 -0.060481 -0.493848 0.196849 -0.112078 -1.062413 -0.107299 0.489191 0.783666 -0.148135 -0.095137 0.116317 -0.227983 0.112867 0.029640 0.330397 0.406422 0.138703 0.545162 -0.545593 -0.077483 -1.045445 -0.228275 -1.968566 -0.646001 -0.641153 0.600965 0.039457 0.271919 -0.075613 0.860662 0.034528 0.275713 0.256214 0.942501 -0.693003 -0.287186 -0.369482 0.044835 0.287332 -0.442188 -0.047490 0.452778 -0.202215 -0.533820 -0.541268 0.626164 0.005704 -0.345597 -0.190630 -0.234500 0.610276 -0.886404 -0.424563 -1.092471 -0.349946 -0.045970 -0.908697 0.347734 0.110545 0.470003 0.490318 -0.136192 -0.454540 0.237940 0.403974 -0.069011 -0.382413 -0.286370 0.774462 0.139421 -0.092845 0.346793 0.310652 0.199396 0.670363 0.898058 -0.115099 -0.238469 0.309589 -0.477673 -0.008997 -0.354351 -0.252082 0.361624 -0.625693 -0.012222 0.172083 -0.441416 -0.110709 0.234192 -0.221839 0.385016 1.126240 -0.088031 0.335700 0.160815 -0.668485 0.530318 -0.242335 -0.218803 0.212067 0.638477 0.421799 -0.598871 -0.386220 0.172577 0.778899 0.358009 -0.699959 -0.311688 -0.255733 0.234930 -0.093771 0.250787 0.269368 0.181892 -0.377437 -0.015833 0.205786 1.080349 -0.538416 -0.531681 0.102209 -0.049438 -0.084331 -0.978278 -0.062370 -0.257166 -0.135186 -0.141101 -0.028749 0.073277 0.705970 -1.208031 0.645483 -0.340926 -0.297743 0.544481 -0.010745 -0.164250 -0.953013 0.204355 0.554663 0.696718 0.248082 0.027815 -0.092519 -0.683806 -0.064324 0.018728 0.414628 -0.288515 0.544110 -0.111729 -0.504743 -0.471504 -0.348524 0.080987 -0.326103 -0.095102 0.272191 0.492181 -1.334560 0.657657 -0.213867 -0.425218 0.192778 0.094901 0.345506 -0.694044 -0.840936 0.249438 -0.280211 -0.632243 -0.399085 -0.199643 0.297834 -0.023714 -0.410558 -0.140756 -0.720978 0.652150 -0.054203 0.386998 0.397626 0.184685 0.999689 0.419523 -0.629917 -0.336538 -0.119756 0.010585 -0.644796 -0.123320 -0.254402 -0.266291 0.483544 1.062999 0.110413 0.083835 -0.168686 0.713265 -0.796216 -0.404111 0.586441 0.420771 -0.006760 0.473633 0.592728 -0.615567 -0.387567 -0.470590 -0.120922 0.074168 -0.455387 0.204231 -0.824269 -0.030873 0.462637 -0.155256 -0.296530 0.353920 -0.028464 -0.047879 -0.331344 0.794385 1.068481 -0.783883 0.264907 -0.494162 0.322172 -0.856098 -0.426677 -0.075425 0.414262 -0.142501 0.033991 0.279601 0.167023 0.096752 -0.457903 -0.340198 -0.220638 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::~__new_allocator() = -0.041765 0.136345 0.085243 -0.043547 0.193585 0.032942 0.082977 -0.028510 -0.126279 -0.187925 -0.064132 -0.166549 -0.216223 0.241001 -0.050157 0.154677 0.377984 0.131454 0.045557 -0.133056 0.119963 -0.275987 0.383275 0.349472 -0.282335 0.080463 0.168136 0.114848 0.009135 0.264242 -0.120239 -0.241346 0.184351 -0.175810 0.099108 -0.248678 -0.011708 0.006476 0.017630 -0.496982 -0.018857 -0.012246 0.055830 0.001312 -0.033870 0.163172 0.357101 0.199784 -0.051895 0.225544 0.129308 0.026177 0.088655 0.094387 0.077855 0.129281 0.120658 -0.140029 -0.167459 0.053750 -0.039178 -0.393641 -0.021901 0.215095 0.321099 -0.055068 -0.017140 0.107474 -0.144332 0.034432 0.031222 0.120403 0.054348 0.063416 0.152860 -0.349768 0.007675 -0.465307 -0.136151 -0.791414 -0.244615 -0.246999 0.135952 0.036741 0.192120 0.134391 0.350323 0.017794 0.113725 0.058682 0.375256 -0.343132 -0.110284 -0.095170 -0.001109 0.094007 -0.168580 -0.022813 0.088036 -0.046266 -0.200330 -0.276662 0.317833 0.049271 -0.144955 -0.147913 -0.074395 0.214649 -0.437020 -0.240867 -0.387129 -0.146509 -0.107366 -0.356388 0.188449 0.006592 0.263751 0.149959 -0.039106 -0.299825 0.090625 0.226371 -0.023601 -0.206046 -0.109741 0.215080 0.067950 -0.028442 0.125371 0.045647 0.071623 0.392646 0.330717 -0.078736 -0.094045 0.104260 -0.162278 -0.011294 -0.144278 -0.123954 0.058232 -0.305314 0.053138 0.134633 -0.179555 -0.050742 0.170516 -0.109826 0.160191 0.419573 -0.034413 0.134923 0.086162 -0.323219 0.098230 -0.161072 -0.092404 0.091816 0.248156 0.151402 -0.197764 -0.189452 0.064064 0.294510 0.157818 -0.228593 -0.215373 -0.134310 0.084962 0.046475 0.056137 0.088050 0.014477 -0.177619 -0.024734 0.045286 0.494009 -0.176124 -0.024058 0.088574 -0.032115 -0.115253 -0.407820 -0.067455 -0.193075 -0.025124 -0.062471 -0.023240 0.012926 0.299508 -0.529557 0.262377 -0.208414 -0.121999 0.148341 0.020381 -0.065535 -0.376554 0.075300 0.231029 0.287622 0.014846 0.162844 -0.009114 -0.274858 -0.042013 -0.023008 0.158855 -0.143623 0.193872 0.044045 -0.302010 -0.192731 -0.002667 0.069483 -0.167578 0.009691 0.119724 0.234660 -0.583749 0.275613 -0.092408 -0.157074 0.160948 0.058310 0.206709 -0.278876 -0.315730 0.145143 -0.090021 -0.114144 -0.077780 -0.047342 0.159504 -0.064395 -0.149990 -0.041682 -0.217831 0.152520 -0.001660 0.094909 0.160484 0.094399 0.331736 -0.035974 -0.217969 -0.149580 0.032253 -0.083387 -0.286713 -0.027077 -0.043787 -0.110499 0.237448 0.457772 0.100839 -0.004728 0.056134 0.294869 -0.318170 -0.106897 0.244909 0.243993 -0.067921 0.153044 0.237064 -0.249164 -0.174458 -0.146205 0.010693 0.042961 -0.192137 0.110708 -0.294089 0.005856 0.193431 -0.039797 -0.125091 0.193828 -0.004304 0.027421 -0.127265 0.311162 0.358746 -0.242171 0.063989 -0.171525 0.045562 -0.358614 -0.187729 -0.026064 0.231680 -0.106397 0.021642 0.042612 0.132844 0.011457 -0.058180 -0.069227 -0.149820 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, AdjListNode const&) = 0.063016 0.886743 0.813586 -0.272597 0.760991 0.438685 0.266298 0.412099 -0.382570 -0.866334 -0.287209 -1.022309 -1.487851 0.904875 -0.109888 -0.236194 1.527962 0.217449 0.088367 -0.450661 0.218719 -0.469858 1.436626 1.456585 -1.440060 0.425315 0.553277 0.533499 0.156231 0.977347 -0.274067 -1.205875 0.355886 0.134563 0.758426 -0.522581 -0.236121 -0.674223 -0.636978 -2.205414 -0.247300 0.726800 -0.289625 0.009957 0.255182 1.043752 1.959174 0.740466 -0.489013 0.505561 0.519301 0.038197 0.449033 0.105142 0.168682 -0.175160 0.602672 -0.085087 -0.705782 0.322712 -0.058110 -1.494593 -0.409545 1.011239 1.279306 -0.165247 -0.299413 -0.070877 -0.193381 0.135208 -0.201451 0.708021 0.933778 0.702885 0.941962 -0.329277 -0.052666 -1.594813 -0.048333 -3.059245 -1.239653 -1.179981 1.199321 0.405626 0.136562 -0.531315 1.572197 0.034891 0.631910 0.639773 1.746232 -0.846045 -0.367074 -0.746210 -0.212378 0.616164 -0.612838 0.078378 0.339381 -0.332650 -0.941317 -0.792772 0.756970 -0.208677 -0.728745 0.092822 -0.386994 0.915132 -1.373461 -0.206294 -1.755283 -0.352306 0.261049 -1.700373 -0.124993 0.210659 0.651992 0.713722 -0.190232 -0.567961 0.287924 0.524566 -0.298694 -0.319510 -0.883497 1.415179 0.471065 -0.143200 0.570748 0.537294 0.743735 0.828868 1.248038 -0.168417 -0.391927 0.388105 -0.497350 -0.176524 -0.480588 -0.080319 0.474509 -0.764529 0.082156 0.341965 -0.700041 -0.299829 -0.348690 -0.683788 0.623032 2.497063 -0.272513 0.642391 0.130951 -1.165452 0.847434 -0.257181 -0.746812 0.249048 0.943548 1.069092 -0.894780 -0.539127 0.423400 1.458966 0.518381 -1.094199 0.115761 -0.116073 0.021948 -0.435638 0.714517 0.271689 0.347484 -0.558331 -0.149367 0.685039 1.794215 -0.599747 -1.560823 0.057818 0.222093 0.207971 -0.891829 0.121683 -0.043058 -0.175821 0.206431 -0.106223 0.457459 1.198683 -2.417566 1.067208 -0.088344 -0.655053 0.920518 -0.102751 -0.276526 -1.067951 0.556837 1.126936 1.110266 0.465043 -0.192282 -0.442194 -1.157235 -0.146333 0.248364 0.642655 -0.657452 0.996389 -0.089517 -0.850712 -0.857065 -1.053396 -0.026462 -0.212408 -0.673919 0.400916 0.465248 -2.509846 1.366265 -0.219723 -0.625606 -0.132280 -0.358501 0.461309 -1.224949 -1.437738 0.250105 -0.568338 -1.374788 -0.498380 -0.564163 0.428335 0.174614 -0.146804 -0.590214 -1.316605 1.286005 0.036614 0.772367 0.829153 0.458602 1.665632 0.864547 -0.885854 -0.504930 -0.618720 0.831105 -0.697874 -0.373708 -0.125654 -0.694787 0.583988 1.786066 -0.214424 0.001514 -0.707154 0.979863 -1.079312 -0.708514 0.736572 0.303708 -0.161114 0.750921 0.855720 -0.723822 -0.564049 -1.120994 -0.265156 -0.071289 -0.864310 0.270048 -1.337852 -0.153808 1.094779 -0.477933 -0.756001 0.592646 -0.277159 -0.268011 -0.395027 1.185320 1.719380 -1.375670 0.807181 -1.009884 0.818288 -1.529922 -0.908980 -0.044543 -0.009416 -0.078039 -0.216816 0.107524 0.170845 0.140541 -0.630451 -0.595039 0.027797 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(AdjListNode const&) = 0.021796 2.178174 1.402716 -0.288840 1.702754 0.842490 0.686425 0.931821 -0.508194 -2.401792 -0.583211 -2.168549 -3.814059 2.091059 -0.189986 -0.437725 3.585295 0.290696 0.404286 -1.235369 0.940025 -1.451926 3.575147 3.400019 -3.564881 0.816992 1.972942 1.123413 0.728575 1.434345 -0.191611 -2.629201 1.330287 -0.413571 1.769486 -1.159944 -0.338470 -1.818226 -1.351036 -4.968496 -0.771562 0.947787 -1.260234 0.102744 0.199958 3.022985 4.663209 1.891875 -1.583323 1.284437 1.442719 -0.219506 0.776414 0.331552 -0.058619 -0.768865 0.441352 0.312151 -1.617118 0.660351 -0.095383 -3.996618 -0.926223 2.441883 3.155575 -0.570903 -0.534645 0.691899 -0.651719 0.377956 -0.637636 1.733808 2.668796 1.542068 2.768296 -1.717442 -0.951603 -4.823219 -0.662970 -8.529083 -2.939461 -3.044696 2.575049 -0.214036 0.548877 -0.766719 3.717284 0.539955 1.509311 2.147362 4.371025 -2.262866 -0.947382 -2.023288 -0.224902 1.539982 -1.797218 0.609809 1.406906 -1.069763 -2.318535 -2.222329 1.714716 -0.431318 -1.715008 -0.926411 -1.055927 2.193726 -3.297477 -0.616788 -4.567141 -1.396124 0.491296 -4.332099 0.006650 0.808050 2.619356 1.845281 -0.189092 -1.486818 0.499927 1.514607 -0.402072 -1.343953 -0.834581 3.181688 1.368281 -0.046622 1.598995 1.559932 1.894909 2.453896 3.850109 -0.100392 -1.218996 0.716935 -1.461043 -0.266773 -1.139015 -0.259484 1.977583 -1.950856 0.460103 1.094116 -1.614333 -1.310315 0.720846 -1.960223 1.644796 5.881139 -0.354464 1.433490 0.426993 -2.867615 1.613922 -1.226091 -1.836219 0.818994 2.436579 2.564002 -2.324325 -1.289876 1.083899 3.453602 1.180088 -3.222172 -0.217996 -0.288618 0.350398 -1.399164 1.335118 0.927631 0.986426 -1.245122 -0.210702 2.163310 4.047772 -2.060244 -3.201150 0.271368 0.802429 0.583266 -2.911552 0.129777 -0.219971 -0.491377 0.816640 -0.089589 0.872377 2.879344 -5.564491 2.242576 -0.377560 -1.192016 1.535754 0.315889 -0.862089 -3.122077 1.771452 2.852206 2.214445 1.226088 -0.138123 -1.115969 -2.810392 -0.274561 0.723810 1.546211 -1.297338 2.379751 -0.531935 -1.766570 -2.435906 -1.841256 -0.042745 -0.527550 -0.909846 1.022767 1.043336 -6.241274 3.406565 -1.020311 -1.797838 -0.359736 -0.952147 1.742068 -3.130161 -3.742243 0.924212 -1.600706 -3.371062 -1.394678 -1.170847 1.047558 0.604440 -0.680320 -1.120364 -3.408563 3.120833 0.126787 1.730099 1.903007 1.421829 4.847770 0.755699 -2.422430 -1.767600 -1.387296 1.849954 -1.678532 -1.241802 -1.026420 -1.321242 1.539622 4.412707 -0.671968 -0.024908 -1.254101 2.170847 -3.679553 -1.943338 1.870072 2.373410 -0.466774 2.108955 2.035392 -1.861748 -1.414831 -2.607586 -0.525049 -0.105371 -2.461633 0.393099 -3.416317 -0.391550 2.745676 -0.979146 -1.346201 1.570717 -0.576801 -0.053217 -1.263868 2.495334 5.267499 -4.038833 1.043272 -2.582138 1.930827 -3.900377 -2.771739 0.316042 0.466836 0.341904 -0.525053 0.475208 0.330745 0.361686 -2.093388 -1.600097 -0.110400 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.127541 0.315765 0.265965 -0.297381 0.619090 0.785879 0.210947 -0.298548 -0.516772 -0.090179 -0.011610 -0.932764 -0.666441 0.778514 -0.169064 0.361731 1.046444 0.080089 -0.225885 -0.187996 0.353514 -0.020358 1.132259 1.128024 -0.813632 0.260917 0.213489 0.133613 -0.019035 0.714100 -0.530793 -0.785697 0.287154 -0.304547 0.125571 -0.349861 -0.304643 -0.204910 0.356724 -1.389352 -0.076126 0.428472 0.004548 -0.065864 0.109875 0.466068 1.191980 0.557119 -0.037425 0.442052 0.311646 0.019102 0.377883 0.071010 0.416255 0.210920 0.776230 0.169169 -0.323598 -0.061748 -0.193043 -0.365716 -0.219878 0.763480 0.907325 0.019937 -0.375592 0.022115 -0.034170 0.037739 -0.031967 0.597620 0.337831 0.536695 0.448453 -0.300834 0.271711 -0.826682 0.002298 -1.306012 -0.650891 -0.296994 0.420335 0.162143 0.488750 -0.251476 1.201996 -0.169567 -0.001126 0.248189 1.169122 -0.885786 -0.190855 -0.166830 -0.342611 0.050239 -0.291947 0.156904 0.204128 -0.218271 -0.732820 -0.724881 0.433500 0.094999 -0.495499 0.049632 -0.087528 0.485054 -0.766871 -0.380711 -0.692770 -0.067760 -0.146241 -1.210454 -0.427057 -0.149972 0.115483 0.311393 -0.471333 -0.865658 0.373903 0.368616 -0.303830 -0.470432 -0.215793 0.768603 0.483726 0.041884 0.152742 0.114990 0.438168 1.014782 0.479572 -0.348975 0.010942 0.130039 -0.215549 0.138519 -0.280127 -0.133429 -0.008365 -0.639280 0.139864 0.448499 -0.480218 0.205158 0.009552 -0.177770 0.103915 2.103228 -0.352179 0.718641 0.292149 -0.958961 0.481532 -0.290633 -0.297362 0.111987 0.533801 0.686646 -0.952631 -0.519956 0.626918 1.124487 0.421187 -0.850330 0.145906 0.066537 0.045222 -0.208464 0.520340 0.088352 0.188467 -0.513258 -0.160193 0.349148 1.704772 -0.566648 -0.828220 0.216357 0.046978 0.097229 -0.535969 -0.074349 -0.427953 -0.040373 0.148014 -0.015084 0.406705 0.888675 -1.523309 0.811666 -0.277588 -0.614673 0.961262 0.084915 -0.428798 -0.195584 0.039043 0.644567 0.766754 0.262936 -0.172692 -0.171181 -0.872844 -0.083459 0.106121 0.268610 -0.598185 0.786142 0.201424 -0.796889 -0.407745 -0.449531 0.079175 -0.452586 -0.509986 0.458853 0.063778 -1.551475 0.880871 0.304701 -0.315956 0.039755 -0.156824 0.274817 -0.662164 -0.908244 0.324752 -0.369688 -0.382632 -0.104520 -0.327109 0.242575 0.358551 0.286568 -0.769317 -0.979288 0.791993 -0.037176 0.815375 0.541612 0.134182 0.610790 0.236228 -0.523724 -0.448208 -0.411314 0.384195 -0.141838 -0.383542 -0.124529 -0.493063 0.632958 0.936623 -0.026602 -0.162224 -0.609133 0.709637 -0.559071 -0.041969 0.446865 0.261456 -0.519704 0.119865 0.556463 -0.360729 -0.118104 -0.519858 -0.357052 -0.482836 -0.509347 0.385633 -0.546749 0.032943 0.421338 -0.328872 -0.324410 0.306219 -0.041066 -0.172282 0.054312 0.889570 0.680399 -0.555306 0.394052 -0.784035 0.614540 -0.957186 -0.686626 0.176858 -0.093387 -0.561410 -0.315904 0.076554 0.424686 0.173929 -0.359280 -0.300343 0.049391 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.011198 0.544672 0.401403 -0.131285 0.551633 0.320689 0.214172 0.086235 -0.276048 -0.537590 -0.132718 -0.717848 -0.915060 0.643679 -0.041718 0.110351 1.005472 0.097486 0.047533 -0.293029 0.234192 -0.434225 1.022586 0.991783 -0.889380 0.302247 0.416053 0.254353 0.045666 0.596563 -0.272980 -0.765170 0.344266 -0.203529 0.370849 -0.338800 -0.203216 -0.374477 -0.114963 -1.409039 -0.164359 0.338683 -0.171315 -0.005333 0.066289 0.629437 1.279024 0.516325 -0.260502 0.464888 0.323242 -0.111252 0.323950 0.110585 0.203412 0.001427 0.390851 -0.011812 -0.455687 0.167425 -0.090533 -0.963182 -0.236657 0.656729 0.849583 -0.142863 -0.246972 0.142502 -0.199560 0.063517 -0.125914 0.522725 0.533982 0.416230 0.626457 -0.511239 -0.024478 -1.150399 -0.156993 -2.030243 -0.838579 -0.653519 0.628465 0.124343 0.316173 -0.166997 1.080937 0.014171 0.287547 0.337706 1.196845 -0.760141 -0.247757 -0.363613 -0.084279 0.277620 -0.406274 0.088922 0.300746 -0.294557 -0.666248 -0.617555 0.646736 -0.045021 -0.485598 -0.147669 -0.221115 0.590068 -0.929401 -0.336797 -1.114882 -0.326642 0.003787 -1.147989 0.055370 0.185064 0.503517 0.496399 -0.206820 -0.610659 0.255958 0.397435 -0.173249 -0.430812 -0.341083 0.858595 0.362763 0.005247 0.395115 0.336026 0.498169 0.822615 0.908957 -0.118817 -0.213421 0.188117 -0.319291 0.022975 -0.232329 -0.154145 0.230708 -0.601823 0.069555 0.316387 -0.470241 -0.109582 0.093392 -0.378058 0.305993 1.624845 -0.191727 0.492782 0.167140 -0.851430 0.512680 -0.348754 -0.461372 0.164158 0.643806 0.705656 -0.726222 -0.402989 0.398439 1.007212 0.360570 -0.853653 -0.108148 -0.065575 0.114009 -0.240470 0.441073 0.193618 0.313383 -0.424816 -0.080554 0.433056 1.372397 -0.567386 -0.828713 0.149619 0.028568 0.118224 -0.857487 -0.014811 -0.237104 -0.128760 0.070825 -0.038491 0.224571 0.814073 -1.546153 0.705237 -0.258946 -0.489555 0.663507 0.063715 -0.275656 -0.794328 0.284908 0.729279 0.700116 0.290666 0.002814 -0.281937 -0.799136 -0.094167 0.112352 0.352015 -0.451263 0.713426 -0.068295 -0.649312 -0.545332 -0.493105 0.041424 -0.273421 -0.312632 0.338611 0.382458 -1.660729 0.891410 -0.072735 -0.444995 0.030917 -0.151729 0.448279 -0.752597 -0.973223 0.279095 -0.454944 -0.741695 -0.263334 -0.338720 0.231456 0.147176 -0.196127 -0.368488 -0.847966 0.799406 0.022464 0.559862 0.552008 0.290807 1.080032 0.342931 -0.677780 -0.372614 -0.318202 0.369563 -0.493482 -0.273949 -0.260098 -0.445116 0.500331 1.149329 -0.029163 -0.001525 -0.402092 0.631879 -0.889594 -0.360270 0.550117 0.457281 -0.235648 0.431681 0.597180 -0.442119 -0.296625 -0.649732 -0.195516 -0.165885 -0.580972 0.192749 -0.815347 -0.110682 0.655890 -0.327268 -0.379395 0.403811 -0.142670 -0.070901 -0.287952 0.773449 1.180404 -0.920405 0.328206 -0.679331 0.488645 -1.005415 -0.677444 0.078144 0.229807 -0.179371 -0.221593 0.158681 0.172704 0.113010 -0.508188 -0.375971 -0.062578 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.004882 0.674873 0.644418 -0.252532 0.652038 0.466499 0.234345 0.062023 -0.354236 -0.401076 -0.278328 -0.688295 -0.879093 0.746865 -0.007354 0.202182 1.254070 0.242039 -0.017228 -0.318493 0.369637 -0.656720 1.149862 1.186341 -1.057021 0.396313 0.564762 0.404491 0.111322 0.943849 -0.674868 -0.652772 0.290220 -0.348606 0.519167 -0.617657 -0.240804 -0.396178 -0.074223 -1.792280 -0.139039 0.297723 -0.064509 -0.042126 0.088192 0.639365 1.514231 0.591626 -0.292242 0.390002 0.347128 -0.156389 0.415201 0.133735 0.350327 0.359038 0.823839 0.230622 -0.479573 0.192570 -0.084118 -1.100236 -0.063287 0.773201 1.005701 -0.114230 -0.269980 0.146476 -0.091058 -0.035256 -0.152524 0.576064 0.422755 0.476048 0.644085 -0.855564 0.273352 -1.333510 -0.127220 -2.105537 -0.965375 -0.844678 0.514931 -0.023993 0.531596 -0.181290 1.271347 -0.132860 0.451767 0.113723 1.330752 -1.035677 -0.242259 -0.498083 -0.177328 0.297834 -0.406877 -0.059142 0.424344 -0.483438 -0.731079 -0.825782 0.970685 0.099364 -0.607831 -0.011112 -0.232544 0.750626 -0.947671 -0.605240 -1.272402 -0.446299 -0.237437 -1.286098 0.228421 0.029589 0.503860 0.487955 -0.191350 -0.991557 0.265576 0.681746 -0.231687 -0.605226 -0.464897 1.140683 0.459172 -0.164756 0.421640 0.188451 0.479712 0.920446 1.146552 -0.204391 -0.246382 0.324130 -0.588966 -0.125865 -0.424069 -0.220162 0.257015 -0.734666 -0.210995 0.464855 -0.564863 0.232612 0.407903 -0.340016 0.424094 2.263305 -0.241796 0.506044 0.106509 -1.045243 0.858653 -0.175406 -0.572972 0.244482 0.757016 0.818065 -1.408343 -0.520840 0.308731 1.149069 0.449937 -1.014606 -0.335210 -0.305299 -0.001338 -0.111900 0.451679 0.140781 0.266294 -0.529189 -0.131722 0.338433 1.785136 -0.721506 -1.156792 0.183582 -0.210188 -0.160893 -1.290294 -0.083397 -0.475389 -0.164690 -0.236722 -0.134072 0.351319 0.963833 -1.874443 0.904390 -0.500546 -0.830690 1.091922 -0.102614 -0.201594 -0.933303 0.328086 0.863211 0.948326 0.244436 -0.157668 -0.290606 -0.950582 -0.131693 0.050845 0.458341 -0.582372 0.826753 0.017800 -0.873611 -0.574291 -0.592749 0.094447 -0.502842 -0.355018 0.362876 0.260801 -1.849647 1.052442 -0.014979 -0.419580 0.338809 -0.154745 0.299995 -0.882243 -1.122198 0.346024 -0.182081 -0.493858 -0.342282 -0.377941 0.448635 0.112974 -0.295690 -0.602134 -1.176279 0.722790 -0.109229 0.602323 0.672634 0.343034 1.110325 0.703611 -0.713508 -0.563747 -0.216211 0.125405 -0.436119 -0.293341 -0.586055 -0.600215 0.665818 1.438525 0.005428 0.233588 -0.543923 0.854337 -1.035886 -0.408430 0.634349 0.370088 -0.333536 0.257457 0.702771 -0.541014 -0.484023 -0.654108 -0.376239 -0.067321 -0.627232 0.321930 -0.994464 -0.116372 0.779122 -0.425244 -0.419416 0.505564 -0.163830 -0.079956 -0.311185 0.972967 1.299945 -0.974965 0.354939 -0.694172 0.572008 -1.184371 -0.597037 0.004169 0.281363 -0.329815 -0.182348 0.394800 0.291821 0.074888 -0.456024 -0.236781 -0.317635 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.014553 0.343509 0.357105 -0.087092 0.339205 0.143769 0.147923 0.081053 -0.235423 -0.255633 -0.168710 -0.403170 -0.495629 0.424102 0.026581 0.156765 0.723086 0.211911 0.016933 -0.202557 0.155415 -0.504750 0.651436 0.698059 -0.574490 0.259912 0.238526 0.253228 0.038900 0.592739 -0.380058 -0.340077 0.180070 -0.199204 0.325864 -0.407416 -0.144665 -0.139250 -0.079851 -1.085711 -0.077361 0.253022 0.141950 -0.012379 0.069034 0.398851 0.820343 0.334080 -0.119411 0.315954 0.154081 -0.162837 0.332238 0.097641 0.223885 0.246487 0.497980 0.008461 -0.337355 0.168385 -0.044379 -0.765266 -0.025695 0.397199 0.585999 -0.100735 -0.162635 0.048971 -0.081932 -0.006919 -0.035516 0.326438 0.191520 0.191119 0.350784 -0.472327 0.218945 -0.693574 -0.079001 -1.297877 -0.578598 -0.489794 0.393329 0.104258 0.305856 -0.082101 0.733203 -0.092273 0.261074 -0.019121 0.724086 -0.603173 -0.158821 -0.230977 -0.031303 0.193080 -0.240744 -0.107999 0.290530 -0.230668 -0.406459 -0.424892 0.666346 0.042554 -0.352801 0.050996 -0.151778 0.434197 -0.625557 -0.402891 -0.776677 -0.295404 -0.136444 -0.679907 0.305055 0.044228 0.198880 0.333512 -0.108300 -0.521900 0.172813 0.333816 -0.108310 -0.314223 -0.439934 0.668671 0.164578 -0.130223 0.271967 0.145384 0.223588 0.505880 0.630845 -0.125922 -0.147196 0.259644 -0.347968 -0.048723 -0.239966 -0.200232 0.130570 -0.469709 -0.163688 0.157884 -0.340349 0.169421 0.137772 -0.134187 0.231017 1.055471 -0.108666 0.274475 0.082003 -0.557579 0.551250 -0.090677 -0.284737 0.163521 0.467225 0.422871 -0.694475 -0.301142 0.112177 0.653727 0.263516 -0.512686 -0.262844 -0.200190 0.059855 0.018256 0.279494 0.090462 0.180822 -0.318317 -0.047057 0.085740 1.013325 -0.384957 -0.530481 0.087185 -0.206636 -0.152320 -0.827501 -0.043014 -0.305472 -0.123276 -0.294358 -0.066369 0.123889 0.536543 -1.017026 0.560136 -0.345898 -0.455411 0.655148 -0.118055 -0.088048 -0.684481 0.135804 0.437734 0.596289 0.113251 -0.066836 -0.128745 -0.552081 -0.081633 -0.019416 0.261177 -0.338738 0.487748 -0.027982 -0.482355 -0.283583 -0.346655 0.091561 -0.304746 -0.174083 0.212417 0.321834 -0.975981 0.527333 -0.044233 -0.280807 0.242282 0.023011 0.118252 -0.493275 -0.597613 0.164347 -0.114902 -0.330345 -0.243715 -0.223917 0.237316 -0.031254 -0.333673 -0.256031 -0.576694 0.431371 -0.096966 0.298531 0.398860 0.131539 0.594937 0.575105 -0.457773 -0.231971 -0.026379 -0.097096 -0.417872 -0.061207 -0.269622 -0.353358 0.371796 0.867616 0.102798 0.182113 -0.234113 0.540924 -0.523444 -0.287650 0.407708 0.084475 -0.096044 0.217300 0.430130 -0.362639 -0.274180 -0.382032 -0.201475 0.043866 -0.295677 0.229666 -0.610888 -0.080970 0.426094 -0.257089 -0.259352 0.312339 -0.095365 -0.098041 -0.233969 0.644840 0.660936 -0.518382 0.264440 -0.351774 0.266316 -0.644371 -0.218490 -0.091900 0.317429 -0.240229 -0.063101 0.279037 0.147999 0.070391 -0.298011 -0.169429 -0.216101 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.203254 0.798938 0.538931 -0.635442 1.047945 0.982826 0.329358 -0.038987 -0.685286 -0.916534 -0.285810 -1.295632 -1.465950 1.317478 -0.229374 0.376150 2.022532 0.232327 -0.030487 -0.393518 0.747571 -0.560147 1.865157 1.928607 -1.640086 0.374831 0.790437 0.546142 -0.050244 1.171813 -0.272359 -1.756730 0.403036 -0.454295 0.743122 -0.821270 -0.366403 -0.312510 0.113426 -2.730293 -0.252140 0.781868 -0.338302 -0.049059 0.152110 0.400675 2.228275 1.015630 -0.542713 0.706584 0.736343 0.306826 0.486301 0.128212 0.348861 0.300088 0.388933 -0.102685 -0.535333 0.221280 -0.285602 -1.085687 -0.171369 1.399071 1.658446 -0.174307 -0.508399 0.221782 -0.216262 0.162539 -0.216099 1.045507 0.645627 0.759521 1.022828 -1.217972 -0.185172 -2.527685 0.129832 -3.169940 -1.421120 -1.067715 0.811799 0.672180 0.696603 -0.449681 2.177043 -0.280969 0.395932 0.992794 2.166798 -1.280975 -0.338854 -0.966376 -0.537459 0.406519 -0.662059 0.011761 0.207754 -0.325380 -1.236826 -1.396092 0.784434 0.050211 -0.917503 -0.581435 -0.356158 1.238301 -1.502500 -0.795956 -1.802044 0.055797 -0.162783 -2.249539 -0.344663 -0.210968 0.393088 0.660191 -0.581529 -1.417740 0.535179 0.863715 -0.465342 -0.831200 -0.450176 1.517385 0.846949 -0.145749 0.429575 0.468806 0.737705 1.687112 1.349554 -0.436823 -0.305346 0.468519 -0.497691 -0.115661 -0.739917 -0.158785 0.362813 -1.149283 -0.097521 0.822007 -0.883696 -0.204887 0.194773 -0.946984 0.567693 4.191179 -0.536157 0.995770 0.453287 -1.667209 1.155643 -0.327710 -0.716988 0.300290 1.197182 1.346812 -1.867689 -0.881404 0.864412 1.971974 0.727881 -1.297144 -0.387764 -0.097542 0.075076 -0.382364 0.804152 0.232712 0.216666 -0.800730 -0.240267 0.795309 2.706476 -0.891306 -1.322784 0.269047 0.784885 -0.041524 -1.432218 -0.091313 -1.163332 -0.238075 0.472644 -0.124659 0.698843 1.642001 -2.949948 1.345613 -0.361769 -0.769179 1.097901 0.139044 -0.478074 -1.565673 0.417643 1.346882 1.422009 0.183859 0.312573 -0.474588 -1.589612 -0.097641 0.272589 0.796238 -1.036321 1.398275 -0.145965 -1.292133 -0.947477 -0.519170 -0.380374 -0.849389 -0.681459 0.674385 0.723043 -2.644688 1.745080 0.031829 -0.553718 0.278026 -0.344770 1.086948 -1.438538 -1.862747 0.774503 -0.495074 -0.904326 -0.154243 -0.630301 0.773069 0.400586 -0.092671 -0.935170 -1.821120 1.284768 0.127514 1.299288 0.976960 0.451411 1.672373 0.336165 -1.026330 -0.830889 -1.023122 0.731377 -0.346200 -0.607394 -0.973254 -0.780748 1.059460 2.050335 -0.069323 -0.364493 -0.793190 1.379836 -1.459828 -0.220858 0.835485 0.440821 -0.667000 0.352598 1.025826 -0.893084 -0.577683 -1.288227 0.177293 -0.469566 -1.059111 0.480945 -1.401662 -0.083263 1.067868 -0.597765 -0.627128 0.702673 0.196200 -0.100068 -0.228937 1.512960 1.473379 -1.203039 0.460400 -1.378115 0.879361 -1.930460 -1.262211 -0.069091 0.136149 -0.444728 -0.391857 0.101467 0.608408 0.230599 -0.288260 -0.521454 -0.192996 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.018442 0.405609 0.364831 -0.148040 0.422811 0.249721 0.158661 0.016756 -0.240257 -0.294500 -0.171230 -0.427422 -0.547658 0.493933 -0.028755 0.178429 0.816027 0.186747 0.014164 -0.225774 0.244800 -0.466354 0.766569 0.767906 -0.669678 0.238388 0.366449 0.259669 0.060229 0.604045 -0.397554 -0.447059 0.237285 -0.262208 0.309137 -0.433167 -0.126256 -0.194851 -0.028297 -1.144631 -0.078948 0.142738 -0.004339 -0.020407 0.027161 0.401268 0.935666 0.395705 -0.172068 0.307773 0.238218 -0.065106 0.251928 0.114061 0.214091 0.244160 0.472249 0.045297 -0.323516 0.123160 -0.061648 -0.746939 -0.042594 0.494148 0.663400 -0.084649 -0.143560 0.126975 -0.117695 -0.000412 -0.060651 0.348234 0.238552 0.269732 0.398473 -0.602666 0.140513 -0.899408 -0.131686 -1.448475 -0.604995 -0.545839 0.325442 0.006374 0.361858 -0.023449 0.810835 -0.057533 0.282746 0.086202 0.853004 -0.689404 -0.176272 -0.296626 -0.089219 0.195921 -0.287729 -0.040978 0.256190 -0.264852 -0.465704 -0.551222 0.644259 0.074318 -0.376393 -0.079512 -0.153469 0.482638 -0.692345 -0.423053 -0.829765 -0.296404 -0.172402 -0.821243 0.208435 0.018091 0.383806 0.318957 -0.115228 -0.645691 0.178101 0.454059 -0.127644 -0.405636 -0.287319 0.677882 0.263561 -0.096599 0.273506 0.117049 0.275668 0.656546 0.738635 -0.141564 -0.170214 0.214195 -0.375622 -0.068579 -0.284174 -0.172058 0.157624 -0.519990 -0.078928 0.299744 -0.372209 0.090935 0.289209 -0.224921 0.292143 1.341439 -0.138105 0.320483 0.096335 -0.684231 0.478442 -0.168239 -0.332688 0.168149 0.502586 0.484734 -0.803053 -0.355146 0.186397 0.721790 0.303878 -0.621600 -0.275291 -0.219804 0.041812 -0.032712 0.253908 0.114416 0.140386 -0.353404 -0.078228 0.191860 1.139572 -0.448815 -0.590425 0.136078 -0.121152 -0.138073 -0.849057 -0.075426 -0.334232 -0.094907 -0.149597 -0.078656 0.182123 0.631671 -1.202000 0.583384 -0.354480 -0.476345 0.620132 -0.041116 -0.133564 -0.654929 0.201693 0.547120 0.617974 0.129641 0.002588 -0.149860 -0.612720 -0.086853 0.013919 0.308598 -0.362998 0.510312 0.030923 -0.587811 -0.383511 -0.297708 0.081965 -0.335210 -0.172664 0.241300 0.247731 -1.216698 0.664027 -0.053693 -0.288327 0.249878 -0.048218 0.253352 -0.580559 -0.718964 0.245583 -0.136051 -0.304001 -0.210031 -0.212642 0.304070 0.024290 -0.222840 -0.321908 -0.697055 0.437655 -0.055445 0.348616 0.416559 0.218716 0.721030 0.333818 -0.465738 -0.356664 -0.091979 0.021009 -0.361416 -0.160209 -0.314921 -0.355357 0.451633 0.948148 0.053134 0.114430 -0.243894 0.574603 -0.677028 -0.257664 0.439629 0.307040 -0.200728 0.205250 0.469918 -0.395089 -0.329240 -0.400157 -0.182773 -0.012180 -0.409684 0.216319 -0.644276 -0.055258 0.486277 -0.232520 -0.272254 0.349696 -0.084067 -0.026267 -0.219225 0.642064 0.829345 -0.608568 0.209464 -0.432849 0.308785 -0.771493 -0.392383 -0.010947 0.256522 -0.218106 -0.080353 0.218706 0.212333 0.043172 -0.257102 -0.153004 -0.233728 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::push_back(int const&) = -0.043741 3.042429 2.308773 -1.538446 2.903491 3.631226 0.647825 -0.225403 -1.121251 -1.314180 -0.980128 -3.364120 -3.603625 2.818422 -0.452523 0.245991 4.336237 -0.057423 -0.350475 -0.350980 1.119849 0.019273 4.137212 4.064622 -3.801415 1.252350 1.834864 0.942138 -0.557201 3.621027 -2.108776 -4.262667 0.499599 -0.010549 1.490007 -1.037984 -1.211112 -2.133394 -0.012500 -5.958342 -0.576498 2.113580 -1.504487 -0.343259 0.642153 0.379326 6.187963 2.047691 -0.866120 0.475159 1.216366 0.875365 1.063097 0.129189 1.386605 0.649384 2.623406 0.302232 -1.255911 0.164713 -0.564100 -1.702788 -1.050051 3.268701 3.357767 0.118667 -1.337854 -0.106749 -0.398153 -0.110907 -1.264037 2.427942 1.883375 3.031944 1.925030 -1.144015 0.611809 -3.661690 0.417986 -4.660327 -3.355116 -2.601343 1.148124 1.739451 1.624411 -1.950492 4.850555 -0.830827 1.359799 1.119790 5.358870 -3.134531 -0.552529 -2.124885 -1.463105 0.640081 -1.084634 0.287627 -0.287405 -1.727203 -2.867043 -3.116825 1.725528 0.159120 -2.168652 0.212655 -0.615656 2.484835 -2.609270 -1.219020 -3.809291 -0.354196 -0.402219 -5.169822 -2.075527 0.064738 0.252469 1.349320 -1.251308 -3.755613 1.236273 2.216369 -1.364214 -1.929364 -1.357242 3.889803 2.400458 -0.493958 1.047478 0.580453 2.466261 3.409350 2.798504 -0.729019 -0.438901 0.415020 -0.887961 -0.616167 -1.060925 0.243404 -0.532010 -2.045091 -0.396183 2.577402 -1.885115 0.728962 -1.144436 -2.087166 1.267812 10.268070 -1.772486 2.182427 0.203148 -4.247950 2.891561 -0.518568 -2.659835 -0.083875 2.086715 3.893587 -4.899285 -1.720146 2.328304 4.495888 1.501913 -2.975818 0.795637 -0.189008 -0.546136 -1.460624 2.270632 0.304120 0.784166 -1.847984 -0.846323 2.160408 6.630173 -2.111797 -5.436274 0.901850 0.765658 0.816887 -1.929131 -0.061066 -1.556414 -0.478332 1.249204 -0.603450 2.049650 3.623089 -6.585679 3.073028 -0.375033 -3.266802 3.852743 -0.252415 -0.945502 -0.771548 1.242371 3.731488 2.978490 0.963343 -0.509031 -1.981309 -3.371601 -0.425102 0.776498 1.676040 -2.430065 3.108672 0.268187 -3.552509 -2.276743 -2.745593 -0.517730 -1.797238 -2.750015 1.262810 0.405610 -6.496215 4.624248 1.102233 -0.826897 0.200714 -1.667568 1.463615 -3.021953 -4.323862 1.343870 -1.208632 -1.811536 0.273244 -1.676295 1.351176 1.661172 0.990370 -3.159150 -4.451017 2.855513 0.750615 3.087387 2.373152 1.716928 3.184318 2.038323 -2.127403 -1.666594 -2.900500 2.999512 0.144404 -1.787589 -1.807232 -2.411719 2.293977 4.475899 -0.834623 -0.477071 -3.532142 2.380931 -2.796617 -0.235127 1.697739 0.179181 -2.169316 -0.342173 2.220174 -0.807393 -1.451032 -2.765834 -0.595331 -1.810610 -2.702841 0.502371 -3.075525 -0.536089 3.102484 -1.986756 -1.997808 1.194138 -0.368454 -0.617295 -0.183389 2.847914 2.783105 -2.894184 1.899886 -3.084625 2.631587 -4.382868 -3.045521 0.607157 -1.269896 -1.105480 -1.569453 0.251579 0.974693 0.010646 -0.511495 -0.742314 -0.392486 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 0.159246 3.407252 3.364675 -2.089028 3.374496 3.954330 0.549356 0.153496 -1.527937 -1.639540 -1.054437 -4.515467 -4.491703 3.230579 -0.681044 -0.583160 4.886388 -0.177222 -0.553573 -0.520869 0.629564 0.711776 4.580660 4.545042 -4.490719 1.497281 1.452438 1.517299 -0.363822 4.329318 -2.291224 -4.940231 0.078596 1.280121 1.889580 -0.727283 -1.422621 -2.742119 -0.926087 -6.776802 -0.575477 3.213999 -1.614542 -0.234814 1.187646 1.053514 7.199328 2.237959 -0.951067 0.354097 1.536957 1.046288 1.456309 -0.033256 1.540395 -0.113884 3.943678 0.109570 -1.627628 0.325297 -0.524694 -1.998344 -1.726906 3.693705 3.833711 0.215670 -1.730502 -1.013947 -0.020812 0.015959 -1.201727 2.684284 2.526479 3.798293 2.145257 0.382086 1.174091 -3.371909 0.951345 -5.123390 -3.779186 -2.869755 2.410457 2.725659 0.694930 -3.014231 5.422849 -0.857244 1.539878 1.127059 6.116750 -2.745246 -0.725506 -2.364858 -1.805657 1.096917 -1.142675 0.329100 -0.497664 -1.308083 -3.117659 -2.666289 1.549038 -0.507316 -2.516269 1.701282 -0.771615 2.813415 -3.031290 -0.318694 -4.252343 0.070528 0.604679 -5.850615 -3.181191 0.127109 -0.189088 1.508426 -1.474746 -3.111782 1.373750 1.777716 -1.837020 -0.940229 -2.953651 4.782729 2.563365 -0.522678 1.018291 0.963665 3.206625 2.864527 2.338331 -0.975290 -0.471906 0.529766 -0.662673 -0.807178 -1.209277 0.550080 -0.646848 -1.919384 -0.185591 2.333885 -2.163132 0.689969 -3.199403 -2.206022 1.364620 11.376048 -2.096540 2.519845 0.106061 -4.396270 3.346873 0.001741 -2.996922 -0.246488 1.991971 4.562448 -4.487556 -1.810526 2.728608 5.116639 1.682860 -3.326231 2.166385 0.185496 -0.818915 -1.855285 2.969350 0.385849 0.805444 -1.805827 -1.009158 2.553821 7.082727 -1.754089 -7.604371 0.697082 0.804949 1.469643 -0.986046 0.378435 -0.501089 -0.463216 1.565951 -0.541094 2.563725 4.142164 -8.091131 3.635184 0.770237 -3.649830 4.875387 -0.775354 -0.994116 -0.371220 1.272152 4.129186 3.498629 1.521187 -1.450883 -2.298220 -3.741461 -0.505090 1.183501 1.843166 -2.735368 3.333517 0.465302 -3.549355 -2.437579 -4.409735 -0.654756 -1.027145 -4.088815 1.442787 0.075944 -7.878899 5.172398 1.305554 -0.934321 -0.681866 -2.372893 1.054210 -3.501394 -4.588921 0.831733 -1.808469 -3.263219 -0.125628 -2.018131 1.120572 1.782847 1.831947 -3.841763 -4.834244 3.779497 0.514230 3.505326 2.804059 1.706716 3.318180 3.726238 -2.088942 -1.399101 -3.343725 4.385736 0.065228 -1.919450 -0.746151 -2.772054 2.096936 4.934634 -1.327669 -0.478801 -4.581510 2.430095 -2.314008 -0.813579 1.704800 -1.074311 -2.202485 0.245880 2.406213 -0.854821 -1.375420 -3.580961 -1.301041 -2.143823 -3.013736 0.593840 -3.339421 -0.604377 3.675393 -2.380701 -2.888755 1.327840 -0.853637 -1.473277 -0.042908 3.500269 3.321729 -3.213573 3.284081 -3.786643 3.515478 -4.941865 -3.383587 0.677579 -2.425477 -1.263864 -1.844630 -0.042691 0.852013 0.071501 -0.678507 -1.296499 0.507453 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::size() const = 0.063123 0.571130 0.579541 -0.317946 0.527119 0.613142 0.087338 -0.034266 -0.258514 -0.227270 -0.132803 -0.817157 -0.662741 0.467919 -0.129250 -0.103834 0.647380 -0.072549 -0.095051 -0.033996 -0.079296 0.220625 0.668284 0.676592 -0.613111 0.292337 0.055893 0.165382 -0.200454 0.805019 -0.392251 -0.880902 -0.053479 0.410057 0.234236 0.007028 -0.290914 -0.423384 -0.145743 -0.985367 -0.078464 0.681821 -0.094516 -0.063147 0.257315 0.011279 1.111921 0.295481 0.009794 0.075543 0.156267 0.232449 0.292947 -0.017696 0.354317 -0.065630 0.790515 -0.265812 -0.274006 0.057709 -0.085761 -0.187216 -0.359578 0.556820 0.517331 0.074245 -0.297505 -0.333773 -0.068560 0.002068 -0.202207 0.427589 0.294067 0.679657 0.172805 0.358574 0.375433 -0.157958 0.213328 -0.459107 -0.596286 -0.326260 0.398352 0.797700 0.081481 -0.498816 0.812838 -0.144131 0.190204 0.014870 0.901368 -0.357667 -0.082624 -0.167404 -0.306256 0.108492 -0.096395 0.053015 -0.326995 -0.113071 -0.474285 -0.284458 0.246703 -0.102986 -0.366047 0.507650 -0.073398 0.309434 -0.500703 0.033913 -0.500959 0.048638 0.149643 -0.816466 -0.520764 0.048801 -0.253924 0.209937 -0.289680 -0.410109 0.263174 0.137599 -0.314469 -0.019124 -0.815707 0.663320 0.317521 -0.075071 0.130708 0.101925 0.510031 0.361425 0.080862 -0.171472 0.012082 0.023238 0.053970 -0.077738 -0.032264 0.109687 -0.390186 -0.238643 0.009379 0.274928 -0.306078 0.165827 -0.992413 -0.293061 0.116792 1.451983 -0.393693 0.432065 0.001855 -0.661952 0.454966 -0.020929 -0.482553 -0.150062 0.231435 0.703234 -0.386594 -0.244758 0.475202 0.778013 0.229411 -0.274973 0.522826 0.143032 -0.162048 -0.248727 0.577225 -0.008649 0.135533 -0.314544 -0.186986 0.299309 1.065992 -0.074622 -1.073373 0.109994 0.037509 0.334549 0.163117 0.110608 0.032325 -0.030742 0.193961 -0.099361 0.373353 0.573494 -1.178299 0.576346 0.164898 -0.598817 0.796656 -0.216822 -0.168279 0.151982 0.113725 0.602541 0.511451 0.195218 -0.197280 -0.380274 -0.526270 -0.100193 0.118190 0.222251 -0.483855 0.514741 0.146826 -0.638639 -0.315317 -0.806200 -0.050264 -0.122543 -0.775963 0.198363 0.132004 -1.106257 0.761114 0.334012 -0.096589 -0.199258 -0.334579 0.037705 -0.436807 -0.590472 0.018302 -0.384564 -0.514498 0.102411 -0.364905 0.039971 0.219262 0.340673 -0.583929 -0.484285 0.572175 0.145731 0.539185 0.424346 0.230829 0.272434 0.752761 -0.272118 0.015478 -0.511324 0.739046 -0.061952 -0.216629 0.234107 -0.505255 0.251452 0.652075 -0.171678 -0.127040 -0.706757 0.309892 -0.028869 -0.045920 0.221600 -0.511655 -0.339370 -0.030566 0.334352 0.010071 -0.129246 -0.566515 -0.195676 -0.420061 -0.377064 0.093425 -0.395413 -0.125344 0.532357 -0.417024 -0.555573 0.140371 -0.182052 -0.339414 0.075231 0.527593 0.139438 -0.299196 0.701910 -0.530570 0.463118 -0.650149 -0.423997 0.075495 -0.429172 -0.282284 -0.355987 -0.151216 0.101404 0.018594 -0.009652 -0.167946 0.178214 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::max_size() const = -0.037791 0.143272 0.247771 -0.138360 0.166366 -0.095238 0.077945 0.068389 -0.175916 -0.424638 0.027340 -0.453537 -0.506795 0.309740 -0.149254 -0.102783 0.445910 0.052522 0.026851 -0.256637 0.048388 -0.196113 0.501424 0.514530 -0.503657 0.060539 0.110555 0.287230 0.199689 0.170949 0.158307 -0.357200 0.110765 0.132274 0.278129 -0.129733 0.006038 -0.098564 -0.257582 -0.654539 -0.082488 0.257662 0.079820 0.046627 0.084019 0.499114 0.500371 0.290083 -0.174063 0.254193 0.310569 0.035546 0.167989 0.037419 -0.031357 -0.316984 0.192497 -0.236463 -0.232486 0.113854 0.003930 -0.559552 -0.136310 0.387357 0.511416 -0.072158 -0.045784 -0.055714 -0.050218 0.150071 0.054853 0.223172 0.243541 0.219726 0.311565 -0.087758 0.025922 -0.681549 -0.002638 -1.255300 -0.365998 -0.301821 0.559310 0.267835 -0.095040 -0.060288 0.503624 0.186113 0.094363 0.316429 0.542030 -0.133101 -0.155541 -0.149114 -0.110241 0.278852 -0.278697 0.114145 0.074894 0.213928 -0.289627 -0.101101 0.166581 -0.142270 -0.216811 0.073032 -0.148208 0.244394 -0.581884 0.049126 -0.485732 -0.058863 0.252169 -0.596425 0.060230 -0.045368 0.301881 0.183743 -0.054709 0.063016 0.056843 0.017605 -0.064437 0.096957 -0.617696 0.378464 0.095838 0.037636 0.126486 0.245765 0.216235 0.193011 0.213821 -0.122938 -0.162717 0.115349 -0.157339 0.024203 -0.192304 -0.044480 0.341266 -0.250868 0.141744 -0.047028 -0.214376 -0.349096 -0.211852 -0.228638 0.194554 0.577582 -0.015532 0.267000 0.171580 -0.286676 0.129187 -0.122527 -0.104295 0.145912 0.289223 0.233429 0.066247 -0.221339 0.168930 0.470914 0.168242 -0.278465 0.037155 0.101422 0.062123 -0.135216 0.221669 0.129056 -0.015673 -0.160230 -0.039658 0.243649 0.386178 -0.021863 -0.231185 -0.028496 0.178393 0.061380 -0.208022 0.078980 0.101841 0.004931 0.042937 0.062999 0.116355 0.402448 -0.912426 0.343410 0.148151 0.059071 0.174035 -0.066638 -0.187021 -0.623839 0.186953 0.290340 0.289825 0.088042 0.022239 -0.007028 -0.395700 -0.021910 0.062215 0.191026 -0.216946 0.287320 -0.025898 -0.168341 -0.327171 -0.308048 -0.021164 0.079412 -0.204784 0.182334 0.262527 -0.821011 0.396451 -0.207989 -0.276051 -0.195046 -0.126717 0.182734 -0.466064 -0.377458 -0.001189 -0.338366 -0.620507 -0.324516 -0.139616 0.065305 -0.111544 -0.069719 -0.110931 -0.211292 0.450603 -0.127040 0.193838 0.229535 0.085553 0.510700 0.239382 -0.217858 -0.121594 -0.036910 0.225434 -0.367888 -0.125602 0.259710 -0.120002 0.129102 0.547338 -0.092955 -0.066540 0.064660 0.326754 -0.217766 -0.392382 0.196746 0.029857 -0.005109 0.463114 0.222983 -0.340534 -0.095359 -0.459525 -0.091113 0.011135 -0.291769 0.171139 -0.333875 0.017699 0.276873 -0.069333 -0.267205 0.250609 -0.042122 -0.111679 -0.084730 0.475942 0.616411 -0.349723 0.283896 -0.423464 0.190484 -0.511846 -0.338773 -0.022456 0.056269 0.014241 -0.012822 -0.097372 0.109855 0.147557 -0.224566 -0.290645 0.199117 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -0.384971 0.281138 0.124687 -1.224427 1.272414 1.464321 0.392699 -0.736901 -1.104431 -0.387471 0.185037 -2.653024 -1.284203 1.194719 -0.490423 0.902813 2.109846 -0.278342 -0.563175 -0.332683 0.361317 1.070092 2.363821 2.342939 -1.453601 0.375204 -0.184003 0.258239 -0.415955 0.546587 -0.537850 -2.087650 0.285602 -0.268705 0.190284 0.064634 -0.784556 -0.400633 1.185757 -2.492845 -0.047949 1.311269 0.192403 -0.155876 0.337986 0.296488 2.322156 1.135934 0.102681 0.668480 0.872967 0.421947 0.881533 0.028395 0.601456 0.038617 1.089354 -0.551011 -0.423709 -0.505789 -0.476388 0.445624 -0.477557 1.609742 1.541670 0.104784 -1.214183 -0.040392 0.644651 0.109722 0.035448 1.495508 0.484838 1.220766 0.670114 -0.355237 0.561037 -1.454144 0.492096 -1.767233 -1.541131 -0.095887 0.932658 1.269658 0.826547 -0.896633 2.591196 -0.641223 -0.180347 0.599569 2.012648 -1.375978 -0.340758 -0.292690 -0.668801 -0.102217 -0.313815 0.353678 -0.013107 0.320804 -1.595985 -0.665664 0.304879 -0.085145 -0.971151 0.019571 0.285314 0.462149 -0.937957 -0.493160 -1.118666 1.059864 0.298384 -2.566079 -1.227238 -0.357681 -0.605810 0.291518 -1.375416 -1.573742 0.727726 0.048890 -0.997179 -0.363850 -1.167879 1.361563 1.373192 0.234964 0.291156 0.675053 1.075780 2.352388 0.043744 -0.967267 0.042626 0.191813 -0.018359 0.344874 -0.304788 -0.148006 -0.304289 -1.205683 0.583535 0.947222 -0.951507 0.264765 -0.941251 -0.390610 -0.138901 4.557250 -1.079570 1.863374 1.059724 -1.589094 0.955740 -0.824972 -0.427731 -0.231238 0.753812 1.514621 -1.553152 -1.063793 1.791730 2.367056 0.837271 -1.325045 1.095131 0.989716 0.236208 -0.701698 1.104941 0.173041 0.689854 -1.043364 -0.266557 1.102293 3.444162 -0.470869 -1.128407 0.373492 1.071333 0.860671 -0.163141 -0.228123 -1.273811 -0.155490 1.083853 0.524515 0.955748 1.853062 -2.634999 1.329537 0.215244 -0.718765 2.013263 0.395411 -1.198832 -0.427470 -0.325607 1.130625 1.391276 -0.048435 0.127035 -0.506943 -1.542715 -0.070443 0.375307 0.421641 -1.365143 1.526658 0.267822 -1.375719 -0.293358 -0.968371 -0.401831 -0.527108 -1.325313 1.074260 0.600970 -2.471887 1.761404 0.947881 -0.645950 -0.258783 -1.021235 1.112001 -1.180591 -1.252704 0.711410 -1.130898 -0.753660 0.274851 -0.597293 0.184743 0.658812 1.368995 -1.875610 -1.527351 2.003362 0.362658 2.228128 1.076860 -0.102590 0.463918 0.073272 -0.715774 -0.329462 -1.706433 0.888226 0.358435 -1.112273 0.107963 -0.985717 1.082482 1.415817 -0.568411 -0.778039 -1.150287 0.853538 -1.089284 0.490347 0.543379 -0.167443 -1.426018 0.155128 0.947318 -0.540231 0.267694 -1.432614 -0.256654 -1.589823 -1.033974 0.761065 -0.697550 0.111594 0.717759 -0.966750 -0.506375 0.363166 0.175943 -0.552575 0.535282 1.732867 0.650923 -0.084910 0.675157 -1.992955 1.207795 -1.783194 -1.625866 0.577965 -0.850051 -1.471969 -0.955452 -0.139283 1.156227 0.275567 -0.451475 -1.060976 0.829366 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.038901 0.455737 0.460681 -0.196647 0.535063 0.255328 0.223688 0.096370 -0.348959 -0.627110 -0.037133 -0.877824 -1.019375 0.701242 -0.109746 0.037732 1.036894 0.069922 0.011649 -0.350131 0.218231 -0.385497 1.091168 1.084350 -0.970024 0.267671 0.336399 0.341193 0.136366 0.527292 -0.127281 -0.805766 0.323276 -0.093623 0.412785 -0.281289 -0.188840 -0.364001 -0.185405 -1.456227 -0.178949 0.471590 -0.145962 0.013886 0.117907 0.788523 1.279469 0.571821 -0.294440 0.520123 0.418912 -0.135556 0.362303 0.088354 0.167537 -0.215332 0.418995 -0.051182 -0.491764 0.179601 -0.090192 -1.008497 -0.282915 0.733516 0.950417 -0.150450 -0.263626 0.058175 -0.142656 0.135181 -0.061245 0.561931 0.593972 0.453045 0.697250 -0.386862 -0.016279 -1.262643 -0.097440 -2.213577 -0.879625 -0.606066 0.861020 0.234535 0.183215 -0.260790 1.143945 0.094346 0.205994 0.466226 1.255912 -0.661460 -0.284596 -0.353716 -0.143244 0.344463 -0.466548 0.161460 0.309427 -0.132603 -0.717863 -0.510296 0.557538 -0.126187 -0.501812 -0.052236 -0.239995 0.614606 -0.991343 -0.216599 -1.107623 -0.229293 0.183167 -1.260538 -0.014307 0.128608 0.514172 0.507542 -0.255771 -0.414026 0.258674 0.265913 -0.199377 -0.276491 -0.564493 0.922467 0.368928 0.073757 0.370795 0.434137 0.537655 0.746540 0.809602 -0.169320 -0.219214 0.184903 -0.306379 0.098855 -0.260045 -0.134312 0.359681 -0.583684 0.127738 0.210693 -0.490600 -0.254695 -0.074524 -0.367408 0.286450 1.695978 -0.176881 0.598194 0.254062 -0.815588 0.522871 -0.336821 -0.397866 0.198579 0.654801 0.690909 -0.595907 -0.435690 0.477106 1.092966 0.379502 -0.904682 0.005981 0.068907 0.132086 -0.319088 0.513641 0.225295 0.298084 -0.425676 -0.082751 0.518684 1.326312 -0.497276 -0.913427 0.100591 0.129576 0.201537 -0.766620 0.039988 -0.101417 -0.099640 0.128865 0.024784 0.270331 0.872199 -1.725730 0.746203 -0.085401 -0.366862 0.698329 0.047221 -0.377762 -0.924422 0.282974 0.714286 0.706292 0.336113 -0.066302 -0.225712 -0.859874 -0.075674 0.145674 0.342203 -0.474937 0.753865 -0.099611 -0.567555 -0.589143 -0.626283 -0.009084 -0.155803 -0.408435 0.395462 0.398080 -1.760652 0.911774 -0.107530 -0.511375 -0.140452 -0.217402 0.461190 -0.827353 -0.989737 0.218263 -0.591356 -0.986105 -0.406634 -0.361012 0.165872 0.126947 -0.139400 -0.397456 -0.828013 0.952602 -0.064100 0.638281 0.567084 0.235901 1.137469 0.465646 -0.672716 -0.355855 -0.347741 0.516584 -0.533933 -0.333252 -0.104397 -0.426244 0.461563 1.138632 -0.096566 -0.057264 -0.391274 0.665174 -0.834190 -0.477101 0.535745 0.361189 -0.211996 0.592773 0.599039 -0.512685 -0.213766 -0.779033 -0.260783 -0.211658 -0.608786 0.252928 -0.772865 -0.067245 0.621652 -0.304216 -0.421831 0.412941 -0.132566 -0.137257 -0.243022 0.880878 1.308175 -0.936075 0.412766 -0.814996 0.558833 -1.059588 -0.760616 0.095888 0.151572 -0.169430 -0.225011 0.092828 0.196376 0.203421 -0.605913 -0.498245 0.141072 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.000611 1.014936 1.091491 -0.692563 0.964687 1.053178 0.200095 -0.138511 -0.465962 -0.444684 -0.288371 -1.148674 -1.196600 0.976364 -0.253566 -0.021538 1.537289 0.021169 -0.170163 -0.372143 0.424442 -0.136655 1.531028 1.569984 -1.552578 0.452393 0.755249 0.614297 0.235919 1.249720 -0.810896 -1.132771 0.102200 0.037949 0.626002 -0.508045 -0.337413 -0.755307 -0.103066 -2.220527 -0.185308 0.493872 -0.425283 -0.051100 0.270133 0.581354 2.141570 0.781868 -0.421416 0.224615 0.681570 0.282565 0.390291 0.032474 0.413190 0.101841 1.388576 0.238078 -0.375525 0.087853 -0.064588 -0.815312 -0.234293 1.263218 1.346341 0.029249 -0.396078 -0.086745 0.070893 -0.039800 -0.310000 0.842742 0.547149 1.128539 0.723384 -0.645157 0.529913 -1.640880 0.152165 -2.013232 -1.197250 -0.972228 0.566509 0.313619 0.467152 -0.460879 1.724361 -0.099798 0.514694 0.329494 1.808040 -1.070636 -0.193758 -0.643585 -0.640094 0.387310 -0.442856 0.195144 -0.063579 -0.374161 -0.953699 -1.007147 0.777110 0.024465 -0.837665 0.320462 -0.249256 0.845023 -1.046129 -0.361725 -1.281355 -0.186619 -0.081132 -1.871438 -0.534504 -0.235418 0.588446 0.341156 -0.295501 -1.169144 0.270644 0.795839 -0.455294 -0.486046 -0.870795 1.409230 0.915678 -0.166902 0.314858 0.115043 0.846823 1.047647 0.977687 -0.368135 -0.264834 0.218393 -0.520155 -0.251370 -0.553823 0.106837 0.147049 -0.697175 -0.085833 0.797408 -0.659076 0.150524 -0.055386 -0.662074 0.507747 3.720919 -0.470714 0.795958 0.151370 -1.418709 0.884607 -0.105029 -0.855418 0.219380 0.733120 1.245979 -1.798704 -0.669425 0.654058 1.578892 0.536461 -1.197382 0.162783 -0.061121 -0.316806 -0.421701 0.757944 0.057351 0.089552 -0.617100 -0.314700 0.739991 2.246276 -0.594902 -1.977375 0.194963 0.102798 0.046062 -0.811486 0.021029 -0.297063 -0.072897 0.242447 -0.154079 0.794684 1.293325 -2.812235 1.110181 -0.066065 -1.070768 1.438593 -0.190883 -0.381591 -0.490399 0.557505 1.233682 1.064371 0.289631 -0.312095 -0.464358 -1.245024 -0.153810 0.243642 0.560502 -0.917915 1.064561 0.310372 -1.209732 -0.837152 -1.041957 -0.045526 -0.434114 -0.958085 0.486650 -0.161178 -2.631863 1.580192 0.192070 -0.392674 0.076597 -0.726416 0.391631 -1.207564 -1.416489 0.360163 -0.317815 -0.653062 -0.260714 -0.555068 0.528231 0.345123 0.416175 -1.241111 -1.531233 0.912894 -0.085172 0.913863 0.880211 0.549016 1.172230 0.718637 -0.595246 -0.759366 -0.614776 0.956971 0.004863 -0.657308 -0.396802 -0.842097 0.739865 1.703196 -0.388934 0.028711 -0.965853 0.930966 -1.007754 -0.396862 0.509217 0.199271 -0.730188 0.130813 0.698584 -0.444906 -0.497757 -1.007359 -0.547089 -0.408662 -0.947613 0.437707 -1.016151 -0.069961 1.085360 -0.583634 -0.740651 0.610944 -0.246102 -0.203102 -0.028460 1.129226 1.480715 -1.021429 0.689710 -1.144551 0.935864 -1.613624 -1.048470 0.190750 -0.479295 -0.354581 -0.422919 0.025709 0.486871 0.113491 -0.238599 -0.231762 -0.006189 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.730815 0.670793 -0.751524 -1.945322 2.298284 2.143117 0.663394 -1.723289 -1.219040 -0.511983 0.539846 -4.699750 -2.132222 1.201018 -0.914321 1.803675 3.345452 -1.244129 -0.909941 -0.969599 0.712710 2.656777 4.539117 3.888543 -2.603433 0.447867 0.181587 0.359960 -0.297729 -1.235022 -0.816386 -2.616813 0.894134 -1.401465 -0.361702 1.007956 -0.993213 -1.576954 2.781895 -3.351828 -0.114205 0.257293 -0.109189 -0.127032 -0.150228 1.265132 4.093321 2.092561 -0.098025 0.751423 2.201234 0.587162 1.108020 0.205819 -0.041127 -0.619902 1.272608 -0.548707 -0.418673 -1.809010 -0.466687 1.119632 -0.758160 2.807451 2.418147 0.401699 -2.072058 1.311964 1.673036 0.024927 -0.026706 2.651399 0.933716 2.439304 1.447590 -1.578422 0.589333 -3.119029 -0.024237 -3.334389 -2.657623 -0.305013 0.865405 0.281738 1.839520 0.101133 4.301866 -0.424597 0.027568 1.398027 3.139689 -2.789004 -0.689164 -0.367780 -0.925588 -0.142447 -0.597351 1.615973 0.352878 1.056863 -2.770867 -0.975263 0.296946 -0.136325 -1.620652 -1.125232 0.877397 -0.348094 -1.004942 -0.668152 -1.978858 1.442252 0.598375 -4.693046 -2.127014 -0.095070 0.839329 0.148499 -1.810579 -3.074146 0.518707 0.081790 -1.537501 -0.857783 -0.745485 1.326765 3.133325 0.864487 1.014933 1.346500 2.363920 5.074035 0.498357 -1.502477 -0.494993 -0.224426 -0.288962 0.655725 -0.203522 -0.231452 -0.019885 -2.332490 2.687266 2.371944 -1.461661 -0.448580 0.022864 -0.809545 -0.138143 6.765735 -1.427327 3.270281 2.157103 -2.605315 0.321174 -2.961493 -0.858316 -0.331413 0.923227 2.489136 -2.159440 -1.869720 3.200157 3.721077 1.309478 -2.887175 2.137755 2.279864 0.709853 -1.624455 1.095057 0.752875 1.530364 -1.526201 -0.230540 3.073099 5.643550 -0.869141 -0.775158 1.062313 1.948090 2.004279 -0.421967 -0.863646 -2.002382 -0.307765 2.885796 1.715521 1.297101 3.134963 -3.781899 1.373471 0.676095 -0.445006 2.707471 1.580375 -2.639101 0.034109 0.001621 2.060396 1.455752 -0.381044 0.261821 -1.015762 -2.197231 -0.105894 1.092423 0.448212 -1.961500 2.312392 0.652860 -2.139123 -0.613755 -0.886811 -0.335995 -0.095506 -1.433639 1.986698 -0.050370 -4.576079 3.186908 1.076077 -1.732600 -0.659321 -2.979723 2.660439 -1.998892 -1.713460 1.601620 -2.378729 -0.663480 0.466230 -0.406227 0.045708 1.472228 3.265166 -3.418434 -2.312454 3.358535 0.973272 3.491819 1.781042 0.179725 0.897540 -2.644395 -1.152625 -1.186065 -2.447990 1.007855 1.213453 -2.789877 0.299423 -1.367025 1.871595 2.408290 -1.837445 -1.328040 -1.076294 0.533324 -3.184205 0.425370 0.708490 1.862977 -3.159260 0.729732 1.360263 -0.797582 0.657023 -2.199663 -0.533860 -2.813718 -2.492250 0.982860 -1.055841 0.273512 1.608236 -1.646592 -0.009440 0.925412 -0.030528 0.058556 0.780467 2.311572 2.276339 -0.208572 -0.019558 -3.788382 1.939880 -3.299373 -3.825275 2.270349 -1.486630 -2.192150 -1.786613 -0.276001 2.304199 -0.025657 -1.534837 -2.226973 1.640831 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.039847 -0.091955 0.084967 -0.123571 0.043968 -0.157848 0.025863 -0.027115 -0.181315 -0.164620 0.076136 -0.200750 -0.073573 0.136109 -0.112437 0.003445 0.137869 0.064171 -0.009840 -0.129083 -0.023852 -0.083410 0.159434 0.187584 -0.116581 0.002966 -0.087886 0.126050 0.058393 0.090645 0.111294 -0.141699 0.008773 0.098810 0.050860 -0.071251 0.006652 0.120849 -0.053981 -0.190059 0.023367 0.121032 0.172472 0.020294 0.047440 0.158263 0.039261 0.096127 0.009814 0.187505 0.141082 0.072522 0.065237 0.021035 0.034553 -0.115496 0.131582 -0.254922 -0.079922 0.055750 -0.020358 -0.131882 -0.032803 0.120883 0.169206 -0.025024 -0.012222 -0.107343 -0.016689 0.099358 0.140791 0.035048 -0.043255 0.006140 0.015106 0.009388 0.076455 -0.227986 0.036293 -0.433694 -0.079257 0.030065 0.290108 0.241182 -0.101606 0.057225 0.137246 0.063916 -0.064652 0.089707 0.103323 0.039249 -0.070458 0.073001 -0.081957 0.079519 -0.068362 0.003839 -0.060286 0.266836 -0.073286 0.069244 0.052443 -0.071556 -0.037280 0.099347 -0.015104 0.059044 -0.295916 0.046889 -0.035322 0.123446 0.149829 -0.136355 0.064116 -0.114342 0.082393 0.014851 -0.089355 0.130036 0.053530 -0.089046 -0.055778 0.178179 -0.404295 0.045125 -0.057948 0.056225 -0.031972 0.049132 0.001629 0.027877 -0.114901 -0.132689 -0.003424 0.055681 0.014853 0.057933 -0.069281 -0.054260 0.058219 -0.090364 0.128162 -0.132075 -0.077178 -0.185323 -0.203287 -0.000343 0.010307 0.014412 -0.012675 0.144161 0.124500 -0.033758 -0.053582 -0.022420 0.091374 0.049146 0.078425 -0.034559 0.263815 -0.101760 0.068160 0.130653 0.078459 0.007433 -0.001145 0.080695 0.031927 0.075190 0.076789 0.016821 -0.083691 -0.065702 -0.027132 -0.027437 0.091183 0.155803 0.098203 -0.038855 0.076990 -0.019615 0.044838 0.041262 0.056705 0.065052 -0.015564 0.036435 0.029587 0.132434 -0.400945 0.140391 0.067416 0.130361 0.005069 -0.030160 -0.086905 -0.301353 -0.063408 -0.001907 0.145699 -0.022130 0.091126 0.118482 -0.112330 -0.005862 -0.027794 0.036692 -0.095452 0.053636 0.058002 -0.066216 -0.039293 -0.066384 -0.000996 0.093499 -0.078358 0.081408 0.166022 -0.271676 0.044894 -0.064791 -0.070043 -0.088376 0.040112 0.063460 -0.116224 -0.025939 -0.045052 -0.140977 -0.221167 -0.123357 -0.026034 -0.003686 -0.163017 0.008832 0.024418 0.092932 0.126999 -0.100495 0.060523 0.045117 -0.085253 0.052253 0.064923 0.011062 0.051788 0.081218 0.033197 -0.227418 0.033276 0.336298 -0.010801 0.014442 0.096142 0.043013 -0.084326 0.169347 0.149858 0.100964 -0.100152 0.052670 -0.129916 0.030339 0.238984 0.068478 -0.172845 0.037548 -0.154536 -0.007011 0.003133 -0.009997 0.140358 0.016457 0.063082 -0.030004 0.051925 -0.124553 0.082309 0.018212 -0.085707 0.032634 0.226973 0.109181 0.048284 0.161625 -0.124550 -0.010023 -0.106069 -0.060562 -0.076572 0.057073 -0.085934 0.041991 -0.156693 0.105268 0.085409 0.021852 -0.101041 0.171869 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.077233 0.736189 0.602211 -0.196757 1.241842 0.432768 0.319537 0.279150 -0.430424 -0.966837 -0.422858 -0.922595 -1.692463 1.083814 -0.028369 0.493887 1.541006 0.060205 0.127880 -0.589913 0.805384 -1.095128 1.654920 1.084116 -1.567754 0.406923 0.750026 0.756629 0.232641 1.127185 -0.485836 -0.953118 0.549612 -0.604989 0.829733 -0.698517 -0.041194 -0.367156 -0.344136 -2.154501 -0.390006 0.513841 -0.497445 0.256024 -0.027294 1.493806 1.841977 0.941236 -0.703927 0.876491 0.702556 -0.491332 0.590183 0.336352 -0.082032 0.151914 0.495184 0.095175 -0.930359 0.283803 -0.190888 -2.070804 -0.139162 0.862485 1.506854 -0.613660 -0.376494 0.862640 -0.400886 0.149267 -0.081028 0.890982 0.900731 0.248315 1.397068 -1.090988 -0.366470 -1.995155 -0.351022 -3.764068 -1.267105 -1.466999 0.768440 -0.068748 0.563368 -0.250593 2.018920 0.046665 0.341524 0.696069 1.862853 -1.397470 -0.375315 -1.209002 0.098209 0.317027 -0.892573 -0.369837 0.956935 -0.291188 -0.884443 -1.052795 0.977195 -0.254905 -0.745520 -0.678065 -0.874393 1.295836 -1.752797 -0.834389 -2.271751 -0.457260 -0.188673 -1.859952 0.338835 0.530222 0.964820 0.703267 0.249685 -0.892342 0.447817 0.966540 -0.268610 -0.781100 -0.119800 1.618494 0.706479 -0.225076 0.768237 0.836364 0.613156 1.306281 2.054548 -0.080487 -0.958527 0.625301 -0.609628 0.024020 -0.544571 -0.159637 0.741899 -1.256937 -0.062023 0.579620 -0.596251 -0.068732 0.495213 -0.831187 0.721187 2.356063 -0.216530 0.429735 0.013788 -1.308042 1.102158 -0.385928 -0.648954 0.518194 0.938461 1.011531 -1.358845 -0.780621 0.723025 1.419254 0.540254 -1.772931 -0.469942 -0.383964 0.515264 -0.319294 0.321318 0.884879 0.364016 -0.430570 -0.038415 0.224356 2.397833 -1.259239 -1.374529 0.655863 0.015431 -0.326845 -2.061823 -0.297613 -0.523732 -0.686750 0.062241 -0.009953 0.163949 1.413159 -2.311990 1.132991 -0.400384 -0.832761 1.019017 -0.186164 0.050569 -1.789996 0.172993 1.173468 1.133031 0.423363 0.005539 -0.570876 -1.329637 0.240101 0.233788 0.729764 -0.394324 1.030077 -0.399748 -0.811187 -0.920921 -0.630122 -0.125299 -0.242742 -0.171016 0.467564 0.599037 -2.858708 1.365670 -0.639287 -0.692572 0.452453 0.231632 1.063863 -1.099398 -1.637873 0.766100 -0.571791 -1.359819 -0.823618 -0.263345 0.534991 0.207569 -0.776336 -0.456313 -1.880587 1.172550 -0.151535 0.596575 0.801547 0.595442 2.049655 0.566453 -1.422071 -0.868414 -0.470120 0.210743 -0.882352 -0.061639 -0.761823 -0.331427 0.962281 1.850995 0.201964 0.384445 -0.689226 1.204485 -1.836765 -0.811935 1.144385 1.018636 -0.369786 0.990057 1.159775 -0.766995 -0.832696 -1.082917 -0.070047 -0.217769 -0.870149 0.183307 -1.647715 -0.383919 1.246999 -0.388337 -0.646992 0.767968 -0.100749 -0.189121 -1.147364 1.766839 2.488604 -1.786799 0.374922 -0.995135 0.912451 -1.679469 -0.954453 -0.022986 0.679718 0.000100 -0.021295 0.783466 0.272155 0.158723 -1.077494 -0.633348 -0.754962 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -0.914214 6.192893 5.382756 -6.893402 8.371957 12.699046 1.160478 -3.751096 -4.992025 -1.804610 -0.585228 -13.914290 -9.178549 7.808822 -2.874432 0.773467 11.148721 -2.592202 -3.171902 -0.576145 2.460761 6.885944 11.770460 12.355800 -10.050081 2.986424 0.980333 1.747490 -1.908527 7.395227 -4.475167 -13.598625 -0.479963 2.295569 1.948267 0.951143 -4.734857 -5.205551 3.236833 -14.889545 -1.196305 8.223010 -3.883025 -0.781459 3.390362 -0.596748 16.604091 5.128761 -0.567992 1.150441 4.344761 4.347764 3.710246 -0.959203 4.217544 -0.594798 8.832208 -1.045282 -1.686305 -1.642518 -2.196055 2.916445 -4.041776 10.100565 8.897735 1.918840 -6.079277 -2.471809 1.932388 -0.254252 -2.810594 8.399908 4.707345 10.669055 3.880168 1.641894 3.282103 -7.244969 4.331026 -5.252419 -8.672916 -2.667045 3.949655 9.111535 2.864681 -7.811198 14.425110 -3.280232 0.221874 4.345428 14.222370 -6.515639 -0.685775 -3.467689 -6.772785 -0.198848 -1.110314 3.064202 -4.900786 -0.561630 -8.644203 -6.748930 0.668006 -0.878221 -6.033272 3.010318 0.002105 4.607336 -4.939135 -0.316659 -5.450700 4.746494 1.771772 -14.583292 -11.917020 -2.346781 -3.385983 1.758674 -6.543716 -8.807277 3.707642 2.222504 -5.800506 -2.076092 -6.614075 8.970984 8.823544 -0.164918 0.218365 2.213556 7.975442 9.669531 0.037797 -4.085874 0.797473 -0.373696 1.279042 -0.164134 -1.852858 2.326082 -3.639043 -3.899447 0.772357 6.483699 -4.673437 1.708292 -9.378231 -5.164888 -0.020752 30.477627 -6.668547 8.933184 2.598641 -10.480393 6.395344 -1.627804 -5.611557 -1.335544 3.850994 11.150687 -11.634903 -5.349670 10.341552 13.435481 3.401110 -6.809642 8.025757 4.666824 -2.228373 -5.756300 8.453539 -0.453262 1.860472 -4.441908 -2.793552 7.341992 19.399100 -2.773291 -14.116079 2.133158 4.990138 5.926935 2.086731 0.317015 -3.071101 -0.576953 7.606185 0.565884 7.684130 10.314995 -17.817906 7.895411 2.856180 -7.196373 11.199153 0.146170 -5.031507 3.316679 0.952931 8.913755 7.249388 2.252340 -2.252457 -5.323996 -9.318630 -0.663719 3.293255 3.122556 -8.766614 9.301689 2.356099 -9.488856 -4.111024 -8.561411 -3.463674 -2.912222 -11.542081 4.345751 -0.570326 -16.004070 12.342114 6.519005 -1.105499 -2.759233 -7.584933 4.566791 -6.750212 -9.364966 3.112192 -5.550631 -5.346387 2.570650 -4.895367 1.660002 5.767206 9.002617 -12.786849 -11.071235 10.224359 2.553745 11.783416 6.205125 2.216023 3.587024 4.360809 -3.696022 -3.005084 -11.194696 11.980797 4.601307 -6.599061 -0.422033 -7.126253 5.208473 8.733355 -4.353934 -4.989502 -11.108464 4.777662 -3.811241 2.165528 2.131516 -3.444411 -8.507599 -1.979495 4.580130 -0.210469 -0.074207 -8.798290 -2.146753 -9.588471 -6.660340 2.767359 -4.416859 -0.566050 6.194592 -6.316670 -5.187109 2.250028 -0.327865 -3.616743 3.542902 8.504052 2.967831 -2.978433 6.836188 -10.984678 8.788607 -10.811715 -9.642513 3.031612 -8.386357 -5.480974 -6.765661 -3.061192 4.482472 1.265925 -0.470039 -3.501788 4.247508 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy(int**, int**, int**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -0.177492 0.833652 0.772135 -0.461977 1.866403 0.747490 0.770636 0.239822 -0.647212 -1.602141 -0.301881 -1.171501 -2.588822 1.413977 -0.435633 0.476430 2.166514 -0.003527 0.519645 -1.058870 1.280787 -1.607442 2.847475 2.191343 -2.751831 0.502393 0.677290 1.109714 0.253531 1.790560 0.037502 -1.669024 0.989927 -0.744439 1.598362 -1.079244 -0.311730 -0.400282 -0.620179 -3.310552 -0.754550 1.125626 -0.660074 0.712701 0.351986 2.159339 2.746039 1.413148 -1.235228 1.818414 1.110318 -0.519133 1.280070 0.505844 -0.038686 -0.152528 0.349977 -0.052341 -1.150234 0.522538 -0.834266 -2.908147 0.127499 1.566114 2.574214 -0.846938 -0.436822 0.569270 -0.835536 0.505876 0.196291 1.820654 1.314982 0.291562 2.484730 -1.523111 -0.508835 -3.509690 -0.384192 -5.613807 -2.005080 -2.150100 1.391078 0.495948 1.138136 -0.681797 3.090043 0.404672 0.466750 1.387505 2.405402 -1.674647 -0.270357 -1.361816 -0.287158 0.169130 -1.148764 -0.112927 1.032000 -0.211624 -1.543175 -1.347536 1.179023 -0.411027 -1.004523 -1.255144 -1.352151 1.823216 -2.569012 -1.058046 -3.186616 -0.328127 -0.366749 -3.050594 0.495704 0.029957 1.337037 1.002221 0.257214 -0.670901 0.744168 1.306285 -0.336718 -1.073396 -0.500437 2.573708 1.282933 -0.020230 0.890076 1.275805 0.139071 1.825252 2.988536 0.175687 -1.301874 0.820939 -0.746710 0.363424 -0.720327 0.148502 1.615405 -1.664277 -0.336273 0.470700 -0.662265 -0.467445 0.530686 -1.370190 1.091835 4.161733 -0.549950 1.222402 0.583534 -1.900427 1.628904 -0.229767 -0.167087 1.288170 1.921498 1.154878 -2.182600 -1.196757 0.991655 2.074152 0.569673 -2.616546 -0.769397 -0.103720 0.765895 -0.627261 0.498930 0.842810 0.510280 -0.995433 0.248711 0.201937 3.288115 -1.631710 -1.796797 0.643927 0.585407 -0.556837 -2.530768 -0.385048 -1.014509 -0.809283 0.263664 0.020172 0.076218 1.938555 -3.623270 1.565633 -0.693863 -0.558396 1.523890 -0.087499 -0.136300 -3.054497 0.421663 1.277830 1.345157 0.648626 -0.038224 -0.460875 -2.037565 0.706702 0.144207 1.189792 -1.026140 1.901430 -0.824052 -1.332622 -1.520748 -1.361074 -0.281949 -0.400791 -0.577452 0.680338 1.163821 -3.938702 1.535956 -0.804829 -1.501736 0.624627 0.409327 1.764211 -1.421258 -2.424135 0.971367 -1.326583 -2.360749 -1.652953 -0.489452 0.504659 0.306812 -1.129262 -1.102159 -2.615995 2.110376 -0.534653 1.262242 1.390877 0.786529 3.432751 0.953738 -2.340992 -1.517096 -1.128425 0.750773 -1.167532 -0.505072 -1.173316 -0.737463 1.179088 2.939532 0.328111 0.452546 -0.772537 2.349803 -2.561429 -1.039597 1.772935 1.246335 -0.229750 1.640823 1.705470 -1.065337 -1.129111 -1.574079 0.184798 -0.098417 -1.136584 0.919298 -2.367152 -0.175207 1.100755 -0.165449 -0.997616 0.924932 0.001665 0.037153 -1.463706 2.713946 3.501262 -2.479811 0.394149 -1.333556 1.203544 -2.415784 -1.158067 -0.468832 0.705981 0.301659 0.241987 0.680323 0.851847 0.887135 -1.670604 -0.905311 -0.654704 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__miter_base(int**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.021026 0.229423 0.143580 0.026343 0.253999 0.036877 0.139132 0.064413 -0.154146 -0.272016 -0.112143 -0.274298 -0.407604 0.336218 0.019496 0.196591 0.560619 0.190063 0.070254 -0.169906 0.142008 -0.467798 0.541630 0.524271 -0.415006 0.168068 0.206609 0.153091 0.000000 0.375869 -0.202960 -0.296722 0.266132 -0.263466 0.205522 -0.332598 -0.065749 -0.055440 -0.037340 -0.794364 -0.067845 0.116022 0.104225 0.001183 -0.015652 0.331609 0.580898 0.279575 -0.089073 0.333787 0.110393 -0.147710 0.229184 0.122296 0.125171 0.177097 0.174500 -0.088139 -0.308130 0.126289 -0.050886 -0.700611 -0.047218 0.275307 0.464100 -0.113898 -0.081196 0.146598 -0.179552 0.029080 0.001329 0.224828 0.179276 0.067055 0.305662 -0.443972 0.017777 -0.598917 -0.184541 -1.204490 -0.433937 -0.401424 0.301305 0.036218 0.280059 0.048464 0.545242 -0.012266 0.189446 0.047505 0.576857 -0.522332 -0.165666 -0.173945 0.074505 0.154400 -0.250828 -0.063970 0.283188 -0.181758 -0.323222 -0.372473 0.528961 0.044623 -0.242398 -0.154769 -0.136957 0.344144 -0.579007 -0.369070 -0.675838 -0.301042 -0.132315 -0.526052 0.336874 0.118510 0.261122 0.317762 -0.060845 -0.407062 0.145190 0.276923 -0.023420 -0.327765 -0.186244 0.443632 0.082450 -0.064079 0.258289 0.164323 0.142063 0.511622 0.577101 -0.060364 -0.144369 0.191016 -0.271159 0.012000 -0.171323 -0.210630 0.132581 -0.436577 -0.040820 0.131950 -0.272899 0.025669 0.207815 -0.117615 0.206952 0.590272 -0.037864 0.192442 0.099418 -0.445512 0.331389 -0.204195 -0.180870 0.138591 0.401055 0.277048 -0.394949 -0.242700 0.080251 0.479155 0.215089 -0.408361 -0.292924 -0.187983 0.158474 0.013375 0.150675 0.143282 0.165406 -0.257663 -0.001529 0.077637 0.747994 -0.362693 -0.191731 0.108883 -0.133918 -0.114938 -0.728828 -0.074654 -0.273697 -0.107701 -0.195164 -0.026569 -0.005693 0.422056 -0.680916 0.407936 -0.329729 -0.256088 0.357264 -0.006861 -0.087510 -0.621210 0.114086 0.338393 0.435591 0.094532 0.089955 -0.078246 -0.424235 -0.060009 -0.024029 0.216105 -0.200758 0.355629 -0.064471 -0.363999 -0.262036 -0.133086 0.098844 -0.261911 -0.005939 0.175616 0.391982 -0.770444 0.388855 -0.119204 -0.278643 0.214109 0.102103 0.217649 -0.397861 -0.495405 0.182544 -0.159628 -0.289342 -0.184493 -0.124864 0.180174 -0.041944 -0.360903 -0.059231 -0.391131 0.341919 -0.019727 0.185225 0.279645 0.120691 0.554125 0.240180 -0.430143 -0.184782 0.006947 -0.151980 -0.455270 -0.027591 -0.206511 -0.208472 0.328361 0.701850 0.148089 0.089489 -0.058120 0.427903 -0.514781 -0.231077 0.390332 0.275691 -0.035687 0.246791 0.374775 -0.342687 -0.236085 -0.257465 -0.058228 0.069695 -0.262429 0.140051 -0.517620 -0.054271 0.319252 -0.145268 -0.161875 0.260374 -0.043619 -0.009149 -0.256590 0.489410 0.571330 -0.466596 0.121280 -0.256957 0.137005 -0.515404 -0.217183 -0.051278 0.398899 -0.151924 -0.008349 0.223495 0.104053 0.045889 -0.277740 -0.173822 -0.228759 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_base(int**) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -0.666518 -0.159080 -0.215766 -1.341699 1.288899 0.664068 0.536984 -0.511740 -1.359700 -1.122059 0.250091 -2.365016 -1.598305 1.526054 -0.496943 1.225113 2.809199 0.107712 -0.240407 -0.962181 1.124024 -0.353110 2.939246 3.088305 -2.088301 0.198759 0.475170 1.046061 0.105318 -0.078235 0.335471 -1.867676 0.550758 -1.389177 0.595896 -0.765185 -0.466314 0.193149 1.242762 -3.466996 -0.259038 0.627585 -0.020770 0.121228 0.035090 0.974582 2.252398 1.621490 -0.688798 1.568497 1.596623 0.045493 0.913317 0.173169 0.018097 0.037568 -0.097616 -0.238099 -0.455457 -0.125581 -0.432415 -0.754362 0.176091 1.941608 2.353522 -0.306459 -1.134708 0.733268 0.588235 0.366615 0.369323 1.753208 0.333516 0.599479 1.560815 -2.440515 -0.308674 -4.379039 0.315138 -4.574395 -2.026951 -0.612795 1.550186 0.503083 1.034521 -0.004045 3.227847 -0.296759 -0.144820 1.892507 2.303295 -1.636966 -0.579545 -0.850942 -0.744806 0.405982 -0.820224 0.348494 0.786277 0.866469 -1.836618 -1.218530 0.776298 -0.108439 -1.233974 -1.512344 -0.078112 1.162816 -1.645690 -1.233640 -2.058526 1.176529 0.175556 -3.228170 -0.399553 -0.693236 0.862174 0.574901 -1.236489 -1.615864 0.582763 0.346546 -0.776520 -0.643506 -0.561508 1.496543 1.542803 0.221677 0.534969 1.195750 0.813845 3.051036 1.105586 -1.075796 -0.501860 0.810571 -0.626233 0.440971 -1.060726 -0.448557 1.054526 -1.867377 0.709794 0.798196 -1.229969 -0.863462 1.096632 -0.774601 0.216471 5.726770 -0.549450 2.034170 1.668249 -1.691649 1.190696 -1.081128 -0.026821 0.712124 1.572775 1.232807 -2.261790 -1.463647 1.521721 2.835856 1.069554 -2.145477 -0.637951 0.797947 0.631956 -0.491789 0.873136 0.470181 0.482527 -0.925022 -0.041603 1.394234 3.700756 -0.859414 -0.463700 0.274609 1.891231 0.032975 -2.130488 -0.388233 -2.206574 -0.391465 1.103192 0.744360 0.830703 2.342581 -3.926915 1.468321 -0.137094 0.166808 1.347491 0.916941 -1.399502 -3.093021 -0.033345 1.116636 1.795516 -0.275398 0.743395 -0.047252 -2.124866 0.080274 0.558065 0.741183 -1.491820 2.040399 -0.407960 -1.212300 -0.660911 -0.039122 -0.855812 -0.656956 -0.503569 1.411510 1.009843 -3.267358 1.814925 -0.042181 -1.262676 0.308355 -0.864337 2.269269 -1.868858 -1.920491 1.336256 -1.010298 -1.087302 -0.481345 -0.550736 0.747482 0.371783 0.341352 -1.459704 -1.974057 2.214982 -0.087444 2.256144 1.295728 -0.275030 1.842614 -0.995973 -1.365234 -1.069740 -1.385295 0.361627 -0.151604 -1.178767 -1.082032 -0.733727 1.396575 2.319085 -0.203803 -0.834043 -0.166129 1.807957 -2.359245 -0.194598 0.883617 1.026603 -1.126714 1.158559 1.249217 -1.685325 0.075641 -1.889547 0.334454 -0.930375 -1.289775 1.260713 -1.315127 0.287161 0.740343 -0.669441 -0.066666 1.062770 0.685138 0.170229 0.039642 2.440214 2.322452 -0.736418 -0.146984 -2.424773 1.067447 -2.454523 -1.987130 0.132500 0.374941 -1.094110 -0.511870 0.072710 1.509019 0.639732 -0.970360 -1.424905 0.564664 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.052319 0.376944 0.273296 -0.139008 0.406972 0.181769 0.159607 -0.012123 -0.212057 -0.362548 -0.148884 -0.327452 -0.539844 0.491512 -0.050788 0.209208 0.830855 0.182783 0.055348 -0.310817 0.349587 -0.542469 0.816179 0.790739 -0.729020 0.194675 0.515420 0.278514 0.182582 0.447447 -0.289821 -0.390958 0.321425 -0.413552 0.296740 -0.496550 -0.064027 -0.173056 0.018988 -1.133028 -0.094025 -0.084428 -0.112884 0.012246 -0.044683 0.517786 0.896206 0.433182 -0.273347 0.379408 0.343207 -0.037969 0.166704 0.131970 0.104423 0.211366 0.300597 0.102275 -0.269711 0.111777 -0.038701 -0.819852 0.009011 0.522992 0.712271 -0.126620 -0.092437 0.281899 -0.132815 0.018805 -0.038359 0.345054 0.257074 0.221965 0.481464 -0.871986 -0.013644 -1.219117 -0.219396 -1.762420 -0.588245 -0.590702 0.288594 -0.238510 0.392657 0.162515 0.814750 0.034474 0.285423 0.243251 0.850365 -0.722125 -0.184773 -0.324551 -0.079460 0.233339 -0.351158 0.031889 0.312300 -0.237022 -0.460331 -0.640401 0.640308 0.086815 -0.382762 -0.325008 -0.178350 0.493174 -0.765421 -0.459097 -0.876476 -0.329795 -0.210498 -0.867448 0.267424 -0.015315 0.707131 0.301790 -0.052808 -0.663636 0.121343 0.527024 -0.074621 -0.482947 -0.058551 0.595091 0.321104 -0.050345 0.283934 0.125503 0.257266 0.770597 0.883014 -0.130409 -0.239163 0.216166 -0.429483 -0.062546 -0.347539 -0.175166 0.341656 -0.561365 0.025789 0.349539 -0.368439 -0.086425 0.668624 -0.300856 0.337225 1.387202 -0.060863 0.308667 0.156155 -0.694433 0.317571 -0.274186 -0.297308 0.271730 0.552406 0.440995 -0.824803 -0.377321 0.153438 0.709415 0.307123 -0.727880 -0.436783 -0.237258 0.071988 -0.038842 0.161492 0.141799 0.097369 -0.334180 -0.058895 0.258864 1.097302 -0.500279 -0.412135 0.130615 -0.019441 -0.212918 -0.985279 -0.106710 -0.373512 -0.080356 -0.053848 -0.049322 0.159165 0.647480 -1.288600 0.528554 -0.399618 -0.352371 0.415090 0.090964 -0.165038 -0.802353 0.281693 0.544187 0.576286 0.103136 0.139600 -0.086960 -0.634781 -0.072395 0.036519 0.320726 -0.340608 0.499486 0.045316 -0.564836 -0.442393 -0.095887 0.090113 -0.321911 -0.017962 0.262165 0.199546 -1.352938 0.664861 -0.192933 -0.346965 0.288915 -0.065371 0.426112 -0.643825 -0.755409 0.328059 -0.119835 -0.273651 -0.258982 -0.167680 0.370668 0.004097 -0.233696 -0.273774 -0.734129 0.396068 -0.078306 0.293907 0.406178 0.245877 0.887824 -0.067072 -0.472518 -0.500225 -0.027262 -0.010762 -0.367327 -0.202763 -0.393645 -0.284940 0.478721 1.005535 0.041093 0.083233 -0.066153 0.599301 -0.887534 -0.294119 0.441434 0.683791 -0.206498 0.313157 0.458196 -0.483794 -0.349587 -0.379818 -0.131365 0.059318 -0.463211 0.246104 -0.666810 -0.012746 0.487760 -0.144298 -0.196919 0.428139 -0.055675 0.104941 -0.260107 0.604845 1.099536 -0.702933 0.037444 -0.457496 0.274503 -0.827546 -0.496568 0.015601 0.340721 -0.126295 -0.032354 0.176081 0.265032 0.063552 -0.283409 -0.158775 -0.258296 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -0.764512 -0.138784 -0.165633 -1.663793 1.492798 1.180988 0.638658 -0.919964 -1.542606 -1.098009 0.397744 -2.982215 -1.783715 1.842072 -0.661659 1.516075 3.158839 -0.029311 -0.480221 -1.020704 1.156347 0.215935 3.435881 3.538160 -2.365733 0.246619 0.332591 0.859258 0.166342 -0.081707 0.301680 -2.312100 0.766264 -1.306879 0.634883 -0.578590 -0.648991 0.093345 1.652559 -3.856937 -0.239558 0.916874 0.090908 0.051988 0.172860 0.996357 2.663819 1.854410 -0.452675 1.613554 1.694418 0.266227 1.074847 0.159576 0.256836 -0.041582 0.221975 -0.640299 -0.480820 -0.286010 -0.507809 -0.343467 -0.048404 2.326744 2.664851 -0.257705 -1.354439 0.707735 0.873311 0.407764 0.362908 2.048204 0.459731 0.994416 1.471853 -2.536157 -0.125328 -4.402136 0.415431 -4.653056 -2.308066 -0.479639 1.628578 0.844846 1.217446 -0.468448 3.674496 -0.281405 -0.352657 1.722294 2.758724 -1.945997 -0.607121 -0.811285 -0.699051 0.287102 -0.890954 0.611344 0.737967 0.794484 -2.172674 -1.225884 0.760302 -0.107018 -1.428148 -1.400543 0.079093 1.318345 -1.627332 -1.269362 -1.936925 1.497314 0.164542 -3.774991 -0.442092 -0.882290 0.507626 0.552084 -1.511777 -1.941786 0.701592 0.341571 -1.002978 -0.790177 -1.061754 1.816359 2.004338 0.330363 0.447245 1.448041 1.070272 3.599374 0.813801 -1.309072 -0.355429 0.700886 -0.475648 0.624800 -1.094615 -0.422705 0.968062 -2.020864 0.674518 1.077602 -1.361747 -0.597314 0.774514 -0.733513 0.102087 6.667395 -0.832930 2.480611 1.942509 -2.030635 1.279553 -1.290010 -0.087275 0.574443 1.626216 1.491715 -2.745015 -1.718518 1.957522 3.333829 1.208564 -2.371214 -0.222593 0.997682 0.490509 -0.892336 1.126287 0.462403 0.571296 -1.132063 -0.130323 1.666382 4.366830 -1.007693 -0.484164 0.288550 2.104753 0.381705 -1.891587 -0.483764 -2.351155 -0.324412 1.319980 0.982573 1.118141 2.678698 -4.205178 1.762437 0.000953 -0.037860 1.875136 0.998284 -1.744486 -2.931578 -0.108563 1.336275 1.950399 -0.413831 0.848004 -0.093229 -2.472032 0.063192 0.555195 0.710334 -1.742899 2.176011 -0.183988 -1.380670 -0.664510 -0.137923 -0.901823 -0.842095 -0.842191 1.667371 1.331984 -3.642902 2.169979 0.251169 -1.363746 0.229116 -1.233446 2.585200 -2.077567 -1.971406 1.388970 -1.238106 -1.177257 -0.370542 -0.660111 0.765372 0.298984 0.973695 -1.977577 -2.147875 2.575673 -0.066597 2.707263 1.488487 -0.269166 1.714923 -1.124681 -1.443633 -1.043784 -2.090259 0.606977 0.202006 -1.524450 -0.753909 -0.909226 1.635244 2.462619 -0.370324 -1.196171 -0.386714 1.776959 -2.717761 0.084349 0.924259 1.039247 -1.536304 0.987465 1.353463 -1.690559 0.236625 -2.054661 0.127793 -1.372321 -1.515699 1.456864 -1.221373 0.416945 0.677721 -0.814672 -0.137191 1.142146 0.696560 -0.022021 0.335059 2.682592 2.292056 -0.638993 -0.127170 -2.877075 1.406830 -2.731367 -2.367901 0.394018 -0.000190 -1.455610 -0.759373 -0.075274 1.781994 0.757090 -1.005019 -1.664231 0.827865 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -0.475983 -0.381747 0.048412 -0.776235 0.985356 0.142489 0.186688 -0.053059 -1.164348 -0.945332 -0.070587 -1.548776 -1.202059 1.472789 -0.327908 0.669943 2.069214 0.541363 -0.092859 -0.682807 0.718004 -0.841817 1.730912 1.678219 -1.224033 0.022456 0.153404 1.055041 0.211681 0.483310 0.235533 -1.112124 0.408630 -0.765147 0.539541 -0.870829 -0.069766 0.575097 0.189771 -2.286431 -0.027034 0.525935 0.222280 0.302707 -0.052380 0.995528 1.243019 1.024725 -0.393792 1.144861 0.906366 -0.232911 0.727856 0.242178 0.121489 0.128818 0.191663 -0.165634 -0.679832 0.294569 -0.404776 -1.275009 -0.142102 0.925521 1.711157 -0.313960 -0.659754 0.358493 0.102417 0.468309 0.648854 0.712964 0.403971 -0.017559 1.014046 -1.225922 -0.377968 -2.786624 0.061640 -3.705346 -0.889323 -0.558008 1.450688 0.335364 0.025322 -0.111663 1.835462 -0.133858 -0.178472 0.978665 1.778633 -0.850604 -0.662582 -0.880610 -0.159378 0.523453 -0.690942 -0.211936 1.198205 0.751770 -0.870495 -0.715610 0.590043 -0.403920 -0.721379 -0.664726 -0.410050 1.503345 -1.526585 -0.671210 -1.678864 0.617624 0.281684 -1.888097 -0.161836 -0.311787 0.246831 0.678985 -0.735146 -0.657393 0.603376 0.270232 -0.471185 -0.089799 -0.273120 1.250882 0.452330 0.021085 0.117702 1.039959 0.489580 1.610589 0.749907 -0.722863 -0.325375 0.825453 -0.395905 0.116385 -1.119383 -0.568310 0.858060 -1.393703 0.324667 0.168145 -0.943120 -0.491976 0.379344 -0.326921 0.369609 3.077815 -0.262725 0.853486 0.815740 -0.953096 1.031708 -0.068788 0.269259 0.504837 0.979736 0.697564 -0.924036 -1.021083 0.804753 1.633270 0.843921 -1.628570 -0.686676 -0.170020 0.627927 -0.002645 0.382929 0.687621 -0.139662 -0.201803 0.049433 0.493959 2.196341 -0.878350 -1.044520 0.197202 0.830053 -0.238750 -1.866013 -0.189789 -1.182552 -0.360196 0.188908 0.410915 0.322749 1.693356 -2.801988 1.310421 0.201298 0.091317 1.064097 0.276924 -0.407284 -2.574297 -0.293297 0.676429 1.536091 0.298641 0.121617 0.056493 -1.439436 0.048442 0.514422 0.726724 -0.587829 0.929320 -0.429295 -0.350532 -0.460464 -0.121430 -0.558703 -0.199303 -0.406090 0.956806 0.873897 -2.492688 0.986031 -0.349131 -0.712247 0.271892 -0.072792 1.302498 -1.331562 -1.343504 0.651327 -0.722604 -1.370088 -0.755188 -0.129954 0.590266 -0.044499 -0.176320 -0.466022 -1.389421 1.390872 -0.580364 1.039828 0.787002 -0.257329 1.295679 0.274407 -1.053458 -0.616626 -0.422666 0.066205 -0.765866 -0.234917 -0.578955 -0.024937 0.987060 1.743669 0.425926 -0.403895 -0.273226 1.347876 -1.383141 -0.635509 0.926995 0.254246 -0.323883 1.266898 1.030150 -1.540902 -0.216554 -1.104661 0.040984 -0.270364 -0.871218 0.630855 -1.149630 0.166004 0.484557 -0.286174 -0.341390 0.937123 0.431775 -0.212952 -0.355877 1.986727 1.824175 -0.902229 0.338111 -1.516681 0.946795 -1.707539 -1.067108 -0.160784 0.653962 -0.719954 0.013629 0.364475 0.649353 0.298488 -0.605678 -1.157124 0.122683 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::deque() = -0.028662 0.092011 0.186689 -0.101639 0.173571 -0.051226 0.082730 0.099502 -0.194764 -0.276572 -0.053831 -0.207150 -0.310022 0.276142 -0.093227 0.010283 0.459843 0.197215 0.050456 -0.208062 0.084038 -0.265561 0.430299 0.446080 -0.395805 0.073246 0.113211 0.238928 0.104287 0.286590 -0.001634 -0.281647 0.149927 -0.019740 0.202643 -0.306508 0.017068 0.017056 -0.176642 -0.650167 -0.024559 0.112331 0.077852 0.029937 0.050091 0.333067 0.379036 0.239420 -0.118396 0.276668 0.210193 0.074694 0.117314 0.076500 0.010524 0.009383 0.131778 -0.202110 -0.212671 0.116781 -0.009584 -0.523004 -0.042039 0.270373 0.417169 -0.072959 -0.007178 -0.022053 -0.085583 0.089900 0.097535 0.125273 0.119404 0.061088 0.219459 -0.222633 -0.011043 -0.578852 -0.056000 -1.057142 -0.296074 -0.324541 0.409043 0.147732 0.028366 0.033073 0.409176 0.050463 0.155841 0.188150 0.394592 -0.232947 -0.143263 -0.158525 -0.044569 0.223371 -0.220685 -0.034037 0.087424 0.082390 -0.221453 -0.215146 0.273926 -0.041143 -0.177685 -0.031517 -0.118777 0.278929 -0.547316 -0.134172 -0.476683 -0.044245 0.050261 -0.422045 0.144602 -0.057611 0.307631 0.174942 -0.022956 -0.094827 0.065267 0.153761 -0.046279 -0.033959 -0.350361 0.310670 0.036861 -0.059873 0.125526 0.117559 0.065085 0.266386 0.300559 -0.119905 -0.141051 0.198552 -0.185701 -0.041687 -0.246064 -0.093336 0.195378 -0.300526 0.087895 0.016937 -0.216986 -0.190202 -0.007636 -0.135974 0.220021 0.499374 0.000384 0.168426 0.121228 -0.279963 0.136114 -0.076474 -0.055798 0.165410 0.301588 0.130805 -0.087436 -0.204739 0.003986 0.351366 0.183069 -0.229302 -0.145078 -0.105218 0.064803 0.025574 0.114770 0.100382 -0.025233 -0.169211 -0.024640 0.068932 0.438374 -0.067914 -0.138337 -0.009599 0.076674 -0.127209 -0.320074 0.002744 -0.058393 -0.014366 -0.019872 -0.008333 0.063012 0.349972 -0.736051 0.320370 -0.081181 -0.022624 0.126856 -0.033114 -0.066566 -0.500754 0.108222 0.220674 0.381258 0.041397 0.102009 0.053070 -0.329927 -0.038207 0.014184 0.208295 -0.169710 0.220213 0.039638 -0.239851 -0.220050 -0.146127 0.029345 -0.058669 -0.075773 0.130025 0.249093 -0.723654 0.280087 -0.189667 -0.215285 0.071319 0.022521 0.183934 -0.381070 -0.340671 0.084284 -0.094897 -0.345489 -0.220037 -0.086253 0.195670 -0.124196 -0.119541 -0.048171 -0.246993 0.278196 -0.062379 0.107518 0.197138 0.041071 0.438599 0.112635 -0.206334 -0.142460 -0.002352 0.040300 -0.363905 -0.009015 0.114686 -0.125516 0.182932 0.546782 0.057721 -0.023064 0.065936 0.398368 -0.261190 -0.241231 0.244117 0.128144 0.047276 0.337851 0.260729 -0.380038 -0.189159 -0.270554 0.002972 0.138828 -0.189415 0.192888 -0.359080 0.047417 0.214563 -0.005031 -0.215813 0.237577 -0.019980 -0.055824 -0.127664 0.437178 0.487565 -0.276481 0.218403 -0.235030 0.102780 -0.420936 -0.174621 -0.126537 0.140936 -0.059563 0.094092 -0.030250 0.143493 0.067776 -0.078126 -0.157339 -0.030638 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_base() = 0.005082 0.380833 0.596442 -0.581916 1.257868 0.388255 0.378473 0.045049 -0.356303 -0.761964 -0.200337 -0.324188 -1.177589 0.477920 -0.475743 0.040149 0.698194 -0.235790 0.383800 -0.671180 0.682906 -0.643818 1.329496 0.728110 -1.550335 0.253194 0.034619 0.776773 0.136076 1.396673 0.155786 -0.801205 0.192421 0.120128 1.074366 -0.478957 -0.150921 -0.093873 -0.613006 -1.349325 -0.417454 0.770256 -0.301903 0.671276 0.419966 1.041880 1.184975 0.581341 -0.738362 0.960579 0.720889 0.094445 0.770581 0.281501 -0.100639 -0.151774 0.574994 -0.336470 -0.421627 0.275434 -0.636330 -1.169032 0.324101 0.731555 1.247856 -0.493693 -0.135508 -0.011097 -0.470930 0.365657 0.314764 1.039386 0.360228 0.063678 1.263932 -0.348894 0.004249 -1.486196 0.068666 -2.296001 -0.818508 -1.176285 0.491919 0.702154 0.477917 -0.398147 1.526604 0.307134 0.199955 0.608261 0.693823 -0.355754 0.169818 -0.646400 -0.463886 -0.210783 -0.330668 -0.271412 0.078555 0.381366 -0.525697 -0.290272 0.279620 -0.430354 -0.355439 -0.387564 -0.920631 0.807675 -1.330233 -0.239821 -1.299224 0.341333 -0.227502 -1.327288 0.031313 -0.363717 0.512139 0.062160 0.526340 0.219753 0.367106 0.698683 -0.308647 -0.070726 -0.662848 1.258313 0.775460 -0.056921 0.196415 0.509488 -0.391938 0.406554 1.247141 0.208738 -0.874489 0.449584 -0.032702 0.117742 -0.277373 0.531867 0.789290 -0.612398 -0.232418 0.026193 0.029080 -0.249136 -0.352824 -0.913293 0.631021 1.910741 -0.474261 0.552596 0.170264 -0.731584 0.624433 0.451815 0.265789 0.857512 0.822522 0.288139 -0.724099 -0.590770 0.454801 0.608763 0.043025 -1.076264 -0.202509 0.073647 0.214244 -0.111639 0.027664 0.315135 -0.116295 -0.397219 0.179681 -0.522787 1.381294 -0.317541 -0.985062 0.376797 0.474936 -0.650655 -0.550013 -0.218016 -0.360577 -0.434336 0.200757 -0.074411 -0.005366 0.759128 -1.941560 0.646020 -0.102809 -0.103766 0.708629 -0.387601 0.368400 -1.396146 -0.022671 0.325773 0.447664 0.122527 -0.126724 -0.146295 -0.801591 0.746194 -0.045482 0.652438 -0.576112 0.781766 -0.321280 -0.687395 -0.657835 -0.981077 -0.235479 0.251144 -0.545359 0.099518 0.364876 -1.904318 0.395272 -0.483004 -0.627590 0.400436 0.413012 0.819803 -0.266726 -0.845878 0.326876 -0.626466 -1.207712 -1.017869 -0.118941 0.159204 -0.019857 -0.294380 -0.805372 -1.135545 0.820822 -0.535428 0.410892 0.670652 0.427692 1.506128 0.584477 -1.019731 -0.773857 -0.590733 0.564215 -0.356455 -0.031628 -0.087158 -0.332898 0.306618 1.231416 0.237237 0.415427 -0.324279 1.322585 -0.754787 -0.409718 0.812260 -0.005293 -0.045365 0.903387 0.758278 -0.184762 -0.704822 -0.725484 0.304239 0.037581 -0.230840 0.673722 -0.990185 -0.055725 0.308645 0.187761 -0.805710 0.358860 -0.036457 -0.074516 -0.821534 1.501602 1.455506 -0.883083 0.392191 -0.296006 0.499512 -0.926080 -0.126553 -0.615378 -0.119272 0.426678 0.437304 -0.007303 0.644409 0.594930 -0.461013 -0.169753 -0.331830 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.053172 0.402366 0.318813 -0.083756 0.461611 0.168547 0.216516 0.156755 -0.260168 -0.522489 -0.154892 -0.471152 -0.796841 0.606238 -0.064596 0.137441 1.010996 0.264104 0.094311 -0.328197 0.306898 -0.572391 0.977272 0.935371 -0.851524 0.205409 0.446001 0.328297 0.128549 0.532456 -0.202066 -0.606364 0.427920 -0.321060 0.382018 -0.525853 -0.054196 -0.217980 -0.183473 -1.362770 -0.125710 0.148300 -0.117936 0.013624 0.002782 0.674775 1.057275 0.522250 -0.298068 0.476791 0.340636 -0.077619 0.237753 0.165158 0.085567 0.100360 0.187999 -0.024661 -0.466335 0.171409 -0.067537 -1.100290 -0.126471 0.584695 0.857975 -0.158446 -0.097140 0.212203 -0.227548 0.092209 -0.012521 0.377715 0.463325 0.225593 0.620441 -0.671719 -0.147701 -1.257742 -0.258149 -2.184491 -0.727512 -0.745480 0.603973 -0.049083 0.316248 -0.021479 0.954278 0.059822 0.350627 0.376444 1.055629 -0.763809 -0.288928 -0.447374 -0.009174 0.349840 -0.479149 0.017692 0.409049 -0.256961 -0.585727 -0.659428 0.652008 0.013088 -0.419754 -0.306247 -0.247284 0.634799 -0.964868 -0.430902 -1.160278 -0.355310 -0.071551 -1.044045 0.248211 0.113951 0.672224 0.481437 -0.080289 -0.556882 0.184971 0.495350 -0.084585 -0.460222 -0.198136 0.786195 0.263826 -0.063899 0.394439 0.298239 0.310125 0.805669 1.008905 -0.114445 -0.287735 0.281166 -0.458771 -0.034811 -0.388568 -0.210340 0.398181 -0.663614 0.069500 0.295291 -0.467393 -0.194353 0.369836 -0.333021 0.435793 1.412708 -0.065394 0.375480 0.176407 -0.777853 0.456814 -0.317844 -0.328631 0.268215 0.678108 0.505823 -0.698965 -0.419243 0.184801 0.856781 0.378334 -0.806664 -0.325073 -0.251792 0.175741 -0.142564 0.252673 0.258753 0.195752 -0.399473 -0.040573 0.345872 1.198839 -0.568767 -0.593571 0.128806 0.044036 -0.098085 -1.005204 -0.076478 -0.277156 -0.122783 0.004264 -0.039564 0.142240 0.785323 -1.408718 0.657984 -0.340973 -0.332670 0.474667 0.066278 -0.201549 -0.930962 0.317572 0.654176 0.720567 0.233550 0.095079 -0.127424 -0.749958 -0.084638 0.078811 0.417635 -0.332497 0.588856 -0.059584 -0.574739 -0.558515 -0.309072 0.068874 -0.308263 -0.104193 0.299577 0.415531 -1.578479 0.779959 -0.262182 -0.473462 0.192833 -0.032351 0.476012 -0.793607 -0.942723 0.321558 -0.276408 -0.643198 -0.366096 -0.218744 0.370518 0.031794 -0.319700 -0.215023 -0.834314 0.669562 -0.015469 0.388321 0.470856 0.268010 1.135565 0.182369 -0.646614 -0.462248 -0.184165 0.139325 -0.588107 -0.208047 -0.301359 -0.325461 0.524433 1.196003 0.052893 0.030004 -0.182136 0.731793 -0.961579 -0.429618 0.598805 0.636671 -0.097626 0.501245 0.615727 -0.631984 -0.422534 -0.529324 -0.097468 0.080202 -0.558014 0.224881 -0.872918 -0.021413 0.586572 -0.166836 -0.315182 0.445383 -0.076013 0.014583 -0.356826 0.788124 1.249552 -0.905703 0.223032 -0.568042 0.370604 -0.988759 -0.581315 -0.015061 0.353560 -0.106370 -0.000394 0.210854 0.214578 0.082202 -0.435426 -0.333680 -0.223769 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -0.069960 4.663618 5.555731 -5.041240 6.985055 7.937218 0.816766 -1.300833 -3.101436 -1.681621 -1.364074 -7.970812 -7.562761 5.186948 -2.000625 -0.111728 6.875972 -2.165308 -1.551156 -1.282320 2.538384 2.481314 7.715852 6.831123 -8.430407 2.396137 0.806671 3.288056 0.017321 7.502108 -3.769377 -7.677532 -1.037483 2.509684 3.431223 0.059505 -2.520865 -3.801957 -0.645283 -10.395759 -1.282004 6.188106 -2.954165 0.986320 2.791216 2.705610 11.319228 3.630901 -2.001275 1.281415 3.805035 1.716809 3.175239 -0.346900 2.115645 -0.501922 8.040856 0.136558 -1.978295 -0.231588 -1.533089 -1.219132 -1.780321 6.457746 6.992583 -0.093766 -3.463066 -1.367028 0.859622 0.229940 -1.516912 5.977979 3.310421 6.238007 4.452508 1.803773 2.707082 -4.800264 2.914358 -6.216134 -6.118815 -4.097560 3.174791 5.736720 1.357253 -5.963071 10.415607 -1.405802 0.593879 2.235076 9.129655 -3.884128 -0.065074 -3.918951 -4.461704 -0.128921 -1.382820 0.291080 -1.837121 0.097262 -5.173679 -3.684458 1.065641 -1.592614 -4.197689 2.910845 -2.225243 4.344505 -4.841956 -0.111703 -5.405244 2.625555 1.226096 -9.938411 -6.747505 -1.412540 -1.205876 0.676033 -1.617805 -3.910707 2.173976 2.675991 -4.002178 -0.588338 -5.708500 7.941531 6.274567 -1.010795 0.722373 1.948166 4.385101 4.354499 2.390301 -1.846153 -1.788328 0.827738 0.269002 -0.643585 -1.616177 2.532620 -0.750542 -2.868048 -0.459498 3.246318 -2.119394 1.700728 -6.632318 -4.366645 1.138933 19.732180 -4.469627 4.868826 0.321047 -6.433336 5.510401 0.957738 -3.545681 0.763699 2.797335 6.853110 -7.923143 -3.609198 6.225336 8.094920 1.628111 -5.965777 4.985482 2.156649 -1.493540 -3.619147 4.867759 0.644084 0.606532 -2.040238 -1.524537 2.595037 12.877632 -2.099155 -12.461089 2.038955 2.211583 1.766360 0.122274 -0.000805 -0.628739 -1.562548 3.562961 -0.091757 4.821656 6.900398 -13.516484 5.446968 2.372411 -5.540481 8.742258 -2.028962 -1.189058 0.077437 0.470217 5.725049 5.066752 1.787676 -3.187867 -3.755312 -6.453145 1.014181 1.970485 2.751577 -5.552291 6.051677 0.986789 -5.900097 -3.419331 -7.811287 -2.332410 -0.179839 -8.051585 1.904701 -1.311791 -13.040525 7.754331 2.354968 -1.002481 -0.824366 -3.509033 2.620477 -3.958949 -6.263833 1.603070 -3.101705 -5.529720 -1.135384 -2.824806 1.412747 3.110674 4.345712 -8.874681 -8.966123 6.661152 -0.078310 6.431321 4.288853 2.040538 4.411484 5.883849 -3.376428 -3.002998 -6.595755 7.887617 1.938881 -3.154038 0.062169 -4.600256 2.974844 6.571998 -2.394770 -0.550335 -7.886015 4.422081 -2.698739 -0.353038 2.272634 -2.872883 -4.713151 0.305228 3.853061 0.000883 -1.703203 -6.358076 -2.044001 -5.175192 -4.070682 2.249964 -4.200671 -0.861943 4.777343 -3.629644 -4.783540 2.036558 -1.062321 -3.297258 -0.133895 7.786444 5.096005 -4.068763 5.402204 -6.532838 6.544580 -7.421504 -4.937688 0.751418 -5.561492 -1.802091 -2.834128 -1.017498 2.696701 1.061368 -1.519894 -2.009553 1.250547 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.096239 0.499968 0.926542 -0.520466 0.525887 0.402312 0.112524 0.230812 -0.494564 -0.295316 -0.223042 -0.759122 -0.713139 0.614207 -0.148313 -0.271932 1.014489 0.242724 -0.124928 -0.238903 0.007420 -0.111275 0.801432 0.982235 -0.899187 0.343540 0.078652 0.509741 0.063304 1.086834 -0.488197 -0.748043 -0.144250 0.476020 0.556125 -0.420524 -0.250992 -0.330189 -0.470314 -1.555800 -0.032570 0.778634 0.089111 -0.045143 0.389352 0.440343 1.232801 0.409227 -0.158998 0.158287 0.320524 0.220005 0.384740 -0.014452 0.355935 0.089999 1.102261 -0.099048 -0.384584 0.234650 -0.038916 -0.599635 -0.165899 0.690561 0.778653 0.030590 -0.270186 -0.522243 0.143782 0.033502 -0.032890 0.412988 0.291283 0.560127 0.312700 0.140664 0.525722 -0.649825 0.342069 -1.228531 -0.755470 -0.595708 0.848838 0.695106 -0.063299 -0.599676 1.005292 -0.222960 0.393447 0.083330 0.961154 -0.356393 -0.159901 -0.386084 -0.435093 0.357167 -0.177359 -0.160584 -0.085913 -0.026114 -0.535744 -0.310673 0.496468 -0.134400 -0.485478 0.757540 -0.144651 0.583352 -0.748349 -0.028987 -0.793847 0.145857 0.232328 -0.958594 -0.279802 -0.222941 -0.055278 0.250044 -0.257746 -0.309585 0.226229 0.251999 -0.404538 0.168615 -1.275356 1.047001 0.247268 -0.245477 0.147561 0.091282 0.395100 0.165886 0.311930 -0.335677 -0.090741 0.349847 -0.266225 -0.254981 -0.404844 0.026782 -0.004620 -0.350521 -0.159040 0.093024 -0.456987 0.158413 -0.812831 -0.247003 0.322942 1.970433 -0.337015 0.482402 0.011283 -0.673862 0.787241 0.300408 -0.429788 0.085189 0.470996 0.653380 -0.719624 -0.369974 0.221914 0.934005 0.362780 -0.443022 0.298216 -0.072377 -0.276709 -0.058185 0.611935 -0.042617 0.019680 -0.379557 -0.217784 0.169122 1.264593 -0.004136 -1.429171 -0.076152 0.004939 -0.007174 -0.177547 0.169568 0.046429 -0.015278 -0.076311 -0.170968 0.543479 0.763620 -1.852271 0.838220 0.068138 -0.640380 1.025901 -0.403654 -0.074257 -0.415563 0.140393 0.621984 0.938617 0.198722 -0.417093 -0.187870 -0.710656 -0.122225 0.087100 0.399458 -0.596263 0.605696 0.185570 -0.668782 -0.330304 -1.044293 -0.060762 -0.087215 -0.823331 0.217858 0.067917 -1.499784 0.819041 0.139080 -0.164201 -0.052554 -0.278048 -0.128288 -0.688841 -0.720996 -0.036350 -0.091796 -0.701638 -0.291950 -0.440042 0.327151 -0.011387 0.201957 -0.674177 -0.808918 0.707980 -0.141554 0.575037 0.557542 0.110073 0.564926 1.267953 -0.257582 -0.155127 -0.375440 0.605234 -0.251298 -0.135016 0.228231 -0.614945 0.280926 1.006031 -0.153166 0.086777 -0.676868 0.725244 -0.093123 -0.341106 0.316219 -0.709198 -0.137155 0.252829 0.486741 -0.399929 -0.320151 -0.752236 -0.361024 -0.079931 -0.334359 0.369345 -0.637903 -0.036553 0.586646 -0.357726 -0.690522 0.303298 -0.208854 -0.457748 0.017997 0.922000 0.605701 -0.424171 0.922815 -0.584502 0.586987 -0.852703 -0.275593 -0.234260 -0.393388 -0.326109 -0.115808 -0.049865 0.232656 0.086510 -0.025512 -0.200853 0.165317 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator() = 0.100547 0.592691 0.939344 -0.497284 0.534410 0.460509 0.118140 0.038051 -0.451386 -0.122393 -0.290402 -0.682036 -0.568323 0.592537 -0.021815 -0.004629 1.027851 0.218847 -0.167723 -0.263660 0.173592 -0.423794 0.822501 1.044627 -0.920269 0.447837 0.295807 0.515397 0.164983 1.131723 -0.828632 -0.414765 -0.159896 0.081238 0.580477 -0.547948 -0.327370 -0.328762 -0.152414 -1.662372 -0.056919 0.535753 0.206730 -0.052937 0.304873 0.432141 1.314882 0.417808 -0.173246 0.154213 0.304061 -0.034330 0.500871 -0.004233 0.472712 0.406841 1.414579 0.246375 -0.284359 0.222134 -0.013152 -0.652259 0.064192 0.702664 0.808693 -0.002416 -0.342896 -0.283036 0.246145 -0.109562 -0.116160 0.526842 0.103321 0.559671 0.333347 -0.463187 0.812346 -0.843933 0.286008 -1.164962 -0.823259 -0.600479 0.504051 0.308903 0.295308 -0.387866 1.102168 -0.302233 0.400237 -0.207822 0.964172 -0.666498 -0.082904 -0.323299 -0.424338 0.248725 -0.128246 -0.198929 0.117402 -0.241907 -0.533280 -0.486338 0.867372 0.040996 -0.586570 0.675148 -0.133678 0.574863 -0.623219 -0.376151 -0.790484 -0.123960 -0.123884 -0.971808 0.061174 -0.290538 0.014783 0.212961 -0.228927 -0.759179 0.201118 0.453944 -0.363161 -0.151881 -1.124503 1.115235 0.396463 -0.293017 0.180084 -0.030107 0.397722 0.369679 0.545695 -0.340968 -0.105352 0.378772 -0.469513 -0.254187 -0.418852 -0.082361 0.050190 -0.437842 -0.438336 0.238368 -0.449356 0.524268 -0.109656 -0.176112 0.256454 2.280370 -0.317622 0.463056 0.016500 -0.771488 0.977676 0.293000 -0.507874 0.191538 0.512836 0.734692 -1.395864 -0.423220 0.191768 0.992800 0.351526 -0.645894 -0.095056 -0.183140 -0.309513 0.066000 0.571414 -0.123230 0.076142 -0.420236 -0.206845 0.077699 1.555334 -0.265182 -1.379058 0.001780 -0.322987 -0.264782 -0.802508 0.059105 -0.320177 -0.087425 -0.459246 -0.182441 0.531256 0.757455 -1.873997 0.871175 -0.273092 -0.919290 1.339880 -0.424393 -0.067686 -0.629635 0.162172 0.628391 0.930412 0.089721 -0.464320 -0.211109 -0.786243 -0.128512 -0.004556 0.339146 -0.695546 0.722347 0.190001 -0.775435 -0.278920 -0.856940 0.040353 -0.338917 -0.662886 0.266925 -0.045933 -1.405896 0.829527 0.207479 -0.165730 0.273642 -0.258056 -0.190876 -0.660535 -0.724563 0.072356 0.088882 -0.278153 -0.314667 -0.443557 0.388069 -0.021637 -0.041073 -0.828882 -0.960085 0.510327 -0.310617 0.548131 0.637346 0.137791 0.494983 1.303729 -0.328487 -0.338337 -0.101050 0.136148 -0.137120 -0.161540 -0.296232 -0.690041 0.411187 1.120837 -0.080325 0.365767 -0.647835 0.746956 -0.352824 -0.333190 0.314413 -0.520871 -0.309347 0.035080 0.458481 -0.328970 -0.326838 -0.644471 -0.562291 -0.060352 -0.325129 0.469166 -0.667163 -0.100940 0.620797 -0.487081 -0.515001 0.401688 -0.211289 -0.328146 -0.036779 0.932880 0.717170 -0.449315 0.636631 -0.550794 0.562807 -0.874483 -0.192957 -0.188549 -0.094202 -0.459618 -0.197365 0.264781 0.308629 0.109465 -0.139267 -0.051653 -0.099189 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.553526 0.769790 1.315022 -1.897717 2.871847 1.097842 0.474009 -0.019396 -1.165053 -2.137771 -0.853133 -1.157587 -3.177117 1.926767 -0.949624 0.838224 2.399264 -0.507265 0.306036 -1.736693 2.673771 -2.240775 3.248641 1.878040 -4.092482 0.303097 1.196809 2.726609 1.126194 2.767699 0.320958 -1.615048 -0.130625 -0.557273 2.980548 -1.653601 0.198028 0.339775 -1.021943 -4.161996 -1.038682 1.610274 -0.794000 1.327406 0.427854 2.617922 2.917673 2.045262 -2.298900 1.731825 2.584778 0.162388 1.567383 0.437366 -0.872111 0.086896 1.039218 -0.250933 -0.731418 0.571730 -0.819884 -3.114993 1.238632 2.301544 3.695594 -1.597301 -0.656685 1.400007 -0.376017 0.778727 0.398268 2.535961 0.627479 0.156155 3.297753 -2.697312 -0.430935 -5.358241 0.780577 -6.622421 -2.093746 -3.092626 0.795461 1.394359 1.042594 -0.845547 4.813114 0.256883 0.177524 2.436290 2.555357 -1.524775 0.165943 -3.148859 -1.251644 0.096755 -1.511720 -1.239138 0.740674 1.330150 -1.311535 -1.596844 0.575781 -0.855511 -1.565923 -1.764018 -2.607222 2.728080 -3.300008 -1.376107 -3.803547 1.151162 -0.590745 -4.023696 0.293485 -1.260222 1.192967 -0.091832 1.368375 -0.659372 0.684534 2.239464 -0.822509 -0.642357 -1.552071 3.412951 2.302862 -0.921373 0.504449 1.528913 -0.117154 1.649781 3.293887 -0.265817 -2.842794 1.909925 -0.920242 -0.242501 -1.761017 0.935845 2.835338 -2.226996 -1.121407 0.688644 -0.320864 -0.523428 0.726208 -2.854142 1.755089 6.920926 -0.788578 0.884756 0.308026 -2.124394 2.660435 1.045644 -0.129992 2.237072 1.864145 1.354701 -3.513945 -1.943917 1.537334 2.407355 0.583476 -2.874418 -1.435470 -0.180109 0.563586 -0.425189 0.207902 1.398885 -0.912868 -0.512272 0.009648 -0.722914 4.343443 -1.379681 -1.790986 1.274496 1.884986 -2.360884 -3.363320 -0.666271 -2.128390 -1.739962 0.480498 0.050080 0.774014 2.759094 -5.308761 1.999765 0.033289 -0.614767 1.577577 -1.356543 0.934750 -4.972683 0.129340 1.453361 1.842883 -0.388637 0.304352 -0.698187 -2.823540 1.683506 0.371235 1.830503 -1.472496 2.203651 -1.091892 -1.338392 -1.790156 -1.074768 -1.587412 0.068370 -0.885427 0.661205 0.663613 -4.604623 2.134330 -1.842742 -1.072692 1.409986 0.650417 2.668531 -1.719088 -2.687865 1.720986 -0.484447 -2.303784 -2.469755 -0.314491 1.570476 -0.169730 -1.363288 -2.082631 -4.202686 1.692986 -1.486340 1.118097 1.549301 1.000661 3.535695 1.204199 -2.247674 -2.457629 -1.419364 0.400295 -0.341113 -0.154518 -1.741873 -0.266262 1.542738 3.409638 0.302133 0.903167 -0.494971 3.350040 -2.528865 -1.492335 1.513606 0.331494 -0.867325 2.012816 1.741827 -1.263016 -1.915797 -2.784456 1.196382 -0.277392 -1.320523 1.476798 -2.857186 -0.319813 1.796863 -0.023528 -1.524496 1.644544 0.785402 -0.427916 -2.225495 4.602311 4.054915 -2.240484 0.403703 -1.948505 1.743887 -3.051404 -0.929550 -1.404202 0.468378 0.902464 0.756819 0.757048 1.698740 1.188625 -0.823253 -0.647206 -1.580914 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::empty() const = 0.063123 0.571130 0.579541 -0.317946 0.527119 0.613142 0.087338 -0.034266 -0.258514 -0.227270 -0.132803 -0.817157 -0.662741 0.467919 -0.129250 -0.103834 0.647380 -0.072549 -0.095051 -0.033996 -0.079296 0.220625 0.668284 0.676592 -0.613111 0.292337 0.055893 0.165382 -0.200454 0.805019 -0.392251 -0.880902 -0.053479 0.410057 0.234236 0.007028 -0.290914 -0.423384 -0.145743 -0.985367 -0.078464 0.681821 -0.094516 -0.063147 0.257315 0.011279 1.111921 0.295481 0.009794 0.075543 0.156267 0.232449 0.292947 -0.017696 0.354317 -0.065630 0.790515 -0.265812 -0.274006 0.057709 -0.085761 -0.187216 -0.359578 0.556820 0.517331 0.074245 -0.297505 -0.333773 -0.068560 0.002068 -0.202207 0.427589 0.294067 0.679657 0.172805 0.358574 0.375433 -0.157958 0.213328 -0.459107 -0.596286 -0.326260 0.398352 0.797700 0.081481 -0.498816 0.812838 -0.144131 0.190204 0.014870 0.901368 -0.357667 -0.082624 -0.167404 -0.306256 0.108492 -0.096395 0.053015 -0.326995 -0.113071 -0.474285 -0.284458 0.246703 -0.102986 -0.366047 0.507650 -0.073398 0.309434 -0.500703 0.033913 -0.500959 0.048638 0.149643 -0.816466 -0.520764 0.048801 -0.253924 0.209937 -0.289680 -0.410109 0.263174 0.137599 -0.314469 -0.019124 -0.815707 0.663320 0.317521 -0.075071 0.130708 0.101925 0.510031 0.361425 0.080862 -0.171472 0.012082 0.023238 0.053970 -0.077738 -0.032264 0.109687 -0.390186 -0.238643 0.009379 0.274928 -0.306078 0.165827 -0.992413 -0.293061 0.116792 1.451983 -0.393693 0.432065 0.001855 -0.661952 0.454966 -0.020929 -0.482553 -0.150062 0.231435 0.703234 -0.386594 -0.244758 0.475202 0.778013 0.229411 -0.274973 0.522826 0.143032 -0.162048 -0.248727 0.577225 -0.008649 0.135533 -0.314544 -0.186986 0.299309 1.065992 -0.074622 -1.073373 0.109994 0.037509 0.334549 0.163117 0.110608 0.032325 -0.030742 0.193961 -0.099361 0.373353 0.573494 -1.178299 0.576346 0.164898 -0.598817 0.796656 -0.216822 -0.168279 0.151982 0.113725 0.602541 0.511451 0.195218 -0.197280 -0.380274 -0.526270 -0.100193 0.118190 0.222251 -0.483855 0.514741 0.146826 -0.638639 -0.315317 -0.806200 -0.050264 -0.122543 -0.775963 0.198363 0.132004 -1.106257 0.761114 0.334012 -0.096589 -0.199258 -0.334579 0.037705 -0.436807 -0.590472 0.018302 -0.384564 -0.514498 0.102411 -0.364905 0.039971 0.219262 0.340673 -0.583929 -0.484285 0.572175 0.145731 0.539185 0.424346 0.230829 0.272434 0.752761 -0.272118 0.015478 -0.511324 0.739046 -0.061952 -0.216629 0.234107 -0.505255 0.251452 0.652075 -0.171678 -0.127040 -0.706757 0.309892 -0.028869 -0.045920 0.221600 -0.511655 -0.339370 -0.030566 0.334352 0.010071 -0.129246 -0.566515 -0.195676 -0.420061 -0.377064 0.093425 -0.395413 -0.125344 0.532357 -0.417024 -0.555573 0.140371 -0.182052 -0.339414 0.075231 0.527593 0.139438 -0.299196 0.701910 -0.530570 0.463118 -0.650149 -0.423997 0.075495 -0.429172 -0.282284 -0.355987 -0.151216 0.101404 0.018594 -0.009652 -0.167946 0.178214 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.038834 0.681047 0.305467 -0.300277 0.665368 0.633707 0.166851 -0.179298 -0.235896 -0.385910 -0.156960 -0.739898 -0.787992 0.648403 -0.117723 0.184061 0.986612 -0.039824 -0.022373 -0.253211 0.347825 -0.083753 1.050503 0.922137 -0.915500 0.286904 0.652249 0.225880 0.035652 0.618708 -0.292940 -0.929832 0.258419 -0.214395 0.282307 -0.243117 -0.225921 -0.470038 0.165968 -1.332233 -0.140538 0.220922 -0.215883 -0.047098 0.021663 0.103269 1.329652 0.520956 -0.228756 0.287149 0.435983 0.237616 0.191248 0.078793 0.271040 0.112054 0.568108 -0.032660 -0.264196 -0.009966 -0.089788 -0.444381 -0.254455 0.773116 0.838519 -0.031147 -0.260822 0.221955 -0.155240 0.066820 -0.231533 0.562709 0.277175 0.667954 0.501596 -0.608387 0.034474 -1.215983 -0.068148 -1.591424 -0.782855 -0.596940 0.221304 0.046954 0.472696 0.089772 1.114139 -0.031633 0.273323 0.281824 1.236757 -0.722392 -0.156128 -0.346743 -0.273044 0.236532 -0.328900 0.188824 0.124536 -0.286922 -0.655417 -0.772687 0.515894 0.068004 -0.515313 -0.214386 -0.144576 0.519428 -0.753701 -0.362018 -0.874756 -0.172977 -0.171275 -1.224503 -0.467307 0.033650 0.417191 0.304019 -0.213162 -0.927944 0.226322 0.534773 -0.231439 -0.552795 0.041779 0.599946 0.614909 0.023236 0.288839 0.180166 0.581372 1.070760 0.760835 -0.164183 -0.145752 0.049715 -0.177551 -0.053032 -0.234833 -0.030191 -0.071596 -0.535185 0.254046 0.660420 -0.430294 -0.153215 0.139390 -0.549272 0.291800 2.145493 -0.288383 0.518753 0.195392 -0.966420 0.222415 -0.357005 -0.574726 0.074559 0.534828 0.816287 -0.767549 -0.443618 0.517826 1.015306 0.351636 -0.775828 -0.089709 -0.028770 -0.047210 -0.265816 0.409628 0.102159 0.180610 -0.415693 -0.165922 0.557273 1.386487 -0.538081 -1.030683 0.240100 0.329256 0.081609 -0.588747 -0.069775 -0.491443 -0.058631 0.297977 -0.078011 0.369747 0.843301 -1.693852 0.665841 -0.072526 -0.562114 0.711283 0.163937 -0.302967 -0.449226 0.354016 0.827983 0.612680 0.075594 0.107725 -0.361512 -0.802193 -0.104260 0.155332 0.333841 -0.541206 0.699619 0.068996 -0.761728 -0.581329 -0.284221 0.029587 -0.393336 -0.384960 0.345952 0.217027 -1.720156 1.036245 0.071427 -0.311985 0.085395 -0.384770 0.549663 -0.743207 -0.972803 0.367374 -0.354058 -0.361458 0.067505 -0.315000 0.337056 0.354098 0.322755 -0.585146 -0.733696 0.578534 0.132715 0.592233 0.548259 0.415538 0.822665 -0.272351 -0.524804 -0.471383 -0.347618 0.481058 -0.078007 -0.427946 -0.460986 -0.480436 0.565997 1.103131 -0.144409 -0.189512 -0.571024 0.544011 -0.950845 -0.105974 0.424655 0.506529 -0.535013 0.123952 0.504467 -0.272420 -0.304270 -0.572917 -0.140089 -0.345284 -0.670751 0.178780 -0.679953 -0.088739 0.712776 -0.443325 -0.350505 0.420679 -0.076349 0.034941 -0.106855 0.518682 0.891690 -0.784869 0.202645 -0.722085 0.435620 -1.057688 -0.823129 0.234734 -0.155006 -0.253646 -0.332370 -0.065610 0.298902 0.029035 -0.162761 -0.238747 -0.105288 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::back() = 0.020737 0.353491 0.337258 -0.047197 0.226925 -0.105918 0.110789 0.313897 -0.127840 -0.642251 -0.078365 -0.564273 -0.845733 0.378079 -0.126102 -0.286772 0.631133 0.110040 0.118875 -0.283394 -0.033954 -0.243617 0.643502 0.639088 -0.686195 0.120504 0.142865 0.335717 0.154812 0.301208 0.233209 -0.607266 0.185655 0.313039 0.458556 -0.155114 0.004864 -0.269479 -0.594370 -0.947462 -0.148625 0.494485 0.048052 0.054881 0.146138 0.673874 0.803819 0.358458 -0.253076 0.269756 0.297919 0.053873 0.241668 0.058099 -0.087675 -0.440735 0.095450 -0.381093 -0.421983 0.209238 0.017520 -0.915273 -0.293684 0.467748 0.645768 -0.105901 -0.045823 -0.119942 -0.164644 0.195786 -0.025016 0.280192 0.519006 0.306032 0.467661 0.125763 -0.106285 -0.711928 -0.026984 -1.774588 -0.544555 -0.606327 0.832937 0.467972 -0.192696 -0.251375 0.670438 0.219430 0.303310 0.450329 0.795935 -0.162117 -0.231274 -0.345674 -0.031156 0.446512 -0.396255 0.091831 0.141139 0.130273 -0.401091 -0.159085 0.205425 -0.245206 -0.293232 0.121871 -0.253193 0.366685 -0.802309 0.126916 -0.882652 -0.191429 0.391891 -0.787961 0.052153 0.144850 0.283792 0.374887 0.000111 0.139345 0.081256 0.040210 -0.062980 0.114043 -0.818415 0.605209 0.054118 -0.046861 0.286747 0.422396 0.334734 0.180600 0.421526 -0.050169 -0.268373 0.197865 -0.207513 -0.064324 -0.225926 -0.039844 0.422879 -0.334948 0.157696 -0.071548 -0.307435 -0.465151 -0.557177 -0.400914 0.366571 0.618831 -0.030875 0.255064 0.103407 -0.405235 0.279005 -0.151508 -0.274522 0.127651 0.434002 0.409777 0.195466 -0.229745 0.147823 0.623176 0.212014 -0.305064 0.173136 0.053654 0.106883 -0.263395 0.333247 0.223662 0.083158 -0.206412 -0.031866 0.357764 0.472052 -0.076312 -0.450321 -0.049319 0.250362 0.186219 -0.209881 0.146048 0.221740 -0.065681 0.090376 0.032447 0.111340 0.526980 -1.056261 0.471941 0.216271 0.014454 0.189663 -0.145354 -0.140806 -0.739544 0.338354 0.489624 0.423956 0.200759 -0.024655 -0.157856 -0.510245 -0.051037 0.123087 0.339733 -0.234810 0.389259 -0.138107 -0.208089 -0.490110 -0.560257 -0.032034 0.104815 -0.313884 0.168653 0.475135 -1.083969 0.591659 -0.323228 -0.388767 -0.304383 -0.147380 0.182837 -0.653522 -0.593472 -0.032358 -0.470461 -1.007596 -0.391767 -0.238370 0.102124 -0.090538 -0.188907 -0.063492 -0.344844 0.715790 -0.016454 0.230343 0.333112 0.208651 0.822530 0.518750 -0.401972 -0.089149 -0.203898 0.390300 -0.588942 -0.110805 0.344090 -0.207771 0.144003 0.848766 -0.140142 -0.070105 -0.064431 0.424539 -0.302217 -0.579704 0.334698 -0.039216 0.119270 0.639088 0.362716 -0.438963 -0.254926 -0.663747 -0.028487 0.091739 -0.430574 0.089990 -0.664733 -0.066001 0.527605 -0.167510 -0.442711 0.306373 -0.120488 -0.208426 -0.228772 0.609142 0.768552 -0.628706 0.520273 -0.514620 0.291129 -0.717943 -0.408218 -0.085001 0.050169 0.134921 -0.008492 -0.070878 -0.010932 0.121486 -0.347521 -0.442419 0.175280 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator--() = 0.005350 1.302451 1.170988 -1.047993 1.191265 1.610538 0.128084 -0.219045 -0.581054 -0.528000 -0.445551 -1.500289 -1.379194 1.135348 -0.368651 -0.141144 1.773186 -0.098505 -0.229799 -0.255651 0.408919 0.359995 1.664848 1.786509 -1.760354 0.528897 0.781937 0.646746 -0.036257 1.638706 -0.695610 -1.906884 -0.210431 0.463134 0.790039 -0.447105 -0.542788 -0.822657 -0.071397 -2.639973 -0.226558 1.058942 -0.481200 -0.086130 0.490623 -0.124804 2.585648 0.837940 -0.421447 0.084069 0.776771 0.906588 0.461305 -0.097216 0.527006 0.160436 1.506137 -0.148529 -0.210394 0.087219 -0.135583 -0.236643 -0.347850 1.580266 1.480207 0.134510 -0.628342 -0.388413 0.126069 -0.009320 -0.525414 1.128405 0.453690 1.559278 0.616435 -0.333177 0.598241 -1.687497 0.676583 -1.554201 -1.360938 -1.020746 0.478122 1.216414 0.440822 -0.798658 2.153558 -0.396144 0.571282 0.564133 2.095735 -0.907755 -0.055352 -0.838736 -1.033109 0.376912 -0.303436 0.135239 -0.661959 -0.221762 -1.086914 -1.206469 0.475535 -0.053806 -1.020894 0.483934 -0.249267 0.930446 -1.056693 -0.247799 -1.261431 0.340942 -0.023434 -2.189687 -1.332772 -0.481141 -0.103094 0.230364 -0.526478 -1.415842 0.406947 0.793277 -0.703960 -0.366128 -1.189262 1.498411 1.169831 -0.349974 0.160360 0.090744 1.042976 1.178261 0.581489 -0.512838 -0.177550 0.284448 -0.199332 -0.479190 -0.624482 0.370118 -0.290978 -0.667197 -0.125448 1.035541 -0.729938 0.138946 -0.947092 -1.131981 0.497769 4.931869 -0.824998 0.954344 0.170744 -1.681370 1.051455 0.123121 -1.105761 0.041384 0.747933 1.705290 -1.928284 -0.736836 0.943371 1.938870 0.576196 -0.865476 0.495040 0.156150 -0.570045 -0.535448 1.122418 -0.126526 -0.065745 -0.675784 -0.467431 0.868639 2.611856 -0.325729 -2.326934 0.164889 0.771320 0.173124 -0.200381 0.144962 -0.679061 -0.103825 0.696150 -0.259231 1.143629 1.498141 -3.270844 1.304883 0.289207 -1.229621 1.552659 -0.291063 -0.334775 -0.220907 0.573077 1.485795 1.264041 0.070441 -0.153573 -0.761095 -1.456730 -0.154455 0.387972 0.723316 -1.315026 1.334884 0.356447 -1.499522 -0.863321 -1.180567 -0.388992 -0.610988 -1.505909 0.520404 -0.050259 -2.695076 1.945795 0.502668 -0.175454 -0.022607 -1.010600 0.509246 -1.323102 -1.587382 0.434681 -0.310359 -0.618971 0.230990 -0.816244 0.692512 0.584312 0.925709 -1.655914 -1.675204 1.020771 0.186728 1.274844 1.049790 0.623894 0.914177 0.756351 -0.496933 -0.642319 -1.217097 1.502568 0.444510 -0.729360 -0.446564 -1.094211 0.771182 1.861268 -0.554499 -0.354532 -1.403697 1.030899 -0.671862 -0.026286 0.338096 -0.545792 -0.992950 -0.220699 0.666882 -0.269677 -0.519145 -1.369492 -0.153106 -0.745515 -1.035431 0.472983 -1.108822 -0.155282 1.322283 -0.900116 -1.027709 0.605976 -0.085457 -0.416885 0.249111 1.210560 0.723828 -0.726452 1.056575 -1.388766 1.078042 -1.823461 -1.145900 0.020511 -1.069714 -0.462835 -0.687086 -0.383498 0.584638 0.107773 0.327594 -0.193244 0.120331 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator*() const = -0.009347 0.369540 0.211218 -0.139034 0.352797 0.287771 0.081346 -0.065336 -0.127741 -0.230885 -0.123914 -0.311895 -0.379510 0.323258 -0.077721 0.092510 0.511799 0.039272 0.034378 -0.140017 0.133101 -0.128161 0.541099 0.489581 -0.466744 0.159975 0.300812 0.115540 -0.018656 0.412668 -0.221362 -0.484725 0.160070 -0.089173 0.133307 -0.212963 -0.096269 -0.191897 0.018449 -0.705978 -0.056443 0.041168 -0.140564 -0.007873 0.014070 0.124200 0.694828 0.257362 -0.105360 0.194561 0.199941 0.168603 0.086400 0.067370 0.124355 0.107412 0.269863 -0.126257 -0.148889 0.038259 -0.039692 -0.340684 -0.116006 0.376408 0.417669 -0.028589 -0.097873 0.083938 -0.150018 0.001634 -0.095535 0.251213 0.162735 0.305362 0.210428 -0.327106 0.033297 -0.575219 -0.078898 -0.847538 -0.383178 -0.355220 0.114027 0.117241 0.234078 0.050648 0.553992 -0.011250 0.195417 0.129565 0.606140 -0.432461 -0.086535 -0.164159 -0.114441 0.105246 -0.165780 0.051698 -0.067710 -0.132815 -0.306127 -0.423368 0.322915 0.026223 -0.253763 -0.113343 -0.089336 0.260309 -0.510966 -0.199619 -0.494384 -0.131001 -0.106648 -0.576357 -0.072330 0.022518 0.322911 0.157210 -0.077498 -0.471228 0.118784 0.320711 -0.102948 -0.267056 -0.122251 0.324474 0.247197 -0.039758 0.150628 0.033185 0.252683 0.529124 0.399846 -0.088698 -0.107034 0.067327 -0.114471 -0.076422 -0.137779 -0.020158 -0.046430 -0.322423 0.106884 0.307423 -0.228867 -0.047260 0.052424 -0.282703 0.193346 0.945974 -0.144234 0.218971 0.060366 -0.520709 0.110632 -0.202914 -0.283852 0.057247 0.284118 0.390953 -0.379085 -0.222929 0.197340 0.481010 0.187394 -0.332549 -0.064830 -0.080333 -0.017405 -0.067947 0.187981 0.051246 0.039638 -0.226427 -0.085428 0.196488 0.760773 -0.211892 -0.328068 0.118335 0.053904 -0.006853 -0.304007 -0.037107 -0.187498 -0.027942 0.132474 -0.063605 0.147302 0.423248 -0.850739 0.344049 -0.153669 -0.297781 0.250046 0.042107 -0.097328 -0.194664 0.175479 0.421349 0.354761 0.055803 0.154352 -0.159906 -0.392256 -0.065891 0.053531 0.207587 -0.279512 0.323261 0.125487 -0.488228 -0.291000 -0.136023 0.043012 -0.190570 -0.180533 0.151483 0.127336 -0.931281 0.509016 -0.001040 -0.152279 0.105566 -0.122452 0.288511 -0.383729 -0.481289 0.194614 -0.152870 -0.161766 0.035014 -0.150016 0.199128 0.067355 0.056122 -0.250187 -0.398108 0.244163 0.092456 0.223128 0.274496 0.217228 0.440160 -0.103854 -0.254356 -0.218992 -0.160049 0.222548 -0.160018 -0.134756 -0.061414 -0.246895 0.290922 0.617659 -0.013759 -0.069212 -0.152979 0.310431 -0.411727 -0.054448 0.242245 0.290965 -0.221241 0.088599 0.273056 -0.172968 -0.213629 -0.271371 -0.008451 -0.094165 -0.324220 0.101763 -0.388525 -0.038951 0.381496 -0.151714 -0.243780 0.240977 -0.069838 0.008390 -0.089363 0.328444 0.455397 -0.357213 0.168650 -0.307862 0.184963 -0.533348 -0.368462 0.042391 0.024572 -0.107501 -0.117464 -0.064001 0.157987 -0.009801 -0.011361 -0.063220 -0.112196 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::pop_back() = 0.009207 2.353799 2.026517 -1.500352 2.571931 2.827547 0.308466 -0.035121 -0.898116 -1.165875 -0.990209 -2.719869 -3.014435 2.115227 -0.511644 0.018964 3.029317 -0.336679 -0.299058 -0.277067 0.864965 0.294366 2.949457 2.482363 -3.023090 0.901535 1.117226 1.149540 -0.428897 3.227625 -1.433481 -3.453838 -0.148006 0.736275 1.502549 -0.589635 -0.742989 -1.479480 -0.532650 -4.336241 -0.538090 2.264002 -1.154528 -0.004749 0.688716 0.295064 4.601554 1.540887 -0.797103 0.165992 1.147139 0.978535 0.940121 0.077938 0.705365 0.250965 2.301229 -0.329374 -1.005827 0.161634 -0.432621 -1.190362 -0.788126 2.429307 2.577693 -0.104560 -1.097282 -0.126738 -0.251738 0.031422 -0.937619 1.947364 1.335605 2.345377 1.474796 -0.076271 0.550067 -2.253069 0.815974 -3.099973 -2.391884 -2.232267 0.776889 2.277338 0.776876 -1.896445 3.970338 -0.680687 0.914702 0.992988 3.941694 -1.921793 -0.245912 -2.141547 -1.272620 0.399073 -0.820275 -0.301899 -0.600782 -0.594593 -1.885729 -2.022308 0.741326 -0.333350 -1.618116 0.553386 -0.933591 1.997495 -2.161610 -0.583399 -2.948567 0.337576 -0.031250 -3.874019 -2.016157 0.037881 -0.466820 0.656850 -0.478026 -2.315541 0.986511 1.609394 -1.251950 -0.809621 -1.777922 3.118575 1.893567 -0.731518 0.652097 0.656817 1.844291 1.993067 1.723175 -0.584417 -0.814140 0.575711 -0.316320 -0.698895 -0.866741 0.620246 -0.491965 -1.501106 -0.424431 1.832295 -1.181279 0.566903 -2.189715 -2.066526 1.107197 7.610588 -1.524020 1.331282 -0.206158 -3.037019 2.405126 0.168810 -2.051291 -0.102723 1.189387 3.026960 -3.161530 -1.342394 2.010111 3.219264 1.003001 -1.901487 1.109571 -0.018335 -0.436869 -1.104068 1.686896 0.574334 0.140452 -1.056912 -0.716931 1.142527 4.923894 -1.143768 -4.373919 0.927620 0.944485 0.407533 -0.837988 -0.019549 -0.959324 -0.721116 1.158559 -0.455505 1.636473 2.771812 -5.014219 2.364761 0.462305 -2.458928 2.871075 -0.890724 -0.123438 -0.530733 0.611640 2.850969 2.208919 0.506743 -0.465125 -1.791215 -2.500872 0.059350 0.714938 1.449708 -1.754827 2.181331 0.107722 -2.495617 -1.681376 -2.420761 -0.816511 -0.837507 -2.472379 0.775520 0.280862 -4.856664 3.530405 0.580238 -0.303202 0.045084 -1.105335 1.091002 -2.102852 -3.059844 0.966196 -0.889087 -1.754731 0.115449 -1.179832 1.032814 1.153436 0.880540 -2.516257 -3.478112 2.070412 0.488397 2.098675 1.712006 1.405990 2.066402 2.132373 -1.512073 -1.049725 -2.460174 2.521904 0.288041 -0.896552 -0.808685 -1.585610 1.560505 3.157355 -0.661226 -0.258113 -2.896815 1.788511 -1.447848 -0.286202 1.168569 -0.942119 -1.682562 -0.140618 1.625763 -0.329998 -1.317939 -2.473034 -0.048383 -1.562052 -1.883057 0.229320 -2.413280 -0.672663 2.634022 -1.554831 -2.002137 0.897805 -0.184110 -0.987838 -0.420751 2.652676 1.659332 -1.879679 2.002271 -2.323159 2.145966 -3.256945 -2.021729 0.129852 -1.430864 -0.538929 -1.034632 0.094482 0.669499 -0.018943 -0.028264 -0.545757 -0.445791 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_pop_back_aux() = 0.346588 3.344740 2.819312 -1.487122 2.723927 3.741511 0.393076 -0.006894 -0.757246 -0.852908 -1.000674 -3.328206 -3.338328 2.186538 -0.495722 -0.724625 3.327200 -0.453760 -0.427634 0.046135 0.098302 1.320369 3.233406 3.091053 -3.193131 1.308334 1.128438 0.642851 -0.889788 3.787794 -2.304535 -4.204594 -0.110142 1.576097 1.202131 -0.079812 -1.277545 -2.731265 -0.761318 -4.740892 -0.446536 2.567807 -1.601449 -0.406104 1.009088 -0.069927 5.863861 1.434499 -0.388840 -0.362262 0.736144 1.311192 0.861955 -0.092607 1.482909 0.032065 3.346827 -0.133781 -1.138305 0.042173 -0.381821 -0.747433 -1.631330 2.784345 2.422259 0.496008 -1.243806 -1.094128 -0.301218 -0.237509 -1.483611 1.977924 1.938131 3.527605 1.138865 1.182925 1.190156 -1.180303 0.769769 -2.096444 -2.828153 -2.212617 1.076772 2.557424 0.722394 -2.560149 3.882108 -0.773064 1.463339 0.386258 4.648732 -2.112132 -0.323229 -1.626181 -1.520673 0.516996 -0.528322 0.383747 -1.294828 -1.560290 -2.346685 -2.104760 0.968368 -0.204533 -1.791968 1.769532 -0.386493 1.718741 -1.867791 0.030916 -2.839159 -0.145053 0.265922 -4.207428 -3.029676 0.401968 -0.589267 0.973261 -1.061173 -2.720902 1.067991 1.541098 -1.479891 -0.864002 -2.277114 3.429578 2.040209 -0.536772 0.795890 0.270665 2.634672 1.999736 1.464143 -0.503888 -0.133832 -0.057395 -0.156693 -0.847041 -0.374843 0.806306 -1.578384 -1.088108 -0.126826 2.205495 -1.461624 0.971802 -3.497447 -1.848493 1.030112 8.466486 -1.947530 1.783226 -0.430624 -3.606214 2.331349 -0.089640 -2.864866 -0.763915 1.185877 3.771193 -3.306243 -1.120486 2.189152 3.689538 1.102377 -1.909503 2.453437 0.168705 -1.058654 -1.630009 2.432116 0.027969 0.690176 -1.465782 -0.971237 1.981358 5.383900 -1.090455 -6.155670 0.708270 0.351775 1.620682 0.429039 0.349014 0.013713 -0.231614 1.487548 -0.728775 2.093442 2.864980 -5.571688 2.581855 0.577472 -3.401860 3.763184 -0.786182 -0.605926 1.468679 1.139982 3.472016 2.357197 1.168577 -1.206901 -2.259426 -2.515860 -0.503432 0.824221 1.343260 -2.124809 2.415955 0.711680 -3.255210 -1.903646 -3.758799 -0.329863 -0.916524 -3.539483 0.763207 -0.278346 -5.746635 4.217647 1.586144 -0.300708 -0.674670 -2.044981 0.371907 -2.310492 -3.429393 0.484330 -1.309810 -1.955366 0.728686 -1.690487 0.691049 1.701583 1.988589 -3.183832 -3.445509 2.561231 1.066904 2.642600 2.040941 1.763287 2.026947 2.875721 -1.377507 -0.740281 -3.029121 4.001740 0.540659 -1.547963 -0.130627 -2.462074 1.474557 3.422593 -1.266318 -0.477290 -4.060479 1.392134 -1.161661 -0.057611 1.111068 -1.282004 -1.966578 -0.733595 1.682019 0.187064 -1.194507 -2.494799 -0.933400 -2.011464 -2.299838 -0.007359 -2.363324 -0.677123 3.038349 -2.039693 -2.463419 0.629993 -0.936672 -1.159989 0.244382 2.008744 1.424296 -2.204058 2.843233 -2.538979 2.589532 -3.500429 -2.526390 0.756388 -2.587028 -0.867867 -1.738765 -0.392806 0.402106 -0.313389 0.003695 -0.482280 0.242089 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__minCoins(int*, int, int) = -2.922451 -2.721961 -1.431464 -3.808638 2.530594 4.746196 1.634781 -3.965120 -5.625706 -1.828819 2.291214 -7.369918 -3.410571 6.532982 -2.239272 5.188700 7.869197 0.748640 -3.001940 -1.896329 5.348549 -0.395939 8.787601 9.461475 -5.518626 -0.106483 0.124565 2.524907 1.815758 0.569142 2.046949 -4.152225 2.178258 -5.546629 0.369013 -3.079971 -1.419161 2.841014 5.239592 -9.874922 -0.530239 3.244024 1.118499 -0.122740 0.233699 1.648529 4.729892 5.165156 -0.323656 4.944367 3.860434 -0.056788 2.999552 0.266989 1.485830 0.663861 0.617287 -0.514960 -0.833480 -1.110497 -1.852046 -1.212337 0.735810 6.417013 7.711785 -0.279160 -3.050544 1.932136 1.566710 1.800719 2.171209 5.101213 -0.607364 1.555726 3.903738 -7.000556 0.327685 -10.112351 1.490077 -9.928464 -4.098688 0.700894 4.283196 2.898352 3.819164 -0.636351 9.449618 -1.621942 -3.568134 6.304169 7.110544 -5.168406 -1.413777 -1.602824 -2.891746 0.332324 -3.020799 1.381509 1.795833 2.885072 -5.557145 -3.900552 0.694893 1.144420 -3.550709 -3.581679 -0.428854 4.709154 -5.461174 -4.324937 -2.510814 4.102285 -0.875433 -9.855585 -3.236656 -4.440205 0.460896 1.359143 -4.775499 -5.131828 2.755116 1.262529 -1.325431 -2.986249 -0.608646 3.845140 3.866373 1.407429 -0.639946 3.245784 1.338527 9.285589 1.670577 -3.561912 0.527701 1.893134 -1.128244 3.157738 -3.020518 -1.786970 2.158279 -5.712466 0.070185 2.942223 -3.417167 -1.560172 2.348504 -0.365503 -0.599489 19.307803 -1.366700 7.057197 6.206640 -5.392528 2.773831 -2.330622 1.540329 2.627122 3.914676 2.872160 -8.618890 -5.002901 5.448708 9.093042 3.377195 -6.016529 -1.361828 2.268452 1.526300 -1.291910 3.137338 0.918647 0.554764 -3.615954 -0.646496 3.488517 11.318352 -3.828848 -0.159318 1.142274 3.717502 -1.037614 -6.233153 -1.149697 -6.139350 -0.271481 2.674774 1.717677 2.762102 7.033633 -8.547740 5.725992 -0.958889 0.446472 5.000412 2.421291 -5.042873 -6.900569 -1.818901 2.419365 5.193727 -0.992059 0.380882 1.420310 -7.570066 0.341577 1.515997 1.287514 -4.407258 6.423296 -0.158183 -2.688485 -2.334527 1.501919 -1.892847 -3.309626 -1.728411 5.031847 1.488989 -6.254713 4.840145 1.142381 -3.114442 0.829939 -0.827488 5.854739 -5.228946 -5.913584 4.166653 -2.408243 -3.389408 -2.018157 -1.686162 2.597586 2.937340 0.892903 -5.397285 -5.844522 6.100283 -2.069425 7.544972 3.364461 -1.620239 4.093040 -1.973637 -3.327998 -3.914758 -4.136439 0.187683 0.536284 -3.880520 -4.471367 -1.562234 5.227950 5.328801 0.222491 -4.052341 -0.615564 6.721889 -5.292447 -0.387034 2.207656 2.437490 -4.433487 2.193208 3.304372 -5.172413 1.614683 -4.372184 -0.225611 -3.935569 -3.209839 5.232792 -1.749738 2.315538 -0.150901 -0.759904 0.460000 2.530971 3.263600 0.121726 1.830654 8.142955 4.187397 -1.195187 -1.016924 -7.653035 4.030870 -6.806328 -5.624893 0.636375 1.836247 -4.076855 -1.461366 0.167150 5.555041 4.253514 -3.618970 -3.467506 2.093630 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 0.030860 0.382407 0.583958 -0.186228 0.552335 0.001426 0.288075 0.418150 -0.551418 -0.877281 0.036525 -1.189425 -1.293741 0.836610 -0.056284 -0.178583 1.188126 0.132745 0.017721 -0.381172 0.008363 -0.451221 1.118638 1.194908 -0.967502 0.354881 0.000940 0.314390 -0.012151 0.635021 0.037893 -1.074253 0.291799 0.221616 0.535827 -0.184056 -0.321567 -0.389161 -0.514446 -1.658671 -0.175949 1.023684 -0.008276 -0.012629 0.269106 1.112245 1.407290 0.575467 -0.254913 0.695854 0.332047 -0.316143 0.519879 0.062911 0.287596 -0.436746 0.405057 -0.187344 -0.769296 0.361132 -0.172893 -1.241554 -0.479156 0.707112 0.961053 -0.215627 -0.398514 -0.232453 -0.162847 0.254687 0.021823 0.592291 0.874074 0.343365 0.803989 0.114627 -0.111886 -1.151093 0.010156 -2.758531 -1.057107 -0.547973 1.546504 0.600782 -0.153213 -0.645448 1.233743 0.020434 0.157141 0.600113 1.398783 -0.443692 -0.405690 -0.343205 -0.099019 0.420157 -0.462638 0.048229 0.478565 -0.052262 -0.859040 -0.218797 0.551272 -0.350879 -0.494489 0.248077 -0.244383 0.734844 -1.210109 0.032743 -1.301393 -0.065790 0.610484 -1.305942 -0.017987 0.322471 0.252197 0.741472 -0.487724 0.004743 0.432995 -0.058634 -0.346255 0.060998 -1.025603 1.185182 0.112987 0.176579 0.451740 0.694334 0.623621 0.476546 0.768587 -0.202638 -0.123230 0.253201 -0.173097 0.212715 -0.137792 -0.235810 0.371785 -0.555201 0.186777 -0.179912 -0.596452 -0.381330 -0.764570 -0.274195 0.206745 1.408437 -0.275883 0.767767 0.240148 -0.728344 0.737801 -0.263258 -0.378400 0.076497 0.788784 0.736571 -0.108379 -0.408053 0.608139 1.260838 0.441957 -0.936242 0.290129 0.219397 0.205779 -0.327938 0.757953 0.250473 0.538715 -0.482038 -0.083284 0.483807 1.382307 -0.388341 -1.220899 -0.020639 0.161882 0.518181 -0.581555 0.207666 0.175003 -0.092078 0.104539 0.009509 0.295192 0.952325 -1.968564 0.929177 0.008390 -0.327001 0.817905 0.007372 -0.413896 -1.253511 0.074404 0.704394 0.948812 0.569964 -0.276253 -0.267997 -0.902843 -0.092334 0.148163 0.354808 -0.492319 0.854864 -0.309096 -0.473172 -0.523300 -1.071840 -0.072552 0.082160 -0.611379 0.410598 0.701019 -1.921704 0.917856 -0.061690 -0.562192 -0.490975 -0.060148 0.343504 -0.811058 -1.059381 0.026239 -0.888244 -1.660419 -0.566088 -0.532116 -0.008434 0.076726 -0.260627 -0.234042 -0.809928 1.445343 -0.069498 0.907899 0.638476 0.067688 1.366690 1.139735 -0.805574 -0.064989 -0.531795 0.778311 -0.916022 -0.214060 0.272615 -0.520966 0.347604 1.087527 -0.057587 -0.098406 -0.590921 0.748343 -0.632607 -0.597846 0.665773 -0.115224 0.019239 0.964207 0.772350 -0.611893 -0.103367 -1.058929 -0.322429 -0.312828 -0.503255 0.216727 -0.830646 -0.143413 0.587018 -0.365157 -0.597333 0.301271 -0.212209 -0.413132 -0.296791 1.098433 1.425838 -1.097083 0.800647 -0.899854 0.716618 -1.041633 -0.740636 -0.038260 0.197147 -0.241583 -0.277730 0.067102 0.043671 0.275621 -0.880596 -0.789528 0.488135 +PE-benchmarks/longest-increasing-subsequence.cpp___lis(int*, int, int*) = -1.856533 -1.641721 -0.979519 -2.675279 1.855907 2.443294 1.112021 -2.402845 -3.661332 -1.587816 1.387470 -4.468956 -2.243958 4.311816 -1.265818 3.457699 5.399051 0.510580 -1.511080 -1.699027 3.670730 -0.963512 5.716070 6.293279 -3.885899 0.064776 0.860705 1.436221 1.367703 0.260306 1.340557 -3.135232 1.545425 -3.843701 0.740497 -2.345685 -1.028904 1.884864 3.766909 -6.781124 -0.381735 1.681714 0.568546 0.009025 0.092826 1.645011 3.225085 3.392478 -0.868125 3.721169 2.952547 0.019833 1.735368 0.165514 0.941571 0.612756 0.145971 0.205799 -0.380780 -0.314983 -1.203891 -0.810066 0.688778 4.193258 5.199037 -0.658330 -2.047450 1.573888 1.105184 1.161714 1.311704 3.442988 -0.043833 0.677415 2.864053 -5.742251 -0.476230 -8.757931 0.909676 -8.662450 -3.001158 0.266234 2.801937 0.696831 2.513621 -0.191592 6.330984 -0.822613 -2.179930 4.128152 4.735258 -3.330639 -0.900510 -1.124240 -1.898777 0.307055 -1.956932 0.875534 1.876399 1.422155 -3.671584 -3.020128 0.988399 0.588173 -2.438589 -3.139708 -0.298421 3.235222 -3.622573 -3.003891 -2.125435 2.671788 -0.640549 -6.485675 -1.248615 -3.001661 0.977230 0.915604 -3.124934 -3.499724 1.689219 0.960847 -1.184841 -2.189898 0.111640 2.712035 2.881551 1.095443 -0.258784 1.997825 0.921775 6.273906 1.697343 -2.520348 0.127710 1.367517 -0.869657 1.957360 -2.414207 -1.235086 2.410389 -3.629071 0.243989 1.671710 -2.303949 -1.268981 3.458266 -0.781051 -0.360265 12.964725 -0.944124 4.592294 4.021986 -3.551746 1.866452 -1.515403 0.906414 1.977944 3.153252 1.912876 -5.777784 -3.299759 3.479879 6.019995 2.233758 -4.536933 -2.053828 1.387360 0.933306 -0.750315 1.928239 0.429387 0.335474 -2.285353 -0.381525 2.157337 7.507829 -2.642726 -0.049905 0.438635 3.470279 -0.914235 -4.746323 -0.779268 -4.896335 -0.153085 1.635994 1.097570 2.040297 4.669664 -7.351862 3.643830 -0.997572 0.288881 2.838511 2.092989 -3.259941 -6.215088 -0.855986 1.572140 3.592659 -0.671026 1.269479 1.027028 -5.021257 0.274406 0.713656 0.915512 -3.108358 4.221855 -0.337932 -1.879565 -1.409630 1.447978 -1.449334 -2.430322 -0.686357 3.283087 1.700007 -5.291277 3.162065 0.393642 -2.058101 0.779316 -0.514005 4.410267 -3.571091 -3.957505 2.840758 -1.461909 -1.871739 -1.330898 -1.195638 1.925866 1.200864 0.624903 -3.206299 -4.237650 3.939204 -1.455763 4.945946 2.330991 -1.083078 3.322718 -2.377823 -2.301342 -2.903926 -2.544166 0.188140 0.220054 -2.432346 -3.214161 -1.048977 3.364923 3.735636 0.287542 -2.472449 -0.217524 4.407727 -4.425793 0.132631 1.554910 2.594689 -2.689202 1.741341 2.238134 -3.600348 0.913983 -3.061476 0.028100 -2.348891 -2.020534 3.504023 -1.339585 1.348084 -0.092047 -0.532558 0.401549 1.974700 2.178483 0.238889 0.896288 5.074181 4.019453 -1.355317 -1.134442 -4.947345 2.441431 -4.558024 -3.869858 0.172779 1.286890 -2.740476 -0.966120 0.003237 3.646417 2.607895 -1.989926 -2.341192 1.278571 +PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -0.109333 0.111091 0.220532 -0.121313 0.432401 0.133360 0.245121 -0.010645 -0.423249 -0.462518 0.080744 -0.658512 -0.708473 0.644260 -0.061974 0.319002 0.904783 0.151021 -0.002791 -0.351289 0.308617 -0.515266 0.987485 0.992667 -0.751258 0.207881 0.242246 0.271567 0.145682 0.327897 -0.108180 -0.523868 0.416210 -0.447981 0.203298 -0.376329 -0.157104 -0.066890 0.131086 -1.238671 -0.125443 0.229214 -0.084258 0.034770 0.026958 0.732233 0.862024 0.524165 -0.217014 0.727350 0.366701 -0.306432 0.338157 0.123106 0.163937 -0.020216 0.223502 0.042745 -0.415075 0.150954 -0.116179 -0.922729 -0.127268 0.550001 0.840636 -0.212975 -0.246837 0.200282 -0.122623 0.122741 0.114862 0.477046 0.377994 0.136808 0.642581 -0.672055 -0.094461 -1.286750 -0.195862 -2.022112 -0.739857 -0.356546 0.768676 -0.033617 0.320380 -0.030525 0.970087 0.053327 -0.005260 0.393777 0.958142 -0.715162 -0.278936 -0.166953 -0.030114 0.224205 -0.432471 0.115446 0.441885 -0.101896 -0.623472 -0.496897 0.625686 -0.030562 -0.412181 -0.306115 -0.184347 0.577268 -0.898212 -0.436694 -0.898196 -0.150224 0.011611 -1.017481 0.185859 0.067489 0.612491 0.477189 -0.289447 -0.424553 0.259284 0.217207 -0.119618 -0.390598 -0.172319 0.698040 0.303148 0.148993 0.315362 0.382580 0.315907 0.864036 0.781230 -0.194804 -0.157151 0.219148 -0.287309 0.274929 -0.255784 -0.250265 0.345932 -0.615227 0.141345 0.144489 -0.440344 -0.197837 0.400593 -0.105484 0.128381 1.353229 -0.054659 0.585859 0.391263 -0.649495 0.402520 -0.404050 -0.120287 0.312523 0.625133 0.401042 -0.641459 -0.420741 0.380157 0.929648 0.362365 -0.952861 -0.301087 0.028302 0.268178 -0.152923 0.363649 0.222634 0.330912 -0.395196 -0.001997 0.341716 1.225870 -0.569576 -0.517023 0.108795 0.033397 0.010807 -1.004715 -0.066059 -0.286773 -0.101209 0.043549 0.088263 0.117877 0.744475 -1.412959 0.622407 -0.305528 -0.219326 0.570281 0.226894 -0.417810 -1.005324 0.084109 0.427906 0.651069 0.277056 0.071704 0.007585 -0.767884 -0.040381 0.075281 0.201802 -0.374325 0.679375 -0.105512 -0.445303 -0.396417 -0.271990 0.038720 -0.236090 -0.126400 0.431063 0.412696 -1.482199 0.582279 -0.120182 -0.536612 0.078357 -0.008774 0.580320 -0.651076 -0.817351 0.319496 -0.467981 -0.725923 -0.426871 -0.236409 0.148268 0.084979 -0.260251 -0.241393 -0.690155 0.780646 -0.141346 0.561998 0.468875 0.020739 1.000230 0.128074 -0.665636 -0.368282 -0.166508 0.202780 -0.552676 -0.241739 -0.279629 -0.298866 0.482832 0.922999 0.117332 -0.051140 -0.192287 0.683278 -0.924672 -0.337725 0.537272 0.648236 -0.150986 0.598386 0.562833 -0.580434 -0.071805 -0.524694 -0.221978 -0.142292 -0.418352 0.371577 -0.571724 0.038277 0.316412 -0.136612 -0.182525 0.384816 -0.029435 -0.009146 -0.259754 0.834367 1.287945 -0.781837 0.123784 -0.661296 0.409531 -0.836759 -0.617383 0.065203 0.412428 -0.295707 -0.119952 0.183419 0.284793 0.267904 -0.653965 -0.455299 0.063311 +PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.032929 0.162046 0.407824 -0.161036 0.423367 -0.031105 0.236142 0.319383 -0.528188 -0.597981 0.094811 -0.919693 -0.865750 0.641191 -0.030702 -0.052678 0.873055 0.149005 -0.021409 -0.254240 -0.032187 -0.319424 0.814654 0.886607 -0.656446 0.292167 -0.178204 0.215607 -0.069003 0.521356 0.018283 -0.795289 0.221981 0.159070 0.308012 -0.148586 -0.255811 -0.181272 -0.315197 -1.226728 -0.081426 0.849141 0.097869 -0.023271 0.218670 0.755394 0.942523 0.417554 -0.119163 0.614122 0.223402 -0.268393 0.417859 0.060577 0.267337 -0.271536 0.321643 -0.232247 -0.611519 0.267344 -0.133369 -0.888079 -0.361303 0.468117 0.683520 -0.168776 -0.316626 -0.231270 -0.109539 0.196842 0.129055 0.398355 0.557464 0.149415 0.536172 0.190841 -0.047087 -0.718249 0.023294 -1.934054 -0.783846 -0.288986 1.284398 0.581328 -0.124713 -0.506128 0.872975 -0.050288 0.036556 0.389231 0.955112 -0.309257 -0.329281 -0.172494 -0.062545 0.302359 -0.315914 -0.028319 0.336696 0.013925 -0.634427 -0.078886 0.444266 -0.254761 -0.348567 0.243663 -0.138061 0.543557 -0.919876 -0.009232 -0.855274 0.083300 0.473191 -0.888547 -0.008449 0.228836 0.065229 0.557864 -0.412239 0.069400 0.344401 -0.143558 -0.287549 0.107443 -0.856862 0.843766 0.008843 0.172973 0.325653 0.504643 0.422084 0.351089 0.427794 -0.205480 -0.024363 0.200030 -0.026135 0.253377 -0.078219 -0.229522 0.144988 -0.426898 0.158554 -0.219560 -0.454495 -0.233994 -0.723644 -0.044519 0.071731 0.884945 -0.177721 0.630591 0.234528 -0.482695 0.558594 -0.175610 -0.192262 0.062710 0.562170 0.434126 0.041981 -0.311229 0.429742 0.911536 0.349422 -0.647413 0.226037 0.182503 0.177758 -0.155677 0.576273 0.170221 0.448742 -0.383282 -0.054986 0.284460 1.041905 -0.213443 -0.850229 -0.010400 0.079325 0.353725 -0.376087 0.138343 0.121274 -0.046614 0.044382 0.018335 0.199806 0.698487 -1.403894 0.710252 -0.017511 -0.215677 0.633621 0.012660 -0.341307 -0.910694 -0.080566 0.415120 0.769713 0.407671 -0.193949 -0.103303 -0.645425 -0.080604 0.085666 0.182746 -0.349791 0.611591 -0.215955 -0.324663 -0.292775 -0.805839 -0.054779 0.090148 -0.469766 0.330671 0.606483 -1.343958 0.567252 0.000000 -0.432617 -0.346938 0.029068 0.245093 -0.537927 -0.712423 0.004888 -0.653859 -1.252124 -0.413835 -0.376865 -0.042035 0.025856 -0.197279 -0.120830 -0.500769 1.086438 -0.064180 0.679514 0.474013 -0.076295 0.887223 0.938707 -0.583959 0.045808 -0.388877 0.545909 -0.753233 -0.097111 0.316740 -0.409983 0.247342 0.722709 0.065303 -0.120916 -0.442686 0.588516 -0.353761 -0.405214 0.524753 -0.227418 0.047432 0.744128 0.605382 -0.487460 0.007848 -0.754862 -0.226547 -0.227502 -0.275548 0.233162 -0.501134 -0.055121 0.327216 -0.231306 -0.441160 0.203610 -0.159601 -0.362876 -0.209609 0.883063 0.913945 -0.704059 0.646497 -0.626401 0.499070 -0.694831 -0.478111 -0.065632 0.178639 -0.317473 -0.174229 0.034692 0.070659 0.226781 -0.630388 -0.603539 0.416334 +PE-benchmarks/binary-insertion-sort.cpp__binarySearch(int*, int, int, int) = -2.090693 -2.049109 -1.295467 -2.873386 2.028237 3.052975 1.089611 -3.130475 -4.001892 -1.444102 2.075370 -5.152494 -2.397508 4.403948 -1.651092 3.544164 5.203790 -0.142371 -1.808884 -2.093592 3.810594 0.161728 6.347693 6.812659 -4.247877 0.004940 0.697159 1.476739 1.785509 -0.623615 1.797204 -3.199181 1.684376 -4.113423 -0.123154 -1.698877 -1.235420 1.835252 4.518078 -6.587970 -0.493951 1.150573 -0.383885 0.283417 0.086692 2.152903 3.257708 3.524113 -0.746226 4.431261 3.501196 0.028214 1.718312 -0.048983 0.713683 -0.250956 0.145191 0.432653 -0.001017 -0.786920 -1.254016 -0.091559 0.319390 4.544710 5.330622 -0.524641 -2.494623 1.680317 1.312139 1.295294 1.407189 3.967555 0.075496 1.287438 3.219070 -5.450919 -0.509351 -8.968695 0.964388 -8.214716 -3.011314 0.991315 3.219173 0.504416 2.435416 0.143627 6.733494 -0.547849 -3.032705 5.121858 4.903162 -3.304612 -0.763263 -0.367703 -2.202365 0.031337 -1.869063 1.877228 1.203224 2.206643 -3.945111 -2.989701 0.321456 0.263046 -2.581039 -3.259728 -0.276701 2.737775 -3.933646 -2.434993 -1.642391 3.280584 -0.099290 -7.004638 -2.965410 -3.062017 2.149634 0.736917 -3.548418 -3.211289 1.697400 0.476589 -1.135742 -1.962423 1.014753 2.209124 3.622248 1.668554 -0.475836 2.350341 1.333314 7.016420 1.076511 -2.610074 0.250752 1.027039 -0.227548 2.576174 -2.006878 -0.738087 2.118891 -3.538156 1.547150 1.937478 -2.203915 -2.046252 3.453568 -0.637757 -1.037389 13.926893 -0.901669 5.361302 4.776653 -3.402196 0.691948 -2.354851 1.307267 2.264416 2.706903 2.024258 -5.504758 -3.390168 4.259335 6.364833 2.148137 -5.319440 -1.140626 2.458147 1.118480 -1.193078 2.320315 0.352220 0.693265 -2.220374 -0.320402 2.912774 7.861982 -2.664599 -0.159987 0.492110 3.571502 -0.221511 -3.913998 -0.739897 -4.160826 -0.066268 3.190547 1.679287 2.145269 4.828324 -7.728380 3.404990 -0.304388 0.725137 2.460559 2.901911 -4.040466 -4.967037 -1.121264 1.349044 3.167839 -0.326168 1.084925 1.237685 -5.306895 0.404772 1.332785 0.474571 -3.500884 4.709560 0.212658 -1.780812 -1.384049 1.514877 -1.508622 -1.671620 -1.071614 3.746242 0.459554 -6.374149 3.071097 0.753458 -2.446912 0.046899 -1.114510 5.110280 -3.506547 -3.963104 3.038511 -2.222097 -2.490928 -1.327799 -1.158928 1.261179 1.999985 1.851038 -3.984108 -4.178782 4.489046 -1.410357 5.423257 2.474176 -1.362400 3.387852 -4.218865 -2.253912 -3.118567 -2.787481 1.664509 0.865705 -2.975783 -2.761287 -0.980817 3.206857 3.403255 -0.087789 -3.231462 -0.369422 4.328304 -4.643932 0.130608 1.189357 3.800695 -3.253050 2.237737 2.032297 -3.334746 1.857715 -3.310517 -0.484457 -3.200678 -2.118918 3.979871 -0.690670 1.679549 -0.306516 -0.420749 0.543646 2.110501 2.055874 0.361469 1.449742 5.104657 4.962403 -1.281381 -1.360143 -5.628740 2.898744 -4.571194 -4.736275 0.825685 0.601357 -2.796784 -1.518286 -0.878006 4.228582 3.175465 -2.798495 -2.699474 2.420961 +PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -1.562154 -1.068672 -0.747566 -2.141365 1.859857 3.111235 1.046634 -2.407142 -3.147979 -1.084302 1.370205 -4.321123 -2.293198 3.893561 -1.272618 3.014080 4.750354 0.179567 -1.646858 -1.321901 3.171318 -0.083996 5.610753 5.756921 -3.674849 0.175880 0.592089 1.227340 1.290672 0.293356 0.734238 -2.554688 1.779113 -3.513748 -0.054226 -1.746863 -0.901441 0.975245 3.184007 -5.926263 -0.374912 1.183717 -0.267841 -0.034813 -0.010894 1.813862 3.445683 3.145770 -0.424939 3.148618 2.439051 -0.078156 1.490845 0.239239 0.876639 0.220700 0.495012 0.164603 -0.534860 -0.784447 -0.956331 -1.092527 0.085580 3.921290 4.631092 -0.272270 -1.789603 1.546749 0.717182 0.842212 1.100221 3.090027 0.289984 1.234868 2.621532 -4.357958 -0.033247 -6.223920 0.301454 -6.879095 -2.622865 0.120867 2.524231 0.580707 2.436880 -0.203503 5.701676 -0.615027 -1.879648 3.814412 4.587315 -3.594659 -0.900320 -0.826232 -1.532628 0.220150 -1.908518 1.274318 1.196295 1.065577 -3.464935 -2.649457 0.706837 0.655702 -2.260350 -2.469871 -0.248844 2.665720 -3.601188 -2.433172 -1.815913 1.851487 -0.616804 -6.123256 -2.089491 -2.152050 1.697290 0.868654 -2.606981 -3.331509 1.484899 1.093943 -0.743619 -2.195566 0.391050 2.292155 2.713773 1.151131 -0.060142 1.854059 1.260325 6.061137 1.645186 -1.926640 0.151236 0.812277 -0.656758 1.957283 -1.586636 -0.929620 1.450851 -3.438870 0.598547 2.112575 -2.068701 -0.987330 2.348312 -0.317895 -0.276027 11.701688 -0.723612 4.264133 3.574416 -3.586242 0.941794 -2.053952 0.511529 1.676912 2.404667 1.925900 -5.267434 -2.925461 3.302676 5.498203 2.018267 -4.388647 -0.518432 1.311084 0.836526 -1.082902 1.768803 0.547299 0.656711 -2.200482 -0.400403 2.484252 7.149934 -2.677215 -0.417169 0.797409 1.933390 -0.333522 -3.667610 -0.739514 -3.047148 -0.048579 2.006535 1.008821 1.689327 4.276285 -5.640621 3.281527 -0.886017 -0.106517 2.716655 1.933992 -3.175475 -3.465818 -0.709195 1.748343 2.985496 -0.176392 0.410174 0.709817 -4.542739 0.088803 1.026749 0.632333 -2.562760 3.812307 0.364128 -1.942696 -1.635926 0.825915 -0.713219 -1.689141 -0.919640 3.028443 0.323713 -5.229947 3.160561 0.608446 -2.125958 0.348377 -0.800080 3.812505 -3.339106 -3.829940 2.603415 -1.672536 -2.157056 -1.131138 -1.011163 1.474901 1.874728 0.899718 -3.388193 -3.850807 3.816793 -1.037508 4.360102 2.186934 -0.599272 3.205448 -2.418520 -2.179758 -2.725469 -2.558503 0.785612 0.227383 -2.560297 -2.181706 -1.098696 3.193401 3.466015 -0.034655 -2.342982 -0.379998 3.760158 -3.964008 -0.251634 1.481947 3.178445 -2.867025 1.574637 2.081888 -2.938123 0.898336 -2.467091 -0.639116 -2.385852 -2.242253 3.039120 -1.178932 1.375870 0.311740 -0.337234 0.197722 1.730078 1.367125 0.336107 0.908884 4.552751 3.909973 -1.546499 -0.786889 -4.622958 2.632312 -4.313436 -3.988302 0.902421 0.902750 -2.234177 -1.058048 -0.041174 3.271405 2.422055 -2.545718 -2.043783 1.273091 +PE-benchmarks/binary-insertion-sort.cpp__main = -0.428414 -0.475426 0.151138 -0.954640 0.791285 0.590145 0.475773 -0.161497 -1.626105 -0.950026 0.510931 -2.025142 -1.289619 1.704781 -0.397646 0.725340 2.185318 0.372532 -0.502713 -0.577755 0.887313 -0.471821 2.133633 2.461962 -1.585193 0.259629 -0.300236 0.729244 0.270202 0.627619 0.536786 -1.489193 0.441240 -0.688175 0.426317 -0.825699 -0.452733 0.508926 0.474593 -2.930221 -0.119687 1.487369 0.286304 -0.018048 0.317686 1.028173 1.547498 1.246488 -0.338838 1.521008 0.973914 -0.177352 0.857460 0.063499 0.404946 -0.142809 0.196996 -0.298151 -0.664683 0.177376 -0.397659 -1.049954 -0.083996 1.492216 1.943639 -0.280183 -0.810230 -0.022791 0.255704 0.502453 0.638299 1.178370 0.387152 0.171374 1.186586 -0.950814 -0.110584 -2.629562 0.465140 -3.710631 -1.415872 -0.111665 2.249323 1.209088 0.317896 -0.746288 2.387900 -0.419437 -0.573919 1.700033 1.923110 -0.932868 -0.551302 -0.538086 -0.692693 0.447824 -0.765587 0.039900 0.556851 0.668733 -1.482691 -0.649980 0.447641 -0.126456 -0.933600 -0.399424 -0.206729 1.348821 -1.855149 -0.668521 -1.172040 1.109386 0.455229 -2.399510 -0.550649 -0.716997 0.087935 0.688267 -1.203068 -0.528226 0.728152 -0.060338 -0.575991 -0.147662 -1.148900 1.477178 0.549819 0.392025 0.149215 0.981370 0.528787 1.670674 0.518654 -0.905325 0.054953 0.653203 -0.130531 0.745032 -0.740411 -0.506967 0.700083 -1.320677 0.093379 0.036420 -1.017084 -0.600594 -0.304107 -0.099257 -0.052623 4.206868 -0.319355 1.810866 1.313765 -1.213067 1.109400 -0.328011 0.202602 0.643519 1.248073 0.737902 -1.324134 -1.127529 1.178828 2.351897 0.913284 -1.520840 -0.122820 0.595589 0.369006 -0.210716 1.068580 0.218703 0.433785 -0.932776 -0.163911 0.768368 2.795501 -0.575912 -0.691643 0.041969 0.994703 -0.025862 -1.318888 0.002751 -0.990601 -0.060182 0.541169 0.270327 0.760933 1.840316 -2.988755 1.623873 -0.154118 0.061373 1.179370 0.409057 -1.126489 -2.365866 -0.460369 0.634480 1.748671 0.157791 0.009058 0.313285 -1.859426 -0.003131 0.355317 0.369011 -1.106760 1.640995 -0.281121 -0.651908 -0.555718 -0.487178 -0.588428 -0.341614 -0.748041 1.147919 0.873979 -2.251154 1.198196 0.095941 -0.905644 -0.209818 -0.043040 1.236455 -1.411156 -1.611599 0.692836 -0.863545 -1.850725 -0.798705 -0.663794 0.493076 0.367961 -0.139139 -0.933908 -1.529882 2.085166 -0.487155 1.902862 1.027750 -0.544766 1.533034 0.664224 -0.990346 -0.603676 -1.131949 0.631483 -0.678194 -0.628435 -0.335758 -0.659756 0.998382 1.526115 0.177213 -0.855543 -0.383935 1.826835 -0.986627 -0.458008 0.812540 -0.049252 -0.540819 1.224196 1.115967 -1.496978 0.330433 -1.586561 -0.054349 -0.711207 -0.639627 1.250786 -0.689061 0.413039 0.191936 -0.225868 -0.368960 0.650992 0.467684 -0.402221 0.121831 2.347169 1.525397 -0.727002 0.517851 -1.842274 1.112471 -1.740982 -1.280528 -0.216033 0.464874 -0.994905 -0.286427 -0.042963 1.061561 0.991167 -1.010718 -1.147395 0.879842 +PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -7.067947 -2.020816 1.185278 -14.454984 10.310001 18.946463 3.700867 -12.775603 -13.328774 -6.378920 6.434657 -20.433792 -12.428499 17.571378 -7.928579 10.483261 19.563318 -3.386742 -8.583151 -6.062787 14.086357 5.007191 25.901806 25.225977 -19.215657 0.472066 4.351252 9.584117 6.395024 2.697560 5.337317 -13.636132 3.942502 -11.252542 -0.357181 -3.575408 -4.244933 0.721923 12.022292 -25.783063 -2.355541 6.292947 -7.828360 0.025819 1.065665 0.757302 18.026138 14.588221 -1.822339 10.795477 13.491663 3.954093 5.424850 -0.278694 4.313705 -2.343704 5.175073 -3.064734 0.393955 -4.874821 -3.757891 -1.066845 -0.612905 20.585065 20.481497 -0.185519 -8.578925 5.226037 3.282189 4.364271 3.272728 15.354617 -1.343546 11.148724 11.752471 -17.698292 2.082645 -26.178463 4.542319 -20.512625 -13.245344 0.536127 9.564166 9.135676 9.768461 -0.856799 26.924613 -2.564223 -8.663101 18.463533 21.395240 -13.013782 -2.472948 -4.540071 -10.073042 1.270131 -7.992385 7.332036 -3.811353 8.247564 -15.574641 -9.342855 -0.155823 2.341525 -11.384422 -8.855438 -1.731832 12.606049 -15.160465 -8.004987 -5.670025 12.948919 -1.378517 -30.235886 -18.565517 -11.106482 9.380428 0.868734 -10.904280 -14.381015 6.273797 5.933639 -3.492404 -7.819167 -0.211337 9.322551 16.222709 4.968374 -1.733380 8.825183 8.156089 26.757530 4.943055 -7.368563 -0.018076 1.911184 -0.328595 7.725506 -4.504753 0.753821 0.826826 -12.895053 2.910709 13.364381 -8.006923 -7.179009 2.661789 -4.063863 -1.100258 64.287502 -4.729813 19.916396 16.216561 -16.718680 1.282347 -8.356062 0.017643 6.672434 7.636311 11.044765 -25.789096 -12.735585 17.514795 25.636974 8.281968 -18.468575 3.192806 8.569289 0.537062 -7.509323 9.910215 1.369700 1.635396 -8.947829 -3.229474 14.835561 31.403757 -9.403177 -10.048471 4.580990 10.392237 0.165385 -10.164437 -2.041185 -9.242669 0.083726 15.156373 4.384106 9.869494 19.677542 -26.720350 13.819357 2.234381 -1.319206 13.666459 7.145620 -14.285533 -9.500875 -1.933677 9.426094 11.602032 -2.453459 0.706744 0.797200 -20.958947 0.911085 7.175127 2.524964 -12.862559 18.054891 3.060782 -9.731726 -9.204350 0.620324 -5.579785 -3.597154 -9.284860 13.226260 -4.488675 -25.691935 17.196086 4.357709 -8.282343 -0.398195 -9.266136 20.182862 -15.383065 -18.082561 12.162403 -8.238411 -11.041669 -2.786457 -5.537539 6.358493 11.902608 9.165791 -19.875011 -14.490358 15.597673 -3.674138 20.751152 10.292370 -0.492102 13.398433 -12.711437 -7.447832 -11.393629 -15.228712 11.830699 6.935503 -14.876815 -10.693557 -6.038683 13.441981 14.589400 -4.009559 -12.763172 -4.390620 15.573141 -17.059940 -1.130580 3.392717 11.593519 -16.615270 5.159424 7.414984 -9.483166 4.711035 -13.079738 -2.538417 -14.338779 -12.751015 13.570326 -2.815836 7.050619 3.688486 -1.746984 -1.474639 7.261601 5.739454 2.247378 6.375576 18.583223 16.931676 -5.569249 -2.996998 -23.253116 13.759001 -20.054568 -20.535260 6.043068 -2.664147 -6.667281 -6.907224 -5.223816 15.658811 11.914641 -8.906015 -7.373422 8.152383 +PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -0.684344 0.345344 0.686658 -1.704607 1.434447 2.699409 0.405132 -1.600377 -1.369816 -0.772490 0.547341 -2.678400 -1.659383 2.045104 -1.021615 1.060958 2.425351 -0.481263 -0.959224 -0.581274 1.340453 1.015510 3.262616 3.097666 -2.396958 0.227327 0.694289 1.214771 0.606847 0.720995 0.200440 -1.965147 0.511252 -0.968966 -0.158763 -0.307255 -0.608761 -0.393003 1.248377 -3.218207 -0.326606 0.679326 -1.361662 -0.002367 0.262094 -0.222468 2.716378 1.697640 -0.039541 1.137837 1.442611 0.747979 0.629500 -0.010076 0.640158 -0.347230 1.147556 -0.733366 -0.066971 -0.602898 -0.388397 -0.207923 -0.427089 2.564851 2.425063 0.184362 -1.030276 0.399921 0.259114 0.315199 0.103517 1.894522 -0.120999 1.996339 1.184113 -1.831838 0.676306 -2.555012 0.443677 -1.824437 -1.780207 -0.205016 0.948512 1.447474 1.218426 -0.173481 3.254337 -0.273200 -0.712366 1.878637 2.914135 -1.825538 -0.268805 -0.442211 -1.119986 0.169602 -0.921207 1.038209 -1.044821 0.777063 -1.876244 -1.241570 0.209592 0.241883 -1.410434 -0.594150 -0.164709 1.485876 -1.966028 -0.903284 -0.820205 1.232895 -0.205979 -3.726637 -2.626455 -0.967282 1.384330 0.198283 -1.256823 -2.033935 0.777091 0.891046 -0.370645 -0.963974 -0.291820 1.164153 2.116161 0.470418 -0.118845 1.003023 1.299662 3.365596 0.631805 -0.738995 0.036595 0.056758 0.027005 0.715445 -0.350475 0.292096 -0.675255 -1.508459 0.389084 2.058876 -1.030630 -0.691741 -0.447661 -0.581597 -0.007112 7.989285 -0.711041 2.312178 1.791775 -2.318993 -0.057019 -1.171746 -0.411920 0.534997 0.694559 1.764588 -3.234079 -1.440521 2.144223 3.166655 0.982200 -2.173185 0.866883 0.947038 -0.096949 -1.093723 1.365810 0.169290 0.255567 -1.128442 -0.460661 1.994945 3.958465 -1.084216 -1.943932 0.626265 0.717135 0.358144 -0.840557 -0.195021 -0.586842 0.040131 2.010195 0.408765 1.154301 2.382970 -3.394851 1.707926 0.496881 -0.586131 1.981014 0.779903 -1.684227 -0.183234 -0.049844 1.545074 1.311750 -0.185595 0.002307 -0.226039 -2.504715 -0.041711 0.974833 0.392081 -1.612976 2.158049 0.782105 -1.579612 -1.284675 -0.381406 -0.400572 -0.467385 -1.518876 1.554953 -0.753516 -3.600943 2.377653 0.773010 -0.978054 -0.051382 -1.516125 2.376444 -1.986356 -2.293032 1.378866 -1.163046 -1.407325 -0.010109 -0.751439 0.644663 1.628806 1.487145 -2.614458 -1.608922 1.790375 -0.099689 2.357401 1.329891 0.291825 1.602658 -1.437523 -0.917167 -1.190624 -1.989876 1.993965 0.910315 -1.810247 -1.061849 -0.934946 1.615273 2.054477 -0.678719 -1.521704 -0.891058 1.636086 -2.122417 -0.080654 0.447081 1.434410 -2.190952 0.330849 0.890746 -0.859333 0.426457 -1.493249 -0.558510 -1.812801 -1.692097 1.431058 -0.520490 0.677834 0.875654 -0.474769 -0.544022 0.907907 0.367273 0.232938 0.866411 2.022007 2.070490 -0.710801 0.052524 -2.780266 1.683397 -2.627534 -2.650370 0.956041 -0.723090 -0.743033 -1.033994 -0.758183 1.729385 1.276804 -0.971968 -0.727536 0.940384 +PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -1.585638 0.368563 1.245496 -3.655199 3.001933 5.676792 0.958903 -3.316892 -3.238704 -1.535713 1.236062 -5.772276 -3.508347 4.606822 -2.093965 2.525903 5.556089 -0.754711 -2.180058 -1.260270 3.249232 1.694819 7.098686 6.958911 -5.217981 0.436285 1.358476 2.569795 1.408424 1.515075 0.338663 -4.004899 1.178781 -2.559843 -0.159802 -1.090881 -1.297474 -0.480249 2.892885 -7.296279 -0.665295 1.607202 -2.559673 -0.045434 0.516105 0.080825 5.754493 3.788136 -0.294719 2.587806 3.148631 1.217790 1.496112 -0.001813 1.356150 -0.455863 2.266324 -0.883738 -0.235223 -1.233612 -0.926482 -0.653298 -0.580757 5.550894 5.475463 0.304717 -2.271947 0.991009 0.778573 0.685480 0.412840 4.116103 -0.084074 3.836760 2.799279 -4.308126 1.296894 -6.110655 1.003321 -4.720373 -3.812164 -0.413784 2.295373 2.702323 2.740428 -0.681240 7.215108 -0.771193 -1.642918 4.303989 6.315512 -4.143010 -0.677394 -1.223322 -2.523002 0.361195 -2.076107 2.029844 -1.517859 1.515296 -4.191555 -2.906044 0.520090 0.638468 -3.084357 -1.513858 -0.372240 3.394718 -4.193902 -2.230618 -1.947033 2.672960 -0.527428 -8.161335 -5.168534 -2.379573 2.697155 0.533695 -2.874708 -4.475163 1.724386 1.941266 -0.910583 -2.228792 -0.563444 2.921502 4.431746 0.997815 -0.252588 2.132806 2.591739 7.228423 1.599469 -1.819913 0.089282 0.372786 -0.294072 1.631714 -1.160331 0.326573 -0.676122 -3.486208 0.494236 4.164497 -2.357685 -1.226530 -0.137987 -1.081208 -0.013876 17.558491 -1.470458 5.134540 3.942747 -5.023268 0.588671 -2.289980 -0.653640 1.394715 1.841980 3.658071 -7.583706 -3.289644 4.569951 7.006900 2.259415 -5.002220 1.399888 1.915879 -0.072393 -2.206958 2.877297 0.399362 0.562592 -2.551284 -0.951025 4.144241 8.915235 -2.621770 -3.909601 1.286513 1.677354 0.451132 -2.560787 -0.514642 -1.841818 0.019338 3.942459 0.890720 2.623647 5.327936 -7.495277 3.895407 0.621860 -1.239577 4.413013 1.670925 -3.702201 -1.216219 -0.230434 3.223723 3.161790 -0.293353 -0.169042 -0.256342 -5.589804 -0.041901 2.001863 0.918110 -3.520006 4.815346 1.413525 -3.295971 -2.695654 -0.701761 -1.032978 -1.315914 -3.038318 3.473813 -1.490019 -7.550042 5.070193 1.590809 -2.168301 0.051859 -2.925926 4.943588 -4.389933 -5.111813 3.084963 -2.269572 -2.964770 -0.417389 -1.615766 1.602507 3.403504 2.733305 -5.640089 -4.190711 4.120091 -0.531349 5.343361 2.920238 0.377920 3.649146 -2.544946 -2.118650 -2.916324 -4.257316 3.765665 1.835561 -3.899767 -2.706936 -1.989681 3.667558 4.525838 -1.283506 -3.103089 -1.886014 3.929511 -4.634526 -0.273071 1.135151 3.022937 -4.602397 0.805770 2.108633 -2.269140 0.888239 -3.330436 -1.218327 -3.774977 -3.554991 3.289186 -1.276189 1.529767 1.668947 -0.952560 -0.926532 1.984132 1.021058 0.434975 1.783350 4.841122 4.634759 -1.644984 -0.036697 -6.092836 3.781037 -5.778634 -5.612509 1.846310 -1.152060 -1.862957 -2.066517 -1.136412 3.875134 2.837804 -2.325313 -1.697308 1.915248 +PE-benchmarks/boruvkas-algorithm.cpp__createGraph(int, int) = -0.458421 0.374769 0.904977 -1.216832 1.206951 1.022420 0.395288 -0.563391 -0.940018 -0.858459 0.312792 -1.353408 -1.867460 1.591423 -0.533649 0.228618 1.515680 -0.457120 -0.493829 -1.105604 0.983854 -0.461056 2.196377 1.904043 -2.101808 0.239567 0.718956 1.016031 0.616208 0.974201 -0.094071 -1.003819 0.038910 -0.284358 0.768915 -0.022549 -0.374378 -0.632421 -0.047628 -2.349148 -0.290548 0.783413 -0.545841 0.006839 0.140945 1.152008 2.032738 1.290380 -0.342801 0.668254 1.326427 -0.145721 0.644873 -0.021102 0.730085 -0.347043 1.488761 0.122477 -0.262354 -0.055857 -0.331496 -0.951889 -0.162422 1.769851 1.790887 -0.388995 -0.663227 0.211756 -0.100663 0.618799 0.074934 1.261659 0.572624 0.885740 1.526910 -1.021481 0.218224 -2.431632 0.217743 -3.031705 -1.484865 -0.575852 1.085386 0.317017 0.537829 -0.102601 2.469308 0.175080 -0.311678 0.729687 1.958681 -0.871606 -0.276991 -0.510177 -0.822807 0.236158 -0.752344 0.409126 0.155566 0.336549 -1.431906 -0.454351 0.494809 -0.037763 -1.115771 -0.160123 -0.566014 1.238009 -1.434840 -0.199866 -1.358493 0.454541 0.164473 -2.696887 -0.628813 -0.684916 1.080927 0.173823 -0.530384 -0.743271 0.600060 0.791693 -0.529209 -0.564093 -0.701768 1.607819 1.274053 0.243680 0.220785 0.697327 0.782197 1.429005 1.233611 -0.397158 -0.528663 0.283155 -0.527612 0.402611 -0.190952 0.195523 0.723219 -0.868807 0.313298 0.532763 -0.569304 -0.493102 0.300936 -0.634151 0.292506 4.635008 -0.639181 1.437884 0.600281 -1.395545 0.669442 -0.433163 -0.418897 0.566409 1.058766 0.970727 -1.742728 -1.012141 1.453660 2.105443 0.666189 -1.915502 0.334958 0.465282 -0.067625 -0.668480 0.998357 0.196374 0.236961 -0.703576 -0.341659 0.827838 2.727557 -1.015370 -2.025309 0.419532 0.557148 0.076477 -1.111746 0.056008 -0.145659 -0.147374 0.554703 0.233455 0.920407 1.717479 -3.074217 1.340549 -0.092000 -0.798508 1.718361 -0.164551 -0.722421 -1.490506 0.266696 0.937422 1.283668 0.366625 -0.492473 -0.302763 -1.806871 0.196118 0.256149 0.442302 -1.091444 1.602066 -0.121313 -1.061939 -1.006644 -1.066959 -0.285827 0.251327 -0.986147 0.731140 -0.362697 -3.410960 1.775952 0.008541 -0.689896 -0.277724 -0.466472 1.166140 -1.183862 -1.752815 0.624094 -0.854987 -1.348689 -0.929221 -0.665633 0.451809 0.417160 0.277257 -1.607703 -1.421709 1.519147 -0.678048 1.730637 0.992725 0.307628 1.772777 0.292340 -0.885017 -0.920003 -0.730547 1.062714 -0.089815 -1.213192 -0.323956 -0.746603 1.004397 1.441538 -0.412500 -0.146248 -0.731080 1.457074 -1.487267 -0.731596 0.476038 0.654993 -0.956612 1.014661 0.897458 -0.578417 -0.170551 -1.485308 -0.710700 -1.137471 -1.398577 0.913732 -0.694559 0.396142 0.688850 -0.076900 -0.611064 0.552377 -0.024921 -0.089673 -0.161387 1.741545 2.505968 -1.528401 0.158904 -1.884180 1.541234 -1.614493 -1.441354 0.377474 -0.190766 -0.170118 -0.514588 -0.337738 0.967863 0.735098 -1.057147 -0.692593 0.425325 +PE-benchmarks/boruvkas-algorithm.cpp__main = 0.445207 7.733585 7.103126 -5.259384 6.971378 9.682737 0.737424 -1.577668 -2.349833 -1.200723 -2.165447 -7.139207 -6.409861 5.539015 -1.697202 -1.133010 8.270996 -1.426102 -1.652282 -0.393443 1.835438 3.223974 7.886968 7.629474 -8.018952 2.829610 4.318021 1.749435 -0.978817 8.792117 -6.525682 -9.125913 -0.706435 2.271784 2.398667 -0.939456 -3.003334 -6.382014 0.055764 -11.046679 -0.624856 3.402801 -5.176189 -1.105940 1.853075 -0.287698 13.886558 3.593918 -1.576306 -1.340973 3.011972 4.095790 0.740097 -0.366976 3.813310 1.182267 9.171751 1.966278 -1.244611 -0.540384 -0.973693 0.202220 -2.567569 7.374035 5.856106 1.495156 -2.858150 -1.676691 0.311963 -0.943383 -3.418880 4.635480 3.557191 8.676437 2.490702 -0.578970 3.180138 -5.907324 1.912938 -4.779701 -6.201348 -4.556061 0.636143 2.977166 2.485722 -4.471180 9.280597 -1.984825 3.085787 1.335994 10.864280 -5.466213 -0.364761 -3.850981 -5.197197 0.597609 -0.794125 1.343109 -3.418654 -3.722201 -5.493587 -5.993297 2.301672 0.344375 -4.337628 3.148890 -0.336690 4.157317 -3.876734 -0.394899 -5.299131 0.561497 -0.431735 -10.390355 -7.862292 -0.987885 1.267802 0.829953 -2.810214 -8.205252 2.234479 5.137789 -4.069918 -2.679298 -3.203798 7.587925 6.195685 -0.728957 0.911048 -0.989002 6.144765 5.623958 4.018230 -1.997272 -0.064068 -0.623938 -0.912694 -2.393274 -1.653821 2.223630 -3.099750 -2.403316 0.034634 6.600324 -3.372765 2.304493 -3.725273 -4.568655 2.344906 24.326744 -4.915838 4.708474 -0.838011 -9.130760 4.397620 -0.006980 -6.638116 -1.337891 2.688526 8.814892 -10.820446 -3.187319 5.626578 8.752920 2.843484 -5.898617 4.476657 0.140598 -3.720900 -3.204582 4.935724 -0.725155 0.440236 -3.518862 -2.874152 4.921348 13.937927 -2.694972 -15.001029 1.800984 1.229067 2.695033 0.290119 0.375628 -0.909226 0.266248 4.286098 -2.036263 6.253640 7.173113 -15.912902 5.909875 0.571746 -8.488742 8.786774 -0.875852 -1.752232 3.535796 2.683367 8.343890 5.676445 2.227647 -2.513634 -4.671344 -6.062519 -1.146186 1.926017 3.052981 -5.553870 5.506048 3.125393 -8.687428 -4.453075 -7.324863 -0.880464 -2.357046 -7.846454 2.007192 -3.569843 -15.361731 10.521489 4.145995 0.141379 -0.725685 -5.660783 1.717286 -5.502976 -8.226590 1.969295 -1.674780 -2.038794 1.993528 -3.670000 2.721219 4.144600 6.572922 -8.962464 -9.523606 4.592084 1.726477 6.689193 4.731459 4.322616 4.901636 3.374737 -1.907771 -3.736941 -6.604130 9.685974 3.392209 -4.690414 -1.620385 -5.728055 4.048613 7.615625 -3.569063 -1.137378 -9.087304 3.473159 -4.023542 0.912599 1.941560 -0.623678 -6.341290 -2.639781 3.577855 0.403616 -2.804157 -5.297918 -2.913501 -5.321194 -5.635035 0.647363 -4.330382 -0.948681 6.674190 -4.116351 -5.111852 1.812419 -1.915932 -1.541082 1.592689 4.134586 5.375677 -4.876709 4.995591 -6.274616 6.365777 -8.607604 -7.107797 2.451745 -6.916922 -2.379797 -4.207758 -1.634998 2.426717 -0.894498 1.275618 0.182536 0.606937 +PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -2.381088 -2.076146 -0.959809 -3.654114 2.373820 3.984383 1.204601 -3.906913 -4.328954 -1.671075 2.351193 -5.780697 -2.819469 5.072114 -2.092035 4.032841 5.940171 -0.381932 -2.151521 -2.425046 4.450789 0.623223 7.563213 7.850070 -5.173064 -0.069444 1.300426 2.314366 2.443945 -0.724863 2.133494 -3.455136 1.836738 -4.728181 -0.299457 -1.851341 -1.224316 1.715795 5.099807 -7.555496 -0.614387 0.847397 -1.111406 0.329791 0.079458 1.768634 3.914790 4.277797 -0.870181 4.805674 4.264415 0.307961 1.778784 -0.011907 0.743970 -0.495303 0.453976 0.147823 0.214066 -1.068785 -1.190225 -0.204882 0.347995 5.545125 6.314341 -0.456618 -2.719589 2.066044 1.539018 1.451069 1.501957 4.597022 -0.392236 2.070943 3.689513 -6.766636 -0.252357 -10.307822 1.044349 -8.561632 -3.637550 0.921326 3.315173 0.618975 3.030005 0.628271 7.684930 -0.368691 -3.330896 5.843335 5.724403 -3.910409 -0.842888 -0.522780 -2.553740 0.315544 -2.379402 2.447916 0.741208 2.698909 -4.482310 -3.389915 0.407764 0.494358 -3.106507 -3.737388 -0.320404 3.327586 -4.459624 -2.975668 -1.732112 3.774354 -0.409683 -8.403964 -3.975859 -3.606827 3.363797 0.578156 -3.714321 -3.972499 1.754680 0.944152 -1.064753 -2.463005 1.253085 2.277528 4.629559 1.877350 -0.587016 2.710263 1.699343 8.408956 1.425852 -2.803107 0.141387 1.017925 -0.392020 2.850361 -2.259555 -0.549661 1.948548 -4.076160 1.732853 2.978694 -2.475843 -2.614468 3.931958 -0.784300 -0.931225 17.236456 -0.880109 6.095869 5.692234 -4.115611 0.224066 -2.865499 1.271930 2.710449 2.795732 2.451083 -6.991770 -3.861440 4.809554 7.375841 2.480934 -6.242363 -1.165180 2.730080 1.017561 -1.674061 2.599096 0.459663 0.575632 -2.518948 -0.435733 3.867175 8.810988 -3.064985 -0.970368 0.700650 3.912250 -0.410887 -4.462894 -0.876757 -4.264668 0.000561 4.015005 1.904398 2.516173 5.550741 -8.936572 3.809957 0.165990 0.784829 3.100430 3.313390 -4.787946 -5.037532 -0.922437 1.788603 3.381123 -0.655068 1.212814 1.375829 -6.229077 0.423096 1.747027 0.497241 -3.910621 5.375625 0.569782 -2.137904 -1.984335 1.764391 -1.585985 -1.784173 -1.363301 4.371368 -0.137005 -7.666359 3.796619 0.724923 -2.948698 0.307829 -2.016148 6.341796 -4.387586 -4.676347 3.662654 -2.427568 -2.736800 -1.460074 -1.247895 1.632594 2.669227 2.586614 -4.923167 -4.431197 4.693571 -1.594048 6.016115 2.878443 -1.217950 3.981776 -5.532358 -2.459084 -3.768835 -3.264445 2.295743 1.513653 -3.860922 -3.613164 -1.171936 3.837425 4.147862 -0.498762 -3.774347 -0.397695 4.869789 -5.908542 -0.060466 1.172400 4.927646 -4.131757 2.353498 2.155287 -3.788753 2.073648 -3.594203 -0.762203 -3.607615 -2.889523 4.637343 -0.688368 2.149039 -0.073672 -0.399247 0.573399 2.553503 2.226291 0.790898 1.815877 5.582931 6.141004 -1.506641 -1.835348 -6.690117 3.343530 -5.583951 -5.805386 1.341190 0.197532 -2.819346 -1.667904 -1.200312 4.957753 3.738222 -3.134262 -2.873340 2.663889 +PE-benchmarks/find-k-closest-elements-given-value.cpp__printKclosest(int*, int, int, int) = -3.776212 -4.164407 -2.622852 -5.609780 3.222518 5.475235 1.794636 -5.733182 -7.669084 -2.445218 3.915156 -9.913012 -3.800942 7.885980 -3.084813 6.074468 9.140706 -0.207391 -3.970649 -3.347788 6.776489 0.625088 10.686371 11.972036 -7.139177 -0.052948 0.314897 2.412114 3.198675 -1.004373 3.785119 -5.638358 2.356275 -6.459020 0.312945 -2.862163 -2.488345 3.601571 7.823436 -11.669517 -0.774722 3.813818 0.730316 0.254183 0.641152 3.421902 5.341901 5.986023 -0.909798 7.268108 5.927288 0.613243 3.402219 -0.400742 1.754266 -0.419786 1.057804 0.191644 0.181812 -1.551040 -2.433404 0.857668 0.771787 8.186982 9.264047 -0.799710 -4.556543 2.287624 3.083411 2.430261 2.989208 7.055710 -0.500802 2.086901 5.085736 -8.847234 -0.024947 -14.692131 2.790470 -14.041531 -4.874279 2.523979 6.052394 2.154088 3.668121 -0.572974 12.177438 -1.724218 -5.845665 8.942852 8.313989 -4.956890 -1.170577 -0.601959 -4.539050 -0.126616 -2.978847 2.791143 2.264243 4.648570 -6.891797 -4.253343 -0.153804 0.469805 -4.572648 -4.771550 -0.254396 4.971761 -6.619224 -3.824360 -1.627685 6.874495 0.150949 -12.116679 -5.710002 -6.452032 1.424631 0.934740 -6.851245 -5.153875 3.216537 0.157836 -2.254283 -2.429578 0.143754 3.850179 5.935498 3.042797 -1.554524 4.278469 2.191751 11.523543 0.557186 -5.070944 1.038972 1.945234 0.092371 4.740960 -3.414411 -1.500136 3.746231 -5.866796 1.773864 2.741793 -3.893079 -3.268063 4.312176 -0.975283 -2.301806 24.982973 -1.940988 9.810028 8.515829 -5.848199 1.445100 -3.154505 2.588605 3.657688 4.824732 3.477982 -9.245686 -6.209537 7.884381 11.591263 3.766833 -8.273072 -1.183815 4.889253 1.430406 -1.841163 4.369761 0.165828 0.793780 -3.921367 -0.887004 4.623064 13.711740 -3.907211 0.355754 0.516695 6.898026 -0.509777 -5.826303 -0.936210 -7.699465 0.228294 4.888440 2.826616 4.229731 8.569887 -13.067427 6.489768 -0.355006 1.631582 4.983361 4.629090 -6.992133 -9.430659 -2.764511 2.020109 5.865597 -1.434528 1.282862 2.341951 -9.289324 0.728942 2.143291 0.756087 -6.416651 8.225058 0.275663 -2.591091 -1.893776 2.570605 -2.840232 -2.882162 -2.438022 6.600390 1.073199 -9.264174 5.386157 1.916290 -3.703648 -0.601981 -1.689577 8.068315 -5.937118 -6.509737 4.909584 -3.726343 -4.600387 -2.261957 -2.542253 2.498357 3.348591 3.392574 -7.489337 -6.775306 8.362886 -3.216519 10.187275 4.300082 -3.011897 5.006937 -6.044138 -3.319131 -4.955750 -5.327658 2.001982 1.812841 -5.049704 -4.104451 -1.743756 5.458884 5.242854 -0.210757 -6.023374 -0.371929 7.638439 -6.568625 0.602351 1.613753 4.346359 -5.924162 3.846479 3.239779 -5.773788 3.685778 -6.125535 -0.833283 -6.124826 -3.116794 7.452154 -0.606533 3.048568 -1.101587 -0.882330 0.932433 3.390840 4.150178 0.100096 3.293367 9.341830 6.638895 -1.132453 -1.808394 -10.058006 5.330930 -7.640641 -7.757926 0.976233 0.994532 -5.364845 -2.896179 -1.737072 7.578763 6.192748 -4.497423 -4.824415 5.104539 +PE-benchmarks/find-k-closest-elements-given-value.cpp__main = 0.020764 0.306432 0.478319 -0.085236 0.668442 0.097793 0.378864 0.453270 -0.675333 -0.664197 -0.078641 -0.938313 -1.060704 0.932123 0.099874 0.180981 1.381095 0.405410 0.029979 -0.270575 0.129390 -0.759369 1.133646 1.193649 -0.778985 0.434300 -0.017153 0.152445 -0.309831 0.944048 -0.394114 -1.040839 0.470534 -0.228992 0.391841 -0.501589 -0.391811 -0.203600 -0.256203 -1.792657 -0.072496 0.875120 0.034545 -0.098679 0.159308 0.903025 1.363514 0.553113 -0.103622 0.828723 0.084915 -0.478303 0.516889 0.179019 0.539369 0.235223 0.356924 -0.015688 -0.897437 0.380562 -0.299857 -1.316778 -0.349972 0.529683 0.861918 -0.244205 -0.413619 -0.091119 -0.304941 0.151750 0.091523 0.482548 0.752502 0.020561 0.730540 -0.240960 -0.183177 -1.045800 -0.191865 -2.692225 -1.068786 -0.557230 1.357583 0.330013 0.204844 -0.548374 1.201974 -0.287822 0.205937 0.313211 1.364004 -0.831158 -0.466142 -0.362773 0.075889 0.242223 -0.396737 -0.254462 0.736329 -0.461020 -0.895076 -0.475128 0.927295 -0.119731 -0.446125 0.006688 -0.170453 0.916373 -1.237102 -0.440520 -1.437831 -0.151264 0.214266 -1.141574 0.273348 0.437059 0.199988 0.879031 -0.596242 -0.460965 0.598681 0.227904 -0.371841 -0.336442 -0.480974 1.248843 -0.016257 0.095694 0.539392 0.539115 0.424866 0.788219 1.136450 -0.210623 -0.018929 0.363451 -0.279834 0.216995 -0.156398 -0.477825 0.074174 -0.769947 0.031206 -0.045579 -0.694997 0.035400 -0.315203 -0.014345 0.209499 1.374647 -0.336980 0.727942 0.158995 -0.865684 0.955717 -0.279761 -0.335150 0.031880 0.929003 0.647351 -0.551337 -0.454136 0.496940 1.216144 0.553180 -1.076315 -0.097147 -0.178195 0.315672 -0.038237 0.626297 0.258477 0.708170 -0.621079 -0.062656 0.184965 1.815884 -0.709320 -1.210708 0.117204 -0.178758 0.286984 -1.092230 0.018616 -0.231537 -0.151189 -0.137243 -0.135576 0.189957 0.996341 -1.771322 1.036441 -0.598347 -0.645247 1.002602 0.115524 -0.288059 -1.261085 -0.175593 0.686328 1.247244 0.614784 -0.203130 -0.230202 -0.887723 -0.140032 0.013975 0.394636 -0.428342 0.854842 -0.307475 -0.717175 -0.367292 -0.872539 0.046466 -0.276458 -0.366662 0.391069 0.835447 -1.902976 0.838066 0.082232 -0.495885 -0.000196 0.329287 0.382711 -0.674637 -1.173627 0.233510 -0.610157 -1.274942 -0.413148 -0.478073 0.169041 0.112335 -0.523267 -0.106185 -1.026797 1.326388 0.046140 0.964352 0.638608 -0.002871 1.403224 1.153395 -0.975462 -0.107129 -0.510133 0.375634 -1.069832 -0.050333 -0.146369 -0.593051 0.587694 1.140670 0.299263 0.024254 -0.737016 0.949276 -0.892640 -0.314137 0.934445 0.099968 0.035492 0.751761 1.014725 -0.717218 -0.263851 -0.768311 -0.262616 -0.250060 -0.376334 0.206815 -0.941360 -0.147667 0.480341 -0.329650 -0.484767 0.239725 -0.172844 -0.323326 -0.444236 1.157867 1.366983 -1.154001 0.659483 -0.649087 0.648447 -0.978478 -0.565994 -0.133848 0.566817 -0.528347 -0.178977 0.382487 0.097651 0.130387 -0.845971 -0.635351 0.044893 +PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -1.169130 -0.863095 -0.070168 -1.533023 1.149951 1.524390 0.741047 -1.288818 -2.258010 -1.140844 0.578281 -2.866609 -1.603776 2.779917 -0.730170 2.162280 3.541035 0.608067 -0.911728 -0.823547 2.166724 -1.095563 3.628521 3.971200 -2.257717 0.066331 0.129036 1.355639 0.410557 0.789881 0.511438 -1.851724 0.866847 -2.410612 0.444555 -1.613493 -0.593133 1.308617 1.798974 -4.435405 -0.251148 1.424559 0.324808 -0.102105 0.052757 0.358387 2.254328 2.124057 -0.102086 2.098110 1.314213 -0.308071 1.392280 0.270842 0.896863 0.753791 0.187849 -0.556424 -0.656971 -0.054430 -0.896362 -1.287257 0.483503 2.534658 3.163520 -0.193671 -1.257207 0.815059 0.236441 0.577265 0.830345 2.066456 -0.168264 0.439010 1.750115 -3.450006 0.194565 -4.445819 0.447339 -4.399923 -2.027026 -0.138100 1.722058 1.402401 1.777243 -0.314289 3.966315 -0.896624 -1.114558 2.389122 3.154453 -2.482660 -0.680731 -0.944218 -0.948626 0.099347 -1.285196 0.117843 0.590396 0.915330 -2.318257 -1.851372 1.084463 0.532358 -1.469904 -1.642251 -0.263755 2.315349 -2.508246 -2.297341 -1.776372 1.332929 -0.579242 -3.828955 -0.555027 -1.543029 0.395104 0.848780 -1.975145 -2.451613 1.345719 0.875574 -0.513323 -1.486479 -0.601186 1.977230 1.350252 0.277502 -0.052824 1.411154 0.410401 3.889188 1.251489 -1.309683 0.089848 1.051422 -0.844465 1.054768 -1.257286 -0.968024 0.860981 -2.386525 -0.863560 1.144044 -1.562792 -0.387958 1.187021 -0.217331 0.017252 7.907722 -0.603584 2.520687 2.310984 -2.368018 1.753598 -0.850506 0.482401 0.970345 1.890660 1.361519 -4.213712 -2.146469 2.093534 3.729436 1.487102 -2.452547 -1.145634 0.445538 0.877429 -0.230440 1.258256 0.451325 0.350937 -1.629109 -0.210836 1.076425 5.111399 -1.822151 -0.210172 0.599695 0.985820 -0.618170 -3.506094 -0.538035 -2.623265 -0.350481 0.449374 0.510831 0.953346 3.021297 -3.670991 2.528838 -1.000607 -0.175088 2.248033 0.713411 -1.741460 -3.624618 -0.817770 1.222180 2.497163 -0.227813 0.515529 0.345441 -3.183755 0.113375 0.389323 0.868240 -1.787204 2.769936 -0.406665 -1.534541 -1.032116 0.435028 -0.931136 -1.579467 -0.553487 1.954064 1.250636 -2.601772 2.152303 0.468313 -1.113150 0.875115 0.044266 2.581815 -2.265129 -2.780802 1.861436 -0.966244 -1.430572 -0.820001 -0.738555 1.166711 0.861309 -0.709327 -1.943980 -2.492386 2.555502 -0.700692 3.085433 1.439397 -0.555239 2.044786 0.075922 -1.718506 -1.387092 -1.607319 -0.329392 -0.284388 -1.305217 -2.367064 -0.746212 2.308687 2.627751 0.391739 -1.248665 -0.206344 3.044680 -2.590085 -0.285872 1.289558 0.922652 -1.602109 0.873912 1.674373 -2.287052 0.237667 -1.863464 0.062074 -1.396082 -1.339217 1.960809 -1.243767 0.688670 0.233385 -0.448188 0.013028 1.038908 1.380449 0.043466 0.359049 3.634761 2.141522 -0.667839 -0.391964 -2.943203 1.439228 -2.898993 -2.062170 -0.070459 1.439351 -1.686648 -0.502601 0.569736 2.117829 1.707568 -1.404482 -1.291106 0.258082 +PE-benchmarks/m-coloring-problem.cpp__graphColoringUtil(bool (*) [4], int, int*, int) = -1.441753 -1.150444 -0.173830 -2.150584 1.508978 1.765996 0.857697 -1.522064 -3.090964 -1.651902 0.866773 -3.561366 -2.107584 3.588119 -1.010069 2.436385 4.663522 0.658910 -1.163192 -1.443450 3.008833 -1.476247 4.663790 5.384939 -3.374259 0.131541 0.685936 1.612704 1.112778 0.647917 0.958468 -2.383510 0.912272 -2.993554 0.933740 -2.280575 -0.826050 1.568422 2.396007 -6.073452 -0.385519 1.500748 0.408911 0.064698 0.202133 1.646146 2.983900 2.804026 -0.941038 2.999995 2.448855 -0.147093 1.593779 0.106613 0.588362 0.554464 0.281550 0.284420 -0.447939 0.100262 -0.975703 -1.459759 0.836103 3.523539 4.400110 -0.519380 -1.668945 1.014971 0.863484 0.935889 1.022924 2.864182 0.053341 0.501978 2.536451 -4.814338 -0.252222 -7.555497 0.933317 -7.320389 -2.661216 -0.189945 2.644694 1.154493 1.840624 -0.199649 5.393780 -0.859085 -1.442806 3.683345 4.009477 -2.726001 -0.758778 -1.261001 -1.841041 0.421099 -1.630924 0.403927 1.150061 1.418935 -3.002597 -2.595321 1.043470 0.364957 -2.077219 -2.252120 -0.496886 2.934486 -3.347667 -2.474924 -2.263208 2.059317 -0.343218 -5.400645 -0.600436 -2.518259 0.989729 0.980545 -2.519596 -2.720404 1.454607 0.913994 -0.976577 -1.534728 -0.679237 2.712507 2.009956 0.547165 -0.162875 1.539685 0.690548 4.540955 1.860771 -2.045110 -0.081054 1.470860 -1.090375 1.262469 -2.167955 -1.021507 2.081663 -3.105185 -0.170693 1.152932 -2.002000 -1.155353 2.411825 -0.827283 -0.030049 10.683564 -0.762849 3.630528 3.052919 -2.975482 2.288581 -0.880634 0.616718 1.778870 2.761279 1.773364 -5.128929 -2.697730 2.653873 5.072670 1.881617 -3.611965 -1.939158 0.968681 0.710130 -0.324715 1.804031 0.410278 0.145182 -1.911526 -0.349969 1.616380 6.392172 -1.989748 -0.341379 0.283641 2.293372 -0.946708 -4.482577 -0.446834 -3.781785 -0.281497 1.179449 0.676699 1.641507 3.935775 -6.386174 3.207849 -1.018553 0.131578 2.379148 1.258746 -2.386252 -5.452124 -0.607971 1.442069 3.278468 -0.306861 0.547824 0.721462 -4.241187 0.219819 0.662120 1.057938 -2.693102 3.723239 -0.428691 -1.763840 -1.326257 0.715976 -1.310854 -1.918412 -0.743656 2.593563 1.090707 -4.285634 2.754937 0.097401 -1.638874 0.730866 -0.268047 3.357925 -2.981943 -3.492121 2.306702 -1.075392 -1.872182 -1.538548 -1.164015 1.728844 0.976762 -0.245056 -2.552464 -3.948294 3.223252 -1.345798 4.049641 2.023069 -0.846721 3.123013 -0.477294 -1.935241 -2.457636 -1.809892 0.131856 -0.196521 -1.777675 -3.003267 -0.985093 2.714649 3.462205 0.220261 -1.633813 -0.210820 4.037656 -3.303325 -0.447812 1.326202 1.395252 -1.926404 1.669240 1.944898 -3.159933 0.464400 -2.857136 0.235639 -1.625510 -1.648629 2.850088 -1.529174 0.933664 0.204866 -0.428571 0.067925 1.665249 1.773472 0.119944 0.461288 4.663245 3.484448 -1.221172 -0.441784 -4.051500 2.158461 -3.944356 -2.919376 -0.310729 1.552186 -1.995950 -0.668001 0.177564 2.876617 2.126816 -1.730765 -1.816303 0.925919 +PE-benchmarks/m-coloring-problem.cpp__graphColoring(bool (*) [4], int) = -0.701185 -0.593009 0.238228 -1.179028 0.936829 0.762777 0.600610 -0.381660 -2.055464 -1.148801 0.395593 -2.552750 -1.527606 2.287198 -0.463559 1.223980 3.014930 0.684374 -0.729280 -0.637906 1.393265 -1.085202 2.664809 3.195643 -1.855069 0.248957 -0.269027 0.934366 0.175906 1.019703 0.426093 -1.743539 0.382163 -1.178259 0.861643 -1.297632 -0.610571 0.938432 0.824098 -3.952202 -0.138709 1.963995 1.035320 -0.123408 0.335538 0.885743 2.007133 1.621613 -0.286541 1.610819 1.091208 -0.319157 1.310159 0.106605 0.657939 0.390256 0.499792 -0.290699 -0.847675 0.297484 -0.689480 -1.227668 0.289796 1.968777 2.575406 -0.236896 -1.060669 0.054465 0.439350 0.669008 0.667306 1.573614 0.170883 0.160653 1.348485 -1.889445 0.095103 -3.674859 0.730533 -4.360170 -1.812486 -0.228205 2.265217 1.775224 0.784274 -0.809607 3.218390 -0.814208 -0.670038 1.785139 2.590133 -1.440979 -0.649609 -0.926225 -0.992115 0.370624 -0.922911 -0.241540 0.860227 0.796981 -1.917411 -1.140249 0.817615 0.091494 -1.173179 -0.501615 -0.275269 1.952666 -2.085840 -1.345524 -1.615676 1.262128 0.179612 -3.128131 0.016467 -1.210219 -0.658314 0.951656 -1.693832 -1.299569 1.120599 0.238867 -0.817247 -0.508115 -1.653998 2.175993 0.598367 0.155036 0.065393 1.091157 0.437590 2.112574 0.911161 -1.279929 0.125694 1.008763 -0.599563 0.697823 -1.194554 -0.889445 0.866712 -1.898036 -0.452870 0.209941 -1.361846 -0.337267 -0.195840 -0.240116 0.060337 5.523358 -0.653467 2.201004 1.534779 -1.728877 2.263395 -0.110605 0.232213 0.667921 1.747072 1.126253 -2.483610 -1.615805 1.565159 3.110548 1.239851 -1.709066 -0.821192 0.437550 0.460252 -0.021161 1.366561 0.343214 0.329133 -1.315119 -0.258357 0.677782 3.935102 -0.975051 -0.700308 0.166128 1.018184 -0.296269 -2.538571 -0.141388 -2.116374 -0.233237 0.126979 0.253561 0.962044 2.458530 -3.646307 2.326433 -0.552443 -0.192144 2.046747 0.158191 -1.240387 -3.528202 -0.641372 0.979334 2.409699 -0.010945 -0.199529 0.237782 -2.501611 0.035112 0.231644 0.762436 -1.563704 2.215522 -0.624400 -1.047512 -0.710990 -0.421516 -0.841013 -1.128426 -0.838430 1.439564 1.423867 -2.102263 1.737537 0.218155 -0.889183 0.228625 0.178913 1.353323 -1.670662 -2.095374 0.994467 -0.811787 -1.723580 -1.056342 -0.853977 0.888664 0.390742 -0.594000 -1.231835 -2.261043 2.335827 -0.746063 2.598702 1.270646 -0.602263 1.650689 1.798490 -1.306617 -0.874256 -1.202135 -0.103780 -0.722516 -0.756949 -1.401405 -0.821966 1.557534 2.105937 0.318494 -0.828930 -0.626370 2.551143 -1.279239 -0.512255 1.103967 -0.841067 -0.808555 1.038536 1.493395 -1.955655 0.126667 -2.006212 0.166942 -0.950933 -0.834017 1.473369 -1.120533 0.346486 0.185599 -0.535844 -0.323262 0.764431 0.971296 -0.497450 0.111057 3.206912 1.281186 -0.674505 0.549564 -2.321057 1.367046 -2.320126 -1.335447 -0.478238 1.091558 -1.495257 -0.352839 0.403861 1.414552 1.091908 -1.079036 -1.307070 0.590742 +PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -0.472249 -0.561474 -0.072100 -0.903990 0.500765 0.453540 0.332724 -0.434977 -1.299745 -0.718476 0.548450 -1.647210 -0.851114 1.332603 -0.468749 0.754377 1.641719 0.222559 -0.511384 -0.505867 0.936716 -0.345293 1.742317 1.998553 -1.346692 0.051966 -0.182624 0.753732 0.530157 0.202518 0.690944 -0.923740 0.324608 -0.740944 0.311647 -0.686694 -0.180567 0.613185 0.614113 -2.213917 -0.092768 0.980894 0.426679 0.021931 0.149106 0.705631 0.999474 1.093181 -0.348575 1.132423 1.033815 -0.027181 0.644093 0.048472 0.124596 -0.252125 0.089826 -0.314627 -0.322599 -0.026944 -0.224688 -0.692633 0.138830 1.338114 1.705193 -0.178590 -0.536888 0.188554 0.353714 0.446502 0.625797 0.954719 -0.002922 0.169498 0.913423 -1.112102 0.046429 -2.374716 0.417033 -2.837709 -0.979420 0.014638 1.590707 0.969523 0.351346 -0.340501 1.907279 -0.180471 -0.609668 1.527724 1.428718 -0.718349 -0.399420 -0.446136 -0.706509 0.420988 -0.713959 0.177645 0.361179 0.882229 -1.118550 -0.506150 0.182209 0.013530 -0.772209 -0.497514 -0.163282 0.967888 -1.407438 -0.609556 -0.618315 0.975756 0.266622 -2.022967 -0.405584 -0.944622 0.124183 0.300619 -0.828561 -0.453931 0.399100 -0.038491 -0.345935 -0.116633 -1.055271 0.965083 0.574164 0.356728 -0.027228 0.738658 0.356182 1.449130 0.136571 -0.827186 -0.023795 0.475936 -0.170306 0.655914 -0.758304 -0.392870 0.846457 -1.112399 0.023900 0.123302 -0.740505 -0.630640 0.090302 -0.106947 -0.032311 3.605565 -0.078590 1.487100 1.283713 -0.924058 0.727521 -0.275704 0.321888 0.706287 0.885790 0.429399 -1.173114 -1.028896 0.922713 1.841081 0.709221 -1.099002 -0.275893 0.585619 0.275497 -0.167830 0.687641 0.180230 0.058789 -0.711921 -0.134814 0.743398 2.044895 -0.345541 0.020793 0.077517 0.994137 -0.299933 -1.151156 -0.088176 -0.994484 0.009435 0.410049 0.360535 0.643112 1.492873 -2.266374 1.221467 0.047814 0.365642 0.785921 0.290087 -1.048348 -2.096607 -0.263473 0.417773 1.187859 -0.196741 0.156994 0.458020 -1.541517 0.043922 0.304865 0.227098 -0.900049 1.254709 -0.161098 -0.363173 -0.537787 -0.007805 -0.561782 -0.284882 -0.464694 1.021107 0.609959 -1.450794 0.930010 -0.079226 -0.779439 -0.120294 -0.195583 1.086348 -1.257730 -1.161992 0.628021 -0.602756 -1.239833 -0.740802 -0.374937 0.480155 0.213891 -0.100871 -0.859236 -1.088041 1.442839 -0.607242 1.370931 0.764082 -0.446893 0.969846 0.170150 -0.604000 -0.687331 -0.711754 0.186903 -0.322597 -0.670436 -0.345909 -0.365587 0.843639 1.200500 0.065036 -0.796095 0.142617 1.467018 -0.726322 -0.510007 0.486187 0.020429 -0.619622 0.920759 0.712138 -1.295086 0.352564 -1.267835 0.021195 -0.495957 -0.606156 1.184724 -0.344538 0.501146 0.061300 -0.075366 -0.121919 0.666391 0.561600 -0.182704 0.240132 1.936445 1.043696 -0.288394 0.109783 -1.617588 0.759404 -1.465082 -1.108891 -0.087565 0.417789 -0.756139 -0.142430 -0.086416 1.083655 0.927181 -0.678707 -0.861415 0.729300 +PE-benchmarks/m-coloring-problem.cpp__main = 0.039122 0.224204 0.342216 -0.107488 0.447884 0.042598 0.234014 0.288286 -0.467413 -0.497369 0.010024 -0.760759 -0.744297 0.603570 0.016968 0.044847 0.854046 0.191841 0.002627 -0.181949 0.004056 -0.366458 0.753682 0.786291 -0.558010 0.300462 -0.107150 0.126550 -0.177004 0.600890 -0.141284 -0.763589 0.261162 0.028731 0.247657 -0.214044 -0.250470 -0.169955 -0.226419 -1.153023 -0.050339 0.700629 0.076636 -0.055664 0.147105 0.572071 0.919537 0.371456 -0.068749 0.539882 0.125283 -0.235456 0.355126 0.096790 0.317738 -0.038107 0.283827 -0.191903 -0.590342 0.233976 -0.152700 -0.823894 -0.312145 0.392577 0.585806 -0.145301 -0.277386 -0.138736 -0.183349 0.134043 0.082451 0.331137 0.486526 0.100283 0.450319 0.061790 -0.064728 -0.600020 -0.061230 -1.727763 -0.719794 -0.322775 1.026175 0.460676 0.021327 -0.407308 0.792527 -0.128291 0.104434 0.254950 0.905910 -0.424743 -0.309157 -0.193852 -0.007666 0.221191 -0.266753 -0.105302 0.338334 -0.151246 -0.588834 -0.191737 0.518362 -0.148903 -0.309689 0.131533 -0.107034 0.532580 -0.853452 -0.144607 -0.846603 -0.008754 0.282298 -0.781497 0.064077 0.273694 0.050362 0.540323 -0.375915 -0.146644 0.354744 0.012357 -0.265535 -0.061712 -0.603795 0.777167 -0.010263 0.115232 0.339104 0.388977 0.363099 0.444098 0.527839 -0.165802 -0.006602 0.184600 -0.055465 0.183958 -0.061019 -0.264134 0.007595 -0.459063 0.104057 -0.093488 -0.440195 -0.083245 -0.541877 -0.032720 0.105946 0.813737 -0.201333 0.531773 0.145820 -0.533741 0.549353 -0.189989 -0.235714 0.008369 0.546154 0.424845 -0.093030 -0.295979 0.367116 0.813116 0.346458 -0.598914 0.107261 0.022770 0.171716 -0.070854 0.473505 0.157654 0.443035 -0.395951 -0.059782 0.196843 1.097323 -0.297048 -0.763572 0.063124 -0.027270 0.268724 -0.470522 0.062248 -0.022350 -0.060733 -0.014050 -0.049454 0.155729 0.657265 -1.211706 0.675837 -0.199980 -0.335058 0.609900 0.029178 -0.248457 -0.772388 -0.094765 0.440574 0.769510 0.368334 -0.121390 -0.144307 -0.578628 -0.099437 0.041521 0.203885 -0.304457 0.546673 -0.177314 -0.422309 -0.263198 -0.662852 -0.004561 -0.044548 -0.361176 0.275534 0.593295 -1.243255 0.559938 0.044441 -0.353303 -0.165057 0.113226 0.237394 -0.465321 -0.709475 0.075894 -0.516003 -0.984395 -0.269360 -0.327818 0.032644 0.045927 -0.245203 -0.082322 -0.528512 0.920747 0.026313 0.609982 0.436193 -0.013267 0.822109 0.811391 -0.579945 0.016912 -0.360543 0.386237 -0.715407 -0.053732 0.162956 -0.408194 0.312481 0.714670 0.141809 -0.078406 -0.449568 0.564252 -0.410199 -0.273724 0.560692 -0.124190 0.007019 0.560516 0.621958 -0.434357 -0.091879 -0.602702 -0.159568 -0.197217 -0.261867 0.157139 -0.526884 -0.080652 0.338393 -0.230081 -0.392873 0.177520 -0.149792 -0.286064 -0.243716 0.780430 0.776167 -0.678711 0.547739 -0.491125 0.422155 -0.648476 -0.415894 -0.061076 0.257240 -0.342901 -0.151943 0.110069 0.063929 0.118517 -0.512228 -0.470393 0.196581 +PE-benchmarks/egg-dropping-puzzle.cpp__max(int, int) = -0.444021 -0.475063 -0.154973 -0.409908 0.416443 0.173706 0.221706 -0.364058 -0.810828 -0.520716 0.245428 -0.825332 -0.422339 0.796596 -0.232319 0.710890 1.001177 0.221964 -0.130314 -0.377823 0.616259 -0.636158 0.960655 1.197293 -0.589644 0.017499 0.064593 0.265237 -0.037467 0.216664 0.236887 -0.814100 0.273647 -0.712711 0.232186 -0.522469 -0.298533 0.654921 0.708188 -1.308959 -0.109851 0.468470 0.121735 0.088541 0.067689 0.269312 0.458761 0.495058 -0.103197 1.046004 0.462211 -0.091999 0.438165 0.014614 0.283109 0.265638 -0.033724 -0.110837 -0.160635 0.139906 -0.441593 -0.251131 0.184635 0.614977 0.876181 -0.270718 -0.440832 0.146705 0.006496 0.250429 0.333354 0.675994 -0.045885 -0.120240 0.545742 -1.141874 -0.158885 -1.880101 0.206823 -1.826290 -0.620873 0.139613 0.629687 0.418478 0.400586 -0.026238 1.284259 -0.289169 -0.527458 0.672104 0.849720 -0.586988 -0.150350 -0.045941 -0.314566 -0.146666 -0.262188 -0.052188 0.283903 0.365651 -0.661683 -0.587765 0.402101 -0.017042 -0.374522 -0.668523 -0.163664 0.715096 -0.886234 -0.668636 -0.601809 0.575586 -0.023871 -1.015793 0.056192 -0.477430 0.039082 0.371887 -0.814628 -0.552231 0.518636 0.079957 -0.233291 -0.300810 0.017472 0.606571 0.378891 0.155060 -0.045485 0.431272 0.003041 1.111993 0.369873 -0.487082 0.019604 0.412133 -0.114463 0.431300 -0.397508 -0.273580 0.305535 -0.649933 -0.014442 0.043414 -0.469827 -0.246603 0.558160 -0.168697 -0.207404 2.063006 -0.290608 0.852617 0.722784 -0.574930 0.587916 -0.218823 0.358629 0.345206 0.729016 0.322802 -0.925559 -0.637422 0.743754 1.111866 0.396593 -0.810155 -0.696524 0.276635 0.416026 0.084423 0.450320 0.099404 0.143926 -0.410219 -0.007461 0.063089 1.532035 -0.493409 0.073686 0.054527 0.584000 -0.166782 -1.141087 -0.133330 -1.164199 -0.139469 0.200891 0.208184 0.184776 0.893401 -1.575240 0.698983 -0.403394 0.081795 0.519618 0.412328 -0.469770 -1.718893 -0.401149 0.165619 0.794213 -0.022075 0.469731 0.213278 -0.899795 0.113394 0.031249 0.281121 -0.710202 0.901342 -0.234655 -0.465200 -0.091046 0.211526 -0.385730 -0.565324 -0.125392 0.585409 0.720484 -1.041489 0.432646 0.173081 -0.320716 0.233241 0.299719 0.932985 -0.474506 -0.776922 0.564019 -0.425537 -0.444811 -0.247642 -0.280840 0.220668 0.023278 -0.279493 -0.372627 -0.706357 0.797329 -0.257545 0.996854 0.393511 -0.373624 0.690802 -0.143506 -0.576960 -0.313678 -0.338324 0.009708 -0.303060 -0.147084 -0.710156 -0.124709 0.553787 0.664384 0.373210 -0.392462 -0.043787 0.963976 -0.748563 0.195801 0.422031 0.288876 -0.280721 0.458426 0.516336 -0.663397 0.164350 -0.667344 0.205981 -0.518623 -0.120447 0.669842 -0.335729 0.119392 -0.140375 -0.120623 -0.012529 0.329783 0.578063 -0.007310 0.027671 1.081673 0.769657 -0.187962 -0.090971 -0.778773 0.326254 -0.678328 -0.517603 -0.245235 0.629438 -0.623577 -0.240845 0.008857 0.669957 0.536773 -0.340144 -0.441294 0.217681 +PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -4.930419 -5.136637 -2.133193 -7.020788 4.365845 8.327787 2.666733 -8.377305 -8.976519 -0.662370 4.413855 -13.154689 -4.805845 10.159733 -4.088502 8.382060 11.751356 0.224136 -5.862208 -3.239603 7.519887 1.278824 14.341110 15.300091 -7.924874 -0.512899 -1.610528 4.697353 2.219811 -1.361275 3.164028 -4.431330 2.549912 -8.627250 -0.734389 -2.592071 -2.457552 4.051121 9.180355 -14.475997 -0.958772 3.571601 1.620521 0.100031 0.263325 2.700212 6.961673 8.113927 1.650153 7.087955 5.457454 -1.056832 5.429535 0.296429 3.106086 0.007555 2.366118 -1.062336 -1.021898 -2.465865 -2.871626 0.634746 1.110693 10.419523 11.747143 1.114653 -5.590175 2.820420 3.776321 2.708605 3.434991 8.411212 -2.760245 4.156754 4.796141 -10.972549 2.743361 -13.632336 2.786427 -10.651647 -6.404320 2.716413 6.347580 4.552439 5.870484 -0.365615 14.865914 -1.202723 -6.898105 9.482473 10.938191 -8.103052 -2.188905 -1.119831 -4.801728 -0.573126 -3.436092 4.031515 2.661240 7.013346 -8.914384 -3.778337 0.303889 1.430958 -5.331784 -4.325992 0.318978 6.978932 -6.094783 -5.972926 -1.306624 7.911777 -1.126903 -15.636583 -5.929973 -7.335989 0.896405 1.172434 -8.142642 -7.742351 4.280934 1.008716 -2.266641 -2.962464 -2.522207 4.946201 7.001561 2.098615 -1.927839 6.671139 2.336432 14.960066 -0.720281 -5.812324 1.647230 2.410357 -1.010746 5.659099 -3.502360 -2.257120 1.700526 -8.993916 1.252250 4.474351 -4.962573 -2.150090 1.538445 1.346083 -1.954499 30.840315 -2.467435 12.053891 10.243100 -8.009611 3.606499 -4.613041 3.454792 3.584334 4.951939 3.388123 -14.231225 -8.313432 9.506203 14.602601 5.039556 -9.550128 -0.242770 4.565373 1.152383 -2.904676 5.322618 1.443217 -0.110681 -3.788987 -0.958939 6.301368 18.066422 -5.401943 -0.116733 2.061876 4.384976 0.196192 -8.210955 -1.996585 -7.692166 -0.345667 4.152685 4.325849 4.588067 10.738433 -11.949462 8.714900 -0.153210 1.592274 9.427787 3.828205 -8.851950 -8.810967 -4.166119 3.471965 7.195028 -2.160568 -2.374850 2.216674 -11.527116 0.735993 3.324189 1.294766 -6.831586 9.978915 -0.017875 -3.865202 -2.774661 2.188194 -3.259891 -3.302835 -3.625425 8.353456 -0.409430 -9.048072 7.287651 3.228429 -4.876159 0.800529 -3.153217 8.905135 -7.184048 -8.053870 5.918039 -4.231993 -4.801109 -3.043618 -2.567743 2.876065 4.511690 3.721852 -10.245528 -6.722863 9.836880 -4.085256 12.450463 5.113455 -3.021667 4.575902 -4.237727 -5.932564 -4.785212 -8.044521 0.927646 3.204883 -7.040025 -3.957233 -2.242431 7.931251 6.684351 0.272258 -7.424465 -0.118028 9.812532 -6.896734 -0.997138 2.509620 1.640427 -8.176020 2.839138 4.439791 -7.310712 4.048011 -6.269124 -2.034910 -7.738473 -5.055056 8.370595 -0.882355 4.055220 -1.829154 -1.251361 1.927484 4.125355 4.856341 1.409163 4.954537 13.069390 4.905540 0.144376 -2.103431 -12.864402 7.189853 -9.714871 -8.976493 2.108812 2.609015 -6.192013 -2.920850 -0.508099 8.870882 6.929571 -7.720707 -5.909042 4.796966 +PE-benchmarks/egg-dropping-puzzle.cpp__main = -0.154814 -0.137859 0.231462 -0.314018 0.519995 0.104550 0.300191 -0.079970 -0.714601 -0.529130 0.331858 -0.920771 -0.722663 0.815724 -0.129455 0.387188 1.007324 0.088594 -0.114239 -0.438821 0.370358 -0.425101 1.137334 1.180329 -0.825934 0.216555 0.073695 0.279508 0.211893 0.218585 0.028958 -0.631442 0.433482 -0.495568 0.072019 -0.308317 -0.234842 0.016755 0.316912 -1.314941 -0.085851 0.328725 -0.179534 0.032282 0.063622 0.924969 0.838628 0.611227 -0.247053 0.994948 0.539031 -0.382986 0.332678 0.094431 0.228441 -0.196074 0.246113 0.113213 -0.432648 0.138791 -0.168651 -0.818936 -0.172395 0.642154 0.938388 -0.258267 -0.367634 0.152617 -0.009721 0.203509 0.300336 0.547848 0.410513 0.071955 0.745306 -0.664931 -0.173979 -1.603407 -0.134577 -2.317758 -0.834783 -0.070202 1.170608 -0.035401 0.210677 -0.092974 1.078980 0.052566 -0.284006 0.636829 1.021749 -0.641011 -0.346146 -0.034464 -0.169154 0.211273 -0.445676 0.213782 0.468957 0.080373 -0.759270 -0.374776 0.561695 -0.108255 -0.437793 -0.326373 -0.114301 0.644807 -1.018331 -0.349274 -0.740183 0.201794 0.226100 -1.165257 -0.017016 -0.031959 0.766791 0.483843 -0.524361 -0.243399 0.334525 0.004808 -0.255650 -0.237653 -0.199977 0.716897 0.359801 0.419997 0.254346 0.465185 0.393462 0.944145 0.652133 -0.349592 -0.040789 0.158948 -0.114254 0.541416 -0.227629 -0.279452 0.386955 -0.611517 0.356014 0.016661 -0.499817 -0.390606 0.396092 0.052684 -0.069321 1.620537 -0.064782 0.904010 0.609431 -0.623513 0.312150 -0.476433 0.042710 0.375440 0.665227 0.320192 -0.536809 -0.496621 0.607455 1.105446 0.438556 -1.217314 -0.213932 0.280148 0.286088 -0.167835 0.478614 0.198119 0.432452 -0.449842 -0.025381 0.455563 1.390738 -0.510231 -0.652097 0.072298 0.191817 0.142700 -0.915657 -0.034826 -0.196090 0.002226 0.271495 0.168210 0.238643 0.869104 -1.842835 0.688687 -0.224891 -0.082306 0.599523 0.442407 -0.673678 -1.176814 -0.115813 0.319795 0.760086 0.378218 0.052955 0.177784 -0.862351 -0.024768 0.124970 0.057036 -0.440336 0.774840 -0.090402 -0.398187 -0.335321 -0.333511 -0.044965 -0.051078 -0.217711 0.584596 0.352864 -1.798238 0.548232 -0.042497 -0.618771 -0.128551 -0.052704 0.787754 -0.654473 -0.848847 0.337769 -0.666891 -1.003922 -0.544001 -0.277112 0.041787 0.132604 -0.049054 -0.296614 -0.717567 1.031263 -0.255051 0.831460 0.521376 -0.194725 1.107728 -0.002470 -0.654834 -0.379887 -0.276285 0.518860 -0.570333 -0.349587 -0.107907 -0.322770 0.479742 0.763156 0.122769 -0.238788 -0.237559 0.760697 -0.972182 -0.302928 0.550965 0.734151 -0.225982 0.853475 0.626017 -0.686742 0.203571 -0.651400 -0.330932 -0.356085 -0.369688 0.544507 -0.311686 0.161455 0.115752 -0.034836 -0.155112 0.375092 -0.017554 -0.045425 -0.155319 0.982461 1.613521 -0.802039 0.125263 -0.860834 0.550203 -0.857583 -0.843863 0.147229 0.340823 -0.474303 -0.191794 0.017151 0.432626 0.423326 -0.810454 -0.621318 0.461078 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -0.224134 0.876906 0.602866 -0.698096 1.006574 0.756009 0.327083 0.001222 -0.650764 -1.092491 -0.365975 -1.068930 -1.540767 1.354747 -0.236839 0.353814 2.259176 0.338787 0.048249 -0.717370 1.052380 -1.018241 2.075699 2.194306 -2.031243 0.373934 1.280210 0.831916 0.460996 1.013975 -0.200704 -1.444305 0.491599 -0.792220 1.008061 -1.203089 -0.232343 -0.328742 0.039695 -3.130174 -0.319507 0.306694 -0.412203 0.046232 0.066625 0.934595 2.372603 1.176541 -0.913862 0.828199 1.076648 0.279044 0.443171 0.153932 0.103230 0.332139 0.376393 0.216784 -0.440592 0.305430 -0.150308 -1.580404 0.105566 1.600600 1.973260 -0.297176 -0.409103 0.533663 -0.080149 0.158883 -0.191736 1.131074 0.672138 0.716918 1.329654 -2.102285 -0.261335 -3.568087 0.023119 -4.317020 -1.551605 -1.439695 0.846413 0.007978 0.794218 -0.065618 2.391862 -0.098578 0.608700 1.263862 2.271576 -1.457093 -0.349828 -1.182812 -0.593480 0.654149 -0.855809 0.079694 0.512199 -0.298348 -1.263975 -1.677222 1.056560 0.089949 -1.090892 -0.925343 -0.495469 1.387234 -1.756130 -0.982571 -2.152469 -0.172736 -0.302183 -2.512414 0.043432 -0.436028 1.205955 0.637441 -0.338524 -1.562474 0.332739 1.169436 -0.360084 -0.997452 -0.324846 1.641403 1.038728 -0.213045 0.511280 0.476936 0.717090 1.852873 1.894955 -0.466990 -0.585016 0.670196 -0.909268 -0.266927 -1.097854 -0.202660 1.068226 -1.319663 -0.118256 0.902034 -0.949610 -0.469526 1.281638 -1.175476 0.813821 4.767835 -0.321029 0.954238 0.556278 -1.764276 1.112579 -0.368029 -0.749895 0.706404 1.454563 1.362916 -2.372783 -1.010961 0.627805 2.099295 0.778113 -1.666869 -0.948455 -0.268763 0.027385 -0.324288 0.656060 0.247401 0.066112 -0.794095 -0.214992 0.908314 2.804411 -1.051808 -1.178461 0.169685 0.875277 -0.466101 -2.143203 -0.129702 -1.331468 -0.257788 0.354952 -0.096990 0.756154 1.788874 -3.556355 1.397098 -0.547181 -0.659082 0.937078 0.221491 -0.472296 -2.293665 0.748519 1.436935 1.519497 0.069471 0.422211 -0.327581 -1.806705 -0.084962 0.297452 0.933512 -1.125652 1.509569 -0.114221 -1.290141 -1.143781 -0.234500 -0.333448 -0.879077 -0.379831 0.738122 0.543181 -3.138949 1.872394 -0.399460 -0.749293 0.510806 -0.447372 1.284956 -1.783126 -2.044920 0.922123 -0.264347 -0.853735 -0.517165 -0.615895 1.094674 0.223344 -0.312091 -0.998818 -2.153707 1.221993 -0.153100 1.148048 1.102718 0.544002 2.198481 -0.111897 -1.079386 -1.316787 -0.701004 0.435599 -0.403748 -0.694668 -1.342288 -0.750972 1.156795 2.531423 -0.147581 -0.161364 -0.394306 1.641301 -2.039054 -0.577025 0.859418 1.143269 -0.638352 0.663121 1.040522 -1.246448 -0.774823 -1.397480 0.095553 -0.086513 -1.223764 0.713082 -1.697259 -0.018724 1.253047 -0.508229 -0.527922 1.050049 0.200996 0.139984 -0.391952 1.660947 2.364977 -1.542389 0.161398 -1.502096 0.892141 -2.249512 -1.388339 -0.158511 0.404036 -0.231167 -0.222409 0.195911 0.774628 0.326521 -0.424587 -0.515146 -0.358846 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__sortedInsert(Node**, Node*) = -0.723203 2.487310 1.490112 -2.958310 3.206756 3.912066 0.476108 -1.436412 -1.814853 -2.015255 -0.561222 -3.458349 -3.249042 3.367262 -1.140469 0.815557 5.039816 -0.477026 -0.511047 -1.283540 2.714934 0.010367 4.921812 5.120438 -4.817642 0.849338 3.306898 1.391303 0.535848 2.515765 -0.675181 -4.930754 0.309576 -1.191886 1.654292 -1.665385 -1.242949 -1.325354 1.585107 -6.739375 -0.687572 0.843265 -2.404648 -0.049339 0.385644 0.140469 6.194832 2.570498 -1.911187 1.294962 2.993659 2.341942 0.417691 -0.167144 0.827541 0.630339 1.795828 0.682434 0.135128 -0.056404 -0.726353 -0.283513 -0.121644 4.455952 4.251876 -0.138370 -1.620494 0.866579 0.268462 0.225181 -1.037666 3.255144 1.117870 3.206102 2.485124 -4.365533 -0.306700 -8.322301 1.134919 -6.920294 -3.433279 -2.156551 0.587651 0.754126 1.943684 -0.434381 6.101528 -0.773280 0.609074 3.349831 5.692248 -2.920254 -0.174282 -2.334459 -2.886600 0.568271 -1.139683 0.925788 -0.847742 -0.412726 -3.149486 -4.242689 1.073902 0.206180 -2.660685 -1.991953 -0.651078 2.816772 -3.187056 -1.526405 -3.332349 1.358200 -0.637116 -6.378919 -3.183831 -1.838448 2.099259 0.498622 -1.790537 -4.565096 1.080254 2.699089 -1.653478 -2.149135 0.286546 3.146603 3.843345 0.009867 0.248861 0.430982 2.484157 4.961946 2.885626 -1.525166 -0.619168 0.592562 -0.693750 -0.609188 -2.025944 0.657618 0.758089 -2.258508 0.475791 3.337709 -1.984098 -1.091582 1.988067 -3.511414 1.033660 14.619788 -1.884741 3.037372 1.407388 -4.677415 1.635561 -0.803238 -2.163444 0.868415 2.637528 4.137609 -6.151296 -2.442980 3.139438 5.395742 1.681534 -3.785132 -0.780602 0.612926 -0.923445 -1.303209 2.158140 -0.184181 -0.229112 -1.793164 -1.083808 2.873074 7.434745 -1.899334 -4.122887 0.641724 3.483138 -0.060379 -2.500440 -0.185081 -3.520751 -0.159318 3.032445 -0.313941 2.946859 4.402720 -9.531018 3.029393 -0.214428 -2.082565 2.409118 1.186622 -1.557404 -2.887178 1.416909 3.724025 3.103363 -0.121943 1.224172 -1.376329 -4.217985 -0.116415 1.179599 1.857631 -3.526887 3.804584 0.625434 -3.841167 -2.452751 -0.499372 -1.488062 -2.034648 -2.298315 1.887631 -0.284310 -7.953048 5.150351 0.746298 -0.731841 0.433805 -2.381892 3.680011 -3.658181 -4.781642 2.465946 -0.895178 -0.942673 0.557399 -1.788274 2.341562 1.746572 2.252752 -4.043096 -5.177494 2.573185 0.277770 3.889145 2.611296 1.481745 3.915382 -2.322758 -1.554353 -3.148880 -3.102439 3.515147 1.553168 -2.542067 -3.164244 -2.092000 2.648443 4.791579 -1.204532 -1.695363 -2.332422 3.091914 -4.177142 0.545536 1.017067 2.264985 -3.255888 0.046889 1.831020 -1.439034 -1.036869 -3.472510 0.387739 -2.349220 -2.991381 1.591773 -2.603721 -0.015326 2.821316 -1.632611 -1.421377 2.032367 0.752721 0.367797 0.545019 2.933485 4.249305 -2.559510 0.373534 -4.161254 2.650090 -5.165886 -4.394060 0.470458 -1.485609 -1.034229 -1.866319 -1.229833 2.453725 0.703585 0.482295 -0.628107 0.290911 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__printList(Node*) = -0.218751 0.442540 0.374217 -0.702148 0.745619 0.669775 0.213079 -0.195280 -0.642684 -0.732097 -0.094380 -1.046009 -0.994552 1.023764 -0.276135 0.350383 1.529546 0.124808 -0.095182 -0.419423 0.713819 -0.431374 1.460318 1.585967 -1.374210 0.232987 0.635580 0.580145 0.221213 0.722203 0.010185 -1.224027 0.198253 -0.410021 0.594962 -0.683128 -0.229195 -0.065549 0.253989 -2.129125 -0.186558 0.512018 -0.161251 0.011743 0.122178 0.312640 1.568386 0.844198 -0.536555 0.616929 0.829932 0.341634 0.363271 0.051194 0.152900 0.116241 0.334364 -0.095970 -0.220892 0.140615 -0.152906 -0.690055 0.038964 1.203776 1.400116 -0.154889 -0.395817 0.214600 0.029628 0.168503 -0.045582 0.868691 0.272501 0.579555 0.794982 -1.223669 -0.053238 -2.380349 0.255240 -2.527667 -1.063821 -0.683926 0.663044 0.536932 0.502231 -0.188706 1.738892 -0.149283 0.158110 0.952431 1.562944 -0.858120 -0.211313 -0.700524 -0.616813 0.377318 -0.525019 0.087767 0.056762 0.079737 -0.917518 -1.030033 0.517508 0.033941 -0.766557 -0.515348 -0.265757 0.910792 -1.159490 -0.607190 -1.148419 0.290951 -0.093139 -1.805951 -0.285673 -0.504696 0.413344 0.321709 -0.437447 -1.010561 0.300188 0.578814 -0.369265 -0.505210 -0.543995 1.053522 0.773590 -0.046324 0.192117 0.325733 0.537940 1.307269 0.803253 -0.483861 -0.260543 0.390212 -0.359127 -0.034886 -0.717014 -0.083911 0.511084 -0.869405 -0.057205 0.583259 -0.648035 -0.341215 0.393946 -0.766707 0.367102 3.559909 -0.316669 0.872628 0.556534 -1.200352 0.781038 -0.188689 -0.408032 0.423148 0.895372 0.931936 -1.497023 -0.760168 0.668380 1.558607 0.553409 -0.979300 -0.464730 0.092740 -0.019283 -0.237029 0.599793 0.099052 -0.025426 -0.578511 -0.201704 0.666213 1.997523 -0.494759 -0.737627 0.134164 0.859998 -0.234957 -1.125260 -0.064600 -1.036959 -0.118947 0.410380 -0.002247 0.644301 1.290843 -2.537044 1.006765 -0.135229 -0.348265 0.720809 0.137163 -0.485672 -1.510296 0.336425 0.905074 1.043432 -0.072438 0.369823 -0.168108 -1.293221 -0.034226 0.231466 0.535473 -0.906919 1.101212 -0.055054 -0.887511 -0.708457 -0.182681 -0.414554 -0.581375 -0.502020 0.613352 0.468742 -1.973407 1.277407 -0.072947 -0.454806 0.204104 -0.401040 0.957533 -1.180943 -1.318864 0.624736 -0.313651 -0.605520 -0.223074 -0.455820 0.654358 0.198977 0.024067 -0.826409 -1.329739 0.890084 -0.115839 0.979511 0.766045 0.224554 1.157152 -0.003151 -0.620244 -0.761088 -0.663352 0.495179 -0.108795 -0.543161 -0.749426 -0.545670 0.778761 1.542734 -0.105301 -0.372330 -0.328987 1.119455 -1.064489 -0.229994 0.480382 0.322933 -0.602712 0.351937 0.654170 -0.785549 -0.296577 -1.086651 0.171891 -0.324893 -0.789888 0.606322 -0.878243 0.060245 0.710936 -0.382980 -0.400719 0.668675 0.268336 -0.028664 -0.047302 1.249444 1.160908 -0.709297 0.209328 -1.190015 0.627156 -1.512426 -1.017232 -0.094297 0.074864 -0.365705 -0.270661 -0.078469 0.668168 0.328952 -0.099201 -0.393302 0.026569 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.098575 0.880534 0.868348 -0.586196 0.935358 0.726713 0.270626 -0.107670 -0.484258 -0.690193 -0.249764 -0.958563 -1.252306 1.078694 -0.224451 0.131055 1.719775 0.127984 -0.049835 -0.593705 0.684196 -0.618786 1.688968 1.691732 -1.620157 0.379838 1.057639 0.602628 0.406792 0.962997 -0.636308 -1.025126 0.385990 -0.458900 0.656747 -0.746941 -0.260815 -0.632959 -0.012964 -2.314280 -0.210881 0.060379 -0.563970 -0.008848 0.074747 1.047076 2.088534 0.886879 -0.606407 0.520761 0.806618 0.101978 0.280033 0.118797 0.301138 0.157361 0.957569 0.466632 -0.421748 0.160715 -0.121464 -1.210112 -0.100402 1.275436 1.470916 -0.128746 -0.329815 0.297592 -0.044666 0.034132 -0.225110 0.839264 0.691950 0.841838 0.995592 -1.399835 0.105632 -2.478992 -0.143974 -3.174163 -1.236741 -1.072164 0.624174 -0.366415 0.578838 -0.064941 1.791931 0.037090 0.497885 0.647667 1.906880 -1.255996 -0.294834 -0.709615 -0.501922 0.414510 -0.606875 0.238451 0.375699 -0.433433 -1.031043 -1.214000 0.958883 0.061674 -0.826165 -0.297274 -0.307629 1.002100 -1.337104 -0.564494 -1.602277 -0.374148 -0.167086 -1.990622 -0.112447 -0.186412 1.315997 0.474533 -0.301032 -1.260095 0.294145 0.983397 -0.364302 -0.741238 -0.275008 1.384030 0.896778 -0.028752 0.413977 0.223526 0.751452 1.350183 1.571469 -0.340761 -0.379587 0.290020 -0.759304 -0.180883 -0.663395 -0.086387 0.637346 -0.896892 0.082941 0.796151 -0.734654 -0.184858 0.960760 -0.740664 0.600954 3.683405 -0.360602 0.813493 0.261939 -1.478625 0.705600 -0.377271 -0.736240 0.403846 1.008407 1.157211 -1.893939 -0.751653 0.638735 1.632486 0.613100 -1.599225 -0.364848 -0.199888 -0.116434 -0.342199 0.564054 0.172402 0.138429 -0.651556 -0.247246 0.769648 2.344103 -0.898330 -1.606325 0.193681 0.176815 -0.087119 -1.463690 -0.065587 -0.477278 -0.073681 0.253659 -0.125270 0.673141 1.395181 -3.081917 1.109419 -0.423429 -0.867451 1.111840 0.148087 -0.439467 -1.212383 0.594510 1.250082 1.140040 0.357515 -0.052527 -0.336073 -1.342562 -0.125470 0.211313 0.650744 -0.849221 1.111077 0.194527 -1.204801 -0.940510 -0.622779 0.019196 -0.484559 -0.494309 0.550008 -0.070015 -3.028050 1.596292 -0.106367 -0.543079 0.216243 -0.509745 0.770403 -1.327661 -1.615004 0.561043 -0.355584 -0.714017 -0.470839 -0.493030 0.663655 0.249982 0.105490 -0.985983 -1.726550 0.986028 -0.169145 0.939294 0.868757 0.555879 1.778460 0.059221 -0.781429 -1.049671 -0.421138 0.696247 -0.280430 -0.672185 -0.695818 -0.685766 0.883433 1.869994 -0.280591 0.064734 -0.590482 1.102849 -1.631983 -0.487433 0.689253 1.088929 -0.651445 0.495260 0.836164 -0.760315 -0.581816 -0.978395 -0.489788 -0.274547 -1.027164 0.460473 -1.191736 -0.038081 1.035996 -0.401001 -0.541210 0.737200 -0.159681 0.077698 -0.232137 1.163235 2.313760 -1.413231 0.290594 -1.182420 0.886989 -1.753125 -1.256776 0.191869 0.031776 -0.230427 -0.307220 0.127812 0.555387 0.160168 -0.521367 -0.331576 -0.123490 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 0.173170 -0.064134 1.120017 -0.684002 0.259856 -0.763703 0.177498 1.235751 -0.970663 -1.260917 0.124376 -0.978957 -1.372860 0.807203 -0.338585 -1.183245 1.414066 0.591339 0.044738 -0.882354 -0.184915 -0.313882 1.045434 1.473758 -1.509574 0.237878 -0.343884 1.107948 0.793045 0.575638 0.902527 -0.932533 -0.082987 1.217899 1.075982 -0.647263 0.013492 -0.156543 -1.721631 -2.235789 -0.081779 1.378654 0.143274 0.186482 0.736159 2.030582 1.071907 0.655641 -0.757484 0.870637 0.946750 0.259156 0.414878 -0.081483 -0.321802 -1.081641 0.359148 -0.533397 -0.768016 0.705624 0.162451 -1.734604 -0.361602 0.872038 1.288643 -0.297031 -0.153989 -1.013414 0.388456 0.555834 0.585282 0.342626 0.954212 0.097402 0.981332 0.757583 -0.260129 -1.861733 0.576514 -4.067712 -1.060508 -0.904473 3.081508 1.004833 -1.341784 -0.959517 1.174631 0.226187 0.454375 1.434710 0.973235 0.578598 -0.512526 -0.688568 -0.482761 1.275519 -0.629669 -0.098823 0.300165 0.956745 -0.682417 0.322951 0.117720 -0.871759 -0.573411 0.917677 -0.419784 0.933282 -1.702064 0.821192 -1.393229 0.837450 1.556087 -1.271195 -0.267093 -0.360758 0.772336 0.566483 -0.158444 1.502467 0.015991 -0.523015 -0.457666 1.366274 -2.410415 1.369713 -0.172995 -0.022915 0.282068 0.856683 0.370895 -0.613220 0.308468 -0.511281 -0.410103 0.843180 -0.222725 -0.114273 -0.876589 0.024466 1.315399 -0.322760 0.496851 -1.008167 -0.668615 -1.392932 -1.511888 -0.367625 0.573763 1.520295 0.136634 0.776091 0.418327 -0.132749 0.571928 0.457903 0.014442 0.664278 0.932080 0.230939 0.821097 -0.402804 -0.133831 1.176888 0.498535 -0.639558 0.540138 0.316108 -0.140373 -0.176232 0.822873 0.151383 0.015632 -0.258167 -0.101634 0.466974 0.513914 0.685613 -1.477889 -0.761164 0.965559 0.097429 0.246458 0.636986 1.073075 0.125971 0.413054 0.061839 0.644866 1.003636 -3.067605 1.016205 0.823666 0.567827 0.154400 -0.281091 -0.264105 -1.904471 0.261046 0.338250 1.391850 0.466288 -0.501993 0.396513 -0.946997 -0.067909 0.353959 0.530816 -0.522354 0.666253 -0.125360 0.120734 -0.488890 -1.571814 -0.340210 0.990140 -0.907681 0.330020 0.459507 -2.442235 0.604409 -0.842003 -0.757006 -0.941991 -0.303100 0.131962 -1.265235 -0.813927 -0.407546 -0.475464 -2.687483 -1.400478 -0.608463 0.372950 -0.508593 0.107546 -0.141617 -0.734161 1.763534 -0.552578 0.615333 0.708466 -0.390845 1.727473 1.519006 -0.298346 -0.084433 -0.482614 1.366508 -1.191143 0.021058 1.444349 -0.479253 -0.198659 1.337554 -0.319583 -0.229627 -0.114855 1.271797 -0.033635 -1.370757 0.409090 -0.777524 0.820964 2.092958 0.678708 -1.437199 -0.166246 -1.600525 -0.235787 0.603160 -0.250348 0.823240 -0.888282 0.267633 0.515988 0.118434 -1.026347 0.606097 -0.304712 -0.804281 -0.200442 1.604023 2.046748 -0.956241 1.562084 -0.991239 0.826302 -1.124329 -0.427966 -0.800506 -0.473353 0.156138 0.405167 -0.629994 0.208247 0.557103 -0.573657 -1.078009 1.245355 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__findCommon(int*, int*, int*, int, int, int) = -3.083396 -2.195663 -1.319768 -4.580951 3.179487 5.781057 1.599138 -4.760680 -5.826670 -2.257632 2.581355 -8.077236 -4.011056 6.934138 -2.639432 5.145529 8.318133 -0.054119 -3.192455 -2.454172 5.985708 0.221612 9.853014 10.365729 -6.665863 0.056219 1.311364 3.030358 2.502439 0.275256 2.379274 -4.817714 2.240391 -5.967697 0.135754 -2.847322 -1.747981 2.107858 5.813302 -10.621835 -0.841758 2.636932 -0.602129 0.085197 0.204216 1.756915 5.848435 5.561059 -0.804966 5.485640 4.825750 0.529079 2.754465 0.046710 1.527525 0.094411 1.052922 -0.117937 -0.275544 -1.490779 -1.862736 -0.896035 0.507991 7.415244 8.316565 -0.340964 -3.477398 2.456501 1.632271 1.784899 1.932167 5.982011 -0.607586 2.689569 4.666479 -8.123622 0.366028 -11.814511 1.619029 -11.099046 -4.659231 0.669212 4.270570 2.128777 4.094201 0.082152 10.629659 -1.446041 -3.843633 7.558271 8.065155 -5.465931 -1.208212 -1.445824 -3.584328 0.361957 -3.148922 2.273514 1.209264 3.214859 -6.069462 -4.429911 0.561538 1.040598 -4.164773 -4.291349 -0.569080 4.852780 -6.254963 -4.161753 -2.638528 4.492725 -0.827632 -11.169476 -5.416792 -4.678414 2.529615 1.082043 -5.055888 -5.810024 2.748101 1.685048 -1.285209 -3.269007 0.745671 3.576458 5.260537 1.967220 -0.699307 3.553660 2.206313 10.742169 2.167391 -3.547994 0.370796 1.599996 -0.794284 3.384374 -2.773683 -1.161137 2.048450 -5.740653 0.960065 3.987653 -3.556361 -2.587583 3.389303 -1.143528 -0.823152 23.110752 -1.506668 7.848223 6.883540 -6.119001 1.346710 -3.114414 1.146917 3.045434 3.994236 3.746280 -9.561073 -5.316718 6.404406 10.117466 3.450408 -7.336583 -0.943684 3.067474 1.268012 -1.831041 3.521287 0.639888 0.716294 -3.674954 -0.843508 4.658603 12.370241 -4.203878 -1.356907 1.280433 4.464013 -0.809813 -6.086458 -1.047993 -5.975299 -0.111437 4.206080 1.851392 3.299817 7.706201 -10.610278 5.812934 -0.484122 0.388985 4.978546 3.432923 -5.678090 -6.775107 -1.512472 2.978518 5.110711 -1.082391 0.698247 1.202977 -8.311452 0.373374 2.204566 1.222146 -5.151479 7.289310 0.423916 -3.194376 -2.867200 1.738509 -1.965216 -2.847928 -2.161995 5.528014 0.080796 -8.675191 5.739210 1.399356 -3.437664 0.402342 -1.873900 7.171657 -5.945241 -6.839120 4.786281 -2.959816 -3.886836 -1.686073 -2.052791 2.683107 3.931507 2.095733 -6.643601 -6.183351 6.624869 -2.081866 8.243694 3.884450 -1.285933 5.243195 -4.811122 -3.432018 -4.725676 -4.585378 1.830364 1.387526 -4.754977 -5.003885 -1.825078 5.454815 5.905275 -0.411392 -4.692793 -0.758202 6.897027 -6.613653 -0.273925 1.926306 4.571686 -5.555319 2.619429 3.216199 -4.986789 2.018146 -4.944488 -0.751394 -4.828176 -3.860634 5.788814 -1.701445 2.482160 0.496770 -0.947687 0.365102 3.072331 3.160067 0.739222 2.282977 8.000786 6.243374 -1.914989 -1.539362 -8.685187 4.612520 -7.665061 -7.138496 1.350413 1.063253 -3.757180 -2.258198 -0.780832 6.227265 4.911183 -4.069790 -3.512262 2.867943 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = 0.205817 0.800397 0.911367 -0.151840 1.005045 0.338041 0.466822 0.914356 -0.850630 -1.184330 -0.162054 -1.667683 -1.994305 1.261776 0.125705 -0.300989 1.922367 0.316648 0.095218 -0.395690 -0.145170 -0.547007 1.645289 1.779674 -1.376027 0.750075 -0.102330 0.247588 -0.440136 1.355377 -0.259196 -1.931677 0.455413 0.405639 0.743226 -0.350935 -0.699403 -0.730358 -0.850238 -2.744522 -0.254817 1.792478 -0.228878 -0.072701 0.521566 1.389022 2.376351 0.758865 -0.273274 1.102317 0.183893 -0.437205 0.841630 0.090381 0.615278 -0.242556 0.545705 -0.281539 -1.268420 0.641232 -0.315468 -1.836704 -0.867784 0.910296 1.263567 -0.341576 -0.758204 -0.504617 -0.363125 0.254774 -0.105089 0.915920 1.470687 0.471344 1.167744 0.504345 -0.308330 -1.236876 0.067735 -3.818084 -1.736054 -0.963300 2.379134 1.096846 -0.142749 -1.283321 1.915465 -0.344416 0.439233 0.751799 2.135412 -0.803053 -0.584697 -0.594919 -0.011547 0.550389 -0.533287 -0.175044 0.641830 -0.523796 -1.342197 -0.506711 0.977600 -0.537926 -0.789775 0.432767 -0.350078 1.219725 -1.809675 -0.058169 -2.199133 -0.037584 0.794198 -1.824678 -0.276799 0.795825 0.057706 1.318705 -0.822021 -0.205006 0.800632 -0.011008 -0.620513 -0.072456 -1.235256 1.924487 0.117944 0.090965 0.821964 1.025911 0.977729 0.796625 1.341004 -0.203158 -0.091511 0.505579 -0.069924 0.208920 -0.083032 -0.330504 0.022329 -0.852360 0.211419 -0.182691 -0.969255 -0.231653 -1.561321 -0.389464 0.280896 2.204971 -0.573099 1.091340 0.162875 -1.205371 1.334198 -0.335829 -0.777834 -0.031802 1.265625 1.300469 -0.332829 -0.491851 0.830050 1.948856 0.683444 -1.381199 0.598186 0.152245 0.271528 -0.451001 1.312207 0.298003 1.126280 -0.781525 -0.121947 0.587216 2.422626 -0.709208 -2.274127 -0.025902 0.127854 0.888236 -0.743646 0.333793 0.174722 -0.265392 0.286129 -0.165337 0.438884 1.409226 -2.770796 1.474276 -0.245503 -0.899789 1.349136 0.063046 -0.413756 -1.368234 -0.019193 1.127603 1.701319 1.009217 -0.476227 -0.637666 -1.331402 -0.204215 0.266715 0.571668 -0.776937 1.394609 -0.479600 -0.914760 -0.613201 -1.813208 -0.089610 -0.039844 -1.074521 0.521062 1.132069 -2.956920 1.376144 0.150648 -0.763991 -0.565218 0.044017 0.477921 -1.071509 -1.717999 0.114679 -1.184499 -2.484392 -0.508215 -0.967316 0.057816 0.354735 -0.357520 -0.362474 -1.432590 2.291960 0.253727 1.494083 1.080847 0.086774 2.104618 1.933473 -1.399154 0.082009 -1.206067 1.411771 -1.384101 -0.128365 0.247281 -1.045436 0.547886 1.727397 0.070107 -0.151523 -1.443335 1.183120 -0.975150 -0.582888 1.131293 -0.311056 0.131685 1.259387 1.329702 -0.784195 -0.262191 -1.522650 -0.330188 -0.495909 -0.624545 0.223941 -1.483335 -0.352489 1.019277 -0.709608 -1.025889 0.340925 -0.452335 -0.746310 -0.562987 1.606372 1.860682 -1.769604 1.468284 -1.147878 1.191765 -1.485542 -0.922388 -0.225919 0.189674 -0.495071 -0.506470 0.166008 -0.091578 0.268624 -1.258988 -1.137592 0.523194 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -1.773123 -1.287185 -0.220661 -2.494205 1.855536 4.129329 1.262232 -3.394397 -3.430278 -1.005757 1.868714 -5.800889 -2.665625 4.400194 -1.757872 3.497654 5.147092 -0.077071 -2.551917 -1.384499 2.901842 1.482403 6.645308 6.513722 -3.896093 0.158025 -0.442934 1.165673 1.664658 -0.121923 0.951855 -2.442437 2.209503 -3.147631 -0.316289 -0.844600 -1.147345 0.678066 3.490994 -6.329440 -0.300811 1.791946 0.379414 -0.202930 0.348008 1.654730 3.955485 3.579677 0.906494 2.884839 2.244085 -0.002903 2.150938 0.253225 1.286279 -0.324549 1.638378 -1.669691 -0.865550 -1.304765 -1.033852 -0.667197 -0.517885 4.605164 5.029558 0.207601 -2.134089 1.288582 1.515538 1.112674 1.304269 3.524399 0.039397 2.276178 2.073312 -4.164777 1.063050 -4.532615 0.353029 -5.315173 -3.163925 0.572953 2.952989 2.289944 2.654475 -0.825024 6.246881 -0.535100 -2.462010 2.975637 5.308270 -4.175013 -1.041480 -0.419722 -0.975265 -0.012366 -2.144118 1.969473 0.532923 1.633391 -4.042908 -1.745876 0.658042 0.670022 -2.482161 -1.304111 0.117950 3.041020 -3.504819 -2.371725 -1.131752 2.451093 -0.433992 -7.074278 -1.948028 -2.297419 0.890318 1.019998 -3.046434 -3.548622 1.776605 0.845315 -0.795001 -2.142244 -1.579786 2.770455 3.252038 1.266451 -0.345261 2.877241 1.684929 6.790561 0.850155 -2.121372 0.621965 0.497604 -0.379608 2.535843 -1.089498 -0.979984 0.264524 -3.805561 0.420564 2.800022 -2.234646 -0.541729 -0.165850 0.542890 -0.553379 12.185613 -1.115434 5.151870 4.279010 -3.941476 0.931550 -2.698081 0.608786 1.169483 1.930241 2.247426 -5.981276 -3.384494 4.102706 6.351208 2.230690 -4.391860 1.077971 1.725099 0.574830 -1.968856 2.412449 0.862916 1.051060 -2.634683 -0.528071 3.141070 8.053281 -2.866003 -0.461788 0.949682 0.683160 0.773783 -3.106002 -0.908048 -2.016487 0.073718 2.345566 1.762802 1.733758 4.746196 -4.359531 3.952732 -0.209750 -0.320803 4.415216 1.638923 -3.937939 -1.959855 -1.214942 2.064578 3.017972 -0.535909 -0.623063 0.652864 -5.131963 0.009009 1.168980 0.411907 -2.696915 3.893454 0.975614 -1.847629 -1.653394 0.217909 -0.299531 -1.566798 -1.757987 3.548911 0.505832 -4.755609 3.698293 1.176758 -2.505234 0.079582 -1.706953 4.165195 -3.391252 -3.444027 2.426171 -2.366054 -2.954139 -1.417721 -1.105889 1.171149 2.032205 2.078828 -4.422186 -3.223571 4.446434 -1.169899 5.091681 2.424674 -0.640478 2.526294 -1.392360 -2.266029 -2.127461 -3.741407 0.793211 0.870229 -3.327449 -1.391949 -1.311787 3.614378 3.507806 -0.586626 -3.052882 -0.754044 3.517096 -4.510463 -0.456968 1.478769 2.402806 -3.682553 1.402002 2.192247 -2.865398 1.452577 -2.486437 -1.475121 -3.284042 -2.705840 3.368133 -0.696774 1.798446 -0.058321 -0.507827 0.106637 1.674789 1.202280 -0.070784 1.575297 5.174908 3.344538 -0.924097 -0.505060 -5.535494 3.492658 -4.623827 -4.458942 1.726121 0.571559 -2.771453 -1.445543 -0.230431 3.743664 2.882902 -3.484948 -2.695371 2.032140 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.014214 0.099175 0.344230 -0.162148 0.118398 -0.286523 0.071859 0.219739 -0.227687 -0.527751 0.072105 -0.579289 -0.545874 0.318274 -0.167105 -0.268509 0.438553 0.052718 0.020992 -0.251805 -0.091748 -0.229154 0.400562 0.442490 -0.440487 0.044099 -0.050737 0.268822 0.142541 0.219257 0.224994 -0.444613 0.008095 0.353784 0.374026 -0.014506 -0.001451 -0.134624 -0.473744 -0.592044 -0.060371 0.514428 0.218128 0.012451 0.136553 0.590443 0.482556 0.237960 -0.129591 0.199731 0.268641 -0.021907 0.177278 0.000510 0.034708 -0.442390 0.262906 -0.283626 -0.366831 0.200220 -0.022354 -0.570922 -0.199976 0.348218 0.436400 -0.065189 -0.034647 -0.231353 -0.043987 0.198954 0.100035 0.142578 0.309771 0.197642 0.282336 0.198719 0.044828 -0.530871 0.065169 -1.372842 -0.346610 -0.256826 0.791410 0.428182 -0.317244 -0.237318 0.413773 0.165796 0.097287 0.311684 0.544541 0.071303 -0.223266 -0.171955 -0.127770 0.293547 -0.257128 0.026430 0.144288 0.282059 -0.289211 0.137912 0.101689 -0.202259 -0.134788 0.318832 -0.126006 0.234582 -0.601899 0.225913 -0.482613 -0.000923 0.485923 -0.535064 0.099960 0.026228 0.093403 0.240104 -0.136746 0.300869 0.110932 -0.101047 -0.147512 0.343855 -0.920534 0.473146 -0.088632 0.107589 0.119465 0.311286 0.250431 -0.087687 0.127174 -0.134682 -0.101302 0.107293 -0.133557 0.010974 -0.107425 -0.106837 0.361316 -0.165142 0.133347 -0.262978 -0.221544 -0.382046 -0.585218 -0.169958 0.200487 0.318806 -0.080141 0.288196 0.059970 -0.192769 0.220315 -0.007446 -0.085202 -0.012913 0.272008 0.199418 0.380804 -0.175908 0.215116 0.433676 0.163154 -0.180740 0.207799 0.147132 0.042247 -0.078832 0.253829 0.141642 -0.007258 -0.154967 -0.063983 0.183856 0.297142 0.115521 -0.350962 -0.100825 0.163367 0.214005 -0.015504 0.185625 0.278593 0.079959 -0.052701 0.038401 0.152156 0.379845 -0.980506 0.392894 0.233301 0.091748 0.227806 -0.180759 -0.149207 -0.776208 0.090140 0.276157 0.337513 0.187241 -0.127619 -0.011657 -0.309190 -0.019361 0.012215 0.218802 -0.164237 0.211911 -0.115009 -0.118695 -0.310946 -0.537359 -0.060410 0.244903 -0.308727 0.113194 0.353770 -0.768911 0.395543 -0.173599 -0.216201 -0.409099 -0.041439 -0.015137 -0.434880 -0.325475 -0.182868 -0.443041 -0.871875 -0.385184 -0.208855 -0.052432 -0.196078 -0.114778 -0.000316 -0.147721 0.574170 -0.161787 0.269078 0.184426 0.021644 0.520431 0.658959 -0.148298 0.056720 -0.051800 0.290611 -0.531207 -0.063209 0.524230 -0.105816 0.035701 0.396070 -0.124495 -0.036720 0.018783 0.274448 0.030227 -0.459063 0.193190 -0.360800 0.097637 0.543178 0.243296 -0.356984 -0.054814 -0.562670 -0.150332 -0.034453 -0.217046 0.059214 -0.299926 -0.014737 0.223938 -0.063906 -0.357035 0.122355 -0.089207 -0.260184 -0.068093 0.502145 0.555816 -0.348403 0.478590 -0.435724 0.226153 -0.438619 -0.315856 -0.078423 0.051803 0.011315 0.002152 -0.099183 -0.002552 0.143173 -0.276035 -0.367797 0.379196 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -2.626291 -1.514412 -0.692737 -3.983442 2.997197 5.270529 1.593987 -4.234803 -4.919341 -2.602105 2.685811 -8.184506 -4.699432 6.330247 -2.614913 4.062190 7.518461 -0.584155 -2.866243 -2.564948 4.772231 1.174623 9.546457 9.676967 -6.637369 0.134952 0.985682 2.442883 2.776097 -0.392396 2.492640 -4.761746 2.694141 -4.448846 0.228021 -1.608280 -1.573126 0.819560 4.598819 -9.583327 -0.942707 2.556838 -1.107679 0.163192 0.424808 3.163004 6.093501 5.243372 -0.657668 4.997840 4.523106 0.399678 2.532536 0.044200 1.141956 -1.493350 1.126052 -0.810911 -0.701902 -1.431990 -1.469697 -1.381291 -0.590295 7.048156 7.806760 -0.371262 -3.126356 2.089211 1.588296 1.747023 1.595923 5.592614 0.805777 3.252074 4.500496 -6.339475 0.161643 -10.215080 0.993695 -11.300069 -4.708618 0.317900 4.854811 1.995271 3.087914 -0.800280 9.759565 -0.316589 -3.408051 6.789935 8.043043 -5.010426 -1.336519 -1.139470 -2.611898 0.614227 -3.285689 3.058493 1.102550 2.745118 -5.874381 -3.386169 0.314677 0.346527 -3.900500 -3.348945 -0.527867 4.293315 -5.951448 -2.749921 -2.732421 3.655767 0.175422 -10.805221 -4.691762 -3.503374 3.064385 1.303870 -4.348768 -4.384005 2.288599 1.086124 -1.168318 -2.628647 -0.535906 3.767940 5.209243 2.247307 -0.291429 4.083993 2.833314 9.706514 1.906377 -2.992109 0.140025 0.926594 -0.497486 3.434957 -2.109604 -0.745029 2.344537 -5.022124 1.493011 3.526619 -3.248992 -2.781785 1.952361 -1.062279 -0.649715 20.156308 -1.346417 7.452998 6.298872 -5.678094 0.677760 -3.669715 0.672749 2.560273 3.525605 3.698758 -7.812971 -4.773808 6.203734 9.515591 3.074983 -7.233353 0.699655 3.323509 1.097613 -2.927306 3.531064 0.945275 1.143135 -3.337807 -0.725724 5.165127 11.059500 -3.894392 -1.628607 0.997655 3.861999 0.690798 -4.482768 -0.755903 -3.591989 0.055158 4.456135 2.229173 3.016222 7.146919 -9.783338 5.262993 0.378260 0.432544 4.606140 3.218506 -5.703299 -5.411787 -0.822019 3.133164 4.216783 -0.401094 0.402616 0.851586 -7.680311 0.267035 2.195524 0.946671 -4.476658 6.419403 0.677501 -2.618159 -3.034558 0.521403 -1.437401 -1.716127 -2.482982 5.151207 0.320374 -9.252011 5.664267 1.028171 -3.759816 -0.798776 -2.605157 6.795753 -5.816142 -6.186464 3.836931 -3.877249 -5.130650 -2.042292 -1.968183 1.780802 3.254807 2.714164 -6.217203 -5.437239 7.024980 -1.766864 7.503785 3.708264 -0.765714 5.504797 -4.375210 -3.400315 -4.017365 -5.008639 3.003060 1.016369 -4.862331 -2.652456 -1.715137 4.704597 5.572906 -1.095551 -4.526965 -0.781267 5.543774 -6.681485 -0.849653 1.869767 5.013647 -5.018757 3.200160 2.976685 -4.372516 2.053559 -4.867740 -1.507488 -4.667947 -4.113099 5.018470 -1.613931 2.293628 0.778522 -0.819197 -0.094120 2.921716 2.090738 0.340100 2.028684 7.202568 7.119698 -2.591372 -0.957365 -8.500427 4.834408 -7.305574 -7.381928 2.050892 0.249366 -2.972761 -2.353023 -1.117454 5.331439 4.561226 -4.700268 -3.997315 3.561945 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = 0.074846 0.476395 0.631338 -0.131661 0.863505 0.296289 0.436306 0.591469 -0.799512 -0.852836 -0.082977 -1.263423 -1.446906 1.118261 0.102682 0.069518 1.656770 0.366260 0.042659 -0.330100 0.062225 -0.638530 1.429811 1.511905 -1.060700 0.577327 -0.039794 0.179918 -0.378216 1.120055 -0.367409 -1.460389 0.514191 -0.062781 0.470928 -0.465019 -0.546337 -0.399903 -0.383106 -2.249955 -0.150568 1.222338 -0.159149 -0.082232 0.305940 1.082844 1.808386 0.674518 -0.171135 1.040746 0.151728 -0.464909 0.654644 0.148955 0.590990 0.082556 0.417888 -0.100878 -1.041139 0.469663 -0.325160 -1.507159 -0.573227 0.716431 1.073859 -0.300413 -0.594886 -0.227798 -0.335191 0.187867 0.031989 0.707360 1.045141 0.208567 0.947089 -0.007027 -0.272881 -1.210415 -0.101043 -3.164695 -1.385657 -0.692353 1.788858 0.616452 0.135564 -0.834748 1.566672 -0.335377 0.250682 0.530515 1.721438 -0.906158 -0.520990 -0.432615 0.032120 0.343682 -0.467760 -0.192716 0.680690 -0.512673 -1.125612 -0.568622 0.975087 -0.273921 -0.617634 0.094493 -0.240798 1.080095 -1.508691 -0.355953 -1.760806 -0.053025 0.404603 -1.485122 -0.029181 0.577395 0.210340 1.080619 -0.736497 -0.434756 0.710549 0.150012 -0.485428 -0.307811 -0.655939 1.525817 0.110396 0.123602 0.659438 0.743870 0.664684 0.937402 1.255495 -0.229666 -0.036235 0.425877 -0.163492 0.273268 -0.135323 -0.413313 -0.001373 -0.850126 0.153010 -0.039735 -0.833450 -0.069368 -0.744249 -0.146312 0.201303 1.891410 -0.440223 0.945119 0.226242 -1.061166 1.092284 -0.366570 -0.495327 0.042611 1.094184 0.928591 -0.570617 -0.497554 0.681761 1.586209 0.632844 -1.305277 0.164882 -0.022532 0.324302 -0.227277 0.936560 0.279923 0.921905 -0.716054 -0.081685 0.382153 2.195337 -0.775741 -1.684927 0.081481 -0.029215 0.532158 -0.996477 0.120553 -0.124621 -0.206407 0.128595 -0.131548 0.300966 1.213004 -2.254886 1.234645 -0.495273 -0.772306 1.170342 0.182171 -0.398078 -1.255154 -0.138754 0.864762 1.472448 0.799178 -0.270167 -0.375633 -1.125861 -0.163807 0.140903 0.446821 -0.604674 1.138113 -0.349936 -0.849192 -0.464144 -1.221495 -0.010947 -0.227661 -0.665065 0.495798 0.939142 -2.456389 1.066158 0.147545 -0.645853 -0.187138 0.199808 0.538450 -0.854006 -1.451822 0.259897 -0.863693 -1.755994 -0.426162 -0.687030 0.134077 0.278547 -0.394370 -0.261602 -1.253373 1.754286 0.154741 1.245831 0.853049 0.005484 1.729894 1.331883 -1.199335 -0.071905 -0.858037 0.873905 -1.168125 -0.115464 -0.053196 -0.803849 0.625090 1.409953 0.235305 -0.100766 -1.082451 1.093344 -1.033199 -0.359961 1.043346 0.076811 0.027974 0.961626 1.177797 -0.765672 -0.226289 -1.065257 -0.284387 -0.402925 -0.491159 0.269574 -1.156202 -0.200454 0.681288 -0.473530 -0.688739 0.299730 -0.276032 -0.469265 -0.487809 1.377975 1.645210 -1.433122 0.956929 -0.898062 0.907723 -1.223275 -0.776915 -0.143590 0.400332 -0.576702 -0.338575 0.277450 0.076141 0.216814 -1.042431 -0.857704 0.245187 +PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -13.960236 -12.779935 -8.925210 -19.777345 14.125208 32.776415 7.455362 -31.804677 -23.000793 3.794907 16.276612 -41.479786 -13.742608 27.379867 -13.768382 24.155080 28.573363 -6.355487 -20.557177 -8.728974 19.643280 16.916600 44.442095 42.322096 -21.808586 -1.596317 -5.887770 13.485183 6.925000 -11.900481 10.651294 -7.966885 8.721694 -26.157712 -12.306292 2.676576 -7.336412 4.255812 29.472143 -34.042877 -3.718832 2.932007 -3.974186 0.761805 -1.213553 3.803627 20.930394 23.175000 11.029170 17.961404 14.497889 -2.828351 14.191782 0.693346 9.384014 -6.217623 9.223987 -5.987961 -1.081542 -13.864284 -6.631639 8.207067 -2.158800 31.155959 30.403100 7.938104 -17.138661 11.551654 10.392872 7.263422 8.411571 25.222544 -11.362984 20.835574 11.790865 -26.741269 12.004949 -23.787499 4.715684 -11.978176 -16.915827 11.779845 14.440641 10.518678 18.570402 6.251538 41.046557 0.608112 -23.096964 28.226912 31.585789 -24.414352 -5.622499 2.759268 -12.603588 -3.624222 -8.368742 20.807870 1.615280 24.409200 -25.938029 -5.636376 -4.291281 4.555696 -15.122581 -11.335674 3.166510 15.493222 -14.407360 -12.829470 4.675156 22.827761 -3.657228 -46.373107 -32.635478 -16.529819 11.328598 0.617112 -22.194746 -23.213739 10.971916 1.991460 -2.968732 -8.168771 1.397510 4.487202 25.004216 9.629037 -6.222652 23.097230 11.615583 49.661496 -7.917512 -12.830888 6.868530 0.384470 3.275783 20.230892 -0.719815 -2.542577 -6.865590 -24.897305 13.123234 20.186290 -11.919835 -9.808320 -3.244275 7.844116 -8.808579 89.796655 -5.794229 36.924446 31.925067 -23.468052 -5.228462 -22.909685 9.004695 8.225978 6.827066 9.575910 -37.227945 -22.979043 31.358907 41.499605 12.660268 -29.123263 12.541430 17.925087 1.226423 -13.587471 15.377334 4.774904 1.699887 -7.550412 -2.877832 26.312244 50.263901 -16.337072 -2.994704 9.777814 6.160622 8.163754 -12.819357 -6.312383 -9.310857 0.454900 20.918645 16.147873 11.412964 28.985736 -21.766537 21.475243 5.710872 6.190348 27.145352 15.408419 -29.843299 -3.397561 -13.040207 10.870989 13.117059 -6.724366 -14.120183 4.198277 -31.415791 1.538098 15.280210 -1.111722 -17.133743 28.062053 5.121445 -9.969194 -9.223963 7.571769 -5.016107 -1.022493 -12.532982 25.356000 -15.690663 -27.438298 21.721127 13.222129 -16.048199 -2.367842 -17.267681 28.178815 -18.501275 -21.649070 17.375920 -16.861157 -15.163299 -4.153214 -6.225052 3.361971 22.463263 21.712361 -35.444779 -8.790958 28.155916 -9.259960 35.148177 14.326683 -6.049426 10.339726 -29.742392 -17.740546 -11.996922 -26.511313 10.027656 16.912476 -25.934916 -4.421003 -6.075764 22.427969 14.537718 -2.980654 -27.295151 -0.221191 22.132622 -20.502857 -4.224910 3.932777 12.609782 -30.930317 7.002270 9.621368 -14.592992 17.158454 -13.370433 -12.099798 -28.676717 -17.923695 22.820349 3.765321 13.715511 -5.020934 -3.147030 8.122161 11.690963 9.586279 9.824786 19.306840 31.527547 12.737977 1.579683 -9.414029 -39.502094 23.339449 -26.438950 -32.008993 16.215784 2.364217 -14.048427 -12.590826 -7.081225 25.726500 21.684284 -30.227193 -17.184566 18.683385 +PE-benchmarks/boolean-parenthesization-problem.cpp__main = 0.078975 0.462623 0.834686 -0.302880 0.638652 0.091684 0.286328 0.456938 -0.666008 -0.893694 0.051070 -1.614981 -1.501680 0.922873 -0.094266 -0.381088 1.274379 0.055551 -0.035403 -0.401657 -0.165668 -0.044108 1.235275 1.322062 -1.044699 0.428180 -0.357224 0.384688 -0.109285 0.740579 0.109664 -1.381863 0.128258 0.642010 0.518362 0.065664 -0.424758 -0.469034 -0.631432 -1.793880 -0.190544 1.529990 0.036219 -0.068185 0.456272 0.845154 1.644874 0.594142 -0.066970 0.634637 0.285406 -0.185436 0.697037 0.022874 0.433683 -0.618669 0.665324 -0.639703 -0.871749 0.391827 -0.200144 -1.062181 -0.711774 0.816294 1.006155 -0.055214 -0.586912 -0.538246 -0.114003 0.255115 0.034001 0.713182 1.038282 0.616745 0.819341 0.723489 0.046177 -0.822385 0.233263 -2.293084 -1.207303 -0.494824 1.836255 1.139321 -0.314282 -0.961343 1.369467 -0.101522 0.119173 0.677043 1.563717 -0.321667 -0.416960 -0.319915 -0.226884 0.443612 -0.418001 0.140497 0.023945 0.147453 -0.966079 -0.185917 0.497169 -0.502193 -0.562150 0.634935 -0.178060 0.707992 -1.149915 0.237496 -1.281472 0.200047 0.852265 -1.250642 -0.533824 0.317116 -0.105154 0.786408 -0.641215 0.154637 0.524779 -0.324716 -0.505775 0.286963 -1.580314 1.219889 0.151492 0.150278 0.378913 0.844155 0.787312 0.414078 0.288494 -0.267084 -0.000272 0.241489 0.074300 0.242953 -0.056957 -0.147235 0.154788 -0.294910 0.007990 -0.284252 -0.640734 -0.434756 -1.658568 -0.303209 0.125372 1.402215 -0.346552 0.772204 0.267167 -0.714410 0.789202 -0.212508 -0.435495 -0.102551 0.737295 0.925024 0.091625 -0.487753 0.794006 1.393470 0.458489 -0.723872 0.789784 0.464325 0.202191 -0.460625 1.048206 0.215827 0.619802 -0.539490 -0.117780 0.547710 1.538443 -0.211445 -1.533136 -0.023716 0.222748 0.855067 -0.063375 0.322129 0.540695 -0.122162 0.202363 0.074691 0.437822 1.048145 -2.040794 1.043946 0.280720 -0.364723 0.978108 -0.142064 -0.484078 -0.771140 -0.021440 0.762795 1.044282 0.731776 -0.372423 -0.427050 -0.985967 -0.102057 0.179360 0.362821 -0.585206 0.985275 -0.355202 -0.540971 -0.502903 -1.477689 -0.227967 0.260222 -1.011801 0.447691 0.877635 -1.826120 1.036876 0.191531 -0.434109 -0.752145 -0.265772 0.310864 -0.825734 -1.064010 -0.086298 -1.162382 -1.989045 -0.449250 -0.651744 -0.172615 0.157765 0.016353 -0.472849 -0.625721 1.830234 0.080294 1.134899 0.733521 -0.012069 1.092291 1.604129 -0.813407 0.245218 -0.810517 1.136968 -0.774589 -0.253522 0.629719 -0.688045 0.269237 1.080316 -0.209323 -0.284526 -0.955816 0.744754 -0.436142 -0.642502 0.636815 -0.632352 -0.015463 1.000644 0.801302 -0.504257 0.015435 -1.256524 -0.369486 -0.540625 -0.514898 0.218710 -0.809163 -0.196663 0.680804 -0.567756 -0.800097 0.217948 -0.275416 -0.725522 -0.168559 1.268256 1.174628 -0.910863 1.193715 -1.062762 0.828610 -1.044122 -0.747437 -0.034472 -0.226576 -0.453939 -0.433991 -0.099489 0.019174 0.405767 -0.781723 -0.983952 0.753431 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__kthSmallest(int*, int, int, int) = -2.045451 -2.406203 -1.368409 -3.045130 1.797200 2.647873 1.288274 -3.481563 -3.880608 -1.481416 2.411888 -5.425939 -2.258023 4.474201 -1.620197 3.951674 5.203795 -0.232801 -1.894335 -2.418985 3.391914 0.764815 6.424059 6.839110 -4.140150 0.011457 0.430184 0.542720 2.312526 -1.440560 2.069547 -3.269728 2.359200 -3.672352 0.323227 -1.283004 -1.367366 1.706014 5.061349 -6.393705 -0.376519 1.339861 0.449226 0.164698 0.389586 3.109597 2.969707 3.621372 -0.418506 4.576864 3.422609 0.128665 1.815463 -0.002302 0.950752 -0.614978 0.372307 -0.445067 -0.027191 -0.654927 -1.129662 0.443707 -0.023260 4.547617 5.445501 -0.901999 -2.510134 1.701268 2.140490 1.391408 1.646182 3.960098 0.573513 1.140773 2.748448 -5.950271 -0.677750 -9.186084 0.805639 -9.453881 -3.242625 1.407576 3.442350 -0.053902 2.294829 -0.615797 6.540917 0.086833 -3.350629 3.838017 4.776513 -3.325842 -0.865608 0.057853 -1.323084 -0.026722 -2.046850 2.306953 2.116472 1.700759 -4.036975 -2.325374 0.606121 0.077662 -2.598972 -3.221738 0.183982 2.907065 -3.277245 -2.324872 -1.079087 3.538979 -0.103446 -6.982740 -1.003373 -3.288630 1.616403 0.699151 -3.582413 -2.866682 1.559760 0.005100 -1.493968 -2.022243 -0.275261 2.498005 4.046086 2.093593 -0.607769 2.844980 1.401692 7.142956 0.615935 -2.959093 0.453935 0.820814 -0.054625 3.063927 -2.152605 -1.000039 3.020292 -3.332516 1.320940 1.534699 -2.178174 -1.573757 3.900847 -0.300746 -1.283619 12.764966 -1.064970 5.597977 5.051040 -3.298323 0.492875 -2.649468 1.488119 2.064277 3.005215 1.678819 -5.329366 -3.452379 4.307184 6.526866 2.157918 -5.489132 -1.037729 2.590423 0.776017 -1.952137 2.298009 0.359671 0.738175 -2.228703 -0.277577 2.819568 7.561706 -2.693470 0.916381 -0.079621 4.201030 0.352973 -3.502372 -0.817656 -4.164214 0.254800 2.650587 2.232200 2.311915 4.657314 -7.763776 3.434995 -0.327717 0.881530 2.850343 3.208158 -4.453753 -5.685490 -1.069252 1.060374 3.037531 -0.739669 1.839800 1.592740 -5.284197 0.398457 0.690846 0.107518 -3.291509 4.040113 0.382637 -1.253862 -0.890353 1.805196 -1.163733 -1.918787 -0.840707 3.890997 2.085770 -6.414173 2.824966 0.584320 -2.656791 -0.070595 -1.529563 5.558817 -3.496157 -3.038006 2.606152 -2.443072 -2.386626 -1.558261 -1.230317 1.247679 0.586079 2.810102 -3.854818 -3.665348 4.729534 -1.767078 5.511918 2.460118 -1.640445 3.119124 -4.739975 -2.217338 -2.711616 -3.602703 1.156905 1.019415 -3.149991 -1.302771 -0.910859 3.183702 3.045151 -0.239325 -3.416313 0.106598 3.528995 -5.664541 0.784958 1.162077 4.382598 -3.116188 2.422135 1.880354 -3.458374 2.206461 -2.975909 -0.925953 -3.222018 -2.025222 4.186212 -0.212815 1.898966 -1.099416 -0.231472 0.776949 2.171154 1.877336 0.039324 1.609641 4.803161 5.324159 -1.228463 -1.721058 -5.759752 3.035280 -4.296473 -4.795369 1.083491 0.293775 -3.254600 -1.489775 -0.989394 4.130481 3.226650 -2.767959 -3.337676 2.905271 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -0.712876 -0.353527 -0.161951 -0.884248 0.987970 1.551250 0.660429 -1.187230 -1.310310 -0.706809 0.881738 -2.617656 -1.735722 1.983610 -0.729611 1.163032 2.415780 -0.069776 -0.722106 -0.968211 1.212317 0.368685 3.290012 3.134145 -2.182552 0.161603 0.180420 0.646224 0.916533 -0.210687 0.520210 -1.371093 1.220299 -1.456072 -0.159959 -0.525653 -0.373217 -0.068119 1.304398 -3.034693 -0.284436 0.631988 -0.490824 0.107157 0.184580 1.701166 2.164878 1.649479 -0.247656 1.805494 1.231776 -0.320702 0.871958 0.179517 0.363746 -0.680417 0.599081 -0.088008 -0.608860 -0.532583 -0.373866 -1.031553 -0.599226 1.915654 2.334170 -0.037705 -0.962380 0.709250 0.365305 0.427431 0.494473 1.696559 0.747592 1.131139 1.577580 -1.520723 -0.175508 -2.837855 -0.167747 -4.020148 -1.610522 -0.098236 1.933826 0.130584 0.975692 -0.230099 2.920071 0.253703 -0.941825 1.828742 2.704482 -1.982333 -0.598690 -0.143287 -0.418256 0.282637 -1.096389 1.328663 0.664043 0.633809 -1.981302 -1.244138 0.443073 0.004335 -1.199126 -0.883747 -0.406261 1.284172 -2.239729 -0.669513 -1.125140 0.486716 0.114261 -3.253165 -1.327767 -0.581077 1.542899 0.663950 -1.245393 -1.233918 0.722010 0.299537 -0.343569 -0.888631 -0.013840 1.315827 1.645615 0.691681 0.200732 1.468945 0.922244 3.196774 0.815409 -0.817282 -0.039108 0.214877 -0.184228 1.105145 -0.549998 -0.327502 0.793652 -1.714582 0.952830 1.010157 -1.062185 -0.918967 0.636328 -0.034105 -0.116572 5.316840 -0.154921 2.365180 1.943977 -1.819154 -0.035092 -1.615962 0.169574 0.813029 1.240945 1.118467 -1.942658 -1.453546 1.838444 2.869167 0.863028 -2.594980 0.494586 0.936985 0.582428 -1.147212 1.124509 0.429339 0.618530 -1.123586 -0.117649 1.780623 3.556170 -1.524413 -0.803800 0.336091 0.598693 0.586104 -1.418041 -0.244751 -0.394293 -0.004663 1.398144 0.895205 0.764727 2.238094 -3.038175 1.661574 0.107237 0.136706 1.517216 1.199338 -1.930532 -1.175348 -0.170797 1.072296 1.327154 0.327463 -0.122210 0.266036 -2.404962 0.017186 0.721253 0.117129 -1.190819 2.034735 0.336369 -0.959948 -1.043147 -0.362027 -0.080989 -0.353266 -0.689965 1.646911 0.013765 -3.622225 1.727774 0.039559 -1.528819 -0.379758 -0.866375 2.085831 -1.853028 -2.024029 1.150891 -1.510223 -2.176335 -0.892851 -0.599623 0.224635 1.074459 0.865107 -1.762873 -1.693190 2.593257 -0.616568 2.202951 1.236612 -0.114800 2.042823 -1.424466 -1.363728 -1.230854 -1.371317 1.030523 -0.196928 -1.582691 -0.231067 -0.550535 1.428749 1.904600 -0.365007 -1.302744 -0.339838 1.706175 -2.299069 -0.435364 0.850773 2.263562 -1.370832 1.384368 1.124294 -1.472675 0.644246 -1.349947 -1.023852 -1.346335 -1.421222 1.380961 -0.713923 0.668621 0.380512 -0.163769 -0.109921 0.988862 0.220204 0.009437 0.450476 2.330045 2.743350 -1.378611 -0.022176 -2.655291 1.724958 -2.342623 -2.442232 0.895610 0.087765 -0.947916 -0.673932 -0.263780 1.554042 1.456532 -2.081161 -1.384922 1.074904 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__partition(int*, int, int) = -1.528574 -0.796925 -0.105334 -2.462796 1.856546 3.475830 0.940150 -2.472172 -2.888680 -1.390081 1.297873 -4.276998 -2.530738 3.762646 -1.537852 2.626925 4.614957 -0.020150 -1.636438 -1.387982 2.949028 0.475336 5.749630 5.772533 -3.956904 0.108951 0.771800 1.887233 1.529814 0.300845 1.110226 -2.606888 1.586443 -2.997958 -0.053985 -1.486686 -0.790072 0.637239 2.631674 -5.954298 -0.488753 1.079071 -1.066250 0.089243 0.187361 1.114219 3.613884 3.183363 -0.306591 2.948335 2.560363 0.402088 1.407230 0.172651 0.709169 -0.204400 0.607794 -0.748236 -0.368653 -0.820692 -0.784719 -1.208219 -0.081716 4.152936 4.630315 -0.155811 -1.700108 1.318340 0.715338 0.855207 0.991437 3.172135 -0.059206 1.866286 2.541570 -4.346237 0.283866 -5.812756 0.464316 -5.863294 -2.845497 -0.155727 2.502631 1.404191 2.256143 -0.120750 5.714960 -0.456548 -1.693839 3.891922 4.615212 -3.393758 -0.786715 -0.893802 -1.446435 0.440483 -2.002704 1.470806 0.118842 1.520175 -3.353995 -2.307181 0.572470 0.528410 -2.363882 -2.187449 -0.364034 2.842120 -3.730530 -2.259205 -1.792238 2.138099 -0.490566 -6.315961 -2.773141 -2.112068 2.332187 0.715754 -2.317040 -3.140192 1.342506 1.242770 -0.464517 -1.940986 -0.034324 2.149344 3.067999 0.940725 -0.125795 2.174152 1.405091 6.095829 1.543599 -1.636912 -0.035347 0.808936 -0.539817 1.752719 -1.379848 -0.426051 0.749058 -3.277818 0.515583 2.606037 -1.985468 -1.402826 1.326489 -0.482185 -0.081065 12.640007 -0.667362 4.157794 3.722773 -3.570133 0.414424 -2.109960 0.352007 1.689895 2.014746 2.122025 -5.539913 -2.819637 3.220945 5.521567 1.919763 -4.182796 0.036060 1.378314 0.607474 -1.425576 1.903153 0.570507 0.536745 -2.061173 -0.426717 2.900700 6.802917 -2.388488 -1.114926 0.763582 1.730232 -0.217552 -3.154236 -0.611683 -2.198648 -0.071198 2.614957 1.081840 1.633351 4.238256 -5.445550 3.149118 -0.140390 -0.004439 2.783042 1.783211 -3.115838 -2.759325 -0.491716 1.922727 2.739379 -0.442437 0.393833 0.568145 -4.597849 0.087727 1.358874 0.705168 -2.566485 3.799506 0.672530 -1.927520 -1.873667 0.535067 -0.752343 -1.267291 -1.337770 2.991644 -0.147156 -5.446583 3.332390 0.532549 -2.218505 0.361541 -1.466592 4.284417 -3.577640 -3.846935 2.631653 -1.701303 -2.557662 -1.022210 -1.052387 1.490986 2.101808 1.267775 -3.709311 -3.266227 3.603495 -0.866401 4.145986 2.220699 -0.350627 3.302550 -2.722700 -2.037847 -2.498554 -2.943198 1.542682 0.627740 -2.758465 -2.210710 -1.119644 3.056521 3.687285 -0.419200 -2.547896 -0.357916 3.632301 -4.206618 -0.473667 1.215474 3.246339 -3.004344 1.559294 1.866264 -2.783833 0.863408 -2.519573 -0.646159 -2.344357 -2.498603 3.095691 -1.179961 1.509123 0.636711 -0.299049 -0.114223 1.824100 1.244839 0.481587 1.081347 4.360847 4.133847 -1.383355 -0.679061 -4.777538 2.688487 -4.453211 -4.138868 1.008679 0.371952 -1.654602 -1.066888 -0.502829 3.297469 2.629819 -2.466630 -1.907676 1.412221 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 0.016809 0.335727 0.528331 -0.272702 0.563292 0.016277 0.330844 0.317227 -0.626732 -0.901445 0.099007 -1.363369 -1.289823 0.920596 -0.059927 -0.066250 1.282034 0.108611 -0.053900 -0.424847 -0.014945 -0.328878 1.206043 1.283965 -0.961971 0.384198 -0.108832 0.146595 -0.003232 0.554524 0.077926 -1.174746 0.388564 0.234115 0.568303 -0.107807 -0.413620 -0.376435 -0.372380 -1.724431 -0.139294 1.115513 0.138882 -0.053034 0.301511 1.201468 1.467480 0.605771 -0.130574 0.730835 0.301876 -0.288431 0.572372 0.061116 0.404808 -0.426646 0.442622 -0.360129 -0.790661 0.345114 -0.214244 -1.080899 -0.535295 0.760966 0.970802 -0.231372 -0.485593 -0.217457 -0.034507 0.279074 0.045599 0.650213 0.928312 0.356097 0.721735 0.013527 -0.098774 -1.129215 0.025936 -2.933675 -1.126735 -0.435041 1.613304 0.642411 -0.134943 -0.797265 1.305745 0.003988 0.062496 0.491649 1.478259 -0.491587 -0.419799 -0.283723 0.004212 0.338398 -0.435370 0.086764 0.582100 -0.095367 -0.949612 -0.114351 0.580393 -0.369554 -0.518475 0.263694 -0.140989 0.769199 -1.187430 0.043921 -1.217527 0.065107 0.634696 -1.380817 0.170225 0.288480 0.094448 0.741975 -0.617885 -0.048716 0.490862 -0.113148 -0.445039 0.049497 -1.219884 1.269324 0.181798 0.253553 0.417288 0.818782 0.671985 0.609731 0.667796 -0.285118 -0.025379 0.220503 -0.092461 0.290432 -0.095726 -0.306900 0.394538 -0.585711 0.161159 -0.191985 -0.629151 -0.276718 -0.804890 -0.206647 0.120212 1.454175 -0.388539 0.905651 0.314436 -0.761955 0.734104 -0.340992 -0.360998 -0.017096 0.828103 0.765916 -0.155174 -0.470675 0.735209 1.373879 0.478717 -0.976318 0.380757 0.269579 0.153781 -0.396446 0.807779 0.215332 0.617506 -0.543857 -0.104722 0.486584 1.557934 -0.416400 -1.028520 -0.063736 0.211851 0.664332 -0.517812 0.178179 0.110275 -0.046025 0.087564 0.096898 0.365054 1.010293 -1.967525 1.017099 -0.041453 -0.361226 0.924518 0.076882 -0.498253 -1.362081 -0.044858 0.715023 1.015784 0.490217 -0.198819 -0.260734 -0.958938 -0.101773 0.087075 0.315398 -0.541785 0.832202 -0.267261 -0.464363 -0.423043 -1.017856 -0.069069 0.058424 -0.623722 0.468830 0.926854 -1.939941 0.960989 0.026453 -0.560054 -0.526294 -0.085545 0.434408 -0.794115 -0.974323 -0.000495 -0.951605 -1.693702 -0.525559 -0.572327 -0.017255 -0.067914 -0.111106 -0.298729 -0.796655 1.581699 -0.082559 1.065876 0.676555 0.009610 1.322258 1.072505 -0.812353 0.020145 -0.760220 0.715507 -0.867399 -0.260371 0.467647 -0.555138 0.391074 1.038717 -0.067220 -0.210696 -0.559614 0.683265 -0.765946 -0.455614 0.682916 -0.118022 -0.063052 0.958644 0.807893 -0.621036 -0.014964 -1.085207 -0.390402 -0.445513 -0.491933 0.258705 -0.748904 -0.118895 0.477241 -0.394112 -0.568681 0.298364 -0.213298 -0.491683 -0.207714 1.133154 1.413406 -1.042583 0.749375 -0.979982 0.794124 -1.030396 -0.801625 0.006139 0.201434 -0.384252 -0.352939 0.028404 0.104280 0.305401 -0.922211 -0.895131 0.605848 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__findMedian(int*, int) = -0.308267 0.145156 0.231951 -0.638182 0.574980 0.801538 0.250966 -0.569733 -0.638153 -0.524385 0.231607 -1.204846 -0.903788 0.964082 -0.421151 0.492185 1.285189 -0.071618 -0.300932 -0.550675 0.568060 0.249048 1.710979 1.563035 -1.195389 0.127891 0.267957 0.653852 0.393182 0.155080 0.215191 -0.766436 0.451665 -0.655662 -0.089500 -0.218542 -0.203292 -0.066835 0.412395 -1.653446 -0.102637 -0.028684 -0.436199 0.066189 -0.034493 0.354085 1.311618 0.859886 0.054244 0.723028 0.704458 0.085681 0.365881 0.092269 0.175096 -0.196655 0.249254 -0.452911 -0.248977 -0.218971 -0.147475 -0.531024 -0.220496 1.142031 1.147643 0.100646 -0.490872 0.353646 0.035186 0.259123 0.033031 0.840651 0.085547 0.834845 0.678603 -1.043059 0.178686 -1.329871 -0.064600 -1.559826 -0.940391 -0.307679 0.758139 0.479128 0.568693 0.149305 1.454541 0.028666 -0.211460 1.020586 1.460651 -0.947507 -0.244255 -0.210518 -0.171910 0.184711 -0.471703 0.519626 -0.203075 0.452425 -0.953489 -0.536795 0.306528 0.019249 -0.628224 -0.325732 -0.095784 0.582024 -1.245808 -0.403722 -0.818947 0.348998 0.085088 -1.794101 -0.812010 -0.172340 1.135224 0.235824 -0.512652 -0.873858 0.330813 0.458135 -0.104440 -0.456269 -0.126877 0.640482 0.853437 0.154351 0.157870 0.728931 0.563331 1.730990 0.515734 -0.283390 -0.093651 0.142310 -0.170849 0.232359 -0.174623 -0.033657 -0.110734 -0.938008 0.511893 0.872307 -0.531334 -0.522303 0.035816 -0.156361 0.132161 3.215226 -0.232827 1.072812 0.903828 -0.900917 -0.088595 -0.820380 -0.115094 0.298930 0.326710 0.758745 -1.242080 -0.706844 0.839330 1.370450 0.511362 -1.178879 0.243912 0.262859 0.174646 -0.373582 0.544147 0.184604 0.350086 -0.584141 -0.100670 0.959513 1.899085 -0.617846 -0.594347 0.294805 0.017841 0.216406 -0.738224 -0.190976 -0.115402 -0.066714 0.911069 0.360984 0.380192 1.166265 -1.523281 0.841773 0.181459 -0.181858 0.686682 0.388453 -0.787358 -0.395935 -0.058345 0.768944 0.715539 0.015406 0.005080 -0.050933 -1.240074 -0.037204 0.494413 0.271564 -0.727413 1.012895 0.335357 -0.679076 -0.632043 -0.101479 -0.138268 0.009105 -0.435640 0.744587 -0.180577 -2.027887 1.067757 0.099200 -0.673355 0.050139 -0.551301 1.150420 -0.997410 -1.056775 0.599479 -0.599423 -0.959132 -0.221203 -0.179759 0.196624 0.559594 0.441350 -0.991818 -0.776261 0.995229 0.030828 0.980831 0.660396 0.154994 1.006876 -0.816864 -0.587324 -0.541143 -0.706501 0.746716 0.067533 -0.769684 -0.375043 -0.387832 0.746103 1.218512 -0.248142 -0.671752 -0.178204 0.906101 -1.295143 -0.433374 0.401542 0.949096 -0.836874 0.479454 0.617535 -0.662945 0.118461 -0.818837 -0.383810 -0.595157 -0.855465 0.631272 -0.468429 0.314722 0.492672 -0.235308 -0.227208 0.575484 0.038448 0.072781 0.252882 1.102128 1.501809 -0.524765 -0.096766 -1.282806 0.703067 -1.297406 -1.240619 0.410052 0.004890 -0.278308 -0.331218 -0.276867 0.876202 0.514169 -0.852776 -0.521857 0.357379 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::sort(int*, int*) = -0.055725 0.342367 0.242339 0.075898 0.446884 0.116386 0.263687 0.337873 -0.255201 -0.630764 -0.126678 -0.585949 -0.973629 0.635500 -0.063457 0.074720 1.013842 0.327539 0.145410 -0.227884 0.146015 -0.489245 0.978948 0.883382 -0.755202 0.168014 0.195693 0.259097 -0.086799 0.557194 -0.044947 -0.834516 0.536336 -0.141487 0.359350 -0.416956 -0.027679 -0.200888 -0.390707 -1.312768 -0.132802 0.471193 -0.052169 -0.004090 0.037405 0.648004 1.018358 0.519335 -0.191173 0.520372 0.189388 -0.129280 0.290972 0.205091 0.077664 -0.047242 -0.076427 -0.305176 -0.687539 0.200327 -0.125828 -1.243161 -0.335083 0.495662 0.832909 -0.161465 -0.071526 0.085212 -0.404779 0.182396 0.027871 0.311947 0.638811 0.152924 0.631304 -0.173778 -0.328767 -0.882001 -0.314731 -2.199231 -0.738869 -0.767023 0.864175 0.317187 0.183243 -0.260873 0.901929 0.073172 0.341527 0.419213 1.116304 -0.691930 -0.391427 -0.485240 0.157160 0.390243 -0.553794 -0.025341 0.442347 -0.255821 -0.633258 -0.536858 0.530276 -0.071068 -0.339973 -0.247756 -0.276517 0.675833 -1.044689 -0.332844 -1.296530 -0.353070 0.109622 -1.020583 0.201829 0.350906 0.376234 0.662500 -0.122734 -0.317344 0.277733 0.333818 -0.062683 -0.373727 -0.312798 0.835050 0.066876 -0.057563 0.480838 0.481460 0.299860 0.732431 0.936673 -0.044077 -0.264530 0.275566 -0.357390 0.047614 -0.297588 -0.252805 0.272683 -0.691355 0.131362 0.165314 -0.502668 -0.268674 -0.238323 -0.272678 0.465213 0.927251 -0.076365 0.372077 0.154255 -0.739002 0.537067 -0.369073 -0.291465 0.136189 0.687821 0.468567 -0.251853 -0.380548 0.217197 0.841949 0.397873 -0.674843 -0.081951 -0.236666 0.347935 -0.245037 0.307450 0.401143 0.321735 -0.423335 0.003944 0.357772 1.077314 -0.563527 -0.614548 0.154159 0.078521 0.128974 -0.790235 -0.046603 -0.109744 -0.164184 0.065820 -0.019338 0.018691 0.792871 -1.106126 0.690044 -0.221021 -0.237620 0.441403 0.020706 -0.206048 -0.848876 0.251733 0.667755 0.745838 0.371751 0.070338 -0.180289 -0.715229 -0.089716 0.093890 0.457344 -0.208795 0.556933 -0.215366 -0.489261 -0.594209 -0.510510 0.046769 -0.265080 -0.176982 0.279322 0.749849 -1.462243 0.755745 -0.267162 -0.539158 0.029541 0.096914 0.452549 -0.784710 -0.991383 0.250778 -0.493923 -1.002093 -0.365037 -0.215716 0.246628 0.068994 -0.422077 -0.007605 -0.711862 0.895191 0.147468 0.424138 0.426701 0.252134 1.175700 0.497774 -0.786300 -0.233521 -0.372458 0.266300 -0.840376 -0.137162 -0.067239 -0.291515 0.499623 1.163318 0.122025 -0.084651 -0.299867 0.726564 -0.816456 -0.472089 0.736996 0.404016 0.077372 0.610919 0.729627 -0.671519 -0.437039 -0.574603 0.028269 0.055416 -0.566041 0.084258 -0.963224 -0.045892 0.577059 -0.165776 -0.411303 0.332219 -0.072998 -0.118091 -0.435286 0.853191 1.039772 -0.962322 0.437480 -0.559125 0.371676 -0.964952 -0.560569 -0.031650 0.363669 -0.089950 0.038318 0.232709 0.067479 0.055972 -0.540865 -0.507207 -0.177332 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__kthSmallest(int*, int, int, int) = -4.447080 -4.962332 -2.556965 -7.003215 4.162415 6.102378 2.906110 -7.455727 -8.984000 -2.767412 5.208935 -13.254148 -5.367975 10.086173 -3.556743 8.095911 11.930222 -0.414171 -4.832547 -4.940142 7.255683 1.725100 14.539891 15.375320 -8.909678 0.154255 -0.755655 2.550318 3.987815 -2.778427 4.340981 -6.301830 4.087183 -8.260895 -0.105298 -2.175932 -3.000010 3.648188 10.057629 -14.507230 -0.611126 3.276576 1.315538 0.230833 0.486030 5.709549 7.497354 7.927524 0.158110 8.913472 6.829647 -0.936991 4.680991 0.067173 2.556499 -1.304497 1.331113 -0.878912 -0.969211 -2.016233 -2.698798 0.743520 0.026007 9.987660 11.305652 -0.396367 -6.081045 3.452427 4.581644 3.077678 3.265207 8.691926 0.239825 3.417391 5.838790 -11.669800 -0.080524 -17.398167 2.087484 -17.505247 -7.379538 3.020746 8.434022 2.036803 4.946982 -1.284085 14.451286 -0.558563 -7.207574 9.446796 11.287119 -7.368427 -2.166965 -0.389696 -3.350528 -0.273857 -3.599839 4.869495 3.999149 5.298978 -9.384690 -4.098149 1.044746 0.218777 -5.516941 -5.306188 0.396013 6.168559 -7.423839 -4.563038 -2.363275 8.019738 0.645386 -15.607136 -4.109100 -6.428285 2.857896 1.601651 -8.433583 -6.520435 3.880399 0.027504 -3.318732 -3.261761 -1.626972 5.876906 8.078598 3.848000 -1.141000 7.165728 3.308628 15.413873 0.410225 -6.191973 1.495430 1.784694 -0.046127 6.108227 -3.637745 -2.406590 4.439724 -8.023346 3.142503 3.611593 -4.933296 -3.386964 5.028207 0.541659 -2.724212 28.893790 -2.472398 12.838444 10.865142 -6.964273 2.181024 -5.739669 3.146525 3.701271 5.591328 3.991520 -11.901938 -7.930278 9.932500 14.318350 4.812360 -11.501980 -0.788446 5.542179 1.676680 -3.525066 5.445440 0.833013 2.143932 -4.845193 -0.741455 6.889928 17.842619 -5.706264 0.473942 0.808436 6.476183 1.601375 -7.815465 -1.918375 -7.763847 0.160757 5.890358 5.101940 5.152152 10.770877 -15.285475 8.220306 0.089393 1.666926 7.416068 5.943594 -9.692096 -11.197845 -3.678353 3.109987 7.187725 -1.368964 0.800764 2.699127 -11.690515 0.724230 2.654687 0.379971 -7.328262 9.599495 0.357475 -3.082195 -2.147360 2.398651 -3.308527 -2.652335 -2.715080 8.568187 2.419925 -12.919670 6.906115 2.121735 -5.614921 -0.530284 -3.428259 10.841513 -7.231011 -7.243534 5.552454 -5.464761 -6.667457 -3.438858 -2.538060 1.909229 2.804784 5.219038 -9.122924 -7.833785 11.228530 -3.737155 12.783222 5.585869 -3.358265 6.233640 -7.360530 -5.225745 -5.178061 -8.011941 2.620121 2.343128 -7.242462 -3.168701 -2.338589 6.975992 6.609371 -0.574466 -7.780241 -0.491807 8.559659 -10.413469 -0.000173 2.756766 5.987744 -7.561651 4.867293 4.765099 -7.449878 4.961646 -7.378829 -2.792124 -7.806890 -4.746346 8.459760 -0.455924 3.897214 -1.830852 -1.298845 1.655002 4.511557 3.897138 -0.015103 4.198987 11.816748 9.892786 -1.971304 -3.001624 -13.056732 7.302733 -9.588298 -10.427959 2.619937 1.411603 -6.994182 -3.558624 -1.698273 9.334625 6.969163 -7.805312 -7.144062 6.536156 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__partition(int*, int, int, int) = -2.328905 -1.688832 -0.414704 -3.849273 2.340411 4.637191 1.180379 -3.554224 -4.338261 -1.944378 1.904430 -5.878678 -3.141098 5.261037 -2.287648 3.729681 6.414620 0.082749 -2.375925 -1.982194 4.401560 0.566966 7.759001 8.128906 -5.449537 -0.081710 0.949963 2.894332 2.280767 0.233498 2.121110 -3.616855 1.742697 -4.189989 0.139897 -2.363908 -1.044356 1.615582 3.925875 -8.354403 -0.640656 1.748585 -1.073667 0.192368 0.364915 1.165638 4.468042 4.441484 -0.643154 4.176346 3.879288 0.892391 1.983608 0.083435 0.796227 -0.200354 0.533304 -1.024145 -0.088194 -1.056745 -1.139162 -1.083648 0.391439 5.885676 6.567448 -0.249210 -2.435602 1.661422 1.359466 1.337429 1.609164 4.501879 -0.600654 2.299786 3.459868 -6.384119 0.354178 -8.915429 1.297323 -7.982092 -3.723255 0.138297 3.481744 2.381613 2.964451 -0.155088 8.058740 -0.849235 -2.681067 5.946172 6.026897 -4.199494 -0.934912 -1.355496 -2.545152 0.625767 -2.665706 1.836352 -0.021687 2.825806 -4.521834 -3.207226 0.348514 0.712354 -3.293464 -3.218361 -0.514058 3.972506 -5.007646 -3.182403 -2.065321 3.793697 -0.609186 -8.710632 -4.009478 -3.794582 2.680073 0.647337 -3.433204 -4.144233 1.832483 1.476092 -0.776274 -2.312969 -0.314919 2.817312 4.245446 1.196147 -0.602780 2.888252 1.583275 8.212002 1.524081 -2.640312 -0.001842 1.437263 -0.698204 2.362599 -2.379665 -0.537397 1.485703 -4.482478 0.484690 3.317667 -2.708296 -2.213378 2.062500 -0.870038 -0.261546 18.319461 -0.926506 5.870911 5.482764 -4.670254 0.811615 -2.384941 0.941498 2.611609 2.855274 2.725988 -7.821689 -4.029768 4.453609 7.702781 2.660149 -5.406056 -0.444899 2.171492 0.757689 -1.686867 2.660568 0.574349 0.215487 -2.749454 -0.618791 3.806146 9.205199 -2.831186 -0.913721 0.800796 3.333389 -0.817290 -4.341907 -0.771711 -3.835778 -0.077775 3.684393 1.545713 2.523409 5.883932 -7.920898 4.359443 0.037953 0.558048 3.526274 2.422823 -4.317051 -4.690548 -0.875030 2.292316 3.894988 -1.074879 0.849980 1.138165 -6.469369 0.276677 1.880200 1.031633 -3.841438 5.386310 0.763355 -2.431098 -2.368987 1.242050 -1.595811 -1.906643 -1.848739 4.237364 -0.113808 -6.841199 4.366651 0.677783 -2.858817 0.590879 -1.953368 6.028068 -4.962114 -5.123985 3.739650 -1.993928 -3.210300 -1.451442 -1.481532 2.332461 2.740795 1.769593 -5.234788 -4.569534 4.807074 -1.518613 5.925130 3.003118 -0.913629 4.138479 -3.867194 -2.455154 -3.566416 -4.047080 1.886545 1.246090 -3.740697 -3.404952 -1.383953 4.140570 4.891779 -0.533078 -3.774455 -0.126307 5.358703 -5.285909 -0.459171 1.320950 3.762330 -4.124178 2.104621 2.335876 -4.119263 1.399399 -3.744743 -0.367143 -3.196467 -3.178462 4.693523 -1.366872 2.258061 0.493219 -0.318412 0.009493 2.567849 2.307368 0.610705 1.824176 6.301765 5.074528 -1.198079 -1.078216 -6.746440 3.562609 -6.067090 -5.475863 0.885084 0.454419 -2.409284 -1.339281 -0.942013 4.904708 3.904193 -2.834320 -2.587494 2.172142 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 0.016809 0.335727 0.528331 -0.272702 0.563292 0.016277 0.330844 0.317227 -0.626732 -0.901445 0.099007 -1.363369 -1.289823 0.920596 -0.059927 -0.066250 1.282034 0.108611 -0.053900 -0.424847 -0.014945 -0.328878 1.206043 1.283965 -0.961971 0.384198 -0.108832 0.146595 -0.003232 0.554524 0.077926 -1.174746 0.388564 0.234115 0.568303 -0.107807 -0.413620 -0.376435 -0.372380 -1.724431 -0.139294 1.115513 0.138882 -0.053034 0.301511 1.201468 1.467480 0.605771 -0.130574 0.730835 0.301876 -0.288431 0.572372 0.061116 0.404808 -0.426646 0.442622 -0.360129 -0.790661 0.345114 -0.214244 -1.080899 -0.535295 0.760966 0.970802 -0.231372 -0.485593 -0.217457 -0.034507 0.279074 0.045599 0.650213 0.928312 0.356097 0.721735 0.013527 -0.098774 -1.129215 0.025936 -2.933675 -1.126735 -0.435041 1.613304 0.642411 -0.134943 -0.797265 1.305745 0.003988 0.062496 0.491649 1.478259 -0.491587 -0.419799 -0.283723 0.004212 0.338398 -0.435370 0.086764 0.582100 -0.095367 -0.949612 -0.114351 0.580393 -0.369554 -0.518475 0.263694 -0.140989 0.769199 -1.187430 0.043921 -1.217527 0.065107 0.634696 -1.380817 0.170225 0.288480 0.094448 0.741975 -0.617885 -0.048716 0.490862 -0.113148 -0.445039 0.049497 -1.219884 1.269324 0.181798 0.253553 0.417288 0.818782 0.671985 0.609731 0.667796 -0.285118 -0.025379 0.220503 -0.092461 0.290432 -0.095726 -0.306900 0.394538 -0.585711 0.161159 -0.191985 -0.629151 -0.276718 -0.804890 -0.206647 0.120212 1.454175 -0.388539 0.905651 0.314436 -0.761955 0.734104 -0.340992 -0.360998 -0.017096 0.828103 0.765916 -0.155174 -0.470675 0.735209 1.373879 0.478717 -0.976318 0.380757 0.269579 0.153781 -0.396446 0.807779 0.215332 0.617506 -0.543857 -0.104722 0.486584 1.557934 -0.416400 -1.028520 -0.063736 0.211851 0.664332 -0.517812 0.178179 0.110275 -0.046025 0.087564 0.096898 0.365054 1.010293 -1.967525 1.017099 -0.041453 -0.361226 0.924518 0.076882 -0.498253 -1.362081 -0.044858 0.715023 1.015784 0.490217 -0.198819 -0.260734 -0.958938 -0.101773 0.087075 0.315398 -0.541785 0.832202 -0.267261 -0.464363 -0.423043 -1.017856 -0.069069 0.058424 -0.623722 0.468830 0.926854 -1.939941 0.960989 0.026453 -0.560054 -0.526294 -0.085545 0.434408 -0.794115 -0.974323 -0.000495 -0.951605 -1.693702 -0.525559 -0.572327 -0.017255 -0.067914 -0.111106 -0.298729 -0.796655 1.581699 -0.082559 1.065876 0.676555 0.009610 1.322258 1.072505 -0.812353 0.020145 -0.760220 0.715507 -0.867399 -0.260371 0.467647 -0.555138 0.391074 1.038717 -0.067220 -0.210696 -0.559614 0.683265 -0.765946 -0.455614 0.682916 -0.118022 -0.063052 0.958644 0.807893 -0.621036 -0.014964 -1.085207 -0.390402 -0.445513 -0.491933 0.258705 -0.748904 -0.118895 0.477241 -0.394112 -0.568681 0.298364 -0.213298 -0.491683 -0.207714 1.133154 1.413406 -1.042583 0.749375 -0.979982 0.794124 -1.030396 -0.801625 0.006139 0.201434 -0.384252 -0.352939 0.028404 0.104280 0.305401 -0.922211 -0.895131 0.605848 +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.416811 0.323176 -0.251911 -0.654782 1.133907 0.438034 0.492326 -0.139505 -0.676577 -1.123027 0.102736 -2.073778 -1.783544 1.051202 -0.352407 0.706709 2.180881 -0.069526 0.018208 -0.702312 0.524112 -0.034571 2.477707 2.276061 -1.657377 0.184117 0.377337 0.636101 -0.182195 -0.248165 0.262854 -1.747185 0.767796 -0.829753 0.412439 -0.165588 -0.284206 -0.438388 0.526266 -2.521497 -0.287110 0.490087 -0.214837 0.079105 -0.088402 1.076617 2.172554 1.281156 -0.466817 1.049208 1.082229 -0.058288 0.675930 0.261154 -0.134449 -0.413031 -0.363297 -0.504377 -0.751016 -0.209282 -0.310036 -1.023314 -0.371373 1.449810 1.753949 -0.186488 -0.796244 0.703883 0.106312 0.307401 0.072800 1.304418 0.843449 0.720642 1.352115 -1.259554 -0.521669 -2.828284 -0.211084 -3.989705 -1.725067 -0.875311 1.332537 0.377014 0.711809 -0.059044 2.457000 0.072077 0.240109 1.442544 2.125606 -1.419165 -0.641255 -0.761057 -0.168561 0.432975 -0.803570 0.499073 0.765793 0.443621 -1.561699 -0.826748 0.563647 -0.238736 -0.889436 -1.204677 -0.086975 0.725519 -1.421577 -0.664947 -2.140596 0.366007 0.408745 -2.663798 -0.331011 0.238171 0.885239 0.741439 -0.766819 -1.133804 0.433285 0.247762 -0.505488 -0.551437 -0.395679 1.192804 1.127198 0.235301 0.828412 1.251970 0.962463 2.506111 1.166017 -0.528062 -0.570760 0.394925 -0.488177 0.315446 -0.490416 -0.351254 0.707857 -1.538953 1.010013 0.733228 -0.998564 -0.896247 0.232744 -0.745811 0.418697 3.499608 -0.436076 1.473927 1.082247 -1.458749 0.706113 -1.372842 -0.361716 0.238688 1.202319 1.163384 -0.981739 -1.043053 1.278000 2.162260 0.819892 -1.713047 0.108417 0.627839 0.733390 -0.772393 0.626997 0.698364 0.717743 -0.725000 0.037593 1.457812 2.762193 -0.829830 -0.506400 0.405695 1.306941 0.665600 -1.345503 -0.312871 -1.140278 -0.382582 1.083631 0.673184 0.390426 1.863648 -2.632867 1.054014 0.083599 0.110749 0.944327 0.745870 -1.116461 -1.951186 0.251235 1.243588 1.210251 0.088513 0.498862 -0.433354 -1.524918 -0.012930 0.546120 0.688669 -0.890745 1.474757 -0.434510 -0.987420 -0.806868 -0.434455 -0.443135 -0.238230 -0.408105 1.007205 1.024348 -2.934762 1.711441 -0.167334 -1.221899 -0.136806 -0.832357 1.778295 -1.566515 -1.674554 0.932554 -1.338863 -1.390928 -0.308159 -0.373084 0.309512 0.410061 0.269657 -0.902167 -1.378523 2.109124 0.377417 1.646868 1.005659 0.180615 1.815801 -0.823810 -1.384021 -0.635845 -1.271544 0.551886 -0.510557 -1.028058 -0.296277 -0.568001 1.072714 2.011527 -0.351568 -0.659383 -0.239383 1.076610 -2.070942 -0.421424 0.952395 1.134914 -0.807371 1.141131 1.157408 -1.188946 -0.150071 -1.529078 0.224249 -0.779063 -1.377478 0.477575 -1.406529 0.033092 1.011489 -0.660114 -0.215800 0.773213 0.211560 0.146580 -0.240574 1.722632 2.068638 -1.065530 0.096310 -1.941041 0.877144 -2.095152 -1.879009 0.488436 0.248978 -0.565023 -0.483681 0.118635 0.827064 0.213439 -1.170247 -1.406723 0.415887 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__iter_less_iter() = -0.029511 -0.018832 0.019181 -0.052489 0.049565 -0.076945 0.016084 -0.057137 -0.093577 -0.064966 -0.013602 -0.034548 0.027187 0.075953 -0.064472 0.091098 0.102408 0.098010 0.023630 -0.072988 0.008533 -0.122572 0.109788 0.104826 -0.054476 0.014381 0.001741 0.070164 -0.002996 0.141309 -0.020023 -0.078988 0.045354 -0.025150 0.009420 -0.139006 0.023925 0.123994 0.021045 -0.140681 0.031719 -0.030231 0.153724 0.009469 -0.010215 -0.007682 0.017982 0.058369 0.037942 0.125483 0.064087 0.102333 0.028435 0.050058 0.040334 0.083793 0.092547 -0.228753 -0.040627 0.026436 -0.010202 -0.104998 0.020315 0.057934 0.100696 -0.012324 0.027840 -0.009655 -0.073349 0.033277 0.086250 -0.005818 -0.117613 -0.018836 -0.047631 -0.125225 0.076004 -0.125862 -0.035077 -0.227739 -0.028896 -0.036530 0.038487 0.135149 0.048179 0.161667 0.077771 0.013115 0.016332 -0.035465 0.044738 -0.077701 -0.037451 0.049255 -0.018807 0.030773 -0.039348 -0.048678 -0.072777 0.123410 -0.018194 -0.054521 0.128792 0.022156 -0.023921 -0.010548 -0.010141 0.036715 -0.228244 -0.092502 -0.045331 0.009023 -0.046460 -0.045388 0.136645 -0.079189 0.081455 -0.003288 -0.010439 -0.068798 0.030773 0.055577 -0.004448 0.007085 -0.185853 -0.022682 -0.045532 -0.026429 -0.009085 -0.044693 -0.050897 0.123004 -0.023456 -0.081467 -0.020703 0.062953 -0.025743 -0.014732 -0.073027 -0.065452 -0.043169 -0.123770 0.062336 -0.004544 -0.054351 -0.048666 -0.018220 -0.011302 0.052305 -0.037093 -0.001524 0.031396 0.058572 -0.074274 -0.062120 -0.040387 0.044012 0.040413 0.059896 -0.036106 0.108001 -0.082201 -0.026344 0.041802 0.060186 0.060088 -0.125375 -0.061022 0.029493 0.130544 -0.012814 0.008865 -0.096015 -0.062488 -0.016768 -0.093184 0.113776 0.074303 0.203559 0.019372 -0.015796 -0.129815 -0.065255 -0.027844 -0.083693 0.029084 -0.074539 -0.007624 -0.026688 0.081832 -0.193224 0.093570 -0.078518 0.033024 -0.025564 -0.029315 0.001956 -0.161450 -0.029375 0.014278 0.117968 -0.081230 0.166309 0.081133 -0.064842 -0.018797 -0.055322 0.054184 -0.062230 0.009550 0.093656 -0.134566 -0.023499 0.078806 0.049718 -0.042781 0.023901 0.034948 0.151441 -0.156336 0.025677 -0.056150 -0.027985 0.100191 0.085746 0.060670 -0.072608 -0.014704 0.026506 0.000735 0.034710 -0.004751 0.018903 0.072080 -0.142390 -0.049911 0.041744 0.075830 -0.043163 -0.025115 -0.045493 0.023625 -0.019070 -0.016747 -0.070841 0.002171 0.010314 0.123159 -0.132899 -0.174612 0.072439 0.164235 -0.010526 0.066697 0.133161 0.103253 -0.031262 0.180170 0.128156 0.032025 -0.012703 0.067565 -0.010270 0.004530 0.071347 0.059565 -0.123191 -0.057770 -0.016820 0.060913 0.072274 -0.007837 0.094711 -0.037171 0.040272 0.007427 0.041105 -0.075406 0.089925 0.023712 -0.007783 -0.012684 0.135689 -0.022248 0.072440 0.061675 -0.005019 -0.088350 -0.074703 0.015618 -0.081801 0.125368 -0.082994 0.068885 -0.077940 0.097302 0.004244 0.120470 0.018944 -0.053254 +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) = -0.713733 0.368415 -0.320118 -0.941167 1.527259 0.920844 0.730156 -0.230315 -1.305551 -1.741307 0.080468 -2.823158 -2.564649 1.998190 -0.458399 1.283668 3.550115 0.218789 -0.105120 -1.004102 1.379422 -0.700880 3.688705 3.643374 -2.654489 0.315166 0.896609 0.873175 0.082522 0.285447 0.285191 -2.645170 1.200502 -1.651547 0.908513 -1.022632 -0.516850 -0.194156 0.948750 -4.324303 -0.428389 1.069562 -0.115333 0.036410 -0.051162 1.648318 3.259085 2.011691 -0.938148 1.782392 1.625769 -0.099310 1.070487 0.332348 0.014690 -0.049342 -0.393498 -0.217112 -1.007261 -0.099652 -0.588818 -1.842848 -0.227705 2.330273 2.954564 -0.480886 -1.155299 1.063274 0.087013 0.489063 0.152422 2.049823 1.286904 0.765187 2.228803 -2.475154 -0.818097 -4.870453 -0.134489 -6.627959 -2.470054 -1.332408 1.913318 0.449693 1.327241 -0.317341 3.943881 -0.297404 0.193091 2.315092 3.385271 -2.341087 -0.853834 -1.356905 -0.485216 0.636401 -1.390263 0.391006 1.342228 0.196942 -2.389381 -1.905998 1.033538 -0.066068 -1.494431 -1.927923 -0.362483 1.549225 -2.537643 -1.447943 -3.306286 0.377199 0.175701 -4.131180 -0.310310 -0.172345 1.064317 1.209060 -1.305945 -2.100005 0.852852 0.764194 -0.713356 -1.349767 -0.254176 2.198802 1.574912 0.284875 1.021491 1.520327 1.192850 3.733892 2.283915 -0.926151 -0.732521 0.845652 -1.015249 0.455836 -1.159986 -0.709844 1.510422 -2.409002 0.728953 1.146721 -1.601113 -0.998569 1.221481 -1.257460 0.638566 6.291596 -0.677366 2.219995 1.652037 -2.444809 1.538741 -1.550905 -0.514611 0.672071 2.144883 1.935564 -2.451004 -1.684165 1.864398 3.510571 1.343308 -2.752295 -0.538411 0.616852 1.077030 -0.869895 1.053911 0.844421 0.962902 -1.453783 -0.050635 1.799794 4.571981 -1.678840 -0.777170 0.503929 1.928191 0.302328 -2.833209 -0.429225 -2.373646 -0.546787 1.222793 0.616046 0.776289 2.956122 -4.368227 1.985251 -0.490716 -0.213905 1.563749 1.010322 -1.546270 -3.527060 0.359004 1.856852 2.196570 0.185845 0.859689 -0.454679 -2.706075 -0.005633 0.596181 1.159465 -1.589680 2.509331 -0.626449 -1.597338 -1.336970 -0.348573 -0.653824 -1.089360 -0.488051 1.583956 1.645022 -4.264738 2.635216 -0.252716 -1.656532 0.149742 -0.659115 2.524949 -2.532081 -2.887636 1.597734 -1.573802 -1.918347 -0.671320 -0.735643 0.917498 0.727773 -0.173051 -1.431085 -2.892714 3.032426 0.210084 2.655034 1.600140 0.198658 3.002846 -0.693410 -1.995478 -1.473297 -1.654687 0.432258 -0.869819 -1.397953 -1.495556 -0.914602 1.893824 3.287004 -0.307096 -0.813708 -0.542741 2.187559 -3.229821 -0.512581 1.513865 1.864282 -1.180893 1.527775 1.832262 -2.036943 -0.377856 -2.324677 0.345426 -1.032424 -1.920945 1.050966 -2.301424 0.098081 1.442823 -0.916099 -0.359610 1.185838 0.612927 0.037022 -0.438014 2.878034 3.238431 -1.862525 0.063610 -2.885009 1.423083 -3.329440 -2.631395 0.338412 0.722820 -1.048135 -0.648669 0.477244 1.423068 0.641026 -1.551057 -1.832292 0.269818 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__long std::__lg(long) = -0.204744 -0.269311 0.008870 -0.278055 0.104661 0.065262 0.164878 -0.331316 -0.411054 -0.308171 0.258053 -0.673322 -0.286631 0.484484 -0.219970 0.377447 0.532198 0.068558 -0.217882 -0.261637 0.162631 -0.025398 0.695660 0.680097 -0.328599 -0.002524 -0.183686 0.169270 0.198167 -0.047618 0.263904 -0.250540 0.311710 -0.233901 0.030959 -0.081769 -0.103749 0.204495 0.224009 -0.622403 0.002866 0.252722 0.251267 -0.008450 0.047662 0.345022 0.281495 0.372201 0.228851 0.451339 0.187424 -0.061705 0.285656 0.073929 0.221654 -0.135396 0.163360 -0.560703 -0.212232 -0.042815 -0.138410 -0.272609 -0.096985 0.430585 0.499891 -0.046078 -0.190477 0.074249 0.094813 0.199315 0.269544 0.305406 -0.044337 0.119299 0.142998 -0.484790 0.180793 -0.401275 -0.038705 -0.949035 -0.351163 0.126840 0.534544 0.378916 0.149554 -0.037752 0.582115 0.046129 -0.319418 0.198685 0.516348 -0.353419 -0.180173 0.104228 0.093833 0.009849 -0.256474 0.150879 0.137047 0.346946 -0.407835 0.108031 0.194760 -0.006529 -0.199068 -0.055598 0.037500 0.342852 -0.582662 -0.203356 -0.137281 0.254996 0.091169 -0.660892 0.170533 -0.183703 0.183461 0.141795 -0.366558 -0.152121 0.245840 -0.022988 -0.045895 -0.048058 -0.550758 0.277724 0.164841 0.195021 -0.033210 0.468808 0.095324 0.668422 0.017661 -0.230264 0.079991 0.088088 -0.046165 0.334130 -0.023158 -0.229123 0.076070 -0.428107 0.043624 0.079137 -0.252786 -0.156793 -0.165845 0.177333 -0.069590 0.821498 -0.117794 0.553647 0.514848 -0.301405 -0.051226 -0.353361 0.195678 0.070950 0.225387 0.104735 -0.259179 -0.365730 0.416611 0.625036 0.253662 -0.379273 0.103544 0.169178 0.148469 -0.117937 0.220445 0.115567 0.119961 -0.290233 -0.029535 0.185936 0.718160 -0.190628 0.250985 0.031954 -0.043793 0.121095 -0.324823 -0.068907 -0.035957 0.062313 0.034595 0.245070 0.059628 0.475136 -0.444497 0.460929 -0.040785 0.118191 0.426057 0.143823 -0.410895 -0.624891 -0.277248 0.138161 0.354903 -0.118295 0.089732 0.173223 -0.507611 -0.004320 0.011273 0.050704 -0.230586 0.307471 0.099987 -0.128724 -0.111392 0.028843 0.045798 -0.012143 -0.094044 0.372747 0.382178 -0.536872 0.292663 0.037990 -0.307336 -0.039352 -0.008896 0.472821 -0.361914 -0.240613 0.135020 -0.389141 -0.545872 -0.253217 -0.097214 0.036454 -0.104286 0.025615 -0.250499 -0.007567 0.546479 -0.206689 0.487626 0.206049 -0.158173 0.320515 -0.101289 -0.246126 0.006639 -0.294388 -0.104401 -0.246050 -0.216884 0.254992 -0.057201 0.328862 0.326172 0.040695 -0.313874 0.261423 0.354674 -0.453694 -0.117841 0.221041 0.214084 -0.245693 0.389026 0.267979 -0.416981 0.190537 -0.276226 -0.225383 -0.279583 -0.209248 0.382713 -0.030212 0.211838 -0.116751 0.028807 -0.045146 0.181089 0.110975 -0.067355 0.152699 0.605417 0.485438 -0.041521 -0.027595 -0.542227 0.248000 -0.402383 -0.392717 0.103191 0.308560 -0.279106 -0.073213 -0.068059 0.371029 0.377880 -0.458227 -0.375734 0.316746 +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.400249 0.617875 -0.012650 -0.643528 1.265045 0.840474 0.511526 0.083317 -0.688568 -1.341593 -0.126099 -2.149631 -2.066250 1.223824 -0.386290 0.675288 2.486563 0.095710 0.063297 -0.484079 0.540086 0.014024 2.635840 2.421884 -1.852491 0.241710 0.410016 0.633195 -0.395797 0.431713 0.052546 -2.350318 0.852429 -0.610487 0.600861 -0.413418 -0.308852 -0.493537 0.263197 -2.943862 -0.279920 1.019808 -0.294923 -0.014279 0.042153 0.719406 2.600955 1.374371 -0.512113 0.936497 0.996415 0.236318 0.712223 0.299238 -0.068866 -0.190866 -0.372159 -0.821691 -0.930409 -0.173299 -0.392804 -1.298706 -0.514953 1.585157 1.917496 -0.212230 -0.756395 0.506665 -0.130482 0.281433 -0.032480 1.341882 1.097611 0.829216 1.400470 -0.919809 -0.568409 -2.570405 -0.162451 -3.974599 -1.870443 -1.238561 1.340762 1.095997 0.818228 -0.583921 2.694258 -0.239292 0.512429 1.403080 2.467881 -1.652292 -0.676204 -1.128794 -0.154445 0.510297 -0.978914 0.214976 0.426059 0.079691 -1.691948 -1.171259 0.605642 -0.155581 -0.986436 -1.091430 -0.211730 0.962038 -1.751275 -0.820503 -2.594857 0.272590 0.335344 -2.907016 -0.463728 0.318106 0.435875 0.923010 -0.782376 -1.413338 0.585763 0.519417 -0.542865 -0.800680 -0.646211 1.630928 1.083268 0.021939 0.937100 1.139980 1.016663 2.592117 1.447999 -0.502069 -0.631466 0.494736 -0.580435 0.112301 -0.629898 -0.321128 0.474203 -1.684182 0.624751 1.003951 -1.152141 -0.627653 -0.361086 -0.981618 0.673859 4.052067 -0.615651 1.432652 0.953162 -1.810301 1.159377 -1.200779 -0.641935 0.107823 1.305956 1.541829 -1.309895 -1.081466 1.306027 2.352250 0.942913 -1.565274 0.306045 0.411399 0.815797 -0.843302 0.764380 0.767850 0.810949 -1.060691 -0.039325 1.444715 3.164616 -0.943473 -0.872949 0.499328 1.311877 0.621499 -1.327369 -0.312477 -1.294843 -0.466997 1.193042 0.441971 0.453481 2.102941 -2.647315 1.312040 0.005786 -0.287739 1.164358 0.480665 -0.973952 -1.698535 0.377505 1.570712 1.507815 0.190590 0.680853 -0.649759 -1.720824 -0.073706 0.517003 0.953634 -0.992304 1.598715 -0.375270 -1.320264 -1.032952 -0.791993 -0.497417 -0.616972 -0.695605 0.976000 1.392235 -3.040323 2.062330 -0.085410 -1.177347 -0.016004 -0.729710 1.775904 -1.823715 -2.042005 1.051078 -1.316253 -1.552140 -0.156220 -0.464671 0.517656 0.569959 0.077187 -0.984385 -1.855054 2.220563 0.684901 1.765468 1.108508 0.386330 1.940979 -0.092072 -1.415457 -0.661350 -1.609570 0.737896 -0.673840 -1.002396 -0.571451 -0.753487 1.272122 2.430321 -0.384236 -0.653295 -0.677506 1.281590 -2.076447 -0.310589 1.165202 0.893006 -0.814307 0.899987 1.388129 -1.240911 -0.492934 -1.696369 0.484227 -0.772329 -1.557553 0.390485 -1.824566 -0.025580 1.379542 -0.780603 -0.601200 0.695551 0.249536 -0.149446 -0.379067 1.945132 1.822210 -1.189260 0.494688 -1.985466 0.975223 -2.419660 -1.906773 0.365559 0.068400 -0.647169 -0.476251 0.246539 0.824306 0.127895 -0.832239 -1.321473 0.119726 +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.004909 0.782405 0.361831 0.033827 0.710436 0.388123 0.307733 0.363682 -0.224759 -0.898007 -0.247040 -0.760200 -1.423925 0.820559 -0.037662 0.032195 1.400822 0.219021 0.232885 -0.425523 0.314526 -0.576031 1.437039 1.314218 -1.280188 0.348742 0.669538 0.329973 0.071799 0.641169 -0.096949 -1.157465 0.680621 -0.295552 0.526096 -0.530459 -0.144796 -0.560362 -0.401023 -1.946014 -0.285531 0.362241 -0.467360 0.050747 0.049689 0.969116 1.723366 0.727610 -0.485182 0.718101 0.437578 -0.061771 0.336854 0.198363 0.008439 -0.106425 -0.041747 -0.148622 -0.697299 0.264342 -0.075399 -1.608372 -0.428498 0.839238 1.189393 -0.267364 -0.213876 0.309108 -0.445850 0.143375 -0.185817 0.649837 0.970526 0.466305 1.017535 -0.630956 -0.497304 -1.669020 -0.371351 -3.201845 -1.145417 -1.171573 0.979870 0.085777 0.360694 -0.201008 1.434385 0.134296 0.564312 0.758576 1.645474 -1.028998 -0.398865 -0.692195 0.083545 0.545109 -0.710316 0.161236 0.472567 -0.474567 -0.897751 -0.978107 0.765751 -0.128581 -0.644176 -0.545954 -0.417031 0.869279 -1.413932 -0.430476 -1.840083 -0.542367 0.045875 -1.581259 0.043293 0.454000 0.953650 0.825024 -0.089491 -0.679487 0.269813 0.598738 -0.095813 -0.680676 -0.109401 1.107598 0.455973 -0.056946 0.683586 0.620454 0.643538 1.201803 1.502283 -0.007677 -0.455713 0.337847 -0.450725 -0.027425 -0.394156 -0.166279 0.478718 -0.889304 0.269572 0.465943 -0.655235 -0.461532 0.170184 -0.687360 0.607322 1.956309 -0.115538 0.528051 0.221227 -1.150027 0.546097 -0.630212 -0.644116 0.316360 0.976923 0.923974 -0.746602 -0.491097 0.359797 1.306781 0.480423 -1.166171 -0.168952 -0.197678 0.295108 -0.468273 0.506430 0.413577 0.477387 -0.527461 -0.024403 0.720415 1.654040 -0.860700 -0.973715 0.174170 0.266693 0.182153 -1.154504 -0.023262 -0.229014 -0.251666 0.369757 -0.032445 0.164675 1.099387 -1.888076 0.866042 -0.314538 -0.454391 0.478666 0.224136 -0.309040 -1.054153 0.584988 1.040509 0.923024 0.463950 0.185062 -0.404090 -1.082882 -0.121330 0.257814 0.588895 -0.468669 0.933253 -0.191117 -0.772281 -0.877886 -0.552946 0.049083 -0.348336 -0.265075 0.411581 0.670257 -2.375768 1.200766 -0.380242 -0.760894 0.042416 -0.183895 0.837510 -1.152646 -1.453715 0.470837 -0.635647 -1.238178 -0.377748 -0.419938 0.412989 0.259018 -0.353311 -0.280020 -1.199503 1.178417 0.230390 0.611391 0.735423 0.491228 1.822432 0.077676 -1.076842 -0.569977 -0.587333 0.627928 -0.823818 -0.339138 -0.377365 -0.519447 0.671822 1.761412 -0.034339 -0.114115 -0.467082 0.906440 -1.467610 -0.594269 0.848777 1.060594 -0.103888 0.803639 0.876091 -0.757610 -0.562643 -0.877391 0.005174 0.006940 -0.893548 0.168628 -1.387305 -0.136322 1.021794 -0.343205 -0.521893 0.612592 -0.197894 -0.002081 -0.585314 0.994341 1.817632 -1.515375 0.415030 -0.885450 0.630887 -1.456192 -0.985967 0.052189 0.345977 0.023814 -0.156637 0.175447 0.130037 0.115865 -0.760309 -0.627757 -0.212535 +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) = -0.204664 1.455133 0.324460 -0.613008 1.569798 1.345961 0.487485 -0.184511 -0.337009 -1.171687 -0.228255 -2.416527 -2.417553 1.134124 -0.339742 0.495914 2.447458 -0.424979 0.078242 -0.647985 0.403673 0.597555 3.000486 2.521818 -2.247657 0.519519 0.857009 0.522442 -0.231843 0.396266 -0.507628 -2.363438 0.914895 -0.578684 0.370250 0.095410 -0.479105 -1.341775 0.395274 -2.969983 -0.359004 0.389565 -0.882320 0.016236 -0.070248 0.966809 3.474707 1.408963 -0.484659 0.676138 1.129564 0.159821 0.666368 0.257073 -0.033791 -0.458461 0.249297 -0.436181 -0.863065 -0.411003 -0.222182 -1.152747 -0.874567 1.819265 1.878356 0.004528 -0.961615 0.745338 -0.106127 0.091487 -0.622956 1.609805 1.475064 1.725746 1.516836 -0.856487 -0.257521 -2.355471 -0.426525 -3.632689 -2.160789 -1.506855 0.979947 0.556543 1.076393 -0.431230 2.818537 0.037110 0.764879 1.213581 2.973196 -2.026717 -0.562883 -0.978461 -0.088290 0.443789 -0.850384 0.800477 0.168112 -0.335173 -1.871108 -1.395534 0.781530 -0.217636 -1.180964 -0.787506 -0.158779 0.545158 -1.676437 -0.529869 -2.805781 -0.286375 0.353908 -3.310120 -0.979266 0.805358 1.216495 0.855969 -0.610657 -1.922451 0.429866 0.792952 -0.593549 -1.110447 -0.328910 1.739508 1.704531 0.079849 1.185032 1.128155 1.673203 3.000932 1.663675 -0.292038 -0.713859 0.083268 -0.544285 -0.064467 -0.279756 -0.007106 0.139117 -1.619089 1.152409 1.617252 -1.081009 -0.472174 -0.183041 -1.157032 0.683136 4.597849 -0.750834 1.521954 0.790475 -2.054027 0.811607 -1.722673 -1.256677 -0.049604 0.977328 2.137913 -1.675784 -1.016176 1.568871 2.448875 0.854290 -2.104025 0.866311 0.540464 0.590293 -1.233993 0.937936 0.689617 1.191198 -1.093414 -0.093257 2.039107 3.625543 -1.251369 -1.694536 0.716715 0.749084 1.179988 -1.121616 -0.373164 -0.745533 -0.504624 1.650559 0.568257 0.626568 2.160606 -2.973070 1.221203 0.259825 -0.948197 1.426424 0.564644 -1.148557 -0.528397 0.778408 2.069494 1.204741 0.482020 0.341056 -1.136326 -1.825241 -0.166149 0.771102 0.835144 -1.193906 1.757645 0.030409 -1.671442 -1.286615 -1.161470 -0.269941 -0.327867 -0.980607 1.006640 0.616770 -4.107996 2.540376 0.139293 -1.300883 -0.216479 -1.438506 1.754137 -1.887263 -2.169813 1.003839 -1.586521 -1.532989 0.064681 -0.453453 0.177197 0.946923 0.772757 -1.565592 -2.128822 2.257966 0.985699 1.742403 1.351847 0.925079 2.046598 -0.650471 -1.488680 -0.875939 -1.647736 1.508734 -0.186552 -1.439142 -0.524217 -1.056074 1.262905 2.711742 -0.875056 -0.566611 -1.221882 0.877880 -2.608851 -0.508998 1.085662 1.588748 -1.343577 0.638680 1.363394 -0.700152 -0.469047 -1.802794 -0.196782 -1.113421 -2.004839 0.150450 -1.898132 -0.210249 1.969396 -1.187201 -0.721686 0.862750 -0.332919 -0.101013 -0.307225 1.593958 2.570362 -1.648352 0.411578 -2.211972 1.275835 -2.687938 -2.458483 1.034904 -0.512867 -0.528841 -0.947561 0.107580 0.832856 -0.109888 -1.230061 -1.267151 0.179156 +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.320568 0.927111 0.570689 -0.832440 1.093889 0.873573 0.355510 0.216976 -0.812191 -1.697217 -0.413234 -1.467445 -2.155305 1.641597 -0.359326 0.248656 2.726647 0.382144 0.164329 -0.830113 1.154023 -1.112692 2.504555 2.794173 -2.529353 0.360305 1.260743 1.055574 0.446305 1.055505 0.393877 -2.162873 0.511864 -0.628972 1.382764 -1.395686 -0.274817 -0.182501 -0.225750 -3.924853 -0.508510 0.886459 -0.562795 0.160802 0.255205 1.121121 2.844398 1.458824 -1.227395 1.177291 1.341195 0.518148 0.667178 0.101794 -0.174708 0.001906 -0.251986 -0.244618 -0.499533 0.532131 -0.192670 -1.983197 0.047487 2.009383 2.492928 -0.460467 -0.581561 0.433320 -0.146935 0.314689 -0.224183 1.537727 1.038810 0.821559 1.719236 -2.146433 -0.657062 -4.397300 0.346271 -5.354794 -1.927719 -1.756991 1.431030 0.934515 0.648754 -0.553729 3.082010 -0.115991 0.652757 2.132705 2.757683 -1.466435 -0.398148 -1.604453 -0.748931 0.889113 -1.109143 0.090111 0.238116 0.023270 -1.555984 -1.941957 0.846008 -0.164995 -1.365799 -1.254798 -0.745612 1.714224 -2.295120 -0.962154 -2.749600 0.157069 -0.006975 -3.151526 -0.047638 -0.579115 1.057817 0.858509 -0.483620 -1.419138 0.433613 1.063671 -0.417026 -0.899767 -0.934112 2.071009 1.171000 -0.355698 0.569096 0.892227 0.854377 2.060625 1.947920 -0.565349 -0.800513 0.997307 -0.877882 -0.310154 -1.395374 -0.096663 1.508029 -1.604930 -0.241821 0.810079 -1.151708 -0.911719 0.797139 -1.721089 0.960528 5.793246 -0.392366 1.193878 0.827130 -2.025858 1.552165 -0.387488 -0.794777 0.922484 1.826984 1.728246 -2.544067 -1.177199 0.825588 2.695006 0.893991 -1.673898 -0.921541 -0.003712 0.161379 -0.598199 1.030919 0.343092 0.019359 -0.892870 -0.195250 1.195219 3.217292 -0.980131 -0.896471 0.030561 1.635899 -0.390269 -2.240214 0.014763 -1.622467 -0.440826 0.812795 -0.001564 0.894203 2.178690 -4.124944 1.670792 -0.345847 -0.368177 0.656687 0.212181 -0.583214 -3.038339 0.924511 1.666640 1.818227 0.050901 0.796504 -0.441138 -2.289957 -0.016790 0.512333 1.225769 -1.470577 1.985641 -0.381937 -1.370758 -1.399898 -0.320750 -0.804340 -0.973910 -0.661595 0.932454 1.080078 -3.440658 2.214663 -0.613962 -0.985338 0.341590 -0.546175 1.789415 -2.267189 -2.488705 1.120671 -0.551428 -1.548688 -0.624680 -0.885748 1.266314 0.221011 -0.593516 -1.106630 -2.620601 1.787441 -0.047655 1.504881 1.361816 0.524610 2.721846 0.105656 -1.373774 -1.368531 -1.356855 0.876069 -0.572536 -0.747773 -1.383319 -0.848000 1.244558 3.110956 -0.212460 -0.516667 -0.310602 2.060934 -2.099458 -0.733505 0.926119 0.937794 -0.540685 1.020107 1.184524 -1.602827 -0.817547 -2.077077 0.675440 -0.103758 -1.460130 0.901272 -2.191312 -0.040015 1.529583 -0.595564 -0.769499 1.266021 0.451772 -0.024226 -0.457175 2.264206 2.467305 -1.671177 0.437316 -2.004624 1.118918 -2.749267 -1.647288 -0.505336 0.487468 -0.062542 -0.287704 0.008163 0.855433 0.595565 -0.453164 -0.865226 -0.169405 +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.351759 0.299758 0.054979 -0.876332 0.912340 0.399917 0.347831 -0.155442 -0.734706 -0.932097 -0.096444 -1.630356 -1.261438 0.886332 -0.279886 0.756812 2.079344 0.104791 -0.065682 -0.672738 0.680568 -0.344410 2.119003 2.180476 -1.624988 0.258965 0.518030 0.799146 0.122604 0.177407 -0.122976 -1.292577 0.407126 -0.873064 0.644794 -0.641653 -0.307128 -0.154471 0.595678 -2.616147 -0.176259 0.435773 0.087103 0.052070 0.031299 0.802614 1.969575 1.141602 -0.586617 0.838204 1.122335 0.093047 0.700338 0.169664 -0.083828 0.156111 0.183889 -0.269075 -0.400955 -0.125849 -0.212227 -0.914199 0.141557 1.388996 1.637419 -0.240134 -0.751197 0.563190 0.437524 0.106187 0.112175 1.244873 0.406413 0.545269 1.130303 -1.745246 0.023114 -2.859121 0.104580 -3.431120 -1.554874 -0.865123 0.929170 0.385668 0.839186 -0.061639 2.338374 -0.326309 0.369398 1.023179 1.681266 -1.380925 -0.401760 -0.790918 -0.379966 0.393012 -0.642422 0.070995 0.500656 0.359179 -1.277827 -0.925575 0.830337 -0.032288 -0.960225 -0.886565 -0.084323 0.671436 -1.296207 -0.935026 -1.895992 0.404750 0.068272 -2.324277 0.058419 -0.303221 0.663701 0.428678 -0.644200 -1.392395 0.305617 0.478013 -0.510685 -0.578534 -0.776016 1.311096 1.094623 -0.039628 0.616182 0.720007 0.686117 2.137334 1.160306 -0.670237 -0.582245 0.640355 -0.758565 -0.002590 -0.769754 -0.353972 0.820371 -1.402749 0.280135 0.742489 -0.915565 -0.342958 0.787786 -0.719183 0.413092 3.959235 -0.420446 1.244031 0.986630 -1.321061 1.030025 -0.769510 -0.357076 0.428690 1.110091 1.159905 -1.800347 -0.995046 0.899956 1.959209 0.762884 -1.433216 -0.341811 0.392010 0.482342 -0.309708 0.528440 0.362733 0.483219 -0.836167 -0.038712 0.972241 2.764061 -0.615875 -0.358637 0.240008 1.017424 -0.071102 -1.694678 -0.304774 -1.542625 -0.363081 0.570494 0.447876 0.528947 1.695849 -2.663278 1.060721 -0.239647 -0.202557 1.125066 0.383069 -0.802659 -2.100888 0.226036 1.023386 1.323648 -0.243649 0.581041 -0.252014 -1.472188 -0.019082 0.321921 0.686821 -1.077386 1.404183 -0.159477 -1.051325 -0.560854 -0.286130 -0.426938 -0.522573 -0.355543 0.891196 0.778970 -2.372830 1.505248 -0.140101 -0.930167 0.350537 -0.695306 1.393244 -1.485509 -1.382336 0.925785 -0.628232 -0.689361 -0.347776 -0.374342 0.627532 0.164668 -0.018565 -1.103020 -1.618577 1.521746 0.073425 1.420122 1.003056 0.042283 1.363107 -0.264811 -0.885131 -0.818287 -0.800789 -0.078175 -0.280301 -0.810922 -0.846999 -0.653967 1.021250 2.028224 -0.347225 -0.199797 -0.105286 1.177574 -1.822444 -0.292863 0.690523 0.781065 -0.809891 0.749927 0.936384 -1.152372 -0.260798 -1.404794 0.171932 -0.437411 -1.072356 0.780397 -1.313749 0.064270 0.986203 -0.650595 -0.237786 0.792815 0.295412 -0.002612 -0.182006 1.734654 1.780755 -0.610955 0.041103 -1.642027 0.711268 -1.924417 -1.335854 0.108350 0.283827 -0.724612 -0.344183 0.319094 1.027032 0.266619 -0.598386 -0.913320 0.114505 +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.190498 -0.798156 -0.980785 -1.793056 1.739533 0.956752 0.963179 -1.159809 -2.151308 -1.334258 0.763227 -3.950782 -2.055226 2.169188 -0.672931 2.707299 4.124321 0.042956 -0.614000 -1.324053 1.694213 -0.032048 4.628420 4.608548 -2.695711 0.219990 0.068356 0.985923 0.068473 -0.687538 0.124180 -2.484794 1.387709 -2.837067 0.250370 -0.802427 -0.782321 0.580492 2.834781 -4.614714 -0.113252 0.751448 0.517162 0.026326 -0.246323 1.677672 3.050401 2.477746 -0.500743 2.430925 2.199934 -0.561289 1.527688 0.403437 0.133999 0.248673 -0.320268 -0.324278 -0.851272 -0.762962 -0.829109 -0.743379 0.182335 2.645942 3.226476 -0.406717 -1.929589 1.526781 1.122716 0.493519 0.754437 2.607931 0.660774 0.596538 2.220337 -3.587222 -0.318274 -5.540302 -0.039877 -6.231623 -2.884867 -0.277688 2.149135 0.440066 2.105212 -0.189979 4.586834 -0.700987 -0.687156 2.303899 3.256043 -3.038885 -0.992657 -0.830309 -0.457352 0.103852 -1.224711 0.602201 1.633140 1.001648 -2.943664 -1.563978 1.211990 0.084018 -1.654999 -2.349951 0.297237 1.107847 -2.253987 -2.122742 -2.911167 1.612793 0.240165 -4.765848 -0.131962 -0.677627 0.947818 0.867862 -2.208258 -2.815100 1.008567 0.304841 -1.189512 -1.449834 -0.452542 2.260416 2.325616 0.723544 0.976794 1.866797 1.174065 5.279711 1.530973 -1.716475 -0.524073 0.898272 -1.015815 1.140117 -1.218073 -1.128149 1.456909 -3.081080 1.229885 1.408081 -1.835857 -0.569027 2.127687 -0.312554 -0.097836 7.629599 -0.922192 3.406361 2.882843 -2.309405 1.782434 -2.279547 0.304475 0.737393 1.962436 1.723236 -3.481210 -2.258757 2.661507 4.040723 1.695999 -3.548350 -0.539447 1.390502 1.613814 -0.739853 1.033157 0.878662 1.568941 -1.903808 0.100942 2.104822 6.014810 -1.751351 0.211955 0.737898 2.089528 0.437367 -3.429229 -1.044279 -3.520029 -0.619802 1.652156 1.566360 0.964996 3.515759 -4.506140 2.081902 -0.534583 0.062676 2.401612 1.629968 -2.579232 -4.011773 -0.638672 1.428460 2.519161 -0.290785 1.221195 0.091347 -3.072553 0.113473 0.650046 0.754890 -2.059906 2.898074 -0.405559 -1.690605 -0.614539 0.108396 -1.015854 -1.096518 -0.375119 2.357925 1.814997 -4.346164 2.454436 0.321999 -2.113877 0.527094 -1.063190 3.409574 -2.494001 -2.447075 2.115895 -1.848196 -1.385927 -0.696748 -0.352143 0.593781 0.660085 0.530128 -2.245541 -3.114521 3.581455 0.110682 3.682945 1.812623 -0.692587 2.149421 -1.562685 -1.947923 -1.526528 -2.003102 -0.216755 -0.262652 -2.030201 -1.677072 -0.973539 2.338604 3.028891 -0.349735 -1.191563 -0.287732 2.319230 -3.982755 -0.001162 1.533241 2.174764 -2.053075 1.506048 2.067817 -2.445463 0.549283 -2.519025 0.023163 -1.846834 -1.916534 1.854593 -1.568794 0.603082 0.738406 -1.041943 0.311958 1.252182 0.987113 -0.020742 0.138447 3.706719 3.485811 -0.740718 -0.765304 -3.688307 1.566248 -3.446837 -3.148980 0.859599 0.769998 -2.416198 -0.899663 0.709246 2.655298 0.879319 -2.043590 -2.399273 0.909466 +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.171616 0.285102 0.085069 -0.223197 0.598656 0.390703 0.262288 -0.233097 -0.394900 -0.451887 0.041636 -0.689384 -0.747833 0.761721 -0.110717 0.490311 1.095799 0.083628 -0.018663 -0.418173 0.569364 -0.431027 1.230978 1.112902 -0.951600 0.210147 0.657284 0.297963 0.231521 0.315332 -0.116994 -0.696701 0.514474 -0.718280 0.190355 -0.435893 -0.151904 -0.180781 0.422666 -1.421126 -0.149192 -0.003051 -0.184856 0.012354 -0.091241 0.466782 1.074448 0.655462 -0.307249 0.710484 0.563066 -0.095681 0.236379 0.151114 0.183739 0.122103 0.273277 0.131738 -0.325348 0.013527 -0.123185 -0.764941 -0.115878 0.756691 1.024564 -0.186171 -0.251033 0.481990 -0.145550 0.148773 0.019707 0.590262 0.253689 0.332087 0.738453 -1.137400 -0.189006 -1.799669 -0.268087 -2.287357 -0.833699 -0.485590 0.464353 -0.366875 0.608724 0.331308 1.184684 0.071641 0.045238 0.478006 1.206880 -0.906137 -0.267907 -0.268244 -0.137592 0.266603 -0.511887 0.242613 0.527257 -0.205139 -0.736181 -0.842610 0.686920 0.115006 -0.523042 -0.641880 -0.183104 0.660221 -0.933094 -0.641338 -0.977562 -0.179188 -0.238008 -1.315363 -0.126554 -0.017011 0.842650 0.429047 -0.267736 -0.886430 0.240512 0.502455 -0.128719 -0.726445 0.392465 0.582425 0.614396 0.188369 0.341562 0.336296 0.431649 1.362142 1.024561 -0.221468 -0.196787 0.150827 -0.324729 0.234710 -0.359214 -0.230876 0.293588 -0.735252 0.340281 0.556013 -0.496030 -0.336784 0.877155 -0.337975 0.220702 2.090262 -0.086290 0.664128 0.490805 -0.912185 0.185494 -0.563815 -0.266671 0.353362 0.713854 0.569552 -0.906416 -0.554245 0.498814 1.097345 0.429914 -1.163615 -0.526339 -0.031270 0.222683 -0.211294 0.304125 0.232900 0.285045 -0.460423 -0.051821 0.563299 1.461008 -0.791797 -0.706431 0.238617 0.328406 -0.102024 -1.196775 -0.180802 -0.668952 -0.084104 0.233367 0.070234 0.223158 0.928961 -1.786005 0.680292 -0.294484 -0.298687 0.633038 0.431977 -0.507825 -1.044090 0.255869 0.641504 0.675888 0.121274 0.244181 -0.063001 -0.936318 -0.054351 0.129017 0.264332 -0.477353 0.792022 -0.055019 -0.612623 -0.574836 0.018105 0.064103 -0.454118 -0.046870 0.516876 0.358837 -1.863781 0.854240 -0.132406 -0.570874 0.235545 -0.196689 0.870616 -0.826085 -1.046617 0.537827 -0.419041 -0.467215 -0.250522 -0.218494 0.350231 0.294003 0.045666 -0.417927 -0.794049 0.695089 -0.068095 0.638863 0.551161 0.207044 1.124369 -0.616545 -0.722536 -0.657951 -0.157719 0.201260 -0.314292 -0.454728 -0.720047 -0.341082 0.692870 1.159530 0.046399 -0.189335 -0.293797 0.762175 -1.394074 -0.229404 0.580605 1.113069 -0.440647 0.469791 0.614544 -0.610427 -0.178291 -0.515942 -0.182352 -0.238947 -0.646085 0.400893 -0.665662 0.060512 0.477541 -0.245639 -0.109234 0.529714 0.045876 0.201792 -0.238042 0.725424 1.471998 -0.955412 -0.130704 -0.814517 0.406940 -1.109694 -0.917664 0.245428 0.279398 -0.339184 -0.193853 0.106912 0.451841 0.220887 -0.533968 -0.417571 -0.099009 +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.348788 0.455384 0.113303 -0.593363 1.276888 0.624843 0.570883 -0.197130 -0.753631 -0.986911 0.075070 -1.783271 -1.667205 1.145021 -0.214618 0.994751 2.372018 0.024067 -0.017114 -0.826776 0.796824 -0.442074 2.711698 2.488541 -1.899978 0.402533 0.795630 0.609691 0.166947 0.093881 -0.529437 -1.366218 1.060072 -1.430936 0.279942 -0.582270 -0.370931 -0.608181 0.821556 -2.814161 -0.238085 -0.051074 -0.625599 0.050189 -0.160157 1.567085 2.446021 1.360609 -0.635538 1.312407 1.163590 -0.413808 0.617990 0.336007 0.024736 0.055925 0.198455 0.203792 -0.759495 -0.221384 -0.270837 -1.559602 -0.218199 1.460387 1.860887 -0.363310 -0.791264 0.984141 0.139732 0.059942 0.118661 1.334701 0.998651 0.612365 1.602990 -2.024022 -0.341040 -3.206750 -0.605533 -4.477641 -1.902647 -1.011189 1.209879 -0.586003 1.159836 0.133815 2.547528 -0.068890 0.340626 1.064686 2.222342 -2.093153 -0.651355 -0.653980 -0.050468 0.372128 -0.935107 0.449265 0.979621 -0.237607 -1.640067 -1.265152 1.279268 0.014335 -1.044534 -1.320888 -0.114717 0.872390 -1.705474 -1.135518 -2.416224 -0.135830 -0.024092 -2.754919 0.052049 0.308877 1.833461 0.849713 -0.689224 -1.690096 0.422496 0.726851 -0.447545 -1.170880 0.191794 1.504861 1.347530 0.356887 1.006547 0.903309 1.012791 2.867600 2.077175 -0.508267 -0.643592 0.397909 -0.873811 0.403050 -0.560940 -0.485505 0.810688 -1.675535 0.813425 1.061580 -1.096964 -0.435884 1.557705 -0.485209 0.420083 4.019358 -0.331123 1.524469 1.075421 -1.727568 0.742439 -1.523180 -0.501644 0.521036 1.334575 1.276348 -2.052257 -1.076760 1.159344 2.251711 0.920671 -2.511938 -0.285146 0.316652 0.777013 -0.622387 0.532361 0.651652 1.059804 -1.035292 0.032334 1.377977 3.403277 -1.386470 -1.007545 0.496224 0.502837 0.310287 -2.254483 -0.465121 -1.114342 -0.361067 0.879758 0.521051 0.374370 1.971000 -3.081467 1.143343 -0.633306 -0.514231 1.349905 0.932830 -1.176845 -1.805312 0.329468 1.288809 1.413305 0.380380 0.471472 -0.294454 -1.685098 -0.091852 0.418143 0.582824 -0.927341 1.594072 -0.057792 -1.319664 -0.850311 -0.475966 -0.012069 -0.482318 -0.184656 1.094126 0.559068 -3.736057 1.752764 -0.163039 -1.382074 0.311656 -0.737990 1.879786 -1.667511 -1.908391 1.170870 -1.117266 -1.124916 -0.566556 -0.344775 0.449978 0.518702 0.064355 -1.095836 -2.018335 1.966902 0.207363 1.611169 1.169935 0.227740 2.286811 -0.902112 -1.437940 -1.154437 -0.851089 0.395080 -0.646293 -1.107257 -0.936455 -0.753501 1.329739 2.327217 -0.301099 -0.152092 -0.440440 1.227616 -2.926225 -0.427738 1.171347 2.352532 -0.954116 1.168110 1.337340 -1.268923 -0.246683 -1.258044 -0.341545 -0.645083 -1.415868 0.714198 -1.514891 0.103802 1.138337 -0.537668 -0.179322 0.886967 -0.072651 0.266155 -0.508713 1.766557 3.300086 -1.596883 -0.160159 -1.856692 1.038601 -2.272804 -2.014548 0.689214 0.481537 -0.792682 -0.478433 0.523571 1.022889 0.254903 -1.458332 -1.174287 0.106289 +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.016250 -1.410348 -0.630073 -3.336992 2.844082 3.320656 1.511196 -3.243980 -4.191301 -1.278445 1.876338 -6.095285 -3.397538 5.183983 -1.611922 3.851991 6.569857 -0.032963 -1.806068 -2.589792 3.599348 0.431036 7.677381 8.046787 -5.189409 0.372199 0.719313 1.262881 1.526854 -0.231443 0.813972 -3.942254 2.168656 -4.022548 0.407400 -1.587313 -1.524162 1.158062 4.851507 -8.177230 -0.478171 1.085169 -0.133301 0.186572 0.192645 3.577729 4.875164 4.190200 -0.597812 4.532935 3.673307 -0.278156 2.203557 0.147854 1.183514 -0.195455 1.037684 0.796137 -0.701428 -0.541064 -1.267277 -0.084938 -0.127982 5.269923 6.327094 -0.357555 -2.966873 1.693695 1.819314 1.236657 0.977798 4.478810 1.091692 2.083890 3.437004 -5.778296 -0.401744 -10.302105 0.706474 -9.841997 -4.249447 0.286622 3.802986 0.053758 2.838388 -0.892015 7.708238 0.131690 -2.622070 4.539231 6.423587 -4.381781 -1.170102 -0.764887 -1.910783 0.161686 -2.009911 2.361402 2.394433 1.387211 -4.918746 -3.521118 1.180351 0.063614 -3.038588 -2.985885 0.004912 3.314546 -3.529450 -2.626449 -2.714625 3.145492 -0.038397 -8.395575 -1.843234 -2.843304 2.024110 1.147275 -3.826853 -4.044764 1.814259 0.774129 -2.012635 -2.384739 -0.083285 3.725178 4.510640 1.457588 -0.015074 2.963793 2.003403 7.971441 1.253360 -3.130998 0.182857 1.076395 -0.680175 2.435276 -2.643762 -0.924565 2.681880 -4.132392 1.949595 2.126262 -2.727425 -1.189260 3.937638 -0.642733 -0.708134 15.338991 -1.507192 6.077312 4.761884 -4.235163 1.938133 -2.818960 0.793680 2.067871 3.405726 2.587963 -6.667918 -3.970605 4.675406 7.425375 2.622994 -6.551813 -1.145969 2.190062 0.742282 -1.976238 2.819252 0.603875 1.059568 -2.437705 -0.365665 3.521149 9.709541 -3.405215 -1.148907 0.491737 3.865749 0.652300 -4.558192 -1.078231 -4.666021 -0.192839 2.898299 2.205954 2.798764 5.736669 -9.771366 4.230757 -0.358097 -0.201528 3.923561 2.844133 -4.582396 -5.431534 -0.713136 2.302813 4.020786 0.140983 0.723593 0.884194 -6.133839 0.296718 1.205981 0.809207 -3.970385 5.089232 0.261672 -2.442714 -1.616327 0.650827 -1.626069 -2.079285 -1.581828 4.142603 1.570627 -8.556557 4.108849 0.947366 -2.930604 0.231687 -1.867447 5.420669 -4.202483 -4.460302 2.891974 -2.630315 -2.682311 -1.740535 -1.325036 1.338707 1.278596 2.973583 -4.765310 -5.245460 5.359783 -1.222534 6.195543 3.128155 -1.005555 3.894378 -3.463573 -3.213617 -3.241714 -4.019653 2.465973 1.056115 -3.617902 -1.780230 -1.640674 3.718014 4.526454 -0.179208 -3.322441 -1.394107 4.624656 -5.822788 -0.061191 1.900630 3.785845 -3.541067 2.111319 2.827207 -3.796700 1.505847 -3.889291 -1.295929 -3.479764 -2.885228 3.976135 -1.337036 1.558239 -0.058165 -1.041857 0.446622 2.656646 1.561171 0.018087 1.495909 5.797992 6.334077 -2.194840 -1.111692 -6.490350 3.757146 -5.573448 -5.479989 1.243833 -0.046852 -3.523122 -1.722752 -0.598267 4.372054 2.612817 -3.316153 -3.545811 2.383653 +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.055721 0.206101 0.029314 0.069797 0.268239 0.103889 0.140133 0.012356 -0.105904 -0.259218 -0.080441 -0.269648 -0.379423 0.320585 -0.020894 0.227303 0.476265 0.147013 0.079621 -0.075430 0.113198 -0.316335 0.497345 0.397496 -0.291368 0.098414 0.153642 0.040550 -0.140049 0.326903 -0.151091 -0.416451 0.325269 -0.239388 0.080850 -0.220150 -0.030653 -0.049026 0.009441 -0.573540 -0.044839 0.095905 0.028755 -0.025936 -0.070367 0.150266 0.496235 0.249216 -0.010114 0.271803 0.045853 -0.061991 0.131044 0.145462 0.126330 0.138174 -0.003060 -0.204883 -0.318871 0.050351 -0.097609 -0.544716 -0.137246 0.221520 0.370732 -0.069004 -0.031805 0.167305 -0.297813 0.052369 -0.009252 0.148194 0.195543 0.069372 0.225238 -0.276637 -0.107665 -0.390386 -0.255055 -0.947757 -0.332424 -0.324235 0.178240 0.115178 0.279465 0.051715 0.430997 0.010474 0.136814 0.062405 0.561185 -0.495000 -0.181460 -0.154637 0.112636 0.081144 -0.244466 -0.025786 0.185397 -0.194862 -0.304603 -0.357206 0.373441 0.065958 -0.149217 -0.245548 -0.098948 0.291994 -0.526170 -0.319368 -0.581377 -0.274288 -0.126046 -0.467328 0.213083 0.200062 0.184965 0.304624 -0.082737 -0.398069 0.179612 0.267307 -0.010888 -0.355408 -0.008706 0.310595 0.041761 -0.010566 0.235722 0.146472 0.131019 0.553977 0.486767 -0.021603 -0.095611 0.074968 -0.168143 0.046834 -0.083522 -0.189746 -0.022388 -0.412351 0.062092 0.198081 -0.241078 -0.019211 0.049881 -0.115842 0.198929 0.365278 -0.073741 0.168234 0.071347 -0.449895 0.199589 -0.289328 -0.160333 0.014707 0.320426 0.236827 -0.182254 -0.216087 0.155504 0.385019 0.203779 -0.306668 -0.173958 -0.177936 0.208873 -0.036345 0.088686 0.192672 0.152570 -0.251319 -0.006505 0.108649 0.651180 -0.352823 -0.091216 0.184939 -0.077427 0.011536 -0.515491 -0.107422 -0.231400 -0.078307 -0.046959 -0.028388 -0.054085 0.386889 -0.443180 0.333814 -0.277003 -0.201673 0.229404 0.049191 -0.101016 -0.380964 0.078257 0.351371 0.338267 0.118709 0.179159 -0.111762 -0.334967 -0.058063 -0.017908 0.206324 -0.109426 0.256901 -0.056448 -0.374073 -0.281535 -0.072393 0.088381 -0.262839 0.008923 0.146834 0.436212 -0.669384 0.386236 -0.064397 -0.225361 0.154495 0.127119 0.279385 -0.326465 -0.478102 0.199502 -0.241719 -0.252346 -0.042636 -0.059496 0.123189 0.023103 -0.266443 0.023558 -0.288854 0.300338 0.121895 0.176713 0.188510 0.169860 0.472613 0.064857 -0.403700 -0.118724 -0.090045 -0.056987 -0.430303 -0.050424 -0.109975 -0.136003 0.337676 0.559229 0.155757 -0.039620 -0.069651 0.323861 -0.449195 -0.108062 0.403073 0.312722 -0.074246 0.156326 0.370931 -0.266481 -0.232703 -0.171363 0.052311 -0.032022 -0.289661 0.007305 -0.435206 -0.044371 0.271111 -0.097101 -0.152633 0.167323 -0.008967 0.020308 -0.223586 0.368424 0.379943 -0.410631 0.095163 -0.218567 0.084446 -0.457506 -0.285584 0.043748 0.335263 -0.133306 -0.018848 0.150246 0.071741 -0.026210 -0.190252 -0.156020 -0.234474 +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.032888 -0.322204 0.492993 -1.779573 1.606837 1.502944 0.773173 -1.317618 -2.151821 -1.234982 0.621482 -3.111092 -2.081795 2.739037 -0.763381 1.844426 3.754441 0.186503 -0.644388 -1.548154 1.900127 -0.635132 4.082402 4.447970 -3.049462 0.356790 0.719737 1.098175 0.826252 0.572978 -0.004732 -2.318088 1.026669 -2.071016 0.725215 -1.216099 -0.884120 0.666062 2.088032 -4.890689 -0.294574 0.598082 -0.261763 0.185894 0.168495 1.797088 3.089586 2.158943 -0.513034 2.455112 1.991755 -0.382166 1.311740 0.073670 0.701296 0.227869 0.788579 0.348731 -0.551051 0.051832 -0.784649 -0.891772 0.150267 2.792241 3.350287 -0.355277 -1.596267 0.747918 0.746277 0.588160 0.255173 2.472423 0.726593 1.153885 2.038787 -3.658752 0.008667 -5.955594 0.366773 -5.756774 -2.663288 -0.413266 2.045443 0.419335 1.586073 -0.671511 4.302837 -0.247841 -0.965662 2.107378 3.721173 -2.567304 -0.556341 -0.700357 -0.843935 0.064682 -1.051451 0.835523 0.919861 0.435317 -2.631149 -2.098829 1.366660 -0.038951 -1.701400 -1.307584 -0.282081 1.978690 -2.461313 -1.669231 -2.394941 1.246685 0.052032 -4.539079 -0.226602 -1.257164 1.409197 0.879322 -2.005371 -2.432681 1.081161 0.871860 -1.033242 -1.407734 -0.569773 2.833946 2.380337 0.383506 0.258925 1.525153 1.049735 4.051508 1.501887 -1.498506 -0.189652 0.868330 -0.873077 0.837854 -1.488286 -0.453668 1.416789 -2.281520 0.366336 1.229687 -1.559651 -0.373855 2.183225 -0.543484 -0.084855 8.722887 -0.954375 3.033727 2.256876 -2.295166 1.948931 -1.185527 0.144343 1.097863 1.876739 1.831974 -4.523058 -2.115446 2.365605 3.947333 1.419218 -3.690819 -1.097645 0.732813 0.579923 -0.769147 1.618099 0.314851 0.793186 -1.542059 -0.169053 1.628768 5.674120 -2.012861 -1.400373 0.279280 1.266033 0.132012 -3.395828 -0.589839 -2.518417 -0.389080 1.277058 0.998263 1.441318 3.232410 -5.790794 2.422825 -0.460036 -0.744960 2.448499 1.054851 -2.047060 -3.721341 -0.278343 1.541395 2.445891 0.273615 0.545652 0.213287 -3.426129 0.151663 0.571343 0.816930 -2.410511 2.951604 0.009778 -1.750838 -0.980873 -0.216612 -1.065667 -1.278959 -0.959284 2.075353 0.998872 -5.170802 2.433548 0.450577 -1.506077 0.554853 -0.793774 2.843139 -2.357285 -2.720940 1.607808 -1.247775 -1.641354 -1.082088 -0.740079 0.692567 0.388432 0.596359 -2.471105 -3.440468 2.827631 -0.619434 3.230363 1.806456 -0.303314 2.536680 -0.649058 -1.806601 -1.762295 -1.813970 1.254044 0.183795 -1.687586 -1.958790 -1.028495 1.995612 3.027433 -0.074140 -1.143393 -0.991124 2.742824 -3.595305 -0.282573 1.251290 1.791812 -1.711739 1.054110 1.771298 -2.032032 0.348766 -2.483342 -0.737423 -1.645281 -1.563815 2.013544 -1.338227 0.544315 0.503122 -0.815984 -0.234272 1.486048 0.792819 -0.218272 0.396060 3.444404 4.090552 -1.415889 -0.414653 -3.316787 1.945270 -3.181501 -2.719713 0.308098 0.425701 -1.757356 -0.949581 0.090656 2.365061 1.292027 -1.759808 -1.587561 0.810895 +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.171616 0.285102 0.085069 -0.223197 0.598656 0.390703 0.262288 -0.233097 -0.394900 -0.451887 0.041636 -0.689384 -0.747833 0.761721 -0.110717 0.490311 1.095799 0.083628 -0.018663 -0.418173 0.569364 -0.431027 1.230978 1.112902 -0.951600 0.210147 0.657284 0.297963 0.231521 0.315332 -0.116994 -0.696701 0.514474 -0.718280 0.190355 -0.435893 -0.151904 -0.180781 0.422666 -1.421126 -0.149192 -0.003051 -0.184856 0.012354 -0.091241 0.466782 1.074448 0.655462 -0.307249 0.710484 0.563066 -0.095681 0.236379 0.151114 0.183739 0.122103 0.273277 0.131738 -0.325348 0.013527 -0.123185 -0.764941 -0.115878 0.756691 1.024564 -0.186171 -0.251033 0.481990 -0.145550 0.148773 0.019707 0.590262 0.253689 0.332087 0.738453 -1.137400 -0.189006 -1.799669 -0.268087 -2.287357 -0.833699 -0.485590 0.464353 -0.366875 0.608724 0.331308 1.184684 0.071641 0.045238 0.478006 1.206880 -0.906137 -0.267907 -0.268244 -0.137592 0.266603 -0.511887 0.242613 0.527257 -0.205139 -0.736181 -0.842610 0.686920 0.115006 -0.523042 -0.641880 -0.183104 0.660221 -0.933094 -0.641338 -0.977562 -0.179188 -0.238008 -1.315363 -0.126554 -0.017011 0.842650 0.429047 -0.267736 -0.886430 0.240512 0.502455 -0.128719 -0.726445 0.392465 0.582425 0.614396 0.188369 0.341562 0.336296 0.431649 1.362142 1.024561 -0.221468 -0.196787 0.150827 -0.324729 0.234710 -0.359214 -0.230876 0.293588 -0.735252 0.340281 0.556013 -0.496030 -0.336784 0.877155 -0.337975 0.220702 2.090262 -0.086290 0.664128 0.490805 -0.912185 0.185494 -0.563815 -0.266671 0.353362 0.713854 0.569552 -0.906416 -0.554245 0.498814 1.097345 0.429914 -1.163615 -0.526339 -0.031270 0.222683 -0.211294 0.304125 0.232900 0.285045 -0.460423 -0.051821 0.563299 1.461008 -0.791797 -0.706431 0.238617 0.328406 -0.102024 -1.196775 -0.180802 -0.668952 -0.084104 0.233367 0.070234 0.223158 0.928961 -1.786005 0.680292 -0.294484 -0.298687 0.633038 0.431977 -0.507825 -1.044090 0.255869 0.641504 0.675888 0.121274 0.244181 -0.063001 -0.936318 -0.054351 0.129017 0.264332 -0.477353 0.792022 -0.055019 -0.612623 -0.574836 0.018105 0.064103 -0.454118 -0.046870 0.516876 0.358837 -1.863781 0.854240 -0.132406 -0.570874 0.235545 -0.196689 0.870616 -0.826085 -1.046617 0.537827 -0.419041 -0.467215 -0.250522 -0.218494 0.350231 0.294003 0.045666 -0.417927 -0.794049 0.695089 -0.068095 0.638863 0.551161 0.207044 1.124369 -0.616545 -0.722536 -0.657951 -0.157719 0.201260 -0.314292 -0.454728 -0.720047 -0.341082 0.692870 1.159530 0.046399 -0.189335 -0.293797 0.762175 -1.394074 -0.229404 0.580605 1.113069 -0.440647 0.469791 0.614544 -0.610427 -0.178291 -0.515942 -0.182352 -0.238947 -0.646085 0.400893 -0.665662 0.060512 0.477541 -0.245639 -0.109234 0.529714 0.045876 0.201792 -0.238042 0.725424 1.471998 -0.955412 -0.130704 -0.814517 0.406940 -1.109694 -0.917664 0.245428 0.279398 -0.339184 -0.193853 0.106912 0.451841 0.220887 -0.533968 -0.417571 -0.099009 +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) = -0.732031 0.927463 1.043748 -2.063321 1.483523 1.109076 0.360394 0.715445 -1.669017 -3.687491 -0.465603 -2.443198 -3.810987 2.756333 -1.144133 -0.396725 4.552835 0.602650 0.373140 -1.668485 1.953711 -1.516016 4.070267 5.045613 -4.625090 0.134324 1.716774 2.223532 1.197654 1.153585 2.170264 -4.126785 0.388742 -0.180089 2.702708 -2.517057 -0.195976 0.312454 -1.124063 -6.680980 -0.932441 1.770948 -1.641161 0.571794 0.817372 2.523626 4.400952 2.536837 -2.728458 2.206627 2.937891 1.815085 0.820727 -0.120124 -1.234392 -1.094168 -1.800908 -1.028412 -0.297785 1.216300 -0.240517 -3.131725 0.314841 3.749125 4.436940 -0.908477 -0.908700 0.132246 0.099485 0.805847 -0.067979 2.683736 2.150199 1.229868 3.057018 -3.289154 -1.876162 -8.615837 1.447651 -9.660691 -2.984821 -2.821763 3.340581 2.857720 -0.105765 -1.703603 5.337644 0.047966 0.864910 5.487878 4.288767 -1.388488 -0.543999 -3.140695 -1.943578 1.780296 -1.945132 0.303785 -0.843204 1.439862 -2.461511 -2.949032 0.064893 -0.944944 -2.289338 -2.401888 -1.464428 2.924706 -4.289830 -0.643960 -4.418768 1.651140 1.057211 -5.483734 -0.390794 -1.927499 2.194259 1.035230 -0.894592 -0.916062 0.507287 1.186423 -0.827915 -0.259882 -2.888182 3.518481 1.903477 -0.660075 0.389331 1.709786 1.204059 2.553298 2.364831 -1.273662 -1.613226 2.066457 -1.193405 -0.758045 -2.941486 0.439498 3.781806 -2.444676 -0.351060 0.640103 -1.849967 -2.832742 0.686392 -3.621806 1.700488 10.527355 -0.580182 2.142374 1.747911 -2.963183 2.488375 -0.214352 -0.764148 2.017339 3.107869 2.691447 -3.779452 -1.942500 1.371493 4.617329 1.423308 -2.233917 -1.141184 0.725955 0.063368 -1.239482 1.923957 0.434190 -0.832150 -1.186680 -0.364996 2.238030 4.728964 -0.405727 -0.206570 -0.648732 4.310927 -0.614042 -2.584391 0.507924 -2.193550 -0.600205 2.660928 0.207618 1.919060 3.687730 -7.603968 2.567445 0.241653 0.755646 -0.617299 0.367940 -1.013907 -5.775324 1.658669 2.457396 3.014878 -0.032962 2.014735 -0.303156 -3.934344 0.214181 1.253176 2.308175 -2.735514 3.324550 -0.555790 -1.892106 -2.371552 -0.406942 -2.370096 -0.859799 -1.478725 1.589452 1.584626 -5.671431 3.543207 -1.595788 -1.572312 -0.178197 -1.220413 3.632488 -4.153039 -3.993333 1.838898 -0.965119 -3.489055 -1.420691 -1.641199 2.329501 -0.136465 -0.839810 -1.876280 -4.752567 3.306766 -0.235800 2.664647 2.170268 0.467203 4.927039 -0.137379 -1.672726 -2.342051 -3.180252 2.711681 -0.733635 -1.232026 -1.191956 -1.055369 1.547854 5.032098 -0.793286 -1.608464 0.529985 3.711725 -2.589989 -1.368564 0.903288 1.144730 -0.474702 2.495673 1.553350 -3.198760 -1.100495 -4.322207 2.187742 0.037596 -2.337147 1.905452 -3.475043 0.288667 2.297078 -0.293601 -1.581204 2.228998 1.226636 -0.258733 -0.338321 4.305591 4.269811 -2.127694 1.091791 -3.823169 2.052111 -4.654313 -2.932681 -1.617476 0.347340 0.670118 -0.207496 -1.114001 1.682618 1.485452 -0.118515 -1.651654 0.783289 +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.493866 1.049669 1.030732 -1.488845 1.361228 1.427735 0.347678 -0.041617 -1.176522 -1.835004 -0.530896 -1.960018 -2.407069 2.097052 -0.615579 0.371961 3.400048 0.447858 -0.045239 -0.901737 1.556081 -1.227166 3.031788 3.591514 -3.173438 0.370436 1.435607 1.526458 0.594077 1.612245 0.213345 -2.598735 0.219470 -0.629067 1.819999 -1.830234 -0.372384 -0.018052 -0.076296 -4.944088 -0.559690 1.265820 -0.548059 0.156492 0.451203 1.012014 3.512941 1.827755 -1.478786 1.131509 1.762156 0.862614 0.890687 0.020781 -0.077293 0.183599 0.225782 -0.181933 -0.350756 0.583238 -0.269779 -1.923845 0.358964 2.696844 3.173373 -0.399173 -0.784008 0.263655 0.150746 0.288913 -0.272131 1.984477 0.924335 1.228594 1.876920 -2.729368 -0.231777 -5.411584 0.865120 -5.622645 -2.279612 -1.972468 1.443158 1.621413 0.858731 -1.009057 3.941971 -0.350166 0.684431 2.501650 3.344958 -1.789101 -0.342301 -2.059475 -1.382611 0.943031 -1.216559 0.005762 -0.142830 0.252579 -1.882114 -2.398050 0.892802 -0.080752 -1.744994 -1.150284 -0.845162 2.127475 -2.532035 -1.244207 -2.975639 0.557724 -0.116455 -3.980666 -0.170085 -1.327372 0.782721 0.708759 -0.744583 -1.974103 0.541425 1.388887 -0.687115 -0.944297 -1.827613 2.766561 1.610786 -0.622576 0.367986 0.790926 0.967944 2.337645 1.899349 -0.966653 -0.889719 1.277903 -1.188641 -0.539369 -1.953304 0.024697 1.824973 -1.913814 -0.810904 1.090739 -1.395728 -0.684268 0.831343 -2.095567 1.129906 8.201967 -0.676409 1.577450 1.034715 -2.572582 2.382807 -0.008259 -0.915938 1.132330 2.096303 2.200597 -3.949467 -1.583365 1.137040 3.424844 1.125819 -1.850792 -1.080551 0.062560 -0.092457 -0.653113 1.364402 0.227629 -0.380196 -1.133023 -0.381356 1.358257 4.241446 -0.955517 -1.212968 0.019833 2.028747 -0.721833 -2.656820 0.016000 -2.266496 -0.494417 0.852225 -0.038219 1.445599 2.769644 -5.317057 2.176371 -0.317554 -0.640737 1.236881 -0.112470 -0.714000 -3.638498 1.045159 2.050006 2.309191 -0.156882 0.825701 -0.480966 -2.910473 0.019729 0.592290 1.554072 -2.074948 2.500689 -0.270436 -1.871046 -1.644094 -0.528647 -1.256223 -1.381414 -1.172910 1.195145 0.993682 -3.871602 2.835818 -0.449810 -0.932981 0.557040 -0.858968 1.952619 -2.815262 -2.970010 1.370308 -0.370471 -1.441381 -0.736794 -1.118061 1.693711 0.195050 -0.563652 -1.878856 -3.492646 1.952852 -0.294464 2.019817 1.677162 0.572900 2.795300 0.770794 -1.346962 -1.772186 -1.782514 1.054310 -0.181229 -1.042906 -1.817556 -1.115728 1.582772 3.728338 -0.387413 -0.585585 -0.452078 2.641065 -2.072072 -0.744851 0.882225 0.349970 -0.963466 0.741710 1.294462 -1.886752 -0.971649 -2.654522 0.775100 -0.301939 -1.756887 1.318903 -2.458129 0.042530 1.773980 -0.778880 -1.012607 1.518178 0.758584 -0.178062 -0.186115 3.033053 2.461044 -1.465060 0.641370 -2.605496 1.478062 -3.413845 -1.901341 -0.731566 0.283487 -0.281327 -0.402143 0.009976 1.318992 0.794335 -0.093685 -0.780795 -0.166706 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::iter_swap(int*, int*) = -0.019407 0.273966 0.259081 -0.080884 0.309645 0.050318 0.142235 0.149091 -0.215330 -0.410622 -0.115160 -0.338108 -0.570570 0.421248 -0.058553 0.048956 0.723007 0.215387 0.084231 -0.283319 0.175187 -0.420670 0.696175 0.698475 -0.641457 0.165610 0.288206 0.285831 0.133719 0.399262 -0.087983 -0.435110 0.270733 -0.149966 0.310749 -0.408235 -0.038281 -0.122254 -0.198392 -1.032986 -0.091631 0.145920 -0.024162 0.034956 0.046384 0.528158 0.740696 0.371437 -0.224709 0.395735 0.277863 -0.010095 0.201914 0.106846 0.033519 0.038202 0.169561 -0.114359 -0.324604 0.165287 -0.019570 -0.830518 -0.087155 0.426287 0.634452 -0.131590 -0.074745 0.086868 -0.139659 0.082190 0.024442 0.279507 0.302313 0.155657 0.435010 -0.442502 -0.069929 -0.924281 -0.132104 -1.643774 -0.534799 -0.548676 0.532176 0.059785 0.159225 0.000770 0.699167 0.052970 0.266909 0.288059 0.715246 -0.481574 -0.199380 -0.291488 -0.022785 0.300930 -0.338804 -0.003727 0.237918 -0.084069 -0.397568 -0.431695 0.478068 -0.038720 -0.321384 -0.152185 -0.195176 0.443302 -0.760574 -0.267361 -0.834410 -0.205071 0.000868 -0.727546 0.193557 0.039768 0.494139 0.334587 -0.038995 -0.306443 0.112061 0.300162 -0.061317 -0.232256 -0.303906 0.551160 0.163285 -0.072655 0.270851 0.225453 0.207105 0.519094 0.654042 -0.106349 -0.226360 0.258504 -0.305818 -0.044710 -0.306800 -0.137058 0.305200 -0.468044 0.075012 0.135736 -0.336131 -0.197912 0.167250 -0.256946 0.313236 0.956117 -0.023740 0.265358 0.150604 -0.513703 0.295514 -0.194714 -0.212270 0.236731 0.494869 0.342343 -0.388505 -0.294539 0.078352 0.616740 0.264734 -0.515453 -0.230427 -0.153255 0.108237 -0.064700 0.213921 0.160458 0.106265 -0.270812 -0.025613 0.209391 0.809273 -0.304845 -0.367898 0.035107 0.065942 -0.110960 -0.659071 -0.015571 -0.159836 -0.083577 -0.007412 -0.019435 0.100944 0.550745 -1.084996 0.482626 -0.202153 -0.180960 0.289660 0.016558 -0.124802 -0.724071 0.229030 0.426963 0.544939 0.131364 0.095101 -0.052397 -0.546002 -0.061082 0.057321 0.301638 -0.272764 0.429013 -0.017298 -0.391406 -0.375047 -0.237409 0.049400 -0.166388 -0.102770 0.213087 0.329878 -1.151846 0.516973 -0.235574 -0.357308 0.121564 -0.023401 0.324760 -0.585188 -0.628131 0.192746 -0.187097 -0.517663 -0.294242 -0.179253 0.273998 -0.046044 -0.228424 -0.141136 -0.532863 0.486375 -0.042853 0.239033 0.356741 0.146419 0.794759 0.152103 -0.435552 -0.290217 -0.092053 0.102464 -0.473381 -0.092607 -0.095254 -0.246149 0.327311 0.890129 0.046204 0.016698 -0.062036 0.556048 -0.610350 -0.350084 0.399893 0.375271 -0.008415 0.442069 0.419793 -0.488547 -0.288980 -0.422798 -0.048961 0.125003 -0.359580 0.224729 -0.632730 -0.004904 0.423628 -0.110211 -0.271348 0.358439 -0.067909 -0.031077 -0.253068 0.607855 0.878567 -0.600770 0.234916 -0.401148 0.243418 -0.697028 -0.357012 -0.093099 0.246883 -0.067480 0.027981 0.080777 0.162093 0.092842 -0.277211 -0.256381 -0.111101 +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.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int std::__bit_width(unsigned long) = -0.161019 -0.137479 0.103577 -0.160366 0.227092 -0.015169 0.214806 -0.139515 -0.397532 -0.327043 0.147826 -0.645673 -0.427941 0.540755 -0.118028 0.358916 0.679819 0.170104 -0.092702 -0.262697 0.143547 -0.279107 0.716499 0.726941 -0.391142 0.072395 -0.083898 0.072939 0.064578 0.176997 -0.003015 -0.422384 0.372519 -0.228362 0.186322 -0.200234 -0.134268 0.132519 0.182129 -0.807211 -0.012474 0.337862 0.303169 -0.025785 0.055498 0.564426 0.461144 0.385501 0.092128 0.507293 0.162480 -0.202040 0.319769 0.110314 0.269951 -0.015479 0.225375 -0.282559 -0.371474 0.088101 -0.177142 -0.472655 -0.128350 0.387458 0.586006 -0.124804 -0.191101 0.045712 0.006095 0.171121 0.194442 0.300088 0.225368 0.037965 0.264552 -0.433487 0.038467 -0.697051 -0.121454 -1.423382 -0.473213 -0.056692 0.597183 0.178446 0.185209 -0.190562 0.654421 0.050767 -0.170061 0.057708 0.672685 -0.482834 -0.244030 -0.007126 0.110152 0.042985 -0.293177 0.061504 0.424978 0.024585 -0.480657 -0.124389 0.408912 -0.026321 -0.215267 -0.071991 -0.017447 0.432726 -0.590099 -0.285937 -0.472808 0.033326 0.071638 -0.699027 0.444327 -0.050832 0.084125 0.318633 -0.372462 -0.235501 0.290185 0.041081 -0.159398 -0.178075 -0.508077 0.556211 0.129386 0.146255 0.114522 0.384619 0.125123 0.614641 0.291393 -0.255622 0.019053 0.139206 -0.186864 0.281356 -0.163853 -0.300484 0.258135 -0.465449 0.018857 -0.017271 -0.331675 -0.007184 0.048058 0.098694 0.023104 0.690975 -0.168171 0.514121 0.349580 -0.410221 0.327054 -0.284281 0.080766 0.062564 0.433043 0.181994 -0.318600 -0.375069 0.384413 0.675900 0.302289 -0.551330 -0.106852 0.031610 0.212656 -0.117675 0.255400 0.177626 0.195159 -0.338974 -0.014072 0.106958 0.891623 -0.354692 -0.046363 0.033573 0.006165 0.134208 -0.583347 -0.083186 -0.227112 -0.003378 -0.143640 0.167448 0.085605 0.550332 -0.832637 0.541919 -0.215113 -0.092623 0.566344 0.100078 -0.355661 -0.873490 -0.153826 0.244145 0.510752 0.102742 0.099363 0.094174 -0.542247 -0.018637 -0.086301 0.148171 -0.249861 0.363134 -0.047208 -0.263158 -0.157456 -0.173570 0.044256 -0.211011 -0.093494 0.341575 0.636928 -0.848765 0.373582 0.009338 -0.328877 0.017706 0.102254 0.370642 -0.403568 -0.404158 0.118589 -0.410276 -0.535513 -0.327608 -0.136055 0.053775 -0.199928 -0.110298 -0.142724 -0.323772 0.641145 -0.168243 0.519405 0.261114 -0.097527 0.500935 0.266206 -0.422187 -0.064202 -0.240918 -0.080526 -0.444432 -0.151637 0.151868 -0.140015 0.376451 0.497648 0.128793 -0.128826 -0.003155 0.436946 -0.569497 -0.113018 0.410514 0.198284 -0.106891 0.397294 0.428331 -0.470728 0.018573 -0.340578 -0.226661 -0.215076 -0.232165 0.283981 -0.270117 0.087064 -0.017373 -0.063659 -0.118516 0.190931 0.062359 -0.148813 -0.045858 0.680328 0.681890 -0.329597 0.104876 -0.498946 0.280920 -0.500098 -0.374945 0.041036 0.343321 -0.383927 -0.061082 0.126113 0.258504 0.215985 -0.448144 -0.425795 0.152577 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int std::__countl_zero(unsigned long) = -0.480541 -0.338787 0.299305 -0.473628 0.770944 -0.049166 0.662453 -0.083859 -1.334561 -0.899152 0.173142 -1.741219 -1.235791 1.744945 -0.020219 1.189786 2.378905 0.738681 -0.248466 -0.576547 0.926282 -1.557237 2.010842 2.204782 -1.119878 0.286736 -0.139136 0.441847 -0.110575 0.864800 -0.261910 -1.175646 0.806639 -1.287368 0.673307 -1.012448 -0.448652 0.609732 0.643492 -2.796010 -0.053815 1.226278 0.854293 -0.228222 0.004980 0.996505 1.554884 1.157665 0.023532 1.331393 0.353243 -0.971456 1.031406 0.358957 0.952588 0.692291 0.398429 -0.129564 -1.177342 0.405341 -0.672301 -1.600244 0.091216 1.089908 1.754011 -0.304843 -0.707945 0.379201 -0.077798 0.346948 0.506830 0.933540 0.582451 -0.253045 1.149910 -1.819379 -0.068317 -2.667627 -0.208414 -4.088922 -1.540217 -0.370486 1.595092 0.285244 0.921097 -0.561902 2.118720 -0.499540 -0.327168 0.564287 2.126247 -1.644977 -0.739734 -0.611315 0.004306 0.105648 -0.801430 -0.320638 1.492195 -0.256061 -1.519386 -0.965227 1.547382 0.208333 -0.704531 -0.644263 -0.093654 1.606724 -1.519276 -1.462358 -1.815663 0.090797 -0.152076 -1.928236 1.124160 -0.207636 -0.106721 1.118849 -1.247488 -1.289967 1.012059 0.435768 -0.565144 -0.955258 -0.823051 1.871012 0.229429 0.220686 0.437856 0.975088 0.244901 1.889177 1.402918 -0.733317 0.100828 0.667453 -0.841267 0.660142 -0.696910 -1.151283 0.874789 -1.381394 -0.781003 0.024441 -1.123724 0.219406 0.831305 0.202823 0.160792 2.894188 -0.444099 1.303464 0.867418 -1.341299 1.866652 -0.421955 0.111520 0.229241 1.582707 0.730859 -2.013358 -1.258416 1.082406 2.083818 1.011718 -1.741652 -1.077720 -0.231034 0.786785 0.061078 0.709881 0.482158 0.738973 -1.136137 -0.040236 0.176163 3.195045 -1.464330 -0.641417 0.331108 0.004982 -0.054211 -2.816471 -0.355883 -1.467246 -0.276761 -0.828576 0.178075 0.377707 1.827395 -2.536590 1.770220 -1.209338 -0.587495 1.888412 0.203000 -0.834868 -3.182690 -0.581840 0.850908 1.920945 0.449647 0.114907 0.058989 -1.732405 -0.040699 -0.271657 0.638685 -0.772289 1.451339 -0.779079 -0.959096 -0.501549 -0.410554 -0.300987 -1.050525 -0.073095 0.978358 1.896960 -1.904776 1.269475 0.193516 -0.672913 0.533153 0.630374 1.038519 -1.190818 -1.722232 0.724323 -0.831849 -1.259881 -0.882288 -0.465089 0.468941 -0.163641 -1.167238 -0.423078 -1.597705 1.970871 -0.435755 1.850217 0.871135 -0.327177 1.638215 1.590660 -1.494521 -0.461256 -0.602477 -0.738696 -1.202701 -0.401376 -1.142760 -0.574539 1.366372 1.677435 0.593440 -0.104088 -0.513476 1.785324 -1.905979 -0.398210 1.440360 0.225592 -0.358614 0.868999 1.533741 -1.542209 -0.203694 -1.118122 -0.353587 -0.594063 -0.642683 0.727569 -1.157434 0.037786 0.150170 -0.468679 -0.120055 0.463329 0.497302 -0.326294 -0.399414 2.283611 1.918964 -1.127879 0.089653 -1.394075 0.798865 -1.617107 -0.926798 -0.149818 1.461400 -1.362289 -0.172585 1.063268 0.759074 0.617537 -1.238080 -1.093234 -0.126796 +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.719793 1.164276 0.595522 -1.255675 1.803937 1.784771 0.629275 -0.080253 -1.257467 -2.305558 -0.387304 -2.544660 -3.172291 2.659077 -0.717625 0.760406 4.030943 0.445140 0.046478 -0.849401 1.820668 -1.171365 3.833633 3.989536 -3.442622 0.286441 1.632422 1.312276 0.183621 1.589801 0.489121 -3.626079 0.969692 -1.075133 1.646285 -1.710376 -0.354782 -0.205941 0.137037 -5.341917 -0.652804 1.508975 -0.880088 0.054799 0.193461 0.955045 4.079448 2.244248 -1.458744 1.511086 1.814432 0.788774 0.836383 0.252970 0.022345 0.000800 -0.523030 -0.469478 -0.918465 0.418623 -0.567769 -2.349912 -0.187672 2.989990 3.654943 -0.458977 -0.804522 0.714278 -0.484628 0.572850 -0.301040 2.152082 1.484168 1.330378 2.369030 -2.745442 -1.095141 -5.949796 0.307984 -6.967559 -2.678267 -2.220205 1.733602 1.638131 1.217536 -0.998028 4.456446 -0.200256 0.595285 3.023306 4.347901 -2.360204 -0.730848 -2.359276 -1.106809 1.006993 -1.716877 0.261478 0.336498 -0.113052 -2.481546 -2.899106 0.882447 -0.002067 -1.789896 -2.002189 -0.928376 2.581928 -3.106475 -1.533513 -3.747920 0.351822 -0.102574 -4.829895 -0.579124 -0.728854 0.963183 1.287589 -1.031898 -2.401452 0.912919 1.616618 -0.690434 -1.616951 -0.845342 2.948866 1.756488 -0.275615 0.752395 1.296099 1.285216 3.444530 2.625415 -0.864781 -0.905378 1.043781 -1.134625 -0.150889 -1.863257 -0.207947 1.665072 -2.443843 -0.232539 1.575190 -1.730539 -1.178861 0.713010 -2.301055 1.336165 8.638525 -0.815531 1.985303 1.275172 -3.232971 2.312744 -0.778206 -1.071393 0.915815 2.503713 2.512571 -3.673179 -1.874191 1.766485 3.991975 1.439451 -2.485609 -1.002313 0.032355 0.463893 -1.127151 1.425540 0.752070 0.070246 -1.483754 -0.351816 1.973712 4.927110 -1.739066 -1.594778 0.459119 2.485573 -0.160757 -3.003446 -0.205889 -2.542714 -0.564344 1.461228 0.030733 1.316453 3.391147 -5.612105 2.502621 -0.337197 -0.624732 1.339899 0.411325 -1.150288 -3.888896 1.124189 2.637991 2.550648 0.217463 1.149939 -0.741741 -3.342077 -0.013968 0.735495 1.781298 -1.970346 2.817400 -0.636590 -2.166770 -2.224388 -0.516576 -1.258987 -1.716020 -1.098198 1.478942 1.773426 -4.864152 3.490921 -0.468178 -1.335478 0.385699 -0.771487 2.787805 -3.249490 -3.870104 1.787030 -1.170562 -2.149280 -0.602997 -1.097234 1.673273 0.724788 -0.515550 -1.664365 -3.796973 2.696513 0.219107 2.564811 1.795696 0.905625 3.691565 0.120782 -2.092752 -1.937092 -2.374052 1.515691 -0.640225 -1.435711 -2.150110 -1.104267 2.140678 4.200173 -0.280255 -1.142046 -0.900068 2.904900 -3.060636 -0.695208 1.575967 1.266404 -1.195098 1.014786 1.923506 -2.207889 -1.148384 -2.855721 1.036117 -0.785106 -2.385256 1.004865 -2.932123 0.035042 2.027757 -0.871741 -1.054245 1.523317 0.899535 -0.001261 -0.464933 3.246187 3.070469 -2.341616 0.532408 -3.119436 1.683300 -4.106496 -2.837009 -0.226400 0.455191 -0.391754 -0.550797 0.091896 1.335258 0.717889 -0.589314 -1.307144 -0.273788 +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.342911 0.550745 0.211400 -0.187825 0.919241 0.641293 0.493881 0.315566 -0.652125 -1.219266 -0.299664 -1.331857 -1.789152 1.460521 -0.174579 0.587961 2.239691 0.612068 0.129898 -0.250198 0.750501 -1.074002 1.991247 1.965438 -1.508796 0.205118 0.480250 0.548281 -0.345866 1.166086 0.016636 -1.911451 0.839925 -0.672139 0.868200 -1.009936 -0.137169 0.008953 -0.200160 -2.850158 -0.282287 1.175951 0.064615 -0.079074 0.017596 0.517919 2.062061 1.156268 -0.452369 0.867747 0.465614 -0.079358 0.661742 0.342106 0.237206 0.299791 -0.422454 -0.506047 -1.077092 0.320013 -0.422235 -1.894435 -0.263552 1.241898 1.837933 -0.276699 -0.310928 0.352541 -0.644728 0.345778 -0.042575 0.884774 0.908009 0.302971 1.210821 -1.034354 -0.626720 -2.335901 -0.224360 -3.888257 -1.467494 -1.348278 1.175875 1.073840 0.763452 -0.707549 2.170748 -0.219253 0.459332 1.101310 2.368856 -1.518132 -0.641380 -1.293937 -0.046066 0.544131 -1.033802 -0.228373 0.751314 -0.438158 -1.372151 -1.413023 0.865598 0.101352 -0.782357 -0.930247 -0.512181 1.526179 -1.790888 -1.106708 -2.405752 -0.289046 -0.129968 -2.326494 0.341074 0.168966 -0.039184 1.128580 -0.540412 -1.262485 0.690228 0.855876 -0.255323 -1.044708 -0.548271 1.793432 0.377795 -0.249269 0.715698 0.869681 0.497137 1.804063 1.689450 -0.301128 -0.430139 0.642954 -0.767902 0.030678 -0.842767 -0.533602 0.617935 -1.546283 -0.332442 0.616914 -1.042361 -0.248250 -0.117310 -0.795427 0.842694 3.297479 -0.389285 0.900873 0.487915 -1.707630 1.679841 -0.466941 -0.534184 0.257276 1.460221 1.152241 -1.548946 -0.981701 0.747467 1.973902 0.864122 -1.201546 -0.608095 -0.412881 0.644207 -0.434331 0.654995 0.683653 0.396351 -0.945669 -0.070195 0.725263 2.645344 -1.240273 -0.835571 0.424436 0.705517 -0.034913 -2.021446 -0.236756 -1.345131 -0.436428 0.125893 -0.058566 0.299232 1.798530 -2.219497 1.516729 -0.558211 -0.522097 1.064169 -0.010791 -0.460766 -2.260840 0.378571 1.424868 1.585222 0.336074 0.428527 -0.444017 -1.674976 -0.085108 0.177197 1.037080 -0.720430 1.379706 -0.666220 -1.126014 -1.163995 -0.544377 -0.425616 -1.123664 -0.379602 0.700489 1.702882 -2.220616 1.735776 -0.267196 -0.829172 0.392809 0.191164 1.146773 -1.630330 -2.147349 0.847639 -0.737060 -1.406192 -0.434416 -0.481431 0.776050 0.270976 -1.012413 -0.344289 -1.850761 1.631182 0.265223 1.255929 0.881021 0.467843 2.010550 1.077339 -1.518316 -0.674509 -1.115467 0.183059 -1.115421 -0.454922 -1.102549 -0.578527 1.279830 2.329686 0.280943 -0.368806 -0.627780 1.660759 -1.584265 -0.538623 1.346322 0.306502 -0.260397 0.594525 1.405756 -1.345010 -0.855767 -1.327866 0.530459 -0.208659 -1.191271 0.270102 -1.881244 -0.098439 1.055674 -0.518708 -0.603259 0.641591 0.413454 -0.164684 -0.626677 1.922206 1.315730 -1.465512 0.504808 -1.361301 0.743131 -2.093170 -1.167529 -0.200369 0.848184 -0.401656 -0.078816 0.635191 0.424168 0.197583 -0.654188 -0.846106 -0.575447 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::move_backward(int*, int*, int*) = 0.028758 0.734286 0.527114 -0.114017 0.449675 0.064257 0.173118 0.289035 -0.121859 -0.875420 -0.177531 -0.811588 -1.261812 0.604625 -0.114731 -0.272686 1.038648 0.044241 0.140945 -0.452628 0.175982 -0.489379 1.078949 1.056238 -1.160088 0.256585 0.567147 0.460846 0.332962 0.438043 0.077870 -0.791835 0.304558 0.117406 0.689739 -0.283722 -0.072860 -0.575107 -0.603510 -1.540693 -0.267132 0.434729 -0.144048 0.063287 0.117635 1.035449 1.463813 0.587023 -0.496258 0.345910 0.516523 -0.025117 0.332040 0.078832 -0.067113 -0.468258 0.307964 -0.133772 -0.507973 0.252163 0.031171 -1.332717 -0.310784 0.815841 1.030353 -0.169066 -0.143072 0.105149 -0.174667 0.168666 -0.201947 0.563536 0.785879 0.586404 0.817579 -0.385958 -0.098838 -1.456191 -0.116420 -2.760417 -0.917062 -0.974764 0.903291 0.202633 0.017391 -0.222818 1.166307 0.291584 0.495083 0.634657 1.359416 -0.539946 -0.281202 -0.575540 -0.116213 0.574482 -0.576571 0.222177 0.344191 -0.090900 -0.677651 -0.516038 0.509752 -0.227624 -0.553951 -0.046107 -0.367699 0.586136 -1.103335 -0.028214 -1.388307 -0.486682 0.311287 -1.360852 0.116432 0.191642 0.710766 0.524376 0.003607 -0.263256 0.100835 0.336229 -0.106029 -0.186263 -0.811150 0.989142 0.360084 -0.039765 0.470590 0.532347 0.632041 0.561252 0.986439 -0.054372 -0.429364 0.229782 -0.459268 -0.125566 -0.347710 -0.062033 0.723218 -0.559480 0.126013 0.185087 -0.473350 -0.514614 -0.095370 -0.695258 0.537681 1.593535 -0.088087 0.421969 0.136831 -0.819004 0.481227 -0.322608 -0.591431 0.253646 0.714891 0.816740 -0.408205 -0.401511 0.323473 1.071875 0.327560 -0.802486 0.019831 0.022864 0.073152 -0.430885 0.472934 0.274408 0.190909 -0.353131 -0.078848 0.660432 1.069234 -0.424527 -0.846532 0.022852 0.263748 0.193831 -0.766154 0.128230 0.065851 -0.130737 0.103769 0.014421 0.265162 0.869302 -1.812102 0.720192 0.080854 -0.256916 0.468768 -0.091801 -0.258658 -1.158334 0.625412 0.887441 0.615011 0.290246 -0.058554 -0.352025 -0.875203 -0.083615 0.197325 0.494149 -0.455357 0.721541 -0.171056 -0.481163 -0.803081 -0.682220 -0.011405 -0.029054 -0.374745 0.306552 0.437834 -1.850593 1.076908 -0.407281 -0.573044 -0.271413 -0.354628 0.388128 -1.028708 -1.053424 0.125917 -0.607332 -1.197711 -0.534148 -0.389779 0.248507 0.010836 -0.279519 -0.329375 -0.845393 0.978550 -0.071197 0.437243 0.596127 0.459516 1.393282 0.491686 -0.673110 -0.435687 -0.268432 0.501037 -0.633089 -0.343776 -0.016446 -0.395569 0.370214 1.407782 -0.283162 0.030118 -0.198811 0.624063 -0.883561 -0.801246 0.498223 0.398386 -0.095344 0.763372 0.544243 -0.563523 -0.419115 -0.957029 -0.199364 0.026176 -0.776188 0.143459 -1.054731 -0.157760 0.918482 -0.359365 -0.523495 0.544585 -0.204105 -0.120406 -0.363608 0.834161 1.510418 -1.147040 0.474661 -0.853360 0.537585 -1.223610 -0.798037 0.043000 0.152779 0.178885 -0.165984 0.061322 0.063945 0.162951 -0.621465 -0.542999 0.092908 +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.349324 0.780748 0.896178 -1.007621 1.243027 1.133078 0.391336 -0.299933 -0.923446 -1.079448 -0.196993 -1.325153 -1.668772 1.646603 -0.402793 0.572109 2.583573 0.262818 -0.100805 -0.899911 1.342955 -1.039755 2.575523 2.771156 -2.476546 0.399563 1.429532 1.038598 0.747174 1.063157 -0.448168 -1.457112 0.582892 -1.116773 0.923818 -1.388596 -0.298345 -0.327365 0.399254 -3.590814 -0.361349 0.061962 -0.880756 0.110211 0.108453 1.386588 2.707111 1.448102 -1.099599 1.155319 1.431722 0.189743 0.483359 0.138111 0.119765 0.275534 0.676259 0.594056 -0.341827 0.261408 -0.168867 -1.699280 0.207324 1.975778 2.404718 -0.347516 -0.552194 0.619406 0.099253 0.088397 -0.093782 1.418246 0.788418 0.912479 1.609406 -2.649216 -0.129828 -4.370969 0.023949 -4.690347 -1.799692 -1.382785 1.001028 -0.216521 0.998679 -0.148654 2.859599 -0.029600 0.411494 1.543508 2.597468 -1.890810 -0.372245 -1.162862 -0.861297 0.609618 -1.002777 0.332175 0.368724 -0.261243 -1.517431 -1.985866 1.207438 0.122626 -1.317768 -1.078711 -0.532241 1.594104 -1.995530 -1.169090 -2.224696 -0.039282 -0.372841 -3.049565 -0.036235 -0.739422 1.878637 0.606015 -0.505204 -1.827829 0.362622 1.330230 -0.452254 -1.179129 -0.356268 1.965921 1.475956 -0.077521 0.451380 0.432600 0.861310 2.267329 2.090806 -0.674162 -0.646785 0.691797 -1.071991 -0.077949 -1.313108 -0.112331 1.338084 -1.515313 -0.119382 1.110989 -1.082932 -0.435357 1.922416 -1.126584 0.743704 6.083216 -0.334525 1.346775 0.844748 -2.087962 1.245922 -0.527040 -0.679515 1.024663 1.591326 1.495119 -3.327040 -1.235056 0.894610 2.548450 0.919379 -2.339959 -1.015201 -0.103862 -0.006533 -0.485111 0.818931 0.246805 0.040583 -0.935272 -0.256623 1.163021 3.529465 -1.271045 -1.452341 0.197915 0.807988 -0.532803 -2.545583 -0.187165 -1.331033 -0.229770 0.630890 0.016895 0.990871 2.123405 -4.408227 1.563056 -0.680387 -0.791676 1.213172 0.402327 -0.818987 -2.353228 0.793494 1.529443 1.691463 0.244558 0.412913 -0.160560 -2.187580 -0.054763 0.409093 0.901858 -1.392203 1.836950 0.146350 -1.579560 -1.283686 -0.326222 -0.391956 -0.935891 -0.551343 1.024460 0.093929 -3.974599 2.092282 -0.325159 -0.954718 0.586789 -0.712387 1.675071 -2.074495 -2.351755 1.170636 -0.354992 -0.903588 -0.785812 -0.679219 1.160417 0.319847 -0.129641 -1.492537 -2.747111 1.405820 -0.381193 1.459546 1.305888 0.482673 2.547051 -0.308795 -1.172995 -1.743536 -0.863627 0.850844 -0.213972 -1.014731 -1.485277 -0.866532 1.382877 2.794168 -0.243060 -0.185932 -0.439277 1.920037 -2.470948 -0.615961 0.889976 1.765435 -0.944781 0.781989 1.126473 -1.433768 -0.629856 -1.553798 -0.186831 -0.290708 -1.420819 1.091497 -1.657256 0.171076 1.241930 -0.377436 -0.530811 1.246595 0.192959 0.233487 -0.284885 2.071513 3.227850 -1.706836 0.056716 -1.927804 1.240771 -2.615767 -1.823728 0.007943 0.329883 -0.386041 -0.330230 0.169278 1.134382 0.564598 -0.655406 -0.548408 -0.162073 +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.043466 0.050924 -0.036748 0.060855 0.124219 -0.005998 0.073240 -0.016271 -0.073202 -0.136260 -0.029911 -0.137646 -0.136013 0.155537 -0.035210 0.163724 0.200689 0.113569 0.057694 -0.015362 0.001768 -0.162920 0.223858 0.152851 -0.063509 0.032332 -0.012753 -0.004134 -0.152180 0.203970 -0.050874 -0.254093 0.186272 -0.088728 -0.008837 -0.110478 0.004979 0.068491 0.012856 -0.217238 0.005736 0.077920 0.126649 -0.017780 -0.046712 -0.020588 0.157116 0.107801 0.079722 0.171742 -0.019368 0.014166 0.070825 0.101133 0.088809 0.092685 -0.031171 -0.293608 -0.192039 0.023037 -0.068633 -0.256073 -0.095030 0.064359 0.150329 -0.026260 0.013176 0.050177 -0.226831 0.051214 0.045775 0.021973 0.023582 -0.012880 0.024747 -0.052094 -0.039336 -0.050941 -0.153981 -0.384082 -0.116705 -0.113766 0.080775 0.213585 0.135524 0.078991 0.158446 0.005795 0.039421 -0.031742 0.230667 -0.229570 -0.108627 -0.010213 0.094939 0.017910 -0.115234 -0.051651 0.024584 -0.025186 -0.122466 -0.135065 0.184400 0.038842 -0.028183 -0.108183 -0.034694 0.114059 -0.317394 -0.171003 -0.239579 -0.118756 -0.065140 -0.156328 0.161279 0.114281 0.002668 0.151376 -0.054070 -0.167042 0.119760 0.096513 0.008265 -0.142277 -0.084818 0.072832 -0.071721 -0.008553 0.101265 0.056131 0.008499 0.284336 0.132594 -0.024333 -0.022269 0.033661 -0.031608 0.043396 -0.012270 -0.131244 -0.123790 -0.230807 0.071289 0.058904 -0.115875 -0.017135 -0.138855 -0.017318 0.091043 -0.091388 -0.040852 0.064707 0.043758 -0.200950 0.039239 -0.168643 -0.023917 -0.036696 0.132166 0.049318 0.123511 -0.108836 0.065097 0.132312 0.106147 -0.017987 -0.083960 -0.104649 0.153404 0.047724 0.019734 0.113487 0.042078 -0.136188 0.001461 -0.029821 0.270948 -0.102396 0.136401 0.115736 -0.061108 -0.003026 -0.172926 -0.067811 -0.122019 -0.024099 -0.059027 -0.012772 -0.093699 0.169213 -0.106847 0.165007 -0.147107 -0.046650 0.055499 -0.000505 -0.033524 -0.165859 -0.026418 0.134620 0.168612 0.022633 0.182624 -0.021515 -0.124951 -0.034847 -0.050222 0.101654 -0.028032 0.072579 -0.006837 -0.206629 -0.112303 0.009080 0.068617 -0.138042 0.023133 0.062058 0.352993 -0.241972 0.136301 -0.028139 -0.096272 0.093738 0.154555 0.133346 -0.120197 -0.177077 0.080864 -0.150963 -0.103492 0.030393 0.006750 0.035765 -0.054892 -0.166364 0.106984 0.004806 0.104656 0.098440 0.036312 0.051650 0.056391 0.124130 0.029990 -0.183559 0.041170 0.000861 -0.106499 -0.318201 0.049092 0.098047 -0.036030 0.166925 0.234619 0.158171 -0.066154 0.054385 0.157149 -0.099000 -0.013868 0.225729 0.058459 -0.001795 0.074628 0.193432 -0.140508 -0.116015 -0.041978 0.102531 -0.002709 -0.105362 -0.008692 -0.178287 -0.009956 0.085106 -0.016198 -0.102948 0.063420 0.019050 -0.014895 -0.109005 0.192951 -0.001051 -0.096020 0.092848 -0.052061 -0.049466 -0.173594 -0.082237 -0.011990 0.228951 -0.109903 0.028395 0.029694 0.036199 -0.033424 -0.011601 -0.067849 -0.137909 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = 0.070603 0.899233 0.727282 -0.184733 0.436322 -0.053039 0.151408 0.441601 -0.087446 -1.158714 -0.174957 -1.066654 -1.617186 0.646920 -0.197228 -0.617462 1.124069 -0.043221 0.163452 -0.570397 0.085036 -0.425394 1.185693 1.193473 -1.423652 0.259609 0.602694 0.629714 0.515370 0.400262 0.329697 -0.951245 0.217559 0.493330 0.945491 -0.168800 -0.046402 -0.784347 -0.994714 -1.734914 -0.348718 0.693128 -0.142654 0.102304 0.230230 1.364925 1.726921 0.666026 -0.656242 0.273734 0.685255 0.050862 0.389623 0.023339 -0.199261 -0.910600 0.385682 -0.246926 -0.580772 0.326827 0.097716 -1.555039 -0.444184 1.008038 1.212439 -0.172184 -0.144466 -0.044365 -0.117153 0.265480 -0.265958 0.662650 1.033337 0.813076 0.978342 -0.115368 -0.088184 -1.658204 0.006529 -3.298562 -1.054729 -1.165649 1.259230 0.433976 -0.277934 -0.419563 1.329455 0.470044 0.605789 0.887351 1.584694 -0.334051 -0.314753 -0.714683 -0.220633 0.796161 -0.687368 0.346573 0.310863 0.102362 -0.759038 -0.385025 0.370541 -0.423682 -0.642572 0.188219 -0.465417 0.610108 -1.264696 0.296198 -1.584098 -0.500793 0.660085 -1.621327 0.002198 0.189036 0.761502 0.563260 0.057678 0.049749 0.040896 0.206135 -0.139559 0.096267 -1.350582 1.185440 0.390589 -0.033860 0.510591 0.718806 0.822794 0.331068 0.952046 -0.052595 -0.543153 0.239743 -0.491633 -0.199871 -0.398845 0.042471 1.022919 -0.500892 0.190545 0.053532 -0.508334 -0.815459 -0.510425 -0.931733 0.660164 1.767211 -0.088783 0.481891 0.132039 -0.832805 0.523708 -0.271831 -0.722171 0.273076 0.770014 0.986258 -0.145508 -0.417333 0.391911 1.240510 0.326512 -0.802703 0.291982 0.200111 0.003355 -0.630828 0.628664 0.312175 0.140202 -0.330162 -0.111295 0.883913 0.955075 -0.269721 -1.089415 -0.088736 0.477161 0.378783 -0.551858 0.290205 0.376372 -0.113866 0.198113 0.055835 0.382184 0.975833 -2.206076 0.806877 0.437971 -0.136850 0.461613 -0.232826 -0.306673 -1.384502 0.836454 1.046510 0.613038 0.351854 -0.198089 -0.445082 -0.989352 -0.080736 0.290305 0.589445 -0.532995 0.803079 -0.240983 -0.393228 -0.998572 -1.016816 -0.091973 0.212613 -0.599301 0.319784 0.464759 -2.124492 1.290906 -0.559204 -0.665305 -0.630150 -0.574852 0.319569 -1.255722 -1.157418 -0.034908 -0.829753 -1.698296 -0.739846 -0.502988 0.200372 -0.043161 -0.223629 -0.400397 -0.880011 1.255830 -0.144899 0.487150 0.681332 0.559756 1.628658 0.792368 -0.673939 -0.425369 -0.348886 0.811985 -0.717162 -0.438144 0.281063 -0.431660 0.257428 1.589572 -0.526840 0.004741 -0.199457 0.630275 -0.794597 -1.123895 0.452208 0.169433 -0.033786 1.038807 0.530798 -0.622594 -0.443504 -1.302206 -0.270729 0.038581 -0.933958 0.128119 -1.202535 -0.203045 1.130784 -0.440263 -0.717001 0.622927 -0.280037 -0.255438 -0.357572 0.953658 1.760199 -1.321126 0.731159 -1.086297 0.680324 -1.429545 -0.954735 0.037025 -0.041206 0.384791 -0.209209 -0.077415 -0.012436 0.236476 -0.738353 -0.730416 0.367378 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__miter_base(int*) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_wrap(int* const&, int*) = -0.021026 0.229423 0.143580 0.026343 0.253999 0.036877 0.139132 0.064413 -0.154146 -0.272016 -0.112143 -0.274298 -0.407604 0.336218 0.019496 0.196591 0.560619 0.190063 0.070254 -0.169906 0.142008 -0.467798 0.541630 0.524271 -0.415006 0.168068 0.206609 0.153091 0.000000 0.375869 -0.202960 -0.296722 0.266132 -0.263466 0.205522 -0.332598 -0.065749 -0.055440 -0.037340 -0.794364 -0.067845 0.116022 0.104225 0.001183 -0.015652 0.331609 0.580898 0.279575 -0.089073 0.333787 0.110393 -0.147710 0.229184 0.122296 0.125171 0.177097 0.174500 -0.088139 -0.308130 0.126289 -0.050886 -0.700611 -0.047218 0.275307 0.464100 -0.113898 -0.081196 0.146598 -0.179552 0.029080 0.001329 0.224828 0.179276 0.067055 0.305662 -0.443972 0.017777 -0.598917 -0.184541 -1.204490 -0.433937 -0.401424 0.301305 0.036218 0.280059 0.048464 0.545242 -0.012266 0.189446 0.047505 0.576857 -0.522332 -0.165666 -0.173945 0.074505 0.154400 -0.250828 -0.063970 0.283188 -0.181758 -0.323222 -0.372473 0.528961 0.044623 -0.242398 -0.154769 -0.136957 0.344144 -0.579007 -0.369070 -0.675838 -0.301042 -0.132315 -0.526052 0.336874 0.118510 0.261122 0.317762 -0.060845 -0.407062 0.145190 0.276923 -0.023420 -0.327765 -0.186244 0.443632 0.082450 -0.064079 0.258289 0.164323 0.142063 0.511622 0.577101 -0.060364 -0.144369 0.191016 -0.271159 0.012000 -0.171323 -0.210630 0.132581 -0.436577 -0.040820 0.131950 -0.272899 0.025669 0.207815 -0.117615 0.206952 0.590272 -0.037864 0.192442 0.099418 -0.445512 0.331389 -0.204195 -0.180870 0.138591 0.401055 0.277048 -0.394949 -0.242700 0.080251 0.479155 0.215089 -0.408361 -0.292924 -0.187983 0.158474 0.013375 0.150675 0.143282 0.165406 -0.257663 -0.001529 0.077637 0.747994 -0.362693 -0.191731 0.108883 -0.133918 -0.114938 -0.728828 -0.074654 -0.273697 -0.107701 -0.195164 -0.026569 -0.005693 0.422056 -0.680916 0.407936 -0.329729 -0.256088 0.357264 -0.006861 -0.087510 -0.621210 0.114086 0.338393 0.435591 0.094532 0.089955 -0.078246 -0.424235 -0.060009 -0.024029 0.216105 -0.200758 0.355629 -0.064471 -0.363999 -0.262036 -0.133086 0.098844 -0.261911 -0.005939 0.175616 0.391982 -0.770444 0.388855 -0.119204 -0.278643 0.214109 0.102103 0.217649 -0.397861 -0.495405 0.182544 -0.159628 -0.289342 -0.184493 -0.124864 0.180174 -0.041944 -0.360903 -0.059231 -0.391131 0.341919 -0.019727 0.185225 0.279645 0.120691 0.554125 0.240180 -0.430143 -0.184782 0.006947 -0.151980 -0.455270 -0.027591 -0.206511 -0.208472 0.328361 0.701850 0.148089 0.089489 -0.058120 0.427903 -0.514781 -0.231077 0.390332 0.275691 -0.035687 0.246791 0.374775 -0.342687 -0.236085 -0.257465 -0.058228 0.069695 -0.262429 0.140051 -0.517620 -0.054271 0.319252 -0.145268 -0.161875 0.260374 -0.043619 -0.009149 -0.256590 0.489410 0.571330 -0.466596 0.121280 -0.256957 0.137005 -0.515404 -0.217183 -0.051278 0.398899 -0.151924 -0.008349 0.223495 0.104053 0.045889 -0.277740 -0.173822 -0.228759 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_base(int*) = -0.020255 0.163122 0.091573 -0.031733 0.185638 0.024600 0.075590 -0.007548 -0.114143 -0.199016 -0.074931 -0.165506 -0.233361 0.221059 -0.029798 0.129771 0.365571 0.116182 0.057405 -0.148245 0.099681 -0.277681 0.375665 0.357221 -0.300127 0.106745 0.176737 0.117066 0.026437 0.253980 -0.106372 -0.232451 0.166160 -0.155376 0.117526 -0.240732 -0.031425 -0.015316 -0.000705 -0.523500 -0.035353 0.003359 0.051710 0.014487 -0.013923 0.187409 0.379642 0.190386 -0.068371 0.244549 0.131758 0.017544 0.113035 0.080404 0.063329 0.112612 0.130330 -0.141002 -0.152560 0.074942 -0.020188 -0.412511 -0.024801 0.213848 0.317979 -0.070956 -0.039727 0.099267 -0.127426 0.025567 0.013157 0.148416 0.065296 0.075733 0.167921 -0.345094 0.017117 -0.471291 -0.111180 -0.814371 -0.267621 -0.260665 0.161620 0.047202 0.179038 0.129364 0.367763 0.015622 0.127400 0.064443 0.365392 -0.326328 -0.093568 -0.083708 0.002977 0.108332 -0.157467 -0.018368 0.077717 -0.043049 -0.194308 -0.271070 0.332934 0.024578 -0.167620 -0.131216 -0.086541 0.201088 -0.441501 -0.225691 -0.403059 -0.151804 -0.095854 -0.350889 0.185599 0.018190 0.267963 0.156357 -0.026478 -0.280414 0.077567 0.201978 -0.019486 -0.191212 -0.139399 0.217808 0.080892 -0.039212 0.136240 0.063201 0.091122 0.375712 0.330027 -0.067911 -0.106013 0.122905 -0.145860 -0.017755 -0.133762 -0.109174 0.066653 -0.291288 0.049452 0.114255 -0.173496 -0.056377 0.156666 -0.132274 0.145520 0.419649 -0.025647 0.128328 0.087948 -0.308015 0.097280 -0.158627 -0.112460 0.111735 0.253176 0.175431 -0.193068 -0.172001 0.048023 0.307176 0.141851 -0.226063 -0.210725 -0.109059 0.072927 0.040270 0.086337 0.068941 0.035483 -0.164089 -0.017740 0.047275 0.484675 -0.162629 -0.026002 0.064078 -0.026528 -0.113566 -0.404252 -0.046159 -0.185136 -0.040126 -0.062080 -0.018726 0.011243 0.282606 -0.542168 0.255826 -0.199490 -0.125312 0.137240 0.020357 -0.056280 -0.384767 0.091434 0.220567 0.281649 0.008736 0.159401 -0.024335 -0.280918 -0.041673 -0.012185 0.147528 -0.165284 0.218350 0.036720 -0.286121 -0.178496 -0.012476 0.069773 -0.150500 -0.003096 0.118010 0.232226 -0.584528 0.262563 -0.102058 -0.170008 0.150435 0.039824 0.201496 -0.276726 -0.302164 0.134968 -0.091466 -0.137464 -0.078955 -0.074097 0.150409 -0.064238 -0.158794 -0.051221 -0.210041 0.165016 -0.005590 0.086022 0.183229 0.086278 0.339413 -0.031373 -0.227047 -0.137443 0.033458 -0.070736 -0.284089 -0.011153 -0.045705 -0.131159 0.211077 0.476508 0.091735 0.008500 0.052198 0.285837 -0.317135 -0.121557 0.223342 0.236857 -0.051161 0.175564 0.218629 -0.231700 -0.157591 -0.169064 0.008980 0.058449 -0.178002 0.126553 -0.310820 -0.012050 0.216492 -0.064074 -0.130942 0.210787 -0.024217 0.016964 -0.138088 0.306367 0.368754 -0.251849 0.078187 -0.171137 0.052289 -0.350795 -0.166773 -0.048364 0.231315 -0.090911 0.002774 0.033086 0.115902 0.029310 -0.078615 -0.080098 -0.133717 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = 0.008423 0.596116 0.333276 -0.031487 0.455082 0.173212 0.187440 0.157432 -0.144137 -0.603218 -0.190903 -0.555478 -0.923576 0.542389 -0.011876 0.047183 0.940814 0.116431 0.130284 -0.350049 0.246646 -0.555059 0.964595 0.926754 -0.914315 0.279844 0.540202 0.294196 0.167855 0.465563 -0.160089 -0.623529 0.373367 -0.238083 0.452405 -0.390698 -0.119036 -0.387660 -0.230641 -1.372990 -0.202042 0.191935 -0.149561 0.037444 0.024987 0.730211 1.223245 0.498620 -0.352750 0.437091 0.350240 -0.109728 0.298836 0.120341 0.050508 -0.042586 0.239919 -0.021591 -0.420275 0.198690 -0.016383 -1.129264 -0.180284 0.622397 0.845147 -0.181835 -0.164265 0.246457 -0.215274 0.062986 -0.156001 0.492434 0.549369 0.372049 0.671875 -0.651875 -0.100050 -1.260163 -0.214399 -2.245228 -0.802402 -0.797544 0.573020 -0.018250 0.299634 -0.031101 1.020599 0.110952 0.398051 0.387726 1.124273 -0.729036 -0.230935 -0.424936 -0.007707 0.367128 -0.454660 0.102226 0.367200 -0.280946 -0.590242 -0.641458 0.664064 -0.056259 -0.487995 -0.263736 -0.282126 0.548601 -0.946456 -0.337451 -1.208445 -0.477865 -0.025998 -1.094878 0.227816 0.205846 0.664241 0.491890 -0.037836 -0.556850 0.147715 0.441930 -0.068384 -0.453957 -0.301376 0.795572 0.342521 -0.056440 0.441457 0.363442 0.460788 0.774503 1.020141 -0.045323 -0.327543 0.238467 -0.410485 -0.057722 -0.286058 -0.151757 0.431939 -0.604042 0.057795 0.296264 -0.432306 -0.219403 0.305834 -0.481231 0.400526 1.419934 -0.078626 0.355451 0.143410 -0.789999 0.437795 -0.370941 -0.480746 0.254134 0.664788 0.671251 -0.666206 -0.368237 0.238995 0.915908 0.312640 -0.799739 -0.247672 -0.129134 0.130914 -0.237146 0.347405 0.217530 0.262621 -0.362571 -0.039406 0.438939 1.174060 -0.565837 -0.605593 0.109944 0.055922 0.010565 -0.976882 -0.012449 -0.236731 -0.162609 0.009815 -0.022480 0.146458 0.745869 -1.430739 0.626957 -0.267339 -0.380295 0.464822 0.049201 -0.201387 -0.940379 0.430505 0.717910 0.611011 0.222529 0.077538 -0.274189 -0.767114 -0.086154 0.115168 0.387527 -0.399380 0.664480 -0.108453 -0.553209 -0.593354 -0.357434 0.069454 -0.253643 -0.162975 0.291606 0.408475 -1.577473 0.849858 -0.265009 -0.493718 0.076812 -0.152889 0.451475 -0.799544 -0.935863 0.276567 -0.386356 -0.720445 -0.329625 -0.303324 0.287547 0.064989 -0.344212 -0.267893 -0.802985 0.713766 -0.001425 0.378449 0.533666 0.351154 1.165583 0.195604 -0.681360 -0.433867 -0.186773 0.202739 -0.546391 -0.233484 -0.315872 -0.380139 0.456629 1.244729 -0.048587 0.068722 -0.202101 0.608819 -0.971491 -0.493258 0.522671 0.620204 -0.140143 0.510457 0.539252 -0.486987 -0.377859 -0.634711 -0.129712 0.029259 -0.604284 0.174643 -0.923657 -0.130382 0.729242 -0.302744 -0.335840 0.483203 -0.148085 0.004170 -0.380466 0.709868 1.270644 -0.982632 0.232362 -0.620035 0.401573 -1.009857 -0.620383 0.026673 0.346400 -0.011534 -0.141627 0.190534 0.123383 0.107278 -0.525013 -0.366455 -0.165459 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward::__copy_move_b(int*, int*, int*) = -0.764512 -0.138784 -0.165633 -1.663793 1.492798 1.180988 0.638658 -0.919964 -1.542606 -1.098009 0.397744 -2.982215 -1.783715 1.842072 -0.661659 1.516075 3.158839 -0.029311 -0.480221 -1.020704 1.156347 0.215935 3.435881 3.538160 -2.365733 0.246619 0.332591 0.859258 0.166342 -0.081707 0.301680 -2.312100 0.766264 -1.306879 0.634883 -0.578590 -0.648991 0.093345 1.652559 -3.856937 -0.239558 0.916874 0.090908 0.051988 0.172860 0.996357 2.663819 1.854410 -0.452675 1.613554 1.694418 0.266227 1.074847 0.159576 0.256836 -0.041582 0.221975 -0.640299 -0.480820 -0.286010 -0.507809 -0.343467 -0.048404 2.326744 2.664851 -0.257705 -1.354439 0.707735 0.873311 0.407764 0.362908 2.048204 0.459731 0.994416 1.471853 -2.536157 -0.125328 -4.402136 0.415431 -4.653056 -2.308066 -0.479639 1.628578 0.844846 1.217446 -0.468448 3.674496 -0.281405 -0.352657 1.722294 2.758724 -1.945997 -0.607121 -0.811285 -0.699051 0.287102 -0.890954 0.611344 0.737967 0.794484 -2.172674 -1.225884 0.760302 -0.107018 -1.428148 -1.400543 0.079093 1.318345 -1.627332 -1.269362 -1.936925 1.497314 0.164542 -3.774991 -0.442092 -0.882290 0.507626 0.552084 -1.511777 -1.941786 0.701592 0.341571 -1.002978 -0.790177 -1.061754 1.816359 2.004338 0.330363 0.447245 1.448041 1.070272 3.599374 0.813801 -1.309072 -0.355429 0.700886 -0.475648 0.624800 -1.094615 -0.422705 0.968062 -2.020864 0.674518 1.077602 -1.361747 -0.597314 0.774514 -0.733513 0.102087 6.667395 -0.832930 2.480611 1.942509 -2.030635 1.279553 -1.290010 -0.087275 0.574443 1.626216 1.491715 -2.745015 -1.718518 1.957522 3.333829 1.208564 -2.371214 -0.222593 0.997682 0.490509 -0.892336 1.126287 0.462403 0.571296 -1.132063 -0.130323 1.666382 4.366830 -1.007693 -0.484164 0.288550 2.104753 0.381705 -1.891587 -0.483764 -2.351155 -0.324412 1.319980 0.982573 1.118141 2.678698 -4.205178 1.762437 0.000953 -0.037860 1.875136 0.998284 -1.744486 -2.931578 -0.108563 1.336275 1.950399 -0.413831 0.848004 -0.093229 -2.472032 0.063192 0.555195 0.710334 -1.742899 2.176011 -0.183988 -1.380670 -0.664510 -0.137923 -0.901823 -0.842095 -0.842191 1.667371 1.331984 -3.642902 2.169979 0.251169 -1.363746 0.229116 -1.233446 2.585200 -2.077567 -1.971406 1.388970 -1.238106 -1.177257 -0.370542 -0.660111 0.765372 0.298984 0.973695 -1.977577 -2.147875 2.575673 -0.066597 2.707263 1.488487 -0.269166 1.714923 -1.124681 -1.443633 -1.043784 -2.090259 0.606977 0.202006 -1.524450 -0.753909 -0.909226 1.635244 2.462619 -0.370324 -1.196171 -0.386714 1.776959 -2.717761 0.084349 0.924259 1.039247 -1.536304 0.987465 1.353463 -1.690559 0.236625 -2.054661 0.127793 -1.372321 -1.515699 1.456864 -1.221373 0.416945 0.677721 -0.814672 -0.137191 1.142146 0.696560 -0.022021 0.335059 2.682592 2.292056 -0.638993 -0.127170 -2.877075 1.406830 -2.731367 -2.367901 0.394018 -0.000190 -1.455610 -0.759373 -0.075274 1.781994 0.757090 -1.005019 -1.664231 0.827865 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__copy_move::__assign_one(int*, int*) = -0.090190 0.218924 0.235656 -0.163105 0.393105 0.170885 0.176284 -0.067790 -0.296107 -0.315968 -0.059986 -0.359373 -0.475041 0.517957 -0.067388 0.296524 0.813360 0.191314 0.014134 -0.316629 0.368958 -0.526581 0.827585 0.818562 -0.686778 0.171727 0.422292 0.282028 0.190728 0.391935 -0.263101 -0.347401 0.334840 -0.481391 0.220009 -0.492526 -0.072739 -0.068857 0.134980 -1.096365 -0.076070 -0.072919 -0.090288 0.018544 -0.039390 0.524252 0.776368 0.444477 -0.235531 0.480233 0.355735 -0.104579 0.188454 0.130495 0.127359 0.207443 0.294718 0.118995 -0.261938 0.097217 -0.062137 -0.763440 0.028003 0.503057 0.720502 -0.140591 -0.119687 0.268225 -0.096215 0.037629 0.049283 0.348709 0.198809 0.151603 0.479405 -0.880567 -0.006051 -1.233347 -0.208832 -1.688160 -0.571961 -0.454639 0.356014 -0.238759 0.400821 0.164581 0.804904 0.024332 0.155354 0.248305 0.791860 -0.717989 -0.196479 -0.239353 -0.084171 0.196505 -0.350478 0.044451 0.332485 -0.170090 -0.468241 -0.595852 0.628266 0.091331 -0.365997 -0.338389 -0.154445 0.498946 -0.748924 -0.493517 -0.779287 -0.228038 -0.199760 -0.847009 0.253439 -0.064669 0.694524 0.296690 -0.122482 -0.613800 0.147500 0.448352 -0.081927 -0.462473 -0.027074 0.562178 0.318487 0.009828 0.245047 0.139163 0.211126 0.801148 0.800510 -0.176388 -0.194046 0.217295 -0.392180 0.047255 -0.344429 -0.200196 0.324989 -0.565507 0.049862 0.299434 -0.368276 -0.083933 0.701311 -0.183193 0.249105 1.371534 -0.041286 0.380821 0.246366 -0.644089 0.306047 -0.286418 -0.178459 0.306396 0.538350 0.353504 -0.823488 -0.393386 0.189866 0.717185 0.318595 -0.777536 -0.456406 -0.178774 0.118946 -0.020590 0.171295 0.145038 0.117926 -0.339760 -0.041372 0.233746 1.103631 -0.500823 -0.376379 0.125133 -0.022346 -0.221237 -0.999777 -0.122250 -0.389116 -0.067172 -0.042784 -0.004498 0.145572 0.643889 -1.277495 0.522903 -0.400169 -0.291367 0.447938 0.144970 -0.238509 -0.823469 0.182305 0.444430 0.580463 0.114724 0.138529 0.008183 -0.641474 -0.055171 0.028763 0.257602 -0.336294 0.511395 0.045300 -0.519102 -0.381341 -0.066672 0.080034 -0.316588 -0.007881 0.311543 0.200489 -1.316301 0.571700 -0.156593 -0.373681 0.291658 -0.030174 0.470696 -0.603998 -0.713143 0.342553 -0.145758 -0.279428 -0.300020 -0.146745 0.324604 0.010945 -0.209315 -0.272001 -0.692972 0.416871 -0.129985 0.342929 0.390023 0.136791 0.831412 -0.092398 -0.471579 -0.482556 -0.015972 -0.012890 -0.364428 -0.206920 -0.387657 -0.258353 0.483161 0.913311 0.090977 0.046797 -0.056981 0.624975 -0.876094 -0.256955 0.439286 0.698608 -0.205245 0.347792 0.457559 -0.516092 -0.246100 -0.347961 -0.161806 0.015087 -0.405074 0.321875 -0.558791 0.044381 0.358901 -0.092936 -0.145527 0.406578 -0.017561 0.100873 -0.223607 0.650128 1.107419 -0.636399 0.000854 -0.476498 0.276685 -0.774843 -0.490914 0.025183 0.359296 -0.211563 -0.023593 0.174835 0.318423 0.126126 -0.332907 -0.192777 -0.183829 +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.171616 0.285102 0.085069 -0.223197 0.598656 0.390703 0.262288 -0.233097 -0.394900 -0.451887 0.041636 -0.689384 -0.747833 0.761721 -0.110717 0.490311 1.095799 0.083628 -0.018663 -0.418173 0.569364 -0.431027 1.230978 1.112902 -0.951600 0.210147 0.657284 0.297963 0.231521 0.315332 -0.116994 -0.696701 0.514474 -0.718280 0.190355 -0.435893 -0.151904 -0.180781 0.422666 -1.421126 -0.149192 -0.003051 -0.184856 0.012354 -0.091241 0.466782 1.074448 0.655462 -0.307249 0.710484 0.563066 -0.095681 0.236379 0.151114 0.183739 0.122103 0.273277 0.131738 -0.325348 0.013527 -0.123185 -0.764941 -0.115878 0.756691 1.024564 -0.186171 -0.251033 0.481990 -0.145550 0.148773 0.019707 0.590262 0.253689 0.332087 0.738453 -1.137400 -0.189006 -1.799669 -0.268087 -2.287357 -0.833699 -0.485590 0.464353 -0.366875 0.608724 0.331308 1.184684 0.071641 0.045238 0.478006 1.206880 -0.906137 -0.267907 -0.268244 -0.137592 0.266603 -0.511887 0.242613 0.527257 -0.205139 -0.736181 -0.842610 0.686920 0.115006 -0.523042 -0.641880 -0.183104 0.660221 -0.933094 -0.641338 -0.977562 -0.179188 -0.238008 -1.315363 -0.126554 -0.017011 0.842650 0.429047 -0.267736 -0.886430 0.240512 0.502455 -0.128719 -0.726445 0.392465 0.582425 0.614396 0.188369 0.341562 0.336296 0.431649 1.362142 1.024561 -0.221468 -0.196787 0.150827 -0.324729 0.234710 -0.359214 -0.230876 0.293588 -0.735252 0.340281 0.556013 -0.496030 -0.336784 0.877155 -0.337975 0.220702 2.090262 -0.086290 0.664128 0.490805 -0.912185 0.185494 -0.563815 -0.266671 0.353362 0.713854 0.569552 -0.906416 -0.554245 0.498814 1.097345 0.429914 -1.163615 -0.526339 -0.031270 0.222683 -0.211294 0.304125 0.232900 0.285045 -0.460423 -0.051821 0.563299 1.461008 -0.791797 -0.706431 0.238617 0.328406 -0.102024 -1.196775 -0.180802 -0.668952 -0.084104 0.233367 0.070234 0.223158 0.928961 -1.786005 0.680292 -0.294484 -0.298687 0.633038 0.431977 -0.507825 -1.044090 0.255869 0.641504 0.675888 0.121274 0.244181 -0.063001 -0.936318 -0.054351 0.129017 0.264332 -0.477353 0.792022 -0.055019 -0.612623 -0.574836 0.018105 0.064103 -0.454118 -0.046870 0.516876 0.358837 -1.863781 0.854240 -0.132406 -0.570874 0.235545 -0.196689 0.870616 -0.826085 -1.046617 0.537827 -0.419041 -0.467215 -0.250522 -0.218494 0.350231 0.294003 0.045666 -0.417927 -0.794049 0.695089 -0.068095 0.638863 0.551161 0.207044 1.124369 -0.616545 -0.722536 -0.657951 -0.157719 0.201260 -0.314292 -0.454728 -0.720047 -0.341082 0.692870 1.159530 0.046399 -0.189335 -0.293797 0.762175 -1.394074 -0.229404 0.580605 1.113069 -0.440647 0.469791 0.614544 -0.610427 -0.178291 -0.515942 -0.182352 -0.238947 -0.646085 0.400893 -0.665662 0.060512 0.477541 -0.245639 -0.109234 0.529714 0.045876 0.201792 -0.238042 0.725424 1.471998 -0.955412 -0.130704 -0.814517 0.406940 -1.109694 -0.917664 0.245428 0.279398 -0.339184 -0.193853 0.106912 0.451841 0.220887 -0.533968 -0.417571 -0.099009 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__compare(char*, char*) = -0.970214 -0.824698 -0.302122 -1.434880 0.841486 1.356389 0.591773 -1.174589 -1.980643 -0.985921 0.589747 -2.364194 -1.120631 2.301519 -0.673721 1.896312 2.893691 0.500313 -0.953683 -0.593738 1.883062 -0.832749 2.984453 3.251453 -1.836434 0.037550 0.042899 1.207401 0.457861 0.573278 0.714366 -1.333957 0.713057 -2.121751 0.268982 -1.381875 -0.457621 1.162828 1.456170 -3.656841 -0.132438 1.135816 0.399660 -0.097439 -0.023641 0.122000 1.717948 1.779592 -0.011662 1.674811 1.135767 -0.111197 1.080617 0.210379 0.697299 0.638523 0.017485 -0.672737 -0.443657 -0.217497 -0.671463 -1.020075 0.509756 2.157945 2.542304 -0.147828 -0.972639 0.792496 0.291073 0.554902 0.808069 1.647177 -0.599219 0.296381 1.262466 -3.058900 0.315805 -3.326297 0.433099 -3.579969 -1.569910 0.006356 1.488782 1.455569 1.460981 -0.079599 3.238920 -0.835293 -0.992049 2.132126 2.470808 -1.933129 -0.548407 -0.788051 -0.773476 0.143929 -1.040383 -0.018301 0.498374 1.019741 -1.876279 -1.144268 0.697983 0.554383 -1.226312 -1.369234 -0.167073 1.923402 -2.273397 -1.890248 -1.124416 1.348566 -0.493946 -3.306946 -0.581417 -1.396316 0.319089 0.523743 -1.593017 -2.015771 1.052557 0.772097 -0.288221 -1.091382 -0.563419 1.442374 1.025830 0.304436 -0.101360 1.246579 0.310102 3.301940 0.950988 -1.073374 0.139700 0.852745 -0.574273 0.905065 -0.894193 -0.857944 0.451495 -2.212987 -0.576477 1.090806 -1.269789 -0.413798 0.743467 -0.020950 -0.014949 6.916814 -0.455282 2.285417 2.086284 -1.925032 1.133532 -0.713300 0.451548 0.853268 1.399014 0.989316 -3.396386 -1.766737 1.672940 3.096537 1.247697 -1.867680 -0.835100 0.362230 0.562511 -0.033222 0.922497 0.286103 0.255820 -1.359058 -0.239028 0.983247 4.113033 -1.317859 0.196587 0.514448 0.754334 -0.730095 -2.808446 -0.467386 -2.219621 -0.160506 0.480675 0.396401 0.772836 2.493525 -2.624318 2.135038 -0.743975 0.035632 1.768950 0.628104 -1.458972 -3.133496 -0.858832 0.951221 2.064410 -0.638870 0.330551 0.435232 -2.620478 0.049370 0.454969 0.604507 -1.457950 2.199060 -0.165557 -1.088282 -0.821482 0.663428 -0.707115 -1.121780 -0.373148 1.653087 0.772601 -1.861378 1.747159 0.311981 -1.003934 0.731295 0.058783 2.152049 -1.893311 -2.193721 1.574339 -0.594684 -1.241300 -0.629887 -0.582677 1.118422 0.815177 -0.625824 -1.602910 -1.829563 1.947587 -0.699818 2.490997 1.180611 -0.500822 1.657414 -0.264315 -1.226067 -1.159744 -1.382747 -0.514719 -0.231354 -1.108115 -1.922882 -0.576243 1.937129 2.082005 0.356908 -1.227701 0.243899 2.541477 -1.933271 -0.286330 0.953718 0.625129 -1.496511 0.730087 1.316393 -1.974096 0.304072 -1.525549 0.109738 -1.099020 -1.081802 1.770719 -0.801152 0.749412 0.118301 -0.235595 0.092919 0.916608 1.192402 0.179990 0.459206 2.991242 1.435171 -0.338412 -0.492234 -2.448587 1.165877 -2.396770 -1.724658 -0.056456 1.413229 -1.248912 -0.347215 0.334110 1.916109 1.503029 -1.230345 -0.948620 0.321174 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -2.150647 -1.262015 0.273692 -4.414070 2.769721 4.807976 1.431049 -3.361545 -5.262696 -2.793199 2.483807 -8.897277 -4.986027 6.349471 -2.610108 2.897510 7.704142 -0.461271 -2.967501 -2.529817 4.039199 1.629426 9.251033 9.802844 -6.790217 0.355984 -0.325656 2.706948 2.723554 0.225008 2.666499 -5.082529 1.766872 -2.806158 0.751074 -1.412171 -1.641322 0.711735 3.251588 -10.041186 -0.831069 4.156508 -0.390228 -0.027913 1.058111 3.321839 6.628091 5.142612 -0.522236 4.373690 4.346007 0.735184 2.931467 -0.147685 1.231952 -1.977213 1.693830 -1.750357 -1.014561 -0.940065 -1.229180 -1.463090 -0.766049 7.203253 7.734603 -0.000288 -3.351099 0.867227 2.002548 1.633048 1.716060 5.497846 1.369959 3.535815 4.300016 -4.420933 0.775819 -9.015370 1.926325 -10.688082 -4.781888 0.144621 6.123939 3.810292 1.991533 -2.281996 9.681084 -0.745935 -2.966437 7.219027 7.988435 -4.169866 -1.418179 -1.602023 -3.140217 1.000980 -3.060932 2.673309 0.033101 3.411749 -5.837309 -2.737772 -0.023189 -0.111427 -3.976456 -1.676361 -0.371947 4.071896 -5.937029 -1.776675 -2.663188 4.307191 1.185201 -10.326514 -4.919192 -3.806855 1.769854 1.208198 -4.419887 -3.309518 2.251296 0.355967 -1.716398 -1.251186 -3.671938 4.332082 4.506330 1.895956 -0.535242 4.147722 3.063427 8.163058 0.521405 -3.278499 0.340887 1.268234 -0.225565 2.909892 -2.200808 -0.707122 2.685136 -4.389109 0.448126 2.454625 -3.310510 -2.644908 -0.679948 -1.109622 -0.474494 19.497052 -1.433161 7.174722 5.831189 -5.321421 1.500661 -2.738461 0.464110 2.150308 3.408041 3.905482 -7.083639 -4.729351 5.968557 9.510901 3.070587 -5.991896 2.048493 3.651940 0.611609 -2.744883 4.093668 0.630511 0.860999 -3.393927 -0.922523 4.868039 11.043180 -2.603811 -1.568604 0.528090 3.835003 1.103298 -2.959491 -0.122154 -2.316503 0.170112 4.011542 2.088432 3.631916 7.115620 -9.861507 5.645984 0.832197 0.454710 4.487769 2.066596 -5.377001 -4.871547 -1.006637 3.134054 4.739787 -0.085418 -0.195791 0.641701 -7.586695 0.182863 2.116363 1.125363 -4.583227 6.339031 0.598367 -2.612210 -2.874055 -0.798239 -2.000568 -0.811628 -3.501247 4.876242 0.571992 -8.269041 5.788458 1.223620 -3.214604 -1.640173 -2.796974 5.672030 -5.946667 -5.796739 3.025872 -3.919838 -6.137666 -2.180308 -2.420015 1.640177 2.705577 2.577527 -6.474810 -5.444398 7.806900 -1.772525 7.703380 3.882458 -1.116955 4.799854 -1.560636 -2.850925 -3.147909 -5.599819 3.395830 0.863815 -4.517972 -0.783657 -2.175735 4.160552 5.469953 -1.555642 -4.508046 -0.936904 5.592182 -4.863318 -1.485490 1.535578 2.346319 -4.561699 3.419664 2.886778 -4.448908 2.122911 -5.656215 -1.451958 -4.445667 -3.840551 4.952561 -1.677596 2.155908 1.045176 -1.010514 -0.845820 2.638795 1.717614 -0.859749 2.311811 7.988629 5.962114 -1.816024 0.585006 -8.635732 5.119064 -7.150277 -6.786365 1.304908 -0.436773 -3.133420 -2.245306 -1.361358 4.983076 4.736373 -4.149872 -4.250707 4.306974 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 0.173122 0.437486 0.526550 -0.069031 0.440129 0.045907 0.184808 0.612930 -0.404775 -0.593301 -0.180539 -0.752975 -0.921753 0.536001 0.049345 -0.338065 0.870407 0.259158 0.093275 -0.135482 -0.280910 -0.197252 0.631945 0.723923 -0.559464 0.378438 -0.229680 0.128182 -0.351116 0.861969 -0.103774 -1.037642 0.103733 0.550553 0.433546 -0.178804 -0.318359 -0.319086 -0.707084 -1.284471 -0.071421 1.078787 0.086560 -0.051476 0.342908 0.530302 1.088041 0.269603 -0.032506 0.417723 -0.025495 -0.020090 0.413387 0.040772 0.319336 -0.094552 0.318518 -0.456816 -0.674305 0.379989 -0.136431 -0.865756 -0.482974 0.346269 0.484930 -0.114927 -0.307967 -0.498078 -0.231314 0.144682 -0.035471 0.312752 0.660949 0.208411 0.375963 0.661637 -0.067430 -0.179750 0.135040 -1.628589 -0.759410 -0.526560 1.237007 0.924899 -0.270266 -0.727170 0.789156 -0.230871 0.347003 0.242958 0.906838 -0.177081 -0.278873 -0.296487 0.005717 0.318771 -0.175888 -0.247933 0.126266 -0.148855 -0.545037 -0.085363 0.405541 -0.331180 -0.313390 0.503346 -0.161507 0.535604 -0.914667 0.134825 -1.035235 0.057075 0.504381 -0.678180 -0.134083 0.404206 -0.269577 0.615187 -0.351585 0.102217 0.392399 -0.087055 -0.330448 0.219842 -0.993612 0.899463 -0.166458 -0.093309 0.368428 0.444730 0.396425 0.093981 0.416759 -0.097765 -0.020780 0.310746 0.051150 -0.056808 -0.025282 -0.136796 -0.172825 -0.338871 0.085450 -0.241441 -0.450925 -0.095986 -1.357063 -0.204657 0.209373 0.627294 -0.322292 0.396021 -0.064178 -0.479388 0.650765 0.014080 -0.394190 -0.138528 0.548973 0.579655 0.266237 -0.167031 0.253745 0.795488 0.307508 -0.285389 0.463437 0.000172 0.063951 -0.099615 0.649190 0.103817 0.445886 -0.346861 -0.085855 0.101739 0.965181 -0.056997 -1.047418 -0.082082 0.053122 0.432771 0.017029 0.243088 0.236203 -0.103875 0.056396 -0.161525 0.191356 0.593320 -1.194766 0.727614 -0.021095 -0.414181 0.562644 -0.175884 -0.014925 -0.517065 -0.058320 0.517361 0.886291 0.435223 -0.238361 -0.333693 -0.515483 -0.129158 0.084612 0.345220 -0.344793 0.538482 -0.188043 -0.443838 -0.223652 -1.028689 -0.039387 0.074774 -0.633312 0.124511 0.689780 -1.237813 0.599274 0.068832 -0.251400 -0.326046 0.116411 -0.003056 -0.448099 -0.691383 -0.107316 -0.497757 -1.257699 -0.158041 -0.483163 0.040544 0.025210 -0.173321 -0.051572 -0.487311 1.053929 0.205859 0.594770 0.471686 0.026167 0.818995 1.264112 -0.553211 0.280625 -0.581985 0.674526 -0.803449 0.135136 0.503824 -0.526252 0.139981 0.791758 0.071406 -0.079082 -0.672941 0.550969 -0.057539 -0.277019 0.519327 -0.659767 0.235096 0.592995 0.626045 -0.353594 -0.224066 -0.747431 -0.034432 -0.112188 -0.189638 0.037868 -0.742938 -0.206708 0.519430 -0.348213 -0.673727 0.102940 -0.259510 -0.527966 -0.254732 0.764143 0.467603 -0.663433 1.013583 -0.389937 0.475025 -0.598074 -0.204814 -0.302001 -0.004148 -0.212042 -0.152700 -0.041765 -0.143542 0.035187 -0.355306 -0.498056 0.247066 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -1.220679 -1.357584 -0.685653 -1.295349 1.460940 1.240950 0.987749 -1.227082 -2.760370 -0.652282 0.898172 -2.865850 -1.533944 3.097376 -0.513693 2.648736 3.991145 0.865637 -0.907347 -1.165784 2.554725 -1.778876 3.999993 4.501724 -2.523528 0.218648 0.340819 0.911329 0.577596 0.528211 0.001364 -1.621752 1.335390 -3.320526 0.393623 -2.117846 -0.693100 1.473147 2.623194 -4.976442 -0.226648 0.943665 0.699410 0.004817 -0.125217 2.200764 2.181871 2.359642 -0.667038 3.020638 1.725367 -1.114958 1.450501 0.336289 0.843214 0.967266 0.250241 1.304713 -0.847404 0.029416 -0.924448 -1.515078 0.648776 2.499290 3.695286 -0.555282 -1.396150 1.188923 0.493706 0.647427 1.119679 2.169830 0.313634 -0.221272 2.299105 -3.946973 -0.396991 -6.212838 0.104847 -6.882762 -2.151264 0.021497 2.373260 -0.524927 1.971783 -0.101344 4.337157 -0.576407 -1.385715 2.553529 3.290190 -2.920671 -0.936288 -0.739286 -1.143595 0.171365 -1.383175 0.309485 2.474856 0.427449 -2.660656 -2.408090 1.445017 0.517035 -1.590956 -2.213776 -0.287103 2.386830 -2.587694 -2.545392 -2.073349 1.106524 -0.647381 -4.245259 0.087087 -1.651545 0.872639 1.142055 -2.196061 -2.498600 1.304164 0.723702 -0.861847 -1.777701 0.461966 2.331898 1.473941 0.696122 0.224304 1.205350 0.388403 4.220022 1.844635 -1.781690 0.040022 1.198431 -1.120065 1.558996 -1.855558 -1.373632 2.068503 -2.885681 0.184027 0.596533 -1.792483 -0.320882 3.315955 0.103089 -0.198434 7.827445 -0.426081 3.130731 2.488507 -2.503761 2.182990 -1.056306 0.820969 1.608111 2.633556 0.912188 -4.188961 -2.346992 2.076335 4.100256 1.706675 -3.791500 -2.102846 0.465145 1.047265 -0.106372 1.207681 0.547927 0.523860 -1.585256 -0.083931 1.022532 5.706344 -2.392855 -0.305282 0.456267 1.547534 -0.882443 -4.496470 -0.702980 -3.532507 -0.296865 0.194070 0.657923 1.138903 3.291633 -5.308639 2.705990 -1.658482 -0.131013 2.361335 1.393991 -2.197781 -4.831209 -0.764363 0.950079 2.942383 0.267396 0.270017 0.904178 -3.429558 0.144434 0.294644 0.652662 -1.920354 3.054745 -0.604203 -1.480457 -0.873918 0.650110 -0.730848 -1.898077 -0.089960 2.276172 1.202664 -4.048838 1.892375 0.199219 -1.670877 0.892325 0.398831 2.465546 -2.334349 -3.039296 1.956030 -0.926495 -1.253058 -1.499772 -0.736448 1.229407 0.680440 -0.526733 -1.780258 -3.537476 2.988705 -1.254325 3.353768 1.661227 -0.970926 2.726039 -0.549767 -2.259159 -2.185315 -1.123537 -0.467058 -0.749079 -1.331877 -2.285554 -0.805120 2.510679 2.768275 0.873456 -1.022458 -0.351834 3.532665 -3.035172 -0.295505 1.702671 1.891759 -1.353922 1.520704 2.046531 -2.882155 0.421361 -1.891163 -0.355680 -1.245850 -1.184642 2.392397 -1.319800 0.807500 -0.221329 -0.269008 0.470950 1.386532 1.302078 0.224419 0.070674 4.057015 3.347961 -1.544582 -0.626059 -3.107659 1.733775 -3.102989 -2.322245 -0.051010 1.812434 -2.266444 -0.376714 0.908274 2.301039 1.564996 -2.119920 -1.731698 0.401661 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = -0.021674 0.263877 0.555161 -0.306756 0.299513 -0.225520 0.150109 0.263709 -0.375647 -0.904231 0.146325 -1.051183 -1.134423 0.608871 -0.241872 -0.414383 0.832953 -0.039351 0.001431 -0.494366 0.023013 -0.249624 0.904833 0.987374 -0.977867 0.141606 0.109798 0.498277 0.405142 0.187139 0.439192 -0.742351 0.108412 0.441767 0.587286 -0.032218 -0.092416 -0.351509 -0.620404 -1.222157 -0.192570 0.733531 0.011454 0.077825 0.247985 1.185576 1.045708 0.524078 -0.402574 0.458501 0.596695 -0.072066 0.341242 -0.017828 -0.048640 -0.882107 0.353264 -0.243939 -0.470077 0.264863 -0.013088 -1.004129 -0.359772 0.752051 0.925997 -0.154918 -0.206289 -0.226185 0.029087 0.321777 0.057742 0.496349 0.707789 0.459588 0.717385 0.104793 -0.039204 -1.319121 0.124802 -2.534056 -0.772088 -0.462234 1.369886 0.498238 -0.421703 -0.407983 0.981886 0.351165 0.092546 0.786798 1.096947 -0.035014 -0.298971 -0.296037 -0.273195 0.539485 -0.484538 0.289442 0.242674 0.410815 -0.623110 0.009096 0.153719 -0.425499 -0.417351 0.295430 -0.263401 0.469984 -1.014653 0.368529 -0.910620 0.021823 0.780906 -1.195267 -0.094418 -0.004094 0.503810 0.402907 -0.237822 0.398063 0.145753 -0.191190 -0.226157 0.391469 -1.258042 0.855288 0.187631 0.212643 0.242038 0.621476 0.561974 0.129788 0.375471 -0.217070 -0.241306 0.152355 -0.192971 0.129374 -0.244912 -0.029597 0.771922 -0.314024 0.302266 -0.260715 -0.402164 -0.769268 -0.624854 -0.434396 0.249894 1.204509 -0.092688 0.630071 0.308529 -0.449212 0.325727 -0.174632 -0.237531 0.208767 0.552145 0.537101 0.231304 -0.353753 0.490379 0.995068 0.293254 -0.672925 0.344121 0.420055 0.065901 -0.409805 0.579827 0.209760 0.132241 -0.265892 -0.089247 0.606468 0.682968 -0.013749 -0.812569 -0.152990 0.448925 0.416548 -0.202241 0.283522 0.437197 0.030439 0.221258 0.139248 0.336704 0.758618 -1.895640 0.651781 0.465531 0.131743 0.395891 -0.073508 -0.438371 -1.245749 0.305052 0.547832 0.532525 0.343723 -0.209148 -0.095593 -0.747548 -0.023203 0.195694 0.295017 -0.423981 0.616467 -0.189781 -0.160582 -0.590604 -0.864113 -0.143172 0.375209 -0.548639 0.355397 0.386113 -1.631860 0.784147 -0.316160 -0.517533 -0.713245 -0.344739 0.287343 -0.840855 -0.740887 -0.121893 -0.829777 -1.554534 -0.713500 -0.388363 -0.037601 -0.102119 -0.026754 -0.257645 -0.487012 1.148464 -0.281976 0.594377 0.469769 0.101439 1.130272 0.711469 -0.421346 -0.162597 -0.263724 0.788012 -0.638682 -0.322527 0.559970 -0.268046 0.112276 0.871853 -0.335077 -0.149535 -0.104952 0.523864 -0.371548 -0.800744 0.309985 -0.096770 0.015376 1.035608 0.409424 -0.565707 -0.012712 -1.056774 -0.316378 -0.165881 -0.526550 0.264150 -0.554662 -0.023317 0.502503 -0.193417 -0.521573 0.370186 -0.144667 -0.316638 -0.110680 0.875190 1.393816 -0.813015 0.636851 -0.929174 0.563920 -0.934739 -0.755359 0.017086 -0.061245 0.082771 -0.168376 -0.221357 0.098961 0.353545 -0.670007 -0.715639 0.719556 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -2.449778 -1.432391 -0.720162 -3.829177 2.759040 5.347420 1.446876 -4.310644 -4.464632 -2.081132 2.621550 -7.442409 -4.131614 5.844312 -2.600204 3.916444 6.824593 -0.698872 -2.803008 -2.347539 4.530649 1.718094 9.043753 8.956681 -6.242883 0.020005 1.017838 2.310800 2.886469 -0.616489 2.302537 -4.139820 2.633610 -4.306164 -0.232170 -1.442201 -1.265637 0.642801 4.545478 -8.611971 -0.806831 1.783036 -1.378482 0.144009 0.284547 2.798096 5.543647 5.012839 -0.572787 4.507455 4.373139 0.650188 2.091654 0.097901 0.876953 -1.517861 1.013724 -0.819349 -0.394890 -1.643828 -1.147464 -1.030066 -0.593442 6.690361 7.315828 -0.185546 -2.764460 2.149419 1.554355 1.554190 1.530713 5.110457 0.570165 3.278120 4.051268 -5.974882 0.213877 -9.205949 0.750896 -9.766903 -4.164901 0.385023 4.167874 1.576636 3.062957 -0.433950 8.862558 -0.051635 -3.223827 6.424392 7.316534 -4.822828 -1.221597 -0.967900 -2.466916 0.644776 -3.169850 3.210879 0.623169 2.644142 -5.380746 -3.221276 0.015184 0.506388 -3.643010 -3.262706 -0.370664 3.790006 -5.423144 -2.548786 -2.083300 3.437486 -0.089368 -10.135490 -4.781494 -3.438232 3.474345 0.875014 -3.772767 -4.222199 1.894338 1.173785 -0.951087 -2.631068 -0.199756 3.064424 5.113742 2.190753 -0.395988 3.584174 2.673675 9.344279 1.556216 -2.778612 0.117417 0.638922 -0.399751 3.241770 -1.991707 -0.522710 2.056220 -4.728753 1.678131 3.723630 -2.912736 -2.681922 2.086121 -0.863665 -0.540101 19.006784 -1.051674 6.931582 6.043665 -5.366205 -0.056485 -3.707190 0.653652 2.521843 2.971862 3.273594 -7.409960 -4.416547 5.660882 8.715536 2.854577 -6.751505 0.936262 3.107295 0.855420 -2.915071 3.079599 0.882158 0.827145 -3.084116 -0.709297 5.112588 10.105983 -3.542242 -1.229844 1.030107 3.548470 0.538720 -3.754517 -0.805725 -2.962962 0.216374 4.568009 2.148863 2.864996 6.550414 -8.745648 4.691696 0.537677 0.532576 4.001490 3.154660 -5.524860 -3.976908 -0.578617 2.881244 3.634219 -0.508330 0.463593 0.972799 -7.115613 0.213064 2.180237 0.679101 -3.998851 5.763878 1.125090 -2.449389 -2.964555 0.826133 -1.141114 -1.465200 -2.240253 4.866642 -0.347843 -8.681558 5.238457 0.864946 -3.596523 -0.666478 -2.842280 6.540242 -5.533566 -5.602284 3.694353 -3.448968 -4.410352 -1.784353 -1.618900 1.762249 3.242413 3.119966 -6.026837 -4.938550 6.178577 -1.586489 6.728884 3.387915 -0.595997 4.897840 -5.097963 -2.910388 -4.004156 -4.727375 2.983043 1.376769 -4.830936 -2.174028 -1.538723 4.479858 5.098548 -1.245007 -4.440009 -0.456822 4.986594 -6.317324 -0.773052 1.536661 5.385510 -4.974465 2.802861 2.567065 -4.048546 2.014959 -4.169695 -1.500674 -4.273990 -4.057057 4.782337 -1.183164 2.446983 0.681198 -0.467149 0.034181 2.793624 1.805970 0.549441 2.112848 6.487963 6.635298 -2.232491 -1.159279 -7.985334 4.491038 -6.866352 -7.138789 2.270803 -0.190898 -2.648419 -2.060052 -1.303903 5.148901 4.245103 -4.227000 -3.555009 3.316513 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = 0.008311 0.235284 0.419628 -0.120056 0.570190 0.108257 0.307409 0.362499 -0.593541 -0.582022 -0.040533 -0.816026 -0.910711 0.791835 0.030811 0.119323 1.165555 0.328805 0.024149 -0.266118 0.099627 -0.551814 0.997945 1.053967 -0.718973 0.352935 -0.018479 0.180545 -0.207409 0.774684 -0.254895 -0.923443 0.383555 -0.128578 0.323256 -0.422265 -0.313908 -0.158026 -0.228736 -1.543929 -0.068978 0.741350 -0.008880 -0.055415 0.168908 0.769342 1.143131 0.490002 -0.111017 0.744915 0.146080 -0.310667 0.428222 0.136730 0.402813 0.119127 0.300643 -0.095927 -0.720531 0.316130 -0.229175 -1.084410 -0.316736 0.494654 0.777325 -0.206924 -0.347918 -0.119933 -0.235421 0.150541 0.105542 0.430828 0.620734 0.065233 0.623971 -0.157879 -0.158899 -0.944398 -0.117166 -2.279822 -0.906847 -0.468418 1.205434 0.359776 0.124397 -0.451202 1.049001 -0.203359 0.156428 0.342607 1.143637 -0.654887 -0.384995 -0.288776 0.016819 0.246674 -0.354784 -0.164373 0.512919 -0.282039 -0.753184 -0.401144 0.720671 -0.139377 -0.399720 0.018016 -0.160020 0.764174 -1.092620 -0.320349 -1.186483 -0.041469 0.228421 -1.004074 0.124928 0.305731 0.230474 0.710030 -0.489320 -0.319308 0.477917 0.154766 -0.313390 -0.218600 -0.473723 1.017875 0.032287 0.081503 0.425345 0.464121 0.367345 0.673479 0.872867 -0.205906 -0.038686 0.322102 -0.193486 0.187208 -0.171244 -0.344308 0.071836 -0.641167 0.102504 -0.039980 -0.584599 -0.069195 -0.345901 -0.052070 0.178306 1.243354 -0.264002 0.642529 0.191299 -0.722333 0.723963 -0.243816 -0.254505 0.076320 0.771077 0.537174 -0.395758 -0.392268 0.416997 1.050640 0.465291 -0.888235 -0.030504 -0.088492 0.249376 -0.064074 0.558088 0.212470 0.544006 -0.509269 -0.055540 0.196354 1.496249 -0.518541 -1.005638 0.066300 -0.049338 0.236271 -0.802540 0.039794 -0.144461 -0.112310 -0.005638 -0.084787 0.184180 0.855035 -1.588896 0.866070 -0.403962 -0.467072 0.779854 0.111420 -0.274062 -1.013235 -0.117915 0.560425 1.044218 0.495570 -0.124994 -0.153759 -0.776965 -0.110240 0.048230 0.330091 -0.395433 0.734748 -0.204933 -0.596593 -0.325551 -0.737716 0.018096 -0.185294 -0.363696 0.352531 0.675339 -1.687007 0.701018 0.037419 -0.448828 -0.039986 0.208446 0.381590 -0.613632 -0.977380 0.197211 -0.532842 -1.123450 -0.358172 -0.408770 0.150545 0.090993 -0.333993 -0.131001 -0.832216 1.128048 0.033979 0.801068 0.552104 -0.022853 1.173063 0.860345 -0.789096 -0.097082 -0.457613 0.431379 -0.871314 -0.058251 -0.020204 -0.498105 0.471013 0.986708 0.219480 -0.048855 -0.587354 0.821366 -0.721030 -0.278041 0.746935 0.101107 0.032464 0.689966 0.826035 -0.630593 -0.193407 -0.685940 -0.191805 -0.199081 -0.329083 0.238224 -0.773583 -0.082099 0.407026 -0.248268 -0.446262 0.240589 -0.142145 -0.284532 -0.337333 1.002318 1.167098 -0.931959 0.599806 -0.595145 0.554181 -0.851666 -0.508613 -0.128203 0.378988 -0.426083 -0.139769 0.208355 0.123971 0.150151 -0.665495 -0.557078 0.113093 diff --git a/src/test-suite/oracle/SYM_llvm16_onDemand/ir2vec.txt b/src/test-suite/oracle/SYM_llvm16_onDemand/ir2vec.txt new file mode 100644 index 000000000..da9ed395e --- /dev/null +++ b/src/test-suite/oracle/SYM_llvm16_onDemand/ir2vec.txt @@ -0,0 +1,269 @@ +PE-benchmarks/channel-assignment.cpp__main = 0.252461 1.088312 1.745072 -0.874376 1.173786 0.960365 0.310118 0.364273 -1.005668 -0.340940 -0.417627 -1.761406 -1.292273 1.272804 0.014411 -0.255765 1.894072 0.291769 -0.389554 -0.066299 -0.083701 -0.302979 1.308366 1.619540 -1.207218 0.840217 -0.129121 0.415941 -0.556325 2.363388 -1.537704 -1.571576 -0.326737 0.735412 0.855221 -0.431550 -0.867422 -0.811958 -0.529771 -2.667036 0.022222 1.865613 0.258892 -0.337360 0.649209 0.496732 2.561625 0.591847 0.071729 0.078012 0.057838 -0.123195 0.840792 -0.024392 1.332344 0.561860 2.387082 0.247059 -0.952441 0.405047 -0.371377 -0.743216 -0.435461 1.065334 1.046088 0.141065 -0.800757 -0.982036 0.153848 -0.083573 -0.285983 0.787403 0.673630 0.987074 0.411339 0.508821 1.163847 -0.436599 0.575025 -1.607226 -1.484867 -0.693202 1.341079 1.278492 0.128531 -1.536434 1.799729 -0.855627 0.536534 -0.392664 2.009290 -0.881883 -0.319312 -0.564627 -0.714194 0.151723 -0.007755 -0.534166 0.177240 -0.696316 -1.174517 -0.425924 1.156020 -0.101999 -0.773721 1.656530 -0.016665 1.095903 -1.020573 -0.174875 -1.337765 0.121469 0.332917 -1.629846 -0.454046 0.041757 -0.926883 0.656683 -0.995162 -1.033097 0.845190 0.433631 -1.022529 0.060387 -2.106602 2.211039 0.271182 -0.239468 0.346631 0.108574 0.924281 0.314916 0.700067 -0.564728 0.272475 0.336549 -0.327926 -0.278005 -0.189899 -0.222553 -0.656467 -0.575121 -0.626677 0.191225 -0.889040 1.072482 -1.788560 -0.097566 0.243484 3.491187 -1.073884 1.060024 -0.293848 -1.406643 1.992460 0.573333 -1.034624 -0.442851 0.830657 1.483615 -1.638959 -0.621234 0.926938 1.819121 0.712756 -0.987797 0.774368 -0.146747 -0.495912 -0.015492 1.300980 -0.170636 0.568541 -0.886893 -0.493534 0.134366 2.950170 -0.398195 -3.243272 0.124080 -0.587978 0.500528 -0.493030 0.254354 -0.114329 -0.043500 -0.515913 -0.516945 1.049471 1.404983 -3.100686 1.713143 -0.335390 -1.909313 2.658726 -0.744928 -0.144049 -0.583154 -0.251231 1.299900 1.860785 0.680159 -1.194305 -0.757804 -1.176324 -0.292316 -0.016976 0.590825 -1.077396 1.195580 0.086822 -1.489821 -0.370736 -2.288613 -0.073914 -0.371094 -1.656648 0.360012 0.242603 -2.451831 1.664183 0.980334 0.024601 -0.175762 -0.196754 -0.582627 -0.805466 -1.430013 -0.128529 -0.404511 -1.172068 -0.182521 -0.958941 0.268570 0.261768 0.177261 -1.249025 -1.671636 1.520749 -0.086078 1.605192 1.023281 0.214764 0.859387 3.278753 -0.659529 0.032777 -0.930632 1.041095 -0.470557 -0.249344 0.076205 -1.351040 0.654250 1.384341 -0.126755 0.339211 -1.984213 1.081225 -0.064254 -0.178030 0.789791 -1.869908 -0.541392 -0.043893 1.121474 -0.264464 -0.443320 -1.287543 -0.975080 -0.834099 -0.479184 0.259203 -0.979242 -0.380549 0.968479 -1.008262 -1.193711 0.109580 -0.468656 -0.993696 0.059660 1.555549 0.718167 -0.883217 1.727498 -0.962108 1.268862 -1.335977 -0.510474 -0.166594 -0.492509 -1.055222 -0.656607 0.368730 0.189915 -0.049575 -0.328080 -0.310290 0.268414 +PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -1.781302 -0.768311 0.239495 -3.154739 2.095698 3.526893 0.975128 -2.665166 -3.384540 -1.960794 1.120268 -4.777596 -2.756499 4.348672 -1.613324 2.969894 5.454675 0.120350 -1.726465 -1.510575 3.588601 -0.349627 6.216216 6.528438 -4.347191 0.128732 0.952186 2.523810 1.403295 0.787639 1.265497 -3.092516 1.181932 -3.490621 0.367707 -2.001027 -0.977911 1.153573 2.881853 -7.016882 -0.546262 1.514307 -1.034566 -0.007985 0.173630 0.305439 4.234962 3.534151 -0.449924 3.059150 2.828771 0.496643 1.700856 0.172127 1.049785 0.333330 0.606710 -1.034510 -0.306326 -0.567348 -1.078716 -1.362326 0.492594 4.747702 5.148328 -0.120621 -2.058900 1.464651 0.732786 0.867355 0.999762 3.665437 -0.465115 1.921046 2.846411 -5.763778 0.495745 -7.328729 0.961605 -6.337256 -3.363179 -0.251938 2.465012 2.212127 2.672229 -0.087313 6.610991 -1.061055 -1.771194 4.597289 5.276560 -3.720367 -0.778532 -1.444361 -2.030163 0.346986 -2.039888 1.068982 -0.341017 1.939382 -3.729881 -2.819905 1.003291 0.715526 -2.685174 -2.650681 -0.408652 3.502450 -4.137466 -2.980892 -2.223129 2.677224 -0.732886 -6.896029 -2.726408 -2.730988 2.175994 0.731517 -2.867523 -3.980734 1.738096 1.642968 -0.698521 -2.171925 -0.565060 2.628900 3.240244 0.743229 -0.316178 2.298707 1.391091 6.663755 1.818707 -1.934613 0.008110 1.192623 -0.833376 1.573186 -1.693291 -0.647327 0.868167 -3.575449 -0.535177 2.850065 -2.307830 -1.468823 1.665786 -0.911399 -0.002389 15.016791 -0.965740 4.403864 4.019039 -4.067101 1.285339 -1.812095 0.302043 1.745392 2.458623 2.672601 -7.111674 -3.336703 3.708041 6.270791 2.218744 -4.261211 -0.776604 1.354190 0.641086 -1.045821 2.182774 0.436772 0.346446 -2.401190 -0.580146 2.882728 8.068083 -2.529419 -1.108087 0.931655 1.998026 -0.650680 -4.366724 -0.668388 -3.223722 -0.249050 2.401897 0.930588 1.998921 4.904442 -6.495782 3.726430 -0.554614 -0.154206 3.188316 1.626728 -3.141938 -4.301781 -0.782357 2.309716 3.420416 -0.741121 0.771659 0.378425 -5.252923 0.150871 1.339902 1.132327 -3.145946 4.515462 0.262127 -2.524970 -2.055314 0.787649 -1.468071 -1.714829 -1.459280 3.261011 0.237622 -5.344126 3.983365 0.768258 -1.921290 0.861379 -1.367219 4.913850 -3.977771 -4.531686 3.160318 -1.636818 -2.489917 -0.933576 -1.323105 1.946789 2.141307 0.480664 -4.120981 -3.827177 3.846082 -1.001762 4.927831 2.510302 -0.415790 3.582557 -2.075543 -2.208628 -2.684955 -3.203862 1.158357 0.780407 -2.893720 -3.540561 -1.333378 3.530932 4.254834 -0.327985 -2.652014 -0.278000 4.413567 -4.579717 -0.456390 1.343072 2.642224 -3.467786 1.382265 2.147446 -3.171043 0.725058 -3.162873 -0.172722 -2.679471 -2.695234 3.365230 -1.499760 1.403233 0.857482 -0.605871 -0.145775 1.974273 1.856876 0.546253 1.177219 5.183492 4.233888 -1.129666 -0.882104 -5.306184 2.759910 -5.040527 -4.343608 0.598295 1.011121 -1.947825 -1.257948 -0.291314 3.751038 2.987364 -2.161943 -1.820097 1.198103 +PE-benchmarks/vertex-cover-problem.cpp__main = 0.299814 0.017917 0.917702 -0.440753 0.215465 -0.890941 0.149881 1.353610 -0.896638 -1.061690 -0.093127 -0.664508 -1.023228 0.611090 -0.008644 -1.136371 1.123893 0.635300 0.131609 -0.606282 -0.462647 -0.409245 0.490886 0.959895 -0.789961 0.400329 -0.580749 0.556017 0.121407 0.796983 0.570700 -0.955276 -0.204168 1.262654 0.882756 -0.540429 -0.297482 -0.068866 -1.627278 -1.760879 0.036330 1.445710 0.259556 0.062448 0.707761 1.592421 0.864016 0.257685 -0.382547 0.752185 0.303767 0.165853 0.402816 -0.080660 0.082186 -0.522631 0.258330 -0.542616 -0.735279 0.809138 -0.041161 -1.299401 -0.378013 0.361605 0.582760 -0.273370 -0.321812 -1.127618 0.185765 0.421997 0.393320 0.177544 0.888789 -0.239582 0.559479 1.013155 -0.296068 -0.929673 0.585516 -3.227782 -0.843653 -0.566881 2.672299 1.032260 -1.312072 -0.966543 0.775911 -0.207057 0.431518 0.932409 0.603889 0.710698 -0.365664 -0.379190 -0.247611 0.816313 -0.131619 -0.480089 0.278138 0.583273 -0.485913 0.486019 0.224968 -0.873626 -0.336838 1.003165 -0.216498 0.752407 -1.418589 0.837112 -1.171438 0.812002 1.400089 -0.537793 -0.079811 -0.002935 0.206137 0.593823 -0.426783 1.360406 0.301615 -0.626486 -0.559468 1.333638 -1.982879 1.118922 -0.597880 -0.093203 0.237800 0.649994 0.182715 -0.858556 0.244851 -0.368695 -0.074767 0.776284 0.084253 -0.209305 -0.400860 -0.108578 0.616065 -0.118218 0.365468 -1.178383 -0.558822 -0.917798 -1.758766 -0.213898 0.272456 0.423736 -0.179637 0.515018 0.046499 0.064379 0.552918 0.550497 -0.056405 0.210715 0.834947 0.252267 1.172162 -0.125698 -0.128287 0.824034 0.389620 -0.232999 0.539649 0.153555 -0.158744 0.188683 0.825360 -0.091281 0.284691 -0.210901 -0.113793 -0.109702 0.450405 0.724887 -1.250034 -0.737052 0.570516 0.303605 0.474248 0.655014 0.931163 0.075176 0.162192 -0.205458 0.449700 0.616845 -2.303951 0.879989 0.314272 0.221049 0.044771 -0.207251 0.116696 -1.533989 -0.238186 0.169092 1.410181 0.503211 -0.459987 0.114762 -0.532063 -0.119859 0.156464 0.439614 -0.435512 0.494161 -0.200478 0.015603 0.026047 -1.428011 -0.219567 0.883775 -0.744612 0.067905 0.614315 -1.770238 0.294627 -0.419690 -0.286000 -0.805298 0.231750 -0.168167 -0.563294 -0.504923 -0.495862 -0.333849 -2.256181 -0.840471 -0.667916 0.230314 -0.516724 -0.095618 0.209777 -0.448679 1.557416 -0.229997 0.663861 0.547191 -0.483524 1.356875 1.681259 -0.254945 0.404722 -0.489675 1.073019 -1.273674 0.473366 1.435786 -0.536037 -0.345221 0.794311 -0.010255 -0.104850 -0.297921 0.971853 0.349276 -0.742501 0.401066 -1.174890 0.948137 1.732997 0.663576 -0.963819 -0.144583 -1.247939 -0.063452 0.408481 0.204708 0.462825 -0.720304 -0.044217 0.317647 -0.024931 -0.953994 0.232285 -0.339134 -0.869394 -0.214187 1.146623 1.279988 -0.702309 1.587133 -0.380008 0.609164 -0.502675 0.097365 -0.993894 -0.180842 0.001434 0.221003 -0.568890 -0.103990 0.273169 -0.362737 -0.820180 1.025425 +PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -2.778998 -1.521345 1.100155 -4.865662 3.166995 4.845647 1.644170 -3.074783 -6.152225 -3.660052 1.830813 -9.505500 -5.576731 7.493771 -2.726033 3.640801 9.434616 0.725024 -3.070596 -2.183119 5.028816 -0.194587 9.920513 10.954536 -7.057909 0.142335 -0.682700 3.997402 1.705694 1.808252 2.732555 -5.970992 1.126464 -3.389477 1.716924 -2.725317 -1.576875 2.198139 3.148363 -12.186565 -0.822143 5.689803 0.956330 -0.289217 1.129608 1.069017 7.251302 5.844124 -0.488354 4.244656 4.394359 0.704580 3.817663 0.122148 1.485619 -0.561576 1.502634 -2.789457 -1.671571 -0.342437 -1.942688 -2.392964 0.265258 7.875440 8.924426 0.281596 -3.556889 0.565492 1.741062 2.085168 1.889635 5.901853 0.422191 3.087470 4.558762 -5.854348 0.853275 -11.113321 2.718146 -10.323901 -5.750308 -0.540465 6.235370 6.914070 2.778370 -2.418741 11.064080 -2.000724 -2.768009 7.654607 9.162498 -4.850572 -1.715669 -3.124325 -3.975515 1.165239 -3.459425 1.333481 -0.657828 4.177847 -6.471004 -3.986598 0.813636 0.328840 -4.235465 -1.971425 -0.764374 5.881918 -6.363574 -3.596895 -4.009790 5.106478 0.663192 -11.274033 -3.878768 -4.753321 -0.473757 2.011681 -5.204071 -4.597852 3.169590 0.992792 -2.103999 -1.766542 -5.260897 5.768258 3.939594 0.726336 -0.654402 4.206765 2.366133 8.432337 1.236830 -3.872868 0.317278 2.330134 -1.185581 2.437149 -3.449262 -1.379946 2.094705 -5.451103 -1.506362 2.767238 -4.083394 -2.510673 -2.118367 -1.581018 0.220338 21.596257 -1.890909 7.319384 6.069265 -6.184196 4.927019 -1.571044 0.582780 2.135752 4.365017 4.526507 -9.351379 -5.730567 6.284897 10.624812 3.820309 -5.309267 -0.028485 2.829155 1.142126 -1.937634 4.694883 1.210676 0.374837 -4.161273 -1.057549 4.433582 12.849662 -2.938598 -2.222730 1.106065 3.858892 0.119148 -5.816209 -0.479184 -4.739632 -0.592936 3.212877 1.686454 3.700367 8.419656 -10.657951 7.026685 0.343391 0.193092 6.019966 0.852070 -5.095520 -7.342528 -1.381587 3.889231 6.369840 -0.410741 -0.408040 0.317131 -8.734372 0.278149 1.933928 2.346237 -5.253886 7.501059 -0.844265 -3.537413 -3.409594 -1.060057 -3.270371 -2.653701 -3.868740 5.224595 2.437083 -6.722072 6.803794 1.260256 -2.837029 -0.152648 -2.082066 6.186141 -6.343807 -7.101177 3.903114 -3.575715 -5.954348 -2.609545 -2.556150 2.687067 2.894115 0.585527 -6.363222 -6.542405 7.848694 -1.775710 8.770725 4.170731 -1.163757 4.690081 2.663900 -3.600385 -3.233874 -5.669332 1.990774 0.481427 -4.372584 -4.133880 -2.454373 5.261591 6.893018 -0.864914 -4.494347 -1.862976 7.624485 -4.905598 -1.920418 2.449967 -0.979280 -4.569800 2.793509 3.923799 -5.593420 1.090752 -6.638833 0.364306 -4.444315 -4.202996 5.043326 -2.872406 1.867100 1.273996 -1.645108 -1.104981 2.678966 3.276434 -1.079507 1.811300 10.095779 4.283630 -1.187793 1.175729 -9.169819 5.073078 -8.342358 -6.266363 0.117770 1.059255 -3.990665 -1.900196 -0.295111 5.502028 4.637910 -3.264641 -4.276901 2.971927 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.064700 0.260607 0.410852 -0.115024 0.280733 -0.102676 0.134958 0.345694 -0.311534 -0.557065 -0.024403 -0.722114 -0.757382 0.437260 -0.060773 -0.265464 0.627380 0.112710 0.034288 -0.184947 -0.164779 -0.188182 0.537160 0.597095 -0.492666 0.207635 -0.147725 0.194356 -0.093939 0.486985 0.080802 -0.717164 0.070755 0.432327 0.373820 -0.054680 -0.172952 -0.219767 -0.525662 -0.904645 -0.074142 0.790981 0.156893 -0.018221 0.227481 0.567027 0.784236 0.270721 -0.074264 0.307091 0.128307 -0.053269 0.318059 0.025527 0.179830 -0.325312 0.295116 -0.367572 -0.495789 0.253421 -0.089842 -0.693355 -0.350837 0.364862 0.478951 -0.082467 -0.195245 -0.333780 -0.130805 0.181922 0.017888 0.265655 0.488743 0.223767 0.335326 0.422771 0.015033 -0.359985 0.093584 -1.453909 -0.559272 -0.335169 0.987800 0.685511 -0.269563 -0.472844 0.625105 0.001961 0.159164 0.279180 0.748010 -0.068990 -0.235862 -0.188612 -0.066454 0.285548 -0.218215 -0.053003 0.130773 0.092045 -0.434308 0.035074 0.233629 -0.278677 -0.236017 0.395134 -0.136590 0.366644 -0.731171 0.190134 -0.711817 0.017313 0.496848 -0.640492 -0.029380 0.202515 -0.095221 0.408543 -0.264465 0.196517 0.257394 -0.139435 -0.228228 0.264085 -0.966174 0.668100 -0.093306 0.034404 0.232298 0.392901 0.339656 0.037825 0.226971 -0.121004 -0.050048 0.162144 -0.022029 0.033047 -0.044122 -0.111108 0.103423 -0.250672 0.111314 -0.238416 -0.326973 -0.245835 -0.958660 -0.183631 0.158219 0.478817 -0.201297 0.375037 0.048038 -0.341194 0.422690 -0.036102 -0.235578 -0.063938 0.395238 0.407174 0.315829 -0.188519 0.296597 0.643040 0.233573 -0.257473 0.350766 0.133283 0.073128 -0.139756 0.473408 0.123740 0.236220 -0.254159 -0.073337 0.184129 0.623949 0.006671 -0.673480 -0.061639 0.107273 0.358602 -0.014817 0.197720 0.256323 -0.024658 0.009038 -0.033440 0.164450 0.494389 -1.058524 0.551089 0.141488 -0.146627 0.421901 -0.160807 -0.139081 -0.644260 0.014439 0.398490 0.562014 0.299578 -0.183560 -0.185897 -0.435820 -0.070844 0.058733 0.245089 -0.269416 0.402101 -0.162541 -0.254848 -0.272344 -0.771099 -0.051373 0.154411 -0.471539 0.157315 0.522532 -0.971980 0.506126 -0.033379 -0.246626 -0.398956 0.003609 0.019387 -0.428021 -0.507208 -0.133070 -0.532353 -1.066271 -0.283904 -0.326223 -0.042174 -0.065245 -0.136805 -0.053741 -0.285806 0.833550 0.003396 0.453348 0.330259 0.035417 0.637898 0.941912 -0.369871 0.158804 -0.308136 0.483592 -0.632181 -0.007772 0.496166 -0.307526 0.093777 0.575133 -0.040462 -0.077876 -0.315623 0.388169 -0.027166 -0.373897 0.350219 -0.488231 0.118160 0.569475 0.420455 -0.316370 -0.098124 -0.663027 -0.119254 -0.132950 -0.230424 0.062004 -0.472869 -0.115987 0.361431 -0.229024 -0.487647 0.122427 -0.153272 -0.379521 -0.139013 0.631860 0.510872 -0.492075 0.703068 -0.444830 0.353420 -0.525774 -0.291364 -0.129730 0.024669 -0.109172 -0.122767 -0.071576 -0.056123 0.108847 -0.353851 -0.450619 0.344101 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -1.134041 -1.304659 -0.394078 -1.618621 1.326079 0.940809 0.911633 -1.554814 -2.545961 -0.833995 1.326052 -3.360137 -1.705734 2.852087 -0.772329 2.175285 3.555556 0.199085 -0.936455 -1.688230 2.115840 -0.480118 4.162080 4.428568 -2.756862 0.155906 0.049804 0.905644 1.258682 -0.573011 0.710859 -1.544868 1.345434 -2.602380 0.120768 -1.060430 -0.627422 1.047193 2.611041 -4.347555 -0.208106 0.486503 0.328373 0.122083 -0.041760 2.536014 2.196501 2.343126 -0.443317 2.888619 2.135442 -0.833550 1.293774 0.207406 0.541080 -0.273642 0.342615 0.476090 -0.623156 -0.174045 -0.639654 -0.844179 0.142374 2.675486 3.522721 -0.329102 -1.524011 1.129104 0.978061 0.769920 1.044362 2.253098 0.668211 0.518757 2.206955 -3.494007 -0.353550 -6.064820 0.099864 -6.424494 -2.264163 0.340467 2.748503 -0.545954 1.418633 -0.114650 3.986773 0.145829 -1.652526 2.726259 3.252378 -2.371334 -0.860593 -0.281634 -0.931196 0.260752 -1.303121 1.293580 1.704938 1.075678 -2.644183 -1.735274 1.017480 0.014035 -1.568610 -1.787939 -0.012298 1.775291 -2.268296 -1.564781 -1.522843 1.555248 0.161319 -4.210249 -0.346728 -1.569061 1.717110 0.788871 -2.034652 -1.703246 0.912618 0.120052 -0.961596 -1.166097 -0.298774 1.938971 2.055212 1.088831 0.073361 1.727767 0.882088 4.162323 0.816582 -1.764010 0.068149 0.693426 -0.567819 1.718661 -1.509476 -0.916292 2.226611 -2.232712 0.847340 0.557278 -1.523414 -1.059109 2.749020 0.127475 -0.445346 7.185621 -0.289055 3.246585 2.812208 -1.947583 1.067362 -1.622953 0.874434 1.454383 2.013467 0.886752 -3.320231 -2.296414 2.331929 3.856609 1.487169 -3.803863 -1.081041 1.199077 0.825306 -0.759657 1.327064 0.475680 0.664355 -1.369603 -0.045583 1.731580 5.069601 -1.878038 -0.118322 0.251134 1.696285 0.092587 -3.163733 -0.609391 -2.122913 -0.086903 1.056964 1.334171 1.333968 3.108571 -5.315237 2.277291 -0.521126 0.368372 1.839147 1.613819 -2.676438 -3.863646 -0.595628 0.856871 2.259349 0.310692 0.413886 0.937175 -3.306423 0.184664 0.512940 0.259860 -1.883433 2.725528 -0.205233 -1.018288 -0.829580 0.475832 -0.852438 -0.783249 -0.371758 2.365600 0.992574 -4.501725 1.830957 0.142485 -1.790998 0.078398 -0.677246 2.933913 -2.288135 -2.349368 1.547783 -1.569821 -1.872676 -1.550155 -0.538954 0.561962 0.354063 0.788204 -2.117093 -2.705979 3.267299 -1.136232 3.225177 1.643536 -0.943553 2.349414 -1.655324 -1.856580 -1.827746 -1.460771 0.605722 -0.058864 -1.822715 -0.942778 -0.702156 1.995085 2.359462 0.112268 -1.566326 -0.144180 2.743944 -3.412236 -0.612456 1.239411 2.392925 -1.581323 1.921666 1.660868 -2.532528 1.025076 -2.100324 -0.907503 -1.548657 -1.386288 2.379832 -0.619019 0.988640 -0.298666 -0.257039 0.439161 1.504500 0.857757 0.032315 0.510162 3.618739 4.133567 -1.281921 -0.800418 -3.485573 1.840155 -2.897143 -2.873455 0.587841 0.756542 -2.065535 -0.640590 0.020140 2.438303 1.738907 -2.319415 -2.165916 1.442552 +PE-benchmarks/dfs.cpp__main = 0.348858 0.129591 1.027459 -0.475925 0.215788 -0.969302 0.135596 1.460260 -0.888191 -1.219016 -0.103087 -0.797747 -1.205928 0.624859 -0.019649 -1.336245 1.164436 0.577659 0.151201 -0.671754 -0.534683 -0.387665 0.521516 1.022578 -0.912101 0.438144 -0.568648 0.610608 0.191951 0.791568 0.689165 -1.052647 -0.272354 1.474887 1.019345 -0.468752 -0.325760 -0.198003 -1.836631 -1.873438 -0.006473 1.601069 0.251588 0.080151 0.780071 1.776138 1.027675 0.274749 -0.464967 0.732386 0.370683 0.194020 0.442248 -0.122190 0.038943 -0.734666 0.312916 -0.586479 -0.767448 0.874205 -0.008891 -1.401567 -0.453023 0.443241 0.639919 -0.287986 -0.357211 -1.219840 0.222731 0.460388 0.342154 0.242768 1.032360 -0.131926 0.639335 1.161023 -0.293768 -1.023551 0.671292 -3.530954 -0.933304 -0.650015 2.882168 1.149003 -1.483104 -1.078078 0.862672 -0.148288 0.494276 1.058289 0.711115 0.840316 -0.370248 -0.429180 -0.301963 0.916218 -0.150201 -0.435690 0.260124 0.662984 -0.527073 0.570828 0.175763 -0.996546 -0.389626 1.143138 -0.257512 0.755403 -1.507239 1.026099 -1.274548 0.819374 1.597153 -0.643699 -0.141205 0.022864 0.223893 0.623461 -0.423398 1.528814 0.285158 -0.716830 -0.599376 1.499092 -2.262455 1.222370 -0.594738 -0.081491 0.264669 0.747714 0.300881 -1.001167 0.235218 -0.363113 -0.114573 0.786528 0.103964 -0.252902 -0.389708 -0.057576 0.742542 -0.066643 0.403535 -1.276186 -0.575753 -1.062581 -1.990370 -0.343050 0.303907 0.490985 -0.201600 0.549034 0.024002 0.069755 0.572031 0.583142 -0.147948 0.204701 0.872552 0.365335 1.331357 -0.111741 -0.086253 0.917781 0.380454 -0.233469 0.688151 0.262040 -0.215303 0.108872 0.935361 -0.105674 0.297463 -0.195004 -0.134688 -0.016848 0.412150 0.820427 -1.393090 -0.814294 0.671795 0.423811 0.602407 0.760956 1.095104 0.082957 0.210495 -0.201710 0.517885 0.654136 -2.535389 0.925911 0.469681 0.254069 0.031454 -0.262126 0.110560 -1.660989 -0.156697 0.242204 1.427762 0.544614 -0.537543 0.041747 -0.578918 -0.123807 0.202572 0.473919 -0.494708 0.550816 -0.243442 0.054108 -0.036564 -1.612225 -0.259911 1.031810 -0.869739 0.063273 0.625519 -1.922995 0.393954 -0.474321 -0.314276 -1.007120 0.132433 -0.215176 -0.644586 -0.544858 -0.592089 -0.451082 -2.529601 -0.919213 -0.760543 0.191516 -0.544042 -0.070059 0.181140 -0.464943 1.719270 -0.257628 0.711968 0.607581 -0.448741 1.489965 1.846950 -0.256073 0.440665 -0.541701 1.253893 -1.326754 0.454285 1.599944 -0.583559 -0.428287 0.868253 -0.129482 -0.108251 -0.321852 0.958849 0.407810 -0.881773 0.366751 -1.316489 0.989454 1.888519 0.654690 -0.963710 -0.135885 -1.440371 -0.102649 0.399060 0.158546 0.448546 -0.791427 -0.096439 0.432135 -0.089752 -1.060383 0.263190 -0.402661 -0.953707 -0.216192 1.187830 1.413542 -0.802678 1.737872 -0.480148 0.692035 -0.578925 0.036487 -1.020547 -0.268076 0.099249 0.166481 -0.655921 -0.166357 0.309613 -0.432292 -0.917034 1.192183 +PE-benchmarks/dfs.cpp__Graph::DFS(int) = -0.613680 -0.101901 0.317570 -1.168621 1.011491 1.257845 0.492984 -0.656125 -1.523686 -0.953184 0.312539 -2.122887 -1.498538 1.977014 -0.587707 1.001244 2.630885 0.321177 -0.618816 -0.680607 1.340488 -0.519814 2.718972 2.925176 -2.029457 0.217784 0.376639 1.003723 0.483305 0.830830 0.210113 -1.549201 0.590047 -1.181634 0.510060 -1.092777 -0.448425 0.307486 0.734487 -3.448499 -0.216666 1.017945 -0.087277 -0.028653 0.182169 0.876994 2.161812 1.545545 -0.357662 1.362976 1.155727 0.046586 0.848691 0.123834 0.509974 0.161128 0.537870 -0.168505 -0.533014 -0.023618 -0.462180 -1.165898 0.055869 2.005898 2.372073 -0.152331 -0.824216 0.363253 0.208642 0.416807 0.400609 1.484843 0.258427 0.709289 1.345750 -1.965521 0.170761 -3.187113 0.326447 -3.858879 -1.598707 -0.494940 1.578450 0.903518 0.916210 -0.403152 2.952100 -0.416052 -0.409748 1.787192 2.517833 -1.631462 -0.503326 -0.794821 -0.826670 0.372530 -0.958438 0.232031 0.419901 0.505151 -1.721741 -1.247130 0.666524 0.176883 -1.184741 -0.735748 -0.291727 1.621281 -2.089212 -1.123336 -1.509320 0.779947 -0.080433 -3.097649 -0.734832 -0.941226 0.711022 0.607614 -1.193527 -1.513670 0.799353 0.702007 -0.459752 -0.782697 -0.724620 1.671278 1.083960 0.214261 0.126866 0.936498 0.661819 2.490599 1.127888 -0.888724 -0.096840 0.666055 -0.589444 0.522034 -0.913703 -0.435467 0.684122 -1.697656 -0.096843 0.871189 -1.158359 -0.473798 0.449305 -0.428356 0.241594 5.998157 -0.490824 1.910600 1.419302 -1.868567 1.066808 -0.581508 -0.068126 0.726645 1.367941 1.221181 -2.655175 -1.417605 1.426048 2.804351 1.061938 -1.952446 -0.304649 0.352475 0.280213 -0.379311 1.041253 0.275543 0.240545 -1.127457 -0.271301 1.074583 3.613610 -1.105496 -0.935254 0.292467 0.788973 -0.241296 -1.972261 -0.180703 -1.316520 -0.114488 0.657511 0.232764 0.907458 2.244417 -3.383892 1.880368 -0.384360 -0.328052 1.610353 0.442192 -1.200537 -2.264272 -0.186581 1.178492 1.849250 -0.003611 0.040254 0.100533 -2.305338 -0.017029 0.463006 0.679383 -1.368884 1.959243 0.014131 -1.198840 -0.978826 -0.248080 -0.473169 -0.770554 -0.752788 1.311603 0.413370 -2.882576 1.858632 0.168285 -0.946286 0.214991 -0.329469 1.597651 -1.861298 -2.151216 1.102146 -0.739428 -1.465916 -0.704675 -0.691354 0.881952 0.673679 -0.034975 -1.552786 -2.054146 1.966347 -0.487165 2.102662 1.195692 -0.106289 1.915154 0.062480 -1.138414 -1.156306 -1.241359 0.514388 -0.295230 -1.032202 -1.077288 -0.742592 1.495862 2.166693 -0.037344 -0.829745 -0.371454 2.097963 -1.741956 -0.457666 0.882266 0.727623 -1.123146 0.876364 1.213846 -1.575879 0.002957 -1.589812 -0.225011 -0.893400 -1.162442 1.346722 -1.083036 0.453641 0.586577 -0.349791 -0.369485 0.889008 0.571164 -0.063854 0.230536 2.500516 2.040680 -0.958401 0.186360 -2.214198 1.320424 -2.355650 -1.740796 0.046191 0.505715 -0.891707 -0.413650 0.079780 1.389178 1.045668 -1.060661 -0.933730 0.452200 +PE-benchmarks/weighted-job-scheduling.cpp__main = 0.063619 0.369438 0.549029 -0.165351 0.411209 -0.082035 0.204243 0.425304 -0.419839 -0.790770 0.004005 -1.019276 -1.118690 0.642523 -0.074063 -0.314444 0.926005 0.097044 0.034593 -0.316299 -0.106015 -0.304128 0.852682 0.932248 -0.800423 0.288585 -0.062356 0.297145 -0.003118 0.548992 0.125771 -0.933337 0.154979 0.426061 0.523366 -0.088651 -0.245574 -0.362222 -0.622439 -1.336843 -0.149566 0.975833 0.073627 -0.002377 0.281429 0.928064 1.167175 0.440496 -0.208704 0.488180 0.272973 -0.167869 0.439460 0.026850 0.197044 -0.495782 0.371934 -0.305990 -0.647018 0.331241 -0.109984 -1.027753 -0.449072 0.583725 0.764744 -0.153799 -0.302875 -0.322547 -0.128221 0.240292 -0.000664 0.460755 0.746010 0.343313 0.613614 0.337515 -0.043403 -0.807538 0.088850 -2.246495 -0.848358 -0.492709 1.362553 0.703597 -0.288490 -0.609589 0.974571 0.055269 0.189248 0.504260 1.127250 -0.200666 -0.324985 -0.297829 -0.107820 0.411853 -0.365348 0.029823 0.293757 0.069011 -0.665516 -0.057711 0.361423 -0.369966 -0.393074 0.384361 -0.217952 0.553347 -1.012101 0.196335 -1.059535 -0.029090 0.643744 -1.036961 -0.052954 0.264741 0.092225 0.586328 -0.359420 0.183734 0.326945 -0.137656 -0.294595 0.236883 -1.138161 0.976397 0.020702 0.104275 0.354737 0.594621 0.534201 0.195406 0.489008 -0.158670 -0.118078 0.214824 -0.101550 0.102690 -0.101112 -0.143638 0.314634 -0.384783 0.164257 -0.247148 -0.468943 -0.390203 -0.968841 -0.293644 0.209435 0.987065 -0.236573 0.584734 0.143341 -0.534418 0.590628 -0.136375 -0.344688 0.016117 0.607047 0.620259 0.170573 -0.297878 0.465467 0.997264 0.333511 -0.596279 0.389647 0.226965 0.118996 -0.285384 0.662163 0.191771 0.380042 -0.358974 -0.084674 0.390335 0.972255 -0.148760 -1.008396 -0.075160 0.189327 0.485051 -0.243720 0.248511 0.295278 -0.057901 0.080473 -0.000484 0.258656 0.745764 -1.615190 0.760167 0.166449 -0.207626 0.615339 -0.111980 -0.286179 -1.007481 0.101215 0.588594 0.753427 0.448645 -0.265651 -0.254016 -0.699383 -0.080784 0.129399 0.320941 -0.405692 0.654987 -0.255131 -0.338054 -0.443136 -1.007571 -0.082032 0.182972 -0.600795 0.286836 0.617898 -1.515512 0.762228 -0.087928 -0.430707 -0.537278 -0.087947 0.163002 -0.675755 -0.805902 -0.096166 -0.766265 -1.494321 -0.476714 -0.464160 -0.039612 -0.007720 -0.186944 -0.164032 -0.554574 1.211891 -0.052459 0.690878 0.511355 0.074582 1.063058 1.117144 -0.590199 0.052521 -0.439778 0.711851 -0.794464 -0.130527 0.458289 -0.428434 0.185901 0.881462 -0.112220 -0.091178 -0.454418 0.567551 -0.307387 -0.570198 0.491100 -0.360750 0.088279 0.841330 0.588432 -0.474534 -0.102626 -0.952987 -0.239111 -0.215916 -0.402748 0.139492 -0.692891 -0.145498 0.533065 -0.323384 -0.592329 0.235674 -0.206702 -0.432698 -0.219099 0.893822 1.033303 -0.840520 0.819531 -0.730479 0.572385 -0.833233 -0.549936 -0.091064 0.062320 -0.120029 -0.215772 -0.039303 -0.029556 0.215079 -0.651555 -0.669646 0.488761 +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.117094 0.581231 0.485858 -0.192690 0.545529 0.038211 0.192401 0.520560 -0.382016 -0.842113 -0.194185 -0.604105 -1.072640 0.646571 -0.024285 -0.313701 1.145473 0.213408 0.184431 -0.476857 0.095682 -0.427543 0.990495 1.051554 -1.027746 0.370182 0.394275 0.295731 0.110837 0.599827 0.052567 -1.001885 0.290925 0.138648 0.536807 -0.453630 -0.231613 -0.436697 -0.592856 -1.652964 -0.160749 0.455216 -0.355878 0.051244 0.210084 0.997988 1.369510 0.479368 -0.452291 0.644623 0.422194 0.126662 0.229219 0.058299 0.050200 -0.159209 0.120656 -0.154393 -0.498477 0.385097 -0.040369 -1.168563 -0.329335 0.649147 0.824603 -0.243366 -0.262135 -0.069344 -0.181005 0.155110 -0.066705 0.482644 0.797688 0.292421 0.747868 -0.295669 -0.388281 -1.451335 -0.025294 -2.860323 -0.926229 -0.832897 1.201937 0.181325 -0.122234 -0.251245 1.101375 -0.004464 0.475681 0.764326 1.155339 -0.408708 -0.281551 -0.480020 -0.120555 0.501196 -0.380852 0.002548 0.246960 -0.142026 -0.659356 -0.520463 0.539187 -0.313379 -0.511819 -0.124488 -0.276952 0.678585 -1.256196 0.003065 -1.361153 -0.049049 0.373031 -1.100986 -0.091256 0.226764 0.831505 0.577677 -0.193455 -0.151426 0.228922 0.260190 -0.267373 -0.060292 -0.467699 0.890797 0.213166 -0.008606 0.436667 0.457928 0.513825 0.547193 1.010049 -0.123849 -0.277408 0.377129 -0.182060 -0.132209 -0.307195 -0.077989 0.421159 -0.518357 0.354121 0.034983 -0.526807 -0.574068 -0.165125 -0.584666 0.400468 1.515901 -0.173277 0.475423 0.115769 -0.718306 0.313305 -0.262914 -0.479980 0.241610 0.810004 0.704182 -0.197723 -0.311097 0.228931 1.026332 0.374095 -0.812409 0.005890 -0.033509 0.013748 -0.176502 0.535575 0.118882 0.333827 -0.357871 -0.090568 0.420953 1.211282 -0.270519 -0.915129 -0.120269 0.382195 0.188476 -0.504729 0.191056 0.073705 -0.077433 0.389993 -0.116585 0.306934 0.816556 -2.000871 0.725471 -0.163413 -0.269142 0.188183 0.186053 -0.136889 -1.009482 0.301553 0.696368 0.931664 0.378597 0.078420 -0.247048 -0.782270 -0.111947 0.212008 0.451444 -0.483185 0.709644 -0.064120 -0.566947 -0.493302 -0.607465 -0.031240 0.075528 -0.361504 0.249363 0.396106 -2.094346 0.850848 -0.302677 -0.462866 -0.194192 -0.122341 0.540500 -0.816293 -0.997145 0.182800 -0.428421 -1.227948 -0.332783 -0.489565 0.346045 0.031180 -0.085433 -0.188925 -0.888876 1.049895 0.093698 0.576261 0.622945 0.189431 1.501636 0.164284 -0.627303 -0.297666 -0.484350 0.777502 -0.722077 -0.093296 0.155407 -0.503205 0.291774 1.247690 -0.077879 -0.121278 -0.333363 0.753700 -0.849234 -0.442291 0.530902 0.487562 0.086267 0.920215 0.649151 -0.637182 -0.344528 -0.874824 -0.008179 0.051409 -0.469205 0.235181 -0.970657 -0.115973 0.737026 -0.219353 -0.569802 0.461509 -0.254608 -0.172373 -0.361657 0.795549 1.556206 -1.107856 0.614104 -0.638993 0.557411 -1.006683 -0.650658 -0.226627 0.105343 0.028182 -0.118442 -0.193479 0.088951 0.129313 -0.454459 -0.516294 0.200597 +PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -2.036592 -0.577116 0.531858 -4.083866 2.997670 4.808489 1.245912 -3.278253 -3.890786 -2.303750 1.872207 -6.015688 -4.345511 5.343237 -2.277249 2.807547 6.015737 -0.831225 -2.319892 -2.442742 3.977929 0.835457 7.929302 7.686025 -6.187125 0.204280 1.316222 2.825817 2.318217 0.807194 1.709887 -3.985528 1.414118 -2.951245 0.743467 -1.084578 -1.160889 0.020773 2.845324 -8.160922 -0.798009 2.240165 -1.589057 0.094430 0.455292 1.758137 5.544752 4.518446 -0.705275 3.434092 4.200403 0.771635 1.959433 -0.039084 1.235044 -1.012642 1.801775 -1.018229 -0.313970 -1.055817 -1.031024 -1.266465 -0.316477 6.181152 6.473468 -0.481709 -2.461041 1.460125 1.012606 1.595384 1.083162 4.590579 0.370348 3.042149 3.951231 -5.133367 0.363755 -8.367644 1.163384 -8.399864 -4.279917 -0.422536 3.637054 2.320021 2.577346 -0.577424 8.264261 -0.256570 -2.287468 5.050083 6.529376 -3.789395 -0.955443 -1.518932 -2.551571 0.725257 -2.723393 2.136990 -0.117450 2.276138 -4.811779 -2.520099 0.368260 0.399411 -3.540173 -2.392286 -0.810768 3.944738 -4.804758 -2.128532 -2.568987 3.385951 -0.051626 -9.235110 -4.065612 -3.194094 2.789972 0.588264 -2.931038 -3.647449 1.785070 1.705888 -1.155218 -2.199964 -1.069696 3.555648 4.711245 1.362738 -0.171747 3.069095 2.396665 7.543161 1.963701 -2.206538 -0.456261 0.940188 -0.589685 2.252228 -1.610133 0.029434 1.530797 -3.926260 0.915126 3.211960 -2.446894 -2.192298 1.050350 -1.343452 0.031043 18.039577 -1.363652 5.855641 4.605030 -4.844106 0.889641 -2.450723 -0.000419 2.185664 2.857973 3.123508 -7.110516 -3.873021 4.949483 7.753078 2.502928 -5.783896 0.803771 2.371533 0.281842 -2.432561 3.020340 0.645702 0.584205 -2.666087 -0.840920 4.140976 9.283753 -2.999110 -2.847385 1.043572 3.272234 0.086898 -3.416791 -0.475451 -2.540141 -0.086619 3.786257 1.554204 2.905750 5.980623 -8.491473 4.379345 0.486591 -0.388978 4.260629 1.715085 -4.092521 -4.125592 -0.188894 2.776337 3.778176 -0.469287 0.129536 0.312929 -6.445490 0.366195 1.787384 0.988492 -3.793571 5.355542 0.535553 -2.668352 -2.842526 -0.327013 -1.498221 -0.861173 -2.643014 3.826558 -0.404846 -8.413773 5.167815 0.642415 -2.853580 -0.314529 -2.477509 5.742874 -4.839431 -5.353752 3.223718 -2.640891 -3.974043 -1.688791 -1.788823 1.912569 2.601224 2.292358 -5.635059 -4.506300 5.197167 -1.505627 6.096118 3.216860 -0.160383 4.615523 -2.937031 -2.584907 -3.336052 -4.331473 3.073919 1.244368 -4.292968 -2.332714 -1.821193 3.922412 4.811021 -1.176997 -3.305535 -1.101231 4.833131 -5.455970 -0.969278 1.286122 3.449637 -4.258937 2.382789 2.467539 -3.242620 1.070153 -4.285415 -1.050590 -3.802805 -3.948464 4.119031 -1.449446 2.078924 1.166306 -0.422287 -0.657522 2.359142 1.434198 0.271739 1.340033 5.986543 5.984381 -2.437291 -0.619980 -7.043635 4.334978 -6.062641 -5.874052 1.491538 -0.499544 -1.837856 -1.752568 -1.331648 4.444994 3.550484 -3.161005 -2.765829 2.387821 +PE-benchmarks/finite-automata-algorithm.cpp__main = -0.006954 0.345113 0.317772 -0.046064 0.407896 0.039854 0.213690 0.239862 -0.297123 -0.492798 -0.153268 -0.460396 -0.720562 0.561536 0.010510 0.110614 0.938546 0.291992 0.090061 -0.287776 0.204949 -0.628225 0.831876 0.838157 -0.701468 0.246975 0.289532 0.257731 0.031297 0.568626 -0.227201 -0.552506 0.357712 -0.250381 0.379334 -0.487559 -0.116185 -0.167829 -0.225860 -1.281713 -0.095150 0.279691 0.019263 -0.008309 0.036784 0.661842 0.961079 0.434548 -0.217314 0.479543 0.216698 -0.177731 0.290581 0.149135 0.170075 0.154299 0.225841 -0.034120 -0.501510 0.229718 -0.090252 -1.062886 -0.120392 0.461316 0.719046 -0.168871 -0.140446 0.115682 -0.209179 0.083399 0.010423 0.331227 0.434081 0.110985 0.541579 -0.525582 -0.094207 -1.025683 -0.206802 -2.056177 -0.696738 -0.637487 0.684325 0.030022 0.239671 -0.096402 0.852140 -0.031492 0.316417 0.258662 0.935613 -0.657845 -0.280527 -0.365486 0.036286 0.296480 -0.380756 -0.093817 0.461328 -0.263050 -0.539460 -0.505678 0.684692 -0.019075 -0.367789 -0.163513 -0.205610 0.595501 -0.905056 -0.387531 -1.085758 -0.314866 -0.013288 -0.865046 0.341977 0.171095 0.463653 0.503587 -0.145917 -0.448101 0.232824 0.373300 -0.119768 -0.350098 -0.311157 0.782128 0.114741 -0.058465 0.384898 0.300447 0.264626 0.633834 0.917625 -0.111066 -0.206604 0.299853 -0.392166 -0.014923 -0.291954 -0.270575 0.307539 -0.596824 0.003713 0.130137 -0.446529 -0.093317 0.197947 -0.219220 0.344428 1.087410 -0.096718 0.350771 0.118300 -0.657055 0.527268 -0.230659 -0.292915 0.192291 0.652794 0.452520 -0.544085 -0.356407 0.158295 0.782244 0.352623 -0.703533 -0.297070 -0.242957 0.174533 -0.038864 0.282130 0.206465 0.270429 -0.382622 -0.032730 0.198001 1.128907 -0.495624 -0.572967 0.086011 -0.063478 -0.060247 -0.948762 -0.036750 -0.246912 -0.122456 -0.139018 -0.070224 0.106721 0.692051 -1.267422 0.652998 -0.396538 -0.359135 0.512409 0.020662 -0.138800 -0.971920 0.171352 0.552866 0.747965 0.250578 0.016964 -0.128841 -0.656760 -0.090874 0.023067 0.366183 -0.305673 0.549106 -0.119839 -0.511988 -0.416789 -0.372232 0.077770 -0.257552 -0.105736 0.251625 0.489986 -1.367816 0.654021 -0.190761 -0.404365 0.161354 0.097440 0.325881 -0.646193 -0.824378 0.229045 -0.264413 -0.669155 -0.349217 -0.248556 0.292494 -0.024702 -0.417698 -0.116320 -0.727445 0.684715 -0.030693 0.402316 0.443245 0.166401 1.024920 0.445154 -0.621918 -0.300263 -0.144573 0.046719 -0.671899 -0.084689 -0.221419 -0.341094 0.443992 1.044091 0.125986 0.089807 -0.211698 0.683957 -0.781960 -0.386180 0.587404 0.374133 -0.005387 0.503864 0.608483 -0.575173 -0.359424 -0.505169 -0.119772 0.074025 -0.406831 0.193320 -0.800508 -0.070472 0.496942 -0.191593 -0.309852 0.357575 -0.098609 -0.069871 -0.359971 0.763405 1.078453 -0.822812 0.294593 -0.455089 0.337684 -0.823841 -0.414393 -0.098744 0.434712 -0.169744 -0.011227 0.254909 0.135774 0.073077 -0.457687 -0.334653 -0.179301 +PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -1.448702 -0.996826 -0.080133 -1.916173 1.750250 2.107119 1.121914 -1.756916 -3.134572 -1.743977 1.426496 -4.891274 -3.098678 3.967070 -1.272390 2.277604 4.966756 0.272969 -1.437194 -1.762533 2.834767 -0.178149 5.807538 5.936115 -4.000385 0.174686 0.106457 1.622167 1.625038 -0.057654 1.371876 -2.638373 1.713428 -2.719761 0.388770 -1.357812 -0.699201 0.773263 2.264502 -6.214903 -0.498836 1.864876 0.185404 -0.028988 0.213042 2.348317 3.715768 3.283099 -0.481994 3.136681 2.611439 -0.357847 1.828620 0.289846 0.584685 -0.697000 0.603616 -0.637748 -1.139195 -0.391267 -0.848852 -1.965135 -0.278765 4.010020 4.973111 -0.176313 -1.776156 1.189112 0.792592 1.123146 1.270839 3.082227 1.040543 1.353039 3.102562 -3.580163 -0.276426 -6.728133 0.294593 -7.843258 -3.107729 -0.304698 3.728586 1.063742 1.746620 -0.418651 5.735116 -0.233643 -1.654028 4.088944 4.966373 -3.174787 -1.204829 -1.070246 -1.447774 0.800155 -2.276564 1.544192 1.077546 1.599968 -3.632233 -2.471345 0.940818 0.145516 -2.284352 -1.921697 -0.382836 2.834658 -3.694703 -1.953936 -2.476685 1.781244 0.246742 -6.043236 -1.763578 -1.905154 1.698134 1.393805 -2.451218 -2.327367 1.399760 0.471988 -0.870245 -1.616551 -1.054112 2.635841 2.437580 1.142070 0.138608 2.483159 1.486758 5.395871 1.496859 -1.919770 -0.027416 0.922794 -0.745201 2.018191 -1.769974 -1.032202 2.122171 -2.989795 0.419577 1.404672 -2.198096 -1.855089 1.150450 -0.474466 -0.005581 10.086191 -0.384334 4.017411 3.557287 -3.259704 1.337926 -2.034566 0.494854 1.631785 2.647377 1.977924 -4.227333 -3.092639 3.233273 5.564099 2.054998 -4.221730 -0.292352 1.560923 1.123182 -1.388293 2.098634 0.948518 0.829510 -2.210202 -0.280231 2.738062 6.719205 -2.451594 -0.897691 0.631405 1.946821 0.273643 -3.623726 -0.492449 -1.991529 -0.183216 1.789141 1.304482 1.620883 4.461499 -6.074862 3.450056 -0.264412 0.370574 2.724200 1.524930 -3.301098 -3.877410 -0.388589 1.862833 3.091615 0.394704 0.049601 0.598172 -4.681688 0.108375 0.969634 0.818287 -2.377076 3.881543 -0.280704 -1.568709 -1.951995 -0.076108 -0.908440 -1.125721 -1.167617 3.031388 1.235858 -5.209167 3.315845 0.141546 -2.297182 -0.282797 -1.112091 3.785507 -3.563519 -3.858316 2.174465 -2.439355 -3.469983 -1.911283 -1.066869 1.128445 1.503094 0.709768 -3.059542 -3.436358 4.671090 -1.092332 4.360762 2.292906 -0.645537 3.458235 -0.868130 -2.460182 -2.312784 -2.340395 1.001101 -0.294644 -2.578506 -1.655064 -1.118990 2.903871 3.820157 -0.373505 -2.296911 -0.669242 3.851662 -4.208715 -1.344195 1.732103 2.468775 -2.272354 2.553560 2.293339 -3.290084 0.831490 -3.042145 -0.714224 -2.126321 -2.432441 2.857771 -1.553861 1.199177 0.554399 -0.537318 -0.097078 1.793864 1.182911 -0.141715 0.500182 5.024737 4.605523 -1.914487 -0.114703 -4.932269 2.720039 -4.518882 -4.010411 0.839781 0.772782 -2.216733 -0.922308 -0.026913 2.944341 2.579305 -2.922772 -2.859693 1.725776 +PE-benchmarks/sudoku.cpp__main = -0.124599 -0.016523 0.407342 -0.405682 0.331465 -0.022898 0.186238 0.306685 -0.778935 -0.834295 0.022770 -1.231600 -0.952350 0.857014 -0.220280 -0.094096 1.191906 0.327662 -0.165642 -0.248285 0.105311 -0.278631 0.889081 1.160269 -0.734138 0.146447 -0.422188 0.399902 -0.122408 0.615096 0.487115 -1.109690 -0.096230 0.422578 0.672744 -0.294757 -0.252610 0.223349 -0.418889 -1.663727 -0.071809 1.435393 0.753182 -0.050458 0.387074 0.356356 0.963504 0.550046 -0.077453 0.459853 0.368963 0.137033 0.630180 -0.019181 0.151506 -0.247650 0.252237 -0.757890 -0.570198 0.363760 -0.247059 -0.623645 -0.166315 0.757628 0.965807 -0.040772 -0.400088 -0.515814 0.128750 0.449244 0.187645 0.551686 0.304513 0.192523 0.415074 0.181153 -0.025353 -1.126807 0.557738 -1.833629 -0.829417 -0.299485 1.424607 1.681891 -0.274249 -0.668420 1.224335 -0.287480 -0.016270 0.716353 1.101082 -0.037468 -0.306473 -0.490976 -0.436784 0.385642 -0.330711 -0.217147 0.012642 0.622345 -0.726311 -0.128153 0.122744 -0.312558 -0.409608 0.417529 -0.190030 0.782506 -0.955092 -0.007118 -0.836965 0.659770 0.640000 -1.164404 0.025698 -0.323404 -0.868777 0.553260 -0.651103 0.111360 0.483871 -0.264818 -0.477397 0.406422 -1.707190 1.043780 -0.115761 -0.104272 0.056667 0.590301 0.272512 0.141972 0.053651 -0.499706 0.031241 0.478552 -0.043325 0.049930 -0.444549 -0.257459 0.187659 -0.576083 -0.058700 -0.313885 -0.559508 -0.452326 -1.600315 -0.356029 0.175202 1.319781 -0.384095 0.766158 0.367873 -0.526438 1.139929 0.222565 -0.068286 0.010573 0.696491 0.577160 0.031956 -0.522642 0.561403 1.207897 0.454245 -0.101612 0.100910 0.288538 0.079904 -0.054355 0.825484 0.193235 0.067715 -0.465844 -0.149386 0.219289 1.167479 0.137216 -0.515966 -0.125590 0.592952 0.257657 -0.325858 0.220597 -0.409123 -0.098587 0.122597 0.040607 0.390388 0.934798 -1.560390 1.029033 0.267685 0.064604 0.711618 -0.325214 -0.289344 -1.390602 -0.167496 0.490338 1.058280 0.084027 -0.278241 -0.113030 -0.896128 -0.015045 0.100918 0.474653 -0.638847 0.799803 -0.425581 -0.319974 -0.322355 -0.759754 -0.448759 -0.168942 -0.736802 0.397345 1.020970 -0.686193 0.774841 -0.039590 -0.265424 -0.356034 0.027919 0.222995 -0.608421 -0.704495 0.009093 -0.565278 -1.302958 -0.481581 -0.506051 0.229612 -0.047177 -0.172915 -0.225144 -0.618863 1.143549 -0.144680 0.991905 0.508172 -0.197847 0.570049 1.743341 -0.441568 0.121829 -0.598920 0.311378 -0.601155 -0.073147 0.100179 -0.406595 0.319044 0.872584 -0.010469 -0.409421 -0.457232 0.946633 0.112948 -0.444405 0.414153 -1.489302 0.050637 0.660272 0.610292 -0.738702 -0.068627 -1.165848 0.350523 -0.284714 -0.280240 0.345408 -0.618660 -0.048589 0.243080 -0.361431 -0.545787 0.208244 0.288287 -0.599816 -0.031670 1.347342 -0.007827 -0.197612 0.966292 -0.891859 0.560154 -0.891895 -0.320382 -0.476111 0.193260 -0.443885 -0.117396 -0.144510 0.251342 0.285065 -0.215193 -0.732747 0.512637 +PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -1.054112 -0.856419 -0.133766 -1.756413 1.221724 1.509913 0.735883 -1.684944 -1.810895 -1.415397 1.214729 -3.260938 -1.794818 2.394642 -0.910733 1.515483 2.853464 -0.289874 -0.720902 -1.402501 1.486240 0.160489 3.650330 3.857958 -2.407051 0.153206 0.128764 0.753059 0.821321 -0.582642 1.256710 -2.222491 0.946506 -1.714246 0.007233 -0.526179 -0.812423 0.518993 2.159865 -3.601984 -0.343239 0.953573 -1.023112 0.270022 0.482629 1.282528 2.357638 1.696326 -0.430010 2.633776 1.601607 -0.165276 1.046949 -0.031292 0.659389 -0.725026 0.395639 -0.461949 -0.233888 -0.337675 -0.792398 -0.249268 -0.374524 2.135108 2.327765 -0.238522 -1.629885 0.684304 0.798957 0.501954 0.586392 2.401328 0.483423 1.174384 1.712417 -2.830189 -0.579460 -4.731614 0.515237 -4.596904 -2.186872 0.621597 2.312175 0.845730 0.950534 -0.400032 3.685045 -0.035534 -1.735998 2.384670 3.032919 -1.879541 -0.399974 0.105374 -0.757829 -0.228137 -0.721879 1.494534 0.104147 1.368653 -2.352396 -1.346481 0.561284 -0.326441 -1.392031 -1.514893 -0.526775 1.792371 -2.615392 -0.752272 -0.875942 1.767906 0.385947 -3.566754 -1.406312 -1.142203 1.618474 0.591296 -2.259121 -1.377901 1.191632 0.001598 -0.825957 -0.602087 -0.132957 1.585126 2.335325 0.893845 -0.200031 2.028732 0.895685 3.839948 0.469506 -1.240184 0.194005 0.396093 0.368687 1.320341 -0.512884 -0.198061 0.748138 -1.690213 0.879388 0.905237 -1.183232 -1.408407 0.984320 -0.312417 -0.773724 7.299964 -0.575205 3.163046 2.649751 -1.836419 0.101361 -1.704169 0.579658 0.840656 1.621764 1.466720 -2.716308 -1.764306 2.767872 3.541258 0.811114 -2.969491 -0.037738 1.652286 0.592571 -1.168992 1.670594 0.034601 0.672423 -1.200641 -0.165945 1.909647 4.522280 -1.440954 -0.644631 0.055815 1.437893 0.936235 -1.769591 -0.171517 -1.218822 -0.041176 2.186460 1.294098 1.141261 2.645894 -4.491821 1.836894 0.227553 0.553379 1.540299 1.936343 -2.300228 -2.783926 -0.870942 0.943185 1.654183 -0.006691 0.717265 0.341436 -2.864438 0.237299 0.825567 -0.006210 -1.953731 2.708595 0.125846 -1.251921 -0.597856 -0.100946 -0.965266 -0.428183 -0.919812 2.046129 0.468212 -4.172977 1.816603 0.337162 -1.400024 -0.371857 -1.053947 3.491820 -1.708869 -2.139240 1.629298 -1.889552 -2.576039 -0.659283 -1.033068 0.047349 0.902199 1.070698 -2.084298 -1.782957 3.093756 -0.900322 3.268266 1.461963 -0.609908 2.282595 -2.193876 -1.397738 -1.033913 -2.139555 1.614439 0.218216 -1.771723 -0.838565 -0.534959 1.383021 1.662887 -0.323091 -1.973835 -0.229157 1.969436 -2.844712 0.501866 0.627899 2.315518 -1.768598 1.580194 1.109252 -1.537000 1.323036 -1.992864 -0.705793 -2.263726 -1.173369 1.766742 -0.294849 0.631446 -0.080937 -0.243460 -0.005488 1.094239 0.817310 0.013913 0.912080 2.691276 3.163345 -1.007203 -0.370674 -3.263535 2.036206 -2.337275 -2.884391 0.608680 0.285124 -1.309737 -1.258740 -0.921424 2.165732 2.133050 -2.008819 -1.502480 1.817427 +PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -1.280754 -0.897955 0.208262 -2.256869 1.382737 2.028750 0.733495 -1.338000 -2.757950 -1.793308 0.779822 -3.430687 -2.114723 3.241570 -1.099887 2.014369 4.132748 0.457677 -1.099513 -1.032045 2.454141 -0.987131 4.287063 4.933662 -3.126772 0.087741 0.216166 1.796144 0.781384 0.872627 1.066418 -2.464012 0.743492 -2.268369 0.715415 -1.896096 -0.722592 1.342030 1.633245 -5.477276 -0.379269 1.719280 -0.376008 0.073520 0.328673 0.997794 2.936253 2.549086 -0.647715 2.556424 2.016125 0.131511 1.427581 0.087551 0.575667 0.196350 -0.101051 -0.647598 -0.416153 0.044283 -0.856233 -1.530734 0.577938 3.314025 3.847196 -0.388221 -1.496319 0.649009 0.535046 0.707563 0.913728 2.612181 0.018830 0.755249 2.135678 -3.888396 0.075081 -5.705568 0.985991 -5.632923 -2.469134 -0.219671 2.573367 2.357181 1.481918 -0.893486 4.902184 -0.885383 -1.265889 3.658544 3.700425 -2.466605 -0.662368 -1.305687 -1.532392 0.334038 -1.490244 0.276372 0.006608 1.525827 -2.710548 -1.865463 0.648269 0.254413 -1.908476 -1.834296 -0.466886 2.735346 -3.349810 -2.050917 -1.964387 2.157427 -0.103215 -4.991406 -0.960648 -2.117171 0.961964 0.743387 -2.250094 -2.253937 1.365596 0.856470 -0.683190 -1.094154 -1.498372 2.576041 1.795851 0.382004 -0.189683 1.684227 0.739449 4.106235 1.279347 -1.620081 -0.095348 1.291002 -0.742668 1.088457 -1.576990 -0.637993 1.337245 -2.826584 -0.707034 1.227730 -1.791744 -0.936167 0.910310 -0.665088 0.031498 10.478317 -0.761145 3.304331 2.815746 -2.786070 1.964465 -0.833201 0.466555 1.450918 2.141148 1.746920 -4.973327 -2.363325 2.497837 4.643600 1.676964 -2.900418 -0.843254 0.974971 0.579524 -0.523051 1.736605 0.324208 0.146171 -1.755951 -0.368320 1.671813 5.889097 -1.481068 -0.179294 0.346452 1.728595 -0.640686 -3.421876 -0.307777 -2.646751 -0.268878 1.444196 0.596151 1.467114 3.592408 -5.035599 2.885574 -0.664979 0.109891 2.021547 0.872604 -2.110236 -4.374368 -0.725005 1.457519 2.893316 -0.385377 0.678703 0.490970 -3.839035 0.166062 0.852530 0.987456 -2.396360 3.338285 -0.138139 -1.721474 -1.310067 0.275762 -1.446039 -1.296069 -1.118319 2.326324 0.795541 -3.662757 2.645885 0.303328 -1.461685 0.518567 -0.417334 3.286028 -2.915936 -3.277363 2.128652 -1.121741 -2.271538 -1.120398 -1.116995 1.459624 0.954307 -0.555381 -2.535790 -3.359751 3.065444 -0.943665 3.664410 1.836397 -0.657280 2.863554 -0.090014 -1.669259 -1.803843 -2.507740 0.758213 -0.156719 -1.657232 -2.139679 -0.945255 2.397743 3.133843 0.100091 -1.749992 0.114636 3.556524 -2.556013 -0.437464 1.097577 0.966049 -1.897853 1.361722 1.705266 -2.713599 0.473748 -2.748056 0.349815 -1.609336 -1.635202 2.552137 -1.316046 0.964068 0.418204 -0.234523 -0.299995 1.403838 1.529258 0.011447 0.648215 4.407323 2.849233 -0.739107 -0.164170 -3.784047 2.053699 -3.604902 -2.747706 -0.290857 1.304351 -1.397014 -0.668484 -0.027941 2.585864 2.171590 -1.528385 -1.460405 1.006129 +PE-benchmarks/euler-circuit-directed-graph.cpp__main = 0.061228 -0.269784 1.536180 -1.004575 1.786542 -0.946093 0.271163 0.675159 -1.034825 -0.880725 -0.367079 -1.020431 -1.591747 1.036179 -1.023909 -0.077460 1.218388 0.101610 0.632488 -1.002730 0.461258 -1.014195 1.438733 0.258436 -1.994220 0.063675 -0.530609 1.379551 0.309831 2.004964 0.999325 -1.391461 -0.642969 0.763517 1.821475 -1.178472 -0.333716 0.458098 -1.070956 -2.922364 -0.751540 2.735241 -0.846482 0.948879 2.140945 3.933245 0.961169 0.736158 -1.425491 2.569399 0.290316 0.011415 1.788943 -0.158705 -1.338988 -0.191124 1.444727 -0.728071 -1.397704 1.340698 -1.071751 -1.278957 1.070035 1.222342 1.947266 -1.403356 -0.906361 0.154911 0.600079 0.560416 0.459459 1.898667 0.259747 0.795389 1.613144 0.276187 -0.229283 -2.053334 0.897166 -3.917027 -1.345115 -1.133037 1.477291 1.625637 -1.254604 -0.981360 2.792111 0.395336 -0.107818 2.620753 0.861708 0.602004 0.120034 -1.688257 -0.829813 -0.479478 -0.319932 -1.884630 0.461558 1.855567 -0.873631 -0.470795 -0.786823 -1.202050 -0.626937 0.663695 -1.602889 1.485356 -2.507804 -0.926909 -2.081060 1.428385 0.095870 -1.899165 0.105312 0.242814 0.894083 0.654672 1.073843 1.152018 1.134205 0.454776 -0.775236 1.773333 -2.019162 2.538441 0.211182 -0.215735 -0.114616 1.618709 -0.645090 -1.089533 1.199295 -0.196674 -1.452480 1.710489 -0.059157 -0.126599 -0.734187 0.751803 1.260820 -0.779256 -0.407517 -0.753218 -0.385432 -0.907111 -2.344964 -1.712524 0.470959 1.578606 -1.175322 0.900098 -0.464955 -1.194045 0.990200 1.296791 0.508267 0.399948 1.094510 1.466153 -0.419326 -0.546297 0.956516 1.134839 0.185063 -1.123233 0.200048 0.358010 0.365307 0.812479 0.921231 1.370983 -0.989309 -0.631773 0.227944 -2.443419 2.711589 0.429220 -1.597049 -0.288880 1.499923 -0.980472 -0.678204 0.495694 0.328148 -1.564956 0.344283 -0.108668 -0.133580 1.056398 -3.687768 1.455529 0.497457 0.260094 0.190456 -1.398738 0.547467 -3.881304 -1.619191 0.399700 0.981813 0.039399 -0.500353 -0.169049 -0.902287 1.732527 -0.116383 1.431269 -0.351758 1.833424 -0.977397 -1.029229 -0.142518 -0.684540 -0.639408 0.913183 -0.889003 0.264193 1.022949 -2.561344 0.425642 -1.393225 -0.573489 0.438791 1.896475 1.123400 -0.544129 -1.149368 0.166907 -0.824177 -2.703754 -2.097402 -1.209152 -0.027644 0.167402 -0.735874 -0.793959 -2.027121 0.681453 -1.220527 0.292503 1.032058 -0.493599 2.730151 1.157628 -1.316689 -0.157147 -1.746507 0.786675 -0.392253 2.092366 1.024480 -0.431764 0.343200 1.017517 -0.255724 0.450063 -1.419097 1.912304 0.096940 -0.080894 0.563234 -2.382270 0.493738 1.619722 0.849502 -0.405871 -0.196817 -1.475154 1.355818 -1.213334 2.087599 0.724512 -1.827137 -1.697433 0.033044 -0.096086 -1.665409 -0.185494 0.311941 -1.163686 -1.025609 2.854004 2.811260 -1.050278 2.028047 0.080990 1.364621 -1.087175 0.430430 -2.210577 -0.479771 1.021501 0.850651 0.097018 0.357375 1.579635 -1.386288 -0.643818 0.040284 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -3.587273 -3.076922 0.340108 -6.508570 4.604466 5.471665 2.341659 -3.931651 -8.418921 -4.001041 2.279716 -10.555705 -5.935056 9.289168 -3.238586 5.709217 11.660858 1.209296 -3.459315 -3.131715 7.440834 -1.969284 12.097686 13.280539 -8.848387 0.278921 -0.715465 4.912740 1.973418 3.282615 3.203696 -7.056567 1.255213 -5.483843 2.997712 -4.704605 -2.260186 4.197281 5.063370 -15.379217 -1.006594 7.206865 2.341178 0.278866 1.480289 1.926622 7.806959 7.177608 -1.513224 6.721666 5.923331 0.351983 5.239765 0.313185 2.062498 0.909181 2.027637 -1.677180 -1.736583 -0.079911 -3.255144 -2.496199 1.922157 9.289059 11.419645 -0.645489 -4.541347 1.025666 2.261328 2.912785 3.158337 7.784382 -0.567968 1.879660 6.282864 -8.859531 0.718760 -16.086015 3.756666 -14.780326 -6.869620 -0.449736 7.235582 7.119520 4.357590 -2.524233 14.200243 -2.854960 -4.047491 9.124332 10.107954 -5.716837 -1.627612 -3.800340 -5.494362 0.601932 -3.799544 0.349201 1.367177 5.096738 -7.796436 -5.163914 1.392353 0.526207 -5.070318 -3.650913 -1.487148 7.696569 -7.924733 -5.582647 -4.919773 7.272658 -0.335742 -13.777258 -3.748336 -7.090552 -1.394842 2.004733 -6.313884 -5.693489 4.273486 1.633177 -3.136253 -2.487983 -4.761338 7.509883 5.112226 1.041422 -1.041536 4.644259 1.231206 10.435405 2.525461 -5.103478 0.037951 3.684911 -1.480275 3.413765 -4.997560 -1.842388 3.803973 -7.250440 -1.932213 2.601374 -4.681819 -2.395799 0.246475 -2.025877 0.008029 27.593164 -2.746188 9.521483 7.743372 -7.303957 6.964306 -0.493499 2.106886 3.869567 6.373343 4.495256 -12.202003 -7.345129 7.551061 12.750973 4.594959 -7.582587 -2.597992 3.177318 1.669317 -1.052293 5.015815 1.170671 0.120488 -5.171200 -0.944184 3.372225 16.333002 -3.957183 -2.580840 1.343690 6.196673 -2.075304 -8.759484 -1.144935 -8.990363 -1.026480 2.914263 1.743054 4.468086 10.269424 -14.921272 8.791259 -0.777729 0.407918 7.908679 1.340745 -5.567801 -12.404175 -2.709973 3.559306 8.362901 -1.167252 -0.130609 1.322655 -10.809354 1.279498 1.626878 2.947307 -6.957684 9.555640 -1.797469 -4.278766 -3.377783 -0.432407 -4.304385 -4.069816 -3.927710 6.377457 3.635416 -8.584019 7.030890 1.235812 -3.621227 1.314113 -0.687879 7.771694 -6.875162 -8.508467 5.231149 -3.459880 -6.149672 -3.964461 -2.925767 3.804359 3.057819 0.172415 -7.752844 -9.110052 9.151731 -3.474016 11.038336 5.275041 -2.211321 6.079258 2.660993 -4.922011 -5.040966 -6.212820 0.944308 0.474146 -4.570378 -6.691737 -2.897077 6.622254 8.227373 0.381193 -4.613641 -2.255640 10.796615 -6.222257 -1.283135 3.528229 -1.425317 -5.203190 3.658539 5.239392 -7.180058 1.117499 -7.871277 1.060592 -5.029004 -3.864798 7.374992 -3.482948 2.384826 0.204563 -1.552045 -0.903365 3.347154 4.822172 -1.069927 1.535711 13.173342 5.463927 -1.479022 0.536750 -10.378305 5.818035 -9.786642 -6.458450 -1.280763 1.961766 -5.466722 -1.448945 0.227322 7.673644 6.034261 -3.712688 -4.835867 2.791093 +PE-benchmarks/eulerian-path-and-circuit.cpp__main = -0.092514 -2.152347 5.574859 -3.421333 4.533473 -3.687828 0.445692 3.098010 -3.622962 -1.479343 -0.918144 -1.436666 -4.367292 3.048237 -2.820975 -0.721116 2.168773 0.270812 0.774625 -3.526643 1.635247 -2.966401 2.702611 -1.323734 -5.657284 -0.281674 -1.731648 5.387413 2.019098 5.771999 2.825690 -1.951422 -3.874190 3.596005 6.049087 -3.017422 0.161945 1.790780 -4.665055 -7.996190 -2.111821 9.034036 -2.045548 2.242344 6.403355 12.558339 0.252267 2.255349 -4.040429 6.662723 1.461161 -0.300480 4.586146 -1.209849 -4.495955 -0.250295 5.365275 -1.537487 -4.251715 3.908759 -1.802758 -3.489052 3.825796 3.139501 5.352496 -5.029141 -2.337173 0.629849 2.848519 1.992082 1.545073 4.460994 -0.608644 1.380295 4.783889 2.225718 -0.875440 -4.269304 4.090615 -10.098469 -3.643664 -3.177202 5.214369 4.350198 -5.299808 -3.155771 8.306917 0.823637 -1.154390 7.866758 0.877685 3.105777 0.314224 -6.246852 -2.596449 -0.778202 -1.448485 -7.183306 1.947606 6.491469 -1.917054 -0.008751 -3.261907 -3.464536 -1.908878 3.486089 -5.570414 4.686573 -6.564412 -2.367015 -5.568945 6.021402 1.188953 -4.427091 -0.122003 0.309961 2.413417 0.928839 4.685734 5.394752 2.789130 1.306748 -2.513032 6.493537 -6.861638 7.265020 0.184370 -1.977123 -0.233472 4.908702 -2.343490 -5.712596 3.038556 -1.068057 -5.615921 6.512417 -0.649164 -0.555987 -2.302260 2.717349 3.683494 -1.545490 -1.024219 -3.522164 -0.435197 -2.681630 -8.206399 -4.343535 1.568631 2.690244 -2.606707 1.523925 -2.814565 -1.901769 3.506812 4.919216 1.292997 1.406161 2.312162 2.574437 -0.071434 -1.334507 2.250758 2.667301 0.440244 -2.264597 1.109829 0.655258 0.452823 2.488920 2.904377 4.703186 -3.538693 -0.764107 0.035528 -8.778981 6.617345 2.070975 -5.615414 -0.762703 4.566399 -4.217831 -1.157750 1.896360 2.644313 -5.462293 0.478142 -0.479491 0.593301 2.731901 -10.196022 4.084906 2.476302 0.387897 0.422230 -6.033839 2.686710 -11.108840 -5.555959 0.132255 3.729304 -0.650405 -2.733649 -0.056465 -2.350952 5.627644 -0.599461 3.721806 -0.085242 4.860033 -3.265175 -1.624118 0.311063 -2.444435 -2.524408 4.057098 -2.452201 -0.179674 1.416427 -6.649709 0.888948 -5.288704 -0.692302 1.195941 6.555236 2.133279 -0.987628 -2.598120 0.259635 0.158806 -7.823935 -7.336426 -3.729781 0.830169 -0.124955 -1.815434 -1.875131 -5.864166 1.304752 -4.149332 0.241597 1.891521 -2.543871 7.074550 4.619820 -2.800520 0.336767 -4.764565 1.957714 -0.701824 7.118177 4.233540 -0.589206 0.587728 0.766317 -1.051884 2.068369 -4.687120 5.941036 1.849792 -1.078572 0.384598 -8.674147 2.300721 5.349715 2.110120 -1.402225 -0.694936 -5.090436 3.814247 -3.663476 7.161928 2.161680 -4.464915 -4.778431 -0.010913 0.379711 -4.765491 -0.962540 1.245569 -4.758731 -3.701783 9.324435 8.321083 -2.943779 6.682995 0.479579 4.421311 -1.399562 3.006932 -7.450407 -2.321395 3.554607 3.457686 0.347097 0.773836 4.532201 -4.067148 -1.798569 -0.470378 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -2.362473 -2.081557 0.373479 -4.350148 2.507094 3.341575 1.326716 -2.612904 -5.638389 -2.312783 1.497060 -6.912546 -3.299250 6.144329 -1.915828 3.698691 7.807806 1.128640 -2.545141 -1.927795 4.642817 -1.313510 7.468927 8.831544 -5.347518 0.186871 -0.079950 3.072900 1.430358 1.834837 1.636418 -4.378942 0.540962 -3.663781 1.699697 -3.261832 -1.515026 2.792594 3.716366 -10.136015 -0.373549 4.265711 1.836498 -0.235181 0.841309 0.982085 4.905974 4.573651 -0.818892 4.003961 3.841117 0.317233 3.037527 -0.003390 1.608865 0.936350 1.722397 -0.559679 -0.883761 -0.021389 -1.743851 -1.127915 1.249783 6.042762 7.189075 -0.201272 -3.006333 0.522462 1.994218 1.699656 1.881113 4.664315 -0.669725 1.364011 3.480999 -6.233238 0.757957 -10.835062 2.631659 -9.401335 -4.377234 0.194877 4.695569 4.092832 2.599710 -1.341945 8.908858 -2.134732 -2.603668 5.578409 6.619031 -3.710483 -1.213670 -2.226001 -3.721761 0.712135 -2.334641 0.270511 1.004377 3.114682 -5.008493 -3.523329 1.197179 0.615412 -3.382196 -1.942183 -0.459411 4.896444 -4.766212 -3.689679 -2.775110 4.656634 -0.093466 -8.740475 -2.279771 -4.832041 -0.915278 1.277657 -4.648827 -4.217295 2.640488 0.912475 -2.151127 -1.552258 -3.175339 4.665559 3.093142 0.625665 -0.810916 2.526563 1.169276 6.704334 1.235290 -3.824932 0.487867 2.384326 -1.286957 1.954422 -3.552339 -1.584344 2.276250 -4.598932 -1.101754 1.730891 -3.342450 -1.385654 0.872356 -0.973167 -0.232911 18.291087 -1.690738 6.197054 5.017127 -4.688935 4.583712 -0.350568 1.054455 2.213003 4.038900 3.035548 -8.190298 -4.686086 4.728828 8.481559 3.209811 -4.729504 -2.029054 1.918251 0.703166 -0.422341 3.493227 0.436820 -0.050254 -3.308798 -0.886306 2.513106 10.543599 -2.380086 -1.769763 0.504700 3.944916 -1.282348 -5.920090 -0.555863 -6.071979 -0.325673 1.606280 1.051292 3.324918 6.676316 -10.250764 5.788056 -0.582202 0.005799 5.250313 1.034286 -3.921625 -8.122426 -1.630565 2.389004 5.769799 -0.882886 -0.021377 1.042777 -6.988288 0.316282 1.034361 1.745882 -4.652705 6.094102 -0.807152 -2.812378 -1.916636 0.095226 -2.706073 -3.031847 -2.460582 4.262033 2.086107 -5.550691 4.759765 1.070719 -2.018362 0.799705 -0.825327 4.600480 -4.724034 -5.393816 3.274040 -1.685797 -3.229226 -2.202507 -2.058455 2.741760 1.784030 0.429065 -4.897340 -5.828336 5.552443 -2.255712 7.251432 3.320527 -1.718771 3.418102 1.659218 -2.582768 -3.164575 -3.519175 0.377462 0.441234 -3.030425 -4.508999 -1.964829 4.332302 5.173227 0.078174 -3.095948 -1.410095 6.722240 -3.845316 -0.654239 1.898727 -1.044891 -3.494853 1.968193 3.155572 -4.930604 0.982680 -5.084710 0.286805 -3.266548 -2.498035 4.756953 -1.913282 1.608268 0.137762 -1.255892 -0.334207 2.266251 3.182006 -0.727879 1.551903 8.115562 3.359158 -0.648515 0.338452 -6.905256 3.705010 -6.315441 -4.314930 -0.670094 1.301104 -4.088762 -1.238493 0.086332 4.903056 3.576660 -1.958132 -3.021398 2.071618 +PE-benchmarks/Iterative_QuickSort.cpp__main = 0.034670 0.206475 0.518851 -0.363329 0.565354 0.199425 0.281143 0.304251 -0.691274 -0.604702 0.028846 -1.037689 -0.924025 0.825579 -0.077846 -0.023450 1.195523 0.251080 -0.078095 -0.332699 -0.041474 -0.108239 1.035647 1.144904 -0.802000 0.365304 -0.206922 0.123791 -0.113950 0.723421 -0.082782 -1.123143 0.298212 0.263234 0.404274 -0.268703 -0.394466 -0.201955 -0.272122 -1.613377 -0.031275 0.974830 0.068406 -0.059830 0.350830 0.811773 1.203028 0.493842 -0.022619 0.693188 0.220880 -0.010349 0.448451 0.052493 0.431578 -0.075500 0.459530 -0.418947 -0.638488 0.303201 -0.201972 -0.729949 -0.438041 0.621776 0.791636 -0.166223 -0.437378 -0.361766 0.017207 0.202028 0.134030 0.496549 0.662086 0.247167 0.473448 0.105127 -0.062806 -0.816652 0.125277 -2.190524 -0.941463 -0.349920 1.406870 0.695461 -0.106241 -0.750154 1.114507 -0.191486 0.087630 0.343697 1.143294 -0.434764 -0.339335 -0.231065 -0.050254 0.260380 -0.278850 -0.068394 0.295473 -0.094833 -0.785061 -0.176253 0.509077 -0.286084 -0.447064 0.307502 -0.065613 0.732742 -1.039680 -0.032056 -0.960380 0.345659 0.454976 -1.075157 -0.040439 0.116379 0.003186 0.582522 -0.583092 -0.110345 0.458691 -0.035712 -0.469844 0.077334 -1.002215 1.065303 0.154354 0.103600 0.280413 0.561965 0.454671 0.566294 0.448964 -0.341528 0.049439 0.309513 0.020385 0.169181 -0.184673 -0.213841 0.053253 -0.517720 0.166945 -0.114299 -0.576370 -0.106942 -0.854050 -0.085334 0.099328 1.458253 -0.392795 0.787086 0.268262 -0.665907 0.611854 -0.164143 -0.239382 -0.003962 0.703998 0.581670 -0.233281 -0.409544 0.511022 1.151233 0.459903 -0.742669 0.360857 0.110810 0.035025 -0.207100 0.712403 0.097392 0.470132 -0.494005 -0.121444 0.255389 1.479282 -0.235120 -0.983289 -0.105213 0.219980 0.437418 -0.223900 0.136158 0.035739 -0.010957 0.201930 0.011976 0.388375 0.877052 -1.751057 0.918995 -0.114318 -0.397325 0.796969 0.083816 -0.336994 -0.839202 -0.176653 0.535462 1.080755 0.373601 -0.107356 -0.125981 -0.808759 -0.110978 0.074352 0.291863 -0.515934 0.679849 -0.032114 -0.530991 -0.209665 -0.867064 -0.064587 -0.016979 -0.631060 0.378440 0.726105 -1.749854 0.733239 0.129773 -0.395339 -0.263874 -0.026103 0.395602 -0.628607 -0.787077 0.051179 -0.567873 -1.275378 -0.298772 -0.501675 0.140271 -0.059295 0.150153 -0.338900 -0.731871 1.269073 0.019677 0.931876 0.597573 -0.113623 0.983873 0.825929 -0.604312 0.060940 -0.809636 0.729608 -0.648730 -0.114802 0.507336 -0.564572 0.356178 0.888507 0.047383 -0.273175 -0.609681 0.720232 -0.554287 -0.152883 0.583800 -0.201277 -0.017656 0.716524 0.736682 -0.589353 -0.054647 -0.823932 -0.233765 -0.320345 -0.288479 0.351971 -0.605495 -0.005785 0.323636 -0.261240 -0.570625 0.241422 -0.180822 -0.488995 -0.096560 1.021009 0.995485 -0.703714 0.789904 -0.724742 0.686255 -0.816380 -0.540872 -0.159044 -0.030830 -0.486736 -0.210916 -0.117469 0.200535 0.217024 -0.500692 -0.658905 0.462704 +PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/find-parity.cpp__main = -0.081946 0.195454 0.437273 -0.428249 0.386327 -0.209012 0.193607 0.085095 -0.605442 -0.976156 0.362748 -1.469202 -1.326672 0.840009 -0.357954 -0.361459 1.048570 -0.148539 -0.239567 -0.774930 0.148465 -0.012063 1.217866 1.307469 -1.250940 0.165226 -0.000387 0.566402 0.686915 -0.046535 0.892465 -0.819215 0.055736 0.367590 0.599978 0.193027 -0.147735 -0.413227 -0.390911 -1.528989 -0.220148 1.030970 0.409818 0.051970 0.323387 1.086925 1.241876 0.736623 -0.377810 0.505046 0.969911 -0.049410 0.530952 -0.070603 -0.094776 -1.170770 0.714865 -0.502008 -0.532178 0.176101 -0.000511 -0.830311 -0.447341 1.068516 1.095960 -0.092921 -0.350096 -0.142299 0.299003 0.692989 0.140604 0.722115 0.698422 0.652112 0.864811 0.139033 -0.036771 -1.852756 0.242402 -2.829112 -1.010670 -0.354672 1.716358 0.734376 -0.430884 0.019584 1.317569 0.416757 -0.100780 0.724705 1.313048 0.161915 -0.363604 -0.278737 -0.518317 0.776300 -0.612290 0.528978 0.214660 0.889281 -0.859365 0.109527 0.052588 -0.460957 -0.571416 0.438665 -0.254197 0.590358 -1.022233 0.487923 -0.836506 0.326124 0.968208 -1.654370 -0.191685 -0.211158 0.188718 0.500531 -0.391201 0.402276 0.157807 -0.416505 -0.371008 0.561903 -1.451768 0.927971 0.342432 0.421948 0.200345 0.839709 0.807345 0.204296 0.162593 -0.420971 -0.146044 0.091356 -0.067832 0.340044 -0.334960 -0.062673 0.892990 -0.383019 0.708698 -0.185294 -0.500359 -1.232461 -0.810234 -0.524610 0.159345 1.538747 -0.100409 1.008589 0.602536 -0.473218 0.284977 -0.324998 -0.233619 0.262855 0.654496 0.659928 0.456821 -0.563533 0.775327 1.316516 0.387926 -0.783148 0.442114 0.737298 -0.004421 -0.392339 0.811282 0.363128 0.194968 -0.358324 -0.146342 0.971914 0.880951 0.016904 -1.072313 -0.192468 0.909991 0.564447 -0.271000 0.303148 0.343046 0.090650 0.464244 0.452626 0.442358 1.024764 -1.986249 0.893675 0.779728 0.353840 0.676853 -0.143303 -0.774787 -1.493343 0.351907 0.624246 0.624550 0.263860 -0.582439 -0.047458 -1.023391 -0.013331 0.278082 0.221293 -0.603951 0.857683 -0.351098 -0.016827 -0.725301 -0.826677 -0.171398 0.527189 -0.683770 0.586144 0.504926 -1.820558 1.007428 -0.436944 -0.692471 -0.963110 -0.671523 0.406548 -0.926382 -0.783209 -0.143319 -1.089234 -1.809252 -0.930018 -0.472385 -0.026411 0.136473 0.257327 -0.476609 -0.175093 1.279389 -0.499954 0.905912 0.633770 0.032672 1.029106 0.769701 -0.463333 -0.267941 -0.090612 0.670873 -0.491138 -0.602994 0.425217 -0.343773 0.193477 0.989311 -0.537999 -0.429388 -0.371063 0.662447 -0.524624 -1.145256 0.300781 -0.588174 -0.200354 1.260730 0.466076 -0.697372 0.199100 -1.335204 -0.355936 -0.386298 -0.686580 0.439083 -0.445657 0.049844 0.453556 -0.283531 -0.509701 0.496615 -0.073965 -0.317007 -0.049613 1.012258 1.242059 -0.844740 0.646935 -1.357694 0.860093 -1.218317 -1.033659 0.197437 -0.181115 -0.108648 -0.306136 -0.447656 0.292273 0.523628 -0.886509 -1.044201 1.094478 +PE-benchmarks/count-ways-reach-nth-stair.cpp__main = -0.099123 -0.053125 0.265972 -0.191184 0.412303 -0.052216 0.274910 0.076106 -0.585375 -0.500191 0.202296 -0.812594 -0.679658 0.702939 -0.067015 0.268850 0.906083 0.182951 -0.073664 -0.320003 0.233972 -0.526894 0.914699 0.953990 -0.648876 0.200368 -0.030299 0.250725 0.083737 0.348042 -0.044960 -0.540174 0.364984 -0.315616 0.185260 -0.296642 -0.175367 0.006727 0.055159 -1.164359 -0.052600 0.463853 0.084332 -0.016957 0.056992 0.810253 0.757497 0.502981 -0.151464 0.733640 0.335903 -0.410697 0.352275 0.120473 0.260263 -0.116894 0.270645 0.009996 -0.535467 0.173594 -0.163203 -0.892932 -0.164980 0.493114 0.779605 -0.198945 -0.260938 0.056782 -0.079021 0.188306 0.247582 0.384895 0.389185 0.006185 0.593805 -0.405787 -0.070073 -1.139341 -0.150218 -2.073252 -0.722534 -0.175580 1.068874 0.119021 0.134674 -0.194300 0.873648 0.012059 -0.121912 0.393028 0.920378 -0.544038 -0.354697 -0.119407 -0.060244 0.221958 -0.397520 0.036835 0.538541 0.002014 -0.649048 -0.233581 0.569547 -0.082045 -0.333483 -0.105383 -0.110143 0.590629 -0.899821 -0.300814 -0.764666 0.021456 0.230490 -0.945459 0.215594 0.072631 0.405308 0.497562 -0.421669 -0.173133 0.323870 0.019240 -0.218830 -0.155114 -0.449532 0.753393 0.115304 0.275482 0.285566 0.424320 0.303585 0.649448 0.604323 -0.269654 -0.037117 0.173009 -0.199224 0.387368 -0.187500 -0.344862 0.332498 -0.558775 0.153089 -0.085335 -0.460661 -0.216076 0.083247 0.088620 0.043355 1.079633 -0.080121 0.694066 0.393198 -0.531714 0.484619 -0.306624 -0.018865 0.217178 0.602537 0.275333 -0.341063 -0.426292 0.450323 0.903114 0.398760 -0.910296 -0.168386 0.101407 0.276399 -0.077581 0.389381 0.220172 0.388188 -0.422626 -0.026060 0.285603 1.162921 -0.435406 -0.595946 0.083461 0.004310 0.124096 -0.857821 -0.024106 -0.139115 -0.020872 -0.041718 0.085080 0.156093 0.753641 -1.444651 0.679698 -0.242320 -0.149193 0.648265 0.180612 -0.472726 -1.160835 -0.113350 0.342384 0.732255 0.346700 -0.069980 0.090611 -0.703448 -0.050136 0.030520 0.133750 -0.313805 0.607980 -0.178881 -0.342300 -0.314509 -0.450597 -0.006775 -0.069108 -0.189566 0.434928 0.508922 -1.386959 0.513367 -0.057656 -0.498560 -0.107180 0.093304 0.449237 -0.568158 -0.744941 0.187010 -0.566966 -0.951776 -0.524593 -0.234516 0.036788 0.007193 -0.284268 -0.130249 -0.590320 0.927105 -0.219021 0.668792 0.427310 -0.118420 0.937658 0.512350 -0.604468 -0.214389 -0.172487 0.236302 -0.699539 -0.206965 -0.021615 -0.289304 0.416671 0.711594 0.158743 -0.083462 -0.220596 0.678121 -0.692031 -0.378589 0.577688 0.287931 -0.086159 0.718222 0.621454 -0.627099 0.039248 -0.587429 -0.300602 -0.217483 -0.314486 0.356282 -0.394023 0.067404 0.160860 -0.089589 -0.208691 0.275662 -0.036728 -0.139009 -0.214517 0.916628 1.220904 -0.716023 0.251604 -0.662234 0.433993 -0.740022 -0.591209 0.055363 0.426948 -0.409960 -0.099340 0.178407 0.264944 0.281203 -0.711535 -0.542678 0.282987 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = -0.224105 -0.215117 -0.100364 -0.076710 0.246306 0.162015 0.195712 -0.228472 -0.475576 -0.202543 0.210750 -0.703977 -0.475063 0.592936 -0.171779 0.370670 0.694048 0.130451 -0.141444 -0.282884 0.290861 -0.208238 0.841009 0.858591 -0.474849 0.041056 -0.010436 0.102799 0.123685 0.116119 0.019203 -0.408929 0.368657 -0.398419 0.036756 -0.270163 -0.136182 0.168497 0.314303 -0.857463 -0.068508 0.289243 0.215307 0.022661 0.026663 0.744361 0.465835 0.448682 -0.010340 0.653180 0.274129 -0.216993 0.335721 0.080702 0.176840 -0.081687 0.207049 0.051838 -0.296149 -0.002598 -0.192803 -0.453679 -0.135437 0.474070 0.725688 -0.095841 -0.245530 0.088214 -0.051186 0.194760 0.214499 0.411594 0.275075 0.085641 0.446334 -0.294374 -0.019682 -0.843618 -0.097021 -1.506389 -0.365778 -0.001676 0.613335 -0.015785 0.231515 -0.019835 0.815020 0.052651 -0.280318 0.417445 0.714100 -0.526972 -0.227782 0.055829 -0.114681 0.052628 -0.338086 0.195512 0.444225 0.149624 -0.529554 -0.361825 0.215091 -0.017866 -0.267187 -0.177292 -0.099118 0.330561 -0.717622 -0.248099 -0.485431 -0.013098 0.063968 -0.827456 -0.054177 -0.140385 0.249030 0.311040 -0.432630 -0.257365 0.310973 0.005563 -0.114095 -0.221702 -0.086816 0.412909 0.168956 0.197766 0.075440 0.296190 0.137978 0.733796 0.297405 -0.292526 0.000417 0.158755 -0.185877 0.355961 -0.222353 -0.251720 0.364015 -0.531034 0.290437 0.008076 -0.344416 -0.183718 0.228689 0.012988 -0.030340 0.922580 -0.110571 0.600537 0.449088 -0.479314 0.168539 -0.369889 0.150412 0.217629 0.470427 0.223115 -0.228235 -0.401845 0.478954 0.787341 0.312442 -0.689219 -0.049296 0.195593 0.313937 -0.124025 0.315379 0.185710 0.145348 -0.338691 -0.006276 0.186486 0.970657 -0.421237 -0.054522 0.069014 0.145875 0.078695 -0.533177 -0.041814 -0.264769 -0.013869 0.062404 0.158315 0.103735 0.603701 -0.984875 0.544183 -0.197474 0.010042 0.434875 0.228547 -0.460994 -0.640008 -0.117837 0.215353 0.489166 0.238169 -0.019730 0.134821 -0.643116 0.010431 0.036661 0.143780 -0.334486 0.562104 -0.004562 -0.299215 -0.247124 -0.105044 0.083056 -0.220864 -0.115658 0.426806 0.279428 -1.007625 0.380637 0.019496 -0.396907 -0.103647 0.130521 0.327029 -0.464913 -0.559237 0.211926 -0.483752 -0.555219 -0.360989 -0.159765 0.045767 0.120098 -0.007351 -0.278015 -0.504502 0.747053 -0.198887 0.606061 0.291753 -0.138084 0.576826 -0.049586 -0.459057 -0.283710 -0.096091 0.054262 -0.416088 -0.207389 0.092671 -0.123789 0.417252 0.535807 0.100320 -0.194338 -0.051531 0.590861 -0.430984 -0.165560 0.363564 0.432632 -0.161601 0.506773 0.402439 -0.503986 0.102835 -0.374486 -0.238059 -0.292581 -0.268807 0.391435 -0.312764 0.124499 0.012670 -0.043066 -0.075105 0.220388 0.106830 -0.094451 0.002061 0.767594 0.734706 -0.404535 0.144432 -0.622402 0.354895 -0.592605 -0.488401 0.075836 0.271069 -0.388289 -0.104291 0.055942 0.334823 0.322484 -0.574100 -0.464760 0.235001 +PE-benchmarks/min-cost-path.cpp__main = 0.100421 0.180700 0.385910 -0.151601 0.304186 -0.145650 0.152836 0.366310 -0.426264 -0.531737 0.050595 -0.761997 -0.683587 0.452292 -0.008353 -0.218606 0.619013 0.100756 0.000292 -0.187354 -0.179410 -0.191463 0.510825 0.604329 -0.452291 0.272195 -0.261444 0.136456 -0.118591 0.472542 0.077398 -0.698602 0.053979 0.391624 0.294559 -0.032694 -0.243115 -0.181575 -0.432357 -0.909281 -0.042567 0.838003 0.166562 -0.029805 0.243069 0.584934 0.744076 0.247106 -0.061333 0.420023 0.126976 -0.131133 0.334338 0.010930 0.236973 -0.295631 0.310303 -0.324491 -0.495679 0.271729 -0.091453 -0.637417 -0.344939 0.317052 0.422562 -0.117174 -0.267804 -0.348087 -0.075400 0.171278 0.086313 0.270140 0.458137 0.125686 0.329684 0.434201 0.005902 -0.354453 0.125621 -1.467260 -0.593725 -0.195440 1.138580 0.675826 -0.293646 -0.491567 0.606737 -0.074201 0.069800 0.286683 0.682617 -0.029695 -0.240909 -0.099418 -0.079716 0.257862 -0.156102 -0.086767 0.159508 0.098141 -0.447858 0.115212 0.280115 -0.298939 -0.241443 0.408870 -0.083795 0.357641 -0.733326 0.192745 -0.607914 0.154150 0.540268 -0.576403 -0.049121 0.213711 -0.114178 0.416713 -0.343863 0.252792 0.278434 -0.248781 -0.286291 0.316874 -0.959483 0.642853 -0.120603 0.128957 0.231517 0.396356 0.358745 0.031846 0.164034 -0.162950 0.026934 0.153537 0.100781 0.136923 0.021384 -0.154631 0.032670 -0.225944 0.151322 -0.330468 -0.331922 -0.225952 -0.962218 -0.063349 0.029511 0.424319 -0.190407 0.462262 0.095734 -0.279420 0.408115 -0.036659 -0.190840 -0.049047 0.395499 0.350404 0.371930 -0.174770 0.318743 0.654155 0.239659 -0.310702 0.345760 0.204542 0.059689 -0.066597 0.514554 0.064076 0.345315 -0.264924 -0.072710 0.151227 0.678836 0.048918 -0.679011 -0.083320 0.090327 0.374368 0.000202 0.207800 0.250972 0.001257 0.022185 -0.030090 0.184300 0.476879 -1.106810 0.552952 0.085325 -0.147015 0.422678 -0.075394 -0.187101 -0.684283 -0.117951 0.296935 0.617437 0.313661 -0.195481 -0.127075 -0.415467 -0.080170 0.055316 0.133520 -0.282259 0.419007 -0.170666 -0.216360 -0.156577 -0.765593 -0.064669 0.228284 -0.472092 0.186126 0.521280 -0.968599 0.409329 0.026067 -0.252490 -0.427636 0.041345 0.044347 -0.340345 -0.448384 -0.138969 -0.542480 -1.108960 -0.275074 -0.354200 -0.093578 -0.059386 -0.119564 -0.027533 -0.251116 0.886919 -0.024772 0.517688 0.359724 -0.091954 0.606716 0.942216 -0.360933 0.212748 -0.321663 0.517599 -0.656385 0.026702 0.535136 -0.355743 0.058665 0.464001 0.024996 -0.108340 -0.349463 0.384535 -0.001470 -0.318802 0.349033 -0.520052 0.120787 0.634341 0.435573 -0.308275 0.033506 -0.665749 -0.148544 -0.177325 -0.123730 0.126864 -0.341088 -0.098459 0.266877 -0.213999 -0.449577 0.104522 -0.185303 -0.405581 -0.131139 0.646163 0.528727 -0.464469 0.696164 -0.424759 0.371114 -0.440814 -0.273426 -0.143467 0.063693 -0.221683 -0.159223 -0.097514 -0.033981 0.147748 -0.403133 -0.479076 0.459905 +PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -1.147622 -1.384894 -0.478669 -1.275863 0.937407 0.582847 0.520989 -0.957526 -2.096745 -1.179035 0.713199 -1.999959 -0.915457 2.015657 -0.585481 1.831153 2.522418 0.494382 -0.462031 -0.887965 1.803941 -1.427617 2.361181 3.042068 -1.567861 -0.058525 0.193063 0.808387 0.147813 0.289489 0.830794 -1.853152 0.512252 -1.945253 0.599014 -1.369411 -0.666831 1.748616 1.969112 -3.300010 -0.260959 1.162056 0.232778 0.203096 0.166460 0.483365 0.993992 1.338910 -0.491792 2.477055 1.370444 -0.199385 1.016020 -0.032601 0.527833 0.622611 -0.328770 0.043542 -0.164025 0.278579 -1.002199 -0.353354 0.704687 1.659959 2.307048 -0.659305 -1.123092 0.466914 0.340097 0.629720 0.879612 1.736164 -0.263279 -0.358257 1.453449 -3.120409 -0.499604 -5.118147 0.760543 -4.326874 -1.515000 0.460703 1.554428 0.941294 1.027452 -0.190930 3.211799 -0.773012 -1.430877 2.030183 1.993082 -1.327010 -0.326250 -0.357774 -1.021352 -0.249851 -0.692070 -0.095952 0.747020 1.017611 -1.646058 -1.497726 0.734009 0.044681 -1.004589 -1.861715 -0.361559 1.842248 -1.886360 -1.739247 -1.245167 1.803997 -0.109936 -2.667235 -0.086390 -1.561384 -0.001048 0.721563 -1.996401 -1.373907 1.141718 0.167332 -0.633653 -0.762668 0.144774 1.499954 1.137503 0.418002 -0.241154 1.040333 -0.021531 2.743913 0.784753 -1.326900 0.053776 1.058489 -0.308653 1.097964 -1.236228 -0.617693 1.088182 -1.587102 -0.228818 0.182205 -1.135071 -0.673926 1.776293 -0.427200 -0.544641 5.977548 -0.605780 2.218227 1.990990 -1.355395 1.628607 -0.332023 0.983117 1.058522 1.786442 0.721288 -2.821539 -1.625132 1.813576 2.830834 1.000213 -2.089177 -1.889292 0.794797 0.893340 0.125658 1.076122 0.175013 0.220134 -0.977952 -0.032702 0.371659 3.715703 -1.179356 0.160220 0.069008 1.904443 -0.638832 -2.937271 -0.354041 -3.178077 -0.331385 0.656454 0.559932 0.702855 2.244067 -3.981845 1.681059 -0.808986 0.385953 1.244711 1.079029 -1.311651 -4.449554 -0.931651 0.308016 1.940225 -0.240186 1.133538 0.675985 -2.327647 0.335418 0.182227 0.602199 -1.781914 2.287796 -0.692470 -0.921311 -0.228328 0.743163 -1.250995 -1.451240 -0.287141 1.550278 1.564765 -2.262122 1.041625 0.363660 -0.799187 0.633394 0.489654 2.452627 -1.293223 -1.916869 1.524424 -0.797013 -0.935730 -0.694655 -0.668785 0.728553 0.200448 -0.553099 -1.114190 -1.996447 1.903608 -0.795042 2.587786 0.997133 -1.041362 1.621943 -0.492507 -1.285682 -1.044437 -1.032176 0.048979 -0.289552 -0.599906 -2.237852 -0.289656 1.405606 1.561702 0.777042 -1.090418 -0.116793 2.469243 -1.923236 0.476989 0.860385 0.659909 -0.830742 1.010239 1.158951 -1.775424 0.545303 -1.726564 0.622127 -1.257057 -0.338127 1.836341 -0.649213 0.455553 -0.473043 -0.240833 0.188250 0.848352 1.621647 0.059474 0.218759 2.731468 1.855842 -0.321920 -0.508432 -2.114863 0.893109 -1.762110 -1.373969 -0.609479 1.338708 -1.540725 -0.532602 0.060751 1.822610 1.447472 -0.737566 -1.089626 0.630083 +PE-benchmarks/box-stacking.cpp__main = 0.032929 0.162046 0.407824 -0.161036 0.423367 -0.031105 0.236142 0.319383 -0.528188 -0.597981 0.094811 -0.919693 -0.865750 0.641191 -0.030702 -0.052678 0.873055 0.149005 -0.021409 -0.254240 -0.032187 -0.319424 0.814654 0.886607 -0.656446 0.292167 -0.178204 0.215607 -0.069003 0.521356 0.018283 -0.795289 0.221981 0.159070 0.308012 -0.148586 -0.255811 -0.181272 -0.315197 -1.226728 -0.081426 0.849141 0.097869 -0.023271 0.218670 0.755394 0.942523 0.417554 -0.119163 0.614122 0.223402 -0.268393 0.417859 0.060577 0.267337 -0.271536 0.321643 -0.232247 -0.611519 0.267344 -0.133369 -0.888079 -0.361303 0.468117 0.683520 -0.168776 -0.316626 -0.231270 -0.109539 0.196842 0.129055 0.398355 0.557464 0.149415 0.536172 0.190841 -0.047087 -0.718249 0.023294 -1.934054 -0.783846 -0.288986 1.284398 0.581328 -0.124713 -0.506128 0.872975 -0.050288 0.036556 0.389231 0.955112 -0.309257 -0.329281 -0.172494 -0.062545 0.302359 -0.315914 -0.028319 0.336696 0.013925 -0.634427 -0.078886 0.444266 -0.254761 -0.348567 0.243663 -0.138061 0.543557 -0.919876 -0.009232 -0.855274 0.083300 0.473191 -0.888547 -0.008449 0.228836 0.065229 0.557864 -0.412239 0.069400 0.344401 -0.143558 -0.287549 0.107443 -0.856862 0.843766 0.008843 0.172973 0.325653 0.504643 0.422084 0.351089 0.427794 -0.205480 -0.024363 0.200030 -0.026135 0.253377 -0.078219 -0.229522 0.144988 -0.426898 0.158554 -0.219560 -0.454495 -0.233994 -0.723644 -0.044519 0.071731 0.884945 -0.177721 0.630591 0.234528 -0.482695 0.558594 -0.175610 -0.192262 0.062710 0.562170 0.434126 0.041981 -0.311229 0.429742 0.911536 0.349422 -0.647413 0.226037 0.182503 0.177758 -0.155677 0.576273 0.170221 0.448742 -0.383282 -0.054986 0.284460 1.041905 -0.213443 -0.850229 -0.010400 0.079325 0.353725 -0.376087 0.138343 0.121274 -0.046614 0.044382 0.018335 0.199806 0.698487 -1.403894 0.710252 -0.017511 -0.215677 0.633621 0.012660 -0.341307 -0.910694 -0.080566 0.415120 0.769713 0.407671 -0.193949 -0.103303 -0.645425 -0.080604 0.085666 0.182746 -0.349791 0.611591 -0.215955 -0.324663 -0.292775 -0.805839 -0.054779 0.090148 -0.469766 0.330671 0.606483 -1.343958 0.567252 0.000000 -0.432617 -0.346938 0.029068 0.245093 -0.537927 -0.712423 0.004888 -0.653859 -1.252124 -0.413835 -0.376865 -0.042035 0.025856 -0.197279 -0.120830 -0.500769 1.086438 -0.064180 0.679514 0.474013 -0.076295 0.887223 0.938707 -0.583959 0.045808 -0.388877 0.545909 -0.753233 -0.097111 0.316740 -0.409983 0.247342 0.722709 0.065303 -0.120916 -0.442686 0.588516 -0.353761 -0.405214 0.524753 -0.227418 0.047432 0.744128 0.605382 -0.487460 0.007848 -0.754862 -0.226547 -0.227502 -0.275548 0.233162 -0.501134 -0.055121 0.327216 -0.231306 -0.441160 0.203610 -0.159601 -0.362876 -0.209609 0.883063 0.913945 -0.704059 0.646497 -0.626401 0.499070 -0.694831 -0.478111 -0.065632 0.178639 -0.317473 -0.174229 0.034692 0.070659 0.226781 -0.630388 -0.603539 0.416334 +PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -7.268541 -2.672633 2.696883 -15.733053 11.022081 24.042026 4.060752 -15.702738 -15.721570 -3.858045 7.672227 -25.995346 -12.255441 19.335386 -9.119556 12.113247 22.004949 -3.368930 -11.627334 -4.825883 13.767693 9.679203 29.247692 29.191892 -19.902782 1.214803 1.313506 10.357280 6.471285 3.410052 3.415465 -13.751457 4.258419 -11.686242 -3.001931 -3.171446 -5.765181 0.401496 14.531141 -28.793461 -2.177234 8.168412 -7.522175 -0.332808 2.413467 0.002932 20.498627 15.696619 1.117133 11.405401 12.680434 3.729977 7.504287 -0.488627 6.011223 -2.504823 9.781937 -4.031391 -0.399142 -6.554246 -4.005672 0.579745 -1.899497 22.759239 22.234578 2.218861 -10.541739 3.552986 5.679990 3.523578 3.955567 17.255283 -2.994893 14.897354 10.439298 -16.037568 7.172885 -21.385565 5.687556 -14.310539 -14.347591 2.545633 11.402402 12.882415 10.971612 -2.938659 29.480943 -4.163668 -10.426489 18.669143 24.011511 -15.906894 -2.775864 -2.893860 -11.082539 0.565247 -7.798014 9.022137 -5.835757 9.775816 -17.415204 -9.059089 -0.179978 2.865959 -12.403063 -4.652637 -0.334552 13.055748 -15.753510 -8.739914 -3.281478 14.649006 -1.396042 -33.044467 -23.714353 -11.874261 7.787751 1.276345 -13.705427 -16.726198 7.453414 4.970974 -3.809770 -7.241070 -3.397491 10.134093 17.646946 5.369019 -2.823020 9.971404 9.836276 29.785245 1.811325 -8.793674 2.425132 1.451592 0.691822 9.387024 -3.836880 0.555856 -4.021393 -14.478574 2.664059 15.778418 -9.362711 -4.843214 -3.598909 -0.818178 -2.810199 71.499910 -5.531954 23.399136 18.772246 -18.804907 1.487047 -9.423576 0.351395 6.032607 6.132171 12.853347 -30.060616 -14.096914 19.883668 29.239043 9.313674 -19.782557 7.960974 10.330805 -0.223104 -8.605113 12.469068 1.222969 2.591291 -10.285739 -3.778212 16.945279 36.377228 -9.686041 -13.172468 5.099654 6.309100 2.180125 -8.549207 -2.167694 -7.196714 0.657562 16.414728 5.271483 10.918762 21.538892 -26.634326 16.304694 3.687038 -2.752965 19.253219 7.393611 -17.183877 -3.092025 -4.357356 10.528961 12.719781 -2.356277 -3.670471 1.058827 -23.050281 0.145425 8.822561 1.686498 -14.430956 20.073657 6.012079 -11.026969 -9.039200 -1.759062 -4.424329 -4.064702 -12.912430 15.585944 -7.854032 -25.890694 18.579096 8.123716 -9.197062 -1.038210 -11.847899 19.375766 -16.471427 -18.709438 12.276145 -9.518849 -12.694747 -2.436046 -6.437487 5.447402 15.342522 12.960927 -24.526393 -14.987435 18.091139 -3.980062 23.654822 11.699120 -1.588684 11.325795 -10.143626 -7.830062 -10.883056 -17.977028 13.827059 9.200850 -16.538667 -9.538416 -7.678953 14.871362 15.309288 -4.906731 -14.778114 -7.030811 16.427218 -15.969792 -1.123259 3.360683 9.135560 -19.822270 3.696418 7.825722 -9.642665 7.253826 -13.140096 -6.139439 -17.179051 -12.931141 15.669830 -1.621032 7.982952 3.314730 -3.246395 -1.842486 7.391804 5.176156 1.257816 9.771759 21.386554 14.853642 -3.087104 -0.606536 -26.078961 16.325257 -21.911008 -22.285843 8.002358 -4.541983 -9.790514 -8.676261 -5.105399 17.478645 13.843086 -11.731527 -8.242112 10.970459 +PE-benchmarks/box-stacking.cpp__min(int, int) = -0.444021 -0.475063 -0.154973 -0.409908 0.416443 0.173706 0.221706 -0.364058 -0.810828 -0.520716 0.245428 -0.825332 -0.422339 0.796596 -0.232319 0.710890 1.001177 0.221964 -0.130314 -0.377823 0.616259 -0.636158 0.960655 1.197293 -0.589644 0.017499 0.064593 0.265237 -0.037467 0.216664 0.236887 -0.814100 0.273647 -0.712711 0.232186 -0.522469 -0.298533 0.654921 0.708188 -1.308959 -0.109851 0.468470 0.121735 0.088541 0.067689 0.269312 0.458761 0.495058 -0.103197 1.046004 0.462211 -0.091999 0.438165 0.014614 0.283109 0.265638 -0.033724 -0.110837 -0.160635 0.139906 -0.441593 -0.251131 0.184635 0.614977 0.876181 -0.270718 -0.440832 0.146705 0.006496 0.250429 0.333354 0.675994 -0.045885 -0.120240 0.545742 -1.141874 -0.158885 -1.880101 0.206823 -1.826290 -0.620873 0.139613 0.629687 0.418478 0.400586 -0.026238 1.284259 -0.289169 -0.527458 0.672104 0.849720 -0.586988 -0.150350 -0.045941 -0.314566 -0.146666 -0.262188 -0.052188 0.283903 0.365651 -0.661683 -0.587765 0.402101 -0.017042 -0.374522 -0.668523 -0.163664 0.715096 -0.886234 -0.668636 -0.601809 0.575586 -0.023871 -1.015793 0.056192 -0.477430 0.039082 0.371887 -0.814628 -0.552231 0.518636 0.079957 -0.233291 -0.300810 0.017472 0.606571 0.378891 0.155060 -0.045485 0.431272 0.003041 1.111993 0.369873 -0.487082 0.019604 0.412133 -0.114463 0.431300 -0.397508 -0.273580 0.305535 -0.649933 -0.014442 0.043414 -0.469827 -0.246603 0.558160 -0.168697 -0.207404 2.063006 -0.290608 0.852617 0.722784 -0.574930 0.587916 -0.218823 0.358629 0.345206 0.729016 0.322802 -0.925559 -0.637422 0.743754 1.111866 0.396593 -0.810155 -0.696524 0.276635 0.416026 0.084423 0.450320 0.099404 0.143926 -0.410219 -0.007461 0.063089 1.532035 -0.493409 0.073686 0.054527 0.584000 -0.166782 -1.141087 -0.133330 -1.164199 -0.139469 0.200891 0.208184 0.184776 0.893401 -1.575240 0.698983 -0.403394 0.081795 0.519618 0.412328 -0.469770 -1.718893 -0.401149 0.165619 0.794213 -0.022075 0.469731 0.213278 -0.899795 0.113394 0.031249 0.281121 -0.710202 0.901342 -0.234655 -0.465200 -0.091046 0.211526 -0.385730 -0.565324 -0.125392 0.585409 0.720484 -1.041489 0.432646 0.173081 -0.320716 0.233241 0.299719 0.932985 -0.474506 -0.776922 0.564019 -0.425537 -0.444811 -0.247642 -0.280840 0.220668 0.023278 -0.279493 -0.372627 -0.706357 0.797329 -0.257545 0.996854 0.393511 -0.373624 0.690802 -0.143506 -0.576960 -0.313678 -0.338324 0.009708 -0.303060 -0.147084 -0.710156 -0.124709 0.553787 0.664384 0.373210 -0.392462 -0.043787 0.963976 -0.748563 0.195801 0.422031 0.288876 -0.280721 0.458426 0.516336 -0.663397 0.164350 -0.667344 0.205981 -0.518623 -0.120447 0.669842 -0.335729 0.119392 -0.140375 -0.120623 -0.012529 0.329783 0.578063 -0.007310 0.027671 1.081673 0.769657 -0.187962 -0.090971 -0.778773 0.326254 -0.678328 -0.517603 -0.245235 0.629438 -0.623577 -0.240845 0.008857 0.669957 0.536773 -0.340144 -0.441294 0.217681 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 0.308375 0.445060 1.462941 -0.792637 0.776460 -0.142462 0.340242 0.885967 -1.246305 -1.449934 0.501601 -2.784275 -2.208984 1.243533 -0.177147 -1.053061 1.509097 -0.252982 -0.315630 -0.549476 -0.581158 0.185982 1.441525 1.847622 -1.581441 0.726090 -0.936044 0.625201 0.131303 0.912092 0.540707 -1.852296 -0.288974 1.681035 0.927486 0.532124 -0.777422 -0.887204 -1.275995 -2.451023 -0.248943 2.862202 0.238487 -0.030417 0.974975 1.931556 2.230311 0.750647 -0.374602 0.923043 0.706864 -0.487540 1.068638 -0.253897 0.519752 -1.776469 1.369833 -0.516602 -1.165526 0.638878 -0.114583 -1.326695 -1.110055 1.205408 1.352127 -0.231061 -0.975601 -1.329998 0.384185 0.530287 0.167877 1.066427 1.479355 0.900079 1.123922 1.905282 0.385591 -1.020511 0.883242 -3.552521 -1.782202 -0.202093 3.647780 2.170458 -1.289508 -2.036845 1.867513 0.008170 -0.149901 1.120805 2.003771 0.430156 -0.554247 -0.220242 -0.680408 0.852285 -0.423517 0.235488 0.228818 0.674470 -1.352774 0.806388 0.208138 -1.128081 -0.831778 1.829030 -0.225580 0.834442 -1.581997 1.201988 -1.222712 0.861064 2.134907 -1.989538 -0.972198 0.308819 -0.601008 0.944098 -1.069681 1.328184 0.603859 -1.275329 -0.962366 1.471097 -3.446746 2.026165 0.089918 0.622056 0.449629 1.337582 1.436205 -0.441640 -0.214020 -0.561804 0.133600 0.186203 0.501540 0.624021 0.135411 -0.028278 0.418333 -0.177683 0.390020 -1.104909 -0.807919 -0.803270 -3.368995 -0.179142 -0.223843 2.140310 -0.530722 1.672245 0.476860 -0.568207 1.290054 0.147870 -0.567997 -0.067128 0.819563 1.175053 0.916289 -0.449761 1.301755 2.123453 0.540837 -1.087792 1.791812 1.368711 -0.126236 -0.767074 1.860788 0.063429 0.981995 -0.588221 -0.270955 1.006233 1.628853 0.419212 -2.821809 -0.431474 0.604834 1.534023 0.692190 0.860534 1.305117 0.086213 0.427633 0.167197 0.949165 1.346037 -3.549771 1.479055 1.208765 -0.268042 1.627998 -0.357025 -0.945693 -1.632057 -0.178697 0.770452 1.377291 1.006325 -1.229881 -0.389641 -1.283159 -0.135654 0.429154 0.082030 -0.973050 1.368749 -0.537138 -0.153219 -0.504272 -2.857358 -0.489313 1.150951 -2.004445 0.692024 0.833955 -2.694563 1.250660 0.276951 -0.788601 -2.009770 -0.675969 -0.091520 -1.053702 -1.137842 -0.699460 -1.894325 -3.704247 -1.112417 -1.174877 -0.667244 0.123814 0.328977 -0.711067 -0.749602 2.889365 -0.426567 1.792675 1.117130 -0.364689 1.493069 3.245251 -0.772333 0.582974 -1.221878 2.378545 -1.157912 -0.422825 1.709162 -1.077047 -0.162508 0.962214 -0.563797 -0.409124 -1.437455 0.787582 0.352275 -1.211444 0.517809 -2.071968 0.087807 1.869653 0.882671 -0.567045 0.644824 -2.334256 -0.951488 -0.954456 -0.446967 0.527720 -0.498525 -0.205900 0.714305 -0.774280 -1.304067 0.225545 -0.612594 -1.399160 0.042110 1.845865 1.666212 -1.213790 2.160422 -1.754834 1.525686 -1.282757 -1.099974 -0.063114 -0.729143 -0.526523 -0.803364 -0.490419 -0.082462 0.767109 -1.478933 -1.621692 2.222570 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -7.262595 -7.288007 -2.601743 -12.236179 6.428665 12.313761 4.072294 -11.697276 -15.130662 -3.753373 6.396410 -20.395265 -7.663197 16.718924 -5.833569 12.928970 19.828504 0.931040 -9.285821 -5.121170 12.963171 0.125246 22.306201 24.202405 -13.206317 0.064164 -1.088766 8.276781 4.457009 0.404808 5.924256 -8.365073 3.537535 -13.837121 0.220972 -5.925581 -4.620755 6.645985 13.197389 -24.878907 -1.133348 8.019844 2.682836 -0.497759 0.727782 2.067499 12.048942 12.822542 1.640377 11.424777 8.980257 -0.737850 8.341850 0.268155 5.952005 1.668366 4.005655 -2.679691 -1.587422 -3.299756 -4.758569 -0.826390 2.421017 16.822593 18.283763 0.669510 -9.048881 4.517175 5.649168 4.452758 5.652114 13.436490 -5.188966 5.498674 8.348075 -19.386805 4.486113 -22.559968 5.242762 -20.634184 -10.964230 3.679127 11.180019 8.397905 9.305213 -0.534832 24.060785 -4.715953 -10.122262 15.674755 17.668860 -11.974933 -3.244489 -2.867197 -7.642527 -0.027744 -5.771352 3.674866 3.963458 10.125393 -14.204091 -5.805109 1.878944 2.880970 -9.110101 -6.849808 0.278803 12.266789 -12.544353 -10.377180 -3.366596 13.082257 -1.830690 -24.927564 -10.429173 -11.749981 1.574451 1.996988 -13.380597 -13.158805 7.451423 2.706953 -3.468671 -5.216511 -3.561113 8.535970 10.247634 3.767476 -2.707387 10.281865 3.846781 23.842965 1.745000 -8.888070 2.850160 4.530487 -1.717508 8.219598 -5.104342 -4.455133 2.054394 -14.106234 -0.358300 7.777140 -8.432285 -3.782821 2.929487 1.214135 -2.856550 53.196549 -4.261880 19.113943 16.485307 -12.888851 5.235563 -5.821994 4.253462 5.553937 8.411249 7.011144 -23.444893 -12.954217 14.883053 23.714659 8.454945 -14.960512 -1.415052 6.506433 1.822229 -2.640977 8.508594 1.063161 1.420866 -7.963353 -2.115285 9.302534 29.318072 -8.547733 -2.084790 2.944605 7.094691 -1.706501 -14.653695 -2.613391 -13.460051 -0.169736 6.029045 4.900923 7.693758 17.627503 -20.505617 14.972019 -1.271693 1.234836 15.272654 6.072362 -13.013024 -17.601420 -7.385696 5.943752 13.235815 -4.627452 -2.141304 3.258133 -18.960411 0.748919 4.784031 2.412000 -11.497750 16.467094 -0.078031 -6.290596 -4.518523 3.724264 -5.071833 -5.465387 -5.353437 13.002377 0.532323 -14.477800 12.375934 4.951810 -7.047837 1.851085 -3.511507 14.631157 -12.290203 -13.942328 9.932423 -5.703906 -9.089074 -4.240960 -4.936689 6.030979 7.928307 3.530974 -15.676840 -11.138934 15.749196 -6.432435 20.539279 8.742453 -4.876345 9.155026 -5.779976 -8.120322 -7.812195 -11.868422 0.236417 3.608469 -10.447096 -10.267406 -4.422709 12.841956 11.653306 0.263648 -11.092690 -0.485472 16.557736 -12.482371 -1.250865 4.269465 2.980087 -13.150459 5.094199 7.697649 -12.175805 5.864753 -11.031065 -2.947211 -11.775566 -7.537127 13.856413 -2.092710 6.171569 -1.392205 -2.578007 1.993908 6.244794 7.956822 1.395607 7.170891 20.410520 9.544937 -0.750154 -3.496132 -19.998411 10.888632 -16.104984 -14.030526 2.137389 5.015166 -9.956321 -4.747346 -0.453282 14.558366 11.961080 -11.133394 -8.468400 7.265428 +PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 0.235941 0.265420 1.390512 -0.863622 0.306064 -1.484813 0.127426 2.221331 -1.440023 -2.689181 -0.209151 -1.980107 -2.473406 1.068618 -0.180750 -2.146141 1.996361 0.698428 0.249656 -0.999259 -0.606466 -1.056222 0.870347 2.059450 -1.721553 0.562548 -1.047793 1.031586 0.096797 1.103171 1.778577 -2.337059 -0.676329 2.543333 2.317201 -0.626131 -0.688569 0.061001 -2.988178 -3.429933 -0.328973 3.451258 0.562055 0.278960 1.387209 2.725417 2.017909 0.440539 -0.968309 1.133799 0.706406 0.452289 1.128084 -0.417575 -0.174989 -1.535874 -0.113229 -1.349346 -1.068078 1.519995 -0.314755 -2.150688 -0.493507 1.066867 1.285341 -0.586745 -0.822702 -1.968100 0.387934 0.815779 0.312230 0.983171 1.891191 -0.063505 1.245659 1.633198 -0.505664 -2.335233 1.692180 -6.038244 -1.678479 -1.096617 4.581977 3.298697 -2.492678 -2.552991 2.229132 -0.445295 0.570432 2.413573 1.635140 1.441252 -0.371901 -1.114465 -0.799011 1.189717 -0.217236 -0.778259 0.019418 1.529199 -1.045608 0.801024 -0.121215 -1.870247 -0.815001 1.506787 -0.727261 1.347504 -2.542240 1.717458 -2.366141 1.585725 2.905186 -1.527497 0.070040 -0.297911 -0.832039 1.109822 -1.046390 2.447853 0.626450 -1.363704 -0.961401 2.606305 -4.648517 2.567347 -0.777454 -0.375613 0.277409 1.695570 0.594909 -1.664927 0.021694 -0.659650 -0.355101 1.471567 0.205840 -0.455283 -0.722173 0.075035 1.794000 -0.162830 -0.211474 -2.258950 -0.964453 -1.739898 -3.769480 -1.327284 0.349264 1.835226 -0.641177 1.075247 0.174795 -0.045792 1.986700 1.175554 -0.248165 0.319633 1.633175 1.168292 1.517493 -0.464236 0.482443 2.022359 0.508347 0.011987 1.035110 0.967347 -0.143815 -0.087553 1.892102 -0.175757 0.361532 -0.309831 -0.212590 0.095797 1.153629 1.350936 -1.260812 -1.323485 1.752553 0.871819 0.591893 1.297731 0.839198 -0.223748 0.422193 -0.082728 0.920418 1.418342 -4.007837 1.665861 0.890243 0.666255 -0.053130 -0.749913 0.216273 -4.070409 -0.231887 0.632267 2.208272 0.584602 -0.490099 -0.318869 -1.302074 0.005213 0.453676 1.128844 -1.390369 1.437385 -0.991126 0.120303 -0.164210 -2.580978 -1.306664 1.326193 -1.750506 0.242077 1.790314 -2.223624 1.059591 -0.597910 -0.384567 -1.920103 0.274901 -0.107415 -1.194311 -1.183254 -0.777982 -1.157924 -4.472280 -1.464843 -1.508400 0.225301 -1.065270 -1.019167 -0.019364 -1.221654 3.261756 -0.479603 1.627728 1.096063 -0.670272 2.414371 3.991436 -0.608465 0.800734 -1.512135 1.939985 -1.982818 0.697645 2.032000 -0.818536 -0.726795 1.668511 -0.259244 -0.417778 -0.268113 1.698550 1.065472 -1.422258 0.452396 -3.183120 1.420379 2.893272 0.951643 -1.405000 -0.188067 -3.260499 0.571659 0.156296 0.168836 0.741650 -1.632484 -0.474513 0.912891 -0.562299 -1.789416 0.531483 0.046933 -1.736304 -0.263950 2.522593 1.539755 -0.910196 2.827865 -1.274574 1.260116 -1.174981 -0.010322 -2.013423 0.119293 0.341876 -0.225176 -0.966252 -0.148124 0.873675 -0.651658 -1.644188 2.098774 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -1.429705 -1.031183 0.032014 -2.495557 1.570732 2.105540 0.806216 -1.521433 -3.161656 -1.598473 0.744659 -3.809194 -2.027178 3.618876 -1.104903 2.359335 4.654086 0.665658 -1.243475 -1.060256 2.847250 -1.108898 4.546380 5.287277 -3.221414 0.095715 0.091634 1.721630 0.644398 1.146487 0.867092 -2.801736 0.681545 -2.557828 0.824456 -2.193828 -0.806234 1.715020 2.160604 -5.956702 -0.275813 2.080911 0.253043 -0.098702 0.284128 0.706655 3.126533 2.734871 -0.612321 2.544564 2.121584 0.249008 1.584794 0.139901 0.880651 0.709302 0.142084 -0.513782 -0.486605 0.007127 -1.053349 -1.139467 0.768951 3.548424 4.176937 -0.245558 -1.682089 0.705536 0.657548 0.729256 1.040730 2.742087 -0.014296 0.668427 2.199675 -4.131004 0.106187 -6.355015 1.177293 -5.927908 -2.522602 -0.132859 2.489800 2.291563 1.793614 -0.953761 5.296577 -1.245341 -1.376851 3.778766 4.017068 -2.713140 -0.734443 -1.517651 -1.934889 0.241869 -1.476951 0.126550 0.236598 1.507626 -2.966345 -2.420348 0.794672 0.455532 -2.012161 -1.972949 -0.327229 2.872794 -3.260201 -2.409103 -2.003855 2.418042 -0.328217 -5.121158 -1.067952 -2.591922 0.279321 0.729928 -2.612913 -2.811612 1.562256 0.946674 -1.038628 -1.334863 -1.533729 2.734596 1.844051 0.342346 -0.337113 1.492068 0.669499 4.476553 1.062921 -2.034575 0.096982 1.415320 -0.834184 1.080867 -1.988712 -0.923872 1.615650 -2.916520 -1.032532 1.224174 -1.995549 -0.712949 1.278841 -0.750734 0.025040 11.093903 -0.922835 3.441477 2.906161 -3.057618 2.467416 -0.627308 0.540119 1.386998 2.471038 1.863502 -5.379053 -2.772440 2.746170 4.939402 1.906491 -2.891064 -1.224542 0.919300 0.644049 -0.283123 1.791036 0.262824 -0.001275 -2.020672 -0.465489 1.496187 6.637982 -1.630709 -0.033797 0.475242 2.183325 -0.855335 -3.741754 -0.457709 -3.495023 -0.276583 1.118804 0.555343 1.815569 3.991225 -5.633358 3.264628 -0.991583 -0.035252 2.319210 0.821997 -2.215009 -4.787220 -0.909793 1.577478 3.366356 -0.411122 0.827003 0.515435 -4.132003 0.171375 0.651508 1.158301 -2.649134 3.580428 -0.317110 -2.037564 -1.280206 0.464566 -1.713194 -1.785549 -1.131506 2.487476 1.266421 -3.526206 2.917679 0.571998 -1.202979 0.720583 -0.248063 3.237571 -3.037043 -3.510242 2.305602 -1.018888 -1.857890 -0.995362 -1.137866 1.730210 0.909642 -0.471619 -2.801659 -3.791725 3.326769 -0.989914 4.127526 1.950888 -0.807582 2.536817 0.178201 -1.712314 -1.994874 -2.518479 0.285167 0.006602 -1.729952 -2.447256 -1.087123 2.730771 3.299635 0.228911 -1.885456 -0.150381 3.981611 -2.562296 -0.224072 1.283563 0.532544 -2.131305 1.130791 1.952146 -2.967787 0.379977 -2.911408 0.485297 -1.820258 -1.657267 2.704809 -1.404539 0.957125 0.344628 -0.464488 -0.218307 1.427464 1.852688 -0.182823 0.767705 4.863609 2.444141 -0.527270 -0.147130 -3.991481 2.062656 -3.839042 -2.777128 -0.417924 1.270173 -2.087193 -0.700622 0.149734 2.901426 2.170285 -1.112267 -1.548551 0.840398 +PE-benchmarks/birthday-paradox.cpp__main = -0.012313 -0.007058 0.188394 -0.170557 0.052237 -0.227867 0.018965 0.058573 -0.185004 -0.310855 0.076974 -0.335032 -0.239134 0.169821 -0.143800 -0.171524 0.190826 0.021802 -0.002095 -0.179366 -0.075606 -0.060136 0.197674 0.242517 -0.220929 0.014499 -0.084386 0.178422 0.111635 0.095492 0.215893 -0.247966 -0.041223 0.290609 0.169031 -0.007519 -0.001908 0.013504 -0.244999 -0.276101 -0.002939 0.260785 0.168624 0.024823 0.099802 0.317743 0.180379 0.122590 -0.056130 0.148702 0.205548 0.109321 0.080288 -0.006512 0.005836 -0.310861 0.176496 -0.297811 -0.126990 0.099625 -0.007078 -0.215177 -0.104914 0.203766 0.229485 -0.023753 -0.025035 -0.191359 0.003371 0.146613 0.107690 0.072259 0.089368 0.101479 0.079902 0.152582 0.069313 -0.315880 0.097098 -0.713909 -0.145902 -0.039404 0.474310 0.347465 -0.259556 -0.049284 0.206567 0.124858 -0.015568 0.209825 0.220414 0.152063 -0.091758 0.011549 -0.140395 0.165100 -0.098056 0.043793 -0.067980 0.343331 -0.120469 0.148460 -0.011864 -0.169784 -0.067404 0.222622 -0.043972 0.075602 -0.380084 0.220700 -0.122501 0.136113 0.335381 -0.247761 0.005571 -0.100141 0.095938 0.038091 -0.098597 0.279033 0.050131 -0.154997 -0.099801 0.328800 -0.654213 0.145845 -0.067747 0.078706 -0.015972 0.129298 0.100296 -0.097800 -0.123843 -0.137932 -0.031262 0.047280 0.018146 0.020797 -0.068646 -0.018039 0.176276 -0.052815 0.169915 -0.209500 -0.100168 -0.324471 -0.421040 -0.107048 0.056429 0.081585 -0.043404 0.184771 0.100217 -0.043586 -0.033519 0.007781 0.019886 0.023213 0.111009 0.054480 0.418314 -0.105255 0.126236 0.211733 0.085260 0.004434 0.142709 0.163930 -0.012596 0.001584 0.156589 0.021538 -0.091924 -0.063335 -0.055020 0.063428 0.062261 0.237848 -0.042909 -0.091601 0.172681 0.098904 0.169429 0.125908 0.212707 0.087835 0.032347 0.035669 0.099455 0.186628 -0.619771 0.192864 0.213901 0.166695 0.002854 -0.085012 -0.102297 -0.420140 0.001948 0.081666 0.169254 0.025383 0.017014 0.060687 -0.153126 -0.010151 0.007491 0.082324 -0.132988 0.085812 0.022363 -0.043600 -0.116140 -0.240788 -0.041630 0.224456 -0.190698 0.078490 0.179660 -0.423653 0.157271 -0.109772 -0.085385 -0.279686 -0.040719 0.021664 -0.199665 -0.079439 -0.131103 -0.256764 -0.471266 -0.200924 -0.091906 -0.033389 -0.190491 0.043195 0.005320 0.068877 0.276358 -0.124197 0.117516 0.082764 -0.042349 0.177665 0.226013 0.019012 0.075593 0.027987 0.201420 -0.283123 -0.001730 0.502373 -0.037662 -0.042253 0.151348 -0.067111 -0.100955 0.149352 0.145885 0.158464 -0.224764 0.039922 -0.264379 0.054896 0.371986 0.078028 -0.190200 0.029379 -0.324110 -0.044495 -0.021776 -0.070294 0.110235 -0.037935 0.028767 0.061423 0.011381 -0.225092 0.096255 -0.025403 -0.159564 0.041451 0.272975 0.232727 -0.042407 0.298166 -0.225079 0.066121 -0.190138 -0.142396 -0.080925 -0.029797 -0.003606 0.006337 -0.234199 0.059842 0.104000 -0.027267 -0.187023 0.322525 +PE-benchmarks/birthday-paradox.cpp__find(double) = -0.006249 0.342897 0.365313 0.302003 -0.290722 -0.153686 0.135432 0.148121 -0.350570 -0.455056 0.635022 -0.171046 -0.939827 0.806129 -0.727518 -0.559575 0.349486 0.815714 -0.424582 0.014875 0.389794 -0.258054 0.717388 0.451571 -0.511098 0.251717 0.457507 -0.156443 0.044243 0.736318 0.447548 -0.505443 0.758555 0.699285 0.824720 -0.718662 -0.011856 0.417902 -0.357011 -0.925401 -0.107211 0.328170 0.232080 -0.105438 -0.038050 1.016236 0.139569 0.612603 0.415211 0.017306 0.303198 0.174251 0.613912 0.003596 0.266512 -0.702583 0.668525 -0.198211 0.249574 0.182720 -0.329564 -0.309353 -0.323415 0.741002 0.840096 -0.327399 -0.190483 -0.726035 -0.554731 0.150247 -0.169121 -0.085003 0.602653 0.495867 -0.518064 0.078805 -0.406765 -0.961932 0.269288 -1.402490 -0.177867 -0.137043 0.468667 0.392929 -0.544554 -0.000470 0.796762 0.869777 0.038159 0.472888 1.073495 0.358311 -0.260391 0.388705 -0.001120 0.643368 -0.058020 0.684909 0.220922 -0.124089 -0.468167 -0.042986 -0.818552 -0.266241 0.182379 0.522662 -0.214864 0.652842 -0.387166 0.616374 -0.326846 0.151114 0.358607 -1.028807 0.200329 -0.255880 0.173841 0.400254 -0.416433 0.296942 0.476552 0.342973 0.119390 0.172483 -0.483909 0.425672 -0.842836 0.388466 -0.285560 -0.094053 0.391149 -0.564402 0.230265 -0.242701 0.161221 -0.399104 -0.387914 0.582029 -0.407642 0.265992 0.522879 -0.049954 0.061811 -0.335553 -0.318358 -0.714339 -0.485443 -0.178886 -0.055247 0.641920 -0.200841 0.653832 0.059206 -0.571211 0.221403 -0.077256 -0.354534 0.012364 0.429997 0.048716 0.173223 -0.603461 0.219291 1.070004 0.391427 -0.726801 0.383487 0.147500 -0.188939 -0.486702 0.947569 0.035702 -0.363160 -0.311080 -0.255812 0.391487 -0.117428 -0.387306 -0.510777 -0.787874 0.199281 0.711348 -0.278187 0.358536 0.169619 0.276264 0.250762 -0.062318 -0.005852 -0.238620 -1.325252 0.873239 0.057924 -0.140195 0.373917 -0.285950 -0.266270 -0.938300 0.453941 0.208551 0.251419 0.026543 -0.320299 0.558645 -0.779623 0.108840 -0.060120 -0.286473 0.106283 0.436793 0.130669 0.090557 -0.690684 -0.043890 0.431621 -0.429507 -0.335788 0.965338 0.740452 -0.993047 0.051883 -0.363126 -0.059997 -0.857143 0.107754 -0.093559 -0.731685 -0.959850 0.140660 -0.147353 -0.367328 -0.457685 -0.353425 0.691872 -0.403720 0.273209 0.200948 0.189643 0.444112 -0.389399 0.047797 0.240782 0.377933 0.522719 0.289386 -0.289508 -0.175597 0.145881 0.654733 -0.587465 -0.292216 0.378043 -0.108109 0.425056 -0.047270 0.244262 -0.439515 0.037468 0.809786 -0.085693 -0.288746 -0.281209 0.177487 0.755522 0.263849 0.341693 -0.193706 -0.232951 -0.906959 0.087711 -0.450006 -0.364020 0.475728 -0.179696 0.367418 -0.358286 0.107594 -0.530021 0.232440 0.297296 0.397708 0.612861 -0.292020 0.636940 -0.315891 0.573057 -0.107883 0.397324 -0.182191 -0.025629 -0.298630 -0.200014 0.307273 0.585066 -0.159072 0.428926 0.378448 -0.067078 0.027284 0.838261 +PE-benchmarks/union-find.cpp__main = -0.030912 3.106007 3.069178 -2.505173 3.076883 3.744169 0.495662 -0.480197 -1.514081 -1.369494 -0.795507 -3.931858 -3.542010 3.026812 -0.861651 -0.376521 4.427138 -0.384338 -0.717853 -0.493197 1.089590 0.655121 4.095010 4.201765 -4.060662 1.197398 1.775967 1.199264 -0.265236 3.868288 -2.123944 -4.558062 -0.200376 0.881654 1.673846 -0.745202 -1.344896 -2.384422 -0.193610 -5.940759 -0.412594 2.371446 -1.651269 -0.440136 0.910578 0.495652 6.486298 2.057216 -0.978342 -0.017852 1.707985 1.521012 0.800842 -0.122855 1.629255 0.152568 3.681068 0.505519 -0.953088 0.081555 -0.599094 -0.766660 -1.050385 3.744125 3.399240 0.407914 -1.451858 -0.739972 0.144419 -0.024367 -1.251111 2.457715 1.799374 3.624054 1.681356 -0.709448 1.166234 -4.037778 1.065759 -4.378161 -3.278193 -2.198108 1.371047 2.028145 0.956768 -2.275499 4.945019 -0.827217 1.187193 1.383064 5.508774 -2.436888 -0.443119 -2.082190 -2.407648 0.618343 -0.794721 0.467327 -0.919631 -1.110312 -2.921005 -2.660844 1.167343 -0.050398 -2.181881 1.144185 -0.382514 2.398723 -2.493242 -0.360954 -3.097332 0.477407 0.253693 -5.449131 -2.952967 -0.673655 0.276433 0.777121 -1.624620 -3.384344 1.248183 2.024436 -1.911568 -1.003311 -2.399790 4.035323 2.607669 -0.242521 0.527846 0.231448 2.762245 2.719759 2.028198 -1.170805 -0.174883 0.132087 -0.684952 -0.828554 -1.127820 0.607759 -0.468102 -1.567124 -0.189036 2.465451 -1.863615 0.456733 -1.817927 -2.272854 1.161851 11.590208 -2.196263 2.590351 0.118374 -4.245922 2.695662 0.022110 -2.739135 -0.332407 1.840932 4.085095 -4.762381 -1.824301 2.835211 4.684850 1.556574 -2.905925 1.542252 0.300918 -1.267288 -1.457236 2.525821 -0.082413 0.245841 -1.822481 -1.230994 2.352405 6.693699 -1.306975 -6.375102 0.674974 1.204862 1.134554 -0.750975 0.258044 -0.959807 -0.008480 1.651363 -0.724024 2.859977 3.810821 -8.091870 3.229121 0.339483 -3.298612 4.113711 -0.466997 -1.095991 -0.583188 1.122991 3.879859 3.085211 0.945045 -0.949809 -1.942698 -3.365051 -0.429706 0.849395 1.668567 -2.788492 3.018501 0.740707 -3.739011 -2.275449 -3.368893 -0.800492 -1.164706 -3.517322 1.259771 -0.503836 -7.145678 5.033500 1.477146 -0.339804 -0.539870 -2.259341 1.130282 -3.058043 -4.193393 0.958116 -1.255326 -1.966133 0.242950 -1.861089 1.322389 1.555709 2.129104 -3.821291 -4.561602 2.928418 0.402890 3.556381 2.372885 1.687738 2.910743 2.338363 -1.326167 -1.709070 -3.065630 4.013220 0.774917 -2.132228 -0.912948 -2.543003 2.032789 4.013489 -1.456535 -0.680580 -3.721968 2.258886 -2.022966 -0.144155 1.217561 -0.770214 -2.620481 -0.381195 1.987190 -0.612074 -1.218341 -3.222759 -1.045438 -2.365383 -2.715397 0.615135 -2.413188 -0.414691 3.013088 -1.957738 -2.370630 1.065093 -0.439507 -0.908572 0.536639 2.838723 2.913455 -2.480123 2.379293 -3.476583 2.998009 -4.459030 -3.429102 0.725959 -2.368763 -1.173435 -1.812998 -0.532665 1.253425 0.035354 0.062881 -0.585595 0.581716 +PE-benchmarks/union-find.cpp__find(int*, int) = -0.627404 -0.254483 0.188912 -1.023389 0.821762 1.123430 0.395675 -0.864245 -1.171205 -0.818222 0.429233 -1.659674 -1.125465 1.569199 -0.597928 1.050575 1.967423 0.086848 -0.493022 -0.630356 1.201867 -0.295116 2.314796 2.377089 -1.662141 0.061129 0.480821 0.954399 0.543180 0.337901 0.394075 -1.165980 0.574304 -1.224386 0.173216 -0.760289 -0.290660 0.338000 0.939082 -2.569065 -0.226359 0.437281 -0.439718 0.064016 0.059534 0.416425 1.530399 1.314923 -0.276333 1.305483 1.109820 0.066772 0.590746 0.109900 0.305419 -0.021542 0.255817 -0.315603 -0.238373 -0.126402 -0.354694 -0.817597 0.075611 1.676072 1.962517 -0.169395 -0.645371 0.515876 0.138779 0.364662 0.385798 1.279584 -0.054567 0.657093 1.126048 -2.052120 0.074597 -2.887447 0.162838 -2.791337 -1.311925 -0.217858 1.057736 0.647797 0.917574 0.055048 2.369147 -0.151308 -0.578470 1.527152 1.961635 -1.390411 -0.362448 -0.451541 -0.615373 0.243995 -0.864988 0.439511 0.058595 0.616174 -1.356988 -1.030534 0.517611 0.189376 -0.960489 -0.972413 -0.245126 1.316626 -1.668343 -1.075710 -1.021987 0.757545 -0.197745 -2.583050 -0.744813 -0.817057 1.079418 0.396725 -0.930447 -1.293982 0.592191 0.591746 -0.210337 -0.796513 -0.179158 1.041744 1.165480 0.319704 0.033678 0.840978 0.523859 2.392411 0.890384 -0.665069 -0.127620 0.424835 -0.388778 0.632192 -0.664240 -0.230777 0.393241 -1.371997 0.076165 0.961461 -0.862230 -0.643616 0.716816 -0.320994 0.078579 5.131396 -0.277318 1.614945 1.442943 -1.486667 0.449049 -0.755317 0.106578 0.729942 0.968525 0.889928 -2.321978 -1.163767 1.262212 2.256451 0.815207 -1.747237 -0.410975 0.436588 0.327402 -0.438527 0.774174 0.283323 0.164237 -0.851014 -0.159622 1.069916 2.796293 -0.972047 -0.626354 0.315922 0.700017 -0.226603 -1.709747 -0.240896 -1.067190 -0.089188 0.857010 0.355572 0.607883 1.780790 -2.679893 1.325484 -0.150632 -0.039971 1.177776 0.627909 -1.177134 -1.755605 -0.123625 0.844586 1.223752 -0.132373 0.338314 0.210976 -1.901805 0.047306 0.458714 0.412782 -1.085305 1.603342 0.093633 -0.918038 -0.844151 0.135188 -0.396754 -0.612531 -0.493442 1.186873 0.214879 -2.428411 1.403400 0.089542 -0.901316 0.297231 -0.474626 1.831815 -1.519592 -1.700796 1.094585 -0.720761 -1.062263 -0.524226 -0.442309 0.631800 0.659270 0.137886 -1.297314 -1.368144 1.377585 -0.394226 1.634422 0.913731 -0.099026 1.543924 -0.772284 -0.928365 -1.009148 -0.974128 0.570285 -0.016704 -1.009831 -1.154186 -0.454861 1.256675 1.671345 -0.048976 -0.848924 -0.104971 1.607249 -1.814177 -0.284117 0.619234 1.214020 -1.087677 0.712842 0.852436 -1.235517 0.195817 -1.142900 -0.138689 -0.832820 -1.026413 1.208853 -0.643182 0.509499 0.347711 -0.147966 -0.139562 0.795350 0.565565 0.228802 0.246987 1.865978 1.941436 -0.691908 -0.244820 -1.900852 0.967354 -1.901308 -1.638134 0.254226 0.406070 -0.636772 -0.372841 -0.100708 1.282183 1.006867 -0.905921 -0.731921 0.419287 +PE-benchmarks/union-find.cpp__Union(int*, int, int) = -0.602699 -0.209404 0.329825 -0.781132 0.887311 0.819534 0.500953 -0.605841 -1.160430 -0.967997 0.422040 -1.759667 -1.492904 1.677246 -0.488784 0.974508 2.163682 0.184929 -0.343863 -0.801122 1.153756 -0.693861 2.478492 2.552932 -1.827780 0.133370 0.612021 0.948900 0.598270 0.380878 0.244202 -1.222307 0.757798 -1.254762 0.397386 -0.827736 -0.315318 0.194935 0.785659 -2.841767 -0.312177 0.552203 -0.351203 0.100127 0.084804 1.127185 1.727224 1.404514 -0.453820 1.563500 1.141345 -0.370503 0.743063 0.157509 0.319414 -0.163231 0.381984 0.072270 -0.544236 0.068652 -0.389992 -1.377990 -0.047602 1.659996 2.195789 -0.332265 -0.669547 0.507852 0.058219 0.426633 0.367418 1.347780 0.400690 0.563793 1.477685 -2.008141 -0.099896 -3.403243 -0.037656 -3.893324 -1.555122 -0.435489 1.452602 0.192859 0.867689 -0.050411 2.526425 0.046126 -0.493651 1.432336 2.235637 -1.532538 -0.512726 -0.470921 -0.472508 0.382990 -1.047504 0.487652 0.681797 0.341723 -1.519192 -1.169855 0.841830 0.064060 -1.008076 -0.942485 -0.377486 1.462311 -1.820827 -1.100516 -1.574642 0.347511 -0.052582 -2.759442 -0.348192 -0.554367 1.262725 0.741413 -0.949999 -1.159987 0.654023 0.530662 -0.259344 -0.887919 -0.151669 1.430471 1.124610 0.381009 0.283379 0.987791 0.604614 2.335657 1.371198 -0.650181 -0.256552 0.502721 -0.657302 0.734974 -0.784540 -0.371055 0.847424 -1.437415 0.188305 0.709202 -0.985012 -0.684299 1.053696 -0.329805 0.160561 4.814735 -0.239694 1.660130 1.381444 -1.543834 0.791104 -0.824955 0.058268 0.821316 1.284533 0.956371 -2.221480 -1.186368 1.276222 2.426951 0.880544 -2.219380 -0.619695 0.391080 0.544048 -0.560649 0.879806 0.463359 0.386945 -0.899252 -0.074170 1.082090 2.907069 -1.297300 -1.125323 0.256651 0.656949 -0.091404 -2.185330 -0.202778 -1.026039 -0.177870 0.587571 0.385750 0.541554 1.900350 -3.275149 1.457454 -0.253627 -0.148738 1.454133 0.649498 -1.254367 -2.313738 0.047525 0.934687 1.369002 0.266938 0.178031 0.184688 -2.037506 0.053032 0.370108 0.498832 -1.071844 1.761645 -0.170969 -0.906365 -0.972961 -0.234364 -0.273951 -0.691918 -0.446880 1.235336 0.526076 -3.050865 1.470755 -0.077214 -1.140331 0.193708 -0.354304 1.743224 -1.664255 -1.944352 1.002174 -0.991262 -1.450338 -0.921162 -0.511440 0.509541 0.552901 -0.093729 -1.123354 -1.648925 1.740541 -0.508691 1.719633 1.011387 -0.080553 2.042845 -0.324741 -1.291006 -1.101249 -0.757412 0.615390 -0.457007 -0.987443 -1.210351 -0.496441 1.283993 1.939709 0.000804 -0.561408 -0.362425 1.737964 -2.179384 -0.552142 0.900584 1.457682 -0.817201 1.090133 1.077515 -1.418457 0.098290 -1.293620 -0.408189 -0.746658 -1.101311 1.162776 -0.988218 0.380881 0.441697 -0.242312 -0.195973 0.853920 0.440926 0.138464 -0.056067 2.036608 2.708917 -1.289317 -0.100628 -1.991471 1.092030 -2.078516 -1.715847 0.269564 0.558450 -0.685226 -0.357394 0.191207 1.108999 0.979506 -1.354491 -1.027572 0.413403 +PE-benchmarks/naive-algorithm.cpp__main = 0.173122 0.437486 0.526550 -0.069031 0.440129 0.045907 0.184808 0.612930 -0.404775 -0.593301 -0.180539 -0.752975 -0.921753 0.536001 0.049345 -0.338065 0.870407 0.259158 0.093275 -0.135482 -0.280910 -0.197252 0.631945 0.723923 -0.559464 0.378438 -0.229680 0.128182 -0.351116 0.861969 -0.103774 -1.037642 0.103733 0.550553 0.433546 -0.178804 -0.318359 -0.319086 -0.707084 -1.284471 -0.071421 1.078787 0.086560 -0.051476 0.342908 0.530302 1.088041 0.269603 -0.032506 0.417723 -0.025495 -0.020090 0.413387 0.040772 0.319336 -0.094552 0.318518 -0.456816 -0.674305 0.379989 -0.136431 -0.865756 -0.482974 0.346269 0.484930 -0.114927 -0.307967 -0.498078 -0.231314 0.144682 -0.035471 0.312752 0.660949 0.208411 0.375963 0.661637 -0.067430 -0.179750 0.135040 -1.628589 -0.759410 -0.526560 1.237007 0.924899 -0.270266 -0.727170 0.789156 -0.230871 0.347003 0.242958 0.906838 -0.177081 -0.278873 -0.296487 0.005717 0.318771 -0.175888 -0.247933 0.126266 -0.148855 -0.545037 -0.085363 0.405541 -0.331180 -0.313390 0.503346 -0.161507 0.535604 -0.914667 0.134825 -1.035235 0.057075 0.504381 -0.678180 -0.134083 0.404206 -0.269577 0.615187 -0.351585 0.102217 0.392399 -0.087055 -0.330448 0.219842 -0.993612 0.899463 -0.166458 -0.093309 0.368428 0.444730 0.396425 0.093981 0.416759 -0.097765 -0.020780 0.310746 0.051150 -0.056808 -0.025282 -0.136796 -0.172825 -0.338871 0.085450 -0.241441 -0.450925 -0.095986 -1.357063 -0.204657 0.209373 0.627294 -0.322292 0.396021 -0.064178 -0.479388 0.650765 0.014080 -0.394190 -0.138528 0.548973 0.579655 0.266237 -0.167031 0.253745 0.795488 0.307508 -0.285389 0.463437 0.000172 0.063951 -0.099615 0.649190 0.103817 0.445886 -0.346861 -0.085855 0.101739 0.965181 -0.056997 -1.047418 -0.082082 0.053122 0.432771 0.017029 0.243088 0.236203 -0.103875 0.056396 -0.161525 0.191356 0.593320 -1.194766 0.727614 -0.021095 -0.414181 0.562644 -0.175884 -0.014925 -0.517065 -0.058320 0.517361 0.886291 0.435223 -0.238361 -0.333693 -0.515483 -0.129158 0.084612 0.345220 -0.344793 0.538482 -0.188043 -0.443838 -0.223652 -1.028689 -0.039387 0.074774 -0.633312 0.124511 0.689780 -1.237813 0.599274 0.068832 -0.251400 -0.326046 0.116411 -0.003056 -0.448099 -0.691383 -0.107316 -0.497757 -1.257699 -0.158041 -0.483163 0.040544 0.025210 -0.173321 -0.051572 -0.487311 1.053929 0.205859 0.594770 0.471686 0.026167 0.818995 1.264112 -0.553211 0.280625 -0.581985 0.674526 -0.803449 0.135136 0.503824 -0.526252 0.139981 0.791758 0.071406 -0.079082 -0.672941 0.550969 -0.057539 -0.277019 0.519327 -0.659767 0.235096 0.592995 0.626045 -0.353594 -0.224066 -0.747431 -0.034432 -0.112188 -0.189638 0.037868 -0.742938 -0.206708 0.519430 -0.348213 -0.673727 0.102940 -0.259510 -0.527966 -0.254732 0.764143 0.467603 -0.663433 1.013583 -0.389937 0.475025 -0.598074 -0.204814 -0.302001 -0.004148 -0.212042 -0.152700 -0.041765 -0.143542 0.035187 -0.355306 -0.498056 0.247066 +PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -1.846528 -1.781678 -0.728485 -2.676665 1.406555 1.959053 0.982327 -2.271056 -3.520578 -1.962799 1.633524 -5.010703 -2.542052 4.107357 -1.552513 2.788339 4.997468 0.279970 -1.607100 -1.751531 3.360796 -0.418598 5.640632 6.094878 -3.873261 -0.215796 0.031647 2.036231 1.723234 -0.349548 2.359661 -2.827819 1.244392 -3.095357 0.613991 -1.676208 -0.629521 1.874150 2.872642 -6.230833 -0.462099 2.223302 0.681390 0.006172 0.167081 1.286588 2.998416 3.385877 -0.549134 3.249581 2.949883 0.124380 1.860947 0.143805 0.589181 -0.479828 -0.105730 -1.129043 -0.555241 -0.414441 -1.005532 -1.108054 0.429701 4.284463 5.117842 -0.250969 -1.880851 1.301576 1.047174 1.288750 1.580888 3.286656 0.000735 1.045787 2.911984 -4.615359 -0.162147 -7.606348 1.057847 -7.597307 -2.795632 0.285075 3.386444 1.874687 1.855040 -0.321566 5.981978 -0.578962 -2.246269 4.851328 4.613984 -2.703959 -1.012823 -1.232150 -1.936316 0.632152 -2.181996 1.203899 0.797600 2.577391 -3.517482 -2.291602 0.396415 0.349622 -2.299570 -2.562464 -0.310257 2.897230 -3.648217 -2.326253 -1.811238 2.859692 0.093416 -6.121624 -1.948470 -2.981818 0.941252 0.803708 -2.847280 -2.465921 1.476144 0.381405 -0.867091 -1.362845 -1.324283 2.246702 2.511973 1.129295 -0.445707 2.566202 1.033955 5.679771 0.626130 -2.298029 0.095407 1.234176 -0.640293 2.021756 -2.079578 -1.108419 2.514266 -3.092071 -0.232021 1.311447 -2.139198 -2.088760 1.615907 -0.712520 -0.232514 11.811335 -0.482923 4.229430 4.163145 -3.056236 1.339740 -1.580617 1.102957 1.793052 2.627830 1.752731 -4.713834 -3.347698 3.467174 5.700718 2.073709 -3.612445 -0.947349 1.878080 1.128631 -0.976015 1.938750 0.632646 0.149928 -2.161995 -0.331370 2.512841 6.633689 -1.972897 0.557753 0.488553 3.177956 -0.472675 -3.751632 -0.522529 -3.331419 -0.111636 1.714904 1.411411 1.880538 4.551041 -6.114120 3.474859 -0.095708 1.140486 2.300133 1.543292 -3.360515 -5.492343 -0.861062 1.486624 3.108618 -0.607836 0.973157 0.998045 -4.864136 0.319730 0.915443 0.901589 -2.732713 4.018629 -0.517194 -1.356541 -1.721166 1.040605 -1.721778 -1.390315 -0.982393 3.220821 1.672958 -4.022015 3.140641 0.228073 -1.983624 -0.004965 -0.888030 4.253535 -3.744268 -3.680024 2.478101 -2.067991 -2.946418 -1.580596 -1.066145 1.473266 1.232460 0.356399 -3.206661 -3.159143 4.380911 -1.429271 4.686900 2.143021 -1.119532 2.866163 -1.609628 -2.009755 -2.292732 -2.556133 0.291778 0.185677 -2.563287 -2.220967 -0.787814 2.992841 3.489966 -0.203623 -2.809007 0.337789 4.175562 -3.678893 -0.868469 1.271501 1.766394 -2.577150 2.208851 1.954289 -3.603214 1.166698 -3.337007 0.032869 -2.289117 -2.189713 3.345882 -1.120230 1.469673 0.061239 -0.432940 0.225808 1.825728 2.126914 -0.037085 1.089114 5.305528 3.553350 -0.770562 -0.764735 -5.217907 2.308413 -4.430109 -3.880522 0.304713 1.086013 -2.312134 -0.840043 -0.251590 3.498288 3.113357 -2.175319 -2.671013 1.869526 +PE-benchmarks/matrix-chain-multiplication.cpp__main = 0.053264 0.300216 0.601662 -0.243566 0.417961 -0.140059 0.221820 0.450986 -0.505911 -0.870183 0.108183 -1.175802 -1.203986 0.703428 -0.133557 -0.372547 0.970889 0.076815 -0.010749 -0.356820 -0.102851 -0.253745 0.929008 1.016092 -0.902218 0.268909 -0.151258 0.382257 0.096103 0.493837 0.256242 -0.963595 0.153172 0.514560 0.545345 -0.041610 -0.209636 -0.368719 -0.688066 -1.394432 -0.146515 1.091935 0.103382 0.002572 0.311318 1.060632 1.183091 0.505956 -0.262671 0.522941 0.389685 -0.183781 0.451062 0.019067 0.149716 -0.697208 0.389689 -0.344428 -0.699217 0.320817 -0.085814 -1.091532 -0.491803 0.661561 0.868726 -0.156006 -0.295433 -0.372577 -0.068931 0.302522 0.083110 0.469457 0.793974 0.363770 0.681876 0.456758 -0.045875 -0.914277 0.121272 -2.449243 -0.898506 -0.466206 1.614669 0.802211 -0.406956 -0.697845 1.018683 0.130344 0.133588 0.636163 1.190255 -0.120167 -0.379548 -0.323098 -0.171051 0.509713 -0.437825 0.091632 0.313687 0.203971 -0.721836 0.046534 0.289954 -0.426127 -0.414523 0.461292 -0.223633 0.581091 -1.076755 0.300004 -1.035136 0.074483 0.810476 -1.154521 -0.119833 0.214632 0.111754 0.590349 -0.370796 0.362994 0.297521 -0.249259 -0.325193 0.375138 -1.366637 1.037336 0.026406 0.189648 0.354785 0.673547 0.593337 0.137838 0.394091 -0.214528 -0.126184 0.191346 -0.074918 0.185533 -0.139870 -0.139798 0.436268 -0.382336 0.226772 -0.330738 -0.495539 -0.529205 -1.124848 -0.258546 0.208886 1.058546 -0.187183 0.697108 0.227949 -0.511700 0.602026 -0.127278 -0.302947 0.062221 0.612273 0.579616 0.299982 -0.344503 0.514221 1.067504 0.364341 -0.650159 0.493540 0.334500 0.119996 -0.349415 0.701802 0.227099 0.377029 -0.373842 -0.094427 0.505952 0.937079 -0.072132 -1.091169 -0.097492 0.287150 0.536990 -0.165359 0.279022 0.423857 -0.014742 0.138335 0.055236 0.318510 0.821920 -1.785257 0.803488 0.330682 -0.092298 0.637567 -0.128342 -0.398577 -1.128650 0.114342 0.584651 0.773713 0.475388 -0.330041 -0.181139 -0.753514 -0.078065 0.167823 0.289368 -0.405768 0.668651 -0.278558 -0.252617 -0.502501 -1.130625 -0.135637 0.314736 -0.681536 0.345617 0.635842 -1.617078 0.794301 -0.142277 -0.511943 -0.695163 -0.172671 0.181746 -0.767090 -0.829984 -0.145763 -0.874836 -1.729390 -0.618358 -0.463320 -0.081075 -0.028298 -0.132585 -0.182312 -0.543177 1.351222 -0.133953 0.738308 0.536474 0.032067 1.114922 1.234788 -0.575710 0.043989 -0.470536 0.844206 -0.839931 -0.207403 0.616166 -0.425413 0.160927 0.885762 -0.169272 -0.159521 -0.439396 0.603759 -0.265831 -0.713203 0.500305 -0.449235 0.092231 0.997043 0.610373 -0.563995 -0.033408 -1.077180 -0.296199 -0.230585 -0.447452 0.201978 -0.632207 -0.082499 0.516456 -0.287927 -0.628815 0.264992 -0.215620 -0.487452 -0.192751 1.007356 1.153719 -0.868467 0.888796 -0.859726 0.635082 -0.908584 -0.655765 -0.049306 -0.014981 -0.127053 -0.198586 -0.094520 0.011220 0.282453 -0.726840 -0.780083 0.674702 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 0.073829 0.209346 0.349770 -0.078303 0.287939 -0.058664 0.139744 0.376807 -0.330383 -0.408999 -0.105574 -0.475727 -0.560609 0.403663 -0.004747 -0.152399 0.641313 0.257403 0.057893 -0.136372 -0.129129 -0.257630 0.466034 0.528645 -0.384815 0.220343 -0.145069 0.146054 -0.189342 0.602626 -0.079139 -0.641611 0.109916 0.280312 0.298334 -0.231455 -0.161922 -0.104147 -0.444721 -0.900273 -0.016213 0.645649 0.154926 -0.034911 0.193554 0.400980 0.662901 0.220059 -0.018597 0.329566 0.027931 -0.014121 0.267384 0.064608 0.221710 0.001055 0.234397 -0.333219 -0.475974 0.256348 -0.103356 -0.656807 -0.256567 0.247879 0.384705 -0.083267 -0.156639 -0.300120 -0.166170 0.121751 0.060569 0.167756 0.364606 0.065129 0.243220 0.287897 -0.021932 -0.257287 0.040223 -1.255752 -0.489349 -0.357889 0.837534 0.565407 -0.146156 -0.379483 0.530657 -0.133689 0.220642 0.150902 0.600571 -0.168836 -0.223583 -0.198023 -0.000783 0.230066 -0.160203 -0.201184 0.143303 -0.039493 -0.366134 -0.078971 0.340974 -0.177550 -0.196891 0.290584 -0.107159 0.401179 -0.696604 0.006836 -0.702769 0.031931 0.294940 -0.466112 0.054993 0.190272 -0.089470 0.399742 -0.232712 0.038674 0.265818 -0.003278 -0.210070 0.133169 -0.698839 0.600306 -0.152283 -0.063105 0.231338 0.264695 0.188506 0.111199 0.313710 -0.117971 -0.028382 0.245348 -0.050391 -0.032843 -0.097883 -0.159964 -0.042466 -0.300330 0.057465 -0.174451 -0.329583 -0.086941 -0.754443 -0.090967 0.183686 0.400609 -0.185381 0.276464 -0.002315 -0.334481 0.429617 0.009951 -0.187080 -0.044440 0.407603 0.304550 0.162145 -0.171919 0.131653 0.523492 0.248400 -0.208309 0.168533 -0.073356 0.075809 0.021034 0.366509 0.095065 0.226660 -0.263140 -0.058320 0.009411 0.676145 -0.039379 -0.580632 -0.042742 0.005554 0.170013 -0.126869 0.121484 0.096089 -0.043955 -0.053770 -0.104772 0.111107 0.441912 -0.882149 0.528049 -0.087844 -0.228322 0.374722 -0.127283 -0.018626 -0.521175 -0.064293 0.328824 0.653446 0.252933 -0.103790 -0.125799 -0.370046 -0.087141 0.010702 0.262358 -0.222179 0.334994 -0.097005 -0.326358 -0.165223 -0.609178 -0.000864 0.016330 -0.342527 0.105006 0.509098 -0.874622 0.389762 -0.015057 -0.185859 -0.132591 0.152848 0.020586 -0.343028 -0.470421 -0.047598 -0.288884 -0.791253 -0.179425 -0.272859 0.088190 -0.077898 -0.186627 0.009019 -0.321508 0.661143 0.068058 0.367028 0.297862 -0.009064 0.565798 0.815164 -0.358346 0.137938 -0.273578 0.298459 -0.628197 0.108816 0.351143 -0.313040 0.147607 0.574578 0.110214 -0.034400 -0.314347 0.459783 -0.070589 -0.222746 0.397589 -0.389945 0.170545 0.444212 0.458200 -0.355874 -0.191924 -0.474056 -0.025169 -0.005257 -0.128069 0.083753 -0.498073 -0.086268 0.299121 -0.164723 -0.436254 0.109395 -0.131130 -0.323666 -0.181948 0.593096 0.382026 -0.418833 0.637575 -0.256395 0.265716 -0.434865 -0.127212 -0.233810 0.109335 -0.182976 -0.015852 -0.004455 -0.022484 0.029066 -0.207411 -0.317313 0.114346 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -2.650849 -2.070267 0.054687 -4.727642 3.153202 3.655120 1.585826 -3.235921 -5.901845 -2.196078 1.562605 -5.831342 -3.153061 6.706444 -1.848446 4.854552 8.932829 1.328546 -2.284735 -3.017052 6.347527 -3.068667 8.841412 10.211943 -6.841992 0.364831 2.450949 3.453678 2.913015 1.580827 0.562636 -3.661264 1.698260 -6.492937 1.666111 -5.082043 -1.416812 2.720632 5.250499 -11.605731 -0.533865 1.379336 -0.007820 0.118334 0.144789 3.401319 5.582479 5.340980 -2.380365 5.570321 5.180148 -0.242639 2.420884 0.229711 1.379577 1.941877 1.629403 2.430151 -0.311084 -0.080205 -1.576631 -2.457545 2.210090 6.745865 8.433043 -1.050491 -2.922856 2.402929 2.071872 1.271228 2.030618 5.198537 -0.355018 0.940456 4.955077 -10.569784 0.032152 -15.511712 1.492129 -14.233771 -4.881230 -0.532827 4.180223 -0.545518 4.065196 0.265699 10.036570 -1.567371 -2.460077 6.474891 7.255528 -5.655648 -1.287450 -2.396479 -3.888762 0.868617 -2.981109 0.780207 2.919344 1.842383 -5.492044 -5.524645 2.664617 1.239824 -4.112795 -4.563792 -0.772783 5.524485 -5.938293 -5.228767 -4.001967 3.623238 -1.534655 -10.137355 -1.470653 -5.397058 3.589438 1.142210 -4.327890 -6.061103 2.239450 2.689890 -1.900590 -3.499052 0.268411 5.045042 4.626800 1.128678 -0.336258 1.963041 1.205009 9.073150 4.170795 -4.063966 -0.328924 2.740740 -2.696368 2.143619 -4.697643 -1.786607 4.595013 -5.698986 -0.391982 2.779484 -3.744393 -1.555129 7.847574 -1.295322 0.099931 22.497320 -1.146365 6.772619 5.707068 -5.801890 3.804120 -1.350779 1.085565 4.003323 5.251234 3.031119 -11.529651 -5.226268 4.481475 9.314761 3.628776 -8.015804 -4.561399 1.209053 0.820725 -0.263662 2.715785 0.321992 -0.050555 -3.542439 -0.773798 2.995686 12.425150 -4.193758 -1.878606 0.542619 4.316119 -2.989424 -9.230516 -1.167022 -7.555833 -0.242600 1.786626 1.020934 3.677995 7.480175 -13.687577 5.849723 -2.486952 -0.432915 4.910164 2.751895 -4.492590 -10.384130 -0.785929 2.652170 6.314222 -0.726174 1.184921 1.891976 -7.983207 0.346943 1.123425 1.811225 -5.134358 6.832411 -0.048020 -3.669241 -2.447907 1.757791 -2.166296 -3.783826 -0.961745 4.905125 0.580423 -9.693515 5.153009 0.205840 -3.018019 2.237310 -0.870625 6.266037 -6.003506 -6.776875 4.654060 -0.843929 -2.092839 -2.959206 -1.910722 3.885628 1.746767 0.197604 -5.543731 -8.186248 5.313940 -3.101691 7.262980 3.912235 -1.502515 6.134569 -2.690783 -3.254639 -5.817140 -2.672673 0.150075 0.407827 -3.695554 -6.401839 -2.002264 5.340517 6.734538 0.383405 -2.404487 -0.383142 7.803391 -7.252168 -0.584072 2.409752 4.558201 -4.099757 2.737134 3.581654 -6.106978 0.610192 -4.783953 -0.653901 -2.619594 -3.122891 5.962825 -2.631984 2.132173 0.452488 -0.551767 0.437397 3.554372 3.060784 0.798846 1.036711 8.368827 8.348360 -2.716188 -1.733937 -7.405136 4.012125 -7.599134 -5.705796 -0.281580 2.226187 -3.968853 -0.990739 0.610279 6.005036 3.903284 -2.828864 -2.639471 1.230589 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.160819 0.370153 0.536700 -0.155554 0.465699 0.005684 0.212824 0.557245 -0.496299 -0.674573 0.006717 -1.024385 -1.015686 0.602727 -0.006213 -0.334784 0.865903 0.137666 0.009538 -0.156707 -0.258939 -0.108605 0.729963 0.802752 -0.667375 0.372585 -0.343958 0.176544 -0.230524 0.719049 0.052430 -1.048962 0.116351 0.591916 0.392387 -0.018947 -0.294975 -0.364452 -0.662401 -1.272982 -0.076114 1.202019 0.119928 -0.057029 0.338671 0.649780 1.120478 0.351489 -0.090416 0.455126 0.129494 -0.109063 0.432312 0.029110 0.277483 -0.394176 0.352580 -0.472585 -0.718594 0.317303 -0.098697 -0.882820 -0.551199 0.445416 0.593704 -0.117340 -0.325633 -0.476819 -0.154577 0.204809 0.047699 0.353299 0.702769 0.263970 0.460949 0.777661 -0.044215 -0.285666 0.144704 -1.791313 -0.831254 -0.409679 1.493814 1.021596 -0.356526 -0.807392 0.835966 -0.115563 0.207242 0.383056 1.003649 -0.109463 -0.338304 -0.272209 -0.073198 0.399451 -0.257624 -0.108647 0.156419 -0.004375 -0.630533 0.067203 0.321612 -0.377780 -0.346223 0.557510 -0.140632 0.513252 -0.938161 0.250644 -0.912812 0.156663 0.691731 -0.842144 -0.226845 0.379789 -0.270188 0.604646 -0.377860 0.275150 0.345851 -0.262044 -0.364852 0.339101 -1.239601 0.928480 -0.111020 0.098096 0.379239 0.548226 0.540734 0.088172 0.256394 -0.157486 -0.001953 0.188143 0.144256 0.132811 0.009504 -0.144955 -0.058281 -0.324739 0.172038 -0.311303 -0.460625 -0.240165 -1.504775 -0.130761 0.133773 0.690530 -0.249543 0.580672 0.071758 -0.462004 0.634726 -0.049879 -0.367371 -0.099995 0.511013 0.542994 0.419422 -0.227540 0.395289 0.891778 0.327950 -0.389910 0.605576 0.211401 0.074076 -0.212981 0.700036 0.143031 0.500575 -0.371475 -0.098460 0.311316 0.941131 0.001542 -1.100628 -0.053069 0.145567 0.550292 0.089573 0.255207 0.366618 -0.043316 0.129913 -0.060479 0.259296 0.678267 -1.341015 0.749712 0.189061 -0.286214 0.617485 -0.155137 -0.229436 -0.643417 -0.048855 0.509368 0.827254 0.456048 -0.309749 -0.265344 -0.574736 -0.127186 0.135090 0.221308 -0.340520 0.563949 -0.237814 -0.319235 -0.300829 -1.141148 -0.106169 0.246473 -0.722117 0.230057 0.708799 -1.301820 0.645896 0.047743 -0.368595 -0.562699 -0.035733 0.051993 -0.526426 -0.701040 -0.155825 -0.711467 -1.519811 -0.300247 -0.469326 -0.087643 0.044012 -0.103854 -0.091183 -0.427564 1.219412 0.099659 0.668133 0.508015 -0.013658 0.823538 1.355392 -0.544946 0.268577 -0.607691 0.828198 -0.814567 -0.020755 0.659188 -0.525852 0.118178 0.730086 -0.008684 -0.184203 -0.656636 0.510855 -0.030373 -0.443354 0.516963 -0.728023 0.144562 0.742135 0.627826 -0.384179 -0.054061 -0.894328 -0.142600 -0.221905 -0.267632 0.096505 -0.573311 -0.140178 0.488140 -0.336340 -0.661828 0.134786 -0.281583 -0.564685 -0.212459 0.860399 0.589624 -0.694694 1.011897 -0.584539 0.549928 -0.678636 -0.408625 -0.140313 -0.068371 -0.257437 -0.209648 -0.088863 -0.089579 0.131470 -0.506366 -0.641691 0.515869 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -0.393209 0.190754 0.454132 -1.070800 0.655909 0.648591 0.244022 -0.248447 -1.024937 -1.341799 0.318384 -2.140350 -1.765212 1.472237 -0.718917 -0.007722 1.980687 -0.067007 -0.374762 -0.759916 0.806272 -0.093292 2.143162 2.376552 -2.070429 0.062405 0.359842 1.046385 0.797574 0.347543 0.964717 -1.630891 0.148505 0.022101 0.934614 -0.466106 -0.189165 -0.110062 -0.172426 -2.785394 -0.356273 1.329692 0.033069 0.104842 0.368719 1.204188 1.990691 1.291164 -0.711082 0.848074 1.393391 0.433405 0.664185 -0.093275 -0.090040 -1.004441 0.364072 -0.479464 -0.393100 0.120089 -0.145133 -1.024478 -0.215965 1.934717 2.157666 -0.131492 -0.561637 -0.050844 0.311583 0.558814 0.183661 1.309239 0.641198 1.047363 1.287019 -0.787407 0.020896 -2.994120 0.647585 -3.919387 -1.326077 -0.678396 1.828265 1.329197 -0.043955 -0.673941 2.482343 0.164669 -0.149792 2.067622 2.222753 -0.546229 -0.400450 -0.894323 -1.006401 0.770263 -0.950814 0.523365 0.052506 1.019588 -1.361891 -0.664794 -0.096179 -0.309982 -1.032029 -0.169320 -0.436645 1.071582 -1.811724 -0.020247 -1.329015 0.726724 0.761347 -2.820393 -0.911673 -0.882730 0.445551 0.396774 -0.724416 -0.320180 0.356753 0.124395 -0.439384 0.153620 -1.761424 1.450940 0.917172 0.228702 0.065625 1.021549 0.906019 1.284840 0.418223 -0.735022 -0.346685 0.480714 -0.363640 0.216521 -0.873863 -0.013640 1.306601 -1.049387 0.200524 0.292416 -0.849257 -1.191979 -0.587382 -1.016342 0.416576 4.727829 -0.325090 1.529898 1.086034 -1.329150 0.751106 -0.290637 -0.245095 0.599711 1.060729 1.187763 -1.082158 -1.067085 1.224470 2.351719 0.709476 -1.201317 0.336041 0.834007 0.031151 -0.719679 1.057839 0.261815 -0.164664 -0.699485 -0.273355 1.316288 2.193609 -0.240370 -0.766363 -0.084669 1.514523 0.182816 -0.683334 0.256576 -0.501654 0.014376 0.869062 0.335836 0.984568 1.823270 -3.395554 1.446969 0.693920 0.292310 0.819740 0.039465 -1.028765 -2.204093 0.413100 1.111505 1.189260 -0.002206 -0.000145 -0.043088 -1.885444 0.051160 0.546905 0.682009 -1.215596 1.550711 -0.149150 -0.623932 -1.159982 -0.677358 -0.696118 -0.038148 -1.058467 0.986603 0.460609 -2.510577 1.766522 -0.271902 -0.860182 -0.741959 -0.802599 1.090102 -1.881003 -1.664513 0.447148 -1.049814 -2.027283 -0.852196 -0.738459 0.520625 0.307613 0.261609 -1.270702 -1.501959 1.917504 -0.506910 1.582346 0.998335 0.088366 1.681888 0.367425 -0.660281 -0.839407 -1.096301 1.115081 -0.263833 -0.979849 0.018191 -0.518905 0.775176 1.852923 -0.610892 -0.851828 -0.088788 1.463038 -0.822459 -0.944229 0.368750 -0.086724 -0.719758 1.175964 0.692080 -1.269287 0.054146 -1.991531 -0.049292 -0.643271 -1.175125 0.969016 -0.985023 0.285893 0.815878 -0.377460 -0.661087 0.838760 0.379166 -0.353491 0.278915 2.035189 1.688038 -0.847901 0.655776 -2.205888 1.167889 -2.136413 -1.679633 -0.027188 -0.190391 -0.190595 -0.386322 -0.460625 0.902580 0.955127 -0.744478 -1.096407 1.052835 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -1.467597 -1.153386 -0.156890 -2.054097 1.392157 2.060084 0.899192 -1.960831 -2.835767 -1.305047 0.933851 -3.727390 -1.804927 3.433043 -1.029904 2.761833 4.288854 0.536845 -1.392154 -1.107983 2.734338 -0.774253 4.564376 4.888485 -2.797980 0.050024 0.118588 1.515067 0.806210 0.525932 0.868684 -2.094442 1.077268 -2.956136 0.391551 -1.656606 -0.761904 1.494187 2.555411 -5.304479 -0.244324 1.537909 0.584697 -0.156511 0.068524 0.320744 2.697289 2.656444 0.044144 2.444669 1.819851 -0.152527 1.644206 0.266006 1.023039 0.733430 0.493760 -0.896379 -0.623172 -0.296518 -1.031848 -1.023922 0.550530 3.276252 3.888289 -0.111042 -1.590216 1.105545 0.710193 0.839920 1.067581 2.591551 -0.462525 0.772394 1.942767 -4.455095 0.315534 -5.517789 0.622164 -5.028392 -2.499302 0.111558 2.039308 1.737408 2.185956 -0.099331 4.850416 -1.003096 -1.591060 2.823419 3.848774 -2.932030 -0.784238 -0.978123 -1.237910 0.098323 -1.538186 0.465894 0.585601 1.392955 -2.884013 -2.070911 1.136654 0.668797 -1.828406 -1.910787 -0.154694 2.789073 -2.838215 -2.678707 -1.642537 2.010688 -0.668498 -4.874017 -0.807661 -2.132281 0.457680 0.892524 -2.463612 -3.034388 1.555162 0.962346 -0.720438 -1.763669 -0.798414 2.200250 1.928319 0.536416 -0.245787 1.800206 0.647691 4.903650 1.270544 -1.743774 0.266184 1.071957 -0.801090 1.443493 -1.479774 -1.130980 0.816375 -2.893729 -0.675206 1.644814 -1.853302 -0.675722 1.250072 -0.176560 -0.143470 9.732481 -0.769648 3.358788 3.058455 -2.863091 1.794554 -1.207476 0.633473 1.145250 2.129344 1.634275 -5.083287 -2.709117 2.745621 4.655403 1.811655 -3.010534 -1.241896 0.777725 0.808297 -0.431286 1.594693 0.532703 0.403861 -1.994090 -0.335570 1.601417 6.199195 -2.116415 -0.160768 0.714044 1.267396 -0.560230 -4.016828 -0.712270 -3.160835 -0.266935 0.921184 0.832555 1.288380 3.717482 -4.413724 3.088059 -0.903750 -0.063511 2.873885 1.048150 -2.387446 -4.047281 -1.034362 1.453870 2.902202 -0.558628 0.415073 0.523892 -3.934379 0.133978 0.553138 0.852178 -2.236315 3.292934 -0.279205 -1.698166 -1.203083 0.762713 -1.044705 -1.832450 -0.736975 2.512815 1.312872 -3.053110 2.680979 0.595815 -1.402669 0.941507 -0.373916 3.365995 -2.627316 -3.097498 2.254176 -1.212413 -1.632260 -1.019010 -0.868689 1.429303 1.153860 -0.100568 -2.607774 -2.798985 2.994546 -0.968707 3.879979 1.775901 -0.713267 2.201390 -0.370362 -1.870196 -1.759865 -2.046414 -0.371687 0.131537 -1.891498 -2.865601 -0.900951 2.837879 3.005641 0.226212 -1.847045 -0.289368 3.519741 -3.391582 -0.294263 1.373499 1.123155 -2.289310 1.032716 1.901113 -2.711936 0.557628 -2.219708 -0.021843 -1.940754 -1.700468 2.515700 -1.097476 1.005569 0.056512 -0.530714 0.189440 1.322597 1.688048 0.135821 0.680564 4.285902 2.478524 -0.603059 -0.667647 -3.805109 1.911012 -3.541558 -2.757745 0.218569 1.502014 -2.193006 -0.734506 0.357056 2.818234 2.114147 -1.741837 -1.687391 0.661514 +PE-benchmarks/rabin-karp-algorithm.cpp__main = 0.140363 0.450456 0.561479 -0.089908 0.581254 0.129368 0.268641 0.605776 -0.536354 -0.679813 -0.148018 -0.923124 -1.096804 0.730088 0.067124 -0.202204 1.132528 0.294859 0.076403 -0.200355 -0.166531 -0.344345 0.897901 0.986583 -0.726543 0.444734 -0.166384 0.145427 -0.360149 0.947998 -0.191652 -1.178558 0.240552 0.346109 0.446007 -0.274209 -0.394352 -0.346025 -0.599091 -1.606299 -0.097803 1.126638 0.004657 -0.061728 0.330585 0.714483 1.328156 0.404575 -0.078716 0.625397 0.033579 -0.168363 0.493806 0.076833 0.409887 -0.035516 0.351642 -0.338170 -0.796583 0.409880 -0.199341 -1.079557 -0.513059 0.469656 0.681240 -0.176756 -0.403607 -0.407985 -0.265939 0.159077 -0.012984 0.444288 0.789013 0.208463 0.566338 0.438749 -0.135913 -0.523305 0.056346 -2.140625 -0.968159 -0.581825 1.420957 0.822083 -0.134989 -0.763029 1.048328 -0.265706 0.314896 0.338810 1.178371 -0.420106 -0.359579 -0.341863 0.014518 0.327075 -0.273179 -0.229527 0.311074 -0.270127 -0.738562 -0.246449 0.595390 -0.312093 -0.414804 0.367062 -0.187937 0.717101 -1.112675 -0.028767 -1.277092 0.020375 0.471122 -0.947161 -0.099116 0.461936 -0.109605 0.770331 -0.479889 -0.076774 0.498449 -0.008033 -0.382108 0.043958 -0.881054 1.108248 -0.074173 -0.021006 0.465431 0.544443 0.485845 0.375121 0.696338 -0.141732 -0.025932 0.349123 -0.020397 0.053218 -0.061962 -0.228969 -0.115674 -0.509289 0.107970 -0.174205 -0.578433 -0.087113 -1.152792 -0.185209 0.206683 1.048666 -0.361602 0.579054 0.032628 -0.673314 0.797938 -0.112803 -0.427902 -0.078149 0.730710 0.695967 -0.012714 -0.277205 0.396417 1.059062 0.415953 -0.625351 0.363919 -0.007396 0.150735 -0.142169 0.744980 0.162519 0.604559 -0.469925 -0.084465 0.195210 1.375233 -0.296578 -1.259921 -0.027561 0.025677 0.465900 -0.320806 0.202243 0.115928 -0.138052 0.080462 -0.151533 0.227893 0.799881 -1.548139 0.896624 -0.179154 -0.533556 0.765210 -0.056532 -0.142642 -0.763095 -0.085131 0.633162 1.081677 0.556541 -0.248963 -0.347673 -0.718942 -0.140708 0.103376 0.379087 -0.431420 0.738359 -0.242007 -0.578956 -0.303816 -1.092958 -0.029907 -0.026038 -0.643896 0.248274 0.772900 -1.644005 0.754902 0.095070 -0.382884 -0.279743 0.144210 0.177446 -0.583401 -0.944863 0.015088 -0.619736 -1.423797 -0.247415 -0.551119 0.071722 0.109656 -0.247004 -0.121582 -0.742665 1.287381 0.188819 0.811790 0.598807 0.019272 1.122628 1.286702 -0.768586 0.163115 -0.674002 0.740985 -0.925008 0.051603 0.318151 -0.618784 0.301684 0.997823 0.126039 -0.086310 -0.809444 0.731761 -0.382759 -0.304666 0.694000 -0.414241 0.166055 0.715872 0.809963 -0.490953 -0.224807 -0.853373 -0.117750 -0.209100 -0.290145 0.115103 -0.880693 -0.204624 0.573382 -0.389985 -0.678731 0.168537 -0.265018 -0.508399 -0.332424 0.968754 0.860139 -0.919996 0.994698 -0.559312 0.619258 -0.806474 -0.395514 -0.249198 0.130679 -0.333595 -0.214659 0.064640 -0.070314 0.095729 -0.584348 -0.617939 0.246440 +PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -5.145783 -5.966212 -3.777035 -7.773867 4.021562 6.733035 2.923511 -8.354192 -9.368204 -2.210775 5.332182 -13.181184 -4.613920 10.646724 -3.969652 8.836673 12.615825 0.267757 -5.208682 -4.725418 9.074510 0.358453 15.187203 16.187678 -9.244124 -0.494747 -0.620033 4.411246 4.299363 -3.079645 5.357224 -5.292130 3.383366 -10.463133 -0.701897 -3.990218 -1.989309 4.974250 10.850016 -15.228327 -0.722798 3.203350 1.120482 0.246812 0.143516 3.672144 7.002547 8.460882 -0.752093 8.945000 7.216870 -0.777579 4.683180 0.389295 2.365773 -0.409594 0.791276 -0.337983 -0.479683 -2.755146 -2.683606 0.280695 1.397845 10.244257 11.860336 0.354528 -5.836933 4.543623 4.396801 2.659225 4.256952 8.882628 -1.809950 3.094847 6.453767 -13.540207 -0.159251 -18.913883 2.577154 -16.732306 -6.731066 3.071905 7.839143 1.909477 5.979148 0.601743 15.196856 -1.111400 -7.601274 11.782935 11.158463 -8.167513 -2.266713 -1.313561 -5.102547 0.052397 -3.860832 4.865703 3.481958 7.350148 -9.435722 -5.690796 0.782708 1.353610 -5.802102 -7.223085 -0.481762 6.961369 -8.259313 -5.919896 -1.355162 8.397849 -0.920217 -15.423600 -6.340285 -8.322367 3.532307 0.799272 -8.449833 -7.679319 3.894207 0.822780 -2.759516 -3.497247 -0.218750 4.458433 8.139156 3.302323 -1.882988 6.931112 2.191666 16.763568 -0.106621 -6.570363 1.371002 2.498804 -0.400410 5.921435 -4.554617 -2.841800 5.070003 -8.849405 2.008060 4.123209 -5.133189 -4.614093 6.711130 0.420275 -2.307447 32.186981 -1.099055 12.800196 11.911279 -7.711563 1.576439 -5.499734 4.039564 4.831573 6.356429 3.383366 -13.384935 -8.938506 9.762063 14.626669 4.776579 -10.778605 -2.270014 5.405613 2.039080 -2.636836 4.746162 0.637806 0.249404 -4.783308 -0.851839 7.187717 18.485590 -5.766523 1.985074 1.452297 7.197454 -0.634647 -9.408565 -2.081490 -9.015260 0.135444 5.505408 4.978669 5.382155 11.473434 -15.060863 8.532686 -0.358415 3.558282 6.709988 6.319902 -9.913373 -12.326839 -4.049773 2.989415 7.590940 -2.529873 0.899943 3.410469 -12.314646 0.907175 3.191191 0.406039 -7.241899 10.601639 -0.148317 -3.651812 -2.818113 3.942396 -4.152000 -3.143332 -1.891069 9.087853 0.779174 -10.981422 7.118125 1.410572 -5.430839 0.507063 -3.273652 11.627591 -8.140522 -8.501858 7.185187 -4.463493 -6.056274 -3.357344 -2.603284 3.132351 4.226026 3.594156 -9.613677 -7.612127 11.116232 -5.045740 12.946203 5.569861 -3.634413 6.115855 -9.013510 -5.238521 -6.380296 -7.168544 0.354085 2.608692 -7.742420 -5.022631 -1.790138 7.816475 6.994931 -0.160739 -8.453615 1.465823 10.433917 -9.342816 -0.201289 2.508878 6.278826 -8.388246 4.827898 4.542207 -8.793993 4.934463 -7.055342 -1.906471 -7.469633 -5.086111 9.186731 -0.536122 4.463056 -1.801851 -0.577645 2.577918 5.031553 5.336174 1.313867 4.784328 13.205237 8.036083 -1.074011 -3.718292 -13.728492 7.053321 -10.345438 -10.576681 2.090301 2.734518 -6.875371 -2.860863 -1.428315 10.428238 8.517171 -7.343495 -6.174868 5.580293 +PE-benchmarks/mergeSort_LinkedList.cpp__main = 0.210618 0.109855 1.149799 -0.479163 0.255269 -0.794663 0.203023 1.364406 -0.861646 -1.260273 -0.096236 -0.886810 -1.455765 0.804317 -0.187049 -1.147039 1.504187 0.719019 0.135091 -0.819659 -0.249494 -0.616500 0.997075 1.442707 -1.394440 0.319045 -0.277831 1.015242 0.565415 0.821902 0.639356 -0.953365 -0.050231 1.146747 1.218080 -0.759618 -0.080245 -0.191832 -1.832915 -2.365561 -0.112098 1.477941 0.286959 0.149487 0.728994 2.018234 1.222047 0.597544 -0.650584 0.821722 0.667391 0.082059 0.554423 -0.040026 -0.155173 -0.774001 0.419110 -0.481435 -0.909891 0.824533 0.075982 -1.959028 -0.347967 0.766253 1.215918 -0.318596 -0.197056 -1.011628 0.239762 0.493367 0.434071 0.361023 1.035959 0.039901 0.969536 0.684405 -0.202119 -1.645974 0.501857 -4.136038 -1.120763 -1.084332 2.917716 0.979865 -1.191618 -1.019009 1.220696 0.078697 0.627805 1.157237 1.066590 0.387033 -0.512780 -0.746990 -0.293467 1.179957 -0.583011 -0.303999 0.513060 0.652364 -0.698672 0.207420 0.384263 -0.819999 -0.566494 0.960651 -0.461722 1.016089 -1.718677 0.634096 -1.717039 0.505320 1.384646 -1.192307 0.061716 -0.143078 0.546635 0.744844 -0.197628 1.251265 0.159892 -0.362270 -0.433323 1.165573 -2.343528 1.559715 -0.317509 -0.208130 0.396742 0.873343 0.311151 -0.604651 0.630025 -0.403271 -0.413132 0.958006 -0.403177 -0.254564 -0.812823 -0.106182 1.212218 -0.413165 0.245912 -1.001821 -0.718077 -1.082274 -1.490214 -0.394236 0.650632 1.329010 0.006815 0.623249 0.218393 -0.229267 0.878015 0.497014 -0.120875 0.528527 1.056691 0.392961 0.614085 -0.364650 -0.183172 1.196071 0.508488 -0.613241 0.397157 0.074461 -0.059237 -0.085292 0.852919 0.174050 0.141774 -0.311609 -0.076621 0.246870 0.711083 0.451208 -1.555354 -0.724341 0.661555 0.093077 -0.095828 0.621934 0.896241 -0.003504 0.066613 -0.054950 0.523220 0.983643 -2.874849 1.123999 0.502181 0.270290 0.384972 -0.407328 -0.058923 -2.030490 0.224644 0.459071 1.519036 0.541939 -0.579310 0.190609 -0.950088 -0.091431 0.245571 0.683402 -0.527631 0.736859 -0.259592 -0.031726 -0.459088 -1.650047 -0.235548 0.742464 -0.837229 0.241691 0.675986 -2.334719 0.668339 -0.766672 -0.685122 -0.740429 -0.044005 -0.055842 -1.204157 -0.918285 -0.407713 -0.418233 -2.599028 -1.331629 -0.684550 0.407376 -0.528474 -0.262145 -0.047209 -0.857319 1.779857 -0.461092 0.644359 0.729103 -0.299430 1.822421 1.948444 -0.496348 0.009516 -0.437651 1.045372 -1.388800 0.190521 1.182997 -0.546150 -0.115217 1.491494 -0.191378 0.012647 -0.257558 1.321859 -0.105377 -1.319547 0.556135 -0.904476 0.924256 1.952768 0.797606 -1.389095 -0.370020 -1.546270 -0.241578 0.643904 -0.219927 0.663301 -1.203991 0.075200 0.637088 -0.050232 -1.060244 0.539718 -0.321365 -0.845604 -0.355922 1.618366 1.943613 -1.096242 1.629768 -0.838796 0.805846 -1.110820 -0.216570 -0.927639 -0.176398 0.138403 0.379007 -0.327276 0.038968 0.449037 -0.671369 -1.031522 0.914509 +PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.033373 0.883635 0.989316 -0.661450 0.948260 0.595918 0.271166 0.080003 -0.597225 -0.809242 -0.257005 -1.017844 -1.335437 1.121616 -0.207330 -0.058441 1.813752 0.174924 -0.037693 -0.665690 0.599003 -0.637057 1.679181 1.758914 -1.678013 0.442108 0.972796 0.633849 0.414011 1.041167 -0.560847 -1.131771 0.304792 -0.260667 0.758795 -0.774041 -0.326983 -0.663244 -0.220986 -2.474035 -0.197868 0.240025 -0.561762 -0.005401 0.176823 1.237553 2.172971 0.873301 -0.655477 0.592247 0.831476 0.133974 0.304040 0.080532 0.324088 0.089876 1.001363 0.444154 -0.476616 0.275160 -0.123361 -1.284184 -0.141120 1.289199 1.470014 -0.161976 -0.390080 0.127980 0.013352 0.072847 -0.189181 0.849115 0.800111 0.803994 1.038023 -1.241992 0.063672 -2.562177 -0.028374 -3.507754 -1.316143 -1.092281 0.954464 -0.267901 0.364599 -0.198208 1.840186 -0.018363 0.541706 0.767092 1.924772 -1.091005 -0.316313 -0.731420 -0.557938 0.489584 -0.565198 0.167163 0.386517 -0.360362 -1.062600 -1.102966 0.953523 -0.066377 -0.850332 -0.137494 -0.310257 1.059752 -1.464588 -0.400220 -1.683577 -0.220659 0.041268 -1.991535 -0.164850 -0.186708 1.330725 0.520505 -0.374773 -1.048496 0.328911 0.871487 -0.462582 -0.518832 -0.500722 1.491426 0.809947 -0.017750 0.418433 0.282578 0.784035 1.166769 1.565039 -0.384087 -0.357375 0.372137 -0.699674 -0.220919 -0.670797 -0.081690 0.691740 -0.846301 0.140630 0.612946 -0.779489 -0.298945 0.731155 -0.765885 0.593419 3.704325 -0.403799 0.869052 0.234023 -1.421345 0.738525 -0.274571 -0.748069 0.400374 1.084439 1.185497 -1.707116 -0.727515 0.626166 1.698631 0.636375 -1.604812 -0.264247 -0.149089 -0.183521 -0.293311 0.673793 0.113569 0.181589 -0.650208 -0.271654 0.733651 2.358941 -0.755950 -1.782531 0.067911 0.260939 -0.018416 -1.318263 0.047530 -0.328462 -0.042382 0.299063 -0.168012 0.754774 1.423074 -3.372846 1.184977 -0.379030 -0.844144 1.077789 0.141538 -0.400766 -1.366011 0.531137 1.236150 1.298341 0.425029 -0.131563 -0.330518 -1.357882 -0.138337 0.231125 0.677146 -0.903950 1.148357 0.177107 -1.182863 -0.883778 -0.802272 -0.021557 -0.319663 -0.599138 0.529136 -0.058705 -3.214206 1.597325 -0.125163 -0.528326 0.075021 -0.485420 0.717261 -1.336435 -1.624106 0.468005 -0.376358 -0.979762 -0.539016 -0.599876 0.669273 0.188987 0.141986 -0.957542 -1.764264 1.162603 -0.196310 1.034693 0.924659 0.468721 1.920012 0.246980 -0.758316 -0.968406 -0.492948 0.877159 -0.394689 -0.593702 -0.488259 -0.758223 0.788455 1.880040 -0.302219 0.054419 -0.645599 1.171565 -1.534398 -0.533621 0.686890 0.902416 -0.529777 0.699701 0.880992 -0.828452 -0.559142 -1.127986 -0.505482 -0.248783 -0.947476 0.499058 -1.223291 -0.058400 1.047550 -0.402934 -0.652064 0.730711 -0.222171 -0.040254 -0.231371 1.240817 2.453555 -1.473001 0.491181 -1.197524 0.968621 -1.747023 -1.222690 0.053848 -0.029148 -0.222238 -0.305199 0.016249 0.518918 0.188751 -0.543993 -0.412818 0.060108 +PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -0.554364 1.823596 1.386785 -2.240924 2.145490 2.258900 0.444275 -0.561535 -1.499286 -2.072661 -0.626524 -2.672582 -2.956742 2.808473 -0.776759 0.553256 4.462999 0.150520 -0.251632 -1.313281 2.286536 -1.140924 4.096979 4.553298 -4.256672 0.667055 2.610634 1.777488 0.975338 2.044229 -0.162467 -3.397011 0.237088 -1.085730 2.105068 -2.046441 -0.709314 -0.679817 0.537273 -6.270128 -0.656528 1.031536 -1.052268 0.060201 0.388722 1.017866 4.973811 2.370122 -1.939852 1.218626 2.560066 1.322535 0.813569 -0.027728 0.290816 0.413492 1.192845 0.478079 -0.208848 0.418182 -0.348765 -1.708045 0.347682 3.712660 4.019131 -0.359726 -1.153754 0.717617 0.381608 0.310701 -0.616762 2.667665 0.977122 2.118048 2.424107 -4.087413 -0.130312 -7.508978 0.979033 -7.308058 -3.046849 -2.378987 1.270045 0.813269 1.439397 -0.529008 5.157632 -0.442804 0.858196 2.951170 4.625366 -2.405166 -0.344095 -2.414669 -2.116556 1.097033 -1.372306 0.375534 0.067883 -0.053877 -2.567315 -3.330944 1.337006 0.108317 -2.356714 -1.533095 -0.837421 2.628940 -3.000546 -1.567291 -3.485125 0.670905 -0.423994 -5.391324 -1.140090 -1.714194 1.672827 0.659130 -1.076173 -3.287018 0.678551 2.150085 -1.122301 -1.583474 -1.131165 3.204571 2.680052 -0.386208 0.445602 0.709473 1.713013 3.574880 2.785416 -1.290108 -0.930569 1.151795 -1.371306 -0.679251 -2.272236 0.119893 1.916112 -2.258078 -0.383618 2.080014 -1.781436 -0.970896 1.982192 -2.840815 1.305758 11.634109 -1.086040 2.275126 1.284636 -3.625990 2.273482 -0.270388 -1.607348 1.262670 2.611575 3.167970 -5.308874 -2.109693 1.882004 4.553602 1.482860 -3.017956 -1.403979 0.158649 -0.534793 -0.866237 1.707138 0.054575 -0.353712 -1.507107 -0.707094 2.135291 5.813021 -1.532088 -2.730578 0.227132 2.722774 -0.764405 -3.303372 -0.068141 -3.050081 -0.362081 1.399032 -0.188059 2.241260 3.691887 -7.862165 2.792924 -0.343165 -1.324759 2.035870 0.364450 -1.132610 -4.197220 1.452364 2.953817 2.884678 -0.265857 0.858900 -0.831178 -3.767189 -0.068893 0.808386 1.794850 -2.821283 3.257536 -0.019359 -2.711890 -2.202277 -0.494222 -1.300172 -1.738224 -1.518403 1.595143 0.487259 -6.022271 4.085716 -0.232558 -1.023231 0.643354 -1.625497 2.660635 -3.547685 -3.977154 1.861990 -0.465685 -1.313529 -0.540698 -1.480179 2.231645 0.753175 0.426977 -2.897073 -4.475165 2.316086 -0.368730 2.859848 2.279136 1.047304 3.670059 -0.417413 -1.553992 -2.699213 -2.029075 1.717814 0.439515 -1.810196 -2.807865 -1.651176 2.189601 4.667551 -0.834335 -0.814536 -1.146839 3.114475 -3.418465 -0.612106 1.034007 1.303072 -1.977184 0.679020 1.635745 -2.027517 -1.157333 -3.234227 0.372953 -0.925459 -2.483924 1.616300 -2.815025 0.004483 2.452907 -1.281374 -1.149192 2.008022 0.727298 0.122556 -0.004453 3.225864 3.863657 -2.299933 0.401151 -3.493820 2.050183 -4.558272 -3.074339 -0.265960 -0.271050 -0.585895 -0.939715 -0.285471 1.891808 0.826635 -0.060296 -0.818646 -0.080138 +PE-benchmarks/tarjan-algorithm.cpp__main = 2.156213 0.245238 5.823408 -2.906147 0.450184 -5.456437 0.329012 8.577405 -4.548598 -6.436079 -0.291897 -3.807751 -6.336373 2.609326 -0.243409 -8.787234 5.339635 2.700124 0.713640 -3.710953 -3.363411 -0.648340 1.802655 4.876812 -4.882797 2.043894 -3.479478 3.599117 1.856748 3.158175 4.963284 -5.127895 -2.403604 9.464025 5.710074 -1.857751 -1.565324 -1.385558 -10.965496 -9.216694 -0.115389 8.951007 0.581684 0.684461 4.813768 9.994925 4.653164 1.013953 -3.029165 3.373123 2.326902 1.596376 1.980603 -1.229636 -0.727610 -5.324846 1.210936 -2.725455 -3.415852 4.797630 0.408973 -6.583043 -2.483848 2.161955 2.902858 -1.468996 -1.849273 -7.515286 2.210701 2.590609 1.886998 1.095650 5.877472 -0.580453 3.455580 7.915620 -1.944915 -5.099043 4.670535 -17.779822 -4.487395 -3.197744 16.353973 6.268321 -9.622579 -6.698677 3.874131 -0.543883 2.594448 6.672585 2.662921 6.446620 -1.623823 -2.437082 -2.116414 5.404817 -0.488358 -1.984667 0.742113 4.454240 -2.230345 4.136379 -0.690979 -6.126756 -1.924286 7.038755 -1.423763 3.571157 -7.112441 7.190944 -5.956240 5.642310 9.866688 -2.797299 -2.277984 -0.395135 1.184187 2.770253 -1.891728 10.359482 0.851953 -4.922799 -3.276997 9.705319 -12.640844 6.190173 -3.118733 -0.457500 0.923530 4.208843 1.588594 -7.340817 0.046982 -1.850699 -0.692182 4.311298 1.117271 -1.640049 -2.222888 0.671232 4.751751 0.918558 2.465715 -7.683487 -2.588732 -6.681812 -11.828098 -2.052263 1.432096 2.541181 -0.734794 2.675038 0.057613 1.669358 2.501089 4.060860 -0.473636 1.368006 4.070298 1.556849 8.171531 0.050829 -0.980487 4.311639 1.528658 -0.682893 4.972811 2.268991 -1.844457 0.033146 5.204377 -0.945258 1.216431 -0.232754 -0.683233 0.288408 0.131774 5.690003 -8.256263 -5.355721 4.812057 2.677376 5.471479 4.818637 7.431983 0.639792 2.272603 -0.890550 3.260546 2.734487 -13.398681 4.171844 4.226166 2.415694 -0.879283 -1.487808 0.763865 -7.913064 -0.556257 0.541606 6.977780 2.987603 -3.666792 0.504240 -2.515560 -0.462677 1.630583 2.239805 -2.451882 2.519973 -1.277717 1.676273 0.196493 -9.284336 -1.975814 6.917620 -5.285522 -0.019953 1.997763 -9.585319 1.344224 -2.861579 -1.478930 -6.625753 -0.225782 -1.659612 -3.203402 -2.036319 -3.898837 -2.061859 -14.412048 -5.316463 -4.245700 0.788391 -2.779399 0.906690 0.732421 -2.149230 9.327288 -1.637386 3.560921 3.010679 -2.873903 7.708258 9.853048 -0.389132 2.587632 -3.463724 8.385200 -5.996596 2.374378 9.486404 -2.879967 -3.540923 3.651687 -1.674496 -0.838912 -1.924390 4.550742 3.286165 -5.040706 0.799508 -7.885658 5.981851 10.658374 2.585122 -4.885285 -0.136920 -8.033614 -0.577689 2.469141 1.371095 2.540227 -3.577369 -0.275112 1.986396 -0.133789 -5.750008 1.135750 -2.329307 -5.481828 -0.601149 5.698458 7.564098 -3.834100 9.793765 -2.526705 4.057266 -2.352957 0.558360 -5.819914 -3.280652 1.491319 1.060551 -4.487839 -1.224056 1.996822 -2.112567 -5.111093 7.798502 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -2.007303 -0.406829 0.959753 -4.605641 3.992210 4.314715 1.511573 -2.701387 -4.118866 -3.005398 1.568817 -5.391777 -5.366506 5.478397 -2.347148 2.403224 5.619341 -1.299058 -1.945162 -2.990534 4.616989 -0.844221 8.009433 7.089344 -6.979360 0.361585 0.848744 3.618229 1.883178 2.579511 1.973601 -3.918080 0.603136 -2.420311 2.195973 -1.040145 -1.268603 0.139621 1.374841 -8.345773 -1.110418 3.671939 -1.207304 0.604892 0.663403 2.291718 5.842183 4.641923 -1.305303 3.539088 4.530551 0.212707 2.814381 0.132450 1.517266 -0.866037 2.326874 -1.005151 -0.565787 -0.629142 -1.844770 -2.276055 0.528879 6.218955 6.744602 -1.191370 -2.518750 1.276161 0.100383 2.250312 1.366927 5.163242 0.419274 2.086415 5.183206 -4.573642 0.342514 -8.580348 1.585784 -9.415412 -4.559228 -1.242084 3.764644 3.432958 2.670660 -0.927087 9.094136 -0.305299 -2.231317 5.080317 6.122846 -3.001871 -0.569706 -2.270183 -3.180542 0.163198 -2.540597 0.931940 0.119059 2.848255 -4.883000 -1.709079 0.270735 -0.004157 -3.565636 -2.431471 -1.944453 4.496609 -5.386164 -1.884554 -3.489922 3.842322 -0.112650 -9.510489 -3.392919 -3.586454 1.944556 0.248152 -2.172219 -2.573985 2.304370 2.206417 -1.521260 -1.807245 -1.970151 4.720319 4.524497 1.077847 -0.053933 3.273248 1.412101 6.290993 3.010622 -1.620984 -1.422356 1.448050 -0.590231 2.213040 -1.175842 0.535496 2.400208 -3.957709 0.035072 2.192917 -1.867223 -2.099847 0.188862 -2.133913 0.519309 17.967431 -2.002364 5.783110 3.902660 -4.688198 2.223161 -1.060175 0.361911 2.760185 3.516671 2.789486 -6.857901 -4.088897 5.254846 7.425026 2.228427 -5.875151 0.508879 2.316953 0.470566 -1.854510 2.832786 0.725810 0.442359 -2.732480 -0.705669 2.557531 9.686356 -2.982258 -3.624309 1.639341 3.503196 -0.923967 -3.881663 -0.497369 -2.886796 -0.757893 2.951232 1.129334 2.724893 6.095183 -8.777996 4.691902 -0.006573 -0.627829 4.815307 0.309686 -2.822310 -6.207605 -0.664253 2.431784 4.100500 -0.377765 -0.661464 -0.133491 -6.557168 1.372472 1.345702 1.502949 -3.993927 5.855142 -0.800235 -2.856066 -3.060048 -1.586274 -2.130229 0.089992 -2.952201 3.227168 -0.161003 -8.431933 5.023805 0.133713 -2.731970 -0.083296 -0.951701 5.515467 -3.960024 -5.713801 3.173225 -2.861631 -4.860300 -2.856482 -1.849385 1.879576 2.297354 0.560938 -5.808590 -5.030387 5.541926 -2.389962 6.379861 3.455599 0.132552 5.453641 -0.446059 -3.293648 -3.519795 -4.203746 2.621297 0.585623 -3.872839 -2.577189 -1.989289 3.774819 4.829434 -0.598049 -2.118690 -1.316919 6.042602 -4.675867 -1.603376 1.794610 1.457008 -3.795163 3.183978 3.051326 -2.725410 0.189589 -5.025937 -0.335193 -3.831427 -3.783497 4.289716 -1.981586 1.808677 1.129927 0.000857 -1.332096 1.994381 1.562754 0.019097 0.065183 7.256093 6.054533 -3.077802 -0.353283 -6.554562 4.624346 -5.776979 -4.741072 0.337030 0.060069 -0.944489 -1.156961 -1.039580 4.606803 3.902210 -3.408581 -2.502185 1.634619 +PE-benchmarks/quicksort-for-linked-list.cpp__main = 0.202731 0.301357 1.222645 -0.659238 0.316606 -0.658999 0.131372 1.272655 -0.768940 -1.424250 -0.083927 -0.945222 -1.609669 0.797519 -0.357431 -1.390148 1.502660 0.519171 0.155162 -0.942299 -0.192804 -0.312267 1.114659 1.513151 -1.664736 0.258729 -0.002610 1.113032 0.798340 0.659473 0.875916 -1.138410 -0.109156 1.353820 1.271049 -0.652175 -0.013517 -0.408389 -1.930027 -2.373751 -0.171053 1.294567 -0.061133 0.207573 0.747105 2.097339 1.418507 0.665349 -0.862191 0.720757 0.966194 0.464689 0.368948 -0.104989 -0.369087 -1.123456 0.375624 -0.532840 -0.722577 0.755911 0.163388 -1.811041 -0.426439 1.005511 1.340165 -0.279647 -0.151191 -0.984863 0.291628 0.534697 0.328589 0.446132 1.152774 0.361774 1.053260 0.659348 -0.322961 -2.056103 0.581933 -4.350961 -1.124275 -1.204408 2.865328 0.941065 -1.344175 -0.921097 1.327188 0.289237 0.698074 1.528921 1.201422 0.537263 -0.454401 -0.842820 -0.518635 1.304320 -0.642496 -0.031023 0.192638 0.845904 -0.710408 0.119143 0.099362 -0.923732 -0.642724 0.867632 -0.507832 0.950206 -1.800904 0.918105 -1.690907 0.615192 1.535463 -1.437886 -0.344190 -0.289283 0.968941 0.582769 -0.088549 1.333161 0.020189 -0.309660 -0.449334 1.280880 -2.340280 1.453343 -0.054915 -0.154131 0.323511 0.856953 0.495456 -0.577604 0.571698 -0.413430 -0.530698 0.854649 -0.336008 -0.374121 -0.894414 0.149464 1.398885 -0.319347 0.521113 -0.830683 -0.682269 -1.494260 -1.463491 -0.765031 0.758470 1.836978 0.007719 0.657273 0.258651 -0.318639 0.518806 0.412925 -0.247731 0.596128 1.012112 0.543607 0.716397 -0.379381 -0.088681 1.273105 0.476188 -0.640927 0.592057 0.258671 -0.230213 -0.299081 0.873738 0.142449 -0.069485 -0.240547 -0.145748 0.565342 0.596353 0.623305 -1.615172 -0.779195 1.068809 0.192750 0.282477 0.705527 1.097678 0.084893 0.536434 -0.020472 0.700412 1.052981 -3.306420 1.039495 0.843735 0.436304 0.067772 -0.312454 -0.132839 -1.858749 0.511723 0.614591 1.370990 0.490800 -0.443324 0.136586 -1.013524 -0.075688 0.403427 0.736677 -0.624098 0.743027 -0.089530 -0.067660 -0.665579 -1.611354 -0.323164 0.937814 -0.969336 0.254574 0.376442 -2.753719 0.890955 -0.894688 -0.694315 -0.977363 -0.425106 0.161015 -1.396863 -0.991108 -0.387942 -0.501893 -2.691588 -1.289203 -0.712078 0.474496 -0.465890 0.165551 -0.241955 -0.911933 1.768436 -0.421770 0.620466 0.761131 -0.118396 1.985214 1.343113 -0.336120 -0.181743 -0.567152 1.530853 -1.127827 -0.018560 1.380804 -0.523385 -0.181660 1.591275 -0.498821 -0.186001 -0.155326 1.239270 -0.181365 -1.377409 0.376584 -0.606942 0.769935 2.044916 0.661171 -1.349798 -0.384130 -1.715441 -0.174274 0.588857 -0.432718 0.669582 -1.190843 0.122063 0.821690 -0.008811 -1.159782 0.663160 -0.351510 -0.758033 -0.232359 1.493677 2.224106 -1.164620 1.625075 -1.046756 0.886116 -1.306682 -0.546898 -0.809043 -0.573642 0.398215 0.310320 -0.718627 0.114646 0.468661 -0.499065 -1.028125 1.130317 +PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -0.218691 1.452672 1.233520 -1.267757 1.517554 1.478318 0.320202 -0.384979 -0.791779 -1.098201 -0.430913 -1.550375 -1.887368 1.719002 -0.457768 0.200251 2.752350 0.028665 -0.147248 -0.927120 1.299999 -0.649179 2.660917 2.746057 -2.703202 0.543177 1.900428 1.013874 0.713992 1.428037 -0.722242 -1.885344 0.340544 -0.683995 1.123473 -1.174203 -0.464621 -0.938595 0.237393 -3.758625 -0.367457 0.122888 -1.027214 0.002136 0.166025 1.120286 3.365657 1.432450 -1.126886 0.679419 1.527947 0.657458 0.340464 0.054731 0.370457 0.274917 1.384754 0.711123 -0.276566 0.174914 -0.177360 -1.283912 -0.005504 2.254699 2.397368 -0.152544 -0.628328 0.501479 0.136247 0.068563 -0.482433 1.521567 0.854306 1.550461 1.530538 -2.486847 0.100535 -4.414590 0.174608 -4.686438 -1.926706 -1.623390 0.670065 -0.359162 0.953998 -0.060253 3.042498 -0.074720 0.726438 1.392298 3.015684 -1.777065 -0.280024 -1.281656 -1.179303 0.641887 -0.850551 0.438660 0.214526 -0.459255 -1.617151 -2.114876 1.167206 0.112933 -1.425269 -0.690208 -0.466085 1.565148 -1.931079 -0.861418 -2.284838 -0.113098 -0.336340 -3.324145 -0.738541 -0.718274 1.871682 0.468936 -0.543721 -2.201303 0.400331 1.604044 -0.686379 -1.150506 -0.286839 2.017756 1.752343 -0.105773 0.430469 0.257661 1.248118 2.273472 2.200377 -0.665773 -0.584774 0.476354 -1.017388 -0.444108 -1.211660 0.096808 1.005806 -1.328056 0.115187 1.503201 -1.113037 -0.471076 1.603259 -1.580856 0.901358 6.920851 -0.688698 1.359339 0.544215 -2.405065 1.023108 -0.430593 -1.226072 0.687357 1.556793 2.024337 -3.304260 -1.242660 1.153225 2.722954 0.934345 -2.349478 -0.643782 -0.107452 -0.427050 -0.595195 0.967808 0.076350 -0.049794 -0.966766 -0.483472 1.387099 3.745045 -1.217321 -2.453137 0.244000 0.998751 -0.265125 -2.040068 -0.069472 -1.235976 -0.098973 0.819506 -0.208765 1.357656 2.265837 -5.179447 1.706284 -0.398649 -1.253453 1.551807 0.329390 -0.707237 -1.926973 1.032787 2.021524 1.749193 0.215651 0.178808 -0.598471 -2.229614 -0.142364 0.466681 1.065361 -1.606377 1.883916 0.345769 -1.937386 -1.481042 -0.646382 -0.304711 -0.886987 -0.926735 0.912377 -0.273002 -4.638703 2.672593 -0.082307 -0.678291 0.357747 -1.120166 1.473019 -2.165633 -2.558031 1.049888 -0.368487 -0.796813 -0.424327 -0.867639 1.269621 0.557723 0.597094 -1.885478 -2.835631 1.394122 -0.214941 1.645340 1.424249 0.900078 2.593719 -0.502079 -1.001679 -1.822968 -0.952820 1.326955 0.167161 -1.224031 -1.456768 -1.115632 1.392645 2.942341 -0.638685 -0.202752 -0.960487 1.755214 -2.517944 -0.479768 0.784377 1.565512 -1.315869 0.499843 1.116201 -1.100354 -0.851738 -1.721493 -0.424253 -0.604821 -1.671939 0.846040 -1.770329 -0.030176 1.683889 -0.744119 -0.809061 1.237264 -0.003117 0.195078 -0.097838 1.728458 3.266382 -1.927686 0.302924 -2.049118 1.413399 -2.865477 -2.116409 0.224516 -0.346707 -0.327623 -0.629020 -0.138655 1.078238 0.315074 -0.336773 -0.403551 -0.101572 +PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.020724 0.431927 0.370055 -0.171283 0.382601 0.093451 0.138425 0.171559 -0.196891 -0.596682 -0.121792 -0.489373 -0.808855 0.502256 -0.144958 -0.114220 0.852452 0.138855 0.098639 -0.373016 0.208958 -0.351128 0.860875 0.840813 -0.877322 0.158739 0.438203 0.377815 0.254903 0.386546 0.027369 -0.617350 0.275353 -0.014792 0.431107 -0.372553 -0.016501 -0.293371 -0.351607 -1.202275 -0.142259 0.172639 -0.171814 0.053024 0.070782 0.707432 0.998843 0.467864 -0.365597 0.360968 0.447591 0.121309 0.162586 0.088528 -0.049612 -0.193631 0.187524 -0.134588 -0.339715 0.167991 0.005929 -0.932787 -0.172205 0.618711 0.801336 -0.125007 -0.067661 0.086012 -0.138212 0.132671 -0.041731 0.364867 0.478548 0.353765 0.570611 -0.435209 -0.138312 -1.234114 -0.110828 -2.074924 -0.641533 -0.706995 0.655091 0.082804 0.061023 -0.041465 0.867093 0.175854 0.350771 0.522610 0.951872 -0.456456 -0.225248 -0.420978 -0.130867 0.421773 -0.435631 0.127715 0.181755 -0.020014 -0.494495 -0.489723 0.393927 -0.117332 -0.400618 -0.157182 -0.251800 0.496948 -0.910284 -0.117729 -0.993359 -0.215774 0.145065 -0.996369 0.038394 0.018127 0.706539 0.342673 -0.012574 -0.264026 0.080850 0.343161 -0.095359 -0.174986 -0.435835 0.659883 0.283991 -0.041464 0.297826 0.299125 0.364311 0.546201 0.744290 -0.115690 -0.312256 0.227358 -0.341446 -0.104949 -0.371316 -0.049242 0.486315 -0.482018 0.190195 0.201629 -0.382453 -0.429639 0.104234 -0.477142 0.428267 1.328961 -0.049143 0.338030 0.163433 -0.639654 0.243470 -0.245665 -0.335618 0.261034 0.560301 0.500979 -0.363388 -0.347728 0.178771 0.775453 0.296587 -0.623210 -0.104475 -0.071620 0.049278 -0.218743 0.281300 0.193741 0.050978 -0.287649 -0.069511 0.428246 0.873773 -0.284553 -0.550255 0.015958 0.260926 -0.003393 -0.571696 0.043652 -0.029366 -0.054273 0.184716 -0.008757 0.216846 0.690687 -1.473263 0.545941 -0.027715 -0.143518 0.245515 0.022972 -0.189698 -0.811709 0.408507 0.610653 0.562652 0.175504 0.093036 -0.127651 -0.666746 -0.064693 0.142557 0.391043 -0.346672 0.504585 0.002981 -0.444949 -0.565603 -0.360665 -0.000335 -0.067479 -0.220022 0.247729 0.268020 -1.529903 0.754141 -0.325821 -0.417426 -0.055465 -0.213985 0.422973 -0.784904 -0.794696 0.188482 -0.320179 -0.753272 -0.363994 -0.237959 0.312138 -0.017420 -0.094048 -0.247293 -0.666638 0.637547 -0.040147 0.309628 0.428415 0.279656 1.042379 0.063458 -0.448472 -0.403682 -0.197278 0.382369 -0.457650 -0.230832 0.007243 -0.276523 0.337570 1.070924 -0.129851 -0.057060 -0.074109 0.588316 -0.718934 -0.488752 0.398023 0.479792 -0.073940 0.578997 0.443641 -0.541802 -0.347800 -0.624941 -0.066798 0.082904 -0.545404 0.211635 -0.748386 -0.010788 0.601492 -0.138230 -0.383927 0.443446 -0.104534 -0.032048 -0.240717 0.662431 1.176871 -0.782839 0.315287 -0.598496 0.360620 -0.923208 -0.598776 -0.026284 0.088800 0.065340 -0.020317 -0.053685 0.179766 0.111312 -0.304964 -0.339099 0.016559 +PE-benchmarks/coin-change.cpp__main = -0.000817 0.286545 0.480710 -0.156777 0.562984 0.064245 0.302624 0.331386 -0.574692 -0.730088 0.040638 -1.062413 -1.107484 0.825433 -0.025215 0.006258 1.151622 0.184112 0.000544 -0.314693 0.063977 -0.482367 1.069071 1.122417 -0.826824 0.340228 -0.021134 0.228847 -0.112006 0.659042 -0.094954 -0.998996 0.344394 0.023437 0.398742 -0.245490 -0.324938 -0.273645 -0.309677 -1.548302 -0.126907 0.886681 -0.006913 -0.038725 0.202835 0.935389 1.264466 0.540665 -0.166683 0.722440 0.246457 -0.349816 0.478897 0.097649 0.360933 -0.207240 0.361362 -0.130280 -0.740346 0.313204 -0.215661 -1.120958 -0.411006 0.611637 0.871571 -0.206124 -0.386524 -0.153593 -0.200056 0.210712 0.062861 0.528727 0.744871 0.223871 0.716077 -0.023005 -0.121935 -1.047095 -0.063804 -2.477979 -0.976771 -0.445698 1.355701 0.479880 0.000991 -0.544562 1.143449 -0.067710 0.094951 0.470885 1.291076 -0.555041 -0.397273 -0.279364 -0.048853 0.302155 -0.412796 -0.016191 0.500388 -0.150501 -0.821358 -0.287099 0.613326 -0.240504 -0.438846 0.122565 -0.189451 0.729638 -1.127187 -0.137052 -1.195532 -0.056088 0.430329 -1.178454 0.040555 0.317975 0.224724 0.718831 -0.521072 -0.161465 0.469493 0.018610 -0.331548 -0.087684 -0.741058 1.085669 0.091264 0.179011 0.426305 0.592327 0.518495 0.600105 0.786128 -0.208939 -0.060352 0.238898 -0.165124 0.253098 -0.117483 -0.295452 0.217724 -0.591508 0.156353 -0.103946 -0.581989 -0.228090 -0.550117 -0.144734 0.152839 1.321561 -0.279918 0.741103 0.241651 -0.729046 0.717036 -0.289869 -0.303002 0.056822 0.758712 0.639797 -0.242075 -0.408868 0.581941 1.170188 0.450465 -0.937398 0.151729 0.118147 0.246695 -0.224864 0.664988 0.241144 0.553566 -0.500288 -0.070557 0.371072 1.444053 -0.472491 -1.098486 0.047403 0.052381 0.424861 -0.690487 0.116031 0.015773 -0.093012 0.057171 -0.013455 0.237523 0.907511 -1.765271 0.889110 -0.174631 -0.385377 0.827033 0.077896 -0.394516 -1.136320 -0.039184 0.630091 0.952786 0.542215 -0.204764 -0.213857 -0.842738 -0.093943 0.096261 0.312823 -0.442670 0.801855 -0.270469 -0.525084 -0.432672 -0.899637 -0.032413 -0.047213 -0.492707 0.404839 0.688774 -1.784364 0.817381 0.019096 -0.509594 -0.306351 0.059207 0.380391 -0.698626 -1.014167 0.111739 -0.776311 -1.398467 -0.462651 -0.462134 0.020181 0.103646 -0.284171 -0.193761 -0.796514 1.300455 -0.030682 0.887388 0.584501 0.021629 1.245164 0.987092 -0.800620 -0.076216 -0.492171 0.616512 -0.875298 -0.174838 0.124820 -0.492591 0.417183 0.987263 0.068804 -0.092331 -0.588630 0.749753 -0.677606 -0.429192 0.699564 0.002820 -0.019921 0.815229 0.788289 -0.591089 -0.099606 -0.874911 -0.285890 -0.326775 -0.431437 0.216474 -0.748378 -0.111818 0.469337 -0.312569 -0.497655 0.253621 -0.164287 -0.340387 -0.294398 1.041082 1.295943 -1.005201 0.665299 -0.783580 0.641885 -0.942576 -0.672765 -0.024122 0.294322 -0.352279 -0.246683 0.141233 0.090332 0.229933 -0.811935 -0.690385 0.342848 +PE-benchmarks/coin-change.cpp__count(int*, int, int) = -3.878268 -3.697409 -1.996152 -5.045562 3.663703 6.408878 2.231508 -6.251247 -7.056741 -1.407604 3.418058 -10.525721 -4.218029 8.096028 -3.029737 6.753733 9.513965 0.183266 -4.340647 -2.572341 5.947151 0.673720 11.370700 12.035612 -6.274016 -0.176656 -1.123539 2.763737 1.406482 -0.912728 2.582428 -4.556669 2.723682 -6.842168 -0.327164 -1.974790 -2.264828 3.063614 7.274793 -11.612742 -0.798741 3.260258 1.121641 0.009120 0.194304 2.337356 5.982061 6.210248 1.257123 6.012276 4.113919 -0.685379 4.214321 0.252478 2.535261 0.197584 1.273336 -1.345184 -1.153762 -1.811906 -2.629265 0.176091 0.463790 8.030170 9.035107 0.432059 -4.475704 2.486402 2.558601 2.200533 2.583077 6.728383 -1.260187 2.926517 3.997181 -8.772979 1.255305 -11.055495 1.806924 -10.081010 -5.373687 1.937470 5.207107 3.791505 4.670182 -0.706375 11.993290 -1.326813 -5.349959 7.320958 9.140743 -6.672277 -1.765413 -0.950437 -3.207239 -0.747772 -2.805656 2.940137 2.259016 4.645438 -7.286057 -3.356089 0.619117 0.967320 -4.189687 -4.027106 0.136320 5.719906 -5.480433 -4.767039 -1.812133 5.979820 -0.713532 -12.348978 -4.006200 -5.078428 0.417872 1.605891 -6.713603 -6.325286 3.705192 0.897455 -1.877227 -2.870949 -1.443727 4.363392 5.454335 1.935787 -1.147122 5.521500 2.094950 12.210784 0.351017 -4.412115 1.312916 1.784126 -0.490256 4.623406 -2.452012 -1.998016 1.265772 -7.092981 0.983715 3.585834 -4.083925 -1.691862 1.225405 0.624883 -1.653077 23.455732 -2.273000 9.580288 7.896632 -6.579037 2.985789 -4.051113 2.397430 2.470042 4.326971 3.194214 -10.828056 -6.575175 7.893039 11.675956 3.999278 -7.739206 -0.311158 3.555779 1.349987 -2.362358 4.304206 1.253930 0.801907 -3.466490 -0.733601 4.865409 14.859737 -4.800898 0.291424 1.683932 3.530844 0.694701 -6.805533 -1.666507 -6.543180 -0.372671 3.650693 3.340367 3.346459 8.726557 -9.369618 7.009061 -0.793173 0.877095 7.126014 3.465738 -6.835174 -7.522411 -3.366356 3.018671 5.904782 -1.414002 -1.014327 1.388944 -9.143978 0.532205 2.395513 1.180418 -5.504666 7.931597 -0.197434 -3.253454 -2.148685 1.763058 -2.505595 -3.013007 -2.666451 6.520626 1.032826 -7.570895 6.027058 2.609111 -3.860790 0.482246 -1.923674 7.626273 -5.491037 -6.656459 4.869267 -3.899396 -4.355002 -2.122496 -2.200039 2.170518 3.419454 2.499553 -7.590637 -5.743265 8.289505 -2.662625 10.117308 4.139854 -2.218419 4.342757 -3.337216 -4.961678 -3.641311 -6.726936 0.810590 1.840371 -5.314937 -3.505589 -1.825935 6.338421 5.518690 0.412393 -5.993759 -0.500456 7.563525 -6.410350 -0.247468 2.505789 2.112417 -6.326211 2.512818 3.939083 -5.609120 2.990772 -5.203302 -1.151324 -6.428400 -3.925556 6.257737 -1.142974 2.844550 -1.189267 -1.180119 1.283323 3.155028 3.846651 0.840398 3.321863 10.143550 4.430248 -0.598622 -1.640017 -10.000329 5.724747 -7.713565 -7.370166 1.674786 2.610720 -5.114101 -2.704021 -0.361104 6.899496 5.349331 -6.130272 -4.906305 3.693306 +PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 0.073829 0.209346 0.349770 -0.078303 0.287939 -0.058664 0.139744 0.376807 -0.330383 -0.408999 -0.105574 -0.475727 -0.560609 0.403663 -0.004747 -0.152399 0.641313 0.257403 0.057893 -0.136372 -0.129129 -0.257630 0.466034 0.528645 -0.384815 0.220343 -0.145069 0.146054 -0.189342 0.602626 -0.079139 -0.641611 0.109916 0.280312 0.298334 -0.231455 -0.161922 -0.104147 -0.444721 -0.900273 -0.016213 0.645649 0.154926 -0.034911 0.193554 0.400980 0.662901 0.220059 -0.018597 0.329566 0.027931 -0.014121 0.267384 0.064608 0.221710 0.001055 0.234397 -0.333219 -0.475974 0.256348 -0.103356 -0.656807 -0.256567 0.247879 0.384705 -0.083267 -0.156639 -0.300120 -0.166170 0.121751 0.060569 0.167756 0.364606 0.065129 0.243220 0.287897 -0.021932 -0.257287 0.040223 -1.255752 -0.489349 -0.357889 0.837534 0.565407 -0.146156 -0.379483 0.530657 -0.133689 0.220642 0.150902 0.600571 -0.168836 -0.223583 -0.198023 -0.000783 0.230066 -0.160203 -0.201184 0.143303 -0.039493 -0.366134 -0.078971 0.340974 -0.177550 -0.196891 0.290584 -0.107159 0.401179 -0.696604 0.006836 -0.702769 0.031931 0.294940 -0.466112 0.054993 0.190272 -0.089470 0.399742 -0.232712 0.038674 0.265818 -0.003278 -0.210070 0.133169 -0.698839 0.600306 -0.152283 -0.063105 0.231338 0.264695 0.188506 0.111199 0.313710 -0.117971 -0.028382 0.245348 -0.050391 -0.032843 -0.097883 -0.159964 -0.042466 -0.300330 0.057465 -0.174451 -0.329583 -0.086941 -0.754443 -0.090967 0.183686 0.400609 -0.185381 0.276464 -0.002315 -0.334481 0.429617 0.009951 -0.187080 -0.044440 0.407603 0.304550 0.162145 -0.171919 0.131653 0.523492 0.248400 -0.208309 0.168533 -0.073356 0.075809 0.021034 0.366509 0.095065 0.226660 -0.263140 -0.058320 0.009411 0.676145 -0.039379 -0.580632 -0.042742 0.005554 0.170013 -0.126869 0.121484 0.096089 -0.043955 -0.053770 -0.104772 0.111107 0.441912 -0.882149 0.528049 -0.087844 -0.228322 0.374722 -0.127283 -0.018626 -0.521175 -0.064293 0.328824 0.653446 0.252933 -0.103790 -0.125799 -0.370046 -0.087141 0.010702 0.262358 -0.222179 0.334994 -0.097005 -0.326358 -0.165223 -0.609178 -0.000864 0.016330 -0.342527 0.105006 0.509098 -0.874622 0.389762 -0.015057 -0.185859 -0.132591 0.152848 0.020586 -0.343028 -0.470421 -0.047598 -0.288884 -0.791253 -0.179425 -0.272859 0.088190 -0.077898 -0.186627 0.009019 -0.321508 0.661143 0.068058 0.367028 0.297862 -0.009064 0.565798 0.815164 -0.358346 0.137938 -0.273578 0.298459 -0.628197 0.108816 0.351143 -0.313040 0.147607 0.574578 0.110214 -0.034400 -0.314347 0.459783 -0.070589 -0.222746 0.397589 -0.389945 0.170545 0.444212 0.458200 -0.355874 -0.191924 -0.474056 -0.025169 -0.005257 -0.128069 0.083753 -0.498073 -0.086268 0.299121 -0.164723 -0.436254 0.109395 -0.131130 -0.323666 -0.181948 0.593096 0.382026 -0.418833 0.637575 -0.256395 0.265716 -0.434865 -0.127212 -0.233810 0.109335 -0.182976 -0.015852 -0.004455 -0.022484 0.029066 -0.207411 -0.317313 0.114346 +PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -0.890985 -1.073780 -0.382568 -1.509536 0.768655 0.979314 0.539523 -0.883454 -2.201616 -0.973174 0.810265 -2.613557 -1.153641 2.247518 -0.718654 1.528901 2.761459 0.461073 -0.945137 -0.651132 1.720206 -0.621129 2.764957 3.249875 -1.945221 0.018719 -0.354450 1.085279 0.608224 0.420380 1.017770 -1.518528 0.475018 -1.528846 0.459120 -1.273587 -0.400002 1.286127 1.327021 -3.605432 -0.103478 1.664834 0.845950 -0.044834 0.185298 0.727177 1.506747 1.746531 -0.380319 1.754138 1.460597 -0.026268 1.099832 0.074085 0.402906 0.077818 -0.000128 -0.409397 -0.420465 -0.105402 -0.547449 -0.762246 0.433303 2.143007 2.674986 -0.223276 -0.981262 0.383067 0.588278 0.685293 0.986741 1.599074 -0.233223 0.132535 1.340213 -2.106379 0.108480 -3.703804 0.802034 -4.107259 -1.447951 0.204216 2.180313 1.648134 0.850385 -0.596855 3.173383 -0.647070 -1.125489 2.458524 2.271590 -1.318721 -0.575456 -0.784298 -1.184207 0.398662 -1.019908 0.070850 0.644090 1.338488 -1.834242 -0.978046 0.232464 0.220908 -1.212111 -1.003043 -0.182694 1.649280 -2.116922 -1.291358 -0.884400 1.730090 0.124980 -3.221883 -0.676977 -1.706705 -0.277064 0.433876 -1.600387 -1.166716 0.849736 0.098751 -0.595610 -0.428447 -1.346209 1.546269 0.883611 0.459977 -0.195536 1.117508 0.372936 2.562717 0.213251 -1.401287 0.131584 0.865083 -0.322286 1.013736 -1.236077 -0.758990 1.189705 -1.927264 -0.275647 0.351041 -1.222738 -0.680906 0.346086 -0.123741 -0.145269 6.286807 -0.330902 2.424319 2.092971 -1.588089 1.410053 -0.334023 0.624192 1.017869 1.468873 0.751103 -2.427405 -1.732515 1.620495 3.040865 1.195480 -1.663478 -0.629160 0.825055 0.478649 -0.103037 1.082047 0.211062 0.054616 -1.230952 -0.245124 0.983832 3.638892 -0.736522 0.327226 0.203327 1.608184 -0.627907 -2.092134 -0.244653 -2.172248 -0.045179 0.552135 0.502830 1.068024 2.443220 -3.284211 2.071606 -0.251753 0.458439 1.410301 0.493702 -1.608011 -3.430333 -0.720894 0.657834 2.052795 -0.472333 0.287108 0.689722 -2.534903 0.102437 0.431979 0.454718 -1.537545 2.121333 -0.322564 -0.713778 -0.709030 0.315095 -1.014212 -0.839067 -0.650877 1.666065 1.015717 -1.820580 1.508759 0.144528 -1.034866 0.097143 -0.046807 1.746015 -1.894730 -1.919472 1.204109 -0.740781 -1.575751 -0.940967 -0.626137 0.939799 0.490338 -0.304010 -1.498505 -1.955039 2.242564 -0.927353 2.477588 1.183473 -0.809399 1.355859 0.279998 -0.977257 -1.128432 -1.327606 -0.100027 -0.306912 -1.039487 -1.056402 -0.570173 1.558843 1.822014 0.252851 -1.341780 0.182684 2.504756 -1.108634 -0.448571 0.777389 -0.162939 -1.161388 1.092691 1.181469 -2.074280 0.551627 -1.924737 0.220608 -0.991398 -0.875212 1.915103 -0.556868 0.793505 -0.070826 -0.184085 -0.025237 0.933661 1.188805 -0.255559 0.531741 3.186452 1.144724 -0.187219 -0.016251 -2.561641 1.215007 -2.287365 -1.642114 -0.265888 0.889901 -1.411980 -0.278703 0.046512 1.863415 1.506917 -0.963506 -1.248066 0.934718 +PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -3.092873 -3.368662 -1.249037 -5.389799 2.608332 5.101229 1.480214 -4.424821 -7.036022 -2.200195 2.567480 -8.442773 -2.637795 6.972772 -2.445734 5.444260 8.258113 0.716818 -3.914720 -1.619496 5.651563 -0.340065 8.528589 9.897901 -5.192526 0.107222 -1.106826 3.082961 1.255663 1.266345 2.747657 -4.572731 0.911522 -5.336485 0.370152 -3.071195 -2.218223 3.883621 5.543705 -10.572225 -0.239179 4.793762 1.609459 -0.335526 0.636320 -0.517844 4.694532 4.923999 0.459857 4.895428 3.752659 0.620327 3.435928 -0.150518 2.490335 1.482563 1.193611 -1.819130 -0.361852 -1.153405 -2.381144 0.277429 1.465369 6.782659 7.184119 0.007331 -3.876748 1.229537 2.266287 1.872059 2.669578 5.529382 -2.459006 1.442156 3.126257 -7.546635 1.627776 -9.359351 3.144014 -7.954397 -4.267242 1.987356 4.823143 5.804384 3.545281 -1.077863 10.152379 -3.435211 -4.430606 6.932223 6.902990 -4.341282 -1.034255 -1.477098 -3.885521 -0.359822 -2.036064 0.286070 0.295402 4.449033 -5.686145 -2.672781 0.412317 1.196717 -3.711881 -2.800126 0.006587 5.169613 -5.793870 -4.396718 -1.101872 6.648117 -0.495514 -9.768104 -4.516181 -5.578051 -1.342861 0.791924 -6.169089 -5.359888 3.463384 0.855732 -1.788465 -1.773275 -2.212786 3.799214 3.591749 1.419278 -1.538631 3.560970 1.199897 9.208420 0.171974 -4.111543 1.484962 2.251664 -0.061408 3.221809 -2.322637 -1.887679 0.331572 -5.618889 -1.118989 2.818533 -3.554793 -1.294813 -0.002334 0.062666 -1.569905 22.296016 -2.157641 7.988750 6.769372 -5.170231 3.143518 -1.312606 1.945249 2.159773 3.534997 3.138901 -9.542734 -5.392169 6.320711 9.739140 3.519510 -4.952586 -0.911541 2.921105 0.877436 -0.103627 3.793563 -0.047551 0.607499 -3.869313 -1.098851 2.962038 12.562773 -2.694529 0.107020 1.092170 3.603010 -1.334265 -5.739097 -0.931899 -6.940705 -0.079008 2.828591 1.494467 3.375724 7.438823 -8.407249 6.422896 -0.972408 0.454078 5.693460 2.165382 -4.867171 -7.939893 -3.783718 2.076574 6.106456 -2.275776 0.086985 1.471659 -7.782708 0.356393 1.742897 1.147523 -5.354298 6.981596 -0.092764 -2.835525 -1.349727 1.692369 -2.932649 -2.817947 -2.604614 5.234820 1.176573 -4.468226 4.902030 2.483722 -2.158413 0.841871 -0.465026 6.006423 -4.632189 -5.663583 4.349362 -1.971778 -3.624695 -1.196893 -2.279562 2.809853 3.214953 0.620276 -6.245645 -5.184075 6.329409 -2.407445 8.879746 3.577382 -2.600661 3.020524 -0.759875 -2.521346 -2.954591 -5.065904 -0.071493 1.248641 -3.592299 -5.033305 -1.951944 5.138439 4.496981 0.538737 -4.896185 -0.444324 7.298298 -3.799961 0.385665 1.630337 -0.611748 -5.314008 1.713969 3.213707 -4.948675 2.463060 -5.162819 0.262544 -5.061832 -2.295962 5.999287 -0.625710 2.446770 -0.723778 -1.084774 0.344923 2.213835 4.072765 -0.231542 2.957282 8.909838 2.071570 0.805778 -0.799841 -7.899469 4.205456 -6.314928 -5.137029 -0.207103 2.360663 -4.803010 -2.102879 -0.500085 6.447172 5.109327 -2.986452 -3.002449 3.098360 +PE-benchmarks/biconnectivity.cpp__main = 0.591521 0.591433 3.302240 -2.097784 0.542471 -3.523291 0.187116 5.418983 -3.287934 -6.447784 -0.444617 -4.688488 -5.955963 2.327020 -0.457290 -5.507256 4.469012 1.457540 0.575085 -2.345484 -1.539223 -2.141013 1.803058 4.743366 -4.093954 1.243196 -2.586647 2.484781 0.381855 2.262135 4.640385 -5.505806 -1.856520 6.454590 5.624722 -1.219161 -1.623195 0.043204 -7.359092 -7.911939 -0.868121 8.392190 1.105008 0.742173 3.449726 6.532732 4.655423 0.917049 -2.461336 2.488212 1.739866 1.209925 2.631778 -1.166722 -0.699235 -4.097040 -0.522764 -3.132755 -2.318071 3.615032 -0.669862 -4.824419 -1.197456 2.513921 2.919708 -1.378396 -1.981537 -4.870864 1.155006 1.965568 0.649200 2.384979 4.659849 -0.050496 3.000497 4.321649 -1.324642 -5.450535 4.343222 -13.979911 -3.874900 -2.533899 11.013377 8.037327 -6.325929 -6.417912 5.200820 -0.993176 1.305692 6.069839 3.681008 3.910727 -0.739198 -2.731220 -2.032009 2.888224 -0.426348 -1.711865 -0.180908 3.860555 -2.359852 2.148052 -0.797056 -4.680568 -1.918503 3.727122 -1.779016 3.055458 -5.735634 4.540113 -5.428308 4.047263 7.258166 -3.533163 -0.227722 -0.812187 -2.168773 2.506499 -2.418045 6.330617 1.331458 -3.552928 -2.272613 6.579081 -11.216295 6.054207 -1.768396 -0.919102 0.534570 4.161805 1.467564 -4.436750 -0.298786 -1.498546 -0.885903 3.479377 0.666763 -1.142379 -1.698730 0.479371 4.505258 -0.045911 -0.540264 -5.551477 -2.142825 -4.372366 -9.336190 -3.345080 0.740454 4.426492 -1.482590 2.488801 0.401046 0.185656 4.695010 3.005051 -0.567621 0.794013 3.721957 2.803628 3.784439 -0.949985 1.139913 4.713412 1.036790 0.223936 2.830553 2.622674 -0.477501 -0.466265 4.600812 -0.504146 0.793838 -0.514982 -0.487527 0.404409 2.238281 3.486560 -3.071981 -3.355839 4.553034 2.277292 1.949051 3.268456 2.282096 -0.556903 1.342466 -0.107438 2.296852 3.193439 -9.324726 3.733889 2.598956 1.859032 -0.413670 -1.825866 0.546016 -9.490163 -0.433500 1.376768 4.970817 1.377601 -1.321023 -0.816423 -2.977501 0.089572 1.255753 2.626976 -3.310624 3.382178 -2.457947 0.665807 -0.327023 -6.284678 -3.363517 3.443284 -4.358480 0.500205 4.002285 -4.915231 2.403800 -1.455295 -0.844069 -4.948215 0.375228 -0.339714 -2.765401 -2.634518 -1.998006 -2.772202 -10.878388 -3.526084 -3.653301 0.419489 -2.451304 -2.206379 -0.156648 -2.858576 7.841819 -1.160401 3.858734 2.550221 -1.639106 5.650812 9.557923 -1.254514 1.973160 -3.856592 5.052009 -4.346398 1.594405 4.927295 -1.861477 -2.051310 3.722408 -0.908267 -1.100722 -0.699305 3.822122 2.831031 -3.444663 0.749297 -7.859208 3.479857 6.934519 1.987837 -3.153250 -0.282953 -7.931872 1.450512 0.334231 0.477707 1.732612 -3.752436 -1.148491 2.153742 -1.350482 -4.250603 1.189988 0.151256 -4.217704 -0.480684 5.822760 3.514862 -2.025447 6.795037 -3.082376 3.104670 -2.626828 0.023292 -4.839636 -0.136131 1.122042 -0.620204 -2.510586 -0.466402 2.188553 -1.528270 -3.979710 5.348053 +PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -3.450099 0.052963 2.249532 -7.511304 5.121575 9.300576 1.990171 -5.705738 -6.901412 -4.899215 2.474485 -11.780884 -7.954100 9.667650 -4.185614 4.627324 12.232431 -0.813738 -4.143231 -3.619443 7.278714 1.307063 14.765335 15.114927 -11.396774 0.590654 2.845905 6.447772 4.228903 1.934642 2.947931 -7.436113 2.358769 -5.651002 1.233863 -3.274755 -2.210371 0.009477 4.489240 -16.337766 -1.660155 3.769980 -4.124827 0.186931 1.064893 1.980303 11.562960 8.212464 -1.505167 5.886929 7.057181 1.912744 3.643337 0.001475 1.813397 -1.594845 2.965729 -2.361137 -0.737716 -1.632228 -1.741471 -3.644502 -0.233486 11.770261 12.102098 0.090807 -4.562203 2.471443 2.019843 1.973123 1.398099 8.723912 0.138485 6.774922 6.890732 -10.779574 1.919262 -15.382643 2.425693 -14.378719 -8.243883 -1.723970 6.536915 5.588295 4.831567 -1.189165 15.455584 -1.350157 -3.079942 10.850154 13.069061 -7.848177 -1.664895 -3.594595 -4.974989 1.771577 -4.968468 3.709738 -1.866861 4.497454 -8.723074 -5.589923 1.321233 0.835388 -6.636135 -3.993769 -1.307990 7.707268 -9.762723 -4.677471 -5.426135 5.571265 -0.289667 -17.145779 -8.596549 -5.553207 6.340426 1.507592 -5.662112 -7.959818 3.299649 3.683811 -1.465529 -3.853503 -2.817009 6.640383 8.371086 1.736251 -0.380438 5.743766 4.782842 14.241957 4.185952 -3.803085 -0.524952 2.041344 -1.692652 3.059717 -3.322930 -0.046561 1.685524 -7.579664 -0.084519 7.200816 -5.140419 -4.192236 0.959642 -2.884943 0.607136 36.106955 -2.267942 10.322662 8.723760 -9.683471 1.919820 -4.314948 -0.750374 3.864882 4.890501 7.288146 -15.572500 -7.164761 8.687471 14.862340 4.790833 -10.204927 1.331459 3.870829 0.346705 -4.120686 5.771732 1.037461 0.885344 -5.169944 -1.652148 8.442716 17.737692 -5.205914 -5.907786 1.848017 4.311138 -0.010848 -7.423835 -0.720833 -4.125447 -0.278954 7.088799 2.158734 5.212286 11.329146 -15.939071 8.462328 1.077565 -0.842603 7.893166 3.163297 -7.397705 -7.144205 -0.273233 6.426739 7.104669 -1.137034 -0.020257 -0.022919 -12.172621 0.133723 4.100768 2.598066 -7.316291 10.368757 1.582772 -5.626454 -5.837497 -0.684040 -2.842273 -2.193912 -5.176863 7.291836 -1.729385 -14.680287 10.368451 1.552582 -4.972224 0.050705 -5.385583 10.574298 -10.014265 -10.786797 6.334329 -4.562062 -7.827918 -2.555887 -3.541314 3.985615 5.818591 3.127526 -10.754500 -8.821879 9.504620 -2.153802 10.998844 6.211239 0.283094 9.219407 -4.360731 -4.726717 -6.282236 -8.209568 5.878711 2.488305 -7.637513 -6.230574 -3.602672 7.373867 10.424422 -2.644554 -6.094535 -1.745471 9.224957 -10.229594 -2.396722 2.448702 6.078585 -8.321413 3.703422 4.482834 -6.424670 1.552478 -8.110419 -1.856154 -6.369382 -7.300218 7.361105 -3.776502 3.149519 3.557972 -1.743300 -1.583250 4.770766 2.797553 0.921206 3.057517 11.281698 11.211360 -3.827947 -0.544363 -13.045610 7.592866 -12.443701 -11.146817 2.447097 -0.284442 -2.886466 -3.459524 -1.791726 8.025276 6.817984 -5.785170 -4.414086 4.122795 +PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/bfs.cpp__main = 0.380535 0.225453 1.130708 -0.505376 0.205138 -1.032122 0.121047 1.547025 -0.864917 -1.366209 -0.107199 -0.924759 -1.392184 0.636036 -0.050718 -1.521086 1.200940 0.526292 0.168378 -0.738233 -0.590297 -0.356519 0.571083 1.095069 -1.052779 0.452797 -0.546574 0.696151 0.291805 0.767547 0.822013 -1.127905 -0.324949 1.673065 1.156431 -0.407319 -0.322389 -0.313520 -2.041400 -1.983807 -0.055514 1.738071 0.250225 0.106247 0.846342 1.952994 1.170499 0.309552 -0.553198 0.705801 0.456273 0.227693 0.483230 -0.156928 -0.034395 -0.964171 0.356611 -0.643543 -0.796398 0.922133 0.033877 -1.522164 -0.521173 0.538716 0.729401 -0.297489 -0.369201 -1.298701 0.259941 0.504363 0.301116 0.306332 1.161563 -0.012432 0.727247 1.298655 -0.283719 -1.127549 0.745252 -3.811505 -1.013640 -0.752290 3.072971 1.269905 -1.637308 -1.178964 0.952966 -0.060144 0.556467 1.187517 0.818822 0.951665 -0.378665 -0.493021 -0.352129 1.034220 -0.200043 -0.371269 0.238301 0.761223 -0.564756 0.639130 0.113708 -1.106921 -0.445268 1.268650 -0.312445 0.760609 -1.590161 1.195893 -1.380408 0.809672 1.777308 -0.771187 -0.199747 0.027360 0.251367 0.646101 -0.390050 1.695022 0.248659 -0.794073 -0.614083 1.647774 -2.547000 1.321882 -0.573015 -0.083923 0.290105 0.849720 0.406007 -1.124726 0.217677 -0.356812 -0.177451 0.800831 0.095990 -0.293284 -0.410017 0.002065 0.896603 -0.030336 0.433959 -1.352152 -0.590216 -1.215821 -2.204823 -0.472512 0.357813 0.577861 -0.197565 0.575698 0.022499 0.070457 0.592796 0.609753 -0.223346 0.224376 0.902624 0.462109 1.465053 -0.110926 -0.060054 1.008432 0.371946 -0.232312 0.826551 0.363289 -0.256219 0.005798 1.028325 -0.096345 0.282612 -0.176755 -0.147415 0.095887 0.350403 0.904577 -1.515503 -0.882336 0.781295 0.517130 0.711339 0.852591 1.254334 0.083892 0.257863 -0.178747 0.575554 0.698950 -2.738682 0.965978 0.652701 0.312445 0.022326 -0.332651 0.091180 -1.778179 -0.043110 0.316507 1.423789 0.572363 -0.609032 -0.012392 -0.639022 -0.122197 0.254474 0.515903 -0.544357 0.603824 -0.282068 0.106020 -0.127192 -1.784427 -0.300050 1.161182 -0.988411 0.069032 0.637765 -2.060335 0.494428 -0.555107 -0.366873 -1.191745 0.013078 -0.252062 -0.757017 -0.590072 -0.677589 -0.563015 -2.791553 -1.022650 -0.830525 0.162901 -0.570962 -0.046515 0.140859 -0.478357 1.864158 -0.296443 0.732479 0.661556 -0.402682 1.611492 1.999593 -0.261026 0.451892 -0.581325 1.415693 -1.367478 0.415063 1.747740 -0.611934 -0.497865 0.968516 -0.255873 -0.114325 -0.324143 0.957438 0.452809 -1.050427 0.332959 -1.434533 1.028613 2.037497 0.638751 -0.984514 -0.139646 -1.624389 -0.139188 0.413007 0.086728 0.448798 -0.873695 -0.128035 0.549816 -0.142339 -1.160062 0.310840 -0.450584 -1.026452 -0.218586 1.245181 1.543437 -0.894560 1.873219 -0.596423 0.766768 -0.677982 -0.031385 -1.034685 -0.365251 0.209945 0.135434 -0.730053 -0.213019 0.355302 -0.500954 -1.016178 1.337470 +PE-benchmarks/bfs.cpp__Graph::BFS(int) = -1.438454 0.290338 2.926900 -4.246134 3.620395 3.299512 1.108556 -1.060722 -3.870446 -4.082706 0.659933 -6.984616 -6.231953 5.293403 -2.814381 0.733344 6.927747 -0.119972 -1.248435 -2.369109 3.189537 -0.450320 7.979239 7.798898 -7.323918 0.258042 -0.100489 4.584402 2.036471 2.956473 2.652587 -5.168378 0.376964 -0.265064 3.240127 -2.038373 -0.945538 0.096970 -0.839414 -10.032926 -1.368283 5.368650 -1.396688 0.942549 2.170629 3.922021 6.922768 4.358471 -1.952952 3.641958 3.793585 0.986628 3.382344 0.018622 -0.229914 -2.177606 1.961156 -2.521217 -2.006587 0.462199 -1.578086 -3.883814 0.196758 6.585120 7.582964 -0.678401 -2.388412 -0.098572 0.969523 1.793584 1.136891 5.273822 1.460270 3.550286 4.815247 -2.660693 0.963970 -8.343997 2.220526 -10.534675 -5.078162 -2.713720 5.642453 5.960193 0.554263 -3.299841 9.280015 -0.101088 -0.745053 7.090840 7.320130 -2.566957 -0.955872 -3.724435 -3.142956 1.220191 -2.986878 0.401237 -0.760252 3.803023 -4.855733 -2.226283 -0.146356 -1.162517 -3.473629 -0.249590 -2.084121 4.886411 -6.503451 -1.503789 -5.027037 3.460568 1.346115 -9.725303 -3.136774 -2.706127 1.694049 1.409403 -1.832233 -1.338013 2.186851 1.449143 -1.523792 0.455603 -6.090527 6.205450 3.537279 0.066321 0.016868 4.247834 1.807174 4.430465 2.222676 -1.858639 -1.624976 2.298743 -1.132010 0.956103 -2.520289 0.596731 3.184842 -3.905322 -1.377483 1.599685 -2.710007 -2.768882 -3.751306 -3.054762 1.392678 17.246677 -1.941822 5.293085 3.402369 -5.040555 3.443801 -0.068697 -0.050003 2.134274 3.484940 4.387394 -6.430356 -3.943564 4.530200 7.890020 2.378357 -4.785231 1.652100 2.225015 0.420533 -2.092825 3.560579 1.499831 -0.388825 -2.894922 -0.604704 2.626070 9.494705 -1.474485 -4.084853 0.520853 3.435593 -0.148542 -3.031037 0.284312 -0.988488 -1.132135 2.821998 1.030201 2.660572 6.419615 -10.193377 5.211445 1.743656 0.101427 4.286317 -0.816204 -2.697120 -6.835369 -0.492566 3.702080 4.349968 0.034568 -0.854960 -0.471658 -6.600499 1.173167 1.850081 2.887044 -3.838983 5.951962 -0.681783 -2.881821 -3.553168 -3.079965 -2.497170 0.107290 -4.063200 3.287073 1.049202 -8.146674 5.651959 -0.547318 -2.863772 -0.920039 -1.400308 4.688390 -5.488612 -6.024254 2.173205 -3.423312 -7.393871 -3.542438 -2.445970 1.678684 1.895184 0.044950 -5.458200 -5.801017 6.251973 -1.926584 5.596374 3.699953 0.191685 6.380038 2.874088 -3.312451 -2.572093 -5.422093 3.873299 -0.078754 -2.489788 -0.708090 -2.049710 3.190392 6.393370 -1.604347 -2.273410 -1.466549 6.106841 -3.257136 -2.674549 2.003642 -1.211242 -2.647519 3.567674 3.094391 -3.585995 -0.244490 -6.121420 0.213574 -2.974847 -2.907784 3.777969 -3.766298 0.475846 2.320362 -0.848942 -2.814944 2.188138 1.445309 -1.364277 0.366877 8.476471 6.311324 -2.603337 2.516644 -6.623891 4.720738 -7.115025 -4.509377 -1.022496 -0.868709 -0.252593 -0.662672 -0.667847 3.596119 4.018931 -3.463428 -3.167749 2.359031 +PE-benchmarks/partition-problem.cpp__main = -0.212576 -0.326734 0.302544 -0.491865 0.416117 -0.148770 0.320420 0.218180 -1.078349 -0.963481 0.375703 -1.578452 -1.060532 1.095303 -0.253179 0.180897 1.379790 0.294210 -0.284819 -0.370249 0.315840 -0.432350 1.214291 1.466097 -0.934400 0.150372 -0.563099 0.477483 0.089541 0.359165 0.678293 -1.053843 0.130920 0.061477 0.533269 -0.282328 -0.228831 0.337458 -0.131341 -1.850763 -0.064283 1.468691 0.773511 -0.046729 0.304160 0.729827 0.954364 0.773414 -0.195930 0.846093 0.635000 -0.220392 0.695230 0.033662 0.126340 -0.490627 0.147562 -0.616244 -0.720049 0.306456 -0.250615 -0.888933 -0.170700 0.894418 1.256860 -0.155776 -0.461914 -0.298712 0.213583 0.554729 0.465539 0.643932 0.364647 0.022716 0.706088 -0.083081 -0.158869 -1.692893 0.412145 -2.593930 -1.036675 -0.097910 1.957716 1.506485 -0.214697 -0.644559 1.410418 -0.162810 -0.324985 1.006705 1.293166 -0.190215 -0.483807 -0.435779 -0.452287 0.489061 -0.548819 -0.056223 0.359805 0.744286 -0.959351 -0.063579 0.237383 -0.305124 -0.492440 0.171841 -0.169522 0.926285 -1.164615 -0.136899 -0.819762 0.803543 0.778528 -1.492290 0.115176 -0.351966 -0.578961 0.676631 -0.781060 0.224199 0.488402 -0.442422 -0.506994 0.353472 -1.708400 1.151006 -0.025496 0.259872 0.147985 0.807220 0.389769 0.446681 0.132078 -0.638757 0.053756 0.403964 -0.013369 0.498690 -0.484052 -0.444875 0.483906 -0.757324 0.102457 -0.416200 -0.673219 -0.672267 -1.257333 -0.083325 0.026414 1.548789 -0.198622 1.161727 0.732213 -0.564513 1.173633 -0.014177 0.125290 0.234869 0.829881 0.413794 -0.011268 -0.708937 0.760995 1.466912 0.585355 -0.598501 -0.040021 0.500647 0.266948 -0.126393 0.851964 0.320580 0.290334 -0.592330 -0.107122 0.486104 1.411535 -0.038955 -0.503803 -0.050701 0.662502 0.277834 -0.736387 0.131876 -0.440154 -0.043800 0.181663 0.226020 0.415859 1.178331 -1.928413 1.145320 0.264438 0.275055 0.830356 -0.075810 -0.710549 -1.943939 -0.271192 0.407579 1.155516 0.182268 -0.285544 0.152370 -1.114288 -0.003835 0.145949 0.275759 -0.624980 0.952413 -0.558628 -0.168533 -0.407386 -0.734459 -0.501782 -0.051900 -0.644979 0.671658 1.154727 -1.016141 0.772830 -0.137783 -0.593859 -0.488204 -0.007719 0.551835 -0.776934 -0.861593 0.120131 -0.860239 -1.700277 -0.834003 -0.455662 0.119599 -0.013324 -0.268005 -0.198754 -0.706373 1.489057 -0.374980 1.204413 0.614687 -0.393157 0.849263 1.662611 -0.628047 -0.046359 -0.577460 0.352188 -0.800941 -0.293777 0.046528 -0.394915 0.450799 0.897869 0.071035 -0.547553 -0.372596 1.115949 -0.245472 -0.679180 0.599342 -1.128287 -0.045230 1.058981 0.782361 -1.031558 0.208327 -1.320399 0.171193 -0.392414 -0.371147 0.586646 -0.432981 0.131421 0.072754 -0.239631 -0.387464 0.328441 0.316805 -0.539542 -0.093974 1.669948 0.599032 -0.425680 0.762595 -1.212381 0.690503 -1.086082 -0.683144 -0.260128 0.428842 -0.658866 -0.122819 -0.048583 0.454335 0.511173 -0.669135 -1.029754 0.814524 +PE-benchmarks/topological-sorting.cpp__main = 0.331491 0.113779 1.020951 -0.470204 0.204815 -0.953760 0.135333 1.440374 -0.873364 -1.208883 -0.097239 -0.791520 -1.209484 0.622266 -0.039713 -1.321212 1.160397 0.583933 0.148786 -0.672761 -0.518260 -0.378100 0.540453 1.032386 -0.930639 0.414982 -0.558675 0.641561 0.221261 0.772961 0.703547 -1.030533 -0.256763 1.460832 1.019841 -0.478996 -0.294112 -0.184382 -1.832047 -1.871248 -0.012711 1.582712 0.258193 0.088544 0.774033 1.769277 1.006841 0.292487 -0.470778 0.725599 0.389358 0.199527 0.443798 -0.115398 0.008849 -0.752136 0.302025 -0.599680 -0.764229 0.857067 0.001606 -1.419998 -0.446163 0.457079 0.672243 -0.282873 -0.333802 -1.206479 0.222975 0.465972 0.352282 0.241108 1.017992 -0.120087 0.647391 1.150787 -0.286020 -1.033671 0.659476 -3.508333 -0.923990 -0.669156 2.863102 1.153162 -1.466276 -1.067429 0.866205 -0.118914 0.493708 1.061637 0.711596 0.822047 -0.374081 -0.443030 -0.297778 0.934315 -0.181462 -0.415668 0.256314 0.681512 -0.523595 0.554322 0.162914 -0.984001 -0.392480 1.128677 -0.271430 0.757613 -1.501510 1.006906 -1.277299 0.802299 1.580244 -0.665281 -0.138353 0.001561 0.233610 0.616464 -0.393434 1.526614 0.265116 -0.703729 -0.574175 1.482319 -2.267423 1.218435 -0.576157 -0.095635 0.263236 0.752000 0.287841 -0.982115 0.227309 -0.362394 -0.137645 0.790586 0.076279 -0.249687 -0.421169 -0.048936 0.770126 -0.081911 0.395891 -1.254349 -0.573285 -1.071038 -1.973219 -0.343359 0.326362 0.510612 -0.175602 0.541682 0.044996 0.065081 0.573684 0.577108 -0.131803 0.230389 0.865019 0.349041 1.305858 -0.124883 -0.102089 0.914685 0.381112 -0.231842 0.678049 0.254804 -0.199660 0.085609 0.918325 -0.081952 0.269840 -0.192651 -0.126520 0.003033 0.388658 0.809037 -1.372448 -0.805095 0.680016 0.396924 0.583180 0.746649 1.090393 0.076110 0.209560 -0.182494 0.507369 0.661659 -2.507244 0.920056 0.497292 0.279425 0.035643 -0.277775 0.097316 -1.651179 -0.124599 0.243396 1.406207 0.530960 -0.531476 0.060623 -0.592167 -0.118249 0.208366 0.481598 -0.485160 0.547169 -0.239104 0.067516 -0.064581 -1.600214 -0.259706 1.013147 -0.863284 0.073664 0.626560 -1.907578 0.395101 -0.500476 -0.338597 -0.989922 0.112395 -0.205053 -0.675726 -0.550137 -0.581362 -0.445782 -2.518134 -0.943907 -0.737898 0.201699 -0.543644 -0.072074 0.169497 -0.462093 1.702304 -0.268812 0.684371 0.601165 -0.437465 1.478402 1.833901 -0.259898 0.415950 -0.529299 1.234818 -1.314398 0.434144 1.583582 -0.564412 -0.414799 0.894574 -0.136645 -0.110925 -0.300212 0.970443 0.394275 -0.911155 0.367274 -1.292934 0.987297 1.881975 0.647636 -0.984623 -0.148344 -1.431957 -0.099991 0.422428 0.132891 0.463077 -0.802572 -0.075813 0.435328 -0.077519 -1.053673 0.279935 -0.387056 -0.942138 -0.216581 1.203974 1.409883 -0.794191 1.722481 -0.496282 0.683897 -0.601733 0.029494 -1.008031 -0.278017 0.112131 0.189957 -0.643021 -0.150651 0.318858 -0.431399 -0.919324 1.170711 +PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -0.632807 1.067025 1.873390 -2.006360 1.752780 2.158433 0.647145 -0.206732 -1.859307 -2.631354 0.122500 -4.102222 -3.981059 3.078281 -1.197673 -0.043070 4.357156 0.097381 -0.667710 -1.221665 1.373422 -0.041850 4.666328 4.941164 -4.181662 0.449653 0.569835 2.306621 0.957620 1.578810 0.992824 -3.445253 0.574862 0.047562 1.576100 -1.034293 -0.602037 -0.728213 -0.836337 -6.089267 -0.733999 2.631858 -1.169457 0.079886 0.863386 1.661713 4.866747 2.592074 -0.894458 1.520960 2.018405 0.708817 1.477047 0.035600 0.304248 -1.328143 0.884243 -1.565200 -1.197023 0.307450 -0.429999 -2.809417 -0.753898 3.779435 4.111128 -0.053725 -1.282199 -0.227598 0.155875 0.715651 0.066622 2.663678 1.629059 2.426234 2.587534 -1.495511 0.280151 -4.628808 0.906098 -6.385623 -3.242367 -1.959097 3.507970 3.220112 0.388056 -1.882944 5.120635 -0.173761 0.230857 3.617709 4.918469 -2.047889 -0.842553 -2.049117 -1.388669 1.335735 -1.871612 0.813843 -0.783307 1.183145 -2.932907 -1.657133 0.599636 -0.518656 -2.196410 -0.169686 -0.867160 2.748533 -3.768519 -0.562869 -3.436706 1.121264 1.060138 -5.569170 -2.020447 -0.952200 1.411905 1.241702 -1.414245 -1.380519 1.051581 0.891428 -0.715730 -0.360073 -3.369332 3.438709 1.952967 -0.061741 0.480445 2.267417 1.915275 3.108139 1.640942 -0.962797 -0.675207 1.045832 -0.830172 0.219844 -1.318844 0.122471 1.248046 -2.187689 -0.491405 1.359009 -1.908056 -1.618566 -2.062753 -1.715709 1.077951 10.105894 -0.837069 2.738830 1.874552 -3.170497 1.911157 -0.838330 -1.014024 0.893789 2.065598 2.926905 -3.723933 -2.111587 2.361858 4.863779 1.564297 -2.664549 1.229245 0.985199 0.143749 -1.695009 2.364923 0.659089 0.371946 -1.670124 -0.526554 2.675792 5.415854 -1.155950 -2.882088 0.233857 1.476538 0.727445 -1.768421 0.331793 -0.107613 -0.361256 1.887284 0.422739 1.717958 3.829730 -5.889014 3.102165 0.803367 -0.501873 2.404044 -0.082140 -1.750358 -2.817175 0.667109 2.777608 2.796398 0.488299 -0.288741 -0.726560 -3.920810 -0.079255 1.263285 1.594805 -2.283470 3.326541 -0.091479 -1.957374 -2.400407 -2.146393 -1.188172 -0.231285 -2.451912 1.884921 0.698499 -5.388178 3.927885 -0.044764 -1.643103 -0.785669 -1.695788 2.589563 -3.749596 -3.931450 1.274346 -2.035335 -4.293608 -1.333979 -1.553320 1.145211 1.123765 0.134408 -2.877242 -3.260722 4.065423 -0.270929 3.299262 2.225864 0.580781 3.829387 1.624186 -1.935943 -1.348239 -3.088540 2.772145 -0.485678 -1.949462 -0.578287 -1.512624 1.892020 4.315167 -1.118077 -1.493146 -1.098421 3.087679 -2.564239 -1.800122 1.257497 0.281477 -1.536573 1.950544 1.886947 -2.283365 -0.393799 -3.641424 -0.282843 -1.374983 -2.620770 1.661130 -2.577401 0.392527 2.217157 -0.944405 -1.697215 1.530825 0.356805 -0.668987 0.256863 4.210010 3.846139 -2.072146 1.607778 -4.155495 2.667662 -4.448255 -3.265289 0.091462 -0.361553 -0.319401 -0.909651 -0.466780 1.608945 1.774811 -1.778943 -1.936573 1.348201 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -1.577743 -1.239889 0.591405 -2.914381 2.941198 1.970937 0.980794 -1.931428 -3.381469 -1.907217 0.824769 -4.727387 -3.193773 4.086935 -2.239006 2.602309 4.858419 0.007550 -0.978042 -1.801768 3.522566 -0.738135 5.810263 4.933403 -4.722230 -0.213792 -0.086344 2.604986 1.295865 1.645243 2.248811 -3.397602 0.362356 -2.199081 1.793833 -2.090994 -0.734016 1.702416 2.033035 -7.092404 -1.023289 3.618019 -0.098818 0.764217 1.633376 2.860540 3.431968 3.368786 -1.486883 4.019931 2.703887 0.478667 2.862041 0.044034 -0.689828 -0.132396 1.375195 -1.358672 -1.267819 0.305397 -1.827294 -1.202555 1.404401 4.611479 5.755457 -0.985340 -2.115502 1.415403 1.217891 1.497334 1.291769 4.314794 -0.322462 1.893514 3.408912 -3.795969 -0.153646 -7.652967 1.586622 -7.249553 -3.223872 -0.828193 2.536779 3.367351 1.313130 -0.626644 7.184638 -0.293545 -1.845588 5.540651 4.557995 -2.117130 -0.468273 -2.566736 -2.645741 -0.237143 -1.942356 -0.394544 0.340449 3.402397 -3.508979 -2.805228 -0.524086 -0.276527 -2.308710 -1.760222 -1.636188 3.567128 -4.361297 -3.010330 -2.795229 3.399364 -0.571470 -6.814541 -1.788313 -2.492556 0.696072 1.000572 -1.262815 -2.014841 2.120982 1.268323 -1.347681 -0.395160 -2.061156 3.751578 2.656423 0.485061 -0.599375 2.832544 0.274806 4.039174 1.685815 -1.915979 -1.108163 2.022280 -0.539225 1.377369 -2.299174 0.005311 2.113307 -3.355054 -0.493911 1.446179 -1.840289 -2.015978 -0.900149 -2.270972 0.361554 11.369183 -1.605806 4.131640 2.838194 -3.888237 2.369269 -0.138099 1.062869 1.673560 2.730972 2.822080 -5.013048 -3.262021 3.829823 5.463764 1.740033 -3.598243 -0.868778 1.654318 0.996066 -0.285351 2.200081 1.755346 -0.953787 -2.330519 -0.185030 0.275777 7.822647 -1.528376 -1.166568 0.748656 3.538042 -1.307442 -3.775528 -0.393654 -3.284372 -1.462578 2.088603 0.933062 1.384351 4.579642 -7.279283 3.909518 0.405291 0.705038 2.571914 -0.100924 -2.161411 -6.294581 -1.677120 1.847984 2.940088 -0.713211 -0.031622 0.297710 -4.683266 1.752572 0.735719 1.961507 -2.629640 4.746156 -1.133626 -2.334737 -1.842924 0.421636 -1.930978 -1.146357 -1.730708 2.758422 1.684138 -4.591721 3.229895 -0.671201 -1.884943 0.858378 0.439135 4.413403 -3.062370 -3.961312 2.503299 -2.129230 -3.458132 -2.615540 -1.600799 1.354997 1.834485 0.189040 -3.673723 -4.523519 3.260923 -1.899267 4.016328 2.502589 -0.713007 3.835068 -0.083010 -2.646388 -2.461990 -3.451890 0.767580 0.715579 -0.846918 -2.332111 -1.014486 3.052503 3.698856 -0.460919 -1.945620 -1.551184 4.878415 -2.914498 -0.483506 1.452338 -0.988981 -2.365126 1.997543 2.194090 -2.691518 0.435030 -3.577975 1.629781 -3.133815 -0.516713 3.014696 -2.299766 -0.188168 0.167147 -0.587570 -1.029048 1.243092 2.235307 -0.590733 0.020033 6.392201 3.807804 -1.159388 0.776427 -4.153605 2.996175 -4.673422 -2.896678 -1.153506 0.267241 -1.110607 -0.130737 -0.063599 3.346498 3.338733 -2.325494 -2.188836 0.866248 +PE-benchmarks/magic-square.cpp__main = -0.058224 -0.005826 0.207918 -0.108451 0.276875 -0.079774 0.178512 0.133530 -0.387569 -0.311209 0.001911 -0.368628 -0.374517 0.465410 -0.041060 0.169128 0.674341 0.291349 0.005639 -0.202135 0.137030 -0.465099 0.566079 0.596028 -0.377245 0.128544 0.002836 0.181172 -0.036601 0.429312 -0.142382 -0.386497 0.252920 -0.194374 0.175583 -0.379511 -0.081478 0.083852 -0.074366 -0.837903 0.012612 0.260362 0.141389 -0.028597 0.031876 0.455840 0.477875 0.305486 -0.050898 0.449084 0.140432 -0.156426 0.201800 0.124504 0.214636 0.155697 0.183398 -0.090976 -0.399922 0.162598 -0.133190 -0.661660 -0.060244 0.272876 0.480790 -0.113436 -0.100951 -0.012067 -0.135652 0.113214 0.179095 0.154296 0.196327 -0.078102 0.300853 -0.308731 -0.044918 -0.678380 -0.133289 -1.394949 -0.428037 -0.244483 0.622010 0.103100 0.113231 -0.067656 0.531329 -0.071342 0.062175 0.154698 0.565837 -0.403617 -0.248999 -0.144936 0.001518 0.149665 -0.241809 -0.136030 0.345148 -0.051404 -0.380756 -0.233667 0.466255 -0.004834 -0.181807 -0.058462 -0.079241 0.448252 -0.676549 -0.284746 -0.612160 -0.029913 0.052240 -0.523025 0.279036 0.034067 0.250609 0.339441 -0.242142 -0.203859 0.245286 0.159520 -0.141352 -0.129389 -0.291508 0.509933 -0.045822 0.039404 0.191251 0.184372 0.070007 0.409557 0.490238 -0.182145 -0.041137 0.218326 -0.223480 0.101148 -0.207164 -0.275303 0.145044 -0.432207 0.051999 -0.040226 -0.335748 -0.069023 0.052448 0.042172 0.155310 0.595297 -0.087780 0.339939 0.156355 -0.383499 0.355641 -0.121062 -0.013683 0.110028 0.447971 0.145757 -0.220898 -0.286982 0.152234 0.515070 0.297738 -0.471193 -0.225890 -0.154452 0.174449 0.099130 0.179617 0.145016 0.166107 -0.302484 -0.029394 0.010555 0.797161 -0.261342 -0.326349 0.051120 -0.069461 -0.059616 -0.608603 -0.040965 -0.164301 -0.018213 -0.139870 -0.038027 0.067395 0.497066 -0.922906 0.497495 -0.312652 -0.161837 0.389366 0.040669 -0.150045 -0.771316 -0.097077 0.256088 0.615988 0.191962 0.020179 0.068115 -0.428068 -0.056673 -0.044444 0.213362 -0.186192 0.331384 -0.059931 -0.343995 -0.186958 -0.253937 0.047140 -0.142926 -0.062326 0.209264 0.411537 -0.917624 0.335878 -0.072708 -0.251803 0.107167 0.217083 0.224731 -0.373259 -0.502938 0.134525 -0.201990 -0.490905 -0.290182 -0.130511 0.167014 -0.096561 -0.273616 -0.000400 -0.411059 0.501810 -0.086783 0.356306 0.251159 -0.051189 0.616233 0.388807 -0.378856 -0.122259 -0.057189 -0.011147 -0.574504 -0.001038 0.012788 -0.192361 0.316936 0.563462 0.203655 0.003055 -0.092257 0.549389 -0.408860 -0.196121 0.450523 0.125404 0.036954 0.418306 0.474273 -0.495514 -0.160524 -0.306623 -0.099224 0.004762 -0.167008 0.206873 -0.390963 0.036256 0.132765 -0.023006 -0.203786 0.181447 -0.008257 -0.099798 -0.186856 0.626661 0.688985 -0.430796 0.242683 -0.292229 0.200639 -0.480056 -0.240311 -0.112815 0.357644 -0.275464 0.059037 0.139261 0.171801 0.083488 -0.288558 -0.256452 -0.019001 +PE-benchmarks/aho-corasick-algorithm.cpp__main = -1.600807 3.281883 6.107628 -4.315571 7.779896 3.363142 2.807728 2.502977 -4.949983 -6.942966 -1.937813 -6.468228 -13.130400 7.922648 -1.445184 1.329766 10.215142 -0.017897 -0.186852 -5.375156 6.775694 -8.196831 11.645904 9.808880 -13.699929 2.449520 3.013192 7.809473 2.194272 9.688654 -0.216619 -6.858687 -0.120431 -0.347659 10.684921 -4.696445 -1.231000 -1.010801 -4.900436 -18.457579 -3.708221 10.459716 -0.308443 1.888150 2.634593 9.836328 12.065550 7.229187 -5.615650 6.028110 6.367786 -2.319606 6.687044 0.416770 0.290471 0.252359 5.113580 0.293038 -5.205294 2.848542 -2.130736 -12.330918 1.934450 8.573325 12.763941 -4.891803 -3.291176 1.731779 -0.933728 2.736926 -0.126902 8.764094 3.969203 1.588230 11.514022 -5.677877 -0.506092 -15.643997 3.300768 -24.682369 -10.696394 -9.897940 8.463974 6.033283 2.977738 -6.227439 17.887219 -0.658742 1.044054 7.069010 11.500184 -6.104706 -0.899061 -9.382613 -3.385668 1.986444 -5.604159 -3.632968 4.986130 0.904759 -7.561707 -5.004136 4.682987 -2.039310 -6.446335 -1.819500 -7.493260 9.961417 -10.732271 -4.616991 -14.879196 2.162439 0.398624 -14.784464 1.289997 -2.093752 0.961342 3.466924 1.170536 -2.225841 3.429519 5.496868 -3.026218 -2.685195 -8.491941 14.346209 6.027513 -3.389312 3.974105 6.679618 1.569806 5.008091 11.763855 -1.306009 -7.429473 6.917241 -4.499648 0.519696 -4.418086 1.216663 7.531556 -7.023510 -4.197177 0.276734 -3.176257 -0.727624 -2.034227 -6.949617 4.798530 23.586494 -2.812659 5.307867 0.970364 -7.838965 12.889892 2.125707 -2.820605 5.741293 8.615501 5.886670 -11.990200 -6.300998 5.549263 12.022303 3.127121 -9.709457 -2.807786 0.003991 1.696624 -3.076614 5.284896 3.763616 1.562973 -3.700683 -0.651728 -0.500361 16.617204 -6.192315 -10.871725 2.763788 4.343489 -4.157398 -11.942203 -0.514992 -5.566267 -5.634757 -0.741162 -0.294916 3.837427 10.422616 -18.804186 9.191440 -1.281810 -4.852946 9.909502 -4.804003 0.632250 -17.244345 0.928902 6.152490 9.458449 0.683648 -2.466890 -3.141870 -11.203294 3.514515 0.605464 5.679489 -6.279456 10.564090 -5.447668 -5.025066 -5.993835 -8.340718 -4.332278 -1.747466 -4.846529 2.633482 4.819044 -15.901910 9.320348 -3.702780 -4.605691 2.188290 2.236569 5.507765 -7.046822 -11.607904 4.279457 -2.377627 -11.129097 -8.618026 -4.325761 4.513947 0.409066 -5.826450 -6.685892 -13.844641 10.622080 -3.626739 7.669420 6.154357 2.025015 13.522565 11.670694 -9.453295 -5.408352 -6.186432 2.649074 -3.782612 -1.501076 -5.963208 -3.956667 5.363404 12.289969 0.496688 2.800113 -5.812059 12.455495 -8.196094 -6.080868 5.872599 -2.172880 -1.171254 7.070922 7.537015 -5.187767 -5.371359 -11.812873 0.888083 -2.226061 -4.516848 4.993516 -10.790105 -1.511922 6.648497 -2.753645 -5.201771 4.399916 1.847923 -3.346943 -6.579948 16.097834 13.441468 -10.199879 4.375431 -8.097032 7.349734 -10.287296 -2.920604 -4.536755 2.188288 0.695588 0.252701 3.711106 4.010364 4.409867 -6.825334 -4.489929 -3.207598 +PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -5.892890 -5.665771 0.226987 -12.258521 6.925248 12.486809 3.571705 -9.887541 -13.726524 -5.396058 5.783496 -18.417586 -8.314774 14.984905 -6.434642 10.463593 17.272726 -0.369799 -8.093103 -4.238995 11.291839 1.364807 20.864868 21.277452 -13.772648 0.450829 -1.714140 9.124434 4.558579 2.637030 6.319147 -8.747757 2.721166 -10.573246 0.213330 -5.123009 -4.368226 4.986062 9.563619 -23.097969 -1.563725 9.689479 -2.181240 0.384863 2.580072 1.643665 12.161796 11.697285 0.732385 11.725829 8.270595 0.752984 7.904628 0.001624 4.210099 0.051368 4.186316 -5.035102 -1.732179 -2.689734 -4.559959 -2.653202 1.908950 15.971627 16.638791 -0.436862 -8.370607 3.484209 4.746528 3.973673 5.405610 13.277500 -4.388492 6.282149 8.584136 -15.652236 4.556338 -18.066232 5.239776 -16.833482 -10.913166 2.392993 11.192009 11.702685 7.320912 -2.646630 22.587175 -4.305398 -8.971536 15.572950 15.890433 -10.070847 -2.233403 -3.401833 -7.096244 -0.265564 -5.756265 2.177602 -1.301817 10.403229 -12.771242 -4.505130 0.631795 1.707964 -8.687804 -4.846472 -1.155353 11.808003 -14.347671 -8.936439 -3.629873 13.067189 -1.110911 -23.448189 -12.270736 -9.639578 4.023871 1.809287 -10.453907 -10.094860 7.038634 3.134321 -2.516118 -3.439761 -5.047411 8.810378 10.106557 3.708996 -2.541813 9.930263 3.714040 20.638481 2.380581 -6.755322 1.431301 4.230829 -0.098793 7.546437 -3.253304 -2.000747 0.036322 -12.166576 -1.662936 8.163940 -7.190774 -4.274615 -1.854096 -0.043242 -2.406803 49.835691 -4.266086 17.579767 14.860545 -12.179746 2.836479 -4.419917 3.457178 5.348430 6.491359 7.959821 -21.667368 -11.058726 14.013466 21.426080 7.177649 -13.612727 2.275054 6.817935 1.582272 -2.836251 8.367447 1.304106 2.022067 -8.408656 -1.883907 7.872620 27.309149 -6.531891 -4.963363 2.909047 5.397085 -1.739866 -10.960963 -1.661335 -8.380706 -0.837062 8.447334 3.820101 6.345089 15.995027 -18.212397 13.513611 0.241816 0.576733 13.078981 4.491203 -11.154423 -13.619746 -7.481616 5.579174 11.416071 -3.876807 -1.524180 2.399603 -17.152902 1.658665 5.029068 2.315648 -10.244998 15.626135 1.042833 -6.318790 -4.861278 1.381317 -4.640328 -2.723019 -6.790087 11.535916 -0.621129 -14.442696 11.351264 3.908934 -6.903768 1.244639 -3.205109 15.353979 -11.442196 -13.270134 9.425045 -6.384718 -11.958721 -4.624224 -5.134995 4.776160 9.032000 2.502384 -15.344514 -9.798170 14.448911 -5.402797 18.011840 8.606407 -4.014058 10.192167 -3.675463 -6.813038 -6.558817 -12.752294 3.897144 3.487900 -8.689085 -8.757079 -4.634002 11.106409 10.932576 -0.999647 -10.095909 -1.573574 15.187600 -11.048461 -0.935378 3.588764 2.882938 -12.209674 5.591544 7.003825 -9.777598 5.527578 -10.629259 -1.911675 -11.688103 -5.900165 13.054920 -2.110087 5.137228 -0.117443 -1.418625 -0.627435 4.962845 6.211307 0.062225 5.789397 19.271320 11.005694 -1.211693 -1.453016 -17.776775 11.004797 -15.058594 -12.973973 1.325987 2.425846 -6.981206 -4.040252 -1.626770 13.529746 12.742065 -10.490293 -6.955327 7.347592 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 0.049568 0.322757 0.493402 -0.251826 0.422166 -0.067183 0.247012 0.324381 -0.495154 -0.814933 0.066486 -1.193219 -1.114772 0.726510 -0.077706 -0.202111 1.019913 0.072910 -0.037028 -0.359974 -0.129323 -0.181786 0.940087 1.021304 -0.794892 0.317901 -0.172127 0.129350 0.005801 0.468495 0.165804 -1.033831 0.251744 0.438560 0.555842 -0.012402 -0.337627 -0.349496 -0.480372 -1.402602 -0.112912 1.067663 0.220785 -0.042783 0.313834 1.017287 1.227365 0.470799 -0.084364 0.523161 0.242802 -0.140158 0.491953 0.025055 0.314256 -0.485681 0.409498 -0.478775 -0.668383 0.315223 -0.151335 -0.867098 -0.505211 0.637578 0.774493 -0.169543 -0.389954 -0.307550 0.000119 0.264679 0.023112 0.518676 0.800248 0.356045 0.531360 0.236416 -0.030291 -0.785660 0.104631 -2.421640 -0.917986 -0.379776 1.429354 0.745226 -0.270220 -0.761405 1.046573 0.038824 0.094603 0.395797 1.206726 -0.248561 -0.339094 -0.238347 -0.004589 0.330095 -0.338079 0.068358 0.397292 0.025905 -0.756088 0.046735 0.390544 -0.388641 -0.417060 0.399979 -0.114559 0.587702 -0.989422 0.207513 -0.975670 0.101808 0.667956 -1.111837 0.135257 0.230751 -0.065524 0.586831 -0.489581 0.130275 0.384812 -0.192170 -0.393379 0.225382 -1.332441 1.060540 0.089513 0.181249 0.320284 0.719069 0.582565 0.328591 0.388217 -0.241150 -0.020228 0.182126 -0.020914 0.180407 -0.059045 -0.214728 0.337387 -0.415292 0.138640 -0.259220 -0.501642 -0.285591 -1.009161 -0.226096 0.122902 1.032803 -0.349228 0.722619 0.217629 -0.568029 0.586931 -0.214108 -0.327285 -0.077476 0.646366 0.649604 0.123778 -0.360500 0.592537 1.110305 0.370271 -0.636356 0.480275 0.277147 0.066998 -0.353892 0.711989 0.156630 0.458833 -0.420792 -0.106112 0.393113 1.147882 -0.176818 -0.816017 -0.118257 0.239297 0.631202 -0.179977 0.219023 0.230550 -0.011847 0.063498 0.086905 0.328518 0.803731 -1.614152 0.848088 0.116606 -0.241851 0.721952 -0.042469 -0.370535 -1.116052 -0.018047 0.599223 0.820398 0.368899 -0.188217 -0.246753 -0.755478 -0.090224 0.068311 0.281531 -0.455158 0.632325 -0.213296 -0.329245 -0.342879 -0.953587 -0.078549 0.159236 -0.613138 0.345068 0.843733 -1.533749 0.805361 0.000215 -0.428570 -0.572596 -0.113344 0.253906 -0.658812 -0.720843 -0.122899 -0.829627 -1.527604 -0.436186 -0.504371 -0.048433 -0.152360 -0.037423 -0.228719 -0.541301 1.348246 -0.065520 0.848855 0.549434 0.016504 1.018625 1.049915 -0.596979 0.137655 -0.668203 0.649047 -0.745840 -0.176838 0.653320 -0.462606 0.229371 0.832652 -0.121853 -0.203468 -0.423111 0.502474 -0.440726 -0.427966 0.508243 -0.363548 0.005988 0.835767 0.623976 -0.483677 -0.014223 -0.979265 -0.307084 -0.348601 -0.391426 0.181470 -0.611149 -0.120980 0.423288 -0.352339 -0.563677 0.232767 -0.207790 -0.511250 -0.130022 0.928543 1.020870 -0.786020 0.768260 -0.810607 0.649891 -0.821995 -0.610925 -0.046664 0.066608 -0.262698 -0.290981 -0.078001 0.031052 0.244859 -0.693169 -0.775248 0.606475 +PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -2.228072 -2.394376 -1.311253 -2.819335 1.758710 2.606702 1.150629 -3.752433 -4.205945 -1.223513 2.342959 -5.887832 -2.181176 4.637177 -1.746189 3.830773 5.359722 -0.189046 -2.264978 -2.425361 4.026778 0.892715 6.665467 6.857114 -3.951640 -0.149442 -0.071126 1.317757 2.223407 -1.616768 2.335875 -2.553236 1.606309 -4.275879 -0.482993 -1.070061 -1.113640 2.100408 5.154069 -6.298609 -0.304186 1.114674 1.080130 -0.040853 -0.053437 1.422133 3.055024 3.747669 0.088658 3.925346 3.547549 0.065196 2.037531 0.084945 0.754137 -0.359217 0.724538 -0.772151 -0.129789 -1.025597 -1.250297 0.613620 0.315708 4.772698 5.475042 0.170601 -2.678509 1.935749 1.936279 1.605562 1.713170 3.956425 -0.226093 1.539823 2.949190 -5.718946 -0.317114 -8.993531 0.945714 -6.971571 -3.034418 1.477417 3.101219 0.740240 2.654248 1.107027 6.545871 -0.570255 -3.426957 4.941827 5.004911 -3.293110 -0.921778 -0.161959 -2.332321 0.022135 -1.954786 2.452467 0.671627 3.122976 -4.098195 -3.077587 0.432189 0.418626 -2.491059 -2.954473 0.212714 2.613498 -3.209990 -2.545122 -0.904610 3.695595 -0.142775 -6.665362 -2.740696 -3.567446 1.551731 0.780430 -3.744703 -3.401133 1.752654 0.045225 -1.414075 -2.043050 0.204849 1.548516 3.532121 1.820208 -0.918141 2.564892 1.345066 7.207461 0.227022 -2.987441 0.747344 0.761813 -0.071447 2.842907 -2.063250 -1.236637 1.935335 -3.203386 1.385825 2.010056 -2.202098 -2.584476 2.662639 -0.346413 -1.173728 11.930496 -0.712299 5.237349 5.134311 -3.186600 0.470577 -2.712357 1.581784 1.858493 2.542261 1.922279 -4.990025 -3.905299 4.561199 6.331382 2.272923 -4.654548 -1.189632 2.718848 1.152410 -1.138290 2.427706 0.615760 0.581279 -2.469724 -0.369703 3.053005 7.874336 -2.554717 0.783420 0.726984 3.127356 0.273677 -3.925111 -0.932066 -3.828485 0.026829 2.956762 2.160285 2.161393 4.937788 -6.828658 3.629003 -0.089219 1.217398 2.691364 2.753426 -4.491347 -3.996147 -1.384294 1.277111 3.088924 -0.433751 0.553461 1.264244 -5.434640 0.399585 1.061558 0.321069 -3.299501 4.582779 -0.014278 -1.556322 -1.356567 2.003791 -1.417866 -1.651299 -0.877608 3.960923 1.011685 -4.671839 3.190418 0.799731 -2.103116 -0.017181 -1.590872 5.261842 -3.083390 -3.299226 2.938948 -2.610162 -2.183495 -1.536358 -0.908901 1.161225 2.017640 2.647899 -4.109288 -3.250268 4.596612 -1.481430 5.717611 2.393843 -1.574923 2.143041 -3.720980 -2.028750 -2.848879 -2.298182 0.476196 1.488150 -3.375577 -2.852259 -0.914014 3.438518 3.089591 -0.517007 -3.714047 -0.492932 4.208944 -5.075480 -0.349026 1.117466 3.008195 -3.638368 2.288731 1.993344 -3.458543 2.187638 -3.080770 -0.467817 -3.519804 -2.280998 3.891192 -0.154428 1.764426 -0.783371 -0.643247 1.039358 1.991681 2.241563 0.196575 1.646804 5.317664 4.111845 -0.495850 -1.525324 -5.966656 2.830130 -4.489926 -4.757411 1.273329 0.624276 -3.650203 -1.524339 -0.990828 4.507509 3.274001 -2.730397 -3.290816 2.652694 +PE-benchmarks/z-algorithm-linear-time.cpp__main = -0.861014 0.643618 3.017241 -2.114595 3.873414 0.569418 1.528347 1.625808 -2.317726 -3.583114 -0.684895 -1.750624 -6.536762 3.471560 -1.062699 0.536167 3.801433 -0.298254 0.273172 -3.308165 3.720726 -4.571377 5.495817 3.592884 -6.990016 0.751437 0.937425 4.623913 1.814045 4.594641 0.879994 -2.062394 -0.124352 0.110919 5.658912 -2.308653 0.278819 0.116472 -3.531076 -7.905850 -2.005369 4.865754 -0.308348 1.574607 1.270767 6.396732 4.339990 3.713789 -3.319886 3.548082 3.687664 -1.508272 3.226891 0.475266 -0.898801 -0.618495 1.774243 -0.265993 -2.670377 1.511001 -0.980435 -7.139110 1.611598 3.757282 6.447064 -3.167791 -0.939508 1.242782 -0.879438 1.874674 0.745283 4.046076 1.724464 -0.480619 6.434465 -2.396441 -0.981486 -7.507094 1.378329 -12.777656 -4.767124 -5.266995 4.485463 2.692403 1.056150 -2.706493 8.411615 0.716232 0.089915 4.110186 4.176430 -2.222773 -0.288574 -4.956498 -1.426405 0.912501 -3.227261 -2.203464 2.646223 1.601240 -3.122739 -1.434314 1.571052 -1.428314 -2.720036 -1.474140 -4.626336 4.889129 -5.724955 -1.941829 -7.294091 1.606641 0.306936 -6.727495 1.531962 -1.281645 1.800432 1.033711 2.245751 1.076803 1.349162 2.751041 -1.193687 -0.694197 -4.437973 6.742627 2.756227 -1.716030 1.969847 3.597849 -0.542555 1.276598 6.231850 -0.151934 -4.908446 3.829523 -2.199247 0.670263 -2.146021 1.176189 5.008481 -3.414443 -1.802988 -0.873472 -0.679524 -1.235114 -0.930535 -3.417998 2.888169 8.923564 -0.754302 2.034540 0.299386 -2.869029 5.699212 1.420959 -0.279024 3.911527 4.064683 1.204531 -4.388266 -2.967359 2.148382 4.681366 1.111578 -4.760889 -1.604650 -0.054799 1.255508 -1.452004 1.638281 2.522193 0.134931 -1.341565 0.042278 -1.522516 6.634964 -2.537742 -4.192692 1.629001 2.302602 -3.181828 -5.525198 -0.438474 -1.518920 -3.182693 -0.373731 -0.015232 1.265878 4.513703 -8.438437 3.865294 -0.328240 -1.186579 3.618788 -2.971928 1.027398 -9.059872 0.159557 1.930474 4.035976 0.189143 -1.190340 -0.819365 -5.078501 2.715612 -0.000416 2.675906 -2.198739 4.546959 -3.054778 -1.590145 -3.055592 -4.088188 -2.186204 0.536186 -1.643927 0.773298 2.061520 -7.619118 3.364244 -3.423268 -2.645225 1.305601 2.176574 3.135588 -2.791525 -5.000223 2.042598 -0.972750 -6.203972 -5.829340 -1.433159 2.142931 -0.536164 -3.492152 -2.576344 -6.454823 4.834639 -2.534178 2.690056 2.475619 0.840739 7.238141 5.315200 -4.776578 -2.909215 -2.620733 1.010749 -2.417784 -0.181454 -1.633990 -1.103066 2.200369 5.264110 0.580260 2.025204 -1.609544 6.595746 -3.742270 -3.827542 2.947291 -0.516528 0.360349 4.902703 3.661035 -2.723110 -2.977127 -5.566895 1.004034 -0.235582 -1.730590 2.773489 -5.006498 -0.356692 2.565048 0.125139 -2.594332 2.058364 0.908777 -1.590631 -4.344505 8.628806 7.706047 -5.212664 1.841204 -3.259723 3.264233 -4.267324 -0.515126 -2.924760 1.237344 1.666528 1.599724 1.698380 2.114557 2.600292 -3.809644 -2.170655 -2.029814 +PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -1.387716 -1.372862 1.518928 -2.653904 2.583334 0.529251 1.185865 -0.488923 -2.947415 -2.933981 0.883831 -3.981477 -4.753988 3.552383 -2.039802 1.343606 3.621859 -0.490247 -0.718429 -2.822362 3.109882 -1.669155 5.453727 4.081785 -5.508780 -0.154398 -0.747942 3.764557 2.253039 1.718450 3.108185 -2.182870 0.020242 -0.270670 3.609665 -1.218732 -0.042975 1.323040 -0.947901 -6.578958 -1.509911 4.921323 0.645202 1.281769 1.733329 4.948020 2.773742 3.485392 -1.773870 3.843271 3.252316 -0.611057 3.358630 0.077528 -1.047800 -1.807219 1.416631 -2.196417 -1.909834 0.748218 -1.271742 -3.659538 1.207804 4.145304 5.957255 -1.975101 -1.550619 0.892625 0.792509 2.120585 1.606148 4.143985 0.431872 0.769567 4.615392 -2.123793 -0.178769 -6.448620 1.853815 -9.297782 -3.644149 -2.099483 4.436200 4.010953 0.301513 -1.988657 7.333998 0.753408 -1.775424 4.982586 3.748440 -1.115222 -0.412933 -3.083631 -1.692747 0.423340 -2.689515 -0.736804 1.259996 3.960897 -3.130297 -0.528539 -0.375289 -1.293775 -2.274669 -0.840824 -2.928487 3.769683 -4.733674 -1.580661 -3.912909 3.309586 0.859413 -6.456055 -0.207691 -2.211855 0.652913 0.746013 0.366125 1.154973 1.571871 0.725663 -1.060085 0.653749 -4.887047 4.679383 2.505270 -0.168874 0.203436 4.169253 -0.243532 2.031678 2.242280 -1.126971 -2.757970 2.762670 -0.838778 1.680173 -1.805347 0.626160 3.900284 -2.872710 -1.054551 -0.546887 -0.962743 -2.333449 -2.571076 -2.224851 1.104607 8.589248 -0.893046 3.333022 2.273508 -2.368205 3.168922 0.502788 1.258445 2.677159 2.791068 1.355692 -3.093162 -3.062400 3.202151 4.851420 1.182581 -3.481362 -0.082513 1.791757 1.261770 -1.308968 2.043299 2.220980 -0.508114 -1.560836 0.081980 -0.453746 5.844413 -1.227981 -1.447458 0.748932 3.118522 -1.573362 -3.270944 -0.133223 -1.164845 -2.064021 0.903731 1.257204 1.133237 4.152844 -6.563632 3.639872 1.303387 1.083000 2.875089 -1.673199 -1.081326 -7.675496 -1.240570 1.117362 2.778767 -0.627422 -0.845240 0.290502 -4.680166 2.409228 0.389118 1.849950 -2.129831 4.240554 -2.144363 -0.707860 -2.119339 -1.876712 -2.140099 0.730598 -1.876357 1.939673 2.283849 -4.700765 2.605497 -2.156597 -2.478020 0.042399 0.984185 3.700013 -2.763592 -3.389285 1.590862 -2.280709 -5.936208 -4.743584 -1.405845 0.986251 0.179059 -1.170045 -3.058432 -3.870604 4.539217 -2.721276 3.343343 2.172806 -0.609072 4.673195 2.704766 -3.249357 -1.782291 -3.192294 0.785379 -0.737116 -0.637701 -0.348636 -0.533393 2.039906 3.497153 -0.338099 -0.549296 -0.686829 5.157622 -2.591094 -2.621029 1.614779 -1.583326 -0.773796 4.153334 2.359644 -2.743279 -0.260454 -4.695692 0.913392 -1.897095 -0.822770 3.207335 -2.685644 0.146424 0.508971 0.055983 -1.624623 1.436789 1.682463 -1.526401 -1.535739 7.547601 5.196211 -2.204833 1.338480 -4.091447 3.077754 -3.829146 -1.570304 -1.868815 0.456360 0.392545 0.800516 0.285690 2.763037 3.763764 -3.666427 -2.922940 0.790745 +PE-benchmarks/strongly-connected-components.cpp__main = 0.283655 0.126489 0.906491 -0.400670 0.202885 -0.838508 0.135055 1.272588 -0.775224 -1.099968 -0.095846 -0.738465 -1.122798 0.581937 -0.036770 -1.146750 1.070459 0.530719 0.139058 -0.599769 -0.449491 -0.369394 0.531303 0.955396 -0.854245 0.375874 -0.483805 0.579386 0.184732 0.713399 0.613705 -0.946003 -0.191156 1.276654 0.917298 -0.441652 -0.259592 -0.167719 -1.628609 -1.713682 -0.019485 1.421423 0.249380 0.076704 0.677995 1.585661 0.943238 0.288328 -0.415897 0.660900 0.345825 0.162023 0.418241 -0.083925 0.015993 -0.667180 0.269122 -0.564001 -0.712580 0.759759 -0.006994 -1.327496 -0.412305 0.429478 0.640820 -0.254756 -0.296947 -1.050228 0.164713 0.421673 0.306226 0.232917 0.924199 -0.094082 0.596905 1.003180 -0.251807 -0.940366 0.555692 -3.197363 -0.853902 -0.629897 2.551878 1.050489 -1.268865 -0.944812 0.814417 -0.092835 0.450456 0.938864 0.693223 0.675325 -0.348769 -0.407375 -0.245948 0.841145 -0.191878 -0.364402 0.249306 0.589913 -0.495516 0.459794 0.181123 -0.868495 -0.365459 0.983359 -0.254885 0.697752 -1.379755 0.861826 -1.193248 0.665885 1.388798 -0.642786 -0.088802 0.023160 0.209165 0.577488 -0.349657 1.317215 0.250392 -0.604919 -0.501095 1.276687 -2.036741 1.114974 -0.507907 -0.092492 0.260214 0.688661 0.268298 -0.817752 0.241648 -0.319787 -0.136785 0.704411 0.044334 -0.212866 -0.382306 -0.062273 0.688148 -0.117234 0.345846 -1.092981 -0.530918 -0.948493 -1.760765 -0.317829 0.311442 0.470065 -0.158403 0.493475 0.051917 0.012475 0.539105 0.480442 -0.136119 0.208173 0.796520 0.337049 1.144533 -0.135880 -0.073684 0.851636 0.357179 -0.227882 0.587549 0.211241 -0.148216 0.059984 0.825622 -0.046840 0.254303 -0.196353 -0.110280 0.019150 0.397311 0.678046 -1.216885 -0.688523 0.587671 0.355108 0.456980 0.647838 0.946288 0.051659 0.165091 -0.158969 0.436252 0.626243 -2.244460 0.850353 0.425282 0.230763 0.065505 -0.255578 0.071858 -1.507361 -0.093324 0.256136 1.269461 0.477100 -0.458508 0.036191 -0.563597 -0.110939 0.182760 0.447517 -0.439979 0.513535 -0.226022 0.032170 -0.093296 -1.432731 -0.219157 0.866913 -0.764910 0.084145 0.614210 -1.736839 0.392921 -0.455526 -0.329029 -0.865898 0.108107 -0.162034 -0.635812 -0.535756 -0.499051 -0.430308 -2.263855 -0.851037 -0.653697 0.185899 -0.483047 -0.106554 0.152700 -0.427229 1.542695 -0.230463 0.616569 0.551680 -0.361583 1.348413 1.659192 -0.279185 0.359399 -0.469891 1.072981 -1.212496 0.375802 1.392385 -0.511102 -0.333309 0.858207 -0.107854 -0.097936 -0.266735 0.890133 0.310225 -0.835585 0.369114 -1.129976 0.867786 1.684078 0.609862 -0.895574 -0.158559 -1.290780 -0.086955 0.373296 0.078858 0.409960 -0.759872 -0.076120 0.420581 -0.087819 -0.949529 0.269678 -0.340171 -0.835756 -0.216959 1.110248 1.273746 -0.742908 1.537284 -0.465044 0.610403 -0.585027 0.002401 -0.882527 -0.207152 0.091061 0.164459 -0.544358 -0.129888 0.281030 -0.409666 -0.835792 1.008585 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/snake-ladder.cpp__main = -0.568445 0.300833 2.087951 -1.943227 1.672627 1.538026 0.762193 -0.364046 -2.498652 -1.143549 0.148882 -3.550239 -2.538656 3.084649 -0.693259 0.781615 4.353835 0.807595 -1.123616 -1.103590 1.643350 -1.305602 3.922244 4.623943 -3.392649 0.702718 0.336566 1.886395 0.918457 2.376086 -0.980143 -1.889822 0.202285 -0.817305 1.658311 -1.798656 -0.849287 -0.071767 0.277151 -5.985152 -0.231451 2.350088 0.809033 -0.193618 0.765766 2.234927 3.946387 2.281399 -0.675082 1.417522 1.715022 -0.547259 1.773882 0.074612 1.184049 0.373186 3.010244 0.746476 -1.312023 0.398612 -0.597254 -2.280831 0.213783 3.095050 3.827675 -0.068142 -1.311221 -0.421437 0.998609 0.504699 0.476783 2.159224 0.725039 1.337762 2.016730 -2.182984 1.408127 -4.804891 0.894826 -5.944652 -2.878380 -1.197125 3.048612 1.390914 0.930549 -1.529325 4.566732 -0.766672 -0.046227 1.451582 4.090566 -2.355905 -0.853512 -1.450706 -1.679428 0.869269 -1.302534 -0.062447 1.219071 0.339289 -2.692195 -1.647269 1.806097 0.113364 -1.925406 0.887204 -0.477616 2.723188 -2.698529 -1.428365 -2.677894 0.755989 0.283474 -4.726283 -0.214433 -1.600041 0.126161 1.151814 -1.784838 -2.035856 1.184785 0.976213 -1.279911 -0.575265 -3.171952 3.965622 1.392196 -0.085928 0.317682 1.010347 1.186752 2.267187 1.877195 -1.670236 -0.138655 1.231199 -1.619961 0.355346 -1.841817 -0.764044 1.379647 -2.258401 -0.875325 0.680948 -1.931760 0.287987 -0.108312 -0.315138 0.621234 8.964613 -0.974957 2.874293 1.422950 -2.801428 3.466071 0.290330 -0.541066 0.971960 2.261005 2.103404 -4.663417 -2.191884 1.881613 4.415103 1.715456 -3.165694 -0.395067 0.207399 -0.125294 -0.394566 2.044779 0.347431 0.346611 -1.818200 -0.593338 1.232629 5.819867 -1.513269 -3.721839 0.167977 0.212943 -0.361031 -3.424634 -0.013760 -1.551274 -0.185005 -0.369695 0.085498 1.883015 3.550620 -6.576511 3.433645 -0.488254 -1.556771 4.290265 -0.532163 -1.542161 -3.766150 -0.047673 2.037723 3.422812 0.563849 -1.589488 -0.000365 -3.547665 -0.142778 0.351568 1.215231 -2.290841 3.027579 -0.115386 -1.977943 -1.443986 -2.270636 -0.564221 -1.197170 -1.956858 1.796921 0.433758 -4.753690 3.108261 0.424487 -1.241314 0.195162 -0.689184 0.797605 -2.803242 -3.220242 0.866382 -0.822109 -2.427251 -2.031817 -1.328950 1.269619 0.522297 -0.119752 -2.724473 -3.861574 3.157467 -1.437404 3.294041 2.068974 -0.143468 2.679094 3.795037 -1.622961 -1.710289 -1.226176 0.703393 -0.642693 -1.455397 -1.536158 -1.674432 2.059088 3.596064 -0.320269 -0.067714 -1.811689 3.391887 -2.025082 -1.456574 1.489603 -1.052334 -1.340814 1.231905 2.072701 -2.382098 -0.386153 -2.829185 -1.441152 -1.086184 -1.613851 2.015493 -1.946124 0.359061 1.130886 -1.031994 -1.095186 1.270361 0.363136 -0.895018 0.167674 4.361782 3.349960 -1.761168 1.483289 -3.309796 2.523955 -3.720952 -2.022602 -0.188164 0.294232 -1.831332 -0.566277 0.845550 1.806647 1.211223 -1.709594 -1.424977 0.749027 +PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -2.567431 -1.880582 0.468100 -5.011757 4.546265 4.732652 1.663548 -3.109112 -6.163964 -2.928282 1.645588 -8.239535 -5.093345 7.043937 -2.932531 4.209506 8.708076 0.337637 -2.228664 -2.547758 5.368509 -0.767906 9.670743 9.685539 -7.361432 0.267832 -0.367848 3.529397 1.521468 2.798875 2.376837 -6.160629 1.292222 -3.849727 2.156889 -3.364905 -1.932140 2.411710 3.712331 -11.830651 -1.105455 5.581336 -0.393934 0.740579 1.872003 3.565067 6.513614 5.227866 -1.554903 6.144689 4.244908 0.649287 4.065614 0.080640 0.859000 0.303871 1.713639 -1.237561 -1.676538 -0.135485 -2.756625 -1.712172 1.172838 7.346274 8.814719 -1.100943 -3.778872 1.332320 1.634884 2.010780 2.185238 6.575689 0.280878 2.477959 5.227817 -5.777732 0.325473 -11.429987 2.516537 -12.090482 -5.348959 -0.682894 5.292044 4.752053 2.757082 -2.512569 11.497195 -1.627554 -3.037370 8.121180 8.030496 -4.415456 -1.038757 -3.103455 -3.949024 -0.210896 -2.860981 0.107566 0.972571 3.786041 -6.170512 -4.269071 0.216208 -0.164945 -4.029915 -2.771264 -1.580625 5.716628 -6.989756 -4.114887 -4.318006 5.434096 -0.360167 -11.046506 -3.850351 -4.253422 0.645129 1.580914 -4.070559 -4.122574 3.495683 1.702371 -2.361206 -1.435058 -2.698370 6.089464 4.553808 0.990223 -0.640963 4.190815 1.250145 8.127937 2.218854 -3.454187 -0.587647 2.822283 -0.634820 2.622290 -3.288859 -0.575517 3.047545 -5.496624 -0.874784 2.320568 -3.501983 -1.952336 -0.203117 -2.338641 -0.181623 21.349136 -2.681027 7.479614 5.276723 -6.269358 3.863075 -0.826222 1.401328 2.693529 4.728303 4.395199 -9.053832 -5.353615 6.340544 9.803803 3.281187 -6.691060 -0.460428 2.743139 1.278776 -1.145728 3.923887 1.324340 0.051217 -3.966901 -0.626706 1.969607 13.507992 -3.175533 -2.308098 1.036724 5.138089 -1.190304 -5.410005 -0.708988 -5.534561 -1.277551 3.277160 1.458399 3.208908 7.878680 -11.889893 6.407435 -0.380524 -0.006059 5.209857 1.223368 -4.128495 -8.867069 -2.631737 3.105972 5.926382 -0.576030 0.382780 0.586713 -8.100159 1.509672 1.586309 2.552184 -5.079075 7.652842 -0.785769 -3.839193 -2.538870 -0.269242 -2.952783 -2.203572 -3.274179 4.804589 2.009169 -8.695745 5.592949 0.774709 -3.033423 0.563235 -0.000169 6.650226 -5.366610 -6.886043 4.056964 -3.236576 -5.606172 -2.869759 -2.669026 2.415564 2.887586 0.777013 -6.561810 -7.569104 6.997200 -2.376229 8.063114 4.280086 -1.470077 6.086664 -0.336168 -4.164982 -3.753463 -6.199451 2.352454 0.744664 -2.713613 -3.104849 -2.272137 5.012353 6.239216 -0.167461 -3.697551 -2.032352 7.895990 -4.821751 -0.220176 2.639949 0.334512 -4.176843 3.064896 3.987598 -4.588060 1.013087 -5.947873 0.810671 -4.910695 -2.159091 5.534391 -3.118843 1.001471 0.555509 -0.957217 -1.396690 2.379937 3.130545 -1.008484 1.073163 10.068104 6.028142 -1.983775 0.906179 -7.617118 5.200197 -7.586012 -5.310006 -1.122654 0.312665 -3.159410 -1.263404 -0.314664 5.682823 5.001626 -3.743917 -3.654489 2.294074 +PE-benchmarks/floyd-warshall.cpp__main = 0.073829 0.209346 0.349770 -0.078303 0.287939 -0.058664 0.139744 0.376807 -0.330383 -0.408999 -0.105574 -0.475727 -0.560609 0.403663 -0.004747 -0.152399 0.641313 0.257403 0.057893 -0.136372 -0.129129 -0.257630 0.466034 0.528645 -0.384815 0.220343 -0.145069 0.146054 -0.189342 0.602626 -0.079139 -0.641611 0.109916 0.280312 0.298334 -0.231455 -0.161922 -0.104147 -0.444721 -0.900273 -0.016213 0.645649 0.154926 -0.034911 0.193554 0.400980 0.662901 0.220059 -0.018597 0.329566 0.027931 -0.014121 0.267384 0.064608 0.221710 0.001055 0.234397 -0.333219 -0.475974 0.256348 -0.103356 -0.656807 -0.256567 0.247879 0.384705 -0.083267 -0.156639 -0.300120 -0.166170 0.121751 0.060569 0.167756 0.364606 0.065129 0.243220 0.287897 -0.021932 -0.257287 0.040223 -1.255752 -0.489349 -0.357889 0.837534 0.565407 -0.146156 -0.379483 0.530657 -0.133689 0.220642 0.150902 0.600571 -0.168836 -0.223583 -0.198023 -0.000783 0.230066 -0.160203 -0.201184 0.143303 -0.039493 -0.366134 -0.078971 0.340974 -0.177550 -0.196891 0.290584 -0.107159 0.401179 -0.696604 0.006836 -0.702769 0.031931 0.294940 -0.466112 0.054993 0.190272 -0.089470 0.399742 -0.232712 0.038674 0.265818 -0.003278 -0.210070 0.133169 -0.698839 0.600306 -0.152283 -0.063105 0.231338 0.264695 0.188506 0.111199 0.313710 -0.117971 -0.028382 0.245348 -0.050391 -0.032843 -0.097883 -0.159964 -0.042466 -0.300330 0.057465 -0.174451 -0.329583 -0.086941 -0.754443 -0.090967 0.183686 0.400609 -0.185381 0.276464 -0.002315 -0.334481 0.429617 0.009951 -0.187080 -0.044440 0.407603 0.304550 0.162145 -0.171919 0.131653 0.523492 0.248400 -0.208309 0.168533 -0.073356 0.075809 0.021034 0.366509 0.095065 0.226660 -0.263140 -0.058320 0.009411 0.676145 -0.039379 -0.580632 -0.042742 0.005554 0.170013 -0.126869 0.121484 0.096089 -0.043955 -0.053770 -0.104772 0.111107 0.441912 -0.882149 0.528049 -0.087844 -0.228322 0.374722 -0.127283 -0.018626 -0.521175 -0.064293 0.328824 0.653446 0.252933 -0.103790 -0.125799 -0.370046 -0.087141 0.010702 0.262358 -0.222179 0.334994 -0.097005 -0.326358 -0.165223 -0.609178 -0.000864 0.016330 -0.342527 0.105006 0.509098 -0.874622 0.389762 -0.015057 -0.185859 -0.132591 0.152848 0.020586 -0.343028 -0.470421 -0.047598 -0.288884 -0.791253 -0.179425 -0.272859 0.088190 -0.077898 -0.186627 0.009019 -0.321508 0.661143 0.068058 0.367028 0.297862 -0.009064 0.565798 0.815164 -0.358346 0.137938 -0.273578 0.298459 -0.628197 0.108816 0.351143 -0.313040 0.147607 0.574578 0.110214 -0.034400 -0.314347 0.459783 -0.070589 -0.222746 0.397589 -0.389945 0.170545 0.444212 0.458200 -0.355874 -0.191924 -0.474056 -0.025169 -0.005257 -0.128069 0.083753 -0.498073 -0.086268 0.299121 -0.164723 -0.436254 0.109395 -0.131130 -0.323666 -0.181948 0.593096 0.382026 -0.418833 0.637575 -0.256395 0.265716 -0.434865 -0.127212 -0.233810 0.109335 -0.182976 -0.015852 -0.004455 -0.022484 0.029066 -0.207411 -0.317313 0.114346 +PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -3.337133 -3.339622 -1.348408 -5.979522 2.887793 7.094302 1.625946 -5.557185 -7.313372 -1.800920 3.036069 -9.386857 -3.136103 7.699223 -3.035644 6.081010 8.864950 0.275792 -4.609871 -1.616105 6.190764 1.179982 10.211777 11.148004 -6.211987 0.042445 -1.011577 3.680445 2.002655 1.091119 2.842776 -4.615752 1.518640 -6.083767 -0.583511 -3.087348 -2.134514 3.460907 6.174197 -11.357774 -0.343065 4.432296 0.458602 -0.342864 0.580429 -0.397390 5.605692 5.884148 0.689594 5.165872 4.232511 0.929942 3.520325 -0.018457 2.485561 0.932193 1.344853 -2.196836 -0.155114 -2.004436 -2.115676 0.069637 1.032816 7.973539 8.251244 0.353803 -4.113494 1.724602 2.313704 1.788456 2.808588 6.206442 -2.540759 2.651698 3.543638 -7.794244 2.238800 -8.694810 2.909484 -7.365796 -4.504355 2.021547 4.933593 6.022121 4.368967 -1.099273 11.124020 -3.149412 -4.844145 8.082772 7.800180 -5.541580 -1.175316 -1.468989 -4.047099 -0.134210 -2.731968 1.317993 -0.513812 4.809383 -6.360287 -3.009307 -0.127786 1.612855 -4.350954 -3.101164 0.072657 5.277914 -6.604165 -4.673591 -0.823085 6.783861 -0.960120 -11.440179 -6.506822 -5.932208 0.185769 0.401969 -6.170848 -6.225886 3.436880 1.349797 -1.393470 -2.492314 -1.953121 3.600569 4.656449 1.746900 -1.646860 3.945571 1.793209 11.140372 0.012700 -4.150660 1.466729 1.980133 -0.036110 3.748772 -2.218647 -1.584945 -0.007802 -6.492991 -0.775099 4.249247 -3.792075 -1.446808 -0.089675 0.357648 -1.491591 25.866387 -1.964744 8.896894 7.875912 -6.221370 1.896409 -2.455962 1.861159 2.645537 3.213039 3.586188 -11.079519 -5.821947 6.941936 10.865300 3.883079 -5.896565 0.596390 3.384717 0.823451 -1.060926 4.042730 0.080105 0.598573 -4.328586 -1.230165 4.319409 13.840196 -3.221883 0.073794 1.550078 3.350655 -1.266932 -5.272138 -1.099128 -6.009029 0.104624 4.078876 1.822765 3.739807 8.147416 -8.186327 6.827098 -0.551259 0.428297 6.089350 2.619203 -5.964250 -5.885801 -3.624546 2.604210 6.075857 -2.402755 -0.090444 1.621858 -8.806825 0.254755 2.491023 0.905298 -5.550727 7.629756 1.023696 -3.283695 -2.157788 1.879259 -2.569368 -2.577092 -3.106973 6.036828 -0.385370 -5.699558 5.709322 2.705149 -2.954853 0.739824 -1.547971 6.959487 -5.833638 -6.455870 5.033956 -2.345924 -4.139880 -1.116984 -2.279218 3.056756 4.489806 1.651650 -7.784044 -5.627997 6.932336 -2.353839 9.416390 4.044618 -2.335791 3.464856 -2.738980 -2.726400 -3.724968 -6.204533 0.881229 2.010975 -4.796295 -4.560174 -2.238357 5.982749 5.234298 -0.090325 -5.786770 -0.142353 7.692851 -4.507689 0.069099 1.525349 1.317021 -6.590217 1.708209 3.258977 -5.295873 2.933437 -5.126682 -0.483599 -5.616678 -3.410184 6.801522 -0.519539 3.280438 -0.319354 -0.771918 0.331502 2.605581 3.818275 0.114638 3.708089 9.596821 2.852855 0.694293 -1.117411 -9.209394 5.011923 -7.470641 -6.546825 0.832942 1.589048 -4.699044 -2.284433 -0.858600 7.263191 5.933339 -3.864716 -3.175199 3.497589 +PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -1.152957 -0.746753 -0.063216 -2.238458 1.001341 1.641242 0.547290 -1.186325 -2.500098 -1.893297 0.840985 -3.836496 -2.237095 2.962940 -1.249662 1.321043 3.726643 0.203413 -1.189681 -0.981932 2.104024 -0.319347 3.873731 4.442075 -3.036253 -0.071907 0.004270 1.826593 1.001254 0.525060 1.887466 -2.566312 0.314361 -1.259318 1.075331 -1.270759 -0.533683 1.073125 0.998858 -4.991022 -0.402099 2.494264 0.596068 0.021429 0.446250 0.741435 2.715631 2.396622 -0.589978 1.839703 2.115667 0.582715 1.442654 -0.082926 0.346749 -0.610304 0.090905 -1.166508 -0.426415 -0.102563 -0.661602 -1.016998 0.281125 3.359138 3.716911 -0.144460 -1.323276 0.291052 0.730716 1.012254 0.820557 2.450467 -0.107272 1.144066 1.893636 -2.583324 0.287135 -4.923632 1.408763 -5.429304 -2.117022 -0.232242 2.751373 2.957777 0.789397 -0.964226 4.586894 -0.631940 -1.150428 3.743076 3.555312 -1.418147 -0.630000 -1.395839 -1.751543 0.725101 -1.464545 0.407324 0.095410 2.153472 -2.508268 -1.171956 -0.167982 0.044762 -1.777679 -1.023326 -0.451665 2.234236 -3.017083 -1.162235 -1.526893 2.257007 0.540375 -4.863321 -1.664679 -2.216360 -0.173929 0.496913 -2.012930 -1.461069 1.106367 0.309456 -0.695357 -0.263199 -2.380114 2.180468 1.521100 0.405568 -0.330364 1.879050 0.933434 3.280935 0.314401 -1.599295 -0.054303 1.098085 -0.456751 0.868854 -1.469047 -0.519560 1.508937 -2.390450 -0.390201 0.861694 -1.590630 -1.474424 -0.614446 -1.011742 0.157132 9.550742 -0.720406 3.134632 2.655980 -2.357078 1.573689 -0.471098 0.332011 1.090799 1.809473 1.730963 -3.224254 -2.233997 2.468363 4.371717 1.473586 -1.936199 -0.062034 1.374436 0.342502 -0.675009 1.744268 0.293677 -0.198159 -1.523827 -0.459162 1.866955 4.684436 -0.754835 -0.116401 0.157946 2.487170 -0.341312 -2.080979 0.009093 -2.298601 -0.072902 1.324086 0.665991 1.614845 3.368285 -4.663619 2.805872 0.481931 0.652018 1.836246 0.386673 -2.016535 -4.296672 -0.468187 1.469731 2.467782 -0.754095 0.274670 0.342362 -3.564427 0.171950 0.890265 1.001283 -2.277747 3.005839 -0.366696 -1.082771 -1.454011 0.015589 -1.522780 -0.795828 -1.435331 2.112179 1.039726 -2.776998 2.714879 0.139627 -1.297725 -0.376265 -0.729542 2.462196 -2.951232 -2.834784 1.472172 -1.332623 -2.707460 -1.063892 -1.148018 1.252631 0.909777 -0.032628 -2.434894 -2.502731 3.157522 -1.014979 3.428197 1.665939 -0.532363 2.185320 0.278064 -1.190515 -1.398313 -2.288666 0.677212 -0.031152 -1.683977 -1.277514 -0.791083 1.945004 2.799160 -0.386056 -1.988584 0.186462 3.120890 -1.470503 -0.860934 0.687857 -0.474634 -1.785136 1.417464 1.334331 -2.497764 0.545324 -3.084845 0.368076 -1.576228 -1.661568 2.260083 -1.156197 0.870472 0.564064 -0.538173 -0.471774 1.277366 1.525597 -0.370200 0.937721 4.053970 1.637146 -0.386038 0.299348 -3.878724 1.874506 -3.467408 -2.612584 -0.265473 0.595163 -1.119225 -0.662468 -0.423041 2.292478 2.128718 -1.244538 -1.710448 1.521542 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 0.214215 0.212480 1.208589 -0.610103 0.240946 -0.756608 0.128021 1.315989 -0.776241 -1.374291 -0.070608 -0.922013 -1.540502 0.747630 -0.322453 -1.386907 1.422132 0.559608 0.146084 -0.903892 -0.261907 -0.348969 1.007137 1.435555 -1.551756 0.253971 -0.139133 1.104373 0.759710 0.658429 0.879544 -1.040323 -0.148181 1.396390 1.269357 -0.634369 -0.012210 -0.330996 -1.963247 -2.288314 -0.152970 1.389246 0.089276 0.202426 0.769031 2.070685 1.280644 0.613123 -0.793056 0.709934 0.879608 0.375591 0.424877 -0.107426 -0.344766 -1.104459 0.391684 -0.568701 -0.751315 0.779944 0.161666 -1.810498 -0.406640 0.909809 1.265884 -0.279846 -0.147680 -1.054661 0.310485 0.537055 0.371789 0.396323 1.094794 0.270843 0.990511 0.785014 -0.253972 -1.844284 0.609647 -4.177406 -1.074872 -1.134698 2.907548 1.028488 -1.387095 -0.974721 1.232116 0.256669 0.662727 1.417836 1.082368 0.606690 -0.453667 -0.788632 -0.464806 1.287154 -0.606625 -0.102489 0.237297 0.876872 -0.657185 0.239881 0.106347 -0.930803 -0.596468 0.981443 -0.493995 0.915327 -1.729634 0.923091 -1.621889 0.621487 1.559908 -1.302049 -0.244719 -0.274744 0.779803 0.590926 -0.094249 1.437540 0.027959 -0.405509 -0.434115 1.357458 -2.463238 1.441405 -0.166839 -0.176985 0.311103 0.867734 0.423877 -0.711336 0.464599 -0.408614 -0.495712 0.881453 -0.324772 -0.347804 -0.860723 0.106510 1.363410 -0.283092 0.440038 -0.952165 -0.656469 -1.410138 -1.601078 -0.651848 0.712016 1.550934 0.028392 0.617860 0.242532 -0.207191 0.592565 0.488042 -0.179724 0.571581 0.971731 0.457715 0.820280 -0.342829 -0.146860 1.192376 0.451794 -0.534544 0.599855 0.253035 -0.200135 -0.241908 0.869124 0.137604 -0.050054 -0.218990 -0.121570 0.457233 0.479440 0.673669 -1.553284 -0.803592 0.977738 0.176816 0.300465 0.716643 1.118499 0.071526 0.391282 -0.012699 0.643861 0.974756 -3.108835 1.022798 0.843393 0.460551 0.113890 -0.389368 -0.096578 -1.880088 0.429700 0.515666 1.355277 0.480519 -0.509305 0.172922 -0.946825 -0.070808 0.359269 0.700583 -0.578178 0.695984 -0.141110 0.021906 -0.579886 -1.650491 -0.313858 0.951199 -0.957969 0.227405 0.452979 -2.512223 0.767312 -0.875577 -0.673861 -0.974446 -0.335392 0.031128 -1.311728 -0.883323 -0.459003 -0.479299 -2.694611 -1.321712 -0.696599 0.416837 -0.521590 0.063521 -0.166539 -0.799363 1.749656 -0.459362 0.579268 0.720688 -0.197452 1.851443 1.579799 -0.319076 -0.069187 -0.502757 1.400097 -1.186907 0.064519 1.428020 -0.500725 -0.235127 1.492006 -0.440053 -0.131546 -0.141608 1.214623 -0.028816 -1.392736 0.366231 -0.822371 0.857860 2.034446 0.639818 -1.334811 -0.345937 -1.674457 -0.191262 0.629415 -0.332845 0.667084 -1.140723 0.114257 0.738446 -0.009102 -1.141030 0.608843 -0.342896 -0.819350 -0.236280 1.501248 2.045689 -1.064755 1.665853 -0.966070 0.836920 -1.187379 -0.393961 -0.867695 -0.512369 0.360605 0.346440 -0.648771 0.067254 0.478027 -0.519539 -1.033679 1.131841 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.098575 0.880534 0.868348 -0.586196 0.935358 0.726713 0.270626 -0.107670 -0.484258 -0.690193 -0.249764 -0.958563 -1.252306 1.078694 -0.224451 0.131055 1.719775 0.127984 -0.049835 -0.593705 0.684196 -0.618786 1.688968 1.691732 -1.620157 0.379838 1.057639 0.602628 0.406792 0.962997 -0.636308 -1.025126 0.385990 -0.458900 0.656747 -0.746941 -0.260815 -0.632959 -0.012964 -2.314280 -0.210881 0.060379 -0.563970 -0.008848 0.074747 1.047076 2.088534 0.886879 -0.606407 0.520761 0.806618 0.101978 0.280033 0.118797 0.301138 0.157361 0.957569 0.466632 -0.421748 0.160715 -0.121464 -1.210112 -0.100402 1.275436 1.470916 -0.128746 -0.329815 0.297592 -0.044666 0.034132 -0.225110 0.839264 0.691950 0.841838 0.995592 -1.399835 0.105632 -2.478992 -0.143974 -3.174163 -1.236741 -1.072164 0.624174 -0.366415 0.578838 -0.064941 1.791931 0.037090 0.497885 0.647667 1.906880 -1.255996 -0.294834 -0.709615 -0.501922 0.414510 -0.606875 0.238451 0.375699 -0.433433 -1.031043 -1.214000 0.958883 0.061674 -0.826165 -0.297274 -0.307629 1.002100 -1.337104 -0.564494 -1.602277 -0.374148 -0.167086 -1.990622 -0.112447 -0.186412 1.315997 0.474533 -0.301032 -1.260095 0.294145 0.983397 -0.364302 -0.741238 -0.275008 1.384030 0.896778 -0.028752 0.413977 0.223526 0.751452 1.350183 1.571469 -0.340761 -0.379587 0.290020 -0.759304 -0.180883 -0.663395 -0.086387 0.637346 -0.896892 0.082941 0.796151 -0.734654 -0.184858 0.960760 -0.740664 0.600954 3.683405 -0.360602 0.813493 0.261939 -1.478625 0.705600 -0.377271 -0.736240 0.403846 1.008407 1.157211 -1.893939 -0.751653 0.638735 1.632486 0.613100 -1.599225 -0.364848 -0.199888 -0.116434 -0.342199 0.564054 0.172402 0.138429 -0.651556 -0.247246 0.769648 2.344103 -0.898330 -1.606325 0.193681 0.176815 -0.087119 -1.463690 -0.065587 -0.477278 -0.073681 0.253659 -0.125270 0.673141 1.395181 -3.081917 1.109419 -0.423429 -0.867451 1.111840 0.148087 -0.439467 -1.212383 0.594510 1.250082 1.140040 0.357515 -0.052527 -0.336073 -1.342562 -0.125470 0.211313 0.650744 -0.849221 1.111077 0.194527 -1.204801 -0.940510 -0.622779 0.019196 -0.484559 -0.494309 0.550008 -0.070015 -3.028050 1.596292 -0.106367 -0.543079 0.216243 -0.509745 0.770403 -1.327661 -1.615004 0.561043 -0.355584 -0.714017 -0.470839 -0.493030 0.663655 0.249982 0.105490 -0.985983 -1.726550 0.986028 -0.169145 0.939294 0.868757 0.555879 1.778460 0.059221 -0.781429 -1.049671 -0.421138 0.696247 -0.280430 -0.672185 -0.695818 -0.685766 0.883433 1.869994 -0.280591 0.064734 -0.590482 1.102849 -1.631983 -0.487433 0.689253 1.088929 -0.651445 0.495260 0.836164 -0.760315 -0.581816 -0.978395 -0.489788 -0.274547 -1.027164 0.460473 -1.191736 -0.038081 1.035996 -0.401001 -0.541210 0.737200 -0.159681 0.077698 -0.232137 1.163235 2.313760 -1.413231 0.290594 -1.182420 0.886989 -1.753125 -1.256776 0.191869 0.031776 -0.230427 -0.307220 0.127812 0.555387 0.160168 -0.521367 -0.331576 -0.123490 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -0.032672 0.653343 0.449569 -0.366068 0.476578 0.247414 0.081057 -0.018186 -0.123039 -0.672759 -0.135736 -0.520146 -0.859310 0.518426 -0.252534 -0.208869 0.882284 -0.059433 0.083164 -0.483739 0.354522 -0.214962 0.972003 0.916116 -1.103664 0.145892 0.794141 0.428676 0.468749 0.289866 0.051337 -0.682271 0.212504 -0.014679 0.467880 -0.325375 -0.005859 -0.496958 -0.269142 -1.227260 -0.179286 -0.128048 -0.464823 0.074861 0.025790 0.756370 1.233784 0.527451 -0.550898 0.239641 0.706476 0.381461 -0.003721 0.039461 -0.138208 -0.333455 0.302025 0.007981 -0.129464 0.087030 0.061985 -0.755160 -0.141571 0.845133 0.896797 -0.086400 -0.059385 0.224648 -0.060888 0.107390 -0.176942 0.467374 0.506513 0.639176 0.629985 -0.753849 -0.141628 -1.717140 -0.078514 -2.257558 -0.658402 -0.780247 0.420408 -0.171027 0.082150 0.153919 0.990564 0.305957 0.404775 0.735054 1.102287 -0.459081 -0.147694 -0.481833 -0.363066 0.443282 -0.440338 0.344819 -0.015817 0.033013 -0.519251 -0.649463 0.291100 -0.115146 -0.489116 -0.294751 -0.253328 0.443849 -0.931817 -0.001276 -0.937524 -0.207257 0.125871 -1.224432 -0.197026 -0.147319 1.142982 0.162955 0.047028 -0.432743 -0.021758 0.513684 -0.134656 -0.217020 -0.305223 0.589440 0.573900 0.026135 0.226703 0.189279 0.540238 0.671967 0.815745 -0.145811 -0.384566 0.104409 -0.359021 -0.219240 -0.428495 0.116701 0.646379 -0.429998 0.342741 0.443252 -0.355622 -0.637558 0.477594 -0.778355 0.491184 1.962343 -0.090688 0.383303 0.172129 -0.793634 -0.021576 -0.328074 -0.495652 0.313397 0.540412 0.680680 -0.567992 -0.395547 0.306005 0.867529 0.281624 -0.758566 -0.098030 0.030186 -0.143511 -0.326236 0.262111 0.114915 -0.122123 -0.260751 -0.155909 0.668201 0.953652 -0.246136 -0.613065 0.023016 0.483505 0.005274 -0.482383 0.061528 -0.016072 0.030824 0.463885 -0.015611 0.406225 0.771011 -1.938996 0.496523 0.088421 -0.150024 0.095674 0.130986 -0.254345 -0.749400 0.634126 0.783280 0.451795 0.099510 0.201473 -0.198777 -0.739011 -0.060939 0.229660 0.419633 -0.474611 0.537831 0.179739 -0.578155 -0.725730 -0.231598 -0.038138 0.004396 -0.262409 0.272130 -0.086360 -1.923914 0.999855 -0.365931 -0.371500 -0.139329 -0.527304 0.601174 -0.919972 -0.881732 0.261779 -0.319282 -0.616311 -0.294124 -0.261080 0.408086 0.039207 0.228362 -0.487618 -0.812798 0.534005 -0.062686 0.327008 0.475853 0.469815 1.176029 -0.511313 -0.304340 -0.667679 -0.209996 0.642942 -0.162059 -0.446851 -0.029763 -0.289036 0.355583 1.160520 -0.376474 -0.132043 0.016083 0.512740 -0.906022 -0.476594 0.249135 0.846862 -0.336262 0.538307 0.331310 -0.461851 -0.371866 -0.718562 -0.101545 -0.020638 -0.736299 0.222262 -0.708053 -0.000199 0.763789 -0.143421 -0.396995 0.565526 -0.129435 0.118656 -0.127726 0.526157 1.503575 -0.862001 0.169292 -0.765985 0.430917 -1.107477 -0.908731 0.129845 -0.143392 0.215845 -0.136695 -0.292777 0.295284 0.101766 -0.160225 -0.241360 0.108168 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = -0.000507 0.244015 0.394538 -0.048374 0.500869 0.055881 0.296881 0.323736 -0.506390 -0.569384 -0.024982 -0.874043 -0.920420 0.735329 0.037368 0.122057 1.048045 0.273659 0.013087 -0.205001 0.047539 -0.556537 0.919513 0.954313 -0.633947 0.320602 -0.076631 0.162083 -0.229327 0.718924 -0.236511 -0.847094 0.360141 -0.078386 0.337191 -0.303384 -0.286640 -0.171314 -0.249535 -1.386968 -0.083975 0.814492 0.128868 -0.067873 0.147157 0.718551 1.082783 0.460079 -0.052945 0.630589 0.080427 -0.400470 0.473645 0.138217 0.405561 0.027715 0.328714 -0.138999 -0.744687 0.286730 -0.226217 -1.074660 -0.335188 0.454234 0.731900 -0.177734 -0.320364 -0.117495 -0.254766 0.155855 0.069584 0.410040 0.601584 0.095646 0.575531 -0.036627 -0.062839 -0.727168 -0.132430 -2.075512 -0.854001 -0.428918 1.120632 0.450809 0.120939 -0.488717 0.971462 -0.148906 0.126914 0.228867 1.123300 -0.619369 -0.380248 -0.260384 0.064040 0.221918 -0.359024 -0.144619 0.542875 -0.266176 -0.719064 -0.295718 0.681559 -0.129171 -0.356567 0.109784 -0.158504 0.685992 -0.983764 -0.286633 -1.120594 -0.158923 0.246973 -0.957149 0.215405 0.356069 0.030437 0.702451 -0.460484 -0.275330 0.467565 0.091776 -0.269114 -0.197034 -0.615917 1.003197 -0.021186 0.084273 0.425915 0.491729 0.374890 0.578433 0.771165 -0.163726 -0.030678 0.254329 -0.210902 0.213210 -0.098054 -0.364378 0.072439 -0.602686 0.013138 -0.077519 -0.539421 -0.001677 -0.488786 -0.020061 0.163055 0.983936 -0.256859 0.595520 0.157818 -0.673318 0.783207 -0.235165 -0.262302 0.003624 0.694782 0.528329 -0.298700 -0.370208 0.445299 0.987942 0.423766 -0.780890 0.030649 -0.054457 0.286374 -0.106131 0.540571 0.247454 0.539667 -0.489047 -0.043009 0.195227 1.359066 -0.517124 -0.929299 0.105730 -0.137063 0.297040 -0.786160 0.036745 -0.111742 -0.127345 -0.147347 -0.054255 0.126380 0.795587 -1.347353 0.832143 -0.329830 -0.455154 0.853619 0.001851 -0.278649 -1.009543 -0.103307 0.557813 0.915315 0.478943 -0.192119 -0.199650 -0.722491 -0.102339 0.013751 0.305548 -0.341868 0.686249 -0.279070 -0.519757 -0.345420 -0.783776 0.027316 -0.187185 -0.366295 0.332924 0.753164 -1.426748 0.687572 0.056498 -0.434147 -0.104355 0.213042 0.252928 -0.572026 -0.908714 0.122411 -0.610561 -1.122294 -0.375379 -0.374963 0.047384 0.068415 -0.436140 -0.091480 -0.708836 1.099018 0.011035 0.749061 0.499822 0.016877 1.034716 1.083412 -0.783388 -0.017272 -0.387041 0.307009 -0.884196 -0.068521 0.001891 -0.448997 0.442342 0.906277 0.196915 0.001960 -0.560154 0.712437 -0.595031 -0.342410 0.725673 -0.085827 0.025434 0.614600 0.776458 -0.543913 -0.173599 -0.673352 -0.233241 -0.232564 -0.343540 0.152486 -0.735155 -0.124528 0.400463 -0.299403 -0.423906 0.189961 -0.130259 -0.313323 -0.332815 0.962164 0.976089 -0.871502 0.591929 -0.583751 0.507636 -0.799726 -0.464603 -0.065703 0.424254 -0.402436 -0.164802 0.299368 0.051917 0.140280 -0.713355 -0.565082 0.103147 +PE-benchmarks/trie-suffixes.cpp__main = -1.839313 1.909522 7.425202 -4.311973 8.313495 0.682624 2.716912 3.236894 -4.104875 -7.026060 -1.652479 -4.331804 -14.546397 7.402542 -2.684141 1.046693 7.243359 -1.711581 0.376093 -7.167075 7.744338 -9.282887 11.247826 5.845853 -15.260740 1.135796 3.165399 10.292441 4.781550 9.180497 1.989652 -3.939582 -1.603150 0.841101 12.572390 -3.915614 1.047028 -0.836832 -7.613628 -16.882632 -4.990870 11.305536 -1.712187 3.148793 3.652817 15.878159 9.032017 8.039383 -7.569536 7.311435 7.663561 -3.559693 7.127505 0.151030 -3.493423 -2.029406 5.594533 -0.065808 -6.257080 3.441321 -1.433972 -14.550191 3.757108 8.706366 14.042687 -7.510195 -2.391576 4.200446 -0.700509 3.775179 0.331533 9.213946 3.266349 1.342775 13.880290 -4.595036 -1.866850 -15.272193 3.461161 -26.567440 -10.393362 -11.382333 8.322861 5.136787 0.949409 -5.467704 18.903803 2.372300 -0.074274 9.962146 9.425112 -4.218180 -0.539756 -11.922444 -3.184723 1.808404 -7.361960 -5.411259 5.984177 4.101544 -6.717261 -3.431962 1.917010 -3.072007 -6.226587 -1.885759 -10.686541 10.132364 -11.896561 -4.732064 -15.839487 2.861197 0.583875 -15.042405 2.707269 -1.285964 4.575262 2.289038 6.434727 2.149235 2.843201 6.363570 -2.454546 -0.665253 -9.808506 14.799934 6.255749 -3.991090 4.283035 8.590410 -0.028544 1.378018 13.340347 -0.235890 -11.657664 8.575806 -5.282154 0.933416 -4.245426 3.129267 10.714741 -6.878906 -3.730070 -1.358282 -1.287723 -2.918516 -3.237661 -8.549175 6.182995 18.249473 -1.863457 3.768518 -1.002641 -6.771052 11.852084 2.831114 -1.947534 7.139179 7.733647 4.265926 -9.378992 -5.920890 5.547337 10.244836 2.058978 -9.932747 -2.312630 0.299060 2.396644 -3.368987 4.253278 6.908502 -0.745447 -2.477120 -0.251624 -4.028899 14.666598 -5.428962 -9.909557 3.556361 5.329114 -6.550120 -11.776050 -0.219518 -1.872455 -8.116656 -0.761274 0.161709 2.868015 9.516131 -18.303137 8.284401 0.789941 -3.155997 7.495735 -7.939598 2.199954 -19.727458 0.106174 4.978164 7.652987 -0.001833 -3.319505 -2.784717 -10.636361 6.637573 0.039642 6.017652 -3.899918 10.369436 -7.063004 -3.537182 -6.823563 -8.021921 -4.731717 1.711255 -3.677696 1.437506 3.613428 -16.318421 8.325742 -8.267810 -5.221463 2.313711 4.845062 6.379220 -6.464916 -10.879285 4.173319 -2.014052 -13.360587 -12.856307 -4.119949 4.099844 -0.272305 -7.183150 -5.869628 -14.240180 8.981353 -5.659301 4.834946 5.038841 2.014995 15.737852 10.727769 -9.965587 -5.720239 -6.070255 2.210324 -3.858029 0.809679 -2.986523 -2.038603 4.897127 10.261176 -0.548389 4.751097 -4.906875 12.904652 -7.487899 -8.328109 4.962607 -2.373449 0.123666 9.719136 6.929622 -4.743643 -5.823194 -12.514099 2.284631 -2.644512 -2.439696 4.677555 -11.184082 -2.795409 6.383927 -0.704628 -5.820050 3.784154 1.961293 -4.170179 -9.476209 18.322392 17.584143 -11.838316 4.694810 -7.155543 7.891194 -9.096919 -1.392784 -6.102394 1.632517 4.880999 2.979565 4.163749 3.487695 5.942992 -9.391644 -4.735970 -4.654264 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -0.305981 0.849702 1.216838 -1.784945 1.985197 1.359859 0.607579 -0.206534 -1.339812 -2.054558 -0.117543 -2.494142 -2.910511 1.940163 -0.955376 0.103253 2.708012 -0.369850 -0.075236 -1.175449 1.442571 -0.702012 3.292747 2.991898 -3.399330 0.512566 0.380196 1.821514 0.534554 2.075955 0.935327 -2.532158 0.054595 0.170368 2.066484 -0.833586 -0.664457 -0.306229 -0.728104 -4.266238 -0.777459 2.455037 -0.335576 0.659588 0.876674 1.329148 3.413171 1.734625 -1.195700 1.538031 1.737732 0.488859 1.610080 0.127970 0.205859 -0.697718 1.119033 -0.960043 -0.734002 0.436177 -0.902579 -1.883271 0.180760 2.595380 3.108673 -0.552314 -0.977882 -0.138379 -0.109276 0.806165 0.213170 2.511014 0.673794 1.219864 2.353445 -1.300327 0.326909 -3.937276 1.003467 -5.200455 -2.362357 -1.776306 1.994513 2.519556 0.655983 -1.258953 4.098077 -0.037984 0.097528 2.322354 2.954038 -0.906558 -0.053517 -1.589462 -1.401386 0.338938 -0.968091 -0.067619 -0.076604 1.150089 -1.902923 -0.836760 0.391641 -0.664494 -1.461282 -0.375504 -1.252869 2.060496 -2.830287 -0.490623 -2.566948 1.260466 0.301886 -4.039155 -1.113863 -1.104451 0.315426 0.464891 -0.417951 -0.550267 0.946750 0.911661 -0.811898 -0.066339 -2.362104 2.806786 1.746999 -0.032778 0.251076 1.617818 0.566532 1.757900 1.718940 -0.381860 -1.003872 0.955312 -0.225939 0.202284 -0.817056 0.541004 1.291041 -1.571591 -0.586075 0.585546 -0.818489 -0.971939 -1.442390 -1.911139 0.868381 7.347257 -1.104518 2.043244 1.153377 -2.112472 1.719621 0.393459 -0.264075 1.158530 1.790327 1.846105 -2.475064 -1.574510 1.818623 3.080573 0.725113 -2.097070 0.161891 0.816280 0.069589 -0.749222 1.310697 0.355347 0.019641 -1.135852 -0.157638 0.687698 3.864063 -0.678220 -2.351512 0.385403 1.714833 -0.396555 -1.385752 0.033655 -1.177735 -0.588502 0.924016 0.069921 1.017287 2.527245 -4.931394 2.192060 0.495290 -0.311281 2.087840 -0.451230 -0.446966 -3.495448 0.097858 1.561897 1.759887 -0.120095 -0.308596 -0.600889 -2.690210 0.754259 0.524277 1.319636 -1.936933 2.517604 -0.653983 -1.414293 -1.580569 -1.751747 -1.056030 0.000358 -1.786596 1.022140 0.870512 -3.863616 2.271963 -0.300643 -1.193955 -0.065539 -0.398795 1.892914 -1.876881 -2.549396 0.863545 -1.485745 -3.022888 -1.416368 -1.044486 0.724746 0.585705 -0.170203 -2.260159 -2.509711 2.655497 -0.843952 2.273391 1.764985 0.566768 2.950537 1.453717 -1.760281 -1.300738 -2.033676 1.579800 -0.259497 -0.949252 -0.886200 -1.104625 1.119448 3.009759 -0.326843 -0.377319 -0.920203 2.711059 -1.641090 -1.004396 1.130968 -0.738758 -0.982956 1.561328 1.466820 -1.068936 -0.651877 -2.704505 0.310885 -0.898921 -1.287855 1.515131 -1.973772 -0.011595 1.241788 -0.605770 -1.457591 1.022428 0.415013 -0.446036 -0.458985 3.351744 2.559805 -1.542602 0.997968 -2.355102 1.704425 -2.918212 -1.542866 -0.723211 -0.276012 0.142734 -0.254849 -0.285538 1.440924 1.511330 -1.123434 -1.062255 0.503699 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = -0.273868 1.062068 1.936267 -1.670307 1.917972 0.300800 0.760778 1.000218 -1.383148 -3.609333 -0.072431 -3.706942 -4.822049 2.422655 -1.251193 -1.053894 3.621981 -0.173526 0.362006 -1.784511 1.058082 -1.159557 4.078784 3.986280 -4.635016 0.363695 0.014423 2.410485 1.052271 1.941776 2.125175 -3.698244 0.242003 1.515035 3.476587 -0.749651 -0.311593 -0.631313 -2.510278 -5.613297 -1.171611 4.097619 0.092430 0.833802 1.366099 3.355403 4.457210 2.318502 -1.961550 1.832848 2.352088 0.312927 2.140640 0.111755 -0.515087 -2.486238 0.542056 -1.773879 -1.751541 1.179182 -0.784688 -3.762865 -0.435983 3.298214 4.364162 -0.837406 -0.875288 -0.773134 -0.164110 1.315732 0.324205 2.845678 2.527418 1.522066 3.487441 -0.092253 -0.425077 -5.526397 1.196287 -8.973680 -3.211578 -2.964947 4.283350 3.731987 -0.555379 -2.848163 4.987232 0.796919 0.622398 3.594099 4.227095 -0.504218 -0.642201 -2.652027 -1.382592 1.415604 -1.953104 0.230481 0.381470 1.686495 -2.531131 -0.747529 0.185324 -1.547730 -1.763903 0.072868 -1.841110 2.600175 -3.810147 0.381930 -4.394139 1.014154 1.889160 -5.181798 -0.295973 -0.893544 0.089522 1.338169 -0.270116 1.010016 0.860530 0.271513 -1.046000 0.842635 -5.149706 4.374152 1.525823 -0.112972 0.732118 2.818292 1.097312 0.940362 1.891308 -0.520577 -1.699217 1.440772 -0.765973 0.103115 -1.602744 0.504169 3.540917 -1.650429 -0.830561 -0.569156 -1.267997 -2.157535 -2.987760 -2.781311 1.697164 7.069987 -0.915401 2.208646 1.175360 -2.250235 3.026466 0.518580 -0.422818 1.348541 2.669033 2.281482 -1.417282 -1.910804 1.947649 3.936616 0.946342 -2.274888 0.758740 1.263904 0.512540 -1.690096 1.923643 1.062637 -0.044222 -1.272707 -0.029045 1.387355 3.829531 -0.453262 -2.641059 -0.137902 2.883800 0.421275 -1.339952 0.568386 -0.260067 -0.772508 0.884202 0.497051 1.286140 3.316266 -6.645538 2.832766 1.473784 0.456227 1.927793 -1.168013 -0.732176 -5.561590 1.020246 2.196059 2.240699 0.718930 -0.356641 -0.751305 -3.422323 0.860951 0.605674 2.084461 -2.048866 2.940521 -1.605263 -1.080117 -2.546976 -3.337457 -1.732778 0.533136 -2.482639 1.182248 2.602382 -5.020423 3.092677 -1.299691 -1.924633 -1.354657 -0.731942 1.906035 -3.211375 -3.322257 0.294154 -2.754649 -5.690409 -2.807920 -1.464371 0.516963 -0.267858 -0.901915 -1.974614 -3.275406 4.530173 -1.040906 2.625085 2.141348 0.706505 4.412384 3.842346 -2.427998 -1.152432 -2.717599 2.503451 -1.528710 -1.121115 0.507659 -1.120208 0.915624 4.255498 -0.894437 -0.439425 -0.902384 3.245836 -1.700524 -2.604741 1.621829 -1.655670 -0.025672 3.164072 1.964468 -2.135579 -1.025347 -4.380507 0.486130 -0.462355 -1.996003 1.402313 -3.304030 -0.171688 1.961861 -0.755496 -2.309805 1.359962 0.325902 -1.376891 -1.012664 4.748027 3.978275 -2.634051 2.297680 -3.489177 2.295333 -4.032886 -2.143072 -1.148808 -0.421961 0.642440 0.005316 -0.205770 1.002012 1.873781 -1.846543 -2.471300 1.323395 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -0.640476 0.397050 1.563674 -2.434701 2.577184 1.950271 0.826479 -0.485132 -2.104511 -2.121583 0.204689 -3.115585 -3.712606 2.660048 -1.362296 0.401684 3.074415 -0.687856 -0.561867 -1.733487 2.144955 -0.569662 4.284309 3.566335 -4.408147 0.512841 0.144161 2.591598 1.011362 2.544771 1.166557 -2.638810 -0.153900 0.236687 2.481990 -0.833069 -0.689789 -0.129473 -0.824928 -5.232221 -1.018087 3.388533 -0.406341 0.845670 1.156767 2.294300 3.673251 2.411310 -1.319213 2.176976 2.454155 0.352370 2.116328 0.049549 0.241498 -0.963572 1.882424 -1.004687 -0.945593 0.279904 -1.053534 -2.190438 0.327711 3.339804 4.123788 -0.935563 -1.345025 -0.048614 0.079915 1.216802 0.561354 3.244872 0.540790 1.328322 3.229493 -1.189657 0.497175 -4.408104 1.532826 -6.130938 -2.897123 -1.883975 2.807765 3.046224 0.741991 -1.658170 5.581127 -0.028360 -0.608812 3.137607 3.409881 -1.109703 -0.025318 -1.967248 -1.895279 0.254833 -1.409683 -0.187452 0.073897 1.941392 -2.462417 -0.712245 0.086315 -0.858422 -1.911187 -0.239238 -1.865105 2.668988 -3.593978 -0.563137 -2.904582 2.236051 0.501279 -5.166316 -1.955373 -1.669868 0.514129 0.270125 -0.334835 -0.184481 1.272009 1.044794 -1.084899 0.080494 -2.904771 3.464739 2.402871 -0.098980 0.217655 2.229411 0.494280 2.099765 1.962014 -0.646838 -1.556325 1.456955 -0.194858 0.724545 -0.904506 0.907008 1.593921 -1.999873 -0.433319 0.503373 -0.811682 -1.205432 -2.137203 -2.030425 0.877834 9.165824 -1.283025 2.749358 1.506214 -2.415547 2.044041 0.488583 0.001544 1.759116 2.047962 1.812068 -2.955123 -2.124745 2.617156 3.976547 0.917759 -2.886915 0.662307 1.299612 0.168741 -1.121849 1.783372 0.687439 0.003683 -1.306326 -0.283050 0.465707 5.001753 -0.925634 -3.120027 0.724578 2.094107 -0.744076 -1.430454 0.004710 -0.992203 -0.979735 1.326120 0.245910 1.454372 3.259016 -6.043887 2.816891 0.839551 -0.395454 2.891532 -0.800843 -0.614769 -3.930998 -0.396010 1.554037 2.348880 -0.197906 -0.890436 -0.497830 -3.574960 1.273186 0.665139 1.388023 -2.346141 3.317276 -0.760878 -1.499857 -1.826227 -2.376802 -1.350003 0.416649 -2.338785 1.319605 0.420200 -4.992081 2.677298 -0.466361 -1.513975 -0.189613 -0.168850 2.383800 -2.098461 -3.104608 1.204178 -1.658138 -4.013302 -2.290064 -1.282868 0.916979 0.911496 0.188646 -3.175420 -3.254977 3.557601 -1.392233 3.069348 2.039826 0.320629 3.547569 1.718553 -2.220104 -1.651290 -2.642783 2.110153 -0.106781 -1.183729 -0.605606 -1.208407 1.480603 3.159785 -0.396111 -0.456332 -1.344338 3.732789 -1.817023 -1.376340 1.239658 -0.868307 -1.310113 2.342659 1.866994 -1.330735 -0.564851 -3.522589 0.087791 -1.568432 -1.411719 2.290272 -2.052020 0.246241 1.234739 -0.429746 -1.742312 1.173961 0.639737 -0.854636 -0.650282 4.834454 3.493043 -1.911054 1.328956 -3.156563 2.498489 -3.298719 -1.729616 -0.912018 -0.661733 0.125407 -0.168173 -0.431901 2.114175 2.247468 -1.910185 -1.487267 0.732114 +PE-benchmarks/optimal-binary-search-tree.cpp__main = 0.162913 0.597579 0.725810 -0.156080 0.563398 0.022536 0.249307 0.661427 -0.494231 -0.975072 -0.070960 -1.296524 -1.479833 0.774862 -0.019971 -0.500110 1.155099 0.098799 0.069975 -0.315409 -0.257796 -0.243751 1.018593 1.127525 -0.975072 0.446680 -0.146966 0.279272 -0.164892 0.808335 0.101136 -1.329368 0.148796 0.696302 0.658578 -0.036000 -0.402011 -0.577161 -0.884801 -1.721040 -0.204774 1.408971 0.005261 -0.018943 0.430784 1.057386 1.592316 0.490040 -0.222612 0.576336 0.219546 -0.173838 0.585463 0.003014 0.294670 -0.591388 0.456056 -0.429587 -0.845348 0.454882 -0.143059 -1.236701 -0.675479 0.682114 0.864969 -0.185458 -0.454203 -0.520506 -0.193365 0.263224 -0.096704 0.605751 1.042353 0.486595 0.746357 0.711255 -0.088900 -0.730001 0.183667 -2.619333 -1.118419 -0.661380 1.762027 1.063089 -0.412599 -0.957276 1.233071 -0.041913 0.315609 0.596316 1.433517 -0.208911 -0.380274 -0.396292 -0.101320 0.500558 -0.381032 -0.016925 0.276720 -0.040351 -0.844419 -0.064102 0.425990 -0.523596 -0.509573 0.597123 -0.272300 0.687771 -1.230163 0.324325 -1.392001 -0.003946 0.853185 -1.249029 -0.242030 0.478675 -0.087882 0.801773 -0.478293 0.247276 0.453527 -0.221433 -0.414973 0.323556 -1.432934 1.275555 0.006527 0.074070 0.491827 0.774656 0.742121 0.178188 0.592058 -0.138464 -0.110476 0.280223 0.000000 0.078725 -0.028511 -0.120471 0.184275 -0.423324 0.192242 -0.314137 -0.590286 -0.399248 -1.571461 -0.407334 0.235122 1.213750 -0.373484 0.704291 0.081478 -0.679326 0.811777 -0.132245 -0.551798 -0.077971 0.748416 0.895364 0.274665 -0.292990 0.587559 1.269260 0.392619 -0.673358 0.684552 0.300492 0.107139 -0.406034 0.944845 0.200522 0.599268 -0.442694 -0.112210 0.482663 1.261290 -0.166378 -1.475182 -0.114501 0.236896 0.747810 -0.099821 0.370115 0.435392 -0.117820 0.190639 -0.057237 0.338905 0.897171 -1.927807 0.959731 0.233198 -0.393485 0.803261 -0.160581 -0.282477 -1.003370 0.107188 0.777131 0.986271 0.630935 -0.400222 -0.461910 -0.844820 -0.122801 0.203309 0.403803 -0.528306 0.858474 -0.346170 -0.455535 -0.501565 -1.427081 -0.120556 0.241416 -0.891580 0.306341 0.798580 -1.878702 0.971740 -0.004039 -0.496248 -0.730733 -0.124384 0.139360 -0.780826 -1.026864 -0.155884 -0.975138 -1.960767 -0.455330 -0.674464 -0.087258 0.095389 -0.173638 -0.224623 -0.720377 1.604676 0.085342 0.918620 0.685178 0.109813 1.316255 1.566092 -0.785064 0.195209 -0.748185 1.087918 -0.969715 -0.104207 0.610970 -0.641646 0.178275 1.098642 -0.151027 -0.135860 -0.813011 0.658737 -0.294336 -0.624471 0.612838 -0.630572 0.152830 0.990113 0.756277 -0.472253 -0.134767 -1.226362 -0.248374 -0.322847 -0.464317 0.093607 -0.937756 -0.265938 0.753373 -0.506874 -0.829801 0.229219 -0.335082 -0.636999 -0.291883 1.064869 1.118879 -1.085120 1.195539 -0.864021 0.781695 -0.996442 -0.627538 -0.159255 -0.051162 -0.149095 -0.352620 -0.076613 -0.150614 0.221200 -0.799449 -0.850389 0.621482 +PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -0.793634 -0.648553 -0.328054 -0.795861 0.881369 1.115105 0.581723 -0.891103 -1.611247 -0.556211 0.501818 -1.902503 -1.142871 1.967350 -0.464584 1.614826 2.514326 0.470007 -0.617554 -0.682930 1.587569 -0.841330 2.692396 2.901503 -1.726937 0.115391 0.306731 0.670137 0.464932 0.477818 0.064075 -1.167267 0.923981 -1.952446 0.221018 -1.300632 -0.410161 0.788190 1.472208 -3.189530 -0.189803 0.686466 0.275691 0.001849 -0.027443 1.181999 1.589273 1.551276 -0.309028 1.785528 1.067009 -0.434922 0.929731 0.214862 0.494794 0.492739 0.240303 0.372911 -0.510411 -0.105829 -0.562510 -1.098301 0.248846 1.743399 2.399048 -0.289501 -0.831149 0.719263 0.175590 0.409417 0.618211 1.451420 0.210499 0.180340 1.427225 -2.337229 -0.069003 -3.444570 0.037608 -4.033156 -1.348225 -0.146332 1.349001 0.113742 1.312805 -0.094804 2.848666 -0.384671 -0.788385 1.640494 2.238652 -1.965468 -0.544938 -0.494718 -0.645389 0.141304 -1.012070 0.270407 1.097681 0.312124 -1.696265 -1.557876 0.799503 0.368903 -1.076906 -1.273355 -0.263879 1.489134 -1.911414 -1.567341 -1.391553 0.547528 -0.452538 -2.869650 -0.260831 -0.997049 0.647483 0.700183 -1.298675 -1.703684 0.846979 0.620516 -0.365233 -1.228510 0.145783 1.452116 1.011632 0.358760 0.126787 0.807736 0.336946 2.836656 1.215078 -0.994836 -0.037689 0.711731 -0.720470 0.896360 -1.055152 -0.738820 1.039761 -1.882091 0.022840 0.711888 -1.132225 -0.234283 1.612482 -0.087579 -0.004048 5.254983 -0.312251 1.936838 1.620527 -1.758581 1.116246 -0.801412 0.364810 0.951634 1.515658 0.835231 -2.717385 -1.474602 1.381764 2.676400 1.071524 -2.238575 -0.920426 0.308942 0.687195 -0.228414 0.824639 0.384414 0.330235 -1.146263 -0.096628 0.787727 3.650355 -1.529582 -0.173706 0.366148 0.767876 -0.503689 -2.600638 -0.411315 -1.941869 -0.189668 0.343072 0.384498 0.651282 2.134690 -3.010959 1.763967 -0.901240 -0.173728 1.518980 0.760899 -1.372694 -2.505338 -0.365967 0.793084 1.763848 0.099468 0.230318 0.432708 -2.278289 0.060662 0.271387 0.506188 -1.252681 1.974534 -0.125830 -1.058102 -0.765802 0.329349 -0.317109 -1.208123 -0.222446 1.446893 0.644650 -2.560204 1.412759 0.143059 -1.091437 0.520279 0.131129 1.628020 -1.655300 -2.024168 1.286943 -0.691846 -0.958315 -0.837949 -0.486748 0.810503 0.640856 -0.290682 -1.318400 -2.174168 1.875598 -0.640551 2.070286 1.074096 -0.403232 1.747494 -0.405895 -1.346848 -1.373665 -0.824937 -0.177753 -0.445200 -0.932385 -1.411660 -0.527781 1.664123 1.960690 0.353670 -0.728348 -0.193820 2.193867 -1.946061 -0.244699 1.026920 1.362825 -1.011923 0.876685 1.248387 -1.730373 0.178983 -1.208112 -0.233731 -0.842867 -0.953714 1.502276 -0.973445 0.543563 0.124422 -0.193441 0.092206 0.873573 0.777173 0.085136 0.102753 2.551243 2.030846 -0.947544 -0.272915 -2.068971 1.141217 -2.135355 -1.586633 0.079816 1.001035 -1.261434 -0.296662 0.464324 1.496382 1.095063 -1.310828 -1.021049 0.205288 +PE-benchmarks/n-queen-problem.cpp__main = -0.027413 -0.016906 0.130506 -0.095883 0.154569 -0.145434 0.105117 0.059316 -0.261442 -0.226555 0.052468 -0.313362 -0.208103 0.277145 -0.054903 0.094652 0.362832 0.154386 -0.015883 -0.117966 0.041459 -0.279743 0.321815 0.328353 -0.216282 0.076070 -0.085835 0.127177 -0.006197 0.255518 -0.028771 -0.226642 0.130526 -0.037066 0.099985 -0.171289 -0.018040 0.071922 -0.072049 -0.446997 0.031251 0.219641 0.226905 -0.028847 0.010073 0.258569 0.254281 0.186940 -0.008631 0.244052 0.119635 -0.081214 0.128704 0.084565 0.129561 -0.001537 0.166582 -0.186952 -0.269733 0.080444 -0.056715 -0.401145 -0.055653 0.170800 0.289272 -0.051813 -0.030418 -0.030871 -0.083579 0.096716 0.156004 0.054604 0.062119 -0.043052 0.127201 -0.089062 0.049253 -0.334003 -0.077353 -0.842890 -0.240984 -0.098840 0.442752 0.203999 0.010160 -0.023762 0.274856 0.003727 0.010180 0.067042 0.328109 -0.173473 -0.173162 -0.050012 -0.022967 0.124182 -0.153777 -0.076959 0.170563 0.079389 -0.216407 -0.024260 0.263946 -0.014359 -0.091776 0.055055 -0.026256 0.216658 -0.437381 -0.109003 -0.272279 0.002802 0.106117 -0.300448 0.218186 0.002030 0.070497 0.169734 -0.128737 -0.031195 0.122112 0.017112 -0.093498 0.027499 -0.421580 0.269225 -0.088372 0.073133 0.105011 0.109228 0.065760 0.180176 0.145211 -0.142042 -0.009053 0.080824 -0.085459 0.097898 -0.096940 -0.195130 0.080803 -0.250103 0.053552 -0.093733 -0.191345 -0.083073 -0.143529 0.061522 0.082949 0.165680 -0.025111 0.229183 0.110877 -0.194908 0.181031 -0.067235 0.005108 0.042078 0.223047 0.033428 0.081830 -0.190693 0.102352 0.277546 0.178905 -0.181872 -0.088125 -0.043190 0.096790 0.092349 0.095034 0.090201 0.065136 -0.189166 -0.033637 0.011044 0.398235 -0.039849 -0.084283 0.047944 -0.047393 -0.027163 -0.276585 -0.018512 -0.042190 0.033364 -0.148282 -0.002693 0.038944 0.299296 -0.545716 0.307262 -0.108670 -0.029823 0.219412 -0.041573 -0.124441 -0.530469 -0.073927 0.136237 0.341279 0.064726 0.023783 0.077567 -0.229731 -0.045870 -0.051153 0.087156 -0.095215 0.143309 -0.032312 -0.169711 -0.124605 -0.179072 0.024483 -0.002180 -0.059806 0.132266 0.329492 -0.473872 0.194799 -0.065686 -0.156278 -0.017904 0.121864 0.080535 -0.224948 -0.235033 0.013208 -0.185151 -0.351851 -0.201370 -0.049559 0.049112 -0.141626 -0.184826 0.048279 -0.107355 0.294509 -0.094448 0.165220 0.135248 -0.041604 0.265278 0.339853 -0.169705 -0.008265 0.039881 -0.056289 -0.418596 0.003481 0.195948 -0.102450 0.158404 0.291424 0.125984 -0.026495 0.045529 0.292274 -0.098030 -0.191803 0.264281 -0.099894 0.011509 0.288855 0.270196 -0.299278 -0.058997 -0.223385 -0.066986 0.006626 -0.099792 0.125789 -0.144265 0.037703 0.064132 -0.004819 -0.150397 0.118379 -0.015905 -0.101330 -0.093239 0.404773 0.298054 -0.177548 0.190616 -0.188208 0.068613 -0.276866 -0.147592 -0.045689 0.235896 -0.192282 0.046863 0.040975 0.111759 0.051854 -0.135291 -0.169767 0.064487 +PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -0.902141 -1.031335 -0.441530 -1.443136 0.769850 1.045681 0.529332 -0.930099 -2.127680 -0.882669 0.716886 -2.458073 -1.051206 2.206555 -0.679519 1.611910 2.728987 0.496574 -0.911641 -0.595422 1.737324 -0.669819 2.696241 3.158281 -1.825634 0.012112 -0.274148 0.997948 0.491701 0.485797 0.873432 -1.497165 0.495016 -1.637779 0.418722 -1.328573 -0.416223 1.314417 1.410983 -3.521325 -0.090032 1.533128 0.820314 -0.062958 0.135463 0.570372 1.468291 1.690470 -0.309875 1.700372 1.341436 -0.001723 1.063849 0.095851 0.464762 0.295914 -0.027555 -0.369985 -0.383164 -0.116171 -0.590609 -0.679597 0.478934 2.066418 2.574124 -0.205180 -0.966117 0.441304 0.512083 0.631928 0.921033 1.562358 -0.292135 0.099761 1.256890 -2.230295 0.101510 -3.591081 0.744641 -3.881554 -1.374796 0.191379 1.902530 1.539060 0.981933 -0.503572 3.111831 -0.719972 -1.083503 2.320860 2.218449 -1.416025 -0.537608 -0.770490 -1.125063 0.286477 -0.958543 0.004596 0.634479 1.200312 -1.783943 -1.087883 0.288832 0.301762 -1.167998 -1.096671 -0.164867 1.635098 -2.047786 -1.410203 -0.892870 1.631811 -0.053265 -3.109822 -0.607248 -1.668193 -0.300804 0.423457 -1.601639 -1.365387 0.892218 0.234747 -0.569127 -0.581537 -1.088076 1.482603 0.864966 0.385374 -0.206453 1.021027 0.294300 2.637218 0.308858 -1.356254 0.151657 0.869917 -0.365336 0.937353 -1.207835 -0.777610 1.059650 -1.943737 -0.334477 0.455009 -1.202202 -0.536269 0.515944 -0.136391 -0.130048 6.215251 -0.389058 2.318540 2.006577 -1.626011 1.399606 -0.345564 0.602507 0.951846 1.458627 0.767718 -2.561510 -1.703342 1.587783 2.957958 1.180617 -1.612127 -0.737701 0.692269 0.489683 -0.032801 1.012208 0.194844 0.036624 -1.229613 -0.242365 0.866226 3.683401 -0.826644 0.411942 0.250156 1.504773 -0.681533 -2.174062 -0.296460 -2.308766 -0.073336 0.493881 0.442597 1.009852 2.383966 -3.101533 2.034836 -0.424910 0.346425 1.399175 0.510088 -1.504868 -3.300951 -0.750154 0.672238 2.038482 -0.492966 0.354941 0.632066 -2.474713 0.099378 0.382732 0.497617 -1.515808 2.083190 -0.291813 -0.815104 -0.663900 0.447959 -0.960898 -0.987910 -0.557349 1.608998 1.000208 -1.718234 1.489736 0.208527 -0.940696 0.265540 0.056402 1.732485 -1.805545 -1.908956 1.263881 -0.630766 -1.317363 -0.798148 -0.600223 0.990357 0.510759 -0.349567 -1.470685 -1.974226 2.090736 -0.841930 2.439045 1.135610 -0.758762 1.296318 0.157752 -0.982668 -1.132036 -1.298053 -0.245033 -0.264070 -0.978535 -1.212362 -0.552534 1.610188 1.798976 0.319007 -1.286666 0.171599 2.477579 -1.151224 -0.290907 0.789751 -0.067318 -1.182100 0.914457 1.177964 -2.002283 0.465543 -1.777685 0.279409 -0.992217 -0.844643 1.836772 -0.600821 0.748413 -0.077278 -0.195266 0.017099 0.887384 1.217635 -0.190349 0.516216 3.077713 1.014300 -0.149594 -0.099714 -2.432782 1.145584 -2.219832 -1.557240 -0.285345 0.967567 -1.420443 -0.277020 0.111254 1.839580 1.421690 -0.867785 -1.126757 0.732675 +PE-benchmarks/n-queen-problem.cpp__solveNQ() = -0.168068 -0.222581 0.454091 -0.594387 0.426311 -0.021132 0.245304 0.217470 -1.055063 -0.791868 0.174043 -1.334392 -0.859687 1.023838 -0.240124 0.080842 1.368165 0.372668 -0.276684 -0.343818 0.268808 -0.375704 1.048789 1.376449 -0.834763 0.183625 -0.465348 0.460062 -0.012202 0.625936 0.413330 -1.052617 -0.065132 0.186086 0.587860 -0.422839 -0.308737 0.347311 -0.168148 -1.858408 -0.013879 1.372548 0.722867 -0.063002 0.380903 0.516015 0.958410 0.648505 -0.125370 0.689402 0.523939 0.021835 0.637279 -0.014032 0.249685 -0.151957 0.394029 -0.542563 -0.567532 0.355838 -0.280633 -0.611122 -0.062495 0.843113 1.094659 -0.086483 -0.485041 -0.470085 0.269441 0.458372 0.365289 0.602230 0.224510 0.075743 0.505366 -0.123020 0.001234 -1.537903 0.568227 -2.134138 -0.929484 -0.129595 1.646648 1.474192 -0.207408 -0.619624 1.353117 -0.357438 -0.188748 0.807810 1.141503 -0.141207 -0.358315 -0.424464 -0.558978 0.368570 -0.343490 -0.218402 0.145652 0.667860 -0.837679 -0.156247 0.260419 -0.268490 -0.469714 0.344760 -0.128738 0.906988 -1.051412 -0.139142 -0.751563 0.881199 0.628907 -1.290935 0.024842 -0.492447 -0.647680 0.542118 -0.810465 0.045865 0.528050 -0.274192 -0.582862 0.386246 -1.634629 1.122412 -0.031886 0.052104 0.019368 0.561824 0.269585 0.308720 0.107714 -0.663685 0.105500 0.504382 -0.046718 0.221839 -0.528975 -0.348282 0.265419 -0.658057 -0.005398 -0.339557 -0.640093 -0.452289 -1.234114 -0.165695 0.056864 1.760426 -0.364720 1.008943 0.544611 -0.566997 1.174722 0.212457 0.066924 0.148802 0.788645 0.486925 -0.241294 -0.640479 0.651026 1.363646 0.555410 -0.420163 -0.064428 0.338118 0.069050 0.048218 0.852435 0.149593 0.127756 -0.550679 -0.171417 0.232398 1.470421 0.078200 -0.642313 -0.130921 0.590920 0.149502 -0.567367 0.172901 -0.517011 -0.030509 0.142580 0.069288 0.506636 1.077799 -1.995058 1.135716 0.131815 0.056498 0.860289 -0.164860 -0.461356 -1.646010 -0.329824 0.406356 1.248836 0.114130 -0.304125 0.083778 -1.020255 -0.014994 0.095311 0.379814 -0.719647 0.900954 -0.368190 -0.362911 -0.254436 -0.717160 -0.471849 -0.153438 -0.715143 0.536629 0.907196 -0.986392 0.750297 0.011229 -0.332938 -0.293736 0.041579 0.376329 -0.643898 -0.769190 0.102316 -0.537496 -1.315437 -0.619612 -0.513676 0.274075 -0.044286 -0.097314 -0.326751 -0.781234 1.240594 -0.316768 1.181636 0.584829 -0.380053 0.674705 1.643152 -0.447942 -0.021582 -0.572176 0.341067 -0.596223 -0.150848 0.007138 -0.461373 0.411636 0.854908 0.065747 -0.441351 -0.472278 1.124457 -0.071155 -0.415856 0.473136 -1.306500 -0.045130 0.793147 0.705277 -0.906489 0.074314 -1.195223 0.202379 -0.358627 -0.230453 0.573749 -0.461201 0.077692 0.081871 -0.270087 -0.466768 0.265268 0.310842 -0.566714 0.016089 1.534728 0.357691 -0.230266 0.865542 -1.011032 0.661606 -0.954890 -0.444193 -0.449739 0.254317 -0.669131 -0.114108 -0.139726 0.457404 0.395715 -0.319680 -0.774840 0.658791 +PE-benchmarks/graph-coloring.cpp__main = 0.267887 -0.679796 3.042300 -1.598601 2.725123 -2.039413 0.223947 1.552709 -1.652106 -0.782639 -0.582302 -1.132348 -2.306775 1.479873 -1.639049 -0.558638 1.336616 0.089712 0.801919 -1.788739 0.421505 -1.208553 1.638147 -0.714801 -3.012818 -0.004752 -0.807847 2.451986 0.920876 3.120003 1.457496 -1.539243 -1.722786 1.904055 2.918132 -1.578283 -0.233111 0.432714 -2.267282 -4.332794 -1.186971 4.619060 -1.655526 1.360678 3.807694 7.187668 0.699679 0.985323 -2.246603 3.979305 0.367541 -0.030872 2.604276 -0.603449 -2.569351 -0.302910 3.201374 -0.854922 -2.486015 2.244554 -1.246502 -1.709501 1.762103 1.699802 2.746865 -2.554217 -1.402402 0.343305 1.533381 0.883879 0.671995 2.625525 0.041001 1.487599 2.426920 1.391875 -0.404448 -2.229165 1.733062 -5.649247 -1.988359 -1.721715 2.568359 1.935605 -2.989258 -1.400920 4.223113 0.716393 -0.262466 4.261071 0.757938 1.682043 0.160904 -2.998268 -1.273832 -0.603712 -0.516961 -3.602633 0.991755 3.260730 -1.095954 -0.310586 -1.758199 -2.022384 -0.941546 2.059223 -2.774134 2.257802 -3.755241 -1.278137 -3.083727 2.665465 0.467378 -2.459345 -0.363843 0.854836 1.916106 0.892459 2.479721 2.612783 1.642769 0.688522 -1.323449 3.636333 -3.154280 3.860844 0.088043 -0.584733 -0.151050 2.687607 -0.968315 -2.916100 1.759016 -0.348121 -2.702029 3.111777 -0.102700 -0.402157 -1.017233 1.474710 1.650640 -0.738578 -0.125336 -1.538311 -0.412696 -1.617731 -4.551175 -2.555244 0.734475 1.114598 -1.698429 0.982352 -1.574138 -1.444941 1.080339 2.350466 0.574397 0.322670 1.224860 2.117847 0.257843 -0.497571 1.282646 1.353524 0.164335 -1.522678 0.949974 0.443133 0.254389 1.513405 1.590551 2.583954 -1.838840 -0.616402 0.182630 -4.642543 3.800386 1.113435 -3.492677 -0.637632 2.313951 -1.714443 -0.307975 1.154514 1.800092 -2.803117 0.572318 -0.272330 -0.053155 1.321861 -5.860571 2.160982 1.379542 0.214874 0.056717 -2.821569 1.235461 -5.598999 -3.003957 0.373113 1.588648 0.013543 -1.485571 -0.218958 -0.974963 2.999032 -0.235807 2.134460 0.049405 2.671183 -1.485066 -1.293201 0.140783 -1.193079 -0.838191 2.260894 -1.418154 0.015967 0.807250 -4.256389 0.478991 -2.683060 -0.573576 0.501921 3.362338 1.245990 -0.605538 -1.438207 -0.072803 -0.612358 -4.422375 -3.654628 -2.186119 -0.047350 0.362666 -0.546502 -1.060101 -2.992740 0.537752 -2.064847 -0.105332 1.306686 -1.155613 4.229609 1.644253 -1.636286 0.218059 -2.667584 1.493322 -0.345281 4.099289 2.567697 -0.541488 0.249165 0.679911 -0.834861 1.002755 -2.941642 2.727638 0.710365 -0.217676 0.335559 -4.336408 1.125724 2.763578 1.077272 -0.423872 -0.151998 -2.294406 1.926470 -2.234005 4.221713 0.873951 -2.668534 -3.091772 0.043073 -0.060927 -2.804209 -0.656822 0.222296 -2.367742 -1.802571 4.373092 4.994033 -1.857946 3.846691 0.562181 2.438386 -1.034062 1.203824 -3.767361 -1.570729 2.008094 1.647832 0.037971 0.157278 2.471723 -2.457819 -0.985905 0.071750 +PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -4.068353 -1.340295 2.543634 -8.368763 5.257887 8.969360 2.439301 -4.568412 -9.479330 -6.225861 2.787705 -15.816688 -9.886371 11.927255 -4.697569 4.653579 15.009859 0.542392 -5.127081 -3.076411 7.354529 0.595560 15.938085 17.667763 -12.136613 0.440994 -0.535227 6.889266 2.837734 3.887758 4.312461 -10.401781 1.306367 -3.782656 3.477632 -3.903010 -2.745047 2.061670 3.535502 -20.034196 -1.571672 10.213177 0.645006 -0.312466 2.387169 2.299315 12.782179 9.386683 -1.254799 6.123147 7.236221 1.660370 6.051891 -0.213731 2.375587 -2.086261 3.283059 -4.057969 -2.633685 -0.686901 -2.797600 -4.033950 -0.251488 13.225735 14.455052 0.329860 -5.636808 -0.019478 2.864937 3.352236 2.306518 9.763230 0.883328 6.287302 7.246053 -7.676611 2.285218 -16.361792 5.027845 -16.783893 -9.454272 -1.477333 10.544281 12.350545 3.601069 -5.420743 18.205837 -2.881193 -3.861818 12.312558 15.287453 -7.104632 -2.573861 -5.380304 -6.643504 2.371833 -5.554822 2.145789 -1.081937 6.465214 -10.485042 -5.227882 0.329084 0.155087 -7.137291 -1.579865 -1.597868 9.402497 -10.705994 -4.491735 -6.597338 8.024553 1.925924 -19.463471 -7.709591 -7.243782 -1.148164 2.912653 -8.074493 -6.760452 4.894056 1.689073 -3.290507 -1.854526 -9.731768 10.207920 6.712419 1.070776 -0.800171 7.003597 4.702375 12.681088 1.985662 -5.839935 0.202579 3.519788 -1.797924 3.400282 -5.057652 -1.302725 2.885481 -8.913179 -1.907946 4.783526 -6.509126 -3.753250 -5.645494 -3.038051 0.683507 37.681445 -3.606466 12.369164 9.345232 -10.338682 7.908913 -1.967083 -0.069640 3.224983 6.538618 8.109808 -14.864515 -8.643821 10.320582 17.663173 5.971698 -8.663567 2.026361 4.932145 0.896860 -3.987115 8.083824 1.661492 0.534684 -6.468907 -2.030472 7.987887 20.257627 -4.159615 -5.968481 1.435380 6.553032 0.680366 -7.593661 -0.108254 -6.614422 -0.699685 5.807333 2.340387 6.518213 13.575406 -18.002684 11.493486 2.098921 -0.349394 10.599339 0.714423 -8.048497 -11.437851 -1.567311 7.002481 10.012384 -0.907125 -1.699156 -0.067546 -14.127594 0.314549 3.777990 3.872531 -8.817912 12.155645 -0.771104 -5.610294 -6.038821 -3.448476 -5.134637 -3.512876 -7.702373 8.213793 2.599987 -12.369263 11.745866 2.181553 -4.950104 -1.424166 -4.222937 8.940963 -10.970280 -11.866341 5.580846 -5.850177 -10.915618 -4.107557 -4.733829 4.173844 5.181537 1.618117 -11.024736 -10.908070 12.855196 -2.949466 14.128464 6.995633 -1.132576 8.279757 5.087050 -5.479158 -5.112826 -10.168054 5.244730 0.890765 -7.386584 -5.518824 -4.360570 8.019769 11.385242 -2.219512 -7.095128 -3.533949 11.808113 -6.602405 -3.358524 3.432803 -2.717873 -7.613992 4.242346 6.007139 -8.396084 1.655073 -11.536680 -0.215098 -7.404025 -7.234453 7.969278 -4.895757 2.932587 3.045634 -2.971433 -2.829189 4.305509 4.602306 -2.101478 3.432602 15.904469 6.818458 -2.520474 3.000822 -15.254356 8.967447 -13.989158 -10.574600 0.397538 0.260753 -5.191667 -3.474148 -0.971329 8.391796 7.400207 -5.626555 -6.620263 5.599251 +PE-benchmarks/reservoir-sampling.cpp__main = 0.008311 0.235284 0.419628 -0.120056 0.570190 0.108257 0.307409 0.362499 -0.593541 -0.582022 -0.040533 -0.816026 -0.910711 0.791835 0.030811 0.119323 1.165555 0.328805 0.024149 -0.266118 0.099627 -0.551814 0.997945 1.053967 -0.718973 0.352935 -0.018479 0.180545 -0.207409 0.774684 -0.254895 -0.923443 0.383555 -0.128578 0.323256 -0.422265 -0.313908 -0.158026 -0.228736 -1.543929 -0.068978 0.741350 -0.008880 -0.055415 0.168908 0.769342 1.143131 0.490002 -0.111017 0.744915 0.146080 -0.310667 0.428222 0.136730 0.402813 0.119127 0.300643 -0.095927 -0.720531 0.316130 -0.229175 -1.084410 -0.316736 0.494654 0.777325 -0.206924 -0.347918 -0.119933 -0.235421 0.150541 0.105542 0.430828 0.620734 0.065233 0.623971 -0.157879 -0.158899 -0.944398 -0.117166 -2.279822 -0.906847 -0.468418 1.205434 0.359776 0.124397 -0.451202 1.049001 -0.203359 0.156428 0.342607 1.143637 -0.654887 -0.384995 -0.288776 0.016819 0.246674 -0.354784 -0.164373 0.512919 -0.282039 -0.753184 -0.401144 0.720671 -0.139377 -0.399720 0.018016 -0.160020 0.764174 -1.092620 -0.320349 -1.186483 -0.041469 0.228421 -1.004074 0.124928 0.305731 0.230474 0.710030 -0.489320 -0.319308 0.477917 0.154766 -0.313390 -0.218600 -0.473723 1.017875 0.032287 0.081503 0.425345 0.464121 0.367345 0.673479 0.872867 -0.205906 -0.038686 0.322102 -0.193486 0.187208 -0.171244 -0.344308 0.071836 -0.641167 0.102504 -0.039980 -0.584599 -0.069195 -0.345901 -0.052070 0.178306 1.243354 -0.264002 0.642529 0.191299 -0.722333 0.723963 -0.243816 -0.254505 0.076320 0.771077 0.537174 -0.395758 -0.392268 0.416997 1.050640 0.465291 -0.888235 -0.030504 -0.088492 0.249376 -0.064074 0.558088 0.212470 0.544006 -0.509269 -0.055540 0.196354 1.496249 -0.518541 -1.005638 0.066300 -0.049338 0.236271 -0.802540 0.039794 -0.144461 -0.112310 -0.005638 -0.084787 0.184180 0.855035 -1.588896 0.866070 -0.403962 -0.467072 0.779854 0.111420 -0.274062 -1.013235 -0.117915 0.560425 1.044218 0.495570 -0.124994 -0.153759 -0.776965 -0.110240 0.048230 0.330091 -0.395433 0.734748 -0.204933 -0.596593 -0.325551 -0.737716 0.018096 -0.185294 -0.363696 0.352531 0.675339 -1.687007 0.701018 0.037419 -0.448828 -0.039986 0.208446 0.381590 -0.613632 -0.977380 0.197211 -0.532842 -1.123450 -0.358172 -0.408770 0.150545 0.090993 -0.333993 -0.131001 -0.832216 1.128048 0.033979 0.801068 0.552104 -0.022853 1.173063 0.860345 -0.789096 -0.097082 -0.457613 0.431379 -0.871314 -0.058251 -0.020204 -0.498105 0.471013 0.986708 0.219480 -0.048855 -0.587354 0.821366 -0.721030 -0.278041 0.746935 0.101107 0.032464 0.689966 0.826035 -0.630593 -0.193407 -0.685940 -0.191805 -0.199081 -0.329083 0.238224 -0.773583 -0.082099 0.407026 -0.248268 -0.446262 0.240589 -0.142145 -0.284532 -0.337333 1.002318 1.167098 -0.931959 0.599806 -0.595145 0.554181 -0.851666 -0.508613 -0.128203 0.378988 -0.426083 -0.139769 0.208355 0.123971 0.150151 -0.665495 -0.557078 0.113093 +PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -1.928484 -1.829905 -0.147346 -2.630112 1.649882 2.366454 1.185711 -2.090791 -3.705382 -1.950058 1.654940 -5.292364 -3.118163 4.503675 -1.698345 2.624654 5.609044 0.654672 -1.701735 -1.907569 3.370607 -0.548079 6.347582 6.843529 -4.411623 -0.149745 -0.056094 2.481006 1.845873 0.059018 1.983975 -2.811301 1.412475 -3.132962 0.636232 -2.123153 -0.571864 1.684574 2.541216 -7.141518 -0.491579 2.384080 0.410324 0.133588 0.465139 2.149301 3.564178 3.675700 -0.776853 3.600580 3.047924 -0.294504 2.145307 0.230696 0.527083 -0.628268 0.552069 -0.600069 -0.996491 -0.452247 -1.061887 -1.993841 0.220247 4.408697 5.556938 -0.136626 -1.957671 0.976596 1.162375 1.351839 1.657179 3.493015 0.327007 1.297403 3.295335 -4.283863 -0.171096 -7.906045 0.958907 -8.162978 -3.245079 -0.079833 4.236745 2.065338 1.819699 -0.580214 6.495719 -0.439677 -2.159759 4.850938 5.188258 -3.245853 -1.219439 -1.331449 -2.008892 0.871363 -2.394989 1.424092 1.003736 2.658449 -3.930132 -2.656760 0.663610 0.212621 -2.487754 -2.053493 -0.793382 3.451202 -4.336335 -2.284070 -2.386961 2.608287 0.277604 -6.772036 -2.096891 -2.915811 1.407705 1.216514 -2.993139 -2.388380 1.676075 0.495846 -0.951452 -1.282882 -1.524638 3.084479 2.654137 0.850354 -0.246846 2.756214 0.991091 5.732176 1.211055 -2.413717 -0.067201 1.487069 -1.002243 1.984094 -2.412146 -1.050936 2.432173 -3.642500 0.254496 1.401395 -2.430887 -2.177254 1.132244 -0.433548 -0.011781 12.522147 -0.404694 4.740455 4.335659 -3.406406 1.945226 -1.631413 1.139971 2.107255 2.969686 1.935203 -5.139431 -3.516365 3.522576 6.207801 2.204560 -4.323944 -0.757482 1.754112 1.256191 -1.253201 2.355841 0.882372 0.262866 -2.388559 -0.322561 2.839906 7.309715 -2.348252 -0.878791 0.468795 2.513230 -0.319685 -4.257461 -0.475144 -2.814786 -0.238025 2.035988 1.519456 1.922625 5.017325 -6.950179 3.946206 0.121814 0.996765 3.151765 1.502255 -3.602194 -5.253133 -0.787342 1.780330 3.622309 -0.088494 -0.002907 1.090914 -5.355415 0.290118 1.215064 0.995560 -2.901290 4.540556 -0.364541 -1.672521 -2.019847 -0.052284 -1.518681 -1.470674 -1.403312 3.474794 1.077260 -5.254961 3.423080 -0.044475 -2.519818 -0.011696 -1.054357 4.220822 -4.034062 -4.266601 2.601590 -2.202795 -3.856028 -2.349439 -1.220842 1.453023 1.676391 0.432471 -3.460857 -3.911776 4.924410 -1.791422 4.996455 2.423066 -1.053017 3.575222 -0.563312 -2.424973 -2.638766 -2.527978 0.824423 -0.235842 -2.803093 -2.359288 -0.957463 3.169742 4.112232 -0.287644 -2.666376 -0.308666 4.856864 -3.824328 -1.280607 1.628002 1.783762 -2.433628 2.673773 2.375609 -4.067962 1.028176 -3.564153 -0.507326 -2.261316 -2.464794 3.525068 -1.586450 1.558078 0.235739 -0.340380 -0.080645 2.001886 1.943710 -0.185637 0.980938 6.074844 4.273206 -1.436890 -0.049067 -5.617829 3.024386 -5.001167 -4.095926 0.341427 0.989684 -2.355431 -0.728909 -0.129737 3.694473 3.251870 -2.962706 -2.828470 1.937723 +PE-benchmarks/dfa-based-division.cpp__main = -0.363151 -0.440949 0.149871 -0.584228 0.573652 0.009593 0.415479 -0.040553 -1.144656 -0.870329 0.408884 -1.410608 -0.982843 1.264763 -0.219453 0.670219 1.599265 0.345041 -0.218708 -0.479560 0.686305 -0.858543 1.509146 1.731660 -1.092327 0.145953 -0.112196 0.568216 0.168917 0.411976 0.369411 -1.027401 0.427192 -0.689805 0.427544 -0.650056 -0.247405 0.484042 0.396514 -2.064292 -0.096343 1.001320 0.346849 -0.009342 0.115650 0.867231 0.994338 0.933813 -0.353950 1.240802 0.740437 -0.464219 0.633770 0.129793 0.306290 -0.109243 0.039126 -0.097147 -0.646066 0.263306 -0.339289 -1.082850 0.023097 0.974660 1.470618 -0.342000 -0.498492 0.126649 0.060170 0.417994 0.516359 0.778448 0.315902 -0.120064 0.982564 -1.025683 -0.229394 -2.424304 0.131217 -3.238287 -1.129734 -0.107626 1.671124 0.630649 0.295608 -0.413894 1.649623 -0.148445 -0.444714 1.056294 1.442723 -0.744400 -0.509440 -0.402776 -0.362133 0.351763 -0.674272 -0.037904 0.779303 0.370599 -1.088167 -0.490888 0.626432 -0.069736 -0.601077 -0.501147 -0.194099 1.098424 -1.344006 -0.694995 -1.063956 0.574485 0.313153 -1.713006 0.219024 -0.390872 0.153173 0.658124 -0.857827 -0.356243 0.552446 -0.038628 -0.406441 -0.231242 -0.797397 1.201821 0.301581 0.374438 0.240240 0.749188 0.311558 1.194302 0.665883 -0.647150 -0.037671 0.459297 -0.296028 0.655309 -0.606656 -0.553370 0.768402 -1.003016 -0.014878 -0.129961 -0.769141 -0.468958 0.249024 -0.012027 0.004233 2.620910 -0.155594 1.272963 0.941974 -0.836578 1.070455 -0.264326 0.219595 0.498114 1.055316 0.403484 -0.929591 -0.852359 0.841384 1.642880 0.694342 -1.293767 -0.596938 0.315884 0.476646 -0.089478 0.659785 0.309737 0.373745 -0.692405 -0.046090 0.484020 1.939665 -0.597932 -0.525921 0.082010 0.684266 -0.081613 -1.543265 -0.083536 -0.933990 -0.088002 0.056685 0.222878 0.409015 1.356087 -2.404103 1.163575 -0.245482 0.087101 0.953141 0.302713 -0.857492 -2.478588 -0.285788 0.438431 1.260509 0.210529 0.166626 0.297067 -1.330552 0.024238 0.091153 0.284899 -0.694965 1.150804 -0.496098 -0.427658 -0.464201 -0.334948 -0.449021 -0.383399 -0.303762 0.846358 1.075886 -1.718555 0.814735 -0.094167 -0.747475 -0.034924 0.146958 0.997557 -1.030873 -1.230758 0.507150 -0.757062 -1.354500 -0.803647 -0.385265 0.272408 0.023018 -0.512411 -0.335883 -1.080731 1.471288 -0.461826 1.314978 0.686275 -0.392295 1.293770 0.734620 -0.894795 -0.453938 -0.515991 0.196834 -0.815957 -0.415538 -0.527815 -0.369773 0.771467 1.135083 0.296179 -0.417283 -0.201708 1.347942 -1.007092 -0.447009 0.796638 0.078654 -0.244774 1.008768 0.929362 -1.218606 0.169859 -1.149873 -0.042377 -0.424354 -0.477504 0.811626 -0.554339 0.232094 0.061857 -0.146208 -0.180118 0.487498 0.412844 -0.214984 -0.155208 1.731273 1.481509 -0.748865 0.195282 -1.291455 0.652077 -1.283837 -0.941107 -0.138641 0.710134 -0.768717 -0.121392 0.243488 0.691022 0.649661 -0.850007 -0.909100 0.491979 +PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -0.294063 -0.006347 0.355850 -0.488078 0.713894 0.340613 0.394793 -0.160739 -0.807093 -0.732661 0.239626 -1.272146 -1.250970 1.172300 -0.310464 0.341139 1.618488 0.196746 -0.162980 -0.709703 0.547662 -0.505611 1.810174 1.828292 -1.318093 0.174568 0.294648 0.703822 0.323811 0.194116 0.195758 -0.815822 0.568044 -0.640368 0.294089 -0.477856 -0.225101 -0.123684 0.088813 -2.098240 -0.230115 0.268003 -0.367492 0.108277 0.076113 1.311468 1.402548 0.958290 -0.241985 1.126281 0.699504 -0.338777 0.516728 0.149471 0.229628 -0.301144 0.252036 -0.017010 -0.610984 0.164564 -0.227809 -1.251254 -0.217174 1.121989 1.476426 -0.160478 -0.468641 0.251091 -0.020462 0.326692 0.250935 0.856566 0.505247 0.447721 1.056344 -1.138413 -0.153257 -2.217787 -0.148635 -3.238023 -1.194170 -0.501865 1.445904 -0.020911 0.307809 -0.000449 1.736118 0.224228 -0.136883 1.134282 1.658324 -0.985949 -0.483237 -0.332595 -0.218399 0.379709 -0.663000 0.422369 0.653009 0.344300 -1.115525 -0.570227 0.636918 -0.163457 -0.672569 -0.486114 -0.245904 1.060233 -1.422514 -0.459146 -1.308334 0.191707 0.239127 -1.909443 -0.201823 -0.101254 1.292243 0.646363 -0.612520 -0.498059 0.448180 0.299758 -0.220497 -0.297544 -0.311927 1.029190 0.623259 0.237092 0.328536 0.934654 0.514687 1.471769 1.015499 -0.372228 -0.208198 0.396164 -0.422753 0.428496 -0.419995 -0.264887 0.591950 -1.035909 0.498590 0.270319 -0.742288 -0.724525 0.365344 -0.166483 0.233407 2.895880 -0.154580 1.148632 0.803094 -1.041661 0.378084 -0.723219 -0.018189 0.510721 0.981588 0.590056 -1.076789 -0.795007 0.785982 1.697775 0.633444 -1.623528 -0.156855 0.200699 0.273003 -0.415560 0.650952 0.379362 0.309708 -0.450064 -0.040221 0.812402 2.004420 -0.793507 -0.948765 0.101663 0.282874 0.225838 -1.288845 -0.039170 -0.135423 -0.096757 0.442918 0.298867 0.351920 1.332859 -2.435939 1.062710 -0.155203 -0.013869 0.875075 0.486439 -0.799277 -1.576652 0.011489 0.750549 1.085937 0.370227 -0.202540 0.055056 -1.344610 -0.015422 0.372646 0.420689 -0.644276 1.168797 -0.127221 -0.637565 -0.681785 -0.423834 -0.091136 -0.035927 -0.348066 0.781180 0.201049 -2.603123 1.071560 -0.163809 -0.877497 -0.080113 -0.277362 1.113624 -1.160943 -1.393686 0.520975 -0.802605 -1.446604 -0.753610 -0.431953 0.296756 0.256850 0.009270 -0.662862 -1.004377 1.503419 -0.317248 1.163580 0.753240 -0.017564 1.787296 -0.259660 -1.093170 -0.590001 -0.661809 0.684112 -0.585492 -0.597231 -0.126407 -0.399234 0.773587 1.426615 0.017958 -0.416609 -0.148287 1.231189 -1.456791 -0.655835 0.731305 0.982538 -0.364692 1.150809 0.871892 -1.087673 -0.007860 -0.969256 -0.428915 -0.406574 -0.785582 0.689896 -0.839476 0.214233 0.384292 -0.118445 -0.232467 0.663232 0.039400 0.148585 -0.089954 1.473966 2.225676 -1.149020 0.180516 -1.358787 0.887003 -1.443104 -1.218471 0.144897 0.462306 -0.256755 -0.188263 -0.017501 0.585803 0.582117 -1.279989 -0.886113 0.450882 +PE-benchmarks/word-wrap.cpp__main = 0.008311 0.235284 0.419628 -0.120056 0.570190 0.108257 0.307409 0.362499 -0.593541 -0.582022 -0.040533 -0.816026 -0.910711 0.791835 0.030811 0.119323 1.165555 0.328805 0.024149 -0.266118 0.099627 -0.551814 0.997945 1.053967 -0.718973 0.352935 -0.018479 0.180545 -0.207409 0.774684 -0.254895 -0.923443 0.383555 -0.128578 0.323256 -0.422265 -0.313908 -0.158026 -0.228736 -1.543929 -0.068978 0.741350 -0.008880 -0.055415 0.168908 0.769342 1.143131 0.490002 -0.111017 0.744915 0.146080 -0.310667 0.428222 0.136730 0.402813 0.119127 0.300643 -0.095927 -0.720531 0.316130 -0.229175 -1.084410 -0.316736 0.494654 0.777325 -0.206924 -0.347918 -0.119933 -0.235421 0.150541 0.105542 0.430828 0.620734 0.065233 0.623971 -0.157879 -0.158899 -0.944398 -0.117166 -2.279822 -0.906847 -0.468418 1.205434 0.359776 0.124397 -0.451202 1.049001 -0.203359 0.156428 0.342607 1.143637 -0.654887 -0.384995 -0.288776 0.016819 0.246674 -0.354784 -0.164373 0.512919 -0.282039 -0.753184 -0.401144 0.720671 -0.139377 -0.399720 0.018016 -0.160020 0.764174 -1.092620 -0.320349 -1.186483 -0.041469 0.228421 -1.004074 0.124928 0.305731 0.230474 0.710030 -0.489320 -0.319308 0.477917 0.154766 -0.313390 -0.218600 -0.473723 1.017875 0.032287 0.081503 0.425345 0.464121 0.367345 0.673479 0.872867 -0.205906 -0.038686 0.322102 -0.193486 0.187208 -0.171244 -0.344308 0.071836 -0.641167 0.102504 -0.039980 -0.584599 -0.069195 -0.345901 -0.052070 0.178306 1.243354 -0.264002 0.642529 0.191299 -0.722333 0.723963 -0.243816 -0.254505 0.076320 0.771077 0.537174 -0.395758 -0.392268 0.416997 1.050640 0.465291 -0.888235 -0.030504 -0.088492 0.249376 -0.064074 0.558088 0.212470 0.544006 -0.509269 -0.055540 0.196354 1.496249 -0.518541 -1.005638 0.066300 -0.049338 0.236271 -0.802540 0.039794 -0.144461 -0.112310 -0.005638 -0.084787 0.184180 0.855035 -1.588896 0.866070 -0.403962 -0.467072 0.779854 0.111420 -0.274062 -1.013235 -0.117915 0.560425 1.044218 0.495570 -0.124994 -0.153759 -0.776965 -0.110240 0.048230 0.330091 -0.395433 0.734748 -0.204933 -0.596593 -0.325551 -0.737716 0.018096 -0.185294 -0.363696 0.352531 0.675339 -1.687007 0.701018 0.037419 -0.448828 -0.039986 0.208446 0.381590 -0.613632 -0.977380 0.197211 -0.532842 -1.123450 -0.358172 -0.408770 0.150545 0.090993 -0.333993 -0.131001 -0.832216 1.128048 0.033979 0.801068 0.552104 -0.022853 1.173063 0.860345 -0.789096 -0.097082 -0.457613 0.431379 -0.871314 -0.058251 -0.020204 -0.498105 0.471013 0.986708 0.219480 -0.048855 -0.587354 0.821366 -0.721030 -0.278041 0.746935 0.101107 0.032464 0.689966 0.826035 -0.630593 -0.193407 -0.685940 -0.191805 -0.199081 -0.329083 0.238224 -0.773583 -0.082099 0.407026 -0.248268 -0.446262 0.240589 -0.142145 -0.284532 -0.337333 1.002318 1.167098 -0.931959 0.599806 -0.595145 0.554181 -0.851666 -0.508613 -0.128203 0.378988 -0.426083 -0.139769 0.208355 0.123971 0.150151 -0.665495 -0.557078 0.113093 +PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -0.672422 0.153534 0.600825 -1.665654 1.042792 1.458561 0.438531 -0.966075 -1.479175 -1.820389 0.831065 -3.341634 -2.573552 2.221558 -1.173656 0.299875 2.778690 -0.485475 -0.797467 -1.258600 1.254447 0.569186 3.550082 3.621277 -3.084395 0.090168 0.614007 1.429442 1.482051 -0.092032 1.500323 -2.145521 0.604255 -0.347301 0.789063 -0.236340 -0.405789 -0.460725 0.289801 -3.803714 -0.545111 1.365185 -0.670008 0.183062 0.463026 1.827795 2.937440 1.998453 -0.711041 1.477150 2.085066 0.542459 0.877431 -0.130188 -0.011574 -1.750010 0.652998 -0.837706 -0.407969 -0.183826 -0.210099 -1.209480 -0.589024 2.974885 3.115025 -0.145337 -0.981058 0.269897 0.601659 0.801059 0.312244 2.111840 0.874690 1.890463 1.914083 -1.575362 0.109573 -4.098238 0.635662 -5.275500 -2.053684 -0.591933 2.565336 1.424396 0.200293 -0.653871 3.677824 0.456647 -0.651721 2.989880 3.352646 -1.121825 -0.552529 -0.817576 -1.172918 0.903906 -1.441313 1.372116 -0.102117 1.494533 -2.146901 -0.773688 -0.162040 -0.414845 -1.578826 -0.481441 -0.461839 1.545217 -2.628198 -0.031786 -1.534042 1.188434 0.997825 -4.385265 -1.871038 -1.125431 1.622573 0.497982 -1.177179 -0.661387 0.545000 0.197219 -0.471748 -0.078479 -1.822057 1.763800 1.896258 0.753070 0.038069 1.827235 1.571043 2.655999 0.675167 -0.937636 -0.354174 0.335978 -0.259907 0.791042 -0.808208 0.127595 1.435907 -1.527923 0.727708 0.971866 -1.183637 -1.896861 -0.551624 -1.127835 0.269937 7.450080 -0.450183 2.592695 2.029995 -2.031717 0.131534 -1.157368 -0.270663 0.895206 1.276056 1.767869 -1.948869 -1.586031 2.182147 3.625413 1.023558 -2.392149 0.989684 1.519497 0.039520 -1.492813 1.587156 0.403819 0.134813 -1.047206 -0.374701 2.413771 3.413362 -0.728907 -1.304101 0.007750 1.801831 0.707202 -0.824163 0.246853 -0.121566 0.136481 1.911044 0.794943 1.355199 2.676890 -4.625527 1.970545 1.141561 0.428074 1.382580 0.672699 -1.976151 -2.322571 0.432573 1.594392 1.414542 0.001777 -0.064035 -0.000311 -2.868873 0.067731 1.017591 0.631414 -1.711816 2.309745 0.213800 -0.840832 -1.673424 -0.758577 -0.677565 0.229242 -1.510150 1.699992 0.052639 -4.207651 2.591392 -0.170642 -1.517109 -1.175801 -1.637104 2.281314 -2.693831 -2.381390 0.859738 -1.876254 -3.105431 -1.156685 -1.014270 0.523583 0.875533 1.129217 -2.266384 -1.844742 2.926699 -0.703416 2.520126 1.505286 0.137916 2.641544 -0.873507 -1.048431 -1.297237 -1.934490 2.100650 0.079937 -1.892113 0.061638 -0.727350 1.260105 2.490856 -1.118676 -1.586949 -0.133317 1.829207 -2.103546 -1.201432 0.449123 1.230337 -1.552271 1.830245 0.927178 -1.638944 0.541217 -2.583443 -0.638953 -1.429041 -1.907174 1.596762 -0.987303 0.669354 1.002153 -0.406815 -0.717825 1.253575 0.350614 -0.178449 0.668745 2.661740 3.309960 -1.384709 0.427683 -3.498474 1.976786 -3.106816 -3.025879 0.656225 -0.504538 -0.261144 -0.857598 -0.945550 1.558993 1.693035 -1.732058 -1.729557 1.920344 +PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -9.529143 -9.777799 -5.061269 -13.293897 7.947153 17.994664 4.974516 -18.016615 -16.582688 -1.174942 9.584958 -25.821231 -8.808004 19.049238 -8.400705 16.755411 21.202937 -1.230434 -12.221560 -6.053469 14.461429 6.203727 28.082372 28.701801 -14.989437 -1.110671 -3.113714 8.034696 5.508373 -4.798878 7.563742 -8.028725 5.912837 -16.857708 -3.461238 -2.864223 -4.830673 6.699503 19.009729 -25.829886 -1.816029 5.782283 1.830427 0.084195 0.306161 3.363695 13.008168 15.554122 4.476192 13.271353 10.605342 -0.838478 9.817186 0.402395 5.524383 -1.325451 4.385471 -4.463506 -0.990103 -6.424029 -5.119831 3.012763 0.898135 20.328736 21.771007 2.557653 -10.800184 6.479438 7.682766 5.383574 6.550061 16.431975 -5.997826 9.468536 8.527420 -20.944215 5.378025 -23.105282 4.725067 -16.665638 -11.901280 6.516122 11.083588 9.324463 11.861671 0.645912 27.901047 -2.061902 -14.388761 18.077927 20.684242 -15.618198 -3.752570 -0.745064 -8.263560 -1.507982 -6.851237 9.578307 2.760062 13.951756 -17.012260 -6.364805 -0.712626 3.054635 -10.279123 -8.628696 1.164513 12.443929 -11.542932 -10.863711 -0.187560 15.797212 -2.411502 -30.267622 -14.019544 -13.610294 2.964960 1.674200 -15.328426 -15.176293 7.866273 1.676825 -3.431402 -6.523122 -3.025122 7.206716 14.777119 5.313148 -4.148147 13.494436 5.459162 30.597276 -2.179514 -10.429114 3.767347 2.994037 -0.129573 12.039419 -4.810135 -3.625974 0.619174 -16.805258 3.840771 10.890814 -8.880484 -5.136093 1.277722 3.024898 -4.740559 58.767430 -4.440754 23.692088 20.960982 -15.281252 2.871533 -11.062764 6.446459 6.403352 7.663853 6.879084 -26.434280 -15.630224 19.213253 27.847992 9.223406 -18.095376 2.118864 10.097502 2.014973 -6.947077 10.215919 2.777475 0.865083 -7.652500 -1.932916 13.871184 33.776319 -10.532365 0.902899 4.485623 7.479021 1.797423 -13.318872 -4.075677 -12.749853 -0.096696 10.886793 9.109697 8.238628 20.071274 -19.132685 15.853759 1.122570 3.556237 17.474239 8.777931 -18.157299 -11.899696 -8.135821 6.477005 11.880213 -5.079830 -4.318832 4.158147 -21.976020 1.287542 7.130916 1.088337 -12.653618 18.620646 1.679957 -6.573149 -5.456587 5.594979 -5.032150 -5.444016 -7.004616 16.467213 -2.244996 -16.243662 13.949662 6.634322 -9.818819 0.707870 -7.829793 18.937252 -13.220828 -14.332655 11.786450 -9.140266 -9.468642 -4.698981 -4.554908 4.815591 10.622976 10.013805 -20.604497 -10.674824 18.331027 -6.980689 23.728680 9.650195 -5.403155 7.736642 -12.544462 -10.395880 -8.987577 -16.288880 2.732857 8.068628 -14.885022 -7.546281 -4.039996 15.263772 11.699679 -0.863028 -16.069267 -0.142811 16.935472 -14.911030 -1.287624 3.816177 6.187007 -17.511119 5.122654 7.535621 -12.618747 9.298029 -10.883719 -4.402047 -16.236571 -10.316250 16.167523 0.177427 8.581597 -3.722778 -2.093639 4.241718 7.668710 8.801286 3.279981 10.394225 23.171618 9.055122 0.923770 -5.378599 -25.228145 14.076545 -18.266099 -18.746115 6.366931 3.669158 -11.583333 -6.576569 -2.621228 17.669568 14.101763 -15.506627 -11.461768 10.437509 +PE-benchmarks/tower-of-hanoi.cpp__main = -0.006124 0.041610 0.227440 -0.125614 0.309792 -0.126401 0.179300 0.193190 -0.432051 -0.341610 -0.015632 -0.387309 -0.363849 0.473190 0.019132 0.124027 0.686459 0.272527 0.012883 -0.199114 0.087762 -0.493796 0.509268 0.566602 -0.321631 0.198030 -0.027082 0.088313 -0.124534 0.485133 -0.185527 -0.452840 0.206145 -0.152211 0.174096 -0.348781 -0.176423 0.042989 -0.088117 -0.844474 0.031327 0.315431 0.121574 -0.053776 0.049991 0.476421 0.540377 0.252272 -0.033468 0.469446 0.084405 -0.172946 0.197148 0.104127 0.304918 0.208110 0.216072 -0.051372 -0.409578 0.214013 -0.164681 -0.606369 -0.080824 0.231361 0.383818 -0.128776 -0.171178 -0.052153 -0.136383 0.096461 0.148711 0.159276 0.239432 -0.113617 0.276684 -0.278024 -0.068161 -0.648020 -0.097840 -1.462811 -0.455980 -0.187059 0.679208 0.090623 0.062745 -0.099604 0.520731 -0.159463 0.063880 0.144655 0.564394 -0.348812 -0.237499 -0.103386 -0.011037 0.095375 -0.148026 -0.196094 0.356578 -0.106989 -0.391190 -0.184149 0.504802 -0.042471 -0.173243 -0.015078 -0.037488 0.441624 -0.693737 -0.227168 -0.603906 0.021311 0.102967 -0.458280 0.270479 0.097975 0.221457 0.360431 -0.332034 -0.197258 0.305410 0.120220 -0.216955 -0.079070 -0.276603 0.521739 -0.101564 0.081836 0.195552 0.171513 0.109127 0.352402 0.513967 -0.184302 0.028081 0.206151 -0.140427 0.091505 -0.112780 -0.301225 0.062293 -0.386404 0.074931 -0.105734 -0.343152 -0.043651 0.000994 0.043099 0.087944 0.536416 -0.165775 0.361995 0.093374 -0.369475 0.350683 -0.102960 -0.062118 0.032962 0.470570 0.194641 -0.144402 -0.247557 0.199743 0.524359 0.295762 -0.476071 -0.195583 -0.132745 0.127522 0.168919 0.230723 0.073851 0.248977 -0.309543 -0.053896 -0.049088 0.867635 -0.227173 -0.388275 0.023522 -0.094126 0.021043 -0.550922 0.001954 -0.150166 0.002328 -0.137066 -0.095676 0.098941 0.474496 -1.007340 0.515060 -0.395487 -0.237906 0.376801 0.087616 -0.110313 -0.800744 -0.193372 0.252510 0.680653 0.232925 0.001979 0.011486 -0.388320 -0.073347 -0.061824 0.190323 -0.214835 0.342323 -0.072944 -0.384217 -0.102907 -0.289971 0.046524 -0.086939 -0.081692 0.178090 0.408413 -0.963874 0.332436 0.005756 -0.178839 0.055573 0.277198 0.194364 -0.279839 -0.487099 0.102347 -0.217889 -0.525306 -0.216101 -0.198446 0.136466 -0.097754 -0.267569 0.034530 -0.419610 0.552709 -0.053229 0.439097 0.270408 -0.085019 0.650922 0.427956 -0.367379 -0.048115 -0.094394 0.046078 -0.611571 0.059382 0.061874 -0.249800 0.276474 0.484498 0.225144 0.011077 -0.157177 0.514606 -0.368254 -0.107974 0.448953 0.054740 0.043425 0.437940 0.495436 -0.432776 -0.123148 -0.331866 -0.107198 -0.065341 -0.090042 0.163279 -0.357527 -0.025624 0.123187 -0.059705 -0.223919 0.131210 -0.055072 -0.134505 -0.185690 0.578227 0.699961 -0.456256 0.288856 -0.243828 0.225054 -0.411633 -0.219333 -0.150363 0.387465 -0.314110 -0.011391 0.100559 0.124682 0.055752 -0.291239 -0.249582 0.045416 +PE-benchmarks/palindrome-partitioning.cpp__main = 0.065688 0.149076 0.372895 -0.140159 0.282242 -0.114566 0.152310 0.326537 -0.396610 -0.511470 0.062290 -0.749544 -0.690699 0.447105 -0.048481 -0.188539 0.610935 0.113304 -0.004537 -0.189367 -0.146565 -0.172332 0.548699 0.623946 -0.489367 0.225871 -0.241499 0.198362 -0.059970 0.435328 0.106161 -0.654373 0.085162 0.363515 0.295551 -0.053181 -0.179819 -0.154333 -0.423189 -0.904900 -0.055043 0.801291 0.179772 -0.013019 0.230993 0.571213 0.702408 0.282582 -0.072954 0.406448 0.164327 -0.120120 0.337440 0.024516 0.176785 -0.330572 0.288520 -0.350893 -0.489241 0.237453 -0.070459 -0.674278 -0.331219 0.344729 0.487211 -0.106947 -0.220986 -0.321363 -0.074913 0.182447 0.106569 0.266819 0.429400 0.149363 0.345797 0.413730 0.021397 -0.374693 0.101988 -1.422019 -0.575096 -0.233722 1.100448 0.684144 -0.259989 -0.470268 0.613803 -0.015453 0.068663 0.293379 0.683579 -0.066232 -0.248575 -0.127118 -0.071346 0.294055 -0.218624 -0.046725 0.151888 0.135197 -0.440902 0.082200 0.254417 -0.273848 -0.247152 0.379948 -0.111630 0.362060 -0.721868 0.154360 -0.613417 0.120000 0.506450 -0.619566 -0.043417 0.171106 -0.094743 0.402719 -0.283935 0.248391 0.238351 -0.222581 -0.235889 0.283328 -0.969420 0.634982 -0.083442 0.100669 0.228649 0.404929 0.332665 0.069949 0.148215 -0.161512 -0.019211 0.161654 0.045412 0.143352 -0.041538 -0.137350 0.087838 -0.256479 0.136035 -0.286796 -0.326987 -0.242867 -0.927915 -0.063967 0.074421 0.463573 -0.138411 0.447558 0.137721 -0.288769 0.411421 -0.048727 -0.158550 0.002330 0.380433 0.317815 0.320932 -0.201054 0.287070 0.647963 0.240976 -0.307450 0.325556 0.190071 0.090975 -0.113123 0.480483 0.111519 0.290069 -0.260217 -0.056376 0.190988 0.631853 0.026139 -0.637726 -0.064922 0.106770 0.320596 -0.038252 0.179188 0.241549 -0.012437 0.020315 0.008342 0.163269 0.491926 -1.050521 0.541242 0.140548 -0.096302 0.431055 -0.106692 -0.213589 -0.664665 -0.053755 0.299320 0.574327 0.286353 -0.183347 -0.089323 -0.441966 -0.069054 0.066902 0.148879 -0.263164 0.411714 -0.161991 -0.189545 -0.212611 -0.741570 -0.064259 0.190959 -0.459182 0.206908 0.523362 -0.937766 0.411624 -0.026242 -0.301133 -0.393240 0.001269 0.064591 -0.402624 -0.458944 -0.117517 -0.531881 -1.086026 -0.324462 -0.308909 -0.073213 -0.058590 -0.123596 -0.050819 -0.245415 0.852986 -0.047141 0.462494 0.346892 -0.069401 0.583590 0.916117 -0.368584 0.163319 -0.296859 0.479449 -0.631674 -0.013578 0.502413 -0.317450 0.085639 0.516644 0.010670 -0.113688 -0.306183 0.407724 -0.028541 -0.377567 0.350081 -0.472943 0.116472 0.621251 0.421464 -0.350100 0.008589 -0.648920 -0.143229 -0.130590 -0.175041 0.155927 -0.363379 -0.057206 0.273263 -0.189533 -0.436156 0.138013 -0.154093 -0.382443 -0.131916 0.678453 0.521409 -0.447496 0.665382 -0.457026 0.354838 -0.486430 -0.287411 -0.118436 0.043812 -0.195919 -0.112271 -0.071713 -0.002569 0.166238 -0.401346 -0.483656 0.416961 +PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.444021 -0.475063 -0.154973 -0.409908 0.416443 0.173706 0.221706 -0.364058 -0.810828 -0.520716 0.245428 -0.825332 -0.422339 0.796596 -0.232319 0.710890 1.001177 0.221964 -0.130314 -0.377823 0.616259 -0.636158 0.960655 1.197293 -0.589644 0.017499 0.064593 0.265237 -0.037467 0.216664 0.236887 -0.814100 0.273647 -0.712711 0.232186 -0.522469 -0.298533 0.654921 0.708188 -1.308959 -0.109851 0.468470 0.121735 0.088541 0.067689 0.269312 0.458761 0.495058 -0.103197 1.046004 0.462211 -0.091999 0.438165 0.014614 0.283109 0.265638 -0.033724 -0.110837 -0.160635 0.139906 -0.441593 -0.251131 0.184635 0.614977 0.876181 -0.270718 -0.440832 0.146705 0.006496 0.250429 0.333354 0.675994 -0.045885 -0.120240 0.545742 -1.141874 -0.158885 -1.880101 0.206823 -1.826290 -0.620873 0.139613 0.629687 0.418478 0.400586 -0.026238 1.284259 -0.289169 -0.527458 0.672104 0.849720 -0.586988 -0.150350 -0.045941 -0.314566 -0.146666 -0.262188 -0.052188 0.283903 0.365651 -0.661683 -0.587765 0.402101 -0.017042 -0.374522 -0.668523 -0.163664 0.715096 -0.886234 -0.668636 -0.601809 0.575586 -0.023871 -1.015793 0.056192 -0.477430 0.039082 0.371887 -0.814628 -0.552231 0.518636 0.079957 -0.233291 -0.300810 0.017472 0.606571 0.378891 0.155060 -0.045485 0.431272 0.003041 1.111993 0.369873 -0.487082 0.019604 0.412133 -0.114463 0.431300 -0.397508 -0.273580 0.305535 -0.649933 -0.014442 0.043414 -0.469827 -0.246603 0.558160 -0.168697 -0.207404 2.063006 -0.290608 0.852617 0.722784 -0.574930 0.587916 -0.218823 0.358629 0.345206 0.729016 0.322802 -0.925559 -0.637422 0.743754 1.111866 0.396593 -0.810155 -0.696524 0.276635 0.416026 0.084423 0.450320 0.099404 0.143926 -0.410219 -0.007461 0.063089 1.532035 -0.493409 0.073686 0.054527 0.584000 -0.166782 -1.141087 -0.133330 -1.164199 -0.139469 0.200891 0.208184 0.184776 0.893401 -1.575240 0.698983 -0.403394 0.081795 0.519618 0.412328 -0.469770 -1.718893 -0.401149 0.165619 0.794213 -0.022075 0.469731 0.213278 -0.899795 0.113394 0.031249 0.281121 -0.710202 0.901342 -0.234655 -0.465200 -0.091046 0.211526 -0.385730 -0.565324 -0.125392 0.585409 0.720484 -1.041489 0.432646 0.173081 -0.320716 0.233241 0.299719 0.932985 -0.474506 -0.776922 0.564019 -0.425537 -0.444811 -0.247642 -0.280840 0.220668 0.023278 -0.279493 -0.372627 -0.706357 0.797329 -0.257545 0.996854 0.393511 -0.373624 0.690802 -0.143506 -0.576960 -0.313678 -0.338324 0.009708 -0.303060 -0.147084 -0.710156 -0.124709 0.553787 0.664384 0.373210 -0.392462 -0.043787 0.963976 -0.748563 0.195801 0.422031 0.288876 -0.280721 0.458426 0.516336 -0.663397 0.164350 -0.667344 0.205981 -0.518623 -0.120447 0.669842 -0.335729 0.119392 -0.140375 -0.120623 -0.012529 0.329783 0.578063 -0.007310 0.027671 1.081673 0.769657 -0.187962 -0.090971 -0.778773 0.326254 -0.678328 -0.517603 -0.245235 0.629438 -0.623577 -0.240845 0.008857 0.669957 0.536773 -0.340144 -0.441294 0.217681 +PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -7.130081 -7.378170 -3.520710 -9.761177 5.486748 11.983185 3.548291 -12.634799 -12.910318 -2.341914 6.976070 -18.998179 -6.383033 14.361531 -6.128453 12.244895 16.227431 -0.388087 -8.939850 -4.799873 11.746753 3.510573 20.586670 21.199710 -11.244849 -0.830831 -2.395825 6.153954 4.762692 -3.276367 6.595611 -6.225596 4.140319 -12.843294 -2.252238 -2.932377 -3.352174 5.971353 13.822340 -19.550834 -1.108237 5.008299 2.184338 -0.301091 0.097168 1.183542 9.582774 11.526912 2.832016 9.824983 8.416747 0.048896 7.113778 0.358655 3.675152 -0.388725 2.748067 -4.536424 -0.798826 -4.440131 -3.999331 1.424440 1.298005 15.121907 16.183529 1.847934 -7.847865 5.104499 5.532050 4.252896 5.475787 11.956887 -4.307556 6.035879 6.930947 -16.407599 3.132964 -18.942252 3.687561 -13.472018 -8.846204 4.605812 8.660040 7.822257 8.699422 1.395067 20.652952 -2.853152 -10.485763 14.572755 15.340650 -11.177624 -2.826710 -1.303734 -6.780102 -0.723754 -5.516164 6.245170 0.574244 10.910002 -12.523609 -5.861295 0.007605 2.491105 -7.626997 -7.046663 0.717496 9.521967 -9.620758 -8.560690 -0.686001 12.152772 -1.614348 -21.610907 -10.249472 -10.778058 2.143474 1.634387 -11.474641 -11.325777 5.985553 1.337655 -2.645764 -5.147796 -2.441225 5.088576 10.086995 4.082781 -3.293668 9.436414 3.740984 22.338119 -0.859101 -7.991206 2.857832 2.545435 -0.164650 8.685774 -4.119163 -3.368038 1.028194 -11.839442 1.471194 7.921002 -6.805499 -5.102024 1.176344 1.419710 -3.272506 42.179651 -2.797546 16.867793 15.677191 -11.082266 2.345679 -7.663739 4.806372 4.836606 6.101347 5.493052 -19.159849 -12.048676 14.103630 20.348572 7.058020 -12.413203 0.202775 7.385842 2.185188 -3.871868 7.440068 2.040726 0.897496 -6.771788 -1.582387 9.786746 25.203702 -7.494438 1.826144 3.473166 5.602773 0.454575 -11.081036 -2.986760 -9.978728 -0.076097 8.081738 6.229208 6.033062 15.319162 -14.301457 12.070559 0.050813 3.081584 11.684845 6.308648 -13.106378 -9.780088 -6.178153 4.715893 9.493254 -3.665990 -2.116110 3.219966 -16.528096 0.931311 4.792213 1.189240 -9.463133 14.004170 0.720433 -4.958359 -4.328257 4.856928 -4.208015 -4.322612 -4.550182 12.112944 -0.349073 -10.296740 10.554175 4.349796 -6.514641 0.750406 -4.995036 14.672917 -9.754027 -10.849336 9.255649 -6.757117 -7.339047 -3.763434 -3.262787 4.189586 7.993220 6.016257 -14.532202 -8.181712 13.630209 -4.984997 17.713623 7.149790 -4.294001 5.730371 -7.900915 -6.857553 -7.019437 -10.635185 0.631456 5.321588 -10.658465 -7.786716 -2.947666 11.447027 9.097568 -0.804462 -11.933383 -0.087117 13.328559 -11.741116 -1.507430 3.098064 4.428633 -12.770774 4.536197 5.907291 -10.006232 6.520648 -8.606301 -1.892174 -11.584859 -7.420955 12.051636 -0.115473 6.210309 -2.364980 -1.542926 2.971769 5.539890 7.214122 1.886029 6.880375 17.687890 6.968992 0.926927 -3.946476 -18.517869 9.786206 -13.774994 -13.697157 4.030630 3.631708 -9.288663 -4.608368 -1.903153 13.634446 10.877429 -10.173537 -8.466137 7.446004 +PE-benchmarks/subset-sum.cpp__main = -0.008379 0.150473 0.461335 -0.247874 0.622841 0.120274 0.330240 0.331106 -0.732090 -0.686997 0.117628 -1.025598 -1.034649 0.889191 -0.039544 0.095483 1.248647 0.246125 -0.029634 -0.381237 0.150703 -0.452229 1.177978 1.258729 -0.927089 0.367635 -0.046784 0.282267 -0.026809 0.644538 -0.073598 -0.990439 0.397807 -0.109620 0.307033 -0.373116 -0.327424 -0.181302 -0.181821 -1.703327 -0.099049 0.805492 -0.115177 -0.012671 0.222059 0.983505 1.222152 0.600187 -0.229255 0.929335 0.366806 -0.321356 0.454406 0.101942 0.325047 -0.138559 0.315804 -0.083730 -0.706422 0.309497 -0.188739 -1.130061 -0.366074 0.645762 0.957578 -0.254681 -0.416412 -0.130253 -0.124576 0.211507 0.197628 0.549020 0.690310 0.130892 0.783044 -0.163535 -0.203882 -1.289153 -0.051952 -2.627780 -1.036126 -0.402892 1.534084 0.391639 0.030851 -0.493822 1.213218 -0.110203 0.033396 0.602172 1.247464 -0.606070 -0.418567 -0.260112 -0.096780 0.353516 -0.440226 -0.009646 0.487738 -0.104683 -0.858593 -0.361905 0.660377 -0.233336 -0.495989 0.001149 -0.179925 0.805445 -1.221011 -0.225734 -1.165772 0.146979 0.404471 -1.226033 -0.061107 0.214925 0.434956 0.713590 -0.539414 -0.155770 0.440763 0.011554 -0.358283 -0.106779 -0.607079 1.063293 0.173181 0.228363 0.420652 0.581034 0.490919 0.746327 0.801165 -0.290908 -0.060595 0.310238 -0.107950 0.340615 -0.219550 -0.292984 0.229119 -0.651064 0.262797 -0.092950 -0.624713 -0.301097 -0.359336 -0.057388 0.106748 1.585362 -0.198177 0.853281 0.385809 -0.730310 0.648176 -0.317179 -0.202032 0.221474 0.812669 0.542989 -0.359527 -0.456605 0.528276 1.234712 0.500052 -1.093094 0.055264 0.133664 0.243186 -0.179437 0.672544 0.217661 0.584130 -0.524216 -0.057959 0.398939 1.565648 -0.465832 -1.118430 0.013890 0.147826 0.299200 -0.749529 0.086241 -0.036431 -0.072604 0.209223 0.017011 0.283627 0.972021 -1.970666 0.907335 -0.222092 -0.321614 0.766610 0.225931 -0.477681 -1.150607 -0.089887 0.534726 1.072447 0.531963 -0.131359 -0.052516 -0.916607 -0.094497 0.144702 0.248835 -0.480436 0.856321 -0.191445 -0.523210 -0.381087 -0.812037 -0.054313 -0.027436 -0.471296 0.484431 0.612820 -1.994992 0.737473 -0.019001 -0.603103 -0.219068 0.032233 0.564379 -0.745975 -1.039850 0.212819 -0.692820 -1.407911 -0.510696 -0.455982 0.102486 0.133277 -0.170830 -0.242003 -0.876652 1.331954 -0.069460 0.920945 0.647000 -0.111642 1.317640 0.725181 -0.808867 -0.176227 -0.539064 0.717663 -0.849553 -0.190514 0.092610 -0.532477 0.451203 1.035526 0.135337 -0.181634 -0.584750 0.889831 -0.818515 -0.397875 0.721211 0.228597 -0.016736 0.935826 0.831822 -0.732411 -0.025160 -0.864978 -0.265771 -0.267563 -0.387253 0.410667 -0.688461 0.010019 0.390924 -0.209711 -0.461809 0.336581 -0.161389 -0.302950 -0.292208 1.143973 1.493830 -1.012593 0.620098 -0.823304 0.681710 -0.977979 -0.719813 -0.062812 0.258259 -0.449791 -0.187679 0.062985 0.231646 0.306440 -0.810675 -0.717707 0.404181 +PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -3.785327 -3.248834 -3.216493 -5.267233 3.770871 7.805847 1.856379 -6.722914 -6.857537 -1.782014 3.952285 -9.518577 -4.363213 8.077877 -3.525152 6.453171 9.283711 -0.891540 -3.911611 -3.447852 7.241742 2.821841 12.277307 12.475440 -8.171395 -0.163790 1.783930 2.199938 3.934040 -1.750180 3.617850 -5.940248 3.624503 -7.419276 -1.131134 -2.734592 -2.039143 2.274135 8.656667 -11.630304 -1.012782 1.627091 -1.651558 0.384750 0.179489 3.618018 6.330280 6.805229 -1.225975 7.457606 6.573880 1.605396 2.547143 -0.100131 0.907764 -1.019119 0.279002 0.353110 0.684218 -2.525892 -1.825697 0.807879 -0.172768 9.037407 10.098763 -0.514525 -4.297352 3.513792 2.500977 2.235073 2.476890 7.393552 0.235683 3.556855 5.669247 -9.148398 -1.011195 -14.797793 1.589648 -13.705818 -4.833550 1.761836 4.913410 0.402172 4.806893 0.676605 12.484731 -0.622049 -5.504938 10.061316 9.068745 -6.420566 -1.241426 -0.635949 -4.359527 0.323045 -3.867239 4.602643 1.309997 3.976848 -7.239279 -5.941160 -0.863182 0.895755 -5.039311 -6.366283 -0.338696 4.618726 -7.093455 -3.976082 -1.871173 5.995795 -0.898517 -13.480053 -8.013139 -6.025562 4.648844 0.668215 -5.899399 -6.404846 2.682042 1.268393 -1.661347 -4.189580 3.122100 2.679293 7.489015 3.349846 -1.258346 4.004980 2.977228 13.936454 1.473961 -4.610899 0.530572 1.235681 0.196016 4.851898 -3.518187 -0.706146 3.410250 -6.553376 3.757074 5.006894 -3.868023 -4.215891 5.806140 -1.640431 -1.677795 26.790783 -1.422601 9.880396 9.077185 -7.137920 -1.150100 -5.218056 1.921603 4.246927 4.539793 3.978666 -9.807857 -6.162013 7.938406 11.987647 3.884194 -9.485189 -0.143289 4.913960 1.387875 -3.334146 4.097678 0.624703 0.645910 -4.036884 -0.867717 6.445764 14.085469 -4.855854 0.293754 1.096449 7.347449 -0.196210 -4.872325 -1.268723 -6.614119 0.379890 7.418335 3.021621 4.248955 8.786685 -12.877509 6.003098 0.048421 1.626606 3.799740 5.967035 -7.879526 -5.393092 -1.284186 2.834798 5.079013 -1.065071 1.941081 2.151673 -9.850172 0.576914 3.020987 0.568601 -6.109084 8.374056 1.730168 -3.321764 -3.169667 3.571859 -1.882064 -2.979325 -2.250130 7.024288 -0.879180 -11.768896 6.184877 1.397321 -4.657180 -0.462737 -3.298916 9.718731 -7.005106 -7.337809 5.913158 -3.995827 -4.094782 -1.578968 -2.196479 2.953220 5.040085 5.678040 -8.433560 -7.394215 8.058694 -2.155404 9.735565 4.568909 -1.877815 5.982774 -11.031196 -3.661002 -6.443475 -6.151909 3.821093 2.909315 -6.372838 -3.810503 -1.850255 6.268985 6.263860 -1.122732 -7.023135 -0.429844 7.365611 -8.531313 0.697127 1.538894 8.943535 -6.983371 3.724819 3.104696 -5.749872 3.538201 -5.241939 -0.914038 -6.156468 -4.722470 7.480104 -0.982571 3.704138 -0.187627 -0.330966 1.068302 3.970982 3.417223 1.187998 3.401915 8.566268 8.234232 -2.314400 -2.564353 -10.821489 5.795519 -8.875637 -9.678971 2.561414 -0.596565 -4.593852 -2.904189 -2.680919 7.908089 6.060156 -4.766497 -4.812567 4.681406 +PE-benchmarks/rat-in-a-maze.cpp__main = 0.071881 0.211234 0.307287 -0.086612 0.306758 -0.040862 0.150181 0.295439 -0.335834 -0.410857 -0.022496 -0.590610 -0.569246 0.409484 -0.000811 -0.091014 0.591925 0.156140 0.019499 -0.117076 -0.110322 -0.219366 0.487726 0.523630 -0.390931 0.234165 -0.170445 0.109304 -0.167971 0.514861 -0.053406 -0.622673 0.124342 0.233176 0.235197 -0.118639 -0.174477 -0.143016 -0.334412 -0.831195 -0.023957 0.652779 0.158539 -0.045412 0.159428 0.387890 0.679422 0.236484 -0.022540 0.332208 0.066208 -0.087183 0.274707 0.060729 0.227187 -0.097143 0.250704 -0.310549 -0.468063 0.204085 -0.089790 -0.610093 -0.282061 0.269190 0.389497 -0.083473 -0.181746 -0.228830 -0.148723 0.119648 0.059965 0.199601 0.358462 0.100231 0.259944 0.284678 0.003755 -0.256465 0.017464 -1.215728 -0.511045 -0.267511 0.842225 0.563491 -0.113950 -0.371449 0.533355 -0.093456 0.136541 0.159098 0.634376 -0.181717 -0.228452 -0.148476 -0.016467 0.212887 -0.169462 -0.123707 0.153526 -0.029973 -0.395310 -0.030651 0.328513 -0.167989 -0.208275 0.267817 -0.080604 0.351083 -0.655444 0.018986 -0.604745 0.027946 0.315558 -0.512516 0.029110 0.215964 -0.109610 0.385179 -0.247611 0.032347 0.248694 -0.066665 -0.213876 0.114172 -0.716353 0.568383 -0.102548 0.042929 0.242101 0.289264 0.273679 0.162958 0.248261 -0.121835 -0.001450 0.146223 0.016082 0.073933 -0.024339 -0.171962 -0.049556 -0.288645 0.081537 -0.160723 -0.312687 -0.092118 -0.746149 -0.052169 0.108635 0.392365 -0.162022 0.348740 0.049013 -0.339815 0.402180 -0.063105 -0.202002 -0.052011 0.364417 0.308533 0.185922 -0.185805 0.224444 0.549542 0.238012 -0.258951 0.206779 0.030338 0.084933 -0.028300 0.377715 0.098952 0.284362 -0.272886 -0.061172 0.103371 0.687271 -0.057467 -0.551069 0.008603 0.000175 0.235595 -0.132686 0.103092 0.097924 -0.026556 -0.038116 -0.059446 0.119193 0.450703 -0.858332 0.506827 -0.041921 -0.215682 0.407334 -0.090174 -0.120739 -0.526358 -0.067954 0.324774 0.574124 0.247016 -0.110788 -0.130327 -0.375168 -0.087888 0.022757 0.170018 -0.217829 0.346796 -0.123350 -0.287191 -0.183034 -0.598583 -0.014041 0.056264 -0.350591 0.151771 0.510174 -0.837063 0.404311 0.018203 -0.221819 -0.211359 0.085427 0.056892 -0.330019 -0.455996 -0.046510 -0.394024 -0.818297 -0.179987 -0.259863 0.001466 -0.038518 -0.171519 -0.012311 -0.273158 0.687295 0.043352 0.392962 0.309072 -0.006373 0.518476 0.788801 -0.364570 0.134422 -0.268526 0.319777 -0.593848 0.029801 0.348629 -0.315662 0.150778 0.508605 0.087176 -0.071178 -0.313064 0.383460 -0.084979 -0.246076 0.386020 -0.369716 0.076060 0.437639 0.438041 -0.296998 -0.091138 -0.496760 -0.076249 -0.100305 -0.161360 0.079904 -0.389130 -0.082737 0.284441 -0.188308 -0.387869 0.111924 -0.144285 -0.305631 -0.166023 0.575819 0.383631 -0.422148 0.566624 -0.321750 0.277922 -0.440075 -0.225194 -0.113880 0.122413 -0.221348 -0.089985 0.003664 -0.009298 0.057975 -0.283186 -0.350510 0.197207 +PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -0.902141 -1.031335 -0.441530 -1.443136 0.769850 1.045681 0.529332 -0.930099 -2.127680 -0.882669 0.716886 -2.458073 -1.051206 2.206555 -0.679519 1.611910 2.728987 0.496574 -0.911641 -0.595422 1.737324 -0.669819 2.696241 3.158281 -1.825634 0.012112 -0.274148 0.997948 0.491701 0.485797 0.873432 -1.497165 0.495016 -1.637779 0.418722 -1.328573 -0.416223 1.314417 1.410983 -3.521325 -0.090032 1.533128 0.820314 -0.062958 0.135463 0.570372 1.468291 1.690470 -0.309875 1.700372 1.341436 -0.001723 1.063849 0.095851 0.464762 0.295914 -0.027555 -0.369985 -0.383164 -0.116171 -0.590609 -0.679597 0.478934 2.066418 2.574124 -0.205180 -0.966117 0.441304 0.512083 0.631928 0.921033 1.562358 -0.292135 0.099761 1.256890 -2.230295 0.101510 -3.591081 0.744641 -3.881554 -1.374796 0.191379 1.902530 1.539060 0.981933 -0.503572 3.111831 -0.719972 -1.083503 2.320860 2.218449 -1.416025 -0.537608 -0.770490 -1.125063 0.286477 -0.958543 0.004596 0.634479 1.200312 -1.783943 -1.087883 0.288832 0.301762 -1.167998 -1.096671 -0.164867 1.635098 -2.047786 -1.410203 -0.892870 1.631811 -0.053265 -3.109822 -0.607248 -1.668193 -0.300804 0.423457 -1.601639 -1.365387 0.892218 0.234747 -0.569127 -0.581537 -1.088076 1.482603 0.864966 0.385374 -0.206453 1.021027 0.294300 2.637218 0.308858 -1.356254 0.151657 0.869917 -0.365336 0.937353 -1.207835 -0.777610 1.059650 -1.943737 -0.334477 0.455009 -1.202202 -0.536269 0.515944 -0.136391 -0.130048 6.215251 -0.389058 2.318540 2.006577 -1.626011 1.399606 -0.345564 0.602507 0.951846 1.458627 0.767718 -2.561510 -1.703342 1.587783 2.957958 1.180617 -1.612127 -0.737701 0.692269 0.489683 -0.032801 1.012208 0.194844 0.036624 -1.229613 -0.242365 0.866226 3.683401 -0.826644 0.411942 0.250156 1.504773 -0.681533 -2.174062 -0.296460 -2.308766 -0.073336 0.493881 0.442597 1.009852 2.383966 -3.101533 2.034836 -0.424910 0.346425 1.399175 0.510088 -1.504868 -3.300951 -0.750154 0.672238 2.038482 -0.492966 0.354941 0.632066 -2.474713 0.099378 0.382732 0.497617 -1.515808 2.083190 -0.291813 -0.815104 -0.663900 0.447959 -0.960898 -0.987910 -0.557349 1.608998 1.000208 -1.718234 1.489736 0.208527 -0.940696 0.265540 0.056402 1.732485 -1.805545 -1.908956 1.263881 -0.630766 -1.317363 -0.798148 -0.600223 0.990357 0.510759 -0.349567 -1.470685 -1.974226 2.090736 -0.841930 2.439045 1.135610 -0.758762 1.296318 0.157752 -0.982668 -1.132036 -1.298053 -0.245033 -0.264070 -0.978535 -1.212362 -0.552534 1.610188 1.798976 0.319007 -1.286666 0.171599 2.477579 -1.151224 -0.290907 0.789751 -0.067318 -1.182100 0.914457 1.177964 -2.002283 0.465543 -1.777685 0.279409 -0.992217 -0.844643 1.836772 -0.600821 0.748413 -0.077278 -0.195266 0.017099 0.887384 1.217635 -0.190349 0.516216 3.077713 1.014300 -0.149594 -0.099714 -2.432782 1.145584 -2.219832 -1.557240 -0.285345 0.967567 -1.420443 -0.277020 0.111254 1.839580 1.421690 -0.867785 -1.126757 0.732675 +PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -1.036765 -1.003168 -0.341472 -1.466062 0.851916 0.948636 0.554524 -1.217740 -1.944775 -1.025686 0.629047 -2.421374 -1.120984 2.253671 -0.609142 1.832352 2.713390 0.359015 -0.754316 -0.756148 1.736729 -0.820747 2.680234 3.011669 -1.592883 -0.011691 0.351983 1.138208 0.277251 0.466414 0.934356 -1.772654 0.380490 -1.815988 0.530549 -1.084256 -0.659311 1.266725 1.804034 -3.417439 -0.201573 1.486413 0.755132 -0.053864 0.117976 -0.302932 1.358860 1.630341 -0.070984 1.879834 1.243436 -0.128813 1.157482 0.065575 0.913085 0.542398 0.323827 -0.441983 -0.327758 0.014957 -0.853218 -0.306160 0.427474 2.004851 2.482723 -0.296282 -1.174087 0.506160 0.366981 0.793644 0.671344 1.784572 -0.776085 0.294426 1.282471 -2.935597 0.123025 -4.186591 0.771992 -3.674390 -1.649738 0.359043 1.365612 1.176562 1.296467 0.189454 3.202401 -0.747721 -1.279329 1.732372 2.359772 -1.317602 -0.437943 -0.428711 -0.938663 0.080194 -0.856335 0.013193 0.888508 1.107642 -1.807728 -1.152041 0.703746 0.336928 -1.124113 -1.267902 -0.166103 1.894233 -1.791490 -1.794192 -1.072284 1.607676 -0.319382 -3.116625 -0.872063 -1.448578 -0.278440 0.577849 -1.929359 -1.806788 1.232526 0.348364 -0.564158 -0.917132 -0.054568 1.243978 1.164685 0.427101 -0.217899 1.240243 0.255862 3.080135 0.749643 -1.197753 0.262354 0.832048 -0.388226 0.990529 -0.938845 -0.775052 0.367565 -1.768821 -0.180593 0.781627 -1.194932 -0.700784 0.847645 -0.309289 -0.310244 6.675284 -0.713691 2.289924 2.108005 -1.613829 1.157278 -0.438757 0.570729 0.670862 1.527752 1.043752 -2.667813 -1.639483 1.950125 3.079839 1.146145 -1.898652 -1.319170 0.678451 0.647023 -0.044591 1.161350 0.210007 0.228755 -1.163226 -0.192521 0.774735 3.582429 -1.261668 -0.716344 0.292563 1.668656 -0.519035 -2.630537 -0.315194 -2.840821 -0.189708 0.397148 0.412835 0.825057 2.317721 -3.642744 2.012643 -0.233835 0.135620 2.094610 0.819664 -1.477599 -3.841640 -0.879445 0.735790 1.941541 -0.609179 0.521696 0.362013 -2.527982 0.180699 0.247166 0.583272 -1.639635 2.309924 -0.640077 -0.911281 -0.588156 0.601655 -0.851089 -1.393871 -0.475402 1.622082 1.377040 -2.070058 1.534795 0.472497 -0.817587 0.573193 0.058944 2.167524 -1.596591 -2.021251 1.370943 -0.847947 -1.040600 -0.470696 -0.709196 0.840981 0.771438 -0.044625 -1.378068 -1.360684 1.880386 -0.734726 2.740395 1.081159 -0.691139 1.368543 -0.478991 -1.253120 -0.890919 -1.002535 -0.256380 -0.052115 -0.989555 -2.393745 -0.504323 1.696089 1.711100 0.372964 -1.198155 -0.397329 2.373092 -2.009604 0.178500 0.820135 0.180960 -1.294515 0.701793 1.186588 -1.727099 0.503388 -1.611189 0.137841 -1.423000 -0.811422 1.664329 -0.648919 0.494456 -0.156577 -0.615250 0.135825 0.744840 1.437338 0.062231 0.507743 2.514553 1.362761 -0.361175 -0.467240 -2.405535 0.938696 -2.123021 -1.580935 -0.157459 0.903897 -1.515256 -0.561963 0.121028 1.721629 1.421119 -0.932699 -1.162262 0.551748 +PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = -0.141447 -0.024815 0.532990 -0.579352 0.573356 0.064870 0.305072 0.286946 -1.090456 -0.936052 0.106866 -1.471577 -1.116679 1.171537 -0.185386 0.104481 1.635368 0.384566 -0.240495 -0.418068 0.343534 -0.540378 1.295729 1.619035 -1.061876 0.299151 -0.300325 0.476011 -0.012080 0.757215 0.312600 -1.228194 0.040082 0.069915 0.695470 -0.514322 -0.395735 0.194379 -0.194482 -2.243418 -0.074712 1.424494 0.614248 -0.066377 0.383234 0.717966 1.340903 0.762784 -0.225872 0.815256 0.572934 -0.068461 0.720328 0.009521 0.302773 -0.105667 0.442703 -0.441610 -0.682684 0.421481 -0.301116 -0.900205 -0.114471 0.985189 1.279618 -0.150228 -0.576017 -0.374525 0.215122 0.445078 0.282069 0.758124 0.421787 0.158474 0.712861 -0.332654 -0.065400 -1.873212 0.503939 -2.743391 -1.177523 -0.334588 1.788847 1.382087 -0.093378 -0.662576 1.639576 -0.384304 -0.077112 0.904370 1.461677 -0.371565 -0.410598 -0.543577 -0.541379 0.428033 -0.430349 -0.208114 0.299955 0.482872 -1.017272 -0.356290 0.477410 -0.278612 -0.610558 0.238554 -0.191220 1.069152 -1.270399 -0.253139 -1.106539 0.737448 0.596422 -1.574854 0.070944 -0.373765 -0.470890 0.708759 -0.856469 -0.163551 0.594886 -0.140891 -0.623101 0.204723 -1.583206 1.366838 0.075957 0.053465 0.166127 0.665431 0.424645 0.542376 0.469106 -0.650848 0.043263 0.560276 -0.139151 0.215602 -0.558248 -0.400645 0.347658 -0.810307 -0.010637 -0.242594 -0.761706 -0.451542 -1.076379 -0.286358 0.127623 2.197542 -0.414842 1.113227 0.552993 -0.796063 1.332469 0.100251 -0.105693 0.194435 0.989458 0.714758 -0.516865 -0.717137 0.741229 1.632117 0.636416 -0.707940 -0.139675 0.297317 0.096841 -0.018793 0.968622 0.185947 0.286877 -0.654633 -0.180557 0.352977 1.864812 -0.147342 -0.892516 -0.095414 0.571967 0.192638 -0.887137 0.168893 -0.613743 -0.092872 0.155974 0.038969 0.555083 1.271049 -2.372148 1.303827 -0.016769 -0.127194 1.018905 -0.099539 -0.506348 -1.879137 -0.241113 0.611453 1.434072 0.217751 -0.317100 -0.040566 -1.223081 -0.043427 0.132655 0.465478 -0.832249 1.113401 -0.429464 -0.527873 -0.381416 -0.820454 -0.452000 -0.242494 -0.748595 0.609299 0.986939 -1.430001 0.986035 -0.008524 -0.450640 -0.260690 0.015695 0.507033 -0.816877 -1.051370 0.200052 -0.634996 -1.499078 -0.669123 -0.629321 0.342221 0.033468 -0.204181 -0.408073 -1.069955 1.465739 -0.286059 1.340748 0.750848 -0.285982 1.042428 1.695670 -0.673335 -0.144624 -0.674278 0.422306 -0.718055 -0.214300 -0.186441 -0.601152 0.542528 1.171934 0.061392 -0.398915 -0.621890 1.270542 -0.406780 -0.495327 0.628389 -1.082927 -0.098663 0.903910 0.871396 -0.994086 -0.013048 -1.355881 0.147788 -0.395819 -0.374963 0.591058 -0.723705 0.004743 0.287743 -0.387500 -0.529014 0.369384 0.247307 -0.553536 -0.108926 1.689261 0.752351 -0.563042 0.897445 -1.161016 0.810383 -1.208174 -0.619592 -0.428818 0.370204 -0.689930 -0.203695 -0.041600 0.460299 0.411536 -0.519660 -0.871592 0.599800 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 0.108562 0.240969 0.362785 -0.089745 0.309884 -0.089748 0.140269 0.416580 -0.360037 -0.429266 -0.117269 -0.488181 -0.553497 0.408849 0.035381 -0.182466 0.649392 0.244855 0.062722 -0.134358 -0.161974 -0.276761 0.428161 0.509027 -0.347739 0.266667 -0.165015 0.084148 -0.247963 0.639840 -0.107902 -0.685840 0.078734 0.308421 0.297343 -0.210968 -0.225218 -0.131389 -0.453888 -0.904654 -0.003736 0.682362 0.141716 -0.051697 0.205630 0.414701 0.704569 0.184582 -0.006977 0.343141 -0.009420 -0.025135 0.264283 0.051022 0.281898 0.035996 0.256179 -0.306817 -0.482412 0.290624 -0.124350 -0.619946 -0.270287 0.220202 0.320057 -0.093494 -0.203457 -0.326843 -0.166657 0.110582 0.040313 0.171076 0.393343 0.041452 0.227108 0.308368 -0.037427 -0.237047 0.063855 -1.300993 -0.507978 -0.319607 0.875666 0.557089 -0.179813 -0.400782 0.523591 -0.192436 0.221779 0.144206 0.599609 -0.132299 -0.215917 -0.170323 -0.009153 0.193873 -0.097681 -0.241227 0.150923 -0.076550 -0.373090 -0.045960 0.366672 -0.202641 -0.191182 0.319507 -0.079323 0.396761 -0.708062 0.045221 -0.697266 0.066081 0.328758 -0.422949 0.049288 0.232877 -0.108905 0.413735 -0.292640 0.043075 0.305900 -0.029479 -0.260472 0.166715 -0.688902 0.608177 -0.189444 -0.034817 0.234205 0.256122 0.214587 0.073096 0.329528 -0.119409 0.017763 0.237231 0.004978 -0.039271 -0.034960 -0.177245 -0.097633 -0.269795 0.072753 -0.218123 -0.334518 -0.070026 -0.788745 -0.090349 0.138776 0.361355 -0.237377 0.291168 -0.044302 -0.325131 0.426311 0.022019 -0.219371 -0.095817 0.422670 0.337139 0.213143 -0.145635 0.163326 0.529685 0.247083 -0.211562 0.188737 -0.058885 0.044523 0.067561 0.400580 0.047622 0.281907 -0.267846 -0.074654 -0.030351 0.723128 -0.016599 -0.621916 -0.061140 -0.010890 0.223785 -0.088415 0.150096 0.105511 -0.030261 -0.051901 -0.143205 0.132138 0.426865 -0.938439 0.539759 -0.143067 -0.279034 0.366345 -0.095985 0.007862 -0.540794 -0.128489 0.326439 0.696556 0.280242 -0.115923 -0.163552 -0.343547 -0.098257 -0.000885 0.246998 -0.241274 0.342287 -0.105680 -0.353172 -0.109189 -0.633201 -0.001274 0.053655 -0.355437 0.084224 0.507016 -0.905456 0.387468 0.037252 -0.137217 -0.166987 0.192924 0.000342 -0.280748 -0.459861 -0.069050 -0.299483 -0.814187 -0.130037 -0.318150 0.067825 -0.078694 -0.182595 0.032306 -0.327209 0.695076 0.090427 0.422221 0.310694 -0.031618 0.588923 0.841264 -0.350695 0.187368 -0.298382 0.336609 -0.652909 0.149096 0.383866 -0.351333 0.120632 0.521935 0.124540 -0.029052 -0.357627 0.436594 -0.043519 -0.163981 0.396542 -0.437053 0.174859 0.457301 0.472309 -0.314049 -0.167007 -0.490885 -0.030484 -0.051993 -0.076759 0.054690 -0.475783 -0.127522 0.292736 -0.189189 -0.449676 0.075904 -0.162340 -0.346803 -0.181171 0.560807 0.389344 -0.435806 0.668357 -0.224128 0.281992 -0.389249 -0.113227 -0.258842 0.129215 -0.208740 -0.062804 -0.030256 -0.053897 0.010576 -0.209198 -0.312733 0.157290 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -1.870819 -1.485102 1.241742 -3.555432 3.415123 3.223235 1.321209 -2.755168 -4.440116 -2.286400 1.410755 -6.374570 -3.938250 5.211193 -2.396309 3.274834 6.234611 0.007727 -1.932554 -2.253202 4.002925 -0.368263 7.644829 6.898371 -5.450799 0.160035 -0.699584 3.443693 1.734375 1.586840 2.230940 -3.217320 0.868738 -3.135722 1.200958 -1.818282 -1.272930 1.500344 2.503554 -8.518615 -0.915717 3.778520 -0.157372 0.661845 1.474906 2.191943 4.699056 4.020200 -0.386946 4.530779 3.017965 -0.121671 3.561125 0.243776 0.408135 -0.100879 2.323969 -2.243427 -1.682416 -0.234668 -2.058823 -1.913401 0.996795 5.574337 6.614200 -0.481261 -2.841143 1.396826 1.473994 1.807706 1.915089 5.051416 -0.766320 2.389532 3.956201 -4.853802 1.020397 -7.644989 1.453820 -7.239494 -4.421179 -0.528655 3.900931 4.063961 2.282273 -0.411529 8.392181 -0.942656 -2.442132 5.675299 5.928179 -3.354610 -0.837164 -2.047745 -2.545162 -0.190123 -2.365540 0.305427 -0.024426 3.922190 -4.591294 -2.552246 0.652714 -0.071529 -2.923645 -1.403071 -1.263603 4.591091 -5.221230 -3.521358 -2.971541 4.010273 -0.516664 -8.213029 -2.716142 -2.748543 1.450155 1.463742 -2.489673 -2.934487 2.729628 1.367891 -1.356797 -0.994879 -2.444590 4.132951 3.388568 0.801494 -0.527470 3.889289 0.837559 6.055552 2.086397 -2.095024 -0.486158 1.953578 -0.506805 2.317661 -1.740344 -0.509033 0.994920 -4.070118 -0.757853 2.275648 -2.441715 -2.127147 -1.682995 -1.176886 -0.121663 14.315558 -1.719409 5.477036 4.164258 -4.490624 2.216948 -1.045633 1.258059 1.881521 2.967216 3.280771 -6.749319 -4.114171 4.810421 7.124151 2.358844 -5.010364 -0.182444 2.031877 1.072757 -0.740325 2.979026 1.638007 0.297600 -3.091960 -0.318633 1.465222 9.912062 -2.539111 -2.428715 1.242462 1.842596 -0.707330 -4.726058 -0.679400 -2.595960 -1.215443 2.340682 1.433527 1.606131 5.747025 -7.508680 4.826738 0.201902 0.211807 4.772788 0.518127 -3.205724 -5.637307 -2.434350 2.288890 3.964275 -0.563087 -1.070060 0.341980 -6.053289 1.349220 1.279908 1.758033 -3.248069 5.779521 -0.716037 -2.607147 -2.130781 -0.325696 -1.529528 -0.919657 -2.333947 3.665422 0.943143 -5.568498 4.086906 0.224329 -2.548078 0.758471 -0.271282 5.451604 -3.468725 -4.741054 2.993347 -2.922513 -4.801800 -2.951814 -1.792959 1.367971 2.853734 0.613026 -4.972051 -4.259884 4.764048 -2.099431 5.703842 3.205969 -0.997997 4.464177 0.446275 -3.355217 -2.418145 -3.927031 1.043155 0.799133 -2.117841 -3.070727 -1.616672 3.888073 4.586962 -0.501876 -2.563511 -1.755867 5.855539 -4.524014 -1.236197 2.047104 -0.079666 -3.386700 2.706459 2.991065 -3.183299 0.985040 -3.927203 0.200385 -3.864289 -1.578332 4.074481 -2.056796 0.641703 0.241609 -0.671389 -0.884623 1.624702 2.066081 -0.414809 0.453107 7.664902 5.052737 -1.409824 0.527094 -5.641542 4.007524 -5.611011 -3.804369 -0.381374 0.680155 -2.069429 -0.722959 -0.065130 4.297225 4.162674 -4.037687 -2.953288 1.640005 +PE-benchmarks/cutting-a-rod.cpp__main = 0.022574 0.092824 0.460457 -0.239250 0.430119 -0.089130 0.253720 0.345065 -0.614261 -0.677395 0.198989 -1.076219 -0.951047 0.702096 -0.090195 -0.110781 0.917940 0.128775 -0.066752 -0.294761 -0.029022 -0.269041 0.890980 0.970451 -0.758241 0.272491 -0.267106 0.300720 0.030217 0.466201 0.148754 -0.825547 0.220173 0.247569 0.329990 -0.101546 -0.219873 -0.187769 -0.380824 -1.284318 -0.078375 0.965242 0.127624 -0.018322 0.248558 0.887962 0.958439 0.483014 -0.173131 0.648883 0.340114 -0.284305 0.429461 0.052793 0.220008 -0.472963 0.339398 -0.270685 -0.663719 0.256921 -0.109199 -0.951858 -0.404034 0.545953 0.787502 -0.170984 -0.309185 -0.281301 -0.050249 0.259072 0.212829 0.407058 0.605428 0.169872 0.604434 0.310084 -0.049559 -0.824987 0.055716 -2.136802 -0.833994 -0.262484 1.536513 0.679942 -0.243179 -0.594384 0.917086 0.024786 -0.019104 0.521134 1.018117 -0.228758 -0.383844 -0.197764 -0.125776 0.400218 -0.388392 0.033489 0.356626 0.148884 -0.690747 0.025359 0.372796 -0.310922 -0.370016 0.320594 -0.143741 0.571301 -0.984530 0.094436 -0.830875 0.186874 0.639923 -1.006106 -0.075328 0.178727 0.084758 0.561885 -0.423615 0.248660 0.314977 -0.255161 -0.318147 0.245699 -1.085338 0.904705 0.014547 0.258345 0.325701 0.583569 0.481220 0.293522 0.332877 -0.261338 -0.032469 0.176552 0.000497 0.336221 -0.116977 -0.225683 0.266622 -0.424451 0.221070 -0.303150 -0.481090 -0.372996 -0.879651 -0.009420 0.071182 0.956426 -0.128331 0.742965 0.319136 -0.459977 0.569991 -0.166514 -0.150522 0.108814 0.567396 0.393483 0.171389 -0.357853 0.478496 0.981776 0.380252 -0.701293 0.329930 0.290038 0.178759 -0.219708 0.615912 0.205549 0.445728 -0.398150 -0.064738 0.400077 1.006729 -0.136815 -0.933002 -0.032732 0.177148 0.405664 -0.297727 0.168854 0.249854 -0.003455 0.102244 0.074054 0.259660 0.774644 -1.573961 0.753573 0.146721 -0.100350 0.655849 -0.003703 -0.453706 -1.031864 -0.067439 0.411177 0.789999 0.434414 -0.258339 -0.030426 -0.699556 -0.077885 0.124090 0.151173 -0.349868 0.625256 -0.239382 -0.239226 -0.352140 -0.928894 -0.108384 0.221912 -0.550507 0.389452 0.624426 -1.445524 0.599325 -0.054353 -0.513853 -0.504823 -0.055655 0.263836 -0.629262 -0.736506 -0.044709 -0.762430 -1.487193 -0.555480 -0.376024 -0.083498 0.005277 -0.142919 -0.139110 -0.489372 1.225769 -0.145675 0.726944 0.499132 -0.118810 0.939088 1.056351 -0.569469 0.037276 -0.419635 0.678263 -0.798700 -0.173987 0.474617 -0.406961 0.222368 0.727010 0.008250 -0.189259 -0.427665 0.624724 -0.312205 -0.548219 0.533959 -0.315902 0.051383 0.899842 0.627322 -0.576921 0.077065 -0.879056 -0.283635 -0.242171 -0.320251 0.295648 -0.440450 0.007878 0.310607 -0.195848 -0.477646 0.232928 -0.168519 -0.417630 -0.183261 0.996597 1.034361 -0.732006 0.715762 -0.755648 0.561767 -0.770182 -0.583940 -0.023874 0.101337 -0.324496 -0.157044 -0.020525 0.111436 0.294155 -0.705673 -0.713976 0.602275 +PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -1.743782 -1.516767 -0.495096 -2.298974 1.798634 3.009901 1.199809 -2.412686 -3.629481 -1.267463 1.557665 -5.017366 -2.607611 4.346842 -1.436044 3.194888 5.329289 0.489325 -1.947619 -1.477897 3.247830 -0.201663 6.089889 6.431637 -3.935209 0.119677 0.010114 1.445264 1.474673 0.347411 0.940069 -2.591358 1.837724 -3.425600 0.297605 -1.897486 -0.942990 1.338511 3.126676 -6.697882 -0.350403 1.930591 0.596257 -0.070450 0.233780 2.295536 3.580838 3.482574 -0.224378 3.347102 2.549533 -0.333861 2.014252 0.254426 0.941293 0.088470 0.842589 -0.227896 -0.901021 -0.665140 -1.082559 -1.426670 0.133981 4.264070 5.214879 -0.243976 -1.952738 1.237620 1.131793 1.119451 1.425548 3.314219 0.344403 1.184482 2.718913 -4.360027 0.228034 -6.552273 0.549661 -7.477058 -2.976110 0.166354 3.345263 1.425392 2.346223 -0.733045 6.231430 -0.682361 -2.116026 3.804746 4.985651 -3.742507 -1.113285 -0.970695 -1.562015 0.356021 -2.168453 1.216983 1.485013 1.487928 -3.833342 -2.478757 0.826601 0.568138 -2.409681 -1.992719 -0.277313 3.125010 -3.804330 -2.573383 -2.008654 2.207312 -0.327587 -6.678327 -1.461925 -2.539260 0.943910 1.170368 -2.957604 -3.145372 1.701231 0.824888 -0.945703 -1.969975 -0.951252 3.020551 2.613829 1.063810 -0.141277 2.279078 1.184908 6.007671 1.481409 -2.308328 0.231017 1.119845 -0.910592 2.178008 -1.957696 -1.219157 1.777958 -3.799717 0.286694 1.807644 -2.341248 -0.898831 1.559664 -0.025679 -0.261953 11.970275 -0.824842 4.739566 3.925087 -3.681840 1.865920 -1.867818 0.807313 1.758761 2.695818 1.933070 -5.597106 -3.297853 3.510924 6.087356 2.275036 -4.487517 -0.496269 1.415229 0.941311 -1.182965 2.146326 0.777527 0.671001 -2.470730 -0.404200 2.483914 7.694307 -2.720609 -0.411959 0.673049 1.827976 -0.245417 -4.126413 -0.739879 -3.188244 -0.108116 1.691901 1.275705 1.810403 4.724493 -5.934249 3.876239 -0.772921 0.013778 3.518570 1.580619 -3.469469 -4.207371 -0.939528 1.778257 3.492883 -0.167894 -0.089405 0.931129 -5.035386 0.124825 0.950117 0.786067 -2.776709 4.106596 0.154557 -1.829281 -1.663850 0.387319 -0.842642 -1.888834 -1.223755 3.332918 0.942388 -5.050833 3.335895 0.567303 -2.378408 0.287409 -0.760327 3.737564 -3.575521 -3.902438 2.499657 -1.883079 -2.764257 -1.811982 -1.134087 1.532786 1.623243 0.756174 -3.578002 -4.141954 4.401761 -1.441232 4.866504 2.369068 -0.917597 3.192240 -0.886651 -2.392467 -2.643093 -2.780905 0.436526 -0.016851 -2.667426 -2.102229 -1.179635 3.415759 3.780996 -0.021367 -2.422091 -0.524893 4.266741 -3.948984 -0.650817 1.705598 2.183872 -2.769589 1.895133 2.373774 -3.486849 0.988253 -2.895698 -0.758522 -2.455337 -2.300969 3.398708 -1.327454 1.527783 0.048061 -0.399184 0.116107 1.798763 1.590399 -0.078976 0.964028 5.497830 3.813538 -1.406911 -0.384956 -5.127399 3.014496 -4.653484 -3.945445 0.711613 1.159101 -2.672702 -0.953073 0.203144 3.517825 2.688089 -2.954245 -2.561591 1.570582 +PE-benchmarks/longest-palindromic-subsequence.cpp__main = -0.001841 0.096097 0.689836 -0.354084 0.440877 -0.161185 0.263552 0.305378 -0.698150 -0.728741 0.252124 -1.467600 -1.137648 0.804890 -0.164339 -0.235769 1.023104 0.081339 -0.134665 -0.388080 -0.060702 -0.089149 1.045911 1.124311 -0.880017 0.260551 -0.507287 0.477287 0.121601 0.439152 0.253170 -0.907666 0.112791 0.481432 0.383480 0.067389 -0.209512 -0.200173 -0.463100 -1.392236 -0.096561 1.290828 0.289152 -0.066087 0.337003 0.795228 1.113255 0.567795 -0.057924 0.549944 0.390001 -0.276085 0.591815 0.050936 0.301595 -0.690160 0.604627 -0.589474 -0.770479 0.259196 -0.120793 -0.934933 -0.504772 0.701087 0.938780 -0.020581 -0.400535 -0.425818 0.031673 0.287336 0.276119 0.496576 0.719897 0.386630 0.689580 0.589523 0.147519 -0.789337 0.171451 -1.968851 -0.947090 -0.250893 1.750677 0.954287 -0.337066 -0.750001 1.041110 0.033068 -0.072303 0.609188 1.205339 -0.181678 -0.433223 -0.227699 -0.247051 0.466617 -0.451125 0.166858 0.116819 0.395747 -0.794979 0.042443 0.385846 -0.386790 -0.426081 0.594413 -0.102355 0.569639 -0.927948 0.201632 -0.838448 0.290995 0.821354 -1.025308 -0.309359 0.073959 -0.085782 0.576020 -0.501843 0.357362 0.344402 -0.428473 -0.405246 0.399057 -1.642040 0.966800 0.058987 0.259863 0.253833 0.734642 0.586600 0.258504 -0.012133 -0.343688 0.016693 0.159151 0.024347 0.383043 -0.145668 -0.225510 0.363968 -0.233359 -0.034222 -0.400230 -0.526423 -0.474479 -1.337634 -0.016789 0.071676 0.961316 -0.105034 0.732569 0.395205 -0.448461 0.654417 -0.135261 -0.140404 0.024778 0.555002 0.497488 0.219918 -0.516637 0.632576 1.095471 0.417717 -0.597141 0.596335 0.465749 0.228051 -0.332246 0.767621 0.241210 0.429279 -0.463088 -0.083375 0.492879 1.108227 -0.060320 -1.085293 -0.004408 0.178748 0.596939 -0.123431 0.217864 0.542873 -0.018411 0.004730 0.187381 0.374973 0.912700 -1.691148 0.873361 0.368550 -0.046655 0.845939 -0.186608 -0.574211 -0.908835 -0.081249 0.482440 0.830122 0.547245 -0.363496 -0.093291 -0.821355 -0.068215 0.104817 0.190532 -0.393151 0.721635 -0.331280 -0.244807 -0.433700 -1.210247 -0.236839 0.361076 -0.775327 0.461727 0.793755 -1.324642 0.747503 0.052851 -0.444206 -0.700174 -0.243395 0.229194 -0.743443 -0.766913 -0.136002 -1.011644 -1.751350 -0.643132 -0.401989 -0.199971 -0.021971 -0.046991 -0.344434 -0.344506 1.544136 -0.171523 0.882399 0.554417 -0.156480 0.751615 1.504440 -0.577583 0.181261 -0.469692 0.747833 -0.708901 -0.291213 0.684309 -0.465003 0.212217 0.783166 -0.158448 -0.266335 -0.564279 0.668044 -0.268937 -0.772734 0.537505 -0.658837 -0.007839 0.991724 0.654126 -0.599908 0.141344 -1.061250 -0.426121 -0.376701 -0.415049 0.326892 -0.435293 -0.001468 0.378272 -0.336694 -0.574409 0.219593 -0.166361 -0.625690 -0.091929 1.224419 1.023696 -0.606623 0.912457 -0.971364 0.625310 -0.858140 -0.645384 0.040838 -0.128189 -0.486473 -0.223236 -0.036905 0.150721 0.453350 -0.707149 -0.907363 0.790464 +PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -5.337206 -5.098473 -2.565279 -7.910630 4.533538 10.197860 2.808621 -10.178074 -9.278137 -1.294014 5.439998 -15.006293 -5.440994 10.894708 -4.972899 9.067485 12.145523 -0.929361 -6.931555 -3.530626 8.112529 3.801938 16.264277 16.344822 -8.821221 -0.643687 -1.761755 5.067491 3.327123 -2.748302 4.828257 -4.806124 3.460130 -9.232263 -2.044565 -1.354988 -2.598467 3.365574 9.994242 -14.665436 -1.060971 3.325203 0.257190 -0.020175 0.085630 1.634727 7.918385 8.951176 2.697483 7.240922 6.016981 -0.098210 5.367588 0.320625 3.243696 -1.289038 2.214515 -3.619205 -0.713589 -3.801231 -2.815749 1.171756 0.176169 11.854339 12.296343 1.634892 -6.017838 3.819336 3.980982 3.014836 3.716783 9.286010 -3.288861 5.871375 4.960952 -11.803976 3.247859 -12.393257 2.481209 -9.724148 -6.887308 3.368708 6.584428 5.731758 6.495276 0.344584 15.856423 -1.060144 -7.912348 10.940834 12.146220 -8.813043 -2.242538 -0.674257 -4.493950 -0.637290 -4.076073 5.592215 0.846667 8.253120 -9.759093 -3.125501 -0.520283 1.680551 -5.906810 -4.915015 0.712343 7.102520 -7.220259 -5.801926 -0.266578 8.944970 -1.058676 -17.369407 -8.743041 -7.398988 2.724140 0.779437 -8.515228 -8.474172 4.422472 1.189989 -1.650999 -3.465150 -2.193540 3.867170 8.407483 3.165169 -2.271242 8.189584 3.454200 17.714586 -1.269993 -5.553472 2.062186 1.482947 0.067572 6.707656 -2.201940 -1.935477 0.163415 -9.426557 1.886896 6.529703 -5.084165 -3.498711 -0.015548 1.569952 -2.387729 34.126842 -2.420155 13.340128 11.979991 -8.838793 0.610392 -6.692411 3.352558 3.398218 4.098709 4.167764 -14.812731 -8.956316 11.057681 15.854626 5.278347 -10.115618 2.163620 5.760979 1.104427 -4.147654 5.658719 1.553866 0.587076 -4.437193 -1.206438 8.388982 19.174773 -5.804656 0.555488 2.736863 3.956154 1.321462 -6.962970 -2.210812 -5.984734 0.101750 6.496741 5.139700 4.703099 11.600150 -10.498238 9.040454 0.937856 2.184210 9.509326 4.959754 -10.316660 -6.504364 -4.627774 4.132850 6.660547 -3.013232 -2.175539 2.093622 -12.537376 0.616493 4.312099 0.744992 -6.992512 10.470544 1.203865 -3.831257 -3.531618 3.026391 -2.884800 -2.195138 -4.088410 9.316259 -1.532304 -9.598535 8.445345 3.733818 -5.553236 0.009655 -4.764793 11.182234 -8.034488 -8.488034 6.714209 -5.569482 -6.324176 -2.419625 -2.589982 2.721988 6.129666 5.474824 -11.875696 -5.467215 10.858212 -3.689045 13.427989 5.526722 -2.682270 4.962334 -7.801085 -5.820948 -4.839451 -9.756142 1.997117 4.433413 -8.701210 -3.537009 -2.300675 8.663869 6.885119 -0.857128 -9.467143 0.570642 9.484162 -8.722535 -1.188570 2.187329 4.108607 -10.261574 3.261993 4.332547 -7.182107 5.179200 -6.402869 -2.725294 -9.300436 -6.312849 9.026028 0.022253 4.969548 -1.523526 -1.102132 2.075608 4.417182 4.731339 1.980167 6.074710 13.110546 5.829175 0.391886 -3.102396 -14.576368 7.985858 -10.667012 -11.188012 3.924004 2.003426 -5.959107 -3.794900 -1.822354 10.042310 8.336959 -8.994818 -6.484457 6.170432 +PE-benchmarks/subset-sum-problem.cpp__main = -0.234980 -0.244543 0.284840 -0.434527 0.550491 -0.007285 0.386675 0.185344 -1.123856 -0.970579 0.304046 -1.592075 -1.150286 1.228485 -0.175907 0.374862 1.597027 0.350140 -0.256348 -0.394601 0.427054 -0.629826 1.403921 1.644913 -0.999684 0.236344 -0.410902 0.409616 -0.018713 0.500349 0.459944 -1.164501 0.269547 -0.231467 0.523751 -0.424773 -0.340763 0.317016 0.042279 -2.115002 -0.093716 1.400439 0.661852 -0.061929 0.261949 0.781440 1.178563 0.842925 -0.188172 1.019007 0.577362 -0.352753 0.764047 0.077506 0.264220 -0.230164 0.162930 -0.459160 -0.790127 0.346770 -0.337694 -1.038955 -0.158053 0.939970 1.349188 -0.215396 -0.564995 -0.158588 0.119667 0.506895 0.404252 0.766766 0.444747 0.002311 0.828202 -0.425212 -0.224880 -1.929710 0.301028 -2.903218 -1.195275 -0.179676 1.889551 1.305056 0.039045 -0.592162 1.625478 -0.272720 -0.301431 0.970655 1.501695 -0.513740 -0.509949 -0.455885 -0.380255 0.399505 -0.573632 -0.099626 0.524683 0.488053 -1.096555 -0.328910 0.498701 -0.229876 -0.572405 -0.041374 -0.190272 1.080038 -1.297968 -0.404160 -1.086019 0.663269 0.578537 -1.643710 0.217023 -0.244127 -0.438518 0.827754 -0.897988 -0.134052 0.623876 -0.251797 -0.528055 0.039332 -1.367366 1.298852 0.061085 0.246804 0.244939 0.828006 0.420053 0.785388 0.506573 -0.626867 0.056710 0.465820 -0.111548 0.525872 -0.481973 -0.540887 0.419422 -0.930189 0.062462 -0.265375 -0.774132 -0.524392 -0.897055 -0.098975 0.024273 1.898680 -0.287323 1.232386 0.744412 -0.781157 1.309408 -0.150158 0.049837 0.249145 1.006392 0.570749 -0.419628 -0.772487 0.854914 1.660246 0.662970 -0.884584 -0.243433 0.385543 0.352731 -0.104915 0.908115 0.343954 0.452020 -0.700526 -0.095980 0.463958 1.856762 -0.355163 -0.633533 0.026152 0.537233 0.259025 -1.152583 0.060520 -0.689008 -0.121136 0.147867 0.180293 0.392540 1.308736 -2.111720 1.271009 -0.057854 0.040353 1.010694 0.059903 -0.725868 -2.068799 -0.311130 0.527323 1.330616 0.276844 -0.231756 0.065513 -1.263617 -0.018103 0.126289 0.341198 -0.711531 1.138626 -0.589166 -0.389088 -0.428185 -0.675673 -0.438697 -0.284476 -0.574822 0.736639 1.219904 -1.320767 0.896384 -0.057196 -0.644107 -0.284017 0.104803 0.713594 -0.820901 -1.090990 0.292132 -0.873647 -1.631307 -0.781733 -0.524458 0.192240 0.091699 -0.396047 -0.250484 -0.973124 1.583178 -0.310525 1.374004 0.716689 -0.357536 1.101031 1.567557 -0.857912 -0.155336 -0.638719 0.286294 -0.877032 -0.300434 -0.297023 -0.490469 0.637476 1.099633 0.182720 -0.486438 -0.524121 1.260532 -0.612248 -0.563823 0.764810 -0.794276 -0.118222 1.026144 0.944338 -1.079456 0.138368 -1.302148 0.144963 -0.474657 -0.426950 0.601395 -0.631419 0.070507 0.143316 -0.316862 -0.355982 0.364720 0.320216 -0.465222 -0.198014 1.761025 0.871151 -0.654296 0.674445 -1.252509 0.772038 -1.219131 -0.768015 -0.249083 0.640971 -0.773396 -0.201962 0.113039 0.486786 0.504341 -0.822892 -1.039199 0.627957 +PE-benchmarks/bellman-ford-algorithm.cpp__main = 0.785540 12.250704 11.128012 -8.323745 10.829586 15.441379 0.986895 -2.636865 -3.450133 -1.537223 -3.464914 -10.949658 -9.674963 8.351619 -2.659223 -1.953030 12.481059 -2.482677 -2.650852 -0.401483 2.723774 5.588453 11.902593 11.496504 -12.274744 4.400963 6.751261 2.572287 -1.624848 13.711286 -10.328575 -14.159221 -1.442485 3.871949 3.599533 -1.174227 -4.734973 -10.132246 0.178372 -16.716945 -0.935397 5.194281 -8.267117 -1.757446 2.945625 -1.031552 21.532891 5.356887 -2.361061 -2.565508 4.591758 6.750887 0.967180 -0.704439 5.961051 1.880668 14.518500 3.123064 -1.578867 -0.995400 -1.447626 1.101480 -3.996293 11.394530 8.743382 2.514110 -4.457864 -2.770769 0.631471 -1.623960 -5.554485 7.149867 5.337110 13.803632 3.518324 -0.542194 5.189148 -8.565961 3.230959 -6.033191 -9.385570 -6.911260 0.395759 4.751916 3.809531 -7.028548 14.163879 -3.198385 4.832242 1.853344 16.611091 -8.237156 -0.323181 -5.901696 -8.303958 0.743149 -0.921767 2.148023 -5.873595 -5.825652 -8.313144 -9.240259 3.234730 0.565043 -6.675009 5.186664 -0.397159 6.153627 -5.511439 -0.347394 -7.704411 1.051402 -0.749897 -15.861391 -12.768588 -1.661599 1.649081 0.936475 -4.299272 -12.845955 3.362560 7.993471 -6.398478 -4.039370 -4.906473 11.512656 9.793279 -1.223007 1.196744 -1.862016 9.624121 8.467053 5.772793 -3.059610 0.022889 -1.178559 -1.159055 -3.940866 -2.407099 3.777837 -5.256726 -3.372905 0.003400 10.472323 -5.033502 3.821544 -6.124500 -7.223190 3.531945 37.967082 -7.792512 7.145056 -1.528288 -14.100017 6.623610 0.201544 -10.493638 -2.299254 3.803364 13.806729 -16.881247 -4.773942 8.761829 13.342168 4.242150 -8.778687 7.341747 0.327778 -6.141776 -5.029451 7.669920 -1.370775 0.492352 -5.310957 -4.573396 7.642330 21.403155 -3.892149 -23.490125 2.793596 1.963872 4.291114 1.193602 0.645960 -1.304450 0.487240 6.892746 -3.262118 9.894600 10.879646 -24.406811 8.932497 1.143089 -13.382616 13.593964 -1.469243 -2.565994 6.452321 4.214345 12.944988 8.514050 3.311960 -3.990721 -7.448009 -9.149428 -1.785355 3.047208 4.633964 -8.666420 8.366856 5.113176 -13.546971 -6.772172 -11.394549 -1.430521 -3.598866 -12.444977 2.945950 -6.068324 -23.461514 16.320255 6.752065 0.581751 -1.202362 -9.107160 2.425776 -8.275975 -12.487530 2.960000 -2.369819 -2.646843 3.547246 -5.709881 4.184110 6.607681 10.767709 -14.217553 -14.651853 6.726298 2.842699 10.284431 7.248929 6.839168 7.024861 5.056046 -2.562460 -5.714046 -10.410445 15.364250 5.926087 -7.340982 -2.437537 -8.948485 6.100584 11.453280 -5.786490 -1.818967 -14.350635 5.002751 -5.799946 1.772715 2.631783 -1.330010 -10.094625 -4.666707 5.228712 1.144967 -4.295044 -8.063218 -4.503707 -8.463476 -8.667740 0.850541 -6.406762 -1.532659 10.395106 -6.493999 -7.974292 2.654142 -3.039221 -2.412911 2.771112 5.957858 7.655301 -7.160716 7.799979 -9.576388 9.865307 -13.101811 -10.931572 3.907942 -11.358318 -3.625431 -6.718483 -2.809865 3.716531 -1.547890 2.486781 0.626015 0.984777 +PE-benchmarks/Nearly_sorted_Algo.cpp__main = 0.045692 0.363876 0.670174 -0.335491 0.703691 0.223016 0.318096 0.403416 -0.729715 -0.816101 0.077851 -1.275790 -1.297887 0.952676 -0.083558 -0.123377 1.350851 0.158284 -0.044562 -0.401081 0.059406 -0.308265 1.285457 1.385985 -1.121404 0.430760 -0.037158 0.357625 -0.010677 0.778159 -0.052112 -1.219884 0.300097 0.197332 0.458207 -0.266107 -0.387590 -0.396005 -0.400656 -1.910737 -0.151097 1.074982 -0.158405 -0.014082 0.338248 1.070498 1.542299 0.649739 -0.285340 0.841938 0.433994 -0.225723 0.524683 0.051732 0.337057 -0.354268 0.515092 -0.161911 -0.760439 0.344775 -0.167198 -1.178287 -0.505629 0.808095 1.072471 -0.222016 -0.483036 -0.294240 -0.091102 0.233907 0.091098 0.665572 0.858971 0.389084 0.850714 0.117752 -0.108665 -1.285261 0.082004 -2.767942 -1.182616 -0.530013 1.719514 0.670003 -0.111232 -0.727048 1.394669 -0.081498 0.128256 0.685436 1.476864 -0.531427 -0.419217 -0.350216 -0.210536 0.451265 -0.462510 0.053374 0.365146 -0.065241 -0.954871 -0.325162 0.595289 -0.349137 -0.591519 0.258344 -0.223814 0.834993 -1.302127 -0.024882 -1.293940 0.164373 0.598277 -1.443153 -0.278108 0.238288 0.328241 0.745240 -0.562785 -0.075996 0.453252 -0.042806 -0.441233 0.042636 -0.997434 1.257534 0.249285 0.202531 0.448067 0.663805 0.686026 0.642449 0.746343 -0.300578 -0.089510 0.295766 -0.073299 0.267882 -0.210185 -0.187280 0.234621 -0.609637 0.269578 -0.097230 -0.668747 -0.361099 -0.815617 -0.224097 0.162026 1.912519 -0.292056 0.931174 0.340606 -0.830854 0.756053 -0.259738 -0.380816 0.162114 0.833301 0.769392 -0.307965 -0.470167 0.645612 1.418466 0.512693 -1.092040 0.347357 0.258003 0.142015 -0.333555 0.862539 0.204451 0.592865 -0.546747 -0.114197 0.552778 1.663086 -0.380581 -1.481021 -0.024292 0.246687 0.483298 -0.522364 0.198045 0.141258 -0.072853 0.305993 0.002869 0.420805 1.079251 -2.284945 1.018928 0.006408 -0.411459 0.916406 0.100241 -0.501848 -1.099034 0.025724 0.710887 1.125874 0.596498 -0.273879 -0.205891 -1.021350 -0.112226 0.218161 0.314785 -0.598394 0.967198 -0.192884 -0.583839 -0.498526 -1.146923 -0.111907 0.075252 -0.756037 0.496494 0.596713 -2.237588 0.960756 0.020342 -0.617517 -0.445646 -0.159683 0.484620 -0.880276 -1.156404 0.115904 -0.843563 -1.697189 -0.532672 -0.586405 0.064931 0.182250 -0.034401 -0.405834 -0.965563 1.537209 -0.047821 1.037363 0.751799 -0.013688 1.406144 1.042027 -0.824085 -0.133993 -0.707800 1.041990 -0.825287 -0.270260 0.271913 -0.653929 0.408003 1.177672 -0.037780 -0.210965 -0.778500 0.888368 -0.715559 -0.514747 0.695969 -0.050769 -0.059732 0.987368 0.848957 -0.679497 -0.046766 -1.110318 -0.336730 -0.365673 -0.505416 0.383632 -0.798315 -0.056283 0.590366 -0.350230 -0.655574 0.360105 -0.246318 -0.445586 -0.249798 1.230972 1.531952 -1.109975 0.886688 -0.995617 0.839921 -1.140286 -0.836436 -0.044846 0.015612 -0.393295 -0.302845 -0.038378 0.179678 0.322384 -0.832556 -0.805527 0.572512 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 0.176219 1.715021 1.481608 -0.543794 1.370965 1.464065 0.330460 0.412156 -0.461623 -0.955057 -0.504972 -1.986310 -2.285614 1.326842 -0.229791 -0.512589 2.065321 -0.015654 -0.067283 -0.165520 -0.021057 0.209108 1.974280 1.907744 -1.912341 0.699305 0.487543 0.512367 -0.383426 1.953499 -0.839726 -2.368144 0.207302 0.887317 0.943864 -0.177354 -0.581551 -1.404956 -0.911409 -2.945876 -0.330101 1.732918 -0.558525 -0.161018 0.558481 0.637426 3.261697 0.940334 -0.331929 0.134573 0.427248 0.369604 0.685343 0.049423 0.640336 -0.313795 1.435640 -0.345932 -1.048227 0.253009 -0.209624 -1.331605 -1.011708 1.529374 1.606325 0.085329 -0.607880 -0.579097 -0.348732 0.082121 -0.647722 1.087634 1.415610 1.660044 0.973795 0.728503 0.351359 -0.980685 0.229914 -2.608228 -1.772396 -1.514043 1.355443 1.543430 0.172338 -1.493240 2.276201 -0.209372 0.898968 0.494527 2.780373 -1.141875 -0.420616 -1.052409 -0.530234 0.603561 -0.615590 0.147003 -0.183185 -0.720482 -1.437392 -1.016470 0.704371 -0.297686 -1.008164 0.879643 -0.401995 1.159507 -1.524488 0.036974 -2.176056 -0.338987 0.476008 -2.503674 -1.103953 0.488927 -0.198945 0.931692 -0.523494 -1.040217 0.627353 0.663057 -0.689057 -0.347400 -1.677179 2.171912 0.798523 -0.271530 0.706110 0.611445 1.415603 1.020708 1.155647 -0.210915 -0.263693 0.185880 -0.299542 -0.343206 -0.304073 0.183763 -0.324238 -0.833832 -0.024281 0.801779 -0.957042 0.135069 -2.103746 -1.020609 0.761032 3.990882 -0.878060 1.008987 -0.128361 -1.918780 1.494830 -0.182325 -1.474255 -0.276821 0.976702 1.988749 -1.268572 -0.681803 1.088073 2.182987 0.699354 -1.172638 1.202986 0.047602 -0.228904 -0.944853 1.374974 0.293236 0.563613 -0.869645 -0.403754 1.125654 2.830585 -0.710579 -3.168878 0.298996 0.225079 0.944177 -0.203960 0.258756 0.175951 -0.227016 0.564400 -0.296340 0.916334 1.729802 -3.159641 1.608565 0.317655 -1.537009 1.961286 -0.491083 -0.382608 -0.158947 0.701484 1.944378 1.485754 0.809828 -0.664129 -1.160299 -1.552470 -0.271585 0.429680 0.894908 -1.051551 1.431512 0.006146 -1.548591 -1.239616 -2.249607 -0.152515 -0.374144 -1.770531 0.483713 0.512406 -3.348164 2.328417 0.431770 -0.528778 -0.547365 -0.845967 0.255199 -1.549473 -2.092211 0.171375 -1.058086 -1.904113 -0.101431 -0.959540 0.329044 0.690791 0.444389 -1.308657 -1.858963 1.911451 0.476821 1.431417 1.186939 0.910888 1.710656 2.085597 -1.132872 -0.313662 -1.544118 1.962744 -0.482513 -0.715486 0.130552 -1.267321 0.812767 2.246663 -0.564317 -0.194899 -1.958409 1.027760 -0.832166 -0.582364 0.934332 -0.682845 -0.640129 0.289501 1.183477 -0.358009 -0.762454 -1.666832 -0.462221 -0.796785 -1.351514 0.001858 -1.721166 -0.405337 1.760835 -1.078902 -1.435178 0.468819 -0.516267 -0.745192 -0.214489 1.498762 1.306164 -1.650845 1.731562 -1.525957 1.417909 -2.137996 -1.395166 0.238569 -0.885413 -0.322059 -0.750723 0.000000 0.063887 -0.038515 -0.529171 -0.704447 0.189121 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -1.376579 -0.856895 0.445501 -2.238717 2.902852 2.585315 0.941698 -1.676369 -2.921778 -1.427350 0.582631 -4.424371 -3.480897 3.851147 -1.995668 2.321020 4.703737 0.053366 -1.013169 -1.655865 3.190105 -0.496534 5.870735 4.762024 -4.691529 -0.064452 0.109974 2.449960 1.482579 1.762452 1.269558 -2.693350 0.984077 -2.302533 1.497599 -2.065111 -0.650952 0.919816 1.402928 -6.725478 -1.004424 2.971373 -0.567027 0.914785 1.362039 4.016630 3.752498 3.242616 -1.328261 3.698478 2.294124 -0.128635 2.814796 0.197653 -0.575384 -0.192570 1.710495 -0.356299 -1.490470 -0.031419 -1.640049 -2.168304 0.763600 4.183273 5.532393 -0.943912 -1.942580 1.469814 0.905881 1.220842 1.192565 3.989245 0.516234 1.905917 3.566559 -2.898585 0.116340 -5.891862 0.814520 -7.459532 -2.789564 -1.337252 2.526799 2.040453 1.342652 -0.974103 6.806419 -0.093890 -1.400091 4.751708 4.622856 -2.730220 -0.606871 -2.420911 -1.821541 -0.105188 -2.079017 -0.154651 1.350756 2.417278 -3.315575 -2.583995 -0.370319 -0.326343 -2.298988 -1.354362 -1.785851 3.361574 -4.494988 -2.559344 -3.330763 2.058189 -0.619282 -6.763124 -2.091364 -1.676541 1.301285 1.159778 -0.904502 -2.030674 1.943398 1.577242 -0.896680 -0.764669 -1.054558 3.933648 2.606059 0.395104 -0.187792 2.863798 0.548827 4.187535 2.417799 -1.400369 -1.293546 1.892966 -0.913846 1.253616 -2.029440 -0.005527 2.207321 -3.622318 -0.107535 1.691875 -1.808344 -1.207700 -0.436301 -1.729587 0.623122 10.942946 -1.401560 3.775380 2.489009 -3.903980 1.989487 -0.443577 0.806964 1.781673 2.460171 2.824510 -5.017631 -2.943554 3.428185 5.199656 1.680870 -4.403655 0.106923 1.130392 1.180235 -0.727783 1.835275 1.905807 -0.473032 -2.083668 -0.028332 0.555881 7.629021 -2.363720 -2.044743 0.885783 2.201694 -1.082040 -3.700249 -0.450209 -2.254164 -1.453177 1.848471 0.915366 1.043575 4.406333 -6.247533 3.778904 0.239537 0.045474 3.078216 -0.032376 -1.882740 -4.732561 -1.322699 1.991745 2.775296 0.013467 -0.942380 0.096210 -4.517779 1.503453 1.067692 1.891835 -2.191487 4.345139 -0.560302 -2.057982 -1.982637 -0.291509 -1.018863 -0.810973 -1.717891 2.646472 0.520406 -5.496991 3.140776 -0.653846 -2.299619 0.678030 0.371059 3.596484 -3.236469 -4.088217 2.279433 -2.128927 -3.837525 -2.817595 -1.329048 1.214149 2.174161 0.179481 -3.832944 -4.967313 3.581693 -1.908113 3.551171 2.513397 -0.299274 4.296270 -0.081400 -2.923663 -2.762982 -3.151966 0.865036 0.233221 -0.983732 -1.797074 -0.902994 3.061047 4.068420 -0.439433 -1.281190 -1.700216 4.494384 -3.172667 -0.985532 1.723363 0.471456 -2.212014 2.238642 2.299188 -2.585676 0.104393 -3.014828 0.369160 -2.667134 -1.040954 2.777351 -2.811010 -0.013879 0.695734 -0.477285 -1.120014 1.373427 1.415686 -0.566395 -0.260860 6.106034 4.662229 -2.097762 0.910620 -4.024436 3.443106 -4.741065 -2.947986 -0.538482 0.205078 -0.766568 -0.084432 0.579453 2.923887 3.019724 -3.285075 -2.226557 0.554536 +PE-benchmarks/karatsuba.cpp__main = -4.269060 4.422000 14.615411 -8.511129 17.131159 2.908742 6.790710 7.939631 -10.332811 -16.709994 -2.821984 -11.440252 -32.706598 17.883821 -4.176127 2.731050 19.490970 -1.591733 0.078946 -14.776259 16.758866 -20.409629 26.514435 17.789828 -33.053733 3.516950 6.665049 21.076671 9.426455 18.643844 3.668015 -10.396423 -0.262006 -0.302410 25.357677 -9.589282 1.455427 -1.980693 -15.460179 -39.409389 -9.786504 23.440281 -3.066479 5.404660 5.882866 32.289902 22.414987 18.517916 -15.620909 15.879545 16.803561 -8.652167 14.628554 1.211590 -5.175443 -4.342177 8.526013 0.433620 -13.986910 6.871220 -2.584414 -34.211367 5.545763 19.199455 31.167441 -14.859113 -5.473006 8.193016 -2.493265 8.118800 1.116413 19.106858 9.970020 1.283742 30.377371 -11.257535 -5.553967 -35.710366 5.903831 -62.176559 -24.216417 -24.345240 22.346402 10.786590 3.624999 -13.031476 40.939293 3.747757 0.447322 21.341702 23.640478 -12.179465 -3.014127 -24.711381 -5.737025 6.370287 -16.937239 -9.153033 14.250518 5.754471 -16.534532 -8.782396 7.264500 -6.041405 -14.379086 -6.085725 -20.970400 23.235709 -26.585401 -10.064677 -35.783759 5.044321 2.625644 -34.176111 6.024605 -2.665914 9.841653 7.177028 9.782846 2.540769 6.129496 12.438498 -5.230913 -4.301639 -20.294962 32.500711 13.079471 -7.698094 10.777682 18.560152 2.003220 7.417000 29.729254 -1.522263 -22.725859 17.541092 -11.788027 3.306573 -10.101648 4.180358 23.148823 -16.578623 -7.266958 -2.356483 -5.178776 -6.525598 -4.381450 -16.107792 13.003515 43.419000 -2.746842 10.133925 0.879762 -15.562473 27.252462 3.384550 -5.070981 16.106921 18.795363 9.279202 -21.785080 -13.765830 11.688052 25.208433 6.418976 -23.607575 -5.816612 0.273181 5.974968 -8.971506 10.309913 13.593638 2.067517 -6.668604 -0.713130 -3.249884 33.248325 -13.965629 -21.889809 7.484498 10.822919 -11.787753 -28.058613 -1.023770 -5.487634 -15.690120 -0.923522 0.606588 7.082920 22.780131 -40.475208 19.216319 -0.153046 -7.219429 17.465484 -13.525679 1.809894 -42.337470 2.174263 12.056979 19.477842 1.833799 -6.265404 -5.514039 -25.210452 11.115360 1.258423 12.157353 -9.623294 23.102120 -14.924274 -7.452741 -15.547560 -18.347380 -10.015265 1.489839 -7.789612 5.066789 9.724196 -37.519734 19.576724 -16.218405 -12.984867 3.977058 7.921656 14.850418 -16.396849 -25.986349 9.981658 -5.459019 -30.436813 -26.679894 -8.558610 9.914825 -0.297182 -16.104895 -11.842051 -31.622403 23.754931 -10.471256 13.432770 12.069021 4.226195 35.388602 24.296958 -22.907757 -13.086152 -13.505703 5.893905 -11.011481 -1.703771 -8.603044 -5.769952 11.788431 25.429290 0.040964 8.098925 -10.181372 28.985226 -19.579120 -19.147357 13.034779 -0.900858 0.236658 22.360676 17.061019 -13.443236 -12.425152 -27.880324 3.261311 -4.002595 -9.410892 10.973704 -24.584610 -3.512905 14.791563 -2.086544 -11.482915 9.939176 3.911166 -8.138256 -19.700864 39.857170 38.955659 -27.304880 9.282100 -18.238036 17.394480 -22.215626 -6.039264 -10.888303 5.751061 7.368938 4.877004 9.353317 7.987667 11.739870 -20.931197 -12.247920 -8.533542 +PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -4.781223 -5.689350 5.471837 -9.703812 8.077466 0.665011 3.527269 0.230546 -9.904352 -7.530709 2.072799 -6.944435 -14.505830 10.092668 -4.819293 4.166693 7.166439 -2.808548 -3.307657 -10.133576 11.618556 -8.854544 13.794237 8.736625 -17.176057 -0.145030 -2.311870 14.926464 7.468519 6.990320 7.722939 -1.145960 -4.143378 0.120120 13.737654 -3.520754 1.289239 5.704536 -5.973748 -18.649053 -5.066918 15.565053 2.358538 4.431315 4.184691 16.556979 4.457702 10.766618 -6.352956 10.480759 11.680089 -4.162614 9.814392 -0.408886 -3.130413 -3.586468 5.106659 -3.379806 -4.684919 2.397733 -2.088935 -12.578173 7.072772 11.110854 17.085087 -8.773989 -4.494757 3.954310 2.246382 6.743321 4.746475 11.911313 -1.927519 -2.331507 15.573853 -7.025209 -0.259273 -18.128024 8.657678 -26.335650 -11.131982 -7.292145 13.596957 11.821030 0.881692 -7.307000 23.777667 1.779214 -7.119819 14.783928 7.136485 -2.121868 0.284168 -11.636027 -5.927222 0.688440 -7.891241 -6.268044 5.159769 13.478690 -7.877119 1.720293 -0.925933 -4.234378 -7.270676 -2.543344 -11.931144 12.305593 -13.447859 -4.397122 -11.691771 13.383665 2.778798 -17.568828 1.523341 -8.651626 1.764036 -1.412473 4.757180 7.011693 3.624413 3.341602 -3.689879 2.843828 -16.273978 14.820664 8.183647 -4.340895 1.456206 12.227823 -3.359255 2.283244 7.844657 -3.151017 -12.534768 11.653180 -3.213274 5.088078 -4.807746 3.862406 13.261893 -8.638137 -4.392567 -5.043793 -0.077923 -5.157052 -6.090358 -6.150074 3.597949 25.279956 -1.452007 7.996964 4.355564 -3.687886 12.990193 4.818336 3.975156 11.454555 7.847399 -0.655618 -10.447636 -9.119647 8.626528 13.128006 2.551447 -10.082279 -2.306732 4.485934 2.585207 -3.430847 5.503103 6.432045 -1.824358 -1.863596 -0.363271 -5.817320 16.244510 -3.091773 -4.094409 4.071985 8.839392 -9.777651 -11.686677 -0.960603 -3.464562 -9.036779 -0.000219 3.100459 4.896528 11.582713 -18.890420 9.974952 3.149697 1.227201 8.963490 -8.923027 0.781460 -25.933685 -5.333683 0.557171 9.935318 -4.273107 -3.994050 0.949221 -14.108977 9.320490 0.612850 4.351650 -6.275081 12.701215 -8.516576 0.220031 -4.772010 -7.107890 -8.898726 4.952657 -4.655291 3.464608 3.215719 -12.679203 6.156266 -8.865349 -5.927350 1.990590 6.252419 9.519354 -5.175936 -9.144783 5.614759 -1.426932 -16.774009 -17.064293 -3.705271 4.985476 -2.088881 -6.900593 -8.946559 -12.635323 12.830309 -10.299687 9.240007 4.938294 -2.897645 13.284974 12.009838 -9.890447 -5.253274 -8.462821 0.603475 -1.996863 -0.492803 -0.760647 -0.611004 5.033441 7.148385 1.092517 2.004036 -0.451874 18.175913 -4.556745 -9.539326 3.443692 -7.362227 -0.909843 13.915606 7.260496 -7.377208 -2.482342 -16.452304 3.122284 -4.559389 -1.489301 10.992099 -6.562217 1.216306 1.644348 2.021017 -4.434192 4.776974 6.013736 -5.641334 -7.798691 26.281052 15.687492 -6.660178 2.822746 -11.034448 9.426392 -7.496878 0.440548 -8.871646 2.855787 3.597028 4.409675 2.126132 8.911093 11.086342 -11.447931 -6.966766 -1.124358 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 0.339031 0.900849 1.655839 -0.725370 0.432990 -0.307636 0.054936 1.033702 -0.485322 -1.832888 0.229196 -2.490310 -2.458582 0.853819 -0.605859 -1.894746 1.189323 -0.466457 -0.029802 -0.679658 -0.801554 0.467513 1.182596 1.419249 -1.807420 0.271515 -0.308301 0.907322 0.525381 0.646493 1.060583 -2.021206 -0.560720 2.449696 1.494820 0.810182 -0.250067 -1.351633 -2.235273 -1.954825 -0.439802 2.624509 0.074745 0.091632 0.964608 1.916212 2.239859 0.652997 -0.621276 0.133787 0.964511 0.262293 0.664832 -0.387204 -0.081750 -2.473454 1.185057 -0.878827 -1.043559 0.677545 0.113454 -1.320037 -1.210461 1.409204 1.356826 -0.064758 -0.407999 -1.460851 0.227025 0.623971 -0.163262 0.820606 1.644179 1.577419 1.069725 2.238514 0.262473 -1.058436 0.939722 -3.591484 -1.351472 -0.935483 3.054089 2.259830 -1.781847 -1.902546 1.547149 0.595213 0.457021 1.412769 2.024605 0.979179 -0.519108 -0.756459 -0.803879 1.166143 -0.684281 0.484410 -0.225046 1.018841 -1.013212 0.852867 -0.498722 -1.178427 -0.632327 1.998860 -0.499955 0.538353 -1.515508 1.808357 -1.487591 0.389174 2.410470 -2.056059 -1.128359 0.253824 -0.349331 0.724947 -0.446048 1.697314 0.223486 -0.878636 -0.714109 1.841065 -3.804000 1.859249 0.115490 0.334361 0.338609 1.329231 1.518211 -1.072955 -0.222548 -0.275405 -0.328776 0.151277 0.080716 -0.141666 -0.061984 0.375254 1.016986 0.115981 0.506280 -0.934548 -0.583805 -1.442206 -3.747961 -1.051879 0.537241 1.940382 -0.501416 1.055819 -0.026531 -0.521229 0.851992 0.303166 -0.808346 -0.311006 0.562681 1.311543 1.537729 -0.257312 1.047052 1.702091 0.283043 -0.408783 2.177182 1.259253 -0.347105 -1.076867 1.513504 0.285755 0.119519 -0.262452 -0.321366 1.270751 0.626920 0.837682 -2.592466 -0.637374 1.121528 1.633480 1.512123 1.135565 1.845986 0.240742 0.667177 0.174312 0.985083 1.137913 -3.478485 1.174244 1.981874 0.161983 0.951060 -0.861571 -0.543595 -1.391172 0.682161 1.146811 0.774196 0.909333 -1.132989 -0.611960 -1.007490 -0.030687 0.488642 0.639800 -0.764056 0.909241 -0.434834 -0.116773 -1.144221 -2.918371 -0.565921 1.411073 -2.125064 0.265593 0.568754 -2.640025 1.632785 -0.245062 -0.629469 -2.407190 -1.095093 -0.413821 -1.502910 -1.063329 -1.044374 -1.872060 -3.755537 -1.099319 -1.156113 -0.583206 -0.089908 0.583996 -0.660800 -0.603551 2.442523 -0.300909 1.211746 0.801847 0.250390 1.618643 2.924574 -0.293501 0.498195 -1.111242 2.629977 -0.977846 -0.541387 2.224159 -0.661274 -0.414934 1.121947 -1.253389 -0.347192 -0.961169 0.393528 0.729689 -1.632763 0.090217 -2.184166 0.236239 1.697323 0.440184 -0.522659 0.130312 -2.479023 -0.689293 -0.598332 -0.861120 -0.033267 -0.962675 -0.261338 1.188301 -0.654909 -1.623691 0.194279 -0.635004 -1.346352 0.115549 1.380468 1.530631 -1.234942 2.362631 -1.866509 1.366789 -1.479430 -1.299127 -0.090137 -1.283373 0.455826 -0.526235 -0.832888 -0.410959 0.589696 -0.992982 -1.472585 2.131307 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -0.737556 -0.912000 -0.343881 -0.908885 0.475738 0.099009 0.383473 -0.594825 -1.408177 -0.750399 0.337852 -1.430282 -0.612245 1.517374 -0.301079 1.291928 1.884243 0.513612 -0.339322 -0.565285 1.185724 -1.113744 1.555115 1.951979 -0.890095 -0.051725 0.209413 0.699810 0.048587 0.424249 0.629848 -1.236130 0.167591 -1.255394 0.642055 -1.019328 -0.424359 1.247963 1.236777 -2.348834 -0.088985 1.157046 1.029806 -0.032898 0.081573 -0.069263 0.611026 1.028168 -0.180995 1.413198 0.813726 -0.216950 0.845373 0.063148 0.635966 0.619715 0.082084 -0.108801 -0.287811 0.269485 -0.670876 -0.258363 0.514529 1.158275 1.675104 -0.346631 -0.757914 0.243933 0.235083 0.609405 0.546357 1.095924 -0.532710 -0.257073 0.856094 -2.119976 -0.111295 -3.384936 0.608001 -3.067641 -1.043565 0.263749 0.985533 0.666639 0.792165 0.126180 2.077995 -0.566688 -0.856349 1.036051 1.411314 -0.719803 -0.328210 -0.333599 -0.663230 0.054194 -0.526783 -0.302978 1.033558 0.726258 -1.134345 -0.875713 0.635808 0.193390 -0.654059 -0.947336 -0.145682 1.336306 -1.146590 -1.349068 -0.888261 1.088079 -0.207738 -1.844628 0.055670 -1.118820 -0.601589 0.474582 -1.394329 -1.091640 0.898374 0.128133 -0.516831 -0.537873 -0.134959 0.963374 0.492890 0.190235 -0.159920 0.696624 -0.120018 1.774211 0.543524 -0.968018 0.162058 0.787242 -0.433382 0.589160 -0.926419 -0.734928 0.666600 -1.187541 -0.253451 0.084134 -0.837970 -0.413933 0.976513 -0.262525 -0.189334 3.921191 -0.508789 1.416683 1.317380 -0.911835 1.237813 0.020804 0.576036 0.491824 1.295941 0.510915 -1.560934 -1.112482 1.150626 1.949421 0.797814 -1.145622 -1.526942 0.305484 0.568075 0.279487 0.710216 0.134386 0.012979 -0.757518 -0.076876 0.089547 2.266088 -0.779322 -0.207756 0.048804 1.441560 -0.608045 -2.142583 -0.207726 -2.482644 -0.177996 -0.198667 0.206013 0.523180 1.506332 -2.806329 1.394785 -0.392785 0.200757 1.323626 0.458242 -0.825816 -3.515866 -0.665194 0.310278 1.500984 -0.404187 0.575827 0.384338 -1.631003 0.173531 -0.093445 0.518283 -1.127568 1.511894 -0.747828 -0.559373 -0.221147 0.527222 -0.710451 -1.213644 -0.096914 1.016622 1.513293 -1.188066 0.812215 0.180949 -0.434807 0.551817 0.467306 1.272370 -0.967641 -1.266967 0.844311 -0.418856 -0.488613 -0.453191 -0.463175 0.645520 0.103385 -0.411125 -0.541486 -1.014206 1.192037 -0.632035 1.820812 0.643455 -0.664735 0.854358 0.106380 -0.867031 -0.554693 -0.343229 -0.633663 -0.355705 -0.356632 -1.745922 -0.248249 1.090172 1.108271 0.528419 -0.599511 -0.172853 1.772518 -1.170881 0.217723 0.654838 -0.287249 -0.508851 0.541622 0.869676 -1.371731 0.215802 -1.133598 0.339296 -0.733156 -0.290054 1.114137 -0.551930 0.226208 -0.313186 -0.419781 0.143232 0.472083 1.183538 -0.078646 0.179696 1.804802 0.759709 -0.183523 -0.277671 -1.414311 0.401377 -1.287462 -0.708210 -0.503645 0.914788 -1.202636 -0.195528 0.268073 1.086133 0.837814 -0.372266 -0.814429 0.200488 +PE-benchmarks/cut-vertices.cpp__main = 0.932917 0.262126 2.678187 -1.236205 0.314952 -2.455958 0.230364 3.918281 -2.073073 -3.114536 -0.185512 -1.954779 -3.209468 1.353660 -0.122435 -3.920224 2.665419 1.296141 0.367983 -1.717408 -1.493832 -0.456635 1.112080 2.454161 -2.410154 0.975238 -1.532418 1.716205 0.801560 1.578413 2.249440 -2.529771 -0.903742 4.265270 2.698425 -0.925640 -0.705337 -0.676660 -5.076421 -4.519797 -0.108083 4.218479 0.362654 0.309545 2.169653 4.688598 2.416585 0.626183 -1.393244 1.628818 1.075163 0.654177 1.046075 -0.467944 -0.312946 -2.486276 0.542615 -1.430654 -1.754322 2.194850 0.149386 -3.400257 -1.244929 1.130109 1.583304 -0.693176 -0.851976 -3.345253 0.838138 1.240346 0.820272 0.615138 2.838079 -0.181235 1.723324 3.573758 -0.893086 -2.459875 1.990411 -8.622774 -2.250123 -1.678265 7.585585 3.043369 -4.261256 -3.086042 2.033550 -0.161889 1.262939 3.069087 1.567833 2.680642 -0.834422 -1.208294 -0.870201 2.563959 -0.402618 -0.866939 0.453661 1.972479 -1.194455 1.730918 -0.145671 -2.804594 -0.982746 3.139146 -0.740049 1.775289 -3.515568 3.155902 -3.070437 2.335613 4.479071 -1.585077 -0.886086 -0.056397 0.550004 1.440016 -0.858026 4.581954 0.462828 -2.170997 -1.450567 4.257206 -5.954697 3.031811 -1.403819 -0.256142 0.573739 2.068720 0.811189 -3.093106 0.230350 -0.829602 -0.409322 1.990803 0.389129 -0.705529 -1.069418 0.224455 2.228082 0.188723 1.105511 -3.420026 -1.305622 -3.079883 -5.519704 -1.031864 0.782250 1.262342 -0.343404 1.295015 0.096293 0.525282 1.312626 1.690655 -0.330775 0.654788 2.022416 0.874996 3.690082 -0.108506 -0.356654 2.203343 0.799322 -0.431622 2.237184 0.978737 -0.687672 -0.107183 2.458780 -0.285379 0.642147 -0.236762 -0.299311 0.250479 0.316458 2.398082 -3.803195 -2.322692 2.145791 1.265344 2.207032 2.140371 3.324508 0.199018 0.952032 -0.383606 1.421695 1.467868 -6.244865 2.092881 1.893662 1.031252 -0.227715 -0.738509 0.265115 -3.847303 -0.137139 0.475307 3.303144 1.409195 -1.624838 0.123626 -1.368161 -0.242949 0.753039 1.139176 -1.174841 1.314952 -0.673378 0.642152 -0.120693 -4.353641 -0.854196 3.014864 -2.434973 0.094982 1.231882 -4.636645 0.855494 -1.388853 -0.846570 -3.001679 -0.084564 -0.652704 -1.680123 -1.199746 -1.705074 -1.153236 -6.812280 -2.526529 -1.944492 0.392345 -1.267643 0.193187 0.341776 -1.079048 4.477338 -0.703828 1.681929 1.484266 -1.162454 3.748400 4.707867 -0.449879 1.134213 -1.610358 3.758067 -2.993130 1.025034 4.292211 -1.375674 -1.448172 2.036741 -0.718425 -0.390491 -0.894698 2.238576 1.293894 -2.484727 0.595351 -3.530068 2.707754 4.983848 1.370850 -2.356138 -0.209033 -3.815133 -0.254104 1.126429 0.400783 1.156393 -1.912418 -0.177460 1.115007 -0.172604 -2.724909 0.641170 -1.053424 -2.520496 -0.411325 2.841993 3.602099 -1.980804 4.554347 -1.308450 1.892871 -1.368756 0.117822 -2.598192 -1.318716 0.664768 0.459519 -1.924121 -0.552391 0.911958 -1.130718 -2.472251 3.430789 +PE-benchmarks/cut-vertices.cpp__Graph::AP() = -3.212244 -1.474550 0.681249 -6.186444 4.210589 5.684249 1.769703 -4.412833 -6.151130 -3.662633 2.915884 -8.536902 -6.584186 7.936989 -3.068908 3.625173 7.850925 -1.591257 -3.705127 -3.877027 6.068858 0.104152 10.625453 10.145829 -8.396866 0.112640 0.612061 4.370903 2.806914 1.373093 3.348867 -5.002437 0.531048 -3.676361 1.595481 -0.574850 -1.713480 0.703791 3.306258 -10.967982 -1.037051 4.806378 -0.646853 -0.165445 0.497428 1.640179 7.212468 6.412460 -0.547451 4.110782 6.091701 0.436121 3.441845 -0.208820 2.342188 -1.427281 2.891390 -2.070106 -0.377248 -1.319319 -1.933074 -1.411232 0.176028 8.689993 8.769842 -0.739937 -3.887765 1.801573 1.150211 3.163914 1.903417 6.511724 0.155767 3.293810 6.028284 -6.285443 0.410022 -11.488958 2.547405 -10.697681 -5.955204 0.146621 5.513816 5.022964 3.203585 -0.450654 11.864180 -0.973350 -4.024222 7.237354 8.601202 -3.928429 -1.259388 -2.357116 -4.513160 0.657222 -3.488325 2.223473 -0.710780 4.707383 -6.893288 -2.451451 -0.021059 0.435744 -4.959561 -2.949182 -1.434982 5.681383 -6.230750 -2.423264 -3.202609 5.959025 0.538901 -12.506208 -5.362254 -5.321179 1.803644 0.516873 -4.464813 -4.068727 3.105053 1.759075 -2.164888 -2.383520 -2.941855 5.072523 5.688473 1.812408 -0.667033 4.455294 2.847394 9.087392 1.975798 -3.207224 -0.613876 1.553491 -0.538630 3.427915 -1.603539 -0.154845 2.409683 -4.929096 0.529569 3.087236 -3.040247 -3.573638 -0.241158 -1.990958 -0.307662 23.515309 -2.265842 8.118141 6.075463 -5.994041 2.504893 -2.510961 0.412265 2.809206 4.232941 3.909663 -8.701440 -5.765232 7.694466 10.703480 3.473459 -6.912677 1.100320 3.910811 0.561541 -2.657449 4.701916 0.827704 0.742449 -3.755467 -1.371497 4.832578 12.963197 -3.736021 -3.483413 1.947618 4.815995 0.026484 -4.882794 -0.391054 -3.687728 -0.503924 4.497427 2.192612 4.241177 8.464881 -10.725348 6.452907 0.466921 -0.264550 6.157446 1.032078 -5.242342 -7.033303 -1.134817 3.187782 5.769080 -0.620898 -0.864275 0.075052 -9.087619 0.996074 2.081565 1.345887 -5.408876 7.988124 -0.923055 -3.351334 -3.707045 -0.901397 -3.128799 -0.188634 -3.915739 5.034947 -0.146243 -9.447241 7.211604 0.945710 -3.111581 -1.024765 -2.376919 7.551225 -5.538446 -7.250420 4.334936 -4.003629 -5.913157 -3.007325 -2.669108 2.489776 3.497845 1.822402 -7.729530 -5.564247 7.669220 -2.787296 9.499655 4.354296 -0.750690 5.476109 -1.049056 -3.462453 -3.945834 -5.414767 3.064600 1.561111 -5.981625 -3.544982 -2.567944 5.344843 5.562848 -1.464307 -4.431381 -1.704849 7.438860 -6.024571 -2.135316 1.523959 1.486429 -5.784956 3.909548 3.585936 -4.127580 1.644522 -6.891453 -0.599538 -6.186267 -5.474362 5.658437 -1.364553 2.863202 1.049081 -0.444161 -0.811270 2.557526 2.667773 -0.171231 1.433474 9.348137 6.616227 -2.854336 -0.743044 -10.002711 6.345129 -7.556624 -7.188494 1.439685 0.194100 -2.714362 -2.528882 -2.012017 6.311580 5.269797 -4.318561 -4.154275 3.492933 +PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/sort-array-wave-form-2.cpp__main = -0.408879 -0.225589 0.233381 -0.892555 0.780322 0.605582 0.433683 -0.102221 -1.443819 -1.052309 0.326746 -1.969240 -1.440123 1.665150 -0.401872 0.546583 2.205797 0.356073 -0.413214 -0.584103 0.830602 -0.505215 2.102945 2.416010 -1.609583 0.249440 -0.104087 0.723451 0.219565 0.720672 0.499936 -1.605879 0.394236 -0.530118 0.601274 -0.820750 -0.458718 0.356265 0.251312 -2.956228 -0.174381 1.482355 0.236426 -0.015278 0.330610 1.044038 1.733694 1.213369 -0.357934 1.341299 0.904324 -0.052284 0.843079 0.051538 0.396509 -0.148959 0.219860 -0.332482 -0.662880 0.230504 -0.417433 -1.106978 -0.126134 1.531234 1.924001 -0.247110 -0.781334 -0.055831 0.160826 0.492538 0.442871 1.204054 0.516786 0.332499 1.180705 -0.928057 -0.113870 -2.606128 0.473303 -3.797367 -1.407230 -0.328224 2.049696 1.222282 0.285667 -0.756465 2.427945 -0.386782 -0.379242 1.677397 2.042107 -0.921581 -0.509159 -0.649612 -0.678824 0.445134 -0.753656 0.031790 0.504301 0.585644 -1.463481 -0.738642 0.421166 -0.160807 -0.933994 -0.352355 -0.268794 1.344428 -1.878238 -0.581798 -1.384771 0.898717 0.447537 -2.435864 -0.525425 -0.642580 0.091192 0.706312 -1.151500 -0.612563 0.753179 0.081560 -0.556554 -0.171312 -1.172066 1.546143 0.543033 0.248724 0.167381 0.974867 0.562269 1.589491 0.675476 -0.813483 -0.018688 0.672830 -0.248996 0.517962 -0.735062 -0.439703 0.739674 -1.295035 0.040252 0.112800 -1.010996 -0.612166 -0.379446 -0.361032 0.100301 4.237431 -0.436362 1.659230 1.136184 -1.302713 1.130988 -0.300317 0.028491 0.530903 1.282704 0.940648 -1.329646 -1.085006 1.181841 2.354719 0.882511 -1.418356 -0.067751 0.507265 0.321279 -0.270187 1.084631 0.224034 0.347094 -0.907129 -0.190841 0.756638 2.770360 -0.601351 -0.765094 0.024037 1.001295 0.051838 -1.268449 0.061111 -0.953115 -0.099625 0.519006 0.191275 0.761611 1.828338 -3.017373 1.637017 -0.143314 -0.042590 1.149961 0.300804 -0.968218 -2.333270 -0.307848 0.822358 1.718072 0.178132 0.005189 0.104915 -1.853194 -0.006370 0.349803 0.550105 -1.140924 1.646248 -0.289546 -0.766625 -0.660950 -0.556046 -0.562367 -0.397633 -0.785542 1.047017 0.869886 -2.320361 1.374149 0.072017 -0.809564 -0.231761 -0.056847 1.140835 -1.459799 -1.694561 0.651555 -0.865936 -1.834534 -0.718765 -0.725175 0.546058 0.354807 -0.174361 -0.949290 -1.602874 2.058791 -0.390010 1.875683 1.017228 -0.343252 1.649327 0.720415 -1.001998 -0.600568 -1.153297 0.652420 -0.676582 -0.600899 -0.350169 -0.660568 0.988285 1.661830 0.065847 -0.770690 -0.406752 1.778694 -0.982843 -0.465328 0.791249 -0.086964 -0.520683 1.143164 1.095512 -1.412054 0.133874 -1.637634 -0.008111 -0.700441 -0.736259 1.078785 -0.924771 0.277569 0.391334 -0.329128 -0.477792 0.636779 0.449413 -0.406833 0.096815 2.249188 1.514330 -0.825838 0.607422 -1.817493 1.116363 -1.811851 -1.267479 -0.260921 0.426222 -0.805925 -0.326287 -0.052215 0.937510 0.894238 -0.936165 -1.092193 0.750226 +PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = -0.076719 -0.135317 0.283676 -0.248522 0.277930 -0.193701 0.208656 0.108942 -0.539868 -0.493093 0.273953 -0.798971 -0.589904 0.569757 -0.144287 0.074885 0.688846 0.127020 -0.102134 -0.295651 0.122758 -0.329418 0.725069 0.775173 -0.583592 0.114396 -0.182496 0.318592 0.191991 0.206858 0.173389 -0.429517 0.226357 -0.022672 0.194778 -0.154196 -0.063436 0.027169 -0.118461 -0.900120 -0.023167 0.532104 0.195990 -0.001756 0.099203 0.758640 0.533298 0.433469 -0.159222 0.560727 0.393541 -0.278336 0.283458 0.076629 0.122383 -0.377357 0.255276 -0.147088 -0.465389 0.133279 -0.076124 -0.742910 -0.177627 0.447563 0.687277 -0.139324 -0.157857 -0.083342 0.014895 0.236140 0.308869 0.262061 0.309085 0.026589 0.471692 -0.063656 -0.004062 -0.902525 -0.039101 -1.763964 -0.563933 -0.093813 1.137039 0.320450 -0.119069 -0.246697 0.658587 0.121969 -0.145465 0.429078 0.711850 -0.220513 -0.328554 -0.099301 -0.132276 0.311514 -0.372707 0.080238 0.373663 0.258246 -0.511844 0.031750 0.308229 -0.157292 -0.253517 0.107832 -0.089394 0.436877 -0.766467 -0.033553 -0.498409 0.161730 0.430482 -0.794038 0.113747 -0.035208 0.264865 0.346440 -0.304742 0.185118 0.188395 -0.171385 -0.197769 0.159026 -0.790565 0.605548 0.028723 0.288550 0.188611 0.403534 0.273301 0.310740 0.229827 -0.281545 -0.040071 0.111153 -0.101044 0.360186 -0.189578 -0.248850 0.396982 -0.385910 0.193084 -0.236161 -0.359748 -0.363951 -0.277031 0.104270 0.045495 0.729742 0.008580 0.623408 0.380999 -0.315069 0.348843 -0.170643 0.056588 0.202902 0.426026 0.118378 0.067297 -0.362742 0.356405 0.709780 0.321145 -0.624214 0.035026 0.216510 0.190616 -0.099059 0.333230 0.196798 0.226502 -0.314430 -0.037203 0.307749 0.717693 -0.119197 -0.466216 0.006608 0.129579 0.142906 -0.441625 0.047250 0.109739 0.056464 -0.007922 0.130807 0.179412 0.623236 -1.261344 0.554009 0.079972 0.085510 0.467927 0.044898 -0.457407 -1.035974 -0.073412 0.222641 0.557155 0.252125 -0.123768 0.177468 -0.554119 -0.035868 0.050180 0.068311 -0.227254 0.421768 -0.148343 -0.121746 -0.293711 -0.509383 -0.069860 0.163468 -0.259722 0.369947 0.443744 -1.082333 0.389813 -0.138242 -0.448312 -0.311368 -0.019219 0.287478 -0.524191 -0.515543 0.015009 -0.553557 -1.020747 -0.576863 -0.165721 -0.035853 -0.097831 -0.156225 -0.078519 -0.323569 0.832984 -0.283475 0.499202 0.325309 -0.154041 0.685890 0.607403 -0.374604 -0.105411 -0.111228 0.302197 -0.623448 -0.200308 0.321936 -0.193750 0.229994 0.509829 0.047058 -0.144576 -0.069071 0.533538 -0.325256 -0.493946 0.412221 -0.046080 -0.013167 0.751059 0.459477 -0.579202 0.109207 -0.605681 -0.274372 -0.135240 -0.258683 0.341533 -0.195585 0.128318 0.090298 -0.012359 -0.240173 0.239383 -0.040139 -0.213330 -0.110477 0.825551 0.948784 -0.487406 0.339754 -0.622106 0.352458 -0.606973 -0.506339 0.044317 0.214820 -0.295431 -0.020196 0.016785 0.232493 0.288035 -0.557778 -0.533233 0.469554 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -1.010276 -1.170501 -0.381229 -1.181188 1.044216 0.825840 0.741768 -0.859345 -2.296752 -0.765841 0.626620 -2.144994 -1.144166 2.505671 -0.440463 2.117896 3.275942 0.860698 -0.682374 -0.942405 2.138984 -1.707078 3.088829 3.632587 -2.062024 0.141394 0.335336 0.905483 0.567026 0.695394 0.098144 -1.386195 0.934259 -2.587252 0.572095 -2.005656 -0.524211 1.460041 1.974846 -4.164665 -0.142152 0.975409 0.724308 -0.003622 -0.007706 1.537744 1.648565 1.892364 -0.662507 2.434118 1.466481 -0.721219 1.177399 0.244124 0.646808 0.951798 0.186118 0.845243 -0.603537 0.167889 -0.763187 -1.351825 0.735706 2.027826 3.014288 -0.558470 -1.062482 0.820369 0.429788 0.548263 0.975220 1.720900 0.102006 -0.353858 1.823625 -3.406217 -0.267214 -5.270324 0.277263 -5.654713 -1.726622 -0.049990 1.915100 -0.044257 1.540405 -0.176453 3.503587 -0.668438 -1.052792 2.039329 2.535962 -2.224154 -0.697849 -0.740549 -0.989810 0.209675 -1.162160 -0.060893 1.781464 0.418590 -2.048753 -1.980735 1.243885 0.450948 -1.300197 -1.744305 -0.306302 2.052556 -2.253831 -2.188930 -1.758302 1.024331 -0.543099 -3.352249 0.329692 -1.585354 0.520096 0.872602 -1.766990 -1.992915 1.070244 0.659242 -0.692476 -1.386414 0.026602 2.028665 1.071604 0.427364 0.096559 0.834702 0.131380 3.204632 1.564585 -1.507723 -0.024305 1.159483 -1.039559 1.094577 -1.699573 -1.134967 1.788224 -2.304540 -0.258237 0.420804 -1.465382 -0.227564 2.703260 -0.050089 -0.074492 6.558837 -0.364541 2.424458 2.025571 -1.957044 1.999869 -0.520875 0.706210 1.367633 2.176378 0.769859 -3.577997 -1.891903 1.536189 3.270857 1.398400 -2.828713 -1.990837 0.266297 0.855630 0.128810 0.960149 0.362290 0.297856 -1.409015 -0.096698 0.595330 4.531908 -1.767414 -0.129834 0.253473 1.351910 -1.056362 -3.826893 -0.523767 -3.111302 -0.247907 0.004775 0.399108 0.943318 2.664124 -4.427597 2.250592 -1.392049 -0.102586 1.870781 0.927077 -1.607853 -4.372104 -0.626285 0.702979 2.517816 0.044942 0.502243 0.823467 -2.812576 0.135198 0.110739 0.650780 -1.646010 2.459827 -0.494695 -1.207127 -0.680234 0.570087 -0.712937 -1.705949 -0.059237 1.789015 1.238435 -3.021213 1.486416 0.053499 -1.233640 0.911669 0.491110 1.999568 -1.960055 -2.423198 1.604422 -0.531554 -0.947955 -1.269987 -0.613556 1.181943 0.358014 -0.745521 -1.346451 -2.947259 2.228863 -1.090314 2.659103 1.320196 -0.856631 2.155492 -0.028539 -1.609096 -1.773333 -0.766561 -0.607142 -0.707961 -0.921214 -2.177714 -0.632695 2.012445 2.338236 0.729432 -0.702223 -0.165493 3.005752 -2.375905 -0.195806 1.331244 1.254963 -0.970905 1.185733 1.627522 -2.459620 0.217741 -1.630038 -0.062531 -0.811501 -0.848034 2.046789 -1.138211 0.664042 -0.159882 -0.181014 0.251042 1.107126 1.226079 0.034201 0.007223 3.378682 2.610932 -1.064689 -0.450636 -2.426321 1.258647 -2.520798 -1.656815 -0.352093 1.552231 -1.842837 -0.173121 0.770903 1.942083 1.332009 -1.334562 -1.252111 0.204363 +PE-benchmarks/rotate-bits-of-an-integer.cpp__main = -0.030357 0.634618 1.320943 -0.964728 0.618119 -0.293530 0.208589 0.524352 -0.740011 -2.386637 0.707164 -2.813497 -3.072022 1.274572 -0.816719 -1.546377 1.628121 -0.735049 -0.053733 -1.392270 0.008262 0.367073 2.243471 2.455261 -2.790354 0.218524 0.398117 1.362191 1.594581 -0.434648 1.941308 -1.881964 0.047648 1.581300 1.353065 0.541415 -0.173072 -1.253494 -1.580890 -2.685156 -0.689183 1.750111 -0.754774 0.404880 0.803161 3.174848 2.542109 1.316422 -1.408354 1.127983 2.014833 0.169335 0.653890 -0.324831 -0.736478 -3.331645 0.532066 -0.531517 -0.662708 0.499848 0.240807 -1.969341 -1.125751 2.126510 2.378900 -0.400867 -0.601002 -0.627676 0.463565 0.888746 0.031801 1.513392 2.032649 1.651449 2.056496 0.735821 -0.399034 -3.675399 0.686535 -6.008494 -1.884517 -0.940252 3.677134 1.268507 -1.565235 -1.165761 2.473148 1.330112 -0.037687 2.804645 2.590447 0.558567 -0.536670 -0.649696 -1.017879 1.574634 -1.258605 1.458130 0.005946 1.573694 -1.479486 0.251706 -0.501534 -1.458385 -1.172018 0.677888 -0.740151 0.830912 -2.240337 1.696520 -1.814788 0.568947 2.513383 -3.226614 -1.366806 -0.218189 1.751024 0.699907 -0.408319 1.755757 -0.025873 -1.005838 -0.506518 1.446853 -3.077272 1.756768 1.054704 0.820027 0.416201 1.802876 1.791633 0.086966 0.341727 -0.477355 -0.746877 0.131319 -0.001004 0.498229 -0.554524 0.572085 2.320923 -0.296294 1.291452 -0.647540 -0.755929 -2.760093 -1.818799 -1.493269 0.391104 3.610395 -0.007016 1.737502 1.098345 -0.817520 0.099297 -0.583286 -0.578559 0.804531 1.059240 1.427840 0.979475 -0.699086 1.422305 2.548437 0.472236 -1.772770 1.564818 1.914161 -0.065300 -1.718219 1.675599 0.428075 0.223995 -0.318032 -0.196734 2.278856 0.967025 0.378026 -2.191083 -0.656822 2.029789 1.477586 0.550128 0.987198 1.750172 0.156309 1.670474 0.677169 1.087678 1.718986 -4.954580 1.168108 2.233320 0.964388 0.336956 0.143679 -1.464760 -2.470458 1.188245 1.196824 0.673286 0.848542 -0.522561 -0.210290 -1.867953 0.070261 0.949456 0.429489 -1.147000 1.609290 -0.373938 0.150408 -1.598513 -2.196814 -0.664648 1.584245 -1.734189 0.996640 0.255890 -4.249979 1.881695 -0.958806 -1.488979 -2.569036 -1.782216 1.122561 -2.217233 -1.644418 -0.389339 -2.418808 -4.377632 -1.846669 -1.056103 -0.376698 0.105133 0.879475 -1.041916 -1.031318 3.035394 -0.737236 1.471890 1.206495 0.235280 2.847521 0.720132 -0.760092 -0.554462 -1.077116 3.210557 -0.811612 -1.255545 1.734685 -0.557738 -0.165912 1.886235 -1.505455 -0.849539 -0.266242 0.876871 -0.888140 -2.154675 0.155617 0.195960 -0.103058 2.908235 0.490130 -1.123337 0.510270 -2.953764 -0.776990 -0.636516 -1.465007 0.818418 -0.970284 0.098094 1.289337 -0.400098 -1.253024 1.027703 -0.434177 -0.725150 0.044369 1.819313 3.860195 -1.998844 1.497212 -2.767897 1.668729 -2.323938 -2.385058 0.353499 -1.148245 0.720352 -0.683098 -1.292559 0.265946 1.229837 -1.780268 -2.042472 2.688850 +PE-benchmarks/edit-distance.cpp__main = -0.994156 0.375063 3.324502 -2.373293 3.909527 0.145529 1.541079 1.346060 -2.548032 -3.772346 -0.336822 -2.637480 -6.908215 3.717716 -1.320213 0.457603 3.909920 -0.595270 0.166288 -3.715769 3.802898 -4.258996 5.912412 3.869482 -7.325397 0.632713 0.583325 4.994152 2.306437 4.048116 1.477927 -2.100227 -0.297114 0.285721 5.648649 -1.897695 0.300616 0.187963 -3.355731 -8.064373 -2.148219 5.329621 -0.296017 1.599587 1.518762 6.832999 4.434461 3.956429 -3.302510 3.832127 3.973471 -1.657171 3.580608 0.395885 -1.050760 -1.346272 2.182782 -0.754549 -2.817804 1.558467 -1.022079 -7.041078 1.538428 4.169899 6.881771 -3.089779 -1.250976 1.322516 -0.529498 1.998643 0.954360 4.443399 1.930210 0.012885 6.829431 -2.243145 -0.826654 -8.079570 1.562163 -13.000052 -5.030040 -4.979046 4.988239 2.818900 0.733405 -2.678069 8.811754 1.001111 -0.359552 4.811051 4.514167 -2.022281 -0.371237 -4.903461 -1.710234 0.958792 -3.428086 -1.794142 2.313953 2.436247 -3.384501 -1.435244 1.400816 -1.694801 -2.876835 -1.250708 -4.619612 4.841514 -5.770857 -1.816603 -7.216012 1.951477 0.711044 -6.923745 1.049279 -1.446084 2.130843 1.070883 2.145148 1.464760 1.417426 2.266278 -1.326511 -0.276611 -5.200371 6.719686 3.002339 -1.403734 1.753978 4.131862 -0.285949 1.306565 5.599760 -0.357445 -4.912613 3.790279 -2.072234 1.028883 -2.167958 1.216319 5.540167 -3.027586 -2.006948 -1.129101 -0.742712 -1.885729 -1.334537 -3.538624 2.665099 8.875420 -0.635366 2.200208 0.646940 -2.824787 5.435969 1.223314 -0.066925 3.880687 4.050300 1.452940 -4.185400 -3.287967 2.689284 4.995588 1.144961 -4.905720 -1.217741 0.620913 1.484483 -1.674399 1.975526 2.746197 0.048702 -1.428233 0.076642 -1.350637 6.876726 -2.413862 -4.205390 1.609081 2.595463 -2.787213 -5.371100 -0.291217 -0.849106 -3.295759 -0.290595 0.400282 1.407445 4.777617 -9.016046 4.002644 0.221811 -0.724821 3.625691 -3.053484 0.524469 -9.322483 -0.027990 1.925180 3.890787 0.397960 -1.227740 -0.789852 -5.360992 2.923343 0.013810 2.638682 -2.240646 4.915579 -3.315444 -1.476056 -3.178928 -4.201562 -2.459879 1.032270 -1.879932 1.084118 2.302806 -7.654687 3.541684 -3.446664 -2.673522 0.803772 1.855254 3.516165 -3.038311 -5.035432 1.967043 -1.725113 -6.915040 -6.237660 -1.551564 1.733155 -0.497686 -3.234201 -2.960403 -6.147327 5.436200 -2.802812 2.992633 2.605427 0.578831 7.188224 5.335840 -4.845829 -2.744219 -2.690033 1.241433 -2.140364 -0.335260 -1.193320 -1.068336 2.170873 5.184137 0.124053 1.751442 -1.709518 6.614512 -3.952800 -4.245269 2.815329 -0.671316 0.164816 5.419542 3.586587 -2.786739 -2.478811 -5.971326 0.765390 -0.793857 -1.675429 2.954692 -4.841553 -0.487916 2.499103 -0.051716 -2.621186 2.060414 0.990786 -1.873471 -4.167664 9.088805 8.429057 -5.102542 1.973159 -3.803198 3.471426 -4.437336 -0.889386 -2.737510 0.873171 1.489721 1.416420 1.543698 2.271586 3.230436 -4.218113 -2.728238 -1.366959 +PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = -2.978933 -3.877511 2.873091 -6.292898 4.619347 0.696170 2.119515 -1.072133 -6.155862 -4.848503 1.891175 -5.458557 -7.960764 6.382415 -3.325918 3.253544 5.109284 -1.646680 -2.016400 -6.032985 6.661440 -3.886336 8.814026 6.328078 -10.155355 -0.209651 -1.286192 7.326971 4.925898 3.245479 5.502344 -2.402725 -1.336159 -0.117676 7.834130 -2.188719 -0.002596 3.661500 -1.464249 -11.433102 -2.738062 9.201259 1.533520 2.481507 3.062203 9.931419 2.977284 6.415907 -3.602083 7.203874 7.022922 -1.357140 5.854578 -0.379646 -1.597395 -2.503440 2.893541 -3.152618 -2.189749 1.402217 -1.762434 -5.599997 3.667267 7.187653 10.573322 -5.214812 -3.098609 2.035090 2.421622 4.048162 3.151950 7.658875 -0.575871 -0.615016 8.551745 -5.287374 -0.352070 -12.292534 5.075377 -17.030735 -6.624165 -2.998917 7.940106 6.803633 0.492829 -4.540408 14.187143 1.038926 -4.832551 8.439155 4.802871 -1.305316 0.154259 -5.797663 -3.257540 0.060865 -4.575411 -2.623385 3.005015 7.630044 -5.114207 0.599376 -0.847309 -2.586884 -4.466228 -1.977886 -6.050451 7.181332 -7.848441 -2.779951 -5.977991 8.544006 1.558037 -11.093625 1.192158 -5.803926 0.734134 -0.587772 1.383574 3.372400 2.532943 1.333042 -2.571317 1.514613 -9.841364 8.763913 5.549658 -1.105417 0.085736 7.455555 -1.528645 2.659314 3.763644 -2.654885 -6.217965 6.202781 -1.266894 3.521507 -3.284901 1.970202 8.240638 -4.911913 -2.607615 -2.404087 -0.613653 -3.060951 -2.780484 -3.815771 1.309132 16.615079 -1.662785 5.957572 3.872086 -2.847274 6.702494 2.109896 2.814340 6.234338 4.951130 0.571197 -6.668544 -5.583858 5.919839 8.590036 1.760699 -6.426011 -1.195383 3.525301 1.446747 -2.447880 3.628908 3.336022 -1.232377 -1.869480 -0.221628 -2.803626 10.288562 -1.721489 -1.283909 1.344783 6.829976 -4.791686 -6.020698 -0.457015 -3.223650 -4.407961 0.993902 2.327750 3.194698 7.094555 -12.452569 6.160913 1.962421 1.487336 5.223046 -3.735991 -0.924926 -16.134954 -3.308319 0.333391 5.615673 -2.853824 -0.689859 1.195268 -8.675170 5.280840 0.021793 2.405340 -4.370188 7.458549 -4.038397 -0.201671 -2.347901 -2.941103 -5.060658 1.923531 -2.937887 2.975655 3.532831 -8.282015 3.669353 -4.443422 -3.751207 0.866797 2.839814 7.100953 -3.693708 -4.878305 3.261657 -1.815867 -9.524450 -9.361682 -2.546508 2.729798 -1.664707 -2.174049 -5.875864 -7.602813 7.705932 -6.153530 6.312205 3.351067 -2.205369 7.713249 4.427609 -5.281183 -3.217006 -6.256774 0.846240 -0.417007 -0.720824 -0.083113 -0.515719 3.238240 4.345827 0.120395 -0.139573 -0.102523 9.819674 -4.245230 -3.893382 1.835010 -2.936737 -1.229522 7.912806 3.813625 -4.582921 -0.278673 -9.331780 1.747307 -3.585528 -0.573792 7.157581 -3.279198 0.931934 -0.092318 1.045385 -2.390289 2.836702 3.798672 -3.405544 -3.276598 14.700218 9.753935 -3.282014 1.254935 -7.161682 5.671401 -5.003225 -1.074460 -4.695719 0.863711 0.924422 1.822244 0.214473 5.842045 7.168522 -6.043745 -4.688259 0.961171 +PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.112886 0.189959 0.365392 0.004535 0.241068 -0.084352 0.188230 0.144704 -0.228574 -0.589866 -0.062064 -0.682511 -0.895197 0.549975 -0.096629 0.012216 0.808034 0.193551 0.069078 -0.334512 0.095946 -0.579621 0.817733 0.867046 -0.652170 0.112201 0.189442 0.362242 0.103825 0.382640 -0.003052 -0.525652 0.271351 -0.040120 0.495573 -0.289997 -0.107582 -0.106101 -0.326965 -1.138546 -0.183898 0.517798 0.175761 0.049654 0.125800 0.842829 0.833933 0.447966 -0.138901 0.475086 0.202264 -0.311507 0.456157 0.091844 0.141216 -0.217342 0.302333 -0.132560 -0.510155 0.263153 -0.147942 -1.061490 -0.188824 0.508375 0.797334 -0.158291 -0.178421 -0.055733 -0.178533 0.194266 -0.008050 0.439494 0.496631 0.239128 0.579580 -0.274783 0.049814 -0.947335 -0.092938 -1.954341 -0.648316 -0.506821 0.754331 0.270141 0.076611 -0.233670 0.897831 0.147810 0.127104 0.266641 0.963009 -0.487365 -0.263283 -0.235551 0.041525 0.263615 -0.439923 0.050684 0.462408 0.014280 -0.539359 -0.300456 0.490348 -0.152503 -0.327994 0.064735 -0.276494 0.534450 -0.844278 -0.203221 -1.066785 -0.370719 0.205679 -0.937219 0.357237 0.124635 0.257368 0.521518 -0.248796 -0.157572 0.301567 0.132130 -0.063010 -0.142787 -0.666532 0.836183 0.087394 -0.051916 0.286607 0.488009 0.239666 0.426241 0.695345 -0.102606 -0.220525 0.293717 -0.465515 0.069282 -0.244814 -0.214194 0.486714 -0.508395 -0.048113 -0.057573 -0.400532 -0.197706 -0.131429 -0.250217 0.275107 0.917707 -0.152362 0.380936 0.199677 -0.537503 0.594739 -0.207598 -0.155761 0.144657 0.597269 0.490323 -0.339492 -0.338422 0.339169 0.848746 0.294991 -0.637036 -0.101185 -0.000836 0.296480 -0.226561 0.418930 0.285896 0.186311 -0.318884 0.008438 0.212418 0.889422 -0.455036 -0.566523 0.005522 -0.032421 0.151074 -0.823225 0.073560 -0.061896 -0.157333 -0.223089 0.065466 0.041879 0.644158 -1.205842 0.647116 -0.093312 -0.177069 0.662965 -0.121447 -0.227858 -1.115287 0.170943 0.503305 0.561353 0.321853 -0.127389 -0.149586 -0.696094 -0.011599 0.012398 0.404786 -0.337027 0.617723 -0.244625 -0.351028 -0.461825 -0.569829 0.045976 -0.202932 -0.242872 0.293471 0.577510 -1.187134 0.626958 -0.173971 -0.435818 -0.097638 0.073479 0.202756 -0.660744 -0.754801 0.070435 -0.556769 -0.928967 -0.539384 -0.283793 0.061570 -0.066063 -0.458030 -0.149477 -0.555594 0.833505 -0.166597 0.494098 0.369493 0.125330 0.949164 0.793097 -0.643247 -0.152533 -0.087480 0.094295 -0.697826 -0.121683 -0.066514 -0.206418 0.348660 0.934290 -0.002197 0.120023 -0.164652 0.611179 -0.572546 -0.518240 0.481563 0.091841 0.068182 0.599183 0.493467 -0.523287 -0.228290 -0.628793 -0.248352 -0.075175 -0.424092 0.175368 -0.785349 -0.107520 0.406444 -0.244659 -0.341071 0.272261 -0.003946 -0.188256 -0.255169 0.828509 1.033618 -0.732706 0.401768 -0.614745 0.375664 -0.785350 -0.392578 -0.078023 0.389000 -0.072376 -0.078010 0.261065 0.051783 0.231972 -0.669695 -0.502732 0.046062 +PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/sieve-of-eratosthenes.cpp__main = 0.018895 0.263514 0.597731 -0.302166 0.285601 -0.245241 0.136597 0.385104 -0.370213 -0.901019 0.092545 -0.932992 -1.090841 0.586032 -0.258148 -0.474995 0.883113 0.053377 0.044708 -0.512767 -0.003663 -0.290101 0.881957 0.969404 -1.011023 0.125711 0.134803 0.537522 0.413757 0.275788 0.413189 -0.768164 0.094322 0.467397 0.647713 -0.126412 -0.034674 -0.352064 -0.745324 -1.287191 -0.182316 0.726427 0.008960 0.083636 0.266446 1.165406 1.027000 0.507936 -0.421953 0.454984 0.601901 -0.002017 0.297340 -0.020808 -0.084350 -0.785895 0.333566 -0.262438 -0.516415 0.321092 0.018307 -1.072527 -0.334188 0.730651 0.921748 -0.164988 -0.135004 -0.274695 0.015640 0.307153 0.096660 0.418709 0.686654 0.429946 0.713088 0.109371 -0.084123 -1.319892 0.126027 -2.605049 -0.750249 -0.594423 1.403636 0.484456 -0.453259 -0.416135 0.938137 0.311542 0.217939 0.786428 1.052787 -0.021080 -0.333220 -0.401104 -0.258154 0.598804 -0.512385 0.193965 0.247874 0.378458 -0.585264 -0.025008 0.180842 -0.389038 -0.396350 0.312879 -0.291652 0.509090 -1.063148 0.329807 -1.007583 0.026275 0.760604 -1.149108 -0.066930 0.000000 0.527795 0.434115 -0.167259 0.405915 0.114255 -0.087322 -0.222460 0.410223 -1.244809 0.887762 0.137732 0.143971 0.263901 0.595976 0.516478 0.079485 0.457552 -0.206788 -0.286364 0.250164 -0.259003 0.020661 -0.320837 -0.042374 0.781152 -0.331961 0.290793 -0.266465 -0.418220 -0.764086 -0.632664 -0.442060 0.365771 1.212602 -0.066529 0.556862 0.229239 -0.443655 0.353081 -0.101826 -0.229622 0.210890 0.575117 0.485533 0.221190 -0.332796 0.350210 0.935055 0.297427 -0.622482 0.303723 0.293556 0.041486 -0.332004 0.518994 0.231461 0.070805 -0.257049 -0.084244 0.543686 0.673901 0.020043 -0.843346 -0.203419 0.459090 0.319233 -0.190310 0.302489 0.434635 0.048991 0.205941 0.102221 0.340801 0.750530 -1.925719 0.664256 0.422373 0.127920 0.346727 -0.124186 -0.337584 -1.240692 0.340092 0.545563 0.610746 0.353377 -0.201941 -0.050272 -0.713830 -0.024476 0.180848 0.376540 -0.384632 0.559012 -0.163414 -0.200011 -0.608531 -0.875950 -0.140017 0.367403 -0.541145 0.288864 0.385638 -1.679208 0.767860 -0.380323 -0.516203 -0.633281 -0.297022 0.240499 -0.898931 -0.748609 -0.135211 -0.700568 -1.540100 -0.713612 -0.405292 0.045042 -0.142098 -0.043258 -0.213694 -0.547581 1.092496 -0.255881 0.523933 0.458946 0.089692 1.182339 0.737667 -0.386940 -0.167575 -0.268834 0.766889 -0.696621 -0.255196 0.579331 -0.265915 0.113892 0.935736 -0.314405 -0.112260 -0.106223 0.584537 -0.358063 -0.818415 0.322589 -0.117320 0.109631 1.026286 0.430802 -0.664456 -0.107802 -1.032407 -0.259977 -0.023253 -0.498042 0.251756 -0.662935 0.007839 0.526201 -0.135254 -0.570330 0.367372 -0.171235 -0.334178 -0.155867 0.893901 1.391833 -0.832215 0.707496 -0.881309 0.550121 -0.942690 -0.700293 -0.091363 -0.072867 0.113271 -0.049915 -0.206252 0.080819 0.323455 -0.592752 -0.682543 0.636144 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 0.063619 0.369438 0.549029 -0.165351 0.411209 -0.082035 0.204243 0.425304 -0.419839 -0.790770 0.004005 -1.019276 -1.118690 0.642523 -0.074063 -0.314444 0.926005 0.097044 0.034593 -0.316299 -0.106015 -0.304128 0.852682 0.932248 -0.800423 0.288585 -0.062356 0.297145 -0.003118 0.548992 0.125771 -0.933337 0.154979 0.426061 0.523366 -0.088651 -0.245574 -0.362222 -0.622439 -1.336843 -0.149566 0.975833 0.073627 -0.002377 0.281429 0.928064 1.167175 0.440496 -0.208704 0.488180 0.272973 -0.167869 0.439460 0.026850 0.197044 -0.495782 0.371934 -0.305990 -0.647018 0.331241 -0.109984 -1.027753 -0.449072 0.583725 0.764744 -0.153799 -0.302875 -0.322547 -0.128221 0.240292 -0.000664 0.460755 0.746010 0.343313 0.613614 0.337515 -0.043403 -0.807538 0.088850 -2.246495 -0.848358 -0.492709 1.362553 0.703597 -0.288490 -0.609589 0.974571 0.055269 0.189248 0.504260 1.127250 -0.200666 -0.324985 -0.297829 -0.107820 0.411853 -0.365348 0.029823 0.293757 0.069011 -0.665516 -0.057711 0.361423 -0.369966 -0.393074 0.384361 -0.217952 0.553347 -1.012101 0.196335 -1.059535 -0.029090 0.643744 -1.036961 -0.052954 0.264741 0.092225 0.586328 -0.359420 0.183734 0.326945 -0.137656 -0.294595 0.236883 -1.138161 0.976397 0.020702 0.104275 0.354737 0.594621 0.534201 0.195406 0.489008 -0.158670 -0.118078 0.214824 -0.101550 0.102690 -0.101112 -0.143638 0.314634 -0.384783 0.164257 -0.247148 -0.468943 -0.390203 -0.968841 -0.293644 0.209435 0.987065 -0.236573 0.584734 0.143341 -0.534418 0.590628 -0.136375 -0.344688 0.016117 0.607047 0.620259 0.170573 -0.297878 0.465467 0.997264 0.333511 -0.596279 0.389647 0.226965 0.118996 -0.285384 0.662163 0.191771 0.380042 -0.358974 -0.084674 0.390335 0.972255 -0.148760 -1.008396 -0.075160 0.189327 0.485051 -0.243720 0.248511 0.295278 -0.057901 0.080473 -0.000484 0.258656 0.745764 -1.615190 0.760167 0.166449 -0.207626 0.615339 -0.111980 -0.286179 -1.007481 0.101215 0.588594 0.753427 0.448645 -0.265651 -0.254016 -0.699383 -0.080784 0.129399 0.320941 -0.405692 0.654987 -0.255131 -0.338054 -0.443136 -1.007571 -0.082032 0.182972 -0.600795 0.286836 0.617898 -1.515512 0.762228 -0.087928 -0.430707 -0.537278 -0.087947 0.163002 -0.675755 -0.805902 -0.096166 -0.766265 -1.494321 -0.476714 -0.464160 -0.039612 -0.007720 -0.186944 -0.164032 -0.554574 1.211891 -0.052459 0.690878 0.511355 0.074582 1.063058 1.117144 -0.590199 0.052521 -0.439778 0.711851 -0.794464 -0.130527 0.458289 -0.428434 0.185901 0.881462 -0.112220 -0.091178 -0.454418 0.567551 -0.307387 -0.570198 0.491100 -0.360750 0.088279 0.841330 0.588432 -0.474534 -0.102626 -0.952987 -0.239111 -0.215916 -0.402748 0.139492 -0.692891 -0.145498 0.533065 -0.323384 -0.592329 0.235674 -0.206702 -0.432698 -0.219099 0.893822 1.033303 -0.840520 0.819531 -0.730479 0.572385 -0.833233 -0.549936 -0.091064 0.062320 -0.120029 -0.215772 -0.039303 -0.029556 0.215079 -0.651555 -0.669646 0.488761 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 0.096378 0.356468 0.514100 -0.144475 0.270083 -0.165496 0.120410 0.432458 -0.288260 -0.704258 -0.028516 -0.849126 -0.943639 0.448437 -0.091842 -0.450305 0.663884 0.061343 0.051466 -0.251426 -0.220393 -0.157036 0.586727 0.669587 -0.633344 0.222288 -0.125651 0.279899 0.005915 0.462963 0.213649 -0.792421 0.018160 0.630505 0.510906 0.006754 -0.169582 -0.335283 -0.730432 -1.015014 -0.123184 0.927983 0.155530 0.007875 0.293752 0.743883 0.927060 0.305524 -0.162494 0.280506 0.213898 -0.019596 0.359041 -0.009211 0.106493 -0.554818 0.338811 -0.424636 -0.524740 0.301349 -0.047074 -0.813952 -0.418987 0.460337 0.568434 -0.091970 -0.207235 -0.412640 -0.093595 0.225897 -0.023150 0.329219 0.617946 0.343261 0.423238 0.560403 0.025081 -0.463983 0.167544 -1.734460 -0.639609 -0.437445 1.178603 0.806413 -0.423766 -0.573729 0.715399 0.090104 0.221355 0.408408 0.855717 0.042359 -0.244279 -0.252453 -0.116621 0.403550 -0.268057 0.011418 0.108949 0.190284 -0.471991 0.103376 0.171575 -0.389052 -0.291659 0.520645 -0.191522 0.371850 -0.814093 0.359928 -0.817678 0.007610 0.677003 -0.767980 -0.087922 0.207011 -0.067747 0.431184 -0.231116 0.362725 0.220895 -0.216678 -0.242935 0.412767 -1.250719 0.767612 -0.071583 0.031971 0.257733 0.494907 0.444782 -0.085734 0.209430 -0.114703 -0.112927 0.176447 -0.030003 -0.007335 -0.064431 -0.051466 0.257483 -0.214364 0.141737 -0.314383 -0.341435 -0.399076 -1.173112 -0.313092 0.212125 0.565693 -0.197262 0.401701 0.046535 -0.340492 0.443455 -0.009491 -0.310976 -0.044263 0.425310 0.503947 0.449525 -0.187704 0.322795 0.733691 0.225066 -0.256316 0.489166 0.234533 0.032212 -0.242830 0.566373 0.133069 0.221369 -0.235909 -0.086064 0.296864 0.562203 0.090822 -0.795893 -0.129681 0.216773 0.451922 0.094115 0.289356 0.415552 -0.023723 0.056406 -0.010476 0.222119 0.539202 -1.261817 0.591156 0.324508 -0.088251 0.412773 -0.231332 -0.158461 -0.761451 0.128026 0.472794 0.558041 0.327327 -0.255049 -0.240036 -0.495924 -0.069234 0.110635 0.287074 -0.319064 0.455110 -0.201167 -0.202936 -0.362972 -0.943302 -0.091512 0.283783 -0.590210 0.163074 0.534778 -1.109319 0.606600 -0.114166 -0.299223 -0.583580 -0.115746 -0.017499 -0.540453 -0.552422 -0.218570 -0.644287 -1.328223 -0.387340 -0.396204 -0.070789 -0.092165 -0.113261 -0.094022 -0.299220 0.978438 -0.035419 0.473858 0.384234 0.081477 0.759425 1.094554 -0.374824 0.170032 -0.347761 0.645392 -0.672905 -0.046994 0.643962 -0.335902 0.024198 0.675397 -0.166853 -0.083950 -0.317914 0.386759 0.017834 -0.542551 0.316427 -0.606276 0.157320 0.718453 0.404515 -0.337174 -0.101885 -0.847045 -0.155793 -0.119004 -0.302241 0.062256 -0.555136 -0.147583 0.479112 -0.281612 -0.587325 0.170078 -0.201195 -0.452265 -0.141407 0.689211 0.640767 -0.583957 0.838416 -0.561104 0.428153 -0.624832 -0.359235 -0.143867 -0.072506 0.001524 -0.153813 -0.145708 -0.102784 0.154536 -0.422513 -0.549763 0.489388 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 0.348774 0.358947 1.358612 -0.909827 0.655114 -0.168022 0.213833 0.778556 -1.167325 -1.304919 0.573819 -2.562200 -1.858618 0.996615 -0.246841 -1.197091 1.120050 -0.408681 -0.338939 -0.504764 -0.666967 0.566178 1.109730 1.512551 -1.390625 0.644627 -0.996435 0.553643 0.210125 0.672169 0.732522 -1.704519 -0.487925 1.896241 0.749956 0.713330 -0.706927 -0.845721 -1.216244 -1.946213 -0.182815 2.635676 0.133740 -0.004905 0.976651 1.640876 1.865809 0.572835 -0.369705 0.743099 0.773085 -0.157271 0.833971 -0.337216 0.370087 -1.906777 1.280775 -0.622369 -0.855610 0.534778 -0.010368 -0.787829 -1.064595 1.082292 1.059912 -0.155686 -0.891154 -1.398571 0.507729 0.504962 0.192572 0.911112 1.250317 0.913394 0.860969 2.102577 0.383042 -0.765736 1.027803 -2.814654 -1.481678 0.044810 3.413638 2.191309 -1.490142 -1.874536 1.511099 0.056673 -0.234426 1.163828 1.574916 0.820785 -0.411058 -0.063473 -0.823642 0.805490 -0.237885 0.320407 -0.181195 0.928108 -1.093631 1.011772 -0.151086 -1.167857 -0.710122 1.874332 -0.123694 0.537975 -1.314179 1.487394 -0.675941 1.160471 2.206693 -1.638722 -1.274800 0.126124 -0.574242 0.620565 -0.950745 1.583517 0.423415 -1.429693 -0.954853 1.742973 -3.387779 1.574310 0.099283 0.677883 0.240770 1.133709 1.373474 -0.711885 -0.704420 -0.571426 0.196033 0.048363 0.782276 0.565014 0.210007 0.173422 0.287562 0.111229 0.571211 -1.138573 -0.609290 -0.966884 -3.473236 -0.206460 -0.342384 1.799488 -0.462979 1.544385 0.453391 -0.291132 0.822091 0.238613 -0.472999 -0.089238 0.523055 0.969952 1.323841 -0.304832 1.191342 1.776650 0.390291 -0.723518 1.950623 1.524861 -0.326440 -0.704902 1.729384 -0.100712 0.755440 -0.401551 -0.303939 0.977487 1.103792 0.839351 -2.490354 -0.518885 0.822017 1.507079 1.332405 0.914532 1.483069 0.220400 0.694014 0.179841 0.995451 1.068264 -3.275377 1.170638 1.468853 -0.017170 1.164255 -0.302480 -0.884270 -1.158458 -0.192808 0.535388 1.077543 0.809920 -1.089706 -0.280387 -0.995979 -0.114417 0.468767 -0.088210 -0.900165 1.091894 -0.334191 0.022107 -0.338510 -2.615824 -0.550261 1.404999 -1.996483 0.577027 0.514330 -2.325154 0.996734 0.282040 -0.599123 -2.134145 -0.838063 -0.123205 -0.825863 -0.745363 -0.793553 -1.731605 -3.414469 -0.900860 -1.076965 -0.711750 0.079032 0.722023 -0.693898 -0.388188 2.534191 -0.397151 1.554393 0.957085 -0.429247 1.065749 2.701678 -0.365795 0.664497 -1.168870 2.539017 -0.817941 -0.391598 2.031033 -0.958931 -0.409654 0.545265 -0.675256 -0.570479 -1.216551 0.497331 0.734752 -1.033237 0.185838 -2.149166 0.053918 1.744342 0.572024 -0.346502 0.805039 -2.175204 -0.810606 -0.930354 -0.280867 0.518875 -0.083455 -0.119804 0.549475 -0.623765 -1.242101 0.163518 -0.612725 -1.345788 0.249712 1.481088 1.263713 -0.806252 2.073139 -1.576388 1.355489 -0.966898 -1.000855 -0.055573 -1.063742 -0.405975 -0.779383 -0.870125 -0.058600 0.728768 -1.078681 -1.433279 2.411045 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -5.657447 -0.789334 -4.430312 -12.912609 13.786347 29.277157 4.027691 -15.559496 -19.350101 5.726915 6.791582 -30.590659 -11.040610 20.983963 -6.881342 12.110395 24.127960 -3.124302 -13.540685 -2.741558 13.752103 15.222720 28.662594 30.661456 -19.508777 4.436796 -1.453782 -1.408988 2.526176 8.787290 -6.098044 -19.838904 3.817939 -9.304072 -3.019847 -4.504442 -10.113686 -0.767734 21.257134 -31.424597 -0.936162 15.460304 2.628860 -2.203313 4.046309 9.640801 24.688016 14.625056 -0.280304 10.889818 11.629969 5.277220 9.255630 -1.894841 9.248063 1.797187 17.395835 9.996731 -0.363703 -8.181290 -5.291226 11.014357 -4.683293 22.663348 23.257838 3.253839 -14.314768 0.021784 8.069440 2.163773 2.034705 18.853690 5.687135 14.805042 9.898735 -0.796271 6.667461 -18.513876 8.850003 -19.848806 -10.387508 5.298474 11.131604 5.360523 11.049969 -10.446438 32.875733 -7.927368 -10.881655 17.172628 25.608577 -16.719213 -1.963320 -1.027086 -17.745943 -1.994048 -4.087902 9.116723 3.052605 2.161076 -19.684060 -16.875148 -4.249701 2.551569 -13.484544 0.774830 1.424618 6.584575 -12.475857 -4.096025 -1.622476 12.786705 -1.214421 -32.573800 -30.068626 -14.581704 -7.966587 0.901785 -18.231352 -19.750717 8.935239 1.325696 -11.002329 -7.818419 -0.407559 12.553184 16.787606 6.175918 -3.666582 1.866888 11.989767 27.494933 -4.370156 -14.591491 6.074711 0.758464 3.434090 9.027094 -7.529821 -0.755828 1.744144 -13.644072 8.428158 10.909583 -10.317067 3.671649 -1.685372 -2.958701 -5.997010 66.986924 -9.850009 25.975189 14.485389 -21.693875 6.582714 -6.126673 -1.918591 4.196180 9.817987 15.809202 -22.785400 -14.633380 22.742752 31.604972 10.007198 -19.897087 12.887155 13.326746 -1.970446 -7.711699 15.780170 -2.330593 2.603359 -12.233096 -5.499240 12.769311 43.609633 -9.813136 -12.503812 3.867976 14.670058 4.329742 1.189651 -0.983271 -15.703320 1.878770 14.183346 2.971477 17.230469 22.498696 -34.942550 19.364073 -0.645687 -8.953264 20.506101 7.543432 -17.612151 5.547394 -4.468940 10.513254 16.709568 2.915589 -7.260197 -0.412452 -23.300534 -0.581474 6.442353 0.961690 -18.766564 22.125713 7.823532 -14.465027 -5.638631 -4.755158 -2.899572 -9.528328 -16.732501 15.584602 -7.808581 -28.831364 19.471219 14.074817 -5.863387 -6.742864 -8.392105 6.482589 -14.112661 -18.415963 9.190811 -8.834259 -6.559116 1.087614 -9.109220 5.358465 16.800690 22.219598 -28.969959 -26.659217 23.674552 -3.350683 28.588414 13.631851 -3.517093 4.485167 -6.508199 -6.668667 -14.105144 -17.814780 14.491536 10.461417 -14.935226 0.474239 -11.877948 14.905665 13.370316 -4.539925 -14.508653 -16.674636 16.824361 -4.141717 5.559898 3.338022 2.266366 -20.273148 0.195602 8.799608 -6.809943 7.952243 -14.556926 -8.283108 -21.099424 -10.017133 15.898211 -2.444836 5.504915 2.945887 -7.592615 -2.829435 5.812627 3.501405 -6.234835 12.032233 22.900134 3.617244 -3.664181 7.391998 -25.765329 19.836438 -21.224221 -20.636186 6.943150 -13.019161 -19.709789 -12.165196 -5.186707 17.085011 9.866944 -7.254233 -9.766176 12.917008 +PE-benchmarks/tug-of-war.cpp__main = 0.041070 0.222315 0.384699 -0.099179 0.429065 0.024797 0.223576 0.369653 -0.461962 -0.495511 -0.073054 -0.645876 -0.735660 0.597749 0.013032 -0.016538 0.903434 0.293104 0.041021 -0.201245 -0.014751 -0.404722 0.731990 0.791306 -0.551894 0.286639 -0.081774 0.163299 -0.198375 0.688655 -0.167017 -0.782527 0.246736 0.075867 0.310795 -0.326860 -0.237915 -0.131086 -0.336729 -1.222101 -0.042596 0.693500 0.073023 -0.045163 0.181231 0.585161 0.903016 0.355030 -0.064807 0.537241 0.087006 -0.162394 0.347803 0.100669 0.312262 0.060091 0.267520 -0.214573 -0.598253 0.286239 -0.166265 -0.870608 -0.286651 0.371266 0.581015 -0.145096 -0.252279 -0.210026 -0.200796 0.136146 0.083055 0.299292 0.492670 0.065181 0.433595 0.065009 -0.090416 -0.600842 -0.038472 -1.767787 -0.698098 -0.413154 1.021484 0.462592 -0.010879 -0.415343 0.789829 -0.168524 0.188535 0.246754 0.872104 -0.411862 -0.304289 -0.243399 0.008018 0.238370 -0.257494 -0.182779 0.328111 -0.160766 -0.559659 -0.240058 0.530823 -0.158464 -0.298306 0.154300 -0.133589 0.582676 -0.894612 -0.156757 -0.944626 -0.004769 0.261681 -0.735093 0.089960 0.248001 0.070502 0.554886 -0.361016 -0.140317 0.371867 0.075744 -0.261730 -0.042715 -0.586281 0.809090 -0.059998 0.009199 0.328341 0.364408 0.277926 0.392339 0.593288 -0.161939 -0.033534 0.283725 -0.121938 0.077183 -0.134563 -0.252136 0.014685 -0.470748 0.079985 -0.107216 -0.457091 -0.078068 -0.550172 -0.071519 0.180996 0.821981 -0.224691 0.459497 0.094492 -0.528407 0.576790 -0.116933 -0.220793 0.015940 0.589340 0.420862 -0.116806 -0.282094 0.274325 0.787066 0.356846 -0.548272 0.069014 -0.080924 0.162592 -0.021520 0.462298 0.153768 0.385333 -0.386204 -0.056930 0.102882 1.086197 -0.278960 -0.793135 0.011779 -0.021892 0.203142 -0.464705 0.080639 -0.024186 -0.078132 -0.029704 -0.094780 0.147644 0.648474 -1.235523 0.697060 -0.245903 -0.347697 0.577288 -0.007932 -0.146344 -0.767205 -0.091104 0.444625 0.848832 0.374252 -0.114392 -0.139779 -0.573505 -0.098691 0.029466 0.296224 -0.308806 0.534871 -0.150969 -0.461476 -0.245387 -0.673447 0.008616 -0.084482 -0.353111 0.228769 0.592218 -1.280815 0.545390 0.011181 -0.317344 -0.086288 0.180647 0.201088 -0.478330 -0.723901 0.074807 -0.410863 -0.957351 -0.268799 -0.340815 0.119368 0.006548 -0.260310 -0.060991 -0.576862 0.894596 0.051018 0.584048 0.424983 -0.015958 0.869431 0.837755 -0.573721 0.020428 -0.365595 0.364919 -0.749756 0.025282 0.165469 -0.405573 0.309310 0.780643 0.164847 -0.041628 -0.450851 0.640575 -0.395809 -0.250393 0.572262 -0.144419 0.101505 0.567089 0.642118 -0.493233 -0.192666 -0.579998 -0.108487 -0.102169 -0.228576 0.160988 -0.635828 -0.084184 0.353074 -0.206496 -0.441258 0.174992 -0.136638 -0.304099 -0.259640 0.797707 0.774562 -0.675396 0.618691 -0.425770 0.409948 -0.643265 -0.317912 -0.181006 0.244161 -0.304530 -0.077811 0.101950 0.050743 0.089609 -0.436453 -0.437195 0.113719 +PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -2.652965 -1.480753 0.043010 -4.604399 2.930315 4.424627 1.516217 -3.663123 -5.565313 -3.493288 2.288832 -8.294288 -4.914707 6.854369 -2.623844 3.701393 8.556580 -0.005767 -2.878530 -2.940286 5.512422 -0.108156 9.809353 10.388985 -7.176235 0.138228 0.961083 3.634543 3.108478 -0.012363 3.190372 -4.606164 1.796252 -4.686722 0.905190 -2.547296 -1.378471 1.508962 3.915224 -10.985414 -0.910522 2.905430 -0.497672 0.040923 0.430406 2.513234 6.613239 5.665331 -1.184985 4.820451 5.116144 0.642380 2.779521 0.080397 0.824352 -1.069355 0.939321 -1.308550 -0.743352 -0.824954 -1.433896 -2.300694 0.381770 7.660690 8.468795 -0.124087 -3.244232 2.077038 1.838321 1.959531 1.850680 5.760895 0.314138 2.958030 4.979241 -7.745976 0.085563 -12.473200 1.712188 -12.233110 -5.216560 -0.281590 5.527072 3.120040 2.955921 -0.123493 10.379838 -0.992162 -2.947638 8.266178 8.411007 -4.765224 -1.471759 -2.254972 -3.666762 1.247169 -3.460814 2.404213 0.240338 3.973318 -6.041224 -3.989042 0.742138 0.408006 -4.212295 -3.558628 -0.693742 5.069913 -6.563068 -3.260815 -3.386136 4.404241 0.288345 -11.058050 -4.341317 -4.494833 3.252771 1.404787 -4.452716 -4.566529 2.376680 1.355074 -1.456412 -2.282950 -1.950485 4.103718 4.697768 1.731969 -0.519524 4.005364 2.607267 9.283733 2.326684 -3.408266 -0.003811 1.721480 -1.056590 2.777708 -2.977068 -1.144992 2.981645 -5.244593 0.425437 3.293575 -3.618335 -3.805793 1.808544 -1.725736 -0.067244 21.306599 -1.118941 7.252410 6.431193 -5.807061 1.816169 -2.887737 0.640964 2.950652 4.125330 3.994357 -8.694475 -5.312008 5.934837 9.989137 3.440566 -6.661646 -0.639922 3.068309 0.941490 -1.979986 3.756604 0.911639 0.527903 -3.622386 -0.911252 5.077971 11.708976 -3.321570 -1.344596 0.951773 4.072298 -0.236360 -5.963721 -0.578501 -4.141682 -0.115185 4.148886 1.878156 3.414781 7.768428 -11.008669 5.927556 0.093736 0.905774 4.242785 2.608715 -5.426924 -7.184301 -0.826668 3.420834 5.237947 -0.671317 0.230384 0.856095 -8.284155 0.281012 2.251858 1.588355 -4.869130 7.045974 -0.019687 -2.944595 -3.420392 0.776408 -2.300136 -1.703244 -2.401999 5.227848 0.474493 -8.413791 6.228260 0.424146 -3.362644 -0.306024 -2.536837 7.103621 -6.249422 -6.715604 4.205750 -3.382084 -5.365160 -2.617998 -2.197454 2.679618 3.182876 1.515299 -6.139428 -5.987029 7.081325 -2.114154 7.880021 4.016500 -0.946206 5.866097 -2.630202 -3.245171 -4.377339 -4.487690 2.125417 0.839851 -4.750596 -4.127166 -1.946231 4.961391 6.454655 -1.191831 -4.484019 -0.389171 6.815926 -6.620160 -1.907267 1.914637 3.449838 -4.916926 3.712069 3.258692 -5.382696 1.601314 -5.772388 -0.439525 -4.079809 -4.257553 5.295095 -2.176327 2.204560 1.170104 -0.914264 -0.175850 3.234659 2.682135 0.349847 1.758866 8.426531 7.124317 -2.243845 -0.705602 -8.893186 4.763048 -8.028855 -7.166402 1.045344 1.202677 -3.002295 -1.938248 -1.042653 5.700035 4.807761 -4.094607 -4.000733 3.317397 +PE-benchmarks/the-knights-tour.cpp__main = -0.027413 -0.016906 0.130506 -0.095883 0.154569 -0.145434 0.105117 0.059316 -0.261442 -0.226555 0.052468 -0.313362 -0.208103 0.277145 -0.054903 0.094652 0.362832 0.154386 -0.015883 -0.117966 0.041459 -0.279743 0.321815 0.328353 -0.216282 0.076070 -0.085835 0.127177 -0.006197 0.255518 -0.028771 -0.226642 0.130526 -0.037066 0.099985 -0.171289 -0.018040 0.071922 -0.072049 -0.446997 0.031251 0.219641 0.226905 -0.028847 0.010073 0.258569 0.254281 0.186940 -0.008631 0.244052 0.119635 -0.081214 0.128704 0.084565 0.129561 -0.001537 0.166582 -0.186952 -0.269733 0.080444 -0.056715 -0.401145 -0.055653 0.170800 0.289272 -0.051813 -0.030418 -0.030871 -0.083579 0.096716 0.156004 0.054604 0.062119 -0.043052 0.127201 -0.089062 0.049253 -0.334003 -0.077353 -0.842890 -0.240984 -0.098840 0.442752 0.203999 0.010160 -0.023762 0.274856 0.003727 0.010180 0.067042 0.328109 -0.173473 -0.173162 -0.050012 -0.022967 0.124182 -0.153777 -0.076959 0.170563 0.079389 -0.216407 -0.024260 0.263946 -0.014359 -0.091776 0.055055 -0.026256 0.216658 -0.437381 -0.109003 -0.272279 0.002802 0.106117 -0.300448 0.218186 0.002030 0.070497 0.169734 -0.128737 -0.031195 0.122112 0.017112 -0.093498 0.027499 -0.421580 0.269225 -0.088372 0.073133 0.105011 0.109228 0.065760 0.180176 0.145211 -0.142042 -0.009053 0.080824 -0.085459 0.097898 -0.096940 -0.195130 0.080803 -0.250103 0.053552 -0.093733 -0.191345 -0.083073 -0.143529 0.061522 0.082949 0.165680 -0.025111 0.229183 0.110877 -0.194908 0.181031 -0.067235 0.005108 0.042078 0.223047 0.033428 0.081830 -0.190693 0.102352 0.277546 0.178905 -0.181872 -0.088125 -0.043190 0.096790 0.092349 0.095034 0.090201 0.065136 -0.189166 -0.033637 0.011044 0.398235 -0.039849 -0.084283 0.047944 -0.047393 -0.027163 -0.276585 -0.018512 -0.042190 0.033364 -0.148282 -0.002693 0.038944 0.299296 -0.545716 0.307262 -0.108670 -0.029823 0.219412 -0.041573 -0.124441 -0.530469 -0.073927 0.136237 0.341279 0.064726 0.023783 0.077567 -0.229731 -0.045870 -0.051153 0.087156 -0.095215 0.143309 -0.032312 -0.169711 -0.124605 -0.179072 0.024483 -0.002180 -0.059806 0.132266 0.329492 -0.473872 0.194799 -0.065686 -0.156278 -0.017904 0.121864 0.080535 -0.224948 -0.235033 0.013208 -0.185151 -0.351851 -0.201370 -0.049559 0.049112 -0.141626 -0.184826 0.048279 -0.107355 0.294509 -0.094448 0.165220 0.135248 -0.041604 0.265278 0.339853 -0.169705 -0.008265 0.039881 -0.056289 -0.418596 0.003481 0.195948 -0.102450 0.158404 0.291424 0.125984 -0.026495 0.045529 0.292274 -0.098030 -0.191803 0.264281 -0.099894 0.011509 0.288855 0.270196 -0.299278 -0.058997 -0.223385 -0.066986 0.006626 -0.099792 0.125789 -0.144265 0.037703 0.064132 -0.004819 -0.150397 0.118379 -0.015905 -0.101330 -0.093239 0.404773 0.298054 -0.177548 0.190616 -0.188208 0.068613 -0.276866 -0.147592 -0.045689 0.235896 -0.192282 0.046863 0.040975 0.111759 0.051854 -0.135291 -0.169767 0.064487 +PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -0.902141 -1.031335 -0.441530 -1.443136 0.769850 1.045681 0.529332 -0.930099 -2.127680 -0.882669 0.716886 -2.458073 -1.051206 2.206555 -0.679519 1.611910 2.728987 0.496574 -0.911641 -0.595422 1.737324 -0.669819 2.696241 3.158281 -1.825634 0.012112 -0.274148 0.997948 0.491701 0.485797 0.873432 -1.497165 0.495016 -1.637779 0.418722 -1.328573 -0.416223 1.314417 1.410983 -3.521325 -0.090032 1.533128 0.820314 -0.062958 0.135463 0.570372 1.468291 1.690470 -0.309875 1.700372 1.341436 -0.001723 1.063849 0.095851 0.464762 0.295914 -0.027555 -0.369985 -0.383164 -0.116171 -0.590609 -0.679597 0.478934 2.066418 2.574124 -0.205180 -0.966117 0.441304 0.512083 0.631928 0.921033 1.562358 -0.292135 0.099761 1.256890 -2.230295 0.101510 -3.591081 0.744641 -3.881554 -1.374796 0.191379 1.902530 1.539060 0.981933 -0.503572 3.111831 -0.719972 -1.083503 2.320860 2.218449 -1.416025 -0.537608 -0.770490 -1.125063 0.286477 -0.958543 0.004596 0.634479 1.200312 -1.783943 -1.087883 0.288832 0.301762 -1.167998 -1.096671 -0.164867 1.635098 -2.047786 -1.410203 -0.892870 1.631811 -0.053265 -3.109822 -0.607248 -1.668193 -0.300804 0.423457 -1.601639 -1.365387 0.892218 0.234747 -0.569127 -0.581537 -1.088076 1.482603 0.864966 0.385374 -0.206453 1.021027 0.294300 2.637218 0.308858 -1.356254 0.151657 0.869917 -0.365336 0.937353 -1.207835 -0.777610 1.059650 -1.943737 -0.334477 0.455009 -1.202202 -0.536269 0.515944 -0.136391 -0.130048 6.215251 -0.389058 2.318540 2.006577 -1.626011 1.399606 -0.345564 0.602507 0.951846 1.458627 0.767718 -2.561510 -1.703342 1.587783 2.957958 1.180617 -1.612127 -0.737701 0.692269 0.489683 -0.032801 1.012208 0.194844 0.036624 -1.229613 -0.242365 0.866226 3.683401 -0.826644 0.411942 0.250156 1.504773 -0.681533 -2.174062 -0.296460 -2.308766 -0.073336 0.493881 0.442597 1.009852 2.383966 -3.101533 2.034836 -0.424910 0.346425 1.399175 0.510088 -1.504868 -3.300951 -0.750154 0.672238 2.038482 -0.492966 0.354941 0.632066 -2.474713 0.099378 0.382732 0.497617 -1.515808 2.083190 -0.291813 -0.815104 -0.663900 0.447959 -0.960898 -0.987910 -0.557349 1.608998 1.000208 -1.718234 1.489736 0.208527 -0.940696 0.265540 0.056402 1.732485 -1.805545 -1.908956 1.263881 -0.630766 -1.317363 -0.798148 -0.600223 0.990357 0.510759 -0.349567 -1.470685 -1.974226 2.090736 -0.841930 2.439045 1.135610 -0.758762 1.296318 0.157752 -0.982668 -1.132036 -1.298053 -0.245033 -0.264070 -0.978535 -1.212362 -0.552534 1.610188 1.798976 0.319007 -1.286666 0.171599 2.477579 -1.151224 -0.290907 0.789751 -0.067318 -1.182100 0.914457 1.177964 -2.002283 0.465543 -1.777685 0.279409 -0.992217 -0.844643 1.836772 -0.600821 0.748413 -0.077278 -0.195266 0.017099 0.887384 1.217635 -0.190349 0.516216 3.077713 1.014300 -0.149594 -0.099714 -2.432782 1.145584 -2.219832 -1.557240 -0.285345 0.967567 -1.420443 -0.277020 0.111254 1.839580 1.421690 -0.867785 -1.126757 0.732675 +PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -0.837141 -0.782894 -0.414441 -1.272079 0.855623 0.825468 0.446707 -1.161866 -1.737801 -0.924416 0.686869 -2.346501 -0.940486 1.845774 -0.498720 1.443670 2.130649 0.020354 -0.715022 -0.704561 1.340046 -0.383835 2.179110 2.423933 -1.228929 0.123083 0.243473 0.698300 0.100294 0.245994 0.904733 -1.742861 0.256577 -1.351291 0.298960 -0.473573 -0.842004 0.869512 1.693205 -2.679876 -0.186853 1.403467 0.521040 -0.042433 0.150044 -0.386569 1.207992 1.172881 0.127083 1.702109 1.016190 -0.019440 0.965769 -0.074399 0.998248 0.320698 0.541676 -0.443023 -0.219055 -0.077827 -0.853775 0.254440 0.120310 1.626739 1.801779 -0.244844 -1.208203 0.360042 0.343984 0.715370 0.518975 1.621943 -0.686999 0.402215 1.013284 -2.209236 0.132980 -3.319274 0.754391 -3.014233 -1.430505 0.647441 1.244209 0.968945 0.926425 0.295954 2.753229 -0.759018 -1.314744 1.404566 2.021335 -0.837508 -0.268055 0.021687 -0.849983 -0.160748 -0.450488 0.137072 0.676777 1.020282 -1.565393 -0.720100 0.516009 0.114089 -0.920874 -0.918760 -0.043399 1.439745 -1.505079 -1.188488 -0.635292 1.616629 -0.011046 -2.511461 -1.343527 -1.032355 -0.328300 0.507113 -1.920862 -1.421464 1.171984 0.028101 -0.585104 -0.554055 0.304838 0.797128 1.087131 0.640431 -0.235829 1.192930 0.449111 2.659653 0.416933 -0.978496 0.444142 0.486210 0.160765 1.023731 -0.337369 -0.559597 -0.186528 -1.208518 0.269055 0.619157 -0.954857 -0.772229 0.307407 -0.279108 -0.641465 5.496005 -0.798895 2.133992 1.790420 -1.250046 0.501048 -0.522040 0.432315 0.325673 1.177827 1.026560 -1.679212 -1.333159 2.023646 2.643855 0.869375 -1.652700 -0.756940 0.941357 0.483762 -0.027529 1.168273 0.010477 0.503319 -0.922866 -0.213740 0.696335 3.060469 -0.994033 -0.927468 0.239814 1.469116 -0.002978 -1.710560 -0.169959 -2.267423 -0.073789 0.646945 0.393404 0.715477 1.917218 -3.222360 1.641122 -0.042023 0.073412 1.811607 0.995892 -1.299866 -3.039728 -1.025354 0.563993 1.541577 -0.497270 0.351265 0.157075 -2.016522 0.149049 0.280005 0.314721 -1.526251 2.014019 -0.502525 -0.724609 -0.273535 0.435424 -0.667206 -0.890213 -0.579283 1.364268 1.057610 -1.953694 1.280002 0.750632 -0.566315 0.094783 0.006450 1.887950 -1.020678 -1.599456 1.059229 -1.039694 -1.096732 -0.102142 -0.747944 0.407647 0.857087 0.429473 -1.256826 -0.755988 1.805580 -0.526154 2.559913 0.939167 -0.671592 1.077672 -0.865705 -1.003668 -0.485889 -0.896453 0.174799 0.084285 -0.816512 -1.838951 -0.484516 1.235385 1.090446 0.277090 -1.232912 -0.623849 1.743943 -1.674349 0.435530 0.587793 0.133415 -1.264421 0.702122 0.943398 -1.069881 0.735956 -1.438574 -0.057931 -1.686885 -0.490267 1.355068 -0.249979 0.292010 -0.198416 -0.715873 0.097229 0.528077 1.128941 0.023650 0.578254 1.801506 1.151076 -0.306267 -0.345780 -2.025865 0.862855 -1.541016 -1.467525 0.038470 0.576125 -1.406510 -0.876302 -0.265897 1.446966 1.276067 -0.918726 -1.068141 0.918682 +PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -2.062983 -1.213634 -0.382495 -3.064887 2.498111 3.951678 1.349721 -2.767208 -4.272027 -2.008986 1.491047 -5.754788 -3.457711 5.325194 -1.618978 3.710520 6.686812 0.420201 -2.026327 -1.798108 4.267215 -0.916194 7.465360 7.976053 -5.134166 0.314334 0.978174 2.270970 1.565598 0.947007 1.057862 -3.627728 1.898017 -4.521309 0.504349 -2.695775 -1.319998 1.405715 3.623408 -8.623420 -0.656224 2.074207 -0.564224 0.017869 0.182700 2.190429 5.001511 4.245736 -0.840461 4.242380 3.255071 -0.239259 2.254483 0.239040 1.216869 0.441265 0.644527 0.188332 -0.783157 -0.572040 -1.371734 -2.120978 0.425448 5.390521 6.356869 -0.484359 -2.537721 1.770414 0.856544 1.119258 1.301795 4.369407 0.304381 1.639505 3.780619 -6.226978 0.098943 -8.974617 0.830734 -9.533208 -3.908136 -0.239696 3.650602 1.551440 3.123545 -0.533359 8.030506 -1.146403 -2.226840 5.421700 6.372882 -4.686497 -1.153921 -1.547635 -2.266398 0.435360 -2.542904 1.217716 1.318353 1.604486 -4.682680 -3.598668 1.250780 0.746143 -3.185827 -3.170360 -0.608363 4.044491 -5.138715 -3.456378 -3.115538 2.553031 -0.701474 -8.389586 -2.599454 -2.928506 2.188812 1.363258 -3.615604 -4.461765 2.186852 1.617383 -1.008278 -2.740898 -0.113155 3.649495 3.472981 1.142853 -0.019583 2.635774 1.626005 7.741286 2.687187 -2.493115 0.016863 1.546121 -1.215145 2.248863 -2.254823 -1.200776 1.979974 -4.668061 0.066297 2.675046 -2.912942 -1.378851 2.808535 -0.793904 -0.165443 16.764676 -1.126528 5.600900 4.658064 -4.877216 2.132067 -2.237703 0.508481 2.325814 3.485135 2.979443 -7.804958 -3.900220 4.377511 7.674898 2.749152 -5.812666 -1.108755 1.626996 1.111594 -1.232633 2.681244 0.674680 0.831402 -2.959190 -0.554236 3.173820 9.855273 -3.514512 -1.234671 0.939302 2.518796 -0.694879 -5.632162 -0.767825 -4.293884 -0.324033 2.433869 1.092228 2.308150 5.884402 -8.187850 4.650952 -1.244949 -0.316391 3.923828 2.189438 -3.918023 -5.729975 -0.940653 2.549538 4.387354 -0.220488 0.438622 0.681231 -6.323661 0.166027 1.438863 1.238904 -3.721659 5.548504 0.056283 -2.807668 -2.307559 0.680231 -1.359733 -2.352974 -1.480302 3.986506 0.549747 -7.000314 4.470955 0.753586 -2.733525 0.683764 -0.916129 5.119917 -4.674827 -5.555776 3.559316 -2.126055 -3.276139 -1.688731 -1.674750 2.154158 2.503538 0.295952 -4.520648 -5.500302 5.211241 -1.472741 6.065100 3.093250 -0.779784 4.794681 -1.959377 -3.105790 -3.549683 -3.475270 1.123856 0.061648 -3.208459 -3.784998 -1.633195 4.249871 5.096631 -0.008483 -2.792151 -0.648878 5.489484 -5.226256 -0.608194 2.015822 3.432597 -3.610837 2.181674 2.902470 -4.091507 0.937547 -3.822826 -0.560996 -3.055330 -2.981929 4.071849 -2.117304 1.576248 0.772740 -0.684228 -0.020304 2.335998 2.026249 0.374527 1.025352 6.507600 5.448418 -2.177952 -0.752550 -6.270025 3.591723 -6.014316 -5.085164 0.624179 1.618870 -2.699984 -1.431227 0.187881 4.236285 3.383802 -3.404567 -2.636155 1.525879 +PE-benchmarks/longest-bitonic-subsequence.cpp__main = 0.032929 0.162046 0.407824 -0.161036 0.423367 -0.031105 0.236142 0.319383 -0.528188 -0.597981 0.094811 -0.919693 -0.865750 0.641191 -0.030702 -0.052678 0.873055 0.149005 -0.021409 -0.254240 -0.032187 -0.319424 0.814654 0.886607 -0.656446 0.292167 -0.178204 0.215607 -0.069003 0.521356 0.018283 -0.795289 0.221981 0.159070 0.308012 -0.148586 -0.255811 -0.181272 -0.315197 -1.226728 -0.081426 0.849141 0.097869 -0.023271 0.218670 0.755394 0.942523 0.417554 -0.119163 0.614122 0.223402 -0.268393 0.417859 0.060577 0.267337 -0.271536 0.321643 -0.232247 -0.611519 0.267344 -0.133369 -0.888079 -0.361303 0.468117 0.683520 -0.168776 -0.316626 -0.231270 -0.109539 0.196842 0.129055 0.398355 0.557464 0.149415 0.536172 0.190841 -0.047087 -0.718249 0.023294 -1.934054 -0.783846 -0.288986 1.284398 0.581328 -0.124713 -0.506128 0.872975 -0.050288 0.036556 0.389231 0.955112 -0.309257 -0.329281 -0.172494 -0.062545 0.302359 -0.315914 -0.028319 0.336696 0.013925 -0.634427 -0.078886 0.444266 -0.254761 -0.348567 0.243663 -0.138061 0.543557 -0.919876 -0.009232 -0.855274 0.083300 0.473191 -0.888547 -0.008449 0.228836 0.065229 0.557864 -0.412239 0.069400 0.344401 -0.143558 -0.287549 0.107443 -0.856862 0.843766 0.008843 0.172973 0.325653 0.504643 0.422084 0.351089 0.427794 -0.205480 -0.024363 0.200030 -0.026135 0.253377 -0.078219 -0.229522 0.144988 -0.426898 0.158554 -0.219560 -0.454495 -0.233994 -0.723644 -0.044519 0.071731 0.884945 -0.177721 0.630591 0.234528 -0.482695 0.558594 -0.175610 -0.192262 0.062710 0.562170 0.434126 0.041981 -0.311229 0.429742 0.911536 0.349422 -0.647413 0.226037 0.182503 0.177758 -0.155677 0.576273 0.170221 0.448742 -0.383282 -0.054986 0.284460 1.041905 -0.213443 -0.850229 -0.010400 0.079325 0.353725 -0.376087 0.138343 0.121274 -0.046614 0.044382 0.018335 0.199806 0.698487 -1.403894 0.710252 -0.017511 -0.215677 0.633621 0.012660 -0.341307 -0.910694 -0.080566 0.415120 0.769713 0.407671 -0.193949 -0.103303 -0.645425 -0.080604 0.085666 0.182746 -0.349791 0.611591 -0.215955 -0.324663 -0.292775 -0.805839 -0.054779 0.090148 -0.469766 0.330671 0.606483 -1.343958 0.567252 0.000000 -0.432617 -0.346938 0.029068 0.245093 -0.537927 -0.712423 0.004888 -0.653859 -1.252124 -0.413835 -0.376865 -0.042035 0.025856 -0.197279 -0.120830 -0.500769 1.086438 -0.064180 0.679514 0.474013 -0.076295 0.887223 0.938707 -0.583959 0.045808 -0.388877 0.545909 -0.753233 -0.097111 0.316740 -0.409983 0.247342 0.722709 0.065303 -0.120916 -0.442686 0.588516 -0.353761 -0.405214 0.524753 -0.227418 0.047432 0.744128 0.605382 -0.487460 0.007848 -0.754862 -0.226547 -0.227502 -0.275548 0.233162 -0.501134 -0.055121 0.327216 -0.231306 -0.441160 0.203610 -0.159601 -0.362876 -0.209609 0.883063 0.913945 -0.704059 0.646497 -0.626401 0.499070 -0.694831 -0.478111 -0.065632 0.178639 -0.317473 -0.174229 0.034692 0.070659 0.226781 -0.630388 -0.603539 0.416334 +PE-benchmarks/kmp-algorithm.cpp__main = 0.173122 0.437486 0.526550 -0.069031 0.440129 0.045907 0.184808 0.612930 -0.404775 -0.593301 -0.180539 -0.752975 -0.921753 0.536001 0.049345 -0.338065 0.870407 0.259158 0.093275 -0.135482 -0.280910 -0.197252 0.631945 0.723923 -0.559464 0.378438 -0.229680 0.128182 -0.351116 0.861969 -0.103774 -1.037642 0.103733 0.550553 0.433546 -0.178804 -0.318359 -0.319086 -0.707084 -1.284471 -0.071421 1.078787 0.086560 -0.051476 0.342908 0.530302 1.088041 0.269603 -0.032506 0.417723 -0.025495 -0.020090 0.413387 0.040772 0.319336 -0.094552 0.318518 -0.456816 -0.674305 0.379989 -0.136431 -0.865756 -0.482974 0.346269 0.484930 -0.114927 -0.307967 -0.498078 -0.231314 0.144682 -0.035471 0.312752 0.660949 0.208411 0.375963 0.661637 -0.067430 -0.179750 0.135040 -1.628589 -0.759410 -0.526560 1.237007 0.924899 -0.270266 -0.727170 0.789156 -0.230871 0.347003 0.242958 0.906838 -0.177081 -0.278873 -0.296487 0.005717 0.318771 -0.175888 -0.247933 0.126266 -0.148855 -0.545037 -0.085363 0.405541 -0.331180 -0.313390 0.503346 -0.161507 0.535604 -0.914667 0.134825 -1.035235 0.057075 0.504381 -0.678180 -0.134083 0.404206 -0.269577 0.615187 -0.351585 0.102217 0.392399 -0.087055 -0.330448 0.219842 -0.993612 0.899463 -0.166458 -0.093309 0.368428 0.444730 0.396425 0.093981 0.416759 -0.097765 -0.020780 0.310746 0.051150 -0.056808 -0.025282 -0.136796 -0.172825 -0.338871 0.085450 -0.241441 -0.450925 -0.095986 -1.357063 -0.204657 0.209373 0.627294 -0.322292 0.396021 -0.064178 -0.479388 0.650765 0.014080 -0.394190 -0.138528 0.548973 0.579655 0.266237 -0.167031 0.253745 0.795488 0.307508 -0.285389 0.463437 0.000172 0.063951 -0.099615 0.649190 0.103817 0.445886 -0.346861 -0.085855 0.101739 0.965181 -0.056997 -1.047418 -0.082082 0.053122 0.432771 0.017029 0.243088 0.236203 -0.103875 0.056396 -0.161525 0.191356 0.593320 -1.194766 0.727614 -0.021095 -0.414181 0.562644 -0.175884 -0.014925 -0.517065 -0.058320 0.517361 0.886291 0.435223 -0.238361 -0.333693 -0.515483 -0.129158 0.084612 0.345220 -0.344793 0.538482 -0.188043 -0.443838 -0.223652 -1.028689 -0.039387 0.074774 -0.633312 0.124511 0.689780 -1.237813 0.599274 0.068832 -0.251400 -0.326046 0.116411 -0.003056 -0.448099 -0.691383 -0.107316 -0.497757 -1.257699 -0.158041 -0.483163 0.040544 0.025210 -0.173321 -0.051572 -0.487311 1.053929 0.205859 0.594770 0.471686 0.026167 0.818995 1.264112 -0.553211 0.280625 -0.581985 0.674526 -0.803449 0.135136 0.503824 -0.526252 0.139981 0.791758 0.071406 -0.079082 -0.672941 0.550969 -0.057539 -0.277019 0.519327 -0.659767 0.235096 0.592995 0.626045 -0.353594 -0.224066 -0.747431 -0.034432 -0.112188 -0.189638 0.037868 -0.742938 -0.206708 0.519430 -0.348213 -0.673727 0.102940 -0.259510 -0.527966 -0.254732 0.764143 0.467603 -0.663433 1.013583 -0.389937 0.475025 -0.598074 -0.204814 -0.302001 -0.004148 -0.212042 -0.152700 -0.041765 -0.143542 0.035187 -0.355306 -0.498056 0.247066 +PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -2.971992 -2.745752 -0.737157 -4.639024 2.539647 4.392629 1.683769 -4.491786 -5.680483 -2.814337 2.942878 -8.145422 -3.943587 6.710857 -2.674755 4.876239 7.990902 0.041548 -3.159873 -2.857851 5.431022 0.505834 9.682064 10.016024 -6.367032 -0.158670 0.273200 3.353635 3.166155 -0.859223 3.507442 -3.981873 2.398351 -5.369427 0.144711 -2.209293 -1.303154 2.314505 5.137722 -9.974547 -0.669998 2.616898 -0.033366 0.013386 0.291023 1.699735 5.104321 5.578427 -0.230139 5.285758 4.719641 0.290646 2.844150 0.229844 1.232905 -0.774696 0.637976 -2.143194 -0.629499 -1.254100 -1.534336 -1.418521 0.370220 7.152724 8.069649 -0.216985 -3.212901 2.372135 2.083340 2.025076 2.501642 5.498664 -0.643248 2.409372 4.369538 -8.179725 0.335625 -11.247085 1.360879 -10.694888 -4.862136 0.833215 5.191754 2.810200 3.457389 0.086310 9.705548 -0.893563 -3.941027 7.203495 7.547095 -4.909863 -1.499441 -1.336548 -2.682200 0.773578 -3.434758 2.538028 0.693463 4.060887 -5.837941 -3.186167 0.829532 0.740562 -3.888309 -3.902557 -0.235768 4.943577 -5.890220 -3.878409 -2.203275 4.948673 -0.219033 -10.413698 -3.959008 -4.561607 2.875724 1.145605 -4.628786 -4.544153 2.412501 0.982744 -1.133286 -2.602255 -1.279373 3.304253 4.870369 2.125062 -0.773074 4.440799 2.027510 10.142956 1.421781 -3.439258 0.422910 1.518473 -0.659363 3.675520 -2.587836 -1.438532 2.323610 -5.214636 0.328275 3.378278 -3.402674 -3.257373 2.261380 -0.417180 -0.737580 20.436690 -0.898837 7.440197 7.215071 -5.207746 0.938729 -3.349795 1.620696 2.881060 3.631860 2.985553 -8.662620 -5.336052 5.909231 9.515738 3.378117 -6.658430 -0.705905 3.084287 1.346221 -2.049383 3.297375 0.966717 0.830237 -3.570617 -0.640715 4.756815 11.146698 -3.607389 -0.294804 1.022520 3.810613 -0.331500 -5.852392 -1.058555 -4.359433 0.005031 3.810321 2.474282 2.919138 7.356954 -9.220365 5.570060 0.097583 1.343948 4.621708 3.132057 -5.868000 -6.945817 -1.684782 2.521296 4.782246 -1.287244 0.841746 1.614086 -7.999987 0.368716 1.943545 0.925287 -4.386826 6.490737 0.175642 -2.248729 -2.688192 1.705672 -2.004221 -1.884307 -1.812652 5.478293 1.199126 -7.351162 5.198693 0.767173 -3.575925 0.246779 -2.303536 7.679767 -5.803895 -5.818505 4.296948 -3.314242 -4.769609 -2.378486 -1.681533 2.331621 2.859922 1.918422 -5.950961 -4.573010 6.745332 -2.247624 7.730869 3.630730 -1.621454 4.812914 -4.065833 -3.215706 -3.790501 -4.648896 1.232036 1.160650 -4.771400 -3.948220 -1.494517 5.073681 5.499731 -0.663916 -4.889803 0.143442 6.377757 -7.198421 -1.142173 1.900237 4.236455 -5.022413 3.396277 3.084391 -5.377667 2.327455 -4.747881 -0.853727 -4.261097 -3.794792 5.721879 -1.128965 2.781567 -0.037339 -0.530685 0.527340 3.023830 2.949789 0.523012 2.159662 8.024207 6.607439 -1.370326 -1.745202 -8.608552 4.289741 -7.191584 -6.856423 1.456329 1.328067 -3.616589 -1.728282 -0.871062 6.057332 5.193670 -4.334916 -4.120792 3.347749 +PE-benchmarks/little-and-big-endian-mystery.cpp__main = -0.001857 0.009908 0.290643 -0.119155 0.232806 -0.240067 0.176324 0.278100 -0.411720 -0.397378 0.024662 -0.476251 -0.451894 0.452574 -0.028910 0.011916 0.660231 0.296752 -0.005154 -0.197429 0.035297 -0.476872 0.504540 0.564643 -0.389765 0.150219 -0.139435 0.223158 -0.013468 0.447231 -0.049384 -0.384339 0.183081 0.018589 0.272105 -0.308444 -0.067168 0.036927 -0.293788 -0.848909 0.022030 0.477989 0.292352 -0.043486 0.084435 0.562147 0.496600 0.289687 -0.067738 0.378984 0.139354 -0.200333 0.246030 0.108967 0.198786 -0.005338 0.233982 -0.168795 -0.491851 0.207906 -0.097803 -0.762877 -0.109028 0.261107 0.469936 -0.106983 -0.086157 -0.131584 -0.094350 0.153393 0.208298 0.111195 0.258944 -0.090052 0.300369 -0.045007 0.006258 -0.548950 -0.071901 -1.521021 -0.454381 -0.265193 0.867992 0.285227 -0.073148 -0.222252 0.486682 -0.048067 0.101804 0.167114 0.567811 -0.239559 -0.287288 -0.187366 -0.007357 0.249095 -0.247835 -0.178271 0.393361 0.029064 -0.379422 -0.036727 0.426662 -0.085128 -0.170911 0.160123 -0.081071 0.433137 -0.692160 -0.122478 -0.613181 -0.004728 0.249589 -0.503605 0.322760 0.069154 0.083891 0.363716 -0.219509 0.032145 0.217517 0.017640 -0.174626 0.081744 -0.669450 0.595783 -0.168006 0.055894 0.219212 0.256134 0.116744 0.168656 0.378636 -0.187928 -0.036302 0.216465 -0.195230 0.097292 -0.183880 -0.298029 0.220287 -0.374095 0.017010 -0.217028 -0.339174 -0.117937 -0.290983 0.073099 0.173972 0.376774 -0.063292 0.348099 0.113639 -0.295003 0.450670 -0.018582 -0.038930 0.071232 0.434405 0.123008 0.036578 -0.267848 0.122217 0.499907 0.292044 -0.370661 -0.084473 -0.103801 0.142928 0.097284 0.221875 0.148540 0.189590 -0.292568 -0.040660 0.023300 0.662235 -0.122417 -0.403632 0.000674 -0.068025 0.011594 -0.478530 0.030508 0.005416 0.005242 -0.237288 -0.038575 0.094807 0.491065 -0.934636 0.535626 -0.175822 -0.108623 0.420675 -0.090965 -0.139469 -0.902518 -0.098683 0.251785 0.637941 0.210491 -0.115188 0.063308 -0.395558 -0.071856 -0.048215 0.201140 -0.154211 0.289743 -0.139260 -0.228133 -0.193665 -0.457355 0.012715 0.015564 -0.148236 0.181106 0.504033 -0.829747 0.336321 -0.118132 -0.261546 -0.067743 0.206916 0.058880 -0.388147 -0.456222 -0.011352 -0.267342 -0.734688 -0.398604 -0.157772 0.103773 -0.180085 -0.343651 0.066606 -0.331099 0.618525 -0.143006 0.341112 0.258406 -0.074950 0.602303 0.781513 -0.344436 -0.011191 -0.047244 0.011654 -0.694305 0.029461 0.228256 -0.212413 0.220569 0.534397 0.162649 0.028277 -0.094330 0.523683 -0.212660 -0.362233 0.450999 -0.216882 0.129734 0.535458 0.482551 -0.516778 -0.144143 -0.430105 -0.145518 0.051515 -0.144321 0.176560 -0.377034 0.013696 0.158579 -0.051435 -0.279623 0.161264 -0.062280 -0.223370 -0.200541 0.686338 0.626760 -0.433900 0.404708 -0.305654 0.220096 -0.466000 -0.191865 -0.151807 0.332980 -0.247712 0.080105 0.142246 0.096088 0.088408 -0.335713 -0.336151 0.115469 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 0.119727 0.475720 0.970756 -0.513432 0.658428 0.218711 0.224075 0.614223 -0.723408 -0.959951 -0.002442 -1.335638 -1.492738 0.907789 -0.223578 -0.624708 1.372802 0.154588 -0.019612 -0.509762 -0.132808 0.005850 1.263629 1.465372 -1.344523 0.414642 -0.068379 0.590960 0.152347 0.871137 0.187083 -1.413287 0.050967 0.821959 0.706972 -0.240177 -0.360170 -0.529308 -0.901187 -2.093872 -0.191347 1.346505 -0.233253 0.058506 0.588163 1.213653 1.668311 0.641652 -0.405570 0.726002 0.586278 0.153619 0.526079 -0.061569 0.169797 -0.690303 0.663803 -0.391880 -0.693892 0.448054 -0.069442 -1.151792 -0.613451 0.955528 1.161725 -0.174867 -0.472300 -0.701219 0.052949 0.307085 0.055376 0.705090 0.981433 0.642679 0.853633 0.622708 -0.041323 -1.284214 0.405384 -2.824074 -1.206244 -0.717101 2.040262 1.086876 -0.546549 -0.983104 1.475769 -0.005269 0.300394 0.916021 1.470946 -0.139179 -0.362998 -0.465376 -0.415322 0.681912 -0.454427 0.097763 0.012120 0.253789 -0.904683 -0.184734 0.304979 -0.597105 -0.659135 0.680492 -0.314289 0.824508 -1.395947 0.409878 -1.355586 0.414886 0.960158 -1.520445 -0.664346 0.061730 0.306316 0.654433 -0.478148 0.358960 0.356784 -0.192627 -0.509806 0.517749 -1.598676 1.352254 0.274529 0.039189 0.352261 0.714638 0.744942 0.226761 0.471139 -0.343555 -0.189046 0.429303 -0.014511 0.024979 -0.359534 0.085918 0.354437 -0.431059 0.365986 -0.249171 -0.659176 -0.651521 -1.506193 -0.493168 0.298537 2.176802 -0.327517 0.892234 0.290451 -0.734781 0.695844 -0.002664 -0.443572 0.202671 0.800161 0.877334 0.011227 -0.410121 0.545974 1.470619 0.472425 -0.854599 0.748244 0.404678 -0.070377 -0.461813 1.048785 0.129956 0.367647 -0.441668 -0.168539 0.627810 1.397619 0.033137 -1.803027 -0.272095 0.580913 0.566031 0.107282 0.433924 0.543580 -0.034018 0.562249 -0.010120 0.604722 1.079323 -2.675254 1.045220 0.482992 -0.261750 0.785167 -0.104508 -0.397691 -0.928437 0.203497 0.753649 1.170789 0.587943 -0.398167 -0.234987 -1.052032 -0.101168 0.345218 0.450291 -0.723426 0.976166 -0.074182 -0.514300 -0.555714 -1.513053 -0.225036 0.356742 -1.121665 0.423165 0.432813 -2.457097 1.035771 -0.089493 -0.582805 -0.740071 -0.420770 0.334536 -1.037634 -1.110798 -0.089983 -0.822027 -2.050744 -0.616676 -0.722077 0.121587 0.110303 0.308660 -0.567995 -0.940255 1.660615 -0.063172 1.004770 0.801953 -0.003012 1.430235 1.253847 -0.631252 -0.046361 -0.876075 1.543505 -0.726399 -0.240708 0.754730 -0.711978 0.176948 1.294517 -0.303597 -0.292291 -0.835709 0.927224 -0.356088 -0.677146 0.493469 -0.488628 0.106083 1.175040 0.728280 -0.708794 -0.100958 -1.383347 -0.296175 -0.245257 -0.514660 0.459503 -0.903180 -0.039614 0.749113 -0.363249 -0.956651 0.408967 -0.318674 -0.662276 -0.116420 1.289571 1.501062 -1.024797 1.334357 -1.096006 0.957016 -1.210085 -0.777595 -0.254154 -0.508746 -0.162211 -0.255696 -0.407754 0.135786 0.376257 -0.619025 -0.867698 0.866834 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -4.435607 -4.539921 -2.082088 -6.626647 3.577570 7.423609 2.383677 -7.132265 -8.177202 -2.042591 4.093026 -11.425960 -4.371708 9.475943 -3.628787 7.916466 11.428721 0.482596 -4.904759 -3.638343 7.887550 1.145780 13.763883 14.319997 -8.465464 -0.252679 -0.663087 4.172808 3.941287 -1.090748 3.302689 -4.585998 3.241258 -9.121547 -0.960233 -3.851412 -1.784645 4.202196 8.910009 -13.884785 -0.280383 2.588391 0.526738 0.209367 0.157800 2.730525 7.094003 7.584482 -0.138423 7.171106 6.143621 -0.595993 4.282409 0.398868 1.821917 0.313147 1.420420 -0.675774 -0.648745 -2.794595 -2.353144 -0.636832 0.959729 9.138622 10.403140 0.548723 -5.149089 3.649843 3.781992 2.256745 3.261698 7.713402 -1.293870 3.352313 5.392648 -11.194119 0.771253 -14.257316 1.943919 -12.193095 -5.987567 1.935778 6.472483 3.616245 5.717543 -0.457771 13.277866 -1.887257 -6.068997 9.417767 10.337759 -8.154777 -1.899003 -1.697732 -3.700954 -0.009531 -3.639061 3.630135 1.602837 5.603439 -8.280153 -5.277643 0.821207 1.412901 -5.254667 -4.912175 -0.629065 6.175993 -8.071389 -5.485754 -2.224861 6.758774 -0.879257 -14.341450 -5.633950 -6.660496 2.889247 0.986320 -7.142422 -7.737121 3.603394 1.774382 -2.135350 -3.870450 -0.599296 5.348840 7.134599 2.152665 -1.373701 5.638677 2.204040 14.840098 1.002074 -5.426164 1.008565 2.261744 -0.980184 4.413849 -4.006185 -2.237402 2.728153 -8.588555 1.335075 5.236827 -4.649159 -2.514503 4.242194 0.793862 -1.517968 29.399709 -1.462494 11.171165 10.201190 -7.079352 2.556221 -4.581313 2.910099 3.962264 4.400399 4.105096 -13.686445 -7.606143 8.402091 12.732850 4.477551 -9.710111 -0.902488 3.816521 2.021397 -2.263956 4.368356 0.918922 1.107348 -5.183506 -0.819484 6.488969 17.363057 -5.683869 0.184451 1.800440 3.604657 -0.620307 -8.798106 -2.195930 -7.255804 -0.288570 5.721863 4.121186 4.442609 10.397836 -11.590161 7.935602 -0.100662 1.247164 7.117730 4.440096 -8.285692 -7.940067 -3.525886 3.339260 7.000789 -1.684930 -0.126497 2.515060 -11.223188 0.566438 3.249332 0.735670 -6.545005 9.285258 1.136727 -3.708463 -2.853154 2.319133 -3.174711 -3.128837 -2.491711 7.993500 -0.315537 -9.919518 6.780662 1.538282 -4.965930 1.211367 -2.958368 9.783445 -7.293071 -7.648706 6.478561 -3.483971 -5.535213 -3.125428 -1.751303 2.799797 4.657565 2.982101 -9.145806 -8.442939 9.056605 -3.666790 11.084749 5.113064 -2.517527 5.069841 -5.252058 -4.091513 -5.973917 -6.356324 0.870006 2.407270 -6.917712 -6.004782 -1.915464 7.354898 7.191276 -0.611037 -6.821442 -0.301036 9.247160 -8.621110 -0.720259 2.501708 5.215419 -7.821607 3.223821 4.450218 -7.469708 3.686975 -6.209479 -2.084057 -6.440712 -5.079268 7.871789 -1.119815 4.044876 -0.573045 -0.761031 1.327817 4.251241 4.147872 0.221406 3.875278 12.057420 7.224978 -0.954368 -2.597800 -12.023827 6.862756 -9.773304 -9.241742 2.221281 1.968571 -6.148303 -2.479220 -0.534443 9.581174 6.836034 -6.518263 -4.887873 4.039030 +PE-benchmarks/ugly-numbers.cpp__main = -0.076719 -0.135317 0.283676 -0.248522 0.277930 -0.193701 0.208656 0.108942 -0.539868 -0.493093 0.273953 -0.798971 -0.589904 0.569757 -0.144287 0.074885 0.688846 0.127020 -0.102134 -0.295651 0.122758 -0.329418 0.725069 0.775173 -0.583592 0.114396 -0.182496 0.318592 0.191991 0.206858 0.173389 -0.429517 0.226357 -0.022672 0.194778 -0.154196 -0.063436 0.027169 -0.118461 -0.900120 -0.023167 0.532104 0.195990 -0.001756 0.099203 0.758640 0.533298 0.433469 -0.159222 0.560727 0.393541 -0.278336 0.283458 0.076629 0.122383 -0.377357 0.255276 -0.147088 -0.465389 0.133279 -0.076124 -0.742910 -0.177627 0.447563 0.687277 -0.139324 -0.157857 -0.083342 0.014895 0.236140 0.308869 0.262061 0.309085 0.026589 0.471692 -0.063656 -0.004062 -0.902525 -0.039101 -1.763964 -0.563933 -0.093813 1.137039 0.320450 -0.119069 -0.246697 0.658587 0.121969 -0.145465 0.429078 0.711850 -0.220513 -0.328554 -0.099301 -0.132276 0.311514 -0.372707 0.080238 0.373663 0.258246 -0.511844 0.031750 0.308229 -0.157292 -0.253517 0.107832 -0.089394 0.436877 -0.766467 -0.033553 -0.498409 0.161730 0.430482 -0.794038 0.113747 -0.035208 0.264865 0.346440 -0.304742 0.185118 0.188395 -0.171385 -0.197769 0.159026 -0.790565 0.605548 0.028723 0.288550 0.188611 0.403534 0.273301 0.310740 0.229827 -0.281545 -0.040071 0.111153 -0.101044 0.360186 -0.189578 -0.248850 0.396982 -0.385910 0.193084 -0.236161 -0.359748 -0.363951 -0.277031 0.104270 0.045495 0.729742 0.008580 0.623408 0.380999 -0.315069 0.348843 -0.170643 0.056588 0.202902 0.426026 0.118378 0.067297 -0.362742 0.356405 0.709780 0.321145 -0.624214 0.035026 0.216510 0.190616 -0.099059 0.333230 0.196798 0.226502 -0.314430 -0.037203 0.307749 0.717693 -0.119197 -0.466216 0.006608 0.129579 0.142906 -0.441625 0.047250 0.109739 0.056464 -0.007922 0.130807 0.179412 0.623236 -1.261344 0.554009 0.079972 0.085510 0.467927 0.044898 -0.457407 -1.035974 -0.073412 0.222641 0.557155 0.252125 -0.123768 0.177468 -0.554119 -0.035868 0.050180 0.068311 -0.227254 0.421768 -0.148343 -0.121746 -0.293711 -0.509383 -0.069860 0.163468 -0.259722 0.369947 0.443744 -1.082333 0.389813 -0.138242 -0.448312 -0.311368 -0.019219 0.287478 -0.524191 -0.515543 0.015009 -0.553557 -1.020747 -0.576863 -0.165721 -0.035853 -0.097831 -0.156225 -0.078519 -0.323569 0.832984 -0.283475 0.499202 0.325309 -0.154041 0.685890 0.607403 -0.374604 -0.105411 -0.111228 0.302197 -0.623448 -0.200308 0.321936 -0.193750 0.229994 0.509829 0.047058 -0.144576 -0.069071 0.533538 -0.325256 -0.493946 0.412221 -0.046080 -0.013167 0.751059 0.459477 -0.579202 0.109207 -0.605681 -0.274372 -0.135240 -0.258683 0.341533 -0.195585 0.128318 0.090298 -0.012359 -0.240173 0.239383 -0.040139 -0.213330 -0.110477 0.825551 0.948784 -0.487406 0.339754 -0.622106 0.352458 -0.606973 -0.506339 0.044317 0.214820 -0.295431 -0.020196 0.016785 0.232493 0.288035 -0.557778 -0.533233 0.469554 +PE-benchmarks/ugly-numbers.cpp__isUgly(int) = -0.332578 -0.657703 0.296852 -0.755983 0.410138 -0.094572 0.258066 -0.475494 -1.153462 -0.409681 0.660464 -1.190952 -0.519700 1.022049 -0.387608 0.417411 1.118955 0.047949 -0.502393 -0.907714 0.585128 -0.248484 1.273801 1.536584 -0.991384 0.098026 -0.072897 0.575420 0.798785 -0.119390 0.480748 -0.292418 0.071060 -0.558402 0.136449 -0.246622 -0.293829 0.310089 0.704638 -1.491218 -0.030717 0.432235 0.371832 0.062883 0.243514 1.005165 0.583074 0.765922 -0.198712 1.084968 1.062178 -0.323845 0.514297 -0.065354 0.244220 -0.412701 1.020530 0.133589 -0.202756 0.097183 -0.192860 -0.274275 0.076805 0.968871 1.084518 -0.169074 -0.541515 0.007242 0.630089 0.601428 0.585255 0.751426 0.039928 0.155540 0.750574 -0.950599 0.169220 -2.486121 0.270264 -2.332197 -0.849955 0.401027 1.455037 -0.057072 0.040673 0.496637 1.323667 0.096706 -0.746428 0.515137 0.860184 -0.174745 -0.290915 0.229701 -0.696432 0.327466 -0.415035 0.423583 0.385855 0.982441 -0.832980 -0.086388 0.376983 -0.158003 -0.527865 0.076011 -0.035048 0.724395 -0.859135 -0.164100 -0.243868 0.861527 0.452524 -1.431648 -0.050742 -0.812595 0.615429 0.276549 -0.844087 -0.044592 0.342094 -0.322328 -0.478134 0.270418 -0.573380 0.697771 0.523146 0.617614 -0.150384 0.478778 0.341536 0.694277 0.133033 -0.791282 0.143811 0.237217 -0.138663 0.718995 -0.511875 -0.261420 0.759892 -0.502593 0.678773 -0.137309 -0.520678 -0.851195 0.658979 0.129598 -0.323523 2.251641 -0.111849 1.331710 1.028366 -0.371416 0.188438 -0.295067 0.430223 0.581963 0.689352 0.198738 -0.548954 -0.728157 0.856480 1.334085 0.507572 -1.328454 -0.319790 0.694903 0.060262 0.093772 0.681584 0.156966 0.138127 -0.434777 -0.116902 0.518362 1.414952 -0.212231 -0.859033 -0.208252 0.657506 0.014804 -0.958007 0.062654 -0.285149 0.192335 0.345827 0.519410 0.489763 1.014962 -2.326447 0.887720 0.128913 0.319036 0.968167 0.328318 -1.001252 -1.672472 -0.296381 0.060756 0.861414 0.178352 -0.446269 0.567146 -1.090209 0.072545 0.108064 -0.050737 -0.747758 0.962213 -0.050154 -0.158392 -0.208358 -0.181437 -0.102974 0.188503 -0.343795 0.831673 0.029452 -1.886676 0.488700 -0.104703 -0.603573 -0.308240 -0.337303 0.742901 -0.606263 -0.581306 0.211608 -0.648385 -0.947902 -0.988100 -0.339530 0.099462 0.137867 0.450990 -0.699801 -0.340855 0.925014 -0.897820 1.201916 0.566872 -0.580509 0.739802 0.009349 -0.329921 -0.555427 0.234933 0.251620 -0.168110 -0.571447 -0.181412 -0.261666 0.432598 0.563098 -0.126144 -0.381836 -0.245969 0.995838 -0.867444 -0.549757 0.247128 0.072381 -0.411790 1.107213 0.457130 -0.901999 0.601028 -0.843205 -0.613336 -0.563173 -0.243651 1.034085 0.145354 0.392520 -0.340658 0.064790 -0.041314 0.463916 0.206961 -0.059185 0.212130 1.160791 1.594322 -0.409538 0.052811 -1.257722 0.820330 -0.901328 -0.882214 0.129462 0.104960 -0.755209 -0.220257 -0.349594 0.851535 0.774019 -0.865831 -0.806961 1.079582 +PE-benchmarks/binomial-coefficient.cpp__main = -0.035519 0.344091 0.720819 -0.500307 0.393852 -0.186050 0.153681 0.260198 -0.470460 -1.216465 0.278461 -1.414427 -1.532802 0.763950 -0.386808 -0.640820 1.019615 -0.221170 -0.016637 -0.730953 0.068453 -0.083845 1.234211 1.350947 -1.418490 0.160817 0.249338 0.695929 0.715706 0.019900 0.764937 -0.993029 0.089911 0.637739 0.729797 0.071029 -0.125432 -0.550721 -0.749855 -1.566960 -0.307407 0.856802 -0.251018 0.166081 0.367211 1.629768 1.389947 0.711328 -0.658147 0.647632 0.968555 0.031624 0.379229 -0.099363 -0.212610 -1.403628 0.406450 -0.253877 -0.440057 0.304724 0.048009 -1.152456 -0.500587 1.093287 1.266866 -0.217360 -0.314379 -0.279864 0.155900 0.433795 0.046486 0.758417 0.976575 0.752030 1.029650 0.116239 -0.132456 -1.985199 0.263392 -3.316707 -1.022004 -0.547742 1.827558 0.575158 -0.641024 -0.503401 1.350366 0.570133 0.041158 1.283293 1.423597 0.073908 -0.323971 -0.350236 -0.486524 0.750479 -0.643491 0.590784 0.139763 0.682437 -0.814719 -0.001086 0.006657 -0.647766 -0.610282 0.308766 -0.365277 0.548134 -1.294524 0.644482 -1.081929 0.188050 1.125313 -1.675540 -0.441262 -0.111291 0.916029 0.428071 -0.286443 0.640803 0.096470 -0.335716 -0.296506 0.591459 -1.547920 1.015089 0.462633 0.363062 0.250820 0.848799 0.842603 0.194302 0.388888 -0.295231 -0.358766 0.148255 -0.140365 0.209118 -0.336176 0.140316 1.126080 -0.308177 0.569724 -0.290274 -0.476304 -1.244643 -0.727064 -0.706807 0.259702 1.919089 -0.078045 0.899938 0.519969 -0.554812 0.195741 -0.293664 -0.306696 0.386460 0.669959 0.751477 0.298254 -0.439905 0.715949 1.366034 0.332001 -0.980160 0.570725 0.776044 0.005794 -0.700002 0.824789 0.225474 0.125797 -0.270138 -0.121015 0.999909 0.796626 0.066231 -1.111602 -0.275741 0.849844 0.620105 -0.045781 0.434777 0.690743 0.070408 0.628816 0.263793 0.536275 0.980612 -2.687799 0.747454 0.840076 0.318696 0.339994 0.047261 -0.687338 -1.487897 0.513630 0.684312 0.558383 0.436849 -0.225748 -0.101477 -1.020601 0.005044 0.383124 0.313599 -0.628150 0.864866 -0.171229 -0.128533 -0.806906 -1.081622 -0.261930 0.634907 -0.801341 0.518296 0.256980 -2.317038 1.033010 -0.452923 -0.730005 -1.093353 -0.710970 0.557301 -1.154183 -0.948787 -0.131960 -1.152123 -2.107265 -0.938607 -0.544169 -0.080737 -0.030705 0.264350 -0.495033 -0.648877 1.529902 -0.391709 0.806953 0.649040 0.125374 1.535718 0.497332 -0.472540 -0.317777 -0.447976 1.381519 -0.593549 -0.559517 0.771187 -0.337603 0.062561 1.105205 -0.614728 -0.330239 -0.122561 0.612652 -0.562735 -1.047731 0.237247 0.120497 -0.062888 1.446296 0.400542 -0.684421 0.127223 -1.465922 -0.418073 -0.292078 -0.739521 0.437036 -0.620130 0.025450 0.669697 -0.219562 -0.661500 0.547957 -0.201426 -0.358086 -0.045446 1.060520 2.036215 -1.073118 0.767007 -1.360710 0.822869 -1.258234 -1.164711 0.102978 -0.341355 0.224335 -0.304055 -0.521350 0.190263 0.569193 -0.885814 -0.981695 1.172117 +PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -3.188623 -3.256631 -1.730668 -4.039709 2.706918 5.294361 1.791650 -5.483593 -5.496561 -0.727900 3.040649 -8.704929 -3.404915 6.482494 -2.674507 5.413327 7.335572 -0.093013 -3.720344 -2.109242 4.574211 1.362346 9.363450 9.615138 -4.903718 -0.397393 -1.157439 2.541999 1.399468 -1.457909 2.538049 -3.079990 2.148824 -5.418127 -0.741934 -1.058833 -1.569001 2.320454 5.881395 -8.825972 -0.669521 2.301671 1.067816 0.044430 0.086067 1.825147 4.431139 5.208463 1.407507 4.644695 3.338941 -0.669947 3.452959 0.262748 1.871254 -0.546667 1.111425 -1.443433 -0.885083 -1.747471 -1.886220 0.366435 0.129272 6.600652 7.407266 0.709786 -3.544995 2.004814 2.187916 1.975793 2.153017 5.380049 -1.409021 2.817356 3.052315 -6.615274 1.312273 -8.155680 1.365886 -6.994355 -4.124356 1.850604 4.182249 3.076068 3.697654 -0.037143 9.364169 -0.447749 -4.594410 5.996681 7.200548 -5.180434 -1.521356 -0.426429 -2.521560 -0.399815 -2.408337 3.015336 1.699390 4.487793 -5.816460 -2.191982 -0.019110 0.774780 -3.284252 -2.929517 0.242029 4.342933 -4.047743 -3.554159 -0.853462 4.851302 -0.489181 -10.091017 -3.813925 -4.122994 0.647044 1.056776 -5.221512 -4.711783 2.835636 0.390570 -1.286178 -2.045557 -1.321876 2.846135 4.449756 1.668969 -1.097338 4.741241 1.715132 9.891975 -0.397386 -3.480059 1.131215 1.188964 -0.311885 3.963183 -1.776687 -1.501692 0.745736 -5.764257 1.418891 3.010967 -3.132217 -1.846453 0.266688 0.863899 -1.337725 18.376744 -1.582627 7.784762 6.696628 -5.105710 1.618384 -3.669734 2.179839 1.981665 3.045950 2.236932 -8.039366 -5.236088 6.382201 9.331756 3.173419 -6.075502 0.373919 3.159327 1.025700 -2.305740 3.458469 1.235452 0.328811 -2.503783 -0.531114 4.370235 11.224966 -3.657958 0.304339 1.423752 2.709244 0.881398 -4.800776 -1.296610 -4.395641 -0.180738 3.146328 3.020803 2.561690 6.801234 -6.836443 5.474257 0.189120 1.286684 5.798254 2.781213 -5.914473 -5.035583 -2.642607 2.305715 4.242936 -1.249959 -1.422944 1.256511 -7.320626 0.451025 2.168832 0.704410 -4.107315 6.233852 -0.036382 -2.233845 -1.918302 1.494093 -1.744680 -1.956481 -2.209076 5.394500 0.226619 -5.760189 4.708570 1.962958 -3.369461 0.077095 -2.103277 6.083962 -4.460152 -5.023668 3.713860 -3.419730 -3.640052 -1.871455 -1.576641 1.475506 3.075690 2.739865 -6.228595 -3.720939 6.577227 -2.264349 7.980327 3.177000 -1.772852 3.062703 -3.307547 -3.985907 -2.761406 -5.336512 0.762438 1.821482 -4.646612 -2.116413 -1.266379 5.074355 4.127158 0.017388 -5.152108 -0.102261 5.845422 -4.876911 -0.650436 1.733256 1.632382 -5.238014 2.130023 2.882036 -4.518990 2.771815 -3.883217 -1.269356 -5.239311 -3.442657 5.033058 -0.508706 2.570895 -1.215547 -0.793302 1.267262 2.514960 2.972284 0.908648 3.057405 8.020161 3.212027 -0.183856 -1.400609 -8.341746 4.624121 -6.175977 -6.110880 1.824637 1.704272 -3.850478 -2.033676 -0.573851 5.481595 4.429349 -5.411812 -4.218814 3.327623 +PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.444021 -0.475063 -0.154973 -0.409908 0.416443 0.173706 0.221706 -0.364058 -0.810828 -0.520716 0.245428 -0.825332 -0.422339 0.796596 -0.232319 0.710890 1.001177 0.221964 -0.130314 -0.377823 0.616259 -0.636158 0.960655 1.197293 -0.589644 0.017499 0.064593 0.265237 -0.037467 0.216664 0.236887 -0.814100 0.273647 -0.712711 0.232186 -0.522469 -0.298533 0.654921 0.708188 -1.308959 -0.109851 0.468470 0.121735 0.088541 0.067689 0.269312 0.458761 0.495058 -0.103197 1.046004 0.462211 -0.091999 0.438165 0.014614 0.283109 0.265638 -0.033724 -0.110837 -0.160635 0.139906 -0.441593 -0.251131 0.184635 0.614977 0.876181 -0.270718 -0.440832 0.146705 0.006496 0.250429 0.333354 0.675994 -0.045885 -0.120240 0.545742 -1.141874 -0.158885 -1.880101 0.206823 -1.826290 -0.620873 0.139613 0.629687 0.418478 0.400586 -0.026238 1.284259 -0.289169 -0.527458 0.672104 0.849720 -0.586988 -0.150350 -0.045941 -0.314566 -0.146666 -0.262188 -0.052188 0.283903 0.365651 -0.661683 -0.587765 0.402101 -0.017042 -0.374522 -0.668523 -0.163664 0.715096 -0.886234 -0.668636 -0.601809 0.575586 -0.023871 -1.015793 0.056192 -0.477430 0.039082 0.371887 -0.814628 -0.552231 0.518636 0.079957 -0.233291 -0.300810 0.017472 0.606571 0.378891 0.155060 -0.045485 0.431272 0.003041 1.111993 0.369873 -0.487082 0.019604 0.412133 -0.114463 0.431300 -0.397508 -0.273580 0.305535 -0.649933 -0.014442 0.043414 -0.469827 -0.246603 0.558160 -0.168697 -0.207404 2.063006 -0.290608 0.852617 0.722784 -0.574930 0.587916 -0.218823 0.358629 0.345206 0.729016 0.322802 -0.925559 -0.637422 0.743754 1.111866 0.396593 -0.810155 -0.696524 0.276635 0.416026 0.084423 0.450320 0.099404 0.143926 -0.410219 -0.007461 0.063089 1.532035 -0.493409 0.073686 0.054527 0.584000 -0.166782 -1.141087 -0.133330 -1.164199 -0.139469 0.200891 0.208184 0.184776 0.893401 -1.575240 0.698983 -0.403394 0.081795 0.519618 0.412328 -0.469770 -1.718893 -0.401149 0.165619 0.794213 -0.022075 0.469731 0.213278 -0.899795 0.113394 0.031249 0.281121 -0.710202 0.901342 -0.234655 -0.465200 -0.091046 0.211526 -0.385730 -0.565324 -0.125392 0.585409 0.720484 -1.041489 0.432646 0.173081 -0.320716 0.233241 0.299719 0.932985 -0.474506 -0.776922 0.564019 -0.425537 -0.444811 -0.247642 -0.280840 0.220668 0.023278 -0.279493 -0.372627 -0.706357 0.797329 -0.257545 0.996854 0.393511 -0.373624 0.690802 -0.143506 -0.576960 -0.313678 -0.338324 0.009708 -0.303060 -0.147084 -0.710156 -0.124709 0.553787 0.664384 0.373210 -0.392462 -0.043787 0.963976 -0.748563 0.195801 0.422031 0.288876 -0.280721 0.458426 0.516336 -0.663397 0.164350 -0.667344 0.205981 -0.518623 -0.120447 0.669842 -0.335729 0.119392 -0.140375 -0.120623 -0.012529 0.329783 0.578063 -0.007310 0.027671 1.081673 0.769657 -0.187962 -0.090971 -0.778773 0.326254 -0.678328 -0.517603 -0.245235 0.629438 -0.623577 -0.240845 0.008857 0.669957 0.536773 -0.340144 -0.441294 0.217681 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.173122 0.437486 0.526550 -0.069031 0.440129 0.045907 0.184808 0.612930 -0.404775 -0.593301 -0.180539 -0.752975 -0.921753 0.536001 0.049345 -0.338065 0.870407 0.259158 0.093275 -0.135482 -0.280910 -0.197252 0.631945 0.723923 -0.559464 0.378438 -0.229680 0.128182 -0.351116 0.861969 -0.103774 -1.037642 0.103733 0.550553 0.433546 -0.178804 -0.318359 -0.319086 -0.707084 -1.284471 -0.071421 1.078787 0.086560 -0.051476 0.342908 0.530302 1.088041 0.269603 -0.032506 0.417723 -0.025495 -0.020090 0.413387 0.040772 0.319336 -0.094552 0.318518 -0.456816 -0.674305 0.379989 -0.136431 -0.865756 -0.482974 0.346269 0.484930 -0.114927 -0.307967 -0.498078 -0.231314 0.144682 -0.035471 0.312752 0.660949 0.208411 0.375963 0.661637 -0.067430 -0.179750 0.135040 -1.628589 -0.759410 -0.526560 1.237007 0.924899 -0.270266 -0.727170 0.789156 -0.230871 0.347003 0.242958 0.906838 -0.177081 -0.278873 -0.296487 0.005717 0.318771 -0.175888 -0.247933 0.126266 -0.148855 -0.545037 -0.085363 0.405541 -0.331180 -0.313390 0.503346 -0.161507 0.535604 -0.914667 0.134825 -1.035235 0.057075 0.504381 -0.678180 -0.134083 0.404206 -0.269577 0.615187 -0.351585 0.102217 0.392399 -0.087055 -0.330448 0.219842 -0.993612 0.899463 -0.166458 -0.093309 0.368428 0.444730 0.396425 0.093981 0.416759 -0.097765 -0.020780 0.310746 0.051150 -0.056808 -0.025282 -0.136796 -0.172825 -0.338871 0.085450 -0.241441 -0.450925 -0.095986 -1.357063 -0.204657 0.209373 0.627294 -0.322292 0.396021 -0.064178 -0.479388 0.650765 0.014080 -0.394190 -0.138528 0.548973 0.579655 0.266237 -0.167031 0.253745 0.795488 0.307508 -0.285389 0.463437 0.000172 0.063951 -0.099615 0.649190 0.103817 0.445886 -0.346861 -0.085855 0.101739 0.965181 -0.056997 -1.047418 -0.082082 0.053122 0.432771 0.017029 0.243088 0.236203 -0.103875 0.056396 -0.161525 0.191356 0.593320 -1.194766 0.727614 -0.021095 -0.414181 0.562644 -0.175884 -0.014925 -0.517065 -0.058320 0.517361 0.886291 0.435223 -0.238361 -0.333693 -0.515483 -0.129158 0.084612 0.345220 -0.344793 0.538482 -0.188043 -0.443838 -0.223652 -1.028689 -0.039387 0.074774 -0.633312 0.124511 0.689780 -1.237813 0.599274 0.068832 -0.251400 -0.326046 0.116411 -0.003056 -0.448099 -0.691383 -0.107316 -0.497757 -1.257699 -0.158041 -0.483163 0.040544 0.025210 -0.173321 -0.051572 -0.487311 1.053929 0.205859 0.594770 0.471686 0.026167 0.818995 1.264112 -0.553211 0.280625 -0.581985 0.674526 -0.803449 0.135136 0.503824 -0.526252 0.139981 0.791758 0.071406 -0.079082 -0.672941 0.550969 -0.057539 -0.277019 0.519327 -0.659767 0.235096 0.592995 0.626045 -0.353594 -0.224066 -0.747431 -0.034432 -0.112188 -0.189638 0.037868 -0.742938 -0.206708 0.519430 -0.348213 -0.673727 0.102940 -0.259510 -0.527966 -0.254732 0.764143 0.467603 -0.663433 1.013583 -0.389937 0.475025 -0.598074 -0.204814 -0.302001 -0.004148 -0.212042 -0.152700 -0.041765 -0.143542 0.035187 -0.355306 -0.498056 0.247066 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -1.386572 -0.738537 0.164723 -1.952620 1.716974 1.992456 1.071717 -1.560713 -3.001940 -2.081620 1.363082 -5.119053 -3.504808 3.979161 -1.388055 1.842161 5.055932 0.169044 -1.361520 -1.891567 2.698611 -0.133882 5.893816 6.032237 -4.285370 0.142500 0.244654 1.791252 1.794941 -0.057011 1.613302 -2.877786 1.593174 -2.275126 0.740038 -1.215295 -0.642252 0.476138 1.751399 -6.394424 -0.614652 2.129797 0.160636 0.014405 0.328190 2.666865 4.043047 3.340562 -0.646580 2.984747 2.766592 -0.226423 1.856993 0.214060 0.436802 -1.151401 0.694927 -0.764343 -1.240847 -0.274068 -0.780558 -2.209754 -0.435220 4.221212 5.144333 -0.170605 -1.729726 1.015664 0.795827 1.212143 1.137356 3.164885 1.332091 1.675933 3.267813 -3.294037 -0.280696 -6.920891 0.414735 -8.424850 -3.220325 -0.617889 3.990759 1.292333 1.427881 -0.623624 5.887413 -0.032058 -1.437422 4.331881 5.241790 -2.952416 -1.247060 -1.291237 -1.543680 1.024450 -2.411855 1.655040 1.027276 1.754235 -3.693650 -2.370228 0.777753 -0.034355 -2.346984 -1.659001 -0.520409 2.849020 -3.869989 -1.603793 -2.786958 1.658687 0.598902 -6.319872 -1.864968 -1.852904 1.743364 1.462278 -2.359589 -2.047339 1.342382 0.445601 -0.891752 -1.337442 -1.589511 2.868740 2.458518 1.102209 0.190516 2.675844 1.704529 5.116510 1.553417 -1.865712 -0.187855 0.952193 -0.858287 1.824680 -1.815031 -0.910240 2.446935 -2.915959 0.467654 1.307369 -2.225990 -2.165011 0.693226 -0.823918 0.222533 10.274612 -0.432942 3.996918 3.437163 -3.312584 1.390388 -1.968578 0.301839 1.567817 2.702860 2.215111 -3.955172 -3.074931 3.293773 5.709362 2.028434 -4.169317 0.013094 1.685526 1.037324 -1.600989 2.230591 1.020442 0.708935 -2.168069 -0.319934 2.955873 6.588292 -2.307069 -1.179483 0.497318 2.168708 0.496243 -3.367374 -0.287079 -1.659852 -0.156652 1.872724 1.319968 1.737173 4.553163 -6.492612 3.535485 0.105722 0.456498 2.703933 1.316088 -3.265637 -4.092225 -0.093037 2.103703 3.062117 0.491977 -0.094665 0.432681 -4.767703 0.123219 1.046552 1.020736 -2.440864 3.934591 -0.359049 -1.550020 -2.227405 -0.451598 -0.983048 -0.902623 -1.420163 2.973328 1.260234 -5.525426 3.610898 -0.028863 -2.354710 -0.659538 -1.330629 3.655372 -3.844417 -3.996303 1.974622 -2.666022 -3.972763 -2.078752 -1.224456 1.083147 1.442192 0.753419 -3.121553 -3.515030 4.912981 -1.119177 4.388001 2.351822 -0.461926 3.758237 -0.536748 -2.443540 -2.290183 -2.430965 1.331054 -0.397797 -2.661178 -1.349131 -1.129796 2.790215 4.043348 -0.681032 -2.273373 -0.683521 3.819756 -4.105433 -1.678000 1.663683 2.216607 -2.189636 2.766703 2.260022 -3.336403 0.719727 -3.404873 -0.764471 -2.099801 -2.633488 2.729958 -1.828686 1.110237 0.846256 -0.635535 -0.348397 1.836146 1.087100 -0.284932 0.488440 5.092971 4.851743 -2.143390 0.194469 -5.176917 2.867259 -4.756145 -4.191322 0.809980 0.560175 -1.914986 -0.952303 -0.152924 2.792345 2.617294 -3.013124 -3.026012 1.944546 +PE-benchmarks/boyer-moore-algorithm.cpp__main = -0.861014 0.643618 3.017241 -2.114595 3.873414 0.569418 1.528347 1.625808 -2.317726 -3.583114 -0.684895 -1.750624 -6.536762 3.471560 -1.062699 0.536167 3.801433 -0.298254 0.273172 -3.308165 3.720726 -4.571377 5.495817 3.592884 -6.990016 0.751437 0.937425 4.623913 1.814045 4.594641 0.879994 -2.062394 -0.124352 0.110919 5.658912 -2.308653 0.278819 0.116472 -3.531076 -7.905850 -2.005369 4.865754 -0.308348 1.574607 1.270767 6.396732 4.339990 3.713789 -3.319886 3.548082 3.687664 -1.508272 3.226891 0.475266 -0.898801 -0.618495 1.774243 -0.265993 -2.670377 1.511001 -0.980435 -7.139110 1.611598 3.757282 6.447064 -3.167791 -0.939508 1.242782 -0.879438 1.874674 0.745283 4.046076 1.724464 -0.480619 6.434465 -2.396441 -0.981486 -7.507094 1.378329 -12.777656 -4.767124 -5.266995 4.485463 2.692403 1.056150 -2.706493 8.411615 0.716232 0.089915 4.110186 4.176430 -2.222773 -0.288574 -4.956498 -1.426405 0.912501 -3.227261 -2.203464 2.646223 1.601240 -3.122739 -1.434314 1.571052 -1.428314 -2.720036 -1.474140 -4.626336 4.889129 -5.724955 -1.941829 -7.294091 1.606641 0.306936 -6.727495 1.531962 -1.281645 1.800432 1.033711 2.245751 1.076803 1.349162 2.751041 -1.193687 -0.694197 -4.437973 6.742627 2.756227 -1.716030 1.969847 3.597849 -0.542555 1.276598 6.231850 -0.151934 -4.908446 3.829523 -2.199247 0.670263 -2.146021 1.176189 5.008481 -3.414443 -1.802988 -0.873472 -0.679524 -1.235114 -0.930535 -3.417998 2.888169 8.923564 -0.754302 2.034540 0.299386 -2.869029 5.699212 1.420959 -0.279024 3.911527 4.064683 1.204531 -4.388266 -2.967359 2.148382 4.681366 1.111578 -4.760889 -1.604650 -0.054799 1.255508 -1.452004 1.638281 2.522193 0.134931 -1.341565 0.042278 -1.522516 6.634964 -2.537742 -4.192692 1.629001 2.302602 -3.181828 -5.525198 -0.438474 -1.518920 -3.182693 -0.373731 -0.015232 1.265878 4.513703 -8.438437 3.865294 -0.328240 -1.186579 3.618788 -2.971928 1.027398 -9.059872 0.159557 1.930474 4.035976 0.189143 -1.190340 -0.819365 -5.078501 2.715612 -0.000416 2.675906 -2.198739 4.546959 -3.054778 -1.590145 -3.055592 -4.088188 -2.186204 0.536186 -1.643927 0.773298 2.061520 -7.619118 3.364244 -3.423268 -2.645225 1.305601 2.176574 3.135588 -2.791525 -5.000223 2.042598 -0.972750 -6.203972 -5.829340 -1.433159 2.142931 -0.536164 -3.492152 -2.576344 -6.454823 4.834639 -2.534178 2.690056 2.475619 0.840739 7.238141 5.315200 -4.776578 -2.909215 -2.620733 1.010749 -2.417784 -0.181454 -1.633990 -1.103066 2.200369 5.264110 0.580260 2.025204 -1.609544 6.595746 -3.742270 -3.827542 2.947291 -0.516528 0.360349 4.902703 3.661035 -2.723110 -2.977127 -5.566895 1.004034 -0.235582 -1.730590 2.773489 -5.006498 -0.356692 2.565048 0.125139 -2.594332 2.058364 0.908777 -1.590631 -4.344505 8.628806 7.706047 -5.212664 1.841204 -3.259723 3.264233 -4.267324 -0.515126 -2.924760 1.237344 1.666528 1.599724 1.698380 2.114557 2.600292 -3.809644 -2.170655 -2.029814 +PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.757498 -3.128746 -1.508515 -4.543952 3.050993 3.631889 1.844613 -3.963557 -6.059234 -3.471565 3.459452 -9.000007 -4.915714 6.400670 -2.967861 3.977282 7.345546 -0.801198 -2.790748 -3.518162 5.203367 0.708935 9.738297 9.830796 -7.024870 0.027917 -1.099775 2.704143 3.217545 -0.908342 4.810688 -4.804484 2.384492 -3.962919 1.160174 -1.411915 -1.766119 2.320203 4.238396 -9.685405 -1.141060 4.560999 0.510206 0.845387 1.029914 4.509760 5.156816 5.273277 -0.883538 6.428257 5.070088 0.121460 3.700569 0.010832 0.808225 -2.405787 0.489619 -2.108993 -0.912372 -0.974840 -2.227221 -1.347749 0.068932 7.030354 8.245788 -0.922914 -3.606905 1.678105 1.996820 2.565430 3.023029 6.364899 0.860676 1.869347 5.439445 -5.678374 -0.215432 -11.127056 1.957962 -13.493199 -4.669307 0.920083 6.830630 3.392976 2.264033 -1.513882 10.453928 -0.357431 -4.575523 8.329166 7.177345 -3.489876 -1.115617 -1.023207 -3.096816 0.157741 -3.098270 2.611702 1.507083 4.964181 -5.959545 -2.048856 -0.465531 -0.675251 -3.730495 -3.533580 -0.985417 4.298202 -6.645526 -2.043131 -2.395307 5.725109 1.237095 -10.451940 -4.379343 -4.609825 1.768655 1.097736 -4.514624 -1.945091 2.627449 -0.363133 -1.666101 -0.968080 -2.468991 3.939366 4.859920 2.833191 -0.865221 5.372607 1.748809 8.792297 0.685249 -3.276797 -0.017581 1.615225 0.572668 4.399565 -2.077873 -0.780870 4.256429 -4.636616 0.966492 1.337501 -2.848817 -3.902115 0.645573 -1.198175 -1.216284 18.625937 -1.365978 8.049601 7.134325 -4.495393 0.815865 -2.758492 2.507046 3.343192 4.117063 2.698601 -5.883331 -5.333780 6.676600 9.398701 2.780076 -6.899658 0.726578 4.660873 1.725996 -2.359948 3.527414 0.880283 1.096347 -3.341339 -0.283784 3.808067 10.842688 -2.889354 0.505659 0.617850 5.358066 0.325769 -3.793270 -0.607665 -3.819366 -0.157480 4.167637 2.867966 2.861118 7.198541 -10.020214 5.502376 0.647055 2.376054 3.826322 3.025838 -5.526468 -8.227506 -2.302801 1.719235 4.354809 -0.695147 0.476503 1.642676 -7.830085 1.307079 1.836882 0.905426 -4.787200 6.752926 -0.518753 -1.481417 -2.342624 0.435450 -2.446273 -0.315884 -2.511919 5.266448 1.922591 -7.885541 4.407286 0.563448 -3.941692 -1.544931 -1.337443 7.196988 -5.043121 -5.349628 3.448719 -4.866150 -7.138936 -3.406725 -2.029386 1.178018 2.309708 2.030120 -6.186228 -4.896769 8.673120 -2.960814 8.188658 3.887337 -2.078741 5.521946 -3.446097 -3.687048 -3.544783 -5.359662 2.303136 0.473619 -4.187290 -1.212583 -1.360939 3.993344 4.871660 -0.553147 -4.851772 0.226630 6.534169 -5.749718 -1.289652 1.994360 3.170899 -4.225571 5.214362 3.135734 -4.793868 2.822860 -5.853362 -0.730045 -4.705475 -2.880981 6.145736 -1.176873 2.463752 -0.584330 -0.297992 -0.116949 2.794828 2.717971 -0.470648 1.739418 8.924089 6.937364 -1.747105 -0.744357 -8.567718 4.795155 -6.592936 -6.457710 0.633177 0.769606 -3.142134 -1.771098 -1.565955 6.032543 6.117070 -5.305317 -5.065125 4.871710 +PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -1.138426 -1.152429 -0.263080 -1.860537 0.853254 1.406554 0.605946 -1.403871 -2.441120 -0.994814 0.775930 -2.711393 -1.156394 2.641882 -0.885563 1.981353 3.332527 0.579074 -1.206491 -0.911202 2.277669 -0.920739 3.403449 3.901423 -2.292948 -0.012011 0.089981 1.499416 0.965891 0.502489 0.848985 -1.257234 0.619793 -2.327923 0.456438 -1.741532 -0.494734 1.432061 1.694870 -4.287216 -0.129772 1.187023 0.607111 -0.041999 0.080022 0.783850 1.852899 2.073356 -0.252647 1.947122 1.617436 -0.045357 1.221606 0.127164 0.654891 0.562495 0.351917 -0.288449 -0.287573 -0.230929 -0.686891 -0.998508 0.778525 2.620325 3.087675 -0.168231 -1.132114 0.760366 0.720529 0.659201 1.049777 1.938663 -0.633840 0.342439 1.524987 -3.554367 0.504959 -4.376341 0.736274 -4.527095 -1.656708 0.116156 1.889066 1.255330 1.428683 -0.099816 3.790908 -0.842552 -1.229210 2.674434 2.681926 -1.995639 -0.560503 -0.845785 -1.260357 0.254187 -1.158638 0.108621 0.693076 1.455729 -2.105486 -1.315764 0.614195 0.534305 -1.470609 -1.352515 -0.197076 2.080446 -2.563546 -1.903111 -1.089116 1.722695 -0.385153 -3.841954 -0.712078 -2.104987 0.586780 0.368469 -1.840221 -2.039807 1.056563 0.748032 -0.459134 -0.928969 -0.918558 1.706335 1.267319 0.382570 -0.326087 1.241242 0.296919 3.458247 0.864810 -1.487911 0.122250 1.083551 -0.797720 0.980461 -1.354761 -0.895354 1.180128 -2.413219 -0.540979 0.979732 -1.427804 -0.606315 1.335531 -0.081097 -0.059787 8.242577 -0.462145 2.722653 2.467570 -2.067653 1.266003 -0.573993 0.694821 1.247777 1.661733 1.023781 -3.934513 -2.083626 1.857080 3.595102 1.420879 -2.268774 -0.991730 0.606399 0.451717 0.016538 1.082239 0.175535 -0.015131 -1.476266 -0.320203 1.079692 4.622141 -1.266118 0.297523 0.331784 1.146540 -1.026241 -3.077310 -0.413472 -2.481693 -0.056372 0.526385 0.513184 1.161190 2.864542 -3.673815 2.454114 -0.739043 0.232074 1.924304 0.691673 -1.747349 -3.795266 -0.901943 0.918348 2.398789 -0.720356 0.202464 0.765732 -3.064022 0.108636 0.519537 0.672361 -1.839029 2.543350 -0.007242 -1.128054 -0.871775 0.745383 -0.849012 -1.123071 -0.486286 1.944469 0.444708 -2.361638 1.913871 0.242937 -1.124066 0.649425 -0.059584 2.219356 -2.255837 -2.365372 1.666504 -0.513105 -1.358054 -1.057097 -0.701394 1.368917 0.745066 -0.412048 -2.090237 -2.366837 2.262491 -1.196893 2.885283 1.376150 -0.759222 1.863763 -0.374814 -1.123150 -1.616469 -1.337784 -0.535260 -0.082286 -1.322029 -1.883524 -0.625517 2.081339 2.329641 0.222437 -1.316853 0.469150 3.027534 -1.966473 -0.463480 0.851133 0.698766 -1.672073 1.059244 1.336941 -2.414184 0.466831 -1.886753 -0.111769 -1.154310 -1.136387 2.334347 -0.776284 0.984870 -0.011545 -0.143271 0.134064 1.165302 1.375037 0.115486 0.723358 3.575979 1.961733 -0.282447 -0.495915 -2.937775 1.463233 -2.754559 -1.951069 -0.190298 1.347173 -1.456939 -0.322552 0.209906 2.378277 1.856045 -1.343742 -1.108805 0.700103 +PE-benchmarks/optimized-naive-algorithm.cpp__main = -0.861014 0.643618 3.017241 -2.114595 3.873414 0.569418 1.528347 1.625808 -2.317726 -3.583114 -0.684895 -1.750624 -6.536762 3.471560 -1.062699 0.536167 3.801433 -0.298254 0.273172 -3.308165 3.720726 -4.571377 5.495817 3.592884 -6.990016 0.751437 0.937425 4.623913 1.814045 4.594641 0.879994 -2.062394 -0.124352 0.110919 5.658912 -2.308653 0.278819 0.116472 -3.531076 -7.905850 -2.005369 4.865754 -0.308348 1.574607 1.270767 6.396732 4.339990 3.713789 -3.319886 3.548082 3.687664 -1.508272 3.226891 0.475266 -0.898801 -0.618495 1.774243 -0.265993 -2.670377 1.511001 -0.980435 -7.139110 1.611598 3.757282 6.447064 -3.167791 -0.939508 1.242782 -0.879438 1.874674 0.745283 4.046076 1.724464 -0.480619 6.434465 -2.396441 -0.981486 -7.507094 1.378329 -12.777656 -4.767124 -5.266995 4.485463 2.692403 1.056150 -2.706493 8.411615 0.716232 0.089915 4.110186 4.176430 -2.222773 -0.288574 -4.956498 -1.426405 0.912501 -3.227261 -2.203464 2.646223 1.601240 -3.122739 -1.434314 1.571052 -1.428314 -2.720036 -1.474140 -4.626336 4.889129 -5.724955 -1.941829 -7.294091 1.606641 0.306936 -6.727495 1.531962 -1.281645 1.800432 1.033711 2.245751 1.076803 1.349162 2.751041 -1.193687 -0.694197 -4.437973 6.742627 2.756227 -1.716030 1.969847 3.597849 -0.542555 1.276598 6.231850 -0.151934 -4.908446 3.829523 -2.199247 0.670263 -2.146021 1.176189 5.008481 -3.414443 -1.802988 -0.873472 -0.679524 -1.235114 -0.930535 -3.417998 2.888169 8.923564 -0.754302 2.034540 0.299386 -2.869029 5.699212 1.420959 -0.279024 3.911527 4.064683 1.204531 -4.388266 -2.967359 2.148382 4.681366 1.111578 -4.760889 -1.604650 -0.054799 1.255508 -1.452004 1.638281 2.522193 0.134931 -1.341565 0.042278 -1.522516 6.634964 -2.537742 -4.192692 1.629001 2.302602 -3.181828 -5.525198 -0.438474 -1.518920 -3.182693 -0.373731 -0.015232 1.265878 4.513703 -8.438437 3.865294 -0.328240 -1.186579 3.618788 -2.971928 1.027398 -9.059872 0.159557 1.930474 4.035976 0.189143 -1.190340 -0.819365 -5.078501 2.715612 -0.000416 2.675906 -2.198739 4.546959 -3.054778 -1.590145 -3.055592 -4.088188 -2.186204 0.536186 -1.643927 0.773298 2.061520 -7.619118 3.364244 -3.423268 -2.645225 1.305601 2.176574 3.135588 -2.791525 -5.000223 2.042598 -0.972750 -6.203972 -5.829340 -1.433159 2.142931 -0.536164 -3.492152 -2.576344 -6.454823 4.834639 -2.534178 2.690056 2.475619 0.840739 7.238141 5.315200 -4.776578 -2.909215 -2.620733 1.010749 -2.417784 -0.181454 -1.633990 -1.103066 2.200369 5.264110 0.580260 2.025204 -1.609544 6.595746 -3.742270 -3.827542 2.947291 -0.516528 0.360349 4.902703 3.661035 -2.723110 -2.977127 -5.566895 1.004034 -0.235582 -1.730590 2.773489 -5.006498 -0.356692 2.565048 0.125139 -2.594332 2.058364 0.908777 -1.590631 -4.344505 8.628806 7.706047 -5.212664 1.841204 -3.259723 3.264233 -4.267324 -0.515126 -2.924760 1.237344 1.666528 1.599724 1.698380 2.114557 2.600292 -3.809644 -2.170655 -2.029814 +PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.205743 -3.032020 -1.460258 -3.173748 1.051112 1.556928 0.986342 -2.662098 -4.411240 -1.938153 2.286421 -5.580337 -2.195390 4.472492 -1.819855 3.152991 5.225200 0.377709 -2.048021 -2.127958 3.867629 -0.411696 5.861071 6.737200 -3.983074 -0.459388 -0.532749 2.202290 2.336041 -1.086161 3.351553 -2.598945 1.055538 -3.475239 0.616659 -1.964345 -0.685208 2.914410 3.571512 -6.560532 -0.385811 2.662986 1.597160 0.105932 0.290266 1.978841 2.272139 3.657532 -0.691308 3.954382 3.547078 0.095065 2.149973 -0.036010 0.431333 -0.783158 -0.322768 -0.929250 -0.216913 -0.468091 -1.103175 -0.556029 0.874097 4.623150 5.622890 -0.364281 -2.200360 1.225432 1.756909 1.666429 2.284632 3.612020 -0.389871 0.541758 3.108686 -4.973303 -0.179898 -8.809511 1.714549 -8.635243 -2.566827 1.185363 4.264905 1.962652 1.569209 -0.259874 6.446247 -0.676247 -3.196610 5.899697 4.324650 -2.210856 -1.014075 -0.940614 -2.562735 0.670564 -2.218149 1.318953 1.236927 3.783997 -3.682609 -2.039949 -0.205150 0.216636 -2.426974 -2.738168 -0.221422 2.849453 -3.864213 -2.207879 -1.106457 3.992414 0.507318 -6.412297 -2.206587 -4.143532 0.577295 0.502525 -3.460389 -1.876116 1.539330 -0.381399 -1.078823 -0.749193 -1.751023 2.033684 2.479516 1.516829 -0.991101 2.770293 0.711790 5.720888 -0.303684 -3.011858 0.336690 1.571233 -0.460085 2.565057 -2.563292 -1.352716 3.568157 -3.247514 0.025779 0.584181 -2.217319 -2.683651 2.114179 -0.497565 -0.775270 12.554390 -0.350734 4.967015 5.067338 -2.672304 1.231946 -1.368280 2.041230 2.348864 2.868659 1.287822 -4.394046 -3.711909 3.789574 6.164051 2.216484 -3.704050 -1.225084 2.662246 1.239611 -0.701035 2.125135 0.418815 -0.190872 -2.195160 -0.322402 2.411230 6.687797 -1.535825 1.804414 0.090593 4.262048 -0.866328 -3.724090 -0.403383 -3.994639 0.087236 1.807521 1.789341 2.227894 4.784043 -6.820097 3.718215 0.112789 2.179893 1.985758 1.871492 -3.925807 -6.828015 -1.446542 0.791236 3.375669 -0.982010 1.035371 1.822209 -5.267137 0.511152 0.949649 0.672927 -3.142424 4.378440 -0.617145 -0.783611 -1.356449 1.702808 -2.127723 -1.229636 -0.885931 3.703567 1.717400 -3.583874 2.714286 0.137634 -2.127060 -0.388674 -0.675621 4.390143 -3.851369 -3.391215 2.509434 -2.106602 -3.210161 -2.120596 -1.140976 1.556327 1.054500 0.579161 -3.448602 -3.215876 4.899974 -2.229662 5.306615 2.195340 -2.064829 2.577187 -2.080501 -1.710882 -2.528659 -2.412374 -0.132620 0.298632 -2.630934 -1.897150 -0.562919 2.955263 3.107475 -0.122338 -3.339542 1.075004 4.745550 -3.126025 -0.901947 0.931233 1.377007 -2.594253 2.904547 1.782532 -4.269181 1.961674 -3.785531 0.103946 -2.464522 -1.797253 4.282287 -0.516107 1.929469 -0.785799 -0.151587 0.633504 1.979818 2.733506 -0.228635 1.633638 6.070752 3.407889 -0.083797 -0.967638 -5.798620 2.422496 -4.379922 -3.895330 -0.078318 1.257646 -2.817555 -0.749891 -0.616140 4.173631 3.869173 -2.347786 -3.159554 2.839941 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 0.063619 0.369438 0.549029 -0.165351 0.411209 -0.082035 0.204243 0.425304 -0.419839 -0.790770 0.004005 -1.019276 -1.118690 0.642523 -0.074063 -0.314444 0.926005 0.097044 0.034593 -0.316299 -0.106015 -0.304128 0.852682 0.932248 -0.800423 0.288585 -0.062356 0.297145 -0.003118 0.548992 0.125771 -0.933337 0.154979 0.426061 0.523366 -0.088651 -0.245574 -0.362222 -0.622439 -1.336843 -0.149566 0.975833 0.073627 -0.002377 0.281429 0.928064 1.167175 0.440496 -0.208704 0.488180 0.272973 -0.167869 0.439460 0.026850 0.197044 -0.495782 0.371934 -0.305990 -0.647018 0.331241 -0.109984 -1.027753 -0.449072 0.583725 0.764744 -0.153799 -0.302875 -0.322547 -0.128221 0.240292 -0.000664 0.460755 0.746010 0.343313 0.613614 0.337515 -0.043403 -0.807538 0.088850 -2.246495 -0.848358 -0.492709 1.362553 0.703597 -0.288490 -0.609589 0.974571 0.055269 0.189248 0.504260 1.127250 -0.200666 -0.324985 -0.297829 -0.107820 0.411853 -0.365348 0.029823 0.293757 0.069011 -0.665516 -0.057711 0.361423 -0.369966 -0.393074 0.384361 -0.217952 0.553347 -1.012101 0.196335 -1.059535 -0.029090 0.643744 -1.036961 -0.052954 0.264741 0.092225 0.586328 -0.359420 0.183734 0.326945 -0.137656 -0.294595 0.236883 -1.138161 0.976397 0.020702 0.104275 0.354737 0.594621 0.534201 0.195406 0.489008 -0.158670 -0.118078 0.214824 -0.101550 0.102690 -0.101112 -0.143638 0.314634 -0.384783 0.164257 -0.247148 -0.468943 -0.390203 -0.968841 -0.293644 0.209435 0.987065 -0.236573 0.584734 0.143341 -0.534418 0.590628 -0.136375 -0.344688 0.016117 0.607047 0.620259 0.170573 -0.297878 0.465467 0.997264 0.333511 -0.596279 0.389647 0.226965 0.118996 -0.285384 0.662163 0.191771 0.380042 -0.358974 -0.084674 0.390335 0.972255 -0.148760 -1.008396 -0.075160 0.189327 0.485051 -0.243720 0.248511 0.295278 -0.057901 0.080473 -0.000484 0.258656 0.745764 -1.615190 0.760167 0.166449 -0.207626 0.615339 -0.111980 -0.286179 -1.007481 0.101215 0.588594 0.753427 0.448645 -0.265651 -0.254016 -0.699383 -0.080784 0.129399 0.320941 -0.405692 0.654987 -0.255131 -0.338054 -0.443136 -1.007571 -0.082032 0.182972 -0.600795 0.286836 0.617898 -1.515512 0.762228 -0.087928 -0.430707 -0.537278 -0.087947 0.163002 -0.675755 -0.805902 -0.096166 -0.766265 -1.494321 -0.476714 -0.464160 -0.039612 -0.007720 -0.186944 -0.164032 -0.554574 1.211891 -0.052459 0.690878 0.511355 0.074582 1.063058 1.117144 -0.590199 0.052521 -0.439778 0.711851 -0.794464 -0.130527 0.458289 -0.428434 0.185901 0.881462 -0.112220 -0.091178 -0.454418 0.567551 -0.307387 -0.570198 0.491100 -0.360750 0.088279 0.841330 0.588432 -0.474534 -0.102626 -0.952987 -0.239111 -0.215916 -0.402748 0.139492 -0.692891 -0.145498 0.533065 -0.323384 -0.592329 0.235674 -0.206702 -0.432698 -0.219099 0.893822 1.033303 -0.840520 0.819531 -0.730479 0.572385 -0.833233 -0.549936 -0.091064 0.062320 -0.120029 -0.215772 -0.039303 -0.029556 0.215079 -0.651555 -0.669646 0.488761 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.444021 -0.475063 -0.154973 -0.409908 0.416443 0.173706 0.221706 -0.364058 -0.810828 -0.520716 0.245428 -0.825332 -0.422339 0.796596 -0.232319 0.710890 1.001177 0.221964 -0.130314 -0.377823 0.616259 -0.636158 0.960655 1.197293 -0.589644 0.017499 0.064593 0.265237 -0.037467 0.216664 0.236887 -0.814100 0.273647 -0.712711 0.232186 -0.522469 -0.298533 0.654921 0.708188 -1.308959 -0.109851 0.468470 0.121735 0.088541 0.067689 0.269312 0.458761 0.495058 -0.103197 1.046004 0.462211 -0.091999 0.438165 0.014614 0.283109 0.265638 -0.033724 -0.110837 -0.160635 0.139906 -0.441593 -0.251131 0.184635 0.614977 0.876181 -0.270718 -0.440832 0.146705 0.006496 0.250429 0.333354 0.675994 -0.045885 -0.120240 0.545742 -1.141874 -0.158885 -1.880101 0.206823 -1.826290 -0.620873 0.139613 0.629687 0.418478 0.400586 -0.026238 1.284259 -0.289169 -0.527458 0.672104 0.849720 -0.586988 -0.150350 -0.045941 -0.314566 -0.146666 -0.262188 -0.052188 0.283903 0.365651 -0.661683 -0.587765 0.402101 -0.017042 -0.374522 -0.668523 -0.163664 0.715096 -0.886234 -0.668636 -0.601809 0.575586 -0.023871 -1.015793 0.056192 -0.477430 0.039082 0.371887 -0.814628 -0.552231 0.518636 0.079957 -0.233291 -0.300810 0.017472 0.606571 0.378891 0.155060 -0.045485 0.431272 0.003041 1.111993 0.369873 -0.487082 0.019604 0.412133 -0.114463 0.431300 -0.397508 -0.273580 0.305535 -0.649933 -0.014442 0.043414 -0.469827 -0.246603 0.558160 -0.168697 -0.207404 2.063006 -0.290608 0.852617 0.722784 -0.574930 0.587916 -0.218823 0.358629 0.345206 0.729016 0.322802 -0.925559 -0.637422 0.743754 1.111866 0.396593 -0.810155 -0.696524 0.276635 0.416026 0.084423 0.450320 0.099404 0.143926 -0.410219 -0.007461 0.063089 1.532035 -0.493409 0.073686 0.054527 0.584000 -0.166782 -1.141087 -0.133330 -1.164199 -0.139469 0.200891 0.208184 0.184776 0.893401 -1.575240 0.698983 -0.403394 0.081795 0.519618 0.412328 -0.469770 -1.718893 -0.401149 0.165619 0.794213 -0.022075 0.469731 0.213278 -0.899795 0.113394 0.031249 0.281121 -0.710202 0.901342 -0.234655 -0.465200 -0.091046 0.211526 -0.385730 -0.565324 -0.125392 0.585409 0.720484 -1.041489 0.432646 0.173081 -0.320716 0.233241 0.299719 0.932985 -0.474506 -0.776922 0.564019 -0.425537 -0.444811 -0.247642 -0.280840 0.220668 0.023278 -0.279493 -0.372627 -0.706357 0.797329 -0.257545 0.996854 0.393511 -0.373624 0.690802 -0.143506 -0.576960 -0.313678 -0.338324 0.009708 -0.303060 -0.147084 -0.710156 -0.124709 0.553787 0.664384 0.373210 -0.392462 -0.043787 0.963976 -0.748563 0.195801 0.422031 0.288876 -0.280721 0.458426 0.516336 -0.663397 0.164350 -0.667344 0.205981 -0.518623 -0.120447 0.669842 -0.335729 0.119392 -0.140375 -0.120623 -0.012529 0.329783 0.578063 -0.007310 0.027671 1.081673 0.769657 -0.187962 -0.090971 -0.778773 0.326254 -0.678328 -0.517603 -0.245235 0.629438 -0.623577 -0.240845 0.008857 0.669957 0.536773 -0.340144 -0.441294 0.217681 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -2.891802 -2.157256 -0.831530 -4.864865 2.975021 5.131088 1.417589 -4.425464 -5.246796 -2.082164 2.478199 -6.778387 -3.669341 6.324907 -2.564183 4.469510 6.893796 -0.470016 -3.032624 -2.463981 5.401169 0.297355 8.615815 8.746490 -6.092220 -0.161470 0.955011 3.038036 2.288149 0.538029 2.419876 -4.129327 1.393471 -4.725121 0.435972 -1.960520 -1.372990 1.876477 4.813770 -8.972182 -0.613927 2.668942 -0.414247 -0.026780 0.173396 0.962746 4.848879 5.119653 -0.555316 4.310278 4.681922 0.715506 2.370016 -0.014248 1.658600 -0.057637 1.264452 -0.757663 0.089172 -1.406131 -1.640298 -0.270183 0.645863 6.782952 7.286569 -0.486564 -3.007316 2.023675 1.401734 1.999626 1.863104 5.180996 -0.905901 2.254687 4.099367 -6.970562 0.372680 -10.207852 1.790321 -8.889055 -4.120702 0.812293 3.571673 2.663082 3.501653 -0.000693 9.347232 -1.097095 -3.685176 6.217288 6.697243 -4.191869 -0.981766 -1.444965 -3.414588 0.248455 -2.772502 1.821873 0.471323 3.334600 -5.341623 -3.088736 0.074386 0.981097 -3.748784 -3.632762 -0.596333 4.445040 -5.114569 -3.349372 -1.835396 4.813885 -0.666246 -10.005233 -4.498799 -4.770590 1.784625 0.289886 -4.202183 -4.677184 2.425023 1.624978 -1.398353 -2.668821 -0.255876 3.276540 4.829626 1.687629 -0.875935 3.081488 1.739428 9.013290 1.418278 -3.168487 0.095630 1.357980 -0.585369 2.997316 -2.238590 -0.679985 1.874153 -4.832851 0.640338 3.329976 -2.803347 -2.286386 2.467550 -1.037995 -0.636183 20.723533 -1.584291 6.966275 5.938794 -5.163282 1.319728 -2.347768 1.121150 2.654307 3.376272 2.854177 -8.342105 -4.761927 5.854875 8.730995 3.019751 -6.072200 -0.526555 2.789798 0.752057 -1.703787 3.084187 0.470736 0.225874 -3.161757 -0.923808 3.880535 10.677849 -3.339094 -1.238446 1.295659 4.442774 -0.928960 -4.788207 -0.897557 -5.075154 -0.062073 3.706905 1.740225 3.258469 6.783697 -9.043721 5.079286 -0.136903 0.307203 4.576260 2.325507 -4.831285 -6.168838 -1.377774 2.332477 4.546449 -1.318956 0.667901 1.090980 -7.340192 0.581962 1.724307 0.960043 -4.494652 6.232798 0.179992 -2.745847 -2.518499 1.333124 -2.185782 -1.897451 -2.185186 4.672530 0.037760 -7.448380 5.132992 1.102257 -2.769365 0.321795 -1.704861 6.557630 -4.978217 -5.737951 4.152379 -2.406815 -3.201750 -1.641436 -1.737367 2.510240 2.998223 1.990543 -6.103233 -5.001046 5.475826 -2.159090 7.430156 3.306592 -1.128251 4.116526 -3.844818 -2.640410 -3.945626 -4.338520 1.656497 1.626810 -4.550869 -3.902614 -1.614286 4.809283 4.634263 -0.501311 -4.160575 -0.491546 6.111389 -5.430574 -0.263148 1.352310 3.124846 -5.053365 2.221698 2.721509 -4.141268 1.725839 -4.543421 -0.414709 -4.564335 -3.727379 5.214372 -0.883128 2.606476 0.118291 -0.336669 0.182434 2.468484 2.889423 0.519106 2.025493 7.183228 5.027557 -1.387948 -1.595727 -7.816637 4.274686 -6.398944 -6.086983 1.145947 0.508878 -3.055705 -1.801803 -1.180650 5.734528 4.340878 -3.021108 -2.934198 2.522517 +PE-benchmarks/shortest-common-supersequence.cpp__main = 0.125885 0.538045 1.128145 -0.499148 0.573425 -0.079353 0.210945 0.472905 -0.689311 -1.040459 0.120659 -2.029767 -1.713877 0.904336 -0.208349 -0.797676 1.212626 -0.138679 -0.084724 -0.553977 -0.331992 0.345788 1.247261 1.379305 -1.191528 0.419014 -0.606574 0.582039 0.096443 0.575966 0.443001 -1.488186 -0.165473 1.216628 0.638864 0.406088 -0.428067 -0.592243 -0.904761 -1.770011 -0.235538 1.913876 0.133145 -0.071768 0.638703 0.816175 1.784633 0.597401 -0.029958 0.445666 0.426021 0.007571 0.807054 -0.076389 0.395658 -1.129056 0.950642 -1.056191 -0.840209 0.429014 -0.129778 -0.878192 -0.868005 0.990359 1.065349 0.107626 -0.694779 -0.830523 0.073917 0.309392 0.039888 0.819524 1.193291 0.962154 0.861661 1.254347 0.254339 -0.758970 0.533106 -2.061143 -1.266740 -0.439273 2.146270 1.551854 -0.693305 -1.152622 1.420213 -0.008756 0.080361 0.913677 1.636836 0.067838 -0.382109 -0.298144 -0.469952 0.578173 -0.394842 0.368312 -0.449665 0.615951 -0.976535 0.022971 0.280087 -0.745719 -0.618889 1.088978 -0.139418 0.552709 -1.048960 0.692234 -1.135304 0.455484 1.278733 -1.195087 -0.983374 0.149425 -0.246885 0.675174 -0.669064 0.577806 0.457066 -0.687710 -0.624733 0.757164 -2.399405 1.162334 0.210457 0.177604 0.222734 1.009381 0.979417 0.083607 -0.313912 -0.340572 0.035473 0.184868 0.259578 0.209963 -0.026418 0.020175 0.321106 0.107071 -0.122648 -0.517209 -0.597535 -0.768702 -2.413155 -0.476837 0.081214 1.303806 -0.324237 0.725115 0.311055 -0.544817 0.657680 -0.100597 -0.468566 -0.199538 0.619647 1.064509 0.505925 -0.544428 0.941851 1.441600 0.397582 -0.435362 1.291538 0.852695 0.097343 -0.632284 1.275777 0.143643 0.507208 -0.481428 -0.166529 0.704993 1.329033 0.174149 -1.664697 -0.141935 0.438604 1.169607 0.567224 0.526872 1.094154 -0.076763 0.286627 0.204122 0.636574 1.067139 -2.263284 1.050994 0.797120 -0.150546 0.923757 -0.352650 -0.570233 -0.546880 0.039721 0.778881 0.942070 0.794105 -0.489133 -0.524240 -1.017364 -0.077660 0.228864 0.356581 -0.673871 1.025509 -0.396198 -0.414280 -0.549298 -1.832456 -0.425547 0.675909 -1.371691 0.456014 0.895977 -1.672859 1.145038 0.251600 -0.297039 -1.223504 -0.633593 0.207848 -0.897922 -0.927545 -0.331568 -1.462112 -2.398063 -0.511283 -0.746323 -0.366747 0.081061 0.331146 -0.708339 -0.308239 2.146048 0.037022 1.230372 0.775524 -0.057491 0.830873 1.950959 -0.628632 0.484622 -0.884883 1.481307 -0.564064 -0.357468 1.162457 -0.736954 0.032364 1.003809 -0.560706 -0.432764 -1.009979 0.623971 -0.135659 -0.911429 0.417488 -1.162856 -0.032082 1.199343 0.644638 -0.398684 0.183773 -1.565608 -0.485672 -0.680333 -0.557297 0.238020 -0.685061 -0.233918 0.783258 -0.716506 -0.978167 0.202890 -0.337296 -1.002239 0.028448 1.349446 1.104948 -0.680780 1.512254 -1.292410 0.897035 -1.035902 -0.798393 -0.015800 -0.711286 -0.441600 -0.562450 -0.402834 -0.009000 0.602680 -0.674065 -1.191340 1.219523 +PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 0.096378 0.356468 0.514100 -0.144475 0.270083 -0.165496 0.120410 0.432458 -0.288260 -0.704258 -0.028516 -0.849126 -0.943639 0.448437 -0.091842 -0.450305 0.663884 0.061343 0.051466 -0.251426 -0.220393 -0.157036 0.586727 0.669587 -0.633344 0.222288 -0.125651 0.279899 0.005915 0.462963 0.213649 -0.792421 0.018160 0.630505 0.510906 0.006754 -0.169582 -0.335283 -0.730432 -1.015014 -0.123184 0.927983 0.155530 0.007875 0.293752 0.743883 0.927060 0.305524 -0.162494 0.280506 0.213898 -0.019596 0.359041 -0.009211 0.106493 -0.554818 0.338811 -0.424636 -0.524740 0.301349 -0.047074 -0.813952 -0.418987 0.460337 0.568434 -0.091970 -0.207235 -0.412640 -0.093595 0.225897 -0.023150 0.329219 0.617946 0.343261 0.423238 0.560403 0.025081 -0.463983 0.167544 -1.734460 -0.639609 -0.437445 1.178603 0.806413 -0.423766 -0.573729 0.715399 0.090104 0.221355 0.408408 0.855717 0.042359 -0.244279 -0.252453 -0.116621 0.403550 -0.268057 0.011418 0.108949 0.190284 -0.471991 0.103376 0.171575 -0.389052 -0.291659 0.520645 -0.191522 0.371850 -0.814093 0.359928 -0.817678 0.007610 0.677003 -0.767980 -0.087922 0.207011 -0.067747 0.431184 -0.231116 0.362725 0.220895 -0.216678 -0.242935 0.412767 -1.250719 0.767612 -0.071583 0.031971 0.257733 0.494907 0.444782 -0.085734 0.209430 -0.114703 -0.112927 0.176447 -0.030003 -0.007335 -0.064431 -0.051466 0.257483 -0.214364 0.141737 -0.314383 -0.341435 -0.399076 -1.173112 -0.313092 0.212125 0.565693 -0.197262 0.401701 0.046535 -0.340492 0.443455 -0.009491 -0.310976 -0.044263 0.425310 0.503947 0.449525 -0.187704 0.322795 0.733691 0.225066 -0.256316 0.489166 0.234533 0.032212 -0.242830 0.566373 0.133069 0.221369 -0.235909 -0.086064 0.296864 0.562203 0.090822 -0.795893 -0.129681 0.216773 0.451922 0.094115 0.289356 0.415552 -0.023723 0.056406 -0.010476 0.222119 0.539202 -1.261817 0.591156 0.324508 -0.088251 0.412773 -0.231332 -0.158461 -0.761451 0.128026 0.472794 0.558041 0.327327 -0.255049 -0.240036 -0.495924 -0.069234 0.110635 0.287074 -0.319064 0.455110 -0.201167 -0.202936 -0.362972 -0.943302 -0.091512 0.283783 -0.590210 0.163074 0.534778 -1.109319 0.606600 -0.114166 -0.299223 -0.583580 -0.115746 -0.017499 -0.540453 -0.552422 -0.218570 -0.644287 -1.328223 -0.387340 -0.396204 -0.070789 -0.092165 -0.113261 -0.094022 -0.299220 0.978438 -0.035419 0.473858 0.384234 0.081477 0.759425 1.094554 -0.374824 0.170032 -0.347761 0.645392 -0.672905 -0.046994 0.643962 -0.335902 0.024198 0.675397 -0.166853 -0.083950 -0.317914 0.386759 0.017834 -0.542551 0.316427 -0.606276 0.157320 0.718453 0.404515 -0.337174 -0.101885 -0.847045 -0.155793 -0.119004 -0.302241 0.062256 -0.555136 -0.147583 0.479112 -0.281612 -0.587325 0.170078 -0.201195 -0.452265 -0.141407 0.689211 0.640767 -0.583957 0.838416 -0.561104 0.428153 -0.624832 -0.359235 -0.143867 -0.072506 0.001524 -0.153813 -0.145708 -0.102784 0.154536 -0.422513 -0.549763 0.489388 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = -0.100111 0.058405 0.303929 -0.166048 0.410795 -0.040326 0.257559 0.095263 -0.500300 -0.545786 0.115602 -0.785165 -0.746341 0.693094 -0.079307 0.191924 0.922529 0.182357 -0.034838 -0.315583 0.215758 -0.542744 0.903160 0.927139 -0.652175 0.182132 0.063476 0.246719 0.049768 0.399699 -0.070319 -0.602965 0.350577 -0.246804 0.263530 -0.298140 -0.168501 -0.058706 -0.047314 -1.164104 -0.071699 0.453544 0.061453 -0.022160 0.053480 0.806067 0.839325 0.491120 -0.152774 0.634283 0.299883 -0.343847 0.332894 0.121485 0.263307 -0.111634 0.277241 -0.006683 -0.542015 0.189562 -0.182585 -0.912009 -0.184599 0.513247 0.771346 -0.174464 -0.235196 0.044366 -0.134913 0.187781 0.158900 0.383731 0.448528 0.080588 0.583334 -0.396745 -0.076437 -1.124633 -0.158622 -2.105142 -0.706710 -0.277027 0.956227 0.120388 0.125100 -0.196875 0.884950 0.029473 -0.031410 0.378829 0.984809 -0.546797 -0.341983 -0.180901 -0.055353 0.213450 -0.397111 0.030557 0.517425 -0.041139 -0.642455 -0.280708 0.548759 -0.086874 -0.322347 -0.090197 -0.135103 0.595214 -0.909124 -0.265041 -0.863066 -0.081232 0.220888 -0.966385 0.229631 0.104041 0.404831 0.503386 -0.402199 -0.225008 0.342912 0.102386 -0.211170 -0.174357 -0.446285 0.786512 0.105440 0.209216 0.289215 0.412292 0.310576 0.617323 0.683079 -0.229146 -0.067955 0.173500 -0.266665 0.277063 -0.190084 -0.318619 0.348083 -0.552967 0.128368 -0.036956 -0.460647 -0.219044 0.052503 -0.031043 0.127152 1.094877 -0.143007 0.621545 0.303514 -0.584138 0.495887 -0.293999 -0.095893 0.150910 0.617342 0.364692 -0.346167 -0.413756 0.459850 0.898192 0.391357 -0.860319 -0.143175 0.044620 0.258553 -0.104214 0.382306 0.232393 0.334340 -0.416567 -0.043022 0.278744 1.155017 -0.454873 -0.631700 0.086744 0.004813 0.162103 -0.834386 -0.005573 -0.124341 -0.033092 -0.052995 0.043297 0.157274 0.756104 -1.452654 0.689546 -0.241380 -0.199518 0.639111 0.126497 -0.398218 -1.140431 -0.045156 0.441554 0.719941 0.359925 -0.070193 -0.005964 -0.697302 -0.051926 0.022351 0.229961 -0.320056 0.598368 -0.179431 -0.407604 -0.374243 -0.480127 0.006110 -0.105657 -0.201923 0.385335 0.508092 -1.421173 0.607869 -0.064793 -0.444053 -0.112895 0.095643 0.404033 -0.593555 -0.793205 0.171457 -0.567438 -0.932021 -0.484035 -0.251830 0.067827 0.000537 -0.297477 -0.133170 -0.630711 0.907670 -0.168483 0.659646 0.410677 -0.013602 0.991966 0.538145 -0.605755 -0.218903 -0.183764 0.240445 -0.700046 -0.201159 -0.027861 -0.279380 0.424809 0.770083 0.107612 -0.047649 -0.230037 0.658567 -0.690657 -0.374919 0.577826 0.272643 -0.084471 0.666446 0.620444 -0.593369 -0.067465 -0.601536 -0.276627 -0.219844 -0.369869 0.262360 -0.503513 0.008622 0.249028 -0.129080 -0.260182 0.260076 -0.035907 -0.136087 -0.221614 0.870035 1.210367 -0.760601 0.289291 -0.650038 0.432576 -0.779367 -0.595163 0.044069 0.407804 -0.323214 -0.109835 0.178544 0.211390 0.223812 -0.664040 -0.509641 0.210128 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -2.077407 -2.409685 -0.694742 -3.290358 1.639575 3.030475 1.155902 -3.303693 -4.247135 -1.369991 2.009925 -5.435594 -1.896517 4.585394 -1.630056 3.927351 5.306021 0.263324 -2.391368 -1.612633 3.555783 0.076616 6.041694 6.605961 -3.582244 -0.012976 -0.249753 1.773815 1.542589 -0.077444 1.790240 -2.623815 1.313780 -3.782791 0.131406 -1.683038 -1.318113 2.214464 4.220458 -6.638863 -0.219602 2.217911 0.951533 -0.104758 0.353611 0.724506 2.870116 3.507205 0.296624 3.699944 2.749730 -0.053165 2.206561 0.049708 1.475378 0.394619 0.992784 -1.098096 -0.286300 -0.731985 -1.348258 -0.029320 0.621427 4.476576 5.075495 -0.257273 -2.461347 1.206341 1.754816 1.354578 1.778319 3.694839 -1.161354 1.104603 2.259878 -5.688499 0.733626 -7.106128 1.365128 -6.242259 -3.094373 1.374952 3.156446 2.304113 2.559810 -0.255975 6.449434 -1.211836 -3.139848 3.799979 4.601008 -3.233342 -0.844527 -0.419626 -1.831801 -0.086036 -1.775507 1.065388 0.943956 2.541435 -3.832376 -1.804640 0.742549 0.683268 -2.457374 -2.166261 0.099637 3.386222 -3.493719 -3.008484 -0.819711 3.830352 -0.464987 -6.673539 -1.912670 -3.427045 0.354742 0.672056 -3.781034 -3.399059 2.044722 0.459119 -1.125269 -1.688636 -1.059737 2.445167 2.988962 1.353506 -0.829034 2.622794 0.922644 6.575690 0.549083 -2.698422 0.791012 1.190041 -0.317604 2.598994 -1.677675 -1.278490 0.899292 -3.674137 -0.043306 1.957665 -2.274744 -1.073090 1.429161 0.295625 -1.062826 13.702463 -1.169380 5.344831 4.814436 -3.333839 1.449657 -1.670439 1.441459 1.660171 2.435406 1.795574 -6.201912 -3.502779 4.130445 6.415194 2.304103 -4.244708 -0.949896 1.984244 0.736308 -0.806056 2.386195 0.320816 0.572631 -2.473521 -0.497950 2.315543 7.844326 -2.334211 -0.045170 0.535895 2.378406 -0.466561 -4.160820 -0.785389 -4.125315 0.041304 1.873619 1.520233 2.015438 4.732749 -6.072956 3.960706 -0.433416 0.448837 3.981043 1.980432 -3.795924 -5.218041 -1.967957 1.229014 3.553969 -1.222191 0.395305 1.285957 -5.224231 0.281060 0.905933 0.437945 -3.230277 4.337837 0.105264 -1.584109 -0.994662 1.301184 -1.335387 -1.952758 -1.278417 3.680709 1.185784 -4.125291 3.006122 1.152114 -2.048050 0.622099 -0.875280 4.626348 -3.199126 -3.385750 2.759348 -1.757194 -2.320749 -1.343967 -1.262456 1.546484 1.638058 1.259065 -3.937314 -3.115884 4.104212 -1.791548 5.604303 2.333502 -1.647537 2.341721 -1.798881 -1.976809 -2.169253 -3.073055 0.083633 0.857743 -2.780018 -2.977848 -1.093346 3.461515 3.018368 0.112889 -3.081614 -0.203747 4.315821 -4.102283 0.186694 1.188352 1.489165 -3.381851 1.573228 2.052590 -3.409823 1.856630 -2.929447 -0.567137 -3.207757 -1.828653 4.033182 -0.259839 1.809738 -0.830296 -0.489225 0.544323 1.683569 2.311453 0.074551 1.747590 5.433410 3.094118 -0.163492 -1.136508 -5.418448 2.815921 -4.238683 -3.864576 0.551625 1.253265 -3.211646 -1.275673 -0.317354 4.173131 3.333872 -2.601071 -2.504224 2.179244 +PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 0.178945 -0.047300 0.993415 -0.664762 0.147896 -1.021003 0.136821 1.457874 -1.057541 -1.557587 -0.088227 -1.104501 -1.425807 0.828465 -0.148491 -1.259973 1.416599 0.653395 0.130139 -0.669925 -0.377468 -0.644485 0.674333 1.371032 -1.088050 0.311811 -0.721982 0.825641 0.177611 0.820428 1.068548 -1.337134 -0.386609 1.505779 1.334678 -0.645236 -0.297931 0.167985 -1.894990 -2.259887 -0.078493 2.060770 0.487790 0.115415 0.862430 1.771009 1.110444 0.454826 -0.600864 0.813688 0.516730 0.254442 0.646864 -0.154527 -0.076978 -0.869896 -0.028317 -0.864092 -0.764530 1.001833 -0.098897 -1.537871 -0.273705 0.701631 0.973943 -0.345138 -0.431181 -1.302677 0.266770 0.574778 0.399955 0.456380 1.048062 -0.179487 0.760758 0.978383 -0.329352 -1.547597 0.978153 -3.910401 -1.040695 -0.679380 3.096949 1.918686 -1.536279 -1.457073 1.246752 -0.208242 0.379421 1.516296 0.926941 0.867715 -0.389600 -0.719645 -0.493485 0.961969 -0.285691 -0.547664 0.127420 1.026650 -0.664575 0.518971 -0.000856 -1.060353 -0.492474 1.005558 -0.374583 0.959018 -1.698331 0.935457 -1.449101 1.085620 1.737976 -0.993591 0.114923 -0.314448 -0.237341 0.647209 -0.601714 1.590496 0.383789 -0.806884 -0.649284 1.627604 -2.991911 1.554865 -0.626124 -0.205427 0.158930 0.936898 0.228361 -1.017072 0.055877 -0.534875 -0.192385 1.007790 -0.015382 -0.270829 -0.658757 -0.097634 1.167809 -0.268042 -0.007337 -1.438613 -0.678562 -1.158060 -2.232667 -0.578082 0.363935 1.150340 -0.283303 0.706567 0.221362 -0.030113 1.141226 0.767607 -0.017647 0.305734 1.060636 0.483443 1.019807 -0.295627 0.087121 1.243931 0.465659 -0.066483 0.535554 0.415710 -0.111816 0.064013 1.094732 -0.055249 0.081845 -0.276582 -0.141712 0.010987 0.645704 0.932922 -0.900932 -0.874852 1.091908 0.319934 0.344171 0.802554 0.676074 -0.018591 0.173747 -0.122216 0.627512 0.897494 -2.734942 1.138834 0.552281 0.501547 0.001648 -0.473495 0.039042 -2.495481 -0.177071 0.308982 1.592315 0.394856 -0.326447 0.065063 -0.865479 -0.040156 0.219669 0.678691 -0.719177 0.797481 -0.500385 0.051130 -0.148631 -1.584336 -0.682523 0.851946 -1.001100 0.202092 1.070128 -1.609205 0.563809 -0.552136 -0.340041 -1.036218 0.200858 -0.059748 -0.905283 -0.718296 -0.499534 -0.551253 -2.765419 -1.079443 -0.857531 0.303861 -0.718736 -0.509280 0.115603 -0.747571 1.946986 -0.382417 0.970609 0.670362 -0.541308 1.540484 2.435578 -0.321761 0.429143 -0.828325 1.137327 -1.399795 0.426699 1.467269 -0.535952 -0.332949 1.081498 -0.115842 -0.252639 -0.067741 1.259056 0.641742 -0.988122 0.360606 -1.894977 0.999299 1.933468 0.691740 -1.230310 -0.139788 -1.874255 0.281996 0.353425 0.070478 0.592871 -0.961708 -0.082385 0.426636 -0.120710 -1.123439 0.331523 -0.041828 -1.095953 -0.151780 1.708840 1.131425 -0.574755 1.817422 -0.804636 0.747307 -0.828229 0.008889 -1.306601 -0.015178 0.109565 0.180545 -0.600073 -0.036286 0.515239 -0.342955 -1.056051 1.269248 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -1.299535 -0.551460 0.373319 -2.551202 1.797076 2.475136 0.878769 -1.451014 -3.136410 -1.760068 0.713834 -4.127050 -2.508772 3.805194 -1.131962 2.164621 4.958346 0.552532 -1.372065 -1.106286 2.805515 -1.047070 4.955503 5.585340 -3.676035 0.302672 0.430739 1.875993 0.826425 1.449342 0.625647 -2.896547 0.819180 -2.447885 0.972581 -2.135702 -0.922332 1.060114 1.796097 -6.473728 -0.351772 2.159568 0.001224 -0.104546 0.341488 1.219389 3.838840 2.914226 -0.709004 2.490326 2.231232 0.133658 1.643159 0.131012 0.985740 0.481333 0.694647 -0.249128 -0.711980 -0.074703 -0.972952 -1.655061 0.503063 3.858496 4.431209 -0.269997 -1.710605 0.713258 0.667217 0.760570 0.850822 2.910644 0.161806 1.116247 2.403944 -4.081376 0.377686 -6.248970 1.041886 -6.709858 -2.886735 -0.499673 2.825867 2.194015 1.796235 -1.055685 5.659746 -1.121668 -1.121982 3.708012 4.569697 -2.943617 -0.827094 -1.627055 -1.884960 0.470043 -1.636577 0.243156 0.578063 1.232359 -3.237422 -2.275240 0.962954 0.437163 -2.236649 -1.599056 -0.434109 3.084481 -3.672740 -2.269917 -2.373867 2.071540 -0.206348 -5.829993 -1.327193 -2.283517 0.693086 0.893477 -2.546873 -2.966940 1.575426 1.197045 -1.005681 -1.384056 -1.640051 3.175296 2.047475 0.425171 -0.060281 1.690562 1.099931 4.640994 1.669971 -1.905605 -0.001404 1.317107 -0.988202 1.054368 -1.818540 -0.869414 1.427266 -3.211036 -0.700235 1.554233 -2.146431 -0.693568 0.971402 -0.770467 0.201173 12.065531 -1.037348 3.786313 2.863444 -3.443289 2.442024 -0.788003 0.101205 1.392648 2.531098 2.244557 -5.608987 -2.776957 2.891527 5.380585 2.010380 -3.442267 -0.786797 0.874028 0.435033 -0.544199 1.986845 0.323316 0.274903 -2.146903 -0.570100 1.932307 7.019268 -1.890832 -1.108487 0.531447 1.826164 -0.661459 -3.851274 -0.379879 -3.114661 -0.215291 1.237715 0.462780 1.930610 4.263518 -6.179783 3.564061 -0.820830 -0.455505 2.954356 0.795056 -2.332020 -4.752262 -0.684476 2.026963 3.528008 -0.326434 0.236023 0.304774 -4.394135 0.054017 0.864747 1.199231 -2.758524 3.786292 -0.126433 -2.173519 -1.617294 -0.096004 -1.383864 -1.612131 -1.430965 2.571817 0.809977 -4.554268 3.415911 0.540555 -1.538916 0.496017 -0.540477 3.112304 -3.381943 -3.926909 2.233995 -1.180715 -2.437723 -1.203857 -1.332979 1.763203 1.234388 -0.295409 -3.091591 -4.085154 3.612680 -1.077786 4.274944 2.214361 -0.476785 3.203367 0.376487 -1.915171 -2.200197 -2.644713 0.711603 -0.162383 -1.995132 -2.430107 -1.347322 2.860606 3.749159 -0.005105 -1.757033 -0.483168 4.041228 -2.889855 -0.574834 1.435482 0.742480 -2.349489 1.316441 2.147411 -2.975252 0.263269 -3.148805 -0.065045 -1.918123 -2.011006 2.709053 -1.684049 0.932985 0.783412 -0.627505 -0.467226 1.577765 1.490866 -0.145774 0.715866 4.934027 3.156854 -1.202070 0.082930 -4.293301 2.489156 -4.315651 -3.193180 -0.112330 1.148672 -1.869899 -0.865013 0.194722 2.859789 2.147357 -1.710928 -1.632657 0.980469 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = 0.314953 1.456777 2.193364 -1.135980 1.387571 1.243418 0.326460 0.413227 -1.114480 -0.468378 -0.432696 -2.104987 -1.686564 1.529723 -0.071144 -0.524038 2.238722 0.304028 -0.476471 -0.139000 -0.082585 -0.187114 1.587061 1.961599 -1.583146 1.024106 -0.025115 0.553797 -0.542778 2.766665 -1.730582 -1.952261 -0.451159 1.065974 1.094759 -0.481756 -1.054537 -1.072093 -0.738166 -3.200456 -0.028070 2.194465 0.103859 -0.384539 0.833386 0.681938 3.131126 0.736549 -0.020722 -0.021204 0.230881 -0.019824 1.022993 -0.095872 1.542084 0.448685 2.896290 0.337102 -0.935923 0.478937 -0.422860 -0.761917 -0.568456 1.398041 1.324580 0.136026 -0.985742 -1.249948 0.233250 -0.084587 -0.473303 1.007661 0.923340 1.394015 0.476137 0.646546 1.331890 -0.717652 0.793941 -1.978935 -1.781552 -0.870268 1.565234 1.515611 0.013540 -1.849241 2.217696 -0.902701 0.683003 -0.280240 2.512746 -0.897373 -0.334468 -0.651337 -0.967920 0.273575 0.005887 -0.460380 0.053008 -0.793862 -1.405628 -0.541481 1.165111 -0.224284 -0.968891 2.020717 -0.037159 1.286502 -1.206272 0.020219 -1.573773 0.213243 0.524043 -2.099437 -0.794098 -0.018159 -0.923032 0.717123 -1.182059 -1.139535 0.976745 0.527798 -1.241852 0.180020 -2.551823 2.612722 0.367956 -0.216025 0.336117 0.067322 1.236305 0.263414 0.807139 -0.685741 0.291163 0.314427 -0.373566 -0.337189 -0.246528 -0.089279 -0.683408 -0.570151 -0.643215 0.245040 -1.029676 1.092680 -2.175572 -0.300667 0.263302 4.527745 -1.326021 1.301672 -0.356993 -1.691363 2.246701 0.710061 -1.358768 -0.539379 0.962028 1.853618 -1.985244 -0.724456 1.124825 2.264736 0.826066 -1.241978 1.113392 -0.069449 -0.722158 -0.177832 1.667375 -0.268309 0.587780 -1.013045 -0.648969 0.325562 3.403089 -0.371070 -4.044990 -0.016097 -0.488508 0.742274 -0.338268 0.403799 0.019564 0.002705 -0.361510 -0.636575 1.384391 1.601805 -4.004414 2.022650 -0.211675 -2.254101 3.080346 -0.853272 -0.189578 -0.581956 -0.128206 1.591079 2.122815 0.802542 -1.441596 -0.911125 -1.448811 -0.330303 0.062795 0.674587 -1.301846 1.467924 0.212420 -1.789845 -0.553023 -2.779009 -0.133177 -0.347257 -2.110383 0.513438 0.087461 -3.167133 2.081006 1.140506 0.080215 -0.396966 -0.432213 -0.652956 -1.045687 -1.762395 -0.140769 -0.464044 -1.407285 -0.193506 -1.223747 0.397749 0.360258 0.459951 -1.604358 -2.044175 1.842507 -0.077157 1.938042 1.246358 0.378428 1.126054 3.710116 -0.688936 -0.033468 -1.214631 1.581461 -0.391000 -0.419123 0.162897 -1.637484 0.719293 1.612967 -0.307494 0.324208 -2.405980 1.241456 -0.084103 -0.204975 0.720524 -2.137389 -0.638591 -0.039927 1.248495 -0.224427 -0.518866 -1.670966 -1.170188 -1.105687 -0.677808 0.360309 -1.165190 -0.418897 1.213116 -1.227085 -1.509761 0.167612 -0.574095 -1.157295 0.203609 1.717613 1.026417 -1.070433 2.100870 -1.237742 1.610445 -1.625887 -0.691621 -0.154643 -0.857271 -1.108080 -0.812413 0.247701 0.252580 -0.013976 -0.334404 -0.377560 0.549752 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.427164 0.092427 0.084091 -0.061203 0.177694 0.196217 0.157154 -0.155053 -0.440582 -0.529751 0.280006 -0.196952 -0.764121 0.818141 -0.383650 0.218064 0.872847 0.777739 -0.082051 -0.279484 0.634506 -0.724894 0.796904 0.955745 -0.652834 0.161457 0.326516 0.145023 -0.112356 0.626875 0.103690 -0.762042 0.528347 -0.400582 0.565366 -0.978794 -0.273830 0.748280 0.024493 -1.351710 -0.195161 0.343005 -0.150091 0.008048 0.139762 0.565612 0.361239 0.512340 -0.015300 0.529150 0.375182 -0.023397 0.784708 0.028796 0.407084 0.362414 -0.174682 -0.107795 0.284760 0.236544 -0.527459 -0.482729 0.080139 0.622277 0.981535 -0.508511 -0.343986 -0.193712 -0.335879 0.157357 -0.092104 0.478535 0.339257 0.027834 0.027279 -1.254371 -0.384041 -1.652802 0.193744 -1.709994 -0.443115 -0.226636 0.176417 0.433028 0.201837 -0.043176 1.119451 -0.139791 -0.091554 0.587748 1.133157 -0.405900 0.040787 -0.036061 -0.156546 0.058516 -0.213015 0.037681 0.017354 -0.161070 -0.549880 -0.945595 0.100297 -0.082235 -0.314426 -0.584990 -0.253564 0.843374 -0.762472 -0.444071 -0.882203 0.150033 0.029799 -1.121238 0.382234 -0.363900 0.268435 0.577023 -0.701762 -0.520744 0.633193 0.545725 0.066842 -0.376251 -0.076466 0.654440 -0.131381 0.143882 -0.193998 0.021094 0.006462 0.578510 0.653871 -0.424375 -0.048722 0.240777 -0.456144 0.385286 -0.500840 -0.123233 0.414035 -0.518575 -0.419957 0.016924 -0.433251 -0.166767 0.502596 -0.406845 -0.225808 1.934454 -0.449372 0.602554 0.324794 -0.637096 0.558970 -0.043436 -0.045495 0.152527 0.686626 0.279096 -1.269257 -0.575306 0.375755 1.151255 0.405204 -0.792772 -0.477336 -0.138737 0.264153 -0.083046 0.665981 0.041992 -0.050997 -0.384327 -0.127180 -0.032526 1.115353 -0.603343 0.124674 -0.471958 0.422641 0.001547 -0.779587 -0.000972 -0.724059 -0.100768 0.340287 -0.097259 0.117750 0.467946 -1.521508 0.793550 -0.706585 -0.170523 0.256281 0.233700 -0.093994 -1.278252 0.049253 0.208616 0.693361 0.014081 0.542840 0.304591 -0.902392 0.039123 -0.055231 0.251056 -0.354359 0.840628 0.044366 -0.553878 -0.395670 0.251348 -0.159182 -0.838342 -0.177029 0.816272 0.600106 -1.221236 0.522735 0.038852 -0.001795 0.106979 0.494154 0.660673 -0.601963 -1.060708 0.700268 0.012000 0.039852 -0.263269 -0.391920 0.769283 -0.050082 -0.473508 -0.166154 -0.802089 0.509534 0.101833 0.653866 0.298684 0.102022 0.983520 0.017669 -0.510403 -0.247891 -0.245122 0.150685 -0.563650 -0.077359 -0.833384 -0.156657 0.620607 0.614745 0.491881 -0.303297 0.050353 1.056710 -0.505084 0.226020 -0.053263 0.593955 0.308874 0.184715 0.524860 -0.457898 -0.291687 -0.718018 0.386341 -0.492151 -0.312207 0.724076 -0.646826 0.232202 -0.080113 -0.019219 -0.253278 0.331119 0.686803 0.089176 0.166002 0.544086 0.904460 -0.150462 0.016527 -0.429238 0.381381 -0.533788 -0.031298 -0.473824 0.593900 -0.302247 0.154016 0.001280 0.594879 0.426672 -0.043202 -0.231850 0.330513 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -4.427241 -3.397937 -1.523943 -5.691787 3.748209 7.793291 2.410824 -7.003144 -7.397676 -1.272441 4.203754 -10.364031 -5.512448 9.462221 -4.014783 6.698495 10.588334 1.236929 -4.920387 -3.184059 7.298131 0.283465 13.081724 13.619436 -7.837509 -0.061751 -0.060060 4.121116 1.916030 -0.379135 3.107246 -4.464145 3.257647 -7.697306 0.013505 -3.486558 -2.127532 3.747842 7.283372 -13.597367 -1.236617 2.587746 0.205204 0.028713 0.244582 3.019182 6.257957 7.653599 1.228125 6.057311 5.234757 -0.899025 5.487050 0.361249 2.805320 -0.136830 1.442451 -1.117581 -0.162696 -1.869363 -2.793310 -0.619303 0.824383 9.582480 11.303089 0.077112 -4.861797 2.249586 2.185759 2.420016 2.287138 7.411739 -1.515520 3.869836 4.089772 -10.467151 1.103101 -13.598674 2.088503 -11.236095 -5.923919 1.500962 5.183148 3.819722 5.188214 0.091185 13.605689 -0.570968 -5.425344 9.460814 10.902500 -7.075894 -1.913078 -0.844359 -4.109210 0.372867 -3.495927 4.144318 2.105387 5.036423 -8.076693 -4.948770 -0.108611 1.154822 -4.673546 -4.788631 -0.236433 6.844751 -6.153253 -5.221479 -2.478272 6.295587 -1.084330 -14.879863 -4.998312 -6.072167 2.670429 1.833822 -7.086043 -6.948615 4.126049 1.738340 -1.150637 -3.494075 -0.886940 4.426047 5.426452 2.309988 -1.616662 5.267333 2.338571 13.035877 1.027298 -5.026110 1.085891 1.745012 -1.580320 5.383713 -3.506574 -1.527827 1.811334 -7.703158 0.947833 4.152982 -4.592998 -2.589835 2.206341 0.278730 -1.629004 28.076543 -2.398803 10.581139 8.738391 -7.704640 3.081860 -4.301189 1.974270 3.347864 4.809854 3.172651 -13.542883 -7.596272 7.953916 13.635352 4.692717 -9.137353 -0.649837 3.425972 1.229295 -3.110395 5.388640 1.459571 -0.181046 -3.604587 -0.983757 6.047001 15.631028 -5.583453 -1.059827 1.039605 4.464551 0.553974 -7.653642 -1.586888 -6.578059 -0.360929 4.727859 3.219998 3.748641 9.058658 -11.532983 8.062768 -0.765958 1.212298 7.770134 3.477283 -7.569840 -8.151537 -2.506777 3.115275 6.470312 -1.409192 -1.255521 2.255041 -10.808232 0.588984 2.941009 1.133155 -5.545030 9.357489 0.131247 -3.970331 -3.606108 2.317661 -2.559003 -3.572289 -3.050478 8.278186 -0.156555 -9.820361 6.923148 2.430438 -4.308153 0.698779 -2.425619 8.697465 -7.124352 -8.639090 6.166011 -3.364159 -3.775636 -3.072880 -2.566491 3.738884 4.365421 2.596238 -8.370523 -6.382011 8.347725 -2.774038 10.607995 4.659456 -1.656735 5.874024 -4.118761 -5.690772 -4.927562 -7.039290 1.584449 2.067412 -6.413116 -5.081478 -2.106893 7.542490 6.383458 0.587480 -6.640250 -0.442071 9.436410 -7.272161 -1.005770 1.765133 3.466498 -6.066643 2.574226 4.322880 -6.442601 2.683751 -6.026949 -0.998884 -6.834625 -5.153111 7.789079 -1.678982 3.881652 -1.324323 -1.065767 1.463212 4.005075 4.784408 2.049414 4.171685 10.567121 6.256905 -0.809046 -1.931223 -11.014690 6.164916 -8.941207 -7.798147 1.605839 2.441439 -4.532057 -1.847676 -0.434388 7.958473 6.222274 -7.010540 -5.147621 4.347453 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = 0.210154 0.242394 1.215257 -0.624814 0.273586 -0.738309 0.142304 1.217995 -0.795096 -1.286392 -0.096861 -0.894374 -1.437053 0.770598 -0.259646 -1.238448 1.453491 0.561167 0.110537 -0.891976 -0.173033 -0.517037 1.000681 1.440413 -1.507802 0.301439 -0.058416 1.057444 0.740631 0.724177 0.666953 -0.920199 -0.152105 1.189430 1.253161 -0.694633 -0.068295 -0.318025 -1.783670 -2.305109 -0.131042 1.271932 0.144359 0.166177 0.705927 2.040518 1.319125 0.604904 -0.766751 0.689571 0.839690 0.253112 0.444046 -0.091531 -0.219447 -0.894828 0.549671 -0.374728 -0.728378 0.767606 0.130317 -1.780859 -0.297534 0.896974 1.237098 -0.280187 -0.185269 -0.942790 0.335941 0.470443 0.342060 0.413721 1.005942 0.234382 0.966160 0.491431 -0.136446 -1.917182 0.561885 -4.145117 -1.088230 -1.087874 2.725253 0.813457 -1.213411 -0.877250 1.249094 0.176231 0.646463 1.258596 1.097951 0.453834 -0.434492 -0.753657 -0.471836 1.184300 -0.551847 -0.158361 0.360147 0.736359 -0.670204 0.168419 0.288421 -0.824884 -0.608736 0.936893 -0.449412 0.928111 -1.668940 0.755534 -1.592186 0.520132 1.389896 -1.284533 -0.074234 -0.293985 0.793941 0.573283 -0.143726 1.186928 0.065053 -0.287597 -0.457400 1.200118 -2.335872 1.477334 -0.139525 -0.163385 0.313211 0.774279 0.415499 -0.612617 0.594381 -0.428576 -0.450457 0.861861 -0.409516 -0.342538 -0.836310 0.016808 1.336808 -0.324891 0.317384 -0.881680 -0.665445 -1.206072 -1.254441 -0.582267 0.667096 1.676349 -0.014056 0.629107 0.210971 -0.271798 0.686728 0.489721 -0.212902 0.556344 0.996421 0.486770 0.513364 -0.375917 -0.114116 1.207418 0.469131 -0.642213 0.411400 0.170631 -0.221948 -0.135613 0.829117 0.090380 -0.011896 -0.263154 -0.138842 0.378717 0.674047 0.539988 -1.556275 -0.741680 0.793062 0.085811 0.011473 0.650926 0.930355 0.068226 0.200630 -0.054031 0.656048 0.985742 -3.142998 1.057884 0.617975 0.288032 0.281249 -0.376228 -0.087309 -1.989519 0.368242 0.532773 1.392467 0.455664 -0.536854 0.155819 -0.955655 -0.082798 0.288516 0.675898 -0.609651 0.723062 -0.134414 -0.075365 -0.533522 -1.560118 -0.264044 0.827725 -0.868249 0.238922 0.398144 -2.487234 0.790410 -0.787671 -0.618742 -0.821377 -0.267609 -0.007529 -1.254091 -0.897536 -0.405477 -0.394742 -2.465090 -1.294268 -0.692192 0.445666 -0.527547 -0.041765 -0.212118 -0.890908 1.657535 -0.521223 0.620540 0.736097 -0.188326 1.822301 1.610359 -0.335172 -0.141926 -0.385973 1.175190 -1.152288 0.057581 1.193208 -0.536003 -0.150671 1.481822 -0.379233 -0.007882 -0.153648 1.221636 -0.139915 -1.322715 0.396894 -0.752836 0.749859 1.901608 0.663923 -1.294159 -0.355893 -1.598907 -0.293313 0.580921 -0.310949 0.671430 -1.113539 0.077983 0.716141 -0.055713 -1.054560 0.607481 -0.337651 -0.756217 -0.246852 1.489663 2.091900 -1.075540 1.524551 -0.925598 0.826947 -1.175786 -0.373588 -0.830162 -0.347319 0.251298 0.298749 -0.496511 0.107095 0.448857 -0.547104 -0.939336 1.007643 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -0.245758 1.127318 0.853063 -1.054781 0.972809 0.595272 0.242141 0.008193 -0.651328 -1.619214 -0.327852 -1.633032 -2.096091 1.494351 -0.459455 -0.145251 2.468622 0.078062 0.011738 -1.024143 1.104978 -0.887826 2.324392 2.550585 -2.599616 0.332772 1.567959 1.241383 0.947945 0.827246 0.429078 -1.763155 0.178618 -0.244430 1.566461 -1.020007 -0.225138 -0.589159 -0.366353 -3.574102 -0.490387 0.736956 -0.265610 0.127843 0.251673 1.289462 2.832395 1.386625 -1.280775 0.683969 1.600060 0.582498 0.563126 -0.012662 -0.120564 -0.431310 0.632317 0.066416 -0.340687 0.389473 -0.048496 -1.640544 0.036945 2.138219 2.434857 -0.292881 -0.498647 0.369371 0.194692 0.390170 -0.337672 1.479050 0.836836 1.242397 1.626878 -2.062324 -0.144430 -4.481448 0.457800 -5.339217 -1.807334 -1.665552 1.264361 0.371269 0.375034 -0.177151 2.877219 0.196500 0.673327 1.844751 2.718573 -1.002953 -0.312138 -1.425888 -1.027181 1.034582 -1.021834 0.367623 0.438149 0.270608 -1.433050 -1.541441 0.737749 -0.208527 -1.341013 -0.639934 -0.653324 1.431427 -1.965953 -0.485985 -2.336887 0.007943 0.228962 -3.154083 -0.342512 -0.781538 1.226119 0.530043 -0.341282 -1.208680 0.216076 0.967156 -0.475650 -0.517904 -1.209518 1.876466 1.316543 -0.176026 0.427595 0.778830 1.072116 1.615858 1.713414 -0.598166 -0.768855 0.702403 -0.968506 -0.422468 -1.307832 0.017147 1.719111 -1.209385 -0.006920 0.787261 -1.001103 -1.138644 0.868641 -1.803229 0.962658 5.779169 -0.387780 1.171956 0.720530 -1.829792 1.113623 -0.207125 -0.955710 0.810910 1.582497 1.765165 -2.121332 -1.147659 0.905637 2.553702 0.780781 -1.670448 -0.707406 0.196331 -0.195409 -0.644467 0.967057 0.203528 -0.207835 -0.742359 -0.324579 1.373236 2.659772 -0.733469 -1.530134 -0.055566 1.644587 -0.296080 -1.864968 0.153108 -1.209230 -0.199275 0.556677 0.014244 1.123875 2.058786 -4.639223 1.588355 0.219087 -0.346916 0.976635 0.037280 -0.640672 -3.069232 1.147408 1.727872 1.487233 -0.097209 0.308461 -0.469869 -2.146673 -0.031774 0.469798 1.114548 -1.471799 1.788203 -0.261309 -1.134931 -1.499611 -0.538761 -0.611215 -0.575560 -0.775575 0.855221 0.558512 -3.584147 2.353769 -0.640320 -0.842128 -0.081690 -0.985065 1.302606 -2.256562 -2.228010 0.724179 -0.596318 -1.498081 -0.808453 -0.858141 1.122458 0.158106 -0.018309 -1.328587 -2.193141 1.610550 -0.425375 1.376505 1.292518 0.700301 2.486355 0.032616 -0.967028 -1.447373 -0.760305 0.865231 -0.246660 -0.988482 -1.150535 -0.798019 1.008278 2.869393 -0.674951 -0.311218 -0.305741 1.709297 -1.957058 -1.048873 0.611571 0.684494 -0.754262 1.048483 0.896979 -1.351885 -0.731705 -2.129394 0.025735 -0.198671 -1.540525 0.835629 -1.861688 -0.080650 1.599245 -0.763405 -0.767765 1.283153 0.269758 -0.015386 -0.207591 1.854676 2.727396 -1.686367 0.404523 -2.093481 1.109439 -2.711030 -1.763589 -0.178088 -0.021857 0.072871 -0.399307 -0.178490 0.826578 0.564562 -0.455729 -0.819161 0.198697 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -0.067352 0.045435 0.269000 -0.145172 0.269669 -0.123787 0.173726 0.102417 -0.368721 -0.459275 0.083082 -0.615015 -0.571290 0.499008 -0.097086 0.056063 0.660408 0.146656 -0.017966 -0.250710 0.101379 -0.395651 0.637204 0.664478 -0.485096 0.115836 0.000181 0.229474 0.058801 0.313671 0.017559 -0.462049 0.213758 -0.042359 0.251069 -0.202735 -0.092508 -0.031767 -0.155307 -0.842276 -0.045317 0.405693 0.143356 -0.011908 0.065803 0.621886 0.599210 0.356149 -0.106565 0.426609 0.240808 -0.195574 0.252475 0.085424 0.172756 -0.170670 0.244117 -0.125329 -0.419737 0.159671 -0.119676 -0.698208 -0.154514 0.389860 0.575036 -0.112635 -0.139557 -0.045728 -0.100287 0.173386 0.136414 0.252195 0.320464 0.080536 0.392959 -0.173857 -0.007953 -0.781078 -0.079928 -1.593106 -0.497961 -0.221763 0.772277 0.223204 -0.010176 -0.161016 0.625778 0.064308 0.000697 0.282977 0.713276 -0.303771 -0.261277 -0.135525 -0.064154 0.205147 -0.299821 0.012152 0.332617 0.080133 -0.448930 -0.119622 0.358911 -0.105961 -0.220933 0.046087 -0.108673 0.413717 -0.711116 -0.101448 -0.621209 -0.044532 0.254148 -0.697405 0.194664 0.046311 0.244859 0.348242 -0.273895 -0.046017 0.236862 0.023364 -0.159510 0.001527 -0.558843 0.577727 0.013155 0.136912 0.192211 0.312579 0.221156 0.336183 0.403500 -0.185178 -0.062803 0.135123 -0.195118 0.167038 -0.153404 -0.226447 0.290932 -0.382549 0.105848 -0.104191 -0.333138 -0.227917 -0.151769 -0.050492 0.129842 0.673505 -0.103697 0.438513 0.206708 -0.390213 0.348714 -0.167116 -0.062180 0.090530 0.435605 0.248380 -0.067215 -0.303582 0.317178 0.634618 0.282912 -0.520356 -0.043657 0.052188 0.171769 -0.061660 0.286516 0.173691 0.175667 -0.293503 -0.044412 0.185273 0.744965 -0.215292 -0.419197 0.032222 0.032258 0.128974 -0.496551 0.035272 -0.004066 0.001085 -0.077062 0.033305 0.120737 0.549542 -1.099281 0.520535 -0.083320 -0.080143 0.436545 0.007145 -0.270500 -0.894401 -0.018345 0.325753 0.524556 0.238607 -0.059591 0.008017 -0.493842 -0.040376 0.003587 0.196094 -0.233429 0.398490 -0.125467 -0.272486 -0.294079 -0.415858 -0.003370 -0.004845 -0.191338 0.261572 0.424971 -1.014981 0.452241 -0.091031 -0.312569 -0.159198 0.067844 0.223531 -0.458252 -0.539725 0.049053 -0.445460 -0.765923 -0.394661 -0.183874 0.036650 -0.083908 -0.223794 -0.063160 -0.375357 0.674217 -0.151444 0.442626 0.283556 -0.006708 0.688333 0.515554 -0.390380 -0.101393 -0.091747 0.173986 -0.578488 -0.117625 0.157812 -0.186847 0.263106 0.564018 0.052979 -0.040421 -0.093533 0.477775 -0.365436 -0.347271 0.403153 0.027117 -0.015431 0.543569 0.436527 -0.456010 -0.066724 -0.495594 -0.193309 -0.122932 -0.269362 0.185124 -0.365758 0.006537 0.195075 -0.087307 -0.255179 0.194479 -0.030399 -0.155654 -0.143921 0.665425 0.817831 -0.504038 0.308176 -0.480663 0.288343 -0.570966 -0.404463 -0.008735 0.272978 -0.201660 -0.047877 0.072139 0.138162 0.163269 -0.434998 -0.389758 0.210754 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = -1.671439 -0.952492 5.090306 -4.113363 5.089975 -0.636459 1.729882 1.911045 -3.800789 -4.445267 -0.270609 -2.280994 -8.884377 4.527409 -2.245176 0.447493 3.252097 -1.522333 -0.254539 -5.593270 5.596810 -5.814349 6.655474 3.158579 -9.933361 0.297540 0.049145 8.116603 4.005486 5.688751 2.916372 -1.108221 -2.485338 1.836769 8.751319 -2.162689 1.106771 1.426114 -5.499787 -9.834435 -3.179868 8.514321 0.154288 2.620266 2.766656 10.194398 3.414816 5.231028 -4.818261 5.127566 6.069486 -2.124405 5.118532 -0.073222 -2.474927 -2.112617 3.909481 -1.281370 -3.244136 2.220830 -1.010246 -8.591666 3.521940 5.368499 9.200854 -5.235278 -1.605236 1.725768 0.198090 3.223280 1.708213 6.073994 0.789592 -0.767839 9.325316 -1.936850 -0.684993 -9.766214 3.947305 -15.480268 -6.158670 -6.280102 6.542393 5.042642 -0.248283 -3.933431 12.331362 1.556595 -1.763124 7.009514 3.853361 -0.784932 0.318923 -7.296350 -3.075594 0.844313 -4.511307 -3.944771 2.678594 5.606122 -3.627286 -0.273498 0.165450 -2.820736 -3.772102 -0.624921 -7.498984 6.424240 -7.266749 -2.017478 -8.547065 4.912462 1.354784 -8.489704 1.368434 -3.207546 1.991642 -0.146454 4.610162 4.462403 1.638599 2.701818 -1.975156 1.499857 -8.862046 8.911580 4.100669 -2.888568 1.687032 5.789096 -1.754200 -0.943059 6.318315 -0.671457 -8.111565 6.360012 -2.492192 1.431971 -2.934129 2.914247 8.003085 -3.391361 -3.146094 -3.006564 0.264030 -2.653842 -3.587548 -5.079553 3.420896 10.500188 -0.731521 2.313648 0.097790 -2.258441 7.715499 3.456534 0.786021 6.026543 4.561519 0.501936 -4.590057 -4.230382 3.558561 5.748696 0.855436 -5.309615 -1.404387 1.409380 1.571213 -1.877378 2.626498 4.082098 -1.379592 -0.906024 -0.052106 -4.291164 7.792794 -1.705544 -5.035322 2.209822 4.456403 -5.564315 -5.992834 -0.099638 -0.514330 -5.501646 -0.723459 0.602034 2.191966 5.661642 -11.551332 4.900734 1.642715 -0.325609 4.375935 -6.165020 1.985007 -13.473805 -1.239312 1.031046 4.849226 -0.866624 -2.285960 -0.566216 -6.802651 5.379832 -0.350351 3.274155 -2.735552 6.426709 -5.004972 -0.754363 -3.433498 -5.713394 -4.316116 2.841763 -2.714641 0.680709 2.082233 -8.521506 3.569661 -5.812497 -2.859255 1.243429 3.798788 4.200967 -2.811154 -5.380812 2.378655 -0.813079 -9.187327 -9.807966 -2.091996 2.518625 -1.477307 -4.409288 -4.172993 -7.894836 6.142815 -5.089091 3.197803 2.688394 -0.156210 8.461124 8.141978 -5.669304 -3.169208 -3.512631 1.214096 -1.908080 0.863557 -0.348633 -0.613075 2.102730 4.850826 0.094959 3.138570 -1.925256 9.332392 -2.920670 -5.932653 2.407975 -3.698004 0.819644 7.753729 3.965542 -3.081104 -3.149312 -8.708715 1.894421 -1.392458 -0.549183 4.642791 -5.446005 -0.789585 2.508024 0.738175 -3.712239 2.338022 2.124389 -3.548131 -6.106800 13.443911 10.406172 -5.582524 3.105576 -4.444462 4.683429 -4.187458 0.990392 -5.330405 0.327935 3.171619 2.930832 1.657460 3.347315 5.102079 -5.324642 -3.184719 -2.119221 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -5.406114 -2.549004 2.514067 -12.122515 9.109174 16.081167 3.728727 -9.691600 -13.443632 -4.053767 4.646227 -20.678001 -10.319359 15.526101 -6.247399 9.406491 18.647584 -0.774377 -8.112361 -3.798132 10.306178 3.641780 21.991008 22.933149 -15.225644 1.559747 -1.564129 7.610595 2.643838 6.053719 2.077571 -12.363533 2.461030 -7.706154 1.383913 -4.021845 -5.379097 2.472936 9.499638 -24.900034 -1.650003 11.103052 -1.115413 -0.039674 2.988222 1.255728 16.372340 11.779122 0.820778 9.486670 8.554385 1.496051 8.351596 -0.167629 5.819501 0.270225 7.883813 -3.641998 -2.334541 -2.903566 -4.784254 -0.879320 -0.141403 16.807896 17.614518 0.802080 -8.866132 0.867080 4.313099 3.300397 3.493093 13.871898 -1.479784 8.917495 8.371464 -11.313941 5.667489 -17.277831 5.936783 -14.932029 -12.100044 0.743415 10.753924 13.490603 8.067593 -6.072768 24.203903 -4.950152 -7.358968 12.923052 18.787101 -11.687001 -2.229663 -3.888053 -8.369635 -0.446816 -5.188958 3.408017 -1.630457 7.068712 -13.956531 -6.465341 1.375183 1.334853 -9.300741 -2.114634 -1.042451 11.543548 -12.568368 -7.528985 -5.278303 12.088299 -0.508875 -25.038533 -13.238280 -9.500577 -0.666448 2.348951 -11.512972 -12.002912 7.314689 3.375675 -4.709157 -4.387042 -7.561466 12.016827 11.606916 2.522242 -1.782206 8.518505 5.713719 20.454556 1.814711 -7.474527 1.683931 3.401818 -0.170697 6.415468 -4.119718 -0.877395 -1.205727 -11.897308 -1.279139 8.771991 -7.700175 -1.028652 -5.450965 -0.965461 -1.654956 53.072422 -6.082628 18.077714 13.104856 -14.094536 7.754323 -3.811874 1.084372 4.164917 6.986288 9.915498 -23.352139 -11.580525 15.144369 22.870553 7.447875 -14.132636 4.032651 6.792766 0.542618 -4.772715 10.208339 1.009543 2.313890 -8.627271 -2.545757 9.207275 30.239242 -7.293903 -9.749053 3.412027 5.466920 0.771240 -8.915063 -1.748553 -9.387801 -0.777489 8.599294 3.560018 8.440658 17.314944 -21.928145 14.629044 0.903483 -3.151066 17.203602 2.963302 -11.076463 -9.230213 -5.207998 7.868423 12.543104 -1.661660 -3.413478 0.333709 -18.140624 0.968881 5.022222 3.090499 -12.174317 16.194392 1.621965 -8.878356 -5.681941 -3.702103 -5.158872 -4.649787 -10.545435 11.323256 -0.454546 -17.927076 13.873168 6.470807 -6.388956 0.313034 -5.415293 12.704025 -11.656785 -14.451222 8.457231 -7.023586 -10.968329 -3.295057 -5.702725 4.359736 8.896505 6.010732 -17.836944 -13.809575 15.830279 -3.928716 19.617220 9.566059 -2.233816 8.675159 1.356416 -7.651289 -6.939063 -14.639665 7.637957 4.518658 -10.272508 -7.597527 -6.581049 11.340185 12.706442 -1.572134 -9.530708 -6.714815 14.986116 -10.166738 -0.677101 4.467927 -0.475389 -12.950448 3.010875 7.924991 -8.304300 3.983972 -12.108492 -3.090194 -12.531912 -8.074948 12.042017 -3.570669 4.697720 1.828680 -3.674222 -2.570987 5.097340 5.074981 -1.605807 5.923732 19.914161 8.651603 -1.969997 1.815027 -19.004829 12.566248 -16.482084 -13.807361 2.367197 -1.126493 -9.068680 -5.772530 -1.521671 13.091188 10.307848 -8.618258 -7.089301 7.067914 +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.117094 0.581231 0.485858 -0.192690 0.545529 0.038211 0.192401 0.520560 -0.382016 -0.842113 -0.194185 -0.604105 -1.072640 0.646571 -0.024285 -0.313701 1.145473 0.213408 0.184431 -0.476857 0.095682 -0.427543 0.990495 1.051554 -1.027746 0.370182 0.394275 0.295731 0.110837 0.599827 0.052567 -1.001885 0.290925 0.138648 0.536807 -0.453630 -0.231613 -0.436697 -0.592856 -1.652964 -0.160749 0.455216 -0.355878 0.051244 0.210084 0.997988 1.369510 0.479368 -0.452291 0.644623 0.422194 0.126662 0.229219 0.058299 0.050200 -0.159209 0.120656 -0.154393 -0.498477 0.385097 -0.040369 -1.168563 -0.329335 0.649147 0.824603 -0.243366 -0.262135 -0.069344 -0.181005 0.155110 -0.066705 0.482644 0.797688 0.292421 0.747868 -0.295669 -0.388281 -1.451335 -0.025294 -2.860323 -0.926229 -0.832897 1.201937 0.181325 -0.122234 -0.251245 1.101375 -0.004464 0.475681 0.764326 1.155339 -0.408708 -0.281551 -0.480020 -0.120555 0.501196 -0.380852 0.002548 0.246960 -0.142026 -0.659356 -0.520463 0.539187 -0.313379 -0.511819 -0.124488 -0.276952 0.678585 -1.256196 0.003065 -1.361153 -0.049049 0.373031 -1.100986 -0.091256 0.226764 0.831505 0.577677 -0.193455 -0.151426 0.228922 0.260190 -0.267373 -0.060292 -0.467699 0.890797 0.213166 -0.008606 0.436667 0.457928 0.513825 0.547193 1.010049 -0.123849 -0.277408 0.377129 -0.182060 -0.132209 -0.307195 -0.077989 0.421159 -0.518357 0.354121 0.034983 -0.526807 -0.574068 -0.165125 -0.584666 0.400468 1.515901 -0.173277 0.475423 0.115769 -0.718306 0.313305 -0.262914 -0.479980 0.241610 0.810004 0.704182 -0.197723 -0.311097 0.228931 1.026332 0.374095 -0.812409 0.005890 -0.033509 0.013748 -0.176502 0.535575 0.118882 0.333827 -0.357871 -0.090568 0.420953 1.211282 -0.270519 -0.915129 -0.120269 0.382195 0.188476 -0.504729 0.191056 0.073705 -0.077433 0.389993 -0.116585 0.306934 0.816556 -2.000871 0.725471 -0.163413 -0.269142 0.188183 0.186053 -0.136889 -1.009482 0.301553 0.696368 0.931664 0.378597 0.078420 -0.247048 -0.782270 -0.111947 0.212008 0.451444 -0.483185 0.709644 -0.064120 -0.566947 -0.493302 -0.607465 -0.031240 0.075528 -0.361504 0.249363 0.396106 -2.094346 0.850848 -0.302677 -0.462866 -0.194192 -0.122341 0.540500 -0.816293 -0.997145 0.182800 -0.428421 -1.227948 -0.332783 -0.489565 0.346045 0.031180 -0.085433 -0.188925 -0.888876 1.049895 0.093698 0.576261 0.622945 0.189431 1.501636 0.164284 -0.627303 -0.297666 -0.484350 0.777502 -0.722077 -0.093296 0.155407 -0.503205 0.291774 1.247690 -0.077879 -0.121278 -0.333363 0.753700 -0.849234 -0.442291 0.530902 0.487562 0.086267 0.920215 0.649151 -0.637182 -0.344528 -0.874824 -0.008179 0.051409 -0.469205 0.235181 -0.970657 -0.115973 0.737026 -0.219353 -0.569802 0.461509 -0.254608 -0.172373 -0.361657 0.795549 1.556206 -1.107856 0.614104 -0.638993 0.557411 -1.006683 -0.650658 -0.226627 0.105343 0.028182 -0.118442 -0.193479 0.088951 0.129313 -0.454459 -0.516294 0.200597 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/find-two-non-repeating-element.cpp__main = 0.131700 1.072883 1.037007 -0.563188 0.748516 0.117845 0.177368 0.616826 -0.396823 -1.580922 -0.070472 -1.563188 -2.113536 0.963233 -0.365166 -1.044598 1.524056 -0.199754 0.138832 -0.781771 0.020315 -0.026319 1.567081 1.624503 -1.882288 0.372281 0.621584 0.690199 0.555438 0.523105 0.610395 -1.711958 0.142304 0.977869 1.046120 -0.040969 -0.244873 -1.098778 -1.269505 -2.250513 -0.386572 1.056381 -0.667090 0.121878 0.460615 1.768661 2.327733 0.827934 -0.879757 0.520452 1.024885 0.421651 0.309867 -0.089857 -0.181807 -1.381710 0.444732 -0.346754 -0.638608 0.435031 0.046025 -1.503190 -0.779517 1.390098 1.468344 -0.204321 -0.369850 -0.353031 -0.052368 0.410309 -0.283592 0.907020 1.502946 1.142282 1.249638 0.259455 -0.384667 -2.282050 0.264128 -4.244276 -1.397155 -1.206483 2.016020 0.736021 -0.717084 -0.756093 1.776135 0.485833 0.595236 1.573490 2.064497 -0.085301 -0.383055 -0.809796 -0.575112 0.962957 -0.715075 0.549172 0.008192 0.319018 -1.069279 -0.378474 0.109274 -0.768697 -0.821157 0.322696 -0.482402 0.805429 -1.733241 0.806677 -1.809010 0.029670 1.236520 -2.142682 -0.772631 0.162633 1.154495 0.645443 -0.244687 0.367658 0.173281 0.024150 -0.462692 0.488899 -1.612658 1.434149 0.595823 0.193962 0.494670 0.914360 1.213980 0.348077 0.949630 -0.205735 -0.505573 0.213948 -0.177390 -0.183650 -0.400819 0.272035 1.063751 -0.437080 0.703300 -0.007170 -0.681234 -1.401532 -1.119569 -1.273781 0.640798 2.738086 -0.319033 0.902647 0.233499 -1.041623 0.320360 -0.341494 -0.890452 0.245779 0.960132 1.335735 0.188071 -0.480338 0.790715 1.732814 0.454549 -1.127061 0.846251 0.595221 -0.189942 -0.878112 1.039794 0.232589 0.226249 -0.405956 -0.251817 1.272848 1.339440 -0.028524 -1.819997 -0.264675 1.073751 0.859610 0.100107 0.552342 0.808255 0.029343 0.991870 0.025235 0.775019 1.314272 -3.447635 1.027700 0.816841 -0.079714 0.331689 0.023172 -0.513410 -1.386365 0.852914 1.294582 0.935259 0.623502 -0.217116 -0.554804 -1.255012 -0.102106 0.537293 0.669124 -0.819870 1.079212 -0.121855 -0.581396 -1.142785 -1.483963 -0.289323 0.631732 -1.105564 0.439871 0.285341 -3.290335 1.685195 -0.496946 -0.724662 -1.212561 -0.910337 0.668880 -1.509774 -1.500131 -0.068948 -1.225210 -2.507872 -0.742043 -0.813055 0.188820 0.129824 0.426298 -0.656799 -1.189681 1.883097 -0.030477 0.998608 0.918563 0.543434 2.214917 0.553302 -0.674821 -0.444737 -0.927633 1.993793 -0.710783 -0.625383 0.840428 -0.661021 0.176494 1.741284 -0.821185 -0.397339 -0.541718 0.778457 -0.864619 -1.104480 0.440178 0.222859 -0.116512 1.531969 0.678096 -0.721839 -0.307115 -1.842723 -0.274163 -0.304367 -1.089186 0.220386 -1.244136 -0.180323 1.320267 -0.457159 -1.082555 0.677210 -0.424824 -0.439162 -0.206683 1.137893 2.447551 -1.658286 1.191488 -1.530103 1.107919 -1.766433 -1.498134 0.046795 -0.616370 0.434063 -0.440536 -0.696740 0.062361 0.352391 -0.776009 -1.025132 1.057654 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 0.096378 0.356468 0.514100 -0.144475 0.270083 -0.165496 0.120410 0.432458 -0.288260 -0.704258 -0.028516 -0.849126 -0.943639 0.448437 -0.091842 -0.450305 0.663884 0.061343 0.051466 -0.251426 -0.220393 -0.157036 0.586727 0.669587 -0.633344 0.222288 -0.125651 0.279899 0.005915 0.462963 0.213649 -0.792421 0.018160 0.630505 0.510906 0.006754 -0.169582 -0.335283 -0.730432 -1.015014 -0.123184 0.927983 0.155530 0.007875 0.293752 0.743883 0.927060 0.305524 -0.162494 0.280506 0.213898 -0.019596 0.359041 -0.009211 0.106493 -0.554818 0.338811 -0.424636 -0.524740 0.301349 -0.047074 -0.813952 -0.418987 0.460337 0.568434 -0.091970 -0.207235 -0.412640 -0.093595 0.225897 -0.023150 0.329219 0.617946 0.343261 0.423238 0.560403 0.025081 -0.463983 0.167544 -1.734460 -0.639609 -0.437445 1.178603 0.806413 -0.423766 -0.573729 0.715399 0.090104 0.221355 0.408408 0.855717 0.042359 -0.244279 -0.252453 -0.116621 0.403550 -0.268057 0.011418 0.108949 0.190284 -0.471991 0.103376 0.171575 -0.389052 -0.291659 0.520645 -0.191522 0.371850 -0.814093 0.359928 -0.817678 0.007610 0.677003 -0.767980 -0.087922 0.207011 -0.067747 0.431184 -0.231116 0.362725 0.220895 -0.216678 -0.242935 0.412767 -1.250719 0.767612 -0.071583 0.031971 0.257733 0.494907 0.444782 -0.085734 0.209430 -0.114703 -0.112927 0.176447 -0.030003 -0.007335 -0.064431 -0.051466 0.257483 -0.214364 0.141737 -0.314383 -0.341435 -0.399076 -1.173112 -0.313092 0.212125 0.565693 -0.197262 0.401701 0.046535 -0.340492 0.443455 -0.009491 -0.310976 -0.044263 0.425310 0.503947 0.449525 -0.187704 0.322795 0.733691 0.225066 -0.256316 0.489166 0.234533 0.032212 -0.242830 0.566373 0.133069 0.221369 -0.235909 -0.086064 0.296864 0.562203 0.090822 -0.795893 -0.129681 0.216773 0.451922 0.094115 0.289356 0.415552 -0.023723 0.056406 -0.010476 0.222119 0.539202 -1.261817 0.591156 0.324508 -0.088251 0.412773 -0.231332 -0.158461 -0.761451 0.128026 0.472794 0.558041 0.327327 -0.255049 -0.240036 -0.495924 -0.069234 0.110635 0.287074 -0.319064 0.455110 -0.201167 -0.202936 -0.362972 -0.943302 -0.091512 0.283783 -0.590210 0.163074 0.534778 -1.109319 0.606600 -0.114166 -0.299223 -0.583580 -0.115746 -0.017499 -0.540453 -0.552422 -0.218570 -0.644287 -1.328223 -0.387340 -0.396204 -0.070789 -0.092165 -0.113261 -0.094022 -0.299220 0.978438 -0.035419 0.473858 0.384234 0.081477 0.759425 1.094554 -0.374824 0.170032 -0.347761 0.645392 -0.672905 -0.046994 0.643962 -0.335902 0.024198 0.675397 -0.166853 -0.083950 -0.317914 0.386759 0.017834 -0.542551 0.316427 -0.606276 0.157320 0.718453 0.404515 -0.337174 -0.101885 -0.847045 -0.155793 -0.119004 -0.302241 0.062256 -0.555136 -0.147583 0.479112 -0.281612 -0.587325 0.170078 -0.201195 -0.452265 -0.141407 0.689211 0.640767 -0.583957 0.838416 -0.561104 0.428153 -0.624832 -0.359235 -0.143867 -0.072506 0.001524 -0.153813 -0.145708 -0.102784 0.154536 -0.422513 -0.549763 0.489388 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -6.373094 -4.239174 -4.205519 -10.879545 8.325741 16.377548 3.820209 -13.090983 -14.185789 -4.486481 8.912803 -22.717168 -11.578069 16.589773 -7.060485 10.247582 18.997476 -3.903915 -9.002768 -7.991984 13.394192 7.483803 26.314099 26.700430 -18.774983 1.302694 3.009718 4.349210 9.880274 -4.015452 6.788408 -11.511161 7.181292 -12.692772 -2.227452 -3.032827 -5.445938 0.487635 15.197917 -24.817863 -2.609751 4.493981 -5.084144 0.858473 1.302503 12.744438 16.775480 13.895603 -2.725410 14.907088 13.882237 1.891688 5.961818 -0.923316 2.204294 -5.806484 4.396492 2.056634 0.584429 -5.411216 -2.970425 -0.157644 -2.474638 19.649983 20.701756 -0.775577 -9.922180 6.309896 6.280112 4.191133 4.339151 16.304630 3.541932 10.016164 12.913757 -15.362626 0.006818 -27.845447 3.257535 -31.032227 -11.387408 3.338087 13.833924 0.186743 7.648591 -0.495894 26.739531 -0.430880 -10.888952 21.391136 20.564599 -12.732771 -2.622069 -0.339615 -9.317077 1.279505 -7.701786 11.407826 2.665249 8.067377 -15.930486 -9.783694 -1.711861 0.166441 -11.385101 -9.116790 -0.693502 8.501714 -15.936841 -4.416444 -4.086761 11.058915 1.268718 -29.254126 -18.681245 -10.524295 12.128749 1.869807 -12.172589 -10.982120 5.123272 1.136186 -3.783227 -6.359556 2.868996 7.135488 16.009548 8.444729 -1.741223 9.708372 9.437716 26.951725 3.207402 -8.847956 1.240340 1.219792 1.320726 10.647968 -4.796117 -0.668767 7.432397 -12.335078 9.056232 9.422943 -8.030465 -9.202905 8.418679 -3.015488 -4.242471 55.436007 -3.023827 21.817194 18.078154 -14.888999 -3.681220 -11.818375 1.894249 8.407960 8.751850 10.143508 -18.725547 -12.273210 17.740254 26.206764 7.642867 -21.687309 5.029637 12.443870 1.463270 -8.540776 10.371905 0.703813 3.621594 -8.353864 -2.281361 15.510423 30.099914 -9.626912 -3.340813 1.787553 12.107073 2.989876 -7.434595 -1.101391 -7.501359 1.418922 16.088822 6.553460 9.728382 18.468809 -28.428344 12.970554 1.450093 1.961722 9.364475 12.062988 -17.220952 -8.509283 -2.194144 6.980941 10.111215 -0.133135 -0.195370 3.113759 -20.624086 0.664508 7.429719 0.069865 -13.119735 18.078446 4.720285 -6.431649 -7.115810 2.904002 -2.511379 -1.959093 -7.104176 14.663688 -5.516046 -28.036198 14.288915 3.543488 -10.532431 -5.231244 -9.043519 18.047361 -14.800215 -15.461204 10.254622 -10.870350 -13.498780 -4.865371 -6.024538 3.989476 11.401804 13.076941 -19.464505 -15.622310 20.030623 -5.328629 20.989223 10.797734 -3.232042 14.596184 -20.093281 -7.599639 -12.913450 -13.215133 11.622062 5.492995 -14.262577 -3.532036 -5.323310 11.530873 13.066065 -4.687304 -13.784428 -2.208549 13.718580 -17.114928 -1.393265 2.668059 18.610070 -15.160586 10.347502 6.279725 -10.317809 8.740765 -12.786411 -6.221781 -14.131031 -10.399868 15.357375 -1.722588 7.010904 1.494230 -1.591250 0.841497 8.428771 3.820346 1.305910 7.309776 17.855528 21.322467 -7.375630 -2.980531 -23.864929 14.771292 -18.875295 -21.818511 7.211539 -2.657454 -8.474017 -8.085466 -6.357620 15.412405 13.466034 -14.051678 -11.233674 13.508015 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 0.095060 0.420335 0.652681 -0.197483 0.390091 -0.145769 0.185945 0.515586 -0.395557 -0.935624 0.031396 -1.147472 -1.271881 0.653282 -0.146367 -0.488121 0.962232 0.045080 0.054265 -0.383274 -0.168342 -0.275158 0.900932 0.982728 -0.941430 0.259982 -0.040006 0.384691 0.100899 0.522000 0.259709 -1.034702 0.101727 0.603705 0.659280 -0.006070 -0.198862 -0.478396 -0.828300 -1.406249 -0.197241 1.114062 0.073101 0.020123 0.333817 1.073941 1.269802 0.475017 -0.283749 0.462188 0.378555 -0.136969 0.446233 -0.015210 0.119454 -0.725937 0.412955 -0.358842 -0.713171 0.384543 -0.065075 -1.132698 -0.517758 0.679308 0.854742 -0.163068 -0.270196 -0.404717 -0.106303 0.285840 -0.004428 0.481014 0.849012 0.472309 0.701423 0.476967 -0.051357 -0.911007 0.143436 -2.515646 -0.896442 -0.602178 1.546571 0.809919 -0.443452 -0.711101 1.025271 0.151296 0.253163 0.632168 1.230529 -0.086886 -0.371512 -0.393485 -0.158451 0.526654 -0.451206 0.082529 0.286426 0.168192 -0.695844 0.022231 0.281201 -0.434632 -0.411198 0.506360 -0.275634 0.557918 -1.095162 0.340911 -1.165548 -0.039257 0.825351 -1.165182 -0.109838 0.281085 0.110459 0.626337 -0.320610 0.349428 0.287023 -0.169945 -0.309056 0.386553 -1.392262 1.076665 0.029780 0.133112 0.377560 0.697327 0.639855 0.071728 0.484351 -0.151422 -0.184802 0.229430 -0.139221 0.059866 -0.123276 -0.107559 0.469752 -0.353062 0.206632 -0.316863 -0.482390 -0.543916 -1.180868 -0.393971 0.299845 1.073366 -0.226329 0.610098 0.114404 -0.535575 0.611055 -0.109623 -0.385277 -0.001258 0.617653 0.671314 0.314142 -0.293521 0.490242 1.056799 0.322858 -0.594999 0.531483 0.307105 0.091900 -0.368373 0.708230 0.242146 0.328166 -0.341150 -0.094688 0.502271 0.910992 -0.068918 -1.132022 -0.144487 0.301211 0.576326 -0.119736 0.343714 0.452951 -0.020051 0.127964 0.033821 0.316096 0.790152 -1.821644 0.795681 0.352623 -0.129754 0.613354 -0.196182 -0.305847 -1.125509 0.214987 0.655991 0.740215 0.504944 -0.338215 -0.268793 -0.731440 -0.065760 0.162584 0.385195 -0.413580 0.664638 -0.294300 -0.305974 -0.568184 -1.181329 -0.129387 0.313246 -0.722313 0.272611 0.630859 -1.660217 0.862304 -0.170413 -0.490144 -0.723679 -0.189469 0.114958 -0.818825 -0.850411 -0.194956 -0.880526 -1.754905 -0.581305 -0.534452 -0.087333 -0.035046 -0.153627 -0.182840 -0.579441 1.328330 -0.091025 0.706754 0.532929 0.107316 1.187226 1.270089 -0.567317 0.068409 -0.479446 0.875862 -0.856386 -0.179784 0.622672 -0.420789 0.133687 0.945900 -0.242224 -0.097378 -0.456965 0.556610 -0.250478 -0.739020 0.456334 -0.479586 0.130149 0.957271 0.572065 -0.533779 -0.103916 -1.117590 -0.276794 -0.200981 -0.476594 0.105348 -0.775959 -0.144061 0.619073 -0.329523 -0.692479 0.245892 -0.255412 -0.506094 -0.221351 0.951298 1.160165 -0.932962 0.955669 -0.871049 0.646290 -0.932094 -0.659022 -0.095433 -0.033968 -0.015726 -0.204225 -0.091319 -0.081337 0.264770 -0.720740 -0.769857 0.635104 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 0.041070 0.222315 0.384699 -0.099179 0.429065 0.024797 0.223576 0.369653 -0.461962 -0.495511 -0.073054 -0.645876 -0.735660 0.597749 0.013032 -0.016538 0.903434 0.293104 0.041021 -0.201245 -0.014751 -0.404722 0.731990 0.791306 -0.551894 0.286639 -0.081774 0.163299 -0.198375 0.688655 -0.167017 -0.782527 0.246736 0.075867 0.310795 -0.326860 -0.237915 -0.131086 -0.336729 -1.222101 -0.042596 0.693500 0.073023 -0.045163 0.181231 0.585161 0.903016 0.355030 -0.064807 0.537241 0.087006 -0.162394 0.347803 0.100669 0.312262 0.060091 0.267520 -0.214573 -0.598253 0.286239 -0.166265 -0.870608 -0.286651 0.371266 0.581015 -0.145096 -0.252279 -0.210026 -0.200796 0.136146 0.083055 0.299292 0.492670 0.065181 0.433595 0.065009 -0.090416 -0.600842 -0.038472 -1.767787 -0.698098 -0.413154 1.021484 0.462592 -0.010879 -0.415343 0.789829 -0.168524 0.188535 0.246754 0.872104 -0.411862 -0.304289 -0.243399 0.008018 0.238370 -0.257494 -0.182779 0.328111 -0.160766 -0.559659 -0.240058 0.530823 -0.158464 -0.298306 0.154300 -0.133589 0.582676 -0.894612 -0.156757 -0.944626 -0.004769 0.261681 -0.735093 0.089960 0.248001 0.070502 0.554886 -0.361016 -0.140317 0.371867 0.075744 -0.261730 -0.042715 -0.586281 0.809090 -0.059998 0.009199 0.328341 0.364408 0.277926 0.392339 0.593288 -0.161939 -0.033534 0.283725 -0.121938 0.077183 -0.134563 -0.252136 0.014685 -0.470748 0.079985 -0.107216 -0.457091 -0.078068 -0.550172 -0.071519 0.180996 0.821981 -0.224691 0.459497 0.094492 -0.528407 0.576790 -0.116933 -0.220793 0.015940 0.589340 0.420862 -0.116806 -0.282094 0.274325 0.787066 0.356846 -0.548272 0.069014 -0.080924 0.162592 -0.021520 0.462298 0.153768 0.385333 -0.386204 -0.056930 0.102882 1.086197 -0.278960 -0.793135 0.011779 -0.021892 0.203142 -0.464705 0.080639 -0.024186 -0.078132 -0.029704 -0.094780 0.147644 0.648474 -1.235523 0.697060 -0.245903 -0.347697 0.577288 -0.007932 -0.146344 -0.767205 -0.091104 0.444625 0.848832 0.374252 -0.114392 -0.139779 -0.573505 -0.098691 0.029466 0.296224 -0.308806 0.534871 -0.150969 -0.461476 -0.245387 -0.673447 0.008616 -0.084482 -0.353111 0.228769 0.592218 -1.280815 0.545390 0.011181 -0.317344 -0.086288 0.180647 0.201088 -0.478330 -0.723901 0.074807 -0.410863 -0.957351 -0.268799 -0.340815 0.119368 0.006548 -0.260310 -0.060991 -0.576862 0.894596 0.051018 0.584048 0.424983 -0.015958 0.869431 0.837755 -0.573721 0.020428 -0.365595 0.364919 -0.749756 0.025282 0.165469 -0.405573 0.309310 0.780643 0.164847 -0.041628 -0.450851 0.640575 -0.395809 -0.250393 0.572262 -0.144419 0.101505 0.567089 0.642118 -0.493233 -0.192666 -0.579998 -0.108487 -0.102169 -0.228576 0.160988 -0.635828 -0.084184 0.353074 -0.206496 -0.441258 0.174992 -0.136638 -0.304099 -0.259640 0.797707 0.774562 -0.675396 0.618691 -0.425770 0.409948 -0.643265 -0.317912 -0.181006 0.244161 -0.304530 -0.077811 0.101950 0.050743 0.089609 -0.436453 -0.437195 0.113719 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 0.063619 0.369438 0.549029 -0.165351 0.411209 -0.082035 0.204243 0.425304 -0.419839 -0.790770 0.004005 -1.019276 -1.118690 0.642523 -0.074063 -0.314444 0.926005 0.097044 0.034593 -0.316299 -0.106015 -0.304128 0.852682 0.932248 -0.800423 0.288585 -0.062356 0.297145 -0.003118 0.548992 0.125771 -0.933337 0.154979 0.426061 0.523366 -0.088651 -0.245574 -0.362222 -0.622439 -1.336843 -0.149566 0.975833 0.073627 -0.002377 0.281429 0.928064 1.167175 0.440496 -0.208704 0.488180 0.272973 -0.167869 0.439460 0.026850 0.197044 -0.495782 0.371934 -0.305990 -0.647018 0.331241 -0.109984 -1.027753 -0.449072 0.583725 0.764744 -0.153799 -0.302875 -0.322547 -0.128221 0.240292 -0.000664 0.460755 0.746010 0.343313 0.613614 0.337515 -0.043403 -0.807538 0.088850 -2.246495 -0.848358 -0.492709 1.362553 0.703597 -0.288490 -0.609589 0.974571 0.055269 0.189248 0.504260 1.127250 -0.200666 -0.324985 -0.297829 -0.107820 0.411853 -0.365348 0.029823 0.293757 0.069011 -0.665516 -0.057711 0.361423 -0.369966 -0.393074 0.384361 -0.217952 0.553347 -1.012101 0.196335 -1.059535 -0.029090 0.643744 -1.036961 -0.052954 0.264741 0.092225 0.586328 -0.359420 0.183734 0.326945 -0.137656 -0.294595 0.236883 -1.138161 0.976397 0.020702 0.104275 0.354737 0.594621 0.534201 0.195406 0.489008 -0.158670 -0.118078 0.214824 -0.101550 0.102690 -0.101112 -0.143638 0.314634 -0.384783 0.164257 -0.247148 -0.468943 -0.390203 -0.968841 -0.293644 0.209435 0.987065 -0.236573 0.584734 0.143341 -0.534418 0.590628 -0.136375 -0.344688 0.016117 0.607047 0.620259 0.170573 -0.297878 0.465467 0.997264 0.333511 -0.596279 0.389647 0.226965 0.118996 -0.285384 0.662163 0.191771 0.380042 -0.358974 -0.084674 0.390335 0.972255 -0.148760 -1.008396 -0.075160 0.189327 0.485051 -0.243720 0.248511 0.295278 -0.057901 0.080473 -0.000484 0.258656 0.745764 -1.615190 0.760167 0.166449 -0.207626 0.615339 -0.111980 -0.286179 -1.007481 0.101215 0.588594 0.753427 0.448645 -0.265651 -0.254016 -0.699383 -0.080784 0.129399 0.320941 -0.405692 0.654987 -0.255131 -0.338054 -0.443136 -1.007571 -0.082032 0.182972 -0.600795 0.286836 0.617898 -1.515512 0.762228 -0.087928 -0.430707 -0.537278 -0.087947 0.163002 -0.675755 -0.805902 -0.096166 -0.766265 -1.494321 -0.476714 -0.464160 -0.039612 -0.007720 -0.186944 -0.164032 -0.554574 1.211891 -0.052459 0.690878 0.511355 0.074582 1.063058 1.117144 -0.590199 0.052521 -0.439778 0.711851 -0.794464 -0.130527 0.458289 -0.428434 0.185901 0.881462 -0.112220 -0.091178 -0.454418 0.567551 -0.307387 -0.570198 0.491100 -0.360750 0.088279 0.841330 0.588432 -0.474534 -0.102626 -0.952987 -0.239111 -0.215916 -0.402748 0.139492 -0.692891 -0.145498 0.533065 -0.323384 -0.592329 0.235674 -0.206702 -0.432698 -0.219099 0.893822 1.033303 -0.840520 0.819531 -0.730479 0.572385 -0.833233 -0.549936 -0.091064 0.062320 -0.120029 -0.215772 -0.039303 -0.029556 0.215079 -0.651555 -0.669646 0.488761 +PE-benchmarks/permutations-of-a-given-string.cpp__main = -0.574301 0.244402 1.787441 -1.510456 2.671520 0.386356 1.114554 0.472791 -1.646286 -2.229149 -0.135834 -1.613864 -3.984113 2.317995 -0.795808 0.688479 2.585951 -0.355019 0.155920 -2.286614 2.429176 -2.595827 3.915148 2.618973 -4.444024 0.541076 0.316741 2.649202 1.218938 2.640774 0.589962 -1.433869 0.302095 -0.296529 3.246375 -1.261166 -0.073178 0.123869 -1.505055 -4.891680 -1.204782 2.843929 -0.156949 1.057400 0.799339 4.019057 2.933402 2.394200 -1.845253 2.613237 2.349274 -1.031343 2.217324 0.439394 -0.232433 -0.462444 1.399060 -0.415976 -1.674967 0.838062 -0.928610 -4.131220 0.914330 2.485982 4.153700 -1.834128 -0.807066 0.873327 -0.465078 1.171970 0.747770 2.807975 1.198540 -0.171377 4.093933 -1.926409 -0.442686 -5.093716 0.587450 -8.157882 -3.097008 -2.918670 2.792801 1.324772 1.012359 -1.495878 5.314030 0.555542 -0.259364 2.426804 2.801689 -1.649524 -0.192801 -2.593936 -0.876581 0.229006 -1.917321 -0.925596 1.620068 1.067872 -2.168755 -0.945783 1.266366 -0.909397 -1.674341 -1.137422 -2.603206 2.994968 -3.585573 -1.321042 -4.278718 1.121969 0.036610 -4.289438 0.936552 -0.936716 1.423469 0.668877 1.034384 0.428247 1.016154 1.589752 -0.899847 -0.617996 -2.618690 4.103671 2.053870 -0.540392 1.046627 2.390232 -0.312777 1.462633 3.705421 -0.183268 -2.723813 2.054681 -1.104253 0.842345 -1.188030 0.595873 3.192444 -2.045433 -1.129149 -0.429893 -0.474674 -0.795356 -0.125972 -1.914334 1.507253 5.720484 -0.610626 1.647152 0.646235 -1.927251 3.099570 0.544531 0.180794 2.413476 2.640993 0.796071 -2.944163 -2.118983 1.738185 3.043275 0.736702 -3.462249 -0.984288 0.259675 0.928601 -0.924821 0.968788 1.478599 0.290175 -1.087416 0.136936 -0.851784 4.648477 -1.797624 -2.449315 1.081770 1.321393 -1.667306 -3.479882 -0.460569 -0.962825 -1.777046 -0.189165 0.259001 0.735311 2.953643 -5.589244 2.484470 -0.410070 -0.615820 2.530396 -1.372822 0.228706 -5.602437 -0.178610 1.127912 2.399363 0.286520 -0.559842 -0.360502 -3.278612 1.754205 -0.125844 1.526733 -1.493724 2.906677 -1.764303 -1.177901 -1.827000 -2.420229 -1.216839 0.385622 -1.011508 0.768915 1.550555 -5.077677 2.016321 -1.781379 -1.773280 0.808195 1.184399 2.438727 -1.646050 -3.021690 1.319692 -1.221314 -3.925324 -3.622373 -0.792584 1.006417 -0.354945 -1.744398 -1.947475 -3.801031 3.365036 -1.717237 2.032049 1.730329 0.417625 4.482262 2.698041 -3.141760 -1.888831 -1.709245 0.628166 -1.332254 -0.399285 -0.881747 -0.770978 1.496066 3.288618 0.388793 1.047791 -0.974696 4.066647 -3.001194 -2.150758 2.060082 0.289146 -0.123746 3.190201 2.397648 -1.649350 -1.515127 -3.235738 0.254300 -0.478769 -1.092678 1.977151 -2.833287 -0.101370 1.218553 0.091650 -1.486905 1.295092 0.474915 -0.858956 -2.501685 5.397541 5.312595 -3.157790 0.809958 -2.197050 2.070593 -2.758899 -0.707845 -1.466043 0.723002 0.559222 0.826022 0.952080 1.663827 1.929806 -2.591725 -1.568935 -0.886069 +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.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/overlapping-subproblems-property.cpp__main = -0.044082 0.070186 0.467364 -0.244529 0.246952 -0.262432 0.166318 0.296231 -0.426068 -0.684023 0.100070 -0.783671 -0.834206 0.565268 -0.191584 -0.248266 0.791184 0.176322 -0.007737 -0.377005 0.030123 -0.352386 0.741405 0.825829 -0.721453 0.096991 -0.041272 0.436879 0.236506 0.322259 0.255144 -0.586503 0.144930 0.291455 0.473271 -0.207078 -0.040644 -0.114912 -0.536013 -1.079312 -0.083564 0.651667 0.168135 0.029639 0.196089 0.944400 0.741429 0.439986 -0.244820 0.432143 0.404834 -0.104751 0.297736 0.046781 0.046614 -0.503404 0.289260 -0.243501 -0.508798 0.249439 -0.066304 -0.929298 -0.239902 0.541860 0.763710 -0.124141 -0.118998 -0.245908 -0.021234 0.281693 0.179753 0.292616 0.503775 0.185385 0.532409 0.086237 -0.026065 -0.992637 0.049213 -2.116429 -0.606750 -0.387914 1.210504 0.444635 -0.315051 -0.358193 0.757485 0.187293 0.091328 0.535911 0.850182 -0.099041 -0.319390 -0.274183 -0.161867 0.438187 -0.412881 0.060904 0.320501 0.303813 -0.513758 0.004605 0.237847 -0.282057 -0.286641 0.271297 -0.195840 0.496763 -0.899853 0.159865 -0.800693 0.053324 0.580418 -0.896049 0.095125 -0.024995 0.312001 0.389467 -0.237023 0.305778 0.188063 -0.102097 -0.201010 0.307462 -1.054350 0.770102 -0.009153 0.113819 0.206932 0.468943 0.300245 0.103298 0.356491 -0.230872 -0.160719 0.225072 -0.242932 0.102723 -0.286015 -0.150967 0.573717 -0.355480 0.174714 -0.277476 -0.391092 -0.514982 -0.530523 -0.183654 0.258250 0.840106 -0.073630 0.505274 0.238485 -0.361459 0.408314 -0.058351 -0.080916 0.163880 0.514090 0.300528 0.172113 -0.335506 0.299339 0.769458 0.315622 -0.522439 0.160389 0.157278 0.122730 -0.179431 0.407913 0.214461 0.100101 -0.280375 -0.064039 0.319664 0.636917 -0.036426 -0.653945 -0.109497 0.244960 0.208650 -0.303441 0.175810 0.281907 0.027779 0.012515 0.066662 0.230176 0.661722 -1.496457 0.625146 0.218009 0.080922 0.417033 -0.116851 -0.300166 -1.127578 0.112030 0.400165 0.620192 0.299017 -0.188472 0.031283 -0.602955 -0.035301 0.081858 0.298845 -0.287504 0.453362 -0.161175 -0.174303 -0.426261 -0.721711 -0.083936 0.216358 -0.382686 0.279347 0.454084 -1.291447 0.570240 -0.259426 -0.410443 -0.422939 -0.068813 0.169082 -0.675028 -0.623447 -0.087132 -0.560823 -1.235901 -0.639180 -0.266012 0.053295 -0.170786 -0.160998 -0.100390 -0.425724 0.932285 -0.247048 0.484632 0.351440 -0.005855 0.909046 0.812205 -0.374620 -0.095182 -0.167181 0.446821 -0.699028 -0.154709 0.465999 -0.209580 0.165382 0.734555 -0.107426 -0.078060 -0.082086 0.588896 -0.264492 -0.635600 0.390136 -0.199641 0.122165 0.854833 0.462687 -0.625152 -0.102054 -0.781102 -0.235856 -0.028606 -0.352592 0.251712 -0.496286 0.034409 0.310828 -0.080852 -0.439728 0.268919 -0.074085 -0.301186 -0.135891 0.853587 1.066537 -0.620552 0.583740 -0.660830 0.413567 -0.740165 -0.480181 -0.101045 0.085423 -0.059616 0.012394 -0.065329 0.119092 0.247424 -0.503170 -0.566143 0.459119 +PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -1.051476 -1.290328 -0.271369 -1.940155 0.744565 1.656657 0.510501 -1.871217 -2.155679 -0.752507 1.212191 -2.996344 -0.943842 2.246321 -1.059984 1.784492 2.438002 -0.107414 -1.330338 -0.830712 1.571355 0.650799 3.060524 3.303760 -1.842974 -0.081764 -0.380808 1.013721 0.938013 -0.215317 1.254697 -1.410224 0.575286 -1.449072 -0.084379 -0.521351 -0.639039 1.049139 1.979718 -3.078954 -0.093408 1.239358 0.275494 -0.010432 0.306179 0.284888 1.355501 1.753009 0.316906 1.794373 1.469966 0.315124 1.046292 -0.051618 0.719757 -0.301196 0.562585 -1.130576 0.009574 -0.519828 -0.595024 0.293113 0.103648 2.381042 2.478407 -0.038542 -1.239563 0.383410 0.971928 0.717287 0.983446 1.873962 -0.688597 0.868044 0.943011 -2.395766 0.634694 -2.976429 0.853608 -2.622303 -1.439597 0.935601 1.753862 1.677546 0.983534 -0.314892 3.164162 -0.445688 -1.767075 2.077775 2.204965 -1.320474 -0.363789 0.003822 -0.960872 -0.033754 -0.858320 0.772518 -0.087624 1.736036 -1.866181 -0.418672 -0.045132 0.193641 -1.228844 -0.778829 0.134040 1.498021 -1.837157 -1.071250 0.045944 2.286864 0.077400 -3.381363 -1.485315 -1.847167 0.291947 0.049495 -1.901096 -1.306043 0.947219 -0.022744 -0.509240 -0.407213 -1.102528 0.982429 1.610635 0.815696 -0.612229 1.477594 0.579567 3.232952 -0.399201 -1.360669 0.461869 0.436424 0.169987 1.393716 -0.613415 -0.392233 0.267105 -1.667838 0.107559 0.974166 -1.039213 -0.757796 -0.036372 0.204434 -0.656434 7.081850 -0.597510 2.814657 2.606797 -1.542547 0.128922 -0.930086 0.815342 0.763529 0.892063 0.848977 -2.698824 -1.717082 2.217108 3.198128 1.083169 -1.876877 0.266455 1.352653 0.218474 -0.613673 1.266651 0.050293 0.153584 -1.163366 -0.307379 1.353817 3.651072 -0.740085 0.188790 0.184544 1.305242 0.008271 -1.175111 -0.266792 -1.434370 0.191475 1.302400 0.910852 1.101221 2.306091 -2.851159 1.885014 0.295242 0.497195 1.806265 0.973950 -2.051779 -2.129319 -1.083126 0.533828 1.547728 -0.790018 0.292757 0.727136 -2.567427 0.145070 0.594430 0.073883 -1.635558 2.039771 0.389813 -0.657313 -0.477242 0.547160 -0.707083 -0.488243 -0.940806 1.888341 0.349054 -2.069687 1.475478 0.679291 -1.027508 -0.083946 -0.752610 2.408011 -1.676582 -1.463473 1.224081 -1.086378 -1.495557 -0.557509 -0.634938 0.595151 0.775055 1.071415 -2.209848 -1.080948 2.146306 -0.903274 2.785174 1.124089 -0.877731 0.931750 -1.304201 -0.698606 -0.831142 -1.861909 0.523395 0.632956 -1.516488 -0.625397 -0.493521 1.545153 1.263130 -0.178661 -1.882144 0.216978 1.924095 -1.674318 0.102258 0.314839 0.655716 -1.851347 0.877489 0.799014 -1.566446 1.214647 -1.543792 -0.424004 -1.788888 -0.940454 2.151491 0.245212 1.093296 -0.476290 -0.112181 0.113987 0.825197 1.072244 -0.067139 1.249698 2.651421 1.388843 0.294838 -0.447841 -2.882087 1.449200 -2.028373 -2.090334 0.415100 0.181458 -1.442050 -0.719185 -0.645327 2.189460 1.902740 -1.230993 -1.276637 1.601772 +PE-benchmarks/largest-independent-set-problem.cpp__main = 0.299549 3.640907 3.617071 -2.492471 2.679867 2.611770 0.264047 0.172357 -0.974040 -2.193260 -0.753868 -3.874718 -4.153820 2.570235 -1.055751 -1.988768 3.945469 -0.807505 -0.453841 -1.048128 0.582265 0.872118 3.732835 3.790396 -4.470358 1.087383 2.140768 1.496800 0.712149 3.073379 -1.192236 -4.227170 -0.481182 2.216225 2.246519 -0.155315 -0.994717 -3.308559 -1.802248 -5.404674 -0.554344 2.082539 -2.010648 -0.255142 1.035278 2.106406 6.659663 1.890846 -1.605867 -0.550030 2.220339 1.840243 0.366427 -0.310311 0.866282 -1.543609 3.703077 0.481841 -0.911787 0.277339 -0.148601 -1.381512 -1.417739 3.851984 3.263776 0.408433 -1.046961 -1.014348 0.335896 0.208192 -1.441651 2.191554 2.651547 4.071084 1.956575 0.122734 0.917524 -4.415051 1.054059 -6.107080 -3.124725 -2.707782 2.186019 1.480140 -0.461441 -2.159785 4.446777 0.174544 1.714278 2.098176 5.434953 -1.224760 -0.457233 -2.211959 -2.540922 1.331760 -0.935658 1.055081 -0.981739 -0.468095 -2.632799 -1.795981 0.518549 -0.774759 -2.078157 1.808625 -0.567527 1.931832 -2.757777 1.278679 -3.241210 0.106343 1.534901 -5.402771 -3.019972 -0.480175 1.646445 0.569243 -0.952664 -1.745970 0.645871 1.581373 -1.807701 0.241916 -3.466678 3.898391 2.409599 0.008551 0.590334 0.505510 3.214874 1.284058 2.008487 -0.888033 -0.604634 -0.141642 -0.753256 -1.251752 -1.021272 1.049749 0.817408 -0.858818 0.573836 1.799118 -1.611985 -0.984606 -2.283711 -2.955709 1.594416 10.275509 -1.870863 2.241349 -0.272930 -3.683047 1.665993 0.048980 -3.074662 -0.280741 1.660188 4.091117 -2.883190 -1.471428 2.543961 4.278320 1.258319 -2.729985 2.399784 0.731921 -1.705605 -1.875226 2.425181 -0.084685 -0.099281 -1.354939 -1.300306 2.913981 5.095757 -0.433325 -6.590944 0.127066 1.570802 1.736913 0.464498 0.863263 0.973803 0.339099 2.022450 -0.654221 3.007549 3.490812 -8.843726 2.825873 1.447237 -2.515823 3.010749 -0.659391 -0.962500 -0.836271 1.951136 4.036150 2.471754 1.196449 -1.363758 -2.035042 -2.985629 -0.442180 1.076960 1.741803 -2.513415 2.510515 0.844268 -3.053406 -2.726401 -4.017682 -0.663780 0.354614 -3.621480 0.899098 -1.197563 -7.940399 5.197420 0.571536 -0.429194 -1.923553 -2.941568 0.676846 -3.337100 -3.879278 0.130170 -1.717263 -3.284154 -0.483275 -1.925006 1.034964 1.047712 2.519098 -3.501139 -4.077457 3.200384 0.096920 2.945946 2.245712 2.105775 3.731577 2.117299 -0.776824 -1.716123 -2.603148 4.928535 0.470078 -2.246427 0.743020 -2.275903 1.170834 3.936610 -2.414601 -0.515161 -2.979975 1.629571 -1.683285 -1.295715 0.747453 -0.559695 -2.129081 0.815844 1.537557 -0.559958 -1.296135 -3.774629 -1.490445 -1.882086 -2.961654 0.243494 -2.432854 -0.531302 3.500433 -1.727620 -2.766365 1.228582 -1.052235 -0.983465 0.489964 2.284771 4.337158 -3.110845 2.807579 -3.586621 3.093089 -4.488572 -3.777881 0.862847 -2.991522 0.086404 -1.695140 -1.321029 0.742967 0.011568 -0.230981 -0.881175 1.581213 +PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -1.299021 2.552672 1.527494 -4.536595 4.394886 6.172956 0.840050 -2.590408 -3.596551 -2.421386 0.283654 -7.147463 -5.361623 5.656712 -2.184409 1.095511 7.625245 -1.031798 -1.714832 -1.930009 3.892988 1.731249 8.064093 8.422522 -7.400596 1.022538 3.368880 1.946309 1.409001 2.966392 -0.068377 -7.400286 0.452728 -1.086699 2.046903 -1.725563 -1.928522 -1.799385 2.625921 -10.114482 -0.979417 3.034453 -2.079341 -0.172793 0.998470 1.787323 8.980541 4.404120 -2.488394 2.195420 4.820107 3.087750 1.328718 -0.439363 1.231672 -0.760278 3.324823 1.195868 -0.117435 -0.641778 -1.051594 0.207620 -0.961667 7.274097 7.219263 0.158364 -2.884627 0.512505 1.151897 0.959758 -0.892581 5.268027 2.222669 5.199368 3.985425 -3.804908 0.044507 -11.252894 2.297442 -10.569109 -4.782206 -2.037751 2.740339 1.864636 2.119294 -1.742971 9.587667 -0.741220 -0.333446 5.983672 8.802123 -3.714422 -0.596874 -2.884540 -4.938005 1.200312 -2.089390 2.300304 -0.507454 0.645042 -5.301767 -5.432134 0.019792 -0.072704 -4.106433 -1.532681 -0.763806 3.631175 -4.782334 -1.035781 -3.956173 2.750315 0.322776 -10.430584 -6.517439 -3.391671 1.626013 0.635038 -3.417833 -5.368293 1.780640 2.347775 -2.808362 -2.082720 -1.085255 4.688425 5.536326 0.812468 -0.069128 1.220085 4.074093 7.034212 2.308274 -2.998395 -0.363380 0.603261 -0.516440 0.195676 -3.066091 0.827589 1.986243 -3.442505 1.724161 4.022509 -3.081037 -2.105806 0.802183 -4.492042 0.895161 21.608472 -2.744104 5.779730 3.043564 -6.725992 2.181267 -1.306265 -2.498227 1.353163 3.750871 5.926958 -7.222401 -3.927765 5.615569 8.905147 2.727975 -5.748921 1.005374 2.476268 -1.167190 -2.738737 4.004642 -0.119228 -0.343526 -2.890541 -1.681011 4.940923 10.857757 -2.356063 -6.092044 0.703180 6.063019 0.874607 -1.766799 0.163090 -4.215556 0.167009 4.824300 0.154446 4.944206 6.899106 -14.286249 5.082595 1.153597 -2.158215 4.238708 1.650064 -3.638391 -3.397450 1.659343 5.134633 4.597991 0.283861 0.348826 -1.490750 -6.835604 -0.103425 2.045051 2.218248 -5.379373 6.081440 0.969971 -4.787611 -3.748829 -1.699040 -2.111295 -2.278028 -4.399275 3.527916 -0.714571 -11.555738 7.610746 1.431789 -1.653161 -1.307396 -3.913352 4.439209 -5.830106 -6.884955 2.928083 -2.544200 -3.078027 -0.050398 -2.832314 2.727439 3.237062 4.750819 -6.774908 -7.583744 5.573109 -0.299952 6.839237 4.017375 1.396650 5.071230 -2.517795 -2.171222 -4.537552 -4.963110 5.881414 2.319285 -4.446911 -2.405722 -3.118629 3.841457 6.458533 -2.411499 -3.382252 -3.806804 4.766878 -4.502208 0.108712 1.217431 1.967512 -5.004886 0.987241 2.635512 -2.527768 -0.265379 -5.835453 -0.461487 -4.353255 -4.578223 3.038815 -3.092154 0.549156 3.497066 -2.430816 -2.126897 2.758412 1.092596 -0.494405 1.780420 5.403237 5.472392 -3.425368 1.593963 -7.498469 4.814209 -7.920302 -7.077119 1.250746 -3.455669 -2.284587 -2.963834 -2.237327 3.908283 1.881896 -0.464075 -2.279506 2.428685 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 0.078742 0.154009 0.297585 -0.118844 0.200660 -0.063741 0.068551 0.305923 -0.263417 -0.336957 -0.073313 -0.359666 -0.407061 0.265968 -0.053746 -0.229091 0.429813 0.174524 0.054477 -0.130908 -0.175314 -0.059641 0.311396 0.379154 -0.306265 0.162140 -0.156368 0.143200 -0.116231 0.451869 0.045698 -0.546330 0.007346 0.394781 0.229253 -0.141888 -0.115667 -0.072194 -0.421837 -0.653736 -0.006456 0.530235 0.104896 0.000000 0.209192 0.274157 0.463351 0.139210 -0.020182 0.252546 0.070420 0.148008 0.177167 0.015525 0.115248 -0.097571 0.189007 -0.400257 -0.302287 0.209055 -0.043170 -0.406008 -0.230190 0.199011 0.267788 -0.051100 -0.114348 -0.342296 -0.096894 0.114957 0.064460 0.117696 0.247206 0.097962 0.128594 0.381213 -0.005402 -0.145765 0.126738 -0.865969 -0.336725 -0.249936 0.704450 0.591011 -0.243431 -0.292961 0.374151 -0.078600 0.171702 0.176950 0.379723 0.025703 -0.138603 -0.110176 -0.064038 0.216420 -0.086990 -0.131116 -0.076297 0.120960 -0.227720 0.011518 0.147199 -0.209741 -0.147631 0.316374 -0.082807 0.246771 -0.557851 0.146199 -0.448670 0.158800 0.326005 -0.307031 -0.096280 0.080247 -0.068701 0.237738 -0.155754 0.182532 0.165096 -0.089517 -0.176821 0.267784 -0.686620 0.373273 -0.122319 -0.063151 0.118724 0.185414 0.144025 -0.022592 0.058036 -0.113973 -0.025066 0.199940 0.063642 -0.065844 -0.081267 -0.035087 -0.072388 -0.156282 0.136408 -0.190688 -0.221652 -0.183079 -0.802292 -0.128383 0.130038 0.249689 -0.138401 0.198403 0.008995 -0.186454 0.196210 0.051929 -0.122581 -0.025689 0.257211 0.210667 0.343224 -0.096909 0.067547 0.361084 0.159853 -0.021856 0.245278 0.023582 -0.006130 0.018461 0.315335 0.025336 0.090119 -0.153684 -0.059370 0.000919 0.380002 0.162790 -0.396205 -0.102845 0.126752 0.146186 0.182048 0.156969 0.187876 0.001771 0.078770 -0.073200 0.115846 0.293082 -0.727868 0.363533 0.078929 -0.075503 0.147785 -0.115738 0.008616 -0.283135 -0.038713 0.201730 0.471976 0.147374 -0.031720 -0.068232 -0.246038 -0.062907 0.039163 0.190134 -0.198817 0.218547 0.001199 -0.219183 -0.095465 -0.486366 -0.029439 0.126156 -0.346016 0.056077 0.347948 -0.674070 0.251567 -0.033715 -0.114481 -0.189578 0.052045 0.009343 -0.250883 -0.268894 -0.094623 -0.216868 -0.651228 -0.099756 -0.226202 0.059512 -0.099638 0.004663 -0.004153 -0.129777 0.479769 0.067081 0.231342 0.217774 -0.040322 0.347200 0.535164 -0.168154 0.172699 -0.233460 0.373279 -0.442035 0.121038 0.493669 -0.237241 0.017439 0.394294 0.037594 -0.104835 -0.186325 0.320279 0.114556 -0.157268 0.209555 -0.412360 0.169674 0.388961 0.276564 -0.248336 -0.109021 -0.400099 0.042984 0.022354 -0.055163 0.100630 -0.319150 -0.041328 0.222614 -0.095574 -0.404461 0.093513 -0.116036 -0.296440 -0.074656 0.421402 0.185799 -0.205278 0.593290 -0.186320 0.179588 -0.285245 -0.062839 -0.240681 -0.068554 -0.093594 -0.000121 -0.191488 -0.011871 0.039585 -0.027828 -0.236750 0.204018 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/longest-palindrome-substring.cpp__main = -0.449172 0.505532 1.906126 -1.299923 2.678807 0.279794 0.902264 0.576057 -1.198252 -2.036003 -0.364494 -1.287748 -3.903985 1.965052 -0.918181 0.430510 2.030753 -0.551491 0.342248 -2.018393 2.187191 -2.536210 3.407483 1.802403 -4.276876 0.404319 0.598318 2.695560 1.129610 2.806486 0.600424 -1.311548 -0.087990 0.059402 3.330593 -1.164021 0.058652 -0.123339 -1.823244 -4.487532 -1.357789 2.922561 -0.531751 1.179191 1.074230 4.329118 2.669897 2.148522 -2.120774 2.444782 2.102636 -0.914302 2.172052 0.274910 -0.797590 -0.607238 1.598005 -0.184148 -1.671019 0.913803 -0.870939 -3.947547 1.072977 2.353840 3.915291 -1.983242 -0.676711 0.993320 -0.457631 1.100063 0.386020 2.782159 0.946950 0.256328 3.898082 -1.365074 -0.373359 -4.437409 0.673567 -7.433952 -2.802280 -3.047632 2.159858 1.458022 0.589873 -1.353215 5.115447 0.806701 -0.075572 2.575892 2.507278 -1.195687 -0.010432 -2.824618 -0.963315 0.123410 -1.793976 -1.283779 1.511805 1.218877 -1.860046 -0.893004 0.640030 -0.984115 -1.548810 -0.764974 -2.889222 2.727043 -3.505091 -1.267990 -4.207265 0.818095 -0.063437 -4.180171 0.744631 -0.502640 1.432212 0.582098 1.640872 0.636158 0.951695 1.724090 -0.724466 -0.201544 -2.468272 4.035248 1.860530 -0.707468 1.018370 2.271339 -0.337219 0.671009 3.719141 0.076107 -3.025159 2.062534 -1.124938 0.497445 -1.045057 0.950666 2.928757 -1.943218 -0.937039 -0.332128 -0.271343 -0.828316 -0.740897 -2.340171 1.605608 5.068963 -0.741247 1.339519 0.062938 -1.956828 2.908516 0.824792 -0.062474 2.156290 2.261529 1.092184 -2.498612 -1.724698 1.640617 2.645039 0.486147 -3.068776 -0.735513 0.224193 0.804147 -0.760778 0.919106 1.742723 -0.165137 -0.868363 0.134608 -1.270121 4.161695 -1.479594 -2.700641 1.053744 1.395297 -1.809163 -3.113346 -0.254957 -0.688410 -2.049689 -0.097613 0.061154 0.488915 2.572517 -5.279993 2.232066 0.036754 -0.637394 2.161492 -1.840182 0.563989 -5.459304 -0.159063 1.209750 1.864677 0.130051 -0.805630 -0.613081 -2.848307 1.989741 -0.060002 1.662617 -1.214466 2.828311 -1.805018 -1.184466 -1.863567 -2.298295 -1.115483 0.544664 -1.060311 0.499552 1.128886 -4.805195 1.947136 -2.082909 -1.646436 0.764502 1.429997 2.045830 -1.495913 -2.898134 1.138281 -1.086130 -3.774628 -3.593817 -0.913156 0.832155 -0.053594 -1.841922 -1.780206 -3.765369 2.552572 -1.721706 1.381602 1.563193 0.644051 4.473474 2.625282 -2.951676 -1.786114 -1.618640 0.744634 -1.138853 0.159818 -0.747632 -0.623631 1.295077 2.976130 0.116807 1.303900 -1.215721 3.681747 -2.242444 -2.043495 1.711838 -0.396181 -0.045674 2.819377 2.042829 -1.141435 -1.574987 -3.109484 0.612639 -0.671737 -0.584988 1.537252 -2.968993 -0.671718 1.393875 -0.002997 -1.706266 1.035573 0.438414 -0.879382 -2.586908 5.005921 4.977840 -3.159548 1.140902 -1.731988 2.026868 -2.583696 -0.441273 -1.649608 0.438859 1.257986 0.907850 0.968482 1.251681 1.802651 -2.568075 -1.213459 -1.118758 +PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -0.630464 -0.613798 -0.156666 -0.742700 0.477087 0.451571 0.369549 -0.542657 -1.209239 -0.787262 0.427429 -1.516430 -0.956904 1.430896 -0.477210 0.926734 1.790102 0.329182 -0.409716 -0.592806 1.065008 -0.663450 1.873423 2.116231 -1.281138 -0.049199 0.096310 0.723741 0.440800 0.197284 0.590928 -0.969692 0.488368 -1.064553 0.389839 -0.870935 -0.215702 0.734622 0.726131 -2.294432 -0.164462 0.770693 0.335643 0.053887 0.072719 0.867139 1.015853 1.142725 -0.287040 1.283416 0.909210 -0.157057 0.697275 0.100217 0.213494 -0.030329 -0.042869 -0.167155 -0.352368 0.050266 -0.408892 -0.859400 0.205342 1.350125 1.792972 -0.235147 -0.563297 0.328275 0.166917 0.471336 0.530266 1.057224 0.096876 0.121079 1.030836 -1.593025 -0.090238 -2.719383 0.257151 -3.192502 -0.973409 -0.072687 1.286185 0.629972 0.582914 -0.154244 2.067827 -0.164508 -0.633878 1.505114 1.588378 -1.005255 -0.404710 -0.432748 -0.557189 0.239575 -0.782801 0.172684 0.588791 0.734722 -1.185012 -0.805696 0.329536 0.076290 -0.742968 -0.819576 -0.249261 1.121598 -1.529072 -0.872059 -0.982980 0.680538 0.041387 -2.123229 -0.131082 -0.887779 0.373012 0.450126 -0.977316 -0.766525 0.607125 0.214524 -0.260713 -0.448993 -0.535637 1.050725 0.590579 0.257603 -0.024883 0.793385 0.192486 1.733428 0.607259 -0.763683 -0.077842 0.594617 -0.480233 0.600386 -0.807850 -0.481643 0.978874 -1.280820 -0.030446 0.247099 -0.802775 -0.594496 0.670790 -0.233771 0.042790 3.748849 -0.227428 1.418960 1.274291 -1.087593 0.787390 -0.432303 0.394349 0.684132 1.086280 0.559419 -1.536615 -1.071810 1.041007 1.954502 0.755183 -1.329884 -0.596479 0.413742 0.494629 -0.176554 0.661037 0.289354 0.036550 -0.755961 -0.080276 0.599226 2.285484 -0.740247 0.114193 0.105896 0.886611 -0.307651 -1.650996 -0.145201 -1.246290 -0.097897 0.314389 0.342986 0.492031 1.550559 -2.321862 1.285658 -0.281317 0.282916 0.862353 0.410854 -0.985248 -2.370366 -0.282591 0.523797 1.241307 -0.071051 0.280373 0.373185 -1.661011 0.099402 0.224320 0.460396 -0.942466 1.401160 -0.234055 -0.565902 -0.601334 0.185395 -0.459442 -0.622584 -0.253984 1.038221 0.701604 -1.662472 1.017376 -0.074099 -0.767248 0.117902 0.065927 1.248828 -1.290926 -1.378021 0.793256 -0.653162 -1.093699 -0.756744 -0.393849 0.548786 0.237499 -0.332313 -0.814967 -1.306748 1.456791 -0.571240 1.518613 0.716592 -0.368000 1.298745 -0.070354 -0.838831 -0.804942 -0.641530 -0.037753 -0.442030 -0.630032 -0.746269 -0.250123 1.036923 1.362726 0.152309 -0.667227 0.190010 1.613019 -1.123738 -0.364302 0.616171 0.515478 -0.585344 0.898133 0.809602 -1.382126 0.188470 -1.163561 0.034908 -0.569425 -0.674255 1.108756 -0.657169 0.413912 0.042451 -0.080585 -0.047279 0.633474 0.715336 -0.037894 0.161191 1.958702 1.395440 -0.491415 -0.069825 -1.625643 0.756926 -1.549139 -1.129897 -0.134839 0.744233 -0.696916 -0.148547 0.102621 1.066135 0.935352 -0.857301 -0.865205 0.446283 +PE-benchmarks/program-wish-womens-day.cpp__main = -4.406714 -5.025659 -3.534930 -5.100176 2.109747 2.646767 2.063521 -5.063902 -8.304454 -2.549737 4.728863 -9.725164 -4.552054 9.342314 -3.731959 5.794974 10.243368 1.981171 -3.987840 -3.669870 7.623333 -1.645882 11.094075 12.949909 -7.729772 -0.517451 -0.216501 2.031666 2.005052 -1.761697 6.336281 -6.244700 2.403812 -6.384386 2.675375 -4.548314 -1.619682 6.928441 7.442055 -13.696587 -0.837966 4.410580 4.336720 0.090111 0.468207 4.877537 4.041528 7.181504 -0.495466 7.205133 6.629667 -0.107825 5.146788 -0.199566 1.721655 -1.085162 -2.240287 -0.187132 0.786199 -0.283411 -2.935462 1.122497 1.975451 9.121717 11.215318 -0.965070 -5.028718 1.088205 3.263978 3.522183 2.718890 6.875214 -0.236360 0.942008 3.802950 -10.713201 -2.307082 -19.357603 3.983429 -17.429077 -5.042828 2.666556 7.109940 4.082447 2.900049 -1.216339 13.013589 0.020751 -6.185194 10.962330 9.701005 -3.637513 -1.691619 -1.858471 -4.516656 1.074938 -2.981217 3.253358 4.372143 5.986200 -7.332867 -5.202477 -1.867404 -0.037216 -4.329042 -5.440292 -0.206570 5.849596 -4.919224 -4.115802 -2.547219 8.698658 1.544566 -14.012964 -1.323255 -8.087700 -1.089941 1.854525 -7.734375 -3.745325 3.710520 -0.137805 -2.167147 -1.611005 -3.242485 4.941140 4.186898 2.899915 -2.156748 4.843200 1.354976 10.230079 -1.227854 -7.133664 1.111499 2.447850 -1.040289 4.837712 -6.177000 -2.046562 7.384203 -6.640426 1.208076 0.277497 -4.314592 -4.139664 4.879435 -1.499570 -2.100443 24.689336 -2.498548 10.665578 8.450776 -5.506994 5.192078 -2.488934 3.478136 3.944445 5.690098 2.123219 -9.521045 -7.942938 7.809510 12.815159 4.530947 -7.511743 -3.557124 4.578851 1.784566 -2.110739 5.436733 0.622845 -1.331173 -3.312718 -0.754522 4.651117 12.926591 -3.312285 3.576208 -0.973588 10.738443 -0.137552 -6.960432 -1.162091 -10.425592 -0.111194 4.353016 3.657679 4.749751 8.525624 -14.855784 7.960996 -0.497939 4.060457 3.561131 2.977579 -7.241421 -15.527795 -2.072582 1.695814 6.766848 -2.233286 2.301058 3.702166 -10.314718 1.370384 1.761030 1.236458 -6.563147 8.657703 -1.773074 -1.560110 -2.393417 4.500927 -5.153062 -4.565651 -1.823946 8.276658 5.468122 -7.876765 5.352724 1.165245 -3.526397 -0.784013 -0.771858 7.781514 -7.086585 -7.328275 4.913641 -3.098305 -3.459071 -4.226130 -2.429294 3.892058 0.364639 1.807713 -5.601791 -7.108342 8.604983 -3.023355 10.219393 4.276875 -3.373354 4.269375 -3.799734 -4.243670 -4.384809 -5.740363 0.466986 1.142742 -4.719638 -4.199282 -1.275643 6.231179 5.380015 0.956442 -7.334974 0.871039 9.446898 -4.638731 -0.638885 1.175824 0.793475 -3.310898 4.203404 4.063538 -7.789255 2.846662 -8.609892 1.756709 -5.756639 -3.065598 8.006362 -1.264210 3.358449 -2.847803 -1.081608 2.157161 4.407088 6.471909 0.180943 4.203900 10.396906 4.778861 0.447485 -2.330637 -10.473273 4.187588 -7.747623 -6.529013 -1.376085 2.529015 -5.870955 -0.998387 -1.413135 8.126580 5.888347 -3.727644 -6.318346 6.005325 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 0.513293 0.033202 2.404144 -1.164839 2.539286 -1.600534 0.239961 1.178680 -1.376737 -0.723409 -0.546108 -1.376047 -1.902410 1.278919 -1.023627 -0.518126 1.431909 -0.032947 0.814966 -1.340110 0.017578 -0.775535 1.472082 -0.297071 -2.231869 0.480303 -0.516357 1.238906 0.321831 2.524992 0.855016 -1.792476 -1.077985 1.340660 1.874199 -1.194533 -0.911402 -0.173201 -1.317140 -3.746322 -0.892531 3.475916 -1.917717 1.027786 3.219975 6.105175 1.421248 0.577455 -1.782750 3.612411 -0.144912 -0.096276 2.167335 -0.470716 -1.684417 -0.135998 2.775990 -0.368082 -2.008482 1.938293 -1.285093 -1.104153 1.031934 1.328289 1.877723 -1.948299 -1.659793 0.302930 1.247250 0.489053 0.213517 2.431960 0.594734 1.556245 1.831735 0.983498 -0.406808 -1.997452 1.101214 -5.128358 -1.910091 -1.024040 2.151177 0.986520 -2.411398 -0.927817 3.396011 0.394875 -0.097205 3.434017 1.065562 1.202982 0.177323 -1.802549 -0.959937 -0.762442 0.095457 -2.629714 0.845795 2.055058 -1.150175 -0.536627 -1.048877 -1.860546 -0.857296 1.640673 -1.788528 1.680981 -3.228233 -0.897549 -2.504686 1.856350 0.369515 -2.013381 -0.617840 1.327452 2.109655 1.091457 1.354800 1.576181 1.658491 0.305576 -1.297208 2.833770 -1.794553 3.056319 0.071079 0.071605 -0.061165 2.113993 -0.259475 -1.923293 1.668191 -0.227584 -1.560392 2.055047 0.414412 -0.233431 -0.350414 1.034231 0.770675 -0.490875 0.373325 -1.020885 -0.609318 -1.327303 -3.396151 -2.132108 0.067657 0.985358 -1.795716 1.180571 -1.206861 -1.552189 0.272696 1.418517 0.068165 -0.151492 1.186043 2.540303 0.296172 -0.224139 1.410922 1.409198 0.206745 -1.784165 0.971524 0.598068 0.080245 1.366971 1.664338 1.712101 -0.834937 -0.746486 0.136811 -3.493278 3.736337 0.725053 -3.369219 -0.679431 1.628151 -0.572598 -0.178177 1.063955 1.570925 -2.091625 0.837480 -0.391828 -0.103633 1.057379 -5.404549 1.828849 0.684940 -0.225511 -0.007579 -1.426970 0.681505 -4.251174 -2.669944 0.604641 1.333334 0.425353 -1.145332 -0.569453 -0.713874 2.142630 -0.061845 1.546623 -0.200470 2.457361 -0.974205 -1.484193 0.409643 -0.863555 -0.269405 1.848771 -1.194931 0.230146 0.602107 -4.309721 0.530885 -1.607988 -0.431726 0.132934 2.545482 1.243520 -0.272691 -1.331487 -0.086058 -1.111109 -3.720294 -2.366853 -2.085155 -0.389578 0.727563 -0.046329 -0.896962 -2.420209 0.739897 -1.346257 0.307478 1.457087 -0.866214 3.890845 0.524760 -1.533043 0.274942 -2.354661 1.790312 -0.300193 3.398078 2.068945 -0.927806 0.152734 0.658146 -0.739564 0.593196 -2.887724 1.797584 0.063385 0.433451 0.440475 -2.888264 0.631006 2.280258 0.986487 0.083845 0.267290 -1.668227 1.263646 -2.338749 3.632431 0.520305 -2.122004 -2.983250 0.132985 -0.507276 -2.301426 -0.587505 -0.257862 -1.723930 -1.222980 2.876092 4.675607 -1.909310 3.156237 0.625935 2.157669 -0.961638 0.507757 -2.710369 -1.256422 1.319731 0.626501 -0.237813 -0.080118 1.883486 -2.288994 -0.866779 0.574615 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = 0.002986 0.391507 0.364670 -0.139050 0.401144 0.215880 0.144640 0.134637 -0.236229 -0.392533 -0.150825 -0.461288 -0.647551 0.473558 -0.071498 0.014936 0.788707 0.178914 0.052126 -0.236684 0.139503 -0.307852 0.754087 0.753239 -0.695094 0.214082 0.275759 0.275645 0.049996 0.556905 -0.199344 -0.589298 0.225618 -0.041193 0.324838 -0.362659 -0.101818 -0.221442 -0.212457 -1.130027 -0.094637 0.278408 -0.066026 0.007449 0.096302 0.438295 0.918019 0.386186 -0.192564 0.334923 0.259461 0.051866 0.231209 0.091374 0.118866 0.051999 0.325153 -0.135476 -0.349671 0.152637 -0.040796 -0.758148 -0.158560 0.493145 0.659862 -0.089421 -0.129380 0.001742 -0.143395 0.060615 -0.041050 0.332496 0.341771 0.294355 0.414768 -0.298848 0.015239 -0.816390 -0.072107 -1.503385 -0.600952 -0.573521 0.526803 0.217246 0.171346 -0.131570 0.790324 -0.006469 0.299579 0.242095 0.836940 -0.518280 -0.191613 -0.317752 -0.086374 0.280678 -0.311246 -0.005127 0.137149 -0.142867 -0.456164 -0.463255 0.475034 -0.044147 -0.361271 -0.020501 -0.184134 0.467644 -0.758768 -0.236304 -0.856717 -0.177975 0.014519 -0.817178 0.035098 0.058635 0.359951 0.343597 -0.095714 -0.392878 0.161048 0.323047 -0.129560 -0.231523 -0.409716 0.645888 0.217666 -0.096055 0.272831 0.206218 0.297086 0.538775 0.616762 -0.122320 -0.192396 0.229729 -0.263193 -0.077060 -0.277125 -0.090996 0.156642 -0.462924 0.051369 0.207423 -0.365701 -0.104674 -0.074578 -0.294193 0.314608 1.196398 -0.121654 0.316588 0.106903 -0.614949 0.382625 -0.163884 -0.315656 0.157697 0.485429 0.471973 -0.470639 -0.308916 0.169490 0.709844 0.285883 -0.515556 -0.076734 -0.130165 0.047983 -0.115744 0.310951 0.137918 0.129851 -0.311593 -0.069124 0.250495 0.968456 -0.303745 -0.608076 0.064967 0.055303 -0.020181 -0.540838 0.004597 -0.141377 -0.084760 0.041990 -0.056541 0.180452 0.613161 -1.195982 0.554152 -0.156673 -0.329181 0.448584 -0.038607 -0.129589 -0.555307 0.231053 0.528820 0.602339 0.168150 0.024070 -0.151633 -0.590641 -0.080421 0.078878 0.325604 -0.341073 0.486881 0.019889 -0.503947 -0.401859 -0.400093 0.031945 -0.193073 -0.268839 0.219391 0.301525 -1.257103 0.639782 -0.115446 -0.319125 0.079611 -0.095962 0.281887 -0.607057 -0.699471 0.181331 -0.225908 -0.544989 -0.212781 -0.239693 0.265059 0.029849 -0.115538 -0.264686 -0.608360 0.546742 0.017600 0.334940 0.407566 0.198314 0.761736 0.316308 -0.445816 -0.259211 -0.221165 0.264991 -0.408391 -0.133131 -0.063747 -0.339226 0.353690 0.932011 -0.000523 -0.006560 -0.253495 0.555996 -0.552393 -0.298303 0.408443 0.213950 -0.090570 0.344633 0.452868 -0.414829 -0.306825 -0.484120 -0.083380 0.012947 -0.405925 0.197441 -0.660316 -0.039611 0.505389 -0.198142 -0.365434 0.334313 -0.104916 -0.100969 -0.208265 0.637504 0.786794 -0.606270 0.366157 -0.457187 0.326897 -0.760278 -0.405764 -0.060996 0.101411 -0.121680 -0.056138 0.053545 0.156786 0.063097 -0.230431 -0.245056 -0.088057 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -0.544280 1.042180 2.007060 -1.893732 1.667394 1.856089 0.683329 0.175351 -1.928399 -2.858838 0.127323 -4.338969 -4.278867 3.109592 -1.132466 -0.323263 4.420823 0.195660 -0.624898 -1.226696 1.104067 -0.133162 4.624070 4.983479 -4.181808 0.511849 0.229499 2.362722 0.867560 1.674923 1.191919 -3.583971 0.519529 0.451481 1.794088 -0.946062 -0.649516 -0.761109 -1.319174 -6.262884 -0.766082 3.227657 -0.888263 0.080280 1.033051 1.955971 4.936582 2.576015 -0.857521 1.583685 1.890901 0.513631 1.697835 0.015589 0.320883 -1.595719 0.869242 -1.794520 -1.486511 0.497351 -0.440505 -3.172505 -0.931652 3.717533 4.133104 -0.105677 -1.338686 -0.542472 0.135577 0.826578 0.117566 2.663606 1.877290 2.343818 2.672812 -0.885809 0.278626 -4.327553 1.020365 -6.786376 -3.381793 -2.038448 4.136724 3.696969 0.037947 -2.296371 5.153247 -0.184151 0.288695 3.651262 4.992370 -1.802833 -0.945990 -2.099704 -1.269261 1.499712 -1.915181 0.681092 -0.611444 1.286323 -2.996495 -1.333370 0.588951 -0.741991 -2.190823 0.231132 -0.935515 2.821186 -3.919805 -0.316523 -3.682830 1.132786 1.461948 -5.558420 -1.904965 -0.746754 1.006763 1.474297 -1.479705 -0.894396 1.134334 0.564611 -0.760364 -0.001965 -4.029440 3.713320 1.656402 -0.095147 0.594437 2.555149 1.956182 2.714085 1.550913 -0.932337 -0.670540 1.170625 -0.789593 0.253402 -1.249877 0.043750 1.332515 -2.150586 -0.564131 0.942159 -1.974808 -1.694578 -2.885470 -1.650353 1.092607 9.606934 -0.848216 2.768184 1.819076 -3.020969 2.215379 -0.693075 -1.017022 0.809479 2.155677 2.949312 -3.205635 -2.053307 2.334734 4.946529 1.576895 -2.532662 1.515156 1.075112 0.235456 -1.740932 2.573912 0.728239 0.549586 -1.678759 -0.488938 2.619556 5.268799 -1.016782 -3.103445 0.096812 1.450929 0.957502 -1.604984 0.504505 0.199037 -0.415788 1.704330 0.432575 1.666632 3.840890 -5.873544 3.249978 0.989125 -0.426014 2.538353 -0.299881 -1.707238 -3.125272 0.588334 2.761665 2.948391 0.653210 -0.548847 -0.786244 -3.936194 -0.091245 1.257577 1.646152 -2.252264 3.382127 -0.346840 -1.763048 -2.379738 -2.634078 -1.231347 -0.024168 -2.646991 1.852969 1.077721 -5.298900 3.893875 -0.104267 -1.732646 -1.094938 -1.562617 2.322559 -3.779262 -3.937848 1.018771 -2.269253 -4.954089 -1.560160 -1.688699 0.980762 1.012346 -0.128080 -2.684653 -3.154882 4.480178 -0.299723 3.386983 2.276463 0.468308 3.954239 2.525739 -2.073252 -1.024495 -3.181079 2.860670 -0.890054 -1.787531 -0.211049 -1.574495 1.734247 4.354718 -1.100807 -1.438191 -1.232538 3.146278 -2.261117 -2.076164 1.359322 -0.361655 -1.208379 2.279758 1.999942 -2.380562 -0.369204 -3.909809 -0.324777 -1.305771 -2.536335 1.606101 -2.743248 0.295400 2.260776 -1.044579 -1.891075 1.453596 0.274564 -0.977860 0.150684 4.433491 3.776534 -2.184043 2.041053 -4.188676 2.756381 -4.424305 -3.098048 -0.095673 -0.303466 -0.289763 -0.883452 -0.392227 1.385634 1.839392 -2.042358 -2.217149 1.574006 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.324818 0.247060 0.132496 -0.534571 0.693969 0.504021 0.281649 -0.240057 -0.643701 -0.754148 -0.078062 -0.808089 -0.916761 1.069675 -0.213394 0.652327 1.623757 0.275231 -0.016763 -0.522863 0.933105 -0.843226 1.560671 1.657315 -1.332966 0.172572 0.814044 0.561383 0.292414 0.539756 0.015073 -1.013090 0.460892 -0.955001 0.539343 -0.934915 -0.162688 0.147798 0.478658 -2.170575 -0.199720 0.144830 -0.178455 0.046774 -0.045855 0.512881 1.394564 0.911347 -0.582420 0.885673 0.825325 0.099492 0.350669 0.146758 0.104518 0.348309 0.017985 0.091119 -0.252517 0.167901 -0.206026 -0.984377 0.204180 1.130697 1.477069 -0.277846 -0.343634 0.546546 -0.073477 0.178267 0.052308 0.855874 0.248368 0.281276 0.950575 -1.868018 -0.291281 -2.837082 -0.012656 -3.072155 -1.057795 -0.721477 0.560891 0.014279 0.761643 0.144048 1.757731 -0.108769 0.102080 1.005895 1.538430 -1.143305 -0.273539 -0.693415 -0.417505 0.332039 -0.647323 0.062740 0.429686 -0.043587 -0.940075 -1.254342 0.756943 0.157279 -0.746938 -1.023090 -0.310364 1.031631 -1.286244 -0.970935 -1.356883 0.084703 -0.348854 -1.805189 0.138794 -0.467492 0.827670 0.441417 -0.423599 -1.217554 0.330705 0.761164 -0.232756 -0.852424 0.033348 1.005248 0.757048 -0.015967 0.272810 0.371723 0.355722 1.642602 1.245089 -0.450135 -0.336622 0.495030 -0.586658 0.066671 -0.816262 -0.278186 0.762880 -1.081804 -0.053874 0.632926 -0.693398 -0.382639 1.268883 -0.685724 0.399345 3.448789 -0.192308 0.840069 0.675341 -1.234383 0.745194 -0.394808 -0.240512 0.601262 1.078208 0.789307 -1.771309 -0.825558 0.580226 1.549970 0.605353 -1.266081 -0.990279 -0.101029 0.214687 -0.130522 0.414649 0.210336 0.040459 -0.616322 -0.102367 0.579751 2.110225 -0.838053 -0.364415 0.184993 0.758643 -0.463897 -1.800719 -0.211894 -1.335381 -0.185761 0.276453 0.040940 0.453134 1.320841 -2.457623 0.990098 -0.529793 -0.257856 0.598588 0.367583 -0.513916 -1.954662 0.308406 0.832758 1.088150 -0.058980 0.575182 -0.022397 -1.360461 -0.004600 0.163661 0.571988 -0.825643 1.143563 -0.148303 -0.885466 -0.717886 0.223294 -0.316645 -0.796323 -0.080483 0.677831 0.594099 -2.051324 1.169540 -0.249123 -0.592808 0.519908 -0.144947 1.220372 -1.214463 -1.424427 0.840468 -0.242694 -0.447111 -0.357242 -0.354336 0.764157 0.152456 -0.322959 -0.633142 -1.450436 0.834009 -0.179547 0.938577 0.737238 0.175784 1.455727 -0.444265 -0.824327 -0.968930 -0.455191 0.072504 -0.305137 -0.504834 -1.170435 -0.415263 0.952539 1.668319 0.101779 -0.280602 -0.072018 1.284768 -1.561748 -0.232923 0.650842 1.010276 -0.530310 0.484907 0.761379 -1.019260 -0.360171 -0.914481 0.218870 -0.175144 -0.792791 0.674333 -1.015924 0.107277 0.598108 -0.247837 -0.168503 0.752994 0.381278 0.207465 -0.230515 1.302165 1.602908 -0.908749 -0.170893 -1.134586 0.526870 -1.549603 -1.032547 -0.112642 0.568360 -0.374439 -0.139223 0.160042 0.743881 0.373002 -0.325189 -0.416814 -0.243662 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 0.030860 0.382407 0.583958 -0.186228 0.552335 0.001426 0.288075 0.418150 -0.551418 -0.877281 0.036525 -1.189425 -1.293741 0.836610 -0.056284 -0.178583 1.188126 0.132745 0.017721 -0.381172 0.008363 -0.451221 1.118638 1.194908 -0.967502 0.354881 0.000940 0.314390 -0.012151 0.635021 0.037893 -1.074253 0.291799 0.221616 0.535827 -0.184056 -0.321567 -0.389161 -0.514446 -1.658671 -0.175949 1.023684 -0.008276 -0.012629 0.269106 1.112245 1.407290 0.575467 -0.254913 0.695854 0.332047 -0.316143 0.519879 0.062911 0.287596 -0.436746 0.405057 -0.187344 -0.769296 0.361132 -0.172893 -1.241554 -0.479156 0.707112 0.961053 -0.215627 -0.398514 -0.232453 -0.162847 0.254687 0.021823 0.592291 0.874074 0.343365 0.803989 0.114627 -0.111886 -1.151093 0.010156 -2.758531 -1.057107 -0.547973 1.546504 0.600782 -0.153213 -0.645448 1.233743 0.020434 0.157141 0.600113 1.398783 -0.443692 -0.405690 -0.343205 -0.099019 0.420157 -0.462638 0.048229 0.478565 -0.052262 -0.859040 -0.218797 0.551272 -0.350879 -0.494489 0.248077 -0.244383 0.734844 -1.210109 0.032743 -1.301393 -0.065790 0.610484 -1.305942 -0.017987 0.322471 0.252197 0.741472 -0.487724 0.004743 0.432995 -0.058634 -0.346255 0.060998 -1.025603 1.185182 0.112987 0.176579 0.451740 0.694334 0.623621 0.476546 0.768587 -0.202638 -0.123230 0.253201 -0.173097 0.212715 -0.137792 -0.235810 0.371785 -0.555201 0.186777 -0.179912 -0.596452 -0.381330 -0.764570 -0.274195 0.206745 1.408437 -0.275883 0.767767 0.240148 -0.728344 0.737801 -0.263258 -0.378400 0.076497 0.788784 0.736571 -0.108379 -0.408053 0.608139 1.260838 0.441957 -0.936242 0.290129 0.219397 0.205779 -0.327938 0.757953 0.250473 0.538715 -0.482038 -0.083284 0.483807 1.382307 -0.388341 -1.220899 -0.020639 0.161882 0.518181 -0.581555 0.207666 0.175003 -0.092078 0.104539 0.009509 0.295192 0.952325 -1.968564 0.929177 0.008390 -0.327001 0.817905 0.007372 -0.413896 -1.253511 0.074404 0.704394 0.948812 0.569964 -0.276253 -0.267997 -0.902843 -0.092334 0.148163 0.354808 -0.492319 0.854864 -0.309096 -0.473172 -0.523300 -1.071840 -0.072552 0.082160 -0.611379 0.410598 0.701019 -1.921704 0.917856 -0.061690 -0.562192 -0.490975 -0.060148 0.343504 -0.811058 -1.059381 0.026239 -0.888244 -1.660419 -0.566088 -0.532116 -0.008434 0.076726 -0.260627 -0.234042 -0.809928 1.445343 -0.069498 0.907899 0.638476 0.067688 1.366690 1.139735 -0.805574 -0.064989 -0.531795 0.778311 -0.916022 -0.214060 0.272615 -0.520966 0.347604 1.087527 -0.057587 -0.098406 -0.590921 0.748343 -0.632607 -0.597846 0.665773 -0.115224 0.019239 0.964207 0.772350 -0.611893 -0.103367 -1.058929 -0.322429 -0.312828 -0.503255 0.216727 -0.830646 -0.143413 0.587018 -0.365157 -0.597333 0.301271 -0.212209 -0.413132 -0.296791 1.098433 1.425838 -1.097083 0.800647 -0.899854 0.716618 -1.041633 -0.740636 -0.038260 0.197147 -0.241583 -0.277730 0.067102 0.043671 0.275621 -0.880596 -0.789528 0.488135 +PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.032929 0.162046 0.407824 -0.161036 0.423367 -0.031105 0.236142 0.319383 -0.528188 -0.597981 0.094811 -0.919693 -0.865750 0.641191 -0.030702 -0.052678 0.873055 0.149005 -0.021409 -0.254240 -0.032187 -0.319424 0.814654 0.886607 -0.656446 0.292167 -0.178204 0.215607 -0.069003 0.521356 0.018283 -0.795289 0.221981 0.159070 0.308012 -0.148586 -0.255811 -0.181272 -0.315197 -1.226728 -0.081426 0.849141 0.097869 -0.023271 0.218670 0.755394 0.942523 0.417554 -0.119163 0.614122 0.223402 -0.268393 0.417859 0.060577 0.267337 -0.271536 0.321643 -0.232247 -0.611519 0.267344 -0.133369 -0.888079 -0.361303 0.468117 0.683520 -0.168776 -0.316626 -0.231270 -0.109539 0.196842 0.129055 0.398355 0.557464 0.149415 0.536172 0.190841 -0.047087 -0.718249 0.023294 -1.934054 -0.783846 -0.288986 1.284398 0.581328 -0.124713 -0.506128 0.872975 -0.050288 0.036556 0.389231 0.955112 -0.309257 -0.329281 -0.172494 -0.062545 0.302359 -0.315914 -0.028319 0.336696 0.013925 -0.634427 -0.078886 0.444266 -0.254761 -0.348567 0.243663 -0.138061 0.543557 -0.919876 -0.009232 -0.855274 0.083300 0.473191 -0.888547 -0.008449 0.228836 0.065229 0.557864 -0.412239 0.069400 0.344401 -0.143558 -0.287549 0.107443 -0.856862 0.843766 0.008843 0.172973 0.325653 0.504643 0.422084 0.351089 0.427794 -0.205480 -0.024363 0.200030 -0.026135 0.253377 -0.078219 -0.229522 0.144988 -0.426898 0.158554 -0.219560 -0.454495 -0.233994 -0.723644 -0.044519 0.071731 0.884945 -0.177721 0.630591 0.234528 -0.482695 0.558594 -0.175610 -0.192262 0.062710 0.562170 0.434126 0.041981 -0.311229 0.429742 0.911536 0.349422 -0.647413 0.226037 0.182503 0.177758 -0.155677 0.576273 0.170221 0.448742 -0.383282 -0.054986 0.284460 1.041905 -0.213443 -0.850229 -0.010400 0.079325 0.353725 -0.376087 0.138343 0.121274 -0.046614 0.044382 0.018335 0.199806 0.698487 -1.403894 0.710252 -0.017511 -0.215677 0.633621 0.012660 -0.341307 -0.910694 -0.080566 0.415120 0.769713 0.407671 -0.193949 -0.103303 -0.645425 -0.080604 0.085666 0.182746 -0.349791 0.611591 -0.215955 -0.324663 -0.292775 -0.805839 -0.054779 0.090148 -0.469766 0.330671 0.606483 -1.343958 0.567252 0.000000 -0.432617 -0.346938 0.029068 0.245093 -0.537927 -0.712423 0.004888 -0.653859 -1.252124 -0.413835 -0.376865 -0.042035 0.025856 -0.197279 -0.120830 -0.500769 1.086438 -0.064180 0.679514 0.474013 -0.076295 0.887223 0.938707 -0.583959 0.045808 -0.388877 0.545909 -0.753233 -0.097111 0.316740 -0.409983 0.247342 0.722709 0.065303 -0.120916 -0.442686 0.588516 -0.353761 -0.405214 0.524753 -0.227418 0.047432 0.744128 0.605382 -0.487460 0.007848 -0.754862 -0.226547 -0.227502 -0.275548 0.233162 -0.501134 -0.055121 0.327216 -0.231306 -0.441160 0.203610 -0.159601 -0.362876 -0.209609 0.883063 0.913945 -0.704059 0.646497 -0.626401 0.499070 -0.694831 -0.478111 -0.065632 0.178639 -0.317473 -0.174229 0.034692 0.070659 0.226781 -0.630388 -0.603539 0.416334 +PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -0.109333 0.111091 0.220532 -0.121313 0.432401 0.133360 0.245121 -0.010645 -0.423249 -0.462518 0.080744 -0.658512 -0.708473 0.644260 -0.061974 0.319002 0.904783 0.151021 -0.002791 -0.351289 0.308617 -0.515266 0.987485 0.992667 -0.751258 0.207881 0.242246 0.271567 0.145682 0.327897 -0.108180 -0.523868 0.416210 -0.447981 0.203298 -0.376329 -0.157104 -0.066890 0.131086 -1.238671 -0.125443 0.229214 -0.084258 0.034770 0.026958 0.732233 0.862024 0.524165 -0.217014 0.727350 0.366701 -0.306432 0.338157 0.123106 0.163937 -0.020216 0.223502 0.042745 -0.415075 0.150954 -0.116179 -0.922729 -0.127268 0.550001 0.840636 -0.212975 -0.246837 0.200282 -0.122623 0.122741 0.114862 0.477046 0.377994 0.136808 0.642581 -0.672055 -0.094461 -1.286750 -0.195862 -2.022112 -0.739857 -0.356546 0.768676 -0.033617 0.320380 -0.030525 0.970087 0.053327 -0.005260 0.393777 0.958142 -0.715162 -0.278936 -0.166953 -0.030114 0.224205 -0.432471 0.115446 0.441885 -0.101896 -0.623472 -0.496897 0.625686 -0.030562 -0.412181 -0.306115 -0.184347 0.577268 -0.898212 -0.436694 -0.898196 -0.150224 0.011611 -1.017481 0.185859 0.067489 0.612491 0.477189 -0.289447 -0.424553 0.259284 0.217207 -0.119618 -0.390598 -0.172319 0.698040 0.303148 0.148993 0.315362 0.382580 0.315907 0.864036 0.781230 -0.194804 -0.157151 0.219148 -0.287309 0.274929 -0.255784 -0.250265 0.345932 -0.615227 0.141345 0.144489 -0.440344 -0.197837 0.400593 -0.105484 0.128381 1.353229 -0.054659 0.585859 0.391263 -0.649495 0.402520 -0.404050 -0.120287 0.312523 0.625133 0.401042 -0.641459 -0.420741 0.380157 0.929648 0.362365 -0.952861 -0.301087 0.028302 0.268178 -0.152923 0.363649 0.222634 0.330912 -0.395196 -0.001997 0.341716 1.225870 -0.569576 -0.517023 0.108795 0.033397 0.010807 -1.004715 -0.066059 -0.286773 -0.101209 0.043549 0.088263 0.117877 0.744475 -1.412959 0.622407 -0.305528 -0.219326 0.570281 0.226894 -0.417810 -1.005324 0.084109 0.427906 0.651069 0.277056 0.071704 0.007585 -0.767884 -0.040381 0.075281 0.201802 -0.374325 0.679375 -0.105512 -0.445303 -0.396417 -0.271990 0.038720 -0.236090 -0.126400 0.431063 0.412696 -1.482199 0.582279 -0.120182 -0.536612 0.078357 -0.008774 0.580320 -0.651076 -0.817351 0.319496 -0.467981 -0.725923 -0.426871 -0.236409 0.148268 0.084979 -0.260251 -0.241393 -0.690155 0.780646 -0.141346 0.561998 0.468875 0.020739 1.000230 0.128074 -0.665636 -0.368282 -0.166508 0.202780 -0.552676 -0.241739 -0.279629 -0.298866 0.482832 0.922999 0.117332 -0.051140 -0.192287 0.683278 -0.924672 -0.337725 0.537272 0.648236 -0.150986 0.598386 0.562833 -0.580434 -0.071805 -0.524694 -0.221978 -0.142292 -0.418352 0.371577 -0.571724 0.038277 0.316412 -0.136612 -0.182525 0.384816 -0.029435 -0.009146 -0.259754 0.834367 1.287945 -0.781837 0.123784 -0.661296 0.409531 -0.836759 -0.617383 0.065203 0.412428 -0.295707 -0.119952 0.183419 0.284793 0.267904 -0.653965 -0.455299 0.063311 +PE-benchmarks/binary-insertion-sort.cpp__main = -0.428414 -0.475426 0.151138 -0.954640 0.791285 0.590145 0.475773 -0.161497 -1.626105 -0.950026 0.510931 -2.025142 -1.289619 1.704781 -0.397646 0.725340 2.185318 0.372532 -0.502713 -0.577755 0.887313 -0.471821 2.133633 2.461962 -1.585193 0.259629 -0.300236 0.729244 0.270202 0.627619 0.536786 -1.489193 0.441240 -0.688175 0.426317 -0.825699 -0.452733 0.508926 0.474593 -2.930221 -0.119687 1.487369 0.286304 -0.018048 0.317686 1.028173 1.547498 1.246488 -0.338838 1.521008 0.973914 -0.177352 0.857460 0.063499 0.404946 -0.142809 0.196996 -0.298151 -0.664683 0.177376 -0.397659 -1.049954 -0.083996 1.492216 1.943639 -0.280183 -0.810230 -0.022791 0.255704 0.502453 0.638299 1.178370 0.387152 0.171374 1.186586 -0.950814 -0.110584 -2.629562 0.465140 -3.710631 -1.415872 -0.111665 2.249323 1.209088 0.317896 -0.746288 2.387900 -0.419437 -0.573919 1.700033 1.923110 -0.932868 -0.551302 -0.538086 -0.692693 0.447824 -0.765587 0.039900 0.556851 0.668733 -1.482691 -0.649980 0.447641 -0.126456 -0.933600 -0.399424 -0.206729 1.348821 -1.855149 -0.668521 -1.172040 1.109386 0.455229 -2.399510 -0.550649 -0.716997 0.087935 0.688267 -1.203068 -0.528226 0.728152 -0.060338 -0.575991 -0.147662 -1.148900 1.477178 0.549819 0.392025 0.149215 0.981370 0.528787 1.670674 0.518654 -0.905325 0.054953 0.653203 -0.130531 0.745032 -0.740411 -0.506967 0.700083 -1.320677 0.093379 0.036420 -1.017084 -0.600594 -0.304107 -0.099257 -0.052623 4.206868 -0.319355 1.810866 1.313765 -1.213067 1.109400 -0.328011 0.202602 0.643519 1.248073 0.737902 -1.324134 -1.127529 1.178828 2.351897 0.913284 -1.520840 -0.122820 0.595589 0.369006 -0.210716 1.068580 0.218703 0.433785 -0.932776 -0.163911 0.768368 2.795501 -0.575912 -0.691643 0.041969 0.994703 -0.025862 -1.318888 0.002751 -0.990601 -0.060182 0.541169 0.270327 0.760933 1.840316 -2.988755 1.623873 -0.154118 0.061373 1.179370 0.409057 -1.126489 -2.365866 -0.460369 0.634480 1.748671 0.157791 0.009058 0.313285 -1.859426 -0.003131 0.355317 0.369011 -1.106760 1.640995 -0.281121 -0.651908 -0.555718 -0.487178 -0.588428 -0.341614 -0.748041 1.147919 0.873979 -2.251154 1.198196 0.095941 -0.905644 -0.209818 -0.043040 1.236455 -1.411156 -1.611599 0.692836 -0.863545 -1.850725 -0.798705 -0.663794 0.493076 0.367961 -0.139139 -0.933908 -1.529882 2.085166 -0.487155 1.902862 1.027750 -0.544766 1.533034 0.664224 -0.990346 -0.603676 -1.131949 0.631483 -0.678194 -0.628435 -0.335758 -0.659756 0.998382 1.526115 0.177213 -0.855543 -0.383935 1.826835 -0.986627 -0.458008 0.812540 -0.049252 -0.540819 1.224196 1.115967 -1.496978 0.330433 -1.586561 -0.054349 -0.711207 -0.639627 1.250786 -0.689061 0.413039 0.191936 -0.225868 -0.368960 0.650992 0.467684 -0.402221 0.121831 2.347169 1.525397 -0.727002 0.517851 -1.842274 1.112471 -1.740982 -1.280528 -0.216033 0.464874 -0.994905 -0.286427 -0.042963 1.061561 0.991167 -1.010718 -1.147395 0.879842 +PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -1.562154 -1.068672 -0.747566 -2.141365 1.859857 3.111235 1.046634 -2.407142 -3.147979 -1.084302 1.370205 -4.321123 -2.293198 3.893561 -1.272618 3.014080 4.750354 0.179567 -1.646858 -1.321901 3.171318 -0.083996 5.610753 5.756921 -3.674849 0.175880 0.592089 1.227340 1.290672 0.293356 0.734238 -2.554688 1.779113 -3.513748 -0.054226 -1.746863 -0.901441 0.975245 3.184007 -5.926263 -0.374912 1.183717 -0.267841 -0.034813 -0.010894 1.813862 3.445683 3.145770 -0.424939 3.148618 2.439051 -0.078156 1.490845 0.239239 0.876639 0.220700 0.495012 0.164603 -0.534860 -0.784447 -0.956331 -1.092527 0.085580 3.921290 4.631092 -0.272270 -1.789603 1.546749 0.717182 0.842212 1.100221 3.090027 0.289984 1.234868 2.621532 -4.357958 -0.033247 -6.223920 0.301454 -6.879095 -2.622865 0.120867 2.524231 0.580707 2.436880 -0.203503 5.701676 -0.615027 -1.879648 3.814412 4.587315 -3.594659 -0.900320 -0.826232 -1.532628 0.220150 -1.908518 1.274318 1.196295 1.065577 -3.464935 -2.649457 0.706837 0.655702 -2.260350 -2.469871 -0.248844 2.665720 -3.601188 -2.433172 -1.815913 1.851487 -0.616804 -6.123256 -2.089491 -2.152050 1.697290 0.868654 -2.606981 -3.331509 1.484899 1.093943 -0.743619 -2.195566 0.391050 2.292155 2.713773 1.151131 -0.060142 1.854059 1.260325 6.061137 1.645186 -1.926640 0.151236 0.812277 -0.656758 1.957283 -1.586636 -0.929620 1.450851 -3.438870 0.598547 2.112575 -2.068701 -0.987330 2.348312 -0.317895 -0.276027 11.701688 -0.723612 4.264133 3.574416 -3.586242 0.941794 -2.053952 0.511529 1.676912 2.404667 1.925900 -5.267434 -2.925461 3.302676 5.498203 2.018267 -4.388647 -0.518432 1.311084 0.836526 -1.082902 1.768803 0.547299 0.656711 -2.200482 -0.400403 2.484252 7.149934 -2.677215 -0.417169 0.797409 1.933390 -0.333522 -3.667610 -0.739514 -3.047148 -0.048579 2.006535 1.008821 1.689327 4.276285 -5.640621 3.281527 -0.886017 -0.106517 2.716655 1.933992 -3.175475 -3.465818 -0.709195 1.748343 2.985496 -0.176392 0.410174 0.709817 -4.542739 0.088803 1.026749 0.632333 -2.562760 3.812307 0.364128 -1.942696 -1.635926 0.825915 -0.713219 -1.689141 -0.919640 3.028443 0.323713 -5.229947 3.160561 0.608446 -2.125958 0.348377 -0.800080 3.812505 -3.339106 -3.829940 2.603415 -1.672536 -2.157056 -1.131138 -1.011163 1.474901 1.874728 0.899718 -3.388193 -3.850807 3.816793 -1.037508 4.360102 2.186934 -0.599272 3.205448 -2.418520 -2.179758 -2.725469 -2.558503 0.785612 0.227383 -2.560297 -2.181706 -1.098696 3.193401 3.466015 -0.034655 -2.342982 -0.379998 3.760158 -3.964008 -0.251634 1.481947 3.178445 -2.867025 1.574637 2.081888 -2.938123 0.898336 -2.467091 -0.639116 -2.385852 -2.242253 3.039120 -1.178932 1.375870 0.311740 -0.337234 0.197722 1.730078 1.367125 0.336107 0.908884 4.552751 3.909973 -1.546499 -0.786889 -4.622958 2.632312 -4.313436 -3.988302 0.902421 0.902750 -2.234177 -1.058048 -0.041174 3.271405 2.422055 -2.545718 -2.043783 1.273091 +PE-benchmarks/boruvkas-algorithm.cpp__main = 0.445207 7.733585 7.103126 -5.259384 6.971378 9.682737 0.737424 -1.577668 -2.349833 -1.200723 -2.165447 -7.139207 -6.409861 5.539015 -1.697202 -1.133010 8.270996 -1.426102 -1.652282 -0.393443 1.835438 3.223974 7.886968 7.629474 -8.018952 2.829610 4.318021 1.749435 -0.978817 8.792117 -6.525682 -9.125913 -0.706435 2.271784 2.398667 -0.939456 -3.003334 -6.382014 0.055764 -11.046679 -0.624856 3.402801 -5.176189 -1.105940 1.853075 -0.287698 13.886558 3.593918 -1.576306 -1.340973 3.011972 4.095790 0.740097 -0.366976 3.813310 1.182267 9.171751 1.966278 -1.244611 -0.540384 -0.973693 0.202220 -2.567569 7.374035 5.856106 1.495156 -2.858150 -1.676691 0.311963 -0.943383 -3.418880 4.635480 3.557191 8.676437 2.490702 -0.578970 3.180138 -5.907324 1.912938 -4.779701 -6.201348 -4.556061 0.636143 2.977166 2.485722 -4.471180 9.280597 -1.984825 3.085787 1.335994 10.864280 -5.466213 -0.364761 -3.850981 -5.197197 0.597609 -0.794125 1.343109 -3.418654 -3.722201 -5.493587 -5.993297 2.301672 0.344375 -4.337628 3.148890 -0.336690 4.157317 -3.876734 -0.394899 -5.299131 0.561497 -0.431735 -10.390355 -7.862292 -0.987885 1.267802 0.829953 -2.810214 -8.205252 2.234479 5.137789 -4.069918 -2.679298 -3.203798 7.587925 6.195685 -0.728957 0.911048 -0.989002 6.144765 5.623958 4.018230 -1.997272 -0.064068 -0.623938 -0.912694 -2.393274 -1.653821 2.223630 -3.099750 -2.403316 0.034634 6.600324 -3.372765 2.304493 -3.725273 -4.568655 2.344906 24.326744 -4.915838 4.708474 -0.838011 -9.130760 4.397620 -0.006980 -6.638116 -1.337891 2.688526 8.814892 -10.820446 -3.187319 5.626578 8.752920 2.843484 -5.898617 4.476657 0.140598 -3.720900 -3.204582 4.935724 -0.725155 0.440236 -3.518862 -2.874152 4.921348 13.937927 -2.694972 -15.001029 1.800984 1.229067 2.695033 0.290119 0.375628 -0.909226 0.266248 4.286098 -2.036263 6.253640 7.173113 -15.912902 5.909875 0.571746 -8.488742 8.786774 -0.875852 -1.752232 3.535796 2.683367 8.343890 5.676445 2.227647 -2.513634 -4.671344 -6.062519 -1.146186 1.926017 3.052981 -5.553870 5.506048 3.125393 -8.687428 -4.453075 -7.324863 -0.880464 -2.357046 -7.846454 2.007192 -3.569843 -15.361731 10.521489 4.145995 0.141379 -0.725685 -5.660783 1.717286 -5.502976 -8.226590 1.969295 -1.674780 -2.038794 1.993528 -3.670000 2.721219 4.144600 6.572922 -8.962464 -9.523606 4.592084 1.726477 6.689193 4.731459 4.322616 4.901636 3.374737 -1.907771 -3.736941 -6.604130 9.685974 3.392209 -4.690414 -1.620385 -5.728055 4.048613 7.615625 -3.569063 -1.137378 -9.087304 3.473159 -4.023542 0.912599 1.941560 -0.623678 -6.341290 -2.639781 3.577855 0.403616 -2.804157 -5.297918 -2.913501 -5.321194 -5.635035 0.647363 -4.330382 -0.948681 6.674190 -4.116351 -5.111852 1.812419 -1.915932 -1.541082 1.592689 4.134586 5.375677 -4.876709 4.995591 -6.274616 6.365777 -8.607604 -7.107797 2.451745 -6.916922 -2.379797 -4.207758 -1.634998 2.426717 -0.894498 1.275618 0.182536 0.606937 +PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -0.684344 0.345344 0.686658 -1.704607 1.434447 2.699409 0.405132 -1.600377 -1.369816 -0.772490 0.547341 -2.678400 -1.659383 2.045104 -1.021615 1.060958 2.425351 -0.481263 -0.959224 -0.581274 1.340453 1.015510 3.262616 3.097666 -2.396958 0.227327 0.694289 1.214771 0.606847 0.720995 0.200440 -1.965147 0.511252 -0.968966 -0.158763 -0.307255 -0.608761 -0.393003 1.248377 -3.218207 -0.326606 0.679326 -1.361662 -0.002367 0.262094 -0.222468 2.716378 1.697640 -0.039541 1.137837 1.442611 0.747979 0.629500 -0.010076 0.640158 -0.347230 1.147556 -0.733366 -0.066971 -0.602898 -0.388397 -0.207923 -0.427089 2.564851 2.425063 0.184362 -1.030276 0.399921 0.259114 0.315199 0.103517 1.894522 -0.120999 1.996339 1.184113 -1.831838 0.676306 -2.555012 0.443677 -1.824437 -1.780207 -0.205016 0.948512 1.447474 1.218426 -0.173481 3.254337 -0.273200 -0.712366 1.878637 2.914135 -1.825538 -0.268805 -0.442211 -1.119986 0.169602 -0.921207 1.038209 -1.044821 0.777063 -1.876244 -1.241570 0.209592 0.241883 -1.410434 -0.594150 -0.164709 1.485876 -1.966028 -0.903284 -0.820205 1.232895 -0.205979 -3.726637 -2.626455 -0.967282 1.384330 0.198283 -1.256823 -2.033935 0.777091 0.891046 -0.370645 -0.963974 -0.291820 1.164153 2.116161 0.470418 -0.118845 1.003023 1.299662 3.365596 0.631805 -0.738995 0.036595 0.056758 0.027005 0.715445 -0.350475 0.292096 -0.675255 -1.508459 0.389084 2.058876 -1.030630 -0.691741 -0.447661 -0.581597 -0.007112 7.989285 -0.711041 2.312178 1.791775 -2.318993 -0.057019 -1.171746 -0.411920 0.534997 0.694559 1.764588 -3.234079 -1.440521 2.144223 3.166655 0.982200 -2.173185 0.866883 0.947038 -0.096949 -1.093723 1.365810 0.169290 0.255567 -1.128442 -0.460661 1.994945 3.958465 -1.084216 -1.943932 0.626265 0.717135 0.358144 -0.840557 -0.195021 -0.586842 0.040131 2.010195 0.408765 1.154301 2.382970 -3.394851 1.707926 0.496881 -0.586131 1.981014 0.779903 -1.684227 -0.183234 -0.049844 1.545074 1.311750 -0.185595 0.002307 -0.226039 -2.504715 -0.041711 0.974833 0.392081 -1.612976 2.158049 0.782105 -1.579612 -1.284675 -0.381406 -0.400572 -0.467385 -1.518876 1.554953 -0.753516 -3.600943 2.377653 0.773010 -0.978054 -0.051382 -1.516125 2.376444 -1.986356 -2.293032 1.378866 -1.163046 -1.407325 -0.010109 -0.751439 0.644663 1.628806 1.487145 -2.614458 -1.608922 1.790375 -0.099689 2.357401 1.329891 0.291825 1.602658 -1.437523 -0.917167 -1.190624 -1.989876 1.993965 0.910315 -1.810247 -1.061849 -0.934946 1.615273 2.054477 -0.678719 -1.521704 -0.891058 1.636086 -2.122417 -0.080654 0.447081 1.434410 -2.190952 0.330849 0.890746 -0.859333 0.426457 -1.493249 -0.558510 -1.812801 -1.692097 1.431058 -0.520490 0.677834 0.875654 -0.474769 -0.544022 0.907907 0.367273 0.232938 0.866411 2.022007 2.070490 -0.710801 0.052524 -2.780266 1.683397 -2.627534 -2.650370 0.956041 -0.723090 -0.743033 -1.033994 -0.758183 1.729385 1.276804 -0.971968 -0.727536 0.940384 +PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -7.067947 -2.020816 1.185278 -14.454984 10.310001 18.946463 3.700867 -12.775603 -13.328774 -6.378920 6.434657 -20.433792 -12.428499 17.571378 -7.928579 10.483261 19.563318 -3.386742 -8.583151 -6.062787 14.086357 5.007191 25.901806 25.225977 -19.215657 0.472066 4.351252 9.584117 6.395024 2.697560 5.337317 -13.636132 3.942502 -11.252542 -0.357181 -3.575408 -4.244933 0.721923 12.022292 -25.783063 -2.355541 6.292947 -7.828360 0.025819 1.065665 0.757302 18.026138 14.588221 -1.822339 10.795477 13.491663 3.954093 5.424850 -0.278694 4.313705 -2.343704 5.175073 -3.064734 0.393955 -4.874821 -3.757891 -1.066845 -0.612905 20.585065 20.481497 -0.185519 -8.578925 5.226037 3.282189 4.364271 3.272728 15.354617 -1.343546 11.148724 11.752471 -17.698292 2.082645 -26.178463 4.542319 -20.512625 -13.245344 0.536127 9.564166 9.135676 9.768461 -0.856799 26.924613 -2.564223 -8.663101 18.463533 21.395240 -13.013782 -2.472948 -4.540071 -10.073042 1.270131 -7.992385 7.332036 -3.811353 8.247564 -15.574641 -9.342855 -0.155823 2.341525 -11.384422 -8.855438 -1.731832 12.606049 -15.160465 -8.004987 -5.670025 12.948919 -1.378517 -30.235886 -18.565517 -11.106482 9.380428 0.868734 -10.904280 -14.381015 6.273797 5.933639 -3.492404 -7.819167 -0.211337 9.322551 16.222709 4.968374 -1.733380 8.825183 8.156089 26.757530 4.943055 -7.368563 -0.018076 1.911184 -0.328595 7.725506 -4.504753 0.753821 0.826826 -12.895053 2.910709 13.364381 -8.006923 -7.179009 2.661789 -4.063863 -1.100258 64.287502 -4.729813 19.916396 16.216561 -16.718680 1.282347 -8.356062 0.017643 6.672434 7.636311 11.044765 -25.789096 -12.735585 17.514795 25.636974 8.281968 -18.468575 3.192806 8.569289 0.537062 -7.509323 9.910215 1.369700 1.635396 -8.947829 -3.229474 14.835561 31.403757 -9.403177 -10.048471 4.580990 10.392237 0.165385 -10.164437 -2.041185 -9.242669 0.083726 15.156373 4.384106 9.869494 19.677542 -26.720350 13.819357 2.234381 -1.319206 13.666459 7.145620 -14.285533 -9.500875 -1.933677 9.426094 11.602032 -2.453459 0.706744 0.797200 -20.958947 0.911085 7.175127 2.524964 -12.862559 18.054891 3.060782 -9.731726 -9.204350 0.620324 -5.579785 -3.597154 -9.284860 13.226260 -4.488675 -25.691935 17.196086 4.357709 -8.282343 -0.398195 -9.266136 20.182862 -15.383065 -18.082561 12.162403 -8.238411 -11.041669 -2.786457 -5.537539 6.358493 11.902608 9.165791 -19.875011 -14.490358 15.597673 -3.674138 20.751152 10.292370 -0.492102 13.398433 -12.711437 -7.447832 -11.393629 -15.228712 11.830699 6.935503 -14.876815 -10.693557 -6.038683 13.441981 14.589400 -4.009559 -12.763172 -4.390620 15.573141 -17.059940 -1.130580 3.392717 11.593519 -16.615270 5.159424 7.414984 -9.483166 4.711035 -13.079738 -2.538417 -14.338779 -12.751015 13.570326 -2.815836 7.050619 3.688486 -1.746984 -1.474639 7.261601 5.739454 2.247378 6.375576 18.583223 16.931676 -5.569249 -2.996998 -23.253116 13.759001 -20.054568 -20.535260 6.043068 -2.664147 -6.667281 -6.907224 -5.223816 15.658811 11.914641 -8.906015 -7.373422 8.152383 +PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -1.585638 0.368563 1.245496 -3.655199 3.001933 5.676792 0.958903 -3.316892 -3.238704 -1.535713 1.236062 -5.772276 -3.508347 4.606822 -2.093965 2.525903 5.556089 -0.754711 -2.180058 -1.260270 3.249232 1.694819 7.098686 6.958911 -5.217981 0.436285 1.358476 2.569795 1.408424 1.515075 0.338663 -4.004899 1.178781 -2.559843 -0.159802 -1.090881 -1.297474 -0.480249 2.892885 -7.296279 -0.665295 1.607202 -2.559673 -0.045434 0.516105 0.080825 5.754493 3.788136 -0.294719 2.587806 3.148631 1.217790 1.496112 -0.001813 1.356150 -0.455863 2.266324 -0.883738 -0.235223 -1.233612 -0.926482 -0.653298 -0.580757 5.550894 5.475463 0.304717 -2.271947 0.991009 0.778573 0.685480 0.412840 4.116103 -0.084074 3.836760 2.799279 -4.308126 1.296894 -6.110655 1.003321 -4.720373 -3.812164 -0.413784 2.295373 2.702323 2.740428 -0.681240 7.215108 -0.771193 -1.642918 4.303989 6.315512 -4.143010 -0.677394 -1.223322 -2.523002 0.361195 -2.076107 2.029844 -1.517859 1.515296 -4.191555 -2.906044 0.520090 0.638468 -3.084357 -1.513858 -0.372240 3.394718 -4.193902 -2.230618 -1.947033 2.672960 -0.527428 -8.161335 -5.168534 -2.379573 2.697155 0.533695 -2.874708 -4.475163 1.724386 1.941266 -0.910583 -2.228792 -0.563444 2.921502 4.431746 0.997815 -0.252588 2.132806 2.591739 7.228423 1.599469 -1.819913 0.089282 0.372786 -0.294072 1.631714 -1.160331 0.326573 -0.676122 -3.486208 0.494236 4.164497 -2.357685 -1.226530 -0.137987 -1.081208 -0.013876 17.558491 -1.470458 5.134540 3.942747 -5.023268 0.588671 -2.289980 -0.653640 1.394715 1.841980 3.658071 -7.583706 -3.289644 4.569951 7.006900 2.259415 -5.002220 1.399888 1.915879 -0.072393 -2.206958 2.877297 0.399362 0.562592 -2.551284 -0.951025 4.144241 8.915235 -2.621770 -3.909601 1.286513 1.677354 0.451132 -2.560787 -0.514642 -1.841818 0.019338 3.942459 0.890720 2.623647 5.327936 -7.495277 3.895407 0.621860 -1.239577 4.413013 1.670925 -3.702201 -1.216219 -0.230434 3.223723 3.161790 -0.293353 -0.169042 -0.256342 -5.589804 -0.041901 2.001863 0.918110 -3.520006 4.815346 1.413525 -3.295971 -2.695654 -0.701761 -1.032978 -1.315914 -3.038318 3.473813 -1.490019 -7.550042 5.070193 1.590809 -2.168301 0.051859 -2.925926 4.943588 -4.389933 -5.111813 3.084963 -2.269572 -2.964770 -0.417389 -1.615766 1.602507 3.403504 2.733305 -5.640089 -4.190711 4.120091 -0.531349 5.343361 2.920238 0.377920 3.649146 -2.544946 -2.118650 -2.916324 -4.257316 3.765665 1.835561 -3.899767 -2.706936 -1.989681 3.667558 4.525838 -1.283506 -3.103089 -1.886014 3.929511 -4.634526 -0.273071 1.135151 3.022937 -4.602397 0.805770 2.108633 -2.269140 0.888239 -3.330436 -1.218327 -3.774977 -3.554991 3.289186 -1.276189 1.529767 1.668947 -0.952560 -0.926532 1.984132 1.021058 0.434975 1.783350 4.841122 4.634759 -1.644984 -0.036697 -6.092836 3.781037 -5.778634 -5.612509 1.846310 -1.152060 -1.862957 -2.066517 -1.136412 3.875134 2.837804 -2.325313 -1.697308 1.915248 +PE-benchmarks/find-k-closest-elements-given-value.cpp__main = 0.020764 0.306432 0.478319 -0.085236 0.668442 0.097793 0.378864 0.453270 -0.675333 -0.664197 -0.078641 -0.938313 -1.060704 0.932123 0.099874 0.180981 1.381095 0.405410 0.029979 -0.270575 0.129390 -0.759369 1.133646 1.193649 -0.778985 0.434300 -0.017153 0.152445 -0.309831 0.944048 -0.394114 -1.040839 0.470534 -0.228992 0.391841 -0.501589 -0.391811 -0.203600 -0.256203 -1.792657 -0.072496 0.875120 0.034545 -0.098679 0.159308 0.903025 1.363514 0.553113 -0.103622 0.828723 0.084915 -0.478303 0.516889 0.179019 0.539369 0.235223 0.356924 -0.015688 -0.897437 0.380562 -0.299857 -1.316778 -0.349972 0.529683 0.861918 -0.244205 -0.413619 -0.091119 -0.304941 0.151750 0.091523 0.482548 0.752502 0.020561 0.730540 -0.240960 -0.183177 -1.045800 -0.191865 -2.692225 -1.068786 -0.557230 1.357583 0.330013 0.204844 -0.548374 1.201974 -0.287822 0.205937 0.313211 1.364004 -0.831158 -0.466142 -0.362773 0.075889 0.242223 -0.396737 -0.254462 0.736329 -0.461020 -0.895076 -0.475128 0.927295 -0.119731 -0.446125 0.006688 -0.170453 0.916373 -1.237102 -0.440520 -1.437831 -0.151264 0.214266 -1.141574 0.273348 0.437059 0.199988 0.879031 -0.596242 -0.460965 0.598681 0.227904 -0.371841 -0.336442 -0.480974 1.248843 -0.016257 0.095694 0.539392 0.539115 0.424866 0.788219 1.136450 -0.210623 -0.018929 0.363451 -0.279834 0.216995 -0.156398 -0.477825 0.074174 -0.769947 0.031206 -0.045579 -0.694997 0.035400 -0.315203 -0.014345 0.209499 1.374647 -0.336980 0.727942 0.158995 -0.865684 0.955717 -0.279761 -0.335150 0.031880 0.929003 0.647351 -0.551337 -0.454136 0.496940 1.216144 0.553180 -1.076315 -0.097147 -0.178195 0.315672 -0.038237 0.626297 0.258477 0.708170 -0.621079 -0.062656 0.184965 1.815884 -0.709320 -1.210708 0.117204 -0.178758 0.286984 -1.092230 0.018616 -0.231537 -0.151189 -0.137243 -0.135576 0.189957 0.996341 -1.771322 1.036441 -0.598347 -0.645247 1.002602 0.115524 -0.288059 -1.261085 -0.175593 0.686328 1.247244 0.614784 -0.203130 -0.230202 -0.887723 -0.140032 0.013975 0.394636 -0.428342 0.854842 -0.307475 -0.717175 -0.367292 -0.872539 0.046466 -0.276458 -0.366662 0.391069 0.835447 -1.902976 0.838066 0.082232 -0.495885 -0.000196 0.329287 0.382711 -0.674637 -1.173627 0.233510 -0.610157 -1.274942 -0.413148 -0.478073 0.169041 0.112335 -0.523267 -0.106185 -1.026797 1.326388 0.046140 0.964352 0.638608 -0.002871 1.403224 1.153395 -0.975462 -0.107129 -0.510133 0.375634 -1.069832 -0.050333 -0.146369 -0.593051 0.587694 1.140670 0.299263 0.024254 -0.737016 0.949276 -0.892640 -0.314137 0.934445 0.099968 0.035492 0.751761 1.014725 -0.717218 -0.263851 -0.768311 -0.262616 -0.250060 -0.376334 0.206815 -0.941360 -0.147667 0.480341 -0.329650 -0.484767 0.239725 -0.172844 -0.323326 -0.444236 1.157867 1.366983 -1.154001 0.659483 -0.649087 0.648447 -0.978478 -0.565994 -0.133848 0.566817 -0.528347 -0.178977 0.382487 0.097651 0.130387 -0.845971 -0.635351 0.044893 +PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -2.381088 -2.076146 -0.959809 -3.654114 2.373820 3.984383 1.204601 -3.906913 -4.328954 -1.671075 2.351193 -5.780697 -2.819469 5.072114 -2.092035 4.032841 5.940171 -0.381932 -2.151521 -2.425046 4.450789 0.623223 7.563213 7.850070 -5.173064 -0.069444 1.300426 2.314366 2.443945 -0.724863 2.133494 -3.455136 1.836738 -4.728181 -0.299457 -1.851341 -1.224316 1.715795 5.099807 -7.555496 -0.614387 0.847397 -1.111406 0.329791 0.079458 1.768634 3.914790 4.277797 -0.870181 4.805674 4.264415 0.307961 1.778784 -0.011907 0.743970 -0.495303 0.453976 0.147823 0.214066 -1.068785 -1.190225 -0.204882 0.347995 5.545125 6.314341 -0.456618 -2.719589 2.066044 1.539018 1.451069 1.501957 4.597022 -0.392236 2.070943 3.689513 -6.766636 -0.252357 -10.307822 1.044349 -8.561632 -3.637550 0.921326 3.315173 0.618975 3.030005 0.628271 7.684930 -0.368691 -3.330896 5.843335 5.724403 -3.910409 -0.842888 -0.522780 -2.553740 0.315544 -2.379402 2.447916 0.741208 2.698909 -4.482310 -3.389915 0.407764 0.494358 -3.106507 -3.737388 -0.320404 3.327586 -4.459624 -2.975668 -1.732112 3.774354 -0.409683 -8.403964 -3.975859 -3.606827 3.363797 0.578156 -3.714321 -3.972499 1.754680 0.944152 -1.064753 -2.463005 1.253085 2.277528 4.629559 1.877350 -0.587016 2.710263 1.699343 8.408956 1.425852 -2.803107 0.141387 1.017925 -0.392020 2.850361 -2.259555 -0.549661 1.948548 -4.076160 1.732853 2.978694 -2.475843 -2.614468 3.931958 -0.784300 -0.931225 17.236456 -0.880109 6.095869 5.692234 -4.115611 0.224066 -2.865499 1.271930 2.710449 2.795732 2.451083 -6.991770 -3.861440 4.809554 7.375841 2.480934 -6.242363 -1.165180 2.730080 1.017561 -1.674061 2.599096 0.459663 0.575632 -2.518948 -0.435733 3.867175 8.810988 -3.064985 -0.970368 0.700650 3.912250 -0.410887 -4.462894 -0.876757 -4.264668 0.000561 4.015005 1.904398 2.516173 5.550741 -8.936572 3.809957 0.165990 0.784829 3.100430 3.313390 -4.787946 -5.037532 -0.922437 1.788603 3.381123 -0.655068 1.212814 1.375829 -6.229077 0.423096 1.747027 0.497241 -3.910621 5.375625 0.569782 -2.137904 -1.984335 1.764391 -1.585985 -1.784173 -1.363301 4.371368 -0.137005 -7.666359 3.796619 0.724923 -2.948698 0.307829 -2.016148 6.341796 -4.387586 -4.676347 3.662654 -2.427568 -2.736800 -1.460074 -1.247895 1.632594 2.669227 2.586614 -4.923167 -4.431197 4.693571 -1.594048 6.016115 2.878443 -1.217950 3.981776 -5.532358 -2.459084 -3.768835 -3.264445 2.295743 1.513653 -3.860922 -3.613164 -1.171936 3.837425 4.147862 -0.498762 -3.774347 -0.397695 4.869789 -5.908542 -0.060466 1.172400 4.927646 -4.131757 2.353498 2.155287 -3.788753 2.073648 -3.594203 -0.762203 -3.607615 -2.889523 4.637343 -0.688368 2.149039 -0.073672 -0.399247 0.573399 2.553503 2.226291 0.790898 1.815877 5.582931 6.141004 -1.506641 -1.835348 -6.690117 3.343530 -5.583951 -5.805386 1.341190 0.197532 -2.819346 -1.667904 -1.200312 4.957753 3.738222 -3.134262 -2.873340 2.663889 +PE-benchmarks/m-coloring-problem.cpp__main = 0.039122 0.224204 0.342216 -0.107488 0.447884 0.042598 0.234014 0.288286 -0.467413 -0.497369 0.010024 -0.760759 -0.744297 0.603570 0.016968 0.044847 0.854046 0.191841 0.002627 -0.181949 0.004056 -0.366458 0.753682 0.786291 -0.558010 0.300462 -0.107150 0.126550 -0.177004 0.600890 -0.141284 -0.763589 0.261162 0.028731 0.247657 -0.214044 -0.250470 -0.169955 -0.226419 -1.153023 -0.050339 0.700629 0.076636 -0.055664 0.147105 0.572071 0.919537 0.371456 -0.068749 0.539882 0.125283 -0.235456 0.355126 0.096790 0.317738 -0.038107 0.283827 -0.191903 -0.590342 0.233976 -0.152700 -0.823894 -0.312145 0.392577 0.585806 -0.145301 -0.277386 -0.138736 -0.183349 0.134043 0.082451 0.331137 0.486526 0.100283 0.450319 0.061790 -0.064728 -0.600020 -0.061230 -1.727763 -0.719794 -0.322775 1.026175 0.460676 0.021327 -0.407308 0.792527 -0.128291 0.104434 0.254950 0.905910 -0.424743 -0.309157 -0.193852 -0.007666 0.221191 -0.266753 -0.105302 0.338334 -0.151246 -0.588834 -0.191737 0.518362 -0.148903 -0.309689 0.131533 -0.107034 0.532580 -0.853452 -0.144607 -0.846603 -0.008754 0.282298 -0.781497 0.064077 0.273694 0.050362 0.540323 -0.375915 -0.146644 0.354744 0.012357 -0.265535 -0.061712 -0.603795 0.777167 -0.010263 0.115232 0.339104 0.388977 0.363099 0.444098 0.527839 -0.165802 -0.006602 0.184600 -0.055465 0.183958 -0.061019 -0.264134 0.007595 -0.459063 0.104057 -0.093488 -0.440195 -0.083245 -0.541877 -0.032720 0.105946 0.813737 -0.201333 0.531773 0.145820 -0.533741 0.549353 -0.189989 -0.235714 0.008369 0.546154 0.424845 -0.093030 -0.295979 0.367116 0.813116 0.346458 -0.598914 0.107261 0.022770 0.171716 -0.070854 0.473505 0.157654 0.443035 -0.395951 -0.059782 0.196843 1.097323 -0.297048 -0.763572 0.063124 -0.027270 0.268724 -0.470522 0.062248 -0.022350 -0.060733 -0.014050 -0.049454 0.155729 0.657265 -1.211706 0.675837 -0.199980 -0.335058 0.609900 0.029178 -0.248457 -0.772388 -0.094765 0.440574 0.769510 0.368334 -0.121390 -0.144307 -0.578628 -0.099437 0.041521 0.203885 -0.304457 0.546673 -0.177314 -0.422309 -0.263198 -0.662852 -0.004561 -0.044548 -0.361176 0.275534 0.593295 -1.243255 0.559938 0.044441 -0.353303 -0.165057 0.113226 0.237394 -0.465321 -0.709475 0.075894 -0.516003 -0.984395 -0.269360 -0.327818 0.032644 0.045927 -0.245203 -0.082322 -0.528512 0.920747 0.026313 0.609982 0.436193 -0.013267 0.822109 0.811391 -0.579945 0.016912 -0.360543 0.386237 -0.715407 -0.053732 0.162956 -0.408194 0.312481 0.714670 0.141809 -0.078406 -0.449568 0.564252 -0.410199 -0.273724 0.560692 -0.124190 0.007019 0.560516 0.621958 -0.434357 -0.091879 -0.602702 -0.159568 -0.197217 -0.261867 0.157139 -0.526884 -0.080652 0.338393 -0.230081 -0.392873 0.177520 -0.149792 -0.286064 -0.243716 0.780430 0.776167 -0.678711 0.547739 -0.491125 0.422155 -0.648476 -0.415894 -0.061076 0.257240 -0.342901 -0.151943 0.110069 0.063929 0.118517 -0.512228 -0.470393 0.196581 +PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -0.472249 -0.561474 -0.072100 -0.903990 0.500765 0.453540 0.332724 -0.434977 -1.299745 -0.718476 0.548450 -1.647210 -0.851114 1.332603 -0.468749 0.754377 1.641719 0.222559 -0.511384 -0.505867 0.936716 -0.345293 1.742317 1.998553 -1.346692 0.051966 -0.182624 0.753732 0.530157 0.202518 0.690944 -0.923740 0.324608 -0.740944 0.311647 -0.686694 -0.180567 0.613185 0.614113 -2.213917 -0.092768 0.980894 0.426679 0.021931 0.149106 0.705631 0.999474 1.093181 -0.348575 1.132423 1.033815 -0.027181 0.644093 0.048472 0.124596 -0.252125 0.089826 -0.314627 -0.322599 -0.026944 -0.224688 -0.692633 0.138830 1.338114 1.705193 -0.178590 -0.536888 0.188554 0.353714 0.446502 0.625797 0.954719 -0.002922 0.169498 0.913423 -1.112102 0.046429 -2.374716 0.417033 -2.837709 -0.979420 0.014638 1.590707 0.969523 0.351346 -0.340501 1.907279 -0.180471 -0.609668 1.527724 1.428718 -0.718349 -0.399420 -0.446136 -0.706509 0.420988 -0.713959 0.177645 0.361179 0.882229 -1.118550 -0.506150 0.182209 0.013530 -0.772209 -0.497514 -0.163282 0.967888 -1.407438 -0.609556 -0.618315 0.975756 0.266622 -2.022967 -0.405584 -0.944622 0.124183 0.300619 -0.828561 -0.453931 0.399100 -0.038491 -0.345935 -0.116633 -1.055271 0.965083 0.574164 0.356728 -0.027228 0.738658 0.356182 1.449130 0.136571 -0.827186 -0.023795 0.475936 -0.170306 0.655914 -0.758304 -0.392870 0.846457 -1.112399 0.023900 0.123302 -0.740505 -0.630640 0.090302 -0.106947 -0.032311 3.605565 -0.078590 1.487100 1.283713 -0.924058 0.727521 -0.275704 0.321888 0.706287 0.885790 0.429399 -1.173114 -1.028896 0.922713 1.841081 0.709221 -1.099002 -0.275893 0.585619 0.275497 -0.167830 0.687641 0.180230 0.058789 -0.711921 -0.134814 0.743398 2.044895 -0.345541 0.020793 0.077517 0.994137 -0.299933 -1.151156 -0.088176 -0.994484 0.009435 0.410049 0.360535 0.643112 1.492873 -2.266374 1.221467 0.047814 0.365642 0.785921 0.290087 -1.048348 -2.096607 -0.263473 0.417773 1.187859 -0.196741 0.156994 0.458020 -1.541517 0.043922 0.304865 0.227098 -0.900049 1.254709 -0.161098 -0.363173 -0.537787 -0.007805 -0.561782 -0.284882 -0.464694 1.021107 0.609959 -1.450794 0.930010 -0.079226 -0.779439 -0.120294 -0.195583 1.086348 -1.257730 -1.161992 0.628021 -0.602756 -1.239833 -0.740802 -0.374937 0.480155 0.213891 -0.100871 -0.859236 -1.088041 1.442839 -0.607242 1.370931 0.764082 -0.446893 0.969846 0.170150 -0.604000 -0.687331 -0.711754 0.186903 -0.322597 -0.670436 -0.345909 -0.365587 0.843639 1.200500 0.065036 -0.796095 0.142617 1.467018 -0.726322 -0.510007 0.486187 0.020429 -0.619622 0.920759 0.712138 -1.295086 0.352564 -1.267835 0.021195 -0.495957 -0.606156 1.184724 -0.344538 0.501146 0.061300 -0.075366 -0.121919 0.666391 0.561600 -0.182704 0.240132 1.936445 1.043696 -0.288394 0.109783 -1.617588 0.759404 -1.465082 -1.108891 -0.087565 0.417789 -0.756139 -0.142430 -0.086416 1.083655 0.927181 -0.678707 -0.861415 0.729300 +PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -1.169130 -0.863095 -0.070168 -1.533023 1.149951 1.524390 0.741047 -1.288818 -2.258010 -1.140844 0.578281 -2.866609 -1.603776 2.779917 -0.730170 2.162280 3.541035 0.608067 -0.911728 -0.823547 2.166724 -1.095563 3.628521 3.971200 -2.257717 0.066331 0.129036 1.355639 0.410557 0.789881 0.511438 -1.851724 0.866847 -2.410612 0.444555 -1.613493 -0.593133 1.308617 1.798974 -4.435405 -0.251148 1.424559 0.324808 -0.102105 0.052757 0.358387 2.254328 2.124057 -0.102086 2.098110 1.314213 -0.308071 1.392280 0.270842 0.896863 0.753791 0.187849 -0.556424 -0.656971 -0.054430 -0.896362 -1.287257 0.483503 2.534658 3.163520 -0.193671 -1.257207 0.815059 0.236441 0.577265 0.830345 2.066456 -0.168264 0.439010 1.750115 -3.450006 0.194565 -4.445819 0.447339 -4.399923 -2.027026 -0.138100 1.722058 1.402401 1.777243 -0.314289 3.966315 -0.896624 -1.114558 2.389122 3.154453 -2.482660 -0.680731 -0.944218 -0.948626 0.099347 -1.285196 0.117843 0.590396 0.915330 -2.318257 -1.851372 1.084463 0.532358 -1.469904 -1.642251 -0.263755 2.315349 -2.508246 -2.297341 -1.776372 1.332929 -0.579242 -3.828955 -0.555027 -1.543029 0.395104 0.848780 -1.975145 -2.451613 1.345719 0.875574 -0.513323 -1.486479 -0.601186 1.977230 1.350252 0.277502 -0.052824 1.411154 0.410401 3.889188 1.251489 -1.309683 0.089848 1.051422 -0.844465 1.054768 -1.257286 -0.968024 0.860981 -2.386525 -0.863560 1.144044 -1.562792 -0.387958 1.187021 -0.217331 0.017252 7.907722 -0.603584 2.520687 2.310984 -2.368018 1.753598 -0.850506 0.482401 0.970345 1.890660 1.361519 -4.213712 -2.146469 2.093534 3.729436 1.487102 -2.452547 -1.145634 0.445538 0.877429 -0.230440 1.258256 0.451325 0.350937 -1.629109 -0.210836 1.076425 5.111399 -1.822151 -0.210172 0.599695 0.985820 -0.618170 -3.506094 -0.538035 -2.623265 -0.350481 0.449374 0.510831 0.953346 3.021297 -3.670991 2.528838 -1.000607 -0.175088 2.248033 0.713411 -1.741460 -3.624618 -0.817770 1.222180 2.497163 -0.227813 0.515529 0.345441 -3.183755 0.113375 0.389323 0.868240 -1.787204 2.769936 -0.406665 -1.534541 -1.032116 0.435028 -0.931136 -1.579467 -0.553487 1.954064 1.250636 -2.601772 2.152303 0.468313 -1.113150 0.875115 0.044266 2.581815 -2.265129 -2.780802 1.861436 -0.966244 -1.430572 -0.820001 -0.738555 1.166711 0.861309 -0.709327 -1.943980 -2.492386 2.555502 -0.700692 3.085433 1.439397 -0.555239 2.044786 0.075922 -1.718506 -1.387092 -1.607319 -0.329392 -0.284388 -1.305217 -2.367064 -0.746212 2.308687 2.627751 0.391739 -1.248665 -0.206344 3.044680 -2.590085 -0.285872 1.289558 0.922652 -1.602109 0.873912 1.674373 -2.287052 0.237667 -1.863464 0.062074 -1.396082 -1.339217 1.960809 -1.243767 0.688670 0.233385 -0.448188 0.013028 1.038908 1.380449 0.043466 0.359049 3.634761 2.141522 -0.667839 -0.391964 -2.943203 1.439228 -2.898993 -2.062170 -0.070459 1.439351 -1.686648 -0.502601 0.569736 2.117829 1.707568 -1.404482 -1.291106 0.258082 +PE-benchmarks/egg-dropping-puzzle.cpp__main = -0.154814 -0.137859 0.231462 -0.314018 0.519995 0.104550 0.300191 -0.079970 -0.714601 -0.529130 0.331858 -0.920771 -0.722663 0.815724 -0.129455 0.387188 1.007324 0.088594 -0.114239 -0.438821 0.370358 -0.425101 1.137334 1.180329 -0.825934 0.216555 0.073695 0.279508 0.211893 0.218585 0.028958 -0.631442 0.433482 -0.495568 0.072019 -0.308317 -0.234842 0.016755 0.316912 -1.314941 -0.085851 0.328725 -0.179534 0.032282 0.063622 0.924969 0.838628 0.611227 -0.247053 0.994948 0.539031 -0.382986 0.332678 0.094431 0.228441 -0.196074 0.246113 0.113213 -0.432648 0.138791 -0.168651 -0.818936 -0.172395 0.642154 0.938388 -0.258267 -0.367634 0.152617 -0.009721 0.203509 0.300336 0.547848 0.410513 0.071955 0.745306 -0.664931 -0.173979 -1.603407 -0.134577 -2.317758 -0.834783 -0.070202 1.170608 -0.035401 0.210677 -0.092974 1.078980 0.052566 -0.284006 0.636829 1.021749 -0.641011 -0.346146 -0.034464 -0.169154 0.211273 -0.445676 0.213782 0.468957 0.080373 -0.759270 -0.374776 0.561695 -0.108255 -0.437793 -0.326373 -0.114301 0.644807 -1.018331 -0.349274 -0.740183 0.201794 0.226100 -1.165257 -0.017016 -0.031959 0.766791 0.483843 -0.524361 -0.243399 0.334525 0.004808 -0.255650 -0.237653 -0.199977 0.716897 0.359801 0.419997 0.254346 0.465185 0.393462 0.944145 0.652133 -0.349592 -0.040789 0.158948 -0.114254 0.541416 -0.227629 -0.279452 0.386955 -0.611517 0.356014 0.016661 -0.499817 -0.390606 0.396092 0.052684 -0.069321 1.620537 -0.064782 0.904010 0.609431 -0.623513 0.312150 -0.476433 0.042710 0.375440 0.665227 0.320192 -0.536809 -0.496621 0.607455 1.105446 0.438556 -1.217314 -0.213932 0.280148 0.286088 -0.167835 0.478614 0.198119 0.432452 -0.449842 -0.025381 0.455563 1.390738 -0.510231 -0.652097 0.072298 0.191817 0.142700 -0.915657 -0.034826 -0.196090 0.002226 0.271495 0.168210 0.238643 0.869104 -1.842835 0.688687 -0.224891 -0.082306 0.599523 0.442407 -0.673678 -1.176814 -0.115813 0.319795 0.760086 0.378218 0.052955 0.177784 -0.862351 -0.024768 0.124970 0.057036 -0.440336 0.774840 -0.090402 -0.398187 -0.335321 -0.333511 -0.044965 -0.051078 -0.217711 0.584596 0.352864 -1.798238 0.548232 -0.042497 -0.618771 -0.128551 -0.052704 0.787754 -0.654473 -0.848847 0.337769 -0.666891 -1.003922 -0.544001 -0.277112 0.041787 0.132604 -0.049054 -0.296614 -0.717567 1.031263 -0.255051 0.831460 0.521376 -0.194725 1.107728 -0.002470 -0.654834 -0.379887 -0.276285 0.518860 -0.570333 -0.349587 -0.107907 -0.322770 0.479742 0.763156 0.122769 -0.238788 -0.237559 0.760697 -0.972182 -0.302928 0.550965 0.734151 -0.225982 0.853475 0.626017 -0.686742 0.203571 -0.651400 -0.330932 -0.356085 -0.369688 0.544507 -0.311686 0.161455 0.115752 -0.034836 -0.155112 0.375092 -0.017554 -0.045425 -0.155319 0.982461 1.613521 -0.802039 0.125263 -0.860834 0.550203 -0.857583 -0.843863 0.147229 0.340823 -0.474303 -0.191794 0.017151 0.432626 0.423326 -0.810454 -0.621318 0.461078 +PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -4.930419 -5.136637 -2.133193 -7.020788 4.365845 8.327787 2.666733 -8.377305 -8.976519 -0.662370 4.413855 -13.154689 -4.805845 10.159733 -4.088502 8.382060 11.751356 0.224136 -5.862208 -3.239603 7.519887 1.278824 14.341110 15.300091 -7.924874 -0.512899 -1.610528 4.697353 2.219811 -1.361275 3.164028 -4.431330 2.549912 -8.627250 -0.734389 -2.592071 -2.457552 4.051121 9.180355 -14.475997 -0.958772 3.571601 1.620521 0.100031 0.263325 2.700212 6.961673 8.113927 1.650153 7.087955 5.457454 -1.056832 5.429535 0.296429 3.106086 0.007555 2.366118 -1.062336 -1.021898 -2.465865 -2.871626 0.634746 1.110693 10.419523 11.747143 1.114653 -5.590175 2.820420 3.776321 2.708605 3.434991 8.411212 -2.760245 4.156754 4.796141 -10.972549 2.743361 -13.632336 2.786427 -10.651647 -6.404320 2.716413 6.347580 4.552439 5.870484 -0.365615 14.865914 -1.202723 -6.898105 9.482473 10.938191 -8.103052 -2.188905 -1.119831 -4.801728 -0.573126 -3.436092 4.031515 2.661240 7.013346 -8.914384 -3.778337 0.303889 1.430958 -5.331784 -4.325992 0.318978 6.978932 -6.094783 -5.972926 -1.306624 7.911777 -1.126903 -15.636583 -5.929973 -7.335989 0.896405 1.172434 -8.142642 -7.742351 4.280934 1.008716 -2.266641 -2.962464 -2.522207 4.946201 7.001561 2.098615 -1.927839 6.671139 2.336432 14.960066 -0.720281 -5.812324 1.647230 2.410357 -1.010746 5.659099 -3.502360 -2.257120 1.700526 -8.993916 1.252250 4.474351 -4.962573 -2.150090 1.538445 1.346083 -1.954499 30.840315 -2.467435 12.053891 10.243100 -8.009611 3.606499 -4.613041 3.454792 3.584334 4.951939 3.388123 -14.231225 -8.313432 9.506203 14.602601 5.039556 -9.550128 -0.242770 4.565373 1.152383 -2.904676 5.322618 1.443217 -0.110681 -3.788987 -0.958939 6.301368 18.066422 -5.401943 -0.116733 2.061876 4.384976 0.196192 -8.210955 -1.996585 -7.692166 -0.345667 4.152685 4.325849 4.588067 10.738433 -11.949462 8.714900 -0.153210 1.592274 9.427787 3.828205 -8.851950 -8.810967 -4.166119 3.471965 7.195028 -2.160568 -2.374850 2.216674 -11.527116 0.735993 3.324189 1.294766 -6.831586 9.978915 -0.017875 -3.865202 -2.774661 2.188194 -3.259891 -3.302835 -3.625425 8.353456 -0.409430 -9.048072 7.287651 3.228429 -4.876159 0.800529 -3.153217 8.905135 -7.184048 -8.053870 5.918039 -4.231993 -4.801109 -3.043618 -2.567743 2.876065 4.511690 3.721852 -10.245528 -6.722863 9.836880 -4.085256 12.450463 5.113455 -3.021667 4.575902 -4.237727 -5.932564 -4.785212 -8.044521 0.927646 3.204883 -7.040025 -3.957233 -2.242431 7.931251 6.684351 0.272258 -7.424465 -0.118028 9.812532 -6.896734 -0.997138 2.509620 1.640427 -8.176020 2.839138 4.439791 -7.310712 4.048011 -6.269124 -2.034910 -7.738473 -5.055056 8.370595 -0.882355 4.055220 -1.829154 -1.251361 1.927484 4.125355 4.856341 1.409163 4.954537 13.069390 4.905540 0.144376 -2.103431 -12.864402 7.189853 -9.714871 -8.976493 2.108812 2.609015 -6.192013 -2.920850 -0.508099 8.870882 6.929571 -7.720707 -5.909042 4.796966 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 0.173170 -0.064134 1.120017 -0.684002 0.259856 -0.763703 0.177498 1.235751 -0.970663 -1.260917 0.124376 -0.978957 -1.372860 0.807203 -0.338585 -1.183245 1.414066 0.591339 0.044738 -0.882354 -0.184915 -0.313882 1.045434 1.473758 -1.509574 0.237878 -0.343884 1.107948 0.793045 0.575638 0.902527 -0.932533 -0.082987 1.217899 1.075982 -0.647263 0.013492 -0.156543 -1.721631 -2.235789 -0.081779 1.378654 0.143274 0.186482 0.736159 2.030582 1.071907 0.655641 -0.757484 0.870637 0.946750 0.259156 0.414878 -0.081483 -0.321802 -1.081641 0.359148 -0.533397 -0.768016 0.705624 0.162451 -1.734604 -0.361602 0.872038 1.288643 -0.297031 -0.153989 -1.013414 0.388456 0.555834 0.585282 0.342626 0.954212 0.097402 0.981332 0.757583 -0.260129 -1.861733 0.576514 -4.067712 -1.060508 -0.904473 3.081508 1.004833 -1.341784 -0.959517 1.174631 0.226187 0.454375 1.434710 0.973235 0.578598 -0.512526 -0.688568 -0.482761 1.275519 -0.629669 -0.098823 0.300165 0.956745 -0.682417 0.322951 0.117720 -0.871759 -0.573411 0.917677 -0.419784 0.933282 -1.702064 0.821192 -1.393229 0.837450 1.556087 -1.271195 -0.267093 -0.360758 0.772336 0.566483 -0.158444 1.502467 0.015991 -0.523015 -0.457666 1.366274 -2.410415 1.369713 -0.172995 -0.022915 0.282068 0.856683 0.370895 -0.613220 0.308468 -0.511281 -0.410103 0.843180 -0.222725 -0.114273 -0.876589 0.024466 1.315399 -0.322760 0.496851 -1.008167 -0.668615 -1.392932 -1.511888 -0.367625 0.573763 1.520295 0.136634 0.776091 0.418327 -0.132749 0.571928 0.457903 0.014442 0.664278 0.932080 0.230939 0.821097 -0.402804 -0.133831 1.176888 0.498535 -0.639558 0.540138 0.316108 -0.140373 -0.176232 0.822873 0.151383 0.015632 -0.258167 -0.101634 0.466974 0.513914 0.685613 -1.477889 -0.761164 0.965559 0.097429 0.246458 0.636986 1.073075 0.125971 0.413054 0.061839 0.644866 1.003636 -3.067605 1.016205 0.823666 0.567827 0.154400 -0.281091 -0.264105 -1.904471 0.261046 0.338250 1.391850 0.466288 -0.501993 0.396513 -0.946997 -0.067909 0.353959 0.530816 -0.522354 0.666253 -0.125360 0.120734 -0.488890 -1.571814 -0.340210 0.990140 -0.907681 0.330020 0.459507 -2.442235 0.604409 -0.842003 -0.757006 -0.941991 -0.303100 0.131962 -1.265235 -0.813927 -0.407546 -0.475464 -2.687483 -1.400478 -0.608463 0.372950 -0.508593 0.107546 -0.141617 -0.734161 1.763534 -0.552578 0.615333 0.708466 -0.390845 1.727473 1.519006 -0.298346 -0.084433 -0.482614 1.366508 -1.191143 0.021058 1.444349 -0.479253 -0.198659 1.337554 -0.319583 -0.229627 -0.114855 1.271797 -0.033635 -1.370757 0.409090 -0.777524 0.820964 2.092958 0.678708 -1.437199 -0.166246 -1.600525 -0.235787 0.603160 -0.250348 0.823240 -0.888282 0.267633 0.515988 0.118434 -1.026347 0.606097 -0.304712 -0.804281 -0.200442 1.604023 2.046748 -0.956241 1.562084 -0.991239 0.826302 -1.124329 -0.427966 -0.800506 -0.473353 0.156138 0.405167 -0.629994 0.208247 0.557103 -0.573657 -1.078009 1.245355 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -0.224134 0.876906 0.602866 -0.698096 1.006574 0.756009 0.327083 0.001222 -0.650764 -1.092491 -0.365975 -1.068930 -1.540767 1.354747 -0.236839 0.353814 2.259176 0.338787 0.048249 -0.717370 1.052380 -1.018241 2.075699 2.194306 -2.031243 0.373934 1.280210 0.831916 0.460996 1.013975 -0.200704 -1.444305 0.491599 -0.792220 1.008061 -1.203089 -0.232343 -0.328742 0.039695 -3.130174 -0.319507 0.306694 -0.412203 0.046232 0.066625 0.934595 2.372603 1.176541 -0.913862 0.828199 1.076648 0.279044 0.443171 0.153932 0.103230 0.332139 0.376393 0.216784 -0.440592 0.305430 -0.150308 -1.580404 0.105566 1.600600 1.973260 -0.297176 -0.409103 0.533663 -0.080149 0.158883 -0.191736 1.131074 0.672138 0.716918 1.329654 -2.102285 -0.261335 -3.568087 0.023119 -4.317020 -1.551605 -1.439695 0.846413 0.007978 0.794218 -0.065618 2.391862 -0.098578 0.608700 1.263862 2.271576 -1.457093 -0.349828 -1.182812 -0.593480 0.654149 -0.855809 0.079694 0.512199 -0.298348 -1.263975 -1.677222 1.056560 0.089949 -1.090892 -0.925343 -0.495469 1.387234 -1.756130 -0.982571 -2.152469 -0.172736 -0.302183 -2.512414 0.043432 -0.436028 1.205955 0.637441 -0.338524 -1.562474 0.332739 1.169436 -0.360084 -0.997452 -0.324846 1.641403 1.038728 -0.213045 0.511280 0.476936 0.717090 1.852873 1.894955 -0.466990 -0.585016 0.670196 -0.909268 -0.266927 -1.097854 -0.202660 1.068226 -1.319663 -0.118256 0.902034 -0.949610 -0.469526 1.281638 -1.175476 0.813821 4.767835 -0.321029 0.954238 0.556278 -1.764276 1.112579 -0.368029 -0.749895 0.706404 1.454563 1.362916 -2.372783 -1.010961 0.627805 2.099295 0.778113 -1.666869 -0.948455 -0.268763 0.027385 -0.324288 0.656060 0.247401 0.066112 -0.794095 -0.214992 0.908314 2.804411 -1.051808 -1.178461 0.169685 0.875277 -0.466101 -2.143203 -0.129702 -1.331468 -0.257788 0.354952 -0.096990 0.756154 1.788874 -3.556355 1.397098 -0.547181 -0.659082 0.937078 0.221491 -0.472296 -2.293665 0.748519 1.436935 1.519497 0.069471 0.422211 -0.327581 -1.806705 -0.084962 0.297452 0.933512 -1.125652 1.509569 -0.114221 -1.290141 -1.143781 -0.234500 -0.333448 -0.879077 -0.379831 0.738122 0.543181 -3.138949 1.872394 -0.399460 -0.749293 0.510806 -0.447372 1.284956 -1.783126 -2.044920 0.922123 -0.264347 -0.853735 -0.517165 -0.615895 1.094674 0.223344 -0.312091 -0.998818 -2.153707 1.221993 -0.153100 1.148048 1.102718 0.544002 2.198481 -0.111897 -1.079386 -1.316787 -0.701004 0.435599 -0.403748 -0.694668 -1.342288 -0.750972 1.156795 2.531423 -0.147581 -0.161364 -0.394306 1.641301 -2.039054 -0.577025 0.859418 1.143269 -0.638352 0.663121 1.040522 -1.246448 -0.774823 -1.397480 0.095553 -0.086513 -1.223764 0.713082 -1.697259 -0.018724 1.253047 -0.508229 -0.527922 1.050049 0.200996 0.139984 -0.391952 1.660947 2.364977 -1.542389 0.161398 -1.502096 0.892141 -2.249512 -1.388339 -0.158511 0.404036 -0.231167 -0.222409 0.195911 0.774628 0.326521 -0.424587 -0.515146 -0.358846 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.098575 0.880534 0.868348 -0.586196 0.935358 0.726713 0.270626 -0.107670 -0.484258 -0.690193 -0.249764 -0.958563 -1.252306 1.078694 -0.224451 0.131055 1.719775 0.127984 -0.049835 -0.593705 0.684196 -0.618786 1.688968 1.691732 -1.620157 0.379838 1.057639 0.602628 0.406792 0.962997 -0.636308 -1.025126 0.385990 -0.458900 0.656747 -0.746941 -0.260815 -0.632959 -0.012964 -2.314280 -0.210881 0.060379 -0.563970 -0.008848 0.074747 1.047076 2.088534 0.886879 -0.606407 0.520761 0.806618 0.101978 0.280033 0.118797 0.301138 0.157361 0.957569 0.466632 -0.421748 0.160715 -0.121464 -1.210112 -0.100402 1.275436 1.470916 -0.128746 -0.329815 0.297592 -0.044666 0.034132 -0.225110 0.839264 0.691950 0.841838 0.995592 -1.399835 0.105632 -2.478992 -0.143974 -3.174163 -1.236741 -1.072164 0.624174 -0.366415 0.578838 -0.064941 1.791931 0.037090 0.497885 0.647667 1.906880 -1.255996 -0.294834 -0.709615 -0.501922 0.414510 -0.606875 0.238451 0.375699 -0.433433 -1.031043 -1.214000 0.958883 0.061674 -0.826165 -0.297274 -0.307629 1.002100 -1.337104 -0.564494 -1.602277 -0.374148 -0.167086 -1.990622 -0.112447 -0.186412 1.315997 0.474533 -0.301032 -1.260095 0.294145 0.983397 -0.364302 -0.741238 -0.275008 1.384030 0.896778 -0.028752 0.413977 0.223526 0.751452 1.350183 1.571469 -0.340761 -0.379587 0.290020 -0.759304 -0.180883 -0.663395 -0.086387 0.637346 -0.896892 0.082941 0.796151 -0.734654 -0.184858 0.960760 -0.740664 0.600954 3.683405 -0.360602 0.813493 0.261939 -1.478625 0.705600 -0.377271 -0.736240 0.403846 1.008407 1.157211 -1.893939 -0.751653 0.638735 1.632486 0.613100 -1.599225 -0.364848 -0.199888 -0.116434 -0.342199 0.564054 0.172402 0.138429 -0.651556 -0.247246 0.769648 2.344103 -0.898330 -1.606325 0.193681 0.176815 -0.087119 -1.463690 -0.065587 -0.477278 -0.073681 0.253659 -0.125270 0.673141 1.395181 -3.081917 1.109419 -0.423429 -0.867451 1.111840 0.148087 -0.439467 -1.212383 0.594510 1.250082 1.140040 0.357515 -0.052527 -0.336073 -1.342562 -0.125470 0.211313 0.650744 -0.849221 1.111077 0.194527 -1.204801 -0.940510 -0.622779 0.019196 -0.484559 -0.494309 0.550008 -0.070015 -3.028050 1.596292 -0.106367 -0.543079 0.216243 -0.509745 0.770403 -1.327661 -1.615004 0.561043 -0.355584 -0.714017 -0.470839 -0.493030 0.663655 0.249982 0.105490 -0.985983 -1.726550 0.986028 -0.169145 0.939294 0.868757 0.555879 1.778460 0.059221 -0.781429 -1.049671 -0.421138 0.696247 -0.280430 -0.672185 -0.695818 -0.685766 0.883433 1.869994 -0.280591 0.064734 -0.590482 1.102849 -1.631983 -0.487433 0.689253 1.088929 -0.651445 0.495260 0.836164 -0.760315 -0.581816 -0.978395 -0.489788 -0.274547 -1.027164 0.460473 -1.191736 -0.038081 1.035996 -0.401001 -0.541210 0.737200 -0.159681 0.077698 -0.232137 1.163235 2.313760 -1.413231 0.290594 -1.182420 0.886989 -1.753125 -1.256776 0.191869 0.031776 -0.230427 -0.307220 0.127812 0.555387 0.160168 -0.521367 -0.331576 -0.123490 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = 0.205817 0.800397 0.911367 -0.151840 1.005045 0.338041 0.466822 0.914356 -0.850630 -1.184330 -0.162054 -1.667683 -1.994305 1.261776 0.125705 -0.300989 1.922367 0.316648 0.095218 -0.395690 -0.145170 -0.547007 1.645289 1.779674 -1.376027 0.750075 -0.102330 0.247588 -0.440136 1.355377 -0.259196 -1.931677 0.455413 0.405639 0.743226 -0.350935 -0.699403 -0.730358 -0.850238 -2.744522 -0.254817 1.792478 -0.228878 -0.072701 0.521566 1.389022 2.376351 0.758865 -0.273274 1.102317 0.183893 -0.437205 0.841630 0.090381 0.615278 -0.242556 0.545705 -0.281539 -1.268420 0.641232 -0.315468 -1.836704 -0.867784 0.910296 1.263567 -0.341576 -0.758204 -0.504617 -0.363125 0.254774 -0.105089 0.915920 1.470687 0.471344 1.167744 0.504345 -0.308330 -1.236876 0.067735 -3.818084 -1.736054 -0.963300 2.379134 1.096846 -0.142749 -1.283321 1.915465 -0.344416 0.439233 0.751799 2.135412 -0.803053 -0.584697 -0.594919 -0.011547 0.550389 -0.533287 -0.175044 0.641830 -0.523796 -1.342197 -0.506711 0.977600 -0.537926 -0.789775 0.432767 -0.350078 1.219725 -1.809675 -0.058169 -2.199133 -0.037584 0.794198 -1.824678 -0.276799 0.795825 0.057706 1.318705 -0.822021 -0.205006 0.800632 -0.011008 -0.620513 -0.072456 -1.235256 1.924487 0.117944 0.090965 0.821964 1.025911 0.977729 0.796625 1.341004 -0.203158 -0.091511 0.505579 -0.069924 0.208920 -0.083032 -0.330504 0.022329 -0.852360 0.211419 -0.182691 -0.969255 -0.231653 -1.561321 -0.389464 0.280896 2.204971 -0.573099 1.091340 0.162875 -1.205371 1.334198 -0.335829 -0.777834 -0.031802 1.265625 1.300469 -0.332829 -0.491851 0.830050 1.948856 0.683444 -1.381199 0.598186 0.152245 0.271528 -0.451001 1.312207 0.298003 1.126280 -0.781525 -0.121947 0.587216 2.422626 -0.709208 -2.274127 -0.025902 0.127854 0.888236 -0.743646 0.333793 0.174722 -0.265392 0.286129 -0.165337 0.438884 1.409226 -2.770796 1.474276 -0.245503 -0.899789 1.349136 0.063046 -0.413756 -1.368234 -0.019193 1.127603 1.701319 1.009217 -0.476227 -0.637666 -1.331402 -0.204215 0.266715 0.571668 -0.776937 1.394609 -0.479600 -0.914760 -0.613201 -1.813208 -0.089610 -0.039844 -1.074521 0.521062 1.132069 -2.956920 1.376144 0.150648 -0.763991 -0.565218 0.044017 0.477921 -1.071509 -1.717999 0.114679 -1.184499 -2.484392 -0.508215 -0.967316 0.057816 0.354735 -0.357520 -0.362474 -1.432590 2.291960 0.253727 1.494083 1.080847 0.086774 2.104618 1.933473 -1.399154 0.082009 -1.206067 1.411771 -1.384101 -0.128365 0.247281 -1.045436 0.547886 1.727397 0.070107 -0.151523 -1.443335 1.183120 -0.975150 -0.582888 1.131293 -0.311056 0.131685 1.259387 1.329702 -0.784195 -0.262191 -1.522650 -0.330188 -0.495909 -0.624545 0.223941 -1.483335 -0.352489 1.019277 -0.709608 -1.025889 0.340925 -0.452335 -0.746310 -0.562987 1.606372 1.860682 -1.769604 1.468284 -1.147878 1.191765 -1.485542 -0.922388 -0.225919 0.189674 -0.495071 -0.506470 0.166008 -0.091578 0.268624 -1.258988 -1.137592 0.523194 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.014214 0.099175 0.344230 -0.162148 0.118398 -0.286523 0.071859 0.219739 -0.227687 -0.527751 0.072105 -0.579289 -0.545874 0.318274 -0.167105 -0.268509 0.438553 0.052718 0.020992 -0.251805 -0.091748 -0.229154 0.400562 0.442490 -0.440487 0.044099 -0.050737 0.268822 0.142541 0.219257 0.224994 -0.444613 0.008095 0.353784 0.374026 -0.014506 -0.001451 -0.134624 -0.473744 -0.592044 -0.060371 0.514428 0.218128 0.012451 0.136553 0.590443 0.482556 0.237960 -0.129591 0.199731 0.268641 -0.021907 0.177278 0.000510 0.034708 -0.442390 0.262906 -0.283626 -0.366831 0.200220 -0.022354 -0.570922 -0.199976 0.348218 0.436400 -0.065189 -0.034647 -0.231353 -0.043987 0.198954 0.100035 0.142578 0.309771 0.197642 0.282336 0.198719 0.044828 -0.530871 0.065169 -1.372842 -0.346610 -0.256826 0.791410 0.428182 -0.317244 -0.237318 0.413773 0.165796 0.097287 0.311684 0.544541 0.071303 -0.223266 -0.171955 -0.127770 0.293547 -0.257128 0.026430 0.144288 0.282059 -0.289211 0.137912 0.101689 -0.202259 -0.134788 0.318832 -0.126006 0.234582 -0.601899 0.225913 -0.482613 -0.000923 0.485923 -0.535064 0.099960 0.026228 0.093403 0.240104 -0.136746 0.300869 0.110932 -0.101047 -0.147512 0.343855 -0.920534 0.473146 -0.088632 0.107589 0.119465 0.311286 0.250431 -0.087687 0.127174 -0.134682 -0.101302 0.107293 -0.133557 0.010974 -0.107425 -0.106837 0.361316 -0.165142 0.133347 -0.262978 -0.221544 -0.382046 -0.585218 -0.169958 0.200487 0.318806 -0.080141 0.288196 0.059970 -0.192769 0.220315 -0.007446 -0.085202 -0.012913 0.272008 0.199418 0.380804 -0.175908 0.215116 0.433676 0.163154 -0.180740 0.207799 0.147132 0.042247 -0.078832 0.253829 0.141642 -0.007258 -0.154967 -0.063983 0.183856 0.297142 0.115521 -0.350962 -0.100825 0.163367 0.214005 -0.015504 0.185625 0.278593 0.079959 -0.052701 0.038401 0.152156 0.379845 -0.980506 0.392894 0.233301 0.091748 0.227806 -0.180759 -0.149207 -0.776208 0.090140 0.276157 0.337513 0.187241 -0.127619 -0.011657 -0.309190 -0.019361 0.012215 0.218802 -0.164237 0.211911 -0.115009 -0.118695 -0.310946 -0.537359 -0.060410 0.244903 -0.308727 0.113194 0.353770 -0.768911 0.395543 -0.173599 -0.216201 -0.409099 -0.041439 -0.015137 -0.434880 -0.325475 -0.182868 -0.443041 -0.871875 -0.385184 -0.208855 -0.052432 -0.196078 -0.114778 -0.000316 -0.147721 0.574170 -0.161787 0.269078 0.184426 0.021644 0.520431 0.658959 -0.148298 0.056720 -0.051800 0.290611 -0.531207 -0.063209 0.524230 -0.105816 0.035701 0.396070 -0.124495 -0.036720 0.018783 0.274448 0.030227 -0.459063 0.193190 -0.360800 0.097637 0.543178 0.243296 -0.356984 -0.054814 -0.562670 -0.150332 -0.034453 -0.217046 0.059214 -0.299926 -0.014737 0.223938 -0.063906 -0.357035 0.122355 -0.089207 -0.260184 -0.068093 0.502145 0.555816 -0.348403 0.478590 -0.435724 0.226153 -0.438619 -0.315856 -0.078423 0.051803 0.011315 0.002152 -0.099183 -0.002552 0.143173 -0.276035 -0.367797 0.379196 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -1.773123 -1.287185 -0.220661 -2.494205 1.855536 4.129329 1.262232 -3.394397 -3.430278 -1.005757 1.868714 -5.800889 -2.665625 4.400194 -1.757872 3.497654 5.147092 -0.077071 -2.551917 -1.384499 2.901842 1.482403 6.645308 6.513722 -3.896093 0.158025 -0.442934 1.165673 1.664658 -0.121923 0.951855 -2.442437 2.209503 -3.147631 -0.316289 -0.844600 -1.147345 0.678066 3.490994 -6.329440 -0.300811 1.791946 0.379414 -0.202930 0.348008 1.654730 3.955485 3.579677 0.906494 2.884839 2.244085 -0.002903 2.150938 0.253225 1.286279 -0.324549 1.638378 -1.669691 -0.865550 -1.304765 -1.033852 -0.667197 -0.517885 4.605164 5.029558 0.207601 -2.134089 1.288582 1.515538 1.112674 1.304269 3.524399 0.039397 2.276178 2.073312 -4.164777 1.063050 -4.532615 0.353029 -5.315173 -3.163925 0.572953 2.952989 2.289944 2.654475 -0.825024 6.246881 -0.535100 -2.462010 2.975637 5.308270 -4.175013 -1.041480 -0.419722 -0.975265 -0.012366 -2.144118 1.969473 0.532923 1.633391 -4.042908 -1.745876 0.658042 0.670022 -2.482161 -1.304111 0.117950 3.041020 -3.504819 -2.371725 -1.131752 2.451093 -0.433992 -7.074278 -1.948028 -2.297419 0.890318 1.019998 -3.046434 -3.548622 1.776605 0.845315 -0.795001 -2.142244 -1.579786 2.770455 3.252038 1.266451 -0.345261 2.877241 1.684929 6.790561 0.850155 -2.121372 0.621965 0.497604 -0.379608 2.535843 -1.089498 -0.979984 0.264524 -3.805561 0.420564 2.800022 -2.234646 -0.541729 -0.165850 0.542890 -0.553379 12.185613 -1.115434 5.151870 4.279010 -3.941476 0.931550 -2.698081 0.608786 1.169483 1.930241 2.247426 -5.981276 -3.384494 4.102706 6.351208 2.230690 -4.391860 1.077971 1.725099 0.574830 -1.968856 2.412449 0.862916 1.051060 -2.634683 -0.528071 3.141070 8.053281 -2.866003 -0.461788 0.949682 0.683160 0.773783 -3.106002 -0.908048 -2.016487 0.073718 2.345566 1.762802 1.733758 4.746196 -4.359531 3.952732 -0.209750 -0.320803 4.415216 1.638923 -3.937939 -1.959855 -1.214942 2.064578 3.017972 -0.535909 -0.623063 0.652864 -5.131963 0.009009 1.168980 0.411907 -2.696915 3.893454 0.975614 -1.847629 -1.653394 0.217909 -0.299531 -1.566798 -1.757987 3.548911 0.505832 -4.755609 3.698293 1.176758 -2.505234 0.079582 -1.706953 4.165195 -3.391252 -3.444027 2.426171 -2.366054 -2.954139 -1.417721 -1.105889 1.171149 2.032205 2.078828 -4.422186 -3.223571 4.446434 -1.169899 5.091681 2.424674 -0.640478 2.526294 -1.392360 -2.266029 -2.127461 -3.741407 0.793211 0.870229 -3.327449 -1.391949 -1.311787 3.614378 3.507806 -0.586626 -3.052882 -0.754044 3.517096 -4.510463 -0.456968 1.478769 2.402806 -3.682553 1.402002 2.192247 -2.865398 1.452577 -2.486437 -1.475121 -3.284042 -2.705840 3.368133 -0.696774 1.798446 -0.058321 -0.507827 0.106637 1.674789 1.202280 -0.070784 1.575297 5.174908 3.344538 -0.924097 -0.505060 -5.535494 3.492658 -4.623827 -4.458942 1.726121 0.571559 -2.771453 -1.445543 -0.230431 3.743664 2.882902 -3.484948 -2.695371 2.032140 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = 0.074846 0.476395 0.631338 -0.131661 0.863505 0.296289 0.436306 0.591469 -0.799512 -0.852836 -0.082977 -1.263423 -1.446906 1.118261 0.102682 0.069518 1.656770 0.366260 0.042659 -0.330100 0.062225 -0.638530 1.429811 1.511905 -1.060700 0.577327 -0.039794 0.179918 -0.378216 1.120055 -0.367409 -1.460389 0.514191 -0.062781 0.470928 -0.465019 -0.546337 -0.399903 -0.383106 -2.249955 -0.150568 1.222338 -0.159149 -0.082232 0.305940 1.082844 1.808386 0.674518 -0.171135 1.040746 0.151728 -0.464909 0.654644 0.148955 0.590990 0.082556 0.417888 -0.100878 -1.041139 0.469663 -0.325160 -1.507159 -0.573227 0.716431 1.073859 -0.300413 -0.594886 -0.227798 -0.335191 0.187867 0.031989 0.707360 1.045141 0.208567 0.947089 -0.007027 -0.272881 -1.210415 -0.101043 -3.164695 -1.385657 -0.692353 1.788858 0.616452 0.135564 -0.834748 1.566672 -0.335377 0.250682 0.530515 1.721438 -0.906158 -0.520990 -0.432615 0.032120 0.343682 -0.467760 -0.192716 0.680690 -0.512673 -1.125612 -0.568622 0.975087 -0.273921 -0.617634 0.094493 -0.240798 1.080095 -1.508691 -0.355953 -1.760806 -0.053025 0.404603 -1.485122 -0.029181 0.577395 0.210340 1.080619 -0.736497 -0.434756 0.710549 0.150012 -0.485428 -0.307811 -0.655939 1.525817 0.110396 0.123602 0.659438 0.743870 0.664684 0.937402 1.255495 -0.229666 -0.036235 0.425877 -0.163492 0.273268 -0.135323 -0.413313 -0.001373 -0.850126 0.153010 -0.039735 -0.833450 -0.069368 -0.744249 -0.146312 0.201303 1.891410 -0.440223 0.945119 0.226242 -1.061166 1.092284 -0.366570 -0.495327 0.042611 1.094184 0.928591 -0.570617 -0.497554 0.681761 1.586209 0.632844 -1.305277 0.164882 -0.022532 0.324302 -0.227277 0.936560 0.279923 0.921905 -0.716054 -0.081685 0.382153 2.195337 -0.775741 -1.684927 0.081481 -0.029215 0.532158 -0.996477 0.120553 -0.124621 -0.206407 0.128595 -0.131548 0.300966 1.213004 -2.254886 1.234645 -0.495273 -0.772306 1.170342 0.182171 -0.398078 -1.255154 -0.138754 0.864762 1.472448 0.799178 -0.270167 -0.375633 -1.125861 -0.163807 0.140903 0.446821 -0.604674 1.138113 -0.349936 -0.849192 -0.464144 -1.221495 -0.010947 -0.227661 -0.665065 0.495798 0.939142 -2.456389 1.066158 0.147545 -0.645853 -0.187138 0.199808 0.538450 -0.854006 -1.451822 0.259897 -0.863693 -1.755994 -0.426162 -0.687030 0.134077 0.278547 -0.394370 -0.261602 -1.253373 1.754286 0.154741 1.245831 0.853049 0.005484 1.729894 1.331883 -1.199335 -0.071905 -0.858037 0.873905 -1.168125 -0.115464 -0.053196 -0.803849 0.625090 1.409953 0.235305 -0.100766 -1.082451 1.093344 -1.033199 -0.359961 1.043346 0.076811 0.027974 0.961626 1.177797 -0.765672 -0.226289 -1.065257 -0.284387 -0.402925 -0.491159 0.269574 -1.156202 -0.200454 0.681288 -0.473530 -0.688739 0.299730 -0.276032 -0.469265 -0.487809 1.377975 1.645210 -1.433122 0.956929 -0.898062 0.907723 -1.223275 -0.776915 -0.143590 0.400332 -0.576702 -0.338575 0.277450 0.076141 0.216814 -1.042431 -0.857704 0.245187 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -2.626291 -1.514412 -0.692737 -3.983442 2.997197 5.270529 1.593987 -4.234803 -4.919341 -2.602105 2.685811 -8.184506 -4.699432 6.330247 -2.614913 4.062190 7.518461 -0.584155 -2.866243 -2.564948 4.772231 1.174623 9.546457 9.676967 -6.637369 0.134952 0.985682 2.442883 2.776097 -0.392396 2.492640 -4.761746 2.694141 -4.448846 0.228021 -1.608280 -1.573126 0.819560 4.598819 -9.583327 -0.942707 2.556838 -1.107679 0.163192 0.424808 3.163004 6.093501 5.243372 -0.657668 4.997840 4.523106 0.399678 2.532536 0.044200 1.141956 -1.493350 1.126052 -0.810911 -0.701902 -1.431990 -1.469697 -1.381291 -0.590295 7.048156 7.806760 -0.371262 -3.126356 2.089211 1.588296 1.747023 1.595923 5.592614 0.805777 3.252074 4.500496 -6.339475 0.161643 -10.215080 0.993695 -11.300069 -4.708618 0.317900 4.854811 1.995271 3.087914 -0.800280 9.759565 -0.316589 -3.408051 6.789935 8.043043 -5.010426 -1.336519 -1.139470 -2.611898 0.614227 -3.285689 3.058493 1.102550 2.745118 -5.874381 -3.386169 0.314677 0.346527 -3.900500 -3.348945 -0.527867 4.293315 -5.951448 -2.749921 -2.732421 3.655767 0.175422 -10.805221 -4.691762 -3.503374 3.064385 1.303870 -4.348768 -4.384005 2.288599 1.086124 -1.168318 -2.628647 -0.535906 3.767940 5.209243 2.247307 -0.291429 4.083993 2.833314 9.706514 1.906377 -2.992109 0.140025 0.926594 -0.497486 3.434957 -2.109604 -0.745029 2.344537 -5.022124 1.493011 3.526619 -3.248992 -2.781785 1.952361 -1.062279 -0.649715 20.156308 -1.346417 7.452998 6.298872 -5.678094 0.677760 -3.669715 0.672749 2.560273 3.525605 3.698758 -7.812971 -4.773808 6.203734 9.515591 3.074983 -7.233353 0.699655 3.323509 1.097613 -2.927306 3.531064 0.945275 1.143135 -3.337807 -0.725724 5.165127 11.059500 -3.894392 -1.628607 0.997655 3.861999 0.690798 -4.482768 -0.755903 -3.591989 0.055158 4.456135 2.229173 3.016222 7.146919 -9.783338 5.262993 0.378260 0.432544 4.606140 3.218506 -5.703299 -5.411787 -0.822019 3.133164 4.216783 -0.401094 0.402616 0.851586 -7.680311 0.267035 2.195524 0.946671 -4.476658 6.419403 0.677501 -2.618159 -3.034558 0.521403 -1.437401 -1.716127 -2.482982 5.151207 0.320374 -9.252011 5.664267 1.028171 -3.759816 -0.798776 -2.605157 6.795753 -5.816142 -6.186464 3.836931 -3.877249 -5.130650 -2.042292 -1.968183 1.780802 3.254807 2.714164 -6.217203 -5.437239 7.024980 -1.766864 7.503785 3.708264 -0.765714 5.504797 -4.375210 -3.400315 -4.017365 -5.008639 3.003060 1.016369 -4.862331 -2.652456 -1.715137 4.704597 5.572906 -1.095551 -4.526965 -0.781267 5.543774 -6.681485 -0.849653 1.869767 5.013647 -5.018757 3.200160 2.976685 -4.372516 2.053559 -4.867740 -1.507488 -4.667947 -4.113099 5.018470 -1.613931 2.293628 0.778522 -0.819197 -0.094120 2.921716 2.090738 0.340100 2.028684 7.202568 7.119698 -2.591372 -0.957365 -8.500427 4.834408 -7.305574 -7.381928 2.050892 0.249366 -2.972761 -2.353023 -1.117454 5.331439 4.561226 -4.700268 -3.997315 3.561945 +PE-benchmarks/boolean-parenthesization-problem.cpp__main = 0.078975 0.462623 0.834686 -0.302880 0.638652 0.091684 0.286328 0.456938 -0.666008 -0.893694 0.051070 -1.614981 -1.501680 0.922873 -0.094266 -0.381088 1.274379 0.055551 -0.035403 -0.401657 -0.165668 -0.044108 1.235275 1.322062 -1.044699 0.428180 -0.357224 0.384688 -0.109285 0.740579 0.109664 -1.381863 0.128258 0.642010 0.518362 0.065664 -0.424758 -0.469034 -0.631432 -1.793880 -0.190544 1.529990 0.036219 -0.068185 0.456272 0.845154 1.644874 0.594142 -0.066970 0.634637 0.285406 -0.185436 0.697037 0.022874 0.433683 -0.618669 0.665324 -0.639703 -0.871749 0.391827 -0.200144 -1.062181 -0.711774 0.816294 1.006155 -0.055214 -0.586912 -0.538246 -0.114003 0.255115 0.034001 0.713182 1.038282 0.616745 0.819341 0.723489 0.046177 -0.822385 0.233263 -2.293084 -1.207303 -0.494824 1.836255 1.139321 -0.314282 -0.961343 1.369467 -0.101522 0.119173 0.677043 1.563717 -0.321667 -0.416960 -0.319915 -0.226884 0.443612 -0.418001 0.140497 0.023945 0.147453 -0.966079 -0.185917 0.497169 -0.502193 -0.562150 0.634935 -0.178060 0.707992 -1.149915 0.237496 -1.281472 0.200047 0.852265 -1.250642 -0.533824 0.317116 -0.105154 0.786408 -0.641215 0.154637 0.524779 -0.324716 -0.505775 0.286963 -1.580314 1.219889 0.151492 0.150278 0.378913 0.844155 0.787312 0.414078 0.288494 -0.267084 -0.000272 0.241489 0.074300 0.242953 -0.056957 -0.147235 0.154788 -0.294910 0.007990 -0.284252 -0.640734 -0.434756 -1.658568 -0.303209 0.125372 1.402215 -0.346552 0.772204 0.267167 -0.714410 0.789202 -0.212508 -0.435495 -0.102551 0.737295 0.925024 0.091625 -0.487753 0.794006 1.393470 0.458489 -0.723872 0.789784 0.464325 0.202191 -0.460625 1.048206 0.215827 0.619802 -0.539490 -0.117780 0.547710 1.538443 -0.211445 -1.533136 -0.023716 0.222748 0.855067 -0.063375 0.322129 0.540695 -0.122162 0.202363 0.074691 0.437822 1.048145 -2.040794 1.043946 0.280720 -0.364723 0.978108 -0.142064 -0.484078 -0.771140 -0.021440 0.762795 1.044282 0.731776 -0.372423 -0.427050 -0.985967 -0.102057 0.179360 0.362821 -0.585206 0.985275 -0.355202 -0.540971 -0.502903 -1.477689 -0.227967 0.260222 -1.011801 0.447691 0.877635 -1.826120 1.036876 0.191531 -0.434109 -0.752145 -0.265772 0.310864 -0.825734 -1.064010 -0.086298 -1.162382 -1.989045 -0.449250 -0.651744 -0.172615 0.157765 0.016353 -0.472849 -0.625721 1.830234 0.080294 1.134899 0.733521 -0.012069 1.092291 1.604129 -0.813407 0.245218 -0.810517 1.136968 -0.774589 -0.253522 0.629719 -0.688045 0.269237 1.080316 -0.209323 -0.284526 -0.955816 0.744754 -0.436142 -0.642502 0.636815 -0.632352 -0.015463 1.000644 0.801302 -0.504257 0.015435 -1.256524 -0.369486 -0.540625 -0.514898 0.218710 -0.809163 -0.196663 0.680804 -0.567756 -0.800097 0.217948 -0.275416 -0.725522 -0.168559 1.268256 1.174628 -0.910863 1.193715 -1.062762 0.828610 -1.044122 -0.747437 -0.034472 -0.226576 -0.453939 -0.433991 -0.099489 0.019174 0.405767 -0.781723 -0.983952 0.753431 +PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -13.960236 -12.779935 -8.925210 -19.777345 14.125208 32.776415 7.455362 -31.804677 -23.000793 3.794907 16.276612 -41.479786 -13.742608 27.379867 -13.768382 24.155080 28.573363 -6.355487 -20.557177 -8.728974 19.643280 16.916600 44.442095 42.322096 -21.808586 -1.596317 -5.887770 13.485183 6.925000 -11.900481 10.651294 -7.966885 8.721694 -26.157712 -12.306292 2.676576 -7.336412 4.255812 29.472143 -34.042877 -3.718832 2.932007 -3.974186 0.761805 -1.213553 3.803627 20.930394 23.175000 11.029170 17.961404 14.497889 -2.828351 14.191782 0.693346 9.384014 -6.217623 9.223987 -5.987961 -1.081542 -13.864284 -6.631639 8.207067 -2.158800 31.155959 30.403100 7.938104 -17.138661 11.551654 10.392872 7.263422 8.411571 25.222544 -11.362984 20.835574 11.790865 -26.741269 12.004949 -23.787499 4.715684 -11.978176 -16.915827 11.779845 14.440641 10.518678 18.570402 6.251538 41.046557 0.608112 -23.096964 28.226912 31.585789 -24.414352 -5.622499 2.759268 -12.603588 -3.624222 -8.368742 20.807870 1.615280 24.409200 -25.938029 -5.636376 -4.291281 4.555696 -15.122581 -11.335674 3.166510 15.493222 -14.407360 -12.829470 4.675156 22.827761 -3.657228 -46.373107 -32.635478 -16.529819 11.328598 0.617112 -22.194746 -23.213739 10.971916 1.991460 -2.968732 -8.168771 1.397510 4.487202 25.004216 9.629037 -6.222652 23.097230 11.615583 49.661496 -7.917512 -12.830888 6.868530 0.384470 3.275783 20.230892 -0.719815 -2.542577 -6.865590 -24.897305 13.123234 20.186290 -11.919835 -9.808320 -3.244275 7.844116 -8.808579 89.796655 -5.794229 36.924446 31.925067 -23.468052 -5.228462 -22.909685 9.004695 8.225978 6.827066 9.575910 -37.227945 -22.979043 31.358907 41.499605 12.660268 -29.123263 12.541430 17.925087 1.226423 -13.587471 15.377334 4.774904 1.699887 -7.550412 -2.877832 26.312244 50.263901 -16.337072 -2.994704 9.777814 6.160622 8.163754 -12.819357 -6.312383 -9.310857 0.454900 20.918645 16.147873 11.412964 28.985736 -21.766537 21.475243 5.710872 6.190348 27.145352 15.408419 -29.843299 -3.397561 -13.040207 10.870989 13.117059 -6.724366 -14.120183 4.198277 -31.415791 1.538098 15.280210 -1.111722 -17.133743 28.062053 5.121445 -9.969194 -9.223963 7.571769 -5.016107 -1.022493 -12.532982 25.356000 -15.690663 -27.438298 21.721127 13.222129 -16.048199 -2.367842 -17.267681 28.178815 -18.501275 -21.649070 17.375920 -16.861157 -15.163299 -4.153214 -6.225052 3.361971 22.463263 21.712361 -35.444779 -8.790958 28.155916 -9.259960 35.148177 14.326683 -6.049426 10.339726 -29.742392 -17.740546 -11.996922 -26.511313 10.027656 16.912476 -25.934916 -4.421003 -6.075764 22.427969 14.537718 -2.980654 -27.295151 -0.221191 22.132622 -20.502857 -4.224910 3.932777 12.609782 -30.930317 7.002270 9.621368 -14.592992 17.158454 -13.370433 -12.099798 -28.676717 -17.923695 22.820349 3.765321 13.715511 -5.020934 -3.147030 8.122161 11.690963 9.586279 9.824786 19.306840 31.527547 12.737977 1.579683 -9.414029 -39.502094 23.339449 -26.438950 -32.008993 16.215784 2.364217 -14.048427 -12.590826 -7.081225 25.726500 21.684284 -30.227193 -17.184566 18.683385 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 0.016809 0.335727 0.528331 -0.272702 0.563292 0.016277 0.330844 0.317227 -0.626732 -0.901445 0.099007 -1.363369 -1.289823 0.920596 -0.059927 -0.066250 1.282034 0.108611 -0.053900 -0.424847 -0.014945 -0.328878 1.206043 1.283965 -0.961971 0.384198 -0.108832 0.146595 -0.003232 0.554524 0.077926 -1.174746 0.388564 0.234115 0.568303 -0.107807 -0.413620 -0.376435 -0.372380 -1.724431 -0.139294 1.115513 0.138882 -0.053034 0.301511 1.201468 1.467480 0.605771 -0.130574 0.730835 0.301876 -0.288431 0.572372 0.061116 0.404808 -0.426646 0.442622 -0.360129 -0.790661 0.345114 -0.214244 -1.080899 -0.535295 0.760966 0.970802 -0.231372 -0.485593 -0.217457 -0.034507 0.279074 0.045599 0.650213 0.928312 0.356097 0.721735 0.013527 -0.098774 -1.129215 0.025936 -2.933675 -1.126735 -0.435041 1.613304 0.642411 -0.134943 -0.797265 1.305745 0.003988 0.062496 0.491649 1.478259 -0.491587 -0.419799 -0.283723 0.004212 0.338398 -0.435370 0.086764 0.582100 -0.095367 -0.949612 -0.114351 0.580393 -0.369554 -0.518475 0.263694 -0.140989 0.769199 -1.187430 0.043921 -1.217527 0.065107 0.634696 -1.380817 0.170225 0.288480 0.094448 0.741975 -0.617885 -0.048716 0.490862 -0.113148 -0.445039 0.049497 -1.219884 1.269324 0.181798 0.253553 0.417288 0.818782 0.671985 0.609731 0.667796 -0.285118 -0.025379 0.220503 -0.092461 0.290432 -0.095726 -0.306900 0.394538 -0.585711 0.161159 -0.191985 -0.629151 -0.276718 -0.804890 -0.206647 0.120212 1.454175 -0.388539 0.905651 0.314436 -0.761955 0.734104 -0.340992 -0.360998 -0.017096 0.828103 0.765916 -0.155174 -0.470675 0.735209 1.373879 0.478717 -0.976318 0.380757 0.269579 0.153781 -0.396446 0.807779 0.215332 0.617506 -0.543857 -0.104722 0.486584 1.557934 -0.416400 -1.028520 -0.063736 0.211851 0.664332 -0.517812 0.178179 0.110275 -0.046025 0.087564 0.096898 0.365054 1.010293 -1.967525 1.017099 -0.041453 -0.361226 0.924518 0.076882 -0.498253 -1.362081 -0.044858 0.715023 1.015784 0.490217 -0.198819 -0.260734 -0.958938 -0.101773 0.087075 0.315398 -0.541785 0.832202 -0.267261 -0.464363 -0.423043 -1.017856 -0.069069 0.058424 -0.623722 0.468830 0.926854 -1.939941 0.960989 0.026453 -0.560054 -0.526294 -0.085545 0.434408 -0.794115 -0.974323 -0.000495 -0.951605 -1.693702 -0.525559 -0.572327 -0.017255 -0.067914 -0.111106 -0.298729 -0.796655 1.581699 -0.082559 1.065876 0.676555 0.009610 1.322258 1.072505 -0.812353 0.020145 -0.760220 0.715507 -0.867399 -0.260371 0.467647 -0.555138 0.391074 1.038717 -0.067220 -0.210696 -0.559614 0.683265 -0.765946 -0.455614 0.682916 -0.118022 -0.063052 0.958644 0.807893 -0.621036 -0.014964 -1.085207 -0.390402 -0.445513 -0.491933 0.258705 -0.748904 -0.118895 0.477241 -0.394112 -0.568681 0.298364 -0.213298 -0.491683 -0.207714 1.133154 1.413406 -1.042583 0.749375 -0.979982 0.794124 -1.030396 -0.801625 0.006139 0.201434 -0.384252 -0.352939 0.028404 0.104280 0.305401 -0.922211 -0.895131 0.605848 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -0.712876 -0.353527 -0.161951 -0.884248 0.987970 1.551250 0.660429 -1.187230 -1.310310 -0.706809 0.881738 -2.617656 -1.735722 1.983610 -0.729611 1.163032 2.415780 -0.069776 -0.722106 -0.968211 1.212317 0.368685 3.290012 3.134145 -2.182552 0.161603 0.180420 0.646224 0.916533 -0.210687 0.520210 -1.371093 1.220299 -1.456072 -0.159959 -0.525653 -0.373217 -0.068119 1.304398 -3.034693 -0.284436 0.631988 -0.490824 0.107157 0.184580 1.701166 2.164878 1.649479 -0.247656 1.805494 1.231776 -0.320702 0.871958 0.179517 0.363746 -0.680417 0.599081 -0.088008 -0.608860 -0.532583 -0.373866 -1.031553 -0.599226 1.915654 2.334170 -0.037705 -0.962380 0.709250 0.365305 0.427431 0.494473 1.696559 0.747592 1.131139 1.577580 -1.520723 -0.175508 -2.837855 -0.167747 -4.020148 -1.610522 -0.098236 1.933826 0.130584 0.975692 -0.230099 2.920071 0.253703 -0.941825 1.828742 2.704482 -1.982333 -0.598690 -0.143287 -0.418256 0.282637 -1.096389 1.328663 0.664043 0.633809 -1.981302 -1.244138 0.443073 0.004335 -1.199126 -0.883747 -0.406261 1.284172 -2.239729 -0.669513 -1.125140 0.486716 0.114261 -3.253165 -1.327767 -0.581077 1.542899 0.663950 -1.245393 -1.233918 0.722010 0.299537 -0.343569 -0.888631 -0.013840 1.315827 1.645615 0.691681 0.200732 1.468945 0.922244 3.196774 0.815409 -0.817282 -0.039108 0.214877 -0.184228 1.105145 -0.549998 -0.327502 0.793652 -1.714582 0.952830 1.010157 -1.062185 -0.918967 0.636328 -0.034105 -0.116572 5.316840 -0.154921 2.365180 1.943977 -1.819154 -0.035092 -1.615962 0.169574 0.813029 1.240945 1.118467 -1.942658 -1.453546 1.838444 2.869167 0.863028 -2.594980 0.494586 0.936985 0.582428 -1.147212 1.124509 0.429339 0.618530 -1.123586 -0.117649 1.780623 3.556170 -1.524413 -0.803800 0.336091 0.598693 0.586104 -1.418041 -0.244751 -0.394293 -0.004663 1.398144 0.895205 0.764727 2.238094 -3.038175 1.661574 0.107237 0.136706 1.517216 1.199338 -1.930532 -1.175348 -0.170797 1.072296 1.327154 0.327463 -0.122210 0.266036 -2.404962 0.017186 0.721253 0.117129 -1.190819 2.034735 0.336369 -0.959948 -1.043147 -0.362027 -0.080989 -0.353266 -0.689965 1.646911 0.013765 -3.622225 1.727774 0.039559 -1.528819 -0.379758 -0.866375 2.085831 -1.853028 -2.024029 1.150891 -1.510223 -2.176335 -0.892851 -0.599623 0.224635 1.074459 0.865107 -1.762873 -1.693190 2.593257 -0.616568 2.202951 1.236612 -0.114800 2.042823 -1.424466 -1.363728 -1.230854 -1.371317 1.030523 -0.196928 -1.582691 -0.231067 -0.550535 1.428749 1.904600 -0.365007 -1.302744 -0.339838 1.706175 -2.299069 -0.435364 0.850773 2.263562 -1.370832 1.384368 1.124294 -1.472675 0.644246 -1.349947 -1.023852 -1.346335 -1.421222 1.380961 -0.713923 0.668621 0.380512 -0.163769 -0.109921 0.988862 0.220204 0.009437 0.450476 2.330045 2.743350 -1.378611 -0.022176 -2.655291 1.724958 -2.342623 -2.442232 0.895610 0.087765 -0.947916 -0.673932 -0.263780 1.554042 1.456532 -2.081161 -1.384922 1.074904 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 0.016809 0.335727 0.528331 -0.272702 0.563292 0.016277 0.330844 0.317227 -0.626732 -0.901445 0.099007 -1.363369 -1.289823 0.920596 -0.059927 -0.066250 1.282034 0.108611 -0.053900 -0.424847 -0.014945 -0.328878 1.206043 1.283965 -0.961971 0.384198 -0.108832 0.146595 -0.003232 0.554524 0.077926 -1.174746 0.388564 0.234115 0.568303 -0.107807 -0.413620 -0.376435 -0.372380 -1.724431 -0.139294 1.115513 0.138882 -0.053034 0.301511 1.201468 1.467480 0.605771 -0.130574 0.730835 0.301876 -0.288431 0.572372 0.061116 0.404808 -0.426646 0.442622 -0.360129 -0.790661 0.345114 -0.214244 -1.080899 -0.535295 0.760966 0.970802 -0.231372 -0.485593 -0.217457 -0.034507 0.279074 0.045599 0.650213 0.928312 0.356097 0.721735 0.013527 -0.098774 -1.129215 0.025936 -2.933675 -1.126735 -0.435041 1.613304 0.642411 -0.134943 -0.797265 1.305745 0.003988 0.062496 0.491649 1.478259 -0.491587 -0.419799 -0.283723 0.004212 0.338398 -0.435370 0.086764 0.582100 -0.095367 -0.949612 -0.114351 0.580393 -0.369554 -0.518475 0.263694 -0.140989 0.769199 -1.187430 0.043921 -1.217527 0.065107 0.634696 -1.380817 0.170225 0.288480 0.094448 0.741975 -0.617885 -0.048716 0.490862 -0.113148 -0.445039 0.049497 -1.219884 1.269324 0.181798 0.253553 0.417288 0.818782 0.671985 0.609731 0.667796 -0.285118 -0.025379 0.220503 -0.092461 0.290432 -0.095726 -0.306900 0.394538 -0.585711 0.161159 -0.191985 -0.629151 -0.276718 -0.804890 -0.206647 0.120212 1.454175 -0.388539 0.905651 0.314436 -0.761955 0.734104 -0.340992 -0.360998 -0.017096 0.828103 0.765916 -0.155174 -0.470675 0.735209 1.373879 0.478717 -0.976318 0.380757 0.269579 0.153781 -0.396446 0.807779 0.215332 0.617506 -0.543857 -0.104722 0.486584 1.557934 -0.416400 -1.028520 -0.063736 0.211851 0.664332 -0.517812 0.178179 0.110275 -0.046025 0.087564 0.096898 0.365054 1.010293 -1.967525 1.017099 -0.041453 -0.361226 0.924518 0.076882 -0.498253 -1.362081 -0.044858 0.715023 1.015784 0.490217 -0.198819 -0.260734 -0.958938 -0.101773 0.087075 0.315398 -0.541785 0.832202 -0.267261 -0.464363 -0.423043 -1.017856 -0.069069 0.058424 -0.623722 0.468830 0.926854 -1.939941 0.960989 0.026453 -0.560054 -0.526294 -0.085545 0.434408 -0.794115 -0.974323 -0.000495 -0.951605 -1.693702 -0.525559 -0.572327 -0.017255 -0.067914 -0.111106 -0.298729 -0.796655 1.581699 -0.082559 1.065876 0.676555 0.009610 1.322258 1.072505 -0.812353 0.020145 -0.760220 0.715507 -0.867399 -0.260371 0.467647 -0.555138 0.391074 1.038717 -0.067220 -0.210696 -0.559614 0.683265 -0.765946 -0.455614 0.682916 -0.118022 -0.063052 0.958644 0.807893 -0.621036 -0.014964 -1.085207 -0.390402 -0.445513 -0.491933 0.258705 -0.748904 -0.118895 0.477241 -0.394112 -0.568681 0.298364 -0.213298 -0.491683 -0.207714 1.133154 1.413406 -1.042583 0.749375 -0.979982 0.794124 -1.030396 -0.801625 0.006139 0.201434 -0.384252 -0.352939 0.028404 0.104280 0.305401 -0.922211 -0.895131 0.605848 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +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.199454 0.321236 0.376539 -0.405028 0.730078 0.493162 0.292969 -0.249405 -0.535384 -0.497347 0.006422 -0.630539 -0.807390 0.921137 -0.171177 0.519205 1.392298 0.178830 -0.040346 -0.582829 0.775531 -0.687883 1.498344 1.470669 -1.274938 0.249561 0.856368 0.470042 0.457727 0.466206 -0.386500 -0.606073 0.576793 -0.939952 0.267564 -0.767963 -0.145098 -0.194776 0.434760 -1.829958 -0.151496 -0.311438 -0.514628 0.052368 -0.083467 0.945107 1.351522 0.804918 -0.519620 0.857395 0.767864 -0.123748 0.198145 0.170002 0.151159 0.243687 0.430781 0.466462 -0.291169 0.078057 -0.105088 -1.077914 0.057300 0.962487 1.276699 -0.239690 -0.256507 0.554899 -0.049211 0.054935 0.068587 0.680287 0.400966 0.351289 0.929389 -1.671276 -0.150162 -2.439255 -0.326377 -2.857758 -0.981828 -0.665633 0.559055 -0.689354 0.703526 0.304085 1.439783 0.085865 0.137608 0.665153 1.388068 -1.227563 -0.295850 -0.406714 -0.279604 0.296502 -0.603438 0.267210 0.507803 -0.288919 -0.850508 -1.111969 0.912686 0.152050 -0.662785 -0.769868 -0.238265 0.858772 -1.186872 -0.790558 -1.212292 -0.220398 -0.330307 -1.588866 0.105503 -0.214363 1.490964 0.422006 -0.264131 -1.086699 0.214990 0.783359 -0.177997 -0.851582 0.332985 0.900238 0.790256 0.153979 0.350652 0.224776 0.447647 1.507664 1.401997 -0.329650 -0.318900 0.277850 -0.607250 0.162973 -0.608851 -0.215559 0.646028 -0.902352 0.232809 0.657092 -0.608435 -0.282876 1.539965 -0.365263 0.342806 2.879916 -0.069928 0.777698 0.529019 -1.137511 0.354820 -0.574231 -0.281677 0.604734 0.895250 0.639897 -1.655665 -0.686487 0.468455 1.309088 0.539630 -1.588900 -0.732660 -0.153483 0.139731 -0.183751 0.305482 0.214953 0.203071 -0.550597 -0.088841 0.613306 1.953408 -0.926793 -0.816719 0.205004 0.166660 -0.303672 -1.642207 -0.214817 -0.642405 -0.069303 0.278271 0.043522 0.377726 1.141129 -2.409499 0.811170 -0.591792 -0.448225 0.688148 0.477395 -0.557474 -1.248823 0.353967 0.755923 0.908904 0.246751 0.245106 0.047953 -1.148181 -0.060864 0.161093 0.365413 -0.616490 0.934913 0.149700 -0.869593 -0.680284 -0.023187 0.061893 -0.487047 -0.038105 0.607080 0.014186 -2.495209 1.021914 -0.222659 -0.657914 0.419279 -0.262890 1.039042 -1.059562 -1.283859 0.696577 -0.272607 -0.444441 -0.498281 -0.256169 0.558958 0.204535 -0.040201 -0.651380 -1.352096 0.739585 -0.234803 0.722368 0.684294 0.228206 1.542216 -0.647519 -0.758337 -1.022973 -0.181696 0.316992 -0.321085 -0.557077 -0.819972 -0.424940 0.840246 1.475164 0.013464 -0.047025 -0.188358 1.030048 -1.727677 -0.339196 0.652223 1.598898 -0.517164 0.598116 0.720124 -0.845292 -0.290639 -0.599827 -0.330768 -0.138136 -0.759619 0.613807 -0.815712 0.155643 0.562000 -0.094129 -0.152075 0.706400 -0.009933 0.292891 -0.275605 1.019235 2.220810 -1.163820 -0.180428 -0.961845 0.608382 -1.376973 -1.094319 0.203315 0.382941 -0.326777 -0.132306 0.166099 0.652177 0.284638 -0.616184 -0.339222 -0.146420 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 0.173122 0.437486 0.526550 -0.069031 0.440129 0.045907 0.184808 0.612930 -0.404775 -0.593301 -0.180539 -0.752975 -0.921753 0.536001 0.049345 -0.338065 0.870407 0.259158 0.093275 -0.135482 -0.280910 -0.197252 0.631945 0.723923 -0.559464 0.378438 -0.229680 0.128182 -0.351116 0.861969 -0.103774 -1.037642 0.103733 0.550553 0.433546 -0.178804 -0.318359 -0.319086 -0.707084 -1.284471 -0.071421 1.078787 0.086560 -0.051476 0.342908 0.530302 1.088041 0.269603 -0.032506 0.417723 -0.025495 -0.020090 0.413387 0.040772 0.319336 -0.094552 0.318518 -0.456816 -0.674305 0.379989 -0.136431 -0.865756 -0.482974 0.346269 0.484930 -0.114927 -0.307967 -0.498078 -0.231314 0.144682 -0.035471 0.312752 0.660949 0.208411 0.375963 0.661637 -0.067430 -0.179750 0.135040 -1.628589 -0.759410 -0.526560 1.237007 0.924899 -0.270266 -0.727170 0.789156 -0.230871 0.347003 0.242958 0.906838 -0.177081 -0.278873 -0.296487 0.005717 0.318771 -0.175888 -0.247933 0.126266 -0.148855 -0.545037 -0.085363 0.405541 -0.331180 -0.313390 0.503346 -0.161507 0.535604 -0.914667 0.134825 -1.035235 0.057075 0.504381 -0.678180 -0.134083 0.404206 -0.269577 0.615187 -0.351585 0.102217 0.392399 -0.087055 -0.330448 0.219842 -0.993612 0.899463 -0.166458 -0.093309 0.368428 0.444730 0.396425 0.093981 0.416759 -0.097765 -0.020780 0.310746 0.051150 -0.056808 -0.025282 -0.136796 -0.172825 -0.338871 0.085450 -0.241441 -0.450925 -0.095986 -1.357063 -0.204657 0.209373 0.627294 -0.322292 0.396021 -0.064178 -0.479388 0.650765 0.014080 -0.394190 -0.138528 0.548973 0.579655 0.266237 -0.167031 0.253745 0.795488 0.307508 -0.285389 0.463437 0.000172 0.063951 -0.099615 0.649190 0.103817 0.445886 -0.346861 -0.085855 0.101739 0.965181 -0.056997 -1.047418 -0.082082 0.053122 0.432771 0.017029 0.243088 0.236203 -0.103875 0.056396 -0.161525 0.191356 0.593320 -1.194766 0.727614 -0.021095 -0.414181 0.562644 -0.175884 -0.014925 -0.517065 -0.058320 0.517361 0.886291 0.435223 -0.238361 -0.333693 -0.515483 -0.129158 0.084612 0.345220 -0.344793 0.538482 -0.188043 -0.443838 -0.223652 -1.028689 -0.039387 0.074774 -0.633312 0.124511 0.689780 -1.237813 0.599274 0.068832 -0.251400 -0.326046 0.116411 -0.003056 -0.448099 -0.691383 -0.107316 -0.497757 -1.257699 -0.158041 -0.483163 0.040544 0.025210 -0.173321 -0.051572 -0.487311 1.053929 0.205859 0.594770 0.471686 0.026167 0.818995 1.264112 -0.553211 0.280625 -0.581985 0.674526 -0.803449 0.135136 0.503824 -0.526252 0.139981 0.791758 0.071406 -0.079082 -0.672941 0.550969 -0.057539 -0.277019 0.519327 -0.659767 0.235096 0.592995 0.626045 -0.353594 -0.224066 -0.747431 -0.034432 -0.112188 -0.189638 0.037868 -0.742938 -0.206708 0.519430 -0.348213 -0.673727 0.102940 -0.259510 -0.527966 -0.254732 0.764143 0.467603 -0.663433 1.013583 -0.389937 0.475025 -0.598074 -0.204814 -0.302001 -0.004148 -0.212042 -0.152700 -0.041765 -0.143542 0.035187 -0.355306 -0.498056 0.247066 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -2.150647 -1.262015 0.273692 -4.414070 2.769721 4.807976 1.431049 -3.361545 -5.262696 -2.793199 2.483807 -8.897277 -4.986027 6.349471 -2.610108 2.897510 7.704142 -0.461271 -2.967501 -2.529817 4.039199 1.629426 9.251033 9.802844 -6.790217 0.355984 -0.325656 2.706948 2.723554 0.225008 2.666499 -5.082529 1.766872 -2.806158 0.751074 -1.412171 -1.641322 0.711735 3.251588 -10.041186 -0.831069 4.156508 -0.390228 -0.027913 1.058111 3.321839 6.628091 5.142612 -0.522236 4.373690 4.346007 0.735184 2.931467 -0.147685 1.231952 -1.977213 1.693830 -1.750357 -1.014561 -0.940065 -1.229180 -1.463090 -0.766049 7.203253 7.734603 -0.000288 -3.351099 0.867227 2.002548 1.633048 1.716060 5.497846 1.369959 3.535815 4.300016 -4.420933 0.775819 -9.015370 1.926325 -10.688082 -4.781888 0.144621 6.123939 3.810292 1.991533 -2.281996 9.681084 -0.745935 -2.966437 7.219027 7.988435 -4.169866 -1.418179 -1.602023 -3.140217 1.000980 -3.060932 2.673309 0.033101 3.411749 -5.837309 -2.737772 -0.023189 -0.111427 -3.976456 -1.676361 -0.371947 4.071896 -5.937029 -1.776675 -2.663188 4.307191 1.185201 -10.326514 -4.919192 -3.806855 1.769854 1.208198 -4.419887 -3.309518 2.251296 0.355967 -1.716398 -1.251186 -3.671938 4.332082 4.506330 1.895956 -0.535242 4.147722 3.063427 8.163058 0.521405 -3.278499 0.340887 1.268234 -0.225565 2.909892 -2.200808 -0.707122 2.685136 -4.389109 0.448126 2.454625 -3.310510 -2.644908 -0.679948 -1.109622 -0.474494 19.497052 -1.433161 7.174722 5.831189 -5.321421 1.500661 -2.738461 0.464110 2.150308 3.408041 3.905482 -7.083639 -4.729351 5.968557 9.510901 3.070587 -5.991896 2.048493 3.651940 0.611609 -2.744883 4.093668 0.630511 0.860999 -3.393927 -0.922523 4.868039 11.043180 -2.603811 -1.568604 0.528090 3.835003 1.103298 -2.959491 -0.122154 -2.316503 0.170112 4.011542 2.088432 3.631916 7.115620 -9.861507 5.645984 0.832197 0.454710 4.487769 2.066596 -5.377001 -4.871547 -1.006637 3.134054 4.739787 -0.085418 -0.195791 0.641701 -7.586695 0.182863 2.116363 1.125363 -4.583227 6.339031 0.598367 -2.612210 -2.874055 -0.798239 -2.000568 -0.811628 -3.501247 4.876242 0.571992 -8.269041 5.788458 1.223620 -3.214604 -1.640173 -2.796974 5.672030 -5.946667 -5.796739 3.025872 -3.919838 -6.137666 -2.180308 -2.420015 1.640177 2.705577 2.577527 -6.474810 -5.444398 7.806900 -1.772525 7.703380 3.882458 -1.116955 4.799854 -1.560636 -2.850925 -3.147909 -5.599819 3.395830 0.863815 -4.517972 -0.783657 -2.175735 4.160552 5.469953 -1.555642 -4.508046 -0.936904 5.592182 -4.863318 -1.485490 1.535578 2.346319 -4.561699 3.419664 2.886778 -4.448908 2.122911 -5.656215 -1.451958 -4.445667 -3.840551 4.952561 -1.677596 2.155908 1.045176 -1.010514 -0.845820 2.638795 1.717614 -0.859749 2.311811 7.988629 5.962114 -1.816024 0.585006 -8.635732 5.119064 -7.150277 -6.786365 1.304908 -0.436773 -3.133420 -2.245306 -1.361358 4.983076 4.736373 -4.149872 -4.250707 4.306974 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = -0.021674 0.263877 0.555161 -0.306756 0.299513 -0.225520 0.150109 0.263709 -0.375647 -0.904231 0.146325 -1.051183 -1.134423 0.608871 -0.241872 -0.414383 0.832953 -0.039351 0.001431 -0.494366 0.023013 -0.249624 0.904833 0.987374 -0.977867 0.141606 0.109798 0.498277 0.405142 0.187139 0.439192 -0.742351 0.108412 0.441767 0.587286 -0.032218 -0.092416 -0.351509 -0.620404 -1.222157 -0.192570 0.733531 0.011454 0.077825 0.247985 1.185576 1.045708 0.524078 -0.402574 0.458501 0.596695 -0.072066 0.341242 -0.017828 -0.048640 -0.882107 0.353264 -0.243939 -0.470077 0.264863 -0.013088 -1.004129 -0.359772 0.752051 0.925997 -0.154918 -0.206289 -0.226185 0.029087 0.321777 0.057742 0.496349 0.707789 0.459588 0.717385 0.104793 -0.039204 -1.319121 0.124802 -2.534056 -0.772088 -0.462234 1.369886 0.498238 -0.421703 -0.407983 0.981886 0.351165 0.092546 0.786798 1.096947 -0.035014 -0.298971 -0.296037 -0.273195 0.539485 -0.484538 0.289442 0.242674 0.410815 -0.623110 0.009096 0.153719 -0.425499 -0.417351 0.295430 -0.263401 0.469984 -1.014653 0.368529 -0.910620 0.021823 0.780906 -1.195267 -0.094418 -0.004094 0.503810 0.402907 -0.237822 0.398063 0.145753 -0.191190 -0.226157 0.391469 -1.258042 0.855288 0.187631 0.212643 0.242038 0.621476 0.561974 0.129788 0.375471 -0.217070 -0.241306 0.152355 -0.192971 0.129374 -0.244912 -0.029597 0.771922 -0.314024 0.302266 -0.260715 -0.402164 -0.769268 -0.624854 -0.434396 0.249894 1.204509 -0.092688 0.630071 0.308529 -0.449212 0.325727 -0.174632 -0.237531 0.208767 0.552145 0.537101 0.231304 -0.353753 0.490379 0.995068 0.293254 -0.672925 0.344121 0.420055 0.065901 -0.409805 0.579827 0.209760 0.132241 -0.265892 -0.089247 0.606468 0.682968 -0.013749 -0.812569 -0.152990 0.448925 0.416548 -0.202241 0.283522 0.437197 0.030439 0.221258 0.139248 0.336704 0.758618 -1.895640 0.651781 0.465531 0.131743 0.395891 -0.073508 -0.438371 -1.245749 0.305052 0.547832 0.532525 0.343723 -0.209148 -0.095593 -0.747548 -0.023203 0.195694 0.295017 -0.423981 0.616467 -0.189781 -0.160582 -0.590604 -0.864113 -0.143172 0.375209 -0.548639 0.355397 0.386113 -1.631860 0.784147 -0.316160 -0.517533 -0.713245 -0.344739 0.287343 -0.840855 -0.740887 -0.121893 -0.829777 -1.554534 -0.713500 -0.388363 -0.037601 -0.102119 -0.026754 -0.257645 -0.487012 1.148464 -0.281976 0.594377 0.469769 0.101439 1.130272 0.711469 -0.421346 -0.162597 -0.263724 0.788012 -0.638682 -0.322527 0.559970 -0.268046 0.112276 0.871853 -0.335077 -0.149535 -0.104952 0.523864 -0.371548 -0.800744 0.309985 -0.096770 0.015376 1.035608 0.409424 -0.565707 -0.012712 -1.056774 -0.316378 -0.165881 -0.526550 0.264150 -0.554662 -0.023317 0.502503 -0.193417 -0.521573 0.370186 -0.144667 -0.316638 -0.110680 0.875190 1.393816 -0.813015 0.636851 -0.929174 0.563920 -0.934739 -0.755359 0.017086 -0.061245 0.082771 -0.168376 -0.221357 0.098961 0.353545 -0.670007 -0.715639 0.719556 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -1.220679 -1.357584 -0.685653 -1.295349 1.460940 1.240950 0.987749 -1.227082 -2.760370 -0.652282 0.898172 -2.865850 -1.533944 3.097376 -0.513693 2.648736 3.991145 0.865637 -0.907347 -1.165784 2.554725 -1.778876 3.999993 4.501724 -2.523528 0.218648 0.340819 0.911329 0.577596 0.528211 0.001364 -1.621752 1.335390 -3.320526 0.393623 -2.117846 -0.693100 1.473147 2.623194 -4.976442 -0.226648 0.943665 0.699410 0.004817 -0.125217 2.200764 2.181871 2.359642 -0.667038 3.020638 1.725367 -1.114958 1.450501 0.336289 0.843214 0.967266 0.250241 1.304713 -0.847404 0.029416 -0.924448 -1.515078 0.648776 2.499290 3.695286 -0.555282 -1.396150 1.188923 0.493706 0.647427 1.119679 2.169830 0.313634 -0.221272 2.299105 -3.946973 -0.396991 -6.212838 0.104847 -6.882762 -2.151264 0.021497 2.373260 -0.524927 1.971783 -0.101344 4.337157 -0.576407 -1.385715 2.553529 3.290190 -2.920671 -0.936288 -0.739286 -1.143595 0.171365 -1.383175 0.309485 2.474856 0.427449 -2.660656 -2.408090 1.445017 0.517035 -1.590956 -2.213776 -0.287103 2.386830 -2.587694 -2.545392 -2.073349 1.106524 -0.647381 -4.245259 0.087087 -1.651545 0.872639 1.142055 -2.196061 -2.498600 1.304164 0.723702 -0.861847 -1.777701 0.461966 2.331898 1.473941 0.696122 0.224304 1.205350 0.388403 4.220022 1.844635 -1.781690 0.040022 1.198431 -1.120065 1.558996 -1.855558 -1.373632 2.068503 -2.885681 0.184027 0.596533 -1.792483 -0.320882 3.315955 0.103089 -0.198434 7.827445 -0.426081 3.130731 2.488507 -2.503761 2.182990 -1.056306 0.820969 1.608111 2.633556 0.912188 -4.188961 -2.346992 2.076335 4.100256 1.706675 -3.791500 -2.102846 0.465145 1.047265 -0.106372 1.207681 0.547927 0.523860 -1.585256 -0.083931 1.022532 5.706344 -2.392855 -0.305282 0.456267 1.547534 -0.882443 -4.496470 -0.702980 -3.532507 -0.296865 0.194070 0.657923 1.138903 3.291633 -5.308639 2.705990 -1.658482 -0.131013 2.361335 1.393991 -2.197781 -4.831209 -0.764363 0.950079 2.942383 0.267396 0.270017 0.904178 -3.429558 0.144434 0.294644 0.652662 -1.920354 3.054745 -0.604203 -1.480457 -0.873918 0.650110 -0.730848 -1.898077 -0.089960 2.276172 1.202664 -4.048838 1.892375 0.199219 -1.670877 0.892325 0.398831 2.465546 -2.334349 -3.039296 1.956030 -0.926495 -1.253058 -1.499772 -0.736448 1.229407 0.680440 -0.526733 -1.780258 -3.537476 2.988705 -1.254325 3.353768 1.661227 -0.970926 2.726039 -0.549767 -2.259159 -2.185315 -1.123537 -0.467058 -0.749079 -1.331877 -2.285554 -0.805120 2.510679 2.768275 0.873456 -1.022458 -0.351834 3.532665 -3.035172 -0.295505 1.702671 1.891759 -1.353922 1.520704 2.046531 -2.882155 0.421361 -1.891163 -0.355680 -1.245850 -1.184642 2.392397 -1.319800 0.807500 -0.221329 -0.269008 0.470950 1.386532 1.302078 0.224419 0.070674 4.057015 3.347961 -1.544582 -0.626059 -3.107659 1.733775 -3.102989 -2.322245 -0.051010 1.812434 -2.266444 -0.376714 0.908274 2.301039 1.564996 -2.119920 -1.731698 0.401661 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = 0.008311 0.235284 0.419628 -0.120056 0.570190 0.108257 0.307409 0.362499 -0.593541 -0.582022 -0.040533 -0.816026 -0.910711 0.791835 0.030811 0.119323 1.165555 0.328805 0.024149 -0.266118 0.099627 -0.551814 0.997945 1.053967 -0.718973 0.352935 -0.018479 0.180545 -0.207409 0.774684 -0.254895 -0.923443 0.383555 -0.128578 0.323256 -0.422265 -0.313908 -0.158026 -0.228736 -1.543929 -0.068978 0.741350 -0.008880 -0.055415 0.168908 0.769342 1.143131 0.490002 -0.111017 0.744915 0.146080 -0.310667 0.428222 0.136730 0.402813 0.119127 0.300643 -0.095927 -0.720531 0.316130 -0.229175 -1.084410 -0.316736 0.494654 0.777325 -0.206924 -0.347918 -0.119933 -0.235421 0.150541 0.105542 0.430828 0.620734 0.065233 0.623971 -0.157879 -0.158899 -0.944398 -0.117166 -2.279822 -0.906847 -0.468418 1.205434 0.359776 0.124397 -0.451202 1.049001 -0.203359 0.156428 0.342607 1.143637 -0.654887 -0.384995 -0.288776 0.016819 0.246674 -0.354784 -0.164373 0.512919 -0.282039 -0.753184 -0.401144 0.720671 -0.139377 -0.399720 0.018016 -0.160020 0.764174 -1.092620 -0.320349 -1.186483 -0.041469 0.228421 -1.004074 0.124928 0.305731 0.230474 0.710030 -0.489320 -0.319308 0.477917 0.154766 -0.313390 -0.218600 -0.473723 1.017875 0.032287 0.081503 0.425345 0.464121 0.367345 0.673479 0.872867 -0.205906 -0.038686 0.322102 -0.193486 0.187208 -0.171244 -0.344308 0.071836 -0.641167 0.102504 -0.039980 -0.584599 -0.069195 -0.345901 -0.052070 0.178306 1.243354 -0.264002 0.642529 0.191299 -0.722333 0.723963 -0.243816 -0.254505 0.076320 0.771077 0.537174 -0.395758 -0.392268 0.416997 1.050640 0.465291 -0.888235 -0.030504 -0.088492 0.249376 -0.064074 0.558088 0.212470 0.544006 -0.509269 -0.055540 0.196354 1.496249 -0.518541 -1.005638 0.066300 -0.049338 0.236271 -0.802540 0.039794 -0.144461 -0.112310 -0.005638 -0.084787 0.184180 0.855035 -1.588896 0.866070 -0.403962 -0.467072 0.779854 0.111420 -0.274062 -1.013235 -0.117915 0.560425 1.044218 0.495570 -0.124994 -0.153759 -0.776965 -0.110240 0.048230 0.330091 -0.395433 0.734748 -0.204933 -0.596593 -0.325551 -0.737716 0.018096 -0.185294 -0.363696 0.352531 0.675339 -1.687007 0.701018 0.037419 -0.448828 -0.039986 0.208446 0.381590 -0.613632 -0.977380 0.197211 -0.532842 -1.123450 -0.358172 -0.408770 0.150545 0.090993 -0.333993 -0.131001 -0.832216 1.128048 0.033979 0.801068 0.552104 -0.022853 1.173063 0.860345 -0.789096 -0.097082 -0.457613 0.431379 -0.871314 -0.058251 -0.020204 -0.498105 0.471013 0.986708 0.219480 -0.048855 -0.587354 0.821366 -0.721030 -0.278041 0.746935 0.101107 0.032464 0.689966 0.826035 -0.630593 -0.193407 -0.685940 -0.191805 -0.199081 -0.329083 0.238224 -0.773583 -0.082099 0.407026 -0.248268 -0.446262 0.240589 -0.142145 -0.284532 -0.337333 1.002318 1.167098 -0.931959 0.599806 -0.595145 0.554181 -0.851666 -0.508613 -0.128203 0.378988 -0.426083 -0.139769 0.208355 0.123971 0.150151 -0.665495 -0.557078 0.113093 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -2.449778 -1.432391 -0.720162 -3.829177 2.759040 5.347420 1.446876 -4.310644 -4.464632 -2.081132 2.621550 -7.442409 -4.131614 5.844312 -2.600204 3.916444 6.824593 -0.698872 -2.803008 -2.347539 4.530649 1.718094 9.043753 8.956681 -6.242883 0.020005 1.017838 2.310800 2.886469 -0.616489 2.302537 -4.139820 2.633610 -4.306164 -0.232170 -1.442201 -1.265637 0.642801 4.545478 -8.611971 -0.806831 1.783036 -1.378482 0.144009 0.284547 2.798096 5.543647 5.012839 -0.572787 4.507455 4.373139 0.650188 2.091654 0.097901 0.876953 -1.517861 1.013724 -0.819349 -0.394890 -1.643828 -1.147464 -1.030066 -0.593442 6.690361 7.315828 -0.185546 -2.764460 2.149419 1.554355 1.554190 1.530713 5.110457 0.570165 3.278120 4.051268 -5.974882 0.213877 -9.205949 0.750896 -9.766903 -4.164901 0.385023 4.167874 1.576636 3.062957 -0.433950 8.862558 -0.051635 -3.223827 6.424392 7.316534 -4.822828 -1.221597 -0.967900 -2.466916 0.644776 -3.169850 3.210879 0.623169 2.644142 -5.380746 -3.221276 0.015184 0.506388 -3.643010 -3.262706 -0.370664 3.790006 -5.423144 -2.548786 -2.083300 3.437486 -0.089368 -10.135490 -4.781494 -3.438232 3.474345 0.875014 -3.772767 -4.222199 1.894338 1.173785 -0.951087 -2.631068 -0.199756 3.064424 5.113742 2.190753 -0.395988 3.584174 2.673675 9.344279 1.556216 -2.778612 0.117417 0.638922 -0.399751 3.241770 -1.991707 -0.522710 2.056220 -4.728753 1.678131 3.723630 -2.912736 -2.681922 2.086121 -0.863665 -0.540101 19.006784 -1.051674 6.931582 6.043665 -5.366205 -0.056485 -3.707190 0.653652 2.521843 2.971862 3.273594 -7.409960 -4.416547 5.660882 8.715536 2.854577 -6.751505 0.936262 3.107295 0.855420 -2.915071 3.079599 0.882158 0.827145 -3.084116 -0.709297 5.112588 10.105983 -3.542242 -1.229844 1.030107 3.548470 0.538720 -3.754517 -0.805725 -2.962962 0.216374 4.568009 2.148863 2.864996 6.550414 -8.745648 4.691696 0.537677 0.532576 4.001490 3.154660 -5.524860 -3.976908 -0.578617 2.881244 3.634219 -0.508330 0.463593 0.972799 -7.115613 0.213064 2.180237 0.679101 -3.998851 5.763878 1.125090 -2.449389 -2.964555 0.826133 -1.141114 -1.465200 -2.240253 4.866642 -0.347843 -8.681558 5.238457 0.864946 -3.596523 -0.666478 -2.842280 6.540242 -5.533566 -5.602284 3.694353 -3.448968 -4.410352 -1.784353 -1.618900 1.762249 3.242413 3.119966 -6.026837 -4.938550 6.178577 -1.586489 6.728884 3.387915 -0.595997 4.897840 -5.097963 -2.910388 -4.004156 -4.727375 2.983043 1.376769 -4.830936 -2.174028 -1.538723 4.479858 5.098548 -1.245007 -4.440009 -0.456822 4.986594 -6.317324 -0.773052 1.536661 5.385510 -4.974465 2.802861 2.567065 -4.048546 2.014959 -4.169695 -1.500674 -4.273990 -4.057057 4.782337 -1.183164 2.446983 0.681198 -0.467149 0.034181 2.793624 1.805970 0.549441 2.112848 6.487963 6.635298 -2.232491 -1.159279 -7.985334 4.491038 -6.866352 -7.138789 2.270803 -0.190898 -2.648419 -2.060052 -1.303903 5.148901 4.245103 -4.227000 -3.555009 3.316513 diff --git a/src/test-suite/oracle/SYM_llvm16_p/ir2vec.txt b/src/test-suite/oracle/SYM_llvm16_p/ir2vec.txt new file mode 100644 index 000000000..4aac13830 --- /dev/null +++ b/src/test-suite/oracle/SYM_llvm16_p/ir2vec.txt @@ -0,0 +1,118 @@ +-2.589981 -0.187861 1.710304 -6.312741 4.851710 6.474707 2.083143 -3.032650 -7.842045 -4.497442 1.706915 -12.081413 -7.587830 9.548887 -2.774753 3.655442 12.333139 0.624713 -3.550202 -2.835896 5.620267 -0.668435 12.433009 13.964011 -9.463906 1.409879 0.339735 4.170712 1.640155 4.193848 1.588436 -8.743265 1.327093 -3.475162 2.750898 -3.779846 -3.119264 1.047662 3.264870 -16.433921 -1.055733 7.638016 0.427118 -0.417117 1.760329 3.600706 11.064740 7.004922 -1.337985 5.741491 5.291210 0.806186 4.668787 -0.099810 3.076646 -0.252787 3.581406 -1.183069 -2.282992 -0.046175 -2.414554 -3.343144 -0.397329 9.916528 10.886136 -0.251041 -5.047679 0.188407 1.831356 2.098866 1.473378 7.763307 1.747781 4.326787 6.002102 -6.340154 1.540960 -13.624206 3.469879 -16.573708 -7.654521 -1.205204 8.486342 6.729685 3.088248 -3.946671 14.550984 -2.820500 -2.563579 9.090665 12.239412 -6.118455 -2.002225 -3.531016 -5.193073 1.441994 -3.612458 1.172113 0.949331 3.236556 -8.473142 -4.919221 1.704328 0.023475 -5.815862 -1.432476 -0.964704 7.029707 -9.130300 -3.533034 -6.022350 5.345937 1.159239 -14.691374 -5.797028 -4.912508 0.140553 2.537963 -6.910430 -6.191474 4.271687 1.619187 -3.306569 -1.978378 -5.865318 8.202354 5.047169 1.278441 -0.085309 4.688052 4.037907 10.397164 2.801653 -4.751681 0.483677 2.846056 -1.279178 2.508234 -3.639314 -1.600614 2.686018 -6.913481 -0.733592 3.121805 -5.402408 -2.083192 -1.744334 -2.507724 0.118946 29.193619 -3.360445 9.742182 6.547388 -8.526502 5.702606 -1.772101 -0.745581 2.394247 6.121253 6.830194 -11.174941 -6.584943 8.114904 14.022487 4.844734 -8.060775 0.966787 3.464108 0.548374 -2.164241 6.424049 0.460662 1.316028 -5.312572 -1.725696 5.233755 17.376288 -3.857401 -5.332495 0.916300 5.062145 0.478502 -6.340540 0.060994 -5.823049 -0.359047 3.635494 1.053133 5.485606 10.641054 -16.623189 9.324531 -0.413041 -1.734140 8.186153 1.519913 -5.889985 -9.775844 -1.642572 5.592667 8.902340 0.122182 -0.827443 -0.381904 -10.945120 -0.048010 2.412438 2.914851 -7.370116 9.845188 -0.295861 -5.452431 -4.003956 -2.677514 -3.226247 -2.838078 -5.516230 6.228518 2.010589 -12.414030 9.208299 2.267396 -3.513059 -1.041559 -2.183369 6.344454 -8.253551 -9.718956 4.272237 -4.397885 -8.041223 -2.541830 -4.266081 3.349788 3.683505 1.250003 -8.419493 -9.559391 10.742112 -2.163117 11.509477 5.974107 -1.039452 7.568810 2.594351 -4.715815 -4.249040 -7.295824 4.044567 -0.355880 -4.976710 -3.499820 -4.220385 6.278349 9.090248 -1.031552 -4.738096 -3.239046 9.364949 -5.656063 -1.608201 3.249211 -0.422567 -5.761477 3.811443 5.302102 -6.329116 1.128835 -8.903375 -1.120561 -5.894654 -5.012483 6.227615 -4.308824 1.622628 2.747156 -2.768453 -2.366853 3.478416 2.699492 -1.815077 2.266076 12.023250 7.134115 -3.387101 2.530539 -11.197971 7.053158 -10.694160 -8.147254 -0.014777 0.581616 -4.917012 -3.238708 -0.621372 6.263607 5.310175 -4.537191 -4.993648 4.166923 +-4.405858 11.545525 14.788500 -14.226852 20.451466 15.657256 7.131540 -1.139472 -17.217286 -19.205334 -2.276714 -30.729113 -32.214571 27.747637 -6.958843 4.963114 39.699409 4.220219 -3.284312 -12.129059 13.051261 -10.615313 40.390461 40.487148 -35.273867 7.408700 9.097661 16.093089 4.196074 22.513968 -2.929837 -29.063682 7.240739 -4.945490 15.343808 -13.690873 -6.747529 -5.878225 -3.090446 -55.202462 -4.905468 19.350967 -2.209149 0.647231 5.079257 17.479372 43.072616 21.809978 -7.883725 16.643058 16.565111 2.136827 14.291132 2.664243 7.550923 -0.338081 16.310793 -6.082188 -13.346736 4.270401 -5.631054 -27.233795 -4.940540 29.083029 35.839194 -3.459133 -11.031155 0.838850 -1.941500 6.094571 0.898888 21.580644 12.784930 15.360071 22.492521 -17.858126 2.375753 -45.031241 3.001205 -66.342639 -28.933600 -19.697612 25.855348 16.647096 9.191462 -9.241003 44.819549 -2.616832 4.710658 18.607098 42.514776 -22.869372 -8.095217 -15.743123 -10.341093 9.578136 -14.679265 1.766140 4.923737 2.118211 -25.288359 -19.657574 15.645520 -2.311790 -18.962072 -2.753239 -8.543218 25.043463 -33.878117 -11.158243 -34.839558 2.906460 2.339405 -46.091084 -7.209182 -5.774575 10.237436 13.174576 -11.128156 -19.150491 11.088269 12.747416 -8.874360 -9.475493 -20.827284 31.926833 15.399973 -1.410761 7.485942 13.946119 14.282167 29.647200 23.062551 -9.420696 -6.896909 10.567162 -9.852648 1.123929 -13.118190 -3.388903 9.384899 -22.642253 -0.234753 10.802483 -17.332910 -6.651023 -5.955231 -13.901013 10.376347 76.365666 -9.251365 22.330148 11.566288 -29.880843 20.893580 -5.917945 -9.963832 8.226003 22.660152 23.789443 -30.110739 -19.132705 18.136953 40.245913 14.752735 -27.650247 -0.725871 1.308719 2.592148 -7.998498 17.868842 6.152780 4.646136 -15.679631 -4.175715 14.553992 52.728697 -15.522424 -29.395011 4.725864 9.099274 0.355224 -25.679085 -0.198150 -12.061243 -4.366724 6.670858 0.687321 12.815032 33.728311 -59.185328 29.233850 -2.937111 -12.268149 26.970888 -0.928528 -10.952604 -31.302341 5.098730 23.682719 29.217573 5.704819 -2.136940 -6.448210 -33.149132 -0.782206 5.876464 14.578661 -20.145562 28.260226 -1.910468 -21.952926 -18.622177 -17.535675 -5.041049 -8.208214 -16.915143 14.873654 11.491221 -55.097237 32.674031 -1.033063 -14.170022 0.817362 -6.726519 18.874883 -28.588887 -34.544166 11.519153 -14.482930 -28.301893 -11.983483 -12.273508 11.880805 5.988752 -1.410210 -20.923237 -31.351992 31.192745 -3.912617 26.265313 20.388942 5.755731 33.204094 15.901760 -20.634199 -14.068553 -16.590220 14.224635 -10.963581 -12.192071 -8.810489 -14.990590 19.395104 40.282118 -2.193175 -5.689737 -13.676864 29.556653 -25.792844 -12.487812 16.719322 4.181117 -11.408697 16.277388 20.937278 -19.779622 -8.605101 -27.635963 -3.782102 -9.456338 -20.800303 13.796055 -25.882220 0.888439 19.025756 -9.615316 -14.521807 14.644459 1.161210 -5.536459 -4.577115 36.705027 34.929898 -23.873263 13.773351 -30.241883 20.919607 -37.738710 -23.620447 -1.102267 2.699552 -9.030500 -6.106052 0.869464 13.632631 9.242515 -13.483863 -14.910706 2.465199 +-2.719669 -2.770412 -1.042984 -3.756476 3.037870 2.768802 2.014493 -3.417226 -6.087038 -2.553560 2.655194 -8.198147 -4.177764 6.823360 -1.975826 4.893605 8.415978 0.788476 -2.411659 -3.115547 4.670434 -1.438015 9.373077 10.128230 -5.920809 0.363635 -0.286371 2.278939 1.813394 0.021299 1.997350 -4.524302 2.735025 -5.334851 0.664274 -2.688220 -1.741523 2.648254 5.032581 -10.465846 -0.545849 2.906563 1.302779 0.103341 0.200283 4.353929 5.321764 5.230834 -0.389811 6.316082 4.131796 -1.199439 3.344036 0.427059 1.850209 -0.123697 0.831684 -0.426396 -1.737094 -0.362855 -1.958613 -2.203576 0.205392 6.267025 7.900428 -0.683562 -3.493739 1.925945 1.519421 1.964469 2.410995 5.246704 0.713586 1.231024 4.517001 -7.204676 -0.174107 -11.962432 0.837849 -14.015525 -5.060265 0.688692 6.275847 1.519529 3.107440 -0.672935 9.717199 -0.687661 -3.662820 6.289733 7.774140 -5.199235 -1.925205 -0.920985 -2.292371 0.391001 -2.888923 1.881277 3.218679 2.940956 -6.101141 -3.411626 1.950685 0.190420 -3.572352 -3.535172 -0.273058 4.672121 -6.183078 -3.702108 -3.570695 3.867169 0.333987 -9.869945 -1.517211 -3.536361 2.022022 2.047559 -5.210769 -4.130412 2.879315 0.461640 -1.938048 -2.255355 -1.617513 4.540148 3.795591 2.051507 -0.020035 4.204115 1.812799 9.368953 1.817593 -3.832818 0.443081 1.927770 -1.016337 3.669356 -2.836220 -2.258832 3.446300 -5.620595 1.196859 1.436163 -3.726584 -2.211072 3.251889 -0.017314 -0.891660 17.276994 -1.358788 7.547434 6.231220 -5.024344 2.753300 -3.181520 1.765582 2.662149 4.686705 2.582834 -7.108567 -5.264164 5.739949 9.360409 3.532575 -7.363347 -1.713375 2.591430 1.893941 -1.267392 3.429112 1.034820 1.349204 -3.420745 -0.394785 3.417280 11.976659 -3.918579 -0.167559 0.776826 3.627010 0.079936 -6.734655 -1.072039 -5.273897 -0.238082 2.151538 2.376261 2.756311 7.375839 -11.055006 5.937189 -1.330555 0.664258 4.790275 3.026689 -5.478372 -9.198189 -2.102136 2.369824 5.739080 0.021745 0.692031 1.602940 -7.675358 0.322035 1.241703 1.175053 -4.560488 6.548819 -0.607064 -2.748916 -1.992770 0.775462 -1.913326 -2.162495 -1.487608 5.234714 2.773443 -9.017913 4.712624 0.863125 -3.672877 0.097829 -0.611770 6.247110 -5.237596 -5.900564 3.586181 -3.664304 -4.925456 -2.847667 -1.809883 1.673266 1.353919 0.739955 -4.733950 -5.636726 7.642716 -2.346220 7.857643 3.725803 -2.043982 5.343350 -2.174866 -4.274466 -3.348910 -3.916723 0.838332 -0.911260 -3.578099 -2.241912 -1.719832 4.811334 5.549123 0.666999 -3.887844 -0.224664 6.744927 -6.266912 -1.012424 2.953377 3.267244 -3.707039 4.039687 3.990592 -5.666600 1.966121 -5.123272 -1.210436 -3.968681 -3.013477 5.263275 -1.904996 2.008358 -0.349994 -0.855981 0.328141 3.023417 2.511522 -0.156781 1.353984 8.702558 7.088495 -2.335759 -0.810818 -7.882152 4.177654 -6.740568 -6.063985 0.634320 2.556611 -4.486667 -1.654927 -0.031213 5.358213 4.212838 -4.950090 -4.614274 3.084467 +-2.799382 13.857059 15.717534 -12.289951 19.678337 13.472772 6.515019 1.260396 -14.193899 -19.140272 -3.609245 -27.202919 -31.861441 24.909086 -5.912023 1.984994 36.628484 3.809440 -1.352764 -11.785843 10.429681 -11.133072 37.145378 36.750776 -33.918289 7.800726 10.512529 15.171952 3.901006 22.729012 -4.208625 -27.743896 7.047656 -2.308999 15.807101 -12.768480 -6.103573 -8.387835 -6.560725 -51.695916 -4.997835 17.341591 -3.989368 1.001252 4.955565 19.111618 42.217424 19.770073 -8.670335 15.023524 15.190021 2.005478 12.699606 2.637687 6.724825 -1.286947 16.042551 -4.937075 -13.336947 5.010715 -4.529443 -28.592693 -5.857346 26.557989 32.939198 -3.979850 -9.413515 0.267044 -3.295543 5.193280 -0.536178 19.513999 14.292501 15.096471 21.634596 -14.960990 1.890131 -41.401400 1.553022 -66.004027 -27.620971 -21.326842 24.614429 13.726527 7.268458 -9.101799 41.171812 -0.977469 7.216112 16.113728 40.234521 -21.054061 -7.660194 -15.250020 -8.503196 10.067277 -13.863509 1.431094 5.404991 -0.215087 -23.105961 -18.081410 15.829211 -3.153955 -17.783624 -1.455893 -8.884176 23.105124 -32.920684 -8.801684 -35.399276 -0.440918 2.979832 -42.809389 -5.584208 -2.826859 12.412024 12.885449 -8.402753 -16.756108 9.624529 12.889390 -7.930848 -8.389449 -19.954703 30.977175 14.065563 -1.889210 8.656364 12.828612 14.322383 25.941983 24.152980 -7.326083 -7.946006 9.792045 -9.999286 -0.587383 -11.751306 -2.355321 9.570729 -20.636933 0.691300 9.650780 -16.051110 -6.328291 -5.547617 -14.426102 11.344439 69.124543 -8.592229 19.319215 8.519724 -28.153370 18.887714 -5.527462 -11.467593 7.533718 21.521665 23.060127 -26.100866 -16.653914 15.465041 36.694173 13.315892 -26.452036 0.178091 -0.041288 1.900211 -8.009801 16.383614 5.833868 4.737359 -14.038661 -3.849109 13.569736 47.887230 -14.441996 -30.463627 3.972529 7.596414 0.861305 -23.216376 0.567080 -8.540301 -4.177819 5.614049 -0.320931 11.570179 30.888764 -57.311544 26.808901 -2.654734 -12.935638 24.526578 -1.603481 -8.629283 -29.316671 6.951169 23.392052 27.041247 6.621063 -1.979346 -7.333991 -30.125034 -1.095887 5.456617 14.356408 -18.268870 25.609393 -1.411243 -21.099689 -18.364017 -18.847612 -3.470298 -6.282478 -16.038266 12.586116 10.400651 -55.811680 31.197869 -2.313663 -13.695581 0.044222 -6.459805 16.367845 -27.433296 -32.952581 9.564885 -13.753698 -28.023515 -11.509236 -11.829174 10.872339 4.470538 -2.119685 -18.448861 -29.600764 29.119365 -3.022816 22.532640 19.312237 7.291488 33.825232 15.303566 -19.809622 -13.007274 -14.770968 15.227655 -12.389533 -10.534029 -5.870145 -14.496891 17.073695 39.224099 -2.489834 -3.301216 -12.961584 26.634795 -24.527214 -12.885413 16.180317 5.604247 -9.121559 16.362907 19.806388 -17.790928 -9.958964 -26.121926 -4.597603 -7.135696 -20.054264 11.441735 -26.335366 -0.292273 20.271309 -9.198422 -15.364063 14.152382 -1.181097 -5.306703 -5.937076 32.894133 36.082020 -25.458973 14.383301 -27.063411 19.489419 -35.634719 -21.963976 -1.178470 1.869749 -6.071970 -5.446571 0.781067 10.766470 7.270000 -12.912052 -13.490044 1.470204 +-10.037552 26.467234 24.048306 -34.550769 47.017653 36.679486 17.457741 -0.376325 -39.668801 -48.651299 -2.581055 -78.044630 -77.633188 61.742055 -13.576752 13.655438 97.536233 5.370004 -5.071405 -29.600066 27.962894 -13.683013 98.240212 102.817627 -83.621045 18.482313 22.996048 29.104911 6.831741 35.614073 0.123123 -79.721518 20.686921 -15.662899 33.041336 -27.711682 -20.854000 -16.762296 3.747712 -132.987980 -12.697612 42.441782 -14.603088 1.396976 12.363611 46.856777 105.872531 51.874776 -23.942634 45.360744 42.234293 6.728166 30.906985 3.600130 11.167389 -6.268590 18.558866 -10.867322 -27.445560 9.030252 -11.880701 -53.200003 -14.165627 69.894266 82.002099 -10.488540 -33.264646 6.099680 2.778203 11.907194 -2.726378 57.234028 39.572712 37.420750 55.723993 -47.365160 -7.491683 -120.996940 9.380485 -168.995146 -74.514400 -42.242873 66.415650 33.994020 21.362208 -27.697201 109.942015 -7.525849 10.349807 57.482207 101.163349 -54.259266 -18.775114 -36.327469 -21.935527 22.069829 -32.249278 10.599489 13.939561 2.013944 -64.593527 -48.355110 31.770122 -9.616175 -46.619333 -19.784030 -14.154387 52.214211 -75.919392 -23.896205 -85.862912 15.283078 12.494970 -113.777402 -19.959891 -8.584837 28.879023 32.342931 -33.902877 -46.811383 24.242472 21.909311 -25.070961 -22.887567 -39.839269 74.251177 44.118970 1.340100 21.977915 38.707016 40.541767 80.175985 53.239500 -24.742365 -15.437714 24.083666 -18.619049 4.570738 -30.201367 -6.806061 27.861516 -54.170635 10.694281 26.572845 -43.136052 -21.707902 -2.493664 -37.176572 18.269952 193.095801 -23.802842 60.382143 34.425198 -69.427795 46.614522 -25.724079 -25.479585 18.038484 55.891788 61.612709 -72.719850 -42.572828 47.753873 101.236293 34.900180 -71.416497 0.989791 14.339176 7.912450 -26.030815 45.826422 12.233113 21.029338 -37.156833 -8.138201 46.267116 128.680080 -35.253057 -58.177547 5.440334 40.548980 12.782612 -55.979839 -0.156948 -36.866957 -10.817770 33.463070 7.881917 33.720524 80.091089 -145.126286 63.494809 -4.841461 -23.195178 52.246450 13.287606 -34.724424 -77.683524 13.161613 56.389992 67.673444 12.429855 7.814021 -16.997495 -78.753949 -2.947928 18.452274 31.585616 -52.086893 71.124286 -5.750168 -50.287456 -38.610791 -34.857369 -18.322001 -19.644717 -37.681537 38.861413 31.822881 -137.068755 77.800107 -0.449968 -37.924415 -3.661018 -25.221680 56.797626 -69.888754 -80.900243 31.253863 -38.559750 -67.930210 -19.793785 -32.146315 25.269839 16.166301 6.559283 -50.209741 -80.675532 82.732385 1.113714 71.304480 50.647244 9.493250 84.040544 12.028360 -50.015112 -32.977017 -55.177455 45.505768 -19.384396 -33.600720 -20.786246 -37.521865 43.289560 93.827877 -11.292010 -22.208960 -32.109185 63.133269 -71.694694 -19.482285 36.103424 24.992640 -28.945163 39.862491 48.132981 -47.293921 -11.793539 -71.588732 -2.890134 -27.579932 -49.086971 32.314393 -60.893316 0.730933 45.454248 -27.012331 -28.818995 34.976036 3.715526 -11.222206 -6.409714 80.831545 90.463283 -55.857545 25.883496 -77.661703 50.794290 -90.526495 -66.107949 0.489773 1.062019 -23.022738 -21.993228 -2.495255 33.165780 20.893724 -35.344576 -42.729110 16.392364 +-5.599758 -5.063701 -2.402305 -7.614289 5.213913 7.714472 3.552414 -7.217787 -11.249521 -5.106426 4.588977 -14.957527 -7.693808 13.313311 -4.212289 10.077719 16.440822 1.638872 -5.279671 -4.925464 10.482014 -1.922162 18.218687 19.477940 -11.771780 0.148198 0.571510 5.105350 4.282370 0.592675 4.727147 -8.718347 5.151231 -11.068285 1.402087 -6.276842 -2.828116 5.378978 9.833123 -20.586102 -1.168483 6.150907 1.987395 -0.152923 0.409672 5.006780 10.230798 10.600212 -1.063003 10.859940 8.096569 -0.474194 6.051865 0.803193 2.940396 0.746481 0.683134 -2.041414 -2.299156 -1.462536 -3.549776 -4.162585 1.154406 12.961507 15.808039 -1.153541 -6.149197 4.391433 2.942446 3.677825 4.562512 10.312733 0.023722 2.764938 8.612254 -15.341569 -0.220638 -22.372052 2.232550 -24.283829 -9.224441 0.653752 10.016438 4.711290 7.263935 -1.075259 19.174008 -2.549532 -6.676649 12.958783 14.900472 -10.565034 -3.257243 -3.307806 -4.899174 1.208396 -6.512674 3.021578 4.276418 5.555018 -11.487663 -7.766967 2.768148 1.713356 -7.364106 -7.981784 -0.870795 9.845020 -12.023496 -8.602668 -6.425640 7.771809 -1.185998 -19.794782 -4.606176 -8.216544 3.026644 3.322702 -9.338203 -9.742329 5.381187 2.446969 -2.767592 -5.993924 -2.122723 8.162883 7.817511 3.251552 -0.640854 7.478311 3.085607 19.085957 4.357661 -7.042092 0.630714 3.989214 -2.442945 6.465957 -6.106704 -4.047746 5.912852 -11.326418 0.068222 5.178236 -7.161494 -4.147862 6.091513 -1.081643 -0.879018 37.491444 -2.362632 13.980301 12.590057 -10.768566 5.030173 -5.515787 2.882723 5.498957 8.743490 5.817177 -16.642184 -10.276427 10.715363 18.462315 6.933188 -12.906611 -3.435277 4.409589 3.390704 -2.721947 6.211657 1.998988 1.738104 -7.385721 -1.094100 7.151622 22.970535 -7.904132 0.393247 1.928557 7.642034 -1.681090 -13.470919 -2.247315 -11.517620 -0.534537 4.938412 3.784491 5.404316 14.448860 -18.772561 11.629754 -2.505808 1.249865 9.189086 5.409933 -10.243201 -16.217892 -3.310961 5.091367 10.859559 -1.623497 2.105373 2.894785 -15.466737 0.597801 2.690522 2.731339 -8.716320 12.834927 -0.693034 -5.380325 -4.845469 3.071907 -3.745821 -5.889178 -2.752648 10.169980 4.727618 -14.472221 9.931575 1.369787 -6.743220 1.506739 -1.670633 12.953772 -11.122245 -12.084988 8.262051 -5.624922 -8.201799 -4.667119 -3.512678 5.146776 4.418353 1.022522 -10.041955 -11.434192 13.320992 -4.178868 15.007214 7.125202 -3.223836 9.930022 -4.824923 -7.337997 -7.637462 -8.291467 0.311681 -0.233163 -7.612548 -7.908734 -3.226169 10.363716 11.588287 0.508891 -7.991692 -0.218407 13.491819 -12.689731 -1.480855 5.092160 6.857911 -8.259134 6.142523 7.148429 -11.136080 3.048442 -9.316962 -0.714111 -7.274381 -6.673107 10.533971 -4.167029 4.455851 0.109107 -1.429648 0.736519 5.704553 5.994510 0.227757 2.856028 16.582935 11.516189 -3.681132 -2.354319 -15.525516 7.930926 -14.024548 -11.807861 1.157259 4.569933 -7.985916 -2.803515 0.251898 10.945180 8.776053 -7.900702 -7.797260 4.460506 +-7.830446 -6.076002 -1.406977 -11.896217 8.131754 10.206899 4.926740 -8.019985 -16.566248 -9.332095 4.604843 -20.948113 -11.828750 19.643157 -5.684272 13.218483 25.212842 3.890878 -6.359908 -6.364521 14.691116 -6.978622 25.111085 28.578967 -17.110472 0.633389 1.036822 8.432685 3.529567 5.103083 5.578812 -15.119268 5.224837 -14.536882 4.717816 -11.548992 -4.513751 8.777780 11.648014 -32.281184 -1.700950 11.442004 2.866887 -0.149567 1.484922 6.222325 16.503763 14.715275 -3.148649 15.368371 11.021977 -0.410088 9.169130 0.960605 4.879095 3.045167 0.846273 -2.277762 -3.889684 -0.048228 -5.975701 -7.677629 3.018549 18.264606 22.368839 -2.091367 -9.078637 4.352308 3.225930 4.843596 5.620489 14.976029 0.084588 3.128189 12.248900 -22.305231 -0.508109 -34.380350 5.123473 -36.623310 -14.127919 -0.687952 14.913840 10.988118 9.606729 -3.991060 28.695985 -5.548477 -7.887638 18.933503 22.254001 -14.811145 -4.499657 -6.946713 -8.473537 1.507284 -8.320796 1.191779 5.181139 7.769150 -16.546244 -12.138362 5.009970 2.040569 -10.617944 -10.694346 -2.623482 15.858944 -19.087180 -12.744842 -11.794561 11.370745 -1.263513 -28.413574 -4.277239 -12.119013 1.618493 5.358541 -14.477803 -14.453030 8.990879 4.556512 -5.159139 -7.306426 -6.385844 15.051251 9.617910 2.458727 -0.745158 9.791470 3.528520 24.925542 7.588563 -10.507750 0.412652 7.610953 -4.560768 6.664194 -9.869377 -5.902108 8.486605 -17.117977 -2.462610 6.073642 -10.971003 -4.726143 6.962895 -3.348852 -0.151721 56.913729 -4.942472 19.756977 16.213698 -16.264411 12.420503 -4.843361 3.251192 7.367906 14.164127 9.784694 -25.770468 -14.602037 15.144233 27.048777 10.058285 -17.023244 -7.102886 4.944755 4.501237 -1.971024 9.828786 2.134761 1.355615 -10.919543 -2.040968 8.328047 35.036551 -10.227044 -0.963187 2.226750 11.312720 -3.588219 -21.396457 -2.435628 -19.218128 -1.504618 5.718892 3.694528 8.477627 21.478519 -30.535926 18.011820 -4.896368 0.471091 13.678112 5.704318 -12.442246 -28.430269 -5.187641 8.442461 18.076280 -2.218810 3.524222 3.000647 -22.448928 0.922645 3.488327 5.846111 -13.998048 19.582277 -2.398996 -10.063820 -6.874559 2.169590 -7.617234 -9.850649 -5.156535 13.707625 8.248943 -21.067027 15.310786 1.936839 -8.289217 3.251034 -0.356493 17.467204 -16.115892 -19.012376 12.010547 -6.799503 -12.230282 -6.415194 -6.419068 8.332581 5.088204 -2.724509 -13.398219 -19.363388 18.944508 -6.100439 22.396338 10.569332 -4.334684 15.505564 -0.190752 -10.657332 -10.377010 -12.395260 0.517385 -2.437621 -9.098087 -13.097019 -5.314389 14.670022 17.952123 1.858058 -10.032705 -0.817688 21.355692 -15.074633 -1.307730 7.838867 4.249013 -10.595840 7.839186 11.165973 -16.529000 2.437873 -15.585078 1.351117 -9.915263 -8.857307 14.180285 -8.248790 4.842558 1.396688 -2.703498 -0.838890 7.897317 9.640660 -0.773596 3.406974 25.758962 14.424385 -5.131728 -0.834060 -21.645994 11.451430 -20.733201 -15.288326 -1.755350 8.498672 -11.017469 -3.870090 1.114752 15.111532 11.805602 -9.112654 -9.568448 4.894406 +-9.788068 13.709884 22.059403 -28.155233 35.330872 28.271450 11.908591 -5.535742 -32.369414 -31.298259 -1.870493 -53.459517 -52.344759 48.332215 -14.337826 12.782241 66.804289 5.883610 -7.469426 -20.403030 26.725349 -16.881169 68.997390 68.456988 -60.505654 10.326582 13.090970 29.276468 8.316661 37.476070 0.011589 -49.503558 9.749702 -11.039005 26.774330 -24.754294 -11.437818 -3.891304 -0.278922 -94.250198 -9.067679 36.829502 -3.190611 2.519086 10.604404 28.951839 68.545784 38.197187 -14.985205 31.229271 30.054360 4.792528 26.105781 3.515540 10.295643 0.144376 25.940996 -10.583764 -20.426242 6.474241 -11.639203 -40.354260 -3.428076 51.318450 63.024080 -7.500822 -20.399812 3.274664 -0.116771 11.591917 3.730088 40.056422 16.580133 24.972805 38.940606 -33.310569 4.085530 -79.913664 9.766750 -108.985990 -47.733908 -29.719691 41.968072 32.759636 16.213513 -16.927797 79.999309 -5.949967 2.442491 37.992604 69.708988 -36.635332 -11.808511 -28.682083 -21.262598 13.168131 -24.603293 0.279779 7.694114 9.872437 -43.083704 -33.070068 20.583173 -3.731716 -32.346908 -7.501226 -15.969945 43.608193 -57.320068 -21.936050 -55.015633 13.056535 2.214211 -80.515221 -15.174701 -15.208666 13.079737 19.200785 -19.173665 -31.892471 20.176241 21.010455 -15.914658 -14.066555 -35.014036 54.324891 28.162153 -2.033018 9.151639 25.144240 20.731856 50.516971 35.457891 -18.048231 -12.396342 20.073935 -15.015424 3.981297 -24.044584 -4.112229 18.018001 -39.701680 -2.954426 18.353270 -28.334571 -11.784718 -10.063901 -24.869040 15.336494 139.377329 -17.104933 40.880676 22.630842 -50.483595 36.742444 -6.805907 -12.278166 15.965393 37.825628 39.573429 -55.790744 -34.180544 34.079530 69.530527 24.715196 -46.568888 -2.815645 5.461977 4.946191 -11.974573 30.209219 11.183771 4.238358 -26.770404 -6.931310 21.196336 91.921427 -24.730788 -44.818997 8.278782 22.308578 -3.916063 -44.051009 -1.127248 -26.583857 -9.203590 13.569606 2.322135 22.749744 57.995245 -100.392829 50.173294 -3.081312 -17.012142 44.937322 -2.365768 -19.253996 -59.434590 3.499147 37.467003 48.800504 5.108561 -2.316022 -8.570857 -57.727984 2.505072 10.206432 24.811081 -35.530343 50.429143 -4.865718 -35.893587 -29.897643 -24.726272 -12.871764 -14.676371 -28.693248 26.866501 19.243577 -88.020730 53.570842 -1.942786 -23.339579 3.268417 -8.560628 35.317812 -47.614458 -57.864851 22.079170 -23.131966 -46.747154 -21.468645 -21.046396 21.014232 11.932387 -2.227966 -38.648428 -55.598727 51.357289 -9.870633 46.830313 34.317615 6.539650 54.406168 23.619381 -34.239184 -25.519706 -32.072334 22.333705 -13.421133 -19.382291 -18.263393 -23.679777 33.906026 64.934421 -3.392040 -11.968985 -22.375838 53.161839 -40.906746 -17.891265 26.252865 2.005815 -21.775619 26.072795 34.241787 -33.746066 -11.725590 -48.222625 -1.836311 -19.832465 -31.092375 27.012704 -41.345459 1.639564 27.991587 -15.110439 -23.322305 23.797150 7.280249 -9.743066 -5.753008 66.498564 55.399783 -35.173581 21.151336 -52.389027 36.195089 -63.543586 -39.076238 -5.000124 3.792891 -15.315847 -9.284680 1.259343 27.100409 20.222125 -22.297674 -24.693390 5.017602 +-7.486169 11.926296 23.856345 -24.310969 32.160297 17.763913 9.903194 0.060621 -28.831715 -27.977747 -3.805355 -44.791205 -47.430271 42.580255 -12.630370 9.003401 58.500228 6.890444 -4.700205 -20.101036 21.825025 -18.858241 58.409570 55.764635 -54.193633 9.169161 12.241082 28.105436 8.294821 36.104646 -0.122940 -43.042715 5.347529 -5.758880 27.754557 -23.831946 -8.835896 -3.226024 -5.229891 -85.926765 -8.774462 36.225884 -2.731768 2.747967 12.900736 34.723232 58.312915 33.229671 -15.850029 30.208263 25.970966 3.441835 24.159977 2.077845 5.338659 0.869626 26.966991 -9.053957 -21.687453 9.735175 -9.393119 -38.789207 -1.193421 44.303981 56.156618 -10.272770 -18.028646 3.386559 1.741768 10.731823 2.918727 34.850864 14.559163 21.866177 35.295837 -26.517200 2.068677 -72.036587 10.007102 -103.323244 -43.477701 -29.126780 39.734244 27.845027 8.396522 -14.767452 72.009317 -3.902255 3.739371 34.958311 60.189928 -28.790884 -10.886290 -29.120050 -18.383692 12.851899 -22.293141 -5.862918 10.229648 10.840654 -37.065495 -29.127940 17.924454 -5.645435 -28.639033 -2.517326 -17.219488 40.173146 -52.973379 -20.299676 -52.944354 12.018793 3.493857 -69.505937 -9.418148 -10.165590 13.627792 18.503691 -12.151003 -23.669530 18.189303 18.868880 -15.341083 -7.183371 -34.703671 51.127716 22.015328 -4.302717 9.265340 23.750409 17.284892 37.019297 33.649594 -16.466414 -14.942427 22.232303 -14.989487 1.026741 -23.118100 -3.074570 17.982449 -34.286166 -1.657265 12.113455 -25.187534 -11.941622 -12.397978 -24.550575 15.207917 113.645783 -15.384466 33.323401 14.726554 -43.662628 34.164681 -2.718922 -11.993815 13.293184 34.174744 35.713267 -43.956821 -28.968827 28.242010 59.947746 21.629357 -40.120182 -3.928480 2.800635 4.234049 -7.302472 27.651017 13.440861 1.284864 -22.459363 -6.249348 11.522194 80.759088 -19.372000 -43.252067 5.586506 21.446292 -6.097287 -40.027662 1.001508 -20.450408 -11.642078 9.257802 0.943429 19.425424 50.634166 -94.441905 45.381915 -1.378568 -15.558152 37.705494 -6.954289 -13.409889 -59.879965 1.020498 32.965861 45.129630 4.631863 -3.211246 -7.895418 -49.581416 4.565880 7.346936 24.145517 -29.220356 44.833865 -6.581572 -31.590153 -25.087059 -22.692554 -11.369239 -10.440249 -24.638199 21.656223 19.520554 -81.230787 46.734902 -6.982258 -19.675140 3.755523 -2.388702 29.329191 -41.872411 -50.732835 17.672846 -18.197532 -44.030034 -23.154895 -20.726239 19.112115 7.855899 -4.108276 -30.721819 -50.258439 42.828356 -10.234404 37.544457 29.846036 4.269733 51.290252 24.753888 -30.607857 -20.266425 -26.970099 18.902759 -14.745435 -9.583308 -11.622336 -20.436548 28.639716 56.567923 -3.382861 -7.070113 -22.755462 47.931813 -33.666104 -17.120798 22.887102 -4.296771 -14.766087 26.219854 30.701370 -30.546958 -12.007626 -44.496350 0.520356 -17.290314 -21.234918 22.273406 -39.820951 -3.542227 25.731077 -13.826478 -23.444381 20.298854 5.905502 -12.231393 -9.002592 60.960268 54.336342 -33.956511 24.077175 -42.888911 32.598858 -54.768955 -30.269967 -9.732458 2.637121 -10.842992 -5.261345 2.172506 21.018211 17.509839 -20.617673 -22.426646 2.394888 +-5.069256 -3.704098 -1.007085 -7.592092 5.803665 9.909106 3.594436 -7.876756 -11.349956 -3.601357 4.613800 -16.031446 -8.621530 13.687496 -4.628507 9.028621 17.066886 1.172724 -6.321306 -5.622585 10.017531 0.038888 19.872788 20.899749 -13.401949 0.977652 1.250902 4.966244 5.889419 1.468555 2.252856 -7.770380 5.642321 -10.284669 1.127608 -6.126919 -3.465986 2.826827 9.211195 -21.974881 -1.274971 5.438922 1.307268 -0.043300 1.070866 9.194470 12.555146 11.011106 -0.779969 10.663633 8.374303 -0.583240 6.438105 0.551133 3.488077 0.020883 5.017999 0.241537 -2.473644 -2.271652 -3.058205 -4.752319 -0.054807 14.107886 16.685760 -0.647019 -6.529651 3.667384 3.908743 3.274545 4.093153 11.008736 1.402468 5.104737 8.946987 -13.611676 2.071383 -20.347560 1.799821 -25.480378 -9.452888 -0.021978 10.758725 2.290061 7.128096 -1.477183 20.361944 -1.863400 -6.100220 12.040992 16.137142 -11.834031 -3.205566 -2.305082 -5.262869 1.442522 -6.602509 4.506348 5.105178 4.641210 -12.198525 -7.789491 2.932779 1.514350 -8.234233 -5.030078 -0.935672 9.281768 -12.999084 -7.129168 -6.659417 6.087603 -0.921722 -21.569598 -6.561278 -8.073989 5.368264 3.189737 -9.162765 -10.158357 5.183720 3.037509 -2.875001 -5.831239 -2.505085 9.252512 8.958820 3.406621 -0.445489 7.104159 4.435669 19.292652 5.150554 -7.153361 0.584697 3.634102 -3.123761 6.307496 -5.820942 -3.379679 5.934087 -11.720675 2.007104 6.022612 -7.434597 -3.102097 5.833476 -0.542400 -0.743332 39.835472 -2.782589 15.076629 12.271457 -11.968437 3.667630 -6.245241 1.825462 5.846747 8.545368 6.965990 -17.449621 -10.288573 11.047944 19.762501 7.103791 -15.140128 -0.206745 4.707877 2.182890 -3.792323 7.124090 1.685700 2.124243 -7.696378 -1.538906 8.008419 24.727930 -8.596240 -2.886810 1.628869 5.282963 -0.779491 -11.883457 -1.734969 -8.454824 0.061139 5.325028 3.774899 6.272241 14.953041 -20.770585 12.535127 -2.320533 -0.693499 11.500158 5.296156 -10.818852 -12.128838 -2.569499 6.050221 11.194483 -0.407602 -1.146804 2.678429 -16.250003 0.177388 3.313684 2.555718 -9.418121 13.417754 1.932921 -6.255781 -5.384644 0.669401 -1.359719 -4.888304 -4.311538 10.493868 0.635521 -18.913999 11.095468 1.953891 -7.615462 0.229708 -3.027808 10.898515 -11.948925 -12.579814 7.413295 -5.832308 -9.195660 -5.693562 -4.192010 4.998968 5.526006 3.896536 -12.713634 -13.059713 14.491782 -5.018126 15.380901 8.047249 -2.538005 11.055138 -5.090970 -7.266245 -8.863595 -8.052564 2.125097 0.136218 -8.535565 -5.045396 -4.302644 10.516406 12.694141 -0.928702 -7.134348 -1.524073 13.473369 -12.747764 -2.452111 4.859315 8.763132 -9.135462 6.811958 7.191378 -10.705596 3.117055 -9.249675 -4.520873 -7.731131 -7.441504 11.373293 -4.670857 4.769017 1.148824 -1.632339 -0.197432 6.220100 3.839468 -0.263516 3.627312 16.895293 14.290584 -5.394983 -0.699306 -16.449893 10.103623 -15.067667 -12.791828 2.505656 2.442306 -7.942144 -3.461497 -0.182076 11.223473 8.959262 -10.114978 -7.951677 5.634171 +-0.705916 -0.654398 0.230826 -1.319262 1.025707 0.097959 0.499861 -0.865848 -2.002508 -1.439838 0.926439 -2.904567 -1.796311 2.242930 -0.734443 1.017333 2.761006 0.134234 -0.861959 -1.423285 1.225444 -0.544873 2.925176 3.272116 -2.185085 0.203809 -0.136718 0.986199 1.078394 -0.103692 1.270425 -1.284217 0.421030 -0.998284 0.751219 -0.375891 -0.523032 0.416654 1.099160 -3.481481 -0.147261 1.378675 1.188481 0.092274 0.312150 1.636859 1.935752 1.592800 -0.314296 1.754788 1.889911 -0.215585 1.256644 0.015363 0.226079 -0.790397 1.181720 -0.477458 -0.778518 0.078480 -0.442039 -0.713814 -0.025527 2.272500 2.704518 -0.212684 -1.077498 0.351297 1.006832 1.205594 0.856384 1.714334 0.214146 0.604707 1.538056 -1.743311 0.187596 -4.821032 0.498070 -5.023652 -2.066759 0.058740 2.695275 0.999602 0.375713 0.285345 3.090412 0.189179 -0.978835 1.661036 2.657066 -0.756380 -0.706436 -0.312906 -1.129050 0.751350 -1.141769 0.647877 1.043171 1.690609 -2.017945 -0.715824 0.705603 -0.308291 -1.233414 -0.263549 -0.110400 1.728406 -1.726774 -0.617161 -1.181405 1.425262 0.771081 -3.494712 0.136174 -1.296764 0.105892 0.860933 -1.560059 -0.644172 0.759459 -0.360859 -0.964005 0.079750 -1.639683 1.649156 1.103489 0.756159 0.010315 1.502850 0.931279 2.027307 0.336604 -1.468705 0.102142 0.498410 -0.300455 1.142805 -1.139955 -0.780062 1.522754 -1.436777 0.865320 0.041799 -1.237986 -1.511671 0.359695 -0.496578 -0.341485 4.451163 -0.501227 2.602691 1.905194 -1.323211 0.898349 -0.700365 0.364083 0.803328 1.683623 1.087109 -0.892364 -1.703113 1.879614 3.144751 1.132630 -2.152450 -0.675671 1.244610 0.171607 -0.309282 1.424801 0.481037 0.460474 -1.148719 -0.263849 1.368494 3.250684 -0.724916 -0.639565 -0.053708 1.741366 0.267781 -2.055776 -0.096616 -1.510936 0.130474 0.452546 1.035806 0.903406 2.469386 -4.222136 1.960943 0.388350 0.510594 1.964252 0.504451 -1.895740 -3.652484 -0.310299 0.885923 1.858154 -0.050520 -0.376118 0.483063 -2.557371 0.029032 0.303225 0.411017 -1.562681 2.093300 -0.421993 -0.340807 -0.858401 -0.210557 -0.434680 -0.259439 -0.724175 1.664712 1.403848 -2.855430 1.788400 -0.273693 -1.292809 -0.708528 -0.557194 1.809122 -1.578876 -1.530238 0.529016 -1.635590 -2.162560 -1.672778 -0.733006 0.470545 0.316537 0.676639 -1.359198 -0.903007 2.061872 -1.102405 2.508587 1.308085 -0.623674 1.651688 0.666956 -1.081727 -0.845919 -0.410947 0.361951 -0.423456 -1.274633 -0.291285 -0.625900 1.189123 1.926065 -0.237003 -1.203799 -0.326711 2.071485 -1.643635 -1.206239 0.857800 -0.218551 -0.974719 1.862973 1.212661 -1.748919 0.658506 -2.128562 -0.462196 -1.155892 -1.084814 1.716656 -0.372566 0.457080 -0.028153 -0.360310 -0.064027 1.139477 0.663955 -0.303358 0.240915 2.604228 2.435394 -1.021172 0.195887 -2.834396 1.608160 -2.437418 -1.865348 0.138379 0.324985 -1.419811 -0.547350 -0.481271 1.529017 1.161665 -1.576198 -1.991396 1.617229 +-2.155702 -1.958857 -0.161434 -2.843454 2.462621 2.959610 1.605390 -2.587570 -4.882726 -2.069424 1.883736 -6.533309 -3.515078 5.610328 -1.667472 3.876998 6.926518 0.899743 -2.180792 -2.057601 3.776435 -1.248744 7.533821 8.192314 -4.853174 0.363047 -0.143888 1.912507 1.413761 1.087770 0.909520 -3.700172 2.183987 -3.994391 0.792999 -2.536821 -1.450358 1.891382 3.584393 -8.798218 -0.442212 3.036509 1.116204 -0.055054 0.463726 3.237604 4.607383 4.223475 -0.255645 4.732106 3.065623 -0.845534 2.834189 0.329854 1.647378 0.278900 1.548061 -0.334784 -1.600493 -0.318143 -1.663347 -2.338003 0.126252 5.130925 6.509783 -0.579081 -2.605156 1.097744 1.141065 1.502523 1.918236 4.172076 0.561118 1.120908 3.529781 -5.335962 0.399430 -8.719016 0.740144 -10.575269 -4.102456 0.214276 4.884664 2.072927 2.642106 -1.074116 8.014084 -1.030797 -2.654534 4.344811 6.449297 -4.542604 -1.529803 -0.985155 -1.909297 0.357718 -2.585161 1.039503 2.258048 1.842119 -4.911902 -2.922591 1.752396 0.428395 -2.957510 -2.098617 -0.468541 4.212587 -5.254690 -3.263800 -3.113885 2.698177 -0.018978 -8.186729 -1.158383 -2.885006 0.912989 1.920951 -4.139638 -3.640538 2.530087 0.790218 -1.429742 -2.093173 -1.778790 4.320768 2.841892 1.353647 0.006030 2.975221 1.404711 7.153785 2.138049 -2.997727 0.332850 1.656763 -1.211070 2.799285 -2.363677 -1.798760 2.150777 -4.701835 0.265428 1.552859 -3.137056 -1.061044 1.624062 0.042161 -0.456161 14.373227 -1.296128 6.035174 4.718728 -4.518276 2.976317 -2.059917 1.090081 2.050251 3.785143 2.468871 -6.491586 -4.170975 4.547715 7.767308 2.942385 -5.787612 -1.066662 1.717185 1.454934 -1.035366 2.974298 0.971959 1.126866 -3.183607 -0.478659 2.526677 9.958633 -3.378677 -1.199257 0.719789 2.061289 -0.202530 -5.673050 -0.776073 -4.156564 -0.216792 1.460385 1.453188 2.129268 6.071466 -8.571042 5.171160 -1.285367 -0.224942 4.906236 1.820429 -4.143988 -6.695114 -1.553722 2.183848 4.896774 0.151436 -0.070922 1.135148 -6.319896 0.158954 0.882167 1.175485 -3.695081 5.358815 -0.206084 -2.531416 -1.869334 -0.179170 -1.096172 -2.371160 -1.679581 4.118419 2.028593 -6.990743 4.110079 0.848570 -2.917571 0.300732 -0.294423 4.472576 -4.321016 -5.071460 2.888404 -2.727632 -4.018466 -2.517379 -1.653217 1.641171 1.523542 0.257892 -4.027091 -5.092864 5.918835 -1.959102 6.350587 3.043775 -1.408898 4.360174 0.155505 -3.316928 -2.840054 -3.053761 0.529753 -0.979437 -2.816377 -2.500945 -1.596983 4.136306 4.825635 0.445955 -2.633191 -0.926807 5.643039 -4.804601 -0.822319 2.540923 2.007958 -2.988763 2.848633 3.350142 -4.482155 1.153937 -3.997226 -1.086951 -3.144084 -2.504213 4.231539 -1.916416 1.585757 0.016085 -0.714693 -0.211105 2.185020 1.989407 -0.430390 0.880275 7.233799 5.262655 -2.045278 0.059367 -6.250827 3.675673 -5.708301 -4.624181 0.438066 2.006933 -3.681928 -1.279181 0.429234 4.216895 3.351932 -3.844110 -3.379464 2.080472 +-2.682425 -2.767207 -0.494861 -4.387631 2.852732 3.008993 1.607892 -3.419357 -5.744687 -3.389845 2.655984 -7.594364 -3.833010 6.240749 -2.164572 4.344247 7.443566 0.159662 -2.173254 -2.883278 4.330170 -0.775463 8.255589 9.303193 -5.623725 0.238991 0.340214 2.304933 1.791099 0.088101 2.935923 -5.478659 1.899426 -4.075914 1.097116 -2.185657 -2.061358 2.623794 4.931513 -9.641432 -0.707076 3.545120 0.086474 0.287749 0.846384 2.465101 4.646597 4.613191 -0.772119 6.276338 4.366934 0.089381 2.846001 -0.118013 1.687602 -0.523876 0.639612 -1.323551 -0.683441 -0.044115 -2.029245 -0.846882 0.237626 6.056349 7.164688 -1.224510 -3.507322 1.167738 1.747829 2.013071 2.170758 5.389166 0.064021 1.378929 4.059819 -7.227734 -0.452992 -12.377892 1.932364 -12.351152 -5.007601 1.276801 5.672648 2.947947 2.391332 -1.009726 9.391201 -1.045966 -3.978993 5.982090 6.913919 -3.726857 -1.222970 -0.615962 -2.606283 0.176636 -2.503759 1.585039 1.456200 3.222007 -5.437884 -2.848006 1.285425 -0.218632 -3.478161 -3.536752 -0.427277 4.827432 -5.736657 -3.235633 -2.721829 5.214859 0.646053 -9.318847 -2.392950 -3.945765 1.458815 1.605478 -5.342005 -3.414984 2.864233 0.055650 -1.956723 -1.636761 -1.511874 4.070229 4.298829 2.156461 -0.588351 3.982793 1.775177 8.497627 1.393763 -3.630362 0.475359 1.811582 -0.068413 3.529596 -2.482174 -1.252543 2.428730 -4.466750 0.821513 1.573178 -3.283290 -2.715406 2.278140 -0.927310 -1.431413 18.378801 -1.791390 7.348778 6.265221 -4.490453 2.168090 -2.361015 1.682354 2.481133 4.238824 2.911053 -6.909298 -4.586162 5.956845 9.075750 3.023286 -6.561484 -1.684573 3.313638 1.389836 -1.496632 3.788417 0.477094 1.123205 -3.088411 -0.525591 3.261618 10.588118 -2.950510 -1.068093 0.153750 5.027026 0.144238 -5.383935 -0.551893 -5.557552 -0.111283 3.336765 2.084715 2.837964 6.712154 -11.498366 5.207658 -0.260346 0.901611 4.362420 3.279540 -5.059180 -9.336308 -2.043440 1.867422 5.060291 -0.694407 1.913711 1.461556 -7.197906 0.528934 1.251179 0.972141 -4.890969 6.327606 -0.511936 -2.379076 -1.518432 0.846914 -2.463897 -2.216948 -2.119020 4.899343 2.977555 -8.486482 4.264699 1.110518 -3.081828 -0.112070 -1.108030 7.154385 -4.701777 -5.294494 3.562052 -3.555924 -4.724703 -2.018983 -2.238268 1.604048 1.400802 1.535410 -4.642179 -4.725555 6.666916 -2.114478 7.812375 3.455999 -2.200766 4.943168 -2.868196 -3.309684 -2.756018 -4.465863 2.294483 0.042938 -3.337863 -3.191319 -1.561693 4.023425 4.646424 0.271312 -4.188955 -0.627384 5.897304 -6.126680 0.380830 1.969928 2.849460 -3.644840 3.573079 3.089863 -4.686682 2.383267 -5.215285 -0.263903 -4.408627 -2.396350 5.286171 -1.141689 1.871161 -0.567036 -0.837622 -0.072016 2.617161 2.964796 -0.210807 1.648936 7.361047 6.540659 -1.625490 -0.811642 -7.542968 3.865750 -6.011542 -5.818873 0.209409 1.392783 -3.926659 -2.128817 -1.206450 5.164223 4.491121 -3.432413 -4.052276 3.734504 +-8.371962 -2.922629 3.068768 -17.536503 13.543502 25.753559 5.093513 -16.987332 -18.530692 -5.585932 8.428873 -30.109658 -14.977724 22.727624 -9.980727 14.118016 26.400967 -3.083283 -12.222907 -6.291166 15.499215 8.544574 33.901100 34.227230 -23.056767 1.863494 1.749445 11.289370 6.201768 4.658410 3.457376 -17.472883 5.482026 -13.539247 -2.308702 -4.337700 -7.085459 0.943533 16.619731 -34.505150 -2.673340 9.851413 -7.934542 -0.173945 2.774141 1.761244 24.249480 18.008030 0.757031 14.808264 14.537518 3.489081 9.104004 -0.310575 7.371971 -2.290094 10.763487 -4.370040 -1.565478 -6.213916 -5.249600 -0.652613 -2.299678 25.779006 25.996428 1.651790 -12.424951 4.011903 5.701374 4.273041 4.561286 20.044837 -2.176305 15.986074 12.664934 -19.236136 6.865671 -27.819298 6.086301 -21.600043 -17.581386 2.271607 14.357554 14.196784 12.418591 -3.537961 34.778726 -4.573890 -11.629451 21.101848 28.550643 -18.690174 -3.671588 -3.344700 -12.333638 0.517879 -8.897326 9.725719 -4.823319 10.477466 -20.575621 -11.263312 1.525187 2.576007 -14.259198 -6.307060 -0.724906 15.799270 -19.113349 -10.532276 -5.997659 16.332749 -1.167216 -38.026963 -24.495745 -12.790996 8.797636 2.834725 -16.465062 -19.146217 9.235848 5.511207 -5.149090 -8.384327 -4.138932 12.961164 19.776713 6.125662 -2.423991 11.882453 11.210495 34.417792 3.361951 -10.489222 2.470583 2.375025 0.526411 10.862657 -4.959894 -0.122684 -3.463122 -17.106718 3.594629 16.609214 -11.388268 -5.736561 -2.884186 -1.571519 -3.138757 80.304958 -6.849984 27.047524 21.083978 -21.931442 3.428603 -10.981759 0.440077 6.926584 8.857100 14.844213 -33.488325 -16.550140 23.035519 34.165867 11.025295 -23.642185 7.005668 11.438278 0.533780 -9.330153 14.688929 1.735351 3.465685 -11.818542 -4.077262 18.479170 43.083775 -11.680489 -15.045904 5.589918 8.184154 2.828502 -11.724995 -2.537189 -9.985681 0.320213 17.814267 6.054837 12.268635 25.391364 -33.810539 19.330874 2.819227 -3.376120 22.038281 8.918768 -19.418213 -7.676342 -5.108980 12.336668 15.910563 -1.817847 -2.954748 1.045178 -26.758937 0.226411 9.429605 2.654281 -17.094061 23.601295 5.595371 -13.469613 -10.096777 -2.382462 -5.475176 -5.423565 -14.386276 17.896752 -5.988884 -32.177440 21.451891 8.983268 -10.822132 -0.920585 -12.198923 22.779261 -18.880074 -22.268686 14.080566 -11.762774 -15.221776 -3.173699 -7.825416 6.109636 15.905891 13.466282 -26.745741 -17.993454 21.907144 -4.465890 27.661850 13.796779 -2.100435 14.603909 -10.736995 -10.551232 -12.106189 -20.383518 15.710287 8.363224 -17.923991 -10.556042 -9.012976 17.143088 18.538007 -4.243253 -16.512429 -8.269084 19.678396 -19.229188 -0.963700 5.225931 10.425432 -21.515214 5.482730 10.155004 -11.826799 7.685589 -15.991869 -6.341839 -19.538996 -14.443689 17.733384 -3.213259 8.301757 3.813285 -4.151687 -2.471136 8.930247 6.106462 1.198837 9.971792 25.439188 18.654358 -4.948206 -0.126727 -29.722373 18.500162 -25.400777 -25.417285 8.109275 -3.503827 -11.956648 -10.037285 -5.479886 19.612656 15.317227 -13.656489 -10.301716 12.213987 +-6.954220 -6.842948 -1.138801 -13.028816 7.205126 12.171298 4.412536 -10.811309 -16.376966 -5.203307 6.898011 -23.179540 -9.872181 17.962457 -6.010717 11.875909 21.337601 0.678058 -9.601451 -5.670646 12.382013 0.311228 23.747727 26.050028 -14.787758 0.790254 -2.024810 8.901981 4.588312 1.316901 6.464963 -10.217369 3.248561 -12.156087 1.148457 -5.393457 -5.398177 5.758780 11.921394 -27.329930 -1.382291 10.882046 2.921323 -0.528177 1.702757 3.999055 14.279253 13.573188 1.265774 12.347820 9.687121 -1.225390 9.410488 0.014258 6.471757 -0.108103 5.375488 -3.196292 -2.752948 -2.660878 -4.873151 -2.153085 1.310962 18.028001 19.635890 0.438449 -10.024482 3.187176 6.033353 4.983046 5.819991 14.502917 -3.709611 6.398753 9.471998 -17.481523 4.871703 -23.580479 6.126004 -24.186705 -12.746432 3.477034 14.827798 10.568363 8.015705 -2.571677 25.928298 -4.707783 -10.272163 16.795561 19.672631 -11.544777 -3.798736 -3.087439 -8.322935 0.824541 -6.194869 3.910354 4.192275 10.799863 -15.556865 -4.998720 2.087082 1.752889 -9.941879 -5.020778 0.053223 13.101232 -14.126350 -9.175192 -4.589308 13.943321 0.304217 -26.917102 -11.401370 -11.441162 0.973443 2.941086 -14.450278 -11.830622 8.055282 1.431623 -4.431037 -3.745413 -7.007860 10.562135 10.337552 4.389532 -2.257758 11.619447 5.282987 23.401325 1.530980 -9.449874 2.983761 4.716691 -1.215968 8.843619 -4.968931 -4.483411 2.472727 -14.283917 0.031719 6.672231 -9.240203 -4.586091 -0.439509 1.034993 -3.080393 55.336859 -4.792601 20.786189 16.962166 -13.457058 6.525618 -5.674125 3.685465 5.486810 9.230812 8.186198 -22.528604 -13.403978 16.184807 25.838113 8.995782 -16.048304 0.376760 7.875143 1.695993 -3.408051 10.369382 1.126590 2.402861 -8.551574 -2.386239 10.308766 30.946925 -8.128521 -4.906599 2.513131 7.699525 -0.172478 -13.961505 -1.752857 -12.154935 -0.083523 6.456677 5.068120 8.642923 18.973539 -24.055388 16.451074 -0.062928 0.966793 16.900652 5.715337 -13.958717 -19.233477 -7.564393 6.714204 14.613106 -3.621127 -3.371186 2.868492 -20.243570 0.613264 5.213185 2.494030 -12.470800 17.835843 -0.615169 -6.443815 -5.022795 0.866906 -5.561146 -4.314436 -7.357883 13.694400 1.366278 -17.172363 13.626594 5.228761 -7.836438 -0.158685 -4.187477 14.539637 -13.343905 -15.080170 9.232963 -7.598230 -12.793321 -5.353377 -6.111566 5.363735 8.052121 3.859951 -16.387906 -11.888537 18.638561 -6.859002 22.331954 9.859583 -5.241033 10.648095 -2.534725 -8.892655 -7.229221 -13.090300 2.614962 2.450557 -10.869922 -8.558244 -5.499756 12.679447 12.615520 -0.300149 -11.501814 -1.922927 17.345318 -12.130097 -2.462308 4.787274 0.908119 -13.062652 6.963853 8.580320 -12.742850 6.509578 -13.365321 -3.898699 -12.730022 -7.984094 14.384133 -2.591235 5.965669 -0.677900 -3.352286 0.689841 6.470339 7.344228 -0.003553 7.213001 22.256386 11.211149 -1.963944 -1.335711 -21.753246 12.414318 -17.387741 -15.130500 2.074275 4.286024 -10.482844 -5.550710 -0.943701 14.475905 12.728189 -12.612328 -10.090092 9.487997 +-4.312102 12.469946 15.897446 -14.953660 20.814311 14.482653 7.118529 0.692280 -17.584336 -21.838549 -3.085574 -31.260840 -34.255365 28.306122 -6.929484 3.536877 41.186369 4.697565 -2.299910 -12.770849 12.911543 -13.157376 40.786128 42.040529 -36.916243 7.784118 9.722185 17.048289 4.022959 23.963247 -2.225209 -31.234997 6.852635 -3.636768 17.879409 -15.029750 -7.145039 -5.796241 -5.484348 -57.985398 -5.465103 21.161861 -3.131699 1.107150 5.824007 19.914161 45.069144 22.067382 -9.635314 17.581538 17.126289 2.381659 14.797643 2.397108 7.284770 -0.991077 15.180022 -6.150264 -13.762662 5.851429 -5.906842 -29.767199 -4.661742 29.881402 36.855319 -4.560729 -11.357870 -0.008295 -2.413515 6.120280 0.485422 22.483746 14.638732 15.100667 23.812138 -18.407872 1.712905 -48.274808 3.998777 -72.471434 -30.224328 -21.397432 28.058184 18.350303 7.848251 -11.659096 46.778007 -2.735227 5.772692 20.616579 43.952899 -22.503951 -8.128948 -17.277782 -10.749838 10.199501 -14.924848 0.705891 5.173242 2.154663 -25.876421 -19.836427 16.077717 -3.528729 -19.709986 -3.047697 -9.549592 26.198294 -36.183024 -10.548531 -37.765644 2.958515 3.804084 -47.476616 -5.670472 -5.832290 10.647062 13.805234 -11.501520 -18.193225 11.406482 12.865217 -9.250509 -8.330402 -23.807859 34.600594 15.188372 -2.103548 8.043227 14.854097 14.608637 28.725222 24.353505 -9.530446 -7.947978 11.942126 -10.606214 0.117629 -13.983029 -3.114986 12.076461 -23.086270 -1.618661 9.354656 -18.012912 -7.210419 -5.959017 -15.879057 11.153578 79.788941 -9.886251 22.595835 11.195888 -30.475468 23.125703 -4.904790 -10.611521 8.831145 24.338580 25.088904 -31.035059 -19.326915 18.258636 41.701373 14.990110 -28.135935 -1.221731 1.398147 2.623151 -8.052474 18.744383 5.838520 4.521806 -15.764588 -4.247301 14.369064 54.068389 -15.066945 -29.519488 3.755067 10.796355 0.157470 -26.775652 0.631884 -12.643509 -4.854049 6.411225 0.259945 13.470346 34.791161 -62.995006 30.153322 -3.347319 -12.316423 26.249757 -1.559921 -10.200422 -36.511093 5.653661 24.622004 30.682832 6.012161 -0.827195 -7.024803 -34.158411 -0.664387 6.030655 15.984134 -21.433258 29.446486 -2.797473 -22.585194 -19.097468 -18.940808 -6.529041 -7.928961 -17.669549 14.812011 13.099272 -57.687264 33.810557 -1.778389 -14.394512 0.214015 -6.073634 19.250398 -30.160810 -36.194870 11.459903 -14.883625 -30.853320 -12.768172 -13.451346 12.448251 4.382669 -4.078789 -20.785477 -33.567048 33.049535 -4.203352 27.021083 21.203765 5.929460 36.222335 18.207070 -21.403137 -14.113740 -17.942991 15.535159 -12.794591 -11.448092 -8.181929 -15.428061 19.024944 42.297199 -2.055875 -5.165072 -12.784872 30.843436 -25.538328 -13.123540 17.162185 3.310009 -10.313974 17.838033 21.576536 -20.773929 -9.547809 -30.289137 -2.887287 -8.887808 -20.954669 14.112716 -28.046661 0.153238 20.449698 -9.947042 -15.975873 15.383923 1.433857 -6.296057 -5.213343 38.466507 37.272383 -25.159732 15.039686 -30.950082 21.475542 -38.986925 -23.743909 -3.063715 3.749044 -7.832097 -6.280366 0.860520 13.327340 9.740279 -13.509301 -15.282301 2.865930 +-0.018562 0.335838 0.553707 0.131446 -0.238485 -0.381553 0.154397 0.206694 -0.535573 -0.765911 0.711996 -0.506078 -1.178961 0.975950 -0.871318 -0.731099 0.540312 0.837517 -0.426677 -0.164491 0.314188 -0.318190 0.915063 0.694088 -0.732027 0.266216 0.373122 0.021979 0.155878 0.831810 0.663441 -0.753409 0.717332 0.989894 0.993751 -0.726181 -0.013765 0.431406 -0.602011 -1.201502 -0.110150 0.588956 0.400704 -0.080615 0.061752 1.333979 0.319948 0.735193 0.359081 0.166008 0.508746 0.283573 0.694200 -0.002916 0.272348 -1.013444 0.845021 -0.496022 0.122584 0.282345 -0.336642 -0.524530 -0.428329 0.944769 1.069581 -0.351152 -0.215518 -0.917394 -0.551360 0.296860 -0.061431 -0.012744 0.692021 0.597347 -0.438163 0.231388 -0.337452 -1.277812 0.366386 -2.116399 -0.323768 -0.176447 0.942977 0.740393 -0.804110 -0.049754 1.003329 0.994636 0.022591 0.682712 1.293909 0.510374 -0.352149 0.400254 -0.141516 0.808468 -0.156076 0.728702 0.152941 0.219242 -0.588636 0.105473 -0.830416 -0.436025 0.114975 0.745284 -0.258837 0.728444 -0.767250 0.837074 -0.449348 0.287227 0.693988 -1.276568 0.205900 -0.356021 0.269780 0.438345 -0.515030 0.575975 0.526684 0.187976 0.019589 0.501283 -1.138122 0.571517 -0.910583 0.467172 -0.301532 0.035245 0.491445 -0.662203 0.106423 -0.380633 0.129959 -0.351824 -0.369767 0.602825 -0.476287 0.247953 0.699154 -0.102769 0.231726 -0.545053 -0.418526 -1.038810 -0.906483 -0.285933 0.001182 0.723505 -0.244245 0.838604 0.159423 -0.614797 0.187885 -0.069476 -0.334648 0.035577 0.541006 0.103196 0.591537 -0.708716 0.345527 1.281736 0.476686 -0.722367 0.526196 0.311430 -0.201535 -0.485118 1.104158 0.057240 -0.455084 -0.374415 -0.310832 0.454915 -0.055167 -0.149458 -0.553686 -0.879474 0.371962 0.810251 -0.108758 0.484444 0.382327 0.364099 0.283110 -0.026650 0.093603 -0.051992 -1.945023 1.066102 0.271824 0.026499 0.376770 -0.370962 -0.368566 -1.358441 0.455889 0.290217 0.420673 0.051926 -0.303285 0.619332 -0.932749 0.098689 -0.052629 -0.204149 -0.026705 0.522605 0.153032 0.046956 -0.806824 -0.284679 0.389991 -0.205051 -0.526486 1.043828 0.920112 -1.416700 0.209154 -0.472898 -0.145382 -1.136829 0.067035 -0.071895 -0.931351 -1.039289 0.009557 -0.404117 -0.838595 -0.658609 -0.445331 0.658483 -0.594212 0.316403 0.206269 0.258520 0.720470 -0.513596 0.165314 0.323546 0.335584 0.700385 0.515399 -0.270496 -0.100004 0.173868 0.856153 -0.870588 -0.293947 0.880416 -0.145771 0.382803 0.104078 0.177151 -0.540470 0.186820 0.955671 0.072771 -0.513510 -0.241287 -0.086892 0.810417 0.635834 0.419721 -0.383906 -0.203572 -1.231069 0.043215 -0.471782 -0.434313 0.585962 -0.217631 0.396185 -0.296863 0.118975 -0.755113 0.328695 0.271894 0.238144 0.654312 -0.019045 0.869667 -0.358298 0.871223 -0.332962 0.463445 -0.372328 -0.168026 -0.379555 -0.229811 0.303666 0.591403 -0.393272 0.488768 0.482448 -0.094346 -0.159740 1.160786 +-3.129445 3.188920 5.378424 -9.253227 9.403272 10.583027 2.892199 -4.728468 -8.250280 -5.855702 1.644292 -13.922221 -12.064646 12.504354 -4.135184 3.505582 15.339146 -1.441866 -3.723530 -5.070114 7.328806 -0.334351 17.537879 17.353359 -14.741798 2.151809 4.570317 6.293908 2.212018 6.794076 -0.741915 -12.053873 1.717811 -3.691048 3.680063 -2.829235 -3.686484 -3.096169 3.430418 -20.697886 -1.899541 6.067125 -4.964144 -0.248040 1.569048 4.847598 17.213592 9.643060 -2.792847 6.239511 8.663362 1.646213 4.237948 0.045906 4.501431 -1.177116 7.493972 0.310663 -2.514876 -0.515739 -2.749207 -4.483277 -1.685517 13.911188 14.415441 -0.695085 -5.849800 1.292254 0.758307 2.670208 0.052633 10.142682 3.496735 8.405587 9.120617 -9.295954 1.218621 -20.268001 2.613734 -21.387582 -11.583935 -3.847176 8.376487 4.960684 4.900881 -3.010714 19.349005 -0.961341 -1.784995 9.572943 17.502648 -8.976286 -2.490107 -4.928853 -7.119381 1.886607 -5.014890 3.495749 -0.046178 1.981864 -11.475402 -7.359018 3.338211 0.032700 -8.135462 -2.736958 -2.104681 9.831441 -11.098279 -3.832879 -9.459544 5.305055 0.660656 -21.119277 -8.555043 -4.909210 6.014732 2.688240 -6.888774 -9.432730 4.878717 5.194886 -4.676646 -4.417983 -4.276460 11.308470 9.927079 1.821029 1.089469 5.172602 7.074449 14.590886 7.043572 -4.800957 -1.296441 1.981280 -2.255197 2.520921 -3.803156 0.447397 2.284996 -8.283293 1.992393 6.804642 -6.415355 -3.395821 0.406476 -4.994895 1.677444 41.137782 -5.057076 12.314298 6.563877 -12.890112 5.871370 -3.841457 -3.461544 3.129109 7.878155 9.655905 -16.247041 -8.335770 11.338605 18.061243 6.064816 -13.798841 1.693725 3.627811 -0.756502 -4.988061 8.082062 1.208374 1.474272 -5.997302 -2.703354 8.756483 23.426027 -6.713971 -13.973568 2.626550 6.313128 1.782018 -7.945828 -0.282389 -5.102253 -0.514415 7.104233 1.221760 7.840472 14.320825 -25.837928 11.065326 0.171738 -5.011152 11.925705 2.166359 -7.382541 -9.702874 0.973603 9.285155 10.616368 1.714976 -1.411216 -2.235937 -14.196408 0.126607 3.615330 3.984946 -9.369226 12.618013 0.496220 -9.499397 -7.290078 -5.637814 -3.525551 -2.295321 -8.186625 7.319237 -0.896709 -24.358230 14.372594 2.485699 -4.967796 -1.082514 -5.678148 10.425046 -10.951342 -14.451820 6.142038 -6.250388 -9.275809 -3.085314 -5.342687 4.305545 5.318059 4.818204 -12.419849 -13.005093 12.318046 -2.076035 14.244809 8.119757 1.831183 12.512593 -0.519282 -7.014716 -7.136537 -9.703831 10.223331 1.217631 -8.760520 -4.620179 -6.200160 8.573155 12.752685 -2.668510 -5.081053 -6.652990 11.126588 -11.299129 -2.274982 4.455637 4.232874 -8.941219 4.513997 7.214847 -6.140641 -0.372877 -11.166513 -2.942365 -8.792716 -9.471527 6.693469 -5.960170 2.095427 5.621732 -3.043228 -4.135755 5.096527 1.401755 -0.284975 1.642103 13.410378 15.031669 -8.467965 2.356113 -15.000289 10.545278 -14.958075 -13.259096 2.689598 -2.307333 -4.138626 -4.898715 -2.403921 7.816880 4.971654 -5.714861 -5.354375 4.124140 +-1.673406 -1.344192 -0.201935 -2.745696 1.846683 2.004960 1.167135 -1.658126 -3.925353 -2.556100 1.452985 -5.763678 -3.463804 4.643359 -1.503168 2.450274 5.867875 0.539128 -1.513825 -1.887013 3.079887 -0.615850 6.272577 6.818800 -4.432725 0.162642 -0.198033 2.164413 1.372117 0.512422 2.255887 -3.865461 1.348125 -2.544804 1.047537 -1.855013 -0.947880 1.555064 2.165558 -7.515304 -0.533519 3.302089 0.767949 -0.045304 0.509989 1.816890 4.086457 3.655480 -0.581640 3.667304 2.924388 0.104290 2.274334 0.184576 0.908517 -0.574380 0.212788 -1.585859 -1.229545 -0.034452 -1.141963 -1.973810 -0.053273 4.630731 5.602772 -0.365896 -2.188818 0.803497 0.815861 1.433433 1.545417 3.599408 0.661684 1.254199 3.287946 -3.953722 -0.229577 -7.786098 1.192887 -9.225896 -3.555042 -0.241486 4.623452 2.799586 1.584774 -1.048736 6.771134 -0.809834 -1.899266 5.094286 5.520822 -2.881039 -1.291696 -1.528636 -1.930599 0.950923 -2.357884 0.955967 0.923866 2.428537 -4.062519 -2.376965 0.801956 0.018442 -2.612960 -2.059118 -0.471764 3.432834 -4.562884 -2.191428 -2.846472 2.916768 0.597797 -6.799804 -2.082553 -2.577612 0.671675 1.418895 -3.198865 -2.363704 1.868544 0.294350 -1.197540 -1.143003 -2.317895 3.146165 2.345515 1.035985 -0.077279 3.010932 1.430380 5.773753 1.042889 -2.395793 0.074628 1.544922 -0.589143 1.964948 -2.104860 -1.245215 2.341441 -3.430942 -0.146570 1.070006 -2.590123 -2.184747 0.258844 -0.917177 -0.023141 12.438629 -0.805215 4.625451 4.098967 -3.535624 1.990505 -1.566537 0.708767 1.654524 3.176803 2.332386 -4.447597 -3.514729 3.720918 6.496207 2.381216 -3.897834 -0.483912 1.878251 1.192582 -1.075630 2.587940 0.736463 0.595814 -2.508856 -0.417225 2.614580 7.598869 -2.029894 -0.489666 0.406471 3.231079 -0.039904 -3.734603 -0.279441 -3.095217 -0.215512 1.771300 1.249886 2.071894 5.144361 -7.308886 4.202473 -0.116803 0.726305 2.862777 1.367408 -3.375440 -6.009408 -0.919382 2.003985 3.994908 -0.172613 0.734796 0.664352 -5.379619 0.190572 1.000054 1.246809 -3.077505 4.557111 -0.705237 -1.800379 -1.944819 0.011916 -1.761166 -1.315542 -1.615705 3.345332 2.362738 -5.259828 3.739915 0.296905 -2.235024 -0.331011 -0.771618 4.250480 -4.192367 -4.371407 2.370785 -2.565748 -4.204118 -1.738637 -1.549308 1.513811 1.257671 0.183078 -3.258233 -3.646453 5.434840 -1.223412 5.281670 2.614707 -1.093365 3.685158 -0.345516 -2.562966 -2.012107 -3.138118 0.966303 -0.617772 -2.428151 -1.717143 -1.314066 3.132822 4.281724 -0.132216 -2.888089 -0.335152 4.726531 -3.736432 -1.145488 1.790828 1.106628 -2.342055 2.801846 2.580334 -3.956807 0.942633 -4.084438 -0.001563 -2.401306 -2.379351 3.383750 -1.863168 1.262965 0.580669 -0.781153 -0.447918 1.928667 1.867404 -0.565051 0.834382 6.069671 4.020953 -1.433995 0.248849 -5.607844 2.783438 -5.028183 -4.085336 0.002711 1.081865 -2.524175 -0.992743 -0.293355 3.354747 3.148544 -2.530625 -3.169069 2.116592 +-4.889106 -4.448605 -2.308546 -7.038033 5.166314 9.247825 3.039893 -8.722477 -9.199136 -1.391678 4.966096 -14.727536 -6.278985 10.951339 -4.380461 8.476906 12.661005 -0.410354 -6.035894 -3.730777 7.568929 2.449355 16.145267 16.500154 -9.201604 -0.150897 -1.394472 4.285234 2.655530 -1.877365 3.629725 -5.695036 3.782046 -8.699629 -1.143898 -1.888854 -2.721109 2.830278 9.375154 -15.524719 -1.188938 3.653507 0.635753 0.109577 0.240539 4.106150 8.695575 8.881178 1.595893 7.900534 6.070061 -0.893161 5.470491 0.429483 3.062320 -1.269565 2.276566 -1.740286 -1.585975 -2.885313 -2.794380 -0.040632 -0.196070 11.414652 12.704164 1.012977 -5.952380 3.405899 3.574763 2.963289 3.366727 9.136742 -1.396816 5.220544 5.645627 -10.726290 2.073281 -14.208874 2.063967 -13.418692 -7.414182 2.370700 7.660143 4.360951 5.992245 -0.557979 16.058645 -0.507010 -7.025166 10.475636 12.665817 -8.978644 -2.630318 -1.034516 -4.472440 -0.198780 -4.157294 5.318544 2.821708 6.758468 -10.011333 -4.044654 0.283913 1.087062 -5.932983 -4.834639 0.316272 7.222590 -7.390270 -5.495136 -2.043327 7.763630 -0.555998 -17.447783 -7.010688 -6.530475 2.436362 1.754430 -8.337681 -7.926925 4.381128 0.958043 -2.374989 -3.446703 -2.320389 5.272324 7.976006 3.024899 -1.349305 7.735528 3.689768 16.737298 -0.127338 -5.773818 1.565187 1.812513 -0.417165 6.460732 -3.053227 -2.170654 1.743844 -9.593492 2.779718 5.212966 -5.412549 -3.154264 0.970895 1.055630 -1.952617 32.101246 -2.510650 13.212015 10.942821 -9.072575 2.413691 -6.353903 2.843588 3.625631 5.331564 4.200218 -13.685394 -8.743217 10.572333 15.955191 5.395479 -11.032590 1.214192 5.323459 1.296605 -4.198292 5.911273 1.854790 0.848717 -4.284212 -1.039163 7.943421 19.447536 -6.125667 -0.633978 2.347098 4.766544 1.597896 -7.629732 -2.018694 -6.617189 -0.145171 5.761323 4.840010 4.834338 11.735063 -13.141814 9.238510 0.279430 1.555728 9.474441 4.871173 -10.013363 -8.069859 -3.735876 4.396168 7.382093 -1.615769 -2.236325 1.897176 -12.458115 0.548463 3.907601 1.100408 -7.062726 10.585579 0.433538 -4.206081 -3.614794 1.758132 -2.830957 -2.692312 -4.107726 9.044379 -0.276632 -11.883326 8.470750 3.138715 -5.961891 -0.292566 -4.164240 10.275691 -8.141527 -9.028457 6.204780 -5.815701 -6.701094 -3.130967 -2.878120 2.590295 5.182905 5.014618 -10.880524 -7.109842 11.533950 -3.636286 13.245975 5.827018 -2.543220 6.153706 -6.127246 -6.772975 -5.147147 -9.338925 2.669005 2.908064 -8.055840 -2.662827 -2.692995 8.416957 7.634668 -0.300306 -8.506935 -0.484207 9.768906 -8.605971 -1.394243 3.068422 3.899313 -8.938073 4.006700 5.044726 -7.546762 4.429082 -6.951478 -2.655255 -8.582832 -6.187539 8.533728 -1.203782 4.278974 -1.124683 -1.362857 1.593242 4.658097 4.147260 1.457878 4.902354 13.457935 7.025048 -1.376025 -1.955909 -14.213181 8.194502 -10.965875 -10.978616 3.340443 2.080516 -6.220933 -3.596729 -1.254265 9.145231 7.288553 -9.118653 -7.027405 5.833330 +-4.185849 -2.433210 1.123323 -7.966381 5.897668 5.930369 3.088804 -3.724483 -10.629983 -6.675576 3.102447 -13.907573 -9.597800 12.799121 -3.683911 6.167485 16.973215 1.785876 -3.772177 -5.607834 9.525812 -4.513716 17.110163 19.473410 -13.819703 1.027831 2.874536 6.535143 4.839437 3.190105 3.237052 -9.665859 3.119109 -8.039758 4.482231 -7.284997 -2.799167 3.015788 5.751442 -22.563787 -1.697913 6.941726 0.416132 0.295035 1.404979 8.427287 12.662784 10.191313 -4.492915 10.242919 9.419057 -0.634282 5.552171 0.163229 2.054170 -0.434078 2.561510 1.802898 -2.717821 0.668080 -2.755484 -6.963426 1.367420 13.153194 16.332170 -2.030887 -5.692609 2.470113 2.969023 3.298946 3.270706 10.159435 2.418031 3.275322 10.249990 -13.816667 -0.554837 -26.487022 3.276733 -29.752259 -10.376045 -2.277106 12.078814 3.405642 4.716460 -2.736460 19.495062 -1.889702 -3.793190 13.542405 15.613586 -8.772606 -3.235394 -5.205374 -6.709708 3.120554 -6.449835 2.024241 5.133692 4.302179 -11.169512 -8.252692 3.591531 0.325297 -7.862034 -5.824595 -2.180232 10.266593 -12.770488 -6.623297 -9.592235 6.295137 0.843123 -20.321370 -3.983061 -7.712313 4.618797 3.822267 -8.128408 -7.750035 4.510796 2.810198 -3.783660 -3.958413 -4.446775 11.119565 7.475541 2.446037 0.475177 6.203841 4.179936 14.780858 6.896616 -6.872380 -0.981877 4.868566 -3.995747 4.161683 -7.573698 -2.950236 8.876310 -10.220684 0.166441 3.303636 -7.379894 -4.825812 6.711426 -3.482969 0.791241 39.219468 -2.459968 13.119331 10.067460 -10.761916 7.846720 -2.813646 0.795207 6.234061 9.988123 7.051861 -16.337133 -9.278198 9.326726 18.530107 6.683771 -13.983670 -4.214860 3.942748 1.984620 -2.477999 6.939546 1.543568 1.065690 -6.661806 -1.428560 7.149023 22.120988 -6.652870 -5.499012 0.472510 8.901932 -2.132024 -13.777115 -0.614635 -10.406234 -0.576373 4.229703 2.237126 6.800681 14.477699 -25.917048 11.746311 -1.672660 -0.094508 9.230421 3.792141 -8.685687 -19.471302 -0.664159 6.204484 11.822167 0.269752 0.749320 2.020456 -15.232050 0.500479 2.806662 3.921425 -9.429137 13.227437 -1.478034 -5.997227 -5.912862 -0.895035 -4.438334 -4.765017 -4.282530 8.977481 3.382148 -19.196507 10.969713 -0.106457 -6.648829 0.202937 -2.319785 10.578991 -12.317203 -13.453060 6.780618 -5.007313 -9.985505 -6.397385 -4.782379 5.457011 3.368805 0.044899 -9.584878 -14.470549 13.535395 -4.931233 14.243302 7.845432 -2.204765 13.056184 -0.250518 -7.088768 -8.649609 -6.942132 3.568164 -1.696687 -6.871489 -7.696444 -4.246004 8.808151 13.327179 -0.517940 -5.236814 -1.990279 13.957142 -11.469451 -3.427974 4.974803 4.901588 -6.283335 7.498755 7.257456 -11.292950 1.305492 -11.679064 -1.277698 -5.432260 -6.750306 9.782863 -6.405372 3.109567 2.542805 -2.023856 -1.377363 6.212662 4.524365 -0.642378 1.385623 16.612061 15.417871 -6.748354 0.419174 -15.279771 8.685324 -15.115682 -11.573380 -0.480372 3.019345 -6.123369 -2.521479 0.342381 9.257511 7.600037 -7.221352 -7.362903 4.802289 +-4.294016 -2.064338 1.286312 -7.998661 5.556943 6.530249 2.914061 -4.780597 -10.249209 -6.714834 2.824257 -14.554429 -8.909320 12.524320 -4.018511 6.482534 16.288977 1.567987 -4.424763 -4.738049 8.812621 -2.642572 16.629162 18.380088 -12.275485 0.807452 1.087579 6.075448 3.662804 3.025192 3.950519 -9.615983 2.719499 -7.033549 3.605143 -5.801278 -2.821088 3.311815 5.659120 -21.112844 -1.277567 7.425088 1.753677 -0.269912 1.329897 4.371215 12.351339 9.754473 -2.004060 8.356300 8.077624 0.783009 5.747490 0.363951 2.548289 -0.031331 2.690466 -2.733622 -2.713206 0.006938 -3.022897 -5.207987 0.988847 12.955881 15.014880 -0.683762 -5.664706 2.190942 2.862786 3.490557 3.083790 9.696147 0.778413 4.123880 8.049445 -13.043557 0.556296 -22.117527 3.506011 -23.469030 -9.975020 -1.561904 10.446585 7.655044 4.983961 -2.126942 18.546700 -2.718463 -3.946054 12.203369 15.304100 -8.509840 -2.990496 -4.887759 -6.118015 2.268352 -5.792013 1.888377 1.794647 5.667553 -10.781574 -7.081432 3.069696 0.658678 -7.274841 -4.737775 -1.381077 10.029578 -11.881420 -6.559361 -7.746474 7.319749 0.521749 -19.177027 -3.918300 -7.604080 2.049042 3.504708 -8.317220 -8.375513 4.985696 2.672072 -3.623339 -3.684896 -6.748995 9.772528 6.724679 1.817832 -0.342867 6.548382 3.984863 14.783694 4.779502 -6.574201 0.020964 4.151462 -2.762534 3.819244 -6.156150 -3.033830 5.118231 -9.908447 -0.858393 4.407947 -7.026261 -4.551158 1.427630 -3.074765 0.647069 36.053581 -3.083785 12.466418 9.897466 -10.596669 7.227695 -3.157349 0.608534 4.349663 8.490798 7.277400 -15.340643 -9.410774 9.771329 17.770530 6.524094 -10.719554 -2.687822 3.780584 1.573284 -2.247261 7.038645 1.663987 0.845563 -6.905931 -1.751724 6.900821 21.725203 -5.561877 -3.283195 1.314003 6.915230 -0.978135 -11.959496 -0.949434 -9.447633 -0.563235 4.525044 2.409223 6.123423 14.056215 -21.035414 11.774131 -1.117664 -0.018955 9.368374 2.736699 -8.216469 -16.022453 -1.788975 6.513019 11.228946 -1.076621 0.485992 1.097247 -14.571900 0.292801 2.684304 3.907497 -8.986619 12.293410 -1.086549 -6.200500 -5.531013 -0.314907 -4.396896 -4.670303 -4.729383 8.608867 4.297091 -14.669598 11.246923 0.862383 -5.365842 0.524273 -2.669365 10.765499 -10.869570 -12.021130 6.636080 -5.214644 -9.208038 -4.808186 -4.393136 5.258258 3.531947 0.567864 -9.514756 -11.659265 12.443012 -3.714939 14.058623 7.266414 -1.771741 10.099682 1.230985 -6.253656 -6.612478 -7.810002 2.193034 -0.654837 -6.780008 -7.192130 -4.133657 8.923927 12.295942 -0.761144 -6.515089 -1.752844 12.898456 -10.293569 -2.937511 4.583337 1.628440 -7.230918 5.829846 6.901658 -10.098971 1.305746 -10.891038 0.040207 -6.330140 -6.785520 8.742175 -5.338428 2.955721 2.234284 -2.404196 -1.469935 5.419875 4.909872 -0.850005 2.117850 16.083251 10.613053 -3.988102 0.720247 -14.734979 8.064897 -14.227598 -10.798745 -0.104840 3.355660 -6.412764 -2.854512 -0.447653 9.253716 7.168870 -5.873966 -6.898290 4.429187 +-5.005419 -5.515756 -3.215555 -7.863775 4.602816 6.862404 3.192152 -7.748416 -9.904558 -2.890588 5.184164 -14.104308 -5.710723 11.376812 -3.902528 8.634469 13.748353 0.562616 -5.132279 -4.925773 8.907979 0.014108 16.085104 17.174261 -9.970667 -0.050013 -0.786418 4.556673 3.939213 -2.131647 5.165571 -6.470687 3.623919 -10.117024 -0.255890 -4.264427 -2.383660 4.628225 10.250925 -16.834626 -0.820601 4.329988 1.125138 0.185083 0.474102 4.386626 8.330703 8.865457 -0.830809 9.570397 7.250449 -0.945942 5.176986 0.466128 2.775660 -0.445109 1.142918 -0.676153 -1.276266 -2.345266 -2.882947 -0.798862 0.884787 10.713913 12.541575 0.177773 -6.240540 4.135638 4.130862 2.818302 4.243968 9.326916 -1.020937 3.303310 7.020105 -13.101458 -0.295164 -19.437188 2.633499 -18.872931 -7.699225 2.490080 9.260100 2.731560 5.844159 -0.161287 16.245183 -1.377106 -7.286378 12.121745 12.336834 -8.587619 -2.626292 -1.655424 -5.088029 0.379472 -4.134011 4.636176 3.793032 7.080020 -10.174284 -5.937245 1.378097 1.041516 -6.216906 -6.856023 -0.669699 7.678470 -9.371988 -5.948663 -2.632254 8.418224 -0.449095 -16.370761 -6.439400 -7.860431 3.422702 1.569604 -8.929722 -7.756093 4.392656 0.814747 -3.141624 -3.453289 -1.099804 5.566681 8.064983 3.281318 -1.417556 7.475556 2.677511 17.138689 0.589718 -6.712095 1.345070 2.847927 -0.420807 5.974652 -4.616579 -3.070769 4.954328 -9.358694 2.116031 3.949003 -5.711623 -4.701206 5.558338 0.235066 -2.100764 33.235647 -1.460658 13.379249 11.943908 -8.384877 2.374377 -5.612538 3.611661 4.753424 7.087139 4.079333 -13.397649 -9.215711 10.158479 15.685731 5.192532 -11.403956 -1.906095 5.398216 2.189815 -2.779005 5.491143 0.800325 0.853963 -5.253233 -0.936304 7.382927 19.860823 -6.063101 0.725152 1.424736 7.223131 -0.168747 -9.729371 -1.879246 -8.899332 -0.002608 5.585870 4.827136 5.610048 12.273315 -16.609002 9.429310 -0.537569 3.024725 7.475198 6.263369 -10.056015 -13.089934 -4.134905 3.622577 8.672616 -1.973331 0.650980 3.062796 -13.033588 0.766467 3.294566 0.785126 -7.673319 11.339998 -0.390325 -4.230768 -3.121929 2.849438 -4.181907 -3.169370 -2.534965 9.336127 1.552074 -12.625428 7.873027 1.505642 -5.813723 0.227320 -3.129442 11.805037 -8.723923 -9.446721 7.200275 -5.083228 -7.480072 -3.604759 -3.154403 3.204073 4.335682 3.347152 -9.735258 -8.354792 12.403614 -4.856921 13.757993 6.168668 -3.615140 7.238483 -7.726808 -6.007107 -6.217181 -7.842547 1.095070 1.683684 -7.690818 -4.704480 -2.408922 8.118159 7.992754 -0.034700 -8.539925 0.656379 11.165678 -9.725575 -0.505955 3.202878 5.864585 -8.222191 5.543770 5.352170 -9.284946 4.709656 -7.908715 -2.024221 -7.678733 -5.376255 9.301834 -1.416815 4.258433 -1.228468 -0.967631 1.899187 5.200090 5.071156 0.805467 4.451903 14.173991 8.896222 -1.994007 -2.723593 -14.287805 7.672578 -11.151913 -10.972195 1.841103 2.865196 -7.208967 -3.075522 -1.363675 10.357924 8.612900 -7.927843 -6.792807 5.826733 +-1.119447 6.173292 5.927462 -6.520715 6.967586 5.403282 1.797418 0.550650 -5.254436 -7.971083 -2.141782 -9.180585 -11.330697 9.426776 -2.381709 -0.118459 15.339391 1.522465 -0.278067 -5.074366 5.920439 -4.376811 13.802048 15.278024 -14.483599 2.668107 7.501513 6.355816 3.377609 7.525736 -0.242772 -11.488542 1.328559 -1.518269 7.702333 -6.844127 -2.202675 -3.071043 -1.497360 -21.725772 -2.129924 4.880437 -2.850104 0.316757 1.996495 6.498561 16.935986 7.817435 -6.304169 4.854274 8.048064 3.542666 3.187661 0.147782 0.927243 0.033149 4.529210 0.596965 -2.669174 2.381246 -0.942348 -8.826223 -0.219813 11.777933 13.464677 -1.507422 -3.492847 0.834072 0.731665 1.592405 -1.397957 8.142545 5.007702 6.513830 8.656496 -10.442116 -0.744260 -23.503809 2.601690 -28.220545 -10.799679 -9.077225 8.019638 3.101832 2.701130 -2.673004 16.735136 -0.810762 3.869914 9.571237 15.662192 -7.120900 -2.064872 -7.907972 -5.887053 4.984639 -5.113367 0.865217 1.490694 -0.043248 -8.726877 -9.574348 5.161830 -0.853371 -7.635545 -2.913117 -3.188265 9.163990 -11.772238 -3.671434 -13.502290 1.423109 0.686240 -17.577517 -2.996576 -4.026079 6.442960 3.612729 -3.208616 -8.052377 2.382002 6.090167 -3.716585 -3.454466 -6.131997 11.743672 7.189458 -1.290654 2.498548 3.504294 5.811969 9.993755 10.025648 -3.914643 -3.418555 4.434469 -4.776787 -2.262497 -7.312710 -0.033615 6.821125 -7.415737 -0.137069 4.898792 -6.396234 -4.319300 3.392257 -8.705354 5.065586 34.454755 -3.171846 7.389664 3.669284 -11.338755 7.487370 -0.847633 -5.370554 4.098697 9.278453 10.058400 -13.854619 -6.604667 5.254227 15.004217 5.155612 -10.223204 -3.141539 0.132356 -1.306398 -2.876400 6.167224 0.824305 -0.209250 -5.048306 -2.113495 6.721630 18.250586 -4.516751 -11.075932 -0.023662 7.847756 -1.505087 -9.971571 0.604855 -6.761878 -1.089192 3.945239 -0.737636 6.830504 12.293375 -27.013711 9.922373 -0.612920 -4.090383 6.924822 0.575113 -3.373827 -14.465839 4.823367 9.817260 10.645902 0.683860 1.379606 -2.557726 -12.321589 -0.534673 2.620765 6.328948 -8.639556 10.487445 -0.323507 -8.372658 -7.502436 -4.434452 -3.270279 -3.939269 -5.525823 4.904908 2.626521 -22.221163 13.257984 -1.848538 -4.327031 0.702972 -4.627148 7.537727 -12.185002 -13.366911 4.712264 -2.589853 -8.127944 -3.533925 -5.259366 6.789848 1.610291 0.774141 -8.151249 -14.118381 9.668731 -1.328689 9.049531 7.778735 3.183522 14.085725 1.588537 -5.890067 -7.730893 -6.219059 6.654561 -1.642179 -4.975213 -5.984019 -5.758343 6.437343 16.250395 -2.612455 -2.029442 -4.161726 10.809246 -10.866897 -4.022634 4.499945 3.510646 -4.313002 5.130086 6.419757 -7.805494 -4.329047 -11.374332 0.108267 -1.760125 -7.963838 5.134556 -10.541410 -0.138484 8.610800 -3.967095 -5.183295 6.632906 0.984049 -0.797222 -1.079595 11.512114 15.048561 -9.418825 3.841073 -11.239911 7.207014 -15.166774 -9.613074 -1.550020 -0.802247 -1.440851 -2.262406 -1.006746 5.125882 2.675640 -1.911639 -4.085973 0.700923 +-11.338487 59.786878 64.827855 -63.388126 90.561761 73.971625 24.681109 -3.231791 -60.544127 -71.737378 -13.823658 -124.458905 -131.313287 100.655471 -28.086822 9.584381 151.053078 2.798679 -11.079325 -45.638947 46.120248 -19.860469 156.175324 152.924682 -144.700979 33.149964 39.875315 60.920281 14.416533 90.207690 -20.006636 -124.370296 20.920587 -4.246285 62.192235 -41.690028 -30.377312 -40.688896 -14.272912 -211.877247 -21.361797 75.620753 -27.062717 6.171821 25.515367 71.689785 182.185512 81.320748 -39.292678 56.580972 69.979953 17.703983 51.641176 6.699648 24.263237 -8.968246 72.265479 -16.465277 -47.183070 12.388443 -19.970805 -90.363579 -24.368376 115.397243 135.654937 -13.066800 -47.578554 0.772856 -0.960488 17.794454 -6.665498 90.308865 59.006419 74.127277 88.704850 -53.591118 10.223766 -170.168936 18.119187 -247.403649 -116.310939 -82.263060 94.234764 63.795834 30.601491 -48.145899 178.844625 -9.722079 24.686140 73.280516 166.923539 -84.364853 -25.751287 -65.864821 -46.933884 34.115653 -50.638888 10.286300 10.519736 4.454851 -98.118658 -74.992939 51.636265 -16.784458 -75.721218 -4.522209 -33.387062 89.853241 -124.742941 -30.395652 -135.927335 17.892261 15.946976 -183.932463 -48.054544 -17.369045 41.303381 43.399610 -38.283070 -73.625620 38.422842 49.215186 -42.951440 -29.735031 -81.126113 127.935980 75.224366 -6.324962 31.071742 52.396844 66.525510 111.163484 86.876182 -34.951638 -32.271946 35.342388 -30.300779 -2.618058 -47.447038 1.533976 32.574822 -81.375120 7.926314 48.579429 -63.352758 -22.697638 -33.728929 -66.302914 39.760532 317.048093 -44.196684 88.048770 37.407285 -118.059363 78.518328 -21.280447 -49.978637 28.517085 82.175096 103.506076 -119.171866 -70.201747 77.708677 156.102464 52.059276 -112.585253 17.081945 14.442318 1.341612 -41.367660 71.861250 21.547591 19.293904 -55.280641 -18.270919 63.552529 208.830738 -53.298664 -136.749010 18.771978 47.079046 11.994566 -76.436634 0.706512 -39.184578 -18.588006 43.776625 3.007120 58.678793 130.413153 -244.351953 107.092734 2.865448 -55.673010 106.701104 -3.292373 -39.774901 -101.108090 24.904401 98.956340 107.616745 23.350839 -10.714494 -36.431955 -125.047701 -0.400141 29.089249 56.425772 -83.116524 109.290834 -0.812036 -90.191142 -71.455168 -82.278542 -24.142442 -21.985376 -79.718614 53.486024 29.436411 -233.851740 133.629501 0.644529 -51.957366 -4.594468 -42.559973 73.802530 -109.114160 -132.393026 42.828718 -58.228971 -110.494152 -38.011201 -49.825520 42.849567 28.840004 17.681448 -95.871034 -133.017856 123.386131 -7.306739 103.855801 81.481506 29.357718 129.163981 51.724438 -76.559811 -57.350051 -79.696248 81.490884 -26.560118 -51.667212 -23.546939 -64.050963 68.828002 154.405329 -21.483247 -20.919300 -68.123322 103.106244 -99.179632 -40.212872 59.152135 16.056073 -52.608406 56.901163 77.985740 -62.415476 -34.148778 -113.210763 -17.118674 -45.415500 -82.868149 48.566855 -100.714951 -2.482590 84.446415 -44.597929 -63.770466 56.243458 -3.749293 -24.918015 -15.594674 135.696970 140.973268 -94.398530 60.949734 -119.697515 88.693318 -149.013394 -99.364723 1.608830 -16.788895 -29.003311 -31.413226 -4.610885 50.949204 29.180369 -47.264208 -55.778926 15.967058 +-1.645220 7.378069 5.989368 -7.965734 8.709770 7.273926 1.868785 -0.428113 -6.092363 -9.627051 -2.080998 -11.280381 -13.099486 10.834450 -3.367176 -0.081202 17.350305 0.723300 -0.335364 -5.946768 7.045089 -3.583928 16.134306 17.559133 -16.848508 2.906623 9.168180 6.631101 3.457790 8.039256 0.572904 -15.004152 1.562003 -1.484716 8.320180 -6.854286 -2.907110 -3.767317 -0.642803 -24.406000 -2.642483 5.352542 -4.605687 0.543207 2.223499 6.230851 19.798027 8.762468 -7.192871 5.887230 9.866769 5.701565 3.042046 -0.177825 0.993448 -0.522613 4.721318 -0.099091 -2.307471 2.173800 -1.508381 -7.999137 -0.830834 13.995648 15.218427 -1.656456 -4.316923 1.202415 0.546327 1.999024 -1.906303 9.895173 5.679403 8.435552 9.805981 -11.949899 -1.615442 -27.841354 3.333618 -31.909580 -12.271861 -9.780124 8.375441 4.132960 3.034328 -2.497050 19.854264 -0.956631 3.772331 11.992190 18.477731 -7.768090 -1.962183 -8.600011 -7.493018 5.004849 -5.480607 1.838139 0.152721 0.566552 -10.195487 -11.475064 4.806212 -1.278685 -8.779690 -4.379602 -3.613948 10.121105 -13.747566 -3.534095 -14.804032 2.799135 1.119493 -20.619884 -5.790920 -4.776365 7.618572 3.811313 -4.329752 -9.629936 2.933473 6.909135 -4.494869 -3.896520 -5.403799 12.437383 9.341188 -0.860812 2.404207 4.101277 7.326975 12.644533 10.685340 -4.581380 -3.714210 4.390693 -4.059163 -2.362231 -7.807542 0.817801 6.753880 -8.053955 1.327161 6.472462 -7.180577 -6.148364 3.359234 -11.207724 5.202628 41.008789 -4.278837 9.058592 4.536676 -13.416393 6.902142 -1.788218 -6.269856 4.268308 10.365213 12.198063 -14.947708 -7.757235 7.430904 17.555426 5.694262 -11.620941 -2.873219 1.321094 -1.623917 -3.763137 7.361282 0.692636 -0.365551 -5.633022 -2.656645 8.447172 21.384686 -4.876790 -12.327774 0.199987 10.740276 -0.739896 -9.617064 0.720875 -8.301534 -1.007229 6.899907 -0.570922 8.141663 14.425573 -31.876837 10.981637 0.052698 -4.253504 6.817080 1.828736 -4.208965 -15.614936 5.456769 11.551428 11.617142 0.480536 2.858252 -3.352526 -14.149433 -0.451161 3.505404 7.228551 -10.615400 12.293954 0.115771 -10.134849 -8.662460 -4.282701 -4.300766 -4.346016 -6.911110 5.780252 2.750283 -26.546442 15.776740 -1.379369 -4.591672 -0.021262 -5.978950 10.139174 -13.709563 -15.537397 5.914860 -3.884270 -9.179807 -2.597294 -6.243256 7.480028 2.561707 2.813363 -10.014655 -15.780779 11.191838 -0.700549 11.015816 8.899860 3.909492 15.998304 -1.551319 -6.411480 -8.861131 -8.119314 9.571127 -0.740788 -6.165215 -6.579733 -6.439454 7.255760 18.145372 -3.350695 -3.886707 -5.028697 11.851117 -12.661038 -3.233422 4.662669 5.025872 -6.019756 5.616087 7.004867 -8.032813 -4.440276 -13.455063 1.001823 -3.577230 -9.306829 5.764000 -11.471435 -0.210447 9.962004 -4.733820 -6.089253 7.651628 1.560631 -0.533394 -0.560747 12.382328 16.883182 -10.424596 4.122809 -13.437699 8.333140 -17.416923 -12.318976 -1.202012 -1.988945 -1.625743 -3.678799 -2.982380 6.424776 3.211792 -1.296505 -4.636824 1.743921 +-3.879085 -3.410863 -1.515442 -5.202339 4.226687 6.473124 2.534132 -5.919861 -7.631433 -2.137692 3.458696 -11.588134 -5.325514 8.921461 -3.054952 6.759991 10.665587 0.367378 -4.340104 -2.887034 6.011128 0.191353 12.439771 13.158029 -7.100840 0.163571 -1.144673 2.992584 1.294476 -0.253686 2.487474 -5.555664 3.068076 -6.818731 0.071578 -2.220279 -2.589765 2.789969 6.965117 -13.161044 -0.925648 4.146939 1.114728 -0.029605 0.397139 3.272744 7.246527 6.750913 1.090440 6.734716 4.360376 -1.035195 4.693218 0.350127 2.896194 -0.009656 1.634699 -1.475464 -1.894108 -1.498703 -2.844926 -0.944867 0.052784 8.641807 9.906678 0.225935 -4.862229 2.332809 2.358544 2.411245 2.645938 7.257110 -0.515316 3.150388 4.713258 -8.795984 1.133371 -12.102590 1.743120 -12.558989 -6.350458 1.491772 6.562808 4.271384 4.671172 -1.250937 13.136740 -1.394522 -5.255009 7.791843 10.431819 -7.227318 -2.162686 -1.229801 -3.256092 -0.445616 -3.218452 2.923945 2.759405 4.494937 -8.107414 -3.643188 1.232444 0.726815 -4.628533 -3.904541 -0.053131 6.449545 -6.607620 -4.904091 -3.007665 5.923733 -0.283203 -13.527432 -3.965644 -4.760453 0.642595 2.324722 -7.234675 -6.486751 4.174686 0.916064 -2.208775 -2.958632 -2.184786 5.449062 5.545599 2.114798 -0.720817 6.113827 2.613444 12.810889 1.137145 -4.621054 1.252564 2.023025 -0.655380 4.876504 -2.569495 -2.293468 1.483496 -7.684490 1.140068 3.481888 -4.665914 -1.919952 0.675288 0.480149 -1.500238 24.777293 -2.552918 10.321391 8.138283 -7.308082 3.702825 -4.340983 2.094428 2.526864 5.085683 3.834012 -11.070131 -6.984043 8.474980 12.846144 4.449743 -8.676605 -0.159428 3.673927 1.596682 -2.587221 4.969194 1.495074 1.355473 -3.966777 -0.804158 5.236481 16.303790 -5.273389 -0.807062 1.731335 3.583226 1.119561 -7.496021 -1.550476 -6.527406 -0.465683 3.707864 3.326912 3.583982 9.634069 -11.134889 7.898171 -0.967804 0.491718 7.953047 3.543634 -7.229690 -8.658731 -3.405540 3.648762 6.857568 -0.871787 -1.219091 1.175087 -9.986716 0.438262 2.491774 1.493241 -5.947336 8.733452 -0.467903 -3.778538 -2.581357 0.863421 -2.538009 -3.060220 -3.159158 6.925465 1.721599 -9.355259 6.844439 2.628208 -4.370384 0.175895 -1.864467 8.006664 -6.189662 -7.670626 4.981006 -4.675707 -5.753469 -2.585147 -2.662173 2.190699 3.523100 2.215382 -7.784398 -6.539780 9.589961 -2.693307 11.004697 4.724355 -2.196790 5.587921 -2.350124 -5.762298 -3.717527 -7.219107 1.427102 0.965073 -5.489776 -3.380769 -2.318526 6.755604 6.505953 0.481197 -6.086090 -1.089086 8.313278 -7.087956 -0.676660 3.205353 2.115237 -6.346132 3.328047 4.727373 -6.200209 2.891166 -6.078213 -1.437214 -6.755175 -4.356993 6.474212 -1.891352 2.732732 -0.719930 -1.492688 0.785668 3.408649 3.682364 0.500011 3.027465 11.184632 5.726191 -1.603823 -0.974718 -10.783909 6.366632 -8.656140 -8.042931 1.650663 2.905042 -5.466380 -2.950705 -0.219871 6.989828 5.579264 -6.942207 -5.596689 4.036154 +-3.910030 -4.233096 -1.281835 -6.977638 3.664927 6.021879 2.159480 -4.931468 -9.568021 -3.582368 3.272171 -11.532057 -4.352046 9.623952 -3.169135 6.820762 11.660885 1.435293 -4.801964 -2.407001 7.242641 -1.218824 11.759580 13.676421 -7.522562 0.346284 -1.606345 4.314293 1.674545 2.289352 3.686288 -6.732870 1.496457 -6.585019 1.127606 -4.576237 -2.780147 5.065601 6.426005 -15.077929 -0.358870 7.104246 2.610334 -0.415271 1.015172 0.610313 6.864180 6.890589 0.060941 6.979132 5.241187 0.579939 4.803144 -0.011826 3.114952 1.561436 1.427880 -2.561746 -1.258292 -1.002460 -3.031949 -1.141624 1.642105 9.173545 10.243811 -0.299212 -5.014649 1.312484 2.688396 2.679103 3.716888 7.296212 -2.327623 1.639819 4.709689 -9.365116 1.714323 -13.320442 3.986271 -13.317408 -6.204542 1.833683 7.840990 8.017926 4.249510 -2.054201 13.856418 -4.215970 -5.335452 9.541648 9.775151 -5.828839 -1.833294 -2.459420 -5.070511 0.268906 -3.216174 0.155736 1.082795 5.748028 -7.886521 -3.729798 0.985755 1.240076 -5.120883 -3.512584 -0.283266 7.220073 -8.607396 -5.681240 -2.689041 8.410138 -0.075594 -13.456099 -5.138166 -7.094485 -1.709395 1.625543 -8.002188 -6.487930 4.578937 0.951205 -2.594145 -2.068553 -4.257834 5.945789 4.323078 1.816150 -1.502829 4.943172 1.761339 11.882336 0.698935 -5.630802 1.588164 3.362094 -0.434084 4.202703 -3.656598 -2.806633 1.478811 -7.846483 -1.337171 2.995123 -5.107113 -2.062660 -0.410691 -0.152042 -1.531487 28.983433 -2.673924 10.689533 8.860029 -7.092800 4.983187 -1.636678 2.382361 3.133202 5.411474 4.194555 -11.807994 -7.296603 8.072859 13.303497 4.963390 -6.824373 -1.372168 3.672804 1.431893 -0.185630 5.242118 0.258576 0.888775 -5.363405 -1.402295 3.955281 16.877810 -3.470429 -0.146386 1.252755 5.216747 -1.792159 -7.958100 -1.055068 -9.016865 -0.168142 3.326956 1.892524 4.554855 10.323955 -12.573609 9.022552 -1.312005 0.684195 7.478484 2.531801 -6.493808 -11.891401 -4.568905 3.063232 8.812697 -2.495175 0.270303 2.035582 -10.687657 0.371689 2.185578 1.864598 -7.114022 9.437923 -0.512333 -3.875661 -2.223979 1.398285 -3.947725 -3.640685 -3.598018 7.005891 2.701389 -7.163428 6.800551 2.613193 -3.379139 0.806423 -0.358985 7.773025 -6.869947 -8.053477 5.505874 -3.001443 -5.991700 -2.317285 -3.178558 3.837842 3.627393 0.129639 -7.735131 -7.460621 9.233116 -3.266741 11.724362 5.058717 -3.419124 4.942181 0.335287 -3.856949 -3.945085 -6.667088 0.126938 0.313532 -4.522970 -5.738565 -2.835157 6.844889 6.893572 0.901802 -6.272365 -0.575987 10.262837 -4.979185 -0.285652 2.805315 -1.164631 -6.304851 3.250872 4.853376 -7.378829 2.822763 -7.561612 0.457983 -6.058488 -3.299244 7.998143 -1.680651 3.154007 -0.495483 -1.433582 -0.116569 3.256892 5.130439 -0.810767 3.307076 12.689386 3.598320 0.199726 -0.178517 -10.717505 5.686179 -9.037158 -6.906355 -0.706801 3.359898 -6.397967 -2.397435 -0.458028 8.288103 6.645310 -4.157368 -4.567828 4.147424 +-7.677474 12.531085 18.985618 -23.854705 26.752532 21.919899 9.279617 -3.162105 -25.946628 -29.427794 0.203037 -44.048483 -45.596048 38.993916 -11.241464 5.218116 53.353975 2.613524 -6.848146 -18.994338 19.951877 -12.568910 56.072648 57.633642 -50.590474 8.999004 11.710430 24.372023 9.174570 26.169228 3.724226 -39.590358 7.415322 -5.902113 21.791799 -16.246318 -10.271613 -7.038753 -4.633084 -76.111535 -7.576619 28.659397 -6.377453 1.641597 8.012056 25.288755 57.843616 30.702501 -11.862644 24.042646 26.130958 4.196274 19.648038 1.457249 9.432337 -5.245779 19.600358 -9.488764 -14.674058 5.132453 -7.957618 -34.307497 -5.588686 42.763569 49.472730 -5.952696 -17.092400 0.913301 -0.040867 10.442159 2.315019 32.405924 16.489214 21.361604 33.003646 -26.255344 2.429435 -65.496653 8.478756 -92.755036 -40.192370 -23.342776 39.368785 26.332587 9.560613 -13.641204 64.605842 -3.770953 2.099907 32.780542 57.380149 -26.660034 -9.694722 -21.095565 -16.964389 12.887220 -19.729799 4.099928 3.774563 9.194192 -35.719469 -22.300004 16.176464 -5.023638 -27.503312 -5.227800 -12.257319 34.838974 -47.540055 -11.534161 -44.498703 11.320948 7.221739 -66.318945 -14.936332 -12.055689 16.102756 15.465044 -17.479185 -21.736998 15.233542 14.707631 -12.044734 -9.081302 -30.147928 43.136511 23.443189 0.048436 7.911692 22.747933 20.179770 40.026062 28.597856 -13.411053 -9.478555 14.903683 -11.022384 3.631507 -16.174648 -2.115437 15.663673 -29.700002 0.395447 13.304116 -22.908451 -14.468449 -9.243223 -20.317159 11.339523 115.729203 -13.106009 34.438567 19.611054 -38.909075 25.599151 -8.130456 -11.590844 13.306491 30.712223 32.547694 -42.134340 -26.683545 28.355748 58.082897 19.682749 -38.682230 2.283083 7.495676 2.199190 -12.627665 26.787692 6.438752 6.409450 -20.542852 -6.310870 22.679821 71.671572 -18.962937 -38.020153 4.659724 17.785848 1.427210 -32.086541 1.628170 -14.780377 -5.438847 14.647182 2.917671 19.819059 47.035781 -81.965336 39.683963 -0.665635 -12.475751 34.303227 0.388725 -17.043999 -47.538612 5.149595 30.394851 39.419063 5.335405 -3.079850 -7.682774 -47.387767 0.211758 10.512353 18.618498 -30.064444 41.390195 -3.195324 -26.807687 -24.743578 -22.721429 -10.560469 -6.130043 -24.787714 21.742853 11.599310 -75.214587 44.909599 -1.385653 -19.754499 -3.164203 -11.078198 29.775846 -39.450969 -47.287962 16.536402 -21.047308 -43.635679 -17.722162 -18.708780 16.080369 9.419943 -0.738056 -31.980751 -41.827205 45.772482 -7.980371 40.160371 28.486101 5.456788 47.633062 16.855835 -26.424312 -19.394090 -26.722219 23.692167 -11.605917 -19.257244 -11.590460 -19.905275 24.953819 52.394355 -5.468502 -11.427827 -15.462127 41.330761 -34.562948 -17.641218 19.045816 5.768234 -17.327252 25.992005 26.581021 -26.949229 -7.540205 -42.118368 -4.662987 -16.468750 -28.514564 22.418290 -31.840514 3.366964 24.209206 -11.474869 -19.028502 20.180505 3.721912 -6.966154 -3.178227 51.407021 50.510997 -31.147850 16.433119 -45.459088 31.472404 -50.936238 -34.534002 -1.964667 2.832297 -9.394696 -10.452259 -3.582012 21.349947 17.647462 -20.996513 -21.808370 10.017478 +-3.259857 20.472663 22.868497 -16.679033 27.847883 18.751675 8.467701 2.721993 -18.550849 -26.291013 -6.073005 -37.388193 -44.482069 33.868923 -8.241811 2.018750 50.264777 5.029145 -1.427334 -15.676138 13.983109 -14.452354 50.498208 48.989697 -47.044962 10.678160 15.008006 21.142910 5.531560 32.093509 -6.256257 -38.901408 9.183018 -1.712623 22.563843 -17.557542 -7.705190 -12.542366 -10.239774 -71.114268 -7.179914 24.469312 -6.579445 1.597374 7.499617 27.227306 58.673691 26.893492 -12.948103 19.695323 20.789711 3.564057 17.059384 3.574416 7.457439 -2.131551 22.391413 -7.002396 -19.169696 7.059208 -5.690377 -39.467813 -8.179492 36.508822 45.362114 -5.740969 -12.579091 0.964623 -4.115186 6.758359 -1.705393 26.701628 20.321986 21.985877 29.599789 -18.954344 2.288893 -56.065075 2.305401 -90.476935 -38.067568 -31.036885 32.998207 19.271429 8.980159 -13.668470 56.757276 -1.000803 11.095512 22.848332 55.852999 -28.701065 -10.441536 -23.098214 -11.581765 14.195609 -19.489474 0.935850 7.265939 -0.605117 -31.362411 -25.630222 20.832190 -4.904807 -24.362126 -1.079719 -12.939601 31.945164 -45.266302 -12.051140 -49.735174 -1.016737 4.163464 -59.018417 -7.743559 -2.501338 16.825504 17.698945 -9.653884 -22.925489 12.810824 18.392212 -11.219205 -10.777948 -28.231039 43.556563 19.542898 -3.641401 12.382297 17.815386 20.317661 34.166621 33.591158 -9.870843 -12.141450 13.702725 -13.910364 -2.028473 -16.853062 -2.390317 13.388798 -28.246872 0.600647 13.973221 -21.963159 -8.517126 -9.491067 -21.405534 16.558947 94.252285 -11.981828 25.430758 9.918370 -39.242988 26.587003 -6.879679 -17.167190 9.628503 28.895261 32.939400 -35.676013 -22.576862 21.058044 49.979730 18.097272 -35.955946 1.096705 -0.673001 2.144263 -11.407378 22.313247 9.310373 5.640238 -18.925479 -5.534807 18.221829 65.766218 -19.383852 -43.128074 5.727551 11.127248 1.125741 -31.116251 0.797229 -10.734632 -6.607041 8.136578 -0.722867 16.126412 42.457257 -79.141721 36.636651 -2.197691 -18.523221 33.193143 -3.646627 -10.866990 -39.581432 9.959015 33.511730 36.738658 8.950533 -2.696574 -11.158970 -41.012534 -1.114199 7.786088 20.562753 -24.263855 34.676952 -1.913103 -29.105862 -25.782662 -26.414711 -5.048091 -8.448377 -22.364596 16.698937 14.269103 -77.346439 43.842636 -4.277268 -18.334488 -0.019048 -9.002907 22.107649 -38.131586 -45.466598 12.926174 -18.355198 -38.861783 -15.738419 -16.307539 15.232594 6.343495 -2.422148 -25.215494 -42.017464 38.928463 -3.435941 29.563769 26.385923 11.126360 46.952495 21.672605 -27.165173 -17.855561 -21.357458 21.895589 -16.316393 -13.317043 -7.139440 -19.732033 23.340374 54.199186 -4.397407 -4.083386 -19.114133 35.911403 -33.264476 -17.926568 22.242362 6.509933 -12.510780 21.710510 27.184513 -23.753872 -14.801436 -36.309362 -5.465383 -9.847934 -27.107079 14.404264 -37.379214 -1.939866 29.463607 -13.195340 -22.267776 19.404375 -1.940907 -8.160946 -8.970532 45.307962 49.820405 -35.513376 21.186821 -36.702820 27.168182 -49.676144 -30.142773 -1.982938 0.807108 -7.137379 -7.069541 1.608259 13.796528 9.055114 -17.218021 -18.237023 0.915264 +-6.161307 -6.689182 -2.341205 -9.227658 5.192000 8.224814 3.482194 -10.042363 -12.007178 -2.312659 5.877648 -17.642809 -6.214027 13.088699 -4.947529 10.393256 15.503992 0.390783 -7.106902 -5.232852 9.527455 1.618147 18.381941 19.599873 -10.160924 -0.408130 -3.360574 5.689367 3.292282 -2.558431 5.283431 -6.215657 3.080507 -10.775700 -0.893115 -2.780714 -3.186200 6.117833 11.861240 -18.598827 -0.634824 4.829777 3.513138 -0.104065 0.209191 2.866099 9.187980 10.193701 2.347963 9.174589 7.463756 -1.444199 7.117734 0.427991 3.750053 -0.237998 2.468153 -3.260440 -1.786911 -2.829763 -3.817265 1.111955 1.365261 12.961582 14.292621 1.821243 -7.752591 3.714726 5.398063 3.890675 4.493085 10.664146 -2.772598 4.942515 6.262714 -14.244454 2.530789 -18.839546 3.654690 -14.433216 -8.891910 3.776767 9.568919 7.041724 6.948250 -0.307470 18.396507 -2.137217 -8.968573 12.628395 14.274934 -9.615060 -2.933562 -1.504938 -5.731698 -0.717895 -3.957310 5.167538 2.154371 9.895590 -11.700393 -4.935579 1.134009 1.193683 -6.582807 -5.167482 0.732856 8.298361 -8.334705 -7.001520 -2.118275 11.076532 0.074330 -18.985617 -6.436816 -9.150962 0.935020 1.825124 -10.995348 -9.334616 5.571803 0.422060 -3.835521 -3.222159 -4.857271 6.654573 8.557194 2.894000 -2.398339 9.117551 3.126670 18.874439 -1.719329 -7.905777 2.512249 2.991775 -0.636850 6.855712 -4.467535 -3.541466 2.544109 -10.704827 1.546275 4.977247 -6.387083 -3.922144 1.305398 1.687007 -2.802044 36.335351 -3.036902 15.343965 13.434182 -8.893521 5.002310 -6.121441 4.609674 3.864106 6.080306 4.694562 -16.595959 -11.052633 12.446463 17.904183 6.426571 -11.451443 -0.906170 6.195569 2.133864 -2.824112 7.045131 1.612186 1.082007 -5.804827 -1.141223 8.064594 23.494764 -6.261612 1.179832 2.541443 5.184728 1.267137 -10.793509 -2.767750 -9.516580 -0.548577 5.856992 6.277794 6.087825 14.050037 -15.532390 11.279610 0.193651 2.494043 10.816692 4.853296 -11.491555 -12.147333 -6.103778 4.352066 9.703020 -2.389213 -2.053336 2.774517 -14.815126 0.939188 3.867855 1.498389 -9.070260 12.701091 -0.580173 -4.743263 -3.045077 2.742777 -5.312485 -3.290293 -4.247544 10.706991 1.700094 -10.782359 9.260212 3.797225 -5.692754 0.649747 -3.992391 12.195868 -8.475676 -9.389750 7.323219 -6.136399 -7.359500 -4.088148 -2.794682 2.784595 4.761443 4.557933 -12.286989 -8.335382 13.426875 -4.650361 16.348825 6.675791 -4.323807 4.962017 -4.055584 -6.817440 -5.308906 -9.590868 0.773656 3.793663 -8.906011 -5.439330 -2.942606 9.560742 8.379691 -0.124763 -10.081920 -0.493693 12.486985 -9.776076 -1.885806 3.460694 1.064597 -10.243725 4.423599 6.216485 -9.641005 5.615878 -9.215704 -2.221120 -10.031071 -6.152801 10.240352 -0.671931 4.820342 -2.337972 -2.208619 2.350860 5.215489 6.186131 0.387487 6.044683 17.152480 6.909024 0.810151 -2.774033 -16.515915 8.758942 -12.081982 -11.509225 2.491540 3.564090 -9.162421 -3.922224 -1.163289 12.083994 8.807752 -9.395362 -8.281677 6.839899 +-9.848336 62.649008 62.227674 -55.803125 89.791297 73.153682 23.442387 -4.165843 -53.572599 -64.441437 -17.955226 -118.198389 -124.276213 94.402280 -25.379943 13.447192 143.345895 3.324985 -7.843548 -39.245852 42.309484 -20.609748 147.525248 141.401006 -135.269854 32.765629 39.603407 54.375823 7.122020 92.826803 -28.744252 -121.656046 21.116831 -5.072993 59.171602 -40.440312 -28.821848 -39.941797 -10.215370 -200.650300 -20.749732 72.250822 -23.181936 5.395968 23.798797 63.516458 176.218947 76.043376 -36.036882 51.692166 61.932330 16.327177 50.620439 8.055347 23.868832 -2.040731 72.945596 -15.979124 -48.068367 11.856916 -20.061098 -85.430206 -23.710516 107.474459 128.393882 -11.953986 -44.634768 3.068491 -4.522593 13.782684 -10.250825 85.604451 56.099018 73.160594 81.382098 -49.014199 11.928136 -155.563994 13.967641 -227.113603 -110.456575 -82.065290 79.160246 61.710551 34.467735 -46.164336 169.922055 -10.022968 27.172933 61.036425 161.160733 -86.657577 -24.290584 -64.411660 -42.377162 29.237772 -47.600422 6.490841 10.516175 -2.820344 -92.502179 -78.222380 53.295159 -13.649436 -71.059168 -3.684647 -32.499855 84.229213 -116.347261 -35.143805 -132.898892 8.942749 8.455985 -172.980395 -40.659672 -10.959801 31.637675 43.418695 -33.545806 -78.898570 37.788280 51.243424 -41.313720 -34.002835 -75.678093 123.590433 71.345183 -9.494721 31.818651 46.238821 63.624190 107.803338 84.590903 -32.235190 -31.867709 32.796759 -30.350855 -5.196232 -45.534913 0.498029 25.181965 -79.216624 4.191905 50.312005 -60.401798 -12.466174 -33.754897 -65.139390 39.867812 292.812833 -44.407584 79.441198 29.819581 -116.955358 80.677790 -20.212342 -51.690993 22.846666 77.454141 102.246434 -115.971924 -66.661519 73.839712 146.193076 49.109383 -104.574426 13.437475 8.886508 3.232473 -38.108881 66.974755 23.574836 17.500991 -53.632986 -17.040879 55.843105 203.374856 -54.159157 -130.788700 22.086541 40.447178 10.706996 -76.492283 -2.126247 -43.627800 -20.954054 36.073082 1.058706 53.081734 123.661848 -229.148624 102.229341 -0.781246 -60.309167 105.704637 -7.284326 -34.625599 -91.352563 24.782358 98.113238 101.132809 22.971147 -7.928074 -39.366268 -117.084804 -0.170558 24.803023 56.023487 -77.876588 103.026077 -1.394587 -91.913111 -68.727161 -78.439920 -21.116829 -28.913355 -75.694857 49.263743 34.473215 -220.116622 129.079274 2.562903 -47.438456 1.514191 -37.602642 67.058716 -102.403312 -126.724712 41.495407 -55.135785 -96.854868 -31.605348 -46.278481 39.968080 27.382105 14.112997 -89.998205 -129.192310 112.043013 -2.736925 94.676479 77.075414 32.188164 117.979973 55.038639 -75.826571 -53.552876 -74.425620 72.381168 -25.905686 -45.346654 -25.350187 -61.803247 68.306671 149.324780 -17.976177 -16.019358 -70.732466 95.702923 -93.520257 -34.296158 59.586316 11.151394 -51.386365 45.153685 75.686213 -55.214086 -37.227793 -104.263526 -13.661803 -44.231176 -78.157666 40.729022 -100.601285 -7.859539 83.924866 -47.042472 -62.382606 52.544986 -4.002496 -25.001406 -18.373574 128.270490 125.859343 -89.629743 60.496593 -109.624764 81.674943 -142.626726 -92.124648 2.069252 -15.065976 -30.525670 -30.344335 1.785355 45.493003 22.346778 -40.830115 -50.022599 5.412304 +-4.152136 -5.001422 -1.757702 -6.638083 3.715270 3.882317 2.460849 -5.832717 -8.772875 -2.171318 4.065740 -11.953120 -5.047287 9.375476 -3.326874 6.317226 11.519887 0.687535 -4.286491 -4.768829 6.665601 -0.795295 12.756904 14.437087 -8.089325 -0.243266 -0.933821 4.295327 3.093188 -2.007262 4.124079 -4.627331 1.872871 -7.030038 1.296500 -2.937674 -2.252047 4.185034 7.486415 -14.397019 -0.819486 3.408152 3.166881 0.453265 0.448363 5.979399 6.358877 7.441574 -0.304186 7.659350 6.497245 -1.481769 4.996905 0.011878 2.021585 -1.016037 1.687886 0.461530 -1.286264 -0.701247 -2.421786 -0.256758 1.415589 9.450661 11.330483 0.103569 -5.324850 2.170610 4.307135 3.270118 3.253225 7.706181 -0.970398 2.613823 5.518986 -10.666178 0.774565 -17.952090 3.069497 -16.976754 -6.587291 1.932552 8.460244 2.243852 3.545016 -0.282948 13.688947 -0.191567 -5.857943 9.744934 10.079774 -5.567144 -2.315717 -1.381464 -4.814183 0.607251 -3.086306 3.507653 4.917487 6.951996 -8.297219 -3.427073 0.848113 -0.072037 -4.929433 -3.939274 0.049465 6.237123 -6.177560 -4.208552 -2.872926 7.601668 1.046110 -14.329476 -2.953776 -7.063360 1.567774 1.519356 -7.584400 -4.960378 3.484655 -0.259310 -3.296468 -1.113934 -3.682751 5.688143 5.920055 2.264488 -1.330158 6.381105 2.178031 11.850260 -0.117884 -6.221629 0.930228 3.044244 -1.447626 4.623742 -4.735821 -2.551196 5.457586 -7.754298 2.634919 1.438007 -4.777608 -3.884531 3.838802 0.089915 -1.540733 26.262295 -2.109318 11.197367 9.183486 -6.029922 4.367180 -3.360146 3.453205 3.972586 5.974365 2.776876 -10.382131 -7.607958 8.127797 13.319037 4.692565 -9.577417 -2.467326 4.541392 1.058196 -1.942311 5.080336 1.087784 -0.166654 -3.158243 -0.679522 5.344972 15.589288 -3.996027 -0.085263 0.361180 6.698735 0.147140 -8.388462 -1.211672 -7.945123 -0.190054 3.197148 4.245770 4.956377 9.989907 -16.043241 8.130499 0.310518 2.584725 7.147989 3.746251 -8.001448 -13.508494 -3.157169 2.753691 7.501544 -1.347969 -1.436217 2.674303 -10.685726 0.875586 2.496042 1.577509 -6.880129 9.209718 -1.323330 -2.674687 -2.207695 1.704804 -3.895737 -2.187783 -2.677081 7.502851 1.681231 -10.832574 6.274185 1.252546 -4.755583 -0.292441 -2.493063 7.838221 -6.875790 -6.985450 4.357016 -4.097862 -5.761182 -4.491818 -2.608469 2.505197 1.747809 3.243321 -7.871699 -7.144312 10.047270 -4.663450 11.494502 4.995220 -3.503381 5.688574 -3.360963 -5.344174 -4.702909 -5.875929 1.094682 1.434660 -5.730871 -2.680180 -1.989812 6.154313 6.590884 0.172954 -6.179850 0.310667 9.517000 -6.745510 -1.975968 2.454816 0.913867 -5.647195 5.055738 4.401706 -8.053402 3.638731 -7.633560 -1.742034 -5.866827 -4.005898 7.843910 -1.436659 3.203693 -1.842301 -1.376096 1.586095 4.490753 4.328272 0.395789 3.726331 12.405223 7.599335 -1.200513 -1.535960 -11.932478 6.336597 -9.024534 -8.058080 0.519398 2.535829 -5.778029 -2.180852 -0.974027 7.902801 5.932084 -7.015956 -6.729050 5.613763 +-17.212504 45.745119 54.053154 -65.376968 90.509677 78.980937 25.927326 -14.157936 -64.539632 -65.839781 -8.941964 -126.441522 -124.514888 101.133015 -30.442576 27.217674 146.353603 -0.482648 -16.379197 -42.372619 56.023320 -20.138320 157.399155 149.280900 -140.714312 28.918859 31.883624 63.456473 14.197929 84.973163 -14.859950 -116.020859 20.874504 -18.540308 58.559439 -41.754566 -29.258256 -26.962380 0.815657 -206.741659 -23.130065 80.220713 -23.308859 8.731155 24.747485 65.077129 168.936995 83.394455 -35.667799 62.794878 68.677995 11.283659 57.684804 7.293668 21.628995 -3.438677 67.135440 -18.670084 -45.668794 7.374088 -24.123283 -83.180030 -14.632612 114.594148 137.397249 -16.173530 -50.512111 11.221932 2.725504 18.141673 -1.051819 95.976773 44.830960 67.800133 89.388496 -64.372352 13.547537 -164.329584 21.129543 -228.625634 -113.137205 -73.424125 85.081088 70.151855 40.474767 -48.499493 184.363152 -13.372018 10.507180 77.185533 160.385665 -89.142082 -22.696949 -66.910041 -45.785086 24.004700 -51.659415 4.593221 13.051965 13.342389 -97.533162 -72.733502 46.336489 -12.617920 -74.306341 -13.963261 -35.985933 91.558910 -121.508715 -43.750330 -126.859052 27.788203 6.502057 -184.465425 -47.719581 -22.288798 30.871902 39.145810 -37.368451 -77.527205 41.599715 49.575754 -40.139780 -33.999507 -74.295898 124.842164 79.339270 -5.961671 26.912052 58.266260 58.006431 119.535713 82.455983 -35.640920 -33.771141 38.301465 -27.762053 6.864654 -45.426742 0.541850 30.104642 -86.970880 -1.629875 51.754979 -59.665459 -15.864636 -30.255021 -60.725237 33.327174 322.850462 -43.852236 91.520696 44.734147 -116.447157 81.265943 -20.624022 -39.023914 32.065064 77.889422 97.963707 -132.777213 -74.245504 84.527692 156.041044 50.652356 -113.326750 12.214478 18.203916 8.085850 -39.411230 67.805797 26.412858 18.728628 -55.853146 -15.678297 55.316961 214.871130 -58.235007 -120.214826 25.663660 46.628626 2.704616 -86.989195 -6.006071 -52.621963 -25.055429 41.624892 7.760214 53.900674 130.321793 -225.043371 106.531864 1.097378 -50.991517 111.197421 -4.010732 -41.281467 -107.604131 10.975840 91.663324 102.921877 13.570129 -9.221629 -32.390809 -126.678332 7.271782 28.144132 53.247250 -81.342732 112.328847 -5.624313 -85.038186 -66.973389 -69.587496 -28.682627 -26.894296 -74.241500 57.195203 31.889871 -211.583234 126.674979 2.188274 -52.650588 4.834003 -33.715842 81.623971 -103.388238 -128.877610 50.763374 -56.636976 -104.922883 -40.297722 -46.165542 41.630730 34.074382 10.513067 -99.838023 -132.063538 120.013059 -12.261574 106.285830 78.704619 22.975089 120.853028 48.102863 -79.933751 -58.100128 -84.210086 66.441089 -18.523499 -49.647732 -36.750092 -57.873754 73.926268 145.562381 -15.924373 -22.519141 -64.392995 106.761488 -99.265346 -34.285591 58.540723 13.182785 -59.422420 51.192071 77.080203 -61.068234 -27.861453 -109.648397 -11.569251 -53.302264 -75.505870 54.083406 -94.341006 -1.595884 74.551410 -42.587639 -55.617340 53.608458 6.810033 -23.403313 -15.460238 144.635089 130.243236 -83.102341 49.738649 -119.999269 87.482033 -144.659358 -95.002356 0.369946 -8.484816 -32.111709 -29.201193 4.427649 58.401574 38.323146 -53.956412 -55.023894 10.616996 +-2.178504 -2.071618 -0.817851 -3.071160 2.180877 2.539519 1.397640 -3.428052 -4.701099 -2.038447 2.409446 -7.081051 -3.295948 5.363686 -1.823894 3.628661 6.379636 -0.116135 -2.302006 -2.785335 3.897455 0.710929 7.605554 7.878418 -4.746532 0.168459 -0.243253 1.447107 2.229208 -1.148273 2.501679 -3.587067 1.858053 -3.837319 0.072849 -1.082463 -1.451267 1.750912 4.673696 -7.701211 -0.417098 2.182337 1.300915 -0.083636 0.260397 2.439420 4.282389 4.218468 0.004294 4.448507 3.790351 -0.074962 2.529483 0.110000 1.068393 -0.844899 1.134037 -1.250926 -0.798172 -0.710374 -1.401632 -0.253478 -0.189503 5.410276 6.249535 0.001058 -3.068462 1.628198 1.936398 1.870241 1.736283 4.475102 0.574156 1.895868 3.480550 -5.482530 -0.347405 -9.779191 1.050345 -9.393211 -3.952404 1.097641 4.530573 1.485467 2.384028 0.345622 7.592444 -0.531432 -3.332354 5.337624 6.211637 -3.541671 -1.260871 -0.400306 -2.336910 0.352230 -2.292865 2.520825 1.068919 3.148881 -4.854283 -3.030852 0.822733 0.029985 -2.908119 -2.554495 0.098155 3.201200 -4.199413 -2.337608 -1.880280 3.797403 0.525181 -7.777199 -2.605439 -3.336695 1.486207 1.367261 -4.234285 -3.270857 2.137466 -0.146945 -1.807454 -1.817669 -1.127592 2.609056 3.621634 2.001457 -0.597857 3.283961 1.927631 7.536052 0.615239 -3.228591 0.727117 0.943939 -0.092361 3.023314 -2.122295 -1.451365 2.272723 -3.618678 1.524464 1.750836 -2.703740 -2.870066 1.653478 -0.572509 -1.050826 12.963299 -1.061527 5.959968 5.351940 -3.754630 1.057508 -2.926465 1.254499 1.781017 3.188628 2.571884 -4.866248 -4.265799 5.153737 7.441688 2.643194 -5.290904 -0.709357 2.995995 1.219408 -1.492182 3.139695 0.772390 1.040112 -2.890517 -0.475815 3.446117 9.022218 -2.731536 -0.032597 0.608726 3.366653 0.904880 -4.105088 -0.713042 -3.597936 0.014982 3.020260 2.247190 2.489911 5.741519 -8.442810 4.477091 0.027387 0.975547 3.413315 2.710957 -4.861883 -5.112199 -1.402341 1.876334 3.909323 -0.064852 0.365245 1.017491 -6.190118 0.309361 1.129869 0.602600 -3.754659 5.215104 -0.227575 -1.885568 -1.699446 1.050203 -1.496415 -1.492064 -1.490746 4.305991 1.855418 -6.205589 3.995780 0.799946 -2.531686 -0.589778 -1.704216 5.515748 -3.742203 -4.020069 2.816049 -3.439789 -3.711098 -1.972544 -1.413272 1.112792 1.865281 2.610476 -4.338007 -3.791569 5.944858 -1.546950 6.566467 2.943277 -1.558419 3.161666 -2.671065 -2.625729 -2.711224 -2.966385 1.125243 0.742310 -3.552415 -2.198939 -1.376620 3.667890 3.922243 -0.638860 -3.917515 -0.916043 4.711417 -5.516206 -0.776992 1.625709 2.644647 -3.632379 3.124497 2.617320 -3.942219 2.173416 -4.060035 -0.774901 -3.868405 -2.672425 4.072662 -0.765577 1.643446 -0.360083 -0.995586 0.475681 2.224449 2.033772 -0.314675 1.516782 6.246207 5.132716 -1.281870 -0.757064 -6.777263 3.480021 -5.311921 -5.368336 1.226665 0.690884 -3.912901 -1.815320 -1.068829 4.538561 3.518860 -3.423566 -4.066064 3.259169 +-7.509150 0.846436 9.655250 -16.118984 22.178611 11.007432 8.904685 -2.522495 -19.065747 -21.574485 1.756005 -27.614212 -34.308609 26.726697 -10.069255 10.705648 35.189568 0.118451 -2.542180 -17.998532 21.878278 -15.008319 43.383361 37.279814 -40.680245 3.868632 5.924477 21.793890 12.162572 16.331908 8.879018 -21.826021 8.205754 -10.588963 20.923686 -14.774279 -3.540903 1.775243 -2.143315 -53.534942 -8.964882 22.053174 -3.598496 7.241736 6.894411 31.895834 33.449184 24.811930 -14.554305 26.738191 22.476606 -3.391751 18.874240 3.111309 -1.882795 -5.109603 9.138451 -5.718391 -13.139959 4.328329 -8.274436 -31.718407 3.503297 29.483743 41.669423 -11.630113 -11.145125 8.963565 0.772144 9.840931 7.271585 27.861821 10.410708 7.275060 32.771066 -25.329365 -3.205576 -54.748967 4.655415 -79.112998 -28.813446 -20.468985 28.185444 13.884737 9.901734 -9.803534 51.766972 2.088557 -3.529956 29.854621 35.754723 -20.315269 -5.405737 -20.317120 -9.567121 5.766933 -18.657769 -1.295181 12.703801 12.110846 -24.681728 -15.243949 9.334056 -5.825953 -18.654181 -13.233918 -16.610431 27.904080 -37.395615 -14.710388 -36.291717 11.320737 1.095240 -49.287939 -2.413416 -9.991571 15.682183 9.848481 -2.782243 -8.391869 10.653924 12.305618 -7.220273 -7.334642 -18.078086 34.117787 20.475436 0.155428 6.736020 23.019336 5.676606 28.713416 28.252364 -7.564026 -16.275685 16.060939 -9.482126 8.088968 -14.635165 0.370558 24.193218 -25.183817 -2.732699 5.908219 -12.471517 -12.027208 1.919117 -16.284488 10.054516 76.703875 -6.612529 24.190167 16.224401 -25.424167 20.778981 -3.782022 0.579380 18.507799 24.309522 16.591976 -32.737251 -21.716993 20.415263 38.744906 11.899281 -34.865861 -5.863610 5.979169 8.392400 -9.236085 13.108464 12.135928 2.708721 -13.666014 -0.186853 6.742454 51.334552 -17.529169 -18.983727 6.300045 17.013719 -8.831659 -32.743771 -3.140354 -14.829668 -10.679580 8.371399 5.434954 9.058461 33.466236 -57.009431 27.090056 -0.993441 -1.987249 22.749187 -1.485120 -9.454877 -48.932156 -0.884413 16.100490 24.804846 1.141293 -0.903336 -1.247503 -35.247739 9.383392 5.347517 14.307071 -18.012753 30.665248 -8.720760 -13.798274 -17.978495 -12.402136 -9.452968 -2.653113 -11.198045 15.811251 12.793802 -52.361386 25.267987 -10.804301 -19.628452 4.094224 0.979922 28.448959 -25.919614 -32.540273 15.514037 -15.579238 -35.704785 -24.902862 -9.778103 11.198065 4.542744 -7.236206 -22.073615 -35.540554 33.481847 -12.708804 25.177004 19.647245 1.756613 41.133089 8.069172 -25.993207 -19.549246 -19.827734 9.024767 -9.378131 -9.453583 -11.622486 -8.662415 18.995647 36.957426 -0.301076 -2.991786 -7.159937 35.602080 -31.966523 -15.507998 17.336303 10.384772 -9.290062 26.374891 21.008319 -21.933736 -6.727523 -29.888335 1.158085 -9.346357 -14.951363 20.622166 -25.831666 1.727080 12.455346 -3.049424 -11.379782 15.382298 6.522693 -4.426606 -11.377666 46.775455 47.209479 -25.269862 6.358015 -30.351425 22.118553 -35.748823 -20.459168 -6.453307 6.550777 -1.934413 0.759756 4.356311 18.893441 19.124663 -23.713075 -18.299796 1.362744 +-12.157677 63.363558 65.545066 -61.515813 93.968187 79.221849 24.814361 -6.026231 -59.313069 -69.524042 -16.838333 -128.820352 -132.825973 102.770099 -28.313117 15.132163 153.743294 3.402868 -10.863731 -41.800722 46.612399 -19.992942 158.575855 153.015144 -144.501895 33.370823 40.426996 59.641028 9.197987 96.199678 -26.484609 -129.709178 21.658210 -5.942490 62.008775 -42.622460 -30.344668 -40.186347 -9.829610 -215.003590 -22.064699 79.262307 -24.629760 5.015707 25.596946 66.178312 186.334918 82.639778 -37.325530 55.255515 67.141944 17.941854 54.251501 7.879239 25.107628 -4.145753 75.596598 -19.319128 -50.194437 11.860713 -21.188688 -89.547906 -25.023277 116.772591 138.453511 -12.145420 -48.502900 3.041940 -3.148895 15.809259 -9.563708 92.047163 58.366287 78.534636 86.886136 -52.911234 12.712738 -166.502916 17.239168 -239.948128 -117.651255 -84.657305 86.810156 70.076088 35.803169 -50.400954 182.745070 -11.502018 25.759435 69.839952 172.622731 -91.503810 -26.353355 -69.063553 -46.500321 31.768473 -51.919095 7.875431 8.919137 1.016494 -99.739641 -82.385222 53.685426 -14.281305 -76.556362 -4.224878 -34.214656 90.916538 -124.428647 -37.382946 -139.217826 13.618813 10.504353 -186.522145 -46.626866 -14.522927 32.612153 45.617467 -38.037287 -83.176946 40.857854 52.864364 -43.674696 -35.177607 -83.043465 131.154136 76.162946 -9.613100 32.065098 51.291430 68.102694 116.000233 86.735257 -35.893710 -32.872168 35.492199 -31.851654 -3.928796 -48.968425 0.300577 27.137326 -84.875840 3.356920 53.751386 -65.054826 -15.596904 -38.852587 -68.440384 41.152513 318.108905 -46.756239 86.813263 34.883898 -124.488890 85.872478 -21.982063 -53.499790 24.598325 81.877597 108.856831 -125.280215 -72.275681 80.681603 158.545495 53.308708 -110.583168 16.092991 11.880070 3.625786 -41.769876 73.166826 25.202152 17.849420 -57.619080 -18.763234 61.815512 217.355243 -56.978804 -136.721452 23.194523 44.980027 11.918452 -80.846404 -1.594618 -45.958024 -21.902556 40.795353 2.385764 57.996030 133.214327 -242.899901 110.103560 1.276648 -61.628874 112.161224 -7.491499 -39.429123 -97.982222 24.926637 104.009743 108.440934 23.238713 -8.595185 -40.596823 -126.934205 -0.216816 27.813642 59.216772 -83.513216 111.386493 -1.749705 -96.305043 -73.492164 -82.019813 -24.738532 -30.261722 -81.535720 54.409261 35.983968 -231.308612 138.423780 3.302604 -50.563360 -0.134088 -41.115092 73.482693 -110.831976 -135.660473 45.277539 -59.243259 -105.379674 -34.143192 -49.980488 43.073026 30.623953 15.519783 -97.371021 -137.270414 121.260066 -3.780693 103.692938 82.192610 32.380825 124.823207 58.499387 -79.749754 -56.597457 -82.001714 77.988601 -25.758471 -50.056006 -27.517172 -65.241063 73.627173 157.942327 -20.262345 -20.573176 -73.980895 103.375462 -98.580391 -37.327886 61.847199 10.303051 -56.144830 48.814970 79.959979 -60.676158 -37.052317 -112.964178 -13.802671 -49.287678 -84.090645 45.254451 -105.264445 -6.478666 88.030844 -49.388165 -65.539352 55.757789 -1.932018 -27.131307 -16.883458 139.081728 132.653215 -92.994756 63.859665 -120.358537 88.479613 -152.704262 -99.943787 2.518068 -15.992167 -33.025200 -32.962634 0.595911 50.183669 26.668035 -44.403267 -54.813929 8.766287 +-9.054877 46.939893 47.726029 -47.747344 73.091536 63.103353 18.502597 -6.801949 -45.656512 -48.303628 -12.730368 -98.886455 -97.146940 76.216027 -21.118192 14.246858 115.558500 1.095481 -9.135056 -29.688256 35.696139 -11.339540 118.711236 114.681711 -107.398020 25.771254 28.100059 42.485858 4.772324 72.807500 -23.932092 -98.465147 15.629257 -5.799993 45.286825 -31.076186 -24.593005 -29.730250 -1.850818 -160.101759 -15.946723 59.816092 -18.119574 4.378372 19.766777 48.537052 140.395692 60.853919 -28.032029 41.269662 50.289243 13.365421 41.310674 5.648575 19.602206 -0.530937 59.072829 -10.853596 -36.895712 6.925366 -17.344494 -60.580965 -17.843793 86.837754 102.891002 -8.457676 -38.435415 2.454265 0.334686 10.204419 -7.229830 70.563892 43.284085 58.984318 64.093165 -38.449227 11.311658 -123.426178 14.248456 -174.138487 -87.743203 -61.221402 62.177968 51.399458 28.921410 -40.664440 138.013048 -11.202351 17.835472 50.341453 128.635237 -70.017892 -18.570656 -51.258087 -36.548582 20.303868 -36.442664 5.305029 7.790009 -0.515776 -75.029270 -62.509028 39.582608 -10.676504 -56.912867 -2.882508 -24.153336 66.594525 -89.897459 -28.807934 -101.926299 13.097285 6.824002 -139.576472 -37.087369 -11.748056 19.429972 32.630454 -30.367333 -65.242510 31.104282 39.014896 -35.579017 -26.532726 -60.028401 99.064028 59.921809 -6.689201 23.241361 36.911800 51.188606 88.530382 62.628703 -28.482348 -23.462989 25.547133 -21.981180 -2.292491 -36.851904 0.826691 18.911462 -63.689222 2.448804 41.373166 -48.301984 -6.745456 -27.909228 -50.506039 28.368544 242.444550 -37.586846 66.972763 26.140488 -93.601468 66.689931 -15.280112 -39.281208 17.706002 60.491536 82.344293 -97.741074 -54.703178 63.126053 118.741684 39.431533 -84.824246 13.287664 10.590397 2.328523 -31.128242 54.333620 18.122409 14.226500 -43.122370 -14.006080 45.240652 167.173354 -42.896991 -103.871223 18.403562 34.963815 9.583690 -58.969863 -2.982256 -38.753244 -16.781567 31.455393 2.521134 44.929960 100.171489 -182.865771 81.828125 0.755874 -48.307697 87.663830 -4.498072 -29.965298 -70.316030 15.843390 77.500777 81.087889 17.148478 -7.083061 -30.995334 -94.402118 0.684357 20.838717 43.502234 -64.168435 83.519471 -0.195566 -73.432523 -52.362694 -62.128354 -19.587788 -24.192688 -62.830720 41.111227 25.491603 -173.009359 102.978794 6.234352 -36.688824 0.915838 -31.580937 54.469559 -80.460800 -100.022886 34.498189 -44.006515 -75.154743 -23.357260 -36.711500 31.371183 24.260052 15.845762 -76.663194 -106.477855 90.999571 -2.284887 80.060672 61.631568 23.061530 89.775433 43.434538 -59.442866 -43.413022 -63.801746 58.909407 -15.209348 -37.990400 -21.252665 -49.654497 55.439073 116.226672 -15.084065 -15.148344 -58.990613 76.171561 -72.997042 -23.281648 46.429757 5.903922 -45.057100 32.716887 60.137411 -42.980140 -26.474656 -83.850585 -11.132490 -39.962382 -61.286689 34.392924 -76.957489 -5.519506 64.508005 -38.657832 -48.262476 40.962505 -1.048863 -21.233324 -11.258392 104.713500 96.156410 -66.694469 47.651167 -90.055725 67.240827 -113.862024 -74.884444 2.782948 -15.372889 -28.509976 -26.218152 1.698957 39.258351 18.753566 -32.118034 -40.469643 7.004176 +-4.416262 -3.877029 -1.061854 -8.296283 4.177072 8.676880 2.312979 -6.366703 -10.143852 -4.103217 3.771479 -13.699080 -5.933808 11.065826 -4.290053 7.249654 13.232907 0.736608 -5.741658 -2.734409 8.165659 0.603006 14.551542 16.118724 -9.633054 0.190880 -1.152376 5.653092 2.814568 2.218805 4.651103 -7.823676 1.942917 -7.062773 0.790154 -4.589562 -2.830119 4.429885 6.728334 -17.249068 -0.761377 7.572210 1.209595 -0.356345 1.220233 0.745025 8.984224 8.500829 0.081019 7.335141 6.376109 1.498536 5.230363 -0.036776 3.054020 0.322944 1.670154 -3.696563 -1.057503 -1.850651 -2.880634 -1.604168 1.057373 11.580556 12.352860 0.126075 -5.593410 1.715535 2.878250 2.922461 3.689714 8.824665 -2.283425 3.860893 5.680494 -10.089671 2.504003 -13.875729 4.358470 -14.050851 -7.110726 1.431416 8.522500 9.545305 5.012208 -2.442982 16.241570 -3.915041 -5.773931 11.976750 11.956063 -7.128563 -2.028899 -3.062851 -5.799425 0.820957 -4.356716 1.524133 -0.275099 6.923363 -9.234690 -4.260234 0.045206 1.480067 -6.325524 -3.833906 -0.486167 7.913329 -10.317852 -5.828990 -3.052747 9.072800 -0.124804 -16.769612 -8.116508 -7.958296 -0.077629 1.298624 -8.416490 -7.648281 4.809065 1.655974 -2.298897 -2.622344 -5.032074 6.381344 6.025266 2.089363 -1.745886 6.089315 2.915149 14.532506 0.640810 -5.867926 1.384043 3.323566 -0.543251 4.584784 -3.785577 -2.264469 1.458669 -9.183770 -1.107835 4.936490 -5.712287 -3.008173 -1.458564 -0.745061 -1.150772 35.817738 -2.870531 12.307989 10.529577 -8.912929 3.899715 -2.917109 2.006090 3.691895 5.430115 5.621701 -14.141627 -8.227863 9.541952 15.760510 5.605065 -8.041073 0.702889 4.685798 1.241762 -1.714901 6.153506 0.468847 0.627075 -6.115553 -1.747647 6.195774 19.200778 -4.016097 -0.623240 1.665282 5.843379 -1.438231 -7.479986 -0.968551 -8.211542 -0.012233 5.349192 2.383984 5.465759 11.957614 -13.732095 10.161019 -0.157172 0.851993 8.300318 2.878592 -7.999411 -10.703648 -4.157026 4.402765 9.197085 -2.903917 0.080436 1.838422 -12.741298 0.339564 3.391990 2.168939 -8.050653 10.970589 0.559994 -4.692824 -3.777023 1.285670 -4.093011 -3.356590 -4.884831 8.254013 1.163454 -9.351178 8.813964 2.829719 -4.438437 0.230969 -2.124665 9.442269 -9.127897 -9.761075 6.458531 -3.967431 -7.638593 -2.360301 -3.700096 4.397577 5.321685 1.432396 -10.209919 -8.452236 10.751001 -3.300761 13.211615 6.008420 -2.877218 6.215973 -1.645752 -4.275261 -4.985342 -8.766777 1.856901 1.351626 -6.371456 -5.486545 -3.342480 8.075361 8.608036 -0.366166 -7.809753 -0.270238 11.273524 -6.048782 -1.014581 2.610794 0.452442 -8.204807 3.569885 5.051508 -8.149511 3.286836 -8.685584 -0.140692 -7.198163 -5.199821 9.145358 -2.173809 4.064642 0.543831 -1.474815 -0.576526 3.992343 5.212742 -0.579227 4.463862 14.243888 4.872027 -0.110578 -0.180488 -13.344513 7.152146 -11.372913 -9.286621 0.333659 2.293546 -6.001245 -2.962753 -1.286096 9.533185 8.091124 -5.316665 -5.202961 5.133476 +-1.774065 8.551367 7.003924 -8.790571 9.406655 7.810085 2.240171 -0.613766 -6.481467 -10.327132 -2.679057 -11.960510 -14.531223 12.259986 -3.179363 0.681743 19.931150 1.126946 -0.480964 -6.881743 8.866446 -5.780007 18.412122 20.122136 -19.388524 3.442351 11.381661 8.095731 5.050921 8.884430 -0.327791 -14.753768 1.898931 -3.461671 9.848446 -8.756037 -2.965534 -4.313735 -0.266205 -28.189640 -3.033497 4.814503 -4.514082 0.506956 1.995942 7.950507 22.525777 10.369822 -8.758727 6.246978 11.278484 4.881206 3.769399 0.082050 1.008511 0.255699 5.884681 1.793386 -2.510164 2.531211 -1.205242 -10.567089 0.236257 15.947751 17.818721 -2.022754 -4.701163 2.602423 1.184995 1.850099 -2.337715 11.264646 6.067835 9.113114 11.642265 -16.202153 -1.093235 -32.836422 3.181816 -37.120609 -14.147839 -11.716707 8.665295 2.328156 4.682155 -2.090006 22.441137 -0.839988 4.743004 12.894529 20.874054 -10.003587 -2.274530 -10.282215 -8.171389 6.084136 -6.655026 1.924754 1.971541 -0.326019 -11.516038 -13.562808 6.859844 -0.626006 -10.326201 -5.459531 -4.143318 11.726067 -14.970756 -5.452273 -17.235552 1.547827 -0.091002 -23.659776 -4.313690 -5.741761 9.620378 4.199405 -4.097069 -12.164482 2.799048 8.772340 -4.683242 -5.767883 -5.889501 14.700307 10.802314 -1.270478 3.127254 4.295472 8.074427 14.611811 13.734007 -5.096919 -4.642995 5.256126 -6.311443 -2.830313 -9.554604 0.187437 9.328700 -9.758304 0.036373 7.704725 -8.170140 -5.870176 7.484100 -12.207387 6.358324 47.377232 -4.121164 9.874529 5.198158 -15.414982 8.976357 -1.856716 -7.379120 5.721205 12.117724 13.694946 -19.854952 -8.967007 7.532363 19.938435 6.584313 -14.249325 -5.220495 0.511197 -1.906254 -4.004639 7.711401 0.851907 -0.420612 -6.539696 -2.847576 9.575351 24.531384 -6.732121 -13.824018 0.417586 10.880535 -2.340733 -14.219430 0.340879 -10.327112 -1.428179 5.739596 -0.738557 9.175921 16.297049 -35.956474 12.586418 -1.117869 -5.470845 8.783442 1.669451 -4.843867 -19.324516 6.881966 13.187600 13.160508 0.227256 2.605476 -3.569326 -16.429652 -0.579252 3.609614 8.058888 -11.764598 14.090239 -0.252876 -11.251901 -10.139101 -4.164718 -4.400200 -5.750860 -6.598102 6.737060 2.607248 -29.472955 17.911450 -2.323418 -5.636284 1.370707 -6.826880 10.996334 -16.061475 -17.785585 7.019382 -3.303623 -9.140740 -4.070679 -6.750370 9.139919 2.646629 1.522883 -11.466019 -18.882780 11.922416 -1.871193 11.933452 10.314867 4.723365 18.563485 -0.936812 -7.646563 -11.325821 -7.804284 8.370837 -0.769283 -7.368462 -9.782500 -7.384780 8.863699 21.427978 -3.778535 -2.860600 -5.055273 13.781699 -15.814760 -4.773625 5.492745 6.811376 -7.002161 6.017466 7.962700 -9.688216 -5.470889 -14.758683 0.152588 -2.954665 -10.969515 6.857174 -13.488306 -0.233329 11.530027 -5.471639 -5.959111 9.196630 1.662926 0.058419 -1.221110 14.331711 20.532690 -12.548553 3.244056 -15.180055 9.350826 -20.273075 -13.640187 -1.154040 -0.859347 -1.784682 -3.667480 -1.422935 7.346576 3.631092 -2.405257 -4.909211 0.589612 +-1.138573 -0.693521 0.974567 -2.313734 2.080431 1.039151 1.104057 -0.178299 -3.709677 -2.931894 0.957603 -5.398283 -4.272366 4.566174 -1.088786 1.334885 6.226972 0.868482 -1.042045 -2.215219 2.647878 -2.199099 5.951034 6.716442 -5.029940 0.513702 0.624376 2.485050 1.829903 1.368617 1.015233 -3.423426 1.171994 -2.003867 2.207535 -2.355185 -0.877945 0.549111 0.608708 -8.179554 -0.640553 3.265919 0.646172 0.229222 0.674902 4.662708 4.860365 3.535851 -1.771388 3.667889 3.184266 -1.131131 2.347746 0.107283 0.638027 -0.885116 1.392856 0.876532 -1.947781 0.768355 -0.901668 -3.977222 -0.132365 4.294890 5.878166 -0.962169 -1.978132 0.400815 0.956520 1.329970 1.328126 3.295744 2.015027 0.954651 4.093397 -3.472475 -0.317837 -8.997462 0.869060 -12.548792 -3.855835 -1.410720 5.744126 1.051247 0.630842 -1.755466 6.697896 -0.346483 -0.862858 4.406462 5.916280 -2.733104 -1.640462 -2.150476 -1.812168 1.668686 -2.580871 0.439083 3.063624 1.344939 -3.950485 -2.260418 1.613998 -0.515461 -2.702672 -1.006950 -1.082067 3.832754 -4.950498 -1.631302 -4.545458 1.444354 1.334237 -7.130450 -0.710289 -1.768835 1.361415 2.114932 -2.692780 -1.593919 1.638540 0.514596 -1.466966 -0.633289 -2.666127 4.872265 1.924736 0.934704 0.671882 2.805679 1.882721 4.152703 2.919382 -2.258937 -0.618842 1.943549 -1.743231 1.358966 -2.701587 -1.404414 3.932701 -3.553002 0.193633 0.158454 -2.815627 -1.743587 1.338322 -1.034707 0.638744 11.959786 -0.753193 4.362191 2.988909 -3.477210 3.513740 -0.675202 0.122969 1.988508 3.729662 2.584187 -4.386180 -3.087805 3.081530 6.468901 2.412352 -5.360346 -0.943841 1.202150 1.070690 -0.966590 2.562228 1.068534 0.764027 -2.181785 -0.331451 2.436497 7.451063 -2.475844 -3.246625 -0.087141 2.581304 -0.160816 -5.020483 0.152513 -2.571543 -0.317498 0.717368 0.861122 2.166571 5.200922 -9.704699 4.450490 -0.179958 -0.151528 3.803684 0.782511 -2.784405 -7.719086 -0.090418 2.326101 4.494903 1.109103 -0.669589 0.517289 -5.253997 0.117262 0.975380 1.623747 -2.893417 4.431529 -1.074753 -1.611727 -2.252930 -1.785785 -1.332908 -0.928435 -1.823123 3.016614 1.788480 -7.607064 3.882225 -0.514663 -2.708461 -0.720413 -0.565851 2.856306 -4.613816 -4.845254 1.601650 -2.489684 -5.242464 -3.234378 -1.799246 1.412808 0.727025 -0.628255 -2.737670 -5.327067 5.704530 -2.068572 4.826273 2.878365 -0.802851 5.345876 2.206451 -2.904928 -2.628190 -1.994096 1.397964 -1.972131 -2.026946 -1.725568 -1.426228 2.779458 5.053974 -0.206395 -1.111437 -1.208553 4.775341 -3.882255 -2.342331 2.250171 0.995157 -1.326761 3.778526 2.955975 -4.359715 0.235569 -4.591103 -1.174190 -1.498951 -2.459600 2.957542 -3.011934 0.759520 1.318303 -0.894380 -1.031343 2.170680 0.953500 -0.969982 -0.237249 6.302077 6.578411 -3.465515 1.219330 -5.487724 3.498872 -5.502781 -3.977527 -0.259413 1.275953 -2.031228 -0.681638 0.777316 2.457568 2.477456 -3.504129 -3.417547 2.033989 +-5.442233 20.186176 28.123777 -22.394627 39.648259 18.192216 12.540739 5.808442 -23.178832 -36.042578 -7.676291 -41.088327 -61.152284 40.225169 -12.744698 5.292741 56.835963 1.245130 1.500723 -25.377774 25.973631 -26.907802 64.678529 54.539604 -66.674121 11.435458 16.524247 34.450677 11.788873 42.884110 0.629996 -43.064798 8.087505 -2.608461 39.899904 -23.294699 -6.199132 -10.193084 -18.343721 -89.111117 -14.657962 38.773639 -7.465572 9.302787 12.607328 47.389558 66.944868 36.426165 -25.295953 32.310896 31.694991 -1.054750 28.106067 4.979973 0.084633 -5.643206 25.523005 -8.402354 -25.680065 11.500514 -10.226255 -57.352184 -0.074249 45.796808 63.367028 -16.698744 -15.090831 7.351388 -5.743137 12.138103 1.620840 40.657555 22.931215 19.757901 49.305470 -26.678706 -1.375132 -78.137586 6.802065 -124.826681 -49.251503 -45.714975 41.434265 26.748043 12.278421 -19.803602 80.266943 3.042670 9.656653 37.315607 63.004646 -32.029491 -8.934295 -37.831643 -16.040766 13.696769 -27.802122 -6.648127 15.653066 7.913098 -37.825558 -28.205243 21.201876 -10.296033 -30.407037 -8.596988 -28.319278 43.562956 -60.398476 -18.727018 -68.591813 5.317987 2.920642 -76.564809 -3.015323 -6.412981 21.066265 18.629691 1.029832 -16.784608 16.082824 25.511597 -13.895791 -10.752231 -38.496636 60.886504 28.717891 -7.062886 16.581354 29.657518 15.424229 35.780948 50.815768 -8.409087 -28.668328 24.830559 -18.105638 0.951690 -22.400526 3.183380 30.748482 -37.208169 -5.418494 10.692798 -20.877524 -13.323551 -11.232664 -33.841857 24.342709 115.467089 -14.157253 30.179826 11.165370 -45.560585 40.564768 -0.962589 -14.175367 22.362976 39.015459 35.137134 -46.467202 -30.269758 27.518310 59.395249 18.429404 -48.958444 -5.127504 1.628819 7.596052 -14.137797 23.647418 18.383576 3.435522 -21.342390 -3.200360 9.570380 81.357808 -24.996280 -49.651979 10.687374 21.514842 -10.904778 -46.313059 -1.318094 -17.612423 -17.773139 7.640874 0.450429 16.551119 52.405037 -99.931498 44.812425 -0.982436 -17.141995 40.168652 -12.529649 -6.201660 -69.161879 8.314102 35.896136 42.506521 6.921628 -4.806715 -12.779454 -52.871356 11.088472 7.147184 28.171942 -28.996916 46.839765 -13.024171 -31.326200 -33.520452 -34.416517 -12.327504 -5.257755 -25.158816 18.212206 21.155499 -93.489990 48.877960 -16.665395 -26.635216 5.314404 -0.533440 32.896980 -43.211178 -56.316034 18.941479 -22.659176 -55.963182 -34.005087 -19.124117 18.907573 5.348014 -13.165424 -32.534513 -59.555366 49.609531 -12.975705 34.000368 32.701435 13.084730 66.887009 31.772967 -41.262182 -27.321188 -28.927678 21.797944 -20.583144 -11.002772 -13.110491 -20.200212 27.971052 66.407264 -2.818818 3.139608 -22.044161 53.278561 -43.210991 -27.374376 29.559828 3.744385 -11.420207 35.713560 35.337195 -28.990783 -21.979036 -50.455459 1.372014 -10.725350 -27.451337 22.439286 -51.210822 -5.098204 34.065398 -12.011497 -28.783780 24.081679 2.242722 -11.511192 -23.045984 69.433940 70.648395 -47.824222 24.006716 -43.087624 34.478257 -59.871823 -29.566413 -12.179690 4.123949 0.841903 -0.327746 7.604346 20.260676 19.288257 -28.855995 -23.798223 -5.607323 +-5.814493 -5.339232 -2.760244 -7.703059 6.171028 9.769598 3.669768 -8.733664 -11.461003 -3.062566 5.298950 -16.903493 -7.940360 13.274183 -4.600161 10.079225 15.825456 0.514274 -6.279922 -4.477294 9.407718 0.292061 18.703348 19.897552 -11.119307 0.175533 -1.141201 4.762032 2.583807 -0.540027 4.053284 -8.297899 4.567454 -10.546971 -0.010517 -3.908742 -3.626457 4.425536 10.697588 -19.863243 -1.526666 5.995406 1.305784 0.179233 0.599732 5.382137 10.546350 10.325031 0.682278 10.669193 7.228214 -1.387709 6.848469 0.443888 3.666668 -0.310631 1.927299 -1.281800 -2.362255 -2.250680 -3.927790 -1.671506 0.254415 13.081080 15.350466 0.015952 -7.196688 3.656279 3.470752 3.595511 4.101473 11.040022 -0.577532 4.509943 7.726971 -13.063030 1.191257 -19.349456 2.757233 -19.740901 -9.245318 2.129269 10.003983 5.587608 7.014245 -1.564524 19.813642 -1.864040 -7.930159 12.702491 15.286051 -10.656376 -3.134357 -1.891435 -5.402751 -0.142467 -5.180901 4.598847 4.195014 6.851122 -11.997782 -6.242325 1.427950 1.077815 -7.188195 -6.487232 -0.410229 9.307189 -10.230638 -7.356278 -4.646039 8.776512 -0.517297 -20.415405 -6.881111 -7.598760 1.751233 3.229186 -10.460700 -9.430417 5.851501 1.230034 -3.120363 -4.604434 -2.307288 7.744202 8.563944 3.292136 -1.067530 8.660826 3.838083 19.291030 1.756426 -7.049638 1.478111 3.258135 -1.062269 7.385655 -4.514122 -3.176527 3.327615 -11.498835 2.164163 5.089070 -6.919722 -3.486922 2.467700 0.231144 -2.208628 37.884829 -3.244037 15.391782 12.585382 -10.858114 5.056570 -6.430120 3.307984 4.698282 7.798419 5.611397 -16.335947 -10.333037 12.315124 19.244642 6.611885 -13.318468 -0.671912 5.861262 2.635882 -3.908959 7.363896 2.121511 1.726721 -5.904563 -1.082094 8.034605 23.906458 -7.781704 -0.983682 2.371451 6.592370 0.864341 -11.170602 -2.166555 -10.161660 -0.707394 6.020925 4.896069 5.515003 14.343141 -17.607050 11.522634 -1.212485 1.256725 10.939871 5.662724 -11.058692 -13.036674 -4.471691 5.092843 10.094848 -1.181964 -1.182831 2.216310 -15.178949 0.753473 3.917948 2.084394 -9.048987 13.394213 -0.601808 -5.439658 -4.126089 1.752746 -3.886866 -4.682500 -4.528811 10.546734 2.109897 -14.590172 9.909135 3.370589 -6.918010 0.180295 -2.886791 12.138960 -9.809319 -11.708800 7.721427 -6.801385 -8.478336 -4.080571 -3.931803 3.506934 5.646920 3.416544 -11.706836 -10.344282 14.264416 -4.199804 16.149915 7.181700 -3.482649 8.626385 -4.857862 -8.464969 -6.394661 -10.234568 2.537080 1.464195 -8.266637 -5.348831 -3.408580 10.020973 10.052804 0.615893 -9.107340 -1.385669 12.799967 -10.498137 -1.173533 4.526881 4.364612 -9.273356 5.414363 6.799921 -9.630924 4.487957 -9.220410 -1.899012 -9.578847 -6.567372 10.256485 -2.965358 4.344391 -0.885776 -1.974986 1.244739 5.425059 5.604299 0.810724 4.419570 16.782822 9.176347 -2.681914 -1.594075 -16.313077 9.352357 -13.238632 -12.197587 2.273824 3.802782 -8.027080 -4.159930 -0.543299 10.654309 8.681690 -10.101999 -8.381058 6.106214 +-3.942715 -4.252351 -1.342457 -7.515281 3.861315 6.956550 2.530523 -6.365020 -10.019370 -3.056950 4.130661 -13.245897 -4.843330 10.520607 -3.595562 7.451570 12.499153 0.834300 -5.745569 -3.280407 7.322398 0.669400 13.654474 15.094385 -8.541206 0.621539 -1.692520 3.621057 3.219393 1.274167 3.462734 -6.479600 2.680980 -6.873614 0.669619 -3.947488 -3.157497 4.076828 7.576559 -15.852798 -0.224902 6.612998 3.107671 -0.592229 1.137888 3.181650 8.012709 7.818802 0.709121 7.389477 5.809702 0.499775 5.136327 0.080277 3.641987 0.589118 3.159907 -2.687440 -1.375034 -1.757285 -2.755405 -0.766678 0.714343 10.390739 11.333896 -0.101992 -5.548500 1.790504 3.848263 2.843672 3.937037 8.018343 -1.474807 2.910390 4.823270 -9.824020 2.510016 -13.259202 3.407250 -15.420289 -6.717746 2.360555 8.632873 6.388383 4.657402 -2.188005 14.755323 -3.250807 -6.011570 9.201167 10.940556 -6.937734 -2.143262 -1.550301 -4.659163 0.336792 -3.734110 1.857105 2.140241 5.597392 -8.891927 -3.384508 1.092816 1.243410 -5.759532 -2.876668 0.361449 7.027690 -9.017333 -5.191818 -2.064360 8.264883 0.013626 -15.165835 -5.187142 -7.454374 -0.312927 1.386507 -8.385738 -6.985486 4.538335 0.812093 -2.974681 -2.492118 -5.108556 6.238800 5.595394 2.863051 -1.620203 5.646475 2.787321 13.576770 0.399610 -6.247526 1.994212 2.696222 -0.394322 5.118601 -3.508632 -3.071005 2.319969 -8.413467 -0.102065 3.615776 -5.409369 -1.902360 0.326665 0.573432 -1.881546 30.316617 -2.890229 12.144118 9.893440 -7.911100 3.393573 -3.206755 2.278983 3.201053 5.504108 4.558264 -12.187829 -7.902171 9.059728 14.660514 5.390675 -8.535642 0.348105 4.416831 0.906536 -1.446090 5.673662 0.245931 1.314643 -5.946506 -1.620340 5.103250 18.329623 -4.145061 0.152669 1.097971 4.870257 -0.663772 -7.176422 -1.180303 -7.715258 0.527757 3.710739 2.770509 5.299779 11.022445 -13.627602 9.780707 -1.108733 0.388096 8.672216 3.346629 -8.054976 -10.619807 -4.526255 3.489291 8.932050 -2.439747 -0.331360 2.404657 -11.687101 0.163112 2.211169 1.241686 -7.409983 9.590170 0.922635 -3.951205 -2.435649 1.356578 -2.714231 -3.140326 -3.882298 7.922707 2.085239 -9.556150 7.608369 2.820229 -4.290079 -0.062533 -1.668350 8.176329 -7.690263 -7.860599 5.246925 -3.914161 -6.699661 -2.921674 -3.339662 3.680450 3.511316 2.641929 -9.275611 -7.724174 10.565683 -3.910086 12.659989 5.680650 -3.414009 5.323243 -1.771089 -3.951475 -4.527373 -7.474040 0.452621 0.869334 -5.863118 -3.301417 -3.261863 7.483643 7.231326 -0.085317 -6.930975 -0.304569 9.895370 -6.601888 -0.469929 2.799295 1.155547 -7.506964 4.005923 4.989442 -7.719500 3.720251 -7.508712 -1.800800 -6.932488 -4.184467 8.872946 -1.105027 3.881465 -0.776309 -1.346348 0.068464 3.764301 4.185071 -1.055157 4.202063 13.090932 5.677638 -0.459340 -0.476922 -12.193263 6.949552 -9.908857 -8.503402 0.842607 2.352645 -7.177909 -2.889853 -1.000549 9.058644 7.228942 -5.757338 -5.648666 5.546988 +-6.316162 14.562498 21.523303 -21.126607 28.818438 21.436835 9.058090 -1.542240 -24.173149 -25.705043 -3.233748 -43.402901 -44.478193 38.527235 -11.407718 7.030324 54.160115 5.126859 -4.928216 -16.314039 18.389950 -13.062212 55.069977 53.551468 -49.579806 8.992357 12.338375 23.985483 6.827083 31.658699 -1.633672 -40.943908 7.370678 -5.232246 22.637142 -19.396230 -8.867378 -7.186083 -4.536964 -77.629129 -7.844323 30.699104 -4.964945 1.600823 10.297243 27.429381 57.704922 30.301769 -12.619025 24.416315 22.720745 4.095832 20.799209 2.220444 6.802098 -1.208078 23.817437 -8.805861 -19.041685 6.616391 -7.956516 -35.334822 -4.833443 41.471588 50.573778 -6.437875 -16.073296 2.118230 0.087525 8.607974 0.787467 31.568776 15.457493 23.815733 31.062828 -23.007116 3.498493 -61.390481 7.038333 -90.136839 -39.860405 -26.926693 35.152822 25.933529 9.671941 -14.466563 64.350853 -3.395975 5.206776 30.286169 58.157167 -29.031170 -10.388258 -24.778808 -15.707778 12.469094 -20.457805 -0.657674 6.574293 6.399323 -34.801144 -26.906300 16.898520 -4.034713 -26.523420 -1.852140 -13.630316 35.255875 -47.607359 -16.650470 -47.641688 7.229423 3.322653 -65.322545 -12.492904 -7.626494 13.278872 17.583903 -13.072857 -24.869136 15.903298 17.696037 -12.538899 -9.416363 -30.414502 45.647670 21.597068 -2.761767 9.181304 21.241555 19.283672 37.783252 30.510208 -13.515593 -11.320079 16.642952 -13.264640 0.874613 -18.904721 -2.697691 12.967660 -31.432756 -0.854648 15.136338 -23.713154 -10.049928 -13.054347 -21.412131 14.088904 108.584397 -13.984501 31.388077 14.718892 -41.954087 29.063350 -5.895363 -13.566702 10.549258 29.931862 34.917045 -42.301574 -25.994059 26.406674 56.128675 19.922251 -37.227092 0.879938 3.006307 3.052260 -10.302808 25.788189 10.756353 3.482629 -21.279092 -6.025448 17.137392 73.810691 -19.424619 -41.712429 5.748602 16.131433 -1.056346 -33.919535 0.858351 -16.099296 -8.352473 10.939163 0.986150 18.046936 46.595934 -83.009694 40.978281 -0.509954 -15.935818 36.247121 -3.961239 -14.591324 -46.191268 4.359205 32.912254 39.526601 5.663611 -3.811377 -9.045435 -45.656561 1.420203 8.701284 21.286467 -27.213615 40.528582 -3.381149 -29.989404 -25.176119 -22.807049 -8.577562 -10.353638 -24.515856 20.569043 15.038319 -75.221345 45.364323 -3.119130 -19.077285 1.174737 -7.533970 26.410128 -40.143824 -47.801180 15.993559 -18.988568 -40.589677 -17.682278 -18.725044 16.391350 10.011745 -1.269935 -30.096707 -45.076103 40.938952 -6.613320 35.348591 28.016532 6.845843 46.611543 21.108299 -27.848948 -18.846699 -26.332588 20.793661 -12.368270 -13.428733 -11.254335 -20.009724 26.703029 53.827645 -5.003241 -8.365283 -21.109080 41.038967 -32.630532 -15.966124 21.023971 0.363399 -16.165878 21.499698 27.683299 -26.556909 -10.686376 -39.613638 -2.613230 -16.143362 -24.333006 19.007238 -36.324965 -1.623502 25.976212 -13.856205 -21.407953 18.921916 3.240821 -9.406360 -5.741328 52.411836 48.116304 -31.763462 21.309320 -41.408448 30.426962 -52.211709 -31.839458 -3.995521 0.994881 -9.985151 -7.682600 1.216226 18.639912 14.891418 -19.523212 -20.306493 3.773613 +-2.437442 -1.851282 0.355674 -3.554386 2.785811 3.053530 1.830511 -2.122831 -5.406926 -3.483538 1.948307 -7.833556 -5.282431 6.743837 -2.204562 3.380342 8.681132 1.214028 -2.058547 -2.780635 4.433128 -1.627915 9.332776 10.099983 -6.706102 0.214828 0.134092 3.490583 2.146546 1.202395 2.328886 -4.962198 2.189200 -3.986861 1.575018 -3.304989 -1.076092 1.916465 2.693758 -11.217718 -0.798748 4.135774 0.678988 0.128054 0.795959 3.826188 6.140126 5.364706 -1.297944 5.433025 4.220033 -0.597492 3.284302 0.418843 1.072137 -0.770713 1.000726 -0.967082 -2.166389 -0.049183 -1.599520 -4.082403 -0.042742 6.449493 8.266763 -0.537221 -2.838674 1.070765 1.094987 1.966150 2.147256 5.046509 1.229897 1.829567 5.040353 -5.753777 -0.344093 -11.561772 1.188934 -13.858073 -5.278651 -0.945074 6.865751 3.322160 2.394241 -1.410420 9.766326 -0.738715 -2.371556 6.788042 8.198305 -4.852705 -2.041039 -2.297644 -2.654764 1.552432 -3.623906 1.484883 1.974281 3.079333 -5.944548 -3.873695 1.662584 0.087783 -3.735975 -2.604256 -1.286071 5.351970 -7.057245 -3.286971 -4.783473 3.146384 0.713889 -10.158724 -2.301604 -3.416652 1.930646 2.423069 -4.327844 -3.444952 2.678787 0.943029 -1.576106 -1.838550 -2.965079 5.376849 3.374141 1.126672 0.251110 4.086187 1.818807 8.025162 2.727587 -3.339860 -0.298960 2.390930 -1.705857 2.590429 -3.418827 -1.762290 3.534777 -5.540437 0.314217 1.684153 -3.859151 -2.911891 0.985802 -0.972934 0.415996 17.876651 -0.934064 6.799399 5.658866 -5.371673 3.577550 -2.244144 0.991314 2.793922 4.833985 3.281811 -7.033393 -4.984011 4.998274 9.351867 3.420648 -6.489927 -1.085003 2.115177 1.852420 -1.660995 3.688497 1.417055 0.800243 -3.669290 -0.521820 3.865502 11.161124 -3.516932 -2.149156 0.618406 3.465278 -0.257267 -6.482447 -0.466938 -4.017680 -0.432560 2.429849 1.746204 2.751275 7.541966 -11.164438 6.200576 -0.304037 0.695932 4.898556 1.815614 -4.826770 -8.554361 -0.909373 3.135344 5.934427 0.379055 0.017299 1.121492 -7.876096 0.247865 1.571831 1.911984 -4.308216 6.726133 -0.800593 -2.928234 -3.188979 -0.957937 -2.017358 -2.167721 -2.309929 4.818854 2.438797 -8.878045 5.457327 -0.135210 -3.782542 -0.144708 -1.046839 5.726479 -6.188955 -6.779399 3.479146 -3.484250 -6.357821 -3.470661 -2.156106 2.166965 2.046807 -0.125200 -4.561450 -6.190175 7.646918 -2.265161 7.311425 3.806686 -1.234609 6.185130 0.555636 -4.044702 -3.549436 -3.794803 1.525624 -1.539053 -3.598789 -2.951961 -1.835074 4.648312 6.720266 -0.148386 -3.377530 -0.887281 7.260058 -5.592019 -2.147369 2.969571 2.129399 -3.033145 4.256340 4.023181 -6.056254 0.891384 -5.680774 -0.696762 -3.012753 -3.674871 4.767531 -3.245549 1.821777 1.025726 -0.814305 -0.813004 2.937494 2.369741 -0.634567 0.781055 9.095160 6.861944 -3.038208 0.768396 -8.025551 4.481790 -7.652952 -5.906622 0.110766 1.843199 -3.331656 -1.073347 0.117247 4.789969 4.298807 -4.455512 -4.306962 2.568939 +-2.868910 -2.097922 -0.524475 -4.715634 4.192145 3.759207 2.226523 -3.644652 -6.616514 -3.763376 2.470200 -8.710023 -5.317744 7.702188 -2.356128 5.101556 9.789808 0.725121 -2.325471 -3.411658 5.199271 -1.646966 10.696305 11.493995 -7.276883 0.686454 0.733043 3.148754 1.691457 0.995275 1.512850 -5.851786 2.813420 -5.795426 0.998906 -3.257789 -2.213617 2.077248 5.131218 -12.380218 -0.847383 3.342946 -0.606514 0.309689 0.703405 3.983308 7.015563 5.808793 -1.127776 6.974388 4.821703 -0.439076 3.348280 0.422747 1.854338 0.187492 1.402662 -0.092722 -1.898729 -0.035043 -2.199257 -2.936204 0.243805 7.351427 8.573946 -0.942454 -3.937254 2.215278 1.452956 1.846266 2.369145 6.077955 0.769669 1.930954 5.261359 -8.635136 -0.296454 -14.611034 1.089057 -15.258402 -6.480258 -0.099572 6.805896 2.404008 3.638249 -1.310313 11.187039 -0.699185 -3.236794 7.148535 9.294443 -6.028735 -2.006973 -1.609732 -3.044288 0.568656 -3.381983 1.412587 2.343247 2.862646 -6.903879 -4.426796 2.856815 0.238441 -4.277810 -4.244615 -0.545048 6.272937 -7.534627 -4.348192 -4.722102 4.460456 0.020575 -11.638525 -2.366678 -3.677097 3.272351 2.448611 -5.584808 -5.268456 3.155271 1.375033 -2.239256 -2.791867 -0.915060 5.722607 4.987523 1.754153 0.112368 4.203654 2.457200 10.861883 3.226938 -3.976913 0.118677 2.202383 -1.236336 3.698519 -3.172842 -1.980479 2.947883 -6.349425 1.534962 2.571511 -4.340589 -2.717921 4.001378 -0.853230 -0.773486 21.629205 -1.676377 8.349876 6.800944 -6.384785 2.527989 -3.014076 1.193154 3.034826 5.431117 3.638014 -9.175342 -5.696533 6.447857 10.908405 3.983724 -8.727703 -2.332985 2.585708 1.664412 -1.503128 4.030298 1.166066 2.000435 -4.054392 -0.657900 4.307998 14.036107 -4.501840 -2.057314 0.979109 4.158137 -0.055138 -8.256639 -1.138490 -5.916707 -0.412594 3.090718 2.370690 2.913213 8.612102 -13.817446 6.657974 -1.530411 -0.234657 5.718677 3.672023 -5.818481 -9.949242 -1.828235 3.316122 6.677899 0.115515 1.315043 1.240602 -8.599567 0.239470 1.763215 1.691105 -5.250750 7.550411 -0.393425 -3.683032 -2.693026 0.254698 -1.961259 -2.831808 -2.144134 5.696738 2.917898 -11.183367 6.019414 0.914773 -4.198557 0.447144 -1.101706 7.826474 -6.172683 -7.484129 4.617301 -4.273503 -5.854952 -2.848563 -2.340569 2.274902 2.138350 0.876367 -5.555832 -6.236333 8.156714 -2.234510 8.830853 4.480777 -1.667274 7.102983 -2.007285 -4.766723 -3.953609 -4.667972 2.435276 -0.788908 -4.177790 -3.592420 -2.213701 5.361281 7.043739 0.527647 -4.328240 -1.102965 7.799216 -7.454242 -0.473763 3.387094 4.287635 -4.436128 4.255116 4.717103 -6.116216 1.590068 -5.850424 -0.846514 -4.485563 -3.745032 5.658352 -2.653649 1.963867 0.587499 -1.017778 -0.542447 3.428638 2.656854 0.199708 1.118796 9.194570 9.054415 -3.437952 -0.841513 -8.849631 5.109355 -8.172309 -7.353393 0.720797 2.277696 -4.493876 -2.038481 -0.170294 6.039252 4.666743 -5.049250 -4.685051 3.096043 +-10.193254 -9.388980 -4.040817 -15.079607 9.560135 19.561482 5.720456 -18.620191 -18.655404 -3.577353 10.375490 -29.978891 -12.292267 22.062631 -9.543550 17.174609 25.147182 -1.387104 -12.994878 -7.578187 15.815503 6.221098 32.630399 33.377044 -18.792805 -0.667567 -2.518186 9.644683 6.783015 -4.116227 8.809169 -11.097689 6.900648 -17.333587 -2.348920 -3.522827 -5.550369 6.080753 19.070795 -31.177529 -2.430118 7.888818 1.151539 0.211843 0.938095 5.960832 17.088738 18.042577 3.654135 15.493419 12.836488 -0.606686 11.122839 0.408937 5.915622 -2.956334 5.339111 -5.397139 -2.118603 -6.291725 -5.559105 0.718874 -0.007625 23.798275 25.663357 2.205391 -12.129160 6.629402 8.049004 6.335173 6.967847 18.974642 -4.502402 11.424231 11.065474 -22.677456 5.328699 -28.147917 5.243562 -24.220960 -14.861811 5.455771 14.854358 11.108636 12.186361 -0.459160 32.627872 -1.808614 -14.884054 21.410415 25.180525 -17.394911 -4.690094 -1.851415 -9.419660 -0.357402 -8.647335 10.786050 3.170864 15.164250 -19.912345 -7.539637 -0.153994 2.500413 -12.257670 -9.092122 0.542655 14.753320 -15.263750 -11.215846 -2.908085 16.944176 -1.185255 -35.656961 -15.765655 -14.429994 4.818007 2.882212 -16.994925 -16.156988 8.889190 2.028811 -4.216540 -6.820201 -5.320903 9.988391 16.705664 6.147721 -3.684733 15.785792 7.397550 33.926754 -0.631481 -11.572655 3.374486 3.652117 -0.582966 13.017669 -5.789587 -3.842687 2.126917 -18.974348 4.670984 11.822700 -10.648720 -7.102150 0.380198 1.844993 -4.292315 67.460863 -5.154939 26.927311 23.182275 -18.035302 3.727030 -12.463948 5.921291 7.374877 9.710987 9.184126 -28.778907 -17.608523 21.812397 32.524045 10.712255 -21.375760 3.078044 11.528507 2.303868 -8.503964 12.361163 3.393764 1.543902 -9.208975 -2.363156 16.481308 38.685930 -11.779814 -1.406840 4.559674 9.231515 2.740896 -14.945575 -3.789030 -13.015880 -0.072525 12.792200 9.819853 9.778007 23.603199 -25.347108 18.690374 1.860169 3.517238 19.636673 9.562051 -20.407512 -15.235502 -7.821163 8.631823 14.338973 -4.582483 -4.507860 4.004077 -25.621857 1.245032 8.196737 2.049843 -14.760867 21.665139 1.688824 -8.010574 -7.455562 4.098686 -5.691618 -5.400067 -8.878461 18.519736 -1.517018 -22.138320 17.242072 6.501099 -11.784756 -0.507916 -9.258451 21.600156 -16.528292 -17.691425 12.843400 -11.549362 -13.697523 -6.213839 -5.977949 5.489720 11.589502 10.809029 -23.001883 -13.351782 22.385774 -7.650126 27.049875 11.707584 -5.288091 11.551249 -12.557624 -12.233407 -10.381896 -18.680982 5.264886 7.277250 -16.835386 -7.504847 -5.265451 16.994889 15.177242 -1.762223 -17.705071 -0.863482 19.586046 -17.735605 -2.767098 5.012235 7.518452 -19.030926 7.642865 9.288833 -14.888284 9.645839 -14.153103 -5.232806 -17.864693 -12.552507 18.002508 -1.583458 9.168853 -2.313599 -2.748723 3.077632 9.162874 9.009755 2.817000 10.725637 26.835676 13.532179 -1.392899 -4.351110 -29.321765 16.607512 -22.224581 -22.280607 6.894954 3.543608 -12.270560 -7.573935 -3.358423 19.352531 15.944949 -17.904180 -13.748404 12.470946 +-0.588735 -0.131957 1.302213 -1.770719 1.170525 0.093127 0.612137 0.042969 -1.951691 -2.975346 0.994251 -3.807195 -3.578679 2.644594 -1.211977 -0.428827 3.493399 -0.174784 -0.287741 -2.106384 0.870942 -0.291917 3.922518 4.390908 -3.786185 0.197252 0.593611 1.659140 1.796810 -0.056845 2.082851 -3.061088 0.673194 0.462930 1.781277 -0.483555 -0.525785 -0.415460 -0.571715 -4.886301 -0.706166 2.171928 -0.552993 0.425225 0.958781 3.918335 3.316089 2.249003 -1.446662 2.616526 2.685727 0.185676 1.153928 -0.220546 -0.210169 -2.668511 0.574404 -0.736438 -1.006322 0.788729 -0.289156 -2.366531 -0.881356 3.172998 3.835452 -0.784070 -1.162806 -0.427101 0.724680 1.235932 0.605834 2.357554 2.106039 1.516798 2.755778 -1.337935 -0.742789 -6.526071 0.840709 -9.140368 -2.847972 -0.947219 4.654420 1.345764 -0.873924 -1.367717 4.251655 0.986438 -0.583809 3.572432 3.886059 -0.560240 -0.932176 -0.923861 -1.210281 1.491572 -1.816431 1.381861 0.737386 1.765594 -2.541585 -0.659235 0.229628 -1.303544 -1.735070 -0.270365 -0.795785 2.111863 -3.524055 0.545222 -2.825218 1.462255 2.255293 -4.893934 -0.848998 -1.035498 2.200708 1.217094 -1.532695 0.718154 0.713293 -0.508639 -1.007039 0.783605 -3.111946 2.874022 1.712614 1.008645 0.331420 2.431729 1.726197 1.934990 1.202464 -1.310411 -0.687960 0.878341 -0.487177 0.930237 -1.420953 0.015366 3.020447 -1.456161 1.268705 -0.385472 -1.561085 -2.896141 -0.531426 -1.539538 0.406713 7.055879 -0.514259 3.002055 2.125320 -1.834725 0.856341 -0.959978 -0.044339 1.245887 2.258019 1.795350 -0.882323 -1.644791 2.265135 4.247512 1.226193 -3.215189 0.585840 1.895728 0.295347 -1.682767 2.181225 0.619122 0.287337 -1.047728 -0.248592 2.353364 3.462233 -0.476968 -2.126296 -0.789332 2.879087 1.178393 -1.088140 0.756832 0.214390 0.150823 1.923414 0.975877 1.582380 3.076376 -7.495074 2.373903 1.424100 0.911508 1.257376 0.812693 -2.171161 -4.763226 0.662088 1.536365 2.156617 0.833685 0.202840 0.294027 -3.283261 0.182063 0.845946 0.968081 -2.024161 2.681318 -0.377829 -0.695998 -1.753127 -1.788835 -0.994132 0.641018 -1.800701 1.834634 1.300282 -6.308771 2.614593 -0.852051 -2.025608 -1.924145 -1.467379 2.589734 -3.205692 -2.717133 0.406542 -2.671916 -4.854621 -2.281418 -1.490594 0.301944 -0.116656 0.969259 -1.677185 -2.413757 4.159942 -1.110527 3.010518 1.810690 -0.324463 4.106159 0.126114 -1.521057 -1.157033 -1.971517 3.142112 -1.167757 -1.597309 1.055258 -0.814440 0.892789 3.020710 -1.108906 -1.409491 -0.281896 2.349776 -2.538650 -1.721887 0.836131 1.157269 -0.475851 3.510166 1.371419 -2.513737 0.582262 -3.658759 -0.715276 -1.135502 -1.777700 1.848790 -1.608443 0.533042 0.939587 -0.310378 -1.272833 1.493803 0.200133 -0.786418 0.175780 3.429710 5.478794 -2.439836 1.302432 -3.991235 2.347779 -3.491374 -3.261453 -0.013448 -0.497523 -0.270756 -0.690641 -1.233818 1.299525 1.906281 -2.236127 -2.751266 2.868741 +-7.508415 -7.704157 -3.302787 -10.311244 6.185433 12.042324 3.922306 -12.672320 -14.117755 -3.374100 7.283788 -20.573055 -7.496072 15.605232 -6.409253 12.767247 17.839542 -0.052819 -9.074701 -5.367064 12.216447 2.702084 22.096024 23.020949 -12.323859 -0.587461 -2.572731 6.617553 4.665255 -2.624375 6.938660 -7.694069 4.499128 -13.192490 -1.724501 -3.508027 -3.830526 6.471941 14.107339 -21.764694 -1.273132 6.278060 2.485845 -0.225568 0.395849 2.024067 10.743943 12.304551 2.655865 11.277435 9.043285 -0.163222 7.889383 0.397784 4.135046 -0.453658 3.002863 -4.998154 -1.448702 -4.062772 -4.511383 0.499030 1.151421 16.081613 17.546920 1.470269 -8.509683 4.929841 5.463633 4.685773 5.915710 12.899700 -3.924041 6.065002 7.822485 -17.135743 2.995475 -21.197046 3.996372 -16.720327 -10.042174 4.511702 10.390175 8.924879 8.840019 0.898560 22.551015 -3.157774 -10.944557 15.538238 16.873949 -11.830844 -3.225635 -1.476793 -7.166014 -0.576365 -5.996975 6.146258 1.010035 11.410851 -13.626194 -6.366860 0.664123 2.200215 -8.248672 -7.335239 0.442202 10.599123 -11.228860 -9.074966 -1.901227 12.848358 -1.131769 -23.246266 -10.236696 -11.084382 2.087813 2.408993 -12.573203 -11.629618 6.742541 1.195032 -3.114943 -5.165278 -3.393173 6.330129 10.382444 4.338510 -3.110504 10.272615 4.076690 23.520060 -0.341012 -8.639801 2.858225 3.119221 -0.233701 9.260426 -4.558209 -3.778968 1.421566 -12.745854 1.592787 7.677620 -7.602313 -5.591494 0.806589 1.187045 -3.405489 44.706230 -3.226564 18.167968 16.537696 -11.945965 3.345016 -7.931289 5.006451 5.184141 7.210796 6.133668 -19.764475 -12.887153 15.134455 22.108400 7.695589 -13.530808 -0.168194 7.852547 2.692189 -3.900568 8.370871 2.251650 1.331491 -7.442224 -1.646224 10.040823 27.367590 -7.961708 1.262104 3.462772 6.293543 0.608389 -12.260375 -2.940901 -10.901378 -0.228004 8.302945 6.445734 6.381107 16.704489 -16.927218 13.310784 -0.212033 3.067076 12.635518 6.614285 -13.789737 -12.163646 -6.633057 5.180832 10.861793 -3.401713 -1.829726 3.343921 -17.869857 0.975650 4.890364 1.619240 -10.436499 15.317226 0.323788 -5.613105 -4.631914 4.326883 -4.658004 -4.696976 -5.134756 12.905262 0.894774 -12.275995 11.398445 4.496635 -7.136490 0.590407 -4.694048 15.670493 -10.631158 -12.085202 9.702151 -7.714534 -8.869884 -4.335537 -3.852537 4.337042 7.957908 5.613168 -14.955648 -9.133484 15.280523 -5.289683 19.172971 7.890193 -4.737025 7.004763 -7.128304 -7.803097 -7.169797 -11.270368 1.120612 4.386854 -10.819126 -7.994460 -3.389826 12.086453 10.278596 -0.420582 -12.439533 -0.437087 14.700259 -12.518220 -1.689196 3.870176 4.244565 -12.935023 5.615874 6.845091 -11.019729 6.693587 -9.922565 -1.829422 -12.234072 -7.716443 12.877405 -0.814580 6.272496 -2.232092 -1.853083 2.523084 6.007687 7.638091 1.496276 6.776129 19.448015 8.260058 0.291469 -3.372065 -19.753669 10.467297 -14.939752 -14.502171 3.666960 4.304959 -10.108159 -4.961484 -1.966009 14.301834 11.580440 -10.915027 -9.391087 8.080645 +-5.845689 -4.196529 -2.957830 -8.679208 7.456344 11.080527 3.794445 -8.761115 -12.285987 -5.302636 5.700564 -16.827104 -9.685426 14.881604 -5.298059 10.126955 18.223538 0.020091 -5.637536 -6.470026 11.826400 0.800424 21.860125 22.549334 -15.163175 0.675982 3.250903 5.106380 5.799502 -0.300991 5.124888 -11.306723 6.277123 -12.139350 0.164528 -6.031486 -3.598805 3.289036 11.926660 -23.226638 -1.888869 4.421539 -2.053251 0.530958 0.549950 7.827921 13.237326 12.188200 -2.881904 13.557941 11.104069 1.013103 5.321356 0.379462 2.199618 -1.182698 1.284946 0.374308 -1.398609 -2.359262 -3.336322 -3.379023 -0.359480 15.586680 18.400353 -1.538583 -7.277860 5.354597 3.185974 4.072993 4.223012 12.543807 1.623127 5.340623 11.012385 -16.262268 -1.980681 -27.866025 2.108425 -29.446260 -10.701312 0.475470 11.446895 1.791619 7.735529 0.446215 22.501758 -1.269020 -7.446208 16.711614 17.629393 -11.745503 -3.307466 -2.701522 -6.923479 1.875448 -7.366989 6.134388 4.013737 5.841113 -13.351718 -10.374519 1.699902 1.051071 -9.019164 -10.036699 -1.356088 10.112220 -14.352699 -7.720590 -7.263963 8.824247 -0.693060 -24.072548 -10.297216 -8.629927 8.328358 3.396625 -10.089498 -10.786073 5.299489 2.847089 -3.402088 -6.928887 2.328642 7.764222 11.359514 5.028517 -0.399375 7.725831 5.488321 22.950186 5.812567 -7.742178 0.142080 3.344229 -1.270164 7.608337 -6.613081 -2.474843 6.354817 -12.333861 5.401564 7.305231 -7.871722 -7.292393 8.697665 -2.986096 -1.337408 45.272463 -2.565681 16.862783 14.434697 -13.100187 1.675099 -8.207010 2.161563 7.208726 9.763006 7.527663 -17.027110 -10.956020 12.941850 21.636588 7.499560 -17.322750 -2.136712 6.720052 2.879742 -4.791633 7.705240 1.947222 2.108981 -7.575222 -1.443466 10.541277 25.962318 -8.962256 -2.864614 1.906438 11.051180 -0.477245 -12.056856 -1.904920 -11.266762 0.037619 10.377278 4.345212 6.998647 16.397052 -25.758699 12.063527 -1.157852 1.471283 8.454750 8.871414 -12.693786 -14.171734 -1.823295 6.298856 11.248303 -0.480312 2.426826 2.987428 -17.694093 0.627422 4.675419 2.346614 -10.556497 15.207953 1.120641 -6.819985 -6.379232 3.294864 -3.343319 -5.227866 -4.122368 11.812204 1.193591 -23.036656 11.907885 1.319295 -8.698988 -0.205469 -4.447092 16.227203 -13.081525 -14.594460 9.750994 -7.414923 -9.763718 -4.482861 -4.515445 5.416558 7.341956 6.203308 -12.774469 -13.958388 15.327611 -3.885099 16.992447 8.745205 -2.765806 13.399148 -12.845839 -8.267054 -10.539311 -9.838734 6.147094 1.280948 -9.926174 -7.363446 -4.184596 11.166586 13.395837 -0.893433 -10.277407 -1.810490 14.450957 -15.764011 -1.007320 4.889329 13.138398 -10.292049 8.183618 7.462368 -11.536560 4.247229 -10.678232 -1.585317 -9.206182 -8.513121 12.177802 -4.407961 5.295399 1.223578 -1.295819 0.408607 7.304594 5.189005 1.422222 3.581810 16.806306 16.956144 -6.681822 -2.436407 -18.568619 10.243286 -16.775830 -16.268575 3.049771 1.485635 -7.909779 -4.345457 -2.838007 12.508411 9.663207 -9.386530 -9.040300 6.964432 +-3.810554 -3.184225 0.125354 -6.737215 4.481366 5.077945 2.564985 -4.401617 -9.574041 -5.162974 3.029209 -12.375862 -6.514968 10.694981 -3.097911 6.439133 13.371827 1.490467 -4.142363 -3.828362 7.472980 -2.523983 13.499585 15.202634 -9.222519 0.788868 0.283339 4.922606 2.509140 2.417351 3.721737 -7.748096 1.937388 -6.693325 2.362234 -4.821915 -2.973070 3.906349 6.050494 -17.397460 -0.841502 6.893415 2.718084 -0.258179 1.146899 2.682713 8.908575 7.956563 -1.056963 8.128011 6.532951 -0.134464 5.278311 0.170800 2.893062 0.670469 2.577409 -1.931056 -2.168883 0.004930 -2.979456 -3.347637 1.122561 10.280579 12.159126 -0.836249 -5.347435 1.604172 2.641862 3.405815 3.212411 8.237205 -0.999171 2.411694 6.390088 -11.102539 0.699033 -18.385974 3.449937 -18.902394 -8.242279 0.398380 9.266586 6.653816 4.362309 -0.793019 15.425067 -3.053323 -4.663081 9.714449 11.974987 -6.444053 -2.439903 -2.826891 -5.227082 1.455080 -4.306601 0.989270 2.491633 5.446347 -8.990288 -5.115426 2.690507 0.660692 -5.874749 -3.817501 -0.890985 8.500851 -9.816697 -6.032905 -5.359230 7.317238 0.380005 -15.615123 -3.894045 -6.558927 0.407648 3.053694 -8.100632 -6.819887 4.864793 1.251454 -3.191033 -2.775335 -4.346947 7.359995 5.089415 2.103844 -0.596757 5.562791 2.764849 12.559877 3.508614 -5.873283 0.866468 3.628291 -1.526961 4.215504 -4.586627 -3.126154 2.756903 -8.497868 0.180011 3.111984 -5.881553 -3.839892 0.872483 -1.466107 -0.739766 29.735429 -2.799915 11.312093 9.082727 -8.152085 5.828218 -2.397708 1.484768 3.643738 7.054912 5.422232 -11.729138 -7.730427 8.616863 15.014697 5.531961 -9.079038 -3.099261 3.694098 1.666334 -0.888604 6.259386 1.090422 1.306688 -5.785129 -1.372345 4.998903 17.933238 -4.575134 -3.198029 1.020860 5.925059 -1.149274 -10.393001 -0.785091 -9.268348 -0.391122 3.495442 1.971385 4.752579 11.460948 -17.590721 10.012219 -0.959770 0.339510 8.720083 3.003242 -7.211596 -14.525727 -3.069621 4.297492 9.731280 -1.389769 -0.060723 1.560177 -12.094789 0.337284 2.106545 2.535212 -7.740771 10.686916 -1.407853 -4.571975 -3.545264 0.369150 -3.479800 -4.184660 -3.714991 7.546894 3.880575 -11.375258 8.257061 1.350741 -4.520686 0.628005 -1.212779 8.952593 -8.004546 -9.509561 5.580384 -4.370925 -7.479918 -3.863581 -3.802690 3.994715 3.596535 0.635207 -7.394541 -8.556031 10.248918 -3.600574 12.506825 5.963356 -2.752233 7.620861 0.804086 -5.290825 -4.907345 -5.662642 1.073481 -0.831915 -5.143267 -7.157424 -3.408063 7.406186 9.054016 0.335156 -5.719209 -1.942518 11.135787 -8.027440 -1.603952 3.775135 0.207967 -5.961443 5.061920 5.811382 -8.421850 2.239307 -8.776892 -0.003800 -5.948164 -4.530102 7.928394 -3.334274 2.593064 0.501299 -2.154314 -0.588456 4.113848 4.694704 -0.658339 2.065913 13.324341 7.711578 -2.656034 0.317947 -12.036556 6.420488 -10.988720 -8.340140 -0.404846 3.524806 -6.452348 -2.596778 -0.444844 8.001738 6.375571 -5.406023 -5.977793 4.305825 +-13.840781 42.761899 47.142613 -55.769771 77.293073 71.482503 20.916932 -14.680027 -54.823487 -52.896631 -8.462227 -111.374266 -102.624761 86.832373 -25.403302 22.761097 127.916638 0.927751 -14.316882 -33.431434 44.468340 -10.620398 133.929305 130.418170 -116.775942 25.655478 28.317399 48.914822 8.568434 72.484307 -18.425230 -104.755396 18.408375 -15.205255 44.254228 -34.702816 -27.032717 -25.381505 6.703806 -175.790752 -17.034306 63.673472 -19.891445 4.335570 20.112096 47.008136 148.504656 69.523133 -27.386981 49.672487 57.055466 14.293339 45.910876 6.009177 22.205466 -0.357380 59.650867 -16.181865 -37.171155 4.926771 -20.005901 -62.460936 -16.586053 98.180815 114.843408 -8.365967 -44.015418 6.278856 2.768169 12.905612 -3.435622 79.612775 39.890072 63.196501 70.318977 -52.843173 12.909356 -139.424779 17.002115 -185.718271 -95.583335 -59.318862 68.931012 58.849910 35.539419 -39.366146 153.451724 -14.197454 11.301869 62.226037 140.129590 -78.273894 -20.456071 -53.168546 -41.093798 20.702922 -41.269299 8.477513 5.287241 6.926358 -83.928133 -67.563349 41.239063 -8.811238 -63.140723 -9.587462 -24.440068 74.821212 -99.685100 -36.368458 -104.663555 22.031111 5.253009 -155.544575 -45.037269 -18.938263 24.412255 34.058938 -38.169542 -74.002924 35.633497 41.376729 -36.757961 -31.160410 -61.487922 103.110825 67.543326 -3.885519 21.504897 43.748889 54.091551 105.702555 64.694184 -33.330579 -22.350205 28.173722 -22.306719 3.290044 -39.647650 -1.149044 18.847481 -72.219358 1.507851 48.234315 -53.558664 -11.622432 -26.089781 -50.934155 26.764625 277.388214 -39.297135 78.467972 37.932008 -102.189028 67.642947 -20.720008 -36.776031 21.917742 65.253277 87.617187 -113.685616 -62.936427 72.775829 133.826579 44.708938 -94.172207 12.066730 15.341122 4.422009 -33.330151 59.867411 19.187386 15.557370 -48.933777 -15.161739 52.466120 185.867472 -48.241423 -104.077474 20.827026 39.178796 8.386018 -68.683748 -4.722710 -45.751502 -17.131002 38.323812 5.838351 48.989174 111.561348 -195.299265 90.516679 0.312645 -46.645812 94.939932 0.377400 -38.766457 -79.485003 11.906624 81.444724 88.691432 14.242466 -5.227760 -29.000822 -107.071221 1.247429 24.442116 44.899178 -71.403152 94.466130 0.456683 -78.173243 -56.384227 -58.497188 -23.235401 -27.266189 -66.038038 49.770798 26.062971 -182.634741 111.145752 8.567675 -41.578417 2.834592 -35.046138 67.987298 -89.048026 -109.473051 42.484271 -48.736401 -81.760195 -25.380095 -39.596683 35.236515 30.340903 17.682737 -86.526989 -112.559413 100.305496 -4.934256 92.540402 67.365299 20.401129 96.549504 36.667843 -64.327413 -48.550170 -71.730692 60.888127 -12.574980 -45.232964 -29.848357 -52.325257 63.906028 124.647253 -15.638782 -23.379304 -58.505411 86.607099 -83.921718 -24.255668 48.927836 11.882636 -54.065666 36.644150 64.719264 -50.732751 -22.436463 -90.820350 -11.185656 -47.386373 -67.064182 43.513119 -78.234632 -1.115920 64.658692 -39.500661 -47.457430 45.313864 4.137733 -19.589670 -7.407165 117.369858 104.616160 -67.097734 44.423050 -103.359629 73.522716 -124.863824 -85.316129 4.682816 -12.155172 -33.987410 -29.370848 0.009006 49.195539 27.566002 -38.260471 -45.590688 11.478217 +-2.165229 -1.899006 -0.189611 -2.948132 2.645197 3.094477 1.675235 -2.431678 -5.054569 -2.465574 2.002082 -6.918917 -3.980997 5.845534 -1.758559 3.794996 7.248405 0.840064 -2.144685 -2.150481 3.835066 -1.106862 7.941524 8.599381 -5.283093 0.409667 -0.192400 2.011221 1.467423 1.030276 1.325710 -4.231004 2.331545 -3.890742 0.859782 -2.521500 -1.461397 1.805662 3.454040 -9.291159 -0.538630 3.364304 0.845617 -0.000230 0.550026 3.452809 4.998037 4.460646 -0.500706 5.041990 3.351858 -0.710164 2.881877 0.321834 1.444410 -0.118854 1.148263 -0.609419 -1.725375 -0.268314 -1.633352 -2.629659 -0.085418 5.425000 6.878562 -0.685678 -2.702754 1.103025 1.088040 1.628952 1.971731 4.397271 0.903946 1.234114 3.869090 -5.191816 0.019589 -9.257361 0.812200 -11.440150 -4.430977 0.043482 5.511463 2.523813 2.503630 -1.353667 8.432776 -0.946743 -2.662588 4.997984 6.853488 -4.558254 -1.647479 -1.214400 -2.002357 0.609574 -2.819032 1.198284 2.125542 2.002464 -5.185772 -3.041163 1.601498 0.240174 -3.154219 -2.340648 -0.584718 4.411407 -5.675094 -3.147583 -3.441338 2.969771 0.288464 -8.700226 -1.481061 -2.837963 1.067749 2.104140 -4.195846 -3.448943 2.534844 0.649684 -1.497140 -2.025086 -2.019118 4.531827 3.007266 1.477216 0.138940 3.293920 1.669169 7.413186 2.184159 -3.056748 0.218152 1.708529 -1.024558 2.945529 -2.472181 -1.718420 2.350115 -4.874101 0.493322 1.547908 -3.292165 -1.518430 1.238173 -0.203796 -0.398175 14.989707 -1.243780 6.335149 4.967008 -4.716746 3.023827 -2.253155 1.015421 2.212780 3.992230 2.649355 -6.351275 -4.293128 4.733175 8.180998 3.051881 -5.998965 -0.862863 1.981902 1.536096 -1.318250 3.212558 1.082480 1.260655 -3.279099 -0.476399 2.947080 10.233071 -3.350833 -1.271275 0.694844 2.589123 -0.006535 -5.565227 -0.704355 -4.102589 -0.251041 1.995037 1.557944 2.254839 6.392538 -9.083449 5.328795 -1.029594 -0.004777 4.694038 1.989245 -4.392944 -6.958127 -1.408117 2.355053 5.077096 0.244445 0.121987 1.113981 -6.634737 0.160333 1.105456 1.218361 -3.836778 5.633194 -0.319479 -2.533707 -2.107036 -0.330049 -1.336756 -2.232246 -1.899655 4.307779 2.287299 -7.537846 4.367866 0.686031 -3.212977 0.015827 -0.516263 4.934385 -4.679289 -5.415865 3.018966 -3.071045 -4.696261 -2.615104 -1.790951 1.669955 1.651799 0.333761 -4.089739 -5.337684 6.424860 -1.844451 6.590301 3.261711 -1.410031 4.822130 0.026194 -3.538896 -2.919496 -3.538863 1.124497 -1.118611 -2.988497 -2.337768 -1.711306 4.191915 5.172390 0.360094 -3.003812 -0.996345 5.855441 -5.009752 -1.003235 2.661588 2.156846 -2.998927 3.253401 3.517432 -4.727168 1.229668 -4.442098 -0.836177 -3.216131 -2.741668 4.364198 -2.103633 1.655053 0.218292 -0.715655 -0.374068 2.361475 1.999943 -0.503916 0.808438 7.576100 5.617556 -2.326879 0.239835 -6.661821 3.902517 -6.101994 -5.046988 0.442504 1.889876 -3.620776 -1.350962 0.191475 4.299218 3.519017 -4.000062 -3.716862 2.390537 +-5.783068 -5.477439 -2.030415 -8.674622 5.390858 10.210381 3.293878 -10.236753 -10.787114 -2.543470 5.937551 -17.299226 -7.000982 12.496195 -5.369556 9.542606 14.169804 -0.626057 -7.196533 -4.296529 8.668086 3.076632 18.270843 18.666425 -10.290881 -0.365638 -2.204450 5.810015 3.411257 -2.092485 5.318314 -6.527889 3.846569 -9.463543 -1.428898 -1.810067 -3.106512 3.820322 10.239329 -17.366630 -1.267384 5.084501 0.668078 0.002279 0.490321 2.699267 9.490402 10.014029 2.536361 8.836870 6.869193 -0.466294 6.397567 0.386175 3.828400 -1.713559 2.785419 -4.319516 -1.644704 -3.402129 -3.378135 -0.014309 -0.143968 13.170404 14.111303 1.343593 -6.859205 3.540223 4.019151 3.552602 4.326256 10.458579 -2.614849 6.137765 6.196274 -12.356326 3.236493 -15.062695 2.859483 -13.519289 -8.455271 3.257428 8.964792 7.104523 6.558796 -0.431655 18.181793 -1.316245 -8.512109 12.222126 14.201279 -9.581710 -2.826111 -0.947897 -5.055568 -0.317339 -4.789385 5.706886 1.247389 9.014518 -11.215755 -3.670822 0.267664 1.276718 -6.707414 -4.989125 0.446324 8.387255 -9.034441 -6.268930 -1.706835 9.811551 -0.261193 -19.410508 -8.996207 -7.802460 2.677440 1.727344 -9.831698 -8.669042 5.285511 0.841473 -2.289535 -3.366902 -3.818108 5.440540 8.845360 3.580092 -2.062894 9.355499 4.043841 19.085083 -0.912254 -6.384241 2.098483 2.054231 -0.022544 7.521998 -2.745116 -2.434567 0.832918 -10.309849 1.838233 6.172886 -6.080415 -4.219793 -0.795022 1.384466 -2.523457 37.151164 -2.815797 14.925314 13.097981 -9.862183 1.852724 -7.046495 3.570783 3.768201 5.382727 4.988053 -15.518372 -10.110375 12.434011 18.061962 6.092657 -11.522913 2.063431 6.503364 1.748503 -4.395477 6.876659 1.894480 1.160282 -5.310500 -1.297274 8.944949 21.815036 -6.358385 -0.456119 2.786981 4.718901 1.751619 -8.227487 -2.126278 -6.606059 -0.056130 6.702362 5.535265 5.262847 13.406251 -13.764626 10.612798 0.903012 2.219350 10.874883 5.185474 -11.360640 -9.132091 -5.110172 4.780909 8.284881 -2.488062 -2.069304 2.213609 -14.258526 0.661672 4.448165 1.216645 -8.095865 12.093522 0.637931 -4.541265 -4.056364 2.027670 -3.507369 -2.399387 -4.989129 10.363395 -0.018065 -11.964667 9.625493 3.959751 -6.318158 -0.457278 -4.708469 12.344413 -9.252437 -10.031868 7.142226 -7.006663 -8.520336 -3.310400 -3.272811 2.742685 6.130973 5.148340 -12.592757 -6.518079 13.199677 -4.118114 15.307242 6.474650 -3.212374 6.404751 -6.440150 -6.975492 -4.971868 -10.564158 2.754658 3.421452 -9.139507 -3.562856 -2.890387 9.429873 8.332669 -0.642366 -10.125940 -0.037424 11.116182 -9.740035 -1.765503 3.146866 3.738646 -10.550133 4.712144 5.503008 -8.445412 5.484894 -8.131463 -2.945434 -10.195760 -6.848345 10.022762 -0.748769 5.087472 -1.285629 -1.559450 1.488670 4.966558 5.143040 1.347167 6.010452 15.416638 7.622528 -0.402698 -2.280910 -16.326505 8.937422 -12.203479 -12.350999 3.719608 2.504675 -7.069157 -4.258980 -1.850402 10.862988 9.327082 -10.042112 -7.833114 7.178578 +-5.607244 -5.464736 -1.769533 -7.885806 5.226282 8.804695 3.303915 -9.463914 -10.443274 -2.375861 5.255639 -16.333559 -6.402772 12.075433 -4.660288 9.629816 14.049771 0.030919 -6.579223 -4.210669 8.419397 1.962421 17.104515 17.801375 -9.278215 -0.325932 -2.629091 4.709515 2.591981 -2.057200 4.564875 -6.337427 3.593703 -9.333199 -0.760739 -1.989248 -3.084428 4.439213 10.498925 -16.879525 -1.053230 5.007927 2.133393 -0.238142 0.452495 2.253133 8.929366 9.437866 2.596716 8.305551 6.219834 -0.819326 6.485294 0.516272 3.743833 -0.509454 2.490366 -4.233570 -1.902602 -2.562180 -3.584014 0.411415 0.426848 12.173229 13.458008 1.325738 -6.747083 3.416730 4.262169 3.402659 4.102623 9.872589 -2.052866 5.004345 5.679255 -12.773183 2.316962 -16.069563 2.810236 -12.927459 -8.422838 3.069533 8.155267 6.840533 6.620165 -0.616359 17.289951 -1.690146 -8.002207 10.721041 13.584056 -9.502873 -2.807824 -1.326655 -4.756594 -0.725107 -4.333312 4.987487 1.535586 8.104991 -10.789948 -4.507571 1.220732 1.241366 -6.183072 -5.164939 0.665701 8.471196 -7.485120 -6.832186 -2.083047 9.551692 -0.636841 -17.759248 -5.887093 -7.758102 0.786859 2.295650 -9.772630 -8.843248 5.332942 0.703488 -3.009802 -3.753928 -4.398718 5.932186 8.096058 2.919075 -2.051921 8.650086 3.364699 17.799590 -0.730919 -6.656291 2.219903 2.349356 -0.378461 6.958908 -3.485769 -3.009105 1.399948 -9.670912 0.709360 5.250796 -5.974979 -3.341526 -0.118691 1.200372 -2.380747 33.018955 -2.970778 13.753809 12.012619 -9.313632 4.056960 -6.229430 3.597873 3.230902 5.917206 4.672832 -15.544031 -10.033664 11.741100 17.087939 5.958485 -10.548700 0.084522 5.640988 1.850204 -3.757591 6.667482 2.078261 1.036420 -5.224730 -1.120040 7.623542 21.540895 -6.367816 0.539638 2.593684 4.596015 1.781898 -9.435148 -2.394817 -7.964563 -0.469470 5.373939 5.433849 5.034197 12.885490 -13.296614 10.378076 -0.259775 1.842031 10.648174 4.604955 -10.525223 -9.850685 -5.006753 4.462336 8.525290 -2.051512 -1.665849 1.961939 -13.562812 0.743771 3.402976 1.533969 -7.783412 11.459125 -0.447127 -4.629439 -3.325617 2.254956 -3.953156 -3.632413 -4.294856 9.752718 2.131626 -9.925896 9.048387 3.786157 -5.397079 0.488731 -3.988177 11.863083 -8.028869 -9.141447 6.890522 -6.415179 -6.907497 -3.363086 -3.062325 2.845975 4.731342 4.387873 -11.353296 -6.937264 12.415674 -3.805083 14.941202 6.114329 -3.393386 5.306531 -3.867223 -7.019729 -4.528957 -9.953913 1.163539 3.323985 -8.294563 -4.550221 -2.812558 9.237607 7.964151 -0.113296 -9.322404 -0.774137 10.821989 -9.904153 -1.248420 3.494874 2.094295 -9.534497 3.992667 5.662099 -8.323079 4.789521 -7.710022 -1.755097 -9.586480 -6.133748 9.117318 -1.058276 4.332752 -1.860047 -1.856803 1.844967 4.573237 5.475350 0.901847 5.092906 15.209658 6.347535 0.005687 -2.193004 -15.190429 8.323847 -11.346466 -10.983345 2.877429 3.274597 -7.935469 -3.914442 -0.983895 10.218025 8.189885 -8.736961 -7.803610 6.000039 +-4.761825 10.592931 12.201439 -18.418137 19.394035 29.431056 4.685923 -11.362969 -15.088607 -6.667612 0.946503 -28.454400 -20.517444 23.588803 -8.152906 7.326400 30.578857 -3.031970 -9.187320 -5.034185 13.838907 6.778789 33.505468 33.265531 -27.653691 5.458983 9.264384 9.367640 2.261486 17.926161 -8.165124 -25.945122 2.905987 -5.879096 4.568930 -6.043797 -8.573278 -8.721130 9.600864 -40.218991 -2.670046 12.259261 -11.275049 -2.116215 4.008853 2.268909 37.254526 17.493412 -3.716758 7.179305 14.261318 7.898179 6.878225 -0.304020 10.318297 1.766050 19.425962 1.803946 -3.684574 -3.777331 -5.130490 -2.558970 -4.552021 27.589938 26.441999 2.080133 -11.612773 0.912471 2.924333 1.821189 -2.644929 19.484959 5.974007 21.354350 13.425814 -14.377443 6.856457 -30.407228 6.139320 -27.393457 -20.975649 -7.627632 9.953614 11.935552 12.231597 -9.472108 36.888855 -6.037161 -1.277569 15.371055 35.469885 -20.679268 -3.368527 -10.231225 -15.582149 1.976808 -7.883018 6.582377 -5.315330 -1.187584 -21.872173 -18.216209 5.519542 2.575332 -15.907496 -1.103186 -1.930131 17.399783 -18.821841 -8.332060 -15.134931 9.426183 -2.061166 -40.592867 -23.847696 -9.693226 6.514951 3.877400 -14.035958 -25.349844 9.460613 12.786770 -9.957665 -11.157885 -6.892197 21.897209 21.115955 2.101880 0.922756 5.299782 15.787986 29.935463 11.539493 -9.783865 0.228486 1.553954 -3.104917 2.262870 -7.424451 2.241106 -3.177867 -15.373392 1.200424 19.733446 -12.800683 0.192213 -3.796062 -9.710317 3.261137 87.199482 -11.998059 23.428430 10.860189 -28.565159 11.853670 -5.978093 -10.575504 2.822190 12.034713 23.085001 -38.065488 -15.721007 22.464395 35.101417 11.858396 -24.458611 8.184579 5.685576 -4.495726 -10.207133 16.149107 0.540688 2.744727 -13.681450 -6.929127 18.089569 49.236479 -12.974661 -31.784522 6.411106 9.002544 4.255122 -10.349795 -1.308677 -10.788881 -0.008946 15.810386 -0.170151 17.504917 27.829157 -47.488981 22.056006 0.493040 -15.885854 26.880332 3.401303 -13.867473 -4.359053 2.254861 21.261702 20.256606 2.806133 -4.289982 -6.848978 -26.857089 -1.421644 7.664672 7.729670 -19.234116 23.625520 6.340422 -22.290072 -14.128334 -12.403410 -5.312294 -8.855694 -19.594116 13.868635 -6.135877 -44.691264 30.583141 10.249263 -6.608957 -0.693428 -14.259483 16.714220 -21.208797 -28.192445 12.364608 -9.243682 -12.276388 -0.050558 -10.540617 9.580070 14.981100 15.471005 -29.014458 -28.837411 21.129285 -0.364871 27.769820 16.121613 6.029450 18.797843 0.565495 -10.473105 -14.832897 -21.959714 22.313144 8.319088 -18.049642 -11.246587 -14.486026 17.931911 25.130437 -7.439069 -10.620538 -19.167318 19.234038 -19.583723 0.280646 7.692896 5.998272 -21.974466 -0.026309 13.200186 -8.238736 -1.719285 -19.121933 -6.931910 -19.096399 -18.532876 11.571471 -11.118105 3.237466 13.525176 -8.881400 -9.579755 8.593522 1.587683 -2.024031 6.519111 23.369223 21.289265 -13.051924 7.224303 -28.072778 21.182724 -30.276762 -26.440498 7.574247 -11.071345 -11.096333 -11.742842 -4.195523 15.705143 7.279991 -5.818450 -6.425685 6.182077 +-8.732676 50.329521 45.931612 -34.589567 70.577412 48.014718 24.972931 4.866376 -44.672209 -64.224356 -10.958076 -105.536611 -115.202815 83.067163 -15.999277 14.699943 128.486748 7.816185 -2.884488 -36.727561 33.500057 -31.141367 132.064827 127.949083 -115.050975 28.765365 34.420290 42.260477 7.228929 67.731703 -17.831879 -102.287363 31.379709 -14.855226 51.301295 -35.987842 -24.382444 -34.864916 -10.551327 -177.398357 -19.873695 62.564529 -14.399615 3.055630 16.085849 73.401138 151.865561 68.932744 -31.722585 54.523170 49.340197 -3.927484 47.274759 9.684348 18.534768 -8.701004 47.474391 -9.899176 -52.177830 14.419925 -16.565347 -95.349369 -25.055793 89.678566 113.168806 -14.897118 -38.205639 9.288371 -8.037579 14.559472 -7.841999 73.237171 59.939153 55.315269 78.408334 -48.480847 0.351984 -142.726026 0.456301 -231.893498 -101.516521 -72.635403 84.590200 41.464704 30.597371 -39.413368 145.882043 -2.756140 23.656369 56.774138 145.445458 -81.113803 -28.332425 -53.805683 -21.971120 31.225913 -48.807473 8.991278 31.849145 -10.669036 -85.308299 -65.735965 54.912445 -12.485226 -60.958718 -11.250194 -27.883754 74.254142 -106.609397 -34.314829 -129.395845 -7.151879 11.937083 -153.082732 -15.983481 4.974796 35.057691 51.438160 -31.904984 -64.119781 33.993117 38.593702 -30.113577 -35.347525 -60.275765 112.027478 53.735535 -1.962639 38.150932 51.782071 57.425945 98.539505 87.311419 -24.428328 -27.642055 29.317742 -33.384921 3.895824 -37.102373 -10.908113 34.188993 -74.716656 7.405665 36.704035 -57.201846 -16.394456 -16.067430 -49.110371 34.678233 233.501746 -31.430802 71.562682 30.871999 -99.869826 73.486368 -30.222002 -43.844636 20.449732 74.174663 86.827515 -92.805168 -56.655977 61.538965 130.866583 45.736217 -101.003570 3.755316 6.521317 14.331899 -35.848987 58.223279 26.895851 29.515715 -50.425976 -10.073424 54.852657 173.213869 -58.843304 -104.978676 16.809089 29.507682 16.259536 -86.366711 -2.017730 -37.098110 -19.497408 23.527675 5.038951 37.326357 107.992322 -193.112258 90.435880 -7.455148 -47.410226 90.132444 1.133163 -37.708433 -100.888211 23.703251 85.452952 88.334616 27.320864 -6.286736 -31.753886 -103.876122 -3.122463 20.264677 46.960902 -61.592493 91.921722 -11.917515 -71.392984 -62.399756 -66.919470 -12.857092 -27.183049 -53.532312 47.208186 46.191870 -193.134293 110.221985 -4.645125 -53.321758 -3.114739 -26.365631 59.529598 -94.450215 -115.351765 34.899644 -58.078169 -99.471943 -36.757292 -40.653312 28.483367 21.698671 -5.071676 -63.033997 -110.547885 109.063155 -2.348671 83.322113 68.373473 26.317591 118.813121 50.952449 -77.857669 -44.279514 -60.218466 54.441424 -40.945438 -39.431191 -26.356960 -50.962380 60.753847 134.886376 -11.736721 -11.582623 -56.411039 83.518870 -95.924748 -40.832220 60.540011 25.162374 -35.406234 52.684226 71.517343 -57.616980 -29.371576 -92.494282 -16.806431 -33.028513 -69.894777 32.307010 -94.734847 -8.359401 72.796778 -41.543300 -48.372213 46.626227 -5.115901 -19.377861 -23.543521 111.793907 128.385628 -93.134869 46.507558 -97.511306 69.669689 -126.452700 -84.393673 5.326876 5.959138 -26.420948 -25.995241 13.811798 33.305622 21.628462 -57.756395 -55.359174 6.441856 +-14.050196 0.298312 26.412837 -29.288641 42.722659 10.856504 17.115938 6.475767 -34.435769 -40.875975 0.143947 -40.859970 -73.044194 48.666586 -16.162290 15.438342 55.953524 -2.795752 -3.853287 -37.322590 42.916830 -40.557630 73.976197 56.412002 -79.813555 6.727072 8.485797 50.098478 23.689087 37.291356 17.000152 -30.481015 4.012231 -9.629190 52.895359 -24.862174 -0.832194 4.296181 -20.990478 -99.373128 -20.897555 54.325615 -4.595442 15.050659 15.246850 73.410354 54.354709 47.402112 -32.506351 48.026236 43.708263 -15.206146 38.733542 3.911751 -9.532061 -11.300103 19.094922 -6.523928 -30.027065 13.218149 -11.670896 -70.310484 13.555677 52.235248 79.713129 -31.311770 -19.059458 18.974846 0.399463 21.546280 11.344407 51.750801 18.421704 5.272305 69.816657 -37.044177 -9.237750 -97.427798 15.659698 -150.421485 -57.682197 -46.832558 57.591650 30.821179 11.941969 -27.687013 102.394167 7.816563 -7.766053 58.146824 60.050929 -31.010663 -8.216463 -50.636029 -17.955994 11.681226 -38.587337 -15.443553 30.192015 26.569418 -43.966672 -21.493489 14.872779 -14.908926 -35.426564 -19.429996 -43.264240 56.525021 -67.752331 -26.404038 -76.191266 24.643013 5.985709 -89.037826 6.506799 -16.427004 24.048278 15.826939 10.246840 0.895753 18.430235 24.357994 -14.979307 -7.501356 -47.854866 72.828641 35.910464 -10.513347 17.743005 47.963266 4.398805 33.710589 58.243668 -11.103823 -45.399918 40.079849 -21.937773 14.230060 -26.934706 6.214479 54.680833 -44.471255 -12.378822 -2.347326 -16.664122 -20.557406 -6.454177 -34.666599 23.487756 123.533073 -10.003288 37.001452 17.771730 -40.057265 54.589813 3.595059 -0.966329 39.597811 46.294806 23.443340 -55.255541 -39.166062 35.660599 68.174320 18.910192 -61.151089 -12.916586 8.907867 15.544745 -18.990657 25.748394 29.302268 3.454353 -19.920628 -0.697399 -2.430798 90.044152 -31.067668 -40.227028 15.496605 33.311723 -25.518268 -64.928194 -4.525359 -21.624041 -31.783771 5.468131 8.257075 17.784674 60.205373 -104.086222 49.729411 0.990664 -7.340140 42.785206 -20.790031 -6.315696 -104.948544 -3.549639 26.255631 48.581303 0.761613 -9.188864 -5.828356 -65.390857 26.002349 5.926224 28.013429 -29.093022 58.851687 -29.405024 -18.965191 -33.746223 -33.543718 -24.864974 2.748494 -20.294306 21.571675 26.106972 -91.485776 45.375823 -32.115923 -34.350391 8.545086 14.384767 47.057634 -42.352014 -60.322441 26.958158 -21.309252 -73.884201 -61.093086 -19.726050 22.438903 1.548008 -27.592854 -36.296971 -70.231028 62.137453 -28.294328 41.945093 32.770865 2.651392 80.499205 41.279281 -53.312709 -32.301821 -37.150412 14.468178 -21.271783 -9.038488 -16.614200 -13.660443 31.690184 62.384475 1.328052 6.323928 -16.809162 72.799935 -49.280464 -38.870264 31.277631 1.829111 -7.465499 55.786419 41.070542 -38.115366 -19.545744 -65.374771 7.187483 -15.898622 -22.232818 36.295662 -51.661239 -2.246612 25.811209 -3.321950 -23.921793 26.578407 13.819834 -16.751982 -35.231533 99.487012 91.681944 -54.184295 17.380898 -52.141837 43.467790 -58.533921 -22.993405 -23.598752 13.215024 7.255461 9.027585 14.848732 29.972759 35.668484 -50.049728 -34.601791 -7.731295 +-5.528424 -4.203204 -0.174266 -9.571161 6.178505 9.208204 3.603074 -7.149475 -12.803652 -7.213250 5.142924 -18.786744 -10.569865 15.104805 -5.283858 8.558084 18.348187 0.696357 -6.200210 -5.453630 10.105743 -1.221842 20.495439 22.218613 -14.137406 0.735281 0.452102 7.252825 4.567760 2.398874 5.741081 -11.293297 3.884791 -9.115670 2.346384 -5.580794 -3.991061 3.949236 7.889058 -23.905836 -1.781518 9.599119 0.802512 -0.008229 1.694101 5.971032 13.551426 11.713992 -1.224079 11.729903 9.234382 -0.230576 7.264127 0.103361 3.956456 -1.573584 3.162658 -2.872542 -3.017938 -1.086037 -3.887769 -5.402317 -0.013461 15.451664 17.617006 -1.087790 -7.530952 2.508227 3.050224 4.370099 4.378722 12.287952 0.240108 5.405407 9.922527 -13.712519 1.666774 -22.867916 4.095536 -26.831308 -11.192487 0.503160 13.551934 8.717746 5.923614 -2.751323 22.344080 -2.983072 -7.084346 15.442466 17.841806 -9.917529 -3.550860 -3.525286 -6.647829 1.952934 -6.948421 3.313011 2.936953 7.635358 -13.183960 -6.357790 2.114916 0.720982 -8.637972 -5.323958 -1.490458 11.052434 -15.060520 -7.093241 -7.601465 9.215100 1.219665 -23.520802 -8.667143 -8.301343 3.362401 3.822687 -11.134022 -8.980198 6.607781 1.872824 -3.340443 -3.893228 -5.652592 10.170147 8.432845 3.877861 -0.687664 9.234501 5.104472 19.245981 4.363160 -7.341773 0.807911 4.285695 -1.977514 6.726949 -5.105975 -3.369467 4.681019 -12.032609 0.737694 5.281400 -8.120143 -5.643202 0.818543 -1.855378 -1.062512 45.115131 -3.704331 16.594203 13.511698 -12.189528 5.297997 -5.347513 1.976212 5.235063 9.016473 8.232349 -16.855470 -10.715592 13.223997 21.881227 7.556835 -14.215991 -0.101926 6.505022 2.768281 -3.526632 8.846358 1.728988 2.243190 -8.081674 -1.820746 8.931811 25.588900 -7.185783 -4.342800 1.604421 7.904740 -0.087860 -12.006843 -0.719780 -9.505132 -0.182740 6.602278 3.551639 6.764318 16.354020 -23.449984 13.733247 -0.257094 0.743579 11.822925 4.864615 -11.300338 -17.443530 -3.869426 6.648448 12.342981 -1.094096 -0.090490 2.009556 -17.512071 0.527881 4.060263 3.296737 -10.614724 15.317129 -0.440501 -6.392314 -6.142489 -0.391744 -4.264040 -4.066525 -6.148719 11.123198 3.056290 -18.474164 12.382956 2.412126 -7.517618 -1.079312 -2.873181 13.048908 -13.035259 -14.327163 7.819855 -7.899083 -13.004668 -5.294154 -5.533107 4.526043 6.266393 1.734372 -12.279860 -12.144638 16.358769 -4.799222 17.867962 8.533040 -3.225748 12.311270 -2.190348 -7.756720 -7.122694 -10.083281 4.268066 -0.885876 -8.602161 -6.748596 -4.513768 10.478763 12.900854 -0.835170 -8.831656 -1.623042 14.827501 -11.494236 -2.826610 4.850963 4.256337 -9.415762 7.777338 7.716875 -11.433268 4.044783 -12.491687 -2.196138 -9.441560 -7.693110 11.428478 -4.801450 4.430590 1.590200 -2.403746 -1.326609 5.811836 5.538240 -0.830939 4.016868 18.737874 13.365939 -4.696703 0.316844 -18.509567 10.223808 -16.196000 -13.903439 1.211115 3.429486 -7.506403 -4.309153 -1.135387 11.301351 10.542865 -10.023955 -8.903855 7.568176 +-7.964339 12.688760 18.665949 -24.578266 27.766500 25.740109 9.633247 -6.355690 -25.790024 -26.917886 1.232289 -44.065106 -44.718213 39.838294 -12.084079 7.390348 53.686855 1.560179 -8.065158 -19.208204 21.398807 -8.902433 58.814487 58.302652 -51.571536 8.817347 13.587050 24.837814 10.880832 25.167471 2.377209 -38.334085 9.067202 -8.901197 18.389534 -15.735154 -9.703951 -8.635500 -1.314283 -75.494113 -7.254057 24.720155 -8.966431 1.276942 6.885150 23.461894 58.312194 32.156963 -10.935348 24.100692 27.221311 4.793396 18.392394 2.095346 9.903411 -4.847709 21.354856 -8.818644 -13.963571 2.742020 -7.225818 -32.936088 -6.423007 44.121554 50.554859 -4.874340 -16.869633 3.189156 0.020122 10.126911 2.587460 32.529278 14.886544 23.662540 33.179552 -28.450055 3.138666 -64.906204 6.399290 -89.333153 -40.142687 -22.806701 37.021403 22.195981 12.538791 -10.022302 64.515660 -2.755828 1.372637 32.508261 58.145292 -29.378577 -10.035599 -20.023809 -16.917938 13.071025 -20.826911 6.752955 3.047310 8.507349 -36.378615 -23.891611 16.376162 -3.078150 -28.022219 -6.681355 -11.361911 34.624845 -47.240141 -13.168370 -42.710787 10.863772 4.557567 -68.108023 -19.363270 -12.199832 21.161126 14.394357 -16.745614 -25.043530 14.714814 16.781923 -11.324080 -12.219109 -24.622453 40.511073 26.243062 1.457230 7.799003 22.000613 21.152791 44.915645 29.465924 -13.247658 -9.093501 13.164983 -10.946502 4.858818 -15.735471 -1.768670 13.093144 -30.601914 3.067833 17.722619 -22.922904 -14.895424 -5.922452 -18.884099 11.456653 120.191320 -12.226790 35.399559 21.325538 -40.684513 20.800680 -11.173620 -11.831152 13.837898 29.432044 32.365890 -44.605560 -27.256284 28.966898 58.568208 20.262707 -41.467580 3.328009 7.227052 1.840989 -13.875099 25.853786 6.895183 6.509296 -21.190462 -6.543271 25.265124 72.990693 -20.997352 -40.326647 6.294064 16.530587 1.151860 -31.724454 0.404136 -13.312788 -4.505430 17.120098 3.345358 20.121080 47.590395 -81.755870 39.375912 -0.188491 -13.206244 35.533792 2.654069 -19.263464 -40.997260 5.819954 31.065401 38.489062 5.175516 -3.413841 -6.987392 -48.220392 -0.158544 11.370917 17.351177 -29.281286 41.322267 -0.428950 -27.917198 -26.127486 -20.848157 -8.340104 -6.262738 -24.262696 22.913942 7.448048 -78.583656 45.813063 -0.898036 -20.910494 -1.920811 -13.753155 32.169543 -40.562080 -48.030575 18.182492 -20.894651 -41.466403 -16.719171 -17.619067 16.612576 12.645201 3.966653 -34.302538 -41.157293 44.481200 -7.457066 40.078923 28.724241 6.427019 47.492701 8.912120 -26.343268 -21.624080 -26.569940 24.886376 -8.869649 -22.060078 -12.711961 -20.170699 26.944986 52.715680 -6.581132 -12.760918 -16.224640 41.016436 -38.592987 -17.231415 19.021552 12.637507 -20.447122 24.888574 26.546005 -26.939487 -6.829677 -39.474035 -7.039562 -17.440799 -30.622520 23.239192 -30.375817 5.205801 24.288870 -10.639100 -17.889054 20.703476 2.649343 -4.813075 -2.091388 50.008870 53.181483 -32.002703 13.985876 -46.728340 32.011006 -52.379595 -37.622215 1.739302 0.264123 -10.077512 -10.440267 -4.344320 23.015296 17.894496 -21.835928 -21.333904 9.526868 +-2.702828 -1.395916 -0.416090 -4.869861 3.442529 5.548949 1.696717 -4.168882 -5.649659 -3.072078 2.269741 -8.271052 -4.703134 7.096877 -2.750159 4.523283 8.809604 0.095683 -2.857911 -2.722571 5.245758 0.638145 10.273626 10.581697 -7.216022 0.324133 1.260053 3.103592 2.535352 0.789828 2.564745 -5.732489 2.540765 -4.764610 0.633772 -2.762315 -1.682065 1.437723 4.667036 -11.305469 -0.765689 2.934244 -0.770887 0.036231 0.530002 2.057863 6.761425 5.763507 -0.747526 5.394630 4.883334 1.274926 2.654955 0.205975 1.505402 -0.375211 1.106090 -1.804168 -0.758627 -1.120476 -1.580501 -1.654364 -0.157738 7.696221 8.515726 -0.417946 -3.304013 2.026977 1.510498 1.883961 1.809069 5.839498 0.001738 3.164972 4.454222 -7.702041 0.192242 -11.602156 1.450159 -12.363538 -5.332626 -0.188234 5.113409 3.146841 3.567651 -0.504701 10.661161 -1.031659 -3.031734 7.249045 8.601621 -5.401653 -1.467007 -1.804104 -3.023853 0.953114 -3.410231 2.291116 0.641346 3.067171 -6.239887 -4.040880 0.922766 0.641589 -4.330132 -3.782872 -0.522041 5.220841 -6.941389 -3.698138 -3.319745 4.564292 -0.341428 -11.536864 -4.687667 -4.219241 2.993604 1.287103 -4.660111 -5.402031 2.626415 1.809149 -1.502116 -2.895838 -1.106203 4.122926 5.269080 1.784889 -0.358609 3.982851 2.626888 10.653695 2.288027 -3.476996 0.138973 1.643511 -0.644711 2.948907 -2.811859 -1.029487 1.861705 -5.845859 1.120831 4.023411 -3.768684 -2.906262 1.848240 -1.470773 -0.183443 22.752249 -1.655000 7.773442 6.666203 -6.405011 1.133803 -3.322748 0.546900 2.752365 4.145602 4.024867 -8.845650 -5.274044 6.085998 10.291540 3.613789 -7.045922 -0.249053 2.727824 0.851947 -2.240848 3.714908 0.756451 0.747173 -3.822230 -0.960326 4.944575 12.381219 -3.679550 -1.620816 1.016778 4.561604 -0.281121 -5.239684 -0.873992 -4.911102 0.044807 4.493522 1.836171 3.445680 7.922278 -11.271797 6.109143 -0.071994 0.229445 4.816630 3.147240 -5.525897 -6.704303 -1.063644 3.559437 5.527929 -1.154287 1.231791 0.956671 -8.427334 0.149400 2.162437 1.500129 -5.074699 6.914366 0.799352 -3.491037 -3.158258 1.031899 -1.829335 -2.364057 -2.588053 5.377265 1.057783 -9.949270 6.270407 0.928080 -3.669543 0.222081 -2.414028 7.595394 -6.490890 -6.838253 4.435099 -3.189117 -4.848202 -1.650668 -2.225540 2.895994 3.088789 2.533497 -6.398082 -5.883447 6.939178 -1.628522 7.976571 4.145151 -0.861837 5.817399 -4.544855 -3.482051 -4.194085 -5.474273 2.625205 0.831060 -4.698593 -3.371337 -2.186583 5.365420 6.653461 -0.689442 -4.946810 -0.603275 6.722877 -7.057063 -0.531457 2.205096 4.454412 -5.246584 3.087426 3.517830 -5.267830 1.532645 -5.301490 -0.616955 -4.367865 -4.284735 5.585618 -2.173199 2.485314 1.076213 -0.902276 -0.460596 3.341633 2.537785 0.344583 2.075085 8.084167 6.807018 -2.298344 -0.774619 -8.779329 4.732138 -8.124292 -7.387306 1.232218 0.571252 -3.416569 -2.037947 -1.388429 5.964804 4.587159 -3.688603 -3.792179 3.001927 +-1.086995 -1.305817 -0.097554 -1.429710 1.322146 0.632139 0.950423 -0.750403 -2.836620 -1.258934 0.900574 -2.943965 -1.734070 3.075428 -0.584750 2.192781 3.964788 0.987718 -0.784508 -1.238056 2.261742 -2.036497 3.813898 4.407760 -2.645615 0.255790 0.152840 1.224075 0.759018 0.902252 0.271533 -1.815711 1.160616 -2.609924 0.766874 -2.159853 -0.587648 1.487211 1.856385 -5.064785 -0.165320 1.507513 0.920298 -0.005378 0.091497 2.296384 2.181863 2.325834 -0.821729 2.994844 1.860021 -0.999555 1.460857 0.320753 0.769191 0.574442 0.441394 0.698155 -1.068925 0.301168 -0.839311 -2.094735 0.558079 2.475389 3.701566 -0.697793 -1.220339 0.737028 0.444683 0.784403 1.284088 1.982962 0.411091 -0.327269 2.295316 -3.469872 -0.271276 -6.172849 0.238161 -7.418677 -2.290555 -0.143803 3.052139 0.276193 1.421337 -0.423150 4.162174 -0.546470 -1.198257 2.468407 3.247812 -2.444667 -1.026403 -0.839850 -1.122086 0.521189 -1.534867 0.019345 2.155127 0.676836 -2.560597 -1.948985 1.552114 0.293655 -1.553714 -1.636472 -0.395695 2.489432 -3.020298 -2.222483 -2.256711 1.186060 -0.112617 -4.146288 0.443440 -1.620561 0.784960 1.219042 -2.071732 -1.807797 1.258639 0.487857 -0.890245 -1.227389 -0.763963 2.634213 1.100327 0.715915 0.285170 1.238236 0.404681 3.515372 1.794412 -1.789268 -0.064376 1.270637 -1.140603 1.454763 -1.889152 -1.383817 2.185206 -2.690450 -0.065153 0.184643 -1.825129 -0.591514 2.426229 0.054181 -0.028996 7.288578 -0.355962 3.047866 2.406570 -2.272113 2.348712 -0.691518 0.762798 1.570535 2.602405 0.888237 -3.510700 -2.254644 1.892593 3.980637 1.719545 -3.452927 -1.955812 0.482808 1.046246 0.029751 1.293379 0.559088 0.524358 -1.723444 -0.133901 0.903079 5.249601 -1.886612 -0.596050 0.260082 1.481489 -0.913456 -4.268519 -0.476516 -3.001562 -0.191442 -0.003147 0.529915 1.122730 3.287361 -5.688940 2.804601 -1.312077 -0.017076 2.338708 0.971975 -2.065260 -5.408078 -0.699697 0.925619 3.074971 0.297066 0.378475 1.000936 -3.366695 0.099330 0.160919 0.719090 -1.873265 2.881595 -0.643039 -1.328873 -0.973945 0.060704 -0.782797 -1.542481 -0.318959 2.158962 1.682179 -4.103546 1.876229 -0.084744 -1.681952 0.600301 0.471892 2.287046 -2.484246 -2.938741 1.619431 -1.085111 -1.968702 -1.846850 -0.779277 1.146091 0.260183 -0.901746 -1.424970 -3.270828 3.061847 -1.373789 3.158305 1.645505 -1.010672 2.841382 0.578865 -1.983700 -1.878744 -0.877789 -0.304946 -1.331408 -1.121522 -1.855778 -0.826445 2.242440 2.848065 0.776490 -0.846799 -0.234564 3.539290 -2.701161 -0.689752 1.743465 1.208883 -0.984073 1.936792 2.087000 -3.038822 0.326948 -2.235718 -0.336903 -0.946741 -1.106716 2.388323 -1.333796 0.792360 -0.069584 -0.193373 0.010869 1.346510 1.185940 -0.179129 -0.103254 4.204233 3.559716 -1.552095 -0.110882 -3.048428 1.611105 -3.127771 -2.163153 -0.307776 1.767051 -2.138268 -0.193317 0.787688 2.174576 1.620043 -1.892340 -1.785343 0.673917 +-0.853548 0.002555 0.596620 -1.917194 2.001531 0.444392 1.098957 -1.153325 -2.250051 -3.295982 1.494644 -5.146023 -4.634134 3.354149 -1.380157 0.337242 4.226145 -0.671867 -0.477389 -2.414977 0.944555 0.005800 5.477336 5.583730 -4.516115 0.436629 0.405135 1.816868 1.801763 -1.009498 1.667198 -2.999887 1.390957 -0.628099 1.059444 0.060461 -0.949318 -0.933683 0.533058 -5.517697 -0.899956 2.274662 -1.227079 0.562793 0.981668 4.330558 4.426106 2.891221 -1.201763 3.414728 3.020686 -0.329181 1.725793 0.087900 -0.230771 -3.267461 0.914710 -0.159352 -1.485832 0.451913 -0.375002 -2.963816 -1.345425 3.928176 4.257366 -0.526416 -1.908899 0.567186 1.154173 1.501066 0.749305 3.163141 2.546827 2.240212 3.424108 -1.974171 -0.466123 -7.613550 0.301862 -9.998858 -3.853533 -0.820662 5.192596 0.661208 -0.007483 -1.608634 5.050519 2.144594 -0.837001 3.276919 5.263235 -1.694243 -1.263324 -0.488919 -1.291712 1.373496 -2.322700 2.098546 0.730390 2.264587 -3.504063 -1.085993 1.038556 -1.299096 -2.216970 -0.490268 -0.555801 2.472380 -4.141071 0.427966 -3.165560 0.913224 2.091861 -6.326378 -1.328420 -0.678099 3.435115 1.675360 -1.869639 -0.042720 0.834676 -0.498078 -1.045367 0.276916 -2.703092 3.357036 2.949726 1.242000 0.534879 2.706921 2.508487 3.902483 1.285611 -1.539166 -0.657069 0.425095 -0.603085 1.899909 -1.149583 -0.312691 3.248851 -2.258526 2.391617 0.323341 -1.899538 -3.227361 0.565784 -1.301348 -0.023832 7.062547 -0.339465 3.887655 3.139321 -2.564424 -0.451106 -1.733594 -0.092008 1.401898 2.379384 2.137082 -1.196823 -2.196906 3.287541 5.351938 1.555972 -4.648868 0.962443 2.388028 0.701146 -2.596724 2.567098 1.070593 1.437525 -1.622825 -0.284759 3.498466 5.020099 -1.292176 -2.894457 -0.150309 2.409270 1.957760 -2.008654 0.343951 0.404889 -0.103946 2.233057 1.971669 1.222056 3.951890 -8.111637 2.796305 1.358058 0.688897 1.984453 1.711523 -3.478066 -4.686719 0.579206 2.015833 2.163907 1.273247 0.017859 0.051483 -3.757072 0.095177 1.209839 0.693975 -2.153518 3.264518 -0.397514 -0.972323 -2.238752 -2.025220 -0.471047 0.370607 -1.786701 2.661478 1.639040 -7.438902 3.354072 -0.646619 -3.069730 -2.329331 -2.079333 3.646960 -3.600988 -3.334031 1.126425 -4.276416 -5.732292 -2.775914 -1.251169 -0.333667 0.489620 1.001586 -2.382649 -1.558243 5.626646 -1.403532 3.789820 2.372949 -0.114259 4.658360 0.047567 -2.330237 -1.369843 -1.706827 3.505873 -0.931510 -2.592829 1.114027 -0.867905 1.371899 3.781733 -1.299066 -2.113637 -0.290054 2.659784 -3.360760 -1.571766 1.283600 2.607840 -1.423092 4.218725 1.890474 -2.731755 1.028696 -3.832466 -1.480267 -2.246399 -2.620337 2.028880 -1.703349 0.529590 1.235819 -0.536738 -1.310695 1.793991 -0.080491 -0.683610 0.155191 4.105756 6.677720 -3.274241 0.598389 -5.135932 3.126510 -4.388786 -4.673289 1.133458 -0.521665 -0.945238 -1.269716 -1.137059 2.009736 2.491612 -3.946461 -3.706497 3.376157 +-5.178541 0.302881 10.665848 -12.695884 17.133154 3.943418 6.027561 1.430051 -12.999070 -16.589690 -0.476775 -16.376222 -27.055753 17.906822 -7.250023 5.809017 21.328318 -1.478306 -0.573682 -14.970639 15.813247 -14.000304 28.371924 21.337213 -30.822139 2.497087 3.408163 19.320089 9.622932 15.030867 7.141354 -13.672346 1.373394 -2.016350 20.912731 -9.781745 -0.604452 2.277388 -7.467844 -37.408176 -7.804914 20.515583 -1.185450 6.716411 6.689938 26.938700 20.962456 17.801172 -12.833672 18.764996 17.718610 -3.163333 15.018421 1.685045 -3.929817 -4.695420 8.745902 -5.836346 -10.280098 5.293382 -5.136317 -25.265425 5.081201 20.040929 30.510297 -12.117904 -7.415562 6.199720 0.583229 8.220748 5.064703 20.330995 6.655850 2.791640 25.657175 -14.666405 -2.712136 -38.346914 6.626795 -57.669816 -21.300449 -17.817575 20.601042 13.446734 4.049768 -9.810692 39.037944 2.938817 -2.684155 20.891074 22.151461 -10.775764 -2.421543 -18.524181 -7.175142 3.966471 -14.041139 -5.793951 9.345989 11.797957 -15.713886 -7.757846 5.368034 -6.796845 -13.379649 -7.218234 -16.468729 20.990513 -26.685520 -9.431134 -28.463019 10.793026 2.208680 -33.541608 2.393530 -7.628949 8.792774 4.841304 3.969243 0.498392 7.084194 8.969760 -6.341285 -1.545889 -20.367677 27.321248 14.604046 -3.595036 5.508369 17.804063 1.361939 13.031542 20.819811 -4.719085 -17.486655 15.209280 -7.255170 4.554554 -11.006413 3.311050 20.797304 -16.507673 -4.766719 -0.463500 -6.094106 -8.227197 -3.650951 -14.751512 9.195830 48.094352 -4.796805 13.764259 7.453749 -15.267954 19.403274 2.201061 0.420616 15.014490 17.119757 9.564074 -20.148596 -15.091169 13.812437 25.254321 6.865225 -22.502341 -4.814177 3.997396 5.895446 -6.592636 9.180048 10.858258 -0.647305 -7.385351 -0.087330 -1.895148 33.842166 -9.893673 -14.478728 5.239232 14.419553 -10.188991 -22.594993 -1.674810 -8.974699 -11.613267 3.029599 3.413708 6.664480 22.729545 -41.999935 18.742334 1.773413 -1.722578 15.875588 -7.884485 -1.648089 -40.520205 -1.438667 9.631359 17.789611 -0.820155 -0.983736 -1.970320 -24.499798 10.444875 1.951669 11.249325 -11.882241 21.359298 -9.799249 -7.984645 -12.244984 -12.416069 -9.627012 1.424556 -8.674373 8.349856 11.097230 -36.274592 16.629167 -12.243656 -12.638797 3.802609 4.416073 19.189904 -16.165562 -21.381930 9.989315 -8.866668 -27.391286 -22.273458 -7.081768 8.443089 -1.112825 -8.383679 -14.579748 -26.206519 22.703055 -11.283525 15.176699 12.787707 1.132289 29.257592 13.221388 -19.069904 -12.311053 -14.072381 5.570268 -7.480691 -2.735077 -4.930385 -4.859116 11.540716 24.316446 0.161652 2.316241 -5.442092 26.770557 -19.229455 -13.299710 11.480738 0.278047 -3.307647 21.375556 14.777759 -14.129724 -7.524390 -24.573995 3.707267 -5.745049 -8.090945 14.450168 -19.677482 -0.858286 9.729569 -1.306022 -10.613961 10.555065 5.345655 -6.756916 -12.973603 37.567380 34.336677 -18.425555 7.317017 -19.569511 15.677000 -22.620048 -8.866603 -9.520288 3.485898 2.417796 3.575419 3.999561 12.245614 13.830497 -15.920170 -12.751917 -2.245685 +-2.348550 -2.440001 -0.445602 -3.267718 2.109205 2.035689 1.371802 -2.300681 -4.976053 -2.575540 1.944358 -6.697536 -3.754437 5.594149 -2.005613 3.100857 7.013421 0.860860 -1.966617 -2.492723 4.055347 -1.186492 7.440938 8.396558 -5.129394 -0.207194 -0.431243 2.759176 1.765457 -0.148665 2.786468 -3.747580 1.291485 -3.551748 1.196979 -2.436468 -0.887735 2.535458 3.085082 -8.862239 -0.645418 3.134610 1.397560 0.147008 0.467996 2.952343 4.174640 4.468533 -0.881022 4.517532 3.865787 -0.229449 2.768530 0.176139 0.571986 -0.740299 0.130416 -0.898536 -1.223181 0.042277 -1.434236 -1.967542 0.608325 5.566474 7.016602 -0.239587 -2.571442 0.999205 1.479675 1.921603 2.106068 4.279363 0.465520 1.136895 3.923402 -5.383180 -0.486816 -10.821669 1.621227 -10.864878 -3.942680 0.076749 5.428792 2.836652 1.792794 -0.619790 8.130079 -0.574138 -2.685657 6.537140 6.259200 -3.342327 -1.569889 -1.777941 -2.978218 0.997913 -2.703258 1.441106 1.443094 3.806175 -4.779753 -3.096327 0.608909 -0.043205 -2.940027 -2.734914 -0.610350 4.151097 -4.861428 -2.678873 -3.000870 3.871374 0.745341 -8.168110 -1.732325 -3.906192 0.890211 1.604050 -3.977551 -2.541074 2.137071 0.111154 -1.622248 -1.012442 -2.756254 3.679702 2.709712 1.082103 -0.498703 3.339913 1.207123 6.413297 0.938097 -3.349920 0.040524 2.088138 -1.105456 2.420658 -3.234683 -1.534575 3.595880 -4.336824 0.368018 0.785384 -3.042619 -3.000207 1.175575 -0.962427 -0.100238 14.283023 -0.812599 5.702558 5.025971 -3.976406 3.085871 -1.662665 1.601057 2.454378 3.994093 2.135097 -5.541516 -4.436054 4.390069 7.740185 2.867537 -4.796350 -1.564001 2.373847 1.361995 -1.067569 3.029641 1.109152 -0.116380 -2.539408 -0.412599 2.979217 8.948845 -2.233863 0.130513 0.352773 4.085436 -0.301539 -5.159030 -0.425486 -4.233022 -0.312035 2.107017 1.824179 2.522364 6.135363 -9.235136 4.921999 -0.175493 1.628558 3.193487 1.643726 -4.223813 -7.748726 -1.119256 1.985992 4.725295 -0.098605 0.169293 1.309305 -6.426519 0.453510 1.262389 1.562543 -3.757715 5.522661 -1.121274 -1.974387 -2.188789 0.457008 -2.420174 -1.734544 -1.670938 4.141759 2.174951 -5.848456 4.099765 0.034971 -2.683854 -0.241413 -0.906498 4.941949 -4.651652 -4.944903 2.882114 -2.801402 -4.342502 -2.847861 -1.654688 1.898135 1.260378 0.362679 -3.840530 -4.773420 6.122867 -2.113846 6.364330 2.917985 -1.695727 4.126798 -0.151578 -3.090291 -2.896617 -3.186258 0.769282 -0.409016 -2.955293 -2.232040 -1.176646 3.740068 4.808023 0.008662 -3.427225 -0.023515 6.079890 -3.959934 -1.673660 1.940769 0.701826 -2.605242 3.514136 2.912626 -5.157967 1.270252 -4.841027 0.330244 -2.747122 -2.666620 4.260020 -1.951303 1.669914 -0.109166 -0.549809 0.047594 2.454282 2.723316 -0.268515 1.126721 7.764851 4.573276 -1.267922 0.109636 -6.852852 3.429100 -5.901707 -4.693598 -0.258967 1.771392 -3.088020 -0.870603 -0.369222 4.254072 3.629680 -3.156597 -3.909438 2.665303 +-3.552588 -2.709843 -0.869794 -6.177996 3.926796 6.233436 1.887351 -5.082698 -7.161069 -2.844803 3.000135 -9.186229 -5.003200 8.353759 -3.157457 5.476661 9.494851 -0.130022 -3.808265 -3.120664 6.759100 -0.239449 11.237573 11.821572 -7.992938 0.031065 0.775461 4.121503 2.617115 1.136829 2.975872 -5.560643 1.650756 -5.915555 0.827027 -3.032064 -1.890099 2.594735 5.688048 -12.477020 -0.821805 4.017573 -0.126269 -0.000468 0.410365 1.950730 6.718600 6.656782 -0.910977 5.878449 5.899149 0.623455 3.417133 0.013092 2.115870 -0.021908 1.588620 -0.770046 -0.358181 -1.390019 -2.123940 -1.106953 0.882638 8.784462 9.685747 -0.562177 -4.047181 2.205194 1.809529 2.497795 2.491478 6.759686 -0.887163 2.732445 5.426413 -8.596468 0.587267 -13.451446 2.535123 -12.580459 -5.588775 0.740148 5.613500 3.956392 4.168859 -0.489265 12.416676 -1.631869 -4.440016 8.575309 8.982188 -5.469965 -1.480978 -2.138193 -4.648084 0.592254 -3.517467 2.009720 0.943948 4.490603 -7.077098 -4.087894 0.366231 1.014518 -4.931454 -4.291308 -0.832164 5.932709 -7.103724 -4.286427 -2.942436 6.176799 -0.466136 -13.017418 -5.550397 -6.040555 1.981395 0.781883 -5.669375 -5.786159 3.259905 1.809430 -2.004149 -2.917451 -1.351048 4.767690 5.688616 1.946373 -0.947662 4.104372 2.292523 11.247001 1.804004 -4.310125 0.162712 2.186862 -0.884912 3.703985 -3.199087 -1.172349 2.703374 -6.563377 0.692410 3.666220 -3.953435 -2.939079 2.514891 -1.301746 -0.695782 26.687582 -2.016122 9.126205 7.554703 -6.778204 2.575464 -2.730589 1.414225 3.527782 4.766904 3.799430 -10.594301 -6.246944 7.362647 11.638949 4.078087 -7.788986 -0.784965 3.535139 1.004973 -1.859833 4.294705 0.615151 0.293450 -4.089516 -1.179131 4.855809 14.270446 -4.029331 -1.660640 1.480580 5.623729 -1.220019 -6.497894 -0.959276 -6.589803 -0.179781 4.363852 2.086365 4.295364 9.014467 -12.465266 6.998834 -0.395232 0.447136 5.946318 2.769222 -6.154951 -8.771870 -1.935493 3.169302 6.507269 -1.409248 0.441375 1.397734 -9.645510 0.635650 2.326142 1.496542 -6.004538 8.375449 -0.043040 -3.713655 -3.229050 1.189227 -3.014192 -2.403092 -3.054744 6.098055 0.310921 -9.792212 6.707055 1.375815 -3.678358 0.272417 -1.901522 7.940831 -6.675651 -7.727930 5.179687 -3.153694 -4.795026 -2.412982 -2.519983 3.288354 3.688386 1.889898 -7.683920 -6.949096 7.693520 -2.876978 9.758760 4.521605 -1.689243 5.685901 -3.559781 -3.765188 -4.945478 -5.648575 2.138716 1.366880 -5.455595 -4.577388 -2.342767 6.144505 6.468130 -0.347177 -5.251217 -0.635256 8.436061 -6.293297 -0.797494 2.050409 2.954090 -6.092990 3.295437 3.841339 -5.840822 2.117777 -6.379323 -0.419226 -5.554576 -4.594989 6.806593 -1.669191 3.127426 0.358505 -0.653585 -0.016035 3.357970 3.668542 0.382231 2.502066 10.070514 6.362499 -1.867656 -1.253110 -10.153310 5.627191 -8.552776 -7.628920 0.891029 1.169595 -4.109853 -2.225517 -1.262684 7.209744 5.586756 -4.166033 -4.035983 3.406705 +-4.672062 -4.602963 -2.551840 -6.530313 4.393002 7.807290 2.967200 -8.281535 -8.591694 -1.796371 5.009297 -14.093569 -5.846138 10.285250 -4.004745 8.206754 11.863760 -0.422132 -5.501394 -4.022614 7.064762 2.539280 15.254732 15.455396 -8.541208 -0.162351 -1.567655 3.597758 3.035689 -2.554518 4.195686 -5.536394 3.937397 -8.320866 -1.087805 -1.558054 -2.572206 3.068901 9.355077 -14.319122 -0.936992 3.635272 1.280055 0.066861 0.283209 3.872927 7.845958 8.284204 1.594487 7.836313 5.796246 -1.018493 5.260233 0.436408 2.890560 -1.453448 1.909226 -2.356110 -1.562264 -2.775030 -2.694848 0.203253 -0.438362 10.395020 11.621773 0.831782 -5.826720 3.442175 3.692123 2.991833 3.301173 8.673908 -0.988103 4.677053 5.396897 -10.329787 1.373102 -13.795716 1.793535 -13.435866 -7.108867 2.664718 7.626277 3.891022 5.608053 -0.449333 14.772487 -0.433660 -7.051372 9.550435 11.838894 -8.252059 -2.475280 -0.546961 -3.524383 -0.246240 -3.922915 5.304000 2.857261 6.440830 -9.515258 -3.789505 0.541082 0.834681 -5.485918 -4.678928 0.304343 6.509733 -7.181933 -5.003248 -1.852609 7.386244 -0.185698 -15.965270 -6.083831 -6.030170 2.220991 1.738867 -8.114270 -7.191658 4.192667 0.414440 -2.397227 -3.349027 -2.103256 4.862484 7.655561 3.170912 -1.270896 7.756089 3.354553 16.094945 -0.367357 -5.552097 1.653441 1.585731 -0.091533 6.271733 -2.782457 -2.364317 2.087720 -8.708178 2.752030 4.664316 -5.015439 -3.366705 1.408104 1.128665 -2.193042 28.862028 -2.208992 12.525483 10.819991 -7.922369 1.736898 -6.379716 2.989090 3.215056 5.020846 3.985239 -11.996112 -8.272026 10.146758 14.713599 4.914113 -10.362877 0.923129 5.309558 1.740090 -4.006031 5.560799 1.628879 1.419122 -4.469921 -0.814809 7.480185 18.013440 -5.923440 0.145186 1.967033 4.663136 1.930136 -7.224197 -1.995833 -6.264427 -0.095667 5.539913 5.072952 4.445705 10.961719 -12.179438 8.605657 0.544036 1.875944 8.607308 5.049369 -9.744690 -8.141006 -3.816440 3.825688 6.812601 -1.581019 -1.257770 1.994787 -11.790284 0.580489 3.347546 0.679745 -6.647287 9.874634 0.288984 -3.534274 -3.070857 1.932004 -2.708692 -2.497422 -3.394319 8.661731 1.012002 -10.978906 7.631605 2.673327 -5.692708 -0.442850 -3.860042 10.255471 -7.456621 -7.941378 5.780649 -5.918750 -6.837018 -3.027319 -2.536279 1.945125 4.481190 4.921301 -9.824155 -6.208772 11.274087 -3.447412 12.629805 5.444847 -2.685590 5.492496 -6.371924 -6.114391 -4.542053 -8.453973 2.004376 2.559674 -7.654254 -2.653361 -2.316432 7.708142 6.905886 -0.511786 -8.271735 -0.384911 8.875635 -9.018876 -1.029791 2.908405 4.410249 -8.284575 4.184403 4.770992 -7.209248 4.638223 -6.621365 -2.777551 -8.217160 -5.642872 8.005135 -0.826082 4.011727 -1.360024 -1.415172 1.675395 4.316010 3.950768 0.816832 4.604071 12.425426 7.114597 -1.279002 -2.264803 -13.439609 7.505303 -10.027132 -10.408043 3.307319 1.877144 -6.392165 -3.485760 -1.332125 8.902127 7.211820 -8.701290 -7.038405 5.832931 +-5.308673 -0.430387 -3.071700 -13.822436 14.441461 29.109135 4.241524 -14.780939 -20.517426 4.421996 7.365401 -33.152859 -12.899229 21.980578 -7.128184 10.913304 25.248010 -3.532983 -13.879625 -3.246322 13.085135 15.788898 29.772324 32.174007 -20.899402 5.081423 -2.450217 -0.855346 2.736300 9.459459 -5.365522 -21.543423 3.330013 -7.407831 -2.269891 -3.791112 -10.820613 -1.613455 20.040891 -33.370810 -1.118977 18.095980 2.762600 -2.208218 5.022960 11.281676 26.553825 15.197891 -0.650008 11.632917 12.403055 5.119948 10.089600 -2.232057 9.618150 -0.109590 18.676610 9.374362 -1.219313 -7.646512 -5.301594 10.226527 -5.747887 23.745640 24.317750 3.098153 -15.205922 -1.376787 8.577169 2.668735 2.227277 19.764802 6.937452 15.718435 10.759704 1.306306 7.050503 -19.279612 9.877806 -22.663460 -11.869187 5.343284 14.545242 7.551832 9.559828 -12.320974 34.386832 -7.870695 -11.116082 18.336455 27.183493 -15.898428 -2.374378 -1.090560 -18.569584 -1.188558 -4.325787 9.437130 2.871411 3.089184 -20.777691 -15.863376 -4.400787 1.383712 -14.194666 2.649162 1.300924 7.122550 -13.790036 -2.608631 -2.298417 13.947176 0.992272 -34.212522 -31.343426 -14.455580 -8.540829 1.522350 -19.182097 -18.167200 9.358654 -0.103997 -11.957182 -6.075447 -3.795338 14.127495 16.886889 6.853801 -3.425812 3.000596 13.363242 26.783048 -5.074576 -15.162917 6.270744 0.806827 4.216366 9.592108 -7.319814 -0.582406 2.031706 -13.532843 8.999369 9.771009 -10.926357 2.704766 -5.158608 -3.165161 -6.339394 68.786412 -10.312989 27.519574 14.938780 -21.985007 7.404805 -5.888060 -2.391590 4.106942 10.341042 16.779154 -21.461558 -14.938212 23.934095 33.381621 10.397489 -20.620605 14.837778 14.851607 -2.296887 -8.416601 17.509554 -2.431305 3.358798 -12.634647 -5.803180 13.746798 44.713425 -8.973785 -14.994166 3.349091 15.492075 5.836822 2.522056 -0.068739 -14.220251 2.099170 14.877359 3.151318 18.225920 23.566960 -38.217927 20.534712 0.823166 -8.970435 21.670356 7.240952 -18.496421 4.388936 -4.661748 11.048642 17.787111 3.725510 -8.349903 -0.692838 -24.296512 -0.695891 6.911120 0.873480 -19.666729 23.217607 7.489341 -14.442920 -5.977142 -7.370982 -3.449833 -8.123329 -18.728984 16.161630 -7.294251 -31.156518 20.467953 14.356857 -6.462510 -8.877009 -9.230169 6.359384 -14.938523 -19.161326 8.397258 -10.565864 -9.973585 0.186754 -10.186185 4.646716 16.879722 22.941621 -29.663857 -27.047406 26.208744 -3.747833 30.142807 14.588936 -3.946340 5.550917 -3.806521 -7.034462 -13.440647 -18.983650 17.030552 9.643477 -15.326825 2.505272 -12.836879 14.496011 13.915581 -5.215182 -15.079132 -17.891187 17.321692 -3.406965 4.526661 3.523860 0.117200 -20.219230 1.939944 9.371632 -7.156445 8.757282 -16.732130 -9.093714 -22.029778 -10.298000 16.417085 -2.528291 5.385110 3.495362 -8.216380 -4.071536 5.976145 2.888680 -7.580623 12.281944 24.381222 4.880958 -4.470433 9.465138 -27.341717 21.191927 -22.191119 -21.637041 6.887577 -14.082903 -20.115764 -12.944578 -6.056833 17.026411 10.595711 -8.332915 -11.199455 15.328053 +-5.851166 -3.800493 -0.888705 -9.892488 6.842181 9.384775 3.629523 -8.476125 -12.390762 -6.666794 5.352301 -17.607030 -10.164141 14.975783 -5.338764 9.317289 18.874874 -0.065131 -5.710649 -7.413253 11.849812 0.326743 22.008549 23.117788 -15.673829 0.631839 2.468820 6.558999 6.694241 -0.807886 5.924177 -10.501176 5.057250 -11.553586 1.166966 -5.561778 -3.543536 3.789534 10.884887 -23.970383 -1.643724 4.217457 -1.330413 0.438988 0.558124 7.253439 14.156148 12.362887 -2.490254 12.292025 11.530878 0.631021 5.903840 0.245655 1.996995 -1.623830 1.533259 -1.200423 -1.425950 -1.808505 -3.264201 -3.652761 0.546476 16.204068 18.281929 -0.746187 -7.828652 5.154314 4.367776 4.260521 3.695742 12.860341 1.515885 6.078322 10.967533 -17.958486 -0.931427 -29.041506 2.907913 -28.386433 -11.718283 0.049578 12.008369 3.838113 7.259595 -0.045252 22.469848 -1.563978 -7.069339 17.230486 18.240318 -11.209454 -3.162079 -3.660654 -6.872781 1.961562 -6.949525 6.017170 2.230633 7.345946 -13.557620 -9.555246 2.368364 0.567744 -9.131291 -8.725816 -1.037761 10.155659 -14.044475 -7.364307 -7.895595 9.651756 0.522378 -24.213731 -8.443957 -9.150794 8.570930 3.107647 -10.277039 -10.671557 5.180144 2.872227 -3.896150 -5.987576 -1.541090 9.185041 11.429008 4.220332 -0.668440 8.685864 5.658584 21.996140 5.261606 -7.915438 0.098842 3.670094 -2.069699 6.410170 -6.793862 -2.546523 6.998930 -11.858953 3.395637 7.196502 -7.862862 -7.573554 7.742232 -3.096443 -0.964859 46.139703 -2.843542 16.616320 14.539034 -12.127493 3.513071 -7.556711 1.988742 6.703237 9.066691 8.361955 -19.110720 -11.467980 13.081991 21.511246 7.566775 -16.689475 -2.479896 6.641449 2.529731 -4.376854 8.096663 1.714993 2.319374 -7.943502 -1.522928 10.922221 26.619537 -8.265980 -2.633139 1.767839 9.428681 0.059591 -13.443252 -1.996753 -10.344766 -0.378924 9.998091 5.017100 7.596294 16.819283 -25.800114 12.469112 -0.348051 1.332652 8.820862 7.365259 -12.515799 -15.694939 -2.145639 6.913200 11.559687 -0.761621 1.845778 2.449903 -18.187815 0.722298 4.725677 2.903809 -11.173616 15.413189 0.612331 -6.699670 -6.386844 2.603065 -4.895820 -4.099317 -4.436009 11.798446 1.584215 -21.683142 12.669220 1.194068 -8.010501 0.031904 -5.391723 16.448805 -13.099751 -14.025120 9.359551 -7.320294 -10.592022 -5.357553 -4.206636 5.084002 6.134721 5.153722 -13.351306 -14.190812 15.532954 -4.045433 17.445326 8.978976 -2.601374 12.836171 -9.403639 -7.584062 -9.963509 -9.889378 5.663880 2.202437 -10.376586 -8.607638 -4.350985 10.809554 13.911855 -2.020888 -9.975455 -1.534556 14.618662 -16.491906 -2.782695 4.539730 10.560861 -10.623788 8.047150 7.555555 -11.761308 4.147924 -12.247914 -1.862023 -9.162117 -8.880999 11.915499 -4.399189 4.966792 1.688627 -2.101077 0.238014 7.470334 5.318017 0.611942 3.904839 17.839948 17.923870 -5.520302 -2.805906 -19.199639 10.359006 -17.048958 -16.064848 2.693964 1.946930 -7.763597 -4.463440 -2.572717 13.147169 9.756698 -9.495331 -9.197275 7.293919 +-4.604333 -3.597106 -0.605010 -7.985737 5.747117 7.157592 3.197672 -4.994162 -11.529639 -5.632050 3.296463 -14.818927 -7.877007 12.942144 -3.424756 8.189697 16.268351 2.027706 -4.767970 -3.738589 8.985577 -3.339258 16.158254 18.362891 -10.948291 1.102950 0.004362 5.344692 1.782861 4.195958 3.290074 -10.385994 2.833579 -8.380297 2.724721 -6.439610 -3.808400 4.894644 7.391961 -21.121392 -1.021496 9.145912 2.386353 -0.429018 1.304197 3.282270 11.160824 9.398035 -1.309833 9.882153 6.931431 -0.348419 6.358013 0.332408 4.216428 1.786085 2.148289 -1.515183 -2.851745 -0.164016 -3.946126 -4.143880 1.177525 12.045943 14.363252 -1.240311 -6.533254 1.930464 2.212809 3.352241 3.678487 9.898173 -0.300015 2.494689 7.802037 -12.272352 0.840651 -20.278252 3.951848 -22.751578 -9.522173 0.271463 10.734710 7.882599 5.778537 -3.042963 18.851928 -4.388046 -5.424946 11.854692 14.626760 -8.717996 -2.923719 -3.843432 -5.926336 1.104038 -4.998037 0.440812 3.577093 4.912563 -10.989368 -6.677610 3.112247 1.122566 -7.092111 -5.168703 -1.098063 10.041607 -12.081097 -7.647652 -7.063420 8.184221 -0.093523 -18.591406 -5.239239 -7.330133 -0.459047 3.611142 -10.004540 -8.989634 6.182234 2.022424 -3.735249 -4.026410 -4.427860 9.537705 5.998670 2.281932 -0.371184 6.472806 3.205682 15.818156 4.112562 -6.832433 1.058909 4.508799 -1.855214 5.006725 -5.329536 -3.796589 3.624841 -10.506943 -1.074952 3.728318 -7.232440 -2.733528 1.764981 -1.595969 -0.902044 37.473439 -3.724230 13.462319 10.461294 -10.420943 7.709732 -2.740008 1.588423 4.158491 8.709064 6.747517 -15.350806 -9.267056 10.460538 18.085006 6.730960 -11.101968 -2.921417 3.981365 2.498098 -1.138710 7.232117 1.005552 1.969510 -7.197574 -1.596839 5.481853 22.843620 -6.230761 -3.327297 1.572293 7.306361 -1.619752 -12.211074 -1.168718 -11.861898 -0.728058 3.638847 1.950505 5.869292 13.970690 -20.272483 12.127354 -2.422743 -0.605830 10.394616 3.551414 -8.298062 -17.298251 -4.093491 5.414080 12.088548 -1.254275 0.908182 1.535031 -14.498951 0.342151 2.445242 3.286203 -9.327779 13.002778 -1.608629 -6.199996 -4.077706 0.178929 -4.556994 -5.619027 -4.572700 8.960754 5.041725 -13.916426 10.039103 2.591074 -5.201480 1.014390 -0.380533 10.246507 -10.075711 -12.327477 7.074472 -4.990925 -8.766539 -3.602875 -4.647456 4.862715 4.349178 -0.547479 -9.254196 -11.614894 13.100519 -3.671955 15.296313 7.220942 -3.214718 9.419120 0.977319 -6.888906 -5.841316 -8.240576 1.491156 -1.416970 -5.821921 -7.932026 -4.315385 9.239534 11.043839 1.164076 -6.709828 -2.372691 13.583579 -8.862287 -0.874386 5.055166 0.857969 -7.224266 5.152959 7.418473 -9.902269 2.297247 -10.472435 -0.040618 -7.382059 -5.335549 9.407511 -4.674754 2.987747 1.041433 -2.668186 -0.996261 4.664447 5.669133 -1.157014 2.571203 16.393337 8.645976 -3.338259 0.471239 -14.119517 7.738606 -13.159133 -9.867367 -0.747617 4.298630 -7.945282 -3.291640 0.413688 9.475909 7.684403 -6.296874 -6.672240 4.346977 +-6.948599 -5.950052 -3.245120 -11.806116 6.651220 12.943798 3.295729 -11.392219 -13.061194 -4.090178 6.568315 -16.707120 -7.805265 15.027837 -6.405998 11.144824 16.412194 -1.225314 -7.954940 -5.875452 13.120020 2.376237 20.855544 21.410441 -14.530644 -0.444372 1.370028 6.374883 6.320197 -0.025702 6.284951 -9.311733 3.835515 -11.684348 0.172304 -4.773997 -3.333453 4.965437 12.661167 -21.253380 -1.227558 5.873751 -0.559935 -0.025128 0.500385 3.401453 11.110087 12.281546 -1.096292 10.583473 11.395205 2.396163 5.540108 -0.181982 3.439978 -0.430256 2.586710 -1.856207 0.861510 -4.059405 -3.601194 0.640971 1.544254 16.452369 17.465340 -0.857669 -7.377378 5.073631 4.464734 4.568281 4.991241 12.501384 -2.114505 5.418270 9.260844 -16.493647 1.029993 -23.640855 4.498330 -20.978475 -9.086234 2.881234 8.825631 5.975430 8.265822 -0.334477 22.310544 -2.649795 -9.491568 15.813416 15.474008 -10.164122 -2.185218 -2.905353 -8.352834 0.411224 -6.451060 5.123088 0.953201 8.552356 -12.743516 -7.298500 -0.891218 2.353913 -9.065578 -8.802316 -0.857955 9.777618 -12.164234 -7.505350 -2.801421 12.368040 -1.528284 -23.870320 -11.367035 -12.344948 4.315676 0.040159 -10.230308 -11.006986 5.342102 3.242561 -3.377584 -6.044367 -0.859078 7.041580 11.850620 4.492666 -2.719793 7.283083 4.202135 22.092097 1.776304 -8.211964 0.726922 3.088308 -0.675768 7.621190 -5.615169 -1.649624 5.159100 -11.715032 2.119926 7.937942 -6.619272 -5.399038 6.302416 -1.953469 -2.160328 49.579955 -3.454700 17.278025 15.032511 -12.172797 1.870830 -6.137209 3.316929 6.757477 7.683934 6.389013 -19.773962 -11.576585 13.959797 20.980554 7.188576 -14.314040 -0.223653 7.424029 1.400821 -4.245542 7.239175 0.690969 0.288598 -7.588059 -2.252055 9.599250 25.693179 -7.381063 -0.140328 2.689138 11.054871 -2.183120 -10.001976 -2.235390 -11.933443 0.352996 9.717262 4.723383 8.197632 16.110154 -20.623792 12.005476 -0.347814 1.595272 9.766442 6.331209 -12.264721 -13.167329 -3.707878 4.979349 10.596497 -3.698881 1.778121 3.448250 -17.581812 1.303481 4.420941 1.643988 -10.902188 14.601390 1.666372 -6.033893 -5.433399 4.408510 -5.022663 -4.221928 -5.067710 11.625144 -0.766086 -16.999122 11.740722 2.796697 -6.796679 0.273945 -4.543308 15.653531 -11.930117 -12.782166 9.937141 -5.447832 -7.318963 -3.756186 -4.016677 6.142242 7.123061 6.174629 -15.373701 -12.179798 13.392909 -5.406977 17.789878 7.964937 -3.389619 8.936281 -11.313366 -5.550381 -9.833926 -11.098429 3.770167 4.772716 -11.122374 -7.472840 -3.742400 11.408242 10.559366 -1.484224 -11.006127 -0.015506 14.317688 -12.341880 -0.206592 2.591928 8.368069 -12.597379 5.422841 5.960761 -10.146807 5.113018 -10.556035 -1.189208 -10.939216 -8.531480 13.366783 -1.149563 6.922138 -0.463131 -0.313237 0.996549 6.207672 6.860199 1.099244 5.877096 17.369665 11.208352 -2.151919 -4.104956 -19.006327 10.487530 -15.090296 -14.837185 2.968133 0.740891 -7.825881 -4.343251 -3.554307 14.482325 10.911203 -7.239332 -7.229657 7.103223 +-4.540272 -3.531751 -0.497372 -7.709666 4.783634 7.827320 2.885811 -6.710774 -9.668587 -4.643633 4.098117 -13.535612 -6.961027 11.499077 -4.138358 7.811712 14.133303 0.641121 -5.171367 -4.419935 8.755009 0.021720 16.274555 17.039556 -10.898307 0.365714 0.650111 5.567204 4.463106 0.646603 4.309871 -7.282376 3.865740 -8.590410 0.781406 -4.528698 -2.592643 3.328033 7.636995 -17.954839 -1.031462 5.068092 0.050114 -0.151454 0.713266 3.233229 9.836328 9.260669 -0.433029 8.635671 7.327883 0.451027 4.994427 0.464667 2.778682 -0.193452 2.080866 -2.993117 -1.639037 -1.735892 -2.682221 -3.338370 0.529933 11.970857 13.492927 -0.408883 -5.462686 3.393540 3.011721 3.052484 3.764303 9.155071 -0.754869 4.110080 7.194660 -13.090800 1.192600 -17.868976 2.308517 -18.727964 -8.499101 0.466263 8.899003 5.140041 5.900953 -0.654128 16.716364 -2.230474 -5.563419 11.381186 13.232014 -8.802856 -2.595611 -2.713929 -4.535538 1.338259 -5.495573 3.219025 1.576994 5.659785 -9.984437 -5.624915 2.188574 1.368718 -6.732515 -5.579917 -0.561953 8.666779 -10.671922 -6.675485 -4.791036 7.522847 -0.605046 -17.711566 -6.339586 -7.096836 4.263181 2.288281 -7.833245 -8.359285 4.428995 2.414874 -2.170385 -4.461894 -2.755201 6.711828 7.616628 2.931496 -0.806383 6.931228 3.549928 16.665719 3.403322 -5.682842 0.675864 2.965350 -1.549070 5.376102 -4.315716 -2.606119 3.213585 -9.310765 0.164975 5.711920 -6.087959 -4.196314 3.021404 -0.780959 -0.731504 35.176690 -2.110020 12.424977 11.152944 -9.487686 2.734872 -4.999603 1.826762 4.516091 6.513640 5.681859 -15.142472 -8.814319 9.589078 16.304476 5.917133 -11.216114 -0.953389 4.246236 1.889762 -2.862746 5.809368 1.379493 1.639621 -6.337842 -1.326589 7.349521 19.949735 -6.205696 -1.917360 1.776876 5.431009 -0.860687 -10.131795 -1.614547 -7.508165 -0.092000 5.570902 3.273362 5.102342 12.632346 -16.264821 10.092983 -0.794343 0.721304 8.716424 4.544351 -9.056265 -11.680380 -2.871443 4.950417 9.118421 -1.833826 0.757079 2.119326 -13.524328 0.314504 3.143030 2.086999 -7.681779 11.147562 0.561274 -4.815858 -4.561483 1.701647 -2.971487 -3.543017 -3.564445 8.848465 1.831870 -13.435018 9.337133 1.644627 -5.800299 0.794498 -3.161915 11.692129 -9.932562 -10.493291 7.031935 -4.982531 -8.075694 -3.730623 -3.302118 4.366112 4.810812 2.421436 -10.071011 -8.816989 11.463156 -3.531634 13.077390 6.476832 -2.311087 8.702511 -4.815288 -5.689164 -6.304980 -7.925726 2.065277 1.018615 -7.403485 -6.422844 -3.266416 8.742411 10.088418 -0.716118 -7.387896 -0.531882 11.242811 -11.340025 -1.836411 3.731094 6.017237 -8.214278 5.300813 5.803864 -8.999222 2.997089 -8.203266 -1.687235 -6.850101 -6.313529 9.349020 -2.946509 4.206235 0.805631 -1.306134 0.044882 5.032756 4.412117 0.439643 3.274890 13.903662 10.801653 -2.947807 -1.743531 -13.999422 7.518279 -12.451522 -10.998760 1.831837 2.523492 -6.155811 -2.906131 -0.905685 9.789093 8.107045 -7.133973 -6.381801 4.839755 +-0.618740 -0.623985 0.145618 -1.030475 0.795474 0.472557 0.595368 -0.386914 -1.806780 -1.154869 0.593320 -2.272831 -1.413993 2.011195 -0.542352 1.095938 2.573938 0.577058 -0.617049 -0.735458 1.182498 -0.944750 2.608025 2.865250 -1.815880 0.183934 -0.237758 1.069621 0.501711 0.676007 0.595416 -1.317179 0.718268 -1.162443 0.490483 -1.126647 -0.313953 0.735701 0.535626 -3.347494 -0.108210 1.385392 0.618428 -0.036411 0.157560 1.215369 1.660495 1.554838 -0.245361 1.693281 1.111845 -0.370415 1.020516 0.227102 0.485220 -0.051897 0.301487 -0.563806 -0.891312 0.104785 -0.452849 -1.655813 0.060531 1.764641 2.362880 -0.277900 -0.722484 0.268441 0.166087 0.616517 0.863235 1.243295 0.156158 0.135261 1.332560 -1.663869 0.129196 -2.995991 0.208778 -4.495843 -1.572239 -0.260408 2.377619 1.237621 0.625808 -0.423279 2.701744 -0.332155 -0.625431 1.771267 2.276455 -1.381716 -0.740634 -0.634098 -0.586348 0.551891 -1.084549 0.021605 0.842537 0.877804 -1.695128 -0.701867 0.791284 0.080412 -1.033953 -0.587120 -0.263399 1.634086 -2.345615 -1.093110 -1.423038 0.890476 0.272003 -2.842590 -0.097742 -0.851026 0.433434 0.787353 -1.226327 -0.846955 0.813583 0.222617 -0.410613 -0.385942 -1.413802 1.649592 0.522910 0.413985 0.215715 1.189253 0.452661 2.180595 0.852077 -0.985895 -0.031387 0.758281 -0.522556 0.872089 -0.878424 -0.821932 0.904203 -1.794933 -0.069197 0.211690 -1.204521 -0.671565 0.029787 0.063940 0.141062 4.652503 -0.218499 2.008374 1.606024 -1.486344 1.172144 -0.553001 0.332029 0.801204 1.425125 0.695264 -1.721339 -1.455777 1.249434 2.642521 1.124187 -1.766568 -0.444744 0.394569 0.582357 -0.101666 0.950543 0.422717 0.382872 -1.168215 -0.161848 0.839807 3.226481 -0.865063 -0.358362 0.229726 0.643728 -0.320519 -2.125792 -0.175850 -1.148809 -0.055424 0.182575 0.363757 0.650442 2.201895 -3.091068 1.958795 -0.387134 0.141703 1.505656 0.335629 -1.311062 -3.094519 -0.518094 0.812210 1.975274 -0.009648 0.024743 0.492274 -2.202821 -0.025570 0.301764 0.516880 -1.127738 1.786452 -0.273794 -0.777356 -0.830661 -0.303064 -0.452647 -0.481404 -0.529200 1.367862 1.087764 -2.440571 1.450797 -0.092566 -1.161924 0.047504 0.110969 1.440033 -1.788185 -1.902150 0.872520 -0.950186 -2.019023 -1.142281 -0.560410 0.673265 0.257200 -0.620801 -0.963397 -1.554949 2.209627 -0.746773 1.970223 1.103894 -0.497325 1.836865 0.743484 -1.200430 -0.807695 -0.889029 -0.002167 -1.053670 -0.763731 -0.533588 -0.591737 1.373015 1.964377 0.308319 -0.827286 0.076330 2.221824 -1.389355 -0.845114 1.100253 0.222411 -0.702184 1.440133 1.362195 -1.953946 0.199380 -1.654714 -0.218578 -0.618659 -0.904826 1.468798 -0.882790 0.573360 0.233264 -0.144377 -0.315160 0.866318 0.606398 -0.255528 0.055442 2.841622 1.932379 -0.837460 0.308469 -2.115799 1.098731 -2.148295 -1.480056 -0.135981 1.085576 -1.075698 -0.124113 0.235004 1.345356 1.183808 -1.358058 -1.243057 0.691362 +-5.001326 -4.322905 -0.907303 -8.268506 5.315205 8.515581 3.171202 -7.160195 -10.547392 -4.353598 4.659890 -15.141069 -7.692145 12.497644 -4.533690 8.326900 15.545184 0.873722 -5.385347 -5.171234 9.166432 0.405776 18.075587 19.045352 -12.201961 0.368221 -0.224558 5.851177 4.889110 0.252982 4.121717 -7.750053 4.108162 -9.566059 0.327127 -5.186862 -2.519451 4.051544 8.843816 -19.654164 -0.803353 4.893027 0.178076 0.391217 0.915399 5.534698 10.970157 9.988006 -1.262706 9.843985 8.345723 -0.528362 5.704750 0.479640 2.211553 -0.769957 2.369649 -1.247948 -1.942509 -2.243969 -2.819276 -3.368653 0.294721 12.280062 14.356417 -0.028138 -6.464526 3.457325 4.002549 3.159888 3.880949 10.089535 0.258286 4.635003 8.006180 -12.727395 0.514694 -19.865088 2.556909 -20.316798 -9.024674 0.711352 10.667722 5.415653 5.944834 -1.656988 17.976440 -1.877292 -6.355737 12.581743 14.541395 -9.899469 -2.893222 -2.847113 -4.997406 1.294121 -5.342185 4.287598 2.246489 6.644171 -11.068930 -6.835103 1.847091 0.757508 -7.224105 -5.335700 -1.386015 8.642887 -11.972932 -6.106689 -5.358187 7.944561 0.306833 -19.316401 -6.821972 -7.559859 4.482747 2.408456 -8.804241 -8.519865 4.671630 2.001360 -3.117756 -4.058242 -3.046460 8.404893 8.642175 2.701407 -0.770623 7.504051 3.763819 17.744749 2.691087 -6.789372 0.517482 3.370571 -1.554864 5.273042 -5.479213 -2.609140 4.431002 -10.824196 2.088887 5.575416 -6.545410 -4.273659 3.621080 -0.324941 -1.018525 37.412019 -2.062912 14.226361 12.242909 -9.687335 4.158864 -5.486606 2.545552 5.248025 6.842400 6.131941 -15.824221 -9.546929 10.499377 17.259833 6.059705 -12.925543 -0.734015 4.925633 2.471333 -3.285065 6.564022 1.479045 1.741924 -6.752586 -1.166532 8.456135 22.325963 -6.747878 -2.285652 1.716959 5.504094 -0.228362 -10.882371 -1.891030 -8.039333 -0.423223 7.172764 4.578429 5.925171 13.902613 -18.537890 10.861866 0.181190 1.106442 9.162713 5.067268 -10.240689 -11.923381 -3.268768 5.203407 9.993758 -0.943373 -0.106135 2.605592 -14.817789 0.507053 4.097659 1.796102 -8.741810 12.413313 0.931343 -5.297572 -4.581506 0.625338 -3.941232 -3.394330 -4.277305 9.954945 0.904396 -16.013751 9.665671 1.224554 -6.905902 0.397356 -3.815525 12.166937 -10.476313 -11.044777 7.526300 -5.522742 -9.559199 -4.841910 -3.177915 3.660603 5.235286 3.240815 -11.084386 -11.470582 13.021669 -4.392170 14.211415 7.232758 -2.735421 8.876618 -4.407882 -6.075635 -7.362396 -8.287787 3.220387 1.010244 -8.287250 -6.040130 -3.293177 8.990822 10.888425 -0.946784 -8.089194 -1.218541 12.401474 -11.057828 -2.150016 3.979490 6.042477 -8.692959 5.959011 6.450228 -10.063208 3.780665 -9.515217 -2.551926 -7.515837 -6.893043 9.902694 -3.155366 4.530044 0.753815 -1.360369 -0.000671 5.830546 4.408191 -0.472007 3.806354 16.092920 11.611335 -3.303671 -1.121719 -15.676162 9.150630 -13.602413 -12.143445 2.061197 2.093482 -7.185751 -3.143990 -1.073767 11.191975 8.457632 -8.474961 -7.093425 5.725562 +-1.680375 -2.431621 -0.164045 -2.528000 1.571863 0.226839 1.246092 -1.634001 -4.167728 -1.813500 1.839754 -4.716898 -2.239393 4.271617 -1.209232 2.755927 5.194705 0.996226 -1.313193 -2.465672 2.809494 -1.980890 5.361494 6.224200 -3.603036 0.167795 -0.332165 1.982824 1.568780 0.313154 1.481103 -2.402095 1.060982 -3.186656 0.775371 -2.236876 -0.854718 2.350390 2.980248 -6.558618 -0.092278 2.138664 1.841071 0.150713 0.388476 2.981944 2.573958 3.163430 -0.829714 4.328755 3.100813 -1.279656 2.193320 0.231481 1.068881 -0.155597 1.384079 0.295804 -1.231738 0.225035 -1.188862 -1.747632 0.563015 3.457090 4.715865 -0.606311 -2.068450 0.661021 1.287458 1.649305 1.933184 2.971574 0.093423 0.049015 2.923067 -4.369114 -0.168001 -8.968090 0.817172 -9.593053 -3.159695 0.738718 4.800403 0.867185 1.368206 0.279949 5.588146 -0.331394 -2.465074 3.278173 4.220663 -2.346573 -1.301707 -0.305698 -1.884599 0.711531 -1.721193 0.774243 2.357489 2.628887 -3.572725 -1.903316 1.636666 -0.060475 -2.015048 -1.444349 -0.511523 3.007541 -4.128854 -2.093204 -2.167899 2.581969 0.731335 -5.645082 0.016727 -2.710766 1.077370 1.293140 -3.404652 -1.683450 1.801243 -0.251805 -1.581277 -0.500853 -1.640094 3.148738 1.769517 1.314201 -0.123064 2.152938 0.570924 4.531556 1.014598 -2.873416 0.265002 1.531109 -0.961337 2.155274 -2.390393 -1.683250 2.860556 -3.312291 1.168673 -0.110884 -2.325029 -1.969104 2.615331 0.240474 -0.612034 9.638518 -0.555455 4.806454 3.971105 -2.317988 2.268670 -1.174285 1.642232 1.995493 3.179413 1.073970 -3.340687 -3.190235 3.189965 5.351660 2.142928 -4.509384 -2.218300 1.613777 1.330161 0.170035 2.165472 0.590033 0.531416 -2.217491 -0.219086 1.570945 6.699422 -1.824026 -0.967185 -0.018930 2.525985 -0.568115 -4.882700 -0.429895 -3.478423 0.013591 0.712168 1.534016 1.728525 4.449316 -8.243128 3.791475 -0.476079 0.936878 3.194962 1.469664 -3.390812 -7.517625 -1.457074 0.879188 3.928812 0.193119 0.121626 1.707423 -4.654346 0.291571 0.376812 0.559412 -2.926020 4.076797 -0.769202 -1.437749 -1.012925 -0.014636 -1.304565 -1.153093 -0.737896 3.230592 2.032353 -5.920550 2.298210 -0.199796 -2.298315 0.061399 0.032829 3.337115 -3.004537 -3.284688 1.830601 -2.066503 -3.305547 -2.751778 -1.050501 0.850975 0.334582 -0.072523 -2.168328 -3.143285 4.305778 -2.421773 4.738892 2.185187 -1.832160 3.064778 0.109585 -2.170086 -2.122354 -0.611382 -0.083026 -1.387384 -1.847726 -1.754329 -0.883075 2.551242 3.164146 0.556159 -1.814355 -0.227468 4.674436 -3.223507 -1.077475 1.815872 0.731223 -1.562870 3.153136 2.506557 -4.085999 1.372736 -3.434628 -0.977896 -1.926218 -1.316882 3.484274 -0.859967 1.244145 -0.708869 -0.267915 0.041566 1.850088 1.709245 -0.494236 0.615763 5.624175 4.608502 -1.401172 -0.089367 -4.691678 2.390213 -3.972296 -3.174235 -0.209769 1.734062 -3.166186 -0.534553 -0.053783 3.465990 2.692274 -2.807764 -2.799707 2.214191 +-3.668163 -3.387603 -1.164822 -4.949923 3.517214 5.282018 2.167036 -5.587452 -6.777849 -2.465081 3.564538 -10.944687 -5.360057 8.043040 -3.293634 5.483397 9.356363 -0.092219 -3.867294 -3.218018 5.258922 0.642343 11.558316 12.163378 -6.911851 -0.219078 -0.843509 3.503165 2.077707 -1.221345 3.539873 -4.887119 2.512382 -5.493100 0.220049 -1.510272 -1.992967 2.424653 5.839728 -11.701891 -1.086780 3.626943 0.938533 0.299052 0.520966 3.724226 6.279847 6.414848 0.646164 6.338332 4.769707 -0.730321 4.270353 0.177999 1.941753 -1.684657 1.484151 -1.808147 -1.485776 -1.302841 -2.279804 -1.037152 -0.186681 8.308916 9.550313 0.221708 -4.300205 1.871655 2.350312 2.660017 2.532858 6.814459 -0.478331 3.449147 4.627707 -7.640908 1.020931 -12.020980 1.836101 -12.137352 -5.767233 1.442475 6.639494 4.069704 3.457215 -0.566782 11.998794 -0.166786 -5.080709 7.952078 9.473865 -5.693514 -1.995677 -0.822606 -3.322650 0.203997 -3.314015 3.553933 2.123056 5.535881 -7.292862 -2.780833 0.389648 0.109971 -4.269056 -3.289275 -0.286912 5.606162 -6.228502 -3.578313 -2.537199 5.614938 0.612261 -12.782350 -4.198995 -4.711715 1.602155 1.856734 -6.322583 -4.623212 3.450742 0.134811 -1.815975 -1.754907 -2.852324 4.467795 5.291280 2.187092 -0.892004 6.021313 2.560776 11.198269 0.361375 -4.262373 0.792053 1.749351 -0.566714 4.603600 -2.510372 -1.634956 2.177350 -6.722367 1.974174 2.764107 -4.078349 -3.337698 0.097784 -0.011605 -1.285427 22.358839 -1.951280 9.537317 7.939381 -6.235452 2.402040 -4.182221 2.231773 2.713331 4.444925 3.311210 -8.666671 -6.313414 7.841904 11.809656 3.902013 -7.865816 0.248120 4.212005 1.447520 -2.921319 4.733578 1.560329 0.598534 -3.184140 -0.659590 5.433232 13.553627 -4.085136 -0.733577 1.202537 4.143088 1.334721 -5.987644 -0.995162 -4.869097 -0.249798 3.976035 3.492780 3.282741 8.675246 -11.099482 6.920694 0.625802 1.687175 6.657866 3.240803 -7.071581 -8.242373 -2.530126 3.155646 5.595531 -0.835185 -1.178961 1.368311 -9.241022 0.569462 2.583206 1.299130 -5.445666 8.000060 -0.442265 -2.827578 -2.816254 0.623997 -2.392340 -1.886898 -3.135809 6.498205 1.204084 -9.118716 6.174226 1.683116 -4.420182 -0.783016 -2.514528 7.574248 -6.088842 -6.749377 4.145918 -4.997390 -6.192128 -3.057705 -2.401650 1.615437 3.068263 2.724722 -7.096254 -5.076173 8.904458 -2.913602 9.784133 4.219550 -2.021102 5.289223 -2.953721 -5.035408 -3.392862 -6.122812 2.153664 0.924873 -5.353214 -2.055383 -1.728690 5.690704 5.896747 -0.224130 -5.874809 -0.268609 7.422050 -6.188209 -1.502367 2.392534 2.041755 -5.581623 4.034745 3.798914 -5.866808 3.063387 -6.016483 -1.481448 -6.050013 -4.302626 6.139935 -1.464564 2.715737 -0.686226 -1.133488 0.593233 3.392700 3.348921 0.543252 3.039629 10.162354 6.017900 -1.444936 -0.724572 -10.481230 5.773244 -8.112539 -7.793193 1.682380 1.992354 -4.249719 -2.578576 -1.086344 6.341815 5.535315 -6.637771 -5.641803 4.717421 +-3.755561 -1.557433 0.785122 -6.920031 5.278039 8.423673 2.647155 -5.439462 -8.716349 -4.425599 3.106171 -13.240621 -7.843280 10.933158 -3.867815 6.089427 13.730165 0.456858 -4.628948 -3.714865 7.677755 0.332792 15.628600 16.243050 -11.019402 0.809070 0.873598 5.300465 3.494807 2.329387 2.670552 -7.987694 3.311518 -6.786884 1.082962 -4.126608 -2.570672 1.604498 5.705582 -17.706940 -1.204122 5.625199 -0.860341 -0.250070 0.990600 3.480716 11.262783 8.732460 -0.802002 7.335718 6.689096 0.673214 4.736700 0.394300 2.694304 -0.489466 3.011698 -2.182144 -2.190893 -1.482283 -2.430831 -4.037705 -0.322924 11.623889 12.950455 -0.036490 -5.115563 2.397881 2.113768 2.509395 2.686870 8.720034 0.702544 5.074318 7.162997 -10.035987 1.418381 -15.721914 2.169215 -17.464408 -8.393934 -0.894896 8.602245 5.629796 5.223977 -1.811207 16.246947 -2.203065 -3.993764 10.810511 13.648972 -8.669775 -2.561100 -3.340146 -4.850266 1.595602 -5.254131 2.996600 0.728143 4.369422 -9.720896 -6.050533 2.025079 1.067652 -6.592458 -3.977496 -0.939933 8.118276 -10.521278 -5.542741 -5.836108 5.941871 -0.146831 -17.285133 -7.195259 -5.779095 3.762186 2.638995 -7.078802 -8.085926 4.265116 2.761363 -2.326990 -4.112222 -3.407737 7.439390 7.075776 2.254202 -0.197519 6.030321 4.268884 14.962189 3.816510 -5.014763 0.314714 2.639615 -1.682291 4.248910 -3.983869 -1.926071 2.540051 -8.696947 0.177843 5.676868 -5.975134 -3.477940 0.797681 -1.543907 0.085096 33.728479 -2.391176 11.421849 9.285386 -9.897176 3.588956 -4.416250 0.334309 3.775448 6.216637 6.571618 -14.234129 -8.107887 9.154024 15.732667 5.628661 -10.575666 0.613646 3.793254 1.475485 -3.169824 6.094285 1.459739 1.652620 -6.165014 -1.527661 7.357075 19.668954 -5.880450 -4.274566 1.970542 4.509525 -0.051968 -8.612118 -1.090988 -5.897548 -0.250200 5.556864 2.406974 5.211603 12.290269 -16.320936 9.918451 -0.530047 -0.689830 8.801656 3.346529 -8.092550 -9.033365 -1.774845 5.912665 8.946164 -0.465328 -0.397145 0.835142 -12.855591 0.055559 3.297606 2.572534 -7.432368 10.896724 0.713731 -5.665432 -5.208307 -0.592187 -2.681797 -3.199767 -4.718887 7.963108 0.886784 -14.175806 10.034509 1.889618 -5.331061 0.014549 -3.393143 9.824478 -9.866400 -11.003577 6.281776 -5.112702 -8.438955 -3.323487 -3.603847 3.983021 5.308849 2.345921 -10.043851 -9.675220 11.405882 -2.597172 12.370068 6.498219 -1.146722 8.855788 -2.170129 -5.670025 -6.051058 -7.914622 3.728422 0.587481 -7.051957 -5.328344 -3.844916 8.218085 10.475411 -1.231696 -6.436137 -2.176060 10.665127 -9.707167 -2.325504 3.844805 4.643180 -7.733939 4.660073 5.872220 -7.942017 1.928982 -8.391352 -1.839994 -6.594884 -6.646194 7.975566 -3.997178 3.340507 2.342778 -1.830520 -1.197483 4.597917 3.284594 -0.192963 2.709666 13.389403 10.141638 -3.858260 0.207178 -13.361370 7.820068 -12.561866 -10.730405 1.865661 1.301023 -5.415113 -3.103111 -0.729653 8.490493 6.972790 -6.622893 -5.824396 4.304495 +-5.849503 -0.022188 5.348509 -12.553310 16.140873 8.793933 6.157643 -2.730201 -14.884683 -15.428468 1.581424 -21.059699 -23.900448 19.770828 -7.423387 8.580457 25.980588 0.049716 -2.516713 -12.624902 16.454726 -10.058531 31.465316 27.597710 -28.997051 2.729168 3.849219 15.464197 8.284252 11.543420 6.703802 -16.767853 5.615248 -8.324198 14.209903 -10.867434 -2.776924 2.402762 0.081290 -38.650625 -6.010938 16.080682 -1.789747 4.963658 4.363877 21.021795 24.066483 18.041292 -10.246249 19.177369 16.895142 -1.269684 13.276144 2.190224 -0.858564 -3.090153 5.983024 -4.460054 -8.632711 2.374776 -6.098409 -21.048227 2.523384 21.582963 30.038397 -7.913958 -8.566082 6.579101 0.707549 7.078981 5.784533 20.138864 6.756179 4.885810 23.095317 -18.490285 -2.275185 -40.037965 4.154758 -56.482638 -20.091067 -13.563547 20.123526 10.894769 7.495790 -6.678737 37.797667 0.267219 -3.333974 22.488014 25.907116 -14.669091 -3.905977 -14.412995 -8.032472 4.007627 -13.081888 -0.910251 8.410995 9.738536 -17.863588 -11.420456 6.043895 -3.931917 -13.629732 -10.414610 -11.331000 19.700993 -27.155972 -10.519430 -24.980746 9.722706 0.892798 -35.608408 -3.764603 -8.500031 9.826295 6.336591 -3.419777 -7.089290 7.865432 8.374249 -5.699369 -5.232350 -12.484933 23.389795 14.848119 0.465762 4.160586 15.940335 4.440040 22.166564 18.542971 -6.520792 -10.939329 11.450802 -5.874826 5.985172 -10.887397 -0.161313 16.974823 -18.524057 -1.481518 4.571021 -9.293353 -8.826354 1.646068 -11.844170 6.558589 57.478223 -4.928716 18.032337 12.636327 -18.490464 14.451152 -2.836077 0.751804 13.257303 17.364536 11.976527 -23.161271 -16.265687 15.546206 28.495121 8.977107 -24.462895 -4.169670 5.064491 6.100958 -6.039211 9.404618 8.068155 1.566207 -9.927924 -0.512492 5.411940 37.887249 -11.996500 -11.812418 4.858480 13.833744 -6.643465 -22.775747 -2.459749 -12.660025 -7.148758 6.869672 3.986128 7.308643 24.790002 -41.457944 19.753446 -0.737735 -0.886474 15.733300 -0.227979 -7.266194 -35.030125 -1.318489 11.437540 18.511372 0.087495 0.549879 -0.637106 -25.740150 6.383617 4.259672 10.054210 -13.759348 22.210682 -5.781555 -10.155506 -12.526322 -7.610930 -7.633940 -2.231083 -8.255814 11.980826 9.112901 -37.017053 18.476572 -6.796481 -13.489233 2.639774 0.427073 20.921964 -18.863283 -23.428616 11.848001 -11.120925 -24.723791 -16.427894 -6.863842 8.608432 3.634240 -4.391478 -16.446813 -25.619214 24.497669 -8.852472 19.141760 14.200826 0.636274 28.030805 4.159131 -17.886422 -14.267762 -14.356273 6.166926 -6.251945 -7.248082 -8.317536 -6.158165 14.057995 26.317603 0.168950 -3.559072 -4.379164 25.882643 -21.917338 -10.223493 12.141619 7.147396 -7.848418 18.620334 15.017790 -16.167939 -4.226052 -21.949106 1.605141 -7.385856 -11.165590 15.416099 -17.731037 1.897145 8.885513 -2.371155 -7.838632 11.404182 5.561927 -3.235438 -7.155902 34.078722 31.725211 -16.550509 4.288088 -22.755101 15.681131 -26.008957 -15.434084 -4.490917 4.714138 -2.856515 -0.079161 2.322655 14.605577 13.772975 -15.447319 -13.177273 1.656040 +-3.834505 0.979907 5.527349 -8.787998 12.593770 4.808397 4.411777 0.215187 -10.151868 -12.146094 -0.289476 -14.120546 -19.106969 14.131093 -5.176424 5.122485 18.903958 0.374317 -0.550733 -9.800633 11.908214 -9.415197 22.623969 18.945375 -22.329340 2.081303 3.512220 12.901545 6.144444 10.323356 4.380609 -12.291990 3.205610 -4.553594 12.670607 -8.743416 -1.038591 1.417110 -2.759123 -29.067962 -4.926196 12.850815 -1.131449 4.219429 3.590062 17.194144 17.934343 13.440845 -9.218953 13.870699 12.929371 -1.350214 10.153273 1.869460 -1.994865 -2.378328 4.800735 -3.082981 -7.397163 2.944554 -4.081446 -18.273622 2.345844 15.424737 22.850756 -6.909249 -5.683789 4.819516 -0.179414 5.342513 3.944051 14.591449 5.891105 2.934506 18.288995 -12.362829 -2.453330 -30.506998 3.187727 -44.025432 -15.274085 -12.692946 15.107844 8.194836 4.610640 -5.468960 28.241347 0.899724 -0.827931 16.378217 18.834064 -10.251127 -2.970393 -12.791202 -5.820529 3.934225 -10.395805 -2.374360 7.018077 7.146210 -12.541091 -8.841443 4.933138 -3.731614 -10.108664 -7.243594 -10.059566 15.140168 -20.524869 -7.810132 -21.245897 6.182613 0.897030 -25.921622 -1.018563 -5.461259 7.220485 4.931494 -0.101722 -3.762955 5.390045 6.846787 -4.420201 -3.232070 -10.881755 18.772529 10.443349 -1.217204 4.087984 11.725056 2.750380 13.994307 15.444139 -4.317806 -10.370686 9.828229 -5.523201 3.103531 -9.201793 0.440382 14.343542 -13.639932 -1.827377 2.205043 -6.540653 -6.618935 0.510260 -10.376739 6.660046 39.715310 -3.259019 11.387029 7.426429 -13.365340 12.856036 -0.477064 -0.168320 10.413936 13.376192 8.752660 -15.966164 -11.734632 10.221873 20.115398 6.387284 -17.732432 -4.139323 2.560494 4.948169 -4.266314 6.505451 7.220816 0.253659 -6.689157 -0.128541 2.355661 26.999992 -8.538801 -10.446771 3.814447 10.832543 -6.345425 -17.828538 -1.630102 -9.018225 -6.661909 3.706717 2.353379 5.061095 18.190120 -32.126389 14.525073 -0.003164 -1.056854 11.369844 -2.441581 -3.404268 -27.880707 0.131308 8.758436 14.045292 0.579968 0.331101 -1.200908 -18.752718 5.483654 2.689240 8.577363 -9.449901 16.149284 -5.724403 -7.444180 -9.950486 -7.312248 -6.149734 -1.225440 -6.063057 7.795646 7.868903 -28.302424 13.700163 -7.216110 -9.957727 2.626697 1.293428 14.675390 -14.201231 -17.680403 8.401744 -7.605578 -18.989850 -13.727425 -4.919702 6.853668 1.481510 -5.107432 -10.985809 -20.121048 17.628023 -6.744880 12.435858 10.395441 1.233625 21.766556 6.343806 -13.962779 -10.666238 -9.616011 4.193926 -6.039509 -3.864865 -5.948143 -4.319364 9.986035 20.555458 0.275543 -0.449387 -3.927921 19.781721 -15.765425 -9.139385 9.576517 3.644461 -4.014717 14.766367 11.566268 -12.209808 -5.193899 -17.080040 2.332031 -3.815449 -8.152684 10.543970 -15.278063 0.270716 8.097482 -1.833642 -7.053740 8.670876 3.821148 -3.316376 -7.754525 26.347241 24.631096 -13.696005 4.731615 -15.913642 11.318369 -19.491781 -9.888088 -4.899473 3.286646 -0.700559 1.403821 2.902522 9.624506 9.296031 -10.820857 -9.746082 -0.832170 +-3.272204 -2.262881 -0.437473 -5.440124 3.802674 5.222759 1.843537 -4.364217 -6.477462 -3.393649 2.727632 -8.622994 -5.210370 7.764026 -2.870565 4.865956 8.820977 -0.151007 -3.128344 -3.158103 5.911412 -0.642931 10.429153 10.876030 -7.482287 0.144613 0.957248 3.600417 2.247563 1.303685 2.782534 -5.876764 1.822098 -5.011772 1.191524 -2.571640 -1.917098 2.169176 4.899519 -11.617984 -0.873344 4.113246 -0.218885 0.059384 0.522514 2.160122 6.474815 6.055206 -0.867217 5.844462 5.417105 0.455638 3.247641 0.027216 2.138754 -0.287780 1.602663 -1.174490 -0.718481 -0.934984 -2.191875 -1.549067 0.381426 7.981653 8.927493 -0.911081 -3.751022 1.847834 1.280010 2.490347 2.195795 6.317745 -0.205777 2.477760 5.258723 -7.774920 0.170392 -12.895491 2.085994 -12.961841 -5.589933 0.459197 5.563913 3.785157 3.613750 -0.636520 11.606062 -1.330995 -4.023386 7.393652 8.674213 -4.979524 -1.457100 -1.788735 -3.836975 0.513642 -3.400037 1.799509 1.048984 3.769262 -6.668821 -3.734212 0.837910 0.594089 -4.516380 -3.916925 -0.977949 5.713483 -7.012904 -3.821673 -3.496740 5.360380 -0.046373 -12.057986 -4.495561 -4.983279 1.915932 1.248101 -5.376230 -5.045681 3.270604 1.567279 -1.926239 -2.732748 -1.376564 4.859507 5.229219 1.946964 -0.566683 4.107380 2.276670 10.320689 2.277160 -3.814239 -0.002844 1.984937 -0.801382 3.531305 -2.737210 -1.097203 2.494322 -5.867566 0.790153 3.126242 -3.742118 -2.923191 2.056869 -1.500336 -0.634153 23.773604 -2.111472 8.403626 6.804920 -6.272630 2.498272 -2.702966 1.135091 3.015630 4.712335 3.797237 -9.097090 -5.697227 7.064096 10.840124 3.749855 -7.478633 -0.833432 3.293398 1.287079 -1.904748 4.196670 0.761911 0.749843 -3.930949 -1.015943 4.333959 13.182140 -3.981263 -2.173157 1.275026 5.216101 -0.610691 -6.173014 -0.782375 -5.944075 -0.259443 3.988269 1.947925 3.701901 8.422861 -12.234151 6.538436 -0.373848 0.181373 5.711217 2.625856 -5.587234 -8.895212 -1.677708 3.086690 6.094088 -0.892386 0.871980 1.050241 -8.939370 0.614572 1.884956 1.562104 -5.610545 7.789127 -0.309794 -3.549102 -3.052682 0.537079 -2.653544 -2.279803 -2.911373 5.544775 1.376142 -10.005380 6.327865 1.187410 -3.520788 0.017758 -1.493089 7.653618 -6.128478 -7.320775 4.620232 -3.598617 -5.140883 -2.365792 -2.482368 2.691296 3.013782 1.524105 -6.639892 -6.261977 7.485046 -2.469093 9.117889 4.211458 -1.427293 5.870385 -2.871180 -3.807570 -4.206783 -5.116622 2.378056 0.529286 -4.828480 -4.154482 -2.167429 5.548971 6.180109 -0.240321 -4.644214 -0.989751 7.642916 -6.486524 -0.637545 2.265441 3.052972 -5.245807 3.521454 3.826277 -5.279199 1.787562 -6.163752 -0.447839 -5.298874 -4.250575 6.023706 -1.911747 2.580370 0.510980 -0.780677 -0.422424 3.033941 3.260783 0.079097 1.834065 9.158723 6.830517 -2.416430 -0.867167 -9.325890 5.173326 -7.910504 -7.154521 0.809649 1.200636 -3.799311 -2.258420 -1.211096 6.374928 5.092730 -4.012807 -4.045138 3.228959 +-4.857831 -3.523797 -0.902439 -7.647481 5.219625 9.241885 3.087990 -8.472732 -9.215650 -2.965162 4.503750 -16.099236 -7.675646 11.534853 -4.594153 7.939541 13.634391 -0.407947 -6.062909 -3.952719 7.253483 2.410639 16.986682 17.324548 -9.935330 0.073438 -1.650416 5.382619 2.644996 -1.009365 4.405695 -6.822630 3.463802 -7.609246 -0.166032 -1.625426 -2.983820 2.473952 7.968844 -17.004617 -1.417560 5.428993 0.831388 -0.077091 0.744362 2.829764 10.276642 9.290261 2.212588 7.482442 5.864101 -0.422028 6.291863 0.458681 3.637515 -1.648408 2.871558 -4.555101 -2.205573 -2.473441 -2.964865 -1.178110 -0.611902 12.301906 13.228785 1.241904 -6.337468 2.870035 3.364295 3.161433 3.095796 9.792573 -1.381885 6.326878 5.823244 -10.845407 3.009875 -13.661455 2.605189 -13.596550 -8.610448 1.505578 8.425292 7.280715 5.852126 -1.317904 17.120933 -1.003121 -6.506371 10.617748 14.048783 -9.062167 -2.740805 -1.727017 -4.165927 0.175755 -4.533743 4.994331 1.357147 7.424858 -10.563368 -3.588065 0.940104 0.836450 -6.437253 -3.891833 0.155861 8.122738 -8.419522 -5.593697 -3.189776 7.979443 -0.083896 -18.286611 -7.173211 -6.306192 1.842407 2.206348 -8.636681 -8.199305 4.924549 1.167753 -2.318707 -3.175150 -5.161581 6.223823 8.019366 2.495303 -1.250247 9.020991 4.233283 17.082705 -0.022899 -5.506860 1.512653 2.174844 -0.541585 5.999575 -2.628434 -2.211247 0.924476 -9.617824 1.046751 5.644696 -5.842374 -3.453629 -2.050296 0.428929 -1.440985 33.925176 -3.002728 13.184509 11.147274 -9.628488 2.984320 -6.272443 2.106517 2.954211 5.459558 5.570851 -14.442428 -9.174913 11.151490 16.992468 5.654364 -10.320328 2.149364 5.352108 1.325479 -4.533706 6.772698 1.959583 1.201591 -4.901870 -1.233754 8.320371 20.426507 -6.022836 -1.486342 2.446402 4.141965 2.197170 -7.792496 -1.706631 -5.791548 -0.440946 5.463966 4.818749 4.922895 12.523394 -13.190851 10.237956 0.869268 1.137162 10.642636 3.877211 -9.837866 -8.825597 -3.843976 5.471693 8.046886 -1.988542 -2.162270 0.938841 -13.328527 0.436109 3.970866 1.860322 -7.539116 11.269688 0.078710 -4.697184 -4.231184 0.644437 -3.224087 -2.466170 -5.094782 9.166824 1.107924 -11.662217 9.801735 3.374590 -5.819471 -0.411216 -4.618061 10.841827 -9.008572 -9.742629 6.151280 -6.622158 -8.471898 -3.020031 -3.478725 2.693400 5.119125 4.160507 -11.432575 -6.470303 12.598747 -3.283046 13.981229 6.336770 -2.083119 6.600705 -3.868056 -7.116231 -4.137412 -10.345144 2.708959 2.586216 -8.208339 -2.972146 -3.207911 8.686799 8.884748 -0.866645 -8.732785 -0.708312 10.156914 -9.207133 -2.157442 3.324310 2.322493 -9.242295 4.200906 5.458892 -7.687183 4.028320 -8.090519 -2.596918 -8.959849 -6.870474 8.427840 -2.169778 3.924263 0.000613 -2.231806 0.600181 4.711189 4.211213 0.784202 4.932872 14.352168 7.045983 -1.272853 -1.118172 -15.030554 8.471439 -11.861886 -11.166807 3.077019 2.261819 -6.002575 -3.998596 -1.246287 9.095816 7.943592 -9.252161 -7.447445 5.917653 +-5.532700 -2.873799 -0.972573 -10.667296 7.204555 13.531816 4.253062 -10.575863 -12.430481 -5.810469 5.787801 -20.843918 -9.951502 15.677466 -5.469395 11.294482 18.888023 -0.778432 -8.045378 -4.876088 9.946259 3.834658 22.615356 22.885998 -14.228947 1.516810 -0.680480 4.000518 4.649097 1.081304 4.416616 -11.827788 6.773977 -9.860696 0.574528 -3.303994 -5.163371 2.036669 11.171563 -23.623312 -1.119016 8.302853 0.045212 -0.899260 1.475628 4.694469 15.743285 12.110501 1.962188 10.347803 7.931678 1.348932 7.109649 0.495495 5.751211 -0.681993 4.135337 -6.659484 -2.644607 -3.509650 -3.897941 -1.935315 -1.714746 16.458956 16.857547 -0.254154 -8.345119 4.410495 4.663860 3.483952 3.777988 12.954391 0.559351 7.706019 7.505533 -15.564047 3.043928 -17.565167 2.666719 -23.068128 -12.052113 1.605666 11.230871 9.090349 8.387341 -4.693251 22.856388 -3.178917 -7.820568 12.194118 19.351865 -13.223138 -3.263400 -2.564772 -3.844748 -0.049365 -6.460270 5.243990 1.888100 5.020007 -14.439251 -5.354326 2.559578 1.679216 -9.277469 -5.668743 0.641933 10.983728 -13.666097 -7.627148 -4.907880 10.056299 -0.657069 -24.897087 -7.680446 -7.686731 2.673703 2.968842 -11.535896 -12.648860 6.631175 3.094760 -3.672997 -6.527565 -6.440515 10.319802 11.460977 4.759905 -0.872975 10.710309 6.856176 24.014885 2.949948 -7.328665 2.304220 2.086011 -0.020479 7.881315 -2.999096 -3.322946 1.521982 -12.769971 0.043397 9.074628 -8.123669 -2.113594 -0.220381 -0.082828 -2.132061 47.542693 -5.102267 18.251899 14.492708 -14.124614 3.011643 -8.538934 0.708829 3.361752 7.676459 9.321609 -20.845294 -11.646910 15.028859 22.992104 7.830246 -14.936929 3.738233 6.372475 1.129713 -6.115052 8.738933 1.268910 4.208246 -9.235901 -2.354443 10.759641 29.315780 -8.925560 -1.457884 2.705645 5.599945 2.633457 -9.916708 -2.456455 -8.730770 0.453628 8.171688 5.088950 7.441279 17.081626 -18.456261 14.196327 -1.268608 -1.681213 13.909260 6.306830 -12.801922 -11.832126 -4.904810 8.022472 11.783584 -3.102755 0.932902 1.102638 -18.032563 -0.143803 4.068395 1.868598 -10.605647 14.111578 2.631052 -7.158989 -5.218958 1.114610 -2.952691 -4.551215 -6.487664 12.002253 3.703745 -18.335050 13.996678 4.796098 -7.657615 -0.364044 -5.440720 15.556991 -12.655525 -13.061596 8.583585 -8.150483 -11.490357 -2.674357 -5.190056 4.686965 5.925349 5.843835 -15.275724 -11.512746 16.854560 -3.343063 18.949817 9.209256 -2.126914 10.528173 -6.577244 -7.743323 -6.453987 -15.445106 4.061382 2.524911 -10.869824 -4.205972 -5.492125 12.051060 12.550312 -1.726182 -11.284918 -1.626424 12.197221 -15.464816 0.015952 5.012311 7.720563 -13.179335 5.040074 7.910882 -9.645345 4.932797 -10.795151 -4.014522 -12.047244 -9.024887 11.572486 -2.905530 5.348435 1.173891 -2.772488 -0.593903 6.068678 4.341621 -0.644366 5.833195 17.634990 12.244704 -3.577368 -1.942197 -19.337782 11.792017 -16.316625 -16.014348 4.578132 2.169623 -9.073632 -6.146432 -1.771136 12.783781 10.357643 -10.554757 -8.937697 7.743835 +-3.130535 -3.707145 -1.010759 -4.770868 2.788143 3.639929 2.082289 -4.268299 -6.914074 -2.728317 3.009642 -8.716445 -3.660025 7.560983 -2.293764 5.961478 9.044765 0.967330 -3.239651 -2.920123 5.330138 -1.047516 9.726804 10.798306 -5.924906 0.208984 -0.444208 2.340635 2.220048 0.341589 2.494006 -4.851197 2.603960 -5.703551 0.962302 -3.179970 -2.138250 3.513939 6.095180 -11.252931 -0.337395 4.023021 2.139410 -0.164922 0.644648 3.129075 4.994359 5.654835 -0.015626 6.513130 4.328465 -0.622849 3.674745 0.264183 2.422112 0.570294 1.372852 -1.278895 -1.274608 -0.486306 -2.267249 -1.276520 0.711654 6.907602 8.421054 -0.904470 -3.847303 1.702996 2.450362 2.266656 2.914741 5.723907 -0.451821 1.056411 4.077415 -8.633273 0.386788 -12.453263 1.743118 -13.444700 -5.280530 1.601252 6.177076 2.935492 3.617860 -1.132047 10.434408 -1.599764 -4.546134 5.900494 7.793568 -5.283275 -1.769535 -0.894828 -2.544292 0.154896 -3.078216 1.378487 2.975394 3.275248 -6.387110 -3.153213 1.859323 0.675634 -3.882570 -3.478155 -0.011629 5.616893 -6.220909 -4.602721 -2.636774 5.362111 -0.217023 -10.657776 -1.348380 -4.932131 0.550181 1.779017 -6.097225 -4.861160 3.409483 0.532533 -2.202912 -2.580106 -2.365709 4.914771 4.174575 2.220456 -0.760229 4.260779 1.470222 10.006435 1.644357 -4.498412 1.009575 2.214836 -0.950446 4.090618 -3.164260 -2.550894 2.908082 -6.050657 0.134308 2.002017 -3.967467 -1.654466 2.935996 0.283765 -1.350058 20.164281 -1.935866 8.468957 7.207438 -5.404793 3.227234 -2.602955 2.200492 2.676548 4.846899 2.797813 -8.874391 -5.625147 6.353730 10.356232 3.890627 -7.279139 -2.048600 2.805103 1.560088 -1.193571 3.845373 0.748442 1.183668 -4.109919 -0.676380 3.206526 12.784610 -3.939607 -0.001655 0.517894 4.187774 -0.526651 -7.200755 -1.130596 -6.724238 0.019757 2.158198 2.312681 3.203253 7.793604 -11.204167 6.680529 -1.384824 0.562361 6.159002 3.099735 -5.896673 -10.145111 -2.890665 2.115735 6.369823 -1.119471 1.013163 2.094914 -8.398634 0.387212 0.953328 1.061264 -5.101650 6.878320 -0.332120 -2.685165 -1.623434 1.411112 -2.032805 -3.254375 -1.779540 5.756444 3.405067 -7.980812 4.848541 1.325700 -3.530404 0.705197 -0.605680 6.976064 -5.385849 -5.734202 4.007604 -3.197165 -4.492890 -2.796447 -2.167721 2.414963 1.507590 1.215445 -5.399399 -5.795758 7.427158 -2.926962 8.973119 3.866731 -2.690385 4.793928 -1.747074 -3.746790 -3.426196 -4.687742 0.024880 -0.183783 -3.905109 -3.643834 -1.850122 5.453226 5.360272 0.606173 -4.379320 -0.335367 7.188936 -6.719934 0.039470 2.671361 2.506300 -4.406855 3.457284 3.923244 -6.068618 2.468216 -5.130839 -0.972503 -4.590592 -2.820678 6.205727 -1.273834 2.545193 -1.187683 -0.777265 0.489312 2.811355 3.389726 -0.420939 2.036943 9.184255 6.155806 -1.373335 -1.155057 -8.485732 4.520720 -6.981717 -6.051818 0.384077 2.541596 -5.353399 -1.754040 -0.074169 6.186117 4.929687 -4.405893 -4.579551 3.396660 +-4.702503 12.569119 16.065908 -15.662183 21.372507 16.323984 7.393370 -1.198145 -17.905404 -21.147387 -2.598802 -32.017530 -34.134631 29.249947 -7.423720 5.027123 42.095497 4.273234 -3.225538 -13.016951 14.187211 -12.228361 42.698331 43.159955 -37.761560 7.728396 10.534156 17.652590 5.016280 23.593999 -2.839697 -30.482768 7.565705 -5.697138 16.628094 -15.052132 -7.013491 -6.262982 -3.703700 -58.619780 -5.366576 19.524532 -3.909441 0.819366 5.191233 19.039773 45.980661 23.143529 -9.080018 17.544265 17.794147 2.334204 14.665660 2.746876 7.735141 -0.531679 16.325845 -6.112812 -13.570400 4.770584 -5.780291 -29.627806 -4.564919 31.134125 37.902380 -3.935151 -11.513889 1.427389 -2.137107 6.007163 0.667556 22.998376 13.649471 16.322737 24.108730 -20.894815 2.566081 -48.893597 3.158419 -71.433392 -30.697835 -21.226235 27.004525 17.096894 9.725781 -9.942506 47.576331 -2.612367 5.293080 20.811022 45.090577 -24.445931 -8.374474 -17.177078 -10.972603 10.127866 -15.614100 1.818564 4.723941 2.189616 -26.647046 -20.762279 16.695511 -2.374202 -20.253371 -3.878315 -9.140344 26.662824 -36.438823 -11.945386 -37.218763 2.802166 2.357849 -49.085412 -6.912651 -6.345339 12.890780 13.468173 -11.572142 -20.544756 11.463724 14.218064 -8.986855 -10.108690 -22.256077 34.070706 16.605192 -1.520434 7.894499 14.839031 15.184245 31.532406 25.186328 -9.690235 -7.712993 11.311628 -11.061679 0.734122 -13.892463 -3.372362 11.123308 -24.038541 -1.355346 11.705002 -18.318855 -7.224325 -4.226913 -15.231329 11.269825 83.352746 -9.671143 23.458357 12.300842 -31.839426 21.833438 -6.371339 -10.781374 9.109050 24.050610 25.478928 -33.827843 -20.182544 19.069632 42.714725 15.544108 -29.687576 -1.228894 1.240993 2.479773 -8.456394 18.535140 6.137718 4.587035 -16.493789 -4.486813 15.733439 56.039043 -16.408924 -30.118285 4.784799 9.544471 -0.133967 -28.117905 -0.112045 -12.519549 -4.548581 7.100487 0.563929 13.773435 35.724928 -63.135722 30.679601 -3.673814 -12.870898 27.589571 -0.803181 -11.456622 -34.688532 5.705017 25.384327 30.725334 5.683921 -1.265425 -6.839476 -35.213953 -0.825540 6.398669 15.667508 -21.479872 29.981626 -1.745237 -23.488279 -20.009209 -17.937449 -5.780694 -8.318884 -17.436579 15.708105 11.355741 -58.860532 34.943974 -1.428179 -14.921496 1.127900 -7.299907 20.702108 -30.991650 -37.010853 12.586613 -14.944268 -29.994653 -12.697513 -13.109857 12.966113 5.845371 -2.794473 -22.343538 -33.834637 32.775591 -4.366827 27.649870 21.604768 6.429170 36.444559 15.718566 -21.603153 -15.417911 -17.972232 15.198835 -11.522280 -13.083172 -9.712328 -15.691853 20.513803 43.015324 -2.613922 -5.732148 -12.843233 31.259515 -27.933251 -13.382439 17.362358 6.010306 -12.357960 17.274436 21.855719 -21.140324 -9.268168 -29.575449 -4.014433 -9.689805 -22.283847 14.728474 -27.599979 0.972080 20.613484 -9.783191 -15.314473 15.827543 1.311564 -5.212058 -4.678017 38.783144 38.746076 -25.440876 13.620353 -32.183712 22.062909 -40.284712 -25.488876 -1.347281 3.654848 -8.424228 -6.493964 1.016113 14.564106 10.219903 -14.353673 -15.146907 2.524589 +-5.395504 -0.741727 2.326881 -8.720769 8.154186 12.902866 4.473088 -7.593669 -11.796530 -4.877325 5.755317 -18.899725 -14.097787 16.893049 -6.179123 6.927449 19.646380 2.894452 -6.753774 -5.620398 9.021414 0.411702 22.739799 23.571470 -15.219462 2.495925 0.282846 5.643898 1.151309 4.738121 2.515404 -12.967030 6.003289 -7.084403 2.898135 -5.634564 -5.425524 2.384420 6.981666 -26.310595 -2.458909 8.767236 -1.151498 -0.434634 2.662525 8.481496 15.882238 12.636922 1.723991 10.069812 7.850686 -1.190045 10.525863 0.463961 6.841838 -1.632438 5.741008 -3.223054 -2.700147 -0.782284 -5.136193 -4.550802 -2.310449 16.359577 19.185155 -1.052520 -8.988298 -0.200907 1.964673 3.769560 1.701751 12.732123 3.190534 8.607688 7.185435 -11.594392 1.104485 -21.401633 3.403929 -25.143823 -13.022103 -0.633004 12.716221 8.991850 5.930325 -4.672452 24.278013 -0.958920 -5.832200 13.874539 22.302207 -11.351445 -3.912524 -1.648769 -5.732719 2.046958 -5.816505 6.371642 3.255879 4.314770 -14.953586 -8.606419 1.549970 -0.482932 -8.495413 -3.445198 -1.089222 12.760189 -13.192214 -5.759022 -9.250127 8.587426 1.406404 -26.352180 -8.079369 -6.203118 4.118726 6.051588 -12.543172 -10.013478 8.434046 2.824202 -3.465418 -4.530078 -6.017808 11.834313 7.654274 3.998677 -0.658329 8.921813 6.816665 19.149337 4.492434 -7.914623 1.600408 2.578724 -2.282053 8.090963 -4.908391 -1.691213 1.785723 -11.656817 1.991824 5.331812 -8.937145 -3.608341 -2.982576 -1.266402 -1.886718 45.934537 -6.378592 17.879879 11.477246 -14.568903 7.438942 -6.580953 -0.815061 3.313216 9.605550 8.646004 -20.087951 -11.996162 13.695907 24.800801 8.383271 -16.522011 3.067759 5.173051 1.404320 -6.853785 12.342286 2.309765 2.339592 -7.375384 -2.387680 10.152274 28.064140 -9.169588 -10.145369 0.133285 6.842333 5.259284 -9.540150 -0.733655 -6.782349 -0.568647 8.437961 3.537064 7.117312 15.646949 -25.465449 15.634518 -1.197503 -2.093075 15.444121 4.288576 -11.356467 -12.855679 -2.625481 7.798263 13.249424 1.259421 -2.777664 1.247694 -18.697665 0.113574 4.422998 2.938620 -9.794615 16.453182 0.624200 -9.154937 -7.163862 -3.234699 -3.191372 -5.220676 -8.853314 13.487869 2.703124 -24.309456 14.226791 5.008662 -7.053895 -1.718202 -3.965388 12.856703 -13.031940 -17.022678 8.521603 -7.894300 -11.235725 -5.194049 -6.790452 5.743173 6.195103 4.899414 -13.243482 -12.568895 17.623315 -2.184198 18.781488 9.407617 -0.792902 13.667866 0.084543 -10.912104 -6.059996 -14.022676 8.624045 -0.366389 -9.664577 -4.457535 -6.318040 11.816124 12.873490 0.328859 -9.848402 -5.988293 15.605973 -12.330922 -1.776184 4.321403 4.108696 -7.544588 6.019656 9.490670 -9.592033 2.503256 -12.972981 -3.084064 -12.247799 -9.253750 11.475224 -6.191673 4.537203 1.020032 -3.903646 -2.186451 6.296241 5.019780 0.280690 5.487420 17.286521 14.450030 -5.602426 2.711123 -18.093580 12.130602 -16.089864 -13.163972 1.965196 1.331021 -7.527385 -4.048237 -1.303283 10.876006 9.101027 -12.028821 -9.864970 8.861407 +-1.315630 10.224615 9.099564 -10.029018 10.446033 9.398784 2.031982 -0.826810 -6.586949 -10.331416 -2.906996 -13.120932 -15.470644 12.620351 -3.701573 -0.836933 20.407809 0.205090 -0.867983 -7.072603 8.396297 -3.980035 19.077957 20.787419 -20.659920 3.964375 11.960154 8.344409 5.326195 10.114996 -1.493526 -15.972380 1.059903 -1.526696 10.086011 -8.006264 -3.545858 -6.273116 -1.031957 -29.000780 -3.086567 5.124776 -6.199291 0.412177 2.702875 8.515927 24.823119 10.491991 -9.054164 5.360538 11.932820 6.125416 3.439924 -0.343255 1.492658 -0.670115 8.448905 2.327421 -2.233441 2.374868 -1.049360 -9.660920 -0.618386 17.092453 18.122643 -1.488435 -5.135438 1.463804 1.702770 1.549645 -3.146487 11.809719 7.007415 11.347496 11.638091 -14.744643 -0.023621 -32.753156 3.910437 -36.535124 -14.768011 -12.106017 8.905251 2.708400 3.918791 -3.128894 23.271694 -0.732561 5.317349 13.010070 22.121375 -9.789712 -2.017684 -10.359530 -9.526781 6.176081 -6.279627 2.720368 0.272447 -0.489562 -11.976236 -13.631169 6.429768 -1.143447 -10.862132 -3.517290 -4.020077 11.637808 -15.148073 -3.874483 -17.144393 1.948923 0.786337 -24.834374 -6.701149 -5.966884 10.527590 3.703715 -4.352114 -12.304653 2.793695 9.050573 -5.573183 -4.918694 -7.297375 15.571685 11.942273 -1.153426 2.876631 3.741614 9.521401 14.080074 13.396917 -5.341876 -4.534092 4.619670 -5.919329 -3.514944 -9.329665 1.393013 8.615399 -9.044477 0.697382 8.443129 -8.294498 -5.854215 5.678344 -13.063063 6.509887 50.707382 -5.055949 10.490277 4.572634 -16.349146 8.621045 -1.569412 -8.718326 5.215569 11.772994 15.183879 -20.481456 -8.957153 8.487566 20.836879 6.647472 -14.875719 -2.875235 1.221963 -3.365364 -4.855190 8.743963 0.278079 -0.674898 -6.638454 -3.546676 10.586560 25.732142 -6.044374 -17.264091 0.255650 10.884511 -1.072407 -11.880237 0.994039 -8.404037 -0.921722 7.175826 -1.118882 10.625560 16.860660 -39.004796 12.995946 0.035749 -6.837564 9.808110 1.335063 -5.025792 -16.839427 7.531154 14.381623 13.407141 0.951719 1.471394 -4.456236 -16.773697 -0.797889 4.150845 8.205549 -12.639448 14.455172 1.089552 -12.467072 -10.677043 -6.354899 -4.356485 -4.757754 -8.705301 6.691438 0.354201 -32.520105 19.468791 -1.410940 -5.179763 0.051012 -8.651274 10.541180 -16.539454 -18.363387 6.511062 -3.750022 -9.829196 -3.709078 -7.496039 9.008616 3.268887 4.091858 -13.390696 -19.906096 12.479047 -1.681241 12.721096 10.908255 5.535144 18.942699 -0.489472 -6.959509 -11.603977 -8.864198 11.649162 0.476546 -8.245631 -8.156681 -8.372274 8.588754 21.758430 -5.280391 -2.985399 -6.714527 13.383295 -15.354234 -4.697686 4.928807 6.321322 -8.060541 5.738317 7.819801 -8.743623 -5.513710 -15.645256 -1.107613 -4.087120 -11.676315 6.755183 -13.354493 -0.405613 12.658396 -5.961708 -7.271606 9.223908 0.589936 -0.495296 -0.365174 14.154652 21.712466 -13.047386 4.787815 -16.061938 10.693858 -21.091365 -14.866406 -0.439643 -3.586771 -1.595391 -4.654217 -2.799728 7.430727 3.395274 -1.898350 -4.624526 1.900054 +-3.391513 -3.680702 -1.970090 -4.498972 3.296131 4.403313 2.171176 -4.477121 -7.052510 -1.193291 2.698608 -9.412143 -3.960725 7.821405 -2.376065 5.862557 9.537123 1.260035 -3.607120 -2.397279 5.530501 -1.317236 10.166105 11.305751 -5.723897 -0.093845 -1.338768 2.920834 0.823192 0.127915 1.999631 -4.126865 2.043992 -6.318340 0.533658 -3.129405 -1.821975 3.552248 5.836062 -11.651652 -0.565626 3.750633 2.664564 -0.105283 0.095315 3.474064 5.409172 5.912230 0.405436 5.691983 3.765069 -1.375964 4.174202 0.458894 2.394719 0.774847 0.927809 0.120337 -1.774417 -0.874021 -2.412069 -1.074686 1.031390 7.170283 8.843518 0.279352 -3.970712 1.871435 2.085832 2.165579 2.676021 5.766247 -0.827119 1.497852 4.075128 -7.591625 0.844673 -11.468501 1.867823 -12.027829 -4.827541 1.202770 5.903953 2.943436 3.856987 -0.920495 11.060258 -1.318060 -4.306488 7.307288 8.377741 -5.836085 -2.112316 -1.662191 -3.550093 -0.014638 -2.641353 1.661008 3.933089 4.288161 -6.760449 -3.425499 0.932919 0.861225 -3.771455 -3.490369 -0.039220 5.489182 -5.391074 -4.539031 -2.680042 5.079110 -0.416046 -11.163422 -2.468306 -4.972116 -0.445314 1.746165 -6.208338 -5.320107 3.508613 0.660326 -2.216751 -2.062944 -2.281468 4.741906 3.654563 1.344153 -0.764606 4.566951 1.335045 10.067166 0.583525 -4.586029 1.037097 2.493530 -1.358959 3.742435 -3.372628 -2.686254 2.930035 -7.048820 0.689451 1.740374 -4.146409 -1.469268 1.868390 0.548790 -0.881036 20.632369 -1.907365 8.550522 6.700650 -5.954389 4.459073 -2.626811 2.400534 2.611120 5.020074 2.386006 -9.088275 -6.184910 6.460317 10.716512 4.064979 -6.923722 -1.594223 2.557016 1.423825 -1.116041 3.778757 1.198915 0.097364 -3.135384 -0.652502 3.537429 13.659747 -4.051813 0.419285 1.270763 3.999787 -0.362968 -7.288753 -1.322407 -6.987533 -0.419803 1.588923 2.491327 3.371524 8.232749 -10.276432 7.052653 -1.464884 1.022660 6.354596 2.454779 -5.830017 -9.541119 -3.081121 2.699698 6.610732 -0.860298 -1.329605 1.605183 -8.454790 0.440202 1.772033 1.646376 -4.992610 7.427145 -1.187579 -3.085232 -2.015031 1.249597 -2.659217 -3.004802 -2.043869 5.808913 1.763128 -7.046340 5.394041 1.740657 -3.449581 0.573894 -0.519589 5.543805 -5.444222 -6.574001 4.076330 -2.989244 -4.080694 -2.752754 -2.103888 2.524817 2.289846 0.720607 -5.998285 -6.265957 8.049346 -3.014466 9.268846 3.857177 -2.429068 4.425995 -0.857590 -4.930695 -3.571294 -5.208567 -0.439023 0.146565 -4.083502 -2.690092 -1.801493 5.868595 5.558717 1.147220 -4.710627 -0.094602 8.138856 -4.406492 -1.016535 2.893332 0.090248 -4.663378 2.938275 4.221833 -6.362939 2.046706 -5.320217 -0.692028 -4.784279 -3.294114 5.719715 -1.932715 2.362836 -1.084258 -1.071215 1.067638 3.000692 3.718532 0.358118 2.536785 10.466082 3.738822 -0.933904 -0.673123 -8.895762 4.947559 -7.358632 -5.909747 0.273909 3.311777 -4.988267 -1.591941 0.535311 5.929194 4.439229 -5.394196 -4.707350 2.862751 +-24.209947 65.587332 70.463162 -80.051141 124.265727 89.775724 43.801282 -2.041613 -93.600044 -113.450732 -10.673774 -182.605947 -194.277065 149.425592 -35.852251 36.491824 225.775896 9.290047 -12.672690 -73.099572 77.178158 -50.240818 237.779172 232.746579 -209.141381 44.695366 54.092922 85.595609 22.174743 108.287244 -8.983986 -175.387075 45.728045 -36.767080 91.353183 -69.115398 -43.548044 -40.164694 -4.655063 -317.479207 -36.483029 112.787756 -29.838770 10.700068 31.675866 123.490860 251.627760 126.974512 -60.633860 109.220248 101.753815 2.870881 85.250479 12.892345 25.566210 -12.377089 70.346275 -23.029122 -76.262715 22.077061 -32.804060 -149.994637 -25.793276 166.251308 205.801483 -31.964338 -74.120642 20.931946 -1.765655 31.164363 -1.880436 140.665570 86.839064 86.801063 144.949846 -108.254519 -4.200697 -275.719020 19.423134 -403.090325 -177.685940 -115.424704 151.141533 83.478726 56.943530 -64.925171 272.559688 -13.019174 23.114570 127.197562 241.765517 -134.709277 -42.143907 -97.157972 -53.369428 47.877635 -84.161753 12.253605 43.146292 8.941169 -150.915390 -112.260976 81.239112 -22.793242 -111.070751 -38.316644 -52.424212 135.248587 -190.068183 -65.864450 -213.768320 26.348196 18.887474 -274.795874 -42.110706 -18.851352 65.928962 75.928328 -59.995370 -106.550843 61.080735 65.440585 -55.773305 -56.012844 -102.225461 189.628074 106.426939 -3.157803 54.787941 96.072657 87.426992 180.840237 144.053759 -50.883093 -52.463898 63.070196 -51.099216 14.228527 -70.628726 -11.470528 69.047970 -133.739775 9.989304 62.675132 -96.136557 -41.603757 -17.391508 -90.242583 52.956201 452.190516 -55.559843 136.722823 71.621956 -169.382461 123.744661 -47.505008 -58.398743 51.908543 132.297671 142.829924 -180.643851 -106.847166 115.456635 236.673928 79.891068 -178.025167 -0.958705 25.462602 24.036862 -58.799622 102.788694 42.392617 43.405383 -87.359544 -17.662744 89.842183 312.023137 -94.274110 -160.286076 27.356806 76.967157 11.324329 -150.740855 -5.290232 -81.543599 -37.360817 59.347907 14.488504 72.561415 193.371974 -343.682194 157.821098 -11.795880 -64.662161 146.585963 8.800122 -68.614413 -194.103628 26.450570 135.141638 158.949758 30.433977 -1.462860 -43.646204 -190.707416 5.414628 39.233715 80.204500 -118.042454 171.499239 -21.787439 -120.121284 -101.178619 -98.211006 -38.866646 -42.706336 -91.940636 88.273658 70.425947 -328.066566 185.194808 -10.613096 -92.515832 1.590587 -43.494215 127.116174 -161.925238 -198.557053 74.755961 -92.065262 -170.894595 -68.635505 -72.676518 59.671373 40.967423 -2.883891 -124.469580 -198.271700 192.961586 -13.721461 159.513706 120.567309 30.612928 206.906879 61.243871 -131.407056 -85.493121 -118.964961 94.120638 -53.120547 -71.624734 -56.934312 -85.350559 107.819991 227.803034 -19.764472 -32.000960 -84.702533 162.594210 -168.995923 -62.547341 95.683878 46.061720 -68.694638 99.804838 120.904858 -107.513840 -40.993383 -169.713408 -13.115818 -64.414724 -114.087438 78.342945 -154.361908 -3.975273 112.746850 -61.848664 -76.898470 83.678623 8.040114 -29.984568 -34.203125 212.084018 223.788796 -144.457887 68.010385 -179.004926 124.818621 -217.750803 -145.289302 -3.703516 9.422055 -45.732441 -41.589426 11.640818 79.065108 56.327858 -97.283330 -96.704293 19.511609 +-2.062111 -0.252089 1.002827 -4.467597 4.072262 4.288756 1.081501 -3.041209 -4.857677 -3.351124 1.561219 -6.960042 -5.030485 6.308745 -2.230246 3.174747 8.343688 0.006517 -2.031257 -2.912901 4.643037 -0.809796 9.133446 9.789380 -7.203854 0.586773 1.797771 3.231225 2.665444 0.902789 1.394632 -4.493681 1.830997 -4.190155 1.256085 -2.483785 -1.410218 0.212462 3.460208 -10.347373 -0.611197 1.365505 -1.848372 0.543303 0.341671 3.809326 7.197388 4.496219 -1.856827 4.648801 5.115675 0.815191 2.093102 0.159901 0.487286 -0.621671 1.401659 0.617713 -0.956238 -0.729422 -1.165064 -2.070843 0.297863 7.093969 8.098329 -0.503601 -2.916067 2.052995 1.735741 1.590568 1.465481 5.219444 0.919730 2.889227 4.905622 -6.823988 0.345512 -13.023232 0.924509 -12.682732 -5.485820 -1.235898 4.912122 0.894488 2.753091 -0.629580 9.458890 -0.267666 -1.626436 7.255157 8.371160 -4.734597 -1.413043 -2.220797 -3.437176 1.211225 -3.222406 1.980482 1.285323 2.322236 -5.766561 -4.735627 1.698977 -0.018619 -4.087162 -3.149567 -0.520086 4.998677 -5.730067 -2.942739 -4.208264 3.248891 0.084713 -10.698734 -2.837925 -3.501503 4.216885 1.400170 -3.728652 -4.676775 1.904158 1.991217 -1.985571 -2.234448 -0.818234 4.570004 5.134125 1.214955 0.207183 3.152729 2.848757 8.562246 2.909706 -3.230759 -0.493018 1.391749 -1.355765 2.085897 -3.280147 -0.889446 3.816259 -4.718072 0.959927 2.985659 -3.512410 -2.782944 3.995966 -2.392824 -0.220276 19.750833 -1.627873 6.815897 4.885219 -5.826944 1.539164 -2.417122 -0.031947 2.855498 4.469692 4.366370 -7.943523 -4.685970 5.156249 9.307710 3.241469 -7.666014 -1.228718 2.391658 0.035588 -2.051926 3.252832 0.505215 0.888032 -3.374946 -0.945176 4.638498 11.535684 -3.491734 -2.225732 0.790080 4.251941 -0.282122 -5.535423 -0.807123 -4.222306 0.075262 3.272667 1.738677 3.416416 7.394801 -12.572849 4.685519 -0.287079 -0.440234 4.283012 2.797290 -4.795585 -6.901353 -0.181690 3.814863 5.168924 -0.052599 1.035404 0.520552 -7.654354 -0.101631 2.089601 1.830782 -4.657311 6.387141 0.782503 -3.122357 -3.185197 0.157726 -1.554586 -1.647287 -2.167504 4.560159 0.112226 -10.511019 6.270320 0.227315 -3.356246 -0.577275 -2.167339 6.775432 -5.749849 -6.385879 3.491115 -3.009338 -4.446734 -2.521116 -2.017057 2.631662 2.504891 2.292819 -5.874961 -6.222081 5.461745 -1.548360 6.917138 4.007118 -0.369315 6.714135 -2.889755 -3.175970 -4.231860 -4.038321 3.707372 0.798004 -4.376856 -2.121976 -2.195692 4.423003 6.767975 -0.991527 -3.548578 -0.314861 6.168715 -6.140688 -1.507601 2.250728 5.012289 -4.295594 3.339195 3.382167 -4.206789 0.722311 -5.245112 -1.066923 -3.431533 -4.246781 5.004305 -2.158780 1.641879 1.773646 -0.464509 -0.392897 3.578939 1.625580 0.375265 1.183410 7.254742 8.985077 -3.590792 -0.603504 -7.982252 4.904514 -7.937552 -6.525615 0.679891 -0.378134 -2.622698 -1.805522 -1.239313 4.948519 3.075297 -3.604092 -3.578209 2.674108 +-7.293386 -4.227943 -3.735530 -12.780425 10.387161 16.933617 4.766721 -13.429482 -17.159303 -7.327617 9.278516 -27.072796 -14.853650 20.242858 -7.648632 11.599263 23.915592 -3.277218 -9.395337 -9.627462 15.163349 5.472427 30.639850 31.691549 -22.047882 2.096488 3.859368 5.692938 9.799567 -2.112000 7.792123 -15.937231 7.767780 -13.862399 -0.279447 -4.624290 -6.949459 1.191697 16.267432 -31.386539 -3.131424 7.884937 -4.011706 0.819657 1.948615 14.123265 20.775967 16.272091 -3.532071 18.151746 15.877315 1.808783 7.930330 -0.883659 3.749028 -5.583537 5.526886 1.365928 -0.862440 -4.456057 -4.302194 -2.030065 -2.755738 22.833085 24.711531 -1.631490 -11.949093 6.312122 6.299056 5.476377 4.804028 19.243262 4.265933 10.796925 15.504678 -18.417686 -0.419259 -35.236945 4.413741 -40.547050 -14.937183 2.640495 17.605812 2.270928 8.544019 -1.088221 32.336163 -1.405681 -11.682917 24.124954 25.394328 -14.419966 -3.559254 -1.353097 -10.819080 1.965181 -8.972010 11.199999 4.454914 9.014718 -19.157793 -11.775671 0.126576 -0.304964 -13.405183 -10.201707 -1.323889 11.610201 -19.923095 -6.057045 -7.660861 12.790985 2.042078 -34.415735 -19.524912 -11.593711 11.851745 3.721679 -15.187209 -13.013885 7.220723 1.405341 -5.346584 -7.040861 1.337163 10.352605 17.397505 9.062465 -1.235701 11.832361 10.784009 30.760278 5.329823 -10.619002 1.294366 2.668491 0.879841 11.605897 -6.179534 -1.812321 8.527997 -14.842411 9.518656 9.647870 -10.291151 -10.786621 8.343935 -4.620549 -4.255292 64.530522 -4.599923 25.319727 20.300985 -17.794290 -1.184422 -12.395354 1.587771 9.073734 12.052492 12.770522 -20.985915 -14.632590 20.829917 31.490275 9.498926 -24.922709 3.482936 13.525070 2.286088 -8.705375 12.965842 1.013332 4.595767 -10.265953 -2.723951 16.681446 36.221886 -11.269319 -6.069135 1.828464 15.069099 3.237290 -10.969234 -0.935560 -11.121765 1.062628 16.665615 6.743343 11.286257 22.474003 -36.806991 16.630129 1.018318 1.428665 12.453457 13.070368 -19.012275 -15.524856 -2.894087 9.006354 13.979436 0.032702 0.544546 2.780240 -24.643882 0.710693 7.722710 1.530893 -16.097987 21.987547 3.363000 -8.503983 -8.350917 1.983864 -3.748566 -3.533513 -8.614499 16.805286 -2.281295 -33.884678 17.521006 3.971392 -11.892458 -5.463742 -8.823731 20.839324 -17.574887 -19.310350 11.657127 -13.112955 -16.926351 -5.802074 -7.914953 5.031504 11.919811 12.800553 -21.048762 -18.479386 24.272792 -6.021443 25.415378 13.065248 -3.804414 18.294615 -19.125541 -10.129346 -13.873470 -14.891355 12.705389 3.817648 -15.201424 -5.610052 -6.853264 13.644376 16.756160 -4.223346 -15.190100 -3.776926 17.447274 -20.093389 -1.632989 4.578780 18.203171 -16.298498 12.672624 8.796309 -12.931220 8.835858 -16.567093 -6.052976 -16.163571 -11.769526 17.305726 -4.034767 6.854452 2.500504 -3.213331 -0.226197 9.818969 5.103088 0.563053 7.215507 21.993255 24.861529 -9.621170 -1.903239 -27.581843 16.663042 -22.702350 -24.484002 6.453253 -1.456518 -10.616485 -9.367758 -6.577728 17.188467 15.066055 -15.619838 -13.636319 14.822824 +-3.708219 -3.063929 -0.745908 -5.915641 3.646625 6.764759 1.989038 -5.318066 -7.464237 -3.217862 3.267838 -10.193820 -5.182231 8.698049 -3.519196 5.968709 10.450452 0.338889 -4.023860 -2.964797 6.969645 0.241364 12.251797 13.064502 -8.435343 -0.067103 0.662471 4.523831 3.265699 0.666801 3.417546 -5.788826 2.469252 -6.575893 0.425402 -3.679063 -1.775927 2.928776 6.104326 -13.541327 -0.946696 4.018154 -0.297122 0.120631 0.615899 2.172288 7.085989 7.125633 -0.916495 6.685193 6.059066 0.650916 3.677424 0.121785 1.510477 -0.434319 1.218322 -1.362457 -0.752494 -1.494710 -2.028349 -2.040839 0.670530 9.309898 10.621006 -0.326832 -4.052059 2.289335 2.196089 2.402678 2.842398 7.140177 -0.911241 3.236097 5.617417 -9.300740 0.779131 -14.052221 2.320850 -13.213208 -5.984541 0.571277 6.458104 4.622852 4.441841 -0.627559 12.973346 -1.680011 -4.559089 9.528591 9.832137 -6.415421 -1.785275 -2.213196 -4.413022 1.048274 -4.262881 2.506079 0.663699 4.844578 -7.450719 -4.759702 0.581545 1.100874 -5.132745 -4.408762 -0.819453 6.374513 -8.076262 -4.988565 -3.320562 6.066802 -0.431414 -13.925638 -5.978444 -6.022717 2.702005 1.465509 -5.982972 -6.178617 3.274254 1.717195 -1.567130 -3.196628 -1.609250 4.970543 5.917673 2.105019 -0.908162 4.671151 2.539732 12.356109 2.132680 -4.525295 0.307830 2.358468 -1.149585 4.088586 -3.763027 -1.477042 2.524281 -7.305906 0.610275 4.416194 -4.506477 -3.402735 2.119228 -1.002908 -0.612409 28.032088 -1.565159 9.711154 8.639232 -7.309205 2.498188 -3.360575 1.679272 3.906676 4.775002 4.252614 -11.586279 -6.583112 7.422960 12.515881 4.404148 -8.357719 -0.762205 3.715510 1.494344 -2.243240 4.565072 1.090418 0.539053 -4.624739 -1.029913 5.772067 14.891844 -4.361338 -1.543540 1.359983 5.087598 -1.125605 -7.300635 -1.078406 -6.441726 -0.123784 5.040799 2.385826 4.035648 9.592517 -12.756192 7.466988 0.002389 0.956597 6.274894 3.330791 -7.025905 -8.490553 -1.873107 3.552234 6.635273 -1.367347 0.448370 1.851163 -10.376669 0.437890 2.779723 1.627163 -6.152755 8.830680 0.462722 -3.690024 -3.743548 1.324028 -2.716420 -3.062430 -3.174667 6.842812 0.486265 -10.009039 6.965260 1.233565 -4.518637 0.412527 -2.469705 8.673854 -7.692782 -8.219918 5.570614 -3.635594 -5.771964 -2.851405 -2.520970 3.355405 4.383894 2.019886 -7.938765 -7.413410 8.256024 -2.801606 9.939461 4.806876 -1.856202 6.283540 -3.639721 -4.059845 -5.357377 -5.932949 2.355291 1.169410 -5.745952 -5.371826 -2.286970 6.607015 7.526404 -0.578544 -5.823260 -0.596344 8.885233 -7.307047 -1.261960 2.399430 3.944634 -6.326772 3.632472 4.049610 -6.808153 2.451155 -6.485005 -0.600432 -5.327889 -4.817104 7.346171 -2.127830 3.390891 0.526161 -0.778011 -0.013627 3.787239 3.857073 0.414996 2.748511 10.812391 7.171239 -1.830778 -1.034733 -10.938899 5.792296 -9.655652 -8.462132 1.179453 1.418328 -4.464255 -2.164969 -0.962441 7.634280 6.237994 -4.964696 -4.567845 3.824517 +-2.156753 -1.586252 -0.338592 -3.591069 2.748440 3.747271 1.545795 -3.066295 -4.670886 -2.204580 1.908422 -6.337085 -3.508816 5.693865 -1.848479 4.036708 7.106744 0.411419 -2.089371 -2.274041 4.154283 -0.312415 7.975927 8.438619 -5.497129 0.336219 0.796669 1.934935 1.905003 0.613324 1.391633 -4.332492 2.343409 -4.189623 0.709279 -2.497766 -1.421586 1.516335 4.226897 -9.002309 -0.502001 2.263410 -0.110975 0.006207 0.407090 2.657546 5.015013 4.521154 -0.760633 4.770028 3.747271 0.158598 2.256350 0.261050 1.371776 0.109008 0.907362 -0.525040 -0.879938 -0.538185 -1.384959 -1.530129 0.089808 5.691160 6.795784 -0.706365 -2.666805 1.652402 1.403235 1.401648 1.648607 4.493987 0.528099 1.691768 3.657847 -6.500852 -0.192630 -10.078807 0.859015 -10.925956 -4.351977 0.065497 4.324797 1.469920 2.958588 -0.882257 8.292806 -0.734012 -2.588990 5.011849 6.650005 -4.623821 -1.329337 -1.273544 -2.065781 0.546730 -2.702676 1.610296 1.705179 1.666511 -5.013682 -3.412061 1.417477 0.493639 -3.309528 -3.199788 -0.323316 4.284146 -5.124107 -3.336734 -2.892196 3.347936 -0.380832 -8.824827 -2.015240 -3.285786 2.070279 1.358284 -3.888201 -4.221569 2.154746 1.240918 -1.522059 -2.591540 -0.871527 3.917916 4.034220 1.562307 -0.102960 2.987258 1.805296 8.237589 2.167034 -3.046159 0.148280 1.442240 -0.862833 2.665484 -2.629050 -1.260007 2.390222 -4.656186 0.615497 2.493692 -3.079396 -1.576259 2.915205 -0.675967 -0.352701 16.908644 -1.295010 6.217364 5.162952 -4.902198 1.935495 -2.482076 0.765351 2.332524 3.771204 2.768633 -7.399183 -4.222298 4.672532 8.058822 2.949136 -6.232735 -1.138356 1.913730 0.953974 -1.645710 2.842074 0.699048 0.869452 -3.099006 -0.582345 3.369503 10.097339 -3.370778 -1.124065 0.620639 3.542822 -0.303880 -5.181017 -0.890028 -4.551806 -0.046182 2.712897 1.579912 2.689325 6.228861 -9.508637 4.870697 -0.851337 -0.075128 4.182519 2.613506 -4.473153 -6.463468 -0.977638 2.450474 4.662259 -0.434734 1.167264 1.116753 -6.607051 0.174466 1.188886 1.054472 -3.921264 5.362985 0.263826 -2.687280 -2.085739 0.730766 -1.440465 -2.400674 -1.630805 4.311258 1.738665 -8.119745 4.504378 0.684053 -3.024249 0.506683 -1.376889 5.865728 -4.891979 -5.233217 3.417130 -2.462125 -3.498628 -1.835753 -1.669439 2.148997 1.653837 1.545338 -4.615045 -5.304929 5.634642 -1.620661 6.408634 3.256780 -1.092675 4.704826 -2.764625 -3.092905 -3.419100 -4.072652 1.544630 0.188924 -3.478407 -2.759076 -1.703359 4.300327 5.108492 -0.052926 -3.365049 -0.682483 5.383062 -6.049727 -0.170429 2.158355 3.771791 -3.664894 2.569982 3.071342 -4.453627 1.246883 -4.025164 -0.745144 -3.266363 -3.018265 4.495451 -1.721260 1.895495 0.277225 -0.602740 -0.080128 2.599586 2.013041 0.061094 1.241305 6.650866 6.077782 -2.164289 -0.801090 -6.702314 3.744012 -6.172616 -5.544802 0.805188 0.953483 -3.357800 -1.444262 -0.380526 4.628646 3.426019 -3.140074 -3.241550 2.185860 +-4.560323 -1.936572 -0.101020 -8.204540 5.945001 9.562801 2.882021 -7.229751 -8.727885 -5.025031 3.945783 -13.087139 -8.323504 11.612095 -4.509909 7.474212 13.803030 -0.721949 -4.845345 -4.821977 8.962474 0.774218 17.085474 17.067027 -12.447620 0.456647 2.530590 5.314699 4.701406 1.061244 3.776227 -8.454109 4.159224 -8.070882 1.219522 -3.688889 -2.564857 1.488800 7.503910 -18.004538 -1.458856 4.157983 -2.316705 0.092772 0.581501 3.908326 11.409388 9.702297 -1.383061 8.256283 8.385089 1.317550 4.301629 0.325477 2.520614 -1.051939 2.265666 -2.378800 -0.969107 -2.124753 -2.440759 -3.119450 -0.114961 12.870523 13.990907 -1.014278 -5.299931 4.004358 2.384838 3.086176 2.700367 9.735057 0.461001 5.424372 7.943362 -13.223397 0.392049 -18.985628 1.920825 -19.701973 -9.055030 -0.546881 7.717750 4.426133 6.301273 -0.960162 17.602540 -1.039044 -5.088714 11.205439 14.137861 -9.269125 -2.292993 -3.180358 -4.720688 1.317482 -5.873864 4.206261 0.950255 4.491511 -10.378194 -6.225107 1.663301 1.236930 -7.360236 -6.532907 -1.183309 8.682944 -10.761440 -6.012825 -5.540772 6.962053 -0.862489 -19.445976 -6.800570 -6.831917 5.841942 1.777440 -6.925179 -8.935613 4.024560 3.614634 -2.286569 -5.472489 -1.792010 7.391972 9.491879 3.043633 -0.338211 6.686308 4.595847 17.460036 4.525753 -5.195961 -0.409708 2.285338 -1.518409 5.109870 -4.103072 -1.213258 3.709318 -9.401447 1.316287 6.956924 -5.765446 -4.282685 4.182316 -2.335600 -0.173650 37.924928 -2.647379 12.697690 10.630491 -10.617768 2.214873 -5.772870 0.565361 4.792304 6.640253 6.508107 -16.049276 -8.677014 10.279777 16.794695 5.729625 -12.449760 -0.127913 4.480240 1.239680 -4.473202 5.932667 1.445783 1.475516 -6.153476 -1.564819 8.529877 20.567040 -6.876185 -3.223056 2.158344 6.739167 -0.361903 -9.332857 -1.648394 -7.311783 -0.172287 7.298995 3.367127 5.713696 12.997452 -17.718666 9.680268 -0.352679 -0.287483 8.509980 4.690244 -9.127482 -10.734324 -1.136999 5.906237 8.504751 -1.617617 1.577266 1.264581 -13.942523 0.506226 3.513777 2.169583 -8.078457 11.353312 1.115560 -5.681944 -5.598508 1.218703 -3.068850 -3.310029 -4.235669 8.711517 0.850585 -16.794039 10.642283 1.301328 -6.270112 0.421543 -4.446617 12.887505 -10.542283 -11.374077 7.470361 -5.352540 -7.811277 -3.369730 -3.490955 4.548540 4.973186 3.717942 -11.122758 -10.012919 11.146960 -3.106288 13.021614 6.844862 -0.838814 9.979641 -7.139334 -5.937607 -7.348521 -9.171946 4.491976 1.930051 -8.602165 -5.944466 -3.588601 8.975310 10.760042 -1.554866 -7.442260 -1.044222 10.662973 -12.592527 -1.448765 3.478506 8.367398 -9.072870 4.960593 5.670634 -8.013302 2.390526 -8.671877 -1.655284 -7.551891 -7.863750 9.053714 -3.327329 4.315043 1.930370 -1.047375 -0.558584 5.451451 3.782846 0.949790 2.920292 13.198467 12.546245 -4.622525 -2.217051 -14.732919 8.437109 -13.258293 -12.500115 2.837778 0.976253 -4.888187 -3.511244 -1.894253 9.837290 7.600695 -6.833953 -6.045127 4.561659 +-2.551055 2.871389 6.372123 -7.600475 12.648179 4.590486 4.146709 0.791386 -8.107150 -11.955406 -0.961117 -12.460405 -18.357469 12.184566 -4.879520 3.398077 17.287641 -0.024413 0.758776 -9.198619 9.807420 -8.406355 21.231822 17.164422 -21.177778 2.537515 4.015840 11.694101 5.400934 10.531287 3.195549 -11.992585 3.838628 -3.297522 11.685465 -7.780521 -1.256548 -0.741479 -4.008343 -26.440664 -4.767379 10.508521 -3.186063 4.620384 3.647862 16.719368 18.271868 11.856165 -8.958274 13.016161 11.556074 -0.926182 9.161710 2.150424 -2.013929 -2.920526 5.133345 -3.119770 -7.230292 3.088455 -4.048080 -18.274548 1.213822 13.856506 20.587410 -6.306599 -4.804350 3.965627 -1.185663 4.546872 3.196100 13.480800 6.760269 3.708547 17.072424 -10.765439 -2.179678 -27.592048 1.504870 -41.470499 -14.457903 -13.236834 13.639277 6.765117 4.113149 -4.698495 25.222259 1.847359 0.936557 13.994572 17.687717 -9.604879 -2.615827 -11.288069 -4.607863 3.596540 -9.285116 -1.574729 5.787685 5.463158 -11.264995 -8.033397 5.399993 -4.145294 -9.036376 -6.308627 -9.487363 13.774093 -19.798420 -6.366778 -20.798582 3.971013 0.765747 -23.896569 -0.873142 -3.320769 9.219063 5.085247 0.833880 -3.201779 4.799674 7.028637 -3.787936 -2.915390 -9.370553 17.665769 9.970487 -0.698815 4.399867 10.713157 2.966821 12.746266 16.012740 -2.664878 -9.899781 8.236599 -4.840670 2.241273 -7.698349 1.186823 12.470465 -12.299735 -0.759024 2.772123 -5.891160 -6.371304 0.033821 -10.186854 6.902912 35.641407 -3.355683 10.114953 6.148169 -12.834826 10.391846 -0.862491 -0.814127 9.444663 12.265372 8.848157 -14.051628 -10.108680 8.824412 17.741681 5.455457 -17.397590 -2.949733 1.859247 4.352087 -4.205630 5.507183 6.707069 0.723671 -6.142742 0.271064 2.526786 24.504088 -7.955203 -12.033455 3.421998 8.547526 -4.928971 -15.617059 -1.399686 -6.274295 -5.826252 4.191094 1.819895 3.709340 16.260955 -30.483267 12.862899 0.071858 -1.558859 10.444084 -1.784226 -2.504738 -24.056597 1.120522 8.813253 12.075335 1.684704 0.061448 -1.804563 -16.533707 4.986004 2.733564 8.298501 -8.387215 14.298630 -4.391596 -7.730262 -9.808899 -8.270489 -4.351744 -0.140902 -6.043806 6.691861 6.554123 -29.087878 12.617908 -6.891506 -9.883935 2.335871 0.460334 13.807485 -13.007696 -16.461570 7.196660 -8.203067 -18.573282 -12.601546 -4.418871 5.523270 1.549277 -4.146223 -10.043516 -18.276747 15.989976 -5.690715 10.334170 10.078797 2.563123 21.901694 5.091821 -13.419167 -10.019251 -8.775403 5.824141 -6.279728 -3.444569 -4.570415 -4.428279 8.625654 20.149201 -0.041746 0.421757 -4.136287 17.395235 -15.834425 -8.620924 9.576518 5.251233 -3.349566 14.129328 10.876596 -10.362749 -5.618654 -14.895284 1.450422 -2.730172 -7.868451 8.991868 -15.085571 -0.250292 8.400732 -1.546251 -7.677918 8.112114 1.762745 -2.373531 -7.884906 22.911543 25.120325 -14.208490 4.984969 -13.716392 10.485698 -18.491810 -9.680199 -3.975797 2.285710 0.659601 1.374089 2.217668 8.137321 8.009028 -10.390546 -8.569764 -0.814162 +-1.534764 -1.765700 0.012822 -2.915521 1.321599 1.777184 0.913737 -2.050581 -3.664535 -1.756943 1.544523 -4.793872 -2.043738 3.860566 -1.546209 2.405914 4.564552 0.472752 -1.778847 -1.489061 2.446450 -0.257637 4.974926 5.587204 -3.286948 0.036612 -0.566372 1.929463 1.325662 0.554210 1.722659 -2.590680 0.877633 -2.021561 0.633124 -1.572423 -0.902503 1.754714 2.162964 -5.860441 -0.139737 2.551998 1.093729 -0.045713 0.549103 1.382881 2.682601 2.936131 0.038087 3.004474 2.406636 0.239659 1.876030 0.068841 1.143003 -0.301131 1.023544 -1.565708 -0.659992 -0.271719 -0.996046 -0.910518 0.267501 3.828172 4.379890 -0.237925 -1.802721 0.304704 1.196115 1.259905 1.646977 2.827383 -0.556531 0.958840 1.896826 -3.595478 0.845492 -5.610457 1.285134 -6.469461 -2.608590 0.670018 3.683255 2.831901 1.225632 -0.771619 5.341353 -0.759649 -2.149384 3.479250 3.977676 -2.140259 -0.910471 -0.587649 -1.669733 0.439390 -1.613825 0.610853 0.565251 2.607661 -3.147966 -0.950430 0.509929 0.156623 -2.024307 -0.951764 -0.091152 2.789955 -3.724340 -1.746551 -1.126016 3.104455 0.457333 -5.569857 -1.398300 -2.796878 0.342173 0.576271 -2.953712 -1.827461 1.628426 0.113280 -1.010337 -0.389734 -2.746924 2.442554 1.861623 0.988505 -0.580427 2.259150 0.830753 4.545300 0.110138 -2.308240 0.434075 1.188296 -0.358835 1.814402 -1.527603 -1.033856 1.251444 -2.998964 -0.042835 0.872674 -2.013295 -1.307103 -0.160846 0.036117 -0.443927 10.771320 -0.932627 4.333297 3.716617 -2.663662 1.289695 -1.000866 1.084171 1.337762 2.127254 1.443561 -3.869589 -2.886782 3.160551 5.281070 1.987822 -3.012082 -0.169959 1.635032 0.531877 -0.512373 2.074780 0.269557 0.151945 -2.061016 -0.515673 1.765860 6.134734 -1.118659 -0.072434 0.183968 2.072566 -0.343829 -2.686032 -0.270820 -2.467382 0.201181 1.234410 1.085760 1.791893 4.061442 -5.799333 3.546948 0.036982 0.630795 2.967988 0.991045 -2.901414 -4.985704 -1.486428 1.195083 3.281649 -0.846127 0.312325 1.116335 -4.292508 0.141303 0.714518 0.679285 -2.680346 3.422726 0.163117 -1.351899 -1.079199 0.174068 -1.184055 -0.883417 -1.481518 2.869413 1.319934 -4.002173 2.677717 0.578117 -1.724456 -0.125816 -0.554907 3.235998 -3.105774 -2.898259 1.732211 -1.704810 -3.034489 -1.516418 -1.167751 1.245164 0.672567 0.582529 -2.959831 -2.418548 3.868709 -1.618128 4.384852 1.970608 -1.309363 2.287784 -0.273820 -1.448773 -1.422728 -2.439605 0.449167 -0.267572 -1.956685 -0.781996 -0.968507 2.522376 2.831186 0.022683 -2.431824 0.352892 3.789396 -2.343216 -0.548922 1.093613 0.216124 -2.259223 2.027570 1.838366 -3.184204 1.229229 -3.047416 -0.509306 -2.193290 -1.545322 3.314820 -0.538381 1.465623 -0.291334 -0.272493 -0.308718 1.493698 1.638644 -0.469076 1.381761 5.005135 2.709190 -0.197194 0.084651 -4.515022 2.277265 -3.716251 -3.054638 -0.009009 0.938667 -2.302975 -0.749419 -0.576269 3.236103 2.761293 -1.946002 -2.204256 2.208038 +-1.389273 6.694413 6.238469 -8.286687 8.483115 9.701374 1.541534 -2.708658 -6.062945 -5.797307 -0.529340 -12.991634 -11.191259 10.122898 -3.679921 -0.393266 14.342273 -1.496758 -2.441618 -3.946592 5.540386 1.549868 14.312059 15.143222 -14.105334 2.666924 6.390139 4.356510 2.411492 7.567789 -1.787198 -13.630625 0.264221 0.493897 5.328652 -3.086713 -3.687224 -5.195367 1.253131 -19.336427 -1.797189 6.095346 -4.442866 -0.386101 2.442556 5.213979 18.370419 7.573427 -4.755482 3.111723 8.275522 5.087452 2.507929 -0.745776 2.881785 -1.893204 8.457392 2.010988 -1.597152 0.069898 -1.761389 -2.394418 -2.350416 13.048007 12.723814 0.227065 -4.877001 -0.540401 1.672263 1.426915 -2.247496 9.014728 5.522551 10.122877 7.342097 -5.715961 1.213736 -19.747424 3.808377 -21.422177 -9.848357 -5.581806 6.518762 3.815103 2.300187 -4.373480 17.161923 -1.047707 1.402555 9.310960 16.949490 -6.451024 -1.429492 -5.798881 -8.542709 2.812086 -3.654299 3.379046 -1.069203 0.225676 -9.622024 -8.764179 1.852124 -0.978038 -7.435847 -0.040798 -1.730861 7.272106 -9.732630 -0.661164 -9.261367 3.416926 1.962411 -18.751588 -9.891003 -4.655878 4.253821 1.975182 -5.665370 -8.683034 3.310858 4.776475 -5.471117 -2.416267 -5.465828 10.770752 9.139208 0.884943 0.776788 2.306643 8.138069 10.322277 5.921874 -4.842575 -1.178234 1.240376 -1.953798 -0.945422 -5.091924 1.628390 3.521373 -5.628758 2.294516 6.414594 -5.916624 -3.388435 -0.709972 -8.337320 2.770688 37.880499 -5.471199 9.779836 3.617743 -12.365007 5.318671 -1.479613 -6.049310 1.686807 7.100519 11.630613 -12.788662 -6.716554 9.577944 16.012029 4.990547 -10.711244 2.728260 3.427140 -2.870274 -4.761681 7.727870 -0.169207 -0.161159 -5.294563 -3.349671 8.542500 19.912264 -3.798094 -14.763787 0.882444 8.403499 2.492041 -3.380297 1.046278 -4.633638 0.368553 7.285779 -0.540109 9.071297 12.658096 -28.216969 9.853201 1.950005 -5.654265 9.125579 1.344134 -5.396016 -7.007837 3.627435 10.555806 9.232296 1.856346 -0.907187 -3.721396 -12.028130 -0.593855 3.372448 4.875006 -9.641383 10.650966 1.875641 -9.565939 -7.301163 -6.614260 -3.227069 -2.734460 -9.071745 5.489496 -1.433116 -23.650629 14.848341 2.308755 -2.741967 -3.014421 -7.144799 6.467871 -10.858022 -13.032504 3.931301 -4.971986 -7.717695 -1.200370 -5.753930 4.602938 4.505229 7.374619 -11.831497 -14.102072 10.704527 -0.685942 11.913138 7.620853 3.535519 11.084489 0.180291 -4.097251 -7.367333 -8.481463 11.883790 2.293749 -7.388607 -2.668337 -6.434599 6.240109 12.796284 -4.837550 -4.189950 -7.741220 8.466653 -8.055431 -1.406038 2.921863 1.968754 -8.012369 2.759133 5.488382 -4.378922 -1.883102 -11.470331 -2.381538 -7.134687 -8.477440 4.483008 -6.936817 0.031230 7.904078 -4.813075 -5.706445 4.954678 0.319911 -1.730990 2.249079 10.003958 12.653261 -7.948337 5.089230 -13.029604 9.289189 -14.719723 -12.435012 1.845435 -6.170215 -3.175982 -5.320122 -3.638392 5.827514 2.597286 -1.374928 -3.908615 4.441427 +-5.603008 -4.533581 -0.307125 -11.674310 5.998098 11.446099 3.108235 -8.951862 -13.083136 -4.987352 4.788750 -17.382903 -7.343933 14.457988 -5.397337 9.864713 17.661950 0.674820 -7.388149 -4.437650 10.924811 0.796583 19.309213 21.537904 -13.357206 0.687998 -0.175815 6.866539 4.722984 2.674186 4.708210 -9.911856 2.814099 -9.521687 1.642525 -6.219696 -4.094508 5.131527 10.103099 -23.112658 -0.898958 8.227121 0.891995 -0.396536 1.771950 2.209832 12.424257 11.183213 -0.480275 9.737221 9.048059 2.104938 6.515537 -0.146511 4.265158 0.995191 3.681533 -3.571426 -0.664297 -2.178864 -3.509207 -1.267918 1.787730 15.451041 16.414321 -0.275923 -7.553404 2.690679 5.077814 3.321275 4.439096 11.892772 -2.500562 5.409062 7.366282 -15.815347 3.419590 -20.984509 5.538255 -19.821953 -10.083124 1.742560 10.309207 9.800006 7.094942 -3.266824 21.494273 -4.576590 -7.334195 14.064468 15.770298 -10.081966 -2.314581 -3.724912 -7.455372 0.814547 -5.428543 2.598912 0.273970 7.646471 -12.176764 -6.274890 1.460123 1.891170 -8.728558 -5.335621 -0.248761 10.619425 -12.508850 -8.029998 -3.917096 11.859539 -0.865080 -22.213168 -8.624489 -11.076019 1.456633 1.268777 -10.824052 -11.045863 5.786087 2.828435 -3.750955 -4.241934 -6.507958 9.226061 9.614676 2.869686 -2.321214 7.423153 4.178493 19.553081 1.620953 -8.197070 1.627784 4.187282 -1.166812 5.809226 -5.735752 -2.646701 3.114520 -11.589720 -1.646026 6.926703 -7.449738 -2.933711 1.768203 -1.162373 -1.668116 48.594653 -4.051171 16.294330 13.718959 -11.965411 5.361900 -3.846516 2.195078 5.276055 7.560177 7.603386 -21.152548 -10.948866 12.368398 20.873371 7.329364 -12.193326 -0.385179 5.828980 0.610439 -2.723841 7.990850 0.091749 0.807904 -7.937732 -2.383783 8.164441 26.078050 -5.815463 -1.669976 1.644214 7.927949 -2.025004 -10.850919 -1.621039 -11.466165 0.160368 6.768542 3.434932 8.002732 15.720608 -20.716558 13.125087 -0.869790 -0.009918 11.676487 4.404300 -10.697773 -14.757609 -4.708174 5.865421 12.123059 -3.952715 0.938375 2.608923 -16.896363 0.430892 3.913399 2.544786 -11.082850 14.124108 1.522428 -6.601017 -4.440945 1.968602 -5.172342 -4.999678 -6.157434 10.941358 1.454528 -14.608243 11.703901 3.692946 -5.792314 1.204245 -3.979881 13.216330 -11.977810 -12.307243 8.554413 -4.449363 -8.370067 -3.314172 -4.887494 6.185814 5.577675 3.457544 -14.249097 -12.163525 13.434877 -4.871057 17.289022 8.277557 -3.602130 8.432677 -3.684863 -5.412419 -7.441526 -11.658417 2.772258 3.097242 -8.873534 -7.566117 -4.800468 10.638640 11.628271 -0.879646 -9.551930 -0.696300 14.198059 -10.449332 -0.414975 3.244041 2.790187 -11.213302 4.263156 6.439704 -10.444961 4.225287 -11.067999 -1.273567 -9.354654 -6.860263 12.509594 -2.532828 5.342032 0.507160 -2.013461 -0.464517 5.899452 6.312396 -0.504524 5.871286 18.021562 9.069791 -0.747164 -1.286609 -17.492106 9.759931 -15.015833 -12.564305 0.839424 2.103011 -8.410515 -4.188297 -1.756263 12.957809 10.195918 -6.417887 -6.554601 6.607045 +-6.779730 -2.518401 3.300787 -12.952007 15.398802 10.043409 6.318230 -6.226896 -15.827819 -12.665214 3.214731 -23.532431 -21.659513 20.510875 -8.116667 10.866364 26.477220 0.156402 -4.313655 -11.882755 16.256962 -7.429626 32.410690 28.928370 -26.755748 1.832526 1.781730 14.595581 7.647927 8.237969 7.117589 -15.110195 6.155503 -10.901955 10.875547 -9.761549 -3.368240 3.604561 4.211586 -37.463318 -5.367695 14.238612 -0.512742 4.487631 3.939234 19.779297 22.662099 18.294080 -7.305361 19.272004 15.563107 -2.169648 13.883309 2.302343 0.246722 -2.961844 6.310341 -4.529044 -8.162999 0.997899 -6.724006 -17.174932 2.456171 22.000144 29.745826 -5.731361 -9.643373 6.964460 2.422859 7.106149 6.544472 20.339131 4.480088 6.194752 20.858844 -19.770276 -0.475395 -38.170647 3.795587 -50.997219 -19.023861 -9.781045 19.053835 10.267661 8.475679 -4.800584 36.999437 0.514190 -5.738949 22.438326 25.952840 -15.529338 -4.393636 -11.894759 -8.116900 2.635295 -12.054047 1.252030 8.812609 11.800493 -18.478072 -10.587196 4.901178 -2.986644 -13.076506 -10.146469 -8.963725 19.022518 -24.909490 -11.319516 -21.038118 10.860330 0.033619 -35.935403 -5.033367 -9.345318 9.114313 6.084272 -6.125779 -8.914279 8.651469 7.011673 -5.610618 -5.017759 -11.251389 21.121978 14.801621 1.765670 2.395537 16.646575 4.419115 24.608206 14.876470 -7.626851 -8.082512 10.184759 -5.248448 7.532051 -10.183769 -1.443682 14.679133 -19.415397 -0.048646 5.643547 -9.822569 -8.501363 1.475800 -8.801646 4.524878 58.141598 -5.355173 20.050200 14.841533 -18.730173 12.576903 -4.765909 2.748238 11.960537 16.233872 11.432761 -24.215869 -16.899132 17.020665 29.314471 9.509428 -24.613263 -3.157121 6.124829 5.915070 -5.937434 9.655463 8.013745 0.925990 -9.672918 -0.406077 6.744152 38.856158 -12.246530 -9.516446 4.900362 12.461756 -4.734481 -22.343735 -2.981422 -12.784486 -6.139088 7.154799 5.577943 7.048247 24.697359 -38.558511 19.993431 -0.442799 0.663113 17.109567 1.598009 -9.972253 -32.465995 -3.564702 10.877377 17.670215 -0.475620 -1.454441 0.410522 -25.652940 5.891602 4.939868 9.005292 -13.507824 22.283500 -4.889119 -9.944814 -11.352480 -5.002836 -6.901008 -2.639337 -7.987260 13.649781 7.393653 -34.240529 17.858335 -4.486983 -13.561003 2.540752 -0.804548 21.086308 -18.243584 -22.209643 11.896399 -12.027600 -22.842264 -15.351664 -6.490090 7.531943 5.106480 -1.746778 -17.674979 -23.225459 24.244108 -9.413658 20.694118 13.922429 -0.776815 25.216035 1.151273 -17.813071 -13.512366 -15.061895 4.756122 -3.953849 -8.498584 -7.535050 -5.724521 15.038977 24.370494 0.156185 -5.991271 -3.515663 25.049604 -21.211781 -9.043905 11.417180 6.380478 -9.906747 16.980656 14.301486 -16.391747 -1.423638 -19.833418 0.177946 -9.653919 -10.855422 15.829389 -15.130552 2.755327 5.902418 -2.442141 -5.483861 10.871005 6.276754 -1.738410 -3.763141 33.558255 28.696765 -13.522482 2.735390 -23.876547 16.100911 -25.641357 -16.615844 -2.478931 5.328390 -4.797761 -0.972997 2.039936 15.459456 14.367449 -17.223852 -13.903731 3.639467 +-4.538346 -4.978882 -3.304036 -5.039391 2.103365 2.624030 2.164407 -5.114791 -8.332804 -2.679874 4.927812 -9.962789 -4.948810 9.748818 -3.996551 5.793489 10.622913 2.307966 -4.051008 -3.823653 7.822745 -1.906041 11.628576 13.463266 -8.084325 -0.498973 -0.057630 2.218077 2.053067 -1.629815 6.388560 -6.444970 2.581299 -6.499489 2.891014 -4.926427 -1.630232 7.145081 7.438811 -14.271718 -0.900817 4.465848 4.605094 0.093666 0.569032 5.209167 4.226884 7.508673 -0.429318 7.429990 6.823672 -0.162672 5.518518 -0.139683 1.903525 -1.243803 -2.116975 -0.384864 0.761465 -0.155580 -3.061498 0.714894 1.991149 9.478661 11.590825 -1.003921 -5.097917 0.902664 3.326800 3.598405 2.750612 7.044869 -0.138606 1.157363 3.782903 -11.037284 -2.433131 -20.063292 3.926971 -18.259548 -5.296396 2.572500 7.379470 4.255931 2.951517 -1.086047 13.497309 0.275655 -6.233287 11.148211 10.282066 -3.841939 -1.854563 -1.765360 -4.459032 1.261858 -3.166253 3.483478 4.515038 6.183241 -7.601511 -5.502207 -1.925455 -0.085056 -4.474376 -5.332825 -0.323294 6.168493 -5.350621 -4.285415 -2.876924 8.716892 1.660481 -14.614171 -1.121454 -8.224966 -0.743088 2.082708 -7.954369 -3.842074 3.955003 0.045342 -2.044694 -1.615461 -3.535108 5.041256 4.026024 3.050738 -2.184568 4.863682 1.414287 10.548924 -1.007070 -7.363392 1.090922 2.490084 -1.276570 5.070111 -6.413881 -2.060520 7.575219 -6.934624 1.407357 0.200866 -4.519012 -4.472300 4.909654 -1.474450 -2.081744 25.321862 -2.582737 10.979840 8.566007 -5.799846 5.298292 -2.680189 3.483991 4.055023 5.900357 2.177379 -9.852696 -8.298595 7.928197 13.331436 4.746410 -7.858108 -3.554992 4.557143 1.907391 -2.289050 5.755484 0.732887 -1.423125 -3.534834 -0.815018 4.792130 13.252898 -3.353897 3.369662 -1.148305 10.879885 0.025086 -7.154802 -1.134058 -10.324056 -0.071855 4.504812 3.668109 4.754827 8.680755 -15.525242 8.367484 -0.594327 4.236063 3.816639 2.888988 -7.437701 -16.021543 -1.940372 1.826169 6.921969 -2.237745 2.291780 3.912068 -10.741638 1.383287 1.778224 1.330523 -6.656421 8.940717 -1.634500 -1.776115 -2.702136 4.478478 -5.066880 -4.800667 -1.912788 8.673494 5.674818 -8.504656 5.608148 1.223448 -3.693603 -0.806604 -0.688526 7.974901 -7.478603 -7.792964 5.129587 -3.230277 -3.644812 -4.595058 -2.549429 4.145308 0.106326 1.789055 -5.555056 -7.181252 8.875437 -2.984568 10.380031 4.420508 -3.255241 4.534056 -3.735841 -4.453313 -4.447015 -5.711067 0.568681 0.832680 -4.839494 -4.180929 -1.334366 6.513900 5.671237 0.985028 -7.506758 0.873245 9.901929 -4.773384 -0.794820 1.208274 1.066906 -3.108257 4.544983 4.310856 -8.092947 2.784622 -8.924446 1.725638 -5.923362 -3.241951 8.275357 -1.525735 3.457859 -2.857060 -1.166923 1.997287 4.645634 6.612050 0.231435 4.321576 10.588384 5.257079 0.411636 -2.161141 -10.723032 4.192641 -8.047012 -6.633405 -1.464255 2.724596 -6.021722 -0.813063 -1.412620 8.384948 6.154357 -3.935260 -6.524582 6.206329 +-13.130944 65.789668 69.509782 -64.425090 100.812559 81.452462 26.652325 -6.377153 -64.011849 -73.357152 -18.064946 -137.574378 -140.710472 110.044849 -31.029251 18.050101 164.284585 4.898756 -10.645016 -44.839566 49.833440 -23.532039 169.012873 161.535345 -153.696212 35.183773 43.016039 63.600118 9.952923 103.352777 -26.725168 -138.355639 23.261229 -7.986674 66.773022 -47.832755 -32.789152 -40.870381 -9.112929 -231.335987 -24.360280 86.850900 -26.118736 6.124366 29.963023 75.683828 196.659901 87.938526 -40.751929 63.556780 69.655088 17.951155 59.976977 7.942938 24.546406 -3.022963 82.023312 -20.362753 -55.842195 14.364079 -24.031873 -95.946828 -24.636946 124.452494 148.493371 -15.002734 -52.514983 5.201139 -2.190758 17.266440 -9.786402 99.688252 60.307308 84.322481 92.906179 -57.533264 13.305404 -178.569847 18.225961 -259.657471 -125.716767 -89.714850 92.539043 73.764286 36.805211 -52.084097 196.597391 -11.727226 26.359825 76.838653 183.761576 -96.875504 -27.999871 -74.275468 -49.045419 32.572897 -55.362013 5.202844 12.843204 2.647274 -106.633638 -88.956511 56.386794 -15.513699 -81.424086 -4.026826 -37.829245 97.955127 -135.159054 -43.362480 -149.576331 14.439571 9.577281 -199.329002 -48.196093 -13.387548 35.884126 50.583267 -39.232494 -88.502886 45.303621 56.686606 -46.127637 -35.706685 -86.785989 140.990671 79.721170 -9.745846 33.939611 56.622635 70.992911 122.436550 94.007158 -38.331620 -35.673788 39.887434 -34.276966 -3.588797 -52.633543 -0.245017 29.020409 -91.656032 3.902167 56.709257 -70.026110 -17.419622 -41.800370 -73.693506 43.212240 336.472708 -50.747018 93.266099 36.506625 -133.871732 90.731041 -22.789841 -55.744254 25.643780 88.011365 117.670891 -132.846129 -76.819072 86.490204 169.203102 56.864940 -118.692056 15.227358 12.198238 5.200453 -41.503953 78.431721 29.289500 17.918361 -62.321649 -19.290971 61.124814 233.720350 -61.055598 -145.581315 23.813045 48.862318 10.754008 -89.044791 -1.264662 -50.043276 -25.584621 42.205796 2.327324 59.637936 141.905296 -260.524203 118.668769 0.947371 -64.790074 118.906277 -8.660496 -41.914283 -110.727924 22.967352 110.572369 115.490724 23.826252 -9.442776 -42.540416 -134.992948 1.796870 28.761018 64.264037 -88.125686 120.624644 -3.268673 -103.149949 -77.281426 -84.336337 -25.241997 -33.071421 -85.381072 58.570227 40.660502 -246.970984 146.354682 1.650147 -54.667000 1.612178 -39.155476 78.781924 -118.028040 -145.200413 48.345043 -63.449674 -113.599152 -38.298598 -54.823557 45.230964 33.762497 14.490219 -102.504683 -146.623400 127.321746 -5.742877 109.146913 87.882697 32.867506 135.731296 60.378667 -86.600612 -59.798532 -87.387033 80.579229 -28.373165 -48.455854 -29.824482 -68.937421 79.157977 168.011519 -21.036944 -21.411934 -80.425187 111.345530 -104.891165 -38.352971 66.393798 8.679741 -58.854399 52.639581 85.510789 -65.010504 -38.420194 -119.852404 -13.025057 -54.479376 -83.875909 48.408874 -113.874707 -10.515331 92.322234 -53.306389 -70.325633 58.516767 -0.816012 -29.425447 -18.852634 149.423846 143.744363 -99.971139 69.307736 -125.986652 94.415693 -162.701415 -104.910341 -0.107215 -15.513420 -34.393693 -34.030728 2.217385 53.073529 30.645481 -50.333262 -58.640791 8.546373 +-2.891590 -2.339553 -0.847506 -3.994866 3.082929 4.747622 1.922856 -3.546970 -6.177124 -2.706100 2.327740 -8.559343 -4.704312 7.369592 -2.295556 5.010117 9.057323 0.881384 -2.984219 -2.277500 5.356912 -0.847160 9.906239 10.656384 -6.486128 0.248398 0.125505 2.839296 1.803607 1.204162 2.084842 -5.226478 2.470057 -5.325014 0.904840 -3.264027 -1.740728 2.451853 4.725146 -11.533592 -0.706188 4.267707 1.110223 -0.135369 0.502805 2.760774 6.137182 5.740624 -0.578570 5.640221 4.192481 -0.372931 3.519431 0.329900 1.773426 0.227115 1.022345 -0.702304 -1.602775 -0.749365 -2.024939 -2.453891 0.256654 7.124125 8.672839 -0.494787 -3.449058 1.699682 1.403863 2.055406 2.193032 5.693504 0.266710 1.899091 4.707728 -6.885929 0.215799 -11.263444 1.500232 -12.686995 -5.155794 0.152920 5.829700 3.499134 3.665951 -1.281799 10.683362 -1.601508 -3.410993 6.904281 8.509327 -5.612098 -1.819467 -1.946029 -2.990766 0.752481 -3.483437 1.429738 2.274398 2.832810 -6.416185 -4.119349 1.246165 0.793540 -4.045197 -3.333602 -0.673237 5.443998 -6.671283 -4.292194 -3.812207 4.036494 -0.264949 -11.161526 -3.254643 -4.117734 0.713094 2.100615 -5.263222 -5.127085 3.188111 1.203895 -1.671686 -2.925251 -1.634249 5.030322 3.979360 1.584008 -0.188206 3.940118 1.962148 9.762135 2.439163 -3.764550 0.404471 2.146335 -1.301342 3.370453 -3.158310 -2.022780 2.530064 -6.267667 0.256962 2.762311 -4.013619 -1.941502 1.583934 -0.639698 -0.392744 20.716240 -1.642583 7.824963 6.446788 -6.120872 3.511632 -2.593880 1.161928 2.703618 4.703460 3.608731 -8.727268 -5.410954 6.056847 10.353880 3.819152 -6.952771 -1.071699 2.487848 1.732079 -1.619848 3.895291 1.169120 1.093479 -4.097992 -0.729780 3.972324 12.700658 -4.217189 -1.380217 1.121635 3.879384 -0.519434 -6.814709 -0.942030 -5.964347 -0.363558 2.779313 1.727186 3.057294 7.985958 -10.516304 6.655169 -0.950500 0.119472 5.818317 2.428663 -5.456769 -8.154080 -1.744497 3.123760 6.142540 -0.422095 0.104629 1.152313 -8.472908 0.249243 1.664160 1.642321 -4.899577 7.278160 -0.467278 -3.161657 -2.857827 0.430080 -1.965399 -3.227466 -2.339791 5.442445 2.190008 -8.176416 5.758000 1.080691 -3.676634 0.338963 -0.887636 6.198243 -6.040004 -6.972966 4.192892 -3.296487 -5.049827 -2.584245 -2.218277 2.589152 3.014066 0.632276 -5.631327 -6.654450 7.545626 -2.138923 8.452870 4.002937 -1.552551 5.459730 -0.833902 -4.133572 -3.979747 -4.668234 0.965994 -0.379738 -4.094581 -4.198751 -2.083200 5.575555 6.416328 0.164904 -4.150747 -1.206485 7.470231 -5.925054 -0.984880 2.873429 2.322266 -4.414248 3.157415 4.076721 -5.784306 1.511316 -5.431114 -0.548040 -4.248397 -3.713094 5.449519 -2.580384 2.172124 0.436117 -1.125061 -0.137333 2.832243 3.051391 -0.291406 1.533862 9.241388 5.613235 -2.292270 -0.216277 -8.552889 4.747488 -7.847961 -6.365529 0.598115 2.033393 -4.318437 -1.739096 0.234252 5.598712 4.529136 -4.499566 -4.257035 2.581764 +-1.932937 -1.368584 -0.351164 -2.957628 2.711674 2.545548 1.593284 -2.094106 -4.612770 -2.648316 1.563024 -6.047161 -3.818181 5.597267 -1.358493 3.724023 7.176889 0.810605 -1.535280 -2.304557 3.947161 -1.798203 7.518209 8.172553 -5.293603 0.564825 0.924748 1.923395 1.444381 1.109560 1.250661 -4.454389 2.183616 -4.132612 1.251807 -2.870600 -1.441819 1.636702 3.582799 -9.246523 -0.588604 2.760068 0.582157 0.020524 0.338454 3.132638 5.029632 4.334197 -1.204302 5.062642 3.542650 -0.554992 2.491383 0.349196 1.372845 0.321004 0.691116 0.016296 -1.407374 0.103315 -1.453439 -2.620875 0.200207 5.211375 6.723193 -1.040080 -2.610913 1.542901 0.873022 1.481297 1.555622 4.318389 0.891625 0.963638 4.042806 -6.223464 -0.617778 -10.762930 0.737108 -12.618617 -4.524860 -0.379298 4.855011 1.244543 2.709288 -0.728245 8.174046 -0.819574 -2.148634 4.911161 6.648513 -4.355058 -1.508727 -1.463687 -1.991436 0.833619 -2.705317 0.962661 2.654980 1.334184 -4.929483 -3.595911 2.058351 0.302850 -3.199336 -3.202160 -0.620828 4.356047 -5.440662 -3.449818 -3.878906 2.604864 -0.155747 -8.391703 -1.071205 -2.705336 1.654951 1.950656 -3.826620 -3.854877 2.292904 1.034496 -1.592008 -2.473053 -0.917541 4.253841 3.193542 1.417409 0.382230 2.885048 1.659766 7.489031 2.906366 -2.920631 -0.053803 1.786696 -1.183101 2.485666 -2.748210 -1.714874 2.901309 -4.671196 0.543888 1.596639 -3.198787 -1.700812 3.135215 -0.931055 -0.160153 15.202899 -1.176504 5.808744 4.647777 -4.683937 2.827565 -2.095063 0.593864 2.353177 4.340555 2.748045 -6.377263 -4.031729 4.289778 7.861179 2.945544 -6.137207 -2.128878 1.598164 1.379242 -1.058916 2.868161 0.822243 1.115127 -3.063831 -0.438507 2.783512 9.775604 -3.425744 -1.417157 0.537029 3.583001 -0.549702 -6.127126 -0.706984 -5.061833 -0.300908 1.723925 1.204168 2.357980 6.112626 -10.168714 4.976489 -1.320612 -0.146123 4.042413 2.332543 -4.019057 -8.131107 -0.852442 2.415166 5.013441 0.013701 1.147235 0.931311 -6.434566 0.153422 0.874604 1.300060 -3.832475 5.512821 -0.659399 -2.649532 -2.098822 0.370149 -1.465392 -2.576265 -1.282523 4.044821 2.719185 -8.117433 4.311596 0.273455 -3.027330 0.510736 -0.493712 5.235680 -4.760093 -5.487280 3.165142 -2.583750 -3.849786 -2.171604 -1.808912 2.032098 1.311698 0.167373 -3.568521 -5.428574 5.806287 -1.661290 6.187459 3.273879 -1.138635 5.210171 -1.311041 -3.550936 -3.226400 -3.099550 0.936828 -1.085855 -2.771196 -3.177051 -1.757826 4.095097 5.381344 0.470176 -2.644505 -0.852498 5.679520 -5.704226 -0.610308 2.616935 3.015508 -2.792757 3.083855 3.406349 -4.668242 0.850026 -4.341033 -0.420425 -2.718685 -2.714434 4.108762 -2.412443 1.331241 0.551581 -0.900475 -0.222136 2.563127 1.989448 -0.133133 0.426924 6.791611 6.221343 -2.841213 -0.364161 -6.235042 3.350033 -6.089613 -4.965351 0.172351 1.877956 -3.353655 -1.260302 0.221348 4.001869 3.102580 -3.274279 -3.400030 1.758216 +-4.081260 -3.593207 -1.891895 -5.969391 4.679380 6.754356 2.612018 -5.699114 -8.775976 -3.478429 3.956506 -11.498758 -5.980324 10.002290 -3.321356 7.283584 12.139462 0.409728 -3.958455 -3.993248 7.869226 -0.394090 14.092079 15.031542 -9.507919 0.440449 0.989012 3.433324 3.346383 0.297360 3.068229 -7.243062 3.904729 -8.315346 0.248937 -4.271439 -2.589593 3.319423 8.176678 -15.444454 -0.988550 3.821658 -0.365422 0.230556 0.393485 4.994938 8.250889 7.916371 -1.510002 9.100886 6.914161 -0.227294 4.066617 0.253755 1.995268 -0.173065 0.837199 0.299104 -1.200560 -1.393992 -2.608006 -2.234040 0.320974 9.958216 11.905353 -1.077094 -5.094456 3.204275 2.285025 2.639958 3.145710 8.235951 0.752632 2.693680 7.027189 -10.759692 -0.653182 -17.822177 1.730982 -18.804442 -7.050051 1.000517 7.992728 2.294211 5.190192 -0.806164 14.823070 -1.582313 -5.486272 10.636303 11.413586 -7.832140 -2.214885 -1.732021 -4.427685 0.699311 -4.543168 3.191446 2.956370 3.940953 -8.892737 -6.289138 1.475933 0.792292 -5.774990 -6.129023 -0.732274 6.752316 -9.389983 -5.536686 -4.630344 6.241458 -0.260865 -15.527405 -5.605550 -5.931064 3.934859 2.293838 -7.358466 -7.071024 3.910451 1.510194 -2.455352 -4.305651 0.256903 5.978458 6.885840 3.211710 -0.386764 5.185770 3.122427 14.748231 3.240351 -5.442039 0.456941 2.492519 -1.014837 5.278489 -4.333925 -2.174673 4.269825 -8.297703 2.239077 4.086473 -5.289699 -3.634177 5.497773 -1.054909 -1.366039 29.835449 -1.944636 11.436302 9.664834 -8.201505 2.743142 -4.736814 2.021399 4.584847 6.359643 4.688060 -12.096326 -7.443158 8.740839 14.214933 5.079688 -11.228926 -1.781879 4.364820 2.324012 -2.486696 5.157699 1.118222 1.783762 -5.353632 -0.884717 6.165394 17.807417 -5.917725 -1.268799 1.331487 6.499595 -0.580895 -8.900496 -1.476660 -8.198576 -0.175028 5.738251 2.958436 4.595529 10.944925 -16.357756 8.310390 -1.344522 0.679993 6.356584 5.244961 -8.342430 -10.798721 -2.290827 3.731867 7.902006 -0.344769 1.504157 2.260787 -11.709060 0.490444 2.714851 1.475914 -7.170405 10.162862 0.295665 -4.375416 -3.575694 1.853615 -2.810269 -3.702375 -2.739294 7.922604 1.657247 -13.855250 7.429854 1.457846 -5.478513 0.185457 -1.957630 10.159240 -8.256809 -9.404643 6.334762 -4.758178 -6.498709 -3.257642 -2.833886 3.229156 4.242674 2.611617 -8.306209 -9.559470 10.391005 -2.935020 11.686221 5.688861 -2.506439 8.126334 -5.973161 -5.424017 -6.447713 -6.477932 3.081604 0.414895 -6.164516 -5.278751 -2.739269 7.398640 8.395385 0.054770 -6.429986 -1.133355 9.915298 -9.594566 -0.579034 3.483845 6.929888 -6.660894 5.036570 5.230152 -7.769848 3.086484 -7.364168 -1.177922 -6.297737 -5.000799 8.269777 -2.558663 3.468458 0.197160 -0.983852 0.372409 4.491571 3.890683 0.295355 2.480457 12.004577 10.397773 -3.554881 -1.629181 -12.093973 6.643527 -10.625612 -10.005105 1.512073 1.968981 -6.025867 -2.862761 -0.962143 8.561548 6.588687 -6.354932 -5.890652 4.573894 +-9.351142 6.801446 11.125535 -26.291007 22.924710 38.027821 6.197614 -19.833932 -21.227145 -10.746307 6.365405 -37.377083 -25.873549 31.353741 -13.275010 13.165730 37.331433 -6.505938 -13.868544 -9.403378 21.495335 10.480437 46.346452 44.816071 -36.951355 4.204855 11.440994 16.134149 8.047686 14.699949 -0.743333 -29.735910 4.965010 -12.793925 2.491836 -5.935548 -9.528879 -7.165764 16.171689 -49.693376 -4.262846 12.765689 -17.471725 -1.121083 3.837884 1.479969 42.416305 24.958295 -4.075706 13.848401 22.421305 9.869930 8.935432 -0.678662 10.853408 -2.311572 19.249466 -2.593082 -1.415204 -7.307573 -6.377960 -2.677735 -4.350743 37.844696 36.029017 1.409722 -15.402525 5.152030 4.531176 5.040365 0.445140 27.262380 2.581196 26.544000 19.753474 -25.438707 7.454208 -43.183085 8.119999 -34.868842 -26.523929 -5.214587 14.529580 16.579656 16.750867 -6.285300 49.143963 -5.418360 -8.244276 26.711841 43.447849 -25.320149 -4.060899 -10.566762 -19.736034 2.634694 -12.536170 12.152324 -9.637122 7.154271 -28.567933 -19.938117 3.370339 3.528487 -21.332611 -7.974678 -3.171485 22.881968 -26.631969 -11.733655 -15.094887 17.870813 -2.379185 -55.211100 -34.851611 -16.126138 15.810641 2.604486 -18.376410 -29.838636 11.609813 14.695434 -9.372760 -14.255325 -4.972167 22.603950 30.240353 5.951330 -0.972980 11.669337 18.974452 44.404512 12.426170 -12.321900 -0.484930 1.999946 -2.035969 8.082002 -7.860331 3.791642 -2.901083 -21.161843 4.141962 26.720840 -15.337307 -7.285889 -1.348197 -10.929474 1.516167 118.797031 -12.466330 33.509472 21.713353 -34.587246 6.881060 -12.257931 -8.104930 7.830664 13.920142 26.253043 -49.170055 -21.665211 31.309208 46.668892 15.033256 -33.458098 10.271192 12.038086 -3.420805 -14.683066 20.087403 1.409570 3.130752 -16.849993 -7.856971 26.723933 60.942941 -16.819504 -32.928341 8.714283 14.572940 3.746172 -14.387407 -2.319212 -12.726213 0.262069 25.949827 3.880782 20.821489 36.279041 -56.597596 26.673114 3.832868 -12.432164 30.565622 8.556045 -22.146614 -8.855038 0.736109 23.476202 23.035685 -0.338134 -2.466098 -4.659288 -36.922857 -0.122596 12.333990 7.330438 -24.640855 32.136400 8.260492 -24.356675 -18.644398 -8.854664 -8.179626 -7.486171 -22.674655 20.993358 -10.664751 -55.615612 36.941372 10.876064 -11.977215 -1.401127 -19.835442 30.386319 -28.446193 -35.466812 19.219620 -14.200796 -18.801247 -2.149649 -12.240376 11.778691 21.496678 20.236419 -38.699726 -31.235307 27.619371 -3.256747 36.871744 20.266683 4.807886 25.324649 -13.026828 -13.276437 -20.157521 -28.810581 28.339017 12.983774 -26.490435 -16.406682 -15.437969 23.777821 30.226878 -9.953347 -18.671593 -16.986076 26.068971 -29.327692 -1.303302 7.392547 16.082183 -30.706522 4.670923 14.889675 -12.786439 3.051023 -24.686649 -7.939454 -26.385222 -25.031715 19.851666 -9.637456 8.705680 13.596127 -7.367564 -8.668109 12.518435 5.186933 1.284537 10.456639 31.322484 31.518570 -14.330144 2.173325 -40.285014 27.130446 -38.682832 -37.347290 11.674638 -11.646985 -11.823185 -14.730081 -9.091147 24.657911 15.869849 -11.984824 -10.308323 12.040277 +-6.136536 -5.934121 -3.104341 -9.349130 6.264781 9.557411 3.378101 -9.186825 -12.673372 -4.780490 6.187707 -16.632023 -7.681115 13.890216 -5.076973 10.288290 16.461972 -0.183913 -6.092191 -6.043409 11.356668 0.488942 19.383230 21.015756 -13.091225 0.311908 1.598170 4.878926 5.332789 -0.785189 5.524498 -10.134334 4.663548 -11.416193 0.405329 -5.215094 -4.104472 5.113766 12.667040 -21.017669 -1.461605 5.536336 -0.346545 0.485295 0.879919 6.093561 10.620205 10.816933 -1.883601 12.902505 10.276618 0.442901 5.697892 -0.233630 3.037606 -0.679865 1.868704 0.323779 -0.501558 -2.239263 -3.923487 -0.663993 0.769810 14.261790 16.440306 -1.500532 -7.689751 4.262550 4.317488 4.033079 4.582688 12.135279 -0.140535 4.178405 9.505789 -15.854830 -0.460481 -26.045753 3.642953 -25.295389 -9.580615 2.888075 10.725150 3.103076 6.902970 -0.493076 21.064341 -2.380731 -8.970625 15.099397 15.402396 -9.698457 -2.479607 -1.487513 -7.016900 0.431151 -5.754986 4.984597 3.741780 6.886459 -12.269182 -8.118386 1.181255 0.844431 -8.125281 -8.502250 -0.745254 9.215720 -12.315950 -7.240547 -4.797627 10.497585 -0.044469 -21.662216 -9.412513 -9.621800 4.988416 2.391927 -11.161808 -9.587339 5.569898 1.329892 -3.690876 -5.229024 0.915865 7.376549 10.548800 5.015840 -1.602148 7.527847 4.315960 20.720718 3.119488 -8.084675 1.161429 3.326610 -0.579483 7.808316 -5.830365 -2.527623 5.768954 -10.712904 3.537922 5.674908 -7.063920 -5.847131 7.928931 -1.773927 -3.023532 43.594076 -3.158077 16.633839 14.367058 -10.829495 2.624884 -6.299764 3.525385 6.400017 8.549466 6.576416 -16.788793 -10.525114 13.190875 20.183248 6.800948 -15.591750 -2.446142 7.441138 2.763639 -3.553462 7.595154 0.883968 2.077583 -7.061394 -1.385393 8.675204 24.338613 -7.681516 -1.825322 1.334549 10.631517 -0.633680 -11.381427 -1.794352 -12.195670 0.077667 8.766202 4.595437 6.935861 15.116970 -23.775322 11.336166 -0.787363 1.771164 9.086394 8.058003 -12.068138 -15.729275 -3.862542 4.495039 10.493963 -1.474812 2.292546 3.487577 -16.406124 1.012006 3.904294 1.647964 -10.755614 14.455525 0.537970 -5.446170 -4.245403 3.462456 -4.379751 -4.942793 -4.167985 11.362826 1.771642 -18.833509 10.020843 2.723445 -7.148231 -0.294348 -3.376438 14.792823 -10.999341 -12.359711 8.805748 -6.764068 -8.612129 -4.135179 -4.268221 4.299992 6.130153 5.455921 -12.518689 -12.233300 14.382846 -4.764428 17.167742 7.817133 -4.232719 10.391937 -10.423100 -6.753676 -8.831714 -9.102236 4.673359 2.256662 -8.960958 -7.863983 -3.508742 9.884002 10.531386 -0.410256 -9.773467 -1.506640 13.457503 -13.369807 0.227749 3.720598 9.373974 -10.020427 6.951738 6.409791 -10.279760 5.495575 -10.488049 -1.858102 -9.982500 -6.382652 12.296312 -2.236261 5.049941 -0.694919 -1.611228 1.021066 6.184068 6.203625 0.567668 4.665008 16.082628 14.146882 -3.793094 -2.984259 -17.397210 9.322907 -14.203070 -14.129306 2.183575 1.758882 -8.712538 -4.743060 -2.554897 12.634168 10.061358 -8.477656 -8.333105 7.813321 +-3.745194 -2.943819 0.264345 -5.874114 4.544407 4.549302 2.766093 -3.339234 -9.171595 -5.157391 2.399121 -11.388694 -6.834377 10.591407 -2.655580 6.621868 13.715251 2.365751 -3.312957 -3.592719 7.509594 -4.368763 13.453120 15.336625 -9.391747 0.799256 0.256171 4.782991 2.052394 3.260908 2.445658 -7.666102 2.747051 -7.294637 2.799243 -6.092437 -2.460791 4.258700 5.406773 -17.828000 -0.918484 6.570825 2.272353 -0.194549 0.886639 4.167977 9.164372 8.014334 -1.746989 8.381230 6.013374 -1.036958 5.295436 0.629323 2.585497 1.408278 1.342845 -1.069233 -2.865526 0.550348 -2.938932 -5.491211 1.436088 9.757665 12.430036 -1.273838 -4.801096 1.934314 1.709640 2.762708 3.228823 7.790109 0.539565 1.371421 6.998795 -11.204102 0.019147 -18.650911 2.466992 -20.645955 -8.199941 -0.864387 9.248851 5.762317 4.774814 -2.071354 15.278291 -2.878679 -3.732635 9.640279 12.088690 -7.792732 -2.797694 -3.771431 -4.495958 1.533248 -4.819744 0.352574 3.300196 3.862229 -8.945649 -6.284829 3.646119 0.853436 -5.802199 -4.761966 -1.306227 8.702969 -10.202642 -6.871952 -7.120173 5.621376 -0.193928 -15.162195 -1.480502 -5.942435 0.901065 3.621923 -7.393048 -7.072161 4.674768 2.002302 -2.918617 -3.707667 -4.593487 8.607979 4.522476 1.451664 0.161570 5.169631 2.257820 12.435944 4.687831 -5.627710 0.104091 4.191580 -2.760175 3.854933 -5.439118 -3.535980 4.663409 -8.961208 -1.359165 2.536730 -6.107339 -2.594463 2.951430 -1.424396 0.121175 28.533946 -2.299823 10.371093 8.328215 -8.530176 7.582448 -2.307439 1.417506 4.131792 7.830955 5.115379 -13.092394 -7.784879 7.602394 14.566852 5.664249 -9.471494 -4.074616 2.460158 2.495024 -0.815000 5.589995 1.542701 1.327077 -5.963625 -1.013759 4.310828 18.580891 -5.429540 -1.994638 1.190105 5.264244 -1.892356 -12.148921 -1.152187 -9.538260 -0.916512 2.151801 1.752173 4.355738 11.565738 -17.181552 9.960424 -2.723769 -0.205070 8.069749 2.449613 -6.664904 -15.473938 -2.425352 4.501931 10.142699 -0.374026 0.899428 1.618399 -12.046698 0.312790 1.629473 3.119598 -7.248517 10.510079 -1.798168 -5.131375 -3.870348 0.058832 -3.649344 -4.955735 -2.961442 7.283831 4.968464 -11.683719 8.134724 0.749083 -4.773948 1.549255 -0.127225 8.616805 -8.640785 -10.239763 5.866521 -3.972182 -7.250561 -4.425053 -3.459302 4.297017 2.488632 -1.894456 -6.669837 -10.318276 10.478167 -3.373481 11.714690 5.933388 -2.464384 8.610443 2.378659 -6.144309 -5.389403 -5.691644 0.271824 -2.241428 -4.564009 -6.954688 -3.327052 7.736990 10.111062 1.137339 -4.585909 -1.350485 11.664750 -8.309170 -2.029669 4.766608 1.373076 -4.949671 5.062962 6.446763 -9.132082 1.089418 -8.597349 0.326284 -4.665698 -4.689887 7.626129 -4.764898 2.389315 1.023542 -1.718049 -0.757100 4.312499 4.537024 -0.802808 0.927810 14.221794 8.727019 -3.530621 0.373338 -11.424472 6.146294 -11.277033 -7.841779 -1.008067 4.758123 -6.276895 -1.817815 1.174814 7.556583 5.971989 -5.405218 -5.746286 2.700624 +-5.529254 -5.749558 -2.056704 -7.744714 5.302284 8.606043 3.188630 -8.821333 -10.501948 -1.712216 4.991141 -14.900792 -5.950848 11.772053 -4.450275 9.480138 13.759856 0.534694 -6.106761 -4.056247 8.506504 0.217565 16.439099 17.677713 -9.340451 -0.278846 -1.472241 5.242098 2.394237 -0.926026 3.429873 -5.876872 3.257042 -9.835529 -0.430183 -3.422856 -2.990928 4.722797 10.205455 -17.099897 -1.154475 4.368796 1.562722 0.220854 0.394636 3.894493 8.259061 9.220211 1.299903 9.128907 6.458695 -1.531816 6.200377 0.405474 3.617636 0.077119 2.578507 -1.059961 -1.615182 -2.187168 -3.481870 -0.435322 1.122933 11.676654 13.561712 0.585667 -6.398641 3.119742 3.773097 3.162543 4.068681 9.635054 -2.395618 4.108469 6.087189 -12.779354 2.410497 -17.115844 2.858673 -14.795695 -7.859976 2.785823 8.147876 4.935516 6.481747 -0.484827 17.229153 -1.439326 -7.709569 10.791406 12.809661 -9.331051 -2.685401 -1.200236 -5.285448 -0.508519 -4.143956 4.193109 3.414100 7.459371 -10.335336 -4.740878 1.267685 1.305660 -6.144099 -5.320888 0.041013 8.338835 -7.999348 -6.990835 -2.648615 8.689157 -0.924674 -17.817633 -5.890797 -7.845378 1.702278 2.028164 -9.481631 -8.537981 5.134096 1.093481 -2.755582 -3.500927 -2.704712 6.269668 7.740252 2.673672 -1.718978 7.567596 2.732934 17.016204 0.301725 -6.648999 1.626044 2.981437 -1.239463 6.631814 -4.127497 -2.810153 2.393016 -10.255365 1.593822 4.534426 -5.932217 -2.787299 2.492696 1.230070 -2.231224 34.523859 -2.822824 13.810518 11.575315 -9.208054 4.506565 -5.308297 3.856132 4.304979 6.346182 4.031116 -15.693593 -9.447475 10.857413 16.819913 5.874704 -11.577597 -1.153226 5.122156 1.854498 -2.988088 6.251552 1.740740 0.465698 -4.649048 -0.991781 6.820019 20.989195 -6.405583 -0.695144 2.188700 5.160793 0.172110 -10.267699 -2.164740 -9.052454 -0.482910 4.625071 4.702244 5.011486 12.500937 -15.367538 10.102569 -0.781495 1.591763 10.546928 4.682940 -9.995398 -11.706675 -4.683081 3.957378 8.749326 -1.804426 -1.852164 2.607736 -13.289262 0.824619 3.480409 1.632923 -7.982124 11.655097 -0.342932 -4.728589 -3.201028 2.066208 -3.690587 -3.919237 -3.968529 9.523461 0.663919 -11.887799 8.268528 3.359013 -5.815646 0.905219 -2.906201 10.625874 -8.313028 -9.679639 6.819826 -5.324421 -6.249842 -3.835262 -3.125695 3.138521 4.667571 3.393305 -10.914769 -8.146786 11.665472 -4.597853 14.278778 6.028342 -3.590016 6.374433 -4.383703 -7.164359 -5.478778 -8.659130 1.456213 2.331490 -7.536696 -4.775297 -2.689910 8.964780 8.111891 0.768237 -8.055715 -0.399374 11.537205 -8.617479 -1.104265 3.482616 2.663454 -8.682723 4.151039 5.582144 -8.660851 4.415932 -7.587868 -2.159862 -8.613182 -5.545191 9.584944 -1.529770 4.336067 -1.853778 -1.406820 1.759843 4.830230 5.416850 1.356428 4.826889 15.133524 7.288719 -0.845626 -2.069138 -14.504009 8.066310 -11.250783 -10.337959 2.010806 3.579276 -7.289892 -3.353489 -0.482091 9.973464 7.889670 -8.871305 -6.971654 5.475725 +-1.091494 4.623156 4.455560 -5.628752 6.154162 5.300859 1.464393 -0.502388 -4.563222 -5.790952 -1.146966 -7.510808 -8.409526 7.631671 -2.216479 0.467563 11.962380 0.705894 -0.563077 -3.896392 4.980414 -2.371916 11.192233 12.066201 -11.352826 2.073975 5.936443 4.513939 2.417894 5.790579 -0.599481 -9.556745 1.302431 -1.635129 4.990043 -4.945806 -1.951810 -2.509149 0.144197 -16.548742 -1.486296 3.101011 -3.398798 0.186270 1.385354 4.465362 13.296263 6.133756 -4.725493 4.131488 6.653607 3.323753 1.919044 0.075298 1.063007 0.154439 3.823302 0.736483 -1.716120 1.255980 -0.988580 -5.498688 -0.439117 9.407802 10.384811 -1.016211 -2.909220 0.899020 0.561732 1.142534 -0.914812 6.436799 3.708670 5.441815 6.586684 -8.333739 -0.775768 -18.611462 1.845817 -21.006857 -8.345955 -6.256810 5.802791 1.937454 2.477187 -1.713163 13.198844 -0.757864 2.328144 7.648501 12.406883 -5.912863 -1.542783 -5.615977 -5.081577 3.289768 -3.757056 1.232876 0.397084 -0.108024 -7.044440 -7.840994 3.724574 -0.480015 -5.917710 -2.812242 -2.139717 7.050180 -9.141844 -2.859467 -9.628742 1.939717 0.356563 -13.959101 -3.805612 -3.326342 5.806891 2.498788 -3.025983 -6.895759 2.023318 4.907721 -3.204795 -3.026761 -3.267718 8.595270 6.379446 -0.301168 1.648303 2.313859 4.861535 8.859052 7.463771 -3.328059 -2.254417 2.786170 -2.944174 -1.206158 -5.380795 0.309127 4.290144 -5.667227 0.880122 4.610986 -4.985012 -3.480113 3.112524 -6.561886 3.389301 28.151233 -2.746407 6.453822 3.200465 -9.253417 4.806706 -1.279324 -4.043169 3.066091 6.927950 7.820611 -11.093945 -5.368566 4.940526 11.863017 4.124692 -8.670084 -2.018498 0.553123 -1.172149 -2.382956 4.800921 0.486057 -0.034364 -4.075493 -1.849384 5.684224 15.094695 -3.658618 -9.123189 0.378091 6.360786 -0.751127 -6.986135 0.192015 -5.293381 -0.483762 4.464490 -0.476610 5.665321 9.881255 -21.773939 7.558879 -0.496601 -3.389535 5.333244 1.412273 -3.218944 -9.807994 3.357409 7.654366 8.198183 0.698893 1.461685 -1.811579 -9.607470 -0.428982 2.273789 4.508176 -6.931033 8.192694 0.525325 -7.102886 -5.734389 -3.111146 -2.557077 -2.989518 -4.582156 4.119132 1.117105 -18.535690 10.500853 -0.674479 -3.236026 0.422967 -4.043149 6.824865 -9.215146 -10.574357 4.166301 -2.304223 -5.803428 -2.054157 -3.961483 5.127200 1.910282 2.177765 -6.995924 -11.121652 7.434825 -0.712893 7.571331 6.057282 2.415336 10.776949 -0.859579 -4.333758 -6.360860 -5.370548 6.508681 -0.430949 -4.431022 -4.507428 -4.553660 5.268773 12.073283 -2.057587 -2.393951 -3.761052 8.227315 -8.946303 -2.119672 3.455209 4.042592 -4.327432 3.650165 5.040586 -5.668545 -2.856331 -8.535560 -0.070392 -2.432013 -6.282545 4.194889 -7.259241 0.255747 6.337283 -2.806387 -3.917574 5.094387 0.757660 -0.247466 -0.326814 8.611134 12.135698 -7.180669 2.596938 -9.027025 5.882678 -11.805278 -8.484372 -0.390987 -1.448287 -1.705390 -2.261442 -1.614572 4.660154 2.076329 -1.136517 -2.946139 1.080499 +-2.877579 -1.395266 -0.408401 -4.732792 4.184532 6.119098 2.065960 -3.846324 -6.677299 -3.441962 2.419301 -9.744920 -6.005361 8.195914 -2.513727 4.844540 10.240500 0.262529 -3.097237 -2.849862 5.840538 -0.325395 11.498303 12.145403 -8.041890 0.806294 1.209033 3.277946 2.062303 1.630632 2.120078 -6.749392 2.695803 -5.562058 0.878979 -3.198257 -2.447384 1.377500 4.963065 -13.366357 -1.096575 4.429410 -0.831007 0.012496 0.725782 3.145937 8.224787 6.319924 -1.078240 6.587957 5.009642 0.091874 3.596094 0.137091 2.142803 -0.148145 1.598627 -0.399476 -1.543963 -0.849547 -2.178204 -2.732739 -0.359793 8.325539 9.580131 -0.682540 -4.235602 1.951884 1.269146 2.039672 1.827078 6.897931 0.863100 3.160913 5.834224 -7.619277 0.057698 -13.051387 1.686763 -14.917130 -6.395285 -0.294088 6.649704 3.225623 3.951452 -1.201169 12.545124 -1.790457 -3.404400 8.310069 10.200567 -6.268984 -1.792909 -2.040744 -3.595875 0.912346 -3.682209 2.098470 1.851094 2.691063 -7.411659 -4.936621 1.539138 0.502672 -4.954548 -3.858582 -0.919158 6.072505 -8.064638 -4.219922 -4.837661 4.455141 -0.033434 -12.994155 -5.693591 -3.882589 2.587321 2.400749 -5.877909 -6.015030 3.548733 1.674039 -1.905722 -3.341463 -0.489585 5.500945 5.378481 2.058185 0.122657 4.579572 3.184042 11.538794 3.508395 -3.751152 0.279284 2.105574 -0.864208 3.593294 -2.856714 -1.491641 2.070779 -6.593014 1.171484 3.804962 -4.525616 -2.819236 1.827981 -1.532992 -0.542256 25.315722 -2.079768 8.939564 7.046416 -7.324372 2.680908 -3.450243 0.369083 3.013632 5.259862 5.046749 -9.893903 -5.808569 7.234457 12.066322 4.133852 -8.717782 -0.345498 3.219719 1.539540 -2.282042 4.833494 0.937891 1.842574 -4.456479 -0.965455 5.245819 14.792867 -4.913086 -3.631033 1.254532 4.591867 0.078423 -6.830104 -0.714200 -5.800577 -0.376829 4.492209 1.686055 3.738701 9.115426 -13.381074 7.287210 -0.729625 -0.510805 6.327682 3.495968 -6.091846 -8.143341 -1.531665 4.106121 6.812030 -0.073174 0.222020 0.565311 -9.642854 0.169159 2.471282 1.793814 -5.928416 8.683919 -0.055684 -4.109136 -3.480401 -0.074699 -2.054826 -2.887773 -3.236516 6.049076 1.212865 -11.632111 7.115353 1.550004 -4.201655 -0.162876 -1.829883 7.649578 -7.016749 -8.557119 4.900959 -4.144315 -6.371229 -2.194288 -3.020106 2.740923 4.286242 1.738213 -7.006075 -7.615941 8.916829 -1.828140 9.737778 4.965296 -1.199159 7.347814 -2.877649 -4.831172 -4.643667 -5.791445 3.242134 0.003425 -4.883342 -4.756604 -2.870514 6.002701 7.632672 -0.341285 -4.844316 -2.201538 8.080146 -7.588803 -0.856814 3.057599 4.260631 -5.423634 3.878816 4.545901 -5.770984 1.755955 -6.467137 -1.081583 -5.324085 -4.485179 6.012755 -3.184780 2.129671 1.516047 -1.657294 -0.660787 3.413257 2.707731 -0.007088 1.719990 9.607159 8.104055 -3.684593 -0.071078 -9.833066 5.804285 -9.150603 -8.060884 1.124494 1.252927 -4.252251 -2.764668 -0.614824 6.135687 5.179807 -5.328778 -4.649854 3.391137 +-1.758909 -1.188009 0.123568 -2.656352 1.973935 3.842806 1.334091 -3.174659 -3.657965 -1.533508 1.940819 -6.380179 -3.211499 4.718468 -1.924977 3.229145 5.585645 -0.024353 -2.530925 -1.636304 2.810093 1.253249 7.045870 6.956212 -4.336579 0.202124 -0.493671 1.434495 1.807199 0.097333 1.176848 -2.887050 2.217598 -2.793846 0.057737 -0.859106 -1.148796 0.543442 3.017250 -6.921484 -0.361182 2.306374 0.597542 -0.190479 0.484560 2.245173 4.438041 3.817637 0.776904 3.084570 2.512726 -0.024810 2.328215 0.253735 1.320987 -0.766939 1.901284 -1.953317 -1.232381 -1.104544 -1.056206 -1.238119 -0.717861 4.953381 5.465959 0.142412 -2.168736 1.057229 1.471551 1.311628 1.404304 3.666977 0.349168 2.473820 2.355648 -3.966058 1.107878 -5.063486 0.418198 -6.688015 -3.510535 0.316127 3.744399 2.718126 2.337231 -1.062343 6.660654 -0.369303 -2.364723 3.287321 5.852811 -4.103710 -1.264746 -0.591677 -1.103035 0.281181 -2.401246 1.995903 0.677211 1.915449 -4.332119 -1.607964 0.759731 0.467763 -2.616949 -0.985280 -0.008056 3.275602 -4.106718 -2.145812 -1.614364 2.450170 0.051931 -7.609342 -1.848068 -2.271191 0.983721 1.260102 -3.183179 -3.247753 1.887536 0.744268 -0.942513 -1.798389 -2.500320 3.243600 3.163405 1.374041 -0.225796 3.188527 1.935359 6.702874 0.977329 -2.256053 0.520663 0.604897 -0.513165 2.546817 -1.196924 -1.086821 0.625841 -3.970703 0.553911 2.537044 -2.456191 -0.923774 -0.751068 0.372932 -0.352892 12.504419 -1.195575 5.440066 4.338980 -4.134244 1.151865 -2.705527 0.523584 1.156570 2.202249 2.446844 -5.600472 -3.560402 4.317822 6.784883 2.393844 -4.572600 1.285770 1.872231 0.617078 -2.047689 2.666278 1.004558 1.043801 -2.789650 -0.592054 3.324926 8.350422 -2.750482 -0.812749 0.848858 0.846526 0.987788 -3.121506 -0.722422 -1.737894 0.153677 2.292864 1.801203 1.885915 5.126042 -5.340038 4.345626 0.023551 -0.229055 4.643021 1.458164 -4.087145 -2.736064 -1.124802 2.340735 3.355485 -0.348668 -0.750682 0.641208 -5.441152 -0.010351 1.181195 0.630709 -2.861152 4.105366 0.860605 -1.966324 -1.964340 -0.319449 -0.359941 -1.321895 -2.066713 3.662105 0.859602 -5.524520 4.093836 1.003158 -2.721435 -0.329517 -1.748392 4.150058 -3.826132 -3.769502 2.243303 -2.809095 -3.826014 -1.802905 -1.314745 1.118717 1.836127 1.964050 -4.422501 -3.371292 5.020604 -1.331686 5.360758 2.609100 -0.618834 3.046725 -0.733401 -2.414328 -2.070741 -3.793207 1.083822 0.339022 -3.390657 -0.867719 -1.417604 3.650078 3.903876 -0.711121 -3.089602 -0.735261 3.791544 -4.480235 -0.916031 1.671959 2.042006 -3.584916 1.945180 2.435543 -3.222382 1.397763 -3.049107 -1.625454 -3.318495 -2.922886 3.427347 -0.996700 1.783708 0.165617 -0.571733 -0.250398 1.797144 1.113074 -0.330968 1.507204 5.677053 3.900354 -1.272500 -0.026471 -5.971219 3.718811 -5.062446 -4.774798 1.647698 0.623362 -2.760138 -1.443391 -0.329614 3.741112 3.026075 -3.760983 -3.063168 2.411337 +-2.551445 -1.038018 -0.061400 -4.115102 3.860703 5.566818 2.030293 -3.643334 -5.718852 -3.454940 2.602835 -9.447930 -6.146338 7.448507 -2.512231 4.131707 9.175231 -0.217895 -2.823585 -2.895048 4.834456 0.536094 10.976269 11.188871 -7.698070 0.712278 0.945888 2.622800 2.397881 0.727659 2.125231 -6.222136 3.208332 -4.511628 0.698950 -2.073299 -2.119464 0.419656 4.215713 -11.833283 -1.093275 3.779176 -1.266828 0.080960 0.730747 4.245848 7.901887 5.917890 -0.828802 6.038586 4.674834 -0.065231 3.187181 0.193155 1.732946 -1.410794 1.543941 -0.911789 -1.743041 -0.962327 -1.794857 -2.888449 -1.163522 7.764587 8.880619 -0.671675 -3.721242 1.861413 1.253105 1.934890 1.627912 6.299974 1.850917 3.460641 5.447585 -6.346503 -0.111238 -11.425495 0.892652 -14.464764 -6.094275 -0.374453 6.643669 2.611724 3.223479 -1.635028 11.326237 -0.651965 -3.157369 7.320450 9.764481 -5.916584 -1.857509 -1.572085 -2.579778 0.957909 -3.753449 2.865776 1.783240 2.232445 -6.999993 -3.954790 1.289764 0.072606 -4.518133 -3.254451 -0.768665 5.373411 -7.460139 -3.105873 -4.493227 3.602741 0.580025 -12.290344 -4.720943 -2.925979 3.274724 2.384490 -5.085264 -4.818761 2.999148 1.236136 -1.653746 -2.936458 -1.191844 5.293758 5.319640 2.370910 0.368010 4.827863 3.497998 10.643915 3.161872 -3.221776 0.103789 1.352471 -0.660978 3.708226 -2.244928 -1.158342 2.343164 -5.872251 1.646021 3.486885 -4.082442 -2.851153 1.208112 -1.208591 -0.448411 22.047718 -1.786640 8.398117 6.525114 -6.739260 1.770044 -4.036285 0.177422 2.602884 4.619789 4.627348 -8.383589 -5.271362 6.885494 11.101801 3.707827 -8.538629 0.864536 3.300977 1.421915 -3.154583 4.467625 1.225198 2.065040 -4.053861 -0.807409 5.547280 13.254837 -4.670133 -3.313534 1.079136 3.832785 1.222957 -5.479245 -0.635350 -3.716611 -0.151248 4.584729 2.097625 3.317188 8.359923 -12.038224 6.497637 -0.117013 -0.339762 5.776482 3.400677 -6.101377 -6.666941 -0.960773 3.997927 5.689232 0.398084 0.132449 0.475953 -8.806173 0.103228 2.336427 1.393492 -5.081332 7.557516 0.327565 -3.467351 -3.498703 -0.700092 -1.448348 -1.943788 -3.148047 5.647005 1.259516 -11.708401 6.730424 1.175717 -4.405668 -0.985914 -2.405349 7.334203 -6.670148 -7.638287 4.096829 -4.740942 -6.886644 -2.468454 -2.655213 1.914879 3.533354 2.319794 -6.478805 -6.690612 8.779266 -1.612123 8.749616 4.561312 -0.760230 7.234691 -3.043327 -4.599650 -4.089270 -5.866675 3.876965 -0.151756 -4.977795 -2.705652 -2.518986 5.329688 6.982859 -0.860246 -4.627730 -1.863718 6.637118 -7.714684 -1.209614 2.913113 5.090458 -4.990783 4.161786 4.154482 -5.138188 1.827270 -5.932997 -1.791875 -5.070872 -4.604258 5.288044 -2.770134 2.093174 1.459810 -1.292727 -0.782858 3.221446 1.814706 -0.129165 1.540874 8.580543 8.764908 -4.024494 -0.000436 -9.398489 5.742131 -8.528850 -8.158843 1.907302 0.649698 -3.549463 -2.691599 -0.840005 5.407580 4.778040 -5.742699 -4.855019 3.807132 +-13.881261 -12.317312 -8.090524 -20.080225 14.763860 32.868098 7.741690 -31.347739 -23.666801 2.901213 16.327682 -43.094767 -15.244288 28.302740 -13.862648 23.773992 29.847743 -6.299936 -20.592579 -9.130631 19.477612 16.872492 45.677370 43.644158 -22.853285 -1.168137 -6.244994 13.869871 6.815714 -11.159902 10.760957 -9.348748 8.849952 -25.515702 -11.787930 2.742240 -7.761170 3.786778 28.840711 -35.836757 -3.909376 4.461997 -3.937967 0.693621 -0.757280 4.648780 22.575267 23.769142 10.962200 18.596041 14.783295 -3.013787 14.888818 0.716220 9.817697 -6.836292 9.889311 -6.627664 -1.953291 -13.472457 -6.831783 7.144886 -2.870575 31.972253 31.409255 7.882890 -17.725572 11.013408 10.278869 7.518537 8.445573 25.935725 -10.324702 21.452319 12.610206 -26.017780 12.051126 -24.609884 4.948947 -14.271260 -18.123130 11.285020 16.276896 11.657999 18.256121 5.290195 42.416024 0.506590 -22.977791 28.903955 33.149506 -24.736019 -6.039459 2.439353 -12.830473 -3.180610 -8.786743 20.948367 1.639224 24.556652 -26.904108 -5.822293 -3.794112 4.053503 -15.684731 -10.700738 2.988450 16.201214 -15.557275 -12.591974 3.393684 23.027807 -2.804963 -47.623749 -33.169302 -16.212702 11.223444 1.403520 -22.835961 -23.059102 11.496695 1.666744 -3.474506 -7.881808 -0.182804 5.707091 25.155708 9.779315 -5.843739 23.941386 12.402895 50.075574 -7.629017 -13.097972 6.868259 0.625959 3.350083 20.473845 -0.776772 -2.689812 -6.710801 -25.192215 13.131224 19.902037 -12.560569 -10.243076 -4.902843 7.540907 -8.683207 91.198870 -6.140781 37.696649 32.192233 -24.182462 -4.439260 -23.122193 8.569200 8.123426 7.564361 10.500935 -37.136320 -23.466796 32.152914 42.893075 13.118758 -29.847134 13.331214 18.389412 1.428614 -14.048096 16.425540 4.990731 2.319689 -8.089902 -2.995612 26.859954 51.802344 -16.548518 -4.527840 9.754099 6.383370 9.018820 -12.882732 -5.990254 -8.770162 0.332739 21.121008 16.222564 11.850786 30.033881 -23.807331 22.519188 5.991592 5.825625 28.123460 15.266355 -30.327377 -4.168702 -13.061647 11.633784 14.161341 -5.992590 -14.492606 3.771227 -32.401758 1.436041 15.459570 -0.748902 -17.718949 29.047328 4.766243 -10.510165 -9.726865 6.094080 -5.244074 -0.762271 -13.544783 25.803691 -14.813029 -29.264418 22.758003 13.413661 -16.482308 -3.119987 -17.533453 28.489678 -19.327009 -22.713080 17.289622 -18.023539 -17.152344 -4.602465 -6.876796 3.189356 22.621028 21.728715 -35.917627 -9.416679 29.986150 -9.179666 36.283076 15.060204 -6.061495 11.432016 -28.138263 -18.553954 -11.751704 -27.321830 11.164623 16.137887 -26.188439 -3.791284 -6.763809 22.697206 15.618034 -3.189977 -27.579676 -1.177007 22.877377 -20.938999 -4.867412 4.569592 11.977430 -30.945780 8.002914 10.422670 -15.097249 17.173888 -14.626957 -12.469283 -29.217342 -18.438593 23.039059 2.956158 13.518848 -4.340130 -3.714786 7.322064 11.908912 9.310863 9.099263 19.138281 32.795803 13.912605 0.668820 -8.220314 -40.564857 24.168059 -27.483072 -32.756430 16.181312 2.137640 -14.502366 -13.024817 -7.180715 25.745674 22.090051 -31.008916 -18.168518 19.436816 +-4.469546 -2.899692 -0.730824 -7.069904 5.935085 8.184392 3.512667 -7.073143 -9.241714 -4.977097 4.696929 -14.314501 -8.621696 12.062191 -4.118763 8.194586 14.908864 -0.035285 -4.347126 -5.782853 8.313846 0.592075 18.168088 18.500422 -12.516515 0.915770 2.129940 3.692812 5.213367 -0.329671 3.391410 -9.028529 6.131299 -8.832219 0.945149 -4.171113 -3.089374 1.703923 9.059802 -18.937085 -1.440498 3.854995 -1.483594 0.360432 0.979571 8.071557 11.567470 9.864903 -1.622947 10.918923 8.284488 -0.202127 4.865167 0.580983 2.579633 -1.682753 2.452584 -1.174977 -2.086534 -1.585031 -2.607580 -3.954878 -1.182198 12.339660 14.657488 -1.566575 -5.914722 4.066300 3.137415 3.008055 3.246277 10.159292 2.591176 4.845584 8.518723 -13.474979 -0.818329 -21.405166 0.801767 -25.128757 -9.807207 0.052939 10.051166 1.433930 6.095247 -1.459825 17.921477 -0.026160 -5.786188 10.715483 14.962535 -10.421083 -2.966662 -1.669673 -3.463167 1.331299 -6.184752 5.460395 3.989259 3.470457 -11.172391 -7.103014 3.114743 0.392902 -7.343240 -6.799108 -0.965567 8.661328 -11.621806 -6.000226 -6.426284 6.008503 -0.175361 -19.521549 -4.828552 -5.907658 7.076901 3.242836 -8.026862 -8.376207 4.330128 2.217617 -2.925090 -5.653945 -1.210325 8.132738 9.731754 4.133532 0.235108 7.531635 4.848659 18.552954 5.044734 -6.028055 0.035200 2.342980 -1.478382 6.375197 -4.787028 -2.276052 5.603568 -9.812979 3.183321 5.616001 -6.463412 -4.455144 6.598738 -1.388947 -1.018240 35.055904 -2.345719 13.804300 11.561245 -10.587076 1.961131 -7.290612 1.367025 5.154838 7.984260 6.325125 -14.622776 -8.882723 10.570237 17.600567 5.959056 -14.832127 -0.858987 5.021818 2.259432 -5.105121 6.438932 1.789802 2.714028 -6.507916 -1.015505 8.600781 21.432135 -7.949563 -2.847584 1.161320 6.908467 1.082185 -10.234669 -1.710728 -7.289284 0.063612 7.029524 4.349666 5.452774 13.285085 -20.624526 10.073956 -0.994115 0.204347 8.763267 6.744984 -10.555850 -12.231067 -1.422656 5.526342 9.028753 -0.117676 2.157709 2.214140 -14.394126 0.340732 3.019140 1.610626 -8.207088 11.641469 1.273976 -5.475285 -4.910493 0.937194 -2.004240 -3.967967 -3.530270 9.605462 2.893419 -19.918131 9.868033 0.960223 -7.622084 -0.195827 -4.210965 13.402514 -10.780501 -11.167151 7.084778 -6.878812 -9.258766 -4.497163 -3.710823 3.505003 3.898967 4.791676 -10.277112 -10.773517 13.247571 -3.567408 13.649098 7.278278 -1.868055 11.328970 -8.462154 -7.189603 -7.443851 -8.859133 4.762608 0.261744 -8.308596 -4.096873 -3.561117 8.900293 11.150917 -1.077288 -7.524673 -1.339129 10.580785 -14.663852 -0.918884 4.563463 11.373375 -8.071580 6.922558 6.398929 -9.181210 3.408512 -8.530463 -3.317135 -7.496358 -7.196599 9.535376 -3.671315 4.113458 0.957049 -1.182531 -0.167951 5.988880 3.119149 0.331555 2.658144 13.646442 15.835573 -6.196833 -1.853348 -15.134408 8.851232 -13.499676 -13.272413 3.197235 1.337867 -6.568147 -3.715840 -1.561500 9.738448 7.903040 -8.854145 -7.864627 5.851825 +-19.470406 6.069455 5.539809 -34.341335 39.996779 33.408061 18.796838 -17.837399 -42.153697 -40.715063 7.664208 -74.258893 -62.125702 61.825664 -17.236909 34.259190 92.899055 6.128337 -9.876450 -31.246108 40.178493 -16.052322 100.050601 102.285881 -75.954618 9.401257 21.809945 28.077516 14.644921 14.701483 8.097646 -62.991650 29.169417 -41.032270 21.566875 -30.136499 -14.605170 0.660602 28.188237 -119.633299 -10.251013 23.356725 -7.214716 2.297775 2.941028 43.332010 84.084708 54.646862 -19.424216 51.357080 45.702972 0.482764 28.289441 6.379605 7.706339 -2.380833 6.172231 -8.031997 -21.264170 0.333067 -13.469364 -43.608777 -4.384181 67.990823 83.062913 -9.766337 -30.097185 21.919105 6.757346 13.927746 6.555649 54.996038 24.760123 27.690422 53.119303 -73.531518 -9.607982 -131.240221 1.883747 -161.496479 -64.941259 -27.962651 53.945066 17.267879 33.439477 -10.338734 104.304914 -2.863020 -5.120233 59.598727 92.291477 -61.152075 -19.392038 -29.074787 -18.103714 15.643994 -35.159674 16.790438 23.035173 10.533155 -62.667152 -49.364880 29.182064 -0.947792 -42.262980 -39.356008 -10.296465 49.056501 -69.763239 -36.777684 -70.375706 18.257929 1.771005 -111.538546 -10.205081 -18.664969 36.649090 26.289716 -35.516229 -53.631091 22.192444 22.847394 -18.792554 -32.532182 -19.365595 60.196595 47.364208 7.928657 15.988165 39.240699 30.445382 96.368264 47.929699 -28.527002 -12.963464 21.252706 -21.876667 15.385059 -33.381115 -13.628257 35.381386 -60.297925 13.021814 31.179451 -40.538292 -23.667206 31.078435 -25.713369 12.374857 188.718497 -16.581868 64.043027 48.207276 -64.704261 35.913861 -35.118248 -8.749292 24.304354 52.239637 46.990094 -81.081377 -48.035207 49.165889 96.023564 35.265944 -75.895568 -15.612109 14.780403 15.899125 -22.823285 33.841024 15.411168 16.390056 -36.773342 -4.734182 46.295383 124.716034 -42.409743 -25.964258 9.704950 40.342483 3.219168 -72.082750 -9.851962 -51.195043 -8.953455 31.391179 17.009083 27.919857 78.665184 -127.358268 58.000992 -10.013759 -8.882575 46.234684 23.677895 -44.172844 -86.593304 6.203929 46.213197 59.076377 3.147096 16.707809 -3.090791 -78.519980 -0.086551 16.295449 25.503565 -47.380398 66.912832 -4.676929 -42.607668 -35.518546 -7.687373 -17.720544 -26.093144 -20.122875 45.280310 31.501953 -120.260444 67.705542 -3.102891 -41.463028 6.312909 -21.206342 68.165599 -67.302704 -73.597460 39.357754 -35.525013 -51.455756 -22.958640 -21.132055 25.432124 14.465838 4.969164 -47.881382 -73.580632 73.241855 -6.375464 68.924023 44.116589 2.746894 74.853705 -18.447608 -48.073063 -40.667446 -45.886077 23.245067 -13.025594 -38.838890 -32.429012 -25.686705 49.647751 84.522258 -5.602639 -27.945457 -12.833238 63.517956 -82.114793 -15.969363 34.946773 46.390193 -35.643803 37.032009 44.635682 -53.963039 -3.637613 -59.840450 -2.855918 -28.352510 -47.759873 39.131948 -47.882687 9.908732 28.924837 -18.020903 -11.543868 36.795762 14.567592 -0.009818 -1.395236 80.365598 89.942398 -44.724251 1.065617 -78.981831 43.152775 -86.369909 -69.125307 7.503696 14.653918 -28.538924 -16.999197 2.025443 44.668176 26.480840 -39.759996 -42.215306 13.520060 +-2.947739 -1.649226 0.498121 -5.917981 4.051335 6.210273 2.207630 -3.923204 -7.648114 -4.372422 2.893016 -12.014445 -7.028411 9.186991 -3.234484 4.455757 11.468241 0.298200 -3.827908 -3.259038 5.641351 0.599425 12.867431 13.778220 -9.186114 0.771972 -0.512436 4.042531 2.830299 1.660255 3.277091 -7.454128 2.583662 -4.377356 1.453603 -2.972851 -2.417302 1.555478 4.000674 -14.982498 -1.034928 6.371112 0.095992 -0.176829 1.377379 3.974141 9.434081 7.191807 -0.566404 6.466225 5.456279 0.603897 4.425471 0.103466 2.248586 -1.433241 2.029834 -2.879910 -2.132523 -0.777573 -2.037074 -3.348920 -0.739268 9.707467 10.761837 -0.263043 -4.631705 1.161645 2.062307 2.332632 2.488658 7.457775 1.431689 4.040607 5.938444 -6.818197 1.024194 -12.521417 2.494465 -15.896641 -7.111208 -0.375584 8.849728 6.190760 3.182248 -3.088765 13.709160 -1.812100 -3.611483 9.594111 11.366081 -6.280076 -2.245459 -2.686561 -3.907976 1.463680 -4.277203 2.407076 0.657742 4.282636 -8.258626 -3.967402 1.080335 0.111776 -5.516157 -2.542248 -0.700526 6.530902 -9.125093 -3.532097 -4.822838 5.712832 1.195636 -14.311640 -5.634693 -4.798965 1.819367 2.347129 -6.364489 -5.223071 3.696251 1.041010 -2.335067 -2.122726 -5.228969 6.673920 5.365702 2.107082 -0.268174 5.839032 3.769954 11.558979 1.889152 -4.449637 0.459807 2.431725 -0.748688 3.758148 -3.120282 -1.701861 2.963806 -6.940968 -0.042900 3.303990 -5.031224 -3.154693 -1.293545 -1.335229 -0.280070 27.041160 -2.210735 9.856160 7.853295 -7.725841 3.284958 -3.437681 0.521468 2.865047 5.356028 5.474453 -10.213787 -6.663118 7.895242 13.402927 4.625792 -8.144964 1.676830 4.014342 1.238070 -2.877720 5.665355 1.020430 1.562705 -5.099846 -1.247407 5.953024 16.121393 -3.978667 -2.419436 0.960456 4.642459 0.805974 -5.750908 -0.346453 -4.299921 -0.094270 4.548612 2.323309 4.596108 10.202465 -13.680591 8.508636 0.067127 0.076160 6.819364 2.518816 -6.850898 -8.522108 -1.923789 4.602636 7.690487 -0.289065 -0.103600 0.743240 -10.722656 0.103075 2.655943 2.075089 -6.385969 9.076573 0.244767 -4.144330 -3.919189 -1.163500 -2.747069 -1.858635 -4.507707 6.653840 2.034372 -11.368231 8.134891 1.604432 -4.469938 -1.234923 -2.621779 7.821023 -8.288077 -8.681843 4.492895 -5.012278 -8.636665 -2.968237 -3.485855 2.799143 3.545964 1.778383 -8.129292 -7.761273 10.808416 -2.266485 10.789147 5.534755 -1.591610 7.276263 -0.560839 -4.630203 -4.027028 -7.564551 3.555637 -0.170988 -5.490951 -2.202716 -3.278229 6.237662 8.343716 -1.127328 -5.814829 -1.365945 8.684628 -6.854127 -2.048839 3.008623 2.311682 -5.823115 4.742747 4.829216 -6.776598 2.202918 -7.929195 -1.376651 -5.656875 -5.111991 6.761147 -3.221687 2.698612 1.682906 -1.594321 -1.426627 3.658342 2.650505 -1.207725 2.516285 11.744014 7.864889 -2.817869 1.106356 -11.474256 6.759966 -10.145122 -8.715837 0.946451 0.972309 -4.594374 -2.745221 -1.069014 6.755643 6.274589 -5.735524 -5.697383 4.875214 +-1.242353 -1.093707 -0.130491 -1.602105 1.760453 1.015431 1.137858 -0.963373 -3.136016 -1.556513 1.044497 -3.917032 -2.668367 3.706247 -0.755564 2.234352 4.824098 0.826285 -0.905916 -1.660150 2.577738 -2.028500 4.904825 5.489098 -3.501396 0.360254 0.450617 1.409606 0.982738 0.715349 0.440556 -2.364102 1.443803 -2.878760 0.980909 -2.150063 -0.785517 1.121638 2.002790 -6.198599 -0.419218 1.677196 0.710864 0.082642 0.122767 3.386340 3.227579 2.883720 -1.069611 3.479139 2.322062 -1.187024 1.791743 0.318461 0.794574 0.085160 0.603505 1.060774 -1.317481 0.294279 -0.937536 -2.519207 0.289004 3.251341 4.621283 -0.710200 -1.602439 0.962738 0.522792 0.969203 1.177422 2.666179 1.021422 0.238316 3.016490 -3.842180 -0.436195 -7.531959 0.229649 -9.416818 -2.923352 -0.440737 3.743145 -0.026689 1.550080 -0.509327 5.319043 -0.225242 -1.293169 3.340328 4.387137 -2.955684 -1.235258 -1.035322 -1.416789 0.710850 -1.867713 0.598926 2.717530 0.838264 -3.283766 -2.398995 1.598737 0.091536 -2.008307 -1.918346 -0.550505 2.856814 -3.602347 -2.176863 -2.983969 1.128348 0.133525 -5.440526 -0.007330 -1.655640 1.376449 1.544962 -2.433883 -2.100537 1.449916 0.532512 -1.088004 -1.386232 -0.796077 3.187186 1.661572 0.908764 0.466343 1.826826 0.950376 4.349810 2.220106 -1.998760 -0.201284 1.350786 -1.313036 1.688370 -2.100471 -1.403229 2.840425 -3.199705 0.486294 0.335818 -2.194647 -1.090149 2.691101 -0.331308 0.051460 9.031954 -0.518769 3.760803 2.797036 -2.952973 2.508718 -1.230937 0.583438 1.816878 3.185701 1.449289 -3.957657 -2.700746 2.566715 5.095324 1.999929 -4.464426 -1.758726 0.885200 1.113166 -0.516176 1.787507 0.757688 0.656101 -1.851147 -0.173178 1.629000 6.389312 -2.406604 -1.117850 0.303277 1.996459 -0.465895 -4.698710 -0.419458 -3.095310 -0.266425 0.415328 0.797172 1.475607 4.050251 -7.204280 3.357772 -1.192951 0.000730 2.757226 1.320484 -2.636152 -6.076958 -0.459311 1.497911 3.474908 0.611119 0.060869 0.808585 -4.177105 0.121231 0.490339 0.947679 -2.344335 3.671212 -0.793984 -1.641039 -1.464522 -0.214003 -0.874019 -1.522868 -0.638599 2.631568 1.588777 -5.680698 2.676521 -0.116940 -2.188410 0.179080 0.054092 2.752889 -3.175204 -3.780183 1.834137 -1.756271 -2.807592 -2.213272 -1.124811 1.191805 0.578321 -0.553486 -2.037903 -4.024489 4.137169 -1.536302 3.948146 2.130996 -0.869487 3.856310 0.161702 -2.680504 -2.347912 -1.387261 0.320954 -1.387761 -1.654404 -1.725584 -1.073166 2.622956 3.640127 0.538379 -1.171993 -0.456786 4.056529 -3.406720 -1.096249 2.012656 1.794989 -1.338546 2.556312 2.455955 -3.447862 0.408650 -2.947937 -0.672058 -1.411731 -1.711193 2.656546 -1.874463 0.784183 0.281175 -0.462424 -0.050623 1.756718 1.157411 -0.092219 -0.040006 4.932205 4.741778 -2.357597 0.010792 -4.036833 2.297695 -4.037727 -3.077604 -0.033924 1.751189 -2.183672 -0.545090 0.686917 2.400000 1.918541 -2.789927 -2.447336 1.121217 +-2.441467 -1.197107 -0.300534 -3.949233 3.329230 5.455677 1.754285 -3.948145 -5.058173 -2.663154 2.581017 -8.258435 -5.042325 6.636148 -2.569393 4.035767 7.990148 -0.370068 -2.778859 -2.613656 4.630276 1.166279 10.041698 10.010648 -6.961856 0.372940 0.999359 2.491345 2.679060 0.158195 2.047642 -5.063263 3.017165 -4.434742 0.091086 -1.864466 -1.579545 0.484775 4.316743 -10.155900 -0.875809 2.524385 -1.387362 0.088594 0.453455 3.567438 6.686778 5.502841 -0.683804 5.252370 4.519219 0.339520 2.519876 0.234630 1.279766 -1.398735 1.314368 -0.915276 -1.115421 -1.327697 -1.376639 -2.114475 -0.910178 7.185014 8.093153 -0.392470 -3.112378 2.029487 1.318934 1.704731 1.636255 5.541285 1.190898 3.343353 4.675239 -6.132761 0.054978 -10.150347 0.633730 -12.046725 -5.071748 -0.083395 5.373308 1.936412 3.187354 -0.885152 9.911558 -0.254995 -3.067399 6.766999 8.460171 -5.477715 -1.606591 -1.256675 -2.450097 0.891450 -3.524635 3.046506 1.136088 2.362104 -6.133930 -3.622420 0.735856 0.367011 -4.042730 -3.244691 -0.530684 4.554179 -6.515764 -2.869136 -3.269783 3.396016 0.139053 -11.139564 -4.656566 -3.132501 3.704820 1.585044 -4.262086 -4.541506 2.372256 1.328551 -1.264477 -2.849668 -0.673479 4.082299 5.146029 2.272256 0.029357 4.048295 3.041021 10.017759 2.429083 -2.984518 0.078731 0.961023 -0.593237 3.428978 -2.162950 -0.867019 2.128056 -5.369920 1.780636 3.683650 -3.497335 -2.751117 1.740221 -0.915735 -0.361794 20.250137 -1.315676 7.574111 6.234964 -6.088537 0.667478 -3.951007 0.399147 2.598163 3.742940 3.810768 -7.805717 -4.808815 6.077880 9.766176 3.319869 -7.639740 0.905758 3.018803 1.104796 -2.979144 3.637688 1.094628 1.371151 -3.593385 -0.764836 5.308942 11.602232 -4.060783 -2.235483 1.096408 3.499132 0.774991 -4.557057 -0.765930 -3.107423 0.104064 4.562371 2.064075 3.049177 7.405449 -10.334544 5.557766 0.133714 0.065505 4.781344 3.266080 -5.798922 -4.990144 -0.696532 3.441669 4.678437 -0.012759 0.338599 0.819040 -7.892577 0.102824 2.228466 1.009192 -4.394284 6.498627 0.920157 -3.045982 -3.290106 0.088417 -1.123017 -1.650493 -2.603949 5.219173 0.327496 -10.368565 5.939475 0.902364 -4.045350 -0.706463 -2.633834 6.921832 -6.147199 -6.579665 3.891564 -3.981810 -5.533802 -2.142526 -2.027671 1.912794 3.333406 2.785973 -6.157838 -5.770766 7.306625 -1.552510 7.529952 3.940019 -0.618850 6.070904 -4.237617 -3.699483 -4.101238 -5.184988 3.414422 0.505455 -4.889187 -2.194232 -2.036828 4.950871 6.085256 -1.025527 -4.488864 -1.044176 5.807960 -7.038353 -1.051093 2.283596 5.486617 -4.942001 3.492827 3.393100 -4.679139 1.821552 -4.855636 -1.692479 -4.473071 -4.386141 5.020561 -1.956746 2.364884 1.088225 -0.715418 -0.412081 3.034213 1.663825 0.264909 1.775516 7.490280 7.802395 -3.164450 -0.559473 -8.580479 5.045219 -7.718018 -7.647401 2.142600 0.188090 -3.074502 -2.199821 -1.095547 5.272872 4.395254 -4.892495 -4.112087 3.429606 diff --git a/vocabulary/seedEmbeddingVocab.txt b/vocabulary/seedEmbeddingVocab.txt index dae34255e..cc79b3cda 100644 --- a/vocabulary/seedEmbeddingVocab.txt +++ b/vocabulary/seedEmbeddingVocab.txt @@ -1,63 +1,63 @@ -add:[0.02612389624118805, -0.11277415603399277, 0.07611120492219925, 0.10220114141702652, 0.07786831259727478, 0.011054334230720997, -0.017998341470956802, -0.0552845261991024, 0.05894482508301735, 0.02747770957648754, 0.03393138572573662, 0.09545525163412094, -0.05055134743452072, 0.008955157361924648, 0.08106179535388947, 0.010234813205897808, -0.016270728781819344, -0.10791800171136856, -0.03135551139712334, -0.011057134717702866, -0.06216929107904434, -0.03955608606338501, -0.05399753153324127, 0.14068573713302612, -0.03383839875459671, -0.19378115236759186, -0.025829337537288666, 0.07529284805059433, -0.11054918169975281, 0.18575923144817352, -0.04420119896531105, -0.014573176391422749, 0.08322957158088684, -0.2107955366373062, 0.09554097056388855, 0.042816903442144394, 0.07242916524410248, 0.033295419067144394, 0.06872077286243439, -0.11332408338785172, -0.07497014850378036, -0.06682691723108292, 0.047926805913448334, -0.0012962960172444582, -0.12448803335428238, -0.06274882704019547, -0.005261269863694906, 0.07944662868976593, -0.002512312727048993, 0.06703902781009674, 0.07718264311552048, 0.018794063478708267, 0.019213156774640083, 0.18312880396842957, 0.03275509551167488, 0.03037862293422222, 0.05589226633310318, -0.029681865125894547, -0.043458253145217896, -0.07770159095525742, 0.05747043341398239, 0.014112952165305614, 0.057647474110126495, 0.039244264364242554, -0.0022121574729681015, -0.022840425372123718, -0.010069084353744984, 0.002513126004487276, -0.04683806002140045, -0.02969392016530037, 0.09895183891057968, -0.031543027609586716, -0.012604457326233387, -0.01629713736474514, 0.10647127032279968, -0.0641237124800682, 0.21733734011650085, -0.025123272091150284, 0.08699474483728409, -0.058490801602602005, 0.03625088930130005, 0.06123587116599083, 0.01985153742134571, 0.05065866559743881, 0.07353875786066055, 0.016118505969643593, 0.07285816222429276, 0.040611762553453445, -0.04983237013220787, 0.01005993690341711, -0.08456652611494064, 0.0916021466255188, 0.027968404814600945, -0.09991072118282318, -0.04209379851818085, -0.061882127076387405, -0.051960673183202744, 0.14912723004817963, -0.0661136656999588, 0.09060724824666977, 0.022007310763001442, -0.01381027139723301, 0.08941073715686798, -0.021816646680235863, 0.07926555722951889, 0.03616059944033623, -0.03902607038617134, -0.05181117728352547, 0.055977363139390945, 0.07040797173976898, -0.005122669506818056, -0.09714866429567337, -0.052171435207128525, -0.06113460287451744, 0.03081728331744671, -0.10761938989162445, -0.11228952556848526, -0.02665531262755394, 0.09034571051597595, -0.0416654534637928, 0.016341518610715866, 0.09391607344150543, -0.17787428200244904, 0.04813914746046066, -0.059878453612327576, -0.06486188620328903, 0.05646948143839836, 0.028140082955360413, 0.097746841609478, -0.0325646847486496, -0.07091774046421051, -0.15575234591960907, 0.11987245827913284, 0.13956689834594727, -0.07431378960609436, -0.04610971361398697, 0.012861265800893307, 0.09802542626857758, 0.06957327574491501, 0.08069568127393723, 0.08436621725559235, 0.12127618491649628, 0.06451410055160522, -0.00816162209957838, -0.182604119181633, 0.003202699590474367, -0.07934120297431946, -0.05877997353672981, -0.10800781846046448, 0.005628571845591068, 0.03306276351213455, -0.08447618782520294, -0.09769325703382492, 0.009650720283389091, 0.09243893623352051, 0.05615059658885002, -0.03831968829035759, 0.04598141461610794, 0.02392006851732731, 0.08951347321271896, 0.05310201272368431, -0.006891438737511635, 0.013783741742372513, -0.056560926139354706, 0.06259261071681976, -0.08152242749929428, -0.023018483072519302, 0.10867217183113098, 0.09189682453870773, -0.07523870468139648, 0.03791910409927368, -0.036096736788749695, 0.0441540963947773, -0.07568080723285675, 0.08698511868715286, -0.10045476257801056, -0.002906834241002798, 0.035368382930755615, 0.1070033609867096, -0.03054075315594673, 0.23435816168785095, 0.12236040830612183, 0.010104117915034294, -0.034974031150341034, 0.05268321931362152, -0.01512068323791027, -0.07071474939584732, -0.012747902423143387, -0.06805337965488434, -0.023798739537596703, -0.0359678752720356, 0.11983215808868408, -0.04011331498622894, -0.10763934999704361, -0.023828938603401184, -0.002687688684090972, 0.02283281646668911, -0.07849909365177155, 0.0969904288649559, 0.07779286056756973, 0.029198888689279556, -0.011797749437391758, 0.05363431200385094, -0.035059232264757156, 0.034244000911712646, -0.07827835530042648, 0.014672000892460346, 0.14607474207878113, -0.10209421813488007, -0.09122753888368607, -0.04272071272134781, 0.03466206043958664, 0.05134354159235954, 0.020052481442689896, 0.21684040129184723, -0.08144395053386688, 0.15109194815158844, 0.05835071951150894, -0.10098345577716827, 0.04372527822852135, -0.058288153260946274, -0.033971261233091354, 0.11665313690900803, 0.09602850675582886, 0.11425826698541641, -0.03628793731331825, -0.021984023973345757, 0.06484097242355347, 0.024652643129229546, 0.0316900759935379, -0.06211928650736809, 0.009199765510857105, 0.048347700387239456, -0.004856590647250414, 0.05198248475790024, -0.015533952042460442, 0.017495622858405113, -0.01997194066643715, -0.07737424969673157, 0.019038114696741104, -0.0005977530963718891, -0.05489397794008255, -0.07748395949602127, 0.05645540729165077, -0.008227341808378696, 0.009354273788630962, -0.05505529046058655, -0.04631908982992172, -0.07865229994058609, 0.030163176357746124, 0.01011663768440485, -0.016045795753598213, -0.08619223535060883, 3.73334733012598e-05, -0.006063609849661589, -0.027694478631019592, 0.06359568238258362, 0.030421268194913864, -0.03309484198689461, 0.05781521275639534, 0.01016388088464737, 0.017858806997537613, -0.010185208171606064, 0.08195780962705612, 0.0035951538011431694, -0.024809332564473152, 0.012698827311396599, 0.007143666967749596, -0.05406628176569939, 0.11580364406108856, 0.004423213191330433, 0.21705730259418488, 0.0990535169839859, 0.02096620202064514, 0.10481463372707367, 0.018447717651724815, 0.035856835544109344, -0.02940802462399006, 0.018362626433372498, -0.09252813458442688, -0.015014673583209515, 0.06483776122331619, 0.005718039348721504, 0.050459735095500946, -0.03519180789589882, 0.040502432733774185, 0.05363975837826729, -5.8341873227618635e-05, 0.008042796514928341, -0.12492378056049347, -0.1795274317264557, 0.01218715775758028, -0.017340047284960747, 0.06047644466161728, -0.03416691720485687, -0.010996165685355663, -0.016716664656996727, 0.031485650688409805, -0.10312379896640778, -0.11977283656597137], -alloca:[0.032481078058481216, -0.11930342018604279, 0.07118548452854156, 0.09461291134357452, 0.0682024136185646, -0.039781685918569565, 0.14334076642990112, -0.040762100368738174, -0.006409681402146816, 0.029302231967449188, 0.01672324351966381, 0.09338513016700745, -0.11999806761741638, 0.024447644129395485, -0.12646515667438507, 0.05014152079820633, -0.013325369916856289, -0.09903674572706223, -0.014187012799084187, 0.025447489693760872, 0.008683335967361927, -0.03809656947851181, 0.11371278762817383, 0.0626661479473114, 0.07340104132890701, 0.009777233935892582, -0.001748988521285355, -0.11474777013063431, -0.1344423145055771, -0.09695030748844147, -0.018265703693032265, -0.011745520867407322, 0.1168299987912178, -0.02255930006504059, -0.07800314575433731, 0.05545657500624657, 0.007656618021428585, 0.11137554049491882, 0.019590333104133606, -0.10588690638542175, 0.07094752788543701, -0.06740660965442657, -0.02504909411072731, -0.018305441364645958, -0.017236169427633286, 0.0005748842959292233, -0.007274063769727945, 0.03519934043288231, 0.011945637874305248, 0.12585042417049408, 0.05449226126074791, 0.03294355422258377, 0.15431639552116394, 0.024195022881031036, -0.007691786624491215, 0.015456550754606724, 0.05876797065138817, 0.02504543773829937, -0.03157679736614227, -0.07882033288478851, 0.05353199318051338, 0.029539303854107857, 0.05397695675492287, 0.03650916740298271, 0.05194449424743652, -0.021706385537981987, -0.1068757176399231, -0.04739588871598244, -0.06510336697101593, 0.003707411466166377, -0.09461674839258194, 0.06564424932003021, -0.07247690856456757, 0.046979472041130066, -0.001077793538570404, 0.0021710358560085297, -0.015545511618256569, 0.0015338555676862597, 0.08044728636741638, -0.0584082305431366, 0.07830514013767242, -0.010695424862205982, -0.1077783852815628, -0.11280065774917603, -0.0635896623134613, 0.040183696895837784, -0.14025503396987915, 0.06288493424654007, 0.041249316185712814, -0.08391772210597992, -0.003007380524650216, 0.04313626140356064, -0.041451144963502884, 0.024644138291478157, -0.04048975557088852, -0.10644468665122986, 0.07547273486852646, -0.0021408700849860907, -0.06099101901054382, 0.0021812485065311193, 0.020702404901385307, -0.08750243484973907, 0.10731702297925949, 0.05303853005170822, -0.05465223267674446, 0.10785180330276489, -0.06303288042545319, -0.06448308378458023, 0.04850230738520622, -0.008593586273491383, 0.11009271442890167, -0.0840071514248848, -0.018844913691282272, 0.03744049742817879, -0.04754135385155678, -0.021926285699009895, -0.1050741896033287, -0.03373156487941742, -0.0056792814284563065, -0.11991654336452484, 0.0039318036288022995, 0.02589990757405758, 0.0461835116147995, 0.08992483466863632, -0.0238259956240654, -0.008930006995797157, 0.04507361352443695, 0.054877396672964096, 0.030197694897651672, 0.038918714970350266, 0.08403397351503372, 0.07061288505792618, 0.08143381774425507, 0.01148789282888174, 0.06226459518074989, 0.01913687400519848, -0.12223483622074127, 0.08323889970779419, -0.007348387036472559, 0.059370968490839005, 0.07427601516246796, -0.017599821090698242, -0.0037201540544629097, -0.037400707602500916, 0.02419244311749935, -0.09471238404512405, -0.06803791224956512, -0.0023852521553635597, -0.0015655085444450378, -0.044324055314064026, -0.0036935005336999893, -0.07810816913843155, 0.04755663126707077, -0.005612439475953579, 0.08467783033847809, -0.09832175076007843, -0.0061996933072805405, 0.160366028547287, -0.04912002012133598, -0.0479883998632431, 0.13384462893009186, -0.08281252533197403, 0.00731824291869998, 0.008327853865921497, 0.059706538915634155, -0.0677996501326561, -0.09283097833395004, 0.10658074915409088, 0.08301912248134613, -0.01888193190097809, -0.048925526440143585, 0.12051106244325638, 0.036514755338430405, -0.07438343018293381, 0.03847827762365341, 0.015443735755980015, -0.003602691926062107, -0.10422681272029877, 0.07469618320465088, -0.004412781447172165, -0.013280343264341354, 0.08680754899978638, 9.06939385458827e-05, -0.0035392388235777617, -0.026049340143799782, -0.0063283187337219715, -0.022102084010839462, -0.1052434965968132, 0.08673064410686493, -0.05588917061686516, 0.041720595210790634, 0.03540290519595146, -0.014751880429685116, -0.03937901556491852, 0.1070820763707161, -0.0910605639219284, -0.025087755173444748, -0.10827049612998962, 0.07351770251989365, -0.02610015869140625, -0.03524312004446983, -0.08765070885419846, -0.01714506186544895, 0.10324067622423172, -0.03650874271988869, 0.014532189816236496, 0.06122797727584839, 0.11213354021310806, 0.0116111496463418, 0.046061694622039795, -0.06530226767063141, 0.050072699785232544, -0.06897205859422684, -0.07890869677066803, 0.1718834638595581, -0.07638130336999893, -0.019037364050745964, 0.06487960368394852, -0.05757647007703781, 0.08187580108642578, 0.013499957509338856, -0.029371589422225952, -0.12266476452350616, 0.09109476953744888, 0.03632547706365585, 0.0959966704249382, 0.07369918376207352, 0.06478613615036011, -0.0625409483909607, 0.007677101064473391, 0.0026013117749243975, 0.025790536776185036, 0.06823155283927917, -0.01215288694947958, 0.01981480047106743, -0.005366835277527571, -0.07045622169971466, -0.017467781901359558, -0.06271790713071823, -0.007202197797596455, -0.0661509558558464, -0.035689763724803925, 0.15318213403224945, 0.021030986681580544, -0.005487336311489344, 0.10289910435676575, -0.011628737673163414, 0.13133007287979126, -0.06864804774522781, 0.08532099425792694, 0.004848097451031208, 0.08610286563634872, -0.057608895003795624, -0.04569144546985626, -0.0018526986241340637, -0.005976336542516947, 0.005069284234195948, 0.14031606912612915, -0.025539586320519447, -0.10756149142980576, 0.03357885032892227, -0.10050872713327408, 0.02227373979985714, -0.09144098311662674, 0.14985591173171997, -0.10824456065893173, 0.014439597725868225, -0.07679221034049988, -0.09736452996730804, -0.020699044689536095, -0.0005414362531155348, 0.021227946504950523, 0.12687842547893524, -0.01358113531023264, 0.07039779424667358, -0.02091994695365429, -0.0044504208490252495, 0.0796649158000946, -0.02250078320503235, 0.08435137569904327, 0.03626113384962082, -0.03608304634690285, 0.10184593498706818, -0.053854603320360184, -0.04530523717403412, -0.013010021299123764, 0.04775315150618553, -0.04117496311664581, 0.012159718200564384, -0.09863382577896118, 0.014855376444756985, -0.00924485083669424, 0.038832008838653564, 0.02953311800956726, -0.00832892395555973, 0.11924654245376587, 0.0004708819615188986, -0.013041390106081963, -0.039886921644210815, -0.07695568352937698], -and:[0.033853910863399506, -0.11472327262163162, 0.07775008678436279, 0.10750123113393784, -0.05845268443226814, 0.045248694717884064, 0.08095237612724304, -0.05482036992907524, 0.003753126598894596, 0.03039705567061901, -0.0014603125164285302, 0.11154892295598984, -0.03835062310099602, 0.0779489129781723, 0.1840513050556183, -0.03249143064022064, -0.015480921603739262, -0.1128491684794426, -0.055889785289764404, 0.014770212583243847, -0.06431163102388382, -0.05132893845438957, -0.03132490813732147, 0.14493738114833832, -0.042776599526405334, -0.03326549753546715, -2.606663474580273e-05, -0.09348660707473755, -0.09135805070400238, -0.27900898456573486, -0.044075578451156616, -0.02386585623025894, 0.07896909862756729, -0.08607358485460281, 0.13054248690605164, -0.09893721342086792, 0.06362894922494888, 0.02318984642624855, 0.04437879100441933, -0.11906951665878296, -0.06714777648448944, -0.036724913865327835, 0.05681726709008217, -0.06409929692745209, -0.11356120556592941, -0.15530698001384735, -0.054503433406353, -0.05764102563261986, 0.0009457665728405118, 0.08759010583162308, -0.02736707217991352, -0.021071335300803185, 0.01448391005396843, 0.023329447954893112, 0.0437970794737339, -0.012675908394157887, 0.06206244230270386, 0.02312011830508709, -0.08612284064292908, -0.09420748800039291, 0.061900317668914795, 0.015200234018266201, 0.0606687106192112, 0.04552118107676506, -0.0032837367616593838, -0.015525255352258682, -0.06697141379117966, 0.0027637858875095844, -0.013313631527125835, 0.028126006945967674, 0.017604324966669083, -0.09867214411497116, -0.03821073845028877, -0.015645073726773262, 0.06179140880703926, -0.054047733545303345, -0.2900331914424896, 0.046906426548957825, 0.09119030088186264, -0.05274425074458122, 0.016591541469097137, 0.08485288172960281, 0.04778830707073212, 0.05582568421959877, 0.06958068907260895, -0.007660918403416872, 0.08174607157707214, 0.06794032454490662, -0.05012945085763931, 0.08587297052145004, -0.002091789385303855, 0.07491229474544525, -0.04980902746319771, -0.05419972166419029, -0.08970315754413605, 0.19434982538223267, 0.031009243801236153, -0.06094903498888016, -0.05108492076396942, 0.1004972979426384, 0.04341556876897812, -0.008082430809736252, 0.039538055658340454, 0.06988996267318726, 0.07622422277927399, -0.04097716137766838, -0.053998418152332306, -0.053131867200136185, -0.08474531769752502, 0.10101582854986191, -0.008473565801978111, -0.08401621878147125, 0.03181350603699684, 0.00613110326230526, 0.049398813396692276, 0.0640563815832138, -0.12372446805238724, -0.027086196467280388, 0.0933092013001442, -0.040805634111166, -0.035961855202913284, 0.09300107508897781, 0.10024551302194595, 0.03519732505083084, -0.054381534457206726, -0.06827404350042343, 0.05187228322029114, 0.029550880193710327, 0.015514310449361801, 0.004566878080368042, 0.12004128843545914, -0.0731719359755516, -0.07666195929050446, 0.0009976335568353534, -0.10255569964647293, -0.21909956634044647, -0.011827784590423107, -0.05779923498630524, 0.09331991523504257, 0.1094246581196785, 0.01798992231488228, 0.07028670608997345, 0.012315998785197735, -0.04787847027182579, 0.05759721249341965, -0.004988078493624926, -0.08572692424058914, 0.06807193905115128, -0.05976886302232742, 0.006666094530373812, -0.07938498258590698, -0.07667072862386703, 0.0367668941617012, -0.15612876415252686, 0.10042502731084824, 0.06577657908201218, -0.011271053925156593, 0.008915995247662067, -0.13617916405200958, 0.040051717311143875, 0.03183235600590706, 0.022124681621789932, 0.007861160673201084, 0.12399252504110336, 0.03542022407054901, -0.08176226168870926, -0.10176263004541397, 0.11381388455629349, 0.10176131874322891, 0.00529498141258955, 0.041066788136959076, -0.05504748225212097, 0.05451967194676399, -0.10025733709335327, 0.018280379474163055, -0.07794389128684998, -0.06678285449743271, -0.045159392058849335, 0.07733310759067535, 0.015250415541231632, -0.15885846316814423, 0.08183833956718445, -0.010554230771958828, -0.05394778773188591, 0.027097303420305252, -0.024235496297478676, -0.0502411313354969, 0.04805934429168701, -0.10841363668441772, -0.030757393687963486, 0.04157553240656853, 0.04787582904100418, -0.049944888800382614, -0.1083337813615799, -0.04892345517873764, -0.0303222443908453, 0.021959181874990463, -0.036812923848629, 0.10032055526971817, -0.02155213989317417, -0.03937073424458504, -0.013513571582734585, 0.10160064697265625, -0.07026060670614243, 0.030419815331697464, -0.02457941509783268, 0.0071969167329370975, 0.15019387006759644, 0.09431777894496918, -0.054535090923309326, 0.021939119324088097, -0.12578482925891876, 0.07127251476049423, 0.023806262761354446, 0.14497368037700653, -0.08554332703351974, 0.07884568721055984, -0.004423048812896013, -0.0765928328037262, -0.13182054460048676, 0.015285806730389595, -0.03487517312169075, 0.0043469881638884544, 0.09897340834140778, -0.11392740905284882, 0.057002563029527664, -0.0030095588881522417, 0.006940086837857962, 0.05183504521846771, 0.00965624488890171, -0.05934185907244682, 0.012473155744373798, 0.04936368018388748, -0.004248620010912418, 0.034935127943754196, -0.03376459702849388, -0.0009188699186779559, -0.003819393925368786, -0.07650600373744965, 0.008863086812198162, -0.07424648106098175, -0.13432663679122925, -0.06372407078742981, 0.07307858020067215, -0.023367639631032944, 0.02370070293545723, 0.14118893444538116, -0.06850773841142654, -0.07990161329507828, 0.028984077274799347, 0.023402411490678787, 0.045026276260614395, -0.08897600322961807, -0.05387844517827034, 0.09970971941947937, -0.07786055654287338, 0.02375435270369053, -0.0011395715409889817, -0.04064498841762543, 0.06386078894138336, -0.14609085023403168, 0.015166456811130047, -0.010491170920431614, -0.06910756975412369, 0.147112175822258, -0.0636284127831459, 0.015486661344766617, -0.004662424325942993, -0.03363296762108803, -0.14078077673912048, 0.0634792149066925, 0.15184351801872253, 0.08308059722185135, 0.023317717015743256, 0.12627118825912476, 0.02201959118247032, -0.09063637256622314, -0.05389105901122093, 0.061071038246154785, -0.1330038607120514, -0.03455549106001854, 0.011411153711378574, 0.013511737808585167, 0.0328030064702034, -0.057408303022384644, 0.07917347550392151, 0.055198147892951965, 0.038678865879774094, 0.016178611665964127, 0.09803633391857147, 0.1715204119682312, 0.010053668171167374, 0.02756909467279911, 0.08066409081220627, -0.04636203870177269, -0.012979649007320404, 0.13053366541862488, -0.19219765067100525, -0.10551231354475021, -0.12451986223459244], -ashr:[0.04313483089208603, -0.13971857726573944, 0.08178521692752838, 0.10687308013439178, 0.07969740033149719, -0.00805940292775631, 0.07332146912813187, -0.06551778316497803, 0.11162540316581726, 0.016093771904706955, 0.02510787732899189, 0.11584615707397461, 0.06274977326393127, -0.16014739871025085, -0.04686152562499046, -0.11801941692829132, -0.018084483221173286, 0.018275346606969833, 0.04150664433836937, -0.010355100966989994, -0.013428102247416973, -0.053636081516742706, -0.06149173527956009, 0.14845602214336395, -0.035560790449380875, -0.02353813499212265, -0.0033170306123793125, -0.04777311906218529, -0.14889176189899445, -0.01623610220849514, 0.06238190457224846, -0.0145302414894104, 0.10338431596755981, -0.04608019068837166, 0.09908536076545715, 0.022474633529782295, 0.07342861592769623, 0.0804518312215805, 0.12055036425590515, -0.13112355768680573, -0.1410057097673416, -0.010804936289787292, -0.007305993232876062, 0.033418502658605576, -0.07479933649301529, -0.01415706891566515, -0.008649677038192749, -0.01915123499929905, 0.027400311082601547, -0.0056839496828615665, -0.037795182317495346, 0.024408070370554924, 0.21944163739681244, -0.006155719049274921, 0.005744897294789553, -0.012640818953514099, 0.046009134501218796, 0.0361713245511055, 0.11430404335260391, -0.09446090459823608, -0.14431893825531006, 0.022710852324962616, -0.02672944776713848, 0.04405109956860542, 0.10566659271717072, -0.0256191436201334, -0.17671844363212585, -0.0005438287043944001, -0.037944864481687546, 0.00325363059528172, 0.05766571685671806, 0.08204527944326401, -0.04045958071947098, 0.026810696348547935, -0.030962709337472916, -0.04939933493733406, -0.011944938451051712, 0.08931457996368408, 0.09115023165941238, -0.08067597448825836, 0.05825824290513992, 0.06383269280195236, -0.09017305821180344, 0.0628490224480629, 0.03804783150553703, 0.1331789195537567, -0.08982323855161667, 0.06702869385480881, -0.035776782780885696, -0.00653220247477293, -0.08638922870159149, -0.05993286147713661, -0.048076048493385315, 0.04492856189608574, -0.0675123855471611, -0.01191737037152052, 0.03135770186781883, 0.04843282699584961, -0.04867139458656311, 0.1442844420671463, 0.014658630825579166, -0.009554880671203136, 0.013471630401909351, -0.03953785076737404, 0.09345173835754395, -0.04150359332561493, -0.05486065521836281, -0.06387987732887268, -0.06331205368041992, 0.051476605236530304, 0.14270135760307312, -0.034660037606954575, 0.04772673174738884, -0.07690805196762085, -0.05464542657136917, 0.05522499606013298, -0.13876225054264069, -0.028754882514476776, -0.10859744250774384, -0.051731448620557785, 0.008441684767603874, -0.1543969064950943, -0.15504081547260284, -0.16645534336566925, -0.043386198580265045, 0.13657113909721375, 0.0582243874669075, 0.10777201503515244, 0.10251760482788086, -0.13526411354541779, 0.10386586934328079, -0.032272204756736755, 0.011012053117156029, 0.022050999104976654, 0.00038015932659618556, -0.013628826476633549, -0.03474041447043419, 0.05991964787244797, -0.036809369921684265, 0.06607171893119812, 0.08709264546632767, -0.004695996642112732, 0.10940288752317429, -0.09085101634263992, 0.009858372621238232, -0.10986810177564621, 0.06884351372718811, -0.06280341744422913, -0.027518093585968018, -0.03750834986567497, -0.09328439086675644, 0.11770638823509216, -0.07778804749250412, 0.009314879775047302, 0.06328215450048447, -0.10157041251659393, -0.0072867474518716335, 0.023455804213881493, -0.021204061806201935, 0.13072091341018677, 0.07696536183357239, -0.023915432393550873, -0.006166798062622547, -0.011431843042373657, 0.044356487691402435, -0.004822285380214453, -0.025143753737211227, 0.07971373945474625, 0.07601331919431686, -0.019895615056157112, 0.12409643828868866, -0.050506263971328735, 0.13442614674568176, -0.040625475347042084, -0.11703921109437943, 0.16182129085063934, -0.0645090639591217, -0.04618796706199646, 0.15631288290023804, 0.015820428729057312, -0.029678326100111008, 0.0009217911865562201, -0.015720641240477562, -0.01899104379117489, -0.09653430432081223, -0.026185018941760063, 0.06737025827169418, 0.012761002406477928, -0.1575632095336914, -0.02162446454167366, 0.04154369235038757, 0.0406685546040535, -0.021870983764529228, 0.16543403267860413, 0.027651939541101456, 0.09493634849786758, -0.0016895709559321404, 0.0508657842874527, 0.09518086165189743, -0.020904401317238808, -0.02981211617588997, -0.13983054459095, -0.019718587398529053, 0.00521909911185503, -0.055870696902275085, 0.16161924600601196, 0.0634392723441124, 0.054895203560590744, -0.07364566624164581, -0.03394016996026039, -0.06529803574085236, -0.0786576047539711, -0.07123252749443054, -0.019955942407250404, 0.03812406584620476, -0.08642865717411041, -0.056913457810878754, 0.08627041429281235, -0.1184951514005661, 0.10874578356742859, 0.13819584250450134, -0.03283187747001648, -0.09166045486927032, 0.10561005771160126, -0.15418803691864014, 0.10719330608844757, 0.023659931495785713, 0.07115883380174637, -0.023543676361441612, 0.09328501671552658, -0.007940951734781265, 0.05778112635016441, 0.00014229117368813604, -0.023499030619859695, 0.026659216731786728, 0.005609610117971897, 0.03936183452606201, -0.1373196542263031, -0.06880070269107819, -0.045559775084257126, -0.00784444808959961, -0.044479481875896454, -0.10084164142608643, -0.03780181705951691, -0.009353927336633205, -0.05702357739210129, 0.00507803400978446, 0.03679754585027695, -0.08007670938968658, -0.048687152564525604, -0.11827247589826584, 0.14079557359218597, -0.14169472455978394, -0.057130616158246994, -0.03157014772295952, -0.03138583526015282, 0.06750133633613586, -0.014186559244990349, -0.048512399196624756, 0.08272477239370346, -0.05954015627503395, 0.13586927950382233, -0.14498279988765717, 0.10906442999839783, 0.002457551658153534, 0.07441741973161697, 0.02103443443775177, -0.09746035188436508, -0.057313647121191025, -0.06536903977394104, 0.07314811646938324, -0.018610559403896332, 0.14130200445652008, -0.040190376341342926, 0.12694084644317627, -0.13238778710365295, 0.12545190751552582, -0.14789320528507233, 0.008565434254705906, -0.052116259932518005, -0.01566126011312008, -0.06441985070705414, -0.03344751521945, 0.04542817175388336, -0.054669469594955444, -0.08873800188302994, 0.058503370732069016, 0.05546567961573601, 0.016922207549214363, 0.11223463714122772, -0.01653323881328106, -0.013455809094011784, 0.04158608615398407, 0.08340618014335632, -0.007476168219000101, 0.08632133901119232, 0.02535371296107769, -0.047489605844020844, -0.046918075531721115, -0.08277645707130432], -bitcast:[0.03593996539711952, -0.07208956778049469, 0.07325587421655655, 0.03291868045926094, 0.0806821957230568, 0.00013349941582418978, 0.008378899656236172, -0.09887094795703888, 0.11415290832519531, 0.018688825890421867, -0.009147548116743565, 0.051579006016254425, 0.00398963363841176, 0.0011657578870654106, -0.19713740050792694, 0.0055594854056835175, -0.014740031212568283, -0.10093703866004944, -0.010079652070999146, -0.06191452965140343, -0.09023585170507431, -0.047334857285022736, -0.05645870789885521, 0.0052020493894815445, -0.025134405121207237, -0.06553902477025986, 0.007719281129539013, 0.07489281892776489, -0.10449893027544022, -0.11450786888599396, -0.03425007686018944, -0.019462499767541885, -0.023794127628207207, -0.21471400558948517, 0.05124284327030182, 0.0951041728258133, 0.0627179890871048, 0.05077321082353592, 0.02101091295480728, -0.09634421020746231, -0.07216747850179672, -0.08340483158826828, -0.01743367500603199, 0.01039569266140461, 0.08058492839336395, -0.009944147430360317, -0.00505112623795867, 0.10639061778783798, 0.004834943916648626, 0.08553998172283173, 0.06388217955827713, 0.0531126894056797, 0.016977541148662567, 0.16596665978431702, -0.01937301643192768, 0.03341127932071686, 0.05636293441057205, 0.040502145886421204, -0.0012504600454121828, 0.05916835740208626, 0.0542440339922905, 0.012986198998987675, -0.00014462324907071888, 0.04095400869846344, 0.04543955624103546, 0.0013156193308532238, -0.02827584370970726, 0.00042878452222794294, 0.07452833652496338, 0.04153246060013771, -0.04182660952210426, -0.0665728896856308, -0.015109984204173088, -0.010675967670977116, -0.10436920076608658, -0.05526195093989372, -0.2921842336654663, -0.02436351776123047, 0.08539513498544693, -0.08186204731464386, 0.03529160097241402, 0.05657308176159859, 0.08151829242706299, 0.040855973958969116, 0.06563331186771393, -0.00650869170203805, 0.11182758212089539, 0.0648532286286354, -0.0700807049870491, -0.012856469489634037, -0.022204354405403137, 0.07532738149166107, -0.04005039483308792, -0.0849861204624176, -0.041666992008686066, -0.1728808730840683, 0.02845229022204876, -0.2149484008550644, -0.05873969942331314, 0.07310587912797928, 0.021133102476596832, 0.0022613448090851307, 0.1040555015206337, 0.01968926377594471, 0.06710785627365112, -0.029010072350502014, -0.06517599523067474, -0.05533706396818161, 0.05503380298614502, 0.03835735842585564, -0.01128747221082449, -0.03542899712920189, 0.11313340067863464, -0.07720544189214706, 0.06899286061525345, 0.06475692987442017, -0.1049564927816391, -0.03836511820554733, 0.06054621934890747, -0.03450978919863701, -0.0590801015496254, 0.1143650934100151, 0.07235656678676605, 0.011668452061712742, -0.050044842064380646, -0.044897571206092834, 0.048755720257759094, 0.01510259322822094, -0.0060362620279192924, 0.042058393359184265, -0.1362210065126419, 0.11171716451644897, -0.15770599246025085, 0.1630696803331375, 0.002615302102640271, -0.20982830226421356, -0.05662321671843529, 0.15754546225070953, 0.06924819201231003, 0.08786457031965256, -0.011058737523853779, 0.0454988107085228, -0.19970501959323883, -0.03474150225520134, -0.095364049077034, -0.061749208718538284, -0.08051783591508865, -0.0464019849896431, -0.01008571032434702, 0.031958743929862976, 0.009000922553241253, -0.04553137719631195, -0.19681832194328308, -0.16663268208503723, 0.10320405662059784, 0.13194675743579865, -0.007421490736305714, -0.03368833288550377, -0.024734346196055412, -0.041860297322273254, 0.03119911439716816, 0.03227376565337181, -0.0066848378628492355, -0.13130588829517365, 0.06519073992967606, -0.07507416605949402, -0.02179657481610775, 0.07213884592056274, 0.09696528315544128, -0.056731853634119034, 0.030832307413220406, -0.05166058987379074, 0.050407372415065765, -0.07849200814962387, 0.10060469061136246, 0.015897830948233604, 0.039210204035043716, -0.05996261537075043, 0.11786717176437378, 0.020893147215247154, -0.03642639145255089, -0.1052468866109848, 0.00943098496645689, -0.017573803663253784, -0.018533572554588318, -0.008921666070818901, -0.05159023776650429, -0.025773964822292328, 0.052988450974226, 0.006750801112502813, 0.16615426540374756, 0.041109614074230194, -0.017572926357388496, 0.025444136932492256, -0.024107471108436584, -0.025342056527733803, 0.027596741914749146, -0.05395049229264259, -0.05599873140454292, 0.0037094643339514732, -0.11420072615146637, 0.02053137868642807, 0.13536258041858673, -0.045753613114356995, 0.0451451912522316, -0.02399788796901703, -0.09626714885234833, 0.07666627317667007, -0.12532800436019897, 0.014745019376277924, 0.07903598994016647, -0.017136702314019203, -0.008310877718031406, 0.0259496308863163, 0.008770071901381016, -0.08190413564443588, 0.04612568020820618, 0.087523452937603, 0.042412735521793365, 0.005888428073376417, 0.07067150622606277, -0.034708213061094284, 0.03232443332672119, 0.0943162739276886, -0.030706297606229782, 0.10480155050754547, 0.006373811047524214, 0.06327397376298904, 0.0963381752371788, 0.015981413424015045, 0.01000240258872509, -0.0972752720117569, -0.020245710387825966, -0.022273683920502663, 0.020677337422966957, -0.04279882833361626, -0.08677875995635986, -0.05617548152804375, -0.07736291736364365, 0.007944903336465359, -0.026955241337418556, 0.053099315613508224, 0.013391604647040367, -0.006238162983208895, -0.01978044956922531, 0.029679205268621445, 0.04283621534705162, 0.014028718695044518, -0.0762966051697731, 0.03904414921998978, -0.024258390069007874, -0.04644487798213959, -0.11617299914360046, -0.05230749398469925, 0.005303297191858292, -0.11439027637243271, 0.003833628259599209, -0.004306918941438198, -0.04071064293384552, 0.020985711365938187, -0.1528608351945877, 0.022580290213227272, 0.024141661822795868, -0.10809940844774246, 0.002573526930063963, -0.06663308292627335, 0.018570570275187492, -0.04590383172035217, -0.05958057567477226, 0.1535276472568512, 0.014918697066605091, -0.1437055915594101, 0.09543541818857193, 0.00040845602052286267, 0.06999912858009338, 0.030745217576622963, 0.021631959825754166, 0.04432101175189018, -0.04588214308023453, -0.06945723295211792, -0.018182218074798584, -0.05122796446084976, 0.04274765029549599, 0.04796846956014633, -0.038547780364751816, 0.02559759095311165, 0.034424833953380585, -0.0364830419421196, -0.0049086688086390495, 0.09137305617332458, -0.11071881651878357, 0.012788522988557816, -0.05623053386807442, 0.059682466089725494, -0.0070108333602547646, -0.028236228972673416, 0.10499294847249985, 0.13057836890220642, -0.039509497582912445, -0.09368100017309189], -br:[0.027170196175575256, -0.09038484841585159, 0.07562902569770813, 0.10400345921516418, 0.08159623295068741, 0.0005794168682768941, 0.010938569903373718, -0.09091398864984512, 0.0928884819149971, 0.04403458535671234, -0.004736753646284342, 0.050980180501937866, -0.037297096103429794, -0.010445836931467056, 0.06470175087451935, 0.01321085449308157, -0.01722603850066662, -0.10772361606359482, -0.0023027232382446527, -0.016208726912736893, -0.06194953992962837, -0.05729883164167404, -0.04520822688937187, 0.03890061005949974, -0.027456490322947502, 0.14361672103405, -0.00074236054206267, 0.07602033019065857, -0.09217080473899841, -0.15252874791622162, -0.0011503101559355855, -0.007016177289187908, 0.08735885471105576, 0.17646250128746033, 0.08775025606155396, 0.12414611876010895, 0.06208937615156174, 0.09409308433532715, 0.05985347181558609, -0.12529748678207397, -0.07775656878948212, -0.0611715130507946, -0.03469707444310188, 0.022854510694742203, 0.18293355405330658, 0.1294572502374649, -0.011117835529148579, 0.084245964884758, -0.0017730952240526676, 0.08791927248239517, 0.02920728176832199, -0.03325396403670311, -0.007250193972140551, -0.20406408607959747, 0.02742515504360199, 0.0008804072858765721, 0.05754190310835838, -0.041797369718551636, -0.016693532466888428, -0.049365077167749405, 0.06126156821846962, 0.01205277070403099, 0.08523650467395782, 0.09590752422809601, -0.05877860262989998, -0.026905406266450882, 0.030360065400600433, -0.02360047958791256, -0.06614165008068085, 0.04284643009305, 0.0933210626244545, -0.053878236562013626, -0.02512531913816929, -0.06418490409851074, 0.10943783074617386, -0.020864583551883698, -0.02125724032521248, -0.05976656824350357, 0.09074390679597855, 0.05481841042637825, 0.0811547040939331, 0.06449779868125916, 0.04935133084654808, -0.07849889248609543, 0.07262782752513885, -0.024603793397545815, 0.11484508216381073, 0.05942407250404358, -0.07594174891710281, -0.013322054408490658, -0.14947904646396637, -0.14417605102062225, -0.047504495829343796, 0.1077786237001419, -0.030485814437270164, 0.1876482516527176, -0.027543386444449425, -0.013771547004580498, -0.030138427391648293, 0.02201312780380249, 0.02407928742468357, 0.01375960186123848, -0.10867370665073395, 0.12515081465244293, 0.0952826514840126, 0.037189748138189316, 0.0765887200832367, -0.031233537942171097, 0.06192311272025108, 0.02080974169075489, -0.11702192574739456, -0.07503501325845718, -0.06902170926332474, 0.003432569792494178, -0.08622332662343979, 0.05648347735404968, -0.10673186928033829, -0.03898641839623451, 0.0724019855260849, -0.04619084671139717, -0.022974371910095215, 0.059476338326931, -0.002829225966706872, 0.010469320230185986, -0.06103295832872391, -0.06777893751859665, 0.052672963589429855, -0.015131228603422642, 0.02189146727323532, -0.002583753317594528, 0.11373432725667953, -0.05766870081424713, -0.016283104196190834, 0.08186640590429306, -0.012127496302127838, -0.029398852959275246, -0.07038753479719162, -0.047600846737623215, 0.062041282653808594, 0.0668565183877945, 0.0071837082505226135, 0.01945427991449833, -0.12690384685993195, 0.007594668306410313, 0.11808094382286072, -0.06825903803110123, -0.08126375824213028, -0.050801899284124374, 0.014963104389607906, 0.020153891295194626, 0.029076609760522842, -0.084267757833004, 0.028851518407464027, -0.1931934803724289, 0.10227394104003906, -0.0012738864170387387, -0.015950912609696388, 0.0675586611032486, -0.12000562250614166, 0.020471930503845215, 0.055517908185720444, 0.053736768662929535, -0.006278008688241243, 0.1240616962313652, 0.06300809979438782, -0.08247960358858109, -0.0035284424666315317, 0.11208159476518631, 0.08892790973186493, -0.09979142248630524, 0.03006436489522457, -0.05272460728883743, 0.053797245025634766, -0.07962310314178467, -0.05822409689426422, 0.13356712460517883, -0.08355198800563812, 0.025056246668100357, 0.07693792134523392, 0.015587355010211468, 0.1565636694431305, 0.012349721975624561, 0.0055901063606143, -0.030330993235111237, 0.028426265344023705, -0.05034658685326576, 0.036810990422964096, -0.021116696298122406, 0.07230406254529953, -0.04406332969665527, 0.1698245406150818, 0.12404771894216537, -0.04543033614754677, -0.025630438700318336, -0.0524015948176384, 0.0468931719660759, -0.032201457768678665, -0.09083545207977295, 0.06639579683542252, 0.004360425751656294, 0.06571336090564728, -0.017782628536224365, 0.04379561170935631, -0.05374739691615105, -0.020012691617012024, -0.0107460618019104, 0.058353643864393234, 0.1087053045630455, 0.2130001038312912, -0.15810680389404297, 0.02661382593214512, -0.1326969563961029, 0.0317060761153698, -0.07294902950525284, -0.13356035947799683, -0.084243543446064, -0.10214533656835556, -0.04219658672809601, -0.025640757754445076, 0.017495304346084595, -0.09611591696739197, -0.03854920342564583, -0.005016264971345663, 0.09825631976127625, 0.04594385623931885, 0.08430206775665283, 0.016285181045532227, 0.06150444224476814, -0.010879108682274818, 0.01363295130431652, -0.06666339933872223, 0.0028988521080464125, 0.005905590020120144, -0.0240962952375412, 0.030452348291873932, -0.024286318570375443, 0.10353796929121017, -0.05999235063791275, -0.07771335542201996, 0.01953817345201969, -0.017528051510453224, -0.12748371064662933, 0.0006046831840649247, 0.06978411227464676, -0.021831771358847618, 0.034190285950899124, -0.05242140591144562, -0.024667877703905106, -0.07710982114076614, 0.06366734206676483, 0.083263099193573, -0.015237845480442047, -0.05786801129579544, -0.05187003314495087, -0.0004462157376110554, -0.09500497579574585, 0.00038247485645115376, 0.05516006052494049, -0.010727847926318645, 0.016598312184214592, 0.2231443226337433, -0.16504016518592834, -0.08719944208860397, 0.06176704168319702, 0.11946658045053482, 0.016832081601023674, 0.01811305619776249, -0.002821961184963584, -0.026533087715506554, 0.08974717557430267, 0.09839753806591034, 0.2250514030456543, 0.03197314962744713, -0.026743633672595024, 0.05171731486916542, -0.0041678957641124725, -0.030512789264321327, -0.029542244970798492, -0.054810114204883575, -0.054592929780483246, -0.05299404636025429, -0.04591841995716095, 0.038812004029750824, 0.05456511303782463, 0.06373754143714905, 0.04043767973780632, 0.05681281536817551, -0.08536584675312042, 0.0008391417213715613, -0.21197733283042908, 0.16672031581401825, -0.0030630212277173996, 0.00817708857357502, 0.04950308799743652, -0.027663368731737137, -0.00757111981511116, -0.09379223734140396, 0.1449805349111557, -0.08866703510284424, -0.09210406243801117], -call:[0.02905420958995819, -0.1137470081448555, 0.0796065405011177, 0.06207768991589546, -0.04331988841295242, 0.0038970382884144783, -0.01976422779262066, -0.06480290740728378, 0.06512634456157684, -0.23063327372074127, 0.0024727166164666414, 0.05644518509507179, -0.03896741196513176, -0.00848032720386982, -0.07194297015666962, -0.10033479332923889, -0.13475605845451355, -0.11660344153642654, -0.018227027729153633, -0.023976394906640053, -0.06684641540050507, -0.050641920417547226, -0.05367790535092354, 0.15154659748077393, -0.03650062531232834, 0.134761244058609, -0.0022273364011198282, 0.06215023249387741, -0.09913649410009384, 0.1651570349931717, 0.12193584442138672, -0.019395897164940834, 0.09427863359451294, 0.12930245697498322, 0.08801691979169846, -0.1711423695087433, 0.010543955489993095, 0.02137390524148941, 0.05721525475382805, -0.12488161772489548, -0.0801181048154831, -0.12384754419326782, 0.019990388303995132, -0.16508251428604126, -0.08235099166631699, -0.026142140850424767, -0.010198233649134636, 0.11385538429021835, -0.002207379322499037, -0.018691400066018105, -0.15361280739307404, 0.005181693006306887, -0.07247881591320038, 0.09434531629085541, 0.02050333470106125, -0.013076875358819962, 0.06177473068237305, -0.02998674102127552, -0.032718390226364136, -0.08641663938760757, 0.06411941349506378, 0.014508075080811977, 0.07325674593448639, 0.045491255819797516, -0.04722319543361664, -0.02707180567085743, -0.008284103125333786, -0.13040834665298462, -0.03694351390004158, 0.04344438016414642, 0.052339259535074234, 0.05577601492404938, -0.026960153132677078, -0.013424326665699482, -0.13838650286197662, -0.0688977763056755, 0.0840546265244484, 0.08988667279481888, 0.09500297158956528, -0.1169670820236206, 0.06413496285676956, -0.002831639489158988, 0.057124026119709015, 0.002400066005066037, 0.0733366385102272, 0.0269904974848032, 0.09850909560918808, 0.06748244166374207, -0.05357138067483902, 0.029235655441880226, -0.19388841092586517, -0.006268858443945646, -0.05042679235339165, -0.10852301120758057, -0.024745164439082146, -0.12463840842247009, -0.013496754691004753, -0.23218663036823273, -0.046256180852651596, 0.0305924192070961, 0.022445913404226303, 0.0020333200227469206, 0.02032065950334072, -0.021875828504562378, 0.08296334743499756, 0.0402514711022377, -0.06076580658555031, -0.03869559243321419, 0.06333904713392258, 0.032034989446401596, -0.015272227115929127, -0.04483012855052948, 0.03604120761156082, 0.11556492745876312, 0.01128366868942976, -0.13610851764678955, -0.12789244949817657, -0.032060567289590836, 0.07411103695631027, -0.039747320115566254, 0.08400189131498337, 0.11959827691316605, -0.07763419300317764, 0.023368729278445244, -0.06016821786761284, -0.07144573330879211, 0.008996967226266861, 0.12149741500616074, 0.002883466426283121, -0.09389659017324448, -0.016217274591326714, -0.04222046211361885, 0.12568798661231995, -0.007260574959218502, -0.050521910190582275, 0.15892551839351654, -0.08531329780817032, -0.06110737845301628, 0.07439953833818436, 0.09019321203231812, 0.00754031166434288, -0.11634296923875809, -0.03013330139219761, -0.08019836246967316, -0.10209266096353531, -0.051167529076337814, -0.0866178572177887, -0.06316781789064407, -0.06626741588115692, -0.09538493305444717, -0.05401410907506943, -0.08979848772287369, -0.046753887087106705, 0.12361086159944534, 0.10333847254514694, 0.15249553322792053, -0.016410084441304207, 0.061773959547281265, -0.025198515504598618, 0.037491317838430405, 0.0385809987783432, -0.012979092076420784, 0.010199541226029396, 0.0673539787530899, 0.06649400293827057, -0.08600471913814545, -0.01443247590214014, 0.11816208809614182, -0.06713270395994186, 0.03385455161333084, 0.03350009396672249, -0.05699162557721138, 0.038306135684251785, -0.08511238545179367, -0.05907689407467842, 0.038096047937870026, 0.0771477147936821, 0.04624273255467415, 0.08944475650787354, 0.022421153262257576, -0.16824349761009216, -0.1070791631937027, 0.011112077161669731, -0.03648395463824272, -0.007633514236658812, -0.017156703397631645, 0.011533631011843681, -0.01017740648239851, 0.07594455033540726, -0.03162193298339844, 0.004460164811462164, 0.04364684224128723, -0.0636407807469368, -0.039705418050289154, -0.025780193507671356, 0.024166718125343323, 0.015239345841109753, -0.08878884464502335, -0.04882044717669487, 0.0036571864038705826, -0.018042607232928276, -0.102553591132164, 0.05980279669165611, -0.05457722023129463, 0.002047551330178976, -0.10508736222982407, -0.11647825688123703, 0.1322164088487625, -0.1402737945318222, -0.07531312108039856, 0.06515372544527054, 0.035904113203287125, 0.18596169352531433, -0.0899069607257843, -0.12194408476352692, -0.08801983296871185, 0.1695927381515503, 0.05725199729204178, -0.039582982659339905, 0.04454667121171951, -0.13420657813549042, -0.03560653328895569, 0.005491696763783693, 0.1034274473786354, -0.006237811874598265, -0.01061670109629631, -0.0005799851496703923, 0.07359523326158524, 0.03725206479430199, 0.03265754133462906, 0.0023852710146456957, 0.008519130758941174, 0.05174089968204498, -0.019913285970687866, 0.004983262624591589, -0.030558768659830093, -0.05204956233501434, -0.00016521425277460366, -0.0826282799243927, 0.014284687116742134, -0.019317597150802612, 0.05425640195608139, 0.11573691666126251, 0.06957436352968216, 0.15620046854019165, 0.12677200138568878, 0.0660388171672821, -0.020880451425909996, -0.08289593458175659, -0.0794675424695015, -0.024865828454494476, -0.01707061193883419, -0.08041144162416458, -0.05591562017798424, -0.009886267594993114, 0.05713793635368347, 0.022023169323801994, -0.0049797166138887405, -0.039446718990802765, -0.19982150197029114, -0.16352619230747223, -0.08253897726535797, -0.023730847984552383, -0.11959193646907806, 0.021925482898950577, -0.03703489527106285, 0.016859784722328186, -0.04175186529755592, -0.01851040869951248, -0.03971889615058899, 0.007078017573803663, 0.19569118320941925, 0.08806581050157547, -0.006253444589674473, 0.11344318091869354, 0.04023589566349983, -0.11088322103023529, -0.040677838027477264, 0.1629016399383545, 0.048481084406375885, -0.014112179167568684, 0.08419162034988403, -0.14925023913383484, 0.057305023074150085, -0.04247837886214256, 0.04386390373110771, 0.17451536655426025, -0.07105551660060883, 0.0077893114648759365, -0.041979577392339706, 0.12601329386234283, 0.004159614443778992, 0.0388762503862381, 0.05823114886879921, -0.1696164458990097, -0.010388507507741451, 0.00918771792203188, -0.040990736335515976, 0.13254022598266602, -0.11253765225410461], -constant:[0.10978574305772781, -0.011214825324714184, 0.14466872811317444, 0.0719841867685318, 0.0031823404133319855, -0.10090383887290955, -0.05352308601140976, 0.0849171057343483, -0.043119315057992935, -0.07429483532905579, -0.05070313811302185, 0.1420271396636963, 0.14273995161056519, 0.05296039953827858, 0.007832050323486328, 0.10456076264381409, -0.08978492766618729, -0.04413926973938942, 0.04187532886862755, 0.05708600580692291, -0.019351698458194733, 0.13532522320747375, 0.05279351398348808, -0.07387001812458038, 0.07377283275127411, 0.08373991400003433, -0.09102491289377213, -0.0595083013176918, 0.08110947161912918, -0.03320694342255592, 0.028951678425073624, -0.06869242340326309, 0.03005431964993477, 0.0014938591048121452, 0.012150268070399761, -0.09613469243049622, 0.025142496451735497, -0.08847811073064804, -0.02197135053575039, -0.037755902856588364, 0.007966320030391216, 0.14874385297298431, -0.03862238675355911, -0.11833954602479935, -0.018432041630148888, 0.02000732533633709, 0.1007160097360611, 0.017104675993323326, -0.05648816004395485, 0.13002131879329681, -0.12439528107643127, 0.03786752372980118, 0.03810776770114899, 0.027019791305065155, 0.08799350261688232, -0.08430805802345276, 0.10736909508705139, -0.05663192644715309, 0.0268186517059803, -0.12136079370975494, 0.10362236946821213, -0.05090690776705742, -0.04867442697286606, -0.020270876586437225, 0.139425128698349, -0.08793006092309952, -0.07832039892673492, -0.0920591726899147, 0.05151227489113808, -0.03941301256418228, 0.09922444075345993, 0.12259307503700256, 0.030328014865517616, 0.027635635808110237, 0.03786984458565712, 0.04645904526114464, 0.10423638671636581, 0.03885272517800331, 0.02800356037914753, -0.025838561356067657, -0.035985689610242844, 0.014134693890810013, 0.09326126426458359, 0.04165395349264145, -0.14684192836284637, 0.09030664712190628, -0.1593814343214035, 0.10966568440198898, 0.04984160512685776, -0.0016438637394458055, 0.017957238480448723, -0.04777421057224274, 0.003623923985287547, -0.020445046946406364, 0.022421443834900856, -0.06564979255199432, 0.0489179790019989, 0.05132729932665825, 0.10705722868442535, 0.05636826157569885, 0.09536575525999069, 0.05471471697092056, 0.062358662486076355, -0.07194434106349945, 0.0015227794647216797, 0.08125714212656021, 0.00971092190593481, 0.15501728653907776, 0.016959886997938156, -0.1848433017730713, 0.04437935724854469, 0.010512528009712696, 0.005170125048607588, 0.05875372886657715, -0.029772162437438965, 0.10333571583032608, -0.04732317477464676, 0.049412164837121964, -0.0005033499910496175, 0.034735552966594696, 0.11591795086860657, -0.11488837748765945, -0.000753503292798996, -0.03995621204376221, -0.10013534128665924, 0.012731226161122322, -0.06506245583295822, -0.0037868772633373737, 0.12360478937625885, 0.029387054964900017, 0.016856076195836067, 0.006395649164915085, 0.05716828629374504, 0.012625969015061855, 0.09062909334897995, 0.08334009349346161, -0.04579918459057808, -0.09067697823047638, -0.07612748444080353, 0.01830586977303028, 0.05102996900677681, -0.06544363498687744, 0.05490569397807121, -0.022554470226168633, 0.04795656353235245, -0.013063779100775719, -0.1531691551208496, -0.10405531525611877, -0.034399181604385376, 0.03561669960618019, -0.011905276216566563, -0.04156399518251419, 0.029184283688664436, 0.1341676115989685, -0.014722459018230438, -0.04481583088636398, 0.05619273707270622, 0.018358882516622543, -0.01721344329416752, 0.07618394494056702, -0.04707666113972664, 0.048523057252168655, -0.042014773935079575, -0.013376321643590927, -0.03374575823545456, 0.035844795405864716, 0.08960207551717758, 0.02706918492913246, 0.0021763897966593504, 0.0019168780418112874, 0.0841761901974678, -0.09532225877046585, 0.13759547472000122, -0.04347045347094536, -0.009905865415930748, 0.0653100237250328, 0.04158288240432739, -0.0662844330072403, -0.1278121918439865, -0.06599803268909454, -0.09460611641407013, 0.1017809510231018, -0.18127115070819855, 0.03481936454772949, 0.028651069849729538, -0.10889054834842682, 0.09987685829401016, 0.036918580532073975, 0.0006803151918575168, -0.08382584154605865, 0.04174988716840744, -0.033545780926942825, 0.057433295994997025, -0.06191070005297661, 0.05489736795425415, 0.015054000541567802, -0.09567928314208984, 0.16184265911579132, 9.078686707653105e-05, 0.07523130625486374, 0.020957941189408302, 0.07517781853675842, 0.07687168568372726, -0.07592486590147018, 0.12745527923107147, 0.005231665913015604, -0.03485482186079025, 0.03483768552541733, -0.053035542368888855, -0.01438800897449255, -0.10545078665018082, -0.006657263729721308, -0.01227075606584549, -0.020071109756827354, -0.035699546337127686, -0.005117434076964855, 0.04930588975548744, 0.08687423914670944, -0.011166898533701897, 0.004476963542401791, -0.15833139419555664, -0.08933839201927185, -0.027783190831542015, 0.02469765767455101, 0.06993265450000763, -0.1229645162820816, -0.024649104103446007, 0.02655785344541073, -0.0864904597401619, -0.032939787954092026, -0.015047095715999603, -0.028188560158014297, 0.12241904437541962, 0.13160045444965363, -0.07546641677618027, -0.07425115257501602, -0.031224355101585388, -0.0584242083132267, 0.08466432243585587, -0.06626804172992706, -0.08252376317977905, 0.006881015840917826, -0.10418262332677841, -0.17551971971988678, 0.10482529550790787, 0.06968879699707031, -0.08062117546796799, 0.07573635131120682, -0.10873890668153763, -0.04495492950081825, 0.028115998953580856, 0.11448413133621216, -0.012843969278037548, -0.0076528689824044704, 0.012530386447906494, 0.09693600982427597, -0.043212223798036575, 0.017648939043283463, 0.046122580766677856, -0.005094992462545633, -0.11605367809534073, -0.02702571265399456, -0.09031884372234344, 0.042761802673339844, -0.02167636528611183, -0.1450096070766449, -0.05819644033908844, 0.10078150033950806, 0.020939163863658905, -0.03642614185810089, 0.06333760917186737, -0.010353696532547474, 0.11770709604024887, -0.08658379316329956, 0.015033532865345478, -0.09731251001358032, -0.08158040791749954, -0.0987469032406807, -0.02373391017317772, 0.015363242477178574, 0.11193616688251495, 0.05196605995297432, -0.08649688959121704, -0.007871410809457302, 0.005459584295749664, -0.16033262014389038, 0.12501777708530426, -0.04754353687167168, -0.03653968498110771, 0.0055335089564323425, 0.060761645436286926, 0.06717965751886368, 0.07910123467445374, -0.0011557787656784058, -0.1147766262292862, -0.07346605509519577, -0.04812926426529884, 0.01985207386314869, 0.003906957805156708, -0.023079603910446167], -extractelement:[-0.012040838599205017, -0.0879446268081665, -0.09205224364995956, 0.12679550051689148, -0.057542573660612106, 0.02206774801015854, 0.06196308508515358, -0.05758790299296379, 0.01882004737854004, 0.030703885480761528, 0.12406551092863083, 0.0538627952337265, -0.06774038076400757, 0.0073899463750422, -0.06606917083263397, 0.08192428946495056, 0.010322287678718567, -0.12756767868995667, -0.032799430191516876, -0.06440820544958115, -0.11856284737586975, 0.06163608655333519, 0.08803664147853851, -0.031214017421007156, 0.02351011522114277, 0.022191951051354408, 0.058556169271469116, -0.015290689654648304, -0.12531889975070953, -0.08023498952388763, -0.043118059635162354, -0.011143622919917107, -0.08794420957565308, 0.01652032881975174, 0.08574262261390686, -0.04878051206469536, -0.0010283638257533312, 0.0005310730775818229, 0.005424906499683857, -0.10311231762170792, -0.0778297707438469, -0.0597514733672142, -0.014100508764386177, -0.12449703365564346, 0.1359441876411438, 0.04970363900065422, 0.011086897924542427, -0.07549895346164703, 0.005082299467176199, 0.08458851277828217, 0.17147301137447357, 0.12657757103443146, 0.06843674927949905, -0.13670004904270172, 0.053252533078193665, 0.028895502910017967, 0.06615747511386871, 0.04421769455075264, -0.10864321887493134, 0.053442858159542084, 0.06049111485481262, -0.025450164452195168, 0.09044720232486725, -0.06061878800392151, -0.014037924818694592, 0.0020136884413659573, -0.12950542569160461, -0.05395463481545448, 0.02370397374033928, -0.1258954107761383, -0.003646829864010215, -0.1456061452627182, -0.08641374111175537, -0.003989330027252436, -0.013630380854010582, -0.10279717296361923, -0.0007916350732557476, -0.1080850213766098, 0.09185629338026047, -0.13538207113742828, 0.09215539693832397, 0.08902716636657715, 0.05465507134795189, -0.1352975219488144, 0.0846521258354187, -0.007048433646559715, 0.12564170360565186, 0.07830819487571716, -0.048882413655519485, 0.1472235918045044, -0.03852370008826256, -0.061417896300554276, -0.008365635760128498, -0.12702767550945282, -0.04819648340344429, -0.0009616399183869362, -0.009134245105087757, 0.024444641545414925, 0.038952238857746124, 0.11172803491353989, 0.025308577343821526, 0.07508676499128342, 0.014884084463119507, -0.128509983420372, 0.07239958643913269, 0.09283575415611267, -0.12962962687015533, -0.06807756423950195, 0.05638311803340912, -0.023867812007665634, -0.003842751495540142, 0.07422295212745667, -0.031176943331956863, -0.04319552332162857, 0.011192078702151775, -0.14840060472488403, -0.040716055780649185, -0.04753473401069641, 0.08143119513988495, 0.07576222717761993, -0.0002576543774921447, 0.08925891667604446, -0.0007221410633064806, 0.021480774506926537, -0.07538864761590958, -0.0682583674788475, 0.02931062877178192, 0.043806374073028564, -0.050368960946798325, -0.04602304473519325, -0.14288994669914246, -0.04785634204745293, -0.22005906701087952, -0.01515946350991726, -0.04469479247927666, -0.022576726973056793, 0.020757263526320457, -0.09976296126842499, 0.06429042667150497, 0.10868091136217117, -0.06186830624938011, 0.12352491915225983, -0.052277158945798874, 0.06924114376306534, 0.03380734845995903, 0.0006009254138916731, -0.08417218923568726, 0.1177070140838623, -0.1337398886680603, 0.05304241180419922, 0.06278374046087265, -0.0875183641910553, 0.16895703971385956, -0.006189796607941389, 0.1053815633058548, 0.10617455840110779, 0.018477698788046837, 0.06695559620857239, 0.07037311792373657, 0.01727510802447796, 0.0590074360370636, 0.07704030722379684, 0.036625560373067856, -0.09396826475858688, 0.07013235986232758, -0.022452274337410927, -0.0643407553434372, 0.11295397579669952, -0.03869473934173584, 0.13915538787841797, 0.1207105740904808, -0.04260385036468506, 0.034888576716184616, -0.02589881792664528, -0.14611481130123138, -0.0635250136256218, 0.0047758277505636215, -0.004465954843908548, 0.010583990253508091, -0.035225022584199905, 0.023177966475486755, -0.026826148852705956, 0.056696850806474686, -0.02961992286145687, 0.033381734043359756, 0.07473714649677277, -0.03468664363026619, -0.0071718934923410416, -0.044229619204998016, -0.05313960462808609, 0.00328159611672163, 0.036080725491046906, -0.0611635185778141, 0.017849920317530632, -0.09971437603235245, -0.0857008546590805, 0.08767601102590561, -0.04719698056578636, -0.09210139513015747, 0.13553045690059662, 0.07823854684829712, 0.042811837047338486, -0.0021939496509730816, -0.029697967693209648, 0.04046015441417694, -0.094364695250988, -0.09932184964418411, 0.15790347754955292, -0.034145478159189224, -0.18665842711925507, 0.06768405437469482, 0.00585705041885376, 0.07003093510866165, -0.07414600253105164, 0.047152552753686905, -0.019482150673866272, 0.02362949214875698, 0.05888356268405914, 0.02117406576871872, 0.035002388060092926, -0.008945878595113754, -0.028905153274536133, 0.10312412679195404, 0.09372347593307495, -0.1458038091659546, -0.049561429768800735, 0.01606559194624424, -0.055780209600925446, -0.05929092690348625, 0.03753819689154625, 0.012078898958861828, -0.1477714627981186, 0.05031617358326912, 0.08612703531980515, 0.025022543966770172, -0.03880417346954346, -0.10077878832817078, 0.0249225702136755, -0.03321525454521179, -0.08793220669031143, -0.008282122202217579, 0.08493173867464066, 0.14015474915504456, -0.01698552630841732, 0.07010103762149811, 0.024346059188246727, -0.03237117454409599, 0.041754987090826035, 0.01718164049088955, 0.00621612835675478, 0.12167994678020477, -0.0556560680270195, -0.06705692410469055, 0.04369545727968216, 0.1159156784415245, -0.003619143506512046, 0.0066600702702999115, -0.16091570258140564, 0.013482660986483097, 0.05364052578806877, 0.03437843546271324, -0.08766444772481918, -0.03557948023080826, 0.09363196045160294, 0.08093695342540741, -0.07570291310548782, 0.011069430969655514, 0.08819404989480972, -0.017530014738440514, 0.14393725991249084, -0.00047044712118804455, 0.0020439994987100363, 0.08741359412670135, 0.040261976420879364, 0.10453972965478897, 0.02894335426390171, -0.004973683971911669, -0.026126693934202194, -0.13373172283172607, -0.11785077303647995, 0.01390641275793314, -0.06101294606924057, 0.019034599885344505, 0.052712030708789825, -0.028205815702676773, 0.11989749222993851, -0.01611657813191414, 0.07885739207267761, -0.009210018441081047, -0.1262090504169464, 0.1942683458328247, 0.04951998218894005, -0.06086598336696625, 0.027651861310005188, 0.09538497775793076, -0.012327618896961212, 0.11058193445205688, 0.08149141073226929, 0.04068208858370781, -0.07601872831583023], -extractvalue:[0.03284852206707001, -0.06867947429418564, 0.07688962668180466, -0.08582542091608047, -0.058404408395290375, 0.00022745932801626623, 0.1847180277109146, -0.1365411877632141, 0.05156185105443001, -0.037756241858005524, 0.0022605073172599077, -0.06690789759159088, -0.040311213582754135, -0.13624760508537292, -0.05390683934092522, -0.11802373081445694, -0.13242284953594208, -0.03592986240983009, -0.017603915184736252, -0.06794190406799316, -0.09784868359565735, -0.0447889119386673, 0.08698378503322601, -0.005072152242064476, 0.024064460769295692, -0.026407258585095406, 0.08554930239915848, -0.007528455927968025, -0.06482700258493423, 0.0011230582604184747, 0.11722008883953094, -0.02322331815958023, -0.06111001595854759, -0.014501859433948994, 0.14079129695892334, -0.001864386023953557, 0.07092511653900146, -0.020376473665237427, 0.020192531868815422, -0.05104820057749748, -0.06390682607889175, 0.13941144943237305, -0.07803866267204285, 0.1511498987674713, 0.04002455621957779, -0.06563237309455872, -0.05302278324961662, 0.12395687401294708, -0.0013513274025171995, 0.09052340686321259, 0.05252296105027199, -0.11693546175956726, -0.07253168523311615, 0.03518245369195938, 0.1260124295949936, -0.009693635627627373, 0.05826548859477043, -0.1032484918832779, 0.036830104887485504, 0.1327396184206009, 0.06219303980469704, -0.006488648243248463, -0.005883258301764727, 0.10151240229606628, 0.11548598855733871, 0.13967552781105042, 0.10531572997570038, -0.12273596972227097, -0.02210768684744835, 0.044937968254089355, 0.0028185162227600813, -0.15045896172523499, 0.11933066695928574, -0.0846758484840393, -0.030867863446474075, -0.019726434722542763, -0.026044802740216255, 0.050827521830797195, 0.11204466223716736, -0.011435081250965595, 0.09246236830949783, -0.04774605855345726, 0.04674357548356056, -0.13009992241859436, 0.06120239198207855, -0.013719350099563599, 0.10440035909414291, 0.0637538805603981, -0.016536522656679153, 0.08274254947900772, -0.001697610248811543, -0.058766841888427734, 0.007897652685642242, 0.043208666145801544, 0.0010886446107178926, 0.009260058403015137, 0.11942502111196518, -0.004998869728296995, 0.017344266176223755, 0.12749077379703522, 0.0963362604379654, 0.005589185748249292, -0.07712522894144058, 0.04726988822221756, 0.009997742250561714, -0.0764671042561531, -0.13109248876571655, -0.06868256628513336, -0.14665986597537994, 0.02967909723520279, -0.14811214804649353, 0.09676391631364822, 0.025456789880990982, 0.14286112785339355, -0.09533767402172089, -0.0014388643903657794, 0.12011952698230743, -0.04288715124130249, 0.058399517089128494, -0.04450671747326851, -0.03710166737437248, 0.08984429389238358, -0.009724949486553669, 0.013789513148367405, -0.05603352189064026, -0.06833218783140182, 0.025194741785526276, -0.10688226670026779, -0.048962049186229706, -0.006542006507515907, 0.023913497105240822, 0.03737112879753113, -0.028093308210372925, -0.01377964299172163, -0.012848727405071259, -0.010306045413017273, 0.13582946360111237, 0.0507902093231678, 0.10138306766748428, 0.11558429151773453, -0.04037075489759445, 0.0885850340127945, -0.09366058558225632, -0.013828251510858536, -0.06514103710651398, -0.06330212205648422, -0.12686480581760406, 0.11144641786813736, -0.010548485442996025, -0.1507180631160736, -0.050929777324199677, -0.029400842264294624, -0.12268392741680145, 0.0066144466400146484, 0.10066363215446472, 0.1517493724822998, -0.10957369208335876, -0.058051690459251404, -0.021986650303006172, 0.0029667350463569164, 0.006847213488072157, -0.09207998961210251, -0.1044129952788353, -0.04544145613908768, 0.037465520203113556, -0.07643113285303116, 0.027523040771484375, -0.1322658807039261, -0.045630376785993576, 0.03384874388575554, 0.10096808522939682, -0.11764632910490036, -0.09921500086784363, -0.10612800717353821, -0.11236980557441711, -0.07745471596717834, 0.07675477862358093, -0.08380962908267975, -0.138079434633255, 0.10580411553382874, 0.028994245454669, -0.05536307021975517, -0.14662134647369385, 0.0533294603228569, 0.050735268741846085, -0.12856267392635345, 0.016390057280659676, -0.02037724107503891, -0.019939955323934555, -0.05481940880417824, 0.06970052421092987, 0.014931531623005867, -0.019586144015192986, 0.07973013073205948, -0.05070118233561516, -0.0855264738202095, -0.015379481948912144, -0.016351323574781418, -0.08975709229707718, 0.008295418694615364, 0.12984783947467804, -0.013289617374539375, -0.0019123208476230502, -0.02940996177494526, 0.026508878916502, -0.06841035187244415, -0.12190975248813629, 0.06287603825330734, -0.00925912894308567, -0.041467297822237015, 0.14571906626224518, -0.025655992329120636, 0.06605996936559677, 0.03384310379624367, 0.010775025933980942, -0.020531879737973213, 0.019208714365959167, 0.008186048828065395, 0.04333190992474556, -0.05294547975063324, 0.03537816181778908, 0.009477698244154453, 0.10145904123783112, -0.05836253985762596, 0.027514293789863586, 0.051313817501068115, 0.10428701341152191, 0.010754523798823357, 0.07550457864999771, -0.10540921241044998, 0.03079608827829361, -0.15248310565948486, -0.06158662214875221, -0.024907665327191353, 0.0973944216966629, -0.05810556933283806, -0.10951029509305954, -0.03766058757901192, -0.06277074664831161, -0.015880774706602097, -0.08804886043071747, -0.01273986604064703, -0.008743811398744583, -0.03169577196240425, -0.020139504224061966, 0.03748028352856636, -0.1099821999669075, -0.025368807837367058, -0.06750381737947464, 0.05202879384160042, 0.17490246891975403, 0.007787977810949087, -0.044993311166763306, -0.057451896369457245, 0.11333548277616501, 0.05689845606684685, 0.0022948086261749268, -0.08527334034442902, -0.02558843418955803, 0.007764643058180809, 0.026497025042772293, -0.10435912013053894, -0.12119154632091522, -0.1119379922747612, 0.06139981746673584, -0.05841705575585365, 0.01769346185028553, 0.10356549918651581, -0.012910821475088596, 0.03131668642163277, 0.06228701397776604, -0.009848841466009617, 0.10861530900001526, 0.010274221189320087, 0.08225128799676895, 0.046769946813583374, 0.004151627421379089, 0.1187489852309227, -0.006853272672742605, 0.06801366806030273, -0.06571361422538757, -0.055169496685266495, 0.032678015530109406, -0.11683046817779541, -0.13781070709228516, 0.02752329595386982, -0.01719864085316658, 0.11449351906776428, 0.060473307967185974, -0.07641526311635971, -0.009517461061477661, -0.12147345393896103, -0.12691232562065125, 0.05205680802464485, 0.030412523075938225, 0.009272159077227116, 0.0016047906829044223, -0.019155800342559814, 0.1274503767490387, -0.0598488487303257], -fadd:[0.03447459638118744, -0.05450377240777016, 0.03784856200218201, -0.07296354323625565, 0.0848856270313263, 0.004877931904047728, 0.10584866255521774, -0.03527725860476494, 0.05971923843026161, 0.018759118393063545, 0.028933104127645493, 0.08422990143299103, 0.025044240057468414, 0.07003788650035858, -0.019362933933734894, 0.09434998780488968, -0.011387651786208153, -0.12456223368644714, -0.010290387086570263, -0.03944949433207512, -0.09015669673681259, 0.0332878977060318, 0.005685861222445965, -0.019396977499127388, -0.043800584971904755, -0.054237574338912964, 0.014834059402346611, -0.045462023466825485, -0.08804250508546829, -0.042348507791757584, 0.05333471670746803, -0.02810012921690941, -0.08405448496341705, -0.06190013885498047, -0.06424619257450104, 0.004657100420445204, 0.008527548052370548, -0.026717448607087135, 0.02693493291735649, -0.04561088606715202, -0.049550365656614304, -0.05093180760741234, 0.050355419516563416, -0.04223592206835747, 0.0753876343369484, 0.20124705135822296, -0.00569118931889534, -0.034616291522979736, 0.0055388351902365685, -0.0838082805275917, 0.18308186531066895, 0.10400265455245972, 0.12187828868627548, -0.12672752141952515, 0.08847629278898239, -0.004067855421453714, 0.05848946422338486, -0.07522210478782654, -0.08465727418661118, -0.09064622223377228, 0.06099913269281387, 0.011239269748330116, 0.0915871113538742, 0.08800504356622696, 0.046940308064222336, 0.13369381427764893, -0.012523998506367207, -0.09527778625488281, 0.10479415953159332, 0.0413651242852211, -0.06165173277258873, -0.06628929078578949, 0.07292119413614273, -0.10083779692649841, 0.14456646144390106, -0.06561195105314255, -0.08706443756818771, 0.037797797471284866, -0.09276656061410904, -0.14369888603687286, 0.09575314819812775, -0.014021838083863258, 0.10024163872003555, -0.07320591807365417, 0.035011209547519684, -0.019649062305688858, 0.10183097422122955, -0.0799255296587944, -0.04632658511400223, -0.028209427371621132, -0.07120077311992645, -0.04020283371210098, -0.09442446380853653, -0.09898679703474045, -0.07757518440485, -0.0967557281255722, -0.00910329632461071, -0.03333595395088196, -0.015754789113998413, 0.03981296345591545, 0.028547950088977814, 0.11091195791959763, -0.05394957587122917, -0.04370573163032532, 0.07595237344503403, -0.13035692274570465, 0.02671988122165203, -0.019197721034288406, 0.04916258156299591, -0.04316919669508934, -0.03948303684592247, -0.06739327311515808, -0.0716400146484375, -0.07803957909345627, 0.13987122476100922, -0.16155356168746948, -0.06113307923078537, -0.03603346645832062, 0.06848359107971191, -0.03620826080441475, 0.05608684942126274, 0.11072106659412384, -0.08250491321086884, 0.02243807725608349, -0.07781650871038437, -0.06772423535585403, 0.044977035373449326, 0.15260562300682068, -0.02622288279235363, 0.004212160594761372, 0.061036549508571625, -0.05404366925358772, 0.11608307808637619, 0.034315332770347595, 0.08944804966449738, -0.0050548408180475235, -0.10458430647850037, -0.015155482105910778, 0.07305213809013367, 0.1200171560049057, -0.049519143998622894, 0.02388325333595276, 0.060859907418489456, -0.07552039623260498, -0.023841816931962967, -0.0036164827179163694, -0.09683854877948761, -0.058585528284311295, -0.019470104947686195, 0.04824305325746536, 0.030739525333046913, -0.08616870641708374, 0.19512587785720825, 0.03745504096150398, 0.11570122838020325, 0.1388910710811615, 0.00843404233455658, -0.06792130321264267, 0.05877543240785599, -0.04230472818017006, 0.07978257536888123, 0.062178850173950195, 0.03552252799272537, -0.06327135115861893, 0.07141958177089691, -0.07218814641237259, 0.013699591159820557, 0.11029431968927383, 0.027754899114370346, -0.12154632061719894, -0.038805603981018066, -0.11227384209632874, 0.036931682378053665, -0.10720804333686829, -0.028838088735938072, -0.16333797574043274, -0.017949305474758148, -0.04399653524160385, 0.13224180042743683, -0.035163749009370804, -0.03690819814801216, 0.1987326294183731, 0.03180870786309242, -0.06844589114189148, 0.055442895740270615, 0.0433344766497612, 0.038400862365961075, -0.02020939625799656, 0.12271931022405624, -0.05574217066168785, 0.06233738735318184, 0.031434040516614914, -0.04145278036594391, -0.048103637993335724, -0.032101552933454514, -0.02724369801580906, 0.026443511247634888, 0.06423217058181763, -0.04015619307756424, 0.13811534643173218, -0.0255085751414299, 0.04245757684111595, 0.07117842882871628, -0.03405415266752243, 0.12176862359046936, 0.025969164445996284, -0.11188163608312607, 0.15602818131446838, 0.029665514826774597, -0.11486773192882538, 0.07994621992111206, -0.02284843474626541, 0.035345759242773056, 0.029117099940776825, 0.046724382787942886, -0.08242839574813843, -0.07364076375961304, 0.035741034895181656, -0.20065510272979736, -0.02317744493484497, -0.10639836639165878, 0.008265828713774681, 0.10332515090703964, 0.09580328315496445, 0.01379606407135725, -0.050093866884708405, 0.10713501274585724, 0.08486800640821457, 0.10730601847171783, 0.06398652493953705, -0.005198912229388952, 0.031394898891448975, 0.060929544270038605, 0.09160551428794861, 0.013694667257368565, 0.004880344960838556, 0.00930599495768547, 0.03927326202392578, -0.13508278131484985, 0.0027906394097954035, -0.027416689321398735, 0.08599689602851868, 0.10876364260911942, 0.08094630390405655, 0.005303225480020046, 0.024168433621525764, -0.03420431539416313, 0.03318081051111221, -0.1498730331659317, 0.03593967854976654, 0.006751484703272581, 0.013993382453918457, -0.08686799556016922, -0.09584994614124298, 0.09257268905639648, -0.024141697213053703, -0.09198369085788727, -0.02008478157222271, -0.04972008243203163, 0.05493174493312836, 0.024768652394413948, -0.10515744239091873, 0.021416475996375084, -0.02765490487217903, 0.11372911185026169, -0.10241173952817917, 0.016418514773249626, 0.05206630378961563, -0.042202673852443695, -0.07815779745578766, -0.03449077159166336, 0.07471487671136856, -0.02178412675857544, 0.032304126769304276, 0.12054185569286346, 0.04002321511507034, -0.1122724860906601, -0.07878148555755615, -0.13899709284305573, -0.1338917315006256, -0.013177634216845036, 0.14526242017745972, -0.005174195859581232, 0.047468725591897964, 0.06351222097873688, 0.11244307458400726, -0.014048428274691105, -0.007660004310309887, -0.0453648678958416, 0.047496628016233444, -0.0008101244457066059, 0.04399602860212326, -0.06326381117105484, -0.019380362704396248, -0.057455115020275116, -0.02916586957871914, 0.012977531179785728, -0.08360963314771652, -0.052989374846220016, -0.13269361853599548], -fcmp:[-0.02588062733411789, -0.07850154489278793, 0.02850348874926567, 0.13452614843845367, -0.056179989129304886, 0.007252076640725136, 0.06261219084262848, -0.03322947397828102, 0.07449822872877121, 0.034973278641700745, 0.11772730946540833, 0.053435102105140686, -0.02734089083969593, -0.02030988596379757, 0.055737923830747604, 0.08383926004171371, -0.03083794191479683, -0.13463620841503143, -0.03776274994015694, -0.024170994758605957, -0.09067273139953613, 0.125115305185318, -0.031585704535245895, -0.015960628166794777, 0.041768889874219894, -0.024493800476193428, 0.020928164944052696, 0.07865656167268753, -0.10436742007732391, 0.09955204278230667, -0.039052318781614304, -0.026172850281000137, -0.07973191142082214, -0.1878548562526703, 0.06585889309644699, -0.09186524897813797, 0.08717888593673706, 0.1324578821659088, 0.022129308432340622, -0.09911181777715683, -0.07643149793148041, -0.0842185914516449, 0.12324841320514679, -0.08485069870948792, 0.045733556151390076, 0.05775274708867073, -0.015226622112095356, -0.013159348629415035, -0.0052788094617426395, 0.025681955739855766, -0.024198828265070915, 0.09890799969434738, -0.03478548303246498, -0.10024432092905045, 0.047335267066955566, 0.05861819162964821, 0.09958678483963013, 0.03488261625170708, -0.059026725590229034, 0.021570978686213493, 0.060050468891859055, -0.0018542202888056636, 0.018390461802482605, -0.01005748100578785, 0.022415900602936745, 0.015259061940014362, -0.0173697080463171, -0.08506443351507187, 0.11184000223875046, 0.04278852045536041, 0.056185849010944366, -0.0875304788351059, -0.007467832416296005, -0.016026997938752174, -0.1175115555524826, -0.03939121589064598, -0.13614007830619812, -0.02165638655424118, 0.09628353267908096, -0.13901199400424957, -0.0624011866748333, 0.07770592719316483, 0.04227461293339729, -0.0050426507368683815, 0.06847290694713593, -0.0038688774220645428, 0.1364039182662964, -0.008350079879164696, -0.05204591527581215, -0.018717313185334206, -0.07989377528429031, -0.09395942091941833, -0.09257794916629791, -0.03634895011782646, 0.04192613810300827, 0.146713525056839, 0.12270495295524597, -0.06796389073133469, -0.07850546389818192, -0.06114108860492706, 0.00996563583612442, 0.12279480695724487, 0.012791953049600124, -0.031987179070711136, -0.11173681914806366, 0.12730856239795685, 0.07957784086465836, 0.016304224729537964, -0.13260383903980255, -0.04386668652296066, -0.03734342008829117, -0.03927427530288696, -0.09116555750370026, 0.009964989498257637, -0.05527988448739052, 0.07459239661693573, -0.12162232398986816, -0.03990965709090233, 0.06468912214040756, -0.03591759502887726, 0.08788377791643143, 0.09215019643306732, 0.09520275890827179, 0.05418291687965393, -0.061213430017232895, -0.06692205369472504, 0.07162433117628098, 0.04069889709353447, -0.04972979426383972, 0.05096415430307388, -0.056478552520275116, -0.08341211825609207, -0.0893661305308342, -0.08805673569440842, -0.01841822639107704, -0.001800675643607974, -0.004851225297898054, 0.11602690070867538, 0.09373435378074646, 0.09949085861444473, -0.010736007243394852, 0.03323289006948471, -0.001851886510848999, 0.06460456550121307, -0.09969095140695572, -0.01974640041589737, -0.08707697689533234, 0.0047645485028624535, 0.0037293219938874245, 0.12673303484916687, 0.060228630900382996, -0.12135588377714157, 0.0018291084561496973, -0.0679062008857727, 0.11092609912157059, 0.13964064419269562, -0.015751319006085396, 0.025728387758135796, 0.02336631901562214, -0.09987468272447586, 0.11715754121541977, -0.010277070105075836, 0.039677973836660385, -0.05194878205657005, 0.0694967657327652, -0.08401618152856827, 0.002817424014210701, -0.09178630262613297, 0.035133905708789825, -0.07170521467924118, -0.015668585896492004, -0.05455102398991585, 0.035903483629226685, -0.08354665338993073, 0.021661540493369102, -0.17412824928760529, -0.11213500052690506, 0.014453377574682236, 0.029426880180835724, -0.031069159507751465, 0.04030069708824158, -0.07449790090322495, 0.11551862955093384, -0.06193510442972183, 0.05546649917960167, 0.04480927065014839, 0.024129148572683334, -0.01626443676650524, 0.052775751799345016, -0.10333864390850067, 0.14284038543701172, 0.011088893748819828, -0.05482526868581772, -0.12944142520427704, -0.06187516823410988, 0.035482265055179596, 0.023467132821679115, -0.06440222263336182, 0.09697236865758896, -0.012854636646807194, -0.031393636018037796, 0.04422857239842415, 0.18271036446094513, -0.05782203748822212, 0.11169110983610153, -0.16039298474788666, -0.007910923101007938, 0.15610666573047638, 0.04183068871498108, 0.0412190780043602, 0.07979124784469604, 0.04342174530029297, 0.14055773615837097, -0.017910826951265335, -0.006395377218723297, -0.10354562103748322, 0.018979746848344803, 0.05066009983420372, -0.0646446943283081, 0.03123951517045498, 0.09675537049770355, -0.0037930121179670095, 0.17420989274978638, 0.09761616587638855, -0.01638021506369114, -0.05664192885160446, -0.02217818610370159, -0.007178523112088442, 0.10571213066577911, 0.03295854851603508, -0.08431915193796158, -0.00876337755471468, 0.062035687267780304, 0.10284453630447388, -0.029041171073913574, -0.02093539945781231, -0.14038534462451935, -0.006608991418033838, -0.1436486691236496, 0.07441719621419907, -0.023101288825273514, -0.046480048447847366, 0.14670997858047485, 0.09071961790323257, 0.03446761518716812, 0.031335435807704926, 0.006417907774448395, -0.035363346338272095, -0.14709678292274475, 0.06824875622987747, 0.07858039438724518, -0.030629931017756462, -0.0690523311495781, 0.04048875346779823, 0.0046990662813186646, -0.05693060904741287, -0.04269169643521309, 0.10526801645755768, -0.03298425301909447, 0.054138146340847015, -0.055265218019485474, -0.022002317011356354, -0.07084086537361145, -0.09684184938669205, 0.04000023752450943, -0.06546555459499359, 0.01159512810409069, 0.017767364159226418, -0.10231942683458328, 0.06419308483600616, -0.012157803401350975, -0.18432044982910156, -0.014944905415177345, 0.031175313517451286, 0.08854617923498154, 0.03083491325378418, 0.07136839628219604, -0.04073680192232132, -0.12166137248277664, -0.12107758969068527, 0.03715132549405098, 0.06505932658910751, -0.007009632419794798, 0.05311078950762749, 0.0664352998137474, 0.06925889104604721, -0.005740495398640633, 0.02651255391538143, -0.0838519036769867, -0.01728217490017414, -0.08839573711156845, 0.01743503101170063, -0.06397484987974167, -0.018545644357800484, -0.09924057871103287, -0.019137892872095108, 0.1017870232462883, -0.027313821017742157, -0.11893125623464584, -0.14725962281227112], -fdiv:[0.013416816480457783, -0.0534709095954895, -0.02133103646337986, 0.037347376346588135, 0.09862727671861649, -0.13285531103610992, -0.09468008577823639, -0.0064966874197125435, 0.06837021559476852, 0.046456463634967804, 0.12235138565301895, 0.048662345856428146, 0.05926446244120598, 0.07646362483501434, -0.0197746641933918, 0.09452416002750397, -0.01470236573368311, -0.1266162395477295, -0.03045506775379181, 0.017024651169776917, -0.11733893305063248, 0.06474536657333374, 0.005757383536547422, -0.1258651614189148, -0.032307010143995285, 0.03514222055673599, -0.09873494505882263, -0.04639510437846184, -0.09543153643608093, 0.06720654666423798, -0.049369506537914276, 0.01766892708837986, 0.07217586785554886, -0.052626173943281174, -0.02650061622262001, 0.10313937813043594, 0.092641681432724, 0.12551024556159973, -0.031207667663693428, -0.0990697368979454, -0.07436253130435944, -0.05085339769721031, 0.06156914681196213, -0.0796000212430954, -0.06762219220399857, 0.08556894958019257, 0.008654537610709667, -0.009333845227956772, 0.08668634295463562, 0.07313266396522522, 0.10325320065021515, 0.1006300076842308, 0.08807669579982758, -0.029440000653266907, 0.07737228274345398, -0.006380779668688774, 0.06319452077150345, 0.07578758150339127, -0.11144384741783142, 0.010230579413473606, 0.05822483077645302, 0.011365322396159172, 0.08642098307609558, -0.061945196241140366, -0.007864540442824364, 0.028374038636684418, -0.05407775938510895, -0.08154072612524033, -0.08792857825756073, 0.03985689580440521, -0.057238202542066574, -0.0620306022465229, 0.03398236632347107, -0.09733062982559204, -0.060816776007413864, -0.06618835777044296, 0.01935022510588169, 0.03759516403079033, -0.08741719275712967, -0.16245907545089722, -0.01262762863188982, -0.08130823075771332, 0.070524200797081, 0.05249907448887825, -0.022374091669917107, -0.0005551149952225387, 0.09256473183631897, 0.07433421164751053, -0.04677654430270195, 0.0805814266204834, -0.01560638751834631, -0.03901251032948494, 0.12753981351852417, -0.2050321102142334, -0.04824240133166313, -0.08244367688894272, 0.02341504581272602, -0.18675431609153748, -0.08073577284812927, 0.02834569290280342, 0.02335844188928604, 0.11706829816102982, 0.012829592451453209, -0.01545130368322134, 0.08052784204483032, 0.06915808469057083, 0.04134774208068848, 0.009865484200417995, 0.05538035184144974, -0.02503742277622223, -0.06572864204645157, -0.05280516669154167, -0.045650649815797806, -0.019789747893810272, 0.13593356311321259, -0.1441708356142044, -0.10708822309970856, -0.03494594246149063, 0.05755441635847092, -0.03422735258936882, -0.034438375383615494, 0.1086198017001152, 0.04100371152162552, 0.013657438568770885, -0.07630198448896408, 0.05669911578297615, 0.04325540363788605, -0.007439497392624617, 0.14020714163780212, 0.04658161848783493, 0.03482295200228691, -0.026697026565670967, 0.027827566489577293, 0.06570272892713547, -0.12403959780931473, 0.02766447328031063, -0.018885133787989616, 0.04516613483428955, 0.05990081652998924, 0.09409983456134796, -0.03070582076907158, 0.024096654728055, -0.018435038626194, -0.0811220109462738, -0.0010488475672900677, 0.016816478222608566, -0.08184409141540527, 0.015139118768274784, 0.09837795048952103, -0.0339377298951149, -0.02651992253959179, -0.08345410227775574, 7.235049270093441e-05, -0.03630392625927925, 0.11391168087720871, 0.1369565725326538, 0.00872308574616909, 0.1442728042602539, 0.062181517481803894, -0.09954610466957092, 0.09035671502351761, 0.061641257256269455, 0.036290884017944336, -0.021321767941117287, 0.07113046199083328, -0.021551720798015594, -0.013434033840894699, 0.10840737819671631, 0.07069353759288788, -0.13191041350364685, -0.11115189641714096, -0.05115828663110733, 0.03589358180761337, -0.08395244181156158, 0.025782842189073563, -0.07308151572942734, -0.030788717791438103, -0.06780337542295456, -0.024896694347262383, -0.03607586771249771, -0.03489242121577263, -0.024226166307926178, 0.04735146462917328, -0.08977372199296951, 0.054947759956121445, 0.07218672335147858, -0.09539560973644257, -0.01833629421889782, 0.011671219021081924, -0.12899915874004364, 0.008473336696624756, 0.03831744194030762, -0.06863295286893845, -0.028908276930451393, -0.059303782880306244, 0.05891772359609604, 0.006852258462458849, 0.111542709171772, -0.033573511987924576, 0.13755322992801666, -0.12991845607757568, 0.04207811877131462, 0.03365551307797432, -0.08864380419254303, 0.11725176125764847, -0.0724455863237381, -0.10884979367256165, 0.15112148225307465, 0.05781615525484085, -0.043471381068229675, 0.06248077005147934, -0.06601789593696594, 0.13892300426959991, 0.09697667509317398, 0.05378397926688194, -0.07849426567554474, 0.13488954305648804, -0.11901706457138062, 0.03761830925941467, 0.040957074612379074, 0.11575677245855331, 0.08746833354234695, -0.08703721314668655, 0.09395149350166321, 0.031169014051556587, -0.04768984019756317, -0.11850254237651825, 0.08467552810907364, -0.11117298156023026, 0.03575636446475983, -0.05862047150731087, 0.00685777748003602, 0.05627535656094551, 0.08333767205476761, -0.023808710277080536, 0.0246889665722847, -0.0119927441701293, 0.01735660992562771, 0.01491483859717846, 0.08421049267053604, -0.021891752257943153, 0.06771571934223175, 0.12589094042778015, 0.08803854882717133, 0.040013160556554794, 0.02351498045027256, 0.058713167905807495, -0.09929652512073517, -0.14579252898693085, 0.024231668561697006, 0.03380162641406059, -0.05231755971908569, -0.08083348721265793, 0.04267282783985138, 0.11394207924604416, -0.01719815470278263, 0.020114125683903694, -0.004559642169624567, 0.011751603335142136, -0.08466960489749908, -0.0004636420635506511, 0.08268192410469055, -0.04047171398997307, 0.09453221410512924, 0.1622924655675888, -0.1069323942065239, 0.008211091160774231, 0.03733303025364876, -0.05243103578686714, -0.06417589634656906, 0.029370294883847237, 0.03386349603533745, 0.035264451056718826, 0.03570699319243431, 0.1203990951180458, 0.027953360229730606, -0.02380521036684513, -0.026208724826574326, -0.022597992792725563, -0.11429119855165482, 0.010135388933122158, 0.02661658450961113, -0.004972139839082956, 0.08953467011451721, 0.06531991064548492, 0.10958769172430038, 0.015781106427311897, 0.047148771584033966, -0.009518295526504517, -0.10685550421476364, 0.0020833953749388456, 0.05802615359425545, -0.04339892789721489, -0.01993640325963497, -0.040499940514564514, -0.028534604236483574, -0.013288885354995728, -0.06505480408668518, -0.1151978000998497, -0.12662094831466675], -floatTy:[0.05140724405646324, 0.059351250529289246, -0.13132649660110474, -0.11391831189393997, 0.1022370383143425, -0.05392410606145859, 0.011842364445328712, 0.05957932025194168, 0.005095363594591618, -0.045722875744104385, -0.03182997927069664, -0.05681056156754494, -0.019014183431863785, 0.10437823832035065, -0.07381793856620789, -0.062938392162323, 0.0884053111076355, 0.050220321863889694, 0.09237998723983765, 0.09121599048376083, -0.04665789380669594, 0.05958501249551773, -0.06307892501354218, -0.1056324690580368, -0.1096024364233017, 0.00883757509291172, -0.05853612348437309, 0.015232184901833534, 0.0013325200416147709, 0.005029554013162851, 0.03294699639081955, -0.08903152495622635, -0.10427813231945038, -0.011680347844958305, -0.12651659548282623, -0.005756622180342674, -0.07848545908927917, 0.05644146353006363, -0.1086547002196312, 0.1469128280878067, 0.06695884466171265, -0.07825914025306702, -0.08293987065553665, 0.006269688718020916, -0.008949785493314266, -0.05969434976577759, 0.07557518780231476, -0.02841195836663246, -0.08463210612535477, -0.05152692273259163, 0.07054980099201202, 0.048035670071840286, 0.03265543282032013, 0.008821745403110981, -0.09307418763637543, 0.06571653485298157, -0.05648885294795036, 0.09114334732294083, -0.062195152044296265, 0.1308024376630783, -0.07430516928434372, 0.09074108302593231, 0.026815542951226234, -0.13822267949581146, -0.06562989950180054, 0.09785991162061691, 0.11676978319883347, 0.03252046927809715, -0.13629934191703796, -0.05079369992017746, -0.028559070080518723, -0.10125050693750381, 0.1287650465965271, 0.08268477767705917, -0.017743375152349472, 0.028790201991796494, 0.016279013827443123, -0.08935694396495819, -0.14667242765426636, -0.00452914834022522, 0.060119833797216415, -0.0846259593963623, -0.10988227277994156, -0.03773381561040878, -0.0635870173573494, -0.08899971842765808, 0.01139823254197836, -0.06057659909129143, 0.05561332404613495, 0.0037892688997089863, 0.06011940911412239, 0.009322147816419601, 0.08534994721412659, -0.02996344491839409, -0.014096660539507866, -0.014897588640451431, -0.03355581313371658, -0.0034848819486796856, 0.079039067029953, -0.08371845632791519, -0.0670265331864357, 0.050847869366407394, -0.02419893629848957, 0.020709145814180374, -0.061761222779750824, -0.13431479036808014, -0.10797202587127686, 0.07828966528177261, -0.04087997227907181, 0.031918566673994064, 0.029402628540992737, 0.10804207623004913, -0.011730269528925419, -0.02116590552031994, -0.031377144157886505, -0.05084139108657837, 0.10533253103494644, -0.11194034665822983, 0.01741938106715679, 0.012396757490932941, 0.005385715048760176, -0.014306395314633846, -0.007966423407196999, 0.062020014971494675, 0.04675881937146187, -0.09398140013217926, 0.12609633803367615, -0.02566611021757126, -0.037520378828048706, 0.11889054626226425, -0.06745188683271408, 0.06599117815494537, 0.02829889953136444, -0.04034511372447014, -0.07537616044282913, 0.033514395356178284, 0.10583355277776718, 0.034459713846445084, 0.014267991296947002, -0.05761348828673363, -0.050353825092315674, -0.016152191907167435, -0.021482406184077263, -0.02682708390057087, 0.032612964510917664, 0.03546885773539543, 0.05646468326449394, 0.06423062831163406, 0.030182870104908943, -0.07239401340484619, 0.008654461242258549, 0.07835464179515839, -0.06643127650022507, 0.006090232636779547, -0.015210123732686043, -0.07249138504266739, 0.10241100192070007, 0.00679657980799675, 0.052091944962739944, -0.1426023244857788, 0.06765159964561462, -0.041878510266542435, 0.12351683527231216, -0.019697580486536026, -0.10313579440116882, 0.0797448679804802, -0.09350287914276123, -0.05420055612921715, -0.11256085336208344, -0.08073782175779343, -0.06372591853141785, -0.11081551760435104, -0.0920867845416069, 0.06960710138082504, -0.03896106407046318, -0.06728163361549377, -0.03299069404602051, 0.014360983856022358, -0.06755903363227844, 0.009201984852552414, -0.02897525392472744, -0.05630141496658325, 0.11106912046670914, -0.12868303060531616, -0.10237333178520203, 0.15352694690227509, 0.023292331025004387, 0.07786761224269867, -0.10602820664644241, 0.12037549912929535, -0.011342302896082401, -0.10239304602146149, 0.037570465356111526, 0.06384488195180893, 0.06104804575443268, 0.060274239629507065, -0.10298754274845123, 0.060085996985435486, -0.04925858974456787, -0.03227431699633598, -0.06363014876842499, 0.12400642037391663, 0.02449900098145008, 0.09046100080013275, 0.022067325189709663, 0.04235164448618889, -0.05390758812427521, -0.06941686570644379, -0.0280891302973032, 0.02590387687087059, 0.10903102159500122, -0.012448251247406006, -0.06779621541500092, 0.016588767990469933, -0.011787988245487213, 0.10375338047742844, -0.03391329571604729, -0.040445245802402496, 0.11171095818281174, 0.004505407065153122, -0.00353246764279902, 0.07853294909000397, 0.04625296965241432, -0.1077643409371376, 0.05121520161628723, -0.08592147380113602, 0.04796701297163963, -0.03675052896142006, 0.08691347390413284, 0.13128983974456787, 0.10625890642404556, 0.07200421392917633, -0.03841778263449669, 0.026838669553399086, 0.03380380943417549, 0.12097840756177902, 0.003059959504753351, 0.08064724504947662, 0.03275056183338165, -0.05444488674402237, 0.08703131973743439, 0.04282983019948006, 0.0324484221637249, -0.06527740508317947, 0.0795462504029274, -0.05578135326504707, -0.004178334027528763, -0.004331629257649183, 0.05378378927707672, -0.024055100977420807, -0.036007728427648544, -0.12918400764465332, 0.11061789840459824, 0.12953239679336548, 0.059359360486269, -0.018543420359492302, -0.06422989815473557, 0.009162267670035362, 0.07628884166479111, -0.07191301882266998, -0.012780534103512764, -0.060548555105924606, 0.09323711693286896, -0.01192806288599968, -0.016569040715694427, 0.006962942890822887, 0.08298224210739136, -0.01794068142771721, 0.06848278641700745, -0.01690027490258217, -0.07874003797769547, 0.026075372472405434, -0.06673208624124527, 0.12081582844257355, -0.10133687406778336, -0.10060760378837585, 0.028701188042759895, 0.12149924039840698, -0.06518320739269257, -0.05649247765541077, 0.08534888923168182, 0.052199896425008774, 0.07298664003610611, -0.08764104545116425, 0.050169821828603745, 0.06738167256116867, -0.1142781600356102, 0.009068350307643414, -0.08572601526975632, 0.01003183051943779, 0.010175474919378757, -0.07983392477035522, -0.10159847885370255, -0.1065770611166954, 0.14789976179599762, -0.10133194178342819, 0.01679341122508049, 0.004156701732426882, 0.09753027558326721, 0.055218443274497986], -fmul:[0.04119281470775604, -0.13257798552513123, 0.029460875317454338, 0.139865443110466, 0.08846373111009598, 0.07274522632360458, 0.08405311405658722, -0.048521120101213455, 0.008296188898384571, 0.027741743251681328, 0.12892545759677887, 0.05643691495060921, -0.03737800568342209, 0.009567868895828724, 0.10681672394275665, 0.08496570587158203, -0.014294815249741077, -0.13539548218250275, -0.04763093218207359, 0.018655646592378616, -0.1003534272313118, 0.07062997668981552, -0.06005848944187164, -0.029598921537399292, -0.03504170849919319, -0.09500936418771744, -0.085977703332901, -0.00821814313530922, -0.15395396947860718, -0.018222622573375702, 0.10874426364898682, -0.01601681299507618, -0.08634583652019501, -0.056985218077898026, -0.06496330350637436, 0.19953978061676025, 0.08053681999444962, 0.03665765002369881, 0.10481583327054977, 0.06221722811460495, -0.07971058785915375, -0.04554331675171852, 0.0889551192522049, -0.09907931089401245, -0.09732884168624878, 0.0016307162586599588, 0.012448292225599289, 0.11060503125190735, 0.005478221923112869, 0.09190158545970917, -0.09332648664712906, 0.10827688127756119, -0.003798374440521002, 0.10313010960817337, 0.04806049168109894, 0.0514921098947525, 0.060889847576618195, 0.044049233198165894, 0.136845663189888, -0.037016354501247406, 0.05850068852305412, 0.014144581742584705, 0.05842795595526695, -0.007478795479983091, 0.014456959441304207, 0.032765865325927734, -0.16457363963127136, -0.07973697781562805, -0.09058406203985214, 0.02652931399643421, -0.049892060458660126, -0.06660844385623932, -0.04028678312897682, 0.1405312418937683, -0.023238616064190865, -0.10468535125255585, 0.01867847517132759, -0.127091184258461, 0.07647097855806351, -0.16250963509082794, 0.016043536365032196, 0.12831707298755646, 0.09188174456357956, 0.014163415879011154, 0.07834511250257492, 0.017358090728521347, 0.07243780791759491, 0.07494707405567169, -0.04955771937966347, -0.005269796587526798, 0.04556620121002197, 0.003226653905585408, -0.06985269486904144, -0.051929276436567307, -0.08989902585744858, 0.03206543251872063, -0.021091341972351074, 0.03308949992060661, -0.0793154388666153, 0.11005911976099014, 0.005460052285343409, 0.12285161018371582, 0.11031865328550339, -0.01570606790482998, 0.08825182169675827, 0.06790244579315186, 0.02555854246020317, -0.012602042406797409, 0.06390132755041122, 0.06509745866060257, -0.0013920855708420277, -0.08310874551534653, 0.11589279025793076, -0.047868985682725906, 0.02935640886425972, -0.039099715650081635, -0.12916752696037292, -0.0338885672390461, 0.08228591084480286, -0.014122611843049526, -0.004021171946078539, 0.12111831456422806, -0.08366676419973373, 0.04345593973994255, -0.07824377715587616, -0.06931422650814056, -0.08804009854793549, 0.12423727661371231, -0.011130306869745255, 0.049539703875780106, -0.17895491421222687, -0.04289411008358002, -0.0852297991514206, 0.2113853096961975, 0.08975668996572495, 0.07725326716899872, -0.024723337963223457, 0.06769173592329025, 0.06037524342536926, 0.11385224014520645, -0.05118097364902496, 0.040672507137060165, -0.018402529880404472, -0.052290286868810654, 0.11261210590600967, 0.09596988558769226, -0.08550593256950378, 0.1160055547952652, -0.036337487399578094, 0.03461461141705513, 0.1100219339132309, -0.08922892063856125, 0.057211022824048996, -0.0726700946688652, 0.11737365275621414, 0.0909397155046463, 0.017896080389618874, 0.14549358189105988, -0.016992775723338127, -0.12224417924880981, -0.08017569780349731, 0.017512822523713112, 0.038223233073949814, -0.06776902824640274, 0.07334624230861664, -0.00937161035835743, -0.0409671887755394, 0.1228938177227974, 0.006271090824157, -0.16638869047164917, 0.01372135803103447, -0.05252087861299515, 0.057725124061107635, -0.020669369027018547, 0.14461475610733032, -0.12274155765771866, -0.19562120735645294, 0.13970574736595154, -0.01953146606683731, -0.03709691762924194, 0.06176772713661194, 0.13257434964179993, 0.05175290256738663, -0.07986561954021454, -0.14871357381343842, 0.0739452913403511, 0.041563209146261215, -0.002330714138224721, -0.06270166486501694, -0.006253372877836227, -0.01169633399695158, 0.03879539296030998, -0.1406177580356598, -0.027478868141770363, 0.10413843393325806, 0.02430925890803337, -0.003551901550963521, -0.07632265985012054, -0.03430318087339401, 0.0797981321811676, -0.032771192491054535, 0.04414485767483711, 0.0347319059073925, 0.011198651976883411, 0.12142685800790787, -0.07939940690994263, -0.0934179425239563, 0.12146767228841782, -0.10200736671686172, -0.035665374249219894, -0.015008741989731789, 0.06355109810829163, -0.02490106225013733, 0.09458817541599274, 0.04885352402925491, -0.08323176950216293, -0.0821964368224144, 0.1316455453634262, -0.1179683730006218, 0.12962163984775543, -0.14240841567516327, -0.03249989077448845, -0.09189287573099136, 0.10131936520338058, 0.01754845306277275, -0.060792285948991776, -0.0531359501183033, 0.08720128238201141, 0.05666109174489975, 0.0339457206428051, -0.024117903783917427, 0.01132813561707735, 0.05120677128434181, 0.052046999335289, -0.023930104449391365, -0.07358007878065109, 0.07863670587539673, 0.007877063937485218, -0.14090478420257568, 0.01877507194876671, -0.02222086489200592, -0.028330301865935326, 0.11528059095144272, 0.0795164480805397, -0.07431826740503311, 0.024633806198835373, 0.003793083131313324, -0.0468057356774807, -0.15327687561511993, -0.033490538597106934, -0.028805162757635117, 0.02820752188563347, -0.09088508784770966, 0.03755388781428337, 0.003949781879782677, -0.020229270681738853, 0.02719772793352604, 0.08080611377954483, 6.195023888722062e-05, 0.0721239298582077, -0.10044625401496887, 0.09890269488096237, 0.01621214672923088, 0.1037050262093544, -0.010156270116567612, -0.09617690742015839, 0.015467658638954163, -0.031463753432035446, -0.04655938968062401, 0.03480513393878937, -0.034811314195394516, -0.02925541065633297, 0.10010849684476852, 0.031525902450084686, 0.1210867166519165, 0.010482817888259888, 0.013460934162139893, -0.053609319031238556, -0.04388837143778801, 0.07366400957107544, 0.012386077083647251, 0.1491699367761612, -0.01731759123504162, 0.05597158148884773, -0.017654474824666977, 0.04673135653138161, 0.03676687180995941, -0.041769545525312424, -0.005219741258770227, -0.048343341797590256, -0.0030111391097307205, 0.03494810685515404, -0.05533640831708908, -0.02158612199127674, 0.09645998477935791, -0.034737467765808105, -0.0014413561439141631, -0.08166878670454025, -0.0804351195693016, -0.11260505765676498], -fneg:[-0.027288172394037247, -0.06409147381782532, -0.02251799963414669, -0.08716192841529846, 0.08306220173835754, 0.000672025722451508, 0.10604815185070038, -0.07911132276058197, 0.09191915392875671, 0.034747011959552765, 0.12951160967350006, 0.05075737088918686, -0.06070898845791817, 0.05887032672762871, 0.013739846646785736, 0.09780500084161758, -0.12883923947811127, -0.1140933632850647, -0.04478548839688301, -0.07001866400241852, -0.12507490813732147, 0.0998462438583374, 0.017678270116448402, 0.013310414738953114, 0.10327788442373276, -0.07356385886669159, 0.019581932574510574, 0.18216660618782043, -0.12278222292661667, 0.07291430234909058, -0.036890413612127304, 0.0488971509039402, 0.12815329432487488, 0.007850048132240772, 0.08287838101387024, 0.0025589552242308855, -0.004542166832834482, 0.007819666527211666, -0.019456490874290466, 0.12644237279891968, -0.07945595681667328, -0.15035586059093475, -0.037913575768470764, -0.17159709334373474, 0.1398286521434784, -0.057239316403865814, -0.004008911084383726, 0.07059357315301895, 0.0040825060568749905, 0.09118358790874481, 0.1065133661031723, -0.05666160583496094, 0.2009376436471939, 0.09171414375305176, -0.025748632848262787, 0.01824583299458027, 0.019682321697473526, 0.039852388203144073, 0.13830803334712982, 0.010545270517468452, 0.05660276487469673, -0.026568124070763588, 0.10020388662815094, -0.11241726577281952, 0.018604040145874023, 0.14136621356010437, 0.05880998075008392, -0.08915688097476959, -0.010857910849153996, 0.04470248520374298, 0.007665793877094984, -0.08781937509775162, -0.1193215548992157, -0.07983705401420593, -0.04971913993358612, -0.0361020490527153, -0.03272132948040962, -0.11032082885503769, -0.018651070073246956, -0.161657452583313, 0.10225140303373337, -0.09441870450973511, 0.09263692796230316, 0.05257192999124527, 0.10964799672365189, 0.017542725428938866, 0.08571966737508774, 0.07433430105447769, -0.051625099033117294, -0.049831584095954895, 0.050001829862594604, 0.0032026723492890596, -0.04624683037400246, 0.04593725875020027, 0.02465316466987133, 0.07533439248800278, 0.029646502807736397, -0.03533610329031944, -0.08913987874984741, -0.10218548029661179, 0.02334863319993019, 0.12358797341585159, -0.09318067878484726, -0.12061680108308792, -0.08122134953737259, -0.04220077767968178, -0.07655108720064163, -0.0834389254450798, 0.062526173889637, -0.017001403495669365, -0.12968981266021729, 0.06183222308754921, 0.012820986099541187, -0.07255903631448746, 0.09627197682857513, -0.039008818566799164, -0.10059785842895508, -0.04321707785129547, 0.07517301291227341, -0.07655074447393417, -0.06167136877775192, 0.1239217221736908, 0.08744177222251892, 0.11338105797767639, -0.07830433547496796, -0.06788264214992523, 0.025976767763495445, -0.026442889124155045, -0.10880046337842941, 0.05608902871608734, 0.027267076075077057, 0.06503728032112122, 0.024808069691061974, 0.007311281748116016, 0.13358844816684723, -0.016569705680012703, 0.10300560295581818, -0.0074196429923176765, 0.06481083482503891, 0.1004830002784729, -0.015294087119400501, 0.05789188668131828, 0.013049677945673466, -0.040334396064281464, -0.07157987356185913, -0.08281401544809341, -0.08417871594429016, 0.03878151252865791, 0.04319946467876434, -0.07619687169790268, 0.12039052695035934, -0.08803044259548187, 0.09537382423877716, -0.06851468235254288, 0.11045607179403305, -0.02369728311896324, -0.053030941635370255, -0.07217945903539658, 0.02279827371239662, -0.1187572255730629, 0.0356428436934948, -0.06830678880214691, 0.04899325966835022, 0.0013278690166771412, 0.07906161993741989, 0.12538589537143707, -0.06507298350334167, 0.12251555174589157, -0.03119622729718685, -0.170087069272995, -0.046035971492528915, 0.0018721150700002909, 0.02773592621088028, -0.08121836185455322, 0.001014977926388383, -0.06482436507940292, -0.08234277367591858, 0.10377272218465805, 0.0207664892077446, -0.032431378960609436, 0.031007366254925728, -0.02486780285835266, 0.06945786625146866, -0.02014971151947975, 0.055754002183675766, 0.08511236310005188, -0.13243336975574493, -0.022307969629764557, 0.07370932400226593, -0.03824024647474289, 0.02725711651146412, 0.022583993151783943, -0.03442727029323578, 0.02844724990427494, -0.025039635598659515, 0.0668148398399353, -0.01484178937971592, -0.06366122514009476, -0.07206544280052185, 0.0842374712228775, -0.09888302534818649, 0.04812263697385788, 0.1770397126674652, 0.009614885784685612, 0.12617669999599457, -0.16118665039539337, -0.13069811463356018, -0.10998070240020752, 0.014474660158157349, 0.056401945650577545, 0.08259185403585434, -0.059122081845998764, 0.053498025983572006, -0.08242540806531906, -0.030345579609274864, -0.07711947709321976, 0.018017569556832314, -0.06198718771338463, -0.10403809696435928, 0.1265522688627243, 0.02583572268486023, -0.015597923658788204, -0.08687620609998703, -0.0038148490712046623, 0.02835696004331112, -0.024594586342573166, -0.08380389958620071, 0.09119383990764618, 0.05643172189593315, 0.032965533435344696, 0.01579698920249939, 0.004809206817299128, 0.05172161012887955, 0.09221642464399338, -0.0220247320830822, -0.01470321137458086, 0.06500044465065002, 0.00012119051825720817, -0.14059510827064514, 0.025741249322891235, -0.02397218532860279, 0.18018512427806854, 0.15502004325389862, 0.11368243396282196, 0.08244864642620087, 0.03660065680742264, -0.055279169231653214, 0.005983650218695402, -0.1493876576423645, 0.0458858422935009, 0.11417108029127121, -0.09486802667379379, -0.06671717017889023, 0.01835346594452858, 0.08503776043653488, -0.009433293715119362, 0.0025227535516023636, -0.0016112368321046233, 0.13127054274082184, 0.028388436883687973, 0.0497991144657135, -0.13278990983963013, -0.04712170735001564, 0.09878876805305481, -0.033171601593494415, -0.09333544969558716, -0.009869052097201347, 0.07861287146806717, -0.048303186893463135, 0.03479637950658798, 0.07967554032802582, 0.01790458709001541, 0.13805386424064636, 0.019415564835071564, 0.0965474396944046, 0.038639411330223083, 0.004951190203428268, -0.019046973437070847, -0.08400440961122513, 0.11362461745738983, 0.04737534001469612, -0.08500583469867706, 0.019173532724380493, 0.05545910447835922, 0.07910589873790741, 0.03345459699630737, 0.0029928297735750675, -0.08240917325019836, -0.005673190113157034, 0.006140409503132105, -0.03877658769488335, -0.07260238379240036, -0.05651751905679703, -0.02004639431834221, 0.09822381287813187, -0.027244869619607925, 0.027692697942256927, -0.04767689108848572, -0.12497130781412125, -0.10760603100061417], -fpext:[0.012996183708310127, -0.09466081857681274, -0.11046348512172699, 0.03118218667805195, 0.08614061027765274, -0.0024361887481063604, -0.012186365202069283, -0.06215682253241539, 0.10230936855077744, 0.058253705501556396, 0.12999331951141357, 0.056843724101781845, -0.0057000163942575455, 0.08117273449897766, 0.026206817477941513, 0.0870351791381836, -0.034290339797735214, -0.11999158561229706, 0.028620386496186256, -0.061146121472120285, -0.10644517093896866, 0.022940607741475105, 0.003974750638008118, 0.028429565951228142, 0.06525376439094543, -0.06525862962007523, 0.024754513055086136, 0.014866362325847149, -0.1063963919878006, 0.055537186563014984, -0.05260084941983223, 0.05297759920358658, -0.09593810886144638, 0.00626120250672102, -0.11901245266199112, 0.054556529968976974, 0.037123966962099075, 0.02092636749148369, 0.022932661697268486, 0.09723827242851257, -0.1114310547709465, -0.08338415622711182, 0.03277064114809036, -0.12278426438570023, 0.0500594824552536, -0.06342014670372009, -0.009462927468121052, -0.02007560431957245, 0.11481019109487534, 0.0873032808303833, 0.12414468079805374, 0.08867029845714569, 0.002217954723164439, -0.11123671382665634, -0.007313912268728018, -0.09279622882604599, -0.062361057847738266, 0.10955345630645752, -0.11176692694425583, 0.04807499796152115, 0.058774735778570175, -0.08000621199607849, 0.1071162298321724, 0.04453422501683235, -0.07934058457612991, 0.0032977235969156027, -0.11689848452806473, -0.07271299511194229, 0.1193060353398323, 0.047894034534692764, 0.15806393325328827, -0.07070989161729813, 0.05251140519976616, -0.052800502628088, -0.10895607620477676, -0.04219561442732811, -0.056801192462444305, 0.005024588201195002, -0.10287473350763321, -0.15247821807861328, -0.04936586320400238, -0.029554283246397972, 0.0772072970867157, -0.017011310905218124, -0.1242908462882042, 0.018979603424668312, 0.12007258087396622, 0.0853603258728981, -0.044586751610040665, -0.09776366502046585, 0.12030987441539764, -0.058540452271699905, -0.049256034195423126, 0.015059754252433777, -0.05013134330511093, 0.029198529198765755, 0.05543943867087364, -0.04770825430750847, -0.09800759702920914, -0.10256873816251755, 0.025705359876155853, 0.14254650473594666, -0.05207491293549538, -0.1577603965997696, 0.10483459383249283, -0.12930002808570862, 0.11473952233791351, -0.02589191310107708, 0.06417910754680634, -0.018047600984573364, -0.059792518615722656, -0.08149360865354538, -0.05398561805486679, 0.003798087825998664, -0.07369048148393631, 0.009136445820331573, -0.041230134665966034, -0.07023216784000397, 0.05120617151260376, -0.040997542440891266, -0.03718961030244827, 0.11198675632476807, -0.029345236718654633, -0.05218769237399101, -0.08332114666700363, -0.07008732110261917, 0.0952911376953125, 0.06515999138355255, -0.058278098702430725, 0.13110370934009552, 0.04899084195494652, 0.13497474789619446, -0.08601593226194382, -0.15892785787582397, 0.08800897002220154, -0.028398755937814713, -0.009006976149976254, 0.04088359698653221, 0.07337552309036255, 0.09272772073745728, 0.0016535355243831873, 0.005879690870642662, -0.14449168741703033, -0.015071324072778225, -0.14213339984416962, -0.05761794000864029, -0.08803302049636841, 0.0712813138961792, 0.02287467196583748, -0.058586154133081436, -0.04154457524418831, -0.09189275652170181, 0.0455087348818779, 0.020368145778775215, 0.11677233874797821, 0.1615717113018036, -0.007052605506032705, 0.032657042145729065, -0.07117462158203125, -0.11293261498212814, 0.09287963062524796, -0.08081956207752228, -0.006727894302457571, -0.04927467927336693, -0.0966908186674118, -0.0896221399307251, -0.05461069568991661, 0.11857214570045471, 0.06984344869852066, -0.11386218667030334, -0.00397583469748497, -0.05283461883664131, 0.055691156536340714, -0.07509499788284302, 0.10746809095144272, 0.04958367347717285, -0.15396131575107574, -0.12237598747015, 0.1268332302570343, -0.03179774060845375, 0.032031185925006866, -0.05376734957098961, 0.09837689250707626, -0.02346310205757618, 0.10167474299669266, 0.07420802861452103, -0.13906747102737427, -0.03538931533694267, -0.1387544721364975, -0.011800098232924938, 0.10424721240997314, -0.05879861116409302, -0.04170151427388191, -0.03475083038210869, -0.025174031034111977, 0.07362730801105499, -0.1420317143201828, -0.06445303559303284, 0.12456457316875458, 0.11403430253267288, -0.03698507323861122, 0.04786554351449013, -0.018684864044189453, -0.022567451000213623, 0.09338204562664032, 0.07902686297893524, 0.051041536033153534, 0.16680891811847687, -0.010971209034323692, 0.04553346335887909, 0.08585207909345627, 0.03129942715167999, 0.04303603246808052, -0.10466000437736511, -0.01796700246632099, -0.09009911864995956, 0.021668322384357452, -0.027982164174318314, -0.11827362328767776, 0.14730623364448547, -0.14275099337100983, -0.031714461743831635, -0.095626100897789, 0.10458666831254959, 0.0954248383641243, -0.04487459361553192, 0.06458892673254013, 0.09433842450380325, 0.07400808483362198, 0.08932360261678696, -0.03448152169585228, 0.009747830219566822, 0.0670589953660965, 0.017623472958803177, -0.02749837562441826, 0.039797160774469376, -0.09792175889015198, -0.1234656497836113, -0.15367527306079865, -0.04061911255121231, -0.010940668173134327, -0.011746618896722794, 0.1419464647769928, 0.10964155942201614, 0.16295896470546722, 0.030308477580547333, 0.06833381205797195, 0.03746332973241806, -0.15845264494419098, 0.08393289893865585, 0.16322451829910278, 0.07391675561666489, 0.015932345762848854, 0.020921478047966957, 0.12917427718639374, -0.08777948468923569, -0.0030832570046186447, 0.10779594630002975, -0.035916510969400406, 0.0005172876408323646, 0.1830548346042633, 0.040470294654369354, -0.015348383225500584, 0.09713789820671082, 0.034473005682229996, -0.10777163505554199, 0.01946857199072838, 0.09895162284374237, 0.06741274148225784, 0.10838048905134201, -0.03748619928956032, 0.09256405383348465, 0.0775451809167862, 0.011581717990338802, 0.03568055108189583, -0.09344462305307388, 0.14184844493865967, -0.04198755696415901, -0.026583649218082428, -0.03407492861151695, 0.03913167119026184, 0.0057749273255467415, -0.007800974417477846, 0.0554480254650116, -0.03593976050615311, 0.02961849421262741, 0.03630281984806061, 0.08930296450853348, 0.014023732393980026, 0.04352452605962753, -0.07145459204912186, 0.016797063872218132, -0.06018923968076706, -0.010559129528701305, 0.11501763761043549, -0.03747701272368431, -0.02084207721054554, 0.005696307402104139, -0.059802424162626266, -0.1185259073972702], -fptosi:[-0.025188349187374115, -0.04511610418558121, 0.059526871889829636, 0.12300422787666321, 0.10789401829242706, -0.06228966638445854, 0.07699085026979446, 0.07694775611162186, 0.005551534704864025, 0.049328435212373734, -0.11988487839698792, 0.004209036938846111, 0.05462288111448288, -0.10118579864501953, -0.018905121833086014, 0.01246112771332264, 0.001571758883073926, -0.13116195797920227, -0.05735158547759056, -0.02301456779241562, -0.05978841334581375, 0.062709741294384, -0.03042578138411045, -0.06395456939935684, -0.032719966024160385, 0.17793607711791992, 0.12622925639152527, -0.116778165102005, -0.13578784465789795, 0.04549765959382057, -0.04994962736964226, -0.033192384988069534, 0.07701777666807175, -0.01632639952003956, -0.006462737452238798, -0.039352621883153915, 0.020850351080298424, 0.13590264320373535, 0.02959577739238739, -0.09590760618448257, -0.07593420147895813, -0.0829935148358345, 0.01911107264459133, -0.03979594632983208, 0.04547983780503273, -0.009243507869541645, 0.00449117599055171, -0.017973875626921654, 0.08954675495624542, 0.027327924966812134, 0.11242556571960449, 0.042941633611917496, -0.02200002409517765, 0.05065978318452835, 0.12217188626527786, 0.04962743818759918, 0.10254712402820587, -0.0028386046178638935, -0.02027679979801178, 0.01656896062195301, 0.05985013395547867, 0.015852192416787148, 0.055208269506692886, -0.04617219418287277, -0.02759999968111515, 0.028854502364993095, -0.025625990703701973, -0.10934554040431976, -0.08379556983709335, 0.025270693004131317, -0.012442240491509438, -0.06094938516616821, 0.03913170099258423, 0.051465220749378204, 0.10329561680555344, -0.004742425866425037, -0.027147578075528145, -0.16042929887771606, 0.09040150791406631, -0.08950828015804291, 0.13746382296085358, 0.16032753884792328, 0.08120113611221313, -0.07133835554122925, 0.0773274376988411, 0.0054230717942118645, 0.13443118333816528, 0.046566177159547806, 0.12901534140110016, 0.034192949533462524, -0.01841449923813343, -0.00014896265929564834, 0.07851763814687729, -0.004893561825156212, -0.12954005599021912, 0.04654039442539215, -0.04483567178249359, -0.03430872783064842, -0.0851009413599968, 0.06826482713222504, 0.004683960694819689, 0.007611567620187998, 0.17464660108089447, -0.03551078587770462, 0.07834412902593613, 0.06574920564889908, 0.07864388823509216, 0.11007121205329895, 0.05548824369907379, -0.12568995356559753, 0.0687757283449173, -0.08392589539289474, -0.06309526413679123, 0.012407353147864342, 0.03752616047859192, -0.03798505291342735, -0.12067768722772598, -0.03483252972364426, 0.036359261721372604, -0.012615552172064781, -0.026365255936980247, 0.09504654258489609, 0.021240876987576485, 0.015322485007345676, -0.05528649687767029, -0.06719760596752167, -0.0008059372194111347, 0.05110771581530571, -0.007801221217960119, 0.04826623201370239, -0.012235704809427261, -0.031236644834280014, -0.103498674929142, -0.023362042382359505, -0.14575743675231934, -0.1454952210187912, -0.057183943688869476, 0.042617317289114, 0.08689619600772858, 0.10880093276500702, -0.08063578605651855, 0.08155615627765656, -0.14368289709091187, 0.14269191026687622, -0.045713212341070175, 0.03934034705162048, -0.08571719378232956, -0.0577617883682251, -0.00555389653891325, 0.06872211396694183, -0.11085225641727448, -0.11819444596767426, 0.10268867015838623, 0.21470098197460175, 0.12985728681087494, 0.007805871311575174, 0.016768699511885643, 0.11844108998775482, -0.04641851782798767, 0.007641051430255175, 0.008039337582886219, 0.07639805972576141, 0.014747478067874908, 0.03643309697508812, 0.07165009528398514, -0.012763690203428268, 0.06447513401508331, 0.11051318794488907, 0.09120907634496689, 0.04026975482702255, 0.018505625426769257, -0.052566658705472946, 0.034785494208335876, -0.022301269695162773, 0.039545655250549316, -0.09168544411659241, 0.04715972766280174, -0.025840140879154205, -0.08329559862613678, -0.11762946099042892, 0.05196982994675636, -0.02742110565304756, 0.12566591799259186, 0.09130046516656876, 0.0322757326066494, 0.007687736768275499, -0.09591501951217651, -0.020073628053069115, 0.10623827576637268, -0.12648160755634308, -0.11046728491783142, 0.02940247766673565, 0.09289379417896271, -0.045985497534275055, -0.1009908989071846, -0.06529803574085236, 0.04557326063513756, -0.10781935602426529, -0.022860389202833176, 0.14284515380859375, 0.09419435262680054, 0.041180722415447235, 0.0212243665009737, -0.0676189437508583, 0.018265075981616974, -0.053700096905231476, -0.0836971327662468, 0.14663447439670563, 0.00186029018368572, 0.03171290084719658, -0.003186214715242386, 0.14684556424617767, -0.09317225962877274, -0.033220138400793076, 0.05596904456615448, 0.05948712304234505, 0.04335331544280052, -0.07390562444925308, -0.152581587433815, -0.0533277690410614, -0.08081718534231186, 0.10389713943004608, -0.04967472702264786, 0.09685096889734268, -0.08933912217617035, -0.035082437098026276, -0.12196994572877884, 0.08041104674339294, -0.026904776692390442, 0.03136610984802246, -0.0009270688751712441, 0.008031591773033142, 0.07468767464160919, 0.0704760029911995, 0.11450215429067612, -0.12257004529237747, 0.04376187175512314, 0.021429726853966713, -0.0824580118060112, 0.02259836345911026, -0.020731884986162186, -0.00771420868113637, 0.11575864255428314, 0.09258615225553513, -0.004897777922451496, 0.029732245951890945, -0.05712014064192772, 0.02169598452746868, 0.016682079061865807, -0.09218600392341614, -0.0088427709415555, -0.06419051438570023, -0.07411129027605057, 0.04029720276594162, 0.003153161844238639, -0.07001707702875137, -0.09379313141107559, 0.13890568912029266, 0.07047834247350693, 0.037587083876132965, -0.08969862014055252, -0.0097726508975029, -0.036579303443431854, -0.09497018903493881, 0.08422663062810898, -0.028183015063405037, 0.03990529850125313, 0.01711144484579563, -0.10332121700048447, 0.04265807569026947, -0.01917232759296894, 0.04331299662590027, 0.004721064120531082, 0.054220832884311676, 0.11199575662612915, 0.015166953206062317, 0.04816864803433418, -0.05245131999254227, -0.16541819274425507, -0.05633673071861267, 0.06750315427780151, -0.0145180094987154, 0.1103258728981018, 0.0565081425011158, -0.034806106239557266, 0.12625481188297272, -0.007782005239278078, -0.04523136466741562, -0.014840192161500454, -0.09900586307048798, -0.0713304877281189, 0.02694174461066723, -0.02693844400346279, -0.04467742145061493, -0.09266830235719681, -0.01594661921262741, -0.0202188603579998, -0.05858640372753143, -0.0501566082239151, -0.10574156045913696], -fptoui:[0.1006091833114624, -0.028634171932935715, 0.06856942921876907, 0.10615323483943939, 0.10484454780817032, 0.06377240270376205, -0.0029885717667639256, 0.029612362384796143, 0.05208577960729599, 0.12474320828914642, -0.062260765582323074, 0.00853378139436245, -0.017963936552405357, -0.09215372055768967, 0.11076737195253372, -0.05355206876993179, 0.06588149815797806, -0.1289457529783249, -0.01578308455646038, 0.10350554436445236, -0.0604836568236351, -0.030030805617570877, -0.03144591301679611, -0.1219329759478569, -0.026085548102855682, -0.02563375234603882, -0.11721968650817871, -0.15171296894550323, -0.012401798740029335, 0.017194120213389397, -0.07612604647874832, -0.029837550595402718, -0.08297425508499146, -0.007715567015111446, -0.0752868726849556, -0.0002604839392006397, 0.06673948466777802, 0.0897819921374321, -0.03910074383020401, -0.09511585533618927, -0.03818724676966667, -0.0610189363360405, 0.04482841119170189, -0.05807265639305115, 0.025319967418909073, 0.17699505388736725, 0.004680417478084564, 0.04813167825341225, 0.00046887132339179516, -0.08682140707969666, 0.12333981692790985, -0.11178813129663467, -0.09525052458047867, 0.03547346219420433, 0.06287571042776108, 0.05519036948680878, 0.09555304050445557, -0.0967155247926712, -0.04914509505033493, 0.021217165514826775, 0.05776400864124298, 0.011870680376887321, -0.08812267333269119, -0.0567338801920414, -0.021433481946587563, 0.030340244993567467, 0.03617146983742714, 0.12077193707227707, 0.09129415452480316, 0.02361973561346531, -0.12384309619665146, -0.06350686401128769, -0.015632761642336845, -0.085370272397995, 0.017457133159041405, -0.1141616627573967, -0.012707733549177647, 0.020230963826179504, 0.07496562600135803, 0.11721388250589371, 0.022867845371365547, 0.17531761527061462, 0.043657127767801285, 0.0909804105758667, 0.08099040389060974, -0.012362110428512096, 0.13160914182662964, -0.08651866018772125, -0.09474226832389832, 0.0788896456360817, -0.0047188554890453815, -0.05770738050341606, 0.1272304207086563, -0.04474066197872162, -0.12765350937843323, 0.017391927540302277, -0.008816879242658615, -0.01786431111395359, 0.034223079681396484, 0.06453415006399155, 0.010225040838122368, -0.0002480668481439352, 0.10167795419692993, 0.11102056503295898, -0.07552581280469894, 0.09417456388473511, 0.06789158284664154, 0.005760687869042158, -0.008148995228111744, 0.08248137682676315, -0.0074415323324501514, -0.03128553181886673, 0.10690829902887344, 0.0015962573233991861, 0.109894298017025, -0.047002822160720825, -0.1221092939376831, 0.06817404180765152, 0.12053314596414566, 0.0722198635339737, 0.01898563839495182, 0.09754424542188644, -0.11158830672502518, 0.013751864433288574, -0.05256211757659912, -0.06503788381814957, -0.006827516946941614, 0.12933030724525452, -0.013982340693473816, 0.0021973182447254658, -0.009852329269051552, -0.06924746185541153, -0.05479825288057327, 0.019356779754161835, -0.0069480035454034805, -0.018833374604582787, -0.05382092297077179, 0.05774329975247383, 0.08244273066520691, 0.10837867110967636, -0.07266778498888016, 0.10639829933643341, 0.0804690346121788, -0.012509427033364773, -0.03167739510536194, 0.0949079692363739, -0.09816957265138626, -0.04863622039556503, 0.022423427551984787, 0.1304996907711029, -0.06705912202596664, -0.042786601930856705, 0.056340254843235016, 0.005182127468287945, 0.12616372108459473, 0.14549830555915833, 0.01653112843632698, -0.029019927605986595, -0.009146217256784439, 0.01603994518518448, -0.07784505933523178, 0.00014896795619279146, 0.013704796321690083, -0.043801940977573395, 0.06700163334608078, -0.06518296152353287, 0.02064775861799717, 0.10510881245136261, 0.09880723804235458, 0.03970988839864731, -0.044732317328453064, -0.052258383482694626, 0.035235755145549774, -0.08169971406459808, -0.05509258806705475, 0.10920970886945724, -0.029259981587529182, 0.09539897739887238, -0.11602973937988281, 0.03288613632321358, 0.04310527816414833, 0.0156172513961792, 0.019665226340293884, -0.10759018361568451, -0.006186295300722122, -0.0045715803280472755, 0.025785263627767563, 0.03878071531653404, 0.06904396414756775, -0.11640406399965286, 0.06321340799331665, 0.11902209371328354, -0.05753348395228386, -0.10389188677072525, -0.09825515002012253, -0.09932040423154831, 0.051942840218544006, 0.03219492733478546, -0.03251376375555992, 0.1390601098537445, 0.05634798854589462, 0.013492072932422161, 0.11392854899168015, -0.0772211030125618, 0.045186303555965424, -0.053231965750455856, -0.10093255341053009, 0.06342357397079468, -0.05075552314519882, -0.09083550423383713, 0.02115606889128685, 0.0008764676749706268, 0.13813228905200958, 0.13128726184368134, 0.02229190617799759, 0.016674108803272247, 0.04275438189506531, -0.07178623229265213, -0.09564249962568283, 0.11694703996181488, 0.06233755499124527, 0.055386852473020554, 0.043687764555215836, 0.09359262138605118, -0.013881339691579342, -0.13907624781131744, 0.05756992846727371, -0.023508278653025627, -0.014565116725862026, -0.13405375182628632, 0.005336312111467123, 0.010129537433385849, 0.03502174839377403, -0.02028883621096611, -0.12108087539672852, -0.00499217864125967, 0.11181649565696716, 0.11194579303264618, -0.06777526438236237, 0.1011011004447937, -0.02125808596611023, 0.02107486128807068, 0.074679896235466, 0.054005783051252365, -0.13285961747169495, 0.026012850925326347, 0.06193803623318672, -0.10185495018959045, 0.026908546686172485, -0.09502065181732178, -0.003141124499961734, 0.016543671488761902, -0.07669605314731598, -0.05254172161221504, 0.023629477247595787, 0.032665710896253586, 0.10654586553573608, 0.05676544830203056, 0.0008835777407512069, 0.031820714473724365, 0.022690845653414726, 0.03399909660220146, 0.059517014771699905, 0.11705256253480911, -0.06799956411123276, -0.048567045480012894, 0.009163995273411274, 0.026469377800822258, -0.030934736132621765, 0.038891445845365524, -0.08542308211326599, 0.02027336321771145, -0.12054726481437683, 0.04887893795967102, 0.10279493778944016, 0.031762003898620605, -0.03598058596253395, -0.06539445370435715, -0.047082897275686264, -0.13370130956172943, -0.03794210031628609, -0.007356581743806601, -0.016996460035443306, 0.11038804799318314, -0.02202220819890499, 0.12191342562437057, -0.12059268355369568, -0.05684034153819084, -0.06853014975786209, 0.0315631739795208, 0.028478985652327538, 0.04901910945773125, -0.10266928374767303, 0.04771002009510994, -0.033059924840927124, -0.012894082814455032, 0.02497822791337967, -0.016184106469154358, -0.011554496362805367, -0.0011579147540032864], -fptrunc:[0.02602316439151764, -0.05644422397017479, -0.04283614084124565, -0.002214276697486639, 0.0783107653260231, 0.0014566906029358506, -0.09357049316167831, -0.07485184818506241, 0.0666208565235138, 0.017575368285179138, 0.10688601434230804, 0.04716028645634651, 0.12047071009874344, 0.007359139621257782, -0.057120952755212784, 0.09929531812667847, -0.0307144895195961, -0.09842994809150696, -0.014932869002223015, -0.05796141177415848, -0.11877617239952087, 0.01519687008112669, -0.11539097875356674, -0.02938871830701828, 0.05458100885152817, 0.03955337032675743, 0.01865973323583603, 0.08083590120077133, -0.09176351130008698, 0.048091284930706024, 0.08972088247537613, 0.07310392707586288, 0.010844539850950241, -0.03122827224433422, -0.01170844305306673, 0.05696989223361015, -0.006178077310323715, 0.002792373998090625, -0.11725509911775589, 0.11242856830358505, -0.09822535514831543, -0.1305709034204483, -0.051766637712717056, -0.042382191866636276, -0.029586423188447952, -0.0494866780936718, -0.0023900792002677917, -0.017037678509950638, -0.00349601823836565, 0.08102574199438095, 0.05147863179445267, 0.11303338408470154, 0.14049647748470306, 0.013090817257761955, 0.09019876271486282, 0.09300746023654938, 0.05352525785565376, -0.09112127870321274, -0.11727860569953918, 0.0628819614648819, 0.05086637660861015, -0.02557259239256382, 0.0907304435968399, -0.011785505339503288, 0.05378318950533867, 0.11086700856685638, -0.011535298079252243, -0.06732095032930374, -0.11115260422229767, 0.041988857090473175, -0.0599750354886055, -0.06981288641691208, 0.0720691978931427, 0.08294592052698135, 0.007085059769451618, 0.08681658655405045, -0.0036407895386219025, 0.035813264548778534, 0.005679022520780563, -0.1752701997756958, -0.058849919587373734, -0.07736137509346008, 0.092534638941288, -0.11823073029518127, -0.024827973917126656, 0.00983250793069601, 0.09109629690647125, -0.11057298630475998, -0.034852586686611176, 0.04917465150356293, 0.0022157037165015936, -0.01622782088816166, -0.06290622800588608, 0.03464368358254433, 0.037869296967983246, 0.014949463307857513, -0.045101769268512726, -0.019566407427191734, -0.047962792217731476, 0.00815684162080288, 0.0229298435151577, 0.12132542580366135, -0.07333378493785858, -0.15620581805706024, 0.08744151890277863, 0.02489466406404972, 0.118814617395401, 0.11405417323112488, 0.04928155243396759, -0.05607331544160843, -0.05539071187376976, -0.07027888298034668, -0.058443233370780945, -0.06873426586389542, 0.14288905262947083, -0.046350739896297455, -0.03933284804224968, -0.03938933461904526, 0.0715387687087059, 0.10307014733552933, -0.03753957897424698, 0.11316855996847153, -0.023502200841903687, 0.01084139198064804, -0.08591111749410629, -0.06201518326997757, 0.059008464217185974, -0.06264297664165497, -0.10495851933956146, -0.03918508440256119, -0.06591015309095383, 0.08066651970148087, -0.017931682989001274, -0.04869556427001953, 0.0775320902466774, 0.001479025580920279, -0.013803180307149887, 0.04824013262987137, 0.05822397395968437, 0.07208727300167084, -0.009517764672636986, 0.04843497276306152, -0.15517520904541016, -0.012579048983752728, 0.02680288255214691, 0.07976631820201874, -0.07710729539394379, -0.055843282490968704, 0.006345388013869524, 0.055289365351200104, 0.15591920912265778, -0.07788834720849991, 0.1746504008769989, -0.05856378376483917, 0.10012625902891159, 0.10577844083309174, -0.04756144806742668, -0.0655590295791626, -0.008698839694261551, -0.10205450654029846, 0.05751479044556618, 0.04308801889419556, 0.0516614094376564, -0.0038848144467920065, 0.05946717411279678, -0.07408172637224197, -0.001975933788344264, 0.08721975237131119, -0.11218775808811188, 0.03683596849441528, -0.0349702350795269, 0.0028916718438267708, 0.04321184381842613, -0.03315572440624237, -0.06879130005836487, -0.09352719783782959, 0.016067558899521828, 0.016019800677895546, -0.05940890312194824, -0.03688856214284897, 0.0028435466811060905, -0.00033506969339214265, 0.07150495052337646, -0.013674704357981682, -0.03445636108517647, 0.07672980427742004, -0.11297902464866638, -0.019194310531020164, -0.05393049493432045, 0.11199766397476196, 0.052157022058963776, 0.023079195991158485, 0.1041334792971611, -0.0693218931555748, -0.02515154518187046, 0.13726113736629486, -0.026218853890895844, -0.04296953231096268, -0.07394703477621078, 0.06902382522821426, 0.09619908034801483, 0.04510079696774483, 0.14982764422893524, -0.024528248235583305, 0.11363349109888077, -0.04866034537553787, -0.12373505532741547, 0.14561119675636292, -0.05608197674155235, -0.03237400949001312, 0.07451454550027847, -0.056123677641153336, 0.04792321100831032, 0.1260732263326645, 0.06705241650342941, -0.07125037908554077, 0.02156323567032814, -0.0953526422381401, 0.038905203342437744, 0.12115051597356796, 0.02789127640426159, -0.036016855388879776, 0.09100309759378433, -0.004097016528248787, 0.025372639298439026, -0.036684732884168625, -0.006509973201900721, -0.05062618851661682, 0.07550737261772156, 0.046458348631858826, -0.09659522771835327, -0.00753791956230998, 0.08903826773166656, 0.09510736167430878, -0.05025295540690422, 0.012959716841578484, 0.0525762103497982, -0.03594120219349861, -0.12710294127464294, 0.05072572082281113, -0.021056106314063072, -0.0008219901355914772, 0.13174401223659515, -0.0858485996723175, 0.12316149473190308, 0.09920130670070648, -0.15222828090190887, 0.026651255786418915, -0.1407729983329773, 0.04328452795743942, 0.11900649964809418, -0.0029434501193463802, 0.023983875289559364, 0.05906324461102486, 0.031949952244758606, -0.05997031182050705, -0.0033662444911897182, -0.07902435213327408, 3.6009514587931335e-06, 0.03147685527801514, 0.03604356199502945, -0.011920249089598656, -0.09719695150852203, 0.013208480551838875, 0.10299120843410492, -0.09210632741451263, 0.018720662221312523, 0.029711008071899414, -0.01610342226922512, 0.021153012290596962, -0.012397565878927708, 0.03153650090098381, 0.0662190169095993, 0.028340576216578484, 0.0029559661634266376, 0.036878470331430435, -0.07499270141124725, -0.013987850397825241, -0.1387949436903, -0.0823071077466011, 0.01873423345386982, -0.035452112555503845, -0.018730919808149338, 0.0500386543571949, 0.0651315450668335, 0.034996453672647476, 0.0035308124497532845, -0.11183945089578629, -0.007936980575323105, -0.0692138522863388, 0.03949294239282608, 0.02156587690114975, -0.04809504374861717, -0.025218110531568527, -0.013962899334728718, -0.030251646414399147, -0.02315056510269642, -0.06573380529880524, -0.06152554601430893, -0.09615858644247055], -freeze:[-0.07606380432844162, 0.10072717070579529, 0.02911011502146721, 0.05734024941921234, -0.032479170709848404, 0.048501282930374146, -0.1075676679611206, -0.07766390591859818, 0.051892559975385666, -0.12662342190742493, -0.11969125270843506, 0.11623372882604599, 0.06260529160499573, 0.03298226743936539, 0.04182812198996544, -0.12537781894207, -0.13511821627616882, 0.13585546612739563, -0.1361156702041626, -0.007277993950992823, -0.06884702295064926, 0.1522863805294037, -0.10388022661209106, 0.15329281985759735, -0.1057465523481369, -0.026205437257885933, -0.14095507562160492, -0.007003402337431908, -0.023633157834410667, -0.004156548995524645, -0.11657007783651352, -0.0610305592417717, -0.023187067359685898, -0.00234798202291131, 0.11266954988241196, -0.019012508913874626, 0.05926217511296272, -0.1261591613292694, 0.079738549888134, -0.10742713510990143, 0.1329360455274582, -0.015624332241714, 0.0860414206981659, 0.050599511712789536, 0.013813454657793045, -0.04675040766596794, -0.06717342138290405, -0.019836068153381348, -0.013358019292354584, -0.019056059420108795, -0.08038251847028732, -0.00588033115491271, -0.06310947239398956, 0.002162480726838112, 0.03227568790316582, 0.09310466051101685, 0.06098339334130287, -0.01578902266919613, -0.10085858404636383, -0.05421819910407066, -0.02570142038166523, -0.10016810894012451, -0.003623406868427992, 0.08951796591281891, -0.10712012648582458, -0.12428686767816544, -0.024927370250225067, 0.002902386710047722, 0.028098363429307938, 0.15121255815029144, -0.0020767583046108484, -0.11541028320789337, 0.09141343086957932, 0.058086901903152466, -0.010718547739088535, 0.09657660871744156, -0.017928943037986755, 0.012131399475038052, 0.09447029232978821, -0.039012111723423004, -0.024501606822013855, -0.04719208925962448, -0.055705465376377106, 0.054813846945762634, 0.07373077422380447, -0.1392255276441574, 0.027733437716960907, 0.1192593201994896, -0.05544188246130943, -0.08450480550527573, -0.008309529162943363, -0.05703999474644661, 0.10128367692232132, 0.03942593187093735, 0.05040331184864044, 0.02027002163231373, 0.06399276852607727, -0.03682838752865791, -0.05298907682299614, -0.013496020808815956, 0.14810968935489655, -0.027371004223823547, -0.05827892944216728, 0.09342778474092484, 0.12821191549301147, 0.00024939875584095716, 0.09936956316232681, 0.060761936008930206, 0.07121884077787399, 0.121885746717453, -0.012057093903422356, -0.12938280403614044, -0.09159886837005615, -0.11668213456869125, -0.10111647099256516, 0.17605231702327728, 0.09192545711994171, 0.09205087274312973, 0.08583658933639526, 0.05610612407326698, -0.03829077631235123, 0.006599689368158579, -0.027026819065213203, 0.07150442898273468, -0.13959379494190216, 0.041438646614551544, 0.13811098039150238, -0.08037581294775009, -0.09529440850019455, -0.11221274733543396, -0.014658386819064617, -0.02993239089846611, 0.0023504928685724735, -0.007895910181105137, -0.07857345044612885, -0.03060133196413517, -0.05942581966519356, 0.05216531455516815, 0.13128811120986938, -0.028109125792980194, 0.013722402974963188, -0.13592615723609924, -0.04201338812708855, -0.0035774747375398874, -0.050676025450229645, 0.10165737569332123, -0.05713316798210144, 0.0006694839685223997, -0.15306176245212555, -0.07742036134004593, -0.09209377318620682, -0.06614933162927628, -0.10263319313526154, -0.009163076989352703, -0.01116951648145914, -0.013900281861424446, -0.14685273170471191, -0.05584141984581947, -0.05806374549865723, 0.04001175984740257, 0.08334647119045258, -0.10116835683584213, 0.07441899925470352, -0.00985824503004551, -0.04999135807156563, -0.09607024490833282, -0.1396113783121109, -0.09766432642936707, -0.07784613966941833, -0.012418645434081554, -0.032120175659656525, 0.1037282645702362, -0.05262966454029083, -0.08319227397441864, 0.023447630926966667, 0.00906242523342371, -0.007611086126416922, 0.009606272913515568, 0.05885010212659836, -0.14408674836158752, 0.0310899019241333, -0.027323439717292786, 0.0020640443544834852, -0.08674904704093933, 0.09223806858062744, -0.04875409975647926, -0.08230530470609665, 0.08430519700050354, -0.015042115934193134, 0.02260659821331501, 0.007761694956570864, 0.13604216277599335, 0.04674316570162773, -0.05723486468195915, -0.0582737922668457, 0.08258523792028427, 0.04781497269868851, -0.0262606181204319, 0.09651303291320801, -0.08656449615955353, -0.027478964999318123, 0.12709128856658936, -0.06858624517917633, -0.04894433915615082, -0.14959454536437988, -0.13134866952896118, 0.008626607246696949, 0.08478724956512451, 0.011186703108251095, -0.010102958418428898, 0.1144067719578743, -0.024844983592629433, 0.14461497962474823, -0.0570218600332737, 0.008514674380421638, -0.14624325931072235, 0.016100935637950897, -0.049155060201883316, -0.036790087819099426, -0.008121424354612827, -0.12662982940673828, -0.07097730785608292, 0.04144608601927757, -0.018195228651165962, 0.054658789187669754, 0.07585188746452332, -0.06401801854372025, -0.11497823148965836, 0.07496464997529984, -0.08602119982242584, -0.08587246388196945, -0.13781079649925232, 0.01987459324300289, -0.009446905925869942, 0.060278549790382385, -0.057367321103811264, -0.09976208955049515, -0.06933160871267319, 0.07260309159755707, -0.11192858964204788, 0.03863575682044029, -0.17968425154685974, -0.1082734540104866, 0.05072217807173729, -0.06975670158863068, -0.06330443918704987, 0.04632870852947235, -0.091483935713768, -0.08645612746477127, 0.05912631005048752, 0.043705713003873825, -0.05901728942990303, 0.028653224930167198, -0.056307900696992874, 0.0016531894216313958, 0.00466713635250926, 0.0527651384472847, -0.0736379623413086, 0.07731592655181885, 0.1415024697780609, 0.03677288070321083, -0.056726351380348206, 0.011363123543560505, -0.08565900474786758, 0.031764913350343704, -0.024509364739060402, -0.10770095139741898, -0.04259348288178444, 0.08129136264324188, -0.0005607722559943795, 0.12761066854000092, 0.015219368040561676, 0.07775910198688507, 0.08939391374588013, -0.08520764857530594, -0.08635617792606354, -0.028090855106711388, -0.021067066118121147, 0.025044837966561317, 0.00999606866389513, -0.1396068036556244, -0.09074749052524567, -0.14548596739768982, 0.034471604973077774, 0.1436615288257599, 0.0417366586625576, 0.17438513040542603, 0.018319737166166306, 0.07756249606609344, -0.03156689926981926, -0.02050403691828251, 0.005996608175337315, -0.0717126727104187, 0.0977897197008133, -0.17810477316379547, -0.007684502750635147, 0.01467757299542427, -0.012221773155033588, -0.12585605680942535, -0.1443566381931305], -fsub:[0.03326621279120445, -0.063951775431633, -0.09765860438346863, 0.0956440344452858, -0.04497194290161133, 0.0022323632147163153, 0.09357581287622452, -0.04082198068499565, 0.11348807066679001, 0.03591525927186012, 0.08020578324794769, 0.05043947696685791, 0.06089656800031662, -0.10935035347938538, -0.15018142759799957, -0.08468601852655411, -0.016912361606955528, -0.12370175868272781, -0.01658918336033821, -0.05494733899831772, -0.11938969790935516, -0.023769350722432137, 0.01888827607035637, -0.010630376636981964, 0.08689167350530624, 0.023549379780888557, 0.02308747172355652, -0.024506021291017532, -0.09290250390768051, -0.037167951464653015, -0.03527940809726715, -0.013114451430737972, 0.015901032835245132, -0.10372810810804367, -0.06454510986804962, 0.052185676991939545, 0.0777139663696289, -0.016987139359116554, 0.023674150928854942, -0.04716295003890991, -0.07585711032152176, 0.07563934475183487, 0.053307995200157166, -0.06990766525268555, -0.06768403947353363, -0.03497178852558136, -0.0032977890223264694, -0.04552125930786133, 0.026184868067502975, 0.07831140607595444, 0.1131666898727417, 0.10267858952283859, 0.1170983836054802, -0.10026539862155914, -0.004101582802832127, -0.011873616836965084, 0.06510310620069504, 0.10149775445461273, 0.12416393309831619, 0.0581643171608448, 0.06002385541796684, 0.005946507677435875, 0.04883132129907608, -0.0022289238404482603, 0.0005956306122243404, 0.1255420446395874, -0.019601892679929733, -0.08463442325592041, -0.10093599557876587, 0.04112914577126503, 0.15212327241897583, -0.06761768460273743, -0.039297785609960556, 0.08131510764360428, -0.015687448903918266, -0.07169923931360245, -0.058684367686510086, 0.0064467983320355415, -0.04168102890253067, -0.15753041207790375, -0.04536193981766701, 0.12322590500116348, 0.11457009613513947, 0.06430850923061371, -0.014529700390994549, -0.019517604261636734, 0.09659472852945328, 0.05597338080406189, -0.05002478510141373, -0.06436610966920853, 0.056286659091711044, 0.06754275411367416, -0.02501361258327961, -0.002148516708984971, -0.03875445947051048, -0.09173250198364258, -0.014586194418370724, -0.024253126233816147, -0.07666077464818954, 0.03835483640432358, 0.04980558902025223, 0.12118037790060043, -0.054013486951589584, -0.02039085514843464, 0.07690346240997314, -0.07811269909143448, 0.01623884029686451, 0.11877881735563278, 0.0539248064160347, -0.03219598904252052, -0.04691870138049126, 0.04295848309993744, -0.05802338570356369, -0.06353244930505753, 0.11737346649169922, 0.1480400711297989, -0.10194479674100876, -0.03952683135867119, 0.06866707652807236, -0.04083798825740814, 0.10995859652757645, 0.11179792135953903, 0.004056571517139673, 0.01674208790063858, -0.07631427049636841, -0.06712455302476883, 0.05257632955908775, -0.03914922475814819, -0.05115991085767746, 0.07630681991577148, 0.029013102874159813, -0.0863809585571289, -0.00696592079475522, -0.14661599695682526, -0.1216932088136673, -0.0028624956030398607, -0.013141123577952385, 0.050766874104738235, 0.060819488018751144, -0.02688879519701004, 0.06087765097618103, 0.029179224744439125, 0.026784958317875862, -0.08566418290138245, 0.03268417343497276, 0.0001018300317809917, -0.0852465108036995, -0.05755890533328056, -0.14090374112129211, -0.0495285838842392, -0.004979406483471394, -0.08596701174974442, 0.0017332274001091719, -0.016494322568178177, 0.11542244255542755, 0.138547882437706, 0.0010008058743551373, -0.09683991968631744, 0.05772924795746803, 0.02736995741724968, 0.11206699162721634, 0.06460431963205338, 0.05309057980775833, -0.09623575955629349, 0.06921054422855377, -0.0821351408958435, -0.07452915608882904, 0.11094769090414047, 0.012497024610638618, -0.11825251579284668, 0.013582064770162106, -0.05979084596037865, 0.044295184314250946, -0.12231555581092834, -0.02211080491542816, 0.0028967775870114565, -0.058174848556518555, -0.18554022908210754, 0.024566972628235817, -0.03463184833526611, 0.07944583892822266, -0.10304281115531921, -0.032490529119968414, -0.02285022847354412, -0.03603444993495941, 0.07258648425340652, -0.11482812464237213, -0.019461380317807198, -0.09081480652093887, -0.051297228783369064, 0.02200508862733841, 0.03808726370334625, -0.03709469363093376, -0.08565592020750046, -0.10244417935609818, -0.015830565243959427, 0.024361632764339447, 0.06765527278184891, -0.047145161777734756, 0.1293327361345291, -0.03846721351146698, 0.043262775987386703, 0.1631580889225006, -0.03862103447318077, 0.12002138793468475, -0.03864426165819168, -0.12597432732582092, 0.15518054366111755, 0.06373869627714157, 0.08121044933795929, 0.08161527663469315, -0.05409211665391922, 0.0785602331161499, 0.052867352962493896, 0.10618956387042999, 0.12726424634456635, 0.016244061291217804, -0.12440522015094757, -0.1597493439912796, 0.19474098086357117, 0.0075316173024475574, -0.021049775183200836, 0.02750718593597412, 0.09692293405532837, 0.05287276580929756, -0.04796382412314415, -0.09194178134202957, 0.08604976534843445, 0.04355338215827942, 0.08974143117666245, 0.00011198848369531333, 0.01492193154990673, 0.06191622093319893, 0.08437292277812958, 0.015281804837286472, 0.015196300111711025, 0.025393279269337654, -0.016021709889173508, -0.14106085896492004, 0.013574184849858284, -0.0229828841984272, -0.0406646728515625, 0.13768410682678223, 0.10502278804779053, 0.04594225063920021, 0.02405824139714241, 0.05824591964483261, 0.040634188801050186, -0.14928866922855377, 0.02808748185634613, 0.11185521632432938, 0.01776217296719551, -0.07867582887411118, 0.017278647050261497, 0.027914414182305336, -0.0220797099173069, -0.0010364190675318241, -0.03873328119516373, 0.04770667850971222, 0.04404944181442261, -0.11697994917631149, 0.006820820737630129, -0.105585478246212, -0.0538434237241745, 0.06033868342638016, -0.108801931142807, 0.00865041371434927, 0.05478404089808464, -0.04879436269402504, -0.004489805083721876, 0.04340243339538574, -0.0735691636800766, 0.060037385672330856, 0.044242411851882935, 0.12404616922140121, 0.04185843467712402, -0.03597583249211311, -0.023051729425787926, -0.12994317710399628, -0.11802119016647339, 0.010505839250981808, 0.028197679668664932, 0.025633089244365692, 0.0539141446352005, 0.06142473593354225, 0.03802638500928879, -0.005799606442451477, -0.11644475162029266, -0.02667250856757164, -0.0828869566321373, 0.20798397064208984, 0.04280675947666168, -0.059790149331092834, -0.01858246512711048, -0.07853126525878906, -0.029781129211187363, 0.0010557309724390507, 0.12652409076690674, -0.0534147173166275, -0.13631971180438995], -function:[-0.06276050209999084, 0.11090399324893951, -0.08193765580654144, -0.04524574801325798, 0.03554167225956917, -0.10170596837997437, 0.01917211338877678, 0.08607713133096695, -0.1501849889755249, -0.029118027538061142, 0.030708609148859978, -0.07556240260601044, -0.031863532960414886, 0.08507226407527924, -0.0003810115740634501, -0.06487885117530823, -0.08581114560365677, 0.033051997423172, -0.09095276892185211, 0.10454506427049637, 0.06155463680624962, 0.019395392388105392, 0.09187951683998108, -0.09146732836961746, -0.11413359642028809, 0.0628417432308197, -0.06510062515735626, 0.06998398900032043, 0.049532465636730194, 0.010980947874486446, 0.04112143814563751, 0.07390312105417252, -0.011693309992551804, 0.056045494973659515, -0.10930141806602478, -0.015553733333945274, -0.07635869830846786, -0.06369686871767044, -0.07659046351909637, 0.08441593497991562, 0.11445402354001999, -0.05563579127192497, -0.07524117827415466, -0.07448738813400269, -0.01846376433968544, -0.0069600180722773075, -0.10919850319623947, -0.023117395117878914, -0.10979662835597992, -0.11194183677434921, -0.012803297489881516, 0.0707673728466034, -0.02280438505113125, 0.02594098448753357, -0.0683143213391304, -0.08460524678230286, 0.1083865761756897, 0.09250271320343018, 0.060861922800540924, -0.005662939976900816, -0.05364478752017021, 0.11251447349786758, -0.07073862850666046, 0.1125563532114029, -0.04961593449115753, 0.06962860375642776, 0.04319436475634575, -0.11700540781021118, 0.05042700469493866, 0.10335775464773178, -0.03473997116088867, 0.15363234281539917, 0.0447072759270668, 0.031202608719468117, -0.04330366849899292, 0.10816283524036407, 0.10535570234060287, 0.01106122974306345, -0.05924512445926666, 0.002436218550428748, -0.15446220338344574, -0.05316050723195076, -0.026395069435238838, 0.1066744476556778, -0.03889048099517822, 0.11110657453536987, -0.009841305203735828, -0.042464498430490494, 0.15032561123371124, -0.06973739713430405, -0.048964109271764755, -0.007192652206867933, 0.03193807601928711, -0.019957276061177254, 0.10453538596630096, -0.054135095328092575, -0.07502976059913635, -0.015667976811528206, 0.13539686799049377, -0.0664476752281189, -0.07431267946958542, -0.04683082178235054, 0.07199566811323166, 0.022416774183511734, -0.04791968688368797, 0.014980768784880638, 0.1267247051000595, 0.07062669843435287, -0.03659495338797569, 0.09872380644083023, -0.08051824569702148, 0.11523516476154327, 0.09573241323232651, 0.07353907823562622, -0.015323677100241184, -0.07747887074947357, -0.011642437428236008, 0.14766232669353485, -0.10070664435625076, 0.12187084555625916, 0.03972030431032181, 0.012673938646912575, -0.01522736344486475, -0.07966679334640503, 0.06465699523687363, -0.09349992126226425, -0.10031654685735703, -0.007768633775413036, -0.08629371970891953, -0.06886382400989532, 0.02010408416390419, -0.004662032704800367, 0.04473066329956055, -0.02322603017091751, 0.11455634981393814, 0.08674882352352142, -0.026422934606671333, -0.01974758878350258, -0.06529618799686432, -0.05584682896733284, -0.0974041000008583, -0.1375882923603058, 0.036852627992630005, -0.08997946232557297, -0.03450668603181839, -0.12364508956670761, 0.03797796368598938, -0.10778076946735382, -0.00553628196939826, -0.07043405622243881, -0.09636113792657852, 0.07991158217191696, 0.033746253699064255, 0.057774338871240616, 0.005039607640355825, 0.0566779226064682, 0.08502665162086487, 0.009480594657361507, -0.03077348880469799, -0.01054098829627037, -0.0039504095911979675, -0.07916480302810669, -0.09464000910520554, -0.008443531580269337, -0.08017406612634659, 0.10149512439966202, -0.10308428108692169, -0.08050653338432312, -0.09613896906375885, 0.06032945588231087, -0.04279598221182823, 0.05779626965522766, -0.08370739221572876, 0.030869372189044952, -0.02947230450809002, 0.0655987337231636, 0.0627487450838089, 0.0288764089345932, -0.03355377912521362, 0.0984812006354332, -0.08979482203722, -0.02144758403301239, 0.10155406594276428, 0.09592356532812119, 0.0011065745493397117, -0.09932504594326019, -0.06296920031309128, 0.10735975950956345, -0.02381167747080326, 0.07721428573131561, -0.06853431463241577, -0.031334344297647476, 0.02237762324512005, -0.07087451219558716, -0.08780919760465622, 0.01580587401986122, 0.040230825543403625, 0.056632231920957565, -0.11593342572450638, 0.14159706234931946, 0.0312829352915287, -0.11055958271026611, 0.01404594536870718, 0.08155536651611328, -0.0661400631070137, 0.09235682338476181, -0.019158324226737022, -0.04670725017786026, -0.026878567412495613, -0.018294114619493484, -0.02910379320383072, 0.0029996174853295088, -0.0910218358039856, -0.009678350761532784, -0.03509257361292839, 0.08531683683395386, 0.04529343172907829, 0.0729902982711792, 0.03271174058318138, -0.01473591011017561, -0.060091353952884674, -0.10819137096405029, 0.06464152783155441, -0.07787421345710754, -0.05375218763947487, -0.07671808451414108, -0.031640343368053436, 0.12735700607299805, 0.05816048011183739, -0.08061373233795166, -0.021585170179605484, 0.10819264501333237, -0.09745603054761887, -0.11220050603151321, -0.07440243661403656, -0.08513268083333969, -0.02282385155558586, 0.09315526485443115, 0.02184983156621456, 0.08318871259689331, 0.08899395167827606, 0.09086059778928757, 0.032817110419273376, -0.014221848919987679, 0.09702083468437195, 0.11139913648366928, 0.012823306024074554, 0.11219462752342224, 0.053577590733766556, -0.14553576707839966, 0.028449373319745064, 0.015182984992861748, 0.04040159657597542, 0.01655648835003376, -0.11228594928979874, -0.06223725900053978, -0.06583212316036224, -0.036984771490097046, 0.10120099037885666, 0.11272041499614716, -0.03622300922870636, -0.024984540417790413, 0.05236705392599106, -0.026484305039048195, -0.04997272044420242, 0.08199134469032288, 0.07205647975206375, -0.08165100961923599, 0.08659328520298004, -0.035774052143096924, -0.07434330880641937, -0.0054987045004963875, -0.019371790811419487, -0.16316764056682587, -0.035347264260053635, 0.07942735403776169, -0.05474384129047394, 0.06448261439800262, 0.10380854457616806, 0.06153426691889763, -0.07348049432039261, 0.053772978484630585, -0.08002443611621857, 0.09948272258043289, 0.05053969845175743, -0.06200850382447243, -0.08705897629261017, -0.07787499576807022, 0.08384013921022415, 0.006112685427069664, 0.04044520482420921, 0.0748198851943016, 0.11175976693630219, 0.05481811240315437, 0.049104850739240646, -0.09803105145692825, -0.03573077544569969, 0.011821305379271507, 0.13495992124080658, 0.04418353736400604], -getelementptr:[0.0377536341547966, -0.09127426147460938, 0.08013765513896942, 0.11278321593999863, -0.05845753103494644, 0.000893331307452172, -0.026029376313090324, -0.09234046190977097, 0.041043560951948166, 0.02645137906074524, 0.014426279813051224, 0.046055328100919724, -0.02701668068766594, 0.002597690327093005, 0.08722788095474243, 0.05166776850819588, -0.13032938539981842, -0.006548840552568436, -0.011102224700152874, -0.028983090072870255, -0.08530817925930023, -0.049115780740976334, -0.05282454937696457, 0.08461839705705643, -0.025874070823192596, 0.15605854988098145, 0.033990439027547836, 0.07493579387664795, 0.1215677559375763, -0.14239045977592468, -0.024004876613616943, -0.014885462820529938, 0.09027667343616486, 0.1269075572490692, 0.10255350172519684, -0.1714823842048645, 0.07095515727996826, 0.027549296617507935, 0.03707658872008324, -0.11845714598894119, -0.07667508721351624, -0.04663502052426338, 0.028149332851171494, -0.017824413254857063, -0.07959508895874023, 0.051655787974596024, -0.007395334541797638, 0.10755728930234909, 0.004392537288367748, 0.08642850071191788, -0.030771730467677116, -0.02812637947499752, 0.18016541004180908, 0.08037976920604706, 0.08666898310184479, 0.007590105757117271, 0.05776176229119301, -0.06429430842399597, -0.030162112787365913, -0.06932710856199265, 0.060255564749240875, 0.013568044640123844, 0.06294523179531097, 0.040911998599767685, 0.05194506794214249, -0.024746036157011986, -0.050583790987730026, -0.049821652472019196, -0.03636159747838974, 0.039996832609176636, -0.024570802226662636, -0.05692478269338608, -0.08643948286771774, -0.09301123023033142, 0.009446759708225727, -0.06586452573537827, -0.31296584010124207, 0.09389980137348175, 0.09008849412202835, -0.11075348407030106, 0.04957861080765724, 0.04950476810336113, -0.04568174108862877, 0.0029529437888413668, 0.07627865672111511, 0.00247423117980361, 0.11542948335409164, 0.06515398621559143, -0.04557253420352936, 0.1022944450378418, 0.1376263052225113, -0.169214129447937, 0.05931771546602249, -0.10229699313640594, -0.04273293539881706, -0.17399892210960388, -0.043371010571718216, -0.10833149403333664, -0.04203353449702263, 0.10967104136943817, 0.031058212742209435, -0.01265560183674097, 0.01340789906680584, -0.11559068411588669, 0.07577380537986755, 0.032555434852838516, -0.05881612002849579, -0.05863618478178978, 0.054893042892217636, 0.0188374612480402, -0.004034365992993116, -0.06591076403856277, -0.04605788365006447, 0.10614343732595444, 0.0024234435986727476, 0.068093441426754, -0.13141129910945892, -0.026613391935825348, 0.06838172674179077, -0.03790095075964928, 0.06542851775884628, 0.0939469188451767, 0.11650805175304413, 0.03857169300317764, -0.05225476622581482, -0.06715263426303864, 0.042430609464645386, 0.15082323551177979, 0.0018419278785586357, 0.039971012622117996, -0.03471952676773071, 0.09881139546632767, 0.1114700436592102, 0.14014242589473724, 0.003815521253272891, -0.18039727210998535, 0.003195241093635559, -0.043446242809295654, 0.06815943866968155, 0.10085007548332214, -0.004866931587457657, 0.057503439486026764, -0.02969614788889885, 0.025062082335352898, 0.08942387998104095, 0.05445642024278641, -0.08375180512666702, -0.053162217140197754, -0.12694242596626282, -0.08963294327259064, 0.03169272094964981, -0.08518753945827484, -0.0077561247162520885, 0.08862092345952988, 0.10115315020084381, 0.009699646383523941, -0.02017265185713768, -0.10721644759178162, -0.10162324458360672, -0.05852663889527321, -0.014377743005752563, 0.03269823640584946, 0.006460426840931177, 0.11422357708215714, 0.06292106211185455, -0.07758323103189468, 0.006134243216365576, 0.11162393540143967, 0.07252786308526993, 0.010159601457417011, 0.031236736103892326, -0.05051982402801514, 0.05574871227145195, 0.011810114607214928, 0.02159120701253414, 0.11927102506160736, 0.05098974332213402, -0.009855917654931545, 0.07286148518323898, 0.02297240123152733, 0.23328523337841034, 0.10091035813093185, -0.0022294134832918644, -0.033860765397548676, 8.202561730286106e-05, -0.015041536651551723, -0.015221856534481049, -0.025452077388763428, 0.07150708884000778, -0.03289027139544487, 0.06992105394601822, 0.04209238663315773, -0.07477031648159027, 0.03832688182592392, -0.02388959936797619, -0.02179289236664772, -0.024225989356637, -0.07321961224079132, 9.348193270852789e-05, 0.0025246343575417995, 0.014107982628047466, -0.03960711881518364, 0.052437275648117065, -0.03417133167386055, -0.009719972498714924, -0.034046705812215805, 0.0328945629298687, 0.1270109862089157, -0.14221899211406708, 0.06144348159432411, 0.09054481983184814, -0.12937356531620026, 0.053234100341796875, 0.020413655787706375, 0.15574954450130463, -0.07247142493724823, 0.0055145747028291225, -0.03997127711772919, -0.134919211268425, 0.04267425835132599, -0.10598329454660416, 0.006970744580030441, -0.003951831255108118, 0.09846021980047226, 0.06531181931495667, -0.06473395228385925, 0.013975117355585098, 0.06487109512090683, -0.007773076184093952, 0.02161458693444729, -0.007841473445296288, 0.007773588877171278, 0.036668743938207626, -0.02000945806503296, 0.06911496818065643, -0.03638722747564316, 0.13879668712615967, -0.08314010500907898, -0.07489258795976639, 0.013494863174855709, -0.021277334541082382, -0.011990943923592567, 0.07312972843647003, -0.00288766878657043, 0.0019274321384727955, 0.02257256954908371, 0.012900599278509617, -0.02689294144511223, -0.07679127156734467, 0.06298838555812836, -0.0045281024649739265, -0.016394594684243202, -0.12120526283979416, -0.05378962680697441, -0.002778219059109688, 0.01700572855770588, 0.011579710058867931, 0.025357389822602272, -0.034777380526065826, 0.021881164982914925, -0.17256776988506317, 0.12110372632741928, -0.15920305252075195, 0.08951111882925034, 0.12330915033817291, -0.04461442306637764, 0.012853393331170082, 0.03775357827544212, -0.05319904908537865, 0.2137216329574585, 0.006087684538215399, -0.13856221735477448, 0.05935710296034813, -0.008592353202402592, 0.11291038244962692, 0.04259100928902626, 0.10067038983106613, -0.02852824702858925, -0.05422370880842209, -0.07515177130699158, -0.004487733822315931, 0.06533104926347733, 0.007520689629018307, 0.052654240280389786, -0.03536272048950195, 0.04057952016592026, 0.0548439659178257, -0.04544052854180336, 0.007536856457591057, -0.038539059460163116, 0.09506171196699142, -0.0045004235580563545, -0.05480954423546791, 0.03370513394474983, -0.024117374792695045, -0.011570201255381107, 0.12983573973178864, -0.06759814918041229, -0.058679502457380295, -0.09768862277269363], -icmp:[0.03232641890645027, -0.09330816566944122, 0.07701151818037033, 0.10614379495382309, 0.08392532169818878, 0.008128780871629715, -0.018279243260622025, -0.09708976000547409, 0.055545415729284286, 0.01937789097428322, -0.007901034317910671, 0.054997753351926804, 0.023305855691432953, -0.10223846137523651, 0.17173632979393005, -0.03022705391049385, -0.027924243360757828, -0.1131916269659996, -0.016887301579117775, -0.023290270939469337, 0.07150902599096298, -0.04460075870156288, -0.06041140481829643, 0.14665524661540985, -0.03418391942977905, -0.241426482796669, -0.001799742691218853, 0.07934734970331192, -0.09694618731737137, 0.003031905274838209, -0.035690467804670334, -0.011256981641054153, 0.08526251465082169, -0.041579630225896835, 0.1015385091304779, 0.11678280681371689, 0.07473285496234894, -0.002857396611943841, 0.06564830988645554, -0.12055391818284988, -0.07810620218515396, -0.06611190736293793, 0.00873428862541914, -0.04574035853147507, -0.06883115321397781, 0.06576669216156006, 0.0012857085093855858, -0.15135085582733154, -0.0029742931947112083, 0.0818638727068901, -0.0414702408015728, -0.013142966665327549, 0.011018027551472187, -0.06106084957718849, 0.04470311477780342, 0.0020999989937990904, 0.05905095115303993, -0.09068751335144043, 0.04409458860754967, 0.009975406341254711, 0.05645978823304176, 0.012974298559129238, 0.0840984582901001, 0.04406915605068207, 0.02329186163842678, -0.026126572862267494, -0.033950820565223694, -0.0023643316235393286, -0.03238724544644356, 0.043923269957304, -0.09084729105234146, -0.06254468113183975, -0.014398855157196522, -0.013037499040365219, -0.15949323773384094, -0.05769368261098862, 0.15226155519485474, 0.10115010291337967, 0.041498102247714996, -0.09051606804132462, 0.05213945731520653, 0.03945620730519295, 0.056754473596811295, -0.0003478147555142641, 0.07980404049158096, 0.018053021281957626, 0.09722407162189484, 0.05714862421154976, -0.0546252615749836, 0.02705325558781624, -0.12766286730766296, -0.2168225347995758, -0.04564855620265007, -0.10474450886249542, 0.007447960786521435, 0.2186037302017212, -0.05310148373246193, -0.2256518006324768, -0.045680854469537735, 0.10546324402093887, 0.027792183682322502, 0.006527367047965527, -0.11077344417572021, -0.029579052701592445, 0.08099648356437683, 0.06673665344715118, 0.07724553346633911, -0.03636147454380989, 0.06737343221902847, 0.10386215895414352, -0.02516506053507328, -0.06793608516454697, -0.06444493681192398, -0.001245780847966671, 0.0004336244601290673, 0.010029865428805351, -0.1128920465707779, -0.024967726320028305, 0.09359454363584518, -0.026737157255411148, -0.03528546169400215, 0.11728488653898239, -0.16733059287071228, 0.008029513992369175, -0.0643223226070404, -0.06867630779743195, 0.005218494683504105, 0.026146497577428818, -0.03563389182090759, 0.07072234898805618, 0.11698548495769501, -0.15914011001586914, -0.16281870007514954, 0.06376677006483078, -0.06629212200641632, -0.0883205235004425, 0.023142985999584198, 0.15884114801883698, 0.07176675647497177, 0.08710292726755142, -0.002313256962224841, 0.10834483802318573, 0.021999541670084, 0.02515728771686554, -0.146880641579628, -0.003866711398586631, -0.08430404961109161, -0.06107298284769058, -0.103744275867939, -0.01799343153834343, 0.025677654892206192, -0.06780678033828735, -0.010617119260132313, 0.17722684144973755, 0.09281417727470398, 0.13717563450336456, -0.021745124831795692, 0.035819243639707565, -0.012268053367733955, -0.044287096709012985, 0.012049198150634766, -0.0080065056681633, -0.005796514451503754, -0.1742406189441681, 0.04282137751579285, -0.07789983600378036, 0.009266414679586887, 0.11117959767580032, 0.0705638900399208, -0.0732041448354721, 0.10107149928808212, -0.0522213913500309, 0.07309167832136154, -0.07665934413671494, -0.07105149328708649, 0.002118427073583007, -0.0012851905776187778, 0.08491191267967224, 0.0753084048628807, 0.02972787618637085, -0.1629105806350708, -0.017575109377503395, 0.004167512524873018, -0.033056098967790604, 0.04830906540155411, -0.03189892694354057, -0.09662463515996933, -0.015482238493859768, 0.052707042545080185, -0.029413381591439247, 0.12436513602733612, 0.04390669986605644, -0.06613433361053467, -0.024312013760209084, -0.10611136257648468, -0.015828393399715424, 0.016057617962360382, -0.022686054930090904, -0.02476179040968418, 0.002875987906008959, 0.0775940865278244, 0.006155139300972223, -0.14547884464263916, -0.05514894425868988, -0.06301238387823105, -0.01229278277605772, 0.015336445532739162, 0.11945077776908875, 0.11045227199792862, -0.1128968894481659, 0.10377441346645355, -0.09898245334625244, 0.052487343549728394, -0.08060222864151001, 0.04718723148107529, -0.08026270568370819, 0.1614772230386734, 0.0538715235888958, -0.03960204869508743, -0.04268500953912735, -0.026442300528287888, -0.042650677263736725, -0.01724204607307911, 0.09942300617694855, -0.03274674341082573, 0.05995529145002365, -0.015073170885443687, 0.0672757551074028, 0.03961213678121567, 0.01875898241996765, -0.05704063922166824, 0.0031035805586725473, 0.03230452910065651, -0.024974262341856956, 0.01389101892709732, -0.09041392058134079, 0.05884406715631485, -0.08132230490446091, -0.06759950518608093, 0.10212357342243195, -0.006780275143682957, -0.040757548063993454, -0.07668023556470871, 0.008147056214511395, 0.009886598214507103, 0.024025117978453636, 0.10547492653131485, -0.045119911432266235, -0.08181754499673843, 0.03247517719864845, -0.014409107156097889, -0.0049142418429255486, -0.07273250073194504, -0.05483204871416092, -0.0016831522807478905, -0.09005564451217651, 0.050312258303165436, -0.04433586448431015, -0.03014618158340454, 0.026707753539085388, -0.15843676030635834, -0.004108610097318888, -0.07662849873304367, -0.07401122897863388, 0.03122817538678646, -0.028909320011734962, 0.016967765986919403, -0.05673099309206009, -0.02254706434905529, -0.15076498687267303, 0.05509340763092041, -0.10951796174049377, 0.05614227429032326, -0.013228625990450382, 0.10164228826761246, 0.03318772092461586, 0.04125136137008667, -0.02922651171684265, -0.051388368010520935, -0.07263408601284027, -0.07730354368686676, -0.03584224730730057, -0.02337978594005108, 0.05596050247550011, -0.04452529177069664, 0.04191237688064575, 0.05821099132299423, 0.017398828640580177, 0.007636622991412878, 0.07194880396127701, -0.20782312750816345, -0.0021458780393004417, -0.06533095240592957, 0.06674844026565552, -0.04255589470267296, -0.02055584453046322, 0.025102343410253525, -0.18700900673866272, -0.10350483655929565, -0.11921662092208862], -insertelement:[0.03437678888440132, -0.08735759556293488, -0.030070457607507706, 0.12358474731445312, 0.05860404297709465, 0.006586065050214529, 0.07600478082895279, -0.07604319602251053, 0.03380846977233887, -0.01316745113581419, 0.090994693338871, 0.08069601655006409, 0.11189320683479309, 0.03957482799887657, -0.01425049640238285, 0.09865571558475494, -0.03211406618356705, -0.1276727318763733, -0.03166578710079193, -0.055342383682727814, -0.09911241382360458, 0.09589158743619919, -0.05417686328291893, -0.026835666969418526, -0.043676190078258514, 0.028008364140987396, 0.022402089089155197, 0.09575654566287994, -0.14192382991313934, -0.06512531638145447, -0.04867143556475639, 0.04358906298875809, 0.057875558733940125, -0.10917978733778, 0.0921219140291214, 0.0009954387787729502, -0.11102347075939178, -0.015118870884180069, 0.02731168083846569, -0.11511722207069397, -0.07557301968336105, -0.1383751779794693, 0.08243627846240997, -0.09638530015945435, 0.08997708559036255, -0.17240534722805023, 0.009148860350251198, 0.05222931504249573, 0.003020749893039465, 0.03969520702958107, 0.15141625702381134, 0.10179100185632706, -0.06756304204463959, -0.038969483226537704, 0.10825344175100327, 0.04784625768661499, -0.0019311425276100636, -0.1433214396238327, 0.1196139007806778, -0.052555911242961884, 0.05911660194396973, -0.013640625402331352, 0.08462463319301605, -0.03561154380440712, 0.054002370685338974, -0.025146087631583214, -0.14789830148220062, -0.06311119347810745, -0.08654414117336273, 0.037114664912223816, 0.022647419944405556, -0.08233599364757538, -0.1008993610739708, 0.02217339351773262, -0.0025434286799281836, 0.11544746905565262, -0.029256349429488182, 0.102378711104393, 0.0890539214015007, -0.10786454379558563, -0.024710623547434807, 0.011787242256104946, 0.044687945395708084, -0.07619999349117279, 0.07106322795152664, 0.004977065604180098, 0.08994659036397934, 0.08461148291826248, -0.04741105064749718, 0.10579197853803635, -0.08367273211479187, 0.05409592390060425, -0.0659594014286995, 0.04530724883079529, -0.04568954184651375, -0.07536531984806061, 0.061030127108097076, 0.030783820897340775, -0.0845370963215828, 0.14416681230068207, 0.06566976010799408, 0.1194024384021759, 0.011038105934858322, -0.05082114040851593, 0.07065312564373016, 0.12416986376047134, -0.13131235539913177, -0.035155754536390305, 0.05706140771508217, -0.11795997619628906, -0.08024853467941284, -0.12620626389980316, -0.07773963361978531, -0.05934494733810425, -0.02434120699763298, 0.06289231777191162, -0.07342272251844406, -0.036522507667541504, 0.06717549264431, -0.010446793399751186, 0.05529315769672394, 0.09302281588315964, 0.14545635879039764, 0.11011191457509995, -0.12363792210817337, -0.06571657210588455, 0.04981746897101402, -0.13586857914924622, -0.06251116842031479, 0.04598037153482437, 0.02941800095140934, 0.05646655708551407, 0.0007115247426554561, 0.026258831843733788, -0.07423359155654907, 0.07485007494688034, 0.003643614938482642, 0.09316117316484451, 0.06094401702284813, 0.1253705769777298, -0.014208951964974403, -0.0845811739563942, 0.0077526685781776905, 0.040921781212091446, -0.012449188157916069, 0.039152614772319794, -0.080141581594944, -0.06249794736504555, -0.1668277531862259, -0.045567404478788376, 0.03716181591153145, -0.08406088501214981, 0.062065206468105316, -0.03623899817466736, 0.09037616848945618, 0.10502537339925766, 0.01565549522638321, -0.05024365708231926, 0.143807515501976, -0.09653346985578537, 0.00809576828032732, -0.03225656598806381, 0.06288322806358337, -0.043199505656957626, 0.06757424026727676, -0.003695041174069047, 0.05496176704764366, 0.1094183474779129, -0.04156683012843132, -0.027163855731487274, 0.16374388337135315, 0.0964275598526001, 0.008591629564762115, -0.10509184002876282, 0.013143332675099373, -0.0922461673617363, -0.0009162097703665495, 0.14864782989025116, 0.009267313405871391, -0.12277089804410934, -0.06068863347172737, 0.07970744371414185, -3.7998874176992103e-05, -0.06146204471588135, 0.10965092480182648, 0.05524024739861488, -0.10567950457334518, -0.011996427550911903, -0.021173885092139244, -0.08954256772994995, 0.05594465881586075, 0.013211525976657867, -0.07316438108682632, 0.015466774813830853, -0.0607241690158844, 0.06728073954582214, 0.015738464891910553, -0.026584142819046974, -0.05500385910272598, 0.004553451668471098, -0.07160433381795883, 0.04514984041452408, -0.021140415221452713, -0.030278405174613, -0.032961685210466385, -0.13043081760406494, -0.046109434217214584, 0.15335054695606232, 0.07017906755208969, 0.06135766580700874, 0.07832853496074677, 0.015799688175320625, 0.1053018793463707, -0.07610324025154114, 0.04493185132741928, -0.07266923040151596, 0.007205087225884199, -0.16634659469127655, -0.03385912626981735, 0.042814794927835464, -0.03550248593091965, -0.03444437310099602, -0.07793109863996506, 0.0956912413239479, 0.05627886578440666, -0.046866290271282196, -0.06385496258735657, 0.08068660646677017, 0.11444875597953796, 0.031864065676927567, -0.03871958330273628, -0.00925739761441946, 0.04840826615691185, 0.08682040870189667, 0.015856925398111343, -0.08487454801797867, -0.07502935081720352, 0.05683671310544014, -0.010562282055616379, 0.027966544032096863, -0.010886161588132381, -0.09970734268426895, 0.107381671667099, 0.047216251492500305, 0.0388316847383976, 0.01665559411048889, 0.004854919388890266, 0.027322543784976006, -0.1475716531276703, 0.08154847472906113, 0.08326353877782822, 0.05643944814801216, 0.032737232744693756, 0.04024448245763779, -0.001770106260664761, -0.023228144273161888, 0.00991748459637165, 0.135588601231575, 0.07948502153158188, 0.07259774953126907, 0.011440640315413475, -0.07595232874155045, -0.024272210896015167, -0.08403580635786057, 0.05887112021446228, 0.06468425691127777, 0.012329828925430775, 0.06343576312065125, -0.05484665185213089, -0.039517179131507874, -0.03302875533699989, -0.017858771607279778, 0.04855063185095787, 0.02240326814353466, 0.08740650117397308, 0.016904646530747414, -0.12201712280511856, 0.0018206919776275754, -0.019667591899633408, -0.08047526329755783, 0.09063960611820221, 0.0715298280119896, -0.04179179295897484, 0.05181495472788811, -0.034789975732564926, 0.050284530967473984, 0.022896312177181244, 0.007409923244267702, -0.005023396108299494, -0.026764007285237312, -0.0023084499407559633, 0.02623327262699604, -0.06861826777458191, 0.016080116853117943, -0.08609234541654587, -0.014942314475774765, 0.06299962848424911, 0.06172122433781624, -0.11215665191411972, -0.1212153285741806], -insertvalue:[-0.12716224789619446, 0.018412407487630844, -0.09233687072992325, -0.08279788494110107, -0.04455709457397461, -0.13566838204860687, 0.028115900233387947, -0.03956102579832077, 0.031152695417404175, -0.1407143473625183, 0.1323695331811905, -0.08337429910898209, -0.10359170287847519, 0.09259346127510071, -0.03788598254323006, 0.029531991109251976, 0.03479979932308197, -0.0735667273402214, -0.08182062953710556, -0.13636064529418945, -0.12600883841514587, 0.05913456901907921, 0.02675449289381504, 0.004767635837197304, -0.07905791699886322, -0.09725219011306763, 0.062358517199754715, -0.008480608463287354, 0.07800720632076263, -0.06184609234333038, -0.05919237434864044, -0.1068478599190712, -0.08801877498626709, -0.04690979793667793, 0.06873857229948044, -0.006036626175045967, -0.006610584910959005, -0.13790561258792877, -0.012558364309370518, 0.10344958305358887, -0.023406416177749634, 0.0024525225162506104, 0.10585986077785492, 0.008231072686612606, -0.0344398133456707, -0.01030750572681427, 0.04958947375416756, -0.01831885240972042, 0.02659708820283413, 0.07250574231147766, 0.1535138487815857, 0.12704195082187653, -0.05367431044578552, 0.0030113609973341227, -0.08316708356142044, -0.1076759323477745, 0.017546668648719788, 0.11067819595336914, -0.12313470989465714, -0.086782306432724, -0.1431293785572052, -0.07142110913991928, -0.033928994089365005, -0.06774173676967621, -0.048260319977998734, 0.12766054272651672, -0.06815821677446365, 0.011051859706640244, 0.020154790952801704, -0.13392725586891174, 0.05102087929844856, -0.02348243072628975, -0.06398098170757294, -0.0882917121052742, 0.0060013411566615105, -0.1199815422296524, -0.029816696420311928, -0.125350221991539, -0.013040159828960896, -0.20535175502300262, -0.1067316085100174, 0.024725770577788353, -0.04267394170165062, 0.12338977307081223, 0.03476427495479584, -0.015165749937295914, -0.008759149350225925, 0.020521746948361397, -0.04884759709239006, 0.07566717267036438, 0.009796874597668648, 0.09382539242506027, -0.13513882458209991, 0.015710368752479553, -0.029668955132365227, -0.08666019886732101, 2.9504855774575844e-05, -0.014668164774775505, 0.05400661751627922, 0.04338241368532181, -0.026840128004550934, 0.08724571764469147, -0.07846090942621231, -0.1253354251384735, 0.08534136414527893, -0.07187461853027344, -0.0763314738869667, -0.10228575766086578, -0.06824386119842529, 0.016499623656272888, 0.13824562728405, 0.061558742076158524, 0.11594090610742569, -0.08789058774709702, 0.015588617883622646, -0.06211891397833824, -0.11401757597923279, -0.04997599497437477, 0.016075557097792625, -0.07499400526285172, -0.04746321216225624, -0.00567253865301609, -0.027612974867224693, 0.030291279777884483, 0.10769519209861755, 0.13488656282424927, -0.03359290957450867, 0.12283888459205627, 0.10440933704376221, -0.08925866335630417, -0.026412762701511383, -0.0968681126832962, -0.028736237436532974, 0.026787320151925087, -0.07407271862030029, 0.022304221987724304, -0.00418810173869133, 0.022197024896740913, -0.05324111878871918, -0.09631876647472382, -0.055789440870285034, -0.02041257917881012, 0.023757902905344963, -0.11609860509634018, 0.006749348249286413, 0.05248963460326195, -0.05494885891675949, 0.12346667051315308, 0.0030597050208598375, -0.05081278830766678, 0.14650389552116394, -0.09172224998474121, 0.0010485360398888588, -0.06358684599399567, -0.11317373812198639, 0.11544325947761536, 0.032343048602342606, 0.015089284628629684, 0.13898377120494843, 0.05654345825314522, 0.008997897617518902, -0.058578670024871826, 0.03656647726893425, -0.007878581061959267, 0.08512356877326965, 0.00047968345461413264, -0.08609968423843384, 0.03048468753695488, -0.03791322186589241, -0.15904735028743744, 0.10831223428249359, -0.0994335189461708, 0.03424018248915672, -0.1324673891067505, -0.041195522993803024, -0.09070511907339096, -0.10725905001163483, -0.1186063140630722, 0.028917385265231133, -0.04017890244722366, 0.02197483740746975, 0.08042971789836884, -0.010419766418635845, -0.027362797409296036, -0.06431259959936142, 0.10382875055074692, -0.03514016419649124, 0.06705678254365921, -0.07456394284963608, 0.010945971123874187, -0.11972586065530777, 0.035968322306871414, -0.05113530904054642, -0.018861165270209312, 0.10237443447113037, 0.0558692142367363, 0.05532737448811531, 0.10778393596410751, -0.023786423727869987, -0.031646084040403366, -0.06624334305524826, -0.1375328153371811, 0.020068608224391937, 0.00189390464220196, 0.13411229848861694, 0.11571068316698074, -0.11966332793235779, 0.009081468917429447, 0.018716534599661827, -0.00967605970799923, -0.0533161424100399, 0.004360801540315151, 0.082145094871521, -0.0531926266849041, 0.07637041062116623, 0.038237474858760834, 0.024404797703027725, -0.04939136281609535, 0.09322752058506012, -0.03314581140875816, -0.004055437166243792, 0.09819366782903671, 0.005966363940387964, -0.002997917588800192, 0.08594153821468353, -0.06263242661952972, -0.030087826773524284, -0.07527359575033188, 0.05980678275227547, 0.09100759774446487, 0.06274760514497757, 0.08533503860235214, 0.03669457137584686, 0.038861747831106186, 0.07989564538002014, -0.07276763021945953, -0.07006821036338806, 0.05271118879318237, 0.08318202197551727, -0.09445381164550781, 0.029976865276694298, 0.09688027203083038, -0.08536787331104279, -0.041102491319179535, -0.06588966399431229, 0.008636354468762875, 0.0796613022685051, 0.04162992909550667, 0.017926177009940147, 0.01232143770903349, -0.11509232968091965, -0.0135385412722826, -0.10127446055412292, 0.062348149716854095, -0.02262904681265354, -0.015028207562863827, 0.024484645575284958, -0.08541056513786316, 0.11978550255298615, 0.0816802978515625, -0.06134767830371857, -0.012769666500389576, 0.05925387889146805, 0.11372419446706772, -0.08797571808099747, -0.06972410529851913, -0.10218362510204315, 0.1247841864824295, 0.10684221982955933, 0.03467843681573868, 0.04999363794922829, -0.018442420288920403, 0.12860363721847534, 0.058669015765190125, 0.14315569400787354, 0.11743132770061493, -0.005205659661442041, -0.13747850060462952, 0.0226182471960783, -0.11197631806135178, -0.007790508680045605, 0.004543091636151075, 0.012660360895097256, -0.1263391077518463, 0.08190837502479553, -0.0852997675538063, -0.014998155646026134, 0.08855919539928436, -0.04738043621182442, -0.012245968915522099, 0.012495574541389942, 0.09341631084680557, 0.04185626655817032, -0.028053749352693558, 0.08653358370065689, 0.12704956531524658, 0.011748822405934334, -0.017280442640185356, 0.04477112367749214, 0.1189659982919693], -integerTy:[-0.09846173226833344, -0.0016397139988839626, -0.03800869360566139, -0.06410670280456543, -0.08812388777732849, 0.1397259384393692, 0.029856940731406212, 0.15111006796360016, -0.12286173552274704, 0.10335205495357513, -0.14478784799575806, -0.004840681329369545, -0.018866518512368202, -0.08971048891544342, 0.00794987753033638, -0.06988401710987091, 0.10494700074195862, 0.11557766050100327, 0.07768148928880692, 0.07094401866197586, 0.14723283052444458, 0.039376791566610336, -0.1387547254562378, 0.06871312111616135, 0.040743909776210785, 0.0022900940384715796, 0.0364241749048233, -0.0757351666688919, -0.07977636158466339, 0.015982721000909805, -0.126926451921463, 0.07071010768413544, -0.12053797394037247, -0.011151913553476334, -0.011102073825895786, 0.02803214080631733, -0.07870078831911087, 0.12851455807685852, -0.05057965964078903, -0.00825587473809719, 0.11048711836338043, 0.06531558185815811, -0.06658381223678589, 0.1549806296825409, 0.004523435607552528, 0.01021717581897974, 0.0959160327911377, 0.0008968092733994126, -0.11145661026239395, -0.12133177369832993, -0.06379883736371994, -0.06171661987900734, 0.013587437570095062, 0.007858513854444027, 0.11735796183347702, 0.15885649621486664, 0.12010595947504044, 0.08520196378231049, 0.104681096971035, 0.102546326816082, -0.08242131769657135, -0.11998952925205231, -0.08141667395830154, -0.10775281488895416, -0.07975155115127563, 0.08048398047685623, 0.03861843794584274, 0.14570526778697968, 0.05497792363166809, -0.11046629399061203, 0.031874194741249084, -0.10830597579479218, 0.05095309019088745, -0.04975684732198715, -0.030993696302175522, 0.08538869023323059, 0.0015372851630672812, -0.0007546482956968248, -0.04131929576396942, 0.04083654284477234, 0.10176554322242737, 0.038567911833524704, 0.0652071088552475, 0.014188582077622414, 0.043472517281770706, -0.049624837934970856, -0.06161300837993622, -0.07652084529399872, 0.022477904334664345, 0.006285639014095068, -0.05291558802127838, -0.015621330589056015, 0.06026828661561012, 0.019176330417394638, -0.10029182583093643, 0.04473250359296799, 0.11024294048547745, 0.006116329692304134, -0.09432446956634521, -0.022049572318792343, -0.10604675859212875, -0.0927087739109993, 0.0654100552201271, 0.06477955728769302, -0.1002160906791687, -0.003662636736407876, 0.009102092124521732, 0.009958440437912941, -0.13409021496772766, 0.09152887761592865, -0.06370841711759567, 0.03382361680269241, -0.0162681695073843, 0.07101476192474365, 0.05620064213871956, 0.012905798852443695, 0.14814427495002747, 0.1250046193599701, 0.0961494967341423, 0.030591227114200592, 0.029393984004855156, -0.04722731187939644, 0.046379636973142624, 0.12101597338914871, 0.08433037996292114, 0.0480048805475235, 0.014645572751760483, -0.053101275116205215, 0.08426671475172043, -0.0738852471113205, 0.002573896199464798, -0.06414773315191269, -0.05112411081790924, 0.015053772367537022, -0.017512543126940727, -0.02192077226936817, 0.0014966268790885806, 0.013824313879013062, 0.11771497875452042, -0.06953485310077667, 0.14626739919185638, 0.0855528861284256, -0.020132014527916908, 0.1376907229423523, -0.027613896876573563, 0.07787857204675674, 0.1535496711730957, -0.11155544221401215, -0.020756520330905914, 0.08525984734296799, -0.018850641325116158, 0.13548210263252258, -0.04727225750684738, 0.01512045506387949, -0.11530567705631256, -0.06459781527519226, -0.07394178956747055, -0.023666907101869583, 0.05493541061878204, -0.017915798351168633, -0.02186308242380619, 0.03536434471607208, -0.09113184362649918, -0.022904587909579277, -0.10103429108858109, 0.07525870949029922, -0.07106217741966248, -0.12105035781860352, 0.009655178524553776, 0.09486273676156998, -0.05615421012043953, 0.07176881283521652, -0.10159782320261002, 0.12410564720630646, -0.060872577130794525, -0.009433768689632416, -0.0043990639969706535, 0.0582372285425663, 0.05997238680720329, 0.09810338914394379, 0.004786912351846695, 0.009720368310809135, -0.04838576912879944, -0.09944036602973938, -0.09549083560705185, 0.058765709400177, -0.02038576267659664, -0.09888838231563568, -0.0861322209239006, 0.09926767647266388, -0.024136457592248917, 0.07109935581684113, 0.07364135980606079, 0.09650248289108276, 0.10852347314357758, 0.02017328329384327, -0.022950872778892517, 0.04473451152443886, 0.12292356789112091, -0.1374545842409134, -0.04503900557756424, 0.07638958841562271, -0.0323760099709034, 0.009456614963710308, -0.06573338806629181, -0.09507744014263153, -0.03411226347088814, -0.07866773009300232, -0.012043475173413754, -0.015157826244831085, -0.10163510590791702, 0.06500493735074997, -0.040177229791879654, -0.015721600502729416, -0.02068098448216915, 0.1171000599861145, 0.01042997743934393, 0.013820731081068516, 0.040650106966495514, -0.028049331158399582, 0.0413626953959465, 0.08889573067426682, -0.031917717307806015, -0.12038254737854004, -0.12239913642406464, 0.021661652252078056, -0.035883624106645584, -0.154109925031662, -0.05201634764671326, 0.08044442534446716, 0.039165250957012177, -0.09231645613908768, -0.14925238490104675, -0.10923353582620621, -0.06139976158738136, 0.07024458050727844, -0.041977014392614365, 0.07982325553894043, 0.0908459797501564, 0.05318579450249672, 0.12388298660516739, -0.015755796805024147, -0.030383985489606857, -0.013828189112246037, -0.0728474035859108, -0.15758804976940155, 0.04307516664266586, -0.1218310073018074, 0.11948580294847488, -0.026097001507878304, -0.025285009294748306, 0.09243901073932648, 0.07888921350240707, 0.0629802867770195, -0.14701931178569794, 0.035035792738199234, 0.08697954565286636, -0.04421739652752876, -0.1225690096616745, 0.028316332027316093, -0.016102544963359833, -0.03372829779982567, 0.05917098745703697, -0.05113682895898819, -0.04679197445511818, 0.16324883699417114, -0.03387773036956787, -0.12798374891281128, -0.07346032559871674, -0.009477522224187851, -0.07863067090511322, -0.03617972508072853, -0.06919697672128677, 0.142045259475708, -0.03957701846957207, -0.031393520534038544, 0.10498713701963425, 0.03476300835609436, 0.01813358999788761, 0.10205397009849548, -0.08285308629274368, -0.05018721893429756, 0.04725431650876999, -0.09735408425331116, 0.017612507566809654, 0.08866987377405167, -0.07580295950174332, 0.14148646593093872, 0.09836772084236145, 0.04852062836289406, -0.04009708762168884, -0.12259022146463394, 0.10621597617864609, 0.0017042795661836863, -0.10493304580450058, -0.08838914334774017, 0.058646272867918015, -0.0037253079935908318, -0.14305490255355835, 0.08760260045528412], -inttoptr:[0.10509239882230759, -0.09172801673412323, 0.0783286839723587, 0.10274612158536911, 0.07931046187877655, 0.0003463535394985229, -0.09608662128448486, -0.10975394397974014, 0.1485675871372223, -0.06565938889980316, -0.01721736416220665, 0.017737306654453278, -0.08052492886781693, -0.0010012489510700107, -0.047201819717884064, -0.010289380326867104, 0.12432468682527542, 0.061064157634973526, 0.037850212305784225, -0.11429981887340546, -0.05187687277793884, -0.09905153512954712, -0.05026035010814667, -0.1341216266155243, 0.00010750677029136568, -0.05268946662545204, -0.0025399804580956697, -0.008389350026845932, 0.13677911460399628, -0.006202841643244028, -0.10467977076768875, -0.00529725244268775, 0.08689149469137192, 0.013498996384441853, 0.10077331215143204, 0.0018696512561291456, 0.06776049733161926, 0.0879722535610199, -0.08687024563550949, 0.06379152834415436, 0.035446636378765106, -0.10957911610603333, -0.11688186973333359, -0.008318278007209301, 0.028128089383244514, 0.012712990865111351, 0.03404112532734871, -0.06321737170219421, -0.0028811346273869276, -0.01731533370912075, 0.022948861122131348, -0.06883057951927185, -0.06276866793632507, -0.005262217950075865, -0.12278661876916885, 0.016593266278505325, 0.055055808275938034, 0.019855663180351257, 0.06698734313249588, -0.07369605451822281, -0.01839171163737774, 0.013939098455011845, -0.08100279420614243, 0.04013454169034958, -0.08405433595180511, -0.02526385337114334, 0.08409873396158218, 0.12989354133605957, -0.040495555847883224, -0.043247289955616, 0.08249922096729279, 0.07323082536458969, -0.10795354843139648, -0.08346796780824661, 0.01304706558585167, -0.12750302255153656, -0.04016854614019394, -0.1057676151394844, 0.08739437907934189, 0.07450972497463226, 0.057493001222610474, -0.01692567765712738, -0.004404285456985235, 0.13287866115570068, 0.07689710706472397, 0.09063874930143356, -0.08153324574232101, -0.10683855414390564, -0.12841764092445374, 0.08699025213718414, -0.013786385767161846, 0.016326984390616417, 0.12762144207954407, 0.04167290776968002, 0.007669421378523111, -0.05594926327466965, 0.00012246430560480803, -0.03349972516298294, -0.13529859483242035, 0.10450700670480728, 0.021368883550167084, -0.021024437621235847, -0.06738479435443878, 0.008987455628812313, 0.05659334361553192, 0.0652235746383667, -0.0615973174571991, -0.08778734505176544, 0.07495289295911789, 0.04116715490818024, -0.00012714821787085384, -0.05567976459860802, 0.1388457715511322, -0.0054678176529705524, -0.051993485540151596, -0.006640157196670771, -0.10399315506219864, -0.022982977330684662, 0.12102122604846954, -0.09349152445793152, -0.07112405449151993, -0.1449895054101944, -0.00580098619684577, -0.009064195677638054, -0.05680172145366669, 0.02318933606147766, -0.012199968099594116, 0.11518543213605881, -0.007506685331463814, 0.03885597363114357, 0.019810602068901062, 0.06604641675949097, -0.06899534165859222, 0.006866611074656248, 0.045242998749017715, 0.023934582248330116, -0.023688869550824165, 0.08580435812473297, -0.11053892225027084, 0.002061272505670786, 0.012293324805796146, 0.12066429853439331, -0.044804323464632034, 0.05959384888410568, 0.002205725759267807, -0.0090035330504179, -0.07900873571634293, -0.05869397893548012, 0.024243125692009926, -0.05193255841732025, 0.006798149552196264, 0.11629366129636765, -0.11846365034580231, -0.011322077363729477, -0.05607994645833969, -0.10735131055116653, -0.020594719797372818, -0.07407888025045395, -0.0533430315554142, 0.10778950154781342, -0.041485439985990524, 0.07712624967098236, -0.0053528170101344585, -0.004523046314716339, 0.05913892015814781, -0.06299735605716705, -0.02493075095117092, 0.1014600619673729, 0.07625564932823181, 0.01406706403940916, 0.11210457980632782, 0.07983880490064621, 0.07909146696329117, -0.07484116405248642, 0.020073842257261276, 0.0022969446144998074, 0.11647294461727142, -0.09149005264043808, 0.1340283900499344, 0.025690622627735138, 0.02811492793262005, -0.022564206272363663, -0.001514399191364646, -0.026143895462155342, 0.0866294801235199, -0.013142422772943974, 0.0002907855960074812, 0.05580347776412964, 0.09265032410621643, 0.10995277017354965, 0.05758795514702797, 0.13987353444099426, 0.11478892713785172, -0.0458722859621048, -0.02333277277648449, 0.07141987979412079, 0.09001106023788452, 0.0990547314286232, -0.08767012506723404, 0.006825725547969341, -0.0421636626124382, -0.11717072129249573, -0.01770195923745632, -0.04382091015577316, -0.028459161520004272, 0.12315993010997772, 0.049300093203783035, 0.09459585696458817, 0.01732681132853031, 0.02022918500006199, 0.013683009892702103, 0.021807629615068436, 0.05125448852777481, -0.08373197913169861, -0.028071071952581406, -0.03184502199292183, 0.013573268428444862, 0.05701976642012596, 0.06791780143976212, -0.04930722340941429, 0.011959711089730263, -0.10764245688915253, 0.09755221754312515, 0.13273298740386963, 0.05562260001897812, -0.15283183753490448, 0.08885841816663742, 0.061404552310705185, 0.006590340286493301, 0.014921237714588642, 0.13405665755271912, 0.00423313258215785, -0.009305715560913086, -0.10052331537008286, 0.07906518131494522, 0.09012806415557861, 0.04560472071170807, -0.11697821319103241, -0.03422188386321068, 0.12993206083774567, 0.00220342050306499, 0.05749853327870369, -0.09710574895143509, -0.059896573424339294, -0.1241304874420166, -0.05268903821706772, -0.015444491989910603, 0.013010223396122456, -0.07361651211977005, -0.11187271028757095, -0.009905223734676838, 0.09512502700090408, -0.1367250233888626, -0.05082348361611366, -0.004307313822209835, -0.027081826701760292, 0.10823021084070206, -0.08179907500743866, 0.019319983199238777, -0.01956307515501976, 0.01796683855354786, 0.1411818265914917, 0.09915976971387863, -0.13856655359268188, -0.08249512314796448, -0.02011832408607006, -0.025805989280343056, 0.09424977004528046, 0.045402273535728455, 0.03361627832055092, -0.02712465263903141, -0.003241341095417738, 0.13432936370372772, -0.016950149089097977, -0.03787596896290779, -0.12288529425859451, -0.05682148411870003, -0.0364312008023262, -0.0030263932421803474, 0.02122209034860134, -0.09456870704889297, -0.11700321733951569, -0.03450259566307068, 0.06394262611865997, -0.12768636643886566, -0.12961816787719727, 0.05393023416399956, -0.05137772485613823, 0.13691620528697968, -0.033174168318510056, -0.01596665382385254, 0.13172422349452972, 0.060636479407548904, 0.03964511677622795, -0.04119950905442238, 0.09523486346006393, 0.0025280718691647053, -0.008565874770283699, 0.021247178316116333, 0.11914363503456116], -invoke:[0.02919265255331993, -0.057722270488739014, 0.07602432370185852, 0.05917833745479584, 0.09407168626785278, -0.003488120622932911, 0.0406050868332386, -0.014171699061989784, 0.07181981205940247, 0.05394085869193077, -0.0007584788836538792, -0.13438768684864044, 0.01877969317138195, -0.13414372503757477, 0.08755737543106079, -0.03600148856639862, -0.014844806864857674, -0.10733529925346375, -0.023171601817011833, 0.013449179008603096, -0.0608992725610733, -0.050172556191682816, -0.029078897088766098, 0.013626513071358204, -0.03185980021953583, 0.11277228593826294, -0.0571955107152462, -0.005003016442060471, 0.10649257153272629, -0.04142655059695244, 0.12250974029302597, -0.028309395536780357, 0.08412567526102066, 0.18380394577980042, -0.049812834709882736, -0.1144491583108902, 0.1849222034215927, 0.036375489085912704, 0.04762674868106842, 0.12011560052633286, -0.07550916075706482, 0.026799321174621582, -0.010430149734020233, -0.015041384845972061, -0.07829649746417999, 0.06054989621043205, -0.007882221601903439, 0.11779797077178955, -0.001288223429583013, 0.09132320433855057, 0.05363697558641434, -0.134634867310524, 0.09068313241004944, 0.08529037982225418, 0.08055193722248077, -0.004377384204417467, 0.05775364115834236, 0.03600809723138809, -0.014075943268835545, 0.015839833766222, 0.060702383518218994, 0.014735816046595573, 0.04782409220933914, 0.0640098974108696, 0.05389365926384926, 0.13650181889533997, 0.08616343140602112, -0.10924887657165527, -0.07548990845680237, 0.04596051201224327, -0.09198667854070663, -0.06074877828359604, 0.0562298446893692, -0.00616898899897933, 0.0538780651986599, -0.018826305866241455, 0.03705105930566788, 0.004464706405997276, 0.008422835730016232, -0.10168173164129257, 0.08762180805206299, 0.06174654886126518, 0.08047334849834442, 0.057468947023153305, -0.18925978243350983, 0.023114163428544998, -0.09881801903247833, 0.05987894907593727, -0.03295830264687538, -0.027677517384290695, -0.1387794315814972, -0.15045948326587677, -0.04575059562921524, -0.20733381807804108, -0.1272992640733719, -0.08469890803098679, -0.0006340664112940431, -0.05916336923837662, -0.026591891422867775, 0.025635328143835068, 0.010491381399333477, 0.014158427715301514, 0.01501314528286457, -0.028573546558618546, 0.09204977750778198, -0.09891855716705322, 0.08444345742464066, 0.025409504771232605, 0.050725359469652176, 0.04365731403231621, -0.1443381905555725, 0.03222031518816948, -0.057612087577581406, 0.020647702738642693, -0.00964105874300003, 0.06542961299419403, -0.1285891979932785, 0.07184457033872604, 0.01602008007466793, -0.03812762722373009, 0.053332798182964325, 0.12139200419187546, -0.07027292996644974, 0.005766706075519323, -0.051566366106271744, -0.06707003712654114, -0.0015844290610402822, 0.06281920522451401, 0.03991013020277023, 0.000710547436028719, 0.04566480219364166, 0.08786837756633759, 0.10378850251436234, -0.024384327232837677, 0.005711291916668415, -0.0012820296688005328, 0.002986760111525655, -0.1261916607618332, 0.08025117963552475, 0.08547009527683258, 0.0007628864259459078, 0.06856866925954819, -0.047842200845479965, -0.15999099612236023, 0.007552055176347494, -0.04240379109978676, -0.10192786902189255, -0.053173456341028214, -0.14657223224639893, -0.1571330577135086, 0.03238768130540848, -0.04494373872876167, -0.004892617464065552, 0.10622765868902206, 0.1189904659986496, 0.15193364024162292, -0.004939895588904619, 0.05278152599930763, -0.1754758507013321, -0.0531834252178669, -0.024807244539260864, -0.018530065193772316, -0.14668451249599457, 0.05904171243309975, 0.03477829322218895, -0.07759275287389755, 0.00269624637439847, 0.11819672584533691, 0.0901280865073204, -0.06022535637021065, 0.019464902579784393, -0.11359336972236633, 0.05244354531168938, -0.07834059000015259, 0.04171382263302803, 0.003527864580973983, -0.14570702612400055, -0.006458367686718702, -0.10670612007379532, 0.03574575111269951, 0.04487742483615875, -0.0507260300219059, 0.017075998708605766, -0.009042053483426571, -0.007306643296033144, -0.018727613613009453, 0.08066358417272568, -0.026337910443544388, 0.05060655623674393, -0.03705118969082832, 0.0019094409653916955, 0.04138597846031189, -0.024435603991150856, 0.035785309970378876, -0.0224323533475399, -0.08304201066493988, -0.11549518257379532, -0.09329035878181458, 0.015190890058875084, 0.07246419787406921, -0.020057179033756256, -0.014207110740244389, -0.016587063670158386, -0.10767020285129547, 0.05693498253822327, -0.010856281034648418, -0.11846918612718582, 0.0638992190361023, 0.07430852949619293, 0.01598954014480114, 0.024063171818852425, 0.07983801513910294, -0.07828362286090851, 0.13908769190311432, 0.07517135888338089, -0.08277695626020432, 0.016024744138121605, 0.081100232899189, -0.1925155073404312, 0.026444822549819946, -0.12230519205331802, 0.10432013124227524, -0.07770433276891708, -0.004160082899034023, 0.05412011966109276, 0.06818055361509323, 0.06834174692630768, 0.0836464911699295, 0.04676409065723419, 0.012722838670015335, -0.05623169243335724, 0.0053122565150260925, 0.07514525949954987, -0.02250792272388935, -0.11289696395397186, -0.0727921798825264, -0.05780687555670738, -0.03598320484161377, -0.08693946897983551, 0.013385247439146042, -0.052039049565792084, -0.10975738614797592, 0.04814716801047325, 0.11304835975170135, 0.007835203781723976, 0.03453166410326958, 0.005537340417504311, -0.024556374177336693, -0.07822445780038834, -0.07640959322452545, 0.08944322913885117, -0.0025317964609712362, -0.06198296695947647, -0.056994032114744186, 0.030710184946656227, -0.05416072532534599, -0.0023711577523499727, -0.017182819545269012, -0.024818822741508484, 0.017828267067670822, -0.0920347347855568, -0.07644299417734146, -0.1051192507147789, -0.03417404368519783, 0.05678042024374008, -0.10806693136692047, 0.019931215792894363, -4.753221583086997e-05, -0.043347809463739395, 0.03150166943669319, 0.009459077380597591, -0.04720450937747955, 0.08644077181816101, -0.013619995675981045, 0.12374227494001389, 0.043811146169900894, -0.09574401378631592, -0.06461507827043533, 0.13502898812294006, -0.03789384290575981, -0.010086390189826488, 0.07679561525583267, -0.14221489429473877, 0.16191944479942322, 0.11563560366630554, 0.031559161841869354, 0.03369049355387688, -0.1202157661318779, 0.002010874915868044, -0.037738047540187836, -0.035573575645685196, -0.004057871177792549, 0.0027285446412861347, -0.012393027544021606, -0.013890156522393227, -0.03239764645695686, -0.16977182030677795, -0.017008835449814796, -0.057388078421354294, -0.09307518601417542], -label:[-0.019872186705470085, 0.04082763195037842, -0.04394947364926338, -0.026018019765615463, 0.1441618949174881, 0.06911733746528625, -0.07454083859920502, 0.035464245826005936, -0.011754441075026989, -0.0012546014040708542, -0.047019291669130325, -0.02525322139263153, 0.02023913338780403, -0.06735118478536606, -0.02380208484828472, 0.013066384941339493, 0.05149190500378609, 0.006664345972239971, 0.0875776931643486, 0.08767414838075638, 0.0763944759964943, 0.007017532363533974, 0.1328386515378952, -0.11672486364841461, 0.02659326232969761, 0.06646186858415604, 0.07155723869800568, 0.0524776466190815, 0.045729588717222214, -0.0876707136631012, 0.12530547380447388, 0.04663214087486267, -0.009465670213103294, 0.04965538531541824, -0.11729491502046585, -0.06261016428470612, 0.12420125305652618, 0.05504656210541725, -0.01724736951291561, -0.02582423761487007, -0.024109262973070145, 0.13426059484481812, -0.11755248159170151, 0.044598665088415146, 0.03036215715110302, 0.03002440184354782, 0.06022949889302254, 0.036220718175172806, -0.14534570276737213, 0.09993913024663925, -0.0013991318410262465, -0.05634625628590584, 0.09218479692935944, 0.003969233017414808, 0.12549138069152832, 0.0748046338558197, -0.042511358857154846, 0.06239493191242218, 0.05262255296111107, 0.044494591653347015, -0.0431109257042408, 0.10023420304059982, 0.03290814533829689, 0.009544739499688148, 0.018437033519148827, 0.06357747316360474, -0.03189952298998833, 0.0043896958231925964, -0.016535762697458267, -0.07495831698179245, -0.01058288849890232, 0.022925034165382385, 0.09377714991569519, 0.08057372272014618, 0.08970806747674942, 0.11638802289962769, 0.08841484040021896, -0.06865272670984268, -0.04569527134299278, 0.06632742285728455, 0.012436113320291042, 0.0382964089512825, -0.00928010419011116, -0.048120707273483276, -0.06519902497529984, -0.06591381877660751, -0.11580027639865875, 0.10944034159183502, 0.017835741862654686, -0.10162337124347687, -0.03865024074912071, -0.03362450748682022, 0.03048391081392765, -0.0487823560833931, -0.089310422539711, 0.019266048446297646, -0.0711071714758873, 0.10448358952999115, 0.1233736053109169, -0.05952847748994827, -0.073307104408741, -0.05222828686237335, 0.0491756908595562, -0.08095937967300415, 0.050472985953092575, -0.06321074068546295, -0.022999441251158714, 0.08160459250211716, -0.034769754856824875, -0.09399135410785675, -0.0673387348651886, -0.009383434429764748, -0.11055165529251099, 0.1269465535879135, -0.05872373655438423, 0.11954954266548157, 0.06346108019351959, -0.11402300745248795, -0.05277523025870323, 0.021395044401288033, 0.014175459742546082, -0.10260254144668579, 0.03570706769824028, -0.08055062592029572, -0.1540992707014084, -0.023218898102641106, -0.08124283701181412, -0.07215631753206253, -0.012359142303466797, -0.03928423672914505, 0.05264604091644287, 0.032695695757865906, 0.0367911159992218, 0.04108168184757233, 0.07153131812810898, -0.002559320069849491, -0.052799325436353683, -0.024416709318757057, -0.04579060524702072, -0.04439442604780197, -0.07161300629377365, 0.03120383247733116, -0.02769804559648037, -0.09364930540323257, 0.09947586059570312, 0.11035528033971786, 0.025797221809625626, 0.04282045364379883, 0.034052424132823944, -0.04628628492355347, 0.06960135698318481, 0.05549953877925873, 0.07181044667959213, 0.08440767973661423, 0.04819745570421219, -0.13562940061092377, 0.08250745385885239, 0.020814934745430946, -0.08445407450199127, 0.021804768592119217, -0.13583657145500183, 0.10828394442796707, -0.08422373980283737, 0.011328824795782566, -0.12533800303936005, 0.022063296288251877, 0.05446231737732887, 0.04362044855952263, 0.03941471502184868, -0.008513650856912136, 0.13518889248371124, 0.04499593749642372, -0.01874244399368763, 0.04594099894165993, -0.09096359461545944, 0.0034511082340031862, -0.06164949759840965, -0.08487778156995773, -0.04223407804965973, -0.1475418508052826, -0.010080966167151928, 0.025895023718476295, -0.07271521538496017, 0.09030336886644363, 0.004429836757481098, 0.066388338804245, 0.08351254463195801, 0.08453229069709778, -0.04602372273802757, -0.09423044323921204, 0.08943872898817062, 0.09440968185663223, 0.11230779439210892, -0.06709384173154831, -0.0881672129034996, 0.09283499419689178, -0.0713505893945694, 0.07216956466436386, 0.11778203397989273, -0.08259595185518265, -0.0750989317893982, 0.10337936133146286, 0.061541467905044556, 0.06267748773097992, -0.032225195318460464, 0.08294947445392609, 0.11516373604536057, -0.041722893714904785, 0.027591301128268242, 0.04298015683889389, -0.11890105903148651, -0.03098512440919876, -0.14017254114151, -0.0495842844247818, -0.08140464127063751, -0.11065549403429031, 0.003551099682226777, 0.11569731682538986, 0.027219679206609726, -0.020923784002661705, -0.05747044458985329, 0.050980616360902786, -0.07865049690008163, -0.056739117950201035, -0.031052108854055405, 0.005147021263837814, -0.06923916190862656, -0.025563430041074753, -0.13921208679676056, -0.0777047723531723, -0.13211703300476074, -0.06548882275819778, -0.029641827568411827, 0.06245221942663193, -0.02448958344757557, 0.06841648370027542, -0.034934405237436295, -0.13110709190368652, 0.01989423856139183, 0.08315088599920273, -0.1266619861125946, -0.09129651635885239, -0.044021207839250565, -0.05216062068939209, -0.06584495306015015, -0.06597089767456055, -0.06626231223344803, 0.08989959955215454, -0.12574833631515503, -0.00935838557779789, 0.11090452969074249, 0.004105717875063419, 0.0814385637640953, -0.12194696068763733, 0.08829084038734436, 0.042735353112220764, 0.07879120111465454, 0.07681399583816528, 0.07642773538827896, -0.06477740406990051, -0.05458684638142586, -0.01787799410521984, 0.036900099366903305, 0.05425960570573807, 0.03602487966418266, 0.0005525970482267439, 0.07984379678964615, 0.09081413596868515, 0.055447548627853394, 0.017457079142332077, -0.08555927872657776, -0.001931512262672186, 0.009752782061696053, 0.07758639007806778, -0.07982037216424942, -0.14815010130405426, -0.03405333682894707, 0.008952198550105095, -0.0427447184920311, -0.020070502534508705, -0.07073131948709488, -0.05798783898353577, 0.06650187075138092, 0.08892733603715897, 0.10895740985870361, -0.06998422741889954, -0.05215882882475853, 0.07748384028673172, -0.08447882533073425, -0.025226600468158722, 0.047900550067424774, 0.16012410819530487, -0.06313684582710266, -0.0669407770037651, 0.05363504961133003, -0.0995233878493309, -0.13670700788497925, 0.07129702717065811, -0.009737268090248108, 0.03486829623579979], -landingpad:[0.02335774339735508, 0.032133445143699646, 0.0622379332780838, 0.026391323655843735, 0.07980543375015259, -0.06183328852057457, -0.03887204825878143, -0.12965098023414612, 0.09983064234256744, -0.12883245944976807, -0.011781268753111362, -0.12699860334396362, 0.057901136577129364, -0.12955228984355927, 0.036490485072135925, -0.1216585710644722, 0.07763440161943436, 0.061308614909648895, 0.010440649464726448, -0.1520468145608902, 0.11375591158866882, -0.0515456348657608, -0.08636245876550674, 0.003850725479424, -0.024283986538648605, -0.04915729910135269, 0.1203736960887909, 0.07173196226358414, 0.10687146335840225, 0.016580205410718918, 0.12119650095701218, 0.11254949122667313, 0.015386897139251232, -0.022084690630435944, -0.016093764454126358, -0.03436547517776489, -0.11131865531206131, -0.07534059882164001, 0.04401779919862747, -0.11318033188581467, -0.08664406090974808, 0.1084858775138855, -0.04927309602499008, 0.09345646947622299, 0.027604326605796814, 0.01569407433271408, 0.013707966543734074, -0.038350991904735565, 0.03741073980927467, 0.08540190011262894, -0.08279015123844147, -0.1276026964187622, -0.02064434438943863, -0.05110056698322296, -0.06326045840978622, -0.07117799669504166, -0.0071183196268975735, -0.02603987045586109, -0.020667849108576775, 0.11365657299757004, -0.008121595717966557, -0.07067707926034927, -0.07969386130571365, 0.0952465832233429, 0.08653441816568375, -0.05937284231185913, 0.11610832810401917, 0.04761363938450813, -0.06640412658452988, 0.0658298209309578, -0.008115356788039207, -0.044150885194540024, 0.032607950270175934, -0.009483900852501392, 0.10885882377624512, -0.0005942041170783341, -0.039842355996370316, -0.0886567234992981, 0.008412056602537632, 0.04771627485752106, 0.07336878031492233, 0.018643464893102646, -0.09542971104383469, -0.04922756180167198, -0.1538570523262024, -0.07775139808654785, -0.1127108782529831, -0.021907368674874306, -0.0705045610666275, -0.033639419823884964, 0.0010516949696466327, 0.01082968432456255, 0.05331641435623169, -0.035745494067668915, 0.08444462716579437, 0.02264024317264557, 0.013215056620538235, -0.03432478755712509, 0.024385005235671997, -0.015968574211001396, 0.14451110363006592, 0.016995271667838097, -0.015178482048213482, 0.05095377936959267, -0.03283309563994408, 0.02921229414641857, 0.07446214556694031, 0.033661238849163055, 0.15255853533744812, 0.03232079744338989, -0.13321667909622192, 0.05114801228046417, -0.11645962297916412, 0.06917054206132889, 0.00805750209838152, 0.04147348552942276, -0.11949386447668076, -0.08064454793930054, -0.052825283259153366, 0.04710501432418823, -0.06427115201950073, -0.06613508611917496, -0.025529025122523308, 0.00027423255960457027, 0.09858743101358414, 0.04710576683282852, 0.07284806668758392, 0.051785908639431, 0.03702779486775398, -0.08429798483848572, -0.038035374134778976, -0.00519969267770648, 0.01656232215464115, -0.0613330714404583, -0.006630650255829096, 0.016345130279660225, 0.10075408965349197, -0.11004334688186646, 0.07202522456645966, 0.0592661052942276, -0.028072135522961617, 0.020343100652098656, -0.0028072407003492117, -0.12566903233528137, 0.00538077624514699, -0.004400113131850958, 0.08340249210596085, -0.014521333388984203, 0.006563048809766769, 0.029343364760279655, -0.02478775382041931, -0.04488740116357803, -0.06186840310692787, -0.008472872897982597, -0.0845414400100708, 0.009704481810331345, -0.020489845424890518, 0.017642246559262276, -0.0943785235285759, -0.05637069419026375, -0.03870405629277229, -0.04863610491156578, -0.1368780881166458, 0.06190059706568718, 0.14559218287467957, 0.026746496558189392, 0.10106631368398666, -0.1148374080657959, -0.034497469663619995, -0.0011991242645308375, -0.03309166058897972, -0.10892850160598755, 0.09946353733539581, -0.08551470190286636, 0.10102826356887817, 0.035348813980817795, -0.0030836521182209253, -0.08650197833776474, -0.11194071918725967, 0.10145622491836548, -0.013942166231572628, -0.04651385918259621, -0.05510338395833969, -0.010841917246580124, 0.06738456338644028, -0.1250901073217392, 0.12143794447183609, -0.06908641010522842, 0.045095592737197876, -0.034511443227529526, 0.06100316718220711, 0.03931962698698044, -0.039647649973630905, 0.09391768276691437, -0.11412521451711655, -0.09776587784290314, -0.0810922235250473, 0.10038986802101135, -0.10403908789157867, 0.005103095434606075, -0.029600607231259346, -0.014210574328899384, 0.06552161276340485, -0.11358506977558136, -0.00939429085701704, 0.009393989108502865, 0.09818162769079208, -0.033558767288923264, 0.01806066930294037, -0.013822204433381557, 0.11441097408533096, -0.013484873808920383, -0.07932883501052856, 0.02195654809474945, -0.06515481323003769, 0.07072294503450394, 0.047749023884534836, -0.039400435984134674, -0.04858182370662689, -0.049596838653087616, -0.03908181190490723, -0.04239468649029732, -0.05924615636467934, -0.03596257418394089, 0.04747217148542404, 0.11179056018590927, 0.07973768562078476, 0.05702971667051315, -0.03700966387987137, 0.01045204047113657, 0.08442182838916779, -0.10257775336503983, -0.007009238004684448, -0.046147335320711136, -0.10616248846054077, -0.10955780744552612, -0.06643235683441162, -0.07740455120801926, -0.00473783491179347, -0.06250441074371338, -0.08790727704763412, 0.07315220683813095, 0.02617918699979782, 0.052887316793203354, -0.03100983239710331, 0.0607667900621891, -0.00939673837274313, -0.022738037630915642, 0.07643874734640121, 0.08904241770505905, 0.03283926844596863, 0.03470676764845848, -0.012843785807490349, -0.04786044731736183, 0.045105643570423126, -0.01589459553360939, -0.10509549081325531, 0.03351112827658653, -0.001131707220338285, -0.01011962816119194, -0.0023153445217758417, -0.04217105358839035, -0.05229374021291733, -0.11003781855106354, 0.0018632798455655575, 0.0179291944950819, -0.06092718988656998, -0.004842169117182493, -0.008809053339064121, 0.016283920034766197, 0.07369718700647354, 0.047808971256017685, -0.04166165366768837, -0.023933950811624527, -0.0034330824855715036, 0.09333467483520508, -0.0014985698508098722, 0.09806297719478607, 0.03045780397951603, 0.043944429606199265, -0.06946368515491486, -0.11265341192483902, 0.10684177279472351, 0.14367374777793884, 0.11418724060058594, -0.05135127902030945, 0.12636233866214752, 0.027986928820610046, -0.1231856420636177, -0.010284505784511566, -0.02729400247335434, -0.10660077631473541, -0.11910631507635117, -0.0789719820022583, -0.00671911658719182, -0.020607512444257736, -0.055252805352211, 0.003970516379922628, 0.09961247444152832, 0.04958866909146309], -load:[-0.1260402798652649, -0.09723176807165146, 0.07917056232690811, 0.04889184236526489, 0.0805235356092453, 0.005903999786823988, -0.02036118134856224, -0.08015365898609161, 0.05955316126346588, 0.02178064174950123, 0.055249057710170746, 0.10768839716911316, 0.0037535722367465496, -0.002860802225768566, -0.09185892343521118, -0.0009981765178963542, -0.010854776948690414, -0.11034843325614929, -0.031872935593128204, -0.06563403457403183, -0.10440921038389206, -0.03204675391316414, -0.0519992969930172, 0.05718173086643219, -0.04438447579741478, -0.08076559752225876, -0.06782867014408112, 0.0767526850104332, -0.1048891544342041, -0.19485460221767426, -0.0338631197810173, -0.0214519165456295, 0.08254614472389221, -0.23216958343982697, 0.009174508973956108, -0.22381214797496796, 0.06931670755147934, 0.07901207357645035, 0.02122889645397663, -0.1030818521976471, -0.04304776340723038, -0.06520716845989227, 0.010006043128669262, 0.0191067885607481, -0.11170279234647751, -0.015638675540685654, -0.012964440509676933, -0.14688491821289062, -0.002558389911428094, 0.06233161687850952, 0.08484082669019699, 0.08641897886991501, 0.025842435657978058, 0.19502855837345123, 0.0023489065933972597, 0.025063740089535713, 0.05861399695277214, -0.037725698202848434, -0.0801142230629921, -0.030229538679122925, 0.06057402491569519, 0.013536015525460243, 0.08776678144931793, 0.039951276034116745, 0.016206510365009308, -0.025360388681292534, 0.009861323051154613, 0.002339952392503619, -0.053838636726140976, 0.025328857824206352, -0.04772753268480301, -0.08050084859132767, 0.06448347866535187, -0.012003220617771149, -0.12630462646484375, -0.1060551255941391, 0.24653229117393494, -0.07373856753110886, 0.09053774178028107, -0.03196199610829353, 0.06688597053289413, -0.0014657557476311922, 0.014547386206686497, 0.060485951602458954, 0.075666643679142, 0.017966363579034805, 0.10519950836896896, 0.06669582426548004, -0.05010736733675003, -0.004904859233647585, 0.0970994159579277, 0.09708339720964432, -0.047779493033885956, 0.18217234313488007, -0.027676915749907494, -0.026229972019791603, 0.04031410068273544, -0.14871807396411896, -0.044415686279535294, 0.09917565435171127, 0.021296808496117592, 0.01846681535243988, -0.15472730994224548, -0.11661083251237869, 0.08104634284973145, 0.03813735395669937, -0.07151364535093307, -0.07013766467571259, -0.05443769693374634, 0.056831445544958115, -0.0030015981756150723, -0.07101280242204666, 0.03282954916357994, -0.07973933964967728, 0.012285714037716389, 0.04321286454796791, -0.101277656853199, -0.038856491446495056, 0.07009440660476685, -0.045135099440813065, -0.12599559128284454, 0.11554241180419922, -0.010991927236318588, 0.02275082841515541, -0.060547083616256714, 0.024736376479268074, -0.012065188959240913, 0.015213677659630775, -0.03648209944367409, 0.03901756927371025, -0.1403418630361557, 0.03295595198869705, -0.10668230056762695, -0.12375909090042114, -0.047516077756881714, -0.07810607552528381, -0.08126594871282578, -0.05679619312286377, 0.0010140229715034366, 0.0682491883635521, 0.005615694914013147, 0.048637233674526215, -0.11352165043354034, 0.005964511074125767, 0.1023050993680954, 0.02354930154979229, -0.07790346443653107, -0.04380032792687416, -0.005253801587969065, -0.11537067592144012, -0.05248359963297844, -0.08926261216402054, -0.10798358917236328, 0.030190004035830498, 0.10506903380155563, 0.009807913564145565, -0.007065732963383198, 0.0890120342373848, 0.01625346951186657, 0.06580702215433121, 0.03185158967971802, -0.0915907472372055, 0.03372209891676903, -0.17523357272148132, 0.06571041792631149, -0.08237574994564056, -0.054822150617837906, 0.10009480267763138, 0.08695588260889053, 0.039253126829862595, 0.040784433484077454, -0.05013143643736839, 0.03471021354198456, -0.04109492897987366, -0.0418257862329483, 0.03785211965441704, 0.04132208973169327, 0.02714732103049755, 0.04650754854083061, 0.01301797665655613, 0.24397914111614227, -0.1195392981171608, 0.00951126404106617, -0.03537997230887413, -0.01595659740269184, 0.006528613623231649, -0.07065492868423462, -0.00798974372446537, -0.042458418756723404, 0.022579314187169075, -0.00499933073297143, 0.1231403797864914, -0.029683871194720268, -0.1036844328045845, -0.024782592430710793, -0.002882532309740782, 0.026106130331754684, -0.0950763076543808, 0.06767409294843674, 0.0008173156529664993, 0.052826181054115295, -0.005395996384322643, -0.12682755291461945, -0.06954331696033478, 0.0491633340716362, -0.08101502805948257, -0.11112343519926071, 0.12335571646690369, -0.17591221630573273, -0.13854490220546722, 0.08293193578720093, 0.04193311184644699, 0.05518796294927597, -0.16651546955108643, 0.005262373946607113, -0.08453836292028427, 0.16278019547462463, -0.02896968461573124, -0.001618594629690051, 0.0032008131965994835, 0.0519544892013073, -0.03406607359647751, 0.10299225151538849, 0.09916020184755325, -0.055908747017383575, 0.0610138438642025, 0.09234211593866348, 0.06993873417377472, 0.09360379725694656, -0.04951758310198784, 0.0045210556127130985, 0.006987717468291521, 0.023549625650048256, -0.02220870740711689, 0.07057857513427734, -0.038731399923563004, -0.07217546552419662, -0.07260634750127792, -0.07942478358745575, 0.014932134188711643, -0.016843169927597046, 0.039400916546583176, -0.12035936862230301, 0.04779501631855965, -0.05720720440149307, 0.00569140026345849, 0.12964500486850739, 0.02363884449005127, -0.07733432948589325, 0.03714436665177345, 0.007804896216839552, 0.026648588478565216, -0.07067936658859253, -0.05164776369929314, -0.00043671115417964756, 0.05617164075374603, 0.0305411908775568, 0.010362046770751476, -0.03137333318591118, -0.004814913962036371, -0.1586131453514099, -0.12350915372371674, -0.0027059356216341257, 0.097201406955719, 0.003448339644819498, -0.054636236280202866, 0.020172646269202232, -0.04774465784430504, -0.01621825248003006, 0.2073974609375, 0.01838199608027935, 0.18905194103717804, 0.09982823580503464, 0.026623228564858437, 0.09914831817150116, 0.03355468437075615, -0.0065595852211117744, -0.030759932473301888, -0.0583852156996727, -0.0928967148065567, -0.02069350704550743, -0.01666126400232315, 0.0040639666840434074, 0.04183229058980942, -0.02935805916786194, 0.045037638396024704, 0.01330161839723587, -0.033916618674993515, 0.016904933378100395, 0.11325795948505402, -0.12083355337381363, 0.014605200849473476, 0.029337335377931595, 0.05719974637031555, -0.004637674428522587, 0.03802863880991936, -0.007246318273246288, 0.08344898372888565, -0.09307156503200531, -0.08950874954462051], -lshr:[0.03818349912762642, -0.12907229363918304, 0.0780930444598198, 0.05978652834892273, 0.05250879377126694, 0.04492085054516792, 0.05891438201069832, -0.0601315051317215, -0.05512163043022156, 0.019066331908106804, 0.02896902523934841, 0.10946951806545258, -0.07542125135660172, -0.01656564325094223, 0.032411541789770126, -0.015477942302823067, -0.026421265676617622, -0.10198759287595749, -0.006668569520115852, 0.015070831403136253, 0.06336265057325363, -0.06816154718399048, -0.05634770169854164, 0.14416904747486115, -0.04375402256846428, -0.04785826802253723, -0.036808013916015625, -0.029536815360188484, 0.014271781779825687, 0.027157314121723175, 0.04400050640106201, -0.023021258413791656, 0.08947509527206421, -0.006461017299443483, 0.12496168911457062, 0.0021366893779486418, 0.07023241370916367, 0.022974250838160515, 0.09983637928962708, -0.12578701972961426, -0.07353301346302032, 0.0027618026360869408, 0.13781677186489105, -0.12238305062055588, 0.0206909142434597, 0.08403806388378143, -0.011399541981518269, -0.015680354088544846, -0.10147683322429657, 0.15154826641082764, -0.13177576661109924, -0.007472905796021223, -0.026903212070465088, 0.17875468730926514, 0.04519011452794075, 0.06387239694595337, -0.1282898485660553, -0.0846991240978241, -0.008024240843951702, -0.12769703567028046, 0.15754298865795135, 0.04294225573539734, 0.05967344343662262, 0.04423271492123604, 0.006646794266998768, 0.12695223093032837, -0.15009857714176178, 0.008832845836877823, 0.039381977170705795, 0.02173437923192978, -0.04227979853749275, 0.06748469918966293, -0.03839077427983284, 0.09344487637281418, -0.03287573903799057, -0.06395086646080017, -0.029133301228284836, 0.04419095441699028, 0.0668964758515358, -0.02744157612323761, 0.0292313601821661, 0.1338215470314026, 0.01919933222234249, 0.028173215687274933, 0.0641966462135315, 0.039647508412599564, 0.030514035373926163, 0.059863414615392685, -0.06272062659263611, -0.018485434353351593, -0.059393223375082016, -0.05811771750450134, -0.04884335771203041, -0.06186414510011673, -0.08258194476366043, 0.06460695713758469, -0.03408130630850792, -0.05628485977649689, -0.028882842510938644, 0.09582415223121643, 0.01570769026875496, -0.1118931844830513, 0.011710522696375847, 0.13033433258533478, 0.071245938539505, 0.06711947917938232, -0.041285302489995956, -0.04555632546544075, -0.039668742567300797, 0.07337114214897156, -0.012819727882742882, -0.06424783915281296, 0.08279343694448471, 0.02713932655751705, -0.14340342581272125, 0.16145531833171844, -0.13062764704227448, -0.018731383606791496, -0.06900928169488907, -0.035325221717357635, -0.11158289015293121, 0.11338350921869278, -0.0004054153396282345, 0.050331588834524155, -0.043798767030239105, -0.06503722816705704, -0.03724407032132149, 0.030563203617930412, 0.07598547637462616, 0.009344910271465778, -0.03299112245440483, -0.02519606053829193, 0.1121291071176529, 0.028546638786792755, -0.04593291133642197, -0.06863955408334732, -0.028574123978614807, -0.012871858663856983, 0.006432373076677322, 0.13228154182434082, 0.1449977308511734, 0.14709433913230896, 0.03255812078714371, -0.054546959698200226, -0.00031904474599286914, 0.004288688767701387, 0.04311496019363403, -0.09456329047679901, -0.1089840680360794, 0.03709535673260689, 0.1145595833659172, 0.03264820948243141, -0.061946894973516464, 0.0076142591424286366, 0.05664554238319397, 0.05177731439471245, -0.0063979970291256905, -0.0711100623011589, -0.10267866402864456, -0.039855360984802246, -0.08630286902189255, 0.006025163922458887, -0.006537274923175573, -0.004148399922996759, -0.03060866892337799, -0.11656539142131805, 0.001560502452775836, 0.12618660926818848, 0.09296777844429016, -0.1635167896747589, 0.07508066296577454, -0.052119527012109756, 0.12487848103046417, 0.07539684325456619, 0.07014942169189453, 0.08414649218320847, -0.18368253111839294, 0.11700394749641418, 0.10487304627895355, 0.02800055220723152, 0.04695568606257439, 0.025235692039132118, -0.017891230061650276, -0.0654522106051445, 0.05446420982480049, -0.05311370640993118, 0.05712452903389931, -0.007773557677865028, -0.08380977064371109, 0.049917034804821014, 0.03323496878147125, -0.03982073813676834, -0.11748659610748291, -0.027516860514879227, 0.031142104417085648, -0.09460175037384033, -0.10550141334533691, -0.1076766848564148, 0.09888350963592529, -0.023496244102716446, -0.03172478452324867, -0.079424649477005, -0.02333076484501362, 0.04095381125807762, -0.0908069908618927, 0.030211567878723145, 0.0401858352124691, 0.05493985489010811, 0.05021239444613457, -0.14571955800056458, -0.04469418525695801, -0.06684684753417969, -0.02785864844918251, -0.0799427404999733, -0.115885891020298, -0.0817967876791954, 0.01730976067483425, 0.12905767560005188, -0.11038513481616974, -0.05329091474413872, -0.035317979753017426, -0.03530976176261902, -0.08447292447090149, 0.09548347443342209, -0.09751955419778824, -0.07471907138824463, 0.06948152929544449, 0.06519516557455063, 0.13523080945014954, 0.01115010492503643, -0.055098991841077805, 0.061432380229234695, -0.01695140078663826, -0.02193279191851616, 0.002143522724509239, 0.02688676118850708, 0.044101182371377945, -0.1012827455997467, -0.06785373389720917, 0.0071341549046337605, -0.00686884019523859, -0.06260102242231369, -0.08335057646036148, 0.005905168130993843, -0.00462817307561636, -0.005449875257909298, 0.11611191928386688, -0.058067284524440765, -0.07852648943662643, -0.05751374736428261, -0.07887564599514008, 0.03243430703878403, -0.11216480284929276, -0.10152788460254669, -0.09157948195934296, -0.10186417400836945, 0.030400147661566734, 0.024274146184325218, -0.059274569153785706, 0.09958464652299881, 0.004279384855180979, 0.012885280884802341, 0.05345452204346657, 0.07525105029344559, 0.05195050314068794, 0.07094147801399231, 0.016065845265984535, -0.08114311099052429, -0.04386943578720093, -0.0706167221069336, -0.09284356981515884, 0.05524399131536484, -0.11657507717609406, -0.06267867982387543, -0.12448107451200485, 0.014570039696991444, -0.060278523713350296, -0.062324170023202896, 0.021960744634270668, -0.06156131625175476, -0.024537496268749237, 0.07079125195741653, -0.030648890882730484, 0.03620247542858124, -0.05126575753092766, -0.022038938477635384, 0.0802760198712349, 0.0351305827498436, 0.009470444172620773, 0.13622352480888367, -0.07998067885637283, -0.017814036458730698, 0.03076237253844738, 0.13213646411895752, -0.01763683184981346, -0.14117124676704407, -0.00423073535785079, 0.13369660079479218, -0.0962856188416481, -0.07876899838447571], -mul:[0.04029886797070503, -0.13993561267852783, 0.08295317739248276, 0.11164766550064087, 0.08822890371084213, 0.05652236193418503, 0.05068834498524666, -0.06732310354709625, -0.012396545149385929, 0.020287413150072098, 0.007703256327658892, 0.11803082376718521, 0.0637086033821106, -0.008859781548380852, -0.019448518753051758, -0.014870782382786274, -0.01470125000923872, -0.11292427778244019, 0.05620346963405609, -0.008908380754292011, 0.03926268219947815, -0.06780525296926498, -0.060340605676174164, 0.1515045017004013, -0.04481518641114235, -0.06213517487049103, -0.0024739352520555258, -0.09626992791891098, -0.15770110487937927, 0.08704275637865067, 0.01408911682665348, -0.018505625426769257, 0.1157039925456047, 0.0801393985748291, 0.10777547955513, 0.04907868802547455, 0.003530965419486165, 0.03846508637070656, 0.07835724949836731, -0.133635014295578, -0.07814870774745941, 0.003326679579913616, 0.039974991232156754, 0.12259656190872192, -0.06526309996843338, 0.12118943780660629, 0.00995626114308834, -0.009701323695480824, 0.0024364262353628874, 0.15233057737350464, 0.14222101867198944, 0.013721907511353493, 0.11630570888519287, -0.10125596821308136, 0.09280616044998169, 0.008043729700148106, -0.1123787984251976, -0.08745879679918289, 0.12181446701288223, -0.10070785135030746, 0.06486111879348755, 0.018501518294215202, 0.09048870950937271, 0.04422900080680847, 0.10376778244972229, -0.025849543511867523, -0.15071794390678406, 0.061972279101610184, -0.07509295642375946, 0.004999563563615084, 0.0563964881002903, 0.08185310661792755, -0.07768996059894562, 0.10308694839477539, -0.009544330649077892, -0.0884050726890564, -0.03137325868010521, -0.017628958448767662, 0.0929722711443901, 0.09271680563688278, 0.10307881981134415, 0.08355921506881714, 0.09401295334100723, -0.1411053091287613, 0.08535598963499069, 0.04829034209251404, 0.014013244770467281, 0.06926675885915756, -0.03410634025931358, 0.17074459791183472, -0.13112156093120575, -0.005217972677201033, -0.050046999007463455, -0.10414847731590271, -0.08080902695655823, -0.12899458408355713, -0.07791673392057419, -0.062083762139081955, -0.0086259376257658, 0.14507628977298737, 0.028394127264618874, -0.008221223950386047, 0.10347115993499756, 0.009009006433188915, 0.08903911709785461, 0.07148518413305283, -0.10393953323364258, -0.07668570429086685, 0.05652564391493797, 0.06050493195652962, 0.002516615903005004, -0.07677212357521057, 0.03015371598303318, -0.07520383596420288, 0.05125698447227478, -0.055093515664339066, 0.012392032891511917, -0.03150105103850365, 0.09470107406377792, -0.01721467822790146, 0.06514713168144226, 0.1309140920639038, 0.039335913956165314, 0.0219418965280056, -0.05699753388762474, -0.07020477950572968, -0.009414399974048138, 0.029648706316947937, 0.05466596037149429, 0.004844641778618097, -0.10097081959247589, -0.14283400774002075, -0.07797165215015411, 0.13966378569602966, -0.06040278822183609, -0.12710565328598022, -0.03437260165810585, -0.15103021264076233, 0.010142036713659763, 0.13255922496318817, 0.09485337883234024, 0.13427777588367462, 0.13765189051628113, -0.09854273498058319, 0.18505437672138214, 0.015303323045372963, -0.07818049192428589, -0.06734452396631241, 0.02948867157101631, 0.0035633586812764406, -0.029776547104120255, 0.008916087448596954, -0.014110300689935684, -0.08052856475114822, 0.0984506905078888, 0.013059179298579693, 0.06445235013961792, -0.17930471897125244, 0.1552203744649887, -0.03946586698293686, -0.01798274740576744, -0.003643386298790574, 0.007248968817293644, 0.011486397124826908, 0.04118923097848892, -0.010302582755684853, 0.011599184013903141, 0.12967275083065033, 0.10022924095392227, 0.08557584881782532, 0.10484878718852997, -0.03940090537071228, 0.03689223900437355, 0.05947086215019226, 0.06265541911125183, 0.0012754047056660056, 0.13329823315143585, 0.12021365761756897, 0.12177730351686478, 0.031762510538101196, -0.11189717799425125, 0.20779776573181152, -0.1142720952630043, -0.026512445881962776, 0.027399731799960136, -0.025241531431674957, -0.041012175381183624, -0.013453884981572628, 0.083720363676548, -0.03814217820763588, -0.10891643911600113, 0.04483863338828087, -0.12453846633434296, 0.09217648953199387, 0.0921223983168602, 0.013388169929385185, 0.03804321959614754, -0.11435146629810333, -0.018710250034928322, 0.011367879807949066, 0.07538890093564987, -0.10344944149255753, -0.008800901472568512, -0.12000174075365067, 0.01965380273759365, -0.07026107609272003, -0.0826343297958374, 0.12580177187919617, 0.07901114970445633, 0.018852585926651955, -0.026241330429911613, -0.222270205616951, -0.08108352869749069, 0.025182856246829033, -0.06832394003868103, -0.06940695643424988, -0.03866107761859894, 0.02504272572696209, -0.0680093839764595, -0.039059825241565704, 0.007117089349776506, -0.037081278860569, 0.005537279415875673, 0.09735877066850662, -0.06223585456609726, 0.08580143749713898, 0.0017236368730664253, 0.07636459171772003, -0.09588746726512909, 0.01078861951828003, -0.004817880690097809, 0.027691729366779327, 0.02285013720393181, -0.023791953921318054, 0.03460824862122536, -0.0695824846625328, 0.16345183551311493, 0.020335031673312187, -0.04448441043496132, 0.013030316680669785, -0.012880760245025158, -0.02426653355360031, 0.0002748897240962833, -0.041963160037994385, -0.0071625905111432076, -0.02941475808620453, 0.04646504297852516, -0.046550069004297256, -0.07796459645032883, -0.0711749866604805, -0.026581596583127975, -0.025302590802311897, -0.09719929099082947, -0.06443382054567337, -0.05546111240983009, -0.046840354800224304, 0.015339046716690063, -0.11581911891698837, -0.030392365530133247, 0.0574190691113472, -0.15093481540679932, 0.016652237623929977, -0.009933765977621078, -0.021336263045668602, 0.007805697154253721, 0.05434587597846985, 0.019406970590353012, -0.05457525700330734, -0.04418007656931877, 0.014280350878834724, 0.0213889479637146, -0.11191792786121368, 0.1219780370593071, -0.10853690654039383, 0.13926446437835693, 0.01668044738471508, -0.0005155892577022314, 0.041756920516490936, -0.09322796016931534, -0.06446680426597595, -0.01837419532239437, 0.033542927354574203, -0.03159477934241295, 0.04790274053812027, -0.06105924770236015, 0.11278679221868515, 0.05779700353741646, -0.08577089011669159, 0.008215844631195068, 0.0640297532081604, 0.14302344620227814, -0.02078135684132576, 0.03371669724583626, 0.0741942971944809, -0.026593007147312164, -0.01241463515907526, -0.1246718019247055, -0.034891460090875626, -0.0752534568309784, -0.07756223529577255], -or:[0.033269237726926804, -0.11944009363651276, 0.07721928507089615, 0.10259545594453812, 0.0469885915517807, 0.0037249731831252575, -0.017588719725608826, -0.05990005284547806, 0.023168498650193214, 0.018275607377290726, 0.10806090384721756, 0.10529842227697372, -0.038615088909864426, -0.004582129884511232, 0.04792084917426109, 0.010971707291901112, -0.022426456212997437, -0.10839829593896866, -0.03078276664018631, -0.00917815137654543, -0.008924884721636772, -0.050659094005823135, -0.057851433753967285, 0.14337407052516937, -0.03180765360593796, 0.07655593007802963, -0.0017943804850801826, -0.08862114697694778, -0.11775221675634384, -0.023177023977041245, 0.06972059607505798, -0.017965350300073624, 0.09034323692321777, 0.20400457084178925, 0.10625011473894119, 0.037152841687202454, 0.0015322542749345303, 0.00040005575283430517, 0.0745319128036499, -0.12321546673774719, 0.0535607747733593, -0.011540588922798634, 0.05338027700781822, -0.10040301084518433, -0.06269236654043198, -0.05089670047163963, -0.060279011726379395, -0.00791274756193161, -0.003191073192283511, 0.05936506390571594, 0.1445910632610321, 0.01467371266335249, 0.20176322758197784, 0.18019981682300568, 0.03034154139459133, 0.0049817911349236965, 0.056762292981147766, 0.027374794706702232, -0.054713599383831024, -0.09113387018442154, 0.11007442325353622, -0.0007681105635128915, 0.039960410445928574, 0.04145181179046631, 0.07364490628242493, -0.024189770221710205, -0.07810468226671219, -0.0663493201136589, -0.026820635423064232, 0.03943680599331856, -0.03204101696610451, -0.08879927545785904, -0.037158235907554626, -0.010907339863479137, 0.10084210336208344, -0.061569418758153915, -0.2848161458969116, 0.07116000354290009, 0.08933285623788834, -0.10974162817001343, 0.0409981831908226, 0.05136992782354355, 0.035471729934215546, -0.0073036737740039825, 0.062100376933813095, 0.023040739819407463, 0.058605220168828964, 0.06384465843439102, -0.04801476001739502, -0.08571301400661469, -0.06844725459814072, -0.09983115643262863, -0.04773176833987236, 0.18011851608753204, -0.0404045544564724, 0.23900343477725983, 0.08823339641094208, -0.05845385417342186, -0.041716720908880234, 0.10226196050643921, 0.024051163345575333, 0.08268117159605026, 0.013598110526800156, -0.10926703363656998, 0.0845906212925911, -0.03867634758353233, -0.05728079378604889, -0.06055499240756035, 0.043360039591789246, 0.09400693327188492, -0.014678837731480598, -0.0647808313369751, -0.045670073479413986, -0.06825684010982513, 0.009385352954268456, 0.06222662329673767, 0.01730424538254738, -0.030483977869153023, 0.07584397494792938, -0.04462948814034462, -0.15254952013492584, 0.10901088267564774, 0.02852710336446762, 0.06119585782289505, -0.05803963541984558, -0.06608026474714279, 0.04936309903860092, 0.01973763108253479, 0.043992072343826294, -0.07408572733402252, -0.06556183844804764, -0.08824747800827026, 0.1501053422689438, 0.09253820031881332, -0.04296001046895981, 0.19389094412326813, 0.054157231003046036, -0.05607544630765915, 0.06969675421714783, 0.06680496782064438, 0.08262898027896881, 0.03216535970568657, -0.15927380323410034, -0.040553219616413116, -0.11117120087146759, 0.013583834283053875, -0.07638539373874664, 0.07507913559675217, -0.059178419411182404, -0.042800139635801315, 0.027230871841311455, -0.029419980943202972, -0.009159437380731106, -0.18367430567741394, 0.08992315083742142, 0.12322645634412766, -0.058954399079084396, -0.06542536616325378, -0.04859296977519989, -0.06829680502414703, 0.08202311396598816, -0.16852718591690063, 0.005224776454269886, 0.0409102626144886, 0.034174978733062744, -0.08717480301856995, -0.011520173400640488, 0.11586973071098328, 0.08183532953262329, -0.06098533421754837, 0.04519028961658478, -0.04749050736427307, 0.05118824169039726, -0.07954247295856476, 0.022105751559138298, 0.009537757374346256, -0.0724218413233757, -0.04381324723362923, 0.09999649971723557, -0.03131488338112831, 0.028432222083210945, -0.06351403146982193, -0.014810602180659771, -0.023803727701306343, 0.05186377838253975, 0.012190164998173714, -0.04696444422006607, -0.013825456611812115, 0.06633839756250381, -0.03499935194849968, -0.034519147127866745, 0.04003123193979263, -0.03819825500249863, -0.0434606559574604, -0.014082794077694416, -0.004751558415591717, -0.026817303150892258, -0.07605019211769104, 0.09789209812879562, -0.015190446749329567, 0.001608596765436232, -0.03318079188466072, -0.11475671827793121, -0.02414868213236332, -0.09473716467618942, -0.07611149549484253, 0.014620944857597351, 0.12157992273569107, 0.1011275127530098, -0.12222870439291, 0.07750391960144043, 0.0647684708237648, 0.05097079277038574, 0.02360946126282215, -0.03377654403448105, -0.08376260101795197, 0.08338994532823563, 0.036098964512348175, 0.0348140224814415, 0.1341158002614975, 0.14661669731140137, -0.03154816851019859, 0.005005155690014362, -0.0030065213795751333, 0.13352029025554657, 0.060012880712747574, 0.0241005290299654, 0.06402981281280518, 0.023538097739219666, 0.02393513172864914, -0.055257562547922134, -0.12524235248565674, 0.025146735832095146, 0.027424246072769165, 0.08551844954490662, -0.015011226758360863, -0.0018280380172654986, -0.05875366926193237, -0.06461203098297119, 0.006339324172586203, -0.0018638254841789603, -0.12014521658420563, -0.06784181296825409, 0.018174638971686363, 0.019467521458864212, 0.0039241923950612545, -0.010958646424114704, -0.049107953906059265, -0.14617818593978882, 0.04028574377298355, -0.019531363621354103, -0.01625908724963665, -0.03305880352854729, -0.054520539939403534, -0.00638773525133729, -0.04559297859668732, 0.019140709191560745, -0.0040380810387432575, -0.0270736925303936, 0.054183825850486755, -0.14619660377502441, 0.08442237228155136, -0.024243364110589027, 0.08477703481912613, 0.0701388418674469, -0.03548465669155121, 0.017653873190283775, -0.03172469139099121, 0.06925927847623825, -0.07263828068971634, 0.06381551176309586, -0.004346280824393034, 0.09797994792461395, 0.011010878719389439, 0.12416539341211319, 0.02340562641620636, 0.05381272733211517, -0.022804709151387215, 0.08783253282308578, -0.08054638653993607, -0.012202913872897625, 0.006790562067180872, -0.02142225205898285, 0.03206220641732216, -0.05629792809486389, 0.035766564309597015, 0.03676135838031769, 0.04722517356276512, 0.016545362770557404, 0.025398271158337593, 0.16609646379947662, -0.0187955591827631, 0.030760273337364197, 0.06869236379861832, -0.005033449269831181, -0.002994360402226448, -0.09155654907226562, 0.001122662564739585, -0.10253319889307022, -0.12478995323181152], -phi:[0.08439351618289948, 0.008782920427620411, 0.1825273633003235, 0.06334822624921799, -0.028149668127298355, -0.14717590808868408, -0.020493630319833755, 0.1218930035829544, -0.07226622104644775, -0.12716546654701233, -0.007422169670462608, 0.12237776815891266, 0.11000128090381622, 0.021551495417952538, 0.02899828739464283, 0.06228567659854889, -0.13469646871089935, -0.08515796810388565, -0.002414045389741659, 0.02005530521273613, -0.06085789203643799, 0.17003189027309418, -0.0032096460927277803, -0.021459152922034264, 0.10487872362136841, 0.12743070721626282, -0.12760841846466064, -0.09445814788341522, 0.11379949748516083, 0.011178500950336456, -0.02102171815931797, -0.026644641533493996, 0.08585842698812485, -0.03852050006389618, 0.07309841364622116, -0.06449960917234421, -0.011578083969652653, -0.13323244452476501, 0.015549484640359879, -0.00429376307874918, 0.032750166952610016, 0.10701467841863632, 0.009220865555107594, -0.1609833538532257, -0.07488061487674713, 0.05797712132334709, 0.14756600558757782, 0.061225224286317825, -0.0022054186556488276, 0.09523510932922363, -0.15761640667915344, 0.003935844637453556, 0.011453135870397091, 0.09072784334421158, 0.06085195392370224, -0.12625406682491302, 0.06227016821503639, -0.10335233807563782, -0.007405424956232309, -0.10127810388803482, 0.06415077298879623, -0.07982959598302841, -0.09017506241798401, -0.041219841688871384, 0.10880114883184433, -0.06334670633077621, -0.036238446831703186, -0.11469197273254395, 0.10816193372011185, 0.008781774900853634, 0.11671239137649536, 0.08336862921714783, -0.016409169882535934, -0.010915868915617466, -0.02361326850950718, -0.003368689911440015, 0.08359909802675247, 0.08834511041641235, 0.007868192158639431, -0.06859426200389862, -0.07526041567325592, -0.006057914812117815, 0.057798340916633606, 0.0029067834839224815, -0.17425505816936493, 0.04861506074666977, -0.12825047969818115, 0.06671950221061707, 0.08254679292440414, 0.027961863204836845, 0.0443408228456974, -0.08587588369846344, -0.048848170787096024, 0.021749159321188927, 0.04367737099528313, -0.12260692566633224, 0.022161899134516716, 0.008489839732646942, 0.06965284049510956, 0.027727967128157616, 0.13203641772270203, 0.03216584026813507, 0.09219472855329514, -0.022537237033247948, 0.04360448196530342, 0.10180769115686417, 0.05456765741109848, 0.13021604716777802, 0.05381011217832565, -0.16523058712482452, 0.003826978849247098, 0.0382208488881588, 0.036766521632671356, 0.014311381615698338, 0.01183790061622858, 0.05715281888842583, -0.10789091140031815, 0.07938466966152191, -0.01961519755423069, 0.0532548762857914, 0.08338195830583572, -0.07573652267456055, -0.06836742162704468, 0.0037928749807178974, -0.0586533397436142, 0.04526833817362785, -0.0229501836001873, 0.034472424536943436, 0.1634238213300705, -0.0030757191125303507, -0.01444832980632782, 0.0443267859518528, 0.10983885079622269, -0.004663498606532812, 0.05915059894323349, 0.1377788484096527, -0.009098339825868607, -0.060380253940820694, -0.11105412989854813, 0.05771014839410782, 0.007881252095103264, -0.0955200120806694, 0.08030995726585388, 0.026130234822630882, 0.01765555515885353, -0.05719844624400139, -0.19493384659290314, -0.0658450573682785, -0.062241435050964355, 0.06185024976730347, -0.05434124171733856, -0.027995996177196503, 0.0017753721913322806, 0.11872612684965134, -0.05001744255423546, 0.00961474422365427, 0.006658798549324274, 0.05408066138625145, -0.002858052495867014, 0.033814381808042526, 0.0045052990317344666, -0.013296068646013737, -0.007721695117652416, -0.04776599258184433, 0.02453528717160225, -0.01305041927844286, 0.12209869176149368, 0.0029950265306979418, -0.03091478906571865, 0.03482451289892197, 0.03228000923991203, -0.05800802633166313, 0.12475289404392242, -0.08113018423318863, 0.019604360684752464, 0.03931426629424095, 0.0778551921248436, -0.022234758362174034, -0.10797879099845886, -0.02665185183286667, -0.15969444811344147, 0.08234182745218277, -0.15569430589675903, -0.008300463669002056, -0.007701274007558823, -0.15489789843559265, 0.12018264830112457, 0.056109294295310974, 0.038238853216171265, -0.05585748329758644, 0.007183054927736521, -0.05980779230594635, 0.010394309647381306, -0.04058745503425598, 0.09256953746080399, -0.029250670224428177, -0.05842025578022003, 0.1287006288766861, -0.04986821860074997, 0.11712497472763062, 0.06485705822706223, 0.04365904629230499, 0.059437915682792664, -0.09184782207012177, 0.17094621062278748, -0.008601777255535126, -0.0820629745721817, 0.08628562837839127, -0.1200181096792221, -0.06335599720478058, -0.074809230864048, 0.035097405314445496, 0.039021238684654236, 0.03106670081615448, 0.02259976789355278, 0.013506271876394749, 0.008091848343610764, 0.04880606383085251, 0.006258214358240366, 0.027039602398872375, -0.13413719832897186, -0.04273242875933647, 0.005110233556479216, -0.004056624136865139, 0.11712711304426193, -0.1524188071489334, -0.001508026383817196, 0.06220552325248718, -0.04547400772571564, 0.012703397311270237, 0.005431861151009798, 0.004115855786949396, 0.15073534846305847, 0.165829598903656, -0.12136668711900711, -0.10763595998287201, 0.0034609970171004534, -0.038513489067554474, 0.12873202562332153, -0.10480578243732452, -0.02952292375266552, 0.0522221215069294, -0.06832166016101837, -0.14500166475772858, 0.15267464518547058, 0.040920477360486984, -0.0533553883433342, 0.03077799268066883, -0.08151648193597794, -0.08119787275791168, -0.00907308328896761, 0.08199279755353928, -0.06295564025640488, -0.05194532498717308, 0.023883063346147537, 0.06704968959093094, -0.0010618235683068633, -0.004886259790509939, 0.011786917224526405, -0.016238417476415634, -0.07555630803108215, -0.08070676028728485, -0.07479209452867508, 0.006763783749192953, 0.019093036651611328, -0.11912071704864502, -0.09277988970279694, 0.12776193022727966, -0.017617112025618553, -0.08182524144649506, 0.10733134299516678, 0.022573186084628105, 0.08628422766923904, -0.12632597982883453, 0.06566116213798523, -0.059393420815467834, -0.11085487902164459, -0.06426991522312164, 0.03434976190328598, 0.04888179153203964, 0.1645582914352417, 0.08602475374937057, -0.13712142407894135, 0.03400389105081558, -0.0427403450012207, -0.13259148597717285, 0.17264729738235474, -0.08997850865125656, -0.002333784941583872, -0.041511744260787964, 0.10090342909097672, 0.004942160565406084, 0.03788038343191147, -0.01456660870462656, -0.16583004593849182, -0.03574936464428902, 0.009639199823141098, -0.04078039526939392, 0.030162543058395386, -0.0740339532494545], -pointer:[-0.05007125437259674, 0.10481160134077072, 0.1281336098909378, -0.04883509874343872, -0.1088307574391365, -0.10536415129899979, 0.022564295679330826, 0.03358922153711319, -0.0028583777602761984, -0.18872061371803284, -0.0665496289730072, -0.04651134833693504, 0.025952305644750595, -0.07241517305374146, 0.0014744309009984136, -0.05631256476044655, -0.17074871063232422, 0.01674366556107998, 0.058485981076955795, -0.09439457207918167, 0.054007139056921005, 0.10325025767087936, 0.023406269028782845, -0.05635829269886017, 0.0874229297041893, 0.05256646126508713, 0.07267503440380096, -0.05266904458403587, 0.05242343991994858, 0.09157207608222961, 0.0366596058011055, -0.0822635143995285, -0.012228697538375854, 0.05382462218403816, -0.007476410362869501, -0.0984574407339096, 0.027423502877354622, -0.08525941520929337, -0.06706677377223969, 0.07867225259542465, 0.11830449849367142, -0.06496088951826096, 0.07464278489351273, -0.09579310566186905, -0.016465289518237114, -0.013783409260213375, 0.10153263062238693, 0.0859447717666626, 0.08288335055112839, -0.006197181064635515, -0.1041589230298996, -0.07528367638587952, -0.04623518884181976, 0.02297673560678959, -0.07338009774684906, -0.10110895335674286, -0.052529141306877136, -0.1499456912279129, -0.09412780404090881, -0.0034607741981744766, -0.061546340584754944, -0.14677855372428894, -0.036329712718725204, -0.1059103012084961, -0.048958539962768555, -0.1281215101480484, 0.04130895808339119, -0.12045684456825256, 0.0531928688287735, -0.0697244331240654, 0.026632582768797874, 0.026617974042892456, 0.045816268771886826, 0.03355497121810913, -0.07229797542095184, -0.06526815891265869, 0.018996624276041985, 0.040849849581718445, -0.06182130053639412, -0.00716866971924901, -0.0009692084859125316, -0.05897045508027077, -0.028697991743683815, 0.05383268743753433, -0.06790843605995178, 0.11219042539596558, -0.047146935015916824, -0.04898408055305481, 0.052712004631757736, -0.042010389268398285, -0.05238901823759079, 0.020816775038838387, 0.033379629254341125, -0.01924920082092285, 0.117376409471035, -0.06316385418176651, 0.0009056787239387631, -0.07235843688249588, 0.03406408801674843, -0.07010545581579208, 0.08099257200956345, -0.06588821858167648, 0.06462728977203369, 0.029249144718050957, -0.046424198895692825, 0.02396254800260067, -0.0068957023322582245, 0.06345396488904953, 0.12524913251399994, -0.08560997992753983, -0.08651392161846161, 0.12040666490793228, -0.006166283506900072, -0.04548267647624016, -0.031868621706962585, -0.06831187009811401, -0.02706862799823284, 0.15348166227340698, -0.08731324225664139, 0.12605109810829163, 0.015963800251483917, 0.014052067883312702, -0.00502089923247695, -0.08120254427194595, 0.057292237877845764, 0.12766510248184204, -0.08611088991165161, 0.07980623096227646, -0.04881943017244339, -0.06411775946617126, -0.06174452602863312, -0.01665794663131237, 0.04526983201503754, -0.054838426411151886, 0.03954141587018967, 0.07829100638628006, -0.04415600001811981, -0.09091392904520035, -0.0716640055179596, -0.04016640782356262, -0.1071070209145546, -0.14682483673095703, 0.038317177444696426, 0.09943606704473495, -0.05444353073835373, -0.12223530560731888, 0.038150396198034286, 0.042275551706552505, -0.09995271265506744, -0.043446507304906845, -0.013354596681892872, 0.06355347484350204, -0.054414864629507065, 0.04940713196992874, -0.02613256126642227, 0.05705340579152107, 0.08151687681674957, -0.007221193052828312, 0.07078762352466583, -0.03134044632315636, -0.053627289831638336, -0.08591686934232712, 0.10283569991588593, 0.015468372963368893, 0.11804980039596558, -0.033763568848371506, 0.19012853503227234, -0.08398459106683731, -0.10957848280668259, 0.07714978605508804, -0.05348188057541847, 0.05855606496334076, 0.07294639945030212, -0.1413201242685318, 0.07254429906606674, -0.02520091086626053, 0.042943697422742844, 0.040052611380815506, -0.03791384771466255, 0.08279530704021454, -0.08960703015327454, -0.010376202873885632, -0.07548477500677109, 0.08791808784008026, -0.044082410633563995, -0.10602706670761108, 0.162952721118927, 0.11212517321109772, -0.019113481044769287, 0.06931395828723907, -0.07527453452348709, -0.03330134227871895, 0.0760374516248703, 0.004435869865119457, -0.07613793760538101, 0.019652802497148514, -0.022501137107610703, 0.02142707258462906, -0.11998111009597778, 0.07688654959201813, 0.01976943388581276, 0.09672573208808899, -0.0007146971765905619, -0.13152392208576202, -0.05194692313671112, -0.07922377437353134, -0.1524820625782013, -0.01916543021798134, -0.04792897775769234, 0.00042391722672618926, -0.026851123198866844, -0.007410526741296053, 0.11218307167291641, -0.020000794902443886, 0.05720565840601921, -0.09385018795728683, 0.08513050526380539, -0.021738454699516296, 0.02805892378091812, -0.015450412407517433, -0.056791357696056366, -0.1031678169965744, 0.07548581808805466, -0.0833422988653183, 0.05947640538215637, 0.03901007026433945, -0.048566948622465134, 0.1429402232170105, 0.060964085161685944, -0.07932495325803757, 0.09934128820896149, -0.08259005844593048, 0.15917807817459106, 0.07835054397583008, -0.0785120278596878, -0.09062143415212631, -0.03290507569909096, 0.05882029980421066, 0.08662619441747665, -0.16724823415279388, 0.08171606063842773, 0.11652179807424545, 0.023193934932351112, -0.06852137297391891, 0.10065238922834396, 0.09466251730918884, 0.019897446036338806, 0.0956532210111618, 0.01661154441535473, -0.04567888006567955, -0.07332448661327362, 0.06930077075958252, 0.05345286428928375, -0.12595334649085999, 0.1015295684337616, 0.10778998583555222, 0.07918885350227356, -0.05157475173473358, -0.09591197222471237, -0.116968534886837, -0.03772034868597984, -0.0236660148948431, 0.07720492780208588, -0.05475839599967003, -0.05315961688756943, 0.0197654627263546, 0.06531679630279541, -0.05524113029241562, 0.07335939258337021, -0.041159965097904205, 0.06349505484104156, 0.08572793006896973, -0.02320690266788006, -0.08985233306884766, -0.010175407864153385, -0.028186852112412453, -0.03583017364144325, -0.11631974577903748, 0.09717735648155212, 0.12680567800998688, 0.10108507424592972, 0.05402463302016258, -0.1949215680360794, 0.08374106884002686, -0.12005271017551422, -0.06261463463306427, 0.11611577123403549, -0.13095887005329132, -0.07858045399188995, 0.013654312118887901, 0.04944715276360512, -0.08111494034528732, -0.03597128763794899, -0.07805236428976059, -0.0992848128080368, 0.06886196881532669, 0.07202207297086716, -0.0789816826581955, 0.09448474645614624, 0.028400646522641182], -pointerTy:[0.08077707141637802, 0.13142389059066772, 0.06553234159946442, 0.06467726826667786, -0.12152004987001419, 0.09059609472751617, -0.05714036151766777, -0.08048414438962936, -0.010936225764453411, 0.06379743665456772, -0.035956207662820816, -0.08566100895404816, -0.036700714379549026, 0.08033373206853867, -0.013613118790090084, 0.10829465836286545, -0.0386771522462368, 0.12380383908748627, -0.11937548220157623, -0.09429897367954254, 0.049807820469141006, 0.01781083084642887, 0.10825267434120178, -0.07242170721292496, 0.13288012146949768, 0.022791361436247826, -0.1056770384311676, -0.04104671627283096, 0.009867306798696518, -0.02305334433913231, 0.040896885097026825, 0.06773632019758224, -0.08574896305799484, 0.03853873908519745, -0.04504799842834473, -0.014204286970198154, 0.08759244531393051, 0.08894245326519012, -0.11512825638055801, 0.09587939828634262, 0.1630876511335373, 0.07352074235677719, -0.10114072263240814, 0.043897662311792374, -0.010693730786442757, 0.00273072998970747, -0.11386978626251221, -0.046427059918642044, 0.08796258270740509, -0.1094626784324646, 0.0515316016972065, 0.11354921013116837, -0.02728346176445484, 0.006671259645372629, -0.10178384184837341, 0.1181560531258583, -0.06216684728860855, 0.08744063973426819, 0.05028723180294037, 0.13000886142253876, -0.09871964156627655, 0.10636615753173828, -0.0829983726143837, -0.06928586214780807, -0.01026644092053175, -0.11486168205738068, 0.027054980397224426, 0.09535832703113556, -0.019206633791327477, 0.08602951467037201, -0.009930920787155628, -0.11075320094823837, -0.055192433297634125, -0.055574242025613785, -0.018672091886401176, 0.12072855979204178, 0.003306446596980095, 0.10355180501937866, -0.03955584391951561, 0.017801521345973015, -0.08913540840148926, -0.06269682198762894, -0.09109147638082504, -0.028319478034973145, -0.020103055983781815, -0.08164862543344498, 0.026001038029789925, -0.0743943527340889, 0.12414750456809998, -0.03204403445124626, 0.0019078488694503903, -0.013437309302389622, 0.13060027360916138, -0.021326597779989243, -0.11949817836284637, -0.04325466975569725, 0.10042976588010788, -0.014710807241499424, -0.09087381511926651, -0.10002265870571136, 0.066007599234581, -0.111485056579113, -0.05130952596664429, 0.01946909725666046, -0.0989956483244896, -0.08952640742063522, 0.07252172380685806, 0.0035215062089264393, -0.04351434111595154, 0.08214811980724335, 0.08438703417778015, 0.033710457384586334, -0.07058511674404144, -0.032983601093292236, 0.024917475879192352, 0.016136061400175095, 0.04934695363044739, 0.13892081379890442, -0.09001477062702179, 0.10497038811445236, -0.009724101051688194, -0.07248499989509583, -0.0016715101664885879, -0.1178368479013443, 0.07556433975696564, 0.1230059266090393, -0.0994580015540123, -0.018500618636608124, -0.1124996766448021, 0.10363984853029251, 0.030558042228221893, 0.08619233220815659, 0.05202273279428482, 0.00981347169727087, 0.07223602384328842, 0.013411267660558224, 0.05465184152126312, 0.012281598523259163, -0.1374562382698059, -0.10168870538473129, -0.11620838195085526, 0.07853378355503082, 0.012078051455318928, 0.07892750203609467, 0.04073053598403931, 0.029206832870841026, 0.06771641969680786, 0.07222452014684677, -0.03356511890888214, -0.06996186077594757, 0.009271739982068539, 0.07991756498813629, -0.06029701232910156, 0.008476253598928452, -0.094336599111557, 0.0220856424421072, 0.09627656638622284, 0.013089226558804512, 0.0023978499229997396, -0.03209554776549339, -0.01736045628786087, 0.02716613933444023, 0.10734066367149353, -0.02212394028902054, -0.08069407194852829, 0.08061584830284119, -0.11553998291492462, -0.08299887180328369, -0.13796871900558472, 0.06647048890590668, -0.060679614543914795, 0.13513913750648499, -0.11948593705892563, 0.0372316874563694, -0.031581811606884, -0.008290721103549004, -0.01950026862323284, 0.031350504606962204, 0.0012325560674071312, 0.11543415486812592, -0.005250659305602312, 0.004821302369236946, 0.07595367729663849, 0.11721572279930115, -0.09892885386943817, 0.08169339597225189, 0.0021092600654810667, -0.10215464979410172, -0.0915929451584816, 0.09684598445892334, -0.01507345400750637, 0.09603378921747208, 0.04369911924004555, 0.07738221436738968, 0.06582080572843552, 0.011590753681957722, 0.0712549164891243, 0.033895403146743774, 0.03523141145706177, -0.11248426139354706, 0.005889383144676685, -0.046429917216300964, -0.045019228011369705, 0.08366086333990097, -0.03923754021525383, 0.012715526856482029, -0.03950273245573044, -0.0653647929430008, -0.038896769285202026, -0.03509468585252762, 0.15039682388305664, 0.006009681150317192, -0.041835300624370575, -0.011478118598461151, -0.016999714076519012, 0.11123858392238617, -0.04031090810894966, -0.009650747291743755, 0.09212803840637207, -0.02488502487540245, -0.017890485003590584, -0.11862332373857498, 0.03994176909327507, -0.1282004565000534, -0.07932177186012268, -0.04477719962596893, 0.09899135679006577, -0.11992528289556503, -0.07875513285398483, -0.06009924039244652, 0.10943038016557693, -0.08100583404302597, 0.08869022130966187, -0.11950980126857758, 0.14532774686813354, 0.07829577475786209, -0.03963484987616539, 0.07656485587358475, 0.0893082320690155, -0.1080673560500145, -0.09225086122751236, 0.02002876251935959, 0.05767038092017174, -0.010947393253445625, 0.08465965837240219, -0.10800504684448242, -0.027308296412229538, 0.11904395371675491, 0.08539510518312454, 0.12679505348205566, -0.014358854852616787, -0.10820715874433517, 0.09666036814451218, 0.0656813532114029, 0.10696183890104294, 0.038125794380903244, -0.05682843178510666, 0.01495099812746048, -0.10301414132118225, -0.06963635236024857, -0.04812399297952652, -0.055877070873975754, 0.13163916766643524, -0.09560471028089523, -0.028819216415286064, 0.0483480766415596, -0.1388273537158966, -0.03067382052540779, -0.11830095201730728, -0.009081249125301838, -0.09273657202720642, 0.006703215651214123, -0.06565696001052856, 0.09420889616012573, -0.10826004296541214, 0.11653269082307816, -0.04356822744011879, 0.15656772255897522, -0.03145584836602211, 0.09616712480783463, 0.05548578500747681, -0.10188847780227661, -0.07235123217105865, 0.10222799330949783, 0.08026649802923203, -0.03807147592306137, 0.06018378585577011, 0.06742683053016663, 0.1531568020582199, -0.021541228517889977, 0.008445750921964645, -0.10113836824893951, 0.13156293332576752, -0.07967810332775116, 0.03556463494896889, 0.0726570412516594, 0.034156668931245804, 0.013563047163188457, 0.0955616757273674, 0.09659669548273087], -ptrtoint:[0.0755034014582634, -0.13318714499473572, 0.11728387326002121, 0.10609181225299835, 0.08205189555883408, 0.06319507211446762, -0.09744430333375931, -0.09027449786663055, -0.09063363820314407, 0.025948822498321533, -0.0075497254729270935, 0.12347685545682907, -0.08918027579784393, 0.12039633840322495, -0.07639189064502716, -0.07658819854259491, -0.014797087758779526, 0.010376459918916225, -0.10025118291378021, 0.03994887322187424, 0.03646038472652435, -0.045370135456323624, -0.059175215661525726, 0.14057818055152893, -0.020846184343099594, 0.02322075515985489, -0.002410684246569872, 0.09537893533706665, -0.1536814421415329, -0.10553272813558578, 0.08343774825334549, -0.015286855399608612, 0.12844623625278473, 0.010059492662549019, 0.08294554054737091, -0.013037695549428463, 0.051890723407268524, 0.08007000386714935, 0.0638352781534195, -0.12437646090984344, -0.004664398729801178, -0.06712114065885544, -0.0806104764342308, -0.05967587232589722, 0.046921808272600174, 0.03219061717391014, 0.05994471162557602, -0.01737293228507042, -0.0025587265845388174, 0.09023377299308777, -0.10616719722747803, -0.0750354453921318, 0.10057306289672852, -0.08699846267700195, -0.06060189753770828, 0.010553951375186443, 0.04847488924860954, -0.11816497147083282, 0.1416569948196411, -0.07888064533472061, -0.12072906643152237, 0.014228281565010548, 0.06692168861627579, 0.04125284031033516, -0.008847540244460106, -0.03224523365497589, 0.09874675422906876, 0.04476967826485634, -0.06033986061811447, -0.005269690416753292, -0.08821988105773926, 0.08190176635980606, -0.04859701544046402, -0.07317015528678894, -0.03380252420902252, 0.08864673227071762, -0.054559964686632156, 0.0011307885870337486, 0.08931851387023926, 0.12300189584493637, 0.0957542136311531, -0.014450320042669773, -0.11412587016820908, 0.06419993191957474, 0.1095571368932724, 0.0982806608080864, -0.15072016417980194, 0.06933464109897614, -0.09961962699890137, 0.009508073329925537, -0.035858578979969025, 0.020251736044883728, -0.04528680443763733, 0.07946259528398514, -0.020802350714802742, 0.028681663796305656, 0.011115685105323792, -0.024407722055912018, 0.14039437472820282, 0.10448745638132095, -0.1098051369190216, -0.10944486409425735, 0.014383013360202312, -0.1340642124414444, -0.0862857773900032, 0.09216459840536118, -0.06575518846511841, -0.07962614297866821, 0.06770849227905273, 0.09781447798013687, 0.12494545429944992, -0.0670258104801178, 0.1182439848780632, -0.08965461701154709, -0.09112710505723953, -0.13874052464962006, 0.014311461709439754, -0.026415027678012848, 0.11324837803840637, -0.09459560364484787, -0.039814259856939316, 0.12711133062839508, 0.026958085596561432, 0.05355122685432434, -0.0437282994389534, 0.04272925853729248, -0.02864493988454342, 0.034578464925289154, 0.024490362033247948, 0.03899463266134262, -0.010570794343948364, 0.015063831582665443, -0.02551805041730404, -0.00613680062815547, 0.10383986681699753, 0.01912696287035942, -0.02844216860830784, 0.07180164009332657, -0.010328185744583607, 0.05604982376098633, 0.08484622836112976, -0.017938954755663872, -0.010099336504936218, -0.01252290140837431, 0.04337821155786514, -0.003738922532647848, -0.02322705276310444, -0.05038106441497803, 0.10260633379220963, 0.04549461603164673, -0.07683705538511276, 0.0079893097281456, -0.11493907868862152, -0.013224137015640736, 0.09236761927604675, -0.09963271021842957, -0.01728913187980652, 0.04767535626888275, -0.09441834688186646, -0.13423693180084229, -0.05142361670732498, -0.08601106703281403, -0.006065545603632927, -0.05606433376669884, 0.037942398339509964, -0.0717846155166626, -0.03262579068541527, 0.1196788102388382, 0.10463975369930267, -0.11770257353782654, 0.09825457632541656, -0.045176912099123, 0.08484277129173279, 0.0023682124447077513, 0.16375164687633514, 0.06006084755063057, 0.06798559427261353, -0.09331892430782318, 0.10708305239677429, 0.031382422894239426, 0.05356934294104576, 0.13154414296150208, -0.023214023560285568, -0.020019887015223503, -0.08160881698131561, -0.016325436532497406, -0.023073023185133934, 0.017771007493138313, 0.07311863452196121, 0.032532792538404465, -0.12161866575479507, 0.0718858391046524, -0.03164311870932579, -0.15578097105026245, 0.11027482897043228, -0.08232730627059937, -0.029863355681300163, -0.008476411923766136, 0.05814206227660179, 0.0009512908291071653, -0.06296174228191376, -0.044551264494657516, -0.07886344194412231, 0.11367031931877136, -0.0717310905456543, -0.06711477786302567, 0.07364346832036972, 0.08690527826547623, -0.049533694982528687, 0.06320251524448395, -0.07329433411359787, 0.04639758542180061, -0.0704674944281578, -0.06720618903636932, 0.04063250496983528, -0.08392863720655441, 0.014620310626924038, 0.1800362914800644, -0.01668156310915947, 0.025364529341459274, 0.15870757400989532, -0.0386352501809597, -0.07295580208301544, 0.10383696109056473, 0.028491532430052757, 0.12095574289560318, 0.05882750451564789, 0.06951656192541122, -0.05870186910033226, 0.009914180263876915, -0.0009365085861645639, 0.00714900391176343, -0.12393930554389954, -0.025271065533161163, -0.12596355378627777, -0.0389711931347847, 0.17141368985176086, -0.039337750524282455, -0.07048353552818298, 0.019138293340802193, -0.11712070554494858, -0.04035845771431923, -0.11044613271951675, 0.04606499522924423, -0.0034507750533521175, 0.03044752962887287, 0.1166941374540329, -0.04382053017616272, 0.12589077651500702, -0.03608774021267891, -0.10650618374347687, -0.05468306317925453, -0.0693170353770256, -0.05195687338709831, -0.0060967267490923405, 0.09474004060029984, 0.10704147070646286, 0.139323890209198, -0.045770738273859024, -0.08679458498954773, 0.03508707880973816, 0.05732601508498192, 0.024084491655230522, 0.10720575600862503, -0.004369908478111029, 0.04310198500752449, 0.0179397352039814, -0.09728647023439407, -0.019019190222024918, 0.03480396792292595, -0.006586999166756868, 0.059547655284404755, 0.12352487444877625, -0.01597704365849495, -0.04197143763303757, -0.021487180143594742, 0.00630975654348731, -0.04301336407661438, 0.03451012820005417, 0.09108997136354446, -0.0035825055092573166, 0.14344774186611176, 0.02893129363656044, 0.0332459956407547, -0.0632285550236702, 0.016679881140589714, 0.056003738194704056, -0.10048330575227737, 0.01289862859994173, 0.010112331248819828, 0.032191187143325806, -0.07918751239776611, 0.04010731354355812, 0.07254434376955032, -0.016289114952087402, 0.04042588174343109, 0.030031787231564522, 0.008419404737651348, -0.07061424851417542, 0.0106875691562891], -resume:[-0.10422296077013016, 0.023598045110702515, 0.07672341167926788, -0.1265919953584671, -0.03780003637075424, -0.09705714136362076, -0.04509396851062775, 0.0010512210428714752, -0.08221039921045303, -0.1492229551076889, -0.01604083739221096, -0.13717840611934662, 0.06357928365468979, -0.010382304899394512, -0.044825464487075806, -0.012002618983387947, 0.08563284575939178, -0.08173541724681854, 0.0022163642570376396, 0.01514428947120905, -0.06222395598888397, -0.05553165450692177, -0.028423340991139412, 0.004886069800704718, -0.032041940838098526, -0.017657682299613953, -0.059216372668743134, -0.006237031426280737, 0.11581417173147202, -0.0016220377292484045, 0.1184268370270729, 0.1263546347618103, 0.08838032931089401, 0.037345319986343384, -0.009361458010971546, 0.031165292486548424, -0.04041774570941925, -0.1367539018392563, 0.021663131192326546, 0.009385433979332447, 0.07065070420503616, -0.10814355313777924, -0.07191784679889679, 0.024938710033893585, -0.05373669043183327, -7.703986193519086e-05, -0.017855146899819374, -0.026742063462734222, -0.0019686815794557333, 0.09186064451932907, -0.08325615525245667, -0.11419250071048737, -0.05504373088479042, -0.07059087604284286, 0.004454117733985186, -0.011718749068677425, 0.060551125556230545, -0.10072732716798782, -0.02209249883890152, -0.04071050509810448, 0.06301438808441162, 0.06635154783725739, 0.018480265513062477, 0.10823000967502594, -0.13023316860198975, -0.062359195202589035, 0.05712965503334999, -0.11329638212919235, 0.010656718164682388, 0.08443180471658707, -0.13989415764808655, 0.05819127336144447, 0.020279450342059135, 0.06230141222476959, 0.009093956090509892, 0.019686473533511162, -0.04030260071158409, 0.06028950214385986, 0.13931003212928772, 0.059135086834430695, -0.09850642830133438, 0.13785001635551453, 0.04639360308647156, -0.12604418396949768, -0.17368483543395996, -0.10979115217924118, 0.16072820127010345, -0.04892266169190407, 0.09603285044431686, -0.10688013583421707, -0.020512288436293602, 0.004424590617418289, -0.11856061220169067, 0.006246454082429409, 0.1204100251197815, 0.04565661400556564, -0.020195454359054565, 0.013392012566328049, -0.03308064118027687, 0.024466397240757942, -0.026370251551270485, 0.020835625007748604, -0.07702507078647614, 0.07775366306304932, -0.07198231667280197, -0.1047358512878418, 0.0882081389427185, 0.04962228238582611, -0.11401568353176117, -0.04594198241829872, 0.12306826561689377, 0.025067100301384926, -0.12491268664598465, 0.022549010813236237, 0.11596496403217316, -0.02826598286628723, -0.13113370537757874, 0.08662570267915726, -0.010615539737045765, -0.14279748499393463, -0.01973637379705906, -0.07952503859996796, -0.04298873990774155, 0.02483375370502472, 0.08484064787626266, -0.12136375159025192, 0.012182315811514854, 0.07369081676006317, 0.05343017727136612, -0.021917087957262993, 0.03945861756801605, -0.03879731521010399, -0.016260186210274696, 0.043955061584711075, -0.13069632649421692, -0.01698904298245907, -0.07214262336492538, 0.05210385471582413, 0.10077547281980515, 0.005707733798772097, 0.0013864790089428425, -0.1079099029302597, -0.022041721269488335, 0.06496690213680267, 0.0384691096842289, -0.13204284012317657, -0.1008678451180458, -0.04478389024734497, 0.07789503782987595, -0.10577262938022614, -0.05970403179526329, -0.10002537816762924, 0.11873570084571838, -0.06020171567797661, -0.12071927636861801, 0.023510470986366272, -0.016461599618196487, 0.18761225044727325, -0.11678970605134964, 0.07757575064897537, 0.06577368825674057, 0.05843963101506233, -0.15233774483203888, -0.04298391193151474, 0.10092476010322571, -0.08427444845438004, 0.1255132257938385, -0.04647427424788475, 0.13082772493362427, 0.03506757318973541, -0.038697194308042526, -0.11837053298950195, 0.05466892570257187, -0.08441942185163498, -0.04893454164266586, -0.003220170736312866, 0.07825056463479996, 0.046728458255529404, 0.09254050254821777, -0.005216929130256176, 0.024166809394955635, -0.00816414039582014, 0.00034023012267425656, 0.03915327414870262, -0.020155632868409157, -0.14768077433109283, 0.1203889325261116, -0.05964876711368561, 0.1036350354552269, -0.07073961198329926, 0.08233178406953812, -0.07187556475400925, 0.029757484793663025, 0.04414554685354233, -0.02304205298423767, -0.11666783690452576, -0.08980047702789307, -0.14316634833812714, 0.044098109006881714, 0.006497292313724756, -0.031421761959791183, -0.017362790182232857, -0.06440943479537964, 0.02585025317966938, -0.010881088674068451, 0.07159557193517685, 0.08133286982774734, -0.047720860689878464, -0.006734966300427914, 0.04864899441599846, -0.0785825103521347, 0.024537689983844757, -0.08945588022470474, -0.023415453732013702, -0.024274727329611778, -0.10922319442033768, 0.01153225265443325, 0.04917529970407486, 0.021681450307369232, -0.11809695512056351, 0.033298999071121216, 0.11616946756839752, 0.09333131462335587, -0.0044602518901228905, 0.0019429486710578203, 0.07410406321287155, 0.0820331797003746, 0.0029469293076545, -0.008172237314283848, 0.06729684770107269, -0.0802525207400322, -0.05299193412065506, 0.13127201795578003, 0.1260998398065567, 0.06821799278259277, -0.041628506034612656, 0.010679022409021854, 0.07574512809515, -0.09037311375141144, -0.008687853813171387, -0.0623600147664547, -0.03693133220076561, 0.029134422540664673, 0.10516146570444107, -0.03815743699669838, 0.10297465324401855, 0.06142612546682358, 0.02098667435348034, 0.01646515727043152, 0.11896707862615585, 0.09876993298530579, -0.05716517195105553, -0.1136690154671669, -0.04973446577787399, -0.0060680522583425045, -0.0338110588490963, -0.10177148878574371, 0.11470076441764832, -0.10958129912614822, -0.14402583241462708, 0.017819620668888092, -0.050089675933122635, -0.108309805393219, -0.08125858753919601, 0.1351749449968338, -0.05593343824148178, 0.13011179864406586, 0.05791886895895004, -0.11066661030054092, -0.010052856057882309, 0.029051795601844788, 0.022159557789564133, -0.05114792659878731, -0.027921730652451515, 0.0640796422958374, 0.11463337391614914, -0.052443940192461014, -0.09120205044746399, 0.11854992806911469, -0.09442427009344101, 0.026693344116210938, 0.15173976123332977, 0.14424629509449005, -0.09256970882415771, 0.12639987468719482, 0.07419075816869736, -0.10497649013996124, -0.07092370837926865, -0.05273432657122612, -0.06621118634939194, -0.007113763131201267, 0.001179880346171558, 0.04360419884324074, -0.046537138521671295, 0.005560632795095444, 0.13450871407985687, 0.035299211740493774, -0.08500991016626358, 0.03900303319096565, -0.10468188673257828], -ret:[-0.1042293906211853, -0.13667960464954376, 0.08116043359041214, 0.11328969150781631, 0.08473289012908936, -0.007650303188711405, -0.009827912785112858, -0.02171875350177288, 0.10298191010951996, 0.040120020508766174, 0.01803222857415676, 0.013980175368487835, -0.08891094475984573, -0.008902584202587605, 0.06461600214242935, 0.023492038249969482, 0.03549937531352043, -0.12734054028987885, -0.03172755613923073, -0.0248491819947958, -0.060897912830114365, -0.06201273202896118, -0.031514644622802734, 0.005620007403194904, -0.030672870576381683, 0.05365168675780296, -0.0022174364421516657, 0.07763692736625671, -0.13002195954322815, -0.04863876476883888, -0.008874919265508652, -0.016076069325208664, 0.09197232127189636, 0.11511266976594925, 0.07172095775604248, 0.10300987213850021, 0.01511332020163536, 0.09472835808992386, 0.031232964247465134, -0.1313687264919281, -0.07932554930448532, -0.0772063285112381, 0.11497823894023895, -0.019869811832904816, 0.1010853573679924, 0.10831557214260101, 0.008274748921394348, -0.15072040259838104, 0.003991875797510147, 0.09015090018510818, 0.10956345498561859, -0.07325435429811478, 0.004537431988865137, -0.09740099310874939, 0.008545882068574429, -0.002222818322479725, 0.04837263748049736, -0.03606683760881424, -0.016556477174162865, -0.08846796303987503, 0.06358789652585983, 0.014199621975421906, 0.06581674516201019, 0.04307855665683746, -0.0432986244559288, -0.026620985940098763, -0.09641194343566895, -0.0832909345626831, -0.06490814685821533, 0.011839243583381176, -0.09230837970972061, -0.017737703397870064, -0.06217973306775093, -0.14702047407627106, 0.024410363286733627, -0.1066383346915245, -0.3151845335960388, -0.04710099473595619, 0.09456413239240646, -0.0908331349492073, 0.07125087827444077, 0.07917569577693939, 0.047317083925008774, 0.02229112572968006, 0.07210162281990051, 0.035161081701517105, 0.015070825815200806, 0.057737305760383606, -0.05328582227230072, 0.14701144397258759, 0.10600883513689041, -0.026013752445578575, -0.04982195049524307, 0.11119383573532104, -0.048139266669750214, 0.19197452068328857, 0.04666746035218239, 0.024885179474949837, -0.028097817674279213, 0.10304874181747437, 0.009293693117797375, 0.08802587538957596, -0.08717314153909683, 0.08919141441583633, -0.048242803663015366, 0.10256834328174591, -0.05074227228760719, -0.05690246820449829, 0.05544956400990486, 0.0034378026612102985, 0.12748324871063232, -0.037539850920438766, -0.04805007949471474, 0.003989873453974724, -0.08640701323747635, -0.04904375970363617, -0.1294078677892685, -0.03959392383694649, 0.029374748468399048, -0.09431464225053787, -0.014266407117247581, 0.11076584458351135, -0.04938071221113205, 0.019594931975007057, -0.05388203263282776, -0.07059793919324875, -0.014896568842232227, 0.20457516610622406, 0.06092904508113861, 0.04286293312907219, -0.09551968425512314, -0.05364443361759186, -0.2614377737045288, -0.004904486238956451, 0.0127492006868124, 0.05226919800043106, -0.0763101726770401, 0.05351138114929199, 0.03776639327406883, -0.015428993850946426, 0.0025425334461033344, -0.0089546088129282, -0.020700322464108467, -0.05269145593047142, 0.16463330388069153, -0.06207291781902313, -0.08458881825208664, -0.05122147127985954, -0.10157224535942078, -0.11087935417890549, 0.007279675453901291, -0.09579630196094513, 0.1529940962791443, 0.01567690446972847, 0.09551291167736053, 0.14412552118301392, 0.008206487633287907, 0.27947500348091125, -0.08456145226955414, -0.07718221098184586, -0.01759445294737816, -0.1255868822336197, -0.005617368966341019, 0.1319790482521057, 0.07590748369693756, -0.07289429754018784, -0.009749426506459713, 0.11766088008880615, 0.09441002458333969, -0.06929150968790054, 0.17506396770477295, -0.05678747966885567, 0.05489922687411308, -0.08735652267932892, 0.09822513908147812, 0.16112998127937317, -0.004664180334657431, -0.04858007654547691, 0.10625261813402176, 0.020127998664975166, -0.031234050169587135, 0.04700950160622597, -0.008259796537458897, -0.021814342588186264, 0.05395703762769699, -0.019818855449557304, -0.0003363119612913579, -0.009733632206916809, 0.07895486801862717, -0.04791876673698425, -0.005142499692738056, -0.04246998205780983, -0.045205291360616684, 0.04206240922212601, -0.022388530895113945, -0.11318745464086533, 0.03734402731060982, -0.101627416908741, 0.04883313924074173, 0.0062239826656877995, 0.060733385384082794, -0.10525418817996979, 0.0655430406332016, -0.05657505989074707, -0.019925158470869064, 0.07451518625020981, 0.059017106890678406, 0.1190362200140953, 0.14794790744781494, 0.04343890771269798, -0.055738259106874466, 0.1065836027264595, -0.0013340997975319624, 0.04400189593434334, -0.012120502069592476, -0.08815744519233704, 0.16625483334064484, -0.04318968206644058, -0.028942422941327095, 0.010137650184333324, 0.009954891167581081, 0.08717682212591171, -0.09328766167163849, 0.1052551418542862, 0.04480714350938797, -0.06203226372599602, 0.01864350400865078, 0.07670661807060242, -0.07684562355279922, 0.03440772369503975, 0.013211939483880997, 0.007337948773056269, 0.05250505357980728, 0.03686955198645592, 0.025841418653726578, -0.007828382775187492, 0.08580488711595535, 0.044855501502752304, -0.08131584525108337, 0.01732317917048931, -0.01619129069149494, -0.10941502451896667, 0.09594260901212692, 0.08438093960285187, -0.02032124251127243, 0.02821488305926323, -0.04678136110305786, 0.02167276293039322, -0.07571513950824738, -0.004376876633614302, 0.08433545380830765, 0.10797218233346939, -0.10395316779613495, -0.03423353284597397, -0.005479342304170132, 0.06398333609104156, 0.009432625956833363, -0.09199632704257965, 0.014051721431314945, -0.017574485391378403, 0.115448959171772, -0.009407836943864822, -0.0827813372015953, 0.10444634407758713, -0.014407253824174404, 0.002004425274208188, 0.016506798565387726, 0.0893377959728241, -0.04961847886443138, 0.11932044476270676, -0.012687069363892078, 0.16991591453552246, -0.0747298076748848, -0.029511786997318268, 0.11556878685951233, 0.035290442407131195, -0.031609997153282166, -0.07961905002593994, -0.0011188709177076817, -0.0794610008597374, 0.0012412327341735363, 0.07588684558868408, 0.019673515111207962, 0.05734662339091301, -0.04498272389173508, -0.08363866806030273, 0.03785700350999832, -0.08427069336175919, 2.255329309264198e-05, 0.10466481745243073, 0.0690772607922554, 0.002109399763867259, 0.040330082178115845, 0.035610731691122055, -0.000564356567338109, 0.12696051597595215, 0.07181002199649811, 0.14657412469387054, -0.04251633957028389, -0.0784684419631958], -sdiv:[0.040834248065948486, -0.1342421919107437, 0.08133803308010101, 0.13692307472229004, 0.047719843685626984, 0.13269464671611786, 0.08717066794633865, 0.09056759625673294, 0.0024955933913588524, 0.020633066073060036, 0.11291433125734329, 0.05829107016324997, -0.020127072930336, -0.011257480829954147, 0.10946998000144958, 0.03393155708909035, -0.021879971027374268, -0.11113501340150833, 0.04306793212890625, -0.009833648800849915, 0.00775204598903656, -0.0552918016910553, -0.059513553977012634, 0.14503434300422668, -0.03976959362626076, 0.08084724843502045, -0.0033214346040040255, 0.0020565702579915524, -0.12603892385959625, -0.03872310742735863, -0.018919745460152626, -0.016497937962412834, 0.08906228095293045, -0.0399327352643013, 0.05302318558096886, 0.039878785610198975, 0.1042371466755867, 0.037568382918834686, 0.12215542048215866, -0.13170823454856873, -0.07693313807249069, 0.0035537073854357004, 0.10813140124082565, 0.0992964655160904, 0.025541620329022408, 0.172621950507164, -0.07856690883636475, -0.018067946657538414, 0.0640784204006195, 0.056702081114053726, -0.11811961978673935, 0.053865909576416016, 0.08248608559370041, 0.05193344131112099, 0.01874363049864769, -0.04546063393354416, 0.058211199939250946, 0.03727257251739502, 0.0016648771706968546, -0.08528968691825867, 0.05625075846910477, 0.05793928727507591, -0.12031899392604828, 0.04238852486014366, 0.09272760897874832, -0.023622117936611176, -0.1332397162914276, -0.07810387760400772, 0.10313566029071808, 0.02077253721654415, 0.05403026193380356, 0.035050030797719955, -0.012960048392415047, 0.15400758385658264, -0.08474700152873993, -0.08188869804143906, -0.021882109344005585, 0.08345865458250046, 0.08740072697401047, -0.10664083063602448, 0.041925761848688126, -0.14516451954841614, 0.12621517479419708, 0.0049055530689656734, 0.07188274711370468, 0.04013380780816078, 0.0359240397810936, 0.06479255855083466, -0.041111987084150314, 0.08882323652505875, 0.007265252992510796, 0.11511736363172531, -0.047386664897203445, 0.04037117958068848, -0.08281815052032471, -0.014236148446798325, -0.15386496484279633, 0.050529174506664276, -0.05159866809844971, 0.10099135339260101, -0.004424356389790773, 0.08069164305925369, 0.10788166522979736, -0.028167802840471268, 0.08687416464090347, 0.007116004824638367, -0.04653018340468407, -0.03337371349334717, 0.11021163314580917, 0.07479669898748398, 0.0017573662335053086, -0.04789447784423828, -0.024926042184233665, 0.028259430080652237, 0.03583849221467972, 0.02486771158874035, -0.025669319555163383, -0.029171835631132126, -0.06923886388540268, -0.034817226231098175, -0.025666117668151855, 0.08467899262905121, 0.06167549267411232, 0.0375187061727047, -0.030441785231232643, -0.04818325862288475, -0.0466371588408947, -0.027069091796875, 0.10688479244709015, 0.0745253637433052, -0.014730640687048435, -0.15280883014202118, 0.01349824108183384, 0.022151920944452286, -0.12343493849039078, 0.03551428020000458, -0.17359451949596405, -0.12366596609354019, -0.004372310359030962, 0.07707247138023376, 0.09136590361595154, 0.022405074909329414, 0.07598916441202164, -0.11277294158935547, 0.006761055439710617, -0.1014641672372818, 0.02762312814593315, 0.07474169880151749, 0.016620956361293793, -0.04810088127851486, -0.02305484376847744, -0.13625839352607727, -0.0039040506817400455, 0.03895583748817444, 0.06198788061738014, -0.0040694475173950195, -0.006722482852637768, 0.025924095883965492, -0.05080292373895645, 0.13140825927257538, 0.07782811671495438, 0.06056836247444153, -0.007042706478387117, 0.16523191332817078, -0.11568304896354675, -0.08743900060653687, -0.022597936913371086, 0.003073375904932618, -0.10027620196342468, -0.008131987415254116, -0.05432623624801636, -0.05108608677983284, 0.06405022740364075, 0.033975642174482346, 0.12201178073883057, 0.1584184169769287, -0.06745944172143936, -0.11566649377346039, 0.12488100677728653, 0.012259991839528084, -0.00078827008837834, 0.03374267369508743, -0.11198507994413376, -0.01619693636894226, -0.15360382199287415, -0.026996027678251266, -0.03721325471997261, -0.01558334194123745, 0.04934524744749069, 0.026636531576514244, 0.08134695887565613, 0.038451503962278366, -0.1445009559392929, 0.03642340376973152, 0.04475803300738335, 0.05319269001483917, 0.0719350278377533, -0.10076558589935303, 0.10084757208824158, -0.019025953486561775, 0.031161483377218246, -0.09835860133171082, -0.05211280658841133, -0.09959056228399277, 0.030267449095845222, -0.016559690237045288, 0.05118262395262718, 0.08931487053632736, -0.04386381804943085, -0.0010120446095243096, -0.04642341285943985, 0.02706986665725708, -0.07576534152030945, -0.029346216470003128, 0.03396867588162422, -0.08497790992259979, -0.0749141052365303, 0.08383867144584656, -0.03452000021934509, 0.04243546351790428, -0.00011560302664292976, -0.03127070143818855, 0.054358791559934616, 0.10009656101465225, -0.1542002260684967, 0.06938863545656204, -0.06064123660326004, 0.06842822581529617, -0.09301573783159256, 0.03082599677145481, -0.026577716693282127, 0.0807027667760849, -0.038582395762205124, -0.06269268691539764, 0.07349108159542084, -0.07156849652528763, -0.01788250543177128, -0.10843483358621597, -0.07505384087562561, 0.007560029160231352, -0.014620443806052208, -0.023051047697663307, -0.09056489169597626, -0.12822416424751282, 0.0076995473355054855, -0.10664863884449005, 0.003493590746074915, -0.05075351893901825, -0.0812947228550911, 0.0037627986166626215, -0.11979133635759354, 0.08459156006574631, -0.1381119042634964, -0.07235383987426758, -0.10527745634317398, -0.026339925825595856, 0.12872594594955444, -0.04752563685178757, -0.0717683732509613, 0.08640679717063904, -0.0648956149816513, -0.08719650655984879, -0.14305919408798218, 0.0653362050652504, 0.08487140387296677, 0.028179865330457687, 0.07222424447536469, -0.10732080042362213, -0.06715918332338333, -0.03040257655084133, 0.0748300552368164, -0.017402227967977524, 0.05039806663990021, -0.08631154894828796, 0.13239067792892456, -0.0324227437376976, 0.07956789433956146, -0.05193863436579704, -0.12389562278985977, -0.051255494356155396, -0.011259937658905983, 0.06054893136024475, 0.04691482335329056, 0.027965568006038666, -0.05175040662288666, -0.10924755036830902, 0.07929828017950058, 0.0069907186552882195, 0.014891634695231915, -0.0971120223402977, -0.06358392536640167, -0.011338249780237675, 0.03436531499028206, 0.1357753425836563, -0.006485903635621071, -0.0448993518948555, 0.03571237996220589, -0.035568129271268845, 0.13195349276065826, -0.13097147643566132], -select:[0.037511441856622696, -0.0858263373374939, 0.07810259610414505, 0.10548633337020874, 0.08220762014389038, 0.005195937119424343, -0.018218565732240677, -0.08635272830724716, 0.045629359781742096, 0.019991762936115265, 0.12165218591690063, 0.04861646145582199, 0.025045333430171013, -0.003735278034582734, 0.0336761400103569, 0.008822200819849968, -0.022891584783792496, -0.10844320803880692, -0.043622154742479324, -0.03740264102816582, -0.06443095952272415, -0.0374416820704937, -0.05758397653698921, 0.014089694246649742, -0.044458989053964615, 0.16019555926322937, 0.004155564121901989, -0.04092608392238617, -0.10240010917186737, 0.04928726702928543, -0.035705678164958954, -0.023991066962480545, 0.08269427716732025, 0.25270190834999084, 0.09567468613386154, 0.22175271809101105, 0.07683909684419632, -0.00012153985881013796, 0.026702314615249634, -0.10115358978509903, -0.07654982060194016, -0.03840191289782524, 0.033080704510211945, -0.006243575364351273, 0.08796238154172897, 0.0646936371922493, -0.00495689082890749, -0.06152607500553131, -0.0023118092212826014, -0.012456515803933144, 0.08143646270036697, -0.06220357120037079, -0.07152555882930756, 0.08739570528268814, -0.021082738414406776, -0.031071173027157784, 0.058140598237514496, -0.03214452043175697, 0.1049460843205452, -0.06723856925964355, 0.05610717833042145, 0.014397608116269112, 0.011602083221077919, 0.03965587913990021, -0.01310815755277872, 0.13813693821430206, 0.01988585852086544, -0.08678873628377914, -0.012920042499899864, 0.042428746819496155, -0.04679020494222641, -0.07345530390739441, -0.014035167172551155, -0.011431272141635418, -0.1277480274438858, 0.09474349766969681, -0.024513667449355125, -0.02451857179403305, 0.09001762419939041, 0.03647984564304352, 0.0392395555973053, 0.03141377121210098, -0.035918597131967545, 0.004556156694889069, 0.07561741769313812, 0.013656931929290295, 0.11451831459999084, 0.06560296565294266, -0.04617904871702194, 0.025302717462182045, -0.07497305423021317, 0.037414610385894775, -0.046414926648139954, -0.10450294613838196, -0.05220475047826767, 0.24815744161605835, -0.020042935386300087, -0.144616961479187, -0.04158972576260567, 0.10708735883235931, 0.012185941450297832, 0.016558079048991203, 0.01507424283772707, -0.031056005507707596, 0.07622098177671432, 0.06172101944684982, -0.07004314661026001, -0.04700099304318428, 0.05455208197236061, 0.06264247745275497, -0.005829303525388241, -0.03633510693907738, 0.11997973918914795, -0.07176662236452103, -0.1458500176668167, 0.06553042680025101, -0.10138645768165588, -0.024191608652472496, 0.06572418659925461, -0.03571192920207977, -0.1534319967031479, 0.12209422141313553, -0.184830904006958, 0.02072793059051037, -0.05219763144850731, -0.06778859347105026, -0.007876344956457615, 0.13843442499637604, -0.02115700952708721, 0.006200707983225584, -0.04023779556155205, 0.024647340178489685, 0.10733293741941452, -0.11543221771717072, -0.10035614669322968, 0.188639298081398, 0.022719593718647957, -0.10641644150018692, 0.07097283750772476, 0.09977637976408005, -0.004766029305756092, 0.043427422642707825, -0.09412083774805069, 0.025838546454906464, -0.0032946751452982426, -0.006823609117418528, -0.08314057439565659, -0.059659142047166824, 0.10637597739696503, -0.09476418048143387, -0.0500752255320549, -0.0853462964296341, 0.07385072857141495, 0.12175767868757248, 0.09563250839710236, 0.13393624126911163, -0.005337791051715612, 0.05246302857995033, 0.017872441560029984, -0.09034379571676254, 0.03260527178645134, 0.10358098149299622, -0.005922712851315737, -0.17870454490184784, 0.04011949896812439, -0.07062488049268723, -0.01164572685956955, 0.09562056511640549, 0.07086248695850372, -0.03795372694730759, 0.028526751324534416, -0.05456652119755745, 0.045379579067230225, -0.03318527713418007, -0.010852484032511711, 0.03333491086959839, -0.0036080980207771063, -0.008228258229792118, 0.11321386694908142, 0.021754760295152664, -0.16633540391921997, -0.021647848188877106, 0.009383215568959713, -0.026571126654744148, -0.011868063360452652, -0.00731330830603838, -0.09306919574737549, -0.0066303531639277935, -0.06518498063087463, 0.022681692615151405, -0.04298679158091545, 0.03711586073040962, -0.07323288172483444, 0.034052275121212006, -0.024630218744277954, -0.021531647071242332, 0.02068978175520897, -0.0014802266377955675, 0.06743630766868591, 0.14231832325458527, -0.12368949502706528, -0.008482007309794426, 0.05432680994272232, -0.0357118584215641, 0.05390437692403793, 0.07348959892988205, -0.10313323885202408, 0.14895546436309814, -0.18546439707279205, -0.12694475054740906, 0.08065526932477951, -0.13483469188213348, 0.05292556434869766, 0.03819132596254349, 0.035661015659570694, -0.0765417292714119, 0.06349755078554153, 0.14613288640975952, -0.02814129926264286, -0.08065242320299149, 0.016133097931742668, -0.029062451794743538, 0.19508907198905945, 0.09855819493532181, -0.09934080392122269, 6.263171962928027e-05, -0.01390232052654028, 0.08402671664953232, 0.041093628853559494, 0.031053438782691956, -0.04585660994052887, 0.008170603774487972, 0.049676474183797836, -0.026151029393076897, 0.08799067884683609, 0.010990443639457226, -0.08195363730192184, -0.012834404595196247, -0.07013114541769028, 0.014826998114585876, -0.007876399904489517, 0.10267969220876694, -0.06492610275745392, -0.031153904274106026, 0.011247867718338966, 0.017703374847769737, 0.09958068281412125, -0.030024345964193344, -0.07957813888788223, 0.02864801324903965, -0.013806743547320366, -0.014347094111144543, -0.039323851466178894, -0.021513214334845543, -0.0017824682872742414, -0.01825064793229103, 0.10984069854021072, 0.003726767608895898, 0.08300565928220749, 0.05591940879821777, -0.17691506445407867, -0.009612460620701313, -0.07288634032011032, 0.007413642480969429, 0.08272991329431534, -0.04523444175720215, 0.021867532283067703, 0.05627407133579254, -0.0449063740670681, 0.03791923075914383, 0.003613316686823964, -0.18340376019477844, 0.08099432289600372, -0.00272546848282218, 0.10768347978591919, 0.038389988243579865, -0.07913615554571152, -0.03424521163105965, -0.141056090593338, -0.07295182347297668, -0.01768435351550579, 0.05081022530794144, -0.022083014249801636, 0.054736848920583725, -0.12495490908622742, 0.04142514616250992, 0.033837445080280304, -0.03091154620051384, -0.062369637191295624, 0.0270919781178236, 0.16776375472545624, -0.0014100329717621207, -0.054558902978897095, 0.032956141978502274, -0.023435544222593307, -0.022003011777997017, 0.13902367651462555, 0.10102561116218567, -0.07143814861774445, -0.11448951065540314], -sext:[0.03411651775240898, -0.12421838939189911, 0.07193120568990707, 0.11127952486276627, 0.07332875579595566, 0.002810927340760827, 0.06445290148258209, -0.061320263892412186, -0.06287864595651627, 0.025214679539203644, 0.01967526786029339, 0.048328883945941925, -0.05811634659767151, -0.02341129072010517, -0.04140142351388931, -0.017739485949277878, -0.011040589772164822, -0.10748068988323212, -0.04053133353590965, -0.042033541947603226, -0.04669542238116264, 0.01286163181066513, -0.047449108213186264, 0.1295575201511383, 0.012765140272676945, -0.08092733472585678, -0.0014137380057945848, -0.017101695761084557, -0.13919156789779663, 0.031118180602788925, -0.020806830376386642, -0.011196089908480644, 0.08701600879430771, 0.1560181975364685, 0.027202825993299484, 0.20439675450325012, 0.0148222167044878, 0.05334904417395592, 0.03078729659318924, 0.07005345076322556, -0.07022324949502945, -0.045314010232686996, -0.05719129368662834, -0.07482575625181198, -0.007666770834475756, 0.0028581563383340836, -0.009887631051242352, -0.09502401202917099, -0.0016933188308030367, 0.03879479691386223, 0.12261942774057388, -0.04734684154391289, 0.08773601800203323, -0.015832791104912758, 0.006738169584423304, 0.03447295352816582, 0.051756683737039566, -0.0329536572098732, 0.12446971982717514, -0.0304094310849905, 0.055007096379995346, 0.014866827987134457, 0.056320931762456894, 0.03836972266435623, 0.05626240745186806, -0.022586748003959656, -0.06002800539135933, -0.07501810044050217, 0.08324187248945236, 0.02030857652425766, 0.04225625842809677, 0.07051423192024231, -0.014832930639386177, 0.019233111292123795, -0.03556538745760918, -0.09969598054885864, -0.1232714056968689, -0.07145386189222336, 0.08296844363212585, -0.05170699954032898, 0.09731989353895187, 0.12838542461395264, 0.034337736666202545, -0.06244802847504616, 0.07454624772071838, 0.048048704862594604, 0.07338032126426697, 0.06023135036230087, -0.03781282156705856, 0.11834146082401276, -0.038012996315956116, 0.0528121143579483, -0.042359575629234314, 0.167339488863945, -0.06212944909930229, 0.09375882148742676, 0.015893787145614624, -0.08757674694061279, -0.08444385975599289, 0.0991988405585289, 0.014076569117605686, -0.008149941451847553, 0.09658787399530411, 0.06603541225194931, -0.058041784912347794, -0.09494122117757797, -0.051417700946331024, -0.05669975280761719, 0.05347329378128052, -0.02682570181787014, 0.001241336460225284, -0.06553980708122253, -0.04812467843294144, 0.013097918592393398, 0.04433997720479965, 0.0672277882695198, -0.10762753337621689, -0.030344083905220032, 0.001010523410513997, -0.0885910913348198, -0.03272224962711334, 0.08645565062761307, 0.08361808955669403, 0.0450897142291069, -0.05204794928431511, -0.06149351969361305, -0.006431314628571272, -0.03584522381424904, 0.0029888148419559, 0.04705740511417389, -0.04142415151000023, -0.021164322271943092, -0.15057794749736786, -0.057056937366724014, 0.07169970124959946, -0.06330888718366623, -0.0646212100982666, -0.01600693352520466, 0.05910822004079819, 0.09045972675085068, 0.06889709830284119, 0.11916037648916245, 0.07877999544143677, 0.0888301432132721, -0.12122231721878052, -0.07867318391799927, -0.074224092066288, -0.05395875871181488, -0.030920105054974556, 0.004032451659440994, 0.007878229953348637, -0.08076964318752289, -0.09793312847614288, -0.12392570078372955, 0.08914149552583694, 0.014174352400004864, -0.006686024833470583, 0.0024044960737228394, 0.12963734567165375, 0.06943798810243607, 0.03028116188943386, -0.004786216653883457, -0.00562470406293869, -0.1578563153743744, 0.060125865042209625, -0.06988371163606644, -0.024096356704831123, 0.1101495623588562, 0.07010693848133087, -0.005002094432711601, 0.08253097534179688, -0.039482481777668, 0.04921673610806465, -0.06951848417520523, -0.021037902683019638, -0.03275170549750328, -0.10432712733745575, -0.13517001271247864, 0.13015121221542358, 0.01844017580151558, 0.08630967885255814, -0.009670729748904705, 0.10313206911087036, -0.013709556311368942, 0.049583058804273605, -0.013250655494630337, 0.02781989611685276, -0.01095264870673418, 0.06554204970598221, -0.04809318110346794, -0.0933048203587532, 0.017823750153183937, -0.014689750969409943, -0.04276885837316513, -0.020015675574541092, -0.07007116824388504, 0.004906360525637865, -0.10943623632192612, 0.0600750595331192, 0.05715850368142128, 0.03492393717169762, -0.08985528349876404, 0.09098714590072632, -0.02314971387386322, -0.04019280895590782, 0.06662490218877792, 0.05284534767270088, 0.11094984412193298, -0.10568142682313919, 0.06663303822278976, -0.011715792119503021, 0.19558408856391907, -0.07198947668075562, 0.01648731715977192, 0.08526302129030228, -0.07804448902606964, 0.065305694937706, -0.010367236100137234, -0.1668778955936432, 0.0513128787279129, 0.12022054940462112, -0.022127969190478325, 0.012726778164505959, 0.0953320786356926, -0.08890560269355774, 0.053100790828466415, -0.047200992703437805, 0.06505464762449265, 0.08281321078538895, 0.02868260070681572, 0.001552261644974351, 0.009847255423665047, 0.0023975397925823927, -0.021347956731915474, 0.03279230743646622, 0.054058391600847244, -0.08781225979328156, -0.10812084376811981, -0.07926522195339203, 0.006473052315413952, -0.012580934911966324, 0.003766367444768548, -0.049589965492486954, 0.052967291325330734, -0.007400623522698879, -0.06392151862382889, 0.005627513397485018, 0.013547500595450401, -0.07146449387073517, -0.06703220307826996, 0.03412814065814018, 0.019730575382709503, -0.1162499263882637, -0.04700852930545807, -0.004245236050337553, -0.12223749607801437, 0.005599090829491615, 0.029437752440571785, -0.03708107769489288, 0.04167722165584564, 0.04282986372709274, 0.12265093624591827, -0.08712923526763916, 0.07834956794977188, 0.07540310174226761, 0.04624051973223686, 0.020302535966038704, -0.04353448003530502, -0.051362473517656326, 0.01623523235321045, -0.02903181128203869, -0.16750307381153107, 0.10229605436325073, 0.017683757469058037, 0.09051059186458588, -0.01655496470630169, 0.10996763408184052, -0.04734525829553604, -0.04581128805875778, 0.07095618546009064, 0.03655051812529564, 0.05569400638341904, -0.018467877060174942, 0.048912808299064636, -0.04860995337367058, 0.0626777708530426, 0.021497713401913643, -0.03698864206671715, 0.015151701867580414, 0.0661618784070015, 0.09791260957717896, -0.017835265025496483, 0.02584557980298996, 0.031901080161333084, -0.09398654848337173, 0.05666051059961319, 0.14053542912006378, -0.050899531692266464, -0.04654727131128311, -0.07347506284713745], -shl:[-0.012161236256361008, -0.13234010338783264, 0.08138181269168854, 0.13013856112957, -0.08727452903985977, 0.03176451846957207, -0.017792778089642525, -0.08018099516630173, -0.0476367324590683, 0.024546818807721138, -0.08532438427209854, 0.0631403774023056, 0.0165400430560112, -0.00478341244161129, 0.020372824743390083, 0.03631225973367691, -0.015872616320848465, -0.11071532964706421, -0.03033897466957569, 0.017498422414064407, -0.028401341289281845, -0.001011445070616901, -0.0598396435379982, 0.14971822500228882, -0.035657502710819244, -0.06047721952199936, -0.034205514937639236, 0.08462858945131302, -0.151494562625885, 0.1056748554110527, -0.03662041574716568, -0.055376823991537094, 0.09457918256521225, -0.12528029084205627, 0.08647753298282623, 0.07468224316835403, -0.07588597387075424, 0.13095447421073914, 0.07751873135566711, -0.13081222772598267, -0.07924704253673553, -0.03886013850569725, 0.10891763120889664, -0.08916942775249481, 0.03471926599740982, 0.062338687479496, 0.006572030950337648, 0.11510871350765228, -0.028811847791075706, 0.0319269634783268, -0.0848056823015213, 0.024423303082585335, 0.021096695214509964, -0.11740641295909882, 0.05136207863688469, 0.05860414728522301, 0.05960152670741081, -0.03350671008229256, -0.02761656604707241, -0.036939673125743866, 0.061111778020858765, 0.03289658948779106, 0.06458199769258499, 0.04375879839062691, -0.040401291102170944, -0.02878608927130699, -0.07635223865509033, 0.0016997447237372398, -0.042774539440870285, 0.00630915816873312, -0.017753466963768005, 0.08011594414710999, -0.06446105986833572, 0.014819344505667686, 0.1531296819448471, -0.0003151512355543673, -0.11330389976501465, 0.020148197188973427, 0.09331556409597397, 0.05619889125227928, 0.030340606346726418, 0.045769669115543365, -0.045919205993413925, -0.048023950308561325, 0.08253174275159836, 0.03929905220866203, 0.033195625990629196, 0.07085243612527847, -0.04806399345397949, 0.1718960702419281, -0.2563903331756592, -0.1418699026107788, -0.04993142932653427, -0.19814780354499817, -0.044719815254211426, -0.023125143721699715, 0.09075659513473511, -0.043990280479192734, -0.08363161236047745, 0.1075068786740303, 0.01129575539380312, -0.013574393466114998, 0.10961085557937622, -0.1299617886543274, 0.08983428031206131, 0.09997095167636871, -0.041774868965148926, -0.04939623549580574, 0.05999613553285599, 0.07018895447254181, 0.002534909639507532, -0.1292719841003418, -0.02727002277970314, -0.0054574087262153625, 0.009113230742514133, -0.0712779238820076, -0.13320332765579224, -0.024843789637088776, 0.003631059778854251, -0.01527050044387579, -0.1540585458278656, 0.08190887421369553, 0.046916164457798004, 0.0623553991317749, -0.048627085983753204, -0.04813892021775246, 0.0358923003077507, 0.14476421475410461, 0.05189374089241028, 0.038293883204460144, 0.09532433748245239, 0.19539444148540497, 0.055609941482543945, 0.13872112333774567, -0.10330197960138321, -0.19890035688877106, -0.08586679399013519, -0.03518680855631828, -0.0017131612403318286, 0.07988758385181427, 0.032751500606536865, 0.04626159742474556, -0.16705089807510376, 0.10440130531787872, -0.11561455577611923, -0.08388505131006241, -0.06609706580638885, -0.07431554049253464, -0.18996796011924744, -0.0047896006144583225, -0.02621281147003174, -0.025217154994606972, 0.011367440223693848, 0.04905759543180466, 0.08031261712312698, -0.0028448833618313074, -0.015040119178593159, 0.11473233252763748, -0.13835346698760986, 0.0972132757306099, 0.04035819694399834, 0.13415227830410004, 0.005734109785407782, 0.024474920704960823, 0.07414289563894272, -0.010932458564639091, -0.007187276612967253, 0.12282965332269669, 0.100338414311409, 0.06509861350059509, 0.014541728422045708, 0.0007829575915820897, 0.09014219045639038, 0.005577920004725456, 0.021492769941687584, 0.05351861193776131, -0.10303749144077301, 0.01849680207669735, 0.07660273462533951, -0.02649591863155365, 0.026499105617403984, 0.10243236273527145, 0.05828925967216492, -0.04051179066300392, 0.02707098238170147, -0.026585251092910767, -0.0858268141746521, -0.007559441030025482, 0.0757070928812027, -0.04564894735813141, 0.035982392728328705, 0.04042544215917587, -0.08638273179531097, -0.0520159974694252, -0.021986154839396477, -0.011160693131387234, 0.05508555844426155, -0.1146250069141388, 0.0939163789153099, -0.021010885015130043, -0.020287342369556427, -0.020978286862373352, 0.012555562891066074, -0.12077753245830536, -0.04621561989188194, -0.08304358273744583, 0.05831790342926979, 0.12847834825515747, 0.11360426992177963, -0.08979032188653946, -0.057640694081783295, 0.0858640968799591, -0.08038503676652908, 0.024688320234417915, -0.01885899342596531, -0.0886458158493042, 0.08348779380321503, -0.021751483902335167, -0.03958650678396225, -0.0678781196475029, 0.06005644425749779, -0.03770071640610695, -0.19015127420425415, 0.10131236910820007, -0.099345862865448, 0.04846187308430672, -0.05169609189033508, 0.06271199136972427, -0.03912755846977234, 0.034050364047288895, -0.0777381882071495, -0.00439464533701539, 0.0639597475528717, -0.00596943125128746, -0.1290000081062317, 0.029509471729397774, 0.0030076971743255854, -0.013941117562353611, -0.025015613064169884, 0.02049422450363636, -0.010022583417594433, -0.05913325771689415, -0.06746603548526764, 0.015484757721424103, 0.010807311162352562, -0.0012858317932114005, 0.150850310921669, -0.05974608659744263, -0.0820784717798233, -0.06006044149398804, -0.004281430505216122, -0.024417022243142128, -0.10172440856695175, 0.0431559756398201, -0.07388191670179367, 0.015019701793789864, 0.038466986268758774, -0.02002640813589096, -0.024197177961468697, 0.0913151204586029, -0.2198348343372345, 0.040450017899274826, -0.07180992513895035, 0.07341963052749634, 0.08880669623613358, 0.07589276134967804, 0.01827951893210411, -0.056533653289079666, -0.10424065589904785, -0.14350897073745728, 0.008118042722344398, -0.150858536362648, 0.04883610084652901, -0.028598636388778687, 0.14521357417106628, 0.012326902709901333, -0.008022477850317955, -0.04728952795267105, 0.0783565565943718, -0.07200288027524948, -0.0014568782644346356, 0.03371330723166466, -0.01913304440677166, 0.05158819258213043, -0.043418433517217636, 0.06016872450709343, 0.058757517486810684, 0.026148684322834015, 0.0015561355976387858, -0.034473221749067307, 0.06781699508428574, -0.005469145253300667, 0.03676380589604378, 0.04524938017129898, -0.03320583328604698, -0.13309790194034576, -0.014787525869905949, -0.11134199798107147, -0.11308766156435013, -0.10078804194927216], -shufflevector:[-0.009609301574528217, 0.013908020220696926, -0.09884577989578247, -0.004694899544119835, -0.0045690289698541164, 0.04246581345796585, 0.017511192709207535, -0.07636708766222, 0.08731366693973541, 0.02925688959658146, 0.12179850041866302, 0.053187862038612366, -0.04612954705953598, 0.08042100816965103, -0.0934218019247055, 0.112541064620018, -0.03360506147146225, 0.1256553679704666, -0.017423974350094795, -0.05753139778971672, -0.11583885550498962, 0.1320403814315796, -0.004971279762685299, 0.10544142872095108, -0.07190629094839096, 0.022537007927894592, 0.02129262499511242, 0.15901918709278107, -0.092985138297081, -0.040108390152454376, -0.06116871163249016, 0.05559902638196945, -0.03898350149393082, -0.07333206385374069, 0.07088623195886612, -0.027142761275172234, 0.0631742775440216, -0.11857578158378601, -0.03218729794025421, -0.06189887970685959, -0.07488516718149185, -0.061070188879966736, 0.09812935441732407, -0.1350240409374237, -0.031146971508860588, 0.06641798466444016, 0.006865149363875389, -0.0026982345152646303, 0.08642013370990753, 0.06980077177286148, 0.03009912557899952, 0.10142882168292999, -0.06379815936088562, -0.06342033296823502, 0.04217563197016716, -0.10948445647954941, 0.06340765953063965, -0.09859482944011688, -0.10735533386468887, 0.03858211264014244, 0.0530388318002224, -0.07228460907936096, 0.09135322272777557, 0.08282975852489471, -0.06509974598884583, 0.01086119469255209, -0.0340568982064724, 0.0023078143130987883, 0.09128288924694061, 0.040859248489141464, 0.07983500510454178, 0.07721394300460815, -0.11817149817943573, -0.10084229707717896, -0.1438884735107422, -0.06548257917165756, -0.017066648229956627, 0.02826027013361454, -0.0946100577712059, -0.16549718379974365, -0.06391455233097076, 0.09782125800848007, 0.05244353786110878, -0.13405615091323853, 0.0692451149225235, -0.04041125252842903, 0.10272932797670364, 0.07337462902069092, -0.05403792858123779, 0.095439113676548, -0.03389126807451248, -0.09356355667114258, -0.08551312237977982, -0.1816505789756775, 0.046496253460645676, 0.00181926554068923, -0.0575995147228241, 0.01039405632764101, -0.08588217943906784, -0.09323838353157043, 0.041804954409599304, 0.11880176514387131, 0.013158942572772503, -0.1289425790309906, 0.0793503001332283, 0.016852622851729393, 0.0400562509894371, -0.03385103493928909, 0.06216813996434212, 0.01268914807587862, -0.03880379721522331, -0.1202213391661644, 0.10171838849782944, -0.056055109947919846, -0.020222539082169533, -0.007937924936413765, -0.09578859061002731, -0.07267030328512192, 0.07319099456071854, 0.09596248716115952, 0.05843609571456909, 0.10084917396306992, -0.09932233393192291, 0.041794516146183014, -0.07673290371894836, 0.0031031956896185875, 0.08032269775867462, 0.062132157385349274, -0.07575013488531113, 0.006900632753968239, 0.03240250423550606, 0.054741084575653076, -0.00552520714700222, 0.054086070507764816, -0.09737643599510193, 0.010601445101201534, -0.014433281496167183, 0.09196953475475311, -0.10852275788784027, 0.11885643750429153, -0.019733907654881477, 0.031535688787698746, 0.012509090825915337, -0.012416715733706951, -0.0932866632938385, 0.014196222648024559, -0.079990454018116, -0.10883376747369766, -0.02986237220466137, 0.07604421675205231, 0.030897516757249832, -0.08201909810304642, 0.0010561499511823058, 0.031526412814855576, 0.10065867006778717, 0.12132785469293594, -0.014299132861196995, -0.04765455797314644, 0.07520001381635666, -0.10044552385807037, 0.07616497576236725, 0.11727602034807205, 0.062406327575445175, 0.041916292160749435, 0.07134021073579788, 0.05611275136470795, -0.07197748869657516, 0.07282860577106476, -0.03538411855697632, -0.0557430125772953, -0.038924671709537506, 0.0022620505187660456, 0.03259481489658356, 0.028966329991817474, 0.02218472957611084, 0.0031522251665592194, -0.029543688520789146, 0.026139717549085617, 0.05726991593837738, -0.0309810321778059, -0.020451338961720467, 0.0030195231083780527, 0.06381958723068237, -0.07398403435945511, 0.05308900773525238, 0.07504057884216309, -0.09731211513280869, -0.014320050366222858, -0.10326055437326431, -0.003283810568973422, 0.07138770073652267, 0.026349661871790886, -0.08725905418395996, -0.05888679623603821, -0.10029769688844681, 0.06308701634407043, 0.09967337548732758, 0.07357250899076462, -0.07008157670497894, -0.02130323462188244, -0.03401358053088188, 0.09724624454975128, 0.053932074457407, -0.015759818255901337, 0.12115553766489029, -0.11902138590812683, -0.08719149231910706, 0.15110792219638824, 0.020946579053997993, 0.02134671062231064, 0.07799559086561203, -0.040708690881729126, 0.12338753789663315, 0.00608135387301445, 0.07219792157411575, 0.12029492110013962, 0.002900733146816492, -0.11493203788995743, 0.03260112553834915, 0.011748641729354858, 0.05283372104167938, -0.0379377081990242, -0.08643251657485962, 0.09389620274305344, -0.13383719325065613, -0.047293756157159805, -0.08496084809303284, -0.07761250436306, 0.07096709311008453, 0.06047232449054718, -0.0858825221657753, 0.014364233240485191, 0.04763216897845268, 0.01482316292822361, -0.1302182674407959, -0.06835554540157318, -0.013917844742536545, 0.020605025812983513, -0.13814550638198853, 0.11096286028623581, -0.014409467577934265, -0.04236235097050667, 0.07774678617715836, 0.07816119492053986, -0.07819145172834396, 0.08724929392337799, -0.008651143871247768, -0.01613008975982666, -0.11902971565723419, 0.06038321927189827, 0.0979655310511589, 0.01450173556804657, -0.08588795363903046, 0.06196510046720505, -0.09167619794607162, -0.05213265120983124, 0.03660281002521515, -0.0008589139906689525, -0.08000441640615463, 0.10067165642976761, 0.027825377881526947, -0.020083855837583542, -0.002118123695254326, 0.06678400933742523, 0.05370961129665375, -0.07348893582820892, -0.0763057991862297, -0.0070787835866212845, -0.06694668531417847, -0.045750077813863754, 0.1302613466978073, 0.010481355711817741, 0.03544801473617554, 0.011020432226359844, 0.06730245798826218, 0.0230475552380085, -0.10213371366262436, -0.025545556098222733, 0.012949506752192974, -0.11379971355199814, -0.07057371735572815, 0.05263029783964157, -0.007947892881929874, 0.0513833723962307, -0.005465210881084204, 0.04263434559106827, 0.10409363359212875, 0.001934156520292163, -0.030420640483498573, -0.041908059269189835, 0.005193952936679125, 0.03413090109825134, -0.06488001346588135, -0.021331245079636574, -0.09899971634149551, -0.02948039025068283, 0.11038368195295334, -0.032210156321525574, -0.11475150287151337, -0.13050195574760437], -sitofp:[0.008587743155658245, -0.08872926980257034, 0.021460164338350296, 0.08460244536399841, 0.08651058375835419, -0.0005888052401132882, 0.013620748184621334, -0.021464111283421516, -0.004274184815585613, 0.03136635944247246, 0.11913084983825684, 0.059611719101667404, 0.01112429890781641, -0.0032740558963268995, -0.045585453510284424, 0.07640940696001053, -0.016464421525597572, -0.10925346612930298, -0.01101564522832632, 0.014996642246842384, -0.08946197479963303, -0.046875979751348495, -0.026826774701476097, 0.11546298861503601, -0.041502829641103745, 0.02383812703192234, 0.007601950317621231, 0.07197621464729309, -0.11222995072603226, -0.11537107080221176, 0.04495862126350403, 0.07755852490663528, 0.08937522023916245, 0.012179260142147541, 0.0005205900524742901, -0.08684973418712616, -0.06349566578865051, 0.020990248769521713, 0.02852500043809414, 0.042692866176366806, -0.07862476259469986, -0.06930705904960632, 0.11515603959560394, -0.13722781836986542, 0.024486994370818138, -0.06101362407207489, -0.006847449112683535, -0.15570847690105438, 0.09265320003032684, 0.09099139273166656, 0.003375421743839979, 0.06565021723508835, 0.14217732846736908, 0.03780798986554146, 0.1018349677324295, -0.008344714529812336, 0.060401901602745056, 0.09669838845729828, 0.11318735778331757, -0.020936651155352592, 0.06168639287352562, 0.016900481656193733, 0.10362124443054199, -0.033904388546943665, -0.010931570082902908, 0.004894505254924297, -0.17592667043209076, -0.08755584806203842, 0.11113376915454865, 0.04636136069893837, 0.008025753311812878, -0.05056529864668846, -0.07450937479734421, -0.05356269329786301, 0.05283932015299797, -0.048234760761260986, -0.13476106524467468, 0.001487536821514368, -0.0031231301836669445, -0.12682467699050903, -0.019949179142713547, -0.07192274183034897, 0.10949283093214035, -0.08239290118217468, 0.07147371023893356, 0.016265029087662697, 0.08637462556362152, 0.07452879846096039, -0.04221605882048607, 0.07282580435276031, 0.08022506535053253, -0.03511679545044899, -0.05020279064774513, 0.0015326265711337328, 0.10815058648586273, -0.04936856031417847, -0.12822093069553375, -0.03240470588207245, -0.080591581761837, 0.0978504866361618, 0.025403471663594246, 0.13595470786094666, -0.08428055793046951, -0.027453027665615082, 0.08077329397201538, -0.07191655039787292, -0.05090609937906265, -0.038205645978450775, 0.056856151670217514, -0.057933032512664795, -0.04628060758113861, -0.0731673464179039, -0.058739304542541504, -0.046462737023830414, -0.09741474688053131, -0.01022172812372446, -0.03659490495920181, -0.0379655547440052, 0.03264503553509712, -0.036690350621938705, 0.09222802519798279, 0.1301240772008896, -0.04188808426260948, 0.007259654812514782, -0.0751970037817955, -0.06827010214328766, 0.05185011401772499, 0.12861041724681854, 0.006057057064026594, 0.04781671240925789, -0.13894258439540863, 0.10780361294746399, 0.0575963594019413, -0.07692436873912811, -0.1319863200187683, -0.07334458082914352, -0.10208473354578018, -0.17004410922527313, 0.004965438973158598, 0.09910212457180023, -0.003104520495980978, 0.15243825316429138, 0.14602503180503845, -0.012390951626002789, -0.058857858180999756, -0.04529877379536629, -0.08598992973566055, -0.06216953694820404, -0.008112011477351189, -0.10137825459241867, 0.13491837680339813, -0.08855943381786346, 0.12120296061038971, -0.08386953175067902, 0.11330341547727585, -0.006801920477300882, -0.006646257359534502, -0.0739457830786705, -0.03166273236274719, -0.11923717707395554, 0.09109865874052048, -0.0440165251493454, 0.05482584610581398, -0.003367831464856863, 0.0831439271569252, -0.09765948355197906, -0.009248826652765274, 0.13071785867214203, 0.08982201665639877, -0.13793568313121796, 0.10206106305122375, -0.042160410434007645, 0.054499100893735886, 0.03582974523305893, -0.0007983522955328226, -0.11849458515644073, -0.0038253210950642824, -0.026031702756881714, 0.09253150969743729, -0.027276888489723206, -0.05239700525999069, -0.09911094605922699, 0.05849996954202652, -0.04840043559670448, -0.033985018730163574, 0.06798107177019119, -0.1169925108551979, -0.027160771191120148, 0.12414498627185822, 0.06682693958282471, 0.11720049381256104, 0.026836737990379333, -0.13457804918289185, 0.0280999094247818, -0.023787710815668106, 0.05643349885940552, 0.002424105303362012, -0.09071526676416397, -0.04157527908682823, 0.07548467069864273, 0.0782223790884018, 0.04501476511359215, -0.1509242206811905, -0.018807843327522278, 0.09351859241724014, 0.026720743626356125, -0.05458910018205643, 0.15993249416351318, -0.12898582220077515, -0.030410146340727806, 0.08123136311769485, -0.042389072477817535, -0.0794963613152504, -0.06878795474767685, -0.014150477014482021, -0.08603060990571976, 0.01643248274922371, 0.025249766185879707, -0.1434188336133957, -0.06317589432001114, 0.018356572836637497, -0.03456302359700203, 0.005303673911839724, 0.08903595805168152, -0.11006568372249603, -0.02628777176141739, 0.001560402219183743, 0.08606001734733582, 0.01023111306130886, 0.10351883620023727, -0.08492622524499893, -0.005659530870616436, 0.11270195990800858, 0.1079668179154396, 0.013727093115448952, -0.006802889984101057, 0.08043444156646729, -0.0047021289356052876, -0.1466471403837204, 0.026324251666665077, -0.028617126867175102, -0.1550527960062027, 0.1552848219871521, 0.11660744994878769, 0.06295252591371536, 0.02876325696706772, 0.06265615671873093, 0.029619181528687477, -0.1461258977651596, -0.05268556624650955, 0.18359163403511047, 0.03785301744937897, 0.009521347470581532, 0.01903579756617546, -0.0007247665198519826, -0.12898673117160797, -0.004390950780361891, 0.10575656592845917, -0.08565253764390945, 0.07353491336107254, -0.056099679321050644, -0.12710966169834137, -0.07195102423429489, 0.08113584667444229, -0.07581202685832977, 0.09324643015861511, 0.019050411880016327, -0.1277373731136322, -0.05445006117224693, -0.02078706957399845, -0.009811701253056526, 0.03602771461009979, 0.005477432161569595, -0.001899543683975935, -0.11513008177280426, 0.025438280776143074, 0.010456188581883907, -0.008781889453530312, -0.046088751405477524, -0.08363223075866699, 0.013817944563925266, 0.15378962457180023, 0.028965720906853676, 0.0525750033557415, -0.034254610538482666, 0.04530825465917587, -0.0221666619181633, -0.0704532042145729, -0.004846206400543451, 0.09490883350372314, 0.07799945771694183, 0.010889923200011253, -0.030132049694657326, -0.020984413102269173, 0.1035551130771637, -0.04031764343380928, -0.04362379014492035, 0.04782334715127945, -0.11470356583595276, -0.1205798014998436], -srem:[0.0401521734893322, -0.12772168219089508, 0.08080564439296722, 0.1366194188594818, 0.06036651134490967, -0.041498828679323196, 0.09244503825902939, 0.09553255885839462, -0.026185568422079086, 0.015523834154009819, 0.09209790080785751, 0.04254857450723648, 0.06296270340681076, -0.01547390315681696, 0.06118309497833252, 0.0361839197576046, -0.020958855748176575, -0.13209865987300873, -0.04506329074501991, -0.01437633577734232, 0.025441009551286697, 0.0757957249879837, -0.059853482991456985, 0.14403285086154938, -0.0340658538043499, 0.010623526759445667, -0.003956064116209745, -0.0052564418874681, -0.14795775711536407, 0.013589602895081043, 0.13163994252681732, -0.008961069397628307, 0.09236912429332733, 0.09640726447105408, 0.09789806604385376, 0.0018912660889327526, 0.10317625850439072, 0.132589191198349, 0.11507929861545563, -0.13183727860450745, -0.07724720984697342, 0.006034572143107653, 0.058141060173511505, 0.1065523698925972, -0.06230008229613304, -0.028067907318472862, 0.0130073931068182, -0.09983458369970322, -0.04225623980164528, -0.024950845167040825, -0.09387044608592987, 0.0321747325360775, -0.0019897439051419497, 0.12695203721523285, 0.0386015884578228, 0.03917817771434784, 0.03995198756456375, -0.059662360697984695, 0.12408824265003204, -0.06612903624773026, 0.05947960540652275, 0.023895379155874252, 0.05662984028458595, 0.03785968944430351, 0.12012580782175064, -0.025989701971411705, -0.18037156760692596, -0.1294257640838623, -0.07316839694976807, -0.02049032784998417, -0.046699926257133484, 0.03918495029211044, 0.013375126756727695, 0.06138322874903679, -0.03076801635324955, -0.11853419989347458, -0.030008630827069283, 0.05729580298066139, 0.09107963740825653, -0.060487762093544006, 0.13491463661193848, 0.139353945851326, -0.07714302092790604, 0.007127727847546339, 0.07812904566526413, 0.03856365755200386, -0.03778351843357086, 0.061846911907196045, 0.12958082556724548, 0.09432946890592575, -0.0012669960269704461, -0.058093953877687454, -0.04701361805200577, 0.052839670330286026, -0.05703191086649895, -0.0032310604583472013, -0.059153228998184204, 0.01979175955057144, -0.04794621467590332, 0.1470613181591034, -0.13011090457439423, 0.02766314335167408, -0.012247279286384583, 0.07107502222061157, 0.08711724728345871, 0.06139996647834778, -0.049314845353364944, -0.02963104285299778, -0.02817985974252224, -0.13696670532226562, 0.086153544485569, -0.13291475176811218, -0.0515909418463707, 0.06726101040840149, -0.09180299192667007, -0.037917908281087875, -0.11888248473405838, -0.031306229531764984, -0.058072399348020554, -0.012249469757080078, -0.02739425003528595, 0.039410300552845, -0.012101427651941776, 0.10908830910921097, -0.047443341463804245, -0.08634407073259354, -0.04924727976322174, 0.042617980390787125, 0.14430451393127441, -0.13235822319984436, -0.03745501860976219, -0.15413986146450043, 0.006326634436845779, 0.05625292658805847, -0.058533597737550735, -0.014758761040866375, -0.014215017668902874, -0.04587384685873985, -0.017198927700519562, 0.06804026663303375, 0.08204146474599838, -0.05633572116494179, 0.06588596105575562, 0.14729955792427063, 0.024144288152456284, 0.0034021104220300913, 0.004778587259352207, -0.06386435031890869, -0.03298497945070267, -0.05691966041922569, -0.046447839587926865, -0.13694173097610474, -0.12045390903949738, 0.010731776244938374, 0.05876508727669716, -0.0024166444782167673, 0.04679986834526062, 0.01225957553833723, 0.03326868265867233, -0.0940294861793518, 0.029652511700987816, 0.01732352003455162, -0.005238131619989872, -0.026394616812467575, 0.04844072833657265, 0.06593732535839081, 0.06559563428163528, 0.0033305648248642683, 0.05601028352975845, 0.06239376589655876, -0.047338731586933136, -0.04252739995718002, -0.11790814250707626, -0.017378853633999825, -0.08313299715518951, 0.017065245658159256, -0.06996181607246399, 0.08811880648136139, -0.04103050380945206, -0.12230109423398972, 0.027247097343206406, 0.005027660634368658, -0.006975405849516392, -0.031114300712943077, -0.08120942115783691, -0.028922665864229202, 0.06686858832836151, -0.0027276803739368916, 0.033569615334272385, -0.12704896926879883, -0.17332321405410767, -0.10079829394817352, -0.13413339853286743, 0.030735941603779793, 0.02253100275993347, -0.044454753398895264, -0.002276839455589652, -0.10648723691701889, 0.09074432402849197, -0.002496762201189995, -0.02233140915632248, -0.10079069435596466, -0.09735556691884995, -0.008724184706807137, -0.039739806205034256, -0.12421765178442001, 0.04002191498875618, 0.11906714737415314, 0.04775096848607063, -0.08429891616106033, -0.05624392628669739, -0.05974820256233215, -0.09439925849437714, 0.13035176694393158, -0.09090827405452728, -0.07182367146015167, 0.01387928519397974, -0.01040649227797985, -0.09719689190387726, 0.13858026266098022, 0.015996694564819336, 0.09125234186649323, -0.09102412313222885, 0.1007598266005516, 0.02922043949365616, 0.07092955708503723, -0.09371334314346313, 0.07242225855588913, -0.05956142395734787, 0.032080382108688354, -0.035681650042533875, 0.009229685179889202, 0.010526392608880997, -0.062146373093128204, 0.11779781430959702, -0.12584242224693298, -0.020692666992545128, -0.09309888631105423, -0.00825581420212984, 0.008174511604011059, 7.578981239930727e-06, -0.024783236905932426, -0.1515408456325531, -0.0802193135023117, 0.01059119962155819, -0.10437425971031189, 0.027639277279376984, -0.044686585664749146, -0.07641617208719254, -0.07546690851449966, -0.1063585951924324, 0.0916098952293396, 0.1255807876586914, 0.04212700575590134, -0.054274674504995346, -0.04555331543087959, 0.05481519177556038, 0.07429276406764984, 0.0035999268293380737, 0.0013299960410222411, 0.003928259946405888, -0.11778788268566132, -0.14563800394535065, 0.060195211321115494, -0.0032786265946924686, 0.08610035479068756, 0.07049473375082016, -0.11692480742931366, -0.06624926626682281, -0.04579513892531395, 0.032170116901397705, -0.018497927114367485, 0.07162250578403473, -0.12285598367452621, 0.12634141743183136, -0.053366489708423615, 0.09443731606006622, -0.018810248002409935, 0.16096201539039612, 0.02105122059583664, 0.09717495739459991, 0.0075613693334162235, -0.04119335487484932, 0.05563151836395264, -0.046014100313186646, 0.047489412128925323, 0.05821240693330765, -0.010220382362604141, 0.004644482396543026, 0.004513091407716274, -0.0008673002012073994, -0.01190384104847908, 0.10603513568639755, -0.11659859865903854, -0.05220230668783188, 0.03235791623592377, 0.0058500152081251144, 0.10617334395647049, -0.07887556403875351, -0.08768822997808456], -store:[0.028515255078673363, -0.10644727945327759, 0.0761638954281807, 0.10328599065542221, 0.08131546527147293, -0.003755396232008934, 0.11266210675239563, -0.055519040673971176, 0.10862123966217041, 0.033759795129299164, 0.0698932558298111, 0.012971983291208744, -0.05137358978390694, -0.00839788094162941, 0.08563259989023209, 0.010138146579265594, -0.01595720276236534, -0.10736098140478134, -0.0026794965378940105, -0.06060770899057388, -0.07046627998352051, -0.048515092581510544, -0.032479893416166306, 0.00297136721201241, -0.013913597911596298, -0.07294417917728424, 0.021445035934448242, -0.08150959014892578, -0.09551718086004257, 0.10683435201644897, 0.1085176020860672, -0.006401494145393372, 0.0911015197634697, 0.041088104248046875, 0.0433431901037693, -0.1800607293844223, 0.013018673285841942, 0.004842875059694052, 0.027351539582014084, -0.12089494615793228, -0.07489045709371567, -0.08620502054691315, 0.0602245107293129, -0.03359106928110123, 0.10532040148973465, 0.006879755761474371, 0.0025495504960417747, 0.1055273711681366, 0.014124948531389236, 0.0806489959359169, 0.01105306576937437, -0.0005257924785837531, -0.021209552884101868, 0.1718480885028839, -0.04470556601881981, -0.002649758942425251, 0.04178749397397041, -0.03280582278966904, -0.028390510007739067, 0.019906936213374138, 0.05889718607068062, 0.011839550919830799, 0.08699986338615417, 0.039884768426418304, 0.007446289993822575, -0.02492470294237137, -0.03721553459763527, -0.10911766439676285, -0.06746182590723038, 0.02175924740731716, 0.10571995377540588, -0.006157776806503534, -0.05381437763571739, -0.013284866698086262, 0.03551409766077995, -0.0985698252916336, -0.30609580874443054, 0.05116637051105499, 0.08567281067371368, -0.12535400688648224, 0.08137322962284088, 0.05908166617155075, 0.07384040206670761, 0.006922305561602116, 0.07843933999538422, 0.021906353533267975, 0.07741044461727142, 0.037916187196969986, -0.06057341396808624, 0.019886402413249016, -0.198447585105896, -0.07864824682474136, -0.04627407342195511, -0.09977620840072632, -0.007608829531818628, -0.10742853581905365, -0.0197575856000185, 0.13818521797657013, -0.03541569039225578, 0.09202933311462402, 0.022135354578495026, 0.052136875689029694, -0.07833663374185562, -0.009925746358931065, 0.05662192404270172, 0.06649037450551987, -0.06430745124816895, -0.07124675065279007, -0.06505268812179565, 0.027190620079636574, -0.03712303191423416, -0.058678168803453445, 0.018410202115774155, -0.0489657036960125, -0.040178075432777405, -0.13875633478164673, -0.10897772759199142, -0.03969768434762955, 0.06101873144507408, -0.04376855865120888, -0.09371069818735123, 0.11862124502658844, -0.10670427978038788, 0.007307285442948341, -0.048880260437726974, -0.0662667453289032, -0.013811292126774788, 0.06422161310911179, 0.030823510140180588, -0.0027949365321546793, 0.13372604548931122, -0.09249481558799744, -0.23152118921279907, 0.06355759501457214, 0.01913556642830372, 0.1942741572856903, 0.03930545225739479, 0.04196707531809807, 0.004427881445735693, 0.08555939793586731, -0.010714422911405563, 0.0489492192864418, 0.09182750433683395, 0.022950537502765656, 0.01813284121453762, -0.05433707311749458, -0.07730837166309357, -0.05751165747642517, 0.13497929275035858, 0.030946245416998863, 0.056955430656671524, -0.083380788564682, 0.105680912733078, -0.051432978361845016, 0.1044590100646019, 0.1339339166879654, -0.005566997453570366, 0.035200439393520355, -0.10021519660949707, 0.0913349837064743, -0.0216148030012846, 0.033796168863773346, -0.005309863481670618, 0.12157973647117615, 0.06600125133991241, -0.07501424103975296, 0.0023412229493260384, 0.013197662308812141, 0.08628897368907928, -0.056659795343875885, 0.04819580167531967, -0.05041424557566643, 0.056756164878606796, -0.08178368210792542, -0.028809579089283943, -0.07702695578336716, -0.004814035724848509, -0.10270525515079498, 0.07421036064624786, 0.03044132888317108, 0.09929529577493668, -0.17164623737335205, 0.0019661260303109884, -0.01933884061872959, -0.015590844675898552, -0.017826657742261887, -0.0034763161092996597, -0.02261376939713955, 0.07170521467924118, -0.029112564399838448, -0.04380745440721512, 0.0401485338807106, -0.05962967127561569, -0.07611595094203949, -0.03092130459845066, -0.02604137547314167, -0.02710154466331005, -0.0006548790261149406, -0.03663315251469612, 0.0023618536069989204, -0.11388383060693741, -0.04578998684883118, 0.07995060831308365, -0.0909581184387207, -0.030224580317735672, -0.011809712275862694, 0.0436120480298996, 0.12558840215206146, 0.10303767770528793, -0.04080825671553612, 0.02210524119436741, -0.11683928221464157, -0.061907920986413956, -0.08073262870311737, 0.21728049218654633, -0.07618425786495209, -0.11678723245859146, -0.08610986918210983, -0.08055802434682846, -0.0420193076133728, 0.1555856168270111, -0.03818274661898613, 0.0028953664004802704, 0.0962785929441452, -0.041883498430252075, 0.0429394468665123, 0.14279690384864807, 0.06863689422607422, 0.03897678852081299, 0.018228355795145035, 0.008575279265642166, 0.010256807319819927, -0.015250078402459621, -0.02327553927898407, 0.083196260035038, -0.08576654642820358, 0.03372972458600998, -0.0576724074780941, -0.07540811598300934, 0.10749273002147675, -0.015351462177932262, -0.023108530789613724, 0.10389663279056549, 0.04669429361820221, 0.010846786201000214, 0.03197716549038887, 0.053595732897520065, -0.014326220378279686, -0.07373297214508057, 0.02636995166540146, 0.033068589866161346, 0.03659304976463318, -0.0674767717719078, 0.001365835196338594, -0.005850725341588259, -0.10243796557188034, 0.0003888161154463887, 0.023842310532927513, -0.017227236181497574, 0.0015401876298710704, 0.12913940846920013, 0.004142268560826778, -0.010990222916007042, 0.08576616644859314, 0.002550004981458187, -0.02297363057732582, 0.02157416380941868, -0.11225367337465286, -0.016318785026669502, -0.14237001538276672, -0.0031760944984853268, -0.12012000381946564, 0.0595233328640461, -0.018798252567648888, 0.10588932782411575, 0.04560567066073418, -0.0379280187189579, -0.02563643455505371, 0.036160554736852646, -0.0733087956905365, -0.030550561845302582, -0.0533929318189621, 0.02404855564236641, 0.05616835132241249, -0.0566449873149395, 0.04064745455980301, 0.05326791852712631, 0.007946435362100601, -0.005963942036032677, -0.045916393399238586, 0.1731073409318924, 0.018596569076180458, 0.037053536623716354, 0.03955753520131111, -0.021490003913640976, -0.00404964666813612, 0.12595349550247192, 0.1527261584997177, -0.04682419076561928, -0.07544933259487152], -structTy:[-0.08366667479276657, 0.13411277532577515, -0.05515196546912193, -0.08709655702114105, -0.08663056045770645, 0.06228650361299515, -0.0489075593650341, 0.009498657658696175, 0.0031536805909126997, -0.05756871774792671, 0.0936020091176033, 0.049427568912506104, 0.04285808652639389, 0.071583591401577, -0.015548729337751865, -0.0761638805270195, 0.11468234658241272, 0.08733974397182465, -0.04918932169675827, -0.0896940752863884, 0.05182472616434097, 0.024561164900660515, 0.09354666620492935, -0.032947834581136703, -0.11075442284345627, -0.0140821672976017, 0.10660325735807419, 0.02016155794262886, 0.05776708573102951, 0.012191962450742722, 0.042836304754018784, 0.09701161086559296, 0.10269563645124435, -0.007977744564414024, -0.12888847291469574, -0.010133780539035797, -0.10505630075931549, -0.033746201545000076, -0.11444567143917084, 0.10825401544570923, 0.09331577271223068, 0.07757779955863953, -0.06430860608816147, 0.06949872523546219, -0.010276641696691513, 0.007124863099306822, -0.07069550454616547, 0.05622240528464317, -0.08559104055166245, -0.10222526639699936, 0.07488247752189636, 0.07130618393421173, -0.03529191389679909, 0.007519243750721216, -0.13144350051879883, 0.03220449015498161, -0.10011155903339386, 0.0737636610865593, 0.04338209331035614, 0.10351204127073288, -0.12148439884185791, 0.09979363530874252, -0.11751760542392731, -0.11226898431777954, 0.0026254281401634216, -0.0987168699502945, 0.1181662306189537, -0.0038451068103313446, -0.11489266157150269, 0.09960512816905975, -0.010461144149303436, -0.08693436533212662, 0.11684618890285492, -0.07151253521442413, -0.018509259447455406, -0.012337804771959782, 0.019736208021640778, -0.0734400525689125, -0.11730784177780151, 0.0734683945775032, -0.12966042757034302, -0.04641960933804512, -0.0755852609872818, -0.04118568077683449, -0.03022756800055504, 0.08104974031448364, -0.10788097232580185, -0.12299035489559174, 0.06129196658730507, -0.026184557005763054, 0.040589526295661926, 0.03488763049244881, -0.1123960092663765, -0.017677217721939087, 0.12106304615736008, -0.0395292267203331, 0.03769279271364212, -0.008370685391128063, 0.02100962959229946, -0.08468456566333771, -0.10294889658689499, -0.06008671224117279, 0.04072648286819458, 0.009810207411646843, -0.10205002874135971, 0.09778732806444168, -0.07551860809326172, 0.07684750109910965, 0.0700598731637001, 0.07004573196172714, 0.09087307751178741, 0.1010424867272377, 0.06618861854076385, 0.08566182106733322, 0.05063505843281746, 0.004339990671724081, 0.01660039834678173, 0.07229044288396835, -0.06881966441869736, 0.09584139287471771, -0.04280833899974823, -0.020836638286709785, -0.013104601763188839, 0.07951351255178452, 0.13158833980560303, 0.14081421494483948, -0.1157783642411232, 0.0078129218891263, 0.04836531728506088, 0.020576663315296173, 0.00385301630012691, 0.046107642352581024, 0.04900892823934555, -0.028638765215873718, -0.00958284642547369, 0.04859553650021553, 0.03040560707449913, -0.026063665747642517, -0.08232513070106506, -0.08333570510149002, 0.05366216599941254, -0.03327193111181259, -0.01259680837392807, -0.11065299063920975, 0.04214014485478401, 0.06125553697347641, 0.09582807868719101, 0.07816323637962341, 0.03204981982707977, 0.08641605824232101, 0.00794929824769497, -0.09593792259693146, -0.0038181014824658632, 0.018260184675455093, -0.11592568457126617, -0.07321435213088989, -0.10293536633253098, 0.007703213486820459, 0.07122965902090073, 0.0239028949290514, -0.08216224610805511, -0.0021973189432173967, -0.0861438512802124, -0.03349170833826065, -0.07259463518857956, 0.11858785897493362, -0.09680338203907013, -0.04499182850122452, -0.12207923084497452, 0.004676389042288065, -0.0599672831594944, 0.055426113307476044, -0.072492316365242, 0.040118832141160965, -0.036150772124528885, -0.0023839413188397884, 0.033955544233322144, 0.0705682784318924, -0.08567910641431808, -0.05704225227236748, -0.04978349059820175, -0.006339751183986664, 0.07249932736158371, -0.08873683214187622, -0.10158900916576385, 0.08458739519119263, -0.09547942131757736, 0.11119242757558823, -0.11208727210760117, 0.09127165377140045, -0.025138696655631065, -0.10526174306869507, 0.08494676649570465, 0.000972316658589989, 0.07528720796108246, 0.040643997490406036, 0.09662467986345291, -0.0610024519264698, -0.029805751517415047, 0.04965244606137276, -0.07011677324771881, 0.07499059289693832, 0.02879575826227665, -0.048460472375154495, -0.04509509354829788, 0.10255148261785507, 0.12390139698982239, -0.12500102818012238, -0.041409898549318314, 0.003565784078091383, 0.09102566540241241, 0.05316907539963722, 0.09012942016124725, -0.008004720322787762, 0.000545213115401566, 0.1492045521736145, 0.009609902277588844, -0.007557764649391174, 0.06459205597639084, -0.03172551468014717, -0.0344984270632267, 0.10106971859931946, -0.04112372174859047, -0.11488672345876694, 0.020918479189276695, 0.017040206119418144, 0.09346572309732437, -0.045447565615177155, 0.048009708523750305, 0.12059979885816574, 0.08501346409320831, -0.05139702931046486, -0.09277922660112381, -0.10620203614234924, -0.056426387280225754, 0.013883608393371105, -0.035933706909418106, 0.09756992757320404, 0.08836556226015091, 0.053290896117687225, -0.08187980204820633, 0.06633172184228897, 0.013512336649000645, -0.019314903765916824, -0.11945902556180954, -0.07797953486442566, 0.019451050087809563, -0.11368270218372345, 0.1286645233631134, -0.11145566403865814, 0.020586030557751656, -0.04689852148294449, 0.09461092948913574, 0.09338552504777908, 0.08067581057548523, -0.03775635361671448, -0.07284184545278549, 0.02184869721531868, 0.09379097074270248, -0.09752222150564194, -0.028134526684880257, -0.0352986678481102, 0.03159434348344803, -0.018983853980898857, 0.023211102932691574, 0.05915944650769234, 0.092887744307518, -0.07064796984195709, 0.09731574356555939, -0.01403292641043663, -0.08071894198656082, -0.0015746767167001963, -0.06795013695955276, 0.08718764781951904, -0.09846973419189453, 0.10591502487659454, 0.03654230013489723, 0.07535660266876221, 0.06760318577289581, 0.09624355286359787, -0.05925643444061279, 0.014139954932034016, -0.06777359545230865, -0.04107017442584038, 0.04138687998056412, -0.07336746901273727, -0.08958800137042999, 0.07681238651275635, 0.0896216332912445, 0.004028886090964079, 0.0025651431642472744, 0.052678998559713364, -0.05722862109541893, 0.05394286662340164, 0.10648054629564285, 0.07107259333133698, 0.034148208796978, 0.009483621455729008, 0.07675857096910477, 0.11998580396175385], -sub:[0.034893929958343506, -0.11951646953821182, 0.07781219482421875, 0.10324860364198685, 0.07508380711078644, 0.006656960118561983, 0.09638682752847672, -0.06641917675733566, 0.10298489779233932, 0.0323086716234684, 0.1162024512887001, 0.05579033121466637, -0.08822142332792282, -0.10084661841392517, 0.0739804059267044, -0.007003266364336014, -0.015615067444741726, -0.10507255792617798, -0.029764939099550247, -0.022358696907758713, 0.016361556947231293, -0.06671464443206787, -0.04342295601963997, 0.13941705226898193, -0.008139333687722683, -0.05913955718278885, 0.002890372183173895, 0.030230706557631493, -0.12524349987506866, -0.05681938678026199, -0.033838775008916855, -0.014681478962302208, 0.10366085171699524, -0.05436315760016441, 0.11005093157291412, 0.09324667602777481, 0.08697593957185745, 0.11976858228445053, 0.0440065972507, -0.12339626252651215, -0.07376490533351898, -0.016862470656633377, 0.08274910598993301, -0.08370589464902878, -0.02074366807937622, 0.07286485284566879, 0.010312063619494438, -0.00599252711981535, -0.0016430136747658253, 0.07011906802654266, -0.0429612472653389, 0.024345548823475838, 0.1040741503238678, -0.07623040676116943, 0.03316066041588783, 0.01782786287367344, 0.06338608264923096, -0.0062005044892430305, 0.05118442326784134, -0.0879058986902237, 0.05822572484612465, 0.015263047069311142, 0.06189577654004097, -0.03419717401266098, 0.0015979980817064643, -0.01907406747341156, -0.06524093449115753, 0.015172977931797504, -0.06573591381311417, -0.005503410939127207, 0.05353087931871414, 0.02446172758936882, -0.09448011219501495, 0.011256388388574123, -0.2116529792547226, -0.08228558301925659, 0.05128662288188934, -0.03982357680797577, 0.08717042952775955, -0.05394984409213066, 0.06408730149269104, 0.12479251623153687, 0.020715251564979553, 0.059512075036764145, 0.0781826600432396, 0.04012191295623779, 0.03455428034067154, 0.06485763192176819, -0.05544925853610039, 0.1484091430902481, -0.20435641705989838, -0.09649945050477982, -0.0456836074590683, -0.09758277982473373, -0.03942422941327095, -0.19794346392154694, -0.03890855982899666, -0.1834576576948166, -0.08007305860519409, 0.1061122789978981, 0.022075163200497627, -0.00611689779907465, -0.05212978646159172, -0.11333536356687546, 0.07314178347587585, 0.06753919273614883, -0.0663791298866272, -0.07830207049846649, 0.053848739713430405, 0.025885047391057014, -0.002204464515671134, -0.05656139552593231, 0.11918502300977707, 0.019706344231963158, 0.047646310180425644, -0.028491368517279625, -0.10448934137821198, -0.03617953881621361, 0.08959224820137024, -0.04777439683675766, 0.02255868725478649, 0.1137261837720871, -0.07044815272092819, 0.0893029272556305, -0.057406894862651825, -0.06329043209552765, -0.018337469547986984, -0.028055820614099503, 0.0575764998793602, 0.04785721004009247, -0.036642685532569885, -0.0812438428401947, 0.04866575449705124, -0.12963324785232544, -0.07509582489728928, -0.004094976931810379, 0.047606486827135086, -0.01771690510213375, -0.003693255363032222, 0.11873394250869751, 0.08754688501358032, 0.12883932888507843, 0.06819180399179459, -0.07426350563764572, -0.1284843534231186, -0.005899124778807163, 0.012976356782019138, -0.06531792134046555, -0.1399148404598236, 0.0051662977784872055, 0.07552416622638702, 0.02478700689971447, -0.008271105587482452, 0.002148485044017434, 0.09234645962715149, -0.08319427818059921, -0.013589290902018547, -0.06999020278453827, 0.05554959550499916, -0.10439015179872513, -0.006492658983916044, -0.002255547558888793, 0.006834541447460651, -0.04302290827035904, 0.0619552917778492, -0.007328984793275595, -0.017177840694785118, 0.11480159312486649, 0.08477459847927094, 0.0887855738401413, 0.05575546249747276, -0.042060405015945435, 0.07898688316345215, 0.028709793463349342, 0.018457122147083282, -0.1837647557258606, -0.06183762103319168, -0.08561018109321594, 0.10725539177656174, 0.020057570189237595, -0.15118408203125, 0.09500270336866379, -0.020266477018594742, -0.030276542529463768, 0.056774381548166275, 0.05269218981266022, -0.05039602890610695, -0.013345112092792988, 0.05908646807074547, -0.03818441927433014, -0.0036162284668534994, 0.039128419011831284, -0.087342768907547, -0.03286183625459671, 0.09553403407335281, -0.008028745651245117, -0.003244460094720125, -0.08967377990484238, -0.017528150230646133, -0.01704218052327633, 0.0029640088323503733, -0.09796866774559021, 0.07424448430538177, -0.10342808067798615, -0.034859344363212585, -0.10846395045518875, -0.008782329969108105, 0.12291436642408371, 0.0986032709479332, 0.001693804282695055, -0.004812413826584816, 0.07586017996072769, 0.05146878957748413, 0.02125403843820095, 0.025129521265625954, -0.029734069481492043, 0.06987272202968597, 0.07590999454259872, -0.03155427426099777, 0.10142628103494644, -0.017816953361034393, -0.03424559161067009, -0.17990507185459137, 0.09941092878580093, -0.05967836081981659, 0.035830624401569366, -0.10380550473928452, 0.06667280942201614, -0.04539117589592934, 0.015684960409998894, -0.051965370774269104, 0.006868597585707903, 0.039609383791685104, -0.09638141095638275, 0.031014569103717804, -0.09989415854215622, 0.008834405802190304, -0.016039948910474777, -0.05140457674860954, 0.1157035306096077, -0.014070821925997734, -0.035548292100429535, -0.10932815819978714, -0.02503981441259384, 0.022319423034787178, 0.01141311600804329, 0.0029112084303051233, -0.032025858759880066, -0.07468405365943909, -0.014741682447493076, 0.09309908002614975, -0.02340446226298809, -0.08607617765665054, 0.04028238728642464, -0.05576135963201523, -0.0222467128187418, 0.02174929715692997, 0.11141029745340347, -0.02115623652935028, 0.05972118303179741, 0.054244764149188995, 0.013424158096313477, -0.0780990943312645, 0.08186976611614227, 0.0011204977054148912, 0.00967562198638916, 0.006966135464608669, -0.020010361447930336, -0.062291041016578674, 0.05261779576539993, 0.037207093089818954, -0.1997399628162384, 0.10123161226511002, -0.02607755921781063, 0.12448877841234207, 0.019456004723906517, 0.01159918773919344, -0.031166721135377884, 0.05443539470434189, -0.07913703471422195, -0.003711078315973282, -0.047875549644231796, 0.024377234280109406, 0.05242624878883362, -0.05940626561641693, 0.028808433562517166, 0.05364564061164856, -0.07768085598945618, 0.0015248515410348773, -0.19360509514808655, 0.0557817779481411, -0.018127353861927986, 0.03565173223614693, 0.0369320847094059, -0.04130309447646141, -0.014569907449185848, 0.1049903929233551, 0.12717305123806, -0.10809198766946793, -0.07724431157112122], -switch:[0.036451224237680435, -0.09101904183626175, 0.08045677095651627, 0.10522929579019547, 0.08335629850625992, -0.0019306923495605588, -0.097271628677845, 0.004494599532335997, 0.02084861509501934, 0.01948583871126175, -0.004504294600337744, 0.11804045736789703, 0.10517403483390808, -0.0001447686372557655, -0.03902474790811539, 0.05753681808710098, -0.015764586627483368, -0.11032301187515259, 0.028170017525553703, 0.017537560313940048, -0.012294193729758263, 0.05600966140627861, 0.11145705729722977, -0.13375699520111084, -0.007893981412053108, 0.12300153076648712, -0.003418693318963051, -0.005929181817919016, 0.014258302748203278, -0.1125650629401207, 0.10055159032344818, -0.015916207805275917, 0.08470790088176727, 0.04589734971523285, -0.050166334956884384, -0.13048140704631805, 0.08094491809606552, 0.0037037250585854053, 0.03537912666797638, -0.12039265781641006, -0.07614419609308243, 0.19559696316719055, -0.09420417994260788, -0.049469154328107834, 0.048847220838069916, 0.05568959191441536, 0.01225695013999939, -0.0073412321507930756, -0.10497422516345978, 0.1565772294998169, -0.07912641018629074, 0.04207674041390419, 0.09607655555009842, -0.015176058746874332, 0.11077273637056351, -0.0010658809915184975, 0.059208594262599945, 0.0007580267847515643, -0.006277397740632296, -0.08707525581121445, 0.06142216548323631, 0.014732984825968742, 0.059704504907131195, 0.04228304699063301, 0.13679362833499908, -0.02573872171342373, -0.1194048747420311, -0.05486611649394035, -0.05091838166117668, 0.008491582237184048, 0.04841659218072891, 0.07967624813318253, 0.05946784093976021, 0.0713709145784378, 0.10778439044952393, 0.1090291365981102, 0.16318510472774506, -0.013804422691464424, 0.09017397463321686, -0.005431835539638996, 0.041413407772779465, 0.06440726667642593, 0.09991412609815598, -0.007479116320610046, -0.10810896754264832, 0.030837787315249443, -0.17777197062969208, 0.12389673292636871, -0.03213685750961304, -0.03909724950790405, -0.013809422962367535, -0.051182880997657776, -0.04764929413795471, -0.06944932788610458, -0.04736018180847168, 0.004104753024876118, 0.0210097823292017, 0.1299668252468109, 0.14752306044101715, 0.102434903383255, 0.025103164836764336, 0.030251894146203995, 0.03520748019218445, -0.11988826096057892, 0.08087339997291565, 0.03071114420890808, -0.04549228772521019, 0.12249982357025146, 0.05257153511047363, -0.15258842706680298, -0.002179794479161501, -0.06448663026094437, -0.060105111449956894, 0.11819338798522949, -0.06955965608358383, 0.16211864352226257, -0.012210393324494362, -0.03313855081796646, 0.05403945595026016, -0.03616459295153618, 0.08048200607299805, -0.1470481902360916, 0.07355320453643799, -0.0007494159508496523, -0.1296873390674591, -0.06802927702665329, -0.015804890543222427, -0.04883219674229622, 0.04428495839238167, 0.04427235573530197, 0.06364870816469193, 0.007450439035892487, 0.029409848153591156, 0.0602949857711792, 0.10225902497768402, 0.03158561512827873, -0.08660659939050674, -0.058050449937582016, 0.001433751080185175, 0.05692311003804207, 0.07964880764484406, -0.00023283787595573813, -0.009608393535017967, -0.0939645916223526, 0.11904533952474594, 0.05143541842699051, -0.08305668085813522, -0.06020253896713257, 0.0034258824307471514, -0.016888760030269623, 0.032985176891088486, -0.08604314923286438, 0.08667608350515366, 0.17982566356658936, 0.08816155046224594, -0.09352189302444458, 0.006732719484716654, 0.052491191774606705, -0.08976182341575623, 0.10770547389984131, -0.09905685484409332, 0.12092792242765427, -0.006208912003785372, -0.0038569169119000435, -0.08919557929039001, -0.019434144720435143, 0.02264486253261566, 0.11293529719114304, 0.08019562810659409, -0.037487927824258804, 0.1702088713645935, -0.05156832933425903, 0.0912005603313446, -0.02189250849187374, -0.0628349781036377, 0.038576140999794006, -0.0014362192014232278, -0.12622681260108948, -0.07917966693639755, -0.11040717363357544, -0.04887406900525093, 0.07847895473241806, -0.13676078617572784, -0.01414587814360857, 0.04203944653272629, -0.02262318879365921, 0.0512574203312397, -0.008945351466536522, 0.013594403862953186, -0.053451575338840485, 0.12238285690546036, 0.03960317745804787, 0.08996644616127014, -0.09666350483894348, -0.021654518321156502, 0.05522448197007179, -0.11153916269540787, 0.16231369972229004, 0.0681176707148552, 0.006747608073055744, -0.03449591249227524, 0.041726548224687576, 0.10425549000501633, -0.037308257073163986, 0.03482715040445328, 0.030695555731654167, 0.04011727124452591, 0.09020594507455826, -0.001427104463800788, 0.01428407896310091, -0.07207906246185303, -0.046462878584861755, -0.07946009188890457, -0.07758435606956482, -0.10050880163908005, -0.08401519805192947, 0.07351622730493546, 0.1561986654996872, -0.029191674664616585, -0.012397169135510921, -0.12906238436698914, -0.03448806703090668, -0.09578444063663483, 0.09743636101484299, 0.0077078635804355145, -0.05098821595311165, -0.04481660574674606, 0.06704145669937134, -0.13355326652526855, 0.012680632062256336, -0.062480080872774124, -0.013739407993853092, 0.0636797547340393, 0.08731158822774887, 0.0036886006128042936, -0.008238221518695354, -0.05595674738287926, -0.09889714419841766, -0.026199260726571083, 0.013321483507752419, -0.14552828669548035, -0.0701688900589943, -0.12189637124538422, -0.13212522864341736, 0.02375909686088562, 0.020912861451506615, -0.10728207975625992, 0.028655827045440674, -0.15227869153022766, 0.010994493961334229, 0.09152653068304062, 0.0786202996969223, 0.014721928164362907, -0.05107985809445381, 0.0007336331182159483, 0.061414700001478195, 0.005725733004510403, 0.06497909128665924, 0.009626016020774841, 0.01583104021847248, -0.15324141085147858, 0.00797292124480009, -0.06963527947664261, 0.09068390727043152, 0.04267618805170059, -0.10620728135108948, 0.016738122329115868, 0.05755508691072464, -0.017929451540112495, 0.0021398847457021475, -0.011621864512562752, -0.032998163253068924, 0.11205175518989563, -0.008986354805529118, -0.025940068066120148, -0.12965616583824158, -0.0623621791601181, -0.04897816851735115, -0.07735539972782135, -0.060995034873485565, 0.02094104140996933, -0.0022788771893829107, -0.004854703322052956, 0.04961513727903366, 0.060211922973394394, -0.12364719063043594, 0.05562058836221695, 0.0010228469036519527, -0.0016767681809142232, -0.04778742417693138, 0.0970577672123909, 0.13347643613815308, 0.03630242869257927, 0.029945727437734604, -0.03303255885839462, -0.031529802829027176, -0.12690652906894684, 0.09143184125423431, -0.0589202456176281, -0.07730163633823395], -trunc:[0.03316561132669449, -0.1105155274271965, 0.07765983790159225, 0.08159202337265015, 0.053807925432920456, 0.041760653257369995, -0.10353944450616837, -0.0323803536593914, 0.10425011813640594, 0.019541984423995018, -0.004493072163313627, 0.11885127425193787, 0.01882232539355755, -0.01631813496351242, 0.024161124601960182, -0.10903311520814896, -0.018039966002106667, -0.007725581526756287, -0.017031431198120117, -0.009603801183402538, -0.06376258283853531, -0.05736120417714119, -0.06023390591144562, 0.14783911406993866, -0.04489155113697052, 0.2091566026210785, -0.0031701247207820415, -0.021823642775416374, -0.09675273299217224, 0.2014225721359253, 0.06807135045528412, -0.017979085445404053, 0.08632990717887878, 0.1528186947107315, 0.08368730545043945, 0.0884881243109703, -0.10044768452644348, -0.0180963221937418, 0.06260984390974045, -0.12723508477210999, -0.07568350434303284, -0.015661973506212234, 0.08648879826068878, 0.07683837413787842, 0.09031320363283157, -0.06191980838775635, -0.01907035894691944, -0.01774735562503338, -0.008771977387368679, -0.008826330304145813, -0.04728034511208534, -0.02946610003709793, 0.17295697331428528, 0.07450181990861893, 0.052396923303604126, -0.012532456777989864, 0.055717773735523224, -0.0996236503124237, 0.05777694284915924, -0.07469593733549118, 0.0613362081348896, 0.011020136997103691, 0.09500708431005478, 0.05615156516432762, 0.03372000902891159, -0.05538710206747055, 0.004047889728099108, 0.010400696657598019, -0.05001553148031235, 0.04360151290893555, -0.03311892971396446, 0.06436710059642792, 0.012963633053004742, -0.10215052962303162, 0.030241232365369797, -0.05103946477174759, -0.01917174644768238, 0.10240007936954498, 0.08839980512857437, 0.01625989004969597, 0.029025990515947342, 0.08820191770792007, 0.0349387601017952, -0.0055118752643466, 0.07260539382696152, 0.028824638575315475, 0.06051541119813919, 0.06181858852505684, -0.06693322211503983, 0.03246134892106056, -0.14346572756767273, 0.07756876200437546, -0.04927777126431465, -0.06340572237968445, -0.01652343198657036, 0.07789383083581924, -0.03232080861926079, -0.22359980642795563, -0.0406440868973732, 0.090229332447052, 0.04318765178322792, 0.07858402281999588, 0.1053088828921318, -0.027680354192852974, 0.06603795289993286, 0.0004165158898103982, 0.015482287853956223, -0.027584969997406006, 0.04848996177315712, 0.02777702361345291, -0.031784798949956894, -0.06804661452770233, -0.08234620094299316, -0.08267607539892197, 0.01159535814076662, 0.09374376386404037, 0.0168758612126112, -0.030130861327052116, 0.005324412137269974, -0.03687262907624245, -0.024976233020424843, 0.12055972218513489, 0.0574658177793026, 0.048323050141334534, -0.0612722784280777, 0.03978370875120163, 0.06652728468179703, -0.09035401046276093, 0.06242571771144867, 0.0009868964552879333, 0.06080465763807297, -0.027630647644400597, 0.18284565210342407, 0.14086581766605377, -0.10247679054737091, -0.08388009667396545, -0.12672734260559082, -0.017979033291339874, 0.010011355392634869, 0.02026343159377575, 0.08487238734960556, 0.010968036949634552, -0.0215181615203619, -0.049808405339717865, -0.054936423897743225, -0.04854394868016243, -0.02068663388490677, -0.06333447992801666, -0.034478120505809784, -0.11090795695781708, -0.08317255228757858, 0.007423147093504667, -0.060669030994176865, -0.14206664264202118, 0.055252645164728165, 0.14044040441513062, -0.018474696204066277, -0.19341696798801422, 0.005437623709440231, -0.09105643630027771, 0.10354172438383102, 0.0315796323120594, -0.006568978074938059, 0.10446089506149292, 0.031999874860048294, -0.09982880204916, 0.0020126188173890114, -0.04359160363674164, 0.09711017459630966, -0.16067469120025635, 0.05667698755860329, -0.047301579266786575, -0.044072676450014114, 0.006741417106240988, 0.15521785616874695, 0.045932017266750336, 0.06469311565160751, 0.06764905899763107, 0.11466813832521439, 0.023636287078261375, 0.1862974911928177, -0.06681777536869049, -0.022923456504940987, -0.05107739195227623, 0.02353028766810894, -0.05403544753789902, -0.0830795168876648, -0.015393232926726341, 0.0978868156671524, -0.03030737303197384, 0.11723746359348297, 0.06959982216358185, -0.0673188865184784, 0.06603432446718216, -0.03089742735028267, 0.029258357360959053, 0.013681134209036827, -0.008694310672581196, 0.0679403692483902, -0.011142866685986519, -0.12629851698875427, -0.01599161885678768, 0.007106361445039511, -0.09831712394952774, 0.02774680219590664, -0.07838241010904312, 0.04219375550746918, 0.12399151921272278, -0.10328763723373413, 0.10046099871397018, 0.08327433466911316, 0.013319234363734722, -0.07198817282915115, 0.061149753630161285, 0.00492724496871233, -0.08499646931886673, 0.07811876386404037, 0.00313337123952806, -0.1338949054479599, -0.08186616003513336, -0.060475628823041916, -0.0416862927377224, 0.0031467443332076073, 0.09734290093183517, -0.05742435157299042, 0.08406645804643631, -0.05679260939359665, 0.06561999768018723, 0.08966080099344254, 0.011524312198162079, -0.0761246308684349, 0.012208225205540657, 0.010137905366718769, -0.025437723845243454, 0.03800930827856064, 0.019402960315346718, 0.03638456016778946, -0.08686775714159012, -0.0636540949344635, 0.10910803824663162, -0.014820858836174011, -0.07804882526397705, -0.11043186485767365, 0.07174789160490036, -0.004528307821601629, -0.05773324519395828, 0.027275677770376205, -0.06266369670629501, -0.07997690886259079, 0.05032774433493614, -0.023370910435914993, -0.01434794720262289, -0.09364724159240723, -0.055829621851444244, -0.012430272065103054, -0.061779774725437164, 0.039185672998428345, 0.03126196190714836, -0.04332364350557327, 0.03822584077715874, 0.03970838710665703, 0.1531708985567093, -0.09931080788373947, -0.07412529736757278, -0.0668017715215683, 0.05123070254921913, 0.01422703918069601, -0.04580756649374962, -0.053249407559633255, -0.22035379707813263, 0.0612499825656414, -0.11738218367099762, -0.00023495499044656754, -0.01561592984944582, 0.10727787762880325, 0.03586972877383232, 0.04426620155572891, -0.013436242006719112, -0.050368983298540115, -0.13828347623348236, -0.05810427665710449, -0.01125631295144558, -0.04748186096549034, 0.04418708756566048, 0.12979044020175934, 0.04669072479009628, 0.05841624364256859, -0.023027924820780754, 0.0067288014106452465, 0.12418033182621002, -0.20215769112110138, -0.014377268962562084, 0.027481283992528915, 0.09768563508987427, -0.054780732840299606, -0.022142041474580765, -0.12707047164440155, 0.12098503112792969, -0.11336442828178406, -0.12427639961242676], -udiv:[0.04017326980829239, -0.11986739933490753, 0.11695688217878342, -0.056405723094940186, -0.08613117039203644, 0.023830410093069077, 0.015486077405512333, -0.09753770381212234, -0.058288637548685074, 0.01923687942326069, -0.09092620760202408, 0.10922259092330933, -0.04588573798537254, -0.011788737028837204, 0.08735618740320206, 0.0030194453429430723, -0.06881562620401382, -0.05174518749117851, 0.11706045269966125, -0.021395796909928322, 0.06945495307445526, -0.12941405177116394, -0.060346800833940506, 0.1504630744457245, -0.04582639038562775, -0.031190451234579086, 0.004221165552735329, -0.007799303159117699, 0.01027641911059618, -0.024425992742180824, 0.0028682297561317682, -0.024486118927598, 0.09299487620592117, -0.003609093138948083, 0.14925429224967957, -0.032998841255903244, -0.09419386833906174, -0.023196974769234657, 0.08368004858493805, -0.13421164453029633, -0.01931445486843586, 0.05758170783519745, 0.09420070797204971, 0.0987652912735939, 0.030391963198781013, 0.05905039235949516, -0.12991075217723846, -0.01852646842598915, -0.10503020137548447, -0.0759190171957016, -0.13747330009937286, 0.007146287243813276, -0.0643320083618164, -0.014809345826506615, -0.033576998859643936, -0.07215262949466705, 0.0017048156587406993, 0.029759688302874565, 0.00543639762327075, -0.13507899641990662, 0.16574932634830475, 0.06090649589896202, 0.129667267203331, 0.038785796612501144, 0.0037231033202260733, -0.0876850038766861, -0.05781565234065056, 0.023154355585575104, 0.07326287031173706, -0.06028149649500847, 0.06490357965230942, 0.011601882986724377, -0.03804902732372284, -0.08619683235883713, -0.015819700434803963, -0.0731901228427887, -0.03203487768769264, 0.0718657597899437, -0.04248722270131111, 0.10943041741847992, 0.03566325828433037, 0.06442146748304367, 0.13703545928001404, 0.004445440601557493, 0.09623882919549942, -0.04008645936846733, 0.05941738188266754, 0.03756554797291756, -0.07236094772815704, -0.023848984390497208, -0.06223519891500473, -0.008596661500632763, -0.05006612092256546, 0.04016473889350891, -0.03718516603112221, 0.012924927286803722, -0.1076711118221283, -0.035618096590042114, -0.02171970158815384, 0.09296225756406784, 0.12132351100444794, -0.11229018121957779, 0.011651572771370411, 0.08614436537027359, 0.0714113712310791, 0.03961263224482536, -0.06391515582799911, -0.0715297982096672, -0.026501495391130447, 0.11724426597356796, -0.018388578668236732, -0.06662529706954956, 0.033379584550857544, -0.13327552378177643, -0.05258943885564804, -0.06139378994703293, 0.03521503880620003, -0.01260663103312254, 0.10477615147829056, -0.03723451495170593, -0.004299250431358814, 0.12457198649644852, -0.00608096132054925, 0.057744454592466354, 0.024361219257116318, -0.09608263522386551, -0.06033672019839287, -0.11731461435556412, 0.14680388569831848, 0.12969844043254852, -0.16825029253959656, -0.012772212736308575, -0.02095603756606579, -0.006094666663557291, -0.07569026201963425, -0.0056930361315608025, -0.021707508713006973, -0.15832461416721344, 0.011445488780736923, 0.08333806693553925, 0.15179947018623352, -0.04534852132201195, -0.09063024818897247, 0.027847617864608765, 0.11109025776386261, -0.0060339877381920815, 0.04232577234506607, -0.09857376664876938, 0.01543489284813404, -0.04132048040628433, 0.09691902995109558, 0.03360629454255104, 0.0948840081691742, -0.06946466118097305, 0.013000666163861752, 0.004126814194023609, -0.053688693791627884, -0.13414403796195984, -0.16755637526512146, 0.0878669023513794, 0.00715043768286705, 0.11940719187259674, -0.05445685610175133, -0.0044479165226221085, -0.02873614802956581, -0.11259914189577103, 0.0013591357273980975, -0.01248108595609665, 0.11285782605409622, -0.020027119666337967, 0.001124837319366634, -0.056419845670461655, 0.12152871489524841, 0.09955216944217682, 0.05526897311210632, -0.004700744524598122, 0.12068391591310501, 0.0106324702501297, 0.11922208964824677, 0.01960773579776287, 0.03639264777302742, 0.023419013246893883, -0.11253487318754196, -0.04029065743088722, -0.07980625331401825, -0.0705476924777031, -0.06841660290956497, -0.0778333842754364, 0.07966877520084381, 0.05913596972823143, 0.07099779695272446, 0.12067350000143051, -0.1063084825873375, 0.012805091217160225, 0.044932056218385696, -0.08684253692626953, 0.04653618857264519, -0.09864024072885513, 0.1268770396709442, -0.12201480567455292, -0.02829781174659729, -0.04660273343324661, -0.04908040165901184, -0.14326708018779755, 0.03936460614204407, -0.054361049085855484, 0.008566721342504025, 0.1292715072631836, 0.016173359006643295, -0.022562075406312943, 0.09076400846242905, 0.022138217464089394, 0.03966052085161209, -0.08305920660495758, 0.002685090759769082, 0.03443572670221329, 0.0160004124045372, 0.0866348147392273, 0.046213723719120026, -0.035075969994068146, 0.045943643897771835, -0.04085048660635948, -0.0764780044555664, 0.09964127838611603, 0.056276705116033554, 0.046842072159051895, -0.007318055257201195, 0.06432545185089111, -0.1331692337989807, 0.017819518223404884, -0.05763392895460129, 0.1212029904127121, -0.0947389081120491, -0.12446312606334686, 0.07683867961168289, -0.07188663631677628, 0.1285378783941269, -0.06189548224210739, 0.010989710688591003, 0.011945581994950771, 0.0157572403550148, -0.0061310771852731705, -0.10889312624931335, -0.11126793920993805, 0.030009912326931953, -0.0019750655628740788, 0.05889285355806351, -0.061121683567762375, -0.08234874159097672, 0.024937598034739494, -0.11547987908124924, -0.05813392251729965, 0.116269551217556, -0.13455702364444733, -0.10627934336662292, 0.15435738861560822, -0.11646000295877457, -0.07656189054250717, -0.05243461951613426, -0.033596012741327286, -0.05696779489517212, -0.0742926225066185, -0.11338379234075546, 0.012153243646025658, 0.024893801659345627, 0.02916920930147171, 0.020406175404787064, -0.0883755087852478, 0.12121181935071945, -0.015598975121974945, 0.07815149426460266, 0.05295533686876297, 0.018574975430965424, -0.1173580065369606, 0.15445762872695923, 0.04797123372554779, -0.11331427097320557, 0.040585245937108994, 0.005522225517779589, -0.11971186846494675, -0.04168463870882988, -0.020062927156686783, 0.04435412958264351, -0.0036646754015237093, -0.07193465530872345, 0.0443887859582901, 0.0859416127204895, -0.14429135620594025, -0.11704670637845993, -0.033326055854558945, -0.010018724016845226, -0.010313118807971478, 0.03315245360136032, 0.14117909967899323, -0.06535877287387848, -0.1488259881734848, 0.04575022682547569, -0.016844438388943672, -0.10550931096076965, -0.11217917501926422], -uitofp:[0.015076113864779472, -0.09424479305744171, -0.10827012360095978, 0.08601297438144684, 0.08882918953895569, 0.07390966266393661, -0.1736551970243454, -0.024906648322939873, 0.08737586438655853, 0.10789288580417633, 0.12456028163433075, 0.12235620617866516, -0.016971804201602936, 0.009479756467044353, -0.04365076869726181, 0.07722003757953644, -0.014251223765313625, -0.1122809499502182, -0.022806791588664055, -0.024689948186278343, -0.09601625055074692, -0.06520584970712662, 0.0060173263773322105, 0.03875993192195892, -0.0511978454887867, -0.02178337238729, 0.024569552391767502, -0.026646260172128677, -0.09892253577709198, 0.01624048873782158, -0.004349582362920046, -0.01850086823105812, 0.05870874226093292, 0.05767558887600899, -0.07984860241413116, -0.1271907240152359, 0.09149844944477081, 0.022821109741926193, 0.02893386408686638, -0.12104073166847229, -0.07766583561897278, -0.06663788855075836, 0.13027909398078918, -0.08564133197069168, 0.021908806636929512, -0.0485929436981678, 0.08180341124534607, -0.02627645619213581, 0.004957830999046564, 0.0864928811788559, 0.13546739518642426, 0.1300515979528427, 0.015331078320741653, -0.005611111875623465, 0.03721830993890762, -0.11005300283432007, 0.0673915222287178, -0.02307322435081005, -0.09138686209917068, -0.09493961930274963, 0.06503266096115112, 0.00964907556772232, 0.11036613583564758, -0.036581091582775116, -0.08563287556171417, 0.0028028814122080803, -0.0758156105875969, -0.02422475442290306, -0.0970102921128273, 0.04551500082015991, 0.05278914049267769, -0.08140255510807037, -0.10133067518472672, 0.05646904185414314, -0.07046014815568924, -0.08315148204565048, -0.12297303974628448, -0.0633467361330986, -0.10160037875175476, 0.04146871343255043, 0.036557283252477646, -0.023126864805817604, 0.07648168504238129, 0.029403094202280045, -0.12032832950353622, -0.053618889302015305, 0.11739624291658401, 0.0832996666431427, -0.05861878767609596, 0.04417553171515465, 0.048101626336574554, -0.0020861588418483734, -0.06520795822143555, -0.24301263689994812, -0.04508056491613388, 0.07012011110782623, -0.12321566045284271, -0.01579870469868183, -0.009153115563094616, -0.05426594987511635, 0.03185174614191055, 0.13740654289722443, -0.06341440975666046, 0.0800488218665123, 0.07404859364032745, 0.03979147970676422, -0.14354710280895233, -0.0034297930542379618, 0.05318460240960121, 0.026411976665258408, -0.04555046930909157, -0.041658271104097366, -0.0855618417263031, -0.06056087836623192, 0.15689033269882202, -0.03557462990283966, 0.011287395842373371, -0.07805687934160233, 0.0758143737912178, -0.03696772828698158, -0.031328801065683365, 0.13449731469154358, 0.07909464091062546, -0.04616183415055275, -0.07496161013841629, -0.06949038058519363, 0.09320381283760071, -0.10527801513671875, -0.03791523352265358, 0.05190234258770943, -0.014394698664546013, -0.018479444086551666, -0.06284411996603012, 0.002410795306786895, -0.019952917471528053, 0.1823953241109848, -0.09351376444101334, 0.010687538422644138, 0.07669312506914139, 0.0949913039803505, -0.00793328508734703, -0.03074018657207489, -0.04498610273003578, -0.05772563815116882, 0.05368543416261673, 0.07637728005647659, -0.08704662322998047, -0.05136816203594208, 0.06526821851730347, 0.057710472494363785, -0.056233033537864685, 0.009044925682246685, 0.10434718430042267, -0.014195685274899006, 0.11977086961269379, 0.15789976716041565, 0.017538150772452354, -0.01697680726647377, -0.045661624521017075, -0.12286823242902756, 0.1327269822359085, -0.06147029623389244, 0.10306893289089203, 0.10734082013368607, -0.017522217705845833, -0.09396866708993912, -0.008029768243432045, 0.11597156524658203, 0.08846786618232727, 0.01324316207319498, 0.10359351336956024, -0.0543539896607399, 0.03720852732658386, 0.12248042225837708, 0.12047990411520004, -0.06522161513566971, 0.033734455704689026, -0.05640309303998947, 0.04858417063951492, 0.02638363651931286, 0.054623812437057495, 0.007513776887208223, 0.0401252843439579, -0.07279661297798157, 0.052433643490076065, 0.0658966451883316, -0.056003354489803314, -0.07843739539384842, 0.020271386951208115, -0.039215754717588425, -0.10863853245973587, 0.04602057859301567, -0.09840215742588043, -0.02266090363264084, 0.08570075035095215, -0.02280845120549202, 0.07455603033304214, -0.08055176585912704, -0.015296107158064842, 0.11563119292259216, -0.004327882546931505, 0.04491113871335983, -0.08338476717472076, -0.09370575100183487, 0.08786160498857498, -0.10881475359201431, -0.08834192156791687, 0.16212789714336395, -0.10114128887653351, -0.03428591415286064, 0.08402173221111298, -0.059019576758146286, 0.041062649339437485, -0.04444380849599838, 0.048618316650390625, -0.08439543098211288, 0.008827717043459415, -0.036510057747364044, -0.1296866089105606, -0.056582916527986526, -0.07942746579647064, -0.03474607318639755, 0.05545268952846527, 0.09770897775888443, 0.028719279915094376, 0.08374085277318954, 0.0885939747095108, 0.08769262582063675, 0.1715364158153534, -0.04554573819041252, -0.06470020860433578, 0.009233246557414532, 0.06560679525136948, 0.14587214589118958, -0.009966808371245861, -0.07137427479028702, 0.028953248634934425, -0.0001736766134854406, -0.15570282936096191, 0.12286804616451263, -0.02374635450541973, -0.04536261409521103, -0.15778815746307373, 0.13895295560359955, 0.05517438054084778, 0.028288748115301132, -0.12824863195419312, 0.04859819635748863, 0.11341305822134018, 0.08278767764568329, -0.09833262115716934, -0.09679681062698364, -0.0788612812757492, 0.020773515105247498, 0.009196250699460506, 0.002853844314813614, -0.020065272226929665, 0.08184472471475601, -0.03214368596673012, 0.032214391976594925, 0.04399214684963226, 0.16009260714054108, 0.09788461029529572, 0.08496460318565369, 0.08181310445070267, -0.10815020650625229, 0.013321377336978912, 0.01168780867010355, -0.023784488439559937, 0.06608210504055023, -0.02728590928018093, -0.04903996363282204, 0.030113276094198227, -0.0020210498478263617, -0.02673075906932354, 0.038732483983039856, 0.005214376375079155, 0.051313042640686035, -0.0447411984205246, -0.10503488779067993, 0.006778889801353216, 0.058347418904304504, -0.13938263058662415, 0.052778441458940506, -0.008768017403781414, 0.04689797759056091, 0.037049051374197006, -0.11514492332935333, -0.002280991757288575, 0.12040141224861145, -0.02344864048063755, 0.04677779972553253, -0.06789952516555786, 0.02081793174147606, -0.039048563688993454, -0.032669249922037125, -0.17588946223258972, 0.02348649501800537, -0.11844843626022339, -0.11139329522848129], -unreachable:[-0.08573275804519653, -0.14252065122127533, 0.07901107519865036, 0.045799482613801956, -0.09016543626785278, -0.05590478330850601, 0.05059199035167694, 0.0630025714635849, 0.10007543116807938, 0.10438618808984756, -0.09617620706558228, -0.13830767571926117, -0.0840090960264206, -0.015419797040522099, -0.04870753362774849, -0.012898407876491547, -0.06949417293071747, -0.11087121814489365, -0.03987002372741699, -0.024147212505340576, 0.07317318022251129, -0.07378039509057999, -0.05106406658887863, 0.03295954689383507, -0.0514189749956131, -0.04288484528660774, 0.13480129837989807, 0.013373393565416336, 0.030089233070611954, -0.05381384864449501, 0.011533142067492008, -0.12289895117282867, 0.08761122077703476, 0.01621418260037899, 0.03064565174281597, 0.04691256582736969, 0.040789175778627396, 0.111049123108387, 0.05576961860060692, -0.137313112616539, -0.07800596952438354, -0.10081909596920013, -0.04802457243204117, 0.02422964572906494, -0.11159397661685944, 0.03824181109666824, -0.014402736909687519, 0.11299032717943192, -0.10065522789955139, -0.035432253032922745, 0.029902199283242226, -0.05134562402963638, 0.06474068760871887, 0.06931360065937042, -0.006384942680597305, -0.09583742171525955, -0.12443441897630692, -0.09098958969116211, -0.0239171851426363, -0.10263125598430634, 0.0636892095208168, 0.06320922076702118, 0.06867215782403946, 0.07456871122121811, 0.14314229786396027, -0.027322089299559593, 0.006379316095262766, 0.021763987839221954, -0.06415486335754395, -0.0028293654322624207, -0.04212668165564537, 0.08768866211175919, 0.04801694676280022, 0.06491517275571823, -0.03169237822294235, 0.023808488622307777, -0.013215821236371994, 0.05392744019627571, 0.10290317982435226, 0.08982855081558228, 0.03502410650253296, 0.14337998628616333, -0.10297252982854843, -0.05995664373040199, -0.12209253013134003, 0.05401444807648659, 0.14029186964035034, 0.03465064615011215, 0.11947032809257507, -0.08829424530267715, 0.03861413896083832, -0.01626664400100708, -0.04924763739109039, 0.04349163919687271, -0.038971301168203354, 0.08109800517559052, 0.1077781543135643, 0.03204343095421791, 0.14958901703357697, -0.05229945853352547, 0.00020410353317856789, -0.10060077160596848, 0.13340707123279572, -0.011167677119374275, -0.0649583488702774, 0.07077334821224213, 0.08859580755233765, 0.04007726162672043, -0.10873208940029144, 0.00900956615805626, 0.11893422901630402, -0.04268224909901619, 0.06395535916090012, 0.10621719062328339, 0.04201330617070198, -0.029493967071175575, 0.0380476713180542, -0.09275241941213608, -0.07385969161987305, -0.09232472628355026, 0.0985235944390297, -0.03922085091471672, 0.02162971720099449, -0.05436870455741882, 0.0336037278175354, 0.05250629410147667, 0.10133142024278641, -0.06199491024017334, 0.04834095388650894, 0.12673430144786835, 0.08937148004770279, -0.026810700073838234, 0.05668272450566292, -0.050392527133226395, -0.022546449676156044, -0.004062272608280182, 0.1060449630022049, 0.03466261178255081, 0.09323997795581818, 0.04673163220286369, 0.09979598969221115, -0.06589708477258682, -0.026619505137205124, -0.12660042941570282, 0.01804979145526886, -0.11737504601478577, 0.11052325367927551, -0.0413958840072155, 0.07496864348649979, 0.11898293346166611, -0.1441388726234436, -0.1302211433649063, 0.04239359125494957, 0.014271868392825127, 0.07572459429502487, 0.1419626623392105, -0.016138140112161636, 0.17952711880207062, -0.18740157783031464, 0.12275411933660507, 0.0528503842651844, -0.10293595492839813, -0.07631295919418335, -0.02694043703377247, -0.09618593007326126, 0.02261965721845627, 0.013222672045230865, -0.04354340210556984, 0.12234626710414886, 0.09294918179512024, -0.04962686449289322, -0.05870033800601959, -0.07815617322921753, -0.022972343489527702, 0.021366998553276062, 0.15681250393390656, -0.05876195803284645, -0.028142191469669342, 0.13673482835292816, 0.035675905644893646, 0.011504287831485271, -0.08236187696456909, 0.11986140161752701, 0.03339829295873642, -0.07235698401927948, -0.038935884833335876, 0.07010859996080399, -0.08468105643987656, 0.029544882476329803, -0.0385763943195343, 0.00858326070010662, -0.11831030994653702, -0.07655113190412521, 0.10548686236143112, 0.02543906681239605, -0.15203365683555603, -0.14971552789211273, -0.12985730171203613, 0.07921228557825089, 0.0035735510755330324, 0.07617838680744171, -0.10312826186418533, 0.0014313674764707685, -0.06477756053209305, -0.0010154509218409657, 0.03240091726183891, 0.09861158579587936, 0.0035025717224925756, -0.028356365859508514, -0.07745612412691116, -0.06338171660900116, 0.02131647989153862, -0.09745559841394424, -0.03069474548101425, 0.03566424548625946, -0.0907793715596199, -0.04178242385387421, -0.012591461651027203, 0.03904907405376434, -0.04635072499513626, 0.041641462594270706, -0.006782181560993195, -0.16526319086551666, 0.10569450259208679, 0.010336015373468399, 0.13765785098075867, -0.003902302123606205, 0.06685595959424973, -0.12990021705627441, 0.013157191686332226, 0.04545033350586891, 0.005335407331585884, 0.08095236867666245, -0.06925997883081436, -0.06579897552728653, 0.10137433558702469, 0.02247103862464428, -0.1207369863986969, -0.08620649576187134, 0.0016827033832669258, 0.0629274919629097, 0.05578635632991791, -0.031230485066771507, 0.04688810929656029, -0.02093050628900528, 0.1316765397787094, -0.0020112248603254557, -0.02136940136551857, 0.11519567668437958, 0.10319256037473679, 0.0030782250687479973, 0.0240866057574749, 0.006140492856502533, 0.08864432573318481, -0.013860557228326797, 0.0088798888027668, -0.11643096059560776, 0.12871989607810974, -0.01983334682881832, -0.05455881357192993, 0.03358212485909462, 0.06619302928447723, -0.05402636155486107, -0.12193737179040909, 0.13344541192054749, -0.004163170233368874, 0.12720640003681183, -0.020282264798879623, -0.10259927064180374, -0.023455968126654625, 0.09972582757472992, 0.021462135016918182, -0.007899072952568531, -0.08316902816295624, -0.03453998267650604, -0.12992221117019653, 0.02366689406335354, -0.07452014088630676, 0.012394901365041733, 0.012407196685671806, 0.032331641763448715, -0.08675426989793777, 0.1316923201084137, -0.06579075753688812, -0.07909511029720306, -0.010520310141146183, 0.08912970125675201, -0.1450851857662201, 0.018996603786945343, -0.0538039356470108, 0.026389451697468758, -0.021358851343393326, 0.08556149154901505, 0.1484384685754776, -0.004025944974273443, 0.05593631789088249, -0.06147224083542824, 0.022575749084353447, -0.037948526442050934, -0.06493713706731796], -urem:[-0.13588126003742218, -0.11554507166147232, 0.11352021992206573, 0.10468915849924088, -0.12376663833856583, 0.04544356092810631, -0.10102832317352295, -0.04604865238070488, -0.06063351407647133, 0.08789457380771637, -0.0006807065801694989, 0.11960646510124207, 0.03731360659003258, -0.021858060732483864, 0.16317741572856903, -0.040340833365917206, 0.03528580814599991, -0.028677131980657578, 0.1129208654165268, 0.11149967461824417, 0.0413474515080452, -0.09195766597986221, -0.03488833084702492, 0.14956429600715637, -0.008570545352995396, 0.007007407024502754, -0.033235691487789154, -0.01355795469135046, 0.01140379998832941, -0.017964858561754227, 0.06016438081860542, -0.019379300996661186, 0.1111176386475563, -0.07713963836431503, 0.14540769159793854, 0.0015426275786012411, -0.09870396554470062, 0.0015579798491671681, 0.07075260579586029, -0.12609745562076569, -0.01703796349465847, 0.12369689345359802, 0.045749153941869736, -0.13533827662467957, 0.021300841122865677, 0.015626350417733192, -0.13100162148475647, -0.0761304572224617, -0.10983020067214966, 0.0387396402657032, -0.1147608831524849, -0.011564229615032673, 0.09191397577524185, -0.010009987279772758, 0.049440447241067886, -0.017666587606072426, -0.1101238802075386, -0.05702792480587959, -0.04944571107625961, -0.13444896042346954, 0.16308283805847168, -0.037628449499607086, 0.13201017677783966, -0.028582604601979256, -0.06691981106996536, -0.08898162841796875, -0.03661375865340233, 0.07740207761526108, -0.04001028835773468, 0.0073527186177670956, 0.07181401550769806, 0.05011173337697983, -0.07659439742565155, -0.10778701305389404, 0.008795340545475483, -0.07048307359218597, -0.034968212246894836, 0.023207299411296844, -6.730125460308045e-05, 0.07884296029806137, 0.05906533822417259, 0.011137793771922588, 0.030593346804380417, 0.053579412400722504, 0.11543453484773636, 0.02771235629916191, 0.03829983249306679, 0.049531061202287674, -0.0651557445526123, 0.1688220202922821, -0.0402350015938282, -0.020681248977780342, -0.050002530217170715, 0.02975234016776085, -0.02685726247727871, -0.0065559581853449345, -0.0703161358833313, -0.0014436639612540603, 0.03366875648498535, 0.09881309419870377, 0.04361502453684807, -0.04681038856506348, -0.057410046458244324, 0.007890883833169937, 0.048502687364816666, 0.06840820610523224, -0.023294722661376, -0.11992616206407547, -0.011251350864768028, 0.12622156739234924, -0.017031284049153328, -0.06795422732830048, 0.023553699254989624, 0.12613579630851746, -0.09296184033155441, -0.011308867484331131, 0.03014814481139183, 0.007873276248574257, 0.1394369900226593, -0.04326164722442627, -0.014510592445731163, -0.013035700656473637, -0.009247004054486752, -0.06658805906772614, -0.06257466971874237, -0.0841260701417923, -0.07491424679756165, 0.11131127923727036, 0.06547827273607254, -0.05752044916152954, 0.01577715016901493, -0.11986972391605377, 0.1046668291091919, -0.012294218875467777, 0.10712382942438126, 0.009003081358969212, -0.030212147161364555, -0.16776339709758759, 0.010634082369506359, -0.12023264169692993, 0.15031825006008148, 0.1442507952451706, 0.025959713384509087, 0.03113541565835476, 0.0023109018802642822, 0.06002859026193619, 0.022727591916918755, -0.09785590320825577, 0.024857135489583015, -0.05030374228954315, 0.0366084948182106, 0.03417147696018219, 0.06694505363702774, -0.009148256853222847, -0.026189524680376053, 0.003618407528847456, -0.0646376758813858, -0.06876632571220398, 0.10240503400564194, 0.07849220931529999, -0.10719715803861618, -0.05956457555294037, 0.006703118793666363, -0.03309082239866257, -0.019057828933000565, -0.12650619447231293, 0.012313093058764935, 0.13133199512958527, 0.09674809873104095, 0.03131172060966492, 0.14809434115886688, -0.0032214003149420023, 0.12025685608386993, 0.11170179396867752, -0.05829497054219246, -0.00532472413033247, 0.11052090674638748, 0.11707236617803574, 0.06391146779060364, 0.1255171000957489, 0.012730366550385952, -0.008530739694833755, -0.08888255804777145, -0.041381172835826874, 0.08976028859615326, -0.07596089690923691, -0.01905154064297676, 0.11242591589689255, 0.09736951440572739, -0.04265137389302254, 0.0781555250287056, 0.12253911793231964, -0.07875620573759079, -0.06058301031589508, -0.017919205129146576, -0.0050472295843064785, -0.08067100495100021, -0.09984687715768814, 0.09133610129356384, -0.018978741019964218, 0.09745901823043823, -0.03377794846892357, -0.02006187103688717, -0.13502062857151031, -0.1100522130727768, 0.029277224093675613, 0.021082695573568344, 0.12606149911880493, 0.0219009667634964, -0.15087129175662994, -0.13127808272838593, 0.03143283352255821, 0.05490569397807121, -0.05620712414383888, -0.004953932482749224, 0.032296646386384964, 0.22052156925201416, -0.07628694921731949, -0.06831482797861099, -0.15371648967266083, 0.012300542555749416, -0.11820857971906662, -0.10153843462467194, -0.10821256786584854, 0.050622858107089996, -0.07990528643131256, 0.06628140062093735, -0.02142268978059292, -0.0416247695684433, -0.05162326619029045, -0.0681348592042923, -0.03352371230721474, 0.024056382477283478, 0.026923175901174545, 0.02053198032081127, 0.0073109399527311325, 0.11796734482049942, 0.046945828944444656, 0.014490896835923195, 0.11414314806461334, 0.05700710788369179, -0.057934779673814774, -0.1508054882287979, 0.033383604139089584, 0.10033294558525085, 0.002307870890945196, 0.021651480346918106, -0.06965739279985428, 0.011234589852392673, -0.053110502660274506, -0.09305181354284286, -0.07462305575609207, -0.07986695319414139, -0.05650140717625618, -0.08579651266336441, -0.013968367129564285, 0.02176525443792343, -0.06381194293498993, -0.020771201699972153, -0.05930372327566147, 0.037622325122356415, 0.1260002851486206, -0.04508117586374283, 0.09488363564014435, -0.01581527665257454, 0.06572899967432022, -0.12909580767154694, 0.04397779330611229, 0.0006665627588517964, -0.002759670838713646, -0.1194087490439415, -0.02250233292579651, -0.12466281652450562, -0.04015376791357994, 0.12650540471076965, 0.056645989418029785, -0.07537993788719177, -0.019979167729616165, 0.02365959994494915, -0.11949516832828522, -0.048637911677360535, 0.06420356780290604, 0.005439419765025377, 0.03613852337002754, -0.036422811448574066, 0.06370866298675537, 0.05608679726719856, 0.08171266317367554, 0.004138527438044548, 0.11964642256498337, -0.000869828334543854, -0.0696139708161354, 0.03318537399172783, 0.0661223754286766, -0.042361192405223846, -0.009040279313921928, 0.0073412214405834675, -0.017636876553297043, -0.10567973554134369, -0.015340874902904034], -variable:[0.11676248162984848, 0.050435569137334824, 0.01201685518026352, -0.008614746853709221, -0.015860768035054207, -0.09895831346511841, 0.02065292000770569, 0.09590218961238861, -0.13513021171092987, -0.07224015891551971, 0.06647119671106339, 0.08031223714351654, -0.026740916073322296, 0.08454379439353943, 0.002345080953091383, -0.028194086626172066, -0.08583255112171173, 0.00808710977435112, -0.07478350400924683, 0.07637449353933334, -0.1408442109823227, -0.012235145084559917, 0.05699237063527107, 0.07002633810043335, 0.11241941154003143, 0.05033809319138527, -0.0886601060628891, 0.002030455507338047, 0.046645842492580414, 0.08623155951499939, -0.11261886358261108, 0.07887280732393265, -0.006865369621664286, 0.00700785219669342, 0.1396494060754776, -0.02727510780096054, -0.08697167038917542, -0.08116436004638672, 0.09757717698812485, 0.07464662939310074, 0.008746638894081116, 0.0629037618637085, 0.07044827193021774, -0.09773380309343338, -0.01509757898747921, -0.00900146272033453, 0.09638780355453491, 0.0805874615907669, 0.0780007615685463, -0.008292299695312977, -0.08343054354190826, -0.06622222065925598, -0.043543752282857895, 0.021688075736165047, 0.09926459938287735, -0.09527694433927536, -0.04859742149710655, -0.05751490592956543, 0.06105200946331024, -0.15139058232307434, -0.055957067757844925, -0.13909895718097687, -0.10843029618263245, -0.1010056883096695, 0.03278188407421112, 0.05591761693358421, 0.036261383444070816, -0.07195883989334106, 0.1596052050590515, 0.09644994884729385, 0.11301176249980927, 0.04025641828775406, -0.1136477068066597, -0.10143453627824783, -0.06777890026569366, 0.04699620604515076, 0.019743435084819794, 0.1328974962234497, -0.06050704047083855, -0.08296190947294235, -0.13776275515556335, -0.05340985581278801, -0.025579288601875305, 0.05010576918721199, -0.07104518264532089, -0.054455578327178955, -0.043938249349594116, -0.046297620981931686, 0.06014018505811691, -0.01713334396481514, -0.03521246835589409, -0.01265967357903719, -0.12365023791790009, -0.018573235720396042, 0.053197067230939865, -0.06020843982696533, -0.07935009896755219, -0.0675087496638298, 0.029227545484900475, -0.06337305903434753, -0.04815400019288063, -0.06321194022893906, 0.0629173144698143, 0.02777085267007351, -0.014276165515184402, -0.04622906073927879, 0.10244914144277573, 0.062179625034332275, -0.034199655055999756, -0.08238803595304489, 0.06416206806898117, 0.11275473982095718, 0.09696445614099503, 0.05813903361558914, -0.028758667409420013, -0.0005739700281992555, -0.03443001210689545, 0.04906923696398735, -0.08047980070114136, 0.06043173372745514, 0.024183783680200577, -0.02548486925661564, -0.004637442529201508, 0.08042522519826889, 0.05325642600655556, 0.013819623738527298, 0.040349043905735016, 0.07467293739318848, 0.11648853868246078, -0.06101629510521889, -0.05825316905975342, -0.0011995908571407199, 0.043648675084114075, -0.04949767515063286, 0.0029795486479997635, 0.05634342506527901, -0.04829767718911171, 0.005057311151176691, -0.07355255633592606, -0.02157384157180786, -0.10093256831169128, -0.06182929873466492, 0.04420342296361923, 0.09506147354841232, -0.051045652478933334, -0.1154293641448021, -0.17013946175575256, 0.0333959124982357, -0.09491226822137833, 0.09217002242803574, -0.011700447648763657, 0.07674562931060791, 0.03000579960644245, 0.04302028939127922, -0.08345850557088852, 0.05350705608725548, -0.09356837719678879, -0.026043450459837914, 0.04777499660849571, -0.02565191313624382, 0.06706264615058899, -0.08034773170948029, -0.0692460760474205, 0.014777611009776592, -0.04359889775514603, -0.03346266970038414, 0.07806139439344406, 0.026501186192035675, -0.10370133817195892, 0.07323172688484192, -0.05058295652270317, 0.05610368028283119, 0.06924372911453247, 0.03267321363091469, -0.013495800085365772, -0.023956546559929848, 0.0306390430778265, 0.03866509348154068, -0.03708153963088989, -0.0023144108708947897, -0.08409015834331512, -0.006608379073441029, -0.07389028370380402, 0.07752423733472824, 0.02829461544752121, -0.103705994784832, 0.09184110909700394, 0.1151755303144455, 0.08155924826860428, -0.10774153470993042, -0.06969993561506271, -0.0346246100962162, 0.017213724553585052, 0.002647693967446685, 0.14513947069644928, 0.02370065450668335, 0.0378384068608284, 0.02008969336748123, -0.113629549741745, 0.07257108390331268, 0.01907040923833847, -0.04357225447893143, -0.00043208288843743503, 0.04576680436730385, 0.1265607327222824, 0.06325250118970871, -0.03352801129221916, -0.004039158578962088, -0.04594036936759949, 0.0005308578256517649, -0.026126189157366753, -0.0049966988153755665, 0.10591962933540344, -0.01875200867652893, 0.060315217822790146, 0.0883612185716629, -0.04363062232732773, 0.07060326635837555, -0.011961201205849648, 0.0467795804142952, -0.05386484041810036, 0.0383516326546669, 0.07129272818565369, -0.0758785828948021, 0.05657467246055603, -0.18099558353424072, -0.05151452124118805, -0.04960758984088898, -0.023454543203115463, -0.06128567457199097, -0.02506275288760662, 0.10683740675449371, 0.12164667993783951, 0.13022762537002563, -0.07480733096599579, 0.020724909380078316, 0.027272308245301247, -0.10131198912858963, 0.08180899918079376, -0.06567706912755966, 0.07963628321886063, -0.013238675892353058, 0.01891370862722397, -0.0686197280883789, 0.09977664053440094, 0.08398336917161942, 0.018029583618044853, 0.08566867560148239, 0.01524523738771677, -0.1436307281255722, -0.06973511725664139, 0.01256205141544342, -0.10144905000925064, -0.11931058764457703, 0.08873746544122696, 0.09390967339277267, -0.059618785977363586, -0.0489102303981781, 0.066248819231987, -0.05945184454321861, -0.035537801682949066, -0.022717515006661415, -0.04642936959862709, -0.055146124213933945, -0.025480182841420174, -0.05762616917490959, -0.1592065691947937, 0.1651669144630432, 0.038836877793073654, -0.020106058567762375, 0.12330958992242813, -0.03441671282052994, -0.021815422922372818, -0.19446805119514465, 0.013193857856094837, -0.0285901241004467, -0.03650154173374176, 0.05718926712870598, 0.09963720291852951, 0.012689298950135708, 0.10619926452636719, 0.05141240730881691, -0.08140603452920914, -0.03682601824402809, -0.11394677311182022, -0.05818892642855644, 0.11073820292949677, -0.12390608340501785, 0.08400940150022507, 0.005813167430460453, 0.050411973148584366, -0.076785147190094, -0.033112574368715286, -0.08669110387563705, -0.09929785132408142, -0.09432291984558105, 0.06747271120548248, -0.07422832399606705, 0.08905191719532013, 0.0059301420114934444], -vectorTy:[0.1164267510175705, 0.07858969271183014, -0.09233009070158005, -0.09638646245002747, -0.0792948454618454, 0.14129063487052917, 0.049964964389801025, 0.004751448053866625, -0.008536376059055328, 0.0946715772151947, 0.08227047324180603, -0.048172008246183395, -0.014742664992809296, -0.09855126589536667, -0.01822984218597412, -0.06429824978113174, 0.06353317946195602, 0.04426410794258118, 0.08935538679361343, 0.06469772756099701, 0.058257196098566055, 0.08230534940958023, -0.12800376117229462, 0.0626281127333641, -0.10969634354114532, -0.0017769727855920792, -0.082241952419281, 0.02561371400952339, -0.05333047732710838, 0.03247635066509247, -0.12719081342220306, 0.06965579837560654, -0.06475793570280075, -0.03080359846353531, -0.05234044790267944, 0.07253927737474442, 0.10563094913959503, 0.07661638408899307, -0.09935557097196579, 0.05577712133526802, 0.04379510506987572, 0.040508661419153214, -0.02303481660783291, -0.029205678030848503, -0.004782368894666433, -0.10577202588319778, -0.10940283536911011, 0.008316571824252605, 0.10756254941225052, -0.06581733375787735, 0.009719456546008587, -0.025553517043590546, 0.0006546820513904095, 0.01574893109500408, -0.036553800106048584, 0.14859303832054138, -0.05769437551498413, -0.04759891703724861, -0.05365519970655441, 0.049514997750520706, -0.07531607151031494, 0.10204091668128967, -0.07871156930923462, -0.11214204132556915, 0.03637333959341049, 0.08295143395662308, 0.02202274091541767, 0.11851005256175995, 0.05716870352625847, -0.05568255856633186, 0.010190771892666817, -0.0327184833586216, 0.13626909255981445, 0.05902645364403725, -0.029822727665305138, 0.03943489119410515, 0.0051804943941533566, 0.09883379191160202, -0.056507792323827744, 0.009789385832846165, -0.047268547117710114, -0.12960904836654663, -0.021883687004446983, -0.014823751524090767, 0.02003447152674198, 0.1045977994799614, 0.004434610716998577, -0.06815340369939804, 0.04116210341453552, 0.06086830794811249, 0.05230983346700668, -0.010947107337415218, 0.07759390026330948, 0.020730892196297646, 0.07786355167627335, 0.02597815729677677, -0.0751141905784607, 0.010096613317728043, -0.1261911243200302, 0.02575378678739071, 0.057171016931533813, -0.07881173491477966, -0.05549805238842964, 0.004687376320362091, -0.05364350229501724, -0.09892324358224869, -0.021607493981719017, 0.06041630357503891, -0.03781506046652794, -0.07535862922668457, 0.07255460321903229, -0.08130548149347305, -0.1268540471792221, -0.021472901105880737, 0.10324802249670029, 0.011023364029824734, 0.07901688665151596, 0.019972864538431168, -0.10679160058498383, 0.0330384336411953, 0.028147075325250626, -0.033236097544431686, -0.019027771428227425, -0.10682246088981628, 0.06593424081802368, 0.04586002975702286, 0.12427476793527603, -0.06491301953792572, -0.0985012948513031, 0.10994661599397659, 0.0213569775223732, -0.006672428455203772, -0.03697485104203224, 0.05714288353919983, -0.054185446351766586, -0.03991908207535744, 0.07502665370702744, 0.07007908821105957, 0.023402420803904533, -0.04057769477367401, 0.09151481837034225, -0.005164485424757004, -0.02349686063826084, -0.0375518873333931, -0.06260498613119125, 0.10090859979391098, 0.0870949849486351, 0.10954683274030685, 0.0011533956276252866, 0.0771462619304657, -0.03174827992916107, 0.08260539919137955, -0.011215555481612682, -0.0310062225908041, -0.06364262104034424, -0.07060704380273819, 0.09310950338840485, -0.10221164673566818, 0.07748924195766449, -0.044528089463710785, -0.003945626318454742, 0.03821255639195442, 0.13533025979995728, -0.006760652642697096, 0.10686744749546051, 0.13545605540275574, 0.020126381888985634, -0.0396248884499073, -0.11357064545154572, 0.08431844413280487, -0.09365500509738922, 0.08588270843029022, -0.1253005862236023, 0.13672402501106262, 0.020794302225112915, 0.001178056001663208, 0.0016710706986486912, 0.09794880449771881, -0.026531167328357697, -0.0947883203625679, -0.0063793533481657505, -0.003516833996400237, 0.1298101544380188, -0.13958173990249634, -0.03333084657788277, 0.14013811945915222, -0.08812844008207321, -0.10189218819141388, 0.06295209378004074, -0.0918070450425148, 0.01411578431725502, -0.10297584533691406, -0.07986070960760117, 0.0003193997545167804, 0.07500110566616058, 0.11104431748390198, -0.031378526240587234, 0.03324513137340546, -0.029866931959986687, 0.029501715674996376, -0.06261518597602844, 0.12688183784484863, 0.028648704290390015, 0.09152943640947342, 0.0018671266734600067, -0.09523605555295944, -0.021801820024847984, -0.07871561497449875, -0.024783501401543617, 0.029621753841638565, 0.11039431393146515, -0.03299187123775482, -0.039691898971796036, -0.013385995291173458, -0.006813942454755306, 0.06398520618677139, -0.010360943153500557, -0.07610033452510834, -0.03981586545705795, 0.050903335213661194, 0.005553968716412783, 0.06323361396789551, -0.016468020156025887, -0.06736281514167786, -0.06794604659080505, 0.012817516922950745, -0.08585779368877411, -0.05638928338885307, 0.09838758409023285, -0.09782616794109344, 0.07246134430170059, 0.08116240799427032, -0.08156592398881912, 0.019907653331756592, 0.10025759041309357, 0.09727495163679123, 0.061939407140016556, -0.020837033167481422, -0.006660503335297108, -0.10171430557966232, 0.10300066322088242, -0.04528328776359558, 0.002911878516897559, -0.05359713360667229, -0.12294960767030716, -0.15119914710521698, -0.0014283619821071625, -0.134205624461174, 0.04444993659853935, 0.0977635607123375, -0.033290110528469086, -0.06951139122247696, 0.01657385751605034, 0.13707709312438965, -0.11218197643756866, -0.0864981934428215, -0.022241640836000443, 0.026178894564509392, -0.11754514276981354, 0.09460760653018951, -0.022974545136094093, 0.07683463394641876, 0.08474363386631012, -0.03610256314277649, -0.009432477876543999, 0.08287441730499268, -0.04143274575471878, -0.05502383038401604, 0.022701090201735497, -0.03544633090496063, -0.05642097070813179, -0.0026803414802998304, -0.09590981155633926, 0.12184703350067139, -0.062316570430994034, -0.03199225291609764, 0.1164374053478241, 0.06261615455150604, 0.04162827134132385, 0.034952837973833084, 0.10088508576154709, 0.018253283575177193, 0.04491586610674858, -0.07675227522850037, 0.02817576751112938, -0.0011072958586737514, -0.10198476165533066, 0.11732804030179977, 0.09265545010566711, 0.05921144783496857, -0.02575579099357128, -0.11052610725164413, 0.001568191684782505, -0.10825096070766449, 0.08212726563215256, -0.10000345855951309, 0.029700985178351402, -0.03389641270041466, -0.14555537700653076, 0.03122784197330475], -voidTy:[-0.05790255591273308, 0.07687929272651672, -0.0661884993314743, -0.0770193412899971, -0.0815465971827507, 0.08228947222232819, 0.0033332568127661943, 0.07995615154504776, 0.04250282421708107, 0.13150735199451447, -0.11837068945169449, -0.10362645238637924, -0.08763707429170609, 0.04426504671573639, 0.02183450199663639, 0.09239596128463745, -0.03777642548084259, 0.06631162762641907, 0.10978862643241882, 0.08809168636798859, 0.0917295590043068, -0.10970208048820496, 0.10912977159023285, -0.0765577033162117, 0.04772065579891205, 0.027615703642368317, -0.023952577263116837, -0.025746183469891548, 0.08323180675506592, -0.055861689150333405, 0.032524339854717255, -0.08456970751285553, -0.09893829375505447, 0.07057581841945648, -0.09186070412397385, -0.05776486545801163, 0.027201037853956223, -0.08173464983701706, -0.09000395983457565, 0.08488427847623825, 0.09114920347929001, 0.04682812839746475, 0.026328230276703835, 0.015787595883011818, -0.008627895265817642, 0.010825986042618752, 0.09779692441225052, 0.08899109065532684, 0.09930498898029327, -0.11689138412475586, 0.026012957096099854, -0.14150899648666382, -0.029556818306446075, 0.0029533382039517164, -0.11988765001296997, 0.08930498361587524, -0.08009901642799377, 0.05475097894668579, 0.04047764837741852, 0.09124878793954849, -0.07136588543653488, -0.05891815945506096, -0.012872793711721897, 0.12184736132621765, -0.12032831460237503, 0.054828569293022156, 0.06330046057701111, 0.06784739345312119, -0.10902904719114304, 0.07108177244663239, -0.05456105247139931, 0.1255139708518982, -0.10894156247377396, 0.08354116231203079, 0.03304135426878929, 0.11082100123167038, 0.009035587310791016, 0.06849397718906403, 0.10552488267421722, 0.08729775995016098, 0.056716855615377426, 0.014731860719621181, 0.10244593769311905, -0.038523316383361816, -0.033801961690187454, -0.047719452530145645, 0.035062745213508606, -0.0957014337182045, -0.11963886767625809, -0.056405264884233475, 0.026425868272781372, -0.00033107397030107677, 0.05059191957116127, 0.0032320867758244276, 0.11291317641735077, 0.042791858315467834, -0.03711589053273201, 0.029158391058444977, -0.07061224430799484, -0.088727205991745, -0.10121383517980576, 0.06084207445383072, -0.02130565419793129, 0.06135037913918495, 0.07442355155944824, -0.031898945569992065, -0.002412916859611869, -0.11122585088014603, -0.0753353163599968, -0.07243269681930542, -0.08343064785003662, 0.07504632323980331, 0.037648919969797134, -0.045123640447854996, -0.029557766392827034, 0.0033333918545395136, 0.10764124244451523, -0.1179673820734024, -0.09308663755655289, -0.1057128980755806, 0.05301612988114357, -0.07931681722402573, -0.009019359014928341, 0.06476763635873795, 0.1336839199066162, 0.07444065809249878, 0.0288756862282753, -0.01592499390244484, 0.0465732216835022, 0.05253938212990761, 0.07248854637145996, -0.024102572351694107, -0.002974488539621234, 0.0031074602156877518, 0.046034760773181915, 0.0382564440369606, 0.1027502790093422, 0.011663886718451977, -0.04179132729768753, -0.11950480192899704, -0.09176993370056152, -0.08171815425157547, 0.04256032779812813, 0.07588173449039459, 0.0589459203183651, 0.021500108763575554, 0.07588445395231247, 0.0522451251745224, 0.044482406228780746, -0.07605563849210739, 0.09957508742809296, 0.024241328239440918, 0.029258370399475098, 0.006942956242710352, -0.07152805477380753, -0.12451789528131485, 0.10090874880552292, 0.033615440130233765, -0.060255266726017, 0.0734819769859314, -0.10515017807483673, 0.09778366982936859, 0.06811895221471786, 0.03917251527309418, -0.026911089196801186, 0.09378258883953094, -0.045233726501464844, -0.11282308399677277, 0.0012785334838554263, 0.012733403593301773, -0.06104845553636551, -0.08313342928886414, -0.10961472243070602, 0.032603420317173004, -0.04720132797956467, 0.0010007532546296716, 0.02697101980447769, 0.060847505927085876, -0.07200988382101059, -0.07235932350158691, 0.017786329612135887, -0.02398548275232315, 0.07883136719465256, 0.12188272178173065, 0.11148533225059509, 0.06709501147270203, 0.017750447615981102, -0.14642168581485748, 0.07437050342559814, 0.034789685159921646, -0.017183411866426468, -0.12061064690351486, 0.06635455042123795, -0.03771917521953583, 0.06467761844396591, 0.021917754784226418, 0.05966866761445999, 0.00024228266556747258, -0.02239963971078396, -0.1049523800611496, 0.014801882207393646, -0.012391173280775547, 0.030214102938771248, 0.059961866587400436, -0.09890088438987732, 0.0654631033539772, 0.1389719843864441, -0.1145240068435669, 0.023621654137969017, 0.025436948984861374, 0.04963124543428421, -0.021547505632042885, 0.0952083021402359, -0.004649369511753321, 0.04009325057268143, 0.06534860283136368, 0.0034997814800590277, -0.07792240381240845, 0.04909297078847885, -0.03651675581932068, 0.023865550756454468, 0.13786378502845764, -0.04730251803994179, -0.10744592547416687, 0.03397458419203758, 0.03288039192557335, -0.026523467153310776, -0.08990372717380524, 0.027762705460190773, 0.1133422702550888, 0.10300523042678833, 0.08737463504076004, -0.11330360919237137, 0.04298985004425049, -0.03598690405488014, 0.10105857253074646, 0.012089311145246029, 0.13400623202323914, 0.049881692975759506, 0.05833221226930618, 0.10000987350940704, 0.014826362021267414, 0.0604671947658062, 0.12572015821933746, -0.09018969535827637, 0.08213485777378082, -0.014279053546488285, -0.01559449266642332, 0.08763458579778671, -0.024074986577033997, -0.06294374912977219, 0.10222558677196503, 0.08987537026405334, 0.09886191785335541, -0.08676432818174362, 0.035326264798641205, -0.12494123727083206, 0.06560585647821426, -0.0888012945652008, -0.12578114867210388, -0.005228732246905565, 0.01411876454949379, -0.06836763024330139, -0.026403244584798813, -0.02271394617855549, 0.10534879565238953, 0.07357141375541687, -0.05323067307472229, 0.07242783904075623, 0.007273730356246233, -0.09319475293159485, 0.0049102529883384705, -0.12097959965467453, 0.07890290766954422, -0.0935148149728775, 0.09090014547109604, -0.002657727338373661, -0.10458897054195404, -0.010941366665065289, 0.06168096512556076, -0.09455370157957077, 0.041076987981796265, -0.07209654897451401, -0.06575347483158112, -0.09343777596950531, 0.09327526390552521, -0.08761534839868546, 0.01957874931395054, -0.1095627024769783, -0.025857701897621155, 0.037911392748355865, -0.09428145736455917, 0.1289350986480713, 0.05581556260585785, 0.0690421462059021, 0.0701255053281784, -0.059592392295598984, 0.06450400501489639, 0.10551271587610245, 0.08759017288684845], -xor:[0.03529247269034386, -0.11932457983493805, 0.07963993400335312, 0.13838660717010498, -0.03736289590597153, 0.07013315707445145, 0.14325614273548126, -0.07609664648771286, -0.0681680217385292, 0.01583360880613327, 0.08604373782873154, 0.10828903317451477, 0.01851891167461872, -0.03311505913734436, 0.06903280317783356, -0.02386387251317501, -0.014229240827262402, -0.04279252514243126, -0.02324449084699154, -0.012622146867215633, -0.06738479435443878, -0.05889489874243736, -0.06029810383915901, 0.14847169816493988, -0.03404223173856735, -0.01947600580751896, -0.058435287326574326, 0.047445859760046005, -0.12937457859516144, 0.16671942174434662, 0.0707889050245285, -0.02121829427778721, 0.09454228729009628, -0.04468660429120064, 0.1406223475933075, -0.02415798231959343, 0.10983540862798691, 0.003767005866393447, 0.1108005940914154, -0.12922082841396332, -0.07717204838991165, 0.006487030070275068, 0.09017467498779297, 0.12445227801799774, 0.08424971252679825, -0.020849918946623802, -0.09295479953289032, -0.14229287207126617, -0.004119790159165859, 0.02835709974169731, -0.09755159914493561, 0.12631624937057495, -0.12709611654281616, 0.012690451927483082, 0.04899793490767479, 0.09800001233816147, 0.05693603307008743, -0.03155824542045593, -0.011441733688116074, -0.046856850385665894, 0.13899226486682892, 0.010023812763392925, 0.01305538322776556, -0.003895536297932267, 0.09857762604951859, -0.06082212179899216, -0.09203053265810013, -0.024980101734399796, 0.0018433228833600879, 0.03984168544411659, -0.04019230604171753, -0.08287259936332703, -0.039190102368593216, 0.06552570313215256, -0.13734520971775055, -0.08589309453964233, 0.02903190813958645, 0.005195640958845615, 0.0903562530875206, -0.06199470907449722, 0.05107446014881134, 0.10585790127515793, 0.039546214044094086, -0.04374443367123604, 0.08734089136123657, 0.02320973202586174, 0.08249884098768234, 0.061432357877492905, -0.05486299470067024, 0.1134316548705101, -0.21079745888710022, -0.04072248190641403, -0.06980689615011215, -0.06466026604175568, -0.08356697857379913, 0.18342219293117523, -0.08699619770050049, -0.07989997416734695, -0.030856076627969742, 0.1446584314107895, -0.058056335896253586, 0.002070363610982895, -0.07943730056285858, 0.07630553096532822, 0.06651009619235992, 0.06848325580358505, -0.1354433298110962, -0.02751843072474003, -0.08618669211864471, 0.08373795449733734, -0.014868739992380142, -0.02718065306544304, -0.09267378598451614, -0.11966054886579514, 0.0606333389878273, -0.04613446071743965, -0.13387154042720795, 0.01616324670612812, 0.09140715003013611, -0.01584061048924923, 0.07938431203365326, 0.11745032668113708, 0.01028835866600275, 0.07362662255764008, -0.04936773702502251, -0.09516535699367523, -0.06467553228139877, 0.009073310531675816, 0.09911100566387177, -0.10319309681653976, -0.14138127863407135, -0.16279423236846924, -0.1979210525751114, 0.0658913180232048, -0.06151373311877251, 0.09609779715538025, -0.08982106298208237, -0.05729738995432854, 0.07506398856639862, 0.08887821435928345, 0.0010082025546580553, 0.045352235436439514, 0.025783607736229897, 0.10205748677253723, 0.008426390588283539, 0.14545179903507233, -0.005667070858180523, -0.06611523777246475, -0.036636848002672195, -0.03306317329406738, 0.02956823632121086, 0.03428952023386955, 0.003858114592730999, 0.020822830498218536, 0.047192540019750595, 0.096270352602005, 0.01720806211233139, -0.07204984873533249, 0.14423657953739166, 0.049120571464300156, -0.043429095298051834, 0.15099477767944336, -0.006502979435026646, 0.0016632246552035213, 0.04040921479463577, -0.013340790756046772, 0.012862005271017551, 0.07261144369840622, -0.10567820817232132, -0.0667426809668541, 0.08873675763607025, -0.053479183465242386, 0.062267497181892395, 0.11033220589160919, -0.009043787606060505, 0.04893467575311661, -0.008511661551892757, 0.16728881001472473, 0.0249929316341877, 0.02647187002003193, 0.024986909702420235, -0.059348125010728836, -0.014017348177731037, -0.04294818267226219, 0.10457407683134079, -0.10303941369056702, 0.06517274677753448, -0.007047487888485193, 0.031780678778886795, -0.046065643429756165, 0.10222191363573074, 0.04497267305850983, -0.08748453110456467, -0.02663428708910942, -0.013927399180829525, 0.012493398040533066, 0.05203011631965637, -0.10247766971588135, 0.07362868636846542, -0.015206187963485718, 0.10542797297239304, -0.0171186700463295, 0.015001910738646984, -0.12553997337818146, -0.10293152183294296, -0.11868277192115784, -0.012889988720417023, -0.05190400779247284, 0.08841309696435928, -0.020993376150727272, 0.031223785132169724, -0.0017218627035617828, 0.03220708295702934, 0.028591729700565338, -0.05311211571097374, -0.07657379657030106, 0.04652941972017288, -0.013518691062927246, -0.054729800671339035, -0.0030024682637304068, 0.1291486769914627, -0.035576775670051575, 0.1370694935321808, 0.07294842600822449, -0.08325213193893433, 0.058742720633745193, -0.049385033547878265, -0.008889961987733841, 0.13723787665367126, 0.032484591007232666, -0.06598784774541855, -0.008649676106870174, -0.00814921222627163, 0.030090831220149994, 0.05040550231933594, -0.10343940556049347, -0.08529163897037506, -0.019381029531359673, -0.03564857691526413, 0.018995312973856926, -0.013922649435698986, -0.13743440806865692, -0.14982227981090546, 0.026169227436184883, 0.025159500539302826, -0.034664977341890335, -0.10408216714859009, -0.0580231249332428, -0.07614469528198242, -0.019641244783997536, -0.008520406670868397, -0.0963113084435463, -0.12511104345321655, -0.06395348161458969, -0.08868135511875153, -0.023745235055685043, 0.028474794700741768, -0.13514655828475952, -0.048796020448207855, 0.06313224881887436, -0.08784661442041397, 0.06819895654916763, -0.11872317641973495, 0.05458160862326622, -0.021434618160128593, 0.05888732150197029, 0.02230234257876873, -0.01900351233780384, -0.044919706881046295, 0.03257933631539345, 0.09713932126760483, -0.04816858842968941, 0.06265602260828018, -0.05184048414230347, 0.1398821622133255, 0.04255378991365433, -0.021454395726323128, -0.01818748190999031, 0.037445779889822006, -0.0991552323102951, -0.019456639885902405, 0.10613968968391418, -0.07130629569292068, 0.050811175256967545, 0.07493840157985687, 0.06501410901546478, 0.036179203540086746, 0.04434098303318024, -0.0012064946349710226, 0.07703832536935806, 0.007445366121828556, -0.022427132353186607, 0.005599440541118383, 0.08674943447113037, -0.04600276052951813, -0.014526807703077793, 0.057289909571409225, 0.0030908817425370216, -0.10493837296962738, -0.09129577875137329], -zext:[-0.08147197961807251, -0.12559668719768524, 0.07827351987361908, 0.06314677000045776, 0.05472910776734352, 0.041759077459573746, -0.013724670745432377, -0.06945745646953583, 0.07349754124879837, 0.03389861807227135, 0.11937713623046875, 0.11215335875749588, -0.039313532412052155, -0.10960660874843597, -0.08041518181562424, 0.03408191353082657, -0.01563156768679619, -0.11267345398664474, 0.05580572038888931, -0.008193718269467354, -0.06307242065668106, -0.04460543766617775, -0.02477193996310234, 0.14602789282798767, -0.032938841730356216, 0.1289607584476471, 1.2014679668936878e-06, 0.07532323896884918, -0.14672531187534332, -0.23172874748706818, -0.02587362751364708, -0.013729477301239967, 0.09525305777788162, 0.08084800094366074, 0.08896276354789734, 0.1666901409626007, 0.07604140788316727, 0.07613064348697662, 0.04096153378486633, -0.1208547055721283, -0.07544439285993576, -0.04349800944328308, 0.04126279428601265, -0.10617437958717346, -0.019732609391212463, 0.05524769797921181, -0.012555438093841076, -0.13769158720970154, 0.005356885492801666, 0.05505656078457832, 0.020074540749192238, 0.023075247183442116, 0.16902801394462585, -0.12035967409610748, 0.034815289080142975, 0.004868903197348118, -0.05281338840723038, -0.036099374294281006, 0.12438228726387024, -0.060087475925683975, 0.06002795323729515, 0.015383505262434483, 0.09286240488290787, 0.03910369798541069, -0.04064161330461502, -0.0011057649971917272, -0.08806996047496796, -0.04047872871160507, -0.0297471284866333, 0.03428822010755539, -0.024223467335104942, -0.05764266848564148, -0.06026267632842064, 0.07076555490493774, 0.010690554045140743, -0.05116055905818939, -0.26046425104141235, -0.024149680510163307, -0.041133541613817215, -0.03153758868575096, 0.10200317203998566, 0.062335237860679626, 0.037564415484666824, -0.05583473667502403, 0.10241803526878357, 0.025810547173023224, 0.08104507625102997, 0.06817754358053207, -0.0552637055516243, -0.09076156467199326, -0.0079355388879776, 0.08598867803812027, -0.04597281664609909, -0.05148325860500336, -0.043217651546001434, 0.1955859214067459, 0.059544190764427185, 0.013017348013818264, -0.08252540230751038, 0.09975031763315201, 0.024274148046970367, -0.009835506789386272, -0.07355277985334396, 0.03727395460009575, 0.05460801720619202, 0.05756815895438194, -0.010064150206744671, -0.06290711462497711, 0.05400489643216133, 0.12694330513477325, -0.07263710349798203, -0.06979285180568695, -0.03448881208896637, 0.0022058289032429457, 0.015049172565340996, 0.0645681619644165, -0.02978449873626232, -0.03228230029344559, 0.0688125416636467, -0.03704981878399849, -0.05546044558286667, 0.10600242018699646, 0.09671581536531448, -0.016762586310505867, -0.05855419486761093, -0.06751035898923874, 0.0399315282702446, -0.0024346127174794674, 0.05288543552160263, 0.02194494940340519, -0.05188027396798134, -0.04136767238378525, -0.06906092166900635, 0.2027379423379898, 0.07995724678039551, -0.20827309787273407, -0.06966504454612732, 0.05269763246178627, 0.0176363717764616, 0.09625962376594543, 0.08802416175603867, -0.012443390674889088, -0.10993827879428864, -0.006629833020269871, -0.11732491105794907, -0.06213299185037613, -0.08120784908533096, -0.06279309839010239, -0.04140595719218254, 0.0034752448555082083, -0.02388872765004635, -0.08593744784593582, 0.011988429352641106, 0.16975629329681396, 0.09728080034255981, -0.0015739311929792166, -0.0076576475985348225, -0.07094431668519974, -0.13368943333625793, 0.07406852394342422, 0.04189153015613556, 0.03324057161808014, -0.006159826647490263, 0.11972996592521667, 0.03950096666812897, -0.0765664130449295, -0.01747475005686283, 0.11826492100954056, 0.0964253842830658, 0.017605632543563843, -0.04303394630551338, -0.04543832316994667, 0.051302775740623474, 0.03416441008448601, -0.015511703677475452, 0.07542169839143753, -0.038086410611867905, 0.01577571965754032, 0.10002303123474121, -0.008479252457618713, 0.016901250928640366, -0.06433796882629395, -0.09125237911939621, -0.027433300390839577, 0.024707021191716194, -0.05288379639387131, -0.05731688439846039, -0.013497183099389076, 0.07627711445093155, -0.046197451651096344, 0.003605174133554101, 0.03824343532323837, -0.08819487690925598, -0.037995535880327225, -0.015167749486863613, -0.006038812920451164, 0.029240412637591362, -0.11100425571203232, 0.06686768680810928, -0.003912646789103746, -0.07552728056907654, 0.041792698204517365, -0.09765472263097763, -0.03553849458694458, -0.055702149868011475, -0.11150936782360077, -0.07213153690099716, 0.15287552773952484, -0.1393229216337204, -0.003375219414010644, 0.03315822035074234, -0.12430513650178909, -0.03141048178076744, 0.019789472222328186, -0.10416305065155029, -0.08288662880659103, -0.12978427112102509, 0.07628506422042847, -0.0459454320371151, -0.10303103923797607, 0.02557056024670601, 0.011553446762263775, -0.18391571938991547, 0.09720201790332794, -0.08643854409456253, 0.06734760850667953, 0.11523105949163437, 0.06971835345029831, 0.00931414496153593, 0.02455742470920086, -0.05053802579641342, 0.012460923753678799, 0.029109258204698563, 0.0025344763416796923, 0.03449523448944092, -0.05829128995537758, 0.01820484735071659, -0.011845903471112251, -0.10038361698389053, 0.014326064847409725, -0.01054364163428545, -0.10676928609609604, 0.09910308569669724, 0.0881066843867302, 0.006829059217125177, 0.02346433699131012, -0.0988297164440155, 0.029199713841080666, -0.07824208587408066, -0.06923171877861023, 0.043494727462530136, -0.03209426999092102, -0.07601233571767807, -0.05022912845015526, -0.009109891019761562, -0.11312524229288101, 0.01612194813787937, 0.03716239705681801, -0.042932115495204926, -0.04971856251358986, 0.10232159495353699, 0.02866765484213829, -0.03634166345000267, -0.07913359254598618, 0.09289006888866425, -0.035715002566576004, 0.016975294798612595, -0.04676687717437744, -0.08447345346212387, 0.14871132373809814, 0.038759417831897736, -0.05535066872835159, 0.04752953350543976, -0.04278426989912987, 0.11698520928621292, 0.01803283765912056, 0.009663055650889874, -0.03561035916209221, -0.02788340486586094, -0.07015516608953476, 0.03700035810470581, 0.013090178370475769, 0.028251830488443375, 0.04501771926879883, -0.04332445561885834, 0.05971839651465416, 0.05344763770699501, -0.04484570398926735, 0.004669912159442902, -0.1869184672832489, -0.09499510377645493, -0.01811291091144085, -0.010550783947110176, 0.043617308139801025, -0.034485772252082825, -0.022950230166316032, -0.07330448925495148, -0.057993464171886444, -0.11125262826681137, -0.11501023173332214] +add:[0.025248907506465912, -0.0032446319237351418, -0.2297450304031372, 0.020684288814663887, -0.046205900609493256, 0.13335005939006805, 0.06460077315568924, -0.06328211724758148, -0.04478873312473297, 0.12075794488191605, 0.034320808947086334, -0.10351669043302536, -0.01613047532737255, 0.12865225970745087, 0.015140749514102936, 0.05511505529284477, 0.1205211952328682, 0.05644015967845917, -0.11992193758487701, 0.026676958426833153, 0.07827390730381012, 0.13963353633880615, 0.13390383124351501, 0.10615333914756775, 0.0013403656193986535, 0.03732472285628319, -0.022368263453245163, -0.11607689410448074, 0.02055179886519909, 0.001967768417671323, 0.003149761352688074, -0.030914263799786568, 0.06976867467164993, -0.08767662942409515, -0.08367395401000977, -0.0821526050567627, -0.03545026853680611, 0.010995235294103622, 0.09500110149383545, -0.10315961390733719, 0.06009676679968834, 0.09103105217218399, 0.20711860060691833, -0.08484964072704315, -0.026270922273397446, 0.15641525387763977, 0.06407676637172699, 0.09891991317272186, 0.03155697137117386, -0.04000416770577431, -0.007787215989083052, 0.03904139623045921, 0.05371592566370964, 0.07144361734390259, 0.032944705337285995, 0.041081082075834274, -0.008628325536847115, 0.08751071989536285, 0.02376430481672287, -0.078340083360672, 0.04502930864691734, 0.08624786138534546, -0.0792650580406189, 0.11170385032892227, 0.11932047456502914, 0.05935141071677208, -0.043473806232213974, 0.0275468360632658, 0.026768378913402557, 0.04376807063817978, 0.022148389369249344, 0.05650169774889946, 0.09159389138221741, 0.030791819095611572, -0.02171371877193451, 0.14558936655521393, -0.02196481265127659, 0.10892841219902039, 0.011089206673204899, -0.16334666311740875, 0.05778990313410759, 0.014082308858633041, -0.0029710533563047647, -0.0934733897447586, 0.07057388871908188, -0.004234654363244772, 0.05264684557914734, -0.01290739793330431, -0.028852887451648712, 0.12830021977424622, 0.08388694375753403, -0.04682270437479019, -0.0796498954296112, -0.010793311521410942, -0.0904703214764595, 0.043749045580625534, -0.058078911155462265, 0.04534577950835228, 0.166289821267128, -0.020639019086956978, -0.11528618633747101, -0.10944201797246933, -0.153434157371521, 0.07931860536336899, -0.07497169822454453, 0.0009818300604820251, 0.06833607703447342, -0.04290635138750076, -0.052109189331531525, 0.03077142871916294, 0.04919597506523132, -0.06266999989748001, -0.05514649301767349, -0.13473793864250183, -0.1623220443725586, -0.09110834449529648, -0.12859438359737396, -0.04741701856255531, -0.057220540940761566, -0.11650095134973526, 0.048463381826877594, -0.007042470388114452, -0.054256241768598557, -0.07806608080863953, 0.08139657974243164, -0.05107499286532402, -0.06371074169874191, 0.026942087337374687, -0.06250008195638657, -0.0821027010679245, 0.0044724056497216225, 0.08249411731958389, -0.07231941819190979, -0.11771483719348907, 0.07896778732538223, -0.0020812414586544037, 0.0137091763317585, 0.04011482745409012, -0.0702492967247963, -0.10976511240005493, 0.11528071761131287, -0.1359572410583496, 0.11950691789388657, 0.007561201695352793, -0.08287637680768967, 0.01782136783003807, 0.022446829825639725, -0.015767371281981468, 0.008539442904293537, 0.03955078125, -0.03784029558300972, 0.1023394837975502, 0.04920644313097, -0.12888163328170776, -0.07119788229465485, -0.03452462702989578, -0.01625182293355465, -0.008013234473764896, 0.08515685051679611, 0.018346041440963745, 0.10439211130142212, -0.039108023047447205, 0.018723124638199806, 0.130404993891716, 0.10057953000068665, -0.017829377204179764, 0.13922786712646484, 0.009503406472504139, -0.0257827527821064, -0.005774915684014559, 0.025815952569246292, -0.0331868939101696, -0.057337094098329544, -0.11305897682905197, -0.07535146921873093, 0.01313092466443777, 0.06950284540653229, -0.024247998371720314, 0.22003616392612457, 0.004101196303963661, 0.10669494420289993, -0.01282341219484806, 0.11137635260820389, 0.022750986739993095, -0.08113787323236465, 0.09414397925138474, 0.019823918119072914, -0.04601570591330528, 0.10929121822118759, 0.04290103167295456, 0.06169838458299637, 0.14146767556667328, -0.06641707569360733, 0.006746835540980101, -0.037881769239902496, 0.021299686282873154, -0.06793605536222458, 0.18089506030082703, 0.0013650375185534358, 0.07244907319545746, 0.07252584397792816, 0.014152307994663715, -0.09367737919092178, 0.01760409213602543, -0.1108086109161377, -0.06616805493831635, -0.0259612537920475, -0.0021192634012550116, 0.02008422650396824, 0.06873386353254318, 0.08694379031658173, -0.021322017535567284, -0.05368680879473686, 0.11050231009721756, 0.09574294835329056, -0.04071735590696335, 0.0543178990483284, 0.08127962052822113, -0.034418098628520966, 0.02529471181333065, 0.09628873318433762, 0.00655702268704772, -0.022355560213327408, -0.07643015682697296, 0.04493722319602966, -0.12767376005649567, -0.09053891152143478, -0.050802335143089294, 0.039957985281944275, 0.025386355817317963, 0.058811891824007034, 0.05090467631816864, -0.03513937070965767, 0.0965467169880867, 0.09472910314798355, 0.1265525370836258, -0.050176020711660385, -0.132935032248497, 0.10446050763130188, 0.004754430614411831, 0.0908106341958046, 0.07008262723684311, 0.02782464027404785, -0.03371165692806244, -0.13704736530780792, 0.049072109162807465, -0.09213470667600632, -0.029425550252199173, -0.10077982395887375, 0.009491216391324997, -0.027213582769036293, 0.16146700084209442, -0.05486927926540375, 0.108955979347229, 0.025471268221735954, -0.03515416011214256, -0.11127416789531708, 0.017811952158808708, 0.0819588154554367, 0.11711780726909637, 0.018520338460803032, -0.011257873848080635, 0.03639593347907066, -0.06086708605289459, -0.002923807129263878, 0.00017784633382689208, -0.07835859060287476, -0.0006816338282078505, 0.031843509525060654, -0.01975475437939167, -0.017300013452768326, -0.0545167438685894, 0.028145471587777138, -0.031108830124139786, 0.02869333326816559, 0.018056189641356468, 0.003482990665361285, 0.02386670932173729, -0.010319714434444904, -0.019461752846837044, -0.06864863634109497, 0.11234597861766815, 0.06801411509513855, -0.19042342901229858, 0.010183043777942657, 0.05800620838999748, -0.10598424077033997, 0.09819064289331436, -0.08983027935028076, -0.05313831567764282, 0.024609101936221123, -0.04531050845980644, -0.07754980772733688, 0.015734540298581123, -0.02517721615731716, 0.038155119866132736, -0.010499672032892704, -0.02678397111594677, -0.096076101064682, 0.02372625470161438], +alloca:[0.026876727119088173, -0.0024924397002905607, -0.06802666932344437, 0.07599883526563644, 0.006986571010202169, 0.06408161669969559, 0.11194998025894165, 0.03917402774095535, 0.005577918607741594, -0.03995930403470993, 0.026895225048065186, -0.06278520077466965, -0.12898096442222595, 0.13162261247634888, 0.06579979509115219, 0.11071856319904327, 0.1179158017039299, 0.07453122735023499, -0.005690085701644421, 0.051173195242881775, -0.004339776001870632, -0.030490785837173462, 0.14342822134494781, 0.09093604981899261, 0.027555719017982483, 0.053826116025447845, -0.0238343495875597, -0.03058924339711666, -0.11565469950437546, 0.061385296285152435, 0.002822316251695156, -0.122499980032444, 0.12807528674602509, -0.10967174917459488, -0.07981692254543304, -0.043342553079128265, -0.04015880450606346, 0.011183047667145729, 0.036289628595113754, -0.11844919621944427, 0.020685356110334396, 0.13232623040676117, 0.0028885204810649157, -0.061777010560035706, -0.0160524882376194, -0.011068878695368767, 0.06612786650657654, 0.1009233146905899, 0.04504111781716347, 0.09634428471326828, -0.07722120732069016, -0.13166271150112152, 0.09074332565069199, 0.11099901050329208, 0.06127208098769188, 0.030565844848752022, -0.14966748654842377, -0.07253281772136688, -0.09140431135892868, 0.036806393414735794, 0.012612676247954369, -0.15145523846149445, -0.12252623587846756, 0.029951976612210274, 0.10087689757347107, -0.032702334225177765, -0.04390969127416611, 0.021621577441692352, -0.11200133711099625, 0.04067498818039894, 0.014691250398755074, 0.05851304531097412, 0.10421773791313171, -0.03246130794286728, 0.042418498545885086, 0.05236256122589111, -0.11651268601417542, 0.05078428238630295, -0.07754340767860413, -0.11307503283023834, -0.12156819552183151, -0.03506314381957054, 0.08075761049985886, 0.08214429020881653, 0.11193592101335526, -0.06365486979484558, 0.029877251014113426, 0.007374903187155724, -0.024195615202188492, 0.010082944296300411, 0.12730419635772705, -0.11602164804935455, -0.12595611810684204, -0.01840013451874256, 0.09406221657991409, 0.044134050607681274, -0.11640505492687225, -0.013960273005068302, 0.10469581186771393, -0.11484558880329132, -0.13238142430782318, -0.07443734258413315, 0.04827873781323433, 0.04793975129723549, -0.05614562705159187, -0.0956462174654007, 0.01854146458208561, 0.11834181845188141, -0.08094273507595062, -0.12369027733802795, -0.13993476331233978, -0.09451518207788467, -0.05766628310084343, -0.12132440507411957, 0.03666650876402855, 0.12950649857521057, -0.05106346681714058, 0.11589652299880981, -0.056488651782274246, -0.08793570846319199, 0.10936221480369568, -0.006275302730500698, -0.00519286934286356, -0.16219466924667358, 0.08711368590593338, 0.05809605121612549, -0.06524711847305298, 0.021132519468665123, 0.053387921303510666, 0.053532931953668594, 0.001297319889999926, 0.13394391536712646, 0.11478318274021149, -0.010965324938297272, 0.03181304782629013, 0.01478224154561758, 0.008708000183105469, 0.11932124197483063, 0.011545776389539242, -0.11478383094072342, -0.06765289604663849, -0.14769460260868073, 1.6179115846171044e-05, 0.01614568382501602, -0.1060791090130806, 0.024754056707024574, -0.07515022158622742, 0.049172405153512955, 0.009130981750786304, -0.037575118243694305, -0.020645832642912865, 0.07491779327392578, 0.0630241185426712, -0.12008126080036163, 0.092458575963974, -0.0912945419549942, -0.01988111436367035, -0.024560417979955673, 0.10880231112241745, 0.018166905269026756, -0.01462532114237547, 0.0038000678177922964, 0.017419463023543358, 0.1335494965314865, 0.10313081741333008, -0.11572174727916718, 0.004946643020957708, -0.04823607578873634, 0.10568808019161224, -0.06140386685729027, 0.06610721349716187, 0.0679418221116066, 0.10318406671285629, -0.11687589436769485, -0.011069093830883503, 0.026050036773085594, 0.07200732082128525, -0.13732179999351501, -0.027545366436243057, 0.04586426541209221, -0.028676897287368774, 0.05737221986055374, -0.13754920661449432, -0.004415098577737808, -0.046125628054142, 0.001090591074898839, 0.014506430365145206, -0.030962247401475906, -0.03380722180008888, 0.03815140575170517, 0.08916414529085159, 0.11265458911657333, -0.07640279829502106, -0.042867448180913925, 0.07800773531198502, 0.03687738999724388, -0.06812405586242676, 0.005330933257937431, -0.011951006948947906, 0.07839149981737137, 0.07579381763935089, 0.10227669775485992, 0.016523947939276695, -0.026097288355231285, -0.11276526749134064, -0.05582394450902939, -0.03754542022943497, -0.0018968323711305857, 0.08416319638490677, 0.10204540193080902, -0.06902095675468445, -0.03613705188035965, -0.07264484465122223, -0.013907401822507381, 0.0465700589120388, -0.08512089401483536, 0.056216031312942505, 0.08549531549215317, 0.21695788204669952, -0.05138235539197922, 0.056235406547784805, -0.009909458458423615, -0.10965059697628021, 0.04184979572892189, 0.07363344728946686, 0.10051074624061584, -0.07832619547843933, -0.13170690834522247, 0.09617544710636139, -0.09464750438928604, -0.09091295301914215, 0.025328004732728004, -0.03362129628658295, 0.0002799364738166332, 0.07690097391605377, -0.10681694746017456, 0.11340460181236267, -0.042622096836566925, 0.1092565581202507, 0.09332166612148285, 0.08044154196977615, 0.07296868413686752, 0.03416856750845909, 0.11757852137088776, 0.07374120503664017, -0.13575544953346252, 0.045444928109645844, -0.10630844533443451, 0.020104793831706047, -0.13592268526554108, 0.009531659074127674, -0.08180733025074005, -0.05738453194499016, 0.12072406709194183, 0.07487466931343079, 0.07031279057264328, -0.05663212761282921, -0.0983528271317482, 0.07712974399328232, -0.13283389806747437, 0.014173971489071846, 0.11605919152498245, 0.09675894677639008, 0.037611354142427444, 0.026602303609251976, 0.08752159774303436, -0.07903477549552917, -0.015433317050337791, 0.03877745941281319, 0.04573797062039375, -0.011241452768445015, -0.06516142189502716, -0.04127003252506256, -0.09706591069698334, -0.016804112121462822, 0.02948744222521782, -0.0034022401086986065, -0.009357484988868237, -0.03844897821545601, -0.020696118474006653, -0.030906204134225845, -0.04711334779858589, 0.07058877497911453, 0.0119441207498312, -0.11171450465917587, 0.030627544969320297, -0.07377363741397858, 0.06009867042303085, -0.08453303575515747, -0.0536072812974453, 0.02442142926156521, 0.10045048594474792, -0.04241511598229408, 0.016725176945328712, 0.08929191529750824, -0.05668997764587402, -0.009921262972056866, -0.13311725854873657, -0.13433188199996948, -0.06374061107635498], +and:[0.02461974136531353, -0.0019309367053210735, -0.0727638229727745, -0.10296938568353653, -0.03641315549612045, -0.04708261415362358, 0.07887883484363556, -0.06873725354671478, -0.04341106489300728, -0.009205901063978672, 0.022648828104138374, 0.025618866086006165, -0.07118968665599823, 0.12331734597682953, 0.009071419946849346, 0.10436810553073883, 0.10999719053506851, 0.039781466126441956, -0.11355940997600555, 0.02791796810925007, 0.04560673609375954, 0.015837477520108223, 0.12039823830127716, 0.10192657262086868, -0.0009712808532640338, 0.045824747532606125, -0.022219298407435417, -0.0012865333119407296, -0.1014329195022583, 0.11148430407047272, -0.02352144941687584, 0.07763323187828064, -0.014123940840363503, -0.0913519635796547, -0.07991053909063339, -0.03594861924648285, -0.0335991345345974, 0.004463830031454563, 0.054652124643325806, -0.11010091006755829, 0.054642606526613235, 0.012750583700835705, -0.016372574493288994, -0.08445043861865997, -0.032807424664497375, 0.13316041231155396, 0.06226610019803047, 0.09495957940816879, 0.056693289428949356, -0.03929882496595383, -0.02714993804693222, 0.041404955089092255, 0.06609133630990982, 0.07447057217359543, 0.038686517626047134, 0.045402947813272476, 0.07985931634902954, 0.10879891365766525, 0.019253578037023544, 0.027260204777121544, 0.04208613932132721, 0.1231745108962059, -0.016249053180217743, 0.10599031299352646, 0.11436109989881516, 0.06153702363371849, -0.03799593448638916, 0.0263000950217247, 0.04797815531492233, -0.037225306034088135, 0.02573431096971035, 0.054358020424842834, -0.011199142783880234, 0.008494545705616474, -0.03481458127498627, 0.07621005922555923, 0.07092766463756561, -0.0693824365735054, 0.0081979651004076, 0.1953456997871399, -0.08338713645935059, 0.0046238587237894535, -0.0049504670314490795, 0.09785863757133484, 0.06711428612470627, -0.030221259221434593, 0.01899832859635353, 0.09252697974443436, -0.024488836526870728, 0.10419478267431259, 0.09398526698350906, -0.03657027706503868, -0.08199271559715271, -0.010256492532789707, -0.09008748084306717, 0.04228672385215759, -0.057112615555524826, -0.06100203096866608, 0.0900627002120018, 0.02517165243625641, -0.11057771742343903, -0.07338058203458786, -0.03986933082342148, 0.07481934875249863, -0.06980306655168533, -0.07088533043861389, 0.09311000257730484, 0.1015913262963295, 0.16195617616176605, -0.049241647124290466, 0.04823007807135582, 0.044118139892816544, -0.051682453602552414, -0.12898992002010345, -0.07283571362495422, -0.08037223666906357, -0.09409646689891815, -0.04449019953608513, -0.05422426015138626, -0.1076439917087555, 0.0448337085545063, -0.006716555450111628, -0.07119856029748917, -0.04304642975330353, 0.068763367831707, -0.05281135439872742, -0.048434413969516754, 0.008774079382419586, -0.06503380835056305, -0.011197943240404129, -0.0007080173818394542, 0.07646292448043823, -0.11507925391197205, -0.11837805807590485, 0.06069837138056755, -0.0071088518016040325, 0.007734343875199556, 0.039441488683223724, -0.06446671485900879, -0.10675567388534546, -0.04675471410155296, -0.04141594097018242, 0.058389998972415924, 0.0029776766896247864, -0.0852014496922493, 0.10771550238132477, 0.17654508352279663, -0.0345870777964592, -0.04867609590291977, 0.11019178479909897, -0.07141382247209549, 0.0948556438088417, 0.07708029448986053, -0.09563726931810379, -0.08533855527639389, -0.03520838916301727, -0.015374595299363136, -0.0025732212234288454, 0.0816846489906311, 0.017997771501541138, 0.06166588142514229, -0.03589141368865967, 0.016862137243151665, 0.12224512547254562, 0.09694995731115341, -0.003085159230977297, -0.03252142667770386, 0.03999811038374901, -0.06977850198745728, 0.044799432158470154, 0.025410758331418037, -0.03470565378665924, 0.05934331193566322, -0.10851038992404938, -0.07189638167619705, 0.03526502475142479, 0.06832540035247803, -0.010313775390386581, 0.24710628390312195, 0.018935037776827812, 0.09978064149618149, -0.016852060332894325, -0.09236029535531998, -0.013121284544467926, -0.22627423703670502, 0.09201820939779282, -0.055940765887498856, -0.0162741020321846, -0.0014308419777080417, 0.05069795250892639, 0.012484806589782238, 0.1259460300207138, -0.06893149018287659, 0.006661554798483849, 0.06205522269010544, 0.008904611691832542, -0.06510331481695175, 0.1176290512084961, -0.007118352223187685, 0.07029451429843903, 0.0695900171995163, 0.013007464818656445, -0.08890195190906525, 0.02284909039735794, -0.10823027044534683, -0.05295858532190323, -0.08160021156072617, -0.002968993503600359, 0.017408624291419983, 0.06700421124696732, 0.13430997729301453, 0.0318303257226944, -0.05526234209537506, 0.0950712040066719, 0.05970185622572899, -0.01714147813618183, 0.053214382380247116, 0.07802392542362213, 0.19729287922382355, 0.1921551376581192, 0.0997224971652031, 0.02596968412399292, -0.01378586608916521, 0.01469897199422121, 0.0707588791847229, 0.07086385786533356, -0.08651626855134964, -0.021260058507323265, 0.035750240087509155, -0.0656009390950203, 0.06235003098845482, -0.0814552903175354, -0.024391474202275276, 0.08517070859670639, 0.06396320462226868, 0.12719330191612244, -0.06110278517007828, 0.10782334953546524, -0.11658292263746262, 0.08647997677326202, 0.07555369287729263, 0.06749163568019867, 0.02894400618970394, -0.030873512849211693, 0.1520078182220459, 0.05035066977143288, 0.019247503951191902, -0.04983414337038994, 0.10982232540845871, -0.0019556942861527205, -0.04405856877565384, 0.16767022013664246, -0.05322964861989021, 0.04613810032606125, 0.035393089056015015, 0.04837430268526077, -0.1021900475025177, -0.0559220016002655, 0.07826020568609238, 0.14566051959991455, -0.05920756608247757, 0.013219034299254417, 0.0339960977435112, -0.05836135894060135, -0.03949664160609245, 0.0009160980698652565, -0.07462935894727707, -0.002492343308404088, 0.036522138863801956, -0.020969808101654053, -0.0014993160730227828, -0.042070865631103516, 0.03287430480122566, 0.08676517009735107, 0.002164313104003668, -0.03271991387009621, -0.004050560761243105, 0.1281243860721588, 0.02603730745613575, -0.019603826105594635, -0.005634984467178583, 0.09908019006252289, -0.09343448281288147, 0.10313235968351364, -0.028940273448824883, -0.02676793374121189, -0.10017004609107971, 0.07953311502933502, -0.08301357179880142, -0.045887984335422516, 0.053412552922964096, -0.048365045338869095, -0.07398602366447449, 0.016278518363833427, -0.029636871069669724, 0.030916616320610046, -0.01208361517637968, 0.032742202281951904, -0.1210959181189537, 0.023525571450591087], +ashr:[0.024744221940636635, -0.0323420874774456, -0.07151360809803009, -0.10373319685459137, 0.12264645844697952, -0.12254748493432999, 0.12091520428657532, -0.1439061015844345, -0.03067900985479355, -0.06683973968029022, 0.02104499749839306, -0.09784158319234848, -0.12328587472438812, 0.11980149894952774, 0.06439558416604996, 0.10471703112125397, 0.1306307315826416, 0.038811083883047104, 0.034475330263376236, -0.11788199841976166, -0.05105647072196007, 0.06799731403589249, 0.1422637701034546, 0.10512255132198334, 0.005515387747436762, 0.04248397797346115, -0.07586737722158432, 0.06015409529209137, -0.03602251783013344, -0.05250918120145798, -0.0315021276473999, -0.04587839916348457, -0.018799884244799614, -0.1020565927028656, -0.07842695713043213, -0.013390358537435532, -0.13197359442710876, 0.01167317759245634, 0.09132637083530426, -0.03923771530389786, 0.05809537321329117, 0.07018744945526123, 0.05530468374490738, -0.0618145726621151, 0.053360387682914734, -0.08898307383060455, 0.06331528723239899, 0.04628939554095268, -0.0003015821275766939, -0.026645584031939507, 0.0582394003868103, -0.02910592593252659, 0.10140221565961838, 0.11789064109325409, -0.04790438711643219, 0.03563486039638519, -0.05002849921584129, -0.021158859133720398, -0.003785554552450776, 0.06630193442106247, 0.027715034782886505, 0.045217663049697876, -0.019444797188043594, 0.05813620612025261, -0.08114641904830933, 0.10550662130117416, -0.1418120563030243, 0.031921811401844025, 0.13566334545612335, 0.09485930949449539, 0.10342107713222504, 0.05539456754922867, -0.009967591613531113, 0.06246641278266907, 0.03579007834196091, 0.060017794370651245, 0.03202082961797714, -0.004590259399265051, 0.08063648641109467, 0.05554850026965141, -0.11494621634483337, 0.01190655492246151, 0.07559803128242493, -0.012118606828153133, 0.10172366350889206, -0.015485133044421673, -0.06615424901247025, 0.06647589802742004, 0.11905615031719208, -0.053462814539670944, 0.0935826301574707, 0.03218357264995575, -0.1197705864906311, -0.010300186462700367, -0.05356322601437569, 0.01467723399400711, -0.057054076343774796, -0.12046627700328827, 0.05715041607618332, 0.1082913801074028, -0.1303795427083969, 0.09303758293390274, 0.09472062438726425, 0.04503059759736061, -0.0729503408074379, 0.005187346134334803, 0.14931249618530273, 0.10323841124773026, 0.007339099887758493, 0.03627385199069977, -0.07489608973264694, 0.04233308136463165, -0.052202776074409485, -0.10063789039850235, -0.08727217465639114, -0.018527766689658165, 0.020629215985536575, -0.04636954143643379, -0.056627362966537476, -0.11334225535392761, 0.10192279517650604, -0.00741332583129406, -0.11140879988670349, 0.03737514466047287, -0.026375964283943176, 0.16028518974781036, 0.04695573076605797, -0.0939377173781395, -0.0407259464263916, -0.08495362848043442, -0.001851469511166215, 0.1288987547159195, 0.031168349087238312, -0.08737096190452576, 0.03240115940570831, 0.017646629363298416, -0.1128922700881958, 0.04939510300755501, 0.02144450508058071, -0.1088632345199585, -0.02082037925720215, -0.15393604338169098, 0.1291951686143875, 0.02832372486591339, -0.07856334745883942, 0.01557862851768732, 0.0049644033424556255, 0.06818099319934845, 0.008180586621165276, 0.003510752459987998, 0.0022052184212952852, 0.0028516659513115883, 0.1304806023836136, -0.04247291386127472, -0.1918344646692276, 0.1147766038775444, 0.018658826127648354, -0.06948339194059372, -0.06626079976558685, -0.1029186025261879, -0.001144321751780808, 0.007832543924450874, 0.015080905519425869, 0.05779559165239334, 0.09646192938089371, -0.06005118414759636, -0.11721925437450409, -0.0835437923669815, 0.07839220762252808, 0.011404030956327915, 0.02445862628519535, 0.05124661326408386, 0.09387492388486862, -0.11029951274394989, -0.12735089659690857, 0.021722054108977318, 0.08391208201646805, 0.06466669589281082, -0.015488208271563053, 0.03624669089913368, -0.06098325923085213, -0.013910827226936817, -0.057061728090047836, -0.012349908240139484, -0.05854404717683792, 0.004033729434013367, -0.059471338987350464, 0.10523607581853867, -0.06842410564422607, 0.03959884122014046, 0.005734719801694155, 0.09486522525548935, -0.04146919772028923, 0.07985711097717285, 0.053012166172266006, 0.08219707012176514, -0.11115206778049469, -0.12272295355796814, -0.12029003351926804, 0.016619553789496422, 0.06856130808591843, 0.0012338777305558324, -0.07064247876405716, -0.008037748746573925, 0.02628040872514248, -0.05037468671798706, -0.03242089971899986, 0.0026416711043566465, 0.07436613738536835, -0.07370151579380035, 0.00944596715271473, -0.0926547646522522, 0.010684364475309849, -0.09131152182817459, 0.04629944637417793, -0.054810259491205215, 0.08962813764810562, 0.0770144909620285, 0.07763583213090897, 0.03327343240380287, 0.048159513622522354, 0.0757322758436203, -0.10356449335813522, 0.04125361144542694, 0.09884572774171829, 0.08504264801740646, 0.0024117156863212585, 0.0532635860145092, 0.16246776282787323, -0.08888190984725952, 0.04736655578017235, 0.049305062741041183, 0.09683652222156525, -0.06253167986869812, -0.06127622723579407, -0.01986745186150074, -0.01706489734351635, 0.0570695623755455, 0.08142289519309998, -0.09681234508752823, 0.11376696825027466, 0.0684671700000763, 0.03551905229687691, 0.045294515788555145, -0.05731496587395668, 0.04015110805630684, 0.041819311678409576, 0.03574863076210022, 0.019973916932940483, 0.08322108536958694, -0.045975346118211746, -0.0004198237438686192, 0.056289952248334885, 0.01055465079843998, 0.03804945573210716, -0.003332441207021475, -0.1196262314915657, 0.05165665224194527, 0.06992002576589584, 0.010865842923521996, 0.10305702686309814, -0.01070947851985693, 0.027672862634062767, -0.05898240581154823, 0.07433684170246124, -0.046367891132831573, -0.11154548823833466, -0.0007339515723288059, 0.05486789718270302, 0.05208355560898781, -0.042430225759744644, -0.06537409871816635, -0.047003138810396194, -0.0480700321495533, -0.008732923306524754, 0.03694453835487366, 0.0060669975355267525, -0.120446115732193, -0.12232690304517746, -0.020543286576867104, -0.02975763939321041, -0.005717366002500057, 0.06790035963058472, -0.030807767063379288, 0.05185052007436752, -0.1090218797326088, -0.10214246064424515, 0.030087566003203392, -0.021792998537421227, -0.12011978775262833, 0.023608563467860222, -0.02629472129046917, -0.11058465391397476, -0.0013609828893095255, -0.03038063272833824, 0.130726158618927, 0.09694810956716537, -0.1107647493481636, -0.1263105273246765, 0.033970631659030914], +bitcast:[-0.046946875751018524, -0.013550350442528725, 0.11592269688844681, -0.059097472578287125, -0.0681145116686821, 0.011242679320275784, 0.11686757206916809, -0.10849229246377945, -0.037156086415052414, -0.09383173286914825, 0.09227553009986877, 0.10760313272476196, 0.06036699190735817, -0.043855682015419006, 0.06972427666187286, 0.12154891341924667, -0.11034679412841797, 0.08998654037714005, 0.12480026483535767, -0.009985744021832943, 0.048587217926979065, 0.036514732986688614, -0.13091333210468292, 0.0673784390091896, -0.05574225261807442, 0.06935977935791016, 0.021833302453160286, -0.0016573030734434724, 0.07979011535644531, 0.04153131693601608, 0.1161368191242218, -0.0005812210729345679, -0.074055977165699, 0.06488748639822006, 0.013462813571095467, -0.03387197107076645, 0.04185814410448074, 0.10584083199501038, -0.12537415325641632, 0.10959529131650925, -0.027396216988563538, 0.07239596545696259, -0.008373994380235672, -0.10749087482690811, 0.08145660161972046, -0.013343069702386856, -0.13037648797035217, 0.05216120928525925, -0.06875946372747421, 0.1306850165128708, 0.04305579140782356, -0.12753930687904358, 0.06473911553621292, -0.09213700890541077, 0.10001105815172195, -0.1392519623041153, -0.03332115337252617, -0.011636634357273579, 0.13033363223075867, -0.046321310102939606, -0.015235167928040028, 0.0015418615657836199, -0.009271088056266308, 0.06224775314331055, 0.1269816756248474, 0.04625392332673073, 0.036361582577228546, -0.02509237639605999, -0.016397573053836823, -0.032041341066360474, 0.0756339430809021, 0.056153006851673126, -0.09606293588876724, 0.027091598138213158, 0.03970463201403618, -0.016158342361450195, 0.038517046719789505, -0.0825858935713768, -0.12269788235425949, 0.0008578934357501566, -0.08448851853609085, 0.07970133423805237, -0.003934015985578299, -0.017698772251605988, 0.08261313289403915, 0.060397155582904816, 0.018026946112513542, 0.03770551085472107, -0.140689417719841, -0.056102652102708817, 0.0885930210351944, -0.11855363100767136, -0.08831191807985306, 0.08942720293998718, 0.0885397344827652, 0.123465895652771, -0.10811180621385574, 0.11879026889801025, -0.03600267320871353, -0.05812510475516319, -0.0015328824520111084, -0.06352575868368149, 0.04457639157772064, 0.05429311469197273, -0.10798811912536621, -0.0066419667564332485, 0.07279282063245773, 0.028336988762021065, 0.06528184562921524, -0.13889388740062714, 0.005295027978718281, -0.07645919919013977, 0.11968301236629486, -0.1022564098238945, -0.009827143512666225, -0.12384548038244247, 0.004798097535967827, 0.12876173853874207, -0.04195186123251915, 0.09355252981185913, -0.051673524081707, -0.112774558365345, 0.12384292483329773, -0.10357951372861862, -0.04056917130947113, -0.013578920625150204, -0.049650635570287704, 0.08440718799829483, -0.013637465424835682, -0.006884491071105003, -0.04967984929680824, 0.08197584748268127, -0.10067856311798096, -0.04201021045446396, 0.033945582807064056, -0.009272698312997818, -0.13378958404064178, 0.13336986303329468, -0.017744289711117744, -0.10997725278139114, 0.01817970536649227, 0.13242526352405548, -0.06748153269290924, -0.09750041365623474, 0.08517975360155106, -0.04245986044406891, 0.011488402262330055, -0.03511928766965866, -0.10397569835186005, -0.003389137564226985, 0.11923112720251083, -0.07329347729682922, 0.10315012186765671, 1.4421284504351206e-05, 0.033596884459257126, 0.06079965829849243, -0.04187006503343582, -0.004988783039152622, -0.05993515998125076, 0.003106769174337387, -0.05551416054368019, -0.04102446883916855, -0.03114306554198265, 0.06001682206988335, -0.0001606194127816707, -0.039727453142404556, -0.15723024308681488, 0.030002528801560402, 0.09833139926195145, 0.0964072123169899, 0.06829730421304703, -0.035852737724781036, -0.07470697164535522, -0.06174842268228531, 0.095330610871315, -0.06768190860748291, 0.07479970157146454, 0.08735450357198715, 0.027043482288718224, -0.06672878563404083, -0.02271091379225254, -0.07914258539676666, 0.012644723057746887, -0.01560327410697937, 0.01897486485540867, 0.055134717375040054, -0.03268275782465935, -0.02031162567436695, 0.022018078714609146, 0.1336413323879242, 0.009479451924562454, -0.13047713041305542, -0.12543442845344543, 0.06681332737207413, -0.04293514043092728, -0.0366838201880455, 0.0249621719121933, 0.008480311371386051, 0.010953124612569809, -0.10052613914012909, 0.005826062057167292, -0.0003629490383900702, 0.02796027809381485, 0.11415552347898483, -0.11066456139087677, 0.03975781425833702, -0.10103441029787064, -0.01248838845640421, -0.025442607700824738, 0.08112423121929169, 0.09031383693218231, -0.09714542329311371, -0.12333688884973526, 0.00015230057761073112, -0.08015767484903336, -0.1209072545170784, 0.12418139725923538, 0.13851171731948853, 0.015460796654224396, 0.0008646916830912232, 0.1033565029501915, 0.07386738806962967, 0.09778568148612976, 0.01097323838621378, 0.13795258104801178, 0.07955425977706909, -0.10648344457149506, 0.10524965822696686, -0.02594844251871109, -0.07536695897579193, 0.06228632107377052, -0.10165205597877502, 0.013328664936125278, -0.07354617863893509, 0.021601669490337372, 0.01976366713643074, -0.04852971062064171, 0.022099144756793976, -0.007250138558447361, 0.12426876276731491, -0.013971359468996525, -0.045351818203926086, 0.03257596120238304, 0.018472332507371902, -0.0003088343655690551, -0.006747863255441189, -0.03815839812159538, -0.02272660657763481, 0.019354891031980515, -0.08831465244293213, -0.062498196959495544, -0.004573652055114508, -0.05916929244995117, -0.03336339071393013, 0.11138437688350677, 0.09586236625909805, 0.05541887879371643, 0.01816721446812153, 0.07147779315710068, -0.019567307084798813, -0.039181940257549286, 0.06123786047101021, 0.008742498233914375, 0.1156700924038887, -0.060688260942697525, -0.12068044394254684, -0.1286507099866867, -0.13900592923164368, -0.05465438589453697, -0.13015758991241455, 0.007589256856590509, -0.04873879998922348, 0.06760261207818985, -0.0010088318958878517, 0.001183164189569652, -0.016909554600715637, -0.08600419759750366, 0.03334072232246399, 0.023556247353553772, 0.0701969712972641, -0.05757834389805794, -0.020198771730065346, 0.06851880252361298, -0.004592436831444502, 0.04281873255968094, -0.016374265775084496, -0.06799156963825226, 0.0033151658717542887, 0.01021191943436861, -0.04322294145822525, 0.0548948273062706, -0.04127371311187744, -0.13892827928066254, -0.05744605138897896, -0.13702262938022614, -0.13099293410778046, 0.009792258962988853, 0.10950756818056107, -0.12758702039718628, -0.13420437276363373], +br:[0.023418651893734932, 0.0035607069730758667, -0.050627242773771286, -0.09992603212594986, -0.022210491821169853, 0.01210328284651041, 0.06344597041606903, -0.014069241471588612, -0.039268311113119125, -0.07595974206924438, 0.024745825678110123, -0.07131298631429672, -0.012991415336728096, 0.11924421787261963, 0.03525376692414284, 0.0932750329375267, 0.10286327451467514, 0.03709792718291283, -0.051816824823617935, 0.06257892400026321, 0.07766954600811005, -0.08646733313798904, 0.05435468629002571, 0.07708974927663803, 0.006920481566339731, 0.03557627648115158, -0.019663093611598015, 0.01421801745891571, -0.049135517328977585, 0.05783411115407944, 0.06309270858764648, -0.07955959439277649, -0.027003763243556023, -0.08140638470649719, 0.0001114735787268728, -0.08125633001327515, -0.020822690799832344, 0.08939065039157867, 0.06626377254724503, -0.10786756128072739, 0.052466608583927155, 0.12265249341726303, 0.08721258491277695, -0.07865048199892044, -0.028619667515158653, -0.10678611695766449, 0.05337945371866226, 0.09196203947067261, -0.042202427983284, -0.036621060222387314, 0.026054544374346733, -0.009792291559278965, 0.041748046875, 0.07417215406894684, 0.02633282169699669, 0.04174228385090828, -0.13958612084388733, -0.06360545754432678, 0.03819253295660019, 0.03308432549238205, 0.04216462001204491, 0.0002507293247617781, 0.03542494401335716, 0.09546947479248047, 0.08984117209911346, -0.008158216252923012, -0.03195493295788765, 0.034918978810310364, 0.0031466661021113396, 0.021112285554409027, 0.017364107072353363, 0.05217823013663292, -0.02045031636953354, -0.03934609889984131, -0.03306968882679939, -0.11554095149040222, -0.033739615231752396, -0.12622570991516113, 0.06595546752214432, -0.057420533150434494, -0.06900781393051147, 0.01588384434580803, -0.0050349608063697815, 0.19521525502204895, 0.07187866419553757, -0.0758732333779335, 0.024028541520237923, -0.038100309669971466, -0.027954112738370895, 0.10839242488145828, 0.07030456513166428, -0.009428558871150017, -0.07338429987430573, -0.10307898372411728, -0.08505695313215256, 0.0405176617205143, -0.053489115089178085, -0.06898938864469528, -0.020098146051168442, 0.01572345942258835, -0.08671977370977402, -0.03187600523233414, -0.027932744473218918, 0.0732676163315773, -0.0689937025308609, -0.09725632518529892, 0.055682677775621414, 0.0807173028588295, -0.021871225908398628, -0.09008701145648956, 0.030601011589169502, 0.05304259434342384, -0.046488214284181595, -0.11595679819583893, 0.11456380784511566, -0.09038030356168747, -0.147251158952713, -0.04482317343354225, -0.05120120942592621, -0.10664663463830948, 0.04619988426566124, 0.005139060318470001, -0.06556747108697891, -0.05587552487850189, -0.17247281968593597, 0.05243935436010361, -0.0590100958943367, 0.01414012722671032, -0.047336746007204056, -0.05157133936882019, -0.003404563060030341, 0.01632181741297245, -0.042133837938308716, -0.09940429031848907, 0.04242797940969467, 0.008283793926239014, 0.014102378860116005, 0.036878086626529694, -0.06213471293449402, -0.1021571084856987, 0.06521893292665482, -0.11209208518266678, -0.14729592204093933, -0.010865590535104275, -0.07641174644231796, 0.02751997299492359, 0.007969285361468792, -0.032639097422361374, 0.00791411753743887, 0.19170509278774261, -0.034301113337278366, 0.08230000734329224, 0.056812770664691925, -0.09854982793331146, 0.1666923463344574, 0.05681735649704933, -0.02816545031964779, -0.006426922976970673, 0.07564633339643478, 0.010433272458612919, -0.13531574606895447, -0.03353572264313698, 0.01768331229686737, 0.1122550517320633, 0.09303253889083862, 0.026925034821033478, -0.08634929358959198, -0.010057746432721615, -0.031169360503554344, 0.036626964807510376, 0.023924563080072403, -0.03371395170688629, -0.059904348105192184, -0.1033734455704689, -0.06974215060472488, 0.013641399331390858, 0.06228654459118843, 0.04334698244929314, 0.20413647592067719, 0.021735377609729767, 0.10081981867551804, -0.06986391544342041, -0.12791740894317627, 0.003738351399078965, -0.19011886417865753, 0.05201948434114456, -0.028935199603438377, -0.05674929916858673, 0.09460657089948654, 0.04529649764299393, -0.00976718869060278, 0.10626744478940964, -0.06206796318292618, 0.011857242323458195, -0.02393443137407303, -0.04717004671692848, -0.043087005615234375, -0.21061569452285767, -0.011506534181535244, 0.06883574277162552, 0.06838585436344147, -0.06444219499826431, 0.08931472152471542, 0.005361492745578289, -0.09673340618610382, -0.04841601476073265, -0.05360044911503792, -0.006958512589335442, 0.014939582906663418, 0.06206208094954491, -0.05204654857516289, -0.03330577164888382, -0.05116158351302147, 0.10090711712837219, -0.10115347057580948, -0.05440165847539902, 0.051518943160772324, 0.07368321716785431, 0.161895290017128, 0.1521613597869873, 0.09092574566602707, -0.01960953325033188, 0.005783045664429665, 0.041460368782281876, 0.01977650262415409, 0.06716372817754745, -0.08299660682678223, -0.056296806782484055, 0.09076336771249771, 0.029741497710347176, 0.05800675228238106, 0.047121018171310425, -0.03075825609266758, 0.0834292322397232, -0.04137074202299118, -0.14901602268218994, 0.05594170466065407, -0.08755573630332947, -0.01343747042119503, -0.0014612689847126603, 0.07130367308855057, 0.06401263922452927, 0.024726256728172302, -0.01807798258960247, 0.13540630042552948, 0.04510411620140076, -0.009052889421582222, -0.09282136708498001, -0.07973909378051758, -0.005548060405999422, -0.012548452243208885, -0.09158893674612045, -0.050321970134973526, 0.09072601795196533, 0.015486498363316059, 0.022383732721209526, -0.07399270683526993, 0.08246780931949615, 0.06763651967048645, 0.04791664704680443, 0.01977691240608692, -0.0018668395932763815, -0.14598160982131958, -0.057096485048532486, -0.06775328516960144, -0.0002568863274063915, -0.0742776021361351, -0.0028819022700190544, -0.051301900297403336, 0.14452260732650757, -0.0011618692660704255, -0.044571422040462494, -0.0018601675983518362, 0.023049456998705864, -0.0026866907719522715, 0.01425531879067421, 0.01026228442788124, 0.012126028537750244, -0.007632107008248568, 0.0597587525844574, -0.028103122487664223, 0.04454512149095535, 0.09841769188642502, -0.16343632340431213, 0.08478116244077682, -0.033729299902915955, -0.09530209004878998, 0.019813183695077896, -0.08342743664979935, -0.040041059255599976, -0.04403487965464592, 0.11794399470090866, -0.03325242921710014, 0.015372161753475666, 0.031057609245181084, 0.026126744225621223, -0.007780601270496845, 0.084804967045784, -0.027143117040395737, -0.020331555977463722], +call:[0.025583619251847267, 0.004058792721480131, 0.07826688140630722, -0.10527831315994263, -0.033036213368177414, -0.05928553268313408, 0.06641945987939835, 0.03855353593826294, -0.043764326721429825, -0.09505587071180344, 0.03413645550608635, -0.09486818313598633, -0.1301322728395462, 0.12605056166648865, 0.005690705496817827, -0.09822843223810196, 0.0976940169930458, 0.047744397073984146, -0.058198511600494385, -0.025860197842121124, -0.0020539923571050167, 0.0386938601732254, 0.08413603156805038, 0.1043575257062912, -0.03184603527188301, 0.03809899091720581, -0.023317744955420494, 0.08964082598686218, 0.04800623282790184, 0.027065590023994446, 0.1094454824924469, -0.045346327126026154, -0.025801008567214012, 0.12537184357643127, 0.020946422591805458, -0.04517712444067001, -0.03368085250258446, 0.0035841462668031454, -0.10877826809883118, -0.115861676633358, 0.0519886240363121, 0.13149262964725494, 0.033517900854349136, -0.05275459960103035, 0.04679451882839203, 0.1438213735818863, 0.06322840601205826, 0.09703269600868225, -0.042915042489767075, -0.02732202410697937, 0.0458100289106369, 0.013341766782104969, 0.04885337874293327, 0.06766458600759506, 0.017386341467499733, -0.13970276713371277, 0.002293960191309452, -0.05283248424530029, 0.020345475524663925, 0.03632305935025215, 0.044201359152793884, -0.06158590316772461, -0.07295528799295425, 0.10879571735858917, 0.11724814027547836, 0.014046996831893921, -0.041553810238838196, -0.10250232368707657, 0.043019749224185944, 0.08615059405565262, 0.02092081494629383, 0.055212266743183136, 0.09994982928037643, 0.02278604358434677, 0.004818847868591547, 0.1112576276063919, -0.009198037907481194, -0.10059145838022232, 0.07159839570522308, -0.20243331789970398, -0.08664518594741821, 0.0072278473526239395, 0.17812223732471466, 0.10364875197410583, -0.10643541812896729, -0.07680677622556686, 0.023237669840455055, 0.07209955155849457, -0.02727419137954712, 0.1162741407752037, 0.0826215147972107, 0.11262135207653046, -0.07140210270881653, -0.011492042802274227, -0.0858306735754013, 0.11712866276502609, -0.056423332542181015, 0.03179189935326576, 0.005785600747913122, 0.1028708666563034, -0.09469101577997208, 0.062498778104782104, -0.08367085456848145, -0.06329894810914993, -0.07419702410697937, 0.09538264572620392, 0.0412675216794014, 0.08531228452920914, -0.06685799360275269, 0.12348799407482147, -0.0008550542988814414, 0.056981757283210754, 0.1220892146229744, -0.1320546418428421, -0.042469851672649384, -0.08480653911828995, 0.04208557680249214, -0.045691877603530884, -0.052815791219472885, 0.12099761515855789, 0.046516235917806625, -0.10933049768209457, -0.0704069510102272, 0.10713030397891998, -0.23496802151203156, 0.05709234997630119, -0.06209464743733406, 0.01600705459713936, -0.06008799746632576, -0.0029340824112296104, 0.0010409493697807193, -0.11907949298620224, -0.06171239912509918, -0.09594039618968964, 0.03332198038697243, -0.0019197321962565184, 0.014727400615811348, 0.03941970691084862, -0.06775394082069397, -0.018767161294817924, 0.11312443763017654, -0.026575293391942978, 0.028234316036105156, -0.09022218734025955, -0.08068052679300308, -0.13418221473693848, -0.14699263870716095, -0.035753827542066574, 0.009353716857731342, 0.08431670069694519, -0.03578536584973335, 0.09670808911323547, 0.07741652429103851, -0.03178391233086586, 0.01340150274336338, 0.06213086098432541, -0.01813798025250435, 0.023827556520700455, 0.07854237407445908, 0.01944173499941826, 0.10510006546974182, -0.011506333947181702, 0.017560886219143867, 0.1299019753932953, 0.09805186092853546, -0.04582860693335533, 0.09465283900499344, 0.04923175647854805, -0.05249638110399246, -0.05986424908041954, 0.09985657781362534, -0.03478990122675896, -0.048127543181180954, -0.06744232028722763, -0.07388543337583542, 0.0503741092979908, -0.09590232372283936, 0.09874022006988525, -0.09640032052993774, -0.05296773836016655, 0.0987677201628685, 0.04777323827147484, 0.07252458482980728, 0.07403835654258728, 0.13388283550739288, 0.0701465755701065, 0.045999422669410706, -0.0469474233686924, 0.10666662454605103, 0.03919564187526703, -0.18765410780906677, 0.1113445982336998, 0.11766955256462097, 0.06027091667056084, 0.009788730181753635, -0.033059634268283844, -0.06625797599554062, -0.09178376197814941, 0.01799497939646244, 0.06945214420557022, 0.06988932937383652, 0.02959662675857544, -0.06594239920377731, 0.009836048819124699, -0.10937988758087158, -0.058157701045274734, -0.01029061246663332, -0.0033507337793707848, 0.013989579863846302, 0.06559359282255173, 0.01102566346526146, 0.04659505560994148, -0.05473797023296356, -0.09741218388080597, -0.006327402777969837, 0.10603927820920944, -0.026935860514640808, 0.07887870818376541, 0.033197853714227676, -0.10879839956760406, 0.08448775112628937, -0.06190171837806702, -0.023997465148568153, -0.12020658701658249, -0.056867633014917374, 0.007623194716870785, -0.08784148842096329, -0.05067205801606178, -0.010594509541988373, -0.053519658744335175, -0.15754027664661407, -0.0838795080780983, -0.03352157771587372, 0.04418974369764328, -0.03797927126288414, 0.05183137208223343, 0.026673074811697006, 0.00021907292830292135, 0.11425407975912094, -0.04632582515478134, 0.07803831994533539, 0.0695013776421547, 0.03118051029741764, 0.08411838859319687, 0.12449431419372559, 0.048246968537569046, 0.009458955377340317, -0.039609335362911224, 0.13441595435142517, -0.03208940103650093, -0.023941535502672195, 0.1377030611038208, -0.053441110998392105, -0.0008206201018765569, 0.026973692700266838, -0.07290834933519363, -0.06469810009002686, 0.015564887784421444, 0.07176019996404648, 0.04171335697174072, -0.07978568226099014, -0.010742312297224998, -0.0913693979382515, 0.032261595129966736, 0.14431792497634888, 0.0005025229183956981, -0.07555881142616272, -0.0015628377441316843, -0.07933573424816132, -0.028793666511774063, 0.006867976393550634, -0.0541742704808712, 0.03471667692065239, 0.023921387270092964, 0.001888051861897111, 0.028787050396203995, 0.015463464893400669, -0.07018160074949265, 0.005515039898455143, -0.01903596892952919, -0.07608591020107269, 0.07952885329723358, 0.06879426538944244, 0.09730938076972961, -0.014028897508978844, 0.10680824518203735, -0.10374195128679276, 0.08473458141088486, -0.08554539829492569, -0.03828367218375206, -0.014909426681697369, -0.09015916287899017, 0.042241305112838745, 0.01670396886765957, -0.09891322255134583, -0.0020091861952096224, 0.006629804614931345, -0.008771074935793877, -0.11071112006902695, 0.13830846548080444], +constant:[0.086833156645298, 0.07905887812376022, 0.032537419348955154, -0.02860494703054428, 0.05486093461513519, -0.07771023362874985, 0.0013140685623511672, 0.09943307191133499, -0.0741354450583458, -0.050668295472860336, -0.02923753671348095, -0.031134650111198425, 0.017780445516109467, 0.012967264279723167, 0.10032015293836594, -0.07516863197088242, 0.02019653096795082, -0.031369492411613464, 0.012072197161614895, 0.005034550093114376, -0.08211366087198257, -0.047827888280153275, -0.09468399733304977, -0.04904375597834587, 0.09268981218338013, 0.11581023037433624, -0.04986271634697914, -0.1547650843858719, -0.14655344188213348, 0.09303523600101471, -0.07190774381160736, -0.11057229340076447, -0.07795695960521698, 0.07027172297239304, -0.002478922251611948, 0.0512174554169178, -0.1582401841878891, -0.06810566782951355, -0.022918082773685455, -0.010951533913612366, 0.031191842630505562, 0.0917816087603569, -0.033023979514837265, -0.04196476936340332, 0.030191609635949135, 0.03430219367146492, 0.1041698083281517, -0.08869048207998276, 0.02905133366584778, 0.0339369922876358, -0.09337744861841202, -0.027534576132893562, -0.007753969635814428, -0.03396269679069519, 0.15046897530555725, 0.0873543843626976, 0.054456233978271484, 0.06600607186555862, -0.016093330457806587, 0.08569099754095078, -0.052484434098005295, 0.09215287864208221, -0.03430039435625076, -0.0691925436258316, -0.16162055730819702, -0.025566261261701584, -0.11704451590776443, -0.06680918484926224, -0.0012184022925794125, -0.02792174555361271, -0.05063989758491516, 0.008301248773932457, 0.07184138894081116, -0.059192076325416565, -0.04028056189417839, 0.05117843300104141, -0.038738105446100235, 0.05060046538710594, 0.059081465005874634, -0.11310318112373352, -0.046572066843509674, 0.09570619463920593, 0.09533005207777023, -0.020794076845049858, -0.08414240181446075, -0.05324720963835716, -0.01766442134976387, -0.14686831831932068, 0.0028416342101991177, -0.01673966646194458, -0.0024051712825894356, 0.09134232252836227, 0.019166996702551842, 0.06925047934055328, -0.020925359800457954, -0.09048386663198471, 0.15630421042442322, -0.10010617971420288, 0.019049467518925667, -0.09264182299375534, -0.017390599474310875, 0.08252877742052078, 0.06424509733915329, -0.0627281591296196, 0.014272022061049938, 0.07230685651302338, 0.06958968937397003, -0.011046190746128559, -0.028645796701312065, 0.09596306085586548, 0.013756501488387585, 0.0853741243481636, 0.08454488962888718, 0.10790710151195526, -0.014261267147958279, 0.10651320964097977, -0.048586566001176834, 0.034983232617378235, -0.14982004463672638, 0.011002711951732635, 0.10020685195922852, -0.06550056487321854, -0.12600456178188324, 0.08386529982089996, 0.02484244480729103, 0.019677402451634407, -0.0929025337100029, 0.07071958482265472, 0.00716864038258791, -0.021432628855109215, 0.06520089507102966, -0.09525904804468155, 0.039547137916088104, -0.0035946746356785297, 0.11536338180303574, -0.020290687680244446, 0.13842152059078217, -0.016071410849690437, 0.15730690956115723, -0.04320240393280983, -0.1379183977842331, 0.07633745670318604, 0.03821925073862076, -0.10918090492486954, -0.01233967486768961, 0.04228675737977028, -0.08575578033924103, 0.0015451924409717321, -0.11227633059024811, -0.09813491255044937, -0.1299901008605957, 0.03675996884703636, -0.10496934503316879, 0.02337341010570526, -0.008264290168881416, 0.030170181766152382, -0.08072568476200104, -0.12844303250312805, 0.03766559064388275, 0.08147289603948593, 0.1274930238723755, 0.06570916622877121, 0.07918179780244827, 0.015481647104024887, -0.0032936406787484884, -0.008130284026265144, 0.05051112547516823, 0.036178700625896454, -0.07821320742368698, 0.11631596088409424, 0.0851777046918869, -0.11860820651054382, 0.13811644911766052, -0.011765426024794579, -0.040835823863744736, -0.0994047299027443, 0.11745652556419373, 0.056949447840452194, -0.10321056097745895, -0.045996107161045074, -0.04110829904675484, 0.1344308853149414, 0.09613516181707382, 0.07153087854385376, 0.023556919768452644, 0.034235045313835144, 0.004673569463193417, -0.09608126431703568, 0.05257736146450043, -0.037617143243551254, -0.14072397351264954, 0.029274972155690193, -0.1380576342344284, -0.1267809122800827, -0.02094237320125103, 0.07824497669935226, 0.0662207379937172, -0.04904693365097046, -0.160491943359375, -0.005962908733636141, 0.10777505487203598, 0.06827086955308914, -0.030333345755934715, -0.09438163042068481, 0.06624706089496613, -0.02778952196240425, -0.0289665125310421, -0.038397643715143204, -0.04773833602666855, 0.01823233626782894, -0.021688243374228477, -0.06703606992959976, 0.14008483290672302, -0.06005656346678734, -0.001026822836138308, 0.09331261366605759, -0.032276131212711334, -0.051956336945295334, -0.005205594003200531, -0.07708358764648438, -0.005736285354942083, 0.13077284395694733, 0.12160662561655045, -0.08598974347114563, 0.10019071400165558, -0.05061009153723717, 0.15569953620433807, 0.026399213820695877, -0.053631141781806946, -0.026497317478060722, -0.05733394995331764, 0.12346897274255753, -0.11322575062513351, -0.05091318488121033, -0.001989298965781927, 0.010078120045363903, 0.058215826749801636, -0.014253047294914722, 0.08483245223760605, 0.055922310799360275, 0.1379839926958084, 0.032080475240945816, -0.056383877992630005, 0.05781424418091774, 0.06524834036827087, 0.019128575921058655, 0.12357455492019653, -0.06200884282588959, 0.09537508338689804, -0.0617784708738327, 0.10070044547319412, 0.08180876821279526, -0.09573136270046234, -0.06743656098842621, -0.13160695135593414, 0.03581485152244568, 0.01337006501853466, -0.10819994658231735, -0.05797174572944641, 0.06767559051513672, 0.14691120386123657, -0.002618072321638465, -0.11777237802743912, 0.010785435326397419, 0.032723285257816315, 0.03527205437421799, 0.10456248372793198, 0.06229335069656372, -0.04207192361354828, -0.013288945890963078, -0.11683835089206696, 0.12827634811401367, -0.07265792787075043, 0.0557265505194664, -0.10313399881124496, -0.01596352830529213, -0.061164237558841705, -0.033554404973983765, -0.08372867107391357, -0.07802443951368332, -0.057844072580337524, 0.0019426551880314946, -0.08072356134653091, 0.01829354092478752, -0.042433034628629684, 0.07695481926202774, 0.08066746592521667, 0.040691010653972626, 0.11403944343328476, 0.03496207296848297, -0.06257922202348709, 0.04970068112015724, -0.06440979987382889, -0.11738046258687973, -0.06450306624174118, -0.07853075861930847, -0.0462263822555542, -0.004468325525522232, 0.01144963689148426, 0.10736135393381119], +extractelement:[0.11719922721385956, 0.04118815436959267, 0.042017579078674316, 0.08916604518890381, -0.04609997570514679, 0.15886731445789337, 0.07355165481567383, -0.04749910905957222, -0.0338563472032547, 0.07007324695587158, 0.03557291254401207, 0.06228618323802948, -0.04456384479999542, 0.12462275475263596, -0.016307823359966278, -0.03001367673277855, 0.01612216979265213, 0.05519634485244751, -0.11355015635490417, -0.02658943645656109, 0.061190783977508545, 0.0394284762442112, 0.09819681197404861, 0.11442234367132187, -0.05877211317420006, 0.08222087472677231, 0.13663418591022491, -0.12196578830480576, -0.09794249385595322, 0.1334223598241806, -0.006656679790467024, 0.03748428821563721, 0.11063647270202637, -0.106021448969841, 0.08625783771276474, -0.09423287957906723, -0.03785208612680435, -0.03361029550433159, 0.05444330349564552, -0.11504944413900375, 0.01848246343433857, -0.0060855308547616005, 0.15497539937496185, -0.06602095067501068, -0.0729890689253807, -0.08698993176221848, 0.06235837936401367, 0.09581650793552399, 0.09685751795768738, -0.05408650264143944, 0.08208964020013809, 0.12792955338954926, 0.04289641231298447, 0.07755789905786514, 0.033706288784742355, 0.003128498326987028, 0.04304744303226471, -0.03567618876695633, -0.05154351517558098, -0.04396303743124008, 0.04601270705461502, 0.035044752061367035, 0.04057668149471283, 0.11796127259731293, 0.11441943049430847, -0.0479658767580986, -0.03309739753603935, -0.10742689669132233, -0.04925575852394104, 0.025137323886156082, 0.016583235934376717, 0.019418401643633842, 0.010433651506900787, -0.09745877981185913, 0.07133273035287857, -0.07501646131277084, 0.11474883556365967, -0.028722193092107773, 0.06874048709869385, -0.01210847869515419, -0.032396335154771805, 0.04777147248387337, -0.012957868166267872, -0.043237440288066864, 0.040068257600069046, 0.040554482489824295, 0.06519167125225067, 0.07043980807065964, 0.03420713543891907, 0.16624775528907776, 0.10204090178012848, -0.03191451355814934, -0.0482989102602005, 0.01141850184649229, -0.08878221362829208, 0.01529452484101057, -0.044377706944942474, 0.00907331146299839, 0.07523218542337418, -0.06293061375617981, -0.09240096807479858, 0.12059811502695084, 0.006173302885144949, 0.07546214759349823, -0.07333989441394806, -0.00112431519664824, 0.05656512826681137, 0.10026700049638748, 0.16148288547992706, 0.11148619651794434, 0.04639364778995514, 0.05666668713092804, -0.05218704789876938, -0.13030889630317688, -0.02781299687922001, -0.05778993293642998, -0.12812606990337372, -0.04434909299015999, -0.05234666168689728, -0.10968602448701859, 0.06086267903447151, 0.08741472661495209, 0.01011573150753975, -0.08977728337049484, -0.06033787876367569, 0.11476972699165344, 0.05292795971035957, 0.06193017214536667, -0.049428120255470276, -0.09027931839227676, -0.006364875007420778, -0.021848438307642937, 0.0728706493973732, -0.12172587215900421, 0.0764848068356514, -0.056265946477651596, 0.014632292091846466, 0.03785659000277519, 0.11325323581695557, 0.017643975093960762, 0.012424957938492298, -0.03875817731022835, 0.07280762493610382, 0.03715105727314949, -0.079152911901474, -0.12290507555007935, 0.06586990505456924, -0.035078879445791245, 0.02253723330795765, 0.020344622433185577, -0.07195156812667847, 0.10750966519117355, 0.1230023056268692, -0.1118415966629982, -0.14081907272338867, -0.018632283434271812, -0.02668800763785839, 0.03573286905884743, 0.07035598158836365, -0.03611580282449722, -0.05063457414507866, -0.046760253608226776, 0.022510454058647156, 0.12970907986164093, 0.09730326384305954, -0.013158047571778297, 0.05735895037651062, -0.012375121004879475, -0.12164230644702911, -0.032097846269607544, 0.09849974513053894, -0.05826479569077492, -0.036308255046606064, -0.07961349189281464, -0.07287828624248505, 0.04942746087908745, -0.09703168272972107, -0.03262887895107269, 0.06264229863882065, -0.0025023706257343292, 0.06620197743177414, 0.05836878716945648, -0.039313189685344696, 0.024058375507593155, 0.09100900590419769, 0.09298106282949448, 0.019196823239326477, -0.057028766721487045, 0.06973492354154587, 0.012564440257847309, 0.012476476840674877, 0.13708148896694183, -0.06426624208688736, -0.03192462399601936, -0.03393663093447685, 0.025477787479758263, -0.03144080191850662, 0.052454620599746704, 0.02532096765935421, 0.07356186956167221, 0.0730341300368309, -0.04640025645494461, -0.05506156384944916, 0.042855944484472275, 0.08450443297624588, -0.06751731783151627, -0.06469905376434326, -0.07368813455104828, 0.014361211098730564, 0.036682892590761185, 0.08940506726503372, -0.061701394617557526, -0.055592432618141174, 0.09333895146846771, 0.14337582886219025, -0.009857961907982826, 0.051282696425914764, 0.07242359220981598, 0.023223159834742546, 0.17815285921096802, 0.10117173939943314, 0.11437435448169708, -0.023831313475966454, -0.11436997354030609, 0.05588778108358383, -0.07562975585460663, -0.08662228286266327, -0.10690028965473175, -0.05945607274770737, 0.0037171447183936834, 0.11883436143398285, -0.10388098657131195, -0.03232058882713318, 0.09046606719493866, 0.03173922002315521, 0.01884007267653942, -0.05569121241569519, 0.0870194286108017, -0.09595314413309097, -0.16398130357265472, 0.07652007788419724, 0.06869932264089584, 0.03629539906978607, -0.08115500211715698, -0.015882128849625587, 0.02186807058751583, 0.0448312908411026, 0.023446476086974144, 0.010644127614796162, -0.11706916242837906, -0.1246727705001831, 0.026401927694678307, -0.048451974987983704, 0.10688517987728119, -0.015308119356632233, -0.008253410458564758, -0.11616051942110062, -0.051844317466020584, 0.09885548800230026, 0.002808208577334881, -0.10305163264274597, -0.03387124463915825, 0.07904453575611115, 0.05990482121706009, 0.02855110540986061, 0.002709120512008667, -0.0295554231852293, -0.029670076444745064, -0.004039993975311518, -0.07593359053134918, -0.029998555779457092, -0.05315007269382477, 0.04535543546080589, 0.023769592866301537, 0.03886047750711441, -0.07079552859067917, 0.11084377020597458, 0.02164652571082115, 0.028260359540581703, -0.014829061925411224, 0.0910811722278595, 0.09565053135156631, -0.11402224004268646, -0.09083033353090286, -0.10649899393320084, -0.15119101107120514, -0.07542183250188828, 0.007797441445291042, -0.04372546449303627, -0.010189183987677097, -0.010350712575018406, -0.1409246176481247, -0.01361892744898796, 0.017300797626376152, -0.07335009425878525, 0.043665528297424316, -0.0151679003611207, 0.04420950263738632, -0.027542129158973694, 0.12600280344486237], +extractvalue:[-0.07168877869844437, 0.00482132425531745, -0.010766517370939255, -0.15098614990711212, 0.08650647103786469, 0.08508437126874924, 0.08193862438201904, -0.08202571421861649, -0.030047545209527016, -0.013441314920783043, 0.05630522221326828, 0.1479695737361908, -0.15157373249530792, 0.1357714980840683, -0.002956506796181202, 0.047650374472141266, -0.14012032747268677, -0.1637040227651596, -0.06919221580028534, -0.12315557897090912, 0.14781537652015686, -0.09953423589468002, 0.08165545016527176, -0.11562066525220871, -0.12134715169668198, 0.020194878801703453, 0.0717892125248909, 0.09526868909597397, 0.006663472857326269, 0.0963645800948143, 0.02164531871676445, 0.11899353563785553, -0.1352348029613495, 0.018229354172945023, 0.093846395611763, 0.15180261433124542, 0.0015139433089643717, -0.04907771944999695, -0.08006416261196136, 0.03929123654961586, 0.0338902585208416, 0.07338546961545944, 0.017819106578826904, -0.05903415009379387, -0.09671857208013535, 0.0034136022441089153, -0.024333899840712547, 0.13661393523216248, -0.007275562267750502, -0.07298806309700012, 0.13421842455863953, -0.03647976368665695, 0.04799485579133034, 0.000909091962967068, 0.13201750814914703, 0.04434046894311905, 0.06953216344118118, 0.022686971351504326, 0.11170624941587448, -0.050063058733940125, 0.046409670263528824, 0.02610601857304573, 0.032745715230703354, 0.1139165535569191, 0.12361684441566467, -0.1449926644563675, -0.04114993289113045, 0.08780048042535782, -0.11546441912651062, 0.12952929735183716, 0.022352760657668114, 0.0574769526720047, -0.0943620577454567, -0.07582762837409973, 0.15069948136806488, -0.006694144103676081, -0.09609313309192657, 0.03724721446633339, 0.07554300874471664, 0.04852444306015968, -0.07561620324850082, 0.01603982411324978, -0.05968479439616203, 0.030852125957608223, 0.0663023367524147, 0.03681361675262451, 0.12180548161268234, 0.056645724922418594, -0.12399560958147049, -0.005212258547544479, -0.04173810034990311, 0.06574423611164093, -0.020454654470086098, -0.08229050785303116, -0.09094136208295822, -0.03005698136985302, -0.06068684905767441, -0.04856964200735092, 0.029302416369318962, -0.0015570250106975436, -0.09596416354179382, 0.12628653645515442, -0.0713905394077301, 0.08034908771514893, -0.14516156911849976, -0.11753129959106445, -0.09252209216356277, 0.08475703746080399, 0.051486268639564514, 0.03282276913523674, 0.007624209392815828, 0.13538336753845215, -0.04420071095228195, -0.13802841305732727, -0.04129570350050926, -0.1502460241317749, 0.011574250645935535, -0.15784496068954468, 0.13236010074615479, 0.0557406060397625, 0.049600373953580856, 0.14389774203300476, -0.06519383192062378, -0.14862971007823944, 0.020091436803340912, -0.005440752953290939, 0.09033863246440887, -0.004995850380510092, -0.023774852976202965, -0.02956077829003334, -0.04122181236743927, 0.00020151033822912723, 0.09764400124549866, 0.02698991447687149, -0.14914001524448395, 0.037682898342609406, 0.04444439709186554, 0.09799075126647949, 0.13462871313095093, 0.05435379967093468, 0.012686308473348618, -0.022817514836788177, 0.021274317055940628, -0.08903564512729645, 0.08273360878229141, 0.013019760139286518, -0.02535347081720829, -0.050062477588653564, 0.04274389520287514, 0.035865455865859985, -0.06796931475400925, 0.022016827017068863, -0.07143641263246536, -0.03320130705833435, 0.05383240431547165, 0.06383758783340454, -0.03143658861517906, 0.08976203948259354, 0.07991764694452286, -0.13026149570941925, 0.02955668792128563, -0.010124730877578259, 0.09490515291690826, 0.041932351887226105, 0.032640427350997925, -0.04647039994597435, 0.015039670281112194, -0.011513867415487766, -0.0580446682870388, -0.09137940406799316, 0.03446085751056671, -0.06014837697148323, -0.024419203400611877, -0.03034360520541668, -0.07779291272163391, -0.12926794588565826, 0.005909590050578117, -0.09179897606372833, -0.01194532960653305, 0.1433660238981247, 0.050511617213487625, -0.11983389407396317, 0.016357211396098137, 0.021130522713065147, -0.03198026120662689, -0.07002811878919601, -0.008931249380111694, -0.06626823544502258, 0.1197306215763092, 0.0401608906686306, 0.025554422289133072, 0.026350727304816246, -0.02705167979001999, -0.1281329095363617, 0.06763032078742981, -0.1301632672548294, 0.06608539074659348, -0.017081795260310173, 0.01907491125166416, -0.07425731420516968, 0.06644695997238159, -0.04048852622509003, -0.03648656979203224, -0.06746035069227219, -0.10685018450021744, 0.06390996277332306, -0.0852634385228157, -0.08652467280626297, 0.014715233817696571, 0.08716284483671188, -0.11207429319620132, -0.008933750912547112, -0.059080637991428375, -0.04424663633108139, -0.07221253216266632, 0.16082817316055298, -0.03623822331428528, -0.037582166492938995, -0.09510772675275803, -0.005139328073710203, 0.0806315690279007, -0.0718156024813652, -0.012431712821125984, 0.018186332657933235, 0.07604771107435226, 0.12604933977127075, 0.09728071093559265, -0.05429026111960411, 0.09347237646579742, 0.055024612694978714, 0.0644855797290802, -0.0871151015162468, -0.03381172567605972, 0.0838170126080513, -0.04476718232035637, 0.0036741679068654776, -0.06082127243280411, -0.044540002942085266, -0.010827050544321537, -0.08849286288022995, 0.08182509243488312, 0.011737214401364326, 0.027960412204265594, 0.0039041892159730196, 0.00601350050419569, 0.031978871673345566, -0.013883057981729507, -0.05345013365149498, 0.02066553756594658, 0.06100936233997345, -0.14099156856536865, -0.005845728795975447, -0.028520861640572548, 0.0930161103606224, -0.11412615329027176, -0.0056404005736112595, 0.0338248685002327, -0.0017385139362886548, 0.07478060573339462, -0.005292617715895176, -0.02050202153623104, -0.10182465612888336, 0.03422136977314949, -0.06239505484700203, 0.08022473007440567, -0.013521102257072926, 0.09673172980546951, -0.03888194262981415, -0.0851883813738823, 0.07595625519752502, -0.14060892164707184, -0.1539633423089981, 0.0300705898553133, 0.12923569977283478, 0.0998842790722847, 0.006607114803045988, 0.12396591901779175, 0.02902637980878353, -0.03259275481104851, 0.013284069485962391, -0.03365451842546463, -0.11944553256034851, 0.10946094244718552, 0.041229307651519775, -0.14401505887508392, -0.11728182435035706, -0.09599482268095016, 0.1291060447692871, 0.1282562017440796, 0.08325248956680298, -0.01122109591960907, -0.013291709125041962, 0.10237893462181091, 0.01769918017089367, -0.10294047743082047, 0.07802467793226242, -0.005927150137722492, 0.023784570395946503, -0.03097601979970932, -0.10108958184719086], +fadd:[0.04893701523542404, 0.04085341468453407, -0.029731757938861847, -0.12206211686134338, -0.03547556698322296, 0.14406800270080566, 0.0623064748942852, -0.05992589145898819, -0.051228467375040054, 0.007478236220777035, 0.03324063494801521, 0.08504853397607803, -0.022784708067774773, 0.12287508696317673, -0.04951872676610947, -0.0289913322776556, 0.030096136033535004, 0.055188242346048355, -0.11933858692646027, -0.09788385033607483, 0.07832027226686478, -0.049623869359493256, 0.07401679456233978, 0.0315265879034996, -0.053423117846250534, 0.06717289984226227, 0.13692349195480347, -0.11996735632419586, -0.03830616921186447, 0.1360272914171219, 0.10489879548549652, -0.04589923471212387, 0.10648857057094574, 0.005571735557168722, 0.05953497812151909, -0.0850737914443016, -0.0327707938849926, 0.0027809618040919304, 0.04675350338220596, -0.11369851976633072, 0.05468444898724556, -0.03736934810876846, 0.06923417747020721, -0.09170512855052948, 0.019041260704398155, 0.08863402158021927, 0.003637250978499651, 0.09396045655012131, 0.16099730134010315, -0.09687373042106628, -0.0387306772172451, 0.09923781454563141, 0.055858809500932693, 0.06633761525154114, 0.09970007836818695, 0.0019496252061799169, 0.08388415724039078, -0.20474755764007568, 0.02115596830844879, 0.01039381418377161, 0.044619690626859665, 0.01996552012860775, -0.0096890889108181, 0.10629510879516602, 0.1186291053891182, -0.013070078566670418, -0.029558027163147926, -0.10812853276729584, -0.04222040995955467, 0.01747870072722435, 0.02275795489549637, -0.00716446852311492, -0.00989292748272419, -0.00238621374592185, -0.11328516155481339, 0.06539665907621384, -0.0189956147223711, -0.03219292685389519, 0.012016531080007553, -0.17958681285381317, -0.029897505417466164, 0.04735509678721428, -0.005061248783022165, 0.042709849774837494, 0.0324428416788578, -0.05463200807571411, 0.022468185052275658, 0.03983721137046814, -0.029753301292657852, 0.17491351068019867, 0.07596773654222488, 0.09612025320529938, -0.06949853152036667, 0.09207586944103241, -0.11269725114107132, 0.11293265223503113, -0.05374428257346153, 0.08884964138269424, 0.054508503526449203, -0.06022466719150543, -0.08751814812421799, -0.1214175894856453, -0.09360978752374649, 0.07455091923475266, 0.044937971979379654, -0.003589509753510356, 0.04538874700665474, 0.03489214554429054, -0.04900487884879112, 0.043787844479084015, 0.05781250074505806, 0.05754236876964569, -0.06666349619626999, -0.12772011756896973, 0.09062305092811584, -0.09312628209590912, 0.14872334897518158, -0.03562474623322487, -0.0379798524081707, -0.008058374747633934, 0.04532204195857048, -0.0794450044631958, 0.09414488077163696, -0.09328928589820862, 0.07139231264591217, -0.04731174185872078, -0.06027057021856308, 0.06990577280521393, -0.06699804216623306, -0.06316528469324112, -0.013074531219899654, -0.07136259973049164, -0.04464321210980415, -0.1329471468925476, 0.08845924586057663, -0.06742626428604126, 0.01469553541392088, 0.038618121296167374, -0.06913542002439499, 0.01757942885160446, -0.005193854682147503, 0.12310557067394257, -0.0500168576836586, -0.027614226564764977, -0.0814141258597374, 0.048363275825977325, 0.004571478348225355, -0.03522007539868355, 0.03416509926319122, -0.022436540573835373, -0.12921394407749176, 0.08921246975660324, -0.023690173402428627, -0.13120613992214203, -0.017565999180078506, 0.00429256958886981, -0.14032477140426636, 0.03281822428107262, 0.044491156935691833, -0.009799735620617867, -0.05308118462562561, -0.11305214464664459, 0.022334910929203033, 0.12549740076065063, 0.09603987634181976, 0.0926547721028328, -0.03827555105090141, -0.009153146296739578, -0.08130331337451935, -0.01614704169332981, 0.09647738188505173, -0.03452621027827263, -0.11921588331460953, -0.07890206575393677, -0.0720042958855629, 0.028448790311813354, -0.019991222769021988, -0.03691943362355232, -0.101163350045681, 0.022835098206996918, 0.16661712527275085, 0.04817850887775421, 0.08350381255149841, 0.02430354617536068, -0.0066657522693276405, 0.09296394884586334, 0.048947643488645554, -0.05883370339870453, 0.028757518157362938, 0.019517695531249046, 0.08392892777919769, 0.14217844605445862, -0.06817364692687988, 0.0484451986849308, 0.03432188555598259, -0.14439460635185242, -0.04249463602900505, -0.09631466865539551, 0.00971625279635191, -0.051976922899484634, 0.11895979195833206, 0.07460770010948181, 0.08493823558092117, 0.04641136899590492, -0.10597753524780273, -0.07609729468822479, -0.09771689027547836, -0.011710988357663155, 0.012967003509402275, 0.039978399872779846, 0.011218072846531868, -0.0647614374756813, -0.05587870627641678, 0.10529224574565887, 0.06615953147411346, 0.042793598026037216, 0.0514906607568264, 0.07780279219150543, 0.08097177743911743, -0.0947902500629425, 0.09130533784627914, 0.1057397723197937, -0.013842636719346046, 0.01341937854886055, 0.024287626147270203, 0.06672834604978561, -0.08645854145288467, -0.09979511052370071, 0.042281053960323334, 0.012363708578050137, 0.09956803917884827, -0.10200048983097076, -0.03249474987387657, 0.09219977259635925, -0.0246711578220129, -0.013007679022848606, 0.06405550241470337, 0.1049252450466156, -0.12846046686172485, 0.030277706682682037, -0.0055902376770973206, 0.06597581505775452, 0.030869347974658012, 0.06825917214155197, 0.12215181440114975, 0.04650666564702988, -0.08753620833158493, -0.06777825206518173, -0.06260782480239868, -0.0009760294924490154, -0.01211548876017332, -0.0358036570250988, -0.053050629794597626, 0.1054781898856163, -0.018597226589918137, -0.012092122808098793, -0.07597256451845169, -0.04533941671252251, 0.0971999540925026, -0.06591419130563736, -0.02486877143383026, 0.02271115779876709, 0.029480520635843277, 0.03942672163248062, -0.04160231724381447, -0.00021981977624818683, -0.017146943137049675, -0.04496100917458534, 0.0011729634134098887, 0.0542307123541832, 0.052936457097530365, 0.021993933245539665, 0.04318125545978546, 0.10094723105430603, 0.03686930239200592, -0.06023992970585823, -0.010949763469398022, 0.10822323709726334, 0.018171630799770355, 0.07183822989463806, 0.08585076034069061, 0.08108502626419067, -0.1162409782409668, 0.06690632551908493, 0.0030667055398225784, 0.029696308076381683, 0.03702734038233757, -0.12110297381877899, -0.03810808062553406, -0.018619807437062263, -0.04124704748392105, -0.05011517181992531, 0.10862201452255249, 0.07998006045818329, -0.0294351689517498, 0.03235125541687012, -0.00918610580265522, -0.10051806271076202, -0.02715957909822464, -0.0007939705974422395], +fcmp:[-0.003107186406850815, 0.03906586021184921, -0.04714353010058403, 0.06355387717485428, -0.04451527073979378, -0.046629637479782104, 0.04268977418541908, -0.044826339930295944, -0.1045958399772644, -0.0016071762656792998, 0.038141634315252304, 0.022144285961985588, -0.03888674080371857, 0.1270812749862671, -0.04115832969546318, 0.0004565907292999327, 0.008405446074903011, 0.057690780609846115, -0.12963266670703888, 0.03367970138788223, 0.07983646541833878, 0.07885470241308212, 0.05724109336733818, -0.011023343540728092, -0.037701793015003204, 0.045655738562345505, 0.14144302904605865, -0.11978524923324585, 0.03585512563586235, 0.12911944091320038, 0.06389743834733963, -0.008118361234664917, 0.11516015976667404, -0.044117603451013565, 0.042196474969387054, -0.08033448457717896, -0.0370139479637146, 0.01665441319346428, -0.06419981271028519, -0.11781089007854462, 0.05807140842080116, 0.07618541270494461, 0.015165816992521286, -0.0963226929306984, 0.01759910024702549, 0.0796482190489769, 0.04180118441581726, 0.09773784875869751, 0.10956358164548874, -0.05527561530470848, -0.02852189727127552, 0.08380091935396194, 0.04144331440329552, 0.0667572021484375, 0.09268511086702347, 0.11527397483587265, -0.020222822204232216, 0.02559618651866913, 0.04954023286700249, -0.022819381207227707, 0.047681521624326706, -0.03200182691216469, -0.12007752805948257, 0.1206807792186737, 0.11945206671953201, -0.004326843190938234, -0.03356632962822914, -0.10615657269954681, -0.022989928722381592, 0.01884419284760952, 0.02676469460129738, -0.008906162343919277, -0.012562823481857777, -0.00629048515111208, -0.1488131731748581, -0.21473337709903717, 0.0028093119617551565, -0.0055884309113025665, 0.06959670782089233, 0.04444795474410057, -0.020027386024594307, 0.04902295023202896, -0.002265673829242587, -0.034321874380111694, 0.012719476595520973, 0.0867142379283905, -0.08197826147079468, -0.04088607802987099, -0.031799837946891785, -0.06545134633779526, 0.07503779977560043, 0.09775908291339874, 0.1139720156788826, -0.06691506505012512, -0.11236485093832016, 0.04535609483718872, -0.05669179931282997, 0.0023362617939710617, -0.0658542811870575, -0.06068853661417961, -0.09183727204799652, -0.11027675122022629, -0.02661135233938694, 0.08942300081253052, -0.07414691895246506, 0.017450395971536636, 0.03847302868962288, 0.10435507446527481, 0.13562636077404022, -0.05876568332314491, 0.047111451625823975, -0.04281159117817879, 0.04064540937542915, -0.13295207917690277, 0.04066750034689903, -0.10139288008213043, 0.008963452652096748, 0.06487936526536942, -0.043806292116642, -0.07044070959091187, 0.06182163581252098, 0.07613139599561691, 0.10243165493011475, -0.08875098079442978, -0.028256522491574287, -0.018287360668182373, 0.10006389021873474, 0.06646662205457687, -0.11189242452383041, -0.014685707166790962, -0.006750104483217001, -0.03305375203490257, -0.06370098143815994, -0.1255764216184616, 0.09167131036520004, -0.05389253422617912, 0.015007060952484608, 0.03992735967040062, -0.07113130390644073, -0.10890190303325653, 0.008482905104756355, -0.02083938755095005, -0.2017238885164261, 0.09548650681972504, -0.08098236471414566, -0.0003437389968894422, 0.022803647443652153, -0.036193784326314926, -0.07216453552246094, 0.03480881080031395, -0.06787019222974777, 0.1012655645608902, 0.01549434196203947, -0.08997088670730591, -0.15869911015033722, 0.019128452986478806, -0.03352121636271477, 0.03015163727104664, -0.003785506822168827, 0.012988395988941193, -0.04544714093208313, -0.03848426043987274, 0.11871545761823654, 0.13386741280555725, 0.09802313894033432, -0.07995941489934921, -0.02121231146156788, 0.015260612592101097, -0.0831306204199791, 0.00034603732638061047, 0.10063773393630981, -0.03645190969109535, -0.03705029562115669, -0.06494782865047455, -0.07509640604257584, 0.0013661037664860487, -0.04959336668252945, -0.14091983437538147, 0.03967801108956337, -0.006860458757728338, 0.01406974345445633, -0.0787179246544838, 0.196445494890213, 0.026347633451223373, 0.1299731731414795, 0.09406250715255737, 0.09069756418466568, -0.059269942343235016, 0.027980469167232513, 0.12384966015815735, -0.03981509432196617, 0.14311327040195465, -0.06940293312072754, -0.007200564257800579, -0.029123492538928986, 0.0100319292396307, -0.04413631930947304, 0.12816302478313446, 0.04336835816502571, 0.06746967136859894, 0.07410373538732529, 0.006290076300501823, 0.0581001415848732, 0.03711467236280441, -0.1164521723985672, -0.13083916902542114, -0.08357715606689453, -0.05882028862833977, 0.016550958156585693, 0.07029686868190765, 0.023500869050621986, 0.12489703297615051, -0.05626988038420677, 0.11125359684228897, 0.12858545780181885, -0.08059324324131012, -0.0011939986143261194, 0.07370584458112717, -0.022502737119793892, -0.04941878467798233, 0.11554470658302307, 0.011326239444315434, 0.01718362420797348, -0.1192181259393692, -0.009054381400346756, -0.007588570471853018, -0.09075085073709488, -0.1031297966837883, 0.024699002504348755, -0.05170818418264389, 0.05921363830566406, -0.10670667886734009, -0.03418352082371712, 0.09472520649433136, 0.09947811812162399, 0.06372950226068497, 0.00043978175381198525, 0.08502008020877838, -0.12579847872257233, 0.05707111582159996, -0.0005361224757507443, 0.049405816942453384, 0.005666221026331186, 0.03259021043777466, -0.0681474506855011, 0.05050142481923103, 0.07067850977182388, 0.19404955208301544, 0.011159678921103477, -0.11963281780481339, -0.007331084925681353, -0.18591853976249695, -0.054064393043518066, 0.1090853214263916, 0.04667193070054054, -0.02880544774234295, -0.09142457693815231, 0.05047871544957161, 0.1014043316245079, 0.1427086591720581, -0.06027509272098541, -0.03583984822034836, 0.1520632803440094, 0.0033184299245476723, -0.014102622866630554, -0.000133825174998492, -0.020129770040512085, -0.009957176633179188, 0.0009481815504841506, -0.02905154414474964, 0.014093531295657158, -0.022890515625476837, 0.05435353145003319, 0.11147366464138031, 0.050480883568525314, 0.00481044128537178, 0.10693744570016861, 0.0362173393368721, 0.004708177875727415, 0.08077280968427658, -0.03077623061835766, 0.08695472031831741, -0.13049928843975067, 0.08540210872888565, 0.018017670139670372, -0.05028127133846283, -0.0503615103662014, 0.08724819123744965, -0.0953497514128685, -0.01483942475169897, -0.051144491881132126, -0.03475892171263695, -0.0982104167342186, 0.06237739324569702, -0.10444393754005432, 0.03553420305252075, -0.010586024262011051, 0.11434314399957657, -0.030060775578022003, 0.12767340242862701], +fdiv:[0.13751935958862305, 0.04309005290269852, -0.07851095497608185, -0.04026611149311066, -0.06309237331151962, 0.05458758771419525, 0.06629694998264313, 0.07074367254972458, -0.10966452211141586, 0.05000215768814087, 0.03569681942462921, 0.03768458217382431, 0.026845408603549004, 0.13318991661071777, -0.045006245374679565, -0.03951741382479668, 0.0645609200000763, 0.061408042907714844, -0.13339026272296906, 0.07331875711679459, 0.08216451108455658, -0.14747662842273712, 0.07002212852239609, 0.030757833272218704, 0.0740152969956398, 0.09053251892328262, 0.14956922829151154, -0.131129190325737, -0.014398033730685711, 0.14739763736724854, -0.025883981958031654, -0.026926560327410698, 0.11786755174398422, 0.09247560799121857, 0.05828722566366196, -0.11333829164505005, -0.04380612447857857, 0.004031185992062092, 0.058461401611566544, -0.12430568784475327, 0.022248556837439537, 0.07323787361383438, 0.026613090187311172, -0.10464843362569809, -0.03882581740617752, 0.01835498958826065, 0.05994781479239464, 0.10243962705135345, 0.12016429007053375, 0.09030225872993469, -0.04352649301290512, 0.07939423620700836, -0.10614539682865143, 0.07203813642263412, -0.12311238050460815, -0.008150793612003326, 0.16638480126857758, -0.024510284885764122, -0.07512114942073822, 0.03901120647788048, -0.001324682030826807, 0.12865278124809265, -0.0623350627720356, 0.12660443782806396, 0.11303333938121796, 0.006366658490151167, -0.03488505631685257, -0.11776033043861389, -0.13862723112106323, -0.06458374112844467, 0.019788244739174843, -0.009865512140095234, 0.06561585515737534, 0.008925693109631538, -0.15237779915332794, 0.06649705767631531, -0.01130592916160822, -0.07569948583841324, 0.07641873508691788, 0.0005502550629898906, -0.03260005638003349, -0.0785447359085083, -0.0037869401276111603, 0.004647599533200264, -0.020519649609923363, -0.05537067726254463, 0.02518540434539318, 0.1542082279920578, 0.03119191713631153, -0.06817538291215897, -0.0031675733625888824, 0.052926819771528244, -0.07340150326490402, -0.02762427367269993, -0.09840202331542969, 0.046442802995443344, -0.04120217263698578, 0.043862853199243546, 0.07591109722852707, -0.08224120736122131, -0.09497768431901932, -0.01729828491806984, -0.13859222829341888, 0.0798746794462204, 0.12916116416454315, 0.03570083528757095, 0.0474199615418911, 0.08970753848552704, 0.05668749660253525, 0.04793736711144447, 0.058822374790906906, 0.061952728778123856, -0.06874272227287292, -0.13908664882183075, 0.014672667719423771, -0.08895216137170792, -0.058499813079833984, 0.06725958734750748, -0.05440138280391693, -0.0797538161277771, 0.04935663565993309, 0.08029526472091675, 0.010832460597157478, -0.10730819404125214, 0.05416978523135185, -0.028949229046702385, -0.0660158097743988, -0.11328567564487457, -0.07639949023723602, -0.10496774315834045, -5.7476812798995525e-05, -0.11215459555387497, -0.007691484410315752, 0.13333187997341156, 0.09357895702123642, -0.06779725104570389, 0.01581396535038948, 0.04053876921534538, -0.0721825584769249, 0.010831208899617195, 0.01409931480884552, -0.01628928817808628, -0.03967103362083435, 0.06639976799488068, -0.08782143145799637, 0.008500857278704643, -0.036327168345451355, -0.03752068430185318, 0.009891481138765812, 0.03128967061638832, -0.03967367112636566, 0.10056719928979874, -0.018460148945450783, -0.18363972008228302, -0.05791904032230377, 0.05979570373892784, -0.06717207282781601, 0.02864217385649681, 0.08311296254396439, 0.004188330378383398, -0.004766019526869059, -0.1163773387670517, 0.019761627539992332, 0.14108875393867493, 0.10434413701295853, -0.09815250337123871, -0.03792359307408333, -0.011961845681071281, -0.12924504280090332, 0.12770682573318481, 0.10620816051959991, -0.019262118265032768, -0.02984655275940895, -0.08142216503620148, -0.07794429361820221, -0.0020435533951967955, -0.09885112941265106, -0.08442442864179611, -0.03031730465590954, -0.018512338399887085, 0.08421236276626587, -0.04116658866405487, -0.03256930038332939, 0.10028054565191269, -0.0177370086312294, 0.10125956684350967, -0.07218724489212036, -0.07781356573104858, -0.12427756190299988, -0.10217856615781784, -0.06529127061367035, 0.15090854465961456, -0.074276402592659, -0.1026497557759285, -0.1234431192278862, -0.03321152925491333, -0.04976626858115196, -0.11465749889612198, 0.10184794664382935, 0.08010967820882797, 0.07615616172552109, -0.041594263166189194, -0.08251625299453735, 0.049310341477394104, -0.1164759024977684, -0.0745256245136261, -0.08904065936803818, -0.01732047088444233, 0.014675132930278778, 0.0390675850212574, 0.024646760895848274, 0.08175995200872421, -0.0968366488814354, 0.11592131108045578, 0.17087098956108093, -0.13207779824733734, 0.05540158972144127, 0.08423776179552078, 0.054568659514188766, -0.02409515343606472, 0.10906586796045303, -0.08430228382349014, -0.014726230874657631, -0.12138309329748154, -0.007306568790227175, -0.06442876905202866, -0.09395097941160202, -0.11396525800228119, -0.07162754237651825, -0.0019759805873036385, 0.08610666543245316, -0.11132247745990753, -0.036203499883413315, 0.10015611350536346, -0.13287627696990967, 0.14951549470424652, 0.05908955633640289, 0.07387875765562057, -0.14548519253730774, -0.14592617750167847, -0.09352933615446091, 0.11411015689373016, 0.027776233851909637, -0.037768494337797165, 0.000550723634660244, 0.05026279762387276, -0.10296560823917389, -0.022989550605416298, 0.03818733990192413, -0.02543003298342228, 0.011239390820264816, -0.006807420402765274, -0.057099174708127975, 0.0811317041516304, -0.026076147332787514, 0.017593786120414734, -0.07820440083742142, 0.017748743295669556, 0.10647249966859818, 0.04441847652196884, 0.06947686523199081, 0.07187091559171677, 0.10201552510261536, 0.04479992017149925, -0.08352869004011154, 0.00018065069161821157, -0.019523024559020996, -0.12576644122600555, 0.002171153202652931, -0.077060267329216, 0.012332713231444359, 0.023571981117129326, -0.022140605375170708, 0.10914238542318344, 0.04034919664263725, -0.056872736662626266, 0.0839417576789856, -0.15412485599517822, 0.027551166713237762, 0.09821822494268417, 0.049526605755090714, 0.09999167919158936, -0.12950734794139862, -0.02442995272576809, -0.0012477593263611197, 0.031129298731684685, 0.03440392017364502, 0.13841138780117035, -0.08485367894172668, -0.02214629575610161, -0.04910779371857643, -0.10800061374902725, 0.007687399163842201, 0.08880679309368134, -0.007167666684836149, 0.03405950218439102, -0.012457478791475296, 0.0665474459528923, 0.11079269647598267, 0.015463936142623425], +floatTy:[-0.09647391736507416, 0.10035959631204605, 0.02092294581234455, 0.10772836953401566, 0.02849469892680645, 0.03990735858678818, -0.09190279990434647, 0.00568350637331605, 0.06635389477014542, 0.04446163773536682, 0.11185649782419205, 0.0851854756474495, -0.06801080703735352, -0.08140146732330322, -0.12224985659122467, -0.06926421076059341, -0.08733167499303818, 0.11065705865621567, 0.03799760341644287, 0.01567091792821884, 0.07061699777841568, -0.021481791511178017, -0.052274733781814575, -0.0865815058350563, -0.11617550253868103, -0.027466511353850365, -0.053698934614658356, 0.01112354639917612, 0.034698713570833206, -0.01842557266354561, -0.023317866027355194, 0.0641384944319725, 0.1254872977733612, 0.05062089115381241, 0.0925130844116211, -0.03606375306844711, 0.10312097519636154, 0.05878351628780365, -0.08570168912410736, 0.07160390913486481, -0.1027611792087555, -0.09559638798236847, -0.026215801015496254, 0.06886966526508331, -0.030331671237945557, 0.007709801662713289, -0.11379922181367874, -0.03738395869731903, -0.021133139729499817, -0.11544273793697357, 0.10262686014175415, -0.03018219582736492, 0.08621683716773987, -0.10423531383275986, -0.040497083216905594, -0.07990384101867676, 0.009462656453251839, 0.00564101105555892, 0.06868951767683029, -0.10257580131292343, -0.11799222230911255, -0.03278621286153793, 0.060648608952760696, -0.06135326623916626, 0.020113306120038033, -0.08671370148658752, 0.08996882289648056, 0.04016593098640442, -0.07477216422557831, -0.03641542047262192, -0.08510316163301468, -0.11578526347875595, 0.029134858399629593, 0.0319235660135746, -0.05805021896958351, 0.009466881863772869, -0.053444311022758484, 0.017685847356915474, -0.09373081475496292, -0.010673414915800095, 0.10091522336006165, -0.07948701828718185, -0.0717051699757576, -0.007499815430492163, -0.05480678379535675, 0.011536539532244205, 0.06172497943043709, 0.07128138095140457, 0.08691032975912094, 0.006582613103091717, 0.1041015237569809, -0.030180955305695534, 0.07674524933099747, 0.03950641676783562, 0.1116243228316307, 0.050432901829481125, 0.03694897145032883, 0.10507979989051819, 0.015046963468194008, -0.11167431622743607, 0.09502081573009491, -0.05319179221987724, -0.07901432365179062, -0.058963533490896225, 0.09954985976219177, -0.03088448941707611, -0.08777066320180893, -0.04433450102806091, 0.021084461361169815, 0.06896553188562393, -0.030536694452166557, -0.027628658339381218, 0.04906080663204193, -0.02230621688067913, 0.0037209675647318363, 0.07027987390756607, 0.004788757301867008, 0.08929471671581268, 0.0876193419098854, 0.0750923901796341, -0.07908647507429123, 0.10685820877552032, 0.12201076745986938, 0.018742892891168594, 0.021002445369958878, -0.002801190596073866, -0.10632145404815674, 0.08440124988555908, 0.0695059522986412, -0.03645946457982063, 0.0828808918595314, -0.012859804555773735, 0.043291542679071426, 0.0911654531955719, -0.08686137199401855, -0.1286969929933548, -0.08663301169872284, 0.08616247028112411, 0.0023146350868046284, 0.12539562582969666, 0.026759326457977295, 0.0802900493144989, 0.0028856266289949417, 0.009677194990217686, 0.10897955298423767, -0.006366535555571318, -0.016198722645640373, 0.03359602764248848, -0.038709305226802826, 0.0016369568184018135, 0.08920746296644211, -0.055166229605674744, -0.06048441678285599, 0.07201103121042252, 0.02685188688337803, -0.024248871952295303, -0.0699511468410492, -0.021215487271547318, -0.10134755820035934, -0.09515942633152008, -0.06462914496660233, -0.08709254860877991, -0.09007764607667923, -0.07190310209989548, -0.09476493299007416, 0.00041240325663238764, 0.05974563583731651, -0.06802413612604141, 0.055249352008104324, -0.08991775661706924, -0.028453154489398003, 0.07357896119356155, 0.04170722886919975, 0.08375412970781326, 0.06147783622145653, 0.10413290560245514, -0.039662353694438934, -0.051076192408800125, -0.036240462213754654, -0.09778402745723724, -0.0034490670077502728, 0.07970762997865677, 0.022169921547174454, -0.08609864115715027, 0.022471657022833824, -0.08423519879579544, 0.020960800349712372, 0.05403893068432808, -0.08482220768928528, -0.0941905826330185, 0.020360803231596947, -0.08102335035800934, 0.020454054698348045, -0.012205980718135834, 0.0017639921279624104, -0.006610219832509756, 0.033132947981357574, 0.007485535927116871, 0.12441207468509674, -0.09518598765134811, -0.1109134703874588, -0.08290129154920578, 0.003738861298188567, 0.10635391622781754, 0.06839241087436676, 0.09520270675420761, 0.08863089233636856, -0.07072530686855316, 0.07272476702928543, -0.09093588590621948, 0.027500299736857414, 0.016562512144446373, -0.08980198204517365, -0.020715024322271347, -0.029303403571248055, -0.08090808987617493, -0.07522460073232651, 0.09736721217632294, -0.01435916032642126, -0.03375605493783951, -0.05028841644525528, -0.02885640598833561, 0.040644384920597076, -0.04826611280441284, 0.00860309973359108, -0.04624662175774574, -0.0006659952341578901, -0.06555173546075821, 0.026114249601960182, 0.10575656592845917, 0.08370555192232132, -0.05451304838061333, 0.07835029810667038, 0.103633351624012, -0.010235343128442764, -0.03731202334165573, -0.02154010906815529, 0.0033616088330745697, 0.01412257831543684, 0.041644711047410965, -0.13652275502681732, -0.10008106380701065, 0.09415410459041595, 0.003946209326386452, 0.01669924519956112, -0.07939918339252472, -0.07696989178657532, 0.009732437320053577, -0.01979106478393078, -0.023108936846256256, -0.10472365468740463, -0.03481476381421089, 0.06940196454524994, -0.015282279811799526, -0.04107166826725006, 0.10339341312646866, 0.0074598160572350025, -0.00897437334060669, -0.008962981402873993, -0.024339448660612106, -0.05561073496937752, -0.09527450054883957, 0.04728025943040848, 0.11497984081506729, -0.06369729340076447, 0.08314439654350281, 0.07414466887712479, -0.07549385726451874, -0.10366563498973846, 0.02142702415585518, -0.07729953527450562, -0.090578593313694, 0.10297591239213943, -0.05090748146176338, 0.11810538172721863, -0.046737123280763626, -0.040251366794109344, -0.019719082862138748, 0.08902803063392639, 0.08770187199115753, 0.11160100996494293, -0.03120570071041584, -0.0823432058095932, 0.026087690144777298, -0.002207240555435419, -0.05624896660447121, 0.11541678756475449, -0.06960505247116089, 0.06469142436981201, 0.0875013917684555, 0.07660657167434692, -0.01171288825571537, 0.019000787287950516, 0.0926220491528511, 0.08655181527137756, 0.09844473004341125, 0.03435507416725159, 0.0012989339884370565, 0.08273131400346756, 0.06207644194364548], +fmul:[0.05130491405725479, 0.04061340540647507, -0.059230126440525055, 0.0799739807844162, -0.09678366780281067, -0.09539700299501419, 0.05372432619333267, 0.01573723554611206, -0.029964754357933998, -0.05030275881290436, 0.032246340066194534, 0.006840911228209734, -0.008020558394491673, 0.12810593843460083, -0.04196988791227341, -0.03321816399693489, 0.07957452535629272, 0.06770101189613342, -0.11790179461240768, 0.05835646763443947, 0.042161885648965836, 0.02425556816160679, 0.12987737357616425, -0.014543415978550911, -0.041547633707523346, 0.04714193567633629, 0.12396764755249023, -0.12448069453239441, -0.060299407690763474, 0.13677886128425598, 0.013514772057533264, -0.010443232022225857, 0.1099919006228447, -0.01899053156375885, 0.03870674967765808, -0.10837960243225098, -0.03539036214351654, 0.0038450672291219234, 0.07269459962844849, -0.11884638667106628, 0.12696179747581482, 0.07014299184083939, 0.02570119872689247, -0.06236007809638977, -0.09513821452856064, 0.04696245491504669, 0.0643240362405777, 0.09760245680809021, 0.13388551771640778, -0.04181324318051338, -0.06279372423887253, 0.10919775813817978, 0.05813337117433548, 0.0804615244269371, 0.093629390001297, -0.017328819260001183, 0.026418078690767288, 0.025892477482557297, -0.03611910343170166, -0.03112673945724964, 0.047947194427251816, 0.05490237846970558, -0.04695509001612663, 0.12183479964733124, 0.1199045330286026, 0.07904358208179474, -0.03486781194806099, -0.11292266845703125, -0.03964826837182045, -0.034867312759160995, 0.014278514310717583, -0.07331551611423492, -0.12901535630226135, 0.11743959784507751, -0.09666962921619415, 0.0709642767906189, -0.08979807049036026, 0.05838825926184654, 0.010869914665818214, 0.05019766092300415, -0.03175408020615578, 0.04643644392490387, -0.002666122280061245, -0.04950297251343727, 0.040991004556417465, 0.10810651630163193, 0.021592173725366592, 0.08091546595096588, 0.012767243199050426, 0.21119354665279388, 0.10928695648908615, 0.03966859355568886, -0.07483737170696259, 0.019377846270799637, 0.02197464182972908, 0.03872979059815407, -0.0325172021985054, 0.08422896265983582, 0.05372515320777893, -0.052352264523506165, -0.09156442433595657, -0.01563471369445324, -0.14977391064167023, -0.0014663810143247247, -0.041667815297842026, 0.19540348649024963, 0.04386734217405319, 0.08562394976615906, -0.010691038332879543, 0.046685826033353806, 0.07954683154821396, 0.05828806012868881, -0.0651521310210228, -0.13434940576553345, 0.12837964296340942, -0.0064950790256261826, -0.012301478534936905, -0.04476704075932503, -0.05604008212685585, -0.11532822996377945, 0.04859064146876335, 0.07613864541053772, -0.09795552492141724, 0.035053931176662445, 0.07837685942649841, -0.050522297620773315, -0.06244073808193207, 0.05755115672945976, -0.05436285212635994, -0.07618533819913864, -0.005232000723481178, -0.08185988664627075, -0.05362800136208534, -0.12860983610153198, 0.07482259720563889, -0.05846229940652847, 0.015166125260293484, 0.03859589993953705, -0.0657186284661293, -0.07855073362588882, 0.026442931964993477, -0.030526654794812202, 0.06962375342845917, -0.009029763750731945, -0.0824703648686409, -0.17555177211761475, 0.012007428333163261, -0.03563539311289787, 0.10119950771331787, 0.04707643762230873, -0.06160490959882736, 0.11769870668649673, 0.07328761368989944, -0.14214445650577545, 0.06510918587446213, -0.06014060229063034, -0.051612213253974915, 0.02035980485379696, 0.03597978129982948, -0.0075741121545434, 0.053467102348804474, -0.07213640958070755, 0.01821954734623432, 0.13283300399780273, 0.10048460960388184, -0.09747132658958435, 0.14714033901691437, -0.0268208310008049, -0.1261541098356247, -0.07906043529510498, 0.10172572731971741, -0.08733581751585007, -0.05865859240293503, -0.11303653568029404, -0.07483948767185211, 0.0555843710899353, -0.00843453872948885, -0.07553357630968094, -0.10506200790405273, -0.010213710367679596, -0.05963096022605896, -0.01843102090060711, -0.012892505154013634, 0.02518051490187645, -0.12585365772247314, 0.09650632739067078, 0.051338255405426025, -0.05300149321556091, 0.06435920298099518, -0.006824985612183809, -0.0038746523205190897, 0.14441700279712677, -0.03213263303041458, -0.03144562616944313, 0.09219754487276077, -0.022648081183433533, -0.04718033969402313, 0.011871952563524246, -0.012669640593230724, 0.1016307920217514, 0.0035046192351728678, -0.11907433718442917, -0.19950935244560242, 0.046895597130060196, -0.11224641650915146, -0.07585635781288147, -0.06286940723657608, -0.015617547556757927, 0.03496379777789116, 0.04604043439030647, -0.07610482722520828, -0.018458135426044464, -0.015497983433306217, 0.10562247037887573, 0.11547091603279114, 0.04533607140183449, 0.05534347519278526, 0.08050394058227539, 0.15223023295402527, -0.04679306223988533, 0.10272952914237976, -0.06696102768182755, -0.02459963783621788, -0.05182073265314102, -0.007213926408439875, -0.11692648380994797, -0.08604121953248978, -0.10049482434988022, 0.05819792300462723, 0.02613074705004692, 0.1228291392326355, 0.05096382647752762, -0.04238317534327507, 0.0941978320479393, -0.07576242089271545, 0.13839909434318542, 0.045250602066516876, 0.12517961859703064, -0.13425128161907196, -0.13665685057640076, -0.0680239200592041, 0.07246644049882889, 0.03713569417595863, 0.04677576199173927, -0.028680915012955666, 0.04852541908621788, 0.049476493149995804, 0.11957290768623352, 0.09818661212921143, -0.00868687778711319, -0.02774040587246418, -0.03820926696062088, -0.0536075122654438, 0.1096867173910141, -0.02558133564889431, 0.027727633714675903, -0.12028775364160538, 0.014354218728840351, 0.10233737528324127, 0.07183091342449188, 0.06762009114027023, -0.01078944094479084, 0.020860880613327026, 0.02816326916217804, -0.0873730406165123, 0.006412750110030174, -0.018244417384266853, 0.03135878965258598, -0.11700710654258728, 0.12938496470451355, 0.008651205338537693, -0.010354471392929554, 0.05358394980430603, 0.029417987912893295, 0.01737981289625168, -0.02347519062459469, 0.0832085981965065, 0.017969658598303795, 0.029838155955076218, -0.01996726356446743, 0.08532369136810303, 0.1246427446603775, -0.11819738149642944, -0.0412323921918869, 0.019442683085799217, 0.13394683599472046, 0.023091914132237434, 0.07307436317205429, -0.043703608214855194, -0.017271675169467926, -0.04795340821146965, -0.02708912268280983, 0.09783938527107239, 0.08438826352357864, -0.10077701508998871, 0.036524418741464615, -0.02218005619943142, 0.023347126320004463, 0.10444534569978714, 0.013769128359854221], +fneg:[0.05942539870738983, 0.04282344877719879, 0.07742039114236832, 0.10168531537055969, -0.002027094131335616, 0.15838876366615295, 0.0640617311000824, -0.013476336374878883, -0.029422087594866753, 0.06852631270885468, 0.03914396092295647, 0.11590886116027832, 0.06436187773942947, 0.12874887883663177, -0.03578956797719002, 0.06775416433811188, 0.029858967289328575, 0.06783026456832886, -0.11582443118095398, 0.07607124000787735, 0.07905127108097076, -0.014538266696035862, 0.07071652263402939, -0.030381465330719948, -0.07027783989906311, 0.0987134501338005, 0.12797631323337555, -0.12255670130252838, 0.10984059423208237, 0.088407963514328, 0.009749019518494606, 0.003500462044030428, 0.11732306331396103, 0.057344917207956314, 0.09741824865341187, -0.11165992170572281, -0.039870817214250565, 0.05696913227438927, 0.1249278262257576, -0.1205461248755455, 0.046550482511520386, 0.06857968121767044, 0.008636119775474072, -0.08040514588356018, 0.05373524874448776, -0.06589842587709427, -0.024541301652789116, 0.09909889101982117, 0.04278524965047836, 0.056158870458602905, 0.13899773359298706, 0.0031899125315248966, 0.05338341370224953, 0.0635208785533905, 0.09513740986585617, -0.013096356764435768, 0.017982076853513718, -0.07233261317014694, 0.1394771784543991, 0.08084319531917572, 0.06254071742296219, 0.005369788967072964, -0.01793592981994152, 0.12197736650705338, 0.125314399600029, -0.09292695671319962, -0.023698747158050537, -0.1140776202082634, -0.07123870402574539, 0.0988757535815239, 0.02081350050866604, 0.004119966644793749, 0.11857781559228897, 0.06411554664373398, -0.14473670721054077, 0.018090544268488884, -0.09614961594343185, 0.006831828970462084, -0.04146316275000572, 0.031815819442272186, -0.031914401799440384, 0.050158705562353134, -0.003152190474793315, -0.00840329471975565, 0.041947830468416214, 0.06540939211845398, 0.026161961257457733, 0.08797826617956161, -0.07557753473520279, 0.04276926442980766, 0.04141244664788246, 0.04149935021996498, -0.06720492988824844, -0.08328511565923691, -0.00041453377343714237, -0.11096630245447159, -0.05648575350642204, 0.0471532940864563, 0.009824443608522415, -0.06574857234954834, -0.051274172961711884, 0.10428522527217865, 0.08025021106004715, -0.021236058324575424, -0.09629896283149719, -0.07420512288808823, 0.039649877697229385, 0.08359801769256592, 0.050764426589012146, 0.03254891559481621, 0.047372084110975266, 0.06143714860081673, -0.08230020850896835, -0.13441424071788788, -0.044995151460170746, -0.09308069199323654, 0.030346104875206947, 0.006342746317386627, -0.040122710168361664, 0.027388710528612137, 0.0814870074391365, 0.09270978718996048, 0.10400459915399551, -0.13837474584579468, 0.060417432337999344, 0.044085368514060974, -0.061982639133930206, 0.05843722075223923, -0.06322485953569412, -0.08100548386573792, 0.11474663764238358, -0.08341000974178314, 0.07620960474014282, -0.09993493556976318, 0.08612589538097382, -0.06497158110141754, 0.016131266951560974, 0.03959297016263008, -0.07176145166158676, 0.04397503659129143, -0.024856947362422943, 0.018863873556256294, -0.06244512274861336, -0.06020544096827507, 0.07666241377592087, 0.010584372095763683, -0.0062787230126559734, 0.10092904418706894, 0.1255185753107071, 0.09703526645898819, -0.036514975130558014, 0.0786428302526474, -0.008602268993854523, -0.0835622251033783, 0.020947692915797234, 0.0598507784307003, -0.03535066917538643, 0.0534798689186573, -0.0036199698224663734, -0.021119682118296623, -0.053878121078014374, -0.12253259867429733, 0.019166085869073868, 0.13512638211250305, 0.09923907369375229, 0.04724567383527756, 0.01876811869442463, -0.010908673517405987, -0.07134044915437698, -0.11547018587589264, 0.10267746448516846, 0.11872392147779465, -0.10069216042757034, -0.0643753707408905, -0.07593045383691788, -0.11563657224178314, -0.0914938822388649, 0.0991801843047142, 0.05074680224061012, -0.08835678547620773, -0.06977085024118423, -0.07430722564458847, 0.14778709411621094, -0.11440083384513855, 0.16758209466934204, 0.09416180849075317, 0.07233992218971252, -0.06307386606931686, 0.027940625324845314, -0.0795331746339798, 0.01057769637554884, 0.14954744279384613, -0.04812489449977875, -0.039778102189302444, 0.03266126662492752, -0.05051763728260994, 0.07940958440303802, 0.021803123876452446, 0.09646562486886978, 0.07114608585834503, 0.0734289214015007, -0.050472091883420944, 0.015953393653035164, 0.0462745763361454, -0.11187244951725006, -0.06916948407888412, -0.06770661473274231, -0.013694318942725658, 0.01113395020365715, 0.038251880556344986, 0.16428811848163605, -0.07807809114456177, -0.05979117378592491, 0.11361024528741837, 0.11264564841985703, -0.11573740094900131, 0.05463964119553566, 0.09271552413702011, 0.0927177146077156, -0.012645591981709003, 0.09032804518938065, -0.050473883748054504, -0.02448137104511261, -0.016721902415156364, -0.012949775904417038, -0.05387822166085243, 0.008567693643271923, -0.11996907740831375, -0.07802083343267441, 0.013437296263873577, -0.07584092766046524, -0.10775811970233917, -0.04183638468384743, 0.0960075855255127, -0.1072215661406517, -0.01707005314528942, 0.07649776339530945, 0.06239481270313263, 0.04144216328859329, -0.14461153745651245, -0.10412891954183578, 0.053702615201473236, 0.03609433025121689, 0.1389104425907135, -0.04337901622056961, 0.04816765710711479, 0.07768718153238297, 0.038962747901678085, 0.020645758137106895, -0.04114535450935364, -0.007548301946371794, -0.029867753386497498, -0.054776713252067566, 0.11120427399873734, -0.09392007440328598, -0.07324759662151337, -0.015017411671578884, -0.11981454491615295, 0.051807403564453125, -0.04845741018652916, -0.025451047345995903, -0.03747498244047165, 0.04041781276464462, 0.0785645842552185, -0.07379449158906937, -0.002551307203248143, -0.007634798064827919, -0.003800653386861086, 0.0007762871100567281, 0.0850655809044838, -0.021227672696113586, -0.05983046069741249, 0.043197907507419586, 0.02599729225039482, 0.05174123868346214, -0.0018506780033931136, 0.10283582657575607, 0.11709824204444885, 0.011497756466269493, 0.09485600143671036, 0.08000241219997406, 0.056072402745485306, -0.13269375264644623, -0.1280531883239746, 0.11872129887342453, 0.031104890629649162, 0.023157717660069466, -0.08983425796031952, 0.09166150540113449, 0.007813680917024612, -0.049971241503953934, 0.05038825422525406, 0.12033498287200928, -0.10844632983207703, -0.14213822782039642, 0.04466625303030014, 0.008882414549589157, 0.06539633870124817, -0.029038406908512115, -0.10992114245891571], +fpext:[0.04957491531968117, 0.04013735428452492, 0.029246242716908455, 0.09786045551300049, -0.125034362077713, -0.10379400104284286, 0.046603620052337646, -0.01150414440780878, -0.03202647343277931, -0.0194619819521904, 0.08902377635240555, 0.09463287144899368, 0.07703585177659988, 0.12367119640111923, -0.021156243979930878, -0.08228303492069244, 0.01721077226102352, 0.06625692546367645, -0.1294110119342804, 0.11392028629779816, 0.07363653928041458, -0.10473628342151642, 0.039765939116477966, -0.030473938211798668, -0.04248148947954178, 0.08618219196796417, 0.12246066331863403, -0.12044516205787659, -0.008931889198720455, 0.07275865972042084, 0.09905579686164856, 0.009898354299366474, 0.06111374497413635, 0.06022508814930916, -0.11724496632814407, -0.10766159743070602, 0.029404228553175926, 0.1090364083647728, -0.12166707962751389, -0.11585716158151627, 0.05648472160100937, 0.07552996277809143, 0.024020764976739883, -0.08850488066673279, 0.051986899226903915, -0.010113170370459557, -0.01589072309434414, 0.09500739723443985, 0.10798783600330353, 0.06273256987333298, 0.015984907746315002, 0.02089298702776432, 0.05859934166073799, 0.06562305241823196, 0.08873762935400009, -0.0829157829284668, -0.08889941871166229, 0.043695248663425446, 0.13416586816310883, -0.03031538426876068, -0.004726486746221781, 0.004406724125146866, -0.0009279401274397969, 0.10588205605745316, 0.12277346104383469, 0.022777456790208817, -0.021778050810098648, -0.1077837124466896, -0.09393426775932312, 0.04674902185797691, 0.019259965047240257, -0.008666780777275562, -0.013966741971671581, -0.07046368718147278, -0.023120008409023285, -0.07107865065336227, -0.016555653885006905, 0.052766263484954834, -0.021305298432707787, 0.043093856424093246, -0.03113025613129139, 0.06573193520307541, -0.0033516904804855585, 0.11117036640644073, 0.02524762973189354, 0.09706215560436249, 0.021803107112646103, 0.07044601440429688, -0.06801476329565048, 0.061427611857652664, 0.06981195509433746, -0.013684986159205437, -0.0807894915342331, -0.09671991318464279, 0.06478351354598999, 0.08389418572187424, -0.10361342877149582, 0.061495911329984665, -0.05907371640205383, -0.05473292991518974, 0.07281780242919922, -0.08926183730363846, 0.023684518411755562, 0.07424486428499222, -0.08845972269773483, 0.15685582160949707, 0.03612954542040825, 0.12492337822914124, 0.0505269430577755, -0.011421351693570614, 0.0516803152859211, 0.057722508907318115, 0.03723492473363876, -0.12979164719581604, 0.007580546662211418, -0.08646366000175476, 0.0473155602812767, 0.12489371746778488, -0.03948431462049484, 0.08920656889677048, 0.07022115588188171, 0.07600460201501846, 0.11984405666589737, -0.11399664729833603, 0.001734099816530943, -0.04987277463078499, -0.06030131131410599, 0.056682199239730835, -0.06175455078482628, -0.0705438032746315, -0.013170311227440834, -0.0927337110042572, 0.027335474267601967, -0.13379065692424774, 0.033872537314891815, -0.058787763118743896, 0.014780963771045208, 0.038603443652391434, -0.07216035574674606, -0.006209239829331636, -0.020580364391207695, 0.029063129797577858, -0.06231886148452759, 0.08905473351478577, -0.006635836325585842, 0.036508530378341675, 0.02535521425306797, -0.03423095494508743, 0.011988051235675812, 0.04660605639219284, -0.036422982811927795, 0.07596638798713684, 0.016947943717241287, -0.1443503051996231, 0.03717823699116707, -0.0836673378944397, -0.04540393501520157, 0.03242557868361473, -0.06330881267786026, 0.032069187611341476, -0.05011984333395958, -0.05868052318692207, 0.027321189641952515, 0.09709423780441284, 0.09675201028585434, 0.054558973759412766, 0.02215045876801014, -0.012561717070639133, 0.07654759287834167, 0.06963706016540527, 0.09896507114171982, -0.03469635546207428, -0.07906065881252289, -0.06275997310876846, -0.07228423655033112, 0.029419945552945137, -0.10003651678562164, 0.028767511248588562, -0.10025326907634735, 0.005476847756654024, 0.05053127557039261, -0.06309230625629425, 0.00690123438835144, 0.024542372673749924, -0.00037907654768787324, 0.08418087661266327, -0.010061721317470074, -0.05703423172235489, -0.0033126610796898603, -0.10061991214752197, -0.010446064174175262, 0.14478451013565063, -0.11870722472667694, 0.017741063609719276, -0.16218960285186768, -0.14498813450336456, 0.004910187795758247, 0.03620351850986481, 0.09892696142196655, 0.06754837185144424, 0.08590523153543472, -0.053383540362119675, -0.11219822615385056, 0.04768675938248634, -0.10835187882184982, -0.049998193979263306, -0.05937876179814339, -0.009974864311516285, -0.0011185603216290474, 0.03616316244006157, 0.14964230358600616, -0.006520028226077557, -0.07318954169750214, 0.1154208555817604, 0.09642378985881805, -0.14719824492931366, 0.054195336997509, 0.13449698686599731, 0.1398371011018753, 0.029315359890460968, 0.1055433452129364, 0.06987525522708893, 0.01656290329992771, 0.012084996327757835, 0.04926992580294609, -0.04621288180351257, -0.08882589638233185, -0.11174352467060089, -0.06741196662187576, 0.01769634336233139, 0.09471310675144196, -0.10369882732629776, -0.040621593594551086, 0.0917172059416771, 0.023944191634655, 0.010407623834908009, 0.04183626174926758, 0.02950849011540413, -0.11925388127565384, 0.052012357860803604, -0.07986077666282654, 0.04337538778781891, 0.03464342653751373, -0.0007557671051472425, 0.03282151743769646, 0.10832614451646805, -0.007427113596349955, 0.11741838604211807, -0.05892512574791908, 0.045781929045915604, 0.12942080199718475, -0.13591741025447845, -0.053243622183799744, 0.10691522806882858, 0.06884871423244476, 0.024498797953128815, -0.028179386630654335, -0.11853713542222977, -0.11281875520944595, 0.09809540957212448, -0.0804622694849968, -0.016606036573648453, 0.10654783993959427, 0.08397988229990005, 0.11250349879264832, -0.0026992710772901773, -0.05554903298616409, -0.13332071900367737, -0.0026071169413626194, -0.06611313670873642, 0.011346577666699886, 0.04363825544714928, 0.04390009120106697, 0.005861230660229921, 0.030961675569415092, 0.000561549561098218, 0.07945910096168518, 0.034418534487485886, 0.06120806932449341, -0.04175039753317833, -0.027354935184121132, 0.057552315294742584, 0.03413481265306473, -0.07050833106040955, -0.055822450667619705, -0.06595572084188461, -0.029716579243540764, -0.057864513248205185, -0.07284891605377197, -0.023336568847298622, -0.028405429795384407, 0.012712279334664345, -0.10963869839906693, -0.0553712323307991, -0.13309873640537262, -0.008287408389151096, 0.008818836882710457, 0.06873483955860138, -0.027859201654791832, 0.13587872684001923], +fptosi:[0.02620556764304638, 0.038510389626026154, -0.12235498428344727, 0.041113514453172684, -0.0593760684132576, 0.04953084886074066, 0.06775055080652237, 0.01912204921245575, -0.0964256301522255, -0.05036202073097229, 0.03583098575472832, -0.04697345942258835, -0.04115133732557297, 0.12904615700244904, -0.05035365745425224, 0.051286544650793076, -0.005520777776837349, 0.08080453425645828, -0.1292969286441803, 0.06086425110697746, 0.08016403764486313, 0.14169399440288544, 0.12921397387981415, 0.07949066907167435, 0.09223461896181107, 0.04590300843119621, 0.1451357752084732, -0.1285969763994217, -0.0064582834020257, 0.16662900149822235, 0.054927580058574677, -0.08804289251565933, 0.10949870198965073, 0.09379112720489502, 0.029849521815776825, -0.09362251311540604, -0.035810019820928574, -0.017124302685260773, 0.05624543875455856, -0.11892766505479813, 0.054478779435157776, -0.060513779520988464, 0.10716849565505981, -0.03494983911514282, -0.0950886458158493, -0.0006329801399260759, 0.06443391740322113, 0.0992765873670578, 0.09629376232624054, -0.04986864700913429, -0.058668073266744614, 0.14789901673793793, 0.028818078339099884, 0.07176439464092255, 0.052911631762981415, 0.027582092210650444, 0.016591601073741913, -0.017395058646798134, 0.019506189972162247, 0.0349421389400959, 0.06325583904981613, -0.08310828357934952, -0.047941625118255615, 0.12276709079742432, -0.14108574390411377, -0.020443227142095566, -0.03449061140418053, 0.046688828617334366, 0.021715397015213966, -0.08363687992095947, 0.017459696158766747, -0.07935633510351181, 0.07017006725072861, 0.029308641329407692, -0.10468912869691849, -0.07907243072986603, -0.06169679015874863, -0.106256403028965, 0.0743921548128128, 0.02478795312345028, -0.01841796189546585, 0.04890939220786095, 0.03623149171471596, 0.03158913180232048, -0.022974802181124687, 0.03048350289463997, 0.02354300022125244, 0.07602091133594513, -0.024420181289315224, -0.01356551330536604, 0.07304178923368454, 0.04121266305446625, -0.0694228857755661, -0.060623228549957275, 0.021403633058071136, 0.1189810112118721, 0.13248343765735626, 0.04181867837905884, 0.0032214305829256773, -0.02415291592478752, -0.09282073378562927, 0.12030800431966782, -0.08249258995056152, 0.09071051329374313, -0.009976399131119251, 0.03375466167926788, -0.008659977465867996, 0.14200827479362488, -0.0017935056239366531, 0.14625529944896698, 0.05487656965851784, -0.046744704246520996, -0.06826461106538773, 0.07718273252248764, -0.00653920229524374, -0.09644514322280884, 0.023781446740031242, -0.04603356868028641, -0.05357910320162773, -0.11477777361869812, 0.08159322291612625, 0.04294354096055031, 0.06373576074838638, -0.09029632061719894, 0.06650564819574356, 0.056542955338954926, -0.06327812373638153, 0.02975545823574066, -0.059663958847522736, 0.08613048493862152, 0.10694414377212524, -0.03696306794881821, -0.06433125585317612, -0.09091479331254959, 0.11084550619125366, -0.0086497338488698, 0.01547124981880188, 0.036788903176784515, -0.06770089268684387, 0.005913989618420601, -0.019172223284840584, -0.09139015525579453, -0.060312118381261826, 0.013152888044714928, -0.08284193277359009, 0.0239578690379858, 0.0511116161942482, 0.08869364112615585, 0.009037204086780548, -0.06774065643548965, 0.06622520089149475, 0.1044308990240097, -0.05558646097779274, -0.1352255642414093, 0.07443967461585999, -0.03855058550834656, -0.06632553040981293, 0.020215224474668503, 0.09163253009319305, 0.059741344302892685, 0.14584298431873322, -0.06540332734584808, 0.020925598219037056, 0.1414431780576706, 0.10065435618162155, -0.09543250501155853, -0.16962356865406036, 0.08877116441726685, -0.10504652559757233, 0.04801055043935776, 0.10180860757827759, -0.033144865185022354, -0.1278681457042694, -0.0828774943947792, -0.07540564239025116, 0.06376264244318008, 0.060879889875650406, -0.10981526970863342, 0.08405835181474686, -0.014009096659719944, -0.0532875619828701, 0.0752849280834198, -0.13588930666446686, 0.055957816541194916, -0.04708435386419296, 0.09753934293985367, -0.06531782448291779, 0.025640608742833138, 0.010662488639354706, 0.020661180838942528, 0.030960340052843094, 0.15379314124584198, 0.030642854049801826, -0.0496620237827301, 0.05686230957508087, -0.14065206050872803, -0.04755474627017975, -0.09928108006715775, 0.024058008566498756, 0.09019467979669571, 0.07360456138849258, 0.04221922904253006, 0.007149530574679375, 0.04153319448232651, -0.11724895238876343, -0.15089108049869537, 0.04841461777687073, -0.1432105451822281, 0.051399946212768555, 0.06334978342056274, 0.0018863212317228317, 0.09018604457378387, -0.0562167689204216, 0.10637567192316055, 0.11055485159158707, -0.116022489964962, 0.027887342497706413, 0.08048200607299805, 0.06273166090250015, 0.012785405851900578, -0.1424763798713684, -0.0012815097579732537, -0.025334110483527184, -0.03205288574099541, -0.062319591641426086, 0.10956484079360962, -0.0925905629992485, -0.09683779627084732, 0.066864974796772, -0.024523140862584114, -0.1599375605583191, 0.09259356558322906, -0.05158232897520065, 0.09473537653684616, -0.0041008018888533115, 0.0956277996301651, 0.08084411174058914, 0.06153102591633797, -0.07572583854198456, -0.07727444171905518, 0.018088050186634064, 0.0696573406457901, 0.0715256854891777, -0.13144659996032715, -0.07256235927343369, -0.08179277926683426, -0.0999995693564415, 0.07109440118074417, 0.015266136266291142, -0.016991473734378815, -0.023760251700878143, 0.12998326122760773, -0.05326090753078461, 0.11052218824625015, -0.020631492137908936, -0.006494408939033747, -0.10269517451524734, 0.05563680827617645, 0.10303027927875519, 0.007725521922111511, -0.06914959847927094, 0.013523843139410019, 0.03281505033373833, -0.0028406628407537937, 0.027565518394112587, 0.003601329168304801, -0.03711862862110138, 0.010828258469700813, 0.0006757051451131701, 0.027224775403738022, 0.0350671261548996, -0.036308653652668, -0.12069938331842422, 0.10657382011413574, -0.041909534484148026, -0.029255149886012077, 0.08267645537853241, -0.08905700594186783, -0.015230624936521053, -0.01577114313840866, 0.14679691195487976, 0.13274477422237396, -0.06920593231916428, -0.11111672222614288, -0.06102669984102249, 0.03669846057891846, -0.029087089002132416, 0.01220927108079195, -0.05819742754101753, -0.10662873089313507, -0.12410637736320496, -0.04366828873753548, 0.005655333865433931, 0.08166299760341644, 0.0035662467125803232, 0.04985029250383377, -0.01229900773614645, 0.13211950659751892, 0.10924220830202103, -0.013692347332835197], +fptoui:[-0.13208435475826263, 0.007171200588345528, -0.04684789106249809, -0.06346181780099869, -0.00857185386121273, 0.05698937177658081, -0.12680469453334808, -0.01932360604405403, -0.0949808657169342, -0.09097954630851746, 0.019592350348830223, -0.12529924511909485, -0.04383824020624161, 0.12424526363611221, -0.05141613259911537, -0.1299142986536026, -0.025986935943365097, -0.11027046293020248, -0.10709327459335327, -0.11956410855054855, 0.08142436295747757, -0.03828169032931328, 0.08620473742485046, 0.02975359559059143, -0.04875095933675766, 0.04558410868048668, 0.1411697119474411, 0.01947093941271305, -0.009253639727830887, 0.14869865775108337, -0.05791958048939705, -0.0085917292162776, 0.11953193694353104, 0.00875420868396759, 0.03330032154917717, -0.08414054661989212, -0.03395654261112213, -0.03705035150051117, 0.0550251305103302, 0.12864390015602112, -0.11820534616708755, -0.05002042278647423, -0.07243174314498901, -0.04107746109366417, 0.067625992000103, -0.0027906710747629404, 0.03872697800397873, 0.09543228894472122, 0.022723842412233353, 0.0033509323839098215, -0.05096375569701195, 0.12901824712753296, -0.0926113948225975, 0.06774149090051651, 0.10134126245975494, 0.052106402814388275, 0.029699571430683136, 0.013675197958946228, -0.0723172202706337, 0.02615845575928688, 0.04594135656952858, 0.02499663457274437, 0.01648055389523506, 0.10817044228315353, 0.11645786464214325, -0.1090773344039917, -0.03338233754038811, -0.10295888781547546, -0.043743398040533066, 0.11574427038431168, 0.023848755285143852, -0.07732957601547241, -0.021861882880330086, 0.02805200032889843, 0.05103462561964989, -0.025661475956439972, 0.07113251835107803, -0.0529247485101223, 0.09661892056465149, -0.036936141550540924, 0.013959566131234169, 0.018519921228289604, -0.02147670090198517, 0.029461879283189774, -0.03512609750032425, -0.0007022253703325987, 0.07900513708591461, -0.07291506230831146, 0.028658702969551086, 0.0310675036162138, -0.07653822749853134, 0.026930566877126694, -0.04265131056308746, 0.11845120787620544, -0.1108899638056755, 0.1168651133775711, -0.057342275977134705, -0.04557215794920921, 0.0008261683396995068, -0.01211540400981903, -0.09004923701286316, 0.11922857165336609, -0.1419695019721985, 0.09185037016868591, -0.043030962347984314, -0.014468686655163765, 0.008566292934119701, 0.08321835845708847, 0.015559055842459202, 0.035835281014442444, 0.047250520437955856, -0.04630815237760544, -0.06676653027534485, 0.13125187158584595, 0.01877487823367119, -0.009203673340380192, 0.005453867372125387, -0.04565785825252533, 0.046755652874708176, -0.1098443865776062, 0.04521729052066803, -0.12202205508947372, -0.06350502371788025, 0.009098861366510391, -0.021319234743714333, 0.0021354497876018286, -0.09955950826406479, 0.08320993930101395, -0.0439671128988266, -0.007427818141877651, 0.03493107110261917, -0.1349829137325287, -0.061167601495981216, -0.10394541919231415, -0.06234461069107056, -0.046543560922145844, 0.0008669999078847468, 0.03944838047027588, -0.06594646722078323, 0.01639416627585888, -0.015798136591911316, -0.04701503366231918, -0.06781318783760071, 0.08213696628808975, -0.12384447455406189, 0.017756998538970947, 0.011423161253333092, -0.03734849393367767, -0.05064406618475914, 0.04109429568052292, -0.06709404289722443, 0.0968393012881279, 0.10040786862373352, -0.15737389028072357, -0.005613626912236214, -0.004659736528992653, -0.06381145119667053, 0.019258951768279076, 0.07860464602708817, -0.004962130915373564, 0.028943520039319992, 0.13891135156154633, 0.02233143150806427, 0.11909875273704529, 0.10794004052877426, 0.025489024817943573, 0.024758661165833473, 0.11608542501926422, -0.044466905295848846, 0.07861007004976273, -0.04145541787147522, 0.12407522648572922, -0.09014130383729935, -0.07937634736299515, -0.07284558564424515, 0.044655103236436844, -0.12547871470451355, -0.09642744809389114, 0.00031018536537885666, -0.012631723657250404, 0.10623585432767868, -0.07579556852579117, -0.16282333433628082, 0.10066227614879608, -0.04326160252094269, 0.10562705993652344, -0.03523862734436989, -0.046589456498622894, 0.06921693682670593, 0.12223444133996964, 0.05422961711883545, 0.11956994235515594, -0.06229957565665245, -0.05038338527083397, 0.06952853500843048, -0.0555846244096756, -0.04454626515507698, -0.030282657593488693, 0.005996662192046642, -0.00041136983782052994, 0.04775938764214516, -0.036045413464307785, -0.08298646658658981, 0.09159592539072037, 0.03536684438586235, -0.1480172872543335, -0.09843627363443375, -0.1425219625234604, 0.015899736434221268, 0.06246102973818779, 0.0035529215820133686, 0.10279764235019684, 0.006126323714852333, -0.10389972478151321, 0.09412408620119095, 0.044870827347040176, -0.13559816777706146, 0.07443460822105408, -0.11897450685501099, 0.001370991114526987, 0.08720038831233978, -0.06815186142921448, -0.014585616998374462, -0.11243226379156113, 0.041248172521591187, -0.07970389723777771, -0.08946884423494339, -0.07131098210811615, 0.10102453082799911, -0.04956592246890068, 0.1320393681526184, 0.09381401538848877, -0.03333905711770058, 0.10664819926023483, 0.010000813752412796, -0.010129713453352451, 0.008949724957346916, 0.05470947548747063, -0.13839811086654663, -0.12213031947612762, 0.028969258069992065, 0.06647057086229324, -0.04358544573187828, -0.05143953114748001, -0.05984577536582947, -0.07945701479911804, -0.09848182648420334, 0.016308916732668877, 0.01907278783619404, -0.0979926586151123, 0.05593553185462952, -0.011480032466351986, -0.05206435173749924, 0.07895845174789429, -0.02417425438761711, 0.018735166639089584, -0.07689010351896286, -0.017173247411847115, 0.10044775158166885, -0.11578444391489029, -0.0023966729640960693, 0.0231325626373291, 0.03895709291100502, -0.07293757051229477, -0.0858466625213623, -0.0010999991791322827, -0.018355824053287506, -0.0037863266188651323, -0.06547213345766068, 0.07144637405872345, 0.06179586425423622, -0.019237974658608437, 0.09975115954875946, 0.10307030379772186, 0.04031668230891228, 0.07921680808067322, -0.011508557014167309, 0.009923206642270088, -0.03946254774928093, -0.016276424750685692, 0.1360114961862564, 0.06624827533960342, -0.030270591378211975, 0.05311925709247589, -0.03974638506770134, 0.041522834450006485, 0.10361846536397934, 0.16088025271892548, -0.09773043543100357, -0.13547073304653168, 0.13819071650505066, 0.019491996616125107, 0.003117217915132642, 0.0828230232000351, -0.015604514628648758, 0.03545922413468361, -0.013357831165194511, 0.06913189589977264, 0.11377332359552383, 0.013128400780260563], +fptrunc:[0.051153961569070816, 0.040975749492645264, -0.032536186277866364, 0.12688983976840973, -0.03569949418306351, 0.07972735166549683, 0.0294428039342165, -0.006224534939974546, -0.10626949369907379, 0.1583680510520935, 0.04392911121249199, 0.09846297651529312, 0.06104036048054695, 0.12513430416584015, 0.12406818568706512, -0.03684814274311066, 0.016493557021021843, 0.06639570742845535, -0.1400991529226303, -0.09471428394317627, 0.07651758939027786, -0.01671835407614708, 0.014741611666977406, 0.12604272365570068, -0.054480571299791336, 0.036149099469184875, 0.1316853016614914, -0.1238650307059288, -0.0006428335909731686, 0.036725178360939026, 0.0076420302502810955, 0.04837465286254883, -0.11315631121397018, 0.06332916021347046, 0.12925878167152405, -0.10993786156177521, 0.029005149379372597, -0.0756460577249527, -0.0019882735796272755, -0.11899621039628983, -0.02626669779419899, 0.06974013894796371, -0.07406049221754074, -0.0970330610871315, -0.0947156697511673, 0.014824634417891502, -0.05149548500776291, -0.09425865858793259, 0.03855838254094124, 0.05417751893401146, 0.008928813971579075, 0.021651342511177063, -0.1042555719614029, 0.061705056577920914, 0.09424501657485962, -0.015208063647150993, 0.022831639274954796, -0.04929344356060028, 0.13772299885749817, 0.040835924446582794, 0.06259019672870636, -0.0034220265224575996, -0.07404617220163345, 0.11940864473581314, 0.12422512471675873, -0.0363539382815361, -0.022761447355151176, -0.11726860702037811, -0.053854938596487045, 0.10095783323049545, 0.01695316843688488, -0.02318466082215309, -0.010289163328707218, -0.018138349056243896, -0.1518910825252533, 0.021399173885583878, -0.05403077229857445, -0.0371263287961483, 0.06545157730579376, -0.13803361356258392, 0.128816157579422, 0.08217807859182358, -0.0035139501560479403, 0.058093056082725525, 0.009235220961272717, -0.012236890383064747, 0.02120272070169449, 0.07399971038103104, -0.06932485848665237, -0.02608405612409115, 0.039528653025627136, 0.039297714829444885, -0.0701172798871994, 0.018600568175315857, -0.003878036979585886, 0.09966600686311722, -0.04970317706465721, -0.005487612448632717, 0.02458236552774906, -0.06933874636888504, 0.0011718311579898, -0.0940525159239769, -0.13823863863945007, 0.07540279626846313, -0.1028478741645813, -0.07541555911302567, 0.055574849247932434, 0.01562430988997221, 0.06435578316450119, 0.012305411510169506, 0.05009835585951805, 0.05968957394361496, -0.06043042242527008, -0.1309264451265335, 0.02017761953175068, -0.09247902035713196, 0.008512941189110279, 0.014947373420000076, -0.04237446188926697, 0.04719843715429306, 0.046137735247612, 0.07732068747282028, 0.12120919674634933, -0.14269250631332397, -0.04409642145037651, 0.15508431196212769, -0.06094275414943695, 0.06778533011674881, -0.0599958673119545, -0.11846842616796494, -0.015912266448140144, -0.08534795790910721, 0.03448725864291191, -0.07338082790374756, 0.12278986722230911, -0.061767276376485825, 0.014818720519542694, 0.03795170783996582, -0.06980650871992111, 0.008732309564948082, 0.011351021006703377, 0.0560268796980381, 0.057752370834350586, -0.08424931019544601, -0.07920487225055695, 0.03991195559501648, 0.011064616031944752, -0.034897081553936005, 0.02199404314160347, 0.06006893143057823, -0.03646799176931381, 0.07663954794406891, -0.08066467940807343, -0.07134557515382767, 0.039774421602487564, 0.06064346060156822, 0.06729861348867416, 0.03272630274295807, -0.006532840430736542, 0.00666288286447525, 0.08579833805561066, -0.11839620769023895, 0.07014121860265732, 0.1253672093153, 0.025038495659828186, -0.10720370709896088, 0.030001981183886528, -0.009710588492453098, -0.08517030626535416, -0.09650526195764542, 0.10066839307546616, -0.03033905103802681, -0.0914197638630867, -0.06084654852747917, -0.07395351678133011, -0.014638044871389866, -0.08740200847387314, -0.07686037570238113, 0.01110015343874693, -0.024394534528255463, -0.07056068629026413, -0.049096010625362396, -0.11614944040775299, 0.02630625292658806, -0.031318120658397675, 0.08671519160270691, 0.04945939779281616, -0.10207932442426682, 0.061881646513938904, 0.04516955465078354, 0.005397721193730831, 0.15041516721248627, -0.09973420202732086, -0.04807469621300697, 0.053202975541353226, -0.09876212477684021, -0.01811315305531025, 0.015158685855567455, 0.0560346357524395, 0.07001503556966782, -0.03900660201907158, 0.09834008663892746, 0.173166885972023, 0.05692879483103752, 0.1323547065258026, 0.005152290686964989, 0.11276814341545105, -0.014990635216236115, 0.012054535560309887, 0.03332532197237015, 0.0003033194225281477, 0.09896564483642578, -0.12197547405958176, 0.11457530409097672, 0.06003295257687569, -0.05992710590362549, 0.05190885439515114, 0.13662706315517426, 0.1091412603855133, -0.009834990836679935, 0.09349644184112549, -0.06737501174211502, 0.004332236014306545, -0.05842694640159607, -0.04913107305765152, -0.13452115654945374, -0.08990957587957382, -0.10655573010444641, 0.08983533829450607, 0.025663750246167183, 0.0821801945567131, -0.10554186999797821, -0.041842807084321976, 0.09448648989200592, 0.09660189598798752, -0.015091975219547749, 0.090609610080719, -0.010362261906266212, -0.1270197331905365, -0.08608810603618622, -0.08019164949655533, 0.09744422882795334, 0.026815300807356834, -0.07350680232048035, 0.08437585830688477, 0.04711029678583145, -0.06912001222372055, 0.03787797689437866, 0.01964295655488968, 0.11425361037254333, -0.014388171024620533, -0.018368294462561607, -0.05379015579819679, 0.10740569233894348, -0.018688559532165527, -0.12358669191598892, -0.03837738186120987, -0.0899989977478981, 0.10490915179252625, -0.06654752045869827, 0.0028496577870100737, -0.03472118452191353, 0.037699759006500244, 0.08454208821058273, 0.06960874050855637, -0.001614717417396605, -0.0093392888084054, -0.13505417108535767, -0.0016379576409235597, 0.07151439040899277, -0.05281543731689453, 0.062161583453416824, 0.04276271536946297, 0.029750434681773186, -0.08515188097953796, -0.010458959266543388, 0.10035780817270279, 0.11541811376810074, -0.03485529497265816, 0.08711781352758408, 0.04044073075056076, 0.08918897062540054, -0.1295984536409378, 0.019059866666793823, 0.033466074615716934, 0.05956673622131348, 0.04045245796442032, -0.03072306141257286, 0.08370951563119888, -0.00615236721932888, -0.06978654116392136, -0.10402185469865799, 0.08156609535217285, 0.0875236988067627, -0.006353731267154217, -0.006003546994179487, 0.00978037714958191, 0.08563846349716187, -0.02846940979361534, -0.003905183169990778], +freeze:[-0.0017069984460249543, -0.002383540151640773, -0.03866533562541008, -0.10848905891180038, -0.012920735403895378, -0.006090442184358835, 0.1064840778708458, -0.006568162702023983, -0.04341970756649971, 0.0650700107216835, 0.03848082944750786, 0.04501613602042198, -0.03828525170683861, 0.04132870212197304, 0.06134228780865669, 0.052981019020080566, 0.14327989518642426, 0.004328115843236446, -0.14517682790756226, 0.126064732670784, 0.022188421338796616, -0.009778767824172974, -0.10561968386173248, 0.07325940579175949, 0.02841043844819069, 0.03950265422463417, -0.024376271292567253, -0.061605773866176605, -0.012502782978117466, -0.09034794569015503, 0.014062914997339249, 0.010398251935839653, -0.008477672003209591, -0.11057703197002411, -0.10059431940317154, 0.05775003880262375, -0.041380420327186584, 0.015148093923926353, -0.11321720480918884, -0.09710192680358887, -0.012059420347213745, 0.074622742831707, 0.023474913090467453, -0.12870489060878754, 0.03199970722198486, -0.03110017441213131, 0.06515111774206161, 0.10074380785226822, -0.11516905575990677, -0.056922342628240585, -0.012252041138708591, 0.012208100408315659, -0.043418608605861664, -0.008284424431622028, 0.035231154412031174, 0.12438607960939407, 0.023957211524248123, 0.0026627318002283573, 0.050427332520484924, -0.03202110528945923, 0.04232165962457657, 0.08244763314723969, -0.07190267741680145, 0.06514599174261093, 0.06223008781671524, 0.10855281352996826, -0.04434313252568245, 0.03483137860894203, -0.04881693795323372, 0.025801826268434525, -0.05219944193959236, 0.05655745416879654, -0.012559396214783192, 0.05018571764230728, -0.08090468496084213, -0.028501324355602264, 0.08976536244153976, -0.021363213658332825, 0.07343100011348724, 0.04249376431107521, -0.06699937582015991, -0.03799746558070183, 0.055099647492170334, 0.028153931722044945, -0.04172779992222786, 0.0318976454436779, -0.09000074863433838, -0.11591020971536636, -0.027376804500818253, -0.05718131735920906, 0.08383382856845856, 0.03715767338871956, -0.008724503219127655, -0.013811198994517326, -0.09674525260925293, -0.1262965351343155, 0.11241191625595093, 0.08855626732110977, 0.026419587433338165, -0.12126924097537994, -0.1032998114824295, -0.014085694216191769, 0.013211764395236969, 0.107722207903862, 0.035886719822883606, -0.10969436168670654, 0.10009865462779999, 0.10681479424238205, 0.05245768651366234, 0.05840620771050453, -0.09526269137859344, -0.1366986185312271, -0.04238813370466232, -0.1377740353345871, 0.021175799891352654, -0.10087179392576218, 0.04496290534734726, -0.0927596166729927, -0.10569912195205688, -0.08924233913421631, -0.07787372916936874, -0.007420716341584921, -0.09104172885417938, -0.016815653070807457, 0.039100490510463715, -0.052112746983766556, 0.04286559671163559, -0.05223942548036575, -0.09773998707532883, 0.1316596120595932, 0.02567979320883751, 0.05757443979382515, -0.13320372998714447, 0.11828794330358505, 0.08664151281118393, 0.0034917681477963924, -0.011549165472388268, -0.09513423591852188, -0.03787190839648247, -0.10331130027770996, -0.020201748237013817, -0.041501980274915695, -0.00739193195477128, 0.11945615708827972, -0.05284544453024864, -0.06527476012706757, -0.010023544542491436, 0.07695446908473969, -0.10892035067081451, 0.03691822290420532, 0.09794516861438751, 0.11083833128213882, 0.08468031883239746, 0.12905552983283997, -0.019430391490459442, -0.034413471817970276, -0.021323245018720627, -0.14305254817008972, 0.1424417495727539, 0.025910818949341774, 0.023301562294363976, -0.021493135020136833, -0.1432662010192871, 0.14642637968063354, -0.12337211519479752, -0.0836651399731636, -0.11855580657720566, -0.04193241894245148, -0.12641294300556183, 0.07609817385673523, 0.026293575763702393, -0.03808797523379326, 0.0834708958864212, -0.01462542824447155, 0.10214163362979889, 0.07142619788646698, 0.07556353509426117, -0.05954800918698311, -0.021937010809779167, -0.061306342482566833, -0.008348792791366577, 0.14088797569274902, -0.00955986138433218, -0.0685521587729454, -0.06389394402503967, 0.044677942991256714, 0.07378729432821274, -0.16047482192516327, 0.11080655455589294, 0.1214773878455162, 0.00795922800898552, -0.14325296878814697, 0.14510373771190643, -0.029034042730927467, 0.05550388991832733, 0.03592780977487564, -0.07051286101341248, 0.017351249232888222, 0.05986180901527405, 0.09414122998714447, 0.07401573657989502, -0.03920505568385124, -0.09044354408979416, -0.013101635500788689, -0.12135990709066391, 0.00604849960654974, 0.020409077405929565, -0.033271901309490204, 0.0199448112398386, 0.08045642822980881, 0.002803105628117919, 0.015192374587059021, -0.05622940510511398, 0.043826330453157425, -0.16426363587379456, -0.15475018322467804, -0.03323237970471382, 0.04825792834162712, 0.07680658996105194, -0.0009939398150891066, 0.1352841556072235, 0.0012108037481084466, 0.1043003499507904, -0.13034766912460327, -0.10665710270404816, -0.07576529681682587, -0.116683229804039, -0.0541207380592823, -0.07032644003629684, 0.0821773037314415, -0.06240016967058182, -0.04620782658457756, -0.03443213179707527, -0.1134820356965065, 0.10075140744447708, -0.028160160407423973, -0.06314144283533096, 0.06115487217903137, 0.12786197662353516, 0.11471284180879593, 0.08986364305019379, -0.10089017450809479, 0.029759742319583893, -0.13693203032016754, -0.019959932193160057, -0.017441224306821823, -0.14036671817302704, -0.061473120003938675, 0.016105035319924355, 0.09420911967754364, -0.06121141463518143, -0.01211259700357914, -0.051409993320703506, -0.06650197505950928, 0.02581421099603176, -0.023112952709197998, -0.11252166330814362, -0.07171609997749329, 0.08238472044467926, 0.005560708232223988, -0.14412449300289154, -0.0631708949804306, 0.035403139889240265, -0.1408853828907013, -0.09186077117919922, 0.10417098551988602, -0.07981210201978683, 0.005137915723025799, 0.036842189729213715, -0.1343541294336319, -0.01944374293088913, -0.06105082854628563, -0.0017151684733107686, 0.025184614583849907, 0.13972832262516022, -0.06409613788127899, -0.08479524403810501, -0.028163587674498558, -0.015932083129882812, -0.019093701615929604, -0.14305800199508667, 0.14221210777759552, 0.047505807131528854, -0.003693168517202139, -0.03531019389629364, -0.11582326143980026, -0.10619810223579407, 0.11003988236188889, -0.14347921311855316, -0.05221134051680565, 0.07489489763975143, -0.06289782375097275, -0.04361804202198982, 0.015851939097046852, -0.03309253230690956, -0.03724779561161995, -0.01571941375732422, -0.07682295143604279, -0.11273466050624847, 0.04490569233894348], +fsub:[0.14213204383850098, 0.043752942234277725, 0.1768890917301178, 0.11455342918634415, -0.042910385876894, -0.013195709325373173, 0.0675245001912117, -0.01757817342877388, -0.10536807030439377, 0.004016799386590719, 0.03674617037177086, 0.06302947551012039, -0.04394716024398804, 0.13512183725833893, -0.04191487282514572, -0.040556229650974274, -0.003389955498278141, 0.06039327010512352, -0.13267117738723755, 0.16062262654304504, 0.08822882920503616, -0.003774625714868307, 0.06968726217746735, -0.029033303260803223, -0.064015232026577, 0.09310159087181091, 0.1510300487279892, -0.1320721060037613, -0.06563565135002136, 0.15687920153141022, 0.12822969257831573, -0.07000302523374557, 0.11840631067752838, 0.009257574565708637, 0.07895608991384506, -0.09868987649679184, 0.06026415526866913, 0.07240873575210571, 0.05881147459149361, -0.1260068416595459, 0.06150341406464577, -0.053852345794439316, 0.05025732144713402, -0.11158633977174759, -0.024782860651612282, 0.11096987873315811, 0.03644175827503204, 0.10391881316900253, 0.11386324465274811, -0.06461741775274277, -0.013233606703579426, 0.06167984381318092, -0.10548072308301926, 0.04811954125761986, 0.10629834234714508, -0.009064673446118832, 0.16756729781627655, 0.038000982254743576, 0.14712858200073242, 0.0388428159058094, 0.06226233020424843, 0.03359168395400047, -0.09757386147975922, 0.11630768328905106, 0.12674744427204132, 0.043362826108932495, -0.035339489579200745, -0.11990947276353836, -0.14282315969467163, 0.11223046481609344, 0.021177804097533226, -0.01004369743168354, 0.10442252457141876, 0.0062404656782746315, -0.16735684871673584, -0.07940904051065445, -0.08103089779615402, -0.088904969394207, 0.07717204838991165, -0.1689874827861786, -0.032647233456373215, 0.051155753433704376, -0.005241993349045515, 0.01721186749637127, -0.02326643466949463, 0.06309430301189423, 0.026105375960469246, 0.1153835877776146, -0.02816319651901722, -0.06837794929742813, 0.04118618741631508, 0.07329785823822021, -0.06424761563539505, 0.10193588584661484, -0.10590766370296478, 0.12318811565637589, -0.02562933787703514, 0.058134738355875015, -0.02413792349398136, -0.07660771906375885, -0.09640821814537048, -0.024898594245314598, -0.11344186961650848, 0.08174939453601837, 0.012204647064208984, 0.010088862851262093, 0.04492776840925217, 0.08917636424303055, 0.12529030442237854, -0.12074564397335052, 0.05641089752316475, 0.0639716163277626, -0.07138864696025848, -0.14149606227874756, 0.03825167194008827, -0.09625809639692307, -0.05807754769921303, -0.04577738046646118, 0.044377852231264114, 0.02869912050664425, 0.049680985510349274, 0.08685551583766937, -0.015374432317912579, -0.09269663691520691, -0.031089913100004196, 0.059247106313705444, -0.10685807466506958, 0.07025591284036636, -0.07874449342489243, -0.11731088906526566, 0.028804458677768707, -0.09799911081790924, 0.1165129765868187, -0.13905292749404907, 0.09467281401157379, -0.12016887962818146, 0.01618899032473564, 0.03982941433787346, -0.07442156970500946, 0.01852542534470558, 0.022519953548908234, -0.003240075660869479, -0.09291147440671921, 0.030916718766093254, -0.08893398940563202, -0.056317683309316635, -0.036766424775123596, -0.03798243775963783, 0.013795400969684124, 0.03187340125441551, -0.046397339552640915, 0.08433984220027924, -0.015548480674624443, -0.15306474268436432, -0.06264584511518478, -0.015131290070712566, -0.06658226251602173, 0.04135720804333687, 0.07884226739406586, 0.012195879593491554, -0.041420578956604004, -0.01847582496702671, 0.08805657923221588, 0.1362571120262146, 0.10568027943372726, -0.04734748974442482, 0.049378395080566406, 0.014019514434039593, -0.09133289754390717, -0.14851900935173035, 0.1074627935886383, -0.034440118819475174, -0.11994023621082306, -0.08567032217979431, -0.07898982614278793, 0.034410055726766586, -0.10148628801107407, -0.06791332364082336, 0.03181112930178642, -0.008573314175009727, -0.04594774916768074, 0.06635429710149765, -0.18327365815639496, 0.027525922283530235, -0.0014622727176174521, 0.10331139713525772, 0.17120492458343506, -0.07737854868173599, 0.10790053009986877, -0.015308724716305733, -0.06905879825353622, 0.1515303999185562, -0.1098385602235794, -0.0649411752820015, 0.055260106921195984, -0.046299733221530914, -0.04893362894654274, 0.038564540445804596, 0.0431915782392025, 0.07421807944774628, 0.07873379439115524, 0.06201307848095894, 0.0471082367002964, 0.05055321380496025, -0.11619336158037186, 0.12538065016269684, -0.12332087755203247, -0.13233336806297302, 0.005170908290892839, 0.03554968535900116, 0.10661926120519638, 0.07708248496055603, -0.059858109802007675, 0.11749714612960815, 0.0934864729642868, -0.09617307782173157, 0.03666801005601883, 0.08529533445835114, 0.21283435821533203, 0.11424995213747025, -0.13987982273101807, -0.06865482777357101, -0.01430042739957571, -0.08969558775424957, 0.021015286445617676, -0.007934791035950184, -0.09478990733623505, -0.11283896863460541, 0.06042196601629257, 0.009319244883954525, 0.05822884663939476, 0.017482535913586617, -0.036322254687547684, 0.10217346251010895, 0.015473481267690659, -0.03752747178077698, 0.06582428514957428, 0.04439758509397507, 0.12010964006185532, 0.03506756201386452, 0.0009060814045369625, 0.07206328213214874, 0.030396433547139168, -0.006553376093506813, -0.07497815787792206, 0.0513341911137104, 0.023946398869156837, 0.043390803039073944, 0.035487111657857895, -0.022736089304089546, -0.0010370064992457628, -0.036066632717847824, -0.058255430310964584, 0.11561115086078644, -0.027486532926559448, 0.011028469540178776, -0.07734083384275436, -0.019734550267457962, 0.10726837813854218, -0.13311509788036346, -0.10602179914712906, 0.02492637373507023, 0.02691396325826645, 0.030360113829374313, -0.021626286208629608, -0.0013658731477335095, -0.021152164787054062, -0.014009942300617695, -0.0011723132338374853, 0.12126808613538742, 0.014666163362562656, 0.024225957691669464, 0.031652674078941345, 0.032423991709947586, 0.042575497180223465, -0.05958375707268715, 0.010117651894688606, 0.13515007495880127, -0.03697171434760094, -0.09210806339979172, 0.09120737016201019, 0.09910988062620163, -0.13844843208789825, -0.026880882680416107, -0.08965375274419785, 0.0068358066491782665, 0.036162879317998886, 0.013256411999464035, 0.0787990465760231, -0.0303666852414608, -0.017126889899373055, 0.01604960858821869, 0.07016979157924652, 0.08959279209375381, -0.016237717121839523, 0.033868398517370224, -0.010900176130235195, 0.08542069792747498, -0.02775331400334835, 0.008304156363010406], +function:[0.10636463016271591, -0.09093697369098663, 0.03366115316748619, 0.045668091624975204, -0.09207337349653244, -0.04628286510705948, -0.055682748556137085, 0.12240089476108551, 0.06571640074253082, -0.04376527667045593, 0.1035265102982521, -0.0007100199582055211, 0.07963373512029648, -0.10179445892572403, -0.10437877476215363, -0.0687110424041748, -0.06345173716545105, -0.0793454647064209, 0.07170704007148743, -0.07842882722616196, -0.13497404754161835, -0.019345441833138466, -0.04463526979088783, -0.07130805402994156, -0.09060583263635635, -0.08486883342266083, 0.04438289627432823, 0.021108420565724373, 0.10732090473175049, -0.06616275757551193, 0.07479206472635269, -0.08606132119894028, -0.09423815459012985, -0.00050100137013942, 0.0862329974770546, 0.14546513557434082, 0.11812255531549454, -0.1122535765171051, -0.09713223576545715, 0.07222585380077362, -0.07565224915742874, 0.08415631949901581, -0.016414210200309753, 0.04789493605494499, 0.030321432277560234, -0.03371110185980797, -0.08828567713499069, -0.04840056225657463, -0.01645897515118122, 0.09799464046955109, 0.11220557987689972, -0.05702747777104378, -0.04914645478129387, -0.10652489215135574, -0.093898706138134, -0.08659631013870239, 0.0349891297519207, 0.01619207113981247, -0.11152142286300659, 0.13282936811447144, 0.10565949231386185, -0.016095280647277832, -0.017181241884827614, -0.005690185818821192, -0.013025977648794651, -0.07826867699623108, 0.11041410267353058, -0.05758385360240936, 0.008071129210293293, -0.036459531635046005, 0.0960446447134018, -0.07646013796329498, -0.07626263797283173, 0.10909294337034225, 0.07478556036949158, 0.032468751072883606, -0.042799968272447586, -0.027272773906588554, 0.02798498421907425, -0.0577828623354435, 0.046231985092163086, -0.1042947769165039, 0.09440890699625015, -0.02059534750878811, -0.06920582801103592, -0.028267621994018555, -0.11077085882425308, 0.028552580624818802, 0.07699550688266754, 0.022208115085959435, -0.0714598223567009, 0.09617487341165543, -0.10696902126073837, -0.10177042335271835, 0.018112044781446457, 0.055619291961193085, -0.12451688945293427, -0.03635035827755928, 0.020866231992840767, 0.020788466557860374, 0.0668838769197464, 0.08615653216838837, -0.015333002433180809, 0.10508114099502563, 0.0742684081196785, 0.0659213587641716, -0.07447812706232071, -0.07097822427749634, -0.023108607158064842, -0.05021282657980919, -0.08040722459554672, -0.028789395466446877, 0.06482067704200745, 0.023828960955142975, -0.0059611308388412, 0.11723040044307709, -0.0251418799161911, 0.11883068829774857, 0.09044084697961807, 0.09448574483394623, -0.0824069231748581, 0.1028088852763176, 0.021808208897709846, 0.07911299169063568, 0.003928525373339653, 0.017413221299648285, 0.001482243649661541, 0.10249804705381393, 0.04128381982445717, 0.0912725105881691, 0.10013611614704132, -0.0852608010172844, 0.060972172766923904, 0.058863598853349686, -0.07906661927700043, 0.09474167972803116, -0.06639641523361206, -0.04451025649905205, 0.04330966994166374, -0.04391587898135185, 0.047392744570970535, 0.04719935730099678, 0.04133079573512077, -0.07063473016023636, 0.03537775203585625, -0.03053933009505272, -0.0571223683655262, 0.0334324985742569, 0.10916353017091751, -0.0024962122552096844, 0.07486961781978607, -0.03947475925087929, -0.1282380372285843, 0.06673042476177216, -0.006444655824452639, 0.012929818592965603, 0.07376769930124283, -0.08565471321344376, -0.07222621887922287, -0.10844676196575165, 0.07284118980169296, 0.10497209429740906, -0.08732551336288452, -0.09224341809749603, -0.09056561440229416, 0.013264602050185204, 0.04042061045765877, 0.020710911601781845, 0.008925143629312515, 0.06939924508333206, -0.08348912000656128, 0.10968372225761414, -0.08009769767522812, 0.0655200183391571, 0.04853162169456482, 0.005948999430984259, -0.044249922037124634, 0.045933421701192856, -0.01577894389629364, -0.12890399992465973, 0.03985580801963806, -0.0017914309864863753, 0.09309934824705124, 0.1243164911866188, 0.03190873563289642, 0.10956501215696335, 0.002575598657131195, 0.07927132397890091, -0.009561112150549889, -0.086643747985363, -0.07886363565921783, -0.05551685765385628, 0.06038793548941612, 0.08091264218091965, -0.019790416583418846, -0.06850431114435196, 0.04483628273010254, -0.045251280069351196, 0.08159040659666061, -0.08684363216161728, -0.07605939358472824, 0.11219792813062668, -0.022588152438402176, 0.1207057386636734, 0.10994107276201248, 0.06877262145280838, -0.039467114955186844, 0.05471446365118027, 0.10050195455551147, -0.09439324587583542, -0.03933722898364067, -0.019713470712304115, -0.10092353075742722, -0.05682452768087387, -0.034629788249731064, 0.08989877998828888, -0.07816505432128906, -0.1084880530834198, -0.008597016334533691, -0.04072631523013115, -0.0672404021024704, -0.05674785003066063, -0.09886781126260757, -0.06144222617149353, -0.0032643787562847137, -0.08185463398694992, -0.14244039356708527, 0.07135624438524246, -0.11732311546802521, -0.01886318437755108, -0.10975287109613419, -0.011644978076219559, -0.13532109558582306, -0.14100703597068787, -0.0012474235845729709, 0.004851440899074078, 0.05966261774301529, -0.018314851447939873, -0.07976474612951279, -0.018400346860289574, -0.06760727614164352, -0.048278965055942535, -0.1072344183921814, 0.05159159004688263, 0.024522390216588974, 0.09378553926944733, 0.08398892730474472, 0.005806938745081425, 0.07430782169103622, -0.09286700189113617, 0.02944714017212391, 0.07335101813077927, 0.07679906487464905, -0.045036010444164276, -0.08543923497200012, -0.06358610838651657, 0.06550917029380798, -0.020959539338946342, -0.09281458705663681, 0.06471798568964005, -0.07413670420646667, -0.11271224170923233, -0.0396389365196228, 0.09735456109046936, -0.05257859826087952, -0.0943145602941513, -0.10489002615213394, 0.09669192880392075, -0.017220253124833107, -0.014288073405623436, 0.08237948268651962, 0.06052960082888603, -0.09275754541158676, -0.08765531331300735, 0.07563166320323944, -0.043061673641204834, 0.1108601987361908, -0.0316106416285038, -0.10236600041389465, -0.10349875688552856, -0.055536817759275436, -0.05340654402971268, -0.02335388958454132, 0.03487680107355118, -0.05118877813220024, 0.07494086027145386, -0.11953553557395935, 0.02949107252061367, 0.0400792695581913, -0.10129618644714355, -0.06266139447689056, 0.0026072668842971325, 0.045467302203178406, 0.11862564086914062, 0.06294824928045273, -0.1103067472577095, 0.10927530378103256, -0.10479472577571869, -0.05969323590397835, 0.08579611778259277], +getelementptr:[0.024348551407456398, 0.002704210812225938, 0.08065490424633026, -0.10160396993160248, 0.02080702967941761, 0.18258045613765717, 0.06432326138019562, -0.056995097547769547, -0.0330045260488987, 0.07064907252788544, 0.024185841903090477, -0.07768093049526215, -0.029181204736232758, 0.12169629335403442, -0.016831252723932266, 0.04401152953505516, 0.09370813518762589, 0.04404459521174431, -0.08612098544836044, 0.05436510965228081, 0.0034453037660568953, 0.13393418490886688, 0.1138172373175621, 0.09973489493131638, -0.017794260755181313, 0.03490208461880684, -0.02041669376194477, 0.06225810572504997, -0.038184262812137604, 0.14802175760269165, -0.07717418670654297, -0.08836431056261063, -0.02417597733438015, 0.028191542252898216, -0.06539333611726761, -0.04448319599032402, -0.033384889364242554, 0.002911533461883664, 0.05333210900425911, -0.11022477596998215, 0.05392014980316162, 0.12270194292068481, -0.0011767592513933778, -0.06681764870882034, 0.04437648877501488, -0.11912406235933304, 0.060942601412534714, 0.09337718039751053, 0.04607123136520386, -0.03651872277259827, 0.004058170132339001, 0.03260467201471329, 0.05481879413127899, 0.06522778421640396, 0.08257690072059631, 0.03466891497373581, 0.10907885432243347, -0.0410224124789238, 0.02326044626533985, -0.010774105787277222, 0.04132382199168205, 0.07243011146783829, -0.06882607191801071, 0.10547087341547012, 0.11209788173437119, 0.04440395534038544, -0.037884172052145004, -0.10176832973957062, 0.021081440150737762, 0.01561296358704567, 0.017866669222712517, 0.054037533700466156, -0.022835828363895416, 0.09980196505784988, -0.05720580369234085, 0.10797598958015442, 0.08229999989271164, 0.07961834222078323, 0.06456989794969559, 0.2292345017194748, -0.0675927922129631, 0.011850578710436821, -0.011636023409664631, 0.15486735105514526, 0.06662238389253616, -0.09764258563518524, 0.02645227499306202, -0.013197545893490314, -0.028857052326202393, -0.04201802238821983, 0.07341362535953522, -0.0359320230782032, -0.0675622746348381, -0.010507560335099697, -0.08317382633686066, 0.04051686078310013, -0.05533487722277641, 0.003188950475305319, -0.08692507445812225, -0.00973562803119421, -0.08924929052591324, -0.04755137488245964, -0.03831344470381737, 0.06306472420692444, -0.07196126878261566, 0.10251356661319733, 0.052364643663167953, 0.08111019432544708, 0.02022380568087101, -0.048500705510377884, 0.04518473148345947, 0.048579633235931396, -0.053756218403577805, -0.12709638476371765, -0.14072459936141968, -0.07799659669399261, -0.10095901787281036, -0.04315204918384552, -0.05224054306745529, -0.0977378711104393, 0.06237971410155296, 0.013166128657758236, -0.0650634691119194, -0.04370758309960365, -0.09504242986440659, 0.05064735189080238, 0.020962055772542953, -0.023518452420830727, -0.06728515774011612, -0.07979429513216019, -0.0006579146720468998, 0.02827783115208149, -0.0857655331492424, -0.09417640417814255, 0.05623786151409149, 0.0007126452401280403, 0.013095784932374954, 0.038517799228429794, -0.06151473894715309, -0.00906913448125124, -0.11642786115407944, -0.06483151018619537, -0.03653871640563011, 0.06659840047359467, -0.0777178704738617, 0.08363865315914154, -0.16534081101417542, 0.040080904960632324, 0.008891383185982704, 0.27655255794525146, -0.061999015510082245, 0.09208019822835922, 0.05334571376442909, -0.11453038454055786, 0.08081374317407608, 0.0593123622238636, -0.01913793385028839, -0.020716311410069466, 0.014540192671120167, 0.022049035876989365, -0.14246338605880737, -0.014535583555698395, 0.017321908846497536, 0.12038098275661469, 0.09494547545909882, -0.038652896881103516, 0.10247453302145004, -0.014006461016833782, -0.05079958587884903, -0.04668547213077545, 0.08335304260253906, -0.016387736424803734, -0.059951331466436386, -0.09513310343027115, -0.07163465768098831, 0.02168385311961174, 0.05986187234520912, 0.01559228915721178, -0.1779806911945343, 0.01305596437305212, 0.00862974114716053, -0.007211580406874418, 0.06556009501218796, 0.02011762373149395, -0.0019903534557670355, 0.061245523393154144, 0.04707076773047447, -0.04821695759892464, 0.10387931019067764, 0.03761355206370354, -0.0674416720867157, 0.11343950778245926, 0.056353580206632614, -0.08274505287408829, 0.17115837335586548, -0.06272289901971817, -0.059930846095085144, 0.19652625918388367, 0.0030790455639362335, 0.0715603455901146, 0.0669671818614006, 0.027655242010951042, -0.06131115183234215, 0.01141229085624218, -0.1044844388961792, -0.053895119577646255, -0.026118343695998192, -0.006394493393599987, 0.012864620424807072, 0.06876024603843689, 0.08032150566577911, -0.0790969729423523, -0.05290449038147926, -0.085045225918293, 0.01013183780014515, -0.052285078912973404, -0.08984283357858658, 0.07679469883441925, -0.009471336379647255, -0.05480676516890526, 0.0826190710067749, 0.06570432335138321, -0.014567272737622261, 0.03406023979187012, -0.06928875297307968, 0.00029732644907198846, -0.08589651435613632, -0.05952039733529091, 0.051303572952747345, 0.0249844491481781, 0.0547495074570179, 0.04812563210725784, -0.03250844031572342, 0.04693371057510376, 0.06553678214550018, 0.1293092668056488, -0.07748941332101822, -0.05203544348478317, -0.0076570031233131886, 0.022964905947446823, 0.07583402097225189, 0.06660741567611694, 0.03000100888311863, -0.07556188106536865, 0.11946337670087814, 0.04496365785598755, 0.008742817677557468, -0.10192682594060898, 0.12450629472732544, 0.08238807320594788, -0.043710410594940186, 0.0014434715267270803, -0.08515059947967529, 0.08673282712697983, 0.022883908823132515, -0.029391150921583176, -0.060899518430233, -0.13845105469226837, 0.06871207058429718, 0.04157877340912819, 0.05239858105778694, -0.011464136652648449, -0.10260090231895447, -0.05713639035820961, -0.10318013280630112, -0.0018897776026278734, -0.02637569233775139, -0.0043593766167759895, 0.03388550877571106, -0.025928840041160583, -0.04043570160865784, -0.053772151470184326, 0.03353258594870567, 0.022050857543945312, 0.03725061193108559, 0.013700537383556366, 0.0024803720880299807, -0.06334056705236435, -0.03628433495759964, -0.01752273179590702, -0.07165925204753876, 0.10444451123476028, 0.06391478329896927, -0.11469302326440811, 0.06941090524196625, 0.10110614448785782, -0.09929253160953522, 0.08982860296964645, -0.07951824367046356, -0.03245249018073082, 0.02153053507208824, -0.158179372549057, -0.07231144607067108, 0.015440963208675385, -0.023147813975811005, 0.03175393119454384, -0.01060577668249607, 0.06706422567367554, -0.027632782235741615, 0.006383880507200956], +icmp:[0.02490835264325142, -0.0020591402426362038, -0.07206780463457108, -0.10548143833875656, -0.02554280124604702, -0.021960392594337463, 0.06601080298423767, -0.05286456272006035, -0.03170092776417732, -0.0033944188617169857, 0.036523617804050446, -0.08569023758172989, -0.01167544350028038, 0.12596866488456726, 0.026091262698173523, 0.05078667402267456, 0.11900271475315094, 0.03908240795135498, -0.07547248899936676, -0.03060886263847351, 0.07706750184297562, 0.03609371930360794, 0.08472039550542831, 0.04532996565103531, -0.005811905954033136, 0.037036772817373276, 0.11757807433605194, 0.0719871073961258, 0.04873863235116005, 0.017786048352718353, 0.1084643304347992, -0.061332542449235916, -0.040025997906923294, -0.045832596719264984, 0.02137056738138199, -0.02979240007698536, -0.03388907015323639, 0.008407408371567726, 0.09235263615846634, -0.11518687009811401, 0.055514875799417496, 0.12377193570137024, 0.22385025024414062, -0.08427801728248596, -0.015450886450707912, -0.17481999099254608, 0.0031031386461108923, 0.0964580774307251, 0.007637172471731901, -0.039448849856853485, 0.07276801019906998, 0.02898433990776539, 0.04755423963069916, 0.06270121783018112, 0.09714362025260925, 0.04076153412461281, 0.10207729041576385, -0.01912333071231842, 0.027073416858911514, -0.009334264323115349, 0.04438726231455803, 0.11249907314777374, -0.032262321561574936, 0.10910554975271225, 0.11768493801355362, 0.019687172025442123, -0.040052711963653564, 0.014732791110873222, 0.059176668524742126, 0.10402288287878036, 0.021246472373604774, 0.05517880991101265, -0.14120042324066162, 0.04618404805660248, -0.017906775698065758, -0.08602678030729294, 0.01792743243277073, -0.18520864844322205, 0.07221405953168869, -0.154743954539299, -0.08174925297498703, 0.015885649248957634, -0.0038134967908263206, -0.06304113566875458, 0.06539876759052277, 0.1614747792482376, 0.022002529352903366, 0.0016152920434251428, -0.03150147199630737, -0.020574014633893967, 0.07847797870635986, 0.09800377488136292, -0.07646498084068298, -0.010911386460065842, -0.08621204644441605, 0.11822163313627243, -0.05773954093456268, -0.011265759356319904, 0.18845805525779724, 0.047192465513944626, -0.09105587750673294, -0.008000248111784458, 0.001315869390964508, 0.07659752666950226, -0.07483826577663422, 0.014885653741657734, 0.06920842081308365, 0.08210208266973495, 0.03044953942298889, -0.06203380972146988, 0.04448516666889191, 0.051923103630542755, -0.048766713589429855, -0.13191650807857513, -0.15998689830303192, -0.09547994285821915, -0.1207757368683815, -0.04675694927573204, -0.05438101291656494, -0.1110226958990097, 0.046845193952322006, -0.00831923820078373, -0.06990836560726166, -0.04296541213989258, 0.08965524286031723, -0.07498104125261307, 0.007020547520369291, 0.044318851083517075, -0.04901332035660744, -0.013688075356185436, 0.006691675633192062, 0.07545893639326096, -0.012475482188165188, -0.10191822052001953, 0.07091588526964188, -0.0017432230524718761, 0.014184575527906418, 0.039718206971883774, -0.06367922574281693, -0.10270903259515762, -0.028273822739720345, -0.04938323050737381, 0.08093095570802689, 0.042374297976493835, -0.08015831559896469, -0.10253725945949554, 0.025820793583989143, -0.03488420322537422, 0.008144104853272438, 0.22913619875907898, -0.03709498047828674, 0.09560688585042953, 0.09807898104190826, -0.053556520491838455, -0.05904773250222206, 0.06121939420700073, -0.029900075867772102, -0.02724675089120865, 0.07958980649709702, 0.010772769339382648, 0.08797663450241089, -0.037769585847854614, 0.018231384456157684, 0.12078841775655746, 0.09804211556911469, -0.042788442224264145, -0.09681590646505356, -0.010234869085252285, -0.05169391632080078, 0.03325466066598892, 0.03144232928752899, -0.035998083651065826, -0.043528348207473755, -0.07880395650863647, -0.07381513714790344, 0.037048377096652985, -0.07995003461837769, -0.002178122056648135, -0.1858302652835846, -0.006919269450008869, 0.2113833874464035, -0.07039760798215866, -0.04571099579334259, 0.020696988329291344, -0.19556154310703278, 0.08927664160728455, -0.053036220371723175, -0.052793096750974655, 0.10744968056678772, 0.042379461228847504, -0.20944717526435852, 0.13058774173259735, 0.11249568313360214, 0.020230911672115326, 0.15663552284240723, 0.02014271169900894, -0.06153953820466995, -0.1920880526304245, 0.009929751046001911, 0.06663954257965088, 0.06962704658508301, -0.11065319925546646, -0.03601245954632759, 0.017185712233185768, -0.10917800664901733, -0.054171573370695114, -0.058557506650686264, -0.009744709357619286, 0.013354010879993439, 0.06892319768667221, -0.053846392780542374, 0.04105774685740471, -0.053938645869493484, 0.09103171527385712, 0.030536221340298653, -0.0485747829079628, 0.05324024707078934, 0.07826346158981323, 0.12965229153633118, -0.03094981610774994, 0.09456631541252136, -0.021098464727401733, -0.012802785262465477, 0.01332777924835682, -0.04596799984574318, 0.011652248911559582, -0.089930459856987, -0.044816501438617706, 0.03142393380403519, 0.03153643384575844, 0.061702992767095566, 0.0498165562748909, -0.03435870260000229, 0.09245169162750244, 0.058996547013521194, 0.1566753387451172, 0.024546416476368904, 0.11495257169008255, -0.007848457433283329, -0.04075431451201439, 0.08658165484666824, 0.06766200065612793, 0.02665145881474018, -0.03740226849913597, -0.12879996001720428, 0.04801875352859497, -0.013587255030870438, 0.08673001825809479, -0.09468025714159012, 0.05720530077815056, -0.04474455863237381, -0.1772499531507492, -0.05412452667951584, 0.07979048043489456, 0.021557703614234924, -0.03185996413230896, -0.07820755243301392, -0.08434039354324341, 0.07120703905820847, -0.09611209481954575, 0.01243622601032257, -0.011182423681020737, -0.08887742459774017, -0.059921298176050186, -0.009190436452627182, -0.0023009555879980326, -0.07564441114664078, 0.0001330445084022358, -0.00047371542314067483, -0.028660189360380173, -0.015561952255666256, -0.04440156742930412, 0.025953488424420357, 0.023835692554712296, 0.0030108988285064697, 0.011623037047684193, -0.08420717716217041, 0.027579940855503082, 0.004561270121484995, 0.03719963878393173, -0.010458404198288918, 0.08310629427433014, -0.04582254961133003, -0.06483785063028336, -0.006599625572562218, -0.03574416786432266, -0.10336354374885559, -0.0022121642250567675, -0.08905161172151566, -0.04595748707652092, 0.022963520139455795, -0.09018285572528839, -0.0802447497844696, 0.015291423536837101, -0.03601941093802452, 0.0324871726334095, -0.009045345708727837, 0.048425041139125824, -0.09373809397220612, 0.01766818016767502], +insertelement:[0.026236511766910553, 0.039866648614406586, -0.07701144367456436, 0.10930835455656052, -0.03724516183137894, 0.023200584575533867, 0.06653963029384613, 0.03796473518013954, -0.11196150630712509, -0.09326367825269699, 0.03821283206343651, 0.05302639305591583, -0.03506215661764145, 0.12888690829277039, -0.009830123744904995, -0.01434378046542406, 0.09688931703567505, 0.056973282247781754, -0.13460814952850342, 0.06104283779859543, 0.0783400684595108, 0.03988061100244522, 0.09419804066419601, 0.12158697098493576, 0.013532513752579689, 0.09498985856771469, 0.12860800325870514, -0.12656958401203156, 0.07329870760440826, 0.04629052057862282, 0.11245520412921906, 0.15069670975208282, -0.09356441348791122, -0.04083293303847313, 0.05861356109380722, -0.022777197882533073, -0.04059232771396637, 0.05494130402803421, 0.056403085589408875, -0.12069163471460342, 0.009177428670227528, 0.046884935349226, 0.17264913022518158, -0.10544542223215103, -0.004070864990353584, -0.033556319773197174, 0.06425778567790985, 0.09921196103096008, 0.13639310002326965, -0.05654444918036461, -0.02743220143020153, 0.05659141391515732, 0.035326797515153885, 0.0676712691783905, 0.10951858758926392, 0.03580818697810173, 0.11794228106737137, -0.04188588634133339, 0.139430969953537, 0.054190535098314285, 0.06331315636634827, 0.026415660977363586, -0.1212884858250618, 0.12252668291330338, 0.11694414168596268, 0.06724800169467926, -0.03752442076802254, -0.1004829928278923, -0.12640757858753204, -0.060862231999635696, 0.015069819055497646, -0.009866707026958466, -0.01003290805965662, 0.0017090241890400648, -0.1276635229587555, -0.029629342257976532, -0.0008150794892571867, 0.0016526338877156377, 0.07202709466218948, -0.1520029902458191, -0.03310617431998253, 0.04982530325651169, 0.032867711037397385, -0.08479604870080948, 0.043370626866817474, -0.006039143074303865, 0.021051859483122826, 0.10670652240514755, -0.02052595466375351, -0.06138486787676811, 0.09467504173517227, 0.09076660126447678, -0.060519859194755554, 0.008912966586649418, -0.09532762318849564, 0.0843437984585762, -0.03081587888300419, 0.038583796471357346, 0.10764016956090927, -0.0955687016248703, -0.09221771359443665, -0.00703664543107152, 0.07716713100671768, -0.038062356412410736, 0.035459645092487335, -0.027840571478009224, 0.09336289018392563, 0.08846340328454971, 0.16831974685192108, 0.05755947530269623, 0.04436338692903519, 0.05739917233586311, -0.05427710711956024, -0.1352393925189972, -0.04612204432487488, -0.09612663835287094, -0.08851722627878189, 0.06541228294372559, -0.055572282522916794, 0.0023127419408410788, 0.047313883900642395, 0.07834575325250626, 0.08410493284463882, -0.09808854013681412, 0.041929692029953, -0.1665063053369522, -0.05701439827680588, 0.036573074758052826, -0.07339432835578918, -0.08054812997579575, -0.006190828047692776, -0.03837895020842552, 0.10971546173095703, -0.13016875088214874, 0.09129808098077774, -0.04262758046388626, 0.015016965568065643, 0.03786110132932663, 0.10071921348571777, 0.0312131829559803, 0.03377571702003479, -0.004120072815567255, -0.010067969560623169, 0.038811780512332916, -0.08176735788583755, -1.312419590249192e-05, 0.06195636838674545, -0.032160643488168716, 0.012183544225990772, 0.017108241096138954, -0.04618771746754646, 0.10351777076721191, -0.08073589950799942, -0.09379883855581284, -0.019552161917090416, -0.045144449919462204, -0.024141423404216766, 0.0323786623775959, 0.07880035042762756, 0.003988528158515692, 0.0007970652659423649, -0.11851239204406738, 0.018521584570407867, 0.14060303568840027, 0.1000124141573906, -0.061547692865133286, 0.02737429365515709, -0.01078067533671856, -0.1422150582075119, -0.06507392972707748, 0.1033233031630516, -0.03715851530432701, -0.017887793481349945, -0.03345659375190735, -0.0760473757982254, 0.040218498557806015, 0.011535421013832092, -0.09320201724767685, -0.011745303869247437, -0.005941650830209255, 0.15956369042396545, 0.0661594569683075, 0.04024044796824455, 0.08903325349092484, -0.002210065955296159, 0.09504852443933487, -0.13303932547569275, -0.0573556087911129, 0.10961511731147766, -0.06183096393942833, -0.01724303513765335, 0.14631454646587372, -0.07222264260053635, -0.10167594254016876, -0.03389512374997139, -0.0819324404001236, -0.04672297462821007, 0.2412962168455124, 0.10414785891771317, 0.08320487290620804, 0.07609754800796509, 0.0996941551566124, -0.022441070526838303, 0.03439369052648544, -0.11919721961021423, -0.07730212807655334, 0.034588057547807693, -0.017395462840795517, 0.014009583741426468, 0.03849854692816734, 0.00422626594081521, 0.11614406108856201, -0.05566011369228363, 0.10099144279956818, 0.07524426281452179, -0.13071796298027039, 0.05322692170739174, 0.0684959888458252, 0.04338212311267853, -0.021295836195349693, 0.11920534074306488, 0.11502306908369064, 0.0027245923411101103, -0.1252565234899521, -0.042194560170173645, 0.01628422923386097, -0.09146905690431595, -0.10221292078495026, -0.07017050683498383, 0.02909957244992256, 0.07964117079973221, -0.08481044322252274, -0.0956462174654007, 0.0934586450457573, -0.0420701801776886, 0.017171751707792282, 0.05990630015730858, -0.02221010811626911, -0.05527366325259209, 0.09337667375802994, 0.07905591279268265, 0.06724507361650467, 0.03275712952017784, -0.12274949997663498, -0.07255514711141586, 0.04781530797481537, 0.0479423813521862, 0.07083296030759811, 0.049645327031612396, 0.1423630714416504, -0.03791769966483116, 0.08301545679569244, -0.054228998720645905, 0.1108832061290741, 0.0024749869480729103, 0.01941487193107605, -0.10050918906927109, 0.0004253043152857572, 0.10250085592269897, -0.0031002452597022057, -0.09800568222999573, 0.044355619698762894, 0.08161065727472305, 0.03143492341041565, 0.018968138843774796, 0.10251317173242569, -0.02899692766368389, -0.0037826215848326683, 0.0005853021866641939, 0.04490964487195015, -0.012135792523622513, -0.033239103853702545, 0.04106644541025162, 0.1118757501244545, 0.06259273737668991, -0.05254024639725685, 0.1091141477227211, 0.03681086003780365, 0.050539497286081314, -0.003830395406112075, -0.06594613939523697, 0.12315623462200165, -0.13240642845630646, -0.0010632126359269023, 0.0124391233548522, -0.12441742420196533, -0.08069652318954468, 0.017797403037548065, -0.038643304258584976, 0.0083157354965806, -0.10109548270702362, -0.034880105406045914, 0.05603937804698944, 0.016714196652173996, -0.10581710189580917, 0.03253127261996269, -0.013455653563141823, 0.05961425229907036, -0.03035230189561844, 0.014012034982442856], +insertvalue:[0.15121378004550934, 0.11053252220153809, -0.0013199622044339776, -0.009245271794497967, 0.10844673961400986, -0.0007097750785760581, 0.09599406272172928, -0.1391865462064743, 0.08006640523672104, 0.01002729032188654, -0.019841479137539864, 0.07075006514787674, 0.13315710425376892, -0.057388704270124435, -0.07009328901767731, -0.05623602494597435, 0.04992786794900894, 0.027906743809580803, 0.12667806446552277, 0.035304028540849686, -0.05200808867812157, 0.02344568446278572, 0.09315836429595947, 0.10993880033493042, -0.07618448138237, 0.1236017718911171, -0.11442963033914566, -0.06334694474935532, -0.06919626891613007, 0.15163341164588928, 0.07711973041296005, -0.0017804893432185054, 0.10323520004749298, -0.018513787537813187, 0.09684783965349197, -0.09455569088459015, -0.13634318113327026, 0.009213785640895367, 0.03777540102601051, 0.02297755889594555, 0.02085033804178238, -0.06304510682821274, 0.011075923219323158, 0.11616602540016174, 0.11860547959804535, -0.030984094366431236, 0.15235020220279694, -0.01131387334316969, -0.10015001147985458, 0.10168735682964325, -0.00970093160867691, 0.1206047385931015, 0.14572441577911377, 0.11905985325574875, 0.03444627672433853, -0.02751263603568077, 0.023897653445601463, -0.034909993410110474, -0.002091891597956419, 0.02212350443005562, -0.11025413125753403, 0.022919803857803345, 0.0040550329722464085, 0.04842933639883995, 0.03977704793214798, 0.05174669995903969, 0.010583375580608845, -0.120668925344944, -0.06508808583021164, -0.023077966645359993, 0.04009895771741867, 0.10932322591543198, 0.0027192747220396996, 0.05446700379252434, 0.042398326098918915, 0.009078532457351685, 0.04553879797458649, -0.07326969504356384, -0.046928249299526215, 0.0017188427736982703, -0.029371507465839386, -0.07583250850439072, -0.1360315978527069, 0.0027508926577866077, 0.04143962264060974, 0.0020507622975856066, -0.11056982725858688, 0.1622007042169571, 0.12572908401489258, -0.06495203077793121, -0.07507126778364182, 0.040581878274679184, 0.0010965766850858927, 0.09743671119213104, -0.05445272475481033, -0.11177080869674683, 0.02904456853866577, 0.09337342530488968, -0.06884808093309402, -0.06752131134271622, 0.02318020723760128, 0.13116860389709473, 0.07341363281011581, -0.053408533334732056, -0.0044936612248420715, -0.03953934833407402, 0.06186854839324951, 0.01551531907171011, 0.04936237633228302, 0.03798079863190651, 0.0033392044715583324, 0.0020761643536388874, -0.08099624514579773, -0.04980752617120743, 0.07100840657949448, -0.056679654866456985, 0.04789392650127411, -0.04401428997516632, 0.01175276655703783, 0.024605046957731247, 0.00291738985106349, 0.09074338525533676, -0.029033608734607697, 0.1138535812497139, -0.02141984924674034, 0.04153049737215042, 0.05982353165745735, 0.12108650803565979, -0.08178400993347168, -0.1033347100019455, -0.1503371000289917, -0.03242471069097519, 0.07330010831356049, 0.12065105885267258, 0.02684713713824749, -0.09826109558343887, 0.12012922018766403, -0.01996268518269062, 0.06320849806070328, 0.09612532705068588, 0.08438242226839066, 0.017550494521856308, -0.06955250352621078, 0.01383232418447733, 0.0705668106675148, 0.005184181034564972, 0.04809166118502617, -0.07042618840932846, 0.12628698348999023, 0.031596891582012177, -0.13703010976314545, 0.02488136477768421, 0.10851133614778519, -0.10175701230764389, -0.138804093003273, 0.13384327292442322, 0.1177918016910553, 0.12541118264198303, 0.0745597630739212, -0.045899342745542526, -0.029576648026704788, 0.032201945781707764, -0.0771416649222374, -0.11919093877077103, -0.06996439397335052, -0.0669763833284378, -0.01407864224165678, -0.0858512818813324, -0.027821291238069534, 0.08012350648641586, -0.12873978912830353, -0.09375514090061188, -0.07642242312431335, -0.0828898698091507, 0.12449900060892105, -0.10653023421764374, -0.08794792741537094, 0.06397096067667007, -0.012551170773804188, -0.09536220878362656, 0.012182092294096947, -0.013397465460002422, 0.07309812307357788, -0.057134926319122314, -0.06056324392557144, 0.09982717782258987, 0.039930377155542374, -0.06093982607126236, -0.12064759433269501, -0.08063895255327225, -0.039098531007766724, -0.031271323561668396, -0.03824201226234436, 0.049042608588933945, -0.028928367421030998, 0.039168912917375565, 0.10984453558921814, 0.006428854074329138, -0.008297305554151535, -0.024574892595410347, -0.10504480451345444, -0.0106505723670125, -0.05821678042411804, 0.058131713420152664, 0.08630760759115219, 0.11896028369665146, -0.1312389075756073, -0.03045886568725109, -0.09731771051883698, -0.07378420978784561, 0.09219376742839813, -0.12185105681419373, -0.058099690824747086, -0.06806286424398422, 0.13333101570606232, 0.050260137766599655, -0.04406614974141121, 0.03783110901713371, 0.047430820763111115, -0.021748153492808342, -0.12493012100458145, 0.03809763863682747, -0.09777829796075821, 0.09129534661769867, -0.05140237882733345, -0.00565081462264061, 0.01772194914519787, 0.06675845384597778, -0.118430957198143, -0.12209686636924744, 0.03713003545999527, -0.1060909554362297, 0.042184293270111084, -0.07700210064649582, 0.008948802016675472, 0.05544237792491913, -0.06754883378744125, 0.04794109985232353, -0.05647064000368118, -0.06636293977499008, -0.08820019662380219, 0.1441190540790558, 0.042559195309877396, 0.0795089453458786, -0.02786298841238022, -0.020994193851947784, -0.08975039422512054, -0.02667715772986412, 0.041816528886556625, 0.0708579495549202, -0.09192407876253128, -0.01368248276412487, 0.024366214871406555, -0.05035899206995964, 0.13248732686042786, 0.02106618881225586, 0.06547825038433075, 0.024935707449913025, -0.0030220465268939734, -0.009872148744761944, 0.08040598779916763, 0.09889029711484909, -0.033887334167957306, 0.028454508632421494, -0.05580735206604004, -0.04053863510489464, 0.029419604688882828, -0.06189803034067154, 0.11874271929264069, 0.014456020668148994, 0.10390914976596832, 0.027954615652561188, 0.05178799107670784, -0.017565572634339333, 0.03939899429678917, -0.08661927282810211, 0.07139979302883148, -0.07649384438991547, 0.05042363703250885, -0.0915873646736145, 0.13590453565120697, 0.07649939507246017, -0.11652930080890656, -0.023560231551527977, 0.022189589217305183, -0.07860108464956284, 0.11823886632919312, 0.008156455121934414, -0.02062995918095112, 0.025438033044338226, -0.043459080159664154, -0.08968356251716614, 0.07877461612224579, 0.08220500499010086, -0.10554303973913193, 0.0690477192401886, 0.03734366223216057, 0.05201994255185127, 0.03888646513223648, 0.09884549677371979], +integerTy:[-0.11442288756370544, -0.11018656194210052, -0.06473278254270554, 0.03586072847247124, 0.11640560626983643, 0.021035214886069298, -0.0754103809595108, -0.07470297813415527, -0.11090226471424103, 0.04879041761159897, 0.09867265820503235, -0.12303256243467331, 0.057817243039608, -0.08957422524690628, -0.08861714601516724, 0.10773416608572006, -0.08023873716592789, -0.10420934855937958, -0.0029714324045926332, 0.0020505827851593494, 0.06442561745643616, 0.03111729770898819, 0.0022339532151818275, -0.012503627687692642, -0.1036553680896759, -0.08160221576690674, -0.14892220497131348, -0.017499877139925957, 0.05950097367167473, -0.13797679543495178, 0.01213421206921339, 0.06460100412368774, 0.08568201959133148, -0.07354480773210526, -0.03242849186062813, 0.12624962627887726, 0.0919896811246872, 0.024738410487771034, 0.12515516579151154, 0.08765457570552826, -0.06761468946933746, -0.06444481015205383, -0.0009590765694156289, 0.09624910354614258, -0.0459408275783062, -0.009022798389196396, -0.059311240911483765, -0.043785057961940765, -0.015521371737122536, 0.0849682092666626, 0.09692246466875076, -0.03569633513689041, -0.05484456941485405, -0.10828568786382675, -0.09187055379152298, -0.08880919963121414, 0.01692565344274044, 0.022311758249998093, -0.10048180818557739, -0.14662493765354156, -0.08232802152633667, 0.002052387921139598, 0.06732087582349777, -0.05964306741952896, -0.021321434527635574, -0.0012020986760035157, 0.05382509157061577, 0.12797711789608002, 0.029311219230294228, -0.03325808420777321, 0.08728744089603424, -0.06243561953306198, -0.07346714287996292, -0.048295777291059494, 0.09697243571281433, 0.002983051585033536, 0.03057088330388069, -0.00138547969982028, -0.08954618871212006, 0.02248498611152172, 0.05450073629617691, 0.08026714622974396, 0.1102222427725792, -0.001832194859161973, 0.003621169598773122, -0.011592427268624306, 0.08605582267045975, -0.005470463540405035, -0.08757034689188004, 0.022374019026756287, -0.010649272240698338, -0.10271408408880234, 0.07646536082029343, 0.01315299142152071, 0.03795485943555832, -0.0607861690223217, 0.017698800191283226, 0.0745733305811882, 0.019941726699471474, 0.05586192011833191, 0.0499870628118515, 0.049029458314180374, 0.03053654544055462, -0.027756376191973686, 0.07578779011964798, -0.06327184289693832, -0.0641048401594162, -0.08674443513154984, 0.013650371693074703, -0.019553203135728836, 0.08267156779766083, 0.10469885915517807, 0.06335776299238205, 0.019457753747701645, -0.046434056013822556, 0.022502640262246132, -0.03505688160657883, 0.051894791424274445, 0.04670294001698494, 0.07873048633337021, -0.11891865730285645, -0.04566866159439087, 0.07089383155107498, 0.030605198815464973, 0.011413214728236198, 0.0007283164304681122, 0.13500458002090454, 0.09773152321577072, 0.10375965386629105, 0.1272127479314804, 0.07613565027713776, 0.1571282595396042, -0.09079776704311371, 0.05661914870142937, -0.051228925585746765, -0.08101435005664825, 0.050368014723062515, 0.10465139895677567, 0.04066680371761322, 0.06277962774038315, -0.0019380167359486222, 0.039164621382951736, 0.05202970653772354, 0.04151808097958565, 0.0940195843577385, 0.002576470607891679, 0.004820206668227911, 0.1283312439918518, -0.06347111612558365, -0.0246734581887722, 0.14040319621562958, 0.047122370451688766, 0.06567800045013428, 0.08231193572282791, -0.001430262578651309, -0.111239954829216, 0.09025023877620697, 0.07881549000740051, -0.11774180084466934, -0.07679114490747452, 0.019480619579553604, -0.1122250109910965, 0.09731584787368774, -0.08242736756801605, -0.09821698069572449, -0.021409234032034874, 0.0023117142263799906, 0.10832279175519943, 0.10342377424240112, -0.03609362617135048, -0.08703944832086563, 0.0963621661067009, 0.12226764112710953, 0.07893998175859451, 0.10885313153266907, 0.12810593843460083, 0.13915307819843292, -0.06259924173355103, 0.03356743976473808, 0.11283335089683533, -0.01783106103539467, 0.009047741070389748, -0.025567742064595222, -0.13678133487701416, -0.0233705285936594, -0.09780114144086838, 0.022696223109960556, 0.17362551391124725, -0.08979958295822144, 0.10857952386140823, 0.06672095507383347, -0.11383987963199615, 0.06897125393152237, 0.07774849236011505, 0.03279523923993111, 0.06079673767089844, -0.11021629720926285, -0.040670447051525116, -0.04237339273095131, -0.11205293983221054, -0.0687820166349411, -0.050586432218551636, 0.012140358798205853, 0.07780008018016815, 0.0665215253829956, 0.09424404054880142, 0.1132151335477829, -0.07832963764667511, -0.06833343207836151, -0.06610049307346344, -0.053169135004282, 0.0855691209435463, 0.031114893034100533, -0.02855515293776989, -0.08070304244756699, 0.015491658821702003, -0.07634381949901581, 0.003199131228029728, -0.027070049196481705, 0.030755028128623962, -0.0779329314827919, 0.03780503571033478, -0.07492925971746445, -0.050779618322849274, -0.054405439645051956, 0.05498191714286804, 0.04998859390616417, 0.024637257680296898, -0.031075382605195045, -0.10255594551563263, -0.11115524917840958, -0.11087159067392349, 0.12285234034061432, -0.11490315198898315, 0.035301242023706436, 0.0031156984623521566, -0.11377177387475967, 0.029681429266929626, 0.08206066489219666, -0.06297633796930313, -0.03417477011680603, -0.06945282220840454, -0.10449816286563873, -0.08514417707920074, -0.02350955456495285, -0.10502896457910538, -0.0695786401629448, 0.015379452146589756, -0.03384614735841751, 0.010391772724688053, -0.11764837056398392, 0.011008702218532562, 0.08220516890287399, -0.030292199924588203, -0.011170328594744205, 0.05714680626988411, -0.03349289298057556, 0.007297060918062925, -0.03397747129201889, -0.026202959939837456, -0.0967828780412674, 0.08498040586709976, 0.02162497118115425, -0.09556221961975098, 0.043822355568408966, 0.08060169219970703, 0.014150644652545452, 0.10288456082344055, -0.0828271433711052, -0.05087379366159439, -0.07602598518133163, -0.005270324181765318, 0.09264228492975235, 0.10858668386936188, 0.09196937829256058, -0.07356707751750946, -0.00435539148747921, 0.0800352692604065, 0.08855240792036057, 0.06163519248366356, 0.06487935036420822, -0.08499879390001297, 0.09882103651762009, 0.032262787222862244, -0.007360097020864487, -0.10506286472082138, -0.0031965626403689384, -0.05587168037891388, 0.00435621477663517, -0.09457310289144516, 0.13839924335479736, 0.024671854451298714, -0.11671733111143112, -0.04648781940340996, 0.06221272796392441, 0.12969475984573364, 0.07777908444404602, -0.09111073613166809, 0.024424364790320396, 0.06094551458954811], +inttoptr:[-0.0302844550460577, -0.05134188011288643, -0.03941700980067253, -0.10402335226535797, -0.057402487844228745, -0.08011087030172348, -0.004902995657175779, -0.12645849585533142, -0.03938116505742073, -0.006605495233088732, 0.11252930760383606, -0.08661269396543503, 0.10750686377286911, -0.09294643998146057, 0.004892207216471434, 0.04465259984135628, 0.09691765904426575, -0.010025513358414173, 0.09023929387331009, -0.0031768898479640484, -0.12320555746555328, 0.035768911242485046, 0.12787438929080963, 0.10213050246238708, -0.01706666499376297, -0.11388977617025375, -0.01901335082948208, 0.12169639766216278, 0.08933494985103607, 0.01199776865541935, 0.018784943968057632, -0.13796588778495789, -0.0194723978638649, 0.13171949982643127, -0.03791659325361252, -0.02747354842722416, -0.09433551132678986, 0.01603221334517002, 0.11250986903905869, 0.010258411057293415, 0.0525147020816803, 0.07007940113544464, 0.00854959525167942, -0.09408226609230042, -0.09016423672437668, -0.013211734592914581, -0.07268752157688141, -0.07111664861440659, -0.10471032559871674, -0.026941824704408646, 0.08467570692300797, 0.052957333624362946, -0.053393393754959106, 0.054129768162965775, -0.05002691596746445, 0.042841143906116486, -0.03259269520640373, 0.008061216212809086, 0.03405260667204857, 0.0033461858984082937, -0.03329191356897354, -0.01089999545365572, -0.1322365403175354, 0.10740945488214493, -0.07826362550258636, -0.058804113417863846, 0.12941496074199677, 0.006252044811844826, -0.08288577944040298, 0.09676086902618408, 0.046750832349061966, 0.07638309895992279, -0.030128832906484604, 0.07033969461917877, 0.06854033470153809, -0.05039084702730179, 0.144663468003273, -0.03218214213848114, -0.13348938524723053, -0.006219594739377499, 0.06365097314119339, -0.007459843531250954, -0.11172863095998764, -0.016363002359867096, 0.07737741619348526, 0.023859774693846703, 0.13283447921276093, -0.09027857333421707, -0.04049112647771835, -0.05071000009775162, -0.1179107204079628, -0.11005431413650513, 0.07064428180456161, 0.11900897324085236, 0.13128399848937988, 0.11665763705968857, -0.05664888024330139, -0.05795987695455551, -0.019090354442596436, 0.03549030423164368, 0.002929887268692255, 0.048578713089227676, 0.05999651178717613, 0.12777185440063477, -0.07453524321317673, 0.11392033100128174, 0.08761260658502579, 0.038899682462215424, -0.10066301375627518, 0.015532487072050571, -0.03265766054391861, -0.06153753399848938, -0.050156816840171814, 0.043580666184425354, 0.029096821323037148, -0.11167542636394501, 0.013126919977366924, -0.046228379011154175, -0.05398363620042801, -0.1128029078245163, 0.014006651937961578, -0.11627654731273651, -0.06348805874586105, 0.06519488990306854, -0.059563688933849335, -0.015096506103873253, -0.0971200168132782, 0.012213579379022121, -0.06355457752943039, -0.08826109766960144, 0.0676417425274849, 0.1379469335079193, 0.07553447037935257, 0.07273475080728531, -0.06710857152938843, 0.05877579748630524, -0.11830520629882812, 0.03878791257739067, -0.04688549041748047, -0.03130487725138664, 0.015528698451817036, -0.11381466686725616, -0.027473488822579384, 0.12295462191104889, -0.07872546464204788, -0.015236911363899708, 0.02615373022854328, 0.040360983461141586, 0.020443150773644447, 0.03410710394382477, -0.03148677572607994, -0.07373267412185669, 0.14487093687057495, -0.10623498260974884, 0.03741828352212906, 0.06165606528520584, -0.017570024356245995, -0.09227869659662247, 0.0782376080751419, 0.016835294663906097, -0.054901089519262314, 0.13554365932941437, -0.016813481226563454, -0.10773932933807373, -0.02320737950503826, 0.08677282184362411, 0.0194088164716959, -0.052369412034749985, 0.1211872324347496, -0.02572747692465782, -0.050482992082834244, -0.03349446877837181, -0.024734342470765114, -0.09729701280593872, -0.07016102969646454, -0.046635404229164124, 0.060887083411216736, 0.07368110120296478, -0.008381727151572704, -0.06621117889881134, 0.003276527626439929, -0.061279915273189545, -0.009048494510352612, 0.10112152248620987, -0.02692732959985733, 0.12659846246242523, 0.014721682295203209, -0.04533154517412186, 0.12448269873857498, 0.0401548370718956, 0.005183426663279533, 0.056318141520023346, -0.037719935178756714, -0.12973013520240784, 0.0014122627908363938, 0.046261001378297806, 0.07061057537794113, -0.00850567128509283, 0.00309850019402802, 0.007728368975222111, 0.04746174439787865, -0.054850947111845016, 0.025893017649650574, 0.10102426260709763, -0.1008029505610466, -0.061872102320194244, -0.12526631355285645, 0.13762567937374115, -0.08038035780191422, -0.05170644447207451, 0.08900266140699387, -0.09557625651359558, -0.05263850465416908, -0.10803908109664917, 0.13159644603729248, 0.020391790196299553, -0.12319274991750717, -0.07713452726602554, -0.012725062668323517, -0.021465951576828957, -0.05516885221004486, 0.027742067351937294, -0.12559238076210022, 0.12881630659103394, 0.06011178344488144, -0.1138116866350174, -0.08933766931295395, 0.0009739347151480615, 0.04759950935840607, 0.0992981567978859, 0.05508960038423538, 0.0821349248290062, -0.0913880467414856, 0.12469931691884995, 0.0376584529876709, 0.012254545465111732, -0.055559564381837845, -0.019273927435278893, 0.05653563141822815, 0.08728761225938797, 0.11420496553182602, 0.018883787095546722, -0.018381012603640556, 0.052485741674900055, -0.01738874986767769, 0.02861565724015236, -0.03545215353369713, -0.02778683230280876, 0.015143207274377346, 0.10603874176740646, 0.052782926708459854, -0.020586995407938957, 0.045874446630477905, -0.10046909749507904, 0.02863253466784954, 0.07221509516239166, 0.12375649064779282, 0.010908477939665318, -0.03991508483886719, 0.05035695061087608, 0.0632660761475563, -0.018695194274187088, 0.004717619623988867, -0.05923993140459061, -0.05040972679853439, -0.0729912519454956, -0.08128934353590012, -0.0034021332394331694, -0.07693452388048172, -0.11719058454036713, -0.0014390322612598538, -0.05095421150326729, 0.0404365174472332, -0.04870089516043663, 0.0666273906826973, 0.09369248151779175, 0.012047859840095043, -0.11090631037950516, -0.05755000188946724, 0.12124756723642349, 0.06060529127717018, 0.04654643312096596, 0.00463546346873045, -0.0170228723436594, 0.04971117153763771, 0.029580801725387573, -0.10233840346336365, 0.020703189074993134, -0.12948128581047058, -0.13231362402439117, 0.13741979002952576, -0.01568201556801796, -0.11160821467638016, -0.08472041040658951, 0.13394328951835632, 0.054026223719120026, 0.08786600828170776, 0.06839735805988312, 0.017225464805960655, 0.03703811392188072], +invoke:[0.05083860084414482, 0.0053153689950704575, 0.08507001399993896, -0.10534881800413132, 0.08877227455377579, -0.07493812590837479, 0.059399910271167755, -0.012216915376484394, -0.03437931835651398, 0.07206954061985016, 0.022755824029445648, -0.07140367478132248, -0.011644505895674229, 0.12634970247745514, -0.03401932865381241, 0.05896810069680214, 0.05879025161266327, 0.03892182186245918, -0.053033243864774704, 0.0449848547577858, 0.042470261454582214, 0.06812748312950134, 0.06629237532615662, -0.10985136777162552, -0.025418004021048546, 0.02019658125936985, -0.021840721368789673, 0.06774144619703293, 0.042291224002838135, 0.08604049682617188, 0.040271468460559845, 0.00440770760178566, -0.03381757810711861, 0.007011839188635349, -0.06928594410419464, -0.08746801316738129, 0.01724741794168949, 0.00039372380706481636, 0.040976013988256454, -0.11409798264503479, 0.053485170006752014, 0.12863866984844208, -0.07702221721410751, -0.0649399533867836, 0.12164422869682312, 0.2383102923631668, -0.010481960140168667, 0.09610426425933838, -0.09208778291940689, 0.0396239273250103, -0.029029615223407745, 0.011160273104906082, 0.05497470125555992, 0.0686560645699501, -0.13644522428512573, -0.004221681039780378, 0.11281010508537292, -0.03944764286279678, -0.07250779122114182, 0.012193001806735992, 0.04387679696083069, 0.03609820082783699, 0.03500036150217056, 0.1086125373840332, 0.11813487112522125, -0.04490131512284279, -0.03927936777472496, 0.12915518879890442, 0.12223812937736511, 0.027365827932953835, 0.020824993029236794, 0.054297901690006256, -0.042579006403684616, 0.1267203837633133, -0.04354695603251457, 0.08651426434516907, -0.017091568559408188, 0.0289465319365263, -0.002942194463685155, -0.030875230208039284, -0.07307855784893036, 0.014019371941685677, -0.009186654351651669, 0.015857389196753502, -0.1071210652589798, 0.0225753765553236, 0.02713564597070217, 0.09392878413200378, -0.030783168971538544, 0.1904851496219635, 0.04933058097958565, 0.06976692378520966, -0.0791594535112381, -0.14349742233753204, -0.07986554503440857, 0.043547775596380234, -0.05742519348859787, -0.1349681168794632, 0.04858453571796417, 0.09972669184207916, -0.08924210071563721, -0.047610435634851456, -0.16111865639686584, 0.013535582460463047, -0.07138651609420776, 0.08505789190530777, 0.019456081092357635, 0.08089429885149002, -0.06320060044527054, -0.10984370857477188, 0.06110066547989845, 0.060350291430950165, -0.06599344313144684, -0.1281713992357254, -0.04572698473930359, 0.06045956909656525, 0.12664872407913208, -0.04208822920918465, 0.15912114083766937, -0.008041159249842167, 0.047308310866355896, 0.014925634488463402, -0.06907898187637329, 0.10541132092475891, -0.09786944091320038, 0.05438531935214996, -0.06333410739898682, 0.04188152030110359, -0.05213009938597679, -0.008406098000705242, -0.000957637035753578, -0.12592165172100067, -0.04635525122284889, -0.09499429166316986, -0.026673125103116035, 0.0009401619317941368, 0.03803042322397232, 0.04011284187436104, -0.07160019129514694, -0.015828445553779602, -0.006852536462247372, -0.07049769908189774, 0.024176370352506638, 0.04153205081820488, -0.08333564549684525, -0.06662126630544662, -0.169193297624588, -0.0392586812376976, 0.009080958552658558, -0.07220442593097687, -0.0376102551817894, 0.0763283371925354, -0.04379405081272125, -0.15015068650245667, -0.059355784207582474, 0.061760082840919495, -0.05736618861556053, -0.06103045865893364, -0.0068587916903197765, 0.08723773062229156, 0.03589436039328575, -0.010501275770366192, 0.0190031286329031, 0.043841566890478134, 0.09894871711730957, -0.04543869197368622, 0.07877640426158905, -0.0340445302426815, -0.05249002203345299, 0.07442031800746918, 0.031682830303907394, 0.12093853950500488, -0.1387861967086792, -0.11087073385715485, -0.07370544970035553, -0.12608033418655396, 0.06044696643948555, 0.09085968881845474, -0.09070675820112228, 0.03203502297401428, 0.08799942582845688, -0.08231998234987259, -0.003184941364452243, 0.020906008780002594, 0.12767955660820007, -0.04338764399290085, 0.04472219944000244, -0.06343942880630493, 0.04789175093173981, 0.03499996289610863, -0.10298871248960495, 0.11314364522695541, 0.10486139357089996, 0.005596191622316837, -0.06088859587907791, -0.11844116449356079, -0.06341959536075592, -0.08639270812273026, -0.11983794718980789, 0.10275501757860184, 0.007966769859194756, -0.05655395984649658, -0.0566672720015049, 0.010590084828436375, -0.026157991960644722, 0.029459524899721146, -0.03509683907032013, -0.005540149286389351, 0.16209006309509277, 0.062382571399211884, 0.01004211325198412, -0.03468378633260727, -0.027785077691078186, 0.11565744131803513, 0.02491612173616886, 0.10528635233640671, 0.05475470796227455, 0.08042263239622116, 0.028469614684581757, -0.06046063452959061, 0.08567660301923752, -0.14770133793354034, -0.012599264271557331, 0.03385968506336212, 0.06923668831586838, 0.06632896512746811, -0.07413412630558014, -0.052750565111637115, 0.052241913974285126, 0.024603040888905525, -0.02616717666387558, -0.0761636272072792, -0.033364273607730865, 0.043451253324747086, 0.06881523877382278, 0.04989451915025711, 0.033378005027770996, -0.05287608876824379, -0.13840991258621216, -0.05389057472348213, -0.10463967174291611, 0.07118073850870132, 0.02755958028137684, 0.06665939837694168, -0.07080260664224625, 0.0477847121655941, -0.0068862540647387505, -0.1062975749373436, 0.015839429572224617, 0.08517028391361237, 0.15944001078605652, 0.13490216434001923, -0.05423799529671669, 0.08806595206260681, -0.051028184592723846, -0.09614595770835876, -0.06257698684930801, -0.12417229264974594, 0.021834922954440117, 0.04251822084188461, 0.01945946365594864, -0.010403487831354141, -0.1685410737991333, -0.06064639240503311, -0.0018429093761369586, -0.0021664586383849382, -0.005255695898085833, 0.022178655490279198, 0.03796383738517761, 0.09478264302015305, -0.13122083246707916, 0.17036011815071106, -0.03394022583961487, 0.029952265322208405, -0.16401134431362152, 0.015475044958293438, 0.0032625747844576836, -0.06854672729969025, -0.052612412720918655, -0.019221629947423935, -0.0739753395318985, 0.023240720853209496, 0.07234799861907959, 0.11461334675550461, -0.013994529843330383, 0.10733390599489212, 0.03973819315433502, 0.09662492573261261, -0.08564158529043198, -0.029653508216142654, -0.015765313059091568, -0.13344363868236542, 0.06335694342851639, 0.0850711464881897, 0.00014953846402931958, -0.002587395953014493, 0.009406640194356441, -0.028703762218356133, -0.027832314372062683, -0.015338409692049026], +label:[-0.05462690815329552, -0.08897637575864792, 0.05259977653622627, -0.029303768649697304, -0.04720855504274368, -0.02458568476140499, -0.02659541368484497, 0.04838583245873451, 0.061315882951021194, 0.12106788903474808, -0.14352062344551086, 0.08885368704795837, 0.08394772559404373, 0.15009406208992004, 0.12035566568374634, 0.09179481118917465, -0.017616288736462593, -0.047256872057914734, 0.04989483207464218, 0.04888223856687546, 0.015201399102807045, 0.0005785252433270216, -0.10827356576919556, -0.15237130224704742, 0.09956857562065125, -0.0652143582701683, 0.04522562026977539, -0.057763952761888504, -0.1041674017906189, -0.03020460158586502, -0.09120114147663116, 0.04936205968260765, -0.09138821065425873, -0.054194752126932144, -0.12501022219657898, -0.05450296401977539, 0.06176791340112686, 0.05170081928372383, 0.009663808159530163, -0.009395912289619446, 0.10127350687980652, -0.04123765975236893, 0.005598011426627636, -0.13826626539230347, -0.11577891558408737, -0.058971960097551346, -0.058678433299064636, 0.0518186017870903, -0.072132408618927, -0.08859100192785263, -0.1249844953417778, -0.08469419181346893, -0.15337982773780823, 0.0024796188808977604, -0.03393508121371269, -0.0579339861869812, -0.09022901207208633, 0.07137608528137207, -0.11150912195444107, -0.033244792371988297, 0.10630504786968231, -0.026208024471998215, 0.09263505041599274, -0.10775305330753326, -0.08994121849536896, -0.012862673960626125, 0.05038977786898613, 0.10412993282079697, 0.003168487688526511, -0.014561478048563004, -0.0731184333562851, -0.1382984071969986, 0.04381251707673073, -0.11657043546438217, 0.043932024389505386, 0.029434697702527046, -0.08796872943639755, 0.10175050795078278, -0.061036303639411926, 0.0024376644287258387, 0.03961421549320221, 0.13617829978466034, 0.0126935550943017, -0.08928518742322922, -0.04264438897371292, -0.02965516597032547, -0.12268003076314926, -0.02872607111930847, 0.08681075274944305, 0.055542852729558945, -0.04752431809902191, -0.01705016754567623, 0.009152413345873356, -0.07052581757307053, -0.11463505774736404, 0.09042800217866898, 0.07770591229200363, -0.03752603754401207, 0.06911955028772354, -0.14950639009475708, 0.0191869605332613, 0.006488247308880091, -0.012483987025916576, 0.022910503670573235, 0.07913753390312195, -0.03940935432910919, 0.1370306760072708, -0.07528121024370193, 0.012288344092667103, -0.07583912461996078, 0.12766382098197937, -0.024460697546601295, -0.12004189193248749, 0.04229570925235748, 0.07647811621427536, 0.11607524007558823, 0.11102493107318878, 0.0032064521219581366, 0.0656508207321167, -0.03231712803244591, -0.045828927308321, -0.028301892802119255, 0.021750232204794884, -0.0631708949804306, -0.040519487112760544, 0.017329007387161255, 0.0006901165470480919, -0.0371735617518425, 0.1254117488861084, -0.14518140256404877, -0.06551377475261688, -0.001750900293700397, 0.1087932288646698, -0.0015828681644052267, -0.018861517310142517, 0.10066026449203491, -0.06000959128141403, -0.1363009512424469, 0.06834568083286285, -0.14262956380844116, -0.07857285439968109, -0.09296120703220367, 0.05722196027636528, 0.06296871602535248, 0.0021993794944137335, 0.06750939041376114, 0.03962370380759239, 0.11831554770469666, 0.07724660634994507, -0.05057075247168541, 0.043754905462265015, -0.031126927584409714, -0.02536255680024624, -0.04138669744133949, -0.08304712176322937, -0.09208656847476959, -0.1381639540195465, -0.06100482866168022, -0.04519956558942795, -0.05567232519388199, 0.08136758953332901, 0.06970521807670593, -0.06873322278261185, -0.07407642900943756, 0.1411103904247284, 0.10066717118024826, -0.03375570476055145, -0.09597281366586685, -0.1289382427930832, 0.018838632851839066, -0.041915178298950195, 0.034686215221881866, 0.02325425297021866, -0.1391782909631729, 0.049113452434539795, 0.01881217584013939, -0.030077997595071793, 0.016071384772658348, -0.045199211686849594, 0.08064868301153183, 0.037407971918582916, 0.0011959411203861237, 0.01976201683282852, 0.05388054624199867, 0.013253686018288136, -0.08218392729759216, -0.09083964675664902, -0.14370247721672058, -0.0084536699578166, -0.04311332106590271, -0.0728660300374031, -0.00012283065007068217, 0.04078734666109085, -0.021497774869203568, -0.10074970871210098, -0.0023494523484259844, -0.11114466935396194, 0.06510348618030548, -0.07535529881715775, 0.09818130731582642, 0.1339113563299179, -0.021800855174660683, 0.07920732349157333, -0.08693532645702362, 0.12766133248806, 0.060873158276081085, 0.026689771562814713, -0.1670318841934204, 0.10363377630710602, -0.0990704819560051, -0.10686803609132767, -0.05111125856637955, 0.10445213317871094, 0.08595612645149231, 0.014703046530485153, 0.005976387299597263, 0.021658172830939293, -0.14214961230754852, -0.06098492816090584, 0.007237084209918976, -0.0017504084389656782, -0.027884291484951973, 0.11054696887731552, 0.09115639328956604, -0.00468306802213192, 0.03328682854771614, 0.05649438127875328, 0.026267049834132195, -0.050551887601614, 0.08031224459409714, 0.11617977172136307, -0.009019135497510433, 0.04708337038755417, -0.0035952837206423283, 8.127247565425932e-05, 0.003982111811637878, 0.13661794364452362, -0.08022431284189224, -0.06636065989732742, -0.02212468907237053, -0.03552914783358574, -0.03833882138133049, -0.10331106930971146, -0.016481632366776466, 0.053945042192935944, -0.04323364794254303, 0.029536688700318336, -0.06323245912790298, -0.04409349337220192, 0.026277663186192513, -0.0907730981707573, 0.07872766256332397, 0.04288073256611824, 0.041459888219833374, -0.1302669644355774, -0.10961499065160751, 0.005565212573856115, -0.019762102514505386, -0.09606973826885223, 0.07211542129516602, 0.04090474545955658, 0.051240842789411545, -0.11757156997919083, -0.1005997359752655, -0.08218663185834885, 0.13999173045158386, -0.0068071624264121056, 0.12776526808738708, 0.08275513350963593, 0.11235689371824265, 0.06306587904691696, -0.08178295195102692, -0.11195529997348785, 0.140369713306427, -0.0561562143266201, -0.09172385931015015, -0.05176940932869911, -0.03273143991827965, -0.10055135190486908, 0.034414589405059814, 0.00882348045706749, -0.0651104673743248, -0.024560192599892616, -0.007175299804657698, -0.12856584787368774, -0.0021188980899751186, 0.07478663325309753, -0.1023157462477684, 0.04214522987604141, 0.038566235452890396, 0.0714416429400444, 0.007077887654304504, 0.05862150341272354, 0.06332224607467651, 0.05097834765911102, -0.0843600481748581, -0.16669470071792603, 0.1383189558982849, 0.14840786159038544, -0.06622841954231262], +landingpad:[0.11536599695682526, 0.12496989965438843, 0.05177167057991028, 0.048844583332538605, 0.03404674679040909, 0.04423753172159195, 0.06173721328377724, 0.03681487217545509, 0.03227192535996437, -0.005768365226686001, -0.09464281797409058, -0.0060688951052725315, 0.03180168941617012, -0.10028030723333359, 0.08225621283054352, 0.0962587296962738, -0.07929984480142593, -0.08910973370075226, -0.03960735723376274, 0.03461853787302971, 0.09869232773780823, 0.06921917200088501, -0.07313203066587448, -0.10976383835077286, 0.0447499118745327, 0.14932715892791748, -0.02028893120586872, 0.07768498361110687, 0.045538902282714844, 0.08225070685148239, -0.0011007132707163692, 0.005763370078057051, -0.04806128144264221, 0.020936109125614166, 0.05429306626319885, -0.08193603903055191, 0.01715959422290325, 0.09321273118257523, 0.038505762815475464, 0.07958491891622543, -0.08216243237257004, 0.11153632402420044, -0.024056073278188705, 0.06347852945327759, -0.014705901965498924, -0.05238241329789162, -0.012111308053135872, 0.005681537091732025, -0.13365225493907928, 0.03845106437802315, 0.08991049975156784, -0.012779629789292812, -0.02603074349462986, 0.0920647457242012, -0.13574206829071045, -0.07796750217676163, -0.033714089542627335, -0.043828412890434265, -0.06643886119127274, 0.016256948933005333, 0.13782508671283722, -0.07986389845609665, 0.022449104115366936, -0.07535240799188614, -0.05433143675327301, -0.0350329615175724, 0.02072652243077755, 0.1271427422761917, 0.02479642815887928, -0.03897496312856674, -0.10834532976150513, 0.122723788022995, -0.03547027334570885, -0.09646721184253693, -0.0016832813853397965, -0.01971816085278988, 0.058249931782484055, -0.012367242015898228, 0.13297367095947266, 0.0008989418856799603, -0.07402466237545013, -0.15558770298957825, -0.05206998065114021, 0.031371090561151505, 0.12887804210186005, -0.036764804273843765, 0.11674457788467407, -0.020006969571113586, -0.0998121052980423, 0.0179252028465271, -0.050595127046108246, -0.06026105582714081, 0.08998499810695648, -0.1376941204071045, -0.056943848729133606, -0.006290267687290907, -0.07263761758804321, -0.08091165870428085, -0.06852997094392776, 0.09473069757223129, 0.09113629162311554, 0.022775432094931602, 0.03420219197869301, -0.08291763812303543, 0.07153775542974472, -0.029526639729738235, -0.10447926819324493, 0.02424665540456772, -0.07775066792964935, 0.008628029376268387, -0.006472627632319927, 0.0835367813706398, 0.021827269345521927, 0.09200289845466614, 0.002057560719549656, 0.05963560938835144, -0.02779241092503071, -0.13404826819896698, 0.15760183334350586, 0.05570890009403229, -0.03002365492284298, -0.04727410525083542, -0.06840083748102188, 0.09549245983362198, -0.06856652349233627, -0.054191943258047104, 0.09337203204631805, -0.07658498734235764, 0.04641912877559662, -0.0034754520747810602, -0.035609662532806396, -0.12541204690933228, 0.05554576963186264, -0.04042918235063553, -0.12158313393592834, 0.040496859699487686, 0.16094450652599335, 0.09891510754823685, -0.02756236307322979, 0.10265368968248367, 0.014839251525700092, -0.02945978194475174, -0.08205761015415192, 0.030511979013681412, 0.09607436507940292, -0.0014435339253395796, 0.03024345263838768, -0.14765584468841553, 0.033194903284311295, -0.023905672132968903, 0.06643692404031754, -0.09364283084869385, -0.019482506439089775, 0.08430161327123642, 0.021667955443263054, 0.023648196831345558, -0.0815618559718132, 0.14365100860595703, -0.09639922529459, -0.08718804270029068, -0.012634011916816235, -0.00031298669637180865, 0.06423169374465942, -0.0346984788775444, -0.05461424961686134, -0.04907584935426712, -0.054028674960136414, 0.05965040624141693, -0.033745650202035904, -0.004682141821831465, -0.09397685527801514, 0.10400059819221497, 0.02210151217877865, 0.07390353083610535, -0.07293850928544998, -0.1193762794137001, -0.102250836789608, 0.12491635233163834, 0.02854631468653679, 0.10659503936767578, 0.046288590878248215, -0.12585574388504028, -0.00413516303524375, -0.09741566330194473, 0.012836851179599762, -0.056378982961177826, 0.06055393069982529, -0.06358781456947327, 0.04754894971847534, -0.06918878108263016, 0.007165819406509399, -0.00983449723571539, 0.11072885990142822, 0.012176139280200005, -0.028649119660258293, -0.0666714534163475, 0.13395437598228455, 0.04096883162856102, -0.11827988177537918, 0.11002778261899948, -0.09911249577999115, -0.12883687019348145, 0.007190105505287647, -0.06579910218715668, -0.025784505531191826, 0.07780346274375916, -0.05593159422278404, -0.07679157704114914, 0.011122754774987698, -0.052719563245773315, 0.046458639204502106, 0.08794407546520233, -0.053204406052827835, -0.037626925855875015, -0.03923691436648369, 0.019718628376722336, 0.11594565212726593, -0.02686827816069126, -0.013906467705965042, -0.012036615051329136, -0.022908097133040428, -0.10707983374595642, 0.07842201739549637, 0.07181274145841599, 0.004071508999913931, -0.001348949270322919, 0.10650554299354553, 0.06149999424815178, 0.08533298224210739, 0.10798971354961395, -0.049481868743896484, 0.0038074152544140816, 0.07154504954814911, 0.042337801307439804, 0.01632797345519066, -0.029125114902853966, 0.07220882177352905, 0.0012034240644425154, -0.014317132532596588, 0.08249455690383911, -0.06323342770338058, -0.09493411332368851, 0.12097753584384918, -0.003289428073912859, -0.013784005306661129, -0.05568438768386841, -0.059516727924346924, 0.044962380081415176, 0.03617245703935623, 0.0486893430352211, 0.1566714644432068, -0.04194262623786926, 0.12161189317703247, -0.08103905618190765, -0.10305652022361755, 0.052237655967473984, 0.08761390298604965, 0.015011126175522804, 0.021333983168005943, -0.018196359276771545, -0.04894222319126129, 0.06434977054595947, 0.00590949272736907, -0.07222335785627365, -0.002285596216097474, -0.003983546979725361, 0.059239115566015244, -0.08765404671430588, -0.09172822535037994, -0.004045697394758463, 0.11016877740621567, 0.16231724619865417, -0.04666721820831299, 0.03305840492248535, -0.16114164888858795, 0.15648195147514343, -0.06390468776226044, -0.05660979822278023, 0.09675349295139313, 0.036706048995256424, -0.06236402317881584, -0.125087171792984, 0.1055683121085167, -0.05281253904104233, 0.12236524373292923, 0.039426181465387344, 0.040265362709760666, -0.11784235388040543, -0.009683840908110142, 0.07470327615737915, -0.07981155067682266, -0.029382353648543358, 0.07032400369644165, 0.046708960086107254, 0.10055233538150787, -0.02292582392692566, 0.011214795522391796, -0.028775805607438087, 0.05835027992725372, -0.10267544537782669], +load:[0.025204557925462723, 0.005662806797772646, 0.0021355669014155865, -0.10401401668787003, 0.02691182866692543, 0.08354455232620239, 0.0657949149608612, -0.04610176756978035, -0.034458763897418976, -0.017666324973106384, 0.034836843609809875, 0.009834853932261467, -0.014254634268581867, 0.12446264922618866, 0.0012645749375224113, 0.04472312331199646, 0.11661478877067566, 0.027533523738384247, -0.040108684450387955, -0.028663422912359238, 0.07538700848817825, 0.038687318563461304, 0.1255541741847992, 0.10294969379901886, -0.040060821920633316, 0.03751285374164581, 0.10860905796289444, 0.01919683627784252, 0.025547506287693977, 0.028637396171689034, 0.0017959000542759895, -0.0764923170208931, 0.02878088317811489, -0.09504348039627075, -0.07878197729587555, -0.08737843483686447, -0.034451987594366074, -0.002536034444347024, 0.09144946187734604, -0.1030023992061615, 0.05131950229406357, -0.06775154918432236, -0.12293083965778351, -0.050949882715940475, -0.015390777960419655, 0.011114331893622875, 0.06315048038959503, 0.09537805616855621, -0.043587036430835724, 0.04869101569056511, 0.07169590890407562, 0.048728443682193756, -0.03350711241364479, 0.06955195218324661, 0.033096786588430405, 0.0368170365691185, -0.04079052433371544, 0.042358092963695526, 0.07062825560569763, 0.012119716964662075, 0.04327774792909622, 0.03637823835015297, -0.0309410709887743, 0.10663755238056183, 0.09632096439599991, -0.007793359458446503, -0.0335790291428566, 0.026431823149323463, 0.005473831668496132, 0.02366071194410324, 0.019902829080820084, 0.054178107529878616, 0.02442290633916855, 0.02835788205265999, 0.009673288092017174, -0.14087240397930145, -0.08735287934541702, -0.21985037624835968, 0.0004922737716697156, -0.12995129823684692, -0.06947150826454163, 0.005269287154078484, -0.010351413860917091, -0.09833426773548126, 0.06376446783542633, 0.06702271103858948, 0.02330172061920166, 0.020061494782567024, -0.025044173002243042, 0.10833508521318436, 0.06981240957975388, -0.03211589157581329, -0.06839682161808014, -0.01073212455958128, -0.08178471773862839, 0.04174157232046127, -0.056242868304252625, 0.036012738943099976, -0.02319531887769699, -0.018962174654006958, -0.0908324345946312, -0.10371847450733185, -0.01656692661345005, 0.050470657646656036, -0.07262109965085983, -0.11405878514051437, 0.05532005801796913, 0.08722851425409317, -0.06431027501821518, -0.04615872725844383, 0.003976600244641304, 0.04933824762701988, -0.058034393936395645, -0.13013805449008942, -0.0874403715133667, -0.0687975138425827, 0.20293180644512177, -0.04632587358355522, -0.04974925145506859, -0.1112818792462349, 0.04570496827363968, 0.059931106865406036, -0.0624421052634716, -0.08747227489948273, 0.14366234838962555, -0.02427193894982338, 0.041344448924064636, 0.05102343112230301, -0.05398967117071152, -0.07991298288106918, 0.00702114449813962, 0.10422580689191818, 0.07443228363990784, -0.08445942401885986, 0.03343382477760315, -0.0054325563833117485, 0.01460323017090559, 0.03812260925769806, -0.06195715442299843, -0.02945825085043907, 0.012437710538506508, -0.07567150145769119, 0.08346587419509888, 0.0727214440703392, -0.07888370752334595, -0.07680610567331314, 0.17977175116539001, -0.03523647040128708, 0.009063178673386574, 0.28306126594543457, -0.036753538995981216, 0.09496768563985825, 0.07117713242769241, -0.11538325995206833, -0.0833626464009285, -0.03456634283065796, -0.016048409044742584, 0.03148721903562546, 0.07942645251750946, 0.010899662040174007, -0.11321548372507095, -0.010426945053040981, 0.016035331413149834, 0.114198699593544, 0.09687284380197525, -0.14818568527698517, -0.038813043385744095, -0.016988378018140793, -0.05190848931670189, -0.006288714706897736, 0.025007976219058037, -0.036447472870349884, -0.04772156476974487, -0.08061536401510239, -0.06863611191511154, 0.0489264540374279, 0.06457438319921494, -0.013091336004436016, -0.040974538773298264, -0.010805527679622173, 0.09389715641736984, -0.02828379161655903, -0.03220786526799202, 0.017446061596274376, -0.03184755519032478, 0.08949024975299835, 0.14468955993652344, -0.05731634795665741, 0.10195264965295792, 0.03837568685412407, -0.2103307992219925, 0.07032027840614319, -0.04400740563869476, -0.009483413770794868, -0.04226069152355194, 0.10065501928329468, -0.06491643190383911, 0.029482915997505188, 0.01888194866478443, 0.06624282896518707, 0.06838957220315933, 0.028458280488848686, 0.06356702744960785, 0.03655969724059105, -0.10004612058401108, -0.050552334636449814, -0.015104280784726143, -0.009625336155295372, 0.016158856451511383, 0.06522722542285919, 0.08603924512863159, -0.08293665945529938, -0.055752065032720566, 0.09275340288877487, 0.017869500443339348, -0.0016611834289506078, 0.0519486740231514, 0.07687761634588242, -0.059738222509622574, -0.22188009321689606, 0.08115854859352112, -0.02122633531689644, -0.02456241101026535, 0.03870077058672905, -0.046365950256586075, 0.152812659740448, -0.08688178658485413, -0.08540564030408859, 0.11232679337263107, 0.03060179203748703, 0.06216580048203468, 0.04856206104159355, -0.032837171107530594, 0.0931670069694519, 0.04454849660396576, 0.12248452007770538, -0.0060691749677062035, -0.09481029957532883, -0.01531100831925869, 0.02247244492173195, 0.0763186439871788, 0.06905830651521683, 0.03460835665464401, 0.11435758322477341, -0.25532734394073486, 0.04583511874079704, -0.08538871258497238, -0.06201351061463356, 0.13088500499725342, 0.05176614969968796, -0.04598438739776611, -0.04455665871500969, -0.05302586033940315, 0.0868460163474083, 0.02762780152261257, -0.02710609696805477, -0.08674901723861694, -0.003989815711975098, 0.07022185623645782, -0.14185675978660583, 0.07470792531967163, -0.010707066394388676, 0.2270406037569046, -0.05859149247407913, 0.01781569793820381, 0.0004970896407030523, -0.07325546443462372, 0.00021088848006911576, 0.03739533573389053, 0.02016327902674675, -0.015672730281949043, -0.05598869547247887, 0.03425482288002968, 0.021808097139000893, 0.03850886970758438, 0.008798401802778244, 0.06623697280883789, -0.001427753479219973, 0.008666913956403732, -0.020340533927083015, 0.03641139343380928, 0.06433979421854019, -0.00559362443163991, 0.1628149002790451, -0.04192716255784035, -0.04013174772262573, -0.0916726216673851, 0.07182244211435318, -0.0899553969502449, -0.12265298515558243, 0.023047078400850296, -0.054099638015031815, -0.006264791823923588, 0.016488028690218925, -0.09157395362854004, 0.05304054915904999, -0.008717121556401253, 0.03897015377879143, -0.0288238488137722, 0.024760037660598755], +lshr:[0.023112621158361435, -0.0043955096043646336, -0.07189621031284332, -0.10003478825092316, -0.07569586485624313, -0.006522831041365862, 0.047195348888635635, -0.10824073851108551, -0.026378106325864792, -0.004586650989949703, 0.019544754177331924, -0.10101579874753952, -0.013069715350866318, 0.1177871897816658, 0.02781873382627964, 0.05410422012209892, 0.13447412848472595, 0.03739335015416145, -0.03247398883104324, -0.029388949275016785, -0.003049557562917471, 0.07082770019769669, 0.13541096448898315, 0.10009930282831192, -0.016436373814940453, 0.034287627786397934, -0.07982361316680908, 0.057793501764535904, -0.06495262682437897, -0.08017313480377197, -0.07609766721725464, -3.7878480725339614e-06, -0.025149943307042122, -0.11104016751050949, -0.09054435789585114, -0.0035570973996073008, -0.024129245430231094, 0.020376408472657204, 0.08790593594312668, -0.08540810644626617, 0.10234711319208145, 0.06634989380836487, 0.1284877210855484, -0.056948211044073105, 0.13742515444755554, -0.0654207319021225, 0.06091883033514023, 0.09086685627698898, 0.035466715693473816, -0.037510473281145096, -0.09407500922679901, 0.10097797960042953, 0.06364936381578445, 0.07768146693706512, 0.08528190106153488, 0.1026976928114891, -0.09732427448034286, -0.0356149896979332, -0.032963212579488754, -0.06710737943649292, 0.04053162783384323, 0.12211884558200836, 0.07579910755157471, 0.09006903320550919, 0.09941008687019348, 0.1467912346124649, -0.0769004374742508, 0.03063952550292015, 0.13799577951431274, -0.05745965987443924, -0.009808240458369255, 0.05241076275706291, -0.012605068273842335, 0.085859514772892, -0.013219930231571198, -0.03697863221168518, -0.06406686455011368, -0.055359091609716415, 0.007459126878529787, 0.12147864699363708, -0.08790923655033112, 0.013070989400148392, -0.009129074402153492, 0.04219558835029602, 0.06633967906236649, -0.000447001657448709, -0.06996666640043259, -0.018761765211820602, -0.02633151412010193, -0.05183735117316246, 0.09126418083906174, -0.09738299250602722, -0.08055205643177032, -0.01017245464026928, -0.07942552119493484, 0.014673387631773949, -0.09811251610517502, -0.039948903024196625, -0.03239912539720535, 0.10806925594806671, -0.12284532934427261, -0.06397297233343124, 0.058352790772914886, 0.03144310414791107, -0.06945215165615082, 0.10164390504360199, 0.12671391665935516, 0.09820535033941269, 0.04613615944981575, 0.027038201689720154, 0.10267315804958344, 0.04594261571764946, 0.11665274202823639, -0.11899898201227188, -0.027324583381414413, -0.009925794787704945, -0.04718916490674019, -0.04525361582636833, -0.06714285165071487, -0.1096317321062088, 0.05855994671583176, -0.008482866920530796, -0.11060097813606262, 0.07934360206127167, 0.0347597636282444, -0.06131403148174286, 0.10050074011087418, 0.009091967716813087, -0.04190326854586601, -0.007145815063267946, -0.004430369473993778, 0.0938347727060318, -0.12669992446899414, -0.11366798728704453, 0.04135412722826004, -0.00017707397637423128, 0.00930315162986517, 0.037595897912979126, -0.02576601319015026, -0.10482168197631836, 0.013173012062907219, -0.11424202471971512, -0.02844075672328472, 0.029314057901501656, -0.053794290870428085, -0.032973840832710266, 0.016147535294294357, -0.016583245247602463, -0.06799501925706863, 0.0362769216299057, -0.08555414527654648, 0.11209952086210251, 0.12557408213615417, -0.030530553311109543, 0.06249434873461723, -0.10574238002300262, 0.019671127200126648, -0.06741776317358017, -0.05941581726074219, -0.0132368803024292, -0.10041365027427673, -0.035452716052532196, 0.015312203206121922, 0.06165783852338791, 0.09277751296758652, -0.0749024748802185, 0.047190722078084946, -0.06503594666719437, 0.03616584092378616, 0.020102648064494133, 0.023631207644939423, -0.10001758486032486, 0.03778337687253952, -0.1059851199388504, -0.04210824519395828, 0.0555901862680912, -0.11194130033254623, 0.10977444797754288, 0.05972776934504509, 0.019302986562252045, 0.022892024368047714, -0.0028180195949971676, 0.06646470725536346, -0.012799619697034359, -0.014031322672963142, 0.05302853137254715, -0.04126067832112312, 0.06044857203960419, 0.06842631101608276, 0.11544754356145859, 0.008654845878481865, 0.09547457844018936, -0.05699275806546211, 0.1096549928188324, 0.05275709554553032, 0.04529770091176033, -0.06414264440536499, 0.11402194201946259, -0.10618976503610611, 0.07262223213911057, 0.12958714365959167, -0.06643442809581757, 0.002876716898754239, -0.0024404912255704403, -0.024517150595784187, -0.04657971113920212, -0.022670928388834, 0.001354648731648922, 0.03793223947286606, 0.06673204898834229, 0.0095778563991189, -0.11467570066452026, 0.009970273822546005, 0.07828845828771591, 0.04149198532104492, 0.046348936855793, 0.08198084682226181, -0.1052282378077507, 0.0572919100522995, -0.008095047436654568, 0.09409555047750473, 0.08759406208992004, 0.03143935650587082, 0.03717773035168648, 0.0917574018239975, -0.12033108621835709, -0.052842140197753906, 0.06501826643943787, -0.003289398504421115, 0.02697143703699112, 0.1147245243191719, 0.04744606092572212, 0.1023203581571579, 0.036664318293333054, 0.1057574674487114, 0.055008213967084885, -0.09574331343173981, 0.052432648837566376, -0.007116928696632385, -0.03026837483048439, 0.08422909677028656, 0.0662635788321495, 0.03179536759853363, -0.046776626259088516, -0.06588460505008698, 0.10396113246679306, 0.045307643711566925, -0.004828805569559336, 0.04962749034166336, 0.014790602028369904, -0.11338682472705841, 0.023545539006590843, 0.09724455326795578, 0.07150988280773163, 0.04188809543848038, -0.059420209378004074, -0.12054476886987686, 0.04551554471254349, 0.06597001850605011, -0.018043605610728264, -0.028546543791890144, -0.010710367932915688, 0.02568516880273819, -0.05715032294392586, 0.06630201637744904, 0.005544804036617279, -0.07193503528833389, 0.0372697189450264, 0.03724974766373634, 0.056075066328048706, -0.12021663039922714, -0.04741882532835007, 0.10051938891410828, 0.02074873074889183, -0.0006333382334560156, 0.02000550739467144, -0.09023142606019974, -0.05959111824631691, 0.04306937754154205, -0.025038747116923332, -0.08817777782678604, 0.07914955168962479, 0.06814824044704437, -0.04211731627583504, 0.019041500985622406, -0.11000323295593262, -0.1003473550081253, 0.08755403012037277, -0.08430954813957214, -0.03972529619932175, 0.023184534162282944, 0.11342746764421463, -0.14125169813632965, 0.012914562597870827, -0.09422314167022705, -0.026206117123365402, -0.11826376616954803, -0.07609405368566513, -0.10514383018016815, 0.10768375545740128], +mul:[0.024196943268179893, -0.0019873008131980896, -0.06933261454105377, -0.09896208345890045, 0.06804295629262924, 0.014551411382853985, 0.09287230670452118, -0.08642403036355972, -0.021305378526449203, 0.14158280193805695, 0.020074479281902313, -0.09924726188182831, -0.018268411979079247, 0.11733809858560562, 0.03304244577884674, 0.05109628289937973, 0.13102243840694427, 0.03688129410147667, -0.06455118209123611, -0.02878223918378353, -0.00207933085039258, -0.005514765623956919, 0.1283475011587143, 0.10974373668432236, 0.03973274305462837, 0.03380882740020752, -0.03028164803981781, 0.05613385885953903, -0.12776251137256622, -0.09166387468576431, -0.018104994669556618, 0.056783437728881836, -0.03943385183811188, -0.10194516181945801, -0.07108000665903091, 0.029662271961569786, -0.032227497547864914, -0.021331490948796272, 0.08637714385986328, -0.10031748563051224, 0.033932942897081375, -0.1017191931605339, 0.06688153743743896, -0.044009119272232056, -0.06138835474848747, 0.04373326152563095, 0.05951877683401108, 0.09026634693145752, 0.08539776504039764, -0.03860611096024513, -0.026553064584732056, -0.10311571508646011, 0.06813932210206985, 0.0920085534453392, 0.09732527285814285, 0.032850608229637146, -0.00804317556321621, 0.07581211626529694, -0.009468303062021732, 0.01605147309601307, 0.041740644723176956, 0.12055355310440063, -0.010915095917880535, 0.08636820316314697, 0.08496022969484329, 0.10400167107582092, -0.07461059838533401, 0.0401558019220829, 0.046966999769210815, 0.027808573096990585, -0.008245989680290222, 0.05096859484910965, -0.08297477662563324, 0.07254583388566971, -0.0693969875574112, -0.11401452869176865, 0.02144726924598217, -0.10978274047374725, 0.013163810595870018, -0.00231059268116951, -0.09082921594381332, 0.01221552211791277, -0.009672279469668865, -0.12983772158622742, 0.06078169867396355, 0.1124139130115509, 0.03253181651234627, 0.12025197595357895, -0.018885871395468712, 0.05333932489156723, 0.09463422000408173, -0.030538856983184814, -0.1097317636013031, -0.009296618402004242, -0.07713238149881363, 0.011397047899663448, 0.04487999156117439, 0.08369449526071548, 0.19864416122436523, 0.10448433458805084, -0.11733434349298477, 0.036304693669080734, -0.0034356126561760902, 0.026921255514025688, -0.04420860484242439, -0.04666055366396904, 0.1102251410484314, 0.07804462313652039, 0.14871369302272797, -0.030131211504340172, 0.061591990292072296, 0.052920203655958176, -0.05216582119464874, -0.11830977350473404, 0.015264292247593403, -0.026754343882203102, 0.023537950590252876, -0.045698683708906174, -0.0654127448797226, -0.10734531283378601, 0.04270787164568901, -0.006918579339981079, -0.09841947257518768, 0.03385407105088234, -0.012502365745604038, -0.04767042398452759, 0.004722818732261658, -0.024913150817155838, -0.04173918440937996, 0.06302261352539062, 0.004977218806743622, 0.08410169929265976, -0.12310919910669327, -0.09639614820480347, 0.06717514246702194, 0.007732652593404055, 0.011150497943162918, 0.033291541039943695, -0.023600809276103973, -0.08066590130329132, -0.016854725778102875, -0.13325707614421844, 0.14053520560264587, -0.036446359008550644, -0.07859108597040176, -0.023515179753303528, 0.02712959051132202, 0.06889098882675171, 0.008239897899329662, 0.12160388380289078, -0.050060875713825226, 0.10704955458641052, 0.020700788125395775, -0.08796930313110352, 0.04839674010872841, -0.05063400790095329, 0.017719076946377754, -0.03253816440701485, 0.09093787521123886, -0.08977673947811127, -0.055373866111040115, -0.06294694542884827, 0.016206594184041023, 0.12517620623111725, 0.09226193279027939, -0.09744416922330856, -0.042107075452804565, -0.039871226996183395, -0.11421290785074234, -0.010642397217452526, 0.023736972361803055, -0.0003354214131832123, -0.1262102872133255, 0.08724691718816757, -0.04713260754942894, 0.05413871258497238, 0.07707706093788147, 0.0024051323998719454, 0.007270278874784708, 0.02659192681312561, 0.053308017551898956, 0.0662710964679718, -0.05658065155148506, -0.012404021807014942, -0.057163022458553314, 0.04642895609140396, -0.05738476663827896, 0.035328689962625504, 0.10045092552900314, 0.033712681382894516, -0.11274711787700653, 0.09582095593214035, -0.007819226942956448, 0.052296120673418045, 0.08550431579351425, 0.031129859387874603, -0.06320643424987793, -0.09124038368463516, -0.04419292137026787, 0.08730389922857285, 0.06591101735830307, -0.023260170593857765, -0.1875673234462738, -0.015892162919044495, -0.05986051633954048, -0.04553131014108658, 0.01630919985473156, 0.0017551177879795432, 0.048073042184114456, 0.059198204427957535, -0.06815170496702194, -0.04544482380151749, -0.0034692303743213415, 0.0763058066368103, -0.03921360522508621, 0.07266335189342499, 0.05021458491683006, 0.07378771156072617, -0.05889344960451126, -0.08435507863759995, 0.08118624240159988, 0.02835148572921753, -0.022269356995821, 0.035716645419597626, -0.08346961438655853, 0.009949369356036186, -0.022000333294272423, -0.040877290070056915, 0.034280870109796524, 0.02653288096189499, 0.11272557824850082, 0.04663816839456558, -0.029775872826576233, 0.03902387246489525, -0.0402974896132946, 0.11615899950265884, -0.013636001385748386, 0.06740523129701614, 0.04357617720961571, -0.032370828092098236, 0.08827261626720428, 0.06562869995832443, 0.027823563665151596, -0.0024802982807159424, -0.14553330838680267, -0.11549767106771469, 0.04163103178143501, -0.12183728069067001, -0.0097460662946105, 0.09512387961149216, -0.04242948815226555, 0.15489132702350616, -0.04880901426076889, 0.07872911542654037, -0.01849908009171486, 0.05861707031726837, -0.10588350147008896, 0.05680544301867485, 0.07029196619987488, 0.026171429082751274, -0.026937013491988182, 0.008350742980837822, -0.1437278538942337, -0.05584027245640755, -0.02352106012403965, 0.015330429188907146, -0.0706653818488121, 0.005912959575653076, 0.03553019464015961, -0.027019880712032318, -0.03905685991048813, -0.056329209357500076, -0.03367915004491806, 0.02282232791185379, -0.009903025813400745, -0.05922066792845726, -0.018373925238847733, 0.10441309213638306, 0.04389448091387749, -0.018395785242319107, 0.11969731748104095, 0.1251162737607956, 0.06542541831731796, -0.09723959118127823, 0.04037786275148392, -0.04262460395693779, -0.10513895750045776, 0.07939372211694717, -0.04068228602409363, -0.04831360653042793, 0.022044794633984566, 0.06605912744998932, -0.0008747718529775739, 0.01503427978605032, -0.02347642369568348, -0.02068624272942543, -0.08175695687532425, -0.11593624949455261, -0.10288646072149277, 0.010885026305913925], +or:[0.025057131424546242, -0.0003921658208128065, -0.037830520421266556, -0.10450910776853561, -0.023471422493457794, 0.05748113989830017, 0.08937014639377594, -0.06460138410329819, -0.02651888132095337, -0.019032880663871765, 0.03220004215836525, 0.009830259718000889, -0.015210275538265705, 0.12462644279003143, 0.0101323202252388, 0.019016068428754807, 0.12574917078018188, 0.041276637464761734, -0.12263302505016327, 0.14670105278491974, 0.011012242175638676, -0.12352445721626282, 0.08886167407035828, 0.10560838878154755, -0.0022082848008722067, 0.03587901219725609, -0.029750222340226173, 0.025373894721269608, -0.11052405089139938, -0.04022105038166046, 0.011916935443878174, 0.07803761214017868, -0.011145940981805325, -0.09485378116369247, -0.08032512664794922, -0.0414663590490818, -0.024915773421525955, 0.0034100590273737907, 0.05510282143950462, -0.11150100082159042, 0.05807419493794441, 0.12963220477104187, -0.12018129974603653, -0.08236625790596008, -0.03721155598759651, -0.1654013991355896, 0.06276851147413254, 0.09585755318403244, 0.10641835629940033, 0.06516341865062714, -0.02626665309071541, 0.024059683084487915, 0.054840195924043655, 0.0805051252245903, 0.091558076441288, 0.023823531344532967, -0.09705551713705063, 0.11442811042070389, 0.021994080394506454, -0.014638851396739483, 0.042624738067388535, -0.037558313459157944, -0.027268938720226288, 0.1068597361445427, 0.1150018498301506, 0.028529994189739227, -0.04177882894873619, 0.026616940274834633, 0.1403970569372177, 0.09659666568040848, 0.024172673001885414, 0.05462070181965828, -0.013827192597091198, -0.02265627309679985, -0.019491173326969147, -0.13704121112823486, 0.012705403380095959, -0.11521264910697937, 0.009969864040613174, -0.06875484436750412, -0.08447926491498947, 0.01204143650829792, -0.0364723727107048, -0.1464535892009735, 0.06358688324689865, -0.03674301505088806, 0.02051650546491146, 0.12061620503664017, -0.027415510267019272, -0.23274295032024384, 0.08087383210659027, -0.03410285711288452, -0.07958343625068665, -0.010290183126926422, -0.08985166996717453, 0.04133809357881546, -0.05679435655474663, 0.040899284183979034, -0.08539048582315445, 0.10275144129991531, -0.0999249815940857, -0.09867323935031891, -0.01625721901655197, 0.07482431828975677, -0.07194741070270538, 0.03437640145421028, 0.056417278945446014, 0.08505817502737045, 0.05032924562692642, -0.04833550006151199, 0.05675893649458885, -0.07567368447780609, -0.05383015796542168, -0.12978105247020721, -0.09803534299135208, -0.08082401752471924, 0.05744536593556404, 0.04231484234333038, -0.054771728813648224, -0.0843915343284607, 0.04721743240952492, 0.07497867941856384, 0.0036738377530127764, -0.02228327840566635, -0.03723161295056343, -0.0516057051718235, 0.04926581680774689, 0.04776464030146599, -0.0674421489238739, -0.08530706912279129, -0.008709102869033813, 0.07171200960874557, -0.07850507646799088, -0.1196494773030281, 0.069524846971035, -0.0028451397083699703, 0.014857134781777859, 0.03974229842424393, -0.06235520541667938, -0.10734507441520691, 0.05061466991901398, -0.046980660408735275, -0.07282603532075882, 0.06005038693547249, -0.08233199268579483, 0.02872093766927719, 0.16163496673107147, -0.035683948546648026, 0.008848768658936024, -0.21907693147659302, -0.06399552524089813, 0.09937911480665207, 0.040376801043748856, -0.08196184039115906, -0.08512379974126816, 0.0622839592397213, -0.010013479739427567, -0.001987144583836198, 0.0817890614271164, 0.014909489080309868, 0.016513200476765633, -0.0368323028087616, 0.018011294305324554, 0.121706523001194, 0.09743844717741013, -0.020912308245897293, 0.1589604616165161, -0.01766183227300644, -0.08952274918556213, -0.09578736871480942, 0.025718417018651962, -0.05634913221001625, -0.03143619745969772, -0.10940210521221161, -0.07310067862272263, 0.021380476653575897, 0.056849583983421326, 0.025235509499907494, -0.24964284896850586, 0.021050788462162018, 0.05824469402432442, -0.02024850621819496, 0.059845369309186935, 0.01885620690882206, -0.12878043949604034, 0.06802114844322205, 0.07071752101182938, -0.05928308516740799, 0.08368940651416779, 0.04484352096915245, 0.04029696062207222, 0.1135043129324913, -0.06979481130838394, 0.025210263207554817, -0.02097272500395775, 0.0218875203281641, -0.06554289907217026, -0.053110331296920776, -0.011173390783369541, 0.0694349855184555, 0.06900127232074738, 0.011074241250753403, -0.09349817782640457, -0.0019199245143681765, -0.03457656502723694, -0.04883081838488579, -0.06837834417819977, -0.006474377121776342, 0.02755805104970932, 0.0697774887084961, 0.012231210246682167, -0.04157391935586929, -0.06833237409591675, 0.09782105684280396, -0.015630926936864853, -0.058056894689798355, 0.052113741636276245, 0.07689211517572403, 0.08557634055614471, 0.042980704456567764, 0.09532316029071808, 0.010729859583079815, -0.011408759281039238, 0.0026099265087395906, -0.0580533891916275, 0.13982336223125458, -0.08467625826597214, -0.05672857537865639, 0.10348937660455704, 0.025132592767477036, 0.07341672480106354, -0.08184424042701721, -0.031675465404987335, 0.08560645580291748, 0.0814729630947113, -0.10211362689733505, -0.016443831846117973, 0.20407900214195251, 0.10912971943616867, 0.0005807604757137597, 0.08382326364517212, 0.06936522573232651, 0.0254575964063406, -0.031175050884485245, 0.2107713669538498, 0.047496918588876724, 0.018655050545930862, 0.03862345591187477, -0.0197821743786335, 0.08506640046834946, -0.04633070528507233, -0.08606041967868805, -0.053954750299453735, 0.09779095649719238, 0.02456342615187168, 0.0044534942135214806, -0.10811548680067062, 0.0660150870680809, 0.07408138364553452, 0.048611536622047424, 0.10084942728281021, -0.010582284070551395, 0.02755070850253105, -0.05920123681426048, 0.024896586313843727, 2.294090882060118e-05, -0.0739624947309494, -0.012077785097062588, 0.038657400757074356, -0.028205931186676025, -0.12239554524421692, -0.01951649971306324, 0.02170982025563717, 0.022838713601231575, 0.004880203865468502, -0.046424295753240585, 0.05136023089289665, 0.13062720000743866, 0.01620001718401909, -0.01971285231411457, -0.06598173081874847, 0.10395003855228424, 0.07051317393779755, -0.09516609460115433, -0.027637414634227753, -0.021730264648795128, -0.1015089675784111, 0.09076067060232162, -0.08398865163326263, -0.03592948988080025, 0.0009035419789142907, -0.04217451810836792, -0.07436597347259521, 0.016312547028064728, -0.0935039222240448, 0.0295147392898798, -0.008579598739743233, -0.016737816855311394, -0.08764476329088211, 0.026477165520191193], +phi:[0.06526614725589752, 0.0644010454416275, 0.008679316379129887, -0.01641148515045643, 0.043069757521152496, -0.05896132439374924, 0.0411875881254673, 0.06534263491630554, -0.04940014332532883, -0.08947746455669403, 0.013266857713460922, -0.06460563093423843, -0.016963858157396317, 0.009301119484007359, 0.06893907487392426, -0.10000374913215637, 0.013900497928261757, -0.0005977331893518567, -0.027296636253595352, -0.02597450278699398, -0.05197726935148239, -0.06677354127168655, -0.06789758056402206, -0.008972528390586376, 0.06975434720516205, 0.1215776652097702, -0.024072054773569107, -0.12506036460399628, -0.1209811195731163, 0.07325492054224014, -0.042718179523944855, -0.12821315228939056, -0.04145801439881325, 0.09064383804798126, 0.020391494035720825, 0.052128635346889496, -0.17307081818580627, -0.043283168226480484, -0.03434192016720772, -0.03474430367350578, 0.030941233038902283, 0.13117440044879913, -0.05455692484974861, -0.032506175339221954, 0.047949548810720444, 0.07396215945482254, 0.07944703102111816, -0.11086728423833847, 0.044198740273714066, 0.03846677020192146, -0.07057242095470428, 0.001073923660442233, 0.03766585886478424, -0.005671216174960136, 0.13201284408569336, 0.061997201293706894, 0.09396903216838837, 0.03343452513217926, 0.019593125209212303, 0.06182778254151344, -0.05485590919852257, 0.11838055402040482, -0.07239596545696259, -0.04052981361746788, -0.13491100072860718, -0.03543276712298393, -0.0987197533249855, -0.09757847338914871, 0.008840805850923061, -0.004012928809970617, -0.011415442451834679, 0.05498996004462242, 0.09458743780851364, -0.02392253465950489, -0.05037921667098999, 0.08319992572069168, -0.01095560286194086, 0.031038491055369377, 0.0757446363568306, -0.13965517282485962, -0.06624375283718109, 0.058897219598293304, 0.07361745834350586, 0.018665209412574768, -0.10534758120775223, -0.07529230415821075, 0.023443548008799553, -0.12560872733592987, -0.02721969224512577, -0.04351925104856491, 0.02973632700741291, 0.11323677748441696, -0.0033086526673287153, 0.09289657324552536, -0.047505758702754974, -0.11077253520488739, 0.1309802383184433, -0.07891305536031723, 0.006907756440341473, -0.05204758420586586, -0.052101898938417435, 0.0650368481874466, 0.03774912282824516, -0.07454027980566025, -0.02144377864897251, 0.08324819803237915, 0.04060451313853264, 0.024754108861088753, -0.0520978681743145, 0.12328792363405228, -0.0035117261577397585, 0.05881843715906143, 0.11782112717628479, 0.08236194401979446, -0.046368204057216644, 0.07170984148979187, -0.08249754458665848, 0.04343051835894585, -0.15768243372440338, 0.025387993082404137, 0.10854718089103699, -0.06916149705648422, -0.09690409153699875, 0.10852344334125519, 0.044755980372428894, 0.05266493931412697, -0.0637875348329544, 0.042583636939525604, -0.03745502978563309, -0.0023018717765808105, 0.0372047945857048, -0.12000027298927307, 0.00720966188237071, -0.03502781316637993, 0.09259728342294693, -0.001690862001851201, 0.15154150128364563, 0.02956133335828781, 0.13263842463493347, -0.01818189211189747, -0.11773770302534103, 0.09521681815385818, 0.028308004140853882, -0.12773695588111877, -0.05109955742955208, 0.02266334928572178, -0.12093482166528702, -0.0357804112136364, -0.13297401368618011, -0.08731868118047714, -0.14238038659095764, 0.07212693989276886, -0.08486144989728928, 0.010779352858662605, 0.014734437689185143, 0.06177489459514618, -0.04194709658622742, -0.10536761581897736, 0.07013466954231262, 0.06869751960039139, 0.10443547368049622, 0.027639690786600113, 0.083784319460392, 0.04932738095521927, 0.010831408202648163, -0.04575350135564804, 0.07657798379659653, 0.05363380163908005, -0.050602320581674576, 0.09155242145061493, 0.1009683683514595, -0.11515483260154724, 0.12254146486520767, -0.028816724196076393, -0.06857931613922119, -0.11683794111013412, 0.08317849040031433, 0.03556069731712341, -0.09628031402826309, -0.053887855261564255, -0.06013746187090874, 0.1350608766078949, 0.07201425731182098, 0.07609432190656662, -0.0005637010908685625, 0.05407312884926796, 0.04459657520055771, -0.06122539937496185, 0.04711936414241791, -0.011160104535520077, -0.11389528959989548, 0.06049806997179985, -0.11685799807310104, -0.10126110911369324, 0.010682224296033382, 0.054203398525714874, 0.08880691230297089, -0.08756214380264282, -0.1398615688085556, 0.0231732577085495, 0.07283355295658112, 0.07537223398685455, -0.05590827390551567, -0.07295715808868408, 0.027930090203881264, -0.04581965506076813, -0.04369179159402847, -0.004095185548067093, -0.05279187858104706, 0.06382404267787933, 0.00945886317640543, -0.039448752999305725, 0.12139910459518433, -0.0894421711564064, -0.006250262260437012, 0.1044091209769249, -0.03351788595318794, -0.0190914124250412, 0.030913276597857475, -0.09521118551492691, 0.023364141583442688, 0.14267227053642273, 0.09514294564723969, -0.11177469044923782, 0.11244005709886551, -0.04247487708926201, 0.13763847947120667, -0.005947890225797892, -0.012392719276249409, -0.05004507303237915, -0.08234664052724838, 0.10221076011657715, -0.12297487258911133, -0.061819471418857574, -0.03722357377409935, -0.004437302704900503, 0.02887405827641487, 0.0001787571090972051, 0.11391597986221313, 0.02907484769821167, 0.1156630888581276, 0.06231912970542908, -0.019401494413614273, 0.07129162549972534, 0.08477353304624557, 0.04560525715351105, 0.12776398658752441, -0.03976718708872795, 0.13041460514068604, -0.042873796075582504, 0.12932823598384857, 0.0503358468413353, -0.06903302669525146, -0.08273565769195557, -0.10313902050256729, 0.04652446508407593, -0.013320179656147957, -0.1210915669798851, -0.02636510506272316, 0.0409836582839489, 0.13771086931228638, -0.01096315961331129, -0.09093531221151352, 0.026019392535090446, 0.05930468440055847, 0.00022240162070374936, 0.12454666197299957, 0.02872237004339695, -0.05729521065950394, -0.028819048777222633, -0.13240334391593933, 0.15122590959072113, -0.041690267622470856, 0.024899059906601906, -0.11814136803150177, 0.009540625847876072, -0.06460410356521606, -0.06540821492671967, -0.05821642279624939, -0.04722658172249794, -0.07589247077703476, 0.03219844773411751, -0.060835085809230804, 0.04200379177927971, -0.015736984089016914, 0.10662543773651123, 0.04839945212006569, 0.08534365147352219, 0.11974356323480606, 0.04213019832968712, -0.07090028375387192, 0.06179974600672722, -0.037941887974739075, -0.1430743932723999, -0.09380587935447693, -0.03160221874713898, -0.008795591071248055, -0.028277670964598656, -0.028043562546372414, 0.1349077820777893], +pointer:[0.10755026340484619, 0.13388393819332123, 0.03164851665496826, 0.05906961113214493, -0.03973410651087761, -0.04171186313033104, -0.036936648190021515, 0.10481351613998413, 0.060678113251924515, -0.055459167808294296, -0.05399327725172043, 0.00521172396838665, -0.08569066971540451, -0.09970898926258087, 0.1017937958240509, -0.12452776730060577, -0.06206517294049263, -0.07636046409606934, 0.05923749879002571, -0.07594743371009827, -0.10140709578990936, -0.00846954621374607, -0.038051046431064606, 0.038746725767850876, -0.08895932883024216, 0.13141180574893951, 0.0430041141808033, 0.011090963147580624, 0.08650743216276169, -0.05130864307284355, 0.06933841109275818, 0.04447866603732109, -0.09095172584056854, 0.1021689847111702, 0.09209324419498444, 0.03972715139389038, -0.09858541935682297, -0.1089622750878334, -0.09167394787073135, -0.13258711993694305, -0.08248377591371536, 0.07802494615316391, -0.02059936337172985, 0.06587444245815277, 0.0997370257973671, 0.12118656933307648, 0.11270202696323395, -0.04699191078543663, -0.08238177746534348, 0.09502454102039337, 0.012245372869074345, -0.04316277429461479, 0.12190250307321548, -0.06991511583328247, -0.07263235747814178, -0.08334750682115555, 0.048361748456954956, -0.004867880139499903, 0.07449449598789215, 0.10595911741256714, 0.09495250880718231, -0.09435202181339264, -0.014500012621283531, -0.006235742941498756, -0.015600801445543766, -0.07944009453058243, -0.11293257027864456, -0.04103347659111023, 0.08453052490949631, -0.04432481527328491, -0.09032502770423889, 0.14006397128105164, 0.05474185571074486, 0.061584606766700745, 0.07530143857002258, 0.023369144648313522, 0.047213491052389145, -0.02992047369480133, 0.12485367804765701, -0.11478571593761444, -0.11502963304519653, -0.06832630932331085, 0.12833809852600098, 0.05230385437607765, -0.06541070342063904, -0.025135129690170288, 0.0872005894780159, -0.01086331158876419, 0.06837332993745804, 0.028808332979679108, -0.04932050406932831, 0.08402050286531448, 0.08357997983694077, 0.05730684846639633, 0.0204332172870636, 0.07162521034479141, 0.055565543472766876, 0.022224172949790955, -0.05159366875886917, 0.01608157344162464, 0.030111338943243027, 0.027961015701293945, 0.07550563663244247, -0.12346275895833969, -0.11332094669342041, 0.08348660916090012, -0.060730062425136566, -0.06780866533517838, -0.02240820601582527, 0.07588093727827072, -0.07964891195297241, -0.026470612734556198, 0.0575622133910656, 0.02749617211520672, -0.014250700362026691, 0.05798924341797829, 0.021056383848190308, 0.031988292932510376, 0.06313682347536087, 0.09705499559640884, -0.06529057025909424, -0.12196610122919083, 0.020576126873493195, 0.07417257130146027, -0.1482875496149063, 0.01363644003868103, 0.06470692157745361, -0.0538477785885334, 0.05434436723589897, 0.08776979893445969, 0.09749776124954224, -0.08466680347919464, -0.003451385535299778, 0.05412772670388222, -0.05983869731426239, 0.09322574734687805, 0.08209019899368286, -0.03230304270982742, 0.052582748234272, 0.0739007368683815, 0.04210522398352623, 0.07013125717639923, -0.018426980823278427, -0.10188993066549301, 0.030296392738819122, -0.028174880892038345, -0.06925340741872787, -0.11224152147769928, -0.0733562707901001, 0.0003789966576732695, 0.04382716491818428, -0.03297458961606026, 0.008931782096624374, 0.07602084428071976, -0.00475188996642828, 0.012224406935274601, -0.10027693212032318, 0.09959453344345093, 0.02510019950568676, 0.12014392018318176, 0.023477936163544655, 0.08725951611995697, -0.08020580559968948, 0.06333338469266891, -0.07983837276697159, 0.01264951191842556, 0.023241465911269188, 0.12625299394130707, -0.060175228863954544, -0.031025586649775505, 0.15100011229515076, -0.09554935991764069, 0.1050267294049263, 0.06764832884073257, 0.034967683255672455, 0.009944094344973564, -0.04666713625192642, 0.06747549027204514, -0.009717938490211964, -0.12248247116804123, 0.027935441583395004, 0.008436455391347408, 0.01784001849591732, 0.1064806804060936, 0.039691418409347534, -0.0750102698802948, 0.0019559161737561226, 0.02256716415286064, -0.008413862437009811, -0.08451356738805771, -0.06305781751871109, -0.03275435045361519, 0.04461855813860893, -0.016566568985581398, -0.05550693720579147, -0.00011949562031077221, 0.0462777242064476, -0.041063614189624786, 0.08066897094249725, -0.05230778828263283, -0.029865695163607597, -0.030547916889190674, -0.017216302454471588, -0.07610409706830978, -0.030298946425318718, 0.0017011023592203856, 0.05411754548549652, -0.05663350597023964, -0.10830171406269073, 0.12239149212837219, -0.03662418574094772, 0.07944601774215698, 0.07117673009634018, -0.04904612898826599, 0.0014516839291900396, 0.08539039641618729, -0.06393461674451828, -0.008569512516260147, -0.01217093225568533, -0.003899119095876813, -0.06525181978940964, -0.048251066356897354, -0.0646718367934227, -0.05256149545311928, -0.09242957085371017, -0.026065034791827202, 0.01075135637074709, 0.06783005595207214, -0.05087544396519661, -0.007225186564028263, -0.11659866571426392, -0.005875327158719301, -0.1337725967168808, -0.045477014034986496, 0.0007843374623917043, -0.04401734098792076, -0.047696810215711594, 0.03895110264420509, 0.06247903034090996, -0.019646579399704933, -0.04443276301026344, 0.11372125893831253, -0.040607623755931854, 0.03838605433702469, 0.02300759218633175, -0.04539162293076515, 0.06068584695458412, 0.006027720402926207, 0.06325392425060272, 0.013123664073646069, 0.07962097227573395, -0.009587814100086689, -0.10330097377300262, -0.13185490667819977, 0.09368357062339783, -0.04551760107278824, 0.06613951921463013, -0.019679954275488853, -0.04516105353832245, 0.005172264762222767, -0.07330001145601273, -0.1078372374176979, -0.03567975386977196, 0.08380048722028732, 0.1126023381948471, -0.09217604994773865, 0.08731913566589355, 0.08433496952056885, -0.1142938882112503, -0.008564874529838562, 0.07744210958480835, 0.07067223638296127, 0.07922246307134628, -0.08365518599748611, -0.08953236043453217, 0.11530378460884094, -0.12138631194829941, -0.029251934960484505, 0.08479609340429306, -0.09956321865320206, -0.0522833988070488, -0.054111968725919724, -0.023976415395736694, 0.05004061758518219, -0.04839181900024414, 0.0709899440407753, 0.0019423997728154063, 0.03363414108753204, 0.03909522294998169, 0.10477929562330246, -0.11150328814983368, -0.0018242077203467488, 0.077433742582798, -0.09434045106172562, -0.04762684181332588, -0.08471043407917023, 0.08926306664943695, -0.10217730700969696, -0.054357439279556274, 0.08051235228776932], +pointerTy:[-0.11639800667762756, 0.11287371069192886, 0.011180619709193707, 0.08613171428442001, 0.11338923126459122, 0.04481486603617668, -0.11011327058076859, -0.03638971596956253, 0.059248339384794235, -0.04240061715245247, -0.07471373677253723, -0.06817340105772018, -0.07554879039525986, -0.10926347970962524, -0.11320256441831589, -0.04611719027161598, -0.047347329556941986, -0.10539639741182327, 0.07467936724424362, 0.010891645215451717, 0.027995992451906204, -0.0005822736420668662, -0.02084345929324627, -0.06620563566684723, -0.11025404185056686, -0.11807379126548767, 0.03862664848566055, -0.025511249899864197, -0.008437343873083591, -0.034662384539842606, -0.03858387842774391, -0.060980379581451416, 0.056868646293878555, 0.06407886743545532, 0.12411011010408401, 0.12325336784124374, 0.10572245717048645, -0.10612927377223969, -0.07979040592908859, 0.08816450089216232, -0.10581230372190475, -0.08506356924772263, -0.04671674594283104, 0.08584374189376831, -0.052964527159929276, -0.017394691705703735, 0.10434456914663315, -0.06750627607107162, -0.01814153790473938, -0.11374486237764359, 0.024882642552256584, 0.09800416231155396, -0.09360598027706146, -0.10626305639743805, -0.08578161895275116, -0.0782889574766159, 0.03011707216501236, -0.011045685037970543, -0.11357822269201279, -0.11468854546546936, -0.12109331786632538, -0.0361015610396862, 0.028083086013793945, -0.019377171993255615, -0.03783958777785301, 0.04775909334421158, 0.10530777275562286, 0.10314413905143738, -0.08247269690036774, -0.034307822585105896, -0.09007535129785538, -0.06476429849863052, 0.0452183336019516, 0.10051165521144867, 0.07603118568658829, 0.021066168323159218, 0.017842261120676994, 0.02803192287683487, -0.10635387152433395, -0.04129425063729286, 0.08614872395992279, -0.12262730300426483, -0.1150723397731781, 0.0009015059913508594, -0.015525346621870995, -0.016742892563343048, 0.10866066068410873, 0.029357613995671272, 0.09343226999044418, -0.00602308101952076, 0.11821173876523972, -0.10823054611682892, 0.10189283639192581, -0.10983450710773468, 0.04773698002099991, -0.0778011754155159, 0.01851676218211651, 0.06201780587434769, -0.02228928729891777, -0.03044387884438038, 0.06317447870969772, -0.04522433131933212, -0.01103895716369152, -0.037414610385894775, 0.09805850684642792, -0.03289981558918953, -0.1140238493680954, -0.07757540792226791, -0.004956534132361412, 0.05199329927563667, -0.11412937194108963, -0.10067668557167053, 0.04415367543697357, -0.022395147010684013, -0.018359534442424774, 0.08532129228115082, -0.036011941730976105, 0.06354214996099472, 0.08564358949661255, -0.025017699226737022, -0.08083415776491165, 0.12062299996614456, 0.08621520549058914, -0.00788008514791727, 0.01790551282465458, 0.06696538627147675, 0.11527693271636963, -0.034799639135599136, 0.11105737090110779, 0.10315599292516708, 0.09011774510145187, 0.09287894517183304, 0.06671398133039474, 0.1376355141401291, -0.11290299147367477, -0.08003238588571548, -0.0845150277018547, -0.1159580647945404, 0.03549938276410103, 0.1152639091014862, 0.029231635853648186, 0.050780415534973145, 0.0025876141153275967, 0.13827678561210632, 0.09404764324426651, -0.003360271453857422, -0.05666861683130264, -0.11099549382925034, 0.10412414371967316, 0.005813769530504942, 0.014630715362727642, -0.09791886806488037, -0.11368933320045471, -0.022537942975759506, 0.021107425913214684, -0.08599090576171875, -0.06380531191825867, -0.05371926724910736, -0.08813107013702393, 0.1019267588853836, 0.009273126721382141, -0.08715389668941498, 0.11636953055858612, -0.09227248281240463, -0.1130225658416748, 0.07854491472244263, 0.052732355892658234, -0.0052518583834171295, 0.06773126125335693, -0.08935912698507309, -0.10118833184242249, 0.12080340832471848, 0.014570856466889381, 0.0910571962594986, 0.07493002712726593, 0.1143869012594223, 0.12334548681974411, -0.10153371840715408, -0.037939850240945816, 0.11939822882413864, -0.016825979575514793, 0.08506067842245102, 0.02130304090678692, -0.09971662610769272, 0.006176827009767294, -0.12224208563566208, 0.00014212615496944636, 0.09006040543317795, -0.08743865042924881, 0.11350484937429428, 0.05071418732404709, -0.0941450223326683, 0.07085134088993073, -0.022901061922311783, 0.014487792737782001, -0.04743300378322601, 0.03879969194531441, 0.00013796954590361565, 0.09401366114616394, 0.08628685027360916, -0.09340862184762955, -0.024135787039995193, 0.011714613996446133, -0.1153491660952568, 0.07881354540586472, 0.09066466987133026, 0.09687762707471848, 0.11409156769514084, -0.08083625882863998, -0.08532606065273285, -0.05426930636167526, -0.0450374037027359, -0.08835200220346451, -0.08761393278837204, -0.05493221804499626, -0.057605329900979996, -0.10105787217617035, -0.09598855674266815, -0.02872943878173828, -0.0376729778945446, 0.11107062548398972, 0.023531008511781693, 0.03408454358577728, -0.062210097908973694, -0.04972565546631813, -0.03542539104819298, -0.0008051187032833695, -0.07189073413610458, -0.062181729823350906, -0.10350152105093002, -0.07164444774389267, -0.029755940660834312, 0.08822587132453918, -0.05282548442482948, 0.021990301087498665, -0.02330275997519493, -0.11961489915847778, -0.05110083147883415, 0.04319034889340401, 0.0380982868373394, -0.0524669773876667, -0.10271895676851273, 0.10513751208782196, 0.023471420630812645, 0.028080567717552185, -0.10760217159986496, -0.07860735058784485, -0.007174537982791662, -0.02555929496884346, 0.009378239512443542, -0.10603653639554977, -0.0014847200363874435, 0.10205301642417908, -0.01401741337031126, 0.10580819100141525, -0.04511619731783867, 0.038132194429636, -0.011584089137613773, -0.07308629155158997, -0.023453248664736748, -0.08944247663021088, 0.08525640517473221, -0.00895083136856556, -0.09218656271696091, -0.05973072350025177, 0.07858190685510635, 0.08161050081253052, -0.110540971159935, -0.11104106903076172, -0.0029234576504677534, -0.08074776083230972, -0.1160362958908081, -0.09520319849252701, -0.11039240658283234, -0.02559388056397438, 0.10276954621076584, -0.08333724737167358, -0.02294725924730301, 0.05738018825650215, 0.06327707320451736, 0.07072422653436661, -0.09919220954179764, 0.005636229645460844, 0.011187980882823467, -0.09651780128479004, -0.029689235612750053, 0.021195871755480766, -0.05870699882507324, -0.07433244585990906, -0.10248005390167236, 0.11581096798181534, -0.013615239411592484, 0.056776419281959534, -0.06747923791408539, 0.06248616799712181, 0.022586707025766373, -0.0370023250579834, 0.0038785524666309357, 0.09049771726131439, -0.08477272093296051], +ptrtoint:[0.02486323192715645, -0.04962320625782013, -0.08128459006547928, -0.10332576930522919, 0.05078282579779625, -0.048012763261795044, 0.06979954987764359, 0.05943389981985092, 0.015047146007418633, -0.012485932558774948, -0.0024156912695616484, -0.13254623115062714, -0.010801532305777073, -0.10531910508871078, 0.029046673327684402, 0.10510324686765671, 0.11567848920822144, 0.0030627732630819082, -0.02686944045126438, 0.05190872400999069, -0.0652543306350708, 0.06825379282236099, 0.1325536072254181, 0.1029479056596756, 0.04446025937795639, 0.035763274878263474, -0.03020831011235714, 0.11576370149850845, -0.14660823345184326, -0.10429531335830688, -0.1532859057188034, 0.0034882265608757734, -0.03538791835308075, -0.09881415218114853, -0.07610533386468887, -0.009896700270473957, -0.03354324400424957, -0.10158970952033997, 0.09201470762491226, -0.039385173469781876, 0.05094650760293007, 0.0659683346748352, -0.0036394260823726654, -0.059196654707193375, -0.0022327802143990993, 0.01869732327759266, 0.06223145127296448, 0.08815944194793701, -0.06790544837713242, -0.025571098551154137, 0.06833364069461823, -0.040817148983478546, 0.08114222437143326, 0.10288980603218079, -0.07024877518415451, 0.04863306134939194, 0.008569598197937012, -0.025420133024454117, 0.016583044081926346, -0.10779315233230591, 0.04309121519327164, -0.033617742359638214, 0.02562747895717621, 0.027885984629392624, 0.02787553332746029, -0.038930509239435196, -0.09274935722351074, 0.03228122368454933, 0.13267649710178375, -0.08039269596338272, 0.12780097126960754, 0.08746370673179626, -0.018167490139603615, -0.061185963451862335, 0.03750099241733551, -0.011221861466765404, 0.07220345735549927, 0.009920644573867321, -0.006493858993053436, -0.00605128426104784, -0.129433736205101, -0.015869826078414917, -0.011318454518914223, -0.022873176261782646, 0.10297273844480515, 0.0812012180685997, 0.09357043355703354, -0.12483523786067963, 0.1167108491063118, -0.04752011597156525, -0.12571139633655548, -0.10498137027025223, -0.1170315146446228, -0.010315436869859695, -0.057774778455495834, 0.04142339527606964, -0.05766492336988449, -0.10088979452848434, 0.03879433125257492, 0.10536281019449234, -0.08004741370677948, 0.0874711200594902, 0.044637858867645264, 0.044405966997146606, -0.07183443009853363, -0.10767749696969986, 0.12675662338733673, -0.09069927781820297, 0.04728174954652786, -0.1277579516172409, -0.13474717736244202, 0.05025025084614754, -0.006132303271442652, -0.07615615427494049, -0.01777072623372078, 0.04203029349446297, 0.04431958124041557, -0.045630261301994324, -0.05326294153928757, -0.11760082840919495, 0.0158944521099329, -0.08247636258602142, -0.07172468304634094, 0.022346481680870056, -0.07215249538421631, -0.04986581951379776, 0.005685809068381786, 0.030568310990929604, 0.09766645729541779, -0.07825027406215668, 0.012367847375571728, 0.12894944846630096, 0.10318541526794434, -0.10117869824171066, -0.09577787667512894, 0.06351201236248016, -0.10928758233785629, 0.049013420939445496, 0.009017693810164928, -0.1072537899017334, -0.015494891442358494, -0.1423357129096985, 0.06883684545755386, 0.029697388410568237, -0.12109597772359848, 0.023904016241431236, 0.025021763518452644, 0.025252584367990494, 0.00869701337069273, 0.029539167881011963, -0.03549112379550934, 0.0875406339764595, 0.1012268215417862, -0.09381534904241562, 0.04270137473940849, -0.10624169558286667, -0.01390795037150383, -0.029389021918177605, 0.08573631942272186, 0.01637103408575058, -0.022393591701984406, 0.010247244499623775, 0.015729857608675957, 0.11215583980083466, 0.108124740421772, -0.0719098374247551, 0.13606975972652435, 0.1336105912923813, 0.13695691525936127, 0.019700808450579643, -0.053958114236593246, 0.06708104908466339, 0.08298252522945404, -0.10884448885917664, -0.010723858140408993, 0.04023938253521919, 0.08632303029298782, 0.11103937029838562, 0.040337469428777695, 0.04292689263820648, 0.08801042288541794, -0.014306474477052689, -0.059341441839933395, -0.009356861934065819, -0.12945204973220825, 0.00264406343922019, 0.050953637808561325, 0.014747810550034046, -0.032103460282087326, 0.04009321331977844, 0.02953958883881569, -0.02642272226512432, -0.0673590898513794, 0.0662229135632515, 0.15965640544891357, 0.06126891076564789, -0.07474944740533829, -0.0013595690252259374, -0.02592727355659008, 0.007424859330058098, 0.0682232677936554, -0.053024161607027054, 0.054070740938186646, -0.02491213195025921, 0.041725289076566696, -0.05210099369287491, -0.026915429159998894, 0.004520619288086891, 0.07544855773448944, 0.06612221151590347, 0.00494398595765233, -0.09592460840940475, 0.06333648413419724, -0.09701598435640335, 0.0736028403043747, 0.04944082722067833, 0.05233971029520035, 0.07745926827192307, -0.015229142270982265, 0.022868283092975616, 0.0476924404501915, -0.003147254465147853, -0.11535092443227768, 0.04280928149819374, -0.12106212973594666, 0.08831014484167099, -0.08333981782197952, 0.00036992260720580816, 0.15107397735118866, -0.06227334216237068, 0.13119560480117798, 0.04852207005023956, -0.014059904962778091, 0.04344172403216362, 0.07192923128604889, -0.011355648748576641, -0.026200037449598312, -0.0062181344255805016, 0.09995555132627487, 0.08811922371387482, 0.11538926512002945, 0.06798325479030609, -0.06365995109081268, -0.0071853226982057095, -0.012388198636472225, 0.04545478895306587, 0.022731389850378036, 0.011333880014717579, -0.19862957298755646, -0.06898169964551926, -0.04476384446024895, 0.0009686753037385643, -0.07217369973659515, 0.07981317490339279, 0.032791972160339355, -0.1131812110543251, 0.13146990537643433, 0.07731141149997711, -0.04711226373910904, -0.07399246096611023, 0.0928005650639534, -0.001162959961220622, 0.09980685263872147, -0.05796565115451813, 0.09884459525346756, 0.0006495254929177463, -0.0744348093867302, 0.0008652922115288675, 0.03796736150979996, 0.08777693659067154, -0.015552583150565624, -0.05788952857255936, 0.019678011536598206, -0.07877850532531738, -0.00902505498379469, 0.1149895042181015, -0.012783084996044636, 0.029500652104616165, -0.07776130735874176, -0.019378431141376495, 0.040612105280160904, -0.027479933574795723, 0.06819822639226913, 0.02607303112745285, 0.14520610868930817, 0.05416421592235565, -0.10265471041202545, 0.00985859613865614, -0.08762922883033752, -0.05520261451601982, 0.06861626356840134, -0.00556656951084733, -0.1086077019572258, 0.015261591412127018, 0.13765574991703033, 0.035824090242385864, -0.07385799288749695, -0.009439872577786446, -0.12597788870334625, 0.03473428264260292], +resume:[-0.10015565901994705, 0.09543478488922119, -0.06047278642654419, -0.07880088686943054, 0.06626550108194351, 0.0818801075220108, 0.06081317737698555, 0.08527709543704987, -0.05391251668334007, -0.08941495418548584, -0.1029730811715126, -0.0687757357954979, -0.07847797125577927, -0.037222545593976974, -0.07222124934196472, 0.08226368576288223, -0.03933177515864372, -0.05634496733546257, 0.11344464868307114, -0.06397818773984909, 0.04329032823443413, -0.019178377464413643, 0.056402113288640976, -0.11248470842838287, 0.040797796100378036, -0.024220004677772522, -0.022615274414420128, 0.10190045833587646, -0.013039679266512394, 0.11057492345571518, 0.008223704993724823, -0.14162400364875793, 0.012775901705026627, -0.04100854694843292, -0.08954019844532013, -0.08549968153238297, 0.016052160412073135, -0.002863866277039051, -0.05588531121611595, 0.021655313670635223, 0.05241018161177635, 0.07113077491521835, -0.05442415177822113, 0.0569690577685833, -0.08688260614871979, 0.01407172903418541, 0.09153217822313309, -0.013672183267772198, -0.0979045107960701, 0.06993202120065689, -0.07449556142091751, 0.003541246522217989, 0.04603012651205063, -0.006282830610871315, -0.038862910121679306, 0.05835999548435211, -0.012822468765079975, -0.0496937558054924, 0.019153183326125145, 0.07366389036178589, -0.05598429962992668, -0.061668071895837784, 0.07471935451030731, -0.049127090722322464, 0.03836267068982124, 0.004719453398138285, 0.01035375613719225, 0.03374278172850609, -0.065636545419693, 0.0983249843120575, 0.11856250464916229, 0.09506698697805405, 0.03702856972813606, -0.06060933321714401, -0.06034329533576965, -0.022444356232881546, 0.07681164890527725, 0.0021618600003421307, -0.06005416810512543, -0.002989834640175104, 0.07883307337760925, -0.045601505786180496, 0.08069488406181335, 0.07471577078104019, 0.1323339194059372, 0.01637403480708599, 0.02569892257452011, -0.09272173047065735, -0.03064792975783348, -0.027112755924463272, 0.02643720991909504, 0.04200947284698486, 0.0557129792869091, -0.14081500470638275, -0.11714107543230057, 0.04454042762517929, 0.13038747012615204, -0.08700970560312271, 0.009740159846842289, 0.10269125550985336, -0.04697655141353607, -0.16372860968112946, -0.12721000611782074, 0.08843661099672318, 0.07085906714200974, -0.0597769133746624, -0.030730905011296272, -0.02172287181019783, -0.193032369017601, 0.01769218035042286, -0.016490167006850243, -0.08550707250833511, -0.07491465657949448, 0.02494119666516781, -0.06874122470617294, -0.09871717542409897, -0.00926015991717577, 0.04493485763669014, 0.13275539875030518, -0.009026167914271355, 0.10837196558713913, 0.0018611602718010545, -0.04439070075750351, -0.10572104156017303, 0.08486318588256836, -0.04092990234494209, -0.0638296827673912, 0.13393621146678925, -0.1086357980966568, -0.008025841787457466, -0.03327726200222969, 0.0015789299504831433, -0.04590539261698723, -0.04208330810070038, 0.09851784259080887, 0.019777605310082436, 0.11932641267776489, 0.11472051590681076, -0.13331221044063568, -0.1075986847281456, 0.01606905460357666, -0.09736353158950806, -0.0554460734128952, -0.05241775140166283, -0.1019567921757698, 0.02878458984196186, 0.010477873496711254, -0.07865692675113678, -0.007261406164616346, 0.03632257506251335, -0.021295975893735886, 0.0748659074306488, -0.07002301514148712, 0.0020031752064824104, 0.04081273078918457, 0.13143040239810944, 0.11374514549970627, -0.007601589430123568, 0.08750616014003754, 0.10632055252790451, -0.024678589776158333, 0.02953709103167057, 0.024088816717267036, -0.06973336637020111, 0.0832124650478363, -0.09620046615600586, -0.049291614443063736, 0.051145441830158234, -0.03283756598830223, 0.09816162288188934, -0.12830664217472076, -0.05435461178421974, -0.018263665959239006, -0.1245734840631485, -0.10941202938556671, -0.1242535188794136, 0.05155748873949051, 0.007729556877166033, -0.010505280457437038, 0.08500757813453674, -0.03351008519530296, -0.13387583196163177, 0.04504511505365372, 0.053894564509391785, -0.04363672062754631, -0.04385397210717201, -0.07053353637456894, -0.061034467071294785, 0.026840869337320328, 0.046909671276807785, 0.010558074340224266, 0.06168033182621002, 0.06114250794053078, 0.11139232665300369, 0.10513701289892197, 0.029113970696926117, -0.11160895973443985, -0.014372393488883972, -0.011325991712510586, 0.049359578639268875, -0.10112866014242172, 0.14611025154590607, 0.0544159822165966, -0.08787170052528381, -0.05118243768811226, -0.12766414880752563, 0.06190318986773491, 0.10174766182899475, 0.13845087587833405, 0.06600791960954666, -0.03474423661828041, 0.02173115313053131, -0.057259451597929, -0.0017844357062131166, -0.06413842737674713, 0.04493996128439903, -0.05898986756801605, -0.019279124215245247, 0.016956090927124023, 0.02160201407968998, -0.03576017916202545, -0.07381454110145569, -0.10057767480611801, 0.07814902067184448, 0.014675048179924488, 0.14415130019187927, 0.12671181559562683, -0.06261476129293442, 0.14447300136089325, -0.12394053488969803, -0.13513639569282532, 0.10204008966684341, 0.03555407002568245, 0.009782776236534119, -0.020682943984866142, -0.057639893144369125, -0.014725109562277794, -0.03033195063471794, -0.059060316532850266, -0.065151646733284, -0.0026122350245714188, -0.11525992304086685, 0.12324614822864532, 0.024698207154870033, -0.0112218726426363, 0.04874970391392708, -0.08762706816196442, 0.045127999037504196, 0.020505227148532867, -0.08406855911016464, 0.14540162682533264, -0.007185978349298239, -0.06646226346492767, 0.046795088797807693, 0.08934876322746277, 0.00011537621321622282, -0.04681381210684776, 0.05323420837521553, -0.0011757814791053534, -0.03780925273895264, -0.009545853361487389, -0.010254387743771076, 0.0248993132263422, -0.11376912146806717, 0.09225331991910934, 0.030939098447561264, 0.06454551219940186, 0.023563222959637642, 0.09757973253726959, 0.09047962725162506, 0.10650408267974854, 0.15816229581832886, -0.04243021830916405, 0.04744260013103485, -0.15054082870483398, 0.03692380711436272, 0.011107383295893669, -0.04017776623368263, -0.04658273980021477, 0.03776848688721657, -0.08215397596359253, -0.14061544835567474, 0.10716007649898529, 0.00490596005693078, 0.04877053201198578, 0.13398069143295288, 0.053996965289115906, -0.10476411134004593, -0.08666379749774933, 0.12695470452308655, -0.12997429072856903, -0.008964650332927704, 0.025998994708061218, 0.08010295033454895, 0.10865332186222076, 0.04426911845803261, 0.03617682307958603, 0.1091371700167656, 0.012585761025547981, -0.10796121507883072], +ret:[0.02575290948152542, 0.03814993426203728, 0.009064577519893646, -0.07872751355171204, 0.010181408375501633, -0.06966089457273483, 0.06422721594572067, -0.10115280002355576, -0.04357686638832092, -0.09121966361999512, 0.02013973332941532, -0.08791452646255493, -0.010358678176999092, 0.12656085193157196, -0.016228141263127327, 0.09861531853675842, 0.09313899278640747, 0.048851799219846725, -0.013278634287416935, -0.054717741906642914, -0.004873188212513924, -0.0998670682311058, 0.1303635984659195, 0.10606332868337631, -0.008764252997934818, 0.06900506466627121, 0.050825998187065125, 0.042163778096437454, -0.011375155299901962, 0.12253201007843018, -0.00035709820804186165, -0.0923500582575798, 0.016938719898462296, -0.03551427647471428, -0.037503182888031006, -0.08931391686201096, -0.034624818712472916, 0.07275587320327759, 0.06877731531858444, -0.11542991548776627, 0.05778268352150917, 0.009121441282331944, 0.15781643986701965, -0.049157775938510895, -0.021370744332671165, -0.016260970383882523, 0.0641588345170021, 0.09668771177530289, 0.04176001623272896, 0.08564044535160065, 0.05390295386314392, 0.04711943492293358, 0.06318064779043198, 0.10032270103693008, 0.09174524992704391, 0.02999933436512947, 0.1003912165760994, -0.21723933517932892, 0.01752467267215252, 0.04748625308275223, 0.04452762380242348, -0.05930988863110542, -0.038839202374219894, 0.10906659811735153, 0.11614803969860077, -0.011928857304155827, -0.024179261177778244, -0.0023535240907222033, -0.07055801898241043, 0.04780314490199089, 0.04200182482600212, 0.05724462866783142, -0.08702338486909866, 0.04041370749473572, -0.07939296215772629, -0.1299353986978531, 0.08640550822019577, -0.12434657663106918, -0.013061859644949436, -0.19895797967910767, -0.07784237712621689, 0.013715110719203949, -0.011932464316487312, 0.13414905965328217, 0.07857467234134674, 0.1754976361989975, 0.0374419204890728, 0.056083012372255325, -0.023983756080269814, -0.038456328213214874, 0.08386793732643127, -0.03922559693455696, -0.08055190742015839, 0.09222579002380371, -0.05346868559718132, 0.043986618518829346, -0.05745638906955719, -0.008487807586789131, -0.07252487540245056, 0.10499879717826843, -0.07236254215240479, -0.030715331435203552, 0.10106294602155685, 0.04559433087706566, -0.0731988400220871, -0.001679505337961018, 0.048466071486473083, 0.029990114271640778, -0.19390852749347687, -0.0705755278468132, 0.011356215924024582, -0.04731180891394615, -0.057521555572748184, -0.10152038186788559, 0.13397890329360962, -0.06474751979112625, 0.07884329557418823, -0.04379874840378761, -0.048689574003219604, -0.11448984593153, 0.0731084868311882, 0.015024746768176556, -0.043700430542230606, -0.027214251458644867, -0.20907354354858398, -0.054969385266304016, -0.06329970806837082, 0.030737966299057007, -0.050202250480651855, -0.08373025804758072, -0.0037918335292488337, 0.09619848430156708, -0.04350578039884567, -0.11363985389471054, 0.03184306621551514, 0.004335588775575161, 0.015546216629445553, 0.03971768915653229, -0.019816147163510323, -0.10884013772010803, -0.04929047077894211, -0.1316676139831543, 0.06039334461092949, -0.011575629003345966, -0.08446574956178665, -0.055131688714027405, -0.012335432693362236, -0.036669325083494186, 0.008990209549665451, -0.03300083056092262, -0.04836654290556908, 0.08011149615049362, 0.07706110924482346, -0.12076418101787567, -0.08884231001138687, -0.05782337859272957, -0.01603410206735134, -0.006565376650542021, 0.0755806416273117, 0.006271786987781525, 0.12203717976808548, -0.039973583072423935, 0.017788831144571304, 0.10906612873077393, 0.09890661388635635, 0.020151231437921524, -0.08828490972518921, -0.011489576660096645, -0.013094146735966206, 0.0992562472820282, 0.041912347078323364, -0.03542948514223099, -0.09944677352905273, -0.11170414835214615, -0.07404676824808121, -0.06327654421329498, 0.055325739085674286, 0.08751396089792252, 0.21633785963058472, 0.014300165697932243, -0.0122591033577919, -0.06875672936439514, -0.058288417756557465, 0.022155223414301872, -0.07017214596271515, 0.09538456052541733, -0.07023342698812485, -0.04911060258746147, 0.02629731222987175, 0.03633355349302292, -0.2027672678232193, 0.12926708161830902, -0.0670805498957634, 0.006789006758481264, -0.009349803440272808, -0.022603748366236687, -0.04504852369427681, -0.14629708230495453, -0.011849946342408657, 0.06625396758317947, 0.07303576171398163, -0.06185484305024147, 0.1532413810491562, 0.03770502656698227, -0.10322520136833191, -0.06666631251573563, -0.09987468272447586, 0.0010097227059304714, -0.023713693022727966, 0.05440255627036095, 0.09389616549015045, -0.13818351924419403, -0.05686737596988678, 0.10367873311042786, 0.07689259201288223, -0.010592534206807613, 0.05400858819484711, 0.0801139548420906, 0.16605190932750702, -0.13415417075157166, 0.07919198274612427, -0.04179256781935692, -0.026479538530111313, 0.046812042593955994, 0.0455281138420105, 0.06948531419038773, -0.08459345996379852, -0.012597553431987762, 0.04313104227185249, -0.053126949816942215, 0.06324440985918045, 0.05012363940477371, -0.029526138678193092, 0.04280773922801018, -0.1206611767411232, -0.03636155277490616, 0.07729915529489517, 0.10933832079172134, -0.058041635900735855, -0.018332011997699738, -0.002471701707690954, 0.06956160813570023, 0.0358700156211853, -0.021496545523405075, -0.08545036613941193, 0.04846186563372612, 0.041587185114622116, 0.12052120268344879, -0.09465812891721725, -0.14545902609825134, 0.05224858596920967, 0.15621745586395264, -0.0542498342692852, 0.0850144550204277, 0.07277325540781021, 0.05164178088307381, -0.0512935109436512, 0.17780430614948273, 0.06882268935441971, 0.030736541375517845, 0.012357897125184536, 0.013505893759429455, -0.0008541946299374104, -0.04217452183365822, 0.04286227375268936, -0.0008957046666182578, -0.0713902935385704, -0.00842586625367403, 0.0018896381370723248, 0.035269368439912796, 0.01523907296359539, -0.03849288076162338, 0.0445411317050457, 0.01747964136302471, -0.0021815483924001455, 0.02953002043068409, 0.01969786360859871, -0.06703902035951614, 0.048176735639572144, -0.020259831100702286, -0.02218748815357685, 0.045739561319351196, 0.06900127232074738, -0.03677445277571678, 0.07280484586954117, 0.0432545505464077, -0.0687750056385994, -0.04820738360285759, -0.08209170401096344, -0.035077039152383804, -0.031070688739418983, 0.12611037492752075, -0.06300656497478485, 0.017996547743678093, -0.1009274274110794, 0.04564031586050987, -0.005737112835049629, 0.09025049209594727, -0.02646571770310402, -0.0008651067037135363], +sdiv:[0.024171220138669014, -0.003945544827729464, -0.07062790542840958, -0.10226766765117645, -0.07114820927381516, -0.13449238240718842, 0.06734924763441086, -0.021564485505223274, -0.036728013306856155, 0.004090978763997555, 0.020648200064897537, -0.0967077687382698, -0.018444743007421494, 0.09560974687337875, 0.03974739834666252, 0.051713693886995316, 0.1373826116323471, 0.037930335849523544, -0.0239802747964859, -0.11521783471107483, -0.00349289458245039, 0.10061099380254745, 0.13985811173915863, 0.09976470470428467, 0.01126954611390829, 0.036103010177612305, -0.07624191045761108, 0.05284467712044716, -0.008248869329690933, -0.0758315771818161, 0.0686829537153244, -0.01016035582870245, -0.023573454469442368, -0.11417129635810852, -0.09446124732494354, 0.030673913657665253, -0.0334743857383728, 0.12712863087654114, 0.09004499018192291, -0.08933037519454956, 0.12310842424631119, -0.13347063958644867, 0.2069949507713318, -0.046354666352272034, -0.10420969873666763, -0.011616570875048637, 0.06255385279655457, 0.08846627175807953, 0.11921951919794083, -0.04006614908576012, 0.04725785180926323, -0.10574069619178772, 0.07214313745498657, 0.07627391815185547, 0.025386560708284378, 0.028711792081594467, -0.13227905333042145, -0.035453908145427704, -0.005078413523733616, -0.01475327368825674, 0.040226519107818604, 0.14427562057971954, -0.0196728203445673, 0.06793492287397385, 0.005174988880753517, 0.12369877099990845, -0.13150112330913544, 0.038367364555597305, 0.06463006138801575, 0.10180296748876572, -0.09266424924135208, 0.053378693759441376, -0.014308389276266098, 0.0834357887506485, -0.05472187697887421, -0.06062670797109604, 0.0011074511567130685, -0.04588060453534126, 0.010225493460893631, 0.033468350768089294, -0.09076404571533203, 0.01289399340748787, 0.05231425166130066, 0.0494893379509449, 0.06866692751646042, 0.05491909384727478, -0.07238852232694626, 0.02294073812663555, -0.024130264297127724, 0.10910721123218536, 0.10378061980009079, 0.03921579197049141, -0.07571630924940109, -0.010637196712195873, 0.0653945654630661, 0.014586813747882843, 0.06474878638982773, 0.03628849238157272, 0.05987878143787384, 0.10941210389137268, -0.1278078407049179, 0.031255315989255905, -0.0321178175508976, -0.0013416593428701162, -0.020692070946097374, 0.0818876251578331, 0.12425227463245392, -0.12558116018772125, -0.011096393689513206, 0.04223523661494255, -0.08521446585655212, 0.05209074914455414, 0.11627990752458572, -0.12937068939208984, 0.022183522582054138, 0.04422298073768616, 0.031301211565732956, -0.07117906212806702, -0.09523721039295197, -0.1119074672460556, 0.04205497354269028, -0.007355574518442154, -0.1125691682100296, 0.0018245292594656348, -0.02942757122218609, 0.0538838766515255, -0.019485080614686012, -0.046923454850912094, -0.00025228114100173116, 0.06721062958240509, 0.00035785799263976514, 0.10597372055053711, -0.12913157045841217, -0.09344655275344849, 0.06827179342508316, 0.00711923697963357, -0.018106019124388695, -0.08903758227825165, -0.018962673842906952, -0.09727615118026733, -0.019729148596525192, -0.14256492257118225, 0.20895369350910187, 0.03099457547068596, -0.054272640496492386, -0.027336126193404198, 0.03357912227511406, 0.0732642337679863, 0.004519195295870304, 0.0724884495139122, -0.09273158758878708, 0.12131381034851074, 0.09357879310846329, 0.10466895997524261, 0.06109282746911049, -0.06488367915153503, 0.021619249135255814, -0.09413045644760132, -0.09421646595001221, 0.030229153111577034, 0.02114785462617874, -0.025019614025950432, 0.015198984183371067, -0.0076723177917301655, 0.09536408632993698, -0.06486444920301437, -0.010902351699769497, -0.04616904258728027, 0.022130848839879036, 0.09194239228963852, 0.024234484881162643, -0.049032945185899734, 0.09431018680334091, -0.10897081345319748, -0.023096341639757156, 0.06819742918014526, 0.08082617074251175, 0.015606776811182499, 0.09741032123565674, 0.020239941775798798, -0.07337115705013275, 0.09561193734407425, -0.061068832874298096, -0.062105078250169754, -0.06539346277713776, 0.013801585882902145, 0.1048085168004036, 0.09055093675851822, 0.10424313694238663, 0.03429871425032616, -0.0005551931681111455, 0.09150673449039459, 0.12403801083564758, -0.02951718680560589, -0.040148451924324036, -0.034990713000297546, -0.06683235615491867, -0.027336902916431427, -0.10059811174869537, 0.09508994221687317, 0.06840095669031143, 0.006606777664273977, -0.05320269241929054, -0.014895930886268616, -0.10735461860895157, -0.04578733444213867, 0.016958855092525482, 0.01273786835372448, -0.04308364912867546, 0.06416333466768265, 0.018027935177087784, -0.003468490904197097, 0.012548218481242657, 0.07600884139537811, -0.11256919801235199, 0.13073651492595673, 0.08312195539474487, 0.07639184594154358, 0.05669502168893814, -0.0954878106713295, 0.06056596338748932, 0.00707180006429553, -0.024183522909879684, 0.037845976650714874, -0.0226292721927166, -0.004507263656705618, -0.015477347187697887, 0.05559390410780907, 0.0011043493868783116, 0.029157938435673714, 0.005687777418643236, 0.048932772129774094, 0.10552888363599777, -0.081315778195858, -0.04411434754729271, 0.0908554270863533, 0.014238547533750534, -0.07062582671642303, 0.03432641178369522, 0.11542098224163055, 0.08598171174526215, 0.06722237169742584, 0.034041840583086014, -0.1132747083902359, -0.06810682266950607, 0.06337643414735794, 0.04619121178984642, 0.004916842095553875, 0.019457677379250526, 0.08393191546201706, -0.04405631870031357, -0.04132552072405815, -0.047601353377103806, 0.02870580181479454, 0.02574508637189865, -0.052692756056785583, -0.11247790604829788, -0.03129785507917404, 0.06618282943964005, -0.06220456212759018, -0.10553820431232452, -0.001315687783062458, -0.13812212646007538, -0.05901728570461273, -0.06557419896125793, 0.0634174719452858, -0.07446739077568054, 0.03223361074924469, -0.11371545493602753, -0.0716463029384613, -0.017743399366736412, -0.0605841688811779, -0.05688178911805153, 0.022937079891562462, -0.006160098128020763, 0.021208081394433975, -0.11227433383464813, 0.033441197127103806, 0.01257740892469883, -0.04240905120968819, -0.12091720849275589, 0.1367756873369217, 0.05980205535888672, 0.030039481818675995, 0.11083874851465225, -0.10519080609083176, -0.10106031596660614, 0.0068608978763222694, -0.04271327704191208, -0.04599003493785858, 0.023419376462697983, -0.027858301997184753, -0.07313527911901474, 0.014717435464262962, -0.03522546961903572, 0.12728537619113922, -0.12059957534074783, -0.09457384049892426, -0.10725699365139008, 0.022411322221159935], +select:[0.025129586458206177, 0.0020286040380597115, -0.07317386567592621, -0.10522311925888062, 0.01824897527694702, 0.055537041276693344, 0.06029016897082329, -0.047807857394218445, -0.034763943403959274, 0.06799938529729843, 0.03730394318699837, 0.04857877269387245, -0.013125094585120678, 0.12498876452445984, -0.010325483046472073, 0.03332532197237015, 0.08481428772211075, 0.038046497851610184, -0.09085546433925629, -0.11354271322488785, 0.0038788318634033203, 0.07040882855653763, 0.08572857826948166, 0.10449972748756409, -0.03796990588307381, 0.035464752465486526, -0.019960099831223488, 0.033240657299757004, 0.03571123629808426, 0.08458579331636429, 0.10648266226053238, -0.07581356167793274, -0.027971280738711357, -0.08849383145570755, -0.06854672729969025, -0.022451436147093773, -0.032859232276678085, -0.0005162552697584033, 0.09290803223848343, -0.08918299525976181, 0.05287408456206322, 0.12243279814720154, 0.01582515984773636, -0.06971221417188644, 0.04090983048081398, -0.16884547472000122, 0.0627172440290451, 0.09576926380395889, 0.03164296597242355, -0.04024343192577362, 0.08553727716207504, 0.029702836647629738, 0.04999314248561859, 0.06138932332396507, 0.0900563970208168, 0.026760363951325417, 0.11830096691846848, -0.134126216173172, 0.02583424188196659, 0.003165074158459902, 0.04355057701468468, 0.10422999411821365, -0.05951632186770439, 0.10899749398231506, -0.06365980207920074, 0.007508647628128529, -0.03474519029259682, 0.011807175353169441, 0.005032808054238558, 0.16793705523014069, 0.019738394767045975, 0.05460801348090172, 0.0818932056427002, 0.034435804933309555, -0.01616417057812214, 0.0955725908279419, -0.005803591106086969, -0.07302141934633255, 0.004751063883304596, 0.04768044501543045, -0.0567396879196167, 0.012353082187473774, -0.01061764732003212, 0.023182371631264687, 0.06275007873773575, 0.20491079986095428, 0.021799711510539055, 0.020048905164003372, -0.02799474075436592, -0.23555698990821838, -0.02055586688220501, 0.10791030526161194, -0.06900548189878464, -0.010178104043006897, -0.0847751796245575, 0.11606983095407486, -0.05614147335290909, 0.004728576634079218, -0.10545613616704941, 0.10223744809627533, -0.0901106521487236, 0.04580843076109886, -0.06192636862397194, 0.07630250602960587, -0.07354526221752167, 0.030678873881697655, 0.054713960736989975, 0.08080362528562546, 0.026174107566475868, 0.024457283318042755, 0.005101535469293594, 0.05179102346301079, -0.05209234729409218, -0.13215042650699615, 0.0676056370139122, -0.08207898586988449, -0.11120173335075378, -0.046141546219587326, -0.05316443741321564, -0.11101201921701431, 0.045318249613046646, 0.007815731689333916, -0.06840883195400238, 0.036466121673583984, 0.05220307037234306, 0.05335360765457153, -0.010562742128968239, 0.050187431275844574, -0.05737738683819771, -0.05296539515256882, 0.022634778171777725, -0.035872865468263626, -0.12805809080600739, -0.09722359478473663, 0.06831800192594528, -0.003924536984413862, 0.011984885670244694, 0.03853004425764084, -0.06362136453390121, -0.013410113751888275, 0.1157011166214943, -0.039380814880132675, 0.07772914320230484, 0.06016867980360985, -0.0791553258895874, -0.07346384227275848, 0.20695710182189941, -0.035525087267160416, 0.009212121367454529, 0.3002620041370392, -0.06282667070627213, 0.0948106050491333, 0.0584297701716423, -0.04229423403739929, -0.07762505114078522, -0.030489543452858925, -0.017178868874907494, -0.010021807625889778, 0.07685326784849167, 0.011246688663959503, -0.050283633172512054, -0.021618561819195747, 0.01665325276553631, 0.05414582043886185, 0.09335656464099884, -0.04535381495952606, 0.10290547460317612, -0.012225436046719551, -0.06574823707342148, 0.12663932144641876, 0.024903517216444016, 0.03329421579837799, -0.04973438382148743, -0.07728123664855957, -0.07333000004291534, 0.04949459433555603, 0.06874736398458481, 0.020909050479531288, -0.09977888315916061, -0.05857887119054794, 0.2775370478630066, -0.037443891167640686, -0.0025165120605379343, 0.022242393344640732, -0.005600000265985727, 0.09268318116664886, 0.06370048224925995, 0.09178733825683594, 0.06502468883991241, 0.03977340832352638, 0.2249971479177475, 0.1126113012433052, -0.04005914926528931, 0.008509068749845028, 0.05134177953004837, -0.13609500229358673, -0.06455767154693604, -0.032166413962841034, 0.023995811119675636, 0.06417352706193924, 0.06867241859436035, 0.019930802285671234, -0.05681445449590683, 0.033214181661605835, -0.0898764356970787, -0.04873497039079666, -0.05710837244987488, -0.007015019189566374, 0.013761195354163647, 0.06649062037467957, 0.011293680407106876, -0.03998292610049248, -0.05490979552268982, 0.09403543174266815, 0.01945946179330349, 0.10407724231481552, 0.039427272975444794, 0.07779743522405624, 0.04031255468726158, -0.2011747807264328, 0.08573654294013977, -0.053506989032030106, -0.013849091716110706, 0.016227692365646362, -0.05669808387756348, 0.01106179878115654, -0.08846662193536758, -0.05335959419608116, 0.042651161551475525, 0.03243584558367729, 0.09187974035739899, 0.04935207962989807, -0.03450426459312439, 0.09431856870651245, 0.057982899248600006, -0.03979991376399994, -0.06202699616551399, 0.20992028713226318, -0.11917006969451904, -0.04487699270248413, 0.08687576651573181, 0.06837286055088043, 0.02905031479895115, -0.056127071380615234, -0.10094264149665833, 0.047289274632930756, -0.02649075724184513, 0.0664392039179802, -0.09886125475168228, 0.055807940661907196, -0.04628995060920715, 0.03849531337618828, -0.053873032331466675, 0.07457231730222702, 0.02385236881673336, -0.044359344989061356, -0.0785461887717247, -0.06983280181884766, 0.07122458517551422, -0.0071410927921533585, -0.05066664516925812, -0.011811104603111744, -0.1568915992975235, -0.058916520327329636, -0.045483313500881195, -0.0005215640412643552, -0.05541514977812767, -2.492283601895906e-05, 0.0336831659078598, -0.011713366024196148, -0.017574544996023178, -0.05357719212770462, 0.035545945167541504, 0.02258533425629139, 0.03928114473819733, -0.002663463121280074, 0.0892794132232666, -0.06765894591808319, -0.010095515288412571, -0.0191518384963274, 0.01959127187728882, 0.07570958137512207, -0.05861350893974304, -0.1593497395515442, 0.03192119672894478, -0.03504941985011101, -0.10346952080726624, 0.1523166298866272, -0.08955495804548264, -0.04717712476849556, 0.022952204570174217, -0.09196863323450089, -0.008267499506473541, 0.01586178131401539, -0.09083960205316544, 0.03794801980257034, 0.0346079096198082, 0.041210923343896866, -0.02883843146264553, 0.025533409789204597], +sext:[0.025920260697603226, -0.0016899954061955214, -0.016801664605736732, -0.10793105512857437, -0.07003238052129745, 0.08232767134904861, 0.06703172624111176, -0.0680183619260788, -0.03819722682237625, -0.06745824217796326, 0.03722240403294563, -0.07874403148889542, -0.02212928794324398, 0.12955179810523987, -0.00010020220361184329, 0.055871475487947464, 0.11746086180210114, 0.040772296488285065, -0.1297377645969391, 0.011152518913149834, 0.0521821454167366, 0.0418178029358387, 0.1404247283935547, 0.10017642378807068, 0.014669868163764477, 0.03898586705327034, -0.023275604471564293, 0.10620743781328201, 0.039248671382665634, 0.009247450157999992, 0.12078695744276047, 0.054600320756435394, 0.018102794885635376, -0.10464204102754593, -0.09002447128295898, -0.04469836875796318, -0.040168482810258865, 0.010680762119591236, -0.038766663521528244, -0.11595668643712997, 0.05703066289424896, 0.04569147899746895, 0.003009948879480362, -0.07993052899837494, -0.02223288267850876, -0.11458780616521835, 0.06502614915370941, 0.09940537065267563, 0.12603899836540222, -0.04189140349626541, -0.044964246451854706, 0.004445540718734264, 0.05677647516131401, 0.0812876746058464, 0.09264694154262543, 0.03844602778553963, -0.035477425903081894, -0.22133100032806396, 0.019673142582178116, -0.03291017934679985, 0.04353829473257065, -0.07024385780096054, -0.025145210325717926, 0.12286503612995148, 0.04461151361465454, 0.05253833159804344, -0.04448526352643967, 0.04102059081196785, 0.007172463461756706, 0.042181603610515594, 0.04667087644338608, 0.05609167367219925, -0.12759804725646973, 0.05629061162471771, -0.05794507637619972, -0.15124472975730896, 0.09983868151903152, 0.19045180082321167, 0.013877011835575104, 0.05390883982181549, -0.06692736595869064, 0.01449495553970337, 0.03489353507757187, 0.16420289874076843, 0.07430007308721542, 0.07761996239423752, 0.022275816649198532, -0.062092483043670654, -0.03073968179523945, 0.1071247011423111, 0.07377295941114426, -0.031950000673532486, -0.07708001881837845, -0.018236549571156502, 0.023693738505244255, 0.041919685900211334, -0.057561568915843964, -0.028708986937999725, -0.06705331057310104, 0.10698225349187851, -0.0952916070818901, 0.11440148204565048, -0.017917411401867867, 0.0908665806055069, -0.0761900246143341, 0.003737053368240595, 0.07584723085165024, 0.11111191660165787, -0.14085334539413452, -0.06353478878736496, 0.0572335310280323, 0.04867643862962723, -0.05586007237434387, -0.13568654656410217, -0.09650632739067078, -0.027750937268137932, 0.10496833920478821, -0.04790329560637474, -0.056830182671546936, -0.11721687763929367, 0.08369552344083786, 0.06492273509502411, 0.04033609852194786, -0.035966597497463226, -0.06567345559597015, -0.054750099778175354, -0.06247195601463318, 0.016808412969112396, -0.06263009458780289, 0.08067864179611206, -0.0037360754795372486, 0.1275160163640976, 0.03177850693464279, -0.012304231524467468, 0.08092325180768967, 0.01453290693461895, 0.015202575363218784, 0.04041362181305885, 0.09270256012678146, -0.10089823603630066, -0.15851226449012756, -0.14197944104671478, -0.07585827261209488, 0.11398997157812119, -0.08228733390569687, -0.048647191375494, -0.15655475854873657, 0.07633881270885468, 0.011683281511068344, 0.29412779211997986, -0.032260000705718994, 0.1009879782795906, 0.11880528181791306, -0.09348946809768677, -0.14295178651809692, -0.05827529728412628, -0.01647934503853321, -0.0380905345082283, -0.004162291530519724, 0.029123349115252495, -0.1323031187057495, -0.02348116785287857, 0.017732063308358192, 0.13724353909492493, 0.10092733055353165, -0.006543443072587252, 0.12225911766290665, -0.04047863185405731, -0.051035914570093155, 0.03494392707943916, 0.026810046285390854, -0.03686017170548439, 0.012495246715843678, -0.11419212818145752, -0.07639520615339279, 0.05340557545423508, 0.06401322036981583, -0.00028827012283727527, 0.09807774424552917, 0.028763286769390106, -0.16542504727840424, -0.025184229016304016, -0.050115641206502914, 0.02289634943008423, 0.10394594818353653, 0.08290471136569977, 0.03416847437620163, -0.04831864312291145, 0.028278855606913567, 0.03737541660666466, 0.21000875532627106, 0.14280188083648682, -0.036243803799152374, 0.011755281127989292, 0.05765914544463158, 0.0019330638460814953, -0.03766058012843132, 0.03981924429535866, -0.11275475472211838, 0.08818630874156952, 0.07412254810333252, -0.10888843983411789, -0.08304477483034134, -0.0007664756267331541, -0.11602579057216644, -0.07281352579593658, 0.017606738954782486, -0.007838529534637928, 0.053678639233112335, 0.06706027686595917, 0.08346566557884216, -0.011844797991216183, -0.05480619892477989, 0.10400272905826569, 0.06737267225980759, 0.0954422652721405, 0.05617328733205795, 0.08043090999126434, -0.0777444988489151, 0.09431979060173035, 0.1079520583152771, 0.008854847401380539, -0.027229763567447662, 0.03880340978503227, -0.00219535524956882, 0.09176265448331833, -0.09206558763980865, -0.05786838382482529, 0.09022919088602066, 0.028238022699952126, -0.08546561747789383, 0.051812950521707535, -0.04611026868224144, 0.09292879700660706, 0.09938149899244308, -0.059302520006895065, -0.027027742937207222, 0.1010776162147522, 0.03181346505880356, -0.0009113472769968212, 0.09000494331121445, 0.06979332119226456, 0.035251569002866745, 0.07517754286527634, -0.08081051707267761, 0.047807980328798294, 0.04557707905769348, -0.10249750316143036, -0.09643746167421341, 0.002007741015404463, -0.03621762990951538, -0.04273102805018425, -0.04993832856416702, 0.11151855438947678, 0.029390649870038033, -0.033700913190841675, -0.11046985536813736, 0.13711205124855042, 0.07713355869054794, -0.0700889453291893, -0.04808356985449791, -0.020352141931653023, 0.035009920597076416, -0.10985101759433746, 0.019693102687597275, 0.001064823823980987, -0.0797615498304367, 0.023976722732186317, 0.036916740238666534, -0.033260226249694824, -0.02300044521689415, -0.06424245238304138, 0.03784147650003433, 0.02489020861685276, 0.05341056361794472, 0.03154241666197777, 0.037899721413850784, 0.007508970331400633, -0.018048301339149475, -0.016318218782544136, 0.03339533507823944, 0.11518320441246033, 0.05347689613699913, -0.02371029369533062, 0.06592439860105515, -0.050948821008205414, -0.105340376496315, 0.07365147769451141, -0.07526133209466934, -0.05751533433794975, 0.023839319124817848, 0.13172602653503418, 0.05683264881372452, 0.01598483882844448, -0.027610652148723602, 0.05416964367032051, 0.08945003896951675, -0.12167155742645264, -0.03087642602622509, 0.02631380595266819], +shl:[0.026102837175130844, -0.002887694165110588, -0.2343887984752655, -0.10859856009483337, -0.027038676664233208, 0.02105037122964859, 0.07042007893323898, -0.08106275647878647, -0.047776881605386734, -0.007801737170666456, 0.02495609037578106, -0.10616794228553772, -0.018113505095243454, 0.12826448678970337, -0.039774440228939056, 0.026882125064730644, 0.145043283700943, 0.04130619391798973, -0.05887937918305397, -0.03202749788761139, -0.003885997459292412, 0.15383248031139374, 0.13913732767105103, 0.10903290659189224, 0.027173783630132675, 0.03852446377277374, -0.032595474272966385, 0.056241415441036224, -0.012581977061927319, -0.08767307549715042, -0.07291112840175629, 0.01226348802447319, -0.0010371432872489095, -0.11018800735473633, -0.08395200967788696, -0.02170567773282528, -0.04112696275115013, 0.006633256562054157, 0.095704585313797, -0.09861049801111221, 0.055003441870212555, 0.09001151472330093, 0.05704549700021744, -0.007406413555145264, 0.07096674293279648, -0.0017046841094270349, 0.0660821869969368, 0.09925925731658936, 0.05330570042133331, -0.041786544024944305, -0.04565960168838501, 0.04971946030855179, 0.041183535009622574, 0.0835842490196228, 0.03566901385784149, 0.05664980784058571, 0.09380736202001572, 0.07591374963521957, -0.03875741362571716, 0.020013177767395973, 0.04469539225101471, 0.04158776253461838, -0.02142539992928505, 0.12426842004060745, -0.026121089234948158, 0.07033951580524445, -0.09865138679742813, 0.07983005791902542, 0.05241737514734268, -0.0021481704898178577, 0.012638432905077934, 0.056626804172992706, -0.011982257477939129, 0.0676845908164978, -0.11763100326061249, -0.12162601202726364, 0.019360000267624855, -0.19470149278640747, 0.01328988280147314, 0.054504748433828354, -0.0962984636425972, 0.007331599947065115, 0.03588486835360527, 0.06898509711027145, 0.07315748929977417, -0.16826918721199036, -0.04584110528230667, 0.142546609044075, -0.021547824144363403, 0.10992895066738129, 0.09698927402496338, -0.032470785081386566, -0.07853429764509201, -0.011531831696629524, -0.09513284265995026, 0.017214609310030937, -0.027929086238145828, -0.05527428537607193, -0.06337951868772507, 0.11360856890678406, -0.10275620967149734, -0.06672859936952591, 0.054166655987501144, 0.04625331237912178, -0.032796528190374374, 0.04799225553870201, 0.11837685853242874, 0.10577903687953949, -0.13039056956768036, -0.012620415538549423, 0.07519862800836563, 0.039452821016311646, -0.05821415036916733, -0.11993670463562012, 0.06559731066226959, -0.052187155932188034, 0.04434129223227501, -0.047708187252283096, -0.0627625361084938, -0.11833157390356064, -0.012312967330217361, -0.0003547186788637191, -0.1034584641456604, -0.024121908470988274, 0.05250599607825279, 0.0072105745784938335, 0.024909477680921555, -0.10034911334514618, -0.11569198966026306, -0.08770710974931717, 0.003451953874900937, 0.12403026968240738, -0.13549882173538208, -0.10865642130374908, 0.08764705061912537, 0.005856664851307869, 0.012862720526754856, 0.03938009589910507, -0.06274627149105072, -0.11225548386573792, 0.06788984686136246, -0.14220216870307922, 0.18477843701839447, 0.020775314420461655, -0.08409791439771652, -0.12295147031545639, 0.1749691665172577, 0.03345287963747978, -0.057289451360702515, 0.07255269587039948, -0.009962913580238819, 0.11021023243665695, 0.10626687109470367, -0.08759834617376328, -0.21143685281276703, 0.0809459239244461, 0.0228388924151659, -0.04396570473909378, 0.10126989334821701, 0.018989119678735733, -0.0625656321644783, -0.03900918737053871, 0.01788165792822838, 0.14057783782482147, 0.10154504328966141, -0.08849555253982544, 0.0020613973028957844, -0.016848521307110786, -0.10931117087602615, 0.03938678652048111, 0.025820070877671242, -0.019353531301021576, 0.05034518614411354, -0.11541899293661118, -0.02640732005238533, 0.05987872555851936, 0.08450784534215927, -0.006180141121149063, 0.12370839715003967, -0.010763764381408691, 0.028168855234980583, 0.06869890540838242, -0.17108730971813202, -0.012129942886531353, 0.08366379141807556, 0.059580445289611816, -0.043982625007629395, 0.07816886901855469, 0.05023486539721489, 0.05066415295004845, -0.12807472050189972, 0.10852224379777908, -0.0022729123011231422, -0.1442461907863617, 0.0556376613676548, 0.04585934430360794, -0.07008756697177887, 0.13706761598587036, -0.03044052980840206, 0.09252957254648209, 0.07293885201215744, 0.014114473015069962, 0.07956188917160034, -0.006585896946489811, -0.06648838520050049, -0.076064832508564, 0.021416259929537773, 0.011267523281276226, 0.07953767478466034, 0.0699315294623375, 0.00629521906375885, 0.04201190173625946, -0.029247600585222244, 0.09683771431446075, 0.11735199391841888, -0.015556834638118744, 0.054432712495326996, 0.07704087346792221, 0.10677275061607361, 0.05433517321944237, 0.09984413534402847, -0.06974977254867554, -0.026208072900772095, -0.02887936681509018, -0.08538760989904404, -0.04347941651940346, -0.05522165074944496, -0.058761805295944214, 0.04855566844344139, -0.09064625203609467, -0.0873056948184967, 0.05199115723371506, -0.033185433596372604, 0.042814020067453384, 0.030886903405189514, 0.08519132435321808, 0.034925930202007294, 0.2220473736524582, 0.1036253497004509, 0.0012843853328377008, 0.09088677912950516, 0.0721672847867012, 0.0028960881754755974, -0.038795553147792816, 0.13216501474380493, 0.04928869754076004, 0.04885255545377731, 0.02840619720518589, -0.08715759962797165, 0.046027496457099915, -0.04423191770911217, 0.12599976360797882, -0.05421486496925354, 0.06711063534021378, 0.025262733921408653, -0.07490194588899612, -0.12226767838001251, 0.018105538561940193, 0.10425227880477905, 0.09697924554347992, 0.13429850339889526, -0.01054837554693222, -0.09281783550977707, -0.06240835040807724, -0.045470792800188065, 0.10217972099781036, -0.07899666577577591, 0.010077269747853279, 0.0400005578994751, -0.012040815316140652, -0.018508359789848328, -0.055316273123025894, -0.03587520867586136, 0.02578328549861908, -0.011022510938346386, 0.025190113112330437, 0.0036593598779290915, -0.09658502042293549, -0.014400744810700417, -0.020047495141625404, -0.03909295052289963, 0.1273117959499359, 0.017729831859469414, -0.06345511972904205, 0.04909700155258179, -0.03997192904353142, -0.10608077049255371, 0.1510637104511261, -0.08890219777822495, -0.05574130266904831, 0.024576956406235695, -0.04025334119796753, -0.03972719609737396, 0.06399569660425186, 0.06732148677110672, 0.047927722334861755, -0.021512752398848534, -0.05261780694127083, -0.0954054445028305, 0.022921601310372353], +shufflevector:[0.04796992242336273, 0.04317846521735191, -0.08178464323282242, 0.06934768706560135, -0.08849639445543289, -0.01482747308909893, 0.04511921480298042, -0.10426844656467438, -0.1136280968785286, -0.0076392414048314095, 0.03695587068796158, 0.018797174096107483, 0.12676939368247986, 0.1290755420923233, -0.024968130514025688, -0.0383995957672596, 0.08856168389320374, 0.057951826602220535, -0.1337028294801712, 0.04024636000394821, -0.04137662053108215, -0.004779531620442867, 0.1298847496509552, 0.1110474020242691, -0.014921233989298344, 0.1029973104596138, 0.14163199067115784, -0.12529565393924713, 0.03962305933237076, 0.000820535293314606, -0.09674723446369171, -0.006308545358479023, 0.10087176412343979, 0.08822936564683914, 0.06343623995780945, -0.05302851274609566, -0.09752330183982849, 0.009530496783554554, 0.08880586922168732, -0.12098565697669983, 0.05964009463787079, 0.07319707423448563, 0.01418236643075943, -0.0997554361820221, 0.05066612362861633, 0.053958483040332794, 0.06502724438905716, 0.0994105413556099, 0.1005810797214508, -0.11154844611883163, -0.02754100412130356, 0.10386046022176743, 0.04168671369552612, 0.08148270845413208, 0.09671112895011902, -0.004331324715167284, 0.07700493186712265, -0.042753320187330246, 0.030374037101864815, 0.07461115717887878, 0.06365761160850525, -0.03913695737719536, -0.13399338722229004, 0.12285318225622177, -0.08298797160387039, 0.09959439933300018, -0.023968376219272614, -0.11472577601671219, -0.06989704817533493, 0.038611896336078644, 0.02945259027183056, -0.008316290564835072, 0.10618701577186584, 0.02772991545498371, -0.16844819486141205, -0.013422722928225994, 0.09953245520591736, 0.03326108306646347, 0.10606741160154343, -0.009790409356355667, -0.023038195446133614, 0.04867709428071976, 0.0017404864775016904, 0.00758318742737174, 0.043791573494672775, -0.047166068106889725, 0.01732909306883812, 0.11951936781406403, 0.06750614941120148, 0.024139227345585823, -0.07943149656057358, 0.04743574187159538, -0.06230044737458229, 0.09618522971868515, -0.11517117917537689, -0.11229823529720306, -0.05521872267127037, 0.04949503391981125, -0.11025756597518921, -0.05762153118848801, 0.004759986884891987, -0.07022286206483841, 0.01764429733157158, 0.08814109861850739, -0.07659975439310074, 0.12078611552715302, 0.07117681950330734, 0.10617237538099289, -0.0646783635020256, 0.06025777757167816, 0.05342938378453255, 0.043006423860788345, -0.053481150418519974, -0.13530538976192474, -0.05105702579021454, -0.09414473921060562, -0.08697096258401871, -0.046887945383787155, -0.056626398116350174, -0.11640914529561996, 0.08224152028560638, 0.07865127176046371, 0.10280686616897583, -0.017299391329288483, -0.02759578824043274, 0.0565246120095253, 0.04520998150110245, -0.09250886738300323, -0.07606460899114609, -0.09277956932783127, -0.11809004098176956, -0.044229891151189804, 0.029461150988936424, -0.14093363285064697, 0.126156285405159, -0.070661760866642, 0.015273625031113625, 0.03974068537354469, -0.06553084403276443, 0.008041455410420895, -0.044318005442619324, 0.1170622706413269, 0.08127633482217789, 0.06717247515916824, -0.08185455203056335, 0.02108480967581272, 0.0012373552890494466, -0.03196011111140251, 0.12532077729701996, -0.025370586663484573, -0.03163301199674606, 0.10424341261386871, 0.12069205939769745, -0.06299816071987152, -0.15352028608322144, 0.08866994827985764, -0.016315776854753494, 0.03208974748849869, 0.07782545685768127, -0.027068469673395157, 0.046440981328487396, -0.1201377809047699, 0.02045052871108055, 0.13849852979183197, 0.10010926425457001, 0.10759318619966507, 0.007121908012777567, -0.010120031423866749, -0.10443206131458282, 0.06059352681040764, 0.027204256504774094, -0.036057937890291214, -0.08730990439653397, -0.08265785127878189, -0.09826047718524933, 0.04463392123579979, -0.09576089680194855, -0.04004041478037834, -0.1241375282406807, -0.030904872342944145, -0.002637958386912942, -0.019478000700473785, -0.054743945598602295, 0.034880347549915314, -0.1785474568605423, 0.09858611226081848, 0.03444516286253929, -0.05176462605595589, -0.06680405884981155, -0.017320873215794563, 0.05326385423541069, 0.15192396938800812, -0.07045698910951614, -0.006046317983418703, -0.0908380076289177, -0.019822504371404648, -0.034779079258441925, -0.06517501175403595, 0.04677490517497063, 0.07034389674663544, 0.07548154890537262, -0.027259131893515587, 0.005705286283046007, 0.04840141907334328, 0.025912027806043625, -0.07713634520769119, -0.11474938690662384, -0.014681198634207249, 0.01094561256468296, -0.01342910248786211, -0.09604638069868088, -0.00551301846280694, -0.05577457696199417, 0.10620468854904175, 0.12865126132965088, -0.11988361924886703, 0.05399960279464722, 0.0791592076420784, 0.11393805593252182, -0.03617645055055618, 0.11260615289211273, -0.03513258695602417, -0.026433506980538368, -0.11873318254947662, -0.1001954972743988, -0.06129080429673195, -0.09276119619607925, -0.09133102744817734, 0.046988025307655334, 0.0912523940205574, 0.05843174830079079, -0.10830870270729065, -0.07174181938171387, 0.09694501757621765, -0.10571224242448807, 0.09563276171684265, -0.007720902096480131, 0.19296768307685852, -0.06362781673669815, -0.0887250006198883, 0.022131456062197685, 0.06932365894317627, 0.03971972316503525, 0.0048333825543522835, -0.008468045853078365, 0.11333590000867844, -0.09146572649478912, 0.051118072122335434, 0.10591373592615128, 0.08179255574941635, -0.026263311505317688, -0.011871189810335636, -0.03211229667067528, 0.11084412038326263, 0.021035274490714073, -0.0007666359888389707, -0.13271592557430267, 0.02193867228925228, 0.10301806777715683, -0.06705476343631744, 0.042514607310295105, -0.030181419104337692, 0.09407709538936615, 0.02780977636575699, -0.009330526925623417, 0.0001373849663650617, -0.08329042047262192, -0.005321831442415714, 0.0006723437691107392, 0.07489630579948425, 0.020039666444063187, 0.00834494549781084, 0.04358667880296707, 0.02325853519141674, 0.04741070792078972, -0.1101214587688446, 0.09318173676729202, 0.010156047530472279, 0.027986008673906326, 0.10130736231803894, 0.045416392385959625, 0.12186454981565475, -0.13295473158359528, -0.0034957951866090298, 0.023808736354112625, 0.003474019467830658, -0.10434510558843613, 0.0948689803481102, -0.023469116538763046, -0.12218272686004639, -0.052104923874139786, 0.06637144088745117, -0.02030218578875065, -0.06246918439865112, -0.014652305282652378, 0.052964095026254654, 0.0972016453742981, 0.07399223744869232, -0.023285938426852226, 0.0346551239490509], +sitofp:[0.049666088074445724, 0.04135951027274132, 0.05743229761719704, 0.07828802615404129, -0.09317969530820847, 0.005849688313901424, 0.06203828752040863, 0.011213370598852634, 0.10676302015781403, 0.10087526589632034, 0.03326432779431343, -0.01898236572742462, -0.006064439658075571, 0.12479229271411896, -0.03479554131627083, -0.018696201965212822, 0.061769358813762665, 0.06628317385911942, -0.09002817422151566, 0.06070404872298241, 0.07588746398687363, -0.008435883559286594, 0.14011675119400024, 0.10638084262609482, -0.011770817451179028, 0.012006183154881, 0.12425865978002548, -0.042116742581129074, -0.047870904207229614, -0.029908189550042152, -0.0009720171219669282, 0.026953808963298798, -0.04356928914785385, -0.11156497895717621, 0.002685237443074584, -0.11272366344928741, -0.018505292013287544, 0.01512724906206131, 0.09148792177438736, -0.1162044033408165, 0.05687754973769188, -0.04713789373636246, 0.19913654029369354, -0.07255852967500687, 0.04168707877397537, -0.06234966218471527, 0.0627313032746315, 0.09601376205682755, 0.0874769315123558, -0.039768118411302567, -0.05558400973677635, 0.039008643478155136, 0.05583278462290764, 0.06818776577711105, 0.08860775828361511, -0.001074490137398243, -0.04138987883925438, -0.027675408869981766, 0.019852355122566223, 0.06053036451339722, 0.060722045600414276, -0.0281747467815876, 0.04493161663413048, 0.11862678080797195, -0.07913438230752945, 0.13464610278606415, -0.02302127331495285, -0.1026003435254097, 0.20784860849380493, -0.047781627625226974, 0.015143612399697304, 0.0299522802233696, -0.04823874309659004, 0.09669779241085052, -0.14016523957252502, -0.10835710912942886, -0.10212884843349457, -0.12127514183521271, 0.004272014833986759, 0.053107850253582, -0.07606129348278046, 0.04714326933026314, -0.0004595249774865806, 0.010227157734334469, 0.0697411373257637, 0.08136717230081558, 0.023746658116579056, 0.08285818994045258, -0.029108338057994843, 0.0049971407279372215, 0.10369255393743515, -0.021654317155480385, -0.07807403802871704, -0.010075956583023071, 0.02123153954744339, 0.04411039501428604, -0.009366312995553017, 0.07858187705278397, 0.0434134416282177, 0.10003608465194702, -0.08822902292013168, -0.10319781303405762, -0.14490538835525513, 0.07463277131319046, -0.07305845618247986, 0.13557128608226776, 0.0347650945186615, 0.08131168782711029, 0.0313856415450573, -0.1263248324394226, 0.05913110449910164, 0.05806417018175125, -0.009514989331364632, -0.13069425523281097, 0.0756702795624733, -0.08438313007354736, 0.08048297464847565, -0.005408272612839937, -0.05138011276721954, -0.11386464536190033, 0.08033134043216705, 0.07711651921272278, 0.08398477733135223, -0.008775872178375721, -0.016376618295907974, -0.14862212538719177, -0.05946940556168556, 0.04877163842320442, -0.05887177959084511, -0.07524015754461288, -0.011170483194291592, 0.10016290098428726, -0.007888998836278915, -0.1280757635831833, 0.09076550602912903, -0.012278738431632519, 0.015039362944662571, 0.03810340538620949, -0.072062648832798, -0.010798241011798382, -0.021926945075392723, -0.0949728935956955, 0.09568210691213608, -0.00017311946430709213, -0.07911140471696854, -0.11939205229282379, 0.03735865652561188, 0.08609922230243683, 0.011133668944239616, 0.1442105621099472, -0.0341174453496933, 0.09442375600337982, -0.0593683198094368, -0.11292187869548798, -0.015838712453842163, -0.06692786514759064, -0.012554126791656017, 0.0336637981235981, -0.003898218274116516, 0.009967383928596973, -0.19295959174633026, -0.11430469155311584, 0.018435563892126083, 0.12790393829345703, 0.09669526666402817, -0.03390892967581749, 0.04393904656171799, -0.012072487734258175, -0.06486048549413681, -0.06337635219097137, 0.09931991994380951, -0.03102090209722519, -0.0676901564002037, -0.11035476624965668, -0.07325051724910736, 0.05511336773633957, 0.0031114406883716583, 0.09775647521018982, -0.07662392407655716, -0.0011869624722748995, 0.06361962109804153, 0.06496275961399078, 0.07711578160524368, 0.025359265506267548, 0.1261579394340515, 0.08557082712650299, 0.13519547879695892, -0.05676620453596115, 0.0280967578291893, -0.014368250966072083, 0.06059171259403229, 0.13761043548583984, -0.06555981934070587, 0.15025663375854492, 0.028942391276359558, -0.1092115268111229, -0.06399628520011902, 0.024044129997491837, 0.04275396466255188, 0.07533491402864456, -0.03811177238821983, -0.056138575077056885, -0.09015197306871414, 0.03349857032299042, -0.10654947906732559, -0.06042999401688576, -0.00718261580914259, -0.0038128162268549204, 0.01001329068094492, 0.041130661964416504, 0.08755569905042648, -0.00790318287909031, -0.058975640684366226, 0.11086564511060715, 0.060044869780540466, -0.07342968881130219, 0.05436820536851883, 0.07897420227527618, -0.039061710238456726, 0.06499099731445312, 0.08734942227602005, 0.1577175110578537, -0.024856790900230408, 0.03493085876107216, -0.01841043122112751, 0.014583333395421505, -0.08571209013462067, -0.11197721213102341, 0.09795776754617691, 0.019032076001167297, 0.05798949673771858, -0.10442152619361877, -0.04209507256746292, 0.0925498902797699, -0.1533503234386444, 0.08435814827680588, 0.10164344310760498, 0.07817884534597397, -0.05688405781984329, 0.11569775640964508, -0.0042543066665530205, 0.06966806948184967, 0.06608384847640991, -0.12574170529842377, -0.03611641377210617, 0.04805641248822212, 0.04454214870929718, 0.010809849947690964, 0.013724417425692081, 0.03247538208961487, -0.018565399572253227, -0.054876986891031265, -0.05368267744779587, 0.10732400417327881, 0.0018540183082222939, -0.10885237902402878, -0.12429723143577576, -0.052887335419654846, 0.0989936888217926, 0.10021403431892395, -0.014499708078801632, -0.011021043173968792, 0.0894589051604271, 0.04349367320537567, 0.06765756011009216, 0.006350929848849773, -0.05652255564928055, 0.02572273090481758, 0.0015640007331967354, 0.023436034098267555, -0.018184321001172066, 0.0396265983581543, -0.029700569808483124, 0.023668132722377777, -0.040008049458265305, 0.005622939206659794, -0.05704743042588234, 0.02789796143770218, 0.05277097597718239, 0.001298115006648004, 0.037537772208452225, 0.11505568772554398, -0.12843112647533417, -0.04084645211696625, 0.12942972779273987, 0.030666640028357506, -0.02774789184331894, -0.08619394153356552, -0.0441729910671711, -0.01924651861190796, -0.048814281821250916, 0.04947908595204353, -0.08033405989408493, 0.08367898315191269, -0.009173756465315819, 0.049073461443185806, 0.06002939119935036, -0.004190211649984121, -0.027578581124544144, 0.005682047922164202], +srem:[0.024277914315462112, -0.004156109876930714, -0.06724334508180618, -0.10187822580337524, -0.058266181498765945, -0.011151105165481567, 0.11732912808656693, -0.05449056252837181, 0.11094124615192413, 0.013782981783151627, 0.030030008405447006, -0.08876040577888489, -0.011091441847383976, 0.09618373215198517, 0.04399045929312706, 0.0048646479845047, 0.13580825924873352, 0.10352571308612823, 0.00409159529954195, -0.04687579348683357, -0.008954518474638462, -0.011617333628237247, 0.13993535935878754, 0.09960126131772995, 0.006160869728773832, 0.0357593297958374, -0.08112569153308868, 0.0463043749332428, -0.015167188830673695, -0.07150136679410934, 0.08209444582462311, -0.010342954657971859, -0.016119467094540596, -0.11908821761608124, -0.0864008218050003, -0.11990488320589066, 0.05243151634931564, 0.018994972109794617, 0.08984236419200897, -0.09134826064109802, 0.09426558762788773, 0.06928139179944992, 0.03510528802871704, -0.04640160873532295, 0.05310238152742386, -0.11248283833265305, 0.11245448887348175, 0.020147772505879402, -0.06708125025033951, -0.03883042559027672, -0.08099272102117538, -0.11023123562335968, 0.062390394508838654, 0.11639684438705444, 0.08535578846931458, 0.02710910513997078, 0.06280394643545151, -0.005738254636526108, -0.03383515775203705, -0.09156264364719391, 0.04096127673983574, 0.022211505100131035, -0.08168946206569672, -0.11363451927900314, -0.13380178809165955, 0.1500321328639984, -0.07805760204792023, 0.04272817075252533, 0.0933624729514122, -0.05763307586312294, -0.011397632770240307, 0.05360211059451103, -0.016906438395380974, 0.0935676172375679, -0.05418077111244202, -0.021200112998485565, -0.1400759071111679, 0.00010730880603659898, 0.012720010243356228, 0.051393769681453705, -0.09163251519203186, 0.012997590936720371, 0.06656992435455322, 0.024590197950601578, 0.06912168115377426, 0.00961924809962511, -0.0708671361207962, 0.03935910388827324, -0.026210319250822067, -0.05399785190820694, 0.09618030488491058, -0.10267861187458038, -0.07668103277683258, -0.010769439861178398, 0.021430907770991325, 0.007886583916842937, 0.08041409403085709, 0.12754741311073303, 0.03185374289751053, 0.1040252074599266, -0.12797003984451294, -0.13285008072853088, 0.07066810876131058, 0.03979993611574173, -0.03124331310391426, 0.008641541935503483, -0.11963891983032227, 0.07915519922971725, -0.1330074816942215, 0.05331665650010109, 0.11134602129459381, -0.07604066282510757, -0.05132654681801796, 0.07567262649536133, -0.046663474291563034, -0.012541965581476688, 8.251459803432226e-05, -0.06739360094070435, -0.09429251402616501, -0.11079100519418716, 0.07998437434434891, 0.007375700864940882, -0.11476998776197433, 0.028874142095446587, 0.002577902050688863, 0.037060800939798355, 0.05539170652627945, -0.10455372929573059, -0.043440088629722595, 0.08699914067983627, -0.10662924498319626, 0.1076868548989296, -0.1275130957365036, -0.0836869329214096, 0.06936576217412949, 0.003191954456269741, 0.07710430771112442, -0.10345220565795898, -0.017307376489043236, -0.09779968112707138, -0.01892830617725849, -0.11292615532875061, 0.0525176003575325, 0.009473823010921478, -0.05540093407034874, -0.06243467703461647, -0.001307829050347209, 0.08480537682771683, 0.007919559255242348, 0.029485346749424934, 0.0708831325173378, 0.11836837977170944, 0.10115554928779602, -0.03381343558430672, -0.031010905280709267, -0.05663543939590454, 0.017716193571686745, -0.07078631222248077, 0.11357183009386063, 0.016159947961568832, 0.031151054427027702, -0.045913826674222946, 0.015479173511266708, -0.008666818030178547, -0.0472969152033329, 0.02592630498111248, -0.0006217965856194496, -0.044468387961387634, 0.00645308056846261, -0.02410511113703251, 0.024633003398776054, -0.10509960353374481, -0.05934753268957138, -0.10860574245452881, -0.04773854836821556, 0.09910477697849274, 0.07783878594636917, -0.03545335307717323, -0.010418466292321682, -0.012168098241090775, -0.10148140788078308, 0.08975913375616074, -0.057155512273311615, 0.005912207067012787, 0.04681260883808136, 0.05185829475522041, 0.04877118766307831, 0.09287146478891373, 0.10300084948539734, 0.035760171711444855, 0.011272164061665535, 0.09923039376735687, 0.09826260805130005, 0.13231602311134338, 0.050518885254859924, 0.09479029476642609, -0.06515897810459137, -0.019102467224001884, -0.09882418811321259, 0.09778828173875809, 0.06651122868061066, -0.04740414395928383, -0.04832097515463829, -0.005086018703877926, -0.07816816121339798, -0.047024767845869064, 0.0017249580705538392, -0.11733054369688034, 0.0496189147233963, 0.1033596321940422, 0.001839293516241014, -0.11023255437612534, 0.005560644902288914, -0.10877325385808945, -0.06939666718244553, 0.02589190937578678, 0.08605248481035233, 0.07561607658863068, 0.000752213119994849, -0.004464985337108374, 0.06277206540107727, -0.13415011763572693, -0.024748343974351883, 0.03708242252469063, -0.0922977477312088, 0.1066192090511322, -0.011406004428863525, -0.03224967047572136, 0.1243479996919632, 0.030660158023238182, -0.15143263339996338, 0.049558162689208984, -0.05272414907813072, -0.05949314683675766, 0.04914557561278343, -0.006971399299800396, 0.05614800751209259, 0.04105258733034134, 0.12485764920711517, -0.13010630011558533, 0.0860138013958931, 0.06853298097848892, 0.06688479334115982, -0.042750198394060135, -0.06381915509700775, 0.0434797964990139, 0.04526565223932266, -0.01594719849526882, -0.13577879965305328, -0.021608958020806313, -0.09479113668203354, -0.00415898859500885, 0.002099865349009633, 0.009933951310813427, -0.032842494547367096, -0.06391192972660065, -0.12432275712490082, 0.04602643474936485, 0.06965110450983047, 0.02927449531853199, 0.13397377729415894, -0.010564045049250126, 0.006293804384768009, -0.05882663652300835, -0.02507461979985237, 0.007593472953885794, -0.08922086656093597, 0.04477502405643463, 0.037104085087776184, -0.12955531477928162, -0.043739791959524155, -0.04753103852272034, -0.11996951699256897, 0.022358756512403488, -0.03985863924026489, 0.021871935576200485, 0.010398640297353268, 0.030758045613765717, 0.006343567278236151, -0.020316381007432938, -0.06544598191976547, 0.14664128422737122, 0.06601270288228989, -0.2069445550441742, 0.006946467328816652, 0.0404709130525589, -0.10066685080528259, 0.13294200599193573, -0.030065802857279778, -0.04862877354025841, 0.022954490035772324, 0.007663577329367399, -0.049931202083826065, 0.010692266747355461, -0.04462603107094765, 0.09352994710206985, 0.09744396805763245, -0.07188935577869415, 0.04367634654045105, -0.03155937418341637], +store:[0.025428885594010353, -2.6482903194846585e-05, 0.08515936136245728, -0.10513471812009811, -0.029783165082335472, -0.03470124304294586, 0.06930354982614517, -0.05484718084335327, -0.03464898094534874, -0.005776425823569298, 0.034435927867889404, -0.06114433705806732, -0.014312459155917168, 0.12606629729270935, 0.027557875961065292, 0.051522642374038696, 0.11232397705316544, 0.03970807045698166, -0.08181862533092499, -0.030636724084615707, 0.07624797523021698, -0.12367675453424454, 0.08769051730632782, 0.10476350039243698, -0.024551210924983025, 0.04543124884366989, 0.07624885439872742, 0.07788652926683426, 0.07970250397920609, 0.06097392737865448, -0.07380591332912445, 0.07967956364154816, -0.03298148512840271, -0.09574323147535324, 0.022492695599794388, -0.08659233152866364, -0.03449411690235138, 0.007724972441792488, 0.05595558136701584, -0.11602132767438889, 0.05254784971475601, 0.012654292397201061, 0.09192191809415817, -0.07103155553340912, -0.016282688826322556, 0.10005242377519608, 0.06321826577186584, 0.09687164425849915, -0.0257112979888916, -0.034873344004154205, 0.04700836166739464, -0.11503566056489944, 0.05974353477358818, 0.0690470039844513, 0.09383153170347214, 0.0351385772228241, 0.15638750791549683, 0.13117815554141998, 0.02419615164399147, 0.033412281423807144, 0.044481150805950165, -0.05359606817364693, 0.03957432508468628, 0.10866069048643112, 0.11818114668130875, 0.003165558911859989, -0.033651042729616165, 0.011213880963623524, 0.07033441215753555, 0.017831722274422646, 0.020528607070446014, 0.055658094584941864, -0.018522268161177635, 0.019982047379016876, 0.003480820683762431, -0.1860671490430832, 0.10751580446958542, -0.18906369805335999, 0.017616964876651764, -0.1590804159641266, -0.08144182711839676, 0.014051681384444237, -0.004357580095529556, -0.11134236305952072, 0.07023589313030243, 0.0256605613976717, 0.02159460261464119, 0.026745790615677834, -0.02870771288871765, -0.03517676889896393, 0.08439408987760544, -0.03926796093583107, -0.07745476812124252, -0.010720719583332539, -0.08505341410636902, 0.04349522292613983, -0.05780961364507675, -0.011328766122460365, 0.12899935245513916, -0.014956226572394371, -0.0908549353480339, -0.008237599395215511, 0.08248737454414368, 0.07618149369955063, -0.07446546107530594, 0.049555305391550064, 0.05703633651137352, 0.08611000329256058, -0.0050567942671477795, -0.07330436259508133, 0.010015367530286312, -0.06720587611198425, -0.0518670417368412, -0.1313542276620865, 0.12967495620250702, -0.10190434008836746, 0.06091201305389404, -0.04656531289219856, -0.05424094200134277, -0.11291800439357758, 0.04708761349320412, 0.042243506759405136, -0.06413006037473679, -0.051160041242837906, -0.11178545653820038, 0.09256847947835922, -0.015903139486908913, 0.03596281632781029, -0.05115656927227974, -0.07384832948446274, -0.00034985042293556035, -0.018360618501901627, 0.07235471159219742, -0.10341119021177292, 0.039691366255283356, 0.0014946387382224202, -0.11098050326108932, 0.038998305797576904, -0.06614024937152863, -0.10861264914274216, 0.12358462810516357, -0.07420185208320618, -0.09379736334085464, -0.012028031051158905, -0.08011270314455032, 0.05531879514455795, 0.20537079870700836, 0.040204744786024094, 0.00872133206576109, 0.22885876893997192, -0.03726198896765709, 0.09270846843719482, 0.041201066225767136, -0.08771978318691254, 0.10792887210845947, 0.06036211550235748, -0.020416785031557083, 0.01714853011071682, 0.08125369995832443, 0.01051268633455038, -0.21274618804454803, -0.03674168884754181, 0.017002787441015244, 0.12339882552623749, 0.09793396294116974, -0.14921940863132477, -0.095820352435112, -0.03626561164855957, -0.05688192695379257, 0.0370473675429821, 0.026115700602531433, -0.036355677992105484, -0.053612302988767624, -0.09614893049001694, -0.07328358292579651, -0.007071126718074083, 0.06636367738246918, -0.03714355453848839, -0.08190518617630005, -0.007637453265488148, -0.06971537321805954, -0.07047689706087112, -0.217074915766716, 0.01887897215783596, -0.052590128034353256, 0.08191263675689697, -0.1450723111629486, -0.05320806801319122, 0.10642524063587189, 0.0403766892850399, -0.20944499969482422, 0.12947240471839905, -0.06805946677923203, -0.0707097128033638, 0.1773781031370163, -0.04926958680152893, -0.06126604229211807, -0.20045588910579681, 0.004952698480337858, 0.07038278132677078, 0.07031223922967911, 0.013527166098356247, -0.091942198574543, 0.035750653594732285, -0.10947110503911972, -0.050835561007261276, -0.08314389735460281, -0.009413810446858406, 0.012165060266852379, 0.07014615833759308, 0.014191859401762486, -0.041211653500795364, -0.05657535046339035, -0.0063925813883543015, 0.03676602244377136, -0.01811797544360161, 0.05360643193125725, 0.07908988744020462, -0.022316085174679756, -0.07653854787349701, 0.09528462588787079, -0.011499208398163319, -0.01297315675765276, 0.03777236118912697, -0.009776301681995392, -0.0372827984392643, -0.08983173221349716, -0.05589348077774048, 0.03019316866993904, 0.03256439045071602, 0.06149763986468315, -0.08345776796340942, -0.0335339680314064, 0.05499935522675514, -0.04378814622759819, -0.05450001358985901, -0.01861622743308544, -0.09213848412036896, -0.010785804130136967, -0.12305112928152084, 0.07819239050149918, 0.06883889436721802, 0.030136240646243095, 0.05373111367225647, 0.14690899848937988, 0.047082044184207916, -0.07119636237621307, 0.09073758125305176, -0.09470430016517639, -0.0036884488072246313, -0.045130111277103424, -0.09880105406045914, -0.05421246215701103, 0.08811532706022263, 0.026023084297776222, -0.03196871280670166, 0.0693938359618187, 0.020973285660147667, 0.07180431485176086, -0.06997764855623245, -0.053974028676748276, -0.0020979854743927717, -0.006206966005265713, -0.058425430208444595, -0.005580539349466562, -0.0013105272082611918, -0.07679682970046997, -0.004639280494302511, 0.0011838366044685245, -0.13104453682899475, -0.0017831746954470873, -0.04582720249891281, 0.035042788833379745, 0.02242959290742874, 0.001367133460007608, 0.0010624442948028445, 0.003257345175370574, 0.016677051782608032, 0.0004253548104315996, -0.01888657733798027, -0.012491969391703606, 0.05788701772689819, 0.06868411600589752, 0.1468365490436554, -0.026564616709947586, -0.034897010773420334, -0.1033109724521637, 0.07252129167318344, -0.08874425292015076, -0.04516224190592766, 0.022606832906603813, 0.06547291576862335, -0.0450909398496151, 0.016214437782764435, 0.07883719354867935, 0.0314759761095047, 0.008560462854802608, -0.05640145018696785, -0.03059741109609604, 0.00979694165289402], +structTy:[0.08871456235647202, -0.09092806279659271, 0.011678936891257763, -0.0439753532409668, 0.09849714487791061, 0.014540990814566612, -0.08737752586603165, 0.07914676517248154, 0.09021882712841034, -0.039662349969148636, 0.0925218015909195, 0.06426450610160828, -0.07134062796831131, -0.11602729558944702, 0.03350043669342995, -0.078865647315979, -0.08825575560331345, -0.0811404138803482, 0.005889476742595434, 0.009160401299595833, 0.09432394802570343, 0.0015984727069735527, -0.015108051709830761, -0.08560893684625626, -0.10294989496469498, -0.0919964611530304, 0.02739623188972473, -0.011586646549403667, 0.07161274552345276, 0.03099951334297657, -0.0317743718624115, 0.01142272911965847, 0.049386702477931976, 0.04849044978618622, -0.01658082939684391, 0.1012524962425232, 0.1092509925365448, -0.09827781468629837, -0.07877960801124573, 0.11386401206254959, -0.09666066616773605, -0.08509214222431183, -0.05343468114733696, 0.10592470318078995, 0.017947064712643623, -0.025057770311832428, -0.1062585636973381, -0.08199845254421234, 0.01974550075829029, -0.07749801874160767, 0.08710842579603195, -0.08143873512744904, -0.08160632103681564, 0.07942076027393341, -0.09086307138204575, -0.08875435590744019, -0.01240991335362196, -0.010426667518913746, 0.0806867778301239, -0.06755248457193375, -0.11700788885354996, -0.033702753484249115, 0.07195749133825302, -0.08468449115753174, -0.056005705147981644, 0.001938097644597292, 0.10792296379804611, -0.012553239241242409, -0.02622298337519169, -0.04128603637218475, 0.08278164267539978, -0.06200273707509041, 0.04647601768374443, -0.07833310961723328, 0.08042842149734497, 0.01565934345126152, 0.01438735332340002, 0.0022732054349035025, -0.09952029585838318, -0.018249142915010452, 0.08199805021286011, -0.10626546293497086, -0.11390873789787292, -0.003318007569760084, 0.1002761498093605, -0.00810654554516077, -0.10606244206428528, 0.024647705256938934, 0.08647725731134415, -0.0036376737989485264, -0.11739426106214523, 0.04117323085665703, 0.10750169306993484, 0.11056472361087799, 0.06830677390098572, -0.0787176862359047, 0.03926515579223633, -0.0012717517092823982, -0.026094086468219757, 0.046257492154836655, 0.09988528490066528, -0.010564545169472694, -0.026222679764032364, -0.09461323171854019, 0.11038729548454285, -0.03280121088027954, -0.10712961852550507, -0.10188450664281845, -0.011470329016447067, -0.01441242266446352, 0.10027925670146942, -0.03989288583397865, -0.11995731294155121, 0.059014175087213516, -0.0018728642025962472, 0.033876046538352966, -0.002483363263309002, -0.10346662253141403, 0.11108852177858353, 0.10034256428480148, -0.11484550684690475, -0.038370147347450256, 0.07719796895980835, -0.0635840967297554, 0.020459773018956184, 0.039903994649648666, 0.07486045360565186, -0.06415586173534393, 0.09523982554674149, 0.034411169588565826, -0.10181108117103577, 0.004304507747292519, 0.05726775899529457, 0.09297185391187668, -0.1014166921377182, -0.10142294317483902, -0.07747359573841095, -0.05881509557366371, 0.01314716599881649, 0.10793527960777283, 0.04927075281739235, 0.06877847760915756, 0.003611169056966901, 0.08870706707239151, 0.11587616056203842, -0.003563266946002841, -0.03204305097460747, 0.035373229533433914, -0.06982933729887009, -0.006086431443691254, 0.09949356317520142, 0.0134676992893219, 0.026426993310451508, 0.10585056990385056, -0.013058969751000404, 0.0010101031512022018, 0.07542915642261505, 0.019854562357068062, -0.10746539384126663, -0.10351260006427765, 0.018438050523400307, -0.08155683428049088, -0.10260248929262161, -0.10063061118125916, -0.11384949088096619, -0.0027346943970769644, -0.0057004415430128574, 0.1034570038318634, 0.06503655761480331, -0.03989262133836746, -0.07876408100128174, 0.05716921389102936, 0.012258945032954216, 0.10094905644655228, 0.09800108522176743, 0.10823611170053482, -0.04945281520485878, 0.030760755762457848, -0.03392529487609863, 0.10387767851352692, 0.0056220428086817265, -0.07757405191659927, 0.022512050345540047, -0.09840577095746994, 0.01199381984770298, 0.07554731518030167, 0.015020910650491714, 0.09237434715032578, -0.08938624709844589, -0.09976854175329208, -0.012217581272125244, -0.10321725904941559, -0.06858286261558533, 0.07333686202764511, -0.03106941096484661, -0.011406172066926956, 0.09328028559684753, -0.009798537008464336, 0.08429791778326035, -0.10371913760900497, -0.12253593653440475, -0.047744929790496826, 0.011002357117831707, 0.0967835783958435, 0.082920141518116, 0.11109520494937897, 0.09359240531921387, 0.08107754588127136, 0.07086443901062012, -0.07266340404748917, -0.05043826252222061, 0.07278463989496231, 0.03819544240832329, -0.052608851343393326, -0.03198748454451561, 0.05032145604491234, 0.10087156295776367, -0.0875077098608017, -0.02451012097299099, -0.044937845319509506, -0.11243495345115662, -0.02004934288561344, 0.03006640262901783, -0.02391037344932556, 0.09201155602931976, -0.0279158353805542, 0.04916476085782051, 0.1023501306772232, -0.00543089909479022, -0.0021735953632742167, -0.004840494599193335, -0.024572093039751053, 0.1190614104270935, -0.08622447401285172, 0.005622110795229673, -0.02022550441324711, -0.03961397334933281, -0.025599416345357895, 0.028727011755108833, -0.03851601481437683, -0.08164294064044952, 0.09822504222393036, 0.10434716939926147, 0.026353007182478905, -0.005441205110400915, -0.11401017010211945, -0.08132032305002213, 0.009734218940138817, -0.0187719464302063, 0.0056367358192801476, 0.03504849225282669, 0.005427503027021885, -0.1027061864733696, -0.09853297472000122, -0.04464627429842949, 0.10227753221988678, 0.10164114087820053, 0.027619389817118645, 0.11145031452178955, -0.03706152364611626, -0.060653358697891235, 0.11995619535446167, 0.03700624778866768, 0.08562051504850388, 0.028521817177534103, 0.07422500103712082, 0.0938052386045456, -0.09475787729024887, 0.10530172288417816, -0.003521876409649849, 0.10820505023002625, -0.09313216805458069, 0.10967890173196793, -0.10025463253259659, 0.10627038031816483, -0.10230003297328949, 0.08977208286523819, -0.022244445979595184, -0.08455709367990494, -0.10606575012207031, 0.098107248544693, -0.0743570402264595, -0.009151061065495014, 0.042644862085580826, -0.0006607197574339807, -0.07970624417066574, 0.11288686096668243, -0.06678038090467453, -0.026771899312734604, -0.09003034234046936, 0.09118248522281647, -0.007262533064931631, 0.051234446465969086, 0.0957646444439888, 0.03051176853477955, 0.01676117815077305, 0.025357408449053764, -0.06327388435602188, 0.11536108702421188, -0.09257864207029343], +sub:[0.025775562971830368, -0.0034977879840880632, -0.04292178899049759, -0.10581529885530472, -0.04586799442768097, 0.042754750698804855, 0.08801042288541794, -0.08779679238796234, -0.0033705157693475485, -0.018184838816523552, 0.033433400094509125, -0.09652413427829742, -0.013084491714835167, 0.12692829966545105, 0.009072975255548954, 0.10304823517799377, 0.1394110471010208, 0.04785406216979027, -0.08442384004592896, -0.030132921412587166, -0.003549865446984768, 0.12757070362567902, 0.13190515339374542, 0.10620401799678802, -0.0008686197106726468, 0.038694657385349274, -0.024613339453935623, -0.09886562079191208, 0.04631169140338898, -0.034606583416461945, 0.0475003644824028, -0.07822725921869278, 0.10428912937641144, -0.00024286581901833415, 0.029724493622779846, -0.017833711579442024, -0.05318845063447952, 0.010625608265399933, 0.09347168356180191, -0.1156078651547432, 0.07562607526779175, 0.07053471356630325, 0.16524973511695862, -0.08601389825344086, 0.02156963013112545, 0.053495507687330246, 0.06364721059799194, 0.09763654321432114, 0.10044997930526733, -0.04155147075653076, -0.02023889683187008, 0.06496572494506836, 0.05626599118113518, 0.08037987351417542, 0.09150554239749908, 0.0348958745598793, -0.003070624778047204, -0.20941101014614105, 0.019189540296792984, 0.0004189473402220756, 0.04463500156998634, 0.10430341958999634, -0.0725526213645935, 0.11240151524543762, 0.08820600807666779, 0.00046210148138925433, -0.04307851940393448, 0.012028192169964314, 0.11655741184949875, 0.04275005683302879, 0.019492479041218758, 0.055315691977739334, 0.05020897462964058, 0.04419824108481407, -0.11715847998857498, -0.1281972974538803, 0.0026501230895519257, 0.007836345583200455, 0.0097904521971941, -0.16055884957313538, -0.08735206723213196, 0.01356524508446455, -0.006882509682327509, 0.039284221827983856, 0.0646074041724205, -0.11918539553880692, 0.01714356057345867, 0.03993677347898483, -0.026103559881448746, -0.10957124084234238, 0.08970064669847488, -0.051256969571113586, -0.07773193717002869, -0.009960872121155262, 0.08835824579000473, 0.015844078734517097, -0.05630561709403992, 0.030561331659555435, 0.09719268232584, -0.06097464635968208, -0.11331531405448914, 0.04390528053045273, 0.005883360281586647, 0.04529936611652374, -0.07282498478889465, -0.00017155669047497213, 0.1208106130361557, 0.0853513702750206, 0.024599457159638405, -0.03396010026335716, 0.054168038070201874, 0.05062343180179596, -0.05393296107649803, -0.13277822732925415, 0.21993064880371094, -0.08150020241737366, -0.11191320419311523, -0.04655897244811058, -0.05600959435105324, -0.11459765583276749, 0.045103032141923904, 0.014440215192735195, -0.08829887211322784, -0.07641536742448807, -0.21498990058898926, 0.07297524809837341, 0.038009293377399445, 0.016682472079992294, -0.06483088433742523, 0.05023007094860077, 0.0038657698314636946, 0.1112321987748146, -0.06677309423685074, -0.11470663547515869, 0.0750076025724411, -0.004338701255619526, 0.013803473673760891, 0.038783930242061615, -0.05223223194479942, -0.101191446185112, 0.07155118882656097, -0.09631875157356262, -0.0625871792435646, 0.03294480964541435, -0.0810091644525528, 0.09252102673053741, 0.003480787854641676, 0.027212753891944885, 0.009106970392167568, 0.09767647832632065, -0.09631698578596115, 0.10658138990402222, 0.08112260699272156, -0.0972398966550827, 0.0015291027957573533, -0.037018269300460815, -0.01719856448471546, -0.06994090229272842, 0.07735475897789001, 0.009255711920559406, -0.10843931138515472, -0.04671582207083702, 0.016825683414936066, 0.1325475573539734, 0.09908445179462433, -0.028971586376428604, 0.05903197452425957, -0.045397717505693436, -0.08950093388557434, -0.08240117877721786, 0.026346473023295403, -0.03222784027457237, -0.025303658097982407, -0.11058995127677917, -0.0670851394534111, 0.008474842645227909, 0.06997711211442947, -0.013022110797464848, 0.2188205122947693, -0.05441902577877045, 0.07214426249265671, 0.056479934602975845, 0.025567293167114258, -0.01399792730808258, -0.06957247853279114, 0.09529830515384674, -0.030370041728019714, 0.03145366162061691, 0.10782589763402939, 0.036755774170160294, 0.033478010445833206, 0.1354871541261673, -0.03841742128133774, -0.029752813279628754, 0.08599853515625, 0.007946496829390526, -0.06603030115365982, -0.059692174196243286, -0.018817858770489693, 0.08008958399295807, 0.07236252725124359, -0.10046553611755371, 0.08822404593229294, 0.022767867892980576, -0.10924767702817917, -0.06122005730867386, -0.1010071262717247, -0.006646221969276667, 0.02739321067929268, -0.02367844432592392, 0.08498497307300568, -0.0034809077624231577, 0.013112309388816357, 0.10240738093852997, 0.041149236261844635, -0.054659102112054825, 0.053801897913217545, 0.07934454828500748, 0.24377325177192688, -0.00442493474110961, 0.09610386937856674, -0.002622308675199747, -0.023896299302577972, 0.03795097395777702, -0.05732102692127228, 0.08948846906423569, -0.08691078424453735, 0.05461212247610092, 0.021491732448339462, 0.026357201859354973, 0.05457036569714546, 0.04823210462927818, -0.03321445360779762, 0.09311600029468536, -0.16184423863887787, 0.14156430959701538, -0.02039921097457409, -0.004422390833497047, 0.047528281807899475, 0.001128092291764915, 0.08888139575719833, 0.07001670449972153, 0.029114827513694763, -0.030558669939637184, -0.0866444855928421, 0.04750872030854225, 0.04520118981599808, -0.2125304788351059, -0.09869806468486786, 0.06312256306409836, -0.04534018039703369, 0.15898026525974274, -0.052832022309303284, 0.09938448667526245, 0.024416672065854073, -0.04218171164393425, -0.11349567025899887, 0.07514261454343796, -0.021986881271004677, -0.1611567586660385, 0.10568506270647049, -0.0007227555615827441, 0.04110521823167801, -0.058524973690509796, -0.04594213888049126, 0.0012153235729783773, -0.07693880796432495, -0.001597809954546392, 0.03707272931933403, -0.029042350128293037, -0.016832690685987473, -0.05424211546778679, 0.027027996256947517, 0.023359423503279686, 0.03934888169169426, -0.0489780567586422, 0.010094169527292252, 0.008005797863006592, 0.0064957537688314915, -0.019718505442142487, -0.07625149935483932, 0.11221828311681747, 0.02370484173297882, -0.043235134333372116, 0.062876395881176, -0.044816792011260986, -0.10437943786382675, 0.0816739946603775, -0.05773390084505081, -0.050344616174697876, 0.0242441538721323, -0.02699464187026024, -0.07551215589046478, 0.015589850954711437, -0.03336828947067261, 0.04427838698029518, -0.01365566160529852, 0.028166964650154114, -0.11055773496627808, 0.026586059480905533], +switch:[0.02565579302608967, -0.0017751073464751244, 0.07610461860895157, -0.1055530458688736, -0.003773091360926628, -0.05827847495675087, 0.06365405768156052, 0.05656224489212036, -0.03678030148148537, 0.07594608515501022, -0.09671730548143387, 0.0425584614276886, 0.0350993312895298, 0.1267424076795578, 0.12883375585079193, 0.053848303854465485, 0.09877710044384003, 0.004742051009088755, -0.02719675935804844, 0.05981464311480522, -0.0036524769384413958, -0.024114886298775673, -0.12107470631599426, -0.10395941883325577, 0.07200615853071213, 0.037321604788303375, -0.022933997213840485, -0.13049863278865814, -0.17353643476963043, 0.06369418650865555, -0.1220540702342987, 0.0015577151207253337, -0.03640403226017952, -0.03151322156190872, -0.08726974576711655, -0.04175006225705147, -0.03492684289813042, 0.0058022597804665565, 0.05496849864721298, -0.0946267694234848, 0.10993275046348572, 0.009500918909907341, 0.019029095768928528, -0.11074592918157578, -0.08445574343204498, -0.06235697865486145, 0.06336474418640137, 0.09622102975845337, -0.018170658499002457, -0.04119686782360077, -0.09777242690324783, -0.04834641516208649, -0.10291174054145813, 0.06792398542165756, 0.09288208186626434, 0.033095892518758774, -0.047504864633083344, 0.11184486001729965, -0.06828746944665909, 0.012697923928499222, 0.045521706342697144, 0.01636725477874279, 0.03808402642607689, -0.11751174926757812, -0.1565951406955719, 0.01722673885524273, -0.0410785898566246, 0.03636934980750084, -0.02568932995200157, 0.00812194962054491, -0.009049121290445328, -0.08385767042636871, 0.09483544528484344, -0.12762658298015594, -0.02627108432352543, 0.08202549815177917, -0.10204805433750153, 0.11652332544326782, 0.0051796031184494495, -0.04171688109636307, -0.03617570176720619, 0.14882490038871765, 0.03176138177514076, -0.09864502400159836, -0.01901220716536045, -0.07446674257516861, -0.07361873984336853, -0.08984559774398804, 0.03626713529229164, 0.02407766692340374, 0.029155543074011803, 0.013137347996234894, -0.07163789868354797, -0.011232558637857437, -0.08885730057954788, 0.04267953336238861, 0.12926137447357178, -0.07079287618398666, 0.094853974878788, -0.15905818343162537, -0.08902236074209213, 0.04913292080163956, 0.021297896280884743, 0.04616621136665344, 0.03481372445821762, -0.005603616591542959, 0.14276330173015594, -0.02935434877872467, -0.01113223284482956, -0.02930840663611889, 0.08802192658185959, 0.05646294355392456, -0.0567450225353241, 0.07914754003286362, 0.06330491602420807, 0.12748496234416962, 0.0725231021642685, -0.04437980428338051, -0.05456623435020447, -0.08787357807159424, 0.0472598560154438, -0.008298593573272228, -0.08769094944000244, -0.034494634717702866, -0.04828466847538948, 0.052253399044275284, -0.0623137429356575, 0.0364651083946228, 0.07646383345127106, -0.11474325507879257, -0.0019355026306584477, -0.02856086753308773, 0.10720435529947281, -0.09410955756902695, 0.08502979576587677, 0.007155579049140215, 0.014874307438731194, -0.08614375442266464, 0.13199201226234436, -0.10972829908132553, -0.15354347229003906, -0.0681716725230217, 0.086206816136837, 0.005194531287997961, -0.08059082925319672, 0.08617161214351654, 0.002868922194465995, 0.07396440207958221, 0.008631465956568718, -0.1175476685166359, -0.03793167322874069, 0.07360418885946274, -0.03880910202860832, -0.055457521229982376, -0.06292417645454407, -0.05523017793893814, -0.149370014667511, -0.09583847224712372, 0.027650566771626472, 0.011976190842688084, 0.1609027087688446, 0.002565048635005951, 0.01691671460866928, -0.012323546223342419, 0.09917537868022919, 0.059910859912633896, -0.0028939556796103716, -0.04708157479763031, -0.13167375326156616, 0.08779343217611313, 0.02528773620724678, -0.036241866648197174, 0.06735339015722275, -0.1113375797867775, -0.024453969672322273, -0.0024897202383726835, 0.0670180544257164, 0.034947656095027924, -0.13052093982696533, 0.028984451666474342, 0.014481063932180405, 0.05830441787838936, 0.07212261855602264, 0.023647639900445938, -0.0088724410161376, 0.002490709535777569, -0.06277799606323242, -0.159670889377594, 0.10095098614692688, 0.035248540341854095, -0.17970719933509827, 0.0947263166308403, -0.06829027086496353, -0.09245187044143677, -0.07106494903564453, 0.043972402811050415, -0.06642269343137741, 0.049228474497795105, -0.1197066456079483, 0.07369302213191986, 0.15033188462257385, 0.010388476774096489, 0.04990364983677864, -0.06983767449855804, 0.13227969408035278, -0.040554534643888474, -0.022568730637431145, -0.12764132022857666, 0.05146188661456108, -0.04507692530751228, -0.07128600031137466, -0.09884092956781387, 0.15100203454494476, 0.09613961726427078, 0.0013381134485825896, 0.03618991747498512, 0.05248124897480011, -0.11276017874479294, -0.040676843374967575, -0.04940212517976761, 0.08152708411216736, 0.03205743804574013, 0.14439363777637482, 0.04103976488113403, 0.03090999275445938, 0.01660466007888317, 0.11021330207586288, -0.03363501653075218, -0.010751076973974705, 0.03217848762869835, 0.08065207302570343, 0.04973417893052101, -0.03264058008790016, 0.041611552238464355, -0.03771292418241501, 0.024871699512004852, 0.1339808851480484, -0.07844683527946472, -0.016058126464486122, 0.027871258556842804, 0.08719997853040695, 0.06808622926473618, -0.0636189877986908, 0.0008967105532065034, 0.11717350780963898, 0.04606322571635246, 0.046825114637613297, -0.1063040941953659, -0.0032191670034080744, -0.01705474779009819, -0.044541772454977036, 0.14101049304008484, -0.05376927927136421, 0.0713411420583725, -0.159463569521904, -0.06096212565898895, -0.06880812346935272, -0.07300648093223572, -0.1002628281712532, 0.10299550741910934, 0.09302490204572678, 0.013287317007780075, -0.16719023883342743, -0.059199586510658264, -0.04329417645931244, 0.1004224494099617, -0.03426169604063034, 0.09015288203954697, 0.03812965750694275, 0.07260268181562424, -0.012938079424202442, -0.046360619366168976, -0.1202159896492958, 0.10488425940275192, -0.041417185217142105, -0.055727679282426834, -0.004527421202510595, -0.06407471001148224, -0.05786162614822388, -0.019664783030748367, -0.014251068234443665, -0.019371163100004196, -0.05794835835695267, -0.016242805868387222, -0.09750409424304962, 0.028611253947019577, 0.041565556079149246, -0.052845969796180725, 0.05641884729266167, -0.03359655290842056, 0.023732703179121017, 0.04142073169350624, -0.037899602204561234, 0.016307074576616287, -0.0009201799402944744, -0.02685408666729927, -0.12449171394109726, 0.09988725930452347, 0.10367049276828766, 0.002998282667249441], +trunc:[0.02346661128103733, -0.0038590277545154095, 0.07315444946289062, -0.10104086995124817, -0.02628779411315918, -0.10425318032503128, 0.06396880000829697, -0.06158259138464928, -0.03936469927430153, -0.007715012412518263, 0.022204900160431862, -0.10461807996034622, -0.016002872958779335, 0.11997771263122559, 0.028159249573946, 0.011340681463479996, 0.1286959946155548, 0.037861377000808716, -0.03761789947748184, -0.11050855368375778, 0.07893011718988419, 0.04746833071112633, 0.13505418598651886, 0.0996703952550888, -0.009018166922032833, 0.034839559346437454, -0.04944239556789398, 0.08815736323595047, 0.08064369112253189, -0.06817584484815598, 0.057492464780807495, 0.014058259315788746, -0.02808774635195732, -0.06580568104982376, -0.08181259781122208, -0.011287293396890163, -0.00657779211178422, 0.06015115603804588, 0.08909747749567032, -0.06888211518526077, 0.05696757137775421, 0.010795947164297104, 0.04850410670042038, -0.098820261657238, -0.022443456575274467, -0.1439809501171112, 0.06103235483169556, 0.09217607975006104, 0.07922300696372986, -0.03788423165678978, 0.025639140978455544, 0.013784445822238922, 0.059649206697940826, 0.09860440343618393, 0.09530505537986755, 0.04005354642868042, 0.051593732088804245, -0.20274260640144348, 0.02179286815226078, 0.03200759366154671, 0.042072594165802, 0.04467858001589775, -0.02087610401213169, 0.10428837686777115, 0.08903060108423233, 0.1029135063290596, -0.07705058157444, 0.03800574690103531, 0.03398403152823448, -0.0037490264512598515, 0.07388713955879211, 0.05316171422600746, 0.053811971098184586, 0.057764507830142975, 0.03621253743767738, -0.11923032999038696, 0.008610673248767853, -0.16972599923610687, 0.008494545705616474, 0.05832448601722717, -0.08468285948038101, 0.01339399628341198, -0.004303904715925455, -0.0958014652132988, 0.07388480752706528, 0.12688912451267242, -0.01037170272320509, -0.021767375990748405, -0.028792090713977814, 0.11048536002635956, 0.07579264044761658, -0.02874325029551983, -0.08486951142549515, -0.010450197383761406, -0.08469177037477493, 0.0434524230659008, -0.05499902367591858, 0.07822274416685104, -0.1671045869588852, 0.10621574521064758, -0.08833184838294983, -0.14582736790180206, 0.10156302899122238, 0.04864950478076935, -0.06973089277744293, -0.05289537459611893, 0.11846278607845306, 0.034476086497306824, 0.04667956382036209, -0.07102638483047485, 0.014204212464392185, 0.04608871787786484, -0.05272601544857025, 0.07442272454500198, -0.09618774801492691, -0.11467418074607849, 0.14620764553546906, -0.04534674435853958, -0.052269794046878815, -0.11057797074317932, 0.04346861317753792, -0.017841996625065804, -0.08037090301513672, -0.07239482551813126, -0.07885132730007172, -0.11684148758649826, 0.006658153608441353, 0.02157471887767315, -0.10208389908075333, -0.01200281921774149, -0.004026185255497694, 0.10655135661363602, -0.1260337084531784, -0.10105402767658234, 0.07749763131141663, 0.005097709130495787, 0.010600592009723186, 0.03820115700364113, -0.06114473566412926, -0.10382039844989777, 0.10178599506616592, 0.10742884874343872, -0.1987217515707016, -0.012186801992356777, -0.07675493508577347, -0.11795603483915329, 0.11438176035881042, -0.015698490664362907, 0.0052732923068106174, -0.04309020936489105, 0.043613187968730927, -0.06471824645996094, 0.08303117007017136, -0.03378842771053314, -0.09789334982633591, -0.040042635053396225, 0.017803002148866653, -0.033624786883592606, 0.07300878316164017, 0.016315702348947525, -0.08736889064311981, -0.10899033397436142, 0.016145948320627213, 0.05213180556893349, 0.09359856694936752, 0.00547132408246398, -0.030127691105008125, 0.008386671543121338, 0.02391841635107994, 0.0340975858271122, 0.024155037477612495, -0.033646728843450546, -0.044834304600954056, -0.10626474767923355, -0.04973280057311058, -0.00488501088693738, 0.07646428048610687, 0.0035828654654324055, 0.1109839528799057, 0.02748769521713257, -0.003093053586781025, 0.01578521728515625, -0.04778474569320679, 0.005794517230242491, 0.11173772811889648, 0.05344453826546669, -0.0593327172100544, 0.010625400580465794, 0.1025129184126854, 0.048366691917181015, -0.06510104238986969, 0.08347074687480927, -0.06881523877382278, 0.04438270255923271, -0.05010482668876648, 0.00505819683894515, -0.06528440862894058, 0.10403276234865189, -0.02711423859000206, 0.049447935074567795, 0.06649051606655121, 0.07271095365285873, 0.09248969703912735, -0.002171013969928026, -0.10321945697069168, -0.04559534415602684, -0.09504875540733337, 0.007901099510490894, 0.055311743170022964, 0.06694565713405609, -0.016066957265138626, -0.07114076614379883, -0.03867205232381821, 0.09525027871131897, -0.04282791540026665, 0.06523194164037704, 0.08254623413085938, 0.075606569647789, 0.12127932161092758, 0.08876418322324753, 0.08501619845628738, 0.026799188926815987, 0.09760221093893051, 0.039473507553339005, -0.07583406567573547, 0.13800987601280212, -0.07329857349395752, -0.022678839042782784, 0.08255410939455032, -0.04869001731276512, 0.05827774479985237, 0.04744308441877365, 0.0012858702102676034, 0.04103546217083931, -0.038762401789426804, 0.05081507936120033, -0.047231223434209824, 0.10274907201528549, 0.10646006464958191, 0.03391888737678528, 0.08504398167133331, 0.06485848873853683, -0.011326991021633148, -0.0859655812382698, -0.08110741525888443, 0.046746522188186646, 0.0355462022125721, 0.03417827934026718, -0.09001819789409637, 0.10466922074556351, -0.043242890387773514, -0.0057114772498607635, -0.056007906794548035, 0.07559607177972794, 0.026278043165802956, -0.07251231372356415, -0.08215541392564774, 0.01839754357933998, 0.06870334595441818, -0.19841377437114716, -0.055376626551151276, -0.0018620638875290751, 0.11796393990516663, -0.057153619825839996, 0.05258634686470032, -0.0005789792630821466, -0.07848141342401505, 0.011934309266507626, 0.03741054981946945, -0.02529459446668625, -0.015740688890218735, -0.05097140371799469, 0.01807604543864727, 0.02321374975144863, -0.00019550384604372084, 0.025749197229743004, -0.021962901577353477, 0.031620342284440994, -0.00641791382804513, -0.006885920185595751, -0.04697045683860779, 0.06632792204618454, 0.06900651752948761, 0.11981151252985, 0.09613857418298721, -0.04384711757302284, -0.09955114871263504, -0.010163052007555962, -0.0376817025244236, -0.0451795719563961, 0.025394966825842857, -0.04997846856713295, -0.13686440885066986, 0.014357192441821098, -0.027770081534981728, 0.0582551546394825, 0.08056700229644775, 0.08754415810108185, -0.10897034406661987, 0.0077268462628126144], +udiv:[0.026305032894015312, -0.005064315162599087, -0.06513836979866028, -0.11267507821321487, -0.06580820679664612, -0.0030085474718362093, -0.0451524555683136, -0.1188332587480545, 0.016790982335805893, 0.08805092424154282, -0.049221016466617584, -0.11021629720926285, -0.017385007813572884, 0.06606073677539825, 0.034332841634750366, 0.021059490740299225, 0.15127968788146973, 0.04061945900321007, -0.06382370740175247, 0.06302718818187714, 0.12300284951925278, 0.07527507841587067, -0.02805185690522194, 0.11091063916683197, 0.0073217893950641155, 0.0376400500535965, -0.10006172209978104, 0.09117352217435837, 0.09437187761068344, -0.12491194158792496, -0.07265587151050568, 0.0029306618962436914, -0.03550107404589653, -0.12949228286743164, -0.09856460988521576, 0.06582751125097275, -0.02599230781197548, 0.0665205791592598, 0.099077008664608, -0.07706312090158463, 0.11232265830039978, -0.10041390359401703, 0.0807814970612526, 0.025719674304127693, 0.09807292371988297, -0.02461223304271698, 0.08414164930582047, -0.11838333308696747, -0.0009163023205474019, -0.042406171560287476, 0.0471799373626709, -0.1332213431596756, 0.07304702699184418, 0.03617348149418831, 0.02812398411333561, 0.11416400969028473, -0.04542248696088791, 0.003218150231987238, 0.025732049718499184, -0.1134815514087677, 0.046129897236824036, 0.17443031072616577, -0.012226028367877007, 0.00801652017980814, 0.08455456048250198, 0.10976353287696838, -0.08528158813714981, 0.03569846227765083, 0.14293347299098969, -0.08573892712593079, -0.02786317653954029, 0.058691125363111496, 0.02811364457011223, 0.007936084643006325, -0.02691357396543026, 0.031540535390377045, -0.050369881093502045, -0.00432540662586689, 0.010926969349384308, -0.004565982148051262, -0.0979996919631958, 0.008109860122203827, -0.011266802437603474, 0.00675611849874258, -0.047203537076711655, -0.002295458922162652, -0.07652157545089722, -0.0634102076292038, -0.02966606244444847, -0.06912223994731903, 0.09611202031373978, 0.03624720871448517, -0.08236464858055115, -0.011129850521683693, -0.09387864917516708, -0.0017891512252390385, 0.05563422664999962, 0.02067452296614647, 0.044405508786439896, 0.11985346674919128, -0.1303005814552307, -0.10071469098329544, 0.045577239245176315, 0.031844764947891235, -0.034921906888484955, -0.013670739717781544, 0.12496256083250046, 0.04098312929272652, -0.011832471005618572, -0.00579288974404335, 0.1257188767194748, 0.0533326119184494, 0.13254112005233765, -0.05299360305070877, -0.031774695962667465, -0.08373012393712997, -0.004350997507572174, -0.05217713490128517, -0.10257789492607117, -0.10845788568258286, -0.08174104243516922, -0.03524687513709068, -0.12640662491321564, -0.014078440144658089, 0.004434661939740181, -0.10265316814184189, 0.11691292375326157, -0.09703077375888824, -0.144966259598732, 0.03338059410452843, 0.019191458821296692, 0.08904764801263809, -0.14244788885116577, -0.11357130110263824, 0.07051026821136475, -0.1162625327706337, -0.02185099944472313, -0.0942566767334938, -0.09056814014911652, -0.1141885370016098, 0.012609581463038921, -0.10263676941394806, 0.01872439496219158, -0.057460203766822815, -0.052679259330034256, 0.017267463728785515, 0.028256675228476524, -0.01419907622039318, -0.13806699216365814, -0.03028571978211403, -0.12236505001783371, 0.14187899231910706, 0.04555187746882439, 0.09602194279432297, -0.020444927737116814, 0.029764696955680847, 0.04178938269615173, 0.06392757594585419, 0.12672632932662964, 0.0217306986451149, -0.07766041904687881, -0.04088589921593666, 0.12147630006074905, -0.018463928252458572, -0.12823650240898132, -0.07046261429786682, 0.0831470638513565, 0.056202106177806854, 0.00668535428121686, -0.06953359395265579, 0.025063782930374146, -0.11480753868818283, -0.03459838032722473, 0.12013348191976547, -0.026110297068953514, 0.09006806463003159, 0.0919729545712471, 0.05283106118440628, -0.011537359096109867, 0.017175661399960518, 0.014330476522445679, 0.09933404624462128, -0.018485983833670616, -0.05628756806254387, 0.044449105858802795, 0.06232699751853943, 0.02676163800060749, 0.0914120227098465, 0.11486630141735077, 0.05811990797519684, 0.007916838862001896, -0.0069568222388625145, 0.09513771533966064, 0.1076609268784523, 0.05656248703598976, 0.03803924098610878, -0.07168477028608322, -0.0345931239426136, -0.03456578776240349, 0.06573593616485596, 0.07445358484983444, 0.007341617252677679, -0.06075980141758919, -0.03163228556513786, -0.08515749126672745, -0.051256630569696426, 0.0013797014253214002, 0.04411711171269417, -0.1282237321138382, 0.07523483037948608, 0.09591684490442276, -0.10197535157203674, 0.06180689483880997, 0.07625287771224976, -0.09563867747783661, 0.0666905865073204, -0.10241838544607162, -0.11758068948984146, 0.09379825741052628, -0.04161125794053078, 0.042634475976228714, -0.02384765073657036, 0.059044379740953445, 0.12002331763505936, -0.12239391356706619, 0.09460767358541489, -0.01348264142870903, 0.12506364285945892, 0.05164425075054169, 0.03435039892792702, 0.04404645413160324, 0.052889712154865265, 0.1152862161397934, 0.1127815693616867, -0.08448848128318787, -0.0041222115978598595, -0.13603202998638153, -0.1616729348897934, 0.13713853061199188, 0.09879832714796066, 0.09470474720001221, -0.12578976154327393, -0.12414159625768661, -0.122311070561409, -0.019354242831468582, 0.08317934721708298, -0.12297511100769043, 0.11082936078310013, -0.18973329663276672, -0.06540034711360931, -0.04893925413489342, -0.007859009318053722, -0.14848388731479645, 0.0563497394323349, 0.026040315628051758, -0.09590382874011993, -0.12502357363700867, 0.07624465227127075, -0.07452598214149475, -0.055418357253074646, 0.14334021508693695, -0.0016300462884828448, 0.03731190040707588, -0.06354430317878723, -0.12287266552448273, 0.026337703689932823, -0.08092883229255676, 0.00046261632815003395, 0.042046234011650085, -0.13837869465351105, -0.018527254462242126, -0.05539099872112274, 0.015571030788123608, 0.024235257878899574, 0.001862703007645905, -0.0891883596777916, -0.13887982070446014, 0.15907980501651764, 0.047452982515096664, -0.03812875598669052, -0.07363437116146088, 0.14174924790859222, 0.09390071779489517, -0.03168494999408722, 0.10218209028244019, 0.052585799247026443, -0.1269746720790863, 0.02560213953256607, -0.09619025886058807, -0.04842509329319, 0.04349639266729355, 0.04013432562351227, -0.009851871058344841, 0.015427501872181892, -0.09836508333683014, 0.013394403271377087, -0.13299664855003357, -0.057068441063165665, -0.11706354469060898, 0.040444016456604004], +uitofp:[0.047601327300071716, 0.033504847437143326, 0.010617672465741634, 0.06597985327243805, -0.058597736060619354, -0.11410132050514221, 0.03881841525435448, 0.007275837007910013, -0.09445925056934357, 0.03846227750182152, -0.00017180698341690004, 0.009363840334117413, 0.014607558026909828, 0.12274205684661865, -0.027696648612618446, 0.01879628375172615, 0.08218387514352798, 0.054709531366825104, -0.10171312838792801, 0.1344245970249176, 0.0014636899577453732, -0.05598641559481621, 0.061464861035346985, 0.11506420373916626, 0.06186904013156891, 0.019142668694257736, 0.11893650889396667, -0.1197638288140297, -0.015326608903706074, 0.06888248771429062, 0.009497016668319702, 0.06810933351516724, -0.04433468356728554, -0.0704154372215271, 0.03725957125425339, -0.08453906327486038, -0.03256747126579285, -0.00494255730882287, 0.0540325753390789, -0.11338288336992264, 0.1137344241142273, -0.11326636373996735, 0.03364970162510872, -0.05005890503525734, -0.08757653832435608, 0.07121448218822479, 0.041583579033613205, 0.09442342072725296, 0.11112266033887863, -0.1065884456038475, 0.04207140579819679, 0.0600128173828125, 0.04984135553240776, 0.0666077509522438, 0.042134299874305725, -0.06094485893845558, -0.02336801588535309, -0.013086359016597271, 0.023021822795271873, 0.009036226198077202, 0.04542658478021622, 0.03384365141391754, -0.04479793459177017, 0.03158079832792282, 0.11474339663982391, 0.002356909913942218, 0.03683744743466377, -0.10170162469148636, 0.1384158730506897, 0.13429436087608337, 0.017581235617399216, -0.00879760179668665, -0.01829495280981064, -0.02272822894155979, -0.12090680003166199, -0.08192591369152069, 0.06734389811754227, 0.09347236156463623, 0.0005875896313227713, 0.03983697295188904, -0.032121941447257996, 0.04618855565786362, -0.011812320910394192, -0.06009974330663681, -0.010291071608662605, 0.08898729830980301, 0.04859807342290878, 0.0415726974606514, 0.011938272044062614, 0.0670555830001831, 0.09735116362571716, -0.09233592450618744, 0.1213466227054596, 0.011059802025556564, 0.044994793832302094, 0.04225652292370796, -0.05515306070446968, 0.05166313424706459, 0.05068109929561615, -0.048795681446790695, -0.08617513626813889, -0.04041820392012596, -0.13757775723934174, -0.09760716557502747, -0.0711137056350708, 0.030196765437722206, 0.033680178225040436, 0.08208108693361282, 0.09991177916526794, -0.1318061649799347, 0.05025966092944145, 0.05611208826303482, 0.00189309346023947, -0.12854145467281342, 0.18275372684001923, -0.07557453960180283, 0.051613699644804, -0.01837640441954136, -0.010498683899641037, -0.0751744732260704, 0.04667278751730919, 0.07269318401813507, -0.01363207958638668, -0.011376893147826195, -0.07857399433851242, -0.15414784848690033, -0.0611250177025795, 0.04609187692403793, -0.05426199361681938, -0.07150907814502716, 0.002170015824958682, -0.11088086664676666, -0.04048433527350426, -0.13211028277873993, -0.06303253769874573, -0.059747807681560516, 0.014342832379043102, 0.03743566945195198, -0.07382263243198395, -0.014265136793255806, 0.07456046342849731, -0.04476124793291092, -0.03586297109723091, 0.03484046459197998, -0.08165830373764038, -0.024307657033205032, 0.20186632871627808, -0.035469528287649155, 0.00917130522429943, 0.050425078719854355, -0.10401872545480728, 0.10216452926397324, -0.04743441939353943, -0.15832211077213287, 0.07109137624502182, -0.05242091417312622, -0.04765674099326134, 0.030623430386185646, 0.04686533659696579, 0.009487866424024105, -0.18346039950847626, -0.0645991787314415, 0.01866935007274151, 0.12311190366744995, 0.09626080840826035, -0.021519577130675316, 0.04285389557480812, -0.11692596971988678, -0.11493541300296783, -0.06044626981019974, 0.09689270704984665, -0.005533721763640642, -0.09694279730319977, 0.038744665682315826, -0.07162607461214066, 0.007223175372928381, -0.0975756123661995, -0.01830628514289856, 0.05974188074469566, 0.010855866596102715, 0.1837673932313919, 0.04830556362867355, -0.033894531428813934, 0.024526042863726616, 0.12969879806041718, 0.0888703241944313, -0.15713056921958923, -0.05554766207933426, 0.09720578044652939, -0.013793636113405228, -0.008603459224104881, 0.12603218853473663, -0.06722661852836609, -0.04321407154202461, -0.008507234044373035, 0.0910831019282341, -0.06101726368069649, 0.10600217431783676, 0.09884815663099289, 0.06751754879951477, 0.07871776819229126, -0.036410633474588394, -0.05457339808344841, 0.034297406673431396, -0.027073340490460396, -0.05592971295118332, -0.047216206789016724, -0.0035106113646179438, 0.008241075091063976, 0.035516414791345596, 0.08520523458719254, 0.05026169866323471, 0.06247777119278908, 0.11281869560480118, 0.13905902206897736, -0.019342079758644104, 0.051874201744794846, 0.07828693091869354, 0.09464483708143234, 0.09604313969612122, 0.09899205714464188, 0.05771375074982643, -0.011728414334356785, -0.11196454614400864, 0.06490834057331085, 0.08098120987415314, -0.08466480672359467, -0.09251868724822998, -0.007606111001223326, 0.024454012513160706, 0.11688344925642014, -0.10220462828874588, -0.032844919711351395, 0.09110094606876373, -0.08642399311065674, 0.010525110177695751, 0.061092302203178406, -0.006781891454011202, -0.13361050188541412, 0.09920216351747513, -0.0028588101267814636, 0.06820614635944366, 0.014117547310888767, 0.02126554772257805, -0.02842157520353794, 0.07054479420185089, 0.013030150905251503, 0.009337878786027431, -0.14930379390716553, -0.04443284124135971, 0.035333674401044846, -0.003919085022062063, -0.052480150014162064, 0.10538355261087418, 0.0025125492829829454, 0.025019871070981026, -0.06287440657615662, 0.059110887348651886, -0.11191008239984512, -0.05767129734158516, 0.04854210466146469, 0.010865863412618637, -0.026075704023241997, 0.0380687452852726, -0.001351037761196494, 0.03098614327609539, -0.02873976342380047, -0.009076149202883244, -0.09869790077209473, 0.04383324459195137, 0.01297326572239399, 0.025097256526350975, 0.029861442744731903, 0.020402733236551285, 0.027944834902882576, -0.09885287284851074, 0.11792778223752975, 0.03308388218283653, 0.11215098947286606, 0.07475448399782181, 0.033554524183273315, 0.09095273166894913, -0.11892702430486679, 0.020599110051989555, 0.017697850242257118, 0.0053513734601438046, -0.11951249092817307, 0.13195207715034485, -0.08532261848449707, -0.021208953112363815, 0.0046551828272640705, -0.04513575881719589, -0.037475015968084335, 0.01741091161966324, -0.003785067703574896, -0.0009406251483596861, -0.12398724257946014, 0.01646306738257408, -0.027202153578400612, 0.014906736090779305], +unreachable:[0.02489672228693962, -0.038198791444301605, -0.06864778697490692, -0.10763265192508698, 0.10867920517921448, 0.022903528064489365, -0.06254229694604874, -0.00045951688662171364, -0.05024576559662819, -0.10736919194459915, -0.10244965553283691, -0.1136912852525711, -0.025979453697800636, 0.12700015306472778, 0.03995319455862045, 0.10251040011644363, 0.11396385729312897, 0.03846870735287666, -0.005862140096724033, 0.026037177070975304, -0.005834338720887899, -0.025647465139627457, 0.012712177820503712, -0.09772314131259918, 0.07475712150335312, 0.022739790380001068, -0.03228577598929405, 0.11010266840457916, -0.003940239083021879, 0.05710494518280029, -0.0597635954618454, -0.013917051255702972, -0.018591776490211487, -0.0846409723162651, -0.09748446941375732, -0.06894800066947937, 0.016280516982078552, 0.12364304065704346, 0.014015601947903633, 0.0422155037522316, 0.11495601385831833, -0.07636691629886627, -0.060105904936790466, 0.0668296217918396, -0.08693734556436539, 0.02365424856543541, 0.0442534014582634, 0.03794212266802788, -0.03366345167160034, -0.015526537783443928, 0.039731740951538086, -0.03907468169927597, 0.07022694498300552, 0.10350430011749268, -0.0513424351811409, 0.06845073401927948, -0.03131683170795441, -0.06373143941164017, 0.046638358384370804, 0.04108478128910065, 0.028317686170339584, -0.0965314731001854, -0.10470707714557648, -0.07792406529188156, 0.030534029006958008, -0.0624254085123539, -0.13006654381752014, 0.10639968514442444, 0.023174986243247986, -0.008146466687321663, 0.1298278421163559, -0.030476676300168037, 0.10085516422986984, -0.09111354500055313, -0.050070762634277344, -0.008149292320013046, -0.07690838724374771, 0.015552963130176067, -0.01593673788011074, -0.031243368983268738, 0.11658979207277298, 0.00270143267698586, -0.0446864552795887, 0.06684029847383499, -0.12508843839168549, -0.030110247433185577, -0.07208704203367233, -0.071686290204525, -0.024470867589116096, -0.05425001680850983, 0.06264103949069977, -0.003990272991359234, -0.11890692263841629, -0.14250220358371735, 0.10014766454696655, 0.04412580654025078, -0.02423931658267975, -0.15672579407691956, 0.06942611187696457, 0.11838667094707489, 0.0965818390250206, 0.010159716010093689, -0.04180152341723442, -0.12111662328243256, -0.07414748519659042, -0.0709945484995842, -0.0173969566822052, 0.14359015226364136, -0.09796866774559021, 0.008292322978377342, -0.09999989718198776, 0.04248332604765892, 0.015792541205883026, -0.002188589656725526, -0.027690719813108444, 0.06586909294128418, -0.08567783981561661, -0.03122580237686634, -0.007862436585128307, -0.08508571982383728, 0.06916382908821106, -0.006027250550687313, -0.07147230207920074, 0.047327443957328796, 0.0698636919260025, 0.024299798533320427, -0.06450415402650833, -0.00537495780736208, -0.10834009945392609, 0.022362610325217247, 0.11271720379590988, 0.06870991736650467, -0.06282445043325424, -0.08898324519395828, -0.030649814754724503, 0.07637374103069305, 0.09756540507078171, -0.07566145807504654, -0.12912270426750183, -0.11107968538999557, 0.01782498136162758, -0.16620072722434998, -0.019842352718114853, 0.03058256022632122, -0.08975111693143845, 0.11775657534599304, 0.01610073633491993, -0.017584798857569695, 0.008168770000338554, -0.022721048444509506, -0.04167179390788078, -0.1266021430492401, -0.008680365048348904, -0.015448297373950481, 0.054726120084524155, 0.12183576077222824, 0.03082808293402195, -0.02619914524257183, -0.09707114100456238, 0.10233842581510544, 0.017267558723688126, 0.007037462666630745, 0.0178102757781744, -0.023533709347248077, 0.10069938749074936, -0.1460956484079361, 0.016078278422355652, -0.12614759802818298, 0.09986742585897446, 0.09547297656536102, -0.09682656079530716, 0.10638093948364258, -0.13060978055000305, 0.09740149229764938, -0.0024423464201390743, -0.043012507259845734, 0.06096813082695007, -0.05302977189421654, 0.00018726005509961396, 0.06418413668870926, -0.06517542153596878, -0.0563119538128376, -0.16877157986164093, -0.012513524852693081, -0.08384010195732117, -0.044083964079618454, 0.052469220012426376, 0.030307769775390625, -0.03051171265542507, 0.061807651072740555, 0.03897351026535034, 0.062286119908094406, 0.11487109959125519, -0.03085676021873951, -0.02040838450193405, -0.020652737468481064, 0.1378912627696991, -0.0169770959764719, -0.11599507927894592, 0.020571008324623108, 0.07585763186216354, 0.09990086406469345, 0.08130282163619995, -0.06398189812898636, -0.026048121973872185, -0.04361364245414734, 0.11115365475416183, 0.02017623372375965, 0.14122040569782257, -0.12462075799703598, 0.05042992904782295, 0.10130637139081955, 0.06352312862873077, 0.12367383390665054, -0.07059356570243835, 0.15298494696617126, -6.718066288158298e-05, 0.1120847687125206, 0.008142797276377678, -0.08055618405342102, -0.015058930031955242, -0.07665642350912094, 0.02584773115813732, 0.07677764445543289, -0.02407863177359104, 0.1667412966489792, -0.06519169360399246, 0.0515718013048172, 0.09464448690414429, -0.05589114874601364, -0.027946917340159416, 0.05175801366567612, 0.11242737621068954, 0.04210187494754791, -0.05312363803386688, -0.05072609707713127, 0.07793544977903366, -0.1572813093662262, -0.07952491194009781, -0.06494691222906113, -0.11528278142213821, 0.06973426789045334, -0.006287218537181616, -0.11536156386137009, 0.05131039768457413, 0.0738210678100586, 0.007741637993603945, 0.0431060716509819, -0.06603994220495224, -0.05668526142835617, 0.12850050628185272, -0.022989947348833084, 0.12813226878643036, 0.08628572523593903, 0.07424258440732956, 0.0872269943356514, 0.006255038548260927, 0.016391368582844734, -0.11983940005302429, -0.05055249109864235, -0.019897697493433952, 0.012089679948985577, 0.040190134197473526, -0.0624571293592453, 0.09669315814971924, -0.021075697615742683, -0.07966674864292145, -0.009074075147509575, 0.059089094400405884, 0.07399169355630875, 0.01750721037387848, -0.10636518150568008, -0.09925641864538193, -0.05594818294048309, -0.03268275782465935, 0.12820225954055786, 0.011920107528567314, -0.06503709405660629, 0.09896378219127655, -0.03773251548409462, -0.11815419048070908, -0.08748111128807068, 0.10918339341878891, 0.060165971517562866, 0.038931623101234436, 0.0423523373901844, -0.10454638302326202, 0.15337322652339935, -0.09638497978448868, -0.056798458099365234, 0.024262797087430954, 0.10461254417896271, -0.06410746276378632, 0.017949506640434265, 0.10802291333675385, -0.05151750147342682, -0.12558996677398682, 0.1260223537683487, -0.12411864846944809, -0.060371629893779755], +urem:[0.0248272642493248, -0.004107571206986904, -0.07392854243516922, -0.10720261931419373, 0.010372916236519814, 0.0792883038520813, 0.07310235500335693, 0.01722482033073902, 0.10350960493087769, 0.07613310217857361, -0.05978281795978546, -0.1154836043715477, -0.010401939041912556, 0.00704506691545248, 0.02517460472881794, 0.1428809016942978, 0.14450103044509888, -0.00885774940252304, -0.0470651350915432, 0.060038793832063675, 0.12037140130996704, -0.007122513838112354, -0.06642590463161469, 0.10790376365184784, 0.03283318504691124, 0.035302937030792236, -0.1075652614235878, 0.08423078060150146, -0.057897746562957764, -0.13109807670116425, -0.11084506660699844, -0.00032525378628633916, -0.03977126255631447, -0.0914716050028801, -0.08700551092624664, 0.06943827122449875, -0.033997662365436554, -0.009329636581242085, 0.09458882361650467, -0.07218880951404572, 0.11115644127130508, -0.05018498748540878, 0.09381181746721268, 0.13779237866401672, -0.08853303641080856, 0.0029764724895358086, 0.06545078009366989, 0.09955218434333801, -0.06325898319482803, -0.03965131565928459, 0.07887940853834152, 0.026526158675551414, -0.12356272339820862, 0.02918546460568905, 0.028517043218016624, 0.11595295369625092, 0.05812729150056839, -0.03937434032559395, 0.02237352915108204, 0.08983302861452103, 0.04443873092532158, 0.06669799983501434, 0.041776932775974274, 0.09334492683410645, 0.08251910656690598, 0.11387384682893753, 0.09009608626365662, 0.02927069552242756, 0.1419508308172226, 0.08575591444969177, -0.028993435204029083, 0.05815257504582405, -0.08934863656759262, 0.07858157157897949, 0.02216188982129097, 0.06536219269037247, 0.10730838775634766, -0.004129538778215647, 0.007274458184838295, 0.03819180279970169, -0.08898470550775528, 0.007353608496487141, -0.012718766927719116, 0.007856007665395737, 0.06879235059022903, -0.0012047458440065384, -0.030237331986427307, -0.07431052625179291, -0.02740909717977047, -0.06525865197181702, 0.0921827033162117, -0.017555098980665207, -0.07936330884695053, -0.01021380815654993, -0.08874069154262543, -0.07592569291591644, -0.09583768248558044, 0.008809992112219334, 0.004998807795345783, 0.1346469223499298, -0.11491680145263672, -0.09122563153505325, 0.08820591121912003, 0.02962762489914894, -0.07333722710609436, -0.04194905608892441, 0.14924095571041107, -0.03209731727838516, 0.06610483676195145, -0.134346604347229, 0.008204983547329903, -0.12694139778614044, 0.12738920748233795, 0.08365734666585922, 0.02140798047184944, -0.07481540739536285, -0.080750472843647, -0.04862964153289795, -0.07136030495166779, -0.11887702345848083, -0.10218685865402222, -0.06988614052534103, -0.1066531091928482, 0.0325767882168293, -0.07596301287412643, -0.04539400711655617, 0.022029774263501167, -0.014121977612376213, 0.09389787167310715, -0.1116538941860199, 0.009102027863264084, 0.08511283993721008, -0.1365950107574463, -0.11175431311130524, 0.06133226305246353, 0.0011095135705545545, 0.008400781080126762, -0.08549512922763824, -0.0608745701611042, -0.11099102348089218, -0.015688128769397736, 0.0298872459679842, 0.011861331760883331, -0.09415898472070694, 0.018842173740267754, -0.024634413421154022, 0.027320897206664085, -0.12653866410255432, -0.13237883150577545, -0.01997571624815464, -0.11265607923269272, -0.10480460524559021, 0.051709506660699844, 0.08037282526493073, 0.060388777405023575, -0.12632985413074493, 0.04646970331668854, -0.08310745656490326, 0.08560265600681305, 0.016846593469381332, -0.037797197699546814, -0.03829870745539665, -0.12473702430725098, 0.09134270995855331, 0.05009651184082031, 0.0687587633728981, 0.021132556721568108, 0.07395754754543304, -0.047598857432603836, -0.016385812312364578, 0.02356797084212303, -0.017415646463632584, 0.017655998468399048, 0.1246342658996582, 0.007064985577017069, -0.0012872257502749562, 0.09459754079580307, 0.11522233486175537, -0.008167858235538006, -0.06298502534627914, -0.009191786870360374, 0.049503594636917114, -0.051932405680418015, -0.05594174563884735, -0.034207168966531754, 0.05997338518500328, -0.04750235006213188, 0.0766851156949997, 0.10978823900222778, 0.053131479769945145, 0.009167681448161602, -0.0914018377661705, -0.007304496597498655, 0.08141050487756729, 0.11087381094694138, 0.11692629009485245, -0.06881897151470184, -0.026193706318736076, -0.02936989814043045, 0.0677945539355278, 0.07032877951860428, -0.05546434596180916, -0.04825931042432785, -0.0005319429910741746, -0.064588762819767, -0.048481184989213943, -0.0011287789093330503, 0.06941716372966766, -0.12714675068855286, 0.07091621309518814, 0.01712675578892231, -0.057086117565631866, -0.0869976282119751, 0.07565728574991226, -0.0988553911447525, 0.04218226671218872, 0.0410163439810276, 0.01858225278556347, -0.05478288233280182, -0.032880209386348724, 0.08839088678359985, 0.08894000202417374, 0.12487088143825531, 0.117247574031353, -0.030135145410895348, 0.08627807348966599, 0.11312606930732727, 0.11484555155038834, -0.06990720331668854, 0.08572383224964142, 0.07028559595346451, 0.050066616386175156, 0.0007907102117314935, 0.040465179830789566, 0.09785973280668259, 0.05411529541015625, -0.15182676911354065, 0.055605530738830566, 0.046652693301439285, 0.09519664198160172, 0.09008216857910156, 0.07031413912773132, -0.09665946662425995, 0.054324451833963394, -0.012925717048346996, 0.10446839779615402, 0.060697149485349655, -0.1499793380498886, 0.015434925444424152, 0.11444682627916336, -0.047344695776700974, 0.018277296796441078, -0.14586977660655975, -0.1334773600101471, 0.025240527465939522, -0.08962472528219223, 0.10760598629713058, -0.0032965741120278835, 0.039409130811691284, -0.03406916558742523, 0.09453610330820084, -0.0012192282592877746, 0.028939813375473022, -0.05999135598540306, -0.12069528549909592, 0.11151313036680222, -0.07542947679758072, 0.002723264740779996, 0.0399182103574276, 0.08956781774759293, -0.017135920003056526, -0.05175972357392311, 0.024738704785704613, 0.02206997573375702, 0.00018340477254241705, -0.03785159811377525, -0.14099416136741638, 0.03366243094205856, 0.03895324468612671, -0.02567077800631523, -0.1133342757821083, 0.06421399861574173, 0.12181469798088074, -0.0066979629918932915, 0.027223512530326843, -0.12239202857017517, -0.12415777146816254, 0.011312652379274368, -0.09037819504737854, -0.043468400835990906, 0.07926645874977112, -0.026729868724942207, -0.11418787389993668, 0.014550011605024338, -0.0985308289527893, -0.02899615466594696, -0.1282799243927002, -0.03681628033518791, -0.1113617792725563, 0.05781950056552887], +variable:[-0.08674121648073196, -0.09856478124856949, 0.03322923928499222, 0.06426240503787994, -0.11660832166671753, -0.03668324276804924, -0.040309708565473557, -0.07773741334676743, 0.06580489873886108, -0.05053389444947243, -0.04296579584479332, -0.01724715158343315, -0.0950915589928627, -0.016706783324480057, -0.04267384111881256, -0.07257753610610962, -0.0673099085688591, -0.03667570278048515, 0.04729467257857323, -0.08290612697601318, -0.09562718123197556, -0.00827802624553442, -0.03871738910675049, 0.043610937893390656, 0.10575611144304276, -0.07450409978628159, 0.04623968526721001, 0.008633136749267578, -0.042607564479112625, -0.07057999819517136, 0.07614108920097351, -0.05168965086340904, -0.09591234475374222, 0.10703099519014359, 0.0997849851846695, 0.05235467106103897, -0.10781519114971161, 0.08486612141132355, -0.02407817170023918, 0.05200676992535591, -0.08820444345474243, 0.08402436971664429, -0.02201305516064167, 0.07134965807199478, 0.10864480584859848, 0.13258816301822662, -0.07735006511211395, -0.04982100427150726, 0.1001487746834755, 0.10236895084381104, -0.1052113026380539, -0.04196053370833397, 0.13375182449817657, -0.07223577052354813, 0.057270146906375885, -0.07666375488042831, 0.05194734036922455, -0.004659897182136774, 0.08061568439006805, 0.11299653351306915, -0.1191415935754776, 0.0923205241560936, -0.017634695395827293, -0.0052456422708928585, -0.015741413459181786, -0.02689460478723049, -0.12047572433948517, -0.17148129642009735, -0.011928077787160873, 0.047174178063869476, -0.09552101790904999, 0.1525169163942337, 0.060130346566438675, 0.08179247379302979, 0.012652548961341381, 0.025674214586615562, 0.053357258439064026, -0.027528241276741028, 0.13565343618392944, 0.09706523269414902, 0.0455123633146286, 0.10475634783506393, -0.09780173003673553, 0.05789218842983246, -0.07245595008134842, -0.0276810135692358, 0.09448134154081345, 0.02550111897289753, -0.12946203351020813, -0.016915589570999146, -0.01969061978161335, 0.090912364423275, 0.08861718326807022, 0.1758287101984024, 0.02132931724190712, -0.1550808995962143, 0.06101321056485176, 0.053646162152290344, -0.05624376982450485, 0.13497431576251984, 0.023530263453722, 0.015071354806423187, -0.08864213526248932, -0.12502478063106537, 0.02618112601339817, 0.09251176565885544, -0.06600116193294525, -0.016028838232159615, 0.013559243641793728, 0.08264698088169098, -0.0857057273387909, -0.031123118475079536, 0.06323983520269394, 0.025054147467017174, -0.013987847603857517, -0.0317336767911911, -0.04436616227030754, 0.03560589998960495, -0.18787747621536255, 0.08686407655477524, 0.1607019305229187, -0.09959760308265686, 0.022350070998072624, 0.08032792806625366, 0.025328660383820534, 0.014661754481494427, 0.0023026801645755768, -0.08431101590394974, -0.12184487283229828, 0.09592505544424057, -0.09825016558170319, -0.09253855794668198, -0.02219071239233017, 0.02677510865032673, 0.01156231015920639, 0.1013210192322731, -0.0686006247997284, -0.03481902554631233, 0.05521334707736969, 0.07996432483196259, 0.03669257462024689, 0.07846063375473022, -0.021663723513484, -0.11052142083644867, 0.031182322651147842, -0.030560430139303207, -0.059544071555137634, -0.12224331498146057, -0.0949699729681015, -0.0017410176806151867, -0.17271989583969116, -0.034809309989213943, 0.011569510214030743, 0.0656181201338768, -0.0060293665155768394, 0.014183547347784042, 0.10883139818906784, -0.05841381847858429, 0.02884673699736595, 0.12948155403137207, 0.0045314026065170765, 0.06961467117071152, 0.1495693027973175, 0.07757115364074707, -0.05949357524514198, 0.014258096925914288, 0.05117775872349739, 0.13473379611968994, 0.08538085967302322, -0.07293164730072021, 0.16464175283908844, -0.01825365610420704, -0.06142822653055191, 0.0700378343462944, 0.03777749091386795, -0.14994332194328308, -0.0545450858771801, -0.032583724707365036, -0.009705524891614914, -0.13348138332366943, 0.015922004356980324, 0.15687380731105804, 0.06252884864807129, 0.12144256383180618, 0.035535816103219986, -0.07019317150115967, 0.0008884815615601838, 0.03777611628174782, -0.07047595828771591, -0.09015601873397827, -0.04755188524723053, -0.011776425875723362, 0.046561431139707565, 0.03682951629161835, 0.06296829879283905, -0.0006605370435863733, 0.05146603286266327, -0.0446232333779335, -0.07530293613672256, -0.05524669215083122, -0.0705496221780777, 0.09351786226034164, -0.023631734773516655, -0.08326125890016556, -0.03303372859954834, 0.07887180894613266, -0.025509335100650787, 0.10879962891340256, -0.11798814684152603, 0.13387233018875122, -0.039450645446777344, -0.018401095643639565, 0.07776812463998795, -0.050616972148418427, 0.015482592396438122, -0.07073801755905151, -0.07531382888555527, -0.009648392908275127, -0.011606210842728615, 0.008215622045099735, -0.05854739993810654, 0.09776744991540909, 0.07427958399057388, -0.06741963326931, 0.09525519609451294, -0.029159680008888245, 0.08289850503206253, 0.03784056380391121, -0.05617376044392586, -0.1392076015472412, -0.04670664668083191, -0.00827779807150364, -0.11566231399774551, -0.12060307711362839, 0.0017476656939834356, 0.011839714832603931, -0.053441744297742844, 0.04277995228767395, 0.06931855529546738, -0.025351839140057564, 0.15494650602340698, -0.05021641403436661, -0.061952367424964905, 0.02786157839000225, 0.02535245753824711, -0.04712557792663574, 0.126460000872612, 0.0060966769233345985, 0.07333216071128845, 0.02508210390806198, 0.08786565065383911, -0.010881863534450531, 0.07925113290548325, -0.06896884739398956, -0.07499007135629654, -0.05175379663705826, 0.06302148848772049, -0.021020246669650078, -0.014564859680831432, 0.06924309581518173, 0.13086959719657898, -0.11788541078567505, -0.03803415223956108, 0.09850547462701797, 0.026894990354776382, -0.10040700435638428, 0.09447593986988068, 0.06820891797542572, -0.025541309267282486, -0.04089178517460823, -0.1555202156305313, 0.08444325625896454, -0.011539903469383717, -0.0910089910030365, -0.09780726581811905, -0.08814865350723267, -0.062027838081121445, -0.02974938414990902, -0.1009378507733345, 0.0951124057173729, -0.05801069363951683, 0.09290546178817749, -0.030525105074048042, 0.036771051585674286, 0.06138552725315094, 0.07647304236888885, -0.03208702802658081, 0.0374576672911644, 0.10588830709457397, 0.11328452825546265, -0.12006518989801407, -0.004670150578022003, 0.08482815325260162, -0.10301484912633896, -0.05317508056759834, -0.08552438765764236, 0.11518202722072601, -0.11219397187232971, -0.059184156358242035, 0.08855076879262924], +vectorTy:[-0.09719181060791016, -0.10198792815208435, -0.024346299469470978, 0.13673466444015503, 0.09027402848005295, 0.017195526510477066, -0.1089325100183487, -0.05431865528225899, 0.06131712347269058, -0.03609362617135048, -0.11560606956481934, 0.09409692883491516, 0.09002002328634262, -0.028767196461558342, -0.13341929018497467, -0.08020046353340149, -0.09185755997896194, 0.12111230194568634, -0.05148455128073692, -0.0035299076698720455, 0.1119721308350563, -0.00024943219614215195, 0.02714620716869831, -0.04742831736803055, 0.09078700095415115, -0.08223873376846313, -0.10166975110769272, 0.0024885183665901423, 0.02814139612019062, -0.09504372626543045, 0.022913197055459023, 0.09070122987031937, 0.1307680755853653, 0.053104691207408905, 0.08965819329023361, 0.10371412336826324, 0.07638895511627197, -0.0926222950220108, 0.1267371028661728, 0.06408964097499847, 0.06144516170024872, -0.10333429276943207, -0.016853131353855133, 0.08167260885238647, 0.006214093416929245, 0.00118956808000803, -0.10148937255144119, -0.037167854607105255, 0.09241297841072083, -0.129108265042305, -0.09284330904483795, 0.07027142494916916, -0.0657336488366127, -0.06381206214427948, -0.011429768055677414, 0.09596320241689682, 9.28403896978125e-05, 0.016579855233430862, -0.06819315999746323, -0.1107444167137146, -0.08530964702367783, 0.004841647110879421, 0.009073044173419476, -0.013896907679736614, -0.025729479268193245, 0.1232527643442154, -0.048239756375551224, 0.11276255548000336, 0.011087212711572647, 0.012136613950133324, -0.08419400453567505, -0.12810105085372925, 0.009178460575640202, -0.048885200172662735, -0.07248374819755554, -0.010610087774693966, -0.04580094665288925, -0.0010723895393311977, -0.08642991632223129, 0.036931827664375305, 0.11251930147409439, -0.0767245814204216, -0.07091771811246872, 0.004120133817195892, 0.114651158452034, 0.011567316949367523, -0.045726478099823, 0.07997499406337738, 0.07947928458452225, 0.00933810230344534, -0.04767000675201416, -0.09224586933851242, -0.09498444944620132, -0.023347478359937668, 0.12394099682569504, -0.055548783391714096, 0.022114474326372147, 0.11354662477970123, -0.005777718033641577, -0.10303923487663269, 0.06278489530086517, -0.08838174492120743, -0.02414834499359131, 0.00826946459710598, 0.10337229073047638, -0.032098833471536636, -0.09463687241077423, -0.04609555006027222, 0.017234722152352333, 0.08556189388036728, 0.08200157433748245, -0.04132452607154846, -0.12115994840860367, -0.025054726749658585, -0.03693576157093048, -0.006277856417000294, -0.023844674229621887, -0.10913732647895813, 0.0644935667514801, 0.10382448136806488, -0.086241215467453, 0.11481452733278275, 0.06314409524202347, 0.014767235144972801, 0.02108631655573845, -0.016425354406237602, 0.11737482994794846, -0.07880186289548874, 0.07141561061143875, 0.12629733979701996, -0.07061932981014252, -0.002246447140350938, -0.08907125145196915, 0.07143548130989075, -0.04010707885026932, -0.12707391381263733, 0.05498828366398811, 0.09619218856096268, 0.010076292790472507, 0.13540886342525482, -0.005363820120692253, 0.08076100796461105, 0.0557158887386322, 0.10980705171823502, 0.08801473677158356, -0.002093518152832985, 0.014341740868985653, 0.1502666026353836, 0.10563670098781586, 0.011269099079072475, 0.127699613571167, -0.014558238908648491, -0.12066955119371414, 0.058630429208278656, 0.01539753656834364, -0.11659591645002365, 0.08972080051898956, 0.1176275759935379, -0.10961373895406723, -0.11546910554170609, 0.01904124766588211, -0.030894901603460312, -0.058977410197257996, -0.060145303606987, -0.07009407132863998, 0.016132988035678864, 0.04325581341981888, -0.08592461794614792, 0.03621000051498413, -0.09156166017055511, -0.08445318788290024, 0.06482169032096863, 0.019082123413681984, 0.0854768306016922, 0.0673292949795723, 0.12371587753295898, -0.06670867651700974, -0.10173194110393524, 0.006867797113955021, -0.036218635737895966, -0.015864478424191475, -0.08210574090480804, -0.01290760189294815, -0.10788317024707794, 0.016437670215964317, -0.05300784483551979, 0.024550847709178925, 0.1235332190990448, -0.08051411807537079, -0.09424695372581482, 0.036440979689359665, -0.03162459284067154, 0.03987574204802513, -0.06892462074756622, 0.028367675840854645, 0.040438756346702576, -0.11144065111875534, 0.023835474625229836, 0.1355583667755127, -0.09120980650186539, -0.05644926056265831, -0.029768794775009155, -0.0135599160566926, -0.11270427703857422, -0.0062134843319654465, -0.10084383934736252, 0.12981456518173218, 0.06803024560213089, -0.07946004718542099, -0.09972646832466125, -0.05489370599389076, 0.10476788878440857, -0.004579477943480015, -0.015704980120062828, -0.05496663227677345, -0.1144637018442154, 0.11031857132911682, 0.008197938092052937, 0.019094914197921753, 0.034542739391326904, -0.04845207557082176, 0.04264678806066513, -0.07642596960067749, 0.02760755456984043, -0.054174650460481644, -0.04772455617785454, 0.04882866516709328, -0.015705255791544914, 0.059650592505931854, -0.02549845352768898, -0.017212359234690666, 0.1278291642665863, 0.08534538000822067, 0.11455786973237991, 0.01065992284566164, 0.039037372916936874, -0.03442544862627983, 0.03715735301375389, -0.08350026607513428, 0.008932533673942089, -0.09498951584100723, -0.06795188039541245, 0.10797697305679321, -0.08784124255180359, -0.02396605908870697, 0.09796184301376343, -0.06672825664281845, 0.04265787452459335, 0.06963024288415909, 0.01676798239350319, 0.001793690724298358, -0.03959065303206444, 0.09473846107721329, -0.06743782013654709, 0.07503796368837357, 0.08627849817276001, -0.030342618003487587, 0.026691963896155357, -0.00577195081859827, -0.01634075865149498, -0.11570804566144943, 0.08586903661489487, 0.022555388510227203, 0.09066478908061981, 0.0648057609796524, -0.11361028254032135, 0.0723857581615448, 0.09290604293346405, 0.11487214267253876, -0.051362138241529465, -0.07848980277776718, 0.058038853108882904, -0.06301954388618469, 0.06363766640424728, 0.14216886460781097, 0.06814060360193253, 0.13067777454853058, 0.10632340610027313, 0.097682423889637, -0.10973186790943146, 0.11362690478563309, 0.010568189434707165, -0.10284106433391571, -0.022430645301938057, 0.01940278895199299, -0.11041133105754852, 0.09283360838890076, -0.050003763288259506, 0.08745896071195602, 0.09994802623987198, 0.11373204737901688, 0.027414051815867424, 0.07327958941459656, -0.072690449655056, 0.0824594721198082, 0.1410863697528839, -0.04124700278043747, -0.07019954919815063, 0.0888826847076416, -0.05410235747694969], +voidTy:[-0.11052728444337845, -0.11396437138319016, 0.020233266055583954, 0.05247781053185463, 0.07876762747764587, -0.014567629434168339, -0.0962860956788063, 0.08803243935108185, -0.10000012814998627, 0.05250686779618263, -0.06748279929161072, 0.10673375427722931, 0.07509054243564606, -0.10121645778417587, -0.09648843854665756, -0.015035480260848999, 0.01853756606578827, 0.09831590950489044, 0.07381688803434372, -0.03654121235013008, 0.026811648160219193, -0.045410215854644775, -0.04115045443177223, -0.0024744586553424597, -0.09142271429300308, -0.10924798250198364, -0.09817016869783401, 0.055999550968408585, 0.016758764162659645, 0.03755389526486397, -0.03933225944638252, 0.026724038645625114, 0.05683088302612305, 0.020728129893541336, 0.09384682774543762, -0.09938383102416992, 0.11709887534379959, 0.10247636586427689, -0.09546378999948502, -0.05050135403871536, -0.05212784558534622, -0.07870431244373322, -0.008185185492038727, 0.11725258082151413, 0.022310543805360794, 0.01715713180601597, -0.09235398471355438, -0.07663685083389282, -0.007636980153620243, 0.07968456298112869, 0.020368095487356186, 0.11042764037847519, -0.06949041038751602, -0.10052859783172607, -0.1028231605887413, 0.10758710652589798, -0.015688441693782806, -0.023027518764138222, -0.11630363762378693, -0.042099516838788986, -0.10945884883403778, -0.09137570858001709, 0.11830770969390869, -0.10226455330848694, -0.030904142186045647, -0.0007910403655841947, 0.10403938591480255, -0.014602328650653362, -0.005582459736615419, -0.02905147336423397, 0.08849587291479111, -0.1261252760887146, -0.061178985983133316, -0.1185002326965332, 0.06352473050355911, 0.009420827031135559, -0.02080395817756653, -0.0030299765057861805, -0.04402979090809822, -0.05756282061338425, 0.0978919044137001, -0.10049047321081161, 0.10083940625190735, 0.0019997607450932264, -0.06079038977622986, -0.027661768719553947, 0.0806589126586914, -0.08593695610761642, 0.08063195645809174, 0.005982665345072746, -0.0782606303691864, -0.07695107161998749, 0.08620158582925797, -0.0859420895576477, 0.06932352483272552, -0.02642746828496456, 0.03621697053313255, -0.08038029819726944, -0.0005034989444538951, 0.03682272881269455, 0.1083378717303276, -0.04761157184839249, 0.05545758455991745, -0.04687740281224251, 0.09855533391237259, -0.017737150192260742, -0.117215096950531, 0.013448894023895264, -0.06867068260908127, -0.04385269433259964, -0.11337491124868393, 0.112669438123703, 0.022123264148831367, 0.1122652217745781, 0.005331220105290413, -0.028882158920168877, 0.005223149433732033, 0.08102093636989594, 0.07650090008974075, 0.09138454496860504, -0.0846707671880722, 0.0811038389801979, 0.07850413769483566, 0.0685986876487732, 0.046440448611974716, 0.06457448750734329, 0.0355353020131588, -0.11433469504117966, 0.08223412185907364, 0.07807458192110062, -0.09421050548553467, 0.05361093208193779, 0.040100377053022385, 0.06434626132249832, -0.10509305447340012, 0.11723551154136658, -0.0825783908367157, -0.10889989882707596, -0.10642104595899582, 0.0867769792675972, 0.012242298573255539, 0.015794767066836357, 0.0038845494855195284, 0.014062758535146713, 0.06022880598902702, 0.012930874712765217, -0.011768744327127934, 0.05073443800210953, 0.08663032948970795, -0.008184797130525112, 0.09368608146905899, -0.09743060916662216, -0.036977771669626236, 0.09298016875982285, 0.05344396084547043, 0.03487235680222511, 0.12009279429912567, 0.09395699203014374, -0.03136930614709854, -0.08475636690855026, -0.028072308748960495, -0.08445390313863754, -0.08826503902673721, -0.1345272809267044, -0.07744146138429642, 0.07987401634454727, -0.0741807222366333, -0.09906568378210068, 0.08517508953809738, 0.06257566064596176, -0.10945319384336472, 0.0885891392827034, 0.006863675080239773, 0.09843261539936066, 0.1145581379532814, -0.059814970940351486, 0.11690115928649902, -0.026422834023833275, -0.025558339431881905, 0.010143485851585865, -0.007074426859617233, -0.12211655080318451, -0.013933738693594933, -0.09999798238277435, -0.027042239904403687, -0.1326005458831787, -0.008612057194113731, 0.08297322690486908, -0.10597047954797745, 0.09099780768156052, 0.01908753253519535, -0.07139475643634796, -0.022874874994158745, 0.05246979370713234, -0.03242918848991394, -0.013421985320746899, 0.09400913119316101, -0.03030543029308319, -0.03505046293139458, -0.10395214706659317, 0.08986364305019379, -0.03875086084008217, 0.026135949417948723, 0.08685585856437683, 0.07676604390144348, 0.09573771059513092, 0.08910510689020157, 0.1063489094376564, -0.07703173905611038, -0.08970481157302856, -0.00047993476619012654, 0.007235828787088394, 0.06673725694417953, -0.04974643513560295, -0.054348915815353394, -0.06437679380178452, -0.06021510809659958, -0.09033135324716568, -0.029222644865512848, -0.04436430335044861, -0.10702988505363464, -0.028714949265122414, -0.0030109076760709286, 0.10675770044326782, 0.08043582737445831, -0.017630070447921753, 0.023971211165189743, -0.0042134737595915794, -0.033250074833631516, 0.10772339999675751, -0.057068802416324615, -0.10974828153848648, 0.09685922414064407, 0.05854463949799538, -0.043458353728055954, -0.027098653838038445, -0.07111044973134995, -0.06701748818159103, 0.029757866635918617, -0.013566137291491032, -0.08604240417480469, -0.09187298268079758, -0.10988005250692368, 0.00949924997985363, 0.029218340292572975, -0.09258098900318146, -0.0625464916229248, 0.005275482777506113, -0.07648219168186188, -0.058306172490119934, 0.04038079455494881, 0.016035834327340126, 0.08744800090789795, -0.03663434460759163, 0.12077579647302628, 0.10322301089763641, 0.040063224732875824, 0.004730957560241222, 0.11866756528615952, 0.002576839178800583, -0.050122231245040894, 0.108118936419487, -0.01883208006620407, 0.09340812265872955, 0.056968845427036285, 0.12092085927724838, -0.10360137373209, -0.09868864715099335, -0.03741994872689247, 0.05128707364201546, 0.11406932771205902, 0.06131119653582573, 0.10034063458442688, -0.10930050909519196, 0.0849061906337738, -0.04420637711882591, 0.042814843356609344, -0.01673472300171852, 0.0834956243634224, 0.08794465661048889, 0.028809860348701477, -0.11684757471084595, 0.13337570428848267, 0.029053624719381332, -0.0007301748264580965, 0.03684001415967941, 0.1275121569633484, -0.08028439432382584, 0.014777444303035736, 0.10139074176549911, -0.10146131366491318, -0.0014842741657048464, -0.0399746336042881, 0.10177764296531677, 0.04597458988428116, 0.1033230870962143, 0.019962023943662643, 0.060439616441726685, 0.09081888943910599, -0.1047777384519577], +xor:[0.023098917677998543, 0.0025207882281392813, 0.04091842845082283, -0.10241744667291641, 0.12520097196102142, 0.12775711715221405, -0.0417679101228714, -0.09534989297389984, -0.047175899147987366, -0.0014680918538942933, 0.019489973783493042, -0.1056724488735199, -0.019060632213950157, 0.12079524993896484, 0.006134445779025555, 0.05455152317881584, 0.13748474419116974, 0.037697117775678635, -0.07344220578670502, -0.009808415547013283, 0.014884513802826405, 0.025080839172005653, 0.09315160661935806, 0.11594130098819733, 0.02488785795867443, 0.031705524772405624, -0.07568509131669998, 0.08276309072971344, 0.055348630994558334, -0.05904064700007439, 0.03278103843331337, 0.06442105025053024, -0.03608546406030655, -0.08761301636695862, -0.056910526007413864, 0.02908928133547306, -0.033712051808834076, -0.013732650317251682, 0.08964724093675613, -0.006404044572263956, 0.12147045880556107, -0.06353253871202469, 0.0612872950732708, 0.03015229105949402, -0.0238786693662405, -0.0737154558300972, 0.06262332201004028, -0.08333931863307953, 0.060234926640987396, -0.040024738758802414, 0.0614033117890358, 0.023935362696647644, 0.0463961586356163, 0.07545441389083862, -0.03787519782781601, 0.05060027912259102, -0.03875689581036568, -0.016679760068655014, 0.003026842838153243, -0.10987814515829086, 0.0434393435716629, 0.15557299554347992, 0.019945906475186348, 0.11598795652389526, 0.11213382333517075, 0.055973589420318604, -0.07712775468826294, 0.03626352921128273, 0.1200268566608429, 0.11752142012119293, 0.09972954541444778, 0.05334163084626198, -0.1185043528676033, 0.04610258340835571, -0.026670126244425774, 0.0337245911359787, 0.15384811162948608, -0.054082442075014114, 0.014094560407102108, 0.10025268793106079, -0.08418707549571991, 0.012736432254314423, -0.012079522013664246, -0.07037432491779327, 0.06206350401043892, 0.027205409482121468, -0.03945015370845795, -0.02438618429005146, 0.011856796219944954, 0.12414368987083435, 0.09123728424310684, 0.0393594391644001, -0.0724293440580368, -0.010125107131898403, -0.0871138796210289, 0.014321176335215569, -0.054851870983839035, -0.005583975929766893, 0.03864767402410507, 0.11132483929395676, -0.10997164249420166, -0.09385344386100769, 0.019255036488175392, -0.002187432488426566, -0.0707664042711258, 0.10128171741962433, 0.13166947662830353, 0.08261698484420776, 0.049772776663303375, -0.0391082800924778, 0.037959348410367966, 0.047860726714134216, -0.04872832074761391, -0.12717562913894653, 0.07643334567546844, -0.06183936074376106, -0.013760166242718697, -0.046614088118076324, -0.06333599239587784, -0.11096998304128647, 0.04377076029777527, 0.015863556414842606, -0.11044017970561981, 0.02305164933204651, -0.001655983505770564, -0.02592996135354042, 0.052603285759687424, -0.07293110340833664, -0.05081047862768173, -0.012666930444538593, -0.002776420908048749, 0.0382295623421669, -0.12934748828411102, -0.10878627747297287, 0.06617721170186996, -0.01930771768093109, 0.014152823947370052, 0.03810969740152359, -0.06100492924451828, -0.10459224134683609, 0.139292910695076, -0.056343670934438705, -0.061034854501485825, -0.003136018756777048, -0.07797009497880936, -0.033365994691848755, 0.0252517219632864, -0.038131602108478546, -0.12567736208438873, -0.02174421213567257, -0.10319306701421738, 0.12276138365268707, -0.006777358241379261, -0.04881652072072029, -0.06569413840770721, 0.07945609837770462, 0.04090810939669609, -0.03429555520415306, 0.07124684751033783, 0.09560968726873398, 0.019578497856855392, -0.03766263648867607, 0.018350444734096527, 0.1214645504951477, 0.09437008947134018, -0.12291785329580307, 0.004264079034328461, 0.008415523916482925, -0.13810090720653534, -0.011871136724948883, 0.023678965866565704, -0.07584670931100845, -0.01934901438653469, -0.10661427676677704, -0.07324438542127609, 0.002145475707948208, 0.08475460857152939, 0.001775928307324648, 0.12152092903852463, 0.020972993224859238, 0.02706611528992653, -0.017836375162005424, 0.06709736585617065, -0.035786841064691544, -0.008214782923460007, 0.08723610639572144, -0.08710522949695587, 0.05982514098286629, 0.10449622571468353, 0.05230332165956497, -0.007955409586429596, -0.07150440663099289, 0.03927399963140488, -0.044417742639780045, 0.09256737679243088, 0.024179967120289803, -0.06718278676271439, 0.028407849371433258, -0.10937058180570602, 0.08769958466291428, 0.06679680943489075, -0.04791027680039406, 0.048994194716215134, -0.0038555089849978685, -0.1148781031370163, -0.10742515325546265, 0.036016691476106644, 0.03310267627239227, 0.03154435008764267, 0.06625185161828995, 0.07491536438465118, 0.04336357116699219, 0.010060282424092293, 0.08831334114074707, 0.06059277057647705, 0.042648348957300186, 0.0592561699450016, 0.07043459266424179, -0.12363170087337494, 0.022366004064679146, 0.10613684356212616, 0.006695824209600687, -0.010984931141138077, -0.11505480110645294, 0.022947806864976883, 0.0687117725610733, 0.04827141389250755, 0.04772235080599785, -0.005404914729297161, 0.027213411405682564, 0.0711333379149437, 0.048609595745801926, 0.004934375640004873, 0.051050473004579544, 0.06167912483215332, 0.140579953789711, -0.060863375663757324, 0.05494176596403122, -0.13260416686534882, 0.0042793345637619495, 0.0858224481344223, 0.0674840658903122, -0.0106767313554883, 0.012144647538661957, -0.06210416555404663, 0.0699494332075119, 0.07528479397296906, -0.001068550394847989, 0.018655546009540558, 0.17190766334533691, -0.044914599508047104, 0.1962389200925827, -0.04890773445367813, 0.07552208006381989, 0.024607988074421883, -0.05877889320254326, -0.10532186925411224, 0.19467014074325562, 0.065402090549469, 0.09849683195352554, -0.0007711470243521035, -0.010683546774089336, 0.03746149316430092, -0.05872019752860069, -0.02249009907245636, 0.004642727319151163, 0.10334360599517822, 0.006290428806096315, 0.041266459971666336, -0.027815725654363632, -0.04235506430268288, -0.06867870688438416, 0.10073422640562057, 0.11423581838607788, 0.0020381396170705557, 0.02262849360704422, 0.11108776181936264, 0.03267339617013931, 0.025329608470201492, -0.013089491054415703, -0.04055388271808624, 0.1006665825843811, 0.10326816886663437, -0.039076946675777435, 0.065516896545887, -0.03405376523733139, -0.11470107734203339, 0.1351267248392105, -0.08623185008764267, 0.07849191874265671, -0.09642425924539566, -0.19264823198318481, -0.04242026433348656, 0.01590268686413765, -0.09430856257677078, 0.03987385332584381, -0.12252085655927658, -0.055853258818387985, -0.09067884832620621, 0.03172679990530014], +zext:[0.02546684630215168, -0.0021372088231146336, -0.004925194662064314, 0.03307391330599785, -0.026232104748487473, 0.052755653858184814, 0.06810930371284485, -0.062404900789260864, -0.04388244450092316, -0.021083110943436623, 0.03253199905157089, -0.057263605296611786, -0.01629960536956787, 0.12739647924900055, 0.008792553097009659, 0.06102197989821434, 0.13095183670520782, 0.057580433785915375, -0.12057022750377655, -0.025663750246167183, 0.07843581587076187, 0.06780654937028885, 0.13170060515403748, 0.10114413499832153, 0.023821985349059105, 0.039225343614816666, -0.023618057370185852, -0.07111436128616333, 0.037269677966833115, -0.08517247438430786, 0.05733487382531166, 0.07253261655569077, 0.01153936143964529, -0.10501240938901901, -0.08641161769628525, -0.01244981400668621, -0.03543459251523018, 0.010266641154885292, 0.09381837397813797, -0.11566974222660065, 0.060036882758140564, -0.05667167156934738, 0.18101997673511505, -0.07565590739250183, -0.01686069183051586, -0.0024407964665442705, 0.0640561506152153, 0.09825771301984787, 0.06760263442993164, -0.04136877506971359, 0.04224712774157524, 0.014764059334993362, 0.05711705982685089, 0.06997142732143402, -0.06066811457276344, 0.03639834001660347, 0.030796846374869347, -0.09158691763877869, 0.02073723077774048, 0.0058881500735878944, 0.04452621191740036, 0.03811906650662422, -0.011808015406131744, 0.10953573137521744, 0.10017871111631393, 0.0778668075799942, -0.04357128590345383, 0.03440181910991669, 0.11263909190893173, 0.10074388980865479, 0.01838495023548603, 0.055388402193784714, -0.018430935218930244, 0.03165821358561516, -0.0639394074678421, -0.1425916850566864, -0.08863398432731628, -0.16245318949222565, 0.0099457623437047, 0.06558340042829514, -0.08739262074232101, 0.013819737359881401, -0.0008462024852633476, 0.12838424742221832, 0.07033468037843704, 0.20620520412921906, 0.020802868530154228, -0.014664673246443272, -0.027122685685753822, 0.03560186177492142, 0.08466669917106628, -0.03770148754119873, -0.081439308822155, -0.013142753392457962, -0.08933452516794205, 0.04150477051734924, -0.057356785982847214, 0.06391087174415588, -0.09009893983602524, 0.10832596570253372, -0.10434233397245407, -0.10735013335943222, -0.016764016821980476, 0.050899673253297806, -0.0543835274875164, -0.0010963253444060683, 0.060999926179647446, 0.10456256568431854, 0.003029672894626856, -0.050921957939863205, 0.05384128913283348, 0.05390927195549011, -0.04074743017554283, -0.13383741676807404, 0.1346040517091751, -0.0879618227481842, -0.034750811755657196, 0.06240347772836685, -0.056749310344457626, -0.11441394686698914, 0.06350357085466385, -0.001732424832880497, -0.08602188527584076, -0.08139486610889435, -0.053601738065481186, -0.018822137266397476, -0.06116895377635956, 0.0009844891028478742, -0.07994130253791809, -0.05957646667957306, 0.0034757175017148256, -0.004211349878460169, 0.08305150270462036, -0.11680564284324646, 0.08001953363418579, -0.003228380111977458, 0.014728258363902569, 0.039429452270269394, -0.06750137358903885, -0.1088937520980835, -0.11302762478590012, -0.13596321642398834, 0.14401035010814667, 0.07299035042524338, -0.08151273429393768, -0.1284146010875702, -0.15611623227596283, -0.011802786961197853, 0.00851049367338419, -0.22477832436561584, -0.0361185260117054, 0.10391896218061447, 0.055064842104911804, -0.09845143556594849, 0.08231748640537262, -0.05499967932701111, -0.016319015994668007, -0.01740623451769352, 0.06835669279098511, 0.027105290442705154, -0.007099589332938194, -0.04130847752094269, 0.018267925828695297, 0.13271240890026093, 0.09953060746192932, 0.00226989877410233, -0.08518488705158234, -0.010409725829958916, -0.07357485592365265, 0.02690121717751026, 0.09961110353469849, 0.05233282595872879, -0.03661772236227989, -0.11219820380210876, -0.07443967461585999, 0.0518781878054142, 0.0698629766702652, 0.009819570928812027, 0.12439461797475815, 0.011900593526661396, -0.11434159427881241, 0.0575261227786541, -0.1389189213514328, 0.006043245550245047, -0.04402740299701691, 0.06025060638785362, 0.14922809600830078, -0.009426266886293888, 0.029567895457148552, 0.03679861128330231, 0.05682935193181038, 0.13479430973529816, -0.04465295374393463, 0.032295357435941696, 0.023023061454296112, 0.010125435888767242, -0.06870049983263016, 0.19072793424129486, 0.008987952023744583, 0.0731293186545372, 0.07350977510213852, 0.014037879183888435, -0.20822294056415558, 0.0025753239169716835, -0.11044275015592575, -0.05652797967195511, -0.018497319892048836, -0.005968412384390831, 0.02346649393439293, 0.07026983052492142, 0.027058102190494537, -0.032707687467336655, -0.05525277182459831, 0.1094718873500824, 0.07669288665056229, -0.06357870250940323, 0.05475713312625885, 0.08009335398674011, -0.014674246311187744, 0.1475440263748169, 0.09702026844024658, -0.07771151512861252, -0.02439381740987301, 0.036051422357559204, -0.06280869990587234, 0.07790283113718033, 0.06386946141719818, 0.030130213126540184, 0.07998353987932205, 0.004764718469232321, 0.07385353744029999, -0.06615036725997925, -0.03379077836871147, 0.09290924668312073, 0.09512218087911606, 0.1410401463508606, 0.04872805252671242, -0.06611382961273193, -0.0672249048948288, 0.003819510340690613, 0.08813975751399994, 0.06909725069999695, 0.03039800375699997, -0.03183199092745781, 0.14280453324317932, 0.04930488020181656, -0.0595615915954113, 0.04525476321578026, -0.09568671137094498, 0.059364739805459976, -0.044949013739824295, -0.1703987866640091, -0.05455619469285011, 0.10930050164461136, 0.02612091414630413, -0.06339066475629807, -0.10789524763822556, -0.08660877496004105, 0.074980229139328, -0.09778398275375366, -0.05952300503849983, -0.010644339956343174, -0.1141231581568718, -0.05102750286459923, 0.02526104263961315, 0.006055799778550863, -0.07719461619853973, 0.004528644494712353, 0.038109276443719864, 0.13439255952835083, -0.017101015895605087, -0.05589466542005539, -0.022479455918073654, 0.02396199107170105, 0.0021665585227310658, -0.04984583705663681, 0.025255771353840828, 0.05603703483939171, -0.008353990502655506, 0.00559653528034687, 0.011153179220855236, 0.0054147085174918175, 0.06907202303409576, -0.13423410058021545, 0.03948657587170601, 0.042946044355630875, -0.10430506616830826, 0.12529531121253967, -0.08543012291193008, -0.04869621619582176, 0.023816220462322235, 0.11474141478538513, -0.07506333291530609, 0.01541562657803297, -0.07493200153112411, 0.041853535920381546, -0.07251696288585663, -0.03460349142551422, -0.11122290045022964, 0.022021180018782616]